diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..1269488 --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +data diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..fec1c36 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,10 @@ +root = true + +[*] +indent_style = space +indent_size = 4 +end_of_line = lf +insert_final_newline = true + +[*.py] +max_line_length=120 diff --git a/.eslintrc b/.eslintrc index c2bac62..ede6ff3 100644 --- a/.eslintrc +++ b/.eslintrc @@ -4,6 +4,9 @@ "env": { "browser": true }, + "parserOptions": { + "ecmaVersion": 8 + }, rules: { 'indent': ["error", 4, { 'SwitchCase': 1 }], } diff --git a/.gitignore b/.gitignore index 6944d34..4928d66 100644 --- a/.gitignore +++ b/.gitignore @@ -9,9 +9,7 @@ flatisfy/web/static/assets data/ package-lock.json doc/_build -yarn.lock data_rework/ .env weboob .htpasswd -.vscode \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 0000000..6e1257b --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "mtxr.sqltools", + "mtxr.sqltools-driver-sqlite" + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..168cfae --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,15 @@ +{ + "cSpell.words": [ + "Weboob", + "flatisfy" + ], + "sqltools.useNodeRuntime": true, + "sqltools.connections": [ + { + "previewLimit": 50, + "driver": "SQLite", + "name": "flatisfy", + "database": "${workspaceFolder:flatisfy}/data/flatisfy.db" + } + ] +} diff --git a/doc/0.getting_started.md b/doc/0.getting_started.md index b807745..fa3f6d7 100644 --- a/doc/0.getting_started.md +++ b/doc/0.getting_started.md @@ -227,4 +227,10 @@ schema might change from time to time. Here is how to update it automatically: ### Other tools more or less connected with Flatisfy -+ [ZipAround](https://github.com/guix77/ziparound) generates a list of ZIP codes centered on a city name, within a radius of N kilometers and within a certain travel time by car (France only) \ No newline at end of file ++ [ZipAround](https://github.com/guix77/ziparound) generates a list of ZIP codes centered on a city name, within a radius of N kilometers and within a certain travel time by car (France only). You can invoke it with: + +```sh +yarn ziparound +# or alternatively +yarn ziparound --code 75001 --distance 3 +``` diff --git a/doc/conf.py b/doc/conf.py index 3213961..0a5adde 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -18,7 +18,8 @@ import os import sys -sys.path.insert(0, os.path.abspath('..')) + +sys.path.insert(0, os.path.abspath("..")) # -- General configuration ------------------------------------------------ @@ -30,19 +31,19 @@ sys.path.insert(0, os.path.abspath('..')) # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ - 'sphinx.ext.autodoc', - 'sphinx.ext.viewcode', + "sphinx.ext.autodoc", + "sphinx.ext.viewcode", ] # Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] +templates_path = ["_templates"] # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: # -source_suffix = ['.rst', '.md'] +source_suffix = [".rst", ".md"] source_parsers = { - '.md': 'recommonmark.parser.CommonMarkParser', + ".md": "recommonmark.parser.CommonMarkParser", } # The encoding of source files. @@ -50,21 +51,21 @@ source_parsers = { # source_encoding = 'utf-8-sig' # The master toctree document. -master_doc = 'index' +master_doc = "index" # General information about the project. -project = u'Flatisfy' -copyright = u'2017, Phyks (Lucas Verney)' -author = u'Phyks (Lucas Verney)' +project = u"Flatisfy" +copyright = u"2017, Phyks (Lucas Verney)" +author = u"Phyks (Lucas Verney)" # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = u'0.1' +version = u"0.1" # The full version, including alpha/beta/rc tags. -release = u'0.1' +release = u"0.1" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -85,7 +86,7 @@ language = None # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This patterns also effect to html_static_path and html_extra_path -exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] # The reST default role (used for this markup: `text`) to use for all # documents. @@ -107,7 +108,7 @@ exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] # show_authors = False # The name of the Pygments (syntax highlighting) style to use. -pygments_style = 'sphinx' +pygments_style = "sphinx" # A list of ignored prefixes for module index sorting. # modindex_common_prefix = [] @@ -124,7 +125,7 @@ todo_include_todos = False # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'classic' +html_theme = "classic" # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the @@ -158,7 +159,7 @@ html_theme = 'classic' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = ["_static"] # Add any extra paths that contain custom files (such as robots.txt or # .htaccess) here, relative to this directory. These files are copied @@ -238,34 +239,36 @@ html_static_path = ['_static'] # html_search_scorer = 'scorer.js' # Output file base name for HTML help builder. -htmlhelp_basename = 'Flatisfydoc' +htmlhelp_basename = "Flatisfydoc" # -- Options for LaTeX output --------------------------------------------- latex_elements = { - # The paper size ('letterpaper' or 'a4paper'). - # - # 'papersize': 'letterpaper', - - # The font size ('10pt', '11pt' or '12pt'). - # - # 'pointsize': '10pt', - - # Additional stuff for the LaTeX preamble. - # - # 'preamble': '', - - # Latex figure (float) alignment - # - # 'figure_align': 'htbp', + # The paper size ('letterpaper' or 'a4paper'). + # + # 'papersize': 'letterpaper', + # The font size ('10pt', '11pt' or '12pt'). + # + # 'pointsize': '10pt', + # Additional stuff for the LaTeX preamble. + # + # 'preamble': '', + # Latex figure (float) alignment + # + # 'figure_align': 'htbp', } # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - (master_doc, 'Flatisfy.tex', u'Flatisfy Documentation', - u'Phyks (Lucas Verney)', 'manual'), + ( + master_doc, + "Flatisfy.tex", + u"Flatisfy Documentation", + u"Phyks (Lucas Verney)", + "manual", + ), ] # The name of an image file (relative to this directory) to place at the top of @@ -305,10 +308,7 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). -man_pages = [ - (master_doc, 'flatisfy', u'Flatisfy Documentation', - [author], 1) -] +man_pages = [(master_doc, "flatisfy", u"Flatisfy Documentation", [author], 1)] # If true, show URL addresses after external links. # @@ -321,9 +321,15 @@ man_pages = [ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - (master_doc, 'Flatisfy', u'Flatisfy Documentation', - author, 'Flatisfy', 'One line description of project.', - 'Miscellaneous'), + ( + master_doc, + "Flatisfy", + u"Flatisfy Documentation", + author, + "Flatisfy", + "One line description of project.", + "Miscellaneous", + ), ] # Documents to append as an appendix to all manuals. diff --git a/docker/Dockerfile b/docker/Dockerfile index 601f4bd..d51335c 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -19,7 +19,7 @@ RUN curl -sL https://deb.nodesource.com/setup_10.x | bash - \ && apt-get install -y nodejs # Install weboob's code itself. -RUN git clone --depth 1 https://git.weboob.org/weboob/devel /home/user/weboob \ +RUN git clone --depth 1 https://git.weboob.org/weboob/weboob /home/user/weboob \ && cd /home/user/weboob \ && pip install . diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index b038337..6ddafdb 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -9,3 +9,4 @@ services: - ./data:/flatisfy ports: - "8080:8080" + working_dir: /home/user/app diff --git a/flatisfy/__main__.py b/flatisfy/__main__.py index f80c4e9..c0920f7 100644 --- a/flatisfy/__main__.py +++ b/flatisfy/__main__.py @@ -17,6 +17,7 @@ from flatisfy import data from flatisfy import fetch from flatisfy import tools from flatisfy import tests + # pylint: enable=locally-disabled,wrong-import-position @@ -27,68 +28,47 @@ def parse_args(argv=None): """ Create parser and parse arguments. """ - parser = argparse.ArgumentParser(prog="Flatisfy", - description="Find the perfect flat.") + 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( - "--data-dir", - help="Location of Flatisfy data directory." + "--passes", + choices=[0, 1, 2, 3], + 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.") parent_parser.add_argument( - "--config", - help="Configuration file to use." - ) - parent_parser.add_argument( - "--passes", choices=[0, 1, 2, 3], 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." - ) - parent_parser.add_argument( - "--constraints", type=str, - help="Comma-separated list of constraints to consider." + "--constraints", + type=str, + help="Comma-separated list of constraints to consider.", ) # Subcommands - subparsers = parser.add_subparsers( - dest="cmd", help="Available 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" - ) + 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." + "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") + 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 according to constraints in config." + "filter", + parents=[parent_parser], + help="Filter housings posts according to constraints in config.", ) parser_filter.add_argument( "--input", @@ -97,28 +77,29 @@ def parse_args(argv=None): "no additional fetching of infos is done, and the script outputs " "a filtered JSON dump on stdout. If not provided, update status " "of the flats in the database." - ) + ), ) # Import subcommand parser - subparsers.add_parser("import", parents=[parent_parser], - help="Import housing posts in database.") + import_filter = subparsers.add_parser("import", parents=[parent_parser], help="Import housing posts in database.") + import_filter.add_argument( + "--new-only", + action="store_true", + help=("Download new housing posts only but do not refresh existing ones"), + ) # Purge subcommand parser - subparsers.add_parser("purge", parents=[parent_parser], - help="Purge database.") + subparsers.add_parser("purge", parents=[parent_parser], help="Purge database.") # Serve subcommand parser - parser_serve = subparsers.add_parser("serve", parents=[parent_parser], - help="Serve the web app.") + 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.") # Test subcommand parser - subparsers.add_parser("test", parents=[parent_parser], - help="Unit testing.") + subparsers.add_parser("test", parents=[parent_parser], help="Unit testing.") - return parser.parse_args(argv) + return parser, parser.parse_args(argv) def main(): @@ -127,25 +108,30 @@ def main(): """ # pylint: disable=locally-disabled,too-many-branches # Parse arguments - args = parse_args() + parser, args = parse_args() # Set logger - if args.vv: - logging.getLogger('').setLevel(logging.DEBUG) - logging.getLogger('sqlalchemy.engine').setLevel(logging.DEBUG) - elif args.verbose: - logging.getLogger('').setLevel(logging.INFO) + if getattr(args, 'vv', False): + logging.getLogger("").setLevel(logging.DEBUG) + logging.getLogger("titlecase").setLevel(logging.INFO) + logging.getLogger("sqlalchemy.engine").setLevel(logging.INFO) + elif getattr(args, 'verbose', False): + logging.getLogger("").setLevel(logging.INFO) # sqlalchemy INFO level is way too loud, just stick with WARNING - logging.getLogger('sqlalchemy.engine').setLevel(logging.WARNING) + logging.getLogger("sqlalchemy.engine").setLevel(logging.WARNING) else: - logging.getLogger('').setLevel(logging.WARNING) - logging.getLogger('sqlalchemy.engine').setLevel(logging.WARNING) + logging.getLogger("").setLevel(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: + if not args.cmd: + parser.print_help() + sys.exit(0) + # Load config if args.cmd == "build-data": # Data not yet built, do not use it in config checks @@ -153,9 +139,11 @@ def main(): else: config = flatisfy.config.load_config(args, check_with_data=True) if config is None: - LOGGER.error("Invalid configuration. Exiting. " - "Run init-config before if this is the first time " - "you run Flatisfy.") + LOGGER.error( + "Invalid configuration. Exiting. " + "Run init-config before if this is the first time " + "you run Flatisfy." + ) sys.exit(1) # Purge command @@ -171,18 +159,11 @@ def main(): if args.cmd == "fetch": # Fetch and filter flats list fetched_flats = fetch.fetch_flats(config) - fetched_flats = cmds.filter_fetched_flats(config, - fetched_flats=fetched_flats, - fetch_details=True) + fetched_flats = cmds.filter_fetched_flats(config, fetched_flats=fetched_flats, fetch_details=True) # Sort by cost - fetched_flats = { - k: tools.sort_list_of_dicts_by(v["new"], "cost") - for k, v in fetched_flats.items() - } + fetched_flats = {k: tools.sort_list_of_dicts_by(v["new"], "cost") for k, v in fetched_flats.items()} - print( - tools.pretty_json(fetched_flats) - ) + print(tools.pretty_json(fetched_flats)) return # Filter command elif args.cmd == "filter": @@ -190,28 +171,19 @@ def main(): if args.input: fetched_flats = fetch.load_flats_from_file(args.input, config) - fetched_flats = cmds.filter_fetched_flats( - config, - fetched_flats=fetched_flats, - fetch_details=False - ) + fetched_flats = cmds.filter_fetched_flats(config, fetched_flats=fetched_flats, fetch_details=False) # Sort by cost - fetched_flats = { - k: tools.sort_list_of_dicts_by(v["new"], "cost") - for k, v in fetched_flats.items() - } + fetched_flats = {k: tools.sort_list_of_dicts_by(v["new"], "cost") for k, v in fetched_flats.items()} # Output to stdout - print( - tools.pretty_json(fetched_flats) - ) + print(tools.pretty_json(fetched_flats)) else: cmds.import_and_filter(config, load_from_db=True) return # Import command elif args.cmd == "import": - cmds.import_and_filter(config, load_from_db=False) + cmds.import_and_filter(config, load_from_db=False, new_only=args.new_only) return # Serve command elif args.cmd == "serve": diff --git a/flatisfy/cmds.py b/flatisfy/cmds.py index 240ac45..7216d17 100644 --- a/flatisfy/cmds.py +++ b/flatisfy/cmds.py @@ -18,21 +18,23 @@ from flatisfy import fetch from flatisfy import tools from flatisfy.filters import metadata from flatisfy.web import app as web_app - +import time +from ratelimit.exception import RateLimitException LOGGER = logging.getLogger(__name__) -def filter_flats_list(config, constraint_name, flats_list, fetch_details=True): +def filter_flats_list(config, constraint_name, flats_list, fetch_details=True, past_flats=None): """ Filter the available flats list. Then, filter it according to criteria. :param config: A config dict. :param constraint_name: The constraint name that the ``flats_list`` should satisfy. + :param flats_list: The initial list of flat objects to filter. :param fetch_details: Whether additional details should be fetched between the two passes. - :param flats_list: The initial list of flat objects to filter. + :param past_flats: The list of already fetched flats :return: A dict mapping flat status and list of flat objects. """ # Add the flatisfy metadata entry and prepare the flat objects @@ -44,13 +46,9 @@ def filter_flats_list(config, constraint_name, flats_list, fetch_details=True): except KeyError: LOGGER.error( "Missing constraint %s. Skipping filtering for these posts.", - constraint_name + constraint_name, ) - return { - "new": [], - "duplicate": [], - "ignored": [] - } + return {"new": [], "duplicate": [], "ignored": []} first_pass_result = collections.defaultdict(list) second_pass_result = collections.defaultdict(list) @@ -58,52 +56,55 @@ def filter_flats_list(config, constraint_name, flats_list, fetch_details=True): # Do a first pass with the available infos to try to remove as much # unwanted postings as possible if config["passes"] > 0: - first_pass_result = flatisfy.filters.first_pass(flats_list, - constraint, - config) + first_pass_result = flatisfy.filters.first_pass(flats_list, constraint, config) else: first_pass_result["new"] = flats_list # Load additional infos if fetch_details: + past_ids = {x["id"]: x for x in past_flats} if past_flats else {} for i, flat in enumerate(first_pass_result["new"]): - details = fetch.fetch_details(config, flat["id"]) + details = None + + use_cache = past_ids.get(flat["id"]) + if use_cache: + LOGGER.debug("Skipping details download for %s.", flat["id"]) + details = use_cache + else: + if flat["id"].split("@")[1] in ["seloger", "leboncoin"]: + try: + details = fetch.fetch_details_rate_limited(config, flat["id"]) + except RateLimitException: + time.sleep(60) + details = fetch.fetch_details_rate_limited(config, flat["id"]) + else: + details = fetch.fetch_details(config, flat["id"]) + first_pass_result["new"][i] = tools.merge_dicts(flat, details) # Do a second pass to consolidate all the infos we found and make use of # additional infos if config["passes"] > 1: - second_pass_result = flatisfy.filters.second_pass( - first_pass_result["new"], constraint, config - ) + second_pass_result = flatisfy.filters.second_pass(first_pass_result["new"], constraint, config) else: second_pass_result["new"] = first_pass_result["new"] # Do a third pass to deduplicate better if config["passes"] > 2: - third_pass_result = flatisfy.filters.third_pass( - second_pass_result["new"], - config - ) + third_pass_result = flatisfy.filters.third_pass(second_pass_result["new"], config) else: third_pass_result["new"] = second_pass_result["new"] return { "new": third_pass_result["new"], "duplicate": ( - first_pass_result["duplicate"] + - second_pass_result["duplicate"] + - third_pass_result["duplicate"] + first_pass_result["duplicate"] + second_pass_result["duplicate"] + third_pass_result["duplicate"] ), - "ignored": ( - first_pass_result["ignored"] + - second_pass_result["ignored"] + - third_pass_result["ignored"] - ) + "ignored": (first_pass_result["ignored"] + second_pass_result["ignored"] + third_pass_result["ignored"]), } -def filter_fetched_flats(config, fetched_flats, fetch_details=True): +def filter_fetched_flats(config, fetched_flats, fetch_details=True, past_flats={}): """ Filter the available flats list. Then, filter it according to criteria. @@ -120,12 +121,13 @@ def filter_fetched_flats(config, fetched_flats, fetch_details=True): config, constraint_name, flats_list, - fetch_details + fetch_details, + past_flats.get(constraint_name, None), ) return fetched_flats -def import_and_filter(config, load_from_db=False): +def import_and_filter(config, load_from_db=False, new_only=False): """ Fetch the available flats list. Then, filter it according to criteria. Finally, store it in the database. @@ -136,17 +138,23 @@ def import_and_filter(config, load_from_db=False): :return: ``None``. """ # Fetch and filter flats list + past_flats = fetch.load_flats_from_db(config) if load_from_db: - fetched_flats = fetch.load_flats_from_db(config) + fetched_flats = past_flats else: fetched_flats = fetch.fetch_flats(config) # Do not fetch additional details if we loaded data from the db. - flats_by_status = filter_fetched_flats(config, fetched_flats=fetched_flats, - fetch_details=(not load_from_db)) + flats_by_status = filter_fetched_flats( + config, + fetched_flats=fetched_flats, + fetch_details=(not load_from_db), + past_flats=past_flats if new_only else {}, + ) # Create database connection get_session = database.init_db(config["database"], config["search_index"]) new_flats = [] + result = [] LOGGER.info("Merging fetched flats in database...") # Flatten the flats_by_status dict @@ -159,14 +167,11 @@ def import_and_filter(config, load_from_db=False): # Set is_expired to true for all existing flats. # This will be set back to false if we find them during importing. for flat in session.query(flat_model.Flat).all(): - flat.is_expired = True; + flat.is_expired = True for status, flats_list in flatten_flats_by_status.items(): # Build SQLAlchemy Flat model objects for every available flat - flats_objects = { - flat_dict["id"]: flat_model.Flat.from_dict(flat_dict) - for flat_dict in flats_list - } + flats_objects = {flat_dict["id"]: flat_model.Flat.from_dict(flat_dict) for flat_dict in flats_list} if flats_objects: # If there are some flats, try to merge them with the ones in @@ -179,9 +184,7 @@ def import_and_filter(config, load_from_db=False): # status if the user defined it flat_object = flats_objects[each.id] if each.status in flat_model.AUTOMATED_STATUSES: - flat_object.status = getattr( - flat_model.FlatStatus, status - ) + flat_object.status = getattr(flat_model.FlatStatus, status) else: flat_object.status = each.status @@ -198,21 +201,22 @@ def import_and_filter(config, load_from_db=False): flat.status = getattr(flat_model.FlatStatus, status) if flat.status == flat_model.FlatStatus.new: new_flats.append(flat) + result.append(flat.id) session.add_all(flats_objects.values()) if config["send_email"]: email.send_notification(config, new_flats) + LOGGER.info(f"Found {len(result)} new flats.") + # Touch a file to indicate last update timestamp - ts_file = os.path.join( - config["data_directory"], - "timestamp" - ) - with open(ts_file, 'w'): + ts_file = os.path.join(config["data_directory"], "timestamp") + with open(ts_file, "w"): os.utime(ts_file, None) LOGGER.info("Done!") + return result def purge_db(config): @@ -253,4 +257,4 @@ def serve(config): server = web_app.QuietWSGIRefServer print("Launching web viewer running on http://%s:%s" % (config["host"], config["port"])) - app.run(host=config["host"], port=config["port"], server=server) \ No newline at end of file + app.run(host=config["host"], port=config["port"], server=server) diff --git a/flatisfy/config.py b/flatisfy/config.py index 841ce9a..ce49ff0 100644 --- a/flatisfy/config.py +++ b/flatisfy/config.py @@ -30,24 +30,25 @@ DEFAULT_CONFIG = { "default": { "type": None, # RENT, SALE, SHARING "house_types": [], # List of house types, must be in APART, HOUSE, - # PARKING, LAND, OTHER or UNKNOWN + # PARKING, LAND, OTHER or UNKNOWN "postal_codes": [], # List of postal codes + "insees": [], # 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) "minimum_nb_photos": None, # min number of photos "description_should_contain": [], # list of terms - "description_should_not_contain": [ # list of terms + "description_should_not_contain": [ "vendu", "Vendu", "VENDU", - "recherche" + "recherche", ], "time_to": {} # Dict mapping names to {"gps": [lat, lng], - # "time": (min, max), - # "mode": Valid mode } - # Time is in seconds + # "time": (min, max), + # "mode": Valid mode } + # Time is in seconds } }, # Whether or not to store personal data from housing posts (phone number @@ -91,15 +92,17 @@ DEFAULT_CONFIG = { "backends": None, # Should email notifications be sent? "send_email": False, - "smtp_server": 'localhost', + "smtp_server": "localhost", "smtp_port": 25, "smtp_username": None, "smtp_password": None, "smtp_from": "noreply@flatisfy.org", "smtp_to": [], + "notification_lang": "en", # The web site url, to be used in email notifications. (doesn't matter # whether the trailing slash is present or not) - "website_url": "http://127.0.0.1:8080" + "website_url": "http://127.0.0.1:8080", + "ignore_station": False, } LOGGER = logging.getLogger(__name__) @@ -114,20 +117,14 @@ def validate_config(config, check_with_data): check the config values. :return: ``True`` if the configuration is valid, ``False`` otherwise. """ + def _check_constraints_bounds(bounds): """ Check the bounds for numeric constraints. """ assert isinstance(bounds, list) assert len(bounds) == 2 - assert all( - x is None or - ( - isinstance(x, (float, int)) and - x >= 0 - ) - for x in bounds - ) + assert all(x is None or (isinstance(x, (float, int)) and x >= 0) for x in bounds) if bounds[0] is not None and bounds[1] is not None: assert bounds[1] > bounds[0] @@ -139,7 +136,9 @@ def validate_config(config, check_with_data): # pylint: disable=locally-disabled,line-too-long assert config["passes"] in [0, 1, 2, 3] - assert config["max_entries"] is None or (isinstance(config["max_entries"], int) and config["max_entries"] > 0) # noqa: E501 + 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 os.path.isdir(config["data_directory"]) @@ -159,6 +158,7 @@ def validate_config(config, check_with_data): assert config["smtp_username"] is None or isinstance(config["smtp_username"], str) # noqa: E501 assert config["smtp_password"] is None or isinstance(config["smtp_password"], str) # noqa: E501 assert config["smtp_to"] is None or isinstance(config["smtp_to"], list) + assert config["notification_lang"] is None or isinstance(config["notification_lang"], str) assert isinstance(config["store_personal_data"], bool) assert isinstance(config["max_distance_housing_station"], (int, float)) @@ -169,6 +169,8 @@ def validate_config(config, check_with_data): assert config["navitia_api_key"] is None or isinstance(config["navitia_api_key"], str) # noqa: E501 assert config["mapbox_api_key"] is None or isinstance(config["mapbox_api_key"], str) # noqa: E501 + assert config["ignore_station"] is None or isinstance(config["ignore_station"], bool) # noqa: E501 + # Ensure constraints are ok assert config["constraints"] for constraint in config["constraints"].values(): @@ -188,8 +190,7 @@ def validate_config(config, check_with_data): assert isinstance(term, str) assert "description_should_not_contain" in constraint - assert isinstance(constraint["description_should_not_contain"], - list) + assert isinstance(constraint["description_should_not_contain"], list) if constraint["description_should_not_contain"]: for term in constraint["description_should_not_contain"]: assert isinstance(term, str) @@ -202,16 +203,22 @@ def validate_config(config, check_with_data): assert "postal_codes" in constraint assert constraint["postal_codes"] assert all(isinstance(x, str) for x in constraint["postal_codes"]) + if "insee_codes" in constraint: + assert constraint["insee_codes"] + assert all(isinstance(x, str) for x in constraint["insee_codes"]) + if check_with_data: # Ensure data is built into db data.preprocess_data(config, force=False) # Check postal codes - opendata_postal_codes = [ - x.postal_code - for x in data.load_data(PostalCode, constraint, config) - ] + opendata = data.load_data(PostalCode, constraint, config) + opendata_postal_codes = [x.postal_code for x in opendata] + opendata_insee_codes = [x.insee_code for x in opendata] for postal_code in constraint["postal_codes"]: assert postal_code in opendata_postal_codes # noqa: E501 + if "insee_codes" in constraint: + for insee in constraint["insee_codes"]: + assert insee in opendata_insee_codes # noqa: E501 assert "area" in constraint _check_constraints_bounds(constraint["area"]) @@ -264,22 +271,18 @@ def load_config(args=None, check_with_data=True): config_data.update(json.load(fh)) except (IOError, ValueError) as exc: LOGGER.error( - "Unable to load configuration from file, " - "using default configuration: %s.", - exc + "Unable to load configuration from file, using default configuration: %s.", + exc, ) # 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 - ) + 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 + args.max_entries, ) config_data["max_entries"] = args.max_entries if args and getattr(args, "port", None) is not None: @@ -294,49 +297,39 @@ def load_config(args=None, check_with_data=True): 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"]) + config_data["data_directory"] = appdirs.user_data_dir("flatisfy", "flatisfy") + LOGGER.debug("Using default XDG data directory: %s.", config_data["data_directory"]) if not os.path.isdir(config_data["data_directory"]): - LOGGER.info("Creating data directory according to config: %s", - config_data["data_directory"]) + LOGGER.info( + "Creating data directory according to config: %s", + config_data["data_directory"], + ) os.makedirs(config_data["data_directory"]) os.makedirs(os.path.join(config_data["data_directory"], "images")) if config_data["database"] is None: - config_data["database"] = "sqlite:///" + os.path.join( - config_data["data_directory"], - "flatisfy.db" - ) + config_data["database"] = "sqlite:///" + os.path.join(config_data["data_directory"], "flatisfy.db") if config_data["search_index"] is None: - config_data["search_index"] = os.path.join( - config_data["data_directory"], - "search_index" - ) + config_data["search_index"] = os.path.join(config_data["data_directory"], "search_index") # Handle constraints filtering if args and getattr(args, "constraints", None) is not None: LOGGER.info( - ("Filtering constraints from config according to CLI argument. " - "Using only the following constraints: %s."), - args.constraints.replace(",", ", ") + ( + "Filtering constraints from config according to CLI argument. " + "Using only the following constraints: %s." + ), + args.constraints.replace(",", ", "), ) constraints_filter = args.constraints.split(",") - config_data["constraints"] = { - k: v - for k, v in config_data["constraints"].items() - if k in constraints_filter - } + config_data["constraints"] = {k: v for k, v in config_data["constraints"].items() if k in constraints_filter} # Sanitize website url if config_data["website_url"] is not None: - if config_data["website_url"][-1] != '/': - config_data["website_url"] += '/' + if config_data["website_url"][-1] != "/": + config_data["website_url"] += "/" config_validation = validate_config(config_data, check_with_data) if config_validation is True: diff --git a/flatisfy/constants.py b/flatisfy/constants.py index 056c949..6372599 100644 --- a/flatisfy/constants.py +++ b/flatisfy/constants.py @@ -16,7 +16,7 @@ BACKENDS_BY_PRECEDENCE = [ "pap", "leboncoin", "explorimmo", - "logicimmo" + "logicimmo", ] diff --git a/flatisfy/data.py b/flatisfy/data.py index 74e3828..42f64b0 100644 --- a/flatisfy/data.py +++ b/flatisfy/data.py @@ -24,11 +24,13 @@ except ImportError: try: from functools32 import lru_cache except ImportError: + def lru_cache(maxsize=None): # pylint: disable=unused-argument """ Identity implementation of ``lru_cache`` for fallback. """ return lambda func: func + LOGGER.warning( "`functools.lru_cache` is not available on your system. Consider " "installing `functools32` Python module if using Python2 for " @@ -48,10 +50,7 @@ def preprocess_data(config, force=False): # Check if a build is required get_session = database.init_db(config["database"], config["search_index"]) with get_session() as session: - is_built = ( - session.query(PublicTransport).count() > 0 and - session.query(PostalCode).count() > 0 - ) + is_built = session.query(PublicTransport).count() > 0 and session.query(PostalCode).count() > 0 if is_built and not force: # No need to rebuild the database, skip return False @@ -64,9 +63,7 @@ def preprocess_data(config, force=False): for preprocess in data_files.PREPROCESSING_FUNCTIONS: data_objects = preprocess() if not data_objects: - raise flatisfy.exceptions.DataBuildError( - "Error with %s." % preprocess.__name__ - ) + raise flatisfy.exceptions.DataBuildError("Error with %s." % preprocess.__name__) with get_session() as session: session.add_all(data_objects) LOGGER.info("Done building data!") @@ -96,10 +93,7 @@ def load_data(model, constraint, config): # Load data for each area areas = list(set(areas)) for area in areas: - results.extend( - session.query(model) - .filter(model.area == area).all() - ) + results.extend(session.query(model).filter(model.area == area).all()) # Expunge loaded data from the session to be able to use them # afterwards session.expunge_all() diff --git a/flatisfy/data_files/__init__.py b/flatisfy/data_files/__init__.py index 8f2803b..cb0ccf4 100644 --- a/flatisfy/data_files/__init__.py +++ b/flatisfy/data_files/__init__.py @@ -24,8 +24,8 @@ MODULE_DIR = os.path.dirname(os.path.realpath(__file__)) titlecase.set_small_word_list( # Add French small words - r"l|d|un|une|et|à|a|sur|ou|le|la|de|lès|les|" + - titlecase.SMALL + r"l|d|un|une|et|à|a|sur|ou|le|la|de|lès|les|" + + titlecase.SMALL ) TRANSPORT_DATA_FILES = { @@ -33,7 +33,7 @@ TRANSPORT_DATA_FILES = { "FR-NW": "stops_fr-nw.txt", "FR-NE": "stops_fr-ne.txt", "FR-SW": "stops_fr-sw.txt", - "FR-SE": "stops_fr-se.txt" + "FR-SE": "stops_fr-se.txt", } @@ -51,8 +51,20 @@ def french_postal_codes_to_quarter(postal_code): # French departements # Taken from Wikipedia data. department_to_subdivision = { - "FR-ARA": ["01", "03", "07", "15", "26", "38", "42", "43", "63", "69", - "73", "74"], + "FR-ARA": [ + "01", + "03", + "07", + "15", + "26", + "38", + "42", + "43", + "63", + "69", + "73", + "74", + ], "FR-BFC": ["21", "25", "39", "58", "70", "71", "89", "90"], "FR-BRE": ["22", "29", "35", "44", "56"], "FR-CVL": ["18", "28", "36", "37", "41", "45"], @@ -61,36 +73,53 @@ def french_postal_codes_to_quarter(postal_code): "FR-HDF": ["02", "59", "60", "62", "80"], "FR-IDF": ["75", "77", "78", "91", "92", "93", "94", "95"], "FR-NOR": ["14", "27", "50", "61", "76"], - "FR-NAQ": ["16", "17", "19", "23", "24", "33", "40", "47", "64", "79", - "86", "87"], - "FR-OCC": ["09", "11", "12", "30", "31", "32", "34", "46", "48", "65", - "66", "81", "82"], + "FR-NAQ": [ + "16", + "17", + "19", + "23", + "24", + "33", + "40", + "47", + "64", + "79", + "86", + "87", + ], + "FR-OCC": [ + "09", + "11", + "12", + "30", + "31", + "32", + "34", + "46", + "48", + "65", + "66", + "81", + "82", + ], "FR-PDL": ["44", "49", "53", "72", "85"], - "FR-PAC": ["04", "05", "06", "13", "83", "84"] + "FR-PAC": ["04", "05", "06", "13", "83", "84"], } subdivision_to_quarters = { - 'FR-IDF': ['FR-IDF'], - 'FR-NW': ['FR-BRE', 'FR-CVL', 'FR-NOR', 'FR-PDL'], - 'FR-NE': ['FR-BFC', 'FR-GES', 'FR-HDF'], - 'FR-SE': ['FR-ARA', 'FR-COR', 'FR-PAC', 'FR-OCC'], - 'FR-SW': ['FR-NAQ'] + "FR-IDF": ["FR-IDF"], + "FR-NW": ["FR-BRE", "FR-CVL", "FR-NOR", "FR-PDL"], + "FR-NE": ["FR-BFC", "FR-GES", "FR-HDF"], + "FR-SE": ["FR-ARA", "FR-COR", "FR-PAC", "FR-OCC"], + "FR-SW": ["FR-NAQ"], } subdivision = next( - ( - i - for i, departments in department_to_subdivision.items() - if departement in departments - ), - None + (i for i, departments in department_to_subdivision.items() if departement in departments), + None, ) return next( - ( - i - for i, subdivisions in subdivision_to_quarters.items() - if subdivision in subdivisions - ), - None + (i for i, subdivisions in subdivision_to_quarters.items() if subdivision in subdivisions), + None, ) @@ -106,9 +135,7 @@ def _preprocess_laposte(): raw_laposte_data = [] # Load opendata file try: - with io.open( - os.path.join(MODULE_DIR, data_file), "r", encoding='utf-8' - ) as fh: + with io.open(os.path.join(MODULE_DIR, data_file), "r", encoding="utf-8") as fh: raw_laposte_data = json.load(fh) except (IOError, ValueError): LOGGER.error("Invalid raw LaPoste opendata file.") @@ -124,31 +151,30 @@ def _preprocess_laposte(): try: area = french_postal_codes_to_quarter(fields["code_postal"]) if area is None: - LOGGER.info( + LOGGER.debug( "No matching area found for postal code %s, skipping it.", - fields["code_postal"] + fields["code_postal"], ) continue - name = normalize_string( - titlecase.titlecase(fields["nom_de_la_commune"]), - lowercase=False - ) + name = normalize_string(titlecase.titlecase(fields["nom_de_la_commune"]), lowercase=False) if (fields["code_postal"], name) in seen_postal_codes: continue seen_postal_codes.append((fields["code_postal"], name)) - postal_codes_data.append(PostalCode( - area=area, - postal_code=fields["code_postal"], - name=name, - lat=fields["coordonnees_gps"][0], - lng=fields["coordonnees_gps"][1] - )) + postal_codes_data.append( + PostalCode( + area=area, + postal_code=fields["code_postal"], + insee_code=fields["code_commune_insee"], + name=name, + lat=fields["coordonnees_gps"][0], + lng=fields["coordonnees_gps"][1], + ) + ) except KeyError: - LOGGER.info("Missing data for postal code %s, skipping it.", - fields["code_postal"]) + LOGGER.debug("Missing data for postal code %s, skipping it.", fields["code_postal"]) return postal_codes_data @@ -164,17 +190,11 @@ def _preprocess_public_transport(): for area, data_file in TRANSPORT_DATA_FILES.items(): LOGGER.info("Building from public transport data %s.", data_file) try: - with io.open(os.path.join(MODULE_DIR, data_file), "r", - encoding='utf-8') as fh: + with io.open(os.path.join(MODULE_DIR, data_file), "r", encoding="utf-8") as fh: filereader = csv.reader(fh) next(filereader, None) # Skip first row (headers) for row in filereader: - public_transport_data.append(PublicTransport( - name=row[2], - area=area, - lat=row[3], - lng=row[4] - )) + public_transport_data.append(PublicTransport(name=row[2], area=area, lat=row[3], lng=row[4])) except (IOError, IndexError): LOGGER.error("Invalid raw opendata file: %s.", data_file) return [] @@ -183,7 +203,4 @@ def _preprocess_public_transport(): # List of all the available preprocessing functions. Order can be important. -PREPROCESSING_FUNCTIONS = [ - _preprocess_laposte, - _preprocess_public_transport -] +PREPROCESSING_FUNCTIONS = [_preprocess_laposte, _preprocess_public_transport] diff --git a/flatisfy/data_files/laposte.json b/flatisfy/data_files/laposte.json index 843116c..f9c0ab3 100644 --- a/flatisfy/data_files/laposte.json +++ b/flatisfy/data_files/laposte.json @@ -1 +1,863916 @@ -[{"datasetid": "laposte_hexasmal", "recordid": "4499b8bdaaf05e98cdcce1f56cdf109ac186343c", "fields": {"nom_de_la_commune": "MAROLLES SOUS LIGNIERES", "libell_d_acheminement": "MAROLLES SOUS LIGNIERES", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10227"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d1e0bb46554992f39915a9d680dbcbd6445899", "fields": {"nom_de_la_commune": "LES GRANDES CHAPELLES", "libell_d_acheminement": "LES GRANDES CHAPELLES", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10166"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41d16a1afc1db6e8add407ffdd9af60100a00c09", "fields": {"nom_de_la_commune": "MERREY SUR ARCE", "libell_d_acheminement": "MERREY SUR ARCE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10232"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17db4712b98c34d823a46cd7d2d7a56160501192", "fields": {"nom_de_la_commune": "JUVANCOURT", "libell_d_acheminement": "JUVANCOURT", "code_postal": "10310", "coordonnees_gps": [48.1567685845, 4.79470021531], "code_commune_insee": "10182"}, "geometry": {"type": "Point", "coordinates": [4.79470021531, 48.1567685845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b728af56d134fc596229380d40f7dceb74e233", "fields": {"nom_de_la_commune": "LAUBRESSEL", "libell_d_acheminement": "LAUBRESSEL", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10190"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "232cf438279e89392abd430f64fdc0797334c7f0", "fields": {"nom_de_la_commune": "ISLE AUMONT", "libell_d_acheminement": "ISLE AUMONT", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10173"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "331a057958dc06091aca52b7ee389600bbc32e6e", "fields": {"nom_de_la_commune": "LIGNIERES", "libell_d_acheminement": "LIGNIERES", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10196"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e7fe7ab1c04bc3380b5b32f0c91ebdc6bce2af", "fields": {"nom_de_la_commune": "MERGEY", "libell_d_acheminement": "MERGEY", "code_postal": "10600", "coordonnees_gps": [48.3767482025, 3.98875459714], "code_commune_insee": "10230"}, "geometry": {"type": "Point", "coordinates": [3.98875459714, 48.3767482025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b810fc1304cf83e80daa14dfa56949f1cdef97b", "fields": {"nom_de_la_commune": "MACHY", "libell_d_acheminement": "MACHY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10212"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe3c326eee658042c1ac733a071d49d6d8e5323", "fields": {"nom_de_la_commune": "CRUSCADES", "libell_d_acheminement": "CRUSCADES", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11111"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae0c7d27370fd4962c5e2ad1aac50110e35808f", "fields": {"nom_de_la_commune": "CUBIERES SUR CINOBLE", "libell_d_acheminement": "CUBIERES SUR CINOBLE", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11112"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e81b03d64b8a8ab375443c25d24df4fbf5b0203", "fields": {"nom_de_la_commune": "CUCUGNAN", "libell_d_acheminement": "CUCUGNAN", "code_postal": "11350", "coordonnees_gps": [42.8796650781, 2.66522654176], "code_commune_insee": "11113"}, "geometry": {"type": "Point", "coordinates": [2.66522654176, 42.8796650781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4645435e79cdf6a346b8153695be2dc70e2901db", "fields": {"nom_de_la_commune": "DONAZAC", "libell_d_acheminement": "DONAZAC", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11121"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63cc6685cdf754929d8ffaac040fc17afe03cef0", "fields": {"nom_de_la_commune": "FAJAC EN VAL", "libell_d_acheminement": "FAJAC EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11133"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e0daf5aac73cc20b9c7f66d4ae71f58cee3d586", "fields": {"nom_de_la_commune": "FESTES ET ST ANDRE", "libell_d_acheminement": "FESTES ET ST ANDRE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11142"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cebeb0b0bc312ee2d2ac25704364f71c968a6fe", "fields": {"nom_de_la_commune": "FONTANES DE SAULT", "libell_d_acheminement": "FONTANES DE SAULT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11147"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502e4312b3f87da6fa520dc2db46ab2048557adf", "fields": {"nom_de_la_commune": "FONTCOUVERTE", "libell_d_acheminement": "FONTCOUVERTE", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11148"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9fa119137e18f3f66d1fb1d5624052d2b74bc0c", "fields": {"nom_de_la_commune": "FONTJONCOUSE", "libell_d_acheminement": "FONTJONCOUSE", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11152"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eaf74902265e69955c7cd781458b5048fd8ef7c", "fields": {"nom_de_la_commune": "GALINAGUES", "libell_d_acheminement": "GALINAGUES", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11160"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc2186d90188014d178b1c89f7ff51226cdf852c", "fields": {"nom_de_la_commune": "GENERVILLE", "libell_d_acheminement": "GENERVILLE", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11162"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ff9b548e127272a1757063f8dbed324dcbd70b", "fields": {"nom_de_la_commune": "GINESTAS", "libell_d_acheminement": "GINESTAS", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11164"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "068ce05ed1fb45f02e15cf4f4c4cbaf95542c9a8", "fields": {"nom_de_la_commune": "GREFFEIL", "libell_d_acheminement": "GREFFEIL", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11169"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c79848a79110125b9ef8764d64f6a4ec1ae63b", "fields": {"nom_de_la_commune": "GRUISSAN", "libell_d_acheminement": "GRUISSAN", "code_postal": "11430", "coordonnees_gps": [43.1033671547, 3.08203415117], "code_commune_insee": "11170"}, "geometry": {"type": "Point", "coordinates": [3.08203415117, 43.1033671547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c17329e709bee3c5e9f8e44be14d6bb9caedc3f", "fields": {"nom_de_la_commune": "HOMPS", "libell_d_acheminement": "HOMPS", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11172"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c93a729e11ed0b93a098faaa46928e1e36d825f8", "fields": {"nom_de_la_commune": "ISSEL", "libell_d_acheminement": "ISSEL", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11175"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af373e17db3079884b47b620013edbc1239abb5b", "fields": {"nom_de_la_commune": "JOUCOU", "libell_d_acheminement": "JOUCOU", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11177"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d24af598cc1693d3a849877ddee622add817035", "fields": {"nom_de_la_commune": "LABASTIDE ESPARBAIRENQUE", "libell_d_acheminement": "LABASTIDE ESPARBAIRENQUE", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11180"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb885052ebdc142367da630db3f4f3e4090f2ea", "fields": {"nom_de_la_commune": "LACOMBE", "libell_d_acheminement": "LACOMBE", "code_postal": "11310", "coordonnees_gps": [43.3722409402, 2.17410983728], "code_commune_insee": "11182"}, "geometry": {"type": "Point", "coordinates": [2.17410983728, 43.3722409402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c86c38749641132105eb92d5fbcef0ff66801ab", "fields": {"nom_de_la_commune": "LAGRASSE", "libell_d_acheminement": "LAGRASSE", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11185"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9f3cd604b86cc0833b2eeaee1b483991594ba7", "fields": {"nom_de_la_commune": "LAPRADE", "libell_d_acheminement": "LAPRADE", "code_postal": "11390", "coordonnees_gps": [43.3925599417, 2.2792029886], "code_commune_insee": "11189"}, "geometry": {"type": "Point", "coordinates": [2.2792029886, 43.3925599417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df662cbeea91241499090e4fe4e6cb6b869affe", "fields": {"nom_de_la_commune": "LA REDORTE", "libell_d_acheminement": "LA REDORTE", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11190"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74a75c49203782514536f35d7f97413a7a975ee7", "fields": {"nom_de_la_commune": "LASBORDES", "libell_d_acheminement": "LASBORDES", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11192"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3f71ddac5fc6b8ed3d6242156d3264c4cc185f7", "fields": {"nom_de_la_commune": "LAURAC", "libell_d_acheminement": "LAURAC", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11196"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "094c95ae8f4229ce25076a9d9db605749360a8dc", "fields": {"nom_de_la_commune": "LEUCATE", "libell_d_acheminement": "LEUCATE", "code_postal": "11370", "coordonnees_gps": [42.8990754596, 3.02622378383], "code_commune_insee": "11202"}, "geometry": {"type": "Point", "coordinates": [3.02622378383, 42.8990754596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6832d9f5f015a7759bb60d51e18ac018f7e7073", "fields": {"code_postal": "11370", "code_commune_insee": "11202", "libell_d_acheminement": "LEUCATE", "ligne_5": "PORT LEUCATE", "nom_de_la_commune": "LEUCATE", "coordonnees_gps": [42.8990754596, 3.02622378383]}, "geometry": {"type": "Point", "coordinates": [3.02622378383, 42.8990754596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb85de7da232e0658244f7dd8fc04485d4e1fb4", "fields": {"nom_de_la_commune": "MAILHAC", "libell_d_acheminement": "MAILHAC", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11212"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd508ba40d99fc64da375016e5687b3cb0141b92", "fields": {"nom_de_la_commune": "MAYREVILLE", "libell_d_acheminement": "MAYREVILLE", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11226"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1114c4273aacbcfed1b71d190a105595e7273f01", "fields": {"nom_de_la_commune": "MERIAL", "libell_d_acheminement": "MERIAL", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11230"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78333f9a5cc3a2dd68c2e7ecbccecab7943ee4e9", "fields": {"nom_de_la_commune": "MONTBRUN DES CORBIERES", "libell_d_acheminement": "MONTBRUN DES CORBIERES", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11241"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdb0dee91e46e80f28ce2e129082e2706ed55809", "fields": {"nom_de_la_commune": "MONTCLAR", "libell_d_acheminement": "MONTCLAR", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11242"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e6fe2bcbb9dd4dedecd7ed64ad69402a37086a", "fields": {"nom_de_la_commune": "MONTGRADAIL", "libell_d_acheminement": "MONTGRADAIL", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11246"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0cff377b3e0b0486da8f4c7565588e532c9963", "fields": {"nom_de_la_commune": "MONTHAUT", "libell_d_acheminement": "MONTHAUT", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11247"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643b14723e7638c2d50d6771c07810634343cca1", "fields": {"nom_de_la_commune": "MONTLAUR", "libell_d_acheminement": "MONTLAUR", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11251"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6369fc44c54a92f06deefd85e8348e7efaa4ced9", "fields": {"nom_de_la_commune": "MONTREDON DES CORBIERES", "libell_d_acheminement": "MONTREDON DES CORBIERES", "code_postal": "11100", "coordonnees_gps": [43.1614428329, 3.00768633064], "code_commune_insee": "11255"}, "geometry": {"type": "Point", "coordinates": [3.00768633064, 43.1614428329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ea23f48c0fc7fc0de5777d1ac3055d341c3128a", "fields": {"nom_de_la_commune": "MOUTHOUMET", "libell_d_acheminement": "MOUTHOUMET", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11260"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e482b01043039fdd8802568ac3e2bf2f9f93fb", "fields": {"nom_de_la_commune": "NEVIAN", "libell_d_acheminement": "NEVIAN", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11264"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4738a1c1719fc15755a21d6e145a9f64476f3f88", "fields": {"nom_de_la_commune": "PADERN", "libell_d_acheminement": "PADERN", "code_postal": "11350", "coordonnees_gps": [42.8796650781, 2.66522654176], "code_commune_insee": "11270"}, "geometry": {"type": "Point", "coordinates": [2.66522654176, 42.8796650781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3183e7623d37b89fb1b4d37d2e87c9872a3e48e", "fields": {"nom_de_la_commune": "PENNAUTIER", "libell_d_acheminement": "PENNAUTIER", "code_postal": "11610", "coordonnees_gps": [43.2600787186, 2.30202617457], "code_commune_insee": "11279"}, "geometry": {"type": "Point", "coordinates": [2.30202617457, 43.2600787186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24aabd2030591127d2e531c35e7188081a4aaec", "fields": {"nom_de_la_commune": "PEYREFITTE SUR L HERS", "libell_d_acheminement": "PEYREFITTE SUR L HERS", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11283"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2208a3772cd9a24fd9ec9afb1f3923f8623035d", "fields": {"nom_de_la_commune": "PEYRIAC DE MER", "libell_d_acheminement": "PEYRIAC DE MER", "code_postal": "11440", "coordonnees_gps": [43.0899544333, 2.94880546616], "code_commune_insee": "11285"}, "geometry": {"type": "Point", "coordinates": [2.94880546616, 43.0899544333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18dbb4e8085d296fed444244b0e5517d6ca5f241", "fields": {"nom_de_la_commune": "PEZENS", "libell_d_acheminement": "PEZENS", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11288"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e61d131ebe1a320e885d7a05c87eb94e490680e", "fields": {"nom_de_la_commune": "POMAS", "libell_d_acheminement": "POMAS", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11293"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce34e1ab890f35a39171718c430276ad6421d42a", "fields": {"nom_de_la_commune": "PRADELLES CABARDES", "libell_d_acheminement": "PRADELLES CABARDES", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11297"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d8f12492a04722a06d27052714b4ed7a66719c", "fields": {"nom_de_la_commune": "PRADELLES EN VAL", "libell_d_acheminement": "PRADELLES EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11298"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80ec5d3335850673d3948e81ed7bc07378973a8", "fields": {"nom_de_la_commune": "PREIXAN", "libell_d_acheminement": "PREIXAN", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11299"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "156aefcacd3571fb3620847911a6c62d9c18fb7f", "fields": {"code_postal": "11140", "code_commune_insee": "11302", "libell_d_acheminement": "PUILAURENS", "ligne_5": "LAPRADELLE", "nom_de_la_commune": "PUILAURENS", "coordonnees_gps": [42.7657925357, 2.16672255446]}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "201823eeeeca11f84db5b029c2535aac94dc80e9", "fields": {"code_postal": "11500", "code_commune_insee": "11304", "libell_d_acheminement": "QUILLAN", "ligne_5": "BRENAC", "nom_de_la_commune": "QUILLAN", "coordonnees_gps": [42.8642681542, 2.2143101342]}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca74d95a62f08b9abe021e08acfd0118ad2615a2", "fields": {"nom_de_la_commune": "RIEUX EN VAL", "libell_d_acheminement": "RIEUX EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11314"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4585e329567a697c29c574df0a93b33fbfc43139", "fields": {"nom_de_la_commune": "ROQUECOURBE MINERVOIS", "libell_d_acheminement": "ROQUECOURBE MINERVOIS", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11318"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370221bef036f9fb92f558bf535787fa94a2e78b", "fields": {"nom_de_la_commune": "ROQUEFEUIL", "libell_d_acheminement": "ROQUEFEUIL", "code_postal": "11340", "coordonnees_gps": [42.8370630944, 1.98179772961], "code_commune_insee": "11320"}, "geometry": {"type": "Point", "coordinates": [1.98179772961, 42.8370630944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9ef2309aa20c11e25fd7d98b80c2b31a438bf6", "fields": {"nom_de_la_commune": "ROQUEFORT DE SAULT", "libell_d_acheminement": "ROQUEFORT DE SAULT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11321"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef642befc7d059fb9034a692d5e4e69a24e4245a", "fields": {"nom_de_la_commune": "STE COLOMBE SUR GUETTE", "libell_d_acheminement": "STE COLOMBE SUR GUETTE", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11335"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d30155784c70e9e6b3616796d3148a5e248615e3", "fields": {"nom_de_la_commune": "ST COUAT DU RAZES", "libell_d_acheminement": "ST COUAT DU RAZES", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11338"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3614e360118d31a9fd7f6061d980ea37d3b9f7bb", "fields": {"nom_de_la_commune": "ST LAURENT DE LA CABRERISSE", "libell_d_acheminement": "ST LAURENT DE LA CABRERISSE", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11351"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f0c7d41bb71e20a28335f8c1b12000e8bd18f97", "fields": {"nom_de_la_commune": "ST PAPOUL", "libell_d_acheminement": "ST PAPOUL", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11361"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e976fc12549f2642eb276549437143bf10d7f0c0", "fields": {"nom_de_la_commune": "SAISSAC", "libell_d_acheminement": "SAISSAC", "code_postal": "11310", "coordonnees_gps": [43.3722409402, 2.17410983728], "code_commune_insee": "11367"}, "geometry": {"type": "Point", "coordinates": [2.17410983728, 43.3722409402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d272e7fb2bc48793ca82267928af34c68a404b60", "fields": {"nom_de_la_commune": "SOUPEX", "libell_d_acheminement": "SOUPEX", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11385"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2788aea2680c867c90bbbf0fb3fb5e25d3c9d93", "fields": {"nom_de_la_commune": "TREBES", "libell_d_acheminement": "TREBES", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11397"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "409ee0e533ec3f12087547d91d1c9896f98d7865", "fields": {"nom_de_la_commune": "TREZIERS", "libell_d_acheminement": "TREZIERS", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11400"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f1beb8401f32fa26477d6e5aa2cf0eb87b1459", "fields": {"nom_de_la_commune": "VILLARDEBELLE", "libell_d_acheminement": "VILLARDEBELLE", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11412"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb312bc81a921a69bcce3755ad92fd330a2587a", "fields": {"nom_de_la_commune": "VILLARZEL DU RAZES", "libell_d_acheminement": "VILLARZEL DU RAZES", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11417"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d90d48a23124f5e911a3b4def8bb94d780cf064", "fields": {"nom_de_la_commune": "VILLEMOUSTAUSSOU", "libell_d_acheminement": "VILLEMOUSTAUSSOU", "code_postal": "11620", "coordonnees_gps": [43.2496570838, 2.3662986021], "code_commune_insee": "11429"}, "geometry": {"type": "Point", "coordinates": [2.3662986021, 43.2496570838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee5ed6db167cd544aedfe24d5e1f9299d5e52d29", "fields": {"nom_de_la_commune": "VILLENEUVE LES CORBIERES", "libell_d_acheminement": "VILLENEUVE LES CORBIERES", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11431"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3fdc8b36dcd438429859d06d305ea8db5e8e20", "fields": {"nom_de_la_commune": "VILLENEUVE LES MONTREAL", "libell_d_acheminement": "VILLENEUVE LES MONTREAL", "code_postal": "11290", "coordonnees_gps": [43.1943746552, 2.18782678941], "code_commune_insee": "11432"}, "geometry": {"type": "Point", "coordinates": [2.18782678941, 43.1943746552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa3c8be911e31fa4df5abef9362229e716fc0db", "fields": {"nom_de_la_commune": "VILLEPINTE", "libell_d_acheminement": "VILLEPINTE", "code_postal": "11150", "coordonnees_gps": [43.2498711617, 2.06462165287], "code_commune_insee": "11434"}, "geometry": {"type": "Point", "coordinates": [2.06462165287, 43.2498711617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c2c258d92472b80e04c27deaf0de47e334f3bc", "fields": {"nom_de_la_commune": "AGUESSAC", "libell_d_acheminement": "AGUESSAC", "code_postal": "12520", "coordonnees_gps": [44.1968259654, 3.06387030498], "code_commune_insee": "12002"}, "geometry": {"type": "Point", "coordinates": [3.06387030498, 44.1968259654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4988602566e1077375a46257e5dbb177c5b5d6e6", "fields": {"nom_de_la_commune": "BALAGUIER D OLT", "libell_d_acheminement": "BALAGUIER D OLT", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12018"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e615bbcff3a68b7c1791c4e1de6fbfbc0d33d75", "fields": {"nom_de_la_commune": "LA BASTIDE SOLAGES", "libell_d_acheminement": "LA BASTIDE SOLAGES", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12023"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e38e42a016fce159bf62c9e05bfd6922a454f38f", "fields": {"nom_de_la_commune": "BELMONT SUR RANCE", "libell_d_acheminement": "BELMONT SUR RANCE", "code_postal": "12370", "coordonnees_gps": [43.8037612905, 2.74262599071], "code_commune_insee": "12025"}, "geometry": {"type": "Point", "coordinates": [2.74262599071, 43.8037612905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cb4510d42dd4541912d7e1e3374d551917b096e", "fields": {"nom_de_la_commune": "BOR ET BAR", "libell_d_acheminement": "BOR ET BAR", "code_postal": "12270", "coordonnees_gps": [44.2133464767, 2.02193088766], "code_commune_insee": "12029"}, "geometry": {"type": "Point", "coordinates": [2.02193088766, 44.2133464767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25c208fed74f8e7e5f53280c3d1b7e8b24a7d24f", "fields": {"nom_de_la_commune": "BROMMAT", "libell_d_acheminement": "BROMMAT", "code_postal": "12600", "coordonnees_gps": [44.8341310228, 2.67664580865], "code_commune_insee": "12036"}, "geometry": {"type": "Point", "coordinates": [2.67664580865, 44.8341310228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a074dba7f22b68e417a3c810492c7f02f03d7a71", "fields": {"nom_de_la_commune": "BROQUIES", "libell_d_acheminement": "BROQUIES", "code_postal": "12480", "coordonnees_gps": [43.9974313835, 2.69341373502], "code_commune_insee": "12037"}, "geometry": {"type": "Point", "coordinates": [2.69341373502, 43.9974313835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d747ce10aee015304b61032720bf2f16f36c12a4", "fields": {"code_postal": "12450", "code_commune_insee": "12043", "libell_d_acheminement": "CALMONT", "ligne_5": "CEIGNAC", "nom_de_la_commune": "CALMONT", "coordonnees_gps": [44.2840952345, 2.5725628832]}, "geometry": {"type": "Point", "coordinates": [2.5725628832, 44.2840952345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a64656d70c4c52654069799132990c3b9a95056d", "fields": {"nom_de_la_commune": "LA CAPELLE BALAGUIER", "libell_d_acheminement": "LA CAPELLE BALAGUIER", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12053"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "477a3fd7f7b9c3b020bdf62b83ec99d3edac2c87", "fields": {"nom_de_la_commune": "LE CLAPIER", "libell_d_acheminement": "LE CLAPIER", "code_postal": "12540", "coordonnees_gps": [43.8787455208, 3.14987374669], "code_commune_insee": "12067"}, "geometry": {"type": "Point", "coordinates": [3.14987374669, 43.8787455208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "601875963ef82d7859655e07a4bfcbe2528eaafd", "fields": {"nom_de_la_commune": "COMPS LA GRAND VILLE", "libell_d_acheminement": "COMPS LA GRAND VILLE", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12073"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "459f42946dcbe3f063e3ca02b4f3108dbedd1aaa", "fields": {"code_postal": "12320", "code_commune_insee": "12076", "libell_d_acheminement": "CONQUES EN ROUERGUE", "ligne_5": "NOAILHAC", "nom_de_la_commune": "CONQUES EN ROUERGUE", "coordonnees_gps": [44.5837975359, 2.46440638377]}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a4d40430044c5b87d51c80190b5b0a693e9b4c", "fields": {"code_postal": "12320", "code_commune_insee": "12076", "libell_d_acheminement": "CONQUES EN ROUERGUE", "ligne_5": "ST CYPRIEN SUR DOURDOU", "nom_de_la_commune": "CONQUES EN ROUERGUE", "coordonnees_gps": [44.5837975359, 2.46440638377]}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1163746d28c1be5273307a2742fbc7545184118", "fields": {"nom_de_la_commune": "CREISSELS", "libell_d_acheminement": "CREISSELS", "code_postal": "12100", "coordonnees_gps": [44.0898281066, 3.10621950967], "code_commune_insee": "12084"}, "geometry": {"type": "Point", "coordinates": [3.10621950967, 44.0898281066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf4ab4624915436a0fe93cadeaef65d8c62c0018", "fields": {"nom_de_la_commune": "ENTRAYGUES SUR TRUYERE", "libell_d_acheminement": "ENTRAYGUES SUR TRUYERE", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12094"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eddc282e8e9698a2246ca25eeb65b1332ce020f", "fields": {"nom_de_la_commune": "FAYET", "libell_d_acheminement": "FAYET", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12099"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97e3bb1c2193318c0716b1cf8988071bbe4e272", "fields": {"nom_de_la_commune": "FIRMI", "libell_d_acheminement": "FIRMI", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12100"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56378fdf3d7ee24bfc31438d79c2e4f3b2ea4eaf", "fields": {"nom_de_la_commune": "GALGAN", "libell_d_acheminement": "GALGAN", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12108"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032229a2b68aa93ee5c30c73277a8a50a43d635b", "fields": {"nom_de_la_commune": "GISSAC", "libell_d_acheminement": "GISSAC", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12109"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38988f819f3230cd5b94802d5efd5edc9fc5fa8", "fields": {"nom_de_la_commune": "GOLINHAC", "libell_d_acheminement": "GOLINHAC", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12110"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1036e9a10248b2f5084b2e863c385f2ed3ed8e2", "fields": {"nom_de_la_commune": "LEDERGUES", "libell_d_acheminement": "LEDERGUES", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12127"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da6140dc0fd334648b24364c0689d929f5908177", "fields": {"nom_de_la_commune": "LESTRADE ET THOUELS", "libell_d_acheminement": "LESTRADE ET THOUELS", "code_postal": "12430", "coordonnees_gps": [44.0864778708, 2.70135704539], "code_commune_insee": "12129"}, "geometry": {"type": "Point", "coordinates": [2.70135704539, 44.0864778708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "252b9a44571bd2b88b22d003d33e5c84a88a3c51", "fields": {"nom_de_la_commune": "MELJAC", "libell_d_acheminement": "MELJAC", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12144"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "044abea709009317d00363f2f8c65584a29d6fe3", "fields": {"nom_de_la_commune": "MILLAU", "libell_d_acheminement": "MILLAU", "code_postal": "12100", "coordonnees_gps": [44.0898281066, 3.10621950967], "code_commune_insee": "12145"}, "geometry": {"type": "Point", "coordinates": [3.10621950967, 44.0898281066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8a53eee268af7e8b67c194685b7a3aef5fa098", "fields": {"code_postal": "12360", "code_commune_insee": "12147", "libell_d_acheminement": "MONTAGNOL", "ligne_5": "CENOMES", "nom_de_la_commune": "MONTAGNOL", "coordonnees_gps": [43.7904240706, 2.95795996186]}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d1ab2f764912295fc87e5bf457bdea86b2b494a", "fields": {"nom_de_la_commune": "BRUGAIROLLES", "libell_d_acheminement": "BRUGAIROLLES", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11053"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b136585e761415fd59a5217745465ce9f184cc9", "fields": {"nom_de_la_commune": "CABRESPINE", "libell_d_acheminement": "CABRESPINE", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11056"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9642165b43d5647bd255ed2aaae866ece944ad", "fields": {"nom_de_la_commune": "CASSAIGNES", "libell_d_acheminement": "CASSAIGNES", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11073"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9089cb582919801587bd913e6abf525fb441f482", "fields": {"nom_de_la_commune": "BOURIGEOLE", "libell_d_acheminement": "BOURIGEOLE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11046"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "647e2910385be473028a8e422b974b9a5a98323e", "fields": {"nom_de_la_commune": "CAILHAVEL", "libell_d_acheminement": "CAILHAVEL", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11059"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791649335c83f96b498a49ece1e94a912bf0e3cf", "fields": {"nom_de_la_commune": "BOUTENAC", "libell_d_acheminement": "BOUTENAC", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11048"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ae14d51e1b6017248cf194841863aecb2ed38b", "fields": {"nom_de_la_commune": "BOUISSE", "libell_d_acheminement": "BOUISSE", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11044"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "740a6f18b34eff886a659b46f9ff834962414852", "fields": {"nom_de_la_commune": "CARLIPA", "libell_d_acheminement": "CARLIPA", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11070"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ecbbc890015fecbb3331ccdb5bb65552d037ac", "fields": {"nom_de_la_commune": "CAILLA", "libell_d_acheminement": "CAILLA", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11060"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e33a5f07ff609db55701c1970c3a642f1f4c5a", "fields": {"nom_de_la_commune": "L ABERGEMENT CLEMENCIAT", "libell_d_acheminement": "L ABERGEMENT CLEMENCIAT", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01001"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8739d2f399ecf584a02a0df914d87d3e8d2cc874", "fields": {"nom_de_la_commune": "ARS SUR FORMANS", "libell_d_acheminement": "ARS SUR FORMANS", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01021"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8eb826a3c36a4a5d87306387420c3d65d42cbaf", "fields": {"nom_de_la_commune": "AMBLEON", "libell_d_acheminement": "AMBLEON", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01006"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d096caa71e1e9dfb2cdeb6b14ca107412b664d91", "fields": {"nom_de_la_commune": "BRANCOURT EN LAONNOIS", "libell_d_acheminement": "BRANCOURT EN LAONNOIS", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02111"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f015a93ce3266aa4a0504df48761006d2aefbc91", "fields": {"nom_de_la_commune": "BUCY LES PIERREPONT", "libell_d_acheminement": "BUCY LES PIERREPONT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02133"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12c9992a309f9ea8eefea280fbb8993469932a56", "fields": {"nom_de_la_commune": "CHATILLON LES SONS", "libell_d_acheminement": "CHATILLON LES SONS", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02169"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15641f625f9949347b40f034eefc77a80c0ae211", "fields": {"nom_de_la_commune": "BRUYERES SUR FERE", "libell_d_acheminement": "BRUYERES SUR FERE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02127"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa61e18cd1a7a8c47f7476e51743a3d2ed181a0", "fields": {"nom_de_la_commune": "LA CAPELLE", "libell_d_acheminement": "LA CAPELLE", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02141"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b6df89b1a283bf2b13ff16870c0032eaf1c651", "fields": {"nom_de_la_commune": "CHAVIGNY", "libell_d_acheminement": "CHAVIGNY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02175"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdc801e9c3198e5fd536a377d5694d6070e229ec", "fields": {"nom_de_la_commune": "CERSEUIL", "libell_d_acheminement": "CERSEUIL", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02152"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c7dab246acce367ebc036574b838a58923632c3", "fields": {"nom_de_la_commune": "BRENY", "libell_d_acheminement": "BRENY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02121"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3295152fc1172a77ebc7326b676372ad9a66fb87", "fields": {"nom_de_la_commune": "BRUYS", "libell_d_acheminement": "BRUYS", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02129"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "104807a40ec83cb02164565102b6277324752b0f", "fields": {"code_postal": "01260", "code_commune_insee": "01187", "libell_d_acheminement": "HAUT VALROMEY", "ligne_5": "LE GRAND ABERGEMENT", "nom_de_la_commune": "HAUT VALROMEY", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645e8032462bdfaed5900bdd6a0f01dc116566a9", "fields": {"code_postal": "01090", "code_commune_insee": "01165", "libell_d_acheminement": "FRANCHELEINS", "ligne_5": "CESSEINS", "nom_de_la_commune": "FRANCHELEINS", "coordonnees_gps": [46.0869886552, 4.79611073763]}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddde7a9bb4bd6e0f32b109c01357be9f44fdbb24", "fields": {"nom_de_la_commune": "DOMPIERRE SUR CHALARONNE", "libell_d_acheminement": "DOMPIERRE SUR CHALARONNE", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01146"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7382f5b406974ae2c10a3097a2a14f90a503baf", "fields": {"nom_de_la_commune": "DOMPIERRE SUR VEYLE", "libell_d_acheminement": "DOMPIERRE SUR VEYLE", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01145"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "353c57bd61c4caf812953b04d7bd371e20130f4a", "fields": {"nom_de_la_commune": "GENOUILLEUX", "libell_d_acheminement": "GENOUILLEUX", "code_postal": "01090", "coordonnees_gps": [46.0869886552, 4.79611073763], "code_commune_insee": "01169"}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf34e4f3018a9177751d47d1f5703c8bb6d7ca3", "fields": {"nom_de_la_commune": "DRUILLAT", "libell_d_acheminement": "DRUILLAT", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01151"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca15b6ceb7a3ef8b6e723f11a9d8fd0f2ae289c2", "fields": {"nom_de_la_commune": "GORREVOD", "libell_d_acheminement": "GORREVOD", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01175"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33d6bbdc36b8710f9ac2ef9f6ac680cba87c4484", "fields": {"nom_de_la_commune": "FAREINS", "libell_d_acheminement": "FAREINS", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01157"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7002ba28cc9d4c9c390120047be74466403665", "fields": {"nom_de_la_commune": "FLAXIEU", "libell_d_acheminement": "FLAXIEU", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01162"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20dfdeedd936ed0697b8398708d8d43cd9c06e98", "fields": {"nom_de_la_commune": "GEX", "libell_d_acheminement": "GEX", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01173"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7a99d89cbb95ccc10d81b7d4380de26556e19b", "fields": {"code_postal": "01580", "code_commune_insee": "01410", "libell_d_acheminement": "SONTHONNAX LA MONTAGNE", "ligne_5": "NAPT", "nom_de_la_commune": "SONTHONNAX LA MONTAGNE", "coordonnees_gps": [46.2402104429, 5.54908625912]}, "geometry": {"type": "Point", "coordinates": [5.54908625912, 46.2402104429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78aa799a0310a1668bfb623f437c9d7fbb94bcf2", "fields": {"nom_de_la_commune": "SONTHONNAX LA MONTAGNE", "libell_d_acheminement": "SONTHONNAX LA MONTAGNE", "code_postal": "01580", "coordonnees_gps": [46.2402104429, 5.54908625912], "code_commune_insee": "01410"}, "geometry": {"type": "Point", "coordinates": [5.54908625912, 46.2402104429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "682a8a1f42141ef6547255ff7ca22eb6fd244053", "fields": {"nom_de_la_commune": "SERRIERES DE BRIORD", "libell_d_acheminement": "SERRIERES DE BRIORD", "code_postal": "01470", "coordonnees_gps": [45.805864462, 5.47727707691], "code_commune_insee": "01403"}, "geometry": {"type": "Point", "coordinates": [5.47727707691, 45.805864462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf21f76d9d1b3a2c4b6d10245ae241bc82eea971", "fields": {"nom_de_la_commune": "ST RAMBERT EN BUGEY", "libell_d_acheminement": "ST RAMBERT EN BUGEY", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01384"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dea08cb420749e40d397e908680f3502ec07486f", "fields": {"nom_de_la_commune": "ST PAUL DE VARAX", "libell_d_acheminement": "ST PAUL DE VARAX", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01383"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cdd09503ae1c131085d194517ca9592b485ddc8", "fields": {"nom_de_la_commune": "THEZILLIEU", "libell_d_acheminement": "THEZILLIEU", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01417"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23c60b2ead754bf27ce59a48bc7634cb8737c0c1", "fields": {"nom_de_la_commune": "SERVIGNAT", "libell_d_acheminement": "SERVIGNAT", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01406"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "461f2218d1c430df724a1b0975eebfeae5ee2e8f", "fields": {"nom_de_la_commune": "THOISSEY", "libell_d_acheminement": "THOISSEY", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01420"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af38002440d8966a325fd16d61be4d58e975784d", "fields": {"nom_de_la_commune": "SOUCLIN", "libell_d_acheminement": "SOUCLIN", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01411"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e7cf06bacc858379bffa405f5a3ddca9246e8ab", "fields": {"nom_de_la_commune": "SERGY", "libell_d_acheminement": "SERGY", "code_postal": "01630", "coordonnees_gps": [46.2145490709, 5.95816552297], "code_commune_insee": "01401"}, "geometry": {"type": "Point", "coordinates": [5.95816552297, 46.2145490709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9ddcaaec5e77b12dd418887e9974a6bf92a45e", "fields": {"code_postal": "01260", "code_commune_insee": "01079", "libell_d_acheminement": "CHAMPAGNE EN VALROMEY", "ligne_5": "PASSIN", "nom_de_la_commune": "CHAMPAGNE EN VALROMEY", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "486943e01c8f16d6667bd3e30b2e29132a9ad8c8", "fields": {"nom_de_la_commune": "CHARNOZ SUR AIN", "libell_d_acheminement": "CHARNOZ SUR AIN", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01088"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a09bf4ca8e0b4414d8ceb1c765c84b1e7bce1f8", "fields": {"nom_de_la_commune": "CHAMPFROMIER", "libell_d_acheminement": "CHAMPFROMIER", "code_postal": "01410", "coordonnees_gps": [46.2796643227, 5.91198359476], "code_commune_insee": "01081"}, "geometry": {"type": "Point", "coordinates": [5.91198359476, 46.2796643227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c31de2ac1a4b5e69d50811bc4830d69d7a8d148", "fields": {"nom_de_la_commune": "CHAZEY BONS", "libell_d_acheminement": "CHAZEY BONS", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01098"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c7bd80c02da3c515f1e179f0c9840c1821f9c42", "fields": {"nom_de_la_commune": "CONFRANCON", "libell_d_acheminement": "CONFRANCON", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01115"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c7aa4f5f17804d77095d620926f0a23574104a", "fields": {"nom_de_la_commune": "COLLONGES", "libell_d_acheminement": "COLLONGES", "code_postal": "01550", "coordonnees_gps": [46.1521009626, 5.90976446888], "code_commune_insee": "01109"}, "geometry": {"type": "Point", "coordinates": [5.90976446888, 46.1521009626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f32591e40cc875af59e51bd2a4bb4ed9c4c21c", "fields": {"nom_de_la_commune": "DOMMARTIN", "libell_d_acheminement": "DOMMARTIN", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01144"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fd9dff6af31149b48048c1e04dc4c1b7bacfe32", "fields": {"nom_de_la_commune": "CHALEINS", "libell_d_acheminement": "CHALEINS", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01075"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be079ef9545833c16faf3eb7eb3279bc099f22e6", "fields": {"nom_de_la_commune": "COLOMIEU", "libell_d_acheminement": "COLOMIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01110"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3421da623212508103591c934ca59f5304d63c1", "fields": {"nom_de_la_commune": "CROTTET", "libell_d_acheminement": "CROTTET", "code_postal": "01750", "coordonnees_gps": [46.2973437135, 4.87546330177], "code_commune_insee": "01134"}, "geometry": {"type": "Point", "coordinates": [4.87546330177, 46.2973437135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4606ec8af36e4cd4799ed077fb59a6e7c517c7d1", "fields": {"code_postal": "01680", "code_commune_insee": "01338", "libell_d_acheminement": "GROSLEE ST BENOIT", "ligne_5": "GROSLEE", "nom_de_la_commune": "GROSLEE ST BENOIT", "coordonnees_gps": [45.752622921, 5.55446422211]}, "geometry": {"type": "Point", "coordinates": [5.55446422211, 45.752622921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212cc8229cda99d93d80d3242449008d542ec365", "fields": {"nom_de_la_commune": "PARVES ET NATTAGES", "libell_d_acheminement": "PARVES ET NATTAGES", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01286"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c272ef824da4c309feba3289fefb8526ecbccfb2", "fields": {"nom_de_la_commune": "ST ANDRE DE BAGE", "libell_d_acheminement": "ST ANDRE DE BAGE", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01332"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad5ff22730ab10b63c2c712e4a8da9ee7ec46e9", "fields": {"nom_de_la_commune": "ST BENIGNE", "libell_d_acheminement": "ST BENIGNE", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01337"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d55e29fcdafc8ef236958f5dfc6914491987aa3", "fields": {"nom_de_la_commune": "REYSSOUZE", "libell_d_acheminement": "REYSSOUZE", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01323"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e69ce4e7e6f1c952c351f42518435b493e2b3dcd", "fields": {"nom_de_la_commune": "RELEVANT", "libell_d_acheminement": "RELEVANT", "code_postal": "01990", "coordonnees_gps": [46.0766987934, 4.89959868147], "code_commune_insee": "01319"}, "geometry": {"type": "Point", "coordinates": [4.89959868147, 46.0766987934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54d7eed1145a8e4a5cde91970c9845def676f859", "fields": {"nom_de_la_commune": "ST ALBAN", "libell_d_acheminement": "ST ALBAN", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01331"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0889a3cac70c4e9856e81ae927c251119b3e75c3", "fields": {"nom_de_la_commune": "PONCIN", "libell_d_acheminement": "PONCIN", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01303"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde25577994098b6e0798e021288464188ec7741", "fields": {"nom_de_la_commune": "POUGNY", "libell_d_acheminement": "POUGNY", "code_postal": "01550", "coordonnees_gps": [46.1521009626, 5.90976446888], "code_commune_insee": "01308"}, "geometry": {"type": "Point", "coordinates": [5.90976446888, 46.1521009626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb486152d0e0b1266fb87cfafa9d820f41dcd9c8", "fields": {"nom_de_la_commune": "PERON", "libell_d_acheminement": "PERON", "code_postal": "01630", "coordonnees_gps": [46.2145490709, 5.95816552297], "code_commune_insee": "01288"}, "geometry": {"type": "Point", "coordinates": [5.95816552297, 46.2145490709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d007560d11898de6aa40376803e2adc156bf11f", "fields": {"code_postal": "01260", "code_commune_insee": "01187", "libell_d_acheminement": "HAUT VALROMEY", "ligne_5": "LE PETIT ABERGEMENT", "nom_de_la_commune": "HAUT VALROMEY", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e607cd3b5a4762842983de8cb212e8340f9b070", "fields": {"code_postal": "01580", "code_commune_insee": "01240", "libell_d_acheminement": "MATAFELON GRANGES", "ligne_5": "GRANGES", "nom_de_la_commune": "MATAFELON GRANGES", "coordonnees_gps": [46.2402104429, 5.54908625912]}, "geometry": {"type": "Point", "coordinates": [5.54908625912, 46.2402104429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87f886d52cd2596201d1304af5cda60aa0a330f", "fields": {"nom_de_la_commune": "MATAFELON GRANGES", "libell_d_acheminement": "MATAFELON GRANGES", "code_postal": "01580", "coordonnees_gps": [46.2402104429, 5.54908625912], "code_commune_insee": "01240"}, "geometry": {"type": "Point", "coordinates": [5.54908625912, 46.2402104429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88a0791bcc9f1137b5023a1e7504e5dbf96083cc", "fields": {"nom_de_la_commune": "MALAFRETAZ", "libell_d_acheminement": "MALAFRETAZ", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01229"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df510fe4ae7ccdc2f18f8d48d2796567c350f266", "fields": {"nom_de_la_commune": "JOURNANS", "libell_d_acheminement": "JOURNANS", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01197"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf00b2373f5ddc4425cf5d93214f79e2c806f50f", "fields": {"nom_de_la_commune": "JAYAT", "libell_d_acheminement": "JAYAT", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01196"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2dac7e6135721b23b7b338029ea398d44306527", "fields": {"nom_de_la_commune": "LURCY", "libell_d_acheminement": "LURCY", "code_postal": "01090", "coordonnees_gps": [46.0869886552, 4.79611073763], "code_commune_insee": "01225"}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65761055d08832eac03aff0df79c1853c030befd", "fields": {"nom_de_la_commune": "LHUIS", "libell_d_acheminement": "LHUIS", "code_postal": "01680", "coordonnees_gps": [45.752622921, 5.55446422211], "code_commune_insee": "01216"}, "geometry": {"type": "Point", "coordinates": [5.55446422211, 45.752622921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f20a140ab1ff71229d2fbba1e322f0a7b56177", "fields": {"nom_de_la_commune": "LENT", "libell_d_acheminement": "LENT", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01211"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71e796dc6b4c1abd5b6223be24b5023ab76ce654", "fields": {"nom_de_la_commune": "LEAZ", "libell_d_acheminement": "LEAZ", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01209"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3083b242c4bcd7e262a26d5cdb1ebd2323729fc", "fields": {"code_postal": "01250", "code_commune_insee": "01245", "libell_d_acheminement": "BOHAS MEYRIAT RIGNAT", "ligne_5": "BOHAS", "nom_de_la_commune": "BOHAS MEYRIAT RIGNAT", "coordonnees_gps": [46.2066710432, 5.38605889851]}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f2b009826e7a84fb5d8401a93040a4b88ed367", "fields": {"nom_de_la_commune": "BOHAS MEYRIAT RIGNAT", "libell_d_acheminement": "BOHAS MEYRIAT RIGNAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01245"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b257e2c17581cd157f5506cc98758ad9cc63d2", "fields": {"nom_de_la_commune": "MESSIMY SUR SAONE", "libell_d_acheminement": "MESSIMY SUR SAONE", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01243"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1373f587c02226cc0f27c173bf4cb06631e62510", "fields": {"nom_de_la_commune": "MOGNENEINS", "libell_d_acheminement": "MOGNENEINS", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01252"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c34cae17c168d34f9ef307ad4bfe8fd3b11b4fe", "fields": {"nom_de_la_commune": "ORDONNAZ", "libell_d_acheminement": "ORDONNAZ", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01280"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b71443a64350410e68d2f506fea9a5f01622f184", "fields": {"nom_de_la_commune": "MIRIBEL", "libell_d_acheminement": "MIRIBEL", "code_postal": "01700", "coordonnees_gps": [45.8388521429, 4.95806179291], "code_commune_insee": "01249"}, "geometry": {"type": "Point", "coordinates": [4.95806179291, 45.8388521429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86258fbb835c27ae595d653f372c9ce81e076d2c", "fields": {"nom_de_la_commune": "MIONNAY", "libell_d_acheminement": "MIONNAY", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01248"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8387e0fbdcfb4139e1131ad6c09a437f1a90273e", "fields": {"nom_de_la_commune": "MIJOUX", "libell_d_acheminement": "MIJOUX", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01247"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3be9aae87ab46bd430a18307d3bf2dd9ef8bb163", "fields": {"nom_de_la_commune": "MIJOUX", "libell_d_acheminement": "MIJOUX", "code_postal": "01410", "coordonnees_gps": [46.2796643227, 5.91198359476], "code_commune_insee": "01247"}, "geometry": {"type": "Point", "coordinates": [5.91198359476, 46.2796643227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f965c7da9493ad4fe653347bc4be4eaef8ac58f9", "fields": {"nom_de_la_commune": "OZAN", "libell_d_acheminement": "OZAN", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01284"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7da880cbf415492ba735c4a024e08abf8f100548", "fields": {"nom_de_la_commune": "ANIZY LE CHATEAU", "libell_d_acheminement": "ANIZY LE CHATEAU", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02018"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f3a4dca629f516a51fc461c0f50d8e56110d0d4", "fields": {"nom_de_la_commune": "ATHIES SOUS LAON", "libell_d_acheminement": "ATHIES SOUS LAON", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02028"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f87c6cc4397bf0a7ee4370414871b0df38ebc06", "fields": {"nom_de_la_commune": "ANCIENVILLE", "libell_d_acheminement": "ANCIENVILLE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02015"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "333a2ebeb11843e821f6475cb1f2ecfa7039f2a5", "fields": {"nom_de_la_commune": "ANDELAIN", "libell_d_acheminement": "ANDELAIN", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02016"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7701a5852dae374a9dfae856698dbff2204ed7c", "fields": {"code_postal": "01800", "code_commune_insee": "01054", "libell_d_acheminement": "BOURG ST CHRISTOPHE", "ligne_5": "MARFOZ", "nom_de_la_commune": "BOURG ST CHRISTOPHE", "coordonnees_gps": [45.8984701804, 5.16340257624]}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e05e002ff1454ba601b110fa807ed892a9f49eeb", "fields": {"code_postal": "01360", "code_commune_insee": "01032", "libell_d_acheminement": "BELIGNEUX", "ligne_5": "CAMP DE LA VALBONNE", "nom_de_la_commune": "BELIGNEUX", "coordonnees_gps": [45.8283269463, 5.15327415034]}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186ddeb8955df52f1c29fc3e474f397ee5df94b5", "fields": {"nom_de_la_commune": "BOYEUX ST JEROME", "libell_d_acheminement": "BOYEUX ST JEROME", "code_postal": "01640", "coordonnees_gps": [46.0337779297, 5.42151732468], "code_commune_insee": "01056"}, "geometry": {"type": "Point", "coordinates": [5.42151732468, 46.0337779297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd8356f0bde5e9039eb05747a2486d223d9ae87", "fields": {"nom_de_la_commune": "BOULIGNEUX", "libell_d_acheminement": "BOULIGNEUX", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01052"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b9006b47281df6d2c561f690a20845063731ac1", "fields": {"nom_de_la_commune": "CEYZERIAT", "libell_d_acheminement": "CEYZERIAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01072"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f271a3729125889807b204d0e1391e83adfac0f0", "fields": {"nom_de_la_commune": "ATTIGNAT", "libell_d_acheminement": "ATTIGNAT", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01024"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34969a0b34a587297dca67ef8b2c6bd3dde9cbac", "fields": {"nom_de_la_commune": "BEAUPONT", "libell_d_acheminement": "BEAUPONT", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01029"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "921fc8a8c0459a9ec70f92d83018f1c9ba915b3e", "fields": {"nom_de_la_commune": "BOLOZON", "libell_d_acheminement": "BOLOZON", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01051"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290784a0f7610fc9a519a3f11db1edfc53fd7010", "fields": {"nom_de_la_commune": "BIRIEUX", "libell_d_acheminement": "BIRIEUX", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01045"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "547ab4fce136c95ab812871b3aa028180a15fe69", "fields": {"nom_de_la_commune": "BRENAZ", "libell_d_acheminement": "BRENAZ", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01059"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbf1d3f415c8ba365dbf9df00e51bd8b31b10337", "fields": {"nom_de_la_commune": "ST GERMAIN LES PAROISSES", "libell_d_acheminement": "ST GERMAIN LES PAROISSES", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01358"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b92500e9a68b8148ea2aed0b39b5a3973989d1a", "fields": {"nom_de_la_commune": "ST JULIEN SUR REYSSOUZE", "libell_d_acheminement": "ST JULIEN SUR REYSSOUZE", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01367"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf68271dc9920c68b261a9ab56302f778cd338e6", "fields": {"nom_de_la_commune": "ST JEAN DE THURIGNEUX", "libell_d_acheminement": "ST JEAN DE THURIGNEUX", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01362"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "506140448a93e52a378d2df7460363a210a113ee", "fields": {"nom_de_la_commune": "ST MAURICE DE BEYNOST", "libell_d_acheminement": "ST MAURICE DE BEYNOST", "code_postal": "01700", "coordonnees_gps": [45.8388521429, 4.95806179291], "code_commune_insee": "01376"}, "geometry": {"type": "Point", "coordinates": [4.95806179291, 45.8388521429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99a80ce32e6f9b41730d0108e524273ed35d41bc", "fields": {"nom_de_la_commune": "ST JULIEN SUR VEYLE", "libell_d_acheminement": "ST JULIEN SUR VEYLE", "code_postal": "01540", "coordonnees_gps": [46.2212986861, 4.98198011208], "code_commune_insee": "01368"}, "geometry": {"type": "Point", "coordinates": [4.98198011208, 46.2212986861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f241bfb1e301e182896cc55162e49b87df37c587", "fields": {"nom_de_la_commune": "BANNOST VILLEGAGNON", "libell_d_acheminement": "BANNOST VILLEGAGNON", "code_postal": "77970", "coordonnees_gps": [48.6629667533, 3.14093688522], "code_commune_insee": "77020"}, "geometry": {"type": "Point", "coordinates": [3.14093688522, 48.6629667533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0564b01001b35623a2762e011624c1f827328c", "fields": {"nom_de_la_commune": "BARBEY", "libell_d_acheminement": "BARBEY", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77021"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b204810c933809072dc8334e487b3ccc35b1cc", "fields": {"nom_de_la_commune": "BAZOCHES LES BRAY", "libell_d_acheminement": "BAZOCHES LES BRAY", "code_postal": "77118", "coordonnees_gps": [48.3962434685, 3.16889442918], "code_commune_insee": "77025"}, "geometry": {"type": "Point", "coordinates": [3.16889442918, 48.3962434685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4c75201c065074ae923fae38029f63af8360ef0", "fields": {"nom_de_la_commune": "BEAUMONT DU GATINAIS", "libell_d_acheminement": "BEAUMONT DU GATINAIS", "code_postal": "77890", "coordonnees_gps": [48.1786433192, 2.5341392437], "code_commune_insee": "77027"}, "geometry": {"type": "Point", "coordinates": [2.5341392437, 48.1786433192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f4e61d9b28a0062da8789149022b13d01ab0a6", "fields": {"nom_de_la_commune": "BLANDY", "libell_d_acheminement": "BLANDY", "code_postal": "77115", "coordonnees_gps": [48.5423516758, 2.77150375047], "code_commune_insee": "77034"}, "geometry": {"type": "Point", "coordinates": [2.77150375047, 48.5423516758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825727bb18c5960f3c2d3221c5a566bdeaf0b253", "fields": {"nom_de_la_commune": "BLENNES", "libell_d_acheminement": "BLENNES", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77035"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49729b2a5e71ef7d81f2887a6cec324d680ae2ca", "fields": {"nom_de_la_commune": "BOIS LE ROI", "libell_d_acheminement": "BOIS LE ROI", "code_postal": "77590", "coordonnees_gps": [48.4860029495, 2.72692404848], "code_commune_insee": "77037"}, "geometry": {"type": "Point", "coordinates": [2.72692404848, 48.4860029495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a59ddfb0f373c00cdf78eb4755d4edda9b683f", "fields": {"nom_de_la_commune": "BOISSETTES", "libell_d_acheminement": "BOISSETTES", "code_postal": "77350", "coordonnees_gps": [48.5350739052, 2.60727189442], "code_commune_insee": "77038"}, "geometry": {"type": "Point", "coordinates": [2.60727189442, 48.5350739052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c62f4e8a33163d25c5abc684fe87e3344e3c7a4", "fields": {"nom_de_la_commune": "BOISSISE LA BERTRAND", "libell_d_acheminement": "BOISSISE LA BERTRAND", "code_postal": "77350", "coordonnees_gps": [48.5350739052, 2.60727189442], "code_commune_insee": "77039"}, "geometry": {"type": "Point", "coordinates": [2.60727189442, 48.5350739052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97343e6dd1b047ad880cae3487df39acfb3e7fe9", "fields": {"nom_de_la_commune": "BOUGLIGNY", "libell_d_acheminement": "BOUGLIGNY", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77045"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e47d83f2f163dcb10c0055db7e375f9c6d01cd19", "fields": {"nom_de_la_commune": "BOURRON MARLOTTE", "libell_d_acheminement": "BOURRON MARLOTTE", "code_postal": "77780", "coordonnees_gps": [48.334846204, 2.70118147516], "code_commune_insee": "77048"}, "geometry": {"type": "Point", "coordinates": [2.70118147516, 48.334846204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2265e75293ea7e89c4a07498bbeb88ad4e9deaa", "fields": {"nom_de_la_commune": "BRANSLES", "libell_d_acheminement": "BRANSLES", "code_postal": "77620", "coordonnees_gps": [48.1721615922, 2.86730865487], "code_commune_insee": "77050"}, "geometry": {"type": "Point", "coordinates": [2.86730865487, 48.1721615922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c23246f5508fefe1a60c749d3fa4e13765a6af", "fields": {"nom_de_la_commune": "BRAY SUR SEINE", "libell_d_acheminement": "BRAY SUR SEINE", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77051"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "991f0ce266374c2985eae1678dd4750577a736f1", "fields": {"nom_de_la_commune": "BREAU", "libell_d_acheminement": "BREAU", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77052"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aeefb09ec5584c4f4cdc545ae1e703419cf0463", "fields": {"nom_de_la_commune": "BUSSY ST MARTIN", "libell_d_acheminement": "BUSSY ST MARTIN", "code_postal": "77600", "coordonnees_gps": [48.8361794738, 2.73226890342], "code_commune_insee": "77059"}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01bf8841d2373f61b264c80879e41ee93d1a283b", "fields": {"nom_de_la_commune": "BUTHIERS", "libell_d_acheminement": "BUTHIERS", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77060"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4533350c0420ff092bd3ad88941d40ad8d86d00d", "fields": {"nom_de_la_commune": "CHALAUTRE LA PETITE", "libell_d_acheminement": "CHALAUTRE LA PETITE", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77073"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f064ece52923140cf8e0ef168c499065b91d72", "fields": {"nom_de_la_commune": "CHAMPDEUIL", "libell_d_acheminement": "CHAMPDEUIL", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77081"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274e0ecb66bf20905d186fed45a13cb233ada3b4", "fields": {"nom_de_la_commune": "LA CHAPELLE RABLAIS", "libell_d_acheminement": "LA CHAPELLE RABLAIS", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77089"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c9a0b6e520cf2f1de7de65273437a9bd964a07", "fields": {"nom_de_la_commune": "CHATRES", "libell_d_acheminement": "CHATRES", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77104"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7924f3a8dd95b4752c1ac995e0713c8ee068488", "fields": {"code_postal": "77500", "code_commune_insee": "77108", "libell_d_acheminement": "CHELLES", "ligne_5": "CHANTEREINE", "nom_de_la_commune": "CHELLES", "coordonnees_gps": [48.8836002438, 2.59608427563]}, "geometry": {"type": "Point", "coordinates": [2.59608427563, 48.8836002438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f72833f9f556335bee2dabdc72c4aa174647807", "fields": {"code_postal": "77173", "code_commune_insee": "77114", "libell_d_acheminement": "CHEVRY COSSIGNY", "ligne_5": "COSSIGNY", "nom_de_la_commune": "CHEVRY COSSIGNY", "coordonnees_gps": [48.7235256788, 2.6769970058]}, "geometry": {"type": "Point", "coordinates": [2.6769970058, 48.7235256788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ead9feac0ab66f6235976daa62dd732f1700acf2", "fields": {"nom_de_la_commune": "COMBS LA VILLE", "libell_d_acheminement": "COMBS LA VILLE", "code_postal": "77380", "coordonnees_gps": [48.657625449, 2.57531812256], "code_commune_insee": "77122"}, "geometry": {"type": "Point", "coordinates": [2.57531812256, 48.657625449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e9610259146e86bd09cc0c364970a4a164e275", "fields": {"nom_de_la_commune": "COMPANS", "libell_d_acheminement": "COMPANS", "code_postal": "77290", "coordonnees_gps": [48.979596619, 2.61891087151], "code_commune_insee": "77123"}, "geometry": {"type": "Point", "coordinates": [2.61891087151, 48.979596619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a13c01dda2db6cbb039c5a1d99d869056689ed9a", "fields": {"nom_de_la_commune": "CONDE STE LIBIAIRE", "libell_d_acheminement": "CONDE STE LIBIAIRE", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77125"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db5fd8c81c9fc83a65ea811d019a7fa4e40dcd94", "fields": {"nom_de_la_commune": "COULOMMIERS", "libell_d_acheminement": "COULOMMIERS", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77131"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f2bd20444cbc9dc7ff0b78fc8e7612e971c993", "fields": {"nom_de_la_commune": "COURTACON", "libell_d_acheminement": "COURTACON", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77137"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eece60d24b8c3bac387366ef6d59a4d07addd2ff", "fields": {"nom_de_la_commune": "COUTENCON", "libell_d_acheminement": "COUTENCON", "code_postal": "77154", "coordonnees_gps": [48.4891565609, 3.02294060118], "code_commune_insee": "77140"}, "geometry": {"type": "Point", "coordinates": [3.02294060118, 48.4891565609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703591379c6148d40dae323b7fcb4c1306f4cabf", "fields": {"code_postal": "77183", "code_commune_insee": "77146", "libell_d_acheminement": "CROISSY BEAUBOURG", "ligne_5": "BEAUBOURG", "nom_de_la_commune": "CROISSY BEAUBOURG", "coordonnees_gps": [48.8166135478, 2.65568100478]}, "geometry": {"type": "Point", "coordinates": [2.65568100478, 48.8166135478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6d33d5856415c492c2b4bccd4fd8b21cd3f53f6", "fields": {"nom_de_la_commune": "DARVAULT", "libell_d_acheminement": "DARVAULT", "code_postal": "77140", "coordonnees_gps": [48.2750471622, 2.70959190478], "code_commune_insee": "77156"}, "geometry": {"type": "Point", "coordinates": [2.70959190478, 48.2750471622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4653cd048f254e77aa2762d5acddc169ee20343d", "fields": {"nom_de_la_commune": "FAY LES NEMOURS", "libell_d_acheminement": "FAY LES NEMOURS", "code_postal": "77167", "coordonnees_gps": [48.2322771865, 2.71472288232], "code_commune_insee": "77178"}, "geometry": {"type": "Point", "coordinates": [2.71472288232, 48.2322771865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfe06b329a8ec88d2b235387d67f53ed9415a870", "fields": {"nom_de_la_commune": "FORGES", "libell_d_acheminement": "FORGES", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77194"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9611f98bef99b8f81ef5331a9e3e90314af1765", "fields": {"nom_de_la_commune": "FROMONT", "libell_d_acheminement": "FROMONT", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77198"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eebdbc8b2e66cccda88edb7fe6413b11714da51", "fields": {"nom_de_la_commune": "FUBLAINES", "libell_d_acheminement": "FUBLAINES", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77199"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31c0db82849e09f0800325b1a7e7946c89e3754b", "fields": {"nom_de_la_commune": "GIREMOUTIERS", "libell_d_acheminement": "GIREMOUTIERS", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77206"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "114e9189c3688cf25bdfe40a500221180616f3f5", "fields": {"nom_de_la_commune": "GRANDPUITS BAILLY CARROIS", "libell_d_acheminement": "GRANDPUITS BAILLY CARROIS", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77211"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73da723d40d6ac8204898b07f3116272b25008c9", "fields": {"code_postal": "77720", "code_commune_insee": "77211", "libell_d_acheminement": "GRANDPUITS BAILLY CARROIS", "ligne_5": "BAILLY CARROIS", "nom_de_la_commune": "GRANDPUITS BAILLY CARROIS", "coordonnees_gps": [48.5850477632, 2.89649549396]}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5318bf089e4faad1cf6f568e85dbf9de98e6b8", "fields": {"nom_de_la_commune": "GRETZ ARMAINVILLIERS", "libell_d_acheminement": "GRETZ ARMAINVILLIERS", "code_postal": "77220", "coordonnees_gps": [48.7441435085, 2.75833565592], "code_commune_insee": "77215"}, "geometry": {"type": "Point", "coordinates": [2.75833565592, 48.7441435085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0b0541310a4abd0b4cac60de40993b3cbe570c", "fields": {"nom_de_la_commune": "GRISY SUISNES", "libell_d_acheminement": "GRISY SUISNES", "code_postal": "77166", "coordonnees_gps": [48.6689119155, 2.65738604224], "code_commune_insee": "77217"}, "geometry": {"type": "Point", "coordinates": [2.65738604224, 48.6689119155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b90978822cfd38c66f6b449b737ccb9c49cb6568", "fields": {"nom_de_la_commune": "GUERMANTES", "libell_d_acheminement": "GUERMANTES", "code_postal": "77600", "coordonnees_gps": [48.8361794738, 2.73226890342], "code_commune_insee": "77221"}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6ca46ebc41d6e18f42affce5ea47086cd486ff0", "fields": {"nom_de_la_commune": "HERICY", "libell_d_acheminement": "HERICY", "code_postal": "77850", "coordonnees_gps": [48.4420531578, 2.78873977925], "code_commune_insee": "77226"}, "geometry": {"type": "Point", "coordinates": [2.78873977925, 48.4420531578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da142c37c9f2c75f7d8261d0957c0403361d6466", "fields": {"nom_de_la_commune": "HONDEVILLIERS", "libell_d_acheminement": "HONDEVILLIERS", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77228"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c89294fb3db11df967a52e9ef7513c08cc5bbc0", "fields": {"nom_de_la_commune": "ISLES LES VILLENOY", "libell_d_acheminement": "ISLES LES VILLENOY", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77232"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4d8ab90524fb0131388dec241e183f3649da5d9", "fields": {"nom_de_la_commune": "JOUARRE", "libell_d_acheminement": "JOUARRE", "code_postal": "77640", "coordonnees_gps": [48.9061273296, 3.10099022317], "code_commune_insee": "77238"}, "geometry": {"type": "Point", "coordinates": [3.10099022317, 48.9061273296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2447543fe5bad0d08f6ed8f1e5cc8b8ac650b6c2", "fields": {"nom_de_la_commune": "LESIGNY", "libell_d_acheminement": "LESIGNY", "code_postal": "77150", "coordonnees_gps": [48.7409851538, 2.62903924486], "code_commune_insee": "77249"}, "geometry": {"type": "Point", "coordinates": [2.62903924486, 48.7409851538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a717443a85538a63d5dc31adcc838f7f1b5afd", "fields": {"nom_de_la_commune": "LIZINES", "libell_d_acheminement": "LIZINES", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77256"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e01613366ce4ca087140c8aa3b08b29813480a8", "fields": {"nom_de_la_commune": "LIZY SUR OURCQ", "libell_d_acheminement": "LIZY SUR OURCQ", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77257"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e44737c2c172f0c082f67e460f351800501d7404", "fields": {"code_postal": "77710", "code_commune_insee": "77261", "libell_d_acheminement": "LORREZ LE BOCAGE PREAUX", "ligne_5": "PREAUX", "nom_de_la_commune": "LORREZ LE BOCAGE PREAUX", "coordonnees_gps": [48.2430767523, 2.88428828636]}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e546dc17951b854966e5034b290701ffdf710e5", "fields": {"nom_de_la_commune": "LUMIGNY NESLES ORMEAUX", "libell_d_acheminement": "LUMIGNY NESLES ORMEAUX", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77264"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35b5c2f8d7705da16604a50e2fb4f6a058ccc94f", "fields": {"nom_de_la_commune": "LA MADELEINE SUR LOING", "libell_d_acheminement": "LA MADELEINE SUR LOING", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77267"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d866b7037b05d104328a5d07bd9ce81aee8c89d0", "fields": {"nom_de_la_commune": "MAINCY", "libell_d_acheminement": "MAINCY", "code_postal": "77950", "coordonnees_gps": [48.5738526106, 2.69879445507], "code_commune_insee": "77269"}, "geometry": {"type": "Point", "coordinates": [2.69879445507, 48.5738526106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba4783d4dd4531571235e7b80bfc0118458468ac", "fields": {"nom_de_la_commune": "MAISONCELLES EN BRIE", "libell_d_acheminement": "MAISONCELLES EN BRIE", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77270"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e27c19cf96e118d8b3587c387ebfab46f81a02de", "fields": {"nom_de_la_commune": "MARY SUR MARNE", "libell_d_acheminement": "MARY SUR MARNE", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77280"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10e2d258cb5e8d2728fc437390b1816cff3c5f24", "fields": {"nom_de_la_commune": "MAUPERTHUIS", "libell_d_acheminement": "MAUPERTHUIS", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77281"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253710070f44db40bdfae5748b36f1264eeee003", "fields": {"nom_de_la_commune": "MAY EN MULTIEN", "libell_d_acheminement": "MAY EN MULTIEN", "code_postal": "77145", "coordonnees_gps": [49.0701288323, 3.02511074107], "code_commune_insee": "77283"}, "geometry": {"type": "Point", "coordinates": [3.02511074107, 49.0701288323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b978c26f0e229039162e47883e14991e2d9fcc7", "fields": {"nom_de_la_commune": "MEAUX", "libell_d_acheminement": "MEAUX", "code_postal": "77100", "coordonnees_gps": [48.9417341013, 2.89233400365], "code_commune_insee": "77284"}, "geometry": {"type": "Point", "coordinates": [2.89233400365, 48.9417341013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aeee6e520619f45a75e0e00de95a088cd4400ae", "fields": {"nom_de_la_commune": "LE MEE SUR SEINE", "libell_d_acheminement": "LE MEE SUR SEINE", "code_postal": "77350", "coordonnees_gps": [48.5350739052, 2.60727189442], "code_commune_insee": "77285"}, "geometry": {"type": "Point", "coordinates": [2.60727189442, 48.5350739052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38240262bcbfc818e055de088865a79f4e21e0c8", "fields": {"nom_de_la_commune": "MEILLERAY", "libell_d_acheminement": "MEILLERAY", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77287"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3eb377922a369b73d48d6e85224846fe7a12d46", "fields": {"nom_de_la_commune": "MOISENAY", "libell_d_acheminement": "MOISENAY", "code_postal": "77950", "coordonnees_gps": [48.5738526106, 2.69879445507], "code_commune_insee": "77295"}, "geometry": {"type": "Point", "coordinates": [2.69879445507, 48.5738526106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4c42459e30148bbc80bfe06d199a9f2a97668b0", "fields": {"nom_de_la_commune": "MONTCEAUX LES MEAUX", "libell_d_acheminement": "MONTCEAUX LES MEAUX", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77300"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23cebcf18b6c4450eaf3b750db0915a7bbf9fdcb", "fields": {"nom_de_la_commune": "MONTEREAU FAULT YONNE", "libell_d_acheminement": "MONTEREAU FAULT YONNE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77305"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3738c5f93cabf8a6292ed24483fa191ae9c90681", "fields": {"nom_de_la_commune": "MONTEREAU SUR LE JARD", "libell_d_acheminement": "MONTEREAU SUR LE JARD", "code_postal": "77950", "coordonnees_gps": [48.5738526106, 2.69879445507], "code_commune_insee": "77306"}, "geometry": {"type": "Point", "coordinates": [2.69879445507, 48.5738526106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "490b8e5e88d8bc8e8fd59e5f848453e86afc0db8", "fields": {"nom_de_la_commune": "MONTEVRAIN", "libell_d_acheminement": "MONTEVRAIN", "code_postal": "77144", "coordonnees_gps": [48.8764616468, 2.75749686803], "code_commune_insee": "77307"}, "geometry": {"type": "Point", "coordinates": [2.75749686803, 48.8764616468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6022ef3f972baa28356780a4c7715bb694a8d2e9", "fields": {"nom_de_la_commune": "MONTMACHOUX", "libell_d_acheminement": "MONTMACHOUX", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77313"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09bffae2a676838862673d287c99049cc97c4f88", "fields": {"nom_de_la_commune": "MORET LOING ET ORVANNE", "libell_d_acheminement": "MORET LOING ET ORVANNE", "code_postal": "77250", "coordonnees_gps": [48.3334508388, 2.82847916513], "code_commune_insee": "77316"}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8fe365b0ef679c5f90f1336ca4b4ad276b77da3", "fields": {"code_postal": "77250", "code_commune_insee": "77316", "libell_d_acheminement": "MORET LOING ET ORVANNE", "ligne_5": "ECUELLES", "nom_de_la_commune": "MORET LOING ET ORVANNE", "coordonnees_gps": [48.3334508388, 2.82847916513]}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f4e856bc591c3169cc7dc73b77f242abe474508", "fields": {"nom_de_la_commune": "MORTCERF", "libell_d_acheminement": "MORTCERF", "code_postal": "77163", "coordonnees_gps": [48.7979316478, 2.90271680607], "code_commune_insee": "77318"}, "geometry": {"type": "Point", "coordinates": [2.90271680607, 48.7979316478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1998c1b8270e69d6cc3c5b6f47b1afed72e69c8b", "fields": {"nom_de_la_commune": "NANTEAU SUR ESSONNE", "libell_d_acheminement": "NANTEAU SUR ESSONNE", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77328"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e521861298f12d913d2df33fa8d79d9b1d144097", "fields": {"nom_de_la_commune": "NANTEUIL LES MEAUX", "libell_d_acheminement": "NANTEUIL LES MEAUX", "code_postal": "77100", "coordonnees_gps": [48.9417341013, 2.89233400365], "code_commune_insee": "77330"}, "geometry": {"type": "Point", "coordinates": [2.89233400365, 48.9417341013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3384b22aa4cbb64cb5d9a827d9b7f8b0e4bfcf", "fields": {"code_postal": "77124", "code_commune_insee": "77335", "libell_d_acheminement": "CHAUCONIN NEUFMONTIERS", "ligne_5": "NEUFMONTIERS LES MEAUX", "nom_de_la_commune": "CHAUCONIN NEUFMONTIERS", "coordonnees_gps": [48.9687525452, 2.84384652509]}, "geometry": {"type": "Point", "coordinates": [2.84384652509, 48.9687525452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc4cf672edcdaa2aca4b2c277108900d138689c6", "fields": {"nom_de_la_commune": "NOISY RUDIGNON", "libell_d_acheminement": "NOISY RUDIGNON", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77338"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "058e71163eab46cadcaf0c9bc1fac4bb245a5715", "fields": {"nom_de_la_commune": "NOISY SUR ECOLE", "libell_d_acheminement": "NOISY SUR ECOLE", "code_postal": "77123", "coordonnees_gps": [48.3612793646, 2.50123990973], "code_commune_insee": "77339"}, "geometry": {"type": "Point", "coordinates": [2.50123990973, 48.3612793646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72768fa21c9ad6144a76baf31d8dad31538eae11", "fields": {"nom_de_la_commune": "OTHIS", "libell_d_acheminement": "OTHIS", "code_postal": "77280", "coordonnees_gps": [49.0831743052, 2.65347938812], "code_commune_insee": "77349"}, "geometry": {"type": "Point", "coordinates": [2.65347938812, 49.0831743052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "342c7d637ad0d9b93c70d78fd131bb05d0271931", "fields": {"nom_de_la_commune": "PAMFOU", "libell_d_acheminement": "PAMFOU", "code_postal": "77830", "coordonnees_gps": [48.4598569753, 2.90486661459], "code_commune_insee": "77354"}, "geometry": {"type": "Point", "coordinates": [2.90486661459, 48.4598569753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e48792a7cafc2d938182d18c8b7ea664aa8c21b", "fields": {"nom_de_la_commune": "PASSY SUR SEINE", "libell_d_acheminement": "PASSY SUR SEINE", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77356"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23b6cdd935d4c42b2db30d173bb92083ca9dad6", "fields": {"nom_de_la_commune": "PERTHES", "libell_d_acheminement": "PERTHES", "code_postal": "77930", "coordonnees_gps": [48.4690092081, 2.55644926131], "code_commune_insee": "77359"}, "geometry": {"type": "Point", "coordinates": [2.55644926131, 48.4690092081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcb11e87df366d391888eed47a01ad8a27a4bfe6", "fields": {"nom_de_la_commune": "PIERRE LEVEE", "libell_d_acheminement": "PIERRE LEVEE", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77361"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39fcf2c34782a335b8d91de50e564c7eec93b561", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "77181", "coordonnees_gps": [48.9151571578, 2.61878172318], "code_commune_insee": "77363"}, "geometry": {"type": "Point", "coordinates": [2.61878172318, 48.9151571578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1a92716178ac30dc09f8487c32ea23ea3387ba", "fields": {"nom_de_la_commune": "PONTAULT COMBAULT", "libell_d_acheminement": "PONTAULT COMBAULT", "code_postal": "77340", "coordonnees_gps": [48.7869451025, 2.6135089739], "code_commune_insee": "77373"}, "geometry": {"type": "Point", "coordinates": [2.6135089739, 48.7869451025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c317ddfaa3f4e1b68eaa2fbfb5035ecf355fb9b4", "fields": {"nom_de_la_commune": "PRECY SUR MARNE", "libell_d_acheminement": "PRECY SUR MARNE", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77376"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900997aa2d5df08cc29a6131cca3180c261ab35a", "fields": {"nom_de_la_commune": "QUINCY VOISINS", "libell_d_acheminement": "QUINCY VOISINS", "code_postal": "77860", "coordonnees_gps": [48.889293661, 2.86625543445], "code_commune_insee": "77382"}, "geometry": {"type": "Point", "coordinates": [2.86625543445, 48.889293661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "453fc7d1bdade0da052c19803e1fdfbda02267b9", "fields": {"nom_de_la_commune": "REBAIS", "libell_d_acheminement": "REBAIS", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77385"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5075b7cb8ff05c730e4fa1a5e9c0c8c2d9749f3", "fields": {"nom_de_la_commune": "RECLOSES", "libell_d_acheminement": "RECLOSES", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77386"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370517acbb0e6ef4e78523bcdd24a01396e8dd2e", "fields": {"nom_de_la_commune": "REMAUVILLE", "libell_d_acheminement": "REMAUVILLE", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77387"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "847d8b47183d4e2a9a5d67e8c75cb3ff464d265f", "fields": {"nom_de_la_commune": "ROZAY EN BRIE", "libell_d_acheminement": "ROZAY EN BRIE", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77393"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3a6ef7e888d9a499e07f24df92e426519adc7e3", "fields": {"nom_de_la_commune": "RUMONT", "libell_d_acheminement": "RUMONT", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77395"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6750d6ab360d1bc09d1c548a1f41d48707d94734", "fields": {"nom_de_la_commune": "STE AULDE", "libell_d_acheminement": "STE AULDE", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77401"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ecdf83db71bccacb1c8a5e89ae048868046eca4", "fields": {"nom_de_la_commune": "ST CYR SUR MORIN", "libell_d_acheminement": "ST CYR SUR MORIN", "code_postal": "77750", "coordonnees_gps": [48.9148071078, 3.22989278872], "code_commune_insee": "77405"}, "geometry": {"type": "Point", "coordinates": [3.22989278872, 48.9148071078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54a3c88a27b265e9cbf4df2214724370e9852cb9", "fields": {"code_postal": "77310", "code_commune_insee": "77407", "libell_d_acheminement": "ST FARGEAU PONTHIERRY", "ligne_5": "PONTHIERRY", "nom_de_la_commune": "ST FARGEAU PONTHIERRY", "coordonnees_gps": [48.5292083362, 2.53978127085]}, "geometry": {"type": "Point", "coordinates": [2.53978127085, 48.5292083362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12518d6e439c39ce2b4becb8437d8a68482adf54", "fields": {"nom_de_la_commune": "ST GERMAIN LAVAL", "libell_d_acheminement": "ST GERMAIN LAVAL", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77409"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d219e0b5b7a8360e76101e41f9abad4bbeb2b48", "fields": {"nom_de_la_commune": "ST GERMAIN SOUS DOUE", "libell_d_acheminement": "ST GERMAIN SOUS DOUE", "code_postal": "77169", "coordonnees_gps": [48.8249765475, 3.16311202199], "code_commune_insee": "77411"}, "geometry": {"type": "Point", "coordinates": [3.16311202199, 48.8249765475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "716d0ad6916768db86807411b703b0b492fcb0c2", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77417"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4611498eca8f7de5d50036af485ffe452f663d1e", "fields": {"nom_de_la_commune": "ST OUEN EN BRIE", "libell_d_acheminement": "ST OUEN EN BRIE", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77428"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82289f9fb8cdb8555adc1b962ec1f83530b48c9a", "fields": {"nom_de_la_commune": "ST PIERRE LES NEMOURS", "libell_d_acheminement": "ST PIERRE LES NEMOURS", "code_postal": "77140", "coordonnees_gps": [48.2750471622, 2.70959190478], "code_commune_insee": "77431"}, "geometry": {"type": "Point", "coordinates": [2.70959190478, 48.2750471622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "114f20b651a8ddc5fa28948826a9745fb6111a6c", "fields": {"nom_de_la_commune": "ST REMY LA VANNE", "libell_d_acheminement": "ST REMY LA VANNE", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77432"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b83ac710653b821288bf0f549ab0ac921c130284", "fields": {"nom_de_la_commune": "ST SAUVEUR SUR ECOLE", "libell_d_acheminement": "ST SAUVEUR SUR ECOLE", "code_postal": "77930", "coordonnees_gps": [48.4690092081, 2.55644926131], "code_commune_insee": "77435"}, "geometry": {"type": "Point", "coordinates": [2.55644926131, 48.4690092081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55d6078c0be22a709179c3cb82e7458a6dc5d1aa", "fields": {"nom_de_la_commune": "ST SIMEON", "libell_d_acheminement": "ST SIMEON", "code_postal": "77169", "coordonnees_gps": [48.8249765475, 3.16311202199], "code_commune_insee": "77436"}, "geometry": {"type": "Point", "coordinates": [3.16311202199, 48.8249765475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af73247455642a90abd99756d0002b873eb360c3", "fields": {"nom_de_la_commune": "SANCY LES PROVINS", "libell_d_acheminement": "SANCY LES PROVINS", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77444"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631bad24669f35e87656072c1abd0738436df09a", "fields": {"nom_de_la_commune": "SEINE PORT", "libell_d_acheminement": "SEINE PORT", "code_postal": "77240", "coordonnees_gps": [48.5645874906, 2.60004351705], "code_commune_insee": "77447"}, "geometry": {"type": "Point", "coordinates": [2.60004351705, 48.5645874906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b18723d279abce171a68468f73b319f3dbd42cb", "fields": {"nom_de_la_commune": "SIGNY SIGNETS", "libell_d_acheminement": "SIGNY SIGNETS", "code_postal": "77640", "coordonnees_gps": [48.9061273296, 3.10099022317], "code_commune_insee": "77451"}, "geometry": {"type": "Point", "coordinates": [3.10099022317, 48.9061273296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13d152b697f6244ca4b76ff467d1ec12b92457db", "fields": {"code_postal": "01300", "code_commune_insee": "01015", "libell_d_acheminement": "ARBOYS EN BUGEY", "ligne_5": "ARBIGNIEU", "nom_de_la_commune": "ARBOYS EN BUGEY", "coordonnees_gps": [45.7328309975, 5.65715901636]}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0534a20767f868798533fb5979d8e70d24f94267", "fields": {"code_postal": "01360", "code_commune_insee": "01032", "libell_d_acheminement": "BELIGNEUX", "ligne_5": "CHANES", "nom_de_la_commune": "BELIGNEUX", "coordonnees_gps": [45.8283269463, 5.15327415034]}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db75dfe07e737e6f4373bc7333d9a8f9c123c877", "fields": {"nom_de_la_commune": "AMBERIEUX EN DOMBES", "libell_d_acheminement": "AMBERIEUX EN DOMBES", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01005"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f3be3287610f8f2038e0bfbeb7de8caf4710d89", "fields": {"nom_de_la_commune": "ANDERT ET CONDON", "libell_d_acheminement": "ANDERT ET CONDON", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01009"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e217a061a69604bd02390697bec704af21e1cbd", "fields": {"nom_de_la_commune": "BAGE LE CHATEL", "libell_d_acheminement": "BAGE LE CHATEL", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01026"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0acff03b7a0409ed4dcb2c41b2ffd35e801ee49e", "fields": {"nom_de_la_commune": "AMBUTRIX", "libell_d_acheminement": "AMBUTRIX", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01008"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "116c2a2a94067cac644802a1d0b3e1c671055ff4", "fields": {"nom_de_la_commune": "ARBENT", "libell_d_acheminement": "ARBENT", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01014"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1b9ffcc4bd57ead454d962a459d9937518c7bd", "fields": {"nom_de_la_commune": "ARANC", "libell_d_acheminement": "ARANC", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01012"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "835a80331950a12c5ffdbbb51e8c4aece3b59990", "fields": {"code_postal": "02210", "code_commune_insee": "02580", "libell_d_acheminement": "OULCHY LE CHATEAU", "ligne_5": "CUGNY LES CROUTTES", "nom_de_la_commune": "OULCHY LE CHATEAU", "coordonnees_gps": [49.2129002416, 3.35011614589]}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab8365887f1a967697085dcfb16a424047d9d81", "fields": {"nom_de_la_commune": "OULCHES LA VALLEE FOULON", "libell_d_acheminement": "OULCHES LA VALLEE FOULON", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02578"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cabb1ebd5a1bda3dc27621c0cc9e77877f5d209", "fields": {"nom_de_la_commune": "PRESLES ET THIERNY", "libell_d_acheminement": "PRESLES ET THIERNY", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02621"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99b29688bf8dcfebbb04bb968598dcd086ef43be", "fields": {"nom_de_la_commune": "OULCHY LE CHATEAU", "libell_d_acheminement": "OULCHY LE CHATEAU", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02580"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3543d68d6bd992d97f62f32a897c0952147d04", "fields": {"nom_de_la_commune": "PLEINE SELVE", "libell_d_acheminement": "PLEINE SELVE", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02605"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a18f74844de6c8efe2ebfc20f757d15289a90c6", "fields": {"nom_de_la_commune": "PIERREMANDE", "libell_d_acheminement": "PIERREMANDE", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02599"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddf9fe49360f7272ea3300efe42ac4eae9e1c597", "fields": {"nom_de_la_commune": "PONTAVERT", "libell_d_acheminement": "PONTAVERT", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02613"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47c96e240a82f1784953095daacffdf142655a2a", "fields": {"nom_de_la_commune": "PITHON", "libell_d_acheminement": "PITHON", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02604"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a47101e839e7ff485ac3cbc7a8448cc4a97c3c8", "fields": {"nom_de_la_commune": "PAVANT", "libell_d_acheminement": "PAVANT", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02596"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "193277e449a56ce7bbe2c082a504c82b587ac2b7", "fields": {"nom_de_la_commune": "ST CHRISTOPHE A BERRY", "libell_d_acheminement": "ST CHRISTOPHE A BERRY", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02673"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85049149417ebd37cccf6b34602721ddd648d46f", "fields": {"nom_de_la_commune": "SANCY LES CHEMINOTS", "libell_d_acheminement": "SANCY LES CHEMINOTS", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02698"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6de6f17b52e1f9f370414378885996edc873b9", "fields": {"nom_de_la_commune": "SACONIN ET BREUIL", "libell_d_acheminement": "SACONIN ET BREUIL", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02667"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bd55aaacb6f71ac772c8be0929039eff56e48e6", "fields": {"nom_de_la_commune": "STE GENEVIEVE", "libell_d_acheminement": "STE GENEVIEVE", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02678"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce8e73a637ebdf848171ab0357edf7408eccac4", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02674"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a00dbf9bfd6d33e378ee7054320e7136bd03c3d6", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02671"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "289dfaddd1669deef12a1e416a223f4470de0d40", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02675"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a73135309fcbe938efc1590bac0fdcce951a177", "fields": {"nom_de_la_commune": "ST ALGIS", "libell_d_acheminement": "ST ALGIS", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02670"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c39ae5ba20e2aac9d4a9575f52b61df978ce7d", "fields": {"nom_de_la_commune": "SERCHES", "libell_d_acheminement": "SERCHES", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02711"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936c25e2a1cefe00fa9f37fd72d168ee53b1e626", "fields": {"code_postal": "02540", "code_commune_insee": "02458", "libell_d_acheminement": "DHUYS ET MORIN EN BRIE", "ligne_5": "FONTENELLE EN BRIE", "nom_de_la_commune": "DHUYS ET MORIN EN BRIE", "coordonnees_gps": [48.9128673746, 3.4403848461]}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46abbc6d8fe14b3e3f61e46d8657b0a206ed5fb2", "fields": {"nom_de_la_commune": "MARTIGNY COURPIERRE", "libell_d_acheminement": "MARTIGNY COURPIERRE", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02471"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46f5b5bfa89ebb5cab83e3ea951edf5ebc8e4a26", "fields": {"nom_de_la_commune": "MEZIERES SUR OISE", "libell_d_acheminement": "MEZIERES SUR OISE", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02483"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82667dc62b05c156ab47cfdf3c38d2812c71cf66", "fields": {"nom_de_la_commune": "MARCY SOUS MARLE", "libell_d_acheminement": "MARCY SOUS MARLE", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02460"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4677a42b84b4130d15ec40913eea7864d823ebf3", "fields": {"nom_de_la_commune": "MERCIN ET VAUX", "libell_d_acheminement": "MERCIN ET VAUX", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02477"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5ad755cff7b4c0745d06794f91adced077c7a97", "fields": {"nom_de_la_commune": "MARIZY ST MARD", "libell_d_acheminement": "MARIZY ST MARD", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02467"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4491b05132006983e9d024b9e3f9e55ff64d51ec", "fields": {"nom_de_la_commune": "MONAMPTEUIL", "libell_d_acheminement": "MONAMPTEUIL", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02490"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87f41c54fabab929feca51a46b1dc237794fb35c", "fields": {"nom_de_la_commune": "MENNESSIS", "libell_d_acheminement": "MENNESSIS", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02474"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53cebe00dbc1f87c193d193ae8aa5a171b9246c4", "fields": {"nom_de_la_commune": "MEURIVAL", "libell_d_acheminement": "MEURIVAL", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02482"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8f908f90dae7b97d836ac0e9bb2709d6071970a", "fields": {"nom_de_la_commune": "MAIZY", "libell_d_acheminement": "MAIZY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02453"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac0c49fca9880d33817ed7b8f7ea1845109527b5", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "MERVAL", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd6e31db10f556fe610bd15dff23217cba907ce1", "fields": {"nom_de_la_commune": "LESQUIELLES ST GERMAIN", "libell_d_acheminement": "LESQUIELLES ST GERMAIN", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02422"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "491a4d917f3bdb6226dc9ec0e93161cbb8d47973", "fields": {"nom_de_la_commune": "LOGNY LES AUBENTON", "libell_d_acheminement": "LOGNY LES AUBENTON", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02435"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6247275db181410215e3068cf9ee9df7c270472", "fields": {"nom_de_la_commune": "MAGNY LA FOSSE", "libell_d_acheminement": "MAGNY LA FOSSE", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02451"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfdce15b9062d042add25021da545f86566da6b", "fields": {"nom_de_la_commune": "LICY CLIGNON", "libell_d_acheminement": "LICY CLIGNON", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02428"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c131f116e210f164a3ac896379805f05584f90b3", "fields": {"nom_de_la_commune": "MACHECOURT", "libell_d_acheminement": "MACHECOURT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02448"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61636f73843fa092a5f911efcaa6ac3eae596fd8", "fields": {"nom_de_la_commune": "LY FONTAINE", "libell_d_acheminement": "LY FONTAINE", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02446"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2441d24b86784debe9d38e89a7c298a73352e0d8", "fields": {"nom_de_la_commune": "LEVERGIES", "libell_d_acheminement": "LEVERGIES", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02426"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4063fc8c5fcdeb4ad26bf9d0948dae32258b1c7", "fields": {"nom_de_la_commune": "MACOGNY", "libell_d_acheminement": "MACOGNY", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02449"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699fd29a277f231834118953b2232945936a7093", "fields": {"nom_de_la_commune": "LHUYS", "libell_d_acheminement": "LHUYS", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02427"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5163c843793654e148b20bf1ffa094b9975557", "fields": {"nom_de_la_commune": "LE NOUVION EN THIERACHE", "libell_d_acheminement": "LE NOUVION EN THIERACHE", "code_postal": "02170", "coordonnees_gps": [50.0019463297, 3.79418155637], "code_commune_insee": "02558"}, "geometry": {"type": "Point", "coordinates": [3.79418155637, 50.0019463297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "325b95ddb47f168e44ba3166aae252ac05207344", "fields": {"nom_de_la_commune": "NANTEUIL NOTRE DAME", "libell_d_acheminement": "NANTEUIL NOTRE DAME", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02538"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bfda22200eedbc7657dd4884816a345596ddf92", "fields": {"nom_de_la_commune": "NAMPCELLES LA COUR", "libell_d_acheminement": "NAMPCELLES LA COUR", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02535"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a8252867a6f3fd6513559cf3757415ea0393f7", "fields": {"nom_de_la_commune": "NANTEUIL LA FOSSE", "libell_d_acheminement": "NANTEUIL LA FOSSE", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02537"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdf7f2628df4406a5e368140442208519995de64", "fields": {"nom_de_la_commune": "MURET ET CROUTTES", "libell_d_acheminement": "MURET ET CROUTTES", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02533"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a03c09381b76365cae9d43a98182b7ccc8a94e0", "fields": {"nom_de_la_commune": "MOY DE L AISNE", "libell_d_acheminement": "MOY DE L AISNE", "code_postal": "02610", "coordonnees_gps": [49.7503485769, 3.3508195834], "code_commune_insee": "02532"}, "geometry": {"type": "Point", "coordinates": [3.3508195834, 49.7503485769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8062fa27eb9c7de40ba415e874f6c2aca8f9dd3c", "fields": {"nom_de_la_commune": "NEUVILLETTE", "libell_d_acheminement": "NEUVILLETTE", "code_postal": "02390", "coordonnees_gps": [49.8377010181, 3.51039258756], "code_commune_insee": "02552"}, "geometry": {"type": "Point", "coordinates": [3.51039258756, 49.8377010181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b26d7409d54f1874c2087d7de5dc7444b28978", "fields": {"nom_de_la_commune": "NEUFLIEUX", "libell_d_acheminement": "NEUFLIEUX", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02542"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec493b9fbb9b05ae0997e88a4143cc602948187f", "fields": {"nom_de_la_commune": "NOGENTEL", "libell_d_acheminement": "NOGENTEL", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02554"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d6eb6689f052cb4fbd90aaaf2edb37db16df8a7", "fields": {"nom_de_la_commune": "NAUROY", "libell_d_acheminement": "NAUROY", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02539"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20a69512b1d290e175b65b3eb8c716c209d937b7", "fields": {"nom_de_la_commune": "MONTIGNY EN ARROUAISE", "libell_d_acheminement": "MONTIGNY EN ARROUAISE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02511"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5771d64d641119c2539f1e2e43b756c3c53bd8a", "fields": {"nom_de_la_commune": "MONTIGNY LES CONDE", "libell_d_acheminement": "MONTIGNY LES CONDE", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02515"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe11ed939416ddb372754080630f795af61f3a00", "fields": {"nom_de_la_commune": "MONTIGNY L ALLIER", "libell_d_acheminement": "MONTIGNY L ALLIER", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02512"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ff8aeeaa86ceddc56765b7644537e2b78eaf6d9", "fields": {"nom_de_la_commune": "MONTCHALONS", "libell_d_acheminement": "MONTCHALONS", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02501"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f58fe25696c2e29482065012c74b1f56a5f80076", "fields": {"nom_de_la_commune": "MONTBREHAIN", "libell_d_acheminement": "MONTBREHAIN", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02500"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5e367d43be7d6a612ffac03e496ccd9a22d9f1", "fields": {"nom_de_la_commune": "MONTCORNET", "libell_d_acheminement": "MONTCORNET", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02502"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fccab98fc1eac7f04139aa25b53499d89eaa3f0", "fields": {"nom_de_la_commune": "MONTLEVON", "libell_d_acheminement": "MONTLEVON", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02518"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cfa08ef351ad5c1daed34fcf7d97e305f09b94a", "fields": {"nom_de_la_commune": "MONTBAVIN", "libell_d_acheminement": "MONTBAVIN", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02499"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0833d9cc475ee80be12622adc14a2cf28181d385", "fields": {"nom_de_la_commune": "MORCOURT", "libell_d_acheminement": "MORCOURT", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02525"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0790771bcc8da402b9ca53d3c41bd7139ad31545", "fields": {"nom_de_la_commune": "MORTIERS", "libell_d_acheminement": "MORTIERS", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02529"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47530f416832ebf7bfcd64f0f0b1d591fad0b7d", "fields": {"nom_de_la_commune": "LANDIFAY ET BERTAIGNEMONT", "libell_d_acheminement": "LANDIFAY ET BERTAIGNEMONT", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02403"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35c013de230de91438cdafd2d0afd6e3e6ac0473", "fields": {"nom_de_la_commune": "LANDOUZY LA VILLE", "libell_d_acheminement": "LANDOUZY LA VILLE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02405"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31118bbba5febb62f802a4a9157f14b9cb825e0", "fields": {"nom_de_la_commune": "JOUAIGNES", "libell_d_acheminement": "JOUAIGNES", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02393"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a1fa2820c6eb2207e7764aab7b80c3244ba228", "fields": {"nom_de_la_commune": "LA HERIE", "libell_d_acheminement": "LA HERIE", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02378"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1949cdfe0ea7f540b80c326be39dcf4f424f87f", "fields": {"nom_de_la_commune": "JUVIGNY", "libell_d_acheminement": "JUVIGNY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02398"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bca0111d14cde42d56b30cd95194b07652225b", "fields": {"nom_de_la_commune": "JEANTES", "libell_d_acheminement": "JEANTES", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02391"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "762310d4dd213c480b0dc92c9ff66ff70db0c2ed", "fields": {"nom_de_la_commune": "HOUSSET", "libell_d_acheminement": "HOUSSET", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02385"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78cc04f1b122952adb0c25418e3435a341ee118f", "fields": {"nom_de_la_commune": "HOURY", "libell_d_acheminement": "HOURY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02384"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182d26d1dbc9a21ef48e6592bc4df90bc01b8a15", "fields": {"nom_de_la_commune": "LERZY", "libell_d_acheminement": "LERZY", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02418"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1b6272a4f24c0e163bf57f60194241d14e8f0dc", "fields": {"nom_de_la_commune": "HARY", "libell_d_acheminement": "HARY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02373"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c581820dbae4927f9d9d18aa8382a0c3fe746fe2", "fields": {"code_postal": "02270", "code_commune_insee": "02559", "libell_d_acheminement": "NOUVION ET CATILLON", "ligne_5": "PONT A BUCY", "nom_de_la_commune": "NOUVION ET CATILLON", "coordonnees_gps": [49.714634271, 3.5968851996]}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56201369d5f66eb82800ae95c8ed5adf273fd092", "fields": {"nom_de_la_commune": "OSTEL", "libell_d_acheminement": "OSTEL", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02577"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9aba8b969f18bf4abf711a82fc9e33185f4db61", "fields": {"nom_de_la_commune": "OGNES", "libell_d_acheminement": "OGNES", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02566"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa9e21c45038ed1e9893507a663d169a028afa93", "fields": {"nom_de_la_commune": "OISY", "libell_d_acheminement": "OISY", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02569"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae3fff21f7424e143d535e1eafe9f8874f959cda", "fields": {"nom_de_la_commune": "OHIS", "libell_d_acheminement": "OHIS", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02567"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68eb84a00f02dc55aeff9c7ed270b9fc4171f699", "fields": {"nom_de_la_commune": "ROYAUCOURT ET CHAILVET", "libell_d_acheminement": "ROYAUCOURT ET CHAILVET", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02661"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac15637f9a2721d373d18420be1b688a02af219a", "fields": {"nom_de_la_commune": "QUINCY SOUS LE MONT", "libell_d_acheminement": "QUINCY SOUS LE MONT", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02633"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7025c082d6984c85559b86dcf71b09d5c0a943f0", "fields": {"nom_de_la_commune": "ROMENY SUR MARNE", "libell_d_acheminement": "ROMENY SUR MARNE", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02653"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a349c9fd43631168dcf64a77d5e659bad7506798", "fields": {"nom_de_la_commune": "REMAUCOURT", "libell_d_acheminement": "REMAUCOURT", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02637"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f80b646c9a004a55014a6346400d40a7489c48", "fields": {"nom_de_la_commune": "RENNEVAL", "libell_d_acheminement": "RENNEVAL", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02641"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "238a5d5a3e21f7edc488347aef7b3a2c4a51c28c", "fields": {"nom_de_la_commune": "RETHEUIL", "libell_d_acheminement": "RETHEUIL", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02644"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d860ca664d50289a42edc26a6e5758afd199c3a5", "fields": {"nom_de_la_commune": "PROISY", "libell_d_acheminement": "PROISY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02624"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ac00d7635242ea688494d90f7846052ed6a5627", "fields": {"nom_de_la_commune": "REMIES", "libell_d_acheminement": "REMIES", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02638"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e49646f1183463f54b58513eb3cd1ee68918ce4", "fields": {"nom_de_la_commune": "PROIX", "libell_d_acheminement": "PROIX", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02625"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ea67f034090e668d58a3c8f654d396482d8e1d", "fields": {"nom_de_la_commune": "TAVAUX ET PONTSERICOURT", "libell_d_acheminement": "TAVAUX ET PONTSERICOURT", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02737"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d42d6b5c923933130923b8ee1a306cf363a08bd3", "fields": {"nom_de_la_commune": "SERINGES ET NESLES", "libell_d_acheminement": "SERINGES ET NESLES", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02713"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5922d2061c5bac82da257c82340fef3249d91379", "fields": {"nom_de_la_commune": "SOMMETTE EAUCOURT", "libell_d_acheminement": "SOMMETTE EAUCOURT", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02726"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f95ba6b8beb7158e9261ffd312bba3d81be8e2e", "fields": {"nom_de_la_commune": "SILLY LA POTERIE", "libell_d_acheminement": "SILLY LA POTERIE", "code_postal": "02460", "coordonnees_gps": [49.1801295296, 3.14646603898], "code_commune_insee": "02718"}, "geometry": {"type": "Point", "coordinates": [3.14646603898, 49.1801295296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b2b49f7d0c4a86306b79317e57eb7d18dd0d844", "fields": {"nom_de_la_commune": "SURFONTAINE", "libell_d_acheminement": "SURFONTAINE", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02732"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791adf0c16c1ba6bc9b5f30f50b6707e106e9bb7", "fields": {"nom_de_la_commune": "TANNIERES", "libell_d_acheminement": "TANNIERES", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02735"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6898f1c157217a5f78368d6a865fa9a3cd6fe49e", "fields": {"nom_de_la_commune": "TERGNIER", "libell_d_acheminement": "TERGNIER", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02738"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a51f786120076aceb1238179871db7eaf01dacf", "fields": {"nom_de_la_commune": "SERVAIS", "libell_d_acheminement": "SERVAIS", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02716"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d100ca819588ee1b15a56bd302f5937f442c6cf2", "fields": {"nom_de_la_commune": "SOUCY", "libell_d_acheminement": "SOUCY", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02729"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b55f50ba996f03fad0cd92ff672a388050d8a6c7", "fields": {"code_postal": "02700", "code_commune_insee": "02738", "libell_d_acheminement": "TERGNIER", "ligne_5": "FARGNIERS", "nom_de_la_commune": "TERGNIER", "coordonnees_gps": [49.6402663387, 3.29629531322]}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4b52b4bbcf9f0d775ebc180a68b084fdee694d", "fields": {"nom_de_la_commune": "AMBERIEU EN BUGEY", "libell_d_acheminement": "AMBERIEU EN BUGEY", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01004"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ad9dd3929fa222fa9dcf1e3293d6a1ebdd7707", "fields": {"nom_de_la_commune": "VINCY REUIL ET MAGNY", "libell_d_acheminement": "VINCY REUIL ET MAGNY", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02819"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc62f3db47e754c66cb6a79811027ef357ce99d", "fields": {"nom_de_la_commune": "WISSIGNICOURT", "libell_d_acheminement": "WISSIGNICOURT", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02834"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fa17d7686d8c0d079d423642bd3307f57bda9a2", "fields": {"nom_de_la_commune": "BELLENAVES", "libell_d_acheminement": "BELLENAVES", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03022"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f06fd54399c9d4a8379eb96d4b52e8f05a295c0d", "fields": {"nom_de_la_commune": "LE BOUCHAUD", "libell_d_acheminement": "LE BOUCHAUD", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03035"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "018680f99f39a8e54dd1cdb55fa493186a575614", "fields": {"nom_de_la_commune": "ARCHIGNAT", "libell_d_acheminement": "ARCHIGNAT", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03005"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10dfd79ada917f402631a4664cb0c47f68f324d3", "fields": {"nom_de_la_commune": "VOHARIES", "libell_d_acheminement": "VOHARIES", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02823"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bc526b5457d57d8abcbeda20f47b864f0d6a921", "fields": {"nom_de_la_commune": "BAGNEUX", "libell_d_acheminement": "BAGNEUX", "code_postal": "03460", "coordonnees_gps": [46.6591659055, 3.26064885085], "code_commune_insee": "03015"}, "geometry": {"type": "Point", "coordinates": [3.26064885085, 46.6591659055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d122bb00db29942ac8281660c791df1e9a0bfde", "fields": {"nom_de_la_commune": "VORGES", "libell_d_acheminement": "VORGES", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02824"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a8377d514d74629dceed641f1bf705babf218e", "fields": {"nom_de_la_commune": "BRAIZE", "libell_d_acheminement": "BRAIZE", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03037"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f393e35380196171498a8a504b56e51707f7de0", "fields": {"code_postal": "04000", "code_commune_insee": "04167", "libell_d_acheminement": "LA ROBINE SUR GALABRE", "ligne_5": "LAMBERT", "nom_de_la_commune": "LA ROBINE SUR GALABRE", "coordonnees_gps": [44.1282802436, 6.25179168531]}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf5e85dc7463ebaeb644431b8a7e94bf8d11fa0d", "fields": {"code_postal": "04420", "code_commune_insee": "04155", "libell_d_acheminement": "PRADS HAUTE BLEONE", "ligne_5": "MARIAUD", "nom_de_la_commune": "PRADS HAUTE BLEONE", "coordonnees_gps": [44.1915370123, 6.39634951994]}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fec2a25abc7a31791bf87b84af39cfa648daa75", "fields": {"code_postal": "04380", "code_commune_insee": "04177", "libell_d_acheminement": "HAUTES DUYES", "ligne_5": "AURIBEAU", "nom_de_la_commune": "HAUTES DUYES", "coordonnees_gps": [44.1606174491, 6.13108296701]}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42dca5e76a4950b3052853418372343a4605a84c", "fields": {"code_postal": "04340", "code_commune_insee": "04161", "libell_d_acheminement": "MEOLANS REVEL", "ligne_5": "REVEL", "nom_de_la_commune": "MEOLANS REVEL", "coordonnees_gps": [44.4048142358, 6.43134796483]}, "geometry": {"type": "Point", "coordinates": [6.43134796483, 44.4048142358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d91a61bda7f707a73b252425d765a3aa8dca1ccb", "fields": {"nom_de_la_commune": "REVEST DES BROUSSES", "libell_d_acheminement": "REVEST DES BROUSSES", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04162"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45ce0819f89e9e8bc4375fbff1a3fd0a0886f8fa", "fields": {"nom_de_la_commune": "PRADS HAUTE BLEONE", "libell_d_acheminement": "PRADS HAUTE BLEONE", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04155"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32339f442b3d2b87e236a03703b7b8643d72ae7c", "fields": {"nom_de_la_commune": "LA ROCHETTE", "libell_d_acheminement": "LA ROCHETTE", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "04170"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82369bd16e524c0f184fe7d31a37f26a915aa3bd", "fields": {"nom_de_la_commune": "PUIMOISSON", "libell_d_acheminement": "PUIMOISSON", "code_postal": "04410", "coordonnees_gps": [43.8849946548, 6.15663492635], "code_commune_insee": "04157"}, "geometry": {"type": "Point", "coordinates": [6.15663492635, 43.8849946548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1387cc54ae275786c4e6691b4039ccaa5e70189f", "fields": {"nom_de_la_commune": "REDORTIERS", "libell_d_acheminement": "REDORTIERS", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04159"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03f6e537b4d33a5e95cf30085715c480352959f", "fields": {"nom_de_la_commune": "CROS DE GEORAND", "libell_d_acheminement": "CROS DE GEORAND", "code_postal": "07630", "coordonnees_gps": [44.823196527, 4.12827779008], "code_commune_insee": "07075"}, "geometry": {"type": "Point", "coordinates": [4.12827779008, 44.823196527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61fcff40ef1d4476cf0c08ef971aaaf01cf0b3f7", "fields": {"nom_de_la_commune": "CHATEAUBOURG", "libell_d_acheminement": "CHATEAUBOURG", "code_postal": "07130", "coordonnees_gps": [44.9316322296, 4.81226403261], "code_commune_insee": "07059"}, "geometry": {"type": "Point", "coordinates": [4.81226403261, 44.9316322296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c5b1c464f2fd614c375378a63c508fb727cc6f", "fields": {"nom_de_la_commune": "CHANDOLAS", "libell_d_acheminement": "CHANDOLAS", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07053"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7258f3b1e3bf5d4d3f1d32b0a4ac882e3a6efe1", "fields": {"nom_de_la_commune": "CHALENCON", "libell_d_acheminement": "CHALENCON", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07048"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8b09950ff611a8e6f0e101e4b6c6b565ccf12b", "fields": {"nom_de_la_commune": "CHAMPAGNE", "libell_d_acheminement": "CHAMPAGNE", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07051"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90b3f912245fe7c7cb9c12b82651bdcfba6ac782", "fields": {"nom_de_la_commune": "CHIROLS", "libell_d_acheminement": "CHIROLS", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07065"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a041d119b254d6f573df5622b03c351a4d79cfe", "fields": {"nom_de_la_commune": "DARBRES", "libell_d_acheminement": "DARBRES", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07077"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e25d43cfee30aba7fe7d48ac847aef316bd6d0f", "fields": {"nom_de_la_commune": "CHAMPIS", "libell_d_acheminement": "CHAMPIS", "code_postal": "07440", "coordonnees_gps": [44.944716427, 4.72650218637], "code_commune_insee": "07052"}, "geometry": {"type": "Point", "coordinates": [4.72650218637, 44.944716427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd4162206ee4e84d851cff00079c0ba78b8500b1", "fields": {"nom_de_la_commune": "BOZAS", "libell_d_acheminement": "BOZAS", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07039"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "717e35f809d59fd5ef653b714339937388e14db1", "fields": {"code_postal": "08390", "code_commune_insee": "08116", "libell_d_acheminement": "BAIRON ET SES ENVIRONS", "ligne_5": "LOUVERGNY", "nom_de_la_commune": "BAIRON ET SES ENVIRONS", "coordonnees_gps": [49.5311407275, 4.82165471787]}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bee62b8a03aa3612134b561f2bf05a6103ce17b", "fields": {"code_postal": "08220", "code_commune_insee": "08113", "libell_d_acheminement": "CHAUMONT PORCIEN", "ligne_5": "WADIMONT", "nom_de_la_commune": "CHAUMONT PORCIEN", "coordonnees_gps": [49.6447010155, 4.20764091673]}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a5a395bfcb9dffeb5e50a445e56f527b612c8b", "fields": {"code_postal": "08450", "code_commune_insee": "08115", "libell_d_acheminement": "CHEMERY CHEHERY", "ligne_5": "MALMY", "nom_de_la_commune": "CHEMERY CHEHERY", "coordonnees_gps": [49.6051172684, 4.92625814673]}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "318abb31542ffde83e09d882d77de1d0627cdee7", "fields": {"code_postal": "08240", "code_commune_insee": "08089", "libell_d_acheminement": "BUZANCY", "ligne_5": "SIVRY LES BUZANCY", "nom_de_la_commune": "BUZANCY", "coordonnees_gps": [49.4367865299, 4.95899557171]}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43270a79af741aa40428b516071cb5cdd4142ea7", "fields": {"nom_de_la_commune": "CHATEAU PORCIEN", "libell_d_acheminement": "CHATEAU PORCIEN", "code_postal": "08360", "coordonnees_gps": [49.5450302072, 4.21650848613], "code_commune_insee": "08107"}, "geometry": {"type": "Point", "coordinates": [4.21650848613, 49.5450302072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d53d96412e89cb29364b921a0deb5010c09c951", "fields": {"nom_de_la_commune": "CHEMERY CHEHERY", "libell_d_acheminement": "CHEMERY CHEHERY", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08115"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08cf4bef92d407f8118ee12b02007bf1916e45ac", "fields": {"nom_de_la_commune": "BRECY BRIERES", "libell_d_acheminement": "BRECY BRIERES", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08082"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a450289a331a1ff40f9f4e0c736842776340100", "fields": {"nom_de_la_commune": "CHALLERANGE", "libell_d_acheminement": "CHALLERANGE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08097"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0817721f8166c74648f2f9158319075ae8637cea", "fields": {"nom_de_la_commune": "CHEVIERES", "libell_d_acheminement": "CHEVIERES", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08120"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88b808e5dca9161895f826fdd6a06beff6c2e145", "fields": {"nom_de_la_commune": "CHARDENY", "libell_d_acheminement": "CHARDENY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08104"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f9f9625975db0a773f3cd36dfdd60cdf4c08e7b", "fields": {"code_postal": "08260", "code_commune_insee": "08169", "libell_d_acheminement": "FLAIGNES HAVYS", "ligne_5": "HAVYS", "nom_de_la_commune": "FLAIGNES HAVYS", "coordonnees_gps": [49.8443145713, 4.39580518668]}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8d7a332c34d802c6367c421bf3202e0602cbd55", "fields": {"code_postal": "08600", "code_commune_insee": "08183", "libell_d_acheminement": "FROMELENNES", "ligne_5": "FLOHIMONT", "nom_de_la_commune": "FROMELENNES", "coordonnees_gps": [50.1133571937, 4.82014456381]}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f6102fbce1d9e644918f4378d2a6fdd1547b6b", "fields": {"nom_de_la_commune": "GUIGNICOURT SUR VENCE", "libell_d_acheminement": "GUIGNICOURT SUR VENCE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08203"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea1bf4f981dd3d59399dd3e010741da2f1da8679", "fields": {"nom_de_la_commune": "LA FRANCHEVILLE", "libell_d_acheminement": "LA FRANCHEVILLE", "code_postal": "08000", "coordonnees_gps": [49.7589748085, 4.71308364849], "code_commune_insee": "08180"}, "geometry": {"type": "Point", "coordinates": [4.71308364849, 49.7589748085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88430a7c17c1e7585e165b8be883f070ef356862", "fields": {"nom_de_la_commune": "GRIVY LOISY", "libell_d_acheminement": "GRIVY LOISY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08200"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f879f05f0b80937e88196bac80e791bb180e5841", "fields": {"nom_de_la_commune": "HARAUCOURT", "libell_d_acheminement": "HARAUCOURT", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08211"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ab6757f3e9422270969974900f62633bc9abec", "fields": {"nom_de_la_commune": "HERBEUVAL", "libell_d_acheminement": "HERBEUVAL", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08223"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "059ae6cda457337c1a6f538b893c6760773ec9e8", "fields": {"nom_de_la_commune": "HAUVINE", "libell_d_acheminement": "HAUVINE", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08220"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2db93bd0adc53ed053218c6a83d36eb0182fa6c", "fields": {"nom_de_la_commune": "FLIGNY", "libell_d_acheminement": "FLIGNY", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08172"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc83057298fd4f34a918a352f20744105679f9d", "fields": {"code_postal": "08800", "code_commune_insee": "08242", "libell_d_acheminement": "LAIFOUR", "ligne_5": "LA PETITE COMMUNE", "nom_de_la_commune": "LAIFOUR", "coordonnees_gps": [49.898909719, 4.79046954849]}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ebd3fc8cc21573705dd59ed8bff2b77e1faac64", "fields": {"nom_de_la_commune": "ISSANCOURT ET RUMEL", "libell_d_acheminement": "ISSANCOURT ET RUMEL", "code_postal": "08440", "coordonnees_gps": [49.7465336406, 4.81357930291], "code_commune_insee": "08235"}, "geometry": {"type": "Point", "coordinates": [4.81357930291, 49.7465336406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e974f4e7fa8606860ef30b55fb4b737f6ceeb10e", "fields": {"nom_de_la_commune": "HERPY L ARLESIENNE", "libell_d_acheminement": "HERPY L ARLESIENNE", "code_postal": "08360", "coordonnees_gps": [49.5450302072, 4.21650848613], "code_commune_insee": "08225"}, "geometry": {"type": "Point", "coordinates": [4.21650848613, 49.5450302072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac630b7f54b8d81a84ccad7a70c6a5dafd72be3b", "fields": {"nom_de_la_commune": "MARS SOUS BOURCQ", "libell_d_acheminement": "MARS SOUS BOURCQ", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08279"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122a00d3853143b0447894ff9cf842f8324f37b6", "fields": {"nom_de_la_commune": "LAVAL MORENCY", "libell_d_acheminement": "LAVAL MORENCY", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08249"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "446214160e5f9589c81cdbbc6f9145a99f7036ab", "fields": {"nom_de_la_commune": "MARQUIGNY", "libell_d_acheminement": "MARQUIGNY", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08278"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acce2367d618dc2c48d92bb3580cc54a427b4e90", "fields": {"nom_de_la_commune": "MALANDRY", "libell_d_acheminement": "MALANDRY", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08269"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9238e88f60a1465a37407dae3e34bb62dc2d4f93", "fields": {"nom_de_la_commune": "LUCQUY", "libell_d_acheminement": "LUCQUY", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08262"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba05718e90a989c38adb509f5164da04198d5dc", "fields": {"nom_de_la_commune": "LANCON", "libell_d_acheminement": "LANCON", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08245"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b98064115015391998154673f651e35f986a0d0", "fields": {"nom_de_la_commune": "ILLY", "libell_d_acheminement": "ILLY", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08232"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7893d1f66eab273773181d0708d419284e0448da", "fields": {"code_postal": "08300", "code_commune_insee": "08362", "libell_d_acheminement": "RETHEL", "ligne_5": "PARGNY RESSON", "nom_de_la_commune": "RETHEL", "coordonnees_gps": [49.4890710736, 4.33770775217]}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74fb94de2ea5a09015cb8591e2274e409a52ee0c", "fields": {"code_postal": "08230", "code_commune_insee": "08367", "libell_d_acheminement": "ROCROI", "ligne_5": "HONGREAU", "nom_de_la_commune": "ROCROI", "coordonnees_gps": [49.9157903394, 4.51147538743]}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43df4adc9444358ce8d6bd7e83a056b9624f982f", "fields": {"nom_de_la_commune": "ST LAMBERT ET MONT DE JEUX", "libell_d_acheminement": "ST LAMBERT ET MONT DE JEUX", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08384"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc6268db1d57d70b65ef642a59692b2b2e7d352", "fields": {"nom_de_la_commune": "ST LOUP EN CHAMPAGNE", "libell_d_acheminement": "ST LOUP EN CHAMPAGNE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08386"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97ff0b212d46bc09a0b15a951b02243bd7582830", "fields": {"nom_de_la_commune": "ST REMY LE PETIT", "libell_d_acheminement": "ST REMY LE PETIT", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08397"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f547af88d89c3b21698be8c68a4819309974abf3", "fields": {"nom_de_la_commune": "PRIX LES MEZIERES", "libell_d_acheminement": "PRIX LES MEZIERES", "code_postal": "08000", "coordonnees_gps": [49.7589748085, 4.71308364849], "code_commune_insee": "08346"}, "geometry": {"type": "Point", "coordinates": [4.71308364849, 49.7589748085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63125d7b867cb6f02593562527f80d4302c744b", "fields": {"nom_de_la_commune": "REMAUCOURT", "libell_d_acheminement": "REMAUCOURT", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08356"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a84c28c53cec741b1528bc69b6bd88593bb2c9", "fields": {"nom_de_la_commune": "ST FERGEUX", "libell_d_acheminement": "ST FERGEUX", "code_postal": "08360", "coordonnees_gps": [49.5450302072, 4.21650848613], "code_commune_insee": "08380"}, "geometry": {"type": "Point", "coordinates": [4.21650848613, 49.5450302072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff5525708e7452f3236b92cca13d271a6d7f2469", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08385"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6e461b7d736aacbd631411a5b7e148b51fcb08", "fields": {"nom_de_la_commune": "ST MARCEAU", "libell_d_acheminement": "ST MARCEAU", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08388"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77716467a2e2c78304a48e4a9ec07251ff2e617d", "fields": {"code_postal": "08800", "code_commune_insee": "08302", "libell_d_acheminement": "MONTHERME", "ligne_5": "PHADE", "nom_de_la_commune": "MONTHERME", "coordonnees_gps": [49.898909719, 4.79046954849]}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d450225d380e0796bb29bda42c4d9870d7bfaba4", "fields": {"code_postal": "08240", "code_commune_insee": "08326", "libell_d_acheminement": "NOUART", "ligne_5": "LE CHAMPY", "nom_de_la_commune": "NOUART", "coordonnees_gps": [49.4367865299, 4.95899557171]}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edabbc9e5bae3c0e3d2585134c824003ca265d8c", "fields": {"code_postal": "08210", "code_commune_insee": "08311", "libell_d_acheminement": "MOUZON", "ligne_5": "AMBLIMONT", "nom_de_la_commune": "MOUZON", "coordonnees_gps": [49.5753580184, 5.05747412854]}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "248262ad423f2680eb575bc5582bdfa30efe0862", "fields": {"nom_de_la_commune": "LA NEUVILLE A MAIRE", "libell_d_acheminement": "LA NEUVILLE A MAIRE", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08317"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc6631819c3d51dded5c8566b2976b19d93807a", "fields": {"nom_de_la_commune": "NANTEUIL SUR AISNE", "libell_d_acheminement": "NANTEUIL SUR AISNE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08313"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f435457bb74c4fbe94ce06da63be4093d60b9c0", "fields": {"nom_de_la_commune": "MONTIGNY SUR MEUSE", "libell_d_acheminement": "MONTIGNY SUR MEUSE", "code_postal": "08170", "coordonnees_gps": [49.9974542935, 4.7285296063], "code_commune_insee": "08304"}, "geometry": {"type": "Point", "coordinates": [4.7285296063, 49.9974542935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38aae79d789217a78b360d897fb945bd0e8f3ff7", "fields": {"nom_de_la_commune": "MONTCHEUTIN", "libell_d_acheminement": "MONTCHEUTIN", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08296"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3b6897ef3cdb6b646b87c7b311490f339c7d563", "fields": {"nom_de_la_commune": "LA MONCELLE", "libell_d_acheminement": "LA MONCELLE", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08294"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8752a5bb1c27bd32a199c2ed4cdd83062a1e17cd", "fields": {"nom_de_la_commune": "NOUART", "libell_d_acheminement": "NOUART", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08326"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffc8c1825fedb570fcc6bb329494ebb19d50be4e", "fields": {"nom_de_la_commune": "OSNES", "libell_d_acheminement": "OSNES", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08336"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "977927820b135b8cc74314a18d3cc9557aab8377", "fields": {"code_postal": "08460", "code_commune_insee": "08419", "libell_d_acheminement": "SIGNY L ABBAYE", "ligne_5": "LIBRECY", "nom_de_la_commune": "SIGNY L ABBAYE", "coordonnees_gps": [49.7134288186, 4.4616721559]}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d7a83bd9a749ad15b01e0fdd51c8d339183b45f", "fields": {"code_postal": "08220", "code_commune_insee": "08413", "libell_d_acheminement": "SERAINCOURT", "ligne_5": "FOREST", "nom_de_la_commune": "SERAINCOURT", "coordonnees_gps": [49.6447010155, 4.20764091673]}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0fd50c925674cac9377f1aca3fb21ca9028445b", "fields": {"nom_de_la_commune": "SEVIGNY LA FORET", "libell_d_acheminement": "SEVIGNY LA FORET", "code_postal": "08230", "coordonnees_gps": [49.9157903394, 4.51147538743], "code_commune_insee": "08417"}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b2f6576e37f58c4632b25fb0ca3d612b99aa711", "fields": {"nom_de_la_commune": "SIGNY L ABBAYE", "libell_d_acheminement": "SIGNY L ABBAYE", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08419"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140012bf1865c86a68f9a42bbcf188aaad77f05c", "fields": {"nom_de_la_commune": "SEMIDE", "libell_d_acheminement": "SEMIDE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08410"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf85e145dc8dc60f1757bc4ff7d320e36eb3b369", "fields": {"nom_de_la_commune": "SEMUY", "libell_d_acheminement": "SEMUY", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08411"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cbabb7abc8785e2a979789ef51ba0d71741e09d", "fields": {"code_postal": "08240", "code_commune_insee": "08437", "libell_d_acheminement": "TAILLY", "ligne_5": "REMONVILLE", "nom_de_la_commune": "TAILLY", "coordonnees_gps": [49.4367865299, 4.95899557171]}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f8c97a1c35fec656f77963bf8a042359cb221c", "fields": {"nom_de_la_commune": "THENORGUES", "libell_d_acheminement": "THENORGUES", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08446"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc4fb44e39994f0a654349365a3016bfd2214636", "fields": {"nom_de_la_commune": "THELONNE", "libell_d_acheminement": "THELONNE", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08445"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec8f507221b953e7b96b39160567b536702c277a", "fields": {"nom_de_la_commune": "LE THOUR", "libell_d_acheminement": "LE THOUR", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08451"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c202e815778aa3aa410d14c7ababf61aaa74f7e", "fields": {"nom_de_la_commune": "TOURNES", "libell_d_acheminement": "TOURNES", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08457"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc602d817eb333669a2e270fabf20cfa499a4731", "fields": {"nom_de_la_commune": "TANNAY", "libell_d_acheminement": "TANNAY", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08439"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d99b90170fab32a08cbced63dac79664ccc6b262", "fields": {"nom_de_la_commune": "SINGLY", "libell_d_acheminement": "SINGLY", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08422"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f05c73bbfd498eb9c6940d282e48fa03d99c49b", "fields": {"nom_de_la_commune": "TAIZY", "libell_d_acheminement": "TAIZY", "code_postal": "08360", "coordonnees_gps": [49.5450302072, 4.21650848613], "code_commune_insee": "08438"}, "geometry": {"type": "Point", "coordinates": [4.21650848613, 49.5450302072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "425d5e0098bfe2094067f671f38b6a628c552b0e", "fields": {"nom_de_la_commune": "TOGES", "libell_d_acheminement": "TOGES", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08453"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77ae3e24dcee79a46c68ebe68198d32d20d39cb", "fields": {"nom_de_la_commune": "TREMBLOIS LES ROCROI", "libell_d_acheminement": "TREMBLOIS LES ROCROI", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08460"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87253d92e89736684b5f2d0dd956ccd0b89c1061", "fields": {"nom_de_la_commune": "VILLERS LE TOURNEUR", "libell_d_acheminement": "VILLERS LE TOURNEUR", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08479"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d0ad655fb5c0837a0308b97d018dfd923cfa1a4", "fields": {"nom_de_la_commune": "VAUX EN DIEULET", "libell_d_acheminement": "VAUX EN DIEULET", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08463"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3b434fe09094b283094410bee693efa8188f6c4", "fields": {"nom_de_la_commune": "VAUX LES MOURON", "libell_d_acheminement": "VAUX LES MOURON", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08464"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c9d4b94f8bd488d37ad4c42be234d88844a43c", "fields": {"nom_de_la_commune": "VIREUX MOLHAIN", "libell_d_acheminement": "VIREUX MOLHAIN", "code_postal": "08320", "coordonnees_gps": [50.0723012487, 4.74304215812], "code_commune_insee": "08486"}, "geometry": {"type": "Point", "coordinates": [4.74304215812, 50.0723012487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c692010797ca5dfafd64f044c25b3b95cef0e94", "fields": {"nom_de_la_commune": "AIGUES JUNTES", "libell_d_acheminement": "AIGUES JUNTES", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09001"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbef78120e72263fc12ac70388b98599b64eef88", "fields": {"nom_de_la_commune": "ALLIERES", "libell_d_acheminement": "ALLIERES", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09007"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb22594df73a882a56f3accf9afc938584890fa7", "fields": {"nom_de_la_commune": "ARIGNAC", "libell_d_acheminement": "ARIGNAC", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09015"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81f92a48bc3afc782c71f8fcbab9d76801908297", "fields": {"nom_de_la_commune": "MONTCLAR", "libell_d_acheminement": "MONTCLAR", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12149"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71bd2056046544371683b0e2173616500f8b2607", "fields": {"nom_de_la_commune": "MONTROZIER", "libell_d_acheminement": "MONTROZIER", "code_postal": "12630", "coordonnees_gps": [44.3813386273, 2.71254776972], "code_commune_insee": "12157"}, "geometry": {"type": "Point", "coordinates": [2.71254776972, 44.3813386273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58f701921b7cbd33891ce8fbb47deb4ead6df23b", "fields": {"nom_de_la_commune": "MUROLS", "libell_d_acheminement": "MUROLS", "code_postal": "12600", "coordonnees_gps": [44.8341310228, 2.67664580865], "code_commune_insee": "12166"}, "geometry": {"type": "Point", "coordinates": [2.67664580865, 44.8341310228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8d7edc50c395956a4612c3c1dba9d0332f5aa58", "fields": {"code_postal": "12850", "code_commune_insee": "12176", "libell_d_acheminement": "ONET LE CHATEAU", "ligne_5": "QUATRE SAISONS", "nom_de_la_commune": "ONET LE CHATEAU", "coordonnees_gps": [44.3602453055, 2.59175422847]}, "geometry": {"type": "Point", "coordinates": [2.59175422847, 44.3602453055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b7bb343e8cff858ebf72eb0ad061bfdf446958", "fields": {"code_postal": "12340", "code_commune_insee": "12177", "libell_d_acheminement": "PALMAS D AVEYRON", "ligne_5": "CRUEJOULS", "nom_de_la_commune": "PALMAS D AVEYRON", "coordonnees_gps": [44.4656002773, 2.70710459278]}, "geometry": {"type": "Point", "coordinates": [2.70710459278, 44.4656002773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4141be0ccf486452b49f7a0de1dec43e236e76a9", "fields": {"nom_de_la_commune": "PAULHE", "libell_d_acheminement": "PAULHE", "code_postal": "12520", "coordonnees_gps": [44.1968259654, 3.06387030498], "code_commune_insee": "12178"}, "geometry": {"type": "Point", "coordinates": [3.06387030498, 44.1968259654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d2078846341f707353214260411cfba668bb18", "fields": {"nom_de_la_commune": "PIERREFICHE", "libell_d_acheminement": "PIERREFICHE", "code_postal": "12130", "coordonnees_gps": [44.4625155533, 2.98303027843], "code_commune_insee": "12182"}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aeb0566b191459d89d9b1a10ecf025aecc2f960", "fields": {"nom_de_la_commune": "PRIVEZAC", "libell_d_acheminement": "PRIVEZAC", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12191"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b332ad7752a813fce59bfc059edcf65ad49a73", "fields": {"code_postal": "12800", "code_commune_insee": "12194", "libell_d_acheminement": "QUINS", "ligne_5": "LA MOTHE", "nom_de_la_commune": "QUINS", "coordonnees_gps": [44.1851158215, 2.33730989448]}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa96193866ca789c50bc7788b199b656008285d", "fields": {"nom_de_la_commune": "RIGNAC", "libell_d_acheminement": "RIGNAC", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12199"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c317059af79523d8f064cfbb5c706b180af7457", "fields": {"nom_de_la_commune": "RULLAC ST CIRQ", "libell_d_acheminement": "RULLAC ST CIRQ", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12207"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8a4f4275f3a14e984e6f63311048ffb937622d", "fields": {"nom_de_la_commune": "ST BEAULIZE", "libell_d_acheminement": "ST BEAULIZE", "code_postal": "12540", "coordonnees_gps": [43.8787455208, 3.14987374669], "code_commune_insee": "12212"}, "geometry": {"type": "Point", "coordinates": [3.14987374669, 43.8787455208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3d883c7bf159a5a0312f1f9aa9168da85ec18f1", "fields": {"nom_de_la_commune": "STE EULALIE D OLT", "libell_d_acheminement": "STE EULALIE D OLT", "code_postal": "12130", "coordonnees_gps": [44.4625155533, 2.98303027843], "code_commune_insee": "12219"}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d6ad6e279717e9e7aea7dc5e2f5141ec2116e1c", "fields": {"nom_de_la_commune": "STE EULALIE DE CERNON", "libell_d_acheminement": "STE EULALIE DE CERNON", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12220"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcec055b5d117300579cbbe5c8d0babf3b45b0a7", "fields": {"code_postal": "12210", "code_commune_insee": "12223", "libell_d_acheminement": "ARGENCES EN AUBRAC", "ligne_5": "ALPUECH", "nom_de_la_commune": "ARGENCES EN AUBRAC", "coordonnees_gps": [44.6915069372, 2.81638954446]}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fcda1f6e362d7f285deb0b520cf8e6be44deefb", "fields": {"nom_de_la_commune": "ST GEORGES DE LUZENCON", "libell_d_acheminement": "ST GEORGES DE LUZENCON", "code_postal": "12100", "coordonnees_gps": [44.0898281066, 3.10621950967], "code_commune_insee": "12225"}, "geometry": {"type": "Point", "coordinates": [3.10621950967, 44.0898281066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40caf1b36ac7db1059bef492dedea45e3f18e2be", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12226"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94c106e291bec7a4e4beadc91ed3e5a5ead3d402", "fields": {"nom_de_la_commune": "ST IGEST", "libell_d_acheminement": "ST IGEST", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12227"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f8b68d94dcecf0fdf777a588c00877ed1a89a9d", "fields": {"nom_de_la_commune": "ST JEAN DELNOUS", "libell_d_acheminement": "ST JEAN DELNOUS", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12230"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5504d18e7bccfd4068b829e789cb53af9077e05a", "fields": {"nom_de_la_commune": "ST JUST SUR VIAUR", "libell_d_acheminement": "ST JUST SUR VIAUR", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12235"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e36ce7634af8fd98fd1e40b476480f1b177c30", "fields": {"nom_de_la_commune": "ST LAURENT DE LEVEZOU", "libell_d_acheminement": "ST LAURENT DE LEVEZOU", "code_postal": "12620", "coordonnees_gps": [44.1639182272, 2.94123371794], "code_commune_insee": "12236"}, "geometry": {"type": "Point", "coordinates": [2.94123371794, 44.1639182272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afe1c0d46f957f95be746187d1d60a4abf97a19d", "fields": {"nom_de_la_commune": "ST PARTHEM", "libell_d_acheminement": "ST PARTHEM", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12240"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da03fa4837746f227ea9be40752e4f9d8733cfcb", "fields": {"nom_de_la_commune": "SALLES LA SOURCE", "libell_d_acheminement": "SALLES LA SOURCE", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12254"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbb0d11f6a4e96794b9c5bab04954f4af00039ce", "fields": {"nom_de_la_commune": "SEBAZAC CONCOURES", "libell_d_acheminement": "SEBAZAC CONCOURES", "code_postal": "12740", "coordonnees_gps": [44.4071370966, 2.63127194747], "code_commune_insee": "12264"}, "geometry": {"type": "Point", "coordinates": [2.63127194747, 44.4071370966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f76c69b8921905296c9db1374ee8cbd057b195cc", "fields": {"nom_de_la_commune": "SEBRAZAC", "libell_d_acheminement": "SEBRAZAC", "code_postal": "12190", "coordonnees_gps": [44.5757488453, 2.68710158175], "code_commune_insee": "12265"}, "geometry": {"type": "Point", "coordinates": [2.68710158175, 44.5757488453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9643b07fa9a2e15281f3c2b14c21042e0e45254", "fields": {"nom_de_la_commune": "TAUSSAC", "libell_d_acheminement": "TAUSSAC", "code_postal": "12600", "coordonnees_gps": [44.8341310228, 2.67664580865], "code_commune_insee": "12277"}, "geometry": {"type": "Point", "coordinates": [2.67664580865, 44.8341310228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "679accb8fe73875d30e78428c54ad8638d732936", "fields": {"nom_de_la_commune": "TAYRAC", "libell_d_acheminement": "TAYRAC", "code_postal": "12440", "coordonnees_gps": [44.2188237556, 2.19456712254], "code_commune_insee": "12278"}, "geometry": {"type": "Point", "coordinates": [2.19456712254, 44.2188237556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940f11055dfaf9a65b6437e96b89638e2bc88995", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "12520", "coordonnees_gps": [44.1968259654, 3.06387030498], "code_commune_insee": "12291"}, "geometry": {"type": "Point", "coordinates": [3.06387030498, 44.1968259654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1e37c28fb290101b6864ae8bf26493821349b99", "fields": {"nom_de_la_commune": "VEYREAU", "libell_d_acheminement": "VEYREAU", "code_postal": "12720", "coordonnees_gps": [44.1809861731, 3.25262326426], "code_commune_insee": "12293"}, "geometry": {"type": "Point", "coordinates": [3.25262326426, 44.1809861731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f1111ef1a46ac0759ad991a331d12b9902dc19", "fields": {"nom_de_la_commune": "VIALA DU PAS DE JAUX", "libell_d_acheminement": "VIALA DU PAS DE JAUX", "code_postal": "12250", "coordonnees_gps": [43.948416094, 3.02271239908], "code_commune_insee": "12295"}, "geometry": {"type": "Point", "coordinates": [3.02271239908, 43.948416094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0c030f2e91dd3568cdef8453e64de44d2207ec2", "fields": {"nom_de_la_commune": "VIMENET", "libell_d_acheminement": "VIMENET", "code_postal": "12310", "coordonnees_gps": [44.384469335, 2.84476302604], "code_commune_insee": "12303"}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce134c39d550773134c4aeb96be0b6769bfb55f4", "fields": {"code_postal": "13540", "code_commune_insee": "13001", "libell_d_acheminement": "AIX EN PROVENCE", "ligne_5": "PUYRICARD", "nom_de_la_commune": "AIX EN PROVENCE", "coordonnees_gps": [43.5360221556, 5.3983786513]}, "geometry": {"type": "Point", "coordinates": [5.3983786513, 43.5360221556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31ce4f2f45df397179e26c897c5c6e5d86a24ad", "fields": {"code_postal": "13129", "code_commune_insee": "13004", "libell_d_acheminement": "ARLES", "ligne_5": "SALIN DE GIRAUD", "nom_de_la_commune": "ARLES", "coordonnees_gps": [43.5467808819, 4.66183385891]}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1db68dedc9181c7c1bda0befa3798865401df54", "fields": {"code_postal": "13280", "code_commune_insee": "13004", "libell_d_acheminement": "ARLES", "ligne_5": "MOULES", "nom_de_la_commune": "ARLES", "coordonnees_gps": [43.5467808819, 4.66183385891]}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77007b115bf8a7b2ffb4bc8600749928c5e0785b", "fields": {"nom_de_la_commune": "BARBENTANE", "libell_d_acheminement": "BARBENTANE", "code_postal": "13570", "coordonnees_gps": [43.8946430262, 4.749492461], "code_commune_insee": "13010"}, "geometry": {"type": "Point", "coordinates": [4.749492461, 43.8946430262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6daf5de9fe4e232dd2fac4f17ab12a073e049344", "fields": {"nom_de_la_commune": "BERRE L ETANG", "libell_d_acheminement": "BERRE L ETANG", "code_postal": "13130", "coordonnees_gps": [43.5038264894, 5.16082559313], "code_commune_insee": "13014"}, "geometry": {"type": "Point", "coordinates": [5.16082559313, 43.5038264894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb4a1d4d9c32e024b249a78fba226110be0cf20b", "fields": {"nom_de_la_commune": "BOUC BEL AIR", "libell_d_acheminement": "BOUC BEL AIR", "code_postal": "13320", "coordonnees_gps": [43.44709567, 5.41278086105], "code_commune_insee": "13015"}, "geometry": {"type": "Point", "coordinates": [5.41278086105, 43.44709567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3f38a9eaf6d5acfee8efe3783795c2421c5df55", "fields": {"nom_de_la_commune": "CABANNES", "libell_d_acheminement": "CABANNES", "code_postal": "13440", "coordonnees_gps": [43.8590936432, 4.95774539793], "code_commune_insee": "13018"}, "geometry": {"type": "Point", "coordinates": [4.95774539793, 43.8590936432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ce92a6ebac4fefae06b327ba88015717ada0d8", "fields": {"nom_de_la_commune": "CEYRESTE", "libell_d_acheminement": "CEYRESTE", "code_postal": "13600", "coordonnees_gps": [43.2057739447, 5.6225082578], "code_commune_insee": "13023"}, "geometry": {"type": "Point", "coordinates": [5.6225082578, 43.2057739447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26a33aa1b1fbcb19aad1cbcde503b7950614e63f", "fields": {"nom_de_la_commune": "ENSUES LA REDONNE", "libell_d_acheminement": "ENSUES LA REDONNE", "code_postal": "13820", "coordonnees_gps": [43.3537890025, 5.19969508788], "code_commune_insee": "13033"}, "geometry": {"type": "Point", "coordinates": [5.19969508788, 43.3537890025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa054497181ba90243a1d1b53fc20f28b6db4be", "fields": {"nom_de_la_commune": "EYGUIERES", "libell_d_acheminement": "EYGUIERES", "code_postal": "13430", "coordonnees_gps": [43.7025400757, 5.01572210445], "code_commune_insee": "13035"}, "geometry": {"type": "Point", "coordinates": [5.01572210445, 43.7025400757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3202233ef040a62dcd4b3907d6dad19e86075a7f", "fields": {"nom_de_la_commune": "EYRAGUES", "libell_d_acheminement": "EYRAGUES", "code_postal": "13630", "coordonnees_gps": [43.8430965536, 4.84389669406], "code_commune_insee": "13036"}, "geometry": {"type": "Point", "coordinates": [4.84389669406, 43.8430965536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba9bb60362f1cd16866a737b0260bf7af8d55793", "fields": {"code_postal": "13120", "code_commune_insee": "13041", "libell_d_acheminement": "GARDANNE", "ligne_5": "BIVER", "nom_de_la_commune": "GARDANNE", "coordonnees_gps": [43.4527470657, 5.47999296124]}, "geometry": {"type": "Point", "coordinates": [5.47999296124, 43.4527470657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acbc30520eb53009a40e2192ef2e781b0b2d8307", "fields": {"nom_de_la_commune": "GEMENOS", "libell_d_acheminement": "GEMENOS", "code_postal": "13420", "coordonnees_gps": [43.2982409252, 5.64453739923], "code_commune_insee": "13042"}, "geometry": {"type": "Point", "coordinates": [5.64453739923, 43.2982409252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8dd212071a43b937d06f370a9c03f01cc2590e", "fields": {"nom_de_la_commune": "GIGNAC LA NERTHE", "libell_d_acheminement": "GIGNAC LA NERTHE", "code_postal": "13180", "coordonnees_gps": [43.390482869, 5.22788588973], "code_commune_insee": "13043"}, "geometry": {"type": "Point", "coordinates": [5.22788588973, 43.390482869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7820e9820b190731dc8a94b1d9b570c5c6815192", "fields": {"nom_de_la_commune": "GRAVESON", "libell_d_acheminement": "GRAVESON", "code_postal": "13690", "coordonnees_gps": [43.8539709841, 4.76690510609], "code_commune_insee": "13045"}, "geometry": {"type": "Point", "coordinates": [4.76690510609, 43.8539709841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a73ea2f925f81d51335fd59bc7338af62034e3b5", "fields": {"nom_de_la_commune": "GREASQUE", "libell_d_acheminement": "GREASQUE", "code_postal": "13850", "coordonnees_gps": [43.4267657218, 5.54724216538], "code_commune_insee": "13046"}, "geometry": {"type": "Point", "coordinates": [5.54724216538, 43.4267657218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca048281f9d039a1d4ecae7c24b6ebbc891424bc", "fields": {"nom_de_la_commune": "ST PIERRE DE MEZOARGUES", "libell_d_acheminement": "ST PIERRE DE MEZOARGUES", "code_postal": "13150", "coordonnees_gps": [43.811635575, 4.68697564727], "code_commune_insee": "13061"}, "geometry": {"type": "Point", "coordinates": [4.68697564727, 43.811635575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "073dbc0ebcbc8d4707478ba29bb4d1e8eb543c9f", "fields": {"nom_de_la_commune": "MIMET", "libell_d_acheminement": "MIMET", "code_postal": "13105", "coordonnees_gps": [43.4125486694, 5.49850212317], "code_commune_insee": "13062"}, "geometry": {"type": "Point", "coordinates": [5.49850212317, 43.4125486694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2ee4f650f5997b24825fc82480cbfc52aea560c", "fields": {"nom_de_la_commune": "PEYNIER", "libell_d_acheminement": "PEYNIER", "code_postal": "13790", "coordonnees_gps": [43.466397869, 5.61228660864], "code_commune_insee": "13072"}, "geometry": {"type": "Point", "coordinates": [5.61228660864, 43.466397869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e6907a1ca34d457d2772153aae3eb2f02d87526", "fields": {"nom_de_la_commune": "PORT ST LOUIS DU RHONE", "libell_d_acheminement": "PORT ST LOUIS DU RHONE", "code_postal": "13230", "coordonnees_gps": [43.4159102575, 4.80600123608], "code_commune_insee": "13078"}, "geometry": {"type": "Point", "coordinates": [4.80600123608, 43.4159102575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f108dd3827b69ccc07eb1ef265334e3bf0c8d668", "fields": {"nom_de_la_commune": "LA ROQUE D ANTHERON", "libell_d_acheminement": "LA ROQUE D ANTHERON", "code_postal": "13640", "coordonnees_gps": [43.717611873, 5.3021029918], "code_commune_insee": "13084"}, "geometry": {"type": "Point", "coordinates": [5.3021029918, 43.717611873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae971cc9a3745a504af96d7d6f3eb616a95510ab", "fields": {"nom_de_la_commune": "ROQUEFORT LA BEDOULE", "libell_d_acheminement": "ROQUEFORT LA BEDOULE", "code_postal": "13830", "coordonnees_gps": [43.2511968677, 5.62904629531], "code_commune_insee": "13085"}, "geometry": {"type": "Point", "coordinates": [5.62904629531, 43.2511968677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e5d768c6030c551c9ef6fb20053ad02f3989ac5", "fields": {"code_postal": "13740", "code_commune_insee": "13088", "libell_d_acheminement": "LE ROVE", "ligne_5": "LE DOUARD", "nom_de_la_commune": "LE ROVE", "coordonnees_gps": [43.3653006845, 5.25320648556]}, "geometry": {"type": "Point", "coordinates": [5.25320648556, 43.3653006845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d564ff51b7c15635a044939a71bdd6c3a825bce", "fields": {"nom_de_la_commune": "ST MARTIN DE CRAU", "libell_d_acheminement": "ST MARTIN DE CRAU", "code_postal": "13310", "coordonnees_gps": [43.6121626168, 4.85649120656], "code_commune_insee": "13097"}, "geometry": {"type": "Point", "coordinates": [4.85649120656, 43.6121626168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ccb2736430d6a692adb5d9c056ad5e1a1380ed3", "fields": {"nom_de_la_commune": "SAUSSET LES PINS", "libell_d_acheminement": "SAUSSET LES PINS", "code_postal": "13960", "coordonnees_gps": [43.3457310767, 5.11745553052], "code_commune_insee": "13104"}, "geometry": {"type": "Point", "coordinates": [5.11745553052, 43.3457310767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e897399c911327c810ff71e125851d981fa650d2", "fields": {"nom_de_la_commune": "SIMIANE COLLONGUE", "libell_d_acheminement": "SIMIANE COLLONGUE", "code_postal": "13109", "coordonnees_gps": [43.4114697377, 5.43791091838], "code_commune_insee": "13107"}, "geometry": {"type": "Point", "coordinates": [5.43791091838, 43.4114697377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed8f2205e6f74d6b7bee550be8980d2d352bff5", "fields": {"nom_de_la_commune": "TRETS", "libell_d_acheminement": "TRETS", "code_postal": "13530", "coordonnees_gps": [43.4378404321, 5.70012599644], "code_commune_insee": "13110"}, "geometry": {"type": "Point", "coordinates": [5.70012599644, 43.4378404321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d399eb9bc7e0f3ca4aa00d252da229e017ba86", "fields": {"code_postal": "13530", "code_commune_insee": "13110", "libell_d_acheminement": "TRETS", "ligne_5": "CADENET", "nom_de_la_commune": "TRETS", "coordonnees_gps": [43.4378404321, 5.70012599644]}, "geometry": {"type": "Point", "coordinates": [5.70012599644, 43.4378404321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab98e89d5ff311f13da07468fe541cb56c48685f", "fields": {"nom_de_la_commune": "MARSEILLE 02", "libell_d_acheminement": "MARSEILLE", "code_postal": "13002", "coordonnees_gps": [43.3127325556, 5.36355601234], "code_commune_insee": "13202"}, "geometry": {"type": "Point", "coordinates": [5.36355601234, 43.3127325556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "786f4d6a0bb21af289daf9f7a4bb252ab897fd71", "fields": {"nom_de_la_commune": "MARSEILLE 05", "libell_d_acheminement": "MARSEILLE", "code_postal": "13005", "coordonnees_gps": [43.2924809562, 5.39796837854], "code_commune_insee": "13205"}, "geometry": {"type": "Point", "coordinates": [5.39796837854, 43.2924809562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb4c5a61cd18c5687c7730ed453680dc07e1d5b", "fields": {"code_postal": "13009", "code_commune_insee": "13209", "libell_d_acheminement": "MARSEILLE", "ligne_5": "LES BAUMETTES", "nom_de_la_commune": "MARSEILLE 09", "coordonnees_gps": [43.2344717573, 5.45254070973]}, "geometry": {"type": "Point", "coordinates": [5.45254070973, 43.2344717573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb3275d4d85e761685c97a8a0c831e2cb98054b5", "fields": {"code_postal": "13011", "code_commune_insee": "13211", "libell_d_acheminement": "MARSEILLE", "ligne_5": "LA VALENTINE", "nom_de_la_commune": "MARSEILLE 11", "coordonnees_gps": [43.2885052354, 5.4838251453]}, "geometry": {"type": "Point", "coordinates": [5.4838251453, 43.2885052354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59d8e81c50077b127d63c8cfba2f59f9df38e7e3", "fields": {"nom_de_la_commune": "MARSEILLE 12", "libell_d_acheminement": "MARSEILLE", "code_postal": "13012", "coordonnees_gps": [43.3077980395, 5.43935485792], "code_commune_insee": "13212"}, "geometry": {"type": "Point", "coordinates": [5.43935485792, 43.3077980395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4c99e27b8cd54b79e4ed4b52b4c721d47334d3", "fields": {"nom_de_la_commune": "MARSEILLE 13", "libell_d_acheminement": "MARSEILLE", "code_postal": "13013", "coordonnees_gps": [43.3495227907, 5.43359654239], "code_commune_insee": "13213"}, "geometry": {"type": "Point", "coordinates": [5.43359654239, 43.3495227907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4511ad0efbc39e21bca93545953c693f6b22514", "fields": {"nom_de_la_commune": "AIRAN", "libell_d_acheminement": "AIRAN", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14005"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb421cf42b62ffb25a52d864d1e996ac1673c89", "fields": {"nom_de_la_commune": "AMAYE SUR ORNE", "libell_d_acheminement": "AMAYE SUR ORNE", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14006"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d31ffd5ecfe2fa1f5ccb04237b95034d11cbda5", "fields": {"nom_de_la_commune": "ANNEBAULT", "libell_d_acheminement": "ANNEBAULT", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14016"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e138764cc2778dc47a6ca01074e870e7d02d6f00", "fields": {"nom_de_la_commune": "LES AUTHIEUX PAPION", "libell_d_acheminement": "LES AUTHIEUX PAPION", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14031"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a89ce1902f6f46f022ea773b8d241e44c80871e", "fields": {"nom_de_la_commune": "AVENAY", "libell_d_acheminement": "AVENAY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14034"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd20f16e0fb6d9fe247ce2591a165e712ab56090", "fields": {"nom_de_la_commune": "BANNEVILLE LA CAMPAGNE", "libell_d_acheminement": "BANNEVILLE LA CAMPAGNE", "code_postal": "14940", "coordonnees_gps": [49.1833480619, -0.224513518796], "code_commune_insee": "14036"}, "geometry": {"type": "Point", "coordinates": [-0.224513518796, 49.1833480619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05ca66eb06bcc5d390bec9516456ff2545012de1", "fields": {"nom_de_la_commune": "BASLY", "libell_d_acheminement": "BASLY", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14044"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00f6749549556a2cd2884e418685c2b011c1318d", "fields": {"nom_de_la_commune": "BASSENEVILLE", "libell_d_acheminement": "BASSENEVILLE", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14045"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db3d0e6b92bf30ef6b68ed3351d31e42053a5a97", "fields": {"nom_de_la_commune": "BAYEUX", "libell_d_acheminement": "BAYEUX", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14047"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "273474b643f61bab8e1eb1386c81a76ea3dac124", "fields": {"nom_de_la_commune": "BEAUMESNIL", "libell_d_acheminement": "BEAUMESNIL", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14054"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67b1b709546bf23b66a8e2888886c2e6d8b1c86f", "fields": {"nom_de_la_commune": "BEAUMONT EN AUGE", "libell_d_acheminement": "BEAUMONT EN AUGE", "code_postal": "14950", "coordonnees_gps": [49.2830960197, 0.0921245287823], "code_commune_insee": "14055"}, "geometry": {"type": "Point", "coordinates": [0.0921245287823, 49.2830960197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec80a8a2126bdbc9ada7debd0121d880ff5e8944", "fields": {"nom_de_la_commune": "BELLENGREVILLE", "libell_d_acheminement": "BELLENGREVILLE", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14057"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ab1241ca0bef38a51c2007699b8a89b956cb45", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "BURES LES MONTS", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cfd0f5d0add2c079cf91e512b4382a1b0f808ce", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "ST OUEN DES BESACES", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "115c83d922cc4fe1f15ad5149e80dd4777a220dd", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "STE MARIE LAUMONT", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f92ed99320e554d6ac8fdf15337d2fa53334e3", "fields": {"nom_de_la_commune": "LA BIGNE", "libell_d_acheminement": "LA BIGNE", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14073"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "837f915c3b7ee8cb0657908b40a8c27514fd7085", "fields": {"nom_de_la_commune": "BOISSEY", "libell_d_acheminement": "BOISSEY", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14081"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5585015727d4174fd56843c79d475451beb722b4", "fields": {"nom_de_la_commune": "BRANVILLE", "libell_d_acheminement": "BRANVILLE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14093"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "245dc475179692daae6012f63c02a97a6abd4eb6", "fields": {"nom_de_la_commune": "LA CAMBE", "libell_d_acheminement": "LA CAMBE", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14124"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b1cc9e50731d649c227c5b53b537eb4592ea39", "fields": {"nom_de_la_commune": "CAMBES EN PLAINE", "libell_d_acheminement": "CAMBES EN PLAINE", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14125"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e6f2229774fddfda615d45e57b550f217c049b", "fields": {"code_postal": "14340", "code_commune_insee": "14126", "libell_d_acheminement": "CAMBREMER", "ligne_5": "ST AUBIN SUR ALGOT", "nom_de_la_commune": "CAMBREMER", "coordonnees_gps": [49.1715682628, 0.0767124030123]}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519fe83b1a1e5aeef3cf09ebe34d2b80142be9ef", "fields": {"nom_de_la_commune": "CANTELOUP", "libell_d_acheminement": "CANTELOUP", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14134"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf8ca41f1fbd9568566a1abd77c33bf7e9d7764", "fields": {"nom_de_la_commune": "CARDONVILLE", "libell_d_acheminement": "CARDONVILLE", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14136"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ebbc07ef051411973b58119ff68727407d20c9d", "fields": {"nom_de_la_commune": "CASTILLON EN AUGE", "libell_d_acheminement": "CASTILLON EN AUGE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14141"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9545f373624b35924833b151dd74c0b52871230c", "fields": {"nom_de_la_commune": "CASTILLY", "libell_d_acheminement": "CASTILLY", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14142"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee30d0381ef8744304b9b36656cbe1a40aa3826", "fields": {"nom_de_la_commune": "CAUMONT L EVENTE", "libell_d_acheminement": "CAUMONT L EVENTE", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14143"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8f2b8c8c03c42bd10f3f29fa434ecb061c257e3", "fields": {"nom_de_la_commune": "CAUVICOURT", "libell_d_acheminement": "CAUVICOURT", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14145"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68b85c07b6662cbe25fd1842b89054fa94829c6", "fields": {"nom_de_la_commune": "CAUVILLE", "libell_d_acheminement": "CAUVILLE", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14146"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae8e4e0633472820642984031d9f4c0ba405774", "fields": {"nom_de_la_commune": "CESNY BOIS HALBOUT", "libell_d_acheminement": "CESNY BOIS HALBOUT", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14150"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd8884b71d5a9ad119c5fe46e5a972cbc27bf3b2", "fields": {"nom_de_la_commune": "CHICHEBOVILLE", "libell_d_acheminement": "CHICHEBOVILLE", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14158"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a043edbb5c9f97077abffc1e1176176aad601443", "fields": {"nom_de_la_commune": "CLEVILLE", "libell_d_acheminement": "CLEVILLE", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14163"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15dbced57f496a71bb46045ba30ec453ccddecb9", "fields": {"nom_de_la_commune": "CLINCHAMPS SUR ORNE", "libell_d_acheminement": "CLINCHAMPS SUR ORNE", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14164"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a68cc3859c4c9f5c51da545e0c6fbfea8489c16", "fields": {"nom_de_la_commune": "COMMES", "libell_d_acheminement": "COMMES", "code_postal": "14520", "coordonnees_gps": [49.3400701436, -0.771788294928], "code_commune_insee": "14172"}, "geometry": {"type": "Point", "coordinates": [-0.771788294928, 49.3400701436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66e0206e6d8e714c8f67a0f5d91b4c4c26c3727d", "fields": {"code_postal": "14110", "code_commune_insee": "14174", "libell_d_acheminement": "CONDE EN NORMANDIE", "ligne_5": "ST GERMAIN DU CRIOULT", "nom_de_la_commune": "CONDE EN NORMANDIE", "coordonnees_gps": [48.8603879133, -0.538857121596]}, "geometry": {"type": "Point", "coordinates": [-0.538857121596, 48.8603879133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "842c17c6270bf00845b54389a64e28c59a0797df", "fields": {"code_postal": "14770", "code_commune_insee": "14174", "libell_d_acheminement": "CONDE EN NORMANDIE", "ligne_5": "LA CHAPELLE ENGERBOLD", "nom_de_la_commune": "CONDE EN NORMANDIE", "coordonnees_gps": [48.9262068, -0.631065513494]}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d64f6c5a4fc1b0cbf1db72f2b865d96cf4256e", "fields": {"nom_de_la_commune": "ST MARTIN DE BAVEL", "libell_d_acheminement": "ST MARTIN DE BAVEL", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01372"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24cc1c7eae9ed85698438f73c7f390b39e8999fc", "fields": {"nom_de_la_commune": "ST BERNARD", "libell_d_acheminement": "ST BERNARD", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01339"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9178dd9c04ae0a8a8be387ee3e08e79937ec6d3", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01371"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf2657c23a4e5f7018a30bfedcbc84dbb8510be", "fields": {"nom_de_la_commune": "ST ELOI", "libell_d_acheminement": "ST ELOI", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01349"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd217fea415d2bcca848900cbab0f8df1efb195", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01369"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bca6c7735634b626c29753e493b7ade4c22dd95", "fields": {"code_postal": "02370", "code_commune_insee": "02008", "libell_d_acheminement": "AIZY JOUY", "ligne_5": "JOUY", "nom_de_la_commune": "AIZY JOUY", "coordonnees_gps": [49.4107346804, 3.51937274632]}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "869692d183dfa11c0e55fe1ccf8d95f9f55e8537", "fields": {"nom_de_la_commune": "AISONVILLE ET BERNOVILLE", "libell_d_acheminement": "AISONVILLE ET BERNOVILLE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02006"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1ac9bbc421ff27180ad763eedd5aa7cd8201255", "fields": {"nom_de_la_commune": "VILLETTE SUR AIN", "libell_d_acheminement": "VILLETTE SUR AIN", "code_postal": "01320", "coordonnees_gps": [46.0113616676, 5.19303242296], "code_commune_insee": "01449"}, "geometry": {"type": "Point", "coordinates": [5.19303242296, 46.0113616676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e6f0782222d0ab588517c103d306a81f1b1384", "fields": {"nom_de_la_commune": "AMIFONTAINE", "libell_d_acheminement": "AMIFONTAINE", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02013"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ce69e9ecbdb3c2306fc53481616929db6bba90", "fields": {"nom_de_la_commune": "AGUILCOURT", "libell_d_acheminement": "AGUILCOURT", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02005"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68d7a9a5ef0e12a575ee15b188977954a37f8a97", "fields": {"nom_de_la_commune": "VILLEBOIS", "libell_d_acheminement": "VILLEBOIS", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01444"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241c656797dae0d3e6da4436232ee1b2cf76e6e3", "fields": {"nom_de_la_commune": "AIZY JOUY", "libell_d_acheminement": "AIZY JOUY", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02008"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ea6a6f8c89c3f39e5a751449f1e3a342368252", "fields": {"nom_de_la_commune": "VARAMBON", "libell_d_acheminement": "VARAMBON", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01430"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a0c59d45c1aadfa9199062df81e5745560227b3", "fields": {"nom_de_la_commune": "TRAMOYES", "libell_d_acheminement": "TRAMOYES", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01424"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60af320298fa1ccaff4e64f9ea5f26a60e582f40", "fields": {"nom_de_la_commune": "VIRIAT", "libell_d_acheminement": "VIRIAT", "code_postal": "01440", "coordonnees_gps": [46.2508236356, 5.22311457024], "code_commune_insee": "01451"}, "geometry": {"type": "Point", "coordinates": [5.22311457024, 46.2508236356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a7607d08e2b51ce471e1218630cb455fc895b8", "fields": {"nom_de_la_commune": "AUBIGNY EN LAONNOIS", "libell_d_acheminement": "AUBIGNY EN LAONNOIS", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02033"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6713f80806aac71f4d4b898aedae195813f3934", "fields": {"nom_de_la_commune": "BARZY EN THIERACHE", "libell_d_acheminement": "BARZY EN THIERACHE", "code_postal": "02170", "coordonnees_gps": [50.0019463297, 3.79418155637], "code_commune_insee": "02050"}, "geometry": {"type": "Point", "coordinates": [3.79418155637, 50.0019463297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "908b35408a6f1e4acfa1a8e50d753fb52ca76187", "fields": {"nom_de_la_commune": "AUDIGNICOURT", "libell_d_acheminement": "AUDIGNICOURT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02034"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e10c6fe2df2c40009d6e4de85f22595326bfa09", "fields": {"nom_de_la_commune": "AZY SUR MARNE", "libell_d_acheminement": "AZY SUR MARNE", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02042"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9731150abecdc118f341dd78517544d30a144b0b", "fields": {"nom_de_la_commune": "BARENTON CEL", "libell_d_acheminement": "BARENTON CEL", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02047"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e7dd7b922e0ece5a98e1ac4759ec2fd2d7117e3", "fields": {"nom_de_la_commune": "AUDIGNY", "libell_d_acheminement": "AUDIGNY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02035"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f59c1743a28270aee2f613c0027b1b895aa10ab9", "fields": {"nom_de_la_commune": "BEAUVOIS EN VERMANDOIS", "libell_d_acheminement": "BEAUVOIS EN VERMANDOIS", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02060"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eb1e857f427a62e11657a2680ecb644fd32838a", "fields": {"nom_de_la_commune": "BOSMONT SUR SERRE", "libell_d_acheminement": "BOSMONT SUR SERRE", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02101"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97648c95b6cf408be020b4f4fdb4f4032e03b1e6", "fields": {"nom_de_la_commune": "BESNY ET LOIZY", "libell_d_acheminement": "BESNY ET LOIZY", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02080"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab313a327e2a2fe838b9b3efbedcbfa88ae85552", "fields": {"nom_de_la_commune": "BLERANCOURT", "libell_d_acheminement": "BLERANCOURT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02093"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0be7495e0663d52a081b58e662c6b59d97994eb", "fields": {"nom_de_la_commune": "BEAURIEUX", "libell_d_acheminement": "BEAURIEUX", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02058"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6535a211cda546252af1b118d75fcd986ce94425", "fields": {"nom_de_la_commune": "BESMONT", "libell_d_acheminement": "BESMONT", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02079"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d476155d4dd75b8c2c8a3aa2dfde85b2ce245aed", "fields": {"nom_de_la_commune": "BLESMES", "libell_d_acheminement": "BLESMES", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02094"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82898637f0cb63d48ac51d4d48b11055c271c5ca", "fields": {"nom_de_la_commune": "BERNOT", "libell_d_acheminement": "BERNOT", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02070"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c14d4d61e09b0d757e797c318b24486d161845", "fields": {"nom_de_la_commune": "BELLEU", "libell_d_acheminement": "BELLEU", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02064"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce10d396dc060500630f0d8d0be01a60726a920", "fields": {"nom_de_la_commune": "BOUE", "libell_d_acheminement": "BOUE", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02103"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5282059f563bd4dd2603f0bc8511b6d2467c6e87", "fields": {"nom_de_la_commune": "COLLIGIS CRANDELAIN", "libell_d_acheminement": "COLLIGIS CRANDELAIN", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02205"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f65a3c84dd40f968a1feb6360e05ab878650212d", "fields": {"nom_de_la_commune": "CHERMIZY AILLES", "libell_d_acheminement": "CHERMIZY AILLES", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02178"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f14477717ac159bb4cba533f93f4a834ee35711", "fields": {"nom_de_la_commune": "CLAIRFONTAINE", "libell_d_acheminement": "CLAIRFONTAINE", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02197"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e869c458b3189a86d5ea04caefd2271f29bcc8c5", "fields": {"nom_de_la_commune": "CHIVRES VAL", "libell_d_acheminement": "CHIVRES VAL", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02190"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce13c3a9227ad1736b552c26131a1b7c37cdebc", "fields": {"nom_de_la_commune": "COMMENCHON", "libell_d_acheminement": "COMMENCHON", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02207"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21e61f195f2c43d171b54d2a37d2dcfb3934765d", "fields": {"nom_de_la_commune": "CHEVENNES", "libell_d_acheminement": "CHEVENNES", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02182"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7875fbc369f55b9f7b22ccada6361df91740adc3", "fields": {"nom_de_la_commune": "COLONFAY", "libell_d_acheminement": "COLONFAY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02206"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f206cb16bd97448cc61fbd242dbea2249ec8313", "fields": {"nom_de_la_commune": "CHIERRY", "libell_d_acheminement": "CHIERRY", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02187"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b21dd1d27ffbebce4de91716fae92d8ca1a0ef5", "fields": {"nom_de_la_commune": "COULONGES COHAN", "libell_d_acheminement": "COULONGES COHAN", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02220"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc2706a0a041db0d2a2586cc033db8a5444e9e9", "fields": {"nom_de_la_commune": "CUISY EN ALMONT", "libell_d_acheminement": "CUISY EN ALMONT", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02253"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96cd37ff0eed3d7ce9c34024ecfd57c3fd5a5390", "fields": {"nom_de_la_commune": "CRAMAILLE", "libell_d_acheminement": "CRAMAILLE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02233"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e87f6ac65f95a3eb7be24e09b3b64f96e7667f4", "fields": {"nom_de_la_commune": "CUIRIEUX", "libell_d_acheminement": "CUIRIEUX", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02248"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8582adb5498159dbbe217db4f9530907df670b62", "fields": {"nom_de_la_commune": "DOLIGNON", "libell_d_acheminement": "DOLIGNON", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02266"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9e5c9b15af8edc52d856eff17ed6aa2b8c94d3", "fields": {"nom_de_la_commune": "CRAONNE", "libell_d_acheminement": "CRAONNE", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02234"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00084384b65e0cf78ddd02306c7ab90cb3b30492", "fields": {"nom_de_la_commune": "DHUIZEL", "libell_d_acheminement": "DHUIZEL", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02263"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7972318bb71775399aa40f4637f5c698fe80fb4", "fields": {"nom_de_la_commune": "DOMPTIN", "libell_d_acheminement": "DOMPTIN", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02268"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5eeb3c55697fc57bd7f11cf1721f547a89715f0", "fields": {"nom_de_la_commune": "DOHIS", "libell_d_acheminement": "DOHIS", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02265"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a564e2bc242c605c89ce94b99b4feeb00e163275", "fields": {"nom_de_la_commune": "DERCY", "libell_d_acheminement": "DERCY", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02261"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0d38486ce804695529505949490e3ff6f6cbb1f", "fields": {"nom_de_la_commune": "FLAVIGNY LE GRAND ET BEAURAIN", "libell_d_acheminement": "FLAVIGNY LE GRAND ET BEAURAIN", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02313"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f08087225997532798491a4a0a042cdc14eba0", "fields": {"nom_de_la_commune": "FONTAINE LES VERVINS", "libell_d_acheminement": "FONTAINE LES VERVINS", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02321"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87cf9a7bc7a01fb6736e6c1e2f403d41c06389b0", "fields": {"nom_de_la_commune": "ETAMPES SUR MARNE", "libell_d_acheminement": "ETAMPES SUR MARNE", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02292"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f69c05fe02d055992dd97d58beb83367b3283d", "fields": {"nom_de_la_commune": "FAVEROLLES", "libell_d_acheminement": "FAVEROLLES", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02302"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5c5fd8255bf75d182055f08db1a6a5b33e49127", "fields": {"nom_de_la_commune": "ETREPILLY", "libell_d_acheminement": "ETREPILLY", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02297"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f248f051f0271cb4bb5dbcfbab7ef7db5d9e9b5", "fields": {"nom_de_la_commune": "LA FERE", "libell_d_acheminement": "LA FERE", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02304"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3722d7398523afcd1dde31ef79036ff38b94a036", "fields": {"nom_de_la_commune": "EPIEDS", "libell_d_acheminement": "EPIEDS", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02280"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d14b8019bad1a749dabf6f95dda76d71e8fea7a", "fields": {"nom_de_la_commune": "EPARCY", "libell_d_acheminement": "EPARCY", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02278"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a816093035eb0e81004e4e9467d23cf18fa3de19", "fields": {"nom_de_la_commune": "FAYET", "libell_d_acheminement": "FAYET", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02303"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51648ec277be327ec1f0afd4af761bdc0444a31f", "fields": {"nom_de_la_commune": "GOUDELANCOURT LES BERRIEUX", "libell_d_acheminement": "GOUDELANCOURT LES BERRIEUX", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02349"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7bdd2dd60f905b157432f87cfe2b2e05d2eb6f2", "fields": {"nom_de_la_commune": "FRESNES EN TARDENOIS", "libell_d_acheminement": "FRESNES EN TARDENOIS", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02332"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64c82e51ecee62b69aae92df4e6c2509fffc9503", "fields": {"nom_de_la_commune": "GRANDLUP ET FAY", "libell_d_acheminement": "GRANDLUP ET FAY", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02353"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139890dfe38ce19d68de8899231cafe7cb3152f8", "fields": {"nom_de_la_commune": "FRANQUEVILLE", "libell_d_acheminement": "FRANQUEVILLE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02331"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbc1432b779304619986f23e2adc3bae426bf09", "fields": {"nom_de_la_commune": "GROUGIS", "libell_d_acheminement": "GROUGIS", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02358"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3ba45d3f07bf42c9022fa22fdd0af8d565ea294", "fields": {"nom_de_la_commune": "FRESNES", "libell_d_acheminement": "FRESNES", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02333"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b18e41e52cb3457459ca5eb1c9069a14c683dd9", "fields": {"nom_de_la_commune": "FOSSOY", "libell_d_acheminement": "FOSSOY", "code_postal": "02650", "coordonnees_gps": [49.0487416682, 3.50137456467], "code_commune_insee": "02328"}, "geometry": {"type": "Point", "coordinates": [3.50137456467, 49.0487416682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "313161d3bc57172f4e7d1dd2b497c847c5c97c05", "fields": {"nom_de_la_commune": "ST ANDRE D EMBRUN", "libell_d_acheminement": "ST ANDRE D EMBRUN", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05128"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4315dd9f38e789114d57ef4a0e925dde6e8b08ac", "fields": {"nom_de_la_commune": "LA ROCHE DE RAME", "libell_d_acheminement": "LA ROCHE DE RAME", "code_postal": "05310", "coordonnees_gps": [44.7404687507, 6.51315581075], "code_commune_insee": "05122"}, "geometry": {"type": "Point", "coordinates": [6.51315581075, 44.7404687507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5536a290b4970df6f9da4b45eba18822117392f3", "fields": {"nom_de_la_commune": "LA HAUTE BEAUME", "libell_d_acheminement": "LA HAUTE BEAUME", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05066"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a54a23a0e6b11a83a9e205481dacc1aa1afa91a", "fields": {"nom_de_la_commune": "ROCHEBRUNE", "libell_d_acheminement": "ROCHEBRUNE", "code_postal": "05190", "coordonnees_gps": [44.4605179001, 6.21963036357], "code_commune_insee": "05121"}, "geometry": {"type": "Point", "coordinates": [6.21963036357, 44.4605179001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eab2962283def809d52a0efb57d481e9068c167", "fields": {"nom_de_la_commune": "LA GRAVE", "libell_d_acheminement": "LA GRAVE", "code_postal": "05320", "coordonnees_gps": [45.0603930366, 6.28395609682], "code_commune_insee": "05063"}, "geometry": {"type": "Point", "coordinates": [6.28395609682, 45.0603930366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aa6d27b9331820da30a4e2eeb23f39ab6a5d837", "fields": {"nom_de_la_commune": "ORCIERES", "libell_d_acheminement": "ORCIERES", "code_postal": "05170", "coordonnees_gps": [44.6838701785, 6.34860583609], "code_commune_insee": "05096"}, "geometry": {"type": "Point", "coordinates": [6.34860583609, 44.6838701785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab4d445909ad085c1990c1f2a4bac9cb6d46171", "fields": {"nom_de_la_commune": "ROUSSET", "libell_d_acheminement": "ROUSSET", "code_postal": "05190", "coordonnees_gps": [44.4605179001, 6.21963036357], "code_commune_insee": "05127"}, "geometry": {"type": "Point", "coordinates": [6.21963036357, 44.4605179001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c0e4225b2b4408eb1ca42312b04d4930845d3f3", "fields": {"nom_de_la_commune": "REOTIER", "libell_d_acheminement": "REOTIER", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05116"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1339d41e2ee52d3beb3258fc982bbf9d79cf90e5", "fields": {"nom_de_la_commune": "GAP", "libell_d_acheminement": "GAP", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05061"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893475f298e63794d5910f039c6454551f0d35d4", "fields": {"nom_de_la_commune": "VILLAR ST PANCRACE", "libell_d_acheminement": "VILLAR ST PANCRACE", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05183"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa68bfc0df9b509138e3ba0d0bf51eef4c58d2f0", "fields": {"nom_de_la_commune": "LES VIGNEAUX", "libell_d_acheminement": "LES VIGNEAUX", "code_postal": "05120", "coordonnees_gps": [44.8094841001, 6.52475602144], "code_commune_insee": "05180"}, "geometry": {"type": "Point", "coordinates": [6.52475602144, 44.8094841001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65d411f5867123c39c1d5b9a9a5d54a194bb87ed", "fields": {"nom_de_la_commune": "TRESCLEOUX", "libell_d_acheminement": "TRESCLEOUX", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05172"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84f334d4cf86038b6173a5968731b603acb4f278", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05156"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b11e2966c88569999f26da9235f334237772d5", "fields": {"nom_de_la_commune": "SAVOURNON", "libell_d_acheminement": "SAVOURNON", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05165"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48fa85a32387c8c6f18eeae9d10d4ac4058be6df", "fields": {"nom_de_la_commune": "VITROLLES", "libell_d_acheminement": "VITROLLES", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "05184"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb606fa8cc21a8227bd4c2710b1f1eed0c711f3b", "fields": {"nom_de_la_commune": "SALERANS", "libell_d_acheminement": "SALERANS", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05160"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5f199a75cd70da2d0a9083dfba82ca685576b8", "fields": {"nom_de_la_commune": "VALSERRES", "libell_d_acheminement": "VALSERRES", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05176"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6fa3074f85a0ecbb854894a921492efcd017b61", "fields": {"nom_de_la_commune": "ST VERAN", "libell_d_acheminement": "ST VERAN", "code_postal": "05350", "coordonnees_gps": [44.7398415746, 6.81322835157], "code_commune_insee": "05157"}, "geometry": {"type": "Point", "coordinates": [6.81322835157, 44.7398415746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ec169ca1eb5c8c74d5c4068e402aeced5546d8", "fields": {"nom_de_la_commune": "LAURAC EN VIVARAIS", "libell_d_acheminement": "LAURAC EN VIVARAIS", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07134"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0934ad07abbbfed8c6fb21781fc0e4fdd4e44e9c", "fields": {"nom_de_la_commune": "ORGNAC L AVEN", "libell_d_acheminement": "ORGNAC L AVEN", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07168"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d05661db6b01e9cb6c94ee77a9e32612962ab4ab", "fields": {"nom_de_la_commune": "LAMASTRE", "libell_d_acheminement": "LAMASTRE", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07129"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819558554c0c21e483a30b42832b47e1b83cf24c", "fields": {"nom_de_la_commune": "LESPERON", "libell_d_acheminement": "LESPERON", "code_postal": "07660", "coordonnees_gps": [44.7442437904, 3.96612267171], "code_commune_insee": "07142"}, "geometry": {"type": "Point", "coordinates": [3.96612267171, 44.7442437904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2613c4958ae5ba3b99d3b99d16f1e8e81eea12ae", "fields": {"nom_de_la_commune": "NONIERES", "libell_d_acheminement": "NONIERES", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07165"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c835cb3c1e0bca7b0f79fddd836712bc3ac9ed5c", "fields": {"nom_de_la_commune": "LAVIOLLE", "libell_d_acheminement": "LAVIOLLE", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07139"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "775162f8dca26316bf4571ec2f9bc472bee0c9b7", "fields": {"nom_de_la_commune": "MIRABEL", "libell_d_acheminement": "MIRABEL", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07159"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dd4b7daf32bbd60105aaa2b8b654a378c1f100f", "fields": {"nom_de_la_commune": "PRADES", "libell_d_acheminement": "PRADES", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07182"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6fce34276743f00fa95ae1311640eef37b2df1", "fields": {"nom_de_la_commune": "PRUNET", "libell_d_acheminement": "PRUNET", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07187"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d570fc424dff66f0bc9e1d8885c5ee7b016fd499", "fields": {"code_postal": "08250", "code_commune_insee": "08333", "libell_d_acheminement": "OLIZY PRIMAT", "ligne_5": "PRIMAT", "nom_de_la_commune": "OLIZY PRIMAT", "coordonnees_gps": [49.3052152829, 4.87924744188]}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfac4bfc047a84f3169cc105d25868a89f826290", "fields": {"nom_de_la_commune": "PUILLY ET CHARBEAUX", "libell_d_acheminement": "PUILLY ET CHARBEAUX", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08347"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54571eea9c7926d68fe206be5c78cde2aba9d598", "fields": {"nom_de_la_commune": "REMILLY LES POTHEES", "libell_d_acheminement": "REMILLY LES POTHEES", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08358"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b170b94d193d95e414ac97520879d41a12f3ca29", "fields": {"nom_de_la_commune": "REMILLY AILLICOURT", "libell_d_acheminement": "REMILLY AILLICOURT", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08357"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b23615b89cc9c825aea86032919484e6bc2637c", "fields": {"nom_de_la_commune": "NOVY CHEVRIERES", "libell_d_acheminement": "NOVY CHEVRIERES", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08330"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5d56ee0994ff4906b7c7118ab27b004c7576567", "fields": {"nom_de_la_commune": "POURU ST REMY", "libell_d_acheminement": "POURU ST REMY", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08343"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebf9a7981587288ccad5e6a96b3245afada8b5ac", "fields": {"nom_de_la_commune": "PERTHES", "libell_d_acheminement": "PERTHES", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08339"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "158c8e79500a7ef2c129b432ed4b0c5dcd4a8646", "fields": {"nom_de_la_commune": "RENWEZ", "libell_d_acheminement": "RENWEZ", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08361"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319786d973ff44ef8f497dfc502dbb111e25eca9", "fields": {"nom_de_la_commune": "SIGY", "libell_d_acheminement": "SIGY", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77452"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfeca90ce092522325fdb5db7cddb3878557eb5d", "fields": {"nom_de_la_commune": "SOIGNOLLES EN BRIE", "libell_d_acheminement": "SOIGNOLLES EN BRIE", "code_postal": "77111", "coordonnees_gps": [48.6502963027, 2.71437354828], "code_commune_insee": "77455"}, "geometry": {"type": "Point", "coordinates": [2.71437354828, 48.6502963027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dcaf8db7174429633f07ede1d8e55ee6052f9a7", "fields": {"nom_de_la_commune": "SOISY BOUY", "libell_d_acheminement": "SOISY BOUY", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77456"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c985cad0e29c8009e80a90a19cb6a11dd732df7a", "fields": {"nom_de_la_commune": "SOUPPES SUR LOING", "libell_d_acheminement": "SOUPPES SUR LOING", "code_postal": "77460", "coordonnees_gps": [48.1889258767, 2.77893143311], "code_commune_insee": "77458"}, "geometry": {"type": "Point", "coordinates": [2.77893143311, 48.1889258767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c07261fa3ff3599075090bb1a730b8014ea7e4", "fields": {"nom_de_la_commune": "VAIRES SUR MARNE", "libell_d_acheminement": "VAIRES SUR MARNE", "code_postal": "77360", "coordonnees_gps": [48.870149545, 2.63599296332], "code_commune_insee": "77479"}, "geometry": {"type": "Point", "coordinates": [2.63599296332, 48.870149545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf072620f505b33cf7994d69a34dbeef1c9c2e30", "fields": {"nom_de_la_commune": "VALENCE EN BRIE", "libell_d_acheminement": "VALENCE EN BRIE", "code_postal": "77830", "coordonnees_gps": [48.4598569753, 2.90486661459], "code_commune_insee": "77480"}, "geometry": {"type": "Point", "coordinates": [2.90486661459, 48.4598569753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7a08e5c8a224d5033f30b3eb0162fa76d2867ba", "fields": {"nom_de_la_commune": "VENEUX LES SABLONS", "libell_d_acheminement": "VENEUX LES SABLONS", "code_postal": "77250", "coordonnees_gps": [48.3334508388, 2.82847916513], "code_commune_insee": "77491"}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a71c9becc4183457951a900747697cf1628a6c2", "fields": {"nom_de_la_commune": "VERNEUIL L ETANG", "libell_d_acheminement": "VERNEUIL L ETANG", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77493"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc8613ceb3c79b72892b164b63f9b863e0f3de5", "fields": {"nom_de_la_commune": "VIEUX CHAMPAGNE", "libell_d_acheminement": "VIEUX CHAMPAGNE", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77496"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a804921181f0d9f9eeb2246da3339f68246050c1", "fields": {"nom_de_la_commune": "VILLEBEON", "libell_d_acheminement": "VILLEBEON", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77500"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8342a6da9b9145b0139e877020616737e59c78f6", "fields": {"nom_de_la_commune": "VILLENEUVE LES BORDES", "libell_d_acheminement": "VILLENEUVE LES BORDES", "code_postal": "77154", "coordonnees_gps": [48.4891565609, 3.02294060118], "code_commune_insee": "77509"}, "geometry": {"type": "Point", "coordinates": [3.02294060118, 48.4891565609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "271f7c707ca134d7c7aebb15915f885be2d4bcf9", "fields": {"nom_de_la_commune": "VILLIERS SUR MORIN", "libell_d_acheminement": "VILLIERS SUR MORIN", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77521"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33a85bf3f031ed87000d31c8ca30982abba56a41", "fields": {"nom_de_la_commune": "VOULANGIS", "libell_d_acheminement": "VOULANGIS", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77529"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd450cd94aebf99d854636bebd037ac21a35a4c", "fields": {"nom_de_la_commune": "VULAINES LES PROVINS", "libell_d_acheminement": "VULAINES LES PROVINS", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77532"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa96d08b0ae577e39c0a53ab14a50c491306d026", "fields": {"nom_de_la_commune": "ANDELU", "libell_d_acheminement": "ANDELU", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78013"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e57b39f568d1c139b3af98b8e3e4bf21f9639f", "fields": {"code_postal": "78570", "code_commune_insee": "78015", "libell_d_acheminement": "ANDRESY", "ligne_5": "DENOUVAL", "nom_de_la_commune": "ANDRESY", "coordonnees_gps": [48.9796109181, 2.04393218537]}, "geometry": {"type": "Point", "coordinates": [2.04393218537, 48.9796109181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e85731cdfb901d68fa9868d68ae086be90251f3", "fields": {"nom_de_la_commune": "AUBERGENVILLE", "libell_d_acheminement": "AUBERGENVILLE", "code_postal": "78410", "coordonnees_gps": [48.9601241693, 1.86465256885], "code_commune_insee": "78029"}, "geometry": {"type": "Point", "coordinates": [1.86465256885, 48.9601241693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a80557e98ca803659f741b5687901f9f5f67bb", "fields": {"nom_de_la_commune": "AUFFARGIS", "libell_d_acheminement": "AUFFARGIS", "code_postal": "78610", "coordonnees_gps": [48.7133396179, 1.81485270271], "code_commune_insee": "78030"}, "geometry": {"type": "Point", "coordinates": [1.81485270271, 48.7133396179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfc5004f7b7f8429c1f380c19e850acfe3a2f940", "fields": {"nom_de_la_commune": "AUTEUIL", "libell_d_acheminement": "AUTEUIL", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78034"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e271a408f16c65f16227693db53a6dabeaadf5ee", "fields": {"nom_de_la_commune": "AUTOUILLET", "libell_d_acheminement": "AUTOUILLET", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78036"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be3239a7b383e125c8e01e272274890453ea81d8", "fields": {"nom_de_la_commune": "BAZAINVILLE", "libell_d_acheminement": "BAZAINVILLE", "code_postal": "78550", "coordonnees_gps": [48.8059624153, 1.62530918633], "code_commune_insee": "78048"}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "685df2303a2aafefb41a9d64bfc08ffe1d95e51a", "fields": {"nom_de_la_commune": "BEHOUST", "libell_d_acheminement": "BEHOUST", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78053"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d51b527e8fdad01cb2892a58032de690956c5a", "fields": {"nom_de_la_commune": "BLARU", "libell_d_acheminement": "BLARU", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78068"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4666bb3b620b5ac7faac81638867884cbdfbaa3", "fields": {"nom_de_la_commune": "BOIS D ARCY", "libell_d_acheminement": "BOIS D ARCY", "code_postal": "78390", "coordonnees_gps": [48.8043941773, 2.01866204781], "code_commune_insee": "78073"}, "geometry": {"type": "Point", "coordinates": [2.01866204781, 48.8043941773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09eb993b68d39f0f2e81461f498f1cb27a74fb2d", "fields": {"nom_de_la_commune": "BONNELLES", "libell_d_acheminement": "BONNELLES", "code_postal": "78830", "coordonnees_gps": [48.6221711105, 1.99864954313], "code_commune_insee": "78087"}, "geometry": {"type": "Point", "coordinates": [1.99864954313, 48.6221711105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f190de3b8c0fe7ffff9c06de4a34a4a29d80f18", "fields": {"nom_de_la_commune": "BOUAFLE", "libell_d_acheminement": "BOUAFLE", "code_postal": "78410", "coordonnees_gps": [48.9601241693, 1.86465256885], "code_commune_insee": "78090"}, "geometry": {"type": "Point", "coordinates": [1.86465256885, 48.9601241693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e1606900de82b6448d92f77fea00d1702176fe", "fields": {"nom_de_la_commune": "CARRIERES SOUS POISSY", "libell_d_acheminement": "CARRIERES SOUS POISSY", "code_postal": "78955", "coordonnees_gps": [48.9453564407, 2.02870519723], "code_commune_insee": "78123"}, "geometry": {"type": "Point", "coordinates": [2.02870519723, 48.9453564407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee5b150f62ad542db038c9ea774c22bebe32c764", "fields": {"nom_de_la_commune": "CHATEAUFORT", "libell_d_acheminement": "CHATEAUFORT", "code_postal": "78117", "coordonnees_gps": [48.7426119196, 2.10563873194], "code_commune_insee": "78143"}, "geometry": {"type": "Point", "coordinates": [2.10563873194, 48.7426119196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e652c8c10344481bb9ce4ba829246ef5e803cc77", "fields": {"nom_de_la_commune": "CHAUFOUR LES BONNIERES", "libell_d_acheminement": "CHAUFOUR LES BONNIERES", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78147"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3680e1ebb9dec1ae55c7087e48dd369611d5e47b", "fields": {"nom_de_la_commune": "LES CLAYES SOUS BOIS", "libell_d_acheminement": "LES CLAYES SOUS BOIS", "code_postal": "78340", "coordonnees_gps": [48.8190038285, 1.98403362537], "code_commune_insee": "78165"}, "geometry": {"type": "Point", "coordinates": [1.98403362537, 48.8190038285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82811a3f12d8aa658924c5058460681f7c9e0aa4", "fields": {"nom_de_la_commune": "COIGNIERES", "libell_d_acheminement": "COIGNIERES", "code_postal": "78310", "coordonnees_gps": [48.7604855324, 1.91898209487], "code_commune_insee": "78168"}, "geometry": {"type": "Point", "coordinates": [1.91898209487, 48.7604855324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06565cf99d93e0e26a7d540dca412513537fdfa1", "fields": {"nom_de_la_commune": "DAMPIERRE EN YVELINES", "libell_d_acheminement": "DAMPIERRE EN YVELINES", "code_postal": "78720", "coordonnees_gps": [48.6724843894, 1.96251286173], "code_commune_insee": "78193"}, "geometry": {"type": "Point", "coordinates": [1.96251286173, 48.6724843894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e89515ce93438ed35127af61c1b5c55237b1063d", "fields": {"nom_de_la_commune": "DANNEMARIE", "libell_d_acheminement": "DANNEMARIE", "code_postal": "78550", "coordonnees_gps": [48.8059624153, 1.62530918633], "code_commune_insee": "78194"}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd54c7274eeba3d545f28bdf8d07907e6f73fc5", "fields": {"nom_de_la_commune": "FAVRIEUX", "libell_d_acheminement": "FAVRIEUX", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78231"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0589e82160ff592093a2ec944e2c5433ccf2f62c", "fields": {"nom_de_la_commune": "FLACOURT", "libell_d_acheminement": "FLACOURT", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78234"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50acd79cba5fad0321b413bd6ec4c12635b234c0", "fields": {"nom_de_la_commune": "GALLUIS", "libell_d_acheminement": "GALLUIS", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78262"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1d7d35b978f8dae1b89c49691721fd4b9f7159d", "fields": {"nom_de_la_commune": "GARANCIERES", "libell_d_acheminement": "GARANCIERES", "code_postal": "78890", "coordonnees_gps": [48.8233853015, 1.75829198183], "code_commune_insee": "78265"}, "geometry": {"type": "Point", "coordinates": [1.75829198183, 48.8233853015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a8f55a9f1ce82779fcc4c3e0b9d03af4b6b5902", "fields": {"nom_de_la_commune": "GRESSEY", "libell_d_acheminement": "GRESSEY", "code_postal": "78550", "coordonnees_gps": [48.8059624153, 1.62530918633], "code_commune_insee": "78285"}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54373b738ca7168e5f03008e85a48a10e7ccff96", "fields": {"nom_de_la_commune": "GUERVILLE", "libell_d_acheminement": "GUERVILLE", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78291"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f963ce6fa85d33ba382ca327323050b2cd0da23a", "fields": {"code_postal": "78280", "code_commune_insee": "78297", "libell_d_acheminement": "GUYANCOURT", "ligne_5": "VILLAROY", "nom_de_la_commune": "GUYANCOURT", "coordonnees_gps": [48.7729816592, 2.07605378449]}, "geometry": {"type": "Point", "coordinates": [2.07605378449, 48.7729816592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b03909467e102d64b1390f48b771d5d84485e92", "fields": {"nom_de_la_commune": "HARGEVILLE", "libell_d_acheminement": "HARGEVILLE", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78300"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8b200ca72866b529e7626a29a71beca01e4330", "fields": {"nom_de_la_commune": "JOUY MAUVOISIN", "libell_d_acheminement": "JOUY MAUVOISIN", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78324"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d58a8d204850454f99027de839d82149d04f0fd", "fields": {"nom_de_la_commune": "JUZIERS", "libell_d_acheminement": "JUZIERS", "code_postal": "78820", "coordonnees_gps": [49.0006712804, 1.84049263155], "code_commune_insee": "78327"}, "geometry": {"type": "Point", "coordinates": [1.84049263155, 49.0006712804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e7bbb4a0f2940b37d2ba73d5a09c21bc38dbb65", "fields": {"nom_de_la_commune": "LAINVILLE EN VEXIN", "libell_d_acheminement": "LAINVILLE EN VEXIN", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78329"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bac52909833e6e456cd504239a9d52676c3224e7", "fields": {"nom_de_la_commune": "MANTES LA VILLE", "libell_d_acheminement": "MANTES LA VILLE", "code_postal": "78711", "coordonnees_gps": [48.9750839165, 1.71186276145], "code_commune_insee": "78362"}, "geometry": {"type": "Point", "coordinates": [1.71186276145, 48.9750839165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d249bd96f45882225a54023ae4505729f6d61cac", "fields": {"nom_de_la_commune": "MAREIL LE GUYON", "libell_d_acheminement": "MAREIL LE GUYON", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78366"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "131a15686f3384a4a58b908724a7d474cef7589b", "fields": {"nom_de_la_commune": "LE MESNIL LE ROI", "libell_d_acheminement": "LE MESNIL LE ROI", "code_postal": "78600", "coordonnees_gps": [48.9430101305, 2.14143556123], "code_commune_insee": "78396"}, "geometry": {"type": "Point", "coordinates": [2.14143556123, 48.9430101305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d5bee88c7e60beb73a23fe6d7c0900a4e032a2", "fields": {"code_postal": "78600", "code_commune_insee": "78396", "libell_d_acheminement": "LE MESNIL LE ROI", "ligne_5": "CARRIERES SOUS BOIS", "nom_de_la_commune": "LE MESNIL LE ROI", "coordonnees_gps": [48.9430101305, 2.14143556123]}, "geometry": {"type": "Point", "coordinates": [2.14143556123, 48.9430101305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a17e6956662b2cada03555ad8cfca60bc900963", "fields": {"nom_de_la_commune": "LES MESNULS", "libell_d_acheminement": "LES MESNULS", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78398"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19742f860517051b79931b528616291798338b57", "fields": {"nom_de_la_commune": "MILON LA CHAPELLE", "libell_d_acheminement": "MILON LA CHAPELLE", "code_postal": "78470", "coordonnees_gps": [48.7175747571, 2.05026286373], "code_commune_insee": "78406"}, "geometry": {"type": "Point", "coordinates": [2.05026286373, 48.7175747571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e216aafeea48b4bc1ee419e94662d80bb700dfb", "fields": {"nom_de_la_commune": "MITTAINVILLE", "libell_d_acheminement": "MITTAINVILLE", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78407"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ecdbbfbbcfd85487fde2598dd02583b6eae240a", "fields": {"nom_de_la_commune": "MONTAINVILLE", "libell_d_acheminement": "MONTAINVILLE", "code_postal": "78124", "coordonnees_gps": [48.884244051, 1.86268946991], "code_commune_insee": "78415"}, "geometry": {"type": "Point", "coordinates": [1.86268946991, 48.884244051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc17d2d03427a6d46af2061afe5c115d104567f", "fields": {"nom_de_la_commune": "MORAINVILLIERS", "libell_d_acheminement": "MORAINVILLIERS", "code_postal": "78630", "coordonnees_gps": [48.9218149018, 1.96212376753], "code_commune_insee": "78431"}, "geometry": {"type": "Point", "coordinates": [1.96212376753, 48.9218149018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c94913ce86673c293ca03d86526f1958eacb8c5", "fields": {"nom_de_la_commune": "NEAUPHLE LE VIEUX", "libell_d_acheminement": "NEAUPHLE LE VIEUX", "code_postal": "78640", "coordonnees_gps": [48.8210314117, 1.88134330227], "code_commune_insee": "78443"}, "geometry": {"type": "Point", "coordinates": [1.88134330227, 48.8210314117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcf4a19959b61979e2c5e2c8de7f2fa91be5a8ad", "fields": {"nom_de_la_commune": "NEAUPHLETTE", "libell_d_acheminement": "NEAUPHLETTE", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78444"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fbc5b031fc6956185121745e669b0b6a56e3279", "fields": {"nom_de_la_commune": "ORPHIN", "libell_d_acheminement": "ORPHIN", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78470"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6f8dd1c858c8857c4fb5ac5af07e2fabeda844", "fields": {"nom_de_la_commune": "LE PERRAY EN YVELINES", "libell_d_acheminement": "LE PERRAY EN YVELINES", "code_postal": "78610", "coordonnees_gps": [48.7133396179, 1.81485270271], "code_commune_insee": "78486"}, "geometry": {"type": "Point", "coordinates": [1.81485270271, 48.7133396179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d65f9491e4492131b71b7570c34ea6e35c27b119", "fields": {"nom_de_la_commune": "POISSY", "libell_d_acheminement": "POISSY", "code_postal": "78300", "coordonnees_gps": [48.9238513521, 2.02821434005], "code_commune_insee": "78498"}, "geometry": {"type": "Point", "coordinates": [2.02821434005, 48.9238513521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fd376d6b364a6fecb12ffc07aa53b2a34327d6", "fields": {"nom_de_la_commune": "PORT VILLEZ", "libell_d_acheminement": "PORT VILLEZ", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78503"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8278d63097e056c07586a6029ea309c0b096db0a", "fields": {"code_postal": "78660", "code_commune_insee": "78506", "libell_d_acheminement": "PRUNAY EN YVELINES", "ligne_5": "CRACHES", "nom_de_la_commune": "PRUNAY EN YVELINES", "coordonnees_gps": [48.5043951327, 1.85801812038]}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d58fe253bb2a882d3127fbeffd287ef2c0b505d6", "fields": {"nom_de_la_commune": "SAILLY", "libell_d_acheminement": "SAILLY", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78536"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3c9876228554aeb400612f72b91b8daebc2b736", "fields": {"nom_de_la_commune": "TACOIGNIERES", "libell_d_acheminement": "TACOIGNIERES", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78605"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30dd6cb714d435efaab90203695f7aba6cc5e4fb", "fields": {"nom_de_la_commune": "LE TARTRE GAUDRAN", "libell_d_acheminement": "LE TARTRE GAUDRAN", "code_postal": "78113", "coordonnees_gps": [48.7269719682, 1.6475078387], "code_commune_insee": "78606"}, "geometry": {"type": "Point", "coordinates": [1.6475078387, 48.7269719682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ade4ba0de6533cf380c7677c5fa6733a7f20851", "fields": {"nom_de_la_commune": "TOUSSUS LE NOBLE", "libell_d_acheminement": "TOUSSUS LE NOBLE", "code_postal": "78117", "coordonnees_gps": [48.7426119196, 2.10563873194], "code_commune_insee": "78620"}, "geometry": {"type": "Point", "coordinates": [2.10563873194, 48.7426119196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29d154a7fb514a7af0914a98cfcaa1acba639b41", "fields": {"nom_de_la_commune": "TRIEL SUR SEINE", "libell_d_acheminement": "TRIEL SUR SEINE", "code_postal": "78510", "coordonnees_gps": [48.9781198658, 2.00818427315], "code_commune_insee": "78624"}, "geometry": {"type": "Point", "coordinates": [2.00818427315, 48.9781198658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "557df250294b9b22240f0a9595b774cb84133a41", "fields": {"code_postal": "78510", "code_commune_insee": "78624", "libell_d_acheminement": "TRIEL SUR SEINE", "ligne_5": "L HAUTIL", "nom_de_la_commune": "TRIEL SUR SEINE", "coordonnees_gps": [48.9781198658, 2.00818427315]}, "geometry": {"type": "Point", "coordinates": [2.00818427315, 48.9781198658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3079577866a041e12825f1900c3dd51f6de89df5", "fields": {"nom_de_la_commune": "VAUX SUR SEINE", "libell_d_acheminement": "VAUX SUR SEINE", "code_postal": "78740", "coordonnees_gps": [49.0109765215, 1.96738669464], "code_commune_insee": "78638"}, "geometry": {"type": "Point", "coordinates": [1.96738669464, 49.0109765215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d53123bcfc4deee7f8224adeee26a6c5d35827f2", "fields": {"nom_de_la_commune": "VERNOUILLET", "libell_d_acheminement": "VERNOUILLET", "code_postal": "78540", "coordonnees_gps": [48.9651204678, 1.97419104222], "code_commune_insee": "78643"}, "geometry": {"type": "Point", "coordinates": [1.97419104222, 48.9651204678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89a5221d7dd5cee461ac2b6017b4500706a4e54e", "fields": {"nom_de_la_commune": "VILLETTE", "libell_d_acheminement": "VILLETTE", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78677"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27035ee82b8e4d3b3b83ed70aa98fcca12466776", "fields": {"nom_de_la_commune": "VILLIERS ST FREDERIC", "libell_d_acheminement": "VILLIERS ST FREDERIC", "code_postal": "78640", "coordonnees_gps": [48.8210314117, 1.88134330227], "code_commune_insee": "78683"}, "geometry": {"type": "Point", "coordinates": [1.88134330227, 48.8210314117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d969447ae092335a8655ca653b47cd9987903d", "fields": {"nom_de_la_commune": "VIROFLAY", "libell_d_acheminement": "VIROFLAY", "code_postal": "78220", "coordonnees_gps": [48.8027347247, 2.17103281984], "code_commune_insee": "78686"}, "geometry": {"type": "Point", "coordinates": [2.17103281984, 48.8027347247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14af0a101602622381a1033bb4deb29b77381f3", "fields": {"nom_de_la_commune": "VOISINS LE BRETONNEUX", "libell_d_acheminement": "VOISINS LE BRETONNEUX", "code_postal": "78960", "coordonnees_gps": [48.7588159702, 2.0488584635], "code_commune_insee": "78688"}, "geometry": {"type": "Point", "coordinates": [2.0488584635, 48.7588159702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38897f81eeb38b7a8143c169316deedf74d0bb9", "fields": {"nom_de_la_commune": "ADILLY", "libell_d_acheminement": "ADILLY", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79002"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca7f28b66e1184e35c239252fb692ba3ac3c65a3", "fields": {"nom_de_la_commune": "AIGONNAY", "libell_d_acheminement": "AIGONNAY", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79004"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa24ed626621af80ba9fff6783e661cdf0f7a1cc", "fields": {"code_postal": "79600", "code_commune_insee": "79005", "libell_d_acheminement": "AIRVAULT", "ligne_5": "SOULIEVRES", "nom_de_la_commune": "AIRVAULT", "coordonnees_gps": [46.8218182102, -0.136529587594]}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84ecef6c71eb20ed52a7d920c8d06b3bf1708a64", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "SANZAY", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936ea1aaa17117b07c1076d84c2c780a16d1fc0e", "fields": {"nom_de_la_commune": "AZAY LE BRULE", "libell_d_acheminement": "AZAY LE BRULE", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79024"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6705db04307e1a1cf8ed4e9cfb1b1c42c0bf6cbb", "fields": {"nom_de_la_commune": "BEAULIEU SOUS PARTHENAY", "libell_d_acheminement": "BEAULIEU SOUS PARTHENAY", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79029"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e008ddf58028c1341b1adaf3fd1046c3d069e0", "fields": {"code_postal": "79370", "code_commune_insee": "79030", "libell_d_acheminement": "BEAUSSAIS VITRE", "ligne_5": "VITRE", "nom_de_la_commune": "BEAUSSAIS VITRE", "coordonnees_gps": [46.2791849908, -0.237039794874]}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d351675fd3b2247dfe4c5c0fcc762208c49aff", "fields": {"code_postal": "79360", "code_commune_insee": "79031", "libell_d_acheminement": "BEAUVOIR SUR NIORT", "ligne_5": "LA REVETIZON", "nom_de_la_commune": "BEAUVOIR SUR NIORT", "coordonnees_gps": [46.1718369403, -0.460736148916]}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb9f98bede03f12ff3859de93095397339620025", "fields": {"nom_de_la_commune": "BOUGON", "libell_d_acheminement": "BOUGON", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79042"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ca792062bca5d33a91af133723c61d720712d12", "fields": {"nom_de_la_commune": "LE BOURDET", "libell_d_acheminement": "LE BOURDET", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79046"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e319d843b786e7c4c1212eb3e6d7403407e93eeb", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "TERVES", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1064e21b58b27f3b0c461e5e3ca4f0ce83170f32", "fields": {"nom_de_la_commune": "BRETIGNOLLES", "libell_d_acheminement": "BRETIGNOLLES", "code_postal": "79140", "coordonnees_gps": [46.8536328396, -0.662287760231], "code_commune_insee": "79050"}, "geometry": {"type": "Point", "coordinates": [-0.662287760231, 46.8536328396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f225b5bb39118f3f843d5a25e76f94ecba6af548", "fields": {"nom_de_la_commune": "LE BREUIL BERNARD", "libell_d_acheminement": "LE BREUIL BERNARD", "code_postal": "79320", "coordonnees_gps": [46.7253627429, -0.568110256331], "code_commune_insee": "79051"}, "geometry": {"type": "Point", "coordinates": [-0.568110256331, 46.7253627429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a01371bb959271fb2de19b863e985315aa3c1b8", "fields": {"nom_de_la_commune": "BRIE", "libell_d_acheminement": "BRIE", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79054"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd9836fee605a86050fd0a72eaa0f10396872544", "fields": {"nom_de_la_commune": "BRIEUIL SUR CHIZE", "libell_d_acheminement": "BRIEUIL SUR CHIZE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79055"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "369c9ab5f5a723c6943d3c22bfc7e9d314d731ba", "fields": {"code_postal": "79370", "code_commune_insee": "79061", "libell_d_acheminement": "CELLES SUR BELLE", "ligne_5": "MONTIGNE", "nom_de_la_commune": "CELLES SUR BELLE", "coordonnees_gps": [46.2791849908, -0.237039794874]}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479ef411cbffa6013276029878210100c96c46fb", "fields": {"nom_de_la_commune": "CHAMPDENIERS ST DENIS", "libell_d_acheminement": "CHAMPDENIERS ST DENIS", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79066"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c3a0828e14310e3d4b456317a232f89f12e32a2", "fields": {"code_postal": "79220", "code_commune_insee": "79066", "libell_d_acheminement": "CHAMPDENIERS ST DENIS", "ligne_5": "ST DENIS", "nom_de_la_commune": "CHAMPDENIERS ST DENIS", "coordonnees_gps": [46.4780154702, -0.409601333646]}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "235e14b27ecd2669553f64870484b5ab864f67f8", "fields": {"nom_de_la_commune": "LA CHAPELLE BATON", "libell_d_acheminement": "LA CHAPELLE BATON", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79070"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d110ac8d0b2665f434c0d36e8521212cdd7df33", "fields": {"nom_de_la_commune": "LA CHAPELLE BERTRAND", "libell_d_acheminement": "LA CHAPELLE BERTRAND", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79071"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "705c2046479f3aa27bda61c2f81035ac8063dca5", "fields": {"nom_de_la_commune": "LA CHAPELLE ST ETIENNE", "libell_d_acheminement": "LA CHAPELLE ST ETIENNE", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79075"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34b8cc3ef1e3c61a7677427d62f25c60bb4c5c6b", "fields": {"nom_de_la_commune": "LA CHAPELLE THIREUIL", "libell_d_acheminement": "LA CHAPELLE THIREUIL", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79077"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbbaa5c005c868ab8dfe81bda9e5836e7733e282", "fields": {"nom_de_la_commune": "PRISSE LA CHARRIERE", "libell_d_acheminement": "PRISSE LA CHARRIERE", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79078"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf1d7ee85cf9d8dd44cf4253bc87e31a35c45fb", "fields": {"code_postal": "79700", "code_commune_insee": "79079", "libell_d_acheminement": "MAULEON", "ligne_5": "RORTHAIS", "nom_de_la_commune": "MAULEON", "coordonnees_gps": [46.9364849279, -0.753058283039]}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b7018484680f05ecf4db28899bbf84da4513a4", "fields": {"nom_de_la_commune": "CHATILLON SUR THOUET", "libell_d_acheminement": "CHATILLON SUR THOUET", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79080"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee58c020bd927c638a6770fd93223f234c447abf", "fields": {"nom_de_la_commune": "CHENAY", "libell_d_acheminement": "CHENAY", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79084"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89631472101069fd36429cd86be893a69e500aa7", "fields": {"nom_de_la_commune": "CHERIGNE", "libell_d_acheminement": "CHERIGNE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79085"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0970218274f09a46246bca96c8d8035256515ed", "fields": {"nom_de_la_commune": "CHERVEUX", "libell_d_acheminement": "CHERVEUX", "code_postal": "79410", "coordonnees_gps": [46.3956786662, -0.424997632045], "code_commune_insee": "79086"}, "geometry": {"type": "Point", "coordinates": [-0.424997632045, 46.3956786662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bc7942470fb6d140a573ee9d964d02486124188", "fields": {"nom_de_la_commune": "VAUCELLES ET BEFFECOURT", "libell_d_acheminement": "VAUCELLES ET BEFFECOURT", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02765"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5321d9159919263b4fd410c38a823a2610074f67", "fields": {"nom_de_la_commune": "TORCY EN VALOIS", "libell_d_acheminement": "TORCY EN VALOIS", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02744"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21c0d0a28340650d35ff938af252a8ed419a39dc", "fields": {"nom_de_la_commune": "VAUX ANDIGNY", "libell_d_acheminement": "VAUX ANDIGNY", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02769"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "309ceb88a3c823f8a12ddacecea3edeb7ba49718", "fields": {"nom_de_la_commune": "VADENCOURT", "libell_d_acheminement": "VADENCOURT", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02757"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cb04ecff1724dc2ddb8e5aebc21435ff33479c4", "fields": {"nom_de_la_commune": "LE THUEL", "libell_d_acheminement": "LE THUEL", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02743"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "accda59b81acda2e6aacb5482e4ea931af65b34a", "fields": {"nom_de_la_commune": "TROESNES", "libell_d_acheminement": "TROESNES", "code_postal": "02460", "coordonnees_gps": [49.1801295296, 3.14646603898], "code_commune_insee": "02749"}, "geometry": {"type": "Point", "coordinates": [3.14646603898, 49.1801295296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f72459d838d72ee795e6fbf411be0f6fb706c7", "fields": {"nom_de_la_commune": "VASSOGNE", "libell_d_acheminement": "VASSOGNE", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02764"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66eda156c7dcf33463fe756e1e1a2434b4eaa7eb", "fields": {"code_postal": "06430", "code_commune_insee": "06163", "libell_d_acheminement": "TENDE", "ligne_5": "ST DALMAS DE TENDE", "nom_de_la_commune": "TENDE", "coordonnees_gps": [44.0898751159, 7.57878055901]}, "geometry": {"type": "Point", "coordinates": [7.57878055901, 44.0898751159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84437415b031bb059fd3b476e8700f283135f594", "fields": {"nom_de_la_commune": "CHATEAUNEUF DE VERNOUX", "libell_d_acheminement": "CHATEAUNEUF DE VERNOUX", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07060"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06e0b2c0e33c20221dac8ad16de3a1231b6e3a60", "fields": {"nom_de_la_commune": "ALBA LA ROMAINE", "libell_d_acheminement": "ALBA LA ROMAINE", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07005"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "320f31f4a2dbcca85c047c774e74af2e8a59f75f", "fields": {"nom_de_la_commune": "BOUCIEU LE ROI", "libell_d_acheminement": "BOUCIEU LE ROI", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07040"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e1f3387fca697f935b43379f9d2fd594e4f5fc", "fields": {"nom_de_la_commune": "LES ASSIONS", "libell_d_acheminement": "LES ASSIONS", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07017"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5aae904ac92cb02dc238f96fbcc215aeef7fed", "fields": {"nom_de_la_commune": "LE CHAMBON", "libell_d_acheminement": "LE CHAMBON", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07049"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff4a1132b3a37474af681b4ee5c6454e5052bf9", "fields": {"nom_de_la_commune": "ASPERJOC", "libell_d_acheminement": "ASPERJOC", "code_postal": "07600", "coordonnees_gps": [44.7013043374, 4.34237550127], "code_commune_insee": "07016"}, "geometry": {"type": "Point", "coordinates": [4.34237550127, 44.7013043374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a51f2aae9f62e60e26ae0017714deb6b1de8e69", "fields": {"nom_de_la_commune": "ALISSAS", "libell_d_acheminement": "ALISSAS", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07008"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f156125849aeed65d1f9760f8b8453b4705f0f08", "fields": {"nom_de_la_commune": "AILHON", "libell_d_acheminement": "AILHON", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07002"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99ce04d639a7e0da786b553a850bf3fa7c6aeaf2", "fields": {"nom_de_la_commune": "BOREE", "libell_d_acheminement": "BOREE", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07037"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9fc3f9989ccdb54a87f1a718d26fbdcad5302e", "fields": {"nom_de_la_commune": "LACHAPELLE GRAILLOUSE", "libell_d_acheminement": "LACHAPELLE GRAILLOUSE", "code_postal": "07470", "coordonnees_gps": [44.8185344831, 4.01919191039], "code_commune_insee": "07121"}, "geometry": {"type": "Point", "coordinates": [4.01919191039, 44.8185344831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "410aaa40f014af51f9872a4fc3a87daca4d6e2e0", "fields": {"nom_de_la_commune": "LE LAC D ISSARLES", "libell_d_acheminement": "LE LAC D ISSARLES", "code_postal": "07470", "coordonnees_gps": [44.8185344831, 4.01919191039], "code_commune_insee": "07119"}, "geometry": {"type": "Point", "coordinates": [4.01919191039, 44.8185344831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d260a2d25751ecdff1db0a9c71971bca8630de64", "fields": {"nom_de_la_commune": "ISSAMOULENC", "libell_d_acheminement": "ISSAMOULENC", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07104"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88a4d6db52801572c13087cddf675b2273e5be47", "fields": {"nom_de_la_commune": "LALOUVESC", "libell_d_acheminement": "LALOUVESC", "code_postal": "07520", "coordonnees_gps": [45.1121738943, 4.50340666434], "code_commune_insee": "07128"}, "geometry": {"type": "Point", "coordinates": [4.50340666434, 45.1121738943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3349f0c6ef69a023e3b9f9c55e011d2f9d41f02", "fields": {"nom_de_la_commune": "ISSANLAS", "libell_d_acheminement": "ISSANLAS", "code_postal": "07660", "coordonnees_gps": [44.7442437904, 3.96612267171], "code_commune_insee": "07105"}, "geometry": {"type": "Point", "coordinates": [3.96612267171, 44.7442437904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33514704a6aad62592bddb8cc62d1bc25aaf77e2", "fields": {"nom_de_la_commune": "LABEGUDE", "libell_d_acheminement": "LABEGUDE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07116"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2e6442986f0ca91dd42c01c46589898d22001b", "fields": {"nom_de_la_commune": "JAUNAC", "libell_d_acheminement": "JAUNAC", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07108"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab918fbc54c8fd9ec6e4f6d43c62a40dd01414a7", "fields": {"nom_de_la_commune": "JAUJAC", "libell_d_acheminement": "JAUJAC", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07107"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "677e72006bfa25d60a6130640707e0be4023033c", "fields": {"nom_de_la_commune": "LANAS", "libell_d_acheminement": "LANAS", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07131"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f49080f0f47013d0aaffae64f5d7b8518d1d3f", "fields": {"nom_de_la_commune": "LAVAL D AURELLE", "libell_d_acheminement": "LAVAL D AURELLE", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07135"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3d52b8a43f393cadc1c20529cefa291529426cb", "fields": {"nom_de_la_commune": "LENTILLERES", "libell_d_acheminement": "LENTILLERES", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07141"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6ff07e0362a56f01ebd0597d70a5281802624be", "fields": {"nom_de_la_commune": "PAILHARES", "libell_d_acheminement": "PAILHARES", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07170"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b255153e73dc7eaaa8e6d8495922b330609ecc0", "fields": {"nom_de_la_commune": "MONTREAL", "libell_d_acheminement": "MONTREAL", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07162"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f07716aa3cf93bd8f0d79ead4b6e20e339d8473e", "fields": {"nom_de_la_commune": "MERCUER", "libell_d_acheminement": "MERCUER", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07155"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df89f9f2ba32d81b2a140315d0c61dfc9c0e8f8", "fields": {"nom_de_la_commune": "MARIAC", "libell_d_acheminement": "MARIAC", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07150"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ced48bdbf3afa254baf4127974a4d47e0a8bb2", "fields": {"nom_de_la_commune": "MEYRAS", "libell_d_acheminement": "MEYRAS", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07156"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bfe20ba48682c57778346132b22df12f6679272", "fields": {"nom_de_la_commune": "LEMPS", "libell_d_acheminement": "LEMPS", "code_postal": "07610", "coordonnees_gps": [45.1098494748, 4.78303209156], "code_commune_insee": "07140"}, "geometry": {"type": "Point", "coordinates": [4.78303209156, 45.1098494748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dc4f179ae8e24a602ee0fb9b692a6a643e07864", "fields": {"code_postal": "08800", "code_commune_insee": "08302", "libell_d_acheminement": "MONTHERME", "ligne_5": "LES HAUTS BUTTES", "nom_de_la_commune": "MONTHERME", "coordonnees_gps": [49.898909719, 4.79046954849]}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6fc3195dff66e59bc1af48e683a24c2cbfe4ae9", "fields": {"nom_de_la_commune": "MONT ST MARTIN", "libell_d_acheminement": "MONT ST MARTIN", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08308"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0261a294896a8d635dd0e64f4ab121291c472762", "fields": {"nom_de_la_commune": "MENIL ANNELLES", "libell_d_acheminement": "MENIL ANNELLES", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08286"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ef6e84dfbe1365b142ba623fc4e9a471b588a6", "fields": {"nom_de_la_commune": "MONT LAURENT", "libell_d_acheminement": "MONT LAURENT", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08306"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c9c864232fafab7c591ec355b52453f4c7e732", "fields": {"nom_de_la_commune": "NOUZONVILLE", "libell_d_acheminement": "NOUZONVILLE", "code_postal": "08700", "coordonnees_gps": [49.8150344171, 4.80706022542], "code_commune_insee": "08328"}, "geometry": {"type": "Point", "coordinates": [4.80706022542, 49.8150344171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26ac756a81434cf0f361a1a468ce7b803e5a151a", "fields": {"nom_de_la_commune": "MONTHOIS", "libell_d_acheminement": "MONTHOIS", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08303"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a3f2d57b63265c0559091465638cc6d65bc6765", "fields": {"nom_de_la_commune": "OMICOURT", "libell_d_acheminement": "OMICOURT", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08334"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cda06d6f7b6586b3d31e06655c7346d9a32b24f", "fields": {"nom_de_la_commune": "MONDIGNY", "libell_d_acheminement": "MONDIGNY", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08295"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c415d51245d8f37a4e9edbe286d7aa2623e50fa6", "fields": {"nom_de_la_commune": "NOIRVAL", "libell_d_acheminement": "NOIRVAL", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08325"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bc2b9f0ba98ad919660b3a7c6eb9fc80f743620", "fields": {"nom_de_la_commune": "MOUZON", "libell_d_acheminement": "MOUZON", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08311"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bbd47f55e7a0b8bed67c09dd1d55ca579c482c6", "fields": {"nom_de_la_commune": "POURU AUX BOIS", "libell_d_acheminement": "POURU AUX BOIS", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08342"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c179625f71da146e2f78716150c3551caf3dca6f", "fields": {"nom_de_la_commune": "QUATRE CHAMPS", "libell_d_acheminement": "QUATRE CHAMPS", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08350"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74036672f543ca4dc9c820279d7c4fd54d60686c", "fields": {"nom_de_la_commune": "LA ROMAGNE", "libell_d_acheminement": "LA ROMAGNE", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08369"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ee16d1a9f8b6d7d574ce0afe08bfc2c3d9e7372", "fields": {"nom_de_la_commune": "REGNIOWEZ", "libell_d_acheminement": "REGNIOWEZ", "code_postal": "08230", "coordonnees_gps": [49.9157903394, 4.51147538743], "code_commune_insee": "08355"}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4845a0e5b6851355d5473bd8768fbdb86e489dd6", "fields": {"nom_de_la_commune": "ST JUVIN", "libell_d_acheminement": "ST JUVIN", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08383"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d866e12fa05eee1f03f107f162b343be9d9bb56", "fields": {"nom_de_la_commune": "RUMIGNY", "libell_d_acheminement": "RUMIGNY", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08373"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553c8effd254bb3b00a2b81d26623990cc3b142d", "fields": {"nom_de_la_commune": "QUILLY", "libell_d_acheminement": "QUILLY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08351"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b577df183de4505f436f68f43fd66d660ed53e66", "fields": {"nom_de_la_commune": "SAILLY", "libell_d_acheminement": "SAILLY", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08376"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eda064881d32cb0c9e6b2372ace59d99cf2fbed5", "fields": {"nom_de_la_commune": "SACHY", "libell_d_acheminement": "SACHY", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08375"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307276d63efa156ea6b6d4710893503433b8b713", "fields": {"nom_de_la_commune": "PURE", "libell_d_acheminement": "PURE", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08349"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd474d596560fbca3c6143271ea3b28580b144d6", "fields": {"nom_de_la_commune": "SAPOGNE ET FEUCHERES", "libell_d_acheminement": "SAPOGNE ET FEUCHERES", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08400"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c3861ed1021e5856a4ddee38dc2c4ec07b5033", "fields": {"nom_de_la_commune": "SAPOGNE SUR MARCHE", "libell_d_acheminement": "SAPOGNE SUR MARCHE", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08399"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf8859bd68c95dce47e4126d122fd9e6c625286", "fields": {"nom_de_la_commune": "ST PIERRE A ARNES", "libell_d_acheminement": "ST PIERRE A ARNES", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08393"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51146dde1a21d208732bdeb438c44fb1f0359827", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08390"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d2f0110f332cda3ebba5962aae43426179fd88", "fields": {"nom_de_la_commune": "SAUVILLE", "libell_d_acheminement": "SAUVILLE", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08405"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85262625b26dd61588b375550f846f757c872e80", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08389"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "435d521a3ed25b2e5a14ff53b7827f43e5e39243", "fields": {"nom_de_la_commune": "SORBON", "libell_d_acheminement": "SORBON", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08427"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb5004d18aa2780fbde5616d29d8213a0ebc0ad8", "fields": {"nom_de_la_commune": "SON", "libell_d_acheminement": "SON", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08426"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4722a2c58cff2f87512345713e5ce4d429c5a6c0", "fields": {"code_postal": "08800", "code_commune_insee": "08448", "libell_d_acheminement": "THILAY", "ligne_5": "NOHAN", "nom_de_la_commune": "THILAY", "coordonnees_gps": [49.898909719, 4.79046954849]}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d33d732f232cdfa660adbbafd8cc90d9e2c52fd", "fields": {"nom_de_la_commune": "VILLERS DEVANT LE THOUR", "libell_d_acheminement": "VILLERS DEVANT LE THOUR", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08476"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02bbde99cb683effd0312a2b84dfc8b1cd55e681", "fields": {"nom_de_la_commune": "VILLERS SUR LE MONT", "libell_d_acheminement": "VILLERS SUR LE MONT", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08482"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c03b923e7e96fa77732da7ffdddf272fcc4a032", "fields": {"nom_de_la_commune": "SORCY BAUTHEMONT", "libell_d_acheminement": "SORCY BAUTHEMONT", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08428"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae23adf06d9a9d7de65820de727cb826cdf5fbb3", "fields": {"nom_de_la_commune": "VIVIER AU COURT", "libell_d_acheminement": "VIVIER AU COURT", "code_postal": "08440", "coordonnees_gps": [49.7465336406, 4.81357930291], "code_commune_insee": "08488"}, "geometry": {"type": "Point", "coordinates": [4.81357930291, 49.7465336406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fb75481a90e4fc8a109907784f7d78405f0d0f1", "fields": {"nom_de_la_commune": "VIEL ST REMY", "libell_d_acheminement": "VIEL ST REMY", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08472"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e069b03b515e0e058b5243753f2a8cf563690141", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08471"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e8ff04928852a38d014cc6c2af1b9fd0b39cf20", "fields": {"nom_de_la_commune": "TAILLETTE", "libell_d_acheminement": "TAILLETTE", "code_postal": "08230", "coordonnees_gps": [49.9157903394, 4.51147538743], "code_commune_insee": "08436"}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a17d260fcb40ff689b5dde172b68c25ae8b0b4", "fields": {"nom_de_la_commune": "VERPEL", "libell_d_acheminement": "VERPEL", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08470"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "496376da17d54b0c7359b8dd683da7227ed4fc98", "fields": {"code_postal": "08400", "code_commune_insee": "08490", "libell_d_acheminement": "VOUZIERS", "ligne_5": "BLAISE", "nom_de_la_commune": "VOUZIERS", "coordonnees_gps": [49.3759788124, 4.68476998487]}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f2bdba1ce8696401936f45de00fbcc87dcfbf4e", "fields": {"nom_de_la_commune": "WADELINCOURT", "libell_d_acheminement": "WADELINCOURT", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08494"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4ad789912d07288fb737e2dc46dadbf9cab6a19", "fields": {"nom_de_la_commune": "AUDRESSEIN", "libell_d_acheminement": "AUDRESSEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09026"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b8f6a046a7c7a857febb37aea57d24a5d48537", "fields": {"nom_de_la_commune": "ARTIGUES", "libell_d_acheminement": "ARTIGUES", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09020"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82e652c07ef0cc4a02a4c28e277d64e10822666", "fields": {"nom_de_la_commune": "AUCAZEIN", "libell_d_acheminement": "AUCAZEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09025"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9781e1fa610e27fe8ae049c7472ba97102c4db3c", "fields": {"nom_de_la_commune": "WASIGNY", "libell_d_acheminement": "WASIGNY", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08499"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5296017df659a543e4f09a5ceb2fc486c7b0e5ff", "fields": {"nom_de_la_commune": "ARGEIN", "libell_d_acheminement": "ARGEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09014"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b026c534f6f97866f72d70746d1d145c5d03b176", "fields": {"nom_de_la_commune": "VONCQ", "libell_d_acheminement": "VONCQ", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08489"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60dac8f75cae21434e5b654f5df7512fbc0b1b36", "fields": {"nom_de_la_commune": "VRIZY", "libell_d_acheminement": "VRIZY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08493"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "628bb2d536630745ec29e2107d3eaadc9eb8d4f5", "fields": {"nom_de_la_commune": "ALZEN", "libell_d_acheminement": "ALZEN", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09009"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a483b15682fc105f43a09ff15946ff9b76bd56", "fields": {"nom_de_la_commune": "CAZENAVE SERRES ET ALLENS", "libell_d_acheminement": "CAZENAVE SERRES ET ALLENS", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09092"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4207b35aea747ac42da9bf7d7cbe7b61c54e5f32", "fields": {"nom_de_la_commune": "CASTELNAU DURBAN", "libell_d_acheminement": "CASTELNAU DURBAN", "code_postal": "09420", "coordonnees_gps": [42.9874247202, 1.30308846281], "code_commune_insee": "09082"}, "geometry": {"type": "Point", "coordinates": [1.30308846281, 42.9874247202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a492833db4f0249245b3af74ba2b533652cb16f8", "fields": {"nom_de_la_commune": "CARCANIERES", "libell_d_acheminement": "CARCANIERES", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09078"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c55d6c32e67ece62af15b3b9d151ed1525584d1b", "fields": {"nom_de_la_commune": "DREUILHE", "libell_d_acheminement": "DREUILHE", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09106"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b019dd1924b24358978c697c135e858d7a852b0", "fields": {"nom_de_la_commune": "CASTERAS", "libell_d_acheminement": "CASTERAS", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09083"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69167fc5b724293abda1c6a72a84ee999cd6de8d", "fields": {"nom_de_la_commune": "CERIZOLS", "libell_d_acheminement": "CERIZOLS", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09094"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ff45e22a3afc10c5259a73434bd2e0e73b8d51e", "fields": {"nom_de_la_commune": "ERCE", "libell_d_acheminement": "ERCE", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09113"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eea95e183654d196ba4cb965f318adcdced0345", "fields": {"nom_de_la_commune": "ORNOLAC USSAT LES BAINS", "libell_d_acheminement": "ORNOLAC USSAT LES BAINS", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09221"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67374a97d468f3943f4566b7c8dd2b7adea6beb0", "fields": {"nom_de_la_commune": "MONTESQUIEU AVANTES", "libell_d_acheminement": "MONTESQUIEU AVANTES", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09204"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81004cfbfded282fa7553482d4db2493a26aa1d0", "fields": {"nom_de_la_commune": "MONTSERON", "libell_d_acheminement": "MONTSERON", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09212"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc56d0a3dfffdf2f1203f23e6dd5ce884001014", "fields": {"nom_de_la_commune": "MONESPLE", "libell_d_acheminement": "MONESPLE", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09195"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2029eec3e06fb1c48b4faf609401700d3e19bb64", "fields": {"nom_de_la_commune": "MERIGON", "libell_d_acheminement": "MERIGON", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09190"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "644c64ca9cd428b89fc1a3f75de319201903686d", "fields": {"nom_de_la_commune": "MONTELS", "libell_d_acheminement": "MONTELS", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09203"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179f33cfcd6bed2f976c2cf169135794a4796aed", "fields": {"nom_de_la_commune": "MIGLOS", "libell_d_acheminement": "MIGLOS", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09192"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dc27a7226b0d6fdd45029dbadb52019e841323c", "fields": {"nom_de_la_commune": "PECH", "libell_d_acheminement": "PECH", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09226"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d3ca7e0308640d77a09a3f7387c5e6a49685c0f", "fields": {"nom_de_la_commune": "ORUS", "libell_d_acheminement": "ORUS", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09222"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ddf0825c47c82ce898631dc348ac1865ff6fb5", "fields": {"nom_de_la_commune": "CAPOULET ET JUNAC", "libell_d_acheminement": "CAPOULET ET JUNAC", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09077"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b78ca4a4d20a59584205413334f91c0108d34f5d", "fields": {"nom_de_la_commune": "BALAGUERES", "libell_d_acheminement": "BALAGUERES", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09035"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d44e142c2dd96c277e672d909d9d44dbcb5cf808", "fields": {"nom_de_la_commune": "AUGIREIN", "libell_d_acheminement": "AUGIREIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09027"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576a936b8965ac7f59cb91f9b40d41c8107487fc", "fields": {"nom_de_la_commune": "VANDY", "libell_d_acheminement": "VANDY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08461"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22769879ed54f74331259298b349dd68928ff77b", "fields": {"nom_de_la_commune": "ALOS", "libell_d_acheminement": "ALOS", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09008"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "005ba3fe70b0c77661868919e7c5ceebaf35dd06", "fields": {"nom_de_la_commune": "CASTILLON EN COUSERANS", "libell_d_acheminement": "CASTILLON EN COUSERANS", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09085"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2268985f3732f4ffa569fe03891ad6b5ac8fdd19", "fields": {"nom_de_la_commune": "LES BORDES SUR LEZ", "libell_d_acheminement": "LES BORDES SUR LEZ", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09062"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f7637f28113869613dfe8069b52e061f590423", "fields": {"nom_de_la_commune": "CAMPAGNE SUR ARIZE", "libell_d_acheminement": "CAMPAGNE SUR ARIZE", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09075"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ca4a41adc849059646d6f5020450b0f418745a", "fields": {"nom_de_la_commune": "BRASSAC", "libell_d_acheminement": "BRASSAC", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09066"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e546e0dd8515bc776bb677a1ccc425540e3808", "fields": {"nom_de_la_commune": "CAUSSOU", "libell_d_acheminement": "CAUSSOU", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09087"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc847723f14be188dfc5e1fc6e4f46ff4d89e71a", "fields": {"nom_de_la_commune": "CAYCHAX", "libell_d_acheminement": "CAYCHAX", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09088"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bbaf38c927222b09322972447cf109e3df3a357", "fields": {"nom_de_la_commune": "CALZAN", "libell_d_acheminement": "CALZAN", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09072"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed7e93ce347f9e245142c1bb6b71d8d40cef9708", "fields": {"nom_de_la_commune": "BOUAN", "libell_d_acheminement": "BOUAN", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09064"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "073d2608ca44f99197ffe0016f5dde924ebddb5a", "fields": {"code_postal": "10340", "code_commune_insee": "10058", "libell_d_acheminement": "BRAGELOGNE BEAUVOIR", "ligne_5": "BEAUVOIR SUR SARCE", "nom_de_la_commune": "BRAGELOGNE BEAUVOIR", "coordonnees_gps": [47.9929585912, 4.30782302551]}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b03d4ddfd5db29625b4a236c0039a3429a115a3e", "fields": {"code_postal": "10450", "code_commune_insee": "10060", "libell_d_acheminement": "BREVIANDES", "ligne_5": "VILLEPART", "nom_de_la_commune": "BREVIANDES", "coordonnees_gps": [48.256436344, 4.1062065257]}, "geometry": {"type": "Point", "coordinates": [4.1062065257, 48.256436344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac10af6961a50936b4217cfe7836c52fdadb286", "fields": {"nom_de_la_commune": "BARBEREY ST SULPICE", "libell_d_acheminement": "BARBEREY ST SULPICE", "code_postal": "10600", "coordonnees_gps": [48.3767482025, 3.98875459714], "code_commune_insee": "10030"}, "geometry": {"type": "Point", "coordinates": [3.98875459714, 48.3767482025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4582bb86838b8eb185c8070ecc70f3333a0f4c0c", "fields": {"nom_de_la_commune": "BALNOT SUR LAIGNES", "libell_d_acheminement": "BALNOT SUR LAIGNES", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10029"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275259b50e44950964e194b5adc11050334b7df7", "fields": {"nom_de_la_commune": "BALNOT LA GRANGE", "libell_d_acheminement": "BALNOT LA GRANGE", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10028"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e51038da9fd227eb7f0b0b12aeb9c29df88008", "fields": {"nom_de_la_commune": "BOUY SUR ORVIN", "libell_d_acheminement": "BOUY SUR ORVIN", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10057"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df02863c8b0fdd934ce721a651396c993fc08c4", "fields": {"nom_de_la_commune": "BALIGNICOURT", "libell_d_acheminement": "BALIGNICOURT", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10027"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac1cdf844f3c6ba116a69ded50daabc85e390784", "fields": {"nom_de_la_commune": "BERTIGNOLLES", "libell_d_acheminement": "BERTIGNOLLES", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10041"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a79e8f57ec286d258630c24c6affff05226b98", "fields": {"nom_de_la_commune": "BAR SUR AUBE", "libell_d_acheminement": "BAR SUR AUBE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10033"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9febd9c0855eda1043096ea00748be01928f335b", "fields": {"nom_de_la_commune": "BOULAGES", "libell_d_acheminement": "BOULAGES", "code_postal": "10380", "coordonnees_gps": [48.576907135, 3.98044859766], "code_commune_insee": "10052"}, "geometry": {"type": "Point", "coordinates": [3.98044859766, 48.576907135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb7c5684b5b8c4b580d9bab84eccdefbc0c7935", "fields": {"code_postal": "10150", "code_commune_insee": "10115", "libell_d_acheminement": "CRENEY PRES TROYES", "ligne_5": "ARGENTOLLES", "nom_de_la_commune": "CRENEY PRES TROYES", "coordonnees_gps": [48.3962803897, 4.13703511392]}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e587903b99c6958362932efb96a2eb18c792bdd9", "fields": {"code_postal": "10800", "code_commune_insee": "10067", "libell_d_acheminement": "BUCHERES", "ligne_5": "COURGERENNES", "nom_de_la_commune": "BUCHERES", "coordonnees_gps": [48.2055801821, 4.1125140322]}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e5cd3327f4b1e4070f6b0e9cea48ef4d7e1a74", "fields": {"nom_de_la_commune": "CELLES SUR OURCE", "libell_d_acheminement": "CELLES SUR OURCE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10070"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50e7050cc56311cd156be386b0e4943a40bd0830", "fields": {"nom_de_la_commune": "BRIEL SUR BARSE", "libell_d_acheminement": "BRIEL SUR BARSE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10062"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0144d6bfddec94e2413905318d6a4b3381215b8", "fields": {"nom_de_la_commune": "COLOMBE LE SEC", "libell_d_acheminement": "COLOMBE LE SEC", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10103"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4912d5defb34e07b2afc75d3f1fbea8e48156b9", "fields": {"nom_de_la_commune": "CHAMPFLEURY", "libell_d_acheminement": "CHAMPFLEURY", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10075"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a3515205b46042331a67b5d202d58b80f7c00c", "fields": {"nom_de_la_commune": "CHAVANGES", "libell_d_acheminement": "CHAVANGES", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10094"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790394e821ee2a7c8b1553d0677a812a6a5ba7cd", "fields": {"nom_de_la_commune": "BREVONNES", "libell_d_acheminement": "BREVONNES", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10061"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c0ff106f2e2a85e984d1f5dc57904223f637ff2", "fields": {"nom_de_la_commune": "DAMPIERRE", "libell_d_acheminement": "DAMPIERRE", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10121"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd0c90fe501dde70608453c29e1084ba813a0fa", "fields": {"nom_de_la_commune": "CHERVEY", "libell_d_acheminement": "CHERVEY", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10097"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1572ae53bdf164f83fe765e72c01bf5486bddd20", "fields": {"nom_de_la_commune": "VILLENEUVE D OLMES", "libell_d_acheminement": "VILLENEUVE D OLMES", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09336"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba93dba152da6b3a03b2a7b4ffead08b95db7cab", "fields": {"nom_de_la_commune": "BAILLY LE FRANC", "libell_d_acheminement": "BAILLY LE FRANC", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10026"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2612c8b3b21a28dcb5b39335f1c8f530de7eacf", "fields": {"nom_de_la_commune": "STE SUZANNE", "libell_d_acheminement": "STE SUZANNE", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09342"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aca397ff5d75e21a3f4108fa71811c8413d2c40d", "fields": {"nom_de_la_commune": "VERNIOLLE", "libell_d_acheminement": "VERNIOLLE", "code_postal": "09340", "coordonnees_gps": [43.0813978691, 1.66183877783], "code_commune_insee": "09332"}, "geometry": {"type": "Point", "coordinates": [1.66183877783, 43.0813978691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41bceaac1a393f27acbde9427dba2b65e0ee6d23", "fields": {"nom_de_la_commune": "AUBETERRE", "libell_d_acheminement": "AUBETERRE", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10015"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1cc6d71ef32f8caea8b0df99063297e5fa0e1ac", "fields": {"nom_de_la_commune": "VENTENAC", "libell_d_acheminement": "VENTENAC", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09327"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "751fea174f9e39225bffacd3c65fb28486b1dae9", "fields": {"nom_de_la_commune": "ARGANCON", "libell_d_acheminement": "ARGANCON", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10008"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d044803103b3b2f3dd9f02e10517a6943a969e6", "fields": {"nom_de_la_commune": "VAYCHIS", "libell_d_acheminement": "VAYCHIS", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09325"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e14c2695b4ec8314029003fede53dbdc934f2c55", "fields": {"nom_de_la_commune": "VERDUN", "libell_d_acheminement": "VERDUN", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09328"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9de97f84bfc043a18c217173b6ae6ba88a72e8", "fields": {"nom_de_la_commune": "URS", "libell_d_acheminement": "URS", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09320"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "089069acd06878ffcf5a707da23fb1e419b7b85d", "fields": {"nom_de_la_commune": "ST FELIX DE TOURNEGAT", "libell_d_acheminement": "ST FELIX DE TOURNEGAT", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09259"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a278b7a8d961913dde0df5e4f3290d7147138c", "fields": {"nom_de_la_commune": "MONTJOIE EN COUSERANS", "libell_d_acheminement": "MONTJOIE EN COUSERANS", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09209"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f77cb6e4d4a2324591daa7bc6e47c555a477b6b", "fields": {"nom_de_la_commune": "ST FELIX DE RIEUTORD", "libell_d_acheminement": "ST FELIX DE RIEUTORD", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09258"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "175ef22fef02e322a9c2c7e74c17d5a90da65923", "fields": {"nom_de_la_commune": "PRAT BONREPAUX", "libell_d_acheminement": "PRAT BONREPAUX", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09235"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "454eb64888af95d5b495f534805c975a619350f1", "fields": {"nom_de_la_commune": "MONTGAILLARD", "libell_d_acheminement": "MONTGAILLARD", "code_postal": "09330", "coordonnees_gps": [42.9375288696, 1.64328854462], "code_commune_insee": "09207"}, "geometry": {"type": "Point", "coordinates": [1.64328854462, 42.9375288696]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "971fb8d05d0ad1a18041950f02ea70d13fd8544f", "fields": {"nom_de_la_commune": "ST BAUZEIL", "libell_d_acheminement": "ST BAUZEIL", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09256"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af7a3faa9e057eaab2db06e1a2a52647e6b5a992", "fields": {"nom_de_la_commune": "LES PUJOLS", "libell_d_acheminement": "LES PUJOLS", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09238"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8040dd5e3bb64983a59b17134d8ea9276a55808e", "fields": {"nom_de_la_commune": "RIEUCROS", "libell_d_acheminement": "RIEUCROS", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09244"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f5a65e299fa7f3abba0ee5e1d18e682c13178c2", "fields": {"nom_de_la_commune": "ST AMADOU", "libell_d_acheminement": "ST AMADOU", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09254"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a4012a7575bb459d9c2134747901625698aee8", "fields": {"nom_de_la_commune": "ST AMANS", "libell_d_acheminement": "ST AMANS", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09255"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "080f701ebd0244f364b2bdcf671f005c2b01305a", "fields": {"nom_de_la_commune": "LES ISSARDS", "libell_d_acheminement": "LES ISSARDS", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09145"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9708bb6f9599e36cbe934393954034233838f6b", "fields": {"nom_de_la_commune": "ILLARTEIN", "libell_d_acheminement": "ILLARTEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09141"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f9171b5b035a371d23b542e8c738186273aa3e9", "fields": {"nom_de_la_commune": "COUTENS", "libell_d_acheminement": "COUTENS", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09102"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff9359e25a13b037e83219b491bdbac6252fa41f", "fields": {"nom_de_la_commune": "GAUDIES", "libell_d_acheminement": "GAUDIES", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09132"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ed2828725f6cf4a5838b1fae8d7ba26167c3147", "fields": {"nom_de_la_commune": "ESCOSSE", "libell_d_acheminement": "ESCOSSE", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09116"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81cd1aca52c98c43705aa8c83594af0726ea6ee1", "fields": {"nom_de_la_commune": "LACOURT", "libell_d_acheminement": "LACOURT", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09149"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4902ba20e518ec9b5c1245322bc601c0ea4655", "fields": {"nom_de_la_commune": "ESPLAS", "libell_d_acheminement": "ESPLAS", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09117"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98973425f4ed958ccdeeb29d5829b1007b9b9a71", "fields": {"nom_de_la_commune": "CELLES", "libell_d_acheminement": "CELLES", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09093"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef1f62394552151e142941984aaa1609747608c", "fields": {"nom_de_la_commune": "ILHAT", "libell_d_acheminement": "ILHAT", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09142"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846d7b7efbe645d64dea40376a566c9c3d14698f", "fields": {"nom_de_la_commune": "DUN", "libell_d_acheminement": "DUN", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09107"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0d04d07f6c7ee23acca1b0bb2e7805f347e159", "fields": {"code_postal": "10510", "code_commune_insee": "10220", "libell_d_acheminement": "MAIZIERES LA GRANDE PAROISSE", "ligne_5": "LES GRANGES", "nom_de_la_commune": "MAIZIERES LA GRANDE PAROISSE", "coordonnees_gps": [48.4879809815, 3.8003478172]}, "geometry": {"type": "Point", "coordinates": [3.8003478172, 48.4879809815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bea854cfb8fd69464c64582b6caa8f7d5aee077d", "fields": {"nom_de_la_commune": "MAISONS LES CHAOURCE", "libell_d_acheminement": "MAISONS LES CHAOURCE", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10218"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74357657d99e7511dcf6071710f9aa0f8035c0bc", "fields": {"nom_de_la_commune": "MESGRIGNY", "libell_d_acheminement": "MESGRIGNY", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10234"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05fcc5878779eb0744cf408ef4046df041667c37", "fields": {"nom_de_la_commune": "MATHAUX", "libell_d_acheminement": "MATHAUX", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10228"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00122d91016a227cd9141cbea22edcac993fa336", "fields": {"code_postal": "09140", "code_commune_insee": "09299", "libell_d_acheminement": "SOUEIX ROGALLE", "ligne_5": "ROGALLE", "nom_de_la_commune": "SOUEIX ROGALLE", "coordonnees_gps": [42.7992501708, 1.2327189582]}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb2b28ceb41d714c6d82d4b2f3450bb38ef9e71", "fields": {"nom_de_la_commune": "ST MARTIN DE CARALP", "libell_d_acheminement": "ST MARTIN DE CARALP", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09269"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf0837e8ee05b7e057da1a0d153be74c1d30efe2", "fields": {"nom_de_la_commune": "ST QUENTIN LA TOUR", "libell_d_acheminement": "ST QUENTIN LA TOUR", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09274"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eea97eb07a3f4c57029c46a66037d420be4238fc", "fields": {"nom_de_la_commune": "LA TOUR DU CRIEU", "libell_d_acheminement": "LA TOUR DU CRIEU", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09312"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3040199e38544da49cf8497e00a2a341608d8297", "fields": {"nom_de_la_commune": "UCHENTEIN", "libell_d_acheminement": "UCHENTEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09317"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba690d477baa8de690faf2b4eeb913271b5ece0e", "fields": {"nom_de_la_commune": "ST LIZIER", "libell_d_acheminement": "ST LIZIER", "code_postal": "09190", "coordonnees_gps": [43.0227616635, 1.12327682273], "code_commune_insee": "09268"}, "geometry": {"type": "Point", "coordinates": [1.12327682273, 43.0227616635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5af847499625532ea2e2422fdd61cbcc15d61faf", "fields": {"nom_de_la_commune": "SURBA", "libell_d_acheminement": "SURBA", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09303"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2b93ac207eb7ce0bc338b8d774f3e042372db5", "fields": {"nom_de_la_commune": "TABRE", "libell_d_acheminement": "TABRE", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09305"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edbcfa75698cc1ce4d65929cc1c1d9302f318ee9", "fields": {"nom_de_la_commune": "UNAC", "libell_d_acheminement": "UNAC", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09318"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c39d77456f91d13480524a72684f5b615dfc80aa", "fields": {"nom_de_la_commune": "SOR", "libell_d_acheminement": "SOR", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09297"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "304d1b5e1debde967c7fcbc9557662dc74d9a2ef", "fields": {"nom_de_la_commune": "MONTEGUT PLANTAUREL", "libell_d_acheminement": "MONTEGUT PLANTAUREL", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09202"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d3261daf0a281a252cbc43fc97697e53e62ad3", "fields": {"nom_de_la_commune": "MONTFERRIER", "libell_d_acheminement": "MONTFERRIER", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09206"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9d8f37158af169e099bda309c41458abf3e2838", "fields": {"nom_de_la_commune": "MALEGOUDE", "libell_d_acheminement": "MALEGOUDE", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09178"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af8832437277326080d255ff62be2d1562de316d", "fields": {"nom_de_la_commune": "LIEURAC", "libell_d_acheminement": "LIEURAC", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09168"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3826534d707b31b59f40d9c52514b6c465296a4e", "fields": {"nom_de_la_commune": "LAPEGE", "libell_d_acheminement": "LAPEGE", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09152"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a113c6529a7bf085d1218f85a3b0375c046825", "fields": {"nom_de_la_commune": "LANOUX", "libell_d_acheminement": "LANOUX", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09151"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019eada10327573b9e9f19973c63d4a47ead088b", "fields": {"nom_de_la_commune": "LARCAT", "libell_d_acheminement": "LARCAT", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09155"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8763c8be2eadd2e60f38770afae811549c13dd1c", "fields": {"nom_de_la_commune": "MASSAT", "libell_d_acheminement": "MASSAT", "code_postal": "09320", "coordonnees_gps": [42.8796957466, 1.34694172937], "code_commune_insee": "09182"}, "geometry": {"type": "Point", "coordinates": [1.34694172937, 42.8796957466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2bcf1595a0a3a177ccf0d7a09a00dc1aa62c40", "fields": {"nom_de_la_commune": "LERAN", "libell_d_acheminement": "LERAN", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09161"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "200ee038e3c502ebf597f498bce40fdd2db5acc7", "fields": {"nom_de_la_commune": "MERAS", "libell_d_acheminement": "MERAS", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09186"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa3f336ee4eb132d80aab4e0a82202418af1e6e", "fields": {"code_postal": "10300", "code_commune_insee": "10211", "libell_d_acheminement": "MACEY", "ligne_5": "GRANGE L EVEQUE", "nom_de_la_commune": "MACEY", "coordonnees_gps": [48.3017985875, 3.94562270532]}, "geometry": {"type": "Point", "coordinates": [3.94562270532, 48.3017985875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c3fd88647460bf8c8acc2adf6c78109426e212", "fields": {"nom_de_la_commune": "LONGEVILLE SUR MOGNE", "libell_d_acheminement": "LONGEVILLE SUR MOGNE", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10204"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6c531d8b28c4054aabbe834b0b9e1b405b6c3a0", "fields": {"nom_de_la_commune": "LA LOUPTIERE THENARD", "libell_d_acheminement": "LA LOUPTIERE THENARD", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10208"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c559a705724a5013a97c4c02a08936a0a8553ed8", "fields": {"nom_de_la_commune": "LONGCHAMP SUR AUJON", "libell_d_acheminement": "LONGCHAMP SUR AUJON", "code_postal": "10310", "coordonnees_gps": [48.1567685845, 4.79470021531], "code_commune_insee": "10203"}, "geometry": {"type": "Point", "coordinates": [4.79470021531, 48.1567685845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a435a132e1c42fca9ef4fa2db9e1ea9d85f97d6c", "fields": {"nom_de_la_commune": "LAINES AUX BOIS", "libell_d_acheminement": "LAINES AUX BOIS", "code_postal": "10120", "coordonnees_gps": [48.2420570868, 4.01115012406], "code_commune_insee": "10186"}, "geometry": {"type": "Point", "coordinates": [4.01115012406, 48.2420570868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e01d98097823dee7cccca155882ac8bbd8b346f", "fields": {"nom_de_la_commune": "MAILLY LE CAMP", "libell_d_acheminement": "MAILLY LE CAMP", "code_postal": "10230", "coordonnees_gps": [48.6745421809, 4.1855506569], "code_commune_insee": "10216"}, "geometry": {"type": "Point", "coordinates": [4.1855506569, 48.6745421809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26f8433533d1c0616779277acff0c1c00cd5fe93", "fields": {"nom_de_la_commune": "MAGNY FOUCHARD", "libell_d_acheminement": "MAGNY FOUCHARD", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10215"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9d7b27d3d1a165ce614fb63b0c4cfb9a04cc0f5", "fields": {"nom_de_la_commune": "LUYERES", "libell_d_acheminement": "LUYERES", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10210"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5542ae9397e8baa543b55551609ebcd0fbf86f2d", "fields": {"nom_de_la_commune": "FONTENAY DE BOSSERY", "libell_d_acheminement": "FONTENAY DE BOSSERY", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10154"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcce1fd9d54ee851c4ef4b5ef173c54ee361c88e", "fields": {"nom_de_la_commune": "FAY LES MARCILLY", "libell_d_acheminement": "FAY LES MARCILLY", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10146"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f88ac91821c61b8fa63bfefe117861e1099954b", "fields": {"nom_de_la_commune": "FAUX VILLECERF", "libell_d_acheminement": "FAUX VILLECERF", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10145"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcfac1705b87933591b441a3e704e1ca90791b3d", "fields": {"nom_de_la_commune": "EAUX PUISEAUX", "libell_d_acheminement": "EAUX PUISEAUX", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10133"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5ccc6e533d1fb05847de4064b4445bdcfe46ea", "fields": {"nom_de_la_commune": "EPOTHEMONT", "libell_d_acheminement": "EPOTHEMONT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10139"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7d6512c76b918cbff644b7264abb7fdce8688c", "fields": {"nom_de_la_commune": "JUZANVIGNY", "libell_d_acheminement": "JUZANVIGNY", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10184"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7914bd7fa338a927da9a8b34235b26662c0a6423", "fields": {"nom_de_la_commune": "GRANDVILLE", "libell_d_acheminement": "GRANDVILLE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10167"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da8ba9773fcefc0044f6c033d2689a31f9d9f05", "fields": {"nom_de_la_commune": "LES GRANGES", "libell_d_acheminement": "LES GRANGES", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10168"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b14cf733f49e41c0e1917e234922800f23c6ec4f", "fields": {"nom_de_la_commune": "COQUAINVILLIERS", "libell_d_acheminement": "COQUAINVILLIERS", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14177"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acbb635fbaff86fdc8b7b684f8038d84d30fa60e", "fields": {"nom_de_la_commune": "CORMOLAIN", "libell_d_acheminement": "CORMOLAIN", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14182"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394dfffa5ab479ace66c95b020e22453ce89b432", "fields": {"nom_de_la_commune": "COTTUN", "libell_d_acheminement": "COTTUN", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14184"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44bc7f2b529afb854a6b286d751628fef6184388", "fields": {"nom_de_la_commune": "COURTONNE LA MEURDRAC", "libell_d_acheminement": "COURTONNE LA MEURDRAC", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14193"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f82cf5faef81653d8f939ccac25eb092bd95e730", "fields": {"nom_de_la_commune": "CREULLY", "libell_d_acheminement": "CREULLY", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14200"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be611fb6f1092ff4054219739e26b3112f74c643", "fields": {"nom_de_la_commune": "CRICQUEVILLE EN AUGE", "libell_d_acheminement": "CRICQUEVILLE EN AUGE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14203"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9479bf0cbe55d32c44dfa7e208a936672407fc1", "fields": {"nom_de_la_commune": "CROCY", "libell_d_acheminement": "CROCY", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14206"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f008b5bb52eb17f99205ed102831fa0afcb5ac", "fields": {"nom_de_la_commune": "CROUAY", "libell_d_acheminement": "CROUAY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14209"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53749edb530cc5ed620488828457630c4ce665a", "fields": {"nom_de_la_commune": "CULLY", "libell_d_acheminement": "CULLY", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14212"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8994f614aca39e553d5fa37c16e807857a51b3e", "fields": {"nom_de_la_commune": "CUVERVILLE", "libell_d_acheminement": "CUVERVILLE", "code_postal": "14840", "coordonnees_gps": [49.1829413019, -0.263699565464], "code_commune_insee": "14215"}, "geometry": {"type": "Point", "coordinates": [-0.263699565464, 49.1829413019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "381d6d98c6f14a61c6971213cb512c81519b1be6", "fields": {"nom_de_la_commune": "DAMPIERRE", "libell_d_acheminement": "DAMPIERRE", "code_postal": "14350", "coordonnees_gps": [48.9220153608, -0.733098585986], "code_commune_insee": "14217"}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13a7c386ff5fd39cb6a04c5a2b1ebbed3f83a8f4", "fields": {"code_postal": "14770", "code_commune_insee": "14219", "libell_d_acheminement": "DANVOU LA FERRIERE", "ligne_5": "LA FERRIERE DUVAL", "nom_de_la_commune": "DANVOU LA FERRIERE", "coordonnees_gps": [48.9262068, -0.631065513494]}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbf1daf59b6fc440af561e529f994f18f00fe185", "fields": {"nom_de_la_commune": "DEMOUVILLE", "libell_d_acheminement": "DEMOUVILLE", "code_postal": "14840", "coordonnees_gps": [49.1829413019, -0.263699565464], "code_commune_insee": "14221"}, "geometry": {"type": "Point", "coordinates": [-0.263699565464, 49.1829413019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7807cb233baae97de1ab864b710840e9b3716f2d", "fields": {"nom_de_la_commune": "DOZULE", "libell_d_acheminement": "DOZULE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14229"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45caa92f8def9ed70d44a78996f503c72bff8cf7", "fields": {"code_postal": "14340", "code_commune_insee": "14231", "libell_d_acheminement": "BEAUFOUR DRUVAL", "ligne_5": "BEAUFOUR", "nom_de_la_commune": "BEAUFOUR DRUVAL", "coordonnees_gps": [49.1715682628, 0.0767124030123]}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715ec41cb9e4afeb7d76a446ccef30c33d01d76d", "fields": {"code_postal": "14340", "code_commune_insee": "14231", "libell_d_acheminement": "BEAUFOUR DRUVAL", "ligne_5": "ST AUBIN LEBIZAY", "nom_de_la_commune": "BEAUFOUR DRUVAL", "coordonnees_gps": [49.1715682628, 0.0767124030123]}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c588058428899e3f3be2745becb4efd0aecdba7", "fields": {"nom_de_la_commune": "ENGLESQUEVILLE LA PERCEE", "libell_d_acheminement": "ENGLESQUEVILLE LA PERCEE", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14239"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "451f86810979f167c74f8760702b5ca451aa23ef", "fields": {"nom_de_la_commune": "EPANEY", "libell_d_acheminement": "EPANEY", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14240"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6858ceea85d40fd388fd3c036f251ba11c864a2", "fields": {"nom_de_la_commune": "ERAINES", "libell_d_acheminement": "ERAINES", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14244"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528e2632dc19e7d0e5ba60f388691674144cbe40", "fields": {"nom_de_la_commune": "ERNES", "libell_d_acheminement": "ERNES", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14245"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b9dd224e93765ee57865fd83f9ae077ecaf8023", "fields": {"nom_de_la_commune": "ESSON", "libell_d_acheminement": "ESSON", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14251"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5adda3c9f0ab70348bbc73396a5a2ddb39881d73", "fields": {"nom_de_la_commune": "ETERVILLE", "libell_d_acheminement": "ETERVILLE", "code_postal": "14930", "coordonnees_gps": [49.1299717664, -0.432158841819], "code_commune_insee": "14254"}, "geometry": {"type": "Point", "coordinates": [-0.432158841819, 49.1299717664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7062b9f9e26c6c7a2e24d17e013b4e385feca3d2", "fields": {"nom_de_la_commune": "LE FAULQ", "libell_d_acheminement": "LE FAULQ", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14261"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9e152b8505087b6929001a483c652684c577e66", "fields": {"nom_de_la_commune": "FONTAINE LE PIN", "libell_d_acheminement": "FONTAINE LE PIN", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14276"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28f548bd232962e78430be78ac7a7e6760b9107", "fields": {"nom_de_la_commune": "FOURNEAUX LE VAL", "libell_d_acheminement": "FOURNEAUX LE VAL", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14284"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15af98dabbaf1d0d88196809e28c8f6d1b396110", "fields": {"nom_de_la_commune": "FRESNEY LE PUCEUX", "libell_d_acheminement": "FRESNEY LE PUCEUX", "code_postal": "14680", "coordonnees_gps": [49.0558845153, -0.321596506267], "code_commune_insee": "14290"}, "geometry": {"type": "Point", "coordinates": [-0.321596506267, 49.0558845153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a689426da77f283994c7a1a033d3b73151a6832", "fields": {"nom_de_la_commune": "FRESNEY LE VIEUX", "libell_d_acheminement": "FRESNEY LE VIEUX", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14291"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0f3fd1c9bd7a869a92ce38d5904155c44855439", "fields": {"nom_de_la_commune": "LE GAST", "libell_d_acheminement": "LE GAST", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14296"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b283679bc43d09c45e9c2655d893f02f203fbf96", "fields": {"nom_de_la_commune": "GIBERVILLE", "libell_d_acheminement": "GIBERVILLE", "code_postal": "14730", "coordonnees_gps": [49.1778233329, -0.286397043342], "code_commune_insee": "14301"}, "geometry": {"type": "Point", "coordinates": [-0.286397043342, 49.1778233329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac85564a893f7efeb0be75c81e6d1a12845c11c", "fields": {"nom_de_la_commune": "GLANVILLE", "libell_d_acheminement": "GLANVILLE", "code_postal": "14950", "coordonnees_gps": [49.2830960197, 0.0921245287823], "code_commune_insee": "14302"}, "geometry": {"type": "Point", "coordinates": [0.0921245287823, 49.2830960197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a40ebcc6343b6498a3bfc5b2f04c8ac82c9e6393", "fields": {"nom_de_la_commune": "GOUVIX", "libell_d_acheminement": "GOUVIX", "code_postal": "14680", "coordonnees_gps": [49.0558845153, -0.321596506267], "code_commune_insee": "14309"}, "geometry": {"type": "Point", "coordinates": [-0.321596506267, 49.0558845153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3cdff214e04b81ddeba459adc2d2b036f559475", "fields": {"nom_de_la_commune": "GRAINVILLE SUR ODON", "libell_d_acheminement": "GRAINVILLE SUR ODON", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14311"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb7913282f415dcd15c644f275b1533867e0d956", "fields": {"code_postal": "14450", "code_commune_insee": "14312", "libell_d_acheminement": "GRANDCAMP MAISY", "ligne_5": "MAISY", "nom_de_la_commune": "GRANDCAMP MAISY", "coordonnees_gps": [49.3773022601, -1.01912663237]}, "geometry": {"type": "Point", "coordinates": [-1.01912663237, 49.3773022601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a415a1ed2929828bb102753f9c22182b2a50a57", "fields": {"code_postal": "14600", "code_commune_insee": "14333", "libell_d_acheminement": "HONFLEUR", "ligne_5": "VASOUY", "nom_de_la_commune": "HONFLEUR", "coordonnees_gps": [49.3903552153, 0.241678986745]}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9f249c3da945afa2c5fb4ca1c355b8c24ba2e15", "fields": {"code_postal": "14430", "code_commune_insee": "14335", "libell_d_acheminement": "HOTOT EN AUGE", "ligne_5": "LE HAM", "nom_de_la_commune": "HOTOT EN AUGE", "coordonnees_gps": [49.2183532057, -0.0305664652154]}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e59c14715f73a0f24b3119a35799c0f0c04a0b6", "fields": {"nom_de_la_commune": "HUBERT FOLIE", "libell_d_acheminement": "HUBERT FOLIE", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14339"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8641b69e14b74a146e5f04fcffafbe548cc70a4c", "fields": {"nom_de_la_commune": "JURQUES", "libell_d_acheminement": "JURQUES", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14347"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be3bb97ce28050b8bd4d8679e50a2d2ac99d32d8", "fields": {"nom_de_la_commune": "LANTHEUIL", "libell_d_acheminement": "LANTHEUIL", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14355"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbe5819cdf0f8f86dccb540a76ebd1da04b6e2ce", "fields": {"nom_de_la_commune": "LESSARD ET LE CHENE", "libell_d_acheminement": "LESSARD ET LE CHENE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14362"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8addd04f29bb1b615ff6d2d51c9192ec321688ba", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "CHEFFREVILLE TONNENCOURT", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05a3997b7cf1baa612b7642715a0492d562676c4", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "FERVAQUES", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b7ba8b91f2511bfee675028edb55a9987a29881", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LE MESNIL DURAND", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2740d0d7f11e81c37622cf6d9e0436f889bf093c", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LIVAROT", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b12513c3b5c352eb75fde6aa980225ebd79b0ac", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "NOTRE DAME DE COURSON", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c466b3ba317100a6e42ef80ea8582c4e4a7f51d2", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "ST OUEN LE HOUX", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4d04cba6d8215819a6d61e4f7b3b8abc230336", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "TORTISAMBERT", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "becf9c4eb4c31112326719f94789fc85b135e821", "fields": {"code_postal": "14290", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "PREAUX ST SEBASTIEN", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c8001c821f012410f22903a6e3d4a83517c818", "fields": {"nom_de_la_commune": "LIVRY", "libell_d_acheminement": "LIVRY", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14372"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22522a66b3fd27e088be266fadaffe39d6cada07", "fields": {"nom_de_la_commune": "LES LOGES SAULCES", "libell_d_acheminement": "LES LOGES SAULCES", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14375"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d3980b8a14567973557b80e94bc8a4731863a5", "fields": {"nom_de_la_commune": "LONGUEVILLE", "libell_d_acheminement": "LONGUEVILLE", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14378"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5225c26ebea54ad6624adce0acd530f4916ff7b0", "fields": {"nom_de_la_commune": "MAGNY EN BESSIN", "libell_d_acheminement": "MAGNY EN BESSIN", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14385"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558b95896499e58a67176dd0d2e77f1fdf9100a1", "fields": {"nom_de_la_commune": "MAGNY LE FREULE", "libell_d_acheminement": "MAGNY LE FREULE", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14387"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d97fdc2b5842fefd918fe6c1dd59abe969ced1", "fields": {"nom_de_la_commune": "MAIZIERES", "libell_d_acheminement": "MAIZIERES", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14394"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d83ef70aaa29b17bf6f09dff88a80b0bbb137c", "fields": {"nom_de_la_commune": "MANERBE", "libell_d_acheminement": "MANERBE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14398"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c27078964fd79dc739eb54bdf1153cb9b283556", "fields": {"nom_de_la_commune": "LE MARAIS LA CHAPELLE", "libell_d_acheminement": "LE MARAIS LA CHAPELLE", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14402"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c0720c1d7f4cb6c0a6b98e92e51204ded5b3830", "fields": {"nom_de_la_commune": "MARTRAGNY", "libell_d_acheminement": "MARTRAGNY", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14406"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b698b0d9894bdd2e388060d7757b69cf8330d48b", "fields": {"nom_de_la_commune": "MERY CORBON", "libell_d_acheminement": "MERY CORBON", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14410"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "473ae8866487262981f22822988aed29645b6350", "fields": {"nom_de_la_commune": "MESLAY", "libell_d_acheminement": "MESLAY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14411"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34acd682536386859f89e8023fbb8af61778d701", "fields": {"nom_de_la_commune": "LE MESNIL AU GRAIN", "libell_d_acheminement": "LE MESNIL AU GRAIN", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14412"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b46322e0857d512a122292328378ceb5c273ee8", "fields": {"nom_de_la_commune": "MESNIL CLINCHAMPS", "libell_d_acheminement": "MESNIL CLINCHAMPS", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14417"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6718869ed6852d9ad799f8c047d10c7288224b17", "fields": {"nom_de_la_commune": "LE MESNIL SIMON", "libell_d_acheminement": "LE MESNIL SIMON", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14425"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80528fc6428887851e657d6b0d07c9e9fd338cd7", "fields": {"code_postal": "14270", "code_commune_insee": "14431", "libell_d_acheminement": "MEZIDON CANON", "ligne_5": "CANON", "nom_de_la_commune": "MEZIDON CANON", "coordonnees_gps": [49.0749683297, -0.0575716776042]}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76fef953179bd6dab688baff9bf9c0ac2c4eb1c", "fields": {"nom_de_la_commune": "LES MONCEAUX", "libell_d_acheminement": "LES MONCEAUX", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14435"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c93d3bf05269ff55bb234544c90b98263da6f5", "fields": {"nom_de_la_commune": "MONFREVILLE", "libell_d_acheminement": "MONFREVILLE", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14439"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "babaac342e34a214696466011fe9a838dfb107e4", "fields": {"nom_de_la_commune": "MOSLES", "libell_d_acheminement": "MOSLES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14453"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54d96b701c278aa4693b07a354c0d428583d23f0", "fields": {"nom_de_la_commune": "MOULINES", "libell_d_acheminement": "MOULINES", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14455"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a9ff7c6c0a36913f505e2a69be937ee48d57e6", "fields": {"nom_de_la_commune": "MOULT", "libell_d_acheminement": "MOULT", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14456"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8edbf8f8f7d7cda4b2192a4b206f568b452ddab", "fields": {"nom_de_la_commune": "NONANT", "libell_d_acheminement": "NONANT", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14465"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b1359b3a297910bb7241c84d232dabaf6266eb", "fields": {"nom_de_la_commune": "NORON LA POTERIE", "libell_d_acheminement": "NORON LA POTERIE", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14468"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a223987a171d3f6c0f9c3633b1d59fc216d062c3", "fields": {"nom_de_la_commune": "NOYERS MISSY", "libell_d_acheminement": "NOYERS MISSY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14475"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d514f9f9f22e613e59981d0c8a2202fafec6afec", "fields": {"code_postal": "14210", "code_commune_insee": "14475", "libell_d_acheminement": "NOYERS MISSY", "ligne_5": "MISSY", "nom_de_la_commune": "NOYERS MISSY", "coordonnees_gps": [49.1001637748, -0.508327897598]}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92266437b23f05b8c7e983ed70a7bba6092d6f95", "fields": {"nom_de_la_commune": "PERIGNY", "libell_d_acheminement": "PERIGNY", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14496"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eccb8959b4a3ae01efdcda3733bc92d596cd908b", "fields": {"nom_de_la_commune": "PONT BELLANGER", "libell_d_acheminement": "PONT BELLANGER", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14511"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76422594cc6e7a4e2770a3b779b1ce3853ddc025", "fields": {"nom_de_la_commune": "PONT L EVEQUE", "libell_d_acheminement": "PONT L EVEQUE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14514"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e259d0ee200a2405ea30c8a521bc304f3ae8ad", "fields": {"nom_de_la_commune": "LE PRE D AUGE", "libell_d_acheminement": "LE PRE D AUGE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14520"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da67f18890b75f299914e63c7e2b7c53633d85df", "fields": {"nom_de_la_commune": "RANVILLE", "libell_d_acheminement": "RANVILLE", "code_postal": "14860", "coordonnees_gps": [49.2320742988, -0.215810077728], "code_commune_insee": "14530"}, "geometry": {"type": "Point", "coordinates": [-0.215810077728, 49.2320742988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5460e1da7e8a8efd8b19d2e6892fe1072cdae12", "fields": {"nom_de_la_commune": "REPENTIGNY", "libell_d_acheminement": "REPENTIGNY", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14533"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed13cccdca0cf67ea987bb64a731f2bc97c959cb", "fields": {"nom_de_la_commune": "REUX", "libell_d_acheminement": "REUX", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14534"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ef94b4cdcbcbbe678c9b861ea89b765edb695c", "fields": {"code_postal": "14740", "code_commune_insee": "14543", "libell_d_acheminement": "ROTS", "ligne_5": "SECQUEVILLE EN BESSIN", "nom_de_la_commune": "ROTS", "coordonnees_gps": [49.2134618013, -0.521360272238]}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb5af98254e60da00b307bc6d9f0b10c56e2ecb0", "fields": {"nom_de_la_commune": "ROUCAMPS", "libell_d_acheminement": "ROUCAMPS", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14544"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "332d787a966627ead4d106f885309b3711e04f10", "fields": {"nom_de_la_commune": "RUCQUEVILLE", "libell_d_acheminement": "RUCQUEVILLE", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14548"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e320ec00a9dfd6520de376346171c89683c7948d", "fields": {"nom_de_la_commune": "RUSSY", "libell_d_acheminement": "RUSSY", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14551"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdedbec5df779a7a81aab23529ebec363c24edaf", "fields": {"nom_de_la_commune": "ST ANDRE SUR ORNE", "libell_d_acheminement": "ST ANDRE SUR ORNE", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14556"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd2c4f13162253e5e4b658e1e682c46e29421f4", "fields": {"nom_de_la_commune": "ST CONTEST", "libell_d_acheminement": "ST CONTEST", "code_postal": "14280", "coordonnees_gps": [49.2095685958, -0.412342557701], "code_commune_insee": "14566"}, "geometry": {"type": "Point", "coordinates": [-0.412342557701, 49.2095685958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "517ddce4d1f4e08fc740c412283aeccb37b81813", "fields": {"code_postal": "14290", "code_commune_insee": "14570", "libell_d_acheminement": "VALORBIQUET", "ligne_5": "LA CHAPELLE YVON", "nom_de_la_commune": "VALORBIQUET", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90b4e202ed526db91845de3a3d3a3e229c56ce33", "fields": {"code_postal": "14290", "code_commune_insee": "14570", "libell_d_acheminement": "VALORBIQUET", "ligne_5": "ST JULIEN DE MAILLOC", "nom_de_la_commune": "VALORBIQUET", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e132d65efef029331e11cc3b1cd2c0a963d46a58", "fields": {"nom_de_la_commune": "ST DENIS DE MERE", "libell_d_acheminement": "ST DENIS DE MERE", "code_postal": "14110", "coordonnees_gps": [48.8603879133, -0.538857121596], "code_commune_insee": "14572"}, "geometry": {"type": "Point", "coordinates": [-0.538857121596, 48.8603879133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b50e633bf6ffb6ac14dd3028d5172717d8ed6a26", "fields": {"nom_de_la_commune": "ST GABRIEL BRECY", "libell_d_acheminement": "ST GABRIEL BRECY", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14577"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8cbfdd1010958d9763dadf6274b8832896ce8da", "fields": {"nom_de_la_commune": "STE HONORINE DES PERTES", "libell_d_acheminement": "STE HONORINE DES PERTES", "code_postal": "14520", "coordonnees_gps": [49.3400701436, -0.771788294928], "code_commune_insee": "14591"}, "geometry": {"type": "Point", "coordinates": [-0.771788294928, 49.3400701436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "802bf8887533cf4cb308d6ec6c42c2b39635c7f1", "fields": {"nom_de_la_commune": "ST JEAN DE LIVET", "libell_d_acheminement": "ST JEAN DE LIVET", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14595"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27eedfa8b6c3d34b4a0d69f568359d7768fdb34", "fields": {"nom_de_la_commune": "ST JEAN LE BLANC", "libell_d_acheminement": "ST JEAN LE BLANC", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14597"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fcdea85ecceb3742e4b51ef8c5af8b28ad6da1d", "fields": {"nom_de_la_commune": "ST LAURENT DE CONDEL", "libell_d_acheminement": "ST LAURENT DE CONDEL", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14603"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7291509b79a0ed62c90918d85fd1ba8b963cf75", "fields": {"code_postal": "14740", "code_commune_insee": "14610", "libell_d_acheminement": "ST MANVIEU NORREY", "ligne_5": "NORREY EN BESSIN", "nom_de_la_commune": "ST MANVIEU NORREY", "coordonnees_gps": [49.2134618013, -0.521360272238]}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "308d45105efa6f715c4e176354b1fe615fb3231f", "fields": {"nom_de_la_commune": "STE MARGUERITE DE VIETTE", "libell_d_acheminement": "STE MARGUERITE DE VIETTE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14616"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "085bf187200c2746df91ff31e9f475f14c3459a3", "fields": {"nom_de_la_commune": "ST MARTIN AUX CHARTRAINS", "libell_d_acheminement": "ST MARTIN AUX CHARTRAINS", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14620"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2106ab19466599a06c9702d7faa601d8026f6593", "fields": {"nom_de_la_commune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE", "libell_d_acheminement": "ST MARTIN BIENFAITE CRESSONNIERE", "code_postal": "14290", "coordonnees_gps": [49.0265084607, 0.343255889354], "code_commune_insee": "14621"}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee8d884689d0efeb61a01b1cb55804cdecc8e4e9", "fields": {"code_postal": "14290", "code_commune_insee": "14621", "libell_d_acheminement": "ST MARTIN BIENFAITE CRESSONNIERE", "ligne_5": "LA CRESSONNIERE", "nom_de_la_commune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a3e6223b3cd278f86795ad3eee3056709606528", "fields": {"nom_de_la_commune": "ST MARTIN DE MIEUX", "libell_d_acheminement": "ST MARTIN DE MIEUX", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14627"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "839c45a9b3e63cad1cbd092dfb27a99538a93334", "fields": {"nom_de_la_commune": "ST PIERRE DU BU", "libell_d_acheminement": "ST PIERRE DU BU", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14649"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4814f7dec9ec1fc5ea43fb5945bfc9df8c1ffb1c", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "14570", "coordonnees_gps": [48.9153171843, -0.506427417582], "code_commune_insee": "14656"}, "geometry": {"type": "Point", "coordinates": [-0.506427417582, 48.9153171843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b382e747ac489d0e5cf7c61afbfa840b516bcbfb", "fields": {"nom_de_la_commune": "PREZ", "libell_d_acheminement": "PREZ", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08344"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f11acba9b664ef152caffe94a1934368a21ed5", "fields": {"code_postal": "08240", "code_commune_insee": "08437", "libell_d_acheminement": "TAILLY", "ligne_5": "ANDEVANNE", "nom_de_la_commune": "TAILLY", "coordonnees_gps": [49.4367865299, 4.95899557171]}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6653d52308674fb52b96c9f264c53d793c0ba70", "fields": {"nom_de_la_commune": "TREMBLOIS LES CARIGNAN", "libell_d_acheminement": "TREMBLOIS LES CARIGNAN", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08459"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9325229d917f2a1a3977b0507f5e1b511f995253", "fields": {"nom_de_la_commune": "TERRON SUR AISNE", "libell_d_acheminement": "TERRON SUR AISNE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08443"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfcf74105bc7dd92a23406756041081eccac1a8b", "fields": {"nom_de_la_commune": "THUGNY TRUGNY", "libell_d_acheminement": "THUGNY TRUGNY", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08452"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9780dc6986d8f3229f0cf3c4c5569f05e91fb18", "fields": {"nom_de_la_commune": "STONNE", "libell_d_acheminement": "STONNE", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08430"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22bff2a8cb66848f98dca556596dfd89f5d0b8c9", "fields": {"nom_de_la_commune": "TAILLY", "libell_d_acheminement": "TAILLY", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08437"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3cf10c49fa4eb040ad40e42c504857ba5c1becf", "fields": {"nom_de_la_commune": "THILAY", "libell_d_acheminement": "THILAY", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08448"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1e09f9166403116f8e46e6216d798c7862a5f5", "fields": {"nom_de_la_commune": "THIS", "libell_d_acheminement": "THIS", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08450"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "517fc36891589d06465e79fa2d727c2d73701b23", "fields": {"nom_de_la_commune": "SY", "libell_d_acheminement": "SY", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08434"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27ed36ca8ac1500cbf59a6c64eda9818022b7a23", "fields": {"code_postal": "10190", "code_commune_insee": "10003", "libell_d_acheminement": "AIX VILLEMAUR PALIS", "ligne_5": "VILLEMAUR SUR VANNE", "nom_de_la_commune": "AIX VILLEMAUR PALIS", "coordonnees_gps": [48.249510935, 3.83670117751]}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa1758d6dd13d17e64f8cf9c0880dd676225f734", "fields": {"nom_de_la_commune": "AIX VILLEMAUR PALIS", "libell_d_acheminement": "AIX VILLEMAUR PALIS", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10003"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13c808f978a1377acde9f43c7d1b72c55033902", "fields": {"nom_de_la_commune": "THOUARS SUR ARIZE", "libell_d_acheminement": "THOUARS SUR ARIZE", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09310"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97100bae17bd6af8c884c4dc73d47ee41a7d77e5", "fields": {"nom_de_la_commune": "SERRES SUR ARGET", "libell_d_acheminement": "SERRES SUR ARGET", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09293"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74bcbaa251c213c33da589a2754d8c740ae560e1", "fields": {"nom_de_la_commune": "TROYE D ARIEGE", "libell_d_acheminement": "TROYE D ARIEGE", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09316"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea4d6bc1e71453916a2eab0fd7078dae3d8f9d6e", "fields": {"nom_de_la_commune": "VERNAJOUL", "libell_d_acheminement": "VERNAJOUL", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09329"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38d01b94987f3a43bd0b45f38a7175bc38f88f6", "fields": {"nom_de_la_commune": "VERNAUX", "libell_d_acheminement": "VERNAUX", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09330"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06cabc6bf89d333cf0f83292f33c5daa22cc8e86", "fields": {"nom_de_la_commune": "SIEURAS", "libell_d_acheminement": "SIEURAS", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09294"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b5f5b04f4763617f53e7bb9630a2bc5b5a15a6f", "fields": {"nom_de_la_commune": "SIGUER", "libell_d_acheminement": "SIGUER", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09295"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1476044f7d5b1b3d26f02073049a777d74278bcb", "fields": {"nom_de_la_commune": "SOULAN", "libell_d_acheminement": "SOULAN", "code_postal": "09320", "coordonnees_gps": [42.8796957466, 1.34694172937], "code_commune_insee": "09301"}, "geometry": {"type": "Point", "coordinates": [1.34694172937, 42.8796957466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde4334883518022f408dcc258325498072ce011", "fields": {"code_postal": "08270", "code_commune_insee": "08472", "libell_d_acheminement": "VIEL ST REMY", "ligne_5": "MARGY", "nom_de_la_commune": "VIEL ST REMY", "coordonnees_gps": [49.6013662608, 4.45102282302]}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182af1355b863b1667b7bd2deb894042ef89ef41", "fields": {"nom_de_la_commune": "VIREUX WALLERAND", "libell_d_acheminement": "VIREUX WALLERAND", "code_postal": "08320", "coordonnees_gps": [50.0723012487, 4.74304215812], "code_commune_insee": "08487"}, "geometry": {"type": "Point", "coordinates": [4.74304215812, 50.0723012487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9166a43276892bf83617c96c5b2692e0784b085f", "fields": {"nom_de_la_commune": "VILLERS SUR BAR", "libell_d_acheminement": "VILLERS SUR BAR", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08481"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2be93b2e84bf92d75b0f04184bcfba4cb6c2cc87", "fields": {"nom_de_la_commune": "VILLE SUR LUMES", "libell_d_acheminement": "VILLE SUR LUMES", "code_postal": "08440", "coordonnees_gps": [49.7465336406, 4.81357930291], "code_commune_insee": "08483"}, "geometry": {"type": "Point", "coordinates": [4.81357930291, 49.7465336406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6d855190fb05f94899e00cf9e732611a0cc24c", "fields": {"nom_de_la_commune": "VAUX CHAMPAGNE", "libell_d_acheminement": "VAUX CHAMPAGNE", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08462"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bdbdf6331b80b5e84b46230ee737c74f2766848", "fields": {"nom_de_la_commune": "VAUX MONTREUIL", "libell_d_acheminement": "VAUX MONTREUIL", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08467"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a11aca1cdeced166c79e9b23cec2951d97c3d615", "fields": {"nom_de_la_commune": "WARNECOURT", "libell_d_acheminement": "WARNECOURT", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08498"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b22259ead9b74ca3c9079a51ed56c99548b9fa", "fields": {"nom_de_la_commune": "L AIGUILLON", "libell_d_acheminement": "L AIGUILLON", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09003"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa766e433c3f13b6314679172e28342cb71696d", "fields": {"nom_de_la_commune": "WIGNICOURT", "libell_d_acheminement": "WIGNICOURT", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08500"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e6e958dcca4153812f9959a25c89c637f0ab7a", "fields": {"nom_de_la_commune": "VENDRESSE", "libell_d_acheminement": "VENDRESSE", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08469"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac57559bf80e95d53524c8585cc4e9d0acf6da6b", "fields": {"code_postal": "09140", "code_commune_insee": "09100", "libell_d_acheminement": "COUFLENS", "ligne_5": "SALAU", "nom_de_la_commune": "COUFLENS", "coordonnees_gps": [42.7992501708, 1.2327189582]}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59dfe1e2bd871349471985aabcb8f3f2f517d0e9", "fields": {"code_postal": "09600", "code_commune_insee": "09107", "libell_d_acheminement": "DUN", "ligne_5": "ENGRAVIES", "nom_de_la_commune": "DUN", "coordonnees_gps": [42.9966813157, 1.86782868426]}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89628b6d68bb6e08226e47327b7720a6d1413077", "fields": {"nom_de_la_commune": "FERRIERES SUR ARIEGE", "libell_d_acheminement": "FERRIERES SUR ARIEGE", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09121"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c65a6f9ad3c83d80baf88796e9d9f6afe1fb629a", "fields": {"nom_de_la_commune": "DAUMAZAN SUR ARIZE", "libell_d_acheminement": "DAUMAZAN SUR ARIZE", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09105"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "856e4e5dd60b10a0d71b043e10dbfea5c0367d7b", "fields": {"nom_de_la_commune": "DURBAN SUR ARIZE", "libell_d_acheminement": "DURBAN SUR ARIZE", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09108"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd0656a87485b338a552f9a6c5b52f4475e9050", "fields": {"nom_de_la_commune": "CRAMPAGNA", "libell_d_acheminement": "CRAMPAGNA", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09103"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed28f4e58030a15e810efafa39d2f44a24edce27", "fields": {"nom_de_la_commune": "LE FOSSAT", "libell_d_acheminement": "LE FOSSAT", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09124"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d60dda0af525875766509a208f534c270461d9", "fields": {"nom_de_la_commune": "COUFLENS", "libell_d_acheminement": "COUFLENS", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09100"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799c5c3da3802a5ced30e5c3c4bff515be3a50bb", "fields": {"nom_de_la_commune": "EYCHEIL", "libell_d_acheminement": "EYCHEIL", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09119"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02299c734c2187a367c1f550e4ea27ab151b6007", "fields": {"nom_de_la_commune": "DALOU", "libell_d_acheminement": "DALOU", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09104"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f898f011f71f0ef44d614aa9c96d55a206a7ead7", "fields": {"nom_de_la_commune": "LEZAT SUR LEZE", "libell_d_acheminement": "LEZAT SUR LEZE", "code_postal": "09210", "coordonnees_gps": [43.2658077144, 1.36518366912], "code_commune_insee": "09167"}, "geometry": {"type": "Point", "coordinates": [1.36518366912, 43.2658077144]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2974403e9e65dacb1584574a1a7608ec74f5b13c", "fields": {"nom_de_la_commune": "LIMBRASSAC", "libell_d_acheminement": "LIMBRASSAC", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09169"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21951ed41260688921452cfc1229ff98b7c32276", "fields": {"nom_de_la_commune": "MONTARDIT", "libell_d_acheminement": "MONTARDIT", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09198"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0716724c1ff6ff8fe2688afad786c3246747bdf4", "fields": {"nom_de_la_commune": "LASSERRE", "libell_d_acheminement": "LASSERRE", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09158"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac178c7e378aabc3e5fd3daad960d321babf460", "fields": {"nom_de_la_commune": "LABATUT", "libell_d_acheminement": "LABATUT", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09147"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49c8a7f7844b15e200da6ab844f75ee0186f6f1", "fields": {"nom_de_la_commune": "LUZENAC", "libell_d_acheminement": "LUZENAC", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09176"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7714a7d174f93d7100c40ee43ce07d1d314c022", "fields": {"nom_de_la_commune": "MALLEON", "libell_d_acheminement": "MALLEON", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09179"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2eb3f9eb651b95a9e2ff9e44f202f2520772252", "fields": {"nom_de_la_commune": "GESTIES", "libell_d_acheminement": "GESTIES", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09134"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b5d630e5b81bccace344181b713dbf3f0c985d", "fields": {"nom_de_la_commune": "MAZERES", "libell_d_acheminement": "MAZERES", "code_postal": "09270", "coordonnees_gps": [43.2305726862, 1.6788901115], "code_commune_insee": "09185"}, "geometry": {"type": "Point", "coordinates": [1.6788901115, 43.2305726862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "273dca01f5c838d6e45e6c2d079e7cbf10cdb277", "fields": {"nom_de_la_commune": "GANAC", "libell_d_acheminement": "GANAC", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09130"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23875c141aeae1f0b4d3b8c5b57db8ee9dd564f6", "fields": {"nom_de_la_commune": "CARLA BAYLE", "libell_d_acheminement": "CARLA BAYLE", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09079"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d274430ed20f73faaf705f5bc98ec7db55c324cc", "fields": {"nom_de_la_commune": "LE CARLARET", "libell_d_acheminement": "LE CARLARET", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09081"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20da3f569681f1a822fdb1d1eb410adfc8080227", "fields": {"nom_de_la_commune": "BOUSSENAC", "libell_d_acheminement": "BOUSSENAC", "code_postal": "09320", "coordonnees_gps": [42.8796957466, 1.34694172937], "code_commune_insee": "09065"}, "geometry": {"type": "Point", "coordinates": [1.34694172937, 42.8796957466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df5da6a7e796460965015be509d7b6d3da2b8b69", "fields": {"nom_de_la_commune": "CLERMONT", "libell_d_acheminement": "CLERMONT", "code_postal": "09420", "coordonnees_gps": [42.9874247202, 1.30308846281], "code_commune_insee": "09097"}, "geometry": {"type": "Point", "coordinates": [1.30308846281, 42.9874247202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e94464743b4ce4540d6c3dd10809c4bdd25087e", "fields": {"nom_de_la_commune": "CONTRAZY", "libell_d_acheminement": "CONTRAZY", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09098"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16aa2c04dc941e04919b410dd367849f2c965764", "fields": {"nom_de_la_commune": "BELESTA", "libell_d_acheminement": "BELESTA", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09047"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "745734794ce751579288d2fd2e662815b68cf113", "fields": {"nom_de_la_commune": "CAZAVET", "libell_d_acheminement": "CAZAVET", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09091"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9bbbbb0b975d043910fd15f1137c8599db31886", "fields": {"nom_de_la_commune": "BONNAC", "libell_d_acheminement": "BONNAC", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09060"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13269c04cfcc48e6ab3c135a1ac6eaf88a81bbdd", "fields": {"nom_de_la_commune": "CASTEX", "libell_d_acheminement": "CASTEX", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09084"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7a732b05d8b8395818da36163f43582598ca60", "fields": {"nom_de_la_commune": "CAMON", "libell_d_acheminement": "CAMON", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09074"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8231d9a87986f3f633f4d05585ef4ee2ebe61fd", "fields": {"nom_de_la_commune": "MONTEGUT EN COUSERANS", "libell_d_acheminement": "MONTEGUT EN COUSERANS", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09201"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0c9955cda8242649d55828f6793e727d3bc9b84", "fields": {"nom_de_la_commune": "MONTSEGUR", "libell_d_acheminement": "MONTSEGUR", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09211"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b76e98740e96263d7f5acbbf1782a1062d7bc8", "fields": {"nom_de_la_commune": "MONTGAUCH", "libell_d_acheminement": "MONTGAUCH", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09208"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b372afb93221ce71cab1af523b7a9e6be5d7b7a", "fields": {"nom_de_la_commune": "PRADETTES", "libell_d_acheminement": "PRADETTES", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09233"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6329383ed6ab2efed5719c1acd9ac50e488beca7", "fields": {"nom_de_la_commune": "LE PUCH", "libell_d_acheminement": "LE PUCH", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09237"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0e887ed6c2035d597ac0ed899eb8c076f3751c", "fields": {"nom_de_la_commune": "LE PLA", "libell_d_acheminement": "LE PLA", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09230"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e80c3f1b404f694f6dc3abad8e4d91551dd803", "fields": {"nom_de_la_commune": "MOULIS", "libell_d_acheminement": "MOULIS", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09214"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1db3f92a964a946cd03786a400964cbe998ec17", "fields": {"nom_de_la_commune": "NESCUS", "libell_d_acheminement": "NESCUS", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09216"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd4bd2b6e8b30a96ad2a5002b5dc1f7f94f0e5f8", "fields": {"nom_de_la_commune": "ORGEIX", "libell_d_acheminement": "ORGEIX", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09218"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275d4bed79c09e9795c2c8337ceba66bbd6e4a19", "fields": {"nom_de_la_commune": "NIAUX", "libell_d_acheminement": "NIAUX", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09217"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8216f365a0bef246c895d8184621144037b195f3", "fields": {"nom_de_la_commune": "DOLANCOURT", "libell_d_acheminement": "DOLANCOURT", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10126"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0115f019ec3e3421e2aa861ee1babb117fe28399", "fields": {"nom_de_la_commune": "CUSSANGY", "libell_d_acheminement": "CUSSANGY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10120"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80a4491492967c2c6423f623923b04a3b50d62e2", "fields": {"nom_de_la_commune": "CUNFIN", "libell_d_acheminement": "CUNFIN", "code_postal": "10360", "coordonnees_gps": [48.0604806131, 4.60332287539], "code_commune_insee": "10119"}, "geometry": {"type": "Point", "coordinates": [4.60332287539, 48.0604806131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ebab59ec080c8a274dcdd14e53f2f9a262cb9a4", "fields": {"code_postal": "45100", "code_commune_insee": "45234", "libell_d_acheminement": "ORLEANS", "ligne_5": "LA SOURCE", "nom_de_la_commune": "ORLEANS", "coordonnees_gps": [47.8826248233, 1.91635582903]}, "geometry": {"type": "Point", "coordinates": [1.91635582903, 47.8826248233]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74238f7a8ad2eb9ae011289e60774192faf5661b", "fields": {"nom_de_la_commune": "ORVILLE", "libell_d_acheminement": "ORVILLE", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45237"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8c11e3624f7fd8b377f1a87785c71f31f2893e", "fields": {"nom_de_la_commune": "OUSSON SUR LOIRE", "libell_d_acheminement": "OUSSON SUR LOIRE", "code_postal": "45250", "coordonnees_gps": [47.6666483755, 2.7989341243], "code_commune_insee": "45238"}, "geometry": {"type": "Point", "coordinates": [2.7989341243, 47.6666483755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40dd49f6c78ac6b3d4a2e7fcf333ac3bb941464f", "fields": {"code_postal": "45480", "code_commune_insee": "45240", "libell_d_acheminement": "OUTARVILLE", "ligne_5": "ALLAINVILLE EN BEAUCE", "nom_de_la_commune": "OUTARVILLE", "coordonnees_gps": [48.2104328363, 2.06032110325]}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b1fab04c6344c1cd0092b3637a8e87c62c8475", "fields": {"nom_de_la_commune": "OUZOUER SOUS BELLEGARDE", "libell_d_acheminement": "OUZOUER SOUS BELLEGARDE", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45243"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d95a16f35bda24d2524a06e4e3a121258d9e0d", "fields": {"nom_de_la_commune": "OUZOUER SUR TREZEE", "libell_d_acheminement": "OUZOUER SUR TREZEE", "code_postal": "45250", "coordonnees_gps": [47.6666483755, 2.7989341243], "code_commune_insee": "45245"}, "geometry": {"type": "Point", "coordinates": [2.7989341243, 47.6666483755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9a775db4d2868c48f7174e5195613193b40d9f2", "fields": {"nom_de_la_commune": "PITHIVIERS", "libell_d_acheminement": "PITHIVIERS", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45252"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de7dd28228904a9f4fb71cf40ab1ab8ee0dc883", "fields": {"nom_de_la_commune": "RAMOULU", "libell_d_acheminement": "RAMOULU", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45260"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5cd54e446c68c5679e70c5a530c66a6e14af168", "fields": {"nom_de_la_commune": "ST DENIS DE L HOTEL", "libell_d_acheminement": "ST DENIS DE L HOTEL", "code_postal": "45550", "coordonnees_gps": [47.8830814884, 2.1536101469], "code_commune_insee": "45273"}, "geometry": {"type": "Point", "coordinates": [2.1536101469, 47.8830814884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b65559cf00a5d66d9b0c977f1bcdf4ec881d8ee", "fields": {"nom_de_la_commune": "ST DENIS EN VAL", "libell_d_acheminement": "ST DENIS EN VAL", "code_postal": "45560", "coordonnees_gps": [47.8809759841, 1.97258529438], "code_commune_insee": "45274"}, "geometry": {"type": "Point", "coordinates": [1.97258529438, 47.8809759841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01d2348a245cb3d63138eac8ed65b68ae88e303", "fields": {"nom_de_la_commune": "ST HILAIRE ST MESMIN", "libell_d_acheminement": "ST HILAIRE ST MESMIN", "code_postal": "45160", "coordonnees_gps": [47.8140032252, 1.87690042129], "code_commune_insee": "45282"}, "geometry": {"type": "Point", "coordinates": [1.87690042129, 47.8140032252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e8209cba07ae8af2cecd39f4ecf2e693679c12", "fields": {"nom_de_la_commune": "ST JEAN DE BRAYE", "libell_d_acheminement": "ST JEAN DE BRAYE", "code_postal": "45800", "coordonnees_gps": [47.9164571685, 1.97410766394], "code_commune_insee": "45284"}, "geometry": {"type": "Point", "coordinates": [1.97410766394, 47.9164571685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60d1c116046b884a7b0705ca81b8ae26ed2729a7", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45294"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdcfd642742f6a16c39a2a40e2bf48b98ec5f3ea", "fields": {"nom_de_la_commune": "ST PERAVY LA COLOMBE", "libell_d_acheminement": "ST PERAVY LA COLOMBE", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45296"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ace933f30fd9c4aa86635a7b778c978cded9530e", "fields": {"nom_de_la_commune": "ST PERE SUR LOIRE", "libell_d_acheminement": "ST PERE SUR LOIRE", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45297"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60c23bd28c5c7ab64f2cc8c22488daa8f06ceaad", "fields": {"nom_de_la_commune": "ST PRYVE ST MESMIN", "libell_d_acheminement": "ST PRYVE ST MESMIN", "code_postal": "45750", "coordonnees_gps": [47.8799809099, 1.85399682798], "code_commune_insee": "45298"}, "geometry": {"type": "Point", "coordinates": [1.85399682798, 47.8799809099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a173dc5dfdaa66a44b2da488c19e95918cfb47", "fields": {"nom_de_la_commune": "SANTEAU", "libell_d_acheminement": "SANTEAU", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45301"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e5a2bc5c109ec6623b2c675dba23ca0f1b072ef", "fields": {"nom_de_la_commune": "SARAN", "libell_d_acheminement": "SARAN", "code_postal": "45770", "coordonnees_gps": [47.9497637523, 1.87835179014], "code_commune_insee": "45302"}, "geometry": {"type": "Point", "coordinates": [1.87835179014, 47.9497637523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c57aad8a4bad196ab7bd1406c81862bba40087d2", "fields": {"nom_de_la_commune": "SCEAUX DU GATINAIS", "libell_d_acheminement": "SCEAUX DU GATINAIS", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45303"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae01c40368ff0c62807a9f594bf723a08c5801f5", "fields": {"nom_de_la_commune": "SIGLOY", "libell_d_acheminement": "SIGLOY", "code_postal": "45110", "coordonnees_gps": [47.8743242491, 2.26314688236], "code_commune_insee": "45311"}, "geometry": {"type": "Point", "coordinates": [2.26314688236, 47.8743242491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a04313c55a5f7382f8337640424a62c06abd42d", "fields": {"nom_de_la_commune": "THIMORY", "libell_d_acheminement": "THIMORY", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45321"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeb8455d314b139ba99e911f913faf018a8d06fd", "fields": {"nom_de_la_commune": "THOU", "libell_d_acheminement": "THOU", "code_postal": "45420", "coordonnees_gps": [47.6034837022, 2.88243398662], "code_commune_insee": "45323"}, "geometry": {"type": "Point", "coordinates": [2.88243398662, 47.6034837022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2654cb253c22306fcba60067199e5b4681f5bb6", "fields": {"nom_de_la_commune": "TIGY", "libell_d_acheminement": "TIGY", "code_postal": "45510", "coordonnees_gps": [47.7639996935, 2.18590511935], "code_commune_insee": "45324"}, "geometry": {"type": "Point", "coordinates": [2.18590511935, 47.7639996935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a688773719c282393cbb625a0d2621e3149e1992", "fields": {"nom_de_la_commune": "TREILLES EN GATINAIS", "libell_d_acheminement": "TREILLES EN GATINAIS", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45328"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55ac008726ce6fb62b8a92f718de28de8d341cf4", "fields": {"nom_de_la_commune": "VIENNE EN VAL", "libell_d_acheminement": "VIENNE EN VAL", "code_postal": "45510", "coordonnees_gps": [47.7639996935, 2.18590511935], "code_commune_insee": "45335"}, "geometry": {"type": "Point", "coordinates": [2.18590511935, 47.7639996935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62f4e85e4128edb94a927d7c0609b18b9d2d32f4", "fields": {"nom_de_la_commune": "VILLEMANDEUR", "libell_d_acheminement": "VILLEMANDEUR", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45338"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307006b82e1611e1ecf80bac99133b77ab6410e1", "fields": {"nom_de_la_commune": "VILLORCEAU", "libell_d_acheminement": "VILLORCEAU", "code_postal": "45190", "coordonnees_gps": [47.8004436022, 1.60034648518], "code_commune_insee": "45344"}, "geometry": {"type": "Point", "coordinates": [1.60034648518, 47.8004436022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6ce73259455f8455273c33c6a143620cb630f5", "fields": {"nom_de_la_commune": "LE CHILLOU", "libell_d_acheminement": "LE CHILLOU", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79089"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272656bfee3a27945bf5e9b511757cd5c1b27404", "fields": {"nom_de_la_commune": "CLAVE", "libell_d_acheminement": "CLAVE", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79092"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e86488bf78be462b4d02cb8ea6a2b872a1d7eba", "fields": {"nom_de_la_commune": "COULONGES THOUARSAIS", "libell_d_acheminement": "COULONGES THOUARSAIS", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79102"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "495dfeff2dc8dd2856bb5ea2a237c04815f983f3", "fields": {"nom_de_la_commune": "COURS", "libell_d_acheminement": "COURS", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79104"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f77be00b989374a03ead78e0fdad4ef16e4d4a2", "fields": {"nom_de_la_commune": "FOMPERRON", "libell_d_acheminement": "FOMPERRON", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79121"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b753a95704a1f70ce236aea93dc01c65cdf4614", "fields": {"code_postal": "79380", "code_commune_insee": "79123", "libell_d_acheminement": "LA FORET SUR SEVRE", "ligne_5": "MONTIGNY", "nom_de_la_commune": "LA FORET SUR SEVRE", "coordonnees_gps": [46.7639583246, -0.657227871413]}, "geometry": {"type": "Point", "coordinates": [-0.657227871413, 46.7639583246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfb002454e68caf2c57394cefa6cef41f67b7228", "fields": {"nom_de_la_commune": "FRONTENAY ROHAN ROHAN", "libell_d_acheminement": "FRONTENAY ROHAN ROHAN", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79130"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8370b71d909bc62a4435973c907c874a685a3363", "fields": {"nom_de_la_commune": "GENNETON", "libell_d_acheminement": "GENNETON", "code_postal": "79150", "coordonnees_gps": [47.0026122608, -0.46748094088], "code_commune_insee": "79132"}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a65b9761c28f03bc985119c59fa671bed24a4620", "fields": {"nom_de_la_commune": "GERMOND ROUVRE", "libell_d_acheminement": "GERMOND ROUVRE", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79133"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4674aea100c1f66ea0690ad977f14fa50cb6a832", "fields": {"nom_de_la_commune": "GOURNAY LOIZE", "libell_d_acheminement": "GOURNAY LOIZE", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79136"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff8ae3b35b0c069a6fdeae86db076710eb186991", "fields": {"nom_de_la_commune": "HANC", "libell_d_acheminement": "HANC", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79140"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95a849978a734404638561c04956402d71b4c813", "fields": {"nom_de_la_commune": "JUSCORPS", "libell_d_acheminement": "JUSCORPS", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79144"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02276ce7553a0d7783c2813ca05fd99506f5eb39", "fields": {"nom_de_la_commune": "LUCHE SUR BRIOUX", "libell_d_acheminement": "LUCHE SUR BRIOUX", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79158"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ad973b18b7404d1a0f1888781509f6e0f48d78", "fields": {"nom_de_la_commune": "MARNES", "libell_d_acheminement": "MARNES", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79167"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25cadc70511e96dc8d73865540098a9ce2dcf20", "fields": {"nom_de_la_commune": "MASSAIS", "libell_d_acheminement": "MASSAIS", "code_postal": "79150", "coordonnees_gps": [47.0026122608, -0.46748094088], "code_commune_insee": "79168"}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06e4dd4217ff70d9491fa91297f5f6f1f625275c", "fields": {"nom_de_la_commune": "LA MOTHE ST HERAY", "libell_d_acheminement": "LA MOTHE ST HERAY", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79184"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050908bd4f2cdcb8dcdd3b37d2f5c2145f8cd772", "fields": {"code_postal": "79000", "code_commune_insee": "79191", "libell_d_acheminement": "NIORT", "ligne_5": "STE PEZENNE", "nom_de_la_commune": "NIORT", "coordonnees_gps": [46.3258954005, -0.471948799186]}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c353d7a7fc9d480e8a5c4199983e11362f09e137", "fields": {"code_postal": "79250", "code_commune_insee": "79195", "libell_d_acheminement": "NUEIL LES AUBIERS", "ligne_5": "LES AUBIERS", "nom_de_la_commune": "NUEIL LES AUBIERS", "coordonnees_gps": [46.9407689658, -0.596288357237]}, "geometry": {"type": "Point", "coordinates": [-0.596288357237, 46.9407689658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e44c9406a1fae14cc81be6874158a30082bb0c", "fields": {"code_postal": "79100", "code_commune_insee": "79196", "libell_d_acheminement": "OIRON", "ligne_5": "BILAZAIS", "nom_de_la_commune": "OIRON", "coordonnees_gps": [46.9728352964, -0.169886662398]}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d1dce811ce48e5619ac8fc21e8cc4610765a8b7", "fields": {"code_postal": "79100", "code_commune_insee": "79196", "libell_d_acheminement": "OIRON", "ligne_5": "NOIZE", "nom_de_la_commune": "OIRON", "coordonnees_gps": [46.9728352964, -0.169886662398]}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5009f1056fdf4a162ae9fcf3ce74a073be2930ff", "fields": {"nom_de_la_commune": "PAMPROUX", "libell_d_acheminement": "PAMPROUX", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79201"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50e51642e6f6b4a54105058c71737620dfd6dcef", "fields": {"nom_de_la_commune": "PAS DE JEU", "libell_d_acheminement": "PAS DE JEU", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79203"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c9ef04042087b5009229a2525aac783e375a06", "fields": {"nom_de_la_commune": "LA PETITE BOISSIERE", "libell_d_acheminement": "LA PETITE BOISSIERE", "code_postal": "79700", "coordonnees_gps": [46.9364849279, -0.753058283039], "code_commune_insee": "79207"}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b641630fb0a0accef6a909d639917a93215cb301", "fields": {"nom_de_la_commune": "LA PEYRATTE", "libell_d_acheminement": "LA PEYRATTE", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79208"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ea95d3175503494023924517a9327a041c3911", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "79140", "coordonnees_gps": [46.8536328396, -0.662287760231], "code_commune_insee": "79210"}, "geometry": {"type": "Point", "coordinates": [-0.662287760231, 46.8536328396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2374c5516e92f75ddc48cee962ce53731ffbaf79", "fields": {"nom_de_la_commune": "PIOUSSAY", "libell_d_acheminement": "PIOUSSAY", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79211"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93c8e47316f61171451af21701e115efbc7b0bd", "fields": {"nom_de_la_commune": "PRIAIRES", "libell_d_acheminement": "PRIAIRES", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79219"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9b9a2088090cbbc3c1da0297295e8890e1b66f", "fields": {"nom_de_la_commune": "ROM", "libell_d_acheminement": "ROM", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79230"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f71bb16446c956479ad004bc46bb14ffc325d2", "fields": {"nom_de_la_commune": "ST ANDRE SUR SEVRE", "libell_d_acheminement": "ST ANDRE SUR SEVRE", "code_postal": "79380", "coordonnees_gps": [46.7639583246, -0.657227871413], "code_commune_insee": "79236"}, "geometry": {"type": "Point", "coordinates": [-0.657227871413, 46.7639583246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e404dab82c427b0dd8527aaebe94189f869372e3", "fields": {"nom_de_la_commune": "VOULMENTIN", "libell_d_acheminement": "VOULMENTIN", "code_postal": "79150", "coordonnees_gps": [47.0026122608, -0.46748094088], "code_commune_insee": "79242"}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55a5d79cc6ad824bed01e925ee5d1e40c6a696a1", "fields": {"nom_de_la_commune": "ST GELAIS", "libell_d_acheminement": "ST GELAIS", "code_postal": "79410", "coordonnees_gps": [46.3956786662, -0.424997632045], "code_commune_insee": "79249"}, "geometry": {"type": "Point", "coordinates": [-0.424997632045, 46.3956786662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c46a0ed7803e8cb75ab4de1df33cd6639f639e3", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79250"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc941790e417a02bf98291f86bae3b7052c5d99", "fields": {"nom_de_la_commune": "ST GENEROUX", "libell_d_acheminement": "ST GENEROUX", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79252"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2038eac7d85c143669afea83907020345d772b", "fields": {"nom_de_la_commune": "ST GERMIER", "libell_d_acheminement": "ST GERMIER", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79256"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca4f4ebc6cc6f9c98e84a7ad2d2f512ae1eca4d", "fields": {"nom_de_la_commune": "ST LEGER DE MONTBRUN", "libell_d_acheminement": "ST LEGER DE MONTBRUN", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79265"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df1464531f09fea5b580785c5fd9f49991a865ff", "fields": {"nom_de_la_commune": "ST LOUP LAMAIRE", "libell_d_acheminement": "ST LOUP LAMAIRE", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79268"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "618cd36f6dfabbe1b1b0d26cc55e421e6c3b03df", "fields": {"nom_de_la_commune": "ST MARTIN LES MELLE", "libell_d_acheminement": "ST MARTIN LES MELLE", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79279"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b6c42e12fd2528f821459afaf7a60dd51de3a42", "fields": {"nom_de_la_commune": "ST MAXIRE", "libell_d_acheminement": "ST MAXIRE", "code_postal": "79410", "coordonnees_gps": [46.3956786662, -0.424997632045], "code_commune_insee": "79281"}, "geometry": {"type": "Point", "coordinates": [-0.424997632045, 46.3956786662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c83a1b1630b8a781b065f08b1046f16f499614f", "fields": {"nom_de_la_commune": "STE OUENNE", "libell_d_acheminement": "STE OUENNE", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79284"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3348a0b5d606a42d370f680e24bd10cad56f714d", "fields": {"nom_de_la_commune": "ST PIERRE DES ECHAUBROGNES", "libell_d_acheminement": "ST PIERRE DES ECHAUBROGNES", "code_postal": "79700", "coordonnees_gps": [46.9364849279, -0.753058283039], "code_commune_insee": "79289"}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1046eeee095d9b0d0be3cdfd7f8d52f6dda8bbf6", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79292"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f39b7e65939ed24596a568ace9955eb4f3d626b1", "fields": {"nom_de_la_commune": "SAIVRES", "libell_d_acheminement": "SAIVRES", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79302"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5725fd0bc1b7d69fc26d9b851256591404829984", "fields": {"nom_de_la_commune": "SECONDIGNY", "libell_d_acheminement": "SECONDIGNY", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79311"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1635c7004027a298e334ef64f1d6bd51dcf3a48", "fields": {"nom_de_la_commune": "SELIGNE", "libell_d_acheminement": "SELIGNE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79312"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a53d0ed8a5bab775cf08bb77e97b9a77b24f2d", "fields": {"nom_de_la_commune": "SOUDAN", "libell_d_acheminement": "SOUDAN", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79316"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ab03d889ca6c060466efb30099919ab1038351", "fields": {"code_postal": "79100", "code_commune_insee": "79321", "libell_d_acheminement": "TAIZE", "ligne_5": "MAULAIS", "nom_de_la_commune": "TAIZE", "coordonnees_gps": [46.9728352964, -0.169886662398]}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643695a726e5d022c0eeeebd21f4798514a1e6a9", "fields": {"nom_de_la_commune": "LE TALLUD", "libell_d_acheminement": "LE TALLUD", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79322"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db6e5ed26af0616a3c4376b086672a323932ff5", "fields": {"nom_de_la_commune": "THOUARS", "libell_d_acheminement": "THOUARS", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79329"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfcb8e48afca62cda6b0c5a72bf98a8e53e333ae", "fields": {"nom_de_la_commune": "TOURTENAY", "libell_d_acheminement": "TOURTENAY", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79331"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c748a3302f98015f8a327cec691064dcc065224", "fields": {"nom_de_la_commune": "VANCAIS", "libell_d_acheminement": "VANCAIS", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79336"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "997ccb97410a3bfc39274d85e7ec274b3bc36f3a", "fields": {"nom_de_la_commune": "VILLEFOLLET", "libell_d_acheminement": "VILLEFOLLET", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79348"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c6e0eb3c57cccbea436dd4d4949c8f14c1e3282", "fields": {"nom_de_la_commune": "VILLIERS SUR CHIZE", "libell_d_acheminement": "VILLIERS SUR CHIZE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79352"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5783a188bb7377368502deaf53d9cdc501f056c1", "fields": {"nom_de_la_commune": "ALLAINES", "libell_d_acheminement": "ALLAINES", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80017"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91cd2610b1e6838e348eb1ceb413c6f8e811df69", "fields": {"nom_de_la_commune": "ALLENAY", "libell_d_acheminement": "ALLENAY", "code_postal": "80130", "coordonnees_gps": [50.0912781795, 1.52364516053], "code_commune_insee": "80018"}, "geometry": {"type": "Point", "coordinates": [1.52364516053, 50.0912781795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ea21f63a7271c4b5d37707abfabadc428440619", "fields": {"nom_de_la_commune": "ARRY", "libell_d_acheminement": "ARRY", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80030"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cdcfec344147dfe97b4c1efe544829e95bf1a0c", "fields": {"nom_de_la_commune": "AULT", "libell_d_acheminement": "AULT", "code_postal": "80460", "coordonnees_gps": [50.0980567949, 1.47472776699], "code_commune_insee": "80039"}, "geometry": {"type": "Point", "coordinates": [1.47472776699, 50.0980567949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e8197c1c09cbe3cd5fd484f6993c697bd2365f", "fields": {"nom_de_la_commune": "AYENCOURT", "libell_d_acheminement": "AYENCOURT LE MONCHEL", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80049"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f4c70ad13a14173dd2abd9284ae70ea7d5ca4b", "fields": {"nom_de_la_commune": "BACOUEL SUR SELLE", "libell_d_acheminement": "BACOUEL SUR SELLE", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80050"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4fba7856d189d876a908c1c526f758833ea04f9", "fields": {"nom_de_la_commune": "BAILLEUL", "libell_d_acheminement": "BAILLEUL", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80051"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db62cf73d2c9f113a24a8d9e6f05ea3ef89fce9", "fields": {"nom_de_la_commune": "BAYONVILLERS", "libell_d_acheminement": "BAYONVILLERS", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80058"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33ec4812cce99b85ee102dc4899b820ab3aaca96", "fields": {"nom_de_la_commune": "BEALCOURT", "libell_d_acheminement": "BEALCOURT", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80060"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d70e1ed8ecb6687167f57b2fe6d8b86fb1bf51", "fields": {"nom_de_la_commune": "BEAUCOURT SUR L ANCRE", "libell_d_acheminement": "BEAUCOURT SUR L ANCRE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80065"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80e18c02295787a268e8fcfad343aefba4be6746", "fields": {"nom_de_la_commune": "BECORDEL BECOURT", "libell_d_acheminement": "BECORDEL BECOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80073"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b46f9e1da570ed4dd5ecfcf462fdc7ae8c1cdd8", "fields": {"nom_de_la_commune": "BEHEN", "libell_d_acheminement": "BEHEN", "code_postal": "80870", "coordonnees_gps": [50.0653042148, 1.7446378135], "code_commune_insee": "80076"}, "geometry": {"type": "Point", "coordinates": [1.7446378135, 50.0653042148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e45ed662145c7cb09afc30f2275bf6287451343", "fields": {"code_postal": "80140", "code_commune_insee": "80084", "libell_d_acheminement": "BERMESNIL", "ligne_5": "MESNIL EUDIN", "nom_de_la_commune": "BERMESNIL", "coordonnees_gps": [49.9469630616, 1.753960976]}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5d7592d017b3e46cd88c3d87864373c17fa901", "fields": {"nom_de_la_commune": "BERTRANCOURT", "libell_d_acheminement": "BERTRANCOURT", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80095"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2639a0ca492e0151947131390c692eafaec84588", "fields": {"nom_de_la_commune": "BETHENCOURT SUR SOMME", "libell_d_acheminement": "BETHENCOURT SUR SOMME", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80097"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c6d58b3a8281a7f8074c25e19e7f638c3ecafe", "fields": {"nom_de_la_commune": "BETTEMBOS", "libell_d_acheminement": "BETTEMBOS", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80098"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "842469b6db28b3b51d1d3b2655264fe68c2fa55b", "fields": {"nom_de_la_commune": "BIACHES", "libell_d_acheminement": "BIACHES", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80102"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00c4088a7e02b1d905b8fc9712361e5d56be3a0", "fields": {"nom_de_la_commune": "BILLANCOURT", "libell_d_acheminement": "BILLANCOURT", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80105"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77bcf5e5928fde4b6753fd4f7f5ef043519f4c54", "fields": {"nom_de_la_commune": "BOUCHAVESNES BERGEN", "libell_d_acheminement": "BOUCHAVESNES BERGEN", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80115"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73012bedaa37489a9ffc07f2e7b1c4ed5e0221a8", "fields": {"nom_de_la_commune": "BOUGAINVILLE", "libell_d_acheminement": "BOUGAINVILLE", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80119"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb0eb2f788e9c5ada05753c8e35784885ed4eb53", "fields": {"nom_de_la_commune": "BOUILLANCOURT EN SERY", "libell_d_acheminement": "BOUILLANCOURT EN SERY", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80120"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f87a31a9f4eca5da639db9d5c13ffc7d307fc674", "fields": {"nom_de_la_commune": "BOUQUEMAISON", "libell_d_acheminement": "BOUQUEMAISON", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80122"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c04a652201cdfd5e1e9bb5870980bdfb703b34", "fields": {"nom_de_la_commune": "BOURDON", "libell_d_acheminement": "BOURDON", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80123"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14ffc245bbdb40ef718cb10c9364031aca459f21", "fields": {"nom_de_la_commune": "BOUSSICOURT", "libell_d_acheminement": "BOUSSICOURT", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80125"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e24a3b2d25c4918a6869a92b157b5a731f91c985", "fields": {"nom_de_la_commune": "BOUVINCOURT EN VERMANDOIS", "libell_d_acheminement": "BOUVINCOURT EN VERMANDOIS", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80128"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5212121f366672d09167487360c3fd1f464037b", "fields": {"nom_de_la_commune": "BRAY LES MAREUIL", "libell_d_acheminement": "BRAY LES MAREUIL", "code_postal": "80580", "coordonnees_gps": [50.0580760392, 1.88626484435], "code_commune_insee": "80135"}, "geometry": {"type": "Point", "coordinates": [1.88626484435, 50.0580760392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa83bcd18c86d8975ab6eba0fee9003c6a49147", "fields": {"nom_de_la_commune": "BREILLY", "libell_d_acheminement": "BREILLY", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80137"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e87fa48622a78eba00fdebf37d1bc6c38a720a7", "fields": {"nom_de_la_commune": "BRUTELLES", "libell_d_acheminement": "BRUTELLES", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80146"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a682b415f5018ed69073c153e26d891e6146b5", "fields": {"nom_de_la_commune": "BUIGNY L ABBE", "libell_d_acheminement": "BUIGNY L ABBE", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80147"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "654ab6b9c398055427aef126f49dfcc01cc32db4", "fields": {"nom_de_la_commune": "BUS LES ARTOIS", "libell_d_acheminement": "BUS LES ARTOIS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80153"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd43d8ac385c650bfd75aa75cb556917d27b7d31", "fields": {"nom_de_la_commune": "BUSSY LES POIX", "libell_d_acheminement": "BUSSY LES POIX", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80157"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290104d524bb1287c436537c4f7db8ab47440bf2", "fields": {"nom_de_la_commune": "CAIX", "libell_d_acheminement": "CAIX", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80162"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b5311efb98e3e3df80aaaf646117460029d797c", "fields": {"nom_de_la_commune": "CAMON", "libell_d_acheminement": "CAMON", "code_postal": "80450", "coordonnees_gps": [49.8997826029, 2.37137484278], "code_commune_insee": "80164"}, "geometry": {"type": "Point", "coordinates": [2.37137484278, 49.8997826029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "200decc163c26e2221e20281910a78ae48377b00", "fields": {"nom_de_la_commune": "CANCHY", "libell_d_acheminement": "CANCHY", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80167"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "746b464a97fa89b3f549e1f267af71bbf83a6c1a", "fields": {"nom_de_la_commune": "CAPPY", "libell_d_acheminement": "CAPPY", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80172"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "801e0b86592e26411b0569787402682697fe8151", "fields": {"nom_de_la_commune": "CARNOY", "libell_d_acheminement": "CARNOY", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80175"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a771cc56ddd7931e6e9a3b68cab23fa01c6bee7", "fields": {"nom_de_la_commune": "CHAULNES", "libell_d_acheminement": "CHAULNES", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80186"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dd076adb55a7cd840ff865f02c6c951e508ace9", "fields": {"nom_de_la_commune": "COIGNEUX", "libell_d_acheminement": "COIGNEUX", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80201"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236d451c9e836f2bc1ba05bdd3fe4a035428266d", "fields": {"nom_de_la_commune": "COLINCAMPS", "libell_d_acheminement": "COLINCAMPS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80203"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ecc1ba8ef48e85f56dd4def81faf4a2399bed1d", "fields": {"nom_de_la_commune": "COTTENCHY", "libell_d_acheminement": "COTTENCHY", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80213"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c2b02b62d1202146e2e98d34a7707106902d14c", "fields": {"nom_de_la_commune": "COURTEMANCHE", "libell_d_acheminement": "COURTEMANCHE", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80220"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc90cb7372900634fc39a73f21fc6935657aade", "fields": {"nom_de_la_commune": "CREUSE", "libell_d_acheminement": "CREUSE", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80225"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e543ba43e15675f837c1a4185922fc8ef5d8e49", "fields": {"nom_de_la_commune": "CROUY ST PIERRE", "libell_d_acheminement": "CROUY ST PIERRE", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80229"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce753fec8ca95756737e74a32696a2abb418918", "fields": {"code_postal": "80310", "code_commune_insee": "80229", "libell_d_acheminement": "CROUY ST PIERRE", "ligne_5": "ST PIERRE A GOUY", "nom_de_la_commune": "CROUY ST PIERRE", "coordonnees_gps": [49.9552776258, 2.09743129246]}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8211ef4903d73cdea14c6d29779683180b4f50b4", "fields": {"nom_de_la_commune": "DOMESMONT", "libell_d_acheminement": "DOMESMONT", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80243"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9fe18541ffba88ae7ffd9b6efe9f6cdb9adabd8", "fields": {"nom_de_la_commune": "DROMESNIL", "libell_d_acheminement": "DROMESNIL", "code_postal": "80640", "coordonnees_gps": [49.8459420737, 1.9103382201], "code_commune_insee": "80259"}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ed2d449654f06ee9e6c24bd88a8d28075c81a2", "fields": {"nom_de_la_commune": "EAUCOURT SUR SOMME", "libell_d_acheminement": "EAUCOURT SUR SOMME", "code_postal": "80580", "coordonnees_gps": [50.0580760392, 1.88626484435], "code_commune_insee": "80262"}, "geometry": {"type": "Point", "coordinates": [1.88626484435, 50.0580760392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa52dfb90821e66d0f90b31357e9bef99574ba97", "fields": {"nom_de_la_commune": "ESCLAINVILLERS", "libell_d_acheminement": "ESCLAINVILLERS", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80283"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0b5b7324b6a590336b54cf901d7815b074b0c26", "fields": {"nom_de_la_commune": "BENAGUES", "libell_d_acheminement": "BENAGUES", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09050"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41756b6926e244400678623ab6aa83589496da9a", "fields": {"nom_de_la_commune": "CAMARADE", "libell_d_acheminement": "CAMARADE", "code_postal": "09290", "coordonnees_gps": [43.0688947964, 1.3366340035], "code_commune_insee": "09073"}, "geometry": {"type": "Point", "coordinates": [1.3366340035, 43.0688947964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea27f7f944de9be57a907f005d6c49530fca5290", "fields": {"nom_de_la_commune": "BESTIAC", "libell_d_acheminement": "BESTIAC", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09053"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fe18e29e68566a6bcc69da8f961f528fe658657", "fields": {"nom_de_la_commune": "BURRET", "libell_d_acheminement": "BURRET", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09068"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7983f5f7733063d43449b6f7c04b612b43e8eb1e", "fields": {"nom_de_la_commune": "BENAC", "libell_d_acheminement": "BENAC", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09049"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a60c4fc3dd2fdf233d540d921f7b08b6e1f8add", "fields": {"nom_de_la_commune": "BIERT", "libell_d_acheminement": "BIERT", "code_postal": "09320", "coordonnees_gps": [42.8796957466, 1.34694172937], "code_commune_insee": "09057"}, "geometry": {"type": "Point", "coordinates": [1.34694172937, 42.8796957466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d801d7fef337dc4b675533862636ac06b05fee8", "fields": {"nom_de_la_commune": "BRIE", "libell_d_acheminement": "BRIE", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09067"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f04aeb204541c0c0cc8bdee45d67420ddb9d69c", "fields": {"nom_de_la_commune": "ESPLAS DE SEROU", "libell_d_acheminement": "ESPLAS DE SEROU", "code_postal": "09420", "coordonnees_gps": [42.9874247202, 1.30308846281], "code_commune_insee": "09118"}, "geometry": {"type": "Point", "coordinates": [1.30308846281, 42.9874247202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b092bc3c516ab8e579fa7f1227205348fb88830", "fields": {"nom_de_la_commune": "FREYCHENET", "libell_d_acheminement": "FREYCHENET", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09126"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18bf1f8287dd9ea0ff0793bf70f14e3f456f5c9", "fields": {"nom_de_la_commune": "ESCLAGNE", "libell_d_acheminement": "ESCLAGNE", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09115"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0f040bcfb316d0dff3707031eada34fc37d209", "fields": {"nom_de_la_commune": "GOURBIT", "libell_d_acheminement": "GOURBIT", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09136"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91bd54f3317581a251f7557b1f390943e78392f5", "fields": {"nom_de_la_commune": "LAPENNE", "libell_d_acheminement": "LAPENNE", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09153"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c18ee6737fc52bfc0b76e095e454fd39ce516aef", "fields": {"nom_de_la_commune": "GARANOU", "libell_d_acheminement": "GARANOU", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09131"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b95e4af2c115d28813922a29780881fe3a2894", "fields": {"nom_de_la_commune": "LACAVE", "libell_d_acheminement": "LACAVE", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09148"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74ce5e090417f15e0890be7df5ca90957bfa3bf0", "fields": {"nom_de_la_commune": "LASSUR", "libell_d_acheminement": "LASSUR", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09159"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d198b28cd4ee98f7eaecd94a7a59fd85e11ba6d6", "fields": {"nom_de_la_commune": "IGNAUX", "libell_d_acheminement": "IGNAUX", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09140"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ad4c608f51243387199cebd9eed6a0e80a0a470", "fields": {"nom_de_la_commune": "LE MAS D AZIL", "libell_d_acheminement": "LE MAS D AZIL", "code_postal": "09290", "coordonnees_gps": [43.0688947964, 1.3366340035], "code_commune_insee": "09181"}, "geometry": {"type": "Point", "coordinates": [1.3366340035, 43.0688947964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a16ba247951d1cfe0d1dfcfc5347edfde12de9e2", "fields": {"nom_de_la_commune": "LESCOUSSE", "libell_d_acheminement": "LESCOUSSE", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09163"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f74bbbd8c63fe24ff63835e810875c9c00aebc", "fields": {"nom_de_la_commune": "LEYCHERT", "libell_d_acheminement": "LEYCHERT", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09166"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0181f750515804d7d3fc27e833135c27ea68ba6d", "fields": {"nom_de_la_commune": "MERCENAC", "libell_d_acheminement": "MERCENAC", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09187"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7225498f5d3a67f011ffbbdc17a8039fd404c07e", "fields": {"nom_de_la_commune": "LESCURE", "libell_d_acheminement": "LESCURE", "code_postal": "09420", "coordonnees_gps": [42.9874247202, 1.30308846281], "code_commune_insee": "09164"}, "geometry": {"type": "Point", "coordinates": [1.30308846281, 42.9874247202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f18715f9b31dc7a8170380298a4cfd31bf78c45", "fields": {"nom_de_la_commune": "LOUBENS", "libell_d_acheminement": "LOUBENS", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09173"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67ae897790e9cf068b0497733fe56e8a2679d592", "fields": {"nom_de_la_commune": "MADIERE", "libell_d_acheminement": "MADIERE", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09177"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12c49182044deaa7d4461aeb1286098baf13136b", "fields": {"nom_de_la_commune": "LISSAC", "libell_d_acheminement": "LISSAC", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09170"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177975b047e01bb0a31641436a69162358d93d22", "fields": {"nom_de_la_commune": "MANSES", "libell_d_acheminement": "MANSES", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09180"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc53b50a7472dad6f160c09b09a61d5d96a2b50", "fields": {"nom_de_la_commune": "LUDIES", "libell_d_acheminement": "LUDIES", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09175"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08e354175df8b69ecb76fb2d437590633837e055", "fields": {"nom_de_la_commune": "RIEUX DE PELLEPORT", "libell_d_acheminement": "RIEUX DE PELLEPORT", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09245"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "497f846568fdcd9ba1bbfa6b4cf39b65a45e3158", "fields": {"nom_de_la_commune": "ROUMENGOUX", "libell_d_acheminement": "ROUMENGOUX", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09251"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efd609ad3ae7972558e81f126babb3535c064f63", "fields": {"nom_de_la_commune": "RIVERENERT", "libell_d_acheminement": "RIVERENERT", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09247"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3536904a13eeff27c9c3a4e1d2443cf2e8cb957", "fields": {"nom_de_la_commune": "LE PEYRAT", "libell_d_acheminement": "LE PEYRAT", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09229"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "895b0f67a45ade3785ef966b27def0b218bd9646", "fields": {"nom_de_la_commune": "PRAYOLS", "libell_d_acheminement": "PRAYOLS", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09236"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67bc26b743b0590bc00a3b3e506a33224265d1af", "fields": {"nom_de_la_commune": "PRADES", "libell_d_acheminement": "PRADES", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09232"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d5ac756ab3dbad256084915b583383df2cba560", "fields": {"nom_de_la_commune": "ROUZE", "libell_d_acheminement": "ROUZE", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09252"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b17b803fb9517edfd09ad0da72a84e106e9817a2", "fields": {"nom_de_la_commune": "QUIE", "libell_d_acheminement": "QUIE", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09240"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19232c420aeaa5461a5bf6002a915451ccc73d8f", "fields": {"nom_de_la_commune": "TARASCON SUR ARIEGE", "libell_d_acheminement": "TARASCON SUR ARIEGE", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09306"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d67212c9ad4c9d8f0129cd8b0ea02831ff6a377", "fields": {"nom_de_la_commune": "SENTENAC D OUST", "libell_d_acheminement": "SENTENAC D OUST", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09291"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13063e9c2e9d2bef5fd2dba87b95d8602445ed1d", "fields": {"nom_de_la_commune": "SUC ET SENTENAC", "libell_d_acheminement": "SUC ET SENTENAC", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09302"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41b015bde672d645ed1233b7b3ea3c1a162f0e5c", "fields": {"nom_de_la_commune": "SENTEIN", "libell_d_acheminement": "SENTEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09290"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e02692506a02960e8a1b53c38c96d1ea72f2b63e", "fields": {"nom_de_la_commune": "SORGEAT", "libell_d_acheminement": "SORGEAT", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09298"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0283504b86d193b1e56dcefeae436f10dad80be0", "fields": {"nom_de_la_commune": "SINSAT", "libell_d_acheminement": "SINSAT", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09296"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d777dfb1c51d425f67b7900ef7e57bb541e99f03", "fields": {"nom_de_la_commune": "SOULA", "libell_d_acheminement": "SOULA", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09300"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b856c8f0e94d0f72d431741d8c7906ee8579817e", "fields": {"nom_de_la_commune": "SEIX", "libell_d_acheminement": "SEIX", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09285"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c77471e00bcd810333e33115609fdeaad830820", "fields": {"nom_de_la_commune": "ORMES", "libell_d_acheminement": "ORMES", "code_postal": "45140", "coordonnees_gps": [47.9387970361, 1.79888602843], "code_commune_insee": "45235"}, "geometry": {"type": "Point", "coordinates": [1.79888602843, 47.9387970361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d7edbe4ab6f160cdd783dc3c2d9c7619058d774", "fields": {"code_postal": "45480", "code_commune_insee": "45240", "libell_d_acheminement": "OUTARVILLE", "ligne_5": "FARONVILLE", "nom_de_la_commune": "OUTARVILLE", "coordonnees_gps": [48.2104328363, 2.06032110325]}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bf6491d230bacff4e5df0f3b9d6f493adf59441", "fields": {"code_postal": "45480", "code_commune_insee": "45240", "libell_d_acheminement": "OUTARVILLE", "ligne_5": "TEILLAY LE GAUDIN", "nom_de_la_commune": "OUTARVILLE", "coordonnees_gps": [48.2104328363, 2.06032110325]}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ea3d176985021d2fd66269a2f9a6cedb1422d43", "fields": {"nom_de_la_commune": "OUZOUER SUR LOIRE", "libell_d_acheminement": "OUZOUER SUR LOIRE", "code_postal": "45570", "coordonnees_gps": [47.7713399136, 2.51487040381], "code_commune_insee": "45244"}, "geometry": {"type": "Point", "coordinates": [2.51487040381, 47.7713399136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1051b0fef68797e43ac2647eb7dc6e74b766f01e", "fields": {"nom_de_la_commune": "PANNES", "libell_d_acheminement": "PANNES", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45247"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed1d264e17f9f159407e6c34d759cd54b63abfd0", "fields": {"nom_de_la_commune": "PERS EN GATINAIS", "libell_d_acheminement": "PERS EN GATINAIS", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45250"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "262e7bc1999979c95bec5bb3532e0627f1489ef5", "fields": {"nom_de_la_commune": "QUIERS SUR BEZONDE", "libell_d_acheminement": "QUIERS SUR BEZONDE", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45259"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c68cf6cdfc78f290bd58c37fcd4db77bd60dbb76", "fields": {"nom_de_la_commune": "ST AIGNAN DES GUES", "libell_d_acheminement": "ST AIGNAN DES GUES", "code_postal": "45460", "coordonnees_gps": [47.835810766, 2.38912953908], "code_commune_insee": "45267"}, "geometry": {"type": "Point", "coordinates": [2.38912953908, 47.835810766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4cc22542be34b31ec2bde6f0aceca17cac4ec45", "fields": {"nom_de_la_commune": "ST BRISSON SUR LOIRE", "libell_d_acheminement": "ST BRISSON SUR LOIRE", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45271"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "800597ed2dff353e1f8197f71f73f9b5c7002599", "fields": {"nom_de_la_commune": "ST FIRMIN DES BOIS", "libell_d_acheminement": "ST FIRMIN DES BOIS", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45275"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d63e47d82e9ea3bc601c5db90a835211ea832e", "fields": {"nom_de_la_commune": "ST GONDON", "libell_d_acheminement": "ST GONDON", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45280"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e64c1751dd4304c1dd8820d61ee6b84886b472", "fields": {"nom_de_la_commune": "ST LOUP DES VIGNES", "libell_d_acheminement": "ST LOUP DES VIGNES", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45288"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c314e76871447738b5294dd96f1ec0af2f0aab", "fields": {"nom_de_la_commune": "ST MAURICE SUR AVEYRON", "libell_d_acheminement": "ST MAURICE SUR AVEYRON", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45292"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe6ca49992a9b977a12b62d373fb58d9a157eaf", "fields": {"nom_de_la_commune": "ST MAURICE SUR FESSARD", "libell_d_acheminement": "ST MAURICE SUR FESSARD", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45293"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f4c5b7fd8c8d3363f7b5e606be1e17ac6746c74", "fields": {"nom_de_la_commune": "ST SIGISMOND", "libell_d_acheminement": "ST SIGISMOND", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45299"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bcb05008125ff4c716de4bd7c0fae637a3b2ac2", "fields": {"nom_de_la_commune": "SANDILLON", "libell_d_acheminement": "SANDILLON", "code_postal": "45640", "coordonnees_gps": [47.8367007411, 2.03001021128], "code_commune_insee": "45300"}, "geometry": {"type": "Point", "coordinates": [2.03001021128, 47.8367007411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6223e2b6fd7b23837538151ed3f81e9a909e82dc", "fields": {"nom_de_la_commune": "SEMOY", "libell_d_acheminement": "SEMOY", "code_postal": "45400", "coordonnees_gps": [47.9619656993, 1.95515679115], "code_commune_insee": "45308"}, "geometry": {"type": "Point", "coordinates": [1.95515679115, 47.9619656993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec7c7fed5c3593706ee57f97815ad00ce2b686e4", "fields": {"nom_de_la_commune": "SULLY SUR LOIRE", "libell_d_acheminement": "SULLY SUR LOIRE", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45315"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a1e5c8007595fe14e2149666f67b32ea3438f1c", "fields": {"nom_de_la_commune": "THIGNONVILLE", "libell_d_acheminement": "THIGNONVILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45320"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "288364b6411958336d35fe15ccb27e5227e47997", "fields": {"nom_de_la_commune": "THORAILLES", "libell_d_acheminement": "THORAILLES", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45322"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e7f9b1d7c3cc18e031be4c679d0c55309610cbe", "fields": {"nom_de_la_commune": "VANNES SUR COSSON", "libell_d_acheminement": "VANNES SUR COSSON", "code_postal": "45510", "coordonnees_gps": [47.7639996935, 2.18590511935], "code_commune_insee": "45331"}, "geometry": {"type": "Point", "coordinates": [2.18590511935, 47.7639996935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d83460cd9860aa9d2d5a575029e89788dff33c1", "fields": {"nom_de_la_commune": "VIGLAIN", "libell_d_acheminement": "VIGLAIN", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45336"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f291694cc7b67f55c9d98fcc1faff153276f1954", "fields": {"nom_de_la_commune": "VILLEMURLIN", "libell_d_acheminement": "VILLEMURLIN", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45340"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8675d7c049fc901814bf0d719b7aee6789bf36f0", "fields": {"nom_de_la_commune": "VIMORY", "libell_d_acheminement": "VIMORY", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45345"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9badf380fd3b5ba3829365e30e6f3cf673216298", "fields": {"nom_de_la_commune": "ANGLARS JUILLAC", "libell_d_acheminement": "ANGLARS JUILLAC", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46005"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a172fb982cfbdf5f7517598364612f3862877f6f", "fields": {"nom_de_la_commune": "ARCAMBAL", "libell_d_acheminement": "ARCAMBAL", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46007"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7718b55b089e1d819370206a9697c0d6715452f4", "fields": {"nom_de_la_commune": "LES ARQUES", "libell_d_acheminement": "LES ARQUES", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46008"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f95899d11711adb220f9be20b69aea1d3ef908", "fields": {"nom_de_la_commune": "ASSIER", "libell_d_acheminement": "ASSIER", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46009"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d125c3851b5045efaa3b25835ae5a9cadf938310", "fields": {"nom_de_la_commune": "BELAYE", "libell_d_acheminement": "BELAYE", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46022"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3eecc0e96dfdafd9c9b4099f68dcfed1d43df8b", "fields": {"nom_de_la_commune": "BIO", "libell_d_acheminement": "BIO", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46030"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54c3664281601bf97d632772e52c6ea395c7162a", "fields": {"nom_de_la_commune": "BLARS", "libell_d_acheminement": "BLARS", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46031"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c7537b4b06d2cdcde2247ab70a78b4bca6dbf35", "fields": {"nom_de_la_commune": "BOISSIERES", "libell_d_acheminement": "BOISSIERES", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46032"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfd0c2a26e79bbceaaa33c1805a3d5df109ab6c4", "fields": {"nom_de_la_commune": "CALES", "libell_d_acheminement": "CALES", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46047"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f938934ea291e3e8774603230997686fc4b3ca19", "fields": {"nom_de_la_commune": "CALVIGNAC", "libell_d_acheminement": "CALVIGNAC", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46049"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d82bd86b1bb98d8ded20eca9eb1acafa274bf47", "fields": {"nom_de_la_commune": "CAMBURAT", "libell_d_acheminement": "CAMBURAT", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46053"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26b8d419c554c3b918194f43a623284c94e18ea2", "fields": {"nom_de_la_commune": "CENEVIERES", "libell_d_acheminement": "CENEVIERES", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46068"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6266144aa458693f764f42a4f68198c274fb26a", "fields": {"nom_de_la_commune": "CONCOTS", "libell_d_acheminement": "CONCOTS", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46073"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41bac933cfdaf4a7c5014ac1c45a65ce2d0047c3", "fields": {"nom_de_la_commune": "COURS", "libell_d_acheminement": "COURS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46077"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fb1f5dca8a14f12bd2f1b5aec83dbcc6deaec83", "fields": {"nom_de_la_commune": "CRESSENSAC", "libell_d_acheminement": "CRESSENSAC", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46083"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030f16862ba0bfcbbdf840a9f95afd4da2ceb489", "fields": {"nom_de_la_commune": "DEGAGNAC", "libell_d_acheminement": "DEGAGNAC", "code_postal": "46340", "coordonnees_gps": [44.6657598644, 1.30345191373], "code_commune_insee": "46087"}, "geometry": {"type": "Point", "coordinates": [1.30345191373, 44.6657598644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b535f0d243d939f9b05cad9b5de51f3715c30797", "fields": {"nom_de_la_commune": "ESCAMPS", "libell_d_acheminement": "ESCAMPS", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46091"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d17935189b1a6d15cad5eb918ef4d9fe80a1298", "fields": {"nom_de_la_commune": "ESCLAUZELS", "libell_d_acheminement": "ESCLAUZELS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46092"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93d9ba0c47b7dae1e9f38f37ab55642ae00ebe5a", "fields": {"nom_de_la_commune": "ESPEDAILLAC", "libell_d_acheminement": "ESPEDAILLAC", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46094"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03082f91897fdf6a8eb0428571c5553cfcdc5aac", "fields": {"nom_de_la_commune": "ESPEYROUX", "libell_d_acheminement": "ESPEYROUX", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46096"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "340ffebb4c066d1898975e1083cbd76516d4e6fc", "fields": {"nom_de_la_commune": "FAJOLES", "libell_d_acheminement": "FAJOLES", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46098"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9cd38e4cdd9af77af4cf85e9fda3a151cfbc977", "fields": {"nom_de_la_commune": "FIGEAC", "libell_d_acheminement": "FIGEAC", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46102"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bdf11af4569c5087dddba2026a80d6c847dbcdb", "fields": {"nom_de_la_commune": "ST PAUL FLAUGNAC", "libell_d_acheminement": "ST PAUL FLAUGNAC", "code_postal": "46170", "coordonnees_gps": [44.2978599733, 1.37150326445], "code_commune_insee": "46103"}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce38a61d1ac06c059c23dc9693b6af89de37e60", "fields": {"nom_de_la_commune": "FRONTENAC", "libell_d_acheminement": "FRONTENAC", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46116"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b873b443d3b060fe758a8caaeb2ca9e594d07547", "fields": {"nom_de_la_commune": "GAGNAC SUR CERE", "libell_d_acheminement": "GAGNAC SUR CERE", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46117"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b20d79a805cfd2e3d5f00b42feebda5ae2a684db", "fields": {"nom_de_la_commune": "GLANES", "libell_d_acheminement": "GLANES", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46124"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778ebe6cd3a71f9b34ec981427dfaae34d8cf74d", "fields": {"nom_de_la_commune": "GREALOU", "libell_d_acheminement": "GREALOU", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46129"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c72ad536fffe01dbba3294fc0ac65b8b204ce29b", "fields": {"nom_de_la_commune": "GREZES", "libell_d_acheminement": "GREZES", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46131"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89e156a10a088b2a8f823a084abb4809c82485ba", "fields": {"code_postal": "46240", "code_commune_insee": "46138", "libell_d_acheminement": "COEUR DE CAUSSE", "ligne_5": "VAILLAC", "nom_de_la_commune": "COEUR DE CAUSSE", "coordonnees_gps": [44.6554006937, 1.59713194799]}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f52b2b39e2c764d122be481e872450492ae488f4", "fields": {"nom_de_la_commune": "LABATHUDE", "libell_d_acheminement": "LABATHUDE", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46139"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b0cf93780a133f1e9e2ca4021a2ede85f65343", "fields": {"nom_de_la_commune": "LARNAGOL", "libell_d_acheminement": "LARNAGOL", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46155"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a52203c643e80e691d60bff10f23bb472d26cfec", "fields": {"nom_de_la_commune": "LASCABANES", "libell_d_acheminement": "LASCABANES", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46158"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8da188c27855d33743bb2743d8d2d75641e070a9", "fields": {"nom_de_la_commune": "LATRONQUIERE", "libell_d_acheminement": "LATRONQUIERE", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46160"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c773491be7bc6661fa109bfa2cba3dcfb26cfd", "fields": {"nom_de_la_commune": "LAUZES", "libell_d_acheminement": "LAUZES", "code_postal": "46360", "coordonnees_gps": [44.5788373248, 1.59698113973], "code_commune_insee": "46162"}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a837aad028126dc5a9d24eae8ab44d3e70bfecb6", "fields": {"nom_de_la_commune": "FONTAINE", "libell_d_acheminement": "FONTAINE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10150"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b84b8e4429cf5edcfa19345c51c5d7925a198bd", "fields": {"nom_de_la_commune": "GERAUDOT", "libell_d_acheminement": "GERAUDOT", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10165"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeb51b0d3e113c2b2c63ae73d783b00457dcc6e6", "fields": {"nom_de_la_commune": "MONTIGNY LES MONTS", "libell_d_acheminement": "MONTIGNY LES MONTS", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10251"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cddd0affda7981e392da39e699711faac9984a32", "fields": {"nom_de_la_commune": "MESNIL SELLIERES", "libell_d_acheminement": "MESNIL SELLIERES", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10239"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b5113c3d418bd4ce4eec543b906d8d884261b43", "fields": {"nom_de_la_commune": "MOLINS SUR AUBE", "libell_d_acheminement": "MOLINS SUR AUBE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10243"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34bbda591ecfcaa006b6404c41b874cc16700f3a", "fields": {"nom_de_la_commune": "MESNIL ST PERE", "libell_d_acheminement": "MESNIL ST PERE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10238"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5af926943c273e8e0ffc8ff404809bf75666b836", "fields": {"nom_de_la_commune": "MESNIL LETTRE", "libell_d_acheminement": "MESNIL LETTRE", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10236"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fb0c657fb8058399b3b162c5aa8f983c0d578ec", "fields": {"nom_de_la_commune": "MONTSUZAIN", "libell_d_acheminement": "MONTSUZAIN", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10256"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22991ce73ae677e1c1d773cefeee5acbc4af1b30", "fields": {"nom_de_la_commune": "MOUSSEY", "libell_d_acheminement": "MOUSSEY", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10260"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ff2bc0fece0ce59d1e509b975ca97c0c6c8c48", "fields": {"code_postal": "10380", "code_commune_insee": "10289", "libell_d_acheminement": "PLANCY L ABBAYE", "ligne_5": "VIAPRES LE GRAND", "nom_de_la_commune": "PLANCY L ABBAYE", "coordonnees_gps": [48.576907135, 3.98044859766]}, "geometry": {"type": "Point", "coordinates": [3.98044859766, 48.576907135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13393a1cc3c760c9832e8a61a5eccb0669af3abf", "fields": {"nom_de_la_commune": "NEUVILLE SUR VANNE", "libell_d_acheminement": "NEUVILLE SUR VANNE", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10263"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86f60d87069d219c15df92933b674d7e97e41442", "fields": {"nom_de_la_commune": "PRECY NOTRE DAME", "libell_d_acheminement": "PRECY NOTRE DAME", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10303"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6fd6067b4b5a653e843293b978952b2fb462313", "fields": {"nom_de_la_commune": "NOGENT SUR AUBE", "libell_d_acheminement": "NOGENT SUR AUBE", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10267"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be87daafcf2052dd6488c5529e94f4a5cffb38ba", "fields": {"nom_de_la_commune": "PONT SUR SEINE", "libell_d_acheminement": "PONT SUR SEINE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10298"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee1d6fba263894c79df0bfff3547ec5211f4cf81", "fields": {"nom_de_la_commune": "POIVRES", "libell_d_acheminement": "POIVRES", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10293"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "717f2ac59be2cd4a74ac21549d3bd7c0fc52d1d9", "fields": {"nom_de_la_commune": "PLANTY", "libell_d_acheminement": "PLANTY", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10290"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f0b46a494b83183122750c5cf0cc7128d1c346", "fields": {"nom_de_la_commune": "PRUGNY", "libell_d_acheminement": "PRUGNY", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10307"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f2f22d10c849b9ef44ee5bf4fcc82a362cae1ea", "fields": {"nom_de_la_commune": "NOZAY", "libell_d_acheminement": "NOZAY", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10269"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f93b054d344e1f7d55ee17a723f7152015e4f3c", "fields": {"nom_de_la_commune": "PINEY", "libell_d_acheminement": "PINEY", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10287"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db6e894c8a19f4baa1416dd3d5bb32d4fd17b53", "fields": {"code_postal": "10800", "code_commune_insee": "10329", "libell_d_acheminement": "ROUILLY ST LOUP", "ligne_5": "ROUILLEROT", "nom_de_la_commune": "ROUILLY ST LOUP", "coordonnees_gps": [48.2055801821, 4.1125140322]}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "399515385e5ecec49a70ab67fd1d0721e5917061", "fields": {"code_postal": "10120", "code_commune_insee": "10340", "libell_d_acheminement": "ST GERMAIN", "ligne_5": "LEPINE", "nom_de_la_commune": "ST GERMAIN", "coordonnees_gps": [48.2420570868, 4.01115012406]}, "geometry": {"type": "Point", "coordinates": [4.01115012406, 48.2420570868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3515c2026bdf981615841cfb7f11b2e1af28431", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DODINICOURT", "libell_d_acheminement": "ST CHRISTOPHE DODINICOURT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10337"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abea7294a2c99a6a8e0cb2bb9635d5b182675533", "fields": {"nom_de_la_commune": "ST MARTIN DE BOSSENAY", "libell_d_acheminement": "ST MARTIN DE BOSSENAY", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10351"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d635d095f082979f45f0380d3689078d0211b5d", "fields": {"nom_de_la_commune": "ST MARDS EN OTHE", "libell_d_acheminement": "ST MARDS EN OTHE", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10350"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f3936c917908f3e2d69d39e68e43857d76fd35b", "fields": {"nom_de_la_commune": "ROUILLY SACEY", "libell_d_acheminement": "ROUILLY SACEY", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10328"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54da3caff89343529dbd1715fe262505d4a783a", "fields": {"nom_de_la_commune": "RACINES", "libell_d_acheminement": "RACINES", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10312"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9be2229ee3d4999d3943df7606af8e929fb01327", "fields": {"nom_de_la_commune": "SERMOISE SUR LOIRE", "libell_d_acheminement": "SERMOISE SUR LOIRE", "code_postal": "58000", "coordonnees_gps": [46.9644333624, 3.17459118159], "code_commune_insee": "58278"}, "geometry": {"type": "Point", "coordinates": [3.17459118159, 46.9644333624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19f029ceb880e257bc4c2d81c0fd25a1a1cab26", "fields": {"nom_de_la_commune": "TERNANT", "libell_d_acheminement": "TERNANT", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58289"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272bb14109520ac68c2552abb401c20acb19e53d", "fields": {"nom_de_la_commune": "TRACY SUR LOIRE", "libell_d_acheminement": "TRACY SUR LOIRE", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58295"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa768c9dee97541f15e424c07f72f32b176c617d", "fields": {"nom_de_la_commune": "ABSCON", "libell_d_acheminement": "ABSCON", "code_postal": "59215", "coordonnees_gps": [50.3278360338, 3.2977204551], "code_commune_insee": "59002"}, "geometry": {"type": "Point", "coordinates": [3.2977204551, 50.3278360338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbbd033254c4e7aebf09e9721c42b6c998be749d", "fields": {"code_postal": "59280", "code_commune_insee": "59017", "libell_d_acheminement": "ARMENTIERES", "ligne_5": "LE BIZET", "nom_de_la_commune": "ARMENTIERES", "coordonnees_gps": [50.6683510107, 2.87630050545]}, "geometry": {"type": "Point", "coordinates": [2.87630050545, 50.6683510107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90036252846af4939b0ae5fbb017d3a1ad8f4a5f", "fields": {"nom_de_la_commune": "AUBY", "libell_d_acheminement": "AUBY", "code_postal": "59950", "coordonnees_gps": [50.4143759518, 3.06120580228], "code_commune_insee": "59028"}, "geometry": {"type": "Point", "coordinates": [3.06120580228, 50.4143759518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28fe3ea0731e8c5a5491036861bba8e570c4d55c", "fields": {"nom_de_la_commune": "AUCHY LEZ ORCHIES", "libell_d_acheminement": "AUCHY LEZ ORCHIES", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59029"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac123befe3a1bb9f23ca41a1cbbe79a0883cebab", "fields": {"nom_de_la_commune": "BACHY", "libell_d_acheminement": "BACHY", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59042"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f6b5329f5ce4e81defee16ab45f5a2f452518a", "fields": {"nom_de_la_commune": "BAISIEUX", "libell_d_acheminement": "BAISIEUX", "code_postal": "59780", "coordonnees_gps": [50.6106542416, 3.2436665711], "code_commune_insee": "59044"}, "geometry": {"type": "Point", "coordinates": [3.2436665711, 50.6106542416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d292dcc077ab00e987b1f3d39d049da536a9c9", "fields": {"nom_de_la_commune": "LA BASSEE", "libell_d_acheminement": "LA BASSEE", "code_postal": "59480", "coordonnees_gps": [50.5558128425, 2.82300533087], "code_commune_insee": "59051"}, "geometry": {"type": "Point", "coordinates": [2.82300533087, 50.5558128425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c005f0b18abc99bbbd728121b7aac871600c44cf", "fields": {"nom_de_la_commune": "BAUVIN", "libell_d_acheminement": "BAUVIN", "code_postal": "59221", "coordonnees_gps": [50.5162330076, 2.89300264366], "code_commune_insee": "59052"}, "geometry": {"type": "Point", "coordinates": [2.89300264366, 50.5162330076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8d83b3d966d3d43cacfb18b3553977f65e98e74", "fields": {"code_postal": "59570", "code_commune_insee": "59053", "libell_d_acheminement": "BAVAY", "ligne_5": "LOUVIGNIES BAVAY", "nom_de_la_commune": "BAVAY", "coordonnees_gps": [50.3076854397, 3.80843098031]}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd0916c68f554ddba070a6874300fdcc46ede968", "fields": {"nom_de_la_commune": "BAZUEL", "libell_d_acheminement": "BAZUEL", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59055"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be0417125c0b90c69fa22fbc884f6f86b39383f9", "fields": {"nom_de_la_commune": "BEAUDIGNIES", "libell_d_acheminement": "BEAUDIGNIES", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59057"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae5f9177c08517b1972d95f251a35ac4cf571af", "fields": {"nom_de_la_commune": "BELLIGNIES", "libell_d_acheminement": "BELLIGNIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59065"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9832bbff10a58404f8ac0053090dcb1ed448e9cc", "fields": {"nom_de_la_commune": "BERGUES", "libell_d_acheminement": "BERGUES", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59067"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b247ca5d4ccfe5dbadf2a63fdaa9f6c41622e256", "fields": {"nom_de_la_commune": "BERLAIMONT", "libell_d_acheminement": "BERLAIMONT", "code_postal": "59145", "coordonnees_gps": [50.1990593503, 3.79431721305], "code_commune_insee": "59068"}, "geometry": {"type": "Point", "coordinates": [3.79431721305, 50.1990593503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896bc9a70124c017f45d68bf8c97cc1f119c8d76", "fields": {"nom_de_la_commune": "BERSEE", "libell_d_acheminement": "BERSEE", "code_postal": "59235", "coordonnees_gps": [50.4806857231, 3.15123020584], "code_commune_insee": "59071"}, "geometry": {"type": "Point", "coordinates": [3.15123020584, 50.4806857231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9534e783ecc3d3cfd6028bcd7ccdf4e9687113a", "fields": {"nom_de_la_commune": "BERSILLIES", "libell_d_acheminement": "BERSILLIES", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59072"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a033f1b2b4d42f563ca3001fb35231d3626d70ea", "fields": {"nom_de_la_commune": "BERTHEN", "libell_d_acheminement": "BERTHEN", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59073"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0436a4d786320bfc3efed35e851b02f02cc76e7", "fields": {"code_postal": "59270", "code_commune_insee": "59073", "libell_d_acheminement": "BERTHEN", "ligne_5": "MONT DES CATS", "nom_de_la_commune": "BERTHEN", "coordonnees_gps": [50.744872534, 2.69409590473]}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9e6a5e91dbac907d11f90e54337453962a9793", "fields": {"nom_de_la_commune": "BERTRY", "libell_d_acheminement": "BERTRY", "code_postal": "59980", "coordonnees_gps": [50.0845778116, 3.46500822238], "code_commune_insee": "59074"}, "geometry": {"type": "Point", "coordinates": [3.46500822238, 50.0845778116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31959a891cfedbdfa5765c26d1869af5675d98a", "fields": {"nom_de_la_commune": "BETTRECHIES", "libell_d_acheminement": "BETTRECHIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59077"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f54cd14ae55453587c60c8445bd386d55fb16d0", "fields": {"nom_de_la_commune": "BISSEZEELE", "libell_d_acheminement": "BISSEZEELE", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59083"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9415d61360517e8ea26620fca5b310d107cd65c8", "fields": {"nom_de_la_commune": "BLARINGHEM", "libell_d_acheminement": "BLARINGHEM", "code_postal": "59173", "coordonnees_gps": [50.7167343875, 2.40817332289], "code_commune_insee": "59084"}, "geometry": {"type": "Point", "coordinates": [2.40817332289, 50.7167343875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd6e6fe9e030a3f07fc0c5740b755ad791ac67e7", "fields": {"nom_de_la_commune": "BOESCHEPE", "libell_d_acheminement": "BOESCHEPE", "code_postal": "59299", "coordonnees_gps": [50.7990963037, 2.69841501665], "code_commune_insee": "59086"}, "geometry": {"type": "Point", "coordinates": [2.69841501665, 50.7990963037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1f12efb82f1f59cd292be1da2ef638e46cc33b", "fields": {"nom_de_la_commune": "BOLLEZEELE", "libell_d_acheminement": "BOLLEZEELE", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59089"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c94d08274c32bb8a442f640f2804d7c3be02f22", "fields": {"nom_de_la_commune": "BORRE", "libell_d_acheminement": "BORRE", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59091"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a9a21240bab9d5b05e02e087e4e720d4231e145", "fields": {"nom_de_la_commune": "BOUCHAIN", "libell_d_acheminement": "BOUCHAIN", "code_postal": "59111", "coordonnees_gps": [50.2733776483, 3.31798741017], "code_commune_insee": "59092"}, "geometry": {"type": "Point", "coordinates": [3.31798741017, 50.2733776483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48b61ab1389c138ebfd281982f3ca42e01bc832b", "fields": {"nom_de_la_commune": "BOURBOURG", "libell_d_acheminement": "BOURBOURG", "code_postal": "59630", "coordonnees_gps": [50.9241353596, 2.23327395744], "code_commune_insee": "59094"}, "geometry": {"type": "Point", "coordinates": [2.23327395744, 50.9241353596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6bdad941a06f9e8088581dfa8f9af3742f7be1e", "fields": {"nom_de_la_commune": "BOUSBECQUE", "libell_d_acheminement": "BOUSBECQUE", "code_postal": "59166", "coordonnees_gps": [50.7638173156, 3.07490254619], "code_commune_insee": "59098"}, "geometry": {"type": "Point", "coordinates": [3.07490254619, 50.7638173156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d4fe0c078403036ef5a8cfa4271c0cf9c4ac62d", "fields": {"nom_de_la_commune": "BOUSIGNIES SUR ROC", "libell_d_acheminement": "BOUSIGNIES SUR ROC", "code_postal": "59149", "coordonnees_gps": [50.2443056992, 4.15095520104], "code_commune_insee": "59101"}, "geometry": {"type": "Point", "coordinates": [4.15095520104, 50.2443056992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ca019655683811417db9e893ecc6037fd32a1a", "fields": {"nom_de_la_commune": "BOUSSIERES SUR SAMBRE", "libell_d_acheminement": "BOUSSIERES SUR SAMBRE", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59103"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "952296e6f51f7083182504ded33a62b090b55eb2", "fields": {"nom_de_la_commune": "BOUSSOIS", "libell_d_acheminement": "BOUSSOIS", "code_postal": "59168", "coordonnees_gps": [50.2946104674, 4.04736259113], "code_commune_insee": "59104"}, "geometry": {"type": "Point", "coordinates": [4.04736259113, 50.2946104674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "619109aa72674ffc27226189c51fd749ae115d10", "fields": {"nom_de_la_commune": "BOUVIGNIES", "libell_d_acheminement": "BOUVIGNIES", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59105"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35b671928d241ac428d77d6f34cd8647b65dcfac", "fields": {"nom_de_la_commune": "BRUNEMONT", "libell_d_acheminement": "BRUNEMONT", "code_postal": "59151", "coordonnees_gps": [50.2865158745, 3.11140042003], "code_commune_insee": "59115"}, "geometry": {"type": "Point", "coordinates": [3.11140042003, 50.2865158745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d81bced465bde0bb2c5a0b0ceced6ba778ed58", "fields": {"nom_de_la_commune": "BRY", "libell_d_acheminement": "BRY", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59116"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "468a418686c6bdf3f8d6fc2a62e654944e1deae6", "fields": {"nom_de_la_commune": "BUYSSCHEURE", "libell_d_acheminement": "BUYSSCHEURE", "code_postal": "59285", "coordonnees_gps": [50.8315857512, 2.37917573107], "code_commune_insee": "59119"}, "geometry": {"type": "Point", "coordinates": [2.37917573107, 50.8315857512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b9843339a981cabb484537e0ac30da6aef6f4e", "fields": {"nom_de_la_commune": "CAESTRE", "libell_d_acheminement": "CAESTRE", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59120"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9a823280f1f2facfc5577c4721548f622e5410", "fields": {"nom_de_la_commune": "CANTIN", "libell_d_acheminement": "CANTIN", "code_postal": "59169", "coordonnees_gps": [50.3188008385, 3.12364772716], "code_commune_insee": "59126"}, "geometry": {"type": "Point", "coordinates": [3.12364772716, 50.3188008385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d63c1c4a4e25e7865667bcfea2407610fefa27", "fields": {"nom_de_la_commune": "CARTIGNIES", "libell_d_acheminement": "CARTIGNIES", "code_postal": "59244", "coordonnees_gps": [50.0896425348, 3.83023391682], "code_commune_insee": "59134"}, "geometry": {"type": "Point", "coordinates": [3.83023391682, 50.0896425348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03444c1d457600f48dd2713a95dafb43b28c6d08", "fields": {"nom_de_la_commune": "CASSEL", "libell_d_acheminement": "CASSEL", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59135"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc0b7b52a5616f0b56f7f0ead6b8aa468d74f4e7", "fields": {"nom_de_la_commune": "CAUDRY", "libell_d_acheminement": "CAUDRY", "code_postal": "59540", "coordonnees_gps": [50.1250979725, 3.43223199835], "code_commune_insee": "59139"}, "geometry": {"type": "Point", "coordinates": [3.43223199835, 50.1250979725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab1adadeee235ae8ed5578427e45587e40d8e46", "fields": {"nom_de_la_commune": "CAULLERY", "libell_d_acheminement": "CAULLERY", "code_postal": "59191", "coordonnees_gps": [50.1001907619, 3.36864533682], "code_commune_insee": "59140"}, "geometry": {"type": "Point", "coordinates": [3.36864533682, 50.1001907619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b46c6f30743ef8c0aadaa2b1147d5683364f3677", "fields": {"code_postal": "59154", "code_commune_insee": "59160", "libell_d_acheminement": "CRESPIN", "ligne_5": "BLANC MISSERON ANF", "nom_de_la_commune": "CRESPIN", "coordonnees_gps": [50.4218005346, 3.65167545746]}, "geometry": {"type": "Point", "coordinates": [3.65167545746, 50.4218005346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e3a81813601f631739885b92c05aad7e9baae46", "fields": {"nom_de_la_commune": "CYSOING", "libell_d_acheminement": "CYSOING", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59168"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90f2b133cc3fe7a157663c099176f7f214337a55", "fields": {"nom_de_la_commune": "DECHY", "libell_d_acheminement": "DECHY", "code_postal": "59187", "coordonnees_gps": [50.3496628506, 3.1300601478], "code_commune_insee": "59170"}, "geometry": {"type": "Point", "coordinates": [3.1300601478, 50.3496628506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec1d9f93931a05d43427d62ce9aa3c757ab9dc6c", "fields": {"nom_de_la_commune": "DIMONT", "libell_d_acheminement": "DIMONT", "code_postal": "59216", "coordonnees_gps": [50.1687463201, 4.01936516486], "code_commune_insee": "59175"}, "geometry": {"type": "Point", "coordinates": [4.01936516486, 50.1687463201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e074bc6b91507da4b92dc96036779b8aeab9581", "fields": {"nom_de_la_commune": "DOUAI", "libell_d_acheminement": "DOUAI", "code_postal": "59500", "coordonnees_gps": [50.382032933, 3.09129729986], "code_commune_insee": "59178"}, "geometry": {"type": "Point", "coordinates": [3.09129729986, 50.382032933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9febf9061a3a6766210f74dee4b27e9e4ccd04bf", "fields": {"nom_de_la_commune": "DOURLERS", "libell_d_acheminement": "DOURLERS", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59181"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b8f45907f0262f9f7c83ef878e08904a54b47d9", "fields": {"nom_de_la_commune": "DRINCHAM", "libell_d_acheminement": "DRINCHAM", "code_postal": "59630", "coordonnees_gps": [50.9241353596, 2.23327395744], "code_commune_insee": "59182"}, "geometry": {"type": "Point", "coordinates": [2.23327395744, 50.9241353596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5ab4ae98720442c34aa20e19caa9f210cd76f1", "fields": {"code_postal": "59279", "code_commune_insee": "59183", "libell_d_acheminement": "DUNKERQUE", "ligne_5": "MARDYCK", "nom_de_la_commune": "DUNKERQUE", "coordonnees_gps": [51.0134149737, 2.28028859027]}, "geometry": {"type": "Point", "coordinates": [2.28028859027, 51.0134149737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8128544949d9cfaf5e0a22608b0963e67d7a3d8", "fields": {"code_postal": "59430", "code_commune_insee": "59183", "libell_d_acheminement": "DUNKERQUE", "ligne_5": "FORT MARDYCK", "nom_de_la_commune": "DUNKERQUE", "coordonnees_gps": [51.0306940868, 2.33760634]}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b85195266a9d629f79f411c3f88b9a2ef5c1410", "fields": {"nom_de_la_commune": "ECUELIN", "libell_d_acheminement": "ECUELIN", "code_postal": "59620", "coordonnees_gps": [50.1872040884, 3.853225186], "code_commune_insee": "59188"}, "geometry": {"type": "Point", "coordinates": [3.853225186, 50.1872040884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703cbf062f6914d254c06aec14b0eb7065474da7", "fields": {"nom_de_la_commune": "ENNEVELIN", "libell_d_acheminement": "ENNEVELIN", "code_postal": "59710", "coordonnees_gps": [50.5305991887, 3.10906639629], "code_commune_insee": "59197"}, "geometry": {"type": "Point", "coordinates": [3.10906639629, 50.5305991887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f980ee7add19bfdfcd6edee9eb68c377c99a9b5", "fields": {"nom_de_la_commune": "ESCARMAIN", "libell_d_acheminement": "ESCARMAIN", "code_postal": "59213", "coordonnees_gps": [50.2475337981, 3.52978047064], "code_commune_insee": "59204"}, "geometry": {"type": "Point", "coordinates": [3.52978047064, 50.2475337981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0883e4d0ab345e4a3d7bf6ba71effccb567e8dd3", "fields": {"nom_de_la_commune": "ESCAUDOEUVRES", "libell_d_acheminement": "ESCAUDOEUVRES", "code_postal": "59161", "coordonnees_gps": [50.1987116728, 3.28713967931], "code_commune_insee": "59206"}, "geometry": {"type": "Point", "coordinates": [3.28713967931, 50.1987116728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf50667f349077fcfd667246d6378d461c21fa7", "fields": {"nom_de_la_commune": "ESNES", "libell_d_acheminement": "ESNES", "code_postal": "59127", "coordonnees_gps": [50.0669008118, 3.33260202285], "code_commune_insee": "59209"}, "geometry": {"type": "Point", "coordinates": [3.33260202285, 50.0669008118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cab409c55c14f912e741057fefc609df0030295", "fields": {"nom_de_la_commune": "ESTAIRES", "libell_d_acheminement": "ESTAIRES", "code_postal": "59940", "coordonnees_gps": [50.6663981785, 2.70159427049], "code_commune_insee": "59212"}, "geometry": {"type": "Point", "coordinates": [2.70159427049, 50.6663981785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88417c16364fe236a5d33fc0a877e4e4a2999c84", "fields": {"nom_de_la_commune": "ESTOURMEL", "libell_d_acheminement": "ESTOURMEL", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59213"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9b6af874dc73261fe4400324bbbe142d1d258c", "fields": {"nom_de_la_commune": "ESWARS", "libell_d_acheminement": "ESWARS", "code_postal": "59161", "coordonnees_gps": [50.1987116728, 3.28713967931], "code_commune_insee": "59216"}, "geometry": {"type": "Point", "coordinates": [3.28713967931, 50.1987116728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "655c873addf456d466f4606b28b2361b95b06d5c", "fields": {"nom_de_la_commune": "ETROEUNGT", "libell_d_acheminement": "ETROEUNGT", "code_postal": "59219", "coordonnees_gps": [50.0518032549, 3.92131798693], "code_commune_insee": "59218"}, "geometry": {"type": "Point", "coordinates": [3.92131798693, 50.0518032549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d6c39f296ccdb453d58b4bad223f28f9d2484b", "fields": {"nom_de_la_commune": "FACHES THUMESNIL", "libell_d_acheminement": "FACHES THUMESNIL", "code_postal": "59155", "coordonnees_gps": [50.5939825721, 3.07223990633], "code_commune_insee": "59220"}, "geometry": {"type": "Point", "coordinates": [3.07223990633, 50.5939825721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec6b325200b9cdf1e2a8d58737ee5f99fe314c52", "fields": {"nom_de_la_commune": "FERON", "libell_d_acheminement": "FERON", "code_postal": "59610", "coordonnees_gps": [50.0219945971, 4.04376753743], "code_commune_insee": "59229"}, "geometry": {"type": "Point", "coordinates": [4.04376753743, 50.0219945971]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af389488222f5d6e4c20af29145796ad4b7b482f", "fields": {"nom_de_la_commune": "FLINES LEZ RACHES", "libell_d_acheminement": "FLINES LEZ RACHES", "code_postal": "59148", "coordonnees_gps": [50.4169084896, 3.18216827762], "code_commune_insee": "59239"}, "geometry": {"type": "Point", "coordinates": [3.18216827762, 50.4169084896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72b0121ba8c8cc775d7a3649c1ec67e92d551f9", "fields": {"nom_de_la_commune": "FOREST EN CAMBRESIS", "libell_d_acheminement": "FOREST EN CAMBRESIS", "code_postal": "59222", "coordonnees_gps": [50.1472445748, 3.59180512772], "code_commune_insee": "59246"}, "geometry": {"type": "Point", "coordinates": [3.59180512772, 50.1472445748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae37273f6dbb886072ee41e8cde53dc95c8a4fea", "fields": {"nom_de_la_commune": "FRASNOY", "libell_d_acheminement": "FRASNOY", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59251"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55d538103708f5717ba8b091350326a6f6547880", "fields": {"nom_de_la_commune": "FRELINGHIEN", "libell_d_acheminement": "FRELINGHIEN", "code_postal": "59236", "coordonnees_gps": [50.7028060979, 2.95097432461], "code_commune_insee": "59252"}, "geometry": {"type": "Point", "coordinates": [2.95097432461, 50.7028060979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f6bd4350cbdda7ea301312cffbed1b924c31c08", "fields": {"nom_de_la_commune": "GHISSIGNIES", "libell_d_acheminement": "GHISSIGNIES", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59259"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d1b8774bdb39d9fb9d933dc763b5eded96227d", "fields": {"nom_de_la_commune": "GLAGEON", "libell_d_acheminement": "GLAGEON", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59261"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a27371dbbe2ccaa3ab09d4f9838bf9a541416c9", "fields": {"nom_de_la_commune": "GONDECOURT", "libell_d_acheminement": "GONDECOURT", "code_postal": "59147", "coordonnees_gps": [50.5444177471, 2.98104516318], "code_commune_insee": "59266"}, "geometry": {"type": "Point", "coordinates": [2.98104516318, 50.5444177471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9bb936459ba655ba2298e0533cdbca501ce5691", "fields": {"nom_de_la_commune": "GRAND FORT PHILIPPE", "libell_d_acheminement": "GRAND FORT PHILIPPE", "code_postal": "59153", "coordonnees_gps": [50.9992920802, 2.10130581284], "code_commune_insee": "59272"}, "geometry": {"type": "Point", "coordinates": [2.10130581284, 50.9992920802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0240ef971c72da7658817db788e7c185135a3835", "fields": {"nom_de_la_commune": "GRAVELINES", "libell_d_acheminement": "GRAVELINES", "code_postal": "59820", "coordonnees_gps": [50.98845491, 2.14774710721], "code_commune_insee": "59273"}, "geometry": {"type": "Point", "coordinates": [2.14774710721, 50.98845491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31d8904283be41ef9814ec9719d2ad9182938ec", "fields": {"nom_de_la_commune": "LA GROISE", "libell_d_acheminement": "LA GROISE", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59274"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80637d2a1cac76bfe125b1b78eb277ea02e4dbf", "fields": {"nom_de_la_commune": "ST SAMSON", "libell_d_acheminement": "ST SAMSON", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14657"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f72a13e3566ef8e17bab278181127850f301e69", "fields": {"nom_de_la_commune": "SEPT VENTS", "libell_d_acheminement": "SEPT VENTS", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14672"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34bae209129b9d9524b69fcaaafaab868da414fe", "fields": {"nom_de_la_commune": "SOIGNOLLES", "libell_d_acheminement": "SOIGNOLLES", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14674"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "012beef9b0bfcf66e8c8c676a1f9e83732c453d1", "fields": {"nom_de_la_commune": "SOLIERS", "libell_d_acheminement": "SOLIERS", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14675"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5599d150abffefbb60ed6a431d3a45ab90c138fb", "fields": {"nom_de_la_commune": "SOULANGY", "libell_d_acheminement": "SOULANGY", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14677"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0af2d24f11d8b0bd4e411d2c448a87bf3d7450e", "fields": {"code_postal": "14220", "code_commune_insee": "14689", "libell_d_acheminement": "LE HOM", "ligne_5": "ST MARTIN DE SALLEN", "nom_de_la_commune": "LE HOM", "coordonnees_gps": [48.9913936572, -0.409929998013]}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fabc4edcc17360cdd8187ac4abd8f10cf6ad1ae6", "fields": {"code_postal": "14220", "code_commune_insee": "14689", "libell_d_acheminement": "LE HOM", "ligne_5": "THURY HARCOURT", "nom_de_la_commune": "LE HOM", "coordonnees_gps": [48.9913936572, -0.409929998013]}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25cc6ce72598c5e5d69d7d5b2c76b42b5d79bbba", "fields": {"nom_de_la_commune": "TILLY SUR SEULLES", "libell_d_acheminement": "TILLY SUR SEULLES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14692"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65bd7e6b7235fb2fa0ba4d4c271b80f2c70a3a0e", "fields": {"nom_de_la_commune": "LE TORQUESNE", "libell_d_acheminement": "LE TORQUESNE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14694"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73655e704e9ffcda9671ee2336b7714fc5a85e5e", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "ST MARTIN DE FRESNAY", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480c2c6e3bffb7fcf152a83ed56ac7a87a0163c0", "fields": {"nom_de_la_commune": "TOURGEVILLE", "libell_d_acheminement": "TOURGEVILLE", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14701"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e75208b87f1cfc5d876f164275e958633a39d7", "fields": {"nom_de_la_commune": "TOURVILLE EN AUGE", "libell_d_acheminement": "TOURVILLE EN AUGE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14706"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5006000eab573e5008bdc2a2af20c2fafc631ec8", "fields": {"nom_de_la_commune": "TRACY SUR MER", "libell_d_acheminement": "TRACY SUR MER", "code_postal": "14117", "coordonnees_gps": [49.3341466257, -0.646070140255], "code_commune_insee": "14709"}, "geometry": {"type": "Point", "coordinates": [-0.646070140255, 49.3341466257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f655a77e597a853f97591151d45ac6970c27e190", "fields": {"code_postal": "14350", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "MONTCHAMP", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5090d6d92976d07abee98d53efb401db97f0c1ce", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "PRESLES", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0dbda9077edffd0fa772b46f2260fa8c4429598", "fields": {"nom_de_la_commune": "LE VEY", "libell_d_acheminement": "LE VEY", "code_postal": "14570", "coordonnees_gps": [48.9153171843, -0.506427417582], "code_commune_insee": "14741"}, "geometry": {"type": "Point", "coordinates": [-0.506427417582, 48.9153171843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "751f2bb374373e17a128211a130d37bcf83d8933", "fields": {"nom_de_la_commune": "VICQUES", "libell_d_acheminement": "VICQUES", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14742"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "238faf994447e564d1d0e1ff99c7971914e1f5c7", "fields": {"nom_de_la_commune": "VIEUX BOURG", "libell_d_acheminement": "VIEUX BOURG", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14748"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4e01bdcf67329f242335769fab10774fa28f51c", "fields": {"nom_de_la_commune": "VILLERVILLE", "libell_d_acheminement": "VILLERVILLE", "code_postal": "14113", "coordonnees_gps": [49.392904808, 0.128649857058], "code_commune_insee": "14755"}, "geometry": {"type": "Point", "coordinates": [0.128649857058, 49.392904808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "662504d3e3f2c46059925a3ef403677d4c30a552", "fields": {"nom_de_la_commune": "VILLONS LES BUISSONS", "libell_d_acheminement": "VILLONS LES BUISSONS", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14758"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e22f016acc0a35b0361891a7a44d33f235b34948", "fields": {"nom_de_la_commune": "VILLY BOCAGE", "libell_d_acheminement": "VILLY BOCAGE", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14760"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c1a8691d6c4969a749d5ddcd51551838669fc6", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "VAUDRY", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f23039c87147cdfb74dd56961666c37ea6375c", "fields": {"nom_de_la_commune": "ALLANCHE", "libell_d_acheminement": "ALLANCHE", "code_postal": "15160", "coordonnees_gps": [45.252065959, 2.92878213054], "code_commune_insee": "15001"}, "geometry": {"type": "Point", "coordinates": [2.92878213054, 45.252065959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a727c4349bd111e3def932c54599aaefecae6984", "fields": {"nom_de_la_commune": "ALLEUZE", "libell_d_acheminement": "ALLEUZE", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15002"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9d04cce285def1315052347049db773db7749a", "fields": {"nom_de_la_commune": "ANDELAT", "libell_d_acheminement": "ANDELAT", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15004"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9effbb34915f2130220e821a63987b7ae2e8ad4", "fields": {"nom_de_la_commune": "ANTIGNAC", "libell_d_acheminement": "ANTIGNAC", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15008"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d0f3366996dd6eff8c980d806d0b010b413849", "fields": {"nom_de_la_commune": "ARNAC", "libell_d_acheminement": "ARNAC", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15011"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9dccea0da944250400572e1b0482172bc483b2e", "fields": {"nom_de_la_commune": "AYRENS", "libell_d_acheminement": "AYRENS", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15016"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e2669ca83028aecda40f986dc8b264382996b6", "fields": {"nom_de_la_commune": "BADAILHAC", "libell_d_acheminement": "BADAILHAC", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15017"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8de91dedccd8a57e3a8fd07dd95813077c8690", "fields": {"nom_de_la_commune": "BASSIGNAC", "libell_d_acheminement": "BASSIGNAC", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15019"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3daf8bef8e2a0221e1d9ba7bf6632e905fd1b181", "fields": {"nom_de_la_commune": "CARLAT", "libell_d_acheminement": "CARLAT", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15028"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "295c997730819f42123d0c614f1cc4371893f679", "fields": {"nom_de_la_commune": "CHALINARGUES", "libell_d_acheminement": "CHALINARGUES", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15035"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a7d57ee3bbe70c561d1d6af2fe6d4fbd58f54c", "fields": {"nom_de_la_commune": "CHAUDES AIGUES", "libell_d_acheminement": "CHAUDES AIGUES", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15045"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102dad44d2d1a0064f3a43e0667fd212afa2f31b", "fields": {"nom_de_la_commune": "CHAUSSENAC", "libell_d_acheminement": "CHAUSSENAC", "code_postal": "15700", "coordonnees_gps": [45.1474212799, 2.26638957361], "code_commune_insee": "15046"}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c219bd7cd0112b128d175bd8c8fcdb2b9d79baae", "fields": {"nom_de_la_commune": "LE CLAUX", "libell_d_acheminement": "LE CLAUX", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15050"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9cc83c39d131615027adcc9c3b62f8cef75e24d", "fields": {"nom_de_la_commune": "DIENNE", "libell_d_acheminement": "DIENNE", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15061"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8139b12e2dec5090d9d0990fa843a5e1593cd3", "fields": {"nom_de_la_commune": "DRUGEAC", "libell_d_acheminement": "DRUGEAC", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15063"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89403846d0adbeabb229588abe0e4e04ece4d24e", "fields": {"nom_de_la_commune": "FRIDEFONT", "libell_d_acheminement": "FRIDEFONT", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15073"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd09ae65da94a6f15d9b9f7a9e896931b66d7a3", "fields": {"nom_de_la_commune": "JOU SOUS MONJOU", "libell_d_acheminement": "JOU SOUS MONJOU", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15081"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f34e6a037834ef423d5f80740d0b04f5d8a7151", "fields": {"nom_de_la_commune": "LABROUSSE", "libell_d_acheminement": "LABROUSSE", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15085"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a28d06bf9d09fc8463f739b5d6ed5b5fa906b5", "fields": {"nom_de_la_commune": "LAPEYRUGUE", "libell_d_acheminement": "LAPEYRUGUE", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15093"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd5add3dc50835b02900971829548edf93d99eac", "fields": {"nom_de_la_commune": "LAURIE", "libell_d_acheminement": "LAURIE", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15098"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5139f4e939adc5026c127be9fc09b81122392494", "fields": {"code_postal": "15320", "code_commune_insee": "15108", "libell_d_acheminement": "VAL D ARCOMIE", "ligne_5": "ST JUST", "nom_de_la_commune": "VAL D ARCOMIE", "coordonnees_gps": [44.9755512909, 3.25916489345]}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05f3fdb568d937cdadc2456a81c66bc301c76d9c", "fields": {"nom_de_la_commune": "MALBO", "libell_d_acheminement": "MALBO", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15112"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1222392bb88009566fa13c0148b66067220399d3", "fields": {"nom_de_la_commune": "MARMANHAC", "libell_d_acheminement": "MARMANHAC", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15118"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "362b827a498a359e01b47aa6a455e757ea92de7b", "fields": {"nom_de_la_commune": "MAURINES", "libell_d_acheminement": "MAURINES", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15121"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38341b75a11825901e19cc2866af349f15712ef4", "fields": {"nom_de_la_commune": "MONTBOUDIF", "libell_d_acheminement": "MONTBOUDIF", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15129"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b87d3153d051b31fd50a5d5a2d13d48abc55df", "fields": {"nom_de_la_commune": "MOURJOU", "libell_d_acheminement": "MOURJOU", "code_postal": "15340", "coordonnees_gps": [44.6960347495, 2.36319520573], "code_commune_insee": "15136"}, "geometry": {"type": "Point", "coordinates": [2.36319520573, 44.6960347495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49a165d47045ca9568ef99e043c5cc0669aae0f", "fields": {"nom_de_la_commune": "MURAT", "libell_d_acheminement": "MURAT", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15138"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d175a485b5c7ba6e081ad8f53665c767838231b4", "fields": {"nom_de_la_commune": "NARNHAC", "libell_d_acheminement": "NARNHAC", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15139"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "058af4e34ea9f79a236bb4289d8d46a79fa9bf13", "fields": {"nom_de_la_commune": "PARLAN", "libell_d_acheminement": "PARLAN", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15147"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f2e268a6a062fc357715a42fc4ce8d933e74e4", "fields": {"nom_de_la_commune": "PEYRUSSE", "libell_d_acheminement": "PEYRUSSE", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15151"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2afbf42bfe01740a3dc7c29a75e22a54e8221ceb", "fields": {"nom_de_la_commune": "QUEZAC", "libell_d_acheminement": "QUEZAC", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15157"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e25045a92afcac0f95bb1d1fc4d99e91709dd0", "fields": {"nom_de_la_commune": "RUYNES EN MARGERIDE", "libell_d_acheminement": "RUYNES EN MARGERIDE", "code_postal": "15320", "coordonnees_gps": [44.9755512909, 3.25916489345], "code_commune_insee": "15168"}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8acd71aa280b01dd143edd4a8151204dac3afa95", "fields": {"nom_de_la_commune": "ST AMANDIN", "libell_d_acheminement": "ST AMANDIN", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15170"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4900f5f3bb9a5e83e7fe95df3bab977e8d402be8", "fields": {"nom_de_la_commune": "ST CERNIN", "libell_d_acheminement": "ST CERNIN", "code_postal": "15310", "coordonnees_gps": [45.0470485491, 2.40091577072], "code_commune_insee": "15175"}, "geometry": {"type": "Point", "coordinates": [2.40091577072, 45.0470485491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27eb042c1cfc9a5f672aba8ddfbecccfb3f65c8", "fields": {"nom_de_la_commune": "ST FLOUR", "libell_d_acheminement": "ST FLOUR", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15187"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12390cd78a377f6348a07e9b650f6019a839569", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15190"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4bd3f042f37a1482fa94bc9ca2e590ed53d818b", "fields": {"nom_de_la_commune": "ST ILLIDE", "libell_d_acheminement": "ST ILLIDE", "code_postal": "15310", "coordonnees_gps": [45.0470485491, 2.40091577072], "code_commune_insee": "15191"}, "geometry": {"type": "Point", "coordinates": [2.40091577072, 45.0470485491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fc6381e3e74f83fdd5d81d9cf6691680428f6c5", "fields": {"nom_de_la_commune": "ST MARTIN CANTALES", "libell_d_acheminement": "ST MARTIN CANTALES", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15200"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10585127d4405f8c3bdbc50e6abe59118b9e8524", "fields": {"nom_de_la_commune": "ST MARTIN VALMEROUX", "libell_d_acheminement": "ST MARTIN VALMEROUX", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15202"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81010e7ba61e8d6981289bd861568be5c3c40615", "fields": {"nom_de_la_commune": "ST SAURY", "libell_d_acheminement": "ST SAURY", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15214"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c803dd48d05ca5b534b698a06f651962c259fad", "fields": {"nom_de_la_commune": "ST SIMON", "libell_d_acheminement": "ST SIMON", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15215"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2d51be1afe3681ea03538e97c2a70c14864649f", "fields": {"nom_de_la_commune": "SOULAGES", "libell_d_acheminement": "SOULAGES", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15229"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a4d986e94bc716931ad149aa27ef9b4920959a", "fields": {"nom_de_la_commune": "TIVIERS", "libell_d_acheminement": "TIVIERS", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15237"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63daafe3b708936107d9071aaa157cee4e19db0a", "fields": {"nom_de_la_commune": "LA TRINITAT", "libell_d_acheminement": "LA TRINITAT", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15241"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f5e39491cce22d4adbf075021d92e2c20ca9ebf", "fields": {"nom_de_la_commune": "VEBRET", "libell_d_acheminement": "VEBRET", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15250"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a66726dea67eaaf8496f987e0eda4b317fae6f9c", "fields": {"nom_de_la_commune": "VEDRINES ST LOUP", "libell_d_acheminement": "VEDRINES ST LOUP", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15251"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "768bc44e536860628be897ffd62497cc7eff801a", "fields": {"nom_de_la_commune": "VEZELS ROUSSY", "libell_d_acheminement": "VEZELS ROUSSY", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15257"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cd926469918b64e778d165b7f564e296e00e88d", "fields": {"nom_de_la_commune": "VILLEDIEU", "libell_d_acheminement": "VILLEDIEU", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15262"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e7d950df8949c9e82090f2cb0a8f03fc86835d", "fields": {"nom_de_la_commune": "YTRAC", "libell_d_acheminement": "YTRAC", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15267"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51dd5461ed060012dfc5ac876bffda5133c510c8", "fields": {"code_postal": "15290", "code_commune_insee": "15268", "libell_d_acheminement": "LE ROUGET PERS", "ligne_5": "PERS", "nom_de_la_commune": "LE ROUGET PERS", "coordonnees_gps": [44.8596655037, 2.18395827378]}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93d7120388837874247eec3975aa5d80ef602218", "fields": {"nom_de_la_commune": "ABZAC", "libell_d_acheminement": "ABZAC", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16001"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde776639111090c8f30d4d59c1c3f787e10c3e5", "fields": {"nom_de_la_commune": "AGRIS", "libell_d_acheminement": "AGRIS", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16003"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4130248416e4ce972099adc349ddb8f7719bf804", "fields": {"nom_de_la_commune": "AMBERAC", "libell_d_acheminement": "AMBERAC", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16008"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dc41b3a2407c6dc8fc22834025ecbe91d04e492", "fields": {"nom_de_la_commune": "ANGOULEME", "libell_d_acheminement": "ANGOULEME", "code_postal": "16000", "coordonnees_gps": [45.6474756307, 0.145191503645], "code_commune_insee": "16015"}, "geometry": {"type": "Point", "coordinates": [0.145191503645, 45.6474756307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9d6952a5eabaf25e077d41e298e73d4e476d20", "fields": {"nom_de_la_commune": "ANVILLE", "libell_d_acheminement": "ANVILLE", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16017"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd5b1ff1795f421123529583c6e17185b00b1467", "fields": {"nom_de_la_commune": "BALZAC", "libell_d_acheminement": "BALZAC", "code_postal": "16430", "coordonnees_gps": [45.7168170917, 0.172931779313], "code_commune_insee": "16026"}, "geometry": {"type": "Point", "coordinates": [0.172931779313, 45.7168170917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5da50474d55a643aab04feb8decfd86e77848f", "fields": {"nom_de_la_commune": "BEAULIEU SUR SONNETTE", "libell_d_acheminement": "BEAULIEU SUR SONNETTE", "code_postal": "16450", "coordonnees_gps": [45.9168932329, 0.460927666406], "code_commune_insee": "16035"}, "geometry": {"type": "Point", "coordinates": [0.460927666406, 45.9168932329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e5268081f80a60393840b9f3221de289c65b475", "fields": {"nom_de_la_commune": "BIOUSSAC", "libell_d_acheminement": "BIOUSSAC", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16044"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c02ae7c980f4e71de4f7a0c345fdfd4d346a480", "fields": {"code_postal": "16250", "code_commune_insee": "16046", "libell_d_acheminement": "BLANZAC PORCHERESSE", "ligne_5": "PORCHERESSE", "nom_de_la_commune": "BLANZAC PORCHERESSE", "coordonnees_gps": [45.4908805694, 0.0542614769759]}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015dd7786b188988785aa7b5b996e26c302ac0fc", "fields": {"nom_de_la_commune": "BONNEUIL", "libell_d_acheminement": "BONNEUIL", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16050"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5c22296ed9c983c97205e5e9c1ce2b352c6dfa0", "fields": {"nom_de_la_commune": "BONNEVILLE", "libell_d_acheminement": "BONNEVILLE", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16051"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5241a649c44fb61cc59d70c51912f239fa7c6cd", "fields": {"nom_de_la_commune": "BORS DE MONTMOREAU", "libell_d_acheminement": "BORS DE MONTMOREAU", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16052"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13d4ff01f8928db50d7ccbe2e3c9b7831063f810", "fields": {"nom_de_la_commune": "BORS DE BAIGNES", "libell_d_acheminement": "BORS DE BAIGNES", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16053"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80d15b7f5101ce0115b416b0c2442b1d72d7dc78", "fields": {"nom_de_la_commune": "BRIE SOUS BARBEZIEUX", "libell_d_acheminement": "BRIE SOUS BARBEZIEUX", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16062"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c851bdaef97a2595dde08d117ec95593e8498bf9", "fields": {"nom_de_la_commune": "BUNZAC", "libell_d_acheminement": "BUNZAC", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16067"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d11538cd00b31ecb424336586728c2846a270e29", "fields": {"nom_de_la_commune": "CELLEFROUIN", "libell_d_acheminement": "CELLEFROUIN", "code_postal": "16260", "coordonnees_gps": [45.8489084837, 0.405198517802], "code_commune_insee": "16068"}, "geometry": {"type": "Point", "coordinates": [0.405198517802, 45.8489084837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e127a86f037b8b59fb8626252f6652ceed42e10", "fields": {"nom_de_la_commune": "CHANTILLAC", "libell_d_acheminement": "CHANTILLAC", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16079"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4de2501db9d98fe550b18993f6e0bcbfc0a66441", "fields": {"code_postal": "16320", "code_commune_insee": "16082", "libell_d_acheminement": "BOISNE LA TUDE", "ligne_5": "CHARMANT", "nom_de_la_commune": "BOISNE LA TUDE", "coordonnees_gps": [45.4895091736, 0.297130161872]}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1300b872e65c37b9831c3050a5b0520a2389ef2", "fields": {"nom_de_la_commune": "CHASSENEUIL SUR BONNIEURE", "libell_d_acheminement": "CHASSENEUIL SUR BONNIEURE", "code_postal": "16260", "coordonnees_gps": [45.8489084837, 0.405198517802], "code_commune_insee": "16085"}, "geometry": {"type": "Point", "coordinates": [0.405198517802, 45.8489084837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce9c38a552ade44acd46396f019143d88de6259", "fields": {"nom_de_la_commune": "CHASSIECQ", "libell_d_acheminement": "CHASSIECQ", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16087"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa8d8e70ee6f1cee1c912e42f8ea6d4b1f566d5", "fields": {"nom_de_la_commune": "CHENOMMET", "libell_d_acheminement": "CHENOMMET", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16094"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681fdd3d6d18a6019b6f1fb9af2aaa44cad9d297", "fields": {"nom_de_la_commune": "CHERVES RICHEMONT", "libell_d_acheminement": "CHERVES RICHEMONT", "code_postal": "16370", "coordonnees_gps": [45.7599366195, -0.346092589002], "code_commune_insee": "16097"}, "geometry": {"type": "Point", "coordinates": [-0.346092589002, 45.7599366195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ee31cbbe65f7b60276f1430d631f282f28c0e2", "fields": {"nom_de_la_commune": "CHIRAC", "libell_d_acheminement": "CHIRAC", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16100"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7494adf3d80bd12454de309a0f8dc8fd265de52c", "fields": {"nom_de_la_commune": "CLAIX", "libell_d_acheminement": "CLAIX", "code_postal": "16440", "coordonnees_gps": [45.5763660352, 0.064435228401], "code_commune_insee": "16101"}, "geometry": {"type": "Point", "coordinates": [0.064435228401, 45.5763660352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d2d9130887dd30f20eca143644ec37c0a90433", "fields": {"nom_de_la_commune": "CONDAC", "libell_d_acheminement": "CONDAC", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16104"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf22f714e61d0e6237ad028edb242c8ace88495", "fields": {"code_postal": "16500", "code_commune_insee": "16106", "libell_d_acheminement": "CONFOLENS", "ligne_5": "ST GERMAIN DE CONFOLENS", "nom_de_la_commune": "CONFOLENS", "coordonnees_gps": [46.0339142008, 0.700300422302]}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb1e0b114da413db0e5ab24faadec495d1f449cc", "fields": {"nom_de_la_commune": "COURBILLAC", "libell_d_acheminement": "COURBILLAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16109"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9b39c8e748f030e324b76b3d22ea711f8db92c", "fields": {"nom_de_la_commune": "HANNOGNE ST REMY", "libell_d_acheminement": "HANNOGNE ST REMY", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08210"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d712a742c336b0bba2e96d56832aa014dcc9eacc", "fields": {"code_postal": "45300", "code_commune_insee": "45348", "libell_d_acheminement": "YEVRE LA VILLE", "ligne_5": "YEVRE LE CHATEL", "nom_de_la_commune": "YEVRE LA VILLE", "coordonnees_gps": [48.1872746027, 2.25373917421]}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d2f9bae6e0f0100d04920203a9790edf36ed52", "fields": {"nom_de_la_commune": "BELMONT STE FOI", "libell_d_acheminement": "BELMONT STE FOI", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46026"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59f279b976c5e98e9be86da7a52ea75c3b8e8c7e", "fields": {"nom_de_la_commune": "BERGANTY", "libell_d_acheminement": "BERGANTY", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46027"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a8d44ba7f2e1b90224679a95b67aa8a84a7e05a", "fields": {"nom_de_la_commune": "BOUSSAC", "libell_d_acheminement": "BOUSSAC", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46035"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61bd30706f976fb40cfcab0a299b68f5494d277d", "fields": {"nom_de_la_commune": "LE BOUYSSOU", "libell_d_acheminement": "LE BOUYSSOU", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46036"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d4192c978b260a5b1a7b7833b516c6a4998c19", "fields": {"nom_de_la_commune": "BOUZIES", "libell_d_acheminement": "BOUZIES", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46037"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a26110bcafd69a6c7de121dce0fe2ef2b76de3a2", "fields": {"nom_de_la_commune": "CAJARC", "libell_d_acheminement": "CAJARC", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46045"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9366a22d3e0e9e224de872842ccb065d45e397de", "fields": {"nom_de_la_commune": "CALAMANE", "libell_d_acheminement": "CALAMANE", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46046"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7d8571421d430f67d74f29a60dc07ab9a53f0b", "fields": {"nom_de_la_commune": "CAMBOULIT", "libell_d_acheminement": "CAMBOULIT", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46052"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea499fad7f063b78e8063c899443c236c4e427bc", "fields": {"nom_de_la_commune": "CARLUCET", "libell_d_acheminement": "CARLUCET", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46059"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f0d92615c2d4ef944ee3c521d9ca9a740cb2e1", "fields": {"nom_de_la_commune": "CASTELNAU MONTRATIER", "libell_d_acheminement": "CASTELNAU MONTRATIER", "code_postal": "46170", "coordonnees_gps": [44.2978599733, 1.37150326445], "code_commune_insee": "46063"}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8152928f12eb8dcd34ef56c17e7f38fe2dbbe8a3", "fields": {"nom_de_la_commune": "CAZALS", "libell_d_acheminement": "CAZALS", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46066"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92f0cc529a2f82ed6cbe68530fdd00c15c41dc51", "fields": {"nom_de_la_commune": "CAZILLAC", "libell_d_acheminement": "CAZILLAC", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46067"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c0ee74616b1b15307b4ff274793eb7e67de3a7b", "fields": {"nom_de_la_commune": "CONDAT", "libell_d_acheminement": "CONDAT", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46074"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "612316bfa3aa4b2d08a1ee705f66e7bcb4453bff", "fields": {"nom_de_la_commune": "CORN", "libell_d_acheminement": "CORN", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46075"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58614e8f4c48496e612e5fe86d8de38a50512da5", "fields": {"nom_de_la_commune": "CORNAC", "libell_d_acheminement": "CORNAC", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46076"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0387dc43615c3567858d6f8e78155b4ec296c0bf", "fields": {"nom_de_la_commune": "COUZOU", "libell_d_acheminement": "COUZOU", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46078"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a1f9095e72796703cd0175ddc6d7428c412715", "fields": {"nom_de_la_commune": "CUZAC", "libell_d_acheminement": "CUZAC", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46085"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54d48a3057754110dfff223c3c591adf838c4e52", "fields": {"nom_de_la_commune": "DURBANS", "libell_d_acheminement": "DURBANS", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46090"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66424615f2823dcac1b17056efe985840328ba13", "fields": {"nom_de_la_commune": "FELZINS", "libell_d_acheminement": "FELZINS", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46101"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8924e838bb86c7776a8a12deb0ff3704fff2ea03", "fields": {"code_postal": "46170", "code_commune_insee": "46103", "libell_d_acheminement": "ST PAUL FLAUGNAC", "ligne_5": "ST PAUL DE LOUBRESSAC", "nom_de_la_commune": "ST PAUL FLAUGNAC", "coordonnees_gps": [44.2978599733, 1.37150326445]}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda041e8b6a6ee6cad713726b43677f46ebe2bfd", "fields": {"nom_de_la_commune": "FRAYSSINET", "libell_d_acheminement": "FRAYSSINET", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46113"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aa63ff6416b85b7297a9df2865304d3dfa7459b", "fields": {"nom_de_la_commune": "FRAYSSINET LE GELAT", "libell_d_acheminement": "FRAYSSINET LE GELAT", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46114"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f08e1a0166b03400096c84abee11795881d9d79", "fields": {"nom_de_la_commune": "GINOUILLAC", "libell_d_acheminement": "GINOUILLAC", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46121"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf2d2e2a578e4875489eeebc2d3dddffe25ac090", "fields": {"nom_de_la_commune": "GORSES", "libell_d_acheminement": "GORSES", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46125"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b8885328d9ed649d3ed716aefd70ad3101656e", "fields": {"nom_de_la_commune": "GOUJOUNAC", "libell_d_acheminement": "GOUJOUNAC", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46126"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "842dfbce37a35eacc258fd3791f9182fe192ec0e", "fields": {"nom_de_la_commune": "LES JUNIES", "libell_d_acheminement": "LES JUNIES", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46134"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc75465f67cae5dce3c25a2b7880d8bf3c23479c", "fields": {"code_postal": "46240", "code_commune_insee": "46138", "libell_d_acheminement": "COEUR DE CAUSSE", "ligne_5": "ST SAUVEUR LA VALLEE", "nom_de_la_commune": "COEUR DE CAUSSE", "coordonnees_gps": [44.6554006937, 1.59713194799]}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2235443ef54a11587492c64374514355cbdde51d", "fields": {"nom_de_la_commune": "LACAPELLE CABANAC", "libell_d_acheminement": "LACAPELLE CABANAC", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46142"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89cedeed3765208ebf2cece5f6951a9d0271c0ca", "fields": {"nom_de_la_commune": "LACAPELLE MARIVAL", "libell_d_acheminement": "LACAPELLE MARIVAL", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46143"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e00bc93ba47799de185ce49a4af0d08811555c24", "fields": {"nom_de_la_commune": "LACAVE", "libell_d_acheminement": "LACAVE", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46144"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f58d806c9acd75eddc14b6be8ad074cd275804c", "fields": {"nom_de_la_commune": "LALBENQUE", "libell_d_acheminement": "LALBENQUE", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46148"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd801c5f41aaac88f1c9adfbcdc85aa795bd439", "fields": {"nom_de_la_commune": "LAMOTHE CASSEL", "libell_d_acheminement": "LAMOTHE CASSEL", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46151"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7891891aa009a884bd79e5168cf9a3c20fca4491", "fields": {"nom_de_la_commune": "LARAMIERE", "libell_d_acheminement": "LARAMIERE", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46154"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "717a81ff111f71a963f5c60036999ee190c45b59", "fields": {"nom_de_la_commune": "LARROQUE TOIRAC", "libell_d_acheminement": "LARROQUE TOIRAC", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46157"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf8601fa5f512768b93ef0362cb93201caf730c", "fields": {"nom_de_la_commune": "LAURESSES", "libell_d_acheminement": "LAURESSES", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46161"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77ca4fb6b0fe23471bd608505d91786b0bcfe606", "fields": {"nom_de_la_commune": "LAVAL DE CERE", "libell_d_acheminement": "LAVAL DE CERE", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46163"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6f2171ae2e73d491e3fefe1896c8c683c791f68", "fields": {"nom_de_la_commune": "LEYME", "libell_d_acheminement": "LEYME", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46170"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b40f7122c4df2b83079ae793dc1b446cd340b25", "fields": {"nom_de_la_commune": "LINAC", "libell_d_acheminement": "LINAC", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46174"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "958fbf1b95126848bd72c68dea57637846108a19", "fields": {"nom_de_la_commune": "LUGAGNAC", "libell_d_acheminement": "LUGAGNAC", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46179"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "105d1fd1fef35c8be8e85e8910cbc2006c392fc9", "fields": {"nom_de_la_commune": "MARMINIAC", "libell_d_acheminement": "MARMINIAC", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46184"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ff3310b49187199877877a5d52d680c3bc1005", "fields": {"code_postal": "46800", "code_commune_insee": "46201", "libell_d_acheminement": "MONTCUQ EN QUERCY BLANC", "ligne_5": "LEBREIL", "nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", "coordonnees_gps": [44.3585211768, 1.21527135512]}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc2617f18d7cda487d2c16a451262509cf32e11b", "fields": {"nom_de_la_commune": "MONTFAUCON", "libell_d_acheminement": "MONTFAUCON", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46204"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0123f775cdd30565538904e8e3c577b0dd8ce434", "fields": {"nom_de_la_commune": "MONTVALENT", "libell_d_acheminement": "MONTVALENT", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46208"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d365af90ee6f72e9c2032dd2603f773f71678b20", "fields": {"nom_de_la_commune": "PONTCIRQ", "libell_d_acheminement": "PONTCIRQ", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46223"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a00b30ba9047ca1fab5f4f2d32c3ffa9d0d94be", "fields": {"nom_de_la_commune": "PRENDEIGNES", "libell_d_acheminement": "PRENDEIGNES", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46226"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f025a79ddd0d39a85439bbb9b544f9123d8cbe37", "fields": {"nom_de_la_commune": "PUY L EVEQUE", "libell_d_acheminement": "PUY L EVEQUE", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46231"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86356702db2091aa93f5aba5298d3fa44202f7be", "fields": {"nom_de_la_commune": "SAILLAC", "libell_d_acheminement": "SAILLAC", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46247"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b34adfd51296cc7b47fd1b9375bf0d915d1d38f", "fields": {"nom_de_la_commune": "ST CHAMARAND", "libell_d_acheminement": "ST CHAMARAND", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46253"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e021e8b5acd352c82b23ef99571500407a24ea", "fields": {"nom_de_la_commune": "ST CIRQ SOUILLAGUET", "libell_d_acheminement": "ST CIRQ SOUILLAGUET", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46258"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521d2e1d857fa98dee2843df56fbbb8eb10b34a7", "fields": {"nom_de_la_commune": "ST CYPRIEN", "libell_d_acheminement": "ST CYPRIEN", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46262"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3858f63f3a8f58c4ad032382348c02a82311c68", "fields": {"nom_de_la_commune": "ST FELIX", "libell_d_acheminement": "ST FELIX", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46266"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d50fa95b01874a7a634f443afbf02fe45e1e3710", "fields": {"nom_de_la_commune": "ST MATRE", "libell_d_acheminement": "ST MATRE", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46278"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ba8abe820e4b3378cb20cafc68e654ad8dba93", "fields": {"nom_de_la_commune": "ST PAUL DE VERN", "libell_d_acheminement": "ST PAUL DE VERN", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46286"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd21402b4e242050e6170a23a251f8868ae13fee", "fields": {"nom_de_la_commune": "ST PERDOUX", "libell_d_acheminement": "ST PERDOUX", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46288"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a18ac71414e186445c06dd390ba321746ca840f5", "fields": {"nom_de_la_commune": "ST VINCENT RIVE D OLT", "libell_d_acheminement": "ST VINCENT RIVE D OLT", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46296"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d5f7edd29b4bb45f98eda0054bd3c2a1486cb1", "fields": {"nom_de_la_commune": "TAURIAC", "libell_d_acheminement": "TAURIAC", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46313"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa296ddcd41829f859f714bf1729047947892656", "fields": {"nom_de_la_commune": "TEYSSIEU", "libell_d_acheminement": "TEYSSIEU", "code_postal": "46190", "coordonnees_gps": [44.886802824, 2.02091707559], "code_commune_insee": "46315"}, "geometry": {"type": "Point", "coordinates": [2.02091707559, 44.886802824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3942565250f878fe0804d409b123b0385c37d2", "fields": {"nom_de_la_commune": "TOUR DE FAURE", "libell_d_acheminement": "TOUR DE FAURE", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46320"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "262e8312ae229668532887cc09179ee109a53245", "fields": {"nom_de_la_commune": "TOUZAC", "libell_d_acheminement": "TOUZAC", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46321"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92cef0c27b9eecf18ff252cc88ac47238f196980", "fields": {"nom_de_la_commune": "USSEL", "libell_d_acheminement": "USSEL", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46323"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1383717d3cca8373638d54f2a089f367ffa12d5", "fields": {"nom_de_la_commune": "ST PIERRE LAFEUILLE", "libell_d_acheminement": "ST PIERRE LAFEUILLE", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46340"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62cd8a5ac10edda7a51b7a4d1ac19c8a301cf2d0", "fields": {"nom_de_la_commune": "AIGUILLON", "libell_d_acheminement": "AIGUILLON", "code_postal": "47190", "coordonnees_gps": [44.302646925, 0.368757601165], "code_commune_insee": "47004"}, "geometry": {"type": "Point", "coordinates": [0.368757601165, 44.302646925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d75e61a8a824712862f6bc792b26873334be396", "fields": {"nom_de_la_commune": "ALLEZ ET CAZENEUVE", "libell_d_acheminement": "ALLEZ ET CAZENEUVE", "code_postal": "47110", "coordonnees_gps": [44.383733234, 0.585627133864], "code_commune_insee": "47006"}, "geometry": {"type": "Point", "coordinates": [0.585627133864, 44.383733234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54c1addcda6e0016fd3e3908c185096c4d2e1970", "fields": {"nom_de_la_commune": "AMBRUS", "libell_d_acheminement": "AMBRUS", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47008"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce380728173dac170aeeb803fe66ecc8884e62bf", "fields": {"nom_de_la_commune": "ARGENTON", "libell_d_acheminement": "ARGENTON", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47013"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715829ea35815539bb0f7e292721965140dfbccf", "fields": {"nom_de_la_commune": "BAJAMONT", "libell_d_acheminement": "BAJAMONT", "code_postal": "47480", "coordonnees_gps": [44.2442520518, 0.685511945238], "code_commune_insee": "47019"}, "geometry": {"type": "Point", "coordinates": [0.685511945238, 44.2442520518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e9c78985f856909d38f97addd779163cea9f97f", "fields": {"nom_de_la_commune": "BARBASTE", "libell_d_acheminement": "BARBASTE", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47021"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59968ffee703d30d0dc37857c6776caf74319aca", "fields": {"nom_de_la_commune": "BEAUGAS", "libell_d_acheminement": "BEAUGAS", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47023"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73e6137bc97974dbe30b128bb4b07a4e4b4484a2", "fields": {"nom_de_la_commune": "BIAS", "libell_d_acheminement": "BIAS", "code_postal": "47300", "coordonnees_gps": [44.4077673219, 0.711996693355], "code_commune_insee": "47027"}, "geometry": {"type": "Point", "coordinates": [0.711996693355, 44.4077673219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a83ff7c052ef5de9aa7064f52a90fc7046a5a8d8", "fields": {"nom_de_la_commune": "BOURNEL", "libell_d_acheminement": "BOURNEL", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47037"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "198fb995af68388a635e75fc2a0057698f629c48", "fields": {"nom_de_la_commune": "BRUGNAC", "libell_d_acheminement": "BRUGNAC", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47042"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "738d88dc5eb74eae17f686d0e7359f5bd192c8a6", "fields": {"nom_de_la_commune": "CASTELLA", "libell_d_acheminement": "CASTELLA", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47053"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78bbd6c14b06e8da97659f0592a84198df836ffb", "fields": {"nom_de_la_commune": "CASTELMORON SUR LOT", "libell_d_acheminement": "CASTELMORON SUR LOT", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47054"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d8855c21c7f7c76541d60b89af8b25c8949e5cb", "fields": {"nom_de_la_commune": "CASTELNAU SUR GUPIE", "libell_d_acheminement": "CASTELNAU SUR GUPIE", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47056"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfb63c0bfe868f99d4b9f5aad6396bed71851d81", "fields": {"nom_de_la_commune": "CAUBON ST SAUVEUR", "libell_d_acheminement": "CAUBON ST SAUVEUR", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47059"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc1a55dc790431f1651b5dcb75d135785c297c9", "fields": {"nom_de_la_commune": "CAUDECOSTE", "libell_d_acheminement": "CAUDECOSTE", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47060"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f4ad0134c4d120f76f2a4811dcfeb147f9faff7", "fields": {"nom_de_la_commune": "CAVARC", "libell_d_acheminement": "CAVARC", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47063"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e17304b37ec9e16b050dfaf1c8c7490be92d1b74", "fields": {"nom_de_la_commune": "CLAIRAC", "libell_d_acheminement": "CLAIRAC", "code_postal": "47320", "coordonnees_gps": [44.3563868406, 0.403122345242], "code_commune_insee": "47065"}, "geometry": {"type": "Point", "coordinates": [0.403122345242, 44.3563868406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "175ec83dccfe273bdde334d474a4992a791162e9", "fields": {"nom_de_la_commune": "LA CROIX BLANCHE", "libell_d_acheminement": "LA CROIX BLANCHE", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47075"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dcd87c36b3a11288c6d58bcb44a19c5ec8c8fe9", "fields": {"nom_de_la_commune": "GAVAUDUN", "libell_d_acheminement": "GAVAUDUN", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47109"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1a86f0d29e76faa1279632712b91b59e17a8b6a", "fields": {"nom_de_la_commune": "GRAYSSAS", "libell_d_acheminement": "GRAYSSAS", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47113"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3963b0cb95325a29f342b5e147d4a2a17a78fea5", "fields": {"nom_de_la_commune": "HAUTESVIGNES", "libell_d_acheminement": "HAUTESVIGNES", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47118"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b48b431d4f7e991e578d513e2e5e8c8bc0a2c46", "fields": {"nom_de_la_commune": "JUSIX", "libell_d_acheminement": "JUSIX", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47120"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bbaff47a4d02756209cb70c231b74dc57fc3d1e", "fields": {"nom_de_la_commune": "LAFOX", "libell_d_acheminement": "LAFOX", "code_postal": "47240", "coordonnees_gps": [44.1950523774, 0.697905787009], "code_commune_insee": "47128"}, "geometry": {"type": "Point", "coordinates": [0.697905787009, 44.1950523774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81cf63c57c44b850f01a58c050fe01e77757ecd8", "fields": {"nom_de_la_commune": "LAMONTJOIE", "libell_d_acheminement": "LAMONTJOIE", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47133"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9e82703489c1625a88fd5a7a517ff094b799af5", "fields": {"nom_de_la_commune": "LAUGNAC", "libell_d_acheminement": "LAUGNAC", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47140"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6435ed9166900a34c1d2f4660de1673b3fce7156", "fields": {"nom_de_la_commune": "LAUSSOU", "libell_d_acheminement": "LAUSSOU", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47141"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "935ec28ebfb1c71960d7614409f78bd10218ebd0", "fields": {"nom_de_la_commune": "LEDAT", "libell_d_acheminement": "LEDAT", "code_postal": "47300", "coordonnees_gps": [44.4077673219, 0.711996693355], "code_commune_insee": "47146"}, "geometry": {"type": "Point", "coordinates": [0.711996693355, 44.4077673219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e23d23fe2fa3a7cdd3722f06ecc9bdcd4ceac152", "fields": {"nom_de_la_commune": "LEVIGNAC DE GUYENNE", "libell_d_acheminement": "LEVIGNAC DE GUYENNE", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47147"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c7122d3d22ddc5d2c68f4736cf815ca796bdb3", "fields": {"nom_de_la_commune": "LEYRITZ MONCASSIN", "libell_d_acheminement": "LEYRITZ MONCASSIN", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47148"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3eb078daae8bcf62b30b3efee37266ba9c6135c", "fields": {"nom_de_la_commune": "LOUGRATTE", "libell_d_acheminement": "LOUGRATTE", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47152"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d639b32ce861e9d5d418aa0f37af95d52fa34ddb", "fields": {"nom_de_la_commune": "LUSIGNAN PETIT", "libell_d_acheminement": "LUSIGNAN PETIT", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47154"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad1675ea8269121a198e09a46686b8f645ec508c", "fields": {"nom_de_la_commune": "MASSOULES", "libell_d_acheminement": "MASSOULES", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47162"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d41171af68dc74c9771b13afabfecc3e50945e2", "fields": {"nom_de_la_commune": "MEILHAN SUR GARONNE", "libell_d_acheminement": "MEILHAN SUR GARONNE", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47165"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04c76cf9dc046602ba01fa3527cb5b4b6e74ce7", "fields": {"nom_de_la_commune": "MEZIN", "libell_d_acheminement": "MEZIN", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47167"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038d70df9e90ff47e1d7f9ee7457f76019056538", "fields": {"nom_de_la_commune": "MONSEGUR", "libell_d_acheminement": "MONSEGUR", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47178"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a380ee3581bae291acec9067e50f98b41006c127", "fields": {"nom_de_la_commune": "MONTASTRUC", "libell_d_acheminement": "MONTASTRUC", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47182"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f18a5eba44c8f4c7331654ccc5878def172bbaa", "fields": {"nom_de_la_commune": "MONTETON", "libell_d_acheminement": "MONTETON", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47187"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b871d42750045facf1925a644c9be1b9917aeffc", "fields": {"nom_de_la_commune": "MONTIGNAC DE LAUZUN", "libell_d_acheminement": "MONTIGNAC DE LAUZUN", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47188"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b6ecb5609e78f54b4124cd2914e517fd560cfe5", "fields": {"nom_de_la_commune": "ESMERY HALLON", "libell_d_acheminement": "ESMERY HALLON", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80284"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a0e691c92050335a5119bac1bd3918f6125cc8c", "fields": {"nom_de_la_commune": "ESTREBOEUF", "libell_d_acheminement": "ESTREBOEUF", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80287"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4531f603a3660c7be689ac2588c07427efcb34", "fields": {"nom_de_la_commune": "FEUILLERES", "libell_d_acheminement": "FEUILLERES", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80307"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c8eb0469e059a2f54398073eff683738699707", "fields": {"nom_de_la_commune": "FIGNIERES", "libell_d_acheminement": "FIGNIERES", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80311"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fd33e4b936e07bb904d0e06908d6555127626e6", "fields": {"nom_de_la_commune": "FINS", "libell_d_acheminement": "FINS", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80312"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a27c56e1a3aba94c69a9b0bb915237b48d55590", "fields": {"nom_de_la_commune": "FLAUCOURT", "libell_d_acheminement": "FLAUCOURT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80313"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b51c86ffee9a2e0387e7529e05fea14c912c52e7", "fields": {"nom_de_la_commune": "FOLLEVILLE", "libell_d_acheminement": "FOLLEVILLE", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80321"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3209e505a8ccc303977ce3e24d486c5c07c078a", "fields": {"nom_de_la_commune": "FONCHES FONCHETTE", "libell_d_acheminement": "FONCHES FONCHETTE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80322"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab3fa8684506fa904b052b42242c03a7d3eb7455", "fields": {"nom_de_la_commune": "FONTAINE SOUS MONTDIDIER", "libell_d_acheminement": "FONTAINE SOUS MONTDIDIER", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80326"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d83394db0b4d47cb292266ed05356559939e01eb", "fields": {"nom_de_la_commune": "FORCEVILLE", "libell_d_acheminement": "FORCEVILLE EN AMIENOIS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80329"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb81112d1c25d5c860a13993b68ce587c7afb19", "fields": {"nom_de_la_commune": "FOREST L ABBAYE", "libell_d_acheminement": "FOREST L ABBAYE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80331"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbad0c9980c626c804bcc022795b2c57507924e8", "fields": {"nom_de_la_commune": "FOUILLOY", "libell_d_acheminement": "FOUILLOY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80338"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd8d65243dcb583c9ee1b72a25e2e2fab6eeb7ac", "fields": {"nom_de_la_commune": "FOUQUESCOURT", "libell_d_acheminement": "FOUQUESCOURT", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80339"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dbc02e9b765f1e26fb84536fd1a72cb7944a4e0", "fields": {"nom_de_la_commune": "FOURDRINOY", "libell_d_acheminement": "FOURDRINOY", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80341"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcce8192afe1e360e1eed60de294db69b8922558", "fields": {"nom_de_la_commune": "FRAMICOURT", "libell_d_acheminement": "FRAMICOURT", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80343"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f47247b93f5ffe5a605ba7ad6a88ea714df76b27", "fields": {"nom_de_la_commune": "FRESNOY LES ROYE", "libell_d_acheminement": "FRESNOY LES ROYE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80359"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afe7d5b013145833177e3527def2654dba6730d2", "fields": {"nom_de_la_commune": "FRICOURT", "libell_d_acheminement": "FRICOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80366"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186b02e9fb0915fdb82fea8975a503fd408ce4e1", "fields": {"nom_de_la_commune": "FROHEN SUR AUTHIE", "libell_d_acheminement": "FROHEN SUR AUTHIE", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80369"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9dbca5a0031796ca0b3f7941e51663453adb86b", "fields": {"nom_de_la_commune": "GAMACHES", "libell_d_acheminement": "GAMACHES", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80373"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd24eae17a89afec9d30cbeff6a2a201db4eea8e", "fields": {"nom_de_la_commune": "GINCHY", "libell_d_acheminement": "GINCHY", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80378"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9a441045d71b79a3784fbcc385136d94ab7c54", "fields": {"nom_de_la_commune": "GREBAULT MESNIL", "libell_d_acheminement": "GREBAULT MESNIL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80388"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "368d10040391c7bcafb1a2bc7166db1d9e1eec3e", "fields": {"nom_de_la_commune": "GRECOURT", "libell_d_acheminement": "GRECOURT", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80389"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58dbcea105d0d26cde43d7c81402e3c40afb477", "fields": {"nom_de_la_commune": "GROUCHES LUCHUEL", "libell_d_acheminement": "GROUCHES LUCHUEL", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80392"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9211824429c950dc9b3a67d05183189be05db07d", "fields": {"nom_de_la_commune": "GUIZANCOURT", "libell_d_acheminement": "GUIZANCOURT", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80402"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bf7dd71326b73afcbf5638de7b8fda0746aa62", "fields": {"nom_de_la_commune": "HALLOY LES PERNOIS", "libell_d_acheminement": "HALLOY LES PERNOIS", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80408"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e7913a7dd15b7c8f1ca21a3f6581056ec45826", "fields": {"nom_de_la_commune": "HARDECOURT AUX BOIS", "libell_d_acheminement": "HARDECOURT AUX BOIS", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80418"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aca4416faf6a54c88f4c7c7d9b2cec41aca2fa9", "fields": {"nom_de_la_commune": "HAVERNAS", "libell_d_acheminement": "HAVERNAS", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80423"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f6dc61d5bc931d4bf563f9a30600236fcabe22", "fields": {"nom_de_la_commune": "HERISSART", "libell_d_acheminement": "HERISSART", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80431"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f177367294c2d2ab4d273ec86b2dcf74c8464b", "fields": {"nom_de_la_commune": "HERLEVILLE", "libell_d_acheminement": "HERLEVILLE", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80432"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4cd0eae6255a3eb735c72e0c616b8875f0c7157", "fields": {"code_postal": "80290", "code_commune_insee": "80436", "libell_d_acheminement": "HESCAMPS", "ligne_5": "AGNIERES", "nom_de_la_commune": "HESCAMPS", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cd172d1c890685654b912075d6336b182e04f57", "fields": {"code_postal": "80290", "code_commune_insee": "80436", "libell_d_acheminement": "HESCAMPS", "ligne_5": "SOUPLICOURT", "nom_de_la_commune": "HESCAMPS", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "356548b02ef3f8e85a45f18178a46efb4911ca7e", "fields": {"nom_de_la_commune": "HEUDICOURT", "libell_d_acheminement": "HEUDICOURT", "code_postal": "80122", "coordonnees_gps": [50.0269720778, 3.08990357556], "code_commune_insee": "80438"}, "geometry": {"type": "Point", "coordinates": [3.08990357556, 50.0269720778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df5ca2f8a7c5872e76322efaca0a98439b0445d", "fields": {"code_postal": "80640", "code_commune_insee": "80443", "libell_d_acheminement": "HORNOY LE BOURG", "ligne_5": "GOUY L HOPITAL", "nom_de_la_commune": "HORNOY LE BOURG", "coordonnees_gps": [49.8459420737, 1.9103382201]}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79d780cba02a5e3d4a7b8c81f585223e1a4cd3f6", "fields": {"nom_de_la_commune": "HYENCOURT LE GRAND", "libell_d_acheminement": "HYENCOURT LE GRAND", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80447"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edc3a0308a8ba8d5f7a5f963c06f7763a1e6085e", "fields": {"nom_de_la_commune": "LACHAPELLE", "libell_d_acheminement": "LA CHAPELLE SOUS POIX", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80455"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ac6c4b318887088ad3a4990289adc403a6e478", "fields": {"nom_de_la_commune": "LAMOTTE WARFUSEE", "libell_d_acheminement": "LAMOTTE WARFUSEE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80463"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e02a19e777ac3a2f31203951f2849326cc0aee", "fields": {"nom_de_la_commune": "LEALVILLERS", "libell_d_acheminement": "LEALVILLERS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80470"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4693cf41bfa64a64a116f4dcfb01306c3f677bf4", "fields": {"nom_de_la_commune": "LIGESCOURT", "libell_d_acheminement": "LIGESCOURT", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80477"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa435952408833abd31c31ad59a0e2ec512c34f", "fields": {"nom_de_la_commune": "LONGUEVAL", "libell_d_acheminement": "LONGUEVAL", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80490"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82bff8a5290398a3310784f57a426f41ad08a690", "fields": {"nom_de_la_commune": "LOUVRECHY", "libell_d_acheminement": "LOUVRECHY", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80494"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54582c578047f81a2434a876e5214ecd01677b46", "fields": {"nom_de_la_commune": "MACHIEL", "libell_d_acheminement": "MACHIEL", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80496"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a42ac25dba4ae057b0093baaf96450848cccd3e", "fields": {"nom_de_la_commune": "MAISON PONTHIEU", "libell_d_acheminement": "MAISON PONTHIEU", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80501"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a17a2a1369d2e88291eb7bf80f4ca1874302d08", "fields": {"nom_de_la_commune": "MARCELCAVE", "libell_d_acheminement": "MARCELCAVE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80507"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9e1e81b0d114d05b1e9a33677b2108ee582138", "fields": {"nom_de_la_commune": "MAREUIL CAUBERT", "libell_d_acheminement": "MAREUIL CAUBERT", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80512"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385a9687b928280bad80b0ddff0195fadd0c68ae", "fields": {"nom_de_la_commune": "MARIEUX", "libell_d_acheminement": "MARIEUX", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80514"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9661c5f7423badc1b71a7cf47038c4e931d0bed1", "fields": {"nom_de_la_commune": "MARLERS", "libell_d_acheminement": "MARLERS", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80515"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1081cf2d18fb3e48e932f1bac8dac4dab6a7cb6e", "fields": {"nom_de_la_commune": "MEAULTE", "libell_d_acheminement": "MEAULTE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80523"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41100edbda965b1faa73b3ae123ec8c25a2b7f89", "fields": {"nom_de_la_commune": "MERICOURT L ABBE", "libell_d_acheminement": "MERICOURT L ABBE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80530"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deb1d19f0627db53863413cc74dc538eaef0c7c5", "fields": {"nom_de_la_commune": "MERS LES BAINS", "libell_d_acheminement": "MERS LES BAINS", "code_postal": "80350", "coordonnees_gps": [50.0708581708, 1.40527663021], "code_commune_insee": "80533"}, "geometry": {"type": "Point", "coordinates": [1.40527663021, 50.0708581708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da1411508dff193f7965f51e8f41570ee26eef0", "fields": {"nom_de_la_commune": "LE MESGE", "libell_d_acheminement": "LE MESGE", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80535"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37d7405f10f488f63cee2705d38dbe06a55b863", "fields": {"nom_de_la_commune": "MEZEROLLES", "libell_d_acheminement": "MEZEROLLES", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80544"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb6b928bab61bfe95ef9fffcafeffca9f7cb412", "fields": {"nom_de_la_commune": "MIRAUMONT", "libell_d_acheminement": "MIRAUMONT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80549"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b81b44c952d0492a1101e41708dade704e4f87e0", "fields": {"nom_de_la_commune": "MOLLIENS AU BOIS", "libell_d_acheminement": "MOLLIENS AU BOIS", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80553"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79d302927dde8e0417ea89d5126ea99180d30511", "fields": {"code_postal": "80200", "code_commune_insee": "80555", "libell_d_acheminement": "MONCHY LAGACHE", "ligne_5": "MEREAUCOURT", "nom_de_la_commune": "MONCHY LAGACHE", "coordonnees_gps": [49.9092274559, 2.93799194086]}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "483841fa3a5e618ab12656f4925dec948e57136e", "fields": {"nom_de_la_commune": "MOUFLERS", "libell_d_acheminement": "MOUFLERS", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80574"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "792638352bb937b54da9cbda316418e6b0875e18", "fields": {"nom_de_la_commune": "MOYENCOURT", "libell_d_acheminement": "MOYENCOURT", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80576"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fddbda3852a2ea42e45768fc5c02659e7e5b365f", "fields": {"nom_de_la_commune": "MOYENCOURT LES POIX", "libell_d_acheminement": "MOYENCOURT LES POIX", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80577"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d74c6307ad16d5d546e5067d5e47e3d6bfa1fc30", "fields": {"nom_de_la_commune": "MUILLE VILLETTE", "libell_d_acheminement": "MUILLE VILLETTE", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80579"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2680b90545c52e6c4af9121e79942ac2f3525e8c", "fields": {"code_postal": "80290", "code_commune_insee": "80582", "libell_d_acheminement": "NAMPS MAISNIL", "ligne_5": "NAMPS AU MONT", "nom_de_la_commune": "NAMPS MAISNIL", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "337b4220b08dc75fd98ee18eb7daac5d1811a8cd", "fields": {"nom_de_la_commune": "NESLE", "libell_d_acheminement": "NESLE", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80585"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a34dab4d37901eea6ffcb231e63cf84342388d", "fields": {"nom_de_la_commune": "NESLETTE", "libell_d_acheminement": "NESLETTE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80587"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac1ad13b3fe5b7dd79d5a4fcc253b61f712514b2", "fields": {"nom_de_la_commune": "NEUVILLE AU BOIS", "libell_d_acheminement": "NEUVILLE AU BOIS", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80591"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d46ac2d659490df2f787dcbe30bc8c873ea37f65", "fields": {"nom_de_la_commune": "NEUVILLETTE", "libell_d_acheminement": "NEUVILLETTE", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80596"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25634f2927c4170e7833320db320c8ab38894287", "fields": {"nom_de_la_commune": "ONEUX", "libell_d_acheminement": "ONEUX", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80609"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2ff770fe5be18c30a7235f09f27d409dbb4409", "fields": {"nom_de_la_commune": "OUST MAREST", "libell_d_acheminement": "OUST MAREST", "code_postal": "80460", "coordonnees_gps": [50.0980567949, 1.47472776699], "code_commune_insee": "80613"}, "geometry": {"type": "Point", "coordinates": [1.47472776699, 50.0980567949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c13b6175e4bc2a6d3d3c2d958b9065d3ff3296b", "fields": {"nom_de_la_commune": "OVILLERS LA BOISSELLE", "libell_d_acheminement": "OVILLERS LA BOISSELLE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80615"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4f5146599834f085a6c24d8f2d39f2c7a74af96", "fields": {"nom_de_la_commune": "PARGNY", "libell_d_acheminement": "PARGNY", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80616"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31bce173ca2f97425ef76bc0e34ebb92a131838", "fields": {"code_postal": "80700", "code_commune_insee": "80617", "libell_d_acheminement": "PARVILLERS LE QUESNOY", "ligne_5": "LE QUESNOY", "nom_de_la_commune": "PARVILLERS LE QUESNOY", "coordonnees_gps": [49.7015900422, 2.77539756139]}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01d8e1f3e51ff6880bc6dd8d1e8cd6e6800f61ec", "fields": {"nom_de_la_commune": "PENDE", "libell_d_acheminement": "PENDE", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80618"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f40a58f12ff5c85eb65b4bc361fc7e152066865", "fields": {"nom_de_la_commune": "PIENNES ONVILLERS", "libell_d_acheminement": "PIENNES ONVILLERS", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80623"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "369de9ebb2d18f34090b28f4d304b2745ce85efd", "fields": {"nom_de_la_commune": "LE PLESSIER ROZAINVILLERS", "libell_d_acheminement": "LE PLESSIER ROZAINVILLERS", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80628"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23ec27bdfa1de1186ce0444760e34284f773315a", "fields": {"nom_de_la_commune": "POEUILLY", "libell_d_acheminement": "POEUILLY", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80629"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f90398ee22530b3762c3916281f66fc17782838", "fields": {"nom_de_la_commune": "PONT NOYELLES", "libell_d_acheminement": "PONT NOYELLES", "code_postal": "80115", "coordonnees_gps": [49.9397690617, 2.43129149377], "code_commune_insee": "80634"}, "geometry": {"type": "Point", "coordinates": [2.43129149377, 49.9397690617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61e71afe049a655dac7a800402d5862e0ec12d81", "fields": {"nom_de_la_commune": "PROUZEL", "libell_d_acheminement": "PROUZEL", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80643"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0854f0420e80cc1cda02621733f6eb09f0e67c0", "fields": {"nom_de_la_commune": "REGNIERE ECLUSE", "libell_d_acheminement": "REGNIERE ECLUSE", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80665"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd4d6909b910950f064fad271b544745be504b46", "fields": {"nom_de_la_commune": "RETHONVILLERS", "libell_d_acheminement": "RETHONVILLERS", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80669"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b56ac43df86cf99871ef11945be273407b39d491", "fields": {"nom_de_la_commune": "RIBEAUCOURT", "libell_d_acheminement": "RIBEAUCOURT", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80671"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc468a1fdcd38cc01deaf6aee5a9327894fb238", "fields": {"nom_de_la_commune": "RIBEMONT SUR ANCRE", "libell_d_acheminement": "RIBEMONT SUR ANCRE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80672"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc175811c96f97d66086c64c23ed81e450e490f4", "fields": {"nom_de_la_commune": "RIVERY", "libell_d_acheminement": "RIVERY", "code_postal": "80136", "coordonnees_gps": [49.9106398111, 2.33963434621], "code_commune_insee": "80674"}, "geometry": {"type": "Point", "coordinates": [2.33963434621, 49.9106398111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db1681135bc14b2a00286a468c8015bc4aed8d7", "fields": {"nom_de_la_commune": "ROUVROY EN SANTERRE", "libell_d_acheminement": "ROUVROY EN SANTERRE", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80682"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e6176bdb0ad13521963d985fc8102fb1a7ea3a", "fields": {"nom_de_la_commune": "RUE", "libell_d_acheminement": "RUE", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80688"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b289c9f85a414dce1934fe745bd7863093e203", "fields": {"nom_de_la_commune": "SAILLY LE SEC", "libell_d_acheminement": "SAILLY LE SEC", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80694"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae016be953b92c539dea6097665428a97eca2cca", "fields": {"nom_de_la_commune": "ST BLIMONT", "libell_d_acheminement": "ST BLIMONT", "code_postal": "80960", "coordonnees_gps": [50.1207974447, 1.56516731632], "code_commune_insee": "80700"}, "geometry": {"type": "Point", "coordinates": [1.56516731632, 50.1207974447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "570be1e1133d1e60160ed3be6e668ed2056c6494", "fields": {"nom_de_la_commune": "ST MARD", "libell_d_acheminement": "ST MARD", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80708"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf407ad8c1bc56d21472f5d7cdac483d98994cc2", "fields": {"nom_de_la_commune": "ST MAULVIS", "libell_d_acheminement": "ST MAULVIS", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80709"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d3fa0937bec75ff4d9676bd714ef031ca7e7b0", "fields": {"nom_de_la_commune": "ST OUEN", "libell_d_acheminement": "ST OUEN", "code_postal": "80610", "coordonnees_gps": [50.0237604844, 2.12528172421], "code_commune_insee": "80711"}, "geometry": {"type": "Point", "coordinates": [2.12528172421, 50.0237604844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4232a5c27b8ba354cd7a46e76dc91597fef63e0", "fields": {"nom_de_la_commune": "ST QUENTIN EN TOURMONT", "libell_d_acheminement": "ST QUENTIN EN TOURMONT", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80713"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de1b7aee0d429c563c2092f9caf36799686480a", "fields": {"nom_de_la_commune": "STE SEGREE", "libell_d_acheminement": "STE SEGREE", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80719"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad884de86f933a799e8fccfef42c4ba326ff18d", "fields": {"nom_de_la_commune": "SENTELIE", "libell_d_acheminement": "SENTELIE", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80734"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43dea80ed2e59f82bd49e94e9b283ba787e0c69b", "fields": {"nom_de_la_commune": "SOYECOURT", "libell_d_acheminement": "SOYECOURT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80741"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae742c586bbfe4a08de250a397ffb13a047f3899", "fields": {"nom_de_la_commune": "SURCAMPS", "libell_d_acheminement": "SURCAMPS", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80742"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feb4b8ce3617b5de35a6ee2b7980728131a77df9", "fields": {"nom_de_la_commune": "TAILLY", "libell_d_acheminement": "TAILLY L ARBRE A MOUCHES", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80744"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1dc3103a3ec4248867c1b522113479a53e760dd", "fields": {"nom_de_la_commune": "THENNES", "libell_d_acheminement": "THENNES", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80751"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98db06ae11ff30457e0b541af0d99f8d85ceba51", "fields": {"nom_de_la_commune": "THIEULLOY L ABBAYE", "libell_d_acheminement": "THIEULLOY L ABBAYE", "code_postal": "80640", "coordonnees_gps": [49.8459420737, 1.9103382201], "code_commune_insee": "80754"}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a53f220c701beeee94ac1a21340aa2d88bfd230", "fields": {"nom_de_la_commune": "TILLOY LES CONTY", "libell_d_acheminement": "TILLOY LES CONTY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80761"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afda0ca648978a808a4cfa5d294231758220d796", "fields": {"nom_de_la_commune": "TREUX", "libell_d_acheminement": "TREUX", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80769"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce5553d31290e6791ab58ee864aa34d97c79d95", "fields": {"nom_de_la_commune": "TULLY", "libell_d_acheminement": "TULLY", "code_postal": "80130", "coordonnees_gps": [50.0912781795, 1.52364516053], "code_commune_insee": "80770"}, "geometry": {"type": "Point", "coordinates": [1.52364516053, 50.0912781795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad3c0d634ae4ecddfb9f02620d07a46d22816641", "fields": {"nom_de_la_commune": "VAIRE SOUS CORBIE", "libell_d_acheminement": "VAIRE SOUS CORBIE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80774"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7309e0a65e7b7def47083620c63f5495bfc745be", "fields": {"nom_de_la_commune": "VAUCHELLES LES DOMART", "libell_d_acheminement": "VAUCHELLES LES DOMART", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80778"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aeebb81ead19b774b9e2d0b88959a1a8669ae00", "fields": {"nom_de_la_commune": "VAUCHELLES LES QUESNOY", "libell_d_acheminement": "VAUCHELLES LES QUESNOY", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80779"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49adcb14ffeb62a6587c23ea5db7be65a8db87c", "fields": {"nom_de_la_commune": "LENTILLAC DU CAUSSE", "libell_d_acheminement": "LENTILLAC DU CAUSSE", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46167"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad288facdc95aad3a3d0fb558e6636f3431c0881", "fields": {"nom_de_la_commune": "LHERM", "libell_d_acheminement": "LHERM", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46171"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54957c2e1af1840309419be750475d8980c8081f", "fields": {"nom_de_la_commune": "LIMOGNE EN QUERCY", "libell_d_acheminement": "LIMOGNE EN QUERCY", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46173"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f6806bbf867069f99ea39f9413718a9526de617", "fields": {"nom_de_la_commune": "LUNEGARDE", "libell_d_acheminement": "LUNEGARDE", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46181"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69cf64c99d71f263d3f0f934793dd8ebb4ae9ef0", "fields": {"nom_de_la_commune": "MARTEL", "libell_d_acheminement": "MARTEL", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46185"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b895c25d1fb41b0bad812e91602c1c23d2f95533", "fields": {"nom_de_la_commune": "MAXOU", "libell_d_acheminement": "MAXOU", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46188"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aaaad8f977a1e1ba334e10018c94ffe7774908c", "fields": {"nom_de_la_commune": "MONTCABRIER", "libell_d_acheminement": "MONTCABRIER", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46199"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "464e0960ab2ea0ca3f9b2956bc3451393b62879f", "fields": {"nom_de_la_commune": "MONTDOUMERC", "libell_d_acheminement": "MONTDOUMERC", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46202"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4026aaceec8068db75bd81df1dbca4f4347c45", "fields": {"nom_de_la_commune": "MONTLAUZUN", "libell_d_acheminement": "MONTLAUZUN", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46206"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a46a899dd6a03a75f88f5ae67afa3d7709f475d1", "fields": {"nom_de_la_commune": "MONTREDON", "libell_d_acheminement": "MONTREDON", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46207"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a692999baffb9d35829e1993996be594019e95bb", "fields": {"nom_de_la_commune": "NADAILLAC DE ROUGE", "libell_d_acheminement": "NADAILLAC DE ROUGE", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46209"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ac0f2f1b3331167ea4ab1abd2c8369162bfaed4", "fields": {"nom_de_la_commune": "PAYRIGNAC", "libell_d_acheminement": "PAYRIGNAC", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46216"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a3e9b5a1d2a531b206d37de0edc6c9a0ded325", "fields": {"nom_de_la_commune": "PERN", "libell_d_acheminement": "PERN", "code_postal": "46170", "coordonnees_gps": [44.2978599733, 1.37150326445], "code_commune_insee": "46217"}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82bee866ad4807f0b737c311e36d0a43987f9c69", "fields": {"nom_de_la_commune": "PEYRILLES", "libell_d_acheminement": "PEYRILLES", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46219"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e997f24a491198d72ba13e81bc9e071acefc775", "fields": {"nom_de_la_commune": "PRADINES", "libell_d_acheminement": "PRADINES", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46224"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bd8d97dca5539f2a8defc454794b3f8af908531", "fields": {"nom_de_la_commune": "PROMILHANES", "libell_d_acheminement": "PROMILHANES", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46227"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1933b8a4489762981ab6a27a72f28d80c5302fc0", "fields": {"nom_de_la_commune": "PUYBRUN", "libell_d_acheminement": "PUYBRUN", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46229"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12368500cd77c575e2b3093250e40c05ae3d192e", "fields": {"nom_de_la_commune": "REILHAGUET", "libell_d_acheminement": "REILHAGUET", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46236"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "750d553958051ffe08b2178bbe5482cb50458d7d", "fields": {"nom_de_la_commune": "LE ROC", "libell_d_acheminement": "LE ROC", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46239"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6cdc725ebb8f9e101188d27d61c49b46f148868", "fields": {"nom_de_la_commune": "ROUFFILHAC", "libell_d_acheminement": "ROUFFILHAC", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46241"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e01516db3a4bcaaf17ac3c24dc26001214b75e9", "fields": {"nom_de_la_commune": "RUEYRES", "libell_d_acheminement": "RUEYRES", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46243"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd1bcec618ec583507da9c556956166bf61d9e88", "fields": {"nom_de_la_commune": "ST CHELS", "libell_d_acheminement": "ST CHELS", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46254"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "773d3f9de1a9964d1d43560205cbf0ae7a8b6875", "fields": {"nom_de_la_commune": "ST CIRGUES", "libell_d_acheminement": "ST CIRGUES", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46255"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876bd3e24aaa4f729883106fc348b4a1038900af", "fields": {"nom_de_la_commune": "ST CIRQ MADELON", "libell_d_acheminement": "ST CIRQ MADELON", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46257"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e7877d76f4a307436abced3de700eda03dff40", "fields": {"nom_de_la_commune": "ST CLAIR", "libell_d_acheminement": "ST CLAIR", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46259"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e5402e2621eb16b29d0e15df7b99eeaa42af915", "fields": {"nom_de_la_commune": "ST GERY", "libell_d_acheminement": "ST GERY", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46268"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "984a815aa1569c7e10f65b8ad22ad0b4595d8000", "fields": {"nom_de_la_commune": "ST JEAN LESPINASSE", "libell_d_acheminement": "ST JEAN LESPINASSE", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46271"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7be2419cbde288b0e581833c1e15ff6b0bcb90ea", "fields": {"nom_de_la_commune": "ST MARTIN LABOUVAL", "libell_d_acheminement": "ST MARTIN LABOUVAL", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46276"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b55488aeccaeb1e4017e03ad89eddb8febc2006d", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46280"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914c41a227c149ad7aa677e01c1e501d4573cd02", "fields": {"nom_de_la_commune": "ST MEDARD NICOURBY", "libell_d_acheminement": "ST MEDARD NICOURBY", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46282"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43d28bd99fe3a0c8f20405dc44870d7b02680ec0", "fields": {"nom_de_la_commune": "ST PANTALEON", "libell_d_acheminement": "ST PANTALEON", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46285"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b35316116be34bcb8594c51549c082ea4deb30ab", "fields": {"nom_de_la_commune": "ST PROJET", "libell_d_acheminement": "ST PROJET", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46290"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57fcbfcb17fa35ef333556d110bbea7dfc1c7eac", "fields": {"nom_de_la_commune": "ST SIMON", "libell_d_acheminement": "ST SIMON", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46292"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05b541ba78f7d8e3aadc8cf490434563d006e611", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46294"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c05aedba0048f298fc2e390cf39154835ea90460", "fields": {"nom_de_la_commune": "SALVIAC", "libell_d_acheminement": "SALVIAC", "code_postal": "46340", "coordonnees_gps": [44.6657598644, 1.30345191373], "code_commune_insee": "46297"}, "geometry": {"type": "Point", "coordinates": [1.30345191373, 44.6657598644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36307a881cd595fd1e066f56db51a2d6a0d36a0c", "fields": {"nom_de_la_commune": "SENAILLAC LATRONQUIERE", "libell_d_acheminement": "SENAILLAC LATRONQUIERE", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46302"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57a22bf915e8e28b15886df894e41ee47806446", "fields": {"nom_de_la_commune": "SENIERGUES", "libell_d_acheminement": "SENIERGUES", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46304"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6182ef989ce79fff390cfa3dbde2c4c641d81de", "fields": {"nom_de_la_commune": "SERIGNAC", "libell_d_acheminement": "SERIGNAC", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46305"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b33b19ec6cff366813f912acd0205f8c1f75c10", "fields": {"nom_de_la_commune": "SOUILLAC", "libell_d_acheminement": "SOUILLAC", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46309"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60d2b7dfd2c14f418f465b3751bae028d964cfab", "fields": {"nom_de_la_commune": "SOULOMES", "libell_d_acheminement": "SOULOMES", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46310"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a634d3aa0c38100e3f9014c6b29ef64bd1c28ce", "fields": {"code_postal": "46190", "code_commune_insee": "46311", "libell_d_acheminement": "SOUSCEYRAC EN QUERCY", "ligne_5": "CALVIAC", "nom_de_la_commune": "SOUSCEYRAC EN QUERCY", "coordonnees_gps": [44.886802824, 2.02091707559]}, "geometry": {"type": "Point", "coordinates": [2.02091707559, 44.886802824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2498721cbd7fffcabb836706f5c31edd5d27e4fc", "fields": {"code_postal": "46190", "code_commune_insee": "46311", "libell_d_acheminement": "SOUSCEYRAC EN QUERCY", "ligne_5": "LAMATIVIE", "nom_de_la_commune": "SOUSCEYRAC EN QUERCY", "coordonnees_gps": [44.886802824, 2.02091707559]}, "geometry": {"type": "Point", "coordinates": [2.02091707559, 44.886802824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbab42fb553f15cea66b001d9dca776d42fdf607", "fields": {"nom_de_la_commune": "STRENQUELS", "libell_d_acheminement": "STRENQUELS", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46312"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "364740dba5cabd8ba448f872b63e3611337765c0", "fields": {"nom_de_la_commune": "THEMINETTES", "libell_d_acheminement": "THEMINETTES", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46319"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c8e401f2bb4f1d73a989e978b09dc9255c7c54d", "fields": {"nom_de_la_commune": "VARAIRE", "libell_d_acheminement": "VARAIRE", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46328"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43911e9f6922043efa4c5814db0c4a0fdbb9c2f", "fields": {"nom_de_la_commune": "VERS", "libell_d_acheminement": "VERS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46331"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b8d68b0cb015fa89df736427cecce531e6bc09", "fields": {"nom_de_la_commune": "VIAZAC", "libell_d_acheminement": "VIAZAC", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46332"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06adf834708f62d374b6afcfc4a52c06e3a6ad50", "fields": {"nom_de_la_commune": "LE VIGAN", "libell_d_acheminement": "LE VIGAN", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46334"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec1826cda571b1eed46d82175a137192980213a7", "fields": {"nom_de_la_commune": "VIRE SUR LOT", "libell_d_acheminement": "VIRE SUR LOT", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46336"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd42cfa546e0ee01f89b9faac4c49a9e98db1c0d", "fields": {"nom_de_la_commune": "MAYRAC", "libell_d_acheminement": "MAYRAC", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46337"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb1d61f688dbd371e1a5348a6df0c32ddd70d79c", "fields": {"nom_de_la_commune": "BESSONIES", "libell_d_acheminement": "BESSONIES", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46338"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a096020378e0722c3844eb9846eb7c1515f3a40", "fields": {"nom_de_la_commune": "ST JEAN LAGINESTE", "libell_d_acheminement": "ST JEAN LAGINESTE", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46339"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e557d8cb1715db5cfd05fdfa046ecf49903610fd", "fields": {"nom_de_la_commune": "AGME", "libell_d_acheminement": "AGME", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47002"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a7959dc50c6029cc951da09ae488a7f0ff4318e", "fields": {"nom_de_la_commune": "ALLONS", "libell_d_acheminement": "ALLONS", "code_postal": "47420", "coordonnees_gps": [44.190114172, 0.0302523935969], "code_commune_insee": "47007"}, "geometry": {"type": "Point", "coordinates": [0.0302523935969, 44.190114172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da43fd68e774346e41ca158c4297966ee69c71e9", "fields": {"nom_de_la_commune": "ANTAGNAC", "libell_d_acheminement": "ANTAGNAC", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47010"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c792cdfd03e8fc8fdb8553c1b904cf3c6d8caa3e", "fields": {"nom_de_la_commune": "ASTAFFORT", "libell_d_acheminement": "ASTAFFORT", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47015"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d138703254ea3f75e885f26489af981010d19bd2", "fields": {"nom_de_la_commune": "BALEYSSAGUES", "libell_d_acheminement": "BALEYSSAGUES", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47020"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a480c9b12886336ba7e6336c756d4ce7864b6315", "fields": {"nom_de_la_commune": "BEAUZIAC", "libell_d_acheminement": "BEAUZIAC", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47026"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049dacb40b3411818be6f109218defd6dfcbb9bb", "fields": {"nom_de_la_commune": "BLAYMONT", "libell_d_acheminement": "BLAYMONT", "code_postal": "47470", "coordonnees_gps": [44.2689553649, 0.867525739201], "code_commune_insee": "47030"}, "geometry": {"type": "Point", "coordinates": [0.867525739201, 44.2689553649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f09b792bf2989b762ad40604740953128714ad8", "fields": {"nom_de_la_commune": "BOUGLON", "libell_d_acheminement": "BOUGLON", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47034"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88916d2e8c746cd82783e9e84f65b7cd2fe37589", "fields": {"nom_de_la_commune": "CALIGNAC", "libell_d_acheminement": "CALIGNAC", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47045"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "637764bb1b0e8714e3e8327e15f4a82d9b5a7e43", "fields": {"nom_de_la_commune": "CASTELJALOUX", "libell_d_acheminement": "CASTELJALOUX", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47052"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa4289ec1ea8c303953c5fbd7ce6c37f8c33309e", "fields": {"nom_de_la_commune": "CASTELNAUD DE GRATECAMBE", "libell_d_acheminement": "CASTELNAUD DE GRATECAMBE", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47055"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07828033c66f936ed1af83e935374ea090404d68", "fields": {"nom_de_la_commune": "CAUMONT SUR GARONNE", "libell_d_acheminement": "CAUMONT SUR GARONNE", "code_postal": "47430", "coordonnees_gps": [44.4038524558, 0.201607662579], "code_commune_insee": "47061"}, "geometry": {"type": "Point", "coordinates": [0.201607662579, 44.4038524558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "415625fef828aa7a5e1ff2d739e5ce71b156d187", "fields": {"nom_de_la_commune": "CAUZAC", "libell_d_acheminement": "CAUZAC", "code_postal": "47470", "coordonnees_gps": [44.2689553649, 0.867525739201], "code_commune_insee": "47062"}, "geometry": {"type": "Point", "coordinates": [0.867525739201, 44.2689553649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d20e5f7cedcdf289c1959a9bd9d13f9bffae9d93", "fields": {"nom_de_la_commune": "CAZIDEROQUE", "libell_d_acheminement": "CAZIDEROQUE", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47064"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4fcb6642149ebea637c62f34fc97dd2ef98570c", "fields": {"nom_de_la_commune": "CONDEZAYGUES", "libell_d_acheminement": "CONDEZAYGUES", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47070"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98664d23cbbf775407d9a851f7e519e5f1361c2e", "fields": {"nom_de_la_commune": "COULX", "libell_d_acheminement": "COULX", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47071"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a4508498a50808a604a0b463b557561d2dfb8d0", "fields": {"nom_de_la_commune": "DAMAZAN", "libell_d_acheminement": "DAMAZAN", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47078"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe6f3b57f9d5e2adbc36441d44c0b4d6be9c096a", "fields": {"nom_de_la_commune": "DOLMAYRAC", "libell_d_acheminement": "DOLMAYRAC", "code_postal": "47110", "coordonnees_gps": [44.383733234, 0.585627133864], "code_commune_insee": "47081"}, "geometry": {"type": "Point", "coordinates": [0.585627133864, 44.383733234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41763c993786422bd60351140e9d09bee3b29a4a", "fields": {"nom_de_la_commune": "DURANCE", "libell_d_acheminement": "DURANCE", "code_postal": "47420", "coordonnees_gps": [44.190114172, 0.0302523935969], "code_commune_insee": "47085"}, "geometry": {"type": "Point", "coordinates": [0.0302523935969, 44.190114172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ed434cf37e6737a9b4e139aedc62a34144c589", "fields": {"nom_de_la_commune": "ENGAYRAC", "libell_d_acheminement": "ENGAYRAC", "code_postal": "47470", "coordonnees_gps": [44.2689553649, 0.867525739201], "code_commune_insee": "47087"}, "geometry": {"type": "Point", "coordinates": [0.867525739201, 44.2689553649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f09a60da387239130468b65bb7197405cd142e09", "fields": {"nom_de_la_commune": "ESCASSEFORT", "libell_d_acheminement": "ESCASSEFORT", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47088"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25618e2e685468f273b7d7423d3f9b9f9db9e931", "fields": {"nom_de_la_commune": "ESCLOTTES", "libell_d_acheminement": "ESCLOTTES", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47089"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e40aef2070d639a79d8e26a6c5610926daf1b5", "fields": {"nom_de_la_commune": "ESPIENS", "libell_d_acheminement": "ESPIENS", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47090"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e13ed2d95c6c00937f5c1375281a67575311258", "fields": {"nom_de_la_commune": "FERRENSAC", "libell_d_acheminement": "FERRENSAC", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47096"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37dafecc1830c30a42df8b15c99c451d4e33cd93", "fields": {"nom_de_la_commune": "FOULAYRONNES", "libell_d_acheminement": "FOULAYRONNES", "code_postal": "47510", "coordonnees_gps": [44.2540583421, 0.637133747867], "code_commune_insee": "47100"}, "geometry": {"type": "Point", "coordinates": [0.637133747867, 44.2540583421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b302a96f0ac94b6e77202af2c0e3c0fa0ffb18d0", "fields": {"nom_de_la_commune": "FOURQUES SUR GARONNE", "libell_d_acheminement": "FOURQUES SUR GARONNE", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47101"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54e6e8950383d60fce92fe011aeec21502cf98aa", "fields": {"nom_de_la_commune": "FRANCESCAS", "libell_d_acheminement": "FRANCESCAS", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47102"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4160279292fd4aea242e7911a7d7166c0edba5", "fields": {"nom_de_la_commune": "FREGIMONT", "libell_d_acheminement": "FREGIMONT", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47104"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d52d8fed47ea6d2575e7e08c684c63901ef24f", "fields": {"nom_de_la_commune": "GAUJAC", "libell_d_acheminement": "GAUJAC", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47108"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "090a357cb4660756a1d441d10b10cc754ecf44b8", "fields": {"nom_de_la_commune": "GREZET CAVAGNAN", "libell_d_acheminement": "GREZET CAVAGNAN", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47114"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621420912d79d80659f0afc1002f8197a683bc7d", "fields": {"nom_de_la_commune": "LACAPELLE BIRON", "libell_d_acheminement": "LACAPELLE BIRON", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47123"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ad76c57c9e9eee2c579d29e9d9e481889847810", "fields": {"nom_de_la_commune": "LACAUSSADE", "libell_d_acheminement": "LACAUSSADE", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47124"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d07a0be6f48db506e00cf6ae2d0989df294a4203", "fields": {"nom_de_la_commune": "LACEPEDE", "libell_d_acheminement": "LACEPEDE", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47125"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "008308051d393f206d19aeefc890c63db5a67025", "fields": {"nom_de_la_commune": "LAFITTE SUR LOT", "libell_d_acheminement": "LAFITTE SUR LOT", "code_postal": "47320", "coordonnees_gps": [44.3563868406, 0.403122345242], "code_commune_insee": "47127"}, "geometry": {"type": "Point", "coordinates": [0.403122345242, 44.3563868406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c057c781d65e207565ff185380ff8a6958a5065c", "fields": {"nom_de_la_commune": "LAGARRIGUE", "libell_d_acheminement": "LAGARRIGUE", "code_postal": "47190", "coordonnees_gps": [44.302646925, 0.368757601165], "code_commune_insee": "47129"}, "geometry": {"type": "Point", "coordinates": [0.368757601165, 44.302646925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a482d4418ea9b21a87795ea599f2141ffabc01", "fields": {"nom_de_la_commune": "LAGUPIE", "libell_d_acheminement": "LAGUPIE", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47131"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4657a90df3ce57bc2e0897ab9746449f57e092e", "fields": {"nom_de_la_commune": "LALANDUSSE", "libell_d_acheminement": "LALANDUSSE", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47132"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5689106f575bd94d3e18464a7a24a0f22ded33", "fields": {"nom_de_la_commune": "LANNES", "libell_d_acheminement": "LANNES", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47134"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f95292d4ade285caf2ba4f108d8ead8941e35673", "fields": {"nom_de_la_commune": "LAPERCHE", "libell_d_acheminement": "LAPERCHE", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47136"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eac6402660a97876268bf1f0f4a6fa8f7bd1691", "fields": {"nom_de_la_commune": "LAROQUE TIMBAUT", "libell_d_acheminement": "LAROQUE TIMBAUT", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47138"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03b5b1118bcb79373d36e0a15b79a4187f9608df", "fields": {"nom_de_la_commune": "MARMANDE", "libell_d_acheminement": "MARMANDE", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47157"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1ffae67d24fbd1ce0eafcd808268f8ec240abc", "fields": {"nom_de_la_commune": "MARMONT PACHAS", "libell_d_acheminement": "MARMONT PACHAS", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47158"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "277f51e483075ae55b840224262a6ca76012cc4f", "fields": {"nom_de_la_commune": "MONCAUT", "libell_d_acheminement": "MONCAUT", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47172"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62155e6da6bff9d44907a57fc7fde79c690fd61d", "fields": {"nom_de_la_commune": "MONCRABEAU", "libell_d_acheminement": "MONCRABEAU", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47174"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c6d37a67d98cce7bde298a5ac7347baaf4f20e", "fields": {"nom_de_la_commune": "MONGAILLARD", "libell_d_acheminement": "MONGAILLARD", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47176"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2990a96a9cccb9023bdfad0c3581659aaf18dd7f", "fields": {"nom_de_la_commune": "MONHEURT", "libell_d_acheminement": "MONHEURT", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47177"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24e1d0dc3236271da5f88315dcec884eafa4e436", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47184"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dff2c0097b26083e34615b0f8d3953a967ebfdc2", "fields": {"nom_de_la_commune": "PAILLOLES", "libell_d_acheminement": "PAILLOLES", "code_postal": "47440", "coordonnees_gps": [44.4570555688, 0.630745271337], "code_commune_insee": "47198"}, "geometry": {"type": "Point", "coordinates": [0.630745271337, 44.4570555688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d26aa3ea3c76224dbc31c9a3f16b7dc54eaf8a6d", "fields": {"nom_de_la_commune": "HANTAY", "libell_d_acheminement": "HANTAY", "code_postal": "59496", "coordonnees_gps": [50.5368972316, 2.84563657471], "code_commune_insee": "59281"}, "geometry": {"type": "Point", "coordinates": [2.84563657471, 50.5368972316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b4f9fabcb03f2f7dcf04f222b4beac79910bac1", "fields": {"nom_de_la_commune": "HARDIFORT", "libell_d_acheminement": "HARDIFORT", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59282"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "191a97e3a2d8e8379d99d83ae77d55691d6a01ff", "fields": {"nom_de_la_commune": "HARGNIES", "libell_d_acheminement": "HARGNIES", "code_postal": "59138", "coordonnees_gps": [50.2338166677, 3.85860343752], "code_commune_insee": "59283"}, "geometry": {"type": "Point", "coordinates": [3.85860343752, 50.2338166677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8254bd5e40f4ec210934a1ebe32a96c4e87e1ca4", "fields": {"nom_de_la_commune": "HAVELUY", "libell_d_acheminement": "HAVELUY", "code_postal": "59255", "coordonnees_gps": [50.3532590231, 3.40316064365], "code_commune_insee": "59292"}, "geometry": {"type": "Point", "coordinates": [3.40316064365, 50.3532590231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d86997bf93bb1bef52192942983246f0de5c2bd", "fields": {"nom_de_la_commune": "HAVERSKERQUE", "libell_d_acheminement": "HAVERSKERQUE", "code_postal": "59660", "coordonnees_gps": [50.6440201212, 2.61424433004], "code_commune_insee": "59293"}, "geometry": {"type": "Point", "coordinates": [2.61424433004, 50.6440201212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3ae156dcc5b9d6051b0c53c2797588055d060e", "fields": {"nom_de_la_commune": "HEM", "libell_d_acheminement": "HEM", "code_postal": "59510", "coordonnees_gps": [50.6531377734, 3.19228219738], "code_commune_insee": "59299"}, "geometry": {"type": "Point", "coordinates": [3.19228219738, 50.6531377734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208a7555227e91ae88c766a9284ac4e3166c85f2", "fields": {"nom_de_la_commune": "HERGNIES", "libell_d_acheminement": "HERGNIES", "code_postal": "59199", "coordonnees_gps": [50.4740272864, 3.52059057701], "code_commune_insee": "59301"}, "geometry": {"type": "Point", "coordinates": [3.52059057701, 50.4740272864]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b99faddd455db8632683359fbace386c638c9a8", "fields": {"nom_de_la_commune": "HON HERGIES", "libell_d_acheminement": "HON HERGIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59310"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa4811d2ac227bed761f3026231b6aaa59b9e63", "fields": {"nom_de_la_commune": "HORDAIN", "libell_d_acheminement": "HORDAIN", "code_postal": "59111", "coordonnees_gps": [50.2733776483, 3.31798741017], "code_commune_insee": "59313"}, "geometry": {"type": "Point", "coordinates": [3.31798741017, 50.2733776483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b5f5545f7cbd4caf7d814ed5aee603d712376f0", "fields": {"nom_de_la_commune": "HOUPLIN ANCOISNE", "libell_d_acheminement": "HOUPLIN ANCOISNE", "code_postal": "59263", "coordonnees_gps": [50.5700456203, 2.99396418059], "code_commune_insee": "59316"}, "geometry": {"type": "Point", "coordinates": [2.99396418059, 50.5700456203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8fb7dcc5cd27f4a891ed36ff3b2f052934da56e", "fields": {"nom_de_la_commune": "HOUPLINES", "libell_d_acheminement": "HOUPLINES", "code_postal": "59116", "coordonnees_gps": [50.683583177, 2.92666181317], "code_commune_insee": "59317"}, "geometry": {"type": "Point", "coordinates": [2.92666181317, 50.683583177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28415b312bbe7342258bf42d16461fa493d3f9d8", "fields": {"nom_de_la_commune": "INCHY", "libell_d_acheminement": "INCHY", "code_postal": "59540", "coordonnees_gps": [50.1250979725, 3.43223199835], "code_commune_insee": "59321"}, "geometry": {"type": "Point", "coordinates": [3.43223199835, 50.1250979725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffb3598228b4b05fab729997f9945857df019b55", "fields": {"nom_de_la_commune": "JEUMONT", "libell_d_acheminement": "JEUMONT", "code_postal": "59460", "coordonnees_gps": [50.2913684518, 4.10406647856], "code_commune_insee": "59324"}, "geometry": {"type": "Point", "coordinates": [4.10406647856, 50.2913684518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3451a0b552ebaf38b72418e19db0836735bec6d", "fields": {"nom_de_la_commune": "LAMBERSART", "libell_d_acheminement": "LAMBERSART", "code_postal": "59130", "coordonnees_gps": [50.6519499889, 3.02477528313], "code_commune_insee": "59328"}, "geometry": {"type": "Point", "coordinates": [3.02477528313, 50.6519499889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9bd5b84d85b8518ca8f14ba2fb2f0bea86f7f16", "fields": {"nom_de_la_commune": "LECLUSE", "libell_d_acheminement": "LECLUSE", "code_postal": "59259", "coordonnees_gps": [50.2769991269, 3.03143607671], "code_commune_insee": "59336"}, "geometry": {"type": "Point", "coordinates": [3.03143607671, 50.2769991269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d9ce15427a6c87f48ef6105cbd0d86fecc1964", "fields": {"nom_de_la_commune": "LEDERZEELE", "libell_d_acheminement": "LEDERZEELE", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59337"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab6f2731540ebacbcfc64fe7091ce8189271c2d", "fields": {"nom_de_la_commune": "LEERS", "libell_d_acheminement": "LEERS", "code_postal": "59115", "coordonnees_gps": [50.68149228, 3.23920791897], "code_commune_insee": "59339"}, "geometry": {"type": "Point", "coordinates": [3.23920791897, 50.68149228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02a347f6c88c0ec83ef14941df35ef18d3e2096", "fields": {"nom_de_la_commune": "LINSELLES", "libell_d_acheminement": "LINSELLES", "code_postal": "59126", "coordonnees_gps": [50.7357056476, 3.07372039494], "code_commune_insee": "59352"}, "geometry": {"type": "Point", "coordinates": [3.07372039494, 50.7357056476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d984dac1933d814e29157202b4533ffd45c03112", "fields": {"nom_de_la_commune": "LOOS", "libell_d_acheminement": "LOOS", "code_postal": "59120", "coordonnees_gps": [50.6086965938, 3.02028654276], "code_commune_insee": "59360"}, "geometry": {"type": "Point", "coordinates": [3.02028654276, 50.6086965938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab1c1709dda3303723879e106e0eb04af8a5472", "fields": {"nom_de_la_commune": "LA MADELEINE", "libell_d_acheminement": "LA MADELEINE", "code_postal": "59110", "coordonnees_gps": [50.6547630947, 3.06953793949], "code_commune_insee": "59368"}, "geometry": {"type": "Point", "coordinates": [3.06953793949, 50.6547630947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa3a8213e8145b251817ad751ca564403512403", "fields": {"nom_de_la_commune": "MAING", "libell_d_acheminement": "MAING", "code_postal": "59233", "coordonnees_gps": [50.3038379836, 3.48904199641], "code_commune_insee": "59369"}, "geometry": {"type": "Point", "coordinates": [3.48904199641, 50.3038379836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13c1e352f28f8eaaa4dfad628a2f364e0d4288e", "fields": {"nom_de_la_commune": "MAIRIEUX", "libell_d_acheminement": "MAIRIEUX", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59370"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ee3cefc762873e9edef1d0bf79346d09c362fc4", "fields": {"nom_de_la_commune": "MARETZ", "libell_d_acheminement": "MARETZ", "code_postal": "59238", "coordonnees_gps": [50.0450304412, 3.42048694378], "code_commune_insee": "59382"}, "geometry": {"type": "Point", "coordinates": [3.42048694378, 50.0450304412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9388b00a30f55df47f5caaa8370a2dcbb0411e2a", "fields": {"nom_de_la_commune": "MILLONFOSSE", "libell_d_acheminement": "MILLONFOSSE", "code_postal": "59178", "coordonnees_gps": [50.4208694129, 3.3753580668], "code_commune_insee": "59403"}, "geometry": {"type": "Point", "coordinates": [3.3753580668, 50.4208694129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19e47241d1b00ea864ec725a3cf04b8976610209", "fields": {"nom_de_la_commune": "MONCHAUX SUR ECAILLON", "libell_d_acheminement": "MONCHAUX SUR ECAILLON", "code_postal": "59224", "coordonnees_gps": [50.2929263496, 3.44612493476], "code_commune_insee": "59407"}, "geometry": {"type": "Point", "coordinates": [3.44612493476, 50.2929263496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c93e0a7e8443179a211208258bcae607caf2344", "fields": {"nom_de_la_commune": "MONCHECOURT", "libell_d_acheminement": "MONCHECOURT", "code_postal": "59234", "coordonnees_gps": [50.2968410353, 3.19491530905], "code_commune_insee": "59409"}, "geometry": {"type": "Point", "coordinates": [3.19491530905, 50.2968410353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b1d0b1cad18ced2af5043ae256f7dfb06d93287", "fields": {"nom_de_la_commune": "MONTRECOURT", "libell_d_acheminement": "MONTRECOURT", "code_postal": "59227", "coordonnees_gps": [50.2500185431, 3.45009234347], "code_commune_insee": "59415"}, "geometry": {"type": "Point", "coordinates": [3.45009234347, 50.2500185431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9ab93f98b095104a37befc28316b5ad59ff45cb", "fields": {"nom_de_la_commune": "MOUCHIN", "libell_d_acheminement": "MOUCHIN", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59419"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7df6028a480fd075bdcdeb45b1eef720388cf0f7", "fields": {"nom_de_la_commune": "MOUVAUX", "libell_d_acheminement": "MOUVAUX", "code_postal": "59420", "coordonnees_gps": [50.7041627546, 3.13760207242], "code_commune_insee": "59421"}, "geometry": {"type": "Point", "coordinates": [3.13760207242, 50.7041627546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac8123f41a74a4b158770514ccff75ff4e1346f8", "fields": {"nom_de_la_commune": "NEUVILLE EN AVESNOIS", "libell_d_acheminement": "NEUVILLE EN AVESNOIS", "code_postal": "59218", "coordonnees_gps": [50.188036681, 3.59383349158], "code_commune_insee": "59425"}, "geometry": {"type": "Point", "coordinates": [3.59383349158, 50.188036681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d4cc455ca17df19772b7d252159365955526cf9", "fields": {"nom_de_la_commune": "NEUVILLY", "libell_d_acheminement": "NEUVILLY", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59430"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b80f82b96a78d9b9361b3b2d60c77893efd0acc", "fields": {"nom_de_la_commune": "NOYELLES LES SECLIN", "libell_d_acheminement": "NOYELLES LES SECLIN", "code_postal": "59139", "coordonnees_gps": [50.5828466691, 3.03623136309], "code_commune_insee": "59437"}, "geometry": {"type": "Point", "coordinates": [3.03623136309, 50.5828466691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b96c8d05b7d3c007173981dd314126792c74ce77", "fields": {"nom_de_la_commune": "OXELAERE", "libell_d_acheminement": "OXELAERE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59454"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eff221eac4bb23c0bcf83cbaa83118556f79e86", "fields": {"nom_de_la_commune": "PERONNE EN MELANTOIS", "libell_d_acheminement": "PERONNE EN MELANTOIS", "code_postal": "59273", "coordonnees_gps": [50.5659829271, 3.1352270312], "code_commune_insee": "59458"}, "geometry": {"type": "Point", "coordinates": [3.1352270312, 50.5659829271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52bca93225505bcfd2da623f93160ac96579ee05", "fields": {"nom_de_la_commune": "RENESCURE", "libell_d_acheminement": "RENESCURE", "code_postal": "59173", "coordonnees_gps": [50.7167343875, 2.40817332289], "code_commune_insee": "59497"}, "geometry": {"type": "Point", "coordinates": [2.40817332289, 50.7167343875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "810e16cae49af36c5ab071c25cdfb0df870a3e03", "fields": {"nom_de_la_commune": "REUMONT", "libell_d_acheminement": "REUMONT", "code_postal": "59980", "coordonnees_gps": [50.0845778116, 3.46500822238], "code_commune_insee": "59498"}, "geometry": {"type": "Point", "coordinates": [3.46500822238, 50.0845778116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a314612c6a50d360cf457bb359ee7be9ce997d75", "fields": {"nom_de_la_commune": "RONCHIN", "libell_d_acheminement": "RONCHIN", "code_postal": "59790", "coordonnees_gps": [50.6048705857, 3.09209894113], "code_commune_insee": "59507"}, "geometry": {"type": "Point", "coordinates": [3.09209894113, 50.6048705857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253037cbad7dcf19965948ef91c6f4e0a43ef5d9", "fields": {"nom_de_la_commune": "ROUBAIX", "libell_d_acheminement": "ROUBAIX", "code_postal": "59100", "coordonnees_gps": [50.6882121889, 3.18169732773], "code_commune_insee": "59512"}, "geometry": {"type": "Point", "coordinates": [3.18169732773, 50.6882121889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef54d2d08b13ac2686472d73e53705e08bc658c4", "fields": {"nom_de_la_commune": "SAILLY LEZ CAMBRAI", "libell_d_acheminement": "SAILLY LEZ CAMBRAI", "code_postal": "59554", "coordonnees_gps": [50.1997132829, 3.19825969693], "code_commune_insee": "59521"}, "geometry": {"type": "Point", "coordinates": [3.19825969693, 50.1997132829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6877e349d600095e0a351354a0420bbe14b89693", "fields": {"nom_de_la_commune": "SAINGHIN EN MELANTOIS", "libell_d_acheminement": "SAINGHIN EN MELANTOIS", "code_postal": "59262", "coordonnees_gps": [50.5877483285, 3.16330494676], "code_commune_insee": "59523"}, "geometry": {"type": "Point", "coordinates": [3.16330494676, 50.5877483285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d8a35f21fb17ee2212cbba40659ec2c5eebc1e", "fields": {"nom_de_la_commune": "ST ANDRE LEZ LILLE", "libell_d_acheminement": "ST ANDRE LEZ LILLE", "code_postal": "59350", "coordonnees_gps": [50.6605716565, 3.0470462263], "code_commune_insee": "59527"}, "geometry": {"type": "Point", "coordinates": [3.0470462263, 50.6605716565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bbe753c9d11e8b5e5216638ab862e3f9dd356c8", "fields": {"nom_de_la_commune": "ST AUBERT", "libell_d_acheminement": "ST AUBERT", "code_postal": "59188", "coordonnees_gps": [50.2124042637, 3.41180746227], "code_commune_insee": "59528"}, "geometry": {"type": "Point", "coordinates": [3.41180746227, 50.2124042637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56a0b459924bff282e308ebbd1f3b827210f1bc", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59529"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "affdbf85d6dbc7c24c181ce4f2a4644bd700c60a", "fields": {"nom_de_la_commune": "ST AYBERT", "libell_d_acheminement": "ST AYBERT", "code_postal": "59163", "coordonnees_gps": [50.4613685751, 3.61604638041], "code_commune_insee": "59530"}, "geometry": {"type": "Point", "coordinates": [3.61604638041, 50.4613685751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "136ac527831c3eb37422e747409dfdcacd33ddba", "fields": {"nom_de_la_commune": "ST WAAST", "libell_d_acheminement": "ST WAAST", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59548"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aec6d2f2526c73352a9afc88348858d93ed6059", "fields": {"nom_de_la_commune": "SARS POTERIES", "libell_d_acheminement": "SARS POTERIES", "code_postal": "59216", "coordonnees_gps": [50.1687463201, 4.01936516486], "code_commune_insee": "59555"}, "geometry": {"type": "Point", "coordinates": [4.01936516486, 50.1687463201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "176192110fec480d51e3e222a0c4842ea418f444", "fields": {"nom_de_la_commune": "SEMOUSIES", "libell_d_acheminement": "SEMOUSIES", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59563"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f1d411245163bb6a1b51792006131ea8a47cdde", "fields": {"nom_de_la_commune": "SEPMERIES", "libell_d_acheminement": "SEPMERIES", "code_postal": "59269", "coordonnees_gps": [50.2865936592, 3.53807571429], "code_commune_insee": "59565"}, "geometry": {"type": "Point", "coordinates": [3.53807571429, 50.2865936592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "164907a69a86f4d2f5ccb8cd39397b18588e05e0", "fields": {"nom_de_la_commune": "SOLESMES", "libell_d_acheminement": "SOLESMES", "code_postal": "59730", "coordonnees_gps": [50.1806606643, 3.51245734771], "code_commune_insee": "59571"}, "geometry": {"type": "Point", "coordinates": [3.51245734771, 50.1806606643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "220062c443a7e9c7b61d0ca05af90a167f0c8c12", "fields": {"nom_de_la_commune": "STAPLE", "libell_d_acheminement": "STAPLE", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59577"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a56f3fef1be7868d9c8676f71a0dd12cb7fb493", "fields": {"nom_de_la_commune": "TEMPLEMARS", "libell_d_acheminement": "TEMPLEMARS", "code_postal": "59175", "coordonnees_gps": [50.5711630173, 3.06780468809], "code_commune_insee": "59585"}, "geometry": {"type": "Point", "coordinates": [3.06780468809, 50.5711630173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec1304fd4ea4afb86585c1b7234fc63bd38ef9c5", "fields": {"nom_de_la_commune": "THUN ST MARTIN", "libell_d_acheminement": "THUN ST MARTIN", "code_postal": "59141", "coordonnees_gps": [50.2278844933, 3.31468451895], "code_commune_insee": "59595"}, "geometry": {"type": "Point", "coordinates": [3.31468451895, 50.2278844933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "061a4455f53d3796a569c7c828de8ed0ffe36db4", "fields": {"nom_de_la_commune": "TRESSIN", "libell_d_acheminement": "TRESSIN", "code_postal": "59152", "coordonnees_gps": [50.6050937717, 3.2043944478], "code_commune_insee": "59602"}, "geometry": {"type": "Point", "coordinates": [3.2043944478, 50.6050937717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbbbafa71813797723e99e35b1a47e2c20c9ed69", "fields": {"nom_de_la_commune": "TRITH ST LEGER", "libell_d_acheminement": "TRITH ST LEGER", "code_postal": "59125", "coordonnees_gps": [50.3306016516, 3.48702757261], "code_commune_insee": "59603"}, "geometry": {"type": "Point", "coordinates": [3.48702757261, 50.3306016516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d21cf5d38d12884d44a80c6b31864a6fcfcb6012", "fields": {"nom_de_la_commune": "TROISVILLES", "libell_d_acheminement": "TROISVILLES", "code_postal": "59980", "coordonnees_gps": [50.0845778116, 3.46500822238], "code_commune_insee": "59604"}, "geometry": {"type": "Point", "coordinates": [3.46500822238, 50.0845778116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f52a272ab03090968256d16e2997c1d157a70cd", "fields": {"nom_de_la_commune": "VENDEGIES SUR ECAILLON", "libell_d_acheminement": "VENDEGIES SUR ECAILLON", "code_postal": "59213", "coordonnees_gps": [50.2475337981, 3.52978047064], "code_commune_insee": "59608"}, "geometry": {"type": "Point", "coordinates": [3.52978047064, 50.2475337981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e0c60dd58eaa4e6f1a873a7d218f9a52573b58", "fields": {"nom_de_la_commune": "VERCHAIN MAUGRE", "libell_d_acheminement": "VERCHAIN MAUGRE", "code_postal": "59227", "coordonnees_gps": [50.2500185431, 3.45009234347], "code_commune_insee": "59610"}, "geometry": {"type": "Point", "coordinates": [3.45009234347, 50.2500185431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9bf511f4d01d192d83c577765611eeec7521c6", "fields": {"nom_de_la_commune": "VIEUX BERQUIN", "libell_d_acheminement": "VIEUX BERQUIN", "code_postal": "59232", "coordonnees_gps": [50.6936253004, 2.62004483657], "code_commune_insee": "59615"}, "geometry": {"type": "Point", "coordinates": [2.62004483657, 50.6936253004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de63da4ae9d7be890ad0544abc9dcb6de81c8d11", "fields": {"nom_de_la_commune": "VIEUX CONDE", "libell_d_acheminement": "VIEUX CONDE", "code_postal": "59690", "coordonnees_gps": [50.4733555541, 3.56593655083], "code_commune_insee": "59616"}, "geometry": {"type": "Point", "coordinates": [3.56593655083, 50.4733555541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "777f9d073f3b8e76b5356579bbf645409c20bc24", "fields": {"nom_de_la_commune": "VILLERS AU TERTRE", "libell_d_acheminement": "VILLERS AU TERTRE", "code_postal": "59234", "coordonnees_gps": [50.2968410353, 3.19491530905], "code_commune_insee": "59620"}, "geometry": {"type": "Point", "coordinates": [3.19491530905, 50.2968410353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cedb26a96f0f5f1868db7ed59f7c02adcfff0a0", "fields": {"nom_de_la_commune": "VILLERS PLOUICH", "libell_d_acheminement": "VILLERS PLOUICH", "code_postal": "59231", "coordonnees_gps": [50.065671657, 3.13135649355], "code_commune_insee": "59625"}, "geometry": {"type": "Point", "coordinates": [3.13135649355, 50.065671657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a0081103e7fb0757cff4089ad7064deab46fa5", "fields": {"nom_de_la_commune": "VILLERS SIRE NICOLE", "libell_d_acheminement": "VILLERS SIRE NICOLE", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59627"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1351bb83436e0c280fa92196ad374b58bc3c9ce", "fields": {"nom_de_la_commune": "WALLERS EN FAGNE", "libell_d_acheminement": "WALLERS EN FAGNE", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59633"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212f6edff652509abb1bde013e1e0a97eb9aaefa", "fields": {"nom_de_la_commune": "WEMAERS CAPPEL", "libell_d_acheminement": "WEMAERS CAPPEL", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59655"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b2cf9374183ab2679548e000d4a8c66ce17b772", "fields": {"nom_de_la_commune": "WEST CAPPEL", "libell_d_acheminement": "WEST CAPPEL", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59657"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf49e8c2dfce7a2bcaa7d0080c0620ee51c8b95", "fields": {"nom_de_la_commune": "WINNEZEELE", "libell_d_acheminement": "WINNEZEELE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59662"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a5ee1ed5932c3f4ce9e6e422da1dea76494c53", "fields": {"nom_de_la_commune": "WYLDER", "libell_d_acheminement": "WYLDER", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59665"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13eb5584823626439ae1400514a3a7b7a337a51", "fields": {"nom_de_la_commune": "ZEGERSCAPPEL", "libell_d_acheminement": "ZEGERSCAPPEL", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59666"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c63389c57d49230242dda7595108de8355cc2077", "fields": {"nom_de_la_commune": "ZERMEZEELE", "libell_d_acheminement": "ZERMEZEELE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59667"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c7f8ee63d4dad0fd620f550f1df34138ab04463", "fields": {"nom_de_la_commune": "ABBECOURT", "libell_d_acheminement": "ABBECOURT", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60002"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0590d4c8fc87c801e0292ba9880778fe6abee74e", "fields": {"nom_de_la_commune": "ACY EN MULTIEN", "libell_d_acheminement": "ACY EN MULTIEN", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60005"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf6e614af141f1950c62907e051b550ec3982cd", "fields": {"nom_de_la_commune": "AMY", "libell_d_acheminement": "AMY", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60011"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2601c269a34c114e09fbda328a33106f7468aa", "fields": {"nom_de_la_commune": "ANGY", "libell_d_acheminement": "ANGY", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60015"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8990c72e6ff6711dc57c3c80bb148e73a74c4021", "fields": {"nom_de_la_commune": "ANTHEUIL PORTES", "libell_d_acheminement": "ANTHEUIL PORTES", "code_postal": "60162", "coordonnees_gps": [49.4989023316, 2.74608596543], "code_commune_insee": "60019"}, "geometry": {"type": "Point", "coordinates": [2.74608596543, 49.4989023316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99b06f1dd0bb1b696c1e4a7f521ebccdd3ab68d3", "fields": {"nom_de_la_commune": "AVRIGNY", "libell_d_acheminement": "AVRIGNY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60036"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6fb2f923ec8f1d4edaa111d640b1f46c8035305", "fields": {"nom_de_la_commune": "BABOEUF", "libell_d_acheminement": "BABOEUF", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60037"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee5d01ac14f3bbeef02b2768b97bfa0b06ec1c6", "fields": {"nom_de_la_commune": "BAILLY", "libell_d_acheminement": "BAILLY", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60043"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1910e87de38927c0caca3ca2a4fdabc2586bfe", "fields": {"nom_de_la_commune": "BAZICOURT", "libell_d_acheminement": "BAZICOURT", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60050"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e7d2e6847766949d8833e9850027657dcf763b", "fields": {"nom_de_la_commune": "BEAUGIES SOUS BOIS", "libell_d_acheminement": "BEAUGIES SOUS BOIS", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60052"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e7da6fc0dc70a3e1eecb780183a4f6227268f6", "fields": {"nom_de_la_commune": "BEAUMONT LES NONAINS", "libell_d_acheminement": "BEAUMONT LES NONAINS", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60054"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d41bbb0b98cbbb569dd31427f1d697e4aed1512", "fields": {"nom_de_la_commune": "BEAUVOIR", "libell_d_acheminement": "BEAUVOIR", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60058"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac42bd4b892d4a6d5fd2704dd165164d57f387d1", "fields": {"nom_de_la_commune": "BERTHECOURT", "libell_d_acheminement": "BERTHECOURT", "code_postal": "60370", "coordonnees_gps": [49.3538659848, 2.25221191124], "code_commune_insee": "60065"}, "geometry": {"type": "Point", "coordinates": [2.25221191124, 49.3538659848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ef42201f3f9ac85d46928ea66e61a6f3aca76f", "fields": {"nom_de_la_commune": "BETHANCOURT EN VALOIS", "libell_d_acheminement": "BETHANCOURT EN VALOIS", "code_postal": "60129", "coordonnees_gps": [49.2970523686, 2.864136269], "code_commune_insee": "60066"}, "geometry": {"type": "Point", "coordinates": [2.864136269, 49.2970523686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09783de88be2d8557a97f2a749fc16c4c49079d8", "fields": {"nom_de_la_commune": "BIENVILLE", "libell_d_acheminement": "BIENVILLE", "code_postal": "60280", "coordonnees_gps": [49.4313650855, 2.80849357717], "code_commune_insee": "60070"}, "geometry": {"type": "Point", "coordinates": [2.80849357717, 49.4313650855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16b5619abeb33492b52de08db921f23261e54972", "fields": {"nom_de_la_commune": "BLAINCOURT LES PRECY", "libell_d_acheminement": "BLAINCOURT LES PRECY", "code_postal": "60460", "coordonnees_gps": [49.2147031001, 2.35428386438], "code_commune_insee": "60074"}, "geometry": {"type": "Point", "coordinates": [2.35428386438, 49.2147031001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "280eb84f08fde25a1c04318b72e2a6d15eb15926", "fields": {"nom_de_la_commune": "BLARGIES", "libell_d_acheminement": "BLARGIES", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60076"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "706abca25a2ac164c0d82cd7c574ca57c6c25154", "fields": {"nom_de_la_commune": "BLICOURT", "libell_d_acheminement": "BLICOURT", "code_postal": "60860", "coordonnees_gps": [49.5467911244, 2.02913194071], "code_commune_insee": "60077"}, "geometry": {"type": "Point", "coordinates": [2.02913194071, 49.5467911244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0446bc12bb6a70a1b58cbf2ff5dcd1bd526f65c5", "fields": {"nom_de_la_commune": "BLINCOURT", "libell_d_acheminement": "BLINCOURT", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60078"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fba4e61f9c03bfe3ff4122f52b4d1cc2d476d14", "fields": {"nom_de_la_commune": "BOISSY FRESNOY", "libell_d_acheminement": "BOISSY FRESNOY", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60079"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bfe18fd3217fd60fce35d62ee956a48c16c8225", "fields": {"nom_de_la_commune": "BOUCONVILLERS", "libell_d_acheminement": "BOUCONVILLERS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60090"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d85c102ae7411d069b6671226b6f05c5e9061272", "fields": {"nom_de_la_commune": "BOULLARRE", "libell_d_acheminement": "BOULLARRE", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60092"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de1aa8b5383bdeffcc20b0caf7f607f64859bdd2", "fields": {"nom_de_la_commune": "BOURY EN VEXIN", "libell_d_acheminement": "BOURY EN VEXIN", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60095"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af3a8f159c71419e6834b46226d080fbb43c540", "fields": {"nom_de_la_commune": "BRASSEUSE", "libell_d_acheminement": "BRASSEUSE", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60100"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cfd6daf0d125580cda50060869bf609c8720317", "fields": {"nom_de_la_commune": "BRETEUIL", "libell_d_acheminement": "BRETEUIL", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60104"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9fcc5d490622cfe45ecdef0cefca00de209ba57", "fields": {"nom_de_la_commune": "BULLES", "libell_d_acheminement": "BULLES", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60115"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fa548d2459d82c7f32f46c8d00eb831eac52abf", "fields": {"nom_de_la_commune": "CAMBRONNE LES RIBECOURT", "libell_d_acheminement": "CAMBRONNE LES RIBECOURT", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60119"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f20a63457ddfffac974ed666ec52327a52e27832", "fields": {"nom_de_la_commune": "CANLY", "libell_d_acheminement": "CANLY", "code_postal": "60680", "coordonnees_gps": [49.3855713236, 2.69284171004], "code_commune_insee": "60125"}, "geometry": {"type": "Point", "coordinates": [2.69284171004, 49.3855713236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faca823c5df06292b5036763f1b8e2023438a417", "fields": {"nom_de_la_commune": "CANNECTANCOURT", "libell_d_acheminement": "CANNECTANCOURT", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60126"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "511de2ff3ec5628c65e8d661a2498e1cc0c3ba42", "fields": {"nom_de_la_commune": "CARLEPONT", "libell_d_acheminement": "CARLEPONT", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60129"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a0a27e976cad0ae72adad5a048692d65e74f23", "fields": {"nom_de_la_commune": "CERNOY", "libell_d_acheminement": "CERNOY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60137"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9df75e21bab5e7b05a88defac161b47c36f7ecd", "fields": {"nom_de_la_commune": "JUSTINE HERBIGNY", "libell_d_acheminement": "JUSTINE HERBIGNY", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08240"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7def5f11b4adfd6181cbc0eab159a07a7ec63cd6", "fields": {"nom_de_la_commune": "LANDRICHAMPS", "libell_d_acheminement": "LANDRICHAMPS", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08247"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b8cde59077b322e3cb48a30526dfe7ed07559e", "fields": {"nom_de_la_commune": "INAUMONT", "libell_d_acheminement": "INAUMONT", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08234"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8501c188a7b8b05271b502a1f2ac92a274427b4", "fields": {"nom_de_la_commune": "HAUDRECY", "libell_d_acheminement": "HAUDRECY", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08216"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a2339c12a326dead0f1568d573d910060c4885d", "fields": {"nom_de_la_commune": "IMECOURT", "libell_d_acheminement": "IMECOURT", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08233"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3684d2adafdaae14846816c25f8a5010b316b7ce", "fields": {"nom_de_la_commune": "LAIFOUR", "libell_d_acheminement": "LAIFOUR", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08242"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aae7cd6c9f177a5aea7cd48277718b7efd37f4b8", "fields": {"nom_de_la_commune": "LONGWE", "libell_d_acheminement": "LONGWE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08259"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ba000ab7dd1eafac3d7616257796f8cb4f88af", "fields": {"nom_de_la_commune": "LONNY", "libell_d_acheminement": "LONNY", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08260"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c70d18fec95decc2403ec37374f166775d2bab61", "fields": {"nom_de_la_commune": "LIRY", "libell_d_acheminement": "LIRY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08256"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e341ae2fcdd06232798c6e1e55a1d7f85c248fb2", "fields": {"code_postal": "08380", "code_commune_insee": "08420", "libell_d_acheminement": "SIGNY LE PETIT", "ligne_5": "LA GRUERIE", "nom_de_la_commune": "SIGNY LE PETIT", "coordonnees_gps": [49.91319612, 4.30466764624]}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c60f3679c99afad8b2244a2894d9968a037beaf1", "fields": {"code_postal": "08240", "code_commune_insee": "08437", "libell_d_acheminement": "TAILLY", "ligne_5": "BARRICOURT", "nom_de_la_commune": "TAILLY", "coordonnees_gps": [49.4367865299, 4.95899557171]}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e804dc768868270c9e2fb8ca76f4e35af20223", "fields": {"nom_de_la_commune": "SIGNY MONTLIBERT", "libell_d_acheminement": "SIGNY MONTLIBERT", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08421"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e38f3e8fd37823667f790c7d89d4289d6d5f7f1", "fields": {"nom_de_la_commune": "TOULIGNY", "libell_d_acheminement": "TOULIGNY", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08454"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "356c53b19b3b866b9db46986ae21905759c21356", "fields": {"nom_de_la_commune": "TETAIGNE", "libell_d_acheminement": "TETAIGNE", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08444"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9387ee5158e35e4d216a1ab467858612b16b722a", "fields": {"nom_de_la_commune": "SUZANNE", "libell_d_acheminement": "SUZANNE", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08433"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b01563fd30b4179b2aa32ad1f06de518cc406a7", "fields": {"nom_de_la_commune": "SUGNY", "libell_d_acheminement": "SUGNY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08431"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "671db69ee557542271712b41ac0edd30bce398c3", "fields": {"nom_de_la_commune": "TARZY", "libell_d_acheminement": "TARZY", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08440"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b62fc849ba56974333c83a29a7d4a278d367d09c", "fields": {"nom_de_la_commune": "SURY", "libell_d_acheminement": "SURY", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08432"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f32f9958f0765254ce9c9de3182f81be7b45635", "fields": {"code_postal": "08360", "code_commune_insee": "08380", "libell_d_acheminement": "ST FERGEUX", "ligne_5": "CHAUDION", "nom_de_la_commune": "ST FERGEUX", "coordonnees_gps": [49.5450302072, 4.21650848613]}, "geometry": {"type": "Point", "coordinates": [4.21650848613, 49.5450302072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "414c7538763d03d0e349b2078c3afe8fd841a29c", "fields": {"code_postal": "08220", "code_commune_insee": "08366", "libell_d_acheminement": "ROCQUIGNY", "ligne_5": "MAINBRESSY", "nom_de_la_commune": "ROCQUIGNY", "coordonnees_gps": [49.6447010155, 4.20764091673]}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6330b292f15fa020428bd9d721d3798c80ae3976", "fields": {"code_postal": "08230", "code_commune_insee": "08367", "libell_d_acheminement": "ROCROI", "ligne_5": "HIRAUMONT", "nom_de_la_commune": "ROCROI", "coordonnees_gps": [49.9157903394, 4.51147538743]}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "578aa7f8d974ffc7dabfac1a55f093b7c1b0a7ce", "fields": {"nom_de_la_commune": "ST CLEMENT A ARNES", "libell_d_acheminement": "ST CLEMENT A ARNES", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08378"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8a3c691fa8d4a5a29faba4078f4f30309933be", "fields": {"nom_de_la_commune": "RAUCOURT ET FLABA", "libell_d_acheminement": "RAUCOURT ET FLABA", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08354"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f1d68c935f4dab6a048d9986e4d926f6ed7854", "fields": {"nom_de_la_commune": "LA SABOTTERIE", "libell_d_acheminement": "LA SABOTTERIE", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08374"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d7409c480734635f571b62c9e6b74f5e178212", "fields": {"nom_de_la_commune": "ST AIGNAN", "libell_d_acheminement": "ST AIGNAN", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08377"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9017ebeb885880807b19d45651956805c45f0068", "fields": {"nom_de_la_commune": "ST MOREL", "libell_d_acheminement": "ST MOREL", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08392"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863b021ac8c34bb169748f7eab40f5ce7c34115a", "fields": {"nom_de_la_commune": "ROCROI", "libell_d_acheminement": "ROCROI", "code_postal": "08230", "coordonnees_gps": [49.9157903394, 4.51147538743], "code_commune_insee": "08367"}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0697ffe958af570911b91c57aa71de88f95c5b", "fields": {"nom_de_la_commune": "REVIN", "libell_d_acheminement": "REVIN", "code_postal": "08500", "coordonnees_gps": [49.9165828539, 4.66313545428], "code_commune_insee": "08363"}, "geometry": {"type": "Point", "coordinates": [4.66313545428, 49.9165828539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "523394ab4243532bcd0992b5309d35af5cb864a6", "fields": {"code_postal": "08290", "code_commune_insee": "08344", "libell_d_acheminement": "PREZ", "ligne_5": "LA CERLEAU", "nom_de_la_commune": "PREZ", "coordonnees_gps": [49.7819854475, 4.29783858253]}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0605f368b6d6925e8edc50e2fc55296b06609d4b", "fields": {"nom_de_la_commune": "NOYERS PONT MAUGIS", "libell_d_acheminement": "NOYERS PONT MAUGIS", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08331"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e40a555acf6fba4bbee5cd884e2b1bdcdca08d6a", "fields": {"nom_de_la_commune": "NEUVILLE LES THIS", "libell_d_acheminement": "NEUVILLE LES THIS", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08322"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f6372971bc26b83cdbe558e2414e489b6accbe7", "fields": {"nom_de_la_commune": "NOUVION SUR MEUSE", "libell_d_acheminement": "NOUVION SUR MEUSE", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08327"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86d626d1dfb179b525dbd3e44fcc5c7f33e8b94", "fields": {"nom_de_la_commune": "RAILLICOURT", "libell_d_acheminement": "RAILLICOURT", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08352"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ca6322568a86b028523e694190b576eae19f0c", "fields": {"nom_de_la_commune": "POIX TERRON", "libell_d_acheminement": "POIX TERRON", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08341"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07fc6da4db0e4d6b271dd99c7d843f43c565fd3a", "fields": {"nom_de_la_commune": "RANCENNES", "libell_d_acheminement": "RANCENNES", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08353"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a734b9f381438ae2d269ce31090a9bc1e73f976", "fields": {"nom_de_la_commune": "PAUVRES", "libell_d_acheminement": "PAUVRES", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08338"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6e467cce5a69b9c8e5d0423fc005acb529215e", "fields": {"nom_de_la_commune": "PUISEUX", "libell_d_acheminement": "PUISEUX", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08348"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d3c3f1270ab9c43d126300b3d946370cb465b1e", "fields": {"nom_de_la_commune": "OCHES", "libell_d_acheminement": "OCHES", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08332"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a54be8d777d06cd744853851403ae3e370895c", "fields": {"code_postal": "08260", "code_commune_insee": "08189", "libell_d_acheminement": "GIRONDELLE", "ligne_5": "FOULZY", "nom_de_la_commune": "GIRONDELLE", "coordonnees_gps": [49.8443145713, 4.39580518668]}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c980542ad4701ee5b413e8d7fc55390082b21d", "fields": {"nom_de_la_commune": "HAM LES MOINES", "libell_d_acheminement": "HAM LES MOINES", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08206"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0e7d7b425bf02fb2b835390ea0be4881e84bb5", "fields": {"nom_de_la_commune": "LA GRANDVILLE", "libell_d_acheminement": "LA GRANDVILLE", "code_postal": "08700", "coordonnees_gps": [49.8150344171, 4.80706022542], "code_commune_insee": "08199"}, "geometry": {"type": "Point", "coordinates": [4.80706022542, 49.8150344171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dfba4df70eac1a87ac337477057338fb3cf92f2", "fields": {"nom_de_la_commune": "GUE D HOSSUS", "libell_d_acheminement": "GUE D HOSSUS", "code_postal": "08230", "coordonnees_gps": [49.9157903394, 4.51147538743], "code_commune_insee": "08202"}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1099d9c62e827e58ebf2e9e5c3ca89d3fc6b9f1", "fields": {"nom_de_la_commune": "FLEIGNEUX", "libell_d_acheminement": "FLEIGNEUX", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08170"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8e2a024c72fc63f82141248627b50c9cc176b5f", "fields": {"nom_de_la_commune": "FLEVILLE", "libell_d_acheminement": "FLEVILLE", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08171"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d4b46cc635b90eacc8f444567927dcbf3593af", "fields": {"nom_de_la_commune": "GERMONT", "libell_d_acheminement": "GERMONT", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08186"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71ff442baae266c641d33ee77a8fd046cbcbcd10", "fields": {"nom_de_la_commune": "GLAIRE", "libell_d_acheminement": "GLAIRE", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08194"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ae61f1249386d11639fd4f0800062b8f302942", "fields": {"nom_de_la_commune": "FROMY", "libell_d_acheminement": "FROMY", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08184"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0949df5c3a0f8457b60876aeab3613eb027983dc", "fields": {"nom_de_la_commune": "FUMAY", "libell_d_acheminement": "FUMAY", "code_postal": "08170", "coordonnees_gps": [49.9974542935, 4.7285296063], "code_commune_insee": "08185"}, "geometry": {"type": "Point", "coordinates": [4.7285296063, 49.9974542935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de27908dc00e738f40e47a7bc176d57eca3c143", "fields": {"nom_de_la_commune": "NEUVILLE LEZ BEAULIEU", "libell_d_acheminement": "NEUVILLE LEZ BEAULIEU", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08319"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd64839bfc612a624ff8bf35ea4d1bf03c34432c", "fields": {"nom_de_la_commune": "MENIL LEPINOIS", "libell_d_acheminement": "MENIL LEPINOIS", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08287"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4d97e31618e61166bb813a2956092ce67a407b", "fields": {"nom_de_la_commune": "LES MAZURES", "libell_d_acheminement": "LES MAZURES", "code_postal": "08500", "coordonnees_gps": [49.9165828539, 4.66313545428], "code_commune_insee": "08284"}, "geometry": {"type": "Point", "coordinates": [4.66313545428, 49.9165828539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3e296bc535276cf706c359dae996c8d0adcba2", "fields": {"nom_de_la_commune": "MONTHERME", "libell_d_acheminement": "MONTHERME", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08302"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9561a24838e2d02cd1afe84c9542a3e15394bf1", "fields": {"nom_de_la_commune": "MARANWEZ", "libell_d_acheminement": "MARANWEZ", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08272"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dd3fb61ea84607906d8ae372b159c364e0de44a", "fields": {"nom_de_la_commune": "MAZERNY", "libell_d_acheminement": "MAZERNY", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08283"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264278ed854e9fd54c59ab8fddd016359241ebb7", "fields": {"nom_de_la_commune": "MESMONT", "libell_d_acheminement": "MESMONT", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08288"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e25875eb7874ef706731620b59bb64c5d7a4fe1f", "fields": {"nom_de_la_commune": "MOURON", "libell_d_acheminement": "MOURON", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08310"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08503b57908d6344428afb86d76bbdbfe6edd63f", "fields": {"nom_de_la_commune": "MANRE", "libell_d_acheminement": "MANRE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08271"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2966bd883f4c0fda7b9bcf08e9003291bc354440", "fields": {"nom_de_la_commune": "MARBY", "libell_d_acheminement": "MARBY", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08273"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "329e893a23ff8c40e7996aae2fb5f05e8cf07e73", "fields": {"code_postal": "08160", "code_commune_insee": "08469", "libell_d_acheminement": "VENDRESSE", "ligne_5": "LA CASSINE", "nom_de_la_commune": "VENDRESSE", "coordonnees_gps": [49.6516847115, 4.77872166277]}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ad508099ee543e72b5fdbc2bf75ad01596dcea", "fields": {"nom_de_la_commune": "TOURCELLES CHAUMONT", "libell_d_acheminement": "TOURCELLES CHAUMONT", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08455"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abc39739e5fa695584e3fd0e1e6d4466a986c194", "fields": {"nom_de_la_commune": "VILLERS CERNAY", "libell_d_acheminement": "VILLERS CERNAY", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08475"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7890d3afa87ecb865b1db5fb1ee4efd7cbf755e9", "fields": {"nom_de_la_commune": "VAUX VILLAINE", "libell_d_acheminement": "VAUX VILLAINE", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08468"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f1c5dae20735e9bed0c16f40645f652398b67c", "fields": {"nom_de_la_commune": "TOURNAVAUX", "libell_d_acheminement": "TOURNAVAUX", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08456"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee76419eaf5c41639ebcff6bb81cb1a8962a299c", "fields": {"code_postal": "09600", "code_commune_insee": "09107", "libell_d_acheminement": "DUN", "ligne_5": "SENESSE DE SENABUGUE", "nom_de_la_commune": "DUN", "coordonnees_gps": [42.9966813157, 1.86782868426]}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a3487b6c1f1e0ca466dafaf7a0448b7347b9a6", "fields": {"code_postal": "09600", "code_commune_insee": "09107", "libell_d_acheminement": "DUN", "ligne_5": "MERVIEL", "nom_de_la_commune": "DUN", "coordonnees_gps": [42.9966813157, 1.86782868426]}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca2648dad2b42be795d4bb1f15747bfb421b7eb", "fields": {"nom_de_la_commune": "LES BORDES SUR ARIZE", "libell_d_acheminement": "LES BORDES SUR ARIZE", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09061"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65a277276066bda39ddf0b5bf9d5db8c3a255e29", "fields": {"nom_de_la_commune": "LES CABANNES", "libell_d_acheminement": "LES CABANNES", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09070"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08a8b75076f6f61f1cb07ac7bf4fc3f234376361", "fields": {"nom_de_la_commune": "CADARCET", "libell_d_acheminement": "CADARCET", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09071"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d62f110192ce37af4ee7e5b068725d99135c635", "fields": {"nom_de_la_commune": "COUSSA", "libell_d_acheminement": "COUSSA", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09101"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8b2648f81efe666f510bdf62776e2380e4c2e92", "fields": {"nom_de_la_commune": "CANTE", "libell_d_acheminement": "CANTE", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09076"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b57b0922b8edb976cf4313d60936dbe850a28f", "fields": {"nom_de_la_commune": "GAJAN", "libell_d_acheminement": "GAJAN", "code_postal": "09190", "coordonnees_gps": [43.0227616635, 1.12327682273], "code_commune_insee": "09128"}, "geometry": {"type": "Point", "coordinates": [1.12327682273, 43.0227616635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ab48c8609901c95569a353c39382b37da42296", "fields": {"nom_de_la_commune": "FABAS", "libell_d_acheminement": "FABAS", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09120"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20173c22117a6cfdce4b723c013102fcd3c6802e", "fields": {"nom_de_la_commune": "ERP", "libell_d_acheminement": "ERP", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09114"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58878601d91ca5e70613c97fff25cc8cb1cee0a6", "fields": {"code_postal": "09400", "code_commune_insee": "09306", "libell_d_acheminement": "TARASCON SUR ARIEGE", "ligne_5": "BANAT", "nom_de_la_commune": "TARASCON SUR ARIEGE", "coordonnees_gps": [42.8458484074, 1.57117119842]}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c55f89818397dfdf1dcccb143f73cd99e28846", "fields": {"nom_de_la_commune": "SENTENAC DE SEROU", "libell_d_acheminement": "SENTENAC DE SEROU", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09292"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eae09f8426332e13cb786483437006f2a9ad647b", "fields": {"nom_de_la_commune": "TAURIGNAN CASTET", "libell_d_acheminement": "TAURIGNAN CASTET", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09307"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0eebaf1e508c84f9801afa38f730097e9eefa1", "fields": {"nom_de_la_commune": "SOUEIX ROGALLE", "libell_d_acheminement": "SOUEIX ROGALLE", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09299"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cced00f38218ea4dd9deef7ff82a29e95827c1f4", "fields": {"nom_de_la_commune": "TREMOULET", "libell_d_acheminement": "TREMOULET", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09315"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac9842dbc535dfc539131e5e55affcb76a3f8930", "fields": {"nom_de_la_commune": "LE VERNET", "libell_d_acheminement": "LE VERNET", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09331"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cac2f417aca296a0672ea69185be6b56979c574", "fields": {"nom_de_la_commune": "TOURTROL", "libell_d_acheminement": "TOURTROL", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09314"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6298d821862870cad4bc867b40fc1fefb1d431", "fields": {"nom_de_la_commune": "VARILHES", "libell_d_acheminement": "VARILHES", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09324"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2482e3a6c9dbe5f8f144d1aa2d82a9b900514d40", "fields": {"nom_de_la_commune": "TEILHET", "libell_d_acheminement": "TEILHET", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09309"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8273801c6ca7fd5c43943cc041d591588fcee76b", "fields": {"nom_de_la_commune": "SUZAN", "libell_d_acheminement": "SUZAN", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09304"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "121f7376cc9c44adbfd9da7b095112fb1265bbf2", "fields": {"nom_de_la_commune": "L HOSPITALET PRES L ANDORRE", "libell_d_acheminement": "L HOSPITALET PRES L ANDORRE", "code_postal": "09390", "coordonnees_gps": [42.5954552828, 1.77758509923], "code_commune_insee": "09139"}, "geometry": {"type": "Point", "coordinates": [1.77758509923, 42.5954552828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ad351b54cdda4f84b998b2c742576fc6bd14b0e", "fields": {"nom_de_la_commune": "ILLIER ET LARAMADE", "libell_d_acheminement": "ILLIER ET LARAMADE", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09143"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee31a412754a5898368687d525ba833b18b1efff", "fields": {"nom_de_la_commune": "MAUVEZIN DE PRAT", "libell_d_acheminement": "MAUVEZIN DE PRAT", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09183"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0d778db1cba40cb9319fe73e09a22f3babcc505", "fields": {"nom_de_la_commune": "MERCUS GARRABET", "libell_d_acheminement": "MERCUS GARRABET", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09188"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de2aad865e74edf09f318e775bebb2cd0f7aa397", "fields": {"nom_de_la_commune": "LAROQUE D OLMES", "libell_d_acheminement": "LAROQUE D OLMES", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09157"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ea5e88c7bf9315305b61eeab2421b4decccb99", "fields": {"nom_de_la_commune": "LOUBIERES", "libell_d_acheminement": "LOUBIERES", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09174"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac5083786ebb6ab519a710352888f5bbaccda317", "fields": {"nom_de_la_commune": "LERCOUL", "libell_d_acheminement": "LERCOUL", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09162"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f51853952f791d96d12463739239b2c56544ab23", "fields": {"nom_de_la_commune": "LORDAT", "libell_d_acheminement": "LORDAT", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09171"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c5d13c4a6d8b3815b908f4b5f7bf649886baba", "fields": {"nom_de_la_commune": "GALEY", "libell_d_acheminement": "GALEY", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09129"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d9407cd52a8a880a98cabf192b7a74b7fe1528", "fields": {"nom_de_la_commune": "GUDAS", "libell_d_acheminement": "GUDAS", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09137"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216722cb7e3d56619805fcbf99cbc17eff7ef16f", "fields": {"nom_de_la_commune": "ST JEAN DU CASTILLONNAIS", "libell_d_acheminement": "ST JEAN DU CASTILLONNAIS", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09263"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be56960010b8a4128ffd5cf0d2e026949613b156", "fields": {"nom_de_la_commune": "ST JULIEN DE GRAS CAPOU", "libell_d_acheminement": "ST JULIEN DE GRAS CAPOU", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09266"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfcb9af3c94831243f7c398b2dc6756780718f15", "fields": {"nom_de_la_commune": "ST VICTOR ROUZAUD", "libell_d_acheminement": "ST VICTOR ROUZAUD", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09276"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e21e9ea23510586906d8ca508bdddb4b5d1b6f0", "fields": {"nom_de_la_commune": "LORP SENTARAILLE", "libell_d_acheminement": "LORP SENTARAILLE", "code_postal": "09190", "coordonnees_gps": [43.0227616635, 1.12327682273], "code_commune_insee": "09289"}, "geometry": {"type": "Point", "coordinates": [1.12327682273, 43.0227616635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a17bca857d27a9ae0018b470ff13cc01527a84", "fields": {"nom_de_la_commune": "QUERIGUT", "libell_d_acheminement": "QUERIGUT", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09239"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260d4a1de6a7b3ecbebf63e7f1ecfbb725bb8c7b", "fields": {"nom_de_la_commune": "SENCONAC", "libell_d_acheminement": "SENCONAC", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09287"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576ae5d11666d57d861a4d6625e58666fccbf4b0", "fields": {"nom_de_la_commune": "RAISSAC", "libell_d_acheminement": "RAISSAC", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09242"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecf00d017c72ea2ff7d4a43ff9a9e8a0ee6a3877", "fields": {"nom_de_la_commune": "MONTIGNAC TOUPINERIE", "libell_d_acheminement": "MONTIGNAC TOUPINERIE", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47189"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c88635dc052588a04d605164b9d7c4e868e32d37", "fields": {"nom_de_la_commune": "NERAC", "libell_d_acheminement": "NERAC", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47195"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5600874f8bb76375f6e2f9c203c2f3a07ddc21c", "fields": {"nom_de_la_commune": "NOMDIEU", "libell_d_acheminement": "NOMDIEU", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47197"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ad5e4637c6662dae6aa50a7685bb8a5bb859980", "fields": {"nom_de_la_commune": "PINEL HAUTERIVE", "libell_d_acheminement": "PINEL HAUTERIVE", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47206"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d07ff717164982195a615654a7304548a16d3d1f", "fields": {"nom_de_la_commune": "POMPOGNE", "libell_d_acheminement": "POMPOGNE", "code_postal": "47420", "coordonnees_gps": [44.190114172, 0.0302523935969], "code_commune_insee": "47208"}, "geometry": {"type": "Point", "coordinates": [0.0302523935969, 44.190114172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54085923079b00f3825754471a703a10af6d994a", "fields": {"nom_de_la_commune": "POUDENAS", "libell_d_acheminement": "POUDENAS", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47211"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7235f4995ce3f05c433e3d7707ef9fd9d28c51e9", "fields": {"nom_de_la_commune": "PUCH D AGENAIS", "libell_d_acheminement": "PUCH D AGENAIS", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47214"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be09dc85a6e5f1441cdfa743dc036a8885b4aef", "fields": {"nom_de_la_commune": "PUJOLS", "libell_d_acheminement": "PUJOLS", "code_postal": "47300", "coordonnees_gps": [44.4077673219, 0.711996693355], "code_commune_insee": "47215"}, "geometry": {"type": "Point", "coordinates": [0.711996693355, 44.4077673219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4b10380e0e50e2ed888619ca1c0502778529f6", "fields": {"code_postal": "47170", "code_commune_insee": "47221", "libell_d_acheminement": "REAUP LISSE", "ligne_5": "LISSE", "nom_de_la_commune": "REAUP LISSE", "coordonnees_gps": [44.0578455097, 0.199141887722]}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96055cbc95370b4d3a0a990106343595c5d7daec", "fields": {"nom_de_la_commune": "LA REUNION", "libell_d_acheminement": "LA REUNION", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47222"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ddd36a7a965f36bfd1875fb03952ee6c69bf04e", "fields": {"nom_de_la_commune": "RUFFIAC", "libell_d_acheminement": "RUFFIAC", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47227"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4874f03e93e70f573c79984cce54c15bcd4862e0", "fields": {"nom_de_la_commune": "ST ASTIER", "libell_d_acheminement": "ST ASTIER", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47229"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6caa5039977552241b916b3476ee72e9bff64a6", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47230"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deae3c14fee108c45ab371af035535c859080b39", "fields": {"nom_de_la_commune": "STE COLOMBE EN BRUILHOIS", "libell_d_acheminement": "STE COLOMBE EN BRUILHOIS", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47238"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d99f043eea3537a83f482e48a5f0a18d9a66f7e", "fields": {"nom_de_la_commune": "ST MAURIN", "libell_d_acheminement": "ST MAURIN", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47260"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2a88674c49f1ebbf58ceb7af9168ac30c3df7ae", "fields": {"nom_de_la_commune": "ST NICOLAS DE LA BALERME", "libell_d_acheminement": "ST NICOLAS DE LA BALERME", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47262"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d5b0732c3a9b64065a7d75041ff055d02bb5a37", "fields": {"nom_de_la_commune": "ST PIERRE DE BUZET", "libell_d_acheminement": "ST PIERRE DE BUZET", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47267"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06aa3a27a98640cb057023cf65317ba56ca05f7f", "fields": {"nom_de_la_commune": "ST ROBERT", "libell_d_acheminement": "ST ROBERT", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47273"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d07212bd7f279ed891ee299037227dff7fb32a", "fields": {"nom_de_la_commune": "ST SARDOS", "libell_d_acheminement": "ST SARDOS", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47276"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df34b4b19bb457baf3be1c0064327b019ab46cb", "fields": {"nom_de_la_commune": "ST SIXTE", "libell_d_acheminement": "ST SIXTE", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47279"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90c4c88e43dd08aecd32025d48ee51b00cba2c16", "fields": {"nom_de_la_commune": "ST URCISSE", "libell_d_acheminement": "ST URCISSE", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47281"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8f6834af82643e6c565649c62c43e0142190a8d", "fields": {"nom_de_la_commune": "SAMAZAN", "libell_d_acheminement": "SAMAZAN", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47285"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71cf4258a137a8189abd0b73cbcae3898a747e43", "fields": {"nom_de_la_commune": "SAUMEJAN", "libell_d_acheminement": "SAUMEJAN", "code_postal": "47420", "coordonnees_gps": [44.190114172, 0.0302523935969], "code_commune_insee": "47286"}, "geometry": {"type": "Point", "coordinates": [0.0302523935969, 44.190114172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb850024cc63c093c39da13ac4583e48d62da015", "fields": {"nom_de_la_commune": "SAUMONT", "libell_d_acheminement": "SAUMONT", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47287"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b265f720ae112a838cec2e9b108acafdbc49124a", "fields": {"nom_de_la_commune": "SAUVAGNAS", "libell_d_acheminement": "SAUVAGNAS", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47288"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1fbaa464768c72bd46581a8f711c42d384ee557", "fields": {"nom_de_la_commune": "LA SAUVETAT SUR LEDE", "libell_d_acheminement": "LA SAUVETAT SUR LEDE", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47291"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0a4bfcadac5da343905821ec534f39bb073a66", "fields": {"nom_de_la_commune": "SEMBAS", "libell_d_acheminement": "SEMBAS", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47297"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e92d2b44686eeebbd23f7d849d7204b41436f9ce", "fields": {"nom_de_la_commune": "SOS", "libell_d_acheminement": "SOS", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47302"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "136b13a1b7b7313f5ff72812280bbcb1d77ae082", "fields": {"nom_de_la_commune": "SOUMENSAC", "libell_d_acheminement": "SOUMENSAC", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47303"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e84f9638f4dfbb25fccf2e682883541a5aef0c", "fields": {"nom_de_la_commune": "LE TEMPLE SUR LOT", "libell_d_acheminement": "LE TEMPLE SUR LOT", "code_postal": "47110", "coordonnees_gps": [44.383733234, 0.585627133864], "code_commune_insee": "47306"}, "geometry": {"type": "Point", "coordinates": [0.585627133864, 44.383733234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4fc14e0e178b55f954fe1dd284c017ad9397b7c", "fields": {"nom_de_la_commune": "TOURLIAC", "libell_d_acheminement": "TOURLIAC", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47311"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d626faaa15415c3591ed87106c113fd5328dde7c", "fields": {"nom_de_la_commune": "TRENTELS", "libell_d_acheminement": "TRENTELS", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47315"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1035fbf27bd8902dd197582e9a546ea1ab68cce4", "fields": {"nom_de_la_commune": "VILLEFRANCHE DU QUEYRAN", "libell_d_acheminement": "VILLEFRANCHE DU QUEYRAN", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47320"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62cb43efbde32004e832ed4331ea8113c2bc5e58", "fields": {"nom_de_la_commune": "VILLENEUVE SUR LOT", "libell_d_acheminement": "VILLENEUVE SUR LOT", "code_postal": "47300", "coordonnees_gps": [44.4077673219, 0.711996693355], "code_commune_insee": "47323"}, "geometry": {"type": "Point", "coordinates": [0.711996693355, 44.4077673219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e381b8382b18ccd6139ff820684e0024bf75d9a8", "fields": {"nom_de_la_commune": "VIRAZEIL", "libell_d_acheminement": "VIRAZEIL", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47326"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58294195fbab441bf115ea6985361f24a6269b96", "fields": {"nom_de_la_commune": "ARZENC D APCHER", "libell_d_acheminement": "ARZENC D APCHER", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48007"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdc1345784a1eb23d7b0416cb9cf591dd0ce895a", "fields": {"code_postal": "48200", "code_commune_insee": "48012", "libell_d_acheminement": "LES MONTS VERTS", "ligne_5": "BERC", "nom_de_la_commune": "LES MONTS VERTS", "coordonnees_gps": [44.8172105635, 3.26915609563]}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb4b0ef9527c9776cc704cb2a732ab900a33e4b7", "fields": {"nom_de_la_commune": "PIED DE BORNE", "libell_d_acheminement": "PIED DE BORNE", "code_postal": "48800", "coordonnees_gps": [44.4744037088, 3.906783441], "code_commune_insee": "48015"}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a291e87197ff8da246685e9590d0b06a3be8cb7", "fields": {"nom_de_la_commune": "BASSURELS", "libell_d_acheminement": "BASSURELS", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48020"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fdc3695b1c336d699ddfbc795e7ea19f3f940a8", "fields": {"nom_de_la_commune": "BELVEZET", "libell_d_acheminement": "BELVEZET", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48023"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eaf8de739a7bfc64fc8d899a7310abf95588117", "fields": {"nom_de_la_commune": "LE BLEYMARD", "libell_d_acheminement": "LE BLEYMARD", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48027"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5b6daeabefecfe6a2646e8c7b619c2ee5b2e809", "fields": {"nom_de_la_commune": "LE BORN", "libell_d_acheminement": "LE BORN", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48029"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ca95cf70e9bfc205f512a6ba947485fb5b6587b", "fields": {"code_postal": "48500", "code_commune_insee": "48034", "libell_d_acheminement": "LA CANOURGUE", "ligne_5": "MONTJEZIEU", "nom_de_la_commune": "LA CANOURGUE", "coordonnees_gps": [44.3691464127, 3.23194733105]}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3475058e851dd3144ccc297f99e2c1d1634b2a7e", "fields": {"nom_de_la_commune": "CHANAC", "libell_d_acheminement": "CHANAC", "code_postal": "48230", "coordonnees_gps": [44.4596098281, 3.3408753793], "code_commune_insee": "48039"}, "geometry": {"type": "Point", "coordinates": [3.3408753793, 44.4596098281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28685a84c89a322a241f9116e223be5a8fc9523c", "fields": {"nom_de_la_commune": "CHAUCHAILLES", "libell_d_acheminement": "CHAUCHAILLES", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48044"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3984acd6e0bd830b4a014c682e1cd65c0b47baf2", "fields": {"nom_de_la_commune": "LA CHAZE DE PEYRE", "libell_d_acheminement": "LA CHAZE DE PEYRE", "code_postal": "48130", "coordonnees_gps": [44.6979669437, 3.26876016092], "code_commune_insee": "48047"}, "geometry": {"type": "Point", "coordinates": [3.26876016092, 44.6979669437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536af1642208fa702510a8a6e3cd690c67fb03c6", "fields": {"nom_de_la_commune": "CUBIERES", "libell_d_acheminement": "CUBIERES", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48053"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12c088eb12dc20c66527685ad51a34683a8e707", "fields": {"nom_de_la_commune": "CUBIERETTES", "libell_d_acheminement": "CUBIERETTES", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48054"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee7baf1852d8a6c1eaada24c16dd8a14b2541d4", "fields": {"nom_de_la_commune": "GREZES", "libell_d_acheminement": "GREZES", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48072"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "192135bca20074d8570a35a5c882fe632ecf2dbf", "fields": {"nom_de_la_commune": "ISPAGNAC", "libell_d_acheminement": "ISPAGNAC", "code_postal": "48320", "coordonnees_gps": [44.3839235672, 3.52688734054], "code_commune_insee": "48075"}, "geometry": {"type": "Point", "coordinates": [3.52688734054, 44.3839235672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0dcc9992055708c15a0406dbd12e35c83a6a127", "fields": {"nom_de_la_commune": "LANUEJOLS", "libell_d_acheminement": "LANUEJOLS", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48081"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53593626bab761c262d69fb66e2552cbacfa5c5d", "fields": {"nom_de_la_commune": "LAVAL DU TARN", "libell_d_acheminement": "LAVAL DU TARN", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48085"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fa3a5961939c33d3da6782740c5dded580f6255", "fields": {"nom_de_la_commune": "LUC", "libell_d_acheminement": "LUC", "code_postal": "48250", "coordonnees_gps": [44.58724186, 3.85437402799], "code_commune_insee": "48086"}, "geometry": {"type": "Point", "coordinates": [3.85437402799, 44.58724186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9f2c681cea849336ed54611330f9b116a8231e2", "fields": {"nom_de_la_commune": "MALBOUZON", "libell_d_acheminement": "MALBOUZON", "code_postal": "48270", "coordonnees_gps": [44.7073469646, 3.13057049845], "code_commune_insee": "48087"}, "geometry": {"type": "Point", "coordinates": [3.13057049845, 44.7073469646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "014de1d09ed9fabd09deac800699b39058d2336f", "fields": {"nom_de_la_commune": "MARVEJOLS", "libell_d_acheminement": "MARVEJOLS", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48092"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa9fb8a1a700d5ac5f15bcdde1d64655a98a6db", "fields": {"nom_de_la_commune": "MENDE", "libell_d_acheminement": "MENDE", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48095"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36937ef956b122bb9e1b0c6042536fb19f3f82e4", "fields": {"nom_de_la_commune": "MOISSAC VALLEE FRANCAISE", "libell_d_acheminement": "MOISSAC VALLEE FRANCAISE", "code_postal": "48110", "coordonnees_gps": [44.1928198213, 3.72930713182], "code_commune_insee": "48097"}, "geometry": {"type": "Point", "coordinates": [3.72930713182, 44.1928198213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2c0d720ccf6f013b6e70cc5fdc6747ca9806d47", "fields": {"code_postal": "48100", "code_commune_insee": "48099", "libell_d_acheminement": "BOURGS SUR COLAGNE", "ligne_5": "PIN MORIES", "nom_de_la_commune": "BOURGS SUR COLAGNE", "coordonnees_gps": [44.5866860441, 3.24770669701]}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8702d65810622c218f10eb5754bca80e791cf3a0", "fields": {"code_postal": "48220", "code_commune_insee": "48116", "libell_d_acheminement": "PONT DE MONTVERT SUD MONT LOZERE", "ligne_5": "ST MAURICE DE VENTALON", "nom_de_la_commune": "PONT DE MONTVERT SUD MONT LOZERE", "coordonnees_gps": [44.3629471664, 3.81136680024]}, "geometry": {"type": "Point", "coordinates": [3.81136680024, 44.3629471664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d127e4fe3cd946fe66c7f0b06f8c031913b9c2ba", "fields": {"nom_de_la_commune": "POURCHARESSES", "libell_d_acheminement": "POURCHARESSES", "code_postal": "48800", "coordonnees_gps": [44.4744037088, 3.906783441], "code_commune_insee": "48117"}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90b6b726a24252384f4d3d6caf6a098856477ec", "fields": {"nom_de_la_commune": "QUEZAC", "libell_d_acheminement": "QUEZAC", "code_postal": "48320", "coordonnees_gps": [44.3839235672, 3.52688734054], "code_commune_insee": "48122"}, "geometry": {"type": "Point", "coordinates": [3.52688734054, 44.3839235672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2061b672a4960ce6caa485843bfb14a9cb45bdc", "fields": {"nom_de_la_commune": "ST ALBAN SUR LIMAGNOLE", "libell_d_acheminement": "ST ALBAN SUR LIMAGNOLE", "code_postal": "48120", "coordonnees_gps": [44.8002915136, 3.42996631483], "code_commune_insee": "48132"}, "geometry": {"type": "Point", "coordinates": [3.42996631483, 44.8002915136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6983bbbbc7ee74b96d54f96a3c054b9da33e6c8c", "fields": {"nom_de_la_commune": "MAS ST CHELY", "libell_d_acheminement": "MAS ST CHELY", "code_postal": "48210", "coordonnees_gps": [44.3288695962, 3.39194126982], "code_commune_insee": "48141"}, "geometry": {"type": "Point", "coordinates": [3.39194126982, 44.3288695962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1f893bef31bfa612e585a9df32af32dd274d680", "fields": {"nom_de_la_commune": "STE EULALIE", "libell_d_acheminement": "STE EULALIE", "code_postal": "48120", "coordonnees_gps": [44.8002915136, 3.42996631483], "code_commune_insee": "48149"}, "geometry": {"type": "Point", "coordinates": [3.42996631483, 44.8002915136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06cb9bc8e24519b3370a1b979456755eba07a5d7", "fields": {"nom_de_la_commune": "ST FLOUR DE MERCOIRE", "libell_d_acheminement": "ST FLOUR DE MERCOIRE", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48150"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15650ee77f0eab779b2bbd9d2fc6c4c347dbdb3c", "fields": {"nom_de_la_commune": "STE HELENE", "libell_d_acheminement": "STE HELENE", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48157"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efc7a0ec329b6a3047a54c26ae9c2ca59568ef1a", "fields": {"nom_de_la_commune": "ST HILAIRE DE LAVIT", "libell_d_acheminement": "ST HILAIRE DE LAVIT", "code_postal": "48160", "coordonnees_gps": [44.2409475687, 3.90246721272], "code_commune_insee": "48158"}, "geometry": {"type": "Point", "coordinates": [3.90246721272, 44.2409475687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793abc0f51de257b46874f3c15bc2f580cb8cd58", "fields": {"nom_de_la_commune": "ST LEGER DU MALZIEU", "libell_d_acheminement": "ST LEGER DU MALZIEU", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48169"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d4d9aa04fb41b36dbc8c4c70575575e6041022f", "fields": {"nom_de_la_commune": "ST MARTIN DE LANSUSCLE", "libell_d_acheminement": "ST MARTIN DE LANSUSCLE", "code_postal": "48110", "coordonnees_gps": [44.1928198213, 3.72930713182], "code_commune_insee": "48171"}, "geometry": {"type": "Point", "coordinates": [3.72930713182, 44.1928198213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12c7d390bf8669b96da84f79809704790f421e37", "fields": {"nom_de_la_commune": "ST MICHEL DE DEZE", "libell_d_acheminement": "ST MICHEL DE DEZE", "code_postal": "48160", "coordonnees_gps": [44.2409475687, 3.90246721272], "code_commune_insee": "48173"}, "geometry": {"type": "Point", "coordinates": [3.90246721272, 44.2409475687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3343be8c75f75c743293ad72c493bfad7e2827ac", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48181"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d920c674424832cf06928fd45c837dc56c218e46", "fields": {"nom_de_la_commune": "ST SAUVEUR DE PEYRE", "libell_d_acheminement": "ST SAUVEUR DE PEYRE", "code_postal": "48130", "coordonnees_gps": [44.6979669437, 3.26876016092], "code_commune_insee": "48183"}, "geometry": {"type": "Point", "coordinates": [3.26876016092, 44.6979669437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d44d7fba4139ea53939f95794ab88b996409f5c", "fields": {"nom_de_la_commune": "LES SALCES", "libell_d_acheminement": "LES SALCES", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48187"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b78ef4eccad46307721e5f5cf7c90a26afe2d77", "fields": {"nom_de_la_commune": "SERVERETTE", "libell_d_acheminement": "SERVERETTE", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48188"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d8b994eda4ffc651799505d4737b38a76b8e03b", "fields": {"nom_de_la_commune": "BAUGE EN ANJOU", "libell_d_acheminement": "BAUGE EN ANJOU", "code_postal": "49150", "coordonnees_gps": [47.5402607075, -0.0974658784366], "code_commune_insee": "49018"}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a82aa1c2fa790fde8a47e00a0b1e497f70dc77e", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "ECHEMIRE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24bc529ddeb8ca9d68204edfbdecdcb8d6932a9a", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "LE VIEIL BAUGE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "545a202b20e9b63fae3f4432357a5542ce0bba49", "fields": {"nom_de_la_commune": "BEAUFORT EN ANJOU", "libell_d_acheminement": "BEAUFORT EN ANJOU", "code_postal": "49250", "coordonnees_gps": [47.4313983805, -0.244193438131], "code_commune_insee": "49021"}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0835813b8dcf5390e7f4fe2cd87fcde2f640d0f", "fields": {"code_postal": "49110", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "LE PIN EN MAUGES", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb62763664c16de193e49c11fe45fb42fca23245", "fields": {"code_postal": "49450", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "VILLEDIEU LA BLOUERE", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.1753425771, -0.989795900274]}, "geometry": {"type": "Point", "coordinates": [-0.989795900274, 47.1753425771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af17c755b2f3e0ffb27ea5d33d92e157c91480b2", "fields": {"code_postal": "49600", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "ST PHILBERT EN MAUGES", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d130b68f93b3a50ebf0c0412a84a87d68071a854", "fields": {"nom_de_la_commune": "BEHUARD", "libell_d_acheminement": "BEHUARD", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49028"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98104ed0f5eb3796ad8e7d2cf6a7a3ce28f33a30", "fields": {"nom_de_la_commune": "BOUILLE MENARD", "libell_d_acheminement": "BOUILLE MENARD", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49036"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f2b0f575dde8d7184c7592c6b446183c5e13bb", "fields": {"nom_de_la_commune": "BRIGNE", "libell_d_acheminement": "BRIGNE", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49047"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de1686e5e7d91969ba8e4dd3905a9b3788fbea1", "fields": {"nom_de_la_commune": "BRIOLLAY", "libell_d_acheminement": "BRIOLLAY", "code_postal": "49125", "coordonnees_gps": [47.6143418722, -0.475891019587], "code_commune_insee": "49048"}, "geometry": {"type": "Point", "coordinates": [-0.475891019587, 47.6143418722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2734d8741428ada32754f306e94471d979f52c", "fields": {"nom_de_la_commune": "BRISSARTHE", "libell_d_acheminement": "BRISSARTHE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49051"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cee7634b6c77d907f217005395fa7d6ee4f1dc4f", "fields": {"nom_de_la_commune": "CERNUSSON", "libell_d_acheminement": "CERNUSSON", "code_postal": "49310", "coordonnees_gps": [47.1669501795, -0.609299799039], "code_commune_insee": "49057"}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a5d561078dfa4eb71f162ddaaef8dc907169ed", "fields": {"nom_de_la_commune": "CHALLAIN LA POTHERIE", "libell_d_acheminement": "CHALLAIN LA POTHERIE", "code_postal": "49440", "coordonnees_gps": [47.5742354301, -1.03309048428], "code_commune_insee": "49061"}, "geometry": {"type": "Point", "coordinates": [-1.03309048428, 47.5742354301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c81b0f25796e8f97e9d0af12cb871a186cc2696", "fields": {"nom_de_la_commune": "CHALONNES SUR LOIRE", "libell_d_acheminement": "CHALONNES SUR LOIRE", "code_postal": "49290", "coordonnees_gps": [47.3431019383, -0.806177214608], "code_commune_insee": "49063"}, "geometry": {"type": "Point", "coordinates": [-0.806177214608, 47.3431019383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6e5daf949e8468ebf5c18868973c274380f8c2", "fields": {"nom_de_la_commune": "CHAMBELLAY", "libell_d_acheminement": "CHAMBELLAY", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49064"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86d8a8507a0f6f38df173f1e964795bd6020b668", "fields": {"nom_de_la_commune": "CHAMPIGNE", "libell_d_acheminement": "CHAMPIGNE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49065"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d94bc8e4a0e31eccef82857dfd93459a8fa6f5bf", "fields": {"nom_de_la_commune": "CHENILLE CHAMPTEUSSE", "libell_d_acheminement": "CHENILLE CHAMPTEUSSE", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49067"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73669c3aee7c8745fb679dd8ab89f460043ce2da", "fields": {"code_postal": "49220", "code_commune_insee": "49067", "libell_d_acheminement": "CHENILLE CHAMPTEUSSE", "ligne_5": "CHENILLE CHANGE", "nom_de_la_commune": "CHENILLE CHAMPTEUSSE", "coordonnees_gps": [47.6290283416, -0.733017824354]}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "587b34274f77b11f81eed79a43eadf00328a7af5", "fields": {"code_postal": "49270", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "LA VARENNE", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad1fbf6be931841ee90d5e5ec7292319890d87d4", "fields": {"code_postal": "49270", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "LANDEMONT", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2161028ad28d86540a1ea877eb63dd2f8b933787", "fields": {"code_postal": "49530", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "BOUZILLE", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3221427995, -1.26040062028]}, "geometry": {"type": "Point", "coordinates": [-1.26040062028, 47.3221427995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abd2071154349118f10752073e2314515bbbe642", "fields": {"code_postal": "49530", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "DRAIN", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3221427995, -1.26040062028]}, "geometry": {"type": "Point", "coordinates": [-1.26040062028, 47.3221427995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "125befaada29c899c3e8d8e060e5592605e6f32e", "fields": {"nom_de_la_commune": "CHAZE HENRY", "libell_d_acheminement": "CHAZE HENRY", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49088"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ecd6eb2d0690ab52e0e19d6c0055f9d2018a488", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "LA JUMELLIERE", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd9bc4b08be71cf9e8c6f0f983d20e62dce3313", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "LA TOURLANDRY", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42b061441b461ac8d6eed3b5ab3ac7270da682a4", "fields": {"nom_de_la_commune": "VERMANDOVILLERS", "libell_d_acheminement": "VERMANDOVILLERS", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80789"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d677135fb30add68b6dfe8b0903080af54e5240", "fields": {"nom_de_la_commune": "VIGNACOURT", "libell_d_acheminement": "VIGNACOURT", "code_postal": "80650", "coordonnees_gps": [50.0085699512, 2.18663552993], "code_commune_insee": "80793"}, "geometry": {"type": "Point", "coordinates": [2.18663552993, 50.0085699512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b2657030351d609ebedb29045fad2362f381a33", "fields": {"nom_de_la_commune": "VILLECOURT", "libell_d_acheminement": "VILLECOURT", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80794"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2c70e2ec53cde78fa656991f653255d3bf4f47", "fields": {"nom_de_la_commune": "VILLERS AUX ERABLES", "libell_d_acheminement": "VILLERS AUX ERABLES", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80797"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3afe7f38d71f1a87f14e23a81ed03fee52b7a0", "fields": {"nom_de_la_commune": "VILLERS BOCAGE", "libell_d_acheminement": "VILLERS BOCAGE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80798"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "813a0b25d2106d2ef2acf2625df911c96e11fe66", "fields": {"nom_de_la_commune": "VILLERS BRETONNEUX", "libell_d_acheminement": "VILLERS BRETONNEUX", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80799"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4946101ba5d30c71cfa83f0ad6d4eebe66861388", "fields": {"nom_de_la_commune": "VILLERS CAMPSART", "libell_d_acheminement": "VILLERS CAMPSART", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80800"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b934602d1d1a950a9d54c1306f71268efa2303c", "fields": {"nom_de_la_commune": "VILLERS CARBONNEL", "libell_d_acheminement": "VILLERS CARBONNEL", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80801"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a730c3b2bd7b928c510bd7d8e81deec14c5913f4", "fields": {"nom_de_la_commune": "VILLERS LES ROYE", "libell_d_acheminement": "VILLERS LES ROYE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80803"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46225d5dbfb7b99cd747791c746c0fd73dbf5eb1", "fields": {"nom_de_la_commune": "VILLERS TOURNELLE", "libell_d_acheminement": "VILLERS TOURNELLE", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80805"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f67ddb5e4374a261ac13fce23b4daa53c1914a2", "fields": {"nom_de_la_commune": "VISMES", "libell_d_acheminement": "VISMES AU VAL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80809"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "244b8c8240c5e2c0e06580030605f668194f29b9", "fields": {"nom_de_la_commune": "VITZ SUR AUTHIE", "libell_d_acheminement": "VITZ SUR AUTHIE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80810"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d08db7e53ca1cd99796e6d3a7032ce7d520ac259", "fields": {"nom_de_la_commune": "WARGNIES", "libell_d_acheminement": "WARGNIES", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80819"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988d9fcd90550dc7af411854285470d4de2db0b3", "fields": {"nom_de_la_commune": "WOINCOURT", "libell_d_acheminement": "WOINCOURT", "code_postal": "80520", "coordonnees_gps": [50.0605501817, 1.51862547548], "code_commune_insee": "80827"}, "geometry": {"type": "Point", "coordinates": [1.51862547548, 50.0605501817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9061f0edfb306a7cdb96b8a45dce5a57682dfff", "fields": {"nom_de_la_commune": "ALBAN", "libell_d_acheminement": "ALBAN", "code_postal": "81250", "coordonnees_gps": [43.8730410539, 2.47494660719], "code_commune_insee": "81003"}, "geometry": {"type": "Point", "coordinates": [2.47494660719, 43.8730410539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a16314442b1767d09631d21403aa8dff62b1290", "fields": {"nom_de_la_commune": "ALBI", "libell_d_acheminement": "ALBI", "code_postal": "81000", "coordonnees_gps": [43.9256363558, 2.14727658204], "code_commune_insee": "81004"}, "geometry": {"type": "Point", "coordinates": [2.14727658204, 43.9256363558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb5953f2369592495c0096cc207e45f94e7464a", "fields": {"nom_de_la_commune": "AMARENS", "libell_d_acheminement": "AMARENS", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81009"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f7978b0adc90e47c638a979d8eef29371a17e7", "fields": {"nom_de_la_commune": "AMBRES", "libell_d_acheminement": "AMBRES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81011"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42d114d0095438a76262393b444f3a8db297c110", "fields": {"nom_de_la_commune": "ANDOUQUE", "libell_d_acheminement": "ANDOUQUE", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81013"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36748f334fef0769ea95496343ea3d437f4398b3", "fields": {"code_postal": "01300", "code_commune_insee": "01015", "libell_d_acheminement": "ARBOYS EN BUGEY", "ligne_5": "ST BOIS", "nom_de_la_commune": "ARBOYS EN BUGEY", "coordonnees_gps": [45.7328309975, 5.65715901636]}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c5e26b3de7398afdc77ef21429730b09eb438ed", "fields": {"nom_de_la_commune": "L ABERGEMENT DE VAREY", "libell_d_acheminement": "L ABERGEMENT DE VAREY", "code_postal": "01640", "coordonnees_gps": [46.0337779297, 5.42151732468], "code_commune_insee": "01002"}, "geometry": {"type": "Point", "coordinates": [5.42151732468, 46.0337779297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c364b4a1f5190842074f6ce7627f7ef03d5929b3", "fields": {"nom_de_la_commune": "ASNIERES SUR SAONE", "libell_d_acheminement": "ASNIERES SUR SAONE", "code_postal": "01570", "coordonnees_gps": [46.3545794503, 4.88868114295], "code_commune_insee": "01023"}, "geometry": {"type": "Point", "coordinates": [4.88868114295, 46.3545794503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "341e86663a89886d56ccbef4daf3c535e6d23f30", "fields": {"nom_de_la_commune": "BELLIGNAT", "libell_d_acheminement": "BELLIGNAT", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01031"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4860e3cbb071e1fe15552849096589dc532d9de3", "fields": {"nom_de_la_commune": "ARMIX", "libell_d_acheminement": "ARMIX", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01019"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f5b46ad3935f0bd5d4e1aa4ce6e6ccee62d765", "fields": {"code_postal": "07140", "code_commune_insee": "07284", "libell_d_acheminement": "ST PIERRE ST JEAN", "ligne_5": "ST JEAN DE POURCHARESSE", "nom_de_la_commune": "ST PIERRE ST JEAN", "coordonnees_gps": [44.4499905153, 4.07415395181]}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29b4b5eb64dab619d6d6bc6c7bed39eb8c083f88", "fields": {"nom_de_la_commune": "ST MAURICE EN CHALENCON", "libell_d_acheminement": "ST MAURICE EN CHALENCON", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07274"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4180ef35b792749d254b50cdf3ba9a68a53b0e97", "fields": {"nom_de_la_commune": "ST PIERRE LA ROCHE", "libell_d_acheminement": "ST PIERRE LA ROCHE", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07283"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c412e698263eaa791daa92d9bdec20eccb5ede31", "fields": {"nom_de_la_commune": "ST PAUL LE JEUNE", "libell_d_acheminement": "ST PAUL LE JEUNE", "code_postal": "07460", "coordonnees_gps": [44.343480855, 4.20658690309], "code_commune_insee": "07280"}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c09575fded2bd5f651ba8367e86be6cb9c38cd28", "fields": {"nom_de_la_commune": "ST SYLVESTRE", "libell_d_acheminement": "ST SYLVESTRE", "code_postal": "07440", "coordonnees_gps": [44.944716427, 4.72650218637], "code_commune_insee": "07297"}, "geometry": {"type": "Point", "coordinates": [4.72650218637, 44.944716427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d88e5099946156ee61b86297e2c9ab0798d330c2", "fields": {"nom_de_la_commune": "ST MELANY", "libell_d_acheminement": "ST MELANY", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07275"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "192572bcb8fd1abc4241ae28fa4d40cadca8a8ae", "fields": {"nom_de_la_commune": "THORRENC", "libell_d_acheminement": "THORRENC", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07321"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a16c5a71352d9d1feefe1e4e71ab3bc63fdf51", "fields": {"nom_de_la_commune": "SECHERAS", "libell_d_acheminement": "SECHERAS", "code_postal": "07610", "coordonnees_gps": [45.1098494748, 4.78303209156], "code_commune_insee": "07312"}, "geometry": {"type": "Point", "coordinates": [4.78303209156, 45.1098494748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37986330ce68d432fe0cb0923093d2123eac3cc9", "fields": {"nom_de_la_commune": "ST REMEZE", "libell_d_acheminement": "ST REMEZE", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07291"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a543a225948989fc8da3bb053d9f1a354f9f5e1", "fields": {"nom_de_la_commune": "SILHAC", "libell_d_acheminement": "SILHAC", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07314"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d9479e3ea34055392e6d4151c8daff6d0d7899", "fields": {"code_postal": "07140", "code_commune_insee": "07334", "libell_d_acheminement": "LES VANS", "ligne_5": "NAVES", "nom_de_la_commune": "LES VANS", "coordonnees_gps": [44.4499905153, 4.07415395181]}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9f4f576f529c993a640fad45c8b36fed78f9e3a", "fields": {"nom_de_la_commune": "LES GRANDES ARMOISES", "libell_d_acheminement": "LES GRANDES ARMOISES", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08019"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e5e61fadb0077ee7af79bb0f1fc7ed294be709d", "fields": {"nom_de_la_commune": "LA VOULTE SUR RHONE", "libell_d_acheminement": "LA VOULTE SUR RHONE", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07349"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eae38b6b2f351f12c6c1c337f6183c6103285210", "fields": {"nom_de_la_commune": "VILLENEUVE DE BERG", "libell_d_acheminement": "VILLENEUVE DE BERG", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07341"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c813f7248d7c04dd13be2d2d5331627fc5030a0a", "fields": {"nom_de_la_commune": "TOURNON SUR RHONE", "libell_d_acheminement": "TOURNON SUR RHONE", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07324"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beec82eebf5b68b2aa0acb770e53d4652d35b69e", "fields": {"nom_de_la_commune": "VALVIGNERES", "libell_d_acheminement": "VALVIGNERES", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07332"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6370cf36c3cab09a2fc43ad666f4921841bde73f", "fields": {"nom_de_la_commune": "ARNICOURT", "libell_d_acheminement": "ARNICOURT", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08021"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c17b2fc3c624addb9b696e1e5cfe24150a74c46", "fields": {"nom_de_la_commune": "VINZIEUX", "libell_d_acheminement": "VINZIEUX", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07344"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf4c9ee35b490fa9fc864976dd6d66a9ac365cc7", "fields": {"nom_de_la_commune": "AOUSTE", "libell_d_acheminement": "AOUSTE", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08016"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21d26daab12c7b9672cffeac5caa246e9cd1bdb9", "fields": {"nom_de_la_commune": "VAGNAS", "libell_d_acheminement": "VAGNAS", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07328"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d36ac1ec9407217adfe731f21ccc57f5b91d732", "fields": {"code_postal": "07140", "code_commune_insee": "07147", "libell_d_acheminement": "MALARCE SUR LA THINES", "ligne_5": "THINES", "nom_de_la_commune": "MALARCE SUR LA THINES", "coordonnees_gps": [44.4499905153, 4.07415395181]}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39ad6e7a1bbd33fca4fed99b9677e2d0fbe227c", "fields": {"nom_de_la_commune": "LACHAPELLE SOUS AUBENAS", "libell_d_acheminement": "LACHAPELLE SOUS AUBENAS", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07122"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b164b1b959cda45888a0f5bc4821b9db1192b4", "fields": {"nom_de_la_commune": "LOUBARESSE", "libell_d_acheminement": "LOUBARESSE", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07144"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8332d54ac5df497b0785365da22aca26b4114b6", "fields": {"nom_de_la_commune": "MEZILHAC", "libell_d_acheminement": "MEZILHAC", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07158"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c7d527e74cfddb335cc516a1aa91d6f309eed2", "fields": {"nom_de_la_commune": "PEAUGRES", "libell_d_acheminement": "PEAUGRES", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07172"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72c80a4ff9442543cadad1bf86666e0078db674", "fields": {"nom_de_la_commune": "ROSIERES", "libell_d_acheminement": "ROSIERES", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07199"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142e70ce9b89859e23ca12e378672369d9be4c33", "fields": {"nom_de_la_commune": "PEYRAUD", "libell_d_acheminement": "PEYRAUD", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07174"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fcd8e217b1cc5f1eaf659aeb87a9295f298e95e", "fields": {"nom_de_la_commune": "LARNAS", "libell_d_acheminement": "LARNAS", "code_postal": "07220", "coordonnees_gps": [44.4661661995, 4.63717966246], "code_commune_insee": "07133"}, "geometry": {"type": "Point", "coordinates": [4.63717966246, 44.4661661995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f56cbaa71ac4318a21363dd66516eda68181b6dd", "fields": {"nom_de_la_commune": "MAUVES", "libell_d_acheminement": "MAUVES", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07152"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3448f22b273ce73a4d978b3d3cae20f9afcc4faa", "fields": {"nom_de_la_commune": "PAYZAC", "libell_d_acheminement": "PAYZAC", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07171"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f0e061ae9dde726b1218bacb5ba2905189c22f", "fields": {"code_postal": "08220", "code_commune_insee": "08113", "libell_d_acheminement": "CHAUMONT PORCIEN", "ligne_5": "LOGNY LES CHAUMONT", "nom_de_la_commune": "CHAUMONT PORCIEN", "coordonnees_gps": [49.6447010155, 4.20764091673]}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4efcc60b9b04735b96d4aecda5dcc398a01bed", "fields": {"nom_de_la_commune": "CHARLEVILLE MEZIERES", "libell_d_acheminement": "CHARLEVILLE MEZIERES", "code_postal": "08000", "coordonnees_gps": [49.7589748085, 4.71308364849], "code_commune_insee": "08105"}, "geometry": {"type": "Point", "coordinates": [4.71308364849, 49.7589748085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ed14d2d554456708397f2f97e659a1ce57adc64", "fields": {"nom_de_la_commune": "DOUMELY BEGNY", "libell_d_acheminement": "DOUMELY BEGNY", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08143"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28c04354c5a5731f403d9914e6fe8cbe0d98e385", "fields": {"nom_de_la_commune": "LA CHAPELLE", "libell_d_acheminement": "LA CHAPELLE", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08101"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a5a29f8b69bf36bc1bee11d5515da8573c7397b", "fields": {"nom_de_la_commune": "CONTREUVE", "libell_d_acheminement": "CONTREUVE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08130"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa44fa05fb26cdf64f42d8d21c9a1019b50392c", "fields": {"nom_de_la_commune": "CHARBOGNE", "libell_d_acheminement": "CHARBOGNE", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08103"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c93350ff441e0fe54924f9962d1e8841cf78a7b5", "fields": {"nom_de_la_commune": "DEVILLE", "libell_d_acheminement": "DEVILLE", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08139"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25dbd5a9c16cee31658602a1dd122e68d8a32b89", "fields": {"nom_de_la_commune": "DOMMERY", "libell_d_acheminement": "DOMMERY", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08141"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "296b1bca6db2df6a62a75734efabcb0822b9caac", "fields": {"nom_de_la_commune": "CHOOZ", "libell_d_acheminement": "CHOOZ", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08122"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48afe0933bd005e661f6738d31b12351bb5b0240", "fields": {"nom_de_la_commune": "DOUX", "libell_d_acheminement": "DOUX", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08144"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0f6111f3e728a4933e122c1d958836e54bd6e7", "fields": {"nom_de_la_commune": "BELLEVILLE ET CHATILLON SUR BAR", "libell_d_acheminement": "BELLEVILLE ET CHATILLON SUR BAR", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08057"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7118ebd8de2489e2b7759a82793c42fdcabfec1f", "fields": {"nom_de_la_commune": "BANOGNE RECOUVRANCE", "libell_d_acheminement": "BANOGNE RECOUVRANCE", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08046"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "949da258c1519ff2bd91bc68a6fae26e97aee879", "fields": {"nom_de_la_commune": "BALAIVES ET BUTZ", "libell_d_acheminement": "BALAIVES ET BUTZ", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08042"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ebb3c0f1da79c5f239404373340cd06f5babf28", "fields": {"nom_de_la_commune": "BAR LES BUZANCY", "libell_d_acheminement": "BAR LES BUZANCY", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08049"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "138b86443e7062bb229c454206ee0f47f518faa4", "fields": {"nom_de_la_commune": "BAZEILLES", "libell_d_acheminement": "BAZEILLES", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08053"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e83dbf7d5b62c2c0155afe8cd6b079f9bdee79", "fields": {"nom_de_la_commune": "AUSSONCE", "libell_d_acheminement": "AUSSONCE", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08032"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59e2925718ff67434aa48d00db90cc15e7c1fd84", "fields": {"nom_de_la_commune": "AVANCON", "libell_d_acheminement": "AVANCON", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08038"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "235a912054aae94484701f1e8ac3b33c37a95b17", "fields": {"nom_de_la_commune": "BELVAL", "libell_d_acheminement": "BELVAL", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08058"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "051b1e2ea8d36cf0c4fc53e4359fedf14d8186f8", "fields": {"nom_de_la_commune": "ASFELD", "libell_d_acheminement": "ASFELD", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08024"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aadc49a748172dae4f224439068ace7605a29af2", "fields": {"nom_de_la_commune": "AURE", "libell_d_acheminement": "AURE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08031"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56890fc85fcb713274d0b92cad2732cb09f578ab", "fields": {"nom_de_la_commune": "BELVAL BOIS DES DAMES", "libell_d_acheminement": "BELVAL BOIS DES DAMES", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08059"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7e379f1e0ef79716ed870cfe05ff30561bebdeb", "fields": {"nom_de_la_commune": "BOSSUS LES RUMIGNY", "libell_d_acheminement": "BOSSUS LES RUMIGNY", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08073"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a25a7d5c94b0a33a5d9c02359757d779f526328b", "fields": {"nom_de_la_commune": "BLANCHEFOSSE ET BAY", "libell_d_acheminement": "BLANCHEFOSSE ET BAY", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08069"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d65cfea6fa744124c92144082c19ece65739b3", "fields": {"nom_de_la_commune": "BRIEULLES SUR BAR", "libell_d_acheminement": "BRIEULLES SUR BAR", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08085"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d75ae9bf4dcf07b0d12031940bd0981a5025e7e9", "fields": {"nom_de_la_commune": "BOUVELLEMONT", "libell_d_acheminement": "BOUVELLEMONT", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08080"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a0a950878c4dc2fdf86a1e620cdffb8033e548", "fields": {"nom_de_la_commune": "LA BERLIERE", "libell_d_acheminement": "LA BERLIERE", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08061"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e501e9fb79f6b10a0f57201d77c66df0f9dd56b6", "fields": {"nom_de_la_commune": "BRIQUENAY", "libell_d_acheminement": "BRIQUENAY", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08086"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa80ce411a14b15c044e31249ed50ebfbe5b4a55", "fields": {"nom_de_la_commune": "BIEVRES", "libell_d_acheminement": "BIEVRES", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08065"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791b521f44a793c1e0ad644733df82598c649ead", "fields": {"nom_de_la_commune": "BROGNON", "libell_d_acheminement": "BROGNON", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08087"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f072bbc4ceba45709ddc3ff3a46fcc7b9a758218", "fields": {"nom_de_la_commune": "CAUROY", "libell_d_acheminement": "CAUROY", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08092"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdec067550bba46a6757c36d462e17c59f6b38b5", "fields": {"nom_de_la_commune": "FOISCHES", "libell_d_acheminement": "FOISCHES", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08175"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4184b069a90c0c01d2e51fe628437216a3f0009e", "fields": {"nom_de_la_commune": "FALAISE", "libell_d_acheminement": "FALAISE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08164"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bceda5b551c970b92df9ff1ad67ea00e4143a0bd", "fields": {"nom_de_la_commune": "FOSSE", "libell_d_acheminement": "FOSSE", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08176"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f56f5ef702cc8a6679ac1e5fe3d2ee659026eb7", "fields": {"nom_de_la_commune": "FEPIN", "libell_d_acheminement": "FEPIN", "code_postal": "08170", "coordonnees_gps": [49.9974542935, 4.7285296063], "code_commune_insee": "08166"}, "geometry": {"type": "Point", "coordinates": [4.7285296063, 49.9974542935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a56f457ba6755d107d1d54bb15c7b30bb91c07", "fields": {"code_postal": "07320", "code_commune_insee": "07204", "libell_d_acheminement": "ST AGREVE", "ligne_5": "LE POUZAT", "nom_de_la_commune": "ST AGREVE", "coordonnees_gps": [45.0373045758, 4.40809753225]}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd3d042e210722c01319272245d79ed39bbf7fe", "fields": {"nom_de_la_commune": "STE MARGUERITE LAFIGERE", "libell_d_acheminement": "STE MARGUERITE LAFIGERE", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07266"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e03c630847d2dc312a8354f9fbeeaf00b2137cd", "fields": {"nom_de_la_commune": "ST ETIENNE DE LUGDARES", "libell_d_acheminement": "ST ETIENNE DE LUGDARES", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07232"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8599a0042b853817bc46a68e1e3700a6676bbb05", "fields": {"nom_de_la_commune": "ST JULIEN EN ST ALBAN", "libell_d_acheminement": "ST JULIEN EN ST ALBAN", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07255"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79cc7c1675af91a4751aaad17b0552708bb4186f", "fields": {"nom_de_la_commune": "ST MARTIN DE VALAMAS", "libell_d_acheminement": "ST MARTIN DE VALAMAS", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07269"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7771085699e162fc659e4a717f8a4432fb8b85d8", "fields": {"nom_de_la_commune": "ST GINEIS EN COIRON", "libell_d_acheminement": "ST GINEIS EN COIRON", "code_postal": "07580", "coordonnees_gps": [44.6199071388, 4.55702885367], "code_commune_insee": "07242"}, "geometry": {"type": "Point", "coordinates": [4.55702885367, 44.6199071388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f58607f96f9bec4bafefc16386b2782f06425ff", "fields": {"nom_de_la_commune": "ST JOSEPH DES BANCS", "libell_d_acheminement": "ST JOSEPH DES BANCS", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07251"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9db88259e107ee4152708b29b7042ab603692691", "fields": {"nom_de_la_commune": "ST JEURE D ANDAURE", "libell_d_acheminement": "ST JEURE D ANDAURE", "code_postal": "07320", "coordonnees_gps": [45.0373045758, 4.40809753225], "code_commune_insee": "07249"}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a3c327f7d574afc240d25c0711fd4b6c4b5285f", "fields": {"nom_de_la_commune": "ST GENEST LACHAMP", "libell_d_acheminement": "ST GENEST LACHAMP", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07239"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77290a8d3c7c3ce711269cf92e7ca3431edbe5bb", "fields": {"nom_de_la_commune": "ST GERMAIN", "libell_d_acheminement": "ST GERMAIN", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07241"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56df3a961bbcaab64184928d74f95949a08497c6", "fields": {"nom_de_la_commune": "COLOMBIER LE VIEUX", "libell_d_acheminement": "COLOMBIER LE VIEUX", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07069"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58be8492d3c2114d0d155244c5366b0ed61956f7", "fields": {"nom_de_la_commune": "COLOMBIER LE JEUNE", "libell_d_acheminement": "COLOMBIER LE JEUNE", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07068"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "016313222be805b667bf8c64a3135d073d6780eb", "fields": {"nom_de_la_commune": "PARDAILLAN", "libell_d_acheminement": "PARDAILLAN", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47199"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "587ac93d62591650ccb396fb4cd0bfd6ccfeddb6", "fields": {"nom_de_la_commune": "PINDERES", "libell_d_acheminement": "PINDERES", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47205"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d86c8b7ae9fac4310cdd897273fefc8e43a24c", "fields": {"nom_de_la_commune": "POMPIEY", "libell_d_acheminement": "POMPIEY", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47207"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f65ddd7bfdb94e22c3421c0108d3013cbff31a", "fields": {"nom_de_la_commune": "PONT DU CASSE", "libell_d_acheminement": "PONT DU CASSE", "code_postal": "47480", "coordonnees_gps": [44.2442520518, 0.685511945238], "code_commune_insee": "47209"}, "geometry": {"type": "Point", "coordinates": [0.685511945238, 44.2442520518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0449c3980cc0efdaee418fb5455ff028c5a3e7d7", "fields": {"nom_de_la_commune": "PORT STE MARIE", "libell_d_acheminement": "PORT STE MARIE", "code_postal": "47130", "coordonnees_gps": [44.2354000817, 0.42312133119], "code_commune_insee": "47210"}, "geometry": {"type": "Point", "coordinates": [0.42312133119, 44.2354000817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e115cf420bc83f88324d76e7dcebc3bd09b22013", "fields": {"nom_de_la_commune": "POUSSIGNAC", "libell_d_acheminement": "POUSSIGNAC", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47212"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c1024d892c9cc2e0111e837aeda1e07853ee82", "fields": {"nom_de_la_commune": "PUYMICLAN", "libell_d_acheminement": "PUYMICLAN", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47216"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5628ba3c0323fe003dd11cad8764774c0d08e76", "fields": {"nom_de_la_commune": "ROMESTAING", "libell_d_acheminement": "ROMESTAING", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47224"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce49ea20b05351a06cf7efffa433a6347f64300", "fields": {"nom_de_la_commune": "STE COLOMBE DE DURAS", "libell_d_acheminement": "STE COLOMBE DE DURAS", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47236"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "166a95523d1a9592a6db4ea1b877e8a2c8073e80", "fields": {"nom_de_la_commune": "ST JEAN DE DURAS", "libell_d_acheminement": "ST JEAN DE DURAS", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47247"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "667d251338d0f3b56ad9fe2fd6092b100249f236", "fields": {"nom_de_la_commune": "STE MAURE DE PEYRIAC", "libell_d_acheminement": "STE MAURE DE PEYRIAC", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47258"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12809d6ee021daab5b81068b9321e23fe9255d6f", "fields": {"nom_de_la_commune": "ST PIERRE SUR DROPT", "libell_d_acheminement": "ST PIERRE SUR DROPT", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47271"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c60d113a2cacd63bd38aa0424c0058dbec3a84a", "fields": {"nom_de_la_commune": "ST SERNIN", "libell_d_acheminement": "ST SERNIN", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47278"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d241c0ef15e36958da0abc06aa6980f3c48b697d", "fields": {"nom_de_la_commune": "ST VITE", "libell_d_acheminement": "ST VITE", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47283"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480f13021d0848740e3f4fc865eafee4290d7111", "fields": {"nom_de_la_commune": "SAUVETERRE LA LEMANCE", "libell_d_acheminement": "SAUVETERRE LA LEMANCE", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47292"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d06cb71de4077ca6e49ab9bf6130d8cfbb8148", "fields": {"code_postal": "47170", "code_commune_insee": "47302", "libell_d_acheminement": "SOS", "ligne_5": "MEYLAN", "nom_de_la_commune": "SOS", "coordonnees_gps": [44.0578455097, 0.199141887722]}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b78fff14938ce9b262ea391e1bbfcf6efc09598a", "fields": {"nom_de_la_commune": "TONNEINS", "libell_d_acheminement": "TONNEINS", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47310"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aaa869c3ad4842480230e4490eeb6af912261bc", "fields": {"nom_de_la_commune": "TREMONS", "libell_d_acheminement": "TREMONS", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47314"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a94d63eeaaf20144536d8994b5dd69cf54ec8ea", "fields": {"nom_de_la_commune": "VERTEUIL D AGENAIS", "libell_d_acheminement": "VERTEUIL D AGENAIS", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47317"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7f1166bb447f21e7b8bb7716a1600f60b6c2290", "fields": {"nom_de_la_commune": "VILLEBRAMAR", "libell_d_acheminement": "VILLEBRAMAR", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47319"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fede5fa8d063d482125ca8fdaf1f434c97c44def", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47328"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95e2b1b1a5ee623e01834185a524219412ae48a", "fields": {"nom_de_la_commune": "ALTIER", "libell_d_acheminement": "ALTIER", "code_postal": "48800", "coordonnees_gps": [44.4744037088, 3.906783441], "code_commune_insee": "48004"}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b969f40a390cc21728cab86a91590afc47bfda4", "fields": {"nom_de_la_commune": "ANTRENAS", "libell_d_acheminement": "ANTRENAS", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48005"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f2b57ee81c588bce1c8a6162d01f5fcdd5e6bc", "fields": {"nom_de_la_commune": "AUMONT AUBRAC", "libell_d_acheminement": "AUMONT AUBRAC", "code_postal": "48130", "coordonnees_gps": [44.6979669437, 3.26876016092], "code_commune_insee": "48009"}, "geometry": {"type": "Point", "coordinates": [3.26876016092, 44.6979669437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b4ffaa88d5f21e152c73ffb0490230e8c7e8b39", "fields": {"nom_de_la_commune": "LES MONTS VERTS", "libell_d_acheminement": "LES MONTS VERTS", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48012"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b30a34a5561f494174862583d6c5dd890415784", "fields": {"code_postal": "48200", "code_commune_insee": "48012", "libell_d_acheminement": "LES MONTS VERTS", "ligne_5": "ARCOMIE", "nom_de_la_commune": "LES MONTS VERTS", "coordonnees_gps": [44.8172105635, 3.26915609563]}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b94ae79e1ece58097f1e748e7a96f2f2b590ae16", "fields": {"nom_de_la_commune": "BALSIEGES", "libell_d_acheminement": "BALSIEGES", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48016"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37deaaf7ffbe71e136f965076d7a2ccf7cbc1ac9", "fields": {"nom_de_la_commune": "BARJAC", "libell_d_acheminement": "BARJAC", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48018"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c0f6bece135399be2aa8af9378fe8c612171cea", "fields": {"nom_de_la_commune": "BARRE DES CEVENNES", "libell_d_acheminement": "BARRE DES CEVENNES", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48019"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937000cf680d7da04d41a5eaf5dfe99af265505a", "fields": {"nom_de_la_commune": "LA BASTIDE PUYLAURENT", "libell_d_acheminement": "LA BASTIDE PUYLAURENT", "code_postal": "48250", "coordonnees_gps": [44.58724186, 3.85437402799], "code_commune_insee": "48021"}, "geometry": {"type": "Point", "coordinates": [3.85437402799, 44.58724186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57c241120801ae2f44533bf320adb0f9a7116b48", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48031"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adbb58aa76c0395e6d1526ed2c0eaf57280a5a1", "fields": {"code_postal": "48500", "code_commune_insee": "48034", "libell_d_acheminement": "LA CANOURGUE", "ligne_5": "AUXILLAC", "nom_de_la_commune": "LA CANOURGUE", "coordonnees_gps": [44.3691464127, 3.23194733105]}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "424bd88d95fb66ba49d078464d4ee251d0a83d36", "fields": {"nom_de_la_commune": "CHAMBON LE CHATEAU", "libell_d_acheminement": "CHAMBON LE CHATEAU", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48038"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c16699a4b66566708045b1a95c82ccd980cdda21", "fields": {"code_postal": "48230", "code_commune_insee": "48039", "libell_d_acheminement": "CHANAC", "ligne_5": "LE VILLARD", "nom_de_la_commune": "CHANAC", "coordonnees_gps": [44.4596098281, 3.3408753793]}, "geometry": {"type": "Point", "coordinates": [3.3408753793, 44.4596098281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643e364bb1c34e94526afed4b3abf7bce892150a", "fields": {"nom_de_la_commune": "CHASTANIER", "libell_d_acheminement": "CHASTANIER", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48041"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbd039044c3e883495090aef6a8923babe6b9b72", "fields": {"nom_de_la_commune": "CHAUDEYRAC", "libell_d_acheminement": "CHAUDEYRAC", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48045"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eedfdca4fb109b9741d718f1ab2adb0b989ebb51", "fields": {"nom_de_la_commune": "CHAULHAC", "libell_d_acheminement": "CHAULHAC", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48046"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f7d7007659ba3319d7ac5993be4c2f3980b565", "fields": {"nom_de_la_commune": "ESCLANEDES", "libell_d_acheminement": "ESCLANEDES", "code_postal": "48230", "coordonnees_gps": [44.4596098281, 3.3408753793], "code_commune_insee": "48056"}, "geometry": {"type": "Point", "coordinates": [3.3408753793, 44.4596098281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ac04e0499090f45449995f4460834296e451f8", "fields": {"nom_de_la_commune": "LA FAGE MONTIVERNOUX", "libell_d_acheminement": "LA FAGE MONTIVERNOUX", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48058"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bc0d88230cdc94fc3a4c3e729f720d729f9f97e", "fields": {"nom_de_la_commune": "LA FAGE ST JULIEN", "libell_d_acheminement": "LA FAGE ST JULIEN", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48059"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4759ada334e82464f997abee7d8c4126731c6279", "fields": {"nom_de_la_commune": "FAU DE PEYRE", "libell_d_acheminement": "FAU DE PEYRE", "code_postal": "48130", "coordonnees_gps": [44.6979669437, 3.26876016092], "code_commune_insee": "48060"}, "geometry": {"type": "Point", "coordinates": [3.26876016092, 44.6979669437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11e9c58d8d4947e046a6f78d2363624efc38abca", "fields": {"nom_de_la_commune": "FLORAC TROIS RIVIERES", "libell_d_acheminement": "FLORAC TROIS RIVIERES", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48061"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06bc04e68aee98decb8b143e60775ee5096ace8", "fields": {"nom_de_la_commune": "FONTANS", "libell_d_acheminement": "FONTANS", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48063"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e653e7a1ecba9699b72ff27a9fb0b345bef24279", "fields": {"nom_de_la_commune": "JAVOLS", "libell_d_acheminement": "JAVOLS", "code_postal": "48130", "coordonnees_gps": [44.6979669437, 3.26876016092], "code_commune_insee": "48076"}, "geometry": {"type": "Point", "coordinates": [3.26876016092, 44.6979669437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f22f27c0c9d2a83fe01394d86183506ad95f55f4", "fields": {"nom_de_la_commune": "LAJO", "libell_d_acheminement": "LAJO", "code_postal": "48120", "coordonnees_gps": [44.8002915136, 3.42996631483], "code_commune_insee": "48079"}, "geometry": {"type": "Point", "coordinates": [3.42996631483, 44.8002915136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34004bf1d7765756b6024e8419b15b004d8c2588", "fields": {"nom_de_la_commune": "LE MALZIEU VILLE", "libell_d_acheminement": "LE MALZIEU VILLE", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48090"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc3a0c1c6757230fd2981bae99e47780066fd31e", "fields": {"nom_de_la_commune": "LE MASSEGROS", "libell_d_acheminement": "LE MASSEGROS", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48094"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c115afd52d12a6493c4efe5a3d82deb6595db16f", "fields": {"nom_de_la_commune": "MOLEZON", "libell_d_acheminement": "MOLEZON", "code_postal": "48110", "coordonnees_gps": [44.1928198213, 3.72930713182], "code_commune_insee": "48098"}, "geometry": {"type": "Point", "coordinates": [3.72930713182, 44.1928198213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d8a877d50762565babe3eddd66ac288ade4b2e", "fields": {"nom_de_la_commune": "MONTBRUN", "libell_d_acheminement": "MONTBRUN", "code_postal": "48210", "coordonnees_gps": [44.3288695962, 3.39194126982], "code_commune_insee": "48101"}, "geometry": {"type": "Point", "coordinates": [3.39194126982, 44.3288695962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13c6d0ccc593c25889bf7bff4b13b0ba0b65b75", "fields": {"code_postal": "48300", "code_commune_insee": "48105", "libell_d_acheminement": "NAUSSAC FONTANES", "ligne_5": "FONTANES", "nom_de_la_commune": "NAUSSAC FONTANES", "coordonnees_gps": [44.6949172347, 3.79841314883]}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e698f71814f6a8fda19e320b47d8c27d6e803272", "fields": {"nom_de_la_commune": "NOALHAC", "libell_d_acheminement": "NOALHAC", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48106"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06c5b35b26b645194550558850a77e9ea198a04a", "fields": {"nom_de_la_commune": "LA PANOUSE", "libell_d_acheminement": "LA PANOUSE", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48108"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f19dd6538c7ad828e6216ccb4240b0d4f8b14a1", "fields": {"nom_de_la_commune": "LE RECOUX", "libell_d_acheminement": "LE RECOUX", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48125"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896a524e82c2dc9c51e8177e0b4f642194e06ec7", "fields": {"nom_de_la_commune": "RIEUTORT DE RANDON", "libell_d_acheminement": "RIEUTORT DE RANDON", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48127"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47e54717e1bba7bda0c6953bdeec9356becfb3c", "fields": {"nom_de_la_commune": "ST AMANS", "libell_d_acheminement": "ST AMANS", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48133"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e184851d739ccd5b5a940ed6fbb31ef286212f", "fields": {"nom_de_la_commune": "ST DENIS EN MARGERIDE", "libell_d_acheminement": "ST DENIS EN MARGERIDE", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48145"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d60cb323c3ddd9a664082bc37a965c9f6a9cf93e", "fields": {"nom_de_la_commune": "STE ENIMIE", "libell_d_acheminement": "STE ENIMIE", "code_postal": "48210", "coordonnees_gps": [44.3288695962, 3.39194126982], "code_commune_insee": "48146"}, "geometry": {"type": "Point", "coordinates": [3.39194126982, 44.3288695962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0921e478c57d686f73d06abbf5d4bfc35d4a7b6f", "fields": {"nom_de_la_commune": "ST GEORGES DE LEVEJAC", "libell_d_acheminement": "ST GEORGES DE LEVEJAC", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48154"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9689532ee48abcffe9842c968511d607e9be12d7", "fields": {"nom_de_la_commune": "ST GERMAIN DU TEIL", "libell_d_acheminement": "ST GERMAIN DU TEIL", "code_postal": "48340", "coordonnees_gps": [44.5032026768, 3.13108556015], "code_commune_insee": "48156"}, "geometry": {"type": "Point", "coordinates": [3.13108556015, 44.5032026768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f720d2a54ea384b94981e27a6e16b8ef462ba1c4", "fields": {"nom_de_la_commune": "ST JEAN LA FOUILLOUSE", "libell_d_acheminement": "ST JEAN LA FOUILLOUSE", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48160"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46d698549282bde5be8e317da596b407f2c339c2", "fields": {"code_postal": "48400", "code_commune_insee": "48162", "libell_d_acheminement": "CANS ET CEVENNES", "ligne_5": "ST LAURENT DE TREVES", "nom_de_la_commune": "CANS ET CEVENNES", "coordonnees_gps": [44.2653689577, 3.61246385495]}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a177e4d28249ba8359f8fcb691809bfd2b2e7331", "fields": {"nom_de_la_commune": "ST PIERRE LE VIEUX", "libell_d_acheminement": "ST PIERRE LE VIEUX", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48177"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7006abad356eaffed3818a41af00fb947c9217bd", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48184"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b88b872018e38d735d83aa372271bd169bbff79", "fields": {"nom_de_la_commune": "TRELANS", "libell_d_acheminement": "TRELANS", "code_postal": "48340", "coordonnees_gps": [44.5032026768, 3.13108556015], "code_commune_insee": "48192"}, "geometry": {"type": "Point", "coordinates": [3.13108556015, 44.5032026768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ef66f8ccd2c92bca70c98907254e5494f5ce539", "fields": {"nom_de_la_commune": "VEBRON", "libell_d_acheminement": "VEBRON", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48193"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92cb8ea10f7ffee22d8f2150619629f0c6b3bb74", "fields": {"nom_de_la_commune": "VILLEFORT", "libell_d_acheminement": "VILLEFORT", "code_postal": "48800", "coordonnees_gps": [44.4744037088, 3.906783441], "code_commune_insee": "48198"}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f15b2f33c15c84c529886f9046130599ea4225", "fields": {"code_postal": "49700", "code_commune_insee": "49003", "libell_d_acheminement": "TUFFALUN", "ligne_5": "AMBILLOU CHATEAU", "nom_de_la_commune": "TUFFALUN", "coordonnees_gps": [47.2078633163, -0.289977588534]}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bbdd1392a45ae5ead23f1ec53c2b5e6c46932b5", "fields": {"code_postal": "49700", "code_commune_insee": "49003", "libell_d_acheminement": "TUFFALUN", "ligne_5": "NOYANT LA PLAINE", "nom_de_la_commune": "TUFFALUN", "coordonnees_gps": [47.2078633163, -0.289977588534]}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a97c43577585da1c6e04d0e4f8c6b08dae5a1f71", "fields": {"nom_de_la_commune": "AUVERSE", "libell_d_acheminement": "AUVERSE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49013"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeca393dd4eeebdf5fb54486bc8c45e0eea07159", "fields": {"nom_de_la_commune": "AVIRE", "libell_d_acheminement": "AVIRE", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49014"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda7dba3e19bdaaced9df0060263d463fc56dacb", "fields": {"nom_de_la_commune": "AVRILLE", "libell_d_acheminement": "AVRILLE", "code_postal": "49240", "coordonnees_gps": [47.505372368, -0.600668349269], "code_commune_insee": "49015"}, "geometry": {"type": "Point", "coordinates": [-0.600668349269, 47.505372368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9546ff3169b6d187949c9e7e337d48b09e7ecd9f", "fields": {"nom_de_la_commune": "BARACE", "libell_d_acheminement": "BARACE", "code_postal": "49430", "coordonnees_gps": [47.6620353083, -0.269301702185], "code_commune_insee": "49017"}, "geometry": {"type": "Point", "coordinates": [-0.269301702185, 47.6620353083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6184e9393546c48253369dbfec672e5046a91b5f", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "BOCE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28342a7a44d36c7ed8e3d880d49cf09ce3f045c0", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "CLEFS VAL D ANJOU", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969f6beb44cf6043d0d0c76a8f88178dc07cc08b", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "PONTIGNE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25e973565fe0ae5c9b5e6cb4ba312e506c94d53", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "VAULANDRY", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b700d603fd8fe06f91d50fa7aa6dcac8b7d7507", "fields": {"code_postal": "49600", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "ANDREZE", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f47d6639e43f0883ff903c4182dc021824f0b573", "fields": {"code_postal": "49600", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "LA CHAPELLE DU GENET", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6defa8c8729396ebca2d1c8555b13d4862a1dc53", "fields": {"code_postal": "49320", "code_commune_insee": "49029", "libell_d_acheminement": "BLAISON ST SULPICE", "ligne_5": "GOHIER", "nom_de_la_commune": "BLAISON ST SULPICE", "coordonnees_gps": [47.3445084599, -0.383825339756]}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c668b4d0aabd0c6d60296418124bd49ea1d97eb8", "fields": {"nom_de_la_commune": "BLOU", "libell_d_acheminement": "BLOU", "code_postal": "49160", "coordonnees_gps": [47.3844683998, -0.0956251907418], "code_commune_insee": "49030"}, "geometry": {"type": "Point", "coordinates": [-0.0956251907418, 47.3844683998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa86ec5b62a4a0eaaef8e951d39156863111db1", "fields": {"nom_de_la_commune": "BRISSAC QUINCE", "libell_d_acheminement": "BRISSAC QUINCE", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49050"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9e0827f8f0bc19a02dd290b8c345bdb8fbaf3b1", "fields": {"nom_de_la_commune": "CANDE", "libell_d_acheminement": "CANDE", "code_postal": "49440", "coordonnees_gps": [47.5742354301, -1.03309048428], "code_commune_insee": "49054"}, "geometry": {"type": "Point", "coordinates": [-1.03309048428, 47.5742354301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e675cc4d196b4553bec5cd4f08e7932100d57102", "fields": {"nom_de_la_commune": "CANTENAY EPINARD", "libell_d_acheminement": "CANTENAY EPINARD", "code_postal": "49460", "coordonnees_gps": [47.5717691196, -0.578911791129], "code_commune_insee": "49055"}, "geometry": {"type": "Point", "coordinates": [-0.578911791129, 47.5717691196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2f748d15c0b4297e69045dbbf98da1bd4aa281", "fields": {"code_postal": "49270", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "CHAMPTOCEAUX", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796dc3f1fe82f54720fdc6bc7413795fc812da7d", "fields": {"code_postal": "49270", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "ST CHRISTOPHE LA COUPERIE", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e01d91a6609ce2558e6bfb77272fd8f8d0ed20a", "fields": {"code_postal": "49270", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "ST SAUVEUR DE LANDEMONT", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14320e0feb602cbbf9975af07c2fdb4c4a370cdb", "fields": {"code_postal": "49530", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "LIRE", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3221427995, -1.26040062028]}, "geometry": {"type": "Point", "coordinates": [-1.26040062028, 47.3221427995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf8754f7f568b65561991eb58b2e70ec6a8d014b", "fields": {"nom_de_la_commune": "CHANTELOUP LES BOIS", "libell_d_acheminement": "CHANTELOUP LES BOIS", "code_postal": "49340", "coordonnees_gps": [47.1051947253, -0.750368480003], "code_commune_insee": "49070"}, "geometry": {"type": "Point", "coordinates": [-0.750368480003, 47.1051947253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50858702dc2ff93b2163548ddeeee37628eeb9de", "fields": {"nom_de_la_commune": "CHAUDEFONDS SUR LAYON", "libell_d_acheminement": "CHAUDEFONDS SUR LAYON", "code_postal": "49290", "coordonnees_gps": [47.3431019383, -0.806177214608], "code_commune_insee": "49082"}, "geometry": {"type": "Point", "coordinates": [-0.806177214608, 47.3431019383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234ab116035d73102e4d970227341a22586c042f", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "LES GARDES", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1caa99e7dc7e3009297edd50ce9c9b83455067e1", "fields": {"nom_de_la_commune": "CORNILLE LES CAVES", "libell_d_acheminement": "CORNILLE LES CAVES", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49107"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6533b1ebd56237b340942cc048a19b49cec3d2af", "fields": {"nom_de_la_commune": "CORZE", "libell_d_acheminement": "CORZE", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49110"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e55504457e5f237b623307aa2d55b293c5396a", "fields": {"nom_de_la_commune": "LE COUDRAY MACOUARD", "libell_d_acheminement": "LE COUDRAY MACOUARD", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49112"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21adfe4789f2b40fc936a9bb06bfc8a8a194eee7", "fields": {"nom_de_la_commune": "DOUE LA FONTAINE", "libell_d_acheminement": "DOUE LA FONTAINE", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49125"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8553bf9fb68104a62a7b1cf615599aca6e4d42e", "fields": {"nom_de_la_commune": "DURTAL", "libell_d_acheminement": "DURTAL", "code_postal": "49430", "coordonnees_gps": [47.6620353083, -0.269301702185], "code_commune_insee": "49127"}, "geometry": {"type": "Point", "coordinates": [-0.269301702185, 47.6620353083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d58b2ef10745679924e575b773e2cb6b775fe8", "fields": {"nom_de_la_commune": "EPIEDS", "libell_d_acheminement": "EPIEDS", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49131"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987918ac8d43f068d09d9e82bdc07d583be42b17", "fields": {"code_postal": "49250", "code_commune_insee": "49138", "libell_d_acheminement": "LES BOIS D ANJOU", "ligne_5": "BRION", "nom_de_la_commune": "LES BOIS D ANJOU", "coordonnees_gps": [47.4313983805, -0.244193438131]}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6136e1a20e2008d8ecf683ec0c8c3992b83797d", "fields": {"code_postal": "49250", "code_commune_insee": "49138", "libell_d_acheminement": "LES BOIS D ANJOU", "ligne_5": "ST GEORGES DU BOIS", "nom_de_la_commune": "LES BOIS D ANJOU", "coordonnees_gps": [47.4313983805, -0.244193438131]}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb4ac27582ce1fffe9c8060e71ad16ee7d5e007", "fields": {"nom_de_la_commune": "FORGES", "libell_d_acheminement": "FORGES", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49141"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c735c8fe3d49e15806a4366eca4fc30eb2747037", "fields": {"code_postal": "49350", "code_commune_insee": "49149", "libell_d_acheminement": "GENNES VAL DE LOIRE", "ligne_5": "TREVES CUNAULT", "nom_de_la_commune": "GENNES VAL DE LOIRE", "coordonnees_gps": [47.3419898447, -0.231335175854]}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "099e72f2729b7f5a0e721ef6adab6dab3b1a2605", "fields": {"nom_de_la_commune": "CHAUMONT EN VEXIN", "libell_d_acheminement": "CHAUMONT EN VEXIN", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60143"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9a9a7fbff205c5c2c72bd02c80fc70b2a090c9c", "fields": {"nom_de_la_commune": "CHELLES", "libell_d_acheminement": "CHELLES", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60145"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f3c9c884254827262b7adc335aa869d18b0fa7", "fields": {"nom_de_la_commune": "CHOISY AU BAC", "libell_d_acheminement": "CHOISY AU BAC", "code_postal": "60750", "coordonnees_gps": [49.4422563272, 2.89617973742], "code_commune_insee": "60151"}, "geometry": {"type": "Point", "coordinates": [2.89617973742, 49.4422563272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50e82090deed83fa6196954796dbba1b2dfd914f", "fields": {"nom_de_la_commune": "CINQUEUX", "libell_d_acheminement": "CINQUEUX", "code_postal": "60940", "coordonnees_gps": [49.322780883, 2.53673238341], "code_commune_insee": "60154"}, "geometry": {"type": "Point", "coordinates": [2.53673238341, 49.322780883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54954b50ea65bc1a9476138552fd7d2ec84e1fbe", "fields": {"nom_de_la_commune": "CONTEVILLE", "libell_d_acheminement": "CONTEVILLE", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60161"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2759a5162ca21f1b0467d57249b51c857b5b29d", "fields": {"nom_de_la_commune": "CORBEIL CERF", "libell_d_acheminement": "CORBEIL CERF", "code_postal": "60110", "coordonnees_gps": [49.232969162, 2.13061952998], "code_commune_insee": "60162"}, "geometry": {"type": "Point", "coordinates": [2.13061952998, 49.232969162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f278f0c5b3bba580eb3a7d6120def78bb895da", "fields": {"nom_de_la_commune": "CRAMOISY", "libell_d_acheminement": "CRAMOISY", "code_postal": "60660", "coordonnees_gps": [49.2665303301, 2.368580624], "code_commune_insee": "60173"}, "geometry": {"type": "Point", "coordinates": [2.368580624, 49.2665303301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fc2a705fbdfe388dde9d100b76de66f8d1f5e9", "fields": {"nom_de_la_commune": "CRAPEAUMESNIL", "libell_d_acheminement": "CRAPEAUMESNIL", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60174"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff309876e6ce6c4b655f5acca2979db93a767684", "fields": {"nom_de_la_commune": "CRESSONSACQ", "libell_d_acheminement": "CRESSONSACQ", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60177"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4428adf49b79731df70cc5e5942611ea20786dd", "fields": {"nom_de_la_commune": "CRISOLLES", "libell_d_acheminement": "CRISOLLES", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60181"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88232285b67414b2eb9560dbf044744590a08be0", "fields": {"nom_de_la_commune": "CROUTOY", "libell_d_acheminement": "CROUTOY", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60184"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57c19c07e5f69d539462325129c57a987f9da54", "fields": {"nom_de_la_commune": "CUIGY EN BRAY", "libell_d_acheminement": "CUIGY EN BRAY", "code_postal": "60850", "coordonnees_gps": [49.4183231211, 1.8058971314], "code_commune_insee": "60187"}, "geometry": {"type": "Point", "coordinates": [1.8058971314, 49.4183231211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63b48f402c0642581ce084bf77b19daafbe23987", "fields": {"nom_de_la_commune": "CUISE LA MOTTE", "libell_d_acheminement": "CUISE LA MOTTE", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60188"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba86751aa5f5180a8047bdc0bc49d1424ece381b", "fields": {"nom_de_la_commune": "DELINCOURT", "libell_d_acheminement": "DELINCOURT", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60195"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dc01b748ef7e4796c79c4c8690e26a8625c3ecb", "fields": {"nom_de_la_commune": "DIEUDONNE", "libell_d_acheminement": "DIEUDONNE", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60197"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62901256e7407576d1b135f36a0010f08536c028", "fields": {"nom_de_la_commune": "DOMFRONT", "libell_d_acheminement": "DOMFRONT", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60200"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2798d370365f0ec8caa4992ff6778fe41527e072", "fields": {"nom_de_la_commune": "ELENCOURT", "libell_d_acheminement": "ELENCOURT", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60205"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18a16478c61cb348fb6dd524e1e3b0cfdf3332c0", "fields": {"nom_de_la_commune": "ERAGNY SUR EPTE", "libell_d_acheminement": "ERAGNY SUR EPTE", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60211"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92182345cbcc7185c118e3e93a93cc45f23dc7b8", "fields": {"nom_de_la_commune": "ERCUIS", "libell_d_acheminement": "ERCUIS", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60212"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55cd89efda29c099d0fccde454e4cfc8b306fe30", "fields": {"nom_de_la_commune": "ESPAUBOURG", "libell_d_acheminement": "ESPAUBOURG", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60220"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0990159e441b42fb4389d683aaebbd0d34e51ada", "fields": {"nom_de_la_commune": "ESQUENNOY", "libell_d_acheminement": "ESQUENNOY", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60221"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7133a41d88a82a21c1774de27fa6e7b63bc91f3d", "fields": {"nom_de_la_commune": "ETOUY", "libell_d_acheminement": "ETOUY", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60225"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05836a11cfbc27910f532fd3c33f401fecee13ca", "fields": {"nom_de_la_commune": "LE FAYEL", "libell_d_acheminement": "LE FAYEL", "code_postal": "60680", "coordonnees_gps": [49.3855713236, 2.69284171004], "code_commune_insee": "60229"}, "geometry": {"type": "Point", "coordinates": [2.69284171004, 49.3855713236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29e392802b9f57e3e07729da6dc97c9c36ae9e0f", "fields": {"nom_de_la_commune": "FLEURINES", "libell_d_acheminement": "FLEURINES", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60238"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce1beba6007665c83d8120591f9a118c9f89c5f3", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60239"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ebcfe504e93ea75aeb69b123cbb6ceef74d7e08", "fields": {"nom_de_la_commune": "FONTAINE BONNELEAU", "libell_d_acheminement": "FONTAINE BONNELEAU", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60240"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b1cb909a68955d9e9b8641ddde73b3c8ef6e06", "fields": {"nom_de_la_commune": "FOUILLEUSE", "libell_d_acheminement": "FOUILLEUSE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60247"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20785317330a45d2227f27ed8b2d7376eacab70b", "fields": {"nom_de_la_commune": "FOULANGUES", "libell_d_acheminement": "FOULANGUES", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60249"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "735d214b0a1404a3379d68551d594df204f043c1", "fields": {"nom_de_la_commune": "FOUQUENIES", "libell_d_acheminement": "FOUQUENIES", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60250"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30f9af62fed24d8b09643c85a6d51a12c84c5325", "fields": {"nom_de_la_commune": "FRESNIERES", "libell_d_acheminement": "FRESNIERES", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60258"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bef18a30256626bbac2304846941a12d8c7455f", "fields": {"nom_de_la_commune": "LE GALLET", "libell_d_acheminement": "LE GALLET", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60267"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1179c061266ec78a351db1d2decc6d0f9e777c", "fields": {"nom_de_la_commune": "GOURCHELLES", "libell_d_acheminement": "GOURCHELLES", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60280"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c46fec9d3d3c2bbd9a458520e63f88b71b967d", "fields": {"nom_de_la_commune": "GRANDVILLERS AUX BOIS", "libell_d_acheminement": "GRANDVILLERS AUX BOIS", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60285"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "803b2137c2600ae6dafcb2f5014473c4cbeeb236", "fields": {"nom_de_la_commune": "HANNACHES", "libell_d_acheminement": "HANNACHES", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60296"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae485061f7e5ffd4ab17316a5ca54480d12037c3", "fields": {"nom_de_la_commune": "HAUTE EPINE", "libell_d_acheminement": "HAUTE EPINE", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60304"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3377e1a310373baaf12e746b0bca95ff2b5b290d", "fields": {"nom_de_la_commune": "HERCHIES", "libell_d_acheminement": "HERCHIES", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60310"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25be0020907f117021b1d63fe68a518bb8861fc7", "fields": {"nom_de_la_commune": "LA HERELLE", "libell_d_acheminement": "LA HERELLE", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60311"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e8fc660a1c95a6785bc827b0969ed11d5fa2f2c", "fields": {"nom_de_la_commune": "IVORS", "libell_d_acheminement": "IVORS", "code_postal": "60141", "coordonnees_gps": [49.1992405168, 3.02501632067], "code_commune_insee": "60320"}, "geometry": {"type": "Point", "coordinates": [3.02501632067, 49.1992405168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891f5a8847b8ad53ca7b3ca5d81428ae64ef1f31", "fields": {"nom_de_la_commune": "LABOSSE", "libell_d_acheminement": "LABOSSE", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60331"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d987710be808b33684b8038a1b4aeb9d594c8170", "fields": {"nom_de_la_commune": "LAIGNEVILLE", "libell_d_acheminement": "LAIGNEVILLE", "code_postal": "60290", "coordonnees_gps": [49.3208581304, 2.42249383706], "code_commune_insee": "60342"}, "geometry": {"type": "Point", "coordinates": [2.42249383706, 49.3208581304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76083744231af517417ebe31da2a6a5645102e8", "fields": {"nom_de_la_commune": "LANNOY CUILLERE", "libell_d_acheminement": "LANNOY CUILLERE", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60347"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f38923ee2709960620481c8938243b8aa2759d8", "fields": {"nom_de_la_commune": "LARBROYE", "libell_d_acheminement": "LARBROYE", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60348"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1ddd6c29a8ecdf29aa8da7b55475ea9457882cc", "fields": {"nom_de_la_commune": "LATTAINVILLE", "libell_d_acheminement": "LATTAINVILLE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60352"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6905acb734e4786d6b03828cb3cc066d0ce7390", "fields": {"nom_de_la_commune": "LAVERSINES", "libell_d_acheminement": "LAVERSINES", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60355"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "765ddb969517ba4ab58edda2aa9e2bf6e08b0d17", "fields": {"nom_de_la_commune": "LAVILLETERTRE", "libell_d_acheminement": "LAVILLETERTRE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60356"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b943b2448349cd933c73b498617c36e5e8ddfa88", "fields": {"nom_de_la_commune": "LIANCOURT", "libell_d_acheminement": "LIANCOURT", "code_postal": "60140", "coordonnees_gps": [49.3368593358, 2.481661192], "code_commune_insee": "60360"}, "geometry": {"type": "Point", "coordinates": [2.481661192, 49.3368593358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7081f8f408072cfb34169eb034da2922cee05de7", "fields": {"nom_de_la_commune": "LIHUS", "libell_d_acheminement": "LIHUS", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60365"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc5eac40d41635b3ad8f1f3d10f3aafb0ec13120", "fields": {"nom_de_la_commune": "LITZ", "libell_d_acheminement": "LITZ", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60366"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60fbe282be1255fa65c0ee8d5d542e2f62ac03e", "fields": {"nom_de_la_commune": "LUCHY", "libell_d_acheminement": "LUCHY", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60372"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a53e7a361f81d63693706664c8d42c67e5a27e93", "fields": {"nom_de_la_commune": "MACHEMONT", "libell_d_acheminement": "MACHEMONT", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60373"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaed0e7b86c48fe04fdcfbc74f5043f57ff912fd", "fields": {"nom_de_la_commune": "MAREUIL LA MOTTE", "libell_d_acheminement": "MAREUIL LA MOTTE", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60379"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "240818faa841a19f7d95479250b6b68f75d2ecb1", "fields": {"nom_de_la_commune": "MARTINCOURT", "libell_d_acheminement": "MARTINCOURT", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60388"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5386f40496123363665a6448c5656a2544e9eb", "fields": {"nom_de_la_commune": "MELICOCQ", "libell_d_acheminement": "MELICOCQ", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60392"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40e40ed5e01b830bccc55f457923d57c72bf2f0c", "fields": {"nom_de_la_commune": "LE MESNIL EN THELLE", "libell_d_acheminement": "LE MESNIL EN THELLE", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60398"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48ca6905c85727bf959957f341b77bcc9cfa78f", "fields": {"nom_de_la_commune": "LE MESNIL ST FIRMIN", "libell_d_acheminement": "LE MESNIL ST FIRMIN", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60399"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aec728d8d1cba859c8f49fff92922988b3816908", "fields": {"nom_de_la_commune": "MOGNEVILLE", "libell_d_acheminement": "MOGNEVILLE", "code_postal": "60140", "coordonnees_gps": [49.3368593358, 2.481661192], "code_commune_insee": "60404"}, "geometry": {"type": "Point", "coordinates": [2.481661192, 49.3368593358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d114b0ec5b342a7229d72026b4bb6925f5c38641", "fields": {"nom_de_la_commune": "MONCHY ST ELOI", "libell_d_acheminement": "MONCHY ST ELOI", "code_postal": "60290", "coordonnees_gps": [49.3208581304, 2.42249383706], "code_commune_insee": "60409"}, "geometry": {"type": "Point", "coordinates": [2.42249383706, 49.3208581304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88e41c2b6e49d822d2c02743c70fd959cc078dfa", "fields": {"nom_de_la_commune": "MONTGERAIN", "libell_d_acheminement": "MONTGERAIN", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60416"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "783dbadb2b77ef59530ffb15ad3b4bd602c782fb", "fields": {"nom_de_la_commune": "MONTIERS", "libell_d_acheminement": "MONTIERS", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60418"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "548434eb97cb9f731a17e08f9e24569ff44d5ac7", "fields": {"nom_de_la_commune": "MONTREUIL SUR BRECHE", "libell_d_acheminement": "MONTREUIL SUR BRECHE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60425"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "335b6bf486dbba2e0fc6fefb3befe1b771801fb0", "fields": {"nom_de_la_commune": "MOUY", "libell_d_acheminement": "MOUY", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60439"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34b036ac98948686843a9f81e99939b329980b51", "fields": {"nom_de_la_commune": "MOYENNEVILLE", "libell_d_acheminement": "MOYENNEVILLE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60440"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743adf65095e3bb9da9eb19e3e6364ab07327d8c", "fields": {"nom_de_la_commune": "NEUVILLE BOSC", "libell_d_acheminement": "NEUVILLE BOSC", "code_postal": "60119", "coordonnees_gps": [49.2082498189, 2.02680448523], "code_commune_insee": "60452"}, "geometry": {"type": "Point", "coordinates": [2.02680448523, 49.2082498189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4e935e358e1b084c4a70bfa2da96f1adea32d8c", "fields": {"nom_de_la_commune": "LA NEUVILLE GARNIER", "libell_d_acheminement": "LA NEUVILLE GARNIER", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60455"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b286cde10a1abc17cc8a19dc5eb8cbf7ce18f127", "fields": {"nom_de_la_commune": "LA NEUVILLE SUR OUDEUIL", "libell_d_acheminement": "LA NEUVILLE SUR OUDEUIL", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60458"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e4b1b47a9a3c8afc051287bd9101412cb35316", "fields": {"nom_de_la_commune": "NIVILLERS", "libell_d_acheminement": "NIVILLERS", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60461"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a47a792c0335ec1a9239cc7c9361464eb8780c73", "fields": {"nom_de_la_commune": "NOURARD LE FRANC", "libell_d_acheminement": "NOURARD LE FRANC", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60468"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9d326f9593f8df3ead160ddb08e7d206a777e1a", "fields": {"nom_de_la_commune": "OMECOURT", "libell_d_acheminement": "OMECOURT", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60476"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce7fa7b34ab874d04e69c12edaea6acfba19a085", "fields": {"nom_de_la_commune": "ORVILLERS SOREL", "libell_d_acheminement": "ORVILLERS SOREL", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60483"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95f3815238eb35471c3ffa52e8f286bfe156ed1", "fields": {"nom_de_la_commune": "OUDEUIL", "libell_d_acheminement": "OUDEUIL", "code_postal": "60860", "coordonnees_gps": [49.5467911244, 2.02913194071], "code_commune_insee": "60484"}, "geometry": {"type": "Point", "coordinates": [2.02913194071, 49.5467911244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c07b364ef670deddb619b80798e92ae9a0e79e76", "fields": {"nom_de_la_commune": "OURSEL MAISON", "libell_d_acheminement": "OURSEL MAISON", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60485"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01744f77cf2da2c6ddbf245f6da41998ac16d2ca", "fields": {"nom_de_la_commune": "PIERREFONDS", "libell_d_acheminement": "PIERREFONDS", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60491"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39e3d163aef86d3fa3489e8858e2530a3c32a32", "fields": {"nom_de_la_commune": "PISSELEU", "libell_d_acheminement": "PISSELEU", "code_postal": "60860", "coordonnees_gps": [49.5467911244, 2.02913194071], "code_commune_insee": "60493"}, "geometry": {"type": "Point", "coordinates": [2.02913194071, 49.5467911244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14d257e5e1174cada3263558d48d9d7872a5ea3d", "fields": {"nom_de_la_commune": "LE PLOYRON", "libell_d_acheminement": "LE PLOYRON", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60503"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddd7657f9388fb53ec8acdd66d8cad45735cc797", "fields": {"nom_de_la_commune": "PONT STE MAXENCE", "libell_d_acheminement": "PONT STE MAXENCE", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60509"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8733c384207a68ef56eee2e7e6f1b76b90ab7d2d", "fields": {"nom_de_la_commune": "LE QUESNEL AUBRY", "libell_d_acheminement": "LE QUESNEL AUBRY", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60520"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bacea716d16863ec975196eeade06637babd3fd", "fields": {"nom_de_la_commune": "QUINCAMPOIX FLEUZY", "libell_d_acheminement": "QUINCAMPOIX FLEUZY", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60521"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8209f9005ea13ab6e3ae4df0f4d0691fcf48168", "fields": {"nom_de_la_commune": "QUINQUEMPOIX", "libell_d_acheminement": "QUINQUEMPOIX", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60522"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a24b22ce9f69e9dc6338857631ecea9ce6e130f", "fields": {"nom_de_la_commune": "RESSONS SUR MATZ", "libell_d_acheminement": "RESSONS SUR MATZ", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60533"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9642adedf0f323f07b3aea73a6b2c3418330101e", "fields": {"nom_de_la_commune": "ROCQUENCOURT", "libell_d_acheminement": "ROCQUENCOURT", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60544"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc001b1cfc09ae01cff36a2d2ae9e23e40f54d5d", "fields": {"nom_de_la_commune": "ROSOY EN MULTIEN", "libell_d_acheminement": "ROSOY EN MULTIEN", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60548"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf552a8a7e7da441f0533435f1699e9bf2f8243d", "fields": {"nom_de_la_commune": "ROTHOIS", "libell_d_acheminement": "ROTHOIS", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60550"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b649e5ee6ce4b17ed9c9d3217dc9b44ffa2a8ae0", "fields": {"nom_de_la_commune": "ROUSSELOY", "libell_d_acheminement": "ROUSSELOY", "code_postal": "60660", "coordonnees_gps": [49.2665303301, 2.368580624], "code_commune_insee": "60551"}, "geometry": {"type": "Point", "coordinates": [2.368580624, 49.2665303301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942296d84739afcbc7a8ffc5590c8771dba44356", "fields": {"nom_de_la_commune": "ROUVILLERS", "libell_d_acheminement": "ROUVILLERS", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60553"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af6ac81dde63be7067a727fc7e2ce58695e9aad3", "fields": {"nom_de_la_commune": "ROUVRES EN MULTIEN", "libell_d_acheminement": "ROUVRES EN MULTIEN", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60554"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2996c22091a64a869201939419fa26d9414407", "fields": {"nom_de_la_commune": "ROYAUCOURT", "libell_d_acheminement": "ROYAUCOURT", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60556"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1b9ced7e59dc53f8b5512943ed5f16dfc992705", "fields": {"nom_de_la_commune": "SACY LE GRAND", "libell_d_acheminement": "SACY LE GRAND", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60562"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36c79a645a3f0bc47f37fbd4c8641ca29c875c27", "fields": {"nom_de_la_commune": "SACY LE PETIT", "libell_d_acheminement": "SACY LE PETIT", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60563"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a6b37cbd72f4cece1de3c6188c2b67ad327cd35", "fields": {"nom_de_la_commune": "ST ARNOULT", "libell_d_acheminement": "ST ARNOULT", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60566"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f90904fe30fb131a193d757cbd5a0c9372d44588", "fields": {"nom_de_la_commune": "ST CREPIN IBOUVILLERS", "libell_d_acheminement": "ST CREPIN IBOUVILLERS", "code_postal": "60149", "coordonnees_gps": [49.2647702615, 2.06451028486], "code_commune_insee": "60570"}, "geometry": {"type": "Point", "coordinates": [2.06451028486, 49.2647702615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9ad467b35ad223f6164101e297ae7a1c423378", "fields": {"code_postal": "60790", "code_commune_insee": "60570", "libell_d_acheminement": "ST CREPIN IBOUVILLERS", "ligne_5": "MONTHERLANT", "nom_de_la_commune": "ST CREPIN IBOUVILLERS", "coordonnees_gps": [49.2852248633, 2.06991456979]}, "geometry": {"type": "Point", "coordinates": [2.06991456979, 49.2852248633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981b239e194e894cf15303d5a75562755b3d3356", "fields": {"nom_de_la_commune": "SAINTINES", "libell_d_acheminement": "SAINTINES", "code_postal": "60410", "coordonnees_gps": [49.2959209598, 2.7176751302], "code_commune_insee": "60578"}, "geometry": {"type": "Point", "coordinates": [2.7176751302, 49.2959209598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f639c7fde622d748062cf1244066419dffab21b", "fields": {"nom_de_la_commune": "ST LEGER AUX BOIS", "libell_d_acheminement": "ST LEGER AUX BOIS", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60582"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a32412291b420a168ff7f79711153278f00131f6", "fields": {"nom_de_la_commune": "ST LEU D ESSERENT", "libell_d_acheminement": "ST LEU D ESSERENT", "code_postal": "60340", "coordonnees_gps": [49.2256444487, 2.40347710853], "code_commune_insee": "60584"}, "geometry": {"type": "Point", "coordinates": [2.40347710853, 49.2256444487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4028e7a7e5009b835a27eb24a02e0af89627de9", "fields": {"nom_de_la_commune": "ST MARTIN AUX BOIS", "libell_d_acheminement": "ST MARTIN AUX BOIS", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60585"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5785e7660ae36ef409537c49726fec886d2dd2b", "fields": {"nom_de_la_commune": "ST MARTIN LE NOEUD", "libell_d_acheminement": "ST MARTIN LE NOEUD", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60586"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9abc5b31b5c52361d84b6ebbc9e6b5fde962845e", "fields": {"nom_de_la_commune": "ST MARTIN LONGUEAU", "libell_d_acheminement": "ST MARTIN LONGUEAU", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60587"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf924168120270e6a386ec06d8248ca7f9a63a3", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60591"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b30eefe5724a84710c7ee72bb18beec29dfb42f8", "fields": {"nom_de_la_commune": "ST PIERRE ES CHAMPS", "libell_d_acheminement": "ST PIERRE ES CHAMPS", "code_postal": "60850", "coordonnees_gps": [49.4183231211, 1.8058971314], "code_commune_insee": "60592"}, "geometry": {"type": "Point", "coordinates": [1.8058971314, 49.4183231211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "653204cba9cdb553cd97e141e59cab2370ad708e", "fields": {"nom_de_la_commune": "ST VALERY", "libell_d_acheminement": "ST VALERY", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60602"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d5ed853d025d4290697350ce10eb857502ed5a", "fields": {"nom_de_la_commune": "LE PORT", "libell_d_acheminement": "LE PORT", "code_postal": "09320", "coordonnees_gps": [42.8796957466, 1.34694172937], "code_commune_insee": "09231"}, "geometry": {"type": "Point", "coordinates": [1.34694172937, 42.8796957466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930b7ef931b7db8c52df9160ae345fc19cb67335", "fields": {"nom_de_la_commune": "PAMIERS", "libell_d_acheminement": "PAMIERS", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09225"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee804aeff5777bbe678ec799b9902edb5e74b9f", "fields": {"nom_de_la_commune": "REGAT", "libell_d_acheminement": "REGAT", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09243"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4bdf0847483fc9fa05b49139515ba99a702d892", "fields": {"nom_de_la_commune": "LES NOES PRES TROYES", "libell_d_acheminement": "LES NOES PRES TROYES", "code_postal": "10420", "coordonnees_gps": [48.303320135, 4.0410683197], "code_commune_insee": "10265"}, "geometry": {"type": "Point", "coordinates": [4.0410683197, 48.303320135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31484b16c2123d4edabc772329a661adf3e4843f", "fields": {"nom_de_la_commune": "MONTREUIL SUR BARSE", "libell_d_acheminement": "MONTREUIL SUR BARSE", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10255"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f284b5a4dc1210cc41da42de4209c41cbe77a47", "fields": {"nom_de_la_commune": "NOE LES MALLETS", "libell_d_acheminement": "NOE LES MALLETS", "code_postal": "10360", "coordonnees_gps": [48.0604806131, 4.60332287539], "code_commune_insee": "10264"}, "geometry": {"type": "Point", "coordinates": [4.60332287539, 48.0604806131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb485f39ae68909524fd610f484cc69b469e2b6f", "fields": {"nom_de_la_commune": "MESNIL ST LOUP", "libell_d_acheminement": "MESNIL ST LOUP", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10237"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00847d0461d7adb1f561a8d0a137981a48eb837", "fields": {"nom_de_la_commune": "ORMES", "libell_d_acheminement": "ORMES", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10272"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4df7093759dacfab0e53d9e3e8909a889382114", "fields": {"code_postal": "09200", "code_commune_insee": "09209", "libell_d_acheminement": "MONTJOIE EN COUSERANS", "ligne_5": "AUDINAC LES BAINS", "nom_de_la_commune": "MONTJOIE EN COUSERANS", "coordonnees_gps": [42.9618731428, 1.1680404037]}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fe26869ba340052e9dae9c010d1f0f9aa58276b", "fields": {"code_postal": "09400", "code_commune_insee": "09188", "libell_d_acheminement": "MERCUS GARRABET", "ligne_5": "AMPLAING", "nom_de_la_commune": "MERCUS GARRABET", "coordonnees_gps": [42.8458484074, 1.57117119842]}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa142ec2df1bc2ac92aaf11a89db996c289d20ef", "fields": {"nom_de_la_commune": "MONTOULIEU", "libell_d_acheminement": "MONTOULIEU", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09210"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7276a90bbab3c713976c90b8fce480f4a60fab36", "fields": {"nom_de_la_commune": "MOULIN NEUF", "libell_d_acheminement": "MOULIN NEUF", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09213"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe114af15c23ca262d1cc18c93a6adf35acb7106", "fields": {"nom_de_la_commune": "MONTAILLOU", "libell_d_acheminement": "MONTAILLOU", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09197"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea04ceb95f5f79474c00c48ddee05e6b220b4a9", "fields": {"nom_de_la_commune": "MIREPOIX", "libell_d_acheminement": "MIREPOIX", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09194"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e567b96aed9bd3050cc1f0db37775eacd6eafbe", "fields": {"nom_de_la_commune": "MIJANES", "libell_d_acheminement": "MIJANES", "code_postal": "09460", "coordonnees_gps": [42.7000204282, 2.06311416847], "code_commune_insee": "09193"}, "geometry": {"type": "Point", "coordinates": [2.06311416847, 42.7000204282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dea81e903a4a90aa96e5587d4dabb75f57c1ac9", "fields": {"nom_de_la_commune": "ORGIBET", "libell_d_acheminement": "ORGIBET", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09219"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df78429fdde7d5da1a45cd378926a06702dd288", "fields": {"nom_de_la_commune": "PAILHES", "libell_d_acheminement": "PAILHES", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09224"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf272552fe04739d30cff244065c812e09306a74", "fields": {"nom_de_la_commune": "OUST", "libell_d_acheminement": "OUST", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09223"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f47fcd532a09ad42a722d698165562c9137686a6", "fields": {"nom_de_la_commune": "VILLENEUVE DU PAREAGE", "libell_d_acheminement": "VILLENEUVE DU PAREAGE", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09339"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "968009a5fdcc710e3da84a98af432b66dc5a12a2", "fields": {"nom_de_la_commune": "BLAINCOURT SUR AUBE", "libell_d_acheminement": "BLAINCOURT SUR AUBE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10046"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac0ad07afdc19d91e267edc407f088250e1581b", "fields": {"nom_de_la_commune": "AVANT LES RAMERUPT", "libell_d_acheminement": "AVANT LES RAMERUPT", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10021"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "302dbe084090d416250571a7c8af702b6530cfbd", "fields": {"nom_de_la_commune": "BERCENAY LE HAYER", "libell_d_acheminement": "BERCENAY LE HAYER", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10038"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "873702a77b9d9b04f224f0f031f924c5450f01ab", "fields": {"nom_de_la_commune": "BERCENAY EN OTHE", "libell_d_acheminement": "BERCENAY EN OTHE", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10037"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b937c841e4df4851d28aec035d8aa32cdd1e0eb", "fields": {"nom_de_la_commune": "ARCIS SUR AUBE", "libell_d_acheminement": "ARCIS SUR AUBE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10006"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b248c88d870e718a4592b4398c0909eb3a6ec35", "fields": {"nom_de_la_commune": "BETIGNICOURT", "libell_d_acheminement": "BETIGNICOURT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10044"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff00c3ea1ef048ea28d9d55015fe000360805025", "fields": {"nom_de_la_commune": "BOSSANCOURT", "libell_d_acheminement": "BOSSANCOURT", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10050"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a0de72ac3f958d4d7ae166f8a739c6e32b994a4", "fields": {"nom_de_la_commune": "BERULLE", "libell_d_acheminement": "BERULLE", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10042"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca6420c6e53c4f29592b2243a9b6b7d331958954", "fields": {"nom_de_la_commune": "AVREUIL", "libell_d_acheminement": "AVREUIL", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10024"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8cbba3f6c3e023e08f5c330eef790d80a883ac", "fields": {"nom_de_la_commune": "CRENEY PRES TROYES", "libell_d_acheminement": "CRENEY PRES TROYES", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10115"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c981c8040f29cbe68783ff138e7e025ddf4b7da", "fields": {"nom_de_la_commune": "CRESPY LE NEUF", "libell_d_acheminement": "CRESPY LE NEUF", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10117"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0f76abce8e4e7b6856a90f9879833d9bc81b8e7", "fields": {"nom_de_la_commune": "FONTAINE MACON", "libell_d_acheminement": "FONTAINE MACON", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10153"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55fba7461b70e874002c0042789b20c78eeb190d", "fields": {"nom_de_la_commune": "COURTERANGES", "libell_d_acheminement": "COURTERANGES", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10110"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c0a90f7cb4d4335c6c5049aff0f6aab879ffe6", "fields": {"nom_de_la_commune": "CRESANTIGNES", "libell_d_acheminement": "CRESANTIGNES", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10116"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b151b68dc93fb08cbc63ffed674c224b9a72ee", "fields": {"nom_de_la_commune": "LES CROUTES", "libell_d_acheminement": "LES CROUTES", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10118"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40998237229c47f08661d71b07de3f5af7a23725", "fields": {"nom_de_la_commune": "COUVIGNON", "libell_d_acheminement": "COUVIGNON", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10113"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "826d2147c7c92f27f03f2a4e5ad95f9f2a23245c", "fields": {"nom_de_la_commune": "FRALIGNES", "libell_d_acheminement": "FRALIGNES", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10159"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f040e3225c8ac2f052402a22aa2d2b196fd38100", "fields": {"nom_de_la_commune": "FONTETTE", "libell_d_acheminement": "FONTETTE", "code_postal": "10360", "coordonnees_gps": [48.0604806131, 4.60332287539], "code_commune_insee": "10155"}, "geometry": {"type": "Point", "coordinates": [4.60332287539, 48.0604806131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ddc5476122e8cac4bf325e47886a6f4bd3c030e", "fields": {"nom_de_la_commune": "FULIGNY", "libell_d_acheminement": "FULIGNY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10163"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bb53ad78959c51f2e68535cb6d2e8679074e4a3", "fields": {"nom_de_la_commune": "COURCELLES SUR VOIRE", "libell_d_acheminement": "COURCELLES SUR VOIRE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10105"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e85767db61842f39adbc927b1057921f9e9860d6", "fields": {"nom_de_la_commune": "BRIENNE LA VIEILLE", "libell_d_acheminement": "BRIENNE LA VIEILLE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10063"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ed5cb525419d2f762915af80304ac44f312b3eb", "fields": {"nom_de_la_commune": "CHAPELLE VALLON", "libell_d_acheminement": "CHAPELLE VALLON", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10082"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "482cf7acc3be46bd3898c0c465dacd976efdfae4", "fields": {"nom_de_la_commune": "CHAUCHIGNY", "libell_d_acheminement": "CHAUCHIGNY", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10090"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f9a49dd0934652ca9826b451acb7a5480dcdf8", "fields": {"nom_de_la_commune": "COURCEROY", "libell_d_acheminement": "COURCEROY", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10106"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c604888347538e7f02f74da59758ca406e45da0", "fields": {"nom_de_la_commune": "CHAUDREY", "libell_d_acheminement": "CHAUDREY", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10091"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0b16c9627cfa2152f5d263c32a5c773d8d888f", "fields": {"nom_de_la_commune": "CHARMOY", "libell_d_acheminement": "CHARMOY", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10085"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b855ab5300a28686df7684be3f7cc542a0dc46db", "fields": {"nom_de_la_commune": "BUXEUIL", "libell_d_acheminement": "BUXEUIL", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10068"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2b564d88eba72908df96a81cf6f5316c0c5e730", "fields": {"nom_de_la_commune": "CHANNES", "libell_d_acheminement": "CHANNES", "code_postal": "10340", "coordonnees_gps": [47.9929585912, 4.30782302551], "code_commune_insee": "10079"}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd88c0397952abea7bf0dbb620f2b3b1859e8b45", "fields": {"nom_de_la_commune": "COCLOIS", "libell_d_acheminement": "COCLOIS", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10101"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c7d755cc66d6280c8f74474c81372d22e1b6bd7", "fields": {"nom_de_la_commune": "PERTHES LES BRIENNE", "libell_d_acheminement": "PERTHES LES BRIENNE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10285"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61463c49592070698ecf01bab7906a1f6dd28daf", "fields": {"nom_de_la_commune": "PARS LES CHAVANGES", "libell_d_acheminement": "PARS LES CHAVANGES", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10279"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c622205e699ca3e91a595e682a8962b5520b72", "fields": {"nom_de_la_commune": "PARS LES ROMILLY", "libell_d_acheminement": "PARS LES ROMILLY", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10280"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d00ec070e11978749b07177ce6fb569a09389cf", "fields": {"nom_de_la_commune": "PRECY ST MARTIN", "libell_d_acheminement": "PRECY ST MARTIN", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10304"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823ae22470c99429973bfeec2097a0d38cae4fa3", "fields": {"nom_de_la_commune": "PREMIERFAIT", "libell_d_acheminement": "PREMIERFAIT", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10305"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c4ed47a0202837ff2f538b21b15c2ba46bc2555", "fields": {"nom_de_la_commune": "PRASLIN", "libell_d_acheminement": "PRASLIN", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10302"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e7936d6fdad47ffd0c82a6b43685de6758e2f0", "fields": {"nom_de_la_commune": "VILLE SUR RETOURNE", "libell_d_acheminement": "VILLE SUR RETOURNE", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08484"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a375b129f975dcabe9699c5621014f947f1e4342", "fields": {"nom_de_la_commune": "VRIGNE AUX BOIS", "libell_d_acheminement": "VRIGNE AUX BOIS", "code_postal": "08330", "coordonnees_gps": [49.7370463134, 4.85637588742], "code_commune_insee": "08491"}, "geometry": {"type": "Point", "coordinates": [4.85637588742, 49.7370463134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84818cb2ca779f98ea718fdfbcb382c16385a633", "fields": {"nom_de_la_commune": "VILLERS SEMEUSE", "libell_d_acheminement": "VILLERS SEMEUSE", "code_postal": "08000", "coordonnees_gps": [49.7589748085, 4.71308364849], "code_commune_insee": "08480"}, "geometry": {"type": "Point", "coordinates": [4.71308364849, 49.7589748085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "781253f3d9f1fc41ea30e27393efd482b371e02c", "fields": {"nom_de_la_commune": "AIGUES VIVES", "libell_d_acheminement": "AIGUES VIVES", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09002"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3976b4a4b4853e4bf648c2cc17001323428c7659", "fields": {"nom_de_la_commune": "YVERNAUMONT", "libell_d_acheminement": "YVERNAUMONT", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08503"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c77d1e5a24eeb0f11b0ad84f613d4753f67a4651", "fields": {"nom_de_la_commune": "ARROUT", "libell_d_acheminement": "ARROUT", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09018"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b967430cdd462f314c5a5277282760dcd9b436", "fields": {"nom_de_la_commune": "BARJAC", "libell_d_acheminement": "BARJAC", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09037"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb6609a48a5d4ec33dc6635b79ea15f5974bc39", "fields": {"nom_de_la_commune": "AXIAT", "libell_d_acheminement": "AXIAT", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09031"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876924a1bbce4bd1a36ef2678bad4b208a4063a5", "fields": {"nom_de_la_commune": "ASCOU", "libell_d_acheminement": "ASCOU", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09023"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188f5a296bda0328e8680d56078ca812f4f5cc6f", "fields": {"nom_de_la_commune": "ALEU", "libell_d_acheminement": "ALEU", "code_postal": "09320", "coordonnees_gps": [42.8796957466, 1.34694172937], "code_commune_insee": "09005"}, "geometry": {"type": "Point", "coordinates": [1.34694172937, 42.8796957466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ff99aadb0fcdbb6e71968c655f78b54012d1ead", "fields": {"nom_de_la_commune": "LA BASTIDE DE BOUSIGNAC", "libell_d_acheminement": "LA BASTIDE DE BOUSIGNAC", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09039"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c00ccc317fdf3d81c21b683870d8cbfa35b757cf", "fields": {"nom_de_la_commune": "LA BASTIDE DE LORDAT", "libell_d_acheminement": "LA BASTIDE DE LORDAT", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09040"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beb582e72908c5fa2a2455d1c57e0f8ad5afd834", "fields": {"nom_de_la_commune": "LA BASTIDE DU SALAT", "libell_d_acheminement": "LA BASTIDE DU SALAT", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09041"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca09c20da50712fe2b89cd4010bf97669238cae", "fields": {"nom_de_la_commune": "LA BASTIDE DE SEROU", "libell_d_acheminement": "LA BASTIDE DE SEROU", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09042"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b137ecad60da76a62b2b3460295df908ae1468a", "fields": {"nom_de_la_commune": "BONAC IRAZEIN", "libell_d_acheminement": "BONAC IRAZEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09059"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d231ae578d099bb6e492968dbbe3c9d48f50b33", "fields": {"nom_de_la_commune": "BETHMALE", "libell_d_acheminement": "BETHMALE", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09055"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c3b60872e6092b3c6a1b4eba7e44145016e854", "fields": {"nom_de_la_commune": "BENAIX", "libell_d_acheminement": "BENAIX", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09051"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7443eae824d6fa1b25a1bf828a8152e853116f87", "fields": {"nom_de_la_commune": "BOMPAS", "libell_d_acheminement": "BOMPAS", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09058"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102dfdeeadd02e28a293f09a6bdd3a1370b2edc9", "fields": {"nom_de_la_commune": "BAULOU", "libell_d_acheminement": "BAULOU", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09044"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff6978fde0c945adfd4f46b090466116f79ef8e", "fields": {"nom_de_la_commune": "BELLOC", "libell_d_acheminement": "BELLOC", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09048"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89bd0833d06d69b70edc9b9eed2313f931138892", "fields": {"code_postal": "10120", "code_commune_insee": "10340", "libell_d_acheminement": "ST GERMAIN", "ligne_5": "CHEVILLELE", "nom_de_la_commune": "ST GERMAIN", "coordonnees_gps": [48.2420570868, 4.01115012406]}, "geometry": {"type": "Point", "coordinates": [4.01115012406, 48.2420570868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f4be08f48f895e9536b71935d6b81e1d51f3a0", "fields": {"code_postal": "10240", "code_commune_insee": "10314", "libell_d_acheminement": "RAMERUPT", "ligne_5": "ROMAINES", "nom_de_la_commune": "RAMERUPT", "coordonnees_gps": [48.495152966, 4.31805671159]}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ddefbcd1b2ec98283fb258848d7f74d99bf7794", "fields": {"nom_de_la_commune": "ST ANDRE LES VERGERS", "libell_d_acheminement": "ST ANDRE LES VERGERS", "code_postal": "10120", "coordonnees_gps": [48.2420570868, 4.01115012406], "code_commune_insee": "10333"}, "geometry": {"type": "Point", "coordinates": [4.01115012406, 48.2420570868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2a4943c85fa61a45d57e2d059d8206cd7fcbbc", "fields": {"nom_de_la_commune": "LA RIVIERE DE CORPS", "libell_d_acheminement": "LA RIVIERE DE CORPS", "code_postal": "10440", "coordonnees_gps": [48.277445493, 3.98700536658], "code_commune_insee": "10321"}, "geometry": {"type": "Point", "coordinates": [3.98700536658, 48.277445493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ebe0ecffe535c9510856c35f781a3d4a3c25277", "fields": {"nom_de_la_commune": "PUITS ET NUISEMENT", "libell_d_acheminement": "PUITS ET NUISEMENT", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10310"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9f0dd8300b3b5f4dea3e552bb2992ccbd82b53", "fields": {"nom_de_la_commune": "ROSNAY L HOPITAL", "libell_d_acheminement": "ROSNAY L HOPITAL", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10326"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee57218c0bfbf4282d1d1032309771f95b5f205", "fields": {"nom_de_la_commune": "ST GERMAIN", "libell_d_acheminement": "ST GERMAIN", "code_postal": "10120", "coordonnees_gps": [48.2420570868, 4.01115012406], "code_commune_insee": "10340"}, "geometry": {"type": "Point", "coordinates": [4.01115012406, 48.2420570868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61384b3bebd1be03172506abf2d3f712f998392e", "fields": {"code_postal": "10150", "code_commune_insee": "10352", "libell_d_acheminement": "STE MAURE", "ligne_5": "CULOISON", "nom_de_la_commune": "STE MAURE", "coordonnees_gps": [48.3962803897, 4.13703511392]}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4446653369e77115a6fe2f4d03f8d6d0dfcd6a", "fields": {"nom_de_la_commune": "ST LEGER SOUS MARGERIE", "libell_d_acheminement": "ST LEGER SOUS MARGERIE", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10346"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad46ef97cbca96dbba177b12ee401a6f4f28de75", "fields": {"nom_de_la_commune": "ST PARRES AUX TERTRES", "libell_d_acheminement": "ST PARRES AUX TERTRES", "code_postal": "10410", "coordonnees_gps": [48.2983334554, 4.15487406021], "code_commune_insee": "10357"}, "geometry": {"type": "Point", "coordinates": [4.15487406021, 48.2983334554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b003d0ab1eb63d0030236f77073b8abbe45d47d1", "fields": {"nom_de_la_commune": "ST NABORD SUR AUBE", "libell_d_acheminement": "ST NABORD SUR AUBE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10354"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d8bdba95bf489f1f25a6926eebfe0a18409d593", "fields": {"nom_de_la_commune": "ST THIBAULT", "libell_d_acheminement": "ST THIBAULT", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10363"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62fb05e1862e0e11804c2c377b58414058f4e8e1", "fields": {"nom_de_la_commune": "STE MAURE", "libell_d_acheminement": "STE MAURE", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10352"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd8a7f33dd450216ad4411fd717a0d267c1c1386", "fields": {"nom_de_la_commune": "ST OULPH", "libell_d_acheminement": "ST OULPH", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10356"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf1c774377243fd676c121f803388159186cbb55", "fields": {"nom_de_la_commune": "SALON", "libell_d_acheminement": "SALON", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10365"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f99d54c992c60f307558681dbf2f74c10eafc28e", "fields": {"code_postal": "10700", "code_commune_insee": "10386", "libell_d_acheminement": "TROUANS", "ligne_5": "TROUAN LE GRAND", "nom_de_la_commune": "TROUANS", "coordonnees_gps": [48.5834551294, 4.16090274297]}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b028aaf635c2412e11ffe68207217f405c3a3f9", "fields": {"nom_de_la_commune": "VERPILLIERES SUR OURCE", "libell_d_acheminement": "VERPILLIERES SUR OURCE", "code_postal": "10360", "coordonnees_gps": [48.0604806131, 4.60332287539], "code_commune_insee": "10404"}, "geometry": {"type": "Point", "coordinates": [4.60332287539, 48.0604806131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ecf13fc39b816b4b92dc53d2f6972e2082e337d", "fields": {"nom_de_la_commune": "VILLENAUXE LA GRANDE", "libell_d_acheminement": "VILLENAUXE LA GRANDE", "code_postal": "10370", "coordonnees_gps": [48.5945073105, 3.54815302668], "code_commune_insee": "10420"}, "geometry": {"type": "Point", "coordinates": [3.54815302668, 48.5945073105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edfa4fd5991ddc1ffae72867a971c130021ce5ed", "fields": {"nom_de_la_commune": "VILLE SOUS LA FERTE", "libell_d_acheminement": "VILLE SOUS LA FERTE", "code_postal": "10310", "coordonnees_gps": [48.1567685845, 4.79470021531], "code_commune_insee": "10426"}, "geometry": {"type": "Point", "coordinates": [4.79470021531, 48.1567685845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f682c1fa072b4800fca8631d0094a26c8e98e203", "fields": {"nom_de_la_commune": "SOLIGNY LES ETANGS", "libell_d_acheminement": "SOLIGNY LES ETANGS", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10370"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c63709434fb51f5b1c9debe4044951bfa10e2b1", "fields": {"nom_de_la_commune": "LA VILLE AUX BOIS", "libell_d_acheminement": "LA VILLE AUX BOIS", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10411"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9e3317a9ff6a1a02b016ef435cd41714ae450d7", "fields": {"nom_de_la_commune": "VIAPRES LE PETIT", "libell_d_acheminement": "VIAPRES LE PETIT", "code_postal": "10380", "coordonnees_gps": [48.576907135, 3.98044859766], "code_commune_insee": "10408"}, "geometry": {"type": "Point", "coordinates": [3.98044859766, 48.576907135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "822b337fa79ed9cefd5c47697acd4255269d0565", "fields": {"nom_de_la_commune": "SOULIGNY", "libell_d_acheminement": "SOULIGNY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10373"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6deac5eed10a8a0af0620394a7206320637cd41", "fields": {"nom_de_la_commune": "VILLERET", "libell_d_acheminement": "VILLERET", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10424"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d306cc29e2278f7469dea47ca5fb6e98f9f66186", "fields": {"nom_de_la_commune": "THORS", "libell_d_acheminement": "THORS", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10378"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693c759530f0b6d82eb53a0a24590fb461a6fe55", "fields": {"nom_de_la_commune": "VILLIERS SOUS PRASLIN", "libell_d_acheminement": "VILLIERS SOUS PRASLIN", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10432"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b55c7a210ebcddf5947cfca8964359f5cf5ecffb", "fields": {"code_postal": "49310", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "LA SALLE DE VIHIERS", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c57a9c4b0542146920fed94694ce44b3ff2e2b", "fields": {"code_postal": "49750", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "CHANZEAUX", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2426647325, -0.667761115453]}, "geometry": {"type": "Point", "coordinates": [-0.667761115453, 47.2426647325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25dbae98b94e6f43288d36d3585d7a61954ab8f4", "fields": {"nom_de_la_commune": "CLERE SUR LAYON", "libell_d_acheminement": "CLERE SUR LAYON", "code_postal": "49560", "coordonnees_gps": [47.1224159134, -0.517336528363], "code_commune_insee": "49102"}, "geometry": {"type": "Point", "coordinates": [-0.517336528363, 47.1224159134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "226fcc5c31ede45626968336d8d18f2c9398d06c", "fields": {"code_postal": "49520", "code_commune_insee": "49103", "libell_d_acheminement": "COMBREE", "ligne_5": "BEL AIR", "nom_de_la_commune": "COMBREE", "coordonnees_gps": [47.7119047225, -1.00078562613]}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "164a3c8babb7119413d1a20ad7dcc23c322fd97d", "fields": {"nom_de_la_commune": "COURLEON", "libell_d_acheminement": "COURLEON", "code_postal": "49390", "coordonnees_gps": [47.4059865072, 0.072262523742], "code_commune_insee": "49114"}, "geometry": {"type": "Point", "coordinates": [0.072262523742, 47.4059865072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a201172c47e957a0e6bb129cd7bb9337441cafd", "fields": {"nom_de_la_commune": "DAUMERAY", "libell_d_acheminement": "DAUMERAY", "code_postal": "49640", "coordonnees_gps": [47.7052254952, -0.382455900897], "code_commune_insee": "49119"}, "geometry": {"type": "Point", "coordinates": [-0.382455900897, 47.7052254952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbfbdab8e4c6e9ff9531705e126226ad5e45433c", "fields": {"nom_de_la_commune": "DENEZE SOUS DOUE", "libell_d_acheminement": "DENEZE SOUS DOUE", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49121"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17978aba808c7cf1f21b8e1b81fd4c5cf7327095", "fields": {"nom_de_la_commune": "DISTRE", "libell_d_acheminement": "DISTRE", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49123"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4af3368a1b0b4a00048dd2c9d20498755bc5e5ec", "fields": {"nom_de_la_commune": "L HOTELLERIE DE FLEE", "libell_d_acheminement": "L HOTELLERIE DE FLEE", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49158"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e7422e89e619686904f98f0decc3d1417c7fcb", "fields": {"nom_de_la_commune": "JARZE VILLAGES", "libell_d_acheminement": "JARZE VILLAGES", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49163"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f7a59f668041cc8f78cbf30735063320c0b29f0", "fields": {"code_postal": "49140", "code_commune_insee": "49163", "libell_d_acheminement": "JARZE VILLAGES", "ligne_5": "CHAUMONT D ANJOU", "nom_de_la_commune": "JARZE VILLAGES", "coordonnees_gps": [47.5412696168, -0.334422657003]}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01603fecdf6d0d51d3b3f242e7d4fa990e145fb5", "fields": {"code_postal": "49140", "code_commune_insee": "49163", "libell_d_acheminement": "JARZE VILLAGES", "ligne_5": "LUE EN BAUGEOIS", "nom_de_la_commune": "JARZE VILLAGES", "coordonnees_gps": [47.5412696168, -0.334422657003]}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3741e64f61e7e87030b3bf58d4e0385ce17762c7", "fields": {"code_postal": "49220", "code_commune_insee": "49176", "libell_d_acheminement": "LE LION D ANGERS", "ligne_5": "ANDIGNE", "nom_de_la_commune": "LE LION D ANGERS", "coordonnees_gps": [47.6290283416, -0.733017824354]}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5758edfec1759fa6809b8e243727a90be5b09f2b", "fields": {"nom_de_la_commune": "LOIRE", "libell_d_acheminement": "LOIRE", "code_postal": "49440", "coordonnees_gps": [47.5742354301, -1.03309048428], "code_commune_insee": "49178"}, "geometry": {"type": "Point", "coordinates": [-1.03309048428, 47.5742354301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fe99f5c5f7d5fdc056afcc09dc1e25ea8ed30c", "fields": {"code_postal": "49140", "code_commune_insee": "49194", "libell_d_acheminement": "MAZE MILON", "ligne_5": "FONTAINE MILON", "nom_de_la_commune": "MAZE MILON", "coordonnees_gps": [47.5412696168, -0.334422657003]}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "199dd9ae97436bf6404956c154de72f4b1008e51", "fields": {"nom_de_la_commune": "MAZE MILON", "libell_d_acheminement": "MAZE MILON", "code_postal": "49630", "coordonnees_gps": [47.4461983754, -0.297232608581], "code_commune_insee": "49194"}, "geometry": {"type": "Point", "coordinates": [-0.297232608581, 47.4461983754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "400d510cb6f3144a537eb915d17637461f322bc1", "fields": {"code_postal": "49460", "code_commune_insee": "49214", "libell_d_acheminement": "MONTREUIL JUIGNE", "ligne_5": "JUIGNE BENE", "nom_de_la_commune": "MONTREUIL JUIGNE", "coordonnees_gps": [47.5717691196, -0.578911791129]}, "geometry": {"type": "Point", "coordinates": [-0.578911791129, 47.5717691196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90fe17a139029c9e19d47ebee7cfe1be7d5cfa06", "fields": {"code_postal": "49260", "code_commune_insee": "49215", "libell_d_acheminement": "MONTREUIL BELLAY", "ligne_5": "MERON", "nom_de_la_commune": "MONTREUIL BELLAY", "coordonnees_gps": [47.1403136814, -0.132740231974]}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "029007dca86a5f5f6fb9aecb58e9dadc8e833264", "fields": {"nom_de_la_commune": "MONTREUIL SUR MAINE", "libell_d_acheminement": "MONTREUIL SUR MAINE", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49217"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da12f7ae35a5d4f88981a8b67e55454c5209664", "fields": {"code_postal": "49110", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "LA SALLE ET CHAPELLE AUBRY", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0535e79985433443faf077aa1d519b317a8df4", "fields": {"code_postal": "49600", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "LA CHAUSSAIRE", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d73ac73727db7ba70ef119d2a363e1f0f291aa4", "fields": {"code_postal": "49600", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "LE PUISET DORE", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "832f225ab1f29ecd9f11fc0a621107f835783547", "fields": {"nom_de_la_commune": "MONTSOREAU", "libell_d_acheminement": "MONTSOREAU", "code_postal": "49730", "coordonnees_gps": [47.2331093942, 0.0334548671675], "code_commune_insee": "49219"}, "geometry": {"type": "Point", "coordinates": [0.0334548671675, 47.2331093942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b505085aca06ccc260473900132077dcf5070e", "fields": {"nom_de_la_commune": "MOZE SUR LOUET", "libell_d_acheminement": "MOZE SUR LOUET", "code_postal": "49610", "coordonnees_gps": [47.3759967288, -0.537909548513], "code_commune_insee": "49222"}, "geometry": {"type": "Point", "coordinates": [-0.537909548513, 47.3759967288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6c7e9d471d1f4904a0074284d0e616b35776e9", "fields": {"nom_de_la_commune": "NOELLET", "libell_d_acheminement": "NOELLET", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49226"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f95d0ae78bc18dfe41631170974840e6e20ce4a6", "fields": {"nom_de_la_commune": "NUAILLE", "libell_d_acheminement": "NUAILLE", "code_postal": "49340", "coordonnees_gps": [47.1051947253, -0.750368480003], "code_commune_insee": "49231"}, "geometry": {"type": "Point", "coordinates": [-0.750368480003, 47.1051947253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c9aa555f3bc3a361a4e89a302a0a062a623b86", "fields": {"nom_de_la_commune": "PASSAVANT SUR LAYON", "libell_d_acheminement": "PASSAVANT SUR LAYON", "code_postal": "49560", "coordonnees_gps": [47.1224159134, -0.517336528363], "code_commune_insee": "49236"}, "geometry": {"type": "Point", "coordinates": [-0.517336528363, 47.1224159134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b98e89bd139997baab0086a8c039b33e5e4becef", "fields": {"nom_de_la_commune": "LA PLAINE", "libell_d_acheminement": "LA PLAINE", "code_postal": "49360", "coordonnees_gps": [47.0353791389, -0.681865691619], "code_commune_insee": "49240"}, "geometry": {"type": "Point", "coordinates": [-0.681865691619, 47.0353791389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18c3d3ac667e57101c2ea80b48a5603fea965b35", "fields": {"code_postal": "49290", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "ST LAURENT DE LA PLAINE", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3431019383, -0.806177214608]}, "geometry": {"type": "Point", "coordinates": [-0.806177214608, 47.3431019383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "195dcf3592c93f2ad173f593799749424bc56215", "fields": {"code_postal": "49410", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "ST FLORENT LE VIEIL", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ce855da51718739177d0b9fa8bbe4ea32ddc4b", "fields": {"code_postal": "49130", "code_commune_insee": "49246", "libell_d_acheminement": "LES PONTS DE CE", "ligne_5": "SORGES", "nom_de_la_commune": "LES PONTS DE CE", "coordonnees_gps": [47.4268002737, -0.542779965339]}, "geometry": {"type": "Point", "coordinates": [-0.542779965339, 47.4268002737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553a584ff8384b7bfdada88f25d8dda06a98ebcc", "fields": {"nom_de_la_commune": "POUANCE", "libell_d_acheminement": "POUANCE", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49248"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24a6e911b6d0385de1635fd36efdc6d4cd8829b5", "fields": {"nom_de_la_commune": "LA ROMAGNE", "libell_d_acheminement": "LA ROMAGNE", "code_postal": "49740", "coordonnees_gps": [47.0544001848, -1.00933945624], "code_commune_insee": "49260"}, "geometry": {"type": "Point", "coordinates": [-1.00933945624, 47.0544001848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baab72cb6c816c3d8b30542761a86369eda4bef8", "fields": {"nom_de_la_commune": "ST AUGUSTIN DES BOIS", "libell_d_acheminement": "ST AUGUSTIN DES BOIS", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49266"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "652635733c562c246163b7842d48c9ce3b394a3a", "fields": {"nom_de_la_commune": "ST CLEMENT DE LA PLACE", "libell_d_acheminement": "ST CLEMENT DE LA PLACE", "code_postal": "49370", "coordonnees_gps": [47.5234772434, -0.840270654951], "code_commune_insee": "49271"}, "geometry": {"type": "Point", "coordinates": [-0.840270654951, 47.5234772434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "201579a350307790e858f8548d0b58512f9c7697", "fields": {"nom_de_la_commune": "ST CLEMENT DES LEVEES", "libell_d_acheminement": "ST CLEMENT DES LEVEES", "code_postal": "49350", "coordonnees_gps": [47.3419898447, -0.231335175854], "code_commune_insee": "49272"}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d07dbe89de3395a9d45976af69130437d86835e", "fields": {"nom_de_la_commune": "ST GERMAIN DES PRES", "libell_d_acheminement": "ST GERMAIN DES PRES", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49284"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8a2ea68cb2ae19f4016dd5749c748a765996773", "fields": {"nom_de_la_commune": "ST JEAN DE LA CROIX", "libell_d_acheminement": "ST JEAN DE LA CROIX", "code_postal": "49130", "coordonnees_gps": [47.4268002737, -0.542779965339], "code_commune_insee": "49288"}, "geometry": {"type": "Point", "coordinates": [-0.542779965339, 47.4268002737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9ae051463a51453d93cb638d2aa1a50fd1fbf7", "fields": {"nom_de_la_commune": "ST JEAN DES MAUVRETS", "libell_d_acheminement": "ST JEAN DES MAUVRETS", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49290"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc1565b0edf134508f404faf093908c91028615", "fields": {"code_postal": "49230", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "MONTIGNE SUR MOINE", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dcb40ed2643ffbc6a76afcf0cf1e6b105c166d4", "fields": {"code_postal": "49230", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "ST CRESPIN SUR MOINE", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c8c17cd851228abba66db83565d76b8d9aa539e", "fields": {"code_postal": "49230", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "TILLIERES", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc916a5113899eeae67f2b9105691925b8cfcdbf", "fields": {"code_postal": "49800", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "ANDARD", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.4402094612, -0.379405488422]}, "geometry": {"type": "Point", "coordinates": [-0.379405488422, 47.4402094612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12ce9a2eab8f22e49e2e6ab5c333186100bedae", "fields": {"code_postal": "49400", "code_commune_insee": "49328", "libell_d_acheminement": "SAUMUR", "ligne_5": "DAMPIERRE SUR LOIRE", "nom_de_la_commune": "SAUMUR", "coordonnees_gps": [47.2533599269, -0.096565442499]}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1978a179907e5978235336db51f5421897c124d5", "fields": {"code_postal": "49400", "code_commune_insee": "49328", "libell_d_acheminement": "SAUMUR", "ligne_5": "ST LAMBERT DES LEVEES", "nom_de_la_commune": "SAUMUR", "coordonnees_gps": [47.2533599269, -0.096565442499]}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b16f68a3d6ad49cf0d1ad0ee2645bf30f0cec3e1", "fields": {"code_postal": "49140", "code_commune_insee": "49333", "libell_d_acheminement": "SEICHES SUR LE LOIR", "ligne_5": "MATHEFLON", "nom_de_la_commune": "SEICHES SUR LE LOIR", "coordonnees_gps": [47.5412696168, -0.334422657003]}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f45881519cd5e679f7df741424710f0053d9b40", "fields": {"code_postal": "49380", "code_commune_insee": "49345", "libell_d_acheminement": "BELLEVIGNE EN LAYON", "ligne_5": "FAYE D ANJOU", "nom_de_la_commune": "BELLEVIGNE EN LAYON", "coordonnees_gps": [47.275621339, -0.477027666042]}, "geometry": {"type": "Point", "coordinates": [-0.477027666042, 47.275621339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86b8cdb20f869ec0c4d36640cca8532712058f3", "fields": {"nom_de_la_commune": "TOUTLEMONDE", "libell_d_acheminement": "TOUTLEMONDE", "code_postal": "49360", "coordonnees_gps": [47.0353791389, -0.681865691619], "code_commune_insee": "49352"}, "geometry": {"type": "Point", "coordinates": [-0.681865691619, 47.0353791389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70922caa32de41335fdad230f7c1bdb38d9904f4", "fields": {"code_postal": "49220", "code_commune_insee": "49367", "libell_d_acheminement": "ERDRE EN ANJOU", "ligne_5": "VERN D ANJOU", "nom_de_la_commune": "ERDRE EN ANJOU", "coordonnees_gps": [47.6290283416, -0.733017824354]}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6bb42ada89097a7762225b9d20aadac9a594615", "fields": {"code_postal": "49310", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "TANCOIGNE", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e12bbcccc875edf1ecbe4c96dbcdd21f1d55b9f", "fields": {"code_postal": "49540", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "LA FOSSE DE TIGNE", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1719461736, -0.518340326258]}, "geometry": {"type": "Point", "coordinates": [-0.518340326258, 47.1719461736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f803842ae3b9d27984bc07813b7178496cd7d2fb", "fields": {"code_postal": "49540", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "TIGNE", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1719461736, -0.518340326258]}, "geometry": {"type": "Point", "coordinates": [-0.518340326258, 47.1719461736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "901aea52a0e811ddfe91d881c2e131b88f147209", "fields": {"nom_de_la_commune": "VILLEBERNIER", "libell_d_acheminement": "VILLEBERNIER", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49374"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd551f239986699e4ded285bd958b55c7a14a989", "fields": {"nom_de_la_commune": "VILLEVEQUE", "libell_d_acheminement": "VILLEVEQUE", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49377"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25b22d3875b43ace919ce2130f4219c6071ab242", "fields": {"nom_de_la_commune": "YZERNAY", "libell_d_acheminement": "YZERNAY", "code_postal": "49360", "coordonnees_gps": [47.0353791389, -0.681865691619], "code_commune_insee": "49381"}, "geometry": {"type": "Point", "coordinates": [-0.681865691619, 47.0353791389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daf28399ccbb0e6a134e6785b96f09b8baf27ca9", "fields": {"nom_de_la_commune": "AGNEAUX", "libell_d_acheminement": "AGNEAUX", "code_postal": "50180", "coordonnees_gps": [49.1138081989, -1.15891000484], "code_commune_insee": "50002"}, "geometry": {"type": "Point", "coordinates": [-1.15891000484, 49.1138081989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc814bacf9c4172802cf5c7bccf98d2bb9799f2", "fields": {"nom_de_la_commune": "AMIGNY", "libell_d_acheminement": "AMIGNY", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50006"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f68c62e1106b1c1694ad1aac09b10bad533abe", "fields": {"nom_de_la_commune": "ANCTEVILLE", "libell_d_acheminement": "ANCTEVILLE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50007"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15245c0eebffca954baa2f1f237ee90e9866a534", "fields": {"nom_de_la_commune": "ANCTOVILLE SUR BOSCQ", "libell_d_acheminement": "ANCTOVILLE SUR BOSCQ", "code_postal": "50400", "coordonnees_gps": [48.8338992843, -1.53304864714], "code_commune_insee": "50008"}, "geometry": {"type": "Point", "coordinates": [-1.53304864714, 48.8338992843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98daa709dbf5916f0f7d513b497f599ebee1eb9c", "fields": {"nom_de_la_commune": "AUCEY LA PLAINE", "libell_d_acheminement": "AUCEY LA PLAINE", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50019"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e817d773dc8c178f9c394a26a1b065875fbababa", "fields": {"nom_de_la_commune": "AUDOUVILLE LA HUBERT", "libell_d_acheminement": "AUDOUVILLE LA HUBERT", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50021"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a59e2a6be6df6c5bde507bcd8a63db88ac695384", "fields": {"nom_de_la_commune": "AUXAIS", "libell_d_acheminement": "AUXAIS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50024"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7ef5ee163e261dffca15b0bd8c4bed59bac52d", "fields": {"nom_de_la_commune": "AZEVILLE", "libell_d_acheminement": "AZEVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50026"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a94d552950334c4c8974a311dd7997efe7b439b", "fields": {"nom_de_la_commune": "BARENTON", "libell_d_acheminement": "BARENTON", "code_postal": "50720", "coordonnees_gps": [48.5983926972, -0.815007592926], "code_commune_insee": "50029"}, "geometry": {"type": "Point", "coordinates": [-0.815007592926, 48.5983926972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "211c7382a3784450fd12222c80e73082265944f5", "fields": {"nom_de_la_commune": "BAUBIGNY", "libell_d_acheminement": "BAUBIGNY", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50033"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87b10ef8bcc0d915e04ffd6124c42ca9e74db633", "fields": {"nom_de_la_commune": "BEAUVOIR", "libell_d_acheminement": "BEAUVOIR", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50042"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87f5d5c8e386fb5226d98bf617f8dae8e7cc6db4", "fields": {"nom_de_la_commune": "BESLON", "libell_d_acheminement": "BESLON", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50048"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937e3125ba5b39193bbdf2fb2581d2a001a759d7", "fields": {"nom_de_la_commune": "BEUZEVILLE LA BASTILLE", "libell_d_acheminement": "BEUZEVILLE LA BASTILLE", "code_postal": "50360", "coordonnees_gps": [49.3768356416, -1.41731923499], "code_commune_insee": "50052"}, "geometry": {"type": "Point", "coordinates": [-1.41731923499, 49.3768356416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d186fca7a3768cda80f093219dbf88c3feeb0b3e", "fields": {"nom_de_la_commune": "BLOSVILLE", "libell_d_acheminement": "BLOSVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50059"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a032f23ecc8e380aecc9b93ff6e13c9338b463c", "fields": {"nom_de_la_commune": "BRANVILLE HAGUE", "libell_d_acheminement": "BRANVILLE HAGUE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50073"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "505a1ed6416f374303e7a16b8903cb28b0b1ef73", "fields": {"code_postal": "50290", "code_commune_insee": "50076", "libell_d_acheminement": "BREHAL", "ligne_5": "ST MARTIN DE BREHAL", "nom_de_la_commune": "BREHAL", "coordonnees_gps": [48.8970159466, -1.52458100267]}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e2940f892fb88566fb69912aae89f08c96b910", "fields": {"nom_de_la_commune": "BRICQUEBEC EN COTENTIN", "libell_d_acheminement": "BRICQUEBEC EN COTENTIN", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50082"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dca50d2d42b620aeeb3c26e0b8ad58cd9f7db1ff", "fields": {"code_postal": "50260", "code_commune_insee": "50082", "libell_d_acheminement": "BRICQUEBEC EN COTENTIN", "ligne_5": "LE VALDECIE", "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", "coordonnees_gps": [49.4933087231, -1.61334140824]}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b449878668a74811bca9fdcf9a6d90d9947db07", "fields": {"code_postal": "50260", "code_commune_insee": "50082", "libell_d_acheminement": "BRICQUEBEC EN COTENTIN", "ligne_5": "LE VRETOT", "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", "coordonnees_gps": [49.4933087231, -1.61334140824]}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97f1da97f31c471113f9442ba7c580a97ec83ca", "fields": {"nom_de_la_commune": "BRICQUEVILLE LA BLOUETTE", "libell_d_acheminement": "BRICQUEVILLE LA BLOUETTE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50084"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c87cc2abb34d27626c33cd72f43a30e2d471e6", "fields": {"nom_de_la_commune": "BRILLEVAST", "libell_d_acheminement": "BRILLEVAST", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50086"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94805a3575a895656c21ca2cf98f3ee5a56ea3bd", "fields": {"nom_de_la_commune": "CAMETOURS", "libell_d_acheminement": "CAMETOURS", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50093"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebd92bfaa60d5ac9504e49c548e39da7a64c9ef6", "fields": {"code_postal": "50500", "code_commune_insee": "50099", "libell_d_acheminement": "CARENTAN LES MARAIS", "ligne_5": "ST COME DU MONT", "nom_de_la_commune": "CARENTAN LES MARAIS", "coordonnees_gps": [49.2869249451, -1.26541021444]}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d87e20e3a7c7ea213d2788cb8ce846b359b48a3a", "fields": {"nom_de_la_commune": "CHANTELOUP", "libell_d_acheminement": "CHANTELOUP", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50120"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72474ae3395ac3e46c602b3c76c4f13a5ba2e845", "fields": {"nom_de_la_commune": "LA CHAPELLE UREE", "libell_d_acheminement": "LA CHAPELLE UREE", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50124"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7d1b574b7decbcb6984d787e42e24cceeac2106", "fields": {"nom_de_la_commune": "CHASSEGUEY", "libell_d_acheminement": "CHASSEGUEY", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50125"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3133a2ad64b6a89894d2b085ee4b9a7aeb27727a", "fields": {"nom_de_la_commune": "CHERBOURG EN COTENTIN", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "code_postal": "50130", "coordonnees_gps": [49.6331832109, -1.6338586934], "code_commune_insee": "50129"}, "geometry": {"type": "Point", "coordinates": [-1.6338586934, 49.6331832109]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8264f6b81458fc423d2291a1727b337ff3e4e38", "fields": {"nom_de_la_commune": "COLOMBY", "libell_d_acheminement": "COLOMBY", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50138"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b6e5416436042d7ce3c14a77163350f05a177f1", "fields": {"code_postal": "50420", "code_commune_insee": "50139", "libell_d_acheminement": "CONDE SUR VIRE", "ligne_5": "LE MESNIL RAOULT", "nom_de_la_commune": "CONDE SUR VIRE", "coordonnees_gps": [48.9843046983, -1.06508907903]}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85efb13a1cb1688260f05f48a28f76cd147dabf0", "fields": {"code_postal": "50330", "code_commune_insee": "50142", "libell_d_acheminement": "VICQ SUR MER", "ligne_5": "ANGOVILLE EN SAIRE", "nom_de_la_commune": "VICQ SUR MER", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3339bdc1e0f0c69ecbf0d93eca47b67c60b78347", "fields": {"code_postal": "50330", "code_commune_insee": "50142", "libell_d_acheminement": "VICQ SUR MER", "ligne_5": "NEVILLE SUR MER", "nom_de_la_commune": "VICQ SUR MER", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8948debe664b66a9bd7ebb114ec4347b8373fdc6", "fields": {"code_postal": "50330", "code_commune_insee": "50142", "libell_d_acheminement": "VICQ SUR MER", "ligne_5": "RETHOVILLE", "nom_de_la_commune": "VICQ SUR MER", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d0c31f1267c792e50494f3c30be97ae2f0ad874", "fields": {"nom_de_la_commune": "LA CROIX AVRANCHIN", "libell_d_acheminement": "LA CROIX AVRANCHIN", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50154"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43576d79321caba6e4ea307acf99abf2af83e214", "fields": {"nom_de_la_commune": "CROSVILLE SUR DOUVE", "libell_d_acheminement": "CROSVILLE SUR DOUVE", "code_postal": "50360", "coordonnees_gps": [49.3768356416, -1.41731923499], "code_commune_insee": "50156"}, "geometry": {"type": "Point", "coordinates": [-1.41731923499, 49.3768356416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ed1837e377c999b38ed12721186869c43cc3fc1", "fields": {"nom_de_la_commune": "LE DEZERT", "libell_d_acheminement": "LE DEZERT", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50161"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8accb703891bc208913456bd8e54f614825ab877", "fields": {"nom_de_la_commune": "DONVILLE LES BAINS", "libell_d_acheminement": "DONVILLE LES BAINS", "code_postal": "50350", "coordonnees_gps": [48.8509752582, -1.57276241598], "code_commune_insee": "50165"}, "geometry": {"type": "Point", "coordinates": [-1.57276241598, 48.8509752582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a70e3e9ed2e206dcbbe4f94a28bb73cab3cb0c50", "fields": {"nom_de_la_commune": "DOVILLE", "libell_d_acheminement": "DOVILLE", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50166"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14869113663ceaca0241b0d5f8a00f1986398fd4", "fields": {"nom_de_la_commune": "ECULLEVILLE", "libell_d_acheminement": "ECULLEVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50171"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74c5003e9a1cf44cb04275f65c800814db9fc724", "fields": {"nom_de_la_commune": "FEUGERES", "libell_d_acheminement": "FEUGERES", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50181"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd84b2de9f9925ee7f6421869b03662e55791dd2", "fields": {"nom_de_la_commune": "LA FEUILLIE", "libell_d_acheminement": "LA FEUILLIE", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50182"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e98bf38cf026432392251df04f02fde591b72df", "fields": {"nom_de_la_commune": "FOLLIGNY", "libell_d_acheminement": "FOLLIGNY", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50188"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001b3bb0426c1feaa69f2d120debd5a1f3fee16b", "fields": {"nom_de_la_commune": "FRESVILLE", "libell_d_acheminement": "FRESVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50194"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c2ef453aa6ebdf94c06b4e906dc8c51299771c", "fields": {"code_postal": "50450", "code_commune_insee": "50197", "libell_d_acheminement": "GAVRAY", "ligne_5": "LE MESNIL HUE", "nom_de_la_commune": "GAVRAY", "coordonnees_gps": [48.9111916966, -1.32149043714]}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efad327825ef1dc04019c2e3002a0a551029afc", "fields": {"code_postal": "50330", "code_commune_insee": "50209", "libell_d_acheminement": "GONNEVILLE LE THEIL", "ligne_5": "LE THEIL", "nom_de_la_commune": "GONNEVILLE LE THEIL", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c59196c5e635c5dafdaeb9c03166841363fdb51", "fields": {"nom_de_la_commune": "GOUVILLE SUR MER", "libell_d_acheminement": "GOUVILLE SUR MER", "code_postal": "50560", "coordonnees_gps": [49.1045282282, -1.56820466944], "code_commune_insee": "50215"}, "geometry": {"type": "Point", "coordinates": [-1.56820466944, 49.1045282282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70888b67765704fcaa90a4dd84d07988d020472", "fields": {"nom_de_la_commune": "GENESTELLE", "libell_d_acheminement": "GENESTELLE", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07093"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf288850c694cc6738e3ccf8ea31353163a075f0", "fields": {"nom_de_la_commune": "CHAMBONAS", "libell_d_acheminement": "CHAMBONAS", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07050"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf60e7299de417e86f7d1057e3c72ce8044d54c0", "fields": {"nom_de_la_commune": "BROSSAINC", "libell_d_acheminement": "BROSSAINC", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07044"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85f0240a6399573da866aba005c1bdd2564ed480", "fields": {"nom_de_la_commune": "DEVESSET", "libell_d_acheminement": "DEVESSET", "code_postal": "07320", "coordonnees_gps": [45.0373045758, 4.40809753225], "code_commune_insee": "07080"}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af5cb99408d41d7e527a13a7e96b7526bf2dec6e", "fields": {"nom_de_la_commune": "GOURDON", "libell_d_acheminement": "GOURDON", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07098"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c861cbb12ae5d82d0718627ea744b35b354284ef", "fields": {"nom_de_la_commune": "BURZET", "libell_d_acheminement": "BURZET", "code_postal": "07450", "coordonnees_gps": [44.7645631689, 4.23610675314], "code_commune_insee": "07045"}, "geometry": {"type": "Point", "coordinates": [4.23610675314, 44.7645631689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c7b7f8992acb96cae096a3b26b556f16445643", "fields": {"nom_de_la_commune": "INTRES", "libell_d_acheminement": "INTRES", "code_postal": "07320", "coordonnees_gps": [45.0373045758, 4.40809753225], "code_commune_insee": "07103"}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4f453a3dea9028fff55b4bf8ffb1a99d40b9630", "fields": {"nom_de_la_commune": "COUX", "libell_d_acheminement": "COUX", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07072"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ca9124557d9c185c062d3b469dfe68cdcdae10", "fields": {"nom_de_la_commune": "ETREPIGNY", "libell_d_acheminement": "ETREPIGNY", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08158"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a8cb0609646c14aa9c5e45e9449ec6c7440943e", "fields": {"nom_de_la_commune": "L ECAILLE", "libell_d_acheminement": "L ECAILLE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08148"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a93ccbf9433f2e74aaf2f27032c8d85adb789ec3", "fields": {"nom_de_la_commune": "L ECHELLE", "libell_d_acheminement": "L ECHELLE", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08149"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f93b77ee268bddaf83c3c7ef50fbb48cfa737a", "fields": {"nom_de_la_commune": "ESTREBAY", "libell_d_acheminement": "ESTREBAY", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08154"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b1c651bb8352ca8dcd6a0740e6c8d18f6c68827", "fields": {"nom_de_la_commune": "EXERMONT", "libell_d_acheminement": "EXERMONT", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08161"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a34fd5023381756cc119dfaf2288c13f094e11e1", "fields": {"nom_de_la_commune": "ETALLE", "libell_d_acheminement": "ETALLE", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08155"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0548aa630766246a0c5c178cc994ddc5831c4bca", "fields": {"nom_de_la_commune": "DOUZY", "libell_d_acheminement": "DOUZY", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08145"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b1e47a086e8f3521e4d230e84b01ffc7af7be4", "fields": {"nom_de_la_commune": "ECLY", "libell_d_acheminement": "ECLY", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08150"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99bd981fce377b4096e5bebcbfd03464fe2d3abf", "fields": {"nom_de_la_commune": "FRAILLICOURT", "libell_d_acheminement": "FRAILLICOURT", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08178"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb74423f030b835686a61897a2e0895d3aee020f", "fields": {"nom_de_la_commune": "FROMELENNES", "libell_d_acheminement": "FROMELENNES", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08183"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "217a6318a7a0af5c566d1606ba5210465ac2c14c", "fields": {"nom_de_la_commune": "HAGNICOURT", "libell_d_acheminement": "HAGNICOURT", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08205"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2646ed321017c4b931d8b01e8cde8d672893242d", "fields": {"nom_de_la_commune": "GRANDHAM", "libell_d_acheminement": "GRANDHAM", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08197"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44b3a87ac9785cb8740fcc90bb171ae0f31353af", "fields": {"nom_de_la_commune": "GRUYERES", "libell_d_acheminement": "GRUYERES", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08201"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df580b0b2bd3a35e340b6c76169f261fc78544d5", "fields": {"nom_de_la_commune": "LE FRETY", "libell_d_acheminement": "LE FRETY", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08182"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a4a1a7f26a213555e8474dc631243867dfe7a1f", "fields": {"nom_de_la_commune": "HARGNIES", "libell_d_acheminement": "HARGNIES", "code_postal": "08170", "coordonnees_gps": [49.9974542935, 4.7285296063], "code_commune_insee": "08214"}, "geometry": {"type": "Point", "coordinates": [4.7285296063, 49.9974542935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a23892928f1a81f6c3cced2a7c71f5be94a36800", "fields": {"nom_de_la_commune": "HARCY", "libell_d_acheminement": "HARCY", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08212"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02f1581d6d13187eb183d59b401925981305cced", "fields": {"code_postal": "08380", "code_commune_insee": "08319", "libell_d_acheminement": "NEUVILLE LEZ BEAULIEU", "ligne_5": "BEAULIEU", "nom_de_la_commune": "NEUVILLE LEZ BEAULIEU", "coordonnees_gps": [49.91319612, 4.30466764624]}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17a77bd7c39785753ea97d79250f1e39098ff37e", "fields": {"code_postal": "08700", "code_commune_insee": "08328", "libell_d_acheminement": "NOUZONVILLE", "ligne_5": "MEILLIER FONTAINE", "nom_de_la_commune": "NOUZONVILLE", "coordonnees_gps": [49.8150344171, 4.80706022542]}, "geometry": {"type": "Point", "coordinates": [4.80706022542, 49.8150344171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd06b6c8faaf94a9cad53437f4791a8a54fde0e", "fields": {"nom_de_la_commune": "LA NEUVILLE EN TOURNE A FUY", "libell_d_acheminement": "NEUVILLE EN TOURNE A FUY", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08320"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dcd4fed8d1423c7638a5b35eea8bb469d6aaf87", "fields": {"nom_de_la_commune": "LA NEUVILLE AUX JOUTES", "libell_d_acheminement": "LA NEUVILLE AUX JOUTES", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08318"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7656f9385b5eafa0f0fa828c3ec8eb444d4ca7d8", "fields": {"nom_de_la_commune": "MURTIN ET BOGNY", "libell_d_acheminement": "MURTIN ET BOGNY", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08312"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "335ae215178f6f7aee68863ee1023225f9e991d4", "fields": {"nom_de_la_commune": "NOVION PORCIEN", "libell_d_acheminement": "NOVION PORCIEN", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08329"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1470ccd425cd343b3f610948ed0f8fdca2c0e0e7", "fields": {"nom_de_la_commune": "NEUVILLE DAY", "libell_d_acheminement": "NEUVILLE DAY", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08321"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5cbe61d5b97ef0bac2898d5f01e75d3a00e7d0d", "fields": {"nom_de_la_commune": "OLIZY PRIMAT", "libell_d_acheminement": "OLIZY PRIMAT", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08333"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c82a4c0448cd967c7c9bb5830b8a3f1dc1a1bdc", "fields": {"nom_de_la_commune": "NEUFMAISON", "libell_d_acheminement": "NEUFMAISON", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08315"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5b4e3080fcc304e71244cec3f3a6fc13ff34f6e", "fields": {"nom_de_la_commune": "NEUVIZY", "libell_d_acheminement": "NEUVIZY", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08324"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f26c08734b0c2dda0c4002cda50c6c0f6c13c1c", "fields": {"nom_de_la_commune": "VILLERS DEVANT MOUZON", "libell_d_acheminement": "VILLERS DEVANT MOUZON", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08477"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d929cc6cd2257372dd86ca9241452310c987b9d0", "fields": {"nom_de_la_commune": "VILLERS LE TILLEUL", "libell_d_acheminement": "VILLERS LE TILLEUL", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08478"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1063cf7ac88b865aabd8d23dbd65f1649a5748ae", "fields": {"nom_de_la_commune": "VIEUX LES ASFELD", "libell_d_acheminement": "VIEUX LES ASFELD", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08473"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf4d4deef4f00e4ec5cbdc14ec5788ee12052e7d", "fields": {"nom_de_la_commune": "VAUX LES RUBIGNY", "libell_d_acheminement": "VAUX LES RUBIGNY", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08465"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cde2ed73be202f7deac17b78c6fe3fa30ebdff6", "fields": {"nom_de_la_commune": "VAUX LES MOUZON", "libell_d_acheminement": "VAUX LES MOUZON", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08466"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ac2813e411ea5bee3d2041933d095de04fa8b27", "fields": {"nom_de_la_commune": "THIN LE MOUTIER", "libell_d_acheminement": "THIN LE MOUTIER", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08449"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c1c8521ca59387e877841bf283782660374dba1", "fields": {"nom_de_la_commune": "VRIGNE MEUSE", "libell_d_acheminement": "VRIGNE MEUSE", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08492"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b9f5426f6da95d177f6680c7b35e2bfd46e3214", "fields": {"nom_de_la_commune": "TOURTERON", "libell_d_acheminement": "TOURTERON", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08458"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "959f8b6886b50abff62595068bff6e86473b9b03", "fields": {"nom_de_la_commune": "VOUZIERS", "libell_d_acheminement": "VOUZIERS", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08490"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47d1b420e618dfab97d4557b886e261b1c6aa597", "fields": {"nom_de_la_commune": "VILLY", "libell_d_acheminement": "VILLY", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08485"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae643e857ce12bbf5de50f476f4271a422dada95", "fields": {"nom_de_la_commune": "MATTON ET CLEMENCY", "libell_d_acheminement": "MATTON ET CLEMENCY", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08281"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc54bdfcc0bc851054698250ef43db37524c9d9", "fields": {"nom_de_la_commune": "MONTIGNY SUR VENCE", "libell_d_acheminement": "MONTIGNY SUR VENCE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08305"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06cb2ff58d2a7d8752e8af15ceba88c695179c75", "fields": {"nom_de_la_commune": "MONTCY NOTRE DAME", "libell_d_acheminement": "MONTCY NOTRE DAME", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08298"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37874ea19449afe68eeaeca8410f0eb319020aa0", "fields": {"nom_de_la_commune": "MAUBERT FONTAINE", "libell_d_acheminement": "MAUBERT FONTAINE", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08282"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e5617ba65f03e8f207fdc17fd95aa6971c1006a", "fields": {"nom_de_la_commune": "LE MONT DIEU", "libell_d_acheminement": "LE MONT DIEU", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08300"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a64c963b8f7ed61f7b99672f6637b65ae109da71", "fields": {"nom_de_la_commune": "MONTMEILLANT", "libell_d_acheminement": "MONTMEILLANT", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08307"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f731e6dcd36e365924a6d4f53f6b13e3a0b0000a", "fields": {"nom_de_la_commune": "MONTCORNET", "libell_d_acheminement": "MONTCORNET", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08297"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e16c3b7d0f3060704cf2ccc1a93705a8597a468d", "fields": {"nom_de_la_commune": "MONTGON", "libell_d_acheminement": "MONTGON", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08301"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c06fd67c294299863f764fb3f91b32cdac6d59", "fields": {"nom_de_la_commune": "MOIRY", "libell_d_acheminement": "MOIRY", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08293"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf0eb2d7575aec14c1e9740fff187bd530b47987", "fields": {"nom_de_la_commune": "MARCQ", "libell_d_acheminement": "MARCQ", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08274"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf2ab8ec5bc4db729f7e0ef18035a8f8bf64ab55", "fields": {"code_postal": "08220", "code_commune_insee": "08366", "libell_d_acheminement": "ROCQUIGNY", "ligne_5": "MAINBRESSON", "nom_de_la_commune": "ROCQUIGNY", "coordonnees_gps": [49.6447010155, 4.20764091673]}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452ada11fd9de9a76f4fc1b34ab0ea22d20164eb", "fields": {"nom_de_la_commune": "ROUVROY SUR AUDRY", "libell_d_acheminement": "ROUVROY SUR AUDRY", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08370"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78bef244e4d4c9e5d3c77b8c6256e210d07facec", "fields": {"nom_de_la_commune": "POILCOURT SYDNEY", "libell_d_acheminement": "POILCOURT SYDNEY", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08340"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "637658abab66558877f5206a399cc3e55b1c2c89", "fields": {"nom_de_la_commune": "RILLY SUR AISNE", "libell_d_acheminement": "RILLY SUR AISNE", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08364"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f51eb59a7b913c435eba9d5c1269d2d8e4fb6ad", "fields": {"nom_de_la_commune": "RENNEVILLE", "libell_d_acheminement": "RENNEVILLE", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08360"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bd9cd7fcf2ddfcb1ba98a6fc02ab31094349dfd", "fields": {"nom_de_la_commune": "ROCQUIGNY", "libell_d_acheminement": "ROCQUIGNY", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08366"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be8b982acc3eb20d5906c431cd76cbd4bfaf3afd", "fields": {"nom_de_la_commune": "ST MENGES", "libell_d_acheminement": "ST MENGES", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08391"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b97028eeb9ba29cc478263cea667a057fc957e2d", "fields": {"nom_de_la_commune": "RUBIGNY", "libell_d_acheminement": "RUBIGNY", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08372"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a20ef109b01e2ea311d1d84f8cbe3f9c7b270908", "fields": {"nom_de_la_commune": "ROIZY", "libell_d_acheminement": "ROIZY", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08368"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95f32af2af41e8d2c039593041e89f26621c2815", "fields": {"nom_de_la_commune": "OMONT", "libell_d_acheminement": "OMONT", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08335"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2ac5829ecf0dee76fca059113b7d35ab777b59", "fields": {"nom_de_la_commune": "ST QUENTIN LE PETIT", "libell_d_acheminement": "ST QUENTIN LE PETIT", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08396"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccc5433248a2b2fdf7f7b6bc9be48feb9c8d709d", "fields": {"nom_de_la_commune": "SAVIGNY SUR AISNE", "libell_d_acheminement": "SAVIGNY SUR AISNE", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08406"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cc0b55cf7210e057359dd1d2cdda1b4eca697c", "fields": {"nom_de_la_commune": "SAULT LES RETHEL", "libell_d_acheminement": "SAULT LES RETHEL", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08403"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610e85e379d85693ad7e1bc22fd0397c25a8049b", "fields": {"nom_de_la_commune": "SAULT ST REMY", "libell_d_acheminement": "SAULT ST REMY", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08404"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb6870670009446250caad7cfd8088e39039f2a0", "fields": {"nom_de_la_commune": "SOMMERANCE", "libell_d_acheminement": "SOMMERANCE", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08425"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "074638a2aeac205ba6fd69f876d4a0dfa9f04d0f", "fields": {"nom_de_la_commune": "SOMMAUTHE", "libell_d_acheminement": "SOMMAUTHE", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08424"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9d58cb9a6185ec78b4fe3350da48b7452224d5", "fields": {"nom_de_la_commune": "SECHAULT", "libell_d_acheminement": "SECHAULT", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08407"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1a571ec9c358cd52c8c6a9b117257a870a03deb", "fields": {"nom_de_la_commune": "TAGNON", "libell_d_acheminement": "TAGNON", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08435"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824951ffd35b4d65fdb2e62c5d653b6a4bee9b9f", "fields": {"nom_de_la_commune": "SEUIL", "libell_d_acheminement": "SEUIL", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08416"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5356223f354e6b3198e7e2c71559d9dbcb6f74f2", "fields": {"nom_de_la_commune": "SEDAN", "libell_d_acheminement": "SEDAN", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08409"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f03cbe68cd388197f0139a2beb409051b1b937", "fields": {"nom_de_la_commune": "CARLA DE ROQUEFORT", "libell_d_acheminement": "CARLA DE ROQUEFORT", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09080"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cdea2fab5904bfbdddac654aafb7bb1062f5b30", "fields": {"nom_de_la_commune": "ENCOURTIECH", "libell_d_acheminement": "ENCOURTIECH", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09110"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1609f9b073c92decd0e9c9b565c46d9612f40d74", "fields": {"nom_de_la_commune": "ENGOMER", "libell_d_acheminement": "ENGOMER", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09111"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f40478e76d82339406ec4cb72e0b310e1b7bb756", "fields": {"nom_de_la_commune": "FORNEX", "libell_d_acheminement": "FORNEX", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09123"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1d4d12aaf84890d4aec32fe0cf176ec78877e61", "fields": {"nom_de_la_commune": "FOIX", "libell_d_acheminement": "FOIX", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09122"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb89c475b64da897aeb471c36c11222f49535c0", "fields": {"code_postal": "09800", "code_commune_insee": "09035", "libell_d_acheminement": "BALAGUERES", "ligne_5": "BALAGUE", "nom_de_la_commune": "BALAGUERES", "coordonnees_gps": [42.8802373016, 0.976010210218]}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3835df97ff5ca989ecea2573b404d55f3c09f1dc", "fields": {"nom_de_la_commune": "BEDEILHAC ET AYNAT", "libell_d_acheminement": "BEDEILHAC ET AYNAT", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09045"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d83ca98389dfd5aa3ca6416a012537e5289490c1", "fields": {"nom_de_la_commune": "WILLIERS", "libell_d_acheminement": "WILLIERS", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08501"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4827b2ebcf71cfaaf6bbd8465b09493f4458a43", "fields": {"nom_de_la_commune": "BALACET", "libell_d_acheminement": "BALACET", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09034"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb819046d7995ee54f3567d447cec04433e64d54", "fields": {"nom_de_la_commune": "WAGNON", "libell_d_acheminement": "WAGNON", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08496"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fbd9878e4c840ec7088e4980f49b44a8514f335", "fields": {"nom_de_la_commune": "BAGERT", "libell_d_acheminement": "BAGERT", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09033"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26b8846bae5869251deadae4890393671c0f42bb", "fields": {"nom_de_la_commune": "ARTIX", "libell_d_acheminement": "ARTIX", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09021"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "770757e76cd882e611963b615db3395a08f78a43", "fields": {"nom_de_la_commune": "WARCQ", "libell_d_acheminement": "WARCQ", "code_postal": "08000", "coordonnees_gps": [49.7589748085, 4.71308364849], "code_commune_insee": "08497"}, "geometry": {"type": "Point", "coordinates": [4.71308364849, 49.7589748085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbae88666533990c24d3f6f3fdad006e03718545", "fields": {"nom_de_la_commune": "AUZAT", "libell_d_acheminement": "AUZAT", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09030"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f209aacd369dcfdf528e71916ed0c6e252afc356", "fields": {"nom_de_la_commune": "YONCQ", "libell_d_acheminement": "YONCQ", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08502"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "173ffea16b587d13e6b51cadbbed139e1c4a4dc0", "fields": {"nom_de_la_commune": "LEFFINCOURT", "libell_d_acheminement": "LEFFINCOURT", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08250"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6756cf2d271411e3b42c838293fb8378870dc7d6", "fields": {"nom_de_la_commune": "HOUDILCOURT", "libell_d_acheminement": "HOUDILCOURT", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08229"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a8f3c029a51bd904942e8cb0303f4b0c78adf6c", "fields": {"nom_de_la_commune": "HAUTEVILLE", "libell_d_acheminement": "HAUTEVILLE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08219"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c7efe296d2bdc23479eb4d6e4e81a1a51f09d7e", "fields": {"nom_de_la_commune": "LOGNY BOGNY", "libell_d_acheminement": "LOGNY BOGNY", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08257"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acad0ec1e454f9905a685678aa0a637e4aa09664", "fields": {"nom_de_la_commune": "HARRICOURT", "libell_d_acheminement": "HARRICOURT", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08215"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b948a5b9a126bcd1b2774ed25c3a205f0a25e86", "fields": {"nom_de_la_commune": "JONVAL", "libell_d_acheminement": "JONVAL", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08238"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db85a34aba60fc08904934b19eb82dcbb2c4281", "fields": {"nom_de_la_commune": "JANDUN", "libell_d_acheminement": "JANDUN", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08236"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5baf98f4a76a8ccaf1770f621ec96aa5e7b4dd54", "fields": {"nom_de_la_commune": "HAYBES", "libell_d_acheminement": "HAYBES", "code_postal": "08170", "coordonnees_gps": [49.9974542935, 4.7285296063], "code_commune_insee": "08222"}, "geometry": {"type": "Point", "coordinates": [4.7285296063, 49.9974542935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97f8f944d8823ed5a279e354417439499b5e9b8", "fields": {"nom_de_la_commune": "HAULME", "libell_d_acheminement": "HAULME", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08217"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7781fc7c15c8a25515844460b45b2ed6c1a2112d", "fields": {"nom_de_la_commune": "LUMES", "libell_d_acheminement": "LUMES", "code_postal": "08440", "coordonnees_gps": [49.7465336406, 4.81357930291], "code_commune_insee": "08263"}, "geometry": {"type": "Point", "coordinates": [4.81357930291, 49.7465336406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2ef066ac1c95a9124c67b2a1d878300f5dd79c", "fields": {"nom_de_la_commune": "CAZALS DES BAYLES", "libell_d_acheminement": "CAZALS DES BAYLES", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09089"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b010c548365bbde105927502da3f0f04b5590dc7", "fields": {"nom_de_la_commune": "GENNETEIL", "libell_d_acheminement": "GENNETEIL", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49150"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79a3b0fd923667989ecb0a53a98b1809d9fad978", "fields": {"nom_de_la_commune": "GREZ NEUVILLE", "libell_d_acheminement": "GREZ NEUVILLE", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49155"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e112fe8ca581e49abc8c3e10d7e689506297dd7", "fields": {"nom_de_la_commune": "GRUGE L HOPITAL", "libell_d_acheminement": "GRUGE L HOPITAL", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49156"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f03ea7be61fd93dd0cc7256249964cb7a36d08ce", "fields": {"nom_de_la_commune": "HUILLE", "libell_d_acheminement": "HUILLE", "code_postal": "49430", "coordonnees_gps": [47.6620353083, -0.269301702185], "code_commune_insee": "49159"}, "geometry": {"type": "Point", "coordinates": [-0.269301702185, 47.6620353083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d514889d47755568324a68858f71a59a8a2d4420", "fields": {"nom_de_la_commune": "LE LOUROUX BECONNAIS", "libell_d_acheminement": "LE LOUROUX BECONNAIS", "code_postal": "49370", "coordonnees_gps": [47.5234772434, -0.840270654951], "code_commune_insee": "49183"}, "geometry": {"type": "Point", "coordinates": [-0.840270654951, 47.5234772434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b243689ac2f58563bea42111d40c28dfe4dce72", "fields": {"nom_de_la_commune": "MARANS", "libell_d_acheminement": "MARANS", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49187"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c65f1a10af4a3b2981cdcf097ea6e8c16f2425", "fields": {"nom_de_la_commune": "MEIGNE LE VICOMTE", "libell_d_acheminement": "MEIGNE LE VICOMTE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49197"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea5b3ad6d0e2b547e519d429a7406e311168eeb9", "fields": {"code_postal": "49220", "code_commune_insee": "49200", "libell_d_acheminement": "LONGUENEE EN ANJOU", "ligne_5": "PRUILLE", "nom_de_la_commune": "LONGUENEE EN ANJOU", "coordonnees_gps": [47.6290283416, -0.733017824354]}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29cdc5c4f97379f292e3841ffdb2eea1eb08d926", "fields": {"code_postal": "49770", "code_commune_insee": "49200", "libell_d_acheminement": "LONGUENEE EN ANJOU", "ligne_5": "LE PLESSIS MACE", "nom_de_la_commune": "LONGUENEE EN ANJOU", "coordonnees_gps": [47.5603869664, -0.682921091412]}, "geometry": {"type": "Point", "coordinates": [-0.682921091412, 47.5603869664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dedef603b6a635fd252b02100490c8a5b640ba43", "fields": {"nom_de_la_commune": "MEON", "libell_d_acheminement": "MEON", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49202"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd09458186fbb7d8e3c233bac2f7749660dfec9", "fields": {"nom_de_la_commune": "MONTIGNE LES RAIRIES", "libell_d_acheminement": "MONTIGNE LES RAIRIES", "code_postal": "49430", "coordonnees_gps": [47.6620353083, -0.269301702185], "code_commune_insee": "49209"}, "geometry": {"type": "Point", "coordinates": [-0.269301702185, 47.6620353083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cffe9da52e53e9e7e54fb1a638c55c906c6e5c02", "fields": {"nom_de_la_commune": "MONTREUIL BELLAY", "libell_d_acheminement": "MONTREUIL BELLAY", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49215"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3dc2e2590a684c62b834d8e72e581399afc1301", "fields": {"nom_de_la_commune": "NEUILLE", "libell_d_acheminement": "NEUILLE", "code_postal": "49680", "coordonnees_gps": [47.3279848999, -0.0489537921186], "code_commune_insee": "49224"}, "geometry": {"type": "Point", "coordinates": [-0.0489537921186, 47.3279848999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe886b534446485f90270ac53ca053cae361f457", "fields": {"nom_de_la_commune": "PARCAY LES PINS", "libell_d_acheminement": "PARCAY LES PINS", "code_postal": "49390", "coordonnees_gps": [47.4059865072, 0.072262523742], "code_commune_insee": "49234"}, "geometry": {"type": "Point", "coordinates": [0.072262523742, 47.4059865072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b092b83af71f0fe92d6a7e77612cff6a00268a53", "fields": {"nom_de_la_commune": "LA PELLERINE", "libell_d_acheminement": "LA PELLERINE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49237"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfea641dda4a8b51cd786adf1acf1d0f19f8ba6a", "fields": {"nom_de_la_commune": "ST CYR EN BOURG", "libell_d_acheminement": "ST CYR EN BOURG", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49274"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62fdf3dd0c0cfbd107d3d6a327703dc9d74314af", "fields": {"nom_de_la_commune": "ST LAMBERT LA POTHERIE", "libell_d_acheminement": "ST LAMBERT LA POTHERIE", "code_postal": "49070", "coordonnees_gps": [47.4753092045, -0.662263154222], "code_commune_insee": "49294"}, "geometry": {"type": "Point", "coordinates": [-0.662263154222, 47.4753092045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82deb4e5157efd92a4403fb350803d230456639e", "fields": {"nom_de_la_commune": "ST LEGER SOUS CHOLET", "libell_d_acheminement": "ST LEGER SOUS CHOLET", "code_postal": "49280", "coordonnees_gps": [47.0523447645, -0.911452920256], "code_commune_insee": "49299"}, "geometry": {"type": "Point", "coordinates": [-0.911452920256, 47.0523447645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38e711ccdbd2a65c7686b10fea31fcdff943f11d", "fields": {"code_postal": "49230", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "MONTFAUCON MONTIGNE", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "544349458a48eb92f9717d08d999801b6b742ea3", "fields": {"code_postal": "49450", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "ROUSSAY", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1753425771, -0.989795900274]}, "geometry": {"type": "Point", "coordinates": [-0.989795900274, 47.1753425771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d406b5b7596d9ebad200e8c560dd537b2676377", "fields": {"code_postal": "49250", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "ST MATHURIN SUR LOIRE", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.4313983805, -0.244193438131]}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2216936457e6bbc937876df5c4d1e43e6e0c8b0", "fields": {"nom_de_la_commune": "ST REMY LA VARENNE", "libell_d_acheminement": "ST REMY LA VARENNE", "code_postal": "49250", "coordonnees_gps": [47.4313983805, -0.244193438131], "code_commune_insee": "49317"}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac92c66b0ed5a6884c541223b6ef65ff4b094e02", "fields": {"code_postal": "49480", "code_commune_insee": "49323", "libell_d_acheminement": "VERRIERES EN ANJOU", "ligne_5": "ST SYLVAIN D ANJOU", "nom_de_la_commune": "VERRIERES EN ANJOU", "coordonnees_gps": [47.5121402522, -0.476038939286]}, "geometry": {"type": "Point", "coordinates": [-0.476038939286, 47.5121402522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46cd919580738f32c3d69c3d420f01a2d0cff170", "fields": {"nom_de_la_commune": "SARRIGNE", "libell_d_acheminement": "SARRIGNE", "code_postal": "49800", "coordonnees_gps": [47.4402094612, -0.379405488422], "code_commune_insee": "49326"}, "geometry": {"type": "Point", "coordinates": [-0.379405488422, 47.4402094612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f0a4b7bcfd5ac54a00ae21e58118b188db922ad", "fields": {"nom_de_la_commune": "SAULGE L HOPITAL", "libell_d_acheminement": "SAULGE L HOPITAL", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49327"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eddee84721409826e2fef2cbb862afb690133960", "fields": {"nom_de_la_commune": "SAUMUR", "libell_d_acheminement": "SAUMUR", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49328"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87168810d4ffd92e7bedcd0361ca34dc07a8af81", "fields": {"code_postal": "49400", "code_commune_insee": "49328", "libell_d_acheminement": "SAUMUR", "ligne_5": "ST HILAIRE ST FLORENT", "nom_de_la_commune": "SAUMUR", "coordonnees_gps": [47.2533599269, -0.096565442499]}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "472f654ca585f4f765bc29558036e9e5753683e7", "fields": {"nom_de_la_commune": "SEGRE", "libell_d_acheminement": "SEGRE", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49331"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1f5264ff21c2a230fa2f6ce4b7d1186482bde7", "fields": {"nom_de_la_commune": "SOEURDRES", "libell_d_acheminement": "SOEURDRES", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49335"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06b9235d3755583408f8261ea351872d1af36061", "fields": {"nom_de_la_commune": "SOULAINES SUR AUBANCE", "libell_d_acheminement": "SOULAINES SUR AUBANCE", "code_postal": "49610", "coordonnees_gps": [47.3759967288, -0.537909548513], "code_commune_insee": "49338"}, "geometry": {"type": "Point", "coordinates": [-0.537909548513, 47.3759967288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6ac955b3a8d44a0a226151175ad354e4fa408ff", "fields": {"nom_de_la_commune": "SOULAIRE ET BOURG", "libell_d_acheminement": "SOULAIRE ET BOURG", "code_postal": "49460", "coordonnees_gps": [47.5717691196, -0.578911791129], "code_commune_insee": "49339"}, "geometry": {"type": "Point", "coordinates": [-0.578911791129, 47.5717691196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50fc178c81177ba959ed16d8af431f5b67f11804", "fields": {"nom_de_la_commune": "LA TESSOUALLE", "libell_d_acheminement": "LA TESSOUALLE", "code_postal": "49280", "coordonnees_gps": [47.0523447645, -0.911452920256], "code_commune_insee": "49343"}, "geometry": {"type": "Point", "coordinates": [-0.911452920256, 47.0523447645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001b7d58656b5e918bc930dd9d5c38d579fa6379", "fields": {"nom_de_la_commune": "TRELAZE", "libell_d_acheminement": "TRELAZE", "code_postal": "49800", "coordonnees_gps": [47.4402094612, -0.379405488422], "code_commune_insee": "49353"}, "geometry": {"type": "Point", "coordinates": [-0.379405488422, 47.4402094612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33a85c321a677d016b1f4f1f21256149c845ecb4", "fields": {"nom_de_la_commune": "TREMENTINES", "libell_d_acheminement": "TREMENTINES", "code_postal": "49340", "coordonnees_gps": [47.1051947253, -0.750368480003], "code_commune_insee": "49355"}, "geometry": {"type": "Point", "coordinates": [-0.750368480003, 47.1051947253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fa3ea4e752487f60bc95cb17c979dfae4d835e2", "fields": {"nom_de_la_commune": "VARENNES SUR LOIRE", "libell_d_acheminement": "VARENNES SUR LOIRE", "code_postal": "49730", "coordonnees_gps": [47.2331093942, 0.0334548671675], "code_commune_insee": "49361"}, "geometry": {"type": "Point", "coordinates": [0.0334548671675, 47.2331093942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53df0789420fdf98de59042c322da9079a049203", "fields": {"nom_de_la_commune": "VARRAINS", "libell_d_acheminement": "VARRAINS", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49362"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56600958fcf82cb296de481e599bdd39572be801", "fields": {"code_postal": "49220", "code_commune_insee": "49367", "libell_d_acheminement": "ERDRE EN ANJOU", "ligne_5": "GENE", "nom_de_la_commune": "ERDRE EN ANJOU", "coordonnees_gps": [47.6290283416, -0.733017824354]}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f44039d153369a368e046292277a86cba9519b8", "fields": {"code_postal": "49370", "code_commune_insee": "49367", "libell_d_acheminement": "ERDRE EN ANJOU", "ligne_5": "LA POUEZE", "nom_de_la_commune": "ERDRE EN ANJOU", "coordonnees_gps": [47.5234772434, -0.840270654951]}, "geometry": {"type": "Point", "coordinates": [-0.840270654951, 47.5234772434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49ec5e64b1b06e7a185398bf27a95a874e5eb9c", "fields": {"nom_de_la_commune": "VERNANTES", "libell_d_acheminement": "VERNANTES", "code_postal": "49390", "coordonnees_gps": [47.4059865072, 0.072262523742], "code_commune_insee": "49368"}, "geometry": {"type": "Point", "coordinates": [0.072262523742, 47.4059865072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98d79eb9683fae2413e73b43033c3232836c4e2d", "fields": {"nom_de_la_commune": "VERRIE", "libell_d_acheminement": "VERRIE", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49370"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d41071abfa8c6c19dea4ea2b77edf7d8943861", "fields": {"code_postal": "49310", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "TREMONT", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cbb3018f0c44da83bc559055799d6b4a5ba1609", "fields": {"nom_de_la_commune": "VIVY", "libell_d_acheminement": "VIVY", "code_postal": "49680", "coordonnees_gps": [47.3279848999, -0.0489537921186], "code_commune_insee": "49378"}, "geometry": {"type": "Point", "coordinates": [-0.0489537921186, 47.3279848999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc3eead4158c6c6acaf9f148d714d39e2f3c50d", "fields": {"nom_de_la_commune": "ANNEVILLE EN SAIRE", "libell_d_acheminement": "ANNEVILLE EN SAIRE", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50013"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8812e0f192f1001779183ddc1b58cd0356cf4ec", "fields": {"nom_de_la_commune": "ANNOVILLE", "libell_d_acheminement": "ANNOVILLE", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50015"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb03e8ce8160561313628cb12a45ebb1a0ca94d", "fields": {"nom_de_la_commune": "AUDERVILLE", "libell_d_acheminement": "AUDERVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50020"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4061ad8c361c73837ab0e2f4756cc38683b244b", "fields": {"nom_de_la_commune": "AUVERS", "libell_d_acheminement": "AUVERS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50023"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3de138e322bc91506258a3f59b3b39e90308c130", "fields": {"nom_de_la_commune": "BESNEVILLE", "libell_d_acheminement": "BESNEVILLE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50049"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9349d9f1fa60bde921e992befbd6f04e38b5b8", "fields": {"nom_de_la_commune": "BIEVILLE", "libell_d_acheminement": "BIEVILLE", "code_postal": "50160", "coordonnees_gps": [49.0498306608, -0.92753197973], "code_commune_insee": "50054"}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1efbdccf89ab586af285b190a74924dced0ef0bf", "fields": {"nom_de_la_commune": "BINIVILLE", "libell_d_acheminement": "BINIVILLE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50055"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea8f08601a6cc1f5f2ba526542f5300b4fc728b", "fields": {"nom_de_la_commune": "BIVILLE", "libell_d_acheminement": "BIVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50057"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce5484d212fd355ccb0cc1299c96fcd6c1a6eb6", "fields": {"nom_de_la_commune": "LA BLOUTIERE", "libell_d_acheminement": "LA BLOUTIERE", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50060"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6461edefb4e7142aac7edbf184d43d9b7da234", "fields": {"nom_de_la_commune": "BOISYVON", "libell_d_acheminement": "BOISYVON", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50062"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17afe0fe9028ff0afbee52babc614329529b9b39", "fields": {"nom_de_la_commune": "BREHAL", "libell_d_acheminement": "BREHAL", "code_postal": "50290", "coordonnees_gps": [48.8970159466, -1.52458100267], "code_commune_insee": "50076"}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4a4d606bc97fdf3bfc8b480671143cccd1ab2c", "fields": {"nom_de_la_commune": "BRIX", "libell_d_acheminement": "BRIX", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50087"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b4fa146630d3a36fd53942844821a1d99ab9696", "fields": {"nom_de_la_commune": "BROUAINS", "libell_d_acheminement": "BROUAINS", "code_postal": "50150", "coordonnees_gps": [48.7316763227, -0.921013476497], "code_commune_insee": "50088"}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15cd7d883d926f34f7476f1a303ec9a780179793", "fields": {"nom_de_la_commune": "CAMPROND", "libell_d_acheminement": "CAMPROND", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50094"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9aa128a7e0531d68627a7a3d01a423b309bc9fb", "fields": {"code_postal": "50480", "code_commune_insee": "50099", "libell_d_acheminement": "CARENTAN LES MARAIS", "ligne_5": "ANGOVILLE AU PLAIN", "nom_de_la_commune": "CARENTAN LES MARAIS", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed9e0f503c13da420ba692e9f4063c332255a340", "fields": {"nom_de_la_commune": "CARQUEBUT", "libell_d_acheminement": "CARQUEBUT", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50103"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e954d7509fedd845c3669112abff17261ec6c4b", "fields": {"nom_de_la_commune": "CATTEVILLE", "libell_d_acheminement": "CATTEVILLE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50105"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da809a67a8e08f0e582b88b191d409bb56a47ed", "fields": {"nom_de_la_commune": "CAVIGNY", "libell_d_acheminement": "CAVIGNY", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50106"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42152c835cf016f27408403264abf1e27434ecd", "fields": {"nom_de_la_commune": "CATZ", "libell_d_acheminement": "CATZ", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50107"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "014422d508cc70832d67009b8151a55aa3c4fa9d", "fields": {"nom_de_la_commune": "CERENCES", "libell_d_acheminement": "CERENCES", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50109"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5ede3a9f2066577e316d55f8db33c07fe0243ed", "fields": {"nom_de_la_commune": "LA CHAISE BAUDOUIN", "libell_d_acheminement": "LA CHAISE BAUDOUIN", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50112"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d6000b8fafff50c803e82040909d533ac3aeb7", "fields": {"nom_de_la_commune": "LES CHAMPS DE LOSQUE", "libell_d_acheminement": "LES CHAMPS DE LOSQUE", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50119"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6c3149b672d3631ff7e2e2a8adfba24c4d3e648", "fields": {"nom_de_la_commune": "LA CHAPELLE CECELIN", "libell_d_acheminement": "LA CHAPELLE CECELIN", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50121"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6c49b4c6b42a3da0a246530178a984ed451974", "fields": {"nom_de_la_commune": "CHERBOURG EN COTENTIN", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "code_postal": "50100", "coordonnees_gps": [49.6331832109, -1.6338586934], "code_commune_insee": "50129"}, "geometry": {"type": "Point", "coordinates": [-1.6338586934, 49.6331832109]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d8aac8af55e2fc4dc5f6cfc968cb58b3125f1e", "fields": {"code_postal": "50460", "code_commune_insee": "50129", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "ligne_5": "QUERQUEVILLE", "nom_de_la_commune": "CHERBOURG EN COTENTIN", "coordonnees_gps": [49.6466043222, -1.6849502548]}, "geometry": {"type": "Point", "coordinates": [-1.6849502548, 49.6466043222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe011033bb856f28f5f3adc33d89ca57c6d34a16", "fields": {"nom_de_la_commune": "CHERENCE LE HERON", "libell_d_acheminement": "CHERENCE LE HERON", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50130"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ceed14c4a625a6007047e0343990c4b9cf596d", "fields": {"nom_de_la_commune": "CHERENCE LE ROUSSEL", "libell_d_acheminement": "CHERENCE LE ROUSSEL", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50131"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b436bf9f0201e0206b0ff2ff4197cc82d0f4acc0", "fields": {"nom_de_la_commune": "LA COLOMBE", "libell_d_acheminement": "LA COLOMBE", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50137"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f27b404d304a74400c6bc497531f12793fedbe6", "fields": {"nom_de_la_commune": "CONTRIERES", "libell_d_acheminement": "CONTRIERES", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50140"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37e36ae5a9ac0c02c89e67bef58efefd6c66284", "fields": {"code_postal": "50330", "code_commune_insee": "50142", "libell_d_acheminement": "VICQ SUR MER", "ligne_5": "VRASVILLE", "nom_de_la_commune": "VICQ SUR MER", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ec81ee7f9cb8f52aa4c94d10742c2e7cc37584", "fields": {"nom_de_la_commune": "DANGY", "libell_d_acheminement": "DANGY", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50159"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d82b01fe03239aa2dba231eeff7cae3199bc016", "fields": {"nom_de_la_commune": "DRAGEY RONTHON", "libell_d_acheminement": "DRAGEY RONTHON", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50167"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2a63006cd127077f4842e1d1f2de8853a7aec21", "fields": {"code_postal": "50220", "code_commune_insee": "50168", "libell_d_acheminement": "DUCEY LES CHERIS", "ligne_5": "LES CHERIS", "nom_de_la_commune": "DUCEY LES CHERIS", "coordonnees_gps": [48.63048639, -1.31317304025]}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2d1e3e33e4b6a73fb06e5857c531bf71256ceed", "fields": {"nom_de_la_commune": "FLOTTEMANVILLE HAGUE", "libell_d_acheminement": "FLOTTEMANVILLE HAGUE", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50187"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86b9d3a601c8c089fa545cacfb6bed88a7c99a5d", "fields": {"code_postal": "50320", "code_commune_insee": "50188", "libell_d_acheminement": "FOLLIGNY", "ligne_5": "LA BESLIERE", "nom_de_la_commune": "FOLLIGNY", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c06a15418a7ca346a7748f31fb3e9050f20adf", "fields": {"nom_de_la_commune": "LE FRESNE PORET", "libell_d_acheminement": "LE FRESNE PORET", "code_postal": "50850", "coordonnees_gps": [48.6787910778, -0.807041651633], "code_commune_insee": "50193"}, "geometry": {"type": "Point", "coordinates": [-0.807041651633, 48.6787910778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2efb39685ac51fec712561c3c23f14edaa0d550", "fields": {"nom_de_la_commune": "GATTEVILLE LE PHARE", "libell_d_acheminement": "GATTEVILLE LE PHARE", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50196"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c87b7ec19c3ee2deefbc8165e00d1c3cfeedb2f7", "fields": {"nom_de_la_commune": "GOLLEVILLE", "libell_d_acheminement": "GOLLEVILLE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50207"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d7aa47a8a96ca4da1d765b7cf7d724aeaf0bd09", "fields": {"nom_de_la_commune": "GORGES", "libell_d_acheminement": "GORGES", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50210"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e7bf7b97c9febc19f5523d8516cc50831c00076", "fields": {"code_postal": "50400", "code_commune_insee": "50218", "libell_d_acheminement": "GRANVILLE", "ligne_5": "ILES CHAUSEY", "nom_de_la_commune": "GRANVILLE", "coordonnees_gps": [48.8338992843, -1.53304864714]}, "geometry": {"type": "Point", "coordinates": [-1.53304864714, 48.8338992843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71be867bc8207f4880e8d4db0774b6e463e3db74", "fields": {"nom_de_la_commune": "GUEHEBERT", "libell_d_acheminement": "GUEHEBERT", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50223"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44372468bfd99493f46820d2b4f3a45bad8ba4fa", "fields": {"nom_de_la_commune": "HAMELIN", "libell_d_acheminement": "HAMELIN", "code_postal": "50730", "coordonnees_gps": [48.5520322078, -1.12375344809], "code_commune_insee": "50229"}, "geometry": {"type": "Point", "coordinates": [-1.12375344809, 48.5520322078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cb0bfc00e9bdc8aea5d57aae66f438976e1f270", "fields": {"nom_de_la_commune": "HARDINVAST", "libell_d_acheminement": "HARDINVAST", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50230"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc2a86cc65af78ea5bb2bcd4c4d7fa11248ca52c", "fields": {"nom_de_la_commune": "LA HAYE BELLEFOND", "libell_d_acheminement": "LA HAYE BELLEFOND", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50234"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96d7b13e68dcf49f49a1a2b3977ec1594bb5889", "fields": {"nom_de_la_commune": "LA HAYE", "libell_d_acheminement": "LA HAYE", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50236"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dff49503bb49902d69870de11f6a4429178e27e2", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "GLATIGNY", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7d2e0091dceb18917b612e1123c5ac7eaf3485", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "SURVILLE", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5424f2ba15df700ff3b2e34b6293d91d1354ac", "fields": {"nom_de_la_commune": "HELLEVILLE", "libell_d_acheminement": "HELLEVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50240"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3609943be56444c4d5f7effefb96f84df6b0e54", "fields": {"nom_de_la_commune": "LE HOMMET D ARTHENAY", "libell_d_acheminement": "LE HOMMET D ARTHENAY", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50248"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9693c419a513c7c1f12290abdee4fb2d4c302d79", "fields": {"nom_de_la_commune": "HUISNES SUR MER", "libell_d_acheminement": "HUISNES SUR MER", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50253"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70535e825d60ba77122ad384a493ebc41fa878cf", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "LA MANCELLIERE", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc9f0c7fd43c227522e5170bd25610ad8900ebc", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "LE MESNIL BOEUFS", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de379058fedac19a96ec7de8406e885c7fb12e5", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "LE MESNIL THEBAULT", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe3ed4e4dbc30a6c6187cdcf18d6354f4b95d459", "fields": {"nom_de_la_commune": "LA LANDE D AIROU", "libell_d_acheminement": "LA LANDE D AIROU", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50262"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d1b7e50df013790944ea4f7205b807b150c5265", "fields": {"nom_de_la_commune": "LIESVILLE SUR DOUVE", "libell_d_acheminement": "LIESVILLE SUR DOUVE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50269"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b6151211e0c41244faa536e4b9fd2aa04f3d43", "fields": {"code_postal": "50250", "code_commune_insee": "50273", "libell_d_acheminement": "MONTSENELLE", "ligne_5": "COIGNY", "nom_de_la_commune": "MONTSENELLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d15a24b363b4b3e69773446c1560baf700c1ef6", "fields": {"nom_de_la_commune": "LE LUOT", "libell_d_acheminement": "LE LUOT", "code_postal": "50870", "coordonnees_gps": [48.7458565845, -1.30663914164], "code_commune_insee": "50282"}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1001c953e136ed7c02baceeb972c4d497e78d8", "fields": {"nom_de_la_commune": "LE MESNIL ADELEE", "libell_d_acheminement": "LE MESNIL ADELEE", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50300"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99f1acd2d38daa55ede8d092a98aa09f1ef90ea", "fields": {"nom_de_la_commune": "SARCUS", "libell_d_acheminement": "SARCUS", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60604"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9882e55e935813112d98feac5bca3b441fd56b2a", "fields": {"nom_de_la_commune": "SARNOIS", "libell_d_acheminement": "SARNOIS", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60605"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "561655fcb39e76ebea201f2007b04d150736baec", "fields": {"nom_de_la_commune": "SEMPIGNY", "libell_d_acheminement": "SEMPIGNY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60610"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae4aaa5fd74502660142165258e92fcdbd2f901a", "fields": {"nom_de_la_commune": "SENLIS", "libell_d_acheminement": "SENLIS", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60612"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31ed94bf0882443efa0f8c958e82f1eb261c674f", "fields": {"nom_de_la_commune": "SERY MAGNEVAL", "libell_d_acheminement": "SERY MAGNEVAL", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60618"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f33498c8db24c9c4100304f04bed08b1dc1a4ca", "fields": {"nom_de_la_commune": "SILLY LE LONG", "libell_d_acheminement": "SILLY LE LONG", "code_postal": "60330", "coordonnees_gps": [49.0926155982, 2.75103506879], "code_commune_insee": "60619"}, "geometry": {"type": "Point", "coordinates": [2.75103506879, 49.0926155982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e6854e57198af8457d7819ff455094bb46d91d", "fields": {"nom_de_la_commune": "SULLY", "libell_d_acheminement": "SULLY", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60624"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c3755fcc262b7eaa97fc1509c46db47642e3ce2", "fields": {"nom_de_la_commune": "TALMONTIERS", "libell_d_acheminement": "TALMONTIERS", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60626"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42d8a9c2beab77ba6effaae3267af525a4483ed4", "fields": {"nom_de_la_commune": "THERINES", "libell_d_acheminement": "THERINES", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60629"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db8afcfa175d0da2b996a046fe16c4ba48438942", "fields": {"nom_de_la_commune": "THIEULOY ST ANTOINE", "libell_d_acheminement": "THIEULOY ST ANTOINE", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60633"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d9ff8ce468861f799d3daca82b81b6ab1af3d8", "fields": {"nom_de_la_commune": "THOUROTTE", "libell_d_acheminement": "THOUROTTE", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60636"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0bb3645bddbf811f384d7033682dfbc7b5eb643", "fields": {"nom_de_la_commune": "TOURLY", "libell_d_acheminement": "TOURLY", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60640"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3289ab4156427e87eed34dd04a85909aec6483f5", "fields": {"nom_de_la_commune": "TROISSEREUX", "libell_d_acheminement": "TROISSEREUX", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60646"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5066166e598818a5cf361b08a3c814f9cd8d1764", "fields": {"nom_de_la_commune": "VANDELICOURT", "libell_d_acheminement": "VANDELICOURT", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60654"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ebd1198b198d82a1751289b443ff186afce52e", "fields": {"nom_de_la_commune": "VARESNES", "libell_d_acheminement": "VARESNES", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60655"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f41fbe8f8a7750a5fbb7237fd9d976a620adae57", "fields": {"nom_de_la_commune": "VARINFROY", "libell_d_acheminement": "VARINFROY", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60656"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2750fdd5d23293a574dda334f91e1fb95e5b0a", "fields": {"nom_de_la_commune": "VAUDANCOURT", "libell_d_acheminement": "VAUDANCOURT", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60659"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09f9d3e0b16c2ac5d5f61caacb90b1442c31d4c3", "fields": {"nom_de_la_commune": "LE VAUMAIN", "libell_d_acheminement": "LE VAUMAIN", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60660"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9143ccf8e724d7cb8d4f0d02f54b8aa0d3300b1d", "fields": {"nom_de_la_commune": "VAUMOISE", "libell_d_acheminement": "VAUMOISE", "code_postal": "60117", "coordonnees_gps": [49.2419560642, 2.9827380143], "code_commune_insee": "60661"}, "geometry": {"type": "Point", "coordinates": [2.9827380143, 49.2419560642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3adc04fced98df9a60d2122da8b02f48f88ceca3", "fields": {"nom_de_la_commune": "VENDEUIL CAPLY", "libell_d_acheminement": "VENDEUIL CAPLY", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60664"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d70cffc7e3e531120595cf82a2d0400f005fa6ab", "fields": {"nom_de_la_commune": "VERBERIE", "libell_d_acheminement": "VERBERIE", "code_postal": "60410", "coordonnees_gps": [49.2959209598, 2.7176751302], "code_commune_insee": "60667"}, "geometry": {"type": "Point", "coordinates": [2.7176751302, 49.2959209598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "604c53af3cbf6a91dd6a0d5f3d34fda9df1d1b8e", "fields": {"nom_de_la_commune": "VERDEREL LES SAUQUEUSE", "libell_d_acheminement": "VERDEREL LES SAUQUEUSE", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60668"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de77946a45813ee4be03d6686848c57050f7378a", "fields": {"nom_de_la_commune": "VERNEUIL EN HALATTE", "libell_d_acheminement": "VERNEUIL EN HALATTE", "code_postal": "60550", "coordonnees_gps": [49.2734564463, 2.53426475561], "code_commune_insee": "60670"}, "geometry": {"type": "Point", "coordinates": [2.53426475561, 49.2734564463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b4b15597e063f44188f0098c90a1d746bc78c9c", "fields": {"nom_de_la_commune": "VILLENEUVE LES SABLONS", "libell_d_acheminement": "VILLENEUVE LES SABLONS", "code_postal": "60175", "coordonnees_gps": [49.2336117395, 2.07412380556], "code_commune_insee": "60678"}, "geometry": {"type": "Point", "coordinates": [2.07412380556, 49.2336117395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "456305bf348238698a48898f02acc3e1d49baf50", "fields": {"nom_de_la_commune": "LA VILLENEUVE SOUS THURY", "libell_d_acheminement": "LA VILLENEUVE SOUS THURY", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60679"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28a2c041da4296cf4019dec4ec3dc0584e4292de", "fields": {"nom_de_la_commune": "VILLERS SOUS ST LEU", "libell_d_acheminement": "VILLERS SOUS ST LEU", "code_postal": "60340", "coordonnees_gps": [49.2256444487, 2.40347710853], "code_commune_insee": "60686"}, "geometry": {"type": "Point", "coordinates": [2.40347710853, 49.2256444487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625d2a6cee298c04e160865e40e811ffd13ccd11", "fields": {"nom_de_la_commune": "VILLERS SUR AUCHY", "libell_d_acheminement": "VILLERS SUR AUCHY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60687"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcc7e80235dff2452f94fa5eabf26850da0e976a", "fields": {"nom_de_la_commune": "VROCOURT", "libell_d_acheminement": "VROCOURT", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60697"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9526f99c19b29ab6643320125d127dd3fb113a0e", "fields": {"nom_de_la_commune": "ALENCON", "libell_d_acheminement": "ALENCON", "code_postal": "61000", "coordonnees_gps": [48.4294187763, 0.088345615329], "code_commune_insee": "61001"}, "geometry": {"type": "Point", "coordinates": [0.088345615329, 48.4294187763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a32110deb996729dd8f7a7e0d2101d89eddd05f", "fields": {"nom_de_la_commune": "ALMENECHES", "libell_d_acheminement": "ALMENECHES", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61002"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c04c592772c4bf8c9822a7a2c871cab2cb9baac", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "NOTRE DAME DU ROCHER", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "225dd699bf7dc4a506194d751c434212d46c9460", "fields": {"nom_de_la_commune": "AUNOU SUR ORNE", "libell_d_acheminement": "AUNOU SUR ORNE", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61015"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0248e71fb208993c105fd48a24bf8c698ca3f09a", "fields": {"nom_de_la_commune": "AVERNES SOUS EXMES", "libell_d_acheminement": "AVERNES SOUS EXMES", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61019"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c9386b6d9ce56b6da4e9bd3fdc621115d31f8d", "fields": {"nom_de_la_commune": "AVOINE", "libell_d_acheminement": "AVOINE", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61020"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25319f8276149abb7eb4cc4409f800c7d0ab6e6a", "fields": {"nom_de_la_commune": "BAILLEUL", "libell_d_acheminement": "BAILLEUL", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61023"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20768d27d3957eebd1a4dc12145a7ca0af11687b", "fields": {"nom_de_la_commune": "LA BELLIERE", "libell_d_acheminement": "LA BELLIERE", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61039"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15dd721a91590678df8e5fd7e9b5da4e60ce6d80", "fields": {"nom_de_la_commune": "BIZOU", "libell_d_acheminement": "BIZOU", "code_postal": "61290", "coordonnees_gps": [48.5268185363, 0.799843312026], "code_commune_insee": "61046"}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f27489e53ccd0bd911cdf72c806edae4293a39", "fields": {"nom_de_la_commune": "BOECE", "libell_d_acheminement": "BOECE", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61048"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff4cdc5be53a965a28fef4fbe93985db018c9d90", "fields": {"code_postal": "61110", "code_commune_insee": "61050", "libell_d_acheminement": "COUR MAUGIS SUR HUISNE", "ligne_5": "BOISSY MAUGIS", "nom_de_la_commune": "COUR MAUGIS SUR HUISNE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0565dccac3c20aa44c863e2d961ea7facc50c225", "fields": {"code_postal": "61110", "code_commune_insee": "61050", "libell_d_acheminement": "COUR MAUGIS SUR HUISNE", "ligne_5": "MAISON MAUGIS", "nom_de_la_commune": "COUR MAUGIS SUR HUISNE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71640d474cf9f808559f8155d90fdfc17027aecb", "fields": {"code_postal": "61340", "code_commune_insee": "61050", "libell_d_acheminement": "COUR MAUGIS SUR HUISNE", "ligne_5": "COURCERAULT", "nom_de_la_commune": "COUR MAUGIS SUR HUISNE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7e254d2c314e5a2dfd816ec5c9b6b45f5715828", "fields": {"nom_de_la_commune": "LE BOUILLON", "libell_d_acheminement": "LE BOUILLON", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61056"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03491192e35408b20c77e0e0237eac9a4d6039ba", "fields": {"nom_de_la_commune": "BURES", "libell_d_acheminement": "BURES", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61067"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c4b1421097ae10f1c9b26bafde11116a98d028", "fields": {"nom_de_la_commune": "BURSARD", "libell_d_acheminement": "BURSARD", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61068"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3c3a8ac5a023c170264cd9f5a8c0640e8226de6", "fields": {"nom_de_la_commune": "CAMEMBERT", "libell_d_acheminement": "CAMEMBERT", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61071"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "333e3747a331bbddceab9c7fa18cb6275c1e7492", "fields": {"nom_de_la_commune": "CEAUCE", "libell_d_acheminement": "CEAUCE", "code_postal": "61330", "coordonnees_gps": [48.5202783735, -0.60354646707], "code_commune_insee": "61075"}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ce416b2c00345a15f53109e678b4a273c9e13c", "fields": {"nom_de_la_commune": "CERISE", "libell_d_acheminement": "CERISE", "code_postal": "61000", "coordonnees_gps": [48.4294187763, 0.088345615329], "code_commune_insee": "61077"}, "geometry": {"type": "Point", "coordinates": [0.088345615329, 48.4294187763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec0931b1241cd04d4ab57ae8608e81472b74f3be", "fields": {"nom_de_la_commune": "CHAILLOUE", "libell_d_acheminement": "CHAILLOUE", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61081"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "074b25692145b6ec386d02cb651fe14cfc13f020", "fields": {"nom_de_la_commune": "CHAMBOIS", "libell_d_acheminement": "CHAMBOIS", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61083"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b877deb560c0202df418ba5d7f7606023b1122ea", "fields": {"code_postal": "61410", "code_commune_insee": "61096", "libell_d_acheminement": "RIVES D ANDAINE", "ligne_5": "COUTERNE", "nom_de_la_commune": "RIVES D ANDAINE", "coordonnees_gps": [48.5523953273, -0.396121387013]}, "geometry": {"type": "Point", "coordinates": [-0.396121387013, 48.5523953273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91b6072c83ca69112f5d1abd410453da77840383", "fields": {"code_postal": "61410", "code_commune_insee": "61096", "libell_d_acheminement": "RIVES D ANDAINE", "ligne_5": "HALEINE", "nom_de_la_commune": "RIVES D ANDAINE", "coordonnees_gps": [48.5523953273, -0.396121387013]}, "geometry": {"type": "Point", "coordinates": [-0.396121387013, 48.5523953273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64524ab13417139b199ba05d6054d21f1cb3727c", "fields": {"nom_de_la_commune": "LA CHAPELLE PRES SEES", "libell_d_acheminement": "LA CHAPELLE PRES SEES", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61098"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14cd99845326a60c31fd704d36b212117780b16", "fields": {"nom_de_la_commune": "LA CHAPELLE SOUEF", "libell_d_acheminement": "LA CHAPELLE SOUEF", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61099"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db81bc46ac336fc448c57b91d4b33432320900be", "fields": {"nom_de_la_commune": "LA CHAPELLE VIEL", "libell_d_acheminement": "LA CHAPELLE VIEL", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61100"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049543a217196a2b3e1aa43ad54a34482b2acd15", "fields": {"nom_de_la_commune": "CIRAL", "libell_d_acheminement": "CIRAL", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61107"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "427dfc34cab3449bee04a250e5dc8fb09113b883", "fields": {"nom_de_la_commune": "COMBLOT", "libell_d_acheminement": "COMBLOT", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61113"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75b4f97a708e20471991665c418c0ee032cee3bf", "fields": {"nom_de_la_commune": "COULMER", "libell_d_acheminement": "COULMER", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61122"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b2c160c175a5a8aa3957bbf45cf45cbb177e8eb", "fields": {"nom_de_la_commune": "COURGEON", "libell_d_acheminement": "COURGEON", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61129"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71fdc2fd7a65ec2492c652294725ae52c84db02a", "fields": {"nom_de_la_commune": "COURMENIL", "libell_d_acheminement": "COURMENIL", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61131"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92e7141cd83d2f7c4503a54409cb3280ef19601", "fields": {"nom_de_la_commune": "CRULAI", "libell_d_acheminement": "CRULAI", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61140"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b3acf3595b2db09f0aa231cd3bbd048c455cbd", "fields": {"code_postal": "61700", "code_commune_insee": "61145", "libell_d_acheminement": "DOMFRONT EN POIRAIE", "ligne_5": "LA HAUTE CHAPELLE", "nom_de_la_commune": "DOMFRONT EN POIRAIE", "coordonnees_gps": [48.6167127072, -0.618978701151]}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdd84a8a7323635d9eafac840280441dc71b40fc", "fields": {"nom_de_la_commune": "ECHALOU", "libell_d_acheminement": "ECHALOU", "code_postal": "61440", "coordonnees_gps": [48.7041117126, -0.523576215633], "code_commune_insee": "61149"}, "geometry": {"type": "Point", "coordinates": [-0.523576215633, 48.7041117126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10692ee8abe0730fe2b946a004aa34c49eaaab91", "fields": {"nom_de_la_commune": "ECORCEI", "libell_d_acheminement": "ECORCEI", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61151"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44ac2c2021a0f9648962f32c7e4a83c2d31dc76", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "BOCQUENCE", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d90089f75af6a42726f2f9f1d2a3b6e3babad1", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "MARNEFER", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ea69e5580ce5bb3a53f82db6b49f109f7409452", "fields": {"nom_de_la_commune": "LA FERTE MACE", "libell_d_acheminement": "LA FERTE MACE", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61168"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71c8f3910e914851090e2f43951e939092db99a", "fields": {"nom_de_la_commune": "FLEURE", "libell_d_acheminement": "FLEURE", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61170"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26f211e79984b9cce7b45760b16a7af246e6ff9e", "fields": {"nom_de_la_commune": "LA FRESNAIE FAYEL", "libell_d_acheminement": "LA FRESNAIE FAYEL", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61178"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e267956a8875696009a5e42e96ce32bb48a00d", "fields": {"nom_de_la_commune": "GAPREE", "libell_d_acheminement": "GAPREE", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61183"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c0d1d0b8e256f70752e0cdf1add34af167abe21", "fields": {"nom_de_la_commune": "GODISSON", "libell_d_acheminement": "GODISSON", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61192"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c84b3319ea3e7c6e3e08bb8d4b33ecb49bbf92d", "fields": {"nom_de_la_commune": "LE GRAIS", "libell_d_acheminement": "LE GRAIS", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61195"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a77888d2f4120376954c48bc6a92885fd9d11a5", "fields": {"nom_de_la_commune": "LE GUE DE LA CHAINE", "libell_d_acheminement": "LE GUE DE LA CHAINE", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61196"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f878bdd4b6d3b2131390dc127727ef32acebfbba", "fields": {"code_postal": "61330", "code_commune_insee": "61211", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "ligne_5": "LUCE", "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "coordonnees_gps": [48.5202783735, -0.60354646707]}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7fd43a573f6fe7854dc0b50e1423b497a33da50", "fields": {"code_postal": "61330", "code_commune_insee": "61211", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "ligne_5": "SEPT FORGES", "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "coordonnees_gps": [48.5202783735, -0.60354646707]}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e566e1d565afcded94412e3354e4836648a114f1", "fields": {"code_postal": "61330", "code_commune_insee": "61211", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "ligne_5": "ST DENIS DE VILLENETTE", "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "coordonnees_gps": [48.5202783735, -0.60354646707]}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be399219d171f1da2b8ff92eb0b4b0b445f71b33", "fields": {"nom_de_la_commune": "LA LANDE PATRY", "libell_d_acheminement": "LA LANDE PATRY", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61218"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0280c4ed6485e0a5bbfab5ec2ab9147a13fcee6", "fields": {"nom_de_la_commune": "LA LANDE ST SIMEON", "libell_d_acheminement": "LA LANDE ST SIMEON", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61219"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12bf66c2614ea377d705cc895e81364c27ca488a", "fields": {"nom_de_la_commune": "LARRE", "libell_d_acheminement": "LARRE", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61224"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92676b7180d9e64598a49af4d2f34cc904755673", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "MALETABLE", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6187ad7723818d417446913b2311316eaf421602", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "ST VICTOR DE RENO", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f908902b4ab699ed77d5bd20b848a4cde296f61", "fields": {"nom_de_la_commune": "LONLAY L ABBAYE", "libell_d_acheminement": "LONLAY L ABBAYE", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61232"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a4f43c9c036784720fc82dcb3442e7411583080", "fields": {"nom_de_la_commune": "MACE", "libell_d_acheminement": "MACE", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61240"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6008a76534a2892b90babf6d5fd0af0b35810edd", "fields": {"nom_de_la_commune": "LE MELE SUR SARTHE", "libell_d_acheminement": "LE MELE SUR SARTHE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61258"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7b74795122b8931300a5f0629d2db168955ad82", "fields": {"nom_de_la_commune": "LE MENIL DE BRIOUZE", "libell_d_acheminement": "LE MENIL DE BRIOUZE", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61260"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd969380c6f48f92a8bc3f152024537959f87345", "fields": {"nom_de_la_commune": "MENIL ERREUX", "libell_d_acheminement": "MENIL ERREUX", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61263"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65991b3585916f4a04e97ffe79a57df427bb8529", "fields": {"nom_de_la_commune": "LE MENIL SCELLEUR", "libell_d_acheminement": "LE MENIL SCELLEUR", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61271"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da7f25fcc631c38197095dc62af734ff23d972b", "fields": {"nom_de_la_commune": "LA MESNIERE", "libell_d_acheminement": "LA MESNIERE", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61277"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "060a5b9e3d6588797d93db56b56a47d3bf835a38", "fields": {"nom_de_la_commune": "MONTABARD", "libell_d_acheminement": "MONTABARD", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61283"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f2704ba19347007188a880fa754063be2cd9699", "fields": {"nom_de_la_commune": "MONTREUIL AU HOULME", "libell_d_acheminement": "MONTREUIL AU HOULME", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61290"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b62d78a812bc0b5b4df4bc85d72f28ce8595bc7", "fields": {"nom_de_la_commune": "NEUVY AU HOULME", "libell_d_acheminement": "NEUVY AU HOULME", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61308"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb43557243f7af644d06c86cbad0d75fc26168e", "fields": {"nom_de_la_commune": "ORGERES", "libell_d_acheminement": "ORGERES", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61317"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9438a5de5b07d3657df2359da16a78f01457a178", "fields": {"nom_de_la_commune": "PACE", "libell_d_acheminement": "PACE", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61321"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37e6507c30e2f15f2442c42897a988cbe1279b6", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "PUTANGES PONT ECREPIN", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8509bb1fbf0c57aff766b83f46d0d62b4189cbd", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "STE CROIX SUR ORNE", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5068ff0cc15b2ed235b1f1bd2510a74effaedef", "fields": {"code_postal": "61250", "code_commune_insee": "61341", "libell_d_acheminement": "ECOUVES", "ligne_5": "RADON", "nom_de_la_commune": "ECOUVES", "coordonnees_gps": [48.4708532437, 0.079807061748]}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df7afd96cb15bcf78180b3b06b4bbfa1a3db9a7d", "fields": {"nom_de_la_commune": "RANES", "libell_d_acheminement": "RANES", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61344"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f8a40c3aa03bd4792f04826c72d0a83835c9b3", "fields": {"code_postal": "61110", "code_commune_insee": "61345", "libell_d_acheminement": "REMALARD EN PERCHE", "ligne_5": "DORCEAU", "nom_de_la_commune": "REMALARD EN PERCHE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a2ce5f4ef4d8c1420e456402b61b4593e9b3f4", "fields": {"nom_de_la_commune": "LA ROCHE MABILE", "libell_d_acheminement": "LA ROCHE MABILE", "code_postal": "61420", "coordonnees_gps": [48.4829812527, -0.0377038824512], "code_commune_insee": "61350"}, "geometry": {"type": "Point", "coordinates": [-0.0377038824512, 48.4829812527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c58f3130c4dfb728ed0e0eaa311ae17228e554c", "fields": {"nom_de_la_commune": "ST AGNAN SUR SARTHE", "libell_d_acheminement": "ST AGNAN SUR SARTHE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61360"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab20d285adfb4b6b176f9dee9fe557f29c483150", "fields": {"nom_de_la_commune": "ST AUBIN DE BONNEVAL", "libell_d_acheminement": "ST AUBIN DE BONNEVAL", "code_postal": "61470", "coordonnees_gps": [48.9094876471, 0.356722862934], "code_commune_insee": "61366"}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff22129d74fbec4d09f0b79bce5cfcf60317e83", "fields": {"nom_de_la_commune": "VIVIERS SUR ARTAUT", "libell_d_acheminement": "VIVIERS SUR ARTAUT", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10439"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0441a6bf4cf49aec6461aafc10c276d2944307d7", "fields": {"nom_de_la_commune": "VILLETTE SUR AUBE", "libell_d_acheminement": "VILLETTE SUR AUBE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10429"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9be43d5daf4e2bb012e2c511002ce2f9e6f4bf", "fields": {"nom_de_la_commune": "VILLY EN TRODES", "libell_d_acheminement": "VILLY EN TRODES", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10433"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff126d7b21e8acdcd6c3b08f5f3e700efd2b053", "fields": {"nom_de_la_commune": "VILLE SUR TERRE", "libell_d_acheminement": "VILLE SUR TERRE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10428"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55af1239ac1cfd5b1e630990ca27e3f9ea7f916d", "fields": {"nom_de_la_commune": "VIREY SOUS BAR", "libell_d_acheminement": "VIREY SOUS BAR", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10437"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87e2639931a2d1cba9b1477061e4e46d047d0239", "fields": {"nom_de_la_commune": "ARGELIERS", "libell_d_acheminement": "ARGELIERS", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11012"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db8e28d52cf2ef2cf4fba5a5af2e576de028ef84", "fields": {"nom_de_la_commune": "VOUGREY", "libell_d_acheminement": "VOUGREY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10443"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c72c8e7be57a49bfa1f0981e7472dd6ba112fa6", "fields": {"nom_de_la_commune": "VOSNON", "libell_d_acheminement": "VOSNON", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10441"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edecadb0256e259d23dc2163f196dc77c22633a4", "fields": {"nom_de_la_commune": "AJAC", "libell_d_acheminement": "AJAC", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11003"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccfb5d0130fe456e0e8d7ffb243f84621400adeb", "fields": {"code_postal": "11000", "code_commune_insee": "11069", "libell_d_acheminement": "CARCASSONNE", "ligne_5": "GREZES HERMINIS", "nom_de_la_commune": "CARCASSONNE", "coordonnees_gps": [43.2094356992, 2.34683719247]}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f6138ed561fe2ad910f4fb96eb43433214d059b", "fields": {"code_postal": "11000", "code_commune_insee": "11069", "libell_d_acheminement": "CARCASSONNE", "ligne_5": "VILLALBE", "nom_de_la_commune": "CARCASSONNE", "coordonnees_gps": [43.2094356992, 2.34683719247]}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b90f12dd047453518c6c5cca396bcc82fff27a27", "fields": {"code_postal": "11000", "code_commune_insee": "11069", "libell_d_acheminement": "CARCASSONNE", "ligne_5": "MAQUENS", "nom_de_la_commune": "CARCASSONNE", "coordonnees_gps": [43.2094356992, 2.34683719247]}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85518aea4deb8bfbf132e8aa8d0a074ddbc0fd00", "fields": {"nom_de_la_commune": "CAMPAGNA DE SAULT", "libell_d_acheminement": "CAMPAGNA DE SAULT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11062"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d78d19b7a8c86f32745d361885b355aa9f4697b1", "fields": {"nom_de_la_commune": "CAMPS SUR L AGLY", "libell_d_acheminement": "CAMPS SUR L AGLY", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11065"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b8639800e18eccf272243a49966ea5088beea28", "fields": {"nom_de_la_commune": "LE BOUSQUET", "libell_d_acheminement": "LE BOUSQUET", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11047"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "504b65d9978bde0b535714481f54e9d1ca100d17", "fields": {"nom_de_la_commune": "BARAIGNE", "libell_d_acheminement": "BARAIGNE", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11026"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a51f4532d6a0dbc41c8c61c53745af911121211", "fields": {"nom_de_la_commune": "BIZANET", "libell_d_acheminement": "BIZANET", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11040"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc2ea498a11ec7bf8aeba3ef5ced7fd980d56164", "fields": {"nom_de_la_commune": "BELPECH", "libell_d_acheminement": "BELPECH", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11033"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67981aff8b57aa7902d1f5d49820174bbc9d2401", "fields": {"nom_de_la_commune": "CANET", "libell_d_acheminement": "CANET", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11067"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dfb6acf0cbf9910d58a8f8070823a0838f85767", "fields": {"nom_de_la_commune": "CASCASTEL DES CORBIERES", "libell_d_acheminement": "CASCASTEL DES CORBIERES", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11071"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5c4136a6137df6e1016276e3f19efd98968f25e", "fields": {"nom_de_la_commune": "CAUX ET SAUZENS", "libell_d_acheminement": "CAUX ET SAUZENS", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11084"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92f331707690b054544d05be6412d7445a70ecf0", "fields": {"nom_de_la_commune": "CENNE MONESTIES", "libell_d_acheminement": "CENNE MONESTIES", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11089"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08a50f3e9d0a69e3b0412a0bd037cf67ae8ae747", "fields": {"nom_de_la_commune": "CASTELNAUDARY", "libell_d_acheminement": "CASTELNAUDARY", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11076"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc8c1dbf1680946f6daf76d716be43f51e3a56db", "fields": {"nom_de_la_commune": "CAZILHAC", "libell_d_acheminement": "CAZILHAC", "code_postal": "11570", "coordonnees_gps": [43.1506610986, 2.38289109862], "code_commune_insee": "11088"}, "geometry": {"type": "Point", "coordinates": [2.38289109862, 43.1506610986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa043c3d3e501aa397e30c04db3f43d154f39130", "fields": {"nom_de_la_commune": "COMIGNE", "libell_d_acheminement": "COMIGNE", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11095"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a67405a2169fccee87e213359f92ed6df16a93", "fields": {"nom_de_la_commune": "CASTANS", "libell_d_acheminement": "CASTANS", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11075"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "221df9cb37377ecc0a2be96a999df436957b4f12", "fields": {"nom_de_la_commune": "CITOU", "libell_d_acheminement": "CITOU", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11092"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d38ce28a3cae2beaedb459767a7e8f6ba987df", "fields": {"nom_de_la_commune": "CEPIE", "libell_d_acheminement": "CEPIE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11090"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f238a09414d695bb2d9b0a54a65cafb99241ac", "fields": {"nom_de_la_commune": "CAVES", "libell_d_acheminement": "CAVES", "code_postal": "11510", "coordonnees_gps": [42.9150508033, 2.94104906509], "code_commune_insee": "11086"}, "geometry": {"type": "Point", "coordinates": [2.94104906509, 42.9150508033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29105c8fd3a7243dac176f67f08bd1882a7f6fa4", "fields": {"nom_de_la_commune": "CONILHAC DE LA MONTAGNE", "libell_d_acheminement": "CONILHAC DE LA MONTAGNE", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11097"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c62c4adc9c2c973d895792f2d28df51831fcb6a5", "fields": {"nom_de_la_commune": "CORBIERES", "libell_d_acheminement": "CORBIERES", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11100"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6cb268986d087533862876decd5da8977f728f9", "fields": {"nom_de_la_commune": "COMUS", "libell_d_acheminement": "COMUS", "code_postal": "11340", "coordonnees_gps": [42.8370630944, 1.98179772961], "code_commune_insee": "11096"}, "geometry": {"type": "Point", "coordinates": [1.98179772961, 42.8370630944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8da0ab64c35be16576f8aa94cdc8c5793d71a1d0", "fields": {"nom_de_la_commune": "NANTERRE", "libell_d_acheminement": "NANTERRE", "code_postal": "92000", "coordonnees_gps": [48.8962161446, 2.2068493546], "code_commune_insee": "92050"}, "geometry": {"type": "Point", "coordinates": [2.2068493546, 48.8962161446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34d38eb6f469bd624a4f2d143c44e457c23c982f", "fields": {"nom_de_la_commune": "SURESNES", "libell_d_acheminement": "SURESNES", "code_postal": "92150", "coordonnees_gps": [48.8700470804, 2.21976930955], "code_commune_insee": "92073"}, "geometry": {"type": "Point", "coordinates": [2.21976930955, 48.8700470804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7639cfd4a6dcf2349d9e9cdc6409f900bc3eacf1", "fields": {"nom_de_la_commune": "VAUCRESSON", "libell_d_acheminement": "VAUCRESSON", "code_postal": "92420", "coordonnees_gps": [48.841686797, 2.16112497638], "code_commune_insee": "92076"}, "geometry": {"type": "Point", "coordinates": [2.16112497638, 48.841686797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260b16a3e203014ebe07c2ce0e6a8bc187486df8", "fields": {"nom_de_la_commune": "VILLE D AVRAY", "libell_d_acheminement": "VILLE D AVRAY", "code_postal": "92410", "coordonnees_gps": [48.8215001664, 2.17605556891], "code_commune_insee": "92077"}, "geometry": {"type": "Point", "coordinates": [2.17605556891, 48.8215001664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e29bb54fc12683c737a2e4c96512075833c2ee7", "fields": {"nom_de_la_commune": "VILLENEUVE LA GARENNE", "libell_d_acheminement": "VILLENEUVE LA GARENNE", "code_postal": "92390", "coordonnees_gps": [48.9370038707, 2.3254720877], "code_commune_insee": "92078"}, "geometry": {"type": "Point", "coordinates": [2.3254720877, 48.9370038707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59f8d5bbcba66344d248d19be2e096741581b0a4", "fields": {"nom_de_la_commune": "BAGNOLET", "libell_d_acheminement": "BAGNOLET", "code_postal": "93170", "coordonnees_gps": [48.869693461, 2.42282027746], "code_commune_insee": "93006"}, "geometry": {"type": "Point", "coordinates": [2.42282027746, 48.869693461]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d51359cfb0576e1c6f78fe4a712e2eeed2dcf537", "fields": {"nom_de_la_commune": "BOBIGNY", "libell_d_acheminement": "BOBIGNY", "code_postal": "93000", "coordonnees_gps": [48.9073872094, 2.43988733867], "code_commune_insee": "93008"}, "geometry": {"type": "Point", "coordinates": [2.43988733867, 48.9073872094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54cb293753373b1578478198c0db52c4b70e2eb3", "fields": {"nom_de_la_commune": "CLICHY SOUS BOIS", "libell_d_acheminement": "CLICHY SOUS BOIS", "code_postal": "93390", "coordonnees_gps": [48.9081483622, 2.54557176505], "code_commune_insee": "93014"}, "geometry": {"type": "Point", "coordinates": [2.54557176505, 48.9081483622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d67f03e074a5146c543d789220bb42bf3e9ff3d2", "fields": {"nom_de_la_commune": "LA COURNEUVE", "libell_d_acheminement": "LA COURNEUVE", "code_postal": "93120", "coordonnees_gps": [48.9327015423, 2.39963456624], "code_commune_insee": "93027"}, "geometry": {"type": "Point", "coordinates": [2.39963456624, 48.9327015423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc433bd80cb040cea0ce24fe26075520f2e64ef8", "fields": {"nom_de_la_commune": "DRANCY", "libell_d_acheminement": "DRANCY", "code_postal": "93700", "coordonnees_gps": [48.9233885913, 2.44445418535], "code_commune_insee": "93029"}, "geometry": {"type": "Point", "coordinates": [2.44445418535, 48.9233885913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4c2e73f2db50c4894d4f62f24df0263e708709f", "fields": {"nom_de_la_commune": "DUGNY", "libell_d_acheminement": "DUGNY", "code_postal": "93440", "coordonnees_gps": [48.9509287512, 2.42403288293], "code_commune_insee": "93030"}, "geometry": {"type": "Point", "coordinates": [2.42403288293, 48.9509287512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b36710abea94f3e7d875f9f6f600cff3d807548", "fields": {"nom_de_la_commune": "EPINAY SUR SEINE", "libell_d_acheminement": "EPINAY SUR SEINE", "code_postal": "93800", "coordonnees_gps": [48.95503927, 2.31470709398], "code_commune_insee": "93031"}, "geometry": {"type": "Point", "coordinates": [2.31470709398, 48.95503927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4622f02b5c5102ccfbd019a6368603a6f9bdc08", "fields": {"nom_de_la_commune": "GOURNAY SUR MARNE", "libell_d_acheminement": "GOURNAY SUR MARNE", "code_postal": "93460", "coordonnees_gps": [48.860886213, 2.5757798256], "code_commune_insee": "93033"}, "geometry": {"type": "Point", "coordinates": [2.5757798256, 48.860886213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f949bc74c38b0c743e51892e28b7f5caaae44096", "fields": {"nom_de_la_commune": "MONTFERMEIL", "libell_d_acheminement": "MONTFERMEIL", "code_postal": "93370", "coordonnees_gps": [48.8981258496, 2.56699754775], "code_commune_insee": "93047"}, "geometry": {"type": "Point", "coordinates": [2.56699754775, 48.8981258496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec2dfca8ccd1d4f2b6b80fbcc498a2ecb1f32510", "fields": {"nom_de_la_commune": "MONTREUIL", "libell_d_acheminement": "MONTREUIL", "code_postal": "93100", "coordonnees_gps": [48.8631150275, 2.44833244212], "code_commune_insee": "93048"}, "geometry": {"type": "Point", "coordinates": [2.44833244212, 48.8631150275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a7f8436c4b27f84d9fcda4cc09fac30e09ea3d", "fields": {"nom_de_la_commune": "NEUILLY PLAISANCE", "libell_d_acheminement": "NEUILLY PLAISANCE", "code_postal": "93360", "coordonnees_gps": [48.8635953695, 2.51054009656], "code_commune_insee": "93049"}, "geometry": {"type": "Point", "coordinates": [2.51054009656, 48.8635953695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e42c3b780661b2389fa7b2847bc71cd45d136f52", "fields": {"nom_de_la_commune": "PIERREFITTE SUR SEINE", "libell_d_acheminement": "PIERREFITTE SUR SEINE", "code_postal": "93380", "coordonnees_gps": [48.9601575752, 2.36349767904], "code_commune_insee": "93059"}, "geometry": {"type": "Point", "coordinates": [2.36349767904, 48.9601575752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78af53d2db10724f8594b0bd881f8b9e91f6c7cd", "fields": {"nom_de_la_commune": "ROMAINVILLE", "libell_d_acheminement": "ROMAINVILLE", "code_postal": "93230", "coordonnees_gps": [48.8846043841, 2.43804330758], "code_commune_insee": "93063"}, "geometry": {"type": "Point", "coordinates": [2.43804330758, 48.8846043841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b00e2fa06e9d71f9e4d19fe7d50e495d2113e8", "fields": {"nom_de_la_commune": "ST OUEN", "libell_d_acheminement": "ST OUEN", "code_postal": "93400", "coordonnees_gps": [48.9096159679, 2.33315490092], "code_commune_insee": "93070"}, "geometry": {"type": "Point", "coordinates": [2.33315490092, 48.9096159679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c15b1c15e30458b97ca02d0888a28a4e47c3b5", "fields": {"nom_de_la_commune": "STAINS", "libell_d_acheminement": "STAINS", "code_postal": "93240", "coordonnees_gps": [48.9567913169, 2.3856852173], "code_commune_insee": "93072"}, "geometry": {"type": "Point", "coordinates": [2.3856852173, 48.9567913169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3ccd45c6d22976d28153d783c6e503a26b5d464", "fields": {"nom_de_la_commune": "ARCUEIL", "libell_d_acheminement": "ARCUEIL", "code_postal": "94110", "coordonnees_gps": [48.8054545839, 2.33403821483], "code_commune_insee": "94003"}, "geometry": {"type": "Point", "coordinates": [2.33403821483, 48.8054545839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a3ba152a433ff203f2f51d30108d9da090c873d", "fields": {"nom_de_la_commune": "BRY SUR MARNE", "libell_d_acheminement": "BRY SUR MARNE", "code_postal": "94360", "coordonnees_gps": [48.839091496, 2.52374839829], "code_commune_insee": "94015"}, "geometry": {"type": "Point", "coordinates": [2.52374839829, 48.839091496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf8dcd7b02d84b953b37ca0e447f21b563347818", "fields": {"nom_de_la_commune": "CHOISY LE ROI", "libell_d_acheminement": "CHOISY LE ROI", "code_postal": "94600", "coordonnees_gps": [48.7646580823, 2.41696553612], "code_commune_insee": "94022"}, "geometry": {"type": "Point", "coordinates": [2.41696553612, 48.7646580823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d6165a8895fd4c78c911089047db788a01bc6c", "fields": {"nom_de_la_commune": "FRESNES", "libell_d_acheminement": "FRESNES", "code_postal": "94260", "coordonnees_gps": [48.7570286866, 2.32584996209], "code_commune_insee": "94034"}, "geometry": {"type": "Point", "coordinates": [2.32584996209, 48.7570286866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "471b80e65d5983690cf13a1058e1136d1fc97a13", "fields": {"nom_de_la_commune": "IVRY SUR SEINE", "libell_d_acheminement": "IVRY SUR SEINE", "code_postal": "94200", "coordonnees_gps": [48.8126036229, 2.38769451134], "code_commune_insee": "94041"}, "geometry": {"type": "Point", "coordinates": [2.38769451134, 48.8126036229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82779b8f19ee994fdbb58a22baa61f23a63f211", "fields": {"nom_de_la_commune": "LE PLESSIS TREVISE", "libell_d_acheminement": "LE PLESSIS TREVISE", "code_postal": "94420", "coordonnees_gps": [48.8064003438, 2.5749391761], "code_commune_insee": "94059"}, "geometry": {"type": "Point", "coordinates": [2.5749391761, 48.8064003438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207b5214e1b21fbc7aa3758b9e135a57b8fab9e2", "fields": {"nom_de_la_commune": "ST MANDE", "libell_d_acheminement": "ST MANDE", "code_postal": "94160", "coordonnees_gps": [48.8414086049, 2.41818317859], "code_commune_insee": "94067"}, "geometry": {"type": "Point", "coordinates": [2.41818317859, 48.8414086049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "accad8f65c8966d93204389fb119428e4a441324", "fields": {"nom_de_la_commune": "THIAIS", "libell_d_acheminement": "THIAIS", "code_postal": "94320", "coordonnees_gps": [48.760796364, 2.38561449918], "code_commune_insee": "94073"}, "geometry": {"type": "Point", "coordinates": [2.38561449918, 48.760796364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f78118ae81ae603b996f0427212a3a8fb3748439", "fields": {"nom_de_la_commune": "VALENTON", "libell_d_acheminement": "VALENTON", "code_postal": "94460", "coordonnees_gps": [48.7530822759, 2.46124565223], "code_commune_insee": "94074"}, "geometry": {"type": "Point", "coordinates": [2.46124565223, 48.7530822759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d9f9d26b2d99d8a940cede4fa806c9cae19ebf8", "fields": {"nom_de_la_commune": "VILLECRESNES", "libell_d_acheminement": "VILLECRESNES", "code_postal": "94440", "coordonnees_gps": [48.7320439942, 2.55920831223], "code_commune_insee": "94075"}, "geometry": {"type": "Point", "coordinates": [2.55920831223, 48.7320439942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4954bf4e953f39dc9c1c8aa6018b2a3304a138eb", "fields": {"nom_de_la_commune": "VILLEJUIF", "libell_d_acheminement": "VILLEJUIF", "code_postal": "94800", "coordonnees_gps": [48.7924436118, 2.35977406843], "code_commune_insee": "94076"}, "geometry": {"type": "Point", "coordinates": [2.35977406843, 48.7924436118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9e7ee9252ce2350b3f65006181f63acdd92373", "fields": {"nom_de_la_commune": "AMBLEVILLE", "libell_d_acheminement": "AMBLEVILLE", "code_postal": "95710", "coordonnees_gps": [49.1290552989, 1.69526260075], "code_commune_insee": "95011"}, "geometry": {"type": "Point", "coordinates": [1.69526260075, 49.1290552989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcbfad306df82d2c7e37fad3e66bc3b0dcdfa457", "fields": {"nom_de_la_commune": "ANDILLY", "libell_d_acheminement": "ANDILLY", "code_postal": "95580", "coordonnees_gps": [49.0070961158, 2.30020142224], "code_commune_insee": "95014"}, "geometry": {"type": "Point", "coordinates": [2.30020142224, 49.0070961158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "462b4143dad64412cf3c5b0c1b0e977d33d1c9c4", "fields": {"nom_de_la_commune": "ARGENTEUIL", "libell_d_acheminement": "ARGENTEUIL", "code_postal": "95100", "coordonnees_gps": [48.95173377, 2.24070535988], "code_commune_insee": "95018"}, "geometry": {"type": "Point", "coordinates": [2.24070535988, 48.95173377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99bcf6ae8b6aeb9d93323e60c5669de329efcd3c", "fields": {"nom_de_la_commune": "ARNOUVILLE", "libell_d_acheminement": "ARNOUVILLE", "code_postal": "95400", "coordonnees_gps": [49.0014583896, 2.40751013382], "code_commune_insee": "95019"}, "geometry": {"type": "Point", "coordinates": [2.40751013382, 49.0014583896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b0607d5e80be98996a67e8508ac86b83746a83", "fields": {"nom_de_la_commune": "ARRONVILLE", "libell_d_acheminement": "ARRONVILLE", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95023"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a6569a9a06e764e15d5695f6ecd0fff373f4ee", "fields": {"nom_de_la_commune": "ARTHIES", "libell_d_acheminement": "ARTHIES", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95024"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecd077b6169d8e00c574956e8a059c9732eed645", "fields": {"nom_de_la_commune": "ATTAINVILLE", "libell_d_acheminement": "ATTAINVILLE", "code_postal": "95570", "coordonnees_gps": [49.0548701683, 2.33369100298], "code_commune_insee": "95028"}, "geometry": {"type": "Point", "coordinates": [2.33369100298, 49.0548701683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bed1af6991bcd8d19d4112465324609417ff9b59", "fields": {"nom_de_la_commune": "BAILLET EN FRANCE", "libell_d_acheminement": "BAILLET EN FRANCE", "code_postal": "95560", "coordonnees_gps": [49.0667555208, 2.29836937772], "code_commune_insee": "95042"}, "geometry": {"type": "Point", "coordinates": [2.29836937772, 49.0667555208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c9068e4d15c768dd45d03b528fb00fa124f931", "fields": {"nom_de_la_commune": "BEAUCHAMP", "libell_d_acheminement": "BEAUCHAMP", "code_postal": "95250", "coordonnees_gps": [49.0147161018, 2.19268576648], "code_commune_insee": "95051"}, "geometry": {"type": "Point", "coordinates": [2.19268576648, 49.0147161018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfcfd96f4fd064252e32b3045226c27f0a376612", "fields": {"nom_de_la_commune": "BEAUMONT SUR OISE", "libell_d_acheminement": "BEAUMONT SUR OISE", "code_postal": "95260", "coordonnees_gps": [49.1373667054, 2.28877829148], "code_commune_insee": "95052"}, "geometry": {"type": "Point", "coordinates": [2.28877829148, 49.1373667054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b715684b377745d6061d54449c8535fe041e64", "fields": {"nom_de_la_commune": "BERVILLE", "libell_d_acheminement": "BERVILLE", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95059"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25099822222ae9c21d132be48d497665c88c50c1", "fields": {"nom_de_la_commune": "BEZONS", "libell_d_acheminement": "BEZONS", "code_postal": "95870", "coordonnees_gps": [48.9263133058, 2.21169036009], "code_commune_insee": "95063"}, "geometry": {"type": "Point", "coordinates": [2.21169036009, 48.9263133058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a618c92b4e59af98a76d7ea5166d8cfc1640e2e8", "fields": {"nom_de_la_commune": "BREANCON", "libell_d_acheminement": "BREANCON", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95102"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f195d88d46602720a580357e3f843801a8be3b4", "fields": {"nom_de_la_commune": "CHAUMONTEL", "libell_d_acheminement": "CHAUMONTEL", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95149"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2657281a8b539448c3dbe5248026cee967899fb5", "fields": {"nom_de_la_commune": "CHAUSSY", "libell_d_acheminement": "CHAUSSY", "code_postal": "95710", "coordonnees_gps": [49.1290552989, 1.69526260075], "code_commune_insee": "95150"}, "geometry": {"type": "Point", "coordinates": [1.69526260075, 49.1290552989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941c07b314e9ad663ee0056704a64fda8a933854", "fields": {"nom_de_la_commune": "CHAUVRY", "libell_d_acheminement": "CHAUVRY", "code_postal": "95560", "coordonnees_gps": [49.0667555208, 2.29836937772], "code_commune_insee": "95151"}, "geometry": {"type": "Point", "coordinates": [2.29836937772, 49.0667555208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd65027931d643b8fb97fb47af1b7329b55f0dd7", "fields": {"nom_de_la_commune": "CHERENCE", "libell_d_acheminement": "CHERENCE", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95157"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1943ab79a784277fe7c42844ff030f718e4c35e3", "fields": {"nom_de_la_commune": "CORMEILLES EN PARISIS", "libell_d_acheminement": "CORMEILLES EN PARISIS", "code_postal": "95240", "coordonnees_gps": [48.9692349874, 2.19911393825], "code_commune_insee": "95176"}, "geometry": {"type": "Point", "coordinates": [2.19911393825, 48.9692349874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776ff5853883de39b225ac3e55e73d8b62ad065c", "fields": {"nom_de_la_commune": "ERAGNY", "libell_d_acheminement": "ERAGNY SUR OISE", "code_postal": "95610", "coordonnees_gps": [49.0206699576, 2.10149054381], "code_commune_insee": "95218"}, "geometry": {"type": "Point", "coordinates": [2.10149054381, 49.0206699576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4cc865bf116f1b43e3ebaf2c87453e0a389846d", "fields": {"nom_de_la_commune": "EZANVILLE", "libell_d_acheminement": "EZANVILLE", "code_postal": "95460", "coordonnees_gps": [49.0385138041, 2.3630123433], "code_commune_insee": "95229"}, "geometry": {"type": "Point", "coordinates": [2.3630123433, 49.0385138041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfd14965ca9776cbe1eaf31f0aba94cd5930d5ff", "fields": {"nom_de_la_commune": "LA FRETTE SUR SEINE", "libell_d_acheminement": "LA FRETTE SUR SEINE", "code_postal": "95530", "coordonnees_gps": [48.9743528726, 2.17813705819], "code_commune_insee": "95257"}, "geometry": {"type": "Point", "coordinates": [2.17813705819, 48.9743528726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "993098caf3c93ef94c27d9a1603bf553c434b28d", "fields": {"nom_de_la_commune": "FROUVILLE", "libell_d_acheminement": "FROUVILLE", "code_postal": "95690", "coordonnees_gps": [49.140346815, 2.15942436133], "code_commune_insee": "95258"}, "geometry": {"type": "Point", "coordinates": [2.15942436133, 49.140346815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf428742a38b9e29eb93455a79e2358ace98380d", "fields": {"nom_de_la_commune": "GOUSSAINVILLE", "libell_d_acheminement": "GOUSSAINVILLE", "code_postal": "95190", "coordonnees_gps": [49.0402800937, 2.45734698588], "code_commune_insee": "95280"}, "geometry": {"type": "Point", "coordinates": [2.45734698588, 49.0402800937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88478d0115c56103e36a362fa977f57a23dfa1a7", "fields": {"nom_de_la_commune": "GUIRY EN VEXIN", "libell_d_acheminement": "GUIRY EN VEXIN", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95295"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b218917b1ea81881172f9ded71b100c9f03966ef", "fields": {"nom_de_la_commune": "HEDOUVILLE", "libell_d_acheminement": "HEDOUVILLE", "code_postal": "95690", "coordonnees_gps": [49.140346815, 2.15942436133], "code_commune_insee": "95304"}, "geometry": {"type": "Point", "coordinates": [2.15942436133, 49.140346815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096417639ce3070cdeddbd2a984cde220680fb7e", "fields": {"nom_de_la_commune": "HODENT", "libell_d_acheminement": "HODENT", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95309"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d8f87c25efde3d81fe4510e4d5e075b2d0d2162", "fields": {"nom_de_la_commune": "JAGNY SOUS BOIS", "libell_d_acheminement": "JAGNY SOUS BOIS", "code_postal": "95850", "coordonnees_gps": [49.0746281693, 2.42764597482], "code_commune_insee": "95316"}, "geometry": {"type": "Point", "coordinates": [2.42764597482, 49.0746281693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9facb7599a08395da837d19868d269d3c1a7637", "fields": {"code_postal": "95280", "code_commune_insee": "95323", "libell_d_acheminement": "JOUY LE MOUTIER", "ligne_5": "JOUY LA FONTAINE", "nom_de_la_commune": "JOUY LE MOUTIER", "coordonnees_gps": [49.0112311928, 2.03342738029]}, "geometry": {"type": "Point", "coordinates": [2.03342738029, 49.0112311928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c6044d634a55d3c36513f7a8088a969d28729d", "fields": {"nom_de_la_commune": "MARINES", "libell_d_acheminement": "MARINES", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95370"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6e00d78f9af8fc7a0011aeb9b96ead1e746ffc", "fields": {"nom_de_la_commune": "MARLY LA VILLE", "libell_d_acheminement": "MARLY LA VILLE", "code_postal": "95670", "coordonnees_gps": [49.0808886111, 2.50898274174], "code_commune_insee": "95371"}, "geometry": {"type": "Point", "coordinates": [2.50898274174, 49.0808886111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66bedc494ba8bd2aee41886e88a2ff469f19dba9", "fields": {"nom_de_la_commune": "LE MESNIL AUBRY", "libell_d_acheminement": "LE MESNIL AUBRY", "code_postal": "95720", "coordonnees_gps": [49.0481825162, 2.40282933292], "code_commune_insee": "95395"}, "geometry": {"type": "Point", "coordinates": [2.40282933292, 49.0481825162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e08c33e8810f221ae0505347e7bb9ba00336fe", "fields": {"nom_de_la_commune": "MONTLIGNON", "libell_d_acheminement": "MONTLIGNON", "code_postal": "95680", "coordonnees_gps": [49.0142987876, 2.28971732713], "code_commune_insee": "95426"}, "geometry": {"type": "Point", "coordinates": [2.28971732713, 49.0142987876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b626a19902fbcf18544a09844ec0cf2b217eb5", "fields": {"nom_de_la_commune": "NEUVILLE SUR OISE", "libell_d_acheminement": "NEUVILLE SUR OISE", "code_postal": "95000", "coordonnees_gps": [49.0378977963, 2.06061895699], "code_commune_insee": "95450"}, "geometry": {"type": "Point", "coordinates": [2.06061895699, 49.0378977963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85ba6054a873d1267e1f9351e3b9cf7bb2c13d8", "fields": {"nom_de_la_commune": "NOINTEL", "libell_d_acheminement": "NOINTEL", "code_postal": "95590", "coordonnees_gps": [49.1078677101, 2.28470413018], "code_commune_insee": "95452"}, "geometry": {"type": "Point", "coordinates": [2.28470413018, 49.1078677101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a99aea952fe80537696ac2f1dedac8d8d2cbde", "fields": {"nom_de_la_commune": "LE PERCHAY", "libell_d_acheminement": "LE PERCHAY", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95483"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48a54de40756d2e481f49124114b3de711f21ed", "fields": {"nom_de_la_commune": "PERSAN", "libell_d_acheminement": "PERSAN", "code_postal": "95340", "coordonnees_gps": [49.1610028463, 2.26428490236], "code_commune_insee": "95487"}, "geometry": {"type": "Point", "coordinates": [2.26428490236, 49.1610028463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c9c3f2280ba6952afc2205bb013cd551e1f5aad", "fields": {"nom_de_la_commune": "PIERRELAYE", "libell_d_acheminement": "PIERRELAYE", "code_postal": "95220", "coordonnees_gps": [49.0082603783, 2.15434312371], "code_commune_insee": "95488"}, "geometry": {"type": "Point", "coordinates": [2.15434312371, 49.0082603783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b51bbf51e9c03325edd36684e9fe61475804e71", "fields": {"nom_de_la_commune": "GRAIGNES MESNIL ANGOT", "libell_d_acheminement": "GRAIGNES MESNIL ANGOT", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50216"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38af80c13e3117bb6f54a2a6e27a3cde5d93843c", "fields": {"nom_de_la_commune": "HAMBYE", "libell_d_acheminement": "HAMBYE", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50228"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1868a34d94edb626e6c4eda4d5e05417760d58f", "fields": {"nom_de_la_commune": "HAUTEVILLE SUR MER", "libell_d_acheminement": "HAUTEVILLE SUR MER", "code_postal": "50590", "coordonnees_gps": [48.998351467, -1.53536168887], "code_commune_insee": "50231"}, "geometry": {"type": "Point", "coordinates": [-1.53536168887, 48.998351467]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1593c626d66cbeaa84852590626a20010c63446", "fields": {"nom_de_la_commune": "HAUTEVILLE LA GUICHARD", "libell_d_acheminement": "HAUTEVILLE LA GUICHARD", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50232"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a7d5c88a40a75ea35cc7815482e413fed43c858", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "MOBECQ", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c7a7c9a912a24c6a582e05f2e8008c2f5a8cdc6", "fields": {"nom_de_la_commune": "LA HAYE PESNEL", "libell_d_acheminement": "LA HAYE PESNEL", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50237"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd44bcd7086c23315b41aa2b568b9011f17b63d1", "fields": {"nom_de_la_commune": "HUDIMESNIL", "libell_d_acheminement": "HUDIMESNIL", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50252"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "073787581c49bb48f84f10abff86172f8d702a24", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "CHALANDREY", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f23b5e50f664caafa79a9daefb154be46075d3", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "LES BIARDS", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17994b7de4b85c6da9ddd1d43f4d19077dd356c5", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "NAFTEL", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62cc0373f23bc7d3012dd00cada8f22b872e5a4a", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "VEZINS", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20cfb5a556b66eedb05f1930e8f0bd6a76a3749d", "fields": {"nom_de_la_commune": "JUILLEY", "libell_d_acheminement": "JUILLEY", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50259"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2216cd1a01dcf19cce1a011c4679da8a9997333f", "fields": {"nom_de_la_commune": "LAMBERVILLE", "libell_d_acheminement": "LAMBERVILLE", "code_postal": "50160", "coordonnees_gps": [49.0498306608, -0.92753197973], "code_commune_insee": "50261"}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f5c6b206973a8cfbb469636ee694d36b3829bf7", "fields": {"nom_de_la_commune": "LAPENTY", "libell_d_acheminement": "LAPENTY", "code_postal": "50600", "coordonnees_gps": [48.5703711319, -1.06754299241], "code_commune_insee": "50263"}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a984c34fa3fb370fa3cc9166f317c95e58ab4fd8", "fields": {"nom_de_la_commune": "LINGEARD", "libell_d_acheminement": "LINGEARD", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50271"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac3fb2bf92f762ab6da03b1322c23874c9d32e33", "fields": {"code_postal": "50250", "code_commune_insee": "50273", "libell_d_acheminement": "MONTSENELLE", "ligne_5": "PRETOT STE SUZANNE", "nom_de_la_commune": "MONTSENELLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f6edcb6ba361847bacb22e7841b1c437a5d3f2", "fields": {"code_postal": "50250", "code_commune_insee": "50273", "libell_d_acheminement": "MONTSENELLE", "ligne_5": "ST JORES", "nom_de_la_commune": "MONTSENELLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6db87f1d215fb72e1e031b904b710c664142b58", "fields": {"nom_de_la_commune": "LA LUZERNE", "libell_d_acheminement": "LA LUZERNE", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50283"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d0f2d57535b66801b631d3644ce393cbabfe533", "fields": {"nom_de_la_commune": "MAGNEVILLE", "libell_d_acheminement": "MAGNEVILLE", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50285"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cfa0b111468e580ec45c9e3cebcbfa8aefb16e3", "fields": {"nom_de_la_commune": "MARCEY LES GREVES", "libell_d_acheminement": "MARCEY LES GREVES", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50288"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9da475cd313e913104163b4b4494a396ed6cf523", "fields": {"nom_de_la_commune": "MARIGNY LE LOZON", "libell_d_acheminement": "MARIGNY LE LOZON", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50292"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "570bcc90ed06dda0ec2f0ece72e88f59dd5b1ac2", "fields": {"nom_de_la_commune": "LE MESNIL", "libell_d_acheminement": "LE MESNIL", "code_postal": "50580", "coordonnees_gps": [49.3440940344, -1.66617929223], "code_commune_insee": "50299"}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "737f034923d88c5a32837d28e805517690157303", "fields": {"nom_de_la_commune": "LE MESNIL AUBERT", "libell_d_acheminement": "LE MESNIL AUBERT", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50304"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55fb855015247aacbae630044a882ebdf7a9bd29", "fields": {"nom_de_la_commune": "LE MESNILBUS", "libell_d_acheminement": "LE MESNILBUS", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50308"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef37c1335090056fc9e529fae5d69bb6ee82a21e", "fields": {"nom_de_la_commune": "LE MESNIL GARNIER", "libell_d_acheminement": "LE MESNIL GARNIER", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50311"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9df046f9e1017a74b581275b002a85369a3a6caf", "fields": {"nom_de_la_commune": "LE MESNIL HERMAN", "libell_d_acheminement": "LE MESNIL HERMAN", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50313"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94cf8057b717d6217c4f4336a695bf4032352f9b", "fields": {"nom_de_la_commune": "MONTBRAY", "libell_d_acheminement": "MONTBRAY", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50338"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c7966d5435f8802a86941df378ca34a4a63f889", "fields": {"nom_de_la_commune": "MONTJOIE ST MARTIN", "libell_d_acheminement": "MONTJOIE ST MARTIN", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50347"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2803c7bbf5775700afa3ab98fddbe74673af617", "fields": {"nom_de_la_commune": "MONTPINCHON", "libell_d_acheminement": "MONTPINCHON", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50350"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d385e23600ee02e370f2b2f1a8ea326a762639", "fields": {"nom_de_la_commune": "MONTSURVENT", "libell_d_acheminement": "MONTSURVENT", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50354"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8463b2aa2ff013dd13ed1f299453227cad327dfc", "fields": {"nom_de_la_commune": "MORSALINES", "libell_d_acheminement": "MORSALINES", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50358"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b99f2b1113e3d2c587b48969027488cafee7a47c", "fields": {"code_postal": "50140", "code_commune_insee": "50359", "libell_d_acheminement": "MORTAIN BOCAGE", "ligne_5": "BION", "nom_de_la_commune": "MORTAIN BOCAGE", "coordonnees_gps": [48.6562885959, -0.934860297079]}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "487ae6f58e4cd0582dc45433c8b40a67dd8f3a89", "fields": {"code_postal": "50140", "code_commune_insee": "50359", "libell_d_acheminement": "MORTAIN BOCAGE", "ligne_5": "NOTRE DAME DU TOUCHET", "nom_de_la_commune": "MORTAIN BOCAGE", "coordonnees_gps": [48.6562885959, -0.934860297079]}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1a342de606eb483f5146e39b5710102c26671a", "fields": {"code_postal": "50140", "code_commune_insee": "50359", "libell_d_acheminement": "MORTAIN BOCAGE", "ligne_5": "ST JEAN DU CORAIL", "nom_de_la_commune": "MORTAIN BOCAGE", "coordonnees_gps": [48.6562885959, -0.934860297079]}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b019ede89aa6c6af955689b8f6e00a669210b127", "fields": {"nom_de_la_commune": "MORVILLE", "libell_d_acheminement": "MORVILLE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50360"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d50dbeafdf04d92a50f29e274694fb37060f2d9", "fields": {"nom_de_la_commune": "MUNEVILLE LE BINGARD", "libell_d_acheminement": "MUNEVILLE LE BINGARD", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50364"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7555ac669013e84e8ea8b011dc66368d9597f454", "fields": {"nom_de_la_commune": "NEGREVILLE", "libell_d_acheminement": "NEGREVILLE", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50369"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "128998e293f927e86853b1aa39cfb80fccc929a3", "fields": {"nom_de_la_commune": "NEUFMESNIL", "libell_d_acheminement": "NEUFMESNIL", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50372"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33555fec67bcfaf4ba42472731a84b27ea554947", "fields": {"nom_de_la_commune": "NEUVILLE AU PLAIN", "libell_d_acheminement": "NEUVILLE AU PLAIN", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50373"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8887b24fe3c2e0360f62f5aec5aabc0280289ce5", "fields": {"nom_de_la_commune": "NEUVILLE EN BEAUMONT", "libell_d_acheminement": "NEUVILLE EN BEAUMONT", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50374"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57e6421fc2cf27f8b1288c1342254e4ac176ede", "fields": {"nom_de_la_commune": "NOTRE DAME DE CENILLY", "libell_d_acheminement": "NOTRE DAME DE CENILLY", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50378"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c68b3d12432a4f53618ea179daca1adde67595", "fields": {"nom_de_la_commune": "NOUAINVILLE", "libell_d_acheminement": "NOUAINVILLE", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50382"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d83d7e119101091735a7389681ee3251f3e06bf", "fields": {"nom_de_la_commune": "OCTEVILLE L AVENEL", "libell_d_acheminement": "OCTEVILLE L AVENEL", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50384"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1110511ea21e5da1a29e75027f538e00ecf1833", "fields": {"nom_de_la_commune": "PERCY EN NORMANDIE", "libell_d_acheminement": "PERCY EN NORMANDIE", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50393"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71f14fd1888d58572ed4c1fcb4b42c576451fb09", "fields": {"nom_de_la_commune": "LA PERNELLE", "libell_d_acheminement": "LA PERNELLE", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50395"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d5ff12fed9a79e52c721878f8aadf02723d0dc", "fields": {"nom_de_la_commune": "POILLEY", "libell_d_acheminement": "POILLEY", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50407"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b7d1d2f4d9ba407634b4d928f859f65287c4cf4", "fields": {"nom_de_la_commune": "PONTORSON", "libell_d_acheminement": "PONTORSON", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50410"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e924bc125d798aa1d16d487810f7be4600e126", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "CORMERAY", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "586de51c40ca130ea0a8750870a0a771cfce4edf", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "CUREY", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a430e8fab0e6553aa4e240d65125ffc6d69a025", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "LES PAS", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39601d079137b25b2f95e1b2f427db81cff333c", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "VESSEY", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc7797b021115064cd9b88620e0baa99aae5d2db", "fields": {"nom_de_la_commune": "PRECEY", "libell_d_acheminement": "PRECEY", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50413"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15603dfa39cc4d9a3e272989b67f8122a31be5eb", "fields": {"code_postal": "50660", "code_commune_insee": "50419", "libell_d_acheminement": "QUETTREVILLE SUR SIENNE", "ligne_5": "HYENVILLE", "nom_de_la_commune": "QUETTREVILLE SUR SIENNE", "coordonnees_gps": [48.9716894019, -1.47095914438]}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f08049fb03cf04ae0c7d9da4bb1ff3f7c530e82", "fields": {"nom_de_la_commune": "RAUVILLE LA PLACE", "libell_d_acheminement": "RAUVILLE LA PLACE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50426"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c18e4dfc252d35ba87a4aa904aa64820d724e1", "fields": {"nom_de_la_commune": "RAVENOVILLE", "libell_d_acheminement": "RAVENOVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50427"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe0ae829eed892a807f0709735324237e688b36", "fields": {"nom_de_la_commune": "ST AUBIN DE TERREGATTE", "libell_d_acheminement": "ST AUBIN DE TERREGATTE", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50448"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c1f4eca241bf47da841551e8ca2dff17d935a21", "fields": {"nom_de_la_commune": "ST AUBIN DU PERRON", "libell_d_acheminement": "ST AUBIN DU PERRON", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50449"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264bffdb7d1f59464981903350d58cc5104d9f5b", "fields": {"nom_de_la_commune": "ST BRICE", "libell_d_acheminement": "ST BRICE", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50451"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c392bedb8ad833b7a3760075c22dc538ee24e2f8", "fields": {"nom_de_la_commune": "ST CLAIR SUR L ELLE", "libell_d_acheminement": "ST CLAIR SUR L ELLE", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50455"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbf5ad81806f3d7fea99b99fe7ddaf79d85becb8", "fields": {"nom_de_la_commune": "ST CLEMENT RANCOUDRAY", "libell_d_acheminement": "ST CLEMENT RANCOUDRAY", "code_postal": "50140", "coordonnees_gps": [48.6562885959, -0.934860297079], "code_commune_insee": "50456"}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6fae8bd2b0574aa95195f5ecb5dfdfb056c4711", "fields": {"nom_de_la_commune": "ST FLOXEL", "libell_d_acheminement": "ST FLOXEL", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50467"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0445a3b9d44f12f3cd7b940e1ad93ed981af3d68", "fields": {"nom_de_la_commune": "ST FROMOND", "libell_d_acheminement": "ST FROMOND", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50468"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9e8b1a623ba384bbabfe3129ce36ad0ef6170af", "fields": {"nom_de_la_commune": "ST GERMAIN D ELLE", "libell_d_acheminement": "ST GERMAIN D ELLE", "code_postal": "50810", "coordonnees_gps": [49.1141244901, -0.965580935712], "code_commune_insee": "50476"}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2427da548626b819caa1a053c63f560e5bfb1f6b", "fields": {"code_postal": "50730", "code_commune_insee": "50484", "libell_d_acheminement": "ST HILAIRE DU HARCOUET", "ligne_5": "ST MARTIN DE LANDELLES", "nom_de_la_commune": "ST HILAIRE DU HARCOUET", "coordonnees_gps": [48.5520322078, -1.12375344809]}, "geometry": {"type": "Point", "coordinates": [-1.12375344809, 48.5520322078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23bab85f1fda4795815a7230d4eae899a40db674", "fields": {"nom_de_la_commune": "ST JEAN DE DAYE", "libell_d_acheminement": "ST JEAN DE DAYE", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50488"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f10bb8826787e6821397548f70c0d26b06a08464", "fields": {"nom_de_la_commune": "ST JEAN D ELLE", "libell_d_acheminement": "ST JEAN D ELLE", "code_postal": "50810", "coordonnees_gps": [49.1141244901, -0.965580935712], "code_commune_insee": "50492"}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207117449abf504b7313cdd1afe57553bb92be93", "fields": {"code_postal": "50810", "code_commune_insee": "50492", "libell_d_acheminement": "ST JEAN D ELLE", "ligne_5": "ROUXEVILLE", "nom_de_la_commune": "ST JEAN D ELLE", "coordonnees_gps": [49.1141244901, -0.965580935712]}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98df43139a26dca2d8249b277a444c368d9b4d9c", "fields": {"code_postal": "50320", "code_commune_insee": "50493", "libell_d_acheminement": "ST JEAN DES CHAMPS", "ligne_5": "ST LEGER", "nom_de_la_commune": "ST JEAN DES CHAMPS", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "042c3e26567685b257be6cb068e666ae7e585fa8", "fields": {"code_postal": "50320", "code_commune_insee": "50493", "libell_d_acheminement": "ST JEAN DES CHAMPS", "ligne_5": "ST URSIN", "nom_de_la_commune": "ST JEAN DES CHAMPS", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b43cabe6e1052e491803ea3f3eb585e51f025fda", "fields": {"nom_de_la_commune": "ST LO D OURVILLE", "libell_d_acheminement": "ST LO D OURVILLE", "code_postal": "50580", "coordonnees_gps": [49.3440940344, -1.66617929223], "code_commune_insee": "50503"}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bfa21efa49780ef9c780c719c15e6832019720e", "fields": {"nom_de_la_commune": "STE MARIE DU MONT", "libell_d_acheminement": "STE MARIE DU MONT", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50509"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b73d2ff39c2eeebb53954d3cb1ab15a90e8668df", "fields": {"nom_de_la_commune": "ST MARTIN D AUDOUVILLE", "libell_d_acheminement": "ST MARTIN D AUDOUVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50511"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f68daefd6b0d23e804fc8183397093a52afe5fd0", "fields": {"code_postal": "50150", "code_commune_insee": "50514", "libell_d_acheminement": "CHAULIEU", "ligne_5": "ST SAUVEUR DE CHAULIEU", "nom_de_la_commune": "CHAULIEU", "coordonnees_gps": [48.7316763227, -0.921013476497]}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b937c4b1101f4957a0819ab455e9fa0bbbad3fb", "fields": {"nom_de_la_commune": "ST MICHEL DE LA PIERRE", "libell_d_acheminement": "ST MICHEL DE LA PIERRE", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50524"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3ff13504d0b95a1fd41ac4b0f6f87a81fe34d5", "fields": {"nom_de_la_commune": "ST NICOLAS DES BOIS", "libell_d_acheminement": "ST NICOLAS DES BOIS", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50529"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8910c5ba91c94d5a649e28d9426416c01d8f75e", "fields": {"nom_de_la_commune": "ST PIERRE LANGERS", "libell_d_acheminement": "ST PIERRE LANGERS", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50540"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf247364c2cfae349234bfd594417d6d99f31413", "fields": {"code_postal": "50750", "code_commune_insee": "50546", "libell_d_acheminement": "BOURGVALLEES", "ligne_5": "ST SAMSON DE BONFOSSE", "nom_de_la_commune": "BOURGVALLEES", "coordonnees_gps": [49.0496336445, -1.17517736978]}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "740183100126e9089484705e5cd81b3509c079ed", "fields": {"nom_de_la_commune": "ST SAUVEUR LENDELIN", "libell_d_acheminement": "ST SAUVEUR LENDELIN", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50550"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a54f6565fd846f874bbe019b04b2813baf3789", "fields": {"nom_de_la_commune": "ST SEBASTIEN DE RAIDS", "libell_d_acheminement": "ST SEBASTIEN DE RAIDS", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50552"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f433a11acc9956ed07122641fde1597e8c4c06", "fields": {"nom_de_la_commune": "ST SENIER DE BEUVRON", "libell_d_acheminement": "ST SENIER DE BEUVRON", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50553"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd24cb79ce07f847aae21dc5f447f338e4b4b64", "fields": {"code_postal": "50530", "code_commune_insee": "50565", "libell_d_acheminement": "SARTILLY BAIE BOCAGE", "ligne_5": "ANGEY", "nom_de_la_commune": "SARTILLY BAIE BOCAGE", "coordonnees_gps": [48.7283863786, -1.45989829146]}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fff1321639d7be4921ebcc58315ece07b2473e7c", "fields": {"code_postal": "50530", "code_commune_insee": "50565", "libell_d_acheminement": "SARTILLY BAIE BOCAGE", "ligne_5": "LA ROCHELLE NORMANDE", "nom_de_la_commune": "SARTILLY BAIE BOCAGE", "coordonnees_gps": [48.7283863786, -1.45989829146]}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d618c4530d614608464ac77077597f00427fde0", "fields": {"nom_de_la_commune": "SIOUVILLE HAGUE", "libell_d_acheminement": "SIOUVILLE HAGUE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50576"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f9c6db62930ef816d9a0f642417742d05458510", "fields": {"nom_de_la_commune": "SOTTEVILLE", "libell_d_acheminement": "SOTTEVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50580"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a4ead1f41c21c682bdf0034bb9ad835509de4b", "fields": {"nom_de_la_commune": "SUBLIGNY", "libell_d_acheminement": "SUBLIGNY", "code_postal": "50870", "coordonnees_gps": [48.7458565845, -1.30663914164], "code_commune_insee": "50584"}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2838478cbdcb388bfdbf9e55d8c14b704b550d83", "fields": {"nom_de_la_commune": "LE TEILLEUL", "libell_d_acheminement": "LE TEILLEUL", "code_postal": "50640", "coordonnees_gps": [48.5293564364, -0.941843015494], "code_commune_insee": "50591"}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b474287ae53853c9e9f072f24bc01d17cf1cb940", "fields": {"code_postal": "50640", "code_commune_insee": "50591", "libell_d_acheminement": "LE TEILLEUL", "ligne_5": "HUSSON", "nom_de_la_commune": "LE TEILLEUL", "coordonnees_gps": [48.5293564364, -0.941843015494]}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43ea12c63dae05e2b2b88780357871ce28e968e4", "fields": {"nom_de_la_commune": "TESSY BOCAGE", "libell_d_acheminement": "TESSY BOCAGE", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50592"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "065ea16b4d0e27d5f25124d617227d9e50d6f20f", "fields": {"nom_de_la_commune": "TOCQUEVILLE", "libell_d_acheminement": "TOCQUEVILLE", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50598"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12b86c53c0a7391a978bf2f028fb70e984879f6", "fields": {"nom_de_la_commune": "TONNEVILLE", "libell_d_acheminement": "TONNEVILLE", "code_postal": "50460", "coordonnees_gps": [49.6466043222, -1.6849502548], "code_commune_insee": "50600"}, "geometry": {"type": "Point", "coordinates": [-1.6849502548, 49.6466043222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1a530fc72015b7379824e31d7727054f4b79a86", "fields": {"code_postal": "50160", "code_commune_insee": "50601", "libell_d_acheminement": "TORIGNY LES VILLES", "ligne_5": "GIEVILLE", "nom_de_la_commune": "TORIGNY LES VILLES", "coordonnees_gps": [49.0498306608, -0.92753197973]}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "898d634502c49fbc1eaf009800513cc5e933206b", "fields": {"code_postal": "50160", "code_commune_insee": "50601", "libell_d_acheminement": "TORIGNY LES VILLES", "ligne_5": "GUILBERVILLE", "nom_de_la_commune": "TORIGNY LES VILLES", "coordonnees_gps": [49.0498306608, -0.92753197973]}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a796b70ee9a6b610debf12e97233bac7bfa6d41", "fields": {"nom_de_la_commune": "TRELLY", "libell_d_acheminement": "TRELLY", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50605"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54828bb670e0d198c4429eff4543f2792893144", "fields": {"nom_de_la_commune": "TROISGOTS", "libell_d_acheminement": "TROISGOTS", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50608"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3130fb877d34902b89b6b510d1009b41a11f22e9", "fields": {"nom_de_la_commune": "VALCANVILLE", "libell_d_acheminement": "VALCANVILLE", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50613"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c3ba19f66fceb13253c1ede3641a6f7bd24010a", "fields": {"nom_de_la_commune": "VAUDREVILLE", "libell_d_acheminement": "VAUDREVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50621"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6693282db44c3244db2beebecda247307a0d00b6", "fields": {"nom_de_la_commune": "VERNIX", "libell_d_acheminement": "VERNIX", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50628"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd3434bce915b27d80a3fbd57c3de3e62dc6b0e", "fields": {"code_postal": "50430", "code_commune_insee": "50629", "libell_d_acheminement": "VESLY", "ligne_5": "GERVILLE LA FORET", "nom_de_la_commune": "VESLY", "coordonnees_gps": [49.238207059, -1.53592999138]}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed6a5c61d21d67248cb5a45670c06b868d3d863", "fields": {"nom_de_la_commune": "VIERVILLE", "libell_d_acheminement": "VIERVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50636"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8cfced65d5a0e38470a2387e4807ab06ea846d8", "fields": {"nom_de_la_commune": "LAREE", "libell_d_acheminement": "LAREE", "code_postal": "32150", "coordonnees_gps": [43.9190765536, -0.0421545944105], "code_commune_insee": "32193"}, "geometry": {"type": "Point", "coordinates": [-0.0421545944105, 43.9190765536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d29a94795fd373f234c34b48afcf88d23ab97bfe", "fields": {"nom_de_la_commune": "CHATEAU VERDUN", "libell_d_acheminement": "CHATEAU VERDUN", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09096"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1745cd3b33f673cb16850d1b171a3990aaae8745", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09086"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62bc72f5f38674d2dab69619f58b4cacedd67561", "fields": {"nom_de_la_commune": "DURFORT", "libell_d_acheminement": "DURFORT", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09109"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bc8c2750ec252ac47822f6f842c3aef569ed7ef", "fields": {"nom_de_la_commune": "LE BOSC", "libell_d_acheminement": "LE BOSC", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09063"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdbccdf6445ba930400f0e1a3f5bbcbddbcc1a52", "fields": {"nom_de_la_commune": "CESCAU", "libell_d_acheminement": "CESCAU", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09095"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345e316824149137ae4067e851de7396b6458074", "fields": {"nom_de_la_commune": "CAZAUX", "libell_d_acheminement": "CAZAUX", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09090"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac454059f39cc9919eb6e6f148409e38c500d011", "fields": {"nom_de_la_commune": "BUZAN", "libell_d_acheminement": "BUZAN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09069"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c382909d949b13c8cdb4a85a8b97fa1a55978254", "fields": {"nom_de_la_commune": "BEZAC", "libell_d_acheminement": "BEZAC", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09056"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033073edd62bbc0a27f72a5eeda6fd61cfcf194a", "fields": {"nom_de_la_commune": "COS", "libell_d_acheminement": "COS", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09099"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1ad289acd425de42988fbc715f584d1c375f898", "fields": {"nom_de_la_commune": "FOUGAX ET BARRINEUF", "libell_d_acheminement": "FOUGAX ET BARRINEUF", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09125"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b6fe53a959503c191eb774805dcccc07267d5a", "fields": {"nom_de_la_commune": "GOULIER", "libell_d_acheminement": "GOULIER", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09135"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb732be5260cd3ee1bbf03819ed79d26b92b7ee8", "fields": {"nom_de_la_commune": "GENAT", "libell_d_acheminement": "GENAT", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09133"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c277ad213efe75629463f08b5d45b1348179a5fa", "fields": {"nom_de_la_commune": "GABRE", "libell_d_acheminement": "GABRE", "code_postal": "09290", "coordonnees_gps": [43.0688947964, 1.3366340035], "code_commune_insee": "09127"}, "geometry": {"type": "Point", "coordinates": [1.3366340035, 43.0688947964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba1fe25ba777ded8f604476c291d723d124c3bd7", "fields": {"nom_de_la_commune": "COURTRIZY ET FUSSIGNY", "libell_d_acheminement": "COURTRIZY ET FUSSIGNY", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02229"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ea09d81333226b405fa89a4d1047112d4a5bf9", "fields": {"nom_de_la_commune": "CLERMONT LES FERMES", "libell_d_acheminement": "CLERMONT LES FERMES", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02200"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9426813e5c886c2a5aa902983efb8b941cbc2157", "fields": {"nom_de_la_commune": "LA CROIX SUR OURCQ", "libell_d_acheminement": "LA CROIX SUR OURCQ", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02241"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb354ed0b7784bc0702156f7c129b1656f22087", "fields": {"nom_de_la_commune": "CONDE SUR SUIPPE", "libell_d_acheminement": "CONDE SUR SUIPPE", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02211"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63cc1bcfa46412911ef8576eaad592dee10e4bd7", "fields": {"nom_de_la_commune": "CONDE EN BRIE", "libell_d_acheminement": "CONDE EN BRIE", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02209"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a83443726ea303481f40a68cf3b3ad7187f8422", "fields": {"nom_de_la_commune": "CHEVREGNY", "libell_d_acheminement": "CHEVREGNY", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02183"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20aea32f1ef7e9cd5499b9b404a56fda967c1833", "fields": {"nom_de_la_commune": "CONNIGIS", "libell_d_acheminement": "CONNIGIS", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02213"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eb9cc3aa621df44d32a8681b600164f3fce4316", "fields": {"nom_de_la_commune": "CONDREN", "libell_d_acheminement": "CONDREN", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02212"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ddb7e8819d438cac62e6ab3d9010ecfcaf37b2", "fields": {"nom_de_la_commune": "COINGT", "libell_d_acheminement": "COINGT", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02204"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a61b7f58724d3fb77d53ca773f88bb776e81b633", "fields": {"nom_de_la_commune": "CHIGNY", "libell_d_acheminement": "CHIGNY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02188"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c805db9a854d75c1dc6a01a09983c7b3178c05", "fields": {"nom_de_la_commune": "CAILLOUEL CREPIGNY", "libell_d_acheminement": "CAILLOUEL CREPIGNY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02139"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d307fe818f0d8e4af511907582094a67b9f040", "fields": {"nom_de_la_commune": "BILLY SUR OURCQ", "libell_d_acheminement": "BILLY SUR OURCQ", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02090"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96918f4614e935709bb63985f7809cc5416dbb86", "fields": {"nom_de_la_commune": "BOIS LES PARGNY", "libell_d_acheminement": "BOIS LES PARGNY", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02096"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9c08869aa14ff93e4f082e44b2df2d8a16eaf8", "fields": {"nom_de_la_commune": "BUCY LES CERNY", "libell_d_acheminement": "BUCY LES CERNY", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02132"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca097eb1f2c5fedf46247bb7ba4dfa132d54ef49", "fields": {"nom_de_la_commune": "BOURG ET COMIN", "libell_d_acheminement": "BOURG ET COMIN", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02106"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5773e58d876b0c52a4d8e440e8bdf12f8f373a9", "fields": {"nom_de_la_commune": "BUCY LE LONG", "libell_d_acheminement": "BUCY LE LONG", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02131"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f9762199ff730d1249f630d398346fc76e42bf", "fields": {"nom_de_la_commune": "BONNESVALYN", "libell_d_acheminement": "BONNESVALYN", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02099"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7316ab55dc15ee5c7a645d77e953cdc33551ee0", "fields": {"nom_de_la_commune": "BURELLES", "libell_d_acheminement": "BURELLES", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02136"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "751cb638858606c1967cda1d723d00f08ec36afc", "fields": {"nom_de_la_commune": "BRENELLE", "libell_d_acheminement": "BRENELLE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02120"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b6932b65045abd9d85f131b8478ba936cfbaac2", "fields": {"nom_de_la_commune": "BRAINE", "libell_d_acheminement": "BRAINE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02110"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7744f1b725c0e20020e554005c13339ecb8cdba", "fields": {"nom_de_la_commune": "BETHANCOURT EN VAUX", "libell_d_acheminement": "BETHANCOURT EN VAUX", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02081"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63d7b5862925238c1eb6526d125b7f7e4720a1a9", "fields": {"nom_de_la_commune": "BILLY SUR AISNE", "libell_d_acheminement": "BILLY SUR AISNE", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02089"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d83c5f440b604a953219752fb390ac82d8637141", "fields": {"nom_de_la_commune": "BERNY RIVIERE", "libell_d_acheminement": "BERNY RIVIERE", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02071"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954ab2735b1de2b0264b3b7811727bfa0031d250", "fields": {"nom_de_la_commune": "BELLENGLISE", "libell_d_acheminement": "BELLENGLISE", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02063"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02f5bce45cd4c8f43a7427d8ede227864a19a0c1", "fields": {"nom_de_la_commune": "BERTRICOURT", "libell_d_acheminement": "BERTRICOURT", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02076"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f93500238672410c90b3fa7dbcab56d66a3edfc", "fields": {"nom_de_la_commune": "BECQUIGNY", "libell_d_acheminement": "BECQUIGNY", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02061"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a975f903fe394204b71340a4c1a783eedba0d02", "fields": {"nom_de_la_commune": "BEUVARDES", "libell_d_acheminement": "BEUVARDES", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02083"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12d9d10359440a9add4809db366f40397e878097", "fields": {"nom_de_la_commune": "BERRIEUX", "libell_d_acheminement": "BERRIEUX", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02072"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452b14acdd0f8160c52ed6b9341b9fd8606d9d1a", "fields": {"nom_de_la_commune": "BERLISE", "libell_d_acheminement": "BERLISE", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02069"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd573d731489a2c94f270b488f5925165f6a3386", "fields": {"nom_de_la_commune": "BEAUME", "libell_d_acheminement": "BEAUME", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02055"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b26fc514f5fa32e26976ccb519315c6ced121983", "fields": {"code_postal": "02300", "code_commune_insee": "02140", "libell_d_acheminement": "CAMELIN", "ligne_5": "LOMBRAY", "nom_de_la_commune": "CAMELIN", "coordonnees_gps": [49.5817295222, 3.19169688143]}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00c17c3e6fa50770af53c5b86df5869436042df", "fields": {"nom_de_la_commune": "CELLES LES CONDE", "libell_d_acheminement": "CELLES LES CONDE", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02146"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22b9164b36dccbb6d45378674f9724ff69cb3c34", "fields": {"nom_de_la_commune": "CERNY LES BUCY", "libell_d_acheminement": "CERNY LES BUCY", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02151"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da06423384a4b6738fadb801127411e00e13963", "fields": {"nom_de_la_commune": "CAULAINCOURT", "libell_d_acheminement": "CAULAINCOURT", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02144"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e0edd59dbbadf852e01b6cfc9b31f5f7a27ec0", "fields": {"nom_de_la_commune": "CHAUDARDES", "libell_d_acheminement": "CHAUDARDES", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02171"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0094817d2643da0391a54aa4aae06d653c65b2", "fields": {"nom_de_la_commune": "CHAVIGNON", "libell_d_acheminement": "CHAVIGNON", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02174"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0115cfbabf3be7debfd1e59331b1f4293bb6483", "fields": {"nom_de_la_commune": "CHASSEMY", "libell_d_acheminement": "CHASSEMY", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02167"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d136752f3c75defe8977537abf3da60eee0da7ce", "fields": {"nom_de_la_commune": "CAMELIN", "libell_d_acheminement": "CAMELIN", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02140"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb26c52e1f175634fe1793030b67e48cdd1a828b", "fields": {"nom_de_la_commune": "CHARMES", "libell_d_acheminement": "CHARMES", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02165"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2483cb51bdb192fea170ef54114e8b06ba65f88c", "fields": {"nom_de_la_commune": "CHAUNY", "libell_d_acheminement": "CHAUNY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02173"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "847be3808f3627db41256150edaddf788ed6d6cc", "fields": {"nom_de_la_commune": "FONTAINE LES CLERCS", "libell_d_acheminement": "FONTAINE LES CLERCS", "code_postal": "02680", "coordonnees_gps": [49.80786398, 3.24088325825], "code_commune_insee": "02320"}, "geometry": {"type": "Point", "coordinates": [3.24088325825, 49.80786398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "953c50fa575602f6937a85402e0c8ad589f42ca6", "fields": {"nom_de_la_commune": "FRESSANCOURT", "libell_d_acheminement": "FRESSANCOURT", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02335"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05bfa30993a5642f80293b7ea8eaf118165403b6", "fields": {"nom_de_la_commune": "FONTENELLE", "libell_d_acheminement": "FONTENELLE", "code_postal": "02170", "coordonnees_gps": [50.0019463297, 3.79418155637], "code_commune_insee": "02324"}, "geometry": {"type": "Point", "coordinates": [3.79418155637, 50.0019463297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88c6c7e350b417c737488fd7ada5d9674095f464", "fields": {"nom_de_la_commune": "FIEULAINE", "libell_d_acheminement": "FIEULAINE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02310"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6023a8e2568614728eb66359ca871fc0a46a9e3c", "fields": {"nom_de_la_commune": "FONTENOY", "libell_d_acheminement": "FONTENOY", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02326"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbd5a0eb2f1e9be6b7d914f2a2ef5ba66a6705b4", "fields": {"code_postal": "01260", "code_commune_insee": "01036", "libell_d_acheminement": "BELMONT LUTHEZIEU", "ligne_5": "LUTHEZIEU", "nom_de_la_commune": "BELMONT LUTHEZIEU", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "678a4c56dbdc758e6cff15aba7f8ed2d237a479f", "fields": {"nom_de_la_commune": "CHATILLON SUR CHALARONNE", "libell_d_acheminement": "CHATILLON SUR CHALARONNE", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01093"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82caabbec92a835b3061a202f3b6fbacc0f52982", "fields": {"nom_de_la_commune": "CHAVANNES SUR SURAN", "libell_d_acheminement": "CHAVANNES SUR SURAN", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01095"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14aa445432b9d0e5da84f5f8c4127e087ec7bbe2", "fields": {"nom_de_la_commune": "CHEIGNIEU LA BALME", "libell_d_acheminement": "CHEIGNIEU LA BALME", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01100"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "466c45cb9b88e70e26f39f986427563e89488827", "fields": {"nom_de_la_commune": "CHANOZ CHATENAY", "libell_d_acheminement": "CHANOZ CHATENAY", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01084"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85aefed46e6b43f8d56e852aa42827e76ee17d05", "fields": {"nom_de_la_commune": "BENONCES", "libell_d_acheminement": "BENONCES", "code_postal": "01470", "coordonnees_gps": [45.805864462, 5.47727707691], "code_commune_insee": "01037"}, "geometry": {"type": "Point", "coordinates": [5.47727707691, 45.805864462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfeba3fdf043d214b3a111ace0d7b4c17202670b", "fields": {"nom_de_la_commune": "BOISSEY", "libell_d_acheminement": "BOISSEY", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01050"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c072088559b1060feb5d139f449edf99a86002c", "fields": {"nom_de_la_commune": "BELLEY", "libell_d_acheminement": "BELLEY", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01034"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d26ab074cfafe26b902aa66486a6bb82a4b7cd22", "fields": {"nom_de_la_commune": "CHALEY", "libell_d_acheminement": "CHALEY", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01076"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eb884f617236dfcb59c2349090edc3cf61b0457", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "01460", "coordonnees_gps": [46.1732029522, 5.56455683284], "code_commune_insee": "01063"}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b313d74651141a17392fb47a1073566b67be44f", "fields": {"code_postal": "01250", "code_commune_insee": "01184", "libell_d_acheminement": "HAUTECOURT ROMANECHE", "ligne_5": "ROMANECHE", "nom_de_la_commune": "HAUTECOURT ROMANECHE", "coordonnees_gps": [46.2066710432, 5.38605889851]}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8750a11fada0967e50fd4a379abad6fbf40e3116", "fields": {"code_postal": "01200", "code_commune_insee": "01189", "libell_d_acheminement": "INJOUX GENISSIAT", "ligne_5": "CRAZ", "nom_de_la_commune": "INJOUX GENISSIAT", "coordonnees_gps": [46.1338706653, 5.81259483702]}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bdee0cae35b9b5768efc749e3ff5df7338f73af", "fields": {"nom_de_la_commune": "JASSANS RIOTTIER", "libell_d_acheminement": "JASSANS RIOTTIER", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01194"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "496044ecc3704ad879702c02ba538345f97aaa34", "fields": {"nom_de_la_commune": "INNIMOND", "libell_d_acheminement": "INNIMOND", "code_postal": "01680", "coordonnees_gps": [45.752622921, 5.55446422211], "code_commune_insee": "01190"}, "geometry": {"type": "Point", "coordinates": [5.55446422211, 45.752622921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f51b7f409d857c804e711e8df8d40b6feead2a12", "fields": {"nom_de_la_commune": "LABALME", "libell_d_acheminement": "LABALME", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01200"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a70ea23ac78f659efcf31b4d48108d1e8eb5fa9", "fields": {"nom_de_la_commune": "IZENAVE", "libell_d_acheminement": "IZENAVE", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01191"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a415baf0d61d36f520530cc1168b52eeff54076", "fields": {"nom_de_la_commune": "LAGNIEU", "libell_d_acheminement": "LAGNIEU", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01202"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3732a849eef11f8ffcdaf6d5add823e86f6f5dff", "fields": {"nom_de_la_commune": "JOYEUX", "libell_d_acheminement": "JOYEUX", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01198"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e7210d9dde6af85e7b8f3c6604d19af9614b046", "fields": {"nom_de_la_commune": "ILLIAT", "libell_d_acheminement": "ILLIAT", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01188"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0e667ae10715ee7b512b594dcb9616c4c4f76d5", "fields": {"nom_de_la_commune": "IZIEU", "libell_d_acheminement": "IZIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01193"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "822a2a98d6a0b2de9a6e3a4f7c22a540009b34ab", "fields": {"code_postal": "01120", "code_commune_insee": "01262", "libell_d_acheminement": "MONTLUEL", "ligne_5": "CORDIEUX", "nom_de_la_commune": "MONTLUEL", "coordonnees_gps": [45.8725197955, 5.04054729356]}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecff53db02b6a3267f6bca1c0b3d69e926bfc2b3", "fields": {"code_postal": "01100", "code_commune_insee": "01283", "libell_d_acheminement": "OYONNAX", "ligne_5": "VEYZIAT", "nom_de_la_commune": "OYONNAX", "coordonnees_gps": [46.2468792013, 5.65226081977]}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77c042f57a5f38f12f957606f19c73b15e630845", "fields": {"nom_de_la_commune": "NIVOLLET MONTGRIFFON", "libell_d_acheminement": "NIVOLLET MONTGRIFFON", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01277"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b96d25a93ac4fe806832d067545a6083a45935d4", "fields": {"nom_de_la_commune": "MONTREAL LA CLUSE", "libell_d_acheminement": "MONTREAL LA CLUSE", "code_postal": "01460", "coordonnees_gps": [46.1732029522, 5.56455683284], "code_commune_insee": "01265"}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04fe011d9e384b8f43cd58a5a5b1eddad7b4604c", "fields": {"nom_de_la_commune": "MISERIEUX", "libell_d_acheminement": "MISERIEUX", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01250"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "173fe80747096a70b68c29640182669d2d34daee", "fields": {"nom_de_la_commune": "MONTCEAUX", "libell_d_acheminement": "MONTCEAUX", "code_postal": "01090", "coordonnees_gps": [46.0869886552, 4.79611073763], "code_commune_insee": "01258"}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2606321772797ed60305655e1d2284ae61f1ba0a", "fields": {"nom_de_la_commune": "NANTUA", "libell_d_acheminement": "NANTUA", "code_postal": "01460", "coordonnees_gps": [46.1732029522, 5.56455683284], "code_commune_insee": "01269"}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dd62e9184cbdef8e4a7527b2b232dd785128d8e", "fields": {"nom_de_la_commune": "NEYRON", "libell_d_acheminement": "NEYRON", "code_postal": "01700", "coordonnees_gps": [45.8388521429, 4.95806179291], "code_commune_insee": "01275"}, "geometry": {"type": "Point", "coordinates": [4.95806179291, 45.8388521429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c789a7672075a83360302fd85c83020b7b6090ad", "fields": {"nom_de_la_commune": "NANTUA", "libell_d_acheminement": "NANTUA", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01269"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "162fa0777090536f6469e78681a4d786b1aa6033", "fields": {"nom_de_la_commune": "ORNEX", "libell_d_acheminement": "ORNEX", "code_postal": "01210", "coordonnees_gps": [46.2774426572, 6.10074151675], "code_commune_insee": "01281"}, "geometry": {"type": "Point", "coordinates": [6.10074151675, 46.2774426572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "815f78a12a77c8a6a5f96bf9d8b07a85e3004335", "fields": {"nom_de_la_commune": "CURCIAT DONGALON", "libell_d_acheminement": "CURCIAT DONGALON", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01139"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d203af7bd3a42feaa30e661abe045ef82a76866", "fields": {"nom_de_la_commune": "CHEZERY FORENS", "libell_d_acheminement": "CHEZERY FORENS", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01104"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2496392e4d18cca25760fa242f4448cbe706c536", "fields": {"nom_de_la_commune": "CORVEISSIAT", "libell_d_acheminement": "CORVEISSIAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01125"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3cd1ac408d2ad3081fb6c6c670881778ea41a8c", "fields": {"nom_de_la_commune": "CURTAFOND", "libell_d_acheminement": "CURTAFOND", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01140"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce71846d9de8d4a6e0e315f116227d0ed17c3e24", "fields": {"nom_de_la_commune": "GROISSIAT", "libell_d_acheminement": "GROISSIAT", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01181"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56a22f24677f5d3ba9ec03cbc7b50a350c682ad9", "fields": {"nom_de_la_commune": "GUEREINS", "libell_d_acheminement": "GUEREINS", "code_postal": "01090", "coordonnees_gps": [46.0869886552, 4.79611073763], "code_commune_insee": "01183"}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5aad2d2d93f180ec101725378063fad11e5c0cc", "fields": {"nom_de_la_commune": "ECHALLON", "libell_d_acheminement": "ECHALLON", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01152"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "912fd66e322fe3f91289d816e7aa8a215cfdc457", "fields": {"nom_de_la_commune": "CLEYZIEU", "libell_d_acheminement": "CLEYZIEU", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01107"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5132a410843fcbb1858fd14220c60dd226f4eb4a", "fields": {"nom_de_la_commune": "EVOSGES", "libell_d_acheminement": "EVOSGES", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01155"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d3aa64a57cac5b55f103fbd2c4b6c57e8ede63", "fields": {"nom_de_la_commune": "CIZE", "libell_d_acheminement": "CIZE", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01106"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce135331ea87bd839bef8d2cb14ecc73b93009ab", "fields": {"nom_de_la_commune": "ARMENTIERES SUR OURCQ", "libell_d_acheminement": "ARMENTIERES SUR OURCQ", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02023"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d9e2879dc85f550ea467685ab00002339f68c5c", "fields": {"nom_de_la_commune": "ANGUILCOURT LE SART", "libell_d_acheminement": "ANGUILCOURT LE SART", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02017"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd314442e528b813dd1c49ae7f28a13066ec099d", "fields": {"nom_de_la_commune": "LE MESNIL AMAND", "libell_d_acheminement": "LE MESNIL AMAND", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50301"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe199bc67e2793740c8401c0f72ebea284c8d2d9", "fields": {"nom_de_la_commune": "LE MESNIL AMEY", "libell_d_acheminement": "LE MESNIL AMEY", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50302"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad2e117c8406b42a6c0fd2972f45e519d7a647d", "fields": {"nom_de_la_commune": "LE MESNIL AU VAL", "libell_d_acheminement": "LE MESNIL AU VAL", "code_postal": "50110", "coordonnees_gps": [49.6236287204, -1.56289409844], "code_commune_insee": "50305"}, "geometry": {"type": "Point", "coordinates": [-1.56289409844, 49.6236287204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8c9120443047ed6de097618c652d2e1b70be7f8", "fields": {"nom_de_la_commune": "LE MESNILLARD", "libell_d_acheminement": "LE MESNILLARD", "code_postal": "50600", "coordonnees_gps": [48.5703711319, -1.06754299241], "code_commune_insee": "50315"}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4e9935838d6692733bba30ddb0808202a9356d2", "fields": {"nom_de_la_commune": "LE MESNIL RAINFRAY", "libell_d_acheminement": "LE MESNIL RAINFRAY", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50318"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72b78053079cebe9ccfadaa2222fc04692bce179", "fields": {"nom_de_la_commune": "LE MESNIL ROGUES", "libell_d_acheminement": "LE MESNIL ROGUES", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50320"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360b6f7515ff903744fa2be113e21ebea27a25c7", "fields": {"nom_de_la_commune": "LES MOITIERS EN BAUPTOIS", "libell_d_acheminement": "LES MOITIERS EN BAUPTOIS", "code_postal": "50360", "coordonnees_gps": [49.3768356416, -1.41731923499], "code_commune_insee": "50333"}, "geometry": {"type": "Point", "coordinates": [-1.41731923499, 49.3768356416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e708e7109e7f3993045de5f26d544b288f4e0049", "fields": {"nom_de_la_commune": "MONTEBOURG", "libell_d_acheminement": "MONTEBOURG", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50341"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e6d8ffbc96206d13f9312b46272737fa8f803d8", "fields": {"nom_de_la_commune": "MONTMARTIN EN GRAIGNES", "libell_d_acheminement": "MONTMARTIN EN GRAIGNES", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50348"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cfa3cceeaccba8df3e955a943a8bb9b8cce3190", "fields": {"nom_de_la_commune": "MONTMARTIN SUR MER", "libell_d_acheminement": "MONTMARTIN SUR MER", "code_postal": "50590", "coordonnees_gps": [48.998351467, -1.53536168887], "code_commune_insee": "50349"}, "geometry": {"type": "Point", "coordinates": [-1.53536168887, 48.998351467]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f31303f5c6e10749ff3665deecc33723289b2b", "fields": {"nom_de_la_commune": "MONTRABOT", "libell_d_acheminement": "MONTRABOT", "code_postal": "50810", "coordonnees_gps": [49.1141244901, -0.965580935712], "code_commune_insee": "50351"}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3ff9814a6c1bdb73c8e9c4afa4917cf357c2505", "fields": {"nom_de_la_commune": "LE MONT ST MICHEL", "libell_d_acheminement": "LE MONT ST MICHEL", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50353"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5adc0408089973738abf9d27e671ff1c86554174", "fields": {"nom_de_la_commune": "MORTAIN BOCAGE", "libell_d_acheminement": "MORTAIN BOCAGE", "code_postal": "50140", "coordonnees_gps": [48.6562885959, -0.934860297079], "code_commune_insee": "50359"}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "804414b6a7bbdc4b766192b56c0da1a30f1f0f09", "fields": {"nom_de_la_commune": "NOTRE DAME DE LIVOYE", "libell_d_acheminement": "NOTRE DAME DE LIVOYE", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50379"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0b2b2e16f22535dc84738b7ed494d89fa8a486", "fields": {"nom_de_la_commune": "PERRIERS EN BEAUFICEL", "libell_d_acheminement": "PERRIERS EN BEAUFICEL", "code_postal": "50150", "coordonnees_gps": [48.7316763227, -0.921013476497], "code_commune_insee": "50397"}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c3f6c063f3828d33c78d8e4fa9461e4dbeb6f7d", "fields": {"nom_de_la_commune": "LE PERRON", "libell_d_acheminement": "LE PERRON", "code_postal": "50160", "coordonnees_gps": [49.0498306608, -0.92753197973], "code_commune_insee": "50398"}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96bd7ce796952efad03e8f8034a46c3075a22304", "fields": {"code_postal": "50480", "code_commune_insee": "50400", "libell_d_acheminement": "PICAUVILLE", "ligne_5": "AMFREVILLE", "nom_de_la_commune": "PICAUVILLE", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc011eeac05f85d03c565a09abc831e2814d7fa", "fields": {"nom_de_la_commune": "PIROU", "libell_d_acheminement": "PIROU", "code_postal": "50770", "coordonnees_gps": [49.1645993546, -1.55877779757], "code_commune_insee": "50403"}, "geometry": {"type": "Point", "coordinates": [-1.55877779757, 49.1645993546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf5f62beb51fe2c9e03c1d2656af3d9b285d71f", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "BOUCEY", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdbfa2003bf87c9bfcfe197b9522358527faf95d", "fields": {"nom_de_la_commune": "QUINEVILLE", "libell_d_acheminement": "QUINEVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50421"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3b9f5ce9c716e42946736ba37f2b612eecc705", "fields": {"nom_de_la_commune": "RAUVILLE LA BIGOT", "libell_d_acheminement": "RAUVILLE LA BIGOT", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50425"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1676f8b76e73c75a82c48729d2fcbe986fcb7c6c", "fields": {"nom_de_la_commune": "REGNEVILLE SUR MER", "libell_d_acheminement": "REGNEVILLE SUR MER", "code_postal": "50590", "coordonnees_gps": [48.998351467, -1.53536168887], "code_commune_insee": "50429"}, "geometry": {"type": "Point", "coordinates": [-1.53536168887, 48.998351467]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb84edd9b1465eba005724fc26c03731af9d1b35", "fields": {"nom_de_la_commune": "ROCHEVILLE", "libell_d_acheminement": "ROCHEVILLE", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50435"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a66eff6590d167ab7b30eab4d2a0e6e898d3f62a", "fields": {"nom_de_la_commune": "ST AMAND", "libell_d_acheminement": "ST AMAND", "code_postal": "50160", "coordonnees_gps": [49.0498306608, -0.92753197973], "code_commune_insee": "50444"}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "675ed4dacbbb4dab5daa9e06c61f3743d0c53c1b", "fields": {"nom_de_la_commune": "ST ANDRE DE BOHON", "libell_d_acheminement": "ST ANDRE DE BOHON", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50445"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f77b8df9181bcc34225c090fd6ea14e95a1c87b", "fields": {"nom_de_la_commune": "ST ANDRE DE L EPINE", "libell_d_acheminement": "ST ANDRE DE L EPINE", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50446"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a71c966dbe97f0dea8c3f9bf49a6e5be5c2d561", "fields": {"code_postal": "50140", "code_commune_insee": "50456", "libell_d_acheminement": "ST CLEMENT RANCOUDRAY", "ligne_5": "RANCOUDRAY", "nom_de_la_commune": "ST CLEMENT RANCOUDRAY", "coordonnees_gps": [48.6562885959, -0.934860297079]}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef6449ea7ebe421c0a49de717e6fad039d41a14", "fields": {"nom_de_la_commune": "STE CROIX HAGUE", "libell_d_acheminement": "STE CROIX HAGUE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50460"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e01c815fb4bc6eee826fa9518c45010d1e2c412d", "fields": {"nom_de_la_commune": "ST GEORGES DE LA RIVIERE", "libell_d_acheminement": "ST GEORGES DE LA RIVIERE", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50471"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03a69749c722470e978783ddbfd87c65b753db8b", "fields": {"nom_de_la_commune": "ST GEORGES DE LIVOYE", "libell_d_acheminement": "ST GEORGES DE LIVOYE", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50472"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4670056301132a47b177b53632682bb25bc23b2e", "fields": {"nom_de_la_commune": "ST GEORGES MONTCOCQ", "libell_d_acheminement": "ST GEORGES MONTCOCQ", "code_postal": "50000", "coordonnees_gps": [49.1199688631, -1.08893981029], "code_commune_insee": "50475"}, "geometry": {"type": "Point", "coordinates": [-1.08893981029, 49.1199688631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b347db1058a47010a005bd42ddd98e038d7fb724", "fields": {"nom_de_la_commune": "ST HILAIRE DU HARCOUET", "libell_d_acheminement": "ST HILAIRE DU HARCOUET", "code_postal": "50600", "coordonnees_gps": [48.5703711319, -1.06754299241], "code_commune_insee": "50484"}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3233c2a2a1df702304d0e0b1962a81e551e8a6f9", "fields": {"nom_de_la_commune": "ST HILAIRE PETITVILLE", "libell_d_acheminement": "ST HILAIRE PETITVILLE", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50485"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ba727246ecca36ece798311aad5eca7e1c77dc", "fields": {"nom_de_la_commune": "ST JACQUES DE NEHOU", "libell_d_acheminement": "ST JACQUES DE NEHOU", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50486"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe037334da91c7bccb6ce8aad6c3a4ce891d208d", "fields": {"nom_de_la_commune": "ST JEAN DE SAVIGNY", "libell_d_acheminement": "ST JEAN DE SAVIGNY", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50491"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a02864968f19cee5488e739f029482020dc779", "fields": {"code_postal": "50810", "code_commune_insee": "50492", "libell_d_acheminement": "ST JEAN D ELLE", "ligne_5": "PRECORBIN", "nom_de_la_commune": "ST JEAN D ELLE", "coordonnees_gps": [49.1141244901, -0.965580935712]}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57531fba75993da69f215d90b4200bef726c1e58", "fields": {"nom_de_la_commune": "ST JOSEPH", "libell_d_acheminement": "ST JOSEPH", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50498"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5cf59854092ca131857d3d226324d5b21dd705b", "fields": {"nom_de_la_commune": "ST LO", "libell_d_acheminement": "ST LO", "code_postal": "50000", "coordonnees_gps": [49.1199688631, -1.08893981029], "code_commune_insee": "50502"}, "geometry": {"type": "Point", "coordinates": [-1.08893981029, 49.1199688631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71b2b2c2832ee76671ada0b8ad47477c07366aa", "fields": {"nom_de_la_commune": "ST LOUET SUR VIRE", "libell_d_acheminement": "ST LOUET SUR VIRE", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50504"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469f13399f8fc3ba32fc8881e5dfdae482ee20d0", "fields": {"nom_de_la_commune": "ST MARTIN D AUBIGNY", "libell_d_acheminement": "ST MARTIN D AUBIGNY", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50510"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41a2d6068acb671d45abcde2a8da52de6917ce0d", "fields": {"nom_de_la_commune": "ST MARTIN DE CENILLY", "libell_d_acheminement": "ST MARTIN DE CENILLY", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50513"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d484ff1305000aab3280d215acaaa2f46780338", "fields": {"nom_de_la_commune": "ST MARTIN DE VARREVILLE", "libell_d_acheminement": "ST MARTIN DE VARREVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50517"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b4a27100faa5677f0178a91d7b1b00112306225", "fields": {"code_postal": "50480", "code_commune_insee": "50523", "libell_d_acheminement": "STE MERE EGLISE", "ligne_5": "ECOQUENEAUVILLE", "nom_de_la_commune": "STE MERE EGLISE", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c09e402014c05a2960e983d8e5b663a5f89334e", "fields": {"code_postal": "50220", "code_commune_insee": "50531", "libell_d_acheminement": "ST OVIN", "ligne_5": "LA BOULOUZE", "nom_de_la_commune": "ST OVIN", "coordonnees_gps": [48.63048639, -1.31317304025]}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d32ca644bdf6a6c879bac1e4f9e83b600631254", "fields": {"nom_de_la_commune": "ST OVIN", "libell_d_acheminement": "ST OVIN", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50531"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5547df996ec874b3c1de74718c2d7faa6c41c21f", "fields": {"nom_de_la_commune": "ST PATRICE DE CLAIDS", "libell_d_acheminement": "ST PATRICE DE CLAIDS", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50533"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0b428a35ac38dec76554d32793fc79803f7978", "fields": {"code_postal": "50870", "code_commune_insee": "50535", "libell_d_acheminement": "LE PARC", "ligne_5": "BRAFFAIS", "nom_de_la_commune": "LE PARC", "coordonnees_gps": [48.7458565845, -1.30663914164]}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d1b035258f0ffb800dc4363a9773442d51d58e5", "fields": {"code_postal": "50870", "code_commune_insee": "50535", "libell_d_acheminement": "LE PARC", "ligne_5": "PLOMB", "nom_de_la_commune": "LE PARC", "coordonnees_gps": [48.7458565845, -1.30663914164]}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "765dd7ad4d89f0c7910b6c937a415d0719147c79", "fields": {"nom_de_la_commune": "ST POIS", "libell_d_acheminement": "ST POIS", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50542"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64507607bfd45dfe89f15d07761727ddecec9fa1", "fields": {"nom_de_la_commune": "ST SAUVEUR LE VICOMTE", "libell_d_acheminement": "ST SAUVEUR LE VICOMTE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50551"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4cffc04a6b97b74d8beea8fa518abaaab0f4eeb", "fields": {"nom_de_la_commune": "ST VIGOR DES MONTS", "libell_d_acheminement": "ST VIGOR DES MONTS", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50563"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc649c4085023a2c924771eaff1b5e3c338deddc", "fields": {"nom_de_la_commune": "SARTILLY BAIE BOCAGE", "libell_d_acheminement": "SARTILLY BAIE BOCAGE", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50565"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4257a22177e555d5bb23064e7a2fe93a2cacd6a", "fields": {"code_postal": "50530", "code_commune_insee": "50565", "libell_d_acheminement": "SARTILLY BAIE BOCAGE", "ligne_5": "CHAMPCEY", "nom_de_la_commune": "SARTILLY BAIE BOCAGE", "coordonnees_gps": [48.7283863786, -1.45989829146]}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eebdbcc20f2f363c5231e4a1e88c81fa1bc5836f", "fields": {"nom_de_la_commune": "SAUSSEMESNIL", "libell_d_acheminement": "SAUSSEMESNIL", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50567"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aaceb92fa62ebe413d67164c9462c6e1b7285d1", "fields": {"nom_de_la_commune": "SAVIGNY", "libell_d_acheminement": "SAVIGNY", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50569"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41880c17e59aceb6e570b08c8826c01660bbc3e8", "fields": {"nom_de_la_commune": "SAVIGNY LE VIEUX", "libell_d_acheminement": "SAVIGNY LE VIEUX", "code_postal": "50640", "coordonnees_gps": [48.5293564364, -0.941843015494], "code_commune_insee": "50570"}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319a41b2ef30daedec738715ee57b125b52c26bc", "fields": {"nom_de_la_commune": "SERVIGNY", "libell_d_acheminement": "SERVIGNY", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50573"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4496dea0e149c402a85a708fe14a5ff932cde51", "fields": {"nom_de_la_commune": "SORTOSVILLE EN BEAUMONT", "libell_d_acheminement": "SORTOSVILLE EN BEAUMONT", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50577"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0e178190e739c19e80da7459c921521dc4c2e9a", "fields": {"nom_de_la_commune": "SOTTEVAST", "libell_d_acheminement": "SOTTEVAST", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50579"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9218cdbda1be71479570e673d9487a59f8655bd8", "fields": {"nom_de_la_commune": "SOURDEVAL", "libell_d_acheminement": "SOURDEVAL", "code_postal": "50150", "coordonnees_gps": [48.7316763227, -0.921013476497], "code_commune_insee": "50582"}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0ee4a8bb7aafd8416d6462df33de9e40dc6c55c", "fields": {"nom_de_la_commune": "TAILLEPIED", "libell_d_acheminement": "TAILLEPIED", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50587"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479a4fe688d2257ffee0b521a8de3edd3cfe3749", "fields": {"nom_de_la_commune": "TAMERVILLE", "libell_d_acheminement": "TAMERVILLE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50588"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e14db58779d7fe2365fda305c836bfda933bba0", "fields": {"code_postal": "50320", "code_commune_insee": "50590", "libell_d_acheminement": "LE TANU", "ligne_5": "NOIRPALU", "nom_de_la_commune": "LE TANU", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3ae190ae68797abcfd9c5525715b8e2b873907", "fields": {"nom_de_la_commune": "TEURTHEVILLE BOCAGE", "libell_d_acheminement": "TEURTHEVILLE BOCAGE", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50593"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa7808fc4051f74c36b26d7fecb23611ae9361fc", "fields": {"nom_de_la_commune": "THEVILLE", "libell_d_acheminement": "THEVILLE", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50596"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f772db143aedd6e687805a9caf4917742302087", "fields": {"nom_de_la_commune": "TOURVILLE SUR SIENNE", "libell_d_acheminement": "TOURVILLE SUR SIENNE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50603"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74c56956b886efbda85088f408c5c4fdbffa3b6f", "fields": {"nom_de_la_commune": "LE VAL ST PERE", "libell_d_acheminement": "LE VAL ST PERE", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50616"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c62dbda2aaaf10c24b6542309cca31f61f881eb", "fields": {"nom_de_la_commune": "VASTEVILLE", "libell_d_acheminement": "VASTEVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50620"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d7a317f56214692f0d8c5e608082302d5b31024", "fields": {"nom_de_la_commune": "LE VICEL", "libell_d_acheminement": "LE VICEL", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50633"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b742254b89ddad1fb283bbb061e2c0c70d7175f", "fields": {"nom_de_la_commune": "VIDECOSVILLE", "libell_d_acheminement": "VIDECOSVILLE", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50634"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c43e581e181a80c9d0e9a0e527411cd1351100", "fields": {"nom_de_la_commune": "VILLEBAUDON", "libell_d_acheminement": "VILLEBAUDON", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50637"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e375b443b8d1337c455c52db2e74955e5068d17", "fields": {"nom_de_la_commune": "LES CHAMPEAUX", "libell_d_acheminement": "LES CHAMPEAUX", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61086"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af890c5a6c2e0a0d1734fc0c41a94289578afb0d", "fields": {"nom_de_la_commune": "CHAMPSECRET", "libell_d_acheminement": "CHAMPSECRET", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61091"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6394b248fe12767261725aad21abfc07870708", "fields": {"nom_de_la_commune": "CHANU", "libell_d_acheminement": "CHANU", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61093"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec10fe8e8b413783d346b87f3a90cfc54e44fac", "fields": {"nom_de_la_commune": "LA CHAPELLE AU MOINE", "libell_d_acheminement": "LA CHAPELLE AU MOINE", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61094"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede77cb2d70806887aeb45b4d471d554f545390b", "fields": {"code_postal": "61140", "code_commune_insee": "61096", "libell_d_acheminement": "RIVES D ANDAINE", "ligne_5": "GENESLAY", "nom_de_la_commune": "RIVES D ANDAINE", "coordonnees_gps": [48.5525924741, -0.471509032545]}, "geometry": {"type": "Point", "coordinates": [-0.471509032545, 48.5525924741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f72fef00ba567b2f667df20b9487a0cad45baaa", "fields": {"nom_de_la_commune": "CHEMILLI", "libell_d_acheminement": "CHEMILLI", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61105"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c25bdd114e823178727d0a865fb30c88fbd89b7", "fields": {"nom_de_la_commune": "LA COCHERE", "libell_d_acheminement": "LA COCHERE", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61110"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "775d0db790d2e3fa94f19b1fb913f731315aa183", "fields": {"code_postal": "61110", "code_commune_insee": "61116", "libell_d_acheminement": "SABLONS SUR HUISNE", "ligne_5": "COULONGES LES SABLONS", "nom_de_la_commune": "SABLONS SUR HUISNE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90aeab02662bdd5202b068ec8fc001156c89637f", "fields": {"nom_de_la_commune": "COULONGES SUR SARTHE", "libell_d_acheminement": "COULONGES SUR SARTHE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61126"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07ea2310a8df7052f8e41575d6717d31c8a5eec8", "fields": {"nom_de_la_commune": "COURTOMER", "libell_d_acheminement": "COURTOMER", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61133"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5db07bde2ff5796b687daecf4605fa17cfd8189c", "fields": {"nom_de_la_commune": "CROUTTES", "libell_d_acheminement": "CROUTTES", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61139"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2623fbe088f32331f54720d7019586acae10d917", "fields": {"nom_de_la_commune": "DAME MARIE", "libell_d_acheminement": "DAME MARIE", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61142"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c6969502fa75095ce4a75453be159dd9190fad", "fields": {"code_postal": "61150", "code_commune_insee": "61153", "libell_d_acheminement": "ECOUCHE LES VALLEES", "ligne_5": "BATILLY", "nom_de_la_commune": "ECOUCHE LES VALLEES", "coordonnees_gps": [48.689271735, -0.160878678155]}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6038f21120159f3a4f138a80478dd9657aa6d907", "fields": {"code_postal": "61150", "code_commune_insee": "61153", "libell_d_acheminement": "ECOUCHE LES VALLEES", "ligne_5": "ST OUEN SUR MAIRE", "nom_de_la_commune": "ECOUCHE LES VALLEES", "coordonnees_gps": [48.689271735, -0.160878678155]}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec561053e461293eeee948980091a2498ea268b", "fields": {"nom_de_la_commune": "FAVEROLLES", "libell_d_acheminement": "FAVEROLLES", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61158"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe99269b33ad997b21b3edb71a985307125474e", "fields": {"nom_de_la_commune": "FEL", "libell_d_acheminement": "FEL", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61161"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f3c747d03ab853449b4db6431e1acdd258e22a", "fields": {"nom_de_la_commune": "LA FERRIERE BECHET", "libell_d_acheminement": "LA FERRIERE BECHET", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61164"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "256344750cf284fcb794e6b83321661f581a4b93", "fields": {"nom_de_la_commune": "LA FERRIERE BOCHARD", "libell_d_acheminement": "LA FERRIERE BOCHARD", "code_postal": "61420", "coordonnees_gps": [48.4829812527, -0.0377038824512], "code_commune_insee": "61165"}, "geometry": {"type": "Point", "coordinates": [-0.0377038824512, 48.4829812527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6496fb11390e42ff83e29d5a951ef67de8642b07", "fields": {"nom_de_la_commune": "FERRIERES LA VERRERIE", "libell_d_acheminement": "FERRIERES LA VERRERIE", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61166"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fbe23cb585ef65b7594320ae1bfc39c279c7e0", "fields": {"code_postal": "61470", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "HEUGON", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.9094876471, 0.356722862934]}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da025d45e6c63575f7e63bbbace9d9575cfecc16", "fields": {"code_postal": "61470", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "MONNAI", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.9094876471, 0.356722862934]}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d0c8edf97c43c2f8d18d3fb561dc47d289a1aa6", "fields": {"nom_de_la_commune": "LA FERTE EN OUCHE", "libell_d_acheminement": "LA FERTE EN OUCHE", "code_postal": "61550", "coordonnees_gps": [48.7987924766, 0.488599977728], "code_commune_insee": "61167"}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f843e4b9bdbe2af690e9f3fda03f22dd48552abc", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "ANCEINS", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "523def01d46718bc9a823efb8e9fae56bd5b6444", "fields": {"nom_de_la_commune": "FLERS", "libell_d_acheminement": "FLERS", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61169"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d20409a4308257baca7050231f16b76fdca7662", "fields": {"nom_de_la_commune": "FONTENAI SUR ORNE", "libell_d_acheminement": "FONTENAI SUR ORNE", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61173"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18797b3c07f466758c0f6f2813ed3b8d362449e2", "fields": {"nom_de_la_commune": "FRESNAY LE SAMSON", "libell_d_acheminement": "FRESNAY LE SAMSON", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61180"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8005281b760643bc66fcd62d44f8d0c55b29fe51", "fields": {"nom_de_la_commune": "GANDELAIN", "libell_d_acheminement": "GANDELAIN", "code_postal": "61420", "coordonnees_gps": [48.4829812527, -0.0377038824512], "code_commune_insee": "61182"}, "geometry": {"type": "Point", "coordinates": [-0.0377038824512, 48.4829812527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe637296d485d4d8bab21bb4d0c7b97c79306cb2", "fields": {"nom_de_la_commune": "LES GENETTES", "libell_d_acheminement": "LES GENETTES", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61187"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fcab788be3bfdb883ac29e6961b73342a936dbd", "fields": {"nom_de_la_commune": "HELOUP", "libell_d_acheminement": "HELOUP", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61203"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de88cc5bd4202efc1534a07056f4dfc35e118195", "fields": {"nom_de_la_commune": "ST BRICE", "libell_d_acheminement": "ST BRICE", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61370"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdf33939a0ed23c463d49555835b98db06ef4f3c", "fields": {"nom_de_la_commune": "ST BRICE SOUS RANES", "libell_d_acheminement": "ST BRICE SOUS RANES", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61371"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "160b1838bda325062583976f442c42f096f1182f", "fields": {"nom_de_la_commune": "ST CYR LA ROSIERE", "libell_d_acheminement": "ST CYR LA ROSIERE", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61379"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca9958ae9bb682f8c7b8534c7091fb5173fce3bf", "fields": {"nom_de_la_commune": "ST DIDIER SOUS ECOUVES", "libell_d_acheminement": "ST DIDIER SOUS ECOUVES", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61383"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2807e1e722a5db6ae986baefc7890479525eec", "fields": {"nom_de_la_commune": "ST GERMAIN DU CORBEIS", "libell_d_acheminement": "ST GERMAIN DU CORBEIS", "code_postal": "61000", "coordonnees_gps": [48.4294187763, 0.088345615329], "code_commune_insee": "61397"}, "geometry": {"type": "Point", "coordinates": [0.088345615329, 48.4294187763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6154eb74da0cc732d4f3edf3daabdcf1a76fb431", "fields": {"nom_de_la_commune": "ST GERVAIS DES SABLONS", "libell_d_acheminement": "ST GERVAIS DES SABLONS", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61399"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f025f5959cd70434a68106a4efe9510a9aa5f68", "fields": {"nom_de_la_commune": "ST JOUIN DE BLAVOU", "libell_d_acheminement": "ST JOUIN DE BLAVOU", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61411"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cccffe6c2d63c87a18c9ef668143a81162fb2ff5", "fields": {"nom_de_la_commune": "ST MARD DE RENO", "libell_d_acheminement": "ST MARD DE RENO", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61418"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "147493f1578f9ecfe1cea59b34c3ce8982aca33b", "fields": {"nom_de_la_commune": "STE MARGUERITE DE CARROUGES", "libell_d_acheminement": "STE MARGUERITE DE CARROUGES", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61419"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f714634363c7ae7f609b2c79b0efa2bc2acd9b43", "fields": {"nom_de_la_commune": "LES ASPRES", "libell_d_acheminement": "LES ASPRES", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61422"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4181a577a1339cba202025b65efd881890bfe2b2", "fields": {"nom_de_la_commune": "ST MARTIN DES LANDES", "libell_d_acheminement": "ST MARTIN DES LANDES", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61424"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "964ae560ec37bd3f3de1215edb2ac66c64a574d7", "fields": {"nom_de_la_commune": "ST MARTIN DES PEZERITS", "libell_d_acheminement": "ST MARTIN DES PEZERITS", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61425"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87612894f0abab7b7b1888789591e0825fac2a39", "fields": {"nom_de_la_commune": "ST MARTIN L AIGUILLON", "libell_d_acheminement": "ST MARTIN L AIGUILLON", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61427"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d765abc4a856ee128e31623c9abb78c4618f0e", "fields": {"nom_de_la_commune": "ST PATRICE DU DESERT", "libell_d_acheminement": "ST PATRICE DU DESERT", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61442"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f87adb33d511582531a353bdf29bd35bcbbaaf51", "fields": {"code_postal": "61470", "code_commune_insee": "61460", "libell_d_acheminement": "SAP EN AUGE", "ligne_5": "LE SAP", "nom_de_la_commune": "SAP EN AUGE", "coordonnees_gps": [48.9094876471, 0.356722862934]}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f9fc7401fd9fc19e35e8c8bed19cbb07feff1f", "fields": {"nom_de_la_commune": "LE SAP ANDRE", "libell_d_acheminement": "LE SAP ANDRE", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61461"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "156acaffae6e8a0fcaee5e79db105d121306421f", "fields": {"nom_de_la_commune": "SEES", "libell_d_acheminement": "SEES", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61464"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cbdf39a634eb4c591c492c6dfccb2b465badf55", "fields": {"nom_de_la_commune": "LA SELLE LA FORGE", "libell_d_acheminement": "LA SELLE LA FORGE", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61466"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81d8188b2e66dd1cd988a49063d4d5de3569e57d", "fields": {"nom_de_la_commune": "SENTILLY", "libell_d_acheminement": "SENTILLY", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61468"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb765f9621ee613b45eebded61caf8c4711a06f8", "fields": {"nom_de_la_commune": "SURE", "libell_d_acheminement": "SURE", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61476"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e8fc4f593a0c7e478fa4c669add73a15fbcf2e9", "fields": {"code_postal": "61260", "code_commune_insee": "61484", "libell_d_acheminement": "VAL AU PERCHE", "ligne_5": "MALE", "nom_de_la_commune": "VAL AU PERCHE", "coordonnees_gps": [48.2308054852, 0.743916298767]}, "geometry": {"type": "Point", "coordinates": [0.743916298767, 48.2308054852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef8d6e939b31c70f09ce8dbc6bb23e628c9e56a5", "fields": {"code_postal": "61800", "code_commune_insee": "61486", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "ligne_5": "BEAUCHENE", "nom_de_la_commune": "TINCHEBRAY BOCAGE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37e215f8506c48091aeed537c3897b481840a426", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "PREPOTIN", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "501c8a2384d27aa3aebd93238b006c0135ff043e", "fields": {"nom_de_la_commune": "TRUN", "libell_d_acheminement": "TRUN", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61494"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9997b91b4d2e103e24939e6da5a5a8e2012a34c", "fields": {"nom_de_la_commune": "LA VENTROUZE", "libell_d_acheminement": "LA VENTROUZE", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61500"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daeb128ef6554d2df71ee1c45dedfa34c4ec0ff1", "fields": {"nom_de_la_commune": "VIDAI", "libell_d_acheminement": "VIDAI", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61502"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dba593fbd3152245846921eabda2fd0cb8bfbe4", "fields": {"nom_de_la_commune": "VILLIERS SOUS MORTAGNE", "libell_d_acheminement": "VILLIERS SOUS MORTAGNE", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61507"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f54099c276011e021f805cebe704c7f83e18c94", "fields": {"nom_de_la_commune": "VIMOUTIERS", "libell_d_acheminement": "VIMOUTIERS", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61508"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643e4416011470d038c43a0d9af33a6f4f1f767b", "fields": {"nom_de_la_commune": "VITRAI SOUS LAIGLE", "libell_d_acheminement": "VITRAI SOUS LAIGLE", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61510"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f80540013fc42a89e153ce2a113cbd8b982ca667", "fields": {"nom_de_la_commune": "ACQ", "libell_d_acheminement": "ACQ", "code_postal": "62144", "coordonnees_gps": [50.3578850683, 2.67826739933], "code_commune_insee": "62007"}, "geometry": {"type": "Point", "coordinates": [2.67826739933, 50.3578850683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348533fd8453d16d928da51459af6c9e2309aee1", "fields": {"nom_de_la_commune": "AGNEZ LES DUISANS", "libell_d_acheminement": "AGNEZ LES DUISANS", "code_postal": "62161", "coordonnees_gps": [50.3152704012, 2.69028460141], "code_commune_insee": "62011"}, "geometry": {"type": "Point", "coordinates": [2.69028460141, 50.3152704012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a23d00dfdef13bce58dd1005a0d6d06b37d593eb", "fields": {"nom_de_la_commune": "AIRON ST VAAST", "libell_d_acheminement": "AIRON ST VAAST", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62016"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936b2822365bfbe953865ef2af28f3e73283684f", "fields": {"nom_de_la_commune": "AIX EN ISSART", "libell_d_acheminement": "AIX EN ISSART", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62018"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c498f6568bdf96e980623ddcaeb9f3c8cb7fb033", "fields": {"nom_de_la_commune": "ALLOUAGNE", "libell_d_acheminement": "ALLOUAGNE", "code_postal": "62157", "coordonnees_gps": [50.5321289482, 2.50476847832], "code_commune_insee": "62023"}, "geometry": {"type": "Point", "coordinates": [2.50476847832, 50.5321289482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6591ccdce979c6a4b5ced5141ffe145417ca911c", "fields": {"nom_de_la_commune": "AMBLETEUSE", "libell_d_acheminement": "AMBLETEUSE", "code_postal": "62164", "coordonnees_gps": [50.8206720031, 1.61493156182], "code_commune_insee": "62025"}, "geometry": {"type": "Point", "coordinates": [1.61493156182, 50.8206720031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65428121ab7df47ea5bf9f1f3b0d4615913d105b", "fields": {"nom_de_la_commune": "ANGRES", "libell_d_acheminement": "ANGRES", "code_postal": "62143", "coordonnees_gps": [50.410493959, 2.75180387692], "code_commune_insee": "62032"}, "geometry": {"type": "Point", "coordinates": [2.75180387692, 50.410493959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e18131cc02faf1f0f3a43c819bf7f1e2c9f81b75", "fields": {"nom_de_la_commune": "ANNEQUIN", "libell_d_acheminement": "ANNEQUIN", "code_postal": "62149", "coordonnees_gps": [50.526774017, 2.73934770262], "code_commune_insee": "62034"}, "geometry": {"type": "Point", "coordinates": [2.73934770262, 50.526774017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b4af142f2c421c7a98f0e65f20a65cf0bd67a5", "fields": {"nom_de_la_commune": "ANNEZIN", "libell_d_acheminement": "ANNEZIN", "code_postal": "62232", "coordonnees_gps": [50.5485643749, 2.61912647325], "code_commune_insee": "62035"}, "geometry": {"type": "Point", "coordinates": [2.61912647325, 50.5485643749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7791a45683f5b8f4d66a22e74b384d23e5638015", "fields": {"nom_de_la_commune": "ARLEUX EN GOHELLE", "libell_d_acheminement": "ARLEUX EN GOHELLE", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62039"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b6d6b8efd110a1e24c25a86190bd406e4588643", "fields": {"nom_de_la_commune": "ST LOUP DE VARENNES", "libell_d_acheminement": "ST LOUP DE VARENNES", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71444"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91137b0121577f6ade71d1364c1baad4bf13a65e", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "71380", "coordonnees_gps": [46.7753179262, 4.92186560965], "code_commune_insee": "71445"}, "geometry": {"type": "Point", "coordinates": [4.92186560965, 46.7753179262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac032b0bc019f2525e72509b9abcba1bb2bfaf16", "fields": {"nom_de_la_commune": "ST MARTIN BELLE ROCHE", "libell_d_acheminement": "ST MARTIN BELLE ROCHE", "code_postal": "71118", "coordonnees_gps": [46.3801138456, 4.85427569985], "code_commune_insee": "71448"}, "geometry": {"type": "Point", "coordinates": [4.85427569985, 46.3801138456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b217a0529468f5603714ee2dcf3ce15f6bcd49eb", "fields": {"nom_de_la_commune": "ST MARTIN EN BRESSE", "libell_d_acheminement": "ST MARTIN EN BRESSE", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71456"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "246c7450e3cf0099d6a349644c53d068843d4271", "fields": {"nom_de_la_commune": "ST MARTIN SOUS MONTAIGU", "libell_d_acheminement": "ST MARTIN SOUS MONTAIGU", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71459"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68e96903f11138d6f09c76f09fb15c7f5e8b216f", "fields": {"nom_de_la_commune": "ST MAURICE DE SATONNAY", "libell_d_acheminement": "ST MAURICE DE SATONNAY", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71460"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26a000757ce0a384fbb4b0b42f47b2fc28f89823", "fields": {"nom_de_la_commune": "ST SERNIN DU BOIS", "libell_d_acheminement": "ST SERNIN DU BOIS", "code_postal": "71200", "coordonnees_gps": [46.8208702724, 4.42565613274], "code_commune_insee": "71479"}, "geometry": {"type": "Point", "coordinates": [4.42565613274, 46.8208702724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69ff5208e80ebfc85e38d460890f10414be37ac0", "fields": {"nom_de_la_commune": "ST SYMPHORIEN D ANCELLES", "libell_d_acheminement": "ST SYMPHORIEN D ANCELLES", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71481"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f3893bff5cc19f3b4e5ec9c9ae7fb1caac2e043", "fields": {"nom_de_la_commune": "ST VALLERIN", "libell_d_acheminement": "ST VALLERIN", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71485"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff4475c799a93eba90f49c2b0186f3da6fde5d07", "fields": {"nom_de_la_commune": "ST VINCENT BRAGNY", "libell_d_acheminement": "ST VINCENT BRAGNY", "code_postal": "71430", "coordonnees_gps": [46.5278181999, 4.19290320019], "code_commune_insee": "71490"}, "geometry": {"type": "Point", "coordinates": [4.19290320019, 46.5278181999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b547e29aff0608b1b6e867caa5f91e077549cc7c", "fields": {"code_postal": "71430", "code_commune_insee": "71490", "libell_d_acheminement": "ST VINCENT BRAGNY", "ligne_5": "BRAGNY EN CHAROLLAIS", "nom_de_la_commune": "ST VINCENT BRAGNY", "coordonnees_gps": [46.5278181999, 4.19290320019]}, "geometry": {"type": "Point", "coordinates": [4.19290320019, 46.5278181999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22234bc92d31f6438b224d9a80ec0b566db9ca8f", "fields": {"nom_de_la_commune": "ST YAN", "libell_d_acheminement": "ST YAN", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71491"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3c1d1e0b0e3d407a0519303ee2dc83824db120a", "fields": {"nom_de_la_commune": "SAISY", "libell_d_acheminement": "SAISY", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71493"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e352ed27b0590405d47c4fdb48e1ced9b04bef3d", "fields": {"nom_de_la_commune": "SERRIGNY EN BRESSE", "libell_d_acheminement": "SERRIGNY EN BRESSE", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71519"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65d15ba6e9346d7655a54cdb2d4db51b83091018", "fields": {"nom_de_la_commune": "SEVREY", "libell_d_acheminement": "SEVREY", "code_postal": "71100", "coordonnees_gps": [46.753921991, 4.82932300465], "code_commune_insee": "71520"}, "geometry": {"type": "Point", "coordinates": [4.82932300465, 46.753921991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e44012278ea8079e05b5ae09a32305cbac29dd89", "fields": {"nom_de_la_commune": "SULLY", "libell_d_acheminement": "SULLY", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71530"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1361f4d23c2a383b073e18ff3f004df68929c3", "fields": {"nom_de_la_commune": "TAIZE", "libell_d_acheminement": "TAIZE", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71532"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc2cde5ad3fa495140dee38a476405336ed73dc", "fields": {"code_postal": "71250", "code_commune_insee": "71532", "libell_d_acheminement": "TAIZE", "ligne_5": "TAIZE COMMUNAUTE", "nom_de_la_commune": "TAIZE", "coordonnees_gps": [46.4606602983, 4.62757728392]}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e03a01348dad52afbfff3b0f3ff705a65ee773b", "fields": {"nom_de_la_commune": "TAVERNAY", "libell_d_acheminement": "TAVERNAY", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71535"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93843bf69a843c74472f6157ea51d13ba87fde02", "fields": {"nom_de_la_commune": "TORCY", "libell_d_acheminement": "TORCY", "code_postal": "71210", "coordonnees_gps": [46.7455963584, 4.48062710036], "code_commune_insee": "71540"}, "geometry": {"type": "Point", "coordinates": [4.48062710036, 46.7455963584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb386e4663e341417c7809a9968b73600ae5137c", "fields": {"nom_de_la_commune": "TORPES", "libell_d_acheminement": "TORPES", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71541"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6866bfb6b21f2a82c603c3aa935ae51a7a0b410f", "fields": {"nom_de_la_commune": "TOULON SUR ARROUX", "libell_d_acheminement": "TOULON SUR ARROUX", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71542"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6313c4689ba9c107b3ca6d515599aad66725bb52", "fields": {"nom_de_la_commune": "TOURNUS", "libell_d_acheminement": "TOURNUS", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71543"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b0ae7d20660f31d4a569e96d679b4cb2913ad5a", "fields": {"nom_de_la_commune": "TRAMAYES", "libell_d_acheminement": "TRAMAYES", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71545"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b09327fae2380cbd4c8619ade37b2e2bbb7fef1", "fields": {"nom_de_la_commune": "TRAMBLY", "libell_d_acheminement": "TRAMBLY", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71546"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c52a4d7b0ceb0750a1d917748ad22931126f0258", "fields": {"nom_de_la_commune": "LA TRUCHERE", "libell_d_acheminement": "LA TRUCHERE", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71549"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a66a7f53526f922e072815ddea7f94928e3351", "fields": {"nom_de_la_commune": "VARENNE L ARCONCE", "libell_d_acheminement": "VARENNE L ARCONCE", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71554"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db8fc076775e90935329cb0884f8cd712b8a8c6", "fields": {"nom_de_la_commune": "VARENNES LE GRAND", "libell_d_acheminement": "VARENNES LE GRAND", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71555"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dca7db758f70a0ee3785ad02040862a4c83ca69", "fields": {"nom_de_la_commune": "VERGISSON", "libell_d_acheminement": "VERGISSON", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71567"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f3b3e15a81b2a9f4b6acdf875f7c1fe9392814", "fields": {"nom_de_la_commune": "VERISSEY", "libell_d_acheminement": "VERISSEY", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71568"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65479bc628a8d46a786da4c2771d2bf033107b1b", "fields": {"nom_de_la_commune": "VERJUX", "libell_d_acheminement": "VERJUX", "code_postal": "71590", "coordonnees_gps": [46.8788694225, 4.93402646483], "code_commune_insee": "71570"}, "geometry": {"type": "Point", "coordinates": [4.93402646483, 46.8788694225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dc0a81c7fccc61a1ee63aa5468a8b30eeaa7e7b", "fields": {"nom_de_la_commune": "VERZE", "libell_d_acheminement": "VERZE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71574"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d670cdc7fcfb2c9898aaea9296042a4df9c8f8", "fields": {"code_postal": "71270", "code_commune_insee": "71578", "libell_d_acheminement": "CLUX VILLENEUVE", "ligne_5": "CLUX", "nom_de_la_commune": "CLUX VILLENEUVE", "coordonnees_gps": [46.8994601906, 5.25743617076]}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94de7b4cdbc594962afdc20a070240facee93bae", "fields": {"nom_de_la_commune": "VITRY LES CLUNY", "libell_d_acheminement": "VITRY LES CLUNY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71587"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3551931c6dc5ae1622b825f89b496107abe4bc2a", "fields": {"nom_de_la_commune": "ARDENAY SUR MERIZE", "libell_d_acheminement": "ARDENAY SUR MERIZE", "code_postal": "72370", "coordonnees_gps": [48.0020289464, 0.465705755443], "code_commune_insee": "72007"}, "geometry": {"type": "Point", "coordinates": [0.465705755443, 48.0020289464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1781610663c5f2cf245b38605073ce6e1f454837", "fields": {"nom_de_la_commune": "ARTHEZE", "libell_d_acheminement": "ARTHEZE", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72009"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1c24ea3833f7e7ca117cc376d561eeb8f22e4a3", "fields": {"nom_de_la_commune": "BEAUMONT SUR SARTHE", "libell_d_acheminement": "BEAUMONT SUR SARTHE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72029"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbaa29849a3d8a6fb4827e413a0f1adf84113177", "fields": {"nom_de_la_commune": "BRAINS SUR GEE", "libell_d_acheminement": "BRAINS SUR GEE", "code_postal": "72550", "coordonnees_gps": [48.0233786527, 0.0301205478964], "code_commune_insee": "72045"}, "geometry": {"type": "Point", "coordinates": [0.0301205478964, 48.0233786527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1b4a8f941c1bd1197e84c5045777486e93ed866", "fields": {"nom_de_la_commune": "BRIOSNE LES SABLES", "libell_d_acheminement": "BRIOSNE LES SABLES", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72048"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e68552342338184d8b8a9f62b820cc21ab1960ec", "fields": {"nom_de_la_commune": "CHAHAIGNES", "libell_d_acheminement": "CHAHAIGNES", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72052"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee50da9b76f8ef7b1cdcee037698a86df8cc5eea", "fields": {"nom_de_la_commune": "CHAMPAGNE", "libell_d_acheminement": "CHAMPAGNE", "code_postal": "72470", "coordonnees_gps": [48.0204564826, 0.363077616761], "code_commune_insee": "72054"}, "geometry": {"type": "Point", "coordinates": [0.363077616761, 48.0204564826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f10778835a6c31efe6d66057f8240aad4d9efa9a", "fields": {"nom_de_la_commune": "CHANGE", "libell_d_acheminement": "CHANGE", "code_postal": "72560", "coordonnees_gps": [47.9788443928, 0.29728955076], "code_commune_insee": "72058"}, "geometry": {"type": "Point", "coordinates": [0.29728955076, 47.9788443928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f2ff3d94666426bf70b2a3854dd1dddde2a705", "fields": {"nom_de_la_commune": "LA CHAPELLE ST AUBIN", "libell_d_acheminement": "LA CHAPELLE ST AUBIN", "code_postal": "72650", "coordonnees_gps": [48.0691721456, 0.13653292656], "code_commune_insee": "72065"}, "geometry": {"type": "Point", "coordinates": [0.13653292656, 48.0691721456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74ec8694acfa07370b95bd83a3744a7c7d1f9cbf", "fields": {"nom_de_la_commune": "LA CHAPELLE ST FRAY", "libell_d_acheminement": "LA CHAPELLE ST FRAY", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72066"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c4e1ed2d2b043fbc48574f2fa1b41098921bb21", "fields": {"nom_de_la_commune": "LA CHAPELLE ST REMY", "libell_d_acheminement": "LA CHAPELLE ST REMY", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72067"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "909e8269fad58ee9b16b2f514bc8cdc6153e37ef", "fields": {"nom_de_la_commune": "CHASSILLE", "libell_d_acheminement": "CHASSILLE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72070"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d123117bc0a25ff480a48ac0bc328d6a82ed4e6", "fields": {"nom_de_la_commune": "CHAUFOUR NOTRE DAME", "libell_d_acheminement": "CHAUFOUR NOTRE DAME", "code_postal": "72550", "coordonnees_gps": [48.0233786527, 0.0301205478964], "code_commune_insee": "72073"}, "geometry": {"type": "Point", "coordinates": [0.0301205478964, 48.0233786527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5a06161a3378d21d01bd6f060b220cb158ae0d5", "fields": {"nom_de_la_commune": "CHERANCE", "libell_d_acheminement": "CHERANCE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72078"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97eb0d9543871563c33032e1b4d23ffcd3576a12", "fields": {"nom_de_la_commune": "CHERISAY", "libell_d_acheminement": "CHERISAY", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72079"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e873b2cd0d03ac40a2b2dda298b80598030e48d5", "fields": {"nom_de_la_commune": "CONTILLY", "libell_d_acheminement": "CONTILLY", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72091"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f7aace6e525c166d6025fba6c96907b11a99562", "fields": {"nom_de_la_commune": "COULAINES", "libell_d_acheminement": "COULAINES", "code_postal": "72190", "coordonnees_gps": [48.0582059283, 0.222153096332], "code_commune_insee": "72095"}, "geometry": {"type": "Point", "coordinates": [0.222153096332, 48.0582059283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e1245b4eac965a076e9c5aca88338e241d8ffc", "fields": {"nom_de_la_commune": "COULOMBIERS", "libell_d_acheminement": "COULOMBIERS", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72097"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "493ee41eaf69556bbb003cbbe490d5f4c057c76f", "fields": {"nom_de_la_commune": "COULONGE", "libell_d_acheminement": "COULONGE", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72098"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ca5100ca403dda70a0f692e573db401b08364d", "fields": {"nom_de_la_commune": "COURCEMONT", "libell_d_acheminement": "COURCEMONT", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72101"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "357c05f59ae32a19d927044d90c28d395cea0006", "fields": {"nom_de_la_commune": "COURCIVAL", "libell_d_acheminement": "COURCIVAL", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72102"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fe54b64fde93d80487ab2c7bd328e5af149a8fe", "fields": {"nom_de_la_commune": "COURDEMANCHE", "libell_d_acheminement": "COURDEMANCHE", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72103"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a985f5d4ad2380ace61d546b92530d59ffde884", "fields": {"nom_de_la_commune": "COURTILLERS", "libell_d_acheminement": "COURTILLERS", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72106"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ab0724c14b02f438553664103e984ef21fca7b", "fields": {"nom_de_la_commune": "CROSMIERES", "libell_d_acheminement": "CROSMIERES", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72110"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e992c5e3bf7b20253f321e8d4fbef45adedb8637", "fields": {"nom_de_la_commune": "DISSE SOUS LE LUDE", "libell_d_acheminement": "DISSE SOUS LE LUDE", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72117"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1afff6159a003f1d2e84e468e3f1a8dfe43bd29f", "fields": {"code_postal": "72610", "code_commune_insee": "72137", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "ligne_5": "LE BUISSON", "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "coordonnees_gps": [48.3894746655, 0.168582736306]}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73fcb144559b9766600ff238db67b1738c99f11", "fields": {"code_postal": "72610", "code_commune_insee": "72137", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "ligne_5": "LIGNIERES LA CARELLE", "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "coordonnees_gps": [48.3894746655, 0.168582736306]}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779f0e34bcf49555c5d824accdf1dfe9d478b2ee", "fields": {"nom_de_la_commune": "LE PLESSIS GASSOT", "libell_d_acheminement": "LE PLESSIS GASSOT", "code_postal": "95720", "coordonnees_gps": [49.0481825162, 2.40282933292], "code_commune_insee": "95492"}, "geometry": {"type": "Point", "coordinates": [2.40282933292, 49.0481825162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9779620f570ef69d87e1b60aed0d79008944eed7", "fields": {"nom_de_la_commune": "PONTOISE", "libell_d_acheminement": "PONTOISE", "code_postal": "95300", "coordonnees_gps": [49.0835669403, 2.10696203629], "code_commune_insee": "95500"}, "geometry": {"type": "Point", "coordinates": [2.10696203629, 49.0835669403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8c339a14c3526a19cbf162e4157a0de7209d435", "fields": {"nom_de_la_commune": "PUISEUX EN FRANCE", "libell_d_acheminement": "PUISEUX EN FRANCE", "code_postal": "95380", "coordonnees_gps": [49.0485279227, 2.5187416869], "code_commune_insee": "95509"}, "geometry": {"type": "Point", "coordinates": [2.5187416869, 49.0485279227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44ce610e11b7d16904b5206ac0073ced1d49e467", "fields": {"nom_de_la_commune": "LA ROCHE GUYON", "libell_d_acheminement": "LA ROCHE GUYON", "code_postal": "95780", "coordonnees_gps": [49.0867183905, 1.64440422629], "code_commune_insee": "95523"}, "geometry": {"type": "Point", "coordinates": [1.64440422629, 49.0867183905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a86389c27e1f30cf6cf225e28cfccfca393db463", "fields": {"code_postal": "95700", "code_commune_insee": "95527", "libell_d_acheminement": "ROISSY EN FRANCE", "ligne_5": "ROISSY AEROPORT CHARLES DE GAULLE", "nom_de_la_commune": "ROISSY EN FRANCE", "coordonnees_gps": [49.0063802146, 2.51398787772]}, "geometry": {"type": "Point", "coordinates": [2.51398787772, 49.0063802146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b71114cc33cc4598a354f25e362d6e3d7b04025f", "fields": {"nom_de_la_commune": "ST GERVAIS", "libell_d_acheminement": "ST GERVAIS", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95554"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0278b816e98b4c0f893f2e8d08fb96108a6af3e", "fields": {"nom_de_la_commune": "ST OUEN L AUMONE", "libell_d_acheminement": "ST OUEN L AUMONE", "code_postal": "95310", "coordonnees_gps": [49.0444511055, 2.12902407572], "code_commune_insee": "95572"}, "geometry": {"type": "Point", "coordinates": [2.12902407572, 49.0444511055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cf698174ab6177c0eb95f11fc7d578c7f3ee79c", "fields": {"nom_de_la_commune": "ST WITZ", "libell_d_acheminement": "ST WITZ", "code_postal": "95470", "coordonnees_gps": [49.0842919677, 2.54827429077], "code_commune_insee": "95580"}, "geometry": {"type": "Point", "coordinates": [2.54827429077, 49.0842919677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298d5959a2d9542988372bbc18fc745a185a7607", "fields": {"nom_de_la_commune": "VAUREAL", "libell_d_acheminement": "VAUREAL", "code_postal": "95490", "coordonnees_gps": [49.030094494, 2.02389531327], "code_commune_insee": "95637"}, "geometry": {"type": "Point", "coordinates": [2.02389531327, 49.030094494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e963d57fb8743c158e5d9c16d923fee02ed74fd", "fields": {"nom_de_la_commune": "VETHEUIL", "libell_d_acheminement": "VETHEUIL", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95651"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e0d5bb4c7e9076a02ee1f0026b33a5350d74ae", "fields": {"nom_de_la_commune": "LES ABYMES", "libell_d_acheminement": "LES ABYMES", "code_postal": "97142", "coordonnees_gps": [16.2727902074, -61.5015764802], "code_commune_insee": "97101"}, "geometry": {"type": "Point", "coordinates": [-61.5015764802, 16.2727902074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37001b01334658d8982c1e5bb39969bc68dfbaaa", "fields": {"nom_de_la_commune": "BAIE MAHAULT", "libell_d_acheminement": "BAIE MAHAULT", "code_postal": "97122", "coordonnees_gps": [16.25152894, -61.5922445843], "code_commune_insee": "97103"}, "geometry": {"type": "Point", "coordinates": [-61.5922445843, 16.25152894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0c41084b4f166bd6f4bafd148b7b28d24e81182", "fields": {"nom_de_la_commune": "CAPESTERRE BELLE EAU", "libell_d_acheminement": "CAPESTERRE BELLE EAU", "code_postal": "97130", "coordonnees_gps": [16.0552203846, -61.6118226443], "code_commune_insee": "97107"}, "geometry": {"type": "Point", "coordinates": [-61.6118226443, 16.0552203846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef9964f25a7c2a8a33e134332da7e58ccf5e75e8", "fields": {"nom_de_la_commune": "DESHAIES", "libell_d_acheminement": "DESHAIES", "code_postal": "97126", "coordonnees_gps": [16.3035227992, -61.779966949], "code_commune_insee": "97111"}, "geometry": {"type": "Point", "coordinates": [-61.779966949, 16.3035227992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfcba486bb91a9d59d94fd614168b0e98d5ecb50", "fields": {"nom_de_la_commune": "MORNE A L EAU", "libell_d_acheminement": "MORNE A L EAU", "code_postal": "97111", "coordonnees_gps": [16.3244916771, -61.4713968563], "code_commune_insee": "97116"}, "geometry": {"type": "Point", "coordinates": [-61.4713968563, 16.3244916771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51814f7a6a29152570d6a36ad6f43f56b49d47bc", "fields": {"code_postal": "97131", "code_commune_insee": "97119", "libell_d_acheminement": "PETIT CANAL", "ligne_5": "LES MANGLES", "nom_de_la_commune": "PETIT CANAL", "coordonnees_gps": [16.389934769, -61.4497015093]}, "geometry": {"type": "Point", "coordinates": [-61.4497015093, 16.389934769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "847a8a89ed178fc690e8f2a92f0e99032dccb873", "fields": {"nom_de_la_commune": "ST CLAUDE", "libell_d_acheminement": "ST CLAUDE", "code_postal": "97120", "coordonnees_gps": [16.0334826913, -61.6899946851], "code_commune_insee": "97124"}, "geometry": {"type": "Point", "coordinates": [-61.6899946851, 16.0334826913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b5bbfb292fc013a2120762334f6660152803876", "fields": {"nom_de_la_commune": "STE ROSE", "libell_d_acheminement": "STE ROSE", "code_postal": "97115", "coordonnees_gps": [16.293918217, -61.7108031609], "code_commune_insee": "97129"}, "geometry": {"type": "Point", "coordinates": [-61.7108031609, 16.293918217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f6c32c5a81991c1f5658bb6bc5ee7252050d124", "fields": {"nom_de_la_commune": "GROS MORNE", "libell_d_acheminement": "GROS MORNE", "code_postal": "97213", "coordonnees_gps": [14.7120628914, -61.0259258054], "code_commune_insee": "97212"}, "geometry": {"type": "Point", "coordinates": [-61.0259258054, 14.7120628914]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e7a0fc8889cbb116aa108482a21f491e3b0cb9a", "fields": {"nom_de_la_commune": "LE LAMENTIN", "libell_d_acheminement": "LE LAMENTIN", "code_postal": "97232", "coordonnees_gps": [14.6244810943, -60.9936556882], "code_commune_insee": "97213"}, "geometry": {"type": "Point", "coordinates": [-60.9936556882, 14.6244810943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283617f87fc9edb04cbb81febf0edff7b70e179d", "fields": {"nom_de_la_commune": "MACOUBA", "libell_d_acheminement": "MACOUBA", "code_postal": "97218", "coordonnees_gps": [14.8474849535, -61.1459690766], "code_commune_insee": "97215"}, "geometry": {"type": "Point", "coordinates": [-61.1459690766, 14.8474849535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "503f7f22b59370939e66f4ea7478a9d26e53ea62", "fields": {"nom_de_la_commune": "LE MARIGOT", "libell_d_acheminement": "LE MARIGOT", "code_postal": "97225", "coordonnees_gps": [14.7798790652, -61.0516892997], "code_commune_insee": "97216"}, "geometry": {"type": "Point", "coordinates": [-61.0516892997, 14.7798790652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f52b8d1a9b19144f6316910db48329ca9c4d7bed", "fields": {"nom_de_la_commune": "LE PRECHEUR", "libell_d_acheminement": "LE PRECHEUR", "code_postal": "97250", "coordonnees_gps": [14.777738804, -61.1678676514], "code_commune_insee": "97219"}, "geometry": {"type": "Point", "coordinates": [-61.1678676514, 14.777738804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23297b852549b5b6f4ce454cbe6868baeb2eb343", "fields": {"nom_de_la_commune": "RIVIERE SALEE", "libell_d_acheminement": "RIVIERE SALEE", "code_postal": "97215", "coordonnees_gps": [14.5259859391, -60.9645824677], "code_commune_insee": "97221"}, "geometry": {"type": "Point", "coordinates": [-60.9645824677, 14.5259859391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3682089d03b9c9cc95e3ca2a101798e38bf9aa39", "fields": {"nom_de_la_commune": "STE LUCE", "libell_d_acheminement": "STE LUCE", "code_postal": "97228", "coordonnees_gps": [14.4855126977, -60.9447898865], "code_commune_insee": "97227"}, "geometry": {"type": "Point", "coordinates": [-60.9447898865, 14.4855126977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa51f51fbb2599c95b86fc01e8f447870398d01", "fields": {"code_postal": "97230", "code_commune_insee": "97228", "libell_d_acheminement": "STE MARIE", "ligne_5": "STE MARIE MORNE DES ESSES", "nom_de_la_commune": "STE MARIE", "coordonnees_gps": [14.7693102054, -61.0177300072]}, "geometry": {"type": "Point", "coordinates": [-61.0177300072, 14.7693102054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7abb8b6fe1d5f694cb44e23aebe5c9c4363c3c70", "fields": {"nom_de_la_commune": "LE VAUCLIN", "libell_d_acheminement": "LE VAUCLIN", "code_postal": "97280", "coordonnees_gps": [14.5433463499, -60.8567392953], "code_commune_insee": "97232"}, "geometry": {"type": "Point", "coordinates": [-60.8567392953, 14.5433463499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1cab568f0b24c253687ae23790d32e47f51587b", "fields": {"nom_de_la_commune": "CAYENNE", "libell_d_acheminement": "CAYENNE", "code_postal": "97300", "coordonnees_gps": [5.02932589838, -52.5159620872], "code_commune_insee": "97302"}, "geometry": {"type": "Point", "coordinates": [-52.5159620872, 5.02932589838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eb6e0ea117776bcc80ff5c3a3bc71f3faeafabd", "fields": {"code_postal": "97352", "code_commune_insee": "97310", "libell_d_acheminement": "ROURA", "ligne_5": "CACAO", "nom_de_la_commune": "ROURA", "coordonnees_gps": [4.46467206988, -52.5129184542]}, "geometry": {"type": "Point", "coordinates": [-52.5129184542, 4.46467206988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32a9fa952cd254214abad44ce1346e37e8f54ff6", "fields": {"nom_de_la_commune": "ST ELIE", "libell_d_acheminement": "ST ELIE", "code_postal": "97312", "coordonnees_gps": [4.52927437476, -53.1006646796], "code_commune_insee": "97358"}, "geometry": {"type": "Point", "coordinates": [-53.1006646796, 4.52927437476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67df11f0a0a011ffff60a79d6cf84453ac119213", "fields": {"nom_de_la_commune": "AWALA YALIMAPO", "libell_d_acheminement": "AWALA YALIMAPO", "code_postal": "97319", "coordonnees_gps": [5.68354920544, -53.9164375378], "code_commune_insee": "97361"}, "geometry": {"type": "Point", "coordinates": [-53.9164375378, 5.68354920544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30ed90c8e3ddb444c5659768ec02f4e0b1c560bb", "fields": {"nom_de_la_commune": "PAPAICHTON", "libell_d_acheminement": "POMPIDOU PAPA ICHTON", "code_postal": "97316", "coordonnees_gps": [4.04272709596, -54.0355703954], "code_commune_insee": "97362"}, "geometry": {"type": "Point", "coordinates": [-54.0355703954, 4.04272709596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa7a2434657d803a81dc3505c387a2156b8a8f0", "fields": {"code_postal": "97429", "code_commune_insee": "97405", "libell_d_acheminement": "PETITE ILE", "ligne_5": "PITON GOYAVES", "nom_de_la_commune": "PETITE ILE", "coordonnees_gps": [-21.3396693857, 55.5689349201]}, "geometry": {"type": "Point", "coordinates": [55.5689349201, -21.3396693857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d25a86896ee1f1106aa86c2429ccecb530e355f", "fields": {"nom_de_la_commune": "LA POSSESSION", "libell_d_acheminement": "LA POSSESSION", "code_postal": "97419", "coordonnees_gps": [-20.99459115, 55.3979867416], "code_commune_insee": "97408"}, "geometry": {"type": "Point", "coordinates": [55.3979867416, -20.99459115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7afd6e51e1765b2d7cdbd70fac04788bb91fa610", "fields": {"nom_de_la_commune": "ST ANDRE", "libell_d_acheminement": "ST ANDRE", "code_postal": "97440", "coordonnees_gps": [-20.9634830614, 55.6422659103], "code_commune_insee": "97409"}, "geometry": {"type": "Point", "coordinates": [55.6422659103, -20.9634830614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3280ab3debe6f3b1575d98acb510d57926d22ee", "fields": {"code_postal": "97400", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "ST DENIS TADAR", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0e83282835cf7dcd9574813bbf9e90edf67704f", "fields": {"code_postal": "97490", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "BOIS DE NEFLES ST DENIS", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2485b270c94b006c6e8a6b4a27e7beab3d339cde", "fields": {"code_postal": "97490", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "MOUFIA", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3abedb19cad2fe8cb3dbdc56d4cc6c961394bb17", "fields": {"code_postal": "97490", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "STE CLOTILDE", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b497a23f7b455630f74cf2e6cb8e9eff859a50e", "fields": {"code_postal": "97480", "code_commune_insee": "97412", "libell_d_acheminement": "ST JOSEPH", "ligne_5": "JEAN PETIT", "nom_de_la_commune": "ST JOSEPH", "coordonnees_gps": [-21.3061982734, 55.6419643354]}, "geometry": {"type": "Point", "coordinates": [55.6419643354, -21.3061982734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d244260dd22c80ca6769a80b8670527d315bfd5", "fields": {"code_postal": "97424", "code_commune_insee": "97413", "libell_d_acheminement": "ST LEU", "ligne_5": "LE PLATE", "nom_de_la_commune": "ST LEU", "coordonnees_gps": [-21.1657814773, 55.3335929857]}, "geometry": {"type": "Point", "coordinates": [55.3335929857, -21.1657814773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a6293cb8defd1dda2776950650b07f7379904b", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "97460", "coordonnees_gps": [-21.044558662, 55.3221880362], "code_commune_insee": "97415"}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8080e571eaa019486eab2cedad51606afdbcafae", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "97410", "coordonnees_gps": [-21.3123020427, 55.4942837134], "code_commune_insee": "97416"}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6802154bb42d7007f088ecc9d612d067f32d7fdd", "fields": {"code_postal": "97442", "code_commune_insee": "97417", "libell_d_acheminement": "ST PHILIPPE", "ligne_5": "BASSE VALLEE", "nom_de_la_commune": "ST PHILIPPE", "coordonnees_gps": [-21.3038963279, 55.7450487772]}, "geometry": {"type": "Point", "coordinates": [55.7450487772, -21.3038963279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84dd46dea83670ce7fc77a7299f8171794af2a26", "fields": {"code_postal": "97438", "code_commune_insee": "97418", "libell_d_acheminement": "STE MARIE", "ligne_5": "ROLAND GARROS AEROPORT", "nom_de_la_commune": "STE MARIE", "coordonnees_gps": [-20.9470117135, 55.5304413195]}, "geometry": {"type": "Point", "coordinates": [55.5304413195, -20.9470117135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c24efb7415ff7932e1dd981c79cd51874e6406a9", "fields": {"code_postal": "97439", "code_commune_insee": "97419", "libell_d_acheminement": "STE ROSE", "ligne_5": "LE PITON STE ROSE", "nom_de_la_commune": "STE ROSE", "coordonnees_gps": [-21.1923490823, 55.7545391105]}, "geometry": {"type": "Point", "coordinates": [55.7545391105, -21.1923490823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e2781182b60909e0e0d9634f40f0153a2ea97df", "fields": {"code_postal": "97433", "code_commune_insee": "97421", "libell_d_acheminement": "SALAZIE", "ligne_5": "HELL BOURG", "nom_de_la_commune": "SALAZIE", "coordonnees_gps": [-21.0468656868, 55.5080493418]}, "geometry": {"type": "Point", "coordinates": [55.5080493418, -21.0468656868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65b8b001d5010020d41be623df3b6e2e872050c7", "fields": {"code_postal": "97430", "code_commune_insee": "97422", "libell_d_acheminement": "LE TAMPON", "ligne_5": "TAMPON 14EME KM", "nom_de_la_commune": "LE TAMPON", "coordonnees_gps": [-21.2232735842, 55.5587522693]}, "geometry": {"type": "Point", "coordinates": [55.5587522693, -21.2232735842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385dbca026d5dbc8133f4bce0261a9eb70ce09b8", "fields": {"code_postal": "97413", "code_commune_insee": "97424", "libell_d_acheminement": "CILAOS", "ligne_5": "PALMISTE ROUGE", "nom_de_la_commune": "CILAOS", "coordonnees_gps": [-21.1439238354, 55.4586896242]}, "geometry": {"type": "Point", "coordinates": [55.4586896242, -21.1439238354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c9cca8213b0978d4e3ae9aca8935dd4c3bb12b1", "fields": {"nom_de_la_commune": "CHICONI", "libell_d_acheminement": "CHICONI", "code_postal": "97670", "coordonnees_gps": [-12.8328062861, 45.1308284247], "code_commune_insee": "97605"}, "geometry": {"type": "Point", "coordinates": [45.1308284247, -12.8328062861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6595791fd615f23553e47b0e02db8b7ac575328a", "fields": {"nom_de_la_commune": "DZAOUDZI", "libell_d_acheminement": "DZAOUDZI", "code_postal": "97615", "coordonnees_gps": [-12.785467309, 45.2832655596], "code_commune_insee": "97608"}, "geometry": {"type": "Point", "coordinates": [45.2832655596, -12.785467309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e259612e31dddbd936221d8be7d2fc11d4cf451d", "fields": {"code_postal": "97600", "code_commune_insee": "97611", "libell_d_acheminement": "MAMOUDZOU", "ligne_5": "KAWENI", "nom_de_la_commune": "MAMOUDZOU", "coordonnees_gps": [-12.7725574763, 45.1908759365]}, "geometry": {"type": "Point", "coordinates": [45.1908759365, -12.7725574763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df1bb96a40f06cde52c1e5a4ce8c0420cd384a0", "fields": {"nom_de_la_commune": "MTSAMBORO", "libell_d_acheminement": "MTSAMBORO", "code_postal": "97630", "coordonnees_gps": [-12.7037438123, 45.0717293646], "code_commune_insee": "97612"}, "geometry": {"type": "Point", "coordinates": [45.0717293646, -12.7037438123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "128db9f2338facf0e285c2779c0c54103d804fbe", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY", "code_postal": "97133", "code_commune_insee": "97701"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b53274342b62d1618dd8e3778348ba622a0174fb", "fields": {"nom_de_la_commune": "ANAA", "libell_d_acheminement": "HITIANAU", "code_postal": "98786", "ligne_5": "ANAA", "code_commune_insee": "98711"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbccb676254409d7c9727db1804fa6fab51af8dc", "fields": {"nom_de_la_commune": "ARUTUA", "libell_d_acheminement": "RAUTINI", "code_postal": "98761", "ligne_5": "ARUTUA", "code_commune_insee": "98713"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2cb61001f6aea48ac60c6935d11f1f0b48237cb", "fields": {"nom_de_la_commune": "FANGATAU", "libell_d_acheminement": "TEANA", "code_postal": "98765", "ligne_5": "FANGATAU", "code_commune_insee": "98717"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "990d0aee357b0d422e16b02a60d68eed18213153", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "AMANU", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033b084f84b72debf180baf038beb073752abdfa", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "TEANOGA", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f32598405c473b5b4065bfb7dfecfeba66ca49", "fields": {"nom_de_la_commune": "HITIAA O TE RA", "libell_d_acheminement": "MAHAENA", "code_postal": "98706", "ligne_5": "HITIAA O TE RA", "code_commune_insee": "98722"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abac4806a0fb2f929c17f324597ebd8edf889602", "fields": {"nom_de_la_commune": "HITIAA O TE RA", "libell_d_acheminement": "TIAREI", "code_postal": "98708", "ligne_5": "HITIAA O TE RA", "code_commune_insee": "98722"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6380b8eaa56698dde6ad50aa9860f46a7bdf1a17", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "MAEVA", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35cecf683a9cf3e3f42f516c2b5d11a6f59d6949", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "PAREA", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ece9b1fb163c65781649258625c5af1fd9b9c6", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "HITI", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56d20f231ee1c24e3b0d9dd8ffb64183dfdca99b", "fields": {"nom_de_la_commune": "MAUPITI", "libell_d_acheminement": "MOPELIA", "code_postal": "98732", "ligne_5": "MAUPITI", "code_commune_insee": "98728"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e4d2df060efd54f19213595e50bf2edc65e6c93", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "TIAIA", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab49680f56c350a42ec573b4c92cd2482dc10f9c", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "PIHAENA", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e95c3522458ede74a1e5677fad7430848e084708", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "NUKUATAHA", "code_postal": "98742", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "606345182a54f4827d72459e748deeb60f1a5e2f", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "EIAO", "code_postal": "98796", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e451f5a9b5199abcf506c0db020581a663b11c01", "fields": {"nom_de_la_commune": "NUKUTAVAKE", "libell_d_acheminement": "TEMANUFAARA", "code_postal": "98788", "ligne_5": "NUKUTAVAKE", "code_commune_insee": "98732"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e15e2974e099552e466689f666ac60d454270eb0", "fields": {"nom_de_la_commune": "RANGIROA", "libell_d_acheminement": "PAHUA", "code_postal": "98777", "ligne_5": "RANGIROA", "code_commune_insee": "98740"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38aa1eadabef8bf3879d3fc52a7c943302b4d323", "fields": {"nom_de_la_commune": "RAPA", "libell_d_acheminement": "AHUREI", "code_postal": "98751", "ligne_5": "RAPA", "code_commune_insee": "98741"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e334709d3e283a58e89d0464bf19ea834ff0da3c", "fields": {"nom_de_la_commune": "RIMATARA", "libell_d_acheminement": "AMARU", "code_postal": "98752", "ligne_5": "RIMATARA", "code_commune_insee": "98743"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95f72707aa192e7fa7753a85e980aec5aca058b7", "fields": {"nom_de_la_commune": "RIMATARA", "libell_d_acheminement": "MARIA ILOTS", "code_postal": "98795", "ligne_5": "RIMATARA", "code_commune_insee": "98743"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "632f5146648662d8ce001ba6cb33c4005ae7ec9a", "fields": {"nom_de_la_commune": "RURUTU", "libell_d_acheminement": "HAUTI", "code_postal": "98753", "ligne_5": "RURUTU", "code_commune_insee": "98744"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d220f6fedce6c50f5c135aac5c8ecbc16da774", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "PATIO", "code_postal": "98733", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a593b20ec89118553fb8337d28c2891f55d3d2ef", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "RUUTIA", "code_postal": "98733", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c936e5b1fdb2281115ba7e9a41c1d0945659ad8", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "TIVA", "code_postal": "98733", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da92418e5921b014dd2eb3350208a4b49b875a62", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "POUTORU", "code_postal": "98734", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df61cb850cd2727739598b776417204588900b38", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "VAITOARE", "code_postal": "98734", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de3a065848e17d6c2dd050f5542b22c121bcb8d5", "fields": {"nom_de_la_commune": "TAHUATA", "libell_d_acheminement": "VAITAHU", "code_postal": "98743", "ligne_5": "TAHUATA", "code_commune_insee": "98746"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02b8b948e8063a8a0136d317259f1db54adba31c", "fields": {"nom_de_la_commune": "TAIARAPU EST", "libell_d_acheminement": "PUEU", "code_postal": "98721", "ligne_5": "TAIARAPU EST", "code_commune_insee": "98747"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a418343cbc44a1eee5cf08fb54d6e1a60dd18fb7", "fields": {"nom_de_la_commune": "TAKAROA", "libell_d_acheminement": "TIKEI", "code_postal": "98790", "ligne_5": "TAKAROA", "code_commune_insee": "98749"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d47393c6f8376ece46e70ea9ce02fcda0241192", "fields": {"nom_de_la_commune": "TAPUTAPUATEA", "libell_d_acheminement": "OPOA", "code_postal": "98735", "ligne_5": "TAPUTAPUATEA", "code_commune_insee": "98750"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73715bf4a312d24c9eb390a5c3ffb39d97af358", "fields": {"nom_de_la_commune": "TEVA I UTA", "libell_d_acheminement": "MATAIEA", "code_postal": "98726", "ligne_5": "TEVA I UTA", "code_commune_insee": "98752"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4b4cd49ea4193c2e05555130c75dc1885dffe2", "fields": {"nom_de_la_commune": "UA HUKA", "libell_d_acheminement": "VAIPAEE", "code_postal": "98744", "ligne_5": "UA HUKA", "code_commune_insee": "98756"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "415c8ac427edfeba60a3ab0df24fa767fc503eff", "fields": {"nom_de_la_commune": "UTUROA", "libell_d_acheminement": "UTUROA", "code_postal": "98735", "code_commune_insee": "98758"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc2f01f514a7bd25ee589074497af835eb079cf", "fields": {"nom_de_la_commune": "BOULOUPARI", "libell_d_acheminement": "BOULOUPARIS", "code_postal": "98812", "code_commune_insee": "98802"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05f2466e6e99a1668c2055cfde59b1511c6c91dc", "fields": {"nom_de_la_commune": "HOUAILOU", "libell_d_acheminement": "HOUAILOU", "code_postal": "98816", "code_commune_insee": "98808"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d38fc541c4f026a570656bef33671d01e68d2b", "fields": {"nom_de_la_commune": "KOUMAC", "libell_d_acheminement": "KOUMAC", "code_postal": "98850", "code_commune_insee": "98812"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dadfd8306c2bf7b90c33e76704508f558bcc819f", "fields": {"nom_de_la_commune": "LA FOA", "libell_d_acheminement": "LA FOA", "code_postal": "98880", "code_commune_insee": "98813"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a06fcaf0708e8052c965e74da6a47dcda70256e", "fields": {"nom_de_la_commune": "LE MONT DORE", "libell_d_acheminement": "MONT DORE", "code_postal": "98810", "code_commune_insee": "98817"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7621cb1034bbddf198588d83e31842c017ac8c2", "fields": {"nom_de_la_commune": "OUEGOA", "libell_d_acheminement": "OUEGOA", "code_postal": "98821", "code_commune_insee": "98819"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6978a815736897d59633b1c8fd3d57478c37d34", "fields": {"nom_de_la_commune": "POINDIMIE", "libell_d_acheminement": "POINDIMIE", "code_postal": "98822", "code_commune_insee": "98822"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db10289bd074cc9cf3317b96e4ae20f4001d94b4", "fields": {"nom_de_la_commune": "POUEBO", "libell_d_acheminement": "POUEBO", "code_postal": "98824", "code_commune_insee": "98824"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374ee5d680c1d98f11193b918ace83cc14b0be8c", "fields": {"nom_de_la_commune": "YATE", "libell_d_acheminement": "YATE", "code_postal": "98834", "code_commune_insee": "98832"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d22bc4b4cdd7a895c402c53846cc6db07bbc49d", "fields": {"nom_de_la_commune": "KOUAOUA", "libell_d_acheminement": "KOUAOUA", "code_postal": "98818", "code_commune_insee": "98833"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5cda7b045c7d82b6e8d4903e93025d2bd00844", "fields": {"nom_de_la_commune": "AFA", "libell_d_acheminement": "AFA", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A001"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c51fedf4e02709717968f3659a0dd1565c625f", "fields": {"code_postal": "20167", "code_commune_insee": "2A004", "libell_d_acheminement": "AJACCIO", "ligne_5": "MEZZAVIA", "nom_de_la_commune": "AJACCIO", "coordonnees_gps": [41.9750629665, 8.77513294931]}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e97e4015b29b85f34b64106cbedd0955ba6d616", "fields": {"nom_de_la_commune": "ALTAGENE", "libell_d_acheminement": "ALTAGENE", "code_postal": "20112", "coordonnees_gps": [41.6785766285, 9.05986973955], "code_commune_insee": "2A011"}, "geometry": {"type": "Point", "coordinates": [9.05986973955, 41.6785766285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "525cf34ff47f8d7a472b6ca7c0030772ece7574c", "fields": {"nom_de_la_commune": "LARRESSINGLE", "libell_d_acheminement": "LARRESSINGLE", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32194"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "249f6902760de608655d433bfce1dbbbd18e2093", "fields": {"nom_de_la_commune": "LASSERADE", "libell_d_acheminement": "LASSERADE", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32199"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce6a4cbd815678ddc844564a4961ca5bdb0ff363", "fields": {"nom_de_la_commune": "LUPIAC", "libell_d_acheminement": "LUPIAC", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32219"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fb3bbfa11761c59c32da6908066563b4f4f079", "fields": {"nom_de_la_commune": "MANENT MONTANE", "libell_d_acheminement": "MANENT MONTANE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32228"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5859c3df7f0cff67420fcf9d5a22e7fb8bbe62bf", "fields": {"nom_de_la_commune": "MARGUESTAU", "libell_d_acheminement": "MARGUESTAU", "code_postal": "32150", "coordonnees_gps": [43.9190765536, -0.0421545944105], "code_commune_insee": "32236"}, "geometry": {"type": "Point", "coordinates": [-0.0421545944105, 43.9190765536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d3d522a201cec3587ca7e75e3aca15aec021ee", "fields": {"nom_de_la_commune": "MASCARAS", "libell_d_acheminement": "MASCARAS", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32240"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38d078970a80474e432d5b975c7508cc4d1e19e", "fields": {"nom_de_la_commune": "MASSEUBE", "libell_d_acheminement": "MASSEUBE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32242"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f22e5fec414bc07e52c97410f9b7f0e5ce7944", "fields": {"nom_de_la_commune": "MAUPAS", "libell_d_acheminement": "MAUPAS", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32246"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3a5a1f40b731ce981bbd3ebb5194d4b51d5825", "fields": {"nom_de_la_commune": "MIRAMONT LATOUR", "libell_d_acheminement": "MIRAMONT LATOUR", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32255"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab8175f7030f02fc11bb1a966216d10c3ec8b00d", "fields": {"nom_de_la_commune": "MONCASSIN", "libell_d_acheminement": "MONCASSIN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32263"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "359f7e05fca8cfe408eea352f02d57f346302de9", "fields": {"nom_de_la_commune": "MONCLAR", "libell_d_acheminement": "MONCLAR D ARMAGNAC", "code_postal": "32150", "coordonnees_gps": [43.9190765536, -0.0421545944105], "code_commune_insee": "32264"}, "geometry": {"type": "Point", "coordinates": [-0.0421545944105, 43.9190765536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ff52bd45ca14b74abdcc110462a9970c98f279", "fields": {"nom_de_la_commune": "MONFERRAN SAVES", "libell_d_acheminement": "MONFERRAN SAVES", "code_postal": "32490", "coordonnees_gps": [43.5909785115, 0.981247393287], "code_commune_insee": "32268"}, "geometry": {"type": "Point", "coordinates": [0.981247393287, 43.5909785115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4712c047593a7d27fd1c6292f82dd768efa5ec11", "fields": {"nom_de_la_commune": "MONFORT", "libell_d_acheminement": "MONFORT", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32269"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1369ba5ee45145f124a9b00bffe1a4f6aef67a88", "fields": {"nom_de_la_commune": "MONGUILHEM", "libell_d_acheminement": "MONGUILHEM", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32271"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "512fd7c5be61b26f79140e4dc7200b43b75cf3f4", "fields": {"nom_de_la_commune": "MONLEZUN", "libell_d_acheminement": "MONLEZUN", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32273"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e28ffe583c6e683dfbd612e8e5735f505732107", "fields": {"nom_de_la_commune": "MONTAMAT", "libell_d_acheminement": "MONTAMAT", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32277"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97cfcbaa4047d2ed8ce0d36f1816aba33d7f2648", "fields": {"nom_de_la_commune": "NOGARO", "libell_d_acheminement": "NOGARO", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32296"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20a53d2ade056a440d59bf2b96e17d951991330a", "fields": {"nom_de_la_commune": "NOILHAN", "libell_d_acheminement": "NOILHAN", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32297"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0da8f2666c19c9867e309ed43de4300d74dff58", "fields": {"nom_de_la_commune": "ORDAN LARROQUE", "libell_d_acheminement": "ORDAN LARROQUE", "code_postal": "32350", "coordonnees_gps": [43.6571309769, 0.430675404963], "code_commune_insee": "32301"}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0212fa3d1e2ad371b2f688ced4679c25d77b285", "fields": {"nom_de_la_commune": "PANJAS", "libell_d_acheminement": "PANJAS", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32305"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d884a6645331ff1303aab905d22e694c8b428ef", "fields": {"nom_de_la_commune": "PERCHEDE", "libell_d_acheminement": "PERCHEDE", "code_postal": "32460", "coordonnees_gps": [43.7705722167, -0.178992315741], "code_commune_insee": "32310"}, "geometry": {"type": "Point", "coordinates": [-0.178992315741, 43.7705722167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8163c5421711382dcafd5e1c0123f3f0d0a3b61", "fields": {"nom_de_la_commune": "PESSOULENS", "libell_d_acheminement": "PESSOULENS", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32313"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b54c2f22e0a14e14c5f85f4a2bee9f41af25271", "fields": {"nom_de_la_commune": "PEYRECAVE", "libell_d_acheminement": "PEYRECAVE", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32314"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95915293c53e67ad16f72c6198569474e6b96350", "fields": {"nom_de_la_commune": "PEYRUSSE VIEILLE", "libell_d_acheminement": "PEYRUSSE VIEILLE", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32317"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "255f2f3db978b0be4dd6f5d9ae3dba1599ed7a49", "fields": {"nom_de_la_commune": "POUY ROQUELAURE", "libell_d_acheminement": "POUY ROQUELAURE", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32328"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd0558d3fe5a7fa9a46d9b4ec5875bf5e7a91024", "fields": {"nom_de_la_commune": "PRECHAC", "libell_d_acheminement": "PRECHAC", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32329"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5cd1aaaabb188ffddf22cab6d24387b389e03f4", "fields": {"nom_de_la_commune": "PRENERON", "libell_d_acheminement": "PRENERON", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32332"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb5843e8e26096772911aafe5916dbcf44d7da8", "fields": {"nom_de_la_commune": "PUJAUDRAN", "libell_d_acheminement": "PUJAUDRAN", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32334"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf8de49d10a19e0a4a1cb00f19fd157f0e5870b1", "fields": {"nom_de_la_commune": "PUYLAUSIC", "libell_d_acheminement": "PUYLAUSIC", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32336"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "762d6bd0c0e96edd687328598fe7f96ff9f03e71", "fields": {"nom_de_la_commune": "RAMOUZENS", "libell_d_acheminement": "RAMOUZENS", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32338"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720ea52da4a75f9c2af9b90ec9e7020a17ed38b7", "fields": {"nom_de_la_commune": "REANS", "libell_d_acheminement": "REANS", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32340"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8269bfb7f811cf18d2a6bbfce2ae6280a5a7683b", "fields": {"nom_de_la_commune": "RISCLE", "libell_d_acheminement": "RISCLE", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32344"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a334d992865156203364e57b9cf31d48e7a1732c", "fields": {"nom_de_la_commune": "SABAILLAN", "libell_d_acheminement": "SABAILLAN", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32353"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274d5646dab920665d36f2e6a83bc5df401b78b9", "fields": {"nom_de_la_commune": "SADEILLAN", "libell_d_acheminement": "SADEILLAN", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32355"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba8920b68e3eefb666668de4634dbbd847911a1e", "fields": {"nom_de_la_commune": "ST ANDRE", "libell_d_acheminement": "ST ANDRE", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32356"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609353020b59beefaab4446c90dcc783d126eef4", "fields": {"nom_de_la_commune": "ST ANTONIN", "libell_d_acheminement": "ST ANTONIN", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32359"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7aebe8f3203acc6068693d2179add0e9b91ee0", "fields": {"nom_de_la_commune": "ST AUNIX LENGROS", "libell_d_acheminement": "ST AUNIX LENGROS", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32362"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ec9f48c63b4d42bf9a1b5d8c7cc92cd3bd9c60", "fields": {"nom_de_la_commune": "ST ELIX", "libell_d_acheminement": "ST ELIX", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32374"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e60ac9e218fa22a7cd308663bbafeef7e30519d", "fields": {"nom_de_la_commune": "ST GERME", "libell_d_acheminement": "ST GERME", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32378"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2be820e88a0d1b7840abafca7374476964dca125", "fields": {"nom_de_la_commune": "ST JUSTIN", "libell_d_acheminement": "ST JUSTIN", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32383"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae4eb26339d88f74c031ba15ab5ea9d90c1480dc", "fields": {"nom_de_la_commune": "ST LOUBE", "libell_d_acheminement": "ST LOUBE", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32387"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e2b19c31715da6f673014c326c198695e1aaf34", "fields": {"nom_de_la_commune": "ST MAUR", "libell_d_acheminement": "ST MAUR", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32393"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fd8f98f6815c1e70171ad80cbfc8b71b42509dd", "fields": {"nom_de_la_commune": "ST SAUVY", "libell_d_acheminement": "ST SAUVY", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32406"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8da7a4447b2ec9f812c92ab7fc6d8785a3ec040", "fields": {"nom_de_la_commune": "SAMARAN", "libell_d_acheminement": "SAMARAN", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32409"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537bb8ec4687565eb47eaa8e91fb839f9a741c61", "fields": {"nom_de_la_commune": "SARCOS", "libell_d_acheminement": "SARCOS", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32413"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0087a01bc418adbd9726830aeaaf8dc79391d519", "fields": {"nom_de_la_commune": "LA SAUVETAT", "libell_d_acheminement": "LA SAUVETAT", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32417"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7eb91063051e98ced61a66887a37edb2bdbb219", "fields": {"nom_de_la_commune": "SEGOS", "libell_d_acheminement": "SEGOS", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32424"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2648cf762aab52f5e70669c454732d02e5d486d3", "fields": {"code_postal": "32260", "code_commune_insee": "32426", "libell_d_acheminement": "SEISSAN", "ligne_5": "ARTIGUEDIEU", "nom_de_la_commune": "SEISSAN", "coordonnees_gps": [43.4999610882, 0.608034644011]}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ca07c5bf67e6f9d8bb49258412a16517168521a", "fields": {"nom_de_la_commune": "SERE", "libell_d_acheminement": "SERE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32430"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6c7ac5bf87cea25e826a6da2a9e71775134262c", "fields": {"nom_de_la_commune": "TOURNAN", "libell_d_acheminement": "TOURNAN", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32451"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c162e052007aab64e83f6bf5bb6595eb9ba3f5", "fields": {"nom_de_la_commune": "TOURNECOUPE", "libell_d_acheminement": "TOURNECOUPE", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32452"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71a153449d23d7cf6869ce09f4fb61a6104d338a", "fields": {"nom_de_la_commune": "TUDELLE", "libell_d_acheminement": "TUDELLE", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32456"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95506e820738f93153f7a9eb75a47e0af9e762c", "fields": {"nom_de_la_commune": "VILLECOMTAL SUR ARROS", "libell_d_acheminement": "VILLECOMTAL SUR ARROS", "code_postal": "32730", "coordonnees_gps": [43.4054676887, 0.198171265768], "code_commune_insee": "32464"}, "geometry": {"type": "Point", "coordinates": [0.198171265768, 43.4054676887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f489da9509c34230c93b5e4d9fc88aed6adcf58d", "fields": {"nom_de_la_commune": "ST CAPRAIS", "libell_d_acheminement": "ST CAPRAIS", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32467"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6c898881153f81e8fb86f495b9a166e421a9844", "fields": {"nom_de_la_commune": "ANGLADE", "libell_d_acheminement": "ANGLADE", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33006"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53dbf8d48e540fbe68a727cba36fdd06b4818806", "fields": {"nom_de_la_commune": "ARVEYRES", "libell_d_acheminement": "ARVEYRES", "code_postal": "33500", "coordonnees_gps": [44.9225723992, -0.234534859794], "code_commune_insee": "33015"}, "geometry": {"type": "Point", "coordinates": [-0.234534859794, 44.9225723992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e74fbdfca276e5cae41a797f47a7ac28401cbdf1", "fields": {"code_postal": "33240", "code_commune_insee": "33018", "libell_d_acheminement": "VAL DE VIRVEE", "ligne_5": "AUBIE ET ESPESSAS", "nom_de_la_commune": "VAL DE VIRVEE", "coordonnees_gps": [44.9990310815, -0.398251913536]}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c4ca6d272537ebf542480956cfc60324750179f", "fields": {"nom_de_la_commune": "AYGUEMORTE LES GRAVES", "libell_d_acheminement": "AYGUEMORTE LES GRAVES", "code_postal": "33640", "coordonnees_gps": [44.6903703564, -0.443613375594], "code_commune_insee": "33023"}, "geometry": {"type": "Point", "coordinates": [-0.443613375594, 44.6903703564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2819101ba8aca8421eb796be78c11f5d1b4ec5", "fields": {"nom_de_la_commune": "BAIGNEAUX", "libell_d_acheminement": "BAIGNEAUX", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33025"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf29aa83ccc4bbc9cfd7bfc35057c412f947600b", "fields": {"nom_de_la_commune": "BALIZAC", "libell_d_acheminement": "BALIZAC", "code_postal": "33730", "coordonnees_gps": [44.4367877198, -0.375967403077], "code_commune_insee": "33026"}, "geometry": {"type": "Point", "coordinates": [-0.375967403077, 44.4367877198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fdae512890cc702300f7c3dc69415b6bce8882d", "fields": {"nom_de_la_commune": "BASSANNE", "libell_d_acheminement": "BASSANNE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33031"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d901824292a368af0b9d99cc1220b88b8c72d0db", "fields": {"code_postal": "33830", "code_commune_insee": "33042", "libell_d_acheminement": "BELIN BELIET", "ligne_5": "BELIET", "nom_de_la_commune": "BELIN BELIET", "coordonnees_gps": [44.48117634, -0.823096035056]}, "geometry": {"type": "Point", "coordinates": [-0.823096035056, 44.48117634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad4ea3161e127509f7d27dd9e561b7c24e262b4c", "fields": {"nom_de_la_commune": "BIEUJAC", "libell_d_acheminement": "BIEUJAC", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33050"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5a19f1f75b791c7929ca02d1145c5ec82eaaf5", "fields": {"nom_de_la_commune": "BLAIGNAC", "libell_d_acheminement": "BLAIGNAC", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33054"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97f13ea4432c9789fbee13d5dd23bb8eac886bcb", "fields": {"nom_de_la_commune": "BLAYE", "libell_d_acheminement": "BLAYE", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33058"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6cf8c9f97c1d32cc72a8f3866443a319012ff1b", "fields": {"nom_de_la_commune": "BONZAC", "libell_d_acheminement": "BONZAC", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33062"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d1c7e2e01a8e0efaefc315e6a2d20717268ccec", "fields": {"nom_de_la_commune": "BORDEAUX", "libell_d_acheminement": "BORDEAUX", "code_postal": "33000", "coordonnees_gps": [44.8579384389, -0.573595011059], "code_commune_insee": "33063"}, "geometry": {"type": "Point", "coordinates": [-0.573595011059, 44.8579384389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3955bb5e3d8dbaf15736e68c2ab06fb4c5baf5", "fields": {"nom_de_la_commune": "BOURDELLES", "libell_d_acheminement": "BOURDELLES", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33066"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f41c3edb0fc10c6e563e05991f6490376e6229e8", "fields": {"nom_de_la_commune": "BRANNE", "libell_d_acheminement": "BRANNE", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33071"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e8e1042778e04bd4c1d05126178a79c04c205f5", "fields": {"nom_de_la_commune": "BRANNENS", "libell_d_acheminement": "BRANNENS", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33072"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3436209c75919a867d0bd30a851ce4ab2319b87c", "fields": {"nom_de_la_commune": "BROUQUEYRAN", "libell_d_acheminement": "BROUQUEYRAN", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33074"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c3d40419e72c301d53da02e4afdfeecd5326f8a", "fields": {"nom_de_la_commune": "BRUGES", "libell_d_acheminement": "BRUGES", "code_postal": "33520", "coordonnees_gps": [44.8889664062, -0.600701691049], "code_commune_insee": "33075"}, "geometry": {"type": "Point", "coordinates": [-0.600701691049, 44.8889664062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d9511aa384bced2c7df877d67d5d97abb63298", "fields": {"nom_de_la_commune": "CADARSAC", "libell_d_acheminement": "CADARSAC", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33079"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476a823f1cbba6f74fef593a2d398076bb5e8b1e", "fields": {"nom_de_la_commune": "CAMIAC ET ST DENIS", "libell_d_acheminement": "CAMIAC ET ST DENIS", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33086"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41c3e5767838f15663e586393f045cabbf4e5d4", "fields": {"nom_de_la_commune": "CANTENAC", "libell_d_acheminement": "CANTENAC", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33091"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b10bd5a62c9edeb5a85027964b008cd79357588", "fields": {"nom_de_la_commune": "CAPTIEUX", "libell_d_acheminement": "CAPTIEUX", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33095"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ec197444f1b94045840b786862b98552cd7764", "fields": {"nom_de_la_commune": "CARIGNAN DE BORDEAUX", "libell_d_acheminement": "CARIGNAN DE BORDEAUX", "code_postal": "33360", "coordonnees_gps": [44.7832045247, -0.471864525744], "code_commune_insee": "33099"}, "geometry": {"type": "Point", "coordinates": [-0.471864525744, 44.7832045247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63e2494a633d46370b7320652206523a88f8fee", "fields": {"nom_de_la_commune": "CASTELNAU DE MEDOC", "libell_d_acheminement": "CASTELNAU DE MEDOC", "code_postal": "33480", "coordonnees_gps": [45.0106483018, -0.859128963466], "code_commune_insee": "33104"}, "geometry": {"type": "Point", "coordinates": [-0.859128963466, 45.0106483018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a17939732ba91772ea059efde37b9449ab34add0", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33112"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bad7ddbab84f4f16949c11854164f17dcbae799", "fields": {"nom_de_la_commune": "CAZAUGITAT", "libell_d_acheminement": "CAZAUGITAT", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33117"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0884bb5d1ec24608dc764e86fb5fbf60e586c98", "fields": {"nom_de_la_commune": "CENON", "libell_d_acheminement": "CENON", "code_postal": "33150", "coordonnees_gps": [44.8547270837, -0.521285030715], "code_commune_insee": "33119"}, "geometry": {"type": "Point", "coordinates": [-0.521285030715, 44.8547270837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56d2fa857cd5fa74270acd033109d874c1f5e733", "fields": {"nom_de_la_commune": "CESSAC", "libell_d_acheminement": "CESSAC", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33121"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7145ab72e1a5427b79a58eacf09cade46a0b8830", "fields": {"nom_de_la_commune": "CESTAS", "libell_d_acheminement": "CESTAS", "code_postal": "33610", "coordonnees_gps": [44.7278908774, -0.719193509806], "code_commune_insee": "33122"}, "geometry": {"type": "Point", "coordinates": [-0.719193509806, 44.7278908774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a1178383a5b85bbdef9652605548b0d7df90834", "fields": {"nom_de_la_commune": "CIVRAC DE BLAYE", "libell_d_acheminement": "CIVRAC DE BLAYE", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33126"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f68d3cfc3f667dbcb966fd5d012c710697339ab", "fields": {"nom_de_la_commune": "CLEYRAC", "libell_d_acheminement": "CLEYRAC", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33129"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "235495d2b92fd2fb009264583495914afad868f6", "fields": {"nom_de_la_commune": "COURPIAC", "libell_d_acheminement": "COURPIAC", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33135"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc160aa03bb7094e4cc8ac628fc7b15737e57645", "fields": {"nom_de_la_commune": "CUDOS", "libell_d_acheminement": "CUDOS", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33144"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5811231578d1b36dd6789282cee14d3a544d9784", "fields": {"nom_de_la_commune": "DAIGNAC", "libell_d_acheminement": "DAIGNAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33147"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06716f5ff497bd1cad90418f32aee67d0d69d37a", "fields": {"nom_de_la_commune": "ESCOUSSANS", "libell_d_acheminement": "ESCOUSSANS", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33156"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253d32341985f16ad57ea950165f44a7caa1c99e", "fields": {"nom_de_la_commune": "EYRANS", "libell_d_acheminement": "EYRANS", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33161"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b650703c5b1bfc6e19d99d24e13a6de395dc6bbc", "fields": {"nom_de_la_commune": "FOSSES ET BALEYSSAC", "libell_d_acheminement": "FOSSES ET BALEYSSAC", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33171"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c233a310ee1d34cfc9aeb5b3e07a581fedf4237b", "fields": {"nom_de_la_commune": "GARDEGAN ET TOURTIRAC", "libell_d_acheminement": "GARDEGAN ET TOURTIRAC", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33181"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a725f43551debd7c79779f4c932c5da26967805", "fields": {"nom_de_la_commune": "GAURIAC", "libell_d_acheminement": "GAURIAC", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33182"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "199cd2a4ff10f1da5a704d4cc20d646969b6f7f7", "fields": {"nom_de_la_commune": "GENERAC", "libell_d_acheminement": "GENERAC", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33184"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2347cc6dffa21d520948cd7a23e100c957bf6b2", "fields": {"nom_de_la_commune": "GISCOS", "libell_d_acheminement": "GISCOS", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33188"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d1ddbc31378497a46f812e4e2d14ec5ce3d900d", "fields": {"nom_de_la_commune": "GORNAC", "libell_d_acheminement": "GORNAC", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33189"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed66d0ab25e7c0cd013e2cf0ee0ca784be0a8d74", "fields": {"nom_de_la_commune": "GRADIGNAN", "libell_d_acheminement": "GRADIGNAN", "code_postal": "33170", "coordonnees_gps": [44.770757337, -0.616500801555], "code_commune_insee": "33192"}, "geometry": {"type": "Point", "coordinates": [-0.616500801555, 44.770757337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66996b504be782b996fb7e34a04993eb8c9d896d", "fields": {"nom_de_la_commune": "GUILLOS", "libell_d_acheminement": "GUILLOS", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33197"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb17ee031de0fb8b5f0c7e776eec514d226fdb4", "fields": {"nom_de_la_commune": "LABESCAU", "libell_d_acheminement": "LABESCAU", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33212"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7f48d3cfc63d560c563c78efca09ce67440ee86", "fields": {"nom_de_la_commune": "LADAUX", "libell_d_acheminement": "LADAUX", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33215"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7f455fec3ce02e957abafa044b4981d415fd10", "fields": {"nom_de_la_commune": "AUBIGNY AUX KAISNES", "libell_d_acheminement": "AUBIGNY AUX KAISNES", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02032"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14214fa4afcdc1b635e78d2556b8e4661cb82a8b", "fields": {"nom_de_la_commune": "AUBENCHEUL AUX BOIS", "libell_d_acheminement": "AUBENCHEUL AUX BOIS", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02030"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "408b5bc51665630cc9015a9f47aa23b305c3abdc", "fields": {"nom_de_la_commune": "ARCHON", "libell_d_acheminement": "ARCHON", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02021"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52baf56f20431c4724fe70d4394053151a8fcd8e", "fields": {"nom_de_la_commune": "AUGY", "libell_d_acheminement": "AUGY", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02036"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1147aa913d906b13537199519edaa193d7295653", "fields": {"code_postal": "01800", "code_commune_insee": "01450", "libell_d_acheminement": "VILLIEU LOYES MOLLON", "ligne_5": "MOLLON", "nom_de_la_commune": "VILLIEU LOYES MOLLON", "coordonnees_gps": [45.8984701804, 5.16340257624]}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c7e1e38a6e16270aca7e7e32a7628400486aaf", "fields": {"nom_de_la_commune": "VIRIEU LE GRAND", "libell_d_acheminement": "VIRIEU LE GRAND", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01452"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "126e0e1c7cf86a42e0030649e6e4c160a18c2e6a", "fields": {"nom_de_la_commune": "VILLEREVERSURE", "libell_d_acheminement": "VILLEREVERSURE", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01447"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a7cf5d8e6aa265c9bc57669e16de5180e00dd5", "fields": {"nom_de_la_commune": "AMIGNY ROUY", "libell_d_acheminement": "AMIGNY ROUY", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02014"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee8047874e3607f8679557a52928e021904bcf5b", "fields": {"nom_de_la_commune": "VILLENEUVE", "libell_d_acheminement": "VILLENEUVE", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01446"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc3eb31ba9083cb91581b9f9fcb8bdb9099b3763", "fields": {"nom_de_la_commune": "VESCOURS", "libell_d_acheminement": "VESCOURS", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01437"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a365fbf35650be4d2fa4a6b36b1ab8b0d4ee0c83", "fields": {"nom_de_la_commune": "VESANCY", "libell_d_acheminement": "VESANCY", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01436"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3289845b3c639d1f246ac9d2c855d4d7b0f8c056", "fields": {"nom_de_la_commune": "VONNAS", "libell_d_acheminement": "VONNAS", "code_postal": "01540", "coordonnees_gps": [46.2212986861, 4.98198011208], "code_commune_insee": "01457"}, "geometry": {"type": "Point", "coordinates": [4.98198011208, 46.2212986861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "107bfe3a7d4c7a797814062824ed10cb3ab76f72", "fields": {"nom_de_la_commune": "VIEU", "libell_d_acheminement": "VIEU", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01442"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdf2366088abe455ff5374fd50115a5669560c49", "fields": {"nom_de_la_commune": "ACY", "libell_d_acheminement": "ACY", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02003"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86918f1f9eb35f26d0d8a90e7754dd098334b4f2", "fields": {"code_postal": "01370", "code_commune_insee": "01426", "libell_d_acheminement": "VAL REVERMONT", "ligne_5": "PRESSIAT", "nom_de_la_commune": "VAL REVERMONT", "coordonnees_gps": [46.2853749129, 5.32614321781]}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fddc39a11467a677b2d701886b6d450dd32bd618", "fields": {"code_postal": "01260", "code_commune_insee": "01414", "libell_d_acheminement": "SUTRIEU", "ligne_5": "CHARANCIN", "nom_de_la_commune": "SUTRIEU", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "829896cbb9a44e055a4ef3b674806c966ef81d35", "fields": {"nom_de_la_commune": "VAUX EN BUGEY", "libell_d_acheminement": "VAUX EN BUGEY", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01431"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56648a0d22c98f397d7cb290da5c30671a8f9cc7", "fields": {"nom_de_la_commune": "LA TRANCLIERE", "libell_d_acheminement": "LA TRANCLIERE", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01425"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18446756fffd775f27da01d42be5832651212b14", "fields": {"nom_de_la_commune": "VERSAILLEUX", "libell_d_acheminement": "VERSAILLEUX", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01434"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b57f78251029929ce9d429381ca3ae7b04a0198e", "fields": {"nom_de_la_commune": "TALISSIEU", "libell_d_acheminement": "TALISSIEU", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01415"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b766fbab1cad7b7bd2458ab5586ab854947e8e5c", "fields": {"nom_de_la_commune": "TOUSSIEUX", "libell_d_acheminement": "TOUSSIEUX", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01423"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bfacef941a37ba7db1d39d3f9848e1702b4796a", "fields": {"nom_de_la_commune": "TREVOUX", "libell_d_acheminement": "TREVOUX", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01427"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ffc514deece5654fb832536720bc6a749424ae3", "fields": {"nom_de_la_commune": "VALEINS", "libell_d_acheminement": "VALEINS", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01428"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82d546326069df8602babdc581f81d3a7375caf", "fields": {"nom_de_la_commune": "THOIRY", "libell_d_acheminement": "THOIRY", "code_postal": "01710", "coordonnees_gps": [46.243919719, 5.96461682999], "code_commune_insee": "01419"}, "geometry": {"type": "Point", "coordinates": [5.96461682999, 46.243919719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c79eab25c7be69f533116e3c76da4ebe9fc004bf", "fields": {"nom_de_la_commune": "ST ETIENNE SUR REYSSOUZE", "libell_d_acheminement": "ST ETIENNE SUR REYSSOUZE", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01352"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9927902a6ba16849dd48c65bf67b7f42858e7d1", "fields": {"nom_de_la_commune": "ST ANDRE LE BOUCHOUX", "libell_d_acheminement": "ST ANDRE LE BOUCHOUX", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01335"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8abb49a5b8711bc62d691a394d7a337947c590b", "fields": {"nom_de_la_commune": "ST MARTIN LE CHATEL", "libell_d_acheminement": "ST MARTIN LE CHATEL", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01375"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e092f25d0c896d6dce162f3eeee475bf7c4a31da", "fields": {"nom_de_la_commune": "ST MARTIN DU MONT", "libell_d_acheminement": "ST MARTIN DU MONT", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01374"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df667fec817f10e4408d494f56a70870409fa11", "fields": {"nom_de_la_commune": "ST JEAN LE VIEUX", "libell_d_acheminement": "ST JEAN LE VIEUX", "code_postal": "01640", "coordonnees_gps": [46.0337779297, 5.42151732468], "code_commune_insee": "01363"}, "geometry": {"type": "Point", "coordinates": [5.42151732468, 46.0337779297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a23dd047948174644a3bdb0218449429e49f1de9", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01387"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5151ef6beaf5a3603f8671ac2889c9983e75aa9", "fields": {"nom_de_la_commune": "ROSSILLON", "libell_d_acheminement": "ROSSILLON", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01329"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1cc2d841b1c617d8e69547fc54fd965aabb0f0f", "fields": {"nom_de_la_commune": "SAMOGNAT", "libell_d_acheminement": "SAMOGNAT", "code_postal": "01580", "coordonnees_gps": [46.2402104429, 5.54908625912], "code_commune_insee": "01392"}, "geometry": {"type": "Point", "coordinates": [5.54908625912, 46.2402104429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7f2dbe48d4a808bb72cc1973a30ea8a50ac4a3", "fields": {"nom_de_la_commune": "SANDRANS", "libell_d_acheminement": "SANDRANS", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01393"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f33292f9a011ab79afdd8e1edd531105eb6208f", "fields": {"nom_de_la_commune": "SALAVRE", "libell_d_acheminement": "SALAVRE", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01391"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd7b3ab644c9672b9790337ec3fecd3ac35c427e", "fields": {"code_postal": "01130", "code_commune_insee": "01204", "libell_d_acheminement": "LE POIZAT LALLEYRIAT", "ligne_5": "LE POIZAT", "nom_de_la_commune": "LE POIZAT LALLEYRIAT", "coordonnees_gps": [46.1948352393, 5.7148151411]}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bba9e3b3f3a45ad060df70f681c068c7cb71a6b", "fields": {"code_postal": "01700", "code_commune_insee": "01249", "libell_d_acheminement": "MIRIBEL", "ligne_5": "LE MAS RILLIER", "nom_de_la_commune": "MIRIBEL", "coordonnees_gps": [45.8388521429, 4.95806179291]}, "geometry": {"type": "Point", "coordinates": [4.95806179291, 45.8388521429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d16b209a0edc580eb8ca18a50459df73fab96d0f", "fields": {"nom_de_la_commune": "LE POIZAT LALLEYRIAT", "libell_d_acheminement": "LE POIZAT LALLEYRIAT", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01204"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aacb05fdd8d6d3174142da4542212137191bb4c", "fields": {"nom_de_la_commune": "MASSIGNIEU DE RIVES", "libell_d_acheminement": "MASSIGNIEU DE RIVES", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01239"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311ec43e6eb69b9392735f8cbac10e77e4a33c53", "fields": {"nom_de_la_commune": "LOMPNIEU", "libell_d_acheminement": "LOMPNIEU", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01221"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f3c7ebfef15d8247f00e6dfd348ba1d80a17895", "fields": {"nom_de_la_commune": "MASSIEUX", "libell_d_acheminement": "MASSIEUX", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01238"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc5596eddc34f00de2f399e751bf5a452d0f98f", "fields": {"nom_de_la_commune": "MARCHAMP", "libell_d_acheminement": "MARCHAMP", "code_postal": "01680", "coordonnees_gps": [45.752622921, 5.55446422211], "code_commune_insee": "01233"}, "geometry": {"type": "Point", "coordinates": [5.55446422211, 45.752622921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "301052f8dabfd10df3bae8d086a6609bf41dc7b2", "fields": {"nom_de_la_commune": "LEYMENT", "libell_d_acheminement": "LEYMENT", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01213"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acc16cb248b29b49500fa2d583313a07a8316655", "fields": {"nom_de_la_commune": "MANZIAT", "libell_d_acheminement": "MANZIAT", "code_postal": "01570", "coordonnees_gps": [46.3545794503, 4.88868114295], "code_commune_insee": "01231"}, "geometry": {"type": "Point", "coordinates": [4.88868114295, 46.3545794503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6fa171be1d430a68118252ab0e9869b71ae608", "fields": {"nom_de_la_commune": "LOMPNAS", "libell_d_acheminement": "LOMPNAS", "code_postal": "01680", "coordonnees_gps": [45.752622921, 5.55446422211], "code_commune_insee": "01219"}, "geometry": {"type": "Point", "coordinates": [5.55446422211, 45.752622921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce44e00299883bbd5b80f633fda425e766bab75c", "fields": {"nom_de_la_commune": "PEYZIEUX SUR SAONE", "libell_d_acheminement": "PEYZIEUX SUR SAONE", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01295"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f02cded5bb7f7bd43b561a484cc0dcb025df3205", "fields": {"nom_de_la_commune": "PONT DE VEYLE", "libell_d_acheminement": "PONT DE VEYLE", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01306"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55eca30fd54d9243106ae48d40a875ae58afa3ce", "fields": {"nom_de_la_commune": "PIRAJOUX", "libell_d_acheminement": "PIRAJOUX", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01296"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386f89b6ca3a4574c464628054a265d1a9368557", "fields": {"nom_de_la_commune": "REVONNAS", "libell_d_acheminement": "REVONNAS", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01321"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c80c6a5584b4da2cd890fbedb8cb3d8d854b2ef2", "fields": {"nom_de_la_commune": "POLLIAT", "libell_d_acheminement": "POLLIAT", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01301"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c1e315abaed4a1507a7c2d32348733c696788e0", "fields": {"nom_de_la_commune": "POLLIEU", "libell_d_acheminement": "POLLIEU", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01302"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33d9038bc40923e3fda091cec8136eda4d37240", "fields": {"nom_de_la_commune": "PUGIEU", "libell_d_acheminement": "PUGIEU", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01316"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4422eb96ceb5e9923e4716d84d06e01e45c57ec", "fields": {"nom_de_la_commune": "ROMANS", "libell_d_acheminement": "ROMANS", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01328"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dbe3f87c9b063fe867acd0d7d189b4c49eb3482", "fields": {"nom_de_la_commune": "PLAGNE", "libell_d_acheminement": "PLAGNE", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01298"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0eadc27227ec4de5011e7f8d8098a66f6e34b13", "fields": {"nom_de_la_commune": "PORT", "libell_d_acheminement": "PORT", "code_postal": "01460", "coordonnees_gps": [46.1732029522, 5.56455683284], "code_commune_insee": "01307"}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c3d43ef5d0a613113fd3f48b9462c46275aa4a4", "fields": {"nom_de_la_commune": "BARZY SUR MARNE", "libell_d_acheminement": "BARZY SUR MARNE", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02051"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10eb9379751cdeaa317e6bc5999c3807add3a68", "fields": {"nom_de_la_commune": "BARENTON BUGNY", "libell_d_acheminement": "BARENTON BUGNY", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02046"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e6aeb48c5936b9e57cfcee7e81d13ea0899976", "fields": {"nom_de_la_commune": "LES AUTELS", "libell_d_acheminement": "LES AUTELS", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02038"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ded77358eeaaa1ce34c7c1aa3569ad714337d91", "fields": {"nom_de_la_commune": "BAGNEUX", "libell_d_acheminement": "BAGNEUX", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02043"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8c906b9ecba558e5deb169b6f7f0070e1a43a7", "fields": {"nom_de_la_commune": "CUIRY LES CHAUDARDES", "libell_d_acheminement": "CUIRY LES CHAUDARDES", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02250"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58e9aa9a587e9e7a817a458ff41355a667b8455", "fields": {"nom_de_la_commune": "ETAVES ET BOCQUIAUX", "libell_d_acheminement": "ETAVES ET BOCQUIAUX", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02293"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c22d5958d37b6e7aa6d66b61acbd06b6efb673e1", "fields": {"nom_de_la_commune": "LA FERTE CHEVRESIS", "libell_d_acheminement": "LA FERTE CHEVRESIS", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02306"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "634320efbbeba7aa6ed15d6e4de317b7a105427a", "fields": {"nom_de_la_commune": "ETREAUPONT", "libell_d_acheminement": "ETREAUPONT", "code_postal": "02580", "coordonnees_gps": [49.9024615408, 3.89676959472], "code_commune_insee": "02295"}, "geometry": {"type": "Point", "coordinates": [3.89676959472, 49.9024615408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cff590292068f27c644d0481f1f40a68163be622", "fields": {"nom_de_la_commune": "DORENGT", "libell_d_acheminement": "DORENGT", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02269"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcab3292cb542f0e9b94889f90f7c4b514526bb4", "fields": {"nom_de_la_commune": "CROUY", "libell_d_acheminement": "CROUY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02243"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "077b9b6614826ef8a51d6833e76634d92eb83081", "fields": {"nom_de_la_commune": "CUTRY", "libell_d_acheminement": "CUTRY", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02254"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a9935bf562ea76ca4dbd82aa9db5519f8bb1eea", "fields": {"nom_de_la_commune": "EPPES", "libell_d_acheminement": "EPPES", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02282"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a531d50bd3bcd624d33006f41065b1fb784a6c", "fields": {"nom_de_la_commune": "ERLON", "libell_d_acheminement": "ERLON", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02283"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c577102298543dc8dac4b6bbb279851f36b874", "fields": {"nom_de_la_commune": "HAUTEVILLE", "libell_d_acheminement": "HAUTEVILLE", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02376"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c13f19b7ed11ceb47f522609e565c64d8a12d71", "fields": {"nom_de_la_commune": "GRISOLLES", "libell_d_acheminement": "GRISOLLES", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02356"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0ca1dfa7eb7ec69b58c68f950b8863bd4e5a55f", "fields": {"nom_de_la_commune": "HARCIGNY", "libell_d_acheminement": "HARCIGNY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02369"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2febaf7b8129268a11ff993c62d587213fbe8f85", "fields": {"nom_de_la_commune": "HARAMONT", "libell_d_acheminement": "HARAMONT", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02368"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86000f1736f7a2cc872e4fe8c72e1c9ec89a50d8", "fields": {"nom_de_la_commune": "GERMAINE", "libell_d_acheminement": "GERMAINE", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02343"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7778275f20e2894527d1995e18a3a93758c349a", "fields": {"nom_de_la_commune": "GRONARD", "libell_d_acheminement": "GRONARD", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02357"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f570e4b604faacd4110939a12e750ef4a86c558", "fields": {"nom_de_la_commune": "HARLY", "libell_d_acheminement": "HARLY", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02371"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc227248e2ea50a11836eff9875d6c29b981be2", "fields": {"nom_de_la_commune": "GERCY", "libell_d_acheminement": "GERCY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02341"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b3bf7b68cbbfd1e5cdc94b486070e53dac7ebb0", "fields": {"nom_de_la_commune": "GOUY", "libell_d_acheminement": "GOUY", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02352"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de61a4a4517b23d94d387af408da2349e1e86583", "fields": {"nom_de_la_commune": "LA NEUVILLE LES DORENGT", "libell_d_acheminement": "LA NEUVILLE LES DORENGT", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02548"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "614664848f4c3e9bdb2d2d2fc507e48c2fa674ad", "fields": {"nom_de_la_commune": "NEUVILLE SUR AILETTE", "libell_d_acheminement": "NEUVILLE SUR AILETTE", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02550"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed9a2d4e5c147326199008278cdfd4604871ac11", "fields": {"nom_de_la_commune": "NAMPTEUIL SOUS MURET", "libell_d_acheminement": "NAMPTEUIL SOUS MURET", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02536"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ac1273baed18b91c7e2d47bd0242bafe773372", "fields": {"nom_de_la_commune": "NESLES LA MONTAGNE", "libell_d_acheminement": "NESLES LA MONTAGNE", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02540"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776196b6ad8dc1e5184addc45c3b699273b6d473", "fields": {"nom_de_la_commune": "MONCEAU LES LEUPS", "libell_d_acheminement": "MONCEAU LES LEUPS", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02492"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78254e8f851322ef521ed3a0bc045174c16196cd", "fields": {"nom_de_la_commune": "NEUVE MAISON", "libell_d_acheminement": "NEUVE MAISON", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02544"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d37bc8efe7ed666b4099c6267afc38152c16be4", "fields": {"nom_de_la_commune": "MOULINS", "libell_d_acheminement": "MOULINS", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02530"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c654af96dd673b87e1a9d343f90f58d8a04f92", "fields": {"nom_de_la_commune": "MOLAIN", "libell_d_acheminement": "MOLAIN", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02488"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3f5bf36f4f17e887e222ac1915d77b5bb751ca5", "fields": {"code_postal": "04000", "code_commune_insee": "04070", "libell_d_acheminement": "DIGNE LES BAINS", "ligne_5": "LES DOURBES", "nom_de_la_commune": "DIGNE LES BAINS", "coordonnees_gps": [44.1282802436, 6.25179168531]}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bfc890703230039e5ea042e25eedab78b32187e", "fields": {"code_postal": "04000", "code_commune_insee": "04097", "libell_d_acheminement": "LA JAVIE", "ligne_5": "ESCLANGON", "nom_de_la_commune": "LA JAVIE", "coordonnees_gps": [44.1282802436, 6.25179168531]}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edabdf13c19f43aa6b86bbd8816b46bf2f6df5a0", "fields": {"nom_de_la_commune": "NOYERS SUR JABRON", "libell_d_acheminement": "NOYERS SUR JABRON", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04139"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da7c491387620ad106bf901074c4bfa0e2ca17e", "fields": {"nom_de_la_commune": "LA MURE ARGENS", "libell_d_acheminement": "LA MURE ARGENS", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04136"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8619fffbd8bd2a28b13bce4ea4ceb7379eca9922", "fields": {"nom_de_la_commune": "JAUSIERS", "libell_d_acheminement": "JAUSIERS", "code_postal": "04850", "coordonnees_gps": [44.3877674828, 6.78607548219], "code_commune_insee": "04096"}, "geometry": {"type": "Point", "coordinates": [6.78607548219, 44.3877674828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e5e19d7e6cb333143933473c30e1d7e0760da03", "fields": {"nom_de_la_commune": "MONTFORT", "libell_d_acheminement": "MONTFORT", "code_postal": "04600", "coordonnees_gps": [44.0744156003, 5.97645847949], "code_commune_insee": "04127"}, "geometry": {"type": "Point", "coordinates": [5.97645847949, 44.0744156003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5265bf2052eee42c347909851eb57dd703e63c6e", "fields": {"nom_de_la_commune": "CLUMANC", "libell_d_acheminement": "CLUMANC", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04059"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da02c34df93979cd5bd31607ae44dd844048f159", "fields": {"nom_de_la_commune": "DAUPHIN", "libell_d_acheminement": "DAUPHIN", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04068"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf1c2244c93f493e2b42ad74f22b13676b457ca3", "fields": {"nom_de_la_commune": "ORAISON", "libell_d_acheminement": "ORAISON", "code_postal": "04700", "coordonnees_gps": [43.9432267959, 5.96852873761], "code_commune_insee": "04143"}, "geometry": {"type": "Point", "coordinates": [5.96852873761, 43.9432267959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dd4c8ad79f3047deb3a961ec7fb592539e2518a", "fields": {"code_postal": "02540", "code_commune_insee": "02458", "libell_d_acheminement": "DHUYS ET MORIN EN BRIE", "ligne_5": "LA CELLE SOUS MONTMIRAIL", "nom_de_la_commune": "DHUYS ET MORIN EN BRIE", "coordonnees_gps": [48.9128673746, 3.4403848461]}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f4e36d62904da47351be9d0e0f78a7c68aa61ab", "fields": {"code_postal": "02330", "code_commune_insee": "02458", "libell_d_acheminement": "DHUYS ET MORIN EN BRIE", "ligne_5": "ARTONGES", "nom_de_la_commune": "DHUYS ET MORIN EN BRIE", "coordonnees_gps": [48.9761149923, 3.54081832468]}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74477ac6117401b587287b2aebb00af1329c275b", "fields": {"nom_de_la_commune": "MESBRECOURT RICHECOURT", "libell_d_acheminement": "MESBRECOURT RICHECOURT", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02480"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce3e176a02a2b84554d7c37e27b7ed1186509f8", "fields": {"nom_de_la_commune": "MISSY SUR AISNE", "libell_d_acheminement": "MISSY SUR AISNE", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02487"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fec213b87f6978272f0e5ae0a3fa631cc8af914", "fields": {"nom_de_la_commune": "MEZY MOULINS", "libell_d_acheminement": "MEZY MOULINS", "code_postal": "02650", "coordonnees_gps": [49.0487416682, 3.50137456467], "code_commune_insee": "02484"}, "geometry": {"type": "Point", "coordinates": [3.50137456467, 49.0487416682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cd251549a505762a6fd3360e89b42849992499b", "fields": {"nom_de_la_commune": "MARTIGNY", "libell_d_acheminement": "MARTIGNY", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02470"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11e769facf60bcec5d426eb82d9994c14ee0b982", "fields": {"nom_de_la_commune": "LISLET", "libell_d_acheminement": "LISLET", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02433"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4936addad75774e77757fe0c1b0a713ca29a5ee", "fields": {"nom_de_la_commune": "LALEU", "libell_d_acheminement": "LALEU", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61215"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c547dd844b4f87b92b58c5353c23a00400391c55", "fields": {"nom_de_la_commune": "LANDIGOU", "libell_d_acheminement": "LANDIGOU", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61221"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81e98b72e344abe6e2ef5956245091c346594eea", "fields": {"nom_de_la_commune": "LIGNERES", "libell_d_acheminement": "LIGNERES", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61225"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d25c845e4be7848e1e1b2cfb60dc35a11ca78e1", "fields": {"nom_de_la_commune": "LIGNOU", "libell_d_acheminement": "LIGNOU", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61227"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef9dfb81d63bbed14c0d5bd5fd6d805256d5c5b4", "fields": {"nom_de_la_commune": "LONGNY LES VILLAGES", "libell_d_acheminement": "LONGNY LES VILLAGES", "code_postal": "61290", "coordonnees_gps": [48.5268185363, 0.799843312026], "code_commune_insee": "61230"}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2de1227cd1e9efceebe2064d73c70cf821430c1", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "NEUILLY SUR EURE", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "277c298856311316efb19698ccf91bebf6d7677b", "fields": {"nom_de_la_commune": "LONGUENOE", "libell_d_acheminement": "LONGUENOE", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61231"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28320d618d8003a5a2d629b4b285d8dac669c038", "fields": {"nom_de_la_commune": "LONLAY LE TESSON", "libell_d_acheminement": "LONLAY LE TESSON", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61233"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37ec677a17c6c2e65932293e09d5e116c3c06d1a", "fields": {"nom_de_la_commune": "LA MADELEINE BOUVET", "libell_d_acheminement": "LA MADELEINE BOUVET", "code_postal": "61110", "coordonnees_gps": [48.440685995, 0.83185325454], "code_commune_insee": "61241"}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e1f3b318a953258f68d95012da7aaeb00f4d4d", "fields": {"nom_de_la_commune": "MAHERU", "libell_d_acheminement": "MAHERU", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61244"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c2264203e2da0dade43cdec47ed035b64c6c91e", "fields": {"nom_de_la_commune": "MANTILLY", "libell_d_acheminement": "MANTILLY", "code_postal": "61350", "coordonnees_gps": [48.5245489295, -0.754028854445], "code_commune_insee": "61248"}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a4bc23e2c86e595b439d457bde04d9f28e259c", "fields": {"nom_de_la_commune": "MARDILLY", "libell_d_acheminement": "MARDILLY", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61252"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6044bea4de70d3b17eb1f6d2a4163c516d7fb791", "fields": {"nom_de_la_commune": "LE MENIL BERARD", "libell_d_acheminement": "LE MENIL BERARD", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61259"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "440c916cd9280f68a1bdde45f35323afb3548d51", "fields": {"nom_de_la_commune": "MENIL HERMEI", "libell_d_acheminement": "MENIL HERMEI", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61267"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6313c71c5fc3931bb029431d69ad35904164042b", "fields": {"nom_de_la_commune": "MENIL HUBERT SUR ORNE", "libell_d_acheminement": "MENIL HUBERT SUR ORNE", "code_postal": "61430", "coordonnees_gps": [48.8220175154, -0.472614628167], "code_commune_insee": "61269"}, "geometry": {"type": "Point", "coordinates": [-0.472614628167, 48.8220175154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94be80bc09251c1de06e07b5c5dd6b0efbf23ab5", "fields": {"nom_de_la_commune": "MERRI", "libell_d_acheminement": "MERRI", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61276"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13a61739d5552a79308b9fd3ff36793ea2a2239", "fields": {"nom_de_la_commune": "MESSEI", "libell_d_acheminement": "MESSEI", "code_postal": "61440", "coordonnees_gps": [48.7041117126, -0.523576215633], "code_commune_insee": "61278"}, "geometry": {"type": "Point", "coordinates": [-0.523576215633, 48.7041117126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ce360d513eff505a37784df31c2aac1d98123e", "fields": {"nom_de_la_commune": "MONCY", "libell_d_acheminement": "MONCY", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61281"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a6800c6c9ba7965ac230dcbb2fb71a198f24f3", "fields": {"nom_de_la_commune": "MONTREUIL LA CAMBE", "libell_d_acheminement": "MONTREUIL LA CAMBE", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61291"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96487d7106bc353b60d8ab03f01e9bf6c5a274ef", "fields": {"nom_de_la_commune": "MORTAGNE AU PERCHE", "libell_d_acheminement": "MORTAGNE AU PERCHE", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61293"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "837543b9f1a1ca74811df7904367e96167870c51", "fields": {"nom_de_la_commune": "LA MOTTE FOUQUET", "libell_d_acheminement": "LA MOTTE FOUQUET", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61295"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1097e18b185528ffa1daba63733ff168394fe00b", "fields": {"nom_de_la_commune": "NEAUPHE SOUS ESSAI", "libell_d_acheminement": "NEAUPHE SOUS ESSAI", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61301"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a14fd147ec49aaa5f24780e9f8d837ee4846d5a", "fields": {"nom_de_la_commune": "NECY", "libell_d_acheminement": "NECY", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61303"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1750b0172c2684a8e73f4321de23068a146071e7", "fields": {"code_postal": "61340", "code_commune_insee": "61309", "libell_d_acheminement": "PERCHE EN NOCE", "ligne_5": "DANCE", "nom_de_la_commune": "PERCHE EN NOCE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59072c118901f80bb44e88069c2f070843dadaaf", "fields": {"code_postal": "61340", "code_commune_insee": "61309", "libell_d_acheminement": "PERCHE EN NOCE", "ligne_5": "NOCE", "nom_de_la_commune": "PERCHE EN NOCE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b87dc446127971f9997c36c6898dfb8891ef7eb", "fields": {"code_postal": "61340", "code_commune_insee": "61309", "libell_d_acheminement": "PERCHE EN NOCE", "ligne_5": "ST JEAN DE LA FORET", "nom_de_la_commune": "PERCHE EN NOCE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fb6937baebd51824f7b53ee8a6d47761340e23d", "fields": {"nom_de_la_commune": "NONANT LE PIN", "libell_d_acheminement": "NONANT LE PIN", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61310"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796b94716ffd599e617b9c9ecc64b3282b754013", "fields": {"nom_de_la_commune": "OCCAGNES", "libell_d_acheminement": "OCCAGNES", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61314"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f418942ac3b1646e7ed9ba7e025d8b319cc7daa", "fields": {"nom_de_la_commune": "OMMOY", "libell_d_acheminement": "OMMOY", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61316"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6425e84d68cd55bf0c011e34ac28e04d670612", "fields": {"nom_de_la_commune": "ORIGNY LE BUTIN", "libell_d_acheminement": "ORIGNY LE BUTIN", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61318"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25450c1b8b28c8ade8ec2a68c393039d8e8df28f", "fields": {"nom_de_la_commune": "ORIGNY LE ROUX", "libell_d_acheminement": "ORIGNY LE ROUX", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61319"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b404fd5aba54ff83c69b0429e1a3cbafb36e6c", "fields": {"nom_de_la_commune": "PASSAIS VILLAGES", "libell_d_acheminement": "PASSAIS VILLAGES", "code_postal": "61350", "coordonnees_gps": [48.5245489295, -0.754028854445], "code_commune_insee": "61324"}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8360441be95298f0a23cee3a57bd195cdfce6a60", "fields": {"code_postal": "61350", "code_commune_insee": "61324", "libell_d_acheminement": "PASSAIS VILLAGES", "ligne_5": "L EPINAY LE COMTE", "nom_de_la_commune": "PASSAIS VILLAGES", "coordonnees_gps": [48.5245489295, -0.754028854445]}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80c1723185b41b79dc62ca5f2d3409be313c413", "fields": {"code_postal": "61350", "code_commune_insee": "61324", "libell_d_acheminement": "PASSAIS VILLAGES", "ligne_5": "ST SIMEON", "nom_de_la_commune": "PASSAIS VILLAGES", "coordonnees_gps": [48.5245489295, -0.754028854445]}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9120183c5d85218087eac68a9f904c8f70a7d7", "fields": {"nom_de_la_commune": "PERROU", "libell_d_acheminement": "PERROU", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61326"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3081817eaa85a71ce86494e03be7091f6f805331", "fields": {"nom_de_la_commune": "PERVENCHERES", "libell_d_acheminement": "PERVENCHERES", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61327"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75b7fe7e96e3120ec004ff15ba83bb7c9368cbcf", "fields": {"nom_de_la_commune": "LE PLANTIS", "libell_d_acheminement": "LE PLANTIS", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61331"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c92456923efa7569e910ac98a8d4b40344b08938", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "LA FORET AUVRAY", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "128af1296625ac3f910713f3cc869d11edf18c6e", "fields": {"nom_de_la_commune": "REMALARD EN PERCHE", "libell_d_acheminement": "REMALARD EN PERCHE", "code_postal": "61110", "coordonnees_gps": [48.440685995, 0.83185325454], "code_commune_insee": "61345"}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db4cf54b668c9ae411716e4955d0922b17d879e7", "fields": {"code_postal": "61110", "code_commune_insee": "61345", "libell_d_acheminement": "REMALARD EN PERCHE", "ligne_5": "BELLOU SUR HUISNE", "nom_de_la_commune": "REMALARD EN PERCHE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793e449e657fb5401ce9b1f4a1913c3879ad9c98", "fields": {"nom_de_la_commune": "LE RENOUARD", "libell_d_acheminement": "LE RENOUARD", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61346"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42863b2ef80267b61b4825459458ca9b07b7ae07", "fields": {"nom_de_la_commune": "ST ANDRE DE MESSEI", "libell_d_acheminement": "ST ANDRE DE MESSEI", "code_postal": "61440", "coordonnees_gps": [48.7041117126, -0.523576215633], "code_commune_insee": "61362"}, "geometry": {"type": "Point", "coordinates": [-0.523576215633, 48.7041117126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b609c80d1ba172bba2dcd0026d2c594150c27e", "fields": {"nom_de_la_commune": "ST AUBIN D APPENAI", "libell_d_acheminement": "ST AUBIN D APPENAI", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61365"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4924a70b6fb103a6dd9116dc83e3fcab83bfe57", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DE CHAULIEU", "libell_d_acheminement": "ST CHRISTOPHE DE CHAULIEU", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61374"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06d5a72af2547ff9b9b96f1a98c80473d61bbd3", "fields": {"nom_de_la_commune": "ST CLAIR DE HALOUZE", "libell_d_acheminement": "ST CLAIR DE HALOUZE", "code_postal": "61490", "coordonnees_gps": [48.6891046892, -0.625914458568], "code_commune_insee": "61376"}, "geometry": {"type": "Point", "coordinates": [-0.625914458568, 48.6891046892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa79a799ead460954f5b1ffa95726d3c32af20d", "fields": {"nom_de_la_commune": "ST ELLIER LES BOIS", "libell_d_acheminement": "ST ELLIER LES BOIS", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61384"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "383d30a8bfe56b0ebe04b75c8d616fea7493d921", "fields": {"nom_de_la_commune": "STE GAUBURGE STE COLOMBE", "libell_d_acheminement": "STE GAUBURGE STE COLOMBE", "code_postal": "61370", "coordonnees_gps": [48.7195586978, 0.414844883776], "code_commune_insee": "61389"}, "geometry": {"type": "Point", "coordinates": [0.414844883776, 48.7195586978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae899a404d4390b6f9d61c0d41870ca8ce8f8602", "fields": {"nom_de_la_commune": "ST GEORGES D ANNEBECQ", "libell_d_acheminement": "ST GEORGES D ANNEBECQ", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61390"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e9bae1c71c9c135e7ca32481e950fb7d528cca", "fields": {"nom_de_la_commune": "ST GERMAIN D AUNAY", "libell_d_acheminement": "ST GERMAIN D AUNAY", "code_postal": "61470", "coordonnees_gps": [48.9094876471, 0.356722862934], "code_commune_insee": "61392"}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208362f846e54445769bd6cff6ad40d557846cd1", "fields": {"nom_de_la_commune": "ST GERMAIN DE MARTIGNY", "libell_d_acheminement": "ST GERMAIN DE MARTIGNY", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61396"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd333608c1a1899c92895ad624cbea125299c631", "fields": {"nom_de_la_commune": "ST HILAIRE SUR ERRE", "libell_d_acheminement": "ST HILAIRE SUR ERRE", "code_postal": "61340", "coordonnees_gps": [48.372155968, 0.719847889248], "code_commune_insee": "61405"}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86bbc37175718efd1b5349c4a75657a5441fe9c9", "fields": {"nom_de_la_commune": "ST HILAIRE SUR RISLE", "libell_d_acheminement": "ST HILAIRE SUR RISLE", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61406"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca5650d9506b4cd55a48eeee0728a8184a62fd5", "fields": {"nom_de_la_commune": "ST LEGER SUR SARTHE", "libell_d_acheminement": "ST LEGER SUR SARTHE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61415"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "461d11a6663b647a2bd6d0589597216ff1729f31", "fields": {"nom_de_la_commune": "ST LEONARD DES PARCS", "libell_d_acheminement": "ST LEONARD DES PARCS", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61416"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b745205dbddde8428fbdea7a4ace6e558c486e5a", "fields": {"nom_de_la_commune": "STE MARIE LA ROBERT", "libell_d_acheminement": "STE MARIE LA ROBERT", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61420"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7675ae680457b5fdbbddc0e443100aeb67d536be", "fields": {"nom_de_la_commune": "ST MICHEL TUBOEUF", "libell_d_acheminement": "ST MICHEL TUBOEUF", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61432"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3b6b755df98bfec51be0c491a7b6479f78f9195", "fields": {"nom_de_la_commune": "ST PIERRE LA RIVIERE", "libell_d_acheminement": "ST PIERRE LA RIVIERE", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61449"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8279df5e59fbca6948cc4d3c43f6539538b8f13f", "fields": {"code_postal": "61260", "code_commune_insee": "61484", "libell_d_acheminement": "VAL AU PERCHE", "ligne_5": "LE THEIL", "nom_de_la_commune": "VAL AU PERCHE", "coordonnees_gps": [48.2308054852, 0.743916298767]}, "geometry": {"type": "Point", "coordinates": [0.743916298767, 48.2308054852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6866722c79881d3ead23ef34e3d153f954e90391", "fields": {"code_postal": "61340", "code_commune_insee": "61484", "libell_d_acheminement": "VAL AU PERCHE", "ligne_5": "ST AGNAN SUR ERRE", "nom_de_la_commune": "VAL AU PERCHE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631a7a0cbbd240493cd64f7b8153c2f277cbd7c8", "fields": {"nom_de_la_commune": "TOUQUETTES", "libell_d_acheminement": "TOUQUETTES", "code_postal": "61550", "coordonnees_gps": [48.7987924766, 0.488599977728], "code_commune_insee": "61488"}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca923b4a762c67bd5909b726952065aeaddd5ba0", "fields": {"nom_de_la_commune": "TOUROUVRE AU PERCHE", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61491"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71bd5c20f0e9e1d623e0624a733f53441ce4e7c1", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "BRESOLETTES", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "472554e4d787bfb2f6cab0d0ed76a41a7d97e55a", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "BUBERTRE", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db91301479fa1e8309e8f426b5a957da75c9fb09", "fields": {"nom_de_la_commune": "UROU ET CRENNES", "libell_d_acheminement": "UROU ET CRENNES", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61496"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a492a4c25622d1010bb2088abf975425b60dbe75", "fields": {"nom_de_la_commune": "VIEUX PONT", "libell_d_acheminement": "VIEUX PONT", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61503"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d649d8e6d4a26fea5574d911768404d34cdec7", "fields": {"nom_de_la_commune": "VILLEDIEU LES BAILLEUL", "libell_d_acheminement": "VILLEDIEU LES BAILLEUL", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61505"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81155755112614546093bc506cb4ebb42bd63887", "fields": {"nom_de_la_commune": "ABLAIN ST NAZAIRE", "libell_d_acheminement": "ABLAIN ST NAZAIRE", "code_postal": "62153", "coordonnees_gps": [50.3936626748, 2.71627583927], "code_commune_insee": "62001"}, "geometry": {"type": "Point", "coordinates": [2.71627583927, 50.3936626748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0e3b29ca682c02b2644f79e0084dc38365632e", "fields": {"nom_de_la_commune": "ABLAINZEVELLE", "libell_d_acheminement": "ABLAINZEVELLE", "code_postal": "62116", "coordonnees_gps": [50.1489493894, 2.70436913467], "code_commune_insee": "62002"}, "geometry": {"type": "Point", "coordinates": [2.70436913467, 50.1489493894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e797175046a42db3c8d95eb0b78d774f76c3ee", "fields": {"nom_de_la_commune": "ACHEVILLE", "libell_d_acheminement": "ACHEVILLE", "code_postal": "62320", "coordonnees_gps": [50.389396968, 2.90853721163], "code_commune_insee": "62003"}, "geometry": {"type": "Point", "coordinates": [2.90853721163, 50.389396968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb8fe6ff0480ca95ede6390296a84d9993f1e8fa", "fields": {"nom_de_la_commune": "ACHICOURT", "libell_d_acheminement": "ACHICOURT", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62004"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5898d5ef24f8086760dc474de3875ec103ee0683", "fields": {"nom_de_la_commune": "AIX EN ERGNY", "libell_d_acheminement": "AIX EN ERGNY", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62017"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e8c25f2157d4d609aac4f1ed152d1bbd81595c4", "fields": {"nom_de_la_commune": "ALETTE", "libell_d_acheminement": "ALETTE", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62021"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b0db8b16fcf611b294a4bb772e037086c94c1dd", "fields": {"nom_de_la_commune": "AMBRICOURT", "libell_d_acheminement": "AMBRICOURT", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62026"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609e44d13f415e06fa073e5da719012c24c62837", "fields": {"nom_de_la_commune": "AMETTES", "libell_d_acheminement": "AMETTES", "code_postal": "62260", "coordonnees_gps": [50.5172886108, 2.43294785801], "code_commune_insee": "62029"}, "geometry": {"type": "Point", "coordinates": [2.43294785801, 50.5172886108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03890915577b78778bc955ea0feb86f4deecda47", "fields": {"nom_de_la_commune": "AMPLIER", "libell_d_acheminement": "AMPLIER", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62030"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0543d21c6d396a5fbe9b9013b02b24890d27d17", "fields": {"nom_de_la_commune": "ANZIN ST AUBIN", "libell_d_acheminement": "ANZIN ST AUBIN", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62037"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e70002447fc3f61fe1a6512fd5ee3e3ed84faf78", "fields": {"nom_de_la_commune": "ARQUES", "libell_d_acheminement": "ARQUES", "code_postal": "62510", "coordonnees_gps": [50.7408395038, 2.31945979843], "code_commune_insee": "62040"}, "geometry": {"type": "Point", "coordinates": [2.31945979843, 50.7408395038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2daeaef08b50dc81e1a636e79de95a919904ef41", "fields": {"nom_de_la_commune": "ATHIES", "libell_d_acheminement": "ATHIES", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62042"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "401061d92065a70cad176c38d4225a2acf0fb1cb", "fields": {"nom_de_la_commune": "AUBIGNY EN ARTOIS", "libell_d_acheminement": "AUBIGNY EN ARTOIS", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62045"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ab72202854e3ebd4a9fb2205fe0adbe32aca0a", "fields": {"nom_de_la_commune": "AUBIN ST VAAST", "libell_d_acheminement": "AUBIN ST VAAST", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62046"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1166cb83a5d90f1554018150c32324be19fa427d", "fields": {"nom_de_la_commune": "AVESNES LE COMTE", "libell_d_acheminement": "AVESNES LE COMTE", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62063"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620d3cc798649709744799d20e71bbfa0b4c0ce0", "fields": {"nom_de_la_commune": "AVONDANCE", "libell_d_acheminement": "AVONDANCE", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62066"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c9ce3aafe89249f95943e359e4108b8b8e1738", "fields": {"nom_de_la_commune": "AYETTE", "libell_d_acheminement": "AYETTE", "code_postal": "62116", "coordonnees_gps": [50.1489493894, 2.70436913467], "code_commune_insee": "62068"}, "geometry": {"type": "Point", "coordinates": [2.70436913467, 50.1489493894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49efa9fa83cbdfe6d6d79aea5c9a27ddc9bc6173", "fields": {"nom_de_la_commune": "BAILLEUL AUX CORNAILLES", "libell_d_acheminement": "BAILLEUL AUX CORNAILLES", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62070"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019c017f6e36dff31d7e235515e65d445f77488c", "fields": {"nom_de_la_commune": "BAILLEULMONT", "libell_d_acheminement": "BAILLEULMONT", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62072"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78e73d3fb39e2ef925d7a18d7839bcd1af077e0a", "fields": {"nom_de_la_commune": "BAPAUME", "libell_d_acheminement": "BAPAUME", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62080"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc86478ae8f360421491bdb968fd7d2e7df1925", "fields": {"nom_de_la_commune": "BARALLE", "libell_d_acheminement": "BARALLE", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62081"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aef7ba5d49a972d1f0404f8cac679c82cf12b70", "fields": {"code_postal": "62158", "code_commune_insee": "62086", "libell_d_acheminement": "BAVINCOURT", "ligne_5": "L ARBRET", "nom_de_la_commune": "BAVINCOURT", "coordonnees_gps": [50.2103213159, 2.53947447725]}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469d03aae1c35bd470081bcfcea4d7a3480c31b0", "fields": {"nom_de_la_commune": "BEALENCOURT", "libell_d_acheminement": "BEALENCOURT", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62090"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae48c599d88cba7ccc78f88b58d10ad6761e365a", "fields": {"nom_de_la_commune": "BEAULENCOURT", "libell_d_acheminement": "BEAULENCOURT", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62093"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "002e415526c7079925b0da8398e3fce49a4d6522", "fields": {"nom_de_la_commune": "BEAUMETZ LES CAMBRAI", "libell_d_acheminement": "BEAUMETZ LES CAMBRAI", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62096"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "498a3558cec5239f474746230f2f5b9e59f3e675", "fields": {"nom_de_la_commune": "BEAUMETZ LES LOGES", "libell_d_acheminement": "BEAUMETZ LES LOGES", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62097"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61c266c94e5db941af4f685f13cea0cea9dc1691", "fields": {"nom_de_la_commune": "BEAURAINS", "libell_d_acheminement": "BEAURAINS", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62099"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b996fdf68de98563587ef9ec6ab095759121320", "fields": {"nom_de_la_commune": "BEAUVOIS", "libell_d_acheminement": "BEAUVOIS", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62101"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f117847e0b95400dac9ce67738da7526b582cdf2", "fields": {"nom_de_la_commune": "BEHAGNIES", "libell_d_acheminement": "BEHAGNIES", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62103"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988b00adb2b8bec980110b00ddb66991872d9696", "fields": {"nom_de_la_commune": "BELLE ET HOULLEFORT", "libell_d_acheminement": "BELLE ET HOULLEFORT", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62105"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32a8b9713360dd8e3fc73dde9176c1e97dde2275", "fields": {"nom_de_la_commune": "BERLENCOURT LE CAUROY", "libell_d_acheminement": "BERLENCOURT LE CAUROY", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62111"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c05b8478cbb8a1b964aa43404b5c8a07da0f9c76", "fields": {"nom_de_la_commune": "BERLES AU BOIS", "libell_d_acheminement": "BERLES AU BOIS", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62112"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3835a2dad674c1415625ae7661737e38f5f6d9cf", "fields": {"nom_de_la_commune": "BERLES MONCHEL", "libell_d_acheminement": "BERLES MONCHEL", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62113"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c26aef98b19d7d3288d060e63873ad0ca3e6045d", "fields": {"nom_de_la_commune": "BETHONSART", "libell_d_acheminement": "BETHONSART", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62118"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2acab097d7ae9d07fe1e3f94fee28e6f168657f8", "fields": {"code_postal": "72610", "code_commune_insee": "72137", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "ligne_5": "ST RIGOMER DES BOIS", "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "coordonnees_gps": [48.3894746655, 0.168582736306]}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c6ade6f32c5eabed0ad9dd74ca929cde959d6a", "fields": {"nom_de_la_commune": "FRESNAY SUR SARTHE", "libell_d_acheminement": "FRESNAY SUR SARTHE", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72138"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4953dc460efc0ed4d3fd90b57b8eb45a52e7457", "fields": {"nom_de_la_commune": "JOUE L ABBE", "libell_d_acheminement": "JOUE L ABBE", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72150"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9db7f5a4010d0c5de5dee822aae8d42f374e89", "fields": {"nom_de_la_commune": "JUPILLES", "libell_d_acheminement": "JUPILLES", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72153"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c65e4869a99f4f12966699998f4fc4f5bb414f82", "fields": {"nom_de_la_commune": "LAMNAY", "libell_d_acheminement": "LAMNAY", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72156"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01dd02530a6a14a503d4a0d0f7613218d0983011", "fields": {"nom_de_la_commune": "LAVENAY", "libell_d_acheminement": "LAVENAY", "code_postal": "72310", "coordonnees_gps": [47.8336361151, 0.691494561054], "code_commune_insee": "72159"}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33a77a28fd28c17021dd7824a53fe8709879c21b", "fields": {"nom_de_la_commune": "LAVERNAT", "libell_d_acheminement": "LAVERNAT", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72160"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f33682608bd6067b0eb4399c1da18f6b36e244", "fields": {"nom_de_la_commune": "LOUE", "libell_d_acheminement": "LOUE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72168"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85f4bdbb18e144c43ff9e519ea66e926de169be7", "fields": {"nom_de_la_commune": "LOUZES", "libell_d_acheminement": "LOUZES", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72171"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d269e356d5e1ff069d0c1fa223908d7d0cc7a17", "fields": {"nom_de_la_commune": "LE LUART", "libell_d_acheminement": "LE LUART", "code_postal": "72390", "coordonnees_gps": [48.0512827227, 0.629748234249], "code_commune_insee": "72172"}, "geometry": {"type": "Point", "coordinates": [0.629748234249, 48.0512827227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc177acf4e42053491171245b386d59f47fb86b", "fields": {"nom_de_la_commune": "LE LUDE", "libell_d_acheminement": "LE LUDE", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72176"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7968bb6e1750488d93e9a53a9058a5cc289dd20", "fields": {"nom_de_la_commune": "MARCON", "libell_d_acheminement": "MARCON", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72183"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311bfbded144b4d2026cbdd05c504b69a4c6acff", "fields": {"nom_de_la_commune": "MARESCHE", "libell_d_acheminement": "MARESCHE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72186"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b120aa0199d71f851b3b71220c6116025fdc5f", "fields": {"nom_de_la_commune": "MAROLLES LES BRAULTS", "libell_d_acheminement": "MAROLLES LES BRAULTS", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72189"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d18c7469e8486160e30cc7dd9c48f8c0bb1295", "fields": {"nom_de_la_commune": "MEZERAY", "libell_d_acheminement": "MEZERAY", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72195"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "158923ed25435be2973a95fcab803786f2a2b022", "fields": {"nom_de_la_commune": "LA MILESSE", "libell_d_acheminement": "LA MILESSE", "code_postal": "72650", "coordonnees_gps": [48.0691721456, 0.13653292656], "code_commune_insee": "72198"}, "geometry": {"type": "Point", "coordinates": [0.13653292656, 48.0691721456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e431659121ab6122e01a7313e8188dc4e9346fc", "fields": {"nom_de_la_commune": "MOITRON SUR SARTHE", "libell_d_acheminement": "MOITRON SUR SARTHE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72199"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f09bae3205a4799a05da4ced1d06e0614ba3f31", "fields": {"nom_de_la_commune": "MONHOUDOU", "libell_d_acheminement": "MONHOUDOU", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72202"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "209a87ad4a3d5bb67ad63a7b67a35fd650ecbaa4", "fields": {"nom_de_la_commune": "MONTABON", "libell_d_acheminement": "MONTABON", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72203"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da12ace76766189429d1df7b1933c101bef9238", "fields": {"nom_de_la_commune": "MONTREUIL LE HENRI", "libell_d_acheminement": "MONTREUIL LE HENRI", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72210"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d624a2fe7d6d8981990415b6fdc3ac549a9072e", "fields": {"nom_de_la_commune": "NOGENT LE BERNARD", "libell_d_acheminement": "NOGENT LE BERNARD", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72220"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c30273da3b3e0f74f9897fba6a67a3ef7db0998", "fields": {"nom_de_la_commune": "OIZE", "libell_d_acheminement": "OIZE", "code_postal": "72330", "coordonnees_gps": [47.82608186, 0.101010219107], "code_commune_insee": "72226"}, "geometry": {"type": "Point", "coordinates": [0.101010219107, 47.82608186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a020bc4432fe63c6397ed71669d9d728f0b5c429", "fields": {"nom_de_la_commune": "NOTRE DAME DU PE", "libell_d_acheminement": "NOTRE DAME DU PE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72232"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537c3adf361833ae48f22297b18b51d480cf0e2b", "fields": {"nom_de_la_commune": "PRECIGNE", "libell_d_acheminement": "PRECIGNE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72244"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a0b2b125edf33677bda8d2153c36376901549aa", "fields": {"nom_de_la_commune": "RENE", "libell_d_acheminement": "RENE", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72251"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ceab067e2b21fc6ede60aa6854b30143064b26", "fields": {"nom_de_la_commune": "STE CEROTTE", "libell_d_acheminement": "STE CEROTTE", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72272"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9686b6754ac5f2c40a5c2ce60484c0aa196b8ac6", "fields": {"nom_de_la_commune": "ST DENIS DES COUDRAIS", "libell_d_acheminement": "ST DENIS DES COUDRAIS", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72277"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0429d3b36647e7c49f05a405a725a979b05a4b5f", "fields": {"nom_de_la_commune": "ST GEORGES DU BOIS", "libell_d_acheminement": "ST GEORGES DU BOIS", "code_postal": "72700", "coordonnees_gps": [47.9647519456, 0.124625925124], "code_commune_insee": "72280"}, "geometry": {"type": "Point", "coordinates": [0.124625925124, 47.9647519456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9f0cc494ebc4966486b90d43db0283be33c53d", "fields": {"nom_de_la_commune": "ST GERVAIS DE VIC", "libell_d_acheminement": "ST GERVAIS DE VIC", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72286"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61187246f2707c8813faeb358d18354b368ee46c", "fields": {"nom_de_la_commune": "ST GERVAIS EN BELIN", "libell_d_acheminement": "ST GERVAIS EN BELIN", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72287"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9ac004be62e7987c5be08d7819898bf3ba3697", "fields": {"nom_de_la_commune": "ST JEAN DE LA MOTTE", "libell_d_acheminement": "ST JEAN DE LA MOTTE", "code_postal": "72510", "coordonnees_gps": [47.7600092063, 0.139219846334], "code_commune_insee": "72291"}, "geometry": {"type": "Point", "coordinates": [0.139219846334, 47.7600092063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abcda2fd1fdc05f39a513c6bbef9d4ae1de9119d", "fields": {"nom_de_la_commune": "ST LONGIS", "libell_d_acheminement": "ST LONGIS", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72295"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b8235240bc3715bc9dbfd7edf9f4a5fc68a903", "fields": {"nom_de_la_commune": "ST OUEN DE MIMBRE", "libell_d_acheminement": "ST OUEN DE MIMBRE", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72305"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f2c6b84c349b7ae035199586f8bf885e1bc2d42", "fields": {"nom_de_la_commune": "ST PIERRE DES BOIS", "libell_d_acheminement": "ST PIERRE DES BOIS", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72312"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142190ab634ada3a11e0bea52964a28d83095d93", "fields": {"nom_de_la_commune": "ST REMY DU VAL", "libell_d_acheminement": "ST REMY DU VAL", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72317"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbac79572a6d4dba098f6c356fc48c6f616ee4ec", "fields": {"nom_de_la_commune": "SARCE", "libell_d_acheminement": "SARCE", "code_postal": "72360", "coordonnees_gps": [47.7503941662, 0.276407152429], "code_commune_insee": "72327"}, "geometry": {"type": "Point", "coordinates": [0.276407152429, 47.7503941662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bba16f11f0792e332cc9857a8da7a588d68c2a0", "fields": {"nom_de_la_commune": "SEMUR EN VALLON", "libell_d_acheminement": "SEMUR EN VALLON", "code_postal": "72390", "coordonnees_gps": [48.0512827227, 0.629748234249], "code_commune_insee": "72333"}, "geometry": {"type": "Point", "coordinates": [0.629748234249, 48.0512827227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e12f45efe29d3da1dc5636906c3f30859f912f1", "fields": {"nom_de_la_commune": "SILLE LE PHILIPPE", "libell_d_acheminement": "SILLE LE PHILIPPE", "code_postal": "72460", "coordonnees_gps": [48.0865226783, 0.31265862637], "code_commune_insee": "72335"}, "geometry": {"type": "Point", "coordinates": [0.31265862637, 48.0865226783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bf386e73cd9f08e9bd0f9fe8c2f157c8ffb5479", "fields": {"nom_de_la_commune": "LA SUZE SUR SARTHE", "libell_d_acheminement": "LA SUZE SUR SARTHE", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72346"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeb0d00c7f09ec90bbd4e76645055695008e4324", "fields": {"nom_de_la_commune": "TASSE", "libell_d_acheminement": "TASSE", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72347"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74fe3ab3810044360776f4866668c546c6e50042", "fields": {"nom_de_la_commune": "THELIGNY", "libell_d_acheminement": "THELIGNY", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72353"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f201523b5ef0d19aa344afa8b79b3277fea2e175", "fields": {"nom_de_la_commune": "TORCE EN VALLEE", "libell_d_acheminement": "TORCE EN VALLEE", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72359"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "156b6c418b878f1dd9ba70e7a8304e020011f27f", "fields": {"nom_de_la_commune": "VOUVRAY SUR HUISNE", "libell_d_acheminement": "VOUVRAY SUR HUISNE", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72383"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eade2e422cf4aec37cd87f82abcce63ad2f2e7d6", "fields": {"code_postal": "73210", "code_commune_insee": "73006", "libell_d_acheminement": "AIME LA PLAGNE", "ligne_5": "LONGEFOY", "nom_de_la_commune": "AIME LA PLAGNE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "928e2eaeb45fbef786261f8ebe77e8646ae3f40e", "fields": {"code_postal": "73210", "code_commune_insee": "73006", "libell_d_acheminement": "AIME LA PLAGNE", "ligne_5": "MONTGIROD", "nom_de_la_commune": "AIME LA PLAGNE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a4c4f7769a137213f7d514cab0712699b762de", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "ST GERMAIN LA CHAMBOTTE", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65ba3f327a42456391cc1cea97a79a226b3c0efd", "fields": {"nom_de_la_commune": "ALBIEZ MONTROND", "libell_d_acheminement": "ALBIEZ MONTROND", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73013"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4fbeb34e8e5310708d323089072ef0f20494f13", "fields": {"nom_de_la_commune": "ARITH", "libell_d_acheminement": "ARITH", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73020"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa2f4649cd4353824112d9f9aef9690d7ff0ab88", "fields": {"nom_de_la_commune": "LES AVANCHERS VALMOREL", "libell_d_acheminement": "LES AVANCHERS VALMOREL", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73024"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8984bf24fa7a0c93911e8e7fe9ec14ec94bb335", "fields": {"nom_de_la_commune": "AVRESSIEUX", "libell_d_acheminement": "AVRESSIEUX", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73025"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d0bd0eb75dddd3f90acd9a289085e79310f0595", "fields": {"nom_de_la_commune": "BESSANS", "libell_d_acheminement": "BESSANS", "code_postal": "73480", "coordonnees_gps": [45.3065460513, 7.01735410768], "code_commune_insee": "73040"}, "geometry": {"type": "Point", "coordinates": [7.01735410768, 45.3065460513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941effb16ea44de166671a06ec8ed36b2df58454", "fields": {"nom_de_la_commune": "BILLIEME", "libell_d_acheminement": "BILLIEME", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73042"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "146022e5d4a17566ed96e1f7153d4a2ac0bc7b9f", "fields": {"nom_de_la_commune": "BONVILLARD", "libell_d_acheminement": "BONVILLARD", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73048"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e171e1bf3611b90868670cdbb4e25689b6d437", "fields": {"nom_de_la_commune": "BOURDEAU", "libell_d_acheminement": "BOURDEAU", "code_postal": "73370", "coordonnees_gps": [45.6697379458, 5.85011777535], "code_commune_insee": "73050"}, "geometry": {"type": "Point", "coordinates": [5.85011777535, 45.6697379458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1308cdb1b3fb1cc06b5937d2b811dd3425b8f17", "fields": {"nom_de_la_commune": "LE BOURGET DU LAC", "libell_d_acheminement": "LE BOURGET DU LAC", "code_postal": "73370", "coordonnees_gps": [45.6697379458, 5.85011777535], "code_commune_insee": "73051"}, "geometry": {"type": "Point", "coordinates": [5.85011777535, 45.6697379458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39a7e5ecf0293bc49c85b98fe16070c7153abd07", "fields": {"nom_de_la_commune": "CHAMOUSSET", "libell_d_acheminement": "CHAMOUSSET", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73068"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6876595aa0f47d175c30ac6d1fd18bf59232c3da", "fields": {"nom_de_la_commune": "LA CHAPELLE BLANCHE", "libell_d_acheminement": "LA CHAPELLE BLANCHE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73075"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e389e3ecc9f59dc50e905cabd15ceb631d9e05", "fields": {"nom_de_la_commune": "LE CHATEL", "libell_d_acheminement": "LE CHATEL", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73080"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091d74c4ee3210da3e57e84dd5687ec731dc9588", "fields": {"nom_de_la_commune": "LE CHATELARD", "libell_d_acheminement": "LE CHATELARD", "code_postal": "73630", "coordonnees_gps": [45.6548339489, 6.17579886846], "code_commune_insee": "73081"}, "geometry": {"type": "Point", "coordinates": [6.17579886846, 45.6548339489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc9e7af61bc77d15c6f67f621cbaa07ba0363502", "fields": {"nom_de_la_commune": "CHIGNIN", "libell_d_acheminement": "CHIGNIN", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73084"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33d835853bc7e96fc93b26d14c9222fe205c2e6", "fields": {"nom_de_la_commune": "CHINDRIEUX", "libell_d_acheminement": "CHINDRIEUX", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73085"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9fd3f3b0668e3cabe5c950a19c06c3e6cfdbcbb", "fields": {"nom_de_la_commune": "COHENNOZ", "libell_d_acheminement": "COHENNOZ", "code_postal": "73590", "coordonnees_gps": [45.8256229231, 6.51404796516], "code_commune_insee": "73088"}, "geometry": {"type": "Point", "coordinates": [6.51404796516, 45.8256229231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c0d71a0dc9f9f82eec51b8a92b0208e9973a59d", "fields": {"nom_de_la_commune": "CREST VOLAND", "libell_d_acheminement": "CREST VOLAND", "code_postal": "73590", "coordonnees_gps": [45.8256229231, 6.51404796516], "code_commune_insee": "73094"}, "geometry": {"type": "Point", "coordinates": [6.51404796516, 45.8256229231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20126b73692e26dd02bdd97bfade082cbbd679db", "fields": {"nom_de_la_commune": "CURIENNE", "libell_d_acheminement": "CURIENNE", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73097"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd31a375595e4a0b201a5eb6cfaaf29c10660f80", "fields": {"code_postal": "73230", "code_commune_insee": "73098", "libell_d_acheminement": "LES DESERTS", "ligne_5": "LA FECLAZ", "nom_de_la_commune": "LES DESERTS", "coordonnees_gps": [45.6155984939, 5.99766818006]}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c39e1a1ae02efdbc1f3461bbd7816ded4f0b10a9", "fields": {"nom_de_la_commune": "DOUCY EN BAUGES", "libell_d_acheminement": "DOUCY EN BAUGES", "code_postal": "73630", "coordonnees_gps": [45.6548339489, 6.17579886846], "code_commune_insee": "73101"}, "geometry": {"type": "Point", "coordinates": [6.17579886846, 45.6548339489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b74775a08e6c9fb9bb2d990a3c598962e4f5f84", "fields": {"nom_de_la_commune": "LES ECHELLES", "libell_d_acheminement": "LES ECHELLES", "code_postal": "73360", "coordonnees_gps": [45.4669972667, 5.76456264233], "code_commune_insee": "73105"}, "geometry": {"type": "Point", "coordinates": [5.76456264233, 45.4669972667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e1665c5a9a3509fe254dc22dfb3af0949b062e", "fields": {"nom_de_la_commune": "FEISSONS SUR SALINS", "libell_d_acheminement": "FEISSONS SUR SALINS", "code_postal": "73350", "coordonnees_gps": [45.4506854464, 6.72699335794], "code_commune_insee": "73113"}, "geometry": {"type": "Point", "coordinates": [6.72699335794, 45.4506854464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb7902e19f3d3cd286645ba4e3178739a433a78c", "fields": {"nom_de_la_commune": "JARRIER", "libell_d_acheminement": "JARRIER", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73138"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fe87fcbff66e63d26fedb2d5394cf6e35c7b393", "fields": {"nom_de_la_commune": "LESCHERAINES", "libell_d_acheminement": "LESCHERAINES", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73146"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a83438cfebb6c221bc6a9eacc39e9a9e08b4c30", "fields": {"nom_de_la_commune": "MONTENDRY", "libell_d_acheminement": "MONTENDRY", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73166"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab70e91b416cef769773573879213b616dc3ee6", "fields": {"nom_de_la_commune": "MONTGELLAFREY", "libell_d_acheminement": "MONTGELLAFREY", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73167"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0543a21b160a85d5906aff8ad22e715d2fe057ee", "fields": {"nom_de_la_commune": "MONTVALEZAN", "libell_d_acheminement": "MONTVALEZAN", "code_postal": "73700", "coordonnees_gps": [45.6553139344, 6.78435107537], "code_commune_insee": "73176"}, "geometry": {"type": "Point", "coordinates": [6.78435107537, 45.6553139344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72bc82d4fe6b68b94b30411f220bfea54667fc29", "fields": {"nom_de_la_commune": "MOUXY", "libell_d_acheminement": "MOUXY", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73182"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c369a70afa8c4fdbc8bb5edd82a69f7793f3cfb", "fields": {"nom_de_la_commune": "NOTRE DAME DE BELLECOMBE", "libell_d_acheminement": "NOTRE DAME DE BELLECOMBE", "code_postal": "73590", "coordonnees_gps": [45.8256229231, 6.51404796516], "code_commune_insee": "73186"}, "geometry": {"type": "Point", "coordinates": [6.51404796516, 45.8256229231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d7a8dfddd0250b336f457ae48455e0212c7336", "fields": {"nom_de_la_commune": "NOTRE DAME DU PRE", "libell_d_acheminement": "NOTRE DAME DU PRE", "code_postal": "73600", "coordonnees_gps": [45.3739609607, 6.53145730027], "code_commune_insee": "73190"}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a89470c251a814f9643f043168d14a8592adaa", "fields": {"nom_de_la_commune": "PLANCHERINE", "libell_d_acheminement": "PLANCHERINE", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73202"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de812da12a20d9c1cd5a08aa28df0f2b6eca561", "fields": {"nom_de_la_commune": "LE PONTET", "libell_d_acheminement": "LE PONTET", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73205"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "066f2b16b0b3d2c1a2401a39cc69a343c4e484ab", "fields": {"nom_de_la_commune": "PRALOGNAN LA VANOISE", "libell_d_acheminement": "PRALOGNAN LA VANOISE", "code_postal": "73710", "coordonnees_gps": [45.3499786689, 6.72072474972], "code_commune_insee": "73206"}, "geometry": {"type": "Point", "coordinates": [6.72072474972, 45.3499786689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cbcf79f81bb3462ed8f8c382f1fd13849246e64", "fields": {"nom_de_la_commune": "LA RAVOIRE", "libell_d_acheminement": "LA RAVOIRE", "code_postal": "73490", "coordonnees_gps": [45.5563713647, 5.96040910822], "code_commune_insee": "73213"}, "geometry": {"type": "Point", "coordinates": [5.96040910822, 45.5563713647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "004f55bf2d39cb37b5e08e82ecff28620d4e1b97", "fields": {"nom_de_la_commune": "ROTHERENS", "libell_d_acheminement": "ROTHERENS", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73217"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e456d7e78fa3c1d69e39e51cd4b1c87479767880", "fields": {"nom_de_la_commune": "ST ALBAN DE MONTBEL", "libell_d_acheminement": "ST ALBAN DE MONTBEL", "code_postal": "73610", "coordonnees_gps": [45.5318935553, 5.78373657089], "code_commune_insee": "73219"}, "geometry": {"type": "Point", "coordinates": [5.78373657089, 45.5318935553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b376eec8941e6e09b83131e66c1339c84202dcb", "fields": {"nom_de_la_commune": "ST ALBAN LEYSSE", "libell_d_acheminement": "ST ALBAN LEYSSE", "code_postal": "73230", "coordonnees_gps": [45.6155984939, 5.99766818006], "code_commune_insee": "73222"}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "453e45f5ef06d283126462edfeb74874b8c7388c", "fields": {"nom_de_la_commune": "ST ANDRE", "libell_d_acheminement": "ST ANDRE", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73223"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf03c0cc258c44858ad45f5380f3007f160042f", "fields": {"nom_de_la_commune": "ST AVRE", "libell_d_acheminement": "ST AVRE", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73224"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343b791ba54f0864bfddac10f8badb9ab2cb6cf9", "fields": {"nom_de_la_commune": "ST ETIENNE DE CUINES", "libell_d_acheminement": "ST ETIENNE DE CUINES", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73231"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e110eb3ed6efe96dd7bc50336d347cbf45ea9f", "fields": {"nom_de_la_commune": "ST GEORGES D HURTIERES", "libell_d_acheminement": "ST GEORGES D HURTIERES", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73237"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59dcf4c5d42d44ec95b5042b9248151ad4f2a70c", "fields": {"nom_de_la_commune": "ST JEAN DE BELLEVILLE", "libell_d_acheminement": "ST JEAN DE BELLEVILLE", "code_postal": "73440", "coordonnees_gps": [45.3533056918, 6.49727541624], "code_commune_insee": "73244"}, "geometry": {"type": "Point", "coordinates": [6.49727541624, 45.3533056918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba4507ea3b5f0305a300860101c60a15210574ea", "fields": {"nom_de_la_commune": "ST JEOIRE PRIEURE", "libell_d_acheminement": "ST JEOIRE PRIEURE", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73249"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4cc320b83a1a5e58ffe1938387ae4a6870a5cf", "fields": {"nom_de_la_commune": "ST MAURICE DE ROTHERENS", "libell_d_acheminement": "ST MAURICE DE ROTHERENS", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73260"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd46b747e79cfcef790a7272da8be1c6f7d8fa4", "fields": {"code_postal": "73140", "code_commune_insee": "73261", "libell_d_acheminement": "ST MICHEL DE MAURIENNE", "ligne_5": "BEAUNE", "nom_de_la_commune": "ST MICHEL DE MAURIENNE", "coordonnees_gps": [45.2191220888, 6.52414175582]}, "geometry": {"type": "Point", "coordinates": [6.52414175582, 45.2191220888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bb5f1e0377504d33827a4dad8a3c8dd1c993ba", "fields": {"nom_de_la_commune": "ST PANCRACE", "libell_d_acheminement": "ST PANCRACE", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73267"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83a36508fe4cf74b09cbfd6d5ad9dd3f05755f6f", "fields": {"nom_de_la_commune": "ST PAUL SUR ISERE", "libell_d_acheminement": "ST PAUL SUR ISERE", "code_postal": "73730", "coordonnees_gps": [45.5966737513, 6.45704572923], "code_commune_insee": "73268"}, "geometry": {"type": "Point", "coordinates": [6.45704572923, 45.5966737513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "587c401c81c5608c7af710bb31ac6d090c61d04a", "fields": {"nom_de_la_commune": "STE REINE", "libell_d_acheminement": "STE REINE", "code_postal": "73630", "coordonnees_gps": [45.6548339489, 6.17579886846], "code_commune_insee": "73277"}, "geometry": {"type": "Point", "coordinates": [6.17579886846, 45.6548339489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0a5782f82db25b41eb4df10077ba5c94918f9df", "fields": {"nom_de_la_commune": "ST SORLIN D ARVES", "libell_d_acheminement": "ST SORLIN D ARVES", "code_postal": "73530", "coordonnees_gps": [45.179061484, 6.24624710738], "code_commune_insee": "73280"}, "geometry": {"type": "Point", "coordinates": [6.24624710738, 45.179061484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76092e7361118fa4bdb24b3328bebd8594f2944", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73281"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa1d991b6032bfef4201d34cb29a0baccea3f156", "fields": {"nom_de_la_commune": "ST VITAL", "libell_d_acheminement": "ST VITAL", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73283"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dedaafb557f31ea83ada223dc597e0fe6f5db786", "fields": {"nom_de_la_commune": "SERRIERES EN CHAUTAGNE", "libell_d_acheminement": "SERRIERES EN CHAUTAGNE", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73286"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "671a50bd5b40c18c3428d94a9ce622efcd56f7d4", "fields": {"nom_de_la_commune": "SONNAZ", "libell_d_acheminement": "SONNAZ", "code_postal": "73000", "coordonnees_gps": [45.5704322981, 5.91500462734], "code_commune_insee": "73288"}, "geometry": {"type": "Point", "coordinates": [5.91500462734, 45.5704322981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b5271b35384119c1e3b282030e78fa67bba6adb", "fields": {"nom_de_la_commune": "LA TABLE", "libell_d_acheminement": "LA TABLE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73289"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0571c675b891cb4b9d073929c90a75f8b7e5b123", "fields": {"nom_de_la_commune": "ARBELLARA", "libell_d_acheminement": "ARBELLARA", "code_postal": "20110", "coordonnees_gps": [41.6455084953, 8.89371494323], "code_commune_insee": "2A018"}, "geometry": {"type": "Point", "coordinates": [8.89371494323, 41.6455084953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2de0728358dff38713f8da1b7d3696821dbf12", "fields": {"nom_de_la_commune": "ARBORI", "libell_d_acheminement": "ARBORI", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A019"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da385487f7bd65359de92cacb437fb599dded511", "fields": {"nom_de_la_commune": "AULLENE", "libell_d_acheminement": "AULLENE", "code_postal": "20116", "coordonnees_gps": [41.7931582051, 9.08407548301], "code_commune_insee": "2A024"}, "geometry": {"type": "Point", "coordinates": [9.08407548301, 41.7931582051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e356a07423619984a666ef820f0baf36708521cb", "fields": {"nom_de_la_commune": "AZZANA", "libell_d_acheminement": "AZZANA", "code_postal": "20121", "coordonnees_gps": [42.1272719035, 8.95083209288], "code_commune_insee": "2A027"}, "geometry": {"type": "Point", "coordinates": [8.95083209288, 42.1272719035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f6bf2d5c25974bd0051a735e1937dde1903ff9", "fields": {"nom_de_la_commune": "CARBUCCIA", "libell_d_acheminement": "CARBUCCIA", "code_postal": "20133", "coordonnees_gps": [42.0416509531, 8.96678147455], "code_commune_insee": "2A062"}, "geometry": {"type": "Point", "coordinates": [8.96678147455, 42.0416509531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e857a43050c8a1e0530f5b1779629b603a7319", "fields": {"nom_de_la_commune": "CARDO TORGIA", "libell_d_acheminement": "CARDO TORGIA", "code_postal": "20190", "coordonnees_gps": [41.8574694236, 8.99242736054], "code_commune_insee": "2A064"}, "geometry": {"type": "Point", "coordinates": [8.99242736054, 41.8574694236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5e7eb8fc649d1588814c871382de40df8b7a1a", "fields": {"nom_de_la_commune": "COGGIA", "libell_d_acheminement": "COGGIA", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A090"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b505bf603a0f450739357f6c10750577d0f4a738", "fields": {"nom_de_la_commune": "CONCA", "libell_d_acheminement": "CONCA", "code_postal": "20135", "coordonnees_gps": [41.7534275718, 9.32990211235], "code_commune_insee": "2A092"}, "geometry": {"type": "Point", "coordinates": [9.32990211235, 41.7534275718]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e41f0b2450a02214cf3a65abe62235457f112b6", "fields": {"nom_de_la_commune": "ECCICA SUARELLA", "libell_d_acheminement": "ECCICA SUARELLA", "code_postal": "20117", "coordonnees_gps": [41.9372935669, 8.91884221363], "code_commune_insee": "2A104"}, "geometry": {"type": "Point", "coordinates": [8.91884221363, 41.9372935669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c772f7460e98eb9a521f8ecd0532d41be82d1faf", "fields": {"nom_de_la_commune": "GUARGUALE", "libell_d_acheminement": "GUARGUALE", "code_postal": "20128", "coordonnees_gps": [41.8616733244, 8.8885100241], "code_commune_insee": "2A132"}, "geometry": {"type": "Point", "coordinates": [8.8885100241, 41.8616733244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c607c975e38013b58e9aaa2ab37b9752b9c498e9", "fields": {"nom_de_la_commune": "GUITERA LES BAINS", "libell_d_acheminement": "GUITERA LES BAINS", "code_postal": "20153", "coordonnees_gps": [41.9220249127, 9.07829951647], "code_commune_insee": "2A133"}, "geometry": {"type": "Point", "coordinates": [9.07829951647, 41.9220249127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7295a9a4d1bd2f414d4add1ab9257357ee830b22", "fields": {"nom_de_la_commune": "MARIGNANA", "libell_d_acheminement": "MARIGNANA", "code_postal": "20141", "coordonnees_gps": [42.2079791644, 8.71954575533], "code_commune_insee": "2A154"}, "geometry": {"type": "Point", "coordinates": [8.71954575533, 42.2079791644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207f90813782d4c81635fc6250e67fd1fed7288f", "fields": {"nom_de_la_commune": "MONACIA D AULLENE", "libell_d_acheminement": "MONACIA D AULLENE", "code_postal": "20171", "coordonnees_gps": [41.5251189721, 9.01190530271], "code_commune_insee": "2A163"}, "geometry": {"type": "Point", "coordinates": [9.01190530271, 41.5251189721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7954f9adb390cf952fc6e846c0963be7d1b6b868", "fields": {"nom_de_la_commune": "OTA", "libell_d_acheminement": "OTA", "code_postal": "20150", "coordonnees_gps": [42.2552083617, 8.7336084267], "code_commune_insee": "2A198"}, "geometry": {"type": "Point", "coordinates": [8.7336084267, 42.2552083617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d357d86767cf20679081eadf4ebb37ab6abd62ef", "fields": {"nom_de_la_commune": "PASTRICCIOLA", "libell_d_acheminement": "PASTRICCIOLA", "code_postal": "20121", "coordonnees_gps": [42.1272719035, 8.95083209288], "code_commune_insee": "2A204"}, "geometry": {"type": "Point", "coordinates": [8.95083209288, 42.1272719035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fa0c15a7ccfc467d7bb1ae38472f78ed7859efe", "fields": {"nom_de_la_commune": "PIANA", "libell_d_acheminement": "PIANA", "code_postal": "20115", "coordonnees_gps": [42.2260921925, 8.62892028244], "code_commune_insee": "2A212"}, "geometry": {"type": "Point", "coordinates": [8.62892028244, 42.2260921925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a4b4071c50fbaed995ebbf48752a3efc679ac9", "fields": {"nom_de_la_commune": "PIANOTTOLI CALDARELLO", "libell_d_acheminement": "PIANOTTOLI CALDARELLO", "code_postal": "20131", "coordonnees_gps": [41.5046327192, 9.04865885374], "code_commune_insee": "2A215"}, "geometry": {"type": "Point", "coordinates": [9.04865885374, 41.5046327192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "028773332f0468f8b3854d9a8254cfd6a8fa8173", "fields": {"code_postal": "20145", "code_commune_insee": "2A269", "libell_d_acheminement": "SARI SOLENZARA", "ligne_5": "SOLENZARA", "nom_de_la_commune": "SARI SOLENZARA", "coordonnees_gps": [41.813622565, 9.35248683062]}, "geometry": {"type": "Point", "coordinates": [9.35248683062, 41.813622565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb24a1485bfdcfbd5576688beb71468eebc6a182", "fields": {"nom_de_la_commune": "SOCCIA", "libell_d_acheminement": "SOCCIA", "code_postal": "20125", "coordonnees_gps": [42.1964321132, 8.92767106471], "code_commune_insee": "2A282"}, "geometry": {"type": "Point", "coordinates": [8.92767106471, 42.1964321132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8071182a439bb30d0c37b958afc36199a7955ef2", "fields": {"nom_de_la_commune": "SOTTA", "libell_d_acheminement": "SOTTA", "code_postal": "20146", "coordonnees_gps": [41.5556655137, 9.18156271217], "code_commune_insee": "2A288"}, "geometry": {"type": "Point", "coordinates": [9.18156271217, 41.5556655137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "429f68d0d827284f9664d23e6a6a35eb857bfbb3", "fields": {"nom_de_la_commune": "SANTA MARIA FIGANIELLA", "libell_d_acheminement": "SANTA MARIA FIGANIELLA", "code_postal": "20143", "coordonnees_gps": [41.708872053, 8.99627693971], "code_commune_insee": "2A310"}, "geometry": {"type": "Point", "coordinates": [8.99627693971, 41.708872053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de1e08ef744df23ab25d375dd6ca8b24b42a55d4", "fields": {"nom_de_la_commune": "TASSO", "libell_d_acheminement": "TASSO", "code_postal": "20134", "coordonnees_gps": [41.9757035744, 9.1524895794], "code_commune_insee": "2A322"}, "geometry": {"type": "Point", "coordinates": [9.1524895794, 41.9757035744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8178818bce2ad7efd037ec7ccb740afeea144826", "fields": {"nom_de_la_commune": "UCCIANI", "libell_d_acheminement": "UCCIANI", "code_postal": "20133", "coordonnees_gps": [42.0416509531, 8.96678147455], "code_commune_insee": "2A330"}, "geometry": {"type": "Point", "coordinates": [8.96678147455, 42.0416509531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ad7996c71af8332eb89829f078476a3566f937d", "fields": {"nom_de_la_commune": "ZONZA", "libell_d_acheminement": "ZONZA", "code_postal": "20124", "coordonnees_gps": [41.7212935715, 9.26676147812], "code_commune_insee": "2A362"}, "geometry": {"type": "Point", "coordinates": [9.26676147812, 41.7212935715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2da2e22e0bf904290e1a0a0acd88eb33ff4cfe", "fields": {"nom_de_la_commune": "ALBERTACCE", "libell_d_acheminement": "ALBERTACCE", "code_postal": "20224", "coordonnees_gps": [42.3286262979, 8.98251417824], "code_commune_insee": "2B007"}, "geometry": {"type": "Point", "coordinates": [8.98251417824, 42.3286262979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122fd5bdc665c78e50d6040333a762c752c6e4b5", "fields": {"nom_de_la_commune": "ANTISANTI", "libell_d_acheminement": "ANTISANTI", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B016"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57bb103d9d30f3ace373ebe4612bb785a6e9dff", "fields": {"nom_de_la_commune": "BASTIA", "libell_d_acheminement": "BASTIA", "code_postal": "20200", "coordonnees_gps": [42.7169845542, 9.42659304409], "code_commune_insee": "2B033"}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819e7ad71512fbb7c62f179541d434afe1974b65", "fields": {"code_postal": "20620", "code_commune_insee": "2B037", "libell_d_acheminement": "BIGUGLIA", "ligne_5": "CASATORRA", "nom_de_la_commune": "BIGUGLIA", "coordonnees_gps": [42.6164230367, 9.44067026759]}, "geometry": {"type": "Point", "coordinates": [9.44067026759, 42.6164230367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ac5eada53541608325232865a4516694d101365", "fields": {"code_postal": "20222", "code_commune_insee": "2B043", "libell_d_acheminement": "BRANDO", "ligne_5": "LAVASINA", "nom_de_la_commune": "BRANDO", "coordonnees_gps": [42.7794898116, 9.45079121274]}, "geometry": {"type": "Point", "coordinates": [9.45079121274, 42.7794898116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c3f2934665ce095bee59191c0a3eca0052dfb93", "fields": {"code_postal": "20260", "code_commune_insee": "2B049", "libell_d_acheminement": "CALENZANA", "ligne_5": "ARGENTELLA", "nom_de_la_commune": "CALENZANA", "coordonnees_gps": [42.4957918886, 8.79984001369]}, "geometry": {"type": "Point", "coordinates": [8.79984001369, 42.4957918886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "800c5c926174a88c22502214730aab11534a569f", "fields": {"nom_de_la_commune": "CAMBIA", "libell_d_acheminement": "CAMBIA", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B051"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c7109bc9f12789070cc73c41d13a175130d7a24", "fields": {"nom_de_la_commune": "CAMPANA", "libell_d_acheminement": "CAMPANA", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B052"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a7b1a329b4eaf5e96550861d22c2279798d0653", "fields": {"nom_de_la_commune": "CANAVAGGIA", "libell_d_acheminement": "CANAVAGGIA", "code_postal": "20235", "coordonnees_gps": [42.4832385905, 9.2653892014], "code_commune_insee": "2B059"}, "geometry": {"type": "Point", "coordinates": [9.2653892014, 42.4832385905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b87b315fa344f97d59a1e7c43402ce7d6f17db4", "fields": {"nom_de_la_commune": "CASABIANCA", "libell_d_acheminement": "CASABIANCA", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B069"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a30be6719e23e34a3f797d7afd1a689fec49020f", "fields": {"code_postal": "20221", "code_commune_insee": "2B087", "libell_d_acheminement": "CERVIONE", "ligne_5": "PRUNETE", "nom_de_la_commune": "CERVIONE", "coordonnees_gps": [42.3298486664, 9.50290145478]}, "geometry": {"type": "Point", "coordinates": [9.50290145478, 42.3298486664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a541f9e967d1dd35afbf703018eac8d16ea86cfb", "fields": {"nom_de_la_commune": "CORSCIA", "libell_d_acheminement": "CORSCIA", "code_postal": "20224", "coordonnees_gps": [42.3286262979, 8.98251417824], "code_commune_insee": "2B095"}, "geometry": {"type": "Point", "coordinates": [8.98251417824, 42.3286262979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b426adb16b3185cb25c05372bc1d1ab3c36273b", "fields": {"nom_de_la_commune": "CROCE", "libell_d_acheminement": "CROCE", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B101"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dbd0a94ca822d6d1ad5906898ea226ec0041a1c", "fields": {"nom_de_la_commune": "ERSA", "libell_d_acheminement": "ERSA", "code_postal": "20275", "coordonnees_gps": [42.9871426439, 9.38299677565], "code_commune_insee": "2B107"}, "geometry": {"type": "Point", "coordinates": [9.38299677565, 42.9871426439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29d3b55c4d5dcea0860f255c2b3817bc2a07845b", "fields": {"nom_de_la_commune": "FARINOLE", "libell_d_acheminement": "FARINOLE", "code_postal": "20253", "coordonnees_gps": [42.7087957082, 9.36671940301], "code_commune_insee": "2B109"}, "geometry": {"type": "Point", "coordinates": [9.36671940301, 42.7087957082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa3675638167131d4713c9ec269e96a637edc55", "fields": {"nom_de_la_commune": "FAVALELLO", "libell_d_acheminement": "FAVALELLO DE BOZIO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B110"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49c8d29275f368d9350892343c8b7215dedc1b26", "fields": {"code_postal": "20240", "code_commune_insee": "2B123", "libell_d_acheminement": "GHISONACCIA", "ligne_5": "ALZITONE", "nom_de_la_commune": "GHISONACCIA", "coordonnees_gps": [41.9691281261, 9.34452761596]}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5840be872c8118f8735e7bf6ccd95572c1fd3f33", "fields": {"code_postal": "20243", "code_commune_insee": "2B135", "libell_d_acheminement": "ISOLACCIO DI FIUMORBO", "ligne_5": "PIETRAPOLA", "nom_de_la_commune": "ISOLACCIO DI FIUMORBO", "coordonnees_gps": [41.9932570337, 9.30778955947]}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8941a876211bd0e9a36b81f0219abd119145fcb8", "fields": {"code_postal": "20230", "code_commune_insee": "2B143", "libell_d_acheminement": "LINGUIZZETTA", "ligne_5": "BRAVONE", "nom_de_la_commune": "LINGUIZZETTA", "coordonnees_gps": [42.30630414, 9.49791395184]}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0480f144f6e6040d187ba81e3063f268508d7863", "fields": {"nom_de_la_commune": "LORETO DI CASINCA", "libell_d_acheminement": "LORETO DI CASINCA", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B145"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67f583e1d6dda71bff390e99283b07051eab6bf4", "fields": {"nom_de_la_commune": "LURI", "libell_d_acheminement": "LURI", "code_postal": "20228", "coordonnees_gps": [42.8844689798, 9.39824491548], "code_commune_insee": "2B152"}, "geometry": {"type": "Point", "coordinates": [9.39824491548, 42.8844689798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad5f92709cd23a5063b64e9c1124de6d725258d", "fields": {"nom_de_la_commune": "MANSO", "libell_d_acheminement": "MANSO", "code_postal": "20245", "coordonnees_gps": [42.3904066097, 8.75959311785], "code_commune_insee": "2B153"}, "geometry": {"type": "Point", "coordinates": [8.75959311785, 42.3904066097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "807c9a6755b95a93e66970241fb2098dd7e89c03", "fields": {"nom_de_la_commune": "MONTE", "libell_d_acheminement": "MONTE", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B166"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e969fa2c07246908fc88ff36cc05dacd1f6099a", "fields": {"code_postal": "20214", "code_commune_insee": "2B167", "libell_d_acheminement": "MONTEGROSSO", "ligne_5": "CASSANO", "nom_de_la_commune": "MONTEGROSSO", "coordonnees_gps": [42.4880074487, 8.81568831698]}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38637ba1012fb220587d8d81e7be0982cd638129", "fields": {"code_postal": "20214", "code_commune_insee": "2B167", "libell_d_acheminement": "MONTEGROSSO", "ligne_5": "ST RAINIER DE BALAGNE", "nom_de_la_commune": "MONTEGROSSO", "coordonnees_gps": [42.4880074487, 8.81568831698]}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ae60a00381d9ebf10dafad5c539fed767350c3", "fields": {"nom_de_la_commune": "MONTICELLO", "libell_d_acheminement": "MONTICELLO", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B168"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "101f0578c673b47446d1c65ee6b19228d605a99f", "fields": {"nom_de_la_commune": "NOCARIO", "libell_d_acheminement": "NOCARIO", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B176"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47b0cb7781dfe551a9858542ccd30a044797af41", "fields": {"nom_de_la_commune": "NONZA", "libell_d_acheminement": "NONZA", "code_postal": "20217", "coordonnees_gps": [42.7166963955, 9.26424546036], "code_commune_insee": "2B178"}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dba5077b7eef40e9b8dbc2c28e773278414bc7e5", "fields": {"nom_de_la_commune": "OLCANI", "libell_d_acheminement": "OLCANI", "code_postal": "20217", "coordonnees_gps": [42.7166963955, 9.26424546036], "code_commune_insee": "2B184"}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ca0b8600657bcb332936aad87bea40b325c488", "fields": {"nom_de_la_commune": "OLETTA", "libell_d_acheminement": "OLETTA", "code_postal": "20232", "coordonnees_gps": [42.6331759717, 9.34813181689], "code_commune_insee": "2B185"}, "geometry": {"type": "Point", "coordinates": [9.34813181689, 42.6331759717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c92fa243d1bf71e0685570a3548dcd84fbcb2ad9", "fields": {"nom_de_la_commune": "OLMETA DI TUDA", "libell_d_acheminement": "OLMETA DI TUDA", "code_postal": "20232", "coordonnees_gps": [42.6331759717, 9.34813181689], "code_commune_insee": "2B188"}, "geometry": {"type": "Point", "coordinates": [9.34813181689, 42.6331759717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35a5402469f0a0f344cb1d928df598bee4867fa4", "fields": {"code_postal": "20236", "code_commune_insee": "2B193", "libell_d_acheminement": "OMESSA", "ligne_5": "FRANCARDO", "nom_de_la_commune": "OMESSA", "coordonnees_gps": [42.3752519871, 9.15942302041]}, "geometry": {"type": "Point", "coordinates": [9.15942302041, 42.3752519871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "350ca03c1848d52322d67fa001832b24eb33ca41", "fields": {"code_postal": "20270", "code_commune_insee": "2B201", "libell_d_acheminement": "PANCHERACCIA", "ligne_5": "CASAPERTA", "nom_de_la_commune": "PANCHERACCIA", "coordonnees_gps": [42.1585517957, 9.43977225577]}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d861050b61834f272109e8548db13086e441f0df", "fields": {"nom_de_la_commune": "PERELLI", "libell_d_acheminement": "PERELLI", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B208"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "552e3516a225e56946f069591c796dcfb6fd45c4", "fields": {"nom_de_la_commune": "PIANELLO", "libell_d_acheminement": "PIANELLO", "code_postal": "20272", "coordonnees_gps": [42.274903778, 9.36318949568], "code_commune_insee": "2B213"}, "geometry": {"type": "Point", "coordinates": [9.36318949568, 42.274903778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85fcc3ae999645c754d486e276005e008dd1dbff", "fields": {"nom_de_la_commune": "PIETRALBA", "libell_d_acheminement": "PIETRALBA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B223"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f7131c70417394aac7105b05a221a389a1c7c43", "fields": {"nom_de_la_commune": "PIEVE", "libell_d_acheminement": "PIEVE", "code_postal": "20246", "coordonnees_gps": [42.651217902, 9.20568525518], "code_commune_insee": "2B230"}, "geometry": {"type": "Point", "coordinates": [9.20568525518, 42.651217902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2044a7404939ce88427c5d8469d19033d27a9469", "fields": {"nom_de_la_commune": "PIGNA", "libell_d_acheminement": "PIGNA", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B231"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a4e30c5cef2aefba936376469c8a3f8b1ec491", "fields": {"nom_de_la_commune": "POGGIO DI NAZZA", "libell_d_acheminement": "POGGIO DI NAZZA", "code_postal": "20240", "coordonnees_gps": [41.9691281261, 9.34452761596], "code_commune_insee": "2B236"}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f620a848ffbf4a8467896e34cab2d5e1c86ddc3a", "fields": {"nom_de_la_commune": "POGGIO MARINACCIO", "libell_d_acheminement": "POGGIO MARINACCIO", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B241"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ef3b641e3b8699061180c492a9b07285a61da0", "fields": {"nom_de_la_commune": "POPOLASCA", "libell_d_acheminement": "POPOLASCA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B244"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050ebc64676ac31ffe880e7fb4fba14153526184", "fields": {"nom_de_la_commune": "LA PORTA", "libell_d_acheminement": "LA PORTA", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B246"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ac2c9ecefe428144312d19cdbb5612e7d1f8970", "fields": {"code_postal": "20243", "code_commune_insee": "2B251", "libell_d_acheminement": "PRUNELLI DI FIUMORBO", "ligne_5": "ABBAZIA", "nom_de_la_commune": "PRUNELLI DI FIUMORBO", "coordonnees_gps": [41.9932570337, 9.30778955947]}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3698d92dd1e60db00e029dc4c74ad41b98200c4", "fields": {"code_postal": "20213", "code_commune_insee": "2B252", "libell_d_acheminement": "PRUNO", "ligne_5": "CHAMPLAN", "nom_de_la_commune": "PRUNO", "coordonnees_gps": [42.4502169346, 9.47301730801]}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a776eddf3f2c5aac669379d0ac3109cdd0cf99b3", "fields": {"nom_de_la_commune": "ROSPIGLIANI", "libell_d_acheminement": "ROSPIGLIANI", "code_postal": "20242", "coordonnees_gps": [42.1615851652, 9.27345254485], "code_commune_insee": "2B263"}, "geometry": {"type": "Point", "coordinates": [9.27345254485, 42.1615851652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d065d496b203522fc83b1321ff31df9e4817f115", "fields": {"code_postal": "20213", "code_commune_insee": "2B286", "libell_d_acheminement": "SORBO OCAGNANO", "ligne_5": "QUERCIOLO", "nom_de_la_commune": "SORBO OCAGNANO", "coordonnees_gps": [42.4502169346, 9.47301730801]}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baec0b790cf4f1d8308fa8e0e710612f80b3b1d9", "fields": {"nom_de_la_commune": "SANT ANDREA DI COTONE", "libell_d_acheminement": "SANT ANDREA DI COTONE", "code_postal": "20221", "coordonnees_gps": [42.3298486664, 9.50290145478], "code_commune_insee": "2B293"}, "geometry": {"type": "Point", "coordinates": [9.50290145478, 42.3298486664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983e39523257f142f51c936b396d4f42f08e9275", "fields": {"nom_de_la_commune": "SAN DAMIANO", "libell_d_acheminement": "SAN DAMIANO", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B297"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b261530955611bab70298d46f7802430784b2d", "fields": {"code_postal": "20200", "code_commune_insee": "2B305", "libell_d_acheminement": "SAN MARTINO DI LOTA", "ligne_5": "PIETRANERA", "nom_de_la_commune": "SAN MARTINO DI LOTA", "coordonnees_gps": [42.7169845542, 9.42659304409]}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d4dbf630c615d5adf6dbfe5c0fb888fc743e58", "fields": {"nom_de_la_commune": "SANTA LUCIA DI MORIANI", "libell_d_acheminement": "SANTA LUCIA DI MORIANI", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B307"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88babdabf67b5b4c126fd2b8c71890789b9a7d4b", "fields": {"nom_de_la_commune": "TAGLIO ISOLACCIO", "libell_d_acheminement": "TAGLIO ISOLACCIO", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B318"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015e145e795aa24318b542d61428cb5a746da7b8", "fields": {"nom_de_la_commune": "TALLONE", "libell_d_acheminement": "TALLONE", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B320"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52a1f08943010efdf13e718c28ff19d156942404", "fields": {"nom_de_la_commune": "TOX", "libell_d_acheminement": "TOX", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B328"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc98be7df830aac44cfee8c6bf70a413d0e3d92f", "fields": {"nom_de_la_commune": "VALLE D OREZZA", "libell_d_acheminement": "VALLE D OREZZA", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B338"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfc13352fc633ed82d064fb8dc13fe66309164ad", "fields": {"nom_de_la_commune": "VILLE DI PARASO", "libell_d_acheminement": "VILLE DI PARASO", "code_postal": "20279", "coordonnees_gps": [42.5823551626, 8.98937313441], "code_commune_insee": "2B352"}, "geometry": {"type": "Point", "coordinates": [8.98937313441, 42.5823551626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaedc89639d572b7847be1e35d14d2aff378b53a", "fields": {"nom_de_la_commune": "VILLE DI PIETRABUGNO", "libell_d_acheminement": "VILLE DI PIETRABUGNO", "code_postal": "20200", "coordonnees_gps": [42.7169845542, 9.42659304409], "code_commune_insee": "2B353"}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bc58ecaf164d4fe9398934127b9500de499bddb", "fields": {"nom_de_la_commune": "SAN GAVINO DI FIUMORBO", "libell_d_acheminement": "SAN GAVINO DI FIUMORBO", "code_postal": "20243", "coordonnees_gps": [41.9932570337, 9.30778955947], "code_commune_insee": "2B365"}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c399ac41afbc2c43f72cde8a8943adc29f2d82b1", "fields": {"nom_de_la_commune": "CHISA", "libell_d_acheminement": "CHISA", "code_postal": "20240", "coordonnees_gps": [41.9691281261, 9.34452761596], "code_commune_insee": "2B366"}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "054f9cd3eb26f2cd1424b4bc2eecbb1ffaee30a8", "fields": {"nom_de_la_commune": "BEAUREGARD", "libell_d_acheminement": "BEAUREGARD", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01030"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6655784320c85ce069cae77a5de9eaeda4615d1", "fields": {"nom_de_la_commune": "BELIGNEUX", "libell_d_acheminement": "BELIGNEUX", "code_postal": "01360", "coordonnees_gps": [45.8283269463, 5.15327415034], "code_commune_insee": "01032"}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d646848bad1cafb1566d5ea6e987b57a4ebf64be", "fields": {"nom_de_la_commune": "ARTEMARE", "libell_d_acheminement": "ARTEMARE", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01022"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dc22c2188e277c334d033c75e6981b581aa03d5", "fields": {"nom_de_la_commune": "ARANDAS", "libell_d_acheminement": "ARANDAS", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01013"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca2830e7edf18f6d2068d2c17c117ce4ee51781", "fields": {"nom_de_la_commune": "ARGIS", "libell_d_acheminement": "ARGIS", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01017"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ba0167a4727f3314acc9ce8e81a6fc986eaa309", "fields": {"nom_de_la_commune": "BENY", "libell_d_acheminement": "BENY", "code_postal": "01370", "coordonnees_gps": [46.2853749129, 5.32614321781], "code_commune_insee": "01038"}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67b0fdb5e09f87a21b4c4bb406d282e6aebbfca", "fields": {"code_postal": "01250", "code_commune_insee": "01245", "libell_d_acheminement": "BOHAS MEYRIAT RIGNAT", "ligne_5": "RIGNAT", "nom_de_la_commune": "BOHAS MEYRIAT RIGNAT", "coordonnees_gps": [46.2066710432, 5.38605889851]}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feb823c4e1b2d72220cff2b9f59ec68a5f3bce04", "fields": {"nom_de_la_commune": "INJOUX GENISSIAT", "libell_d_acheminement": "INJOUX GENISSIAT", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01189"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3751e3220859d8cd99eadd1f8d638b2f1898556b", "fields": {"nom_de_la_commune": "GEOVREISSET", "libell_d_acheminement": "GEOVREISSET", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01171"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8afea42698059b7b4a2f53b02b7f7939aa5e6b13", "fields": {"nom_de_la_commune": "LAPEYROUSE", "libell_d_acheminement": "LAPEYROUSE", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01207"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea662f257b4faabdf79314fa98f515b7b8d12802", "fields": {"nom_de_la_commune": "MONTAGNIEU", "libell_d_acheminement": "MONTAGNIEU", "code_postal": "01470", "coordonnees_gps": [45.805864462, 5.47727707691], "code_commune_insee": "01255"}, "geometry": {"type": "Point", "coordinates": [5.47727707691, 45.805864462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a287fb7803380900e986ac67b2eb206afd53b7e3", "fields": {"nom_de_la_commune": "MARTIGNAT", "libell_d_acheminement": "MARTIGNAT", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01237"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e063abb7cb49e089cd245e191f2de5ff4580376", "fields": {"nom_de_la_commune": "LEYSSARD", "libell_d_acheminement": "LEYSSARD", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01214"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f3d9f77a9df500436bd40e88c139ab66095bba", "fields": {"nom_de_la_commune": "MONTLUEL", "libell_d_acheminement": "MONTLUEL", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01262"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79a3897718fa96ddec42a8f2fc6544547b94d931", "fields": {"nom_de_la_commune": "LAVOURS", "libell_d_acheminement": "LAVOURS", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01208"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56e64545cfb9d2a5bbac311d2d05984ae2d95551", "fields": {"nom_de_la_commune": "GRIEGES", "libell_d_acheminement": "GRIEGES", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01179"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c8c0695eff8b220e619505a9f74a6b7086e8302", "fields": {"nom_de_la_commune": "CORMARANCHE EN BUGEY", "libell_d_acheminement": "CORMARANCHE EN BUGEY", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01122"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b7483b6fa95130fc6a8b09d13cdae815b185428", "fields": {"nom_de_la_commune": "CHEZERY FORENS", "libell_d_acheminement": "CHEZERY FORENS", "code_postal": "01410", "coordonnees_gps": [46.2796643227, 5.91198359476], "code_commune_insee": "01104"}, "geometry": {"type": "Point", "coordinates": [5.91198359476, 46.2796643227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa77c121a7771566139d6649c8da69824f77a3e", "fields": {"nom_de_la_commune": "LAGORCE", "libell_d_acheminement": "LAGORCE", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33218"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328870da2206f999ecfe1c968df5e34a7a7e0062", "fields": {"nom_de_la_commune": "LAMARQUE", "libell_d_acheminement": "LAMARQUE", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33220"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c4e4360927ef2141a702c636f677cf5e72a1845", "fields": {"nom_de_la_commune": "LAMOTHE LANDERRON", "libell_d_acheminement": "LAMOTHE LANDERRON", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33221"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "397e9e67a4d0da42307d4ae3b1c0db0a330c53bc", "fields": {"nom_de_la_commune": "LATRESNE", "libell_d_acheminement": "LATRESNE", "code_postal": "33360", "coordonnees_gps": [44.7832045247, -0.471864525744], "code_commune_insee": "33234"}, "geometry": {"type": "Point", "coordinates": [-0.471864525744, 44.7832045247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a22bd2a34dca8d44d8b44d8915dbb36e1369775", "fields": {"nom_de_la_commune": "LESTIAC SUR GARONNE", "libell_d_acheminement": "LESTIAC SUR GARONNE", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33241"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb0640fdd66eaa2c5f72d866a8f1b21ecef7e7f", "fields": {"nom_de_la_commune": "LIGNAN DE BORDEAUX", "libell_d_acheminement": "LIGNAN DE BORDEAUX", "code_postal": "33360", "coordonnees_gps": [44.7832045247, -0.471864525744], "code_commune_insee": "33245"}, "geometry": {"type": "Point", "coordinates": [-0.471864525744, 44.7832045247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94184d7c9e2bf50d7bdcabb38e40f6e2147d5799", "fields": {"nom_de_la_commune": "LOUBENS", "libell_d_acheminement": "LOUBENS", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33250"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c09a3176a73c6ac497e45eded37b685f1e2981", "fields": {"nom_de_la_commune": "LOUPIAC", "libell_d_acheminement": "LOUPIAC", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33253"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ebc062ba347748e8212985724293076c572c3bf", "fields": {"nom_de_la_commune": "MARGAUX", "libell_d_acheminement": "MARGAUX", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33268"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f26a5591f7d8a780c0a1da2ab6acadfabe3cde6f", "fields": {"nom_de_la_commune": "MARIMBAULT", "libell_d_acheminement": "MARIMBAULT", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33270"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbb7456dbb42f5c167b511c7dadf236ec1979d49", "fields": {"nom_de_la_commune": "MARTILLAC", "libell_d_acheminement": "MARTILLAC", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33274"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bba23253f80fe3cbd1acb5484f81f568001cde1", "fields": {"nom_de_la_commune": "MASSUGAS", "libell_d_acheminement": "MASSUGAS", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33277"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10886a045b3951957e49964368cc1e57f185264b", "fields": {"nom_de_la_commune": "MAZION", "libell_d_acheminement": "MAZION", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33280"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844fc1d4cd64173e0158d6a8fe2439d11a6baa71", "fields": {"nom_de_la_commune": "MERIGNAC", "libell_d_acheminement": "MERIGNAC", "code_postal": "33700", "coordonnees_gps": [44.8322478118, -0.682174144265], "code_commune_insee": "33281"}, "geometry": {"type": "Point", "coordinates": [-0.682174144265, 44.8322478118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ecfc41cda7610294b436897484bea73edb8461f", "fields": {"nom_de_la_commune": "MOMBRIER", "libell_d_acheminement": "MOMBRIER", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33285"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bafa64bd80f413f1c4a761dad0f6fe44cf1fb561", "fields": {"nom_de_la_commune": "MONTIGNAC", "libell_d_acheminement": "MONTIGNAC", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33292"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3afd4cee0a7b20c8a521b4a780a3f1bfb6f10411", "fields": {"nom_de_la_commune": "MORIZES", "libell_d_acheminement": "MORIZES", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33294"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33add346eaa6c10c18373e25d98a2e52458a5a8b", "fields": {"nom_de_la_commune": "NAUJAN ET POSTIAC", "libell_d_acheminement": "NAUJAN ET POSTIAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33301"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a812a6cc51850cb226a6974722936ad9b1d87ab5", "fields": {"nom_de_la_commune": "NEAC", "libell_d_acheminement": "NEAC", "code_postal": "33500", "coordonnees_gps": [44.9225723992, -0.234534859794], "code_commune_insee": "33302"}, "geometry": {"type": "Point", "coordinates": [-0.234534859794, 44.9225723992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a35ff67d2f3b7c2f234ff8fa9b663b27cf1040a", "fields": {"nom_de_la_commune": "NERIGEAN", "libell_d_acheminement": "NERIGEAN", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33303"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4bc5dc0c2f6d03746d15a50cbd450974e6d4c68", "fields": {"nom_de_la_commune": "NOAILLAC", "libell_d_acheminement": "NOAILLAC", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33306"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b1742344b3abe2206dcfe3938b9db12c737227", "fields": {"nom_de_la_commune": "ORIGNE", "libell_d_acheminement": "ORIGNE", "code_postal": "33113", "coordonnees_gps": [44.4018539682, -0.484067531582], "code_commune_insee": "33310"}, "geometry": {"type": "Point", "coordinates": [-0.484067531582, 44.4018539682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af30aa6f4ed5b02b5ec3fbd8a9bc5910bc8dbc89", "fields": {"nom_de_la_commune": "POMPIGNAC", "libell_d_acheminement": "POMPIGNAC", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33330"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7888d712cf14609b0bae42ec0137a0adf7a15cb2", "fields": {"nom_de_la_commune": "PONDAURAT", "libell_d_acheminement": "PONDAURAT", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33331"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1312dae0ee9ed99e9eae1665a06ce65d192eba09", "fields": {"nom_de_la_commune": "PUYNORMAND", "libell_d_acheminement": "PUYNORMAND", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33347"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b59e1027d77801b409486088e9a0f713181b31d2", "fields": {"nom_de_la_commune": "QUEYRAC", "libell_d_acheminement": "QUEYRAC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33348"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5966b7b8cc32abe06701d215c18690fe86f7b556", "fields": {"nom_de_la_commune": "RIOCAUD", "libell_d_acheminement": "RIOCAUD", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33354"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92480b673dee5f18ed2b59cbf628db7948c30cff", "fields": {"nom_de_la_commune": "ROQUEBRUNE", "libell_d_acheminement": "ROQUEBRUNE", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33359"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf15e1a70a5e0036f5027717a2a2c4295c01c11", "fields": {"nom_de_la_commune": "ST ANDRE DU BOIS", "libell_d_acheminement": "ST ANDRE DU BOIS", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33367"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f1166f508e9dfd98952aa7ea1554be361491d01", "fields": {"nom_de_la_commune": "ST ANDRONY", "libell_d_acheminement": "ST ANDRONY", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33370"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf7751672e42c7e885ababa4eeed85efb61f5e4", "fields": {"nom_de_la_commune": "ST ANTOINE DU QUEYRET", "libell_d_acheminement": "ST ANTOINE DU QUEYRET", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33372"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42debd00f8cd73d6e1584d03de742fa05270b791", "fields": {"nom_de_la_commune": "ST AUBIN DE BLAYE", "libell_d_acheminement": "ST AUBIN DE BLAYE", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33374"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385965265bc39663ccf38b45bba1c69641b95f78", "fields": {"nom_de_la_commune": "ST AUBIN DE MEDOC", "libell_d_acheminement": "ST AUBIN DE MEDOC", "code_postal": "33160", "coordonnees_gps": [44.9057111601, -0.79310499686], "code_commune_insee": "33376"}, "geometry": {"type": "Point", "coordinates": [-0.79310499686, 44.9057111601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178b7a7ad18e57b3a2f8dbe20c33639b4cbdfbbe", "fields": {"code_postal": "33220", "code_commune_insee": "33378", "libell_d_acheminement": "ST AVIT ST NAZAIRE", "ligne_5": "ST NAZAIRE", "nom_de_la_commune": "ST AVIT ST NAZAIRE", "coordonnees_gps": [44.8116133881, 0.20923854264]}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d098ea758791417800ade8bd8f53c9442db9b43", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DE DOUBLE", "libell_d_acheminement": "ST CHRISTOPHE DE DOUBLE", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33385"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fcbd3a0ec964b22174e12e76c701a4e83982c71", "fields": {"nom_de_la_commune": "ST EMILION", "libell_d_acheminement": "ST EMILION", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33394"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934527b8d8c44a26d06a0fe0e6e198b13819def1", "fields": {"nom_de_la_commune": "ST ETIENNE DE LISSE", "libell_d_acheminement": "ST ETIENNE DE LISSE", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33396"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84ecdf21fe33f20e72be08790de180850c048c14", "fields": {"nom_de_la_commune": "ST FERME", "libell_d_acheminement": "ST FERME", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33400"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15cc7d7db9201914f0950770ea718f6f44585f2d", "fields": {"nom_de_la_commune": "ST GENES DE BLAYE", "libell_d_acheminement": "ST GENES DE BLAYE", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33405"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb740ec46768f211fac30b826bc98155d376d08b", "fields": {"nom_de_la_commune": "ST GENES DE CASTILLON", "libell_d_acheminement": "ST GENES DE CASTILLON", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33406"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c5a6cca3785d649e0bac31a548abecf8eab1716", "fields": {"nom_de_la_commune": "STE HELENE", "libell_d_acheminement": "STE HELENE", "code_postal": "33480", "coordonnees_gps": [45.0106483018, -0.859128963466], "code_commune_insee": "33417"}, "geometry": {"type": "Point", "coordinates": [-0.859128963466, 45.0106483018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76eed81c35bc3d7ac30e6ce558eceb28443a824a", "fields": {"nom_de_la_commune": "ST LAURENT DU BOIS", "libell_d_acheminement": "ST LAURENT DU BOIS", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33427"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7e2863f7532f337d500d378ceb2ebad3c3fdc8", "fields": {"nom_de_la_commune": "ST LEGER DE BALSON", "libell_d_acheminement": "ST LEGER DE BALSON", "code_postal": "33113", "coordonnees_gps": [44.4018539682, -0.484067531582], "code_commune_insee": "33429"}, "geometry": {"type": "Point", "coordinates": [-0.484067531582, 44.4018539682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8da2e61b63d967eec539b4f8fd06a0732a8be693", "fields": {"nom_de_la_commune": "ST MAGNE DE CASTILLON", "libell_d_acheminement": "ST MAGNE DE CASTILLON", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33437"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9ddae9cbcccbb9bb81083097e8f9352333922d", "fields": {"nom_de_la_commune": "ST MARTIN LACAUSSADE", "libell_d_acheminement": "ST MARTIN LACAUSSADE", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33441"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091a5bde173beb50c3bfd6b32727b95644bcb9ed", "fields": {"nom_de_la_commune": "ST MEDARD EN JALLES", "libell_d_acheminement": "ST MEDARD EN JALLES", "code_postal": "33160", "coordonnees_gps": [44.9057111601, -0.79310499686], "code_commune_insee": "33449"}, "geometry": {"type": "Point", "coordinates": [-0.79310499686, 44.9057111601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6e5c32fa371bdf9927cc22f01cc24d9ede82ad", "fields": {"nom_de_la_commune": "ST MICHEL DE FRONSAC", "libell_d_acheminement": "ST MICHEL DE FRONSAC", "code_postal": "33126", "coordonnees_gps": [44.9271630379, -0.290628388761], "code_commune_insee": "33451"}, "geometry": {"type": "Point", "coordinates": [-0.290628388761, 44.9271630379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9278aaef82806028534aa251a9dcd9eaa1a95a", "fields": {"nom_de_la_commune": "ST PALAIS", "libell_d_acheminement": "ST PALAIS", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33456"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ef863c4fb5f3809f99659a77794bfca81420c4", "fields": {"nom_de_la_commune": "ST PARDON DE CONQUES", "libell_d_acheminement": "ST PARDON DE CONQUES", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33457"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10aa9f307595a95913c5614ea8769bfb35bc236a", "fields": {"nom_de_la_commune": "ST PEY D ARMENS", "libell_d_acheminement": "ST PEY D ARMENS", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33459"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4969e4fde976f0b7e63ee5afa64f6d75fb2b222", "fields": {"nom_de_la_commune": "ST SAVIN", "libell_d_acheminement": "ST SAVIN", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33473"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "685bc289cd3eb78fdb0644549ce792a1b06c7a5c", "fields": {"nom_de_la_commune": "ST SEURIN SUR L ISLE", "libell_d_acheminement": "ST SEURIN SUR L ISLE", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33478"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fcd93a3b05c983666f6067cdb217bc3252cbd22", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "33113", "coordonnees_gps": [44.4018539682, -0.484067531582], "code_commune_insee": "33484"}, "geometry": {"type": "Point", "coordinates": [-0.484067531582, 44.4018539682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f325fbbee1c5f76ba8398156fb02175b70a56276", "fields": {"nom_de_la_commune": "SAMONAC", "libell_d_acheminement": "SAMONAC", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33500"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2fa24e1c0ad098e509da73ce09271a21af8605", "fields": {"nom_de_la_commune": "LA SAUVE", "libell_d_acheminement": "LA SAUVE", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33505"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9684103899335baa77f89f21be69b4c8118f075", "fields": {"nom_de_la_commune": "SAUVETERRE DE GUYENNE", "libell_d_acheminement": "SAUVETERRE DE GUYENNE", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33506"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1a1e1897936e1b00a3521a3cd1b8499c3f4f670", "fields": {"nom_de_la_commune": "SAUVIAC", "libell_d_acheminement": "SAUVIAC", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33507"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814af2eb2f4612c139c3e4decde26106d5aafdc9", "fields": {"nom_de_la_commune": "SAVIGNAC", "libell_d_acheminement": "SAVIGNAC", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33508"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eded712cf082653147a3b7e1cf44f7ead4a2273", "fields": {"nom_de_la_commune": "SEMENS", "libell_d_acheminement": "SEMENS", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33510"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1eb2b91360788c2f5ab92cb8932f465b1a763b", "fields": {"nom_de_la_commune": "SILLAS", "libell_d_acheminement": "SILLAS", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33513"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd3f849d58455865a1409f2bfc325c54a4153bc3", "fields": {"nom_de_la_commune": "LE TAILLAN MEDOC", "libell_d_acheminement": "LE TAILLAN MEDOC", "code_postal": "33320", "coordonnees_gps": [44.8968698852, -0.666404713084], "code_commune_insee": "33519"}, "geometry": {"type": "Point", "coordinates": [-0.666404713084, 44.8968698852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5023d798d2d6ed2e12cb72e490fc2d5d3e728f6b", "fields": {"nom_de_la_commune": "TARGON", "libell_d_acheminement": "TARGON", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33523"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ba3e9be9a9f8877463b9d8a0eec63ae8bf725e", "fields": {"nom_de_la_commune": "LE TEICH", "libell_d_acheminement": "LE TEICH", "code_postal": "33470", "coordonnees_gps": [44.5836668839, -1.04638835904], "code_commune_insee": "33527"}, "geometry": {"type": "Point", "coordinates": [-1.04638835904, 44.5836668839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ed8a9f744645bc8d2f92fa93e580b9d4774a66", "fields": {"code_postal": "33115", "code_commune_insee": "33529", "libell_d_acheminement": "LA TESTE DE BUCH", "ligne_5": "PYLA PLAGE", "nom_de_la_commune": "LA TESTE DE BUCH", "coordonnees_gps": [44.5562733518, -1.17522251719]}, "geometry": {"type": "Point", "coordinates": [-1.17522251719, 44.5562733518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "501e531bb58df4ae1a9a3ff91680ab2ad12e222c", "fields": {"code_postal": "33115", "code_commune_insee": "33529", "libell_d_acheminement": "LA TESTE DE BUCH", "ligne_5": "PYLA SUR MER", "nom_de_la_commune": "LA TESTE DE BUCH", "coordonnees_gps": [44.5562733518, -1.17522251719]}, "geometry": {"type": "Point", "coordinates": [-1.17522251719, 44.5562733518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9c0c4bfa357eef3d166f8c4e97b7d7dd87cb9f2", "fields": {"nom_de_la_commune": "LA TESTE DE BUCH", "libell_d_acheminement": "LA TESTE DE BUCH", "code_postal": "33260", "coordonnees_gps": [44.5562733518, -1.17522251719], "code_commune_insee": "33529"}, "geometry": {"type": "Point", "coordinates": [-1.17522251719, 44.5562733518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eda3ba5f95fc83e2a06571bb0c80d13acf7b56f", "fields": {"nom_de_la_commune": "VALEYRAC", "libell_d_acheminement": "VALEYRAC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33538"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d2cf982559a18d7bec6e3065b79e052d03b1cf0", "fields": {"nom_de_la_commune": "VENDAYS MONTALIVET", "libell_d_acheminement": "VENDAYS MONTALIVET", "code_postal": "33930", "coordonnees_gps": [45.3397159027, -1.10046795084], "code_commune_insee": "33540"}, "geometry": {"type": "Point", "coordinates": [-1.10046795084, 45.3397159027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "677639a6e14245521831adc206eac07353b4dccb", "fields": {"nom_de_la_commune": "VERDELAIS", "libell_d_acheminement": "VERDELAIS", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33543"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3cfab7532012094c1b04a9a7a2dc7f48486aa79", "fields": {"nom_de_la_commune": "LE VERDON SUR MER", "libell_d_acheminement": "LE VERDON SUR MER", "code_postal": "33123", "coordonnees_gps": [45.5385336761, -1.08033408498], "code_commune_insee": "33544"}, "geometry": {"type": "Point", "coordinates": [-1.08033408498, 45.5385336761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9efe6abeaa63af8449c94f7afe9659b51472793a", "fields": {"nom_de_la_commune": "VILLENAVE D ORNON", "libell_d_acheminement": "VILLENAVE D ORNON", "code_postal": "33140", "coordonnees_gps": [44.7623336559, -0.546471923225], "code_commune_insee": "33550"}, "geometry": {"type": "Point", "coordinates": [-0.546471923225, 44.7623336559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2440b35e1e77405275bc7c1a6e66050ee7d228bc", "fields": {"code_postal": "33140", "code_commune_insee": "33550", "libell_d_acheminement": "VILLENAVE D ORNON", "ligne_5": "PONT DE LA MAYE", "nom_de_la_commune": "VILLENAVE D ORNON", "coordonnees_gps": [44.7623336559, -0.546471923225]}, "geometry": {"type": "Point", "coordinates": [-0.546471923225, 44.7623336559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffb4e5ef37d2e4bc6412bba7dd33df3eab1a7cec", "fields": {"nom_de_la_commune": "VIRELADE", "libell_d_acheminement": "VIRELADE", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33552"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a95a7c13ea993daf9aa8f762b4728434a0e42f", "fields": {"nom_de_la_commune": "YVRAC", "libell_d_acheminement": "YVRAC", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33554"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84cf6edc53fe4db30ba506b2e4970b5ebe4a229e", "fields": {"nom_de_la_commune": "ADISSAN", "libell_d_acheminement": "ADISSAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34002"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942b0398391eeffeaa89f33bd14226ee8017966b", "fields": {"nom_de_la_commune": "AIGNE", "libell_d_acheminement": "AIGNE", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34006"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "249fab797f97862255c66f764a4cc42bd4670287", "fields": {"nom_de_la_commune": "ARBORAS", "libell_d_acheminement": "ARBORAS", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34011"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "477ded45614ece1781d93e3490a79217dace85a5", "fields": {"nom_de_la_commune": "BABEAU BOULDOUX", "libell_d_acheminement": "BABEAU BOULDOUX", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34021"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19babe317ffa14fc2bd9843879b001f52bdc3133", "fields": {"nom_de_la_commune": "BALARUC LES BAINS", "libell_d_acheminement": "BALARUC LES BAINS", "code_postal": "34540", "coordonnees_gps": [43.4557715487, 3.69388023516], "code_commune_insee": "34023"}, "geometry": {"type": "Point", "coordinates": [3.69388023516, 43.4557715487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4d26275025e5cee46013a920ece4a05f7f0ff33", "fields": {"nom_de_la_commune": "BERLOU", "libell_d_acheminement": "BERLOU", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34030"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6972aa0738774815dd2cfb6a46dc9309b566fc1f", "fields": {"nom_de_la_commune": "LA BOISSIERE", "libell_d_acheminement": "LA BOISSIERE", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34035"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1908ac186e80bcdc1ed6b75a58ae0cdeffb5a0fa", "fields": {"nom_de_la_commune": "CAUX", "libell_d_acheminement": "CAUX", "code_postal": "34720", "coordonnees_gps": [43.5050183405, 3.36706967492], "code_commune_insee": "34063"}, "geometry": {"type": "Point", "coordinates": [3.36706967492, 43.5050183405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3312df263f5681a38dd9045b4ede6c0ac2de83", "fields": {"nom_de_la_commune": "CAZEDARNES", "libell_d_acheminement": "CAZEDARNES", "code_postal": "34460", "coordonnees_gps": [43.4734338181, 3.02585092661], "code_commune_insee": "34065"}, "geometry": {"type": "Point", "coordinates": [3.02585092661, 43.4734338181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f69e20a2c19fe8a97efbed181df7f56233bf3d7", "fields": {"nom_de_la_commune": "CLAPIERS", "libell_d_acheminement": "CLAPIERS", "code_postal": "34830", "coordonnees_gps": [43.6624822527, 3.89381826906], "code_commune_insee": "34077"}, "geometry": {"type": "Point", "coordinates": [3.89381826906, 43.6624822527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73bb073020bdd03e8f0261b5617ace2d68861aa", "fields": {"nom_de_la_commune": "COLOMBIERES SUR ORB", "libell_d_acheminement": "COLOMBIERES SUR ORB", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34080"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ade33161511a2f25048e9f4d50f64f671a96b6d0", "fields": {"nom_de_la_commune": "CORNEILHAN", "libell_d_acheminement": "CORNEILHAN", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34084"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8649c98d5c6417a7e56532972f62f391919ff85", "fields": {"nom_de_la_commune": "LE CRES", "libell_d_acheminement": "LE CRES", "code_postal": "34920", "coordonnees_gps": [43.6526313405, 3.93657648045], "code_commune_insee": "34090"}, "geometry": {"type": "Point", "coordinates": [3.93657648045, 43.6526313405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7439e47fa6737052f90ec80e2290f9db6a99179c", "fields": {"nom_de_la_commune": "LE CROS", "libell_d_acheminement": "LE CROS", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34091"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d9d35d07decc7a3c607ca727bc522c759133a6", "fields": {"nom_de_la_commune": "FAUGERES", "libell_d_acheminement": "FAUGERES", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34096"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "196a317551b467023d08cee426c9e2010938f666", "fields": {"nom_de_la_commune": "FERRIERES POUSSAROU", "libell_d_acheminement": "FERRIERES POUSSAROU", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34100"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba818f519093c325c1892477fc8c43747b09b262", "fields": {"nom_de_la_commune": "FLORENSAC", "libell_d_acheminement": "FLORENSAC", "code_postal": "34510", "coordonnees_gps": [43.3860895701, 3.4638702012], "code_commune_insee": "34101"}, "geometry": {"type": "Point", "coordinates": [3.4638702012, 43.3860895701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0926e9546ac01090f0088bfcf7eef0b86a31c93d", "fields": {"code_postal": "34110", "code_commune_insee": "34108", "libell_d_acheminement": "FRONTIGNAN", "ligne_5": "LA PEYRADE", "nom_de_la_commune": "FRONTIGNAN", "coordonnees_gps": [43.471821386, 3.77729139459]}, "geometry": {"type": "Point", "coordinates": [3.77729139459, 43.471821386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b649ed0fe5ecb92a8e49cd6516b812630b6f1aa9", "fields": {"nom_de_la_commune": "GALARGUES", "libell_d_acheminement": "GALARGUES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34110"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61cb4d56df260510835777def5e745ba23e98da9", "fields": {"nom_de_la_commune": "GIGEAN", "libell_d_acheminement": "GIGEAN", "code_postal": "34770", "coordonnees_gps": [43.4943425717, 3.72370204074], "code_commune_insee": "34113"}, "geometry": {"type": "Point", "coordinates": [3.72370204074, 43.4943425717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45060a2aa56e5af99f6403e4929223ef88fdb653", "fields": {"nom_de_la_commune": "GORNIES", "libell_d_acheminement": "GORNIES", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34115"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "296c087d60ee13d8d05f6fe4b907888230a15a5b", "fields": {"nom_de_la_commune": "GRABELS", "libell_d_acheminement": "GRABELS", "code_postal": "34790", "coordonnees_gps": [43.6506124782, 3.79422332863], "code_commune_insee": "34116"}, "geometry": {"type": "Point", "coordinates": [3.79422332863, 43.6506124782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9290a3db91f4fdcaa9d8692d31ff9e5c79fbfd4c", "fields": {"nom_de_la_commune": "GUZARGUES", "libell_d_acheminement": "GUZARGUES", "code_postal": "34820", "coordonnees_gps": [43.7090659495, 3.91319760845], "code_commune_insee": "34118"}, "geometry": {"type": "Point", "coordinates": [3.91319760845, 43.7090659495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58864ed4a1e8f7f4220c36b6c5f7d6658847380", "fields": {"nom_de_la_commune": "JUVIGNAC", "libell_d_acheminement": "JUVIGNAC", "code_postal": "34990", "coordonnees_gps": [43.624483688, 3.79617171878], "code_commune_insee": "34123"}, "geometry": {"type": "Point", "coordinates": [3.79617171878, 43.624483688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d811e2560d4969b4e490f0e1568d40afb9f3b138", "fields": {"nom_de_la_commune": "LAMALOU LES BAINS", "libell_d_acheminement": "LAMALOU LES BAINS", "code_postal": "34240", "coordonnees_gps": [43.6002437249, 3.06165252657], "code_commune_insee": "34126"}, "geometry": {"type": "Point", "coordinates": [3.06165252657, 43.6002437249]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd91a12707a15f6391689cb16a0eb0e81f23d5df", "fields": {"nom_de_la_commune": "LAROQUE", "libell_d_acheminement": "LAROQUE", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34128"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54e34444adc169240ce25b2b87925395b14382e", "fields": {"nom_de_la_commune": "LUGNY", "libell_d_acheminement": "LUGNY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02444"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc960350e25bb19a9e5c8d0a9d12ae50b3c1db03", "fields": {"nom_de_la_commune": "MARCY", "libell_d_acheminement": "MARCY", "code_postal": "02720", "coordonnees_gps": [49.8506777552, 3.38251026426], "code_commune_insee": "02459"}, "geometry": {"type": "Point", "coordinates": [3.38251026426, 49.8506777552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "955169cdb8bc59126f6c956768b61a9e7163d714", "fields": {"nom_de_la_commune": "LIME", "libell_d_acheminement": "LIME", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02432"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9f411c9b76057859903784ac85084403f58a15e", "fields": {"nom_de_la_commune": "ROCOURT ST MARTIN", "libell_d_acheminement": "ROCOURT ST MARTIN", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02649"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aae209bf0f35f3a0f9f44b46b09b8cf5e9611f8c", "fields": {"nom_de_la_commune": "PIGNICOURT", "libell_d_acheminement": "PIGNICOURT", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02601"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8d842b08b975c3f487b5527d08bd5878ccbeecf", "fields": {"nom_de_la_commune": "RENANSART", "libell_d_acheminement": "RENANSART", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02640"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09e1a2c36c9babac803535c80392c84e0f632f1a", "fields": {"nom_de_la_commune": "ROUGERIES", "libell_d_acheminement": "ROUGERIES", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02657"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb4d66c74991a6efc3c9fffe2fb84d268f024b0f", "fields": {"nom_de_la_commune": "PERNANT", "libell_d_acheminement": "PERNANT", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02598"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c507b164d9f3bbc013fdb402b59793a24f5146e", "fields": {"nom_de_la_commune": "PLOISY", "libell_d_acheminement": "PLOISY", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02607"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab1d0c4233442790b4585f57298b413e206f1627", "fields": {"nom_de_la_commune": "PINON", "libell_d_acheminement": "PINON", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02602"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb356af339243e1645d6f28e0e5f953715abdebf", "fields": {"nom_de_la_commune": "REGNY", "libell_d_acheminement": "REGNY", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02636"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d513e7520024427f02ecaf1eb5e2a767574525e", "fields": {"nom_de_la_commune": "ROUPY", "libell_d_acheminement": "ROUPY", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02658"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "313e5fb0492d3f96772176047d9d763ef1bccdfc", "fields": {"nom_de_la_commune": "LAVAL EN LAONNOIS", "libell_d_acheminement": "LAVAL EN LAONNOIS", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02413"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "372e85953435566820a092b14cf9f60c5ac016d6", "fields": {"nom_de_la_commune": "LANDRICOURT", "libell_d_acheminement": "LANDRICOURT", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02406"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24c18f2e55f447ef2a1ff768a6b7b5c8a4402b76", "fields": {"nom_de_la_commune": "LAFFAUX", "libell_d_acheminement": "LAFFAUX", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02400"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df647031ab7aa3bf4529f8c66f6f5ba15ddfa19c", "fields": {"nom_de_la_commune": "LAPPION", "libell_d_acheminement": "LAPPION", "code_postal": "02150", "coordonnees_gps": [49.5724565859, 3.96353926072], "code_commune_insee": "02409"}, "geometry": {"type": "Point", "coordinates": [3.96353926072, 49.5724565859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d976c856ec4173c8905b731b16dcb8accc1d7155", "fields": {"nom_de_la_commune": "IVIERS", "libell_d_acheminement": "IVIERS", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02388"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "428773c5bb4545d3830887ea1ab3497506013f81", "fields": {"nom_de_la_commune": "LAIGNY", "libell_d_acheminement": "LAIGNY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02401"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b825e73171e94b87b5320a22c52fc6a46d582a8", "fields": {"nom_de_la_commune": "LESGES", "libell_d_acheminement": "LESGES", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02421"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f2b3dd4c45ad4635bfff40eb9e5a8a049dc70c", "fields": {"nom_de_la_commune": "LEURY", "libell_d_acheminement": "LEURY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02424"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "011f846d8be986a6870bee5be2aa5651c7298022", "fields": {"nom_de_la_commune": "LEUZE", "libell_d_acheminement": "LEUZE", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02425"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb1156d20acb469f9988845999dd751b9b5ed61", "fields": {"nom_de_la_commune": "LIEZ", "libell_d_acheminement": "LIEZ", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02431"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78125aa40990f39dbebef193f035108db5f745c2", "fields": {"nom_de_la_commune": "ORIGNY STE BENOITE", "libell_d_acheminement": "ORIGNY STE BENOITE", "code_postal": "02390", "coordonnees_gps": [49.8377010181, 3.51039258756], "code_commune_insee": "02575"}, "geometry": {"type": "Point", "coordinates": [3.51039258756, 49.8377010181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a856c4e52f6d03f49f0a1482577c79e6b7241d", "fields": {"nom_de_la_commune": "PARGNY LA DHUYS", "libell_d_acheminement": "PARGNY LA DHUYS", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02590"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c48dbd1b9fcd6bef99cc704a07b5beec7eb32841", "fields": {"nom_de_la_commune": "NOGENT L ARTAUD", "libell_d_acheminement": "NOGENT L ARTAUD", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02555"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b4e8118d3971c4b795e814d1e8700a99538d8a9", "fields": {"nom_de_la_commune": "PASSY EN VALOIS", "libell_d_acheminement": "PASSY EN VALOIS", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02594"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f388212e42e4c74752e406267a1696357d3cfe79", "fields": {"nom_de_la_commune": "NIZY LE COMTE", "libell_d_acheminement": "NIZY LE COMTE", "code_postal": "02150", "coordonnees_gps": [49.5724565859, 3.96353926072], "code_commune_insee": "02553"}, "geometry": {"type": "Point", "coordinates": [3.96353926072, 49.5724565859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0153f12e55273e70c6f9bd757869f46631ec64dd", "fields": {"nom_de_la_commune": "ORAINVILLE", "libell_d_acheminement": "ORAINVILLE", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02572"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55777ec1f937ff539007e3733c3eb5b20abb330f", "fields": {"nom_de_la_commune": "PAPLEUX", "libell_d_acheminement": "PAPLEUX", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02584"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4154aa50dea31484b322935697dc7cc55cc49b2e", "fields": {"nom_de_la_commune": "OMISSY", "libell_d_acheminement": "OMISSY", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02571"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da29d1980ae3709849a9b767ba0821001c922d3d", "fields": {"nom_de_la_commune": "PAARS", "libell_d_acheminement": "PAARS", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02581"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92fa28e4d3a81a1d501d240f2744e3ea3122037", "fields": {"code_postal": "02600", "code_commune_insee": "02810", "libell_d_acheminement": "VILLERS COTTERETS", "ligne_5": "PISSELEUX", "nom_de_la_commune": "VILLERS COTTERETS", "coordonnees_gps": [49.2730511855, 3.12339772854]}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54a107b0914604cb3efad7f1be438878ed27d1d0", "fields": {"nom_de_la_commune": "VILLERS ST CHRISTOPHE", "libell_d_acheminement": "VILLERS ST CHRISTOPHE", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02815"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63d179b8b032dfc02647bb1ac7e04206b1c7660b", "fields": {"nom_de_la_commune": "VILLENEUVE SUR FERE", "libell_d_acheminement": "VILLENEUVE SUR FERE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02806"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88872b8208dec529cfa810e9c09bbe9616cb4cdf", "fields": {"nom_de_la_commune": "VILLEQUIER AUMONT", "libell_d_acheminement": "VILLEQUIER AUMONT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02807"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00796420564d3bbd6a85aa5452760a7ca481fbba", "fields": {"nom_de_la_commune": "VILLEMONTOIRE", "libell_d_acheminement": "VILLEMONTOIRE", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02804"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de422d57c87a4a4c50754b09f75cfaf0941d6a34", "fields": {"nom_de_la_commune": "LE VERGUIER", "libell_d_acheminement": "LE VERGUIER", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02782"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c7c79216600ab9def6e53a829a491dd91e9ab0d", "fields": {"nom_de_la_commune": "PETIT VERLY", "libell_d_acheminement": "PETIT VERLY", "code_postal": "02630", "coordonnees_gps": [49.9922293283, 3.57095592896], "code_commune_insee": "02784"}, "geometry": {"type": "Point", "coordinates": [3.57095592896, 49.9922293283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00ae17d0dc1ec665aece6f3a8b2f6750e2414e31", "fields": {"nom_de_la_commune": "VAUXREZIS", "libell_d_acheminement": "VAUXREZIS", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02767"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9da7bef4e1cec453bf3bd37631fec966c960c5", "fields": {"nom_de_la_commune": "VENDIERES", "libell_d_acheminement": "VENDIERES", "code_postal": "02540", "coordonnees_gps": [48.9128673746, 3.4403848461], "code_commune_insee": "02777"}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41362695ce7c83b1ad331e2c2968130237b0926b", "fields": {"nom_de_la_commune": "VASSENY", "libell_d_acheminement": "VASSENY", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02763"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "232813b8fa86b52c0da2f6991249ba825f2072f9", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX CHASSES", "libell_d_acheminement": "LA CHAPELLE AUX CHASSES", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03057"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be073fca2005d67f3107e3b5d699727c52a694a7", "fields": {"nom_de_la_commune": "CREUZIER LE VIEUX", "libell_d_acheminement": "CREUZIER LE VIEUX", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03094"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17026a843a34df931d01facdb7df374ea99acadf", "fields": {"nom_de_la_commune": "DROITURIER", "libell_d_acheminement": "DROITURIER", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03105"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84447d3c71b31ba0c32ef5dad76f23b58c6ae687", "fields": {"nom_de_la_commune": "CHOUVIGNY", "libell_d_acheminement": "CHOUVIGNY", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03078"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4162e60228bfdb111429ed1134fec24707b5db9c", "fields": {"nom_de_la_commune": "COULANDON", "libell_d_acheminement": "COULANDON", "code_postal": "03000", "coordonnees_gps": [46.5704726367, 3.27970202933], "code_commune_insee": "03085"}, "geometry": {"type": "Point", "coordinates": [3.27970202933, 46.5704726367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1284683f64195e269d32b7d497b5c6fc414d669f", "fields": {"nom_de_la_commune": "CHANTELLE", "libell_d_acheminement": "CHANTELLE", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03053"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da0dbe8650e7aeb4e64c0934e757dce971a46441", "fields": {"nom_de_la_commune": "CHEVAGNES", "libell_d_acheminement": "CHEVAGNES", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03074"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb1ab5fd471eb9395fec0cf7a7e5b6f08940c2c", "fields": {"nom_de_la_commune": "CHATELUS", "libell_d_acheminement": "CHATELUS", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03068"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9df0eca0ec8722b9fd9f5489da15f3cb79bfc8fc", "fields": {"nom_de_la_commune": "CHARMEIL", "libell_d_acheminement": "CHARMEIL", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03060"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d541290eb40e7d5772f467246da585892f88886", "fields": {"nom_de_la_commune": "CINDRE", "libell_d_acheminement": "CINDRE", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03079"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1d84830b7e27a9e9b08b03cf068e27b9ad2ba72", "fields": {"nom_de_la_commune": "BEAUNE D ALLIER", "libell_d_acheminement": "BEAUNE D ALLIER", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03020"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46349b824cc700feda244ca70f5f04fe5e07d3d9", "fields": {"nom_de_la_commune": "BARBERIER", "libell_d_acheminement": "BARBERIER", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03016"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a44c257ef5b9210b905c0035695615b053e8f04", "fields": {"nom_de_la_commune": "VIVIERES", "libell_d_acheminement": "VIVIERES", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02822"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c24520d0d2411cfdd13630d8c1b058f96176f60", "fields": {"nom_de_la_commune": "CHAMBLET", "libell_d_acheminement": "CHAMBLET", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03052"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32bbda1c75e260bd81ffaca9cc59678e5db55f32", "fields": {"nom_de_la_commune": "WATIGNY", "libell_d_acheminement": "WATIGNY", "code_postal": "02830", "coordonnees_gps": [49.9229668289, 4.16909562963], "code_commune_insee": "02831"}, "geometry": {"type": "Point", "coordinates": [4.16909562963, 49.9229668289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d6a675f949da1fdffad69376a84bb4b157978c", "fields": {"nom_de_la_commune": "AVERMES", "libell_d_acheminement": "AVERMES", "code_postal": "03000", "coordonnees_gps": [46.5704726367, 3.27970202933], "code_commune_insee": "03013"}, "geometry": {"type": "Point", "coordinates": [3.27970202933, 46.5704726367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d71a273b3abf119ca1e95815d6aa00414dd08e", "fields": {"nom_de_la_commune": "AGONGES", "libell_d_acheminement": "AGONGES", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03002"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f6834b3b9b0a1303380c3d5ea4e4ae13b1b5b59", "fields": {"nom_de_la_commune": "BRESNAY", "libell_d_acheminement": "BRESNAY", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03039"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6adb011e5d338e3d23ecfa2202fab0428f065649", "fields": {"nom_de_la_commune": "VREGNY", "libell_d_acheminement": "VREGNY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02828"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3751f53e4af1f1f1db2b8ea1fd0564086f96d4d5", "fields": {"nom_de_la_commune": "AUDES", "libell_d_acheminement": "AUDES", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03010"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bda712648a9c8f769a6986ab24441ea67b07501", "fields": {"code_postal": "04340", "code_commune_insee": "04161", "libell_d_acheminement": "MEOLANS REVEL", "ligne_5": "MEOLANS", "nom_de_la_commune": "MEOLANS REVEL", "coordonnees_gps": [44.4048142358, 6.43134796483]}, "geometry": {"type": "Point", "coordinates": [6.43134796483, 44.4048142358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2229fe1be4642e861af8c4cbb8bc2ec8226f681", "fields": {"nom_de_la_commune": "LA ROBINE SUR GALABRE", "libell_d_acheminement": "LA ROBINE SUR GALABRE", "code_postal": "04000", "coordonnees_gps": [44.1282802436, 6.25179168531], "code_commune_insee": "04167"}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "103229d31246cdbf80ec46126bc31b2facc7017d", "fields": {"nom_de_la_commune": "ST VINCENT LES FORTS", "libell_d_acheminement": "ST VINCENT LES FORTS", "code_postal": "04340", "coordonnees_gps": [44.4048142358, 6.43134796483], "code_commune_insee": "04198"}, "geometry": {"type": "Point", "coordinates": [6.43134796483, 44.4048142358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f76f656ee25c842a4cedb8105790f94f955eef46", "fields": {"nom_de_la_commune": "ST PAUL SUR UBAYE", "libell_d_acheminement": "ST PAUL SUR UBAYE", "code_postal": "04530", "coordonnees_gps": [44.529721781, 6.79644418503], "code_commune_insee": "04193"}, "geometry": {"type": "Point", "coordinates": [6.79644418503, 44.529721781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8bae90cfbf89f1010ceb3199979cf1d242ff31b", "fields": {"nom_de_la_commune": "PIERRERUE", "libell_d_acheminement": "PIERRERUE", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04151"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21bae89d6af506ce598cdff0aa43f75ef44d0fec", "fields": {"code_postal": "02700", "code_commune_insee": "02738", "libell_d_acheminement": "TERGNIER", "ligne_5": "QUESSY", "nom_de_la_commune": "TERGNIER", "coordonnees_gps": [49.6402663387, 3.29629531322]}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "623cc90d2887825581cc9781ada8313c30252f9f", "fields": {"nom_de_la_commune": "TOULIS ET ATTENCOURT", "libell_d_acheminement": "TOULIS ET ATTENCOURT", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02745"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea4dddb5aaa24962beaa65fc2e78d368be22b190", "fields": {"nom_de_la_commune": "VAILLY SUR AISNE", "libell_d_acheminement": "VAILLY SUR AISNE", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02758"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cef63a52b49ee82c2aa9d36c38a8ac0406abbd59", "fields": {"nom_de_la_commune": "UGNY LE GAY", "libell_d_acheminement": "UGNY LE GAY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02754"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45f19c4953bcbe085365716f54a61b3780d46ef3", "fields": {"nom_de_la_commune": "TERNY SORNY", "libell_d_acheminement": "TERNY SORNY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02739"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d50c900d82318b9ad130a4c303216312ba60ee69", "fields": {"nom_de_la_commune": "VARISCOURT", "libell_d_acheminement": "VARISCOURT", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02761"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a4656be89441c884237b7deec05577f0f7c8f0", "fields": {"nom_de_la_commune": "TARTIERS", "libell_d_acheminement": "TARTIERS", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02736"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a10ed33f91dd7b6fa12ab18a1d7a76c032abfe4", "fields": {"nom_de_la_commune": "LE SOURD", "libell_d_acheminement": "LE SOURD", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02731"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fe7cb185014da671eeb9d3814c13c3142b5fd5e", "fields": {"nom_de_la_commune": "THIERNU", "libell_d_acheminement": "THIERNU", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02742"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e80a2905d160420ea64b029857446348e273c1e", "fields": {"nom_de_la_commune": "TRUCY", "libell_d_acheminement": "TRUCY", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02751"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c783b3432069c30df0a69e458836605385fe1bff", "fields": {"code_postal": "04320", "code_commune_insee": "04043", "libell_d_acheminement": "VAL DE CHALVAGNE", "ligne_5": "MONTBLANC", "nom_de_la_commune": "VAL DE CHALVAGNE", "coordonnees_gps": [43.9774312961, 6.76983906157]}, "geometry": {"type": "Point", "coordinates": [6.76983906157, 43.9774312961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2936bdb4aaf17eda58d5a9276f9c1ee0dacd445b", "fields": {"code_postal": "04250", "code_commune_insee": "04023", "libell_d_acheminement": "BAYONS", "ligne_5": "ESPARRON LA BATIE", "nom_de_la_commune": "BAYONS", "coordonnees_gps": [44.3409779854, 6.11647395481]}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c44906f677baaeca7267a7850280d8814f615e8", "fields": {"code_postal": "04120", "code_commune_insee": "04039", "libell_d_acheminement": "CASTELLANE", "ligne_5": "TAULANNE", "nom_de_la_commune": "CASTELLANE", "coordonnees_gps": [43.8281340441, 6.48115762991]}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "befc0b6c89f7c2163c04c117bd3c7558e0f84ee5", "fields": {"code_postal": "04120", "code_commune_insee": "04039", "libell_d_acheminement": "CASTELLANE", "ligne_5": "TALOIRE", "nom_de_la_commune": "CASTELLANE", "coordonnees_gps": [43.8281340441, 6.48115762991]}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2605ef94d96a8187588ded15d0f96e5fe2183a5c", "fields": {"code_postal": "04120", "code_commune_insee": "04039", "libell_d_acheminement": "CASTELLANE", "ligne_5": "EOULX", "nom_de_la_commune": "CASTELLANE", "coordonnees_gps": [43.8281340441, 6.48115762991]}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6492ce15186303e8d0a8bebd4b9e70f91162a1d8", "fields": {"nom_de_la_commune": "CHATEAU ARNOUX ST AUBAN", "libell_d_acheminement": "CHATEAU ARNOUX ST AUBAN", "code_postal": "04160", "coordonnees_gps": [44.0832938785, 6.01511256781], "code_commune_insee": "04049"}, "geometry": {"type": "Point", "coordinates": [6.01511256781, 44.0832938785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f07a1d5cbd4e6e9444bc204d77b821191f3719", "fields": {"nom_de_la_commune": "CASTELLET LES SAUSSES", "libell_d_acheminement": "CASTELLET LES SAUSSES", "code_postal": "04320", "coordonnees_gps": [43.9774312961, 6.76983906157], "code_commune_insee": "04042"}, "geometry": {"type": "Point", "coordinates": [6.76983906157, 43.9774312961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbab481f631892ccce7e312ed5a50951b0d000e", "fields": {"nom_de_la_commune": "CHAUDON NORANTE", "libell_d_acheminement": "CHAUDON NORANTE", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04055"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9b1ca42ee6cc3edc0c069b21068a98947a3202", "fields": {"nom_de_la_commune": "CHATEAUREDON", "libell_d_acheminement": "CHATEAUREDON", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04054"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59781b5fa144a97d639992f2b665a0871c8729a2", "fields": {"nom_de_la_commune": "BRUNET", "libell_d_acheminement": "BRUNET", "code_postal": "04210", "coordonnees_gps": [43.8471806316, 5.95950406566], "code_commune_insee": "04035"}, "geometry": {"type": "Point", "coordinates": [5.95950406566, 43.8471806316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44ced6e7dc4ee72ae657d24c5c41006d77d6f9d", "fields": {"nom_de_la_commune": "VILLENEUVE SUR ALLIER", "libell_d_acheminement": "VILLENEUVE SUR ALLIER", "code_postal": "03460", "coordonnees_gps": [46.6591659055, 3.26064885085], "code_commune_insee": "03316"}, "geometry": {"type": "Point", "coordinates": [3.26064885085, 46.6591659055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eaa22683cb1307bb3905ea6dc8e6a167607db4c", "fields": {"nom_de_la_commune": "VARENNES SUR ALLIER", "libell_d_acheminement": "VARENNES SUR ALLIER", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03298"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a36023607c6c969a5cced88d0a8e9079ae1e18dc", "fields": {"nom_de_la_commune": "AUBENAS LES ALPES", "libell_d_acheminement": "AUBENAS LES ALPES", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04012"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ad89909216f9587a7779458e45ad8205b73ec8", "fields": {"nom_de_la_commune": "USSEL D ALLIER", "libell_d_acheminement": "USSEL D ALLIER", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03294"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d9f9c97dad92cf2931a9ce372a3526ae0915bd6", "fields": {"nom_de_la_commune": "LE VERNET", "libell_d_acheminement": "LE VERNET", "code_postal": "03200", "coordonnees_gps": [46.1075083503, 3.45428306112], "code_commune_insee": "03306"}, "geometry": {"type": "Point", "coordinates": [3.45428306112, 46.1075083503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5515e324edc88f71d10296826da8c7c60b2f386d", "fields": {"nom_de_la_commune": "YGRANDE", "libell_d_acheminement": "YGRANDE", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03320"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "822b6fceb4f3fe208600949cdffb1646c7d50834", "fields": {"nom_de_la_commune": "VIPLAIX", "libell_d_acheminement": "VIPLAIX", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03317"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1480e2eca42ef6807192da282512ac5973d6bf", "fields": {"nom_de_la_commune": "BARRAS", "libell_d_acheminement": "BARRAS", "code_postal": "04380", "coordonnees_gps": [44.1606174491, 6.13108296701], "code_commune_insee": "04021"}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5c189323acdaf472611cd5760b4149113fe36f", "fields": {"nom_de_la_commune": "VENDAT", "libell_d_acheminement": "VENDAT", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03304"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01f708d6a059ba598424b0336c353feaab3df713", "fields": {"nom_de_la_commune": "VENAS", "libell_d_acheminement": "VENAS", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03303"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af2cee13d4a8b62f0199391fd0a30d3a77e46fe4", "fields": {"nom_de_la_commune": "SAINS RICHAUMONT", "libell_d_acheminement": "SAINS RICHAUMONT", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02668"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bf6f1c01cf3c668acff89ea31d5510a77000b6a", "fields": {"nom_de_la_commune": "ROZOY BELLEVALLE", "libell_d_acheminement": "ROZOY BELLEVALLE", "code_postal": "02540", "coordonnees_gps": [48.9128673746, 3.4403848461], "code_commune_insee": "02664"}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8639cd6051d2f7406bd475ec5224e53c01b4522", "fields": {"nom_de_la_commune": "ROZOY SUR SERRE", "libell_d_acheminement": "ROZOY SUR SERRE", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02666"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed0cbb10eeff1f063a52d6364ff039064837847", "fields": {"nom_de_la_commune": "ROZET ST ALBIN", "libell_d_acheminement": "ROZET ST ALBIN", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02662"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a358b769e1f268c01cbe40dbf96cc77850ee0b4", "fields": {"nom_de_la_commune": "BEUTIN", "libell_d_acheminement": "BEUTIN", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62124"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d213db8cea88c70f9737de58a938aff2a46d172", "fields": {"nom_de_la_commune": "BIEFVILLERS LES BAPAUME", "libell_d_acheminement": "BIEFVILLERS LES BAPAUME", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62129"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34e6b8ef4464ee85e71aef4582f5b296b8359b52", "fields": {"nom_de_la_commune": "BILLY BERCLAU", "libell_d_acheminement": "BILLY BERCLAU", "code_postal": "62138", "coordonnees_gps": [50.5179062037, 2.8111923561], "code_commune_insee": "62132"}, "geometry": {"type": "Point", "coordinates": [2.8111923561, 50.5179062037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a069d5ab2cec5415ecca75174a007e4ea65fc74a", "fields": {"nom_de_la_commune": "BLAIRVILLE", "libell_d_acheminement": "BLAIRVILLE", "code_postal": "62173", "coordonnees_gps": [50.2219083528, 2.6997796891], "code_commune_insee": "62135"}, "geometry": {"type": "Point", "coordinates": [2.6997796891, 50.2219083528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d09eae3bae3bae96603738030632eb51079a9e", "fields": {"nom_de_la_commune": "BOIRY BECQUERELLE", "libell_d_acheminement": "BOIRY BECQUERELLE", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62144"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527df18b5952e6f68b47630a7d280f4082fd8380", "fields": {"nom_de_la_commune": "BOIRY ST MARTIN", "libell_d_acheminement": "BOIRY ST MARTIN", "code_postal": "62175", "coordonnees_gps": [50.2052015663, 2.76287210363], "code_commune_insee": "62146"}, "geometry": {"type": "Point", "coordinates": [2.76287210363, 50.2052015663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60a0ce2b973f518a23f4dc38265d5f8d3c31050e", "fields": {"nom_de_la_commune": "BOIRY STE RICTRUDE", "libell_d_acheminement": "BOIRY STE RICTRUDE", "code_postal": "62175", "coordonnees_gps": [50.2052015663, 2.76287210363], "code_commune_insee": "62147"}, "geometry": {"type": "Point", "coordinates": [2.76287210363, 50.2052015663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ee0be3c4b6fd43b89d7c4b70f8ed7ea921607d", "fields": {"nom_de_la_commune": "BOMY", "libell_d_acheminement": "BOMY", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62153"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dae55eb5c8ff2c403625c9c2d2441dce733d4a8e", "fields": {"nom_de_la_commune": "BOUBERS LES HESMOND", "libell_d_acheminement": "BOUBERS LES HESMOND", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62157"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfa79622a083acaf89c0ec07a84a4ca28808ee59", "fields": {"nom_de_la_commune": "BOUBERS SUR CANCHE", "libell_d_acheminement": "BOUBERS SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62158"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fab7791afdb27197e36e9001610c3b9ed4050bb", "fields": {"nom_de_la_commune": "BOURNONVILLE", "libell_d_acheminement": "BOURNONVILLE", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62165"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48542f5055a2b5742a3b6d473cccff0095af91cf", "fields": {"nom_de_la_commune": "BOUVIGNY BOYEFFLES", "libell_d_acheminement": "BOUVIGNY BOYEFFLES", "code_postal": "62172", "coordonnees_gps": [50.4226151051, 2.67356839978], "code_commune_insee": "62170"}, "geometry": {"type": "Point", "coordinates": [2.67356839978, 50.4226151051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3875719dfc486a07cd58fca51048de2d5d328297", "fields": {"nom_de_la_commune": "BREVILLERS", "libell_d_acheminement": "BREVILLERS", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62175"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "622fd80c4c7a340eccdcd5149b3c096f87456aa9", "fields": {"code_postal": "62700", "code_commune_insee": "62178", "libell_d_acheminement": "BRUAY LA BUISSIERE", "ligne_5": "LABUISSIERE", "nom_de_la_commune": "BRUAY LA BUISSIERE", "coordonnees_gps": [50.489902932, 2.55175766281]}, "geometry": {"type": "Point", "coordinates": [2.55175766281, 50.489902932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46cfaef9ea4fec6e443172c029870020a011137d", "fields": {"nom_de_la_commune": "BUS", "libell_d_acheminement": "BUS", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62189"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e2c504377bf29f2afe4d5da93952d49cc62ea19", "fields": {"nom_de_la_commune": "CALONNE RICOUART", "libell_d_acheminement": "CALONNE RICOUART", "code_postal": "62470", "coordonnees_gps": [50.4810470816, 2.46209198935], "code_commune_insee": "62194"}, "geometry": {"type": "Point", "coordinates": [2.46209198935, 50.4810470816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e205d04c2c0c16b285fb17e93829bd6f6b84fd96", "fields": {"nom_de_la_commune": "CAMBRIN", "libell_d_acheminement": "CAMBRIN", "code_postal": "62149", "coordonnees_gps": [50.526774017, 2.73934770262], "code_commune_insee": "62200"}, "geometry": {"type": "Point", "coordinates": [2.73934770262, 50.526774017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddbcf0b579d5c69086b35193d546a32d536caadf", "fields": {"nom_de_la_commune": "CAMIERS", "libell_d_acheminement": "CAMIERS", "code_postal": "62176", "coordonnees_gps": [50.5643841007, 1.61258915324], "code_commune_insee": "62201"}, "geometry": {"type": "Point", "coordinates": [1.61258915324, 50.5643841007]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "573df694c60891c5671156b2ec239536d4a94ccc", "fields": {"nom_de_la_commune": "CANETTEMONT", "libell_d_acheminement": "CANETTEMONT", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62208"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebbdb8ac2dfdeaf1787d184382c0b55ae5bb40af", "fields": {"nom_de_la_commune": "CLENLEU", "libell_d_acheminement": "CLENLEU", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62227"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c7072892fe55dc6a79875f282f7decba3528e7", "fields": {"nom_de_la_commune": "COQUELLES", "libell_d_acheminement": "COQUELLES", "code_postal": "62231", "coordonnees_gps": [50.929758247, 1.77843645708], "code_commune_insee": "62239"}, "geometry": {"type": "Point", "coordinates": [1.77843645708, 50.929758247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9ac063a5268b4096ea2ac6e4456895b67f24c7", "fields": {"nom_de_la_commune": "COURCELLES LE COMTE", "libell_d_acheminement": "COURCELLES LE COMTE", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62248"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a0a0ca776d45a19b411d7a9e8b08ff4f0699e5a", "fields": {"nom_de_la_commune": "COURRIERES", "libell_d_acheminement": "COURRIERES", "code_postal": "62710", "coordonnees_gps": [50.4533636722, 2.94632750771], "code_commune_insee": "62250"}, "geometry": {"type": "Point", "coordinates": [2.94632750771, 50.4533636722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f86a3ab33c55617f4869554b6edcc2cd56c67335", "fields": {"nom_de_la_commune": "COURSET", "libell_d_acheminement": "COURSET", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62251"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1afc4c720bf7cf05c50e76f3bf598ac88db9cc16", "fields": {"nom_de_la_commune": "CROIX EN TERNOIS", "libell_d_acheminement": "CROIX EN TERNOIS", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62260"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbcc043d8d7e25d30a4761c1e209b8c9b69bd133", "fields": {"code_postal": "62780", "code_commune_insee": "62261", "libell_d_acheminement": "CUCQ", "ligne_5": "STELLA", "nom_de_la_commune": "CUCQ", "coordonnees_gps": [50.4862400419, 1.61385342585]}, "geometry": {"type": "Point", "coordinates": [1.61385342585, 50.4862400419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08e42729957488380489233af6db3ae6081889cc", "fields": {"code_postal": "62780", "code_commune_insee": "62261", "libell_d_acheminement": "CUCQ", "ligne_5": "TREPIED", "nom_de_la_commune": "CUCQ", "coordonnees_gps": [50.4862400419, 1.61385342585]}, "geometry": {"type": "Point", "coordinates": [1.61385342585, 50.4862400419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d746042f608134f30bdc33d4c7cd4314bd48a01", "fields": {"nom_de_la_commune": "DOUDEAUVILLE", "libell_d_acheminement": "DOUDEAUVILLE", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62273"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a891f5e0902bc0dcfa3926f2a94de647dfce26", "fields": {"nom_de_la_commune": "ECOIVRES", "libell_d_acheminement": "ECOIVRES", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62283"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d1b239e4297f3333ca03d55ea81009964ee427c", "fields": {"nom_de_la_commune": "ECQUES", "libell_d_acheminement": "ECQUES", "code_postal": "62129", "coordonnees_gps": [50.6463145648, 2.25326814344], "code_commune_insee": "62288"}, "geometry": {"type": "Point", "coordinates": [2.25326814344, 50.6463145648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb07f72b8e19b07e8f2a9b05b1c85d76618df179", "fields": {"nom_de_la_commune": "EMBRY", "libell_d_acheminement": "EMBRY", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62293"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3863293722d79c0a9e99e3e882561152d347fd5", "fields": {"nom_de_la_commune": "ESCOEUILLES", "libell_d_acheminement": "ESCOEUILLES", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62308"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "012297a5b56fc7c6877785caf04f3ce766983675", "fields": {"nom_de_la_commune": "ESSARS", "libell_d_acheminement": "ESSARS", "code_postal": "62400", "coordonnees_gps": [50.5494833407, 2.65621048886], "code_commune_insee": "62310"}, "geometry": {"type": "Point", "coordinates": [2.65621048886, 50.5494833407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a6ac9de49fbc81677ee7e425d0b905d8c27e293", "fields": {"nom_de_la_commune": "ESTEVELLES", "libell_d_acheminement": "ESTEVELLES", "code_postal": "62880", "coordonnees_gps": [50.470091244, 2.86997706713], "code_commune_insee": "62311"}, "geometry": {"type": "Point", "coordinates": [2.86997706713, 50.470091244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37757dbe9bfa59aa21406bd76656ef9901778d3", "fields": {"nom_de_la_commune": "EVIN MALMAISON", "libell_d_acheminement": "EVIN MALMAISON", "code_postal": "62141", "coordonnees_gps": [50.4349292384, 3.03040414257], "code_commune_insee": "62321"}, "geometry": {"type": "Point", "coordinates": [3.03040414257, 50.4349292384]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d876ae74a0a6591260c0d1df9f32037f2af00d", "fields": {"nom_de_la_commune": "FAUQUEMBERGUES", "libell_d_acheminement": "FAUQUEMBERGUES", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62325"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a4ccb421e2a75843c1c464551e6533e1aeeb24", "fields": {"nom_de_la_commune": "FERQUES", "libell_d_acheminement": "FERQUES", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62329"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcbd2f026f29325b5f54de5715b8bcda59f8201f", "fields": {"nom_de_la_commune": "FIEFS", "libell_d_acheminement": "FIEFS", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62333"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99d012cde5f7bc8d0ca6fbb3a22da0fa01585f31", "fields": {"nom_de_la_commune": "FLERS", "libell_d_acheminement": "FLERS", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62337"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76dd1fccf1962b8f9ce6cbea9eba2a8de657c4e3", "fields": {"nom_de_la_commune": "FOUQUIERES LES BETHUNE", "libell_d_acheminement": "FOUQUIERES LES BETHUNE", "code_postal": "62232", "coordonnees_gps": [50.5485643749, 2.61912647325], "code_commune_insee": "62350"}, "geometry": {"type": "Point", "coordinates": [2.61912647325, 50.5485643749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b9883915ec0ad397c2fbad29255f6e2335c0e0e", "fields": {"nom_de_la_commune": "FRESNOY EN GOHELLE", "libell_d_acheminement": "FRESNOY EN GOHELLE", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62358"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6c18086e8a2cbeb4d1da85a5d9b226dc95766e", "fields": {"nom_de_la_commune": "FREVENT", "libell_d_acheminement": "FREVENT", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62361"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29e4cdbf2f66f4b6f93b43fc15dc07b878f4469b", "fields": {"nom_de_la_commune": "FREVIN CAPELLE", "libell_d_acheminement": "FREVIN CAPELLE", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62363"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d3213da446e686c472f86ee1eaea4e97a0c7b4", "fields": {"nom_de_la_commune": "GAUCHIN VERLOINGT", "libell_d_acheminement": "GAUCHIN VERLOINGT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62367"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d87f742c462abf4a898a0908c14c78a3a63f8e56", "fields": {"nom_de_la_commune": "GAUDIEMPRE", "libell_d_acheminement": "GAUDIEMPRE", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62368"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc14d98fdd272dfd01d72ba6d80a016e6a8255e9", "fields": {"nom_de_la_commune": "GENNES IVERGNY", "libell_d_acheminement": "GENNES IVERGNY", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62370"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce94160589deeeb6d1b93d4d306ef666b2c0f2e", "fields": {"nom_de_la_commune": "GIVENCHY LE NOBLE", "libell_d_acheminement": "GIVENCHY LE NOBLE", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62372"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf79682eaa2387060c15ef134dbaa8becd367226", "fields": {"nom_de_la_commune": "GOUY EN ARTOIS", "libell_d_acheminement": "GOUY EN ARTOIS", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62379"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e67103cb689a07097e7a4164febc0c6aaa5156f", "fields": {"nom_de_la_commune": "GOUY EN TERNOIS", "libell_d_acheminement": "GOUY EN TERNOIS", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62381"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe054ed7e4fd60526e9fc03fd5a3b383da4eba1", "fields": {"nom_de_la_commune": "GRENAY", "libell_d_acheminement": "GRENAY", "code_postal": "62160", "coordonnees_gps": [50.434305501, 2.71988094941], "code_commune_insee": "62386"}, "geometry": {"type": "Point", "coordinates": [2.71988094941, 50.434305501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00bf4420bfa3319f3e0d22b522afe2eb9b736f9e", "fields": {"nom_de_la_commune": "GUEMPS", "libell_d_acheminement": "GUEMPS", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62393"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab52dfb16764a3e88021d2c3a56978d7d8a02d4", "fields": {"nom_de_la_commune": "GUINES", "libell_d_acheminement": "GUINES", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62397"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1fcc15620a00589d5f5a8fe8a5ede7b37d5bcf8", "fields": {"nom_de_la_commune": "HAUTE AVESNES", "libell_d_acheminement": "HAUTE AVESNES", "code_postal": "62144", "coordonnees_gps": [50.3578850683, 2.67826739933], "code_commune_insee": "62415"}, "geometry": {"type": "Point", "coordinates": [2.67826739933, 50.3578850683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "744898d2a62a35d5fee9acfc28d29cbeaa71f41b", "fields": {"nom_de_la_commune": "HAUTECLOQUE", "libell_d_acheminement": "HAUTECLOQUE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62416"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0c1b371b3c2fdd6ad12d3405e477010d3cbea0", "fields": {"nom_de_la_commune": "HENIN BEAUMONT", "libell_d_acheminement": "HENIN BEAUMONT", "code_postal": "62110", "coordonnees_gps": [50.4089896838, 2.9592962532], "code_commune_insee": "62427"}, "geometry": {"type": "Point", "coordinates": [2.9592962532, 50.4089896838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16037bf36ffd0ca47a30f6f88c230ce967e735ae", "fields": {"nom_de_la_commune": "HERLY", "libell_d_acheminement": "HERLY", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62437"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999d7d9bb7cc12679da5e2401f8db30fb12c8436", "fields": {"nom_de_la_commune": "HERMIN", "libell_d_acheminement": "HERMIN", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62441"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "497201d0b93e9ba8d35fc74436b9abba049c793e", "fields": {"nom_de_la_commune": "HESDIGNEUL LES BETHUNE", "libell_d_acheminement": "HESDIGNEUL LES BETHUNE", "code_postal": "62196", "coordonnees_gps": [50.4965295651, 2.59665402967], "code_commune_insee": "62445"}, "geometry": {"type": "Point", "coordinates": [2.59665402967, 50.4965295651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d78b7379fcc65a6c70379259139970a54cb29a", "fields": {"nom_de_la_commune": "HEUCHIN", "libell_d_acheminement": "HEUCHIN", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62451"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "137ee3f013c670b2c90c96184fe3b7d2d6998027", "fields": {"nom_de_la_commune": "HEURINGHEM", "libell_d_acheminement": "HEURINGHEM", "code_postal": "62575", "coordonnees_gps": [50.7082994019, 2.28233236739], "code_commune_insee": "62452"}, "geometry": {"type": "Point", "coordinates": [2.28233236739, 50.7082994019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ee0fdba9c20213124cfb14cbe6d7139b0fb3575", "fields": {"nom_de_la_commune": "HOUVIN HOUVIGNEUL", "libell_d_acheminement": "HOUVIN HOUVIGNEUL", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62459"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14ab0d587fb48d1a801652d353eeec64d3d15f18", "fields": {"nom_de_la_commune": "HULLUCH", "libell_d_acheminement": "HULLUCH", "code_postal": "62410", "coordonnees_gps": [50.4882510126, 2.84772935438], "code_commune_insee": "62464"}, "geometry": {"type": "Point", "coordinates": [2.84772935438, 50.4882510126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "980744ad8ee3a9f95930b6ad6b756e3c7c8a985d", "fields": {"nom_de_la_commune": "HUMBERCAMPS", "libell_d_acheminement": "HUMBERCAMPS", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62465"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e17225bd40cb7614557892eb5e46828a0882e9f1", "fields": {"nom_de_la_commune": "HUMEROEUILLE", "libell_d_acheminement": "HUMEROEUILLE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62467"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83aa836884988a492bc89e11466488d9390327f1", "fields": {"nom_de_la_commune": "INGHEM", "libell_d_acheminement": "INGHEM", "code_postal": "62129", "coordonnees_gps": [50.6463145648, 2.25326814344], "code_commune_insee": "62471"}, "geometry": {"type": "Point", "coordinates": [2.25326814344, 50.6463145648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2665e48bec0ad9504534990aebe828e900bb5ce7", "fields": {"nom_de_la_commune": "IVERGNY", "libell_d_acheminement": "IVERGNY", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62475"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79748e4b1ca2ed09ca060d953b558fb5f42fc0ad", "fields": {"nom_de_la_commune": "IZEL LES EQUERCHIN", "libell_d_acheminement": "IZEL LES EQUERCHIN", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62476"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999791e9b90d7fc84615a74275b7042b87b8c14c", "fields": {"nom_de_la_commune": "LATTRE ST QUENTIN", "libell_d_acheminement": "LATTRE ST QUENTIN", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62490"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d47e188a6f3ab9d944c3767e84d48c8bba060cb", "fields": {"nom_de_la_commune": "LEBUCQUIERE", "libell_d_acheminement": "LEBUCQUIERE", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62493"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f68a74ea010a54baf40d961499c76ca760923c", "fields": {"nom_de_la_commune": "LEFOREST", "libell_d_acheminement": "LEFOREST", "code_postal": "62790", "coordonnees_gps": [50.4402178935, 3.05867311112], "code_commune_insee": "62497"}, "geometry": {"type": "Point", "coordinates": [3.05867311112, 50.4402178935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "054619076eff78fbce21cebb9b1b8809a9452e23", "fields": {"nom_de_la_commune": "LIETTRES", "libell_d_acheminement": "LIETTRES", "code_postal": "62145", "coordonnees_gps": [50.5958443707, 2.29512440043], "code_commune_insee": "62509"}, "geometry": {"type": "Point", "coordinates": [2.29512440043, 50.5958443707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e9457c0ea16bf77f00038c7461ad384b6f6a73f", "fields": {"nom_de_la_commune": "LIEVIN", "libell_d_acheminement": "LIEVIN", "code_postal": "62800", "coordonnees_gps": [50.4242897318, 2.77286861156], "code_commune_insee": "62510"}, "geometry": {"type": "Point", "coordinates": [2.77286861156, 50.4242897318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acb2fb0632daf7461e1dbcae9e014e90494275e1", "fields": {"nom_de_la_commune": "LIGNEREUIL", "libell_d_acheminement": "LIGNEREUIL", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62511"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c61bc773529479ce555f94043f5c3d80b642dd6b", "fields": {"nom_de_la_commune": "LINZEUX", "libell_d_acheminement": "LINZEUX", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62518"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae90e65ae88f96cd08cbdc748a98b4a3ad75ff27", "fields": {"nom_de_la_commune": "LISBOURG", "libell_d_acheminement": "LISBOURG", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62519"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ee98e73099c1bd27e14e8201cf28be579f0b71b", "fields": {"nom_de_la_commune": "LONGUEVILLE", "libell_d_acheminement": "LONGUEVILLE", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62526"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90ebb4ccd3742cdae53ffd410790dda762f32cd2", "fields": {"nom_de_la_commune": "LOOS EN GOHELLE", "libell_d_acheminement": "LOOS EN GOHELLE", "code_postal": "62750", "coordonnees_gps": [50.4566891569, 2.78542373274], "code_commune_insee": "62528"}, "geometry": {"type": "Point", "coordinates": [2.78542373274, 50.4566891569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26719194e943f8747eaf201859c1747e75e482d2", "fields": {"nom_de_la_commune": "LOUCHES", "libell_d_acheminement": "LOUCHES", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62531"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "409affbcfc6cfe8015d42ef1feec08379a00fea3", "fields": {"nom_de_la_commune": "MAINTENAY", "libell_d_acheminement": "MAINTENAY", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62538"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d90fe8da1eeefad46d855d904b12c4c3a0efaa", "fields": {"nom_de_la_commune": "MAISNIL LES RUITZ", "libell_d_acheminement": "MAISNIL LES RUITZ", "code_postal": "62620", "coordonnees_gps": [50.4611274621, 2.60092856741], "code_commune_insee": "62540"}, "geometry": {"type": "Point", "coordinates": [2.60092856741, 50.4611274621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c415369a04a1dc70dfa54d006a95df2ec5a19f12", "fields": {"nom_de_la_commune": "MAISONCELLE", "libell_d_acheminement": "MAISONCELLE", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62541"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5944d7a2e151386cb5c6f5273e0025a730db3b", "fields": {"nom_de_la_commune": "MAIZIERES", "libell_d_acheminement": "MAIZIERES", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62542"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70bc27da3ec0094a1833b09b56275917db26ccf7", "fields": {"nom_de_la_commune": "MANINGHEM", "libell_d_acheminement": "MANINGHEM", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62545"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a6221ff74764f80d4fdaf769d829c9d201bb0f", "fields": {"nom_de_la_commune": "MAREST", "libell_d_acheminement": "MAREST", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62553"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f1786937a0e04d539ac43596fd3dab07a542b17", "fields": {"nom_de_la_commune": "MARLES SUR CANCHE", "libell_d_acheminement": "MARLES SUR CANCHE", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62556"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adaebca9274a8ef5bbe0838ddba732a35f5246a", "fields": {"nom_de_la_commune": "MENCAS", "libell_d_acheminement": "MENCAS", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62565"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0108e954cb9ffb2734722aa38a4c564088dd38ad", "fields": {"nom_de_la_commune": "MEURCHIN", "libell_d_acheminement": "MEURCHIN", "code_postal": "62410", "coordonnees_gps": [50.4882510126, 2.84772935438], "code_commune_insee": "62573"}, "geometry": {"type": "Point", "coordinates": [2.84772935438, 50.4882510126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b165e5f7e98bd1576daaa4ed0420dab9f8b49628", "fields": {"nom_de_la_commune": "MORINGHEM", "libell_d_acheminement": "MORINGHEM", "code_postal": "62910", "coordonnees_gps": [50.7991488939, 2.16031831269], "code_commune_insee": "62592"}, "geometry": {"type": "Point", "coordinates": [2.16031831269, 50.7991488939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1df406d771e20c702fcdc778a0a47ca9b83605a8", "fields": {"nom_de_la_commune": "MORY", "libell_d_acheminement": "MORY", "code_postal": "62159", "coordonnees_gps": [50.1507346874, 2.907151936], "code_commune_insee": "62594"}, "geometry": {"type": "Point", "coordinates": [2.907151936, 50.1507346874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00f79300d33a0f6372a466449592f981727b2975", "fields": {"nom_de_la_commune": "NABRINGHEN", "libell_d_acheminement": "NABRINGHEN", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62599"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7085e85a311ab2cd1776e5929cec73df0b731bca", "fields": {"nom_de_la_commune": "NEDONCHEL", "libell_d_acheminement": "NEDONCHEL", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62601"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ddcfd8b0fa8423672437b281d40b3b618541452", "fields": {"nom_de_la_commune": "NEMPONT ST FIRMIN", "libell_d_acheminement": "NEMPONT ST FIRMIN", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62602"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d888775f985e3011f6232bb40fc0fcf5ac62be", "fields": {"nom_de_la_commune": "NEUVILLE VITASSE", "libell_d_acheminement": "NEUVILLE VITASSE", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62611"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea2bcb08049fea4230b57a740e23cde823094b96", "fields": {"nom_de_la_commune": "NEUVIREUIL", "libell_d_acheminement": "NEUVIREUIL", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62612"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf56b98a78bbe7199b90473c1604cb804dcbbf11", "fields": {"nom_de_la_commune": "NIELLES LES ARDRES", "libell_d_acheminement": "NIELLES LES ARDRES", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62614"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "639ae60c0ccee8e2e7c5f10a9b38f3502b9aae41", "fields": {"nom_de_la_commune": "NORRENT FONTES", "libell_d_acheminement": "NORRENT FONTES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62620"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e961209404039dfe0760710daf1948fff62a78e", "fields": {"nom_de_la_commune": "NORTKERQUE", "libell_d_acheminement": "NORTKERQUE", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62621"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec6a3d35332365e34199903bcf9bfaf7109eb322", "fields": {"nom_de_la_commune": "NOYELLES LES VERMELLES", "libell_d_acheminement": "NOYELLES LES VERMELLES", "code_postal": "62980", "coordonnees_gps": [50.4874081361, 2.75177824999], "code_commune_insee": "62626"}, "geometry": {"type": "Point", "coordinates": [2.75177824999, 50.4874081361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ae47d2bedaf2e979f82ea66a3c1e6d33aedd24", "fields": {"nom_de_la_commune": "NOYELLETTE", "libell_d_acheminement": "NOYELLETTE", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62629"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10369d00cd48310064238c7811dd4dfb6c185580", "fields": {"code_postal": "62270", "code_commune_insee": "62631", "libell_d_acheminement": "NUNCQ HAUTECOTE", "ligne_5": "HAUTECOTE", "nom_de_la_commune": "NUNCQ HAUTECOTE", "coordonnees_gps": [50.280518399, 2.28550384111]}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8514665ee13fc01c8ba955928e1facfd40662bee", "fields": {"nom_de_la_commune": "THOIRY", "libell_d_acheminement": "THOIRY", "code_postal": "73230", "coordonnees_gps": [45.6155984939, 5.99766818006], "code_commune_insee": "73293"}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd1d9c1eaea25634e0cb6fb4b81739fcf710dae2", "fields": {"nom_de_la_commune": "LA THUILE", "libell_d_acheminement": "LA THUILE", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73294"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c2fa9cf3d66b98a0f19319f030c041687a36df", "fields": {"nom_de_la_commune": "TREVIGNIN", "libell_d_acheminement": "TREVIGNIN", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73301"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd703311115b9d07cf849d122f6288ebff9475dd", "fields": {"nom_de_la_commune": "VAL D ISERE", "libell_d_acheminement": "VAL D ISERE", "code_postal": "73150", "coordonnees_gps": [45.431085171, 6.99838882776], "code_commune_insee": "73304"}, "geometry": {"type": "Point", "coordinates": [6.99838882776, 45.431085171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305023c7f5be78cd1641a247a6840798c3c485dd", "fields": {"nom_de_la_commune": "VEREL PRAGONDRAN", "libell_d_acheminement": "VEREL PRAGONDRAN", "code_postal": "73230", "coordonnees_gps": [45.6155984939, 5.99766818006], "code_commune_insee": "73310"}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcc60e5ffe13acf65642e2ed5f561b14e1d9e5a8", "fields": {"nom_de_la_commune": "VERRENS ARVEY", "libell_d_acheminement": "VERRENS ARVEY", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73312"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "547d96289e9050b446e76531ae78a5bc87a990d4", "fields": {"code_postal": "73300", "code_commune_insee": "73318", "libell_d_acheminement": "VILLAREMBERT", "ligne_5": "LE CORBIER", "nom_de_la_commune": "VILLAREMBERT", "coordonnees_gps": [45.2555418724, 6.33510660794]}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "494f1d175696be9876e8dac62b1e3a7a69615f67", "fields": {"nom_de_la_commune": "VIMINES", "libell_d_acheminement": "VIMINES", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73326"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e40bb79f7f4c331cf86527d20414aa0f985b20da", "fields": {"nom_de_la_commune": "ABONDANCE", "libell_d_acheminement": "ABONDANCE", "code_postal": "74360", "coordonnees_gps": [46.2907146867, 6.73957320561], "code_commune_insee": "74001"}, "geometry": {"type": "Point", "coordinates": [6.73957320561, 46.2907146867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c43543e2949a1eede976a0abb27f54d70c9c9d3", "fields": {"nom_de_la_commune": "ALBY SUR CHERAN", "libell_d_acheminement": "ALBY SUR CHERAN", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74002"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e321d0751f6c8d0a2267478e091fb81efee8d03b", "fields": {"code_postal": "74350", "code_commune_insee": "74006", "libell_d_acheminement": "ALLONZIER LA CAILLE", "ligne_5": "AVREGNY", "nom_de_la_commune": "ALLONZIER LA CAILLE", "coordonnees_gps": [46.0441260373, 6.10638974302]}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b98f5c71fbccced6e40adec880dc5c9f258786c", "fields": {"nom_de_la_commune": "ANDILLY", "libell_d_acheminement": "ANDILLY", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74009"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d546ef720ae34a67a770c13948be5e1370bada1", "fields": {"code_postal": "74350", "code_commune_insee": "74009", "libell_d_acheminement": "ANDILLY", "ligne_5": "JUSSY", "nom_de_la_commune": "ANDILLY", "coordonnees_gps": [46.0441260373, 6.10638974302]}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "513441e10e4d5ed95f05127daf1ada5c8d359675", "fields": {"nom_de_la_commune": "ANNECY LE VIEUX", "libell_d_acheminement": "ANNECY LE VIEUX", "code_postal": "74940", "coordonnees_gps": [45.9191606664, 6.16129913677], "code_commune_insee": "74011"}, "geometry": {"type": "Point", "coordinates": [6.16129913677, 45.9191606664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ac2950208fcaed6f5f358143ebcee499c523340", "fields": {"nom_de_la_commune": "ANTHY SUR LEMAN", "libell_d_acheminement": "ANTHY SUR LEMAN", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74013"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9750f35675fd501af6c375bf4d599e5842949730", "fields": {"nom_de_la_commune": "ARACHES LA FRASSE", "libell_d_acheminement": "ARACHES LA FRASSE", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74014"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccce5f2af0e56ea2525f731e11e13b1f1a84d94e", "fields": {"nom_de_la_commune": "ARBUSIGNY", "libell_d_acheminement": "ARBUSIGNY", "code_postal": "74930", "coordonnees_gps": [46.1144620291, 6.25657495958], "code_commune_insee": "74015"}, "geometry": {"type": "Point", "coordinates": [6.25657495958, 46.1144620291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c686bd0e75ece6282bed820ba5c642d77cdec6d3", "fields": {"nom_de_la_commune": "ARGONAY", "libell_d_acheminement": "ARGONAY", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74019"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa61a16abb6a8764768cae22a7cde80c2d42b63", "fields": {"nom_de_la_commune": "LA BALME DE SILLINGY", "libell_d_acheminement": "LA BALME DE SILLINGY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74026"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a3d1c2aa3c90fd4f704c3c3a2b5a290ad3fcaa", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74031"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30460bcad8209472e22c126997541f1914ee31b9", "fields": {"nom_de_la_commune": "BLUFFY", "libell_d_acheminement": "BLUFFY", "code_postal": "74290", "coordonnees_gps": [45.8619270539, 6.21689519918], "code_commune_insee": "74036"}, "geometry": {"type": "Point", "coordinates": [6.21689519918, 45.8619270539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afbf6b161519a02bc8a92bc16b00d9c84483e4c0", "fields": {"nom_de_la_commune": "BRENTHONNE", "libell_d_acheminement": "BRENTHONNE", "code_postal": "74890", "coordonnees_gps": [46.2697106618, 6.38657932887], "code_commune_insee": "74048"}, "geometry": {"type": "Point", "coordinates": [6.38657932887, 46.2697106618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3768246598a6b63307c8ae92b01b6edf45424356", "fields": {"nom_de_la_commune": "BURDIGNIN", "libell_d_acheminement": "BURDIGNIN", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74050"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643fcd96d5bd87431504b47bf9e8c68e8d3ff2e8", "fields": {"nom_de_la_commune": "CERNEX", "libell_d_acheminement": "CERNEX", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74052"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe2d1dafa011008bab8f197972e0fbbe1bb4fce", "fields": {"nom_de_la_commune": "CHAMONIX MONT BLANC", "libell_d_acheminement": "CHAMONIX MONT BLANC", "code_postal": "74400", "coordonnees_gps": [45.931307263, 6.92411845534], "code_commune_insee": "74056"}, "geometry": {"type": "Point", "coordinates": [6.92411845534, 45.931307263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "194ac5443c0a41eb135d1ddc8000d021c38acc39", "fields": {"code_postal": "74400", "code_commune_insee": "74056", "libell_d_acheminement": "CHAMONIX MONT BLANC", "ligne_5": "ARGENTIERE", "nom_de_la_commune": "CHAMONIX MONT BLANC", "coordonnees_gps": [45.931307263, 6.92411845534]}, "geometry": {"type": "Point", "coordinates": [6.92411845534, 45.931307263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caeac705f31cf483edbaec43a1142ec322d2c064", "fields": {"nom_de_la_commune": "CHARVONNEX", "libell_d_acheminement": "CHARVONNEX", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74062"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db75eee500d955d121c3e29a03fe027c9bba4ff", "fields": {"nom_de_la_commune": "CHAUMONT", "libell_d_acheminement": "CHAUMONT", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74065"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3087ce551ef3dc2e3c5490f433a6dc488fd008cd", "fields": {"nom_de_la_commune": "CHESSENAZ", "libell_d_acheminement": "CHESSENAZ", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74071"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2317b61dc82a5e8c45a1dd365f0f9afd03369926", "fields": {"nom_de_la_commune": "CHEVALINE", "libell_d_acheminement": "CHEVALINE", "code_postal": "74210", "coordonnees_gps": [45.7728684273, 6.25852210813], "code_commune_insee": "74072"}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d71d4ffac43d0eb8d74ff11e6e3f637293c76f1b", "fields": {"nom_de_la_commune": "CHEVRIER", "libell_d_acheminement": "CHEVRIER", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74074"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd174a9fcada49d10d397cb07047e9cacff7a835", "fields": {"nom_de_la_commune": "DESINGY", "libell_d_acheminement": "DESINGY", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74100"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36b6a86419cad03ef517de7fcad9e1a45dfa0e50", "fields": {"nom_de_la_commune": "DINGY ST CLAIR", "libell_d_acheminement": "DINGY ST CLAIR", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74102"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56935b4a6a05cdd943cd0b72adac1fc29241c3b4", "fields": {"nom_de_la_commune": "ELOISE", "libell_d_acheminement": "ELOISE", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "74109"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b922504ba06804ce4991683663abff8641c1b53b", "fields": {"nom_de_la_commune": "ENTREMONT", "libell_d_acheminement": "ENTREMONT", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74110"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c617029534bb612029ab5fbf7f2cc542fd54082d", "fields": {"nom_de_la_commune": "ETERCY", "libell_d_acheminement": "ETERCY", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74117"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cf70e936e911694cc2e843369c2ef326790b32b", "fields": {"nom_de_la_commune": "ETREMBIERES", "libell_d_acheminement": "ETREMBIERES", "code_postal": "74100", "coordonnees_gps": [46.1886553142, 6.24703235488], "code_commune_insee": "74118"}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f91596d6d34da54f85e0116fa47943ed685ff69c", "fields": {"nom_de_la_commune": "GAILLARD", "libell_d_acheminement": "GAILLARD", "code_postal": "74240", "coordonnees_gps": [46.1818310734, 6.20729991716], "code_commune_insee": "74133"}, "geometry": {"type": "Point", "coordinates": [6.20729991716, 46.1818310734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d098b91bda2e26f3345c62812a87b45686ec33b9", "fields": {"nom_de_la_commune": "LES GETS", "libell_d_acheminement": "LES GETS", "code_postal": "74260", "coordonnees_gps": [46.1542788496, 6.66019508475], "code_commune_insee": "74134"}, "geometry": {"type": "Point", "coordinates": [6.66019508475, 46.1542788496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf6a1926484306273980db11ce16fcb4aaa2db5", "fields": {"nom_de_la_commune": "GROISY", "libell_d_acheminement": "GROISY", "code_postal": "74570", "coordonnees_gps": [46.0031081004, 6.25063227534], "code_commune_insee": "74137"}, "geometry": {"type": "Point", "coordinates": [6.25063227534, 46.0031081004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0d1fd91fc513d7e5625975b0347018901a8a75", "fields": {"nom_de_la_commune": "HABERE LULLIN", "libell_d_acheminement": "HABERE LULLIN", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74139"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30767c8a5102876ad2acd0858d6b5a4833368311", "fields": {"nom_de_la_commune": "HABERE POCHE", "libell_d_acheminement": "HABERE POCHE", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74140"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d05d40786b7dcf8811418104083e397b43283b2", "fields": {"nom_de_la_commune": "JUVIGNY", "libell_d_acheminement": "JUVIGNY", "code_postal": "74100", "coordonnees_gps": [46.1886553142, 6.24703235488], "code_commune_insee": "74145"}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5453546229b074dc0bca4ec32e36952e2d5fcc55", "fields": {"nom_de_la_commune": "LATHUILE", "libell_d_acheminement": "LATHUILE", "code_postal": "74210", "coordonnees_gps": [45.7728684273, 6.25852210813], "code_commune_insee": "74147"}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "242dabaa0d9effa0a0f57097a31eaf4ebc5f2cf1", "fields": {"nom_de_la_commune": "LESCHAUX", "libell_d_acheminement": "LESCHAUX", "code_postal": "74320", "coordonnees_gps": [45.8239490995, 6.13040612196], "code_commune_insee": "74148"}, "geometry": {"type": "Point", "coordinates": [6.13040612196, 45.8239490995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "243e4193d2e6c3241b0f9191accac76695eb2bf1", "fields": {"nom_de_la_commune": "LUCINGES", "libell_d_acheminement": "LUCINGES", "code_postal": "74380", "coordonnees_gps": [46.1808749905, 6.30733667317], "code_commune_insee": "74153"}, "geometry": {"type": "Point", "coordinates": [6.30733667317, 46.1808749905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10fa7111a20e1d3c6bf13007ecc5624da1e91018", "fields": {"nom_de_la_commune": "LUGRIN", "libell_d_acheminement": "LUGRIN", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74154"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a3ab79fd90db2a77eec7e5f6d2c1ab7e0c659e3", "fields": {"nom_de_la_commune": "MARCELLAZ ALBANAIS", "libell_d_acheminement": "MARCELLAZ ALBANAIS", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74161"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "145a91130ff33e981a1124b335c8e88357379e94", "fields": {"nom_de_la_commune": "MARGENCEL", "libell_d_acheminement": "MARGENCEL", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74163"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c76691bafc13f4b3247f9a20e5fcda05a913168", "fields": {"nom_de_la_commune": "MARIGNY ST MARCEL", "libell_d_acheminement": "MARIGNY ST MARCEL", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74165"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16b3d6607ff975db4d1c52a7bfa2538178aafdde", "fields": {"nom_de_la_commune": "MASSINGY", "libell_d_acheminement": "MASSINGY", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74170"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3be84b5b966ba72f59f69c8e9355000795901d", "fields": {"nom_de_la_commune": "MAXILLY SUR LEMAN", "libell_d_acheminement": "MAXILLY SUR LEMAN", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74172"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faab7a6622b2f73dff166e227f39782f63064576", "fields": {"nom_de_la_commune": "MUSIEGES", "libell_d_acheminement": "MUSIEGES", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74195"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1db10d9030683711651b53e88805d6e3e4c8850b", "fields": {"nom_de_la_commune": "NANGY", "libell_d_acheminement": "NANGY", "code_postal": "74380", "coordonnees_gps": [46.1808749905, 6.30733667317], "code_commune_insee": "74197"}, "geometry": {"type": "Point", "coordinates": [6.30733667317, 46.1808749905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f648868c73cd3d16461fb204e9a176bf7abe004", "fields": {"nom_de_la_commune": "NAVES PARMELAN", "libell_d_acheminement": "NAVES PARMELAN", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74198"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6344fa67cf4e7f71f1f40838040fdeb11c49c2af", "fields": {"nom_de_la_commune": "NERNIER", "libell_d_acheminement": "NERNIER", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74199"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0da9ced3c516591b7b11df2dceddae6eb65f2b0", "fields": {"nom_de_la_commune": "LES OLLIERES", "libell_d_acheminement": "LES OLLIERES", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74204"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35fbdf50e03fa5f3769370e1a73a288b32b60cb7", "fields": {"nom_de_la_commune": "PEILLONNEX", "libell_d_acheminement": "PEILLONNEX", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74209"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54eb6307549c08af83cbe3f281b5f2fda56f00aa", "fields": {"nom_de_la_commune": "QUINTAL", "libell_d_acheminement": "QUINTAL", "code_postal": "74600", "coordonnees_gps": [45.8556562518, 6.080880357], "code_commune_insee": "74219"}, "geometry": {"type": "Point", "coordinates": [6.080880357, 45.8556562518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "744f5c85a768a8e64870e161790bf2138afaadde", "fields": {"nom_de_la_commune": "REIGNIER ESERY", "libell_d_acheminement": "REIGNIER ESERY", "code_postal": "74930", "coordonnees_gps": [46.1144620291, 6.25657495958], "code_commune_insee": "74220"}, "geometry": {"type": "Point", "coordinates": [6.25657495958, 46.1144620291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42029b3e56774d226bbb4ed401864bb7dd1e5189", "fields": {"nom_de_la_commune": "LA ROCHE SUR FORON", "libell_d_acheminement": "LA ROCHE SUR FORON", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74224"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d5ab602e382dcfc509cfb27b7add9b7d252cab7", "fields": {"nom_de_la_commune": "ST ANDRE DE BOEGE", "libell_d_acheminement": "ST ANDRE DE BOEGE", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74226"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6e7d6b09593efd5ad934ff7b116f906d5290d4", "fields": {"nom_de_la_commune": "ST FELIX", "libell_d_acheminement": "ST FELIX", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74233"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c88df4ca4dba61eaccbc7617190c222d7701432", "fields": {"nom_de_la_commune": "ST FERREOL", "libell_d_acheminement": "ST FERREOL", "code_postal": "74210", "coordonnees_gps": [45.7728684273, 6.25852210813], "code_commune_insee": "74234"}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1efac49bd6d0105a162923db0173a614bb0ac8b9", "fields": {"nom_de_la_commune": "ST JORIOZ", "libell_d_acheminement": "ST JORIOZ", "code_postal": "74410", "coordonnees_gps": [45.8038828434, 6.16031679135], "code_commune_insee": "74242"}, "geometry": {"type": "Point", "coordinates": [6.16031679135, 45.8038828434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c27e695e097d19e7939477cf4f181ee0b73b99fe", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74244"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c198db048f3c1b487c8d079acb52a18bd4a169", "fields": {"nom_de_la_commune": "ST MARTIN BELLEVUE", "libell_d_acheminement": "ST MARTIN BELLEVUE", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74245"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a68fc891912d201050587df0ba87dc77439da1c", "fields": {"nom_de_la_commune": "ST PAUL EN CHABLAIS", "libell_d_acheminement": "ST PAUL EN CHABLAIS", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74249"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25ac1cdf50985cbf9e626fa879bcc482029e1482", "fields": {"nom_de_la_commune": "ST PIERRE EN FAUCIGNY", "libell_d_acheminement": "ST PIERRE EN FAUCIGNY", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74250"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "165e51fde7e7f9067b34e99a41044b4b3e39ce04", "fields": {"nom_de_la_commune": "ST SIXT", "libell_d_acheminement": "ST SIXT", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74253"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fd94b8ed59cba96190f00bb4bd79b31380545b3", "fields": {"nom_de_la_commune": "SERRAVAL", "libell_d_acheminement": "SERRAVAL", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74265"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "985215dbe95ac528644c362793f86aca85d4140b", "fields": {"nom_de_la_commune": "SERVOZ", "libell_d_acheminement": "SERVOZ", "code_postal": "74310", "coordonnees_gps": [45.9075030886, 6.79745986726], "code_commune_insee": "74266"}, "geometry": {"type": "Point", "coordinates": [6.79745986726, 45.9075030886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbef6fd31c116a3bca950710c9ee4868dd2fe413", "fields": {"code_postal": "74150", "code_commune_insee": "74274", "libell_d_acheminement": "VAL DE FIER", "ligne_5": "SION", "nom_de_la_commune": "VAL DE FIER", "coordonnees_gps": [45.8869887295, 5.94373659019]}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1922246412594a2ceb3c797e0d70a239f754c5", "fields": {"nom_de_la_commune": "TANINGES", "libell_d_acheminement": "TANINGES", "code_postal": "74440", "coordonnees_gps": [46.1230411459, 6.600455476], "code_commune_insee": "74276"}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af75b84a3f8a11b2fc82b260cf7a85ff8e72192e", "fields": {"nom_de_la_commune": "THUSY", "libell_d_acheminement": "THUSY", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74283"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2935f7680db4e5ddb5b1c381c13d6047f7fceb", "fields": {"nom_de_la_commune": "LA TOUR", "libell_d_acheminement": "LA TOUR", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74284"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7608361e1f23405d855526d91764f6b36867d0a8", "fields": {"nom_de_la_commune": "VAILLY", "libell_d_acheminement": "VAILLY", "code_postal": "74470", "coordonnees_gps": [46.2514067393, 6.54608924177], "code_commune_insee": "74287"}, "geometry": {"type": "Point", "coordinates": [6.54608924177, 46.2514067393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77631d6cf600f3c7c9d9ecf5f8532cd899140eb4", "fields": {"nom_de_la_commune": "VERS", "libell_d_acheminement": "VERS", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74296"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de3e0b5da85f78dfaf61e031b11f4d82b55c799", "fields": {"nom_de_la_commune": "VILLAZ", "libell_d_acheminement": "VILLAZ", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74303"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b39622ca81b398ffdf406a4050008e2dedb370", "fields": {"nom_de_la_commune": "VILLY LE PELLOUX", "libell_d_acheminement": "VILLY LE PELLOUX", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74307"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ca81003058859ba113112ac8e706f2027170bb", "fields": {"nom_de_la_commune": "VULBENS", "libell_d_acheminement": "VULBENS", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74314"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "053e69d8507a478af4becb202796cf6bc1cfac70", "fields": {"nom_de_la_commune": "PARIS 01", "libell_d_acheminement": "PARIS", "code_postal": "75001", "coordonnees_gps": [48.862834158, 2.33616696102], "code_commune_insee": "75101"}, "geometry": {"type": "Point", "coordinates": [2.33616696102, 48.862834158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416000b93e512d9e58c856b84bf25c9bc251da6c", "fields": {"nom_de_la_commune": "PARIS 02", "libell_d_acheminement": "PARIS", "code_postal": "75002", "coordonnees_gps": [48.8683234515, 2.3432977179], "code_commune_insee": "75102"}, "geometry": {"type": "Point", "coordinates": [2.3432977179, 48.8683234515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35fd85256dfea26a127e0212065c4185a941a4a1", "fields": {"nom_de_la_commune": "PARIS 05", "libell_d_acheminement": "PARIS", "code_postal": "75005", "coordonnees_gps": [48.844407753, 2.350655453], "code_commune_insee": "75105"}, "geometry": {"type": "Point", "coordinates": [2.350655453, 48.844407753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b237f37fd6d0c1d511af94a0fc660ced919311", "fields": {"nom_de_la_commune": "PARIS 06", "libell_d_acheminement": "PARIS", "code_postal": "75006", "coordonnees_gps": [48.8492531918, 2.33300877472], "code_commune_insee": "75106"}, "geometry": {"type": "Point", "coordinates": [2.33300877472, 48.8492531918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e20dbd7863a871c6cd0f01fa0fb2099de917c2cc", "fields": {"nom_de_la_commune": "PARIS 08", "libell_d_acheminement": "PARIS", "code_postal": "75008", "coordonnees_gps": [48.8725623657, 2.31240969073], "code_commune_insee": "75108"}, "geometry": {"type": "Point", "coordinates": [2.31240969073, 48.8725623657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793e9701b60ec1b36fdeabd38a2e64de92689b15", "fields": {"nom_de_la_commune": "PARIS 09", "libell_d_acheminement": "PARIS", "code_postal": "75009", "coordonnees_gps": [48.8769274899, 2.33736632955], "code_commune_insee": "75109"}, "geometry": {"type": "Point", "coordinates": [2.33736632955, 48.8769274899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d65f30d2503792babf50b8d495bd7150b959a90", "fields": {"nom_de_la_commune": "PARIS 13", "libell_d_acheminement": "PARIS", "code_postal": "75013", "coordonnees_gps": [48.8283577313, 2.36214011885], "code_commune_insee": "75113"}, "geometry": {"type": "Point", "coordinates": [2.36214011885, 48.8283577313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb11a02b1376f7e01f690f0c8e3e77a82baaf5b5", "fields": {"nom_de_la_commune": "PARIS 20", "libell_d_acheminement": "PARIS", "code_postal": "75020", "coordonnees_gps": [48.8634587721, 2.40123411777], "code_commune_insee": "75120"}, "geometry": {"type": "Point", "coordinates": [2.40123411777, 48.8634587721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038f190685d8baa1105f8ee4c565e0320a5db526", "fields": {"nom_de_la_commune": "ANCRETIEVILLE ST VICTOR", "libell_d_acheminement": "ANCRETIEVILLE ST VICTOR", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76010"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8fb950c9d2c9a87486ce4e8a7f385183ec355c9", "fields": {"nom_de_la_commune": "ARGUEIL", "libell_d_acheminement": "ARGUEIL", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76025"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d6056d0ab943d82b2b046f293b5317fb45753d", "fields": {"nom_de_la_commune": "AUBERMESNIL BEAUMAIS", "libell_d_acheminement": "AUBERMESNIL BEAUMAIS", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76030"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656088b8972e04197d2e4cbff1efae0df53c919f", "fields": {"nom_de_la_commune": "AUTIGNY", "libell_d_acheminement": "AUTIGNY", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76040"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2906681854ff240a4b1680d48ab9a24a257e69", "fields": {"nom_de_la_commune": "AUZEBOSC", "libell_d_acheminement": "AUZEBOSC", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76043"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d6323dd349401f63cfba5512a1bd4df3bb26454", "fields": {"nom_de_la_commune": "BARDOUVILLE", "libell_d_acheminement": "BARDOUVILLE", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76056"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2209bf78cd71278c8efb880b9b1b37ebfd0b126c", "fields": {"nom_de_la_commune": "BAROMESNIL", "libell_d_acheminement": "BAROMESNIL", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76058"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24175ab1acee88ae28e6d4dd48b4de80dfeda8ef", "fields": {"nom_de_la_commune": "BAZINVAL", "libell_d_acheminement": "BAZINVAL", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76059"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf3b455510652dd4ad98670d8f57735c317be6f", "fields": {"nom_de_la_commune": "BEAUMONT LE HARENG", "libell_d_acheminement": "BEAUMONT LE HARENG", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76062"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2794168deaaeb1244e8549750543952e6b9ab9d6", "fields": {"nom_de_la_commune": "BELBEUF", "libell_d_acheminement": "BELBEUF", "code_postal": "76240", "coordonnees_gps": [49.4050423755, 1.13866977273], "code_commune_insee": "76069"}, "geometry": {"type": "Point", "coordinates": [1.13866977273, 49.4050423755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b21048444ea05713a1f5f66e2eb14293b4fa5223", "fields": {"nom_de_la_commune": "BENNETOT", "libell_d_acheminement": "BENNETOT", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76078"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e44684796d24c6753cb6c2a55044d78d6f21b99", "fields": {"nom_de_la_commune": "CONDEISSIAT", "libell_d_acheminement": "CONDEISSIAT", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01113"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "650199322e916bc958b4fde6cf95ec3efa7af927", "fields": {"nom_de_la_commune": "CHEVILLARD", "libell_d_acheminement": "CHEVILLARD", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01101"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "458d1c6e206f657cb365b8a711ee3e89524ed750", "fields": {"nom_de_la_commune": "CONDAMINE", "libell_d_acheminement": "CONDAMINE", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01112"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca36c2c9f34d2f36aac7d89a23512350b4777590", "fields": {"nom_de_la_commune": "CONTREVOZ", "libell_d_acheminement": "CONTREVOZ", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01116"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b85dec9cc4bfee0a769ec679126c4e0505013d1", "fields": {"nom_de_la_commune": "COLIGNY", "libell_d_acheminement": "COLIGNY", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01108"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cc9320e267bb4cf2cf07dd3c42b06993952876b", "fields": {"nom_de_la_commune": "CONZIEU", "libell_d_acheminement": "CONZIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01117"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "873f84e212a4981cdecc8d6292ad5dd15f2a52e1", "fields": {"nom_de_la_commune": "CORLIER", "libell_d_acheminement": "CORLIER", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01121"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1bd69e24b6c062ca0b1551592e8c63bc56fe5f9", "fields": {"nom_de_la_commune": "CHEVRY", "libell_d_acheminement": "CHEVRY", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01103"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d8cad28cbe7040e9bf86f7e36f00b055e9f652", "fields": {"code_postal": "02130", "code_commune_insee": "02022", "libell_d_acheminement": "ARCY STE RESTITUE", "ligne_5": "BRANGES", "nom_de_la_commune": "ARCY STE RESTITUE", "coordonnees_gps": [49.1935797302, 3.55982855371]}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a5e5f33c3f6ad7cd8257bc6488345e40fa1ff5", "fields": {"nom_de_la_commune": "ARCY STE RESTITUE", "libell_d_acheminement": "ARCY STE RESTITUE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02022"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9992b2ea8a2607635a87a7f1d0f7220cd1d63f61", "fields": {"nom_de_la_commune": "VIEU D IZENAVE", "libell_d_acheminement": "VIEU D IZENAVE", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01441"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17a5de73764e37d7869a121bf5f9ed38dea2e905", "fields": {"nom_de_la_commune": "VERSONNEX", "libell_d_acheminement": "VERSONNEX", "code_postal": "01210", "coordonnees_gps": [46.2774426572, 6.10074151675], "code_commune_insee": "01435"}, "geometry": {"type": "Point", "coordinates": [6.10074151675, 46.2774426572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9101817022163b19c5171a3bf1dd5066c271022b", "fields": {"nom_de_la_commune": "TOSSIAT", "libell_d_acheminement": "TOSSIAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01422"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7db4e36244e8af4172547a1337a4b90af6faa2d8", "fields": {"nom_de_la_commune": "VONGNES", "libell_d_acheminement": "VONGNES", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01456"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12eabbb25d00dba1f15cdefe22a1e1fd7d78ab61", "fields": {"nom_de_la_commune": "VESINES", "libell_d_acheminement": "VESINES", "code_postal": "01570", "coordonnees_gps": [46.3545794503, 4.88868114295], "code_commune_insee": "01439"}, "geometry": {"type": "Point", "coordinates": [4.88868114295, 46.3545794503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d4ed93af1f4d97a6e496638a1ef76aa45ff9b6", "fields": {"nom_de_la_commune": "VERJON", "libell_d_acheminement": "VERJON", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01432"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5d69a7d1fca957f012f71516f310891c439e683", "fields": {"code_postal": "01260", "code_commune_insee": "01414", "libell_d_acheminement": "SUTRIEU", "ligne_5": "FITIGNIEU", "nom_de_la_commune": "SUTRIEU", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e35276a309437b99da88483d3119b884c07c9bc7", "fields": {"nom_de_la_commune": "ST GEORGES SUR RENON", "libell_d_acheminement": "ST GEORGES SUR RENON", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01356"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afd937d5bfc9b734f0c7b0791dd6da11d76b2135", "fields": {"nom_de_la_commune": "ST JEAN DE GONVILLE", "libell_d_acheminement": "ST JEAN DE GONVILLE", "code_postal": "01630", "coordonnees_gps": [46.2145490709, 5.95816552297], "code_commune_insee": "01360"}, "geometry": {"type": "Point", "coordinates": [5.95816552297, 46.2145490709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d39d6ebf0ea5e65cf6c6378b482be89818a16d8", "fields": {"nom_de_la_commune": "ST SORLIN EN BUGEY", "libell_d_acheminement": "ST SORLIN EN BUGEY", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01386"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8954bf0d77de3601f255069e231d03b3a701b87d", "fields": {"nom_de_la_commune": "SERRIERES SUR AIN", "libell_d_acheminement": "SERRIERES SUR AIN", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01404"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e15f17166701ee9423f1717354c30c1cace2071c", "fields": {"nom_de_la_commune": "ST JEAN DE NIOST", "libell_d_acheminement": "ST JEAN DE NIOST", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01361"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90c851ecf79d3a75f70556d778277110e7b36bbd", "fields": {"nom_de_la_commune": "SURJOUX", "libell_d_acheminement": "SURJOUX", "code_postal": "01420", "coordonnees_gps": [45.9853522838, 5.7838620591], "code_commune_insee": "01413"}, "geometry": {"type": "Point", "coordinates": [5.7838620591, 45.9853522838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2ff42ec5839f618a2b5450655639f3fb6ed0cd7", "fields": {"nom_de_la_commune": "TORCIEU", "libell_d_acheminement": "TORCIEU", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01421"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fddfc5b21e434bbe0ed889ee8c674583c254f68", "fields": {"nom_de_la_commune": "TENAY", "libell_d_acheminement": "TENAY", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01416"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b0a56b2ecd5ca952ebe433025ef40d8108bbab", "fields": {"nom_de_la_commune": "THIL", "libell_d_acheminement": "THIL", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01418"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc57d0868c3d3631ae2746542630389d9c9f4b55", "fields": {"code_postal": "01090", "code_commune_insee": "01165", "libell_d_acheminement": "FRANCHELEINS", "ligne_5": "AMAREINS", "nom_de_la_commune": "FRANCHELEINS", "coordonnees_gps": [46.0869886552, 4.79611073763]}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d7d94e7326162ed905fa08356b20956d30a4e05", "fields": {"nom_de_la_commune": "CRUZILLES LES MEPILLAT", "libell_d_acheminement": "CRUZILLES LES MEPILLAT", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01136"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dead7ab9e214bf7b97d6816bacb183ecf2469f2", "fields": {"nom_de_la_commune": "CRESSIN ROCHEFORT", "libell_d_acheminement": "CRESSIN ROCHEFORT", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01133"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75384842a22ca93469924354e2c3472772c48929", "fields": {"nom_de_la_commune": "ECHENEVEX", "libell_d_acheminement": "ECHENEVEX", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01153"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84790e843289e1e976c8c29a77df15c547603a70", "fields": {"nom_de_la_commune": "GARNERANS", "libell_d_acheminement": "GARNERANS", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01167"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761559e4c741c154de139b49eec6f19c3b211071", "fields": {"nom_de_la_commune": "FEILLENS", "libell_d_acheminement": "FEILLENS", "code_postal": "01570", "coordonnees_gps": [46.3545794503, 4.88868114295], "code_commune_insee": "01159"}, "geometry": {"type": "Point", "coordinates": [4.88868114295, 46.3545794503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1da29b1f4ad96b7212f7702d906c9b903adeee1", "fields": {"nom_de_la_commune": "ETREZ", "libell_d_acheminement": "ETREZ", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01154"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ec2adc15ad9c80a852278549baf4583884c7e6", "fields": {"nom_de_la_commune": "CRANS", "libell_d_acheminement": "CRANS", "code_postal": "01320", "coordonnees_gps": [46.0113616676, 5.19303242296], "code_commune_insee": "01129"}, "geometry": {"type": "Point", "coordinates": [5.19303242296, 46.0113616676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec7b3918a7edc0e6f3c04e8c20d8ee139940ba3c", "fields": {"nom_de_la_commune": "CULOZ", "libell_d_acheminement": "CULOZ", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01138"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87871fcfc98d5ee443b9f74ca750990f88f8e6bd", "fields": {"nom_de_la_commune": "DROM", "libell_d_acheminement": "DROM", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01150"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4efb6015cf7c7aae97b9b4d36ee834b98c4e0118", "fields": {"code_postal": "01000", "code_commune_insee": "01053", "libell_d_acheminement": "BOURG EN BRESSE", "ligne_5": "BROU", "nom_de_la_commune": "BOURG EN BRESSE", "coordonnees_gps": [46.2069478835, 5.22442559307]}, "geometry": {"type": "Point", "coordinates": [5.22442559307, 46.2069478835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "698b3f19174c582c01efe0cecba1c2ade57abda0", "fields": {"code_postal": "01360", "code_commune_insee": "01062", "libell_d_acheminement": "BRESSOLLES", "ligne_5": "LA LECHERE", "nom_de_la_commune": "BRESSOLLES", "coordonnees_gps": [45.8283269463, 5.15327415034]}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de5f2e7aadc4ba644535f19330384437bc58bea", "fields": {"nom_de_la_commune": "BOURG ST CHRISTOPHE", "libell_d_acheminement": "BOURG ST CHRISTOPHE", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01054"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914faf1810fb5eee59886a97c92cadfce2a980dd", "fields": {"nom_de_la_commune": "BOURG EN BRESSE", "libell_d_acheminement": "BOURG EN BRESSE", "code_postal": "01000", "coordonnees_gps": [46.2069478835, 5.22442559307], "code_commune_insee": "01053"}, "geometry": {"type": "Point", "coordinates": [5.22442559307, 46.2069478835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "547bc18566bdb9a8d1357dee9d54ff4ea27a3a19", "fields": {"nom_de_la_commune": "LA BURBANCHE", "libell_d_acheminement": "LA BURBANCHE", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01066"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "852f9f68dd31722b776d36db1f9cec010c90742f", "fields": {"nom_de_la_commune": "BUELLAS", "libell_d_acheminement": "BUELLAS", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01065"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60f1927b353bb0528dc6fbcbd1ab0f5c48f65b9", "fields": {"nom_de_la_commune": "CERDON", "libell_d_acheminement": "CERDON", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01068"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e45e36bf7273f3ed1be6800de27d7f8b788ca0a", "fields": {"nom_de_la_commune": "BIZIAT", "libell_d_acheminement": "BIZIAT", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01046"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58e7b73b74f10f4c32732ebd2631514f38659918", "fields": {"nom_de_la_commune": "BEON", "libell_d_acheminement": "BEON", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01039"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcf514ce6f557295b21059e646ea74d45393d55d", "fields": {"nom_de_la_commune": "BOZ", "libell_d_acheminement": "BOZ", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01057"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568df55bb40f80454fb202206295d70af6b9745a", "fields": {"code_postal": "01260", "code_commune_insee": "01079", "libell_d_acheminement": "CHAMPAGNE EN VALROMEY", "ligne_5": "LILIGNOD", "nom_de_la_commune": "CHAMPAGNE EN VALROMEY", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "710cea168bceefc5db453d968fed82c021cbb3d2", "fields": {"code_postal": "01110", "code_commune_insee": "01080", "libell_d_acheminement": "CHAMPDOR CORCELLES", "ligne_5": "CORCELLES", "nom_de_la_commune": "CHAMPDOR CORCELLES", "coordonnees_gps": [45.9724218119, 5.577110369]}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9154d911b7eb40fb1d3e1aa3d1a646b269e0481", "fields": {"nom_de_la_commune": "CHATILLON LA PALUD", "libell_d_acheminement": "CHATILLON LA PALUD", "code_postal": "01320", "coordonnees_gps": [46.0113616676, 5.19303242296], "code_commune_insee": "01092"}, "geometry": {"type": "Point", "coordinates": [5.19303242296, 46.0113616676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c11067ae5acd058504d98a1aa0962990bc338e54", "fields": {"nom_de_la_commune": "CHAMPDOR CORCELLES", "libell_d_acheminement": "CHAMPDOR CORCELLES", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01080"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2001bcf5d83808def9cd6bf20d393551f4ab1e", "fields": {"nom_de_la_commune": "CHAZEY SUR AIN", "libell_d_acheminement": "CHAZEY SUR AIN", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01099"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d36be4c04ac0714b1d15f702badbd0aa9ede5c", "fields": {"nom_de_la_commune": "CHANEINS", "libell_d_acheminement": "CHANEINS", "code_postal": "01990", "coordonnees_gps": [46.0766987934, 4.89959868147], "code_commune_insee": "01083"}, "geometry": {"type": "Point", "coordinates": [4.89959868147, 46.0766987934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9939521d724bf5279e29c57122f7217f6b83a98", "fields": {"nom_de_la_commune": "CHATENAY", "libell_d_acheminement": "CHATENAY", "code_postal": "01320", "coordonnees_gps": [46.0113616676, 5.19303242296], "code_commune_insee": "01090"}, "geometry": {"type": "Point", "coordinates": [5.19303242296, 46.0113616676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d706678e3ef3bd43a6322e146ccb303655fd69", "fields": {"nom_de_la_commune": "CHALLEX", "libell_d_acheminement": "CHALLEX", "code_postal": "01630", "coordonnees_gps": [46.2145490709, 5.95816552297], "code_commune_insee": "01078"}, "geometry": {"type": "Point", "coordinates": [5.95816552297, 46.2145490709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21ac7825daaac3b5c862689ddab663d5dbc662f6", "fields": {"nom_de_la_commune": "CHARIX", "libell_d_acheminement": "CHARIX", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01087"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cdf9b04fc47a9911baa8de1cb9ed3016edf9458", "fields": {"nom_de_la_commune": "CESSY", "libell_d_acheminement": "CESSY", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01071"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed6e48e522768d1662cb6f5afa164e6fb8284dc", "fields": {"code_postal": "01460", "code_commune_insee": "01267", "libell_d_acheminement": "NURIEUX VOLOGNAT", "ligne_5": "VOLOGNAT", "nom_de_la_commune": "NURIEUX VOLOGNAT", "coordonnees_gps": [46.1732029522, 5.56455683284]}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9af684efaa4841c4ed61a1c9c82ada25da4c78", "fields": {"code_postal": "01120", "code_commune_insee": "01262", "libell_d_acheminement": "MONTLUEL", "ligne_5": "JAILLEUX", "nom_de_la_commune": "MONTLUEL", "coordonnees_gps": [45.8725197955, 5.04054729356]}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7947fb3ef1edf486a831f8fdb0e45897c0bf91", "fields": {"nom_de_la_commune": "MONTREVEL EN BRESSE", "libell_d_acheminement": "MONTREVEL EN BRESSE", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01266"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06fd7d338078952524b1fe8b3b48bf426ebf16df", "fields": {"nom_de_la_commune": "NEUVILLE LES DAMES", "libell_d_acheminement": "NEUVILLE LES DAMES", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01272"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c44060c3626a059fb5899bcdcf9e374a294cc8da", "fields": {"nom_de_la_commune": "NURIEUX VOLOGNAT", "libell_d_acheminement": "NURIEUX VOLOGNAT", "code_postal": "01460", "coordonnees_gps": [46.1732029522, 5.56455683284], "code_commune_insee": "01267"}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecbc1a9e91cb3caf672cea91d90cc3febcd39eeb", "fields": {"nom_de_la_commune": "PEROUGES", "libell_d_acheminement": "PEROUGES", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01290"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "babb01a3a6f1af607a7026be545f574641c488fe", "fields": {"nom_de_la_commune": "PARCIEUX", "libell_d_acheminement": "PARCIEUX", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01285"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846118c63785add57d4f2a6a386b2556ecd3251f", "fields": {"nom_de_la_commune": "PERONNAS", "libell_d_acheminement": "PERONNAS", "code_postal": "01960", "coordonnees_gps": [46.1542253866, 5.17526170568], "code_commune_insee": "01289"}, "geometry": {"type": "Point", "coordinates": [5.17526170568, 46.1542253866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4afe577725f7daa981b037020ca477648b0d64b", "fields": {"nom_de_la_commune": "OUTRIAZ", "libell_d_acheminement": "OUTRIAZ", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01282"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51729a0180d61879e949d8f92fbd67f0a5adf8f8", "fields": {"nom_de_la_commune": "PEYRIAT", "libell_d_acheminement": "PEYRIAT", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01293"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd8df1ceb7d8f789c9835536a217d2dfb9c3f2e7", "fields": {"nom_de_la_commune": "ST GENIS SUR MENTHON", "libell_d_acheminement": "ST GENIS SUR MENTHON", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01355"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2691ce34fafaeb2249e6fe1260c394121c6e1c7e", "fields": {"nom_de_la_commune": "ST ANDRE DE CORCY", "libell_d_acheminement": "ST ANDRE DE CORCY", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01333"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "504cca225949b6d5a4c40b793682456e68642fea", "fields": {"nom_de_la_commune": "PONT DE VAUX", "libell_d_acheminement": "PONT DE VAUX", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01305"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c843d28bf0a771cb9f19645afa788d44f9d0df58", "fields": {"nom_de_la_commune": "STE EUPHEMIE", "libell_d_acheminement": "STE EUPHEMIE", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01353"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "020e97109f483f2cc565a9b315e35d9ac4f8e398", "fields": {"nom_de_la_commune": "PREMILLIEU", "libell_d_acheminement": "PREMILLIEU", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01311"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a14993e8b849a6ff0df331e524ba4329fc1da952", "fields": {"nom_de_la_commune": "REPLONGES", "libell_d_acheminement": "REPLONGES", "code_postal": "01750", "coordonnees_gps": [46.2973437135, 4.87546330177], "code_commune_insee": "01320"}, "geometry": {"type": "Point", "coordinates": [4.87546330177, 46.2973437135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a16d625a930cb4bb60dfc39a4e8f3300a78f4949", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01342"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db01c871aa0d7584fc766f1084bc064a0b283805", "fields": {"nom_de_la_commune": "RUFFIEU", "libell_d_acheminement": "RUFFIEU", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01330"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecdacaf5e68afe8288d4f50248da2312e181dd48", "fields": {"nom_de_la_commune": "PEYRIEU", "libell_d_acheminement": "PEYRIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01294"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6e79bcbb55037b8e5dacb41285ab980851c676", "fields": {"nom_de_la_commune": "RANCE", "libell_d_acheminement": "RANCE", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01318"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5404284ab96c953f2edcbc28afab098024d14fb4", "fields": {"nom_de_la_commune": "BOUCONVILLE VAUCLAIR", "libell_d_acheminement": "BOUCONVILLE VAUCLAIR", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02102"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51c2026ae28925ca8b09f6b30eef481c61dd0c3f", "fields": {"nom_de_la_commune": "BLANZY LES FISMES", "libell_d_acheminement": "BLANZY LES FISMES", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02091"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e1bd8f16c1f98d05aaddefa1f93bdf2b099eb5", "fields": {"nom_de_la_commune": "BIEUXY", "libell_d_acheminement": "BIEUXY", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02087"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "708983a318fc08c6facb3f84b7b2e9d4773d50f8", "fields": {"nom_de_la_commune": "BRUYERES ET MONTBERAULT", "libell_d_acheminement": "BRUYERES ET MONTBERAULT", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02128"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0183c618cfba01ac4134b29dad4da29e36a44086", "fields": {"nom_de_la_commune": "BOURGUIGNON SOUS COUCY", "libell_d_acheminement": "BOURGUIGNON SOUS COUCY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02107"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840f65c28ca2843ba128209a1a05fc83635e153c", "fields": {"nom_de_la_commune": "BRAYE EN THIERACHE", "libell_d_acheminement": "BRAYE EN THIERACHE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02116"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "927246613764c77c3a859b0f559dd3add08d37da", "fields": {"nom_de_la_commune": "BRANCOURT LE GRAND", "libell_d_acheminement": "BRANCOURT LE GRAND", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02112"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba8685e458099790a2c02519c2b826013cdaf70", "fields": {"nom_de_la_commune": "BRISSY HAMEGICOURT", "libell_d_acheminement": "BRISSY HAMEGICOURT", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02124"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b910bea3d22f073604de1ddafabff78fb9a6218", "fields": {"nom_de_la_commune": "BRAY ST CHRISTOPHE", "libell_d_acheminement": "BRAY ST CHRISTOPHE", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02117"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95b326c58b380723776b8f76a53249815983daa6", "fields": {"nom_de_la_commune": "BRAYE EN LAONNOIS", "libell_d_acheminement": "BRAYE EN LAONNOIS", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02115"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c87dbd5d178a954a8ab2fc1d01d380a49906020", "fields": {"nom_de_la_commune": "LA BOUTEILLE", "libell_d_acheminement": "LA BOUTEILLE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02109"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5631f51aa3be62fbccb0e713a9ef1658c6856d", "fields": {"nom_de_la_commune": "BUCILLY", "libell_d_acheminement": "BUCILLY", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02130"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dd71009adb28dd229328df8ff51476ef2f09adc", "fields": {"nom_de_la_commune": "BRAYE", "libell_d_acheminement": "BRAYE", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02118"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "885838d565f55c0259d8d598606750e557d21bcd", "fields": {"nom_de_la_commune": "CERNY EN LAONNOIS", "libell_d_acheminement": "CERNY EN LAONNOIS", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02150"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eb91aa3526f10691b60e17b7ff2a5313dc34bc4", "fields": {"nom_de_la_commune": "CHAILLEVOIS", "libell_d_acheminement": "CHAILLEVOIS", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02155"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "450cad63125023a94725bbf07a2af66303628a0a", "fields": {"nom_de_la_commune": "CHAMOUILLE", "libell_d_acheminement": "CHAMOUILLE", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02158"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5613f9ea2d961994e735f1c650f9e2f6304ae273", "fields": {"nom_de_la_commune": "CHAVONNE", "libell_d_acheminement": "CHAVONNE", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02176"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67fa965b96c74b04b7e3ee2d172008a1684e10a4", "fields": {"nom_de_la_commune": "CHACRISE", "libell_d_acheminement": "CHACRISE", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02154"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72fc5b419123f61660218dd407d04bc25cd0299e", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02145"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6ecc1d10adf5c7bc39f279a4977a4bceeecb88", "fields": {"nom_de_la_commune": "CHAUDUN", "libell_d_acheminement": "CHAUDUN", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02172"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cd0d6eb3db66c7cf763b2c71ec52b5d2c00c5d5", "fields": {"nom_de_la_commune": "CASTRES", "libell_d_acheminement": "CASTRES", "code_postal": "02680", "coordonnees_gps": [49.80786398, 3.24088325825], "code_commune_insee": "02142"}, "geometry": {"type": "Point", "coordinates": [3.24088325825, 49.80786398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9bb4375ef4e5a3551297e692805c7c6fbb44f4d", "fields": {"nom_de_la_commune": "CHAMPS", "libell_d_acheminement": "CHAMPS", "code_postal": "02670", "coordonnees_gps": [49.5466521248, 3.27704956705], "code_commune_insee": "02159"}, "geometry": {"type": "Point", "coordinates": [3.27704956705, 49.5466521248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e952671176dd2c965ec35b72019304ed6d580bab", "fields": {"nom_de_la_commune": "BUIRE", "libell_d_acheminement": "BUIRE", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02134"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48c4b2497c0efebbdeb156b4afec7e64492b5bb", "fields": {"nom_de_la_commune": "ESQUEHERIES", "libell_d_acheminement": "ESQUEHERIES", "code_postal": "02170", "coordonnees_gps": [50.0019463297, 3.79418155637], "code_commune_insee": "02286"}, "geometry": {"type": "Point", "coordinates": [3.79418155637, 50.0019463297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1a6f2ab4f268036061839a2a5d38737310235a", "fields": {"nom_de_la_commune": "LIAUSSON", "libell_d_acheminement": "LIAUSSON", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34137"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3fcc1b708de0c4aed61d15f89f00585b58aece5", "fields": {"nom_de_la_commune": "LIEURAN CABRIERES", "libell_d_acheminement": "LIEURAN CABRIERES", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34138"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "596e0c9a30574758823412fd782616ba2d75c6b1", "fields": {"nom_de_la_commune": "LOUPIAN", "libell_d_acheminement": "LOUPIAN", "code_postal": "34140", "coordonnees_gps": [43.4368537431, 3.59942976108], "code_commune_insee": "34143"}, "geometry": {"type": "Point", "coordinates": [3.59942976108, 43.4368537431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a314a97df0c230d939ce628099dddcd76e27ca", "fields": {"nom_de_la_commune": "LES MATELLES", "libell_d_acheminement": "LES MATELLES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34153"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fec148523e31c96aa3e2969a6f2d675830b2f185", "fields": {"nom_de_la_commune": "MERIFONS", "libell_d_acheminement": "MERIFONS", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34156"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4ed3fc94c5e0b337349371257a11717488d0a9", "fields": {"nom_de_la_commune": "MEZE", "libell_d_acheminement": "MEZE", "code_postal": "34140", "coordonnees_gps": [43.4368537431, 3.59942976108], "code_commune_insee": "34157"}, "geometry": {"type": "Point", "coordinates": [3.59942976108, 43.4368537431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d52bee69ebd4f168db57e040103ae69d38d9731", "fields": {"nom_de_la_commune": "MINERVE", "libell_d_acheminement": "MINERVE", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34158"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bfd8e146a6c5e08eaecdd700c88e15908de5441", "fields": {"nom_de_la_commune": "MONTOULIEU", "libell_d_acheminement": "MONTOULIEU", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34171"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b016f4c369e00b45a20548fbe1fc5ccc4e11b4f3", "fields": {"nom_de_la_commune": "MONTPELLIER", "libell_d_acheminement": "MONTPELLIER", "code_postal": "34070", "coordonnees_gps": [43.613085594, 3.86919806969], "code_commune_insee": "34172"}, "geometry": {"type": "Point", "coordinates": [3.86919806969, 43.613085594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc6a2e36beeb1ea3c6fab0d52baf82fe8fc6766", "fields": {"nom_de_la_commune": "NIZAS", "libell_d_acheminement": "NIZAS", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34184"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0579a7c4fbae24ef9c1ae885ef6e869ffc09684", "fields": {"nom_de_la_commune": "OLARGUES", "libell_d_acheminement": "OLARGUES", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34187"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c4b73b0bec12d17adb09faf0aa7f784789fb75", "fields": {"nom_de_la_commune": "PALAVAS LES FLOTS", "libell_d_acheminement": "PALAVAS LES FLOTS", "code_postal": "34250", "coordonnees_gps": [43.5335271739, 3.92625553078], "code_commune_insee": "34192"}, "geometry": {"type": "Point", "coordinates": [3.92625553078, 43.5335271739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c884bae063024d8f4b032e49a98d55936e3f2de", "fields": {"nom_de_la_commune": "PINET", "libell_d_acheminement": "PINET", "code_postal": "34850", "coordonnees_gps": [43.4093383388, 3.5126823699], "code_commune_insee": "34203"}, "geometry": {"type": "Point", "coordinates": [3.5126823699, 43.4093383388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b8ed469946ae7b547169f9b9af0ec6efebacfc", "fields": {"nom_de_la_commune": "POMEROLS", "libell_d_acheminement": "POMEROLS", "code_postal": "34810", "coordonnees_gps": [43.3964880457, 3.51441901042], "code_commune_insee": "34207"}, "geometry": {"type": "Point", "coordinates": [3.51441901042, 43.3964880457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "411d75ae1a5e4bd42a720297c09cc1a91a8612a5", "fields": {"nom_de_la_commune": "POUZOLS", "libell_d_acheminement": "POUZOLS", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34215"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "261bfc221292b51b5b736a7e993ee0170a7ae116", "fields": {"nom_de_la_commune": "PRADES SUR VERNAZOBRE", "libell_d_acheminement": "PRADES SUR VERNAZOBRE", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34218"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c015698124eb53fa48c060b705396b4b34a1f6bd", "fields": {"nom_de_la_commune": "PUECHABON", "libell_d_acheminement": "PUECHABON", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34221"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43f6dd2bfd49d8a07f18dca0fb2a1ee0e84a3c61", "fields": {"nom_de_la_commune": "ROSIS", "libell_d_acheminement": "ROSIS", "code_postal": "34610", "coordonnees_gps": [43.6529362037, 2.99617489245], "code_commune_insee": "34235"}, "geometry": {"type": "Point", "coordinates": [2.99617489245, 43.6529362037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27ef73cbdeb99b429065ad66dddb583917c116b5", "fields": {"nom_de_la_commune": "ROUJAN", "libell_d_acheminement": "ROUJAN", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34237"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e912c5617d2a66b3ca871b2b7f64a6775f970c2f", "fields": {"nom_de_la_commune": "ST BAUZILLE DE MONTMEL", "libell_d_acheminement": "ST BAUZILLE DE MONTMEL", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34242"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "021b152c32d15567de89338a36a889205fe8be5c", "fields": {"nom_de_la_commune": "ST BRES", "libell_d_acheminement": "ST BRES", "code_postal": "34670", "coordonnees_gps": [43.6617396739, 4.0210678464], "code_commune_insee": "34244"}, "geometry": {"type": "Point", "coordinates": [4.0210678464, 43.6617396739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b346799cb978e718d9558cf5c3111333fdc411", "fields": {"nom_de_la_commune": "ST DREZERY", "libell_d_acheminement": "ST DREZERY", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34249"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98a0ecbca97b9401b3373e6d8bdae04e7d8e17cd", "fields": {"nom_de_la_commune": "ST GELY DU FESC", "libell_d_acheminement": "ST GELY DU FESC", "code_postal": "34980", "coordonnees_gps": [43.6888847812, 3.79972648771], "code_commune_insee": "34255"}, "geometry": {"type": "Point", "coordinates": [3.79972648771, 43.6888847812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bae2c5b1d307daaab1fbd5aa2cfc95a2d600d199", "fields": {"nom_de_la_commune": "ST JEAN DE CORNIES", "libell_d_acheminement": "ST JEAN DE CORNIES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34265"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f9648ac4e60f6fb5a0ae40c4d00da5f3f13946", "fields": {"nom_de_la_commune": "ST JEAN DE CUCULLES", "libell_d_acheminement": "ST JEAN DE CUCULLES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34266"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22b1f7660eee89a03377b80e599a9c38838ab14f", "fields": {"nom_de_la_commune": "ST JEAN DE LA BLAQUIERE", "libell_d_acheminement": "ST JEAN DE LA BLAQUIERE", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34268"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc15a6f09450e37541f300c49ee74367a22d7f8d", "fields": {"nom_de_la_commune": "ST JEAN DE MINERVOIS", "libell_d_acheminement": "ST JEAN DE MINERVOIS", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34269"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29dbd7e3d9866ac5dd068d8908e367510d88ad7", "fields": {"nom_de_la_commune": "ST MAURICE NAVACELLES", "libell_d_acheminement": "ST MAURICE NAVACELLES", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34277"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743ee4772f5560acbc8d182942ae114181b7b41d", "fields": {"nom_de_la_commune": "ST PARGOIRE", "libell_d_acheminement": "ST PARGOIRE", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34281"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1510e8b74baa883212bb963bdb6e39d272f5b16f", "fields": {"nom_de_la_commune": "ST PONS DE MAUCHIENS", "libell_d_acheminement": "ST PONS DE MAUCHIENS", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34285"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527fc9a2b41fa16410567b24caaef97bb38bc9da", "fields": {"nom_de_la_commune": "ST PRIVAT", "libell_d_acheminement": "ST PRIVAT", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34286"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5578b10f2df65aa333e10340f42ebcefd14c3f65", "fields": {"nom_de_la_commune": "SALASC", "libell_d_acheminement": "SALASC", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34292"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3acc506f4d64f25b81b8aca7e14038a49fba92b", "fields": {"nom_de_la_commune": "SAUVIAN", "libell_d_acheminement": "SAUVIAN", "code_postal": "34410", "coordonnees_gps": [43.2791365014, 3.28311467845], "code_commune_insee": "34298"}, "geometry": {"type": "Point", "coordinates": [3.28311467845, 43.2791365014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86516f20cbcf9160ca1e1cef2ba2071065ceb73a", "fields": {"nom_de_la_commune": "SERVIAN", "libell_d_acheminement": "SERVIAN", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34300"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f432fc6ebba87e7b1b5509aaf416998a0d046771", "fields": {"nom_de_la_commune": "SETE", "libell_d_acheminement": "SETE", "code_postal": "34200", "coordonnees_gps": [43.3916337331, 3.64646358944], "code_commune_insee": "34301"}, "geometry": {"type": "Point", "coordinates": [3.64646358944, 43.3916337331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f505e70ec29a9f781888fd762401505e92f60b5", "fields": {"nom_de_la_commune": "SOUMONT", "libell_d_acheminement": "SOUMONT", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34306"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35d256d8f0a52a058ba502bec8a2efdb27f0f6c0", "fields": {"nom_de_la_commune": "SUSSARGUES", "libell_d_acheminement": "SUSSARGUES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34307"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9b0e1f32a8d4fdbb1f657d9f1753b12f11be6c", "fields": {"nom_de_la_commune": "TAUSSAC LA BILLIERE", "libell_d_acheminement": "TAUSSAC LA BILLIERE", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34308"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "027d985d5ef4d7984d8f4dd27fc25223efa505eb", "fields": {"nom_de_la_commune": "LA VACQUERIE ET ST MARTIN DE CASTRIES", "libell_d_acheminement": "LA VACQUERIE ST MARTIN CASTRIES", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34317"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694d5aec8adc71ff2ca04402052f44a5d8285ea2", "fields": {"nom_de_la_commune": "VALFLAUNES", "libell_d_acheminement": "VALFLAUNES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34322"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4faccbc1175d183e39f94483f526742512b62b50", "fields": {"nom_de_la_commune": "ANTRAIN", "libell_d_acheminement": "ANTRAIN", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35004"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c4c952317445d5ff034bc1d3a5aa9e81db1d8a3", "fields": {"nom_de_la_commune": "LA BAUSSAINE", "libell_d_acheminement": "LA BAUSSAINE", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35017"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa575eff85f2dd72c2ff0599a4a1f9d66a681b73", "fields": {"nom_de_la_commune": "LA BAZOUGE DU DESERT", "libell_d_acheminement": "LA BAZOUGE DU DESERT", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35018"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88fadcd5d6ab8088f2a74dc0f8d4dcd4543cab67", "fields": {"nom_de_la_commune": "BEDEE", "libell_d_acheminement": "BEDEE", "code_postal": "35137", "coordonnees_gps": [48.1849164983, -1.93352887812], "code_commune_insee": "35023"}, "geometry": {"type": "Point", "coordinates": [-1.93352887812, 48.1849164983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e086edff48d6e669a60d789770663a695ab00b8", "fields": {"nom_de_la_commune": "BETTON", "libell_d_acheminement": "BETTON", "code_postal": "35830", "coordonnees_gps": [48.1815160112, -1.64650403276], "code_commune_insee": "35024"}, "geometry": {"type": "Point", "coordinates": [-1.64650403276, 48.1815160112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8f1d6c9f203cd84c3f103f9911a022fd350733d", "fields": {"nom_de_la_commune": "LA BOSSE DE BRETAGNE", "libell_d_acheminement": "LA BOSSE DE BRETAGNE", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35030"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99c2fc8def21ef35b780ad2482ee68ea5a2a394e", "fields": {"nom_de_la_commune": "LA BOUSSAC", "libell_d_acheminement": "LA BOUSSAC", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35034"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d02446af854d237413c8f4c86b0fae35b62851f7", "fields": {"nom_de_la_commune": "BRIE", "libell_d_acheminement": "BRIE", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35041"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "377ca78af49b816f9a9e72688fa359cf9c9fc5f8", "fields": {"nom_de_la_commune": "BROUALAN", "libell_d_acheminement": "BROUALAN", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35044"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d76caac2ba5eee82b8595550051b9f8c2db31f", "fields": {"nom_de_la_commune": "CANCALE", "libell_d_acheminement": "CANCALE", "code_postal": "35260", "coordonnees_gps": [48.6826684745, -1.86528916047], "code_commune_insee": "35049"}, "geometry": {"type": "Point", "coordinates": [-1.86528916047, 48.6826684745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e5756699acbbb866d0897ade94ee7952953399c", "fields": {"nom_de_la_commune": "CHAMPEAUX", "libell_d_acheminement": "CHAMPEAUX", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35052"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e3c7f1dcb032e841012d7c7031dc117e1708401", "fields": {"nom_de_la_commune": "LA CHAPELLE ERBREE", "libell_d_acheminement": "LA CHAPELLE ERBREE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35061"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8cc464a1dcd174d213320c94082e0c37cb44abf", "fields": {"nom_de_la_commune": "CHATEAUGIRON", "libell_d_acheminement": "CHATEAUGIRON", "code_postal": "35410", "coordonnees_gps": [48.0490244352, -1.51988264041], "code_commune_insee": "35069"}, "geometry": {"type": "Point", "coordinates": [-1.51988264041, 48.0490244352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e74d4bd6b8fb7e3f9fca7833e39b4fb36b5a05f4", "fields": {"nom_de_la_commune": "LE CHATELLIER", "libell_d_acheminement": "LE CHATELLIER", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35071"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f073fb7a1d29fd6c5124d810279d1c4893d9475", "fields": {"nom_de_la_commune": "CHAUVIGNE", "libell_d_acheminement": "CHAUVIGNE", "code_postal": "35490", "coordonnees_gps": [48.3344573886, -1.51403943231], "code_commune_insee": "35075"}, "geometry": {"type": "Point", "coordinates": [-1.51403943231, 48.3344573886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a9fbfe25b891ba63521d79adde15796618260b", "fields": {"nom_de_la_commune": "CHERRUEIX", "libell_d_acheminement": "CHERRUEIX", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35078"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f57357303691159b44a1a11bfad137a2026abb", "fields": {"nom_de_la_commune": "COMBOURG", "libell_d_acheminement": "COMBOURG", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35085"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "884647d391ae524356669561d54a86e5c8bafd8f", "fields": {"nom_de_la_commune": "CORNILLE", "libell_d_acheminement": "CORNILLE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35087"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27994b98ed3661a7bb56b5b6efbb59c54668557a", "fields": {"nom_de_la_commune": "CREVIN", "libell_d_acheminement": "CREVIN", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35090"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dbce871d9db8423a2a9e2fef9383928d2fdf296", "fields": {"nom_de_la_commune": "LE CROUAIS", "libell_d_acheminement": "LE CROUAIS", "code_postal": "35290", "coordonnees_gps": [48.1587625255, -2.18370093137], "code_commune_insee": "35091"}, "geometry": {"type": "Point", "coordinates": [-2.18370093137, 48.1587625255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c62094643b5eb911bee26faf302546881c2cee76", "fields": {"nom_de_la_commune": "DOMAGNE", "libell_d_acheminement": "DOMAGNE", "code_postal": "35113", "coordonnees_gps": [48.0673207645, -1.40644160401], "code_commune_insee": "35096"}, "geometry": {"type": "Point", "coordinates": [-1.40644160401, 48.0673207645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f00286dc9cf800994acc5dcc2f084869ad119c15", "fields": {"code_postal": "35113", "code_commune_insee": "35096", "libell_d_acheminement": "DOMAGNE", "ligne_5": "CHAUMERE", "nom_de_la_commune": "DOMAGNE", "coordonnees_gps": [48.0673207645, -1.40644160401]}, "geometry": {"type": "Point", "coordinates": [-1.40644160401, 48.0673207645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2d57ca39d920ab80c1681576ac07f12bd92ffde", "fields": {"nom_de_la_commune": "LA DOMINELAIS", "libell_d_acheminement": "LA DOMINELAIS", "code_postal": "35390", "coordonnees_gps": [47.7452832885, -1.72261713686], "code_commune_insee": "35098"}, "geometry": {"type": "Point", "coordinates": [-1.72261713686, 47.7452832885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da6172db9c8ed3b4154922912f3c19752d1fe612", "fields": {"nom_de_la_commune": "DOURDAIN", "libell_d_acheminement": "DOURDAIN", "code_postal": "35450", "coordonnees_gps": [48.2058112494, -1.3219232409], "code_commune_insee": "35101"}, "geometry": {"type": "Point", "coordinates": [-1.3219232409, 48.2058112494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeccfdddef42fb4b463b5d3932dfde4ad3ae6a9c", "fields": {"nom_de_la_commune": "EPINIAC", "libell_d_acheminement": "EPINIAC", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35104"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba52acd7c1483760dcbdb4dbd3e4cc052763039", "fields": {"nom_de_la_commune": "ERCE EN LAMEE", "libell_d_acheminement": "ERCE EN LAMEE", "code_postal": "35620", "coordonnees_gps": [47.8136960211, -1.5585601765], "code_commune_insee": "35106"}, "geometry": {"type": "Point", "coordinates": [-1.5585601765, 47.8136960211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d36ce898c568fc7e29f0b18cc97a3695b3bc3ad0", "fields": {"nom_de_la_commune": "FLEURIGNE", "libell_d_acheminement": "FLEURIGNE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35112"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676c94a7cc492c1872b6787fb4f018a2a5073ada", "fields": {"nom_de_la_commune": "GAEL", "libell_d_acheminement": "GAEL", "code_postal": "35290", "coordonnees_gps": [48.1587625255, -2.18370093137], "code_commune_insee": "35117"}, "geometry": {"type": "Point", "coordinates": [-2.18370093137, 48.1587625255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0054b372195fba7d0feb1bb1db79ff4abef2c1dc", "fields": {"nom_de_la_commune": "GOSNE", "libell_d_acheminement": "GOSNE", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35121"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5fd08183bbf9e0108414c4fd77311e3b27746f2", "fields": {"nom_de_la_commune": "GRAND FOUGERAY", "libell_d_acheminement": "GRAND FOUGERAY", "code_postal": "35390", "coordonnees_gps": [47.7452832885, -1.72261713686], "code_commune_insee": "35124"}, "geometry": {"type": "Point", "coordinates": [-1.72261713686, 47.7452832885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02c6567c7cca3637e112cb239b6bfba1a6e4fe1", "fields": {"nom_de_la_commune": "HIREL", "libell_d_acheminement": "HIREL", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35132"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce7021b09930099ee788bdd1cfd215bd4596ead", "fields": {"nom_de_la_commune": "IRODOUER", "libell_d_acheminement": "IRODOUER", "code_postal": "35850", "coordonnees_gps": [48.2249209949, -1.86776064457], "code_commune_insee": "35135"}, "geometry": {"type": "Point", "coordinates": [-1.86776064457, 48.2249209949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8aa24249ef703bf59441f69635de8f9f1cefc6", "fields": {"nom_de_la_commune": "JAVENE", "libell_d_acheminement": "JAVENE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35137"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "881caa33f681d10e3243b705f0f1847b0b1b1b1d", "fields": {"nom_de_la_commune": "LANGOUET", "libell_d_acheminement": "LANGOUET", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35146"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4437924d72b0968ede1643112afe393dfedb2c42", "fields": {"nom_de_la_commune": "LILLEMER", "libell_d_acheminement": "LILLEMER", "code_postal": "35111", "coordonnees_gps": [48.5841192028, -1.83987270474], "code_commune_insee": "35153"}, "geometry": {"type": "Point", "coordinates": [-1.83987270474, 48.5841192028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "445d0f4ccd55cdfde11d3db23b3975b84b000873", "fields": {"nom_de_la_commune": "LOHEAC", "libell_d_acheminement": "LOHEAC", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35155"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a47fb808bfad1ad2ad7c20b27d99f42554c49ee", "fields": {"nom_de_la_commune": "LOUTEHEL", "libell_d_acheminement": "LOUTEHEL", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35160"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86e496d9519c12574df2921476e43b10293262ff", "fields": {"nom_de_la_commune": "LOUVIGNE DU DESERT", "libell_d_acheminement": "LOUVIGNE DU DESERT", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35162"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfc9f8fb28ad17d8afc0c745ee799e6fd80b029d", "fields": {"nom_de_la_commune": "MARCILLE ROBERT", "libell_d_acheminement": "MARCILLE ROBERT", "code_postal": "35240", "coordonnees_gps": [47.9216015444, -1.36801801684], "code_commune_insee": "35165"}, "geometry": {"type": "Point", "coordinates": [-1.36801801684, 47.9216015444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "513da288a25191eedc34dd984b84316b348efdb9", "fields": {"nom_de_la_commune": "MECE", "libell_d_acheminement": "MECE", "code_postal": "35450", "coordonnees_gps": [48.2058112494, -1.3219232409], "code_commune_insee": "35170"}, "geometry": {"type": "Point", "coordinates": [-1.3219232409, 48.2058112494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f3eef7295158cb229cece5f93e92fc2019f4b2", "fields": {"nom_de_la_commune": "MELESSE", "libell_d_acheminement": "MELESSE", "code_postal": "35520", "coordonnees_gps": [48.2154723883, -1.71567755367], "code_commune_insee": "35173"}, "geometry": {"type": "Point", "coordinates": [-1.71567755367, 48.2154723883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c33a94f61293d2b7d552f28ea011d074004784b", "fields": {"code_postal": "35480", "code_commune_insee": "35176", "libell_d_acheminement": "GUIPRY MESSAC", "ligne_5": "GUIPRY", "nom_de_la_commune": "GUIPRY MESSAC", "coordonnees_gps": [47.8244409976, -1.80170067957]}, "geometry": {"type": "Point", "coordinates": [-1.80170067957, 47.8244409976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1af880448117a5f44d70b7af849b5146ec09c5ad", "fields": {"nom_de_la_commune": "MONTAUBAN DE BRETAGNE", "libell_d_acheminement": "MONTAUBAN DE BRETAGNE", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35184"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9902c4ace5a145a19c9c5f1618cd91a63670b458", "fields": {"nom_de_la_commune": "MONTOURS", "libell_d_acheminement": "MONTOURS", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35191"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93937438c4e5da93f43643f520b6585cf6a073cf", "fields": {"nom_de_la_commune": "MONTREUIL DES LANDES", "libell_d_acheminement": "MONTREUIL DES LANDES", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35192"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "781ced6959588d1b4d3d93df138ac4f86cbac2c6", "fields": {"nom_de_la_commune": "MONTREUIL SOUS PEROUSE", "libell_d_acheminement": "MONTREUIL SOUS PEROUSE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35194"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b89ee8be7b47ccad68c5dd4bdebfb688311b32c9", "fields": {"nom_de_la_commune": "LA NOUAYE", "libell_d_acheminement": "LA NOUAYE", "code_postal": "35137", "coordonnees_gps": [48.1849164983, -1.93352887812], "code_commune_insee": "35203"}, "geometry": {"type": "Point", "coordinates": [-1.93352887812, 48.1849164983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90513c5d6a54c6067f52db241cd7b34602807a74", "fields": {"code_postal": "35230", "code_commune_insee": "35206", "libell_d_acheminement": "NOYAL CHATILLON SUR SEICHE", "ligne_5": "CHATILLON SUR SEICHE", "nom_de_la_commune": "NOYAL CHATILLON SUR SEICHE", "coordonnees_gps": [48.0164430154, -1.6442206032]}, "geometry": {"type": "Point", "coordinates": [-1.6442206032, 48.0164430154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fffbdfed64db9a0e9aa82bf18dd4ffb9b6c0bf6", "fields": {"nom_de_la_commune": "OSSE", "libell_d_acheminement": "OSSE", "code_postal": "35410", "coordonnees_gps": [48.0490244352, -1.51988264041], "code_commune_insee": "35209"}, "geometry": {"type": "Point", "coordinates": [-1.51988264041, 48.0490244352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ed5f465859030c80f915b6478180507a6d1857", "fields": {"nom_de_la_commune": "PACE", "libell_d_acheminement": "PACE", "code_postal": "35740", "coordonnees_gps": [48.1528245911, -1.77695493088], "code_commune_insee": "35210"}, "geometry": {"type": "Point", "coordinates": [-1.77695493088, 48.1528245911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74dcf6d13a8e1f87f136365bbe45999c93ba84e9", "fields": {"nom_de_la_commune": "LE PERTRE", "libell_d_acheminement": "LE PERTRE", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35217"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96a4889258a6bf42b4e738e7952773a08cf73dc3", "fields": {"nom_de_la_commune": "PIPRIAC", "libell_d_acheminement": "PIPRIAC", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35219"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c881c5be060dcf2c114c3c8def0909b88ea4627", "fields": {"nom_de_la_commune": "PLERGUER", "libell_d_acheminement": "PLERGUER", "code_postal": "35540", "coordonnees_gps": [48.5204175583, -1.86964225248], "code_commune_insee": "35224"}, "geometry": {"type": "Point", "coordinates": [-1.86964225248, 48.5204175583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5acb3cf4b4d0eea6e4f1ed9c11062d5dcf6fa4d2", "fields": {"nom_de_la_commune": "PLEUMELEUC", "libell_d_acheminement": "PLEUMELEUC", "code_postal": "35137", "coordonnees_gps": [48.1849164983, -1.93352887812], "code_commune_insee": "35227"}, "geometry": {"type": "Point", "coordinates": [-1.93352887812, 48.1849164983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558ea283b8f5c1ab27c57b6f2b9758bac571e8ab", "fields": {"nom_de_la_commune": "RETIERS", "libell_d_acheminement": "RETIERS", "code_postal": "35240", "coordonnees_gps": [47.9216015444, -1.36801801684], "code_commune_insee": "35239"}, "geometry": {"type": "Point", "coordinates": [-1.36801801684, 47.9216015444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73018961b7e20200093daece97ce6d3885f5e553", "fields": {"nom_de_la_commune": "LA RICHARDAIS", "libell_d_acheminement": "LA RICHARDAIS", "code_postal": "35780", "coordonnees_gps": [48.609296321, -2.04412756041], "code_commune_insee": "35241"}, "geometry": {"type": "Point", "coordinates": [-2.04412756041, 48.609296321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b58ddc3a70de937956e20d038518bf584fcb585b", "fields": {"nom_de_la_commune": "ROMAZY", "libell_d_acheminement": "ROMAZY", "code_postal": "35490", "coordonnees_gps": [48.3344573886, -1.51403943231], "code_commune_insee": "35244"}, "geometry": {"type": "Point", "coordinates": [-1.51403943231, 48.3344573886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7820583b941f87b7835a862b5afcb174faba5ae3", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DE VALAINS", "libell_d_acheminement": "ST CHRISTOPHE DE VALAINS", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35261"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b7a0656cd5744007e4b229c1d9724d3dce560d", "fields": {"nom_de_la_commune": "ST DOMINEUC", "libell_d_acheminement": "ST DOMINEUC", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35265"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e55bb5dcbb6bb5eaa9012115e4928e8d68af1d9", "fields": {"nom_de_la_commune": "ST GEORGES DE REINTEMBAULT", "libell_d_acheminement": "ST GEORGES DE REINTEMBAULT", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35271"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f073a82d3e1b9289fde11c2d7c2d210e472d9e10", "fields": {"nom_de_la_commune": "ST GENGOULPH", "libell_d_acheminement": "ST GENGOULPH", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02679"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d106e863ae83a29a9f6a3d6a61e037889b8794ea", "fields": {"nom_de_la_commune": "GRAND ROZOY", "libell_d_acheminement": "GRAND ROZOY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02665"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c974f1317b83d8cffbbfd6aef645a5e86bf22802", "fields": {"nom_de_la_commune": "STE PREUVE", "libell_d_acheminement": "STE PREUVE", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02690"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30ba4ca9e9d556d05b5c5484f47d93e63aacb412", "fields": {"nom_de_la_commune": "ST QUENTIN", "libell_d_acheminement": "ST QUENTIN", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02691"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26674cfc60f0202554cedf68e5bd72ebd498b063", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "02830", "coordonnees_gps": [49.9229668289, 4.16909562963], "code_commune_insee": "02684"}, "geometry": {"type": "Point", "coordinates": [4.16909562963, 49.9229668289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f21027a4b2259356bbb2762870db3bfcb7226b1", "fields": {"nom_de_la_commune": "ST MARD", "libell_d_acheminement": "ST MARD", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02682"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da35de8116ec37ddf832bfef877abeec0faecca6", "fields": {"nom_de_la_commune": "LA SELVE", "libell_d_acheminement": "LA SELVE", "code_postal": "02150", "coordonnees_gps": [49.5724565859, 3.96353926072], "code_commune_insee": "02705"}, "geometry": {"type": "Point", "coordinates": [3.96353926072, 49.5724565859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef66a1ac62f763e2def523367f6d808249c9db1b", "fields": {"nom_de_la_commune": "SEPTVAUX", "libell_d_acheminement": "SEPTVAUX", "code_postal": "02410", "coordonnees_gps": [49.5909068066, 3.39907207955], "code_commune_insee": "02707"}, "geometry": {"type": "Point", "coordinates": [3.39907207955, 49.5909068066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad5ef0bf02bf3b40aded89842507480a4c462ef7", "fields": {"nom_de_la_commune": "SOISSONS", "libell_d_acheminement": "SOISSONS", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02722"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "390267070c2d26144f664f0ad1e748d05d877e99", "fields": {"nom_de_la_commune": "SERMOISE", "libell_d_acheminement": "SERMOISE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02714"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b3ef27f2024181376b842db66e85a3940f8e1b", "fields": {"nom_de_la_commune": "ST SIMON", "libell_d_acheminement": "ST SIMON", "code_postal": "02640", "coordonnees_gps": [49.7574538282, 3.17195418496], "code_commune_insee": "02694"}, "geometry": {"type": "Point", "coordinates": [3.17195418496, 49.7574538282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac5046567b9abbc95ffe3d8caabc8a73ff7b2ac", "fields": {"nom_de_la_commune": "SAPONAY", "libell_d_acheminement": "SAPONAY", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02699"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e246b003a9d2fed970ae9cc77bee66eae7f18710", "fields": {"nom_de_la_commune": "SINCENY", "libell_d_acheminement": "SINCENY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02719"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f92659a0ebcfe0ce9e25d3f7e7b713dffe023594", "fields": {"nom_de_la_commune": "SERAIN", "libell_d_acheminement": "SERAIN", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02709"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e2b3332f42aeb5b0f73d153fd37e340f5234bb", "fields": {"nom_de_la_commune": "SERVAL", "libell_d_acheminement": "SERVAL", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02715"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98014dd210dc4edcb85d0314fd5ef7ccff1e5acd", "fields": {"nom_de_la_commune": "SAVY", "libell_d_acheminement": "SAVY", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02702"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9605a27853074f2e32f503de0e83c853f1bbf7f4", "fields": {"nom_de_la_commune": "LA BATIE VIEILLE", "libell_d_acheminement": "LA BATIE VIEILLE", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05018"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "012fb3bd9fcf640eaad5a52dfbeb02305c60a3fe", "fields": {"nom_de_la_commune": "VILLARS COLMARS", "libell_d_acheminement": "VILLARS COLMARS", "code_postal": "04370", "coordonnees_gps": [44.1743215148, 6.62460542768], "code_commune_insee": "04240"}, "geometry": {"type": "Point", "coordinates": [6.62460542768, 44.1743215148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eae9f0337364bb04d0a9641eedb70a21bf314b7", "fields": {"nom_de_la_commune": "VERDACHES", "libell_d_acheminement": "VERDACHES", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04235"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "526b4a66acebab669658be31569e6a71bf2bbd67", "fields": {"nom_de_la_commune": "VALERNES", "libell_d_acheminement": "VALERNES", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04231"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15ee2c22ceff71bc6097cf238eeb6a075f603981", "fields": {"nom_de_la_commune": "ST POURCAIN SUR SIOULE", "libell_d_acheminement": "ST POURCAIN SUR SIOULE", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03254"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a174068816ef5ee69017ed3f94f8cf57f0be88", "fields": {"nom_de_la_commune": "ST LEGER SUR VOUZANCE", "libell_d_acheminement": "ST LEGER SUR VOUZANCE", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03239"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45319c60fce715097b8e263e4d255a9f7543343e", "fields": {"nom_de_la_commune": "ST GERMAIN DES FOSSES", "libell_d_acheminement": "ST GERMAIN DES FOSSES", "code_postal": "03260", "coordonnees_gps": [46.2217159232, 3.4471669721], "code_commune_insee": "03236"}, "geometry": {"type": "Point", "coordinates": [3.4471669721, 46.2217159232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ec8c24dce2c8ff3e7aca14936f9255aa138730c", "fields": {"nom_de_la_commune": "ST NICOLAS DES BIEFS", "libell_d_acheminement": "ST NICOLAS DES BIEFS", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03248"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a14306767ff62a6f1401a3b4c15f496e215bf390", "fields": {"nom_de_la_commune": "ST LEOPARDIN D AUGY", "libell_d_acheminement": "ST LEOPARDIN D AUGY", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03241"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81f47390ccaed910edd9f5ba28bd20fa2da57a5", "fields": {"nom_de_la_commune": "ST MARTINIEN", "libell_d_acheminement": "ST MARTINIEN", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03246"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e6508dc492dbdd8ebe62ac3a6e87b43cc3665a", "fields": {"nom_de_la_commune": "ST ENNEMOND", "libell_d_acheminement": "ST ENNEMOND", "code_postal": "03400", "coordonnees_gps": [46.5948274865, 3.39131672736], "code_commune_insee": "03229"}, "geometry": {"type": "Point", "coordinates": [3.39131672736, 46.5948274865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f606fee0ca6a8db22930ae97803e589b1d315d", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "03440", "coordonnees_gps": [46.4644451309, 2.96888238917], "code_commune_insee": "03238"}, "geometry": {"type": "Point", "coordinates": [2.96888238917, 46.4644451309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73722a593c8e739dcfe28ae722b7879110f90255", "fields": {"nom_de_la_commune": "ST MENOUX", "libell_d_acheminement": "ST MENOUX", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03247"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f8534118a6a240a8cd42d2a23d69021563e68fa", "fields": {"nom_de_la_commune": "ST DESIRE", "libell_d_acheminement": "ST DESIRE", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03225"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1ba7fe7a8cb9a290be0b9e9a4427757575149a", "fields": {"nom_de_la_commune": "ST PRIEST EN MURAT", "libell_d_acheminement": "ST PRIEST EN MURAT", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03256"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1095b359538b7466d22b37829b55d59ff6c444d7", "fields": {"nom_de_la_commune": "SALIGNY SUR ROUDON", "libell_d_acheminement": "SALIGNY SUR ROUDON", "code_postal": "03470", "coordonnees_gps": [46.4660182657, 3.79821234181], "code_commune_insee": "03265"}, "geometry": {"type": "Point", "coordinates": [3.79821234181, 46.4660182657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf52d0afa8ec0fae30f8ef3f341299801673783f", "fields": {"nom_de_la_commune": "THIEL SUR ACOLIN", "libell_d_acheminement": "THIEL SUR ACOLIN", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03283"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4335298d820a593e9ab7143c15df71ea91b079f7", "fields": {"nom_de_la_commune": "STE THERENCE", "libell_d_acheminement": "STE THERENCE", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03261"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2537db2c03ee3415696a6e3a1f4c3d451c238825", "fields": {"nom_de_la_commune": "TAXAT SENAT", "libell_d_acheminement": "TAXAT SENAT", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03278"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d7912a7e28a2f4aea8654b717edc50aa0eeab47", "fields": {"nom_de_la_commune": "SERBANNES", "libell_d_acheminement": "SERBANNES", "code_postal": "03700", "coordonnees_gps": [46.0940657836, 3.37277682749], "code_commune_insee": "03271"}, "geometry": {"type": "Point", "coordinates": [3.37277682749, 46.0940657836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ed0142250e16570903e4e9c84b06524c5d4a9f", "fields": {"nom_de_la_commune": "ST SORNIN", "libell_d_acheminement": "ST SORNIN", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03260"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b83d7209357f4fb4a24293a002b08e318a2f1e0", "fields": {"nom_de_la_commune": "TRETEAU", "libell_d_acheminement": "TRETEAU", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03289"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177a20cab6b168ff6ea2341dcf5645f22be9f23b", "fields": {"nom_de_la_commune": "TARGET", "libell_d_acheminement": "TARGET", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03277"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1338a79158008a4781597e4c2ac03ba4f12eeccc", "fields": {"nom_de_la_commune": "URCAY", "libell_d_acheminement": "URCAY", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03293"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25451f800b011f2556faee0d5f60f354cf1cb408", "fields": {"nom_de_la_commune": "ST BONNET DE FOUR", "libell_d_acheminement": "ST BONNET DE FOUR", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03219"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "820f31a9b69de9bddb24a41094eee0e601d9474f", "fields": {"nom_de_la_commune": "LA PETITE MARCHE", "libell_d_acheminement": "LA PETITE MARCHE", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03206"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdcbb43b4e359710ab936e29ddf7c4d42838bf63", "fields": {"nom_de_la_commune": "NERIS LES BAINS", "libell_d_acheminement": "NERIS LES BAINS", "code_postal": "03310", "coordonnees_gps": [46.276794637, 2.66130166835], "code_commune_insee": "03195"}, "geometry": {"type": "Point", "coordinates": [2.66130166835, 46.276794637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "420890ca7f7947f6890baa2221febdb3b5983b1d", "fields": {"nom_de_la_commune": "NEUILLY LE REAL", "libell_d_acheminement": "NEUILLY LE REAL", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03197"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862c9a43a0deda4ed022a93dfe06328146b5f0e8", "fields": {"nom_de_la_commune": "POUZY MESANGY", "libell_d_acheminement": "POUZY MESANGY", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03210"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6a04c5a8fe8e8a3e4e96a7863dae43858305b11", "fields": {"nom_de_la_commune": "MONTMARAULT", "libell_d_acheminement": "MONTMARAULT", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03186"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01a43d1727199451a18c5ab974377fb37cb28fa", "fields": {"nom_de_la_commune": "LE MONTET", "libell_d_acheminement": "LE MONTET", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03183"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6352c69a4db6ff23ad8952d33ea502c592acaa0", "fields": {"nom_de_la_commune": "MONTORD", "libell_d_acheminement": "MONTORD", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03188"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74612978683141b56d1cfb9439aaa52e0353a9e9", "fields": {"nom_de_la_commune": "MOLLES", "libell_d_acheminement": "MOLLES", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03174"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8065e75aac09d83d97c95761a710235fa7c55281", "fields": {"nom_de_la_commune": "MURAT", "libell_d_acheminement": "MURAT", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03191"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5db1c4d00c370366f11c23c859e3ba2c26fe5b2b", "fields": {"nom_de_la_commune": "LA FERTE HAUTERIVE", "libell_d_acheminement": "LA FERTE HAUTERIVE", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03114"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e77b9ab85b6fe8ac745f94eba989780779e207", "fields": {"nom_de_la_commune": "GANNAY SUR LOIRE", "libell_d_acheminement": "GANNAY SUR LOIRE", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03119"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc18f078d0a4e7d6318f1bde720f2cce568ec018", "fields": {"nom_de_la_commune": "ESTIVAREILLES", "libell_d_acheminement": "ESTIVAREILLES", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03111"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c57dcaa4aa8c91200be24ad3e863ed90aee301d2", "fields": {"nom_de_la_commune": "GENNETINES", "libell_d_acheminement": "GENNETINES", "code_postal": "03400", "coordonnees_gps": [46.5948274865, 3.39131672736], "code_commune_insee": "03121"}, "geometry": {"type": "Point", "coordinates": [3.39131672736, 46.5948274865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "908303210030d71b1624af156397d9b4a4b460e0", "fields": {"nom_de_la_commune": "ETROUSSAT", "libell_d_acheminement": "ETROUSSAT", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03112"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a1afebb0f6c5a982ef24bb869a007ed738f785d", "fields": {"nom_de_la_commune": "LALIZOLLE", "libell_d_acheminement": "LALIZOLLE", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03135"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd3d9f9e8a5c9ff0ec62926428eb06ff8330d798", "fields": {"nom_de_la_commune": "FLEURIEL", "libell_d_acheminement": "FLEURIEL", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03115"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02aa324a457ad9b60ed1e4f3cf26847ec1bb0db", "fields": {"nom_de_la_commune": "LAFELINE", "libell_d_acheminement": "LAFELINE", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03134"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e174456219c5ca954e3a6b473a6d9cea1b6dff4", "fields": {"nom_de_la_commune": "GIPCY", "libell_d_acheminement": "GIPCY", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03122"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "838860b72dcd66d9e6ca06363d5a8154f2d5dca1", "fields": {"nom_de_la_commune": "HYDS", "libell_d_acheminement": "HYDS", "code_postal": "03600", "coordonnees_gps": [46.2666871749, 2.79054682985], "code_commune_insee": "03129"}, "geometry": {"type": "Point", "coordinates": [2.79054682985, 46.2666871749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c86a546d489ece83349bdb9c1f72fde1c924994e", "fields": {"nom_de_la_commune": "LOUROUX DE BEAUNE", "libell_d_acheminement": "LOUROUX DE BEAUNE", "code_postal": "03600", "coordonnees_gps": [46.2666871749, 2.79054682985], "code_commune_insee": "03151"}, "geometry": {"type": "Point", "coordinates": [2.79054682985, 46.2666871749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28520d0bfb2a2c86c810ef5c32310c8d25c08568", "fields": {"nom_de_la_commune": "LOUROUX DE BOUBLE", "libell_d_acheminement": "LOUROUX DE BOUBLE", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03152"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd20a7a70740c54b6224e8d745f093625b93dd75", "fields": {"nom_de_la_commune": "LE MAYET D ECOLE", "libell_d_acheminement": "LE MAYET D ECOLE", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03164"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ae3eb286785575a485006efc2476cc5e8bbd7d", "fields": {"nom_de_la_commune": "MEILLARD", "libell_d_acheminement": "MEILLARD", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03169"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2812004de23d668bfff3b9754bf52ba5e797fd2", "fields": {"nom_de_la_commune": "LAPRUGNE", "libell_d_acheminement": "LAPRUGNE", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03139"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d97d772b59571c561b383e2a29832971534db5c", "fields": {"nom_de_la_commune": "MEAULNE", "libell_d_acheminement": "MEAULNE", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03168"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7bdd823ee369221879fd247285ccd0ecc51a153", "fields": {"nom_de_la_commune": "LORIGES", "libell_d_acheminement": "LORIGES", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03148"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7302de61b7ca744d67da725a2d40e61a377b9c21", "fields": {"nom_de_la_commune": "MAZIRAT", "libell_d_acheminement": "MAZIRAT", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03167"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f91ced7aae2956338758a01796300578db916da2", "fields": {"nom_de_la_commune": "LUNEAU", "libell_d_acheminement": "LUNEAU", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03154"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e2250809ed29c621d76eaf7f1e68eeea7a9a7f8", "fields": {"nom_de_la_commune": "MERCY", "libell_d_acheminement": "MERCY", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03171"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8814d0870492fa931ca9d816a1c329f35fd53cc7", "fields": {"code_postal": "04270", "code_commune_insee": "04204", "libell_d_acheminement": "SENEZ", "ligne_5": "LE POIL", "nom_de_la_commune": "SENEZ", "coordonnees_gps": [43.9535232378, 6.23179869809]}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2e859cdcfee5dfbf2e334bdfd3123db0e7a449", "fields": {"nom_de_la_commune": "THORAME HAUTE", "libell_d_acheminement": "THORAME HAUTE", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04219"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3853445c8b93e51564d3e6240f02a4bdf2a5761", "fields": {"nom_de_la_commune": "VALENSOLE", "libell_d_acheminement": "VALENSOLE", "code_postal": "04210", "coordonnees_gps": [43.8471806316, 5.95950406566], "code_commune_insee": "04230"}, "geometry": {"type": "Point", "coordinates": [5.95950406566, 43.8471806316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0765babc35aa195c71fd535b3511a8b5edb6a703", "fields": {"nom_de_la_commune": "THOARD", "libell_d_acheminement": "THOARD", "code_postal": "04380", "coordonnees_gps": [44.1606174491, 6.13108296701], "code_commune_insee": "04217"}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c82e77eebf17a9764792829b30d8228de2c1e11", "fields": {"nom_de_la_commune": "THEZE", "libell_d_acheminement": "THEZE", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04216"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2c917ab831a05e33508e1a5c82bb5abb86eeb9f", "fields": {"code_postal": "05350", "code_commune_insee": "05038", "libell_d_acheminement": "CHATEAU VILLE VIEILLE", "ligne_5": "CHATEAU QUEYRAS", "nom_de_la_commune": "CHATEAU VILLE VIEILLE", "coordonnees_gps": [44.7398415746, 6.81322835157]}, "geometry": {"type": "Point", "coordinates": [6.81322835157, 44.7398415746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04ba7a90916410f1362a3ca760493ffe96c42d59", "fields": {"nom_de_la_commune": "CHATEAUROUX LES ALPES", "libell_d_acheminement": "CHATEAUROUX LES ALPES", "code_postal": "05380", "coordonnees_gps": [44.6421477992, 6.48352463507], "code_commune_insee": "05036"}, "geometry": {"type": "Point", "coordinates": [6.48352463507, 44.6421477992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12c30de5fe3ff5296ee094a8cda96ba35c638415", "fields": {"nom_de_la_commune": "CHATEAUNEUF D OZE", "libell_d_acheminement": "CHATEAUNEUF D OZE", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05035"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188bc1dabe93d41642d9218a28ccdc71ca0c6bd6", "fields": {"nom_de_la_commune": "CHAMPCELLA", "libell_d_acheminement": "CHAMPCELLA", "code_postal": "05310", "coordonnees_gps": [44.7404687507, 6.51315581075], "code_commune_insee": "05031"}, "geometry": {"type": "Point", "coordinates": [6.51315581075, 44.7404687507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9ebc75aa992f9201b1f54d83b133b95e8d9b392", "fields": {"nom_de_la_commune": "FOUILLOUSE", "libell_d_acheminement": "FOUILLOUSE", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05057"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c79ae318d7b22494eee312273726e8fd4af88d4d", "fields": {"nom_de_la_commune": "LES COSTES", "libell_d_acheminement": "LES COSTES", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05043"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4927ca3df25c51e1b8c97ac51c6cc43e5b45e7bb", "fields": {"nom_de_la_commune": "CHABOTTES", "libell_d_acheminement": "CHABOTTES", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05029"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "327938e2f7e153966ad3f5890afbe266219a9561", "fields": {"nom_de_la_commune": "CHANOUSSE", "libell_d_acheminement": "CHANOUSSE", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05033"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06bf1e4d4349fc465622f740a3957d8026a979e8", "fields": {"nom_de_la_commune": "BREZIERS", "libell_d_acheminement": "BREZIERS", "code_postal": "05190", "coordonnees_gps": [44.4605179001, 6.21963036357], "code_commune_insee": "05022"}, "geometry": {"type": "Point", "coordinates": [6.21963036357, 44.4605179001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44f2491111d3847b5c077bcacc9ec217042d234e", "fields": {"nom_de_la_commune": "LA CHAPELLE EN VALGAUDEMAR", "libell_d_acheminement": "LA CHAPELLE EN VALGAUDEMAR", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05064"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2140fc316f4d00e2375a814a9303e26cb8597d43", "fields": {"nom_de_la_commune": "LARDIER ET VALENCA", "libell_d_acheminement": "LARDIER ET VALENCA", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "05071"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c8a139adac480d90b39af4610d9544e025b5a14", "fields": {"nom_de_la_commune": "LA FREISSINOUSE", "libell_d_acheminement": "LA FREISSINOUSE", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05059"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f993c0f6b1b2c8f6fa7196edaae83cbb80598f91", "fields": {"nom_de_la_commune": "GUILLESTRE", "libell_d_acheminement": "GUILLESTRE", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05065"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d683469f47b21808657131eef0e23798803f0d7c", "fields": {"nom_de_la_commune": "MONTGARDIN", "libell_d_acheminement": "MONTGARDIN", "code_postal": "05230", "coordonnees_gps": [44.5500776801, 6.2567130171], "code_commune_insee": "05084"}, "geometry": {"type": "Point", "coordinates": [6.2567130171, 44.5500776801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87fc5332288afae62cc21d47755487087fd6f0d0", "fields": {"nom_de_la_commune": "MANTEYER", "libell_d_acheminement": "MANTEYER", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05075"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92c738407169e56f87750a3392458e48f17b4522", "fields": {"nom_de_la_commune": "MONTJAY", "libell_d_acheminement": "MONTJAY", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05086"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b17062f24f7f20c979d73a1eb381407a110f7989", "fields": {"nom_de_la_commune": "NEVACHE", "libell_d_acheminement": "NEVACHE", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05093"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47ba149a7d637d6941c71bd841f9ffccde13e898", "fields": {"code_postal": "05300", "code_commune_insee": "05118", "libell_d_acheminement": "VAL BUECH MEOUGE", "ligne_5": "ANTONAVES", "nom_de_la_commune": "VAL BUECH MEOUGE", "coordonnees_gps": [44.2953436251, 5.81680688288]}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d87affe4d52a5a4a2369908a988b21f0b225ffe", "fields": {"code_postal": "05340", "code_commune_insee": "05101", "libell_d_acheminement": "PELVOUX", "ligne_5": "AILEFROIDE", "nom_de_la_commune": "PELVOUX", "coordonnees_gps": [44.8995242291, 6.43584380145]}, "geometry": {"type": "Point", "coordinates": [6.43584380145, 44.8995242291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f309668886f0924610667533ab25c0eb9c139cc", "fields": {"nom_de_la_commune": "LA ROCHE DES ARNAUDS", "libell_d_acheminement": "LA ROCHE DES ARNAUDS", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05123"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60a9098af4512346d750ca3534d9e163c472a036", "fields": {"nom_de_la_commune": "PUY ST EUSEBE", "libell_d_acheminement": "PUY ST EUSEBE", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05108"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30610e17e92af1710fc81eeedc865d983b85563", "fields": {"nom_de_la_commune": "PUY ST ANDRE", "libell_d_acheminement": "PUY ST ANDRE", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05107"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a6c5142261b40d5f72193c8075a1b5f83377f22", "fields": {"nom_de_la_commune": "PUY SANIERES", "libell_d_acheminement": "PUY SANIERES", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05111"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc0ceedacc2ec1f4f116ca71c5bdaefc8ccecb42", "fields": {"nom_de_la_commune": "RISTOLAS", "libell_d_acheminement": "RISTOLAS", "code_postal": "05460", "coordonnees_gps": [44.7747049241, 6.96776772287], "code_commune_insee": "05120"}, "geometry": {"type": "Point", "coordinates": [6.96776772287, 44.7747049241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641e68c25ef8a5be085be8b74239b2ba72befc93", "fields": {"nom_de_la_commune": "ORPIERRE", "libell_d_acheminement": "ORPIERRE", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05097"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a90fa32f178e74231a36ee524a234bfa0345b6", "fields": {"nom_de_la_commune": "OIGNIES", "libell_d_acheminement": "OIGNIES", "code_postal": "62590", "coordonnees_gps": [50.4644775587, 2.99299716759], "code_commune_insee": "62637"}, "geometry": {"type": "Point", "coordinates": [2.99299716759, 50.4644775587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1afbff3c7358f13f4defa9970f9a206955030b27", "fields": {"nom_de_la_commune": "ORVILLE", "libell_d_acheminement": "ORVILLE", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62640"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d95061e68950fff0560c5c5a7cfe4cf90a7596a", "fields": {"nom_de_la_commune": "OUVE WIRQUIN", "libell_d_acheminement": "OUVE WIRQUIN", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62644"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3534205d609448d7f80f2031d4b97fecc771147b", "fields": {"nom_de_la_commune": "PALLUEL", "libell_d_acheminement": "PALLUEL", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62646"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb36863078a9b653cc0fe23f795c6e550b82c5a2", "fields": {"nom_de_la_commune": "PIHEM", "libell_d_acheminement": "PIHEM", "code_postal": "62570", "coordonnees_gps": [50.6952364342, 2.22748596722], "code_commune_insee": "62656"}, "geometry": {"type": "Point", "coordinates": [2.22748596722, 50.6952364342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "403c33d3b960201a4412adf4fc52b2c7a30b6e51", "fields": {"nom_de_la_commune": "PIHEN LES GUINES", "libell_d_acheminement": "PIHEN LES GUINES", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62657"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad2e4bf02c7cb9c4ba1dfdf215a7a3f1117a49e", "fields": {"nom_de_la_commune": "PITTEFAUX", "libell_d_acheminement": "PITTEFAUX", "code_postal": "62126", "coordonnees_gps": [50.7597525083, 1.66237719631], "code_commune_insee": "62658"}, "geometry": {"type": "Point", "coordinates": [1.66237719631, 50.7597525083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2c8c1efbc93076b3986370b1bab4553b319bce", "fields": {"nom_de_la_commune": "PLANQUES", "libell_d_acheminement": "PLANQUES", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62659"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46737248fd28be3cc8de3e40dd56a974ecf48a00", "fields": {"nom_de_la_commune": "LE PORTEL", "libell_d_acheminement": "LE PORTEL", "code_postal": "62480", "coordonnees_gps": [50.7112430459, 1.57547146076], "code_commune_insee": "62667"}, "geometry": {"type": "Point", "coordinates": [1.57547146076, 50.7112430459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecd4d5218f0c475e3de2ce91d5c77a55bd7f8b43", "fields": {"nom_de_la_commune": "PUISIEUX", "libell_d_acheminement": "PUISIEUX", "code_postal": "62116", "coordonnees_gps": [50.1489493894, 2.70436913467], "code_commune_insee": "62672"}, "geometry": {"type": "Point", "coordinates": [2.70436913467, 50.1489493894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "858a8d2c1712159b256ad69a53d0036739ae98e3", "fields": {"nom_de_la_commune": "QUEANT", "libell_d_acheminement": "QUEANT", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62673"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf1fdf7dfce45998f6830fd90f3aec8f3b01cda3", "fields": {"nom_de_la_commune": "QUERCAMPS", "libell_d_acheminement": "QUERCAMPS", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62675"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b18d13c64884b137848f62b4d36a3bc93a1b4d6", "fields": {"nom_de_la_commune": "LE QUESNOY EN ARTOIS", "libell_d_acheminement": "LE QUESNOY EN ARTOIS", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62677"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd61ef2db2ba2b67c9de2af2e33f88257bdc720", "fields": {"nom_de_la_commune": "REBERGUES", "libell_d_acheminement": "REBERGUES", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62692"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ec26a5ef4fc29d6307a56206484e0f69c74eba", "fields": {"nom_de_la_commune": "REBREUVE SUR CANCHE", "libell_d_acheminement": "REBREUVE SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62694"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f711115995d3c43da7020339a30091b6f0e0226", "fields": {"nom_de_la_commune": "RECOURT", "libell_d_acheminement": "RECOURT", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62697"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30897ad0cf3224078c49605e9e5526337113f9dd", "fields": {"nom_de_la_commune": "RECQUES SUR COURSE", "libell_d_acheminement": "RECQUES SUR COURSE", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62698"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ead5a58d1de60bbbaec9a1b5d76d6925a858fb40", "fields": {"nom_de_la_commune": "RENTY", "libell_d_acheminement": "RENTY", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62704"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9514f797f1cffd38d99896566e88f0fd371fc532", "fields": {"nom_de_la_commune": "ROCLINCOURT", "libell_d_acheminement": "ROCLINCOURT", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62714"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ec4edc2b4d20941c35c030193bc94fb55a3ca4", "fields": {"nom_de_la_commune": "ROCQUIGNY", "libell_d_acheminement": "ROCQUIGNY", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62715"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fccd874a042359bc187b18ff6f8ff870d65faaf", "fields": {"nom_de_la_commune": "RUISSEAUVILLE", "libell_d_acheminement": "RUISSEAUVILLE", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62726"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbbdec607753155cc42214014b667c1e04846ebb", "fields": {"nom_de_la_commune": "RUITZ", "libell_d_acheminement": "RUITZ", "code_postal": "62620", "coordonnees_gps": [50.4611274621, 2.60092856741], "code_commune_insee": "62727"}, "geometry": {"type": "Point", "coordinates": [2.60092856741, 50.4611274621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee33092057a71113b5b84d9cedbbd6e73de93b72", "fields": {"nom_de_la_commune": "SACHIN", "libell_d_acheminement": "SACHIN", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62732"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d338328b87acb19b794714f6524be34e78793f85", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62742"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3571c0b0f69fa23597595c8b38141d3239390e95", "fields": {"nom_de_la_commune": "STE CATHERINE", "libell_d_acheminement": "STE CATHERINE", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62744"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e06b3c1a549a0aa8a95383fd9fb25ac3d5d37c", "fields": {"nom_de_la_commune": "ST MARTIN CHOQUEL", "libell_d_acheminement": "ST MARTIN CHOQUEL", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62759"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbaf91f407ba341150520e06b0d3dafc3692c781", "fields": {"nom_de_la_commune": "ST MARTIN D HARDINGHEM", "libell_d_acheminement": "ST MARTIN D HARDINGHEM", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62760"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343ef3720d98c73dac5a15abc98598b010314abc", "fields": {"nom_de_la_commune": "ST OMER", "libell_d_acheminement": "ST OMER", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62765"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7746acddc311bd571f0498d2a27fb870a80caa7", "fields": {"nom_de_la_commune": "ST REMY AU BOIS", "libell_d_acheminement": "ST REMY AU BOIS", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62768"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2acf1af764c04826f4d33a55c0990f9eaad2c6b0", "fields": {"nom_de_la_commune": "ST TRICAT", "libell_d_acheminement": "ST TRICAT", "code_postal": "62185", "coordonnees_gps": [50.9031968827, 1.82269226345], "code_commune_insee": "62769"}, "geometry": {"type": "Point", "coordinates": [1.82269226345, 50.9031968827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1778a200a72438e25a57fc1859000180008f95", "fields": {"nom_de_la_commune": "SAPIGNIES", "libell_d_acheminement": "SAPIGNIES", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62776"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c21b10cde068c3dbed94dcd68c49fe54ffd4f36f", "fields": {"nom_de_la_commune": "SAUCHY CAUCHY", "libell_d_acheminement": "SAUCHY CAUCHY", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62780"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "042a8cdb2929ba0028748541451984cea9b9a04e", "fields": {"nom_de_la_commune": "SAUDEMONT", "libell_d_acheminement": "SAUDEMONT", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62782"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5739424a1b18b9bf3f1c99ba7e2d6a5e96ae67f4", "fields": {"nom_de_la_commune": "SENLIS", "libell_d_acheminement": "SENLIS", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62790"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea7ea758ec0610c552e136e1163f49ba3145ce5", "fields": {"nom_de_la_commune": "SERICOURT", "libell_d_acheminement": "SERICOURT", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62791"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4012d3f340843c162dd248be6363c18e9500c2e4", "fields": {"nom_de_la_commune": "SETQUES", "libell_d_acheminement": "SETQUES", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62794"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abdc07a9f725df8a7733138d887e942b5948406e", "fields": {"nom_de_la_commune": "SUS ST LEGER", "libell_d_acheminement": "SUS ST LEGER", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62804"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7daa19d08ff3d6c7b6a992f044e737732921166", "fields": {"nom_de_la_commune": "TIGNY NOYELLE", "libell_d_acheminement": "TIGNY NOYELLE", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62815"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ad1db438545dcef8498bcbd15479e8090959f3e", "fields": {"nom_de_la_commune": "TILLOY LES HERMAVILLE", "libell_d_acheminement": "TILLOY LES HERMAVILLE", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62816"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "923f0186875f11978f615440a9abde72ff1ec3c5", "fields": {"nom_de_la_commune": "TORTEQUESNE", "libell_d_acheminement": "TORTEQUESNE", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62825"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b540ef531415d3381b170706acfb5a1dc248c639", "fields": {"nom_de_la_commune": "TOURNEHEM SUR LA HEM", "libell_d_acheminement": "TOURNEHEM SUR LA HEM", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62827"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cef4f93d620ba7f61f8567c953c225698b41b2fa", "fields": {"nom_de_la_commune": "VENDIN LE VIEIL", "libell_d_acheminement": "VENDIN LE VIEIL", "code_postal": "62880", "coordonnees_gps": [50.470091244, 2.86997706713], "code_commune_insee": "62842"}, "geometry": {"type": "Point", "coordinates": [2.86997706713, 50.470091244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e438ccc5e728686ce7d40077944d0384088777", "fields": {"nom_de_la_commune": "VERLINCTHUN", "libell_d_acheminement": "VERLINCTHUN", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62845"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c91f9c631adef8e8abca866dfb9505213bc79f", "fields": {"nom_de_la_commune": "VIEILLE EGLISE", "libell_d_acheminement": "VIEILLE EGLISE", "code_postal": "62162", "coordonnees_gps": [50.937258857, 2.08448464494], "code_commune_insee": "62852"}, "geometry": {"type": "Point", "coordinates": [2.08448464494, 50.937258857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d83cba104b1f297ea93a7cca765c3962d18c17d7", "fields": {"nom_de_la_commune": "VIEIL MOUTIER", "libell_d_acheminement": "VIEIL MOUTIER", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62853"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec14d1463867dfb69e6f9fc3bc6239144ae4838a", "fields": {"nom_de_la_commune": "VILLERS AU BOIS", "libell_d_acheminement": "VILLERS AU BOIS", "code_postal": "62144", "coordonnees_gps": [50.3578850683, 2.67826739933], "code_commune_insee": "62854"}, "geometry": {"type": "Point", "coordinates": [2.67826739933, 50.3578850683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5772d042c30ccca36dd97527c7414ed3aaf6eda2", "fields": {"nom_de_la_commune": "VILLERS CHATEL", "libell_d_acheminement": "VILLERS CHATEL", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62857"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc998bd6adfd4cb0bc3be081ac7e7e4b529122d5", "fields": {"nom_de_la_commune": "WACQUINGHEN", "libell_d_acheminement": "WACQUINGHEN", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62867"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a0e60bcafdb5f72ca51a1c4c1972b82497c415", "fields": {"nom_de_la_commune": "WAILLY", "libell_d_acheminement": "WAILLY", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62869"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46f43631b86e6499fda92217222b1ba246038537", "fields": {"nom_de_la_commune": "WARLUS", "libell_d_acheminement": "WARLUS", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62878"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f99395302fa3e9c787e1863339759041b40fed56", "fields": {"nom_de_la_commune": "WIERRE AU BOIS", "libell_d_acheminement": "WIERRE AU BOIS", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62888"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537e39e38ecddaf5ac7cd78e3cffe5881ef1b9e0", "fields": {"nom_de_la_commune": "WILLERVAL", "libell_d_acheminement": "WILLERVAL", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62892"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c05a76aca29266b3bd45628f543a54e1f17e86c3", "fields": {"nom_de_la_commune": "WITTERNESSE", "libell_d_acheminement": "WITTERNESSE", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62900"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a3783c3cd3ffabc6adeba1eb4ed1c816886fe9a", "fields": {"nom_de_la_commune": "ZOTEUX", "libell_d_acheminement": "ZOTEUX", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62903"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11b243ac69290c34ca40a78dc2a04ba98fc25b5", "fields": {"nom_de_la_commune": "ZUTKERQUE", "libell_d_acheminement": "ZUTKERQUE", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62906"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cd6f19aab6bad21bfdb08944c061a016ab23e16", "fields": {"nom_de_la_commune": "ANZAT LE LUGUET", "libell_d_acheminement": "ANZAT LE LUGUET", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63006"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd7c76b3e506a869ed9401cc85c0e797c35e0bc9", "fields": {"nom_de_la_commune": "AUGEROLLES", "libell_d_acheminement": "AUGEROLLES", "code_postal": "63930", "coordonnees_gps": [45.7386166201, 3.6587951745], "code_commune_insee": "63016"}, "geometry": {"type": "Point", "coordinates": [3.6587951745, 45.7386166201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55b90d1e2434abd7e2a9cd280f75950c7a6fd2f8", "fields": {"nom_de_la_commune": "AYAT SUR SIOULE", "libell_d_acheminement": "AYAT SUR SIOULE", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63025"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c670df5bee4e6621adea9b896cddbd7be59ef9e", "fields": {"nom_de_la_commune": "BEURIERES", "libell_d_acheminement": "BEURIERES", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63039"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c032f4a898fa05b8047a07f1cfab8e8c3390e5c", "fields": {"nom_de_la_commune": "BLANZAT", "libell_d_acheminement": "BLANZAT", "code_postal": "63112", "coordonnees_gps": [45.827972158, 3.0732400431], "code_commune_insee": "63042"}, "geometry": {"type": "Point", "coordinates": [3.0732400431, 45.827972158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988a494565f3386adc04bc7b25725e01d00aae20", "fields": {"nom_de_la_commune": "LA BOURBOULE", "libell_d_acheminement": "LA BOURBOULE", "code_postal": "63150", "coordonnees_gps": [45.5912385571, 2.7549139086], "code_commune_insee": "63047"}, "geometry": {"type": "Point", "coordinates": [2.7549139086, 45.5912385571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4e7b6415ad453ca13160df9cb5e75c590a895be", "fields": {"nom_de_la_commune": "BOURG LASTIC", "libell_d_acheminement": "BOURG LASTIC", "code_postal": "63760", "coordonnees_gps": [45.6646500323, 2.57820074575], "code_commune_insee": "63048"}, "geometry": {"type": "Point", "coordinates": [2.57820074575, 45.6646500323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fcfbc86b14e08346fbf8a26724140e7f75b7f2d", "fields": {"nom_de_la_commune": "BROMONT LAMOTHE", "libell_d_acheminement": "BROMONT LAMOTHE", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63055"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f6252440a071f9321297e667685ac70a984df75", "fields": {"nom_de_la_commune": "BROUSSE", "libell_d_acheminement": "BROUSSE", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63056"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c56d12fb4d1218716292344f0d010d95d30e32d", "fields": {"nom_de_la_commune": "LE BRUGERON", "libell_d_acheminement": "LE BRUGERON", "code_postal": "63880", "coordonnees_gps": [45.7022203315, 3.68151290757], "code_commune_insee": "63057"}, "geometry": {"type": "Point", "coordinates": [3.68151290757, 45.7022203315]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f883f94cca65b5151b30ac2a81be1d252d31919", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63060"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2341f9a21d28b7c5ca89102f7e8b036509070c15", "fields": {"nom_de_la_commune": "BUSSIERES ET PRUNS", "libell_d_acheminement": "BUSSIERES ET PRUNS", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63061"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5afb0e45ae37ec1387474bde352847f4dedaeaff", "fields": {"code_postal": "63250", "code_commune_insee": "63066", "libell_d_acheminement": "CELLES SUR DUROLLE", "ligne_5": "LES SARRAIX", "nom_de_la_commune": "CELLES SUR DUROLLE", "coordonnees_gps": [45.8665213579, 3.68184303614]}, "geometry": {"type": "Point", "coordinates": [3.68184303614, 45.8665213579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d44e2237521e4b3f959d308b46eda1a937d2bd4", "fields": {"nom_de_la_commune": "CHABRELOCHE", "libell_d_acheminement": "CHABRELOCHE", "code_postal": "63250", "coordonnees_gps": [45.8665213579, 3.68184303614], "code_commune_insee": "63072"}, "geometry": {"type": "Point", "coordinates": [3.68184303614, 45.8665213579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb02cab26431754e61034c8fb312e487d71d5fd", "fields": {"nom_de_la_commune": "CHAMALIERES", "libell_d_acheminement": "CHAMALIERES", "code_postal": "63400", "coordonnees_gps": [45.7743186902, 3.06190043276], "code_commune_insee": "63075"}, "geometry": {"type": "Point", "coordinates": [3.06190043276, 45.7743186902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d741c71d3da8e5ab577c4a28bfc972fa676e7757", "fields": {"nom_de_la_commune": "CHATEAUGAY", "libell_d_acheminement": "CHATEAUGAY", "code_postal": "63119", "coordonnees_gps": [45.8542573591, 3.09244323467], "code_commune_insee": "63099"}, "geometry": {"type": "Point", "coordinates": [3.09244323467, 45.8542573591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c030eae10b0edc8ec2981944a3cb71bbc0e3cf5", "fields": {"nom_de_la_commune": "CHATEAUNEUF LES BAINS", "libell_d_acheminement": "CHATEAUNEUF LES BAINS", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63100"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baebbc5bb46bc1f971d03034e06871dd5d9067a2", "fields": {"nom_de_la_commune": "CHATELDON", "libell_d_acheminement": "CHATELDON", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63102"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f50dc1ece799606cfe90c55300ad5d021c47a682", "fields": {"nom_de_la_commune": "CHAURIAT", "libell_d_acheminement": "CHAURIAT", "code_postal": "63117", "coordonnees_gps": [45.7435035497, 3.27762294978], "code_commune_insee": "63106"}, "geometry": {"type": "Point", "coordinates": [3.27762294978, 45.7435035497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658c4168bcb3eebde4b1ba9151452853c39ddffa", "fields": {"nom_de_la_commune": "CHAVAROUX", "libell_d_acheminement": "CHAVAROUX", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63107"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a477fff49f3b695b2a07150e1daa2fd169826631", "fields": {"nom_de_la_commune": "CLERMONT FERRAND", "libell_d_acheminement": "CLERMONT FERRAND", "code_postal": "63000", "coordonnees_gps": [45.7859081171, 3.1155334528], "code_commune_insee": "63113"}, "geometry": {"type": "Point", "coordinates": [3.1155334528, 45.7859081171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28396244b22c75530a500dd73fdba638ff84d416", "fields": {"nom_de_la_commune": "COMBRONDE", "libell_d_acheminement": "COMBRONDE", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63116"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2045c1ce9b71f199a9cb5c2d7a073332ab3c4d29", "fields": {"nom_de_la_commune": "COMPAINS", "libell_d_acheminement": "COMPAINS", "code_postal": "63610", "coordonnees_gps": [45.477068899, 2.93237565554], "code_commune_insee": "63117"}, "geometry": {"type": "Point", "coordinates": [2.93237565554, 45.477068899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48978efc18ce89f8f47ff1794465b042a5141a7", "fields": {"nom_de_la_commune": "CREVANT LAVEINE", "libell_d_acheminement": "CREVANT LAVEINE", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63128"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aa9265b5360f7877c938a39775fd18c63f182a9", "fields": {"nom_de_la_commune": "DALLET", "libell_d_acheminement": "DALLET", "code_postal": "63111", "coordonnees_gps": [45.7720454178, 3.23904434211], "code_commune_insee": "63133"}, "geometry": {"type": "Point", "coordinates": [3.23904434211, 45.7720454178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e1b139eb6fe13baf66c695f0bbe39502edf6805", "fields": {"nom_de_la_commune": "DAUZAT SUR VODABLE", "libell_d_acheminement": "DAUZAT SUR VODABLE", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63134"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23c76f13a7e50906f032985e86785a8aedc19061", "fields": {"nom_de_la_commune": "ECHANDELYS", "libell_d_acheminement": "ECHANDELYS", "code_postal": "63980", "coordonnees_gps": [45.5203885139, 3.57234672112], "code_commune_insee": "63142"}, "geometry": {"type": "Point", "coordinates": [3.57234672112, 45.5203885139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6a8200949a84a59da9cc5714fa3d5dc740e75f", "fields": {"nom_de_la_commune": "ENTRAIGUES", "libell_d_acheminement": "ENTRAIGUES", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63149"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c1e1ae962b4cfab67a2522681c52329813bae94", "fields": {"nom_de_la_commune": "ENVAL", "libell_d_acheminement": "ENVAL", "code_postal": "63530", "coordonnees_gps": [45.855002413, 3.02081571111], "code_commune_insee": "63150"}, "geometry": {"type": "Point", "coordinates": [3.02081571111, 45.855002413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25800f66be6c2439ef1c3740e763e3bd3ce42fb3", "fields": {"nom_de_la_commune": "ESCOUTOUX", "libell_d_acheminement": "ESCOUTOUX", "code_postal": "63300", "coordonnees_gps": [45.8543527446, 3.53248495668], "code_commune_insee": "63151"}, "geometry": {"type": "Point", "coordinates": [3.53248495668, 45.8543527446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac32fb7c5bfebb5e5231118d78eb09d7b7f7d2ce", "fields": {"nom_de_la_commune": "FOURNOLS", "libell_d_acheminement": "FOURNOLS", "code_postal": "63980", "coordonnees_gps": [45.5203885139, 3.57234672112], "code_commune_insee": "63162"}, "geometry": {"type": "Point", "coordinates": [3.57234672112, 45.5203885139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e18687651b412c3d8ea4542b897bfacf3f1d0275", "fields": {"nom_de_la_commune": "GRANDEYROLLES", "libell_d_acheminement": "GRANDEYROLLES", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63172"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dbefb8b2aa6a86bec151d69444af2bdaa3308d8", "fields": {"nom_de_la_commune": "GRANDVAL", "libell_d_acheminement": "GRANDVAL", "code_postal": "63890", "coordonnees_gps": [45.5726810009, 3.61894402093], "code_commune_insee": "63174"}, "geometry": {"type": "Point", "coordinates": [3.61894402093, 45.5726810009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d1d9c5a4ebf4ceaddbe471340507a40bdc7ce8", "fields": {"nom_de_la_commune": "ISSERTEAUX", "libell_d_acheminement": "ISSERTEAUX", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63177"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e6927f37c2e685244eeb0b471aa44e5e89b8284", "fields": {"nom_de_la_commune": "JOZERAND", "libell_d_acheminement": "JOZERAND", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63181"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f366a15e2728c92dc26d55149a9ceb084365006", "fields": {"nom_de_la_commune": "LAPS", "libell_d_acheminement": "LAPS", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63188"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b06a78974f6e3240b3a8849764fd61571357ec06", "fields": {"nom_de_la_commune": "LEMPDES", "libell_d_acheminement": "LEMPDES", "code_postal": "63370", "coordonnees_gps": [45.7728332802, 3.19302224533], "code_commune_insee": "63193"}, "geometry": {"type": "Point", "coordinates": [3.19302224533, 45.7728332802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95a1f220895cbe048628e34af38522df3f583e13", "fields": {"nom_de_la_commune": "LEZOUX", "libell_d_acheminement": "LEZOUX", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63195"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f702deb391e71ee821ccb38e13045bb39473ae69", "fields": {"nom_de_la_commune": "LIMONS", "libell_d_acheminement": "LIMONS", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63196"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a1787c8d45a623878f829ca5b808e2bff84d6e4", "fields": {"nom_de_la_commune": "LUDESSE", "libell_d_acheminement": "LUDESSE", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63199"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a88c653fd1e8d3a7931eb7555451400ac795788d", "fields": {"nom_de_la_commune": "MALAUZAT", "libell_d_acheminement": "MALAUZAT", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63203"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72344f3e2ee2348232c3492cf8678f59237955f2", "fields": {"nom_de_la_commune": "MANZAT", "libell_d_acheminement": "MANZAT", "code_postal": "63410", "coordonnees_gps": [45.9529948229, 2.96821882159], "code_commune_insee": "63206"}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "365b80fd887d14a3dc4d6fedc392551c0f78b4f0", "fields": {"nom_de_la_commune": "MAREUGHEOL", "libell_d_acheminement": "MAREUGHEOL", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63209"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2540342ef39a69f96e85edcb943ca3ad97372d8", "fields": {"nom_de_la_commune": "MAUZUN", "libell_d_acheminement": "MAUZUN", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63216"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e460b74c1d442ed717e3320ed06b171d059b00db", "fields": {"nom_de_la_commune": "MAZAYE", "libell_d_acheminement": "MAZAYE", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63219"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1910327dfad1a1d09f7c0684c8257405616d466c", "fields": {"nom_de_la_commune": "BEUZEVILLE LA GUERARD", "libell_d_acheminement": "BEUZEVILLE LA GUERARD", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76091"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4135b7b6e75a742687d1a3189bda99f922d8d106", "fields": {"nom_de_la_commune": "BLANGY SUR BRESLE", "libell_d_acheminement": "BLANGY SUR BRESLE", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76101"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a511ba1c79ad0e3134cf8c1b3e039aa9cf71604f", "fields": {"nom_de_la_commune": "BOIS GUILBERT", "libell_d_acheminement": "BOIS GUILBERT", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76107"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb0a135cde5bc3d57519cfa20730003dbb7c0e9", "fields": {"nom_de_la_commune": "BOLLEVILLE", "libell_d_acheminement": "BOLLEVILLE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76115"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67fed40797fec50132822deb0298bf050198d8b7", "fields": {"nom_de_la_commune": "CALLENGEVILLE", "libell_d_acheminement": "CALLENGEVILLE", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76122"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96e918bdae6aeb3ac784c1a3b0b043a32883bf30", "fields": {"code_postal": "76270", "code_commune_insee": "76122", "libell_d_acheminement": "CALLENGEVILLE", "ligne_5": "LES ESSARTS VARIMPRE", "nom_de_la_commune": "CALLENGEVILLE", "coordonnees_gps": [49.7406847594, 1.46475769739]}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "644664d3178e1f18e09f4f671bc40000dd5dcc2b", "fields": {"nom_de_la_commune": "BOSC MESNIL", "libell_d_acheminement": "BOSC MESNIL", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76126"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd11c4878799bddb69a2e16217d97993d00f254b", "fields": {"nom_de_la_commune": "BOUVILLE", "libell_d_acheminement": "BOUVILLE", "code_postal": "76360", "coordonnees_gps": [49.5442328015, 0.945102763311], "code_commune_insee": "76135"}, "geometry": {"type": "Point", "coordinates": [0.945102763311, 49.5442328015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c847ebbc3485c69ef4a413100491fbf30193d9", "fields": {"nom_de_la_commune": "BRACQUETUIT", "libell_d_acheminement": "BRACQUETUIT", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76138"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521ba686dae188d123e34db52528f582c4c1974a", "fields": {"nom_de_la_commune": "BRADIANCOURT", "libell_d_acheminement": "BRADIANCOURT", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76139"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e55dda1e4aa15830c6de13e4a1fc434675eb26ed", "fields": {"nom_de_la_commune": "BRAMETOT", "libell_d_acheminement": "BRAMETOT", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76140"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79abfe5dc711c898002d99f5509a8bd14201b66c", "fields": {"nom_de_la_commune": "CANVILLE LES DEUX EGLISES", "libell_d_acheminement": "CANVILLE LES DEUX EGLISES", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76158"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67e694d047d2e41ccbeb5299e6dfe125e2dd8398", "fields": {"code_postal": "76490", "code_commune_insee": "76164", "libell_d_acheminement": "RIVES EN SEINE", "ligne_5": "CAUDEBEC EN CAUX", "nom_de_la_commune": "RIVES EN SEINE", "coordonnees_gps": [49.5497184764, 0.687731909353]}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b107d36118777e1ba5dc88b90ff0394c019184b7", "fields": {"code_postal": "76490", "code_commune_insee": "76164", "libell_d_acheminement": "RIVES EN SEINE", "ligne_5": "VILLEQUIER", "nom_de_la_commune": "RIVES EN SEINE", "coordonnees_gps": [49.5497184764, 0.687731909353]}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9e920d4d31cf775f2dda94c3e597c0cd0522c31", "fields": {"nom_de_la_commune": "CLIPONVILLE", "libell_d_acheminement": "CLIPONVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76182"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609513599a2a3ebe934da6f0671940cbd25e4cd7", "fields": {"nom_de_la_commune": "COMPAINVILLE", "libell_d_acheminement": "COMPAINVILLE", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76185"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04761ac125d0096a00325308655348dbf1d6c72d", "fields": {"code_postal": "76910", "code_commune_insee": "76192", "libell_d_acheminement": "CRIEL SUR MER", "ligne_5": "MESNIL VAL", "nom_de_la_commune": "CRIEL SUR MER", "coordonnees_gps": [50.002581149, 1.30116674877]}, "geometry": {"type": "Point", "coordinates": [1.30116674877, 50.002581149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73d9042531f6a3cb389f19c64a9768a3b699927", "fields": {"nom_de_la_commune": "CRIQUIERS", "libell_d_acheminement": "CRIQUIERS", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76199"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d17e5865f69398f2ea460944d5c7f3022211815", "fields": {"nom_de_la_commune": "CUVERVILLE", "libell_d_acheminement": "CUVERVILLE", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76206"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70d613558c670580535eab6b24c9f947ae143d6", "fields": {"nom_de_la_commune": "ECALLES ALIX", "libell_d_acheminement": "ECALLES ALIX", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76223"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a442ebdf706732b0ac6bf3c1dd25dd6641afb2e", "fields": {"nom_de_la_commune": "ECRETTEVILLE SUR MER", "libell_d_acheminement": "ECRETTEVILLE SUR MER", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76226"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3006c1ddad1ad8bbf4c037a23495315bfb4f807", "fields": {"nom_de_la_commune": "ELBEUF SUR ANDELLE", "libell_d_acheminement": "ELBEUF SUR ANDELLE", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76230"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345b4fd085fb4303d99a5a45a9415c3d761db473", "fields": {"nom_de_la_commune": "ELLECOURT", "libell_d_acheminement": "ELLECOURT", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76233"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8aa9798690069776a02b114f7496e3596b168d0", "fields": {"nom_de_la_commune": "EMANVILLE", "libell_d_acheminement": "EMANVILLE", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76234"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c43a1fadafff282f80e382a2d67932f4c2fdb3", "fields": {"nom_de_la_commune": "ERNEMONT LA VILLETTE", "libell_d_acheminement": "ERNEMONT LA VILLETTE", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76242"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "818479520968ddd2ece4d240117690865029b245", "fields": {"nom_de_la_commune": "ESCLAVELLES", "libell_d_acheminement": "ESCLAVELLES", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76244"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c18230c18d9618e3e8c61384f707144a1298ac85", "fields": {"nom_de_la_commune": "ESTEVILLE", "libell_d_acheminement": "ESTEVILLE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76247"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3399a6db896a4c967085fe509513661291be067d", "fields": {"nom_de_la_commune": "ETALONDES", "libell_d_acheminement": "ETALONDES", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76252"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1db361f01c37c5e3fbeb75050d15578fbe4c964", "fields": {"nom_de_la_commune": "FERRIERES EN BRAY", "libell_d_acheminement": "FERRIERES EN BRAY", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76260"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6334e3867dccb7ed59a0345f419369afa69a8818", "fields": {"nom_de_la_commune": "LA FERTE ST SAMSON", "libell_d_acheminement": "LA FERTE ST SAMSON", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76261"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c7141f652f57e1d6f3849a24f6babccc4a58fe", "fields": {"nom_de_la_commune": "FONTAINE SOUS PREAUX", "libell_d_acheminement": "FONTAINE SOUS PREAUX", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76273"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178af59aae5c9e9fc4ace8795962be585468bbff", "fields": {"nom_de_la_commune": "LA FONTELAYE", "libell_d_acheminement": "LA FONTELAYE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76274"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "533a7137ae630b41429556930451c91130d476a5", "fields": {"nom_de_la_commune": "FONTENAY", "libell_d_acheminement": "FONTENAY", "code_postal": "76290", "coordonnees_gps": [49.5514571259, 0.184758051625], "code_commune_insee": "76275"}, "geometry": {"type": "Point", "coordinates": [0.184758051625, 49.5514571259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9aaa23075a324fdc11d20e8e472d1cdbfcdedf2", "fields": {"nom_de_la_commune": "FREAUVILLE", "libell_d_acheminement": "FREAUVILLE", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76280"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7185bbaf0cb2727c13150398b969d1975bf3547d", "fields": {"nom_de_la_commune": "FRESNOY FOLNY", "libell_d_acheminement": "FRESNOY FOLNY", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76286"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a610b99e6d4f82f7eff2b3a05db5e8dd57088e", "fields": {"code_postal": "76190", "code_commune_insee": "76289", "libell_d_acheminement": "ST MARTIN DE L IF", "ligne_5": "LA FOLLETIERE", "nom_de_la_commune": "ST MARTIN DE L IF", "coordonnees_gps": [49.6137220579, 0.75005615397]}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2c6e8a19eedfcc81bba87fbb2b7a0ce6e1344a", "fields": {"code_postal": "76700", "code_commune_insee": "76305", "libell_d_acheminement": "GONFREVILLE L ORCHER", "ligne_5": "GOURNAY EN CAUX", "nom_de_la_commune": "GONFREVILLE L ORCHER", "coordonnees_gps": [49.4973035255, 0.236903290282]}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc41a4ca04240ad1e96de3e9c36144163b21984", "fields": {"nom_de_la_commune": "GONNEVILLE LA MALLET", "libell_d_acheminement": "GONNEVILLE LA MALLET", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76307"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "204a414a34aae7482e44e4b4933d259a8800b229", "fields": {"nom_de_la_commune": "GOURNAY EN BRAY", "libell_d_acheminement": "GOURNAY EN BRAY", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76312"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2440fc672e879567f6c03cb9eeafd6b11452a296", "fields": {"nom_de_la_commune": "GOUY", "libell_d_acheminement": "GOUY", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76313"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e561cfbb94b32bfb679a83647eef304053277b", "fields": {"nom_de_la_commune": "GRAIMBOUVILLE", "libell_d_acheminement": "GRAIMBOUVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76314"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3819ed19a89d59d9b644b2e0d93bd6b37ad9c970", "fields": {"nom_de_la_commune": "GRAND COURONNE", "libell_d_acheminement": "GRAND COURONNE", "code_postal": "76530", "coordonnees_gps": [49.3726997193, 0.948232561629], "code_commune_insee": "76319"}, "geometry": {"type": "Point", "coordinates": [0.948232561629, 49.3726997193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f5a9eee1f1d33d62d76a34a13f52a103b3db0d", "fields": {"nom_de_la_commune": "GRANDCOURT", "libell_d_acheminement": "GRANDCOURT", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76320"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9b7781a1f22e765326a998cc9d59b4053ff9b6", "fields": {"nom_de_la_commune": "GREGES", "libell_d_acheminement": "GREGES", "code_postal": "76370", "coordonnees_gps": [49.9195191713, 1.14251674665], "code_commune_insee": "76324"}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a48c762f3ea989fa058165beb9d6f9ae8a84565", "fields": {"nom_de_la_commune": "GRIGNEUSEVILLE", "libell_d_acheminement": "GRIGNEUSEVILLE", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76328"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b59386a5edf90ccc40a49b6013783dca3fd6c1b1", "fields": {"nom_de_la_commune": "GRUCHET LE VALASSE", "libell_d_acheminement": "GRUCHET LE VALASSE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76329"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ba1af4d47d1c37bd386854e02a8b1de9be2e22", "fields": {"nom_de_la_commune": "GRUCHET ST SIMEON", "libell_d_acheminement": "GRUCHET ST SIMEON", "code_postal": "76810", "coordonnees_gps": [49.8183017172, 0.909956349488], "code_commune_insee": "76330"}, "geometry": {"type": "Point", "coordinates": [0.909956349488, 49.8183017172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139b34b20cb09d5d5fb6966b233f3f9031c8a575", "fields": {"nom_de_la_commune": "GUEUTTEVILLE LES GRES", "libell_d_acheminement": "GUEUTTEVILLE LES GRES", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76336"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "927c66955f751df80667f14c59fc5cb215689208", "fields": {"nom_de_la_commune": "HAUCOURT", "libell_d_acheminement": "HAUCOURT", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76343"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e6800eead11a2368669c06e2aed823cd723e95c", "fields": {"nom_de_la_commune": "LE HAVRE", "libell_d_acheminement": "LE HAVRE", "code_postal": "76600", "coordonnees_gps": [49.4965610328, 0.1402707121], "code_commune_insee": "76351"}, "geometry": {"type": "Point", "coordinates": [0.1402707121, 49.4965610328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9ec3011afbf0ff33b1738aabde399f9c376b4e1", "fields": {"nom_de_la_commune": "LE HAVRE", "libell_d_acheminement": "LE HAVRE", "code_postal": "76610", "coordonnees_gps": [49.4965610328, 0.1402707121], "code_commune_insee": "76351"}, "geometry": {"type": "Point", "coordinates": [0.1402707121, 49.4965610328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0ee659ccf6ac7375c80182d88b6e726acbda6d", "fields": {"nom_de_la_commune": "LE HERON", "libell_d_acheminement": "LE HERON", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76358"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef530122b05f5b9586e07c0dee3b21b9691062bf", "fields": {"nom_de_la_commune": "HOUDETOT", "libell_d_acheminement": "HOUDETOT", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76365"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f369513af2992aa39b62c3ab668d89bceb59308b", "fields": {"nom_de_la_commune": "HOUPPEVILLE", "libell_d_acheminement": "HOUPPEVILLE", "code_postal": "76770", "coordonnees_gps": [49.5108089037, 1.07268488267], "code_commune_insee": "76367"}, "geometry": {"type": "Point", "coordinates": [1.07268488267, 49.5108089037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98d096ad504e43bca56968a2b071111e64b7684", "fields": {"nom_de_la_commune": "HUGLEVILLE EN CAUX", "libell_d_acheminement": "HUGLEVILLE EN CAUX", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76370"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afba4fc21dca824782ac53fbe41beceb401c8514", "fields": {"nom_de_la_commune": "LES IFS", "libell_d_acheminement": "LES IFS", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76371"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea6e3816da20e045b692e4993615155626bc165", "fields": {"nom_de_la_commune": "LANDES VIEILLES ET NEUVES", "libell_d_acheminement": "LANDES VIEILLES ET NEUVES", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76381"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2465b85d2076ad11b6eefea32fd4a14c44b954b0", "fields": {"nom_de_la_commune": "LONGUERUE", "libell_d_acheminement": "LONGUERUE", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76396"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "977f95f80433602629e14a9bf8c986d1ee9ef14f", "fields": {"nom_de_la_commune": "MANIQUERVILLE", "libell_d_acheminement": "MANIQUERVILLE", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76406"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd48e4f9787b9cb595efa265ea805476154b27af", "fields": {"nom_de_la_commune": "MANNEVILLE LA GOUPIL", "libell_d_acheminement": "MANNEVILLE LA GOUPIL", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76408"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da9d692d643e7cbc304bdc4fb964cc7e19adc9d2", "fields": {"nom_de_la_commune": "MASSY", "libell_d_acheminement": "MASSY", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76415"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb83d3155479414ce12f48eff64e1aa6d578093", "fields": {"nom_de_la_commune": "LE MESNIL ESNARD", "libell_d_acheminement": "LE MESNIL ESNARD", "code_postal": "76240", "coordonnees_gps": [49.4050423755, 1.13866977273], "code_commune_insee": "76429"}, "geometry": {"type": "Point", "coordinates": [1.13866977273, 49.4050423755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c801d79c5f8171773b51bb23909e44c1b919487", "fields": {"nom_de_la_commune": "MONTROTY", "libell_d_acheminement": "MONTROTY", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76450"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8baa45d7460643005d2d3db438ad560a85da875c", "fields": {"nom_de_la_commune": "MOTTEVILLE", "libell_d_acheminement": "MOTTEVILLE", "code_postal": "76970", "coordonnees_gps": [49.6427537558, 0.834194996945], "code_commune_insee": "76456"}, "geometry": {"type": "Point", "coordinates": [0.834194996945, 49.6427537558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c77483c7f81a6e39be2181bef95a31e0799f2dc", "fields": {"nom_de_la_commune": "MUCHEDENT", "libell_d_acheminement": "MUCHEDENT", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76458"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8df77712971d1f2c27e2d103417f10251ae486b0", "fields": {"nom_de_la_commune": "NEUVILLE FERRIERES", "libell_d_acheminement": "NEUVILLE FERRIERES", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76465"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0013a35cf6b4513183881e31f79feea9b58bf489", "fields": {"nom_de_la_commune": "OUDALLE", "libell_d_acheminement": "OUDALLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76489"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af5960abc1ccf3f9c9d276980e8aab40208568b", "fields": {"nom_de_la_commune": "OURVILLE EN CAUX", "libell_d_acheminement": "OURVILLE EN CAUX", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76490"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "077f5f581d182dbed7e86f5b2f23f3ef5f27dc78", "fields": {"nom_de_la_commune": "OUVILLE LA RIVIERE", "libell_d_acheminement": "OUVILLE LA RIVIERE", "code_postal": "76860", "coordonnees_gps": [49.8805230118, 0.952829289971], "code_commune_insee": "76492"}, "geometry": {"type": "Point", "coordinates": [0.952829289971, 49.8805230118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63d4ac47954a0d14d4a5bfa7b149bd350387cd72", "fields": {"nom_de_la_commune": "PLEINE SEVE", "libell_d_acheminement": "PLEINE SEVE", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76504"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41998f3206dd78e6b3550661c64709cf300cbf64", "fields": {"nom_de_la_commune": "QUINCAMPOIX", "libell_d_acheminement": "QUINCAMPOIX", "code_postal": "76230", "coordonnees_gps": [49.5059681606, 1.15634318194], "code_commune_insee": "76517"}, "geometry": {"type": "Point", "coordinates": [1.15634318194, 49.5059681606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91764af5e773fa6146b4c8c49e5bf7b16b7e6200", "fields": {"nom_de_la_commune": "RAFFETOT", "libell_d_acheminement": "RAFFETOT", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76518"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18d57390ccaf16129a7e21ac8374c48c4961f5e6", "fields": {"nom_de_la_commune": "REALCAMP", "libell_d_acheminement": "REALCAMP", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76520"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62c0d0d31ecdef8ad014101c442fff4d62b0e3a6", "fields": {"nom_de_la_commune": "REUVILLE", "libell_d_acheminement": "REUVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76524"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bd649b1a4e6c74bda4ad8eaae423ea584824f4", "fields": {"nom_de_la_commune": "ROUEN", "libell_d_acheminement": "ROUEN", "code_postal": "76100", "coordonnees_gps": [49.4414760352, 1.09318612833], "code_commune_insee": "76540"}, "geometry": {"type": "Point", "coordinates": [1.09318612833, 49.4414760352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0e75a396984b11c7c7e272efc009f92f74d473a", "fields": {"nom_de_la_commune": "ROUTES", "libell_d_acheminement": "ROUTES", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76542"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5485eefde3deb48aa613f69dbbf7ab91dec44de", "fields": {"nom_de_la_commune": "RY", "libell_d_acheminement": "RY", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76548"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd03ab24f9474c2a92f468c481e266c706a94099", "fields": {"nom_de_la_commune": "SAHURS", "libell_d_acheminement": "SAHURS", "code_postal": "76113", "coordonnees_gps": [49.3773922379, 0.947884639946], "code_commune_insee": "76550"}, "geometry": {"type": "Point", "coordinates": [0.947884639946, 49.3773922379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24c28a4de21beec86237b08246950db19d11e8d5", "fields": {"nom_de_la_commune": "ST ANDRE SUR CAILLY", "libell_d_acheminement": "ST ANDRE SUR CAILLY", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76555"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25325fe03f4b95a9d719708f0eef6ea55589f69d", "fields": {"nom_de_la_commune": "ST AUBIN EPINAY", "libell_d_acheminement": "ST AUBIN EPINAY", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76560"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0e88394a2d5e663d3b6bfb3a6864a00d20e29e", "fields": {"nom_de_la_commune": "ST AUBIN LES ELBEUF", "libell_d_acheminement": "ST AUBIN LES ELBEUF", "code_postal": "76410", "coordonnees_gps": [49.3161439073, 1.06648311512], "code_commune_insee": "76561"}, "geometry": {"type": "Point", "coordinates": [1.06648311512, 49.3161439073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42cea125422f58582e2520feff2d28b5ad09f5cc", "fields": {"nom_de_la_commune": "ST AUBIN LE CAUF", "libell_d_acheminement": "ST AUBIN LE CAUF", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76562"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4782029c6e4654bdf92b382746aecc83639448", "fields": {"nom_de_la_commune": "ST AUBIN SUR MER", "libell_d_acheminement": "ST AUBIN SUR MER", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76564"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c257d12409e27bb2d7104bf1a2a9e4e2451738b", "fields": {"nom_de_la_commune": "STE BEUVE EN RIVIERE", "libell_d_acheminement": "STE BEUVE EN RIVIERE", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76567"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2e649a2676412b30a84cd45cda89b6a8a12878", "fields": {"nom_de_la_commune": "ST GILLES DE CRETOT", "libell_d_acheminement": "ST GILLES DE CRETOT", "code_postal": "76490", "coordonnees_gps": [49.5497184764, 0.687731909353], "code_commune_insee": "76585"}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37643b869b64ae675dcb42e82e5fcb4009a04422", "fields": {"nom_de_la_commune": "ST GILLES DE LA NEUVILLE", "libell_d_acheminement": "ST GILLES DE LA NEUVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76586"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df71da804f839c28aa4e57100d73a1190fbeb54", "fields": {"nom_de_la_commune": "STE HELENE BONDEVILLE", "libell_d_acheminement": "STE HELENE BONDEVILLE", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76587"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c81318bb3bc2095cb2e3f952dc7634d6f9ea74f", "fields": {"nom_de_la_commune": "ST HELLIER", "libell_d_acheminement": "ST HELLIER", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76588"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da6ff290b35f8ace5efa38fa46b72b032a53948b", "fields": {"nom_de_la_commune": "ST JACQUES SUR DARNETAL", "libell_d_acheminement": "ST JACQUES SUR DARNETAL", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76591"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44dc380d45b54bdf8ed8a8a59ba0469dfd0c4627", "fields": {"nom_de_la_commune": "ST LEONARD", "libell_d_acheminement": "ST LEONARD", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76600"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce7f7543e9ddd68d7dcdae67e5c9c8da69898de9", "fields": {"nom_de_la_commune": "ST MACLOU DE FOLLEVILLE", "libell_d_acheminement": "ST MACLOU DE FOLLEVILLE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76602"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a37ecbc2a3e4d6880701f71dbca5af58abfe44", "fields": {"nom_de_la_commune": "ST MARDS", "libell_d_acheminement": "ST MARDS", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76604"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec4d00540c5a1972279dcddbaf012a519122874c", "fields": {"nom_de_la_commune": "STE MARGUERITE SUR MER", "libell_d_acheminement": "STE MARGUERITE SUR MER", "code_postal": "76119", "coordonnees_gps": [49.9045710817, 0.981854479387], "code_commune_insee": "76605"}, "geometry": {"type": "Point", "coordinates": [0.981854479387, 49.9045710817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c28ad3793a7386b2451cde501d7e310cecbe7f8d", "fields": {"nom_de_la_commune": "STE MARGUERITE SUR FAUVILLE", "libell_d_acheminement": "STE MARGUERITE SUR FAUVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76607"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1cac10dbe091e241ed90974881f37fee63ab09d", "fields": {"nom_de_la_commune": "ST MARTIN AUX BUNEAUX", "libell_d_acheminement": "ST MARTIN AUX BUNEAUX", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76613"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c9a876f7703408678049cc5266f2453bdc97c75", "fields": {"code_postal": "76370", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "BELLEVILLE SUR MER", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9195191713, 1.14251674665]}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea69c280b954f30e2cdf2362d541cc07aad25c0d", "fields": {"code_postal": "76370", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "BERNEVAL LE GRAND", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9195191713, 1.14251674665]}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37b3d520da8064eeb92cd3ad48d9fd6fa67dd1df", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "GRENY", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6592cb414d0c5bdd376248ca2d698b7d88ef56dd", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "PENLY", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "883119db735a9d0e5fcd30457c0acac1f839cf43", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "ST QUENTIN AU BOSC", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c942e0138e288c6a4f57e22e73f61f72c061dde9", "fields": {"nom_de_la_commune": "ENGLANCOURT", "libell_d_acheminement": "ENGLANCOURT", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02276"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea3166657a8d243c99fd51b74797a8bf7e00d71", "fields": {"nom_de_la_commune": "DEUILLET", "libell_d_acheminement": "DEUILLET", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02262"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "702864a1f20a32327a4899cc4567dec4f9cc6d9b", "fields": {"nom_de_la_commune": "ESSISES", "libell_d_acheminement": "ESSISES", "code_postal": "02570", "coordonnees_gps": [48.9733835684, 3.38685321975], "code_commune_insee": "02289"}, "geometry": {"type": "Point", "coordinates": [3.38685321975, 48.9733835684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d715dbe85546a83ff900532f03aec39c06c42e3d", "fields": {"nom_de_la_commune": "ERLOY", "libell_d_acheminement": "ERLOY", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02284"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a94e757f36e265c5aef8ce39f2219656332dd3e", "fields": {"nom_de_la_commune": "DURY", "libell_d_acheminement": "DURY", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02273"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd31f57903e61dabeab85f10f27d4d622d6acce", "fields": {"nom_de_la_commune": "CHIVY LES ETOUVELLES", "libell_d_acheminement": "CHIVY LES ETOUVELLES", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02191"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de61254980ae4106321bd51d39f8afe750e286d7", "fields": {"nom_de_la_commune": "CHEVRESIS MONCEAU", "libell_d_acheminement": "CHEVRESIS MONCEAU", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02184"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d369e453a55d4a56d02aa6a179837cc5f8703ceb", "fields": {"nom_de_la_commune": "CONDE SUR AISNE", "libell_d_acheminement": "CONDE SUR AISNE", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02210"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c29441e11b014cd4b0c6b6f201cb75b2ffbf797", "fields": {"nom_de_la_commune": "CHEZY SUR MARNE", "libell_d_acheminement": "CHEZY SUR MARNE", "code_postal": "02570", "coordonnees_gps": [48.9733835684, 3.38685321975], "code_commune_insee": "02186"}, "geometry": {"type": "Point", "coordinates": [3.38685321975, 48.9733835684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af328523a31e8907c4435ee93ed13a80bb058595", "fields": {"nom_de_la_commune": "CLASTRES", "libell_d_acheminement": "CLASTRES", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02199"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b05e65947f9143d1f63778e4487af75eb07aff93", "fields": {"nom_de_la_commune": "CIERGES", "libell_d_acheminement": "CIERGES", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02193"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "600d1085fd00adc546bc6350feedb77243bff162", "fields": {"nom_de_la_commune": "CHERET", "libell_d_acheminement": "CHERET", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02177"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45a44174fb6b5c4444b1bd92eb30404a8c74b84c", "fields": {"nom_de_la_commune": "COINCY", "libell_d_acheminement": "COINCY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02203"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71a98a7fb97fa978a777560c0efd50afd0625fc3", "fields": {"nom_de_la_commune": "CHOUY", "libell_d_acheminement": "CHOUY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02192"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c4ede8555f4efc64aaaa8bf282676a9a7849866", "fields": {"nom_de_la_commune": "CILLY", "libell_d_acheminement": "CILLY", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02194"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "159e32843ee31547c57acf26d9e1a82f01b6767d", "fields": {"nom_de_la_commune": "COURCELLES SUR VESLE", "libell_d_acheminement": "COURCELLES SUR VESLE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02224"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5302b605efb84c0e128e5f7617805f072f5d47cf", "fields": {"nom_de_la_commune": "CUISSY ET GENY", "libell_d_acheminement": "CUISSY ET GENY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02252"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2203765c271fdff64bdb617fe708fbc56648ca", "fields": {"nom_de_la_commune": "CROIX FONSOMME", "libell_d_acheminement": "CROIX FONSOMME", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02240"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a5a78527bded27634034871b9cb60b92bfc377", "fields": {"nom_de_la_commune": "COURCHAMPS", "libell_d_acheminement": "COURCHAMPS", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02225"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e82b1b1656670db32a73e361b558eb656d5f2c", "fields": {"nom_de_la_commune": "CRAONNELLE", "libell_d_acheminement": "CRAONNELLE", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02235"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95fb67d8e0e5d27e2e0730cf099b933d5233b703", "fields": {"nom_de_la_commune": "COURBOIN", "libell_d_acheminement": "COURBOIN", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02223"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e16716f23145686bbe99f645cf6a0bd07a544b2", "fields": {"nom_de_la_commune": "CRUPILLY", "libell_d_acheminement": "CRUPILLY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02244"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "963701e9ac9db17d4ec3fa109006d82884d48729", "fields": {"nom_de_la_commune": "CORBENY", "libell_d_acheminement": "CORBENY", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02215"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2675592581e86103874b60dddbe89f551cee0858", "fields": {"nom_de_la_commune": "COUPRU", "libell_d_acheminement": "COUPRU", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02221"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7677b2b6844b2155b390183d625b6961ba988d", "fields": {"nom_de_la_commune": "DALLON", "libell_d_acheminement": "DALLON", "code_postal": "02680", "coordonnees_gps": [49.80786398, 3.24088325825], "code_commune_insee": "02257"}, "geometry": {"type": "Point", "coordinates": [3.24088325825, 49.80786398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2db849d81582887466e301d15086cc287b94a90", "fields": {"nom_de_la_commune": "FROIDMONT COHARTILLE", "libell_d_acheminement": "FROIDMONT COHARTILLE", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02338"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f8e2e558f16a674cc46a0023484b5d425b3bb84", "fields": {"nom_de_la_commune": "FAUCOUCOURT", "libell_d_acheminement": "FAUCOUCOURT", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02301"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d1c3cb9e9277b375144ad7df668eee3a0e7253", "fields": {"nom_de_la_commune": "GERNICOURT", "libell_d_acheminement": "GERNICOURT", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02344"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04fd6f6a84bd0e0046dade7f81364ab739a86be", "fields": {"nom_de_la_commune": "FOLEMBRAY", "libell_d_acheminement": "FOLEMBRAY", "code_postal": "02670", "coordonnees_gps": [49.5466521248, 3.27704956705], "code_commune_insee": "02318"}, "geometry": {"type": "Point", "coordinates": [3.27704956705, 49.5466521248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d7c993d35704f05e76989f5216463e9750c121", "fields": {"nom_de_la_commune": "FESTIEUX", "libell_d_acheminement": "FESTIEUX", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02309"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0117dd748865dd88e6fd1ef7492878258e0b5f", "fields": {"nom_de_la_commune": "ETREUX", "libell_d_acheminement": "ETREUX", "code_postal": "02510", "coordonnees_gps": [49.9800730697, 3.64269846822], "code_commune_insee": "02298"}, "geometry": {"type": "Point", "coordinates": [3.64269846822, 49.9800730697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2c666c9fb3a963b2e49ec276911b8fdf0b65fc9", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02316"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69897d3938552dd5bf733fa5ff8e8065c9cab124", "fields": {"nom_de_la_commune": "GERGNY", "libell_d_acheminement": "GERGNY", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02342"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be6fbec774f51bd866d4792ecedd2cc43263d1ed", "fields": {"code_postal": "02540", "code_commune_insee": "02458", "libell_d_acheminement": "DHUYS ET MORIN EN BRIE", "ligne_5": "MARCHAIS EN BRIE", "nom_de_la_commune": "DHUYS ET MORIN EN BRIE", "coordonnees_gps": [48.9128673746, 3.4403848461]}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c83192edd5c408bd7574f49584906dc4e54411c1", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "VAUXCERE", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e189866624ae195dc2d27b43b7316c57515881", "fields": {"nom_de_la_commune": "LIESSE NOTRE DAME", "libell_d_acheminement": "LIESSE NOTRE DAME", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02430"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be71967c924644e0aaa874f009e7a62cc94101ae", "fields": {"nom_de_la_commune": "MAREST DAMPCOURT", "libell_d_acheminement": "MAREST DAMPCOURT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02461"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8b8455b8a25f53a0080355947dd9075e7b25f88", "fields": {"nom_de_la_commune": "MAREUIL EN DOLE", "libell_d_acheminement": "MAREUIL EN DOLE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02462"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74958440c435a3315224c7a057dd42d49e679d35", "fields": {"nom_de_la_commune": "MARFONTAINE", "libell_d_acheminement": "MARFONTAINE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02463"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a25ae2854305be3f8e86ddcaf36f79d6b69f3e5", "fields": {"nom_de_la_commune": "LOUPEIGNE", "libell_d_acheminement": "LOUPEIGNE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02442"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13a11b8992426575b3660fd838e21abc5346689c", "fields": {"nom_de_la_commune": "LESDINS", "libell_d_acheminement": "LESDINS", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02420"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add73b4a1bd462fdd9cc31cf17019c6e98fdab50", "fields": {"nom_de_la_commune": "LAUNOY", "libell_d_acheminement": "LAUNOY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02412"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212691e12bcf3252e85efa11a0a7417b70e2e09e", "fields": {"nom_de_la_commune": "LIZY", "libell_d_acheminement": "LIZY", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02434"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8adceee3edc176a19de192181d10b9933b47256a", "fields": {"nom_de_la_commune": "GOUSSANCOURT", "libell_d_acheminement": "GOUSSANCOURT", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02351"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe987a0d5e7a5953082f6383ab6c7ed74ede0570", "fields": {"nom_de_la_commune": "GIBERCOURT", "libell_d_acheminement": "GIBERCOURT", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02345"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9305257dfe3b62e97c30e08d2516538bb2df41b", "fields": {"nom_de_la_commune": "HOMBLIERES", "libell_d_acheminement": "HOMBLIERES", "code_postal": "02720", "coordonnees_gps": [49.8506777552, 3.38251026426], "code_commune_insee": "02383"}, "geometry": {"type": "Point", "coordinates": [3.38251026426, 49.8506777552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fc3563b286f84f6c526d2c7cf84eda8eebf18a6", "fields": {"nom_de_la_commune": "JUMENCOURT", "libell_d_acheminement": "JUMENCOURT", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02395"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc4835a870b3814251f1d9876c42b96a1fbf79a4", "fields": {"nom_de_la_commune": "LANISCOURT", "libell_d_acheminement": "LANISCOURT", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02407"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c400ae28fc9f082413c4e97c07a8526b30867b8", "fields": {"nom_de_la_commune": "ITANCOURT", "libell_d_acheminement": "ITANCOURT", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02387"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1d62b5be1c85c0148044b04fb5a5fa559f46ba", "fields": {"nom_de_la_commune": "HINACOURT", "libell_d_acheminement": "HINACOURT", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02380"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "689942de039925432deee5b81d296728fed60b9c", "fields": {"nom_de_la_commune": "HAUTION", "libell_d_acheminement": "HAUTION", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02377"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52181fe4765dc8157e31728587068035e89fbc0e", "fields": {"nom_de_la_commune": "JUMIGNY", "libell_d_acheminement": "JUMIGNY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02396"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67452d73c6f612b6122fe900e2dbda0bc187d547", "fields": {"nom_de_la_commune": "HOLNON", "libell_d_acheminement": "HOLNON", "code_postal": "02760", "coordonnees_gps": [49.8580828393, 3.21383047105], "code_commune_insee": "02382"}, "geometry": {"type": "Point", "coordinates": [3.21383047105, 49.8580828393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe6d94a73ea4f827784aaf3fd24afd2e9da98045", "fields": {"nom_de_la_commune": "NEUFCHATEL SUR AISNE", "libell_d_acheminement": "NEUFCHATEL SUR AISNE", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02541"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a85620e457bcf3fb594888284e8f2262600d92e", "fields": {"nom_de_la_commune": "MONTIGNY SUR CRECY", "libell_d_acheminement": "MONTIGNY SUR CRECY", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02517"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2898da9a8c61ec577dcbef6aaad0cea17aacb00", "fields": {"nom_de_la_commune": "MORTEFONTAINE", "libell_d_acheminement": "MORTEFONTAINE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02528"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44bbbe1b035d020730a8c5f18f06ae2c3efd1ce8", "fields": {"nom_de_la_commune": "MONT ST JEAN", "libell_d_acheminement": "MONT ST JEAN", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02522"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49341b79972fdaa1c103da9a4137910ca390d9e7", "fields": {"nom_de_la_commune": "MONTLOUE", "libell_d_acheminement": "MONTLOUE", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02519"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2b1f66fac1b8ffe1594fcdbad7ed00089dba902", "fields": {"nom_de_la_commune": "MUSCOURT", "libell_d_acheminement": "MUSCOURT", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02534"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7b784085c69754b1515f5467041fcc07ebc340d", "fields": {"nom_de_la_commune": "MONCEAU LE NEUF ET FAUCOUZY", "libell_d_acheminement": "MONCEAU LE NEUF ET FAUCOUZY", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02491"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c67104678958abd81985b2de7b095aabfdea2ed", "fields": {"nom_de_la_commune": "MERLIEUX ET FOUQUEROLLES", "libell_d_acheminement": "MERLIEUX ET FOUQUEROLLES", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02478"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f32dd089838e4334f691ea2c72754cb82cb499", "fields": {"nom_de_la_commune": "MONTIGNY SOUS MARLE", "libell_d_acheminement": "MONTIGNY SOUS MARLE", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02516"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b448c2c8482a7e5f021f1fdc34169b890abf3b77", "fields": {"nom_de_la_commune": "MONTIGNY LENGRAIN", "libell_d_acheminement": "MONTIGNY LENGRAIN", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02514"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17398629b68a3012694c6daf809a3b0003f30ca8", "fields": {"nom_de_la_commune": "MAUREGNY EN HAYE", "libell_d_acheminement": "MAUREGNY EN HAYE", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02472"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "742944d1219f1016bc4a51ce02d98ee64b9c95a3", "fields": {"nom_de_la_commune": "MARLY GOMONT", "libell_d_acheminement": "MARLY GOMONT", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02469"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d658618f4d070854f8e7cf89b342266ded356131", "fields": {"nom_de_la_commune": "MONTGOBERT", "libell_d_acheminement": "MONTGOBERT", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02506"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "069629643d99ec14ee3813a3f6df33ce19daf184", "fields": {"nom_de_la_commune": "MENNEVILLE", "libell_d_acheminement": "MENNEVILLE", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02475"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a21d7e215c2330878b39cbda843c38a908243d4", "fields": {"nom_de_la_commune": "MONTFAUCON", "libell_d_acheminement": "MONTFAUCON", "code_postal": "02540", "coordonnees_gps": [48.9128673746, 3.4403848461], "code_commune_insee": "02505"}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae175a32039c0751035b095b71320db771ef0e2", "fields": {"nom_de_la_commune": "MENNEVRET", "libell_d_acheminement": "MENNEVRET", "code_postal": "02630", "coordonnees_gps": [49.9922293283, 3.57095592896], "code_commune_insee": "02476"}, "geometry": {"type": "Point", "coordinates": [3.57095592896, 49.9922293283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b2de041bbde609f863767ff7068e2e97cb127f", "fields": {"nom_de_la_commune": "LA NEUVILLE EN BEINE", "libell_d_acheminement": "LA NEUVILLE EN BEINE", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02546"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3433b86e3db8a649b6b93f69db9c3aac8fc216f5", "fields": {"nom_de_la_commune": "PROVISEUX ET PLESNOY", "libell_d_acheminement": "PROVISEUX ET PLESNOY", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02627"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d04044985ef96cee6be663142e9dcce9b08f758a", "fields": {"nom_de_la_commune": "QUINCY BASSE", "libell_d_acheminement": "QUINCY BASSE", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02632"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd763f97ab90058324b6c3faae66457d771c7e63", "fields": {"nom_de_la_commune": "PIERREPONT", "libell_d_acheminement": "PIERREPONT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02600"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3065141b738401bb0f39d5a4c79b6161bd4e4525", "fields": {"nom_de_la_commune": "PROUVAIS", "libell_d_acheminement": "PROUVAIS", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02626"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f5a84c3cc85686291afd1bbf120234805707b63", "fields": {"nom_de_la_commune": "PLOMION", "libell_d_acheminement": "PLOMION", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02608"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37419a0e795386c43cc10c981723dcb05101e6de", "fields": {"nom_de_la_commune": "REMIGNY", "libell_d_acheminement": "REMIGNY", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02639"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876bd521e8d2270d7e2bbb7cce63057e0070b7f3", "fields": {"nom_de_la_commune": "RESIGNY", "libell_d_acheminement": "RESIGNY", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02642"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79dbcc7cbca4b72ad75eef92f4159cdac688f6cb", "fields": {"nom_de_la_commune": "PRISCES", "libell_d_acheminement": "PRISCES", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02623"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cf435941ff2dc7cdad8741c4a3e29d6a4378c00", "fields": {"nom_de_la_commune": "ORIGNY EN THIERACHE", "libell_d_acheminement": "ORIGNY EN THIERACHE", "code_postal": "02550", "coordonnees_gps": [49.8858633722, 4.01070714049], "code_commune_insee": "02574"}, "geometry": {"type": "Point", "coordinates": [4.01070714049, 49.8858633722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f78fdc0cddbd5cfef0c19da626190b8d0d3eea5", "fields": {"nom_de_la_commune": "NOUVION LE VINEUX", "libell_d_acheminement": "NOUVION LE VINEUX", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02561"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b9f1fcf8ebbfc92994addf9558b26d32d2b240", "fields": {"nom_de_la_commune": "NOUVION LE COMTE", "libell_d_acheminement": "NOUVION LE COMTE", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02560"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d99fc407014b595f1030beb7ba258093aec3f56", "fields": {"nom_de_la_commune": "OULCHY LA VILLE", "libell_d_acheminement": "OULCHY LA VILLE", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02579"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "411a8aaea88d8e7e1416446f502fd1bcc9931bf3", "fields": {"nom_de_la_commune": "PASSY SUR MARNE", "libell_d_acheminement": "PASSY SUR MARNE", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02595"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "126028e58999495bb11efd8e31a1286f91a0bfde", "fields": {"nom_de_la_commune": "NOROY SUR OURCQ", "libell_d_acheminement": "NOROY SUR OURCQ", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02557"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2098dfd2f29a89c42715f11581db99b1e96e834b", "fields": {"nom_de_la_commune": "OSLY COURTIL", "libell_d_acheminement": "OSLY COURTIL", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02576"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f672815f4b3f311f081947198f794af904bd4723", "fields": {"nom_de_la_commune": "NOIRCOURT", "libell_d_acheminement": "NOIRCOURT", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02556"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccca0d18805d1ca3a487dfdec25391d1cc33455e", "fields": {"nom_de_la_commune": "OEUILLY", "libell_d_acheminement": "OEUILLY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02565"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a1b967608e669b11d6ada03f9d42c9b1072e92b", "fields": {"nom_de_la_commune": "PARGNAN", "libell_d_acheminement": "PARGNAN", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02588"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f9bb12dd15310f0983ff5d6e2a45d82fae733e", "fields": {"code_postal": "03190", "code_commune_insee": "03158", "libell_d_acheminement": "HAUT BOCAGE", "ligne_5": "LOUROUX HODEMENT", "nom_de_la_commune": "HAUT BOCAGE", "coordonnees_gps": [46.4826080397, 2.65647600079]}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf4423ff3eedebb00ee0055e25971833b3879fd", "fields": {"nom_de_la_commune": "MONETAY SUR ALLIER", "libell_d_acheminement": "MONETAY SUR ALLIER", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03176"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b782922fd2695740e030b6e58b0e070d46b73b2", "fields": {"nom_de_la_commune": "MONESTIER", "libell_d_acheminement": "MONESTIER", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03175"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d920abf2c73c8fe2021c32d0513860aa184e6a5", "fields": {"nom_de_la_commune": "MONTILLY", "libell_d_acheminement": "MONTILLY", "code_postal": "03000", "coordonnees_gps": [46.5704726367, 3.27970202933], "code_commune_insee": "03184"}, "geometry": {"type": "Point", "coordinates": [3.27970202933, 46.5704726367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b7d8f7bb1afc624c2b3658e3b1d659261ca1b1", "fields": {"nom_de_la_commune": "MARCENAT", "libell_d_acheminement": "MARCENAT", "code_postal": "03260", "coordonnees_gps": [46.2217159232, 3.4471669721], "code_commune_insee": "03160"}, "geometry": {"type": "Point", "coordinates": [3.4471669721, 46.2217159232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057b7c72e04ec815a9834d8ab9cdd4d4277dcb6c", "fields": {"nom_de_la_commune": "MOULINS", "libell_d_acheminement": "MOULINS", "code_postal": "03000", "coordonnees_gps": [46.5704726367, 3.27970202933], "code_commune_insee": "03190"}, "geometry": {"type": "Point", "coordinates": [3.27970202933, 46.5704726367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e3e2e86587a9c4331c80e2e4c084717e575e1be", "fields": {"nom_de_la_commune": "MOLINET", "libell_d_acheminement": "MOLINET", "code_postal": "03510", "coordonnees_gps": [46.4530576935, 3.94915396581], "code_commune_insee": "03173"}, "geometry": {"type": "Point", "coordinates": [3.94915396581, 46.4530576935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62d70e7256e0e90d3b10173c836fc67d1b38c9f4", "fields": {"nom_de_la_commune": "LA CROIX SUR ROUDOULE", "libell_d_acheminement": "LA CROIX SUR ROUDOULE", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06051"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2929feedced2362a5ef1bb1c7517fed3f463808", "fields": {"nom_de_la_commune": "VILLAR D ARENE", "libell_d_acheminement": "VILLAR D ARENE", "code_postal": "05480", "coordonnees_gps": [44.9999233119, 6.36389538082], "code_commune_insee": "05181"}, "geometry": {"type": "Point", "coordinates": [6.36389538082, 44.9999233119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f93e326d7014be456189ef0988b5ec6b360b304f", "fields": {"nom_de_la_commune": "VAL DES PRES", "libell_d_acheminement": "VAL DES PRES", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05174"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc7a791c30ac986f47889aa1e52b3a09009011a5", "fields": {"nom_de_la_commune": "LE CANNET", "libell_d_acheminement": "LE CANNET", "code_postal": "06110", "coordonnees_gps": [43.5728764669, 7.0065967476], "code_commune_insee": "06030"}, "geometry": {"type": "Point", "coordinates": [7.0065967476, 43.5728764669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fecd1cc67e558388af58751d7ecdc6a2a06663c", "fields": {"nom_de_la_commune": "SORBIERS", "libell_d_acheminement": "SORBIERS", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05169"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6055d51974db2fbddeb9126e1e95a49815ac83f0", "fields": {"nom_de_la_commune": "ST GILLES", "libell_d_acheminement": "ST GILLES", "code_postal": "35590", "coordonnees_gps": [48.1446063618, -1.84797555662], "code_commune_insee": "35275"}, "geometry": {"type": "Point", "coordinates": [-1.84797555662, 48.1446063618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bead205c2eb54050ff4dfd6e977968c33046f54", "fields": {"code_postal": "35400", "code_commune_insee": "35288", "libell_d_acheminement": "ST MALO", "ligne_5": "ROTHENEUF", "nom_de_la_commune": "ST MALO", "coordonnees_gps": [48.6399039698, -1.9807980796]}, "geometry": {"type": "Point", "coordinates": [-1.9807980796, 48.6399039698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8546649ff1acc8e0b923eb05b201e0d0501b4922", "fields": {"nom_de_la_commune": "ST MALO DE PHILY", "libell_d_acheminement": "ST MALO DE PHILY", "code_postal": "35480", "coordonnees_gps": [47.8244409976, -1.80170067957], "code_commune_insee": "35289"}, "geometry": {"type": "Point", "coordinates": [-1.80170067957, 47.8244409976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "097cc042ad6822cb3897e7223077f2595ccef5b7", "fields": {"nom_de_la_commune": "ST MEEN LE GRAND", "libell_d_acheminement": "ST MEEN LE GRAND", "code_postal": "35290", "coordonnees_gps": [48.1587625255, -2.18370093137], "code_commune_insee": "35297"}, "geometry": {"type": "Point", "coordinates": [-2.18370093137, 48.1587625255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9996f252280cc20ad8e478e380bf0385685e593", "fields": {"nom_de_la_commune": "ST MELOIR DES ONDES", "libell_d_acheminement": "ST MELOIR DES ONDES", "code_postal": "35350", "coordonnees_gps": [48.645566435, -1.90776582617], "code_commune_insee": "35299"}, "geometry": {"type": "Point", "coordinates": [-1.90776582617, 48.645566435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0324494a732030e1a59df557d53d734e0049e4", "fields": {"nom_de_la_commune": "ST ONEN LA CHAPELLE", "libell_d_acheminement": "ST ONEN LA CHAPELLE", "code_postal": "35290", "coordonnees_gps": [48.1587625255, -2.18370093137], "code_commune_insee": "35302"}, "geometry": {"type": "Point", "coordinates": [-2.18370093137, 48.1587625255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af2b126460b022b58348ccc8a6f7c047858af351", "fields": {"nom_de_la_commune": "ST OUEN LA ROUERIE", "libell_d_acheminement": "ST OUEN LA ROUERIE", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35303"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a1b91a261c21bf8be135bd145fd2467f1b61fc6", "fields": {"nom_de_la_commune": "SAULNIERES", "libell_d_acheminement": "SAULNIERES", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35321"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e89d4ff4249876bc462eaf216c747aed0b1874", "fields": {"nom_de_la_commune": "LA SELLE EN COGLES", "libell_d_acheminement": "LA SELLE EN COGLES", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35323"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "724298521f80857e56d73ec86b5bdee98e5e198b", "fields": {"nom_de_la_commune": "SERVON SUR VILAINE", "libell_d_acheminement": "SERVON SUR VILAINE", "code_postal": "35530", "coordonnees_gps": [48.1023169795, -1.48929089789], "code_commune_insee": "35327"}, "geometry": {"type": "Point", "coordinates": [-1.48929089789, 48.1023169795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b34e4e59bf20ff731363d304c197a5d198ceeaa", "fields": {"nom_de_la_commune": "TALENSAC", "libell_d_acheminement": "TALENSAC", "code_postal": "35160", "coordonnees_gps": [48.0975671546, -1.94600681697], "code_commune_insee": "35331"}, "geometry": {"type": "Point", "coordinates": [-1.94600681697, 48.0975671546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c606b7706d1e29a924e9fd86d3f1ac690a505a6", "fields": {"nom_de_la_commune": "TRANS LA FORET", "libell_d_acheminement": "TRANS LA FORET", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35339"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ce2c0099fae2e0e465c0c7789759934dc6a8e95", "fields": {"nom_de_la_commune": "TREMBLAY", "libell_d_acheminement": "TREMBLAY", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35341"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37837bddf84d5b9fc042135d1d64a5d0f1caf7cd", "fields": {"nom_de_la_commune": "VIGNOC", "libell_d_acheminement": "VIGNOC", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35356"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b37041d3a21919ffd7c25b364e6e9d095ab3186", "fields": {"nom_de_la_commune": "PONT PEAN", "libell_d_acheminement": "PONT PEAN", "code_postal": "35131", "coordonnees_gps": [48.0288284104, -1.70152027546], "code_commune_insee": "35363"}, "geometry": {"type": "Point", "coordinates": [-1.70152027546, 48.0288284104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac23aed5803e061175d73fb01d256f781aabbfe7", "fields": {"nom_de_la_commune": "AIGURANDE", "libell_d_acheminement": "AIGURANDE", "code_postal": "36140", "coordonnees_gps": [46.4665714493, 1.83368688617], "code_commune_insee": "36001"}, "geometry": {"type": "Point", "coordinates": [1.83368688617, 46.4665714493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0276c90ffc6750fec04d39463b89ddacc9d63370", "fields": {"nom_de_la_commune": "ARDENTES", "libell_d_acheminement": "ARDENTES", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36005"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "400992edec939449815bbd2a2f6ebb3245e919f0", "fields": {"nom_de_la_commune": "BARAIZE", "libell_d_acheminement": "BARAIZE", "code_postal": "36270", "coordonnees_gps": [46.4580307735, 1.55896815313], "code_commune_insee": "36012"}, "geometry": {"type": "Point", "coordinates": [1.55896815313, 46.4580307735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "137d0e1cb7cacbde707f4c21bda2a3835ef961e0", "fields": {"nom_de_la_commune": "BONNEUIL", "libell_d_acheminement": "BONNEUIL", "code_postal": "36310", "coordonnees_gps": [46.4191119953, 1.27433988132], "code_commune_insee": "36020"}, "geometry": {"type": "Point", "coordinates": [1.27433988132, 46.4191119953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a95b6ebba1301b0ec302428961cd6f79b6a66b3", "fields": {"nom_de_la_commune": "BRIANTES", "libell_d_acheminement": "BRIANTES", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36025"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3cfd9ea64835f85dbd0c384d2df2645bbd5d3ae", "fields": {"nom_de_la_commune": "CHAILLAC", "libell_d_acheminement": "CHAILLAC", "code_postal": "36310", "coordonnees_gps": [46.4191119953, 1.27433988132], "code_commune_insee": "36035"}, "geometry": {"type": "Point", "coordinates": [1.27433988132, 46.4191119953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c84a6e6ffc0a56c357e594523b6015381b813942", "fields": {"nom_de_la_commune": "LA CHAMPENOISE", "libell_d_acheminement": "LA CHAMPENOISE", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36037"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b91a747d1978027a427e8a096b730c5e040cc01", "fields": {"nom_de_la_commune": "LA CHAPELLE ST LAURIAN", "libell_d_acheminement": "LA CHAPELLE ST LAURIAN", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36041"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c5a08fbba565594abed8cafd00d191eb7808701", "fields": {"nom_de_la_commune": "CHASSIGNOLLES", "libell_d_acheminement": "CHASSIGNOLLES", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36043"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a58caf65d4b36f9883fd71c2d1f318dfed74181", "fields": {"nom_de_la_commune": "LA CHATRE LANGLIN", "libell_d_acheminement": "LA CHATRE LANGLIN", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36047"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07406d73afc3b652d13f2c17fb0c10993f24bb26", "fields": {"nom_de_la_commune": "CHEZELLES", "libell_d_acheminement": "CHEZELLES", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36050"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a076b833e9486bef77250bff388893f41188b94", "fields": {"nom_de_la_commune": "CHITRAY", "libell_d_acheminement": "CHITRAY", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36051"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5937d571664ddafa7c542ee2580bd22c110f70b2", "fields": {"nom_de_la_commune": "CIRON", "libell_d_acheminement": "CIRON", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36053"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b497fa5b625a7247078d1b379094011a6052179", "fields": {"nom_de_la_commune": "CLERE DU BOIS", "libell_d_acheminement": "CLERE DU BOIS", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36054"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840805db8e2ad2c5d56bdecbe1c3c6d80aa76a13", "fields": {"nom_de_la_commune": "FONTGOMBAULT", "libell_d_acheminement": "FONTGOMBAULT", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36076"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f93fa283fc12390640715f9fe235c1404ba5674", "fields": {"nom_de_la_commune": "FONTGUENAND", "libell_d_acheminement": "FONTGUENAND", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36077"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f552ca98f108809ce7f7a68313291259d025a91e", "fields": {"nom_de_la_commune": "GARGILESSE DAMPIERRE", "libell_d_acheminement": "GARGILESSE DAMPIERRE", "code_postal": "36190", "coordonnees_gps": [46.4729615786, 1.65897045592], "code_commune_insee": "36081"}, "geometry": {"type": "Point", "coordinates": [1.65897045592, 46.4729615786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31eff591a1a1211d62d7ad40793c27d23845bf27", "fields": {"nom_de_la_commune": "GIROUX", "libell_d_acheminement": "GIROUX", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36083"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476f212a3848055710fa225e840e4b2bbdda3ff8", "fields": {"nom_de_la_commune": "INGRANDES", "libell_d_acheminement": "INGRANDES", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36087"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff5428638bf8abd9d458a881419be14e6d1359d", "fields": {"nom_de_la_commune": "LIGNEROLLES", "libell_d_acheminement": "LIGNEROLLES", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36095"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35380fb27a06f0f474e531d07b528756796a01f8", "fields": {"nom_de_la_commune": "LOUROUER ST LAURENT", "libell_d_acheminement": "LOUROUER ST LAURENT", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36100"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25c7c686fdbe591adf7dc293a8ef2cea5e210aba", "fields": {"nom_de_la_commune": "LYS ST GEORGES", "libell_d_acheminement": "LYS ST GEORGES", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36108"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1db77de7222d2732019504c043a621e7b0893a2a", "fields": {"nom_de_la_commune": "MAILLET", "libell_d_acheminement": "MAILLET", "code_postal": "36340", "coordonnees_gps": [46.5585963926, 1.71639190639], "code_commune_insee": "36110"}, "geometry": {"type": "Point", "coordinates": [1.71639190639, 46.5585963926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebeefb77bec7e5222e19117c3ce08b2473d09af9", "fields": {"nom_de_la_commune": "MARON", "libell_d_acheminement": "MARON", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36112"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab1f10677987c5e6d69bed3687fd6373522da8e9", "fields": {"nom_de_la_commune": "MENETREOLS SOUS VATAN", "libell_d_acheminement": "MENETREOLS SOUS VATAN", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36116"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dafc602d33d23a42870e39eb5a8458fe4f3c00e", "fields": {"nom_de_la_commune": "MERIGNY", "libell_d_acheminement": "MERIGNY", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36119"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d67269ec8531c2103e9ebe83f44c8a1306e50e1", "fields": {"nom_de_la_commune": "MEUNET PLANCHES", "libell_d_acheminement": "MEUNET PLANCHES", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36121"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234cc22a7272ea5a62f515546224f03d502339c3", "fields": {"nom_de_la_commune": "MEUNET SUR VATAN", "libell_d_acheminement": "MEUNET SUR VATAN", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36122"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a218b624959570fd6a2da0944257458230454ef", "fields": {"nom_de_la_commune": "MIGNE", "libell_d_acheminement": "MIGNE", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36124"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30eaaec9744e90ab20d36a2436e682ad0e9012c4", "fields": {"nom_de_la_commune": "MONTCHEVRIER", "libell_d_acheminement": "MONTCHEVRIER", "code_postal": "36140", "coordonnees_gps": [46.4665714493, 1.83368688617], "code_commune_insee": "36126"}, "geometry": {"type": "Point", "coordinates": [1.83368688617, 46.4665714493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c84153246ac0ed73d4e2eba53a4f19cf2829f1c5", "fields": {"nom_de_la_commune": "MONTIERCHAUME", "libell_d_acheminement": "MONTIERCHAUME", "code_postal": "36130", "coordonnees_gps": [46.8562455965, 1.75263865537], "code_commune_insee": "36128"}, "geometry": {"type": "Point", "coordinates": [1.75263865537, 46.8562455965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4592eab87a459bfbd054959089c5906efd1f51f1", "fields": {"nom_de_la_commune": "MONTLEVICQ", "libell_d_acheminement": "MONTLEVICQ", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36130"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc49e0e5c27017196c70b514464ef95dc309e33", "fields": {"nom_de_la_commune": "MURS", "libell_d_acheminement": "MURS", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36136"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af0041aeed125cac91fe8a5ec4689fde72e82c39", "fields": {"nom_de_la_commune": "NERET", "libell_d_acheminement": "NERET", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36138"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79bb81aa2d393065cb234d446a7406328eac094e", "fields": {"nom_de_la_commune": "OBTERRE", "libell_d_acheminement": "OBTERRE", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36145"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96b9e93562b6b743379c37b422fd2495e3b6ebc", "fields": {"nom_de_la_commune": "PALLUAU SUR INDRE", "libell_d_acheminement": "PALLUAU SUR INDRE", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36149"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5568b029255b9583386f5b6c6c0288a878e00c7c", "fields": {"nom_de_la_commune": "LE PONT CHRETIEN CHABENET", "libell_d_acheminement": "LE PONT CHRETIEN CHABENET", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36161"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645805ce12108761c44b692913c2754f9d0b39f5", "fields": {"nom_de_la_commune": "POULIGNY ST MARTIN", "libell_d_acheminement": "POULIGNY ST MARTIN", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36164"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e59f436e94926d90808d791660b1713ca7a64fdd", "fields": {"nom_de_la_commune": "POULIGNY ST PIERRE", "libell_d_acheminement": "POULIGNY ST PIERRE", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36165"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f77f2a245979d31d6f0366305390189cd0f1507", "fields": {"nom_de_la_commune": "PREUILLY LA VILLE", "libell_d_acheminement": "PREUILLY LA VILLE", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36167"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5301b2bbe255ef6c8ed0efc36041a46edcd85b3", "fields": {"nom_de_la_commune": "REUILLY", "libell_d_acheminement": "REUILLY", "code_postal": "36260", "coordonnees_gps": [47.0476254931, 1.98508496225], "code_commune_insee": "36171"}, "geometry": {"type": "Point", "coordinates": [1.98508496225, 47.0476254931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc88124ab043edf20d3db1277f0b73ee3f061153", "fields": {"nom_de_la_commune": "ST AOUT", "libell_d_acheminement": "ST AOUT", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36180"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9cc1c0e61e60a7d9f80785bd4584c93028c7448", "fields": {"nom_de_la_commune": "ST DENIS DE JOUHET", "libell_d_acheminement": "ST DENIS DE JOUHET", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36189"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d95758c20c1eddb52103d65747dede0cd48337c", "fields": {"nom_de_la_commune": "ST GAULTIER", "libell_d_acheminement": "ST GAULTIER", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36192"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c8790d2d25d5f414d942f8820d9811ca3a5939f", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36193"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945a5ae32d567dc5d0dc041b684ccecf15876742", "fields": {"nom_de_la_commune": "ST LACTENCIN", "libell_d_acheminement": "ST LACTENCIN", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36198"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95af0e4fa0a5f97a2f25efc42e3be544b003fc63", "fields": {"nom_de_la_commune": "STE LIZAIGNE", "libell_d_acheminement": "STE LIZAIGNE", "code_postal": "36260", "coordonnees_gps": [47.0476254931, 1.98508496225], "code_commune_insee": "36199"}, "geometry": {"type": "Point", "coordinates": [1.98508496225, 47.0476254931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cd8dec9aa6ea31717ecbfad1ed158fa442216c", "fields": {"nom_de_la_commune": "STE SEVERE SUR INDRE", "libell_d_acheminement": "STE SEVERE SUR INDRE", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36208"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5722139412c7c751e224a1211597b3fecc2a3ba2", "fields": {"nom_de_la_commune": "SASSIERGES ST GERMAIN", "libell_d_acheminement": "SASSIERGES ST GERMAIN", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36211"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5004b40176052a1e6f7e95255897dcc10cf94589", "fields": {"nom_de_la_commune": "SEGRY", "libell_d_acheminement": "SEGRY", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36215"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479c35b50bc118aacdbb8c1269d47342c7597de0", "fields": {"nom_de_la_commune": "TILLY", "libell_d_acheminement": "TILLY", "code_postal": "36310", "coordonnees_gps": [46.4191119953, 1.27433988132], "code_commune_insee": "36223"}, "geometry": {"type": "Point", "coordinates": [1.27433988132, 46.4191119953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbce3bd0bbac2d3f4f8d746dd85584d119415384", "fields": {"nom_de_la_commune": "VALENCAY", "libell_d_acheminement": "VALENCAY", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36228"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0545d7fe373299ae084dcfef1f94bf5a5d695d", "fields": {"code_postal": "36210", "code_commune_insee": "36229", "libell_d_acheminement": "VAL FOUZON", "ligne_5": "STE CECILE", "nom_de_la_commune": "VAL FOUZON", "coordonnees_gps": [47.1964381478, 1.69756497046]}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285895343efd7065f052bcc489037a8d6a87b34a", "fields": {"nom_de_la_commune": "VIGOUX", "libell_d_acheminement": "VIGOUX", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36239"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d2bbf8d467fbf00cea04ffcb983c9b127ff5eb", "fields": {"nom_de_la_commune": "BEAUMONT LA RONCE", "libell_d_acheminement": "BEAUMONT LA RONCE", "code_postal": "37360", "coordonnees_gps": [47.5289315618, 0.576894142963], "code_commune_insee": "37021"}, "geometry": {"type": "Point", "coordinates": [0.576894142963, 47.5289315618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6604b4a55f2ee24641f977525b67a89b257195", "fields": {"nom_de_la_commune": "BENAIS", "libell_d_acheminement": "BENAIS", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37024"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee976b6813790755e34d5f18bf257c4ae6af6998", "fields": {"nom_de_la_commune": "BOURNAN", "libell_d_acheminement": "BOURNAN", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37032"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e245ce00bdddc2f1c4ac3204dbaf4980e50cd8", "fields": {"nom_de_la_commune": "BRASLOU", "libell_d_acheminement": "BRASLOU", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37034"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e8c5833a43189ede5be74f471ca28e6034701e4", "fields": {"nom_de_la_commune": "BRAYE SOUS FAYE", "libell_d_acheminement": "BRAYE SOUS FAYE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37035"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1c87d690a28e6eb0a45bb70cbf13e727e1d0d5", "fields": {"nom_de_la_commune": "LA CELLE GUENAND", "libell_d_acheminement": "LA CELLE GUENAND", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37044"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9482b3aa8c305aeb69b63a6aad98769a0e853972", "fields": {"nom_de_la_commune": "CHANCEAUX PRES LOCHES", "libell_d_acheminement": "CHANCEAUX PRES LOCHES", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37053"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5209024e47c9d93f2bdc0cd69f24aaaf84095c75", "fields": {"nom_de_la_commune": "CHARGE", "libell_d_acheminement": "CHARGE", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37060"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "468c9af5598a6e2ad3b8a2cbd72d3d07d02bc1f6", "fields": {"nom_de_la_commune": "CHARNIZAY", "libell_d_acheminement": "CHARNIZAY", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37061"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13d3d32bdc172da5c84aa97d61c7ad7844d8edb5", "fields": {"nom_de_la_commune": "CHAVEIGNES", "libell_d_acheminement": "CHAVEIGNES", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37065"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1e507e50f10a4ab916cd848f90c0b6bd89d749d", "fields": {"nom_de_la_commune": "CHEDIGNY", "libell_d_acheminement": "CHEDIGNY", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37066"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d57f1fb9cc7f00270984e9531bcc3ee3d2ae655", "fields": {"nom_de_la_commune": "CHISSEAUX", "libell_d_acheminement": "CHISSEAUX", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37073"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b644fa5f80e521f8a2e6f37becd5f36541ddc2ea", "fields": {"nom_de_la_commune": "ESTEIL", "libell_d_acheminement": "ESTEIL", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63156"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3f465aa8ecad0532ebdd24ac8683c890d176c04", "fields": {"nom_de_la_commune": "FAYET RONAYE", "libell_d_acheminement": "FAYET RONAYE", "code_postal": "63630", "coordonnees_gps": [45.4483235592, 3.57454227406], "code_commune_insee": "63158"}, "geometry": {"type": "Point", "coordinates": [3.57454227406, 45.4483235592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b296f5de7b6e759827074aea8de61ceb77cfd94b", "fields": {"nom_de_la_commune": "FERNOEL", "libell_d_acheminement": "FERNOEL", "code_postal": "63620", "coordonnees_gps": [45.8124173701, 2.47211906548], "code_commune_insee": "63159"}, "geometry": {"type": "Point", "coordinates": [2.47211906548, 45.8124173701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da2d842632de5803733d43eed0cdd75168a77497", "fields": {"nom_de_la_commune": "LA GODIVELLE", "libell_d_acheminement": "LA GODIVELLE", "code_postal": "63850", "coordonnees_gps": [45.4132189945, 2.81236528132], "code_commune_insee": "63169"}, "geometry": {"type": "Point", "coordinates": [2.81236528132, 45.4132189945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f8eb26c74bdba8b3fe402d7f19ebb1f86a85f0", "fields": {"nom_de_la_commune": "GOUTTIERES", "libell_d_acheminement": "GOUTTIERES", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63171"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25a82467819a3903abffb0afa3f18d066ba76d5f", "fields": {"nom_de_la_commune": "JOB", "libell_d_acheminement": "JOB", "code_postal": "63990", "coordonnees_gps": [45.6284596162, 3.76332173104], "code_commune_insee": "63179"}, "geometry": {"type": "Point", "coordinates": [3.76332173104, 45.6284596162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde4321ada437e758b5ebcfbc82990c4d3b827d1", "fields": {"nom_de_la_commune": "JOZE", "libell_d_acheminement": "JOZE", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63180"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c48850a29c2b1e2babe7ff64bf03ae8e74259a6", "fields": {"nom_de_la_commune": "LAQUEUILLE", "libell_d_acheminement": "LAQUEUILLE", "code_postal": "63820", "coordonnees_gps": [45.6766706035, 2.68432018586], "code_commune_insee": "63189"}, "geometry": {"type": "Point", "coordinates": [2.68432018586, 45.6766706035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5488495a8db4cac95770f4ec7d12a285c576415c", "fields": {"nom_de_la_commune": "LARODDE", "libell_d_acheminement": "LARODDE", "code_postal": "63690", "coordonnees_gps": [45.555010149, 2.58536882047], "code_commune_insee": "63190"}, "geometry": {"type": "Point", "coordinates": [2.58536882047, 45.555010149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a15d0149c6dff16c654bf0bab5686b575566ec5", "fields": {"nom_de_la_commune": "LASTIC", "libell_d_acheminement": "LASTIC", "code_postal": "63760", "coordonnees_gps": [45.6646500323, 2.57820074575], "code_commune_insee": "63191"}, "geometry": {"type": "Point", "coordinates": [2.57820074575, 45.6646500323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdf393a3cc29f0af231f3a409428e72fdfe11b8f", "fields": {"nom_de_la_commune": "MARCILLAT", "libell_d_acheminement": "MARCILLAT", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63208"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930e0177dba1ff7292fc8cb3c759295520d55a8c", "fields": {"nom_de_la_commune": "LES MARTRES DE VEYRE", "libell_d_acheminement": "LES MARTRES DE VEYRE", "code_postal": "63730", "coordonnees_gps": [45.6563565096, 3.18143690291], "code_commune_insee": "63214"}, "geometry": {"type": "Point", "coordinates": [3.18143690291, 45.6563565096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7914053d1100b4af2b83a80ef4ea274b2a6abe5d", "fields": {"code_postal": "63750", "code_commune_insee": "63225", "libell_d_acheminement": "MESSEIX", "ligne_5": "LES GANNES", "nom_de_la_commune": "MESSEIX", "coordonnees_gps": [45.6027201086, 2.52290102161]}, "geometry": {"type": "Point", "coordinates": [2.52290102161, 45.6027201086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "946e716aaccf8fd82d1244e9f22847b9280d01d8", "fields": {"nom_de_la_commune": "MOISSAT", "libell_d_acheminement": "MOISSAT", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63229"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e57f6c70eb3dbb72d29b3516c55591d7bf3e03f", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63232"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7596dab83768b2ad818cd1979a2f26b90a012293", "fields": {"nom_de_la_commune": "MONTCEL", "libell_d_acheminement": "MONTCEL", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63235"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5854388b8f35809b8a387f5aaf5153cfba5e70", "fields": {"nom_de_la_commune": "MONTMORIN", "libell_d_acheminement": "MONTMORIN", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63239"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d88c5f1fb97fcbbb56720a88448452787ab6b6d8", "fields": {"nom_de_la_commune": "MORIAT", "libell_d_acheminement": "MORIAT", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63242"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84f689949db7aef795f3d8b463b24943dc3cd8fe", "fields": {"code_postal": "63200", "code_commune_insee": "63244", "libell_d_acheminement": "CHAMBARON SUR MORGE", "ligne_5": "CELLULE", "nom_de_la_commune": "CHAMBARON SUR MORGE", "coordonnees_gps": [45.9059997705, 3.12295819611]}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc224194cf5c54cd7230dde5dbf997ab201bc67e", "fields": {"nom_de_la_commune": "RAMBAUD", "libell_d_acheminement": "RAMBAUD", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05113"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e22aacd1368e87d99ead21c58d10320baaf313", "fields": {"code_postal": "05500", "code_commune_insee": "05132", "libell_d_acheminement": "ST BONNET EN CHAMPSAUR", "ligne_5": "BENEVENT ET CHARBILLAC", "nom_de_la_commune": "ST BONNET EN CHAMPSAUR", "coordonnees_gps": [44.7016544828, 6.08603823073]}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84ee46b141a4cef99b7f488284dcc4f8248a0d66", "fields": {"nom_de_la_commune": "ST JULIEN EN BEAUCHENE", "libell_d_acheminement": "ST JULIEN EN BEAUCHENE", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05146"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ec7af2b587cd26950dd88540a1e1d89a3ec4b8", "fields": {"nom_de_la_commune": "ST MICHEL DE CHAILLOL", "libell_d_acheminement": "ST MICHEL DE CHAILLOL", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05153"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de7e25d276105924532dc60c2680833db83ed048", "fields": {"nom_de_la_commune": "LA SALLE LES ALPES", "libell_d_acheminement": "LA SALLE LES ALPES", "code_postal": "05240", "coordonnees_gps": [44.952690517, 6.56528017328], "code_commune_insee": "05161"}, "geometry": {"type": "Point", "coordinates": [6.56528017328, 44.952690517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f22080ed8023479d16dcc6f8068fdc12c281f5", "fields": {"nom_de_la_commune": "ST FIRMIN", "libell_d_acheminement": "ST FIRMIN EN VALGODEMARD", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05142"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2d1dbb7f2d9554d70c8d6c7cd62fab797a1dd9", "fields": {"nom_de_la_commune": "ST AUBAN D OZE", "libell_d_acheminement": "ST AUBAN D OZE", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05131"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f73b01337311c673da89d580ee4f4f6b20de40d", "fields": {"nom_de_la_commune": "SAVINES LE LAC", "libell_d_acheminement": "SAVINES LE LAC", "code_postal": "05160", "coordonnees_gps": [44.5645200462, 6.36522312148], "code_commune_insee": "05164"}, "geometry": {"type": "Point", "coordinates": [6.36522312148, 44.5645200462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa4fa92e6aa36c5f323901cef741209f45d22f1a", "fields": {"nom_de_la_commune": "LA ROCHETTE", "libell_d_acheminement": "LA ROCHETTE", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05124"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c23b7466e4e447d0b830c0736f85c37118af59", "fields": {"nom_de_la_commune": "SALEON", "libell_d_acheminement": "SALEON", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05159"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f96a376973249132c5b5a6de1abfe0260f9c2bf", "fields": {"nom_de_la_commune": "CHATEAUNEUF D ENTRAUNES", "libell_d_acheminement": "CHATEAUNEUF D ENTRAUNES", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06040"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6749177efbb8218355cd518e268bf4ad53e02a01", "fields": {"nom_de_la_commune": "LA COLLE SUR LOUP", "libell_d_acheminement": "LA COLLE SUR LOUP", "code_postal": "06480", "coordonnees_gps": [43.6869099706, 7.09780704455], "code_commune_insee": "06044"}, "geometry": {"type": "Point", "coordinates": [7.09780704455, 43.6869099706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc57e152d753851a848aafecb37837d9a816a8db", "fields": {"nom_de_la_commune": "ESCRAGNOLLES", "libell_d_acheminement": "ESCRAGNOLLES", "code_postal": "06460", "coordonnees_gps": [43.715574812, 6.8479951556], "code_commune_insee": "06058"}, "geometry": {"type": "Point", "coordinates": [6.8479951556, 43.715574812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff84afa6e1c64b742903597a9008fae644aab780", "fields": {"nom_de_la_commune": "CASTILLON", "libell_d_acheminement": "CASTILLON", "code_postal": "06500", "coordonnees_gps": [43.8073366872, 7.47793852475], "code_commune_insee": "06036"}, "geometry": {"type": "Point", "coordinates": [7.47793852475, 43.8073366872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01773fbfc4b7a3b1c3aef84bf21b598a5b2ca221", "fields": {"nom_de_la_commune": "CANTARON", "libell_d_acheminement": "CANTARON", "code_postal": "06340", "coordonnees_gps": [43.7532444079, 7.33155187771], "code_commune_insee": "06031"}, "geometry": {"type": "Point", "coordinates": [7.33155187771, 43.7532444079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a57a32e32e20cfe9c6ad4516287439fab101de42", "fields": {"nom_de_la_commune": "LA GAUDE", "libell_d_acheminement": "LA GAUDE", "code_postal": "06610", "coordonnees_gps": [43.7208395324, 7.15989555662], "code_commune_insee": "06065"}, "geometry": {"type": "Point", "coordinates": [7.15989555662, 43.7208395324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45bdcd51e40069c7bc75d60221cdb77e62707ed4", "fields": {"nom_de_la_commune": "GOURDON", "libell_d_acheminement": "GOURDON", "code_postal": "06620", "coordonnees_gps": [43.7673356275, 6.94848216496], "code_commune_insee": "06068"}, "geometry": {"type": "Point", "coordinates": [6.94848216496, 43.7673356275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "700366f3f7a2e4fae4516a5cc1e06179006b2cba", "fields": {"nom_de_la_commune": "GILETTE", "libell_d_acheminement": "GILETTE", "code_postal": "06830", "coordonnees_gps": [43.8756018878, 7.1426953573], "code_commune_insee": "06066"}, "geometry": {"type": "Point", "coordinates": [7.1426953573, 43.8756018878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a3cde55f4b123dc461114c2d3616c8dd715ca1", "fields": {"nom_de_la_commune": "DALUIS", "libell_d_acheminement": "DALUIS", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06053"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f68696c612d26af918b8d26e2cc980ed1817366", "fields": {"nom_de_la_commune": "ISOLA", "libell_d_acheminement": "ISOLA", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06073"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824f74e0530482585682796efa38f30f2e704ea3", "fields": {"code_postal": "06450", "code_commune_insee": "06151", "libell_d_acheminement": "UTELLE", "ligne_5": "ST JEAN LA RIVIERE", "nom_de_la_commune": "UTELLE", "coordonnees_gps": [44.0250774334, 7.30840268234]}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75379ecb6ffbf0442ea01edf638a7e9f286931e", "fields": {"code_postal": "06220", "code_commune_insee": "06155", "libell_d_acheminement": "VALLAURIS", "ligne_5": "LE GOLFE JUAN", "nom_de_la_commune": "VALLAURIS", "coordonnees_gps": [43.5766743671, 7.05796623737]}, "geometry": {"type": "Point", "coordinates": [7.05796623737, 43.5766743671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bfa055b0583b1de850a3046d7f94f11a823566d", "fields": {"nom_de_la_commune": "VILLENEUVE D ENTRAUNES", "libell_d_acheminement": "VILLENEUVE D ENTRAUNES", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06160"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "644447ab640a60824f3b5a308976b94dbcce52b5", "fields": {"nom_de_la_commune": "TOURETTE DU CHATEAU", "libell_d_acheminement": "TOURETTE DU CHATEAU", "code_postal": "06830", "coordonnees_gps": [43.8756018878, 7.1426953573], "code_commune_insee": "06145"}, "geometry": {"type": "Point", "coordinates": [7.1426953573, 43.8756018878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d82ffe213a9229aa17133a67d521f4383ac44e", "fields": {"nom_de_la_commune": "VALDEROURE", "libell_d_acheminement": "VALDEROURE", "code_postal": "06750", "coordonnees_gps": [43.7770802464, 6.7641665855], "code_commune_insee": "06154"}, "geometry": {"type": "Point", "coordinates": [6.7641665855, 43.7770802464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce57e0e18a9d486404f40b3358576ca649b39b0", "fields": {"nom_de_la_commune": "LA TRINITE", "libell_d_acheminement": "LA TRINITE", "code_postal": "06340", "coordonnees_gps": [43.7532444079, 7.33155187771], "code_commune_insee": "06149"}, "geometry": {"type": "Point", "coordinates": [7.33155187771, 43.7532444079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "813667b704f39340f478e40a694c6e9f5ed39834", "fields": {"nom_de_la_commune": "LA TURBIE", "libell_d_acheminement": "LA TURBIE", "code_postal": "06320", "coordonnees_gps": [43.7404520537, 7.39846914834], "code_commune_insee": "06150"}, "geometry": {"type": "Point", "coordinates": [7.39846914834, 43.7404520537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c74ff0df2af17cdec875da47948722f6adbcb11", "fields": {"nom_de_la_commune": "ANNONAY", "libell_d_acheminement": "ANNONAY", "code_postal": "07100", "coordonnees_gps": [45.2521053089, 4.64438732099], "code_commune_insee": "07010"}, "geometry": {"type": "Point", "coordinates": [4.64438732099, 45.2521053089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3769fac28fe2da17e15cc8b12dfe04d510f8859", "fields": {"nom_de_la_commune": "ANDANCE", "libell_d_acheminement": "ANDANCE", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07009"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f63f34ce3c7ff78797af24b26f87915a4f8a87", "fields": {"code_postal": "06440", "code_commune_insee": "06091", "libell_d_acheminement": "PEILLE", "ligne_5": "LA GRAVE DE PEILLE", "nom_de_la_commune": "PEILLE", "coordonnees_gps": [43.849932937, 7.37396481834]}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "560cf5868aa49473ded78d2fa17d96491d9aaed4", "fields": {"code_postal": "06200", "code_commune_insee": "06088", "libell_d_acheminement": "NICE", "ligne_5": "ST ROMAN DE BELLET", "nom_de_la_commune": "NICE", "coordonnees_gps": [43.7122279855, 7.23752896461]}, "geometry": {"type": "Point", "coordinates": [7.23752896461, 43.7122279855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2483a2deff85dfe3c3a24334644667edb65b849e", "fields": {"nom_de_la_commune": "LES MUJOULS", "libell_d_acheminement": "LES MUJOULS", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06087"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1446a8bd462ed9c05e3dfaa49a36c28baf9f5f1f", "fields": {"nom_de_la_commune": "LANTOSQUE", "libell_d_acheminement": "LANTOSQUE", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06074"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4760bee1e661d71e7889afad239534b9ff9aeee2", "fields": {"nom_de_la_commune": "MOULINET", "libell_d_acheminement": "MOULINET", "code_postal": "06380", "coordonnees_gps": [43.9117756236, 7.43417997432], "code_commune_insee": "06086"}, "geometry": {"type": "Point", "coordinates": [7.43417997432, 43.9117756236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01aa75d59a4ae9797094c7a60aa4a56d8bbce89d", "fields": {"nom_de_la_commune": "MASSOINS", "libell_d_acheminement": "MASSOINS", "code_postal": "06710", "coordonnees_gps": [43.9477218616, 7.07933141259], "code_commune_insee": "06082"}, "geometry": {"type": "Point", "coordinates": [7.07933141259, 43.9477218616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0df01a95b9849653a9a653a70b0af513294b25c3", "fields": {"nom_de_la_commune": "PIERLAS", "libell_d_acheminement": "PIERLAS", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06096"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50af62fa215be196f646424a7081569062b3767c", "fields": {"nom_de_la_commune": "LUCERAM", "libell_d_acheminement": "LUCERAM", "code_postal": "06440", "coordonnees_gps": [43.849932937, 7.37396481834], "code_commune_insee": "06077"}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee33606c553d2911f7314ea075af4b0061c75d09", "fields": {"nom_de_la_commune": "RIMPLAS", "libell_d_acheminement": "RIMPLAS", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06102"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "113762a0dbfd44b5c3b692687492c4c832e2e705", "fields": {"nom_de_la_commune": "LEVENS", "libell_d_acheminement": "LEVENS", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06075"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "669a82380d629ab982963ef918eceb6da53dd3a8", "fields": {"nom_de_la_commune": "ST CEZAIRE SUR SIAGNE", "libell_d_acheminement": "ST CEZAIRE SUR SIAGNE", "code_postal": "06530", "coordonnees_gps": [43.6477554708, 6.83535219439], "code_commune_insee": "06118"}, "geometry": {"type": "Point", "coordinates": [6.83535219439, 43.6477554708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7e30d66307445079114deca59daa4d0b193113", "fields": {"nom_de_la_commune": "ST ANDRE DE LA ROCHE", "libell_d_acheminement": "ST ANDRE DE LA ROCHE", "code_postal": "06730", "coordonnees_gps": [43.7449089511, 7.28833349639], "code_commune_insee": "06114"}, "geometry": {"type": "Point", "coordinates": [7.28833349639, 43.7449089511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f29124f0a76f374b0b54b0c2070f91f09e757508", "fields": {"nom_de_la_commune": "ROQUEBRUNE CAP MARTIN", "libell_d_acheminement": "ROQUEBRUNE CAP MARTIN", "code_postal": "06190", "coordonnees_gps": [43.7639198433, 7.4582621298], "code_commune_insee": "06104"}, "geometry": {"type": "Point", "coordinates": [7.4582621298, 43.7639198433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9181fb29badcf8246a55a1a729415247edf4bb3f", "fields": {"nom_de_la_commune": "ROQUEFORT LES PINS", "libell_d_acheminement": "ROQUEFORT LES PINS", "code_postal": "06330", "coordonnees_gps": [43.6742257255, 7.0527495793], "code_commune_insee": "06105"}, "geometry": {"type": "Point", "coordinates": [7.0527495793, 43.6742257255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bacf003866a29d34b62d499f5d659a627219fb6a", "fields": {"nom_de_la_commune": "ST MARTIN DU VAR", "libell_d_acheminement": "ST MARTIN DU VAR", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06126"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05002230f1866ffd227e8817dd7af86f83dea0ea", "fields": {"nom_de_la_commune": "ROQUEBILLIERE", "libell_d_acheminement": "ROQUEBILLIERE", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06103"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29240740263163950fe3da806f4fc55b0cb4e03", "fields": {"nom_de_la_commune": "ST BLAISE", "libell_d_acheminement": "ST BLAISE", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06117"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad054baa06daa75cbf062ebaacffa3d7bddee343", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06124"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbe149ff62891796465bca394cc8fe5031c36ab7", "fields": {"nom_de_la_commune": "THIERY", "libell_d_acheminement": "THIERY", "code_postal": "06710", "coordonnees_gps": [43.9477218616, 7.07933141259], "code_commune_insee": "06139"}, "geometry": {"type": "Point", "coordinates": [7.07933141259, 43.9477218616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf38b95cb3a0e63d1f2c9984f615a34f7c3c861", "fields": {"nom_de_la_commune": "TOUDON", "libell_d_acheminement": "TOUDON", "code_postal": "06830", "coordonnees_gps": [43.8756018878, 7.1426953573], "code_commune_insee": "06141"}, "geometry": {"type": "Point", "coordinates": [7.1426953573, 43.8756018878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee585c65883aef06f4d1ff901f1d3b259756834", "fields": {"code_postal": "06160", "code_commune_insee": "06004", "libell_d_acheminement": "ANTIBES", "ligne_5": "JUAN LES PINS", "nom_de_la_commune": "ANTIBES", "coordonnees_gps": [43.5876536208, 7.10542360834]}, "geometry": {"type": "Point", "coordinates": [7.10542360834, 43.5876536208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b878a428664d93f11b1f3f2e50dffd7ad78375", "fields": {"code_postal": "06150", "code_commune_insee": "06029", "libell_d_acheminement": "CANNES", "ligne_5": "CANNES LA BOCCA", "nom_de_la_commune": "CANNES", "coordonnees_gps": [43.5526938306, 7.00247889833]}, "geometry": {"type": "Point", "coordinates": [7.00247889833, 43.5526938306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fefe90bf99700aa1abe0d5bba6eb3918644f2d0", "fields": {"code_postal": "06600", "code_commune_insee": "06004", "libell_d_acheminement": "ANTIBES", "ligne_5": "LA FONTONNE", "nom_de_la_commune": "ANTIBES", "coordonnees_gps": [43.5876536208, 7.10542360834]}, "geometry": {"type": "Point", "coordinates": [7.10542360834, 43.5876536208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4b19493bfaeade92a8d858414ee3cc53f7bc5b", "fields": {"nom_de_la_commune": "AURIBEAU SUR SIAGNE", "libell_d_acheminement": "AURIBEAU SUR SIAGNE", "code_postal": "06810", "coordonnees_gps": [43.6122750654, 6.91169266203], "code_commune_insee": "06007"}, "geometry": {"type": "Point", "coordinates": [6.91169266203, 43.6122750654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6009db347ee1e00cab122ac154a86a55eb234b7a", "fields": {"nom_de_la_commune": "BEAUSOLEIL", "libell_d_acheminement": "BEAUSOLEIL", "code_postal": "06240", "coordonnees_gps": [43.7477717519, 7.42178948927], "code_commune_insee": "06012"}, "geometry": {"type": "Point", "coordinates": [7.42178948927, 43.7477717519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1264b55f5c1d05ed23fb0dce8cd5b047280ce2e", "fields": {"nom_de_la_commune": "ANTIBES", "libell_d_acheminement": "ANTIBES", "code_postal": "06600", "coordonnees_gps": [43.5876536208, 7.10542360834], "code_commune_insee": "06004"}, "geometry": {"type": "Point", "coordinates": [7.10542360834, 43.5876536208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c5469b72371ff75cc9055be6fdbea1465ad953", "fields": {"nom_de_la_commune": "LE BROC", "libell_d_acheminement": "LE BROC", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06025"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c766deea32e6eba77216b61e25e18b3a7e575337", "fields": {"nom_de_la_commune": "CABRIS", "libell_d_acheminement": "CABRIS", "code_postal": "06530", "coordonnees_gps": [43.6477554708, 6.83535219439], "code_commune_insee": "06026"}, "geometry": {"type": "Point", "coordinates": [6.83535219439, 43.6477554708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d28ba90c5b8c67d413b140646ccf17e8bdc457", "fields": {"nom_de_la_commune": "ASCROS", "libell_d_acheminement": "ASCROS", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06005"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8dad2d9a2ff310e9e0eae50fe92f8f9e6205f35", "fields": {"nom_de_la_commune": "VARS", "libell_d_acheminement": "VARS", "code_postal": "05560", "coordonnees_gps": [44.5925398109, 6.71367212511], "code_commune_insee": "05177"}, "geometry": {"type": "Point", "coordinates": [6.71367212511, 44.5925398109]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18376f958b7f211d6a9d9fdf8039bc0ce8f07442", "fields": {"nom_de_la_commune": "LE BEAGE", "libell_d_acheminement": "LE BEAGE", "code_postal": "07630", "coordonnees_gps": [44.823196527, 4.12827779008], "code_commune_insee": "07026"}, "geometry": {"type": "Point", "coordinates": [4.12827779008, 44.823196527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb642335d32ac53b54189990c49a147ab89e6697", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07029"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86717bce48bae9b1d38d2cdbb3679fec13e13dd", "fields": {"nom_de_la_commune": "AUBENAS", "libell_d_acheminement": "AUBENAS", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07019"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86cef4a12b5e551ccc1ea6402ee01548ad780f51", "fields": {"nom_de_la_commune": "BIDON", "libell_d_acheminement": "BIDON", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07034"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7227037767dedd33ee9e5dc548f9e1c44f636bd3", "fields": {"code_postal": "10190", "code_commune_insee": "10003", "libell_d_acheminement": "AIX VILLEMAUR PALIS", "ligne_5": "PALIS", "nom_de_la_commune": "AIX VILLEMAUR PALIS", "coordonnees_gps": [48.249510935, 3.83670117751]}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f55832cf72f2efa51e481a9938e85d5b8327574", "fields": {"nom_de_la_commune": "VILLENEUVE DU LATOU", "libell_d_acheminement": "VILLENEUVE DU LATOU", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09338"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ea3848fcff98257a68f66a879cb699f905d5b0", "fields": {"nom_de_la_commune": "ALLIBAUDIERES", "libell_d_acheminement": "ALLIBAUDIERES", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10004"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5982691024be213d050148cb8ad67f9b908929c6", "fields": {"nom_de_la_commune": "ARREMBECOURT", "libell_d_acheminement": "ARREMBECOURT", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10010"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c5e664fb33590fa1411d91ffa4e228798c2ca58", "fields": {"nom_de_la_commune": "AVIREY LINGEY", "libell_d_acheminement": "AVIREY LINGEY", "code_postal": "10340", "coordonnees_gps": [47.9929585912, 4.30782302551], "code_commune_insee": "10022"}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2e19b76e90ed5744fb51e4a0d81c70da6e1f2c", "fields": {"nom_de_la_commune": "ARRENTIERES", "libell_d_acheminement": "ARRENTIERES", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10011"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a5ebaba9c685d9f743c38a440744e4096da6198", "fields": {"nom_de_la_commune": "ARCONVILLE", "libell_d_acheminement": "ARCONVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10007"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faeb44c6b569851f0ec2c8b308cecae6a38355fe", "fields": {"nom_de_la_commune": "ARSONVAL", "libell_d_acheminement": "ARSONVAL", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10012"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3ec7c4a0cafe429eb4312d620f3deeb1e42edef", "fields": {"nom_de_la_commune": "ASSENAY", "libell_d_acheminement": "ASSENAY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10013"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98efe74f13695e384de49075ae89f2a4f4798bf7", "fields": {"nom_de_la_commune": "VIRA", "libell_d_acheminement": "VIRA", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09340"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fe824406a5e66a75038a09dbf3d811d0cf8d93", "fields": {"nom_de_la_commune": "FRESNOY LE CHATEAU", "libell_d_acheminement": "FRESNOY LE CHATEAU", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10162"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3685d560b50e70eabac487d37d7a54410341867d", "fields": {"nom_de_la_commune": "FONTAINE LES GRES", "libell_d_acheminement": "FONTAINE LES GRES", "code_postal": "10280", "coordonnees_gps": [48.434575792, 3.91881606144], "code_commune_insee": "10151"}, "geometry": {"type": "Point", "coordinates": [3.91881606144, 48.434575792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aeea619ce4d99ba4326947f39d4f7c4f7e85f30", "fields": {"nom_de_la_commune": "LA FOSSE CORDUAN", "libell_d_acheminement": "LA FOSSE CORDUAN", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10157"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a9078078094767bd6a636d03a37557051519d4e", "fields": {"nom_de_la_commune": "ERVY LE CHATEL", "libell_d_acheminement": "ERVY LE CHATEL", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10140"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d66cf10ee9f3a9e1bbfef04472ff08d33545018", "fields": {"nom_de_la_commune": "ISLE AUBIGNY", "libell_d_acheminement": "ISLE AUBIGNY", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10174"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad5ac54e79d6b2e1a437d0b584d5f8a2fa46042", "fields": {"nom_de_la_commune": "JASSEINES", "libell_d_acheminement": "JASSEINES", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10175"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd46f05f161bf9e18d30222326561b6ca8161169", "fields": {"nom_de_la_commune": "FRAVAUX", "libell_d_acheminement": "FRAVAUX", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10160"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8974e514d60689d991a0b6c239020c52877e58f", "fields": {"nom_de_la_commune": "ENGENTE", "libell_d_acheminement": "ENGENTE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10137"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3538bd7cff0c965f5ca32f6f6f6466de0887215", "fields": {"nom_de_la_commune": "ETOURVY", "libell_d_acheminement": "ETOURVY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10143"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f15c5c5ef95aac842e847cba755319dfd5acaaf9", "fields": {"nom_de_la_commune": "ESSOYES", "libell_d_acheminement": "ESSOYES", "code_postal": "10360", "coordonnees_gps": [48.0604806131, 4.60332287539], "code_commune_insee": "10141"}, "geometry": {"type": "Point", "coordinates": [4.60332287539, 48.0604806131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0948bb9bda11c0a03174079dab25118bfc58ad63", "fields": {"nom_de_la_commune": "DIERREY ST JULIEN", "libell_d_acheminement": "DIERREY ST JULIEN", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10124"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c27b62b7300552156e6e3a190460186f8da89d48", "fields": {"nom_de_la_commune": "COLOMBE LA FOSSE", "libell_d_acheminement": "COLOMBE LA FOSSE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10102"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9288d97172ed599ef0008c0484ceecca0885c56", "fields": {"nom_de_la_commune": "CHARNY LE BACHOT", "libell_d_acheminement": "CHARNY LE BACHOT", "code_postal": "10380", "coordonnees_gps": [48.576907135, 3.98044859766], "code_commune_insee": "10086"}, "geometry": {"type": "Point", "coordinates": [3.98044859766, 48.576907135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa3120594730cda974ac24b82e816403f633067e", "fields": {"nom_de_la_commune": "COURSAN EN OTHE", "libell_d_acheminement": "COURSAN EN OTHE", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10107"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d8f81b6379eee1285cd3a718ad29b284ee7fe61", "fields": {"nom_de_la_commune": "CHESSY LES PRES", "libell_d_acheminement": "CHESSY LES PRES", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10099"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f812e8af92b88331b02b217aa631017f6ed33d8f", "fields": {"nom_de_la_commune": "CHAUMESNIL", "libell_d_acheminement": "CHAUMESNIL", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10093"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fae9f57c5e017e6b768a855deb72d98214119da", "fields": {"nom_de_la_commune": "ECHEMINES", "libell_d_acheminement": "ECHEMINES", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10134"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40c489fa3188c399b70ab8b5704dfb33878334a", "fields": {"nom_de_la_commune": "CHESLEY", "libell_d_acheminement": "CHESLEY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10098"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04219dbc7439b414c67c07ba102c4298e1f63a81", "fields": {"nom_de_la_commune": "CHATRES", "libell_d_acheminement": "CHATRES", "code_postal": "10510", "coordonnees_gps": [48.4879809815, 3.8003478172], "code_commune_insee": "10089"}, "geometry": {"type": "Point", "coordinates": [3.8003478172, 48.4879809815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb82dc4b120874e5a7751365dcc5f2783f110bb", "fields": {"nom_de_la_commune": "DAVREY", "libell_d_acheminement": "DAVREY", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10122"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f886b3ba077ef1286aa39e38229216378b65a62", "fields": {"nom_de_la_commune": "ST PIERRE DE RIVIERE", "libell_d_acheminement": "ST PIERRE DE RIVIERE", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09273"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be633ec08852fc507efafc891a0bd8acfd619e9", "fields": {"nom_de_la_commune": "STE CROIX VOLVESTRE", "libell_d_acheminement": "STE CROIX VOLVESTRE", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09257"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "507f41752624d059ce43a46e3d5ca644bd848a17", "fields": {"nom_de_la_commune": "ST PAUL DE JARRAT", "libell_d_acheminement": "ST PAUL DE JARRAT", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09272"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e551c7073fea965de4c8d3b2cb8cefbed75d9c", "fields": {"nom_de_la_commune": "ST JEAN DU FALGA", "libell_d_acheminement": "ST JEAN DU FALGA", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09265"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61dd04fbed5bd6f4fd855ed1b22f6b63a2d9deff", "fields": {"nom_de_la_commune": "TOURTOUSE", "libell_d_acheminement": "TOURTOUSE", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09313"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea9f3b09971fbb61e6c7806cbdc171640893ced", "fields": {"nom_de_la_commune": "ST YBARS", "libell_d_acheminement": "ST YBARS", "code_postal": "09210", "coordonnees_gps": [43.2658077144, 1.36518366912], "code_commune_insee": "09277"}, "geometry": {"type": "Point", "coordinates": [1.36518366912, 43.2658077144]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76387b15f88d9dd008be05ff7d3fb9ed99aa4ea9", "fields": {"nom_de_la_commune": "SALSEIN", "libell_d_acheminement": "SALSEIN", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09279"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2bfb8f29d0b6bcf67c35527e9b99299bb218c55", "fields": {"nom_de_la_commune": "MEILHAUD", "libell_d_acheminement": "MEILHAUD", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63222"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b71d48e2281fa2e6dbaef5be85bccb0f8660bf9", "fields": {"nom_de_la_commune": "LA MONNERIE LE MONTEL", "libell_d_acheminement": "LA MONNERIE LE MONTEL", "code_postal": "63650", "coordonnees_gps": [45.8734908336, 3.61193474206], "code_commune_insee": "63231"}, "geometry": {"type": "Point", "coordinates": [3.61193474206, 45.8734908336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8901e095f22edd4feb49953169eed984392efa3f", "fields": {"nom_de_la_commune": "MONTAIGUT", "libell_d_acheminement": "MONTAIGUT EN COMBRAILLE", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63233"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "741a843c3a3eb6d6ee5285bf6f04f773ca84c888", "fields": {"nom_de_la_commune": "MONTAIGUT LE BLANC", "libell_d_acheminement": "MONTAIGUT LE BLANC", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63234"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e2c6197c3ccf7d5d830d3d6b2f82d6f9912b13", "fields": {"nom_de_la_commune": "MONTPEYROUX", "libell_d_acheminement": "MONTPEYROUX", "code_postal": "63114", "coordonnees_gps": [45.6254856472, 3.19813088283], "code_commune_insee": "63241"}, "geometry": {"type": "Point", "coordinates": [3.19813088283, 45.6254856472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e459a06e80a604a27d8c21df711a61af6735e73", "fields": {"nom_de_la_commune": "NEUF EGLISE", "libell_d_acheminement": "NEUF EGLISE", "code_postal": "63560", "coordonnees_gps": [46.1157064497, 2.88410173513], "code_commune_insee": "63251"}, "geometry": {"type": "Point", "coordinates": [2.88410173513, 46.1157064497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a97b261ed08b930a2e6dff07ef9f1d7b4b68c0e0", "fields": {"nom_de_la_commune": "NONETTE ORSONNETTE", "libell_d_acheminement": "NONETTE ORSONNETTE", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63255"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "446f18255c41605977530f292f6a9e53928ee12a", "fields": {"nom_de_la_commune": "OLLOIX", "libell_d_acheminement": "OLLOIX", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63259"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a540d752c440b2e79aaf387d6e162ac08ce2c9", "fields": {"nom_de_la_commune": "PARDINES", "libell_d_acheminement": "PARDINES", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63268"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "112df29634dfe2fad67ab26aeee0184b95ebd6f7", "fields": {"nom_de_la_commune": "PARENT", "libell_d_acheminement": "PARENT", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63269"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d08e55d7b5df1a7885af239a013aed7d70b5c6", "fields": {"nom_de_la_commune": "PASLIERES", "libell_d_acheminement": "PASLIERES", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63271"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c00ea284f816da0dc794a1e0a3be73da6ad6f7", "fields": {"nom_de_la_commune": "PERIGNAT SUR ALLIER", "libell_d_acheminement": "PERIGNAT SUR ALLIER", "code_postal": "63800", "coordonnees_gps": [45.7314255981, 3.21711000607], "code_commune_insee": "63273"}, "geometry": {"type": "Point", "coordinates": [3.21711000607, 45.7314255981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e59c5cbe6920ce526445194909ae24aa060f054", "fields": {"nom_de_la_commune": "PICHERANDE", "libell_d_acheminement": "PICHERANDE", "code_postal": "63113", "coordonnees_gps": [45.469556778, 2.79218545423], "code_commune_insee": "63279"}, "geometry": {"type": "Point", "coordinates": [2.79218545423, 45.469556778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e2d51eaaf54ebd2448e8747e9597ee72052624a", "fields": {"nom_de_la_commune": "POUZOL", "libell_d_acheminement": "POUZOL", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63286"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bae7cad020b9e0a7f1e3402f4cfcb23904e0f41", "fields": {"code_postal": "63540", "code_commune_insee": "63307", "libell_d_acheminement": "ROMAGNAT", "ligne_5": "OPME", "nom_de_la_commune": "ROMAGNAT", "coordonnees_gps": [45.7208123303, 3.08837340823]}, "geometry": {"type": "Point", "coordinates": [3.08837340823, 45.7208123303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd3d6418dc1a669ca5ae1b2904ff0773d49b3154", "fields": {"code_postal": "63540", "code_commune_insee": "63307", "libell_d_acheminement": "ROMAGNAT", "ligne_5": "SAULZET LE CHAUD", "nom_de_la_commune": "ROMAGNAT", "coordonnees_gps": [45.7208123303, 3.08837340823]}, "geometry": {"type": "Point", "coordinates": [3.08837340823, 45.7208123303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9e33c9ac53aaec194ca0eafb45901de66486e0", "fields": {"nom_de_la_commune": "ROYAT", "libell_d_acheminement": "ROYAT", "code_postal": "63130", "coordonnees_gps": [45.7575002689, 3.04042317717], "code_commune_insee": "63308"}, "geometry": {"type": "Point", "coordinates": [3.04042317717, 45.7575002689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77b8d4e32d37afad137568449d0fe1ae68bc81a", "fields": {"nom_de_la_commune": "ST ALYRE D ARLANC", "libell_d_acheminement": "ST ALYRE D ARLANC", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63312"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aec3eb970eea7ecaea549ca5c23627f85f7f25fd", "fields": {"nom_de_la_commune": "ST BONNET LE CHASTEL", "libell_d_acheminement": "ST BONNET LE CHASTEL", "code_postal": "63630", "coordonnees_gps": [45.4483235592, 3.57454227406], "code_commune_insee": "63324"}, "geometry": {"type": "Point", "coordinates": [3.57454227406, 45.4483235592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "061a6da77415ae355977d032960c2230d1b679c7", "fields": {"nom_de_la_commune": "ST BONNET LES ALLIER", "libell_d_acheminement": "ST BONNET LES ALLIER", "code_postal": "63800", "coordonnees_gps": [45.7314255981, 3.21711000607], "code_commune_insee": "63325"}, "geometry": {"type": "Point", "coordinates": [3.21711000607, 45.7314255981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f14089a0e16cbc3a27b2f9b2578f2237b8e59269", "fields": {"nom_de_la_commune": "ST DENIS COMBARNAZAT", "libell_d_acheminement": "ST DENIS COMBARNAZAT", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63333"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4200b3299016f4cdd82bf8343df1b3c4387f032", "fields": {"nom_de_la_commune": "ST FLORET", "libell_d_acheminement": "ST FLORET", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63342"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307363f9ddeb5d36246b88bcf8a22e84c19efe2f", "fields": {"nom_de_la_commune": "ST GERMAIN LEMBRON", "libell_d_acheminement": "ST GERMAIN LEMBRON", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63352"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c45eb81ecb4e571722a80a3effec2d4477340ab1", "fields": {"nom_de_la_commune": "ST GERVAIS D AUVERGNE", "libell_d_acheminement": "ST GERVAIS D AUVERGNE", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63354"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f333e8c0bee50a8ff4e1a943a6ad82bd978ee4c", "fields": {"nom_de_la_commune": "ST IGNAT", "libell_d_acheminement": "ST IGNAT", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63362"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cbdfb85abccf4c1dd58c684adc896e9925af5e4", "fields": {"nom_de_la_commune": "ST JULIEN DE COPPEL", "libell_d_acheminement": "ST JULIEN DE COPPEL", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63368"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "735ecd6c46a3c6d3aa38332986999425cd6233b7", "fields": {"nom_de_la_commune": "ST MAIGNER", "libell_d_acheminement": "ST MAIGNER", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63373"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "109a38a672cf937ffe98350142ee68a88dede82c", "fields": {"nom_de_la_commune": "ST OURS", "libell_d_acheminement": "ST OURS", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63381"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "577cd249db29c5051357be1db1edd41f2cccff68", "fields": {"nom_de_la_commune": "ST PARDOUX", "libell_d_acheminement": "ST PARDOUX", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63382"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609990ee56429d18b077ac13254263e97168419c", "fields": {"nom_de_la_commune": "ST PIERRE LE CHASTEL", "libell_d_acheminement": "ST PIERRE LE CHASTEL", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63385"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b2f5d1f04ef464c82e2ec9df5dd18b9a07869cd", "fields": {"nom_de_la_commune": "ST PIERRE ROCHE", "libell_d_acheminement": "ST PIERRE ROCHE", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63386"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dafb7e4fd55e5f22c435c2bc86b799dfd6927cd", "fields": {"nom_de_la_commune": "ST VICTOR MONTVIANEIX", "libell_d_acheminement": "ST VICTOR MONTVIANEIX", "code_postal": "63550", "coordonnees_gps": [45.9228930521, 3.6102507473], "code_commune_insee": "63402"}, "geometry": {"type": "Point", "coordinates": [3.6102507473, 45.9228930521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4edac7b0e95ecaf7617b4535162ebd5b3ec3abbb", "fields": {"nom_de_la_commune": "ST YVOINE", "libell_d_acheminement": "ST YVOINE", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63404"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13a0955ecf2265be2be7e3743e9c4c671e05b02f", "fields": {"nom_de_la_commune": "SAUVAGNAT STE MARTHE", "libell_d_acheminement": "SAUVAGNAT STE MARTHE", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63411"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0c0d6f8954c3279d830c29d8c5716909c3ca6e", "fields": {"nom_de_la_commune": "TAUVES", "libell_d_acheminement": "TAUVES", "code_postal": "63690", "coordonnees_gps": [45.555010149, 2.58536882047], "code_commune_insee": "63426"}, "geometry": {"type": "Point", "coordinates": [2.58536882047, 45.555010149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a285a5cc23c90ffcd1a89231aeb0b0c499a39cf4", "fields": {"nom_de_la_commune": "TERNANT LES EAUX", "libell_d_acheminement": "TERNANT LES EAUX", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63429"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8403485f6aa7ddf5361382a539c060cb9f3602bc", "fields": {"nom_de_la_commune": "THIERS", "libell_d_acheminement": "THIERS", "code_postal": "63300", "coordonnees_gps": [45.8543527446, 3.53248495668], "code_commune_insee": "63430"}, "geometry": {"type": "Point", "coordinates": [3.53248495668, 45.8543527446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "016fff25f5e1e03414c0fc150175ee55f9aeefcd", "fields": {"nom_de_la_commune": "TREMOUILLE ST LOUP", "libell_d_acheminement": "TREMOUILLE ST LOUP", "code_postal": "63810", "coordonnees_gps": [45.4876676748, 2.61850330437], "code_commune_insee": "63437"}, "geometry": {"type": "Point", "coordinates": [2.61850330437, 45.4876676748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2764bcda810e1c203f1b53a8d2c1faecb06792d6", "fields": {"nom_de_la_commune": "VALBELEIX", "libell_d_acheminement": "VALBELEIX", "code_postal": "63610", "coordonnees_gps": [45.477068899, 2.93237565554], "code_commune_insee": "63440"}, "geometry": {"type": "Point", "coordinates": [2.93237565554, 45.477068899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39a4747cd38e9e7b77075970047ba0f615196725", "fields": {"nom_de_la_commune": "VALZ SOUS CHATEAUNEUF", "libell_d_acheminement": "VALZ SOUS CHATEAUNEUF", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63442"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb130adc23b11f6f27ca4dfbcd81850243355a5", "fields": {"nom_de_la_commune": "VASSEL", "libell_d_acheminement": "VASSEL", "code_postal": "63910", "coordonnees_gps": [45.7740957976, 3.29534868018], "code_commune_insee": "63445"}, "geometry": {"type": "Point", "coordinates": [3.29534868018, 45.7740957976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4075d82c5419d14a6dd44b440f11ad6e9ecafc2", "fields": {"nom_de_la_commune": "VERNEUGHEOL", "libell_d_acheminement": "VERNEUGHEOL", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63450"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f399c0c6a097800f5c00e26d8edeefcfa366e89", "fields": {"nom_de_la_commune": "VERNINES", "libell_d_acheminement": "VERNINES", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63451"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "063b179e36047b967696ccccc9512806545fd6f9", "fields": {"nom_de_la_commune": "VERTOLAYE", "libell_d_acheminement": "VERTOLAYE", "code_postal": "63480", "coordonnees_gps": [45.6534695475, 3.7067918054], "code_commune_insee": "63454"}, "geometry": {"type": "Point", "coordinates": [3.7067918054, 45.6534695475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc732d31702772e01bd28c0f02b03cb439e52049", "fields": {"nom_de_la_commune": "VILLENEUVE LES CERFS", "libell_d_acheminement": "VILLENEUVE LES CERFS", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63459"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ece98229c4a3b993334ab3f34a8bb13182a1a94", "fields": {"nom_de_la_commune": "VISCOMTAT", "libell_d_acheminement": "VISCOMTAT", "code_postal": "63250", "coordonnees_gps": [45.8665213579, 3.68184303614], "code_commune_insee": "63463"}, "geometry": {"type": "Point", "coordinates": [3.68184303614, 45.8665213579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8720b3a3dda38aca830606969e82fd2fde976e77", "fields": {"nom_de_la_commune": "VIVEROLS", "libell_d_acheminement": "VIVEROLS", "code_postal": "63840", "coordonnees_gps": [45.4285937621, 3.88182928163], "code_commune_insee": "63465"}, "geometry": {"type": "Point", "coordinates": [3.88182928163, 45.4285937621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45618c9e989fee464846196a5c36385447c71ace", "fields": {"nom_de_la_commune": "VOLLORE MONTAGNE", "libell_d_acheminement": "VOLLORE MONTAGNE", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63468"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954d823c5a65ecc8e5e3b586f46558b77421b643", "fields": {"nom_de_la_commune": "ABOS", "libell_d_acheminement": "ABOS", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64005"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d094c5fc60c5bcd925639d04a12e3d841587d965", "fields": {"nom_de_la_commune": "AICIRITS CAMOU SUHAST", "libell_d_acheminement": "AICIRITS CAMOU SUHAST", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64010"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d91dd71f4bd0abc748cd7e401e68e86a49bf4de6", "fields": {"code_postal": "64120", "code_commune_insee": "64010", "libell_d_acheminement": "AICIRITS CAMOU SUHAST", "ligne_5": "CAMOU MIXE SUHAST", "nom_de_la_commune": "AICIRITS CAMOU SUHAST", "coordonnees_gps": [43.3050617762, -1.05477457972]}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904c43517b3d3da02af40dc94977101336d73b70", "fields": {"nom_de_la_commune": "AMENDEUIX ONEIX", "libell_d_acheminement": "AMENDEUIX ONEIX", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64018"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a97e76db1a1ff5ded8d285a6ca4219a542412ae", "fields": {"nom_de_la_commune": "ANDOINS", "libell_d_acheminement": "ANDOINS", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64021"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64c98b39ad32285b5002388f44f1a98a74b4dd90", "fields": {"nom_de_la_commune": "ANGOUS", "libell_d_acheminement": "ANGOUS", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64025"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8812d735f9aa85bd1db8b50f83b4ae70c5bffb13", "fields": {"nom_de_la_commune": "ANHAUX", "libell_d_acheminement": "ANHAUX", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64026"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df5f4d708570df66054e03f7e765e1f435fa8ac3", "fields": {"nom_de_la_commune": "ANOS", "libell_d_acheminement": "ANOS", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64027"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4975d36bea5475abfd69c3e0aea4d3bec5992a96", "fields": {"nom_de_la_commune": "ARBERATS SILLEGUE", "libell_d_acheminement": "ARBERATS SILLEGUE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64034"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2b4447275b49e3eb95481b03cef68ebeb3d1760", "fields": {"nom_de_la_commune": "ARBONNE", "libell_d_acheminement": "ARBONNE", "code_postal": "64210", "coordonnees_gps": [43.4226559085, -1.56911488604], "code_commune_insee": "64035"}, "geometry": {"type": "Point", "coordinates": [-1.56911488604, 43.4226559085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ea232d4c21568ece2a417d09d86ac18f5875cc", "fields": {"nom_de_la_commune": "ARETTE", "libell_d_acheminement": "ARETTE", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64040"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81cfef18d0691ddd6786b02869554f07182ef274", "fields": {"nom_de_la_commune": "ARNEGUY", "libell_d_acheminement": "ARNEGUY", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64047"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d5ecd0f3ccd0efcb8223a0953918de8a9f4b3de", "fields": {"nom_de_la_commune": "ARRICAU BORDES", "libell_d_acheminement": "ARRICAU BORDES", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64052"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77a589b57be641636468b3cfb44082626f38dd7", "fields": {"nom_de_la_commune": "ARZACQ ARRAZIGUET", "libell_d_acheminement": "ARZACQ ARRAZIGUET", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64063"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49086bdf8285a4f0f7be10d949083d7538beb09c", "fields": {"nom_de_la_commune": "ASTE BEON", "libell_d_acheminement": "ASTE BEON", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64069"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f4d3516e6549801323ee359b7c016566fc26b1", "fields": {"nom_de_la_commune": "AUBIN", "libell_d_acheminement": "AUBIN", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64073"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d100629b442281d1269585e000614656c446a87", "fields": {"nom_de_la_commune": "AURIONS IDERNES", "libell_d_acheminement": "AURIONS IDERNES", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64079"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e89f227423b194bc62a7d4ecb6cf6c19fde431cb", "fields": {"nom_de_la_commune": "AUTEVIELLE ST MARTIN BIDEREN", "libell_d_acheminement": "AUTEVIELLE ST MARTIN BIDEREN", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64083"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "689e1387d8afb872ccc46efe305ccb52b06a6dc9", "fields": {"nom_de_la_commune": "BALANSUN", "libell_d_acheminement": "BALANSUN", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64088"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40bfa4b884ca1356985b63a6745d56705882c611", "fields": {"nom_de_la_commune": "BARZUN", "libell_d_acheminement": "BARZUN", "code_postal": "64530", "coordonnees_gps": [43.2249813189, -0.0930410318434], "code_commune_insee": "64097"}, "geometry": {"type": "Point", "coordinates": [-0.0930410318434, 43.2249813189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e8079864b5417e80eba7af1df3b1b96db1b8cdd", "fields": {"nom_de_la_commune": "BAYONNE", "libell_d_acheminement": "BAYONNE", "code_postal": "64100", "coordonnees_gps": [43.4922522445, -1.46647823758], "code_commune_insee": "64102"}, "geometry": {"type": "Point", "coordinates": [-1.46647823758, 43.4922522445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d357196c48963c96ae964a377703bd951cfde9", "fields": {"nom_de_la_commune": "BEHASQUE LAPISTE", "libell_d_acheminement": "BEHASQUE LAPISTE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64106"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cce9a0f24fe656682e453114438102dd6668d1c", "fields": {"nom_de_la_commune": "BERNADETS", "libell_d_acheminement": "BERNADETS", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64114"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a21188b70c548371c5df2c80dc68c9cedd3bccd0", "fields": {"nom_de_la_commune": "BERROGAIN LARUNS", "libell_d_acheminement": "BERROGAIN LARUNS", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64115"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf220ce3cda64433e6060413b0379965ac60501b", "fields": {"nom_de_la_commune": "BIDARRAY", "libell_d_acheminement": "BIDARRAY", "code_postal": "64780", "coordonnees_gps": [43.2518666668, -1.28852003798], "code_commune_insee": "64124"}, "geometry": {"type": "Point", "coordinates": [-1.28852003798, 43.2518666668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb6f7ac07b89463ad843189b9501779aaf0cd25", "fields": {"nom_de_la_commune": "BILLERE", "libell_d_acheminement": "BILLERE", "code_postal": "64140", "coordonnees_gps": [43.3167166391, -0.399067270289], "code_commune_insee": "64129"}, "geometry": {"type": "Point", "coordinates": [-0.399067270289, 43.3167166391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b946568ff7785823ff10c8c6f5bc9990f99f9550", "fields": {"nom_de_la_commune": "BIRON", "libell_d_acheminement": "BIRON", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64131"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6005b0a910d874bdc8b8394a5b1dbe081e955199", "fields": {"nom_de_la_commune": "BOSDARROS", "libell_d_acheminement": "BOSDARROS", "code_postal": "64290", "coordonnees_gps": [43.2158139133, -0.441474336827], "code_commune_insee": "64139"}, "geometry": {"type": "Point", "coordinates": [-0.441474336827, 43.2158139133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c23fb25cd7a9e11a2f8def0578d81fb76c096d40", "fields": {"nom_de_la_commune": "BOUGARBER", "libell_d_acheminement": "BOUGARBER", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64142"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "909e93398588d38b4a56e2be881551ff4c5fa954", "fields": {"nom_de_la_commune": "ST MARTIN DE COMMUNE", "libell_d_acheminement": "ST MARTIN DE COMMUNE", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71450"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "332a0a8c3989b509c4a4c8a29f7c3c73f98c8e46", "fields": {"nom_de_la_commune": "ST MARTIN DU LAC", "libell_d_acheminement": "ST MARTIN DU LAC", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71453"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "accc52ebc2c0a86b13559c41ddbea2a170ea0749", "fields": {"nom_de_la_commune": "ST MARTIN DU MONT", "libell_d_acheminement": "ST MARTIN DU MONT", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71454"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "669c86ea0bfc92bb55c08d03c2fe109cf1ab90d4", "fields": {"nom_de_la_commune": "ST MARTIN DU TARTRE", "libell_d_acheminement": "ST MARTIN DU TARTRE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71455"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1c16400d84003723899b261bf9a56d8164d8e95", "fields": {"nom_de_la_commune": "ST NIZIER SUR ARROUX", "libell_d_acheminement": "ST NIZIER SUR ARROUX", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71466"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53756f1c8f0e31f39c4843e3bf26d23967263831", "fields": {"nom_de_la_commune": "ST RACHO", "libell_d_acheminement": "ST RACHO", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71473"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9807f31fcbb3ccf2219dbea3fe0ac35b03f739aa", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71474"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c18514bb1bd19b55f24933a98ae8013a78099e90", "fields": {"code_postal": "71570", "code_commune_insee": "71481", "libell_d_acheminement": "ST SYMPHORIEN D ANCELLES", "ligne_5": "ST ROMAIN DES ILES", "nom_de_la_commune": "ST SYMPHORIEN D ANCELLES", "coordonnees_gps": [46.2281804382, 4.74594921623]}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c23109ae7633c7713f8ad431f951403475c5234", "fields": {"nom_de_la_commune": "ST SYMPHORIEN DES BOIS", "libell_d_acheminement": "ST SYMPHORIEN DES BOIS", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71483"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "539a798aa5a5e55acb3f6762113f7bfea613433e", "fields": {"nom_de_la_commune": "ST VERAND", "libell_d_acheminement": "ST VERAND", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71487"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "279ab61af67b2e68c884193b74b056356542ecbc", "fields": {"nom_de_la_commune": "LA SALLE", "libell_d_acheminement": "LA SALLE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71494"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e0d833f60ed6884569363e0ff119b763fdc6f6d", "fields": {"nom_de_la_commune": "SARRY", "libell_d_acheminement": "SARRY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71500"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761a9ebaf8f998cd54dc1552898fa597b5003742", "fields": {"nom_de_la_commune": "SASSANGY", "libell_d_acheminement": "SASSANGY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71501"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18be13e5e31e8786061c85fb7112ab173337f519", "fields": {"nom_de_la_commune": "SAVIGNY SUR GROSNE", "libell_d_acheminement": "SAVIGNY SUR GROSNE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71507"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "976bd5f196de34485bb8051e26146ca7550c8b00", "fields": {"nom_de_la_commune": "SOLUTRE POUILLY", "libell_d_acheminement": "SOLUTRE POUILLY", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71526"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5beae9b3981b7a7376e7becd719f58bf417bc1bd", "fields": {"nom_de_la_commune": "TANCON", "libell_d_acheminement": "TANCON", "code_postal": "71740", "coordonnees_gps": [46.2095862576, 4.24377069569], "code_commune_insee": "71533"}, "geometry": {"type": "Point", "coordinates": [4.24377069569, 46.2095862576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492d629a64295f033a0a1b812fe0353a345c3ca2", "fields": {"nom_de_la_commune": "TINTRY", "libell_d_acheminement": "TINTRY", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71539"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90acf990c50f6f662ca1a93b1aa860b277782e96", "fields": {"nom_de_la_commune": "TRONCHY", "libell_d_acheminement": "TRONCHY", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71548"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeee90fc60282ed06c2192a3b56f4b98c8e8b86f", "fields": {"nom_de_la_commune": "UCHON", "libell_d_acheminement": "UCHON", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71551"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0376de5f92ee45b6f389ccc7b11422b2b0e39d75", "fields": {"nom_de_la_commune": "VENDENESSE SUR ARROUX", "libell_d_acheminement": "VENDENESSE SUR ARROUX", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71565"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7775be89a8b876adbc5aef6407793a76271ccd00", "fields": {"nom_de_la_commune": "LE VILLARS", "libell_d_acheminement": "LE VILLARS", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71576"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c34420fab44ad84fcc2fc92bc82bb9f0a229842", "fields": {"nom_de_la_commune": "VILLEGAUDIN", "libell_d_acheminement": "VILLEGAUDIN", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71577"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7b5fff73313767c785ef2b34cee9e5eb0fb13a", "fields": {"nom_de_la_commune": "VILLENEUVE EN MONTAGNE", "libell_d_acheminement": "VILLENEUVE EN MONTAGNE", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71579"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a98ef1c0ddab528560070d3dadc88bf6a718f7", "fields": {"nom_de_la_commune": "ST MARTIN LE GAILLARD", "libell_d_acheminement": "ST MARTIN LE GAILLARD", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76619"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4254e9f0e605a1a155738786f28d5c2c29c2306a", "fields": {"nom_de_la_commune": "ST NICOLAS D ALIERMONT", "libell_d_acheminement": "ST NICOLAS D ALIERMONT", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76624"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac8e67050983a0976d3f6e087ea826b0ae3ab877", "fields": {"nom_de_la_commune": "ST NICOLAS DE LA HAIE", "libell_d_acheminement": "ST NICOLAS DE LA HAIE", "code_postal": "76490", "coordonnees_gps": [49.5497184764, 0.687731909353], "code_commune_insee": "76626"}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f11a3527b2302cae50d45294b21387d0bf91788", "fields": {"nom_de_la_commune": "ST PIERRE BENOUVILLE", "libell_d_acheminement": "ST PIERRE BENOUVILLE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76632"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c200f3588f6b55d8aa1fc999668adc091baf35ac", "fields": {"nom_de_la_commune": "ST PIERRE DES JONQUIERES", "libell_d_acheminement": "ST PIERRE DES JONQUIERES", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76635"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44b7e16eb6fca44539bb1d83fab13a06b2c06001", "fields": {"nom_de_la_commune": "ST RIQUIER ES PLAINS", "libell_d_acheminement": "ST RIQUIER ES PLAINS", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76646"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a657ebfd5757b83c3b13e5662c11a87f68493c3", "fields": {"nom_de_la_commune": "ST VALERY EN CAUX", "libell_d_acheminement": "ST VALERY EN CAUX", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76655"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc5ba41e78444c99978b2d0e8fb272b896817a19", "fields": {"nom_de_la_commune": "SANDOUVILLE", "libell_d_acheminement": "SANDOUVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76660"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693c3428a13740440cc8753453800c0efe0de687", "fields": {"code_postal": "76540", "code_commune_insee": "76663", "libell_d_acheminement": "SASSETOT LE MAUCONDUIT", "ligne_5": "LES GRANDES DALLES", "nom_de_la_commune": "SASSETOT LE MAUCONDUIT", "coordonnees_gps": [49.7570077564, 0.523798637411]}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "663051c0f2b292755a9428d589df8e64d2508dfd", "fields": {"nom_de_la_commune": "SAUQUEVILLE", "libell_d_acheminement": "SAUQUEVILLE", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76667"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efa90b6e895f347e6c040fad61f796c6acee6d06", "fields": {"nom_de_la_commune": "SEVIS", "libell_d_acheminement": "SEVIS", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76674"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cec194163a1ace0b1abf35eb01fe76bb420da173", "fields": {"nom_de_la_commune": "SMERMESNIL", "libell_d_acheminement": "SMERMESNIL", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76677"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09ae41269dcd1ba9acecee9d9fe9d486bba0bd82", "fields": {"nom_de_la_commune": "SOTTEVILLE LES ROUEN", "libell_d_acheminement": "SOTTEVILLE LES ROUEN", "code_postal": "76300", "coordonnees_gps": [49.4110704136, 1.09576489781], "code_commune_insee": "76681"}, "geometry": {"type": "Point", "coordinates": [1.09576489781, 49.4110704136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a04d06381c904876cec00445ee11834ade23855", "fields": {"nom_de_la_commune": "THEUVILLE AUX MAILLOTS", "libell_d_acheminement": "THEUVILLE AUX MAILLOTS", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76686"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b505de0ae5e023d3df6b3dabb687af68bb12a606", "fields": {"nom_de_la_commune": "VAL DE LA HAYE", "libell_d_acheminement": "VAL DE LA HAYE", "code_postal": "76380", "coordonnees_gps": [49.425520648, 1.00384964963], "code_commune_insee": "76717"}, "geometry": {"type": "Point", "coordinates": [1.00384964963, 49.425520648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02adeda2eff1edde5f81bd6c2e9d2419ba420a9", "fields": {"nom_de_la_commune": "VARENGEVILLE SUR MER", "libell_d_acheminement": "VARENGEVILLE SUR MER", "code_postal": "76119", "coordonnees_gps": [49.9045710817, 0.981854479387], "code_commune_insee": "76720"}, "geometry": {"type": "Point", "coordinates": [0.981854479387, 49.9045710817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f368e961a6413a5c694c8ec2b40a6749decea56a", "fields": {"nom_de_la_commune": "VASSONVILLE", "libell_d_acheminement": "VASSONVILLE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76723"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a01fd4c9ae03df4fea33a14d80d4039991fc0d", "fields": {"nom_de_la_commune": "VATTETOT SUR MER", "libell_d_acheminement": "VATTETOT SUR MER", "code_postal": "76111", "coordonnees_gps": [49.7290566584, 0.303233550691], "code_commune_insee": "76726"}, "geometry": {"type": "Point", "coordinates": [0.303233550691, 49.7290566584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d2da63f3f4bae0d64432b887599bb2e9467d39", "fields": {"nom_de_la_commune": "LA VAUPALIERE", "libell_d_acheminement": "LA VAUPALIERE", "code_postal": "76150", "coordonnees_gps": [49.4875793097, 1.0078796915], "code_commune_insee": "76728"}, "geometry": {"type": "Point", "coordinates": [1.0078796915, 49.4875793097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57906e5009409256b9837d0db57311d6e73481da", "fields": {"nom_de_la_commune": "LA VIEUX RUE", "libell_d_acheminement": "LA VIEUX RUE", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76740"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd1684291352eea6eb95d80834d8b8e9fa36800", "fields": {"nom_de_la_commune": "VILLAINVILLE", "libell_d_acheminement": "VILLAINVILLE", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76741"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c38e8f4e08147fb841b97133a2eeffbcbeb6ef", "fields": {"nom_de_la_commune": "YVETOT", "libell_d_acheminement": "YVETOT", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76758"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1dc30d2803f6680ea06a6b3ea8fb150a6dc978", "fields": {"nom_de_la_commune": "AMILLIS", "libell_d_acheminement": "AMILLIS", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77002"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a12ba191a1e03c883f2b0b9ab6a1f30a4ac1d7fb", "fields": {"nom_de_la_commune": "ARVILLE", "libell_d_acheminement": "ARVILLE", "code_postal": "77890", "coordonnees_gps": [48.1786433192, 2.5341392437], "code_commune_insee": "77009"}, "geometry": {"type": "Point", "coordinates": [2.5341392437, 48.1786433192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3b72cad230d1ded47c65382d1f9483bc0c0bd34", "fields": {"code_postal": "77720", "code_commune_insee": "77010", "libell_d_acheminement": "AUBEPIERRE OZOUER LE REPOS", "ligne_5": "OZOUER LE REPOS", "nom_de_la_commune": "AUBEPIERRE OZOUER LE REPOS", "coordonnees_gps": [48.5850477632, 2.89649549396]}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bccbd52c5c910654c51bbf1558410a3e8845550", "fields": {"nom_de_la_commune": "AUFFERVILLE", "libell_d_acheminement": "AUFFERVILLE", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77011"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee93c1571211fb820ccedd2ba47b4c24e6ab7e9f", "fields": {"nom_de_la_commune": "SORNEVILLE", "libell_d_acheminement": "SORNEVILLE", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54510"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6e21378eea0b58237ae465a2beb97dac9620742", "fields": {"nom_de_la_commune": "SPONVILLE", "libell_d_acheminement": "SPONVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54511"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c5eb1221e8296cc385e2516ead763542245962", "fields": {"nom_de_la_commune": "TELLANCOURT", "libell_d_acheminement": "TELLANCOURT", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54514"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4ce59a3c0da0cd153192671f502eec7d933e4d9", "fields": {"nom_de_la_commune": "TUCQUEGNIEUX", "libell_d_acheminement": "TUCQUEGNIEUX", "code_postal": "54640", "coordonnees_gps": [49.3041198945, 5.8990385658], "code_commune_insee": "54536"}, "geometry": {"type": "Point", "coordinates": [5.8990385658, 49.3041198945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05173dc052cbe91fcc63fb106c89a5b60b99390f", "fields": {"nom_de_la_commune": "UGNY", "libell_d_acheminement": "UGNY", "code_postal": "54870", "coordonnees_gps": [49.4779492899, 5.69039116636], "code_commune_insee": "54537"}, "geometry": {"type": "Point", "coordinates": [5.69039116636, 49.4779492899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4003d8d3262d55b3fa274e9f4a36cdcd0bc20ca4", "fields": {"nom_de_la_commune": "URUFFE", "libell_d_acheminement": "URUFFE", "code_postal": "54112", "coordonnees_gps": [48.5703688862, 5.77161023397], "code_commune_insee": "54538"}, "geometry": {"type": "Point", "coordinates": [5.77161023397, 48.5703688862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d1a7f398c6cbeca432941aeb682844aca4b7d6", "fields": {"nom_de_la_commune": "VALLOIS", "libell_d_acheminement": "VALLOIS", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54543"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5e4d8d79a68c75887d174ce2d9d0ee8c0c64383", "fields": {"nom_de_la_commune": "VAXAINVILLE", "libell_d_acheminement": "VAXAINVILLE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54555"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef2d184ed2960c91af784db4a047955c06afe39", "fields": {"nom_de_la_commune": "VILLERS LA CHEVRE", "libell_d_acheminement": "VILLERS LA CHEVRE", "code_postal": "54870", "coordonnees_gps": [49.4779492899, 5.69039116636], "code_commune_insee": "54574"}, "geometry": {"type": "Point", "coordinates": [5.69039116636, 49.4779492899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7306f5daf03040dc928a7830758cf3c6e048ab97", "fields": {"nom_de_la_commune": "VILLERS LA MONTAGNE", "libell_d_acheminement": "VILLERS LA MONTAGNE", "code_postal": "54920", "coordonnees_gps": [49.4594844823, 5.82596357033], "code_commune_insee": "54575"}, "geometry": {"type": "Point", "coordinates": [5.82596357033, 49.4594844823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a750447e9307722d91840814dd8e9fbaaaea265", "fields": {"nom_de_la_commune": "VILLERS SOUS PRENY", "libell_d_acheminement": "VILLERS SOUS PRENY", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54579"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "314a27ebcba017014c8af43720c9d5e22997d324", "fields": {"nom_de_la_commune": "VILLEY LE SEC", "libell_d_acheminement": "VILLEY LE SEC", "code_postal": "54840", "coordonnees_gps": [48.6916643372, 6.00665545464], "code_commune_insee": "54583"}, "geometry": {"type": "Point", "coordinates": [6.00665545464, 48.6916643372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a8bdc11199688160b3912bf7687d5a4d45287d", "fields": {"nom_de_la_commune": "VILLEY ST ETIENNE", "libell_d_acheminement": "VILLEY ST ETIENNE", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54584"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45522f2935f37eaed08a2bf286af896ac78cca15", "fields": {"nom_de_la_commune": "XAMMES", "libell_d_acheminement": "XAMMES", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54594"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ac8750580629b4db6dc8a666a2af4d7cc732a7", "fields": {"nom_de_la_commune": "XERMAMENIL", "libell_d_acheminement": "XERMAMENIL", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54595"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08070aa6ddb2acf6fb5b6f4bf093003a27816a32", "fields": {"nom_de_la_commune": "AINCREVILLE", "libell_d_acheminement": "AINCREVILLE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55004"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fea98a2a3a307ad4614d96e889379085a798dda9", "fields": {"nom_de_la_commune": "AMBLY SUR MEUSE", "libell_d_acheminement": "AMBLY SUR MEUSE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55007"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0287983f730d921e5366500e16e9bb20e84f86a", "fields": {"code_postal": "55300", "code_commune_insee": "55012", "libell_d_acheminement": "APREMONT LA FORET", "ligne_5": "LIOUVILLE", "nom_de_la_commune": "APREMONT LA FORET", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7d219312596b1ed6937c65279b400727801f3c", "fields": {"nom_de_la_commune": "AULNOIS EN PERTHOIS", "libell_d_acheminement": "AULNOIS EN PERTHOIS", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55015"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfcdfba7aa67e5b961b77fbf91dac311bd8195e2", "fields": {"nom_de_la_commune": "BAR LE DUC", "libell_d_acheminement": "BAR LE DUC", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55029"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbbdd1fd0413afe5907e07bfb09721951fb34bb1", "fields": {"nom_de_la_commune": "BEAUCLAIR", "libell_d_acheminement": "BEAUCLAIR", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55036"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9374dd46d7b7ac5b1e8eb0fe68fd15d68da8bcec", "fields": {"nom_de_la_commune": "BEAUMONT EN VERDUNOIS", "libell_d_acheminement": "BEAUMONT EN VERDUNOIS", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55039"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "690a5b07c746cb1be3ea5f42f325dc3e4878ac58", "fields": {"nom_de_la_commune": "BEAUSITE", "libell_d_acheminement": "BEAUSITE", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55040"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc2a24758f9ff9f3d1281a84c49a1281434ddffb", "fields": {"code_postal": "55250", "code_commune_insee": "55040", "libell_d_acheminement": "BEAUSITE", "ligne_5": "DEUXNOUDS DEVANT BEAUZEE", "nom_de_la_commune": "BEAUSITE", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59298830c82b68afc9178ae4096a8e7c42bc65f2", "fields": {"nom_de_la_commune": "BILLY SOUS MANGIENNES", "libell_d_acheminement": "BILLY SOUS MANGIENNES", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55053"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a970feb1416952e6f77b76ce7f8d50070194a296", "fields": {"nom_de_la_commune": "BISLEE", "libell_d_acheminement": "BISLEE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55054"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0f54066dff5bb4bedcaf04cc8216b4346974e5", "fields": {"nom_de_la_commune": "BLANZEE", "libell_d_acheminement": "BLANZEE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55055"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75dedc628464af8ef8228c86471da8db25503603", "fields": {"nom_de_la_commune": "BONZEE", "libell_d_acheminement": "BONZEE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55060"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ffdf45f4b800dc4ba2f8bc8ae75d929e0bad72", "fields": {"code_postal": "55160", "code_commune_insee": "55060", "libell_d_acheminement": "BONZEE", "ligne_5": "MONT VILLERS", "nom_de_la_commune": "BONZEE", "coordonnees_gps": [49.0949133617, 5.65293437026]}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57c0ae311553d548d0b168ba7e1ae04cdfa823e0", "fields": {"nom_de_la_commune": "BRABANT EN ARGONNE", "libell_d_acheminement": "BRABANT EN ARGONNE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55068"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cbc36061ff3df0bca09dc409d0bd61fafd24251", "fields": {"nom_de_la_commune": "BRABANT LE ROI", "libell_d_acheminement": "BRABANT LE ROI", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55069"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c0326b3c07f8a4947905441697a56cdb5120f4", "fields": {"nom_de_la_commune": "BRABANT SUR MEUSE", "libell_d_acheminement": "BRABANT SUR MEUSE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55070"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5630d2977d9a1d662a013f7139912c55f7cb9bb", "fields": {"nom_de_la_commune": "BRAUVILLIERS", "libell_d_acheminement": "BRAUVILLIERS", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55075"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15c2bbcb8f6926435eda1075bd41ff350e8cbf0d", "fields": {"nom_de_la_commune": "BROUENNES", "libell_d_acheminement": "BROUENNES", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55083"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c74d72d9d7608d518b3f4d36653ba095b15928", "fields": {"code_postal": "55400", "code_commune_insee": "55094", "libell_d_acheminement": "BUZY DARMONT", "ligne_5": "DARMONT", "nom_de_la_commune": "BUZY DARMONT", "coordonnees_gps": [49.1964122747, 5.59749948123]}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da0e1b0b6b84459a76665d578e35fca98278ae8a", "fields": {"nom_de_la_commune": "CESSE", "libell_d_acheminement": "CESSE", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55095"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8bdba9cd3315dfc97b71346d9709fdd00f2035d", "fields": {"nom_de_la_commune": "CHARDOGNE", "libell_d_acheminement": "CHARDOGNE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55101"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dfc031d824e3af1a44a098dc156832b83de98ba", "fields": {"nom_de_la_commune": "CHATILLON SOUS LES COTES", "libell_d_acheminement": "CHATILLON SOUS LES COTES", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55105"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379708626221d8254533f6b7c963b9ef8d852e3e", "fields": {"nom_de_la_commune": "CHAUVENCY ST HUBERT", "libell_d_acheminement": "CHAUVENCY ST HUBERT", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55110"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff72ee3231e89005448767702c5dc2a3e59e2d79", "fields": {"nom_de_la_commune": "LE CLAON", "libell_d_acheminement": "LE CLAON", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55116"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f173d9ebb9e21f0b65534a3bc84d7b01479eba", "fields": {"code_postal": "55120", "code_commune_insee": "55117", "libell_d_acheminement": "CLERMONT EN ARGONNE", "ligne_5": "PAROIS", "nom_de_la_commune": "CLERMONT EN ARGONNE", "coordonnees_gps": [49.116502234, 5.11120528176]}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deb602fa15f3ce42c685be5f1483446bbb810ad6", "fields": {"nom_de_la_commune": "COMBLES EN BARROIS", "libell_d_acheminement": "COMBLES EN BARROIS", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55120"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "441a14840bc801dde54d41152caa166ef942a3ad", "fields": {"code_postal": "55000", "code_commune_insee": "55123", "libell_d_acheminement": "LES HAUTS DE CHEE", "ligne_5": "LOUPPY SUR CHEE", "nom_de_la_commune": "LES HAUTS DE CHEE", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b88c6747b1712f9a34aa701d632e10b8a5c44fb4", "fields": {"nom_de_la_commune": "COURCELLES SUR AIRE", "libell_d_acheminement": "COURCELLES SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55128"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "257d78ca0387707fc68242daf5b444232bfd2df4", "fields": {"nom_de_la_commune": "COUVONGES", "libell_d_acheminement": "COUVONGES", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55134"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a082e96481c308aa979a1af7b8aa67e732e3e84", "fields": {"nom_de_la_commune": "DOMBASLE EN ARGONNE", "libell_d_acheminement": "DOMBASLE EN ARGONNE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55155"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe4d57c9f31ca85460386f1df23cbc0f0b245a3", "fields": {"nom_de_la_commune": "DUZEY", "libell_d_acheminement": "DUZEY", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55168"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1b2bc7dd450bc2ec47a550fa50e5f7d0b8d6aa", "fields": {"nom_de_la_commune": "ECUREY EN VERDUNOIS", "libell_d_acheminement": "ECUREY EN VERDUNOIS", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55170"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e75e438cc5e5d5fb9a6dab06eb11d81a0c93d9f0", "fields": {"nom_de_la_commune": "EPINONVILLE", "libell_d_acheminement": "EPINONVILLE", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55174"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d3d890ad172c32b061f8f2b18cff29d91dc768", "fields": {"nom_de_la_commune": "ERIZE ST DIZIER", "libell_d_acheminement": "ERIZE ST DIZIER", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55178"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd1d3570f989d531d33e90a5880eba012385935", "fields": {"nom_de_la_commune": "ESNES EN ARGONNE", "libell_d_acheminement": "ESNES EN ARGONNE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55180"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5746da27e7a1feadbb3a5d8dfbb5d299cc040a1", "fields": {"nom_de_la_commune": "FROMEREVILLE LES VALLONS", "libell_d_acheminement": "FROMEREVILLE LES VALLONS", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55200"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d283fb6b0153e600b0244f6316c6f9665d5f3f13", "fields": {"nom_de_la_commune": "HAN LES JUVIGNY", "libell_d_acheminement": "HAN LES JUVIGNY", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55226"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bda5866b1477e406277d021b6b2757d12ee1bb47", "fields": {"code_postal": "55300", "code_commune_insee": "55229", "libell_d_acheminement": "HAN SUR MEUSE", "ligne_5": "AILLY SUR MEUSE", "nom_de_la_commune": "HAN SUR MEUSE", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee454c8e530c43886fe52fa0c53cc23dce552e8d", "fields": {"nom_de_la_commune": "HAUDIOMONT", "libell_d_acheminement": "HAUDIOMONT", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55237"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7995244dca3dedb091abcc0b1c2292784a27b6", "fields": {"nom_de_la_commune": "GEVILLE", "libell_d_acheminement": "GEVILLE", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55258"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "484dc52732107fd8f9597b71d5e39b1641df9982", "fields": {"nom_de_la_commune": "KOEUR LA PETITE", "libell_d_acheminement": "KOEUR LA PETITE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55264"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fa09f6a211643ad1016a80c220264804021db9a", "fields": {"nom_de_la_commune": "LATOUR EN WOEVRE", "libell_d_acheminement": "LATOUR EN WOEVRE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55281"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a000e08e4e591c7b9b5eca27425710b5b8056e42", "fields": {"nom_de_la_commune": "LIGNIERES SUR AIRE", "libell_d_acheminement": "LIGNIERES SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55290"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64dbd4a08221a60d73cdcfd2158dc8f19d7670c9", "fields": {"nom_de_la_commune": "LINY DEVANT DUN", "libell_d_acheminement": "LINY DEVANT DUN", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55292"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c74639b858d9b817675e08cb5ba226b8b88b05b4", "fields": {"nom_de_la_commune": "LOUPMONT", "libell_d_acheminement": "LOUPMONT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55303"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edb0e711696b843bc3753560f1272ad46103b2bf", "fields": {"nom_de_la_commune": "LOUPPY SUR LOISON", "libell_d_acheminement": "LOUPPY SUR LOISON", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55306"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f84d3d4efa8364fe12df06411bd761bf849c92", "fields": {"nom_de_la_commune": "MAIZERAY", "libell_d_acheminement": "MAIZERAY", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55311"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b57d7edb299b17f3c246239300157a4c1988a785", "fields": {"nom_de_la_commune": "MARTINCOURT SUR MEUSE", "libell_d_acheminement": "MARTINCOURT SUR MEUSE", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55323"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "871e8e00c8f746ae3fe1c1563e4f085d250f6299", "fields": {"nom_de_la_commune": "MAUCOURT SUR ORNE", "libell_d_acheminement": "MAUCOURT SUR ORNE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55325"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2b1cfe3e08e365cc14967933775ed928745a43", "fields": {"nom_de_la_commune": "MECRIN", "libell_d_acheminement": "MECRIN", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55329"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "488619d6f6848f2bbc5ad42222be072e80f6a85a", "fields": {"nom_de_la_commune": "MENAUCOURT", "libell_d_acheminement": "MENAUCOURT", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55332"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c91f69a37ddee219f7ac99f4da52a4d97ddf7ae7", "fields": {"nom_de_la_commune": "MILLY SUR BRADON", "libell_d_acheminement": "MILLY SUR BRADON", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55338"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daa093a9067652f2c1bd128195cb85712c3945a6", "fields": {"nom_de_la_commune": "MONTFAUCON D ARGONNE", "libell_d_acheminement": "MONTFAUCON D ARGONNE", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55346"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59b0de41c9a4263463a9b604c84cf1cad3cef1f1", "fields": {"nom_de_la_commune": "MONTIERS SUR SAULX", "libell_d_acheminement": "MONTIERS SUR SAULX", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55348"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3c50a87c0921cd2e9f0a66ae49983a28b873148", "fields": {"nom_de_la_commune": "MONTSEC", "libell_d_acheminement": "MONTSEC", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55353"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5a5fca787532e8e58447c44d56ebc10b0fa74ff", "fields": {"nom_de_la_commune": "MONTZEVILLE", "libell_d_acheminement": "MONTZEVILLE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55355"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0dbcbdfe63bc64661e6b0ef89a7e8a8e05a3185", "fields": {"nom_de_la_commune": "MORANVILLE", "libell_d_acheminement": "MORANVILLE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55356"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5c2c4e5bfb95a7d2e1b7ae0b86eccd22fe67047", "fields": {"nom_de_la_commune": "MORGEMOULIN", "libell_d_acheminement": "MORGEMOULIN", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55357"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e1bb5e79c41c147fa071827190595138aeaafd", "fields": {"nom_de_la_commune": "VENTAVON", "libell_d_acheminement": "VENTAVON", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05178"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93eb9c049e957cbe2acc2c663283af2ec57ae50", "fields": {"nom_de_la_commune": "BAIROLS", "libell_d_acheminement": "BAIROLS", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06009"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b71b554fe8d45693fa45ff1be37e3c9aee02df9", "fields": {"nom_de_la_commune": "AUVARE", "libell_d_acheminement": "AUVARE", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06008"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7f985ddd54d9977cdd0bce6b57a3d60ff0a7d8e", "fields": {"nom_de_la_commune": "UPAIX", "libell_d_acheminement": "UPAIX", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05173"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c1fd645cfeccb50a9440d60ba1079255b62c3a9", "fields": {"nom_de_la_commune": "CLANS", "libell_d_acheminement": "CLANS", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06042"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96ac55e3e96535df01631594d8946a7f55e781b1", "fields": {"code_postal": "06210", "code_commune_insee": "06079", "libell_d_acheminement": "MANDELIEU LA NAPOULE", "ligne_5": "LA NAPOULE", "nom_de_la_commune": "MANDELIEU LA NAPOULE", "coordonnees_gps": [43.5382980817, 6.91782917147]}, "geometry": {"type": "Point", "coordinates": [6.91782917147, 43.5382980817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ff0ac08616eb59039a14b5fcc9d9e529553671", "fields": {"code_postal": "06130", "code_commune_insee": "06069", "libell_d_acheminement": "GRASSE", "ligne_5": "PLASCASSIER", "nom_de_la_commune": "GRASSE", "coordonnees_gps": [43.6557670284, 6.93183304936]}, "geometry": {"type": "Point", "coordinates": [6.93183304936, 43.6557670284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87ec5722b5cb5b3353f6f371582fbd90aad8e8c8", "fields": {"nom_de_la_commune": "MOUGINS", "libell_d_acheminement": "MOUGINS", "code_postal": "06250", "coordonnees_gps": [43.5960811185, 7.00118889043], "code_commune_insee": "06085"}, "geometry": {"type": "Point", "coordinates": [7.00118889043, 43.5960811185]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d6a86922e4056ff98fa9e1359e75eec6427ae7", "fields": {"nom_de_la_commune": "LIEUCHE", "libell_d_acheminement": "LIEUCHE", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06076"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebbe8425c2f2fda1cbf0942df2bdc7b7d5e61e6", "fields": {"nom_de_la_commune": "ILONSE", "libell_d_acheminement": "ILONSE", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06072"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "363f8dae97ab3ee8144c39d43654fafccfed48cd", "fields": {"nom_de_la_commune": "DRAP", "libell_d_acheminement": "DRAP", "code_postal": "06340", "coordonnees_gps": [43.7532444079, 7.33155187771], "code_commune_insee": "06054"}, "geometry": {"type": "Point", "coordinates": [7.33155187771, 43.7532444079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "667e52cbabe6c1bae33ecba3ee4fddc6f7e7b3b3", "fields": {"nom_de_la_commune": "GARS", "libell_d_acheminement": "GARS", "code_postal": "06850", "coordonnees_gps": [43.8467484238, 6.75541099886], "code_commune_insee": "06063"}, "geometry": {"type": "Point", "coordinates": [6.75541099886, 43.8467484238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a3d5dbcf6443b96f50dd2ee51c0316b0fdd9805", "fields": {"nom_de_la_commune": "NICE", "libell_d_acheminement": "NICE", "code_postal": "06000", "coordonnees_gps": [43.7122279855, 7.23752896461], "code_commune_insee": "06088"}, "geometry": {"type": "Point", "coordinates": [7.23752896461, 43.7122279855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b6302899fc71c936d2bc0496a7e4d26b799948c", "fields": {"nom_de_la_commune": "NICE", "libell_d_acheminement": "NICE", "code_postal": "06200", "coordonnees_gps": [43.7122279855, 7.23752896461], "code_commune_insee": "06088"}, "geometry": {"type": "Point", "coordinates": [7.23752896461, 43.7122279855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2701b66e1752a5bdc4ad0a840bc359b097a16a23", "fields": {"nom_de_la_commune": "ST VINCENT DE BARRES", "libell_d_acheminement": "ST VINCENT DE BARRES", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07302"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b13e5cc0b30f4410d86d293b70782b2e93b3306", "fields": {"nom_de_la_commune": "ST ROMAIN D AY", "libell_d_acheminement": "ST ROMAIN D AY", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07292"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a77f9a9445a12fbd8326867969e6ddd2b7163662", "fields": {"nom_de_la_commune": "LES SALELLES", "libell_d_acheminement": "LES SALELLES", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07305"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb8289c45293c44b0c313e53bc5c59e1a7ffe649", "fields": {"nom_de_la_commune": "ST VICTOR", "libell_d_acheminement": "ST VICTOR", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07301"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90a2a3c00859d06e041dbf26a066931eba9b926", "fields": {"nom_de_la_commune": "SATILLIEU", "libell_d_acheminement": "SATILLIEU", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07309"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de09c5425b43f2d81376874914d0fa82a9a190f2", "fields": {"nom_de_la_commune": "SANILHAC", "libell_d_acheminement": "SANILHAC", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07307"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9254f6662bddc8f0e5f86b0bc2b09a20695aec80", "fields": {"nom_de_la_commune": "SALAVAS", "libell_d_acheminement": "SALAVAS", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07304"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd53ba14d8c724461f983a58794414b20301bdd", "fields": {"nom_de_la_commune": "SARRAS", "libell_d_acheminement": "SARRAS", "code_postal": "07370", "coordonnees_gps": [45.1661019066, 4.77535280586], "code_commune_insee": "07308"}, "geometry": {"type": "Point", "coordinates": [4.77535280586, 45.1661019066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42b611767272675ecc763d9853125863c7385183", "fields": {"code_postal": "06450", "code_commune_insee": "06127", "libell_d_acheminement": "ST MARTIN VESUBIE", "ligne_5": "LE BOREON", "nom_de_la_commune": "ST MARTIN VESUBIE", "coordonnees_gps": [44.0250774334, 7.30840268234]}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abfca1f09817f4d7ea6e7ae98a773a8bdfb4bffc", "fields": {"nom_de_la_commune": "TOURRETTES SUR LOUP", "libell_d_acheminement": "TOURRETTES SUR LOUP", "code_postal": "06140", "coordonnees_gps": [43.7526765774, 7.06029224738], "code_commune_insee": "06148"}, "geometry": {"type": "Point", "coordinates": [7.06029224738, 43.7526765774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f0fe8119ecff520c6221ce5bddc606de4960c9c", "fields": {"nom_de_la_commune": "LA ROQUETTE SUR VAR", "libell_d_acheminement": "LA ROQUETTE SUR VAR", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06109"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e872f40eb4f3a41cb4e73129e898eaa022a1c73", "fields": {"nom_de_la_commune": "ST MARTIN VESUBIE", "libell_d_acheminement": "ST MARTIN VESUBIE", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06127"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452e1dccc48cf0d66f69110ca09a44f6421b8312", "fields": {"nom_de_la_commune": "TOURNEFORT", "libell_d_acheminement": "TOURNEFORT", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06146"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ccc5a4e6e74281bb54311b900e6f7e4c7cb1e23", "fields": {"nom_de_la_commune": "LE TIGNET", "libell_d_acheminement": "LE TIGNET", "code_postal": "06530", "coordonnees_gps": [43.6477554708, 6.83535219439], "code_commune_insee": "06140"}, "geometry": {"type": "Point", "coordinates": [6.83535219439, 43.6477554708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e580e401561eade49ab054f088105e08b30586b", "fields": {"nom_de_la_commune": "LE ROURET", "libell_d_acheminement": "LE ROURET", "code_postal": "06650", "coordonnees_gps": [43.6665802809, 7.00909977966], "code_commune_insee": "06112"}, "geometry": {"type": "Point", "coordinates": [7.00909977966, 43.6665802809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ea3d785a2a34728eb88f3221f233391fcc50338", "fields": {"nom_de_la_commune": "STE AGNES", "libell_d_acheminement": "STE AGNES", "code_postal": "06500", "coordonnees_gps": [43.8073366872, 7.47793852475], "code_commune_insee": "06113"}, "geometry": {"type": "Point", "coordinates": [7.47793852475, 43.8073366872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "587583559b2df1945429628597bf79955d8d8635", "fields": {"nom_de_la_commune": "SOSPEL", "libell_d_acheminement": "SOSPEL", "code_postal": "06380", "coordonnees_gps": [43.9117756236, 7.43417997432], "code_commune_insee": "06136"}, "geometry": {"type": "Point", "coordinates": [7.43417997432, 43.9117756236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f309b284f670ac1b990a2dd949eb1a005f473af0", "fields": {"nom_de_la_commune": "UTELLE", "libell_d_acheminement": "UTELLE", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06151"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360a5c3cb79e155b48951bb14b55351c5fbdd34d", "fields": {"code_postal": "06190", "code_commune_insee": "06104", "libell_d_acheminement": "ROQUEBRUNE CAP MARTIN", "ligne_5": "CARNOLES", "nom_de_la_commune": "ROQUEBRUNE CAP MARTIN", "coordonnees_gps": [43.7639198433, 7.4582621298]}, "geometry": {"type": "Point", "coordinates": [7.4582621298, 43.7639198433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d973bdd59c191fde1bf2558062fccfb2d606a7", "fields": {"code_postal": "06200", "code_commune_insee": "06088", "libell_d_acheminement": "NICE", "ligne_5": "ST ISIDORE", "nom_de_la_commune": "NICE", "coordonnees_gps": [43.7122279855, 7.23752896461]}, "geometry": {"type": "Point", "coordinates": [7.23752896461, 43.7122279855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a35ce88e43bd9a91301a776726fe1ebf233683", "fields": {"nom_de_la_commune": "PUGET THENIERS", "libell_d_acheminement": "PUGET THENIERS", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06099"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c5d4436c6a75a8f0c12eafa9c0d08bbde87e1d8", "fields": {"nom_de_la_commune": "PUGET ROSTANG", "libell_d_acheminement": "PUGET ROSTANG", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06098"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22359186f8bd9f2495fea8447cdfe63a0f366a14", "fields": {"nom_de_la_commune": "PIERREFEU", "libell_d_acheminement": "PIERREFEU", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06097"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6f8897c6c9ded97aa4ae0c95605be8f6aacd885", "fields": {"nom_de_la_commune": "LA PENNE", "libell_d_acheminement": "LA PENNE", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06093"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a4c1e64e81b7c3cd1a3ab11c523ab32b0adbeee", "fields": {"nom_de_la_commune": "PEGOMAS", "libell_d_acheminement": "PEGOMAS", "code_postal": "06580", "coordonnees_gps": [43.5873886905, 6.92180421319], "code_commune_insee": "06090"}, "geometry": {"type": "Point", "coordinates": [6.92180421319, 43.5873886905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e83584262d8834320251c9ff45236154c6965dd", "fields": {"nom_de_la_commune": "PEILLON", "libell_d_acheminement": "PEILLON", "code_postal": "06440", "coordonnees_gps": [43.849932937, 7.37396481834], "code_commune_insee": "06092"}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e3d8a1beba59d5c12bb7989dd17bb810b9d47c", "fields": {"nom_de_la_commune": "PEONE", "libell_d_acheminement": "PEONE", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06094"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a2f8b9207ceee53f071c617d9f354bb05950664", "fields": {"nom_de_la_commune": "NICE", "libell_d_acheminement": "NICE", "code_postal": "06300", "coordonnees_gps": [43.7122279855, 7.23752896461], "code_commune_insee": "06088"}, "geometry": {"type": "Point", "coordinates": [7.23752896461, 43.7122279855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b5ef382ba9617a046c2dec7731f0153caa7693", "fields": {"nom_de_la_commune": "ANTRAIGUES SUR VOLANE", "libell_d_acheminement": "ANTRAIGUES SUR VOLANE", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07011"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5caa7e34a376eef9bbe5528efe547179a6ebaee0", "fields": {"nom_de_la_commune": "VILLEFRANCHE SUR MER", "libell_d_acheminement": "VILLEFRANCHE SUR MER", "code_postal": "06230", "coordonnees_gps": [43.7028977501, 7.3242506305], "code_commune_insee": "06159"}, "geometry": {"type": "Point", "coordinates": [7.3242506305, 43.7028977501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a04b637735a29b6c8473cd92502fb3978b48669", "fields": {"nom_de_la_commune": "VILLENEUVE LOUBET", "libell_d_acheminement": "VILLENEUVE LOUBET", "code_postal": "06270", "coordonnees_gps": [43.6494918567, 7.10639852456], "code_commune_insee": "06161"}, "geometry": {"type": "Point", "coordinates": [7.10639852456, 43.6494918567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee376ac06b44175d65e1fb622340c578fd7efb6", "fields": {"nom_de_la_commune": "ARLEBOSC", "libell_d_acheminement": "ARLEBOSC", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07014"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c27cbad2bc8f4fa649f8f9a1ed7699e2dabe4c0", "fields": {"nom_de_la_commune": "VENANSON", "libell_d_acheminement": "VENANSON", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06156"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9afcc242ba3c00478525ea1fd4b69a6d43e78fc8", "fields": {"nom_de_la_commune": "ARDOIX", "libell_d_acheminement": "ARDOIX", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07013"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb25e310a8bb2049ec173504aac92a75c3fec7a", "fields": {"nom_de_la_commune": "AJOUX", "libell_d_acheminement": "AJOUX", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07004"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaec3f3b210c451b1664f8f274f674c350e6f9f8", "fields": {"nom_de_la_commune": "AIZAC", "libell_d_acheminement": "AIZAC", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07003"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adeeee2e30112e58769c23b6fe23e81f93b078d1", "fields": {"nom_de_la_commune": "BANNE", "libell_d_acheminement": "BANNE", "code_postal": "07460", "coordonnees_gps": [44.343480855, 4.20658690309], "code_commune_insee": "07024"}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d61f00e9a82f9143897fc10e57918a1409bcd6f1", "fields": {"nom_de_la_commune": "BAIX", "libell_d_acheminement": "BAIX", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07022"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bb814a168b059b3ac3bae07e519c62c23a4f7ac", "fields": {"nom_de_la_commune": "VALS LES BAINS", "libell_d_acheminement": "VALS LES BAINS", "code_postal": "07600", "coordonnees_gps": [44.7013043374, 4.34237550127], "code_commune_insee": "07331"}, "geometry": {"type": "Point", "coordinates": [4.34237550127, 44.7013043374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ce867580bbe583cad446734c2411e6ff14eb751", "fields": {"nom_de_la_commune": "TALENCIEUX", "libell_d_acheminement": "TALENCIEUX", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07317"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06bf770969bedda77bd8912c075eb569273f7c42", "fields": {"nom_de_la_commune": "LA SOUCHE", "libell_d_acheminement": "LA SOUCHE", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07315"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de189246fafee6e455b35bf7f33d27ce40957ded", "fields": {"nom_de_la_commune": "SCEAUTRES", "libell_d_acheminement": "SCEAUTRES", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07311"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d786ab9d65b51bc9bc779e334b97978c8f751e", "fields": {"nom_de_la_commune": "LES VANS", "libell_d_acheminement": "LES VANS", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07334"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e7023785089137a2fa6ce1410b453c0b97e310", "fields": {"nom_de_la_commune": "TAURIERS", "libell_d_acheminement": "TAURIERS", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07318"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1313a976bb50cb9b064f973cc86674edc806424", "fields": {"nom_de_la_commune": "TOULAUD", "libell_d_acheminement": "TOULAUD", "code_postal": "07130", "coordonnees_gps": [44.9316322296, 4.81226403261], "code_commune_insee": "07323"}, "geometry": {"type": "Point", "coordinates": [4.81226403261, 44.9316322296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a97b7d5a1f10eadb906112648826cf709abc51f1", "fields": {"nom_de_la_commune": "COLOMBIER LE CARDINAL", "libell_d_acheminement": "COLOMBIER LE CARDINAL", "code_postal": "07430", "coordonnees_gps": [45.2574690023, 4.70801492444], "code_commune_insee": "07067"}, "geometry": {"type": "Point", "coordinates": [4.70801492444, 45.2574690023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abdbae468cac8b6aec54b3608f1aa7d089af7571", "fields": {"nom_de_la_commune": "BERRIAS ET CASTELJAU", "libell_d_acheminement": "BERRIAS ET CASTELJAU", "code_postal": "07460", "coordonnees_gps": [44.343480855, 4.20658690309], "code_commune_insee": "07031"}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6ed3a6b96121e6336eb77c5dac4571546b81762", "fields": {"nom_de_la_commune": "CHARMES SUR RHONE", "libell_d_acheminement": "CHARMES SUR RHONE", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07055"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eea438f1a6ac66255c903e2fa4728a3b404321b4", "fields": {"nom_de_la_commune": "CROS DE GEORAND", "libell_d_acheminement": "CROS DE GEORAND", "code_postal": "07510", "coordonnees_gps": [44.7724320903, 4.10278815831], "code_commune_insee": "07075"}, "geometry": {"type": "Point", "coordinates": [4.10278815831, 44.7724320903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea96356c3b4554d516bd3134ac6b9cc3e2c52fab", "fields": {"nom_de_la_commune": "CELLIER DU LUC", "libell_d_acheminement": "CELLIER DU LUC", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07047"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1c67858906fc2301a4193b1faee9ca0627153b", "fields": {"nom_de_la_commune": "BEAUCHASTEL", "libell_d_acheminement": "BEAUCHASTEL", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07027"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d533958f70503b4cc13ddb06dff5595a3e0318c1", "fields": {"nom_de_la_commune": "COUCOURON", "libell_d_acheminement": "COUCOURON", "code_postal": "07470", "coordonnees_gps": [44.8185344831, 4.01919191039], "code_commune_insee": "07071"}, "geometry": {"type": "Point", "coordinates": [4.01919191039, 44.8185344831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b206c1a563e80ed9319a3e4dfffd637b877806c", "fields": {"nom_de_la_commune": "CHOMERAC", "libell_d_acheminement": "CHOMERAC", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07066"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "593413f4feb2a3f495cfe41e8e066c6f88ad92db", "fields": {"nom_de_la_commune": "BOFFRES", "libell_d_acheminement": "BOFFRES", "code_postal": "07440", "coordonnees_gps": [44.944716427, 4.72650218637], "code_commune_insee": "07035"}, "geometry": {"type": "Point", "coordinates": [4.72650218637, 44.944716427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a6b28835246617d55c54207025ce6d2aeccd2c", "fields": {"nom_de_la_commune": "BORNE", "libell_d_acheminement": "BORNE", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07038"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c0e5fd87c90cf5cdfa1ae5c310ef528cae55dd", "fields": {"nom_de_la_commune": "GILHOC SUR ORMEZE", "libell_d_acheminement": "GILHOC SUR ORMEZE", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07095"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a4b16919b1668254a5294da29098409698c8e4a", "fields": {"nom_de_la_commune": "ECLASSAN", "libell_d_acheminement": "ECLASSAN", "code_postal": "07370", "coordonnees_gps": [45.1661019066, 4.77535280586], "code_commune_insee": "07084"}, "geometry": {"type": "Point", "coordinates": [4.77535280586, 45.1661019066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba2012b75bce550689cf39d02930f9af8912588", "fields": {"nom_de_la_commune": "ISSANLAS", "libell_d_acheminement": "ISSANLAS", "code_postal": "07510", "coordonnees_gps": [44.7724320903, 4.10278815831], "code_commune_insee": "07105"}, "geometry": {"type": "Point", "coordinates": [4.10278815831, 44.7724320903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a540fdb3186a9df16b436392a042e5daf82558a8", "fields": {"nom_de_la_commune": "ISSARLES", "libell_d_acheminement": "ISSARLES", "code_postal": "07470", "coordonnees_gps": [44.8185344831, 4.01919191039], "code_commune_insee": "07106"}, "geometry": {"type": "Point", "coordinates": [4.01919191039, 44.8185344831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12c9026a3459887db4e55a4615eafbf37053e9fe", "fields": {"nom_de_la_commune": "DOMPNAC", "libell_d_acheminement": "DOMPNAC", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07081"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c1b6c227f0ee6f3957aaafec0086e817af9943a", "fields": {"nom_de_la_commune": "FELINES", "libell_d_acheminement": "FELINES", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07089"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0299b0c8b8e927bbf29c57c8c5979dd1867fca4a", "fields": {"nom_de_la_commune": "ETABLES", "libell_d_acheminement": "ETABLES", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07086"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc9c6776d7f75c129906220db96834c27b923c5a", "fields": {"nom_de_la_commune": "DORNAS", "libell_d_acheminement": "DORNAS", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07082"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0970d554a9e60e10a5b50fc238ceb1d52cb3c5fe", "fields": {"nom_de_la_commune": "FONS", "libell_d_acheminement": "FONS", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07091"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e822dbfea16b994dd6e1e0b4436abf03d49c4f", "fields": {"nom_de_la_commune": "GRAS", "libell_d_acheminement": "GRAS", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07099"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cda3accbdae8df449cc31fb81c847b56679b442", "fields": {"code_postal": "07140", "code_commune_insee": "07334", "libell_d_acheminement": "LES VANS", "ligne_5": "BRAHIC", "nom_de_la_commune": "LES VANS", "coordonnees_gps": [44.4499905153, 4.07415395181]}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b6fbbdbdb34b94df939afb7a3fc472f8cabfed1", "fields": {"nom_de_la_commune": "VERNOSC LES ANNONAY", "libell_d_acheminement": "VERNOSC LES ANNONAY", "code_postal": "07430", "coordonnees_gps": [45.2574690023, 4.70801492444], "code_commune_insee": "07337"}, "geometry": {"type": "Point", "coordinates": [4.70801492444, 45.2574690023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6283c8a7a4e0c97ddea44b65c2fa22b754d8a676", "fields": {"nom_de_la_commune": "AMBLY FLEURY", "libell_d_acheminement": "AMBLY FLEURY", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08010"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6823e69508b1af13d9b1fe9f5c4ab1e04beb6f6", "fields": {"nom_de_la_commune": "ANCHAMPS", "libell_d_acheminement": "ANCHAMPS", "code_postal": "08500", "coordonnees_gps": [49.9165828539, 4.66313545428], "code_commune_insee": "08011"}, "geometry": {"type": "Point", "coordinates": [4.66313545428, 49.9165828539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ee0d724a97e2f2181b6e97d2e55501f68e55e93", "fields": {"nom_de_la_commune": "VOCANCE", "libell_d_acheminement": "VOCANCE", "code_postal": "07690", "coordonnees_gps": [45.1829664492, 4.50688842941], "code_commune_insee": "07347"}, "geometry": {"type": "Point", "coordinates": [4.50688842941, 45.1829664492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "115f01fa33b7b94fb83ace8f7de2c8f037fc626c", "fields": {"nom_de_la_commune": "VEYRAS", "libell_d_acheminement": "VEYRAS", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07340"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e254565c6b6cc0da31c899d2d7f016599bf9450e", "fields": {"nom_de_la_commune": "VERNON", "libell_d_acheminement": "VERNON", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07336"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a266e68b9ec6fcbb0e9c3d2c3faa68e0f6a430ec", "fields": {"nom_de_la_commune": "AIRE", "libell_d_acheminement": "AIRE", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08004"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "590a6ecc137acf54d90a71644805c7f811803f9d", "fields": {"nom_de_la_commune": "LES OLLIERES SUR EYRIEUX", "libell_d_acheminement": "LES OLLIERES SUR EYRIEUX", "code_postal": "07360", "coordonnees_gps": [44.8234366694, 4.65142319942], "code_commune_insee": "07167"}, "geometry": {"type": "Point", "coordinates": [4.65142319942, 44.8234366694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a20da845cb9805a7cb6c98d4bedef74652cfe7b6", "fields": {"nom_de_la_commune": "MALARCE SUR LA THINES", "libell_d_acheminement": "MALARCE SUR LA THINES", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07147"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95c9f265243983f2063dcf13c55bb8502832c45c", "fields": {"nom_de_la_commune": "MONTSELGUES", "libell_d_acheminement": "MONTSELGUES", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07163"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c1ff59b7f2204df2c5ffad9bd016fda7b01bd12", "fields": {"nom_de_la_commune": "PLANZOLLES", "libell_d_acheminement": "PLANZOLLES", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07176"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5aff64fa8deecdaaf7156cc81ee9787706e14f8", "fields": {"nom_de_la_commune": "NOZIERES", "libell_d_acheminement": "NOZIERES", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07166"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0406d861e118d24ec89495e44dde2b13d0f4a35f", "fields": {"nom_de_la_commune": "MALBOSC", "libell_d_acheminement": "MALBOSC", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07148"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "834678d43cdd6179a884bf2373c66afdea93a61c", "fields": {"nom_de_la_commune": "MAYRES", "libell_d_acheminement": "MAYRES", "code_postal": "07330", "coordonnees_gps": [44.6740067901, 4.11215645978], "code_commune_insee": "07153"}, "geometry": {"type": "Point", "coordinates": [4.11215645978, 44.6740067901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd76e1a4966f815e0737733d193b6571e207b4c2", "fields": {"nom_de_la_commune": "LUSSAS", "libell_d_acheminement": "LUSSAS", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07145"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f308d2f3b0a630d418454ec94b0f6dd1911958b5", "fields": {"nom_de_la_commune": "LYAS", "libell_d_acheminement": "LYAS", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07146"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b8dc5d2d2c1e3a76cd11d4407f3151bdce1229d", "fields": {"nom_de_la_commune": "OZON", "libell_d_acheminement": "OZON", "code_postal": "07370", "coordonnees_gps": [45.1661019066, 4.77535280586], "code_commune_insee": "07169"}, "geometry": {"type": "Point", "coordinates": [4.77535280586, 45.1661019066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c143f41f21b9766cb7335a26fdcf26e2d1b7a0b", "fields": {"nom_de_la_commune": "LACHAPELLE SOUS CHANEAC", "libell_d_acheminement": "LACHAPELLE SOUS CHANEAC", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07123"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd3ab58f9a9910edbff869e4deea531901087025", "fields": {"nom_de_la_commune": "LAVILLEDIEU", "libell_d_acheminement": "LAVILLEDIEU", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07138"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be35e732f0306352fc1f03f2c441240e27625b3", "fields": {"nom_de_la_commune": "LAVILLATTE", "libell_d_acheminement": "LAVILLATTE", "code_postal": "07660", "coordonnees_gps": [44.7442437904, 3.96612267171], "code_commune_insee": "07137"}, "geometry": {"type": "Point", "coordinates": [3.96612267171, 44.7442437904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8586e7e9970a4a9b607f66c3ab9729f968e5e4ba", "fields": {"nom_de_la_commune": "NEBOUZAT", "libell_d_acheminement": "NEBOUZAT", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63248"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ed76261bb25bb7798c8caf8bcc9757e83c1cf9", "fields": {"nom_de_la_commune": "NERONDE SUR DORE", "libell_d_acheminement": "NERONDE SUR DORE", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63249"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "258c19c4c2beedc0a30f30e069546ed483618baf", "fields": {"nom_de_la_commune": "NESCHERS", "libell_d_acheminement": "NESCHERS", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63250"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0523ae9b15c950f99ea0f968e08761522f0741a2", "fields": {"nom_de_la_commune": "NOVACELLES", "libell_d_acheminement": "NOVACELLES", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63256"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d5dbc85968a3650a11042f966bc69f1e5e7a7af", "fields": {"nom_de_la_commune": "ORCET", "libell_d_acheminement": "ORCET", "code_postal": "63670", "coordonnees_gps": [45.7124444692, 3.15893935126], "code_commune_insee": "63262"}, "geometry": {"type": "Point", "coordinates": [3.15893935126, 45.7124444692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4ad7f56bcb233cf05045d50ee3b98891a2c713", "fields": {"nom_de_la_commune": "ORCIVAL", "libell_d_acheminement": "ORCIVAL", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63264"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7df916209895f9d22e36ade7afed3a3df9b16620", "fields": {"nom_de_la_commune": "PLAUZAT", "libell_d_acheminement": "PLAUZAT", "code_postal": "63730", "coordonnees_gps": [45.6563565096, 3.18143690291], "code_commune_insee": "63282"}, "geometry": {"type": "Point", "coordinates": [3.18143690291, 45.6563565096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0bc01f26c82a16acfb48af929f737b7edb0adb1", "fields": {"nom_de_la_commune": "PONT DU CHATEAU", "libell_d_acheminement": "PONT DU CHATEAU", "code_postal": "63430", "coordonnees_gps": [45.8112884273, 3.24859330717], "code_commune_insee": "63284"}, "geometry": {"type": "Point", "coordinates": [3.24859330717, 45.8112884273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9cb70cc4f45599272b994a8c1f3e1b5beb2c6cb", "fields": {"nom_de_la_commune": "PROMPSAT", "libell_d_acheminement": "PROMPSAT", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63288"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e42eb2140f7848b1e6daa0ecde85f311eb9e345", "fields": {"nom_de_la_commune": "PUY ST GULMIER", "libell_d_acheminement": "PUY ST GULMIER", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63292"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305e55463493375c296247407c8bee4add083308", "fields": {"nom_de_la_commune": "LE QUARTIER", "libell_d_acheminement": "LE QUARTIER", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63293"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c73a9f571d4e18d90332daab4de811c73cca55", "fields": {"nom_de_la_commune": "RANDAN", "libell_d_acheminement": "RANDAN", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63295"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e70e0315c6163e9f32037e29b40475aa73755bc9", "fields": {"nom_de_la_commune": "RENTIERES", "libell_d_acheminement": "RENTIERES", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63299"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "709b003eb026f0b994cedcb0319a7fb2febe992b", "fields": {"nom_de_la_commune": "RIOM", "libell_d_acheminement": "RIOM", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63300"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49867757f74b2c8f0a577e004aa245d493602501", "fields": {"code_postal": "63420", "code_commune_insee": "63303", "libell_d_acheminement": "ROCHE CHARLES LA MAYRAND", "ligne_5": "LA MAYRAND", "nom_de_la_commune": "ROCHE CHARLES LA MAYRAND", "coordonnees_gps": [45.3815607414, 3.05063750475]}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8aa843bf4075c7be63b6dfc1417741d6d6538f3", "fields": {"nom_de_la_commune": "ROCHE D AGOUX", "libell_d_acheminement": "ROCHE D AGOUX", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63304"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1f98848e9efcb52b8010ee9a5811d210ee34224", "fields": {"nom_de_la_commune": "LA ROCHE NOIRE", "libell_d_acheminement": "LA ROCHE NOIRE", "code_postal": "63800", "coordonnees_gps": [45.7314255981, 3.21711000607], "code_commune_insee": "63306"}, "geometry": {"type": "Point", "coordinates": [3.21711000607, 45.7314255981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6caaa72f417ef28143f5af59957282df139b0341", "fields": {"nom_de_la_commune": "ST ALYRE ES MONTAGNE", "libell_d_acheminement": "ST ALYRE ES MONTAGNE", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63313"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b1dec2691595f45fbd93797619d5c6f2f07f3a", "fields": {"nom_de_la_commune": "ST AMANT TALLENDE", "libell_d_acheminement": "ST AMANT TALLENDE", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63315"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5fc102e867d0161ca0e6f9e633283aa09bffd67", "fields": {"nom_de_la_commune": "ST ANDRE LE COQ", "libell_d_acheminement": "ST ANDRE LE COQ", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63317"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1dd3e8156304de07e8bf9fa7fe0186afee02092", "fields": {"nom_de_la_commune": "ST ANGEL", "libell_d_acheminement": "ST ANGEL", "code_postal": "63410", "coordonnees_gps": [45.9529948229, 2.96821882159], "code_commune_insee": "63318"}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eca4564ff3241f28e157bfd2ef1760d2f7cc0fd", "fields": {"nom_de_la_commune": "ST BEAUZIRE", "libell_d_acheminement": "ST BEAUZIRE", "code_postal": "63360", "coordonnees_gps": [45.840831165, 3.18231829254], "code_commune_insee": "63322"}, "geometry": {"type": "Point", "coordinates": [3.18231829254, 45.840831165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "976e321460a1d3d118fd0dbd7f0e4863efd80062", "fields": {"nom_de_la_commune": "ST BONNET LE BOURG", "libell_d_acheminement": "ST BONNET LE BOURG", "code_postal": "63630", "coordonnees_gps": [45.4483235592, 3.57454227406], "code_commune_insee": "63323"}, "geometry": {"type": "Point", "coordinates": [3.57454227406, 45.4483235592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e616310d2442a608b279ce466c2c3931e25dcce5", "fields": {"code_postal": "63122", "code_commune_insee": "63345", "libell_d_acheminement": "ST GENES CHAMPANELLE", "ligne_5": "FONT FREYDE", "nom_de_la_commune": "ST GENES CHAMPANELLE", "coordonnees_gps": [45.7250562511, 3.00944108289]}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36509e1e239eb6efe20aa4159c4e8aebd9606070", "fields": {"code_postal": "63122", "code_commune_insee": "63345", "libell_d_acheminement": "ST GENES CHAMPANELLE", "ligne_5": "MANSON", "nom_de_la_commune": "ST GENES CHAMPANELLE", "coordonnees_gps": [45.7250562511, 3.00944108289]}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2fff85de425bb49d6539b815c6fbbfd9c76fc8", "fields": {"nom_de_la_commune": "ST HILAIRE LA CROIX", "libell_d_acheminement": "ST HILAIRE LA CROIX", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63358"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e55f53f3637340f634ba826ac3fad46a83d469fc", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE PRES PIONSAT", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63360"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0faee5d18a3bc9bad19bd63aa2dac893511b8322", "fields": {"nom_de_la_commune": "ST MARTIN DES PLAINS", "libell_d_acheminement": "ST MARTIN DES PLAINS", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63375"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "377f7490d1f8a0ad840f48ce96b72079b3e0f87e", "fields": {"nom_de_la_commune": "ST PRIEST DES CHAMPS", "libell_d_acheminement": "ST PRIEST DES CHAMPS", "code_postal": "63640", "coordonnees_gps": [45.9806226406, 2.69554487333], "code_commune_insee": "63388"}, "geometry": {"type": "Point", "coordinates": [2.69554487333, 45.9806226406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a14038912e02e8e6c85c70d737752c63fa71fe0f", "fields": {"nom_de_la_commune": "ST QUENTIN SUR SAUXILLANGES", "libell_d_acheminement": "ST QUENTIN SUR SAUXILLANGES", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63389"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26bc23846614b6876a0893f05c6724cdfc4fa900", "fields": {"nom_de_la_commune": "ST SAUVES D AUVERGNE", "libell_d_acheminement": "ST SAUVES D AUVERGNE", "code_postal": "63950", "coordonnees_gps": [45.6113880886, 2.69282383691], "code_commune_insee": "63397"}, "geometry": {"type": "Point", "coordinates": [2.69282383691, 45.6113880886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6252aefcd3c1aca230b6fc03411e06cf79fa5e48", "fields": {"nom_de_la_commune": "ST SYLVESTRE PRAGOULIN", "libell_d_acheminement": "ST SYLVESTRE PRAGOULIN", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63400"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ce69cebafe75e937010475dbb968a64d5e5c3c", "fields": {"nom_de_la_commune": "ST VICTOR LA RIVIERE", "libell_d_acheminement": "ST VICTOR LA RIVIERE", "code_postal": "63790", "coordonnees_gps": [45.562829077, 2.89483440684], "code_commune_insee": "63401"}, "geometry": {"type": "Point", "coordinates": [2.89483440684, 45.562829077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b00569b2c1de6ee84f1009fd825c7c4c518b3d0", "fields": {"nom_de_la_commune": "SAUVAGNAT", "libell_d_acheminement": "SAUVAGNAT", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63410"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4153a67ff37486f05c57df785b65e361158ede5b", "fields": {"nom_de_la_commune": "SAUVESSANGES", "libell_d_acheminement": "SAUVESSANGES", "code_postal": "63840", "coordonnees_gps": [45.4285937621, 3.88182928163], "code_commune_insee": "63412"}, "geometry": {"type": "Point", "coordinates": [3.88182928163, 45.4285937621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf03b530e1d9a8b1ede97e2962c479e2a678503", "fields": {"nom_de_la_commune": "LA SAUVETAT", "libell_d_acheminement": "LA SAUVETAT", "code_postal": "63730", "coordonnees_gps": [45.6563565096, 3.18143690291], "code_commune_insee": "63413"}, "geometry": {"type": "Point", "coordinates": [3.18143690291, 45.6563565096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27dc842c188186f1991fe555903fdcc67a7c757c", "fields": {"nom_de_la_commune": "TEILHEDE", "libell_d_acheminement": "TEILHEDE", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63427"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdab0cee00cb623178270ab073306dcb90e95b8f", "fields": {"nom_de_la_commune": "TEILHET", "libell_d_acheminement": "TEILHET", "code_postal": "63560", "coordonnees_gps": [46.1157064497, 2.88410173513], "code_commune_insee": "63428"}, "geometry": {"type": "Point", "coordinates": [2.88410173513, 46.1157064497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b0940fc67637fbcf794fdb5de05486fe526fa30", "fields": {"nom_de_la_commune": "THIOLIERES", "libell_d_acheminement": "THIOLIERES", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63431"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b077cc130016a61e3112212b7886a6441c459e", "fields": {"nom_de_la_commune": "VALCIVIERES", "libell_d_acheminement": "VALCIVIERES", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63441"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2d57ac42159de4ca107de004d96313e1b7b4a8", "fields": {"nom_de_la_commune": "VARENNES SUR USSON", "libell_d_acheminement": "VARENNES SUR USSON", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63444"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b37578a8b95d51d84901b1b7d2750a583f5e7569", "fields": {"nom_de_la_commune": "LE VERNET STE MARGUERITE", "libell_d_acheminement": "LE VERNET STE MARGUERITE", "code_postal": "63710", "coordonnees_gps": [45.6024911149, 2.9728034479], "code_commune_insee": "63449"}, "geometry": {"type": "Point", "coordinates": [2.9728034479, 45.6024911149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be71acf5f69f84fdcad740b7fd88215b61b5af1a", "fields": {"nom_de_la_commune": "VERTAIZON", "libell_d_acheminement": "VERTAIZON", "code_postal": "63910", "coordonnees_gps": [45.7740957976, 3.29534868018], "code_commune_insee": "63453"}, "geometry": {"type": "Point", "coordinates": [3.29534868018, 45.7740957976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f481432dc844747a3191dd102d378ebc981829e6", "fields": {"nom_de_la_commune": "VINZELLES", "libell_d_acheminement": "VINZELLES", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63461"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a29861bad46561e3b5dfdb28219d6fb3b9aa2c", "fields": {"nom_de_la_commune": "VITRAC", "libell_d_acheminement": "VITRAC", "code_postal": "63410", "coordonnees_gps": [45.9529948229, 2.96821882159], "code_commune_insee": "63464"}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea24792d3f578f784ec560ee4e251e194fda0b8", "fields": {"nom_de_la_commune": "VODABLE", "libell_d_acheminement": "VODABLE", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63466"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a934b87c3ae4690474b9ac2209af9a188da48cd", "fields": {"nom_de_la_commune": "AINCILLE", "libell_d_acheminement": "AINCILLE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64011"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fde9ee02b36544eae96651e3e83e46a122b4e50", "fields": {"nom_de_la_commune": "ALCAY ALCABEHETY SUNHARETTE", "libell_d_acheminement": "ALCAY ALCABEHETY SUNHARETTE", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64015"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df4fcf8dc318f40eb40c76951bac831a9c473253", "fields": {"nom_de_la_commune": "AMOROTS SUCCOS", "libell_d_acheminement": "AMOROTS SUCCOS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64019"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ab012f5645c8d1095b0fa6bd2af87c192975a16", "fields": {"nom_de_la_commune": "ANOYE", "libell_d_acheminement": "ANOYE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64028"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa96857c2f6048748dc5a5ddc9d05d05e210a543", "fields": {"nom_de_la_commune": "ARAUJUZON", "libell_d_acheminement": "ARAUJUZON", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64032"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af36c7b962960a472df20eea78657966a6dff425", "fields": {"nom_de_la_commune": "ARBOUET SUSSAUTE", "libell_d_acheminement": "ARBOUET SUSSAUTE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64036"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e606873a21b7a9178c8714943821749314240c7a", "fields": {"nom_de_la_commune": "ARGET", "libell_d_acheminement": "ARGET", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64044"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965a0e2940336d6cca6acdfb59b1a1c4383642a4", "fields": {"nom_de_la_commune": "ARHANSUS", "libell_d_acheminement": "ARHANSUS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64045"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c77ec73341812294a1ab69059c1ce9d8237577a1", "fields": {"nom_de_la_commune": "AROUE ITHOROTS OLHAIBY", "libell_d_acheminement": "AROUE ITHOROTS OLHAIBY", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64049"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f16b82c4d3fca2f357d94632acf0bf565e38d5ec", "fields": {"nom_de_la_commune": "ARRAST LARREBIEU", "libell_d_acheminement": "ARRAST LARREBIEU", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64050"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe64d6744ce5bc3ab37259862c2a443716222f61", "fields": {"nom_de_la_commune": "ASCAIN", "libell_d_acheminement": "ASCAIN", "code_postal": "64310", "coordonnees_gps": [43.3310114321, -1.57798494011], "code_commune_insee": "64065"}, "geometry": {"type": "Point", "coordinates": [-1.57798494011, 43.3310114321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "217c4f52fe2837a5f6399bf9b619285a88efd9e1", "fields": {"nom_de_la_commune": "AUBERTIN", "libell_d_acheminement": "AUBERTIN", "code_postal": "64290", "coordonnees_gps": [43.2158139133, -0.441474336827], "code_commune_insee": "64072"}, "geometry": {"type": "Point", "coordinates": [-0.441474336827, 43.2158139133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942dc630bb3fcef332eed42450e8f1f91aca4021", "fields": {"nom_de_la_commune": "AUSSEVIELLE", "libell_d_acheminement": "AUSSEVIELLE", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64080"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99092f0ff57971a53f1b9e95aa1d6c8e5768f5eb", "fields": {"nom_de_la_commune": "BAIGTS DE BEARN", "libell_d_acheminement": "BAIGTS DE BEARN", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64087"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af5d1cf6407fdcb34c195ec6a456d88d0c1e14c1", "fields": {"nom_de_la_commune": "BARCUS", "libell_d_acheminement": "BARCUS", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64093"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a7896967cf79a6cb87de2b421c5fb866ffbc25a", "fields": {"nom_de_la_commune": "BEDEILLE", "libell_d_acheminement": "BEDEILLE", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64103"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dbda464b468f6b25ae48951646a999ae588dbf0", "fields": {"nom_de_la_commune": "BEGUIOS", "libell_d_acheminement": "BEGUIOS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64105"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d412abbba3d1ea682e016991c604bd311bda77", "fields": {"nom_de_la_commune": "BENEJACQ", "libell_d_acheminement": "BENEJACQ", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64109"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca75987d8607118e12003abef2f26a02c0312b1", "fields": {"nom_de_la_commune": "BESCAT", "libell_d_acheminement": "BESCAT", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64116"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58785a5f2ecddb3667bacf76d1924db8f8a90bf", "fields": {"nom_de_la_commune": "BIARRITZ", "libell_d_acheminement": "BIARRITZ", "code_postal": "64200", "coordonnees_gps": [43.44355076, -1.52562527873], "code_commune_insee": "64122"}, "geometry": {"type": "Point", "coordinates": [-1.52562527873, 43.44355076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60bf0ac2b4be2783509cf68297df9f62df5cd087", "fields": {"nom_de_la_commune": "BIDOS", "libell_d_acheminement": "BIDOS", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64126"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f61e86b770fcc6420398d4d1f0315e65819a88d5", "fields": {"nom_de_la_commune": "BILHERES", "libell_d_acheminement": "BILHERES", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64128"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6db17bfaf1821c7110dee5b7e7826a6734215341", "fields": {"nom_de_la_commune": "BOUMOURT", "libell_d_acheminement": "BOUMOURT", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64144"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0286e9ba0fd04475e6e13c65c4f5ef6e58252238", "fields": {"nom_de_la_commune": "BOURDETTES", "libell_d_acheminement": "BOURDETTES", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64145"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9af7c284fb9aadfc40a077f2bb679d4158ce7341", "fields": {"nom_de_la_commune": "BRUGES CAPBIS MIFAGET", "libell_d_acheminement": "BRUGES CAPBIS MIFAGET", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64148"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54db276340e83a27d310c0da41b374bed3c0a6b4", "fields": {"nom_de_la_commune": "BUROSSE MENDOUSSE", "libell_d_acheminement": "BUROSSE MENDOUSSE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64153"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "020478525b5b1299965be79097b72a2b22840b46", "fields": {"nom_de_la_commune": "BUSTINCE IRIBERRY", "libell_d_acheminement": "BUSTINCE IRIBERRY", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64155"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1810c955cc655f0c938c218f3457e9486c82a5f1", "fields": {"nom_de_la_commune": "BUZIET", "libell_d_acheminement": "BUZIET", "code_postal": "64680", "coordonnees_gps": [43.154142648, -0.506746806096], "code_commune_insee": "64156"}, "geometry": {"type": "Point", "coordinates": [-0.506746806096, 43.154142648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a20bb01026d7fca2986ada622ab32c82e8e7cb36", "fields": {"nom_de_la_commune": "CASTEIDE DOAT", "libell_d_acheminement": "CASTEIDE DOAT", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64173"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1faa3674cc4094a011a7494360bb53cfb928285", "fields": {"nom_de_la_commune": "CASTETNAU CAMBLONG", "libell_d_acheminement": "CASTETNAU CAMBLONG", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64178"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f576213827d399c416d42c70b64b054b832b42", "fields": {"nom_de_la_commune": "CASTETNER", "libell_d_acheminement": "CASTETNER", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64179"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dda717220639d41f23f19128cf6a1d872fac3fb4", "fields": {"nom_de_la_commune": "CESCAU", "libell_d_acheminement": "CESCAU", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64184"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0292c8278022ebabc55b2f5df5507e78ce07ebf", "fields": {"nom_de_la_commune": "CETTE EYGUN", "libell_d_acheminement": "CETTE EYGUN", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64185"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e972f4710e2c06ac5890e82d72fb73db7274be", "fields": {"nom_de_la_commune": "CONCHEZ DE BEARN", "libell_d_acheminement": "CONCHEZ DE BEARN", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64192"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd46a2666bbab29a0f767d3c7e31a77681646f88", "fields": {"nom_de_la_commune": "CUQUERON", "libell_d_acheminement": "CUQUERON", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64197"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90356bc351a8971db58110eb95187e893be58477", "fields": {"nom_de_la_commune": "ESLOURENTIES DABAN", "libell_d_acheminement": "ESLOURENTIES DABAN", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64211"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c768eecb785d2df03a5bd7440e6cc1bf516b4774", "fields": {"nom_de_la_commune": "ESPELETTE", "libell_d_acheminement": "ESPELETTE", "code_postal": "64250", "coordonnees_gps": [43.3249246789, -1.42953644285], "code_commune_insee": "64213"}, "geometry": {"type": "Point", "coordinates": [-1.42953644285, 43.3249246789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb173405a584c6b9ab4d5bcc5336fbb8fab00552", "fields": {"nom_de_la_commune": "ESTIALESCQ", "libell_d_acheminement": "ESTIALESCQ", "code_postal": "64290", "coordonnees_gps": [43.2158139133, -0.441474336827], "code_commune_insee": "64219"}, "geometry": {"type": "Point", "coordinates": [-0.441474336827, 43.2158139133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d8ebb95bd9030c9e18878177f6ae0ae64410510", "fields": {"nom_de_la_commune": "ETSAUT", "libell_d_acheminement": "ETSAUT", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64223"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3816dc9007738008f2b772a121af2317008a2ce6", "fields": {"nom_de_la_commune": "GAMARTHE", "libell_d_acheminement": "GAMARTHE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64229"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b040ffdd88352c93684ed306088ddea68bdf8047", "fields": {"nom_de_la_commune": "GAYON", "libell_d_acheminement": "GAYON", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64236"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b195cdd3afeef57c308b3e81277ace94041653", "fields": {"nom_de_la_commune": "GOMER", "libell_d_acheminement": "GOMER", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64246"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c1ec86cd8099c9983863877eb12966e185d160", "fields": {"nom_de_la_commune": "IDAUX MENDY", "libell_d_acheminement": "IDAUX MENDY", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64268"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e84f8ff32546fc06c9f9d13a337c1fdc032a21f", "fields": {"nom_de_la_commune": "IHOLDY", "libell_d_acheminement": "IHOLDY", "code_postal": "64640", "coordonnees_gps": [43.2945597226, -1.18265900805], "code_commune_insee": "64271"}, "geometry": {"type": "Point", "coordinates": [-1.18265900805, 43.2945597226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9489430af7e3d1733d3011a9bf55fcf075fb26c7", "fields": {"nom_de_la_commune": "ISPOURE", "libell_d_acheminement": "ISPOURE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64275"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4354d7bcfd670645767b7d40d95e4b5f97d363e3", "fields": {"nom_de_la_commune": "ISTURITS", "libell_d_acheminement": "ISTURITS", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64277"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcbe554f961629b441db0efc6ffa20ac3f9ad7dd", "fields": {"nom_de_la_commune": "IZESTE", "libell_d_acheminement": "IZESTE", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64280"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42b37064a5a65f872673b948a44ecce02216971", "fields": {"nom_de_la_commune": "JASSES", "libell_d_acheminement": "JASSES", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64281"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2a81a666aea7d830db0d73e4c2b8fb119e5e365", "fields": {"nom_de_la_commune": "LAAS", "libell_d_acheminement": "LAAS", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64287"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c092e81337a6144d4a2bbd5c07e78e450977af2c", "fields": {"nom_de_la_commune": "LABASTIDE VILLEFRANCHE", "libell_d_acheminement": "LABASTIDE VILLEFRANCHE", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64291"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52059ea680dbc97ce74c33a8152d73702953c4f", "fields": {"nom_de_la_commune": "LABATMALE", "libell_d_acheminement": "LABATMALE", "code_postal": "64530", "coordonnees_gps": [43.2249813189, -0.0930410318434], "code_commune_insee": "64292"}, "geometry": {"type": "Point", "coordinates": [-0.0930410318434, 43.2249813189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c42c5f4eada265b20ac6ff18f3e84a32aab583c", "fields": {"nom_de_la_commune": "LABATUT", "libell_d_acheminement": "LABATUT", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64293"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b3a30da9b705a45fba034e0bb28df880ef6536", "fields": {"nom_de_la_commune": "LACOMMANDE", "libell_d_acheminement": "LACOMMANDE", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64299"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51fbfcd0b6c918d554312fbbb8653fb133d6414d", "fields": {"code_postal": "64170", "code_commune_insee": "64300", "libell_d_acheminement": "LACQ", "ligne_5": "AUDEJOS", "nom_de_la_commune": "LACQ", "coordonnees_gps": [43.409488442, -0.554817302956]}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcd1db1e4e68bc40fa552579566dcc8d70fcfc1f", "fields": {"nom_de_la_commune": "TIGNAC", "libell_d_acheminement": "TIGNAC", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09311"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f497d2b586f13b796b88e340b041d395c855a09", "fields": {"nom_de_la_commune": "USSAT", "libell_d_acheminement": "USSAT", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09321"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361d11b21c8a7767fe4f5c635ee177485861520b", "fields": {"nom_de_la_commune": "VALS", "libell_d_acheminement": "VALS", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09323"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b475da0e7568d76d8df3ca4eb5d33df149306fb4", "fields": {"nom_de_la_commune": "OSSEY LES TROIS MAISONS", "libell_d_acheminement": "OSSEY LES TROIS MAISONS", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10275"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0499efe51b432410bd1ab3d9e06243ac527d8a45", "fields": {"nom_de_la_commune": "LE PAVILLON STE JULIE", "libell_d_acheminement": "LE PAVILLON STE JULIE", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10281"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5788ad6d33f82f420347b77c2605296e0323f2a6", "fields": {"nom_de_la_commune": "MAROLLES LES BAILLY", "libell_d_acheminement": "MAROLLES LES BAILLY", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10226"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d02549c3ea9710eaa782ebe65807f53251ca19d", "fields": {"nom_de_la_commune": "POUY SUR VANNES", "libell_d_acheminement": "POUY SUR VANNES", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10301"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93664737133bf3c020d5f089b508b4dfc07788c", "fields": {"nom_de_la_commune": "POLIGNY", "libell_d_acheminement": "POLIGNY", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10294"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1f40a7439b2c3840f13d71dfde04510e6305274", "fields": {"nom_de_la_commune": "POLISY", "libell_d_acheminement": "POLISY", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10296"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da4d45a8450ebaa3e23218dc9f3951992d9e7067", "fields": {"nom_de_la_commune": "CHARMONT SOUS BARBUISE", "libell_d_acheminement": "CHARMONT SOUS BARBUISE", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10084"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce88bdbbb9693c3b5c874a6b9e7a8a545cebfc2", "fields": {"nom_de_la_commune": "BRIENNE LE CHATEAU", "libell_d_acheminement": "BRIENNE LE CHATEAU", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10064"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290541214ef8966701bda8008c365a55b3e71ae7", "fields": {"nom_de_la_commune": "CHAMPIGNY SUR AUBE", "libell_d_acheminement": "CHAMPIGNY SUR AUBE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10077"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14be40fa3eb71ae44d6bd73b969ce12215f6c77e", "fields": {"nom_de_la_commune": "BUXIERES SUR ARCE", "libell_d_acheminement": "BUXIERES SUR ARCE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10069"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c990a59f0f015e1a16f6607c42df95906f1330", "fields": {"nom_de_la_commune": "BUCEY EN OTHE", "libell_d_acheminement": "BUCEY EN OTHE", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10066"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5fcbbb6fe6eb91c8ccbfda480644f31a2b96b2", "fields": {"nom_de_la_commune": "BAR SUR SEINE", "libell_d_acheminement": "BAR SUR SEINE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10034"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c861b0dd93b2a4a0454785d84c3df2b1fcf4968", "fields": {"nom_de_la_commune": "BREVIANDES", "libell_d_acheminement": "BREVIANDES", "code_postal": "10450", "coordonnees_gps": [48.256436344, 4.1062065257], "code_commune_insee": "10060"}, "geometry": {"type": "Point", "coordinates": [4.1062065257, 48.256436344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d724f2bf31f47c5ab4ea3f04caa26534d9aece8c", "fields": {"nom_de_la_commune": "BUCHERES", "libell_d_acheminement": "BUCHERES", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10067"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e43c477a0bf4a6f8b0e6c5f290489f3071361c9e", "fields": {"nom_de_la_commune": "BOUILLY", "libell_d_acheminement": "BOUILLY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10051"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb235d335ff08fd57ff5286d0e09619d6dce25c6", "fields": {"nom_de_la_commune": "CHAMOY", "libell_d_acheminement": "CHAMOY", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10074"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c8fbea6b257042c328455a98c443fd43288ef1", "fields": {"nom_de_la_commune": "MAIZIERES LES BRIENNE", "libell_d_acheminement": "MAIZIERES LES BRIENNE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10221"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8442fcf2601e20880205de3a384adb599b74da3", "fields": {"nom_de_la_commune": "MAISONS LES SOULAINES", "libell_d_acheminement": "MAISONS LES SOULAINES", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10219"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edc7dff24fe804b884ada99fa169fe31d36eb505", "fields": {"nom_de_la_commune": "MAISON DES CHAMPS", "libell_d_acheminement": "MAISON DES CHAMPS", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10217"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b60ceb13d83533b706d38e5ffa1c6efd1a823e0", "fields": {"nom_de_la_commune": "LUSIGNY SUR BARSE", "libell_d_acheminement": "LUSIGNY SUR BARSE", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10209"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54df8373373818300258044e2503053d7e4b79b0", "fields": {"nom_de_la_commune": "JULLY SUR SARCE", "libell_d_acheminement": "JULLY SUR SARCE", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10181"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a45941ae8868a84825a9887519f8a6338a29362", "fields": {"nom_de_la_commune": "LONGPRE LE SEC", "libell_d_acheminement": "LONGPRE LE SEC", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10205"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af2db91c54ae4ed2ab097a34adae4b657ffa9f25", "fields": {"nom_de_la_commune": "MAGNICOURT", "libell_d_acheminement": "MAGNICOURT", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10214"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8ce9299653895404a69b70d6c8659d03ffaf48c", "fields": {"nom_de_la_commune": "JESSAINS", "libell_d_acheminement": "JESSAINS", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10178"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f40d7734b001d0fb00af3cd99495547c4a2bf2f", "fields": {"nom_de_la_commune": "LHUITRE", "libell_d_acheminement": "LHUITRE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10195"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ae870477c7ef4b3b8c50903e89385c6303295fd", "fields": {"nom_de_la_commune": "MAGNANT", "libell_d_acheminement": "MAGNANT", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10213"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7e12d998f926bca31be0eb314abc0659d8f560", "fields": {"nom_de_la_commune": "ORVILLIERS ST JULIEN", "libell_d_acheminement": "ORVILLIERS ST JULIEN", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10274"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d79590020f1b645b1c4d0f95c835a85c1cddc31", "fields": {"nom_de_la_commune": "MESNIL LA COMTESSE", "libell_d_acheminement": "MESNIL LA COMTESSE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10235"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2482b9930725ea361863e22566a8b558cdb76f95", "fields": {"nom_de_la_commune": "NOGENT SUR SEINE", "libell_d_acheminement": "NOGENT SUR SEINE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10268"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c20cc53deee0d30dee35d39203d4259318674ee4", "fields": {"nom_de_la_commune": "MUSSY SUR SEINE", "libell_d_acheminement": "MUSSY SUR SEINE", "code_postal": "10250", "coordonnees_gps": [48.0053306806, 4.46269020196], "code_commune_insee": "10261"}, "geometry": {"type": "Point", "coordinates": [4.46269020196, 48.0053306806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "009d010141766e01909208fa73c5b68153e2873d", "fields": {"nom_de_la_commune": "PLANCY L ABBAYE", "libell_d_acheminement": "PLANCY L ABBAYE", "code_postal": "10380", "coordonnees_gps": [48.576907135, 3.98044859766], "code_commune_insee": "10289"}, "geometry": {"type": "Point", "coordinates": [3.98044859766, 48.576907135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "977dd0ede330612c924273fb5a3a76f1f9c150d9", "fields": {"nom_de_la_commune": "PERIGNY LA ROSE", "libell_d_acheminement": "PERIGNY LA ROSE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10284"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a4219e2a533316f1682a596f9539f3b71bf9576", "fields": {"nom_de_la_commune": "MARAYE EN OTHE", "libell_d_acheminement": "MARAYE EN OTHE", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10222"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c3c9f325b9ce7f8e596d9bb4e92501fc488067", "fields": {"nom_de_la_commune": "LA MOTTE TILLY", "libell_d_acheminement": "LA MOTTE TILLY", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10259"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db8efb3592fe07789c2b7b29edc87d031803ae0a", "fields": {"nom_de_la_commune": "MONTAULIN", "libell_d_acheminement": "MONTAULIN", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10245"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39aa13606334d0ea0ffd8fc74d72815c25c473ae", "fields": {"nom_de_la_commune": "LE MERIOT", "libell_d_acheminement": "LE MERIOT", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10231"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceed28bb309dde7363aaaa6a8906d81128a26c8b", "fields": {"nom_de_la_commune": "MAUVEZIN DE STE CROIX", "libell_d_acheminement": "MAUVEZIN DE STE CROIX", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09184"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9792cf74c21ffe90c24a02128f10762ada1d354f", "fields": {"nom_de_la_commune": "MERENS LES VALS", "libell_d_acheminement": "MERENS LES VALS", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09189"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b4890b5eef423ca8c63c9f284bbfbc2cf8d529b", "fields": {"nom_de_la_commune": "LAVELANET", "libell_d_acheminement": "LAVELANET", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09160"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89f10d01363cafc4c5f510845bd9f29078660578", "fields": {"nom_de_la_commune": "LESPARROU", "libell_d_acheminement": "LESPARROU", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09165"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d86f7547aee9db2195670d903028b0fb53a29e2", "fields": {"nom_de_la_commune": "JUSTINIAC", "libell_d_acheminement": "JUSTINIAC", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09146"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf021240394f1b2060e4da4bde44f73a9b4b72e", "fields": {"nom_de_la_commune": "LAGARDE", "libell_d_acheminement": "LAGARDE", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09150"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb71a5426d949931796ad9348fc06d0972d29d5d", "fields": {"nom_de_la_commune": "LOUBAUT", "libell_d_acheminement": "LOUBAUT", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09172"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb4854d57916a0372fc403ddb6c31ef6e7181a8", "fields": {"nom_de_la_commune": "LARBONT", "libell_d_acheminement": "LARBONT", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09154"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3098a01ebde62aca0bd11dad5621fb06a538657", "fields": {"nom_de_la_commune": "L HERM", "libell_d_acheminement": "L HERM", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09138"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ab12504752524fa4d4dac46e97ca1b4f1eba56d", "fields": {"nom_de_la_commune": "LARNAT", "libell_d_acheminement": "LARNAT", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09156"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "363da5cc9de72d9eb08b54f6c1d1574f4721073d", "fields": {"nom_de_la_commune": "ROQUEFORT LES CASCADES", "libell_d_acheminement": "ROQUEFORT LES CASCADES", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09250"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e0e3b1629e24936568afcb976db65db1f1e3ea3", "fields": {"nom_de_la_commune": "PERLES ET CASTELET", "libell_d_acheminement": "PERLES ET CASTELET", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09228"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50da8cd2163916dea9ee08f24c05162a80dc1dac", "fields": {"nom_de_la_commune": "MONTAGAGNE", "libell_d_acheminement": "MONTAGAGNE", "code_postal": "09240", "coordonnees_gps": [43.0066758951, 1.4205570849], "code_commune_insee": "09196"}, "geometry": {"type": "Point", "coordinates": [1.4205570849, 43.0066758951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58871602b0f545ab2cd30d677206ad4ea19c1847", "fields": {"nom_de_la_commune": "PRADIERES", "libell_d_acheminement": "PRADIERES", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09234"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd231930bab92c4b01a1a9468faa7c508186ed9c", "fields": {"nom_de_la_commune": "PEREILLE", "libell_d_acheminement": "PEREILLE", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09227"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0d3849c2e98117fe24443c085059ad6e09411b2", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09199"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db3f28d4202c5dd5392998a78f8882e64fe3f1ee", "fields": {"nom_de_la_commune": "MONTBEL", "libell_d_acheminement": "MONTBEL", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09200"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a247c322c7bf8cb9f219e610344b0fef5271b085", "fields": {"nom_de_la_commune": "NALZEN", "libell_d_acheminement": "NALZEN", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09215"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29ebdab1664c1223fa1dec3797628f29cacbbcb", "fields": {"nom_de_la_commune": "MONTFA", "libell_d_acheminement": "MONTFA", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09205"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f15975090cad7b343a75e70c21fc29009ef8da", "fields": {"nom_de_la_commune": "ORLU", "libell_d_acheminement": "ORLU", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09220"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c903cd8f70e5cce679f75a3e944e39b62be9ffcb", "fields": {"nom_de_la_commune": "ROMILLY SUR SEINE", "libell_d_acheminement": "ROMILLY SUR SEINE", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10323"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a19715a490c245e9b7b89c6d7cd8c616c58186d", "fields": {"nom_de_la_commune": "RIGNY LE FERRON", "libell_d_acheminement": "RIGNY LE FERRON", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10319"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e483e4e39bb854901092c1ff0c3dcc40e2ff24a", "fields": {"nom_de_la_commune": "RAMERUPT", "libell_d_acheminement": "RAMERUPT", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10314"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5fc6ab508d75f4c648854814be1142f3b37a64b", "fields": {"nom_de_la_commune": "PRUSY", "libell_d_acheminement": "PRUSY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10309"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d9f21b897572b592f064afd6da8bca72dec0dbe", "fields": {"nom_de_la_commune": "ST ETIENNE SOUS BARBUISE", "libell_d_acheminement": "ST ETIENNE SOUS BARBUISE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10338"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ceae6a7b464a187ba9176abcb005c832a12c2c2", "fields": {"nom_de_la_commune": "ST JULIEN LES VILLAS", "libell_d_acheminement": "ST JULIEN LES VILLAS", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10343"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca0cb735f31f405c8597cda7d4ccde730280f1d", "fields": {"nom_de_la_commune": "ST JEAN DE BONNEVAL", "libell_d_acheminement": "ST JEAN DE BONNEVAL", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10342"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcd015767c72b8e96160714d7f0dd096eb656b9f", "fields": {"nom_de_la_commune": "ROUVRES LES VIGNES", "libell_d_acheminement": "ROUVRES LES VIGNES", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10330"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23970298e9056813f2913886fa08cae641ee8718", "fields": {"nom_de_la_commune": "RUMILLY LES VAUDES", "libell_d_acheminement": "RUMILLY LES VAUDES", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10331"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c74cb1e0428d768b531d27a0084b6fbe607b08ad", "fields": {"nom_de_la_commune": "LA ROTHIERE", "libell_d_acheminement": "LA ROTHIERE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10327"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "300394c5a430a366b91b60c15f1308359527d37d", "fields": {"nom_de_la_commune": "ST POUANGE", "libell_d_acheminement": "ST POUANGE", "code_postal": "10120", "coordonnees_gps": [48.2420570868, 4.01115012406], "code_commune_insee": "10360"}, "geometry": {"type": "Point", "coordinates": [4.01115012406, 48.2420570868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b63ce54f034d15b6ba9c979ac5a80bd31b79f858", "fields": {"nom_de_la_commune": "ST LUPIEN", "libell_d_acheminement": "ST LUPIEN", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10348"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "580eee43ef398122d3bc556f6b3e06b1319c8fd0", "fields": {"nom_de_la_commune": "ST PHAL", "libell_d_acheminement": "ST PHAL", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10359"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bdf9a08c7555c9748531a88833b07dd3ed755d0", "fields": {"code_postal": "10310", "code_commune_insee": "10426", "libell_d_acheminement": "VILLE SOUS LA FERTE", "ligne_5": "CLAIRVAUX SUR AUBE", "nom_de_la_commune": "VILLE SOUS LA FERTE", "coordonnees_gps": [48.1567685845, 4.79470021531]}, "geometry": {"type": "Point", "coordinates": [4.79470021531, 48.1567685845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e840a3f9ca7084c2be45fcb1b07408f39aede2b", "fields": {"nom_de_la_commune": "VITRY LE CROISE", "libell_d_acheminement": "VITRY LE CROISE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10438"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc3541c6bb8accef0e2d507d78a7e8e7323987d7", "fields": {"nom_de_la_commune": "VILLY LE BOIS", "libell_d_acheminement": "VILLY LE BOIS", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10434"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f1b38b881833f37d0546e28437347767fd035f", "fields": {"nom_de_la_commune": "ALAIGNE", "libell_d_acheminement": "ALAIGNE", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11004"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e56f950d63903cd72bd49715e9ddcc666d3db0d", "fields": {"nom_de_la_commune": "VILLERY", "libell_d_acheminement": "VILLERY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10425"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67ab74c3f5af77326624f309c6300c976a648f77", "fields": {"nom_de_la_commune": "ALZONNE", "libell_d_acheminement": "ALZONNE", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11009"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87b945ffe3b4773a0562454389f77c077762da6e", "fields": {"nom_de_la_commune": "ASSAC", "libell_d_acheminement": "ASSAC", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81019"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda5df7c37f8c50bcfd20ae30dbe81e05ab0df6d", "fields": {"nom_de_la_commune": "AUSSAC", "libell_d_acheminement": "AUSSAC", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81020"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75646598aa63808d9f223ed71efeaec1a9b2008", "fields": {"nom_de_la_commune": "BEAUVAIS SUR TESCOU", "libell_d_acheminement": "BEAUVAIS SUR TESCOU", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81024"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a33ac8e7db4cb7a5d1070bca05a168807621655a", "fields": {"nom_de_la_commune": "BERTRE", "libell_d_acheminement": "BERTRE", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81030"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aec8da7d9035e6068964896458613dbe29ba5e2d", "fields": {"nom_de_la_commune": "BRENS", "libell_d_acheminement": "BRENS", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81038"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7db0241202e16ee83483718a5d999e5be357f36b", "fields": {"nom_de_la_commune": "BROZE", "libell_d_acheminement": "BROZE", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81041"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e30dc6a80066d5091526a065f83262d51283c3", "fields": {"nom_de_la_commune": "CADALEN", "libell_d_acheminement": "CADALEN", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81046"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827a2f9b62c60f8cffdd8c22f377380b1e9a924e", "fields": {"nom_de_la_commune": "CAHUZAC", "libell_d_acheminement": "CAHUZAC", "code_postal": "81540", "coordonnees_gps": [43.443120414, 2.07821163286], "code_commune_insee": "81049"}, "geometry": {"type": "Point", "coordinates": [2.07821163286, 43.443120414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48e987ab6bb9c54a12d695b78a827e8e26606af", "fields": {"nom_de_la_commune": "CARMAUX", "libell_d_acheminement": "CARMAUX", "code_postal": "81400", "coordonnees_gps": [44.0428682167, 2.14865381556], "code_commune_insee": "81060"}, "geometry": {"type": "Point", "coordinates": [2.14865381556, 44.0428682167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3292f14ef7bbb6ac266ccfe925939f8ae3894ad5", "fields": {"nom_de_la_commune": "CASTANET", "libell_d_acheminement": "CASTANET", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81061"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "368c56eb5cf3ecade75f49603cfa15b9cb280bbe", "fields": {"code_postal": "81260", "code_commune_insee": "81062", "libell_d_acheminement": "FONTRIEU", "ligne_5": "LE MARGNES", "nom_de_la_commune": "FONTRIEU", "coordonnees_gps": [43.6113142668, 2.53318559265]}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5939f37b095bbfae5f40ca09c0e3a82a7dad05d5", "fields": {"nom_de_la_commune": "COUFOULEUX", "libell_d_acheminement": "COUFOULEUX", "code_postal": "81800", "coordonnees_gps": [43.8337179111, 1.69697473698], "code_commune_insee": "81070"}, "geometry": {"type": "Point", "coordinates": [1.69697473698, 43.8337179111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a13af855ac68c75cc7b6945d6c7f0b6753eeea7", "fields": {"nom_de_la_commune": "COURRIS", "libell_d_acheminement": "COURRIS", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81071"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d0f4a8203d01d84410d256f7b8feb7bfe3ee9a", "fields": {"nom_de_la_commune": "CRESPIN", "libell_d_acheminement": "CRESPIN", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81072"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "847e6839326b27fd5858050113cf18c2517ae352", "fields": {"nom_de_la_commune": "ESCROUX", "libell_d_acheminement": "ESCROUX", "code_postal": "81530", "coordonnees_gps": [43.7712371341, 2.57768572319], "code_commune_insee": "81085"}, "geometry": {"type": "Point", "coordinates": [2.57768572319, 43.7712371341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d77928882eb60f321ed7cb86f0a6fded93094c", "fields": {"nom_de_la_commune": "FAUSSERGUES", "libell_d_acheminement": "FAUSSERGUES", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81089"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e750907f730241725b336dac43ceb90fe85558cd", "fields": {"nom_de_la_commune": "LE FRAYSSE", "libell_d_acheminement": "LE FRAYSSE", "code_postal": "81430", "coordonnees_gps": [43.9055720904, 2.35289359915], "code_commune_insee": "81096"}, "geometry": {"type": "Point", "coordinates": [2.35289359915, 43.9055720904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814a06d9d88c25719c84ae84be933160aa35bbea", "fields": {"nom_de_la_commune": "GARRIGUES", "libell_d_acheminement": "GARRIGUES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81102"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c21a265185d43b775d2a3dc81af97983bdabe8", "fields": {"nom_de_la_commune": "LABESSIERE CANDEIL", "libell_d_acheminement": "LABESSIERE CANDEIL", "code_postal": "81300", "coordonnees_gps": [43.7690659575, 2.00556233123], "code_commune_insee": "81117"}, "geometry": {"type": "Point", "coordinates": [2.00556233123, 43.7690659575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bbf3a434a02c85e074a74b48a0e0031cc40a744", "fields": {"nom_de_la_commune": "LABOULBENE", "libell_d_acheminement": "LABOULBENE", "code_postal": "81100", "coordonnees_gps": [43.6219968606, 2.25901530016], "code_commune_insee": "81118"}, "geometry": {"type": "Point", "coordinates": [2.25901530016, 43.6219968606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ede9a6c72a22122caadc9cf0f68a722588e31f", "fields": {"nom_de_la_commune": "LACAZE", "libell_d_acheminement": "LACAZE", "code_postal": "81330", "coordonnees_gps": [43.7511670544, 2.45756809311], "code_commune_insee": "81125"}, "geometry": {"type": "Point", "coordinates": [2.45756809311, 43.7511670544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9c9323feabe4cab862d23d107e3c907e114029", "fields": {"nom_de_la_commune": "LACROUZETTE", "libell_d_acheminement": "LACROUZETTE", "code_postal": "81210", "coordonnees_gps": [43.6740454961, 2.30184097262], "code_commune_insee": "81128"}, "geometry": {"type": "Point", "coordinates": [2.30184097262, 43.6740454961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "622b105c3267da8b769072f8ae3c11f003dbbed2", "fields": {"nom_de_la_commune": "VINZELLES", "libell_d_acheminement": "VINZELLES", "code_postal": "71680", "coordonnees_gps": [46.2494951765, 4.78409941334], "code_commune_insee": "71583"}, "geometry": {"type": "Point", "coordinates": [4.78409941334, 46.2494951765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1d745a21c8833d6961ef6a1d63c886348d2368", "fields": {"nom_de_la_commune": "AIGNE", "libell_d_acheminement": "AIGNE", "code_postal": "72650", "coordonnees_gps": [48.0691721456, 0.13653292656], "code_commune_insee": "72001"}, "geometry": {"type": "Point", "coordinates": [0.13653292656, 48.0691721456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845f2619d169cd53b0a1701a8fc4fb8bc0fa3e72", "fields": {"nom_de_la_commune": "ANCINNES", "libell_d_acheminement": "ANCINNES", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72005"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174eb4b4fe173f7e019923b005b1f92272b9077a", "fields": {"nom_de_la_commune": "ASSE LE RIBOUL", "libell_d_acheminement": "ASSE LE RIBOUL", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72012"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11def582dfd2e004cc5c862931537c7fb3185c8a", "fields": {"nom_de_la_commune": "AVESNES EN SAOSNOIS", "libell_d_acheminement": "AVESNES EN SAOSNOIS", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72018"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854d47122cec8fc942a543c66b8361dc0dd7c8a5", "fields": {"nom_de_la_commune": "AVESSE", "libell_d_acheminement": "AVESSE", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72019"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b659b5ae5df43c457a06880869edc0295fffeb2e", "fields": {"nom_de_la_commune": "LE BAILLEUL", "libell_d_acheminement": "LE BAILLEUL", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72022"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8206643efc387b93f726ea8e517fd6849ba3682c", "fields": {"nom_de_la_commune": "BEAUFAY", "libell_d_acheminement": "BEAUFAY", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72026"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f92d2c941f7a9a58343e00e44767554fcd65f1a1", "fields": {"nom_de_la_commune": "BEAUMONT SUR DEME", "libell_d_acheminement": "BEAUMONT SUR DEME", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72027"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0533e87c1d3f601437b23635d145531544e889c4", "fields": {"nom_de_la_commune": "BEAUMONT PIED DE BOEUF", "libell_d_acheminement": "BEAUMONT PIED DE BOEUF", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72028"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "388ca72034d1e5a4fcf2a01cb68c6a45f6688b58", "fields": {"nom_de_la_commune": "LE BREIL SUR MERIZE", "libell_d_acheminement": "LE BREIL SUR MERIZE", "code_postal": "72370", "coordonnees_gps": [48.0020289464, 0.465705755443], "code_commune_insee": "72046"}, "geometry": {"type": "Point", "coordinates": [0.465705755443, 48.0020289464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4296110512e2e3999f74e9487cf44ac348dd0b4", "fields": {"nom_de_la_commune": "CHALLES", "libell_d_acheminement": "CHALLES", "code_postal": "72250", "coordonnees_gps": [47.9293145286, 0.379783357055], "code_commune_insee": "72053"}, "geometry": {"type": "Point", "coordinates": [0.379783357055, 47.9293145286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b53444924845caf1e98ad17f1e3850c2c1c390", "fields": {"nom_de_la_commune": "CHAMPFLEUR", "libell_d_acheminement": "CHAMPFLEUR", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72056"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142d3b83b13f070375785b113734a45f9cee1dcd", "fields": {"nom_de_la_commune": "LA CHAPELLE D ALIGNE", "libell_d_acheminement": "LA CHAPELLE D ALIGNE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72061"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aad0edec07c3f94805b521a2dd111dc1e595970", "fields": {"nom_de_la_commune": "CHATEAU DU LOIR", "libell_d_acheminement": "CHATEAU DU LOIR", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72071"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72b7008c142d483733d99450a24a208da0bfb568", "fields": {"nom_de_la_commune": "CHATEAU L HERMITAGE", "libell_d_acheminement": "CHATEAU L HERMITAGE", "code_postal": "72510", "coordonnees_gps": [47.7600092063, 0.139219846334], "code_commune_insee": "72072"}, "geometry": {"type": "Point", "coordinates": [0.139219846334, 47.7600092063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88cff266d56c0d80d41ea7d7e3ad69b75f6f0828", "fields": {"nom_de_la_commune": "CHENU", "libell_d_acheminement": "CHENU", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72077"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74d94a740b30415047c5d759c4816bf3e4fcb1b0", "fields": {"nom_de_la_commune": "LE CHEVAIN", "libell_d_acheminement": "LE CHEVAIN", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72082"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743f276d6ce9b228d34bfa433f13393df0e7e76f", "fields": {"nom_de_la_commune": "CHEVILLE", "libell_d_acheminement": "CHEVILLE", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72083"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c8db46fb04c0cc2820a8285052d20e0e2c327e6", "fields": {"nom_de_la_commune": "COMMERVEIL", "libell_d_acheminement": "COMMERVEIL", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72086"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2e18776430238e9db3241ca676114e15c6f801", "fields": {"nom_de_la_commune": "CONFLANS SUR ANILLE", "libell_d_acheminement": "CONFLANS SUR ANILLE", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72087"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14ade898f3bc82b503bc5f6c21b5bd64a6ccbf69", "fields": {"nom_de_la_commune": "COURCELLES LA FORET", "libell_d_acheminement": "COURCELLES LA FORET", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72100"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc2faff7fd0648b73affe3134d1299a359fb51c9", "fields": {"code_postal": "72150", "code_commune_insee": "72103", "libell_d_acheminement": "COURDEMANCHE", "ligne_5": "BRIVES", "nom_de_la_commune": "COURDEMANCHE", "coordonnees_gps": [47.8403616783, 0.502697264254]}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "214baf331f566a5b9178e5522fe2b2aafdbbdf1b", "fields": {"nom_de_la_commune": "CRANNES EN CHAMPAGNE", "libell_d_acheminement": "CRANNES EN CHAMPAGNE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72107"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3814b62839e2ceb7afe3b0f6c29dc9587de6b7", "fields": {"nom_de_la_commune": "CURES", "libell_d_acheminement": "CURES", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72111"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6e1ee28355d768761e820fa033a0e9d5b2e2a6d", "fields": {"nom_de_la_commune": "DISSAY SOUS COURCILLON", "libell_d_acheminement": "DISSAY SOUS COURCILLON", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72115"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42d224421ed4b21d8f5fd137c2774275f7a19c7", "fields": {"nom_de_la_commune": "DISSE SOUS BALLON", "libell_d_acheminement": "DISSE SOUS BALLON", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72116"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7a76a551ef164a83a2ba579ebe2a5999520c58", "fields": {"nom_de_la_commune": "DOUCELLES", "libell_d_acheminement": "DOUCELLES", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72120"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a2debe35ef039bd0ba9e440e8c445375c86b4b", "fields": {"nom_de_la_commune": "LA FERTE BERNARD", "libell_d_acheminement": "LA FERTE BERNARD", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72132"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf05cd80a79266d20c12fc3254c923584cd7dfb6", "fields": {"code_postal": "72600", "code_commune_insee": "72137", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "ligne_5": "CHASSE", "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "coordonnees_gps": [48.3843358188, 0.287692343822]}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f444d4a8699d6d4f3a29286396ccc3286ef0f28", "fields": {"code_postal": "72600", "code_commune_insee": "72137", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "ligne_5": "ROULLEE", "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "coordonnees_gps": [48.3843358188, 0.287692343822]}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c77eed41bfbb062f7b65a85d177d4799ecda05", "fields": {"nom_de_la_commune": "LAIGNE EN BELIN", "libell_d_acheminement": "LAIGNE EN BELIN", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72155"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a5e4e000e4782ce6ecbd20310a86027e8d54614", "fields": {"nom_de_la_commune": "LAVARDIN", "libell_d_acheminement": "LAVARDIN", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72157"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "405dab2f85ae8edb5a93c87aeb4ee2171c92136f", "fields": {"nom_de_la_commune": "LIVET EN SAOSNOIS", "libell_d_acheminement": "LIVET EN SAOSNOIS", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72164"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b4393ace4c9868ae6767c10bac9add95c941ae9", "fields": {"nom_de_la_commune": "LUCEAU", "libell_d_acheminement": "LUCEAU", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72173"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7a7d970ec2c722874775dabe26758e9e5e39182", "fields": {"nom_de_la_commune": "MARIGNE LAILLE", "libell_d_acheminement": "MARIGNE LAILLE", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72187"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0096ce3efee9656de11dc8ea6ce6ede7d2bb6bcf", "fields": {"nom_de_la_commune": "MELLERAY", "libell_d_acheminement": "MELLERAY", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72193"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51592d73cc24cae7e585dfaa8a14e9e9b82a2678", "fields": {"nom_de_la_commune": "MEURCE", "libell_d_acheminement": "MEURCE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72194"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3930c092bc2fad26c03d44c8a0cecac5f283f321", "fields": {"nom_de_la_commune": "MONTBIZOT", "libell_d_acheminement": "MONTBIZOT", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72205"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3da735bbe8758a5b2a09f9e30d92b0f680c2409", "fields": {"nom_de_la_commune": "MONTMIRAIL", "libell_d_acheminement": "MONTMIRAIL", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72208"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "797ad5cdf111753d5474100c648e3b6f804e94d2", "fields": {"nom_de_la_commune": "MOULINS LE CARBONNEL", "libell_d_acheminement": "MOULINS LE CARBONNEL", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72212"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ba6afe040505e8922bc224f606208b00615309c", "fields": {"nom_de_la_commune": "NEUVILLALAIS", "libell_d_acheminement": "NEUVILLALAIS", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72216"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29ff53b036aae379c077328b7536a397e888d110", "fields": {"nom_de_la_commune": "NEUVILLETTE EN CHARNIE", "libell_d_acheminement": "NEUVILLETTE EN CHARNIE", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72218"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1886d5a7254d7851293378ba007843728257fb3e", "fields": {"nom_de_la_commune": "NOYEN SUR SARTHE", "libell_d_acheminement": "NOYEN SUR SARTHE", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72223"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "390bfaf2dca9ef7cfc5ceafe4b55f13e8861acb2", "fields": {"nom_de_la_commune": "PARIGNE L EVEQUE", "libell_d_acheminement": "PARIGNE L EVEQUE", "code_postal": "72250", "coordonnees_gps": [47.9293145286, 0.379783357055], "code_commune_insee": "72231"}, "geometry": {"type": "Point", "coordinates": [0.379783357055, 47.9293145286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1b2d8180ef35871a547d024bab7da5d007d78d", "fields": {"nom_de_la_commune": "PIACE", "libell_d_acheminement": "PIACE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72235"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55700dc9d8b0469eae4dd4f51c0980bacd3d08d0", "fields": {"nom_de_la_commune": "PINCE", "libell_d_acheminement": "PINCE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72236"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09dba731949b6fa579c1a98af7f3846c0abffc41", "fields": {"nom_de_la_commune": "PIRMIL", "libell_d_acheminement": "PIRMIL", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72237"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74f12f61dc8f49e3bf81bd063d90cca7816fad35", "fields": {"nom_de_la_commune": "PREVAL", "libell_d_acheminement": "PREVAL", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72245"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e9f6f4d4d5c1cfddbb744d532a58f98c8c77d6", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DU JAMBET", "libell_d_acheminement": "ST CHRISTOPHE DU JAMBET", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72273"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a6ea0df78dde531e479a5dc4ebd9c334b7aa98c", "fields": {"nom_de_la_commune": "ST CORNEILLE", "libell_d_acheminement": "ST CORNEILLE", "code_postal": "72460", "coordonnees_gps": [48.0865226783, 0.31265862637], "code_commune_insee": "72275"}, "geometry": {"type": "Point", "coordinates": [0.31265862637, 48.0865226783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adf07b3fe25b945b11c2e97ace33cad1690438af", "fields": {"nom_de_la_commune": "ST COSME EN VAIRAIS", "libell_d_acheminement": "ST COSME EN VAIRAIS", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72276"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b97ca681ca663810ef5dc816b18249f26cd706", "fields": {"nom_de_la_commune": "STE JAMME SUR SARTHE", "libell_d_acheminement": "STE JAMME SUR SARTHE", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72289"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c532197a9eaedffea3fc45737f6dc360b0ef7673", "fields": {"code_postal": "72380", "code_commune_insee": "72289", "libell_d_acheminement": "STE JAMME SUR SARTHE", "ligne_5": "ANTOIGNE", "nom_de_la_commune": "STE JAMME SUR SARTHE", "coordonnees_gps": [48.1389926354, 0.154938405827]}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c48b4d4e62926b7745fb872619a4a815e3878ca", "fields": {"nom_de_la_commune": "ST JEAN D ASSE", "libell_d_acheminement": "ST JEAN D ASSE", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72290"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157a370d8afc574a6f6c0548a5048afe183006a7", "fields": {"nom_de_la_commune": "ST MAIXENT", "libell_d_acheminement": "ST MAIXENT", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72296"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea62b512b9f3e6290e38782f2fe664daf7c4113", "fields": {"nom_de_la_commune": "ST MARTIN DES MONTS", "libell_d_acheminement": "ST MARTIN DES MONTS", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72302"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e98cedbc63771b84680e34822c97106c1a718493", "fields": {"nom_de_la_commune": "ST OUEN EN BELIN", "libell_d_acheminement": "ST OUEN EN BELIN", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72306"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5634aeaccf4bac32c19c44c87c8bb25d9b13592", "fields": {"nom_de_la_commune": "ST PATERNE", "libell_d_acheminement": "ST PATERNE", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72308"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c89f48b748def4a3c6688332d35ae5057acdf482", "fields": {"nom_de_la_commune": "ST PIERRE DE CHEVILLE", "libell_d_acheminement": "ST PIERRE DE CHEVILLE", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72311"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6546b23429f58d80bf3b978c191a40e0115bdf", "fields": {"nom_de_la_commune": "ST ULPHACE", "libell_d_acheminement": "ST ULPHACE", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72322"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "795ed6fbf9ba7c8c6524fd396525620d39a65d57", "fields": {"nom_de_la_commune": "SAVIGNE SOUS LE LUDE", "libell_d_acheminement": "SAVIGNE SOUS LE LUDE", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72330"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9520cdb08e3de47d745bcac41aa52ebc4f643228", "fields": {"nom_de_la_commune": "SILLE LE GUILLAUME", "libell_d_acheminement": "SILLE LE GUILLAUME", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72334"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f8470ed836999d87ef2c2d6d18cd3fd3068fae6", "fields": {"nom_de_la_commune": "SOLESMES", "libell_d_acheminement": "SOLESMES", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72336"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "289aa38b59fdc448f2817e5ae095c86d9f939754", "fields": {"nom_de_la_commune": "SOULIGNE FLACE", "libell_d_acheminement": "SOULIGNE FLACE", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72339"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa28fed1cc937e13f3786060de6d8b883f86de1f", "fields": {"nom_de_la_commune": "SOUVIGNE SUR MEME", "libell_d_acheminement": "SOUVIGNE SUR MEME", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72342"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a50395174f32c653c9776b7d06d9f514a5cece3", "fields": {"nom_de_la_commune": "TEILLE", "libell_d_acheminement": "TEILLE", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72349"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1579fab50bbed6bb0ffa991fefce04bd839753fe", "fields": {"nom_de_la_commune": "THOIGNE", "libell_d_acheminement": "THOIGNE", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72354"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee7ed3116c64a00dbc1978fb4f9ed0bc40ffe75", "fields": {"nom_de_la_commune": "THOIRE SOUS CONTENSOR", "libell_d_acheminement": "THOIRE SOUS CONTENSOR", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72355"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fb916495676bc30f1d1393b6a6cac51cc884e0f", "fields": {"nom_de_la_commune": "TRANGE", "libell_d_acheminement": "TRANGE", "code_postal": "72650", "coordonnees_gps": [48.0691721456, 0.13653292656], "code_commune_insee": "72360"}, "geometry": {"type": "Point", "coordinates": [0.13653292656, 48.0691721456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c64bf306b3b8a575bc519e5fd23fc242e758a0", "fields": {"nom_de_la_commune": "TRESSON", "libell_d_acheminement": "TRESSON", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72361"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19098acc24fea302537919ff4becad1f2c55d15", "fields": {"nom_de_la_commune": "LE TRONCHET", "libell_d_acheminement": "LE TRONCHET", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72362"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d37abd20e93bb698e4f3fbdc68af187f4d002f", "fields": {"nom_de_la_commune": "VIBRAYE", "libell_d_acheminement": "VIBRAYE", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72373"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daef3c24a657d5da074852bbdeabbaeed9773b8a", "fields": {"nom_de_la_commune": "VILLAINES SOUS LUCE", "libell_d_acheminement": "VILLAINES SOUS LUCE", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72376"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aafa927e10b89ab975498870377acc68fa427034", "fields": {"nom_de_la_commune": "VION", "libell_d_acheminement": "VION", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72378"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e08873a89a76c7dc4491e44170806727317c7ab", "fields": {"nom_de_la_commune": "VIRE EN CHAMPAGNE", "libell_d_acheminement": "VIRE EN CHAMPAGNE", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72379"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311ec291f0591840d1f3b83ced9cef3dcc801224", "fields": {"nom_de_la_commune": "VOLNAY", "libell_d_acheminement": "VOLNAY", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72382"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969753ad3f2f1fb63715064664b8d1d8aefa5c54", "fields": {"nom_de_la_commune": "AIME LA PLAGNE", "libell_d_acheminement": "AIME LA PLAGNE", "code_postal": "73210", "coordonnees_gps": [45.5287564298, 6.7268231289], "code_commune_insee": "73006"}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21a16dd3890766624c1aa135d86f01f3a6eb6e9e", "fields": {"nom_de_la_commune": "AITON", "libell_d_acheminement": "AITON", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73007"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91933e446f73c3f5a024fdc97f973a5f1116ce22", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "CESSENS", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6d04a2a104b9e24ab78c99cc82127e9044f39e", "fields": {"nom_de_la_commune": "ALLONDAZ", "libell_d_acheminement": "ALLONDAZ", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73014"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29fb778c8c11cde32fb4550f1b54707cdce145f", "fields": {"nom_de_la_commune": "AUSSOIS", "libell_d_acheminement": "AUSSOIS", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73023"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0daaa76f75ab670daede26483fbbee19802da54a", "fields": {"nom_de_la_commune": "AVRIEUX", "libell_d_acheminement": "AVRIEUX", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73026"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0e9ca96f7ba3ddba85d0ee0d4ffb20dd2209015", "fields": {"nom_de_la_commune": "LA BALME", "libell_d_acheminement": "LA BALME", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73028"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01fead04ede19324d30af7a2565c524c5fa81fe0", "fields": {"nom_de_la_commune": "LA BAUCHE", "libell_d_acheminement": "LA BAUCHE", "code_postal": "73360", "coordonnees_gps": [45.4669972667, 5.76456264233], "code_commune_insee": "73033"}, "geometry": {"type": "Point", "coordinates": [5.76456264233, 45.4669972667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d39fa52fc1ec12b82d3d9071004e8f508fb85a", "fields": {"nom_de_la_commune": "BEAUFORT", "libell_d_acheminement": "BEAUFORT SUR DORON", "code_postal": "73270", "coordonnees_gps": [45.6914287305, 6.59333922308], "code_commune_insee": "73034"}, "geometry": {"type": "Point", "coordinates": [6.59333922308, 45.6914287305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c6b0d266ffb0ab9785361c0f84c60dd8bcc95e", "fields": {"nom_de_la_commune": "BELMONT TRAMONET", "libell_d_acheminement": "BELMONT TRAMONET", "code_postal": "73330", "coordonnees_gps": [45.5472960883, 5.6982391716], "code_commune_insee": "73039"}, "geometry": {"type": "Point", "coordinates": [5.6982391716, 45.5472960883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c284e20d2697821b39d3d73d740c2976283e51a3", "fields": {"nom_de_la_commune": "BETTON BETTONET", "libell_d_acheminement": "BETTON BETTONET", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73041"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e7d06b78959ba09c82e7aaae899ec4c96d1287", "fields": {"nom_de_la_commune": "LE BOIS", "libell_d_acheminement": "LE BOIS", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73045"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc8d800e918697111a75ce816e4f394d12c5021", "fields": {"nom_de_la_commune": "BONVILLARET", "libell_d_acheminement": "BONVILLARET", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73049"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2697f6e04732cd673cfdc1a7d8e45d4ce7a86d08", "fields": {"nom_de_la_commune": "BOURGNEUF", "libell_d_acheminement": "BOURGNEUF", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73053"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb120d174c1c44538812f562172e9035f2301166", "fields": {"nom_de_la_commune": "CEVINS", "libell_d_acheminement": "CEVINS", "code_postal": "73730", "coordonnees_gps": [45.5966737513, 6.45704572923], "code_commune_insee": "73063"}, "geometry": {"type": "Point", "coordinates": [6.45704572923, 45.5966737513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb674590dd45504a6ef6ecd02b56811663d7efc9", "fields": {"nom_de_la_commune": "CHALLES LES EAUX", "libell_d_acheminement": "CHALLES LES EAUX", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73064"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b87015a64734e206690f0196df888f43dc13ede", "fields": {"nom_de_la_commune": "LA CHAPELLE", "libell_d_acheminement": "LA CHAPELLE", "code_postal": "73660", "coordonnees_gps": [45.3946853407, 6.25313370974], "code_commune_insee": "73074"}, "geometry": {"type": "Point", "coordinates": [6.25313370974, 45.3946853407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7def5ee2ead26af78ba972d1e0bdfa05c7838e6e", "fields": {"nom_de_la_commune": "LA CHAPELLE DU MONT DU CHAT", "libell_d_acheminement": "LA CHAPELLE DU MONT DU CHAT", "code_postal": "73370", "coordonnees_gps": [45.6697379458, 5.85011777535], "code_commune_insee": "73076"}, "geometry": {"type": "Point", "coordinates": [5.85011777535, 45.6697379458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dfb03c5204cb045ab3eb079387a06365d715cce", "fields": {"nom_de_la_commune": "LA CHAPELLE ST MARTIN", "libell_d_acheminement": "LA CHAPELLE ST MARTIN", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73078"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ffec9b0cf10ef26ee3e04479508ead411ef4ab3", "fields": {"nom_de_la_commune": "COHENNOZ", "libell_d_acheminement": "COHENNOZ", "code_postal": "73400", "coordonnees_gps": [45.7638408088, 6.43638316061], "code_commune_insee": "73088"}, "geometry": {"type": "Point", "coordinates": [6.43638316061, 45.7638408088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b68d80a393e9453c06d4e403eb663317f539766e", "fields": {"nom_de_la_commune": "LA COMPOTE", "libell_d_acheminement": "LA COMPOTE", "code_postal": "73630", "coordonnees_gps": [45.6548339489, 6.17579886846], "code_commune_insee": "73090"}, "geometry": {"type": "Point", "coordinates": [6.17579886846, 45.6548339489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1201bb01227c1e31243898ef6920f88ad80c880f", "fields": {"nom_de_la_commune": "LA CROIX DE LA ROCHETTE", "libell_d_acheminement": "LA CROIX DE LA ROCHETTE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73095"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "650e50f64e6f10709e0e7b2a6d144dc5b8b9e5c7", "fields": {"nom_de_la_commune": "CRUET", "libell_d_acheminement": "CRUET", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73096"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80602c413db564691d5d8998375daecd99d5532e", "fields": {"nom_de_la_commune": "MOULOTTE", "libell_d_acheminement": "MOULOTTE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55363"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "027c1af1a1ea4d6c801e1e44d701572703884785", "fields": {"nom_de_la_commune": "MURVAUX", "libell_d_acheminement": "MURVAUX", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55365"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba23fa9dd281c6e3186bc8fc8e98a982452a1929", "fields": {"code_postal": "55000", "code_commune_insee": "55366", "libell_d_acheminement": "VAL D ORNAIN", "ligne_5": "VARNEY", "nom_de_la_commune": "VAL D ORNAIN", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a587ea6efdfd2f41c6c3dc10907ab5bf9f4fafa4", "fields": {"nom_de_la_commune": "MUZERAY", "libell_d_acheminement": "MUZERAY", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55367"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acd925f5222006dd6bd20d8a7a139b995e91d092", "fields": {"nom_de_la_commune": "NAIVES ROSIERES", "libell_d_acheminement": "NAIVES ROSIERES", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55369"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70acfe6d2d78f7c540dd4b95c12f7566beac6b1", "fields": {"code_postal": "55000", "code_commune_insee": "55369", "libell_d_acheminement": "NAIVES ROSIERES", "ligne_5": "ROSIERES DEVANT BAR", "nom_de_la_commune": "NAIVES ROSIERES", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20eb1ff81da6a326e57d9b5d6733854247cd8597", "fields": {"nom_de_la_commune": "NANCOIS SUR ORNAIN", "libell_d_acheminement": "NANCOIS SUR ORNAIN", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55372"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f62788b4b5a06f600795fd4c09fee28641ef6598", "fields": {"nom_de_la_commune": "NANTOIS", "libell_d_acheminement": "NANTOIS", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55376"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab50df8460e8ff618d641af305d268c4a09d545a", "fields": {"code_postal": "55120", "code_commune_insee": "55385", "libell_d_acheminement": "NIXEVILLE BLERCOURT", "ligne_5": "BLERCOURT", "nom_de_la_commune": "NIXEVILLE BLERCOURT", "coordonnees_gps": [49.116502234, 5.11120528176]}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c215f383840f788a11c6f3a79308619defd59cd", "fields": {"nom_de_la_commune": "NUBECOURT", "libell_d_acheminement": "NUBECOURT", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55389"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "442faf6a4d822c765572b74c167f156c476b86a0", "fields": {"nom_de_la_commune": "PEUVILLERS", "libell_d_acheminement": "PEUVILLERS", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55403"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "810db1f7d4e279253ad2a770df2e5563035e2d51", "fields": {"nom_de_la_commune": "POUILLY SUR MEUSE", "libell_d_acheminement": "POUILLY SUR MEUSE", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55408"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e06ac1596e88959b01268e865276f63b4f363e0", "fields": {"nom_de_la_commune": "PRETZ EN ARGONNE", "libell_d_acheminement": "PRETZ EN ARGONNE", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55409"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "125cb8a2198cb37785d06f40cb53a8ba312b00f7", "fields": {"nom_de_la_commune": "REMOIVILLE", "libell_d_acheminement": "REMOIVILLE", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55425"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2da9393745000435a3d14a0addd71c22395b655", "fields": {"nom_de_la_commune": "REVILLE AUX BOIS", "libell_d_acheminement": "REVILLE AUX BOIS", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55428"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b164f2b63f1acd5af3c0e41d181f6c2254da0aeb", "fields": {"nom_de_la_commune": "RIBEAUCOURT", "libell_d_acheminement": "RIBEAUCOURT", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55430"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37193f47a2fb6ec128fe80aa8cb09f998db4dd72", "fields": {"nom_de_la_commune": "LES ROISES", "libell_d_acheminement": "LES ROISES", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55436"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec1e17fe6d1a29cf345579d652e4375c3740b0bf", "fields": {"nom_de_la_commune": "RAIVAL", "libell_d_acheminement": "RAIVAL", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55442"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd25ed282913f7a3e8834c853acf0f343d7abd31", "fields": {"code_postal": "55260", "code_commune_insee": "55442", "libell_d_acheminement": "RAIVAL", "ligne_5": "ERIZE LA GRANDE", "nom_de_la_commune": "RAIVAL", "coordonnees_gps": [48.8868755037, 5.34101702735]}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce89378d2cd05e6ffc709251c38bffbdbf2ab5f3", "fields": {"nom_de_la_commune": "RUPT DEVANT ST MIHIEL", "libell_d_acheminement": "RUPT DEVANT ST MIHIEL", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55448"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96f5974329a6414de6faf44ec1e439951ff3504", "fields": {"nom_de_la_commune": "RUPT EN WOEVRE", "libell_d_acheminement": "RUPT EN WOEVRE", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55449"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "683c9ca8bd85eceae32578dd0c07f6fafb667331", "fields": {"nom_de_la_commune": "ST ANDRE EN BARROIS", "libell_d_acheminement": "ST ANDRE EN BARROIS", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55453"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a9405546f1eb20d4b7665ddb86e5355930f9cb", "fields": {"nom_de_la_commune": "ST HILAIRE EN WOEVRE", "libell_d_acheminement": "ST HILAIRE EN WOEVRE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55457"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ad997b66660b8c0260f89773ce564a19383c562", "fields": {"nom_de_la_commune": "ST JULIEN SOUS LES COTES", "libell_d_acheminement": "ST JULIEN SOUS LES COTES", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55460"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80e954e1c63f9e48f735249294f517b3551014a4", "fields": {"nom_de_la_commune": "SAUDRUPT", "libell_d_acheminement": "SAUDRUPT", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55470"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307b0308cc1b54c4218d257362e4c734c1194a32", "fields": {"code_postal": "55160", "code_commune_insee": "55473", "libell_d_acheminement": "SAULX LES CHAMPLON", "ligne_5": "CHAMPLON", "nom_de_la_commune": "SAULX LES CHAMPLON", "coordonnees_gps": [49.0949133617, 5.65293437026]}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9db4cd707d6fc0dd8061786b5e66856e3d0b59d", "fields": {"nom_de_la_commune": "SAUVIGNY", "libell_d_acheminement": "SAUVIGNY", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55474"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f59d6d1a8a278315eb86232840aa39e0b20d0bf", "fields": {"nom_de_la_commune": "SEPTSARGES", "libell_d_acheminement": "SEPTSARGES", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55484"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633b0795e0115e3e1485054b34fbe7ccb39f0c03", "fields": {"code_postal": "55220", "code_commune_insee": "55497", "libell_d_acheminement": "LES SOUHESMES RAMPONT", "ligne_5": "RAMPONT", "nom_de_la_commune": "LES SOUHESMES RAMPONT", "coordonnees_gps": [49.0264953625, 5.30234467263]}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed0877f53e73b34f8b23fa1171b55dccc10b2e2", "fields": {"nom_de_la_commune": "TANNOIS", "libell_d_acheminement": "TANNOIS", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55504"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac52c69e3048d63002ca61f5854034ac8d19fec3", "fields": {"nom_de_la_commune": "THILLOT", "libell_d_acheminement": "THILLOT", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55507"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d095174f30f4a86a7484fb824c2d1c7657843255", "fields": {"code_postal": "55250", "code_commune_insee": "55517", "libell_d_acheminement": "SEUIL D ARGONNE", "ligne_5": "SENARD", "nom_de_la_commune": "SEUIL D ARGONNE", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84ec244292c366fda0c0f79973b4c4ae674dd2dd", "fields": {"code_postal": "55500", "code_commune_insee": "55518", "libell_d_acheminement": "COUSANCES LES TRICONVILLE", "ligne_5": "COUSANCES AU BOIS", "nom_de_la_commune": "COUSANCES LES TRICONVILLE", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f80b113726045ad23c03cdac5c51334669618f", "fields": {"nom_de_la_commune": "VAUX DEVANT DAMLOUP", "libell_d_acheminement": "VAUX DEVANT DAMLOUP", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55537"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf07d990ecb4dfb342621dacba18c46ded95302", "fields": {"nom_de_la_commune": "VAUX LES PALAMEIX", "libell_d_acheminement": "VAUX LES PALAMEIX", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55540"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4de207fdac5e1b408d496773f8f60bdda103c53a", "fields": {"nom_de_la_commune": "VERDUN", "libell_d_acheminement": "VERDUN", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55545"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16d836d2d8210ccf56efb700d0a75d3ec49d7b62", "fields": {"nom_de_la_commune": "VERNEUIL GRAND", "libell_d_acheminement": "VERNEUIL GRAND", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55546"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e022303faca6215de1cd04e3dff6c0a58b533b86", "fields": {"nom_de_la_commune": "VERNEUIL PETIT", "libell_d_acheminement": "VERNEUIL PETIT", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55547"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c74dbcb733ecf3636112cada73f18b644af674a", "fields": {"nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55551"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a508d8893c78400d0efcb7fc83e084d988976be1", "fields": {"code_postal": "55210", "code_commune_insee": "55551", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "ligne_5": "HATTONCHATEL", "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f409ec73401018f776075add1be7fbd656873bef", "fields": {"nom_de_la_commune": "VILLE DEVANT CHAUMONT", "libell_d_acheminement": "VILLE DEVANT CHAUMONT", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55556"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb2864986dd751068cf099d625a8dbca9d498d4", "fields": {"nom_de_la_commune": "VILLERS LE SEC", "libell_d_acheminement": "VILLERS LE SEC", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55562"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1154c5020954084ec3b8d4a9af8ce7f675a4da35", "fields": {"code_postal": "55110", "code_commune_insee": "55571", "libell_d_acheminement": "VILOSNES HARAUMONT", "ligne_5": "HARAUMONT", "nom_de_la_commune": "VILOSNES HARAUMONT", "coordonnees_gps": [49.3482069392, 5.1984552124]}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60158211ed5a3f6c189c9413721904902db186fa", "fields": {"nom_de_la_commune": "VITTARVILLE", "libell_d_acheminement": "VITTARVILLE", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55572"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58eed570b7ad1d74e8ce8e4f0e06cfc09fd21cec", "fields": {"nom_de_la_commune": "VOUTHON BAS", "libell_d_acheminement": "VOUTHON BAS", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55574"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8ca070322e5d9678f63454281ecfdda862c472b", "fields": {"nom_de_la_commune": "WALY", "libell_d_acheminement": "WALY", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55577"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfdedecf25d9a9bfbc8f0f37e315076202f2057a", "fields": {"nom_de_la_commune": "WAVRILLE", "libell_d_acheminement": "WAVRILLE", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55580"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8f6ffafa257b4563dc42e6f8a71f8eb0f655a9e", "fields": {"nom_de_la_commune": "WILLERONCOURT", "libell_d_acheminement": "WILLERONCOURT", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55581"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bca7b159b3296c556d47bd44fd3e2cc2ad15bee", "fields": {"nom_de_la_commune": "ARZON", "libell_d_acheminement": "ARZON", "code_postal": "56640", "coordonnees_gps": [47.5474079943, -2.88721612106], "code_commune_insee": "56005"}, "geometry": {"type": "Point", "coordinates": [-2.88721612106, 47.5474079943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394eea769905d6f8f26d3d1829aabd12d5a68e57", "fields": {"nom_de_la_commune": "BEIGNON", "libell_d_acheminement": "BEIGNON", "code_postal": "56380", "coordonnees_gps": [47.9150020404, -2.16277339517], "code_commune_insee": "56012"}, "geometry": {"type": "Point", "coordinates": [-2.16277339517, 47.9150020404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49d407932d32997e196e2f2081d66f2049850e39", "fields": {"nom_de_la_commune": "BERNE", "libell_d_acheminement": "BERNE", "code_postal": "56240", "coordonnees_gps": [47.9397902952, -3.31179556396], "code_commune_insee": "56014"}, "geometry": {"type": "Point", "coordinates": [-3.31179556396, 47.9397902952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7113a42251981eeede8942cbcd121877ce498038", "fields": {"nom_de_la_commune": "BILLIERS", "libell_d_acheminement": "BILLIERS", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56018"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d13c6cfe97f3adddd64a4bbb882d3b0b03d523c", "fields": {"nom_de_la_commune": "BOHAL", "libell_d_acheminement": "BOHAL", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56020"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c96698d596a61e20718b2e29891eede6abeace", "fields": {"nom_de_la_commune": "BRECH", "libell_d_acheminement": "BRECH", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56023"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a38d01fbbfab3836d11fd60d2c0f58d7dc1052fd", "fields": {"nom_de_la_commune": "CAMORS", "libell_d_acheminement": "CAMORS", "code_postal": "56330", "coordonnees_gps": [47.797362476, -3.01124558366], "code_commune_insee": "56031"}, "geometry": {"type": "Point", "coordinates": [-3.01124558366, 47.797362476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f343a7dc82bf5558ea002e80d0342298b6e9fa3", "fields": {"nom_de_la_commune": "CARNAC", "libell_d_acheminement": "CARNAC", "code_postal": "56340", "coordonnees_gps": [47.6055540862, -3.08901198541], "code_commune_insee": "56034"}, "geometry": {"type": "Point", "coordinates": [-3.08901198541, 47.6055540862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d64de4e74df0222678bcd11f7f2f52aee0a6ed", "fields": {"nom_de_la_commune": "CLEGUER", "libell_d_acheminement": "CLEGUER", "code_postal": "56620", "coordonnees_gps": [47.8545097905, -3.38768121277], "code_commune_insee": "56040"}, "geometry": {"type": "Point", "coordinates": [-3.38768121277, 47.8545097905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d793ea96942161d21901b1a74e27cb334d3ee82", "fields": {"nom_de_la_commune": "COURNON", "libell_d_acheminement": "COURNON", "code_postal": "56200", "coordonnees_gps": [47.7586563678, -2.1829238317], "code_commune_insee": "56044"}, "geometry": {"type": "Point", "coordinates": [-2.1829238317, 47.7586563678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50334dbe7336edce4b0b5fd34e153d821cc7b6c7", "fields": {"nom_de_la_commune": "EVRIGUET", "libell_d_acheminement": "EVRIGUET", "code_postal": "56490", "coordonnees_gps": [48.0867387661, -2.46008188361], "code_commune_insee": "56056"}, "geometry": {"type": "Point", "coordinates": [-2.46008188361, 48.0867387661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67f4ee7406fed7da15b4b8e52cdc0832888fd832", "fields": {"nom_de_la_commune": "LA GACILLY", "libell_d_acheminement": "LA GACILLY", "code_postal": "56200", "coordonnees_gps": [47.7586563678, -2.1829238317], "code_commune_insee": "56061"}, "geometry": {"type": "Point", "coordinates": [-2.1829238317, 47.7586563678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712003a603edbb96e380cf6cc131dd048743d49b", "fields": {"nom_de_la_commune": "GUER", "libell_d_acheminement": "GUER", "code_postal": "56380", "coordonnees_gps": [47.9150020404, -2.16277339517], "code_commune_insee": "56075"}, "geometry": {"type": "Point", "coordinates": [-2.16277339517, 47.9150020404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1feff77e722e6a0a8f0011ae02e846a169d54a24", "fields": {"nom_de_la_commune": "HENNEBONT", "libell_d_acheminement": "HENNEBONT", "code_postal": "56700", "coordonnees_gps": [47.7669954089, -3.24285688708], "code_commune_insee": "56083"}, "geometry": {"type": "Point", "coordinates": [-3.24285688708, 47.7669954089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81bcac0b64393838312a49ba56287c07749833f4", "fields": {"nom_de_la_commune": "HOEDIC", "libell_d_acheminement": "ILE DE HOEDIC", "code_postal": "56170", "coordonnees_gps": [47.4440195899, -3.0513582744], "code_commune_insee": "56085"}, "geometry": {"type": "Point", "coordinates": [-3.0513582744, 47.4440195899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2d1d6d489d239d7ca4e923b4ef561c249b9436", "fields": {"nom_de_la_commune": "INZINZAC LOCHRIST", "libell_d_acheminement": "INZINZAC LOCHRIST", "code_postal": "56650", "coordonnees_gps": [47.8561611073, -3.25190412648], "code_commune_insee": "56090"}, "geometry": {"type": "Point", "coordinates": [-3.25190412648, 47.8561611073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c2997870cdf3bab366d957a895559b329b74398", "fields": {"nom_de_la_commune": "KERGRIST", "libell_d_acheminement": "KERGRIST", "code_postal": "56300", "coordonnees_gps": [48.0841906584, -2.98247941695], "code_commune_insee": "56093"}, "geometry": {"type": "Point", "coordinates": [-2.98247941695, 48.0841906584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f4ea2d5f8d7bcf037b34b89a68c58a80c4f242", "fields": {"nom_de_la_commune": "KERVIGNAC", "libell_d_acheminement": "KERVIGNAC", "code_postal": "56700", "coordonnees_gps": [47.7669954089, -3.24285688708], "code_commune_insee": "56094"}, "geometry": {"type": "Point", "coordinates": [-3.24285688708, 47.7669954089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d001e5c0cf0a47fcc004e12826393549a8bf0c5", "fields": {"nom_de_la_commune": "LANTILLAC", "libell_d_acheminement": "LANTILLAC", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56103"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f7ee934076139469c8ec2a9517a848f1240fe3", "fields": {"nom_de_la_commune": "LOCMALO", "libell_d_acheminement": "LOCMALO", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56113"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf92f00a5efe743ddafafe7e95e06dbe02e46458", "fields": {"nom_de_la_commune": "LOCMARIA", "libell_d_acheminement": "LOCMARIA", "code_postal": "56360", "coordonnees_gps": [47.3271241561, -3.17738378145], "code_commune_insee": "56114"}, "geometry": {"type": "Point", "coordinates": [-3.17738378145, 47.3271241561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d5a6bf50bb4fbab217d16deab0b07d49f7f602e", "fields": {"nom_de_la_commune": "LOCMIQUELIC", "libell_d_acheminement": "LOCMIQUELIC", "code_postal": "56570", "coordonnees_gps": [47.7307208269, -3.32776753997], "code_commune_insee": "56118"}, "geometry": {"type": "Point", "coordinates": [-3.32776753997, 47.7307208269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce41e17f5a3332f7f416605bf420cfb36ce3f3d7", "fields": {"nom_de_la_commune": "LOYAT", "libell_d_acheminement": "LOYAT", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56122"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53fdca4f2dd411492665b8365bae412d359e32a5", "fields": {"nom_de_la_commune": "MALESTROIT", "libell_d_acheminement": "MALESTROIT", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56124"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f167c182e6ec2672fe6aa9c71af9476f9d5c836", "fields": {"nom_de_la_commune": "MESLAN", "libell_d_acheminement": "MESLAN", "code_postal": "56320", "coordonnees_gps": [48.0259259973, -3.47528585034], "code_commune_insee": "56131"}, "geometry": {"type": "Point", "coordinates": [-3.47528585034, 48.0259259973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28645efa0c25514f755deb5093ec617112e0cb67", "fields": {"code_postal": "56500", "code_commune_insee": "56144", "libell_d_acheminement": "EVELLYS", "ligne_5": "NAIZIN", "nom_de_la_commune": "EVELLYS", "coordonnees_gps": [47.9163628401, -2.81404432498]}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "048bf8094f54a6656d7514902e5e1cc05bdc09fd", "fields": {"code_postal": "56500", "code_commune_insee": "56144", "libell_d_acheminement": "EVELLYS", "ligne_5": "REMUNGOL", "nom_de_la_commune": "EVELLYS", "coordonnees_gps": [47.9163628401, -2.81404432498]}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f13a0e4eae40dbc17ce220d6010d06b6a6e1481", "fields": {"nom_de_la_commune": "NEANT SUR YVEL", "libell_d_acheminement": "NEANT SUR YVEL", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56145"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f828a453ce5226a086e355678e16e39b82027758", "fields": {"nom_de_la_commune": "NOSTANG", "libell_d_acheminement": "NOSTANG", "code_postal": "56690", "coordonnees_gps": [47.758091509, -3.12551793319], "code_commune_insee": "56148"}, "geometry": {"type": "Point", "coordinates": [-3.12551793319, 47.758091509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd8c42c1ab5cc7cf91ca7d4d6e783b9479f3159", "fields": {"nom_de_la_commune": "PLOEMEUR", "libell_d_acheminement": "PLOEMEUR", "code_postal": "56270", "coordonnees_gps": [47.7326628076, -3.44215881435], "code_commune_insee": "56162"}, "geometry": {"type": "Point", "coordinates": [-3.44215881435, 47.7326628076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db40165d1e4d178dc31716e7540ca6c733642352", "fields": {"nom_de_la_commune": "PLOEREN", "libell_d_acheminement": "PLOEREN", "code_postal": "56880", "coordonnees_gps": [47.6616088483, -2.84343942871], "code_commune_insee": "56164"}, "geometry": {"type": "Point", "coordinates": [-2.84343942871, 47.6616088483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6292145db0d64bf629ca34d9de023deb0f7cba17", "fields": {"nom_de_la_commune": "PLOUAY", "libell_d_acheminement": "PLOUAY", "code_postal": "56240", "coordonnees_gps": [47.9397902952, -3.31179556396], "code_commune_insee": "56166"}, "geometry": {"type": "Point", "coordinates": [-3.31179556396, 47.9397902952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cbaa7399dc5f394ecc81921e5156881f024a965", "fields": {"nom_de_la_commune": "PORCARO", "libell_d_acheminement": "PORCARO", "code_postal": "56380", "coordonnees_gps": [47.9150020404, -2.16277339517], "code_commune_insee": "56180"}, "geometry": {"type": "Point", "coordinates": [-2.16277339517, 47.9150020404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e622d8e2387a4c4a4e230eebe2d6d9fbc199ee", "fields": {"nom_de_la_commune": "RADENAC", "libell_d_acheminement": "RADENAC", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56189"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d4f1d0e748f1886202baae7ee9b649cd1cdb9f4", "fields": {"code_postal": "56580", "code_commune_insee": "56198", "libell_d_acheminement": "ROHAN", "ligne_5": "ST SAMSON", "nom_de_la_commune": "ROHAN", "coordonnees_gps": [48.0645686885, -2.7233749534]}, "geometry": {"type": "Point", "coordinates": [-2.7233749534, 48.0645686885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3315af6465c29990a0b282916875307af1e1e65", "fields": {"nom_de_la_commune": "LE SAINT", "libell_d_acheminement": "LE SAINT", "code_postal": "56110", "coordonnees_gps": [48.1237137726, -3.61197294513], "code_commune_insee": "56201"}, "geometry": {"type": "Point", "coordinates": [-3.61197294513, 48.1237137726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f816ec92873c397c6a5fc29858cacc095ee91d0", "fields": {"nom_de_la_commune": "ST AIGNAN", "libell_d_acheminement": "ST AIGNAN", "code_postal": "56480", "coordonnees_gps": [48.1490399195, -3.08590175236], "code_commune_insee": "56203"}, "geometry": {"type": "Point", "coordinates": [-3.08590175236, 48.1490399195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21b767cdb36c570233699af9bedee481c0505bb6", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY", "code_postal": "56150", "coordonnees_gps": [47.8954786966, -3.01425366823], "code_commune_insee": "56207"}, "geometry": {"type": "Point", "coordinates": [-3.01425366823, 47.8954786966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e21dfa314b735c5b8a8b842b96e78ad87b62702c", "fields": {"nom_de_la_commune": "ST GONNERY", "libell_d_acheminement": "ST GONNERY", "code_postal": "56920", "coordonnees_gps": [48.081238115, -2.86082261519], "code_commune_insee": "56215"}, "geometry": {"type": "Point", "coordinates": [-2.86082261519, 48.081238115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b213ee17fe2440aaed62e3a4d48aebc0327dba4", "fields": {"nom_de_la_commune": "ST JEAN BREVELAY", "libell_d_acheminement": "ST JEAN BREVELAY", "code_postal": "56660", "coordonnees_gps": [47.8315140661, -2.7272413938], "code_commune_insee": "56222"}, "geometry": {"type": "Point", "coordinates": [-2.7272413938, 47.8315140661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3010b057a2aa3d7e870c666fae78fa8d9ed6a1c", "fields": {"nom_de_la_commune": "ST PIERRE QUIBERON", "libell_d_acheminement": "ST PIERRE QUIBERON", "code_postal": "56510", "coordonnees_gps": [47.5218901226, -3.13823713141], "code_commune_insee": "56234"}, "geometry": {"type": "Point", "coordinates": [-3.13823713141, 47.5218901226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "183c199008ac3ce5746ca1164c6800f0fa8a1790", "fields": {"nom_de_la_commune": "SURZUR", "libell_d_acheminement": "SURZUR", "code_postal": "56450", "coordonnees_gps": [47.5984313167, -2.64319395081], "code_commune_insee": "56248"}, "geometry": {"type": "Point", "coordinates": [-2.64319395081, 47.5984313167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed3142db723bdf80dfdbe0debc71d56a33024c7", "fields": {"nom_de_la_commune": "TREDION", "libell_d_acheminement": "TREDION", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56254"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d248117b3c4beb79d5cd0523edfb9262fe178cc", "fields": {"nom_de_la_commune": "LA TRINITE SURZUR", "libell_d_acheminement": "LA TRINITE SURZUR", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56259"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ae78aaba1e361e49fd700f782124fce45f46ab0", "fields": {"nom_de_la_commune": "ABRESCHVILLER", "libell_d_acheminement": "ABRESCHVILLER", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57003"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f0fd863a4b231c069857541861ac6ab53b69d2", "fields": {"nom_de_la_commune": "AJONCOURT", "libell_d_acheminement": "AJONCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57009"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904b0c57e705bbe8067a7ba847de886535feff3c", "fields": {"nom_de_la_commune": "ALBESTROFF", "libell_d_acheminement": "ALBESTROFF", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57011"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53ea20be4510f6e93ab5963ecff11fe3c1a76b8f", "fields": {"nom_de_la_commune": "ALSTING", "libell_d_acheminement": "ALSTING", "code_postal": "57515", "coordonnees_gps": [49.1798413382, 7.00123706861], "code_commune_insee": "57013"}, "geometry": {"type": "Point", "coordinates": [7.00123706861, 49.1798413382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d7675fc8c6180b2808a626de386b40c1555ff8", "fields": {"nom_de_la_commune": "ANGEVILLERS", "libell_d_acheminement": "ANGEVILLERS", "code_postal": "57440", "coordonnees_gps": [49.3774806221, 6.04516727983], "code_commune_insee": "57022"}, "geometry": {"type": "Point", "coordinates": [6.04516727983, 49.3774806221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5d1e3f00adfddca9b69a2a3f15d15a67afbcee", "fields": {"nom_de_la_commune": "ASPACH", "libell_d_acheminement": "ASPACH", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57034"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe4309f42dc0bb02f4e5f5b8d0a1e3f963bb669d", "fields": {"nom_de_la_commune": "ASSENONCOURT", "libell_d_acheminement": "ASSENONCOURT", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57035"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "381d990ee4e1855319c2b34588ebb23f4a398daf", "fields": {"nom_de_la_commune": "AUDUN LE TICHE", "libell_d_acheminement": "AUDUN LE TICHE", "code_postal": "57390", "coordonnees_gps": [49.4698725399, 5.94728059458], "code_commune_insee": "57038"}, "geometry": {"type": "Point", "coordinates": [5.94728059458, 49.4698725399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d60381b20bd85fc66163eb319e29168ff17f53c", "fields": {"nom_de_la_commune": "LARGENTIERE", "libell_d_acheminement": "LARGENTIERE", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07132"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed8f75d885c15ad6918e03488a0c5c8cfbddb421", "fields": {"nom_de_la_commune": "LANARCE", "libell_d_acheminement": "LANARCE", "code_postal": "07660", "coordonnees_gps": [44.7442437904, 3.96612267171], "code_commune_insee": "07130"}, "geometry": {"type": "Point", "coordinates": [3.96612267171, 44.7442437904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54efee163500747efcb56833cf7c5ecdcc8ff713", "fields": {"nom_de_la_commune": "LAFARRE", "libell_d_acheminement": "LAFARRE", "code_postal": "07520", "coordonnees_gps": [45.1121738943, 4.50340666434], "code_commune_insee": "07124"}, "geometry": {"type": "Point", "coordinates": [4.50340666434, 45.1121738943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf152d6663b62096693f088ad2194e1203cb4095", "fields": {"nom_de_la_commune": "JUVINAS", "libell_d_acheminement": "JUVINAS", "code_postal": "07600", "coordonnees_gps": [44.7013043374, 4.34237550127], "code_commune_insee": "07111"}, "geometry": {"type": "Point", "coordinates": [4.34237550127, 44.7013043374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12df46389d44313b8de717e9423ccfcb1f30801", "fields": {"nom_de_la_commune": "JOANNAS", "libell_d_acheminement": "JOANNAS", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07109"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a493cded10667621da8bb059f02fb94aff0a663", "fields": {"nom_de_la_commune": "LABOULE", "libell_d_acheminement": "LABOULE", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07118"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896884960e423bc8c1e6e8dce53ba9978dc62b6a", "fields": {"nom_de_la_commune": "LIMONY", "libell_d_acheminement": "LIMONY", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07143"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a350a54a02e0f3587c871f5fb1c33c296635e7f", "fields": {"nom_de_la_commune": "ARTAISE LE VIVIER", "libell_d_acheminement": "ARTAISE LE VIVIER", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08023"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60478122a1b312b8960503985951fc5f9ea542d9", "fields": {"nom_de_la_commune": "LES AYVELLES", "libell_d_acheminement": "LES AYVELLES", "code_postal": "08000", "coordonnees_gps": [49.7589748085, 4.71308364849], "code_commune_insee": "08040"}, "geometry": {"type": "Point", "coordinates": [4.71308364849, 49.7589748085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b18d361f31a3bc793748da83895da9c23ba83b", "fields": {"nom_de_la_commune": "BAYONVILLE", "libell_d_acheminement": "BAYONVILLE", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08052"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92dd72861f650e66d211bb87f0de1bdf9af22af6", "fields": {"nom_de_la_commune": "AUBRIVES", "libell_d_acheminement": "AUBRIVES", "code_postal": "08320", "coordonnees_gps": [50.0723012487, 4.74304215812], "code_commune_insee": "08028"}, "geometry": {"type": "Point", "coordinates": [4.74304215812, 50.0723012487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e19545252fbc7549cdac92e8c81f75eb7921f92", "fields": {"nom_de_la_commune": "APREMONT", "libell_d_acheminement": "APREMONT", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08017"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6126ea2fd30c18322bf0891744b719dbe2481ac", "fields": {"nom_de_la_commune": "ANTHENY", "libell_d_acheminement": "ANTHENY", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08015"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa38c0cc41300aea914139bc352b57af2227421e", "fields": {"nom_de_la_commune": "BALLAY", "libell_d_acheminement": "BALLAY", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08045"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f470b3d87e42688945a9564ff20d06d788232656", "fields": {"nom_de_la_commune": "AVAUX", "libell_d_acheminement": "AVAUX", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08039"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf807387a97cb18d56f54e308a4f77140a5112a9", "fields": {"nom_de_la_commune": "ST CIERGE SOUS LE CHEYLARD", "libell_d_acheminement": "ST CIERGE SOUS LE CHEYLARD", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07222"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca2c3f077298bcfaa334a39e85fd4f2bf50af049", "fields": {"nom_de_la_commune": "ST ANDEOL DE FOURCHADES", "libell_d_acheminement": "ST ANDEOL DE FOURCHADES", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07209"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b1c5ba9649049e876b6248f5a5cccf3b551d3f", "fields": {"nom_de_la_commune": "ST CIRGUES EN MONTAGNE", "libell_d_acheminement": "ST CIRGUES EN MONTAGNE", "code_postal": "07510", "coordonnees_gps": [44.7724320903, 4.10278815831], "code_commune_insee": "07224"}, "geometry": {"type": "Point", "coordinates": [4.10278815831, 44.7724320903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba220188f1d0531360307efd3db351eed5c95a26", "fields": {"nom_de_la_commune": "ST ETIENNE DE BOULOGNE", "libell_d_acheminement": "ST ETIENNE DE BOULOGNE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07230"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6fc47c25619c292791176f03659a2e7b58ac541", "fields": {"nom_de_la_commune": "ST BARTHELEMY LE PLAIN", "libell_d_acheminement": "ST BARTHELEMY LE PLAIN", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07217"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02b74be9860c3db65ad70826d3503ec0cd504bd0", "fields": {"nom_de_la_commune": "ST ANDRE EN VIVARAIS", "libell_d_acheminement": "ST ANDRE EN VIVARAIS", "code_postal": "07690", "coordonnees_gps": [45.1829664492, 4.50688842941], "code_commune_insee": "07212"}, "geometry": {"type": "Point", "coordinates": [4.50688842941, 45.1829664492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93c094839ebea82cb63674734d15e09966e77000", "fields": {"nom_de_la_commune": "ST BARTHELEMY GROZON", "libell_d_acheminement": "ST BARTHELEMY GROZON", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07216"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83d4ba4048cce9f4d55ed275485d364f1fecfc9f", "fields": {"nom_de_la_commune": "ST ANDRE LACHAMP", "libell_d_acheminement": "ST ANDRE LACHAMP", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07213"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3edcd6ff5ede01c9004a616947160e8f58d7a45a", "fields": {"nom_de_la_commune": "ST BAUZILE", "libell_d_acheminement": "ST BAUZILE", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07219"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57cb3a5eac70c2b102d9bb61f8d44779b78d74c8", "fields": {"nom_de_la_commune": "ST CYR", "libell_d_acheminement": "ST CYR", "code_postal": "07430", "coordonnees_gps": [45.2574690023, 4.70801492444], "code_commune_insee": "07227"}, "geometry": {"type": "Point", "coordinates": [4.70801492444, 45.2574690023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1b88f32a415751d77659004affd31f29bde28e3", "fields": {"nom_de_la_commune": "ST JACQUES D ATTICIEUX", "libell_d_acheminement": "ST JACQUES D ATTICIEUX", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07243"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38372e8d2a1c1375c1aa5fea22d1766cd6e21fb1", "fields": {"nom_de_la_commune": "ST LAURENT SOUS COIRON", "libell_d_acheminement": "ST LAURENT SOUS COIRON", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07263"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d9ceb981d2662d2fb5d14468b4612d00cd48a16", "fields": {"nom_de_la_commune": "ST MARTIN SUR LAVEZON", "libell_d_acheminement": "ST MARTIN SUR LAVEZON", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07270"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e610678466018797afdd24bbd4a66a89834d0f", "fields": {"nom_de_la_commune": "ST GENEST DE BEAUZON", "libell_d_acheminement": "ST GENEST DE BEAUZON", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07238"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7359f991af9fe9d6567b0b14788360e63174d4e", "fields": {"nom_de_la_commune": "ST MICHEL D AURANCE", "libell_d_acheminement": "ST MICHEL D AURANCE", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07276"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148af7d8371358a07e5d370e16cd45ed0d869b81", "fields": {"nom_de_la_commune": "ST JULIEN BOUTIERES", "libell_d_acheminement": "ST JULIEN BOUTIERES", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07252"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a52a6ffd976d8e30dda5723ee90ffb8bd2ef5216", "fields": {"nom_de_la_commune": "ST GENEST LACHAMP", "libell_d_acheminement": "ST GENEST LACHAMP", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07239"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1478e7fd72e4429ad3dad318fc11c7065e1ce1c", "fields": {"nom_de_la_commune": "ST PIERRE ST JEAN", "libell_d_acheminement": "ST PIERRE ST JEAN", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07284"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add963a0b8098592439442152373187effd3ec7d", "fields": {"nom_de_la_commune": "ST PIERREVILLE", "libell_d_acheminement": "ST PIERREVILLE", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07286"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c9fd15256e6cb6386bf0558d31f5a71af7f1bf5", "fields": {"nom_de_la_commune": "ST JEAN ROURE", "libell_d_acheminement": "ST JEAN ROURE", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07248"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04e1e44016bd0da3b0d57704f1f1137ca7a13874", "fields": {"nom_de_la_commune": "ST ALBAN AURIOLLES", "libell_d_acheminement": "ST ALBAN AURIOLLES", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07207"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb4f28cbbcfca29a1213aa95fbc3d3bc836e86a", "fields": {"nom_de_la_commune": "PONT DE LABEAUME", "libell_d_acheminement": "PONT DE LABEAUME", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07178"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e459ee1796418ec044acb5ef60b7356782ff83d8", "fields": {"nom_de_la_commune": "ST ALBAN D AY", "libell_d_acheminement": "ST ALBAN D AY", "code_postal": "07790", "coordonnees_gps": [45.1861761213, 4.63077882039], "code_commune_insee": "07205"}, "geometry": {"type": "Point", "coordinates": [4.63077882039, 45.1861761213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21caff944129a04cbfb00b9e5c9f2dd5abc042a5", "fields": {"nom_de_la_commune": "ROCHESSAUVE", "libell_d_acheminement": "ROCHESSAUVE", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07194"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f9ca0f734ff96e61925d453e63f90af2d2076f", "fields": {"nom_de_la_commune": "SABLIERES", "libell_d_acheminement": "SABLIERES", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07202"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30b4f25430c9d3ae2140e7ce59168be9b563055a", "fields": {"nom_de_la_commune": "ST AGREVE", "libell_d_acheminement": "ST AGREVE", "code_postal": "07320", "coordonnees_gps": [45.0373045758, 4.40809753225], "code_commune_insee": "07204"}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ef17cef78a67916044f829089a6c67bfe758a70", "fields": {"nom_de_la_commune": "PRANLES", "libell_d_acheminement": "PRANLES", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07184"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7cad48dc21362965570b74ed972bf918d06ffb", "fields": {"nom_de_la_commune": "PRADONS", "libell_d_acheminement": "PRADONS", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07183"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0307c3602bdad72a07d15995302548231de93f6b", "fields": {"nom_de_la_commune": "LE ROUX", "libell_d_acheminement": "LE ROUX", "code_postal": "07560", "coordonnees_gps": [44.7182672724, 4.176983695], "code_commune_insee": "07200"}, "geometry": {"type": "Point", "coordinates": [4.176983695, 44.7182672724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28bf2bfb47586d30db0f63b972a353d6b0077331", "fields": {"nom_de_la_commune": "RIBES", "libell_d_acheminement": "RIBES", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07189"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e2d769ccd3698e041aed2d4138d1019f715931a", "fields": {"nom_de_la_commune": "BEFFU ET LE MORTHOMME", "libell_d_acheminement": "BEFFU ET LE MORTHOMME", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08056"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31fcfe40bb0318267f5cd055ff0d22f3a87f27f2", "fields": {"nom_de_la_commune": "BOSSEVAL ET BRIANCOURT", "libell_d_acheminement": "BOSSEVAL ET BRIANCOURT", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08072"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9802cc5b3c1779cd284005fd3145155af313b93e", "fields": {"nom_de_la_commune": "BIGNICOURT", "libell_d_acheminement": "BIGNICOURT", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08066"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656ecf1b52b5c2461fa96384c18c0ee3d3c655b0", "fields": {"nom_de_la_commune": "BLOMBAY", "libell_d_acheminement": "BLOMBAY", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08071"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f073d08afb3b474d865d97491376352225787938", "fields": {"code_postal": "08160", "code_commune_insee": "08140", "libell_d_acheminement": "DOM LE MESNIL", "ligne_5": "PONT A BAR", "nom_de_la_commune": "DOM LE MESNIL", "coordonnees_gps": [49.6516847115, 4.77872166277]}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9e61240819a1ee8586c1ffa45e28d47d90419e", "fields": {"code_postal": "08140", "code_commune_insee": "08145", "libell_d_acheminement": "DOUZY", "ligne_5": "MAIRY", "nom_de_la_commune": "DOUZY", "coordonnees_gps": [49.7027985967, 5.05389161183]}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c2f28959d8c25f60fa2bd5de28193f1c55a4988", "fields": {"nom_de_la_commune": "ESCOMBRES ET LE CHESNOIS", "libell_d_acheminement": "ESCOMBRES ET LE CHESNOIS", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08153"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8895955fde1565240cbb22ad4c4161bc065d3e0d", "fields": {"nom_de_la_commune": "COULOMMES ET MARQUENY", "libell_d_acheminement": "COULOMMES ET MARQUENY", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08134"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23bc9d42719c446239640951964e66a640f9b6c", "fields": {"nom_de_la_commune": "LA CROIX AUX BOIS", "libell_d_acheminement": "LA CROIX AUX BOIS", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08135"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "332549a391e1ddb2f51740067fd931f3b9d0d98c", "fields": {"nom_de_la_commune": "CONDE LES AUTRY", "libell_d_acheminement": "CONDE LES AUTRY", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08128"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeca48e9a4c4b2bcbab9ed06d712be0e346deba0", "fields": {"nom_de_la_commune": "CHUFFILLY ROCHE", "libell_d_acheminement": "CHUFFILLY ROCHE", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08123"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7c8ef03f181518b5ec7d08bb08cc927a311f8c4", "fields": {"nom_de_la_commune": "ETEIGNIERES", "libell_d_acheminement": "ETEIGNIERES", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08156"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3b2b971917a250a64d5fe4743e17e2d26c6287", "fields": {"nom_de_la_commune": "CLIRON", "libell_d_acheminement": "CLIRON", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08125"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af87356a9fb49a7f5641abd6bdfc84c76217ebe7", "fields": {"nom_de_la_commune": "COUCY", "libell_d_acheminement": "COUCY", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08133"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a55b244bc90f6282799359a88b0814eb5e84dab6", "fields": {"code_postal": "08400", "code_commune_insee": "08116", "libell_d_acheminement": "BAIRON ET SES ENVIRONS", "ligne_5": "LES ALLEUX", "nom_de_la_commune": "BAIRON ET SES ENVIRONS", "coordonnees_gps": [49.3759788124, 4.68476998487]}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89c0c877d4ad4a3b0a35a0054dd1e38332c1b1bd", "fields": {"code_postal": "08110", "code_commune_insee": "08090", "libell_d_acheminement": "CARIGNAN", "ligne_5": "WE", "nom_de_la_commune": "CARIGNAN", "coordonnees_gps": [49.6541821872, 5.19219003172]}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbade34701e72fa40d41932cc1dd0499d566d9e7", "fields": {"nom_de_la_commune": "BRIENNE SUR AISNE", "libell_d_acheminement": "BRIENNE SUR AISNE", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08084"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "323dbce8b7072cde0b4ed57baf7db99cedc6c1af", "fields": {"nom_de_la_commune": "BOUCONVILLE", "libell_d_acheminement": "BOUCONVILLE", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08074"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72c531f7ad8198bb43b39a1793332801aeb6b797", "fields": {"nom_de_la_commune": "CHARNOIS", "libell_d_acheminement": "CHARNOIS", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08106"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc25b155a23a339a2b118e4b48a6a7360aeba42", "fields": {"nom_de_la_commune": "CARIGNAN", "libell_d_acheminement": "CARIGNAN", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08090"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02af8b420c70ef6d58c64566c49293ae58f34416", "fields": {"nom_de_la_commune": "CHAPPES", "libell_d_acheminement": "CHAPPES", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08102"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4ad3f1abc8d2e21c4aedfebf3817919439902f", "fields": {"nom_de_la_commune": "BUZANCY", "libell_d_acheminement": "BUZANCY", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08089"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eac75804f0d791eda29f2f4ba7ca87c15df78a0", "fields": {"nom_de_la_commune": "BULSON", "libell_d_acheminement": "BULSON", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08088"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9f3d0f7dd50b4af814ffe4402b336b4d37493b", "fields": {"nom_de_la_commune": "CHAGNY", "libell_d_acheminement": "CHAGNY", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08095"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4a1cd516519195bf58f054e50dcddd1ba611c3f", "fields": {"nom_de_la_commune": "SEVIGNY WALEPPE", "libell_d_acheminement": "SEVIGNY WALEPPE", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08418"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0277e4df9b033413dd31db8f01ee85fca4bc3f", "fields": {"nom_de_la_commune": "SAULCES MONCLIN", "libell_d_acheminement": "SAULCES MONCLIN", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08402"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f357259332b398554fa80e7e7be0db12cf3a4bdb", "fields": {"nom_de_la_commune": "SERAINCOURT", "libell_d_acheminement": "SERAINCOURT", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08413"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4243416617aa262bbb9c56ab6a8ef67a9c00f5fd", "fields": {"nom_de_la_commune": "SECHEVAL", "libell_d_acheminement": "SECHEVAL", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08408"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eb979c4c91e00d09cd8243db11663bbe931faca", "fields": {"nom_de_la_commune": "SENUC", "libell_d_acheminement": "SENUC", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08412"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1a188df8e20097c107a4d0434cb4f84bdd13bb", "fields": {"nom_de_la_commune": "SERY", "libell_d_acheminement": "SERY", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08415"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "735f019b658d81069ae2a323e84024b1fc889f39", "fields": {"nom_de_la_commune": "DIGNAC", "libell_d_acheminement": "DIGNAC", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16119"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef60285ee41ddb690c4a32c01bf8b5516d7a057a", "fields": {"nom_de_la_commune": "ECURAS", "libell_d_acheminement": "ECURAS", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16124"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c44e2a04b9a7804caccb7de94abb39b0be99e853", "fields": {"nom_de_la_commune": "ETAGNAC", "libell_d_acheminement": "ETAGNAC", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16132"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d34ad760be428ce703d2a748cec4adbe31f24d0", "fields": {"nom_de_la_commune": "EYMOUTHIERS", "libell_d_acheminement": "EYMOUTHIERS", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16135"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1037385be7cb6ac544f2fb93603c96578d1c72bc", "fields": {"nom_de_la_commune": "LA FAYE", "libell_d_acheminement": "LA FAYE", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16136"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4c2f14a53f15f8365c9a4700a9a3f654e92fae", "fields": {"nom_de_la_commune": "FLEAC", "libell_d_acheminement": "FLEAC", "code_postal": "16730", "coordonnees_gps": [45.6636626896, 0.0767104525338], "code_commune_insee": "16138"}, "geometry": {"type": "Point", "coordinates": [0.0767104525338, 45.6636626896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2109fc257dec6aa161cde9bbc07feaa890fc46bb", "fields": {"nom_de_la_commune": "LA FORET DE TESSE", "libell_d_acheminement": "LA FORET DE TESSE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16142"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9361c921c050c1ffaeba99122a92ee72389ccf62", "fields": {"nom_de_la_commune": "FOUQUEBRUNE", "libell_d_acheminement": "FOUQUEBRUNE", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16143"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84be305c0683463e10dc610fab0a917b8d00ba12", "fields": {"nom_de_la_commune": "FOUQUEURE", "libell_d_acheminement": "FOUQUEURE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16144"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c82caf79c0c22c767a3bec0c2dcdf684d22f551", "fields": {"code_postal": "16170", "code_commune_insee": "16148", "libell_d_acheminement": "GENAC BIGNAC", "ligne_5": "BIGNAC", "nom_de_la_commune": "GENAC BIGNAC", "coordonnees_gps": [45.7890325838, -0.0524231030464]}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d02dcbf642ce42c4f78becc874736ec28235229", "fields": {"nom_de_la_commune": "GENOUILLAC", "libell_d_acheminement": "GENOUILLAC", "code_postal": "16270", "coordonnees_gps": [45.8834000837, 0.571194894473], "code_commune_insee": "16149"}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c89909da89e84b9d17e183370509e91176d4697", "fields": {"nom_de_la_commune": "GRASSAC", "libell_d_acheminement": "GRASSAC", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16158"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60412454ee20636ccdb45974a10bfd6e29879c93", "fields": {"nom_de_la_commune": "GUIMPS", "libell_d_acheminement": "GUIMPS", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16160"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "994434ef9c1bf8de4c45570dc67e6c27e3630868", "fields": {"nom_de_la_commune": "GURAT", "libell_d_acheminement": "GURAT", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16162"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26fd9da1da33f484d2b5cc1a809b65a669216a8b", "fields": {"nom_de_la_commune": "JAULDES", "libell_d_acheminement": "JAULDES", "code_postal": "16560", "coordonnees_gps": [45.7971229421, 0.228616838557], "code_commune_insee": "16168"}, "geometry": {"type": "Point", "coordinates": [0.228616838557, 45.7971229421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6131c962b0aeb2a618c8df5aeedf82e6a03fcf3", "fields": {"code_postal": "16250", "code_commune_insee": "16175", "libell_d_acheminement": "VAL DES VIGNES", "ligne_5": "JURIGNAC", "nom_de_la_commune": "VAL DES VIGNES", "coordonnees_gps": [45.4908805694, 0.0542614769759]}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791ee7d506d304ea46aaa8e9b5d7f22a5997e190", "fields": {"nom_de_la_commune": "LESSAC", "libell_d_acheminement": "LESSAC", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16181"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f252e8c02b063d732d1f52842d8809d275a188", "fields": {"nom_de_la_commune": "LICHERES", "libell_d_acheminement": "LICHERES", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16184"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f6157428b9e7ada1193581bcaaee70a2b4481e", "fields": {"nom_de_la_commune": "LOUZAC ST ANDRE", "libell_d_acheminement": "LOUZAC ST ANDRE", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16193"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bef9165cf910ba12e64a80f55f506059449894d3", "fields": {"nom_de_la_commune": "LA MAGDELEINE", "libell_d_acheminement": "LA MAGDELEINE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16197"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0873fe514910e5b7f425dcaa4127e83ed1d3283a", "fields": {"nom_de_la_commune": "MAGNAC SUR TOUVRE", "libell_d_acheminement": "MAGNAC SUR TOUVRE", "code_postal": "16600", "coordonnees_gps": [45.6754215966, 0.266312411242], "code_commune_insee": "16199"}, "geometry": {"type": "Point", "coordinates": [0.266312411242, 45.6754215966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8cffee15df579880b67b66143ab7b02dfa498d", "fields": {"nom_de_la_commune": "MANOT", "libell_d_acheminement": "MANOT", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16205"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2d031814776a79994169003380a30951b4c44b", "fields": {"nom_de_la_commune": "MARSAC", "libell_d_acheminement": "MARSAC", "code_postal": "16570", "coordonnees_gps": [45.7496501678, 0.052973066949], "code_commune_insee": "16210"}, "geometry": {"type": "Point", "coordinates": [0.052973066949, 45.7496501678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ba7da504b4ad7d0c4652ed17b8f8f569f441a4f", "fields": {"nom_de_la_commune": "MESNAC", "libell_d_acheminement": "MESNAC", "code_postal": "16370", "coordonnees_gps": [45.7599366195, -0.346092589002], "code_commune_insee": "16218"}, "geometry": {"type": "Point", "coordinates": [-0.346092589002, 45.7599366195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845876a3369c4a7c5d86cdd4ae8b3e51246b7e18", "fields": {"nom_de_la_commune": "MONTIGNAC CHARENTE", "libell_d_acheminement": "MONTIGNAC CHARENTE", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16226"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536e14c4d20a41f3fd6946572bdb5184070c99c3", "fields": {"nom_de_la_commune": "LAGUINGE RESTOUE", "libell_d_acheminement": "LAGUINGE RESTOUE", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64303"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac2184e3ddfd0447150e925885c28b8b3d5f95f3", "fields": {"nom_de_la_commune": "LAHOURCADE", "libell_d_acheminement": "LAHOURCADE", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64306"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba76ffc55cfca0dc70495bd3296eb7f7f1490eb2", "fields": {"nom_de_la_commune": "LANNEPLAA", "libell_d_acheminement": "LANNEPLAA", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64312"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d8a393a6135e90332d61c5366aa9215fbe9583", "fields": {"nom_de_la_commune": "LARREULE", "libell_d_acheminement": "LARREULE", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64318"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e61141ce468b0e90b809dd62e6cd128c3f7f7c7", "fields": {"nom_de_la_commune": "LARUNS", "libell_d_acheminement": "LARUNS", "code_postal": "64440", "coordonnees_gps": [42.9183295476, -0.395850195838], "code_commune_insee": "64320"}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cbf0d77a1e9173cdce15a2a14fdd69ebab621b3", "fields": {"nom_de_la_commune": "LASSE", "libell_d_acheminement": "LASSE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64322"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7437befaf2a117d0bbe720b777bdce854318b0dd", "fields": {"nom_de_la_commune": "LAY LAMIDOU", "libell_d_acheminement": "LAY LAMIDOU", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64326"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "427841cbf149fcbfcb7d34bcfc1d94fa7742a0c9", "fields": {"nom_de_la_commune": "LESCUN", "libell_d_acheminement": "LESCUN", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64336"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8408982fac0c62ce3c000f31945ec6ff5380ef5", "fields": {"nom_de_la_commune": "LICHOS", "libell_d_acheminement": "LICHOS", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64341"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b14874d99fa3051172c0c1a01cc293a98a57bcf4", "fields": {"nom_de_la_commune": "LICQ ATHEREY", "libell_d_acheminement": "LICQ ATHEREY", "code_postal": "64560", "coordonnees_gps": [43.0084914097, -0.920619929244], "code_commune_insee": "64342"}, "geometry": {"type": "Point", "coordinates": [-0.920619929244, 43.0084914097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e258c62c1c1990bedf8421dda32926733acf63f4", "fields": {"nom_de_la_commune": "LIMENDOUS", "libell_d_acheminement": "LIMENDOUS", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64343"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a46b7c521c000bb086de06835137e49708f7988", "fields": {"nom_de_la_commune": "LOUVIE JUZON", "libell_d_acheminement": "LOUVIE JUZON", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64353"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e588941e663acd84171b5c4510cde6f296ee3b3", "fields": {"nom_de_la_commune": "LOUVIGNY", "libell_d_acheminement": "LOUVIGNY", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64355"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88e5f7f21e3689ad46872762fbf16a50ec982d7c", "fields": {"nom_de_la_commune": "LURBE ST CHRISTAU", "libell_d_acheminement": "LURBE ST CHRISTAU", "code_postal": "64660", "coordonnees_gps": [43.1157198025, -0.622971094801], "code_commune_insee": "64360"}, "geometry": {"type": "Point", "coordinates": [-0.622971094801, 43.1157198025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d79251b8f7a581e84c78be12bdc43a77b2109f9b", "fields": {"nom_de_la_commune": "MENDIVE", "libell_d_acheminement": "MENDIVE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64379"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c5507902e288947bc5027d380b1690e8446d57", "fields": {"nom_de_la_commune": "MERACQ", "libell_d_acheminement": "MERACQ", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64380"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d77db470b8d6f70cdaf56a008716f09ffd726e", "fields": {"nom_de_la_commune": "MERITEIN", "libell_d_acheminement": "MERITEIN", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64381"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6acea5e8efb742b64c9b4e60d8f1d39d0565b786", "fields": {"nom_de_la_commune": "MIOSSENS LANUSSE", "libell_d_acheminement": "MIOSSENS LANUSSE", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64385"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c17358ff2b031ec04ed0dd31a239f8556e6d601", "fields": {"nom_de_la_commune": "MONSEGUR", "libell_d_acheminement": "MONSEGUR", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64395"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b7aa227272d49d9be58440b493a2a3acb10fae4", "fields": {"nom_de_la_commune": "MONTFORT", "libell_d_acheminement": "MONTFORT", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64403"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "626c9746eb71a3037e60849417adeac5277fe445", "fields": {"nom_de_la_commune": "MORLAAS", "libell_d_acheminement": "MORLAAS", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64405"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bac1117cfcdf8b4b680e405bb205474f332dcb2d", "fields": {"nom_de_la_commune": "MORLANNE", "libell_d_acheminement": "MORLANNE", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64406"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3dc0bb7b1b4b0a02c9b9136cb5973ba1aeab55a", "fields": {"nom_de_la_commune": "MOUGUERRE", "libell_d_acheminement": "MOUGUERRE", "code_postal": "64990", "coordonnees_gps": [43.4632822407, -1.40781223333], "code_commune_insee": "64407"}, "geometry": {"type": "Point", "coordinates": [-1.40781223333, 43.4632822407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3c1d41a8788d143e31266d6abdbdbf059449044", "fields": {"nom_de_la_commune": "NAY", "libell_d_acheminement": "NAY", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64417"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b390a4f6614ac39a62c3266a8eccfe8c713cc290", "fields": {"nom_de_la_commune": "NOUSTY", "libell_d_acheminement": "NOUSTY", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64419"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f138fb50b51a9bfe1764a8ee8c6e62d9b4333c3", "fields": {"nom_de_la_commune": "OREGUE", "libell_d_acheminement": "OREGUE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64425"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c4032125103357939eb27496a320acb4224a9a", "fields": {"nom_de_la_commune": "ORION", "libell_d_acheminement": "ORION", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64427"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d576fa59830c1962d07ab840f57008b7c95a93", "fields": {"nom_de_la_commune": "OSTABAT ASME", "libell_d_acheminement": "OSTABAT ASME", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64437"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c43cbd29b8021b9f2007012335749629056e3b7", "fields": {"nom_de_la_commune": "OUSSE", "libell_d_acheminement": "OUSSE", "code_postal": "64320", "coordonnees_gps": [43.2929999605, -0.293556943502], "code_commune_insee": "64439"}, "geometry": {"type": "Point", "coordinates": [-0.293556943502, 43.2929999605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce0163518a5b5ba285d9b8b46adc5586ff016d4", "fields": {"nom_de_la_commune": "OZENX MONTESTRUCQ", "libell_d_acheminement": "OZENX MONTESTRUCQ", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64440"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13f066f40883786290ffc1a30c230cde7bf018a0", "fields": {"nom_de_la_commune": "PAGOLLE", "libell_d_acheminement": "PAGOLLE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64441"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "429c36b4ef29c7df29b9b6a3fdaaefefbfc8b5b9", "fields": {"nom_de_la_commune": "ROQUIAGUE", "libell_d_acheminement": "ROQUIAGUE", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64468"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb031764c8c4822b7076af78e51e4bc4740b80d", "fields": {"nom_de_la_commune": "ST CASTIN", "libell_d_acheminement": "ST CASTIN", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64472"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bc691c2b9124cdd842175fb4d2065a63950c9b5", "fields": {"nom_de_la_commune": "ST GIRONS EN BEARN", "libell_d_acheminement": "ST GIRONS EN BEARN", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64479"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d62d97370565e5a1b9c5eae1dcf51fec426418d", "fields": {"nom_de_la_commune": "ST JEAN DE LUZ", "libell_d_acheminement": "ST JEAN DE LUZ", "code_postal": "64500", "coordonnees_gps": [43.389108568, -1.63881898251], "code_commune_insee": "64483"}, "geometry": {"type": "Point", "coordinates": [-1.63881898251, 43.389108568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "418ea1218e293e8ac676dce2bf669aea3f3a9858", "fields": {"nom_de_la_commune": "ST JEAN PIED DE PORT", "libell_d_acheminement": "ST JEAN PIED DE PORT", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64485"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4732b818419e3e511ea694f005aa727d5276015b", "fields": {"nom_de_la_commune": "ST MARTIN D ARROSSA", "libell_d_acheminement": "ST MARTIN D ARROSSA", "code_postal": "64780", "coordonnees_gps": [43.2518666668, -1.28852003798], "code_commune_insee": "64490"}, "geometry": {"type": "Point", "coordinates": [-1.28852003798, 43.2518666668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18314842ca6d4cfb13100a635eeea0dcadaeda7", "fields": {"nom_de_la_commune": "ST PALAIS", "libell_d_acheminement": "ST PALAIS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64493"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e8c1ef9f64aa437604768b7a4db9ae28ca458fc", "fields": {"nom_de_la_commune": "ST PEE SUR NIVELLE", "libell_d_acheminement": "ST PEE SUR NIVELLE", "code_postal": "64310", "coordonnees_gps": [43.3310114321, -1.57798494011], "code_commune_insee": "64495"}, "geometry": {"type": "Point", "coordinates": [-1.57798494011, 43.3310114321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c63cb47918b9e4ae7f8825941e12a9bbd29f359", "fields": {"nom_de_la_commune": "ST VINCENT", "libell_d_acheminement": "ST VINCENT", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64498"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36ed56a7e54c30f82a385c1c72b9fa8f0c1e4673", "fields": {"nom_de_la_commune": "SALIES DE BEARN", "libell_d_acheminement": "SALIES DE BEARN", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64499"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de458c05448779a0e1e194565f568b061562565", "fields": {"nom_de_la_commune": "SALLES MONGISCARD", "libell_d_acheminement": "SALLES MONGISCARD", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64500"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e644f28a53aad48e9309e708513e9ae4f427d9cc", "fields": {"nom_de_la_commune": "SAMSONS LION", "libell_d_acheminement": "SAMSONS LION", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64503"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cab66c54fc3a6ed839afaf3f5fca1c9c527c9608", "fields": {"nom_de_la_commune": "SARPOURENX", "libell_d_acheminement": "SARPOURENX", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64505"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20695c0a5bd282e29b8f1ec05b3b09d4ab68a99a", "fields": {"nom_de_la_commune": "SAUBOLE", "libell_d_acheminement": "SAUBOLE", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64507"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a694a7452bfef92dbc55bcf4a86b3206c22febc2", "fields": {"nom_de_la_commune": "SIROS", "libell_d_acheminement": "SIROS", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64525"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb606081364e88fab71ce469733734f1f1fed80", "fields": {"nom_de_la_commune": "TADOUSSE USSAU", "libell_d_acheminement": "TADOUSSE USSAU", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64532"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ad896008a74ed89d8cf0d16cbd5bfcf38802c56", "fields": {"nom_de_la_commune": "URDOS", "libell_d_acheminement": "URDOS", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64542"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6edc48dc3dd6d303ac6b6046079ba00473ffde40", "fields": {"nom_de_la_commune": "VIELLESEGURE", "libell_d_acheminement": "VIELLESEGURE", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64556"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f13d96ca217970bed37af89277056fe0c8686bcc", "fields": {"nom_de_la_commune": "ADERVIELLE POUCHERGUES", "libell_d_acheminement": "ADERVIELLE POUCHERGUES", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65003"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f435ef6bd00ba6acffb850595978c24c376cd5b1", "fields": {"nom_de_la_commune": "ANDREST", "libell_d_acheminement": "ANDREST", "code_postal": "65390", "coordonnees_gps": [43.3119188804, 0.08204368276], "code_commune_insee": "65007"}, "geometry": {"type": "Point", "coordinates": [0.08204368276, 43.3119188804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d357dafd01f14fd352d07e69d757c1cf25cb16e", "fields": {"nom_de_la_commune": "ANLA", "libell_d_acheminement": "ANLA", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65012"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264c9a19a75012d097d570c72b2676ad29576a0d", "fields": {"nom_de_la_commune": "ANSOST", "libell_d_acheminement": "ANSOST", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65013"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88803ec1c2694bee54843827f99bf59dd9829eca", "fields": {"nom_de_la_commune": "ARCIZANS AVANT", "libell_d_acheminement": "ARCIZANS AVANT", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65021"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38585468413bdfcdc507622875e977d0dc19535c", "fields": {"nom_de_la_commune": "ARCIZANS DESSUS", "libell_d_acheminement": "ARCIZANS DESSUS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65022"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4356a5805c83820248bda60694dc31d74837b1f", "fields": {"nom_de_la_commune": "ARNE", "libell_d_acheminement": "ARNE", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65028"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23bc749ca952d754dc97d12d9b7076a5e2892409", "fields": {"nom_de_la_commune": "ARRENS MARSOUS", "libell_d_acheminement": "ARRENS MARSOUS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65032"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f8ef528ba7b326fae7d2601bcb7d125fbc4444", "fields": {"nom_de_la_commune": "ASQUE", "libell_d_acheminement": "ASQUE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65041"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ac3b2da5b015a7fe9848992ed733904ac9e6884", "fields": {"nom_de_la_commune": "AUBAREDE", "libell_d_acheminement": "AUBAREDE", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65044"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9606d2dbf3436f570039d755e9d9fe7ed419077c", "fields": {"nom_de_la_commune": "AURENSAN", "libell_d_acheminement": "AURENSAN", "code_postal": "65390", "coordonnees_gps": [43.3119188804, 0.08204368276], "code_commune_insee": "65048"}, "geometry": {"type": "Point", "coordinates": [0.08204368276, 43.3119188804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d1e368d85f18a6c19905b708255e3abd9209f44", "fields": {"nom_de_la_commune": "BAGNERES DE BIGORRE", "libell_d_acheminement": "BAGNERES DE BIGORRE", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65059"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87329c7a647c2d84808dcb598eb543843fb83ed5", "fields": {"code_postal": "65710", "code_commune_insee": "65059", "libell_d_acheminement": "BAGNERES DE BIGORRE", "ligne_5": "LESPONNE", "nom_de_la_commune": "BAGNERES DE BIGORRE", "coordonnees_gps": [42.9707906298, 0.166937174771]}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d25d265cd5d1de9a497db34d957248f5835318", "fields": {"nom_de_la_commune": "BARBAZAN DEBAT", "libell_d_acheminement": "BARBAZAN DEBAT", "code_postal": "65690", "coordonnees_gps": [43.1995880438, 0.138139149082], "code_commune_insee": "65062"}, "geometry": {"type": "Point", "coordinates": [0.138139149082, 43.1995880438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "649e73c09aaa43a7dc424b0ee4803d55f6a6f59c", "fields": {"nom_de_la_commune": "BARRANCOUEU", "libell_d_acheminement": "BARRANCOUEU", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65066"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48b6f0a0250be080ae4aeccce1d9ae235871d16", "fields": {"nom_de_la_commune": "BARRY", "libell_d_acheminement": "BARRY", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65067"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf97a5162c3134dc37b261a0e84bdcb6fc91bf39", "fields": {"nom_de_la_commune": "LA BARTHE DE NESTE", "libell_d_acheminement": "LA BARTHE DE NESTE", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65069"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56e10e0d3931252f541366bef33e2bdb54bbfd92", "fields": {"nom_de_la_commune": "BEGOLE", "libell_d_acheminement": "BEGOLE", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65079"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3abeae9516000b72aea1b89a5618afccd0c01bb", "fields": {"nom_de_la_commune": "BENQUE", "libell_d_acheminement": "BENQUE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65081"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce09ff31b1331ae2b89ec3798a2b364a2db519ab", "fields": {"nom_de_la_commune": "BETPOUEY", "libell_d_acheminement": "BETPOUEY", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65089"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46ad5cd7e1c2fc81a3735c7c52b8edf97ea82855", "fields": {"nom_de_la_commune": "BIZE", "libell_d_acheminement": "BIZE", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65093"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03ddcb8c4c59ef873e750e65fc934294170262a5", "fields": {"nom_de_la_commune": "BIZOUS", "libell_d_acheminement": "BIZOUS", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65094"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e90cd5fef1addb31bbf4f114cf771567e5b5ec6e", "fields": {"nom_de_la_commune": "BORDERES SUR L ECHEZ", "libell_d_acheminement": "BORDERES SUR L ECHEZ", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65100"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b66d1a4e2f57c42cb878e31a74d53187cca3920b", "fields": {"nom_de_la_commune": "BOUILH DEVANT", "libell_d_acheminement": "BOUILH DEVANT", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65102"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c80b581b13af1dffdd16f85b57a3c44f91c7250", "fields": {"nom_de_la_commune": "BOURREAC", "libell_d_acheminement": "BOURREAC", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65107"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f987f25623f1a54d34565e38a7b7655e5c4429e", "fields": {"nom_de_la_commune": "BUGARD", "libell_d_acheminement": "BUGARD", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65110"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a63f2ea11269cbc7cbc4acdc5456d479511952", "fields": {"nom_de_la_commune": "BULAN", "libell_d_acheminement": "BULAN", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65111"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6cb059f3e8a857d62192a5b5e79a2c7d268891d", "fields": {"nom_de_la_commune": "CAMOUS", "libell_d_acheminement": "CAMOUS", "code_postal": "65410", "coordonnees_gps": [42.9580883388, 0.38930305031], "code_commune_insee": "65122"}, "geometry": {"type": "Point", "coordinates": [0.38930305031, 42.9580883388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f7ef9bc17e8706cbba9c8cfed615a86f9f5c309", "fields": {"code_postal": "65710", "code_commune_insee": "65123", "libell_d_acheminement": "CAMPAN", "ligne_5": "ARTIGUES CAMPAN", "nom_de_la_commune": "CAMPAN", "coordonnees_gps": [42.9707906298, 0.166937174771]}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c3ef58363ae66152137a08456991a1ccd466ac", "fields": {"code_postal": "65710", "code_commune_insee": "65123", "libell_d_acheminement": "CAMPAN", "ligne_5": "GRIPP", "nom_de_la_commune": "CAMPAN", "coordonnees_gps": [42.9707906298, 0.166937174771]}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c14348f7f8e1af7d9d7543bade5a3d3db62764f", "fields": {"nom_de_la_commune": "CASTELBAJAC", "libell_d_acheminement": "CASTELBAJAC", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65128"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5705f727e07cfcb9f3aac3b373c36ecc0d114b3a", "fields": {"nom_de_la_commune": "CASTELVIEILH", "libell_d_acheminement": "CASTELVIEILH", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65131"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c4032e6a2f39887824b2bbe3f4a48834d1d3381", "fields": {"nom_de_la_commune": "CIZOS", "libell_d_acheminement": "CIZOS", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65148"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaa4d71a60eb36adc9461ff9cc0e382e58e0d26e", "fields": {"nom_de_la_commune": "CLARENS", "libell_d_acheminement": "CLARENS", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65150"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49de7f1c9b16846bc581096e9bf0e46869b50e2a", "fields": {"nom_de_la_commune": "ESCALA", "libell_d_acheminement": "ESCALA", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65159"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14fed1f8ce613052f524d96e558efa64881d7041", "fields": {"nom_de_la_commune": "ESCONDEAUX", "libell_d_acheminement": "ESCONDEAUX", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65161"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7189145586d5da3a66f8d6606c5817d46fe4865", "fields": {"nom_de_la_commune": "ESPECHE", "libell_d_acheminement": "ESPECHE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65166"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37b147f2bf2a20855f7d24b27349c4cac6dd479b", "fields": {"nom_de_la_commune": "GALAN", "libell_d_acheminement": "GALAN", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65183"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1fcaba68657baa36cf4dedd686618b846644f02", "fields": {"nom_de_la_commune": "GALEZ", "libell_d_acheminement": "GALEZ", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65184"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6075c661b5f0c374ed76235098bf10ac86dadb1", "fields": {"nom_de_la_commune": "GAZAVE", "libell_d_acheminement": "GAZAVE", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65190"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "309f1bb560d253cc4aaac982ccbe4ed6b49f0b07", "fields": {"nom_de_la_commune": "GEZ", "libell_d_acheminement": "GEZ", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65202"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd7237910b65bfa2ce6999bdd611f8f08f756516", "fields": {"nom_de_la_commune": "GOURGUE", "libell_d_acheminement": "GOURGUE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65207"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bef2cfc7e2dcf6e4d66acd0a2bf4f0170e4b5ce9", "fields": {"nom_de_la_commune": "GRUST", "libell_d_acheminement": "GRUST", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65210"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d66cfc20de2cd07f3c4355e28371962e5e5f0da", "fields": {"nom_de_la_commune": "GUCHAN", "libell_d_acheminement": "GUCHAN", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65211"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d13fed495ef812f744b7f522ce2058d896e5f33", "fields": {"nom_de_la_commune": "HAGEDET", "libell_d_acheminement": "HAGEDET", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65215"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641d1b4dd8b1adc4dd168fd918118385097c0c39", "fields": {"nom_de_la_commune": "HIBARETTE", "libell_d_acheminement": "HIBARETTE", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65220"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d56b415612dd00c9e761ce225b9bc7d6245bd6", "fields": {"nom_de_la_commune": "HIIS", "libell_d_acheminement": "HIIS", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65221"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae222efb7165077941925583a12dfa3927513413", "fields": {"nom_de_la_commune": "IBOS", "libell_d_acheminement": "IBOS", "code_postal": "65420", "coordonnees_gps": [43.2411868167, 8.29948036872e-05], "code_commune_insee": "65226"}, "geometry": {"type": "Point", "coordinates": [8.29948036872e-05, 43.2411868167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c71a54342de90c9f62fdaa6bd849b7b15230079", "fields": {"nom_de_la_commune": "IZAOURT", "libell_d_acheminement": "IZAOURT", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65230"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c743c2e02a5ad7bdc2e50949498708c01c6aa8f", "fields": {"nom_de_la_commune": "IZAUX", "libell_d_acheminement": "IZAUX", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65231"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4431b093d5b6ac26676e4b8b064311af552d1695", "fields": {"nom_de_la_commune": "LACASSAGNE", "libell_d_acheminement": "LACASSAGNE", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65242"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ccbadf04dd0d48760f103f910669121b86464d4", "fields": {"nom_de_la_commune": "LEDAS ET PENTHIES", "libell_d_acheminement": "LEDAS ET PENTHIES", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81141"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "481e48ea3c6a29a5c42061564452f957868d7ae3", "fields": {"nom_de_la_commune": "LOMBERS", "libell_d_acheminement": "LOMBERS", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81147"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebbb8a2d7ccfbe58d80609249216ca8f1b60b804", "fields": {"nom_de_la_commune": "MAZAMET", "libell_d_acheminement": "MAZAMET", "code_postal": "81200", "coordonnees_gps": [43.4762564535, 2.36622372237], "code_commune_insee": "81163"}, "geometry": {"type": "Point", "coordinates": [2.36622372237, 43.4762564535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81d420f90f379697570d09a64c7fe0f0e3dbbd25", "fields": {"nom_de_la_commune": "MIOLLES", "libell_d_acheminement": "MIOLLES", "code_postal": "81250", "coordonnees_gps": [43.8730410539, 2.47494660719], "code_commune_insee": "81167"}, "geometry": {"type": "Point", "coordinates": [2.47494660719, 43.8730410539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44284350610226dcb11bf6b7f21dbb99a14de97e", "fields": {"nom_de_la_commune": "MONTANS", "libell_d_acheminement": "MONTANS", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81171"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30f09e8d9505f9861d8b4a43c01b166fca76d8d1", "fields": {"nom_de_la_commune": "MONTAURIOL", "libell_d_acheminement": "MONTAURIOL", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81172"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6b282c696d915cc2333ff1ddc20724d512b0a7", "fields": {"nom_de_la_commune": "MONTDURAUSSE", "libell_d_acheminement": "MONTDURAUSSE", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81175"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "443c1233e4ef6e98674177a0f17de1ec2a577c9e", "fields": {"nom_de_la_commune": "MONTFA", "libell_d_acheminement": "MONTFA", "code_postal": "81210", "coordonnees_gps": [43.6740454961, 2.30184097262], "code_commune_insee": "81177"}, "geometry": {"type": "Point", "coordinates": [2.30184097262, 43.6740454961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c61829714de5656730f028495081436a738e783f", "fields": {"nom_de_la_commune": "MOULAYRES", "libell_d_acheminement": "MOULAYRES", "code_postal": "81300", "coordonnees_gps": [43.7690659575, 2.00556233123], "code_commune_insee": "81187"}, "geometry": {"type": "Point", "coordinates": [2.00556233123, 43.7690659575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d40fe9be8d6d8aa1415514105118e7430e1ac7", "fields": {"nom_de_la_commune": "PAMPELONNE", "libell_d_acheminement": "PAMPELONNE", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81201"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f3f7b66da05bc5537533364f46ce781a6f3e09e", "fields": {"nom_de_la_commune": "PAYRIN AUGMONTEL", "libell_d_acheminement": "PAYRIN AUGMONTEL", "code_postal": "81660", "coordonnees_gps": [43.5285716347, 2.39739974245], "code_commune_insee": "81204"}, "geometry": {"type": "Point", "coordinates": [2.39739974245, 43.5285716347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "998a5fff4bf54b54864eb21052e0392d36757ef8", "fields": {"nom_de_la_commune": "POULAN POUZOLS", "libell_d_acheminement": "POULAN POUZOLS", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81211"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d88b876d7fb35b94f0f19f1a2005c265f02ec878", "fields": {"nom_de_la_commune": "PRADES", "libell_d_acheminement": "PRADES", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81212"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48e6e9a7aad2efed922f1f129dee853629d57e9", "fields": {"nom_de_la_commune": "LE RIALET", "libell_d_acheminement": "LE RIALET", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81223"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "119ce31be57f9dfe7aaadfb5398fbaca7315bd93", "fields": {"nom_de_la_commune": "RIVIERES", "libell_d_acheminement": "RIVIERES", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81225"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee0ba7ffa659ddddaf7237cf44ba7fedac12198f", "fields": {"nom_de_la_commune": "ROQUECOURBE", "libell_d_acheminement": "ROQUECOURBE", "code_postal": "81210", "coordonnees_gps": [43.6740454961, 2.30184097262], "code_commune_insee": "81227"}, "geometry": {"type": "Point", "coordinates": [2.30184097262, 43.6740454961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fe6bae6925f4adad4bf233819b3ab8cb4e5a00c", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81245"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58389bb1ad292de46027c522626b93a06c0854be", "fields": {"nom_de_la_commune": "ST GAUZENS", "libell_d_acheminement": "ST GAUZENS", "code_postal": "81390", "coordonnees_gps": [43.7576771475, 1.89892940194], "code_commune_insee": "81248"}, "geometry": {"type": "Point", "coordinates": [1.89892940194, 43.7576771475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d15eaf50f1b70ec2c5aaec7f8b63bf49452933f4", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81249"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5e12c25be1dc81b7742442885e8a1978094ea77", "fields": {"nom_de_la_commune": "ST GERMAIN DES PRES", "libell_d_acheminement": "ST GERMAIN DES PRES", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81251"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81315cfaa54037925719a29ee07a7308aeb1d478", "fields": {"nom_de_la_commune": "ST SALVY DE LA BALME", "libell_d_acheminement": "ST SALVY DE LA BALME", "code_postal": "81490", "coordonnees_gps": [43.5859681102, 2.3789399334], "code_commune_insee": "81269"}, "geometry": {"type": "Point", "coordinates": [2.3789399334, 43.5859681102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a230196248ce318a8aa63ca493185abede328327", "fields": {"nom_de_la_commune": "ST URCISSE", "libell_d_acheminement": "ST URCISSE", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81272"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5543ac1b111bdcfe991336a5764b3364c4ebcca7", "fields": {"nom_de_la_commune": "SENAUX", "libell_d_acheminement": "SENAUX", "code_postal": "81530", "coordonnees_gps": [43.7712371341, 2.57768572319], "code_commune_insee": "81282"}, "geometry": {"type": "Point", "coordinates": [2.57768572319, 43.7712371341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0219d3fbaf45b6bf3bb4adf0e071721004e26cf", "fields": {"nom_de_la_commune": "SENOUILLAC", "libell_d_acheminement": "SENOUILLAC", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81283"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66a37149d647022e017061264bf62613c849849a", "fields": {"nom_de_la_commune": "SOREZE", "libell_d_acheminement": "SOREZE", "code_postal": "81540", "coordonnees_gps": [43.443120414, 2.07821163286], "code_commune_insee": "81288"}, "geometry": {"type": "Point", "coordinates": [2.07821163286, 43.443120414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce45e0ae012f10e2cb386fa2999c304ff75d5aea", "fields": {"nom_de_la_commune": "TANUS", "libell_d_acheminement": "TANUS", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81292"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "503d627e4139fcbd830cfb854b87f002b7121d21", "fields": {"nom_de_la_commune": "LE TRAVET", "libell_d_acheminement": "LE TRAVET", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81301"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "947d02ade64bf04a75b4f60f1099929cbe8c34b3", "fields": {"nom_de_la_commune": "VENES", "libell_d_acheminement": "VENES", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81311"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5eb667d5f18df17bd841612e82b9117a92e56d", "fields": {"nom_de_la_commune": "LE VERDIER", "libell_d_acheminement": "LE VERDIER", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81313"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8131999d57d5cb27aabd5128f0df78cd3e8d0aa4", "fields": {"nom_de_la_commune": "VINDRAC ALAYRAC", "libell_d_acheminement": "VINDRAC ALAYRAC", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81320"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61cfb80f8b431bfb56676e60a01159aeee1fc5da", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81326"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df98a855771ccf25720662dfe8c3bbd91e28609b", "fields": {"nom_de_la_commune": "ANGEVILLE", "libell_d_acheminement": "ANGEVILLE", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82003"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04727352593b28053093cba51a796e98e452b645", "fields": {"nom_de_la_commune": "ASQUES", "libell_d_acheminement": "ASQUES", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82004"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2381ebfd67ec577c463b47a31034c47b3f23f6", "fields": {"nom_de_la_commune": "LES BARTHES", "libell_d_acheminement": "LES BARTHES", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82012"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0b7b2c046a37b021dd50cb20011dea28e3accc9", "fields": {"nom_de_la_commune": "BOULOC", "libell_d_acheminement": "BOULOC", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82021"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "986e96a33fa681a6ae121fa655de8a50dae4e2e0", "fields": {"nom_de_la_commune": "BRESSOLS", "libell_d_acheminement": "BRESSOLS", "code_postal": "82710", "coordonnees_gps": [43.9542707748, 1.31624399126], "code_commune_insee": "82025"}, "geometry": {"type": "Point", "coordinates": [1.31624399126, 43.9542707748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bf6cd76013770a8a12581128afc792c202c57e1", "fields": {"nom_de_la_commune": "CASTELMAYRAN", "libell_d_acheminement": "CASTELMAYRAN", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82031"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "423f7b19fd2147432adcd61bd656b6c18d328107", "fields": {"nom_de_la_commune": "CAUSSADE", "libell_d_acheminement": "CAUSSADE", "code_postal": "82300", "coordonnees_gps": [44.1565353923, 1.5436793185], "code_commune_insee": "82037"}, "geometry": {"type": "Point", "coordinates": [1.5436793185, 44.1565353923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310734089f0098173fd24a512134c5c668728509", "fields": {"nom_de_la_commune": "CAYRAC", "libell_d_acheminement": "CAYRAC", "code_postal": "82440", "coordonnees_gps": [44.13317839, 1.44584346217], "code_commune_insee": "82039"}, "geometry": {"type": "Point", "coordinates": [1.44584346217, 44.13317839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd72a57166151fee3856117a6f48e65087b73b7c", "fields": {"nom_de_la_commune": "CAYRIECH", "libell_d_acheminement": "CAYRIECH", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82040"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8b5a4a93ab0584aaea6b0d9e4e42722755331c6", "fields": {"nom_de_la_commune": "CAZALS", "libell_d_acheminement": "CAZALS", "code_postal": "82140", "coordonnees_gps": [44.152188201, 1.74194876605], "code_commune_insee": "82041"}, "geometry": {"type": "Point", "coordinates": [1.74194876605, 44.152188201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f8d8a1149571b45b80be5441e1b4e694026cd5", "fields": {"nom_de_la_commune": "CORBARIEU", "libell_d_acheminement": "CORBARIEU", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82044"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ce06d71927aca854679f81e9d627d4c854ceb4b", "fields": {"nom_de_la_commune": "DUNES", "libell_d_acheminement": "DUNES", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82050"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19cf65bbb98afde1c01c6db27790cb3cf9981a0", "fields": {"nom_de_la_commune": "FAUROUX", "libell_d_acheminement": "FAUROUX", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82060"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8186cc317cac76f708bd6ad85106f03a379b9f4d", "fields": {"nom_de_la_commune": "FENEYROLS", "libell_d_acheminement": "FENEYROLS", "code_postal": "82140", "coordonnees_gps": [44.152188201, 1.74194876605], "code_commune_insee": "82061"}, "geometry": {"type": "Point", "coordinates": [1.74194876605, 44.152188201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d77585b60b22903f1b9e5d42d44a8c2101abc06a", "fields": {"nom_de_la_commune": "GENEBRIERES", "libell_d_acheminement": "GENEBRIERES", "code_postal": "82230", "coordonnees_gps": [43.9774227851, 1.52946541503], "code_commune_insee": "82066"}, "geometry": {"type": "Point", "coordinates": [1.52946541503, 43.9774227851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0831119473205a5a0b9ececdc6ffed75da0da0a8", "fields": {"nom_de_la_commune": "GLATENS", "libell_d_acheminement": "GLATENS", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82070"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd08ddf6afa635ce489ae0da736e974ab6e9221", "fields": {"nom_de_la_commune": "GOLFECH", "libell_d_acheminement": "GOLFECH", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82072"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aaa83370fa6297d55d80a75ffaa37d9473a2cf1", "fields": {"nom_de_la_commune": "GRISOLLES", "libell_d_acheminement": "GRISOLLES", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82075"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4190308dbd2fd475b9367681c351b16b90ddd49b", "fields": {"nom_de_la_commune": "LABASTIDE DE PENNE", "libell_d_acheminement": "LABASTIDE DE PENNE", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82078"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cccb8a23e9cb73d1098bdfbb4fb07ca34a74071", "fields": {"nom_de_la_commune": "LABASTIDE DU TEMPLE", "libell_d_acheminement": "LABASTIDE DU TEMPLE", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82080"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d780849976a013fb514439f21131394508da21", "fields": {"nom_de_la_commune": "LACOUR", "libell_d_acheminement": "LACOUR", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82084"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "765c9f2d0fc8a4d99963dde3da56a6dda36f6f16", "fields": {"nom_de_la_commune": "LACOURT ST PIERRE", "libell_d_acheminement": "LACOURT ST PIERRE", "code_postal": "82290", "coordonnees_gps": [44.0394500882, 1.24886608887], "code_commune_insee": "82085"}, "geometry": {"type": "Point", "coordinates": [1.24886608887, 44.0394500882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb9729ec6c1d7959a77d5a28b58e720d92e7e35", "fields": {"nom_de_la_commune": "LAFITTE", "libell_d_acheminement": "LAFITTE", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82086"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c81184649e542e93786389885fae4773658df20e", "fields": {"nom_de_la_commune": "LAFRANCAISE", "libell_d_acheminement": "LAFRANCAISE", "code_postal": "82130", "coordonnees_gps": [44.118372906, 1.29866187228], "code_commune_insee": "82087"}, "geometry": {"type": "Point", "coordinates": [1.29866187228, 44.118372906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81f544b5361610769dea5a3692f5ac7d1f1ff3ee", "fields": {"nom_de_la_commune": "LAMOTHE CUMONT", "libell_d_acheminement": "LAMOTHE CUMONT", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82091"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ed911bcc3cd8323fd3bb05edfbbbb91992929b", "fields": {"nom_de_la_commune": "LAPENCHE", "libell_d_acheminement": "LAPENCHE", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82092"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bfc49d26bccb28afee0fb3d548f79473082f833", "fields": {"nom_de_la_commune": "MIRABEL", "libell_d_acheminement": "MIRABEL", "code_postal": "82440", "coordonnees_gps": [44.13317839, 1.44584346217], "code_commune_insee": "82110"}, "geometry": {"type": "Point", "coordinates": [1.44584346217, 44.13317839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25c94401a3976b71cd3daea000c73e47dcb1bde2", "fields": {"nom_de_la_commune": "MONBEQUI", "libell_d_acheminement": "MONBEQUI", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82114"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65531c9623d9f41210bcdbc54ba9f9843b58fece", "fields": {"nom_de_la_commune": "MONTAIGU DE QUERCY", "libell_d_acheminement": "MONTAIGU DE QUERCY", "code_postal": "82150", "coordonnees_gps": [44.3360020267, 0.998534979807], "code_commune_insee": "82117"}, "geometry": {"type": "Point", "coordinates": [0.998534979807, 44.3360020267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08e6b8044b8e7393bb79e3628fc5830d76c4947e", "fields": {"nom_de_la_commune": "MONTRICOUX", "libell_d_acheminement": "MONTRICOUX", "code_postal": "82800", "coordonnees_gps": [44.0611709641, 1.58586539756], "code_commune_insee": "82132"}, "geometry": {"type": "Point", "coordinates": [1.58586539756, 44.0611709641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "698612ff99a410271febb63ad40a8fe75711b7f7", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82139"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c73c69ffd3f63a547519c5bb6fea50b0e593a6", "fields": {"nom_de_la_commune": "POUPAS", "libell_d_acheminement": "POUPAS", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82143"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "725e16125270f6442cbe4f04012e6b7164995dd7", "fields": {"nom_de_la_commune": "PUYGAILLARD DE QUERCY", "libell_d_acheminement": "PUYGAILLARD DE QUERCY", "code_postal": "82800", "coordonnees_gps": [44.0611709641, 1.58586539756], "code_commune_insee": "82145"}, "geometry": {"type": "Point", "coordinates": [1.58586539756, 44.0611709641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b396f51187833186b5c06fa776a0f5b22e534094", "fields": {"nom_de_la_commune": "PUYGAILLARD DE LOMAGNE", "libell_d_acheminement": "PUYGAILLARD DE LOMAGNE", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82146"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7f4a0ae5f67ebc57a1038804abe75d1627a92aa", "fields": {"nom_de_la_commune": "ROQUECOR", "libell_d_acheminement": "ROQUECOR", "code_postal": "82150", "coordonnees_gps": [44.3360020267, 0.998534979807], "code_commune_insee": "82151"}, "geometry": {"type": "Point", "coordinates": [0.998534979807, 44.3360020267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec12a62f5272c8889379ee53037179701b0a91f", "fields": {"nom_de_la_commune": "ST ETIENNE DE TULMONT", "libell_d_acheminement": "ST ETIENNE DE TULMONT", "code_postal": "82410", "coordonnees_gps": [44.044875876, 1.4578010411], "code_commune_insee": "82161"}, "geometry": {"type": "Point", "coordinates": [1.4578010411, 44.044875876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1167ff4db68af7190a6d1965b279a225ffd523c3", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82166"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1be60a97ebad4f941b6b8102d18d0beebf8f28", "fields": {"nom_de_la_commune": "ST NAUPHARY", "libell_d_acheminement": "ST NAUPHARY", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82167"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04192e5e2dd5e2212b6ce43b8c1b6af52cb406b0", "fields": {"nom_de_la_commune": "ST PROJET", "libell_d_acheminement": "ST PROJET", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82172"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e82b8b24dbb682700c252a92ae987962c113b4e", "fields": {"nom_de_la_commune": "SAVENES", "libell_d_acheminement": "SAVENES", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82178"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5493063c2ea672ee69042018bf65827c3097de9", "fields": {"nom_de_la_commune": "SEPTFONDS", "libell_d_acheminement": "SEPTFONDS", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82179"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2059b7635f9506522084863ce3664643f5a82faa", "fields": {"nom_de_la_commune": "SERIGNAC", "libell_d_acheminement": "SERIGNAC", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82180"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "589ec872da1444bbd3aa10dcdee412880c34a4a8", "fields": {"nom_de_la_commune": "SISTELS", "libell_d_acheminement": "SISTELS", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82181"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290f4019f1638c66c94df85a10edd0d6e68527a2", "fields": {"nom_de_la_commune": "VAISSAC", "libell_d_acheminement": "VAISSAC", "code_postal": "82800", "coordonnees_gps": [44.0611709641, 1.58586539756], "code_commune_insee": "82184"}, "geometry": {"type": "Point", "coordinates": [1.58586539756, 44.0611709641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77decca0fb42ab6293b1058862054c227c30ed05", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82188"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fd390073f36a07cc51b6ac01cd70970bb4be002", "fields": {"nom_de_la_commune": "LES ADRETS DE L ESTEREL", "libell_d_acheminement": "LES ADRETS DE L ESTEREL", "code_postal": "83600", "coordonnees_gps": [43.4958707206, 6.756116629], "code_commune_insee": "83001"}, "geometry": {"type": "Point", "coordinates": [6.756116629, 43.4958707206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "899061e4b801c5446ccd9e8647ac7b2e7b44b2d6", "fields": {"nom_de_la_commune": "LES ARCS", "libell_d_acheminement": "LES ARCS", "code_postal": "83460", "coordonnees_gps": [43.4531977218, 6.47549589741], "code_commune_insee": "83004"}, "geometry": {"type": "Point", "coordinates": [6.47549589741, 43.4531977218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "683eefb2a10193149bf24a2cb23903eabfad2e02", "fields": {"nom_de_la_commune": "ARTIGUES", "libell_d_acheminement": "ARTIGUES", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83006"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ec25ec0a8d990e6512dd2b2d845503b4a147b3", "fields": {"nom_de_la_commune": "BANDOL", "libell_d_acheminement": "BANDOL", "code_postal": "83150", "coordonnees_gps": [43.1476846529, 5.74747621161], "code_commune_insee": "83009"}, "geometry": {"type": "Point", "coordinates": [5.74747621161, 43.1476846529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99496784b1f4e4c8947eefa3af776080a686051", "fields": {"nom_de_la_commune": "BARGEME", "libell_d_acheminement": "BARGEME", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83010"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c773da85d2d04d6eb402b7f6eea8aa1a5417282", "fields": {"nom_de_la_commune": "LE BOURGUET", "libell_d_acheminement": "LE BOURGUET", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83020"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148efdf1527bde9b2022b61d3fedc1441844dc4e", "fields": {"nom_de_la_commune": "BRIGNOLES", "libell_d_acheminement": "BRIGNOLES", "code_postal": "83170", "coordonnees_gps": [43.3988588214, 6.01212360255], "code_commune_insee": "83023"}, "geometry": {"type": "Point", "coordinates": [6.01212360255, 43.3988588214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4de50f11f9b008a5fee7b28adc83092e1b38bd", "fields": {"nom_de_la_commune": "CALLAS", "libell_d_acheminement": "CALLAS", "code_postal": "83830", "coordonnees_gps": [43.5889184339, 6.54988414192], "code_commune_insee": "83028"}, "geometry": {"type": "Point", "coordinates": [6.54988414192, 43.5889184339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ead7a7637d5bded697257fcd02c877c0d33d3cc8", "fields": {"nom_de_la_commune": "CARQUEIRANNE", "libell_d_acheminement": "CARQUEIRANNE", "code_postal": "83320", "coordonnees_gps": [43.0970088357, 6.07125195392], "code_commune_insee": "83034"}, "geometry": {"type": "Point", "coordinates": [6.07125195392, 43.0970088357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a12149665df742889a55fd06a68654b191d637", "fields": {"nom_de_la_commune": "LE CASTELLET", "libell_d_acheminement": "LE CASTELLET", "code_postal": "83330", "coordonnees_gps": [43.2073445411, 5.81845184293], "code_commune_insee": "83035"}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "068c66c9821662b0a352f4359100d97b565c5f56", "fields": {"code_postal": "83300", "code_commune_insee": "83038", "libell_d_acheminement": "CHATEAUDOUBLE", "ligne_5": "REBOUILLON", "nom_de_la_commune": "CHATEAUDOUBLE", "coordonnees_gps": [43.574421442, 6.44637854358]}, "geometry": {"type": "Point", "coordinates": [6.44637854358, 43.574421442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d38b26646299098e23f5ab9e2c828669565be4b7", "fields": {"nom_de_la_commune": "CHATEAUVIEUX", "libell_d_acheminement": "CHATEAUVIEUX", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83040"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1401390d7d7b13b10366243809e1066ccebc39e9", "fields": {"nom_de_la_commune": "DRAGUIGNAN", "libell_d_acheminement": "DRAGUIGNAN", "code_postal": "83300", "coordonnees_gps": [43.574421442, 6.44637854358], "code_commune_insee": "83050"}, "geometry": {"type": "Point", "coordinates": [6.44637854358, 43.574421442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942c3d1bce3b8c66b5064c31a7989d1c0aa4710c", "fields": {"nom_de_la_commune": "FOX AMPHOUX", "libell_d_acheminement": "FOX AMPHOUX", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83060"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6e6f1954f70c443a1617bf61a6e2a8a0297085d", "fields": {"nom_de_la_commune": "LA GARDE FREINET", "libell_d_acheminement": "LA GARDE FREINET", "code_postal": "83680", "coordonnees_gps": [43.3234439298, 6.46671514244], "code_commune_insee": "83063"}, "geometry": {"type": "Point", "coordinates": [6.46671514244, 43.3234439298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "730145384bb2c0d464ea66c6de4625db0dfceacd", "fields": {"nom_de_la_commune": "GONFARON", "libell_d_acheminement": "GONFARON", "code_postal": "83590", "coordonnees_gps": [43.3200955688, 6.30065093294], "code_commune_insee": "83067"}, "geometry": {"type": "Point", "coordinates": [6.30065093294, 43.3200955688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f47d5ade9fdbf2e48aea1414f85073c74eeb103", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "HYERES PLAGE", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc6b4e36ecbb45d6861c6e37dba83491e31a7cf9", "fields": {"nom_de_la_commune": "MAZAUGUES", "libell_d_acheminement": "MAZAUGUES", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83076"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63365dcce02264256effd3727ded3fd12dde8606", "fields": {"nom_de_la_commune": "MONTAUROUX", "libell_d_acheminement": "MONTAUROUX", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83081"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37943aa768adc1ba0cc2379247c40b099f527b9c", "fields": {"nom_de_la_commune": "MONTMEYAN", "libell_d_acheminement": "MONTMEYAN", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83084"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89c687d9b5f8be48912ab0a8894524a7f06c1aa3", "fields": {"nom_de_la_commune": "PUGET VILLE", "libell_d_acheminement": "PUGET VILLE", "code_postal": "83390", "coordonnees_gps": [43.2473941525, 6.13306231898], "code_commune_insee": "83100"}, "geometry": {"type": "Point", "coordinates": [6.13306231898, 43.2473941525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d58a7ce401d63f977ed92b3519053db2061cd90", "fields": {"nom_de_la_commune": "REGUSSE", "libell_d_acheminement": "REGUSSE", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83102"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8196a13300b4c63c82c9e33ee6f00768f3b41edd", "fields": {"nom_de_la_commune": "LE REVEST LES EAUX", "libell_d_acheminement": "LE REVEST LES EAUX", "code_postal": "83200", "coordonnees_gps": [43.15297354, 5.93725605869], "code_commune_insee": "83103"}, "geometry": {"type": "Point", "coordinates": [5.93725605869, 43.15297354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4603268807a3a21a280d19d5f465d7efb412a8b6", "fields": {"code_postal": "83380", "code_commune_insee": "83107", "libell_d_acheminement": "ROQUEBRUNE SUR ARGENS", "ligne_5": "LES ISSAMBRES", "nom_de_la_commune": "ROQUEBRUNE SUR ARGENS", "coordonnees_gps": [43.4286195636, 6.65195663362]}, "geometry": {"type": "Point", "coordinates": [6.65195663362, 43.4286195636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e000fb04bcd2306d600460b2fc696d14c4d301b", "fields": {"nom_de_la_commune": "EPIERRE", "libell_d_acheminement": "EPIERRE", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73109"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e37a5a6276306e29cc978b9ee016902a4a104f0", "fields": {"nom_de_la_commune": "FLUMET", "libell_d_acheminement": "FLUMET", "code_postal": "73590", "coordonnees_gps": [45.8256229231, 6.51404796516], "code_commune_insee": "73114"}, "geometry": {"type": "Point", "coordinates": [6.51404796516, 45.8256229231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f2a70b6c9471d6d6b21193bdc10e31e18aa19f", "fields": {"nom_de_la_commune": "FONTCOUVERTE LA TOUSSUIRE", "libell_d_acheminement": "FONTCOUVERTE LA TOUSSUIRE", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73116"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e11e9286997fbbec1b1f39f9a7f21a0a225d301c", "fields": {"nom_de_la_commune": "GERBAIX", "libell_d_acheminement": "GERBAIX", "code_postal": "73470", "coordonnees_gps": [45.5905101908, 5.77033737322], "code_commune_insee": "73122"}, "geometry": {"type": "Point", "coordinates": [5.77033737322, 45.5905101908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6f8914d2050a09f2b6f8b5b624d49999e111b52", "fields": {"nom_de_la_commune": "GRESY SUR AIX", "libell_d_acheminement": "GRESY SUR AIX", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73128"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8021eaec7fd7cdefd5be9bd32a9dda55de37c58", "fields": {"nom_de_la_commune": "HAUTELUCE", "libell_d_acheminement": "HAUTELUCE", "code_postal": "73620", "coordonnees_gps": [45.7642386562, 6.61548385248], "code_commune_insee": "73132"}, "geometry": {"type": "Point", "coordinates": [6.61548385248, 45.7642386562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e35eebfb0b2f76477f047d33dd1a492f99bae7f", "fields": {"nom_de_la_commune": "JARSY", "libell_d_acheminement": "JARSY", "code_postal": "73630", "coordonnees_gps": [45.6548339489, 6.17579886846], "code_commune_insee": "73139"}, "geometry": {"type": "Point", "coordinates": [6.17579886846, 45.6548339489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce9b2edbf24b0f26ea6d319de6e807db9d0cab4", "fields": {"nom_de_la_commune": "LANSLEBOURG MONT CENIS", "libell_d_acheminement": "LANSLEBOURG MONT CENIS", "code_postal": "73480", "coordonnees_gps": [45.3065460513, 7.01735410768], "code_commune_insee": "73143"}, "geometry": {"type": "Point", "coordinates": [7.01735410768, 45.3065460513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc8dc91544b6466d7ec40e0953ab6ad4365e132", "fields": {"code_postal": "73210", "code_commune_insee": "73150", "libell_d_acheminement": "LA PLAGNE TARENTAISE", "ligne_5": "BELLENTRE", "nom_de_la_commune": "LA PLAGNE TARENTAISE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74d3111166c1f865b11edb021b812ef9e5688790", "fields": {"code_postal": "73210", "code_commune_insee": "73150", "libell_d_acheminement": "LA PLAGNE TARENTAISE", "ligne_5": "LA COTE D AIME", "nom_de_la_commune": "LA PLAGNE TARENTAISE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e584a9288f4dbfe0f4efdbaa66e8d5bd127f5e96", "fields": {"code_postal": "73210", "code_commune_insee": "73150", "libell_d_acheminement": "LA PLAGNE TARENTAISE", "ligne_5": "VALEZAN", "nom_de_la_commune": "LA PLAGNE TARENTAISE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b711503e4fbe0efeafd9b9919cf5713a6012476e", "fields": {"nom_de_la_commune": "LES MARCHES", "libell_d_acheminement": "LES MARCHES", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73151"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "996198fd721ad6f530b8148460e9b4afccf31f8d", "fields": {"nom_de_la_commune": "MARCIEUX", "libell_d_acheminement": "MARCIEUX", "code_postal": "73470", "coordonnees_gps": [45.5905101908, 5.77033737322], "code_commune_insee": "73152"}, "geometry": {"type": "Point", "coordinates": [5.77033737322, 45.5905101908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "637cde6d6470ef3444612cca25847b3d7b350d9f", "fields": {"nom_de_la_commune": "MARTHOD", "libell_d_acheminement": "MARTHOD", "code_postal": "73400", "coordonnees_gps": [45.7638408088, 6.43638316061], "code_commune_insee": "73153"}, "geometry": {"type": "Point", "coordinates": [6.43638316061, 45.7638408088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd284101a7a7f2cc92a2427782cb0fb8364d4d7e", "fields": {"nom_de_la_commune": "LES MOLLETTES", "libell_d_acheminement": "LES MOLLETTES", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73159"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c28f8eed57c66c3479799ead735bb742327f760", "fields": {"nom_de_la_commune": "MONTHION", "libell_d_acheminement": "MONTHION", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73170"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c8228655fb18efdfb22952ce7439e208664eca9", "fields": {"nom_de_la_commune": "MOTZ", "libell_d_acheminement": "MOTZ", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73180"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b44b8e2b8a81f9559b87ea6036babfd7e25ea3f", "fields": {"nom_de_la_commune": "NANCES", "libell_d_acheminement": "NANCES", "code_postal": "73470", "coordonnees_gps": [45.5905101908, 5.77033737322], "code_commune_insee": "73184"}, "geometry": {"type": "Point", "coordinates": [5.77033737322, 45.5905101908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70432b3fdd9b54099f57ec672c1683610e5d0d7b", "fields": {"nom_de_la_commune": "LA LECHERE", "libell_d_acheminement": "LA LECHERE", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73187"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13eca05ab7b62b1fe430f46dfc603c461f367da4", "fields": {"code_postal": "73260", "code_commune_insee": "73187", "libell_d_acheminement": "LA LECHERE", "ligne_5": "NAVES", "nom_de_la_commune": "LA LECHERE", "coordonnees_gps": [45.5172397456, 6.46368709326]}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9ecd24d44b0fc611458bf3756a42e70bc1ce227", "fields": {"code_postal": "73260", "code_commune_insee": "73187", "libell_d_acheminement": "LA LECHERE", "ligne_5": "PETIT COEUR", "nom_de_la_commune": "LA LECHERE", "coordonnees_gps": [45.5172397456, 6.46368709326]}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad09f2810fc7d3673eb2f3124ef6a1719ba546e9", "fields": {"nom_de_la_commune": "NOTRE DAME DES MILLIERES", "libell_d_acheminement": "NOTRE DAME DES MILLIERES", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73188"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb1a6f57f9206e828fe7baf38f514ee670f0e47", "fields": {"nom_de_la_commune": "LA PERRIERE", "libell_d_acheminement": "LA PERRIERE", "code_postal": "73600", "coordonnees_gps": [45.3739609607, 6.53145730027], "code_commune_insee": "73198"}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2e8b12547b3f285ef88437a1e5d0daee09629ed", "fields": {"nom_de_la_commune": "PLANAISE", "libell_d_acheminement": "PLANAISE", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73200"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "617cdd8a7e67b23f6289adbfbf3965455c515df6", "fields": {"code_postal": "73300", "code_commune_insee": "73203", "libell_d_acheminement": "PONTAMAFREY MONTPASCAL", "ligne_5": "MONTPASCAL", "nom_de_la_commune": "PONTAMAFREY MONTPASCAL", "coordonnees_gps": [45.2555418724, 6.33510660794]}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9f5c42a590fdebf4869f928b3f0b9adb03d3d46", "fields": {"nom_de_la_commune": "PRESLE", "libell_d_acheminement": "PRESLE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73207"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2fbecb26d04cb6120531aa2efb63cf53fa6b21a", "fields": {"nom_de_la_commune": "RANDENS", "libell_d_acheminement": "RANDENS", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73212"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c22fcca20cd82d68aa8c1b138035a84a8ebafb6e", "fields": {"nom_de_la_commune": "LA ROCHETTE", "libell_d_acheminement": "LA ROCHETTE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73215"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "524e53ae2aca727de3d21c1b99a49b2e9244ef50", "fields": {"nom_de_la_commune": "STE HELENE DU LAC", "libell_d_acheminement": "STE HELENE DU LAC", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73240"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19a9593e1a1193ca325bdb5fc3ae95bc4fcd0763", "fields": {"nom_de_la_commune": "STE HELENE SUR ISERE", "libell_d_acheminement": "STE HELENE SUR ISERE", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73241"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0fd7c206127f8e39f26b6d00de130c09981bbcb", "fields": {"code_postal": "73100", "code_commune_insee": "73263", "libell_d_acheminement": "ST OFFENGE", "ligne_5": "ST OFFENGE DESSUS", "nom_de_la_commune": "ST OFFENGE", "coordonnees_gps": [45.7110465411, 5.94212260662]}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f19e1df54e9c03d09ef21957d31aa7da5c900e2c", "fields": {"nom_de_la_commune": "ST OYEN", "libell_d_acheminement": "ST OYEN", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73266"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30efe2fe12605ca6fb6107dc14bc9a77bca32b3d", "fields": {"nom_de_la_commune": "ST PIERRE D ALBIGNY", "libell_d_acheminement": "ST PIERRE D ALBIGNY", "code_postal": "73250", "coordonnees_gps": [45.5739753959, 6.15768953868], "code_commune_insee": "73270"}, "geometry": {"type": "Point", "coordinates": [6.15768953868, 45.5739753959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1cc19552781e7f98c03a508cbd1cd7d3b85725b", "fields": {"nom_de_la_commune": "ST PIERRE DE BELLEVILLE", "libell_d_acheminement": "ST PIERRE DE BELLEVILLE", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73272"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68af5cb85dee15bd84987127b865c655a85a5618", "fields": {"nom_de_la_commune": "ST PIERRE DE GENEBROZ", "libell_d_acheminement": "ST PIERRE DE GENEBROZ", "code_postal": "73360", "coordonnees_gps": [45.4669972667, 5.76456264233], "code_commune_insee": "73275"}, "geometry": {"type": "Point", "coordinates": [5.76456264233, 45.4669972667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e09b585871361118c8efe28ac0f18f7e7ea4c6", "fields": {"nom_de_la_commune": "TRESSERVE", "libell_d_acheminement": "TRESSERVE", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73300"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "350cabc52a7e38e41c5e7d0a9c579257e2ccfc28", "fields": {"nom_de_la_commune": "LA TRINITE", "libell_d_acheminement": "LA TRINITE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73302"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "927adc3ba4b7a10fce873b34f08d538dfb29da80", "fields": {"nom_de_la_commune": "VALMEINIER", "libell_d_acheminement": "VALMEINIER", "code_postal": "73450", "coordonnees_gps": [45.1313081398, 6.44772577617], "code_commune_insee": "73307"}, "geometry": {"type": "Point", "coordinates": [6.44772577617, 45.1313081398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e6773a9c0a90b5181644c7797027f3c3c936592", "fields": {"nom_de_la_commune": "LE VERNEIL", "libell_d_acheminement": "LE VERNEIL", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73311"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "473610decab11af19190cb35b7c662ee147c3919", "fields": {"nom_de_la_commune": "VILLARD D HERY", "libell_d_acheminement": "VILLARD D HERY", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73314"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2891905e0c10c38c23126c19cccd82be2ab2bbc4", "fields": {"nom_de_la_commune": "VILLARD LEGER", "libell_d_acheminement": "VILLARD LEGER", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73315"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a51bd8111a4ef1bbf48856892bb7f03a3ef4c3", "fields": {"nom_de_la_commune": "VILLARODIN BOURGET", "libell_d_acheminement": "VILLARODIN BOURGET", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73322"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21fe0a08f462f06bc333de0a71ec65a17c071525", "fields": {"nom_de_la_commune": "VILLAROGER", "libell_d_acheminement": "VILLAROGER", "code_postal": "73640", "coordonnees_gps": [45.5779597049, 6.92431874629], "code_commune_insee": "73323"}, "geometry": {"type": "Point", "coordinates": [6.92431874629, 45.5779597049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "059eed4a8d612f863a1032a256309cedf8343ac3", "fields": {"nom_de_la_commune": "YENNE", "libell_d_acheminement": "YENNE", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73330"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a138ff38e4aa908875e812473c0b330b789436f3", "fields": {"nom_de_la_commune": "ALLONZIER LA CAILLE", "libell_d_acheminement": "ALLONZIER LA CAILLE", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74006"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb69c4aeeee743e56324f01addc852959a799be", "fields": {"nom_de_la_commune": "AMANCY", "libell_d_acheminement": "AMANCY", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74007"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8f2b7aab2ae3a165d219d487dd0aa25c7a9ca22", "fields": {"nom_de_la_commune": "AMBILLY", "libell_d_acheminement": "AMBILLY", "code_postal": "74100", "coordonnees_gps": [46.1886553142, 6.24703235488], "code_commune_insee": "74008"}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ed8f4a9f4f814fad32327f761e84242a3ac186", "fields": {"nom_de_la_commune": "ANNECY", "libell_d_acheminement": "ANNECY", "code_postal": "74000", "coordonnees_gps": [45.8901612835, 6.12568603812], "code_commune_insee": "74010"}, "geometry": {"type": "Point", "coordinates": [6.12568603812, 45.8901612835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8546e5765b96a5f94ace8e1ec2d3b2060ab8ac3f", "fields": {"nom_de_la_commune": "ANNEMASSE", "libell_d_acheminement": "ANNEMASSE", "code_postal": "74100", "coordonnees_gps": [46.1886553142, 6.24703235488], "code_commune_insee": "74012"}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "080f55080722907ca12e42a93e51cbabd334586f", "fields": {"code_postal": "74300", "code_commune_insee": "74014", "libell_d_acheminement": "ARACHES LA FRASSE", "ligne_5": "LES CARROZ D ARACHES", "nom_de_la_commune": "ARACHES LA FRASSE", "coordonnees_gps": [46.0342131745, 6.61842009953]}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d200857e7457e81652cd83014d6457b854f860dc", "fields": {"nom_de_la_commune": "AVIERNOZ", "libell_d_acheminement": "AVIERNOZ", "code_postal": "74570", "coordonnees_gps": [46.0031081004, 6.25063227534], "code_commune_insee": "74022"}, "geometry": {"type": "Point", "coordinates": [6.25063227534, 46.0031081004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df34b827c9078efa0da2c9f0407806b55984f9d2", "fields": {"nom_de_la_commune": "LE BIOT", "libell_d_acheminement": "LE BIOT", "code_postal": "74430", "coordonnees_gps": [46.2473273724, 6.63608245857], "code_commune_insee": "74034"}, "geometry": {"type": "Point", "coordinates": [6.63608245857, 46.2473273724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "027548d234b90b375c08a44ce18a001eb8fd9ccd", "fields": {"nom_de_la_commune": "BLOYE", "libell_d_acheminement": "BLOYE", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74035"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "708d9101561c8ec6aaf8f3455462462601d30798", "fields": {"nom_de_la_commune": "BOGEVE", "libell_d_acheminement": "BOGEVE", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74038"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eda03bb466a9ddaa50f11ad596d7f65165e2164", "fields": {"nom_de_la_commune": "BONNE", "libell_d_acheminement": "BONNE", "code_postal": "74380", "coordonnees_gps": [46.1808749905, 6.30733667317], "code_commune_insee": "74040"}, "geometry": {"type": "Point", "coordinates": [6.30733667317, 46.1808749905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50539663a6b998b4c6e59784d8d95095ea6cfc76", "fields": {"nom_de_la_commune": "BONNEVILLE", "libell_d_acheminement": "BONNEVILLE", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74042"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50c378d9f3272837cc71fd3996863fcff494804c", "fields": {"nom_de_la_commune": "CHAINAZ LES FRASSES", "libell_d_acheminement": "CHAINAZ LES FRASSES", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74054"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7379042930546605f263d2642c67f85231225e02", "fields": {"nom_de_la_commune": "CHALLONGES", "libell_d_acheminement": "CHALLONGES", "code_postal": "74910", "coordonnees_gps": [46.0064819819, 5.83834131113], "code_commune_insee": "74055"}, "geometry": {"type": "Point", "coordinates": [5.83834131113, 46.0064819819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a590229356d664a8ad36f2cffe60488055f7a4c7", "fields": {"code_postal": "74400", "code_commune_insee": "74056", "libell_d_acheminement": "CHAMONIX MONT BLANC", "ligne_5": "LES PRAZ DE CHAMONIX", "nom_de_la_commune": "CHAMONIX MONT BLANC", "coordonnees_gps": [45.931307263, 6.92411845534]}, "geometry": {"type": "Point", "coordinates": [6.92411845534, 45.931307263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a064e65eab6e34e41d6ee732347bf8c8b5aab4b7", "fields": {"nom_de_la_commune": "CHAVANOD", "libell_d_acheminement": "CHAVANOD", "code_postal": "74650", "coordonnees_gps": [45.8837755327, 6.04934833272], "code_commune_insee": "74067"}, "geometry": {"type": "Point", "coordinates": [6.04934833272, 45.8837755327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adf8c86bf4c9f2ae621b3110c57b87170d42718b", "fields": {"nom_de_la_commune": "CHENE EN SEMINE", "libell_d_acheminement": "CHENE EN SEMINE", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74068"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37bdc6431487426a387fe540e71672655c5d8231", "fields": {"nom_de_la_commune": "CHILLY", "libell_d_acheminement": "CHILLY", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74075"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a3b71605c09dc464859ef5a1c6496aacb7b25d", "fields": {"code_postal": "74270", "code_commune_insee": "74077", "libell_d_acheminement": "CLARAFOND ARCINE", "ligne_5": "ARCINE", "nom_de_la_commune": "CLARAFOND ARCINE", "coordonnees_gps": [46.0202121912, 5.92961082013]}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ef03e21a739209daed00dd1182f94c4f72e34a", "fields": {"nom_de_la_commune": "LES CONTAMINES MONTJOIE", "libell_d_acheminement": "LES CONTAMINES MONTJOIE", "code_postal": "74170", "coordonnees_gps": [45.8240346924, 6.73668125318], "code_commune_insee": "74085"}, "geometry": {"type": "Point", "coordinates": [6.73668125318, 45.8240346924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118dec3e87d0d54de24dc21d505e24dba1e96847", "fields": {"code_postal": "74150", "code_commune_insee": "74095", "libell_d_acheminement": "CREMPIGNY BONNEGUETE", "ligne_5": "BONNEGUETE", "nom_de_la_commune": "CREMPIGNY BONNEGUETE", "coordonnees_gps": [45.8869887295, 5.94373659019]}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa5135dec9e2d12bb0e7f0ea4cd31eb07f9b005", "fields": {"nom_de_la_commune": "CRUSEILLES", "libell_d_acheminement": "CRUSEILLES", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74096"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a22e2b237aa4482d67e8c69a89ca1ec639c3fe32", "fields": {"nom_de_la_commune": "CUVAT", "libell_d_acheminement": "CUVAT", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74098"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29fe06a332e1a146fd4cf98379343401f0d754b0", "fields": {"nom_de_la_commune": "DOMANCY", "libell_d_acheminement": "DOMANCY", "code_postal": "74700", "coordonnees_gps": [45.935449139, 6.60325360691], "code_commune_insee": "74103"}, "geometry": {"type": "Point", "coordinates": [6.60325360691, 45.935449139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48edb6d70d8f9f41a4ff043f5514c148ac413db8", "fields": {"nom_de_la_commune": "DOUSSARD", "libell_d_acheminement": "DOUSSARD", "code_postal": "74210", "coordonnees_gps": [45.7728684273, 6.25852210813], "code_commune_insee": "74104"}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8e36d9f47a3b1bb0760e3a2464e2c3db9c7dda1", "fields": {"nom_de_la_commune": "DROISY", "libell_d_acheminement": "DROISY", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74107"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ab3b5b07de77147bd98cd739a570e1929982f06", "fields": {"nom_de_la_commune": "EVIAN LES BAINS", "libell_d_acheminement": "EVIAN LES BAINS", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74119"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d54f01f2ad1ca2be839afacd844dcbc0f158d2e", "fields": {"nom_de_la_commune": "EVIRES", "libell_d_acheminement": "EVIRES", "code_postal": "74570", "coordonnees_gps": [46.0031081004, 6.25063227534], "code_commune_insee": "74120"}, "geometry": {"type": "Point", "coordinates": [6.25063227534, 46.0031081004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9ffe87889f2984de27c56a276f6f3ec4b63802", "fields": {"code_postal": "74210", "code_commune_insee": "74123", "libell_d_acheminement": "FAVERGES SEYTHENEX", "ligne_5": "SEYTHENEX", "nom_de_la_commune": "FAVERGES SEYTHENEX", "coordonnees_gps": [45.7728684273, 6.25852210813]}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea4d4189d51145ffb2889583ff67292f7c11a7a5", "fields": {"nom_de_la_commune": "FESSY", "libell_d_acheminement": "FESSY", "code_postal": "74890", "coordonnees_gps": [46.2697106618, 6.38657932887], "code_commune_insee": "74126"}, "geometry": {"type": "Point", "coordinates": [6.38657932887, 46.2697106618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e6028cb8c2e78279df31b155c707a75adfd9885", "fields": {"nom_de_la_commune": "FETERNES", "libell_d_acheminement": "FETERNES", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74127"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a558dfce27653ec4b914ce6aa67716fa224c89e7", "fields": {"nom_de_la_commune": "HAUTEVILLE SUR FIER", "libell_d_acheminement": "HAUTEVILLE SUR FIER", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74141"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e23861271c30c166c68c20e2b5a7453ec0200be0", "fields": {"nom_de_la_commune": "LOVAGNY", "libell_d_acheminement": "LOVAGNY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74152"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f370a624d28c41dec16a6ae8de1ec73f3478670", "fields": {"nom_de_la_commune": "MANIGOD", "libell_d_acheminement": "MANIGOD", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74160"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "882f5778b380e74fa253dd7905afa14daf467cd3", "fields": {"nom_de_la_commune": "MARNAZ", "libell_d_acheminement": "MARNAZ", "code_postal": "74460", "coordonnees_gps": [46.0519838035, 6.5227876317], "code_commune_insee": "74169"}, "geometry": {"type": "Point", "coordinates": [6.5227876317, 46.0519838035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe75e4272eed109dc678fd38b060d0f04df75d41", "fields": {"nom_de_la_commune": "MASSONGY", "libell_d_acheminement": "MASSONGY", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74171"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98a69eae3125e582942cfca6cc05d3373e3ce564", "fields": {"nom_de_la_commune": "MEGEVE", "libell_d_acheminement": "MEGEVE", "code_postal": "74120", "coordonnees_gps": [45.8402620408, 6.61210896924], "code_commune_insee": "74173"}, "geometry": {"type": "Point", "coordinates": [6.61210896924, 45.8402620408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb0c34c9ce0f8b643226818f0b4927e4c50f3e42", "fields": {"nom_de_la_commune": "MENTHON ST BERNARD", "libell_d_acheminement": "MENTHON ST BERNARD", "code_postal": "74290", "coordonnees_gps": [45.8619270539, 6.21689519918], "code_commune_insee": "74176"}, "geometry": {"type": "Point", "coordinates": [6.21689519918, 45.8619270539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "130a3d995cf773795c08d270600ea386ac7cb063", "fields": {"nom_de_la_commune": "MENTHONNEX SOUS CLERMONT", "libell_d_acheminement": "MENTHONNEX SOUS CLERMONT", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74178"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddabbd233f87355565d93f823888ee23682f5ac1", "fields": {"nom_de_la_commune": "MESIGNY", "libell_d_acheminement": "MESIGNY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74179"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56bdacc4743f84861b3831d5d19716da1cfd4b45", "fields": {"nom_de_la_commune": "MINZIER", "libell_d_acheminement": "MINZIER", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74184"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60210ef9df4eb6cee0906e2e00ec4aaf5e6d7ec8", "fields": {"code_postal": "74560", "code_commune_insee": "74185", "libell_d_acheminement": "MONNETIER MORNEX", "ligne_5": "ESSERTS SALEVE", "nom_de_la_commune": "MONNETIER MORNEX", "coordonnees_gps": [46.1345324619, 6.20396278518]}, "geometry": {"type": "Point", "coordinates": [6.20396278518, 46.1345324619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae23a35a81a3910f9e4e30348195968f8074f717", "fields": {"nom_de_la_commune": "NONGLARD", "libell_d_acheminement": "NONGLARD", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74202"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c0825e64dd87e9ebb3436b4e03ebc63513759e", "fields": {"nom_de_la_commune": "ORCIER", "libell_d_acheminement": "ORCIER", "code_postal": "74550", "coordonnees_gps": [46.2997626014, 6.46687107618], "code_commune_insee": "74206"}, "geometry": {"type": "Point", "coordinates": [6.46687107618, 46.2997626014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84130469ea2ee10a17f705d729d41782be32100a", "fields": {"nom_de_la_commune": "PASSY", "libell_d_acheminement": "PASSY", "code_postal": "74190", "coordonnees_gps": [45.9541023994, 6.74002173102], "code_commune_insee": "74208"}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937fa19c128ac9096c00cd47d82dc292bcb08d39", "fields": {"code_postal": "74480", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "MONT BLANC D ASSY", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757334364a1bd39179e3b8ada8d39a9a63bdf235", "fields": {"nom_de_la_commune": "PERRIGNIER", "libell_d_acheminement": "PERRIGNIER", "code_postal": "74550", "coordonnees_gps": [46.2997626014, 6.46687107618], "code_commune_insee": "74210"}, "geometry": {"type": "Point", "coordinates": [6.46687107618, 46.2997626014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d82aadbbdaf33a8ccb4f69c7120f077256412570", "fields": {"nom_de_la_commune": "ST EUSEBE", "libell_d_acheminement": "ST EUSEBE", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74231"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f0cea592ae80735057e121ef0b4f1b9162f40b3", "fields": {"code_postal": "74170", "code_commune_insee": "74236", "libell_d_acheminement": "ST GERVAIS LES BAINS", "ligne_5": "ST NICOLAS DE VEROCE", "nom_de_la_commune": "ST GERVAIS LES BAINS", "coordonnees_gps": [45.8240346924, 6.73668125318]}, "geometry": {"type": "Point", "coordinates": [6.73668125318, 45.8240346924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa209c99340c88c4df8497f332478f62f6adaa5", "fields": {"nom_de_la_commune": "ST JEOIRE", "libell_d_acheminement": "ST JEOIRE EN FAUCIGNY", "code_postal": "74490", "coordonnees_gps": [46.1756757633, 6.49134958977], "code_commune_insee": "74241"}, "geometry": {"type": "Point", "coordinates": [6.49134958977, 46.1756757633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd1c86343a4ae5e211549b96f02f6398afb577a1", "fields": {"nom_de_la_commune": "ST SIGISMOND", "libell_d_acheminement": "ST SIGISMOND", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74252"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "919c83fb8734f2892c71d642022080c894ea51c3", "fields": {"nom_de_la_commune": "SAMOENS", "libell_d_acheminement": "SAMOENS", "code_postal": "74340", "coordonnees_gps": [46.0879560576, 6.74310172103], "code_commune_insee": "74258"}, "geometry": {"type": "Point", "coordinates": [6.74310172103, 46.0879560576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f31bc8345290414f84c2b2fadc407c38282a98d", "fields": {"nom_de_la_commune": "SCIEZ", "libell_d_acheminement": "SCIEZ", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74263"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e8792940fc4522f38d30029060061eeedcd382", "fields": {"nom_de_la_commune": "SEYNOD", "libell_d_acheminement": "SEYNOD", "code_postal": "74600", "coordonnees_gps": [45.8556562518, 6.080880357], "code_commune_insee": "74268"}, "geometry": {"type": "Point", "coordinates": [6.080880357, 45.8556562518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59dbae10f4735980d8095a1ecf1b62188aa4597b", "fields": {"code_postal": "74600", "code_commune_insee": "74268", "libell_d_acheminement": "SEYNOD", "ligne_5": "BALMONT", "nom_de_la_commune": "SEYNOD", "coordonnees_gps": [45.8556562518, 6.080880357]}, "geometry": {"type": "Point", "coordinates": [6.080880357, 45.8556562518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f670074f7284db827b0ed5611cf3a9d22e92f933", "fields": {"nom_de_la_commune": "SILLINGY", "libell_d_acheminement": "SILLINGY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74272"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a4c56179f030b162d1a042eb6a8a7557470fc8", "fields": {"nom_de_la_commune": "AUMETZ", "libell_d_acheminement": "AUMETZ", "code_postal": "57710", "coordonnees_gps": [49.4142056636, 5.96361653857], "code_commune_insee": "57041"}, "geometry": {"type": "Point", "coordinates": [5.96361653857, 49.4142056636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4634f0bee139eb31cc1c14ff62440ddc221185ee", "fields": {"nom_de_la_commune": "AVRICOURT", "libell_d_acheminement": "AVRICOURT", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57042"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "217d838fdf53fa33f4247b82d0a81dfa1d645be6", "fields": {"nom_de_la_commune": "BASSING", "libell_d_acheminement": "BASSING", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57053"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94b5e004fd92df37707a514b0d30f75d5afa15a", "fields": {"nom_de_la_commune": "BAUDRECOURT", "libell_d_acheminement": "BAUDRECOURT", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57054"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebc6777644b167e337f71899255517f752c7b0d2", "fields": {"nom_de_la_commune": "BENING LES ST AVOLD", "libell_d_acheminement": "BENING LES ST AVOLD", "code_postal": "57800", "coordonnees_gps": [49.1440107234, 6.82296653278], "code_commune_insee": "57061"}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e92282ff8718d57a91e83bdd7de91e104020f615", "fields": {"nom_de_la_commune": "BERLING", "libell_d_acheminement": "BERLING", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57064"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af701d27ec7b01493da4009beb91fc8f22d383f1", "fields": {"nom_de_la_commune": "BETTBORN", "libell_d_acheminement": "BETTBORN", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57071"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce31e5012f2356313a4a3ea0b792cb4ecedc9428", "fields": {"nom_de_la_commune": "BETTING", "libell_d_acheminement": "BETTING", "code_postal": "57800", "coordonnees_gps": [49.1440107234, 6.82296653278], "code_commune_insee": "57073"}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374c3c3040f483a3b83b172f3133317609843a3a", "fields": {"nom_de_la_commune": "BETTVILLER", "libell_d_acheminement": "BETTVILLER", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57074"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6bf123b0de8cb4ee7d04615ae8cd98a330eaad8", "fields": {"nom_de_la_commune": "BEZANGE LA PETITE", "libell_d_acheminement": "BEZANGE LA PETITE", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57077"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcee1056edbfcf83d8f8291981defc59b689fefd", "fields": {"nom_de_la_commune": "BELLES FORETS", "libell_d_acheminement": "BELLES FORETS", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57086"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09436f405d2a9771edc1c761808bdb46331cdf1e", "fields": {"code_postal": "57930", "code_commune_insee": "57086", "libell_d_acheminement": "BELLES FORETS", "ligne_5": "BISPING", "nom_de_la_commune": "BELLES FORETS", "coordonnees_gps": [48.8282440547, 6.97722303236]}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f9bc678fadd6642b21daf29720e1ebd97c68e9", "fields": {"nom_de_la_commune": "BREISTROFF LA GRANDE", "libell_d_acheminement": "BREISTROFF LA GRANDE", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57109"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f11f7a7df238d891fca6f856a5f4c7c7b8ed35b2", "fields": {"nom_de_la_commune": "BROUVILLER", "libell_d_acheminement": "BROUVILLER", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57114"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5359d212e2af508c4af7bb0adf4b665e49422371", "fields": {"nom_de_la_commune": "BUHL LORRAINE", "libell_d_acheminement": "BUHL LORRAINE", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57119"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "235ff5dbcdaaa19686d364b34df5a0af95039ad6", "fields": {"nom_de_la_commune": "CAPPEL", "libell_d_acheminement": "CAPPEL", "code_postal": "57450", "coordonnees_gps": [49.098477693, 6.86570683111], "code_commune_insee": "57122"}, "geometry": {"type": "Point", "coordinates": [6.86570683111, 49.098477693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26afb7b55092ad2157f2823f1d61fc81544116f", "fields": {"code_postal": "57170", "code_commune_insee": "57132", "libell_d_acheminement": "CHATEAU SALINS", "ligne_5": "COUTURES", "nom_de_la_commune": "CHATEAU SALINS", "coordonnees_gps": [48.8272646435, 6.51547813008]}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083e01c7ab8764549d0638c0641d9781b9b9c29f", "fields": {"nom_de_la_commune": "CHENOIS", "libell_d_acheminement": "CHENOIS", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57138"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14cd4ca4c0a20479ff155d2ed8c3a3e68db642a6", "fields": {"nom_de_la_commune": "CHIEULLES", "libell_d_acheminement": "CHIEULLES", "code_postal": "57070", "coordonnees_gps": [49.1173648724, 6.2035419151], "code_commune_insee": "57142"}, "geometry": {"type": "Point", "coordinates": [6.2035419151, 49.1173648724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53064350188422094b1ae1538718e36c1a829bd4", "fields": {"code_postal": "57800", "code_commune_insee": "57144", "libell_d_acheminement": "COCHEREN", "ligne_5": "BELLE ROCHE", "nom_de_la_commune": "COCHEREN", "coordonnees_gps": [49.1440107234, 6.82296653278]}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ec174aee770068aa733f1492352643ae5311c1a", "fields": {"nom_de_la_commune": "COURCELLES SUR NIED", "libell_d_acheminement": "COURCELLES SUR NIED", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57156"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e1c5c3a44a3d06a3f40e9e1c760f474dc768564", "fields": {"nom_de_la_commune": "CUTTING", "libell_d_acheminement": "CUTTING", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57161"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37133105e8eed7ef0abdb47747891725d5d1b6a", "fields": {"nom_de_la_commune": "DALHAIN", "libell_d_acheminement": "DALHAIN", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57166"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "870b43f8692d50768e80d0a6d3d7cccdc2f0c4ec", "fields": {"nom_de_la_commune": "DALSTEIN", "libell_d_acheminement": "DALSTEIN", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57167"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6af3a33f3934dc054d9a6b4c04add9a34d7f329", "fields": {"nom_de_la_commune": "DANNELBOURG", "libell_d_acheminement": "DANNELBOURG", "code_postal": "57820", "coordonnees_gps": [48.7214419242, 7.22862669066], "code_commune_insee": "57169"}, "geometry": {"type": "Point", "coordinates": [7.22862669066, 48.7214419242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f71e638485bf42576d5b92c1ecce646495b92b5", "fields": {"nom_de_la_commune": "DOLVING", "libell_d_acheminement": "DOLVING", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57180"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05dafb5ca07e72a1ba85afe2fb83e145a866670f", "fields": {"nom_de_la_commune": "DOMNOM LES DIEUZE", "libell_d_acheminement": "DOMNOM LES DIEUZE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57181"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c543d9ececbd45737d755b6965d5fd25663a4da", "fields": {"nom_de_la_commune": "DONJEUX", "libell_d_acheminement": "DONJEUX", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57182"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be824c5164489f1e8fa648bcc6b2e6e8ee31227f", "fields": {"nom_de_la_commune": "ELVANGE", "libell_d_acheminement": "ELVANGE", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57190"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0402f6ca4e8aa971b5fb6fb789d07f50ba48774", "fields": {"nom_de_la_commune": "ERSTROFF", "libell_d_acheminement": "ERSTROFF", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57198"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fab73b8cf91417677354949451b5878429781d71", "fields": {"nom_de_la_commune": "FAILLY", "libell_d_acheminement": "FAILLY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57204"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bb5c94f729fa85ed8141b9ba93349fb987590c0", "fields": {"nom_de_la_commune": "FALCK", "libell_d_acheminement": "FALCK", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57205"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af7c536ead1f756feb6fb0a5a472c060feb7e359", "fields": {"nom_de_la_commune": "FAMECK", "libell_d_acheminement": "FAMECK", "code_postal": "57290", "coordonnees_gps": [49.3041832839, 6.102475564], "code_commune_insee": "57206"}, "geometry": {"type": "Point", "coordinates": [6.102475564, 49.3041832839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5065c9e788a801b2527659f5db020ad10164c2", "fields": {"nom_de_la_commune": "FARSCHVILLER", "libell_d_acheminement": "FARSCHVILLER", "code_postal": "57450", "coordonnees_gps": [49.098477693, 6.86570683111], "code_commune_insee": "57208"}, "geometry": {"type": "Point", "coordinates": [6.86570683111, 49.098477693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ac5be891c031ad7d567ee03e57942d6523be159", "fields": {"nom_de_la_commune": "FENETRANGE", "libell_d_acheminement": "FENETRANGE", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57210"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cba131bc4336f3a8b282d8ebcb305de4f7bd86a", "fields": {"nom_de_la_commune": "FEY", "libell_d_acheminement": "FEY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57212"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "538fa17045263d9a59b0e34b7b1275a1e7b34a1d", "fields": {"nom_de_la_commune": "FLETRANGE", "libell_d_acheminement": "FLETRANGE", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57217"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2233409ac76dd8207fab8643d22abd9de920bc3", "fields": {"nom_de_la_commune": "FLOCOURT", "libell_d_acheminement": "FLOCOURT", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57220"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc9857567250e4e59523cef441b61b6d3b4e2f5a", "fields": {"nom_de_la_commune": "FONTOY", "libell_d_acheminement": "FONTOY", "code_postal": "57650", "coordonnees_gps": [49.3593317292, 5.99165623532], "code_commune_insee": "57226"}, "geometry": {"type": "Point", "coordinates": [5.99165623532, 49.3593317292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e96b958f7b117bc088d88968f09dc03bbf0a73c", "fields": {"nom_de_la_commune": "FOULIGNY", "libell_d_acheminement": "FOULIGNY", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57230"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da235c51ab10d15e6c5da3a702bff858356c7d0", "fields": {"nom_de_la_commune": "FRAUENBERG", "libell_d_acheminement": "FRAUENBERG", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57234"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a45c642ad194257da13a6d9d8c6f492973500f", "fields": {"code_postal": "57800", "code_commune_insee": "57240", "libell_d_acheminement": "FREYMING MERLEBACH", "ligne_5": "MERLEBACH", "nom_de_la_commune": "FREYMING MERLEBACH", "coordonnees_gps": [49.1440107234, 6.82296653278]}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31213fada3fce2cccbff609cb05a996293f156c", "fields": {"nom_de_la_commune": "GERBECOURT", "libell_d_acheminement": "GERBECOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57247"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694ad34b67edf6129ca065e9b893934da7d42fc9", "fields": {"nom_de_la_commune": "GLATIGNY", "libell_d_acheminement": "GLATIGNY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57249"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b97df9838e3e4af9da9b63154570317eb8ff8f5", "fields": {"nom_de_la_commune": "GOIN", "libell_d_acheminement": "GOIN", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57251"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5a8f3e36c231b6851177b6979b65db7bc6c80d3", "fields": {"nom_de_la_commune": "GONDREXANGE", "libell_d_acheminement": "GONDREXANGE", "code_postal": "57815", "coordonnees_gps": [48.6914422966, 6.9074246458], "code_commune_insee": "57253"}, "geometry": {"type": "Point", "coordinates": [6.9074246458, 48.6914422966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce66684e0e9154b96adc313730b53ff1f64a182d", "fields": {"nom_de_la_commune": "GORZE", "libell_d_acheminement": "GORZE", "code_postal": "57680", "coordonnees_gps": [49.0358691515, 6.02886300131], "code_commune_insee": "57254"}, "geometry": {"type": "Point", "coordinates": [6.02886300131, 49.0358691515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40fd0b04855dce5a8597dc5dab35474573fe0c66", "fields": {"nom_de_la_commune": "GOSSELMING", "libell_d_acheminement": "GOSSELMING", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57255"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e316ae9c58cbffbf68def9ecd0cc29f795607d15", "fields": {"nom_de_la_commune": "GUEBENHOUSE", "libell_d_acheminement": "GUEBENHOUSE", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57264"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4692915b51fe6896324fc8ef27b1dbde7d63cc3", "fields": {"nom_de_la_commune": "VAL DE BRIDE", "libell_d_acheminement": "VAL DE BRIDE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57270"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "753ebdb8b041fc64d1d70606ea459c77912dfee8", "fields": {"nom_de_la_commune": "GUERTING", "libell_d_acheminement": "GUERTING", "code_postal": "57880", "coordonnees_gps": [49.1848577986, 6.63106406972], "code_commune_insee": "57274"}, "geometry": {"type": "Point", "coordinates": [6.63106406972, 49.1848577986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2502b7338b1d3925e0c5115b80bb08dd22067434", "fields": {"nom_de_la_commune": "GUINKIRCHEN", "libell_d_acheminement": "GUINKIRCHEN", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57277"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bf19bdcb385df72207c0ba214f845092bc284d2", "fields": {"nom_de_la_commune": "GUNTZVILLER", "libell_d_acheminement": "GUNTZVILLER", "code_postal": "57405", "coordonnees_gps": [48.7255604204, 7.15431817508], "code_commune_insee": "57280"}, "geometry": {"type": "Point", "coordinates": [7.15431817508, 48.7255604204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18420d3a4cf17fb6af4bc126bab440729fc51664", "fields": {"nom_de_la_commune": "HABOUDANGE", "libell_d_acheminement": "HABOUDANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57281"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edaabd95d79807afdc207cdb4769ea472e2096d6", "fields": {"nom_de_la_commune": "HAGONDANGE", "libell_d_acheminement": "HAGONDANGE", "code_postal": "57300", "coordonnees_gps": [49.2517615961, 6.19936397452], "code_commune_insee": "57283"}, "geometry": {"type": "Point", "coordinates": [6.19936397452, 49.2517615961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cafe75dd558d7e0fdabec920b6231aa3cd7b2038", "fields": {"nom_de_la_commune": "BASSE HAM", "libell_d_acheminement": "BASSE HAM", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57287"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f5c40e285c124c55585bebdcc543f2e9fba27ef", "fields": {"nom_de_la_commune": "HANNOCOURT", "libell_d_acheminement": "HANNOCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57292"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c71414159993c45f9a2f244f9ad4f30f902ab73", "fields": {"nom_de_la_commune": "HAN SUR NIED", "libell_d_acheminement": "HAN SUR NIED", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57293"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68609a8fb6b5a1d61090c158f74044c8825e875e", "fields": {"nom_de_la_commune": "HARREBERG", "libell_d_acheminement": "HARREBERG", "code_postal": "57870", "coordonnees_gps": [48.6442661172, 7.16634369748], "code_commune_insee": "57298"}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6742d9bf275f0f4637f6b7cc9f4f3518cb92e3", "fields": {"nom_de_la_commune": "HASPELSCHIEDT", "libell_d_acheminement": "HASPELSCHIEDT", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57301"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df5addf2704a9119c9e8db893ba32dc35b9f8dc0", "fields": {"nom_de_la_commune": "HAUT CLOCHER", "libell_d_acheminement": "HAUT CLOCHER", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57304"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cac4d49e42c63a013ded554c70087727cb75b428", "fields": {"nom_de_la_commune": "HELLERING LES FENETRANGE", "libell_d_acheminement": "HELLERING LES FENETRANGE", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57310"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98feb075ff98aa2dca4722e668b1ca18677a1f15", "fields": {"nom_de_la_commune": "HENRIVILLE", "libell_d_acheminement": "HENRIVILLE", "code_postal": "57450", "coordonnees_gps": [49.098477693, 6.86570683111], "code_commune_insee": "57316"}, "geometry": {"type": "Point", "coordinates": [6.86570683111, 49.098477693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed860d8992039b5b8d769eafde8c10707ab00763", "fields": {"nom_de_la_commune": "HERMELANGE", "libell_d_acheminement": "HERMELANGE", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57318"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "041538afa0b21510d59ae1d309b183223cce947f", "fields": {"nom_de_la_commune": "HILBESHEIM", "libell_d_acheminement": "HILBESHEIM", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57324"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fefcac357129ac20eeaff56c2ccca8840e6e4e9", "fields": {"nom_de_la_commune": "HOMBOURG HAUT", "libell_d_acheminement": "HOMBOURG HAUT", "code_postal": "57470", "coordonnees_gps": [49.1215723758, 6.78184199605], "code_commune_insee": "57332"}, "geometry": {"type": "Point", "coordinates": [6.78184199605, 49.1215723758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a93e3abfd9d6be6721821359e61030489eb8e1", "fields": {"nom_de_la_commune": "HONSKIRCH", "libell_d_acheminement": "HONSKIRCH", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57335"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf0f25724da949cbf8cc1ff378f23a161ac1294d", "fields": {"nom_de_la_commune": "HOTTVILLER", "libell_d_acheminement": "HOTTVILLER", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57338"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846baebaa980237af2cad76913a5bfd754e4cf89", "fields": {"nom_de_la_commune": "HULTEHOUSE", "libell_d_acheminement": "HULTEHOUSE", "code_postal": "57820", "coordonnees_gps": [48.7214419242, 7.22862669066], "code_commune_insee": "57339"}, "geometry": {"type": "Point", "coordinates": [7.22862669066, 48.7214419242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb00a189932ec4a35116e59a87851940b1bd991", "fields": {"nom_de_la_commune": "IBIGNY", "libell_d_acheminement": "IBIGNY", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57342"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c08eb5557b9db1a0460d0f11ec9ad1dadb90a85", "fields": {"nom_de_la_commune": "INGLANGE", "libell_d_acheminement": "INGLANGE", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57345"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2584917b89e4805287ea7b04eb7a9cd54c5e9f1b", "fields": {"nom_de_la_commune": "JOUY AUX ARCHES", "libell_d_acheminement": "JOUY AUX ARCHES", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57350"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0aede925eeaaf3a30a144c333327f126379e2fa", "fields": {"nom_de_la_commune": "KIRVILLER", "libell_d_acheminement": "KIRVILLER", "code_postal": "57430", "coordonnees_gps": [48.9890917181, 6.98173780701], "code_commune_insee": "57366"}, "geometry": {"type": "Point", "coordinates": [6.98173780701, 48.9890917181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a036d2591b9855346829bf731847a598df8a8e4d", "fields": {"nom_de_la_commune": "KNUTANGE", "libell_d_acheminement": "KNUTANGE", "code_postal": "57240", "coordonnees_gps": [49.3410176091, 6.04326749195], "code_commune_insee": "57368"}, "geometry": {"type": "Point", "coordinates": [6.04326749195, 49.3410176091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab8521eda50bc36aa326c93e629fb5557e84ff76", "fields": {"nom_de_la_commune": "KUNTZIG", "libell_d_acheminement": "KUNTZIG", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57372"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "835fc9aa10f7d822c888f9dd9ed2bda2b0dbb899", "fields": {"nom_de_la_commune": "LANEUVEVILLE EN SAULNOIS", "libell_d_acheminement": "LANEUVEVILLE EN SAULNOIS", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57381"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806d491f2b9bf4c54b66e9d24f6a3cfcbfb1e994", "fields": {"nom_de_la_commune": "LEMONCOURT", "libell_d_acheminement": "LEMONCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57391"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daf3b4ad7eb65794d40ea095e4352744aae3b111", "fields": {"nom_de_la_commune": "LESSE", "libell_d_acheminement": "LESSE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57395"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fafa32a72a6c2eb4ae1739624edc0b172eeee07d", "fields": {"nom_de_la_commune": "LORRY LES METZ", "libell_d_acheminement": "LORRY LES METZ", "code_postal": "57050", "coordonnees_gps": [49.1138494739, 6.17894504375], "code_commune_insee": "57415"}, "geometry": {"type": "Point", "coordinates": [6.17894504375, 49.1138494739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4be0f72824f30f79279be2fad1bec10cec21fab7", "fields": {"nom_de_la_commune": "LOUPERSHOUSE", "libell_d_acheminement": "LOUPERSHOUSE", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57419"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e8d4ef43a19879be7dfbe8a7a2db9a0923ab62d", "fields": {"nom_de_la_commune": "LOUVIGNY", "libell_d_acheminement": "LOUVIGNY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57422"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abfa34cef1fb82bb42250fbf54c92460ac6e92d6", "fields": {"nom_de_la_commune": "LUPPY", "libell_d_acheminement": "LUPPY", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57425"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cb3e82081ddd91ca4074c512db544f04478c886", "fields": {"nom_de_la_commune": "MANY", "libell_d_acheminement": "MANY", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57442"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0c90b0d7a616a3737b8d8d213e9e4a48218c9b", "fields": {"nom_de_la_commune": "MARSAL", "libell_d_acheminement": "MARSAL", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57448"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66e3683c68fb314d412dde1a23552a0e21163adf", "fields": {"nom_de_la_commune": "MEISENTHAL", "libell_d_acheminement": "MEISENTHAL", "code_postal": "57960", "coordonnees_gps": [48.965339221, 7.32931540364], "code_commune_insee": "57456"}, "geometry": {"type": "Point", "coordinates": [7.32931540364, 48.965339221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e8522ad27c9a94868ddaa93fc999de87a6c0b06", "fields": {"nom_de_la_commune": "MERSCHWEILLER", "libell_d_acheminement": "MERSCHWEILLER", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57459"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2578982c8f0ccbb358de3817e260e4b764bdf8e9", "fields": {"nom_de_la_commune": "METZ", "libell_d_acheminement": "METZ", "code_postal": "57050", "coordonnees_gps": [49.1138494739, 6.17894504375], "code_commune_insee": "57463"}, "geometry": {"type": "Point", "coordinates": [6.17894504375, 49.1138494739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4990212fd14164ebe6363c7c5975c537d4c714fd", "fields": {"nom_de_la_commune": "MITTELBRONN", "libell_d_acheminement": "MITTELBRONN", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57468"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fe382ccff5eb0a63bea455c81da29ed07c91ea7", "fields": {"nom_de_la_commune": "MITTERSHEIM", "libell_d_acheminement": "MITTERSHEIM", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57469"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a993d0bdd836d6c7999b918c66150a8c911d14", "fields": {"nom_de_la_commune": "MOLRING", "libell_d_acheminement": "MOLRING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57470"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50af1c36eb39c9af1a308c87a74b5255aa76c6a4", "fields": {"nom_de_la_commune": "MONTBRONN", "libell_d_acheminement": "MONTBRONN", "code_postal": "57415", "coordonnees_gps": [49.006798582, 7.31603337104], "code_commune_insee": "57477"}, "geometry": {"type": "Point", "coordinates": [7.31603337104, 49.006798582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaee5195ff04b5a93be010b3ec93928a4a468500", "fields": {"nom_de_la_commune": "MONTOY FLANVILLE", "libell_d_acheminement": "MONTOY FLANVILLE", "code_postal": "57645", "coordonnees_gps": [49.1294879959, 6.29496207471], "code_commune_insee": "57482"}, "geometry": {"type": "Point", "coordinates": [6.29496207471, 49.1294879959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f3b18d978e066f40001079e8ee1c9746dd09f9", "fields": {"nom_de_la_commune": "MORVILLE SUR NIED", "libell_d_acheminement": "MORVILLE SUR NIED", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57486"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ca82133d4791f621a15fb7d67075f3eb03b0ee", "fields": {"nom_de_la_commune": "MOULINS LES METZ", "libell_d_acheminement": "MOULINS LES METZ", "code_postal": "57160", "coordonnees_gps": [49.1183395813, 6.08364219773], "code_commune_insee": "57487"}, "geometry": {"type": "Point", "coordinates": [6.08364219773, 49.1183395813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf3b4712e3c80e0c72fcc93661dc7daf5b2110c", "fields": {"nom_de_la_commune": "MOUSSEY", "libell_d_acheminement": "MOUSSEY", "code_postal": "57770", "coordonnees_gps": [48.672173952, 6.77879019308], "code_commune_insee": "57488"}, "geometry": {"type": "Point", "coordinates": [6.77879019308, 48.672173952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa56bfab296f9160fad5cc97633bc8d8551801b", "fields": {"nom_de_la_commune": "MOUTERHOUSE", "libell_d_acheminement": "MOUTERHOUSE", "code_postal": "57620", "coordonnees_gps": [48.9917951549, 7.41577190853], "code_commune_insee": "57489"}, "geometry": {"type": "Point", "coordinates": [7.41577190853, 48.9917951549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7af29ba7ec8659e849643971d084b2cd848fd25", "fields": {"nom_de_la_commune": "MOYEUVRE GRANDE", "libell_d_acheminement": "MOYEUVRE GRANDE", "code_postal": "57250", "coordonnees_gps": [49.2628995839, 6.0314436388], "code_commune_insee": "57491"}, "geometry": {"type": "Point", "coordinates": [6.0314436388, 49.2628995839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "338e7ba0e5bf41d7512d8a51f6f0a7c9c3089595", "fields": {"nom_de_la_commune": "MULCEY", "libell_d_acheminement": "MULCEY", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57493"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3b0765c66845e7abf5229f1e928c2bedcd30fb9", "fields": {"nom_de_la_commune": "MUNSTER", "libell_d_acheminement": "MUNSTER", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57494"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9592d470cc8539b48dd0543e7e20ebebd9567e19", "fields": {"nom_de_la_commune": "NELLING", "libell_d_acheminement": "NELLING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57497"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5332b7475ebe6d873fe026bbde3a62af792180cc", "fields": {"nom_de_la_commune": "MOUZON", "libell_d_acheminement": "MOUZON", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16239"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e99bddbf1176082cd01813055c7a5dbfb803e1f5", "fields": {"nom_de_la_commune": "NERCILLAC", "libell_d_acheminement": "NERCILLAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16243"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa7e4487e61cb21dc159228b322f354d20004dd2", "fields": {"nom_de_la_commune": "NIEUIL", "libell_d_acheminement": "NIEUIL", "code_postal": "16270", "coordonnees_gps": [45.8834000837, 0.571194894473], "code_commune_insee": "16245"}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b37f9c54bd070ab4b3265c41bdf10facb0dc34", "fields": {"nom_de_la_commune": "ORIOLLES", "libell_d_acheminement": "ORIOLLES", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16251"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e9d18376672774cd1c7567c4549deb438f743d", "fields": {"nom_de_la_commune": "ORIVAL", "libell_d_acheminement": "ORIVAL", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16252"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0720d71b326282078ea04ee215519b15a9ac8ce", "fields": {"nom_de_la_commune": "PAIZAY NAUDOUIN EMBOURIE", "libell_d_acheminement": "PAIZAY NAUDOUIN EMBOURIE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16253"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fde94292b67166dcdf86d35df0662ba0ccc491b", "fields": {"nom_de_la_commune": "PALLUAUD", "libell_d_acheminement": "PALLUAUD", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16254"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbf98b52f014ca9270c71397c652797692171cf4", "fields": {"nom_de_la_commune": "LES PINS", "libell_d_acheminement": "LES PINS", "code_postal": "16260", "coordonnees_gps": [45.8489084837, 0.405198517802], "code_commune_insee": "16261"}, "geometry": {"type": "Point", "coordinates": [0.405198517802, 45.8489084837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a99eb154e91448f2542719007ca6925f1eb16c", "fields": {"nom_de_la_commune": "PUYREAUX", "libell_d_acheminement": "PUYREAUX", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16272"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b215fc8b528fa4081ba2a5e1e7308446033961", "fields": {"nom_de_la_commune": "RIOUX MARTIN", "libell_d_acheminement": "RIOUX MARTIN", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16279"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e27f48297f1639427e508f19d76c13cd1ebd3a89", "fields": {"nom_de_la_commune": "LA ROCHEFOUCAULD", "libell_d_acheminement": "LA ROCHEFOUCAULD", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16281"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65da70dfb1ad784044f49f10bb01a91dd1dfebd3", "fields": {"nom_de_la_commune": "LA ROCHETTE", "libell_d_acheminement": "LA ROCHETTE", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16282"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b7f0b928db1e387c74b49f121bb9c2172308938", "fields": {"nom_de_la_commune": "ROUGNAC", "libell_d_acheminement": "ROUGNAC", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16285"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a080e8d4f957d2fdfdd242ebe75f6407158379d4", "fields": {"code_postal": "16170", "code_commune_insee": "16286", "libell_d_acheminement": "ROUILLAC", "ligne_5": "SONNEVILLE", "nom_de_la_commune": "ROUILLAC", "coordonnees_gps": [45.7890325838, -0.0524231030464]}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7c7c9a46eeba3af534343b8541243641979742b", "fields": {"nom_de_la_commune": "ROUZEDE", "libell_d_acheminement": "ROUZEDE", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16290"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c5d19a39f45ddbfd0e1086921bf47d666515b6", "fields": {"code_postal": "16120", "code_commune_insee": "16297", "libell_d_acheminement": "GRAVES ST AMANT", "ligne_5": "GRAVES", "nom_de_la_commune": "GRAVES ST AMANT", "coordonnees_gps": [45.5885415594, -0.0877285349114]}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf54aebf4991d2bbd1b86239d49a2f4226af6d1", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16302"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3798d597918ccf10190dd4677df4d7472b01c7f", "fields": {"nom_de_la_commune": "ST FELIX", "libell_d_acheminement": "ST FELIX", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16315"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fd69894f9a5c53555554270e0cb22ef6f3c4a0", "fields": {"nom_de_la_commune": "ST FRAIGNE", "libell_d_acheminement": "ST FRAIGNE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16317"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04db1f20a9c160cd6a243ad77d0aa9b261710200", "fields": {"nom_de_la_commune": "ST GOURSON", "libell_d_acheminement": "ST GOURSON", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16325"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b24b97556574cf9df744305ada6dc966383e9d2", "fields": {"nom_de_la_commune": "ST MARTIAL", "libell_d_acheminement": "ST MARTIAL", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16334"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb642e802f5f71d8ff70655b53f4a744378e486", "fields": {"nom_de_la_commune": "ST MARY", "libell_d_acheminement": "ST MARY", "code_postal": "16260", "coordonnees_gps": [45.8489084837, 0.405198517802], "code_commune_insee": "16336"}, "geometry": {"type": "Point", "coordinates": [0.405198517802, 45.8489084837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de479e38456499c1ed179abee82e558208b41870", "fields": {"nom_de_la_commune": "ST MAURICE DES LIONS", "libell_d_acheminement": "ST MAURICE DES LIONS", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16337"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "194aa39af695964a32f253fc58ab87625ffb8640", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD DE BARBEZIEUX", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16338"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b783512f260c59ad03652b308c0b40913a72e470", "fields": {"nom_de_la_commune": "ST MEME LES CARRIERES", "libell_d_acheminement": "ST MEME LES CARRIERES", "code_postal": "16720", "coordonnees_gps": [45.6447829784, -0.142945492938], "code_commune_insee": "16340"}, "geometry": {"type": "Point", "coordinates": [-0.142945492938, 45.6447829784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba172e7622c393ca8584e01adb5935c508de4241", "fields": {"nom_de_la_commune": "ST PROJET ST CONSTANT", "libell_d_acheminement": "ST PROJET ST CONSTANT", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16344"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fc9bc68c1e38891b8929dc5014b33ed10663645", "fields": {"nom_de_la_commune": "ST SIMEUX", "libell_d_acheminement": "ST SIMEUX", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16351"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccfa23561699d25c3db01ed69823e4c2066cb318", "fields": {"nom_de_la_commune": "ST SORNIN", "libell_d_acheminement": "ST SORNIN", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16353"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be09ceb48dd022423b67854d1e47bab5e8fc258f", "fields": {"nom_de_la_commune": "SIREUIL", "libell_d_acheminement": "SIREUIL", "code_postal": "16440", "coordonnees_gps": [45.5763660352, 0.064435228401], "code_commune_insee": "16370"}, "geometry": {"type": "Point", "coordinates": [0.064435228401, 45.5763660352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f044a882fca549c4fe52573d730b6e0994708101", "fields": {"nom_de_la_commune": "SOUFFRIGNAC", "libell_d_acheminement": "SOUFFRIGNAC", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16372"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c74a3b9483e07209d78a0eaf84ba033866e04b", "fields": {"nom_de_la_commune": "SURIS", "libell_d_acheminement": "SURIS", "code_postal": "16270", "coordonnees_gps": [45.8834000837, 0.571194894473], "code_commune_insee": "16376"}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "389de3500692f5f88a8178ca6ceb69c9c9167649", "fields": {"nom_de_la_commune": "TAIZE AIZIE", "libell_d_acheminement": "TAIZE AIZIE", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16378"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ccdea5249e649a0ff905b0f643ff5c3c5af7514", "fields": {"nom_de_la_commune": "TURGON", "libell_d_acheminement": "TURGON", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16389"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3a38eb69b6a2064c15d5a4144218437a86f429", "fields": {"nom_de_la_commune": "VILHONNEUR", "libell_d_acheminement": "VILHONNEUR", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16406"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "615f5cfe45c309187b98ba93d92beeca69d073e6", "fields": {"nom_de_la_commune": "VILLEFAGNAN", "libell_d_acheminement": "VILLEFAGNAN", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16409"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60d41b022807a3c704bab21a0f8d12303d1c5646", "fields": {"nom_de_la_commune": "VILLOGNON", "libell_d_acheminement": "VILLOGNON", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16414"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c452e4e6733844551a8da3504db430e388d05de0", "fields": {"nom_de_la_commune": "VOULGEZAC", "libell_d_acheminement": "VOULGEZAC", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16420"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75dd915f5a0adf13b98568133f44b070acf7fcbd", "fields": {"nom_de_la_commune": "VOUTHON", "libell_d_acheminement": "VOUTHON", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16421"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15c87e9594079c45aeb3f35160eba3ed567c99a5", "fields": {"nom_de_la_commune": "XAMBES", "libell_d_acheminement": "XAMBES", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16423"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85dfe92b6b024ab4367e432f25bf2a1fda1f1562", "fields": {"nom_de_la_commune": "YVRAC ET MALLEYRAND", "libell_d_acheminement": "YVRAC ET MALLEYRAND", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16425"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1daa7e84f0e47e18286ac3bc58649e5700e21b5", "fields": {"nom_de_la_commune": "AGUDELLE", "libell_d_acheminement": "AGUDELLE", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17002"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb89472966da1e40fe2585fb25d65b57dfdd2db2", "fields": {"nom_de_la_commune": "ASNIERES LA GIRAUD", "libell_d_acheminement": "ASNIERES LA GIRAUD", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17022"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11415482051ee21c565da5efc356ae41cdedb416", "fields": {"nom_de_la_commune": "AUJAC", "libell_d_acheminement": "AUJAC", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17023"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f220f24f8c9b04be20bb5b4c51101510779e551e", "fields": {"nom_de_la_commune": "BALLON", "libell_d_acheminement": "BALLON", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17032"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8933e55a6088c2946dd98cc25cbb71226b0faac9", "fields": {"nom_de_la_commune": "BEAUVAIS SUR MATHA", "libell_d_acheminement": "BEAUVAIS SUR MATHA", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17037"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "808eea37143942a87e15a7631717f4d09b682e06", "fields": {"nom_de_la_commune": "BLANZAC LES MATHA", "libell_d_acheminement": "BLANZAC LES MATHA", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17048"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8352cf5a66769ce0bbecd35b2992f06581e38dff", "fields": {"nom_de_la_commune": "BOUGNEAU", "libell_d_acheminement": "BOUGNEAU", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17056"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46d475118b959c04ae544b555374333464ab2f5c", "fields": {"nom_de_la_commune": "BOURCEFRANC LE CHAPUS", "libell_d_acheminement": "BOURCEFRANC LE CHAPUS", "code_postal": "17560", "coordonnees_gps": [45.8471469756, -1.13362480493], "code_commune_insee": "17058"}, "geometry": {"type": "Point", "coordinates": [-1.13362480493, 45.8471469756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370974126afc749685ff66258f1784f4f8c264a1", "fields": {"nom_de_la_commune": "BOUTENAC TOUVENT", "libell_d_acheminement": "BOUTENAC TOUVENT", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17060"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caac0b845d301bafe12be2ed81541e7df15528e2", "fields": {"nom_de_la_commune": "BRESDON", "libell_d_acheminement": "BRESDON", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17062"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71498850d51f2822f29e9485441ab1f37f9ee601", "fields": {"nom_de_la_commune": "BRIVES SUR CHARENTE", "libell_d_acheminement": "BRIVES SUR CHARENTE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17069"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35df840b2b1030f8ad63ba9e33c590c3ffe5bb72", "fields": {"nom_de_la_commune": "CABARIOT", "libell_d_acheminement": "CABARIOT", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17075"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bb5d19a440685174a5e52bbe2d2bf754c2c3c75", "fields": {"nom_de_la_commune": "CHAMBON", "libell_d_acheminement": "CHAMBON", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17080"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b867644482a7e8bad148534446727efb8389c489", "fields": {"code_postal": "17480", "code_commune_insee": "17093", "libell_d_acheminement": "LE CHATEAU D OLERON", "ligne_5": "LA GACONNIERE", "nom_de_la_commune": "LE CHATEAU D OLERON", "coordonnees_gps": [45.8814200371, -1.21657707924]}, "geometry": {"type": "Point", "coordinates": [-1.21657707924, 45.8814200371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d44068b7e5ad95eb35b70cb371af2eb4b06f51", "fields": {"code_postal": "17480", "code_commune_insee": "17093", "libell_d_acheminement": "LE CHATEAU D OLERON", "ligne_5": "ORS", "nom_de_la_commune": "LE CHATEAU D OLERON", "coordonnees_gps": [45.8814200371, -1.21657707924]}, "geometry": {"type": "Point", "coordinates": [-1.21657707924, 45.8814200371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "390725ca201f5173cf06dbefb59c262ca4a75356", "fields": {"nom_de_la_commune": "CIERZAC", "libell_d_acheminement": "CIERZAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17106"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbcddc3d8a98afd48b6819d076b9adf6f303078e", "fields": {"nom_de_la_commune": "CIRE D AUNIS", "libell_d_acheminement": "CIRE D AUNIS", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17107"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80527ea289a39c5a8f3bde98fb366b410792af1e", "fields": {"nom_de_la_commune": "CLION", "libell_d_acheminement": "CLION", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17111"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf751219951d414eef5c97e0687368cbd4176bfd", "fields": {"nom_de_la_commune": "LA CLISSE", "libell_d_acheminement": "LA CLISSE", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17112"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6834c6469d718a7ce20588406a16b3816057b107", "fields": {"nom_de_la_commune": "LA CLOTTE", "libell_d_acheminement": "LA CLOTTE", "code_postal": "17360", "coordonnees_gps": [45.1692213805, -0.0733315684265], "code_commune_insee": "17113"}, "geometry": {"type": "Point", "coordinates": [-0.0733315684265, 45.1692213805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad398e28889dcc298914a10ed1a6a65ecb929e8f", "fields": {"nom_de_la_commune": "COIVERT", "libell_d_acheminement": "COIVERT", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17114"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521e798212761c4ab83e400a318163dfa70ab306", "fields": {"nom_de_la_commune": "COLOMBIERS", "libell_d_acheminement": "COLOMBIERS", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17115"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aabe1802d5d2b39c232a0796f84c377b69531af4", "fields": {"nom_de_la_commune": "CORME ROYAL", "libell_d_acheminement": "CORME ROYAL", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17120"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7206d384cad1220c3a86961a39e62b3196d5d206", "fields": {"nom_de_la_commune": "COURANT", "libell_d_acheminement": "COURANT", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17124"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d64b4492be9e5fee04b0dd30713143da4f734c6", "fields": {"nom_de_la_commune": "COZES", "libell_d_acheminement": "COZES", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17131"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf1c292f5aaf4890b1fe430d1a96c1e4d81bf957", "fields": {"nom_de_la_commune": "CRAVANS", "libell_d_acheminement": "CRAVANS", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17133"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "810274be1f5fa0d07f9df6483b416f3fb272365a", "fields": {"nom_de_la_commune": "DOLUS D OLERON", "libell_d_acheminement": "DOLUS D OLERON", "code_postal": "17550", "coordonnees_gps": [45.9095924595, -1.25760715689], "code_commune_insee": "17140"}, "geometry": {"type": "Point", "coordinates": [-1.25760715689, 45.9095924595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b3e9043b715630c0ae21acb2e4a81bc6d1f1dd5", "fields": {"nom_de_la_commune": "ECOYEUX", "libell_d_acheminement": "ECOYEUX", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17147"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc6956bb746fd4723e6131d2952bb7d7ef4bd80f", "fields": {"nom_de_la_commune": "LES EDUTS", "libell_d_acheminement": "LES EDUTS", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17149"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9b8be1db4092acbdea6a660f7a2c08753330386", "fields": {"nom_de_la_commune": "EXPIREMONT", "libell_d_acheminement": "EXPIREMONT", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17156"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ae1c7c48a0b0f4c5ce99fb9f0025eea4943c1b", "fields": {"nom_de_la_commune": "FONTAINE CHALENDRAY", "libell_d_acheminement": "FONTAINE CHALENDRAY", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17162"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1026d674d3b0174443ada7664f93a6e8a0c91b88", "fields": {"nom_de_la_commune": "FONTCOUVERTE", "libell_d_acheminement": "FONTCOUVERTE", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17164"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e31c33f7b9e22f126612e0eea9ae6f690d3663", "fields": {"nom_de_la_commune": "FONTENET", "libell_d_acheminement": "FONTENET", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17165"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d395203841a2d2b8fa265c61d06796bdfd1be47a", "fields": {"nom_de_la_commune": "FOURAS", "libell_d_acheminement": "FOURAS", "code_postal": "17450", "coordonnees_gps": [45.9868352342, -1.03911420802], "code_commune_insee": "17168"}, "geometry": {"type": "Point", "coordinates": [-1.03911420802, 45.9868352342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c357c1532ca7686f6bccfa937309726e866a2dc4", "fields": {"nom_de_la_commune": "GEAY", "libell_d_acheminement": "GEAY", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17171"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4c8b6e29557c7ec665aa8193b599f6e0dd4de7", "fields": {"nom_de_la_commune": "LA GENETOUZE", "libell_d_acheminement": "LA GENETOUZE", "code_postal": "17360", "coordonnees_gps": [45.1692213805, -0.0733315684265], "code_commune_insee": "17173"}, "geometry": {"type": "Point", "coordinates": [-0.0733315684265, 45.1692213805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58aab54cd47b5192b6637617b352c4cd5cdd6439", "fields": {"nom_de_la_commune": "GENOUILLE", "libell_d_acheminement": "GENOUILLE", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17174"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78df3a1e56813497d777cecfecfd8c3b9f4ee5f2", "fields": {"nom_de_la_commune": "LE GICQ", "libell_d_acheminement": "LE GICQ", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17177"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "520985e8b9af82311ecfbfa957b13eff9481532f", "fields": {"nom_de_la_commune": "GOURVILLETTE", "libell_d_acheminement": "GOURVILLETTE", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17180"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac03477dd980bd791bbca7bb6b239a36a1d5c0d0", "fields": {"nom_de_la_commune": "GUITINIERES", "libell_d_acheminement": "GUITINIERES", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17187"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aa8161fcb158779c70e9a573546e475add41e1a", "fields": {"code_postal": "17320", "code_commune_insee": "17189", "libell_d_acheminement": "HIERS BROUAGE", "ligne_5": "BROUAGE", "nom_de_la_commune": "HIERS BROUAGE", "coordonnees_gps": [45.8153693416, -1.06418747186]}, "geometry": {"type": "Point", "coordinates": [-1.06418747186, 45.8153693416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d33921a5f759405bca60d7b2f9f1a4a6a64d3334", "fields": {"nom_de_la_commune": "LONZAC", "libell_d_acheminement": "LONZAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17209"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe61fe52a93386d46ce9729ef24f83fbbbcb499e", "fields": {"nom_de_la_commune": "LOZAY", "libell_d_acheminement": "LOZAY", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17213"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "961054160e9bc5147b85528229471088d1e177b4", "fields": {"nom_de_la_commune": "LUSSANT", "libell_d_acheminement": "LUSSANT", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17216"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7d03eead49b135bb7b20f79f1b2f20cf5d55aa8", "fields": {"nom_de_la_commune": "MARSAIS", "libell_d_acheminement": "MARSAIS", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17221"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32971b5f612bf93876119586a2a31d48dbfd6c1c", "fields": {"code_postal": "17700", "code_commune_insee": "17221", "libell_d_acheminement": "MARSAIS", "ligne_5": "BOISSE", "nom_de_la_commune": "MARSAIS", "coordonnees_gps": [46.1163770552, -0.726851455037]}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12083453a413905130257d97b75561f3f75e6ed", "fields": {"nom_de_la_commune": "MARSILLY", "libell_d_acheminement": "MARSILLY", "code_postal": "17137", "coordonnees_gps": [46.2222024122, -1.1457029757], "code_commune_insee": "17222"}, "geometry": {"type": "Point", "coordinates": [-1.1457029757, 46.2222024122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825e4f6553d294519dccd052cfd2c6636a54c71a", "fields": {"nom_de_la_commune": "LES MATHES", "libell_d_acheminement": "LES MATHES", "code_postal": "17570", "coordonnees_gps": [45.6992032727, -1.14778686925], "code_commune_insee": "17225"}, "geometry": {"type": "Point", "coordinates": [-1.14778686925, 45.6992032727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064959397707e664e8740e3a8791d0f6ceb60974", "fields": {"nom_de_la_commune": "MEUX", "libell_d_acheminement": "MEUX", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17233"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d67dffa7203b058e318a02a7d8345bcffefb6c2b", "fields": {"code_postal": "17150", "code_commune_insee": "17236", "libell_d_acheminement": "MIRAMBEAU", "ligne_5": "PETIT NIORT", "nom_de_la_commune": "MIRAMBEAU", "coordonnees_gps": [45.37045546, -0.599761986367]}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188854a865579bfa290eaa705c1dc4f858f3c9dd", "fields": {"nom_de_la_commune": "MONTGUYON", "libell_d_acheminement": "MONTGUYON", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17241"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29db9019079be895f6a8bf495160fffa769e252f", "fields": {"nom_de_la_commune": "MORNAC SUR SEUDRE", "libell_d_acheminement": "MORNAC SUR SEUDRE", "code_postal": "17113", "coordonnees_gps": [45.707641871, -1.02176900178], "code_commune_insee": "17247"}, "geometry": {"type": "Point", "coordinates": [-1.02176900178, 45.707641871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "156dcac58429bcc0a86647cf1854b9f14286690e", "fields": {"nom_de_la_commune": "MORTAGNE SUR GIRONDE", "libell_d_acheminement": "MORTAGNE SUR GIRONDE", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17248"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a6771eaa1ca069b15a39c40d7208bdfb8ec93b", "fields": {"nom_de_la_commune": "MORTIERS", "libell_d_acheminement": "MORTIERS", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17249"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6476962c61ced6bdb71a5c50865ccd2ac06e90", "fields": {"nom_de_la_commune": "NACHAMPS", "libell_d_acheminement": "NACHAMPS", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17254"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f8d6d6b202d615d85bd90169995c98037c10ae3", "fields": {"nom_de_la_commune": "NIEUL SUR MER", "libell_d_acheminement": "NIEUL SUR MER", "code_postal": "17137", "coordonnees_gps": [46.2222024122, -1.1457029757], "code_commune_insee": "17264"}, "geometry": {"type": "Point", "coordinates": [-1.1457029757, 46.2222024122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "927b68546a92b08f5d95092babc8e2d4a0dce9fd", "fields": {"nom_de_la_commune": "NUAILLE D AUNIS", "libell_d_acheminement": "NUAILLE D AUNIS", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17267"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de708ab5a82130d00c210725dafee3ab490adc1", "fields": {"nom_de_la_commune": "ORIGNOLLES", "libell_d_acheminement": "ORIGNOLLES", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17269"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe0e4870670f1d765c7ea7d29bb80269ed4c0f27", "fields": {"nom_de_la_commune": "OZILLAC", "libell_d_acheminement": "OZILLAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17270"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7d8118a25be0c5bfc5f38a6e151d4fc9f0b7116", "fields": {"nom_de_la_commune": "PAILLE", "libell_d_acheminement": "PAILLE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17271"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521c4e28ef6e573996d6d8086bb3cde03ccf4fc8", "fields": {"nom_de_la_commune": "LALANNE", "libell_d_acheminement": "LALANNE", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65249"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5407e94ff4c50a7bc363790de322bb4aab5a6bd7", "fields": {"nom_de_la_commune": "LAMARQUE PONTACQ", "libell_d_acheminement": "LAMARQUE PONTACQ", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65252"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "134d7466c757bde676bc418ec26412c9f6279dea", "fields": {"nom_de_la_commune": "LIBAROS", "libell_d_acheminement": "LIBAROS", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65274"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f2a0d242d7386c10bde982a0e8b25ec290ac3ed", "fields": {"nom_de_la_commune": "LORTET", "libell_d_acheminement": "LORTET", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65279"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1fec0638097a6ccb5f80d530aa3174dd7bd8490", "fields": {"nom_de_la_commune": "LOUCRUP", "libell_d_acheminement": "LOUCRUP", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65281"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9950b80380fe2ca8a3bef75b8c6cabc762ab7e1", "fields": {"nom_de_la_commune": "LOUDERVIELLE", "libell_d_acheminement": "LOUDERVIELLE", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65283"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "410754c1f6391540bc02857ccb7f5d1962bbadcc", "fields": {"nom_de_la_commune": "LUBRET ST LUC", "libell_d_acheminement": "LUBRET ST LUC", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65288"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a7e0aea44be23fac944e54e9e456c0a2b7c8e2", "fields": {"nom_de_la_commune": "LUGAGNAN", "libell_d_acheminement": "LUGAGNAN", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65291"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42de1e35992bf8d392959e07ac6cc50d221e9bf8", "fields": {"nom_de_la_commune": "LUSTAR", "libell_d_acheminement": "LUSTAR", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65293"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2828bd84c0ae0073e18cec33e22fa955843c10", "fields": {"nom_de_la_commune": "MANSAN", "libell_d_acheminement": "MANSAN", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65297"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29660d47ef3d1b370815654c7a11c0806b84cf7c", "fields": {"nom_de_la_commune": "MARQUERIE", "libell_d_acheminement": "MARQUERIE", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65298"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66cf54335ff4375a451b9cf323f7ebd7787ed866", "fields": {"nom_de_la_commune": "MASCARAS", "libell_d_acheminement": "MASCARAS", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65303"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc89d8a0f07bc53e9f0c4d5ada93a803f09ac813", "fields": {"nom_de_la_commune": "MAULEON BAROUSSE", "libell_d_acheminement": "MAULEON BAROUSSE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65305"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc98bec75727cf9d41daa9f4a9035d1783101a06", "fields": {"nom_de_la_commune": "MAUVEZIN", "libell_d_acheminement": "MAUVEZIN", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65306"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0765871450a2ab2179e9d383c406dee8336b201", "fields": {"nom_de_la_commune": "MONTEGUT", "libell_d_acheminement": "MONTEGUT", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65319"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77fe23b6622654a9dd4eede72992fb6b40d58973", "fields": {"nom_de_la_commune": "MOULEDOUS", "libell_d_acheminement": "MOULEDOUS", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65324"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec80f092789a4cd00cdf299e12438e66c15bf892", "fields": {"nom_de_la_commune": "NESTIER", "libell_d_acheminement": "NESTIER", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65327"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6689c29e40aeb9d53cfa327f058856a968ac6d", "fields": {"nom_de_la_commune": "NOUILHAN", "libell_d_acheminement": "NOUILHAN", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65330"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9e2ce3e10d854f7a5715f801c456693515915aa", "fields": {"nom_de_la_commune": "OURDON", "libell_d_acheminement": "OURDON", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65349"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdae254f6606e71b35da39f9396ccc0c6b227234", "fields": {"nom_de_la_commune": "PEYRAUBE", "libell_d_acheminement": "PEYRAUBE", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65357"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ba7e951674afb1e4bbbcd81cb86b9918fc58d27", "fields": {"nom_de_la_commune": "PIERREFITTE NESTALAS", "libell_d_acheminement": "PIERREFITTE NESTALAS", "code_postal": "65260", "coordonnees_gps": [42.9464075776, -0.0299417216939], "code_commune_insee": "65362"}, "geometry": {"type": "Point", "coordinates": [-0.0299417216939, 42.9464075776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3bd6d83e4db0c9b15814f7c3e049b111b70a363", "fields": {"nom_de_la_commune": "POUEYFERRE", "libell_d_acheminement": "POUEYFERRE", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65366"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c1bfc25a328634402f750e23592e981bbe1396", "fields": {"nom_de_la_commune": "PUNTOUS", "libell_d_acheminement": "PUNTOUS", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65373"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f39f1aefa76821ca4dd4380409ce87766a15c84", "fields": {"nom_de_la_commune": "RICAUD", "libell_d_acheminement": "RICAUD", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65378"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f40b4e1ebee052ed44bcf6dd945a1394ea82c8a", "fields": {"nom_de_la_commune": "SAILHAN", "libell_d_acheminement": "SAILHAN", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65384"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d3b89023fd9207a0f255ecf8fe62b039401c3f1", "fields": {"nom_de_la_commune": "ST PE DE BIGORRE", "libell_d_acheminement": "ST PE DE BIGORRE", "code_postal": "65270", "coordonnees_gps": [43.0865540375, -0.153402154406], "code_commune_insee": "65395"}, "geometry": {"type": "Point", "coordinates": [-0.153402154406, 43.0865540375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c925362ea54b50d79f7386ca66f56689f7cfb1", "fields": {"nom_de_la_commune": "SALECHAN", "libell_d_acheminement": "SALECHAN", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65398"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3132cfb48ffc7dde7a8097ed5d1566a1a57664", "fields": {"nom_de_la_commune": "SANOUS", "libell_d_acheminement": "SANOUS", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65403"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84cdc5adf7958b0c262e8a0df3cbbaefc6c2471e", "fields": {"nom_de_la_commune": "SARP", "libell_d_acheminement": "SARP", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65407"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c8d82e0dc11cc19d12ceac3e236c3cb125c25c1", "fields": {"nom_de_la_commune": "SARRANCOLIN", "libell_d_acheminement": "SARRANCOLIN", "code_postal": "65410", "coordonnees_gps": [42.9580883388, 0.38930305031], "code_commune_insee": "65408"}, "geometry": {"type": "Point", "coordinates": [0.38930305031, 42.9580883388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c711453e8eba14635c0776b819f3c92224a361be", "fields": {"nom_de_la_commune": "SEICH", "libell_d_acheminement": "SEICH", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65416"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f81963b7b6a4099cd720157fe1f2e3674a49257", "fields": {"nom_de_la_commune": "SENAC", "libell_d_acheminement": "SENAC", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65418"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d903de1736b9c081e932556b71550bd851a9688", "fields": {"nom_de_la_commune": "SERE EN LAVEDAN", "libell_d_acheminement": "SERE EN LAVEDAN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65420"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e455120401e367ca0411c8e516352dcb07d2aea", "fields": {"nom_de_la_commune": "SERON", "libell_d_acheminement": "SERON", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65422"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35489027aa9abc7e90d20d38551b698487a7e47f", "fields": {"nom_de_la_commune": "SERS", "libell_d_acheminement": "SERS", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65424"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3baf11811103c6ca838ef3035794fa8b7982a5e", "fields": {"nom_de_la_commune": "SIARROUY", "libell_d_acheminement": "SIARROUY", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65425"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12d574a8e3acef175ed857072c60da272f22dafc", "fields": {"nom_de_la_commune": "SOREAC", "libell_d_acheminement": "SOREAC", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65430"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1f2174e0fb038c0c3b7b27175759e80ea4a8ea3", "fields": {"nom_de_la_commune": "SOST", "libell_d_acheminement": "SOST", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65431"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2729a01f4859cee0f047520e0bdfa8bac1b6adfb", "fields": {"nom_de_la_commune": "TAJAN", "libell_d_acheminement": "TAJAN", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65437"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "894cb40d06535b1a4e49abb658a80ca887f8749a", "fields": {"nom_de_la_commune": "TOURNOUS DEVANT", "libell_d_acheminement": "TOURNOUS DEVANT", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65449"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4724a4eef408767019099ce83535ef2e1cb2e62", "fields": {"nom_de_la_commune": "VIELLE AURE", "libell_d_acheminement": "VIELLE AURE", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65465"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5378dc7450c30676f0980dbdde092ee2ef81e983", "fields": {"nom_de_la_commune": "VILLEFRANQUE", "libell_d_acheminement": "VILLEFRANQUE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65472"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d8d3a44b0b9a092944f478e8caf8180f7cf0da", "fields": {"nom_de_la_commune": "VILLEMBITS", "libell_d_acheminement": "VILLEMBITS", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65474"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b58626a348902ffad22b777f64c7db304c873a", "fields": {"nom_de_la_commune": "VILLENAVE PRES BEARN", "libell_d_acheminement": "VILLENAVE PRES BEARN", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65476"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e31ebd73482b806b4efdab487158e69031d9507", "fields": {"nom_de_la_commune": "L ALBERE", "libell_d_acheminement": "L ALBERE", "code_postal": "66480", "coordonnees_gps": [42.4667287992, 2.83075140133], "code_commune_insee": "66001"}, "geometry": {"type": "Point", "coordinates": [2.83075140133, 42.4667287992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f6cf4d159ef37d5d0e9d46fa4970ae95933eadb", "fields": {"nom_de_la_commune": "ANSIGNAN", "libell_d_acheminement": "ANSIGNAN", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66006"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9158e7c7d8c1b284bcbad4b3be931c75f3f7cd44", "fields": {"nom_de_la_commune": "ARBOUSSOLS", "libell_d_acheminement": "ARBOUSSOLS", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66007"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdddcb8d993f7fbec55a695dc17d439bbc1c6388", "fields": {"code_postal": "66700", "code_commune_insee": "66008", "libell_d_acheminement": "ARGELES SUR MER", "ligne_5": "ARGELES PLAGE", "nom_de_la_commune": "ARGELES SUR MER", "coordonnees_gps": [42.5348887985, 3.02437222273]}, "geometry": {"type": "Point", "coordinates": [3.02437222273, 42.5348887985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ed986c52afbc25c85e9133936c7978dc0623ec", "fields": {"nom_de_la_commune": "AYGUATEBIA TALAU", "libell_d_acheminement": "AYGUATEBIA TALAU", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66010"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896ec700b68b8cc8841a0d5537118bfa4901da1f", "fields": {"nom_de_la_commune": "BANYULS DELS ASPRES", "libell_d_acheminement": "BANYULS DELS ASPRES", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66015"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b5e2f1eb21ced64f63bda3ec80ec99fec964de", "fields": {"nom_de_la_commune": "LE BARCARES", "libell_d_acheminement": "LE BARCARES", "code_postal": "66420", "coordonnees_gps": [42.8127463649, 3.02827722038], "code_commune_insee": "66017"}, "geometry": {"type": "Point", "coordinates": [3.02827722038, 42.8127463649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7fd66ba92bffeba93b9ec5962cf5e34d4a6297c", "fields": {"nom_de_la_commune": "CAMPOUSSY", "libell_d_acheminement": "CAMPOUSSY", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66035"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "996dd25ad05b3d1332046cf7a449de019b9511aa", "fields": {"nom_de_la_commune": "CANET EN ROUSSILLON", "libell_d_acheminement": "CANET EN ROUSSILLON", "code_postal": "66140", "coordonnees_gps": [42.6840532629, 3.01103032321], "code_commune_insee": "66037"}, "geometry": {"type": "Point", "coordinates": [3.01103032321, 42.6840532629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba863d80f615f3e19af410394b3e065fad59aff1", "fields": {"nom_de_la_commune": "CANOHES", "libell_d_acheminement": "CANOHES", "code_postal": "66680", "coordonnees_gps": [42.6519972301, 2.83404094094], "code_commune_insee": "66038"}, "geometry": {"type": "Point", "coordinates": [2.83404094094, 42.6519972301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5357b9e97549ca66f66e3f786ad69e6495c33eb5", "fields": {"nom_de_la_commune": "CASTEIL", "libell_d_acheminement": "CASTEIL", "code_postal": "66820", "coordonnees_gps": [42.5365726469, 2.40581074719], "code_commune_insee": "66043"}, "geometry": {"type": "Point", "coordinates": [2.40581074719, 42.5365726469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e58b9c42329e98e2a3564068d6a9384e2ae870a", "fields": {"nom_de_la_commune": "CAUDIES DE FENOUILLEDES", "libell_d_acheminement": "CAUDIES DE FENOUILLEDES", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66046"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed0a4283e92af041242a3dcf19c9ad088c35b37", "fields": {"nom_de_la_commune": "EGAT", "libell_d_acheminement": "EGAT", "code_postal": "66120", "coordonnees_gps": [42.5100577993, 2.01893656435], "code_commune_insee": "66064"}, "geometry": {"type": "Point", "coordinates": [2.01893656435, 42.5100577993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b02f38dea182ac9d312667d133cbbe7edf420e", "fields": {"nom_de_la_commune": "FENOUILLET", "libell_d_acheminement": "FENOUILLET", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66077"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779399ea147f7b945b8f80572b8e2d33670bcbb8", "fields": {"nom_de_la_commune": "FONTPEDROUSE", "libell_d_acheminement": "FONTPEDROUSE", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66080"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8733841f33bcb65d34860165599b189e9e08e018", "fields": {"nom_de_la_commune": "FORMIGUERES", "libell_d_acheminement": "FORMIGUERES", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66082"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "437e15effd985ae2d46873b4d8b3c9ea233bf7c1", "fields": {"nom_de_la_commune": "JUJOLS", "libell_d_acheminement": "JUJOLS", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66090"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e95f417aabc17d95f966de0d1a17ff29b78db5c", "fields": {"nom_de_la_commune": "LATOUR DE FRANCE", "libell_d_acheminement": "LATOUR DE FRANCE", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66096"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f78c9fabe061f33a2b2168386eca59aa2a7ceceb", "fields": {"nom_de_la_commune": "MAURY", "libell_d_acheminement": "MAURY", "code_postal": "66460", "coordonnees_gps": [42.8153333034, 2.61278796478], "code_commune_insee": "66107"}, "geometry": {"type": "Point", "coordinates": [2.61278796478, 42.8153333034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e71dfd05cd2fbaa54517ba4bf0ede998984707c0", "fields": {"nom_de_la_commune": "MOLITG LES BAINS", "libell_d_acheminement": "MOLITG LES BAINS", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66109"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "768019ce1a317b4b244d079b0309a356a5f5ba6b", "fields": {"nom_de_la_commune": "MONTNER", "libell_d_acheminement": "MONTNER", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66118"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d7383475ed62e35dfac3f112417d2ed3dda3db", "fields": {"nom_de_la_commune": "NEFIACH", "libell_d_acheminement": "NEFIACH", "code_postal": "66170", "coordonnees_gps": [42.6894398344, 2.7011687182], "code_commune_insee": "66121"}, "geometry": {"type": "Point", "coordinates": [2.7011687182, 42.6894398344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "430342e883d5b179db2931f9a0dc624e7d5b716e", "fields": {"nom_de_la_commune": "NOHEDES", "libell_d_acheminement": "NOHEDES", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66122"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5d5d955d47afd0ee9c5365c403e3c20abdacd0", "fields": {"nom_de_la_commune": "OREILLA", "libell_d_acheminement": "OREILLA", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66128"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54027db93382ce2d02dc42f1f66cc6c9a9abd783", "fields": {"nom_de_la_commune": "ORTAFFA", "libell_d_acheminement": "ORTAFFA", "code_postal": "66560", "coordonnees_gps": [42.5842290133, 2.92105063655], "code_commune_insee": "66129"}, "geometry": {"type": "Point", "coordinates": [2.92105063655, 42.5842290133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8070b4153a196b32930ff0c086762729da5423d6", "fields": {"nom_de_la_commune": "PERPIGNAN", "libell_d_acheminement": "PERPIGNAN", "code_postal": "66000", "coordonnees_gps": [42.6965780787, 2.8990363094], "code_commune_insee": "66136"}, "geometry": {"type": "Point", "coordinates": [2.8990363094, 42.6965780787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7d5be3fb24de710354fef8780c917983c8271c", "fields": {"nom_de_la_commune": "PERPIGNAN", "libell_d_acheminement": "PERPIGNAN", "code_postal": "66100", "coordonnees_gps": [42.6965780787, 2.8990363094], "code_commune_insee": "66136"}, "geometry": {"type": "Point", "coordinates": [2.8990363094, 42.6965780787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b1da6e1f52c4c7f6cb2e83c933f86343bf83af", "fields": {"nom_de_la_commune": "PEZILLA DE CONFLENT", "libell_d_acheminement": "PEZILLA DE CONFLENT", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66139"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4d2153b890b1526a1bec79f5ca2e3cccec2ce0c", "fields": {"nom_de_la_commune": "RABOUILLET", "libell_d_acheminement": "RABOUILLET", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66156"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c72241bd42501a8325a4b1fe5ddd9458cf90308b", "fields": {"nom_de_la_commune": "RIA SIRACH", "libell_d_acheminement": "RIA SIRACH", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66161"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78095c9038724730c1af477624eab63eb7a4bbf5", "fields": {"nom_de_la_commune": "ST CYPRIEN", "libell_d_acheminement": "ST CYPRIEN", "code_postal": "66750", "coordonnees_gps": [42.6215443808, 3.01628317328], "code_commune_insee": "66171"}, "geometry": {"type": "Point", "coordinates": [3.01628317328, 42.6215443808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff70366f937c12a0869880bbc1f1d0edf46489f3", "fields": {"nom_de_la_commune": "ST LAURENT DE CERDANS", "libell_d_acheminement": "ST LAURENT DE CERDANS", "code_postal": "66260", "coordonnees_gps": [42.3859400236, 2.62616972995], "code_commune_insee": "66179"}, "geometry": {"type": "Point", "coordinates": [2.62616972995, 42.3859400236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8f3de9161851f66245f099371549d66b8f30fed", "fields": {"nom_de_la_commune": "ST PIERRE DELS FORCATS", "libell_d_acheminement": "ST PIERRE DELS FORCATS", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66188"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d86cefe8258b7047b658f7c51ed69485a9d3b2", "fields": {"nom_de_la_commune": "SERRALONGUE", "libell_d_acheminement": "SERRALONGUE", "code_postal": "66230", "coordonnees_gps": [42.4105505253, 2.4745003861], "code_commune_insee": "66194"}, "geometry": {"type": "Point", "coordinates": [2.4745003861, 42.4105505253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc8943247494862317f870c84d3dab5a08eba54d", "fields": {"nom_de_la_commune": "URBANYA", "libell_d_acheminement": "URBANYA", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66219"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70a8b7053da5413aeb2fe76851749380f75a0ac2", "fields": {"nom_de_la_commune": "VILLELONGUE DELS MONTS", "libell_d_acheminement": "VILLELONGUE DELS MONTS", "code_postal": "66740", "coordonnees_gps": [42.5221445036, 2.90707419717], "code_commune_insee": "66225"}, "geometry": {"type": "Point", "coordinates": [2.90707419717, 42.5221445036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9697e4b0744670bac2f12f8717ac806911e404b2", "fields": {"nom_de_la_commune": "ALTENHEIM", "libell_d_acheminement": "ALTENHEIM", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67006"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "486f97e55cbb7c04a426026c0b8a128a6bdfa659", "fields": {"nom_de_la_commune": "ASCHBACH", "libell_d_acheminement": "ASCHBACH", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67012"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715ffaeb66738e0d2707e06ab21a0640a2543172", "fields": {"nom_de_la_commune": "BARR", "libell_d_acheminement": "BARR", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67021"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55fcdd970a35b7b29e8419520ad2336e783714b0", "fields": {"nom_de_la_commune": "BENFELD", "libell_d_acheminement": "BENFELD", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67028"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f499fd12069d65973d7286632377e24493e03ac2", "fields": {"nom_de_la_commune": "BERNARDSWILLER", "libell_d_acheminement": "BERNARDSWILLER", "code_postal": "67210", "coordonnees_gps": [48.4477372351, 7.50825704753], "code_commune_insee": "67031"}, "geometry": {"type": "Point", "coordinates": [7.50825704753, 48.4477372351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac62541e31510c45d020991bffa8ecf4c8f9ca6", "fields": {"nom_de_la_commune": "BERSTETT", "libell_d_acheminement": "BERSTETT", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67034"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd4c8b4ae4d547c125d7e94f95ec2f7beb4360c1", "fields": {"code_postal": "67370", "code_commune_insee": "67034", "libell_d_acheminement": "BERSTETT", "ligne_5": "GIMBRETT", "nom_de_la_commune": "BERSTETT", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703402225ea03f55a4217dd5d33807469f3790b1", "fields": {"nom_de_la_commune": "BIBLISHEIM", "libell_d_acheminement": "BIBLISHEIM", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67037"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23b905db86b8c4c2c4dd6d32e3352ff2caf9adbb", "fields": {"nom_de_la_commune": "BISCHWILLER", "libell_d_acheminement": "BISCHWILLER", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67046"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b936ca68015d45a69007318178681954bc828e", "fields": {"code_postal": "67530", "code_commune_insee": "67052", "libell_d_acheminement": "BOERSCH", "ligne_5": "KLINGENTHAL", "nom_de_la_commune": "BOERSCH", "coordonnees_gps": [48.4532281253, 7.37169792676]}, "geometry": {"type": "Point", "coordinates": [7.37169792676, 48.4532281253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7edcc07f69746aedb6cc7a3d03b28e542b20354", "fields": {"nom_de_la_commune": "BOSSELSHAUSEN", "libell_d_acheminement": "BOSSELSHAUSEN", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67057"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "989d82f285bb721ccae4593ba41057d3ac3b217b", "fields": {"nom_de_la_commune": "CRASTATT", "libell_d_acheminement": "CRASTATT", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67078"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "760a664705be8a112e1a18e8492beaad6cbbd750", "fields": {"nom_de_la_commune": "DALHUNDEN", "libell_d_acheminement": "DALHUNDEN", "code_postal": "67770", "coordonnees_gps": [48.786400847, 7.99175996988], "code_commune_insee": "67082"}, "geometry": {"type": "Point", "coordinates": [7.99175996988, 48.786400847]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8834ba5d2a9562a3463ba9a71b36cb49a9edc8e4", "fields": {"code_postal": "67110", "code_commune_insee": "67083", "libell_d_acheminement": "DAMBACH", "ligne_5": "NEUNHOFFEN", "nom_de_la_commune": "DAMBACH", "coordonnees_gps": [48.9564241197, 7.64420401079]}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "529bee9a223dccd634c9016c485e1e4683d0ed13", "fields": {"nom_de_la_commune": "DAUENDORF", "libell_d_acheminement": "DAUENDORF", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67087"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7015ada1ab0596c53a8b707d595dfe1503d51aac", "fields": {"nom_de_la_commune": "DEHLINGEN", "libell_d_acheminement": "DEHLINGEN", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67088"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d66de955c9da5a3faa819c66b8fdd1219d72a15", "fields": {"nom_de_la_commune": "DIEDENDORF", "libell_d_acheminement": "DIEDENDORF", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67091"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "108744c135d9860841c31bc9b143c7346bcff55a", "fields": {"nom_de_la_commune": "DIMBSTHAL", "libell_d_acheminement": "DIMBSTHAL", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67096"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5e101ea4c319b99c363bc63aa9b1bb50397596", "fields": {"nom_de_la_commune": "DINGSHEIM", "libell_d_acheminement": "DINGSHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67097"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558ab3256c6fea689457572526345037868617fb", "fields": {"nom_de_la_commune": "DINSHEIM SUR BRUCHE", "libell_d_acheminement": "DINSHEIM SUR BRUCHE", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67098"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "193536bcedb5f0473a613a584d887cd40e5dcbed", "fields": {"code_postal": "83270", "code_commune_insee": "83112", "libell_d_acheminement": "ST CYR SUR MER", "ligne_5": "LES LECQUES", "nom_de_la_commune": "ST CYR SUR MER", "coordonnees_gps": [43.1726377038, 5.70862543611]}, "geometry": {"type": "Point", "coordinates": [5.70862543611, 43.1726377038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd6559836cf21a2ded0268746e95783c1eee305", "fields": {"code_postal": "83530", "code_commune_insee": "83118", "libell_d_acheminement": "ST RAPHAEL", "ligne_5": "LE TRAYAS", "nom_de_la_commune": "ST RAPHAEL", "coordonnees_gps": [43.4577463744, 6.84776131018]}, "geometry": {"type": "Point", "coordinates": [6.84776131018, 43.4577463744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7038d40c7233ec61f9ae201a8aad8ae0e5824a45", "fields": {"nom_de_la_commune": "ST RAPHAEL", "libell_d_acheminement": "ST RAPHAEL", "code_postal": "83700", "coordonnees_gps": [43.4577463744, 6.84776131018], "code_commune_insee": "83118"}, "geometry": {"type": "Point", "coordinates": [6.84776131018, 43.4577463744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "972bdf06638cb0296717193b5e7c3cc402bf856f", "fields": {"nom_de_la_commune": "SALERNES", "libell_d_acheminement": "SALERNES", "code_postal": "83690", "coordonnees_gps": [43.5714577926, 6.24944372254], "code_commune_insee": "83121"}, "geometry": {"type": "Point", "coordinates": [6.24944372254, 43.5714577926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b05d4a674003cb9730424ee20fb6dcca77558e1", "fields": {"code_postal": "83440", "code_commune_insee": "83124", "libell_d_acheminement": "SEILLANS", "ligne_5": "BROVES", "nom_de_la_commune": "SEILLANS", "coordonnees_gps": [43.6294442313, 6.71670662623]}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a23c6aac52aee6ba7c5211758aaef2a0f6f5f9", "fields": {"nom_de_la_commune": "SIGNES", "libell_d_acheminement": "SIGNES", "code_postal": "83870", "coordonnees_gps": [43.2774263798, 5.85732378332], "code_commune_insee": "83127"}, "geometry": {"type": "Point", "coordinates": [5.85732378332, 43.2774263798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d715be693dd9aaa979d47ce45870d1acec8ea3", "fields": {"nom_de_la_commune": "SILLANS LA CASCADE", "libell_d_acheminement": "SILLANS LA CASCADE", "code_postal": "83690", "coordonnees_gps": [43.5714577926, 6.24944372254], "code_commune_insee": "83128"}, "geometry": {"type": "Point", "coordinates": [6.24944372254, 43.5714577926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9741178cb3d1f03fe729606f1a0365b5ec5e2eb", "fields": {"code_postal": "83140", "code_commune_insee": "83129", "libell_d_acheminement": "SIX FOURS LES PLAGES", "ligne_5": "LE BRUSC", "nom_de_la_commune": "SIX FOURS LES PLAGES", "coordonnees_gps": [43.0867535374, 5.8292161637]}, "geometry": {"type": "Point", "coordinates": [5.8292161637, 43.0867535374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925b3fb3ef0eb24a9ac7897e2a0eef763df161f6", "fields": {"code_postal": "83140", "code_commune_insee": "83129", "libell_d_acheminement": "SIX FOURS LES PLAGES", "ligne_5": "LES LONES", "nom_de_la_commune": "SIX FOURS LES PLAGES", "coordonnees_gps": [43.0867535374, 5.8292161637]}, "geometry": {"type": "Point", "coordinates": [5.8292161637, 43.0867535374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc61a43dfffd337579ca56e827b60128ec3a93ea", "fields": {"nom_de_la_commune": "SOLLIES TOUCAS", "libell_d_acheminement": "SOLLIES TOUCAS", "code_postal": "83210", "coordonnees_gps": [43.2011646228, 6.01550347803], "code_commune_insee": "83131"}, "geometry": {"type": "Point", "coordinates": [6.01550347803, 43.2011646228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b042d10c82d36a178301bcdeee0456c661207c62", "fields": {"nom_de_la_commune": "TANNERON", "libell_d_acheminement": "TANNERON", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83133"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b9361edfc65d393df5488c4ff62bb9cddce1e3", "fields": {"nom_de_la_commune": "LE THORONET", "libell_d_acheminement": "LE THORONET", "code_postal": "83340", "coordonnees_gps": [43.3884986728, 6.30143999122], "code_commune_insee": "83136"}, "geometry": {"type": "Point", "coordinates": [6.30143999122, 43.3884986728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7464cec0f10d95efc840be6180b3b7f0fbe95bdf", "fields": {"nom_de_la_commune": "TOULON", "libell_d_acheminement": "TOULON", "code_postal": "83000", "coordonnees_gps": [43.1364016655, 5.93275623187], "code_commune_insee": "83137"}, "geometry": {"type": "Point", "coordinates": [5.93275623187, 43.1364016655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94672061ba9f61bece9c8f1f68d9f8b6f64eae44", "fields": {"nom_de_la_commune": "TOURTOUR", "libell_d_acheminement": "TOURTOUR", "code_postal": "83690", "coordonnees_gps": [43.5714577926, 6.24944372254], "code_commune_insee": "83139"}, "geometry": {"type": "Point", "coordinates": [6.24944372254, 43.5714577926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b0c02b9f0faeaea67a18d93d99180b0e09c7a4", "fields": {"nom_de_la_commune": "LE VAL", "libell_d_acheminement": "LE VAL", "code_postal": "83143", "coordonnees_gps": [43.4454941817, 6.05138121322], "code_commune_insee": "83143"}, "geometry": {"type": "Point", "coordinates": [6.05138121322, 43.4454941817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d523b13668615e40abc38dfbd262ce7466b9284d", "fields": {"nom_de_la_commune": "VARAGES", "libell_d_acheminement": "VARAGES", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83145"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17059b0c70f28ca2782c9b4cfc26f48c6d1afb44", "fields": {"nom_de_la_commune": "LA VERDIERE", "libell_d_acheminement": "LA VERDIERE", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83146"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9680d08b760589d7880a884879eff5ec6f5247d", "fields": {"nom_de_la_commune": "VIDAUBAN", "libell_d_acheminement": "VIDAUBAN", "code_postal": "83550", "coordonnees_gps": [43.4013422839, 6.44935857032], "code_commune_insee": "83148"}, "geometry": {"type": "Point", "coordinates": [6.44935857032, 43.4013422839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dda525e065bb5f5835ba6f24231093fa497078c6", "fields": {"nom_de_la_commune": "AVIGNON", "libell_d_acheminement": "AVIGNON", "code_postal": "84000", "coordonnees_gps": [43.9352589636, 4.84116595474], "code_commune_insee": "84007"}, "geometry": {"type": "Point", "coordinates": [4.84116595474, 43.9352589636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d27d40843e07543e11450f4851bdaae2c0575ea", "fields": {"nom_de_la_commune": "CABRIERES D AVIGNON", "libell_d_acheminement": "CABRIERES D AVIGNON", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84025"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e0daeac2ee548c568113558727c0092bf3f06c", "fields": {"nom_de_la_commune": "CADEROUSSE", "libell_d_acheminement": "CADEROUSSE", "code_postal": "84860", "coordonnees_gps": [44.1099839042, 4.74354973859], "code_commune_insee": "84027"}, "geometry": {"type": "Point", "coordinates": [4.74354973859, 44.1099839042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e36e42b0c8bbdc332ac6ff53e514c4596ed36bd5", "fields": {"nom_de_la_commune": "CARPENTRAS", "libell_d_acheminement": "CARPENTRAS", "code_postal": "84200", "coordonnees_gps": [44.059163985, 5.06111954826], "code_commune_insee": "84031"}, "geometry": {"type": "Point", "coordinates": [5.06111954826, 44.059163985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954f662447ea5ac776b26623c3b5b5769ce8b927", "fields": {"nom_de_la_commune": "GIGNAC", "libell_d_acheminement": "GIGNAC", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84048"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "322617caa23849c61016d55dff9fb1b08544ac0a", "fields": {"nom_de_la_commune": "L ISLE SUR LA SORGUE", "libell_d_acheminement": "L ISLE SUR LA SORGUE", "code_postal": "84800", "coordonnees_gps": [43.9157193663, 5.08616198697], "code_commune_insee": "84054"}, "geometry": {"type": "Point", "coordinates": [5.08616198697, 43.9157193663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44778b755917a75f0d62265346b37646d58ba7a", "fields": {"nom_de_la_commune": "JONQUIERES", "libell_d_acheminement": "JONQUIERES", "code_postal": "84150", "coordonnees_gps": [44.1493241493, 4.92779558377], "code_commune_insee": "84056"}, "geometry": {"type": "Point", "coordinates": [4.92779558377, 44.1493241493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc5dbed1548e059c42ce1469f01398d395eb777", "fields": {"nom_de_la_commune": "LAFARE", "libell_d_acheminement": "LAFARE", "code_postal": "84190", "coordonnees_gps": [44.1503927193, 5.02329856851], "code_commune_insee": "84059"}, "geometry": {"type": "Point", "coordinates": [5.02329856851, 44.1503927193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "619dc37760d8b17f0052b55b95c86d388d092afb", "fields": {"nom_de_la_commune": "LAGARDE PAREOL", "libell_d_acheminement": "LAGARDE PAREOL", "code_postal": "84290", "coordonnees_gps": [44.2363120458, 4.9094119857], "code_commune_insee": "84061"}, "geometry": {"type": "Point", "coordinates": [4.9094119857, 44.2363120458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a417e49a2824f9471aecb0798bb249d75008f229", "fields": {"nom_de_la_commune": "LAPALUD", "libell_d_acheminement": "LAPALUD", "code_postal": "84840", "coordonnees_gps": [44.2940948566, 4.67799884767], "code_commune_insee": "84064"}, "geometry": {"type": "Point", "coordinates": [4.67799884767, 44.2940948566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9664d851bef4eab68f25f3dc8c128511b649cd4a", "fields": {"nom_de_la_commune": "MAUBEC", "libell_d_acheminement": "MAUBEC", "code_postal": "84660", "coordonnees_gps": [43.8421077807, 5.13738605454], "code_commune_insee": "84071"}, "geometry": {"type": "Point", "coordinates": [5.13738605454, 43.8421077807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f828c74cc8df29225a1768bf3189f9e7406230d7", "fields": {"nom_de_la_commune": "MAZAN", "libell_d_acheminement": "MAZAN", "code_postal": "84380", "coordonnees_gps": [44.0546411314, 5.13024969029], "code_commune_insee": "84072"}, "geometry": {"type": "Point", "coordinates": [5.13024969029, 44.0546411314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97abce9185b1a82c2c5550b6342d79e4e467011d", "fields": {"nom_de_la_commune": "MERINDOL", "libell_d_acheminement": "MERINDOL", "code_postal": "84360", "coordonnees_gps": [43.7644472633, 5.24997704663], "code_commune_insee": "84074"}, "geometry": {"type": "Point", "coordinates": [5.24997704663, 43.7644472633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9baf9fa5352db0ec9d852e306a6cafab4deee0", "fields": {"nom_de_la_commune": "MIRABEAU", "libell_d_acheminement": "MIRABEAU", "code_postal": "84120", "coordonnees_gps": [43.7091986566, 5.61120901003], "code_commune_insee": "84076"}, "geometry": {"type": "Point", "coordinates": [5.61120901003, 43.7091986566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b74bd310c567b0d7c72cec82f4e3732939fb79f", "fields": {"nom_de_la_commune": "MONDRAGON", "libell_d_acheminement": "MONDRAGON", "code_postal": "84430", "coordonnees_gps": [44.2430528023, 4.72491929998], "code_commune_insee": "84078"}, "geometry": {"type": "Point", "coordinates": [4.72491929998, 44.2430528023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "582913a88a07a74fc851efa813417c078094248e", "fields": {"nom_de_la_commune": "MONIEUX", "libell_d_acheminement": "MONIEUX", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84079"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bf0220719f1df2109ba7bb5a38210dc686573f6", "fields": {"nom_de_la_commune": "LA MOTTE D AIGUES", "libell_d_acheminement": "LA MOTTE D AIGUES", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84084"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5e90612874d6ec05bc91d122cd91048148c5813", "fields": {"nom_de_la_commune": "ORANGE", "libell_d_acheminement": "ORANGE", "code_postal": "84100", "coordonnees_gps": [44.1461192195, 4.80873017728], "code_commune_insee": "84087"}, "geometry": {"type": "Point", "coordinates": [4.80873017728, 44.1461192195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "066db117634683ec91614aed4d1d63bbc3c5af3a", "fields": {"nom_de_la_commune": "PERTUIS", "libell_d_acheminement": "PERTUIS", "code_postal": "84120", "coordonnees_gps": [43.7091986566, 5.61120901003], "code_commune_insee": "84089"}, "geometry": {"type": "Point", "coordinates": [5.61120901003, 43.7091986566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4967f97b6d5f9f08caec13501d653f5234d4fb7d", "fields": {"nom_de_la_commune": "PIOLENC", "libell_d_acheminement": "PIOLENC", "code_postal": "84420", "coordonnees_gps": [44.1777129788, 4.76593686798], "code_commune_insee": "84091"}, "geometry": {"type": "Point", "coordinates": [4.76593686798, 44.1777129788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "784ca59ff45c4da8d0a165d8745f3f93f9363901", "fields": {"nom_de_la_commune": "LE PONTET", "libell_d_acheminement": "LE PONTET", "code_postal": "84130", "coordonnees_gps": [43.9685341949, 4.86529083316], "code_commune_insee": "84092"}, "geometry": {"type": "Point", "coordinates": [4.86529083316, 43.9685341949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e68b40d4077e2a66254ae9b2e0a4a937489f5b96", "fields": {"nom_de_la_commune": "ROAIX", "libell_d_acheminement": "ROAIX", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84098"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "505be1efde8c5051a150e823babc99ed3018026d", "fields": {"nom_de_la_commune": "ROBION", "libell_d_acheminement": "ROBION", "code_postal": "84440", "coordonnees_gps": [43.8518288496, 5.10936121375], "code_commune_insee": "84099"}, "geometry": {"type": "Point", "coordinates": [5.10936121375, 43.8518288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be28d4aad321b8fb71568373d5f648d0c0c2785", "fields": {"nom_de_la_commune": "SERIGNAN DU COMTAT", "libell_d_acheminement": "SERIGNAN DU COMTAT", "code_postal": "84830", "coordonnees_gps": [44.1939936003, 4.84740250954], "code_commune_insee": "84127"}, "geometry": {"type": "Point", "coordinates": [4.84740250954, 44.1939936003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36586e4122f220ebb4039d7a83ce4cce1171b874", "fields": {"nom_de_la_commune": "TAILLADES", "libell_d_acheminement": "TAILLADES", "code_postal": "84300", "coordonnees_gps": [43.8481769374, 5.04312031956], "code_commune_insee": "84131"}, "geometry": {"type": "Point", "coordinates": [5.04312031956, 43.8481769374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8370e31efbbe8aabd5a3245f26c95bf19d833d48", "fields": {"nom_de_la_commune": "LA TOUR D AIGUES", "libell_d_acheminement": "LA TOUR D AIGUES", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84133"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386c779d3fd661f4e12f386f1684674e4b09a932", "fields": {"nom_de_la_commune": "VIENS", "libell_d_acheminement": "VIENS", "code_postal": "84750", "coordonnees_gps": [43.880271182, 5.52723627077], "code_commune_insee": "84144"}, "geometry": {"type": "Point", "coordinates": [5.52723627077, 43.880271182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8ec4215526b8d8b199ac047528fa3fad1598db6", "fields": {"nom_de_la_commune": "VILLELAURE", "libell_d_acheminement": "VILLELAURE", "code_postal": "84530", "coordonnees_gps": [43.707458203, 5.43118891588], "code_commune_insee": "84147"}, "geometry": {"type": "Point", "coordinates": [5.43118891588, 43.707458203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8282dfb97a25b4fcd224ca32878783d97792dd0", "fields": {"nom_de_la_commune": "VITROLLES EN LUBERON", "libell_d_acheminement": "VITROLLES EN LUBERON", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84151"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "429adafd427fb2fd4b2e6b2c5eb579f3f98d1a78", "fields": {"nom_de_la_commune": "L AIGUILLON SUR VIE", "libell_d_acheminement": "L AIGUILLON SUR VIE", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85002"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f95172cc6a092637a349b910f32bda223b81cf8f", "fields": {"nom_de_la_commune": "AUBIGNY LES CLOUZEAUX", "libell_d_acheminement": "AUBIGNY LES CLOUZEAUX", "code_postal": "85430", "coordonnees_gps": [46.5767007042, -1.4774062897], "code_commune_insee": "85008"}, "geometry": {"type": "Point", "coordinates": [-1.4774062897, 46.5767007042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d62b54194daa1dabf6a8cb4074a25f7ed4fe960", "fields": {"nom_de_la_commune": "BARBATRE", "libell_d_acheminement": "BARBATRE", "code_postal": "85630", "coordonnees_gps": [46.9332669534, -2.16697862229], "code_commune_insee": "85011"}, "geometry": {"type": "Point", "coordinates": [-2.16697862229, 46.9332669534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfae0d10425d31f2c1f9de93ea8e10b1ebfe2057", "fields": {"nom_de_la_commune": "BAZOGES EN PAREDS", "libell_d_acheminement": "BAZOGES EN PAREDS", "code_postal": "85390", "coordonnees_gps": [46.6728627352, -0.866891813869], "code_commune_insee": "85014"}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b91657c5d5e028b92060f94487c2e46402ff20a6", "fields": {"nom_de_la_commune": "BEAUVOIR SUR MER", "libell_d_acheminement": "BEAUVOIR SUR MER", "code_postal": "85230", "coordonnees_gps": [46.9369632993, -2.01322224177], "code_commune_insee": "85018"}, "geometry": {"type": "Point", "coordinates": [-2.01322224177, 46.9369632993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e982065a6f608ef88c76952596750eff3092c2", "fields": {"code_postal": "85490", "code_commune_insee": "85020", "libell_d_acheminement": "BENET", "ligne_5": "STE CHRISTINE", "nom_de_la_commune": "BENET", "coordonnees_gps": [46.3691901747, -0.6138149404]}, "geometry": {"type": "Point", "coordinates": [-0.6138149404, 46.3691901747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efeaae8d9db5bbc4cb8190072b75e0df5e51bf1e", "fields": {"nom_de_la_commune": "LA BERNARDIERE", "libell_d_acheminement": "LA BERNARDIERE", "code_postal": "85610", "coordonnees_gps": [47.0477932643, -1.2636898898], "code_commune_insee": "85021"}, "geometry": {"type": "Point", "coordinates": [-1.2636898898, 47.0477932643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465a5fe6440151d0c2f244a46f0e41f599463bfb", "fields": {"nom_de_la_commune": "BOURNEAU", "libell_d_acheminement": "BOURNEAU", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85033"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "921ce378a0b1ef4dd1b70c946170e40f9ad8d5d4", "fields": {"code_postal": "85480", "code_commune_insee": "85034", "libell_d_acheminement": "BOURNEZEAU", "ligne_5": "ST VINCENT PUYMAUFRAIS", "nom_de_la_commune": "BOURNEZEAU", "coordonnees_gps": [46.6439879981, -1.18432139846]}, "geometry": {"type": "Point", "coordinates": [-1.18432139846, 46.6439879981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f6711702c3491e2c92b5aeb44f04f8997bc307", "fields": {"nom_de_la_commune": "LA BRETONNIERE LA CLAYE", "libell_d_acheminement": "LA BRETONNIERE LA CLAYE", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85036"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91b982a806c792ac333dd45e2a88bdca729dc36", "fields": {"nom_de_la_commune": "CHAILLE LES MARAIS", "libell_d_acheminement": "CHAILLE LES MARAIS", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85042"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c349ac7e7bc1a847c1b30f99f4c9393ee21770bb", "fields": {"code_postal": "85450", "code_commune_insee": "85042", "libell_d_acheminement": "CHAILLE LES MARAIS", "ligne_5": "AISNE", "nom_de_la_commune": "CHAILLE LES MARAIS", "coordonnees_gps": [46.3816104965, -1.06555900366]}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec42bb5b38a2c72ee78aea34365327762b2660e6", "fields": {"nom_de_la_commune": "CHAIX", "libell_d_acheminement": "CHAIX", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85044"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90937e9570815ab0666ed13a91e00e167139d3c7", "fields": {"code_postal": "85310", "code_commune_insee": "85046", "libell_d_acheminement": "LA CHAIZE LE VICOMTE", "ligne_5": "LA LIMOUZINIERE", "nom_de_la_commune": "LA CHAIZE LE VICOMTE", "coordonnees_gps": [46.6268805827, -1.33228683205]}, "geometry": {"type": "Point", "coordinates": [-1.33228683205, 46.6268805827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20692ebbf302d9aceb73ab5d6b3ea4d711622e01", "fields": {"nom_de_la_commune": "CHAMBRETAUD", "libell_d_acheminement": "CHAMBRETAUD", "code_postal": "85500", "coordonnees_gps": [46.8741028574, -1.03230822267], "code_commune_insee": "85048"}, "geometry": {"type": "Point", "coordinates": [-1.03230822267, 46.8741028574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fddb6fb87af17f89b452c31b1ec619718fd85f61", "fields": {"nom_de_la_commune": "CHATEAU D OLONNE", "libell_d_acheminement": "CHATEAU D OLONNE", "code_postal": "85180", "coordonnees_gps": [46.4930303478, -1.72048397397], "code_commune_insee": "85060"}, "geometry": {"type": "Point", "coordinates": [-1.72048397397, 46.4930303478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c1b7a6325911898d6bc8fb78928a7d1459ad692", "fields": {"nom_de_la_commune": "CHATEAUNEUF", "libell_d_acheminement": "CHATEAUNEUF", "code_postal": "85710", "coordonnees_gps": [46.9181711816, -1.86435198125], "code_commune_insee": "85062"}, "geometry": {"type": "Point", "coordinates": [-1.86435198125, 46.9181711816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f140675ed0b96133f43d1be1145e2f142864e9", "fields": {"nom_de_la_commune": "CHAUCHE", "libell_d_acheminement": "CHAUCHE", "code_postal": "85140", "coordonnees_gps": [46.7759741039, -1.24043269403], "code_commune_insee": "85064"}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620f81be487d6150a2976aba76fec73b7953711c", "fields": {"nom_de_la_commune": "COMMEQUIERS", "libell_d_acheminement": "COMMEQUIERS", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85071"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ccbebb8d2c20e44cc381317fb8d9035ccd64f43", "fields": {"nom_de_la_commune": "LA COUTURE", "libell_d_acheminement": "LA COUTURE", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85074"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a3cb0739516fa44906cbf7887c1b0cac0194a0", "fields": {"nom_de_la_commune": "FAYMOREAU", "libell_d_acheminement": "FAYMOREAU", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85087"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db96b08a2b49a22881f3ac7c6e0a43c8a7771555", "fields": {"nom_de_la_commune": "FONTENAY LE COMTE", "libell_d_acheminement": "FONTENAY LE COMTE", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85092"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fa40269743e934d374c9808407de939ca2933b4", "fields": {"nom_de_la_commune": "FROIDFOND", "libell_d_acheminement": "FROIDFOND", "code_postal": "85300", "coordonnees_gps": [46.8368087633, -1.89265677262], "code_commune_insee": "85095"}, "geometry": {"type": "Point", "coordinates": [-1.89265677262, 46.8368087633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef6eef334ac7bea9014ad1d6668fc8c78abb26c", "fields": {"nom_de_la_commune": "LA GARNACHE", "libell_d_acheminement": "LA GARNACHE", "code_postal": "85710", "coordonnees_gps": [46.9181711816, -1.86435198125], "code_commune_insee": "85096"}, "geometry": {"type": "Point", "coordinates": [-1.86435198125, 46.9181711816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "605f04f04b2bc4bf52f7cc52616f7c33e9abf861", "fields": {"nom_de_la_commune": "L HERBERGEMENT", "libell_d_acheminement": "L HERBERGEMENT", "code_postal": "85260", "coordonnees_gps": [46.8968914818, -1.35853673733], "code_commune_insee": "85108"}, "geometry": {"type": "Point", "coordinates": [-1.35853673733, 46.8968914818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4248c11708e80dc54314fa09d427acd191de016c", "fields": {"nom_de_la_commune": "L HERMENAULT", "libell_d_acheminement": "L HERMENAULT", "code_postal": "85570", "coordonnees_gps": [46.5155310965, -0.917757791759], "code_commune_insee": "85110"}, "geometry": {"type": "Point", "coordinates": [-0.917757791759, 46.5155310965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f910c361dbed668f2c666e749c1bfc5ed43ca83e", "fields": {"code_postal": "85350", "code_commune_insee": "85113", "libell_d_acheminement": "L ILE D YEU", "ligne_5": "PORT JOINVILLE", "nom_de_la_commune": "L ILE D YEU", "coordonnees_gps": [46.709560764, -2.34675388609]}, "geometry": {"type": "Point", "coordinates": [-2.34675388609, 46.709560764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5f7d8b65449b3c72538cdb329655c1a073e6df", "fields": {"nom_de_la_commune": "LE LANGON", "libell_d_acheminement": "LE LANGON", "code_postal": "85370", "coordonnees_gps": [46.4559323698, -0.995832045807], "code_commune_insee": "85121"}, "geometry": {"type": "Point", "coordinates": [-0.995832045807, 46.4559323698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc573becbb6d552d88e9ac3c3003e6cafb0a49d8", "fields": {"nom_de_la_commune": "MAREUIL SUR LAY DISSAIS", "libell_d_acheminement": "MAREUIL SUR LAY DISSAIS", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85135"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb0ea145180cfe732d694ceb1ff12a2aa25e4f92", "fields": {"nom_de_la_commune": "LE MAZEAU", "libell_d_acheminement": "LE MAZEAU", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85139"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "211cdf395a1f8b8a62998413612d93bdc38746cb", "fields": {"nom_de_la_commune": "MESNARD LA BAROTIERE", "libell_d_acheminement": "MESNARD LA BAROTIERE", "code_postal": "85500", "coordonnees_gps": [46.8741028574, -1.03230822267], "code_commune_insee": "85144"}, "geometry": {"type": "Point", "coordinates": [-1.03230822267, 46.8741028574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1e2cdbad0062a1eb6fcf2280ca5478b224f4d21", "fields": {"nom_de_la_commune": "MONSIREIGNE", "libell_d_acheminement": "MONSIREIGNE", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85145"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "094d6889eed3930b9fc9cb38bfb50929582799fd", "fields": {"nom_de_la_commune": "MONTREUIL", "libell_d_acheminement": "MONTREUIL", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85148"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c6369c3fbc478930884371a0f80bea4916db050", "fields": {"nom_de_la_commune": "MOUCHAMPS", "libell_d_acheminement": "MOUCHAMPS", "code_postal": "85640", "coordonnees_gps": [46.787562927, -1.05457319092], "code_commune_insee": "85153"}, "geometry": {"type": "Point", "coordinates": [-1.05457319092, 46.787562927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd095dc40bb7c27761bc23b741ba2de734750223", "fields": {"nom_de_la_commune": "MOUTIERS LES MAUXFAITS", "libell_d_acheminement": "MOUTIERS LES MAUXFAITS", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85156"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e2a77695f57db86ab5606b9b5a9859a4f3bded", "fields": {"nom_de_la_commune": "PALLUAU", "libell_d_acheminement": "PALLUAU", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85169"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e12236464e3f27f601b7297fe1f22a045bb937c6", "fields": {"nom_de_la_commune": "PEAULT", "libell_d_acheminement": "PEAULT", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85171"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848757918f12b204f8c23d9f7110163d4d3fd1ae", "fields": {"nom_de_la_commune": "LES PINEAUX", "libell_d_acheminement": "LES PINEAUX", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85175"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35fb4364197d57948bbe2411eb938d376e0ecffe", "fields": {"nom_de_la_commune": "PUY DE SERRE", "libell_d_acheminement": "PUY DE SERRE", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85184"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e44bcb053f86ec3191a56e8e3d2a543128d501c", "fields": {"nom_de_la_commune": "PUYRAVAULT", "libell_d_acheminement": "PUYRAVAULT", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85185"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305a250bb27d4265a912010a7503e0a12e232e91", "fields": {"nom_de_la_commune": "LA RABATELIERE", "libell_d_acheminement": "LA RABATELIERE", "code_postal": "85250", "coordonnees_gps": [46.8659519068, -1.19415705359], "code_commune_insee": "85186"}, "geometry": {"type": "Point", "coordinates": [-1.19415705359, 46.8659519068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28c2adecceafb04ed1acc90f5bab2f8f8f14927f", "fields": {"code_postal": "85260", "code_commune_insee": "85197", "libell_d_acheminement": "MONTREVERD", "ligne_5": "ST SULPICE LE VERDON", "nom_de_la_commune": "MONTREVERD", "coordonnees_gps": [46.8968914818, -1.35853673733]}, "geometry": {"type": "Point", "coordinates": [-1.35853673733, 46.8968914818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce5fc212d89d50d77994f0677dad8b4c1b20cb7", "fields": {"nom_de_la_commune": "ST AUBIN DES ORMEAUX", "libell_d_acheminement": "ST AUBIN DES ORMEAUX", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85198"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46fbbfa56b57912a85b01b4fd629b3aba40d8d7d", "fields": {"nom_de_la_commune": "ST ETIENNE DU BOIS", "libell_d_acheminement": "ST ETIENNE DU BOIS", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85210"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45dd47afe45a0a31028018ee5a408ed381784052", "fields": {"nom_de_la_commune": "ST GEORGES DE POINTINDOUX", "libell_d_acheminement": "ST GEORGES DE POINTINDOUX", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85218"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed3377f621ed2344eb34ed8e56274216925f84ca", "fields": {"nom_de_la_commune": "ST GERMAIN DE PRINCAY", "libell_d_acheminement": "ST GERMAIN DE PRINCAY", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85220"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "313ad1e5786e4ac7dfd7bdc5c03f7ba8efbd0b8e", "fields": {"nom_de_la_commune": "ST HILAIRE LA FORET", "libell_d_acheminement": "ST HILAIRE LA FORET", "code_postal": "85440", "coordonnees_gps": [46.491465438, -1.58784266413], "code_commune_insee": "85231"}, "geometry": {"type": "Point", "coordinates": [-1.58784266413, 46.491465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b83326f153a1e69ed0435a3d92cc2ed44400bf", "fields": {"nom_de_la_commune": "ST LAURENT SUR SEVRE", "libell_d_acheminement": "ST LAURENT SUR SEVRE", "code_postal": "85290", "coordonnees_gps": [46.9743066713, -0.927121761367], "code_commune_insee": "85238"}, "geometry": {"type": "Point", "coordinates": [-0.927121761367, 46.9743066713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c59ca938392dc6ef2d504c40e4825fb0e1103cd", "fields": {"code_postal": "85470", "code_commune_insee": "85243", "libell_d_acheminement": "BREM SUR MER", "ligne_5": "ST NICOLAS DE BREM", "nom_de_la_commune": "BREM SUR MER", "coordonnees_gps": [46.62852373, -1.84475847528]}, "geometry": {"type": "Point", "coordinates": [-1.84475847528, 46.62852373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ff0c46ced1f3828e020f340159d50693ecc8153", "fields": {"nom_de_la_commune": "ST MICHEL LE CLOUCQ", "libell_d_acheminement": "ST MICHEL LE CLOUCQ", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85256"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f15b84b0dd32dfd01c51f392b61217019881cbb", "fields": {"nom_de_la_commune": "ST PHILBERT DE BOUAINE", "libell_d_acheminement": "ST PHILBERT DE BOUAINE", "code_postal": "85660", "coordonnees_gps": [46.9924777223, -1.50719896416], "code_commune_insee": "85262"}, "geometry": {"type": "Point", "coordinates": [-1.50719896416, 46.9924777223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3188012d657d7084a80aad34bcfda5e6f47be829", "fields": {"nom_de_la_commune": "STE RADEGONDE DES NOYERS", "libell_d_acheminement": "STE RADEGONDE DES NOYERS", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85267"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c7470a2868408860acea87de120f3163c0dc14a", "fields": {"nom_de_la_commune": "ST REVEREND", "libell_d_acheminement": "ST REVEREND", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85268"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3bef931aeefafcb23b206b1b3eec722036fb08a", "fields": {"code_postal": "74210", "code_commune_insee": "74275", "libell_d_acheminement": "TALLOIRES MONTMIN", "ligne_5": "MONTMIN", "nom_de_la_commune": "TALLOIRES MONTMIN", "coordonnees_gps": [45.7728684273, 6.25852210813]}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "632414759545c9823ec77d8364d4418405d754cb", "fields": {"nom_de_la_commune": "TALLOIRES MONTMIN", "libell_d_acheminement": "TALLOIRES MONTMIN", "code_postal": "74290", "coordonnees_gps": [45.8619270539, 6.21689519918], "code_commune_insee": "74275"}, "geometry": {"type": "Point", "coordinates": [6.21689519918, 45.8619270539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "375ae7517bfeeba2c123ddd215a958304ffe13a8", "fields": {"code_postal": "74440", "code_commune_insee": "74276", "libell_d_acheminement": "TANINGES", "ligne_5": "LE PRAZ DE LYS", "nom_de_la_commune": "TANINGES", "coordonnees_gps": [46.1230411459, 6.600455476]}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f790829564661abec03e6f9da6f5e087b87820", "fields": {"nom_de_la_commune": "THYEZ", "libell_d_acheminement": "THYEZ", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74278"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5546014e6f0e18ac49bcd2134abbcb2e22683cdb", "fields": {"nom_de_la_commune": "THONON LES BAINS", "libell_d_acheminement": "THONON LES BAINS", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74281"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81f292caf08ea6c50f31c890d0b6ef68f9805838", "fields": {"nom_de_la_commune": "VAULX", "libell_d_acheminement": "VAULX", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74292"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8444b84f735752b115cfe8c0dbd780e86c56a2f5", "fields": {"nom_de_la_commune": "VETRAZ MONTHOUX", "libell_d_acheminement": "VETRAZ MONTHOUX", "code_postal": "74100", "coordonnees_gps": [46.1886553142, 6.24703235488], "code_commune_insee": "74298"}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2beae5195099e527b60afb4915983969c1326cff", "fields": {"nom_de_la_commune": "VILLARD", "libell_d_acheminement": "VILLARD", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74301"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b18d5f4516ad462635025d2394c54ec9cb98f9c", "fields": {"nom_de_la_commune": "VILLE EN SALLAZ", "libell_d_acheminement": "VILLE EN SALLAZ", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74304"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ad609b7762d07de241e6ff7394485251959736", "fields": {"nom_de_la_commune": "VIRY", "libell_d_acheminement": "VIRY", "code_postal": "74580", "coordonnees_gps": [46.120046794, 6.02488666675], "code_commune_insee": "74309"}, "geometry": {"type": "Point", "coordinates": [6.02488666675, 46.120046794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "056ee995283e01b1688f5e86b1ac36f7345f682e", "fields": {"nom_de_la_commune": "VIUZ LA CHIESAZ", "libell_d_acheminement": "VIUZ LA CHIESAZ", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74310"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2031d8318acc0120e53658ab463ca51d8caf10b6", "fields": {"nom_de_la_commune": "VIUZ EN SALLAZ", "libell_d_acheminement": "VIUZ EN SALLAZ", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74311"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d32d049dee857c3df7495cec0824857f940acc8", "fields": {"nom_de_la_commune": "VOUGY", "libell_d_acheminement": "VOUGY", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74312"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d0032cbb9906bff270f0f241bf37eb125f2e2c", "fields": {"nom_de_la_commune": "PARIS 14", "libell_d_acheminement": "PARIS", "code_postal": "75014", "coordonnees_gps": [48.8291473577, 2.32698552913], "code_commune_insee": "75114"}, "geometry": {"type": "Point", "coordinates": [2.32698552913, 48.8291473577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fac7a30cc30c75799ad00acbde818b996f219ebb", "fields": {"nom_de_la_commune": "PARIS 16", "libell_d_acheminement": "PARIS", "code_postal": "75016", "coordonnees_gps": [48.8603821025, 2.26201220212], "code_commune_insee": "75116"}, "geometry": {"type": "Point", "coordinates": [2.26201220212, 48.8603821025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "574ffbf1be9fffe375d8830e8e4a41a707868869", "fields": {"nom_de_la_commune": "PARIS 16", "libell_d_acheminement": "PARIS", "code_postal": "75116", "coordonnees_gps": [48.8603821025, 2.26201220212], "code_commune_insee": "75116"}, "geometry": {"type": "Point", "coordinates": [2.26201220212, 48.8603821025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9b5cc843012cf651ceb650f3046effded8be06f", "fields": {"nom_de_la_commune": "PARIS 18", "libell_d_acheminement": "PARIS", "code_postal": "75018", "coordonnees_gps": [48.8923628559, 2.34785432498], "code_commune_insee": "75118"}, "geometry": {"type": "Point", "coordinates": [2.34785432498, 48.8923628559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74b3f8d72c2047a7ae410e6b746eff47f0deac3", "fields": {"nom_de_la_commune": "ALLOUVILLE BELLEFOSSE", "libell_d_acheminement": "ALLOUVILLE BELLEFOSSE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76001"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c5efa94cd281f14e20e43f578d14b86b0f6b26", "fields": {"nom_de_la_commune": "ANCRETTEVILLE SUR MER", "libell_d_acheminement": "ANCRETTEVILLE SUR MER", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76011"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31da50d6308470edb2f87852b335b6b7df9aab76", "fields": {"nom_de_la_commune": "ANGIENS", "libell_d_acheminement": "ANGIENS", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76015"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452b13e01d9e6d752c5ab61e18593002a728c659", "fields": {"nom_de_la_commune": "ANGLESQUEVILLE LA BRAS LONG", "libell_d_acheminement": "ANGLESQUEVILLE LA BRAS LONG", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76016"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc61956b05c6fd9be4a3c6f5a50fe4ee4297ad03", "fields": {"nom_de_la_commune": "ANNEVILLE AMBOURVILLE", "libell_d_acheminement": "ANNEVILLE AMBOURVILLE", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76020"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d62dd7691daa4b567fffd1e2961d6fc1e2d60ee", "fields": {"nom_de_la_commune": "ANVEVILLE", "libell_d_acheminement": "ANVEVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76023"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09a2f8fc623fd7ebd5efb2f7593f8909e7e6c363", "fields": {"nom_de_la_commune": "ARDOUVAL", "libell_d_acheminement": "ARDOUVAL", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76024"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1eb5605cbeb1053d1afd358f154a8e315b9e029", "fields": {"nom_de_la_commune": "AUBERVILLE LA MANUEL", "libell_d_acheminement": "AUBERVILLE LA MANUEL", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76032"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f6fc474cab5239c3c7bd59b065a17b791708a44", "fields": {"nom_de_la_commune": "AUBERVILLE LA RENAULT", "libell_d_acheminement": "AUBERVILLE LA RENAULT", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76033"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a56cf4ce0471ad43b0474d6c31608d581476272", "fields": {"nom_de_la_commune": "AUFFAY", "libell_d_acheminement": "AUFFAY", "code_postal": "76720", "coordonnees_gps": [49.7264566235, 1.11846457377], "code_commune_insee": "76034"}, "geometry": {"type": "Point", "coordinates": [1.11846457377, 49.7264566235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3767b3a5298f132704a2a7cb35c6d36ba0b0093d", "fields": {"nom_de_la_commune": "AUPPEGARD", "libell_d_acheminement": "AUPPEGARD", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76036"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7768613a2103e1388f2f6c0ac90b58aa5592844", "fields": {"nom_de_la_commune": "LES AUTHIEUX SUR LE PORT ST OUEN", "libell_d_acheminement": "LES AUTHIEUX SUR LE PORT ST OUEN", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76039"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d848e20797bc72b1022297cc1dcf46ecdd94b471", "fields": {"nom_de_la_commune": "BAILLEUL NEUVILLE", "libell_d_acheminement": "BAILLEUL NEUVILLE", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76052"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d16284794546579373cbb8d70eb0e6c9c73c17a", "fields": {"nom_de_la_commune": "BARENTIN", "libell_d_acheminement": "BARENTIN", "code_postal": "76360", "coordonnees_gps": [49.5442328015, 0.945102763311], "code_commune_insee": "76057"}, "geometry": {"type": "Point", "coordinates": [0.945102763311, 49.5442328015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c10d22ac2c5d5c060a6d18af9b6475e2f10f2b2", "fields": {"nom_de_la_commune": "BEAUVOIR EN LYONS", "libell_d_acheminement": "BEAUVOIR EN LYONS", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76067"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c4b4a6f3660f76f06d851a8751ead7922987ef", "fields": {"nom_de_la_commune": "BELLENCOMBRE", "libell_d_acheminement": "BELLENCOMBRE", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76070"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efb7f6dc4e347238a25a5a9eefd591077c43f174", "fields": {"nom_de_la_commune": "BELMESNIL", "libell_d_acheminement": "BELMESNIL", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76075"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db712ef89936b062ce7d39fef9b9142a4725dfd3", "fields": {"nom_de_la_commune": "BERTHEAUVILLE", "libell_d_acheminement": "BERTHEAUVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76083"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e7cbdb9c2c632cee77b5322b50690d195a8a40e", "fields": {"nom_de_la_commune": "BERTREVILLE ST OUEN", "libell_d_acheminement": "BERTREVILLE ST OUEN", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76085"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c526e3dc9670cc0889fe65c35c0f8b238ccf98c", "fields": {"nom_de_la_commune": "BERVILLE", "libell_d_acheminement": "BERVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76087"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc7f21753b3e141e6de686ea63f5315a5695e164", "fields": {"nom_de_la_commune": "BEUZEVILLETTE", "libell_d_acheminement": "BEUZEVILLETTE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76092"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f1c174b56bacef1da22ef9b7db5b6b0fb42a7f0", "fields": {"nom_de_la_commune": "BEZANCOURT", "libell_d_acheminement": "BEZANCOURT", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76093"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b9510b8a984e1e40007465e51e19f8eadad09b4", "fields": {"nom_de_la_commune": "BIERVILLE", "libell_d_acheminement": "BIERVILLE", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76094"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a829746c8979653da2802b3bee560fef8fad3d1d", "fields": {"nom_de_la_commune": "BOLBEC", "libell_d_acheminement": "BOLBEC", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76114"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea6bb3454438c11852398ec01f7df683d1f5af5b", "fields": {"nom_de_la_commune": "BOSC BERENGER", "libell_d_acheminement": "BOSC BERENGER", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76119"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "371b56fa7c59a6aec6c28cbf9b7c05aa37212b4d", "fields": {"nom_de_la_commune": "BOSC BORDEL", "libell_d_acheminement": "BOSC BORDEL", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76120"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c6dd5789230c8d4527c129463ae72900740bb1", "fields": {"nom_de_la_commune": "BOSC GUERARD ST ADRIEN", "libell_d_acheminement": "BOSC GUERARD ST ADRIEN", "code_postal": "76710", "coordonnees_gps": [49.5480184569, 1.08802152672], "code_commune_insee": "76123"}, "geometry": {"type": "Point", "coordinates": [1.08802152672, 49.5480184569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7037671b24300507b26035e762a7d21839ad4e", "fields": {"nom_de_la_commune": "BOURVILLE", "libell_d_acheminement": "BOURVILLE", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76134"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e90b94548f428b0fc9088013b7502a7fe5a5114", "fields": {"nom_de_la_commune": "BREMONTIER MERVAL", "libell_d_acheminement": "BREMONTIER MERVAL", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76142"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a78920e94768907426a358ed5b7cec0c2212a84d", "fields": {"nom_de_la_commune": "CALLEVILLE LES DEUX EGLISES", "libell_d_acheminement": "CALLEVILLE LES DEUX EGLISES", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76153"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d54c8bbf27e39df77567d31896cfb406c16029", "fields": {"nom_de_la_commune": "CAMPNEUSEVILLE", "libell_d_acheminement": "CAMPNEUSEVILLE", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76154"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e56779f1ebf4296b6b13bb370125b2256709acb1", "fields": {"nom_de_la_commune": "CANY BARVILLE", "libell_d_acheminement": "CANY BARVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76159"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a310b6cb6e3dd501c05c97170edaf64f01424c6", "fields": {"code_postal": "76490", "code_commune_insee": "76164", "libell_d_acheminement": "RIVES EN SEINE", "ligne_5": "ST WANDRILLE RANCON", "nom_de_la_commune": "RIVES EN SEINE", "coordonnees_gps": [49.5497184764, 0.687731909353]}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de9d40ce21e92437fc03e2fe0b91bd3293d2febf", "fields": {"nom_de_la_commune": "LE CAULE STE BEUVE", "libell_d_acheminement": "LE CAULE STE BEUVE", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76166"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4ca95375135a029a87d4fd433f243d0fa28ca87", "fields": {"nom_de_la_commune": "LA CHAPELLE ST OUEN", "libell_d_acheminement": "LA CHAPELLE ST OUEN", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76171"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6afe96a9bad726d5f40101a506543b72091c0c0b", "fields": {"nom_de_la_commune": "CIDEVILLE", "libell_d_acheminement": "CIDEVILLE", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76174"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd8d93e3e38b3ce21b2324a48c00aaa03a13b9b3", "fields": {"nom_de_la_commune": "CLEUVILLE", "libell_d_acheminement": "CLEUVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76180"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522b9296ccad8037ec82008b6548f2f97ff28512", "fields": {"nom_de_la_commune": "COLMESNIL MANNEVILLE", "libell_d_acheminement": "COLMESNIL MANNEVILLE", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76184"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d5478976e754b02e877c09d4c0409dc5f1c0764", "fields": {"nom_de_la_commune": "CRESSY", "libell_d_acheminement": "CRESSY", "code_postal": "76720", "coordonnees_gps": [49.7264566235, 1.11846457377], "code_commune_insee": "76191"}, "geometry": {"type": "Point", "coordinates": [1.11846457377, 49.7264566235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3379ff361760dd8f6cf9ecb1109867a42c6aab6a", "fields": {"nom_de_la_commune": "LA CRIQUE", "libell_d_acheminement": "LA CRIQUE", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76193"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a745575900aebbe75977fde09eaa0590ac9dfb", "fields": {"nom_de_la_commune": "CRIQUEBEUF EN CAUX", "libell_d_acheminement": "CRIQUEBEUF EN CAUX", "code_postal": "76111", "coordonnees_gps": [49.7290566584, 0.303233550691], "code_commune_insee": "76194"}, "geometry": {"type": "Point", "coordinates": [0.303233550691, 49.7290566584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bd12bd4b4ea7b5f54a18055d96761f7ee37352", "fields": {"nom_de_la_commune": "CRITOT", "libell_d_acheminement": "CRITOT", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76200"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b34eacb5d748d7fadc08492e237b221c586b7c83", "fields": {"nom_de_la_commune": "CROIX MARE", "libell_d_acheminement": "CROIX MARE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76203"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ccf6a4929d77102004c9853d0599165e67ba4a", "fields": {"nom_de_la_commune": "DANCOURT", "libell_d_acheminement": "DANCOURT", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76211"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba21c54efb76f6258af993ba8eb251f10b08ee65", "fields": {"nom_de_la_commune": "DAUBEUF SERVILLE", "libell_d_acheminement": "DAUBEUF SERVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76213"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de641a85a2ba4c0937288fa0cd4201369d2af338", "fields": {"nom_de_la_commune": "ECTOT L AUBER", "libell_d_acheminement": "ECTOT L AUBER", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76227"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0598c9fdc9cb34e6c03298c7e9473f48ad8dabd", "fields": {"nom_de_la_commune": "ELBEUF", "libell_d_acheminement": "ELBEUF", "code_postal": "76500", "coordonnees_gps": [49.3087517455, 0.955689730263], "code_commune_insee": "76231"}, "geometry": {"type": "Point", "coordinates": [0.955689730263, 49.3087517455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bace83ff893fe2d274f1bf539ee8f1974d84b8", "fields": {"nom_de_la_commune": "ENVERMEU", "libell_d_acheminement": "ENVERMEU", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76235"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73942d3e1810c82b86e23c92649a3b0bd0b96057", "fields": {"nom_de_la_commune": "ERMENOUVILLE", "libell_d_acheminement": "ERMENOUVILLE", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76241"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6d10734dfb76554871a68da39aa97ac2ad17c1", "fields": {"nom_de_la_commune": "ESTOUTEVILLE ECALLES", "libell_d_acheminement": "ESTOUTEVILLE ECALLES", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76248"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea04ff767ca9ea95d2b10998e4d1b6b8f98765f", "fields": {"nom_de_la_commune": "ETAINHUS", "libell_d_acheminement": "ETAINHUS", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76250"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b7add578417ccf0dea3ac7f824a48f0d8a8bc4", "fields": {"nom_de_la_commune": "ETALLEVILLE", "libell_d_acheminement": "ETALLEVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76251"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c32e831da064eb745b12da46c53ed07bafffc7", "fields": {"nom_de_la_commune": "ETRETAT", "libell_d_acheminement": "ETRETAT", "code_postal": "76790", "coordonnees_gps": [49.697742168, 0.254535671829], "code_commune_insee": "76254"}, "geometry": {"type": "Point", "coordinates": [0.254535671829, 49.697742168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dddf1fc296d4d25eb134decf06ea6da16fbabb17", "fields": {"nom_de_la_commune": "FLAMETS FRETILS", "libell_d_acheminement": "FLAMETS FRETILS", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76265"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1b70e767b38ba0cb75b04a0e702e97819012d9a", "fields": {"nom_de_la_commune": "FONTAINE LA MALLET", "libell_d_acheminement": "FONTAINE LA MALLET", "code_postal": "76290", "coordonnees_gps": [49.5514571259, 0.184758051625], "code_commune_insee": "76270"}, "geometry": {"type": "Point", "coordinates": [0.184758051625, 49.5514571259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b890c519a23297bf7365c6dee9fcc89dcef1db25", "fields": {"nom_de_la_commune": "FONTAINE LE BOURG", "libell_d_acheminement": "FONTAINE LE BOURG", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76271"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1def75cf55019f49dfd3745b2220a01051880f", "fields": {"nom_de_la_commune": "FONTAINE LE DUN", "libell_d_acheminement": "FONTAINE LE DUN", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76272"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b86e1b221c404910f5d2d20756f0a6ba7b7918", "fields": {"nom_de_la_commune": "FORGES LES EAUX", "libell_d_acheminement": "FORGES LES EAUX", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76276"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41ee0cba703967c2db7017170a11c961e7bf46f3", "fields": {"nom_de_la_commune": "FRESLES", "libell_d_acheminement": "FRESLES", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76283"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35703bdea43add1150a7ac4ff8a9cd1185a3626d", "fields": {"nom_de_la_commune": "FRESNE LE PLAN", "libell_d_acheminement": "FRESNE LE PLAN", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76285"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52290b77e57e8c760b7a28df3afeae28aa684197", "fields": {"code_postal": "76190", "code_commune_insee": "76289", "libell_d_acheminement": "ST MARTIN DE L IF", "ligne_5": "MONT DE L IF", "nom_de_la_commune": "ST MARTIN DE L IF", "coordonnees_gps": [49.6137220579, 0.75005615397]}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "822b82ccd25a476afd1926b3681d093ee849ed93", "fields": {"nom_de_la_commune": "FRICHEMESNIL", "libell_d_acheminement": "FRICHEMESNIL", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76290"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde7b7e1f156206f1a4e4f01cf39a52596bdbc90", "fields": {"nom_de_la_commune": "FROBERVILLE", "libell_d_acheminement": "FROBERVILLE", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76291"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0787bea41e222c63b96f423669391201d06050f", "fields": {"nom_de_la_commune": "FULTOT", "libell_d_acheminement": "FULTOT", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76293"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2979bc0d78408ae15d14ea00fddac682e3ef06b", "fields": {"nom_de_la_commune": "GAINNEVILLE", "libell_d_acheminement": "GAINNEVILLE", "code_postal": "76700", "coordonnees_gps": [49.4973035255, 0.236903290282], "code_commune_insee": "76296"}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd344c3a125961711f2c9b43bd508c358b1fca2f", "fields": {"nom_de_la_commune": "GANCOURT ST ETIENNE", "libell_d_acheminement": "GANCOURT ST ETIENNE", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76297"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1448677f7a264e234632a52fae9dba29cc2a7ef3", "fields": {"nom_de_la_commune": "GODERVILLE", "libell_d_acheminement": "GODERVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76302"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea4236d6268c3edc4fc1229df1db53f6f708617", "fields": {"nom_de_la_commune": "GONFREVILLE CAILLOT", "libell_d_acheminement": "GONFREVILLE CAILLOT", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76304"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5176384671d365705f0b680a2765ca33214a513d", "fields": {"code_postal": "76700", "code_commune_insee": "76305", "libell_d_acheminement": "GONFREVILLE L ORCHER", "ligne_5": "MAYVILLE", "nom_de_la_commune": "GONFREVILLE L ORCHER", "coordonnees_gps": [49.4973035255, 0.236903290282]}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c01c6a88ce57ff4a61445c864f83e486cd7262", "fields": {"nom_de_la_commune": "GRAINVILLE LA TEINTURIERE", "libell_d_acheminement": "GRAINVILLE LA TEINTURIERE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76315"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3cb3139b60f5adc4f8676f604f212d20613e3c", "fields": {"nom_de_la_commune": "LES GRANDES VENTES", "libell_d_acheminement": "LES GRANDES VENTES", "code_postal": "76950", "coordonnees_gps": [49.7715311996, 1.23456768393], "code_commune_insee": "76321"}, "geometry": {"type": "Point", "coordinates": [1.23456768393, 49.7715311996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9fcab739f775bf4a8829d5fa5628aecedaaabc", "fields": {"nom_de_la_commune": "GREMONVILLE", "libell_d_acheminement": "GREMONVILLE", "code_postal": "76970", "coordonnees_gps": [49.6427537558, 0.834194996945], "code_commune_insee": "76325"}, "geometry": {"type": "Point", "coordinates": [0.834194996945, 49.6427537558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c3edb690707a28be486d3eb054e186613e556d4", "fields": {"nom_de_la_commune": "GUERVILLE", "libell_d_acheminement": "GUERVILLE", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76333"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "129bb84ee02b56275587b921c4fd4eca7d9d1652", "fields": {"nom_de_la_commune": "GUEURES", "libell_d_acheminement": "GUEURES", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76334"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "112d8c3f03e4121999829af58696adf2c1e6657e", "fields": {"nom_de_la_commune": "GUEUTTEVILLE", "libell_d_acheminement": "GUEUTTEVILLE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76335"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35bf34ff46103e10f031125a59cc4d3d4452c76d", "fields": {"nom_de_la_commune": "HATTENVILLE", "libell_d_acheminement": "HATTENVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76342"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13be0ad3265d7db724d308895d508e1d2319748a", "fields": {"nom_de_la_commune": "HAUSSEZ", "libell_d_acheminement": "HAUSSEZ", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76345"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "388edb0631a68f3841dd304253a49d0ad648f710", "fields": {"code_postal": "76610", "code_commune_insee": "76351", "libell_d_acheminement": "LE HAVRE", "ligne_5": "ROUELLES", "nom_de_la_commune": "LE HAVRE", "coordonnees_gps": [49.4965610328, 0.1402707121]}, "geometry": {"type": "Point", "coordinates": [0.1402707121, 49.4965610328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361e1116a574d6c6118a64dbc4ab986fdf9a7de0", "fields": {"nom_de_la_commune": "HERMANVILLE", "libell_d_acheminement": "HERMANVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76356"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f59bd2bdf0098f3e631e3c4782eb81a27af713", "fields": {"nom_de_la_commune": "HEURTEAUVILLE", "libell_d_acheminement": "HEURTEAUVILLE", "code_postal": "76940", "coordonnees_gps": [49.4548266435, 0.725950851811], "code_commune_insee": "76362"}, "geometry": {"type": "Point", "coordinates": [0.725950851811, 49.4548266435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46931b3f61c265370b8eb2a6641497a740299d5d", "fields": {"nom_de_la_commune": "LA HOUSSAYE BERANGER", "libell_d_acheminement": "LA HOUSSAYE BERANGER", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76369"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a44e61c047e48bb697853ca21bb2ad03944a4dc5", "fields": {"nom_de_la_commune": "INGOUVILLE", "libell_d_acheminement": "INGOUVILLE", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76375"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eb7f63fb6ee0c8b27bd06eb93e09bbb6ac85ca1", "fields": {"nom_de_la_commune": "LIMESY", "libell_d_acheminement": "LIMESY", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76385"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f1b6d96c9c84a8e810e8c3ddd1b93a8dbf85ad", "fields": {"nom_de_la_commune": "NITTING", "libell_d_acheminement": "NITTING", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57509"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3273e8a93f072340fb4ab41372120c4d5004ae14", "fields": {"nom_de_la_commune": "OGY", "libell_d_acheminement": "OGY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57523"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f436469df460a91e37e9b7693a8d5627a2c3911c", "fields": {"nom_de_la_commune": "PLAINE DE WALSCH", "libell_d_acheminement": "PLAINE DE WALSCH", "code_postal": "57870", "coordonnees_gps": [48.6442661172, 7.16634369748], "code_commune_insee": "57544"}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e1d072acb54e39a17fd945085702bbf50edfae8", "fields": {"nom_de_la_commune": "POMMERIEUX", "libell_d_acheminement": "POMMERIEUX", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57547"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e19376cb68e87695b53432e9b03c6e821a9e5f", "fields": {"nom_de_la_commune": "PONTOY", "libell_d_acheminement": "PONTOY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57548"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31179f6cf8155fb1a9705ccbf32ab9e235f7df7", "fields": {"nom_de_la_commune": "POUILLY", "libell_d_acheminement": "POUILLY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57552"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2323493fc4dbcfaeb2a80f594ec41b3556b059", "fields": {"nom_de_la_commune": "PUTTIGNY", "libell_d_acheminement": "PUTTIGNY", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57558"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e69755bb642cae6f85810135887c4c436d4bcfa", "fields": {"nom_de_la_commune": "RAHLING", "libell_d_acheminement": "RAHLING", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57561"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd1715843956f53984e99a05ef17e5be7e1bb292", "fields": {"nom_de_la_commune": "RANGUEVAUX", "libell_d_acheminement": "RANGUEVAUX", "code_postal": "57700", "coordonnees_gps": [49.3161755107, 6.04071219328], "code_commune_insee": "57562"}, "geometry": {"type": "Point", "coordinates": [6.04071219328, 49.3161755107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6161ad157305c5deadbee277252bb7b32b9e6d84", "fields": {"nom_de_la_commune": "REDANGE", "libell_d_acheminement": "REDANGE", "code_postal": "57390", "coordonnees_gps": [49.4698725399, 5.94728059458], "code_commune_insee": "57565"}, "geometry": {"type": "Point", "coordinates": [5.94728059458, 49.4698725399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb48de3fee98026c551b7ce86f2fae64b0eb0af4", "fields": {"nom_de_la_commune": "REMERING LES PUTTELANGE", "libell_d_acheminement": "REMERING LES PUTTELANGE", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57571"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d8b91a4d62319fba3ee98e4e5d81ecc212f2b09", "fields": {"nom_de_la_commune": "BASSE RENTGEN", "libell_d_acheminement": "BASSE RENTGEN", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57574"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad02b01d3476fe225e8c42279d187f1676ac0350", "fields": {"nom_de_la_commune": "RETONFEY", "libell_d_acheminement": "RETONFEY", "code_postal": "57645", "coordonnees_gps": [49.1294879959, 6.29496207471], "code_commune_insee": "57575"}, "geometry": {"type": "Point", "coordinates": [6.29496207471, 49.1294879959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cdff66193810457a7e6dbdb1d1cf7c6505ce105", "fields": {"nom_de_la_commune": "REYERSVILLER", "libell_d_acheminement": "REYERSVILLER", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57577"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba65fd9840c88a1eefdfe1a96f68fdb876c61677", "fields": {"nom_de_la_commune": "RICHEVAL", "libell_d_acheminement": "RICHEVAL", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57583"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3052589157fe181cc0ac4795ec26dacdad0a8129", "fields": {"nom_de_la_commune": "ROCHONVILLERS", "libell_d_acheminement": "ROCHONVILLERS", "code_postal": "57840", "coordonnees_gps": [49.4301490662, 6.01185144376], "code_commune_insee": "57586"}, "geometry": {"type": "Point", "coordinates": [6.01185144376, 49.4301490662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b013eba5316de9087714e5d8952511cd1c73c0e1", "fields": {"nom_de_la_commune": "RODALBE", "libell_d_acheminement": "RODALBE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57587"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0667814a0fb45871b2e4044d030ec7df187dc45b", "fields": {"nom_de_la_commune": "ROLBING", "libell_d_acheminement": "ROLBING", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57590"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4d8222d8e8bdd68404fb77cfb01e58e8acdf26", "fields": {"nom_de_la_commune": "RONCOURT", "libell_d_acheminement": "RONCOURT", "code_postal": "57860", "coordonnees_gps": [49.2108492485, 6.04018502241], "code_commune_insee": "57593"}, "geometry": {"type": "Point", "coordinates": [6.04018502241, 49.2108492485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db70335a0970ce8d24a2e00c313593b5efb6b6ba", "fields": {"nom_de_la_commune": "ST AVOLD", "libell_d_acheminement": "ST AVOLD", "code_postal": "57500", "coordonnees_gps": [49.1288514392, 6.71284578703], "code_commune_insee": "57606"}, "geometry": {"type": "Point", "coordinates": [6.71284578703, 49.1288514392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65234a74ffe45d3eae868999a06df734cf3d2e4b", "fields": {"nom_de_la_commune": "ST JEAN KOURTZERODE", "libell_d_acheminement": "ST JEAN KOURTZERODE", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57614"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374bfeb9b12f4e06fb69102bbdb146d5e5d9c906", "fields": {"nom_de_la_commune": "ST JULIEN LES METZ", "libell_d_acheminement": "ST JULIEN LES METZ", "code_postal": "57070", "coordonnees_gps": [49.1173648724, 6.2035419151], "code_commune_insee": "57616"}, "geometry": {"type": "Point", "coordinates": [6.2035419151, 49.1173648724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f75aa4a63bb26168a4e9c8bad64b9a73bf128657", "fields": {"nom_de_la_commune": "ST QUIRIN", "libell_d_acheminement": "ST QUIRIN", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57623"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ef9f0df95e287d5dc0e916fe16fe86fd8d29e74", "fields": {"nom_de_la_commune": "SANRY LES VIGY", "libell_d_acheminement": "SANRY LES VIGY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57626"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bed7cbec721618292e3c0bd5d5b92dfce124abe6", "fields": {"nom_de_la_commune": "SANRY SUR NIED", "libell_d_acheminement": "SANRY SUR NIED", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57627"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c8ffff84ce2283ff3f431006b3617cf5080b3c5", "fields": {"nom_de_la_commune": "SARREBOURG", "libell_d_acheminement": "SARREBOURG", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57630"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e1a400209684af79a940e73e246ff6f40a5a36", "fields": {"code_postal": "57200", "code_commune_insee": "57631", "libell_d_acheminement": "SARREGUEMINES", "ligne_5": "FOLPERSVILLER", "nom_de_la_commune": "SARREGUEMINES", "coordonnees_gps": [49.1056910456, 7.11772399518]}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c79a6a74092d90e754a6dc68201c4702efa5ea8", "fields": {"nom_de_la_commune": "SARREINSMING", "libell_d_acheminement": "SARREINSMING", "code_postal": "57905", "coordonnees_gps": [49.0718152134, 7.12581121183], "code_commune_insee": "57633"}, "geometry": {"type": "Point", "coordinates": [7.12581121183, 49.0718152134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f10c46e89fd646a1178093fa7cfd4d10c8fc4a", "fields": {"nom_de_la_commune": "SCHOENECK", "libell_d_acheminement": "SCHOENECK", "code_postal": "57350", "coordonnees_gps": [49.2014476423, 6.94907800284], "code_commune_insee": "57638"}, "geometry": {"type": "Point", "coordinates": [6.94907800284, 49.2014476423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a1e8610a3e248b342c2cc5b50d2f2622b4f428", "fields": {"nom_de_la_commune": "SCHORBACH", "libell_d_acheminement": "SCHORBACH", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57639"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "002103b3ffc0ffd0a290b387de1c40ae644a6cd0", "fields": {"nom_de_la_commune": "SCHWERDORFF", "libell_d_acheminement": "SCHWERDORFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57640"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99ac405a79b404b214dc98adca8f9840f4169988", "fields": {"nom_de_la_commune": "SIERCK LES BAINS", "libell_d_acheminement": "SIERCK LES BAINS", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57650"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c515e397636cb56f655c1437ae4da1ba24a8e067", "fields": {"nom_de_la_commune": "SIERSTHAL", "libell_d_acheminement": "SIERSTHAL", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57651"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd9f72243797f62c960c874b9c8c1f8b103c264", "fields": {"code_postal": "57350", "code_commune_insee": "57660", "libell_d_acheminement": "STIRING WENDEL", "ligne_5": "VERRERIE SOPHIE", "nom_de_la_commune": "STIRING WENDEL", "coordonnees_gps": [49.2014476423, 6.94907800284]}, "geometry": {"type": "Point", "coordinates": [6.94907800284, 49.2014476423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9dd11f567e47be765663640eba4d4f2d030fdaf", "fields": {"nom_de_la_commune": "VAHL EBERSING", "libell_d_acheminement": "VAHL EBERSING", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57684"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0303fcc47579ede2c6d4dd8ad053882b53b703", "fields": {"nom_de_la_commune": "VARIZE", "libell_d_acheminement": "VARIZE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57695"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe1922056c0f8746bfc5e91446d4cbcec853b6c", "fields": {"nom_de_la_commune": "VARSBERG", "libell_d_acheminement": "VARSBERG", "code_postal": "57880", "coordonnees_gps": [49.1848577986, 6.63106406972], "code_commune_insee": "57696"}, "geometry": {"type": "Point", "coordinates": [6.63106406972, 49.1848577986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e506ad4fedf47a35e9950462c97cbe4024b8d827", "fields": {"nom_de_la_commune": "VECKRING", "libell_d_acheminement": "VECKRING", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57704"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44589c141b5ca7cb2b7f5d7bb18dccc4d61d544", "fields": {"nom_de_la_commune": "VERNEVILLE", "libell_d_acheminement": "VERNEVILLE", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57707"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf36c51cfae87ce541b1bb3d7fd37d856ddc8c10", "fields": {"nom_de_la_commune": "VIGY", "libell_d_acheminement": "VIGY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57716"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67412c4854eac7751e76820fb773a65eb9ffbb33", "fields": {"nom_de_la_commune": "VILLER", "libell_d_acheminement": "VILLER", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57717"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96da94f55d20545abcd20ed415cb1c3225d0d60d", "fields": {"nom_de_la_commune": "VITTERSBOURG", "libell_d_acheminement": "VITTERSBOURG", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57725"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d1e128ddd2be1254c6cc48cd4ed080bd11f48d9", "fields": {"nom_de_la_commune": "VIVIERS", "libell_d_acheminement": "VIVIERS", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57727"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74d7a749cb9293640841e35a6e0ab79b433ece0a", "fields": {"nom_de_la_commune": "VULMONT", "libell_d_acheminement": "VULMONT", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57737"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dae10cd482cdbbd5473c9cd5943bd13254403ef", "fields": {"nom_de_la_commune": "WALDHOUSE", "libell_d_acheminement": "WALDHOUSE", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57738"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f73f8631b691204d53049e5ce79e46f29f4c576", "fields": {"nom_de_la_commune": "WALSCHEID", "libell_d_acheminement": "WALSCHEID", "code_postal": "57870", "coordonnees_gps": [48.6442661172, 7.16634369748], "code_commune_insee": "57742"}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4082a7056787ab807eb3d6343c18bf6da1cb185e", "fields": {"nom_de_la_commune": "VOELFLING LES BOUZONVILLE", "libell_d_acheminement": "VOELFLING LES BOUZONVILLE", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57749"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4844336aceabadf72b4f14776e023e94c5342256", "fields": {"nom_de_la_commune": "WOUSTVILLER", "libell_d_acheminement": "WOUSTVILLER", "code_postal": "57915", "coordonnees_gps": [49.0787861977, 7.00585850408], "code_commune_insee": "57752"}, "geometry": {"type": "Point", "coordinates": [7.00585850408, 49.0787861977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4a502f28b2c06d38c2f50423a98923b35d3dc2", "fields": {"nom_de_la_commune": "ZETTING", "libell_d_acheminement": "ZETTING", "code_postal": "57905", "coordonnees_gps": [49.0718152134, 7.12581121183], "code_commune_insee": "57760"}, "geometry": {"type": "Point", "coordinates": [7.12581121183, 49.0718152134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba3a3552fe60fb0b2a83d32df995a8dc01d46afa", "fields": {"nom_de_la_commune": "ZOUFFTGEN", "libell_d_acheminement": "ZOUFFTGEN", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57764"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e38070cc3fba790eea9b5519baf40bac7134e72", "fields": {"nom_de_la_commune": "STUCKANGE", "libell_d_acheminement": "STUCKANGE", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57767"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73e44dbc75be1392fd5a9fce337e7c8fe441afd6", "fields": {"nom_de_la_commune": "ALLUY", "libell_d_acheminement": "ALLUY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58004"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8ac3acc3a06fd5258ea40cb62308c6bb4dfc00b", "fields": {"nom_de_la_commune": "ANLEZY", "libell_d_acheminement": "ANLEZY", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58006"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8788754e27ad58bbedca6181e17908ce200b7289", "fields": {"nom_de_la_commune": "ANNAY", "libell_d_acheminement": "ANNAY", "code_postal": "58450", "coordonnees_gps": [47.5311404118, 2.91887895811], "code_commune_insee": "58007"}, "geometry": {"type": "Point", "coordinates": [2.91887895811, 47.5311404118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee06b06c8001ff59d46f4d27a071f4e9c2b40776", "fields": {"nom_de_la_commune": "ARTHEL", "libell_d_acheminement": "ARTHEL", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58013"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f94b39cccb117b78a604731f60634aed3a00d3c", "fields": {"nom_de_la_commune": "ARZEMBOUY", "libell_d_acheminement": "ARZEMBOUY", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58014"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "067548e24da4a59ef63c4da44b3f42b5d5d7a7ba", "fields": {"nom_de_la_commune": "AVRIL SUR LOIRE", "libell_d_acheminement": "AVRIL SUR LOIRE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58020"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece5b4c934837c7765f9e14677d0d44fed95573b", "fields": {"nom_de_la_commune": "BEAUMONT LA FERRIERE", "libell_d_acheminement": "BEAUMONT LA FERRIERE", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58027"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7390a93bccb417c83b27a89ad73c933edd450f19", "fields": {"nom_de_la_commune": "BILLY SUR OISY", "libell_d_acheminement": "BILLY SUR OISY", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58032"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd93bdb652bf22d63965f28c5d835db6cf130ea9", "fields": {"nom_de_la_commune": "BREUGNON", "libell_d_acheminement": "BREUGNON", "code_postal": "58460", "coordonnees_gps": [47.436143333, 3.39666081915], "code_commune_insee": "58038"}, "geometry": {"type": "Point", "coordinates": [3.39666081915, 47.436143333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdbdf0484fd6f689c592f08ec20f1a3cad29a834", "fields": {"nom_de_la_commune": "LA CELLE SUR NIEVRE", "libell_d_acheminement": "LA CELLE SUR NIEVRE", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58045"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f34af9e0177c55ab1f3543730217838970ec3592", "fields": {"nom_de_la_commune": "CHAMPVERT", "libell_d_acheminement": "CHAMPVERT", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58055"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d88107a2a9bbd7d3389a88c684e03b73ec5f814", "fields": {"nom_de_la_commune": "CHANTENAY ST IMBERT", "libell_d_acheminement": "CHANTENAY ST IMBERT", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58057"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bb67abfe7c14e4dda1a0d8d8dbd9d7128517c8", "fields": {"nom_de_la_commune": "LA CHARITE SUR LOIRE", "libell_d_acheminement": "LA CHARITE SUR LOIRE", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58059"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf449b59b18e5a5ac72c18c931b5a51d367646b", "fields": {"nom_de_la_commune": "CHARRIN", "libell_d_acheminement": "CHARRIN", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58060"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e6e7fcfc9c436a75bbbb1526e3afaa6a687cd2", "fields": {"nom_de_la_commune": "CHATILLON EN BAZOIS", "libell_d_acheminement": "CHATILLON EN BAZOIS", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58065"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867ff64be8068ab21395b0799cfaa8a28277a1f4", "fields": {"nom_de_la_commune": "CHATIN", "libell_d_acheminement": "CHATIN", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58066"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddeaa88a4cc788189640d94b7887cf22676a74bf", "fields": {"nom_de_la_commune": "CHEVROCHES", "libell_d_acheminement": "CHEVROCHES", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58073"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9fab9f544058c4dd69a75f63c1e11b87a37771", "fields": {"nom_de_la_commune": "CHOUGNY", "libell_d_acheminement": "CHOUGNY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58076"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3896bc9bc62071f9050f3d491380a1f4fa1dd6cd", "fields": {"nom_de_la_commune": "CLAMECY", "libell_d_acheminement": "CLAMECY", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58079"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b9752e519d67363e31e344614c5b8cf112c713c", "fields": {"nom_de_la_commune": "CORVOL D EMBERNARD", "libell_d_acheminement": "CORVOL D EMBERNARD", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58084"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e81f7c8593c22359b863c33dc85569a2028d4fec", "fields": {"code_postal": "58200", "code_commune_insee": "58086", "libell_d_acheminement": "COSNE COURS SUR LOIRE", "ligne_5": "COURS", "nom_de_la_commune": "COSNE COURS SUR LOIRE", "coordonnees_gps": [47.4176980884, 2.99755366408]}, "geometry": {"type": "Point", "coordinates": [2.99755366408, 47.4176980884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17db05678df70ac8bc9c773810bfb31bbdea8a29", "fields": {"nom_de_la_commune": "DAMPIERRE SOUS BOUHY", "libell_d_acheminement": "DAMPIERRE SOUS BOUHY", "code_postal": "58310", "coordonnees_gps": [47.5133822034, 3.08684545659], "code_commune_insee": "58094"}, "geometry": {"type": "Point", "coordinates": [3.08684545659, 47.5133822034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fbc1b36a0fe91f6cdd13289c8f854b84954405f", "fields": {"nom_de_la_commune": "DEVAY", "libell_d_acheminement": "DEVAY", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58096"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95bd648c7a36d0a2e17fc539a880709d0d232531", "fields": {"nom_de_la_commune": "LA FERMETE", "libell_d_acheminement": "LA FERMETE", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58112"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41b680a95d9460003d4fe8cf172671902c065270", "fields": {"nom_de_la_commune": "FERTREVE", "libell_d_acheminement": "FERTREVE", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58113"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54f65b915468795f7437ea826bb9d03b9b7d3ac3", "fields": {"nom_de_la_commune": "FLETY", "libell_d_acheminement": "FLETY", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58114"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbe635606215b85d37d9264afc6d5b092358600", "fields": {"nom_de_la_commune": "FOURCHAMBAULT", "libell_d_acheminement": "FOURCHAMBAULT", "code_postal": "58600", "coordonnees_gps": [47.0382230874, 3.09310313949], "code_commune_insee": "58117"}, "geometry": {"type": "Point", "coordinates": [3.09310313949, 47.0382230874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d11251d5f243991ca8950dbb54c1c0c7f4d1c6e9", "fields": {"nom_de_la_commune": "FRASNAY REUGNY", "libell_d_acheminement": "FRASNAY REUGNY", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58119"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "446a740bf856de21e1ad4ba1ead1078845e9d358", "fields": {"nom_de_la_commune": "GARCHIZY", "libell_d_acheminement": "GARCHIZY", "code_postal": "58600", "coordonnees_gps": [47.0382230874, 3.09310313949], "code_commune_insee": "58121"}, "geometry": {"type": "Point", "coordinates": [3.09310313949, 47.0382230874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7031548dfab43d044f66c63efcb96a10f9eab278", "fields": {"nom_de_la_commune": "GIRY", "libell_d_acheminement": "GIRY", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58127"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1daed52c14a95b2005c1ab6823ef78b465dfe884", "fields": {"nom_de_la_commune": "LAVAULT DE FRETOY", "libell_d_acheminement": "LAVAULT DE FRETOY", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58141"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94138d634c85c6ca594e44a452d2b411e6d56222", "fields": {"nom_de_la_commune": "LUCENAY LES AIX", "libell_d_acheminement": "LUCENAY LES AIX", "code_postal": "58380", "coordonnees_gps": [46.697962365, 3.49183670382], "code_commune_insee": "58146"}, "geometry": {"type": "Point", "coordinates": [3.49183670382, 46.697962365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38c5014e811faf229ead96bb2ed1418eed6d1668", "fields": {"nom_de_la_commune": "MARS SUR ALLIER", "libell_d_acheminement": "MARS SUR ALLIER", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58158"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "440df65212ccafa5d0d9304000c6c59f6c3c571b", "fields": {"code_postal": "58180", "code_commune_insee": "58160", "libell_d_acheminement": "MARZY", "ligne_5": "CORCELLES", "nom_de_la_commune": "MARZY", "coordonnees_gps": [46.984190932, 3.09279267873]}, "geometry": {"type": "Point", "coordinates": [3.09279267873, 46.984190932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75513bc20de2641caf08e1e32fcb85a312ead722", "fields": {"nom_de_la_commune": "MHERE", "libell_d_acheminement": "MHERE", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58166"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80cba09f15391d914d32783599d6046820596470", "fields": {"nom_de_la_commune": "MILLAY", "libell_d_acheminement": "MILLAY", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58168"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cbe6d21a78c10c00007d927eadcc77406916f5e", "fields": {"nom_de_la_commune": "MONTIGNY SUR CANNE", "libell_d_acheminement": "MONTIGNY SUR CANNE", "code_postal": "58340", "coordonnees_gps": [46.8965884387, 3.63097813462], "code_commune_insee": "58178"}, "geometry": {"type": "Point", "coordinates": [3.63097813462, 46.8965884387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62f8f8115ece494f20cc9f9255a91d10af8fea40", "fields": {"nom_de_la_commune": "MONTREUILLON", "libell_d_acheminement": "MONTREUILLON", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58179"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af3965850faea323a8e68dee5a8d6c69822d8206", "fields": {"nom_de_la_commune": "MONTSAUCHE LES SETTONS", "libell_d_acheminement": "MONTSAUCHE LES SETTONS", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58180"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd0281ab810ab460c7114f3e32f6b4cbd10d58d", "fields": {"nom_de_la_commune": "MOULINS ENGILBERT", "libell_d_acheminement": "MOULINS ENGILBERT", "code_postal": "58290", "coordonnees_gps": [46.9712229118, 3.77516056611], "code_commune_insee": "58182"}, "geometry": {"type": "Point", "coordinates": [3.77516056611, 46.9712229118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbcd3917fa5f3bc19073e92d1f8dfe644c38c4da", "fields": {"nom_de_la_commune": "NEUVILLE LES DECIZE", "libell_d_acheminement": "NEUVILLE LES DECIZE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58192"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "909bf759884d0d69c94fc61e679df0d9099de56f", "fields": {"nom_de_la_commune": "OISY", "libell_d_acheminement": "OISY", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58198"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a2a05e6611b7291b5714096dc86ae8d40227fcc", "fields": {"nom_de_la_commune": "ONLAY", "libell_d_acheminement": "ONLAY", "code_postal": "58370", "coordonnees_gps": [46.9308516747, 3.9664871714], "code_commune_insee": "58199"}, "geometry": {"type": "Point", "coordinates": [3.9664871714, 46.9308516747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a039b8528b6b56373db49bb278e1c4e4826327d0", "fields": {"nom_de_la_commune": "PLANCHEZ", "libell_d_acheminement": "PLANCHEZ", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58210"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efe0a46952a654394727a0305c1ff78851e9be17", "fields": {"nom_de_la_commune": "POUSSEAUX", "libell_d_acheminement": "POUSSEAUX", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58217"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6307410b4b26b7b71efc2f5fd72a0ffd7984e54", "fields": {"nom_de_la_commune": "REMILLY", "libell_d_acheminement": "REMILLY", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58221"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aae972e62fdb4520705763e7010fdc5b020b26c", "fields": {"nom_de_la_commune": "ST BENIN D AZY", "libell_d_acheminement": "ST BENIN D AZY", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58232"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a9240b263e7be8ea4faedbc82dcf398838e190f", "fields": {"nom_de_la_commune": "ST FRANCHY", "libell_d_acheminement": "ST FRANCHY", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58240"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b65d07ff14f42559ecfb98add1d6f6a7782841", "fields": {"nom_de_la_commune": "ST GERMAIN CHASSENAY", "libell_d_acheminement": "ST GERMAIN CHASSENAY", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58241"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa7601fb529d1ac1ff57d3f618d64f6957af4872", "fields": {"nom_de_la_commune": "PESSINES", "libell_d_acheminement": "PESSINES", "code_postal": "17810", "coordonnees_gps": [45.7618866866, -0.717102907714], "code_commune_insee": "17275"}, "geometry": {"type": "Point", "coordinates": [-0.717102907714, 45.7618866866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cee9ba9b283a6859c48bd30270ba94d38b0b212d", "fields": {"code_postal": "17400", "code_commune_insee": "17277", "libell_d_acheminement": "ESSOUVERT", "ligne_5": "LA BENATE", "nom_de_la_commune": "ESSOUVERT", "coordonnees_gps": [45.947220271, -0.4881385622]}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89abe1a9bd942082d9f79ea5344416e0125d4d98", "fields": {"code_postal": "17400", "code_commune_insee": "17277", "libell_d_acheminement": "ESSOUVERT", "ligne_5": "ST DENIS DU PIN", "nom_de_la_commune": "ESSOUVERT", "coordonnees_gps": [45.947220271, -0.4881385622]}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c54cf28b905a1ca8c3039d78b8ea2bf542f94fa", "fields": {"nom_de_la_commune": "PORT D ENVAUX", "libell_d_acheminement": "PORT D ENVAUX", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17285"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c4c0c35f49c2079d4b7c3f0509d3f5b5ddff3c2", "fields": {"nom_de_la_commune": "LES PORTES EN RE", "libell_d_acheminement": "LES PORTES EN RE", "code_postal": "17880", "coordonnees_gps": [46.2430241357, -1.49996251528], "code_commune_insee": "17286"}, "geometry": {"type": "Point", "coordinates": [-1.49996251528, 46.2430241357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dbbf54a679f8aa0fddc00b5458a29217131fc3c", "fields": {"nom_de_la_commune": "PUYROLLAND", "libell_d_acheminement": "PUYROLLAND", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17294"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e71598c07a410aa19fe690ea0411776e2ad0316f", "fields": {"nom_de_la_commune": "RIOUX", "libell_d_acheminement": "RIOUX", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17298"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b856f281be61acd732fa7a17a586664afcee2939", "fields": {"nom_de_la_commune": "LA ROCHELLE", "libell_d_acheminement": "LA ROCHELLE", "code_postal": "17000", "coordonnees_gps": [46.1620724166, -1.17485679534], "code_commune_insee": "17300"}, "geometry": {"type": "Point", "coordinates": [-1.17485679534, 46.1620724166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c20e4a6e3f79c5e399440244261e430479c420", "fields": {"code_postal": "17000", "code_commune_insee": "17300", "libell_d_acheminement": "LA ROCHELLE", "ligne_5": "LA PALLICE", "nom_de_la_commune": "LA ROCHELLE", "coordonnees_gps": [46.1620724166, -1.17485679534]}, "geometry": {"type": "Point", "coordinates": [-1.17485679534, 46.1620724166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b89d13ff747d20923f0b28d37d1a1bd1a1c4445", "fields": {"nom_de_la_commune": "ST AGNANT", "libell_d_acheminement": "ST AGNANT", "code_postal": "17620", "coordonnees_gps": [45.8464645946, -0.95771650444], "code_commune_insee": "17308"}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "865ecd57b140e19f3dc89a9f496eae327394b461", "fields": {"nom_de_la_commune": "ST ANDRE DE LIDON", "libell_d_acheminement": "ST ANDRE DE LIDON", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17310"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eed98c2ed1b91212e75e316e6b3842551de8eb20", "fields": {"nom_de_la_commune": "ST AUGUSTIN", "libell_d_acheminement": "ST AUGUSTIN", "code_postal": "17570", "coordonnees_gps": [45.6992032727, -1.14778686925], "code_commune_insee": "17311"}, "geometry": {"type": "Point", "coordinates": [-1.14778686925, 45.6992032727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98d3f95a4f9ec6980f49d7f1a9cddb2661998da8", "fields": {"nom_de_la_commune": "ST CIERS CHAMPAGNE", "libell_d_acheminement": "ST CIERS CHAMPAGNE", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17316"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a52c7e9d9d67e0221478184c03c92d261b48a113", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17319"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf89fae8dd1b4dc9a7a281ce4a5f86724bde1392", "fields": {"nom_de_la_commune": "ST DIZANT DU BOIS", "libell_d_acheminement": "ST DIZANT DU BOIS", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17324"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "405a8c55770ad11774dc550f34ea2f530ca063e2", "fields": {"nom_de_la_commune": "ST EUGENE", "libell_d_acheminement": "ST EUGENE", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17326"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00baccbc9d6ca9d9be11a427e2cb44a184ca1eb1", "fields": {"nom_de_la_commune": "ST FORT SUR GIRONDE", "libell_d_acheminement": "ST FORT SUR GIRONDE", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17328"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1442a6f30b319cf474c0ad65798585e1d4541f2", "fields": {"nom_de_la_commune": "ST GEORGES D OLERON", "libell_d_acheminement": "ST GEORGES D OLERON", "code_postal": "17190", "coordonnees_gps": [45.9760434465, -1.32419340484], "code_commune_insee": "17337"}, "geometry": {"type": "Point", "coordinates": [-1.32419340484, 45.9760434465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bf2b5dc6933b28535f989142bfabc657e74237b", "fields": {"code_postal": "17190", "code_commune_insee": "17337", "libell_d_acheminement": "ST GEORGES D OLERON", "ligne_5": "CHERAY", "nom_de_la_commune": "ST GEORGES D OLERON", "coordonnees_gps": [45.9760434465, -1.32419340484]}, "geometry": {"type": "Point", "coordinates": [-1.32419340484, 45.9760434465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f040df08f56ce57ae1febb39af23c48ab41bb7e", "fields": {"code_postal": "17320", "code_commune_insee": "17351", "libell_d_acheminement": "ST JUST LUZAC", "ligne_5": "LUZAC", "nom_de_la_commune": "ST JUST LUZAC", "coordonnees_gps": [45.8153693416, -1.06418747186]}, "geometry": {"type": "Point", "coordinates": [-1.06418747186, 45.8153693416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16d2f9eb9f6c2cdf68b1d8f419ae94fdb197a1b0", "fields": {"nom_de_la_commune": "ST MARTIAL", "libell_d_acheminement": "ST MARTIAL", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17361"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a54370760e367e10b7218c33d76ea250fdf507b", "fields": {"nom_de_la_commune": "ST MARTIAL DE MIRAMBEAU", "libell_d_acheminement": "ST MARTIAL DE MIRAMBEAU", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17362"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb10dd93ab1daa94eb6b344551d747a5562ecca4", "fields": {"nom_de_la_commune": "ST NAZAIRE SUR CHARENTE", "libell_d_acheminement": "ST NAZAIRE SUR CHARENTE", "code_postal": "17780", "coordonnees_gps": [45.9139828968, -1.03532159537], "code_commune_insee": "17375"}, "geometry": {"type": "Point", "coordinates": [-1.03532159537, 45.9139828968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "666a2715b959f16245f257ca39c96ac334443a30", "fields": {"nom_de_la_commune": "ST OUEN D AUNIS", "libell_d_acheminement": "ST OUEN D AUNIS", "code_postal": "17230", "coordonnees_gps": [46.286014889, -1.01509211949], "code_commune_insee": "17376"}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a51b1ef6d2bf352d948520626c560b657598145", "fields": {"nom_de_la_commune": "ST QUANTIN DE RANCANNE", "libell_d_acheminement": "ST QUANTIN DE RANCANNE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17388"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ab3aa66d5f42ad05c2e0072268ada75716b4cd", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17389"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8c7d111efe1ef12cf6904c201d76e837e0b79a1", "fields": {"nom_de_la_commune": "ST ROMAIN SUR GIRONDE", "libell_d_acheminement": "ST ROMAIN SUR GIRONDE", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17392"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5d7b1db3baa52439d6940dda1fe220c9ed6f3a", "fields": {"code_postal": "17350", "code_commune_insee": "17397", "libell_d_acheminement": "ST SAVINIEN", "ligne_5": "AGONNAY", "nom_de_la_commune": "ST SAVINIEN", "coordonnees_gps": [45.8646141177, -0.657370480976]}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd84d0e08fc5311ad82bff09e0c6544e36962e93", "fields": {"nom_de_la_commune": "ST SIGISMOND DE CLERMONT", "libell_d_acheminement": "ST SIGISMOND DE CLERMONT", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17402"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ce9e5d7846a5072c353cbe2e39bb72b5449e3d", "fields": {"nom_de_la_commune": "ST XANDRE", "libell_d_acheminement": "ST XANDRE", "code_postal": "17138", "coordonnees_gps": [46.202457274, -1.09989389578], "code_commune_insee": "17414"}, "geometry": {"type": "Point", "coordinates": [-1.09989389578, 46.202457274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db775cb7648d21fc233c7f530232ca16bdbcd490", "fields": {"nom_de_la_commune": "SALIGNAC DE MIRAMBEAU", "libell_d_acheminement": "SALIGNAC DE MIRAMBEAU", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17417"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4280bb9e7f80159f7846e9a4b3eca064d26030", "fields": {"nom_de_la_commune": "SOULIGNONNE", "libell_d_acheminement": "SOULIGNONNE", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17431"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1f355166c285516b19212ffd1afdeea5418b04", "fields": {"nom_de_la_commune": "SOUSMOULINS", "libell_d_acheminement": "SOUSMOULINS", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17433"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5cd93fc06c72c34760ab518354c8488e4378dc0", "fields": {"nom_de_la_commune": "SURGERES", "libell_d_acheminement": "SURGERES", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17434"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6add86617da08823a03562218b0a1d8a5ce61310", "fields": {"nom_de_la_commune": "LE THOU", "libell_d_acheminement": "LE THOU", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17447"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dca434e7547ebd24635dda94067a4b741192720", "fields": {"nom_de_la_commune": "LES TOUCHES DE PERIGNY", "libell_d_acheminement": "LES TOUCHES DE PERIGNY", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17451"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3f3ddb9bb47cb89e0542a07a9c01762070daf35", "fields": {"nom_de_la_commune": "VARAIZE", "libell_d_acheminement": "VARAIZE", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17459"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6c726b1386b527515b76296607551d85d0d6a4b", "fields": {"nom_de_la_commune": "VARZAY", "libell_d_acheminement": "VARZAY", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17460"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23ce76ced3d8412b31bf5b85afc61c469a5c2515", "fields": {"nom_de_la_commune": "VAUX SUR MER", "libell_d_acheminement": "VAUX SUR MER", "code_postal": "17640", "coordonnees_gps": [45.6445589679, -1.05904325775], "code_commune_insee": "17461"}, "geometry": {"type": "Point", "coordinates": [-1.05904325775, 45.6445589679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56f10cc9462f9e1651e4c9f8acd5506478740c83", "fields": {"nom_de_la_commune": "VIBRAC", "libell_d_acheminement": "VIBRAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17468"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd692c164fa01db837fccf99421fdd433ce75f9", "fields": {"nom_de_la_commune": "VILLARS LES BOIS", "libell_d_acheminement": "VILLARS LES BOIS", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17470"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e80468f863b9f90f8fc5895a21bc2d9174a72aa", "fields": {"nom_de_la_commune": "VILLENEUVE LA COMTESSE", "libell_d_acheminement": "VILLENEUVE LA COMTESSE", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17474"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d066b9bea70c8bfe533dd38e52fb36a91b7d256", "fields": {"nom_de_la_commune": "VILLEXAVIER", "libell_d_acheminement": "VILLEXAVIER", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17476"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4317a8ebba290fedc75f8372a4c80d6d6bdee03b", "fields": {"nom_de_la_commune": "VIRSON", "libell_d_acheminement": "VIRSON", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17480"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc2cc1c5c205ccb323ba52a747c82095bb6ed871", "fields": {"nom_de_la_commune": "VOISSAY", "libell_d_acheminement": "VOISSAY", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17481"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae323f2fa3ab90dc3ff95edcbf1398b521d99dcd", "fields": {"nom_de_la_commune": "LE GRAND VILLAGE PLAGE", "libell_d_acheminement": "LE GRAND VILLAGE PLAGE", "code_postal": "17370", "coordonnees_gps": [45.8397665492, -1.23126758244], "code_commune_insee": "17485"}, "geometry": {"type": "Point", "coordinates": [-1.23126758244, 45.8397665492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2839d04c3343ba9e7731f3a326300c3de5f82769", "fields": {"nom_de_la_commune": "AINAY LE VIEIL", "libell_d_acheminement": "AINAY LE VIEIL", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18002"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e7060ad22e2002e3df00c540a2e6602ad9c06f0", "fields": {"nom_de_la_commune": "ARGENVIERES", "libell_d_acheminement": "ARGENVIERES", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18012"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2843c368a408299ec69590900a010614e60bbb", "fields": {"nom_de_la_commune": "ASSIGNY", "libell_d_acheminement": "ASSIGNY", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18014"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27f3fe8bd64efd8d09d83e904095879bebd089cc", "fields": {"nom_de_la_commune": "BANNAY", "libell_d_acheminement": "BANNAY", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18020"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2cec4891b03c68db9a74308f39eb27b24716a7a", "fields": {"nom_de_la_commune": "BERRY BOUY", "libell_d_acheminement": "BERRY BOUY", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18028"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c55404ff1b372baf5a472757423c749517f618fd", "fields": {"nom_de_la_commune": "BLANCAFORT", "libell_d_acheminement": "BLANCAFORT", "code_postal": "18410", "coordonnees_gps": [47.5588785401, 2.35799352242], "code_commune_insee": "18030"}, "geometry": {"type": "Point", "coordinates": [2.35799352242, 47.5588785401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c7942110c8ed4d8e43b8fd8a0984c95d7a5ecb", "fields": {"nom_de_la_commune": "BRECY", "libell_d_acheminement": "BRECY", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18035"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "514ced0e7485bd42464d05aa20e71843650865fb", "fields": {"nom_de_la_commune": "LA CELETTE", "libell_d_acheminement": "LA CELETTE", "code_postal": "18360", "coordonnees_gps": [46.5847135273, 2.49730367441], "code_commune_insee": "18041"}, "geometry": {"type": "Point", "coordinates": [2.49730367441, 46.5847135273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c0ea704dc85b872478a15b7c41fa24e7ecb451d", "fields": {"nom_de_la_commune": "CHAMBON", "libell_d_acheminement": "CHAMBON", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18046"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fc2955d948aa43306fdb3175aa72508c57838e8", "fields": {"nom_de_la_commune": "LA CHAPELLE ST URSIN", "libell_d_acheminement": "LA CHAPELLE ST URSIN", "code_postal": "18570", "coordonnees_gps": [47.029164221, 2.32252100709], "code_commune_insee": "18050"}, "geometry": {"type": "Point", "coordinates": [2.32252100709, 47.029164221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f8116249cee15c95adfe20676becf28813c86db", "fields": {"nom_de_la_commune": "CHAUMOUX MARCILLY", "libell_d_acheminement": "CHAUMOUX MARCILLY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18061"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3b37a30d841a804a6866113f15c07b42d3a502", "fields": {"nom_de_la_commune": "COGNY", "libell_d_acheminement": "COGNY", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18068"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98ea2b7059d8e6abc032c762f2cd9e3d53cb04e1", "fields": {"nom_de_la_commune": "CONCRESSAULT", "libell_d_acheminement": "CONCRESSAULT", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18070"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3e190895bc48ea6df0b641f55412baa2464afd0", "fields": {"nom_de_la_commune": "CORQUOY", "libell_d_acheminement": "CORQUOY", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18073"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152fb4b7907b641ab36ca27b47a44d5522d36ec1", "fields": {"nom_de_la_commune": "COUST", "libell_d_acheminement": "COUST", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18076"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce2f622f01be146cdcd2e54c084c383695d5901", "fields": {"nom_de_la_commune": "CREZANCY EN SANCERRE", "libell_d_acheminement": "CREZANCY EN SANCERRE", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18079"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d8bc24104bcc32d269c7d48878abd13eda9a0db", "fields": {"nom_de_la_commune": "CROSSES", "libell_d_acheminement": "CROSSES", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18081"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e17d67f696ab6aaa6e4a1b533be2cd310d8770", "fields": {"nom_de_la_commune": "DUN SUR AURON", "libell_d_acheminement": "DUN SUR AURON", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18087"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe9b73d40d68300c46e7f4ee4665c99f6b2eca5f", "fields": {"nom_de_la_commune": "FAVERDINES", "libell_d_acheminement": "FAVERDINES", "code_postal": "18360", "coordonnees_gps": [46.5847135273, 2.49730367441], "code_commune_insee": "18093"}, "geometry": {"type": "Point", "coordinates": [2.49730367441, 46.5847135273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d61cd817a62c9093dac5000922d0f89f310454f1", "fields": {"nom_de_la_commune": "FEUX", "libell_d_acheminement": "FEUX", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18094"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae46f01fe06dc88904a948a29f5282a34384da50", "fields": {"nom_de_la_commune": "FOECY", "libell_d_acheminement": "FOECY", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18096"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633cfd58d251d6f00f3dcc8d3c84bd3416a92432", "fields": {"nom_de_la_commune": "GIVARDON", "libell_d_acheminement": "GIVARDON", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18102"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ae3000535d0fd16b7faa7a8b9250d60f9f665d", "fields": {"nom_de_la_commune": "GROISES", "libell_d_acheminement": "GROISES", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18104"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f081567e3ba881897d29e579bc29dd2598c3f603", "fields": {"nom_de_la_commune": "HENRICHEMONT", "libell_d_acheminement": "HENRICHEMONT", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18109"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038b0783b1d6a7018f797022fc03c3f71da39e1f", "fields": {"nom_de_la_commune": "HUMBLIGNY", "libell_d_acheminement": "HUMBLIGNY", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18111"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67c201d452aec4a89afdcba0852b53ea6e0f2c1", "fields": {"nom_de_la_commune": "IDS ST ROCH", "libell_d_acheminement": "IDS ST ROCH", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18112"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa928f2b73fe961dc1ed0b737662598b126d947", "fields": {"nom_de_la_commune": "LAVERDINES", "libell_d_acheminement": "LAVERDINES", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18123"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7156acea140624e6758f7e9542becada7499a683", "fields": {"nom_de_la_commune": "LURY SUR ARNON", "libell_d_acheminement": "LURY SUR ARNON", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18134"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00a5da039240ebdbe6bf6a448cce2066eec8c54b", "fields": {"nom_de_la_commune": "MAISONNAIS", "libell_d_acheminement": "MAISONNAIS", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18135"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb71fd7b553408d2e822d296198b53c635ed344", "fields": {"nom_de_la_commune": "MEREAU", "libell_d_acheminement": "MEREAU", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18148"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a926166d9f00c66a8401338786e48189af67b6f", "fields": {"nom_de_la_commune": "MONTIGNY", "libell_d_acheminement": "MONTIGNY", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18151"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3edb8d83b57144cfc3af5d2d9ba51b3b0fbd2205", "fields": {"nom_de_la_commune": "MORLAC", "libell_d_acheminement": "MORLAC", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18153"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f327c6bcd6f7422aab339b0091a5a78d49e54486", "fields": {"nom_de_la_commune": "MORNAY SUR ALLIER", "libell_d_acheminement": "MORNAY SUR ALLIER", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18155"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c51d23fbbe108de4c5b267c8a37d8a4665029b3", "fields": {"nom_de_la_commune": "NEUVY SUR BARANGEON", "libell_d_acheminement": "NEUVY SUR BARANGEON", "code_postal": "18330", "coordonnees_gps": [47.3185099523, 2.20935359445], "code_commune_insee": "18165"}, "geometry": {"type": "Point", "coordinates": [2.20935359445, 47.3185099523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "046219b86c105c88fa329e6dd8a3663ce2b2819d", "fields": {"nom_de_la_commune": "ORVAL", "libell_d_acheminement": "ORVAL", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18172"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4c851c11aefaaffd2e637568f15b4b286ace90", "fields": {"nom_de_la_commune": "PLOU", "libell_d_acheminement": "PLOU", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18181"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb4a643381c485567b8b259914b6c98d345a3bf", "fields": {"nom_de_la_commune": "POISIEUX", "libell_d_acheminement": "POISIEUX", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18182"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e081532f8ad21644e1c4f08792dcd8225481a8", "fields": {"nom_de_la_commune": "PRIMELLES", "libell_d_acheminement": "PRIMELLES", "code_postal": "18400", "coordonnees_gps": [46.9642447985, 2.24452322455], "code_commune_insee": "18188"}, "geometry": {"type": "Point", "coordinates": [2.24452322455, 46.9642447985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a536f652ff43c203ac87925d12aac09db92c96", "fields": {"nom_de_la_commune": "QUINCY", "libell_d_acheminement": "QUINCY", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18190"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d35a609960c5386f17130c58a64986893b64e550", "fields": {"nom_de_la_commune": "REZAY", "libell_d_acheminement": "REZAY", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18193"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0cf3593a9a9a9db0f7508c60dbfc6a5694ab065", "fields": {"nom_de_la_commune": "SAGONNE", "libell_d_acheminement": "SAGONNE", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18195"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a58a0f7b838ea651682ca85a66130163f0a2872", "fields": {"nom_de_la_commune": "ST AMBROIX", "libell_d_acheminement": "ST AMBROIX", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18198"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbb2d65e188f60428692832b6382af7789366d3a", "fields": {"nom_de_la_commune": "ST BOUIZE", "libell_d_acheminement": "ST BOUIZE", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18200"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "028b8f5682685dedf20699556c7cdf42329a55d5", "fields": {"nom_de_la_commune": "ST DENIS DE PALIN", "libell_d_acheminement": "ST DENIS DE PALIN", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18204"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9eaf38ff97d9c37f36a78ab91112a15151e722a", "fields": {"nom_de_la_commune": "ST ELOY DE GY", "libell_d_acheminement": "ST ELOY DE GY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18206"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af10ac296df08aed3087473385e3f6d22eec74f3", "fields": {"nom_de_la_commune": "ST LOUP DES CHAUMES", "libell_d_acheminement": "ST LOUP DES CHAUMES", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18221"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "051e880ba4dde5bebdf7ec2b14731cf2369168db", "fields": {"nom_de_la_commune": "ST MARTIN D AUXIGNY", "libell_d_acheminement": "ST MARTIN D AUXIGNY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18223"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d98e20190e61cf4748c5fd8bd7281823869d9579", "fields": {"nom_de_la_commune": "ST MICHEL DE VOLANGIS", "libell_d_acheminement": "ST MICHEL DE VOLANGIS", "code_postal": "18390", "coordonnees_gps": [47.0877811378, 2.52674457802], "code_commune_insee": "18226"}, "geometry": {"type": "Point", "coordinates": [2.52674457802, 47.0877811378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd8341187e407280e38f095cf275b47762ab8ec", "fields": {"nom_de_la_commune": "ST PALAIS", "libell_d_acheminement": "ST PALAIS", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18229"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032e580c157553c175b8ef38d6cc5213610d1550", "fields": {"nom_de_la_commune": "ST SATUR", "libell_d_acheminement": "ST SATUR", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18233"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893f52d3f21c9a7ef43e9d58f42734e805221ec5", "fields": {"nom_de_la_commune": "STE THORETTE", "libell_d_acheminement": "STE THORETTE", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18237"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fc2a58b74d9cf68849c0c4e3aae2a319c376217", "fields": {"nom_de_la_commune": "ST VITTE", "libell_d_acheminement": "ST VITTE", "code_postal": "18360", "coordonnees_gps": [46.5847135273, 2.49730367441], "code_commune_insee": "18238"}, "geometry": {"type": "Point", "coordinates": [2.49730367441, 46.5847135273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdc71bff6728868f4e95949883f10e243f2efc39", "fields": {"nom_de_la_commune": "SANCERGUES", "libell_d_acheminement": "SANCERGUES", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18240"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f8bc9a7215ac67d228d3af586ae33fa0ae9373", "fields": {"nom_de_la_commune": "SANCOINS", "libell_d_acheminement": "SANCOINS", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18242"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336c2bd218adfa4b3b3f95120b523e26ba6eb054", "fields": {"nom_de_la_commune": "DUPPIGHEIM", "libell_d_acheminement": "DUPPIGHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67108"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aecb8173a5863f0ef629768dfed1b13053d1b10", "fields": {"nom_de_la_commune": "DURNINGEN", "libell_d_acheminement": "DURNINGEN", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67109"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc368f3166b25e8eb5d57fc85c163ede1fb7162e", "fields": {"nom_de_la_commune": "DURSTEL", "libell_d_acheminement": "DURSTEL", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67111"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541e4c45f596c039d19aa8dce3f78a82cf44294f", "fields": {"nom_de_la_commune": "EBERSMUNSTER", "libell_d_acheminement": "EBERSMUNSTER", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67116"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "457f534a1e4489a23923d2f50fd9edcb06e6d8b9", "fields": {"nom_de_la_commune": "ECKBOLSHEIM", "libell_d_acheminement": "ECKBOLSHEIM", "code_postal": "67201", "coordonnees_gps": [48.5798145293, 7.68212036904], "code_commune_insee": "67118"}, "geometry": {"type": "Point", "coordinates": [7.68212036904, 48.5798145293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c62332e2f102fd5ba58bebe29ad9f1ecd18aa2d", "fields": {"nom_de_la_commune": "WANGENBOURG ENGENTHAL", "libell_d_acheminement": "WANGENBOURG ENGENTHAL", "code_postal": "67710", "coordonnees_gps": [48.6210040499, 7.30576868446], "code_commune_insee": "67122"}, "geometry": {"type": "Point", "coordinates": [7.30576868446, 48.6210040499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4707dd18155fafe07c1945f35edc84ea56b0be2", "fields": {"code_postal": "67710", "code_commune_insee": "67122", "libell_d_acheminement": "WANGENBOURG ENGENTHAL", "ligne_5": "WOLFSTHAL", "nom_de_la_commune": "WANGENBOURG ENGENTHAL", "coordonnees_gps": [48.6210040499, 7.30576868446]}, "geometry": {"type": "Point", "coordinates": [7.30576868446, 48.6210040499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73ea2848d05e37c9a465fe8d22bce4cdec9cc35", "fields": {"nom_de_la_commune": "ENTZHEIM", "libell_d_acheminement": "ENTZHEIM", "code_postal": "67960", "coordonnees_gps": [48.5355849836, 7.63354485336], "code_commune_insee": "67124"}, "geometry": {"type": "Point", "coordinates": [7.63354485336, 48.5355849836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6390f11b3d30920af863ccded7e6cd50f8487e77", "fields": {"nom_de_la_commune": "ERCKARTSWILLER", "libell_d_acheminement": "ERCKARTSWILLER", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67126"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c82b315cb42b77fcba0ff70bf6873ad18df6d91b", "fields": {"nom_de_la_commune": "ERNOLSHEIM BRUCHE", "libell_d_acheminement": "ERNOLSHEIM BRUCHE", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67128"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18eb5bd29a6ecbcb379adb5b0ac24d065bbaa36e", "fields": {"nom_de_la_commune": "ERSTEIN", "libell_d_acheminement": "ERSTEIN", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67130"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c59924c0b51ddf999bf94004dc7c55594ec60b76", "fields": {"nom_de_la_commune": "ESCHBACH", "libell_d_acheminement": "ESCHBACH", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67132"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a15209b799c11cf8aee91dc99710962220947f7", "fields": {"code_postal": "67320", "code_commune_insee": "67133", "libell_d_acheminement": "ESCHBOURG", "ligne_5": "GRAUFTHAL", "nom_de_la_commune": "ESCHBOURG", "coordonnees_gps": [48.8529656934, 7.17568129629]}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d31cdf0cd17ca3398d78894a0582c07eaf046a", "fields": {"nom_de_la_commune": "FORSTHEIM", "libell_d_acheminement": "FORSTHEIM", "code_postal": "67580", "coordonnees_gps": [48.8787753721, 7.67873675705], "code_commune_insee": "67141"}, "geometry": {"type": "Point", "coordinates": [7.67873675705, 48.8787753721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8537b41d9429e565bbaab044b18e4b85fbadbd7f", "fields": {"nom_de_la_commune": "FORT LOUIS", "libell_d_acheminement": "FORT LOUIS", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67142"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0560e62ac8cf85f71386907048eb3133d3e77e60", "fields": {"nom_de_la_commune": "FOUDAY", "libell_d_acheminement": "FOUDAY", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67144"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9f3dc082cba07cb636f5a553bdff8cdd667b58", "fields": {"nom_de_la_commune": "FRIEDOLSHEIM", "libell_d_acheminement": "FRIEDOLSHEIM", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67145"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c9cf4c5a6dd7fc75f6d005a230b6f4763c89e1", "fields": {"nom_de_la_commune": "FURCHHAUSEN", "libell_d_acheminement": "FURCHHAUSEN", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67149"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c1a43ae80423aca0112ed4b9667c69012adcaa", "fields": {"nom_de_la_commune": "GOTTESHEIM", "libell_d_acheminement": "GOTTESHEIM", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67162"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c106be3f5c6e43f99d8a1293cdb48c56a94c4187", "fields": {"nom_de_la_commune": "GOUGENHEIM", "libell_d_acheminement": "GOUGENHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67163"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658d4067e8200aeb65c57734b6683b3a9884e680", "fields": {"nom_de_la_commune": "GRIESHEIM PRES MOLSHEIM", "libell_d_acheminement": "GRIESHEIM PRES MOLSHEIM", "code_postal": "67870", "coordonnees_gps": [48.4894170469, 7.52737448291], "code_commune_insee": "67172"}, "geometry": {"type": "Point", "coordinates": [7.52737448291, 48.4894170469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5215643ef855ab84f8c8c0c842177c7ceb2f870d", "fields": {"nom_de_la_commune": "HESSENHEIM", "libell_d_acheminement": "HESSENHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67195"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc7a7f3f848da0b4f8d61a2b3b8d94c09dc7e1c", "fields": {"nom_de_la_commune": "HINSBOURG", "libell_d_acheminement": "HINSBOURG", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67198"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde0ffdfa99eebb86aa4fb6ddc46bf994cedafd1", "fields": {"nom_de_la_commune": "HOCHFELDEN", "libell_d_acheminement": "HOCHFELDEN", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67202"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b596dac0e45383c6e7ff631722c4fe78c61ad1", "fields": {"nom_de_la_commune": "HOFFEN", "libell_d_acheminement": "HOFFEN", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67206"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95aa64f8146ae1365ecdaa3fe018b37de1c70ae", "fields": {"nom_de_la_commune": "HUTTENHEIM", "libell_d_acheminement": "HUTTENHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67216"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1818f064e77d8cf467a9c181a4936feeebf62443", "fields": {"nom_de_la_commune": "INNENHEIM", "libell_d_acheminement": "INNENHEIM", "code_postal": "67880", "coordonnees_gps": [48.4869700046, 7.56924214969], "code_commune_insee": "67223"}, "geometry": {"type": "Point", "coordinates": [7.56924214969, 48.4869700046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3d966a66c2394ba949191e9cea8068dd3a6d6c5", "fields": {"nom_de_la_commune": "ITTERSWILLER", "libell_d_acheminement": "ITTERSWILLER", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67227"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819d503cffa7927155c8e721aa515d9b262f509c", "fields": {"nom_de_la_commune": "KEFFENACH", "libell_d_acheminement": "KEFFENACH", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67232"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a3853543fd9619fbb40c208af2693d973924fe", "fields": {"nom_de_la_commune": "KILSTETT", "libell_d_acheminement": "KILSTETT", "code_postal": "67840", "coordonnees_gps": [48.6831067004, 7.84575550636], "code_commune_insee": "67237"}, "geometry": {"type": "Point", "coordinates": [7.84575550636, 48.6831067004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8d8586c2c7c0d928929aa2cc764437dabcda10", "fields": {"nom_de_la_commune": "KIRRWILLER", "libell_d_acheminement": "KIRRWILLER", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67242"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beca160b9ed19cb7dfd28dd5c99c32d1bef99c96", "fields": {"nom_de_la_commune": "KNOERSHEIM", "libell_d_acheminement": "KNOERSHEIM", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67245"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d1d292ffa4d2b9501d088f35783374e4b27297", "fields": {"nom_de_la_commune": "KURTZENHOUSE", "libell_d_acheminement": "KURTZENHOUSE", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67252"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da8f89262d2e5780ae617640ca5fe811288908b8", "fields": {"nom_de_la_commune": "KUTTOLSHEIM", "libell_d_acheminement": "KUTTOLSHEIM", "code_postal": "67520", "coordonnees_gps": [48.6254584332, 7.49951145108], "code_commune_insee": "67253"}, "geometry": {"type": "Point", "coordinates": [7.49951145108, 48.6254584332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18db4a54e86a312c5057dc3a3f7db43356ee3dfd", "fields": {"nom_de_la_commune": "LAMPERTHEIM", "libell_d_acheminement": "LAMPERTHEIM", "code_postal": "67450", "coordonnees_gps": [48.6487396541, 7.70172520923], "code_commune_insee": "67256"}, "geometry": {"type": "Point", "coordinates": [7.70172520923, 48.6487396541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b953bf55f34e3849181e69686c44405eda7e4d9", "fields": {"nom_de_la_commune": "LANDERSHEIM", "libell_d_acheminement": "LANDERSHEIM", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67258"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfac3acc33b99ecdffa212e62914ee0df7f4f617", "fields": {"nom_de_la_commune": "LIMERSHEIM", "libell_d_acheminement": "LIMERSHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67266"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4818500cf2d50a871c303ca2625dc8840a5a1f", "fields": {"nom_de_la_commune": "LIPSHEIM", "libell_d_acheminement": "LIPSHEIM", "code_postal": "67640", "coordonnees_gps": [48.4903746121, 7.67506089743], "code_commune_insee": "67268"}, "geometry": {"type": "Point", "coordinates": [7.67506089743, 48.4903746121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "068798b370eb49934a9028bbf398106a5bfb0c15", "fields": {"nom_de_la_commune": "LIXHAUSEN", "libell_d_acheminement": "LIXHAUSEN", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67270"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ccedcf26a857582fdad9ffa11bab725e073aca2", "fields": {"nom_de_la_commune": "LORENTZEN", "libell_d_acheminement": "LORENTZEN", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67274"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46cfb7fef9d7ea9ecb09b22683dfa120ee216489", "fields": {"nom_de_la_commune": "MACKWILLER", "libell_d_acheminement": "MACKWILLER", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67278"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed32260ca3f9c0b99cf449d111bdb142853b6d8b", "fields": {"nom_de_la_commune": "MARCKOLSHEIM", "libell_d_acheminement": "MARCKOLSHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67281"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae7b415357a22c4f5f95b5911580133159bb823", "fields": {"nom_de_la_commune": "MARMOUTIER", "libell_d_acheminement": "MARMOUTIER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67283"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "784ed8d038fc79808e89cf7f5b892ed8da3a5fb5", "fields": {"nom_de_la_commune": "MENCHHOFFEN", "libell_d_acheminement": "MENCHHOFFEN", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67289"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d48bc94a74326a510f4c19c73a01192005ef5c", "fields": {"nom_de_la_commune": "MIETESHEIM", "libell_d_acheminement": "MIETESHEIM", "code_postal": "67580", "coordonnees_gps": [48.8787753721, 7.67873675705], "code_commune_insee": "67292"}, "geometry": {"type": "Point", "coordinates": [7.67873675705, 48.8787753721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f35a0cb87b7763b6229199c080d94dfeedb2f37a", "fields": {"nom_de_la_commune": "MOLSHEIM", "libell_d_acheminement": "MOLSHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67300"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebb9464b4ee4015c1701a5b4bfd81fa4ca80526", "fields": {"nom_de_la_commune": "MORSBRONN LES BAINS", "libell_d_acheminement": "MORSBRONN LES BAINS", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67303"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71dfafbb49099de491941f334da8a2c20fe2ae51", "fields": {"nom_de_la_commune": "NATZWILLER", "libell_d_acheminement": "NATZWILLER", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67314"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a24a262c107a4b4d6ebf7e9f88a1d77339f73a8b", "fields": {"code_postal": "67130", "code_commune_insee": "67321", "libell_d_acheminement": "NEUVILLER LA ROCHE", "ligne_5": "HAUTE GOUTTE", "nom_de_la_commune": "NEUVILLER LA ROCHE", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e79385c513571fe85c7375181ad05b9136e4dcee", "fields": {"nom_de_la_commune": "NIEDERBRONN LES BAINS", "libell_d_acheminement": "NIEDERBRONN LES BAINS", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67324"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e3ffdd7b69d2f9552016b69222a0ff1f6e8e9a", "fields": {"nom_de_la_commune": "NIEDERLAUTERBACH", "libell_d_acheminement": "NIEDERLAUTERBACH", "code_postal": "67630", "coordonnees_gps": [48.9645506647, 8.14057364298], "code_commune_insee": "67327"}, "geometry": {"type": "Point", "coordinates": [8.14057364298, 48.9645506647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8205151fa1af177d51ad288a7b6116e40ca0ee0e", "fields": {"nom_de_la_commune": "NIEDERROEDERN", "libell_d_acheminement": "NIEDERROEDERN", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67330"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8442559ef75348b27a83177473835146a50690", "fields": {"nom_de_la_commune": "NIEDERSTEINBACH", "libell_d_acheminement": "NIEDERSTEINBACH", "code_postal": "67510", "coordonnees_gps": [49.0227242639, 7.76839928059], "code_commune_insee": "67334"}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f2e4935bc5634f42852290f7e7045329c0b5d9", "fields": {"code_postal": "67660", "code_commune_insee": "67339", "libell_d_acheminement": "BETSCHDORF", "ligne_5": "SCHWABWILLER", "nom_de_la_commune": "BETSCHDORF", "coordonnees_gps": [48.8932955893, 7.92442100196]}, "geometry": {"type": "Point", "coordinates": [7.92442100196, 48.8932955893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa80f92173da5f2e5ceb70ef0091fa677d243435", "fields": {"nom_de_la_commune": "OBERHAUSBERGEN", "libell_d_acheminement": "OBERHAUSBERGEN", "code_postal": "67205", "coordonnees_gps": [48.6071352672, 7.68316237255], "code_commune_insee": "67343"}, "geometry": {"type": "Point", "coordinates": [7.68316237255, 48.6071352672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336721f7347e2b4e1c4f82ae1834d13183dfa5c1", "fields": {"nom_de_la_commune": "OBERNAI", "libell_d_acheminement": "OBERNAI", "code_postal": "67210", "coordonnees_gps": [48.4477372351, 7.50825704753], "code_commune_insee": "67348"}, "geometry": {"type": "Point", "coordinates": [7.50825704753, 48.4477372351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b64ac82b065c302fcffda2467ff72371edbc9c8", "fields": {"nom_de_la_commune": "OBERROEDERN", "libell_d_acheminement": "OBERROEDERN", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67349"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b1aa8a96d87ef18b13694dd0d20bf63bd0e712", "fields": {"nom_de_la_commune": "TONNOY", "libell_d_acheminement": "TONNOY", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54527"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c59922e5f2f908cdb2e51424ca468b11fe3b8f4", "fields": {"nom_de_la_commune": "VAL ET CHATILLON", "libell_d_acheminement": "VAL ET CHATILLON", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54540"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d61ed995fabdd390b1d88afec565b3d07111cbd", "fields": {"nom_de_la_commune": "VALHEY", "libell_d_acheminement": "VALHEY", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54541"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3d01dcd0eab72ecc2727084826dd244619c3881", "fields": {"nom_de_la_commune": "VANDELAINVILLE", "libell_d_acheminement": "VANDELAINVILLE", "code_postal": "54890", "coordonnees_gps": [49.0257742751, 5.94673598373], "code_commune_insee": "54544"}, "geometry": {"type": "Point", "coordinates": [5.94673598373, 49.0257742751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46777c4041d0d5dee1589ede93b923ecbd6468b2", "fields": {"nom_de_la_commune": "VANDOEUVRE LES NANCY", "libell_d_acheminement": "VANDOEUVRE LES NANCY", "code_postal": "54500", "coordonnees_gps": [48.6573420169, 6.1645510789], "code_commune_insee": "54547"}, "geometry": {"type": "Point", "coordinates": [6.1645510789, 48.6573420169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030b351ac53966d253517757666bcda4ff51b2a7", "fields": {"nom_de_la_commune": "VARANGEVILLE", "libell_d_acheminement": "VARANGEVILLE", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54549"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e1a0ebc6ad4a5f3600a7b85d8221852f3766fa", "fields": {"nom_de_la_commune": "VEHO", "libell_d_acheminement": "VEHO", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54556"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb19934eaa9b749671b0ee58d220da8170802457", "fields": {"nom_de_la_commune": "VELAINE EN HAYE", "libell_d_acheminement": "VELAINE EN HAYE", "code_postal": "54840", "coordonnees_gps": [48.6916643372, 6.00665545464], "code_commune_insee": "54557"}, "geometry": {"type": "Point", "coordinates": [6.00665545464, 48.6916643372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "894179a2499076a8f9ca74279e9180d93e101825", "fields": {"nom_de_la_commune": "VEZELISE", "libell_d_acheminement": "VEZELISE", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54563"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9875c11f4ba976d5e0deb4b848763aacbfdbaa26", "fields": {"nom_de_la_commune": "VIEVILLE EN HAYE", "libell_d_acheminement": "VIEVILLE EN HAYE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54564"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d81b51a73c214cedeb9ab8677cfdedb82a231271", "fields": {"nom_de_la_commune": "VILLE HOUDLEMONT", "libell_d_acheminement": "VILLE HOUDLEMONT", "code_postal": "54730", "coordonnees_gps": [49.5332181757, 5.65682394495], "code_commune_insee": "54572"}, "geometry": {"type": "Point", "coordinates": [5.65682394495, 49.5332181757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8120fcc041705c9812b555f9f28a6e7bb9f2101", "fields": {"nom_de_la_commune": "VILLERS LE ROND", "libell_d_acheminement": "VILLERS LE ROND", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54576"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9355af26defc407d2e0ff22daa47141a73104d99", "fields": {"nom_de_la_commune": "VILLERS LES NANCY", "libell_d_acheminement": "VILLERS LES NANCY", "code_postal": "54600", "coordonnees_gps": [48.6615703234, 6.12916043091], "code_commune_insee": "54578"}, "geometry": {"type": "Point", "coordinates": [6.12916043091, 48.6615703234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0623038088ad794e78ab004e4de3c3f3b70f342d", "fields": {"nom_de_la_commune": "VILLETTE", "libell_d_acheminement": "VILLETTE", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54582"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fd2ffe9e3157b4072d36c1719a34b7ec4f0c6f6", "fields": {"nom_de_la_commune": "VITREY", "libell_d_acheminement": "VITREY", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54587"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63210f2d216d08a9abe3799d5da1ba57cabe585", "fields": {"nom_de_la_commune": "VIVIERS SUR CHIERS", "libell_d_acheminement": "VIVIERS SUR CHIERS", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54590"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d267e45c640855c1c91112313dc430d51350318", "fields": {"nom_de_la_commune": "WAVILLE", "libell_d_acheminement": "WAVILLE", "code_postal": "54890", "coordonnees_gps": [49.0257742751, 5.94673598373], "code_commune_insee": "54593"}, "geometry": {"type": "Point", "coordinates": [5.94673598373, 49.0257742751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bdc8f5b2519404c6c24a459879796db1df8fbbe", "fields": {"nom_de_la_commune": "XEUILLEY", "libell_d_acheminement": "XEUILLEY", "code_postal": "54990", "coordonnees_gps": [48.5622198155, 6.09068461127], "code_commune_insee": "54596"}, "geometry": {"type": "Point", "coordinates": [6.09068461127, 48.5622198155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c7797d97d2377f919bded02b364fb21ceb36196", "fields": {"nom_de_la_commune": "XIVRY CIRCOURT", "libell_d_acheminement": "XIVRY CIRCOURT", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54598"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab7d1491af67077b9eaf99a1a2b9797fc27c9ce5", "fields": {"nom_de_la_commune": "XONVILLE", "libell_d_acheminement": "XONVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54599"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658f750ff675c50f538ca49dabdcafcce204450b", "fields": {"code_postal": "55400", "code_commune_insee": "55002", "libell_d_acheminement": "ABAUCOURT HAUTECOURT", "ligne_5": "HAUTECOURT LES BROVILLE", "nom_de_la_commune": "ABAUCOURT HAUTECOURT", "coordonnees_gps": [49.1964122747, 5.59749948123]}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad882593710a6825ef916c04dfcd93dc364b0fb1", "fields": {"nom_de_la_commune": "AMANTY", "libell_d_acheminement": "AMANTY", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55005"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4bfaa438e5e4f31e60583b8779f8baef029ea56", "fields": {"nom_de_la_commune": "ANCEMONT", "libell_d_acheminement": "ANCEMONT", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55009"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c35949d2e3f25593897d75be86938a6f3abd967", "fields": {"nom_de_la_commune": "ANDERNAY", "libell_d_acheminement": "ANDERNAY", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55011"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb747a79fbdc6569ac78b41b0e03edf8d19e0fcc", "fields": {"nom_de_la_commune": "AUTRECOURT SUR AIRE", "libell_d_acheminement": "AUTRECOURT SUR AIRE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55017"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954b512310a7a4bde09672ad6f3544e4e262a76d", "fields": {"nom_de_la_commune": "BADONVILLIERS GERAUVILLIERS", "libell_d_acheminement": "BADONVILLIERS GERAUVILLIERS", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55026"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee2380a0750ad87243b20b1a0afc7e2442697a2", "fields": {"code_postal": "55130", "code_commune_insee": "55026", "libell_d_acheminement": "BADONVILLIERS GERAUVILLIERS", "ligne_5": "GERAUVILLIERS", "nom_de_la_commune": "BADONVILLIERS GERAUVILLIERS", "coordonnees_gps": [48.5182994069, 5.49758126805]}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba8a70cd92143bb065f57aa1d27d408e0dbe7dd1", "fields": {"code_postal": "55250", "code_commune_insee": "55040", "libell_d_acheminement": "BEAUSITE", "ligne_5": "AMBLAINCOURT", "nom_de_la_commune": "BEAUSITE", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e497bc40ae1173edba6247c03956514b6573a585", "fields": {"code_postal": "55250", "code_commune_insee": "55040", "libell_d_acheminement": "BEAUSITE", "ligne_5": "SERAUCOURT", "nom_de_la_commune": "BEAUSITE", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a78f9da54f4710ad38b10d97cd00cf0f1435482", "fields": {"nom_de_la_commune": "BELRAIN", "libell_d_acheminement": "BELRAIN", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55044"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6653b43a8ea32f106f282fdeddf7c35aeb756fa", "fields": {"nom_de_la_commune": "BETHINCOURT", "libell_d_acheminement": "BETHINCOURT", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55048"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd51b9df9b1432e91a1a5ab550defb508c8656d8", "fields": {"nom_de_la_commune": "BOUREUILLES", "libell_d_acheminement": "BOUREUILLES", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55065"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed35e68d7fea04a7588ee7d7d0d6cb4c536f095", "fields": {"nom_de_la_commune": "BOVEE SUR BARBOURE", "libell_d_acheminement": "BOVEE SUR BARBOURE", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55066"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd0cbfd2577e07aed078c6e541b2709e1476d05", "fields": {"nom_de_la_commune": "BRAS SUR MEUSE", "libell_d_acheminement": "BRAS SUR MEUSE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55073"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c2d909f46689fcc3352cbe86c53141f4028ad5", "fields": {"nom_de_la_commune": "BREUX", "libell_d_acheminement": "BREUX", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55077"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f9c90c1b50559ee25aac205c6f78a1dfa7af50", "fields": {"nom_de_la_commune": "BRIZEAUX", "libell_d_acheminement": "BRIZEAUX", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55081"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c82610b3403b486bfbd42b19cf6ec1229fc13e", "fields": {"nom_de_la_commune": "BUZY DARMONT", "libell_d_acheminement": "BUZY DARMONT", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55094"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d4b821d1e24454efeb0177bbabed8994528b574", "fields": {"nom_de_la_commune": "CHAMPOUGNY", "libell_d_acheminement": "CHAMPOUGNY", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55100"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b0c69ea94d0b837114b5ee6fa47968ce3c1ca21", "fields": {"nom_de_la_commune": "CHATTANCOURT", "libell_d_acheminement": "CHATTANCOURT", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55106"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42bbb7567c312c7df1e50d878273d8775f9ca648", "fields": {"code_postal": "55000", "code_commune_insee": "55123", "libell_d_acheminement": "LES HAUTS DE CHEE", "ligne_5": "GENICOURT SOUS CONDE", "nom_de_la_commune": "LES HAUTS DE CHEE", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddbd07e1674cb3d265e1969104752db52de9a25e", "fields": {"code_postal": "55000", "code_commune_insee": "55123", "libell_d_acheminement": "LES HAUTS DE CHEE", "ligne_5": "LES MARATS", "nom_de_la_commune": "LES HAUTS DE CHEE", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b817ae42340b77c4013992caae5c572ffed6ef94", "fields": {"nom_de_la_commune": "CONTRISSON", "libell_d_acheminement": "CONTRISSON", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55125"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2401b38029e24c75eec4c5def8f69816804f17a1", "fields": {"nom_de_la_commune": "COURCELLES EN BARROIS", "libell_d_acheminement": "COURCELLES EN BARROIS", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55127"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a07ac582ea0dc507dcc8e3c497658ef53e5682d1", "fields": {"nom_de_la_commune": "ST SIGISMOND", "libell_d_acheminement": "ST SIGISMOND", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85269"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fb395036d4942beb69dc9b46676eb5e95fb659d", "fields": {"nom_de_la_commune": "ST SULPICE EN PAREDS", "libell_d_acheminement": "ST SULPICE EN PAREDS", "code_postal": "85410", "coordonnees_gps": [46.5977381891, -0.875564546454], "code_commune_insee": "85271"}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90ee0dc0b7d632bf63264d908a56812212190550", "fields": {"nom_de_la_commune": "SIGOURNAIS", "libell_d_acheminement": "SIGOURNAIS", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85282"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7175cf9b45d5715cf0960e18da86a352bdd8df66", "fields": {"nom_de_la_commune": "VOUILLE LES MARAIS", "libell_d_acheminement": "VOUILLE LES MARAIS", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85304"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b997fa0d0ac1ec8af6f23be88d2859b25c17156b", "fields": {"nom_de_la_commune": "XANTON CHASSENON", "libell_d_acheminement": "XANTON CHASSENON", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85306"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8922dd8af7442b50205cfebb84d17a56d64e5b4", "fields": {"nom_de_la_commune": "ADRIERS", "libell_d_acheminement": "ADRIERS", "code_postal": "86430", "coordonnees_gps": [46.2180968835, 0.782184483066], "code_commune_insee": "86001"}, "geometry": {"type": "Point", "coordinates": [0.782184483066, 46.2180968835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57f5db7812876f833056e0d531c4bb04bdb259a", "fields": {"nom_de_la_commune": "ANTIGNY", "libell_d_acheminement": "ANTIGNY", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86006"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "924636ddccf615bbb28d5ce09e232002cee442fb", "fields": {"nom_de_la_commune": "AVANTON", "libell_d_acheminement": "AVANTON", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86016"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ff545e6811396ecbaff6a51947d89d4744baf7", "fields": {"nom_de_la_commune": "BASSES", "libell_d_acheminement": "BASSES", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86018"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d290f9f11f63d7649bcd90c7ca86198508ed28de", "fields": {"code_postal": "86490", "code_commune_insee": "86019", "libell_d_acheminement": "BEAUMONT", "ligne_5": "LA TRICHERIE", "nom_de_la_commune": "BEAUMONT", "coordonnees_gps": [46.761526271, 0.437525425166]}, "geometry": {"type": "Point", "coordinates": [0.437525425166, 46.761526271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8889525f42473093330b9fdd583e25a90dd6b4ca", "fields": {"nom_de_la_commune": "BONNEUIL MATOURS", "libell_d_acheminement": "BONNEUIL MATOURS", "code_postal": "86210", "coordonnees_gps": [46.684748794, 0.605467438883], "code_commune_insee": "86032"}, "geometry": {"type": "Point", "coordinates": [0.605467438883, 46.684748794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336580c14eda0c5f5e0bfe85324f3d4b0991c700", "fields": {"nom_de_la_commune": "BRIGUEIL LE CHANTRE", "libell_d_acheminement": "BRIGUEIL LE CHANTRE", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86037"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24040f32b68eabeed8579926d08ac2dbefea8d06", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86038"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dd510d70b7e73819e568687b749afae0ae28b32", "fields": {"nom_de_la_commune": "BRUX", "libell_d_acheminement": "BRUX", "code_postal": "86510", "coordonnees_gps": [46.2231732444, 0.176181727921], "code_commune_insee": "86039"}, "geometry": {"type": "Point", "coordinates": [0.176181727921, 46.2231732444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d159dc099bc9fb15e834f2595f28e8dee86f25", "fields": {"nom_de_la_commune": "CEAUX EN LOUDUN", "libell_d_acheminement": "CEAUX EN LOUDUN", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86044"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9d9908ef7bc0d01dccde83911cdeb8deda8bdeb", "fields": {"nom_de_la_commune": "CHAMPAGNE LE SEC", "libell_d_acheminement": "CHAMPAGNE LE SEC", "code_postal": "86510", "coordonnees_gps": [46.2231732444, 0.176181727921], "code_commune_insee": "86051"}, "geometry": {"type": "Point", "coordinates": [0.176181727921, 46.2231732444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba5040c8f6cd01268c68a6683949213b552eb371", "fields": {"nom_de_la_commune": "CHAMPIGNY LE SEC", "libell_d_acheminement": "CHAMPIGNY LE SEC", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86053"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e787482162a79a98d999b87bd48976b02867b854", "fields": {"nom_de_la_commune": "CHARROUX", "libell_d_acheminement": "CHARROUX", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86061"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de1e92ed30b1118761368193f72973f0e981d94", "fields": {"nom_de_la_commune": "CHASSENEUIL DU POITOU", "libell_d_acheminement": "CHASSENEUIL DU POITOU", "code_postal": "86360", "coordonnees_gps": [46.6367339899, 0.408829313418], "code_commune_insee": "86062"}, "geometry": {"type": "Point", "coordinates": [0.408829313418, 46.6367339899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51d80f75f48452b9babe3d7722fe305e187244ae", "fields": {"nom_de_la_commune": "CHATELLERAULT", "libell_d_acheminement": "CHATELLERAULT", "code_postal": "86100", "coordonnees_gps": [46.825162468, 0.575853305257], "code_commune_insee": "86066"}, "geometry": {"type": "Point", "coordinates": [0.575853305257, 46.825162468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1b8c8ed4e9d915408409455201f30b5b06e0b10", "fields": {"code_postal": "86300", "code_commune_insee": "86070", "libell_d_acheminement": "CHAUVIGNY", "ligne_5": "POUZIOUX", "nom_de_la_commune": "CHAUVIGNY", "coordonnees_gps": [46.547665049, 0.687527272819]}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "359f7d704e0e557c2c9586d16222929270699221", "fields": {"nom_de_la_commune": "CHERVES", "libell_d_acheminement": "CHERVES", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86073"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c8252668102a9f054d3980d89b79dc63f4a55a3", "fields": {"code_postal": "86200", "code_commune_insee": "86079", "libell_d_acheminement": "LA ROCHE RIGAULT", "ligne_5": "CLAUNAY EN LOUDUN", "nom_de_la_commune": "LA ROCHE RIGAULT", "coordonnees_gps": [46.998807994, 0.139457341652]}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce48dcab4a788fa5a26c3d5e90e8b051ab53cfd", "fields": {"nom_de_la_commune": "COULOMBIERS", "libell_d_acheminement": "COULOMBIERS", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86083"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d0abfef4ceed7d0643d91f882f4c609d73795b8", "fields": {"nom_de_la_commune": "COULONGES", "libell_d_acheminement": "COULONGES", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86084"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345c8309d7fd0ebd845daa5e2ebe04c47f4072f0", "fields": {"nom_de_la_commune": "DERCE", "libell_d_acheminement": "DERCE", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86093"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a5135181e60906960c9e4bb080779ae961f26d", "fields": {"nom_de_la_commune": "GLENOUZE", "libell_d_acheminement": "GLENOUZE", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86106"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e5959b7afa46a2af18cccfbf2baac3765832a46", "fields": {"nom_de_la_commune": "INGRANDES", "libell_d_acheminement": "INGRANDES", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86111"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360803cf5a2e8766e7f0815447775b70872b0365", "fields": {"nom_de_la_commune": "JOUHET", "libell_d_acheminement": "JOUHET", "code_postal": "86500", "coordonnees_gps": [46.4016637433, 0.859768107385], "code_commune_insee": "86117"}, "geometry": {"type": "Point", "coordinates": [0.859768107385, 46.4016637433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce16e26681c3cc7ab6aa12db4951be61f8741654", "fields": {"nom_de_la_commune": "LATILLE", "libell_d_acheminement": "LATILLE", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86121"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae214eb97e270ccd8838c458a784f9d6dfe6d219", "fields": {"nom_de_la_commune": "LAVOUX", "libell_d_acheminement": "LAVOUX", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86124"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d197ce443fa27b57c6bb2adad110c1ceae14182e", "fields": {"nom_de_la_commune": "LENCLOITRE", "libell_d_acheminement": "LENCLOITRE", "code_postal": "86140", "coordonnees_gps": [46.8283265591, 0.330477268884], "code_commune_insee": "86128"}, "geometry": {"type": "Point", "coordinates": [0.330477268884, 46.8283265591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4126b5b08747f07fb8317811e9f3c101556c5357", "fields": {"nom_de_la_commune": "LIGUGE", "libell_d_acheminement": "LIGUGE", "code_postal": "86240", "coordonnees_gps": [46.5120250661, 0.298942746534], "code_commune_insee": "86133"}, "geometry": {"type": "Point", "coordinates": [0.298942746534, 46.5120250661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "525e841d979910d0bed909da9247ef329e7b0d2f", "fields": {"nom_de_la_commune": "LOUDUN", "libell_d_acheminement": "LOUDUN", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86137"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf6a311538712a794fa34ae7f23959dc0b4207a", "fields": {"code_postal": "86200", "code_commune_insee": "86137", "libell_d_acheminement": "LOUDUN", "ligne_5": "ROSSAY", "nom_de_la_commune": "LOUDUN", "coordonnees_gps": [46.998807994, 0.139457341652]}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7731eb520e6762a5e51a2717b0a2a9a37860cb6f", "fields": {"nom_de_la_commune": "MARIGNY BRIZAY", "libell_d_acheminement": "MARIGNY BRIZAY", "code_postal": "86380", "coordonnees_gps": [46.7375179238, 0.3291987023], "code_commune_insee": "86146"}, "geometry": {"type": "Point", "coordinates": [0.3291987023, 46.7375179238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7938dac880730b5fc090b091af539f2a03c3046b", "fields": {"nom_de_la_commune": "MAUPREVOIR", "libell_d_acheminement": "MAUPREVOIR", "code_postal": "86460", "coordonnees_gps": [46.1382827455, 0.581140891207], "code_commune_insee": "86152"}, "geometry": {"type": "Point", "coordinates": [0.581140891207, 46.1382827455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b50bb4ba22dfe6dde5f4e931d97c850f181d164", "fields": {"nom_de_la_commune": "MIREBEAU", "libell_d_acheminement": "MIREBEAU", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86160"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3941c859b513c97d2939226fc70ded4fe3d42c82", "fields": {"nom_de_la_commune": "MONCONTOUR", "libell_d_acheminement": "MONCONTOUR", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86161"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3060d36fee1b89e1e36913784573cbd6e443b0d", "fields": {"nom_de_la_commune": "MONTAMISE", "libell_d_acheminement": "MONTAMISE", "code_postal": "86360", "coordonnees_gps": [46.6367339899, 0.408829313418], "code_commune_insee": "86163"}, "geometry": {"type": "Point", "coordinates": [0.408829313418, 46.6367339899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac2662d0c1cb625e97ae26563db1e308465faa35", "fields": {"nom_de_la_commune": "MONTS SUR GUESNES", "libell_d_acheminement": "MONTS SUR GUESNES", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86167"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c4d2e27fe7329d2ee6aa78209e68c1f9564e10", "fields": {"nom_de_la_commune": "NIEUIL L ESPOIR", "libell_d_acheminement": "NIEUIL L ESPOIR", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86178"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e1b8fe860063e0e6b959f5eed7db8f73bf29b4", "fields": {"nom_de_la_commune": "NOUAILLE MAUPERTUIS", "libell_d_acheminement": "NOUAILLE MAUPERTUIS", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86180"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5be4304e03c96eb4bb455664220457ab6a1cb44", "fields": {"nom_de_la_commune": "LES ORMES", "libell_d_acheminement": "LES ORMES", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86183"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06b9eebb7a74df2ac731aa0724f7cdbaa3b92278", "fields": {"nom_de_la_commune": "PLEUMARTIN", "libell_d_acheminement": "PLEUMARTIN", "code_postal": "86450", "coordonnees_gps": [46.7433398222, 0.710148242539], "code_commune_insee": "86193"}, "geometry": {"type": "Point", "coordinates": [0.710148242539, 46.7433398222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40e6272374bbe4ffb86c39e0fdfa7eeab431689", "fields": {"nom_de_la_commune": "POUANCAY", "libell_d_acheminement": "POUANCAY", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86196"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9211486f09fc4d031f8af6ca6b8fbbe3625b80a6", "fields": {"nom_de_la_commune": "QUINCAY", "libell_d_acheminement": "QUINCAY", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86204"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02201bbfa1328602a6c787ffa9ed537eb5a18ad1", "fields": {"nom_de_la_commune": "RASLAY", "libell_d_acheminement": "RASLAY", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86206"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c68381d6f3ac70cb438611e57a639d76db70e6a", "fields": {"nom_de_la_commune": "ROUILLE", "libell_d_acheminement": "ROUILLE", "code_postal": "86480", "coordonnees_gps": [46.4203962354, 0.0263809044711], "code_commune_insee": "86213"}, "geometry": {"type": "Point", "coordinates": [0.0263809044711, 46.4203962354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b29e13d735aef43aaa7dd01990296ef324c9a4d1", "fields": {"nom_de_la_commune": "ST GERMAIN", "libell_d_acheminement": "ST GERMAIN", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86223"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bcc73242a07485a8a86496e8d51a6e7188ff8ea", "fields": {"code_postal": "86330", "code_commune_insee": "86225", "libell_d_acheminement": "ST JEAN DE SAUVES", "ligne_5": "FRONTENAY SUR DIVE", "nom_de_la_commune": "ST JEAN DE SAUVES", "coordonnees_gps": [46.8727701949, 0.0622118082158]}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c1b0aedac764969a57baa86a02449d3aa7a9ab5", "fields": {"nom_de_la_commune": "ST LEOMER", "libell_d_acheminement": "ST LEOMER", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86230"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cdde01d11c161eab0224c4651d58f80f54fed62", "fields": {"code_postal": "86300", "code_commune_insee": "86233", "libell_d_acheminement": "VALDIVIENNE", "ligne_5": "CHAPELLE MORTHEMER", "nom_de_la_commune": "VALDIVIENNE", "coordonnees_gps": [46.547665049, 0.687527272819]}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df85921137360dc527fde4c51fbdfc34da90e938", "fields": {"nom_de_la_commune": "ST SAVIOL", "libell_d_acheminement": "ST SAVIOL", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86247"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fef9a20576089316a5ef12eb7b4477c849c6424", "fields": {"nom_de_la_commune": "ST SECONDIN", "libell_d_acheminement": "ST SECONDIN", "code_postal": "86350", "coordonnees_gps": [46.260748514, 0.50964665142], "code_commune_insee": "86248"}, "geometry": {"type": "Point", "coordinates": [0.50964665142, 46.260748514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6ebbe369ad497dd00e905b5e7429808a970efe", "fields": {"nom_de_la_commune": "SAULGE", "libell_d_acheminement": "SAULGE", "code_postal": "86500", "coordonnees_gps": [46.4016637433, 0.859768107385], "code_commune_insee": "86254"}, "geometry": {"type": "Point", "coordinates": [0.859768107385, 46.4016637433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a8af5f78a6ad95066a08bf5b077781415e14aa", "fields": {"nom_de_la_commune": "SAVIGNE", "libell_d_acheminement": "SAVIGNE", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86255"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d16763ccb4d655b4c33b220da9fee6c4573b27d", "fields": {"nom_de_la_commune": "SEVRES ANXAUMONT", "libell_d_acheminement": "SEVRES ANXAUMONT", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86261"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8802431287a2d733ad86191a1e10b59584e49eca", "fields": {"nom_de_la_commune": "SOMMIERES DU CLAIN", "libell_d_acheminement": "SOMMIERES DU CLAIN", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86264"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6452ba5aaa47c0fd6b828eeacc18cc223ccb455a", "fields": {"nom_de_la_commune": "THURAGEAU", "libell_d_acheminement": "THURAGEAU", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86271"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40cb12c11b7cc01c9cdf47c247e79620fa88d81b", "fields": {"nom_de_la_commune": "THURE", "libell_d_acheminement": "THURE", "code_postal": "86540", "coordonnees_gps": [46.8415237067, 0.455471639498], "code_commune_insee": "86272"}, "geometry": {"type": "Point", "coordinates": [0.455471639498, 46.8415237067]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dc4888866431486932adb7e096f67770e2742e4", "fields": {"nom_de_la_commune": "LES TROIS MOUTIERS", "libell_d_acheminement": "LES TROIS MOUTIERS", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86274"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f26fde69e4eb9ac290fc5c93e74100f998c8853", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86277"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b4db64a9700d28a3549380214222d9ac5d09ff6", "fields": {"nom_de_la_commune": "VENDEUVRE DU POITOU", "libell_d_acheminement": "VENDEUVRE DU POITOU", "code_postal": "86380", "coordonnees_gps": [46.7375179238, 0.3291987023], "code_commune_insee": "86281"}, "geometry": {"type": "Point", "coordinates": [0.3291987023, 46.7375179238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f41b54d0e46dc08657e4e5b2aeccd0e8eca57af0", "fields": {"nom_de_la_commune": "VERNON", "libell_d_acheminement": "VERNON", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86284"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19e7ce8e41e0777fbc0e655e90c76a2a87ce81ce", "fields": {"nom_de_la_commune": "VICQ SUR GARTEMPE", "libell_d_acheminement": "VICQ SUR GARTEMPE", "code_postal": "86260", "coordonnees_gps": [46.6858016329, 0.823387045612], "code_commune_insee": "86288"}, "geometry": {"type": "Point", "coordinates": [0.823387045612, 46.6858016329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df501b2a516bdeb510688c2818be51b4b2790726", "fields": {"nom_de_la_commune": "AUREIL", "libell_d_acheminement": "AUREIL", "code_postal": "87220", "coordonnees_gps": [45.7856210567, 1.35360552581], "code_commune_insee": "87005"}, "geometry": {"type": "Point", "coordinates": [1.35360552581, 45.7856210567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "472970e5af0d22bc6a7118d58447a7c6a54cf370", "fields": {"nom_de_la_commune": "BALLEDENT", "libell_d_acheminement": "BALLEDENT", "code_postal": "87290", "coordonnees_gps": [46.1497841077, 1.2728577587], "code_commune_insee": "87007"}, "geometry": {"type": "Point", "coordinates": [1.2728577587, 46.1497841077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eb2705ca8c4cc76c15a63438684dc38b0bd6344", "fields": {"nom_de_la_commune": "LA BAZEUGE", "libell_d_acheminement": "LA BAZEUGE", "code_postal": "87210", "coordonnees_gps": [46.2183955334, 1.04069984873], "code_commune_insee": "87008"}, "geometry": {"type": "Point", "coordinates": [1.04069984873, 46.2183955334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc83ded96d712bd07a72a0a50fba6bf31dfd7bc", "fields": {"code_postal": "87250", "code_commune_insee": "87014", "libell_d_acheminement": "BESSINES SUR GARTEMPE", "ligne_5": "MORTEROLLES SUR SEMME", "nom_de_la_commune": "BESSINES SUR GARTEMPE", "coordonnees_gps": [46.1128095458, 1.3801487434]}, "geometry": {"type": "Point", "coordinates": [1.3801487434, 46.1128095458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6c1567c1c6e88a61c5132ce8ba3694a67a36a23", "fields": {"nom_de_la_commune": "BLOND", "libell_d_acheminement": "BLOND", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87018"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "424703cbe82aeb28f13bb503ed571e9a488d5ea1", "fields": {"nom_de_la_commune": "BOISSEUIL", "libell_d_acheminement": "BOISSEUIL", "code_postal": "87220", "coordonnees_gps": [45.7856210567, 1.35360552581], "code_commune_insee": "87019"}, "geometry": {"type": "Point", "coordinates": [1.35360552581, 45.7856210567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07eee09ec1bec907e200b8c1163ea9e2a6b5ee00", "fields": {"nom_de_la_commune": "BONNAC LA COTE", "libell_d_acheminement": "BONNAC LA COTE", "code_postal": "87270", "coordonnees_gps": [45.913437896, 1.25203520749], "code_commune_insee": "87020"}, "geometry": {"type": "Point", "coordinates": [1.25203520749, 45.913437896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b65adb0c2f2258b9c8d080c5a4a1e853cf5ff1", "fields": {"nom_de_la_commune": "BREUILAUFA", "libell_d_acheminement": "BREUILAUFA", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87022"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b08cdca500594bd111f616d1ab0217c2ab10a5", "fields": {"nom_de_la_commune": "CIEUX", "libell_d_acheminement": "CIEUX", "code_postal": "87520", "coordonnees_gps": [45.945423937, 1.03102505904], "code_commune_insee": "87045"}, "geometry": {"type": "Point", "coordinates": [1.03102505904, 45.945423937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "815ab1be6cf5a57db524e33b33ebe9a52e6ba5d8", "fields": {"nom_de_la_commune": "DROUX", "libell_d_acheminement": "DROUX", "code_postal": "87190", "coordonnees_gps": [46.235451221, 1.21744505876], "code_commune_insee": "87061"}, "geometry": {"type": "Point", "coordinates": [1.21744505876, 46.235451221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "638b6f3dbc70455f2ef5675a239090d9bc197887", "fields": {"nom_de_la_commune": "EYMOUTIERS", "libell_d_acheminement": "EYMOUTIERS", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87064"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f947a03520f1e3b5e00457eeca2a8e57774ff9", "fields": {"nom_de_la_commune": "JABREILLES LES BORDES", "libell_d_acheminement": "JABREILLES LES BORDES", "code_postal": "87370", "coordonnees_gps": [46.0621632693, 1.46879838783], "code_commune_insee": "87076"}, "geometry": {"type": "Point", "coordinates": [1.46879838783, 46.0621632693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5f9ca845d068fddefdd82bca3432342408ae6e", "fields": {"nom_de_la_commune": "LA JONCHERE ST MAURICE", "libell_d_acheminement": "LA JONCHERE ST MAURICE", "code_postal": "87340", "coordonnees_gps": [46.0084101721, 1.47236687338], "code_commune_insee": "87079"}, "geometry": {"type": "Point", "coordinates": [1.47236687338, 46.0084101721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c775ec6a629d60f9f0fc3ad8dc0eea9aad41f592", "fields": {"nom_de_la_commune": "JOUAC", "libell_d_acheminement": "JOUAC", "code_postal": "87890", "coordonnees_gps": [46.3495528482, 1.25909081632], "code_commune_insee": "87080"}, "geometry": {"type": "Point", "coordinates": [1.25909081632, 46.3495528482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7349931cd95623f366b98f775157e8db1ae08c4a", "fields": {"nom_de_la_commune": "LAVIGNAC", "libell_d_acheminement": "LAVIGNAC", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87084"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e056f3a1437df341c7962e6372a4f30d4b273095", "fields": {"code_postal": "87100", "code_commune_insee": "87085", "libell_d_acheminement": "LIMOGES", "ligne_5": "LANDOUGE", "nom_de_la_commune": "LIMOGES", "coordonnees_gps": [45.8544056025, 1.24905166141]}, "geometry": {"type": "Point", "coordinates": [1.24905166141, 45.8544056025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e763248d22542c80cccec1a00fd3be5a8a93d771", "fields": {"nom_de_la_commune": "LINARDS", "libell_d_acheminement": "LINARDS", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87086"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24c97b108e99ff841d634cb091a1012f01594109", "fields": {"nom_de_la_commune": "MAGNAC BOURG", "libell_d_acheminement": "MAGNAC BOURG", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87088"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f609196e9ef5b5239d8a3c44ca5911c03102ff84", "fields": {"code_postal": "87440", "code_commune_insee": "87092", "libell_d_acheminement": "MARVAL", "ligne_5": "MILHAGUET", "nom_de_la_commune": "MARVAL", "coordonnees_gps": [45.6750304013, 0.76861145842]}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2b7820dc60ca29954c9735c323e5420c80a26ac", "fields": {"code_postal": "87330", "code_commune_insee": "87097", "libell_d_acheminement": "VAL D ISSOIRE", "ligne_5": "MEZIERES SUR ISSOIRE", "nom_de_la_commune": "VAL D ISSOIRE", "coordonnees_gps": [46.112617356, 0.896746440713]}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "407d183bb89135381b04b2bdef2701d6b25c56a1", "fields": {"nom_de_la_commune": "ORADOUR SUR GLANE", "libell_d_acheminement": "ORADOUR SUR GLANE", "code_postal": "87520", "coordonnees_gps": [45.945423937, 1.03102505904], "code_commune_insee": "87110"}, "geometry": {"type": "Point", "coordinates": [1.03102505904, 45.945423937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d631f0a60fb1a10d883399154648202017dc995", "fields": {"nom_de_la_commune": "PIERRE BUFFIERE", "libell_d_acheminement": "PIERRE BUFFIERE", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87119"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73d45bd54908228383e6113b0eeafc612af7028c", "fields": {"nom_de_la_commune": "LA PORCHERIE", "libell_d_acheminement": "LA PORCHERIE", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87120"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beb09ad5382e8a1b74c79ad730067439097825b6", "fields": {"nom_de_la_commune": "REMPNAT", "libell_d_acheminement": "REMPNAT", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87123"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d4dc6bedc0c577ad7277994f70a05c89981428d", "fields": {"nom_de_la_commune": "ROCHECHOUART", "libell_d_acheminement": "ROCHECHOUART", "code_postal": "87600", "coordonnees_gps": [45.7931752464, 0.809506668159], "code_commune_insee": "87126"}, "geometry": {"type": "Point", "coordinates": [0.809506668159, 45.7931752464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f0d2d03eaebe8a891594e0ea0c2a3ed4404b813", "fields": {"nom_de_la_commune": "ROZIERS ST GEORGES", "libell_d_acheminement": "ROZIERS ST GEORGES", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87130"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9332adde60951ab815afec684f89eec07c550fec", "fields": {"nom_de_la_commune": "STE ANNE ST PRIEST", "libell_d_acheminement": "STE ANNE ST PRIEST", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87134"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6250a5f4bcbe5868882c8f4b6c9bc9c40bfe4be3", "fields": {"nom_de_la_commune": "ST BONNET DE BELLAC", "libell_d_acheminement": "ST BONNET DE BELLAC", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87139"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bcf62ec20c0499a6506f88ea154f931d44ba665", "fields": {"nom_de_la_commune": "ST DENIS DES MURS", "libell_d_acheminement": "ST DENIS DES MURS", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87142"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b332892c6bf99f17bfbcb55f5fb49b8011260e40", "fields": {"nom_de_la_commune": "ST GEORGES LES LANDES", "libell_d_acheminement": "ST GEORGES LES LANDES", "code_postal": "87160", "coordonnees_gps": [46.3147995575, 1.35815432469], "code_commune_insee": "87145"}, "geometry": {"type": "Point", "coordinates": [1.35815432469, 46.3147995575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48c58b1f9a3ee0126daee048cd471d6ed555e72b", "fields": {"nom_de_la_commune": "ST GERMAIN LES BELLES", "libell_d_acheminement": "ST GERMAIN LES BELLES", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87146"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5916c2d958e18282013553c544f636aefcbb16ac", "fields": {"nom_de_la_commune": "ST JUST LE MARTEL", "libell_d_acheminement": "ST JUST LE MARTEL", "code_postal": "87590", "coordonnees_gps": [45.852350172, 1.38689265685], "code_commune_insee": "87156"}, "geometry": {"type": "Point", "coordinates": [1.38689265685, 45.852350172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "141fc2d442625a264e75e13ba510e6db4c279d29", "fields": {"nom_de_la_commune": "ST MARTIN TERRESSUS", "libell_d_acheminement": "ST MARTIN TERRESSUS", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87167"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f1341732750a3246a3197b0fda6e1f95575f11", "fields": {"nom_de_la_commune": "ST PRIEST LIGOURE", "libell_d_acheminement": "ST PRIEST LIGOURE", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87176"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dde98109082ea4b601dbd8ad5f0ce2cd8a4b9b3a", "fields": {"nom_de_la_commune": "LONDINIERES", "libell_d_acheminement": "LONDINIERES", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76392"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c051e853d026d0ccd6a0d05d6487f41c0cb8f2", "fields": {"nom_de_la_commune": "LONGUEVILLE SUR SCIE", "libell_d_acheminement": "LONGUEVILLE SUR SCIE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76397"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b5f962d112ce21c8aaf4ee7ef0dedc9adc76d3", "fields": {"nom_de_la_commune": "LUNERAY", "libell_d_acheminement": "LUNERAY", "code_postal": "76810", "coordonnees_gps": [49.8183017172, 0.909956349488], "code_commune_insee": "76400"}, "geometry": {"type": "Point", "coordinates": [0.909956349488, 49.8183017172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241163a06376d84fe609955a7e25bd17b4d87cce", "fields": {"nom_de_la_commune": "MARQUES", "libell_d_acheminement": "MARQUES", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76411"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc2e18d23c4b111e51e649f6065a6074f3367de", "fields": {"nom_de_la_commune": "MARTIGNY", "libell_d_acheminement": "MARTIGNY", "code_postal": "76880", "coordonnees_gps": [49.8769596625, 1.14064902475], "code_commune_insee": "76413"}, "geometry": {"type": "Point", "coordinates": [1.14064902475, 49.8769596625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd45cc21b96bb76bf7e74353ebda36345711f4b1", "fields": {"nom_de_la_commune": "MAUCOMBLE", "libell_d_acheminement": "MAUCOMBLE", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76417"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57213e5c5701542280b02730e2d1357f1df0ec4", "fields": {"nom_de_la_commune": "MAULEVRIER STE GERTRUDE", "libell_d_acheminement": "MAULEVRIER STE GERTRUDE", "code_postal": "76490", "coordonnees_gps": [49.5497184764, 0.687731909353], "code_commune_insee": "76418"}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b138260501a41c069731a083ad32b3c40b8f6ad7", "fields": {"nom_de_la_commune": "MAUNY", "libell_d_acheminement": "MAUNY", "code_postal": "76530", "coordonnees_gps": [49.3726997193, 0.948232561629], "code_commune_insee": "76419"}, "geometry": {"type": "Point", "coordinates": [0.948232561629, 49.3726997193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4134c806be972d3cdfeaffe007ad9ad1b2668407", "fields": {"nom_de_la_commune": "MAUQUENCHY", "libell_d_acheminement": "MAUQUENCHY", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76420"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5bae118c8e430a7525dd0edd1671a9d3c684d3", "fields": {"nom_de_la_commune": "MENTHEVILLE", "libell_d_acheminement": "MENTHEVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76425"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956ca217c0d743863e09ee6eb113ce39c34010fc", "fields": {"nom_de_la_commune": "MESNIERES EN BRAY", "libell_d_acheminement": "MESNIERES EN BRAY", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76427"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7eeb25e627454597e97ab9e66043cd2f5b83f1e", "fields": {"nom_de_la_commune": "LE MESNIL DURDENT", "libell_d_acheminement": "LE MESNIL DURDENT", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76428"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6273d1e32ffa165247849df2dd7b6a9db3a5779e", "fields": {"nom_de_la_commune": "LE MESNIL REAUME", "libell_d_acheminement": "LE MESNIL REAUME", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76435"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b37254d5814edccac79e3e913e59ad48784502b8", "fields": {"nom_de_la_commune": "MIRVILLE", "libell_d_acheminement": "MIRVILLE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76439"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1911a3d60eda5be172ccd6567b525eaef2efb7e9", "fields": {"nom_de_la_commune": "MONT CAUVAIRE", "libell_d_acheminement": "MONT CAUVAIRE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76443"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee0436be1fbf253fc563f76e1ff059a23226abd8", "fields": {"nom_de_la_commune": "MONTMAIN", "libell_d_acheminement": "MONTMAIN", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76448"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82995b8caca21acd1fa221d1773978876d9bd45a", "fields": {"nom_de_la_commune": "LA NEUVILLE CHANT D OISEL", "libell_d_acheminement": "LA NEUVILLE CHANT D OISEL", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76464"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3dfa56f506f1edf757bee4e14aea2e5b94de2e2", "fields": {"nom_de_la_commune": "NEVILLE", "libell_d_acheminement": "NEVILLE", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76467"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1075a2db78830d5aaa0036276e9c3e13b9daa6f", "fields": {"nom_de_la_commune": "NOINTOT", "libell_d_acheminement": "NOINTOT", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76468"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbd85f1f8a01e555de5c6b1f118d46f938cea332", "fields": {"nom_de_la_commune": "NOLLEVAL", "libell_d_acheminement": "NOLLEVAL", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76469"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18362eb11ce4d00c72311df1a591ddd1443272e5", "fields": {"code_postal": "76170", "code_commune_insee": "76476", "libell_d_acheminement": "PORT JEROME SUR SEINE", "ligne_5": "AUBERVILLE LA CAMPAGNE", "nom_de_la_commune": "PORT JEROME SUR SEINE", "coordonnees_gps": [49.5137047652, 0.527687035677]}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "269594bc4bd5316ba8b3b20a6316343ac24b5886", "fields": {"nom_de_la_commune": "OUAINVILLE", "libell_d_acheminement": "OUAINVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76488"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "922927e7bbba76ec49bd032d31afa9f2793e44db", "fields": {"nom_de_la_commune": "OUVILLE L ABBAYE", "libell_d_acheminement": "OUVILLE L ABBAYE", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76491"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80c89716b4c817e51ac25a6634b78fd3e8a12cf1", "fields": {"nom_de_la_commune": "PIERREFIQUES", "libell_d_acheminement": "PIERREFIQUES", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76501"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a648e13ba95948163cca18356b1c2410cdcad71", "fields": {"nom_de_la_commune": "PISSY POVILLE", "libell_d_acheminement": "PISSY POVILLE", "code_postal": "76360", "coordonnees_gps": [49.5442328015, 0.945102763311], "code_commune_insee": "76503"}, "geometry": {"type": "Point", "coordinates": [0.945102763311, 49.5442328015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a81f3f818c775418385cdd3bc4d81984bb59cea", "fields": {"nom_de_la_commune": "PONTS ET MARAIS", "libell_d_acheminement": "PONTS ET MARAIS", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76507"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4bfa902316711991c7fb69014e04820a080f746", "fields": {"nom_de_la_commune": "LA POTERIE CAP D ANTIFER", "libell_d_acheminement": "LA POTERIE CAP D ANTIFER", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76508"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07f7ff2f4cf5e08c8a7acc2ddf0ea047b499cfce", "fields": {"nom_de_la_commune": "RICARVILLE", "libell_d_acheminement": "RICARVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76525"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce72d240ced4eb6afbd36b8167e5029030c2518", "fields": {"nom_de_la_commune": "RICHEMONT", "libell_d_acheminement": "RICHEMONT", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76527"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8317cebb3ec8919fe52ac11d971e6e587c07a68", "fields": {"nom_de_la_commune": "ROUVRAY CATILLON", "libell_d_acheminement": "ROUVRAY CATILLON", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76544"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78dde791660e12e786d910a06f50ab3ed8ea6775", "fields": {"nom_de_la_commune": "ROYVILLE", "libell_d_acheminement": "ROYVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76546"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e960a3eb419b196d73dd7963b31b033d3d1586", "fields": {"nom_de_la_commune": "ST ARNOULT", "libell_d_acheminement": "ST ARNOULT", "code_postal": "76490", "coordonnees_gps": [49.5497184764, 0.687731909353], "code_commune_insee": "76557"}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8039dd53a60e7456e1378bc347336082acde2218", "fields": {"nom_de_la_commune": "ST AUBIN DE CRETOT", "libell_d_acheminement": "ST AUBIN DE CRETOT", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76559"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b7c05ef2feacc2c58270a644fed8fe7d36aa999", "fields": {"nom_de_la_commune": "ST CLAIR SUR LES MONTS", "libell_d_acheminement": "ST CLAIR SUR LES MONTS", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76568"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb7e2902dd3f5843729fa2e5714e44266a0abc95", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76569"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aac7003b3d4e4bbb7dd3dc21184cfbf7dafb75e1", "fields": {"nom_de_la_commune": "ST DENIS LE THIBOULT", "libell_d_acheminement": "ST DENIS LE THIBOULT", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76573"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6bc43c41eb396a98704760751fb4dabc3ab5c5e", "fields": {"nom_de_la_commune": "ST ETIENNE DU ROUVRAY", "libell_d_acheminement": "ST ETIENNE DU ROUVRAY", "code_postal": "76800", "coordonnees_gps": [49.3813581985, 1.09010989308], "code_commune_insee": "76575"}, "geometry": {"type": "Point", "coordinates": [1.09010989308, 49.3813581985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896abf3011af378540983b4b52c96571ff170860", "fields": {"nom_de_la_commune": "STE GENEVIEVE", "libell_d_acheminement": "STE GENEVIEVE", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76578"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a9af005a3871890c26fa92875603e601de255d", "fields": {"nom_de_la_commune": "ST GERMAIN DES ESSOURTS", "libell_d_acheminement": "ST GERMAIN DES ESSOURTS", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76581"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "453f04fcc169f0cc99ad588f9ddfc8ffad607645", "fields": {"nom_de_la_commune": "ST JEAN DU CARDONNAY", "libell_d_acheminement": "ST JEAN DU CARDONNAY", "code_postal": "76150", "coordonnees_gps": [49.4875793097, 1.0078796915], "code_commune_insee": "76594"}, "geometry": {"type": "Point", "coordinates": [1.0078796915, 49.4875793097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e008b27fdcf648b355de72f96e94cbedb62e687", "fields": {"nom_de_la_commune": "ST MACLOU LA BRIERE", "libell_d_acheminement": "ST MACLOU LA BRIERE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76603"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c14922923e9cb568223e280ea4cd77781fd1ee", "fields": {"nom_de_la_commune": "MORIENNE", "libell_d_acheminement": "MORIENNE", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76606"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0057f79414ccf09744c7dda04cd8b1d7bd98ef5d", "fields": {"nom_de_la_commune": "ST MARTIN AU BOSC", "libell_d_acheminement": "ST MARTIN AU BOSC", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76612"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc561952e337af3acdc7bedc76389e71014c4738", "fields": {"nom_de_la_commune": "ST MARTIN DU MANOIR", "libell_d_acheminement": "ST MARTIN DU MANOIR", "code_postal": "76290", "coordonnees_gps": [49.5514571259, 0.184758051625], "code_commune_insee": "76616"}, "geometry": {"type": "Point", "coordinates": [0.184758051625, 49.5514571259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5bfc4f3165e72fc63f6c126358fd3aa2028f0a1", "fields": {"nom_de_la_commune": "ST MARTIN DU VIVIER", "libell_d_acheminement": "ST MARTIN DU VIVIER", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76617"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ceba53e57b962aa0d4828c60800774b2ebd0e3", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "AUQUEMESNIL", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b617926d4406d20c0122e044143511f420cc1754", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "INTRAVILLE", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336a5c02b6346d1977eb6cb0d9c6e61790fc4262", "fields": {"nom_de_la_commune": "ST MARTIN OSMONVILLE", "libell_d_acheminement": "ST MARTIN OSMONVILLE", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76621"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ca349f2c62ec97b7b3762bcf3701a76d39d05d", "fields": {"nom_de_la_commune": "ST MAURICE D ETELAN", "libell_d_acheminement": "ST MAURICE D ETELAN", "code_postal": "76330", "coordonnees_gps": [49.4716972983, 0.6014275892], "code_commune_insee": "76622"}, "geometry": {"type": "Point", "coordinates": [0.6014275892, 49.4716972983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66654a6863297c2aaa1a6e2f422206f6da3ddc9c", "fields": {"nom_de_la_commune": "ST OUEN SOUS BAILLY", "libell_d_acheminement": "ST OUEN SOUS BAILLY", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76630"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e5c9814c1c488e75afbbf3bd6e44713d66c252c", "fields": {"nom_de_la_commune": "ST PIERRE DE MANNEVILLE", "libell_d_acheminement": "ST PIERRE DE MANNEVILLE", "code_postal": "76113", "coordonnees_gps": [49.3773922379, 0.947884639946], "code_commune_insee": "76634"}, "geometry": {"type": "Point", "coordinates": [0.947884639946, 49.3773922379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "295c4c4cb15cb1503c5a9679810022c46a9f4d6d", "fields": {"nom_de_la_commune": "ST PIERRE DE VARENGEVILLE", "libell_d_acheminement": "ST PIERRE DE VARENGEVILLE", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76636"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d7c982795227a697866568098ee2dbae5d5ad59", "fields": {"nom_de_la_commune": "ST PIERRE EN PORT", "libell_d_acheminement": "ST PIERRE EN PORT", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76637"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a9ddcfdfde019c65ca8064ca7c0786f7e7ef80d", "fields": {"nom_de_la_commune": "ST PIERRE LAVIS", "libell_d_acheminement": "ST PIERRE LAVIS", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76639"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c5fab672479e9ae55130ba5571f6fa3c8381bb", "fields": {"nom_de_la_commune": "ST REMY BOSCROCOURT", "libell_d_acheminement": "ST REMY BOSCROCOURT", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76644"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a5104c20cd48a0c57c627455148ac103e65e00", "fields": {"nom_de_la_commune": "ST SAENS", "libell_d_acheminement": "ST SAENS", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76648"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8722906b935312de46bbace78b278647a696aa49", "fields": {"nom_de_la_commune": "ST VAAST D EQUIQUEVILLE", "libell_d_acheminement": "ST VAAST D EQUIQUEVILLE", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76652"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a687be6880c7984d85eb6ad4419f8baac51a98ad", "fields": {"nom_de_la_commune": "SASSEVILLE", "libell_d_acheminement": "SASSEVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76664"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d6ede40fd2d0d65b0bbfdccc23fcf38b8b6bd5", "fields": {"nom_de_la_commune": "SEPT MEULES", "libell_d_acheminement": "SEPT MEULES", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76671"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4604ecb1b7056c1771dc5b51030971207a24c1a3", "fields": {"nom_de_la_commune": "SERQUEUX", "libell_d_acheminement": "SERQUEUX", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76672"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f866b15ad30b6b90471f8ea438dfed6256989ed6", "fields": {"nom_de_la_commune": "SERVAVILLE SALMONVILLE", "libell_d_acheminement": "SERVAVILLE SALMONVILLE", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76673"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07bbf7efa305e357b20f25ea084a5cbe498bf2bc", "fields": {"code_postal": "76780", "code_commune_insee": "76676", "libell_d_acheminement": "SIGY EN BRAY", "ligne_5": "ST LUCIEN", "nom_de_la_commune": "SIGY EN BRAY", "coordonnees_gps": [49.5162651662, 1.48144260019]}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d8cc0c761e55033499315ecedd80711aa68a3ad", "fields": {"nom_de_la_commune": "TANCARVILLE", "libell_d_acheminement": "TANCARVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76684"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb1028b8e32336ca13be9e5dcf560eb152b8f64", "fields": {"nom_de_la_commune": "THEROULDEVILLE", "libell_d_acheminement": "THEROULDEVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76685"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c7c16efac23c610cd9443df3ec6b0a0efa6690", "fields": {"nom_de_la_commune": "TOCQUEVILLE EN CAUX", "libell_d_acheminement": "TOCQUEVILLE EN CAUX", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76694"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c80f4356271f1de9b97b5c10d1668b1371ee047", "fields": {"nom_de_la_commune": "TORCY LE PETIT", "libell_d_acheminement": "TORCY LE PETIT", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76698"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da9e3878c3b6d124759cd4853d4ccf359bf317b", "fields": {"nom_de_la_commune": "LE TORP MESNIL", "libell_d_acheminement": "LE TORP MESNIL", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76699"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0aa5897f2838f7c163f5e2952367ad3f8c2813", "fields": {"nom_de_la_commune": "TOTES", "libell_d_acheminement": "TOTES", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76700"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27c485ec3851f071a37abfe16e9bd80c00edd18a", "fields": {"nom_de_la_commune": "LE TRAIT", "libell_d_acheminement": "LE TRAIT", "code_postal": "76580", "coordonnees_gps": [49.4836816397, 0.820017087099], "code_commune_insee": "76709"}, "geometry": {"type": "Point", "coordinates": [0.820017087099, 49.4836816397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9c471d8d7062ef85ce3949ba0bc20c270fa70d", "fields": {"nom_de_la_commune": "TREMAUVILLE", "libell_d_acheminement": "TREMAUVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76710"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3775843f4294d33ffc9cf746b370d70af85bf9e8", "fields": {"nom_de_la_commune": "VARNEVILLE BRETTEVILLE", "libell_d_acheminement": "VARNEVILLE BRETTEVILLE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76721"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba7485bad1e2f7f21588ff8a9b628b3053266f1", "fields": {"nom_de_la_commune": "VATIERVILLE", "libell_d_acheminement": "VATIERVILLE", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76724"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe07aec3296c601d9e8aec7b63fc1eb44ccdd021", "fields": {"nom_de_la_commune": "VEAUVILLE LES QUELLES", "libell_d_acheminement": "VEAUVILLE LES QUELLES", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76730"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6165b9b54120c668f52feb6355a6e4c54354c88a", "fields": {"nom_de_la_commune": "VENTES ST REMY", "libell_d_acheminement": "VENTES ST REMY", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76733"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30ffca8fbb9f112e78150287cc5320f6d1414185", "fields": {"nom_de_la_commune": "VILLERS ECALLES", "libell_d_acheminement": "VILLERS ECALLES", "code_postal": "76360", "coordonnees_gps": [49.5442328015, 0.945102763311], "code_commune_insee": "76743"}, "geometry": {"type": "Point", "coordinates": [0.945102763311, 49.5442328015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "636de09404f80ad751e9a80dc384d70cbcf0711d", "fields": {"nom_de_la_commune": "VILLERS SOUS FOUCARMONT", "libell_d_acheminement": "VILLERS SOUS FOUCARMONT", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76744"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "135b9eb90d3fdf4fe471e904dea02aa3aa8b141d", "fields": {"nom_de_la_commune": "VINNEMERVILLE", "libell_d_acheminement": "VINNEMERVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76746"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f14aea6bcbd092fe7f12e235a7a8d6f6ba2266b8", "fields": {"nom_de_la_commune": "YAINVILLE", "libell_d_acheminement": "YAINVILLE", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76750"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "347ec77791577684c3778e346c5098572f7528f0", "fields": {"nom_de_la_commune": "YERVILLE", "libell_d_acheminement": "YERVILLE", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76752"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76b7682134f63dacadb66e734aa8e18c70b205e6", "fields": {"code_postal": "76540", "code_commune_insee": "76755", "libell_d_acheminement": "YPREVILLE BIVILLE", "ligne_5": "YPREVILLE", "nom_de_la_commune": "YPREVILLE BIVILLE", "coordonnees_gps": [49.7570077564, 0.523798637411]}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "323951b92e94b90daf05061bb51436d9385ae15e", "fields": {"nom_de_la_commune": "ANDREZEL", "libell_d_acheminement": "ANDREZEL", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77004"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3795119558fb1f9cbfa1ccacc086e78705f795", "fields": {"nom_de_la_commune": "ARBONNE LA FORET", "libell_d_acheminement": "ARBONNE LA FORET", "code_postal": "77630", "coordonnees_gps": [48.4243787367, 2.57257810234], "code_commune_insee": "77006"}, "geometry": {"type": "Point", "coordinates": [2.57257810234, 48.4243787367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb5a536c48409a2be1ef42d824c4261ef619f770", "fields": {"nom_de_la_commune": "ARGENTIERES", "libell_d_acheminement": "ARGENTIERES", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77007"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89dc91f0dcab16fbf9ef28b4ce457f30419ce2bc", "fields": {"nom_de_la_commune": "ARMENTIERES EN BRIE", "libell_d_acheminement": "ARMENTIERES EN BRIE", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77008"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bebacb0457baa9551e6e65885c0deadfea164942", "fields": {"nom_de_la_commune": "TANCONVILLE", "libell_d_acheminement": "TANCONVILLE", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54512"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2db838b6177a08c836c3f388e3b78cf4421682c", "fields": {"nom_de_la_commune": "THELOD", "libell_d_acheminement": "THELOD", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54515"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b15ec280286a7b9d84de8488be73a72139a3bc91", "fields": {"nom_de_la_commune": "THIEBAUMENIL", "libell_d_acheminement": "THIEBAUMENIL", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54520"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0b39b9a716337d2f072ec118a7e27d2c3c4739", "fields": {"nom_de_la_commune": "THIL", "libell_d_acheminement": "THIL", "code_postal": "54880", "coordonnees_gps": [49.4734220665, 5.90642660057], "code_commune_insee": "54521"}, "geometry": {"type": "Point", "coordinates": [5.90642660057, 49.4734220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa48d6cedd35d71fb05ecf15c6b9c208a97e00a1", "fields": {"nom_de_la_commune": "THOREY LYAUTEY", "libell_d_acheminement": "THOREY LYAUTEY", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54522"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1608d782602eadca522b39fe52fd747623385d4", "fields": {"nom_de_la_commune": "TRIEUX", "libell_d_acheminement": "TRIEUX", "code_postal": "54750", "coordonnees_gps": [49.3222767865, 5.94434518377], "code_commune_insee": "54533"}, "geometry": {"type": "Point", "coordinates": [5.94434518377, 49.3222767865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e5b4e23d4d043eb526e5b285b9681a0a9bc9e6", "fields": {"nom_de_la_commune": "VACQUEVILLE", "libell_d_acheminement": "VACQUEVILLE", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54539"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bcd95f2a6178f55435897da75088a9d279c2fc9", "fields": {"nom_de_la_commune": "VANDIERES", "libell_d_acheminement": "VANDIERES", "code_postal": "54121", "coordonnees_gps": [48.9586678329, 6.02025307834], "code_commune_insee": "54546"}, "geometry": {"type": "Point", "coordinates": [6.02025307834, 48.9586678329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527643e963907d292e2dbecd9bef054bc0ce166f", "fields": {"nom_de_la_commune": "VATHIMENIL", "libell_d_acheminement": "VATHIMENIL", "code_postal": "54122", "coordonnees_gps": [48.4830574623, 6.66436645475], "code_commune_insee": "54550"}, "geometry": {"type": "Point", "coordinates": [6.66436645475, 48.4830574623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef273ecd1b36250ad77b1a248d2a1e111351e407", "fields": {"nom_de_la_commune": "VAUDEVILLE", "libell_d_acheminement": "VAUDEVILLE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54553"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc87f7c87037596b053acdaa20243ca34520840", "fields": {"nom_de_la_commune": "VAUDIGNY", "libell_d_acheminement": "VAUDIGNY", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54554"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25fbc3a619158e817b1b5335b66988115bcbb120", "fields": {"nom_de_la_commune": "VELAINE SOUS AMANCE", "libell_d_acheminement": "VELAINE SOUS AMANCE", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54558"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53cc4a9f0a6219f48911e90827d60a04aa998743", "fields": {"nom_de_la_commune": "VELLE SUR MOSELLE", "libell_d_acheminement": "VELLE SUR MOSELLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54559"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1cea207cb69fa017dc9f26632900464dcddf51", "fields": {"nom_de_la_commune": "VILLACOURT", "libell_d_acheminement": "VILLACOURT", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54567"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa9e85d8678ad10c5ecfef58e0bbfdb0c471c6b8", "fields": {"nom_de_la_commune": "VILLECEY SUR MAD", "libell_d_acheminement": "VILLECEY SUR MAD", "code_postal": "54890", "coordonnees_gps": [49.0257742751, 5.94673598373], "code_commune_insee": "54570"}, "geometry": {"type": "Point", "coordinates": [5.94673598373, 49.0257742751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e05f7fc746e5e7a29b5523536f4dde2b5ff00a4c", "fields": {"nom_de_la_commune": "VILLERS EN HAYE", "libell_d_acheminement": "VILLERS EN HAYE", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54573"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ff69afb70b9653552e1d6dccd1f8f05ca3fc13d", "fields": {"nom_de_la_commune": "ST LAURENT L ABBAYE", "libell_d_acheminement": "ST LAURENT L ABBAYE", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58248"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a581bbf09970fa1ed7f78f1f2242360e2d7ef6f", "fields": {"nom_de_la_commune": "ST PARIZE LE CHATEL", "libell_d_acheminement": "ST PARIZE LE CHATEL", "code_postal": "58490", "coordonnees_gps": [46.8506484753, 3.18474672516], "code_commune_insee": "58260"}, "geometry": {"type": "Point", "coordinates": [3.18474672516, 46.8506484753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f41fa656cdb1671e7bd7fe6ae47f4ee695acea6", "fields": {"nom_de_la_commune": "ST REVERIEN", "libell_d_acheminement": "ST REVERIEN", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58266"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15bb9d6398d27eb522befce11b13f25a2eeba91e", "fields": {"nom_de_la_commune": "ST SAULGE", "libell_d_acheminement": "ST SAULGE", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58267"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba320af970e2d842354a61903b679843c5b9fae", "fields": {"nom_de_la_commune": "ST VERAIN", "libell_d_acheminement": "ST VERAIN", "code_postal": "58310", "coordonnees_gps": [47.5133822034, 3.08684545659], "code_commune_insee": "58270"}, "geometry": {"type": "Point", "coordinates": [3.08684545659, 47.5133822034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "decaf633060d376a64c19239fec622f80450091b", "fields": {"nom_de_la_commune": "SEMELAY", "libell_d_acheminement": "SEMELAY", "code_postal": "58360", "coordonnees_gps": [46.8973238863, 3.8600072839], "code_commune_insee": "58276"}, "geometry": {"type": "Point", "coordinates": [3.8600072839, 46.8973238863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4438d2b3bf6c41eac9a2c046dd9b398dce41815b", "fields": {"nom_de_la_commune": "VILLIERS LE PRE", "libell_d_acheminement": "VILLIERS LE PRE", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50640"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f408c2f083130b31c9e5a57e33b709021f56612", "fields": {"nom_de_la_commune": "VILLIERS FOSSARD", "libell_d_acheminement": "VILLIERS FOSSARD", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50641"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a1e7eeeca5562bc6e2a367d3cf0cf2dc509735", "fields": {"nom_de_la_commune": "ALLEMANT", "libell_d_acheminement": "ALLEMANT", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51005"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc165956f117b0b2fc8cf7732689db2edbb06918", "fields": {"nom_de_la_commune": "ALLIANCELLES", "libell_d_acheminement": "ALLIANCELLES", "code_postal": "51250", "coordonnees_gps": [48.7689715005, 4.90406151708], "code_commune_insee": "51006"}, "geometry": {"type": "Point", "coordinates": [4.90406151708, 48.7689715005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a2c2c05ee24cda3f33e1aa9133d04a8f92e10d6", "fields": {"nom_de_la_commune": "AMBONNAY", "libell_d_acheminement": "AMBONNAY", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51007"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f29bed42b5e5c7529cff766a0848b3f56b4821", "fields": {"nom_de_la_commune": "ARZILLIERES NEUVILLE", "libell_d_acheminement": "ARZILLIERES NEUVILLE", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51017"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac74af11586e9843b6a05ea4893d4643d10029ad", "fields": {"code_postal": "51150", "code_commune_insee": "51030", "libell_d_acheminement": "AY CHAMPAGNE", "ligne_5": "BISSEUIL", "nom_de_la_commune": "AY CHAMPAGNE", "coordonnees_gps": [49.0294111773, 4.16667797153]}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83a70bd225eebdb2884850b240d1808e1301215c", "fields": {"nom_de_la_commune": "BACONNES", "libell_d_acheminement": "BACONNES", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51031"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45a7d2f3525391e4abb5144d83ae51db3bad1c33", "fields": {"nom_de_la_commune": "BANNAY", "libell_d_acheminement": "BANNAY", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51034"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b67a4c96b63d047acae365a9017a5f0d016479d", "fields": {"nom_de_la_commune": "BEAUMONT SUR VESLE", "libell_d_acheminement": "BEAUMONT SUR VESLE", "code_postal": "51360", "coordonnees_gps": [49.1885177288, 4.19782075204], "code_commune_insee": "51044"}, "geometry": {"type": "Point", "coordinates": [4.19782075204, 49.1885177288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01692371d6a9631e614d91ae34c8289c4e7856c6", "fields": {"nom_de_la_commune": "BELVAL EN ARGONNE", "libell_d_acheminement": "BELVAL EN ARGONNE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51047"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3572ec6a726a95ef76853580a465f3ce5bb8ce58", "fields": {"nom_de_la_commune": "BERMERICOURT", "libell_d_acheminement": "BERMERICOURT", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51051"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc633152fa406b3004ef91bbcd95ba1a92192de6", "fields": {"nom_de_la_commune": "BETTANCOURT LA LONGUE", "libell_d_acheminement": "BETTANCOURT LA LONGUE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51057"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "387e07e12397e9bea0dd165f6ad50cec78475fb5", "fields": {"nom_de_la_commune": "BINSON ET ORQUIGNY", "libell_d_acheminement": "BINSON ET ORQUIGNY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51063"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b53dc27402f7caf21a6707bb7f92c4a18b82661d", "fields": {"nom_de_la_commune": "BREUVERY SUR COOLE", "libell_d_acheminement": "BREUVERY SUR COOLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51087"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b664677a01bdb44728a489d6f3c589130b0e0d20", "fields": {"nom_de_la_commune": "BROUILLET", "libell_d_acheminement": "BROUILLET", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51089"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff3fd4660e171443ad87b8d36e39368b835ddb72", "fields": {"nom_de_la_commune": "BROUSSY LE PETIT", "libell_d_acheminement": "BROUSSY LE PETIT", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51091"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d42a870a15dc77831bfeac532f8209bf02b085", "fields": {"nom_de_la_commune": "BUSSY LE REPOS", "libell_d_acheminement": "BUSSY LE REPOS", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51098"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "172a9d5ab6b6fc18c734029c3e566c626d93e528", "fields": {"nom_de_la_commune": "CERNAY EN DORMOIS", "libell_d_acheminement": "CERNAY EN DORMOIS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51104"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ac02fb1499d34b766475d00b72d46a33de93fb0", "fields": {"nom_de_la_commune": "CERNON", "libell_d_acheminement": "CERNON", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51106"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97802f2aba62420ba63d91654d4d7a9d21e4e9d0", "fields": {"nom_de_la_commune": "CHAMPIGNEUL CHAMPAGNE", "libell_d_acheminement": "CHAMPIGNEUL CHAMPAGNE", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51117"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00402ffe3d224a2fa06a3c78b4fba959049eddb2", "fields": {"nom_de_la_commune": "CHAMPIGNY", "libell_d_acheminement": "CHAMPIGNY", "code_postal": "51370", "coordonnees_gps": [49.2503894906, 3.96059449419], "code_commune_insee": "51118"}, "geometry": {"type": "Point", "coordinates": [3.96059449419, 49.2503894906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd63971f9f7da7451906ee21fc0854b35780dca4", "fields": {"nom_de_la_commune": "CHANTEMERLE", "libell_d_acheminement": "CHANTEMERLE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51124"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ba07803e82842dd94cda9b31d44bce555fff364", "fields": {"nom_de_la_commune": "CHARMONT", "libell_d_acheminement": "CHARMONT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51130"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a84f3b7f37a241d1ecbdc29f0d80f075cb3bb8e2", "fields": {"nom_de_la_commune": "CHATILLON SUR BROUE", "libell_d_acheminement": "CHATILLON SUR BROUE", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51135"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38e3f78343fb92e55b4868f68714393315ad58af", "fields": {"nom_de_la_commune": "CHAUDEFONTAINE", "libell_d_acheminement": "CHAUDEFONTAINE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51139"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "012d54e12e4e8a5f913888b2f1decb48efbbcb99", "fields": {"nom_de_la_commune": "LA CHAUSSEE SUR MARNE", "libell_d_acheminement": "LA CHAUSSEE SUR MARNE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51141"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3297aba17a4cdc7b84f92621ed83e55750bc452", "fields": {"nom_de_la_commune": "CHAVOT COURCOURT", "libell_d_acheminement": "CHAVOT COURCOURT", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51142"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a29696fc0fb0c0e0a0c9edf03ef62ad3cb3ed4df", "fields": {"nom_de_la_commune": "LE CHEMIN", "libell_d_acheminement": "LE CHEMIN", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51143"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "490c851562db1eef3ac848b56e046c631e4c40aa", "fields": {"nom_de_la_commune": "CHEMINON", "libell_d_acheminement": "CHEMINON", "code_postal": "51250", "coordonnees_gps": [48.7689715005, 4.90406151708], "code_commune_insee": "51144"}, "geometry": {"type": "Point", "coordinates": [4.90406151708, 48.7689715005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acae5e3da6693596440af2ff15d892b2aa20d5b3", "fields": {"nom_de_la_commune": "CHICHEY", "libell_d_acheminement": "CHICHEY", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51151"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312c67f8c60ef415815147213e275e0ec412e0d8", "fields": {"nom_de_la_commune": "COOLUS", "libell_d_acheminement": "COOLUS", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51168"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0c34035fc43b5ab82c21babc66d272a6e8d6029", "fields": {"nom_de_la_commune": "CORMICY", "libell_d_acheminement": "CORMICY", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51171"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eff7a4af0b1e83e730793cb5f0482a6ac672ab5", "fields": {"nom_de_la_commune": "CORMONTREUIL", "libell_d_acheminement": "CORMONTREUIL", "code_postal": "51350", "coordonnees_gps": [49.2168828261, 4.05267122539], "code_commune_insee": "51172"}, "geometry": {"type": "Point", "coordinates": [4.05267122539, 49.2168828261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20f321155e6cc702a08fbea4cd83a48d6b543f84", "fields": {"nom_de_la_commune": "COUPETZ", "libell_d_acheminement": "COUPETZ", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51178"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a53b752678e1b0321d11d4a5f67bfcf945b4ca", "fields": {"nom_de_la_commune": "COUPEVILLE", "libell_d_acheminement": "COUPEVILLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51179"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9ed00b3b88a33f43a92b5cba7d964de8f198691", "fields": {"nom_de_la_commune": "COURGIVAUX", "libell_d_acheminement": "COURGIVAUX", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51185"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54edf48fa154ece0de616c1c6330f01e7eec2637", "fields": {"nom_de_la_commune": "COURTEMONT", "libell_d_acheminement": "COURTEMONT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51191"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63d008a6304eee34d0348c85b520e6058ccfc0ca", "fields": {"nom_de_la_commune": "COURVILLE", "libell_d_acheminement": "COURVILLE", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51194"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3654c8025824a5659dd42f52e4a90fa55578fedf", "fields": {"nom_de_la_commune": "COUVROT", "libell_d_acheminement": "COUVROT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51195"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a224563ad8439c515e1d8184ff84336a09e0c07", "fields": {"nom_de_la_commune": "CUPERLY", "libell_d_acheminement": "CUPERLY", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51203"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75c3e3df1a01e2e92047e78f01e5305f4f83c5a", "fields": {"nom_de_la_commune": "DAMPIERRE AU TEMPLE", "libell_d_acheminement": "DAMPIERRE AU TEMPLE", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51205"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e1b2beabfa044c92ba09a0212d613ddaedbd2c", "fields": {"nom_de_la_commune": "DIZY", "libell_d_acheminement": "DIZY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51210"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba70e3e366d1668e4ff31388e936a37ec611950e", "fields": {"code_postal": "51700", "code_commune_insee": "51217", "libell_d_acheminement": "DORMANS", "ligne_5": "SOILLY", "nom_de_la_commune": "DORMANS", "coordonnees_gps": [49.0741079676, 3.71485064458]}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a7cdd675a4ddb3d91eb2a7e45d182f9dcd5441e", "fields": {"nom_de_la_commune": "DROUILLY", "libell_d_acheminement": "DROUILLY", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51220"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52ae8390874bb2253256d7ee3f83807e4d4209d", "fields": {"nom_de_la_commune": "ECLAIRES", "libell_d_acheminement": "ECLAIRES", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51222"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "299d1db65bd011c8339fb95b8e1db38bd42873c8", "fields": {"nom_de_la_commune": "LES ESSARTS LES SEZANNE", "libell_d_acheminement": "LES ESSARTS LES SEZANNE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51235"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ebccc3dc20f402752b4e03cecb79e3b48f52b4", "fields": {"nom_de_la_commune": "ETREPY", "libell_d_acheminement": "ETREPY", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51240"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937bf462b79349c391c8040824b7fc4938552767", "fields": {"nom_de_la_commune": "FAUX FRESNAY", "libell_d_acheminement": "FAUX FRESNAY", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51243"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37077c4c192efe7859c236db57e8178c371de19f", "fields": {"nom_de_la_commune": "FAUX VESIGNEUL", "libell_d_acheminement": "FAUX VESIGNEUL", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51244"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f9528f4f76ac90f88561de55b697bac174122b0", "fields": {"nom_de_la_commune": "FONTAINE EN DORMOIS", "libell_d_acheminement": "FONTAINE EN DORMOIS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51255"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d286d232bcde26eaac633edc7f3a717bffa98ce", "fields": {"nom_de_la_commune": "LE FRESNE", "libell_d_acheminement": "LE FRESNE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51260"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d29456c14992f4cb2ee3c33014133539338fa4c", "fields": {"nom_de_la_commune": "LE GAULT SOIGNY", "libell_d_acheminement": "LE GAULT SOIGNY", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51264"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "317343fde2cc036a1629adfc9474ab820f1964fc", "fields": {"nom_de_la_commune": "GERMINON", "libell_d_acheminement": "GERMINON", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51268"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "911e09d065eb782010ce8f610b91a6385a39795f", "fields": {"nom_de_la_commune": "HAUSSIMONT", "libell_d_acheminement": "HAUSSIMONT", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51285"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a11a6067f925ae3ece200e487cb761db39cff4d9", "fields": {"nom_de_la_commune": "JALONS", "libell_d_acheminement": "JALONS", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51303"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad309614a6018f949200df548f77c1d660b8f290", "fields": {"nom_de_la_commune": "JANVILLIERS", "libell_d_acheminement": "JANVILLIERS", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51304"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98325b38a7a7b5ca47ebdb9a4e3745aed6859f6", "fields": {"nom_de_la_commune": "JOISELLE", "libell_d_acheminement": "JOISELLE", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51306"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940ef6f39089743129fc153fe13b97f524380ae0", "fields": {"nom_de_la_commune": "JUVIGNY", "libell_d_acheminement": "JUVIGNY", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51312"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9949237fde4a57cb74b0d6d999efea281df0c149", "fields": {"nom_de_la_commune": "LACHY", "libell_d_acheminement": "LACHY", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51313"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "defa5ed63504dcbd3aee0f6bb66492f91c1ae798", "fields": {"nom_de_la_commune": "LANDRICOURT", "libell_d_acheminement": "LANDRICOURT", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51315"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ddd20356b2b8040bbf4697946c887660742b68", "fields": {"nom_de_la_commune": "LENHARREE", "libell_d_acheminement": "LENHARREE", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51319"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0c64124d39af04af0bbdd8f6b3132445c8ca73a", "fields": {"nom_de_la_commune": "LIGNON", "libell_d_acheminement": "LIGNON", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51322"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f749e474eeb08605ff050c99e0a4ed65c63b30c", "fields": {"nom_de_la_commune": "LOISY EN BRIE", "libell_d_acheminement": "LOISY EN BRIE", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51327"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9db411c7e82b619c41f81a2a57087603941800a2", "fields": {"nom_de_la_commune": "LOISY SUR MARNE", "libell_d_acheminement": "LOISY SUR MARNE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51328"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc948ac9f27b020a8351944bcb8dc436febe0026", "fields": {"nom_de_la_commune": "LUXEMONT ET VILLOTTE", "libell_d_acheminement": "LUXEMONT ET VILLOTTE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51334"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbafbb3c678ea551f7f86e88c12a6a62df286d8e", "fields": {"nom_de_la_commune": "MAISONS EN CHAMPAGNE", "libell_d_acheminement": "MAISONS EN CHAMPAGNE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51340"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e90d5170dbc49291cfdd4e25b6d43007703a6da", "fields": {"nom_de_la_commune": "MANCY", "libell_d_acheminement": "MANCY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51342"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46aa71045067eec909b3bdbdb1345efabfec3047", "fields": {"nom_de_la_commune": "MARDEUIL", "libell_d_acheminement": "MARDEUIL", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51344"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb577fe1e7e583cf71908264bc5ae36095e5957", "fields": {"nom_de_la_commune": "MARGERIE HANCOURT", "libell_d_acheminement": "MARGERIE HANCOURT", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51349"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f78a1ddb412407e014ef781075f3c82d1856fd80", "fields": {"nom_de_la_commune": "MARGNY", "libell_d_acheminement": "MARGNY", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51350"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c0399426c18418f8e74d13e7c2a3e968206a7c1", "fields": {"nom_de_la_commune": "MAURUPT LE MONTOIS", "libell_d_acheminement": "MAURUPT LE MONTOIS", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51358"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9acd75b35ff8ec3c31f763cde3b7ac736c9938", "fields": {"nom_de_la_commune": "MECRINGES", "libell_d_acheminement": "MECRINGES", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51359"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70d3a1949a46155434fdf229e0cf627c6c32268", "fields": {"nom_de_la_commune": "MONTGENOST", "libell_d_acheminement": "MONTGENOST", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51376"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4b3713ca2852f950cf7200319c151b6fa6a5616", "fields": {"nom_de_la_commune": "MONTIGNY SUR VESLE", "libell_d_acheminement": "MONTIGNY SUR VESLE", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51379"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cae9ac19880be662c0777718628d5edbb52dc42", "fields": {"nom_de_la_commune": "MONT SUR COURVILLE", "libell_d_acheminement": "MONT SUR COURVILLE", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51382"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f142655f792eb70d65f96aca8651b8b78ec2b3f9", "fields": {"nom_de_la_commune": "MOSLINS", "libell_d_acheminement": "MOSLINS", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51387"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a882622e20900681a67df7bafc7d8d1a3d8a904", "fields": {"nom_de_la_commune": "MOUSSY", "libell_d_acheminement": "MOUSSY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51390"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e72e560c2ce8a39b6434312cbc2d3b1a0ac194fe", "fields": {"nom_de_la_commune": "MUIZON", "libell_d_acheminement": "MUIZON", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51391"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35276902c663fc94eb2ae94a90da897f24c5af45", "fields": {"nom_de_la_commune": "NEUVY", "libell_d_acheminement": "NEUVY", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51402"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c768fe233d2b1b0f3ddc5648bf37d725018bf502", "fields": {"nom_de_la_commune": "NORROIS", "libell_d_acheminement": "NORROIS", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51406"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aecb0c753b9b7d9f81b02580c2f542b68f7896b", "fields": {"nom_de_la_commune": "NUISEMENT SUR COOLE", "libell_d_acheminement": "NUISEMENT SUR COOLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51409"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff8556c5a77076bac90d93d001700c0098678483", "fields": {"nom_de_la_commune": "ORBAIS L ABBAYE", "libell_d_acheminement": "ORBAIS L ABBAYE", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51416"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47b7308a8584d1d20f93abd49cbb19b512883529", "fields": {"nom_de_la_commune": "OUTINES", "libell_d_acheminement": "OUTINES", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51419"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc93dee3b9cf533fd2624413086648d1ff0ad0f7", "fields": {"nom_de_la_commune": "PARGNY LES REIMS", "libell_d_acheminement": "PARGNY LES REIMS", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51422"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39f10449a7e68763637db43e0aa35e7aaeefd523", "fields": {"nom_de_la_commune": "LES PETITES LOGES", "libell_d_acheminement": "LES PETITES LOGES", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51428"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c09658fde68f97ea72eba638bd23539e92cd64fa", "fields": {"nom_de_la_commune": "PLEURS", "libell_d_acheminement": "PLEURS", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51432"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a96ea425bdcf5b59accc4ddb0008d65bdebeaf83", "fields": {"nom_de_la_commune": "PLIVOT", "libell_d_acheminement": "PLIVOT", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51434"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a262e41a234d2f63ab33518535c9d2b2014227b", "fields": {"nom_de_la_commune": "POUILLON", "libell_d_acheminement": "POUILLON", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51444"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "352087ed669d24d59189b565a32d5db42471c638", "fields": {"nom_de_la_commune": "PROUILLY", "libell_d_acheminement": "PROUILLY", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51448"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4378f9f1f9d76cb8d0d9a2d68c9236b358e56692", "fields": {"nom_de_la_commune": "RAPSECOURT", "libell_d_acheminement": "RAPSECOURT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51452"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e200f0e8f2707c99a2f94c9549bc6795c9e91668", "fields": {"code_postal": "51100", "code_commune_insee": "51454", "libell_d_acheminement": "REIMS", "ligne_5": "LA NEUVILLETTE", "nom_de_la_commune": "REIMS", "coordonnees_gps": [49.2518578026, 4.03958522088]}, "geometry": {"type": "Point", "coordinates": [4.03958522088, 49.2518578026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "125f6a9ad32a8b0219aca0dfe61a82b5bac1a422", "fields": {"nom_de_la_commune": "LES RIVIERES HENRUEL", "libell_d_acheminement": "LES RIVIERES HENRUEL", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51463"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29de7155b6b953be7aba4b83f49ab27f17a9d0ab", "fields": {"nom_de_la_commune": "ROMIGNY", "libell_d_acheminement": "ROMIGNY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51466"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb21b4af4939c87d6880698d16aa2f5da252f32", "fields": {"nom_de_la_commune": "SAUGY", "libell_d_acheminement": "SAUGY", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18244"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "263f8099896e389ee75a23cd96dcc39b40d55c53", "fields": {"nom_de_la_commune": "SAULZAIS LE POTIER", "libell_d_acheminement": "SAULZAIS LE POTIER", "code_postal": "18360", "coordonnees_gps": [46.5847135273, 2.49730367441], "code_commune_insee": "18245"}, "geometry": {"type": "Point", "coordinates": [2.49730367441, 46.5847135273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20782c145f1cbb9d14a33bad3a0378c226c5b73e", "fields": {"nom_de_la_commune": "SENS BEAUJEU", "libell_d_acheminement": "SENS BEAUJEU", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18249"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb2d1d8cf0e6a91cf828c0077eaa7795f019d03", "fields": {"nom_de_la_commune": "SERRUELLES", "libell_d_acheminement": "SERRUELLES", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18250"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "952068b2364e1de5e449aace1eab06bda913a5fe", "fields": {"nom_de_la_commune": "SIDIAILLES", "libell_d_acheminement": "SIDIAILLES", "code_postal": "18270", "coordonnees_gps": [46.5558646891, 2.33204574523], "code_commune_insee": "18252"}, "geometry": {"type": "Point", "coordinates": [2.33204574523, 46.5558646891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5861c2eb7c69af4e6c76b23afeac161157302d9", "fields": {"nom_de_la_commune": "THAUVENAY", "libell_d_acheminement": "THAUVENAY", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18262"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5add26cd1765b290ec1426159305c8817f3d8e04", "fields": {"nom_de_la_commune": "TROUY", "libell_d_acheminement": "TROUY", "code_postal": "18570", "coordonnees_gps": [47.029164221, 2.32252100709], "code_commune_insee": "18267"}, "geometry": {"type": "Point", "coordinates": [2.32252100709, 47.029164221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "755beacb269630a8711ea8c9fe36993bc812fd3a", "fields": {"nom_de_la_commune": "VEREAUX", "libell_d_acheminement": "VEREAUX", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18275"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab39f726472e87bec22f6d7c6f04c105fc0a0b7a", "fields": {"nom_de_la_commune": "VIGNOUX SUR BARANGEON", "libell_d_acheminement": "VIGNOUX SUR BARANGEON", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18281"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c859930cffd087f2d6fd78f343c8b521c9bebb13", "fields": {"nom_de_la_commune": "VILLABON", "libell_d_acheminement": "VILLABON", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18282"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c18a18e62fd16d769f7d5ba51eba142cb3eb5f", "fields": {"nom_de_la_commune": "VILLEGENON", "libell_d_acheminement": "VILLEGENON", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18284"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da19ec46d7d51be7e89523023c16d681095662dc", "fields": {"nom_de_la_commune": "VORNAY", "libell_d_acheminement": "VORNAY", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18289"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844f498b811f1bc353205e41229e6364281d69bc", "fields": {"nom_de_la_commune": "LES ANGLES SUR CORREZE", "libell_d_acheminement": "LES ANGLES SUR CORREZE", "code_postal": "19000", "coordonnees_gps": [45.2793808785, 1.76981536054], "code_commune_insee": "19009"}, "geometry": {"type": "Point", "coordinates": [1.76981536054, 45.2793808785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c134062005c3f2a8febc2085b000030d79632ef", "fields": {"nom_de_la_commune": "ASTAILLAC", "libell_d_acheminement": "ASTAILLAC", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19012"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef6b15609a0ce3ad30dd6d9fb48379dec0a25d5", "fields": {"nom_de_la_commune": "AURIAC", "libell_d_acheminement": "AURIAC", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19014"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "632a4ecef17c2f548b1f5dfd138b3d93d7bd1bca", "fields": {"nom_de_la_commune": "BASSIGNAC LE BAS", "libell_d_acheminement": "BASSIGNAC LE BAS", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19017"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d3a21ebb11899fe5535f75dcd7ed7c0576f81d", "fields": {"nom_de_la_commune": "BENAYES", "libell_d_acheminement": "BENAYES", "code_postal": "19510", "coordonnees_gps": [45.5279233251, 1.55841014234], "code_commune_insee": "19022"}, "geometry": {"type": "Point", "coordinates": [1.55841014234, 45.5279233251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f85d33336ceb5629437d41db7a82a8ceb6652a2d", "fields": {"nom_de_la_commune": "CAMPS ST MATHURIN LEOBAZEL", "libell_d_acheminement": "CAMPS ST MATHURIN LEOBAZEL", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19034"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8feb0d5bcc0cbbb126de8f70358532bdf795eebb", "fields": {"nom_de_la_commune": "CHAMBOULIVE", "libell_d_acheminement": "CHAMBOULIVE", "code_postal": "19450", "coordonnees_gps": [45.4271584984, 1.69945008096], "code_commune_insee": "19037"}, "geometry": {"type": "Point", "coordinates": [1.69945008096, 45.4271584984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e4d7b8f359cf91048e6e41398d11953ed8e4df9", "fields": {"nom_de_la_commune": "CHAMPAGNAC LA NOAILLE", "libell_d_acheminement": "CHAMPAGNAC LA NOAILLE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19039"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2ff0583996a97ade2a5756f6b69193071e45d6", "fields": {"nom_de_la_commune": "CHANAC LES MINES", "libell_d_acheminement": "CHANAC LES MINES", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19041"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29ff02678297edc1e8002c3b174d3d70899a56a", "fields": {"nom_de_la_commune": "CHAUFFOUR SUR VELL", "libell_d_acheminement": "CHAUFFOUR SUR VELL", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19050"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a399a8e7e362a0111528eb7cd868ff34c609bf7d", "fields": {"nom_de_la_commune": "CHAUMEIL", "libell_d_acheminement": "CHAUMEIL", "code_postal": "19390", "coordonnees_gps": [45.4299855469, 1.84010426124], "code_commune_insee": "19051"}, "geometry": {"type": "Point", "coordinates": [1.84010426124, 45.4299855469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7c6abd97105278f5502005993ca622aa5ec778e", "fields": {"nom_de_la_commune": "CONDAT SUR GANAVEIX", "libell_d_acheminement": "CONDAT SUR GANAVEIX", "code_postal": "19140", "coordonnees_gps": [45.4534244824, 1.58484255236], "code_commune_insee": "19060"}, "geometry": {"type": "Point", "coordinates": [1.58484255236, 45.4534244824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7e275a8899176d3b34744ac311cf46571a4d45", "fields": {"nom_de_la_commune": "COURTEIX", "libell_d_acheminement": "COURTEIX", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19065"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deaeeb2575ba2ec43e6dede1e8625025e66976e2", "fields": {"nom_de_la_commune": "CUBLAC", "libell_d_acheminement": "CUBLAC", "code_postal": "19520", "coordonnees_gps": [45.1579746689, 1.34205051388], "code_commune_insee": "19066"}, "geometry": {"type": "Point", "coordinates": [1.34205051388, 45.1579746689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed67fdc785c1338b156cd2798b135efca54ed77c", "fields": {"nom_de_la_commune": "DONZENAC", "libell_d_acheminement": "DONZENAC", "code_postal": "19270", "coordonnees_gps": [45.2360128901, 1.55194378829], "code_commune_insee": "19072"}, "geometry": {"type": "Point", "coordinates": [1.55194378829, 45.2360128901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b1cb81cb288b5977846c80d133a2b57371fc1e", "fields": {"nom_de_la_commune": "EYGURANDE", "libell_d_acheminement": "EYGURANDE", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19080"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc9886ea237115aaec78d75847582f045308a61b", "fields": {"nom_de_la_commune": "FAVARS", "libell_d_acheminement": "FAVARS", "code_postal": "19330", "coordonnees_gps": [45.2774600558, 1.65838820849], "code_commune_insee": "19082"}, "geometry": {"type": "Point", "coordinates": [1.65838820849, 45.2774600558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118aadc74e25f28623e8e542f32cacbd615f56cc", "fields": {"nom_de_la_commune": "FORGES", "libell_d_acheminement": "FORGES", "code_postal": "19380", "coordonnees_gps": [45.1425705015, 1.85972993392], "code_commune_insee": "19084"}, "geometry": {"type": "Point", "coordinates": [1.85972993392, 45.1425705015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6835e52f2627ff6d5694d95374f1daa20c6487", "fields": {"nom_de_la_commune": "GIMEL LES CASCADES", "libell_d_acheminement": "GIMEL LES CASCADES", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19085"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04f36b46a4fd3e422b7662eeb56bb2f1528e003c", "fields": {"nom_de_la_commune": "GOULLES", "libell_d_acheminement": "GOULLES", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19086"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb6dbf5936e882e7e0cc9182a6c97d4431bc380", "fields": {"nom_de_la_commune": "GROS CHASTANG", "libell_d_acheminement": "GROS CHASTANG", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19089"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ba7ad96175bf0eee4419a039ce1e7d3c08e9173", "fields": {"nom_de_la_commune": "LE JARDIN", "libell_d_acheminement": "LE JARDIN", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19092"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e664e294d03428d6f9af304b2912fa3b35c1ce4c", "fields": {"nom_de_la_commune": "LADIGNAC SUR RONDELLES", "libell_d_acheminement": "LADIGNAC SUR RONDELLES", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19096"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "494781116260c907d67e40847d867aee6613d04d", "fields": {"nom_de_la_commune": "LAMAZIERE BASSE", "libell_d_acheminement": "LAMAZIERE BASSE", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19102"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "421be1a60d53fb73b4567101741725b5c7c867af", "fields": {"nom_de_la_commune": "LAMONGERIE", "libell_d_acheminement": "LAMONGERIE", "code_postal": "19510", "coordonnees_gps": [45.5279233251, 1.55841014234], "code_commune_insee": "19104"}, "geometry": {"type": "Point", "coordinates": [1.55841014234, 45.5279233251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4fe0f9ad6d7794fd98de37dd4e0b754b3118f31", "fields": {"nom_de_la_commune": "LAVAL SUR LUZEGE", "libell_d_acheminement": "LAVAL SUR LUZEGE", "code_postal": "19550", "coordonnees_gps": [45.2859653325, 2.15926332347], "code_commune_insee": "19111"}, "geometry": {"type": "Point", "coordinates": [2.15926332347, 45.2859653325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b413df018e33f7388d58ebef0bf3389c7c458cd", "fields": {"nom_de_la_commune": "LIGNAREIX", "libell_d_acheminement": "LIGNAREIX", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19114"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fd86e607dbb21326223438d3bdbd9044336b646", "fields": {"nom_de_la_commune": "MANSAC", "libell_d_acheminement": "MANSAC", "code_postal": "19520", "coordonnees_gps": [45.1579746689, 1.34205051388], "code_commune_insee": "19124"}, "geometry": {"type": "Point", "coordinates": [1.34205051388, 45.1579746689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a868c28c974a2ecad8255375b48cc7f22c7a86", "fields": {"nom_de_la_commune": "MARCILLAC LA CROISILLE", "libell_d_acheminement": "MARCILLAC LA CROISILLE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19125"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d6d54525063442f46d5a66d88a699b05762f1a", "fields": {"nom_de_la_commune": "MAUSSAC", "libell_d_acheminement": "MAUSSAC", "code_postal": "19250", "coordonnees_gps": [45.5327331418, 2.12561107257], "code_commune_insee": "19130"}, "geometry": {"type": "Point", "coordinates": [2.12561107257, 45.5327331418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2373a80b90bd3df440ef49f2a6d74ce4859ce1ba", "fields": {"nom_de_la_commune": "MEYRIGNAC L EGLISE", "libell_d_acheminement": "MEYRIGNAC L EGLISE", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19137"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32c4975a1de56a308abbdb6af3ce2467dff2b3d1", "fields": {"nom_de_la_commune": "MONCEAUX SUR DORDOGNE", "libell_d_acheminement": "MONCEAUX SUR DORDOGNE", "code_postal": "19400", "coordonnees_gps": [45.0883560028, 1.92575532209], "code_commune_insee": "19140"}, "geometry": {"type": "Point", "coordinates": [1.92575532209, 45.0883560028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893d78ed65e2b07ac47cf09bcb954afe463615ba", "fields": {"nom_de_la_commune": "MONTGIBAUD", "libell_d_acheminement": "MONTGIBAUD", "code_postal": "19210", "coordonnees_gps": [45.4578364183, 1.39671905539], "code_commune_insee": "19144"}, "geometry": {"type": "Point", "coordinates": [1.39671905539, 45.4578364183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbc1ba3c91de3529e280dcc3842eeae39e17f562", "fields": {"nom_de_la_commune": "NESPOULS", "libell_d_acheminement": "NESPOULS", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19147"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5bcd7160c84b7cae652e8456310d309750767c0", "fields": {"nom_de_la_commune": "PANDRIGNES", "libell_d_acheminement": "PANDRIGNES", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19158"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c36d3b44f66bf1f152a05ecc182ba202a2379cf", "fields": {"nom_de_la_commune": "PEYRELEVADE", "libell_d_acheminement": "PEYRELEVADE", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19164"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c164faa68ec0576bba881a2128ef8cba015734", "fields": {"nom_de_la_commune": "ROCHE LE PEYROUX", "libell_d_acheminement": "ROCHE LE PEYROUX", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19175"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6255dc0d76cee86bfd598bad1afd75f7111caa54", "fields": {"nom_de_la_commune": "ROSIERS D EGLETONS", "libell_d_acheminement": "ROSIERS D EGLETONS", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19176"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646f08b2de8c3fd28e4ea5c60b04f38b030e0c10", "fields": {"nom_de_la_commune": "ST AULAIRE", "libell_d_acheminement": "ST AULAIRE", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19182"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c428364b34ba6f70d7fb5d40ec83670f75d8fd5", "fields": {"nom_de_la_commune": "ST BONNET L ENFANTIER", "libell_d_acheminement": "ST BONNET L ENFANTIER", "code_postal": "19410", "coordonnees_gps": [45.3468885239, 1.51457035634], "code_commune_insee": "19188"}, "geometry": {"type": "Point", "coordinates": [1.51457035634, 45.3468885239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81effa1a4c7179b01b50b4db486e70d3ed8746bc", "fields": {"nom_de_la_commune": "ST BONNET PRES BORT", "libell_d_acheminement": "ST BONNET PRES BORT", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19190"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a42f9a9f2b0e44c823ff10db154d85857845031", "fields": {"nom_de_la_commune": "ST CERNIN DE LARCHE", "libell_d_acheminement": "ST CERNIN DE LARCHE", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19191"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "339e0750ca2ffa5dc0ba1b57b68ae5a2e54ccd74", "fields": {"nom_de_la_commune": "ST CYPRIEN", "libell_d_acheminement": "ST CYPRIEN", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19195"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5cf1e6c6fb0a2221624a82f6f18859370b67984", "fields": {"nom_de_la_commune": "STE FEREOLE", "libell_d_acheminement": "STE FEREOLE", "code_postal": "19270", "coordonnees_gps": [45.2360128901, 1.55194378829], "code_commune_insee": "19202"}, "geometry": {"type": "Point", "coordinates": [1.55194378829, 45.2360128901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592c1b1b360810fb400f5ee6d8a14079c80feab5", "fields": {"nom_de_la_commune": "ST FREJOUX", "libell_d_acheminement": "ST FREJOUX", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19204"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e31c2a9cfcc5957301198ac07442993094d78ffc", "fields": {"nom_de_la_commune": "ST HILAIRE LUC", "libell_d_acheminement": "ST HILAIRE LUC", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19210"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40379463e24cf6cdffe10789d4fc22f2673e694b", "fields": {"nom_de_la_commune": "ST JULIEN LE PELERIN", "libell_d_acheminement": "ST JULIEN LE PELERIN", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19215"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb92402c66ae53664aa7bec3be495139f39a7c0e", "fields": {"nom_de_la_commune": "ST MARTIAL DE GIMEL", "libell_d_acheminement": "ST MARTIAL DE GIMEL", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19220"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39402ac41c59dcc0a2515085373d0f4f319227a0", "fields": {"nom_de_la_commune": "ST MARTIN LA MEANNE", "libell_d_acheminement": "ST MARTIN LA MEANNE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19222"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3080be3eb4b17ff70bcae10bc944ee83f437054", "fields": {"nom_de_la_commune": "ST MARTIN SEPERT", "libell_d_acheminement": "ST MARTIN SEPERT", "code_postal": "19210", "coordonnees_gps": [45.4578364183, 1.39671905539], "code_commune_insee": "19223"}, "geometry": {"type": "Point", "coordinates": [1.39671905539, 45.4578364183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940c9b59a2ce84caf2a2f35ea510305eff760c47", "fields": {"nom_de_la_commune": "ST PANTALEON DE LARCHE", "libell_d_acheminement": "ST PANTALEON DE LARCHE", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19229"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a4710ade4b78cdf00dae7e0177c1901cfc1d6ab", "fields": {"nom_de_la_commune": "ST PARDOUX L ORTIGIER", "libell_d_acheminement": "ST PARDOUX L ORTIGIER", "code_postal": "19270", "coordonnees_gps": [45.2360128901, 1.55194378829], "code_commune_insee": "19234"}, "geometry": {"type": "Point", "coordinates": [1.55194378829, 45.2360128901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f63a3bfd4b4fec0c5b354c6ab7ad503a36a726f", "fields": {"nom_de_la_commune": "ST PRIEST DE GIMEL", "libell_d_acheminement": "ST PRIEST DE GIMEL", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19236"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb9434db3493180181cd5a79ca7641d07a7222b0", "fields": {"nom_de_la_commune": "ST ROBERT", "libell_d_acheminement": "ST ROBERT", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19239"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fead765167629878c0b93229c85a38d8ee966d5", "fields": {"nom_de_la_commune": "ST SETIERS", "libell_d_acheminement": "ST SETIERS", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19241"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6980bcc3439538b38ce8240fa4014204d70da7ae", "fields": {"nom_de_la_commune": "ST SULPICE LES BOIS", "libell_d_acheminement": "ST SULPICE LES BOIS", "code_postal": "19250", "coordonnees_gps": [45.5327331418, 2.12561107257], "code_commune_insee": "19244"}, "geometry": {"type": "Point", "coordinates": [2.12561107257, 45.5327331418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a772b2fb3ab91991b33077b75092baf74ec4f9d", "fields": {"nom_de_la_commune": "ST SYLVAIN", "libell_d_acheminement": "ST SYLVAIN", "code_postal": "19380", "coordonnees_gps": [45.1425705015, 1.85972993392], "code_commune_insee": "19245"}, "geometry": {"type": "Point", "coordinates": [1.85972993392, 45.1425705015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c646b0b0172e2f0f9feee838f4e589fe57702846", "fields": {"nom_de_la_commune": "ST VIANCE", "libell_d_acheminement": "ST VIANCE", "code_postal": "19240", "coordonnees_gps": [45.2278338531, 1.45884900159], "code_commune_insee": "19246"}, "geometry": {"type": "Point", "coordinates": [1.45884900159, 45.2278338531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a77b812749176ce7bea8c8ca4d5d21a1095ec43c", "fields": {"nom_de_la_commune": "ST VICTOUR", "libell_d_acheminement": "ST VICTOUR", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19247"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "939332af7ad953d664e2e6a4dee92bfb7117d23e", "fields": {"nom_de_la_commune": "SERANDON", "libell_d_acheminement": "SERANDON", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19256"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cea9d3981acf2b78432de11026f6a213e3fcc08", "fields": {"nom_de_la_commune": "SEXCLES", "libell_d_acheminement": "SEXCLES", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19259"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cc0fe342879360b5a7bbdbc5ee5be2eff02a412", "fields": {"nom_de_la_commune": "TARNAC", "libell_d_acheminement": "TARNAC", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19265"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d955ba7f57e000ccc3bdfec445206c9bf726f3", "fields": {"nom_de_la_commune": "TULLE", "libell_d_acheminement": "TULLE", "code_postal": "19000", "coordonnees_gps": [45.2793808785, 1.76981536054], "code_commune_insee": "19272"}, "geometry": {"type": "Point", "coordinates": [1.76981536054, 45.2793808785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe4adf01c5041296afcb4379e7ac254371251a6f", "fields": {"nom_de_la_commune": "USSEL", "libell_d_acheminement": "USSEL", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19275"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9890b7dcb41a807db21cfb42fa0d2f0924fe1e1", "fields": {"code_postal": "19200", "code_commune_insee": "19275", "libell_d_acheminement": "USSEL", "ligne_5": "LA TOURETTE", "nom_de_la_commune": "USSEL", "coordonnees_gps": [45.541954447, 2.3447608402]}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9193811aee22385376e1172db103abcd93a94767", "fields": {"code_postal": "19200", "code_commune_insee": "19275", "libell_d_acheminement": "USSEL", "ligne_5": "ST DEZERY", "nom_de_la_commune": "USSEL", "coordonnees_gps": [45.541954447, 2.3447608402]}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ee244476957eb25ec0500e967d04aa0896ad4f7", "fields": {"nom_de_la_commune": "UZERCHE", "libell_d_acheminement": "UZERCHE", "code_postal": "19140", "coordonnees_gps": [45.4534244824, 1.58484255236], "code_commune_insee": "19276"}, "geometry": {"type": "Point", "coordinates": [1.58484255236, 45.4534244824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97527d522284df5322358c6ca554590014d0a5c", "fields": {"nom_de_la_commune": "VALIERGUES", "libell_d_acheminement": "VALIERGUES", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19277"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b700e86a4d862b054c569059ae4a0075a5aac7b6", "fields": {"nom_de_la_commune": "VEIX", "libell_d_acheminement": "VEIX", "code_postal": "19260", "coordonnees_gps": [45.5242684959, 1.78346555124], "code_commune_insee": "19281"}, "geometry": {"type": "Point", "coordinates": [1.78346555124, 45.5242684959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44dd9f901eeb108504ce0ec43d629426a117e591", "fields": {"nom_de_la_commune": "VEYRIERES", "libell_d_acheminement": "VEYRIERES", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19283"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cd23ebda1ff809c98ed3897f43250c5c27d37ce", "fields": {"nom_de_la_commune": "VOUTEZAC", "libell_d_acheminement": "VOUTEZAC", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19288"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757eba0b2304e51997d3bcc654b7d302e7958676", "fields": {"nom_de_la_commune": "YSSANDON", "libell_d_acheminement": "YSSANDON", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19289"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30489a5ef40cfee4927b4af1c1a2cc82b17e1fe7", "fields": {"nom_de_la_commune": "AGENCOURT", "libell_d_acheminement": "AGENCOURT", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21001"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05a9f7bc8b0a959bedbdf5000ff0f100c108ec5", "fields": {"nom_de_la_commune": "AISEY SUR SEINE", "libell_d_acheminement": "AISEY SUR SEINE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21006"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45f7ae758d428c166bb6bfe9a79a2f69f68469bf", "fields": {"nom_de_la_commune": "ALISE STE REINE", "libell_d_acheminement": "ALISE STE REINE", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21008"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea1a0aa0c1be9ba1c87357a34f380fb7b75e2270", "fields": {"nom_de_la_commune": "ALLEREY", "libell_d_acheminement": "ALLEREY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21009"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "065d2a6b7819608523076c5aa69a80efff20036f", "fields": {"nom_de_la_commune": "AMPILLY LE SEC", "libell_d_acheminement": "AMPILLY LE SEC", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21012"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73da9e88e19ac7f8bb51f3387dd5ed95c2bc5120", "fields": {"nom_de_la_commune": "ANCEY", "libell_d_acheminement": "ANCEY", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21013"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6a1730c8c45fedada351c3c1a4c536320728371", "fields": {"nom_de_la_commune": "ASNIERES LES DIJON", "libell_d_acheminement": "ASNIERES LES DIJON", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21027"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35142b9f1a0db5fa92d14f387cb7eafdec19938a", "fields": {"nom_de_la_commune": "AUBIGNY LA RONCE", "libell_d_acheminement": "AUBIGNY LA RONCE", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21032"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4dfe72f97d621e662b4ad4e5c5035ab33a1418a", "fields": {"nom_de_la_commune": "AUVILLARS SUR SAONE", "libell_d_acheminement": "AUVILLARS SUR SAONE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21035"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca67b6c64361bb32cf02183a4d3e8239aa7f5e53", "fields": {"nom_de_la_commune": "BAUBIGNY", "libell_d_acheminement": "BAUBIGNY", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21050"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02626ed86142e058a1e28355515a7d67ff5084c6", "fields": {"nom_de_la_commune": "BAULME LA ROCHE", "libell_d_acheminement": "BAULME LA ROCHE", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21051"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70fbacfc21abc7acd612e0d03dd229ba31db52d0", "fields": {"nom_de_la_commune": "BEAUNE", "libell_d_acheminement": "BEAUNE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21054"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0c59d31766004bd11293e8c782910be95be8b2f", "fields": {"nom_de_la_commune": "BELLENEUVE", "libell_d_acheminement": "BELLENEUVE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21060"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0378477c256804270c6788efe7b81a7429a58794", "fields": {"nom_de_la_commune": "BENEUVRE", "libell_d_acheminement": "BENEUVRE", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21063"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98d2ec2aeebb2e81e058bb36663e1aaa04b68b9", "fields": {"nom_de_la_commune": "BEURIZOT", "libell_d_acheminement": "BEURIZOT", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21069"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c040d6877bcdaa7259a36f62393677c9a74b25b5", "fields": {"nom_de_la_commune": "BIERRE LES SEMUR", "libell_d_acheminement": "BIERRE LES SEMUR", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21073"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941c033021e5d024e525d573e8ff5970832e72ed", "fields": {"nom_de_la_commune": "COUVERTPUIS", "libell_d_acheminement": "COUVERTPUIS", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55133"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db54f51393adfaaecc0ac7128abf6cb889f5eee8", "fields": {"nom_de_la_commune": "CUMIERES LE MORT HOMME", "libell_d_acheminement": "CUMIERES LE MORT HOMME", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55139"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b03143734767f01ab911ff75769b5fadc71cc05e", "fields": {"nom_de_la_commune": "CUNEL", "libell_d_acheminement": "CUNEL", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55140"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65b06a1e6405b6ac249379cd9ebd2aed37892582", "fields": {"nom_de_la_commune": "DAGONVILLE", "libell_d_acheminement": "DAGONVILLE", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55141"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5997dff1bf945fd7abfb6aa089eb321eac0d82cb", "fields": {"nom_de_la_commune": "DELUT", "libell_d_acheminement": "DELUT", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55149"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffdab92caffee82098c93744b6a147bd71e11238", "fields": {"nom_de_la_commune": "DEMANGE AUX EAUX", "libell_d_acheminement": "DEMANGE AUX EAUX", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55150"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4ae24d72030cd702d13866ce2ccd1c0e6578eb", "fields": {"nom_de_la_commune": "DOMREMY LA CANNE", "libell_d_acheminement": "DOMREMY LA CANNE", "code_postal": "55240", "coordonnees_gps": [49.2813278939, 5.71333245687], "code_commune_insee": "55162"}, "geometry": {"type": "Point", "coordinates": [5.71333245687, 49.2813278939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acbce5db968a8f7702d6c75dcf60a3b3036f3729", "fields": {"nom_de_la_commune": "DOUAUMONT", "libell_d_acheminement": "DOUAUMONT", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55164"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df67f04f54211a801ed1676d4a227ef3815018dd", "fields": {"nom_de_la_commune": "DOULCON", "libell_d_acheminement": "DOULCON", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55165"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2058ab297d68e65e53f47b32e983c1e55996026f", "fields": {"nom_de_la_commune": "EPIEZ SUR MEUSE", "libell_d_acheminement": "EPIEZ SUR MEUSE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55173"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f751a321bff230bcc30c600295d04fe3dd6354d", "fields": {"nom_de_la_commune": "ERNEVILLE AUX BOIS", "libell_d_acheminement": "ERNEVILLE AUX BOIS", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55179"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb4be8298f2a23eff14f2c43dd658c4b47bee2e", "fields": {"nom_de_la_commune": "EUVILLE", "libell_d_acheminement": "EUVILLE", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55184"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983fe05dccf62d8b06f1bffb32c9e8fd394b27ef", "fields": {"code_postal": "55200", "code_commune_insee": "55184", "libell_d_acheminement": "EUVILLE", "ligne_5": "VILLE ISSEY", "nom_de_la_commune": "EUVILLE", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc83fef4d6db6394d7fdc4d09bf7cfcab958953a", "fields": {"nom_de_la_commune": "EVRES", "libell_d_acheminement": "EVRES", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55185"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941f21eda81654fca75719f709ccfa10a8e1e047", "fields": {"nom_de_la_commune": "FLEURY DEVANT DOUAUMONT", "libell_d_acheminement": "FLEURY DEVANT DOUAUMONT", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55189"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4785fdf4708afad231f4486689ed8855907a261a", "fields": {"nom_de_la_commune": "FONTAINES ST CLAIR", "libell_d_acheminement": "FONTAINES ST CLAIR", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55192"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25941b3e3a1374710633828d87d6b63a479dbaf0", "fields": {"nom_de_la_commune": "FROIDOS", "libell_d_acheminement": "FROIDOS", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55199"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ac5a4911fcfb75bebe76d4a0aa0dba3cf75361", "fields": {"nom_de_la_commune": "GESNES EN ARGONNE", "libell_d_acheminement": "GESNES EN ARGONNE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55208"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "378272555b0f26f32800cecab2c80268c543e9b3", "fields": {"nom_de_la_commune": "GIRAUVOISIN", "libell_d_acheminement": "GIRAUVOISIN", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55212"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffea21c081cc85a1bac0ddec7651ee15bf1c14dc", "fields": {"nom_de_la_commune": "GIVRAUVAL", "libell_d_acheminement": "GIVRAUVAL", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55214"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec252f7eb98e20568e40e533339d7a029adabede", "fields": {"nom_de_la_commune": "GREMILLY", "libell_d_acheminement": "GREMILLY", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55218"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "350c49997ab36588e76e271a82a36c668219e9a4", "fields": {"nom_de_la_commune": "GUERPONT", "libell_d_acheminement": "GUERPONT", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55221"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3653ac252fcf8ecd70a1cea9d550e4c4b366c946", "fields": {"nom_de_la_commune": "GUSSAINVILLE", "libell_d_acheminement": "GUSSAINVILLE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55222"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cd6510fa4b00a7b3e8230d0d2481a777f1b51e7", "fields": {"nom_de_la_commune": "HANNONVILLE SOUS LES COTES", "libell_d_acheminement": "HANNONVILLE SOUS LES COTES", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55228"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deb56767b96c12ab9250707920d98b3cd9a34b02", "fields": {"nom_de_la_commune": "HENNEMONT", "libell_d_acheminement": "HENNEMONT", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55242"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d396c13ed3c95129f8bd5a2bfd0fe8bf6746ab", "fields": {"nom_de_la_commune": "HOUDELAINCOURT", "libell_d_acheminement": "HOUDELAINCOURT", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55248"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae584eed883af3e3f101344b23d8bbce206a5d65", "fields": {"nom_de_la_commune": "INOR", "libell_d_acheminement": "INOR", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55250"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e86088d03aa87c5af1c01ab7e074407ac9a798d", "fields": {"nom_de_la_commune": "LES TROIS DOMAINES", "libell_d_acheminement": "LES TROIS DOMAINES", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55254"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80a2c735f91926255d5e779317b5c8b6fabf21fa", "fields": {"code_postal": "55220", "code_commune_insee": "55254", "libell_d_acheminement": "LES TROIS DOMAINES", "ligne_5": "ISSONCOURT", "nom_de_la_commune": "LES TROIS DOMAINES", "coordonnees_gps": [49.0264953625, 5.30234467263]}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b327300c07fd9a64224de1e93b9a80897d4863a1", "fields": {"nom_de_la_commune": "JUVIGNY SUR LOISON", "libell_d_acheminement": "JUVIGNY SUR LOISON", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55262"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c196d8d2423e1cc0bbc10dbab3171627f3a009", "fields": {"nom_de_la_commune": "LABEUVILLE", "libell_d_acheminement": "LABEUVILLE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55265"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc62a892943040cff2ff4c5f59f198c4641a0d42", "fields": {"nom_de_la_commune": "LACROIX SUR MEUSE", "libell_d_acheminement": "LACROIX SUR MEUSE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55268"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9680a1ee8626e3d4daf8f2067cb5542f819ca47", "fields": {"nom_de_la_commune": "LAHAYVILLE", "libell_d_acheminement": "LAHAYVILLE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55270"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a5385b60a3093f114d7b9d905e419b595a749b0", "fields": {"nom_de_la_commune": "LAIMONT", "libell_d_acheminement": "LAIMONT", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55272"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00cf19fc3a3fa45cc3169fc06799fd1115a54caa", "fields": {"code_postal": "55300", "code_commune_insee": "55274", "libell_d_acheminement": "LAMORVILLE", "ligne_5": "DEUXNOUDS AUX BOIS", "nom_de_la_commune": "LAMORVILLE", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f22a5e070a9d0a26f58799c55cfb434bfb4fd6a", "fields": {"code_postal": "55300", "code_commune_insee": "55274", "libell_d_acheminement": "LAMORVILLE", "ligne_5": "LAVIGNEVILLE", "nom_de_la_commune": "LAMORVILLE", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c85922739dcd613e10c90b0bc9350852b36a364", "fields": {"nom_de_la_commune": "LAVALLEE", "libell_d_acheminement": "LAVALLEE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55282"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f9b9c5ce1978b8a6de96be684d93cd73b6178a4", "fields": {"nom_de_la_commune": "LAVINCOURT", "libell_d_acheminement": "LAVINCOURT", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55284"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e88566baff35823b9e9cad0b08fa76010b5ced", "fields": {"nom_de_la_commune": "LEVONCOURT", "libell_d_acheminement": "LEVONCOURT", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55289"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6983e1916c0f1a623eb17c7934b5bb14ec96ebdd", "fields": {"nom_de_la_commune": "LISLE EN RIGAULT", "libell_d_acheminement": "LISLE EN RIGAULT", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55296"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1706c15441566851c52991cab24e79f6350fdd6", "fields": {"nom_de_la_commune": "LONGEAUX", "libell_d_acheminement": "LONGEAUX", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55300"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64b2136e0315d2d97c438aa0da438cf2bb4eb667", "fields": {"nom_de_la_commune": "LOUPPY LE CHATEAU", "libell_d_acheminement": "LOUPPY LE CHATEAU", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55304"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfaaf86dd73436f9c7e10f8e706bc8cd4d12dee1", "fields": {"nom_de_la_commune": "LUZY ST MARTIN", "libell_d_acheminement": "LUZY ST MARTIN", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55310"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61cd0baeb5fa43a5d7ccf703b050219f0896f190", "fields": {"nom_de_la_commune": "MAIZEY", "libell_d_acheminement": "MAIZEY", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55312"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b89c00343f38de6e0c1c347590af0a2f7be883d6", "fields": {"nom_de_la_commune": "MARCHEVILLE EN WOEVRE", "libell_d_acheminement": "MARCHEVILLE EN WOEVRE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55320"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6abcc8368047b3f70aa98acf9b21acaf0c473852", "fields": {"nom_de_la_commune": "MARSON SUR BARBOURE", "libell_d_acheminement": "MARSON SUR BARBOURE", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55322"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ebfae2b0167262d29a03390bf6923093b5dbbf", "fields": {"nom_de_la_commune": "MENIL SUR SAULX", "libell_d_acheminement": "MENIL SUR SAULX", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55335"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975a9f515debff291ab9078badf52e69656e7dd1", "fields": {"code_postal": "55150", "code_commune_insee": "55341", "libell_d_acheminement": "MOIREY FLABAS CREPION", "ligne_5": "CREPION", "nom_de_la_commune": "MOIREY FLABAS CREPION", "coordonnees_gps": [49.3426883563, 5.43366095865]}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc73cdcbdc72ee9602c5c03cf49c3edbddd43d05", "fields": {"nom_de_la_commune": "MONTBLAINVILLE", "libell_d_acheminement": "MONTBLAINVILLE", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55343"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02114b90d10845ae267365e9f8e08c94dee7b92", "fields": {"nom_de_la_commune": "MONTBRAS", "libell_d_acheminement": "MONTBRAS", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55344"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e74ab416fc8a49ae9fcf1e248194207e2d1a51d3", "fields": {"nom_de_la_commune": "MONTIGNY LES VAUCOULEURS", "libell_d_acheminement": "MONTIGNY LES VAUCOULEURS", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55350"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35229126443fcbd0bb440047cb9c20b3c493e486", "fields": {"nom_de_la_commune": "VAL D ORNAIN", "libell_d_acheminement": "VAL D ORNAIN", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55366"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c8c5420c130d2c953a4961892580fa2d688032", "fields": {"nom_de_la_commune": "NAIX AUX FORGES", "libell_d_acheminement": "NAIX AUX FORGES", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55370"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db33f6b3e61644fc1e6fe711e07cc5ee36cb4a3a", "fields": {"nom_de_la_commune": "NANCOIS LE GRAND", "libell_d_acheminement": "NANCOIS LE GRAND", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55371"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79643ea93d54c0667e1441124c0b19d106fdce5d", "fields": {"nom_de_la_commune": "NANT LE PETIT", "libell_d_acheminement": "NANT LE PETIT", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55374"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3740e20b5da47aea5ce1ae28d8331b0696eb39ad", "fields": {"nom_de_la_commune": "NANTILLOIS", "libell_d_acheminement": "NANTILLOIS", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55375"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec15bc8d36bf048cabf8983e24a18f4c12c03f6a", "fields": {"nom_de_la_commune": "NEPVANT", "libell_d_acheminement": "NEPVANT", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55377"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "751631bde27f835c7c054b9c96f45454a8be0f8c", "fields": {"code_postal": "55250", "code_commune_insee": "55389", "libell_d_acheminement": "NUBECOURT", "ligne_5": "BULAINVILLE", "nom_de_la_commune": "NUBECOURT", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e0d250c3ec1bfefe18ac662b3c94dfcd6e523b0", "fields": {"nom_de_la_commune": "PARFONDRUPT", "libell_d_acheminement": "PARFONDRUPT", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55400"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf0072c5ce8e21228f759e5f22922677b92f235c", "fields": {"nom_de_la_commune": "LES PAROCHES", "libell_d_acheminement": "LES PAROCHES", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55401"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcddeec0578442e9ee914f748cc37a408067ee43", "fields": {"nom_de_la_commune": "PONT SUR MEUSE", "libell_d_acheminement": "PONT SUR MEUSE", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55407"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a7d458e571f8159c42de9e41d6ffaa83d63f811", "fields": {"code_postal": "55250", "code_commune_insee": "55423", "libell_d_acheminement": "REMBERCOURT SOMMAISNE", "ligne_5": "SOMMAISNE", "nom_de_la_commune": "REMBERCOURT SOMMAISNE", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a094d6262329a140bf12c27f890687c580c1c6", "fields": {"nom_de_la_commune": "REMENNECOURT", "libell_d_acheminement": "REMENNECOURT", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55424"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a40f1f6ae26af4208c83544991e5a40b3508b1ee", "fields": {"nom_de_la_commune": "RESSON", "libell_d_acheminement": "RESSON", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55426"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a144ddbabbb8aeaac77914aeab1ffe7c6bd4bb7c", "fields": {"nom_de_la_commune": "REVIGNY SUR ORNAIN", "libell_d_acheminement": "REVIGNY SUR ORNAIN", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55427"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df38f739e9c44694d77bc19e836b7860efc43a21", "fields": {"nom_de_la_commune": "RUMONT", "libell_d_acheminement": "RUMONT", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55446"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1579ff76bc25e81def3c400612b1abada7442fe", "fields": {"nom_de_la_commune": "ST GERMAIN SUR MEUSE", "libell_d_acheminement": "ST GERMAIN SUR MEUSE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55456"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5b39ad9dd8525d73982e0969cf936e0c1eb387", "fields": {"nom_de_la_commune": "ST JOIRE", "libell_d_acheminement": "ST JOIRE", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55459"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09c7727786d1697a3fff00a79b17ba87f531e998", "fields": {"nom_de_la_commune": "ST MAURICE SOUS LES COTES", "libell_d_acheminement": "ST MAURICE SOUS LES COTES", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55462"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f55b5cba3d451d5e2a2503b554ca1abbc5ab401", "fields": {"nom_de_la_commune": "ST PIERREVILLERS", "libell_d_acheminement": "ST PIERREVILLERS", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55464"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e0b02cb6f709ac0543b78282a8340d05d99d4f", "fields": {"nom_de_la_commune": "ST REMY LA CALONNE", "libell_d_acheminement": "ST REMY LA CALONNE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55465"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d9b6765137c142dda119fb74c3139e47375d47", "fields": {"nom_de_la_commune": "SALMAGNE", "libell_d_acheminement": "SALMAGNE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55466"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bff287c356b9015aeb66c750fd7c2ad649d6e062", "fields": {"code_postal": "55500", "code_commune_insee": "55472", "libell_d_acheminement": "SAULVAUX", "ligne_5": "VAUX LA GRANDE", "nom_de_la_commune": "SAULVAUX", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7fb363f134a81d93cd1dcbabd946bcc031e5f38", "fields": {"nom_de_la_commune": "SAVONNIERES DEVANT BAR", "libell_d_acheminement": "SAVONNIERES DEVANT BAR", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55476"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df58f69273fa37a6a1a974020ee372435689b85c", "fields": {"nom_de_la_commune": "SAVONNIERES EN PERTHOIS", "libell_d_acheminement": "SAVONNIERES EN PERTHOIS", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55477"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcecc373f0c564147824f33abeadae959d4b4e02", "fields": {"nom_de_la_commune": "SEIGNEULLES", "libell_d_acheminement": "SEIGNEULLES", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55479"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda5663d06f7aaec60496aabf98e218171cfe3c7", "fields": {"nom_de_la_commune": "SEPVIGNY", "libell_d_acheminement": "SEPVIGNY", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55485"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4efaa3677c239097ed374d4cfc32bf98396978d", "fields": {"nom_de_la_commune": "SORCY ST MARTIN", "libell_d_acheminement": "SORCY ST MARTIN", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55496"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57fefceaca5d82e6b670d08ab4c18545f4b21296", "fields": {"nom_de_la_commune": "STAINVILLE", "libell_d_acheminement": "STAINVILLE", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55501"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d52b3e1bcc1d542f7f4cdc607c08940dd3c2861", "fields": {"nom_de_la_commune": "STENAY", "libell_d_acheminement": "STENAY", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55502"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ce0293a4fee2ae82014c64755294352834434c", "fields": {"nom_de_la_commune": "THILLOMBOIS", "libell_d_acheminement": "THILLOMBOIS", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55506"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9755345d03c238381504534d7bb068f671d79b5", "fields": {"nom_de_la_commune": "THONNE LES PRES", "libell_d_acheminement": "THONNE LES PRES", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55510"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "884178d8084a038bd07622ae3a3dda1abddb1da2", "fields": {"nom_de_la_commune": "THONNELLE", "libell_d_acheminement": "THONNELLE", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55511"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e26e0d49da17bb75d0a791d1279bdd08a25b018", "fields": {"nom_de_la_commune": "TREMONT SUR SAULX", "libell_d_acheminement": "TREMONT SUR SAULX", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55514"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba0a2399bfdfc898e387f0298e288ff5d9467bbd", "fields": {"nom_de_la_commune": "COUSANCES LES TRICONVILLE", "libell_d_acheminement": "COUSANCES LES TRICONVILLE", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55518"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86b2b71f85c86c38f5c89e92b71284b87256c3e7", "fields": {"nom_de_la_commune": "TROUSSEY", "libell_d_acheminement": "TROUSSEY", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55520"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030a597a9dad6755f7b2b89f6b0dcb42850af8bc", "fields": {"nom_de_la_commune": "TROYON", "libell_d_acheminement": "TROYON", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55521"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e95cd84195aeb2085d48a9e660f5f4556aeb9b8", "fields": {"nom_de_la_commune": "UGNY SUR MEUSE", "libell_d_acheminement": "UGNY SUR MEUSE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55522"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310ec2bac990527b2e0dd4c6f40a3c2b49669e0f", "fields": {"nom_de_la_commune": "VADONVILLE", "libell_d_acheminement": "VADONVILLE", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55526"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad35dc285ae0556291e6aafd5a5bb380aa219b60", "fields": {"code_postal": "55300", "code_commune_insee": "55530", "libell_d_acheminement": "VALBOIS", "ligne_5": "SAVONNIERES EN WOEVRE", "nom_de_la_commune": "VALBOIS", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c6cfb2d67e41260320385f80b60435462e2ea5", "fields": {"nom_de_la_commune": "VAUDEVILLE LE HAUT", "libell_d_acheminement": "VAUDEVILLE LE HAUT", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55534"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e095f34e66523b751e2215f582b9f5b8e06885d", "fields": {"nom_de_la_commune": "VAUDONCOURT", "libell_d_acheminement": "VAUDONCOURT", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55535"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a891439e49d49771b6a504d4e9afcf57148c9ae", "fields": {"nom_de_la_commune": "VIGNEUL SOUS MONTMEDY", "libell_d_acheminement": "VIGNEUL SOUS MONTMEDY", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55552"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c0a5365891a1b8428b096b37c81b3bfd5252ab", "fields": {"nom_de_la_commune": "VILLEROY SUR MEHOLLE", "libell_d_acheminement": "VILLEROY SUR MEHOLLE", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55559"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de13eb8173ac45e6f427de48b0f2ffcc1818a7f", "fields": {"nom_de_la_commune": "VILLERS AUX VENTS", "libell_d_acheminement": "VILLERS AUX VENTS", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55560"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2715767ac790e3a53cce316dd573b9187711c393", "fields": {"nom_de_la_commune": "VILLERS LES MANGIENNES", "libell_d_acheminement": "VILLERS LES MANGIENNES", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55563"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f1006373dc04662654ece7cf769681335eae82", "fields": {"nom_de_la_commune": "VILLERS SUR MEUSE", "libell_d_acheminement": "VILLERS SUR MEUSE", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55566"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23517251ab0038a3ae119643629829958cbdacbb", "fields": {"nom_de_la_commune": "VILLE SUR COUSANCES", "libell_d_acheminement": "VILLE SUR COUSANCES", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55567"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd0c0a8f72fb72ba581e2586d14fcff092a3c62", "fields": {"nom_de_la_commune": "VILLE SUR SAULX", "libell_d_acheminement": "VILLE SUR SAULX", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55568"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea12019a8931fd64fa208a7ae70edd590549b25", "fields": {"nom_de_la_commune": "WOIMBEY", "libell_d_acheminement": "WOIMBEY", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55584"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43940a652f037e98d00f0c6ecd92a3c77cf6ec2e", "fields": {"nom_de_la_commune": "ST PRIEST SOUS AIXE", "libell_d_acheminement": "ST PRIEST SOUS AIXE", "code_postal": "87700", "coordonnees_gps": [45.7952355445, 1.1142799872], "code_commune_insee": "87177"}, "geometry": {"type": "Point", "coordinates": [1.1142799872, 45.7952355445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e88e150e9fad7040051d179e8940af705f5ff5c", "fields": {"nom_de_la_commune": "ST SORNIN LEULAC", "libell_d_acheminement": "ST SORNIN LEULAC", "code_postal": "87290", "coordonnees_gps": [46.1497841077, 1.2728577587], "code_commune_insee": "87180"}, "geometry": {"type": "Point", "coordinates": [1.2728577587, 46.1497841077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f85e3b58371fe9bac1eb90b6bacac1259623f9d", "fields": {"nom_de_la_commune": "ST SULPICE LES FEUILLES", "libell_d_acheminement": "ST SULPICE LES FEUILLES", "code_postal": "87160", "coordonnees_gps": [46.3147995575, 1.35815432469], "code_commune_insee": "87182"}, "geometry": {"type": "Point", "coordinates": [1.35815432469, 46.3147995575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeb4419fc6ac8f520f106d2dde5091757eccd926", "fields": {"nom_de_la_commune": "ST SYMPHORIEN SUR COUZE", "libell_d_acheminement": "ST SYMPHORIEN SUR COUZE", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87184"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29123c7f397904e0442d253954a0e8f90d5f7281", "fields": {"nom_de_la_commune": "SURDOUX", "libell_d_acheminement": "SURDOUX", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87193"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1eee7d9f23cd5f25ed3ccc5edb92df934c73ce1", "fields": {"nom_de_la_commune": "THORIGNE SUR DUE", "libell_d_acheminement": "THORIGNE SUR DUE", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72358"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "549cf291181f625f5ece11d9d2e7ef4153971732", "fields": {"nom_de_la_commune": "VERNEIL LE CHETIF", "libell_d_acheminement": "VERNEIL LE CHETIF", "code_postal": "72360", "coordonnees_gps": [47.7503941662, 0.276407152429], "code_commune_insee": "72369"}, "geometry": {"type": "Point", "coordinates": [0.276407152429, 47.7503941662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7e4830eca3139af086e07ccc046aac95271445e", "fields": {"nom_de_la_commune": "VILLAINES SOUS MALICORNE", "libell_d_acheminement": "VILLAINES SOUS MALICORNE", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72377"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f885e92087995ccb8332488d049d1bbd2dba197", "fields": {"nom_de_la_commune": "VIVOIN", "libell_d_acheminement": "VIVOIN", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72380"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4c6f997d91e5da0a064794669caf3eec45fa5eb", "fields": {"nom_de_la_commune": "YVRE L EVEQUE", "libell_d_acheminement": "YVRE L EVEQUE", "code_postal": "72530", "coordonnees_gps": [48.0234814584, 0.281275359673], "code_commune_insee": "72386"}, "geometry": {"type": "Point", "coordinates": [0.281275359673, 48.0234814584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b17f51c7220ef64e2b0bbbb42c7fa379399cb91", "fields": {"nom_de_la_commune": "AILLON LE VIEUX", "libell_d_acheminement": "AILLON LE VIEUX", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73005"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "655a57ee78e17ca032b39f82daba39970a160a95", "fields": {"code_postal": "73210", "code_commune_insee": "73006", "libell_d_acheminement": "AIME LA PLAGNE", "ligne_5": "GRANIER", "nom_de_la_commune": "AIME LA PLAGNE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8baa0beacf15de1a5aa058dd746252ee86c647cd", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "ALBENS", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e8a14395d438b87aca0148e9dcbb620c157ab7", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "MOGNARD", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43501ca31fd292e2ce6215304d717f09ae896f0e", "fields": {"nom_de_la_commune": "LES ALLUES", "libell_d_acheminement": "LES ALLUES", "code_postal": "73550", "coordonnees_gps": [45.3696826174, 6.58760256597], "code_commune_insee": "73015"}, "geometry": {"type": "Point", "coordinates": [6.58760256597, 45.3696826174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e97439e0ee377d6f64642b03ea5879e2e569274c", "fields": {"nom_de_la_commune": "BARBY", "libell_d_acheminement": "BARBY", "code_postal": "73230", "coordonnees_gps": [45.6155984939, 5.99766818006], "code_commune_insee": "73030"}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6a6716e68f0f8a82829755e5a23b28d46f2003", "fields": {"nom_de_la_commune": "LA BATHIE", "libell_d_acheminement": "LA BATHIE", "code_postal": "73540", "coordonnees_gps": [45.6337991816, 6.45138868013], "code_commune_insee": "73032"}, "geometry": {"type": "Point", "coordinates": [6.45138868013, 45.6337991816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dff8b897060bba0afd5d8e7ba7d1158bcb1888cd", "fields": {"code_postal": "73270", "code_commune_insee": "73034", "libell_d_acheminement": "BEAUFORT SUR DORON", "ligne_5": "ARECHES", "nom_de_la_commune": "BEAUFORT", "coordonnees_gps": [45.6914287305, 6.59333922308]}, "geometry": {"type": "Point", "coordinates": [6.59333922308, 45.6914287305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2513373a414dbef818024792d880c090447c78cb", "fields": {"nom_de_la_commune": "BELLECOMBE EN BAUGES", "libell_d_acheminement": "BELLECOMBE EN BAUGES", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73036"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f544a02458b6f1921f540242bd1af5e79e135ad", "fields": {"nom_de_la_commune": "LA BIOLLE", "libell_d_acheminement": "LA BIOLLE", "code_postal": "73410", "coordonnees_gps": [45.773124755, 5.93479737577], "code_commune_insee": "73043"}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de546d502fc818caa710d6ad702e1e868d3fc2a3", "fields": {"nom_de_la_commune": "BOURG ST MAURICE", "libell_d_acheminement": "BOURG ST MAURICE", "code_postal": "73700", "coordonnees_gps": [45.6553139344, 6.78435107537], "code_commune_insee": "73054"}, "geometry": {"type": "Point", "coordinates": [6.78435107537, 45.6553139344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6c4ac69b859c9b0868638220f6a605bf9219d65", "fields": {"code_postal": "73700", "code_commune_insee": "73054", "libell_d_acheminement": "BOURG ST MAURICE", "ligne_5": "HAUTEVILLE GONDON", "nom_de_la_commune": "BOURG ST MAURICE", "coordonnees_gps": [45.6553139344, 6.78435107537]}, "geometry": {"type": "Point", "coordinates": [6.78435107537, 45.6553139344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85326506741a0b62e2199eac35da36ac002ecd9c", "fields": {"nom_de_la_commune": "BRAMANS", "libell_d_acheminement": "BRAMANS", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73056"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ec112196f65ce8b61ed68308098d4a3a3dfed8c", "fields": {"nom_de_la_commune": "LA BRIDOIRE", "libell_d_acheminement": "LA BRIDOIRE", "code_postal": "73520", "coordonnees_gps": [45.516425766, 5.73063906773], "code_commune_insee": "73058"}, "geometry": {"type": "Point", "coordinates": [5.73063906773, 45.516425766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216bb5db48cd3efba337f2b35b3c76b412266521", "fields": {"nom_de_la_commune": "CHAMPAGNEUX", "libell_d_acheminement": "CHAMPAGNEUX", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73070"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "591c09073772330967a4e454df6a7f92a072f521", "fields": {"nom_de_la_commune": "CHAMP LAURENT", "libell_d_acheminement": "CHAMP LAURENT", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73072"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94dcb9c07240dfe81fd62563800da072cef32383", "fields": {"nom_de_la_commune": "CHANAZ", "libell_d_acheminement": "CHANAZ", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73073"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a01fc0a38ba55e0d508d190627612476ec188a", "fields": {"nom_de_la_commune": "LA CHAVANNE", "libell_d_acheminement": "LA CHAVANNE", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73082"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139ba9f65b34ba26ddff142bacb1cd1e6d6b8295", "fields": {"nom_de_la_commune": "CORBEL", "libell_d_acheminement": "CORBEL", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73092"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e5fdf7cfb7977fff1b5c56801c316fa2e9d22d8", "fields": {"nom_de_la_commune": "DRUMETTAZ CLARAFOND", "libell_d_acheminement": "DRUMETTAZ CLARAFOND", "code_postal": "73420", "coordonnees_gps": [45.6466626086, 5.92320814146], "code_commune_insee": "73103"}, "geometry": {"type": "Point", "coordinates": [5.92320814146, 45.6466626086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c88d8b4736385b265512b4053f264b62bc60b382", "fields": {"nom_de_la_commune": "DULLIN", "libell_d_acheminement": "DULLIN", "code_postal": "73610", "coordonnees_gps": [45.5318935553, 5.78373657089], "code_commune_insee": "73104"}, "geometry": {"type": "Point", "coordinates": [5.78373657089, 45.5318935553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e317d90c1d3b3759689d1c38bc030e535b5fcfe9", "fields": {"nom_de_la_commune": "ESSERTS BLAY", "libell_d_acheminement": "ESSERTS BLAY", "code_postal": "73540", "coordonnees_gps": [45.6337991816, 6.45138868013], "code_commune_insee": "73110"}, "geometry": {"type": "Point", "coordinates": [6.45138868013, 45.6337991816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1552b73e33ddab6901189ff19393bbd2d9ae631d", "fields": {"nom_de_la_commune": "ETABLE", "libell_d_acheminement": "ETABLE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73111"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73db4d5fd051f6105827c98263bce71e70194e0e", "fields": {"nom_de_la_commune": "FEISSONS SUR ISERE", "libell_d_acheminement": "FEISSONS SUR ISERE", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73112"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed3a2d6f513c9e7ee4e5fa6c86f458a2f1b4d320", "fields": {"nom_de_la_commune": "HAUTEVILLE", "libell_d_acheminement": "HAUTEVILLE", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73133"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0855ae7318f99c643cea16414b2f04f9fb06ea7e", "fields": {"nom_de_la_commune": "JACOB BELLECOMBETTE", "libell_d_acheminement": "JACOB BELLECOMBETTE", "code_postal": "73000", "coordonnees_gps": [45.5704322981, 5.91500462734], "code_commune_insee": "73137"}, "geometry": {"type": "Point", "coordinates": [5.91500462734, 45.5704322981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee7a6fc7703df068d3c50ef18c23254e21d3d48d", "fields": {"nom_de_la_commune": "JONGIEUX", "libell_d_acheminement": "JONGIEUX", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73140"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aee9b9fc746eb98c443a4c42a8b647e6f37e4f2", "fields": {"nom_de_la_commune": "LOISIEUX", "libell_d_acheminement": "LOISIEUX", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73147"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3a1a0b24c492d7d0e02bc20270ca59e3d27d2b", "fields": {"nom_de_la_commune": "LUCEY", "libell_d_acheminement": "LUCEY", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73149"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98b75266c657bc139a42cac7579fb7e2e45b9a86", "fields": {"code_postal": "73210", "code_commune_insee": "73150", "libell_d_acheminement": "LA PLAGNE TARENTAISE", "ligne_5": "MACOT LA PLAGNE", "nom_de_la_commune": "LA PLAGNE TARENTAISE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad4a152ded9eee79089f1e076457ca3df5ff3281", "fields": {"nom_de_la_commune": "MERY", "libell_d_acheminement": "MERY", "code_postal": "73420", "coordonnees_gps": [45.6466626086, 5.92320814146], "code_commune_insee": "73155"}, "geometry": {"type": "Point", "coordinates": [5.92320814146, 45.6466626086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9254e70991d68b9350c769c086dc4a1ac4a3a64", "fields": {"nom_de_la_commune": "MONTGILBERT", "libell_d_acheminement": "MONTGILBERT", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73168"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e34c403878078fae1079a2e65d21ee0c4ac91749", "fields": {"nom_de_la_commune": "MONTMELIAN", "libell_d_acheminement": "MONTMELIAN", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73171"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ae52309cb096c31c9929838124cc9584ac6087", "fields": {"nom_de_la_commune": "MONTVERNIER", "libell_d_acheminement": "MONTVERNIER", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73177"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51de30b57c248c7660bfe16aa75425e0b8758fcf", "fields": {"nom_de_la_commune": "LA MOTTE SERVOLEX", "libell_d_acheminement": "LA MOTTE SERVOLEX", "code_postal": "73290", "coordonnees_gps": [45.6012692668, 5.85460489762], "code_commune_insee": "73179"}, "geometry": {"type": "Point", "coordinates": [5.85460489762, 45.6012692668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "984ba0e2442f8f554166f99ae412c888595e54ac", "fields": {"code_postal": "73260", "code_commune_insee": "73187", "libell_d_acheminement": "LA LECHERE", "ligne_5": "PUSSY", "nom_de_la_commune": "LA LECHERE", "coordonnees_gps": [45.5172397456, 6.46368709326]}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6a71f716a5f38fb882d2099cc0c2754dd2aa35", "fields": {"nom_de_la_commune": "PLANAY", "libell_d_acheminement": "PLANAY", "code_postal": "73350", "coordonnees_gps": [45.4506854464, 6.72699335794], "code_commune_insee": "73201"}, "geometry": {"type": "Point", "coordinates": [6.72699335794, 45.4506854464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa92b51a8272a6805601fcec6005b5659a9bf889", "fields": {"nom_de_la_commune": "LE PONT DE BEAUVOISIN", "libell_d_acheminement": "LE PONT DE BEAUVOISIN", "code_postal": "73330", "coordonnees_gps": [45.5472960883, 5.6982391716], "code_commune_insee": "73204"}, "geometry": {"type": "Point", "coordinates": [5.6982391716, 45.5472960883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e8fa081d84a7641a6471966082e2a097f592c0a", "fields": {"nom_de_la_commune": "PUGNY CHATENOD", "libell_d_acheminement": "PUGNY CHATENOD", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73208"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d9c650a2813242ccf6cfc463ffc3d9e9bd67c6", "fields": {"nom_de_la_commune": "ROGNAIX", "libell_d_acheminement": "ROGNAIX", "code_postal": "73730", "coordonnees_gps": [45.5966737513, 6.45704572923], "code_commune_insee": "73216"}, "geometry": {"type": "Point", "coordinates": [6.45704572923, 45.5966737513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d55325dd49cbcb8ab742325f8c4f02a76cc011", "fields": {"nom_de_la_commune": "ST ALBAN D HURTIERES", "libell_d_acheminement": "ST ALBAN D HURTIERES", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73220"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92f56a0f71532e60d92c499a62d767391b267290", "fields": {"code_postal": "73120", "code_commune_insee": "73227", "libell_d_acheminement": "ST BON TARENTAISE", "ligne_5": "COURCHEVEL", "nom_de_la_commune": "ST BON TARENTAISE", "coordonnees_gps": [45.3952559904, 6.63957315218]}, "geometry": {"type": "Point", "coordinates": [6.63957315218, 45.3952559904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f460b98f80b6a641c4e1f344614e56ec2e5c5c", "fields": {"nom_de_la_commune": "ST COLOMBAN DES VILLARDS", "libell_d_acheminement": "ST COLOMBAN DES VILLARDS", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73230"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e09728263f719b4bfeda695284cbbc58ce9b7aba", "fields": {"nom_de_la_commune": "ST FRANCOIS LONGCHAMP", "libell_d_acheminement": "ST FRANCOIS LONGCHAMP", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73235"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd7c4cd936f51ecfbecdf21a565bda9008c97386", "fields": {"nom_de_la_commune": "ST JEAN D ARVES", "libell_d_acheminement": "ST JEAN D ARVES", "code_postal": "73530", "coordonnees_gps": [45.179061484, 6.24624710738], "code_commune_insee": "73242"}, "geometry": {"type": "Point", "coordinates": [6.24624710738, 45.179061484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38016fd9e0d146c0a2cd82667eb259840399e7bc", "fields": {"nom_de_la_commune": "ST JEAN D ARVEY", "libell_d_acheminement": "ST JEAN D ARVEY", "code_postal": "73230", "coordonnees_gps": [45.6155984939, 5.99766818006], "code_commune_insee": "73243"}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57918e7c20491c73a55907877ba492d8a4cefd1d", "fields": {"nom_de_la_commune": "ST JEAN DE COUZ", "libell_d_acheminement": "ST JEAN DE COUZ", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73246"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9482a15441ffecef267998288c8a072251d965fa", "fields": {"nom_de_la_commune": "ST JEAN DE LA PORTE", "libell_d_acheminement": "ST JEAN DE LA PORTE", "code_postal": "73250", "coordonnees_gps": [45.5739753959, 6.15768953868], "code_commune_insee": "73247"}, "geometry": {"type": "Point", "coordinates": [6.15768953868, 45.5739753959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3104b6eeeda1bed61f14579d9057e1abf7933703", "fields": {"nom_de_la_commune": "ST JULIEN MONT DENIS", "libell_d_acheminement": "ST JULIEN MONT DENIS", "code_postal": "73870", "coordonnees_gps": [45.2502051457, 6.413281012], "code_commune_insee": "73250"}, "geometry": {"type": "Point", "coordinates": [6.413281012, 45.2502051457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ad8ce693bd8f0c7975ed9743d506c68dc03746", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73252"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0158b6362355186b0cfc0674dad7a404b95a720b", "fields": {"nom_de_la_commune": "ST OFFENGE", "libell_d_acheminement": "ST OFFENGE", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73263"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "415111d1e1f02f06da7b87d43b7e812c210738bd", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73269"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67e21596d86904b6016dd1e2b83045a5ba4bfbaa", "fields": {"nom_de_la_commune": "ST PIERRE DE SOUCY", "libell_d_acheminement": "ST PIERRE DE SOUCY", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73276"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc7f3bb0c7c1c91af12d0d4d5942ba347bd1ef64", "fields": {"code_postal": "73600", "code_commune_insee": "73284", "libell_d_acheminement": "SALINS FONTAINE", "ligne_5": "FONTAINE LE PUITS", "nom_de_la_commune": "SALINS FONTAINE", "coordonnees_gps": [45.3739609607, 6.53145730027]}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee29b6c012ccac8d4fa2bc071c17535647a394b", "fields": {"nom_de_la_commune": "VALLOIRE", "libell_d_acheminement": "VALLOIRE", "code_postal": "73450", "coordonnees_gps": [45.1313081398, 6.44772577617], "code_commune_insee": "73306"}, "geometry": {"type": "Point", "coordinates": [6.44772577617, 45.1313081398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef01f6dc29f65a032b11c9cac88135eb247cf627", "fields": {"nom_de_la_commune": "VILLARD SALLET", "libell_d_acheminement": "VILLARD SALLET", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73316"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c22a455d5280be0ae4e9ce987958c42a455a6e98", "fields": {"nom_de_la_commune": "VILLARD SUR DORON", "libell_d_acheminement": "VILLARD SUR DORON", "code_postal": "73270", "coordonnees_gps": [45.6914287305, 6.59333922308], "code_commune_insee": "73317"}, "geometry": {"type": "Point", "coordinates": [6.59333922308, 45.6914287305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c20bc9f4c479215033f7273020e289dab97c8063", "fields": {"nom_de_la_commune": "VILLAROUX", "libell_d_acheminement": "VILLAROUX", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73324"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "889cdff66d48a36a729a9a3179af0abfe590feed", "fields": {"nom_de_la_commune": "VOGLANS", "libell_d_acheminement": "VOGLANS", "code_postal": "73420", "coordonnees_gps": [45.6466626086, 5.92320814146], "code_commune_insee": "73329"}, "geometry": {"type": "Point", "coordinates": [5.92320814146, 45.6466626086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ac3ca2ac6ddd4ae7e2cce7ee62173b7aa1f5668", "fields": {"nom_de_la_commune": "ALLINGES", "libell_d_acheminement": "ALLINGES", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74005"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d896e82a3e2c4b7a37bc3bebabb58ba1c523266b", "fields": {"nom_de_la_commune": "ARENTHON", "libell_d_acheminement": "ARENTHON", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74018"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41fa28bc096d5fcf53efa58d3f62115ed5ec3e6c", "fields": {"nom_de_la_commune": "BASSY", "libell_d_acheminement": "BASSY", "code_postal": "74910", "coordonnees_gps": [46.0064819819, 5.83834131113], "code_commune_insee": "74029"}, "geometry": {"type": "Point", "coordinates": [5.83834131113, 46.0064819819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c57613ff8e3631534f05a5daac1fe6ee536d490", "fields": {"nom_de_la_commune": "BELLEVAUX", "libell_d_acheminement": "BELLEVAUX", "code_postal": "74470", "coordonnees_gps": [46.2514067393, 6.54608924177], "code_commune_insee": "74032"}, "geometry": {"type": "Point", "coordinates": [6.54608924177, 46.2514067393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92701f7a55c79ea132421154c831e92223db4d0b", "fields": {"code_postal": "74380", "code_commune_insee": "74040", "libell_d_acheminement": "BONNE", "ligne_5": "LOEX", "nom_de_la_commune": "BONNE", "coordonnees_gps": [46.1808749905, 6.30733667317]}, "geometry": {"type": "Point", "coordinates": [6.30733667317, 46.1808749905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc1795a782efda5935a145cb39472b4129b12e92", "fields": {"nom_de_la_commune": "BOSSEY", "libell_d_acheminement": "BOSSEY", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74044"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a5d12cb2390706f2d4615dba4d6fb570756fd2", "fields": {"nom_de_la_commune": "BRIZON", "libell_d_acheminement": "BRIZON", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74049"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e5885b536bb755c9e3afb871deb09000a147e33", "fields": {"nom_de_la_commune": "CERCIER", "libell_d_acheminement": "CERCIER", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74051"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab9b6552964899969be2c68f66f7324b3d2e5c1", "fields": {"nom_de_la_commune": "CERVENS", "libell_d_acheminement": "CERVENS", "code_postal": "74550", "coordonnees_gps": [46.2997626014, 6.46687107618], "code_commune_insee": "74053"}, "geometry": {"type": "Point", "coordinates": [6.46687107618, 46.2997626014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f8021a1e7fcb3a5d497a5d97b9c4cc33d5c6a9", "fields": {"nom_de_la_commune": "CHATEL", "libell_d_acheminement": "CHATEL", "code_postal": "74390", "coordonnees_gps": [46.2487475128, 6.81692690811], "code_commune_insee": "74063"}, "geometry": {"type": "Point", "coordinates": [6.81692690811, 46.2487475128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fbab4bc1e6c3033c9286ba5a10cc4ad04ffbb8a", "fields": {"nom_de_la_commune": "CHENS SUR LEMAN", "libell_d_acheminement": "CHENS SUR LEMAN", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74070"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "513beabca6461659c3a654d0e94878e105e1b10c", "fields": {"nom_de_la_commune": "CHOISY", "libell_d_acheminement": "CHOISY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74076"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "751c76ce3993f66710e76937298ef0962213cac0", "fields": {"nom_de_la_commune": "CLARAFOND ARCINE", "libell_d_acheminement": "CLARAFOND ARCINE", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74077"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5e0ed0c932cae3f92cc7bac503cf549432fe88", "fields": {"nom_de_la_commune": "COPPONEX", "libell_d_acheminement": "COPPONEX", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74088"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85a3c068198cba0d3883dbb8e6abaaf9cb1c4e20", "fields": {"nom_de_la_commune": "CORNIER", "libell_d_acheminement": "CORNIER", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74090"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca9f5a352143cf1521ff163babb5b12e811bcf2", "fields": {"nom_de_la_commune": "CRANVES SALES", "libell_d_acheminement": "CRANVES SALES", "code_postal": "74380", "coordonnees_gps": [46.1808749905, 6.30733667317], "code_commune_insee": "74094"}, "geometry": {"type": "Point", "coordinates": [6.30733667317, 46.1808749905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "962e950d2894063c320e76e71138a7e0f43bd3ed", "fields": {"nom_de_la_commune": "DOUVAINE", "libell_d_acheminement": "DOUVAINE", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74105"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c37a50313201ca5c0a5a01d9443889ae2a5b8b72", "fields": {"nom_de_la_commune": "DUINGT", "libell_d_acheminement": "DUINGT", "code_postal": "74410", "coordonnees_gps": [45.8038828434, 6.16031679135], "code_commune_insee": "74108"}, "geometry": {"type": "Point", "coordinates": [6.16031679135, 45.8038828434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30a452fe580684507a49689cf8013f4575a90971", "fields": {"nom_de_la_commune": "ENTREVERNES", "libell_d_acheminement": "ENTREVERNES", "code_postal": "74410", "coordonnees_gps": [45.8038828434, 6.16031679135], "code_commune_insee": "74111"}, "geometry": {"type": "Point", "coordinates": [6.16031679135, 45.8038828434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3777e604d5264d825760b33ed08f83656ea9adb6", "fields": {"nom_de_la_commune": "ETAUX", "libell_d_acheminement": "ETAUX", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74116"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f07134137b1dc915962e70ad04e0185c1163f192", "fields": {"nom_de_la_commune": "EXCENEVEX", "libell_d_acheminement": "EXCENEVEX", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74121"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3399a7b5034c040c1d15b853dfa6110a1a1b6df8", "fields": {"nom_de_la_commune": "LA FORCLAZ", "libell_d_acheminement": "LA FORCLAZ", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74129"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7300190c11fd2ca4758167be13999f06214f57", "fields": {"nom_de_la_commune": "FRANCLENS", "libell_d_acheminement": "FRANCLENS", "code_postal": "74910", "coordonnees_gps": [46.0064819819, 5.83834131113], "code_commune_insee": "74130"}, "geometry": {"type": "Point", "coordinates": [5.83834131113, 46.0064819819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9747b123e0ff29c27a98c4fa1e8690482463e9aa", "fields": {"nom_de_la_commune": "GIEZ", "libell_d_acheminement": "GIEZ", "code_postal": "74210", "coordonnees_gps": [45.7728684273, 6.25852210813], "code_commune_insee": "74135"}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "215a097bafadebdfed561237bb8c2c7c32ce350b", "fields": {"nom_de_la_commune": "LES HOUCHES", "libell_d_acheminement": "LES HOUCHES", "code_postal": "74310", "coordonnees_gps": [45.9075030886, 6.79745986726], "code_commune_insee": "74143"}, "geometry": {"type": "Point", "coordinates": [6.79745986726, 45.9075030886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cf8870e022350abaf5dcd122d370425bdeec086", "fields": {"nom_de_la_commune": "LOISIN", "libell_d_acheminement": "LOISIN", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74150"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6048c280e3add20a65d30bd6362227c6d6172bb7", "fields": {"nom_de_la_commune": "LORNAY", "libell_d_acheminement": "LORNAY", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74151"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f171a209e314b5274a01483ef009ebe8a92ab20", "fields": {"nom_de_la_commune": "LULLIN", "libell_d_acheminement": "LULLIN", "code_postal": "74470", "coordonnees_gps": [46.2514067393, 6.54608924177], "code_commune_insee": "74155"}, "geometry": {"type": "Point", "coordinates": [6.54608924177, 46.2514067393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd2e383d84648b835ffd89c1607f66a75a63aed", "fields": {"nom_de_la_commune": "LULLY", "libell_d_acheminement": "LULLY", "code_postal": "74890", "coordonnees_gps": [46.2697106618, 6.38657932887], "code_commune_insee": "74156"}, "geometry": {"type": "Point", "coordinates": [6.38657932887, 46.2697106618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b282bce2cc5f2dc4bb80d092a95ecb763fa498c", "fields": {"nom_de_la_commune": "MARCELLAZ", "libell_d_acheminement": "MARCELLAZ", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74162"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07f5df458be389e1c8181ad94d60623ca059938", "fields": {"nom_de_la_commune": "MARIGNIER", "libell_d_acheminement": "MARIGNIER", "code_postal": "74970", "coordonnees_gps": [46.0951489786, 6.49422859297], "code_commune_insee": "74164"}, "geometry": {"type": "Point", "coordinates": [6.49422859297, 46.0951489786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d594935f0012e86c3336db30146808fc290cedd", "fields": {"nom_de_la_commune": "VILLE SUR YRON", "libell_d_acheminement": "VILLE SUR YRON", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54581"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bf61c45759fb1956ac262cbca5cee62ab0edea9", "fields": {"nom_de_la_commune": "VITTONVILLE", "libell_d_acheminement": "VITTONVILLE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54589"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b29f0e17adec74844b2a2fbc37d2366691aef285", "fields": {"nom_de_la_commune": "XURES", "libell_d_acheminement": "XURES", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54601"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c8fe84eb167953ace73b7264d386c4cf9f153b2", "fields": {"nom_de_la_commune": "ABAUCOURT HAUTECOURT", "libell_d_acheminement": "ABAUCOURT HAUTECOURT", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55002"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25826ee3a91fce470b0950ee5345ce9d7c40f953", "fields": {"nom_de_la_commune": "APREMONT LA FORET", "libell_d_acheminement": "APREMONT LA FORET", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55012"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e330b90ef4585ec887903b7e56af229c0fb6ae3", "fields": {"code_postal": "55300", "code_commune_insee": "55012", "libell_d_acheminement": "APREMONT LA FORET", "ligne_5": "ST AGNANT SOUS LES COTES", "nom_de_la_commune": "APREMONT LA FORET", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04d4958c6d9c7c23e6806332ead6da6b4200b647", "fields": {"nom_de_la_commune": "ARRANCY SUR CRUSNE", "libell_d_acheminement": "ARRANCY SUR CRUSNE", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55013"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c52e3ebde090465e9dfc312d75f0a65b5d7f0f3", "fields": {"nom_de_la_commune": "AVIOTH", "libell_d_acheminement": "AVIOTH", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55022"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "292ba4b6a56659120a241eaf09ad7a605bfbfb40", "fields": {"nom_de_la_commune": "AVOCOURT", "libell_d_acheminement": "AVOCOURT", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55023"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7c526f0cb88c8fc8f505e1f7889d2885ff81d8", "fields": {"nom_de_la_commune": "AZANNES ET SOUMAZANNES", "libell_d_acheminement": "AZANNES ET SOUMAZANNES", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55024"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4438f56e65ae783433e1910ff5a5d34b405e96ec", "fields": {"nom_de_la_commune": "BANTHEVILLE", "libell_d_acheminement": "BANTHEVILLE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55028"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e85630ced28f1ca6676c8b06d06caf3cfe7edbd5", "fields": {"nom_de_la_commune": "BAUDREMONT", "libell_d_acheminement": "BAUDREMONT", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55032"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84865baca2883242eb3204b28699f8a3e72ac5f3", "fields": {"nom_de_la_commune": "BAULNY", "libell_d_acheminement": "BAULNY", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55033"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df3bdb749fc2bb98a68577ee27ecea3697fb98f", "fields": {"nom_de_la_commune": "BAZINCOURT SUR SAULX", "libell_d_acheminement": "BAZINCOURT SUR SAULX", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55035"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad75ecd7bca7ba2d0c8416ca4bd66765a25061cc", "fields": {"nom_de_la_commune": "BEHONNE", "libell_d_acheminement": "BEHONNE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55041"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6b70a18d0f4663c8d163fd32b6473bd54f4800d", "fields": {"nom_de_la_commune": "BENEY EN WOEVRE", "libell_d_acheminement": "BENEY EN WOEVRE", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55046"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d377fbc336a47f982d2fd2dd59fffdd4a712276", "fields": {"nom_de_la_commune": "BEZONVAUX", "libell_d_acheminement": "BEZONVAUX", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55050"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d5fd2e5eb98b425e3fef1478699d5c1fa8904dc", "fields": {"code_postal": "55160", "code_commune_insee": "55060", "libell_d_acheminement": "BONZEE", "ligne_5": "MESNIL SOUS LES COTES", "nom_de_la_commune": "BONZEE", "coordonnees_gps": [49.0949133617, 5.65293437026]}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc3e811638b99e5fb8c3af7ee202628dd4da7652", "fields": {"nom_de_la_commune": "BOULIGNY", "libell_d_acheminement": "BOULIGNY", "code_postal": "55240", "coordonnees_gps": [49.2813278939, 5.71333245687], "code_commune_insee": "55063"}, "geometry": {"type": "Point", "coordinates": [5.71333245687, 49.2813278939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ec233dfec440947b0018e1526c9f1126f99d07", "fields": {"nom_de_la_commune": "BRILLON EN BARROIS", "libell_d_acheminement": "BRILLON EN BARROIS", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55079"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1c811904df925fdc16c6bacb234333afd26cc69", "fields": {"nom_de_la_commune": "BROCOURT EN ARGONNE", "libell_d_acheminement": "BROCOURT EN ARGONNE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55082"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c215a959b2565770c0e669949c78ce38f79cf54", "fields": {"nom_de_la_commune": "BROUSSEY EN BLOIS", "libell_d_acheminement": "BROUSSEY EN BLOIS", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55084"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d3bcad35da58f6d7587fbcd55ebc299deaf1147", "fields": {"nom_de_la_commune": "BUXIERES SOUS LES COTES", "libell_d_acheminement": "BUXIERES SOUS LES COTES", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55093"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb3b5b6c208e1e012aa49d29780c3e406efb2ee", "fields": {"nom_de_la_commune": "CHAILLON", "libell_d_acheminement": "CHAILLON", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55096"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "599fa0cafbe59a03ea4c476a9a82762716304cb7", "fields": {"nom_de_la_commune": "CHASSEY BEAUPRE", "libell_d_acheminement": "CHASSEY BEAUPRE", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55104"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97e4db3a653077e976f49a585e7ad624ec0cbb3", "fields": {"nom_de_la_commune": "CHONVILLE MALAUMONT", "libell_d_acheminement": "CHONVILLE MALAUMONT", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55114"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff3b10dcb0eda5d3b53eb795cfadc07d9d7801ce", "fields": {"code_postal": "55200", "code_commune_insee": "55114", "libell_d_acheminement": "CHONVILLE MALAUMONT", "ligne_5": "MALAUMONT", "nom_de_la_commune": "CHONVILLE MALAUMONT", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa6447a3c563c6f8d4dcd12ff7e7db6443ef43f0", "fields": {"nom_de_la_commune": "CIERGES SOUS MONTFAUCON", "libell_d_acheminement": "CIERGES SOUS MONTFAUCON", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55115"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4c0d4bc61f55c0c177d96f0d9694c3c77d6ec1d", "fields": {"nom_de_la_commune": "CLERMONT EN ARGONNE", "libell_d_acheminement": "CLERMONT EN ARGONNE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55117"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab01e9a2adc97b726886dbb56bc4d4cbe92ee106", "fields": {"code_postal": "55120", "code_commune_insee": "55117", "libell_d_acheminement": "CLERMONT EN ARGONNE", "ligne_5": "JUBECOURT", "nom_de_la_commune": "CLERMONT EN ARGONNE", "coordonnees_gps": [49.116502234, 5.11120528176]}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ad08ab0ea33cbe09189b2efebf45bfaa0c01de", "fields": {"nom_de_la_commune": "CLERY LE GRAND", "libell_d_acheminement": "CLERY LE GRAND", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55118"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b45fddcfdd6765002df50582ca9d2d02a319e54", "fields": {"nom_de_la_commune": "COUROUVRE", "libell_d_acheminement": "COUROUVRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55129"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0414f228b43b87b4bae1a646eddd5d7d40a35d8", "fields": {"nom_de_la_commune": "COUSANCES LES FORGES", "libell_d_acheminement": "COUSANCES LES FORGES", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55132"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44b13e2141a099e2dce5c7d67279e35207fe2d5e", "fields": {"nom_de_la_commune": "DAINVILLE BERTHELEVILLE", "libell_d_acheminement": "DAINVILLE BERTHELEVILLE", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55142"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ca9cc0e34bd088719307563cd0088df97d62d0", "fields": {"nom_de_la_commune": "DAMVILLERS", "libell_d_acheminement": "DAMVILLERS", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55145"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6355704490a3e07fc325d86c513ff36717b43ed", "fields": {"code_postal": "55130", "code_commune_insee": "55148", "libell_d_acheminement": "DELOUZE ROSIERES", "ligne_5": "ROSIERES EN BLOIS", "nom_de_la_commune": "DELOUZE ROSIERES", "coordonnees_gps": [48.5182994069, 5.49758126805]}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca22e093afc424a0c0ce296dfb04f653edb8a0a", "fields": {"nom_de_la_commune": "DIEPPE SOUS DOUAUMONT", "libell_d_acheminement": "DIEPPE SOUS DOUAUMONT", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55153"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18234838e531fc6d905fa9b2a96446b558827eda", "fields": {"nom_de_la_commune": "DOMBRAS", "libell_d_acheminement": "DOMBRAS", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55156"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b27fc95d28d3f3ea83d227bb66960033f4783bc", "fields": {"nom_de_la_commune": "DOMMARTIN LA MONTAGNE", "libell_d_acheminement": "DOMMARTIN LA MONTAGNE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55157"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd36583bc791c268285295e91b35be4ded77310e", "fields": {"nom_de_la_commune": "EIX", "libell_d_acheminement": "EIX", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55171"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a8f4c9048ccf9375d5d2405488cd424786e08a", "fields": {"nom_de_la_commune": "ERIZE LA PETITE", "libell_d_acheminement": "ERIZE LA PETITE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55177"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb4b1d371aa88356b7723db873f58154fd5e5bf5", "fields": {"code_postal": "55500", "code_commune_insee": "55179", "libell_d_acheminement": "ERNEVILLE AUX BOIS", "ligne_5": "LOXEVILLE", "nom_de_la_commune": "ERNEVILLE AUX BOIS", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "802acca4ef5eb94053f71dd9f615bcd1b3adca0f", "fields": {"nom_de_la_commune": "ETAIN", "libell_d_acheminement": "ETAIN", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55181"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48d3152c26a95e4e7a766ceedf87682d0e0affd", "fields": {"nom_de_la_commune": "ETRAYE", "libell_d_acheminement": "ETRAYE", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55183"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d6346049e4648d01736312e2a09226abed8a2d", "fields": {"code_postal": "55200", "code_commune_insee": "55184", "libell_d_acheminement": "EUVILLE", "ligne_5": "VERTUZEY", "nom_de_la_commune": "EUVILLE", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66b33d8552ba876eea2d7796e63835b9cae9342e", "fields": {"code_postal": "55000", "code_commune_insee": "55186", "libell_d_acheminement": "FAINS VEEL", "ligne_5": "VEEL", "nom_de_la_commune": "FAINS VEEL", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8534cb0cc789b5eca80a818a7a736d1ec8733ad7", "fields": {"nom_de_la_commune": "FLASSIGNY", "libell_d_acheminement": "FLASSIGNY", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55188"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b303662e924c2965a3459b5d874129dd8e4bc2b", "fields": {"nom_de_la_commune": "FOUCAUCOURT SUR THABAS", "libell_d_acheminement": "FOUCAUCOURT SUR THABAS", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55194"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c5faa8841c8c45aaed31a9a51d174004812738f", "fields": {"nom_de_la_commune": "FOUCHERES AUX BOIS", "libell_d_acheminement": "FOUCHERES AUX BOIS", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55195"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da5e5422c7a3265e6adcace0e4a8b5e9e88be9cc", "fields": {"nom_de_la_commune": "FUTEAU", "libell_d_acheminement": "FUTEAU", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55202"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76babee9ec29578878d83bc460bcc028847db67", "fields": {"nom_de_la_commune": "GIMECOURT", "libell_d_acheminement": "GIMECOURT", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55210"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a95ab0fad0439e2753cdb82e0bc79ec973b09d20", "fields": {"nom_de_la_commune": "GOUSSAINCOURT", "libell_d_acheminement": "GOUSSAINCOURT", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55217"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "525979ccfc00f20549cedd8d80ec47b54cb1b36b", "fields": {"nom_de_la_commune": "HALLES SOUS LES COTES", "libell_d_acheminement": "HALLES SOUS LES COTES", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55225"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e73cf3cd1e6f8e39743a9e1c27cfdd001cbfb7", "fields": {"nom_de_la_commune": "HAUMONT PRES SAMOGNEUX", "libell_d_acheminement": "HAUMONT PRES SAMOGNEUX", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55239"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48dc51d9b9f1a478f271536c89160d777a25d5df", "fields": {"nom_de_la_commune": "HORVILLE EN ORNOIS", "libell_d_acheminement": "HORVILLE EN ORNOIS", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55247"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2c0112a2efbac918c40a259811c91d4b93a2ea", "fields": {"nom_de_la_commune": "IRE LE SEC", "libell_d_acheminement": "IRE LE SEC", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55252"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2618b07d00591a6685f5763aae3e178473759d", "fields": {"code_postal": "55220", "code_commune_insee": "55254", "libell_d_acheminement": "LES TROIS DOMAINES", "ligne_5": "MONDRECOURT", "nom_de_la_commune": "LES TROIS DOMAINES", "coordonnees_gps": [49.0264953625, 5.30234467263]}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823fed8df48af4defa847d34de71b3690e715fdc", "fields": {"nom_de_la_commune": "JUVIGNY EN PERTHOIS", "libell_d_acheminement": "JUVIGNY EN PERTHOIS", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55261"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea758858d3072babc8f70c9fbddc07d9bdc020b", "fields": {"nom_de_la_commune": "LACHALADE", "libell_d_acheminement": "LACHALADE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55266"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "052ff77f3cabad555225cc2a26c5c2900f885d02", "fields": {"nom_de_la_commune": "LAHEYCOURT", "libell_d_acheminement": "LAHEYCOURT", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55271"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ebdac1fb87d45abc470c696929c96764108186", "fields": {"code_postal": "55300", "code_commune_insee": "55274", "libell_d_acheminement": "LAMORVILLE", "ligne_5": "SPADA", "nom_de_la_commune": "LAMORVILLE", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ee4ae62544cd2c1abba99009f2944c470f3b3b", "fields": {"nom_de_la_commune": "LAMOUILLY", "libell_d_acheminement": "LAMOUILLY", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55275"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13c75c5596fd6703b5fafcc346ae2fbe69ea8f9", "fields": {"nom_de_la_commune": "LANDRECOURT LEMPIRE", "libell_d_acheminement": "LANDRECOURT LEMPIRE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55276"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5cf165f42297900da504e43295afe136478970d", "fields": {"nom_de_la_commune": "LANHERES", "libell_d_acheminement": "LANHERES", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55280"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41fda8adc6f8feed4ea8bed5be75546260c7c617", "fields": {"nom_de_la_commune": "LISSEY", "libell_d_acheminement": "LISSEY", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55297"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58b77a085db176b232227bc44e07d45971ab78f", "fields": {"nom_de_la_commune": "LONGCHAMPS SUR AIRE", "libell_d_acheminement": "LONGCHAMPS SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55301"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0d8a968e178321fff949590f9389c4f66614a52", "fields": {"nom_de_la_commune": "MARRE", "libell_d_acheminement": "MARRE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55321"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88fe02e25f37aafb50603cc4575d14e5d1888a90", "fields": {"nom_de_la_commune": "MAUVAGES", "libell_d_acheminement": "MAUVAGES", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55327"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4c5f2e9f4235f64ba079c70b93fee5af11a21f", "fields": {"nom_de_la_commune": "MELIGNY LE PETIT", "libell_d_acheminement": "MELIGNY LE PETIT", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55331"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86ebb340c1d20743ea19bc94cadb4a080ce9ee0a", "fields": {"nom_de_la_commune": "MERLES SUR LOISON", "libell_d_acheminement": "MERLES SUR LOISON", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55336"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b925f4c42bec773c568a4d98a810104ab60512", "fields": {"code_postal": "55150", "code_commune_insee": "55341", "libell_d_acheminement": "MOIREY FLABAS CREPION", "ligne_5": "FLABAS", "nom_de_la_commune": "MOIREY FLABAS CREPION", "coordonnees_gps": [49.3426883563, 5.43366095865]}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e9f750f8508d77ee1377a4d9c5876653ee9891f", "fields": {"nom_de_la_commune": "LES MONTHAIRONS", "libell_d_acheminement": "LES MONTHAIRONS", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55347"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecb599f74cce28e28446fedf3f4f71d44244ab73", "fields": {"nom_de_la_commune": "CHANTERAINE", "libell_d_acheminement": "CHANTERAINE", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55358"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452e9b4f4b3fe388e36d58694c2fa8e5df4825f5", "fields": {"code_postal": "55500", "code_commune_insee": "55358", "libell_d_acheminement": "CHANTERAINE", "ligne_5": "CHENNEVIERES", "nom_de_la_commune": "CHANTERAINE", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28369f649e8daedc1976961ffa3663ece9b30b24", "fields": {"nom_de_la_commune": "MOUZAY", "libell_d_acheminement": "MOUZAY", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55364"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "708fe299e7a831ea6d3c18a73fed285d3af8fe66", "fields": {"nom_de_la_commune": "NANT LE GRAND", "libell_d_acheminement": "NANT LE GRAND", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55373"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6891d55a24b9ec20fab9086eef88f801a243b4", "fields": {"nom_de_la_commune": "NETTANCOURT", "libell_d_acheminement": "NETTANCOURT", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55378"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dbd78879c8e5f71458fffb9f995465d04db75ab", "fields": {"nom_de_la_commune": "LE NEUFOUR", "libell_d_acheminement": "LE NEUFOUR", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55379"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f34e149f7fe8bc646ddefb3f119b1b55cded4fd", "fields": {"nom_de_la_commune": "NEUVILLE EN VERDUNOIS", "libell_d_acheminement": "NEUVILLE EN VERDUNOIS", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55380"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d0b4b77f7ab693e45c3381cd675a14782670bb7", "fields": {"nom_de_la_commune": "NEUVILLE SUR ORNAIN", "libell_d_acheminement": "NEUVILLE SUR ORNAIN", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55382"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d78a796cf84009ae0e5f62e49be64f6fa3f6eb86", "fields": {"nom_de_la_commune": "NICEY SUR AIRE", "libell_d_acheminement": "NICEY SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55384"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4423f8436473a120382d313ead134d24279d520e", "fields": {"nom_de_la_commune": "NOYERS AUZECOURT", "libell_d_acheminement": "NOYERS AUZECOURT", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55388"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a72f28d282f7373ded3bb811eeb5f0a6583ee22", "fields": {"nom_de_la_commune": "ORNES", "libell_d_acheminement": "ORNES", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55394"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44827eddecc9f35bd88b4924424e7337a7289d55", "fields": {"nom_de_la_commune": "PILLON", "libell_d_acheminement": "PILLON", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55405"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b9c1547be2ae5c84c27631d34cf953220586e9e", "fields": {"nom_de_la_commune": "PINTHEVILLE", "libell_d_acheminement": "PINTHEVILLE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55406"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dba08474d1526abb8ddd5a839ccbf9fdd19d4e67", "fields": {"nom_de_la_commune": "QUINCY LANDZECOURT", "libell_d_acheminement": "QUINCY LANDZECOURT", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55410"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0a69cc8d31a2ba8595851b4e0e7cb01671d0641", "fields": {"nom_de_la_commune": "RAMBUCOURT", "libell_d_acheminement": "RAMBUCOURT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55412"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8339ce70e23afeefbfe68de72f4f6122cfb71a9e", "fields": {"nom_de_la_commune": "RANCOURT SUR ORNAIN", "libell_d_acheminement": "RANCOURT SUR ORNAIN", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55414"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d67482d795b4db773badec1f4cd357642b6f3213", "fields": {"nom_de_la_commune": "RECICOURT", "libell_d_acheminement": "RECICOURT", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55419"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abba0574da82309bceb205cf07700c4382d0c9c6", "fields": {"nom_de_la_commune": "RECOURT LE CREUX", "libell_d_acheminement": "RECOURT LE CREUX", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55420"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e359d8a4d2c6aa598c86830eefdd1a58534f829", "fields": {"nom_de_la_commune": "REFFROY", "libell_d_acheminement": "REFFROY", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55421"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1c865e93a6db3bcfbb454887eae498e71d6702", "fields": {"nom_de_la_commune": "RIGNY ST MARTIN", "libell_d_acheminement": "RIGNY ST MARTIN", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55434"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ac4452196836e69b778093d54840cf4af42416", "fields": {"nom_de_la_commune": "ROMAGNE SOUS MONTFAUCON", "libell_d_acheminement": "ROMAGNE SOUS MONTFAUCON", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55438"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1a0533bbb66583d8a43dc4508acb2f42f6064c", "fields": {"nom_de_la_commune": "RONVAUX", "libell_d_acheminement": "RONVAUX", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55439"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "659db186ddf430a5808d281cefef07b21898832e", "fields": {"nom_de_la_commune": "ROUVRES EN WOEVRE", "libell_d_acheminement": "ROUVRES EN WOEVRE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55443"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aa3c9b9670281f0f977f550ea4a194453d85bf8", "fields": {"nom_de_la_commune": "ROUVROIS SUR MEUSE", "libell_d_acheminement": "ROUVROIS SUR MEUSE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55444"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8175ced355eb45d4200c47dd014e9e75ced1856", "fields": {"nom_de_la_commune": "ROUVROIS SUR OTHAIN", "libell_d_acheminement": "ROUVROIS SUR OTHAIN", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55445"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15022376804c217103d4c7f5737609382f9d1dae", "fields": {"code_postal": "55160", "code_commune_insee": "55457", "libell_d_acheminement": "ST HILAIRE EN WOEVRE", "ligne_5": "WADONVILLE EN WOEVRE", "nom_de_la_commune": "ST HILAIRE EN WOEVRE", "coordonnees_gps": [49.0949133617, 5.65293437026]}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1005c2dd57f33353fc281e9189d08b6aa170952f", "fields": {"nom_de_la_commune": "ST JEAN LES BUZY", "libell_d_acheminement": "ST JEAN LES BUZY", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55458"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb5b56f546e8551119050c9fd87bc3fe227e37bc", "fields": {"nom_de_la_commune": "SAMOGNEUX", "libell_d_acheminement": "SAMOGNEUX", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55468"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5bc684ec0bbc2b80fb9ef37ddd7107b909bf62b", "fields": {"nom_de_la_commune": "ST BRICE COURCELLES", "libell_d_acheminement": "ST BRICE COURCELLES", "code_postal": "51370", "coordonnees_gps": [49.2503894906, 3.96059449419], "code_commune_insee": "51474"}, "geometry": {"type": "Point", "coordinates": [3.96059449419, 49.2503894906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e44485ba10b2b5567c5f3fa4ebfc9f4a8e492d0", "fields": {"nom_de_la_commune": "ST CHERON", "libell_d_acheminement": "ST CHERON", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51475"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d54dddd4c85a5d9f36ca767bb595e846e5fce2", "fields": {"nom_de_la_commune": "ST EULIEN", "libell_d_acheminement": "ST EULIEN", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "51478"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c849fee22abf6ea2a7b82d39d0a0081a19051c1", "fields": {"nom_de_la_commune": "ST EUPHRAISE ET CLAIRIZET", "libell_d_acheminement": "ST EUPHRAISE ET CLAIRIZET", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51479"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d27980f287913a21ec1aa8951a933ab439fa22a", "fields": {"nom_de_la_commune": "ST JEAN SUR TOURBE", "libell_d_acheminement": "ST JEAN SUR TOURBE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51491"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3eb7eefffc59911ec0c07430965b105e5a5e672", "fields": {"nom_de_la_commune": "ST MARD SUR AUVE", "libell_d_acheminement": "ST MARD SUR AUVE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51498"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d65af837e7df90bef0ec2f08d249684d60d61efe", "fields": {"nom_de_la_commune": "ST MASMES", "libell_d_acheminement": "ST MASMES", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51505"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02f8191c2239e02e6d605bac733af307ed201c52", "fields": {"nom_de_la_commune": "ST REMY SUR BUSSY", "libell_d_acheminement": "ST REMY SUR BUSSY", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51515"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58e2cb026e53d0fa963135a94269cb04e19017cb", "fields": {"nom_de_la_commune": "SEPT SAULX", "libell_d_acheminement": "SEPT SAULX", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51530"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea219c0221ceddc145587f3640b096a674290f0a", "fields": {"nom_de_la_commune": "SERMAIZE LES BAINS", "libell_d_acheminement": "SERMAIZE LES BAINS", "code_postal": "51250", "coordonnees_gps": [48.7689715005, 4.90406151708], "code_commune_insee": "51531"}, "geometry": {"type": "Point", "coordinates": [4.90406151708, 48.7689715005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a67846b915d79797dff0adf38b8aa391bea0b94", "fields": {"nom_de_la_commune": "SERVON MELZICOURT", "libell_d_acheminement": "SERVON MELZICOURT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51533"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edcd70544c1e7004935acca303bc182f1eddd7ff", "fields": {"nom_de_la_commune": "SOGNY AUX MOULINS", "libell_d_acheminement": "SOGNY AUX MOULINS", "code_postal": "51520", "coordonnees_gps": [48.9826382604, 4.36070920817], "code_commune_insee": "51538"}, "geometry": {"type": "Point", "coordinates": [4.36070920817, 48.9826382604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dce973b9477110e42743108633047cbfd41e1b9", "fields": {"nom_de_la_commune": "SOMMESOUS", "libell_d_acheminement": "SOMMESOUS", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51545"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66ff52f092158aa08128c0a152f22307c5ddee00", "fields": {"nom_de_la_commune": "SOMSOIS", "libell_d_acheminement": "SOMSOIS", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51551"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f4ee95fb87f5fa8172c7dc71cb6bfad4391c5b", "fields": {"nom_de_la_commune": "SONGY", "libell_d_acheminement": "SONGY", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51552"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c669367926b3b028fd780bc74b7f9fe3546fa8e8", "fields": {"nom_de_la_commune": "SOULANGES", "libell_d_acheminement": "SOULANGES", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51557"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a430f08bc550322d94906ca15b36d388553eb938", "fields": {"nom_de_la_commune": "SOULIERES", "libell_d_acheminement": "SOULIERES", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51558"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "586f01bcf0ef5ef5534a2df20179943bdb7d7106", "fields": {"code_postal": "51150", "code_commune_insee": "51564", "libell_d_acheminement": "VAL DE LIVRE", "ligne_5": "TAUXIERES MUTRY", "nom_de_la_commune": "VAL DE LIVRE", "coordonnees_gps": [49.0294111773, 4.16667797153]}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f931b71b93804e3802c6d6bd4b701647d9888ab7", "fields": {"nom_de_la_commune": "THIL", "libell_d_acheminement": "THIL", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51568"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6fb70a5afd4a5b32daad9be3755a2bb850e2de", "fields": {"nom_de_la_commune": "THILLOIS", "libell_d_acheminement": "THILLOIS", "code_postal": "51370", "coordonnees_gps": [49.2503894906, 3.96059449419], "code_commune_insee": "51569"}, "geometry": {"type": "Point", "coordinates": [3.96059449419, 49.2503894906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a07610a86fff435dfe8b9524efc1594d0438f5e", "fields": {"nom_de_la_commune": "TOURS SUR MARNE", "libell_d_acheminement": "TOURS SUR MARNE", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51576"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260aa818e498ba8d436bcd88bbeb811d165d15f5", "fields": {"nom_de_la_commune": "TRECON", "libell_d_acheminement": "TRECON", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51578"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f4397b0c0f2b738d22c17a839d65dd12a56eb1", "fields": {"nom_de_la_commune": "VANAULT LES DAMES", "libell_d_acheminement": "VANAULT LES DAMES", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51590"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6476bba7a64e76130ca4d0000e4708bde800343d", "fields": {"nom_de_la_commune": "VAUCHAMPS", "libell_d_acheminement": "VAUCHAMPS", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51596"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ead5d8d3c0fcc7174a31a701eb59091c1357be3", "fields": {"nom_de_la_commune": "VAUDESINCOURT", "libell_d_acheminement": "VAUDESINCOURT", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51600"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0130be80376993ca52cf8e62cd5da27df540f5f", "fields": {"nom_de_la_commune": "VAVRAY LE GRAND", "libell_d_acheminement": "VAVRAY LE GRAND", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51601"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896c79418f008f6caec64047d1f0a49c670de2cb", "fields": {"nom_de_la_commune": "VELYE", "libell_d_acheminement": "VELYE", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51603"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1669009610a2edb7c6518d7c3adb2f257497f2a", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51610"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "357cf11a63eab33b6a7ba0241be3ec0c4241f4b8", "fields": {"nom_de_la_commune": "VERZY", "libell_d_acheminement": "VERZY", "code_postal": "51380", "coordonnees_gps": [49.1185203616, 4.19712264591], "code_commune_insee": "51614"}, "geometry": {"type": "Point", "coordinates": [4.19712264591, 49.1185203616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e49cd60f8fc7e09b90eb9eab74baad6f0b63cc3", "fields": {"nom_de_la_commune": "VILLE EN SELVE", "libell_d_acheminement": "VILLE EN SELVE", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51623"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4030b9682b9fa59357a4f4dd97556142227d4b5f", "fields": {"nom_de_la_commune": "VILLERS FRANQUEUX", "libell_d_acheminement": "VILLERS FRANQUEUX", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51633"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7be9dd372a460beb61c839a403d7d8eaa2bd886b", "fields": {"nom_de_la_commune": "VILLESENEUX", "libell_d_acheminement": "VILLESENEUX", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51638"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "746ce52bf7c51e924454269ffff3df844368e4f2", "fields": {"nom_de_la_commune": "VILLIERS AUX CORNEILLES", "libell_d_acheminement": "VILLIERS AUX CORNEILLES", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51642"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e755d627fe7cc95931d62d51a0901c717a76e1e5", "fields": {"nom_de_la_commune": "VIRGINY", "libell_d_acheminement": "VIRGINY", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51646"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69df908c403e53dcd3402d9f8fd11d60d7b6bad", "fields": {"nom_de_la_commune": "VITRY EN PERTHOIS", "libell_d_acheminement": "VITRY EN PERTHOIS", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51647"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a2166ad8701ffb26ce2b39a96b8ab8a4b5515b9", "fields": {"nom_de_la_commune": "VITRY LE FRANCOIS", "libell_d_acheminement": "VITRY LE FRANCOIS", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51649"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed364b16a0ced084689be845b508bbb835a62f28", "fields": {"nom_de_la_commune": "VOIPREUX", "libell_d_acheminement": "VOIPREUX", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51651"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb28124dc3b89655d4982e21f0b496891bb1a47", "fields": {"nom_de_la_commune": "WARGEMOULIN HURLUS", "libell_d_acheminement": "WARGEMOULIN HURLUS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51659"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d60b2507813a8a11bddec7ba0bbca8658b3499", "fields": {"nom_de_la_commune": "ANNONVILLE", "libell_d_acheminement": "ANNONVILLE", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52012"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da55d7be00a39eed0a92e4ac1094c4cd45a180cf", "fields": {"nom_de_la_commune": "ATTANCOURT", "libell_d_acheminement": "ATTANCOURT", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52021"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce1b095cc2bbee9d69704c630ae024655213462", "fields": {"nom_de_la_commune": "AUDELONCOURT", "libell_d_acheminement": "AUDELONCOURT", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52025"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6034527f10cf3822f06f07dd5f11d45e02f674c", "fields": {"nom_de_la_commune": "AUJEURRES", "libell_d_acheminement": "AUJEURRES", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52027"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b34b9f0010dc7f6da8a2c979e5f3070a12aa5769", "fields": {"nom_de_la_commune": "AULNOY SUR AUBE", "libell_d_acheminement": "AULNOY SUR AUBE", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52028"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc56205ce9991776c066a942ef3add78b16b653", "fields": {"code_postal": "52270", "code_commune_insee": "52044", "libell_d_acheminement": "ROCHES BETTAINCOURT", "ligne_5": "BETTAINCOURT SUR ROGNON", "nom_de_la_commune": "ROCHES BETTAINCOURT", "coordonnees_gps": [48.329589946, 5.25765158251]}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23a85dea13acf38673ffe08680fcf29c3072cbd3", "fields": {"nom_de_la_commune": "BLAISY", "libell_d_acheminement": "BLAISY", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52053"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63acba0fac94b992bd6911eb8a4d6d306dfd5503", "fields": {"code_postal": "52310", "code_commune_insee": "52058", "libell_d_acheminement": "BOLOGNE", "ligne_5": "MARAULT", "nom_de_la_commune": "BOLOGNE", "coordonnees_gps": [48.2108562649, 5.11797313893]}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e17b266c368c3b0b49a5e9bfcdb11f3c2b834cfe", "fields": {"nom_de_la_commune": "BONNECOURT", "libell_d_acheminement": "BONNECOURT", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52059"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6846f6c084c4c2af15956819b87daa37744de578", "fields": {"code_postal": "52400", "code_commune_insee": "52060", "libell_d_acheminement": "BOURBONNE LES BAINS", "ligne_5": "VILLARS ST MARCELLIN", "nom_de_la_commune": "BOURBONNE LES BAINS", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb3f9fec16e853541970c86d93dc42b2bae3598", "fields": {"nom_de_la_commune": "BOURG", "libell_d_acheminement": "BOURG", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52062"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e573ed66780b3e4dcac9602dcdd3ed1495186684", "fields": {"nom_de_la_commune": "BOURG STE MARIE", "libell_d_acheminement": "BOURG STE MARIE", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52063"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6baf49b52940c3a64d6608aceedbf61f548332bd", "fields": {"nom_de_la_commune": "BRETHENAY", "libell_d_acheminement": "BRETHENAY", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52072"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a35e0a3cd97443416dee178321941d5ac2c71340", "fields": {"nom_de_la_commune": "BUXIERES LES CLEFMONT", "libell_d_acheminement": "BUXIERES LES CLEFMONT", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52085"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5282037978bfcaaec18c2a79602aeb3de9d9b461", "fields": {"nom_de_la_commune": "CHAMBRONCOURT", "libell_d_acheminement": "CHAMBRONCOURT", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52097"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f285ee28978f8286471db0f229f6ffd67050e0be", "fields": {"nom_de_la_commune": "CHAMOUILLEY", "libell_d_acheminement": "CHAMOUILLEY", "code_postal": "52410", "coordonnees_gps": [48.5892998637, 5.03091312346], "code_commune_insee": "52099"}, "geometry": {"type": "Point", "coordinates": [5.03091312346, 48.5892998637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b97f3de6b4f25759c74713c4298fcbd7276def41", "fields": {"nom_de_la_commune": "CHANCENAY", "libell_d_acheminement": "CHANCENAY", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52104"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5134143b25bd7e3784049a86fb7eae420a799a7", "fields": {"nom_de_la_commune": "CHANTRAINES", "libell_d_acheminement": "CHANTRAINES", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52107"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cf01a49b25e8209d8e3dd3d60e80e69c0393698", "fields": {"nom_de_la_commune": "CHATENAY VAUDIN", "libell_d_acheminement": "CHATENAY VAUDIN", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52116"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "807c56720e1b2815a050bf19aed0f94843881bee", "fields": {"nom_de_la_commune": "CHATONRUPT SOMMERMONT", "libell_d_acheminement": "CHATONRUPT SOMMERMONT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52118"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a58cf6e661917d59658a56c971577fcbb424686", "fields": {"nom_de_la_commune": "CHEVILLON", "libell_d_acheminement": "CHEVILLON", "code_postal": "52170", "coordonnees_gps": [48.5434791123, 5.11650934546], "code_commune_insee": "52123"}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "addfcfb14d1f225bc50ed0517f2a45f3918bfd77", "fields": {"code_postal": "52170", "code_commune_insee": "52123", "libell_d_acheminement": "CHEVILLON", "ligne_5": "SOMMEVILLE", "nom_de_la_commune": "CHEVILLON", "coordonnees_gps": [48.5434791123, 5.11650934546]}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "573849f92ed51a340e26a693f3d0a7dbf59d6a96", "fields": {"code_postal": "52000", "code_commune_insee": "52125", "libell_d_acheminement": "CHAMARANDES CHOIGNES", "ligne_5": "CHAMARANDES", "nom_de_la_commune": "CHAMARANDES CHOIGNES", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d54ff3b3c2c97cf90fea190aec0aa97dc28a9f", "fields": {"nom_de_la_commune": "CIREY LES MAREILLES", "libell_d_acheminement": "CIREY LES MAREILLES", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52128"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfdcfc1b13978fd569c852f088a392db05c573cd", "fields": {"nom_de_la_commune": "CIREY SUR BLAISE", "libell_d_acheminement": "CIREY SUR BLAISE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52129"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d7144483d1023af1867d9d82b7f747949f159a5", "fields": {"nom_de_la_commune": "COHONS", "libell_d_acheminement": "COHONS", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52134"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cecbf7340ddbac71c506669e271f14818ff295f6", "fields": {"nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52140"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1fcff41c49c2a8b158ad7dc4acaa4c278d2c861", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "BLAISE", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb882dc467398e4ec15671c4afe1d8a2e05b9cf", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "CHAMPCOURT", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4491c7e983c12d6a378e96a4c18e0a84ca4d0f69", "fields": {"nom_de_la_commune": "COUPRAY", "libell_d_acheminement": "COUPRAY", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52146"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3b79d6186df13705627b1fe9d3d9f171399a9ec", "fields": {"nom_de_la_commune": "COURCELLES EN MONTAGNE", "libell_d_acheminement": "COURCELLES EN MONTAGNE", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52147"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc8f3950baac165dc3873e5fc7736e2ce3599ea", "fields": {"nom_de_la_commune": "CUSEY", "libell_d_acheminement": "CUSEY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52158"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c9f421358df9f9c6b00a204152b35b3e8f36d8", "fields": {"nom_de_la_commune": "DAMREMONT", "libell_d_acheminement": "DAMREMONT", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52164"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2063c7a2348ebf824a2babf35465edaf16c97ca5", "fields": {"nom_de_la_commune": "DOMREMY LANDEVILLE", "libell_d_acheminement": "DOMREMY LANDEVILLE", "code_postal": "52270", "coordonnees_gps": [48.329589946, 5.25765158251], "code_commune_insee": "52173"}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e362dc49c7c125fc884563b3061da4b5e02c96c2", "fields": {"code_postal": "52270", "code_commune_insee": "52173", "libell_d_acheminement": "DOMREMY LANDEVILLE", "ligne_5": "LANDEVILLE", "nom_de_la_commune": "DOMREMY LANDEVILLE", "coordonnees_gps": [48.329589946, 5.25765158251]}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc06995f85cee1c39715c93bc6073ee1ea51645c", "fields": {"nom_de_la_commune": "EFFINCOURT", "libell_d_acheminement": "EFFINCOURT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52184"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab652ec0148c3eeeb1ebd16a01909b67dc1d4258", "fields": {"code_postal": "52270", "code_commune_insee": "52187", "libell_d_acheminement": "EPIZON", "ligne_5": "AUGEVILLE", "nom_de_la_commune": "EPIZON", "coordonnees_gps": [48.329589946, 5.25765158251]}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2496dc41356b76c7ff1247d5bc66fba2846fda9d", "fields": {"nom_de_la_commune": "FAYL BILLOT", "libell_d_acheminement": "FAYL BILLOT", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52197"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee55f6f48e0d773f8bc0768d26f4e9ac1c666d8", "fields": {"nom_de_la_commune": "FERRIERE ET LAFOLIE", "libell_d_acheminement": "FERRIERE ET LAFOLIE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52199"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45101aadcd77a8b8c447054db3b2b09e4a8105b5", "fields": {"nom_de_la_commune": "FONTAINES SUR MARNE", "libell_d_acheminement": "FONTAINES SUR MARNE", "code_postal": "52170", "coordonnees_gps": [48.5434791123, 5.11650934546], "code_commune_insee": "52203"}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f550f9f365b7e577d75cf6be114e2deb6893467c", "fields": {"nom_de_la_commune": "FORCEY", "libell_d_acheminement": "FORCEY", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52204"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61fab94c59371d3407a46013c9972fa34e5eeb5f", "fields": {"code_postal": "52320", "code_commune_insee": "52211", "libell_d_acheminement": "FRONCLES", "ligne_5": "PROVENCHERES SUR MARNE", "nom_de_la_commune": "FRONCLES", "coordonnees_gps": [48.287832359, 5.09541662675]}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f6595780cf489f836fd3ca3292ba951f85ccc2", "fields": {"nom_de_la_commune": "GILLEY", "libell_d_acheminement": "GILLEY", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52223"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afab10bda7c2a9fa1d60fb4c67eb39ecad7c9581", "fields": {"nom_de_la_commune": "GUDMONT VILLIERS", "libell_d_acheminement": "GUDMONT VILLIERS", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52230"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb91eb7f6165e0b9047476cdfc804e19f31f1f15", "fields": {"code_postal": "52600", "code_commune_insee": "52242", "libell_d_acheminement": "HAUTE AMANCE", "ligne_5": "ROSOY SUR AMANCE", "nom_de_la_commune": "HAUTE AMANCE", "coordonnees_gps": [47.7926178231, 5.43469720671]}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4146e77caea09a8d6aea2c7592cb39e531ea8c55", "fields": {"code_postal": "52600", "code_commune_insee": "52242", "libell_d_acheminement": "HAUTE AMANCE", "ligne_5": "TROISCHAMPS", "nom_de_la_commune": "HAUTE AMANCE", "coordonnees_gps": [47.7926178231, 5.43469720671]}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f7b39d981c0fe60628605e95f6cb1d9b12861e4", "fields": {"nom_de_la_commune": "HUMBECOURT", "libell_d_acheminement": "HUMBECOURT", "code_postal": "52290", "coordonnees_gps": [48.5761520145, 4.85527369999], "code_commune_insee": "52244"}, "geometry": {"type": "Point", "coordinates": [4.85527369999, 48.5761520145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc9eea5146aa38d9cbb316d692c4f0c6cd845527", "fields": {"nom_de_la_commune": "HUMES JORQUENAY", "libell_d_acheminement": "HUMES JORQUENAY", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52246"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41a9d864006ad4bd7f88305071d7da6d65d596c1", "fields": {"nom_de_la_commune": "ILLOUD", "libell_d_acheminement": "ILLOUD", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52247"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "289f856324350334ac765daf272765652930215d", "fields": {"nom_de_la_commune": "ISOMES", "libell_d_acheminement": "ISOMES", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52249"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "165a849d55091c731b85e01b182f1a7b77303437", "fields": {"nom_de_la_commune": "JOINVILLE", "libell_d_acheminement": "JOINVILLE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52250"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "545ee93ffe1d226316c238826a9a64802987f947", "fields": {"nom_de_la_commune": "JUZENNECOURT", "libell_d_acheminement": "JUZENNECOURT", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52253"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dbfcc8bbf67df5dbbd993c7009f4398a3780f0d", "fields": {"nom_de_la_commune": "LAFERTE SUR AUBE", "libell_d_acheminement": "LAFERTE SUR AUBE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52258"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee999d757db082a6100dca57410fd4f6b1b4e12", "fields": {"nom_de_la_commune": "LANQUES SUR ROGNON", "libell_d_acheminement": "LANQUES SUR ROGNON", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52271"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a60b67642b426fe35bfff4fc36610c8ed6f0fb82", "fields": {"nom_de_la_commune": "LAVILLE AUX BOIS", "libell_d_acheminement": "LAVILLE AUX BOIS", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52276"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "390c71d8c4ebd0818fac62e86dde298a674b2e53", "fields": {"nom_de_la_commune": "LAVILLENEUVE", "libell_d_acheminement": "LAVILLENEUVE", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52277"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "557ef20b34543973dc59b09de01f4f4d441d19c1", "fields": {"nom_de_la_commune": "LESCHERES SUR LE BLAISERON", "libell_d_acheminement": "LESCHERES SUR LE BLAISERON", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52284"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4af5b75380f67d75cb186b4dd06252504a2edb7a", "fields": {"nom_de_la_commune": "MAGNEUX", "libell_d_acheminement": "MAGNEUX", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52300"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ccd33f42339f4daab350109574ecdab1fd37653", "fields": {"nom_de_la_commune": "MALAINCOURT SUR MEUSE", "libell_d_acheminement": "MALAINCOURT SUR MEUSE", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52304"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b479c6f0962ee5860651a4434dca4fa3efe60d89", "fields": {"nom_de_la_commune": "MARAC", "libell_d_acheminement": "MARAC", "code_postal": "52260", "coordonnees_gps": [47.9429449859, 5.2580157459], "code_commune_insee": "52307"}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aa40706d6053dc2f95a0e67a31d43355dbbdce9", "fields": {"code_postal": "52220", "code_commune_insee": "52331", "libell_d_acheminement": "LA PORTE DU DER", "ligne_5": "MONTIER EN DER", "nom_de_la_commune": "LA PORTE DU DER", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969e6f32f6ed53e3463bfcb5dc4da1a2cdedd491", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "PROVENCHERES SUR MEUSE", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32309ee38d5463f251d6e6a58adde9790817d475", "fields": {"nom_de_la_commune": "BISSEY LA COTE", "libell_d_acheminement": "BISSEY LA COTE", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21077"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e045317d2e01316cde9a91bc00edb660c044b038", "fields": {"nom_de_la_commune": "BLIGNY LE SEC", "libell_d_acheminement": "BLIGNY LE SEC", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21085"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b2c519e2874f4199b028f8240c3a7881bfeeb4", "fields": {"nom_de_la_commune": "BLIGNY LES BEAUNE", "libell_d_acheminement": "BLIGNY LES BEAUNE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21086"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5097627c84df5136a6fd198b82b0060cd55f5b2c", "fields": {"nom_de_la_commune": "BOUSSENOIS", "libell_d_acheminement": "BOUSSENOIS", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21096"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a883d997c4d9f7bcfbea665fc5a33b84750964", "fields": {"nom_de_la_commune": "BRAZEY EN MORVAN", "libell_d_acheminement": "BRAZEY EN MORVAN", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21102"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75b60268a03a25ea70e3ea2a92b5be505f6bbee", "fields": {"nom_de_la_commune": "BRAZEY EN PLAINE", "libell_d_acheminement": "BRAZEY EN PLAINE", "code_postal": "21470", "coordonnees_gps": [47.1378444783, 5.21217795651], "code_commune_insee": "21103"}, "geometry": {"type": "Point", "coordinates": [5.21217795651, 47.1378444783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb3569f00057b7195f56e3865797c0f8532a205", "fields": {"nom_de_la_commune": "BRIANNY", "libell_d_acheminement": "BRIANNY", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21108"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ed501a32d3ada57a6a5e07fb232e1383907170", "fields": {"nom_de_la_commune": "BROIN", "libell_d_acheminement": "BROIN", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21112"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a1ae371191e5e2d2be42dea4e5a1ba2d3caea66", "fields": {"nom_de_la_commune": "BROINDON", "libell_d_acheminement": "BROINDON", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21113"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015d5b2e609b8e82cc0c51013f171ef854c739a6", "fields": {"nom_de_la_commune": "BURE LES TEMPLIERS", "libell_d_acheminement": "BURE LES TEMPLIERS", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21116"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a42590735876fcb5c60485d41a0c4c4ebb61ea", "fields": {"nom_de_la_commune": "BUSSEAUT", "libell_d_acheminement": "BUSSEAUT", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21117"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc61263b4ef5f1a3c61b13dfd6b62c8bf3f1cbe5", "fields": {"nom_de_la_commune": "BUSSEROTTE ET MONTENAILLE", "libell_d_acheminement": "BUSSEROTTE ET MONTENAILLE", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21118"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3110e1dbb2084d24cc8a758abfafc4448fe63676", "fields": {"nom_de_la_commune": "CHAILLY SUR ARMANCON", "libell_d_acheminement": "CHAILLY SUR ARMANCON", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21128"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bdf6bf2379da2b0af9a8321846bee6e49d0718f", "fields": {"nom_de_la_commune": "CHAMBEIRE", "libell_d_acheminement": "CHAMBEIRE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21130"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "129536d122a0abae004c6438398eccd3682a7a2d", "fields": {"nom_de_la_commune": "CHAMBLANC", "libell_d_acheminement": "CHAMBLANC", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21131"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c771ad0469f9b92acec5771c34bab24f2da1a334", "fields": {"nom_de_la_commune": "CHARENCEY", "libell_d_acheminement": "CHARENCEY", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21144"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761d3462b8832edcb46c808914cd6d70b4b3af7c", "fields": {"nom_de_la_commune": "CHARIGNY", "libell_d_acheminement": "CHARIGNY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21145"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ab9f298797bfaabb0d030bf864595c16298c2a", "fields": {"nom_de_la_commune": "CHATELLENOT", "libell_d_acheminement": "CHATELLENOT", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21153"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "accafd1f85329fa2e8db284c6f778dc1826c7483", "fields": {"nom_de_la_commune": "CORBERON", "libell_d_acheminement": "CORBERON", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21189"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c373724001096c364435481acb7e1f2667590646", "fields": {"nom_de_la_commune": "CORGENGOUX", "libell_d_acheminement": "CORGENGOUX", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21193"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f13ccb4df6133499aeac624ab0e060066543e76b", "fields": {"nom_de_la_commune": "CORMOT LE GRAND", "libell_d_acheminement": "CORMOT LE GRAND", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21195"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "477eb59e5c09b94552ceb95a1bdbdd48fe65ea23", "fields": {"nom_de_la_commune": "CORROMBLES", "libell_d_acheminement": "CORROMBLES", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21198"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ff5815f10a4f21653eb6d2d9f2ff335c69ad709", "fields": {"nom_de_la_commune": "CORSAINT", "libell_d_acheminement": "CORSAINT", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21199"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad6f1c44eb4370c6f294b4ecec196e3e2dd1d78", "fields": {"nom_de_la_commune": "CUISEREY", "libell_d_acheminement": "CUISEREY", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21215"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a8e332ad5b7a61c3468bd160a8c6db7062bdb6b", "fields": {"nom_de_la_commune": "CURTIL ST SEINE", "libell_d_acheminement": "CURTIL ST SEINE", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21218"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4759a82683988cea1a87cc38b893c2faca4272c", "fields": {"nom_de_la_commune": "CUSSY LE CHATEL", "libell_d_acheminement": "CUSSY LE CHATEL", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21222"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adbd565a57a99ec4d027f26cae603b61e04bba2", "fields": {"nom_de_la_commune": "DIENAY", "libell_d_acheminement": "DIENAY", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21230"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f195b4c018d2bc27033a1d627721920ebf4d560c", "fields": {"nom_de_la_commune": "ECHALOT", "libell_d_acheminement": "ECHALOT", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21237"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0539150e8d3f98c43f127001df3f9a0dc8127a7e", "fields": {"nom_de_la_commune": "EPERNAY SOUS GEVREY", "libell_d_acheminement": "EPERNAY SOUS GEVREY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21246"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20998b80a258346da8fded7ff0d467382f1f6e83", "fields": {"nom_de_la_commune": "ETAULES", "libell_d_acheminement": "ETAULES", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21255"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03018796ded7c3703756674a497a2d638ff9352d", "fields": {"nom_de_la_commune": "FAVEROLLES LES LUCEY", "libell_d_acheminement": "FAVEROLLES LES LUCEY", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21262"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde07767a59feb276537d0b4b705ecf81934a1da", "fields": {"nom_de_la_commune": "FLACEY", "libell_d_acheminement": "FLACEY", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21266"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca13e6937118883902b8409ff4c1f90b298fa43c", "fields": {"nom_de_la_commune": "FONCEGRIVE", "libell_d_acheminement": "FONCEGRIVE", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21275"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb2fbdde756a0fe6aedb59287df1e57d70a38b2", "fields": {"nom_de_la_commune": "FROLOIS", "libell_d_acheminement": "FROLOIS", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21288"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79c3ac96abbfb2ee07c67afc5879eee9024691ed", "fields": {"nom_de_la_commune": "GENAY", "libell_d_acheminement": "GENAY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21291"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa3900753e65420f7d9de71e4af85cda9f1bae1", "fields": {"nom_de_la_commune": "GILLY LES CITEAUX", "libell_d_acheminement": "GILLY LES CITEAUX", "code_postal": "21640", "coordonnees_gps": [47.1699047121, 4.99001555579], "code_commune_insee": "21297"}, "geometry": {"type": "Point", "coordinates": [4.99001555579, 47.1699047121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8baca46d8655b3a929d621585899571b9804aba", "fields": {"nom_de_la_commune": "GISSEY LE VIEIL", "libell_d_acheminement": "GISSEY LE VIEIL", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21298"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ae27c9dd426d77fa117ca7b5c38910eba66f2b", "fields": {"nom_de_la_commune": "GRANCEY LE CHATEAU NEUVELLE", "libell_d_acheminement": "GRANCEY LE CHATEAU", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21304"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbba8ddd7447379fd9a21fd5c02184b742970cf6", "fields": {"code_postal": "21580", "code_commune_insee": "21304", "libell_d_acheminement": "GRANCEY LE CHATEAU", "ligne_5": "NEUVELLE LES GRANCEY", "nom_de_la_commune": "GRANCEY LE CHATEAU NEUVELLE", "coordonnees_gps": [47.6313040317, 4.97754059731]}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d90f2291fe7569fc65f825e67c39332bf1fc56", "fields": {"nom_de_la_commune": "GRESIGNY STE REINE", "libell_d_acheminement": "GRESIGNY STE REINE", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21307"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e788f7854d3dd9de3cdeea111b965fb3dbe21c41", "fields": {"nom_de_la_commune": "HAUTEROCHE", "libell_d_acheminement": "HAUTEROCHE", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21314"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d5b0faed5fc3c5c481081a10d119ec145de5ada", "fields": {"nom_de_la_commune": "HAUTEVILLE LES DIJON", "libell_d_acheminement": "HAUTEVILLE LES DIJON", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21315"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caf8323cbcd9d1261dd657f68baab34ab21308e3", "fields": {"nom_de_la_commune": "IZIER", "libell_d_acheminement": "IZIER", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21320"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ff4f798499e1d0eb89328d6d5a4b03bdbda5412", "fields": {"nom_de_la_commune": "JUILLENAY", "libell_d_acheminement": "JUILLENAY", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21328"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3903256ba7b553cae7ee6e2e97a6ac83396a4802", "fields": {"nom_de_la_commune": "JUILLY", "libell_d_acheminement": "JUILLY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21329"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53a68880e40f807a798bc194453893a8b2e9a0e2", "fields": {"nom_de_la_commune": "LABERGEMENT LES SEURRE", "libell_d_acheminement": "LABERGEMENT LES SEURRE", "code_postal": "21820", "coordonnees_gps": [46.9896528835, 5.08851380654], "code_commune_insee": "21332"}, "geometry": {"type": "Point", "coordinates": [5.08851380654, 46.9896528835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd77dbb4afe87eebd80ae91ccd98cf22e5bdde1a", "fields": {"nom_de_la_commune": "LAIGNES", "libell_d_acheminement": "LAIGNES", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21336"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "321fac6c5bfec288dacef28e5c378e33185b2a2d", "fields": {"nom_de_la_commune": "LAMARCHE SUR SAONE", "libell_d_acheminement": "LAMARCHE SUR SAONE", "code_postal": "21760", "coordonnees_gps": [47.2728531205, 5.36976377016], "code_commune_insee": "21337"}, "geometry": {"type": "Point", "coordinates": [5.36976377016, 47.2728531205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ab2ccbf84e2b83800bb3b9f7bc45cdda32064b", "fields": {"nom_de_la_commune": "LARREY", "libell_d_acheminement": "LARREY", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21343"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdbaef32f3b456c78d755fa6e2478bd69f37e90a", "fields": {"nom_de_la_commune": "LEVERNOIS", "libell_d_acheminement": "LEVERNOIS", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21347"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d993e07a800f971ff70f6aad7352c4610b6b4a", "fields": {"nom_de_la_commune": "LIERNAIS", "libell_d_acheminement": "LIERNAIS", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21349"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7356e9c8e6182269170f0fdbe00567bf6908f385", "fields": {"nom_de_la_commune": "LOUESME", "libell_d_acheminement": "LOUESME", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21357"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34e1b356ca566e23cb65f21c4f535a3dbd3735ae", "fields": {"nom_de_la_commune": "LUCENAY LE DUC", "libell_d_acheminement": "LUCENAY LE DUC", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21358"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e014960572cc885cee6ee22159d2f83459e03c1", "fields": {"nom_de_la_commune": "LUX", "libell_d_acheminement": "LUX", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21361"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f16843ad60c779773f8e82125377c72c55bdef", "fields": {"nom_de_la_commune": "MAGNY LAMBERT", "libell_d_acheminement": "MAGNY LAMBERT", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21364"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf77ccb9a21db695bd705cf01c3d9d84f167cd2", "fields": {"nom_de_la_commune": "MALAIN", "libell_d_acheminement": "MALAIN", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21373"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae888a581b054523816f0bc2cc32ddd970e1c2fa", "fields": {"nom_de_la_commune": "MARCELLOIS", "libell_d_acheminement": "MARCELLOIS", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21377"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bab6ddf985b24a84135680c1e26eab426ce2206a", "fields": {"nom_de_la_commune": "MARCILLY ET DRACY", "libell_d_acheminement": "MARCILLY ET DRACY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21381"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be3adb2b4ad70ded83dc7400c5e93a9cc41b150e", "fields": {"nom_de_la_commune": "MENESBLE", "libell_d_acheminement": "MENESBLE", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21402"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b534237b19b2b1200480841201518d1f38103c3", "fields": {"nom_de_la_commune": "MENETREUX LE PITOIS", "libell_d_acheminement": "MENETREUX LE PITOIS", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21404"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d05c80e302baf2fe61dd527492afd39efc1d907", "fields": {"nom_de_la_commune": "MIMEURE", "libell_d_acheminement": "MIMEURE", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21414"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6428151af04db2c46f00930c9c9c93f2e117bf26", "fields": {"nom_de_la_commune": "MINOT", "libell_d_acheminement": "MINOT", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21415"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baef64f45a4066db452c2ca8eb9a2f652de4a248", "fields": {"nom_de_la_commune": "MIREBEAU SUR BEZE", "libell_d_acheminement": "MIREBEAU SUR BEZE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21416"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "578fdbf6973ea9e919eb4ef4ea76bf8c7eb2d296", "fields": {"nom_de_la_commune": "MOLESME", "libell_d_acheminement": "MOLESME", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21419"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8953e4a6f113b5c69a88117535946f44934fc84e", "fields": {"nom_de_la_commune": "MOLOY", "libell_d_acheminement": "MOLOY", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21421"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a8a90471eab9a6aa5aedc11c95cef62b8021c85", "fields": {"nom_de_la_commune": "MONTAGNY LES SEURRE", "libell_d_acheminement": "MONTAGNY LES SEURRE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21424"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d2da3384c6a212504a91674be853b1055684bd0", "fields": {"nom_de_la_commune": "MONTIGNY ST BARTHELEMY", "libell_d_acheminement": "MONTIGNY ST BARTHELEMY", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21430"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a9ff93a9e6a4f5b8388b3b39f50ae16b34fe151", "fields": {"code_postal": "21610", "code_commune_insee": "21433", "libell_d_acheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", "ligne_5": "MORNAY", "nom_de_la_commune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE", "coordonnees_gps": [47.5437721668, 5.38811246138]}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29cb87b24e03e9a4d858b35fb0f4f09f0fbb44e5", "fields": {"nom_de_la_commune": "MONTLIOT ET COURCELLES", "libell_d_acheminement": "MONTLIOT ET COURCELLES", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21435"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddde2d86400e89ecee4857310193f6cabddf3a27", "fields": {"nom_de_la_commune": "MONTMOYEN", "libell_d_acheminement": "MONTMOYEN", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21438"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00581217c6e62064b509e6e28b6783a12569186c", "fields": {"nom_de_la_commune": "MUSSY LA FOSSE", "libell_d_acheminement": "MUSSY LA FOSSE", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21448"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0593d7a6f4406f170095228ebc232d766833eed", "fields": {"nom_de_la_commune": "NICEY", "libell_d_acheminement": "NICEY", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21454"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c218b1862f589c1c1740ca9ef3d0d3d9fd73c14f", "fields": {"nom_de_la_commune": "NOIRON SUR SEINE", "libell_d_acheminement": "NOIRON SUR SEINE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21460"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33d29b18a3ea0000178148a6d5f028512c6b6db3", "fields": {"code_postal": "21340", "code_commune_insee": "21461", "libell_d_acheminement": "NOLAY", "ligne_5": "CIREY LES NOLAY", "nom_de_la_commune": "NOLAY", "coordonnees_gps": [46.9889799591, 4.61638229862]}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce311e01c33f26927382c2ec2d04f56948d6af5", "fields": {"nom_de_la_commune": "NORGES LA VILLE", "libell_d_acheminement": "NORGES LA VILLE", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21462"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74661111a67a9591673496fdb0e96a0c9168f5d2", "fields": {"nom_de_la_commune": "PERRIGNY SUR L OGNON", "libell_d_acheminement": "PERRIGNY SUR L OGNON", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21482"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d044d00ae5c1d20ebf1e8de4199dcf2abe9cb78", "fields": {"nom_de_la_commune": "POMMARD", "libell_d_acheminement": "POMMARD", "code_postal": "21630", "coordonnees_gps": [47.013381569, 4.79505168277], "code_commune_insee": "21492"}, "geometry": {"type": "Point", "coordinates": [4.79505168277, 47.013381569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d7ae94e4dd6bcf93b98d7e672a509a17511a114", "fields": {"nom_de_la_commune": "PONT ET MASSENE", "libell_d_acheminement": "PONT ET MASSENE", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21497"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f5b0645c3c7b28c6f1d905aa504ab99d579463f", "fields": {"nom_de_la_commune": "POSANGES", "libell_d_acheminement": "POSANGES", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21498"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24fb8120824c41caf57371a11643e80125de9407", "fields": {"nom_de_la_commune": "POTHIERES", "libell_d_acheminement": "POTHIERES", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21499"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89dcde695c6aafb44e167f28f8b1810aba19b338", "fields": {"nom_de_la_commune": "POUILLY SUR SAONE", "libell_d_acheminement": "POUILLY SUR SAONE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21502"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c9fae2ba0180b4baa2af8f15f292fde1b2ef93", "fields": {"nom_de_la_commune": "PRALON", "libell_d_acheminement": "PRALON", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21504"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b98b6bf3af677bb3475ca1c1b1b3dc0319d193dd", "fields": {"nom_de_la_commune": "PRUSLY SUR OURCE", "libell_d_acheminement": "PRUSLY SUR OURCE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21510"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70fbc29bdd4ed8e2b1da86c325d14c9817849c58", "fields": {"nom_de_la_commune": "QUINCEY", "libell_d_acheminement": "QUINCEY", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21517"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea6d9a70c57ea218c420a1beda5c8133a3e73fb", "fields": {"nom_de_la_commune": "QUINCY LE VICOMTE", "libell_d_acheminement": "QUINCY LE VICOMTE", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21518"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d81da94d5ae80af2daa06d6c24acb7f95c741f42", "fields": {"nom_de_la_commune": "SACQUENAY", "libell_d_acheminement": "SACQUENAY", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21536"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "462d610f86fd7b19bb4cf9e4597547cd6b0625b4", "fields": {"nom_de_la_commune": "ST APOLLINAIRE", "libell_d_acheminement": "ST APOLLINAIRE", "code_postal": "21850", "coordonnees_gps": [47.3361536216, 5.09316183546], "code_commune_insee": "21540"}, "geometry": {"type": "Point", "coordinates": [5.09316183546, 47.3361536216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "160df4c39e0ab479a7073c7ac73e3f66037234ae", "fields": {"nom_de_la_commune": "ST GERMAIN DE MODEON", "libell_d_acheminement": "ST GERMAIN DE MODEON", "code_postal": "21530", "coordonnees_gps": [47.3897025459, 4.14447335078], "code_commune_insee": "21548"}, "geometry": {"type": "Point", "coordinates": [4.14447335078, 47.3897025459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c872292609d1f8744e291c7fce840171da401c49", "fields": {"nom_de_la_commune": "ST JEAN DE BOEUF", "libell_d_acheminement": "ST JEAN DE BOEUF", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21553"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3331b6a2d1e838802a86c07b2aaac7d45359012f", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21555"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc497db096bfd5c7951ba6fe0c3fe254cc32e901", "fields": {"nom_de_la_commune": "ST MARTIN DU MONT", "libell_d_acheminement": "ST MARTIN DU MONT", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21561"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "683bd22145e61be08d149175fe4c134a636b96e8", "fields": {"nom_de_la_commune": "ST MAURICE SUR VINGEANNE", "libell_d_acheminement": "ST MAURICE SUR VINGEANNE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21562"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d86b42dc4b08d5946a8487df61d0fdf48409790e", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21568"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a04839729004cf8929a8b77be42f5b9d04510f9", "fields": {"nom_de_la_commune": "ST THIBAULT", "libell_d_acheminement": "ST THIBAULT", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21576"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c1d35771d84735018ad481cffc7acb9f180167f", "fields": {"nom_de_la_commune": "SANTOSSE", "libell_d_acheminement": "SANTOSSE", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21583"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feec63dec793cb7713da39514e92ff89eb87a3d5", "fields": {"nom_de_la_commune": "SAULX LE DUC", "libell_d_acheminement": "SAULX LE DUC", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21587"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ea67b0a4fd93228ec980b431ce76475302df9cd", "fields": {"nom_de_la_commune": "SAUSSY", "libell_d_acheminement": "SAUSSY", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21589"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b523eef78f3abd2ab9cd33da404262151a0bfa", "fields": {"nom_de_la_commune": "SAVIGNY LE SEC", "libell_d_acheminement": "SAVIGNY LE SEC", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21591"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ab96f89b43739cd0de0553d7b7291613a35296", "fields": {"nom_de_la_commune": "LANNUX", "libell_d_acheminement": "LANNUX", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32192"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a34d576883c8eae0f3a222397604ec046db8266", "fields": {"nom_de_la_commune": "LARROQUE ENGALIN", "libell_d_acheminement": "LARROQUE ENGALIN", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32195"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63e09dceb6e72d1b1f8639831c0baf8797a2b5b", "fields": {"nom_de_la_commune": "XIVRAY ET MARVOISIN", "libell_d_acheminement": "XIVRAY ET MARVOISIN", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55586"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8e7a3ef58161b629d9828eb2097b6718683fd10", "fields": {"nom_de_la_commune": "ALLAIRE", "libell_d_acheminement": "ALLAIRE", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56001"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b38249b498034861d6641daa2528b97f3a0480", "fields": {"nom_de_la_commune": "ARZAL", "libell_d_acheminement": "ARZAL", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56004"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9908a619b53160a638fbbab3fbe81a7665311de2", "fields": {"code_postal": "56640", "code_commune_insee": "56005", "libell_d_acheminement": "ARZON", "ligne_5": "PORT NAVALO", "nom_de_la_commune": "ARZON", "coordonnees_gps": [47.5474079943, -2.88721612106]}, "geometry": {"type": "Point", "coordinates": [-2.88721612106, 47.5474079943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "460267db2df879b4e8d0c659dbbbcc0d52b38192", "fields": {"nom_de_la_commune": "AURAY", "libell_d_acheminement": "AURAY", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56007"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "628bc84eb377c39596dd34d1f434630a8354586e", "fields": {"nom_de_la_commune": "BANGOR", "libell_d_acheminement": "BANGOR", "code_postal": "56360", "coordonnees_gps": [47.3271241561, -3.17738378145], "code_commune_insee": "56009"}, "geometry": {"type": "Point", "coordinates": [-3.17738378145, 47.3271241561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a6ec1f0455346132ed29a53e08188592e169ab", "fields": {"nom_de_la_commune": "BEGANNE", "libell_d_acheminement": "BEGANNE", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56011"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bae4e25d8c730a63cfa6387a4f845ce743cd7eb6", "fields": {"nom_de_la_commune": "BREHAN", "libell_d_acheminement": "BREHAN", "code_postal": "56580", "coordonnees_gps": [48.0645686885, -2.7233749534], "code_commune_insee": "56024"}, "geometry": {"type": "Point", "coordinates": [-2.7233749534, 48.0645686885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f655a21ab32bbf625748330e06524226719c07c6", "fields": {"nom_de_la_commune": "BUBRY", "libell_d_acheminement": "BUBRY", "code_postal": "56310", "coordonnees_gps": [47.9751607277, -3.12433210411], "code_commune_insee": "56026"}, "geometry": {"type": "Point", "coordinates": [-3.12433210411, 47.9751607277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ce301f68c96be98dac014a5d112f21f66581b6", "fields": {"nom_de_la_commune": "BULEON", "libell_d_acheminement": "BULEON", "code_postal": "56420", "coordonnees_gps": [47.8390378246, -2.64768279068], "code_commune_insee": "56027"}, "geometry": {"type": "Point", "coordinates": [-2.64768279068, 47.8390378246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8656e0599e5c73138b7ffa9d101c9a70ead522d1", "fields": {"nom_de_la_commune": "CAMPENEAC", "libell_d_acheminement": "CAMPENEAC", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56032"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c52af2d32c62e657e6716ce9da26bde10d5da9d", "fields": {"nom_de_la_commune": "LA CHAPELLE GACELINE", "libell_d_acheminement": "LA CHAPELLE GACELINE", "code_postal": "56200", "coordonnees_gps": [47.7586563678, -2.1829238317], "code_commune_insee": "56038"}, "geometry": {"type": "Point", "coordinates": [-2.1829238317, 47.7586563678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e93807db42bdd6be4723f66eede0b5835b2028", "fields": {"nom_de_la_commune": "LA CHAPELLE NEUVE", "libell_d_acheminement": "LA CHAPELLE NEUVE", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56039"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0bb376e86f8864324f3e02bda1c18a206e30b9", "fields": {"nom_de_la_commune": "CONCORET", "libell_d_acheminement": "CONCORET", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56043"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c359bc92fb384750eb9069d85cac6f78553cdeed", "fields": {"nom_de_la_commune": "LE COURS", "libell_d_acheminement": "LE COURS", "code_postal": "56230", "coordonnees_gps": [47.6890583485, -2.46488930013], "code_commune_insee": "56045"}, "geometry": {"type": "Point", "coordinates": [-2.46488930013, 47.6890583485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4fee347a8bf3f568833e31fc442a272f266c72e", "fields": {"nom_de_la_commune": "CRACH", "libell_d_acheminement": "CRACH", "code_postal": "56950", "coordonnees_gps": [47.6304651493, -3.00066063673], "code_commune_insee": "56046"}, "geometry": {"type": "Point", "coordinates": [-3.00066063673, 47.6304651493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "565e8599071341cd26c382f4b6f99aee3a3a4c3b", "fields": {"nom_de_la_commune": "LA CROIX HELLEAN", "libell_d_acheminement": "LA CROIX HELLEAN", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56050"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94468ea51d18c2518666bf02e712879db8d22a10", "fields": {"nom_de_la_commune": "DAMGAN", "libell_d_acheminement": "DAMGAN", "code_postal": "56750", "coordonnees_gps": [47.5217687274, -2.57836197527], "code_commune_insee": "56052"}, "geometry": {"type": "Point", "coordinates": [-2.57836197527, 47.5217687274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b9a7597804c5aed0994678599c40217c394064", "fields": {"nom_de_la_commune": "LE FAOUET", "libell_d_acheminement": "LE FAOUET", "code_postal": "56320", "coordonnees_gps": [48.0259259973, -3.47528585034], "code_commune_insee": "56057"}, "geometry": {"type": "Point", "coordinates": [-3.47528585034, 48.0259259973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b004bb3048f3a1ce8e4e7e378dc6775547c01d30", "fields": {"nom_de_la_commune": "GESTEL", "libell_d_acheminement": "GESTEL", "code_postal": "56530", "coordonnees_gps": [47.7891669692, -3.42348141885], "code_commune_insee": "56063"}, "geometry": {"type": "Point", "coordinates": [-3.42348141885, 47.7891669692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b6cecc7bbd8928ac2f0811965c7ba207214eeec", "fields": {"nom_de_la_commune": "GRAND CHAMP", "libell_d_acheminement": "GRAND CHAMP", "code_postal": "56390", "coordonnees_gps": [47.7748700916, -2.83665488013], "code_commune_insee": "56067"}, "geometry": {"type": "Point", "coordinates": [-2.83665488013, 47.7748700916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "982250ba84cdd5e993ee5bf4a67cfd400e226817", "fields": {"nom_de_la_commune": "GUEHENNO", "libell_d_acheminement": "GUEHENNO", "code_postal": "56420", "coordonnees_gps": [47.8390378246, -2.64768279068], "code_commune_insee": "56071"}, "geometry": {"type": "Point", "coordinates": [-2.64768279068, 47.8390378246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9934af238a303527e1dfdc9a3d961b34491da619", "fields": {"nom_de_la_commune": "GUELTAS", "libell_d_acheminement": "GUELTAS", "code_postal": "56920", "coordonnees_gps": [48.081238115, -2.86082261519], "code_commune_insee": "56072"}, "geometry": {"type": "Point", "coordinates": [-2.86082261519, 48.081238115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b3b53ab2c665fd0b1b09dbb5d90e87e236f75b5", "fields": {"nom_de_la_commune": "GUEMENE SUR SCORFF", "libell_d_acheminement": "GUEMENE SUR SCORFF", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56073"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d34166630aaadfc848d1b6bfc1a33a6914a83600", "fields": {"nom_de_la_commune": "GUENIN", "libell_d_acheminement": "GUENIN", "code_postal": "56150", "coordonnees_gps": [47.8954786966, -3.01425366823], "code_commune_insee": "56074"}, "geometry": {"type": "Point", "coordinates": [-3.01425366823, 47.8954786966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc06eef14f2d88a46992fb0de0bdae5611b286c5", "fields": {"code_postal": "56380", "code_commune_insee": "56075", "libell_d_acheminement": "GUER", "ligne_5": "COETQUIDAN BELLEVUE", "nom_de_la_commune": "GUER", "coordonnees_gps": [47.9150020404, -2.16277339517]}, "geometry": {"type": "Point", "coordinates": [-2.16277339517, 47.9150020404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "804e083d4595641ffaeda468930ed52c1a43f40e", "fields": {"nom_de_la_commune": "GUISCRIFF", "libell_d_acheminement": "GUISCRIFF", "code_postal": "56560", "coordonnees_gps": [48.0425866402, -3.62363029041], "code_commune_insee": "56081"}, "geometry": {"type": "Point", "coordinates": [-3.62363029041, 48.0425866402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09518d9c59ab9950410b485383d54a3805a557ba", "fields": {"nom_de_la_commune": "LE HEZO", "libell_d_acheminement": "LE HEZO", "code_postal": "56450", "coordonnees_gps": [47.5984313167, -2.64319395081], "code_commune_insee": "56084"}, "geometry": {"type": "Point", "coordinates": [-2.64319395081, 47.5984313167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "244098575fa066069602579d8d387adb08db7489", "fields": {"nom_de_la_commune": "LANDEVANT", "libell_d_acheminement": "LANDEVANT", "code_postal": "56690", "coordonnees_gps": [47.758091509, -3.12551793319], "code_commune_insee": "56097"}, "geometry": {"type": "Point", "coordinates": [-3.12551793319, 47.758091509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d37112b4b9d5621c9ca719ba9c5e7b76e1afa1", "fields": {"nom_de_la_commune": "LANGOELAN", "libell_d_acheminement": "LANGOELAN", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56099"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778d70d8757885492cc04e121c98203b9fa1c7ae", "fields": {"nom_de_la_commune": "LARMOR PLAGE", "libell_d_acheminement": "LARMOR PLAGE", "code_postal": "56260", "coordonnees_gps": [47.7160037145, -3.39135560141], "code_commune_insee": "56107"}, "geometry": {"type": "Point", "coordinates": [-3.39135560141, 47.7160037145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312f797938f58c2d8936138fe26f9486ed3275f0", "fields": {"nom_de_la_commune": "LIZIO", "libell_d_acheminement": "LIZIO", "code_postal": "56460", "coordonnees_gps": [47.8267704974, -2.49804841656], "code_commune_insee": "56112"}, "geometry": {"type": "Point", "coordinates": [-2.49804841656, 47.8267704974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5286c376ddfc990a189c6524195a4a4b89f3fe1", "fields": {"nom_de_la_commune": "LOCMARIAQUER", "libell_d_acheminement": "LOCMARIAQUER", "code_postal": "56740", "coordonnees_gps": [47.5773440831, -2.9630029872], "code_commune_insee": "56116"}, "geometry": {"type": "Point", "coordinates": [-2.9630029872, 47.5773440831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81f7800b0fa9d6d6a8f279b38edc0fa48c1abe2a", "fields": {"nom_de_la_commune": "LOCQUELTAS", "libell_d_acheminement": "LOCQUELTAS", "code_postal": "56390", "coordonnees_gps": [47.7748700916, -2.83665488013], "code_commune_insee": "56120"}, "geometry": {"type": "Point", "coordinates": [-2.83665488013, 47.7748700916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39fe726e85428936e344cd6886491130bf7a04c5", "fields": {"nom_de_la_commune": "MARZAN", "libell_d_acheminement": "MARZAN", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56126"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d692d729898a662521ace877d5024d86c2991e30", "fields": {"nom_de_la_commune": "MENEAC", "libell_d_acheminement": "MENEAC", "code_postal": "56490", "coordonnees_gps": [48.0867387661, -2.46008188361], "code_commune_insee": "56129"}, "geometry": {"type": "Point", "coordinates": [-2.46008188361, 48.0867387661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d79d2e9e19aedcd1c1ee802ff77d36cabc2d8ffc", "fields": {"nom_de_la_commune": "MEUCON", "libell_d_acheminement": "MEUCON", "code_postal": "56890", "coordonnees_gps": [47.7007937591, -2.78248862102], "code_commune_insee": "56132"}, "geometry": {"type": "Point", "coordinates": [-2.78248862102, 47.7007937591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "801ad7224ab4771ad6972cda7e1b0766fce01ad5", "fields": {"nom_de_la_commune": "MONTENEUF", "libell_d_acheminement": "MONTENEUF", "code_postal": "56380", "coordonnees_gps": [47.9150020404, -2.16277339517], "code_commune_insee": "56136"}, "geometry": {"type": "Point", "coordinates": [-2.16277339517, 47.9150020404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f715367722a4c5bb51ffd816e4a946a8e37bcc0c", "fields": {"nom_de_la_commune": "MONTERREIN", "libell_d_acheminement": "MONTERREIN", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56138"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d6aff56275cb91b3d0d43962485d7bba9113a4", "fields": {"nom_de_la_commune": "LE PALAIS", "libell_d_acheminement": "LE PALAIS", "code_postal": "56360", "coordonnees_gps": [47.3271241561, -3.17738378145], "code_commune_insee": "56152"}, "geometry": {"type": "Point", "coordinates": [-3.17738378145, 47.3271241561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7813c50a09904534e2c1601e0344deea359428", "fields": {"nom_de_la_commune": "PLOEMEL", "libell_d_acheminement": "PLOEMEL", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56161"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f049ee4de0a6ddb57a140bd050a0218f1a60359", "fields": {"nom_de_la_commune": "PLOERDUT", "libell_d_acheminement": "PLOERDUT", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56163"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b193667eaa958c34b8b8b96e30ff2c8d1d2e931", "fields": {"nom_de_la_commune": "PLOURAY", "libell_d_acheminement": "PLOURAY", "code_postal": "56770", "coordonnees_gps": [48.1344418052, -3.37567057711], "code_commune_insee": "56170"}, "geometry": {"type": "Point", "coordinates": [-3.37567057711, 48.1344418052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c25950518bbfae468be725199843205a86cb57", "fields": {"code_postal": "56330", "code_commune_insee": "56177", "libell_d_acheminement": "PLUVIGNER", "ligne_5": "BIEUZY LANVAUX", "nom_de_la_commune": "PLUVIGNER", "coordonnees_gps": [47.797362476, -3.01124558366]}, "geometry": {"type": "Point", "coordinates": [-3.01124558366, 47.797362476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c09c7be670e0908335231f86fc083396f1581a68", "fields": {"nom_de_la_commune": "PONT SCORFF", "libell_d_acheminement": "PONT SCORFF", "code_postal": "56620", "coordonnees_gps": [47.8545097905, -3.38768121277], "code_commune_insee": "56179"}, "geometry": {"type": "Point", "coordinates": [-3.38768121277, 47.8545097905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6452feed882f9819df133cde6435b699f3154ea", "fields": {"nom_de_la_commune": "REGUINY", "libell_d_acheminement": "REGUINY", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56190"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "753952736839d23cf90b1f70af5c98b51ed709dc", "fields": {"nom_de_la_commune": "ST ALLOUESTRE", "libell_d_acheminement": "ST ALLOUESTRE", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56204"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6465e7b09db2d56bd009ae22e467dfd3aa3a78aa", "fields": {"nom_de_la_commune": "ST AVE", "libell_d_acheminement": "ST AVE", "code_postal": "56890", "coordonnees_gps": [47.7007937591, -2.78248862102], "code_commune_insee": "56206"}, "geometry": {"type": "Point", "coordinates": [-2.78248862102, 47.7007937591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d681df5528565b3a7464f8fe16b481e0629b21", "fields": {"nom_de_la_commune": "ST BRIEUC DE MAURON", "libell_d_acheminement": "ST BRIEUC DE MAURON", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56208"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d2a058091da20c651e7f50fb72f9080b99df217", "fields": {"nom_de_la_commune": "STE BRIGITTE", "libell_d_acheminement": "STE BRIGITTE", "code_postal": "56480", "coordonnees_gps": [48.1490399195, -3.08590175236], "code_commune_insee": "56209"}, "geometry": {"type": "Point", "coordinates": [-3.08590175236, 48.1490399195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa54d6b025f79fc6004e153e13b390892c9fe09", "fields": {"nom_de_la_commune": "STE HELENE", "libell_d_acheminement": "STE HELENE", "code_postal": "56700", "coordonnees_gps": [47.7669954089, -3.24285688708], "code_commune_insee": "56220"}, "geometry": {"type": "Point", "coordinates": [-3.24285688708, 47.7669954089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adedd8421e60aab05f767497f5b4057379bbec0", "fields": {"nom_de_la_commune": "ST LAURENT SUR OUST", "libell_d_acheminement": "ST LAURENT SUR OUST", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56224"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d7a715267e4ca4669a37b5d7b96f86d9df20a74", "fields": {"nom_de_la_commune": "ST LERY", "libell_d_acheminement": "ST LERY", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56225"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a228fa475bc373a76f3b151e7c7692265566c64", "fields": {"nom_de_la_commune": "ST NICOLAS DU TERTRE", "libell_d_acheminement": "ST NICOLAS DU TERTRE", "code_postal": "56910", "coordonnees_gps": [47.8192433861, -2.1438942597], "code_commune_insee": "56230"}, "geometry": {"type": "Point", "coordinates": [-2.1438942597, 47.8192433861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea89fa46aac37eccee0435268e9f00e13218d742", "fields": {"nom_de_la_commune": "ST NOLFF", "libell_d_acheminement": "ST NOLFF", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56231"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a429c9ac7b6615ca694a2f220b2ea5d794477f1", "fields": {"nom_de_la_commune": "THEHILLAC", "libell_d_acheminement": "THEHILLAC", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56250"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f55faca71a4de0c8b9f8ac6255c86f55b04db397", "fields": {"nom_de_la_commune": "LA TRINITE SUR MER", "libell_d_acheminement": "LA TRINITE SUR MER", "code_postal": "56470", "coordonnees_gps": [47.589127688, -3.01738513558], "code_commune_insee": "56258"}, "geometry": {"type": "Point", "coordinates": [-3.01738513558, 47.589127688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d13d782f0634713addaec83234169f6bf898073", "fields": {"nom_de_la_commune": "AMANVILLERS", "libell_d_acheminement": "AMANVILLERS", "code_postal": "57865", "coordonnees_gps": [49.1597746505, 6.04639096632], "code_commune_insee": "57017"}, "geometry": {"type": "Point", "coordinates": [6.04639096632, 49.1597746505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "436b3bd51d34eb7f631a915cb53390dd34bf0d6d", "fields": {"code_postal": "57360", "code_commune_insee": "57019", "libell_d_acheminement": "AMNEVILLE LES THERMES", "ligne_5": "MALANCOURT LA MONTAGNE", "nom_de_la_commune": "AMNEVILLE", "coordonnees_gps": [49.2415476274, 6.10299353804]}, "geometry": {"type": "Point", "coordinates": [6.10299353804, 49.2415476274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "037e8b646d44ed3c8bc39dbca235143788e422f5", "fields": {"nom_de_la_commune": "ANCERVILLE", "libell_d_acheminement": "ANCERVILLE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57020"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a53776ee73a4e49eae80d76c229ad178d518912", "fields": {"nom_de_la_commune": "ARGANCY", "libell_d_acheminement": "ARGANCY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57028"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb84cb2543cb226585cbeb931009b28026a3a135", "fields": {"nom_de_la_commune": "ARS SUR MOSELLE", "libell_d_acheminement": "ARS SUR MOSELLE", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57032"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba0b5617e9d479cfbf5c69c9a3b69fcac98b6b3", "fields": {"nom_de_la_commune": "ARZVILLER", "libell_d_acheminement": "ARZVILLER", "code_postal": "57405", "coordonnees_gps": [48.7255604204, 7.15431817508], "code_commune_insee": "57033"}, "geometry": {"type": "Point", "coordinates": [7.15431817508, 48.7255604204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38204372b999f9ff7c408b347d417fd19ebe712c", "fields": {"nom_de_la_commune": "AUBE", "libell_d_acheminement": "AUBE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57037"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35bb876760dd8ac9dec1d2f57b656d360bdffb20", "fields": {"nom_de_la_commune": "AUGNY", "libell_d_acheminement": "AUGNY", "code_postal": "57685", "coordonnees_gps": [49.0554257557, 6.11601583087], "code_commune_insee": "57039"}, "geometry": {"type": "Point", "coordinates": [6.11601583087, 49.0554257557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7944b792df997ddc69206dc4dafca4bdcff1a0e5", "fields": {"nom_de_la_commune": "BARCHAIN", "libell_d_acheminement": "BARCHAIN", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57050"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c62112270bf29311341e4dd578aad5469eb380", "fields": {"nom_de_la_commune": "BECHY", "libell_d_acheminement": "BECHY", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57057"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4821c02e1bf56caf804cd29faeb4e4ed3bfbe97a", "fields": {"nom_de_la_commune": "BERG SUR MOSELLE", "libell_d_acheminement": "BERG SUR MOSELLE", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57062"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5cf2d8d9f3cb8e907531e663a311a7cf27bb19", "fields": {"nom_de_la_commune": "BERMERING", "libell_d_acheminement": "BERMERING", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57065"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7604fb24555baa6afd61edfcfe583f48d49e73e4", "fields": {"nom_de_la_commune": "BINING", "libell_d_acheminement": "BINING", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57083"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dda19860a5d543e5d4723cd684244b340e277d8", "fields": {"nom_de_la_commune": "BITCHE", "libell_d_acheminement": "BITCHE", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57089"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9024eeed1417cef615d66a0b9b0bfbf48cc107e", "fields": {"nom_de_la_commune": "BLANCHE EGLISE", "libell_d_acheminement": "BLANCHE EGLISE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57090"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7feda6e40d94cea2e2d003d612779aad8fbd8120", "fields": {"nom_de_la_commune": "BOURGALTROFF", "libell_d_acheminement": "BOURGALTROFF", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57098"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7469f5a994ceb82878fb59615e10b7f15228c9be", "fields": {"nom_de_la_commune": "BOUSSE", "libell_d_acheminement": "BOUSSE", "code_postal": "57310", "coordonnees_gps": [49.2880823973, 6.21031753305], "code_commune_insee": "57102"}, "geometry": {"type": "Point", "coordinates": [6.21031753305, 49.2880823973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40bc312f9b7aad397e09205b734b7a2c48615452", "fields": {"nom_de_la_commune": "BREIDENBACH", "libell_d_acheminement": "BREIDENBACH", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57108"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8e6b75ebe23e1531182ea595a8f2495facf2552", "fields": {"nom_de_la_commune": "BRONVAUX", "libell_d_acheminement": "BRONVAUX", "code_postal": "57535", "coordonnees_gps": [49.2137829893, 6.11073002885], "code_commune_insee": "57111"}, "geometry": {"type": "Point", "coordinates": [6.11073002885, 49.2137829893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c737cc7897815dac3aaa68de50d677ad53dd82", "fields": {"nom_de_la_commune": "BUDLING", "libell_d_acheminement": "BUDLING", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57118"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d040072016fb62f13b76e8356ede9b377e723f56", "fields": {"nom_de_la_commune": "BURLIONCOURT", "libell_d_acheminement": "BURLIONCOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57120"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ebb0a00c42a6e669eb52cd3ecfa543e3eb67f19", "fields": {"nom_de_la_commune": "CHARLEVILLE SOUS BOIS", "libell_d_acheminement": "CHARLEVILLE SOUS BOIS", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57128"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0e1c2d69cd8032242aa075fa467a38ec1503c7", "fields": {"nom_de_la_commune": "CHARLY ORADOUR", "libell_d_acheminement": "CHARLY ORADOUR", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57129"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab804cee3771de48139828d2a00e76a301cf1eeb", "fields": {"nom_de_la_commune": "CHATEAU SALINS", "libell_d_acheminement": "CHATEAU SALINS", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57132"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bcd4cb38622ab901ed0ba2574704be1196cd429", "fields": {"nom_de_la_commune": "CHATEAU VOUE", "libell_d_acheminement": "CHATEAU VOUE", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57133"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b60f2f3272fa2e8e81baabb4d38dfafc177e49", "fields": {"nom_de_la_commune": "CONDE NORTHEN", "libell_d_acheminement": "CONDE NORTHEN", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57150"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c924d58676d4301049109f88351566e6e1833d52", "fields": {"nom_de_la_commune": "COUME", "libell_d_acheminement": "COUME", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57154"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cde4a12a40157c471f928b2dfc065261ff5b5dc", "fields": {"nom_de_la_commune": "DESSELING", "libell_d_acheminement": "DESSELING", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57173"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23561618c7d6d695bd621aefaceec6f8992757d0", "fields": {"nom_de_la_commune": "DESTRY", "libell_d_acheminement": "DESTRY", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57174"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f4171ef2ba56d6f659f7049141658289e49a74", "fields": {"nom_de_la_commune": "DONNELAY", "libell_d_acheminement": "DONNELAY", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57183"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46a6ca3ff6b8018793993e41657ef54b717ddc07", "fields": {"nom_de_la_commune": "EINCHEVILLE", "libell_d_acheminement": "EINCHEVILLE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57189"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "439205d6f5f338d12673503bea5b366a5ad666b6", "fields": {"nom_de_la_commune": "ENNERY", "libell_d_acheminement": "ENNERY", "code_postal": "57365", "coordonnees_gps": [49.228567016, 6.24894723859], "code_commune_insee": "57193"}, "geometry": {"type": "Point", "coordinates": [6.24894723859, 49.228567016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa190c3f8c8378318617dd4037dc46837cde204", "fields": {"nom_de_la_commune": "ENTRANGE", "libell_d_acheminement": "ENTRANGE", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57194"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da4e583c1dad98e1009766a0c0ab6e97fff0a0b", "fields": {"nom_de_la_commune": "ERNESTVILLER", "libell_d_acheminement": "ERNESTVILLER", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57197"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6adac6cb879b6c7075468849b4fbf50395c0c40d", "fields": {"nom_de_la_commune": "LES ETANGS", "libell_d_acheminement": "LES ETANGS", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57200"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a631a464faf015264b2faf53e2baa670cc908bc", "fields": {"nom_de_la_commune": "FAULQUEMONT", "libell_d_acheminement": "FAULQUEMONT", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57209"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b1a55752786ca2d942c573f86313d488cfebd1", "fields": {"code_postal": "57380", "code_commune_insee": "57209", "libell_d_acheminement": "FAULQUEMONT", "ligne_5": "CHEMERY", "nom_de_la_commune": "FAULQUEMONT", "coordonnees_gps": [49.0163431022, 6.59197776669]}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddd86dfb9405d710af4441b26369a53df0c66bb7", "fields": {"nom_de_la_commune": "FIXEM", "libell_d_acheminement": "FIXEM", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57214"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74382a44fd53927c17567dda8414d4e5e5790a44", "fields": {"code_postal": "57190", "code_commune_insee": "57221", "libell_d_acheminement": "FLORANGE", "ligne_5": "EBANGE", "nom_de_la_commune": "FLORANGE", "coordonnees_gps": [49.3279409342, 6.12312387666]}, "geometry": {"type": "Point", "coordinates": [6.12312387666, 49.3279409342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29ec518008bcc2ccdd76c6e361e23e116d8bf8a0", "fields": {"nom_de_la_commune": "FOSSIEUX", "libell_d_acheminement": "FOSSIEUX", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57228"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fded00cbbc853ad90bcd903c5a11ea61c730ea2", "fields": {"nom_de_la_commune": "FREMESTROFF", "libell_d_acheminement": "FREMESTROFF", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57237"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18733c15aecb3401591b3e56e57c8c2020559f1c", "fields": {"nom_de_la_commune": "FREYBOUSE", "libell_d_acheminement": "FREYBOUSE", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57239"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1e00fbb1953045aba68b9a72e5817fb718f6144", "fields": {"nom_de_la_commune": "FREYMING MERLEBACH", "libell_d_acheminement": "FREYMING MERLEBACH", "code_postal": "57800", "coordonnees_gps": [49.1440107234, 6.82296653278], "code_commune_insee": "57240"}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40b9cfc55c7345bd10ca240daa7314e60d23e892", "fields": {"nom_de_la_commune": "MESSERY", "libell_d_acheminement": "MESSERY", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74180"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aace89d7dda206d5ad0c107a0643ae2679d8554f", "fields": {"code_postal": "74440", "code_commune_insee": "74183", "libell_d_acheminement": "MIEUSSY", "ligne_5": "SOMMAND", "nom_de_la_commune": "MIEUSSY", "coordonnees_gps": [46.1230411459, 6.600455476]}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb154f1dda74e9b6db9a92917ba1f70debbeb3f1", "fields": {"nom_de_la_commune": "MONNETIER MORNEX", "libell_d_acheminement": "MONNETIER MORNEX", "code_postal": "74560", "coordonnees_gps": [46.1345324619, 6.20396278518], "code_commune_insee": "74185"}, "geometry": {"type": "Point", "coordinates": [6.20396278518, 46.1345324619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3575449a468573fc2560c1a84c8b98143bd7c8d3", "fields": {"nom_de_la_commune": "MORILLON", "libell_d_acheminement": "MORILLON", "code_postal": "74440", "coordonnees_gps": [46.1230411459, 6.600455476], "code_commune_insee": "74190"}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb17720811f3697b7735a1cda9cd4340f4b212fe", "fields": {"nom_de_la_commune": "MORZINE", "libell_d_acheminement": "MORZINE", "code_postal": "74110", "coordonnees_gps": [46.1857834768, 6.72082435354], "code_commune_insee": "74191"}, "geometry": {"type": "Point", "coordinates": [6.72082435354, 46.1857834768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988420477901a9e7fa79f429fae970bb97c3d3e1", "fields": {"nom_de_la_commune": "NANCY SUR CLUSES", "libell_d_acheminement": "NANCY SUR CLUSES", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74196"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3810b4240437c6b805f773cd151a5240472990", "fields": {"nom_de_la_commune": "NEYDENS", "libell_d_acheminement": "NEYDENS", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74201"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1119ff146a0450d0054bbecdf07b5b86f3f81afa", "fields": {"nom_de_la_commune": "NOVEL", "libell_d_acheminement": "NOVEL", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74203"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c22cd0b313f602bf5aacb2aab696c6b30378309", "fields": {"nom_de_la_commune": "ONNION", "libell_d_acheminement": "ONNION", "code_postal": "74490", "coordonnees_gps": [46.1756757633, 6.49134958977], "code_commune_insee": "74205"}, "geometry": {"type": "Point", "coordinates": [6.49134958977, 46.1756757633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9d79ccf415d97c800cec081cd3a4e9c03b7a7d", "fields": {"code_postal": "74190", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "CHEDDE", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6958f5891d92fa7a27061375522c6012eb063c6", "fields": {"nom_de_la_commune": "PASSY", "libell_d_acheminement": "PASSY", "code_postal": "74480", "coordonnees_gps": [45.9541023994, 6.74002173102], "code_commune_insee": "74208"}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff892096c5d19c633bffcb7727ee4bbf88bcb95e", "fields": {"code_postal": "74480", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "GUEBRIANT", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f17ed803bd4776a0efb78b495ea70126a4e2746", "fields": {"code_postal": "74480", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "PLATEAU D ASSY", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9c3ae4e74a18e6bf54b54f3c46217daee82fb1", "fields": {"code_postal": "74480", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "PRAZ COUTANT", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77dce03039f6a6bb6eb84cafd4bfc0a761a49938", "fields": {"nom_de_la_commune": "LE PETIT BORNAND LES GLIERES", "libell_d_acheminement": "LE PETIT BORNAND LES GLIERES", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74212"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b628ba09bd8d7eb28336e8d7ff28b5beaa60a794", "fields": {"nom_de_la_commune": "LE REPOSOIR", "libell_d_acheminement": "LE REPOSOIR", "code_postal": "74950", "coordonnees_gps": [46.0082365533, 6.53107760543], "code_commune_insee": "74221"}, "geometry": {"type": "Point", "coordinates": [6.53107760543, 46.0082365533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bcd918b5431525acbc7e2e064262ca66057082c", "fields": {"nom_de_la_commune": "LA RIVIERE ENVERSE", "libell_d_acheminement": "LA RIVIERE ENVERSE", "code_postal": "74440", "coordonnees_gps": [46.1230411459, 6.600455476], "code_commune_insee": "74223"}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "733962e8e50a68708929d3b0c2e2780c2f91081f", "fields": {"nom_de_la_commune": "ST BLAISE", "libell_d_acheminement": "ST BLAISE", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74228"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d4cab2023213d6fea8730fb161b975bef44f6e", "fields": {"nom_de_la_commune": "ST GINGOLPH", "libell_d_acheminement": "ST GINGOLPH", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74237"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "210861c4ce052e234c6a36f94fc4ba6ca35349c7", "fields": {"nom_de_la_commune": "ST JEAN DE SIXT", "libell_d_acheminement": "ST JEAN DE SIXT", "code_postal": "74450", "coordonnees_gps": [45.9510244124, 6.46516169644], "code_commune_insee": "74239"}, "geometry": {"type": "Point", "coordinates": [6.46516169644, 45.9510244124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5a3deb1f4c93bbf42e4dd2d857db486c2f970f", "fields": {"code_postal": "74700", "code_commune_insee": "74256", "libell_d_acheminement": "SALLANCHES", "ligne_5": "ST MARTIN SUR ARVE", "nom_de_la_commune": "SALLANCHES", "coordonnees_gps": [45.935449139, 6.60325360691]}, "geometry": {"type": "Point", "coordinates": [6.60325360691, 45.935449139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "990f802db29226c73cffc8377f60d4d5ef5ba3dd", "fields": {"nom_de_la_commune": "LE SAPPEY", "libell_d_acheminement": "LE SAPPEY", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74259"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1f4d0d9089e341f321b3b90b4cfab53093d9a70", "fields": {"nom_de_la_commune": "SAVIGNY", "libell_d_acheminement": "SAVIGNY", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74260"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b239ed40d20e651e85756ca6540c39040cf41f5b", "fields": {"nom_de_la_commune": "SCIONZIER", "libell_d_acheminement": "SCIONZIER", "code_postal": "74950", "coordonnees_gps": [46.0082365533, 6.53107760543], "code_commune_insee": "74264"}, "geometry": {"type": "Point", "coordinates": [6.53107760543, 46.0082365533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7acf4424a000e6cbe7b37edfb3f074dcc27e557", "fields": {"nom_de_la_commune": "SEVRIER", "libell_d_acheminement": "SEVRIER", "code_postal": "74320", "coordonnees_gps": [45.8239490995, 6.13040612196], "code_commune_insee": "74267"}, "geometry": {"type": "Point", "coordinates": [6.13040612196, 45.8239490995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af45aac2f03ba12e7c9f31f9d862aec0510f33ee", "fields": {"nom_de_la_commune": "SIXT FER A CHEVAL", "libell_d_acheminement": "SIXT FER A CHEVAL", "code_postal": "74740", "coordonnees_gps": [46.0540293114, 6.81235489763], "code_commune_insee": "74273"}, "geometry": {"type": "Point", "coordinates": [6.81235489763, 46.0540293114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e0584a94917280f035e601a93ebbb81f59b071", "fields": {"nom_de_la_commune": "VAL DE FIER", "libell_d_acheminement": "VAL DE FIER", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74274"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a23b49e446129f3b7782c9bcd6e75c6f7e2212dc", "fields": {"nom_de_la_commune": "THONES", "libell_d_acheminement": "THONES", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74280"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157e61bb6a0722e9e78be405a9f407f4214b1050", "fields": {"code_postal": "74200", "code_commune_insee": "74281", "libell_d_acheminement": "THONON LES BAINS", "ligne_5": "VONGY", "nom_de_la_commune": "THONON LES BAINS", "coordonnees_gps": [46.3412678337, 6.50524347796]}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f4ea51abb39b0fdf9bdcad2a436e7119c15275a", "fields": {"nom_de_la_commune": "VALLORCINE", "libell_d_acheminement": "VALLORCINE", "code_postal": "74660", "coordonnees_gps": [46.0257105218, 6.90034904992], "code_commune_insee": "74290"}, "geometry": {"type": "Point", "coordinates": [6.90034904992, 46.0257105218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "973dacced56c012461cd2c14ba67b4551718849a", "fields": {"nom_de_la_commune": "VERCHAIX", "libell_d_acheminement": "VERCHAIX", "code_postal": "74440", "coordonnees_gps": [46.1230411459, 6.600455476], "code_commune_insee": "74294"}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7f87d94edee946ac5b451d704937f272dc7e45f", "fields": {"nom_de_la_commune": "LES VILLARDS SUR THONES", "libell_d_acheminement": "LES VILLARDS SUR THONES", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74302"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a002a9f2b89f3d1dfb0a90644af71ebf4b8fdac8", "fields": {"nom_de_la_commune": "YVOIRE", "libell_d_acheminement": "YVOIRE", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74315"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c64a6fdf4f3bfda4b28638eee829777c5b958ce0", "fields": {"nom_de_la_commune": "PARIS 03", "libell_d_acheminement": "PARIS", "code_postal": "75003", "coordonnees_gps": [48.8630306677, 2.35966713643], "code_commune_insee": "75103"}, "geometry": {"type": "Point", "coordinates": [2.35966713643, 48.8630306677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79c8b4d5287b749c2974a397c724e57da8ed9371", "fields": {"nom_de_la_commune": "PARIS 07", "libell_d_acheminement": "PARIS", "code_postal": "75007", "coordonnees_gps": [48.8561051636, 2.31254406306], "code_commune_insee": "75107"}, "geometry": {"type": "Point", "coordinates": [2.31254406306, 48.8561051636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ffeba14415b161c6d5a60a08b5783ecf85d9e4", "fields": {"nom_de_la_commune": "PARIS 19", "libell_d_acheminement": "PARIS", "code_postal": "75019", "coordonnees_gps": [48.8868704923, 2.38465309568], "code_commune_insee": "75119"}, "geometry": {"type": "Point", "coordinates": [2.38465309568, 48.8868704923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f859b0de339c07d9cd69af9e9112956e5e195aed", "fields": {"nom_de_la_commune": "ALVIMARE", "libell_d_acheminement": "ALVIMARE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76002"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c74b2966a4174d0792ab0bc7dda97c6cc1b4515", "fields": {"nom_de_la_commune": "ANCOURTEVILLE SUR HERICOURT", "libell_d_acheminement": "ANCOURTEVILLE SUR HERICOURT", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76009"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15a3a5703cbce2ad641891a4191226b526f92a6a", "fields": {"nom_de_la_commune": "ANGLESQUEVILLE L ESNEVAL", "libell_d_acheminement": "ANGLESQUEVILLE L ESNEVAL", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76017"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fccb9bed2c0679f3e9c08e7f64b7ce8bd019db", "fields": {"nom_de_la_commune": "VAL DE SAANE", "libell_d_acheminement": "VAL DE SAANE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76018"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed58f92a47ae17c228b763e3e7457d13f8773a01", "fields": {"nom_de_la_commune": "ANNEVILLE SUR SCIE", "libell_d_acheminement": "ANNEVILLE SUR SCIE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76019"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a492f63271ad5b61f6ca956ec503f0c6715e7029", "fields": {"code_postal": "76480", "code_commune_insee": "76020", "libell_d_acheminement": "ANNEVILLE AMBOURVILLE", "ligne_5": "AMBOURVILLE", "nom_de_la_commune": "ANNEVILLE AMBOURVILLE", "coordonnees_gps": [49.4756537781, 0.881261828892]}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2cb55b6423f52f4444ea54907a951d35aa45cc", "fields": {"nom_de_la_commune": "ANQUETIERVILLE", "libell_d_acheminement": "ANQUETIERVILLE", "code_postal": "76490", "coordonnees_gps": [49.5497184764, 0.687731909353], "code_commune_insee": "76022"}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ec50104f5349d53c1ae28d4fadd6785ff647792", "fields": {"nom_de_la_commune": "AUBERMESNIL AUX ERABLES", "libell_d_acheminement": "AUBERMESNIL AUX ERABLES", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76029"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4767070acb86f873fd26a8419f494606a86bc2a", "fields": {"nom_de_la_commune": "AUTHIEUX RATIEVILLE", "libell_d_acheminement": "AUTHIEUX RATIEVILLE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76038"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e45aa43dd1a9097901ec3681919714444e562f3", "fields": {"nom_de_la_commune": "AVESNES EN BRAY", "libell_d_acheminement": "AVESNES EN BRAY", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76048"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5057cd58c50b72aa38bd67ace3e1250c20c86347", "fields": {"nom_de_la_commune": "AVREMESNIL", "libell_d_acheminement": "AVREMESNIL", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76050"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25190717fb140ae4b5262155cdde2b728736835d", "fields": {"nom_de_la_commune": "BELLENGREVILLE", "libell_d_acheminement": "BELLENGREVILLE", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76071"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6207a8f3e7625b1a67465ad74982dff520514c0b", "fields": {"nom_de_la_commune": "BELLEVILLE EN CAUX", "libell_d_acheminement": "BELLEVILLE EN CAUX", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76072"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51922993591e3749e30dcd961932f99cc3045386", "fields": {"nom_de_la_commune": "BENESVILLE", "libell_d_acheminement": "BENESVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76077"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "552554ebabde2eeb42119ee5d4e30f1b3778fe59", "fields": {"nom_de_la_commune": "BERMONVILLE", "libell_d_acheminement": "BERMONVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76080"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65222242051382629a1e47ab30007786cf10e3f9", "fields": {"nom_de_la_commune": "BERNIERES", "libell_d_acheminement": "BERNIERES", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76082"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d75ea4f081a776df7d806569312a1e789597337", "fields": {"nom_de_la_commune": "BERTREVILLE", "libell_d_acheminement": "BERTREVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76084"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83f332c0152e9d712fced109b7063d73499734c7", "fields": {"nom_de_la_commune": "BEUZEVILLE LA GRENIER", "libell_d_acheminement": "BEUZEVILLE LA GRENIER", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76090"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05c32f46675effa009a256d9c9fa2c075e3770a9", "fields": {"nom_de_la_commune": "BLAINVILLE CREVON", "libell_d_acheminement": "BLAINVILLE CREVON", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76100"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d01c87e0a4cce61a6f59acf400e0aa01df1eb459", "fields": {"nom_de_la_commune": "BOIS GUILLAUME", "libell_d_acheminement": "BOIS GUILLAUME", "code_postal": "76230", "coordonnees_gps": [49.5059681606, 1.15634318194], "code_commune_insee": "76108"}, "geometry": {"type": "Point", "coordinates": [1.15634318194, 49.5059681606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "158768cc8128dc34fcedb85e75244a4effd53877", "fields": {"nom_de_la_commune": "LE BOIS ROBERT", "libell_d_acheminement": "LE BOIS ROBERT", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76112"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ca569017d960558f8272a4750652692421b8ade", "fields": {"nom_de_la_commune": "BORNAMBUSC", "libell_d_acheminement": "BORNAMBUSC", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76118"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3341b9e1c22e23c830653fd441d8492fcf6fb2c1", "fields": {"nom_de_la_commune": "BOSC HYONS", "libell_d_acheminement": "BOSC HYONS", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76124"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3d5ee2bef4864b7a038bd54851c2d94e5fabbda", "fields": {"nom_de_la_commune": "BOSC LE HARD", "libell_d_acheminement": "BOSC LE HARD", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76125"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a59ef65c5e10656d7f2a5f4190892e11f0624c", "fields": {"nom_de_la_commune": "BOSC ROGER SUR BUCHY", "libell_d_acheminement": "BOSC ROGER SUR BUCHY", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76127"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cded64fbbd730162efd10e4ef4bb36bec3659a8d", "fields": {"nom_de_la_commune": "BOUELLES", "libell_d_acheminement": "BOUELLES", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76130"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d05f6bdce113ff9081c4bdeba9210570dc93f0", "fields": {"nom_de_la_commune": "LA BOUILLE", "libell_d_acheminement": "LA BOUILLE", "code_postal": "76530", "coordonnees_gps": [49.3726997193, 0.948232561629], "code_commune_insee": "76131"}, "geometry": {"type": "Point", "coordinates": [0.948232561629, 49.3726997193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bad0cf505828ede28149814ff55924a838e26a6", "fields": {"nom_de_la_commune": "BOURDAINVILLE", "libell_d_acheminement": "BOURDAINVILLE", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76132"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "582e8be23c31fa2aa547117a9c88135044c3874d", "fields": {"nom_de_la_commune": "BRETTEVILLE DU GRAND CAUX", "libell_d_acheminement": "BRETTEVILLE DU GRAND CAUX", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76143"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d9f723a92781ae3c4bf8eb15bafb6d9c47549a", "fields": {"nom_de_la_commune": "BUTOT", "libell_d_acheminement": "BUTOT", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76149"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "772192f4da293ee06550c9166d7f218014b26a58", "fields": {"nom_de_la_commune": "CAILLEVILLE", "libell_d_acheminement": "CAILLEVILLE", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76151"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a390529d4bf1dad9d0d92bedf5be001e1dc4ed09", "fields": {"nom_de_la_commune": "CANOUVILLE", "libell_d_acheminement": "CANOUVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76156"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15cd128c7625ea30922868a2a3832caf8ded7f56", "fields": {"code_postal": "76380", "code_commune_insee": "76157", "libell_d_acheminement": "CANTELEU", "ligne_5": "BAPEAUME LES ROUEN", "nom_de_la_commune": "CANTELEU", "coordonnees_gps": [49.425520648, 1.00384964963]}, "geometry": {"type": "Point", "coordinates": [1.00384964963, 49.425520648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ca8e593f2293fa2abb1a1bd109c88a406699b56", "fields": {"code_postal": "76380", "code_commune_insee": "76157", "libell_d_acheminement": "CANTELEU", "ligne_5": "DIEPPEDALLE CROISSET", "nom_de_la_commune": "CANTELEU", "coordonnees_gps": [49.425520648, 1.00384964963]}, "geometry": {"type": "Point", "coordinates": [1.00384964963, 49.425520648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646dc22eebacdc91dedfa824c08a4787b696d82d", "fields": {"nom_de_la_commune": "LES CENT ACRES", "libell_d_acheminement": "LES CENT ACRES", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76168"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31053f7510709e7d776e666ca6ef569efd0748b3", "fields": {"nom_de_la_commune": "LA CERLANGUE", "libell_d_acheminement": "LA CERLANGUE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76169"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1eb975377846fdaa7b8422fd008d689caee286", "fields": {"nom_de_la_commune": "CLASVILLE", "libell_d_acheminement": "CLASVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76176"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bf35d95f0d3dda2e15944fd1c4b02f9c46b8f7b", "fields": {"nom_de_la_commune": "CLAVILLE MOTTEVILLE", "libell_d_acheminement": "CLAVILLE MOTTEVILLE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76177"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "727e0e8f2513dfaa7217038c221c579543115bfb", "fields": {"nom_de_la_commune": "CLEON", "libell_d_acheminement": "CLEON", "code_postal": "76410", "coordonnees_gps": [49.3161439073, 1.06648311512], "code_commune_insee": "76178"}, "geometry": {"type": "Point", "coordinates": [1.06648311512, 49.3161439073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b89c2a583c2414c5d5ee99c67b15c6e959522018", "fields": {"nom_de_la_commune": "CLERES", "libell_d_acheminement": "CLERES", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76179"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f720663167f6e0b699f689d2ab49d9f1fad51039", "fields": {"nom_de_la_commune": "COLLEVILLE", "libell_d_acheminement": "COLLEVILLE", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76183"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa521fe29a89df9411b1debd57e3f788832afbdd", "fields": {"nom_de_la_commune": "CONTEVILLE", "libell_d_acheminement": "CONTEVILLE", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76186"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9790b175caaaaa417d23d92fde3913afd249832b", "fields": {"nom_de_la_commune": "CROISY SUR ANDELLE", "libell_d_acheminement": "CROISY SUR ANDELLE", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76201"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dabc2bfca4ec2acd8474368462a1d197ca85d8ae", "fields": {"nom_de_la_commune": "CROPUS", "libell_d_acheminement": "CROPUS", "code_postal": "76720", "coordonnees_gps": [49.7264566235, 1.11846457377], "code_commune_insee": "76204"}, "geometry": {"type": "Point", "coordinates": [1.11846457377, 49.7264566235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acc4222c22c92d53477587a3f56003cac9a985f6", "fields": {"nom_de_la_commune": "CROSVILLE SUR SCIE", "libell_d_acheminement": "CROSVILLE SUR SCIE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76205"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a3b03ad550c9ada3c66388b4d5fdeda17b97015", "fields": {"nom_de_la_commune": "CUVERVILLE SUR YERES", "libell_d_acheminement": "CUVERVILLE SUR YERES", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76207"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da0739ccd108b25d38e8f08ef89ae32a8c7d28a7", "fields": {"nom_de_la_commune": "DENESTANVILLE", "libell_d_acheminement": "DENESTANVILLE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76214"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6f5ad127a2a5edefe9efb390b787a258bf878be", "fields": {"nom_de_la_commune": "DIEPPE", "libell_d_acheminement": "DIEPPE", "code_postal": "76200", "coordonnees_gps": [49.9220322134, 1.08701833857], "code_commune_insee": "76217"}, "geometry": {"type": "Point", "coordinates": [1.08701833857, 49.9220322134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6f66c972daa7818a083b914d8d392cdb03d38c", "fields": {"nom_de_la_commune": "DIEPPE", "libell_d_acheminement": "DIEPPE", "code_postal": "76370", "coordonnees_gps": [49.9195191713, 1.14251674665], "code_commune_insee": "76217"}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5852917f9953c6c1bb9550ed52d48da15820aff5", "fields": {"code_postal": "76370", "code_commune_insee": "76217", "libell_d_acheminement": "DIEPPE", "ligne_5": "NEUVILLE LES DIEPPE", "nom_de_la_commune": "DIEPPE", "coordonnees_gps": [49.9195191713, 1.14251674665]}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc154c3857289b104284cfe739a56228c5818ca8", "fields": {"nom_de_la_commune": "DOUDEAUVILLE", "libell_d_acheminement": "DOUDEAUVILLE", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76218"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "094b25c1d1bc010e16a340a8c70f6663c176f016", "fields": {"nom_de_la_commune": "DROSAY", "libell_d_acheminement": "DROSAY", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76221"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04dc2231c094a8ea6053a2536f94a801cd8a5728", "fields": {"nom_de_la_commune": "EPOUVILLE", "libell_d_acheminement": "EPOUVILLE", "code_postal": "76133", "coordonnees_gps": [49.5770580523, 0.228035021727], "code_commune_insee": "76238"}, "geometry": {"type": "Point", "coordinates": [0.228035021727, 49.5770580523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30966a34f6528eea7361cb906cd835bdf587e9bc", "fields": {"nom_de_la_commune": "EPREVILLE", "libell_d_acheminement": "EPREVILLE", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76240"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcc4218faff0e203f588496746ea761922d33f11", "fields": {"nom_de_la_commune": "ERNEMONT SUR BUCHY", "libell_d_acheminement": "ERNEMONT SUR BUCHY", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76243"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4293f6262e094c6da70aca1f722483af96de5d95", "fields": {"nom_de_la_commune": "ETOUTTEVILLE", "libell_d_acheminement": "ETOUTTEVILLE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76253"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f321715389b5ec7917be9e8a01790ed868471b", "fields": {"nom_de_la_commune": "FALLENCOURT", "libell_d_acheminement": "FALLENCOURT", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76257"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9deb9cc12fa451ba274f61f04f2c6a187ae648c4", "fields": {"nom_de_la_commune": "FAUVILLE EN CAUX", "libell_d_acheminement": "FAUVILLE EN CAUX", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76258"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e49ce93aa7aa37801b286565cc4e2263f1b08d6c", "fields": {"nom_de_la_commune": "FECAMP", "libell_d_acheminement": "FECAMP", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76259"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ae6032f12ef8b1794333f4bbba484ca1f287ab2", "fields": {"nom_de_la_commune": "FONTAINE EN BRAY", "libell_d_acheminement": "FONTAINE EN BRAY", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76269"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5d04f07665c072243ee6198e7e1bf46e9b2bee2", "fields": {"nom_de_la_commune": "FOUCART", "libell_d_acheminement": "FOUCART", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76279"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8639a023eea426b5f4d6e30530582c8ed4ed98f", "fields": {"nom_de_la_commune": "FRENEUSE", "libell_d_acheminement": "FRENEUSE", "code_postal": "76410", "coordonnees_gps": [49.3161439073, 1.06648311512], "code_commune_insee": "76282"}, "geometry": {"type": "Point", "coordinates": [1.06648311512, 49.3161439073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab8390621a13737423ad37681279307f9f43b2f", "fields": {"nom_de_la_commune": "FREULLEVILLE", "libell_d_acheminement": "FREULLEVILLE", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76288"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7446775da83dda2df9eb84326fde7ed3a0ce23d7", "fields": {"code_postal": "76190", "code_commune_insee": "76289", "libell_d_acheminement": "ST MARTIN DE L IF", "ligne_5": "FREVILLE", "nom_de_la_commune": "ST MARTIN DE L IF", "coordonnees_gps": [49.6137220579, 0.75005615397]}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11071c1428cdb5576acd36fd92b425b6ec5d4af0", "fields": {"code_postal": "55500", "code_commune_insee": "55472", "libell_d_acheminement": "SAULVAUX", "ligne_5": "VAUX LA PETITE", "nom_de_la_commune": "SAULVAUX", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd66061ad182df505c10de0e8132c5467760b6a0", "fields": {"nom_de_la_commune": "SENON", "libell_d_acheminement": "SENON", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55481"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bac93f2962b589b6c59923b8bc40f90654d0239", "fields": {"nom_de_la_commune": "SIVRY LA PERCHE", "libell_d_acheminement": "SIVRY LA PERCHE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55489"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea2d074dca2f294320d6096f7e0f76e716f3a019", "fields": {"nom_de_la_commune": "SOMMEDIEUE", "libell_d_acheminement": "SOMMEDIEUE", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55492"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a3747c18a9760d85fd670bc55e4b8ca586d660b", "fields": {"nom_de_la_commune": "SORBEY", "libell_d_acheminement": "SORBEY", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55495"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c140842c3b3252c80ee484da06a02ac6f535a1a", "fields": {"nom_de_la_commune": "LES SOUHESMES RAMPONT", "libell_d_acheminement": "LES SOUHESMES RAMPONT", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55497"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21dfd881b813bc777bedb40d283cba6edccf5f79", "fields": {"nom_de_la_commune": "SPINCOURT", "libell_d_acheminement": "SPINCOURT", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55500"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ea060cf433e847f2d88f2a626366bbe0d73126", "fields": {"nom_de_la_commune": "THONNE LA LONG", "libell_d_acheminement": "THONNE LA LONG", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55508"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5e5666270c980aa352078e06ce64cfb911d5217", "fields": {"nom_de_la_commune": "TILLY SUR MEUSE", "libell_d_acheminement": "TILLY SUR MEUSE", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55512"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b924555fe1b63b695fbe64501774d15ea172c0ac", "fields": {"nom_de_la_commune": "TRESAUVAUX", "libell_d_acheminement": "TRESAUVAUX", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55515"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de8423f0759a1fba74c587ee5bdc870a171312ae", "fields": {"nom_de_la_commune": "VARENNES EN ARGONNE", "libell_d_acheminement": "VARENNES EN ARGONNE", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55527"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9bd3a96be35baf24d5e25b7fc971862367233e", "fields": {"nom_de_la_commune": "VASSINCOURT", "libell_d_acheminement": "VASSINCOURT", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55531"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "892270f793bc13741b8f28d9040670cb6398ea46", "fields": {"nom_de_la_commune": "VAUCOULEURS", "libell_d_acheminement": "VAUCOULEURS", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55533"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee26fc9ea9d499daa025d069b058b484719c3cd", "fields": {"nom_de_la_commune": "VAUQUOIS", "libell_d_acheminement": "VAUQUOIS", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55536"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff18c153e05308f2bd321a81d4e52231ca53892", "fields": {"nom_de_la_commune": "VELAINES", "libell_d_acheminement": "VELAINES", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55543"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e024f69b8f6943a55556870f4e70004717a14f01", "fields": {"code_postal": "55210", "code_commune_insee": "55551", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "ligne_5": "HATTONVILLE", "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "169d5c0dc1653c8b8062e22a081d3664832b8840", "fields": {"nom_de_la_commune": "VILLECLOYE", "libell_d_acheminement": "VILLECLOYE", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55554"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2884e3e9dedadb6e58b008ffcdb30f56064c445", "fields": {"nom_de_la_commune": "VILLOTTE DEVANT LOUPPY", "libell_d_acheminement": "VILLOTTE DEVANT LOUPPY", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55569"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0deb148ba698ab66d03af82a443b3526c273c024", "fields": {"nom_de_la_commune": "VILLOTTE SUR AIRE", "libell_d_acheminement": "VILLOTTE SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55570"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602fbfb28c181684a9e5cf4c9d1696f923f9a081", "fields": {"nom_de_la_commune": "VOUTHON HAUT", "libell_d_acheminement": "VOUTHON HAUT", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55575"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c24be8633d0c6611e2e804e76654f8c45a5fc1", "fields": {"nom_de_la_commune": "AUGAN", "libell_d_acheminement": "AUGAN", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56006"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef7c08ef4eee01c5313fa6bf8c773c0b9286d2be", "fields": {"nom_de_la_commune": "BIGNAN", "libell_d_acheminement": "BIGNAN", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56017"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c288e2f436a694df95c7e767a26d74d31f350e1", "fields": {"nom_de_la_commune": "BRANDERION", "libell_d_acheminement": "BRANDERION", "code_postal": "56700", "coordonnees_gps": [47.7669954089, -3.24285688708], "code_commune_insee": "56021"}, "geometry": {"type": "Point", "coordinates": [-3.24285688708, 47.7669954089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e97b37f88fb4b3bcbf40c898e0bcfcf46a1ae0", "fields": {"nom_de_la_commune": "BRIGNAC", "libell_d_acheminement": "BRIGNAC", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56025"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afbd86136d7da9cee49cebcf611b92e30e9f2f98", "fields": {"nom_de_la_commune": "CADEN", "libell_d_acheminement": "CADEN", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56028"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba3db71b6f3c397631d4a19066b1df42e29b7b5", "fields": {"nom_de_la_commune": "CARENTOIR", "libell_d_acheminement": "CARENTOIR", "code_postal": "56910", "coordonnees_gps": [47.8192433861, -2.1438942597], "code_commune_insee": "56033"}, "geometry": {"type": "Point", "coordinates": [-2.1438942597, 47.8192433861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1360ca598c66d313067f454f385582e884bd599", "fields": {"nom_de_la_commune": "CAUDAN", "libell_d_acheminement": "CAUDAN", "code_postal": "56850", "coordonnees_gps": [47.8135717348, -3.34076808827], "code_commune_insee": "56036"}, "geometry": {"type": "Point", "coordinates": [-3.34076808827, 47.8135717348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3c194f142a59055840eb7ded6b61b2ad5e3582", "fields": {"nom_de_la_commune": "CLEGUEREC", "libell_d_acheminement": "CLEGUEREC", "code_postal": "56480", "coordonnees_gps": [48.1490399195, -3.08590175236], "code_commune_insee": "56041"}, "geometry": {"type": "Point", "coordinates": [-3.08590175236, 48.1490399195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72f284b90a37aa418356043e861bcf37fc2e197", "fields": {"nom_de_la_commune": "COLPO", "libell_d_acheminement": "COLPO", "code_postal": "56390", "coordonnees_gps": [47.7748700916, -2.83665488013], "code_commune_insee": "56042"}, "geometry": {"type": "Point", "coordinates": [-2.83665488013, 47.7748700916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "357dcfab8eddd6d1372a7191ca3761510059bf2c", "fields": {"nom_de_la_commune": "CREDIN", "libell_d_acheminement": "CREDIN", "code_postal": "56580", "coordonnees_gps": [48.0645686885, -2.7233749534], "code_commune_insee": "56047"}, "geometry": {"type": "Point", "coordinates": [-2.7233749534, 48.0645686885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e693f1c18b7912bf104190f318120939d78331a", "fields": {"nom_de_la_commune": "GOURIN", "libell_d_acheminement": "GOURIN", "code_postal": "56110", "coordonnees_gps": [48.1237137726, -3.61197294513], "code_commune_insee": "56066"}, "geometry": {"type": "Point", "coordinates": [-3.61197294513, 48.1237137726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cde6eea15f00226c7257bdedf76ba08294e3d15", "fields": {"nom_de_la_commune": "GUEGON", "libell_d_acheminement": "GUEGON", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56070"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fbe514844f7a4e84e0e56ee99bd2286050164c5", "fields": {"nom_de_la_commune": "LE GUERNO", "libell_d_acheminement": "LE GUERNO", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56077"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40fead168a122c51725d9fcc0fd4dbc2d2016d74", "fields": {"nom_de_la_commune": "GUILLIERS", "libell_d_acheminement": "GUILLIERS", "code_postal": "56490", "coordonnees_gps": [48.0867387661, -2.46008188361], "code_commune_insee": "56080"}, "geometry": {"type": "Point", "coordinates": [-2.46008188361, 48.0867387661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53a558f9cf1d59111053560ca0464f2132ff6d4c", "fields": {"nom_de_la_commune": "HELLEAN", "libell_d_acheminement": "HELLEAN", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56082"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d87d7c6a9285b44ef39aaac61959b60ae2ce6d28", "fields": {"nom_de_la_commune": "ILE D HOUAT", "libell_d_acheminement": "ILE D HOUAT", "code_postal": "56170", "coordonnees_gps": [47.4440195899, -3.0513582744], "code_commune_insee": "56086"}, "geometry": {"type": "Point", "coordinates": [-3.0513582744, 47.4440195899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5adb910cf92a26e3b4ca23c7f6e89bda0a487a23", "fields": {"nom_de_la_commune": "ILE AUX MOINES", "libell_d_acheminement": "ILE AUX MOINES", "code_postal": "56780", "coordonnees_gps": [47.5859560902, -2.84883576048], "code_commune_insee": "56087"}, "geometry": {"type": "Point", "coordinates": [-2.84883576048, 47.5859560902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf5746716e18dd56d9947712f718bc9413b48501", "fields": {"nom_de_la_commune": "INGUINIEL", "libell_d_acheminement": "INGUINIEL", "code_postal": "56240", "coordonnees_gps": [47.9397902952, -3.31179556396], "code_commune_insee": "56089"}, "geometry": {"type": "Point", "coordinates": [-3.31179556396, 47.9397902952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16b33f1a6395f659f1ba062882b83e0855bbfcab", "fields": {"nom_de_la_commune": "JOSSELIN", "libell_d_acheminement": "JOSSELIN", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56091"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0c9c060f624733dd68ee80c3f5c7bb82e4451b7", "fields": {"nom_de_la_commune": "KERFOURN", "libell_d_acheminement": "KERFOURN", "code_postal": "56920", "coordonnees_gps": [48.081238115, -2.86082261519], "code_commune_insee": "56092"}, "geometry": {"type": "Point", "coordinates": [-2.86082261519, 48.081238115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876ef79b6766e33f1a839a3fcf5346121e9a3873", "fields": {"nom_de_la_commune": "LANDAUL", "libell_d_acheminement": "LANDAUL", "code_postal": "56690", "coordonnees_gps": [47.758091509, -3.12551793319], "code_commune_insee": "56096"}, "geometry": {"type": "Point", "coordinates": [-3.12551793319, 47.758091509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b252b74dced5a84dd089b413148af3dcc572f3f", "fields": {"nom_de_la_commune": "LOCOAL MENDON", "libell_d_acheminement": "LOCOAL MENDON", "code_postal": "56550", "coordonnees_gps": [47.6912476193, -3.11969109738], "code_commune_insee": "56119"}, "geometry": {"type": "Point", "coordinates": [-3.11969109738, 47.6912476193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81f7c9262657d48878d44cf4f39a3977d073a69a", "fields": {"nom_de_la_commune": "MOHON", "libell_d_acheminement": "MOHON", "code_postal": "56490", "coordonnees_gps": [48.0867387661, -2.46008188361], "code_commune_insee": "56134"}, "geometry": {"type": "Point", "coordinates": [-2.46008188361, 48.0867387661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "972dc7287904bd0be158f503a2f3b21bde9992e4", "fields": {"nom_de_la_commune": "MOUSTOIR AC", "libell_d_acheminement": "MOUSTOIR AC", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56141"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a08dd7f4ec23c14827938f25fc39f7f58b4ce4", "fields": {"nom_de_la_commune": "MUZILLAC", "libell_d_acheminement": "MUZILLAC", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56143"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "009b11c8cbaf7d37f72171acb0221f6f4a3ef833", "fields": {"nom_de_la_commune": "NEULLIAC", "libell_d_acheminement": "NEULLIAC", "code_postal": "56300", "coordonnees_gps": [48.0841906584, -2.98247941695], "code_commune_insee": "56146"}, "geometry": {"type": "Point", "coordinates": [-2.98247941695, 48.0841906584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15cf60a152f5a4ae6906e41e66ca124f2cd7bb7", "fields": {"nom_de_la_commune": "NIVILLAC", "libell_d_acheminement": "NIVILLAC", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56147"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f19d3b6488acfef425cab64e3be52aa60fa44fb", "fields": {"nom_de_la_commune": "PENESTIN", "libell_d_acheminement": "PENESTIN", "code_postal": "56760", "coordonnees_gps": [47.4728827712, -2.46536668814], "code_commune_insee": "56155"}, "geometry": {"type": "Point", "coordinates": [-2.46536668814, 47.4728827712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc1b2baf058b0872c663d0554b7f5c1ee8a643b", "fields": {"nom_de_la_commune": "PLESCOP", "libell_d_acheminement": "PLESCOP", "code_postal": "56890", "coordonnees_gps": [47.7007937591, -2.78248862102], "code_commune_insee": "56158"}, "geometry": {"type": "Point", "coordinates": [-2.78248862102, 47.7007937591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e03788b0b8608ad42c618c85b569362f634a90c0", "fields": {"nom_de_la_commune": "PLUMELIAU", "libell_d_acheminement": "PLUMELIAU", "code_postal": "56930", "coordonnees_gps": [47.9652143178, -2.98058590653], "code_commune_insee": "56173"}, "geometry": {"type": "Point", "coordinates": [-2.98058590653, 47.9652143178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7e45c1c8cd4794b788a265f9b661ed522dcfe58", "fields": {"nom_de_la_commune": "PLUNERET", "libell_d_acheminement": "PLUNERET", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56176"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6910528d9e1e705b59cc6f4c1f18841826861e", "fields": {"nom_de_la_commune": "PLUVIGNER", "libell_d_acheminement": "PLUVIGNER", "code_postal": "56330", "coordonnees_gps": [47.797362476, -3.01124558366], "code_commune_insee": "56177"}, "geometry": {"type": "Point", "coordinates": [-3.01124558366, 47.797362476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f34ba3560b5ba46223bb36e55923921392678f", "fields": {"nom_de_la_commune": "PORT LOUIS", "libell_d_acheminement": "PORT LOUIS", "code_postal": "56290", "coordonnees_gps": [47.7098515691, -3.34971382473], "code_commune_insee": "56181"}, "geometry": {"type": "Point", "coordinates": [-3.34971382473, 47.7098515691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e327bcced9b6c25e94bbb77b754c82c298d96b", "fields": {"nom_de_la_commune": "PRIZIAC", "libell_d_acheminement": "PRIZIAC", "code_postal": "56320", "coordonnees_gps": [48.0259259973, -3.47528585034], "code_commune_insee": "56182"}, "geometry": {"type": "Point", "coordinates": [-3.47528585034, 48.0259259973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f88d25576bf88a17b099e674a1bb77d79a573fa1", "fields": {"nom_de_la_commune": "QUISTINIC", "libell_d_acheminement": "QUISTINIC", "code_postal": "56310", "coordonnees_gps": [47.9751607277, -3.12433210411], "code_commune_insee": "56188"}, "geometry": {"type": "Point", "coordinates": [-3.12433210411, 47.9751607277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfbac180fee1f66784edccd846cf22821d699ef", "fields": {"code_postal": "56800", "code_commune_insee": "56197", "libell_d_acheminement": "VAL D OUST", "ligne_5": "QUILY", "nom_de_la_commune": "VAL D OUST", "coordonnees_gps": [47.9419730138, -2.35837892185]}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5236ad9f50cd548a61486d1d690055838d098a9", "fields": {"code_postal": "56580", "code_commune_insee": "56198", "libell_d_acheminement": "ROHAN", "ligne_5": "ST GOUVRY", "nom_de_la_commune": "ROHAN", "coordonnees_gps": [48.0645686885, -2.7233749534]}, "geometry": {"type": "Point", "coordinates": [-2.7233749534, 48.0645686885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f13779ab350b520db8b3f6b0f5dfc79127030ec5", "fields": {"nom_de_la_commune": "RUFFIAC", "libell_d_acheminement": "RUFFIAC", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56200"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b843cfb7c680cc53c00504e4e24a9be816d32b5", "fields": {"nom_de_la_commune": "ST ABRAHAM", "libell_d_acheminement": "ST ABRAHAM", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56202"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2741384e33cc3a53dcc40442b9522d0f287b32", "fields": {"nom_de_la_commune": "ST CONGARD", "libell_d_acheminement": "ST CONGARD", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56211"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a68d5b6e218f495cd38020f19221ca61373ee8", "fields": {"nom_de_la_commune": "ST GRAVE", "libell_d_acheminement": "ST GRAVE", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56218"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7828ffb1109dfd8f98508c6c521aeaaab643063", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56228"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dda255664089fbd69c6b5f413b1212acd7e511d", "fields": {"nom_de_la_commune": "ST MARTIN SUR OUST", "libell_d_acheminement": "ST MARTIN SUR OUST", "code_postal": "56200", "coordonnees_gps": [47.7586563678, -2.1829238317], "code_commune_insee": "56229"}, "geometry": {"type": "Point", "coordinates": [-2.1829238317, 47.7586563678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb36c97b8a0b7741f895180a8063977a09010ca3", "fields": {"nom_de_la_commune": "ST PERREUX", "libell_d_acheminement": "ST PERREUX", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56232"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b74fcf657741141e8d627db9e922d10f6a56201", "fields": {"nom_de_la_commune": "ST PHILIBERT", "libell_d_acheminement": "ST PHILIBERT", "code_postal": "56470", "coordonnees_gps": [47.589127688, -3.01738513558], "code_commune_insee": "56233"}, "geometry": {"type": "Point", "coordinates": [-3.01738513558, 47.589127688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b5d5ff4be1bc97267f9fe50b455633cab17fd3", "fields": {"nom_de_la_commune": "ST TUGDUAL", "libell_d_acheminement": "ST TUGDUAL", "code_postal": "56540", "coordonnees_gps": [48.0574401287, -3.35915181496], "code_commune_insee": "56238"}, "geometry": {"type": "Point", "coordinates": [-3.35915181496, 48.0574401287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6cb5ec6d96279729b9e9c04ca539a15f89f5d6e", "fields": {"nom_de_la_commune": "SEGLIEN", "libell_d_acheminement": "SEGLIEN", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56242"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acf750ba3031c86c66b5e3722849ac7d47294872", "fields": {"nom_de_la_commune": "TREFFLEAN", "libell_d_acheminement": "TREFFLEAN", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56255"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cb3870f1db7af1a8b099edd2579b55db4e9c390", "fields": {"nom_de_la_commune": "TREHORENTEUC", "libell_d_acheminement": "TREHORENTEUC", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56256"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9714f7de937910c2cc2eec59976b20974579a756", "fields": {"nom_de_la_commune": "LA TRINITE PORHOET", "libell_d_acheminement": "LA TRINITE PORHOET", "code_postal": "56490", "coordonnees_gps": [48.0867387661, -2.46008188361], "code_commune_insee": "56257"}, "geometry": {"type": "Point", "coordinates": [-2.46008188361, 48.0867387661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eace34f9cd8f888a17c515f186e1e99df2966e84", "fields": {"nom_de_la_commune": "BONO", "libell_d_acheminement": "LE BONO", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56262"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52352b844d7e84fb110d683776f39e91ed54a9f", "fields": {"nom_de_la_commune": "KERNASCLEDEN", "libell_d_acheminement": "KERNASCLEDEN", "code_postal": "56540", "coordonnees_gps": [48.0574401287, -3.35915181496], "code_commune_insee": "56264"}, "geometry": {"type": "Point", "coordinates": [-3.35915181496, 48.0574401287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "252ee353be79d9d947461e0c220abd8982d36cb5", "fields": {"nom_de_la_commune": "ABONCOURT", "libell_d_acheminement": "ABONCOURT", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57001"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dab95b1499d5b104f10c897503945e7fbfdc961", "fields": {"nom_de_la_commune": "ADAINCOURT", "libell_d_acheminement": "ADAINCOURT", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57007"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699a367b9a031dc77fe0a6cb75ee639747e08c8c", "fields": {"nom_de_la_commune": "ADELANGE", "libell_d_acheminement": "ADELANGE", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57008"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88bc770497cc62783ad7b6ab528f84bff7c2181d", "fields": {"nom_de_la_commune": "ALAINCOURT LA COTE", "libell_d_acheminement": "ALAINCOURT LA COTE", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57010"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c626e26c74f91febcc54a1e2eb362d87d5ce4622", "fields": {"nom_de_la_commune": "ALZING", "libell_d_acheminement": "ALZING", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57016"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73bfb7b71d816738eec51c3a6f5d24405384e5b1", "fields": {"nom_de_la_commune": "AMNEVILLE", "libell_d_acheminement": "AMNEVILLE LES THERMES", "code_postal": "57360", "coordonnees_gps": [49.2415476274, 6.10299353804], "code_commune_insee": "57019"}, "geometry": {"type": "Point", "coordinates": [6.10299353804, 49.2415476274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cfc9a6a5dc24821e3a576eab85cd5ad72369cb5", "fields": {"nom_de_la_commune": "ATTILLONCOURT", "libell_d_acheminement": "ATTILLONCOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57036"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc804783e8c4df7a108f2556ce442407bbe988a", "fields": {"nom_de_la_commune": "AULNOIS SUR SEILLE", "libell_d_acheminement": "AULNOIS SUR SEILLE", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57040"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c11877d711ebee8a35b6aee90f7f21b3fdf44e05", "fields": {"nom_de_la_commune": "BAMBIDERSTROFF", "libell_d_acheminement": "BAMBIDERSTROFF", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57047"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82cff3e69625bef1814faea5ad3f2998a7537660", "fields": {"nom_de_la_commune": "BARONVILLE", "libell_d_acheminement": "BARONVILLE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57051"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43498223cf15f8453852fdd59a925b8dbca621f7", "fields": {"nom_de_la_commune": "BEHREN LES FORBACH", "libell_d_acheminement": "BEHREN LES FORBACH", "code_postal": "57460", "coordonnees_gps": [49.1628216573, 6.95392357742], "code_commune_insee": "57058"}, "geometry": {"type": "Point", "coordinates": [6.95392357742, 49.1628216573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d939e1a63b0b4019f1426b3bf8b589d2876f53f", "fields": {"nom_de_la_commune": "BENESTROFF", "libell_d_acheminement": "BENESTROFF", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57060"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57aba098f23a987030a953f2d76bec7fc351ae5", "fields": {"nom_de_la_commune": "BERIG VINTRANGE", "libell_d_acheminement": "BERIG VINTRANGE", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57063"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab09d2ae29b586c0f3968ec55a70ad5fbdff066", "fields": {"nom_de_la_commune": "BERTHELMING", "libell_d_acheminement": "BERTHELMING", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57066"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46250ffad99671ea8ee775ff2644e033cefe5845", "fields": {"nom_de_la_commune": "BETTANGE", "libell_d_acheminement": "BETTANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57070"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "882a8798a66a3740d75afa30c4561fc5ad9ae1f4", "fields": {"nom_de_la_commune": "BIDESTROFF", "libell_d_acheminement": "BIDESTROFF", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57081"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc711a8112944075d14653af414694a84e166ad6", "fields": {"code_postal": "57930", "code_commune_insee": "57086", "libell_d_acheminement": "BELLES FORETS", "ligne_5": "ANGVILLER LES BISPING", "nom_de_la_commune": "BELLES FORETS", "coordonnees_gps": [48.8282440547, 6.97722303236]}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ddd8fc5645a86615fb53c6cf80e88c63eeba38", "fields": {"nom_de_la_commune": "BISTEN EN LORRAINE", "libell_d_acheminement": "BISTEN EN LORRAINE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57087"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b3c304c691e676b5fb5a8924f7942f8c9a6e23c", "fields": {"nom_de_la_commune": "BLIESBRUCK", "libell_d_acheminement": "BLIESBRUCK", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57091"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "105857e30419a9d8bd66053134f6cd00d4870381", "fields": {"nom_de_la_commune": "BLIES EBERSING", "libell_d_acheminement": "BLIES EBERSING", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57092"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814280d41b977c04d15ebf109efef4f032491bb1", "fields": {"nom_de_la_commune": "BLIES GUERSVILLER", "libell_d_acheminement": "BLIES GUERSVILLER", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57093"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d30e3204dc174888f6feccc41a42c2592acee72", "fields": {"nom_de_la_commune": "BOURSCHEID", "libell_d_acheminement": "BOURSCHEID", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57100"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4bfe9b76cf776ed9b01bb18faca1516dcd07c92", "fields": {"nom_de_la_commune": "BOUSSEVILLER", "libell_d_acheminement": "BOUSSEVILLER", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57103"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25cf2e488b120582f6c4a0a1c4e31cfd51436a0f", "fields": {"nom_de_la_commune": "BOUST", "libell_d_acheminement": "BOUST", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57104"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d94886fa0dec82c3ed606933ce7b57b19c655f8e", "fields": {"nom_de_la_commune": "CATTENOM", "libell_d_acheminement": "CATTENOM", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57124"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18bf5dc33f88834a2b0ca55d9e34aabe66e06dfd", "fields": {"nom_de_la_commune": "CHATEAU BREHAIN", "libell_d_acheminement": "CHATEAU BREHAIN", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57130"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e8fe4cf0645c8ef6a85d2fc504e115ec45281fe", "fields": {"nom_de_la_commune": "CHATEAU ROUGE", "libell_d_acheminement": "CHATEAU ROUGE", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57131"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab493c27dc5fa7d5dd4a4eff38d1787321a5a81", "fields": {"nom_de_la_commune": "CHEMERY LES DEUX", "libell_d_acheminement": "CHEMERY LES DEUX", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57136"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5ce4cb779381da293829a6ff1a861ecd014f5bc", "fields": {"code_postal": "52240", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "LENIZEUL", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [48.0703177579, 5.52769658592]}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a298e97f4554dda1a68798688ee361ef3b82203", "fields": {"code_postal": "52800", "code_commune_insee": "52353", "libell_d_acheminement": "NOGENT", "ligne_5": "ESSEY LES EAUX", "nom_de_la_commune": "NOGENT", "coordonnees_gps": [48.0321546961, 5.30922833367]}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988db43b539e700d504e9609762b511ffb4bd78f", "fields": {"code_postal": "52800", "code_commune_insee": "52353", "libell_d_acheminement": "NOGENT", "ligne_5": "ODIVAL", "nom_de_la_commune": "NOGENT", "coordonnees_gps": [48.0321546961, 5.30922833367]}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e611d1729746d518499b90632e1434c638508a", "fields": {"nom_de_la_commune": "NOMECOURT", "libell_d_acheminement": "NOMECOURT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52356"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c6a627a8717777f65aefa8a251c3627a91c9694", "fields": {"nom_de_la_commune": "ORCEVAUX", "libell_d_acheminement": "ORCEVAUX", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52364"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaadf6207d16acbeea1f29302c2b097ac31bac8c", "fields": {"nom_de_la_commune": "ORMANCEY", "libell_d_acheminement": "ORMANCEY", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52366"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "249e25e3bddec9df5e30ccfa65cad32cacbc226f", "fields": {"nom_de_la_commune": "ORQUEVAUX", "libell_d_acheminement": "ORQUEVAUX", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52369"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b13686774b0f6b5c152220bc47ed588b98631a7", "fields": {"nom_de_la_commune": "OUTREMECOURT", "libell_d_acheminement": "OUTREMECOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52372"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6937893e1b85eff44e3e82072515deb4a0fbfa13", "fields": {"nom_de_la_commune": "OZIERES", "libell_d_acheminement": "OZIERES", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52373"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "384ca3225952f7b0c631fa26598bff5ce6958f7a", "fields": {"nom_de_la_commune": "PARNOY EN BASSIGNY", "libell_d_acheminement": "PARNOY EN BASSIGNY", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52377"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60db9453581f2d1a2bca98ffb5cedf4a9276d51", "fields": {"nom_de_la_commune": "PAROY SUR SAULX", "libell_d_acheminement": "PAROY SUR SAULX", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52378"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a38a22572719ddc58c400c4f98b98c06ccd6c60f", "fields": {"nom_de_la_commune": "PEIGNEY", "libell_d_acheminement": "PEIGNEY", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52380"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13011d6054580ef6e94d23f439f74eacca34b35", "fields": {"nom_de_la_commune": "PERRANCEY LES VIEUX MOULINS", "libell_d_acheminement": "PERRANCEY LES VIEUX MOULINS", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52383"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0d531ac5f69babe5a84c05c4025f5cebc5aca8", "fields": {"nom_de_la_commune": "PERTHES", "libell_d_acheminement": "PERTHES", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52386"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f9f3169bb1c8773c1c43f408aed402a6f7080db", "fields": {"nom_de_la_commune": "PIERREMONT SUR AMANCE", "libell_d_acheminement": "PIERREMONT SUR AMANCE", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52388"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844425872a6c947c810e7fb7e40bd97815d53b58", "fields": {"nom_de_la_commune": "PISSELOUP", "libell_d_acheminement": "PISSELOUP", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52390"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f276df3cac8f79d65ee714a5f333b1526b65cd3b", "fields": {"nom_de_la_commune": "POINSENOT", "libell_d_acheminement": "POINSENOT", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52393"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72d571722020bd20c709ab012bfa22f3687d32b", "fields": {"nom_de_la_commune": "PONT LA VILLE", "libell_d_acheminement": "PONT LA VILLE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52399"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c37d13248524c5f358bc5d1fc9a34a8182d4d3a", "fields": {"code_postal": "52190", "code_commune_insee": "52405", "libell_d_acheminement": "LE MONTSAUGEONNAIS", "ligne_5": "PRAUTHOY", "nom_de_la_commune": "LE MONTSAUGEONNAIS", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3b0f228d58e44028cf91347a6e5981fd8687e27", "fields": {"nom_de_la_commune": "RICHEBOURG", "libell_d_acheminement": "RICHEBOURG", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52422"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7d50db3b5c12b19b509130462d7fd42c0a06c37", "fields": {"code_postal": "52210", "code_commune_insee": "52431", "libell_d_acheminement": "ROCHETAILLEE", "ligne_5": "CHAMEROY", "nom_de_la_commune": "ROCHETAILLEE", "coordonnees_gps": [47.9325249173, 5.04140809229]}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61b886cc827d96869569b346635d5489e8fd07fa", "fields": {"code_postal": "52260", "code_commune_insee": "52432", "libell_d_acheminement": "ROLAMPONT", "ligne_5": "CHARMOILLES", "nom_de_la_commune": "ROLAMPONT", "coordonnees_gps": [47.9429449859, 5.2580157459]}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b3682e90c349ca024a23985b36cf3433f2e46e", "fields": {"nom_de_la_commune": "ROUGEUX", "libell_d_acheminement": "ROUGEUX", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52438"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaef440028ca6cbaafae4ddd14fc8c265c328a9e", "fields": {"nom_de_la_commune": "RUPT", "libell_d_acheminement": "RUPT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52442"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b61c4a56482c404ed0aada76db5b01428b0b67", "fields": {"nom_de_la_commune": "SAINTS GEOSMES", "libell_d_acheminement": "SAINTS GEOSMES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52449"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b93ec6b4686342ab865f39b1345f481a1c5593", "fields": {"nom_de_la_commune": "ST LOUP SUR AUJON", "libell_d_acheminement": "ST LOUP SUR AUJON", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52450"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a4843fac88c0776f472911edf07c49e8258681", "fields": {"nom_de_la_commune": "ST MAURICE", "libell_d_acheminement": "ST MAURICE", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52453"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d35813598040b05fb2b1b68724448b81faf95eb3", "fields": {"nom_de_la_commune": "SEMOUTIERS MONTSAON", "libell_d_acheminement": "SEMOUTIERS MONTSAON", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52469"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88762195534b25d9cd7dfa818a846252e2425eec", "fields": {"nom_de_la_commune": "SUZANNECOURT", "libell_d_acheminement": "SUZANNECOURT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52484"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c2e47264761613f83c28d3bf1e6efa96d4c1bd7", "fields": {"nom_de_la_commune": "TERNAT", "libell_d_acheminement": "TERNAT", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52486"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6060cd9466963ad7d6574d447c6660214710529", "fields": {"nom_de_la_commune": "TORCENAY", "libell_d_acheminement": "TORCENAY", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52492"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca2ccde2d1357f9523a9b26f83b0b8766b2b88b", "fields": {"nom_de_la_commune": "TORNAY", "libell_d_acheminement": "TORNAY", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52493"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b2e70b5b40f175f59d16d725d434fd57704a9b", "fields": {"nom_de_la_commune": "TREMILLY", "libell_d_acheminement": "TREMILLY", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52495"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22b9c2f2112b7a01268c14e4df2d4ee178994e81", "fields": {"nom_de_la_commune": "TROISFONTAINES LA VILLE", "libell_d_acheminement": "TROISFONTAINES LA VILLE", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52497"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48167ab068fa143a2cd10c8ec4a1efd3fdc4ccf9", "fields": {"code_postal": "52130", "code_commune_insee": "52497", "libell_d_acheminement": "TROISFONTAINES LA VILLE", "ligne_5": "AVRAINVILLE", "nom_de_la_commune": "TROISFONTAINES LA VILLE", "coordonnees_gps": [48.5070439267, 4.95367156302]}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602de1383b454aeffe57f2ae6a25bd622ce46870", "fields": {"nom_de_la_commune": "VAILLANT", "libell_d_acheminement": "VAILLANT", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52499"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6fa5fe645d5cd59fd1cb241214b007377466b12", "fields": {"nom_de_la_commune": "VALLEROY", "libell_d_acheminement": "VALLEROY", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52503"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e242c3f01bcf0dca7254dc62f77a17c150f584c2", "fields": {"nom_de_la_commune": "VAUXBONS", "libell_d_acheminement": "VAUXBONS", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52507"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6e7f10aea29f7f0cc60b4868ca48656eb23ccb", "fields": {"nom_de_la_commune": "VECQUEVILLE", "libell_d_acheminement": "VECQUEVILLE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52512"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e2f826d8f41bed328715a31f590b76301f4b44", "fields": {"nom_de_la_commune": "VICQ", "libell_d_acheminement": "VICQ", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52520"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0e93dceece5dcf946ec3f599caf146734b7a17", "fields": {"nom_de_la_commune": "VIGNES LA COTE", "libell_d_acheminement": "VIGNES LA COTE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52523"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "468d5bb7297ff7bcd54c9c10964e7e88293b3838", "fields": {"code_postal": "52160", "code_commune_insee": "52526", "libell_d_acheminement": "VILLARS SANTENOGE", "ligne_5": "VILLARS MONTROYER", "nom_de_la_commune": "VILLARS SANTENOGE", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1c03c2e768562681695d2d72a8053bccf75c052", "fields": {"code_postal": "52190", "code_commune_insee": "52529", "libell_d_acheminement": "VILLEGUSIEN LE LAC", "ligne_5": "PIEPAPE", "nom_de_la_commune": "VILLEGUSIEN LE LAC", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "244b5f793fdb1daa165d8ff4d34034f3568af01e", "fields": {"nom_de_la_commune": "VILLIERS SUR SUIZE", "libell_d_acheminement": "VILLIERS SUR SUIZE", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52538"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "074acbc933c9394da1bf00a0aab970f9e413b551", "fields": {"nom_de_la_commune": "VIOLOT", "libell_d_acheminement": "VIOLOT", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52539"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6001e3008ee36404039ca6e29a16bf36de004dd1", "fields": {"nom_de_la_commune": "VITRY EN MONTAGNE", "libell_d_acheminement": "VITRY EN MONTAGNE", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52540"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec645ea893420a574bca1892d85b885a5113b864", "fields": {"nom_de_la_commune": "VOUECOURT", "libell_d_acheminement": "VOUECOURT", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52547"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3a9d3ca5823552f1b306ccd60c5d79447899db", "fields": {"nom_de_la_commune": "AHUILLE", "libell_d_acheminement": "AHUILLE", "code_postal": "53940", "coordonnees_gps": [48.0612320187, -0.86717945825], "code_commune_insee": "53001"}, "geometry": {"type": "Point", "coordinates": [-0.86717945825, 48.0612320187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c518f243dde992524680974e4bd80be053a326e3", "fields": {"nom_de_la_commune": "ALEXAIN", "libell_d_acheminement": "ALEXAIN", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53002"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d7a6ffd9f6ff7cff5a1bbf60b76d6cb9d065523", "fields": {"code_postal": "53300", "code_commune_insee": "53003", "libell_d_acheminement": "AMBRIERES LES VALLEES", "ligne_5": "CIGNE", "nom_de_la_commune": "AMBRIERES LES VALLEES", "coordonnees_gps": [48.4002685671, -0.643929114886]}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b329fc319a86b5575596e2d40266b5d2c7ea68", "fields": {"nom_de_la_commune": "BOUESSAY", "libell_d_acheminement": "BOUESSAY", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53037"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61ed908ce235797a269ed445cf3207441a5507ad", "fields": {"nom_de_la_commune": "BOURGON", "libell_d_acheminement": "BOURGON", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53040"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ceac61317423c423a71c1e1808a52c2c76a1de", "fields": {"nom_de_la_commune": "BRAINS SUR LES MARCHES", "libell_d_acheminement": "BRAINS SUR LES MARCHES", "code_postal": "53350", "coordonnees_gps": [47.8986067834, -1.10393836397], "code_commune_insee": "53041"}, "geometry": {"type": "Point", "coordinates": [-1.10393836397, 47.8986067834]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95196c60c57e4e3841a40bfa807675136e8eb979", "fields": {"nom_de_la_commune": "CARELLES", "libell_d_acheminement": "CARELLES", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53047"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e45b9b1d01b5c08de343d5f035036188047df80", "fields": {"code_postal": "53200", "code_commune_insee": "53062", "libell_d_acheminement": "CHATEAU GONTIER", "ligne_5": "BAZOUGES", "nom_de_la_commune": "CHATEAU GONTIER", "coordonnees_gps": [47.8199489086, -0.703656647783]}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7ef527fbb2a224029fd4d3b747442c3e7d176f3", "fields": {"nom_de_la_commune": "CHEMAZE", "libell_d_acheminement": "CHEMAZE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53066"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3706c3e39bffd2286faf0087b5eb84bda878efe", "fields": {"nom_de_la_commune": "CHEVAIGNE DU MAINE", "libell_d_acheminement": "CHEVAIGNE DU MAINE", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53069"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad66b6277bd00fdab41eb62ee1bdddcd5508c0a", "fields": {"nom_de_la_commune": "COLOMBIERS DU PLESSIS", "libell_d_acheminement": "COLOMBIERS DU PLESSIS", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53071"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9e55e2ec17fac6365df1d42b53a685835e5e80", "fields": {"nom_de_la_commune": "COMMER", "libell_d_acheminement": "COMMER", "code_postal": "53470", "coordonnees_gps": [48.1996610785, -0.64326294123], "code_commune_insee": "53072"}, "geometry": {"type": "Point", "coordinates": [-0.64326294123, 48.1996610785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daa8483c3f5c258ff274028582981143ef09f3a9", "fields": {"nom_de_la_commune": "CONTEST", "libell_d_acheminement": "CONTEST", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53074"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30350164eff4ae5f5667fc514b6214ef4edfe5e", "fields": {"nom_de_la_commune": "LA DOREE", "libell_d_acheminement": "LA DOREE", "code_postal": "53190", "coordonnees_gps": [48.4738805383, -0.958356062845], "code_commune_insee": "53093"}, "geometry": {"type": "Point", "coordinates": [-0.958356062845, 48.4738805383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b30af3b358b47a553c1beec969e9b63aae7225", "fields": {"nom_de_la_commune": "EPINEUX LE SEGUIN", "libell_d_acheminement": "EPINEUX LE SEGUIN", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53095"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecae620bbed1c7078cb56029e29996ddbbe0df3c", "fields": {"nom_de_la_commune": "FOUGEROLLES DU PLESSIS", "libell_d_acheminement": "FOUGEROLLES DU PLESSIS", "code_postal": "53190", "coordonnees_gps": [48.4738805383, -0.958356062845], "code_commune_insee": "53100"}, "geometry": {"type": "Point", "coordinates": [-0.958356062845, 48.4738805383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4c4370da57db02691d7c1146ac0cdaee44b122b", "fields": {"nom_de_la_commune": "FROMENTIERES", "libell_d_acheminement": "FROMENTIERES", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53101"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4876cbc8a496f3bf230f5bec52b28e7b02a6b351", "fields": {"nom_de_la_commune": "LE GENEST ST ISLE", "libell_d_acheminement": "LE GENEST ST ISLE", "code_postal": "53940", "coordonnees_gps": [48.0612320187, -0.86717945825], "code_commune_insee": "53103"}, "geometry": {"type": "Point", "coordinates": [-0.86717945825, 48.0612320187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "252929950d1a07ade8efc0bf3656e1d67b9b9dde", "fields": {"nom_de_la_commune": "GESNES", "libell_d_acheminement": "GESNES", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53105"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57980a48afa8db17cd487552c0eecfb5a753b8a8", "fields": {"nom_de_la_commune": "GESVRES", "libell_d_acheminement": "GESVRES", "code_postal": "53370", "coordonnees_gps": [48.4038350742, -0.121705571791], "code_commune_insee": "53106"}, "geometry": {"type": "Point", "coordinates": [-0.121705571791, 48.4038350742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cab9747b5d61cf9f0497fd34f8dda1161f9a9bc", "fields": {"nom_de_la_commune": "LE HAM", "libell_d_acheminement": "LE HAM", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53112"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4bdeca8248ad3172fc6614287e216834280efc4", "fields": {"nom_de_la_commune": "L HUISSERIE", "libell_d_acheminement": "L HUISSERIE", "code_postal": "53970", "coordonnees_gps": [48.0004120893, -0.787519584296], "code_commune_insee": "53119"}, "geometry": {"type": "Point", "coordinates": [-0.787519584296, 48.0004120893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b2598d4daf3af09738b7c66bc61218c0ccc09db", "fields": {"code_postal": "53250", "code_commune_insee": "53121", "libell_d_acheminement": "JAVRON LES CHAPELLES", "ligne_5": "LES CHAPELLES", "nom_de_la_commune": "JAVRON LES CHAPELLES", "coordonnees_gps": [48.4288854285, -0.342425192265]}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee18e660afa253724091694e029fb0f9367cc484", "fields": {"nom_de_la_commune": "LARCHAMP", "libell_d_acheminement": "LARCHAMP", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53126"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31f471e1d0c84581fe4942334426a3f27c364ee1", "fields": {"code_postal": "53110", "code_commune_insee": "53127", "libell_d_acheminement": "LASSAY LES CHATEAUX", "ligne_5": "LA BAROCHE GONDOUIN", "nom_de_la_commune": "LASSAY LES CHATEAUX", "coordonnees_gps": [48.4617357482, -0.486776188303]}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621a7df2faf15b31ba0cbe2f000f145e21fb613b", "fields": {"nom_de_la_commune": "MEZANGERS", "libell_d_acheminement": "MEZANGERS", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53153"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c28057d9f1edd383a583601a9fd67c1196d006b", "fields": {"nom_de_la_commune": "MONTAUDIN", "libell_d_acheminement": "MONTAUDIN", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53154"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c358b67ae3068d5c023b1a82c5f1850a82946c", "fields": {"nom_de_la_commune": "PARIGNE SUR BRAYE", "libell_d_acheminement": "PARIGNE SUR BRAYE", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53174"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "706a496108a315c25bbe1a25ebd12f45655d6967", "fields": {"nom_de_la_commune": "PLACE", "libell_d_acheminement": "PLACE", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53179"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8f172c199cd0aa4e9d2b4e9062b44f116241f1d", "fields": {"nom_de_la_commune": "POMMERIEUX", "libell_d_acheminement": "POMMERIEUX", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53180"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8a5666ec74a97d4db918bd8546fb8b92dc34c2", "fields": {"nom_de_la_commune": "PREAUX", "libell_d_acheminement": "PREAUX", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53184"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ac67195bb7b728f209051839c68c9d43ba353d3", "fields": {"code_postal": "53360", "code_commune_insee": "53186", "libell_d_acheminement": "QUELAINES ST GAULT", "ligne_5": "ST GAULT", "nom_de_la_commune": "QUELAINES ST GAULT", "coordonnees_gps": [47.9163829894, -0.78422271898]}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71870b894a60db19d9c208c9a124ac05f6f9cd47", "fields": {"nom_de_la_commune": "RAVIGNY", "libell_d_acheminement": "RAVIGNY", "code_postal": "53370", "coordonnees_gps": [48.4038350742, -0.121705571791], "code_commune_insee": "53187"}, "geometry": {"type": "Point", "coordinates": [-0.121705571791, 48.4038350742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12cb54ea4c098376ec2fb329f8a79ab4429fc6a7", "fields": {"nom_de_la_commune": "ST AIGNAN SUR ROE", "libell_d_acheminement": "ST AIGNAN SUR ROE", "code_postal": "53390", "coordonnees_gps": [47.8296503455, -1.17079905697], "code_commune_insee": "53197"}, "geometry": {"type": "Point", "coordinates": [-1.17079905697, 47.8296503455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c0341bfe529939210419b829f7c2189686bce9d", "fields": {"nom_de_la_commune": "ST BERTHEVIN", "libell_d_acheminement": "ST BERTHEVIN", "code_postal": "53940", "coordonnees_gps": [48.0612320187, -0.86717945825], "code_commune_insee": "53201"}, "geometry": {"type": "Point", "coordinates": [-0.86717945825, 48.0612320187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63810d9476d4d62e8f711e90ab3d1a9b41f96ae", "fields": {"nom_de_la_commune": "ST ELLIER DU MAINE", "libell_d_acheminement": "ST ELLIER DU MAINE", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53213"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1625f08cbdf423214ccf1f0a1d9dfb969e65cb56", "fields": {"nom_de_la_commune": "ST FORT", "libell_d_acheminement": "ST FORT", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53215"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7abbed2bb0f47bb1bcc01e53473a7e468da0d1e", "fields": {"nom_de_la_commune": "ST GEORGES SUR ERVE", "libell_d_acheminement": "ST GEORGES SUR ERVE", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53221"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d782a6f37cce8cf741d0462e8b5c31ff9e59d72", "fields": {"nom_de_la_commune": "ST GERMAIN DE COULAMER", "libell_d_acheminement": "ST GERMAIN DE COULAMER", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53223"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4765d2571fcbb4284e916e9141ffe9fe8114c60e", "fields": {"nom_de_la_commune": "ST LOUP DU DORAT", "libell_d_acheminement": "ST LOUP DU DORAT", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53233"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c6ae65d30e1bee55ea304990e459ac0bf813679", "fields": {"nom_de_la_commune": "ST MICHEL DE LA ROE", "libell_d_acheminement": "ST MICHEL DE LA ROE", "code_postal": "53350", "coordonnees_gps": [47.8986067834, -1.10393836397], "code_commune_insee": "53242"}, "geometry": {"type": "Point", "coordinates": [-1.10393836397, 47.8986067834]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0886bb5c84dd1b3facfd5639602697fa5d9d97fa", "fields": {"nom_de_la_commune": "ST OUEN DES TOITS", "libell_d_acheminement": "ST OUEN DES TOITS", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53243"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca3fe46538304325e338cd405164249c3eda4f8", "fields": {"nom_de_la_commune": "ST OUEN DES VALLONS", "libell_d_acheminement": "ST OUEN DES VALLONS", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53244"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5f1789f9aa0ce54a2a5374a82121d2903cc942", "fields": {"nom_de_la_commune": "ST PIERRE DES LANDES", "libell_d_acheminement": "ST PIERRE DES LANDES", "code_postal": "53500", "coordonnees_gps": [48.3059363855, -0.916419053315], "code_commune_insee": "53245"}, "geometry": {"type": "Point", "coordinates": [-0.916419053315, 48.3059363855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e462ea32cae24b900c9d6271977c5b50b1a0a3b3", "fields": {"nom_de_la_commune": "ST PIERRE LA COUR", "libell_d_acheminement": "ST PIERRE LA COUR", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53247"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25b093b9207154e046a6706caa7901a0118dc1e", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "53360", "coordonnees_gps": [47.9163829894, -0.78422271898], "code_commune_insee": "53254"}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "487390008b19f895b588ce2af5e8f22e5bc199b3", "fields": {"nom_de_la_commune": "ST THOMAS DE COURCERIERS", "libell_d_acheminement": "ST THOMAS DE COURCERIERS", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53256"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c33ac4c5fa47fb659ffd9406bea9ac2e639255e6", "fields": {"nom_de_la_commune": "SIMPLE", "libell_d_acheminement": "SIMPLE", "code_postal": "53360", "coordonnees_gps": [47.9163829894, -0.78422271898], "code_commune_insee": "53260"}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b517c24e802c42e372a63334d4eb2528e1fc673", "fields": {"nom_de_la_commune": "ALLAMPS", "libell_d_acheminement": "ALLAMPS", "code_postal": "54112", "coordonnees_gps": [48.5703688862, 5.77161023397], "code_commune_insee": "54010"}, "geometry": {"type": "Point", "coordinates": [5.77161023397, 48.5703688862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992f956b3231cd1fd5a40874e677d7681ad3824c", "fields": {"nom_de_la_commune": "ART SUR MEURTHE", "libell_d_acheminement": "ART SUR MEURTHE", "code_postal": "54510", "coordonnees_gps": [48.6692716698, 6.24903144638], "code_commune_insee": "54025"}, "geometry": {"type": "Point", "coordinates": [6.24903144638, 48.6692716698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "331a614500b3ad073374391bbf37afee0b376a06", "fields": {"nom_de_la_commune": "AUDUN LE ROMAN", "libell_d_acheminement": "AUDUN LE ROMAN", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54029"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "accf1ffba2f3154c0beab3171d17f3909e47d1eb", "fields": {"nom_de_la_commune": "BAINVILLE AUX MIROIRS", "libell_d_acheminement": "BAINVILLE AUX MIROIRS", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54042"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68e555ee16d1efa4d98d8d720538f5fdb630bf97", "fields": {"nom_de_la_commune": "BARBONVILLE", "libell_d_acheminement": "BARBONVILLE", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54045"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10ed27a63c052f52d3e55c1ec86fbe382a16579", "fields": {"nom_de_la_commune": "LARROQUE ST SERNIN", "libell_d_acheminement": "LARROQUE ST SERNIN", "code_postal": "32410", "coordonnees_gps": [43.8145538611, 0.434864041407], "code_commune_insee": "32196"}, "geometry": {"type": "Point", "coordinates": [0.434864041407, 43.8145538611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9219250ee0a464abe486c90dabc16ed660bca38f", "fields": {"nom_de_la_commune": "LARTIGUE", "libell_d_acheminement": "LARTIGUE", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32198"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c7662dfa163101b02eba7d9c28a042995a6cfd", "fields": {"nom_de_la_commune": "LELIN LAPUJOLLE", "libell_d_acheminement": "LELIN LAPUJOLLE", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32209"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2a0f74bc373664a99bbd282c28916b4b8222d8", "fields": {"nom_de_la_commune": "LUSSAN", "libell_d_acheminement": "LUSSAN", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32221"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aa5d742d0428600daabbbddadc74c877d1f25af", "fields": {"nom_de_la_commune": "MAGNAN", "libell_d_acheminement": "MAGNAN", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32222"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f14801f43dff977c104b5279e19de9e9b1007e2", "fields": {"nom_de_la_commune": "MAIGNAUT TAUZIA", "libell_d_acheminement": "MAIGNAUT TAUZIA", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32224"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35433fb84d55280f5d571b8d26b56e9ad94f6056", "fields": {"nom_de_la_commune": "MALABAT", "libell_d_acheminement": "MALABAT", "code_postal": "32730", "coordonnees_gps": [43.4054676887, 0.198171265768], "code_commune_insee": "32225"}, "geometry": {"type": "Point", "coordinates": [0.198171265768, 43.4054676887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3747fcb14215123716cea71551ce276da02bf28", "fields": {"nom_de_la_commune": "MARAMBAT", "libell_d_acheminement": "MARAMBAT", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32231"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5fc35c3c3e1cc8c63ed5c2f72f5ba2693adec4b", "fields": {"nom_de_la_commune": "MARSAN", "libell_d_acheminement": "MARSAN", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32237"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d193896698518d8152de5df41cb2aa31bc0fe8a", "fields": {"nom_de_la_commune": "MONBARDON", "libell_d_acheminement": "MONBARDON", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32260"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87ac3c6a000e12405c2dafc1bcfd9a777f37a26", "fields": {"nom_de_la_commune": "MONBLANC", "libell_d_acheminement": "MONBLANC", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32261"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df4f7d496585b9398256bf96e3a1e7fba35c8689", "fields": {"nom_de_la_commune": "MONCORNEIL GRAZAN", "libell_d_acheminement": "MONCORNEIL GRAZAN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32266"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152cc025919ccfe1d08c423256ef9eca4c4d8bca", "fields": {"nom_de_la_commune": "MONLEZUN D ARMAGNAC", "libell_d_acheminement": "MONLEZUN D ARMAGNAC", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32274"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae130164bd26f781a69f8092b15aa2a6a2fd5d23", "fields": {"nom_de_la_commune": "MONTADET", "libell_d_acheminement": "MONTADET", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32276"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fc62d716a632f4320b76078e701152bf14be93a", "fields": {"nom_de_la_commune": "MONTAUT LES CRENEAUX", "libell_d_acheminement": "MONTAUT LES CRENEAUX", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32279"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef7ce43fe9d2eab82318741262056ae51a1c5da1", "fields": {"nom_de_la_commune": "MONT D ASTARAC", "libell_d_acheminement": "MONT D ASTARAC", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32280"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4677900b7b04604f907ca3af7ab599495a4d2683", "fields": {"nom_de_la_commune": "MONTIES", "libell_d_acheminement": "MONTIES", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32287"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14309541022bda428afac5a8f4f1ace4520493a", "fields": {"nom_de_la_commune": "MORMES", "libell_d_acheminement": "MORMES", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32291"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83613d14f67735e7698903c66c69f9d44cbdaa32", "fields": {"nom_de_la_commune": "MOUCHAN", "libell_d_acheminement": "MOUCHAN", "code_postal": "32330", "coordonnees_gps": [43.8809220251, 0.246811473327], "code_commune_insee": "32292"}, "geometry": {"type": "Point", "coordinates": [0.246811473327, 43.8809220251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c8c7b9231541467df7bc8ea2dfb41acd7cba174", "fields": {"nom_de_la_commune": "MOUREDE", "libell_d_acheminement": "MOUREDE", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32294"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea3ac912121bb8cd9c2aa0db227a38211aa84bc3", "fields": {"nom_de_la_commune": "NOUGAROULET", "libell_d_acheminement": "NOUGAROULET", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32298"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab2a4e7dcebd1a342a8e33751655eb504457b98", "fields": {"nom_de_la_commune": "ORNEZAN", "libell_d_acheminement": "ORNEZAN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32302"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "921ef4e9a6cf50753413f802145d1ebca459234d", "fields": {"nom_de_la_commune": "PANASSAC", "libell_d_acheminement": "PANASSAC", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32304"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e6aff7c10696fa8233cccc37a4da4a3f18d8b5", "fields": {"nom_de_la_commune": "PEBEES", "libell_d_acheminement": "PEBEES", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32308"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c9d56be5db8be82a8c3b34f332fa222edb8247", "fields": {"nom_de_la_commune": "PERGAIN TAILLAC", "libell_d_acheminement": "PERGAIN TAILLAC", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32311"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c1c1fe4bd0c7ae756019ac97c50c256b56cb93", "fields": {"nom_de_la_commune": "PEYRUSSE GRANDE", "libell_d_acheminement": "PEYRUSSE GRANDE", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32315"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a8133e3c2e4390e8a2ffa20ce9a600b2c70a07a", "fields": {"nom_de_la_commune": "PEYRUSSE MASSAS", "libell_d_acheminement": "PEYRUSSE MASSAS", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32316"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43d8305403d1ced5a8cf97214e79590f274b8b46", "fields": {"nom_de_la_commune": "PLAISANCE", "libell_d_acheminement": "PLAISANCE", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32319"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9f1c38a7b8cafaaf640663f4d2a69188c67bcd6", "fields": {"nom_de_la_commune": "PONSAMPERE", "libell_d_acheminement": "PONSAMPERE", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32323"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0be1cc384fef16b574e411716cf4aaa95d26ff6", "fields": {"nom_de_la_commune": "PONSAN SOUBIRAN", "libell_d_acheminement": "PONSAN SOUBIRAN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32324"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b395486e57574296316b47380269cf42500bf67", "fields": {"nom_de_la_commune": "POUYLEBON", "libell_d_acheminement": "POUYLEBON", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32326"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3350b4c4cfb7148426b2ce2346d67e6ef326efaf", "fields": {"nom_de_la_commune": "POUY LOUBRIN", "libell_d_acheminement": "POUY LOUBRIN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32327"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "943dec52103eb7041795203b5373fadebc30df36", "fields": {"nom_de_la_commune": "PREIGNAN", "libell_d_acheminement": "PREIGNAN", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32331"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eba4a3f7b80db452049b268394d1f572e210021", "fields": {"nom_de_la_commune": "PROJAN", "libell_d_acheminement": "PROJAN", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32333"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b49bbb2a2e4c40e56747ac4da65e261fecf6442", "fields": {"nom_de_la_commune": "RAZENGUES", "libell_d_acheminement": "RAZENGUES", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32339"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f596f382ada1aadf368aeb0c6d8a41868cd5e81", "fields": {"nom_de_la_commune": "REJAUMONT", "libell_d_acheminement": "REJAUMONT", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32341"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4d9612f38813988c339c4cf7e588ddce804382d", "fields": {"nom_de_la_commune": "RICOURT", "libell_d_acheminement": "RICOURT", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32342"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394d238511f37bc027fb0e85d298c5b01e55576d", "fields": {"nom_de_la_commune": "RIGUEPEU", "libell_d_acheminement": "RIGUEPEU", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32343"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8b7d0bea726e755691f39817f170ed54afb989", "fields": {"nom_de_la_commune": "ROQUEPINE", "libell_d_acheminement": "ROQUEPINE", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32350"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29cff7b1a1fd19ccb14d0e9ae527fda9c7582f11", "fields": {"nom_de_la_commune": "ROZES", "libell_d_acheminement": "ROZES", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32352"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d2e104ae6eac671494bfe66fbb55d0c664228dd", "fields": {"nom_de_la_commune": "STE ANNE", "libell_d_acheminement": "STE ANNE", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32357"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ef7cb884052099f61016874cf2e37bcdd4c8b9", "fields": {"nom_de_la_commune": "ST ARAILLES", "libell_d_acheminement": "ST ARAILLES", "code_postal": "32350", "coordonnees_gps": [43.6571309769, 0.430675404963], "code_commune_insee": "32360"}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06be3218489f4c625208289763a6b04a23d2ef1c", "fields": {"nom_de_la_commune": "ST ARROMAN", "libell_d_acheminement": "ST ARROMAN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32361"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f96addcf927b14127a6e2b15bac31b407363e77", "fields": {"nom_de_la_commune": "ST CHRISTAUD", "libell_d_acheminement": "ST CHRISTAUD", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32367"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5009cca7ba76a816abaccccfe1cd025ba28b4cf9", "fields": {"nom_de_la_commune": "ST ELIX THEUX", "libell_d_acheminement": "ST ELIX THEUX", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32375"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "913678296545ad7c6bafb31af43933753ddf022a", "fields": {"nom_de_la_commune": "ST GRIEDE", "libell_d_acheminement": "ST GRIEDE", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32380"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ec628b8b0f793b0f2a5a1f0cf5c81c24b8b784a", "fields": {"nom_de_la_commune": "STE MERE", "libell_d_acheminement": "STE MERE", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32395"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe19cbedafdccc046ad4c0447c8fd29deb805ab", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32397"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fcad3e752788f746b548b777eeea46da36b7f1a", "fields": {"nom_de_la_commune": "ST PAUL DE BAISE", "libell_d_acheminement": "ST PAUL DE BAISE", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32402"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecfac3c03520b74fd3dedbca3f5daf2c3ea8e9be", "fields": {"nom_de_la_commune": "SARRANT", "libell_d_acheminement": "SARRANT", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32416"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10fc4a8b2dfbcc3f4f3c0299f743cdd5558d7f11", "fields": {"nom_de_la_commune": "SCIEURAC ET FLOURES", "libell_d_acheminement": "SCIEURAC ET FLOURES", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32422"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea96f34d2c6b3319c91208053832c322ed0a14f4", "fields": {"nom_de_la_commune": "SEMBOUES", "libell_d_acheminement": "SEMBOUES", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32427"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a3f91bf92e99c432027935254700c9e8353bfb", "fields": {"nom_de_la_commune": "SOLOMIAC", "libell_d_acheminement": "SOLOMIAC", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32436"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d3bb5d2ca1b6f34eea7c6d6a07b08ba4ea6502e", "fields": {"nom_de_la_commune": "THOUX", "libell_d_acheminement": "THOUX", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32444"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc92e2061e07f36acbe7f28a71fdc95b5864fa0", "fields": {"nom_de_la_commune": "TOURRENQUETS", "libell_d_acheminement": "TOURRENQUETS", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32453"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01f3f53540a8b813815f3d8dd3c9b218f1e6685d", "fields": {"nom_de_la_commune": "TRAVERSERES", "libell_d_acheminement": "TRAVERSERES", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32454"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55119826f256a9252f98e24ed09d0a42f29fa13d", "fields": {"nom_de_la_commune": "URDENS", "libell_d_acheminement": "URDENS", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32457"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85172d3ddcfb491735b3f5655d6c923cebe6c196", "fields": {"nom_de_la_commune": "VALENCE SUR BAISE", "libell_d_acheminement": "VALENCE SUR BAISE", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32459"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e561b5519a7be1cbae529bbf3d39b4236923371", "fields": {"nom_de_la_commune": "VERGOIGNAN", "libell_d_acheminement": "VERGOIGNAN", "code_postal": "32720", "coordonnees_gps": [43.7019808503, -0.197015823545], "code_commune_insee": "32460"}, "geometry": {"type": "Point", "coordinates": [-0.197015823545, 43.7019808503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c243bdf8c43eb5b8d04fcf5bbcdb3ec8e99e080", "fields": {"nom_de_la_commune": "VERLUS", "libell_d_acheminement": "VERLUS", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32461"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39ab0a6d2de77a476c6b8f393557b1cc22a170c", "fields": {"code_postal": "32190", "code_commune_insee": "32462", "libell_d_acheminement": "VIC FEZENSAC", "ligne_5": "LAGRAULAS", "nom_de_la_commune": "VIC FEZENSAC", "coordonnees_gps": [43.7476319367, 0.263185282539]}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4132cc71f072d94d996be9ff9c506ee3394e7f4a", "fields": {"nom_de_la_commune": "AILLAS", "libell_d_acheminement": "AILLAS", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33002"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4ecb04e9af75089a2e85c370c3f76386d57a4d", "fields": {"nom_de_la_commune": "ANDERNOS LES BAINS", "libell_d_acheminement": "ANDERNOS LES BAINS", "code_postal": "33510", "coordonnees_gps": [44.7544421271, -1.08074566596], "code_commune_insee": "33005"}, "geometry": {"type": "Point", "coordinates": [-1.08074566596, 44.7544421271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ccc550c8e93be58359d9cd74de5e5b6b16600c", "fields": {"nom_de_la_commune": "ARCACHON", "libell_d_acheminement": "ARCACHON", "code_postal": "33120", "coordonnees_gps": [44.6533391966, -1.17442732892], "code_commune_insee": "33009"}, "geometry": {"type": "Point", "coordinates": [-1.17442732892, 44.6533391966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f1c68f775deb4e30ac5e508299e62850e65838", "fields": {"nom_de_la_commune": "ARSAC", "libell_d_acheminement": "ARSAC", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33012"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "733fd81a8ac90e6a5a5bb2834779ff243adc990f", "fields": {"code_postal": "33240", "code_commune_insee": "33018", "libell_d_acheminement": "VAL DE VIRVEE", "ligne_5": "ST ANTOINE", "nom_de_la_commune": "VAL DE VIRVEE", "coordonnees_gps": [44.9990310815, -0.398251913536]}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08cafc8443528db80aa51f2e2cf70b22ec3d71dd", "fields": {"nom_de_la_commune": "BAGAS", "libell_d_acheminement": "BAGAS", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33024"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e201663d97a3a53d514fd0b8a2bf0595e3f57517", "fields": {"nom_de_la_commune": "BARIE", "libell_d_acheminement": "BARIE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33027"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fe2a3b6be8c5ad5039ef0b3e4caed318718c069", "fields": {"nom_de_la_commune": "BAYON SUR GIRONDE", "libell_d_acheminement": "BAYON SUR GIRONDE", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33035"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba9ea99a8245fd59010c8b187ab60d811a3ac24", "fields": {"nom_de_la_commune": "BAZAS", "libell_d_acheminement": "BAZAS", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33036"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c6a4805679e76987598c98078615b5f69c53ede", "fields": {"nom_de_la_commune": "BEAUTIRAN", "libell_d_acheminement": "BEAUTIRAN", "code_postal": "33640", "coordonnees_gps": [44.6903703564, -0.443613375594], "code_commune_insee": "33037"}, "geometry": {"type": "Point", "coordinates": [-0.443613375594, 44.6903703564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5591c74fcc95f4161db29e368a46b61fd6b7bf", "fields": {"nom_de_la_commune": "BEGADAN", "libell_d_acheminement": "BEGADAN", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33038"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03eb7ccea2793ebf6d6819ee6e02b67e48697393", "fields": {"nom_de_la_commune": "BEGLES", "libell_d_acheminement": "BEGLES", "code_postal": "33130", "coordonnees_gps": [44.8016807866, -0.548228052443], "code_commune_insee": "33039"}, "geometry": {"type": "Point", "coordinates": [-0.548228052443, 44.8016807866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddaf3f56dee223382f2035c98d593fbedad840f2", "fields": {"nom_de_la_commune": "BEGUEY", "libell_d_acheminement": "BEGUEY", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33040"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a920ee0f68f27d0a4c907482c3f625a299384494", "fields": {"code_postal": "33380", "code_commune_insee": "33051", "libell_d_acheminement": "BIGANOS", "ligne_5": "FACTURE", "nom_de_la_commune": "BIGANOS", "coordonnees_gps": [44.6379766887, -0.903316939902]}, "geometry": {"type": "Point", "coordinates": [-0.903316939902, 44.6379766887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b39ef4684ec2654648800d02552073b63dddd3", "fields": {"nom_de_la_commune": "BIRAC", "libell_d_acheminement": "BIRAC", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33053"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b802ece38baf3df4db62bd5540910534311b4df", "fields": {"nom_de_la_commune": "BLAIGNAN", "libell_d_acheminement": "BLAIGNAN", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33055"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "946de1414efa6f3095bd8e4822b451426dd4b923", "fields": {"nom_de_la_commune": "BLASIMON", "libell_d_acheminement": "BLASIMON", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33057"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad1cea3c519ae00f44abc9f68c3998c2bb1a76d5", "fields": {"nom_de_la_commune": "BOSSUGAN", "libell_d_acheminement": "BOSSUGAN", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33064"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50ef7bf143a27833e13ea27f1b8a752fe35cf496", "fields": {"nom_de_la_commune": "BOURG", "libell_d_acheminement": "BOURG SUR GIRONDE", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33067"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3edda35717751ed657e069ad4eb0ac07355355f4", "fields": {"nom_de_la_commune": "BOURIDEYS", "libell_d_acheminement": "BOURIDEYS", "code_postal": "33113", "coordonnees_gps": [44.4018539682, -0.484067531582], "code_commune_insee": "33068"}, "geometry": {"type": "Point", "coordinates": [-0.484067531582, 44.4018539682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9264a2b279a14392efaf38b5c4d2d59c9f408c65", "fields": {"nom_de_la_commune": "BRAUD ET ST LOUIS", "libell_d_acheminement": "BRAUD ET ST LOUIS", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33073"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eda16bc4eeb9d7c66beb21352dbd59a05ee2f457", "fields": {"nom_de_la_commune": "CENAC", "libell_d_acheminement": "CENAC", "code_postal": "33360", "coordonnees_gps": [44.7832045247, -0.471864525744], "code_commune_insee": "33118"}, "geometry": {"type": "Point", "coordinates": [-0.471864525744, 44.7832045247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42fab99c3463a03ecc112dd31165126f20127042", "fields": {"nom_de_la_commune": "CISSAC MEDOC", "libell_d_acheminement": "CISSAC MEDOC", "code_postal": "33250", "coordonnees_gps": [45.1927076344, -0.786704253208], "code_commune_insee": "33125"}, "geometry": {"type": "Point", "coordinates": [-0.786704253208, 45.1927076344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcef8f84d6d49fd762b0dd920142a02cbf6f2498", "fields": {"nom_de_la_commune": "COMPS", "libell_d_acheminement": "COMPS", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33132"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76cdd3d7830dd92a516178eab40f6ec262d6bfa6", "fields": {"nom_de_la_commune": "COUBEYRAC", "libell_d_acheminement": "COUBEYRAC", "code_postal": "33890", "coordonnees_gps": [44.8028271638, 0.0747439245275], "code_commune_insee": "33133"}, "geometry": {"type": "Point", "coordinates": [0.0747439245275, 44.8028271638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b271f278f0cf9b8b7b9a7db0d04da0f58ac6b42f", "fields": {"nom_de_la_commune": "COUQUEQUES", "libell_d_acheminement": "COUQUEQUES", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33134"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ddce4fd4e4cab9a9e822bc00d68b25e4647a98", "fields": {"nom_de_la_commune": "CUBZAC LES PONTS", "libell_d_acheminement": "CUBZAC LES PONTS", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33143"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35a6720163336f7d13d91b7465e1f01ee75695ec", "fields": {"nom_de_la_commune": "DAUBEZE", "libell_d_acheminement": "DAUBEZE", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33149"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "529c62d9a88a38a4363d1ff410dccbab715cbd7b", "fields": {"nom_de_la_commune": "ESPIET", "libell_d_acheminement": "ESPIET", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33157"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2d89e8a704ed10e3f321b2f466b40ee5954c94", "fields": {"nom_de_la_commune": "LES ESSEINTES", "libell_d_acheminement": "LES ESSEINTES", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33158"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dc823c32fb56762f9f463a2df2d950da639075d", "fields": {"nom_de_la_commune": "ETAULIERS", "libell_d_acheminement": "ETAULIERS", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33159"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c8f529e26247c1e152f7bd06f17b9fc12dc29f0", "fields": {"nom_de_la_commune": "EYNESSE", "libell_d_acheminement": "EYNESSE", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33160"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3718ee0fa9e2cc1e7759e5fe38833fb4a3d7d5", "fields": {"nom_de_la_commune": "FLOIRAC", "libell_d_acheminement": "FLOIRAC", "code_postal": "33270", "coordonnees_gps": [44.8258167302, -0.513262421066], "code_commune_insee": "33167"}, "geometry": {"type": "Point", "coordinates": [-0.513262421066, 44.8258167302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c65c134bc71a59855b037b429ced0a8b7cbfe5fe", "fields": {"nom_de_la_commune": "FONTET", "libell_d_acheminement": "FONTET", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33170"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba942242c08b9f98a71732363d6253d310a7e63d", "fields": {"nom_de_la_commune": "GAJAC", "libell_d_acheminement": "GAJAC", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33178"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afec86dcef28165cf1e776153e1ad806b8e788f9", "fields": {"nom_de_la_commune": "GAURIAGUET", "libell_d_acheminement": "GAURIAGUET", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33183"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c402ebb2671b567d3edb3b69925a1f1d1064b930", "fields": {"nom_de_la_commune": "GENSAC", "libell_d_acheminement": "GENSAC", "code_postal": "33890", "coordonnees_gps": [44.8028271638, 0.0747439245275], "code_commune_insee": "33186"}, "geometry": {"type": "Point", "coordinates": [0.0747439245275, 44.8028271638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49994833138a183ef90f13a05e7dca5f9c4221e2", "fields": {"nom_de_la_commune": "GIRONDE SUR DROPT", "libell_d_acheminement": "GIRONDE SUR DROPT", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33187"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0297eb9b44cb0f6b170f838fe7b0fe663e1bee69", "fields": {"nom_de_la_commune": "GUITRES", "libell_d_acheminement": "GUITRES", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33198"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6118922cde8af274a11bdfbba99460b6df095315", "fields": {"nom_de_la_commune": "GRAVELOTTE", "libell_d_acheminement": "GRAVELOTTE", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57256"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d848304475b980a3ef45a74c0ad043826cc7660", "fields": {"nom_de_la_commune": "GREMECEY", "libell_d_acheminement": "GREMECEY", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57257"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe93045144640efc9035dd3d238022ee6c370113", "fields": {"nom_de_la_commune": "GRINDORFF BIZING", "libell_d_acheminement": "GRINDORFF BIZING", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57259"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915857a75833ee486c512843a0a7b93bfa594027", "fields": {"nom_de_la_commune": "LE VAL DE GUEBLANGE", "libell_d_acheminement": "LE VAL DE GUEBLANGE", "code_postal": "57430", "coordonnees_gps": [48.9890917181, 6.98173780701], "code_commune_insee": "57267"}, "geometry": {"type": "Point", "coordinates": [6.98173780701, 48.9890917181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2d695f206f30a2da650549c41cd44d1ed43f57", "fields": {"nom_de_la_commune": "GUEBLING", "libell_d_acheminement": "GUEBLING", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57268"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84f1746626cefd36e244dfa197f0f0fd6a099f5a", "fields": {"code_postal": "57260", "code_commune_insee": "57270", "libell_d_acheminement": "VAL DE BRIDE", "ligne_5": "KERPRICH LES DIEUZE", "nom_de_la_commune": "VAL DE BRIDE", "coordonnees_gps": [48.8146613171, 6.75592004038]}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553943607f98e90096640ce53b22c4924e13b176", "fields": {"nom_de_la_commune": "GUERMANGE", "libell_d_acheminement": "GUERMANGE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57272"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4860d3da6281e6735497846a2f4bb793527066f7", "fields": {"nom_de_la_commune": "GUINGLANGE", "libell_d_acheminement": "GUINGLANGE", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57276"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64c97e6328ca746949d241b3979d13d579451cef", "fields": {"nom_de_la_commune": "HAMPONT", "libell_d_acheminement": "HAMPONT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57290"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e797b532309cdef620778411db35503d955456fb", "fields": {"nom_de_la_commune": "HAYANGE", "libell_d_acheminement": "HAYANGE", "code_postal": "57700", "coordonnees_gps": [49.3161755107, 6.04071219328], "code_commune_insee": "57306"}, "geometry": {"type": "Point", "coordinates": [6.04071219328, 49.3161755107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b71ba789e944d77eacef61ad1e070708247932fc", "fields": {"code_postal": "57700", "code_commune_insee": "57306", "libell_d_acheminement": "HAYANGE", "ligne_5": "MARSPICH", "nom_de_la_commune": "HAYANGE", "coordonnees_gps": [49.3161755107, 6.04071219328]}, "geometry": {"type": "Point", "coordinates": [6.04071219328, 49.3161755107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843f5fa0ac3ac856f3e7ef9245dd75e8044a0584", "fields": {"code_postal": "57700", "code_commune_insee": "57306", "libell_d_acheminement": "HAYANGE", "ligne_5": "ST NICOLAS EN FORET", "nom_de_la_commune": "HAYANGE", "coordonnees_gps": [49.3161755107, 6.04071219328]}, "geometry": {"type": "Point", "coordinates": [6.04071219328, 49.3161755107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbcc11f7bea0e2efc3204e0b20dfc44c6b392985", "fields": {"nom_de_la_commune": "HEINING LES BOUZONVILLE", "libell_d_acheminement": "HEINING LES BOUZONVILLE", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57309"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c10fb9be5f20b27e58a5b514ba957d1e5009c1f8", "fields": {"nom_de_la_commune": "HESSE", "libell_d_acheminement": "HESSE", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57321"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adbcd8a604e37abbdf48d96f3beb801a44a0e835", "fields": {"nom_de_la_commune": "HILSPRICH", "libell_d_acheminement": "HILSPRICH", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57325"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dab8a35c00d7f25c1be024f6a230bdb573f4921", "fields": {"nom_de_la_commune": "HOLVING", "libell_d_acheminement": "HOLVING", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57330"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61884a7a397ffa070cd50a96a6f64bcfd1802cf4", "fields": {"nom_de_la_commune": "HOMBOURG BUDANGE", "libell_d_acheminement": "HOMBOURG BUDANGE", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57331"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58060fcdede22876e472818f714e98ab17318c18", "fields": {"nom_de_la_commune": "L HOPITAL", "libell_d_acheminement": "L HOPITAL", "code_postal": "57490", "coordonnees_gps": [49.1613905223, 6.7250851185], "code_commune_insee": "57336"}, "geometry": {"type": "Point", "coordinates": [6.7250851185, 49.1613905223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8564c93eb0e44afddf8df4eb21208785fb68e641", "fields": {"nom_de_la_commune": "INSVILLER", "libell_d_acheminement": "INSVILLER", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57347"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ce1c7aa9953ccd8aa7862281409cd975d19b7a", "fields": {"nom_de_la_commune": "IPPLING", "libell_d_acheminement": "IPPLING", "code_postal": "57990", "coordonnees_gps": [49.1133507394, 6.98404572012], "code_commune_insee": "57348"}, "geometry": {"type": "Point", "coordinates": [6.98404572012, 49.1133507394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b29f857191cd7aaec278f55fb0e3c4983dfc57", "fields": {"nom_de_la_commune": "KERLING LES SIERCK", "libell_d_acheminement": "KERLING LES SIERCK", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57361"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a97530413217262967a99ea7e32a367207395256", "fields": {"nom_de_la_commune": "HAUTE KONTZ", "libell_d_acheminement": "HAUTE KONTZ", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57371"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef1cd963227ce537f41151dfcb3fa540a6f1fb0", "fields": {"nom_de_la_commune": "LACHAMBRE", "libell_d_acheminement": "LACHAMBRE", "code_postal": "57730", "coordonnees_gps": [49.0823148993, 6.73315918141], "code_commune_insee": "57373"}, "geometry": {"type": "Point", "coordinates": [6.73315918141, 49.0823148993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00bd71cf4ba5cc6a4803955cc2756738c2476a5", "fields": {"nom_de_la_commune": "LAUMESFELD", "libell_d_acheminement": "LAUMESFELD", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57387"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "406ab3167edf67d7f692da886da21333e9bd0d68", "fields": {"nom_de_la_commune": "LELLING", "libell_d_acheminement": "LELLING", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57389"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9ecef92878be1310109fbf2211e57442498b30", "fields": {"nom_de_la_commune": "LESSY", "libell_d_acheminement": "LESSY", "code_postal": "57160", "coordonnees_gps": [49.1183395813, 6.08364219773], "code_commune_insee": "57396"}, "geometry": {"type": "Point", "coordinates": [6.08364219773, 49.1183395813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e13a1cb2602992623cbcc48db6c0f0c9e405e89", "fields": {"nom_de_la_commune": "LEY", "libell_d_acheminement": "LEY", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57397"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "850b1243b2cdcce883e448f65e65d3b91577837d", "fields": {"nom_de_la_commune": "LIEDERSCHIEDT", "libell_d_acheminement": "LIEDERSCHIEDT", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57402"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c60f96d05c583814d0d5e2d23a61926c3164fb5e", "fields": {"nom_de_la_commune": "LIEHON", "libell_d_acheminement": "LIEHON", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57403"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a8b8c9f349c6e8c764b6bce8017fb955bec6c96", "fields": {"nom_de_la_commune": "LIOCOURT", "libell_d_acheminement": "LIOCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57406"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e02b88548fafe14636488305ffff202bd094bcd2", "fields": {"nom_de_la_commune": "LIXING LES ST AVOLD", "libell_d_acheminement": "LIXING LES ST AVOLD", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57409"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d90da363d9cd2539fece3b8b09c25fa4562a3b", "fields": {"nom_de_la_commune": "MAINVILLERS", "libell_d_acheminement": "MAINVILLERS", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57430"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551f7e4ce0f74c7082d3d9d54d4fc9e49f5cfe46", "fields": {"nom_de_la_commune": "MAIZERY", "libell_d_acheminement": "MAIZERY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57432"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b11c5e41a3c876d26fd26f7678ec90676691396", "fields": {"nom_de_la_commune": "MALAUCOURT SUR SEILLE", "libell_d_acheminement": "MALAUCOURT SUR SEILLE", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57436"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c3363e826a20475baedbff0d02635cf041cd5a6", "fields": {"nom_de_la_commune": "MANOM", "libell_d_acheminement": "MANOM", "code_postal": "57100", "coordonnees_gps": [49.376778126, 6.13767637123], "code_commune_insee": "57441"}, "geometry": {"type": "Point", "coordinates": [6.13767637123, 49.376778126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "143977e60ec8767dd0738caf4bd22b3c8a268e36", "fields": {"nom_de_la_commune": "MARANGE SILVANGE", "libell_d_acheminement": "MARANGE SILVANGE", "code_postal": "57535", "coordonnees_gps": [49.2137829893, 6.11073002885], "code_commune_insee": "57443"}, "geometry": {"type": "Point", "coordinates": [6.11073002885, 49.2137829893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8a1bd4afde5fda228e3db8df7bd6f990b907a45", "fields": {"nom_de_la_commune": "MARIMONT LES BENESTROFF", "libell_d_acheminement": "MARIMONT LES BENESTROFF", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57446"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0272a54f9aa2de2b643644293728bd9c1e7f17ff", "fields": {"nom_de_la_commune": "LA MAXE", "libell_d_acheminement": "LA MAXE", "code_postal": "57140", "coordonnees_gps": [49.1663107654, 6.13682025903], "code_commune_insee": "57452"}, "geometry": {"type": "Point", "coordinates": [6.13682025903, 49.1663107654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3549fd1e92ca4a9d3e29a3daddabe133ead42b50", "fields": {"nom_de_la_commune": "METTING", "libell_d_acheminement": "METTING", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57462"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "145822a4b4d82f900f45b6675003ec6846a4bd7e", "fields": {"nom_de_la_commune": "METZ", "libell_d_acheminement": "METZ", "code_postal": "57070", "coordonnees_gps": [49.1173648724, 6.2035419151], "code_commune_insee": "57463"}, "geometry": {"type": "Point", "coordinates": [6.2035419151, 49.1173648724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328b0adf2ea71887daff309c9aadeb529e48df79", "fields": {"nom_de_la_commune": "METZING", "libell_d_acheminement": "METZING", "code_postal": "57980", "coordonnees_gps": [49.1092636069, 6.94134556596], "code_commune_insee": "57466"}, "geometry": {"type": "Point", "coordinates": [6.94134556596, 49.1092636069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3328ac317a4cf91763df2d2fa677899cfb146893", "fields": {"nom_de_la_commune": "MONCHEUX", "libell_d_acheminement": "MONCHEUX", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57472"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a52a2a8c9f4c9809c6a7e97390289b09c41a8319", "fields": {"nom_de_la_commune": "MONNEREN", "libell_d_acheminement": "MONNEREN", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57476"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2378ab407d76d7d32bd2e9ec9696eb7bdd70ecb", "fields": {"nom_de_la_commune": "MORSBACH", "libell_d_acheminement": "MORSBACH", "code_postal": "57600", "coordonnees_gps": [49.1737473048, 6.89495701943], "code_commune_insee": "57484"}, "geometry": {"type": "Point", "coordinates": [6.89495701943, 49.1737473048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a8b3fa5c66055503b4b917f18c636a65367a11e", "fields": {"code_postal": "57250", "code_commune_insee": "57491", "libell_d_acheminement": "MOYEUVRE GRANDE", "ligne_5": "FROIDCUL", "nom_de_la_commune": "MOYEUVRE GRANDE", "coordonnees_gps": [49.2628995839, 6.0314436388]}, "geometry": {"type": "Point", "coordinates": [6.0314436388, 49.2628995839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90acd1c44f3c2288b35d32a1aeb66e68e4ba82db", "fields": {"nom_de_la_commune": "MOYEUVRE PETITE", "libell_d_acheminement": "MOYEUVRE PETITE", "code_postal": "57250", "coordonnees_gps": [49.2628995839, 6.0314436388], "code_commune_insee": "57492"}, "geometry": {"type": "Point", "coordinates": [6.0314436388, 49.2628995839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb74db6aec447457b55dc6215ee690686b0bf81", "fields": {"nom_de_la_commune": "NEBING", "libell_d_acheminement": "NEBING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57496"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823264f6a6614e7a4d265763c8668c02196c4118", "fields": {"nom_de_la_commune": "NEUFCHEF", "libell_d_acheminement": "NEUFCHEF", "code_postal": "57700", "coordonnees_gps": [49.3161755107, 6.04071219328], "code_commune_insee": "57498"}, "geometry": {"type": "Point", "coordinates": [6.04071219328, 49.3161755107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd08a4bf8a4b1f58c2b5338f14fae5dacb2eb23", "fields": {"nom_de_la_commune": "NEUFMOULINS", "libell_d_acheminement": "NEUFMOULINS", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57500"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e915d3c461315cf66b09dab6064ee84ed830831a", "fields": {"nom_de_la_commune": "NIDERVILLER", "libell_d_acheminement": "NIDERVILLER", "code_postal": "57565", "coordonnees_gps": [48.7051512311, 7.11288052052], "code_commune_insee": "57505"}, "geometry": {"type": "Point", "coordinates": [7.11288052052, 48.7051512311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce9f10f2c8bf063bb9f37d2ad703c0abafbd269", "fields": {"nom_de_la_commune": "NOISSEVILLE", "libell_d_acheminement": "NOISSEVILLE", "code_postal": "57645", "coordonnees_gps": [49.1294879959, 6.29496207471], "code_commune_insee": "57510"}, "geometry": {"type": "Point", "coordinates": [6.29496207471, 49.1294879959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4faa4c6b9e15c17ac6476c5902a0a3c42137236a", "fields": {"nom_de_la_commune": "NOUSSEVILLER ST NABOR", "libell_d_acheminement": "NOUSSEVILLER ST NABOR", "code_postal": "57990", "coordonnees_gps": [49.1133507394, 6.98404572012], "code_commune_insee": "57514"}, "geometry": {"type": "Point", "coordinates": [6.98404572012, 49.1133507394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f7ec7e72c39b1cd1dc39bdd899aaf5e6d0f9b5", "fields": {"nom_de_la_commune": "OMMERAY", "libell_d_acheminement": "OMMERAY", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57524"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e6638611152a35fa79e2914c28aa043d505ba7a", "fields": {"nom_de_la_commune": "PHALSBOURG", "libell_d_acheminement": "PHALSBOURG", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57540"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b528fd8c2c79d16525d7441bdfff62e022f32362", "fields": {"nom_de_la_commune": "PONTPIERRE", "libell_d_acheminement": "PONTPIERRE", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57549"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9dc9068638d5ca95e5c5d4b92e7f3ff9c4ed97b", "fields": {"nom_de_la_commune": "PREVOCOURT", "libell_d_acheminement": "PREVOCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57555"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f9ca88aa6d8ee99ae5b9bf3a9a24321ab4f39b", "fields": {"nom_de_la_commune": "REMILLY", "libell_d_acheminement": "REMILLY", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57572"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eb3f920f5796f21f90261da6ebc841549949d1d", "fields": {"nom_de_la_commune": "RENING", "libell_d_acheminement": "RENING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57573"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce9bc31b9bc9899892d0e94d9809b8c71052980", "fields": {"nom_de_la_commune": "REZONVILLE", "libell_d_acheminement": "REZONVILLE", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57578"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f6dd70672dc57c5afe84e9ffeba1b3a708199f6", "fields": {"nom_de_la_commune": "ROMBAS", "libell_d_acheminement": "ROMBAS", "code_postal": "57120", "coordonnees_gps": [49.2378389849, 6.09052471357], "code_commune_insee": "57591"}, "geometry": {"type": "Point", "coordinates": [6.09052471357, 49.2378389849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c333bc98c0ea9fb19ced5f3048e8db5e11a871eb", "fields": {"nom_de_la_commune": "ROSSELANGE", "libell_d_acheminement": "ROSSELANGE", "code_postal": "57780", "coordonnees_gps": [49.2665936205, 6.06084289288], "code_commune_insee": "57597"}, "geometry": {"type": "Point", "coordinates": [6.06084289288, 49.2665936205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f90ea3926ed0163e9c9cebba7eafca72870198", "fields": {"nom_de_la_commune": "ROUSSY LE VILLAGE", "libell_d_acheminement": "ROUSSY LE VILLAGE", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57600"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc09a3e48538bd442b48f5b3b84726d179c544f4", "fields": {"nom_de_la_commune": "RURANGE LES THIONVILLE", "libell_d_acheminement": "RURANGE LES THIONVILLE", "code_postal": "57310", "coordonnees_gps": [49.2880823973, 6.21031753305], "code_commune_insee": "57602"}, "geometry": {"type": "Point", "coordinates": [6.21031753305, 49.2880823973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5d05f52d8c92a26774b2c778b94881f20f6e107", "fields": {"nom_de_la_commune": "RUSTROFF", "libell_d_acheminement": "RUSTROFF", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57604"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e06ec2166fe114e4993f41aa296a1281b045ea4", "fields": {"nom_de_la_commune": "STE BARBE", "libell_d_acheminement": "STE BARBE", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57607"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7ed615fd588618a01d931f90d92f6be2c7b65bd", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57621"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "884c9cf70f48f60da7181b324aadb716f33e2f5f", "fields": {"nom_de_la_commune": "STE RUFFINE", "libell_d_acheminement": "STE RUFFINE", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57624"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e38722325905d3c4a7c1e00a3f72d82ebeec173b", "fields": {"nom_de_la_commune": "SALONNES", "libell_d_acheminement": "SALONNES", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57625"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f2d05fb66c9fb7a0eeff1f2fbea81161033299", "fields": {"nom_de_la_commune": "SCHWEYEN", "libell_d_acheminement": "SCHWEYEN", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57641"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa1c79602c0284e5dfb04312cb103dd4634f8272", "fields": {"nom_de_la_commune": "SERVIGNY LES RAVILLE", "libell_d_acheminement": "SERVIGNY LES RAVILLE", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57648"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d3ad3c451de4d36c328b70cd481b1d7b4e443b0", "fields": {"nom_de_la_commune": "SILLY SUR NIED", "libell_d_acheminement": "SILLY SUR NIED", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57654"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb22627bc9f4ccebbb66439b69d48a162372932", "fields": {"nom_de_la_commune": "SOLGNE", "libell_d_acheminement": "SOLGNE", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57655"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25440b60c1787d520d28cac7ef7f16b963bab8bf", "fields": {"nom_de_la_commune": "TETING SUR NIED", "libell_d_acheminement": "TETING SUR NIED", "code_postal": "57385", "coordonnees_gps": [49.0669027987, 6.64766782853], "code_commune_insee": "57668"}, "geometry": {"type": "Point", "coordinates": [6.64766782853, 49.0669027987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa84bb4f55a1e955e08a4e2c7a7dbdeb618dc5a1", "fields": {"nom_de_la_commune": "TREMERY", "libell_d_acheminement": "TREMERY", "code_postal": "57300", "coordonnees_gps": [49.2517615961, 6.19936397452], "code_commune_insee": "57677"}, "geometry": {"type": "Point", "coordinates": [6.19936397452, 49.2517615961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02467794880f2c303f387ef2f3b0dcc583c6c0c", "fields": {"nom_de_la_commune": "TRESSANGE", "libell_d_acheminement": "TRESSANGE", "code_postal": "57710", "coordonnees_gps": [49.4142056636, 5.96361653857], "code_commune_insee": "57678"}, "geometry": {"type": "Point", "coordinates": [5.96361653857, 49.4142056636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ff53b3644679b11eeec904901fc80184047800", "fields": {"nom_de_la_commune": "VASPERVILLER", "libell_d_acheminement": "VASPERVILLER", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57697"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac9ae7baab4a4508ca233132148adef7cc09617a", "fields": {"nom_de_la_commune": "VAUDRECHING", "libell_d_acheminement": "VAUDRECHING", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57700"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe5de263b448924dccf51df6760536f55fe32ac", "fields": {"nom_de_la_commune": "VESCHEIM", "libell_d_acheminement": "VESCHEIM", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57709"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc28499990e469cca7fca16b6b148bc58d82688", "fields": {"nom_de_la_commune": "VILLING", "libell_d_acheminement": "VILLING", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57720"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab73aaf71405bd8dd125912cc8997021dc41afc0", "fields": {"nom_de_la_commune": "VILSBERG", "libell_d_acheminement": "VILSBERG", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57721"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8745e86b2a4edaf220710e7c859fdf19d704e8e", "fields": {"nom_de_la_commune": "VOLMERANGE LES BOULAY", "libell_d_acheminement": "VOLMERANGE LES BOULAY", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57730"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b7f9abd5ce890e57e1e81820b037a66eead3556", "fields": {"nom_de_la_commune": "VOLMERANGE LES MINES", "libell_d_acheminement": "VOLMERANGE LES MINES", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57731"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9034e657199a11571156ab7f0d5f8115d4310a7d", "fields": {"nom_de_la_commune": "VOLMUNSTER", "libell_d_acheminement": "VOLMUNSTER", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57732"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25850b6851e1f807e48f3232a15cd5ac88741a63", "fields": {"nom_de_la_commune": "WALDWEISTROFF", "libell_d_acheminement": "WALDWEISTROFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57739"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1adc62244ace0c6260251b8024b7532ca9144c", "fields": {"nom_de_la_commune": "WALSCHBRONN", "libell_d_acheminement": "WALSCHBRONN", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57741"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c14bf9fc51ed6e18febc6bc8e3ed7b6a2064d400", "fields": {"nom_de_la_commune": "WILLERWALD", "libell_d_acheminement": "WILLERWALD", "code_postal": "57430", "coordonnees_gps": [48.9890917181, 6.98173780701], "code_commune_insee": "57746"}, "geometry": {"type": "Point", "coordinates": [6.98173780701, 48.9890917181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd3df1b4e8a8d8744ad204d0e6f1c37f282d8c5", "fields": {"nom_de_la_commune": "ZARBELING", "libell_d_acheminement": "ZARBELING", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57759"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a797d175b8c10845a95b074f5de9dec6d94539", "fields": {"nom_de_la_commune": "ZIMMING", "libell_d_acheminement": "ZIMMING", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57762"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee247390bf09b82e32b9d109bb57014fa4f23b4d", "fields": {"nom_de_la_commune": "ALLIGNY COSNE", "libell_d_acheminement": "ALLIGNY COSNE", "code_postal": "58200", "coordonnees_gps": [47.4176980884, 2.99755366408], "code_commune_insee": "58002"}, "geometry": {"type": "Point", "coordinates": [2.99755366408, 47.4176980884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "474e8bc6d2a741ccb52e2db3be1a701b78eafe40", "fields": {"nom_de_la_commune": "ALLIGNY EN MORVAN", "libell_d_acheminement": "ALLIGNY EN MORVAN", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58003"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6097831839d0d108cce3f5c650c33a981e02cffc", "fields": {"nom_de_la_commune": "AMAZY", "libell_d_acheminement": "AMAZY", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58005"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6aa6d24a682c9ba183c2d9c6c184ba52f4176a7", "fields": {"nom_de_la_commune": "ASNOIS", "libell_d_acheminement": "ASNOIS", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58016"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de71cb74634fed285eb239f5253d6a774d16b0dd", "fields": {"nom_de_la_commune": "AUTHIOU", "libell_d_acheminement": "AUTHIOU", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58018"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0edcbb87c756eda2ba5a10902f7baaea63af4ef1", "fields": {"nom_de_la_commune": "BAZOCHES", "libell_d_acheminement": "BAZOCHES", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58023"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c86b241b6ffcd7a1e246605f5073db63d74065a", "fields": {"nom_de_la_commune": "BAZOLLES", "libell_d_acheminement": "BAZOLLES", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58024"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "598d139e1d91f443eaa505acff03bfbb85bd1899", "fields": {"code_postal": "58110", "code_commune_insee": "58024", "libell_d_acheminement": "BAZOLLES", "ligne_5": "BAYE", "nom_de_la_commune": "BAZOLLES", "coordonnees_gps": [47.0705293226, 3.65958996316]}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f11f6b42a7d77e3c87ba929879dfe54f46997a", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58026"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "161a28d0433e81340bbe5bc629f37cb8065eefc8", "fields": {"nom_de_la_commune": "BEUVRON", "libell_d_acheminement": "BEUVRON", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58029"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5871a757e85eae7058be1caf3398f66894c8cd3e", "fields": {"nom_de_la_commune": "BULCY", "libell_d_acheminement": "BULCY", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58042"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f59dcb8b0def29055d132ff6e899816c25c2e0d", "fields": {"nom_de_la_commune": "BUSSY LA PESLE", "libell_d_acheminement": "BUSSY LA PESLE", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58043"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b4d8964e22a24ee3d4128a2143dbed7d4caf767", "fields": {"nom_de_la_commune": "FRY", "libell_d_acheminement": "FRY", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76292"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03ef501f68db557da32938a584413b3afd23d569", "fields": {"nom_de_la_commune": "GERPONVILLE", "libell_d_acheminement": "GERPONVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76299"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbecdaa388b9c30a238cbcc837cc5ee0b4791fc2", "fields": {"nom_de_la_commune": "GOMMERVILLE", "libell_d_acheminement": "GOMMERVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76303"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c88e9f7c76df8136574734b17be549e27fd361", "fields": {"nom_de_la_commune": "GONFREVILLE L ORCHER", "libell_d_acheminement": "GONFREVILLE L ORCHER", "code_postal": "76700", "coordonnees_gps": [49.4973035255, 0.236903290282], "code_commune_insee": "76305"}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eef65af3d241263154df4f4e885c61e8ea21d56", "fields": {"nom_de_la_commune": "GONZEVILLE", "libell_d_acheminement": "GONZEVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76309"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a3985349224f2a090e448b460a1533849c9247a", "fields": {"nom_de_la_commune": "GRAND CAMP", "libell_d_acheminement": "GRAND CAMP", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76318"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99d4613132b3427d740fe08963e8c01b5f3932ad", "fields": {"nom_de_la_commune": "GREUVILLE", "libell_d_acheminement": "GREUVILLE", "code_postal": "76810", "coordonnees_gps": [49.8183017172, 0.909956349488], "code_commune_insee": "76327"}, "geometry": {"type": "Point", "coordinates": [0.909956349488, 49.8183017172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0063a29116e20b02be64658aeb5478b3d88e1079", "fields": {"nom_de_la_commune": "HAUTOT ST SULPICE", "libell_d_acheminement": "HAUTOT ST SULPICE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76348"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0023f73366a73b31b89972cd1bf726919c73eae1", "fields": {"code_postal": "76550", "code_commune_insee": "76349", "libell_d_acheminement": "HAUTOT SUR MER", "ligne_5": "LE PETIT APPEVILLE", "nom_de_la_commune": "HAUTOT SUR MER", "coordonnees_gps": [49.8714214242, 1.05265186739]}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1792984cfc4eb4fca1faedc16fb8a7dadbd93b81", "fields": {"nom_de_la_commune": "LE HAVRE", "libell_d_acheminement": "LE HAVRE", "code_postal": "76620", "coordonnees_gps": [49.4965610328, 0.1402707121], "code_commune_insee": "76351"}, "geometry": {"type": "Point", "coordinates": [0.1402707121, 49.4965610328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31490bc6f4a42718c5c8097cf8ab773a0419265f", "fields": {"nom_de_la_commune": "LA HAYE", "libell_d_acheminement": "LA HAYE", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76352"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c99549c1f3326d3b430e53ce1883a7ec57dc901", "fields": {"nom_de_la_commune": "HEBERVILLE", "libell_d_acheminement": "HEBERVILLE", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76353"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abdc8d7d42be0437760b549595f95f2c8f2064be", "fields": {"nom_de_la_commune": "HEUQUEVILLE", "libell_d_acheminement": "HEUQUEVILLE", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76361"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7888a8858a59b12548cfb37710a5feb004788f1e", "fields": {"nom_de_la_commune": "INCHEVILLE", "libell_d_acheminement": "INCHEVILLE", "code_postal": "76117", "coordonnees_gps": [50.0052512426, 1.49970503899], "code_commune_insee": "76374"}, "geometry": {"type": "Point", "coordinates": [1.49970503899, 50.0052512426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f16ce84429da63b5a3c461cb1ce6d21d973f85", "fields": {"nom_de_la_commune": "LILLEBONNE", "libell_d_acheminement": "LILLEBONNE", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76384"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83344bf847fdd06a6d2b91e287e4032ee1685058", "fields": {"nom_de_la_commune": "LIMPIVILLE", "libell_d_acheminement": "LIMPIVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76386"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae228773274f0af6305024f113935ee08c99f5a2", "fields": {"nom_de_la_commune": "LINDEBEUF", "libell_d_acheminement": "LINDEBEUF", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76387"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5000c3100a551909a06eaaacf70a4b4734387708", "fields": {"nom_de_la_commune": "LINTOT LES BOIS", "libell_d_acheminement": "LINTOT LES BOIS", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76389"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f9665a8c6289646125db360b189400f5da436a4", "fields": {"nom_de_la_commune": "LONGROY", "libell_d_acheminement": "LONGROY", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76394"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed2c9d9a57bdc23329d12eea6051e4a9716295e", "fields": {"nom_de_la_commune": "LUCY", "libell_d_acheminement": "LUCY", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76399"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a63b69b9ee93300a9f9b17aae0f47e6de9a7d800", "fields": {"code_postal": "76940", "code_commune_insee": "76401", "libell_d_acheminement": "ARELAUNE EN SEINE", "ligne_5": "LA MAILLERAYE SUR SEINE", "nom_de_la_commune": "ARELAUNE EN SEINE", "coordonnees_gps": [49.4548266435, 0.725950851811]}, "geometry": {"type": "Point", "coordinates": [0.725950851811, 49.4548266435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7389a5bd1f295fcb02f29c601465e32bdf56d12c", "fields": {"nom_de_la_commune": "MALLEVILLE LES GRES", "libell_d_acheminement": "MALLEVILLE LES GRES", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76403"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b81756e3c648d30f703e934c5d1fdd609b56d72", "fields": {"nom_de_la_commune": "MANEGLISE", "libell_d_acheminement": "MANEGLISE", "code_postal": "76133", "coordonnees_gps": [49.5770580523, 0.228035021727], "code_commune_insee": "76404"}, "geometry": {"type": "Point", "coordinates": [0.228035021727, 49.5770580523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a315e86edf6cef42f0bd5050dfdfe0558413d65", "fields": {"nom_de_la_commune": "MANEHOUVILLE", "libell_d_acheminement": "MANEHOUVILLE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76405"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b89b259d0d063f297c99237ed135d8d030c9af", "fields": {"nom_de_la_commune": "MANNEVILLE ES PLAINS", "libell_d_acheminement": "MANNEVILLE ES PLAINS", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76407"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb958795853839e51cff65b9cc3080fe704a9e2c", "fields": {"nom_de_la_commune": "MAROMME", "libell_d_acheminement": "MAROMME", "code_postal": "76150", "coordonnees_gps": [49.4875793097, 1.0078796915], "code_commune_insee": "76410"}, "geometry": {"type": "Point", "coordinates": [1.0078796915, 49.4875793097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f489bcbbe95c7098ec5e01d34d921f19ef9a3f78", "fields": {"nom_de_la_commune": "MATHONVILLE", "libell_d_acheminement": "MATHONVILLE", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76416"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7103796d6de17a5804b9626bcfeb91a860fc30", "fields": {"nom_de_la_commune": "MELLEVILLE", "libell_d_acheminement": "MELLEVILLE", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76422"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9989011cb19e7901ef967216d3c555353ed9336e", "fields": {"nom_de_la_commune": "MENERVAL", "libell_d_acheminement": "MENERVAL", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76423"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7865a0f2988eeb514cf17940d7c6b65e5383f523", "fields": {"nom_de_la_commune": "LE MESNIL LIEUBRAY", "libell_d_acheminement": "LE MESNIL LIEUBRAY", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76431"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285b2fb9879c27588e009e4bc5a2ae96e95f339d", "fields": {"nom_de_la_commune": "MEULERS", "libell_d_acheminement": "MEULERS", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76437"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bed861b10630dbce34c95d0ba8432a846cf807b", "fields": {"nom_de_la_commune": "MOLAGNIES", "libell_d_acheminement": "MOLAGNIES", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76440"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb8f1251b0f0987da493102fd3af5782f428deaa", "fields": {"nom_de_la_commune": "MONTEROLIER", "libell_d_acheminement": "MONTEROLIER", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76445"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a29e710cdd4435e1a805ba90fc12e0a6d576f018", "fields": {"nom_de_la_commune": "MONT ST AIGNAN", "libell_d_acheminement": "MONT ST AIGNAN", "code_postal": "76130", "coordonnees_gps": [49.4669830851, 1.08138912712], "code_commune_insee": "76451"}, "geometry": {"type": "Point", "coordinates": [1.08138912712, 49.4669830851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "508cf177b687addb83199dfd87cbea721ba5a715", "fields": {"nom_de_la_commune": "MOULINEAUX", "libell_d_acheminement": "MOULINEAUX", "code_postal": "76530", "coordonnees_gps": [49.3726997193, 0.948232561629], "code_commune_insee": "76457"}, "geometry": {"type": "Point", "coordinates": [0.948232561629, 49.3726997193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb8dd76ce7dc519f7cbb6797a8860c531ce357fb", "fields": {"nom_de_la_commune": "NESLE NORMANDEUSE", "libell_d_acheminement": "NESLE NORMANDEUSE", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76460"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04538de835dd3ec329fd175d13ade3efb7ccb5ab", "fields": {"nom_de_la_commune": "NEUF MARCHE", "libell_d_acheminement": "NEUF MARCHE", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76463"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4463f3f3fc55f2be77bdff497af0fb01eeac841", "fields": {"nom_de_la_commune": "NOTRE DAME DE BLIQUETUIT", "libell_d_acheminement": "NOTRE DAME DE BLIQUETUIT", "code_postal": "76940", "coordonnees_gps": [49.4548266435, 0.725950851811], "code_commune_insee": "76473"}, "geometry": {"type": "Point", "coordinates": [0.725950851811, 49.4548266435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8dcea0d5b8fc769fc27188775cedfd2cdde90e3", "fields": {"nom_de_la_commune": "NOTRE DAME DE BONDEVILLE", "libell_d_acheminement": "NOTRE DAME DE BONDEVILLE", "code_postal": "76960", "coordonnees_gps": [49.4877534102, 1.0549887883], "code_commune_insee": "76474"}, "geometry": {"type": "Point", "coordinates": [1.0549887883, 49.4877534102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e99e5fdc3ddd48116bece5020b10c12922f58d0c", "fields": {"nom_de_la_commune": "NOTRE DAME DU PARC", "libell_d_acheminement": "NOTRE DAME DU PARC", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76478"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e16c23f9567c631abfdf299829b9f1b5a87dbf", "fields": {"nom_de_la_commune": "NULLEMONT", "libell_d_acheminement": "NULLEMONT", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76479"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b03f7f1912cf2bbad940e2a1f203490ae0909555", "fields": {"nom_de_la_commune": "OCQUEVILLE", "libell_d_acheminement": "OCQUEVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76480"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a26e469005aee266d6fd005e4897cb8c04b0a49", "fields": {"nom_de_la_commune": "PETIT COURONNE", "libell_d_acheminement": "PETIT COURONNE", "code_postal": "76650", "coordonnees_gps": [49.3804321668, 1.03471399702], "code_commune_insee": "76497"}, "geometry": {"type": "Point", "coordinates": [1.03471399702, 49.3804321668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "556b7f0fee4761fc61d59e283bd8a236b3230f44", "fields": {"nom_de_la_commune": "LE PETIT QUEVILLY", "libell_d_acheminement": "LE PETIT QUEVILLY", "code_postal": "76140", "coordonnees_gps": [49.4243826059, 1.05958574063], "code_commune_insee": "76498"}, "geometry": {"type": "Point", "coordinates": [1.05958574063, 49.4243826059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51639f79f73e13738baa4ac361775e9181ea1c14", "fields": {"nom_de_la_commune": "PREAUX", "libell_d_acheminement": "PREAUX", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76509"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75b79db15edf10f2686267f78a89386dd55bcb4", "fields": {"nom_de_la_commune": "PREUSEVILLE", "libell_d_acheminement": "PREUSEVILLE", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76511"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13a24bb1d2bb13eaf40c9f28cacfb1406eb86e10", "fields": {"nom_de_la_commune": "QUEVREVILLE LA POTERIE", "libell_d_acheminement": "QUEVREVILLE LA POTERIE", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76514"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b0308fc1fddadd92e32342a9691333e221231a9", "fields": {"nom_de_la_commune": "RAINFREVILLE", "libell_d_acheminement": "RAINFREVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76519"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49e25b0f8eeb1b1cd023aba1822753e4162878af", "fields": {"nom_de_la_commune": "RETONVAL", "libell_d_acheminement": "RETONVAL", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76523"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "026854045b359f434ae4cee091b2eaaeb2b2c604", "fields": {"nom_de_la_commune": "ROBERTOT", "libell_d_acheminement": "ROBERTOT", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76530"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c12aaf8ee273c639f8baba38463e89b660528b1d", "fields": {"nom_de_la_commune": "ROCQUEMONT", "libell_d_acheminement": "ROCQUEMONT", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76532"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0c2a23e66e518abf3a847b8d510f1faf46d5de", "fields": {"nom_de_la_commune": "ROLLEVILLE", "libell_d_acheminement": "ROLLEVILLE", "code_postal": "76133", "coordonnees_gps": [49.5770580523, 0.228035021727], "code_commune_insee": "76534"}, "geometry": {"type": "Point", "coordinates": [0.228035021727, 49.5770580523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01de421bfea48e417e30c6cbb596f8c82e4f33c", "fields": {"nom_de_la_commune": "RONCHEROLLES EN BRAY", "libell_d_acheminement": "RONCHEROLLES EN BRAY", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76535"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5fac23ff64e47eb94fad1077f9d9c0445100d9", "fields": {"nom_de_la_commune": "RONCHEROLLES SUR LE VIVIER", "libell_d_acheminement": "RONCHEROLLES SUR LE VIVIER", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76536"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9da80458a8af1468f17b2b47696e5da8b8da581a", "fields": {"nom_de_la_commune": "RONCHOIS", "libell_d_acheminement": "RONCHOIS", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76537"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a440bdfcd1bf427a0db11dfea785b690c1a127", "fields": {"nom_de_la_commune": "ROUEN", "libell_d_acheminement": "ROUEN", "code_postal": "76000", "coordonnees_gps": [49.4414760352, 1.09318612833], "code_commune_insee": "76540"}, "geometry": {"type": "Point", "coordinates": [1.09318612833, 49.4414760352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28fb0e1b26c9bd0a27a25288360ecfe812e4a2a6", "fields": {"nom_de_la_commune": "ROUXMESNIL BOUTEILLES", "libell_d_acheminement": "ROUXMESNIL BOUTEILLES", "code_postal": "76370", "coordonnees_gps": [49.9195191713, 1.14251674665], "code_commune_insee": "76545"}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1746fe82fca22a961dc379a13bace776f6867f88", "fields": {"nom_de_la_commune": "SAANE ST JUST", "libell_d_acheminement": "SAANE ST JUST", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76549"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "690fea7ee6933733cfee73e5b176d3b6515745c2", "fields": {"nom_de_la_commune": "STE AGATHE D ALIERMONT", "libell_d_acheminement": "STE AGATHE D ALIERMONT", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76553"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d46e632dec135fb26c524cf31a0f7891cb6eeb", "fields": {"nom_de_la_commune": "ST AUBIN ROUTOT", "libell_d_acheminement": "ST AUBIN ROUTOT", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76563"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a044b09183115534763143d0979d2c88863d1830", "fields": {"nom_de_la_commune": "ST DENIS SUR SCIE", "libell_d_acheminement": "ST DENIS SUR SCIE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76574"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "426b498ac8585c44707e0b9782d38dc530f16c90", "fields": {"nom_de_la_commune": "STE FOY", "libell_d_acheminement": "STE FOY", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76577"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23793788648e313765d6cad515ea6bdd7ec6d102", "fields": {"nom_de_la_commune": "ST GERMAIN SUR EAULNE", "libell_d_acheminement": "ST GERMAIN SUR EAULNE", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76584"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1817ff6b945277e8ae7ad459106b91d0560bafe1", "fields": {"nom_de_la_commune": "ST HONORE", "libell_d_acheminement": "ST HONORE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76589"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a77f27c65fb779526af9bb623e7547ba66a5c8", "fields": {"nom_de_la_commune": "ST JEAN DE FOLLEVILLE", "libell_d_acheminement": "ST JEAN DE FOLLEVILLE", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76592"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84258441e06c8ca6b422176a67687ba4a56bc89d", "fields": {"nom_de_la_commune": "ST LAURENT EN CAUX", "libell_d_acheminement": "ST LAURENT EN CAUX", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76597"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "defc9c37ea18cd6b239eb387d3257eb3b71e11ab", "fields": {"nom_de_la_commune": "ST LEGER AUX BOIS", "libell_d_acheminement": "ST LEGER AUX BOIS", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76598"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c05a235e3b175b67087329c95cc717655974e138", "fields": {"nom_de_la_commune": "STE MARIE AU BOSC", "libell_d_acheminement": "STE MARIE AU BOSC", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76609"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19072c187f99cbe3f6ebd48715b3516751537bb6", "fields": {"nom_de_la_commune": "STE MARIE DES CHAMPS", "libell_d_acheminement": "STE MARIE DES CHAMPS", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76610"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47c7454b6b776d73e48d8c5a9160590373fc0382", "fields": {"nom_de_la_commune": "ST MARTIN DE BOSCHERVILLE", "libell_d_acheminement": "ST MARTIN DE BOSCHERVILLE", "code_postal": "76840", "coordonnees_gps": [49.4447486828, 0.958671899236], "code_commune_insee": "76614"}, "geometry": {"type": "Point", "coordinates": [0.958671899236, 49.4447486828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b70e52b8d6766d2e4f2adaef4e731aaeec665ea4", "fields": {"nom_de_la_commune": "ST MARTIN DU BEC", "libell_d_acheminement": "ST MARTIN DU BEC", "code_postal": "76133", "coordonnees_gps": [49.5770580523, 0.228035021727], "code_commune_insee": "76615"}, "geometry": {"type": "Point", "coordinates": [0.228035021727, 49.5770580523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb167edaf3024cbafe7e61babf189e7590909fe4", "fields": {"code_postal": "76370", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "BRACQUEMONT", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9195191713, 1.14251674665]}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6484e0e720cf37b03488692fa4b3b88aa74cf6ff", "fields": {"code_postal": "76370", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "DERCHIGNY", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9195191713, 1.14251674665]}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efedbda390897357a4c19ab0443b43692a410b32", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "ASSIGNY", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a4c50e90ccb17344068912c2ee27f156b097b0", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "BIVILLE SUR MER", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "238bd392d1775ec58a769e2979450c2ad9f78d6f", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "TOURVILLE LA CHAPELLE", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd29c2bcb9754b9400f7c0ddb457d2a47aef62e1", "fields": {"code_postal": "76910", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "TOCQUEVILLE SUR EU", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [50.002581149, 1.30116674877]}, "geometry": {"type": "Point", "coordinates": [1.30116674877, 50.002581149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b07325f7f5f0ed96c1f7a7c182bd914b43f0e9a9", "fields": {"nom_de_la_commune": "ST OUEN DU BREUIL", "libell_d_acheminement": "ST OUEN DU BREUIL", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76628"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f25b2097a5827923776d833f5537a282fdb7a81", "fields": {"nom_de_la_commune": "ST PIERRE LE VIGER", "libell_d_acheminement": "ST PIERRE LE VIGER", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76642"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7896dd48248ceff363d003d9ca796be5ab1ed360", "fields": {"nom_de_la_commune": "ST SAIRE", "libell_d_acheminement": "ST SAIRE", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76649"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "964cc563b5aa986572c36916e188766f6b089cac", "fields": {"nom_de_la_commune": "ST SAUVEUR D EMALLEVILLE", "libell_d_acheminement": "ST SAUVEUR D EMALLEVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76650"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4be02b6935c8bd47037d2cf061d90d217b182796", "fields": {"nom_de_la_commune": "ST VINCENT CRAMESNIL", "libell_d_acheminement": "ST VINCENT CRAMESNIL", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76658"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "044cb859239c7cf845fa62085077456bb2729569", "fields": {"nom_de_la_commune": "SASSETOT LE MALGARDE", "libell_d_acheminement": "SASSETOT LE MALGARDE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76662"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656d56acd849e0187c005a2f4dbe381abbeff99f", "fields": {"nom_de_la_commune": "SAUCHAY", "libell_d_acheminement": "SAUCHAY", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76665"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb650426b9d72b2f8b5d5f6816161040bb0eb474", "fields": {"nom_de_la_commune": "SAUMONT LA POTERIE", "libell_d_acheminement": "SAUMONT LA POTERIE", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76666"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0bd636cf5bc57a51a4e3475090212ed78ef26af", "fields": {"nom_de_la_commune": "SENNEVILLE SUR FECAMP", "libell_d_acheminement": "SENNEVILLE SUR FECAMP", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76670"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936afd30742bac4a7a08ab7de4f1e1ab07eb6544", "fields": {"nom_de_la_commune": "SORQUAINVILLE", "libell_d_acheminement": "SORQUAINVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76680"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f40cafdbcd13e096b9752c7918dec6285a1624a", "fields": {"nom_de_la_commune": "THIERGEVILLE", "libell_d_acheminement": "THIERGEVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76688"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8746ce6a9cef63a8c9ea51301d115aa2eec04040", "fields": {"nom_de_la_commune": "THIOUVILLE", "libell_d_acheminement": "THIOUVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76692"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5bab19e3d50f7b6f4c2bc4ac613760c83547161", "fields": {"nom_de_la_commune": "LE TILLEUL", "libell_d_acheminement": "LE TILLEUL", "code_postal": "76790", "coordonnees_gps": [49.697742168, 0.254535671829], "code_commune_insee": "76693"}, "geometry": {"type": "Point", "coordinates": [0.254535671829, 49.697742168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7920bae39adc0f76de267e1eb9d57723b4f58ce3", "fields": {"nom_de_la_commune": "TOCQUEVILLE LES MURS", "libell_d_acheminement": "TOCQUEVILLE LES MURS", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76695"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469c5c4dddd0eade825a6e26bbdbfe4ef5a4c4dd", "fields": {"nom_de_la_commune": "TOURVILLE LA RIVIERE", "libell_d_acheminement": "TOURVILLE LA RIVIERE", "code_postal": "76410", "coordonnees_gps": [49.3161439073, 1.06648311512], "code_commune_insee": "76705"}, "geometry": {"type": "Point", "coordinates": [1.06648311512, 49.3161439073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc65b035a80a7615279ec89994c939a2f2b6cb3", "fields": {"nom_de_la_commune": "TOUSSAINT", "libell_d_acheminement": "TOUSSAINT", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76708"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da5c26fe9115aafcae46353819d2aa6ded62252", "fields": {"nom_de_la_commune": "VALMONT", "libell_d_acheminement": "VALMONT", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76719"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f3cf847a1207a16f92228afbe2c047df7ccd6f", "fields": {"nom_de_la_commune": "VATTETOT SOUS BEAUMONT", "libell_d_acheminement": "VATTETOT SOUS BEAUMONT", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76725"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64049975f310abb2d3365b04316aa0cf6632d1a4", "fields": {"nom_de_la_commune": "VENESTANVILLE", "libell_d_acheminement": "VENESTANVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76731"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3538bc3655c5d95cfa60d9c6e4007cf14ba7585", "fields": {"nom_de_la_commune": "BUTOT VENESVILLE", "libell_d_acheminement": "BUTOT VENESVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76732"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad7ea6563a395aa607e69d6c9a58973c4217d72", "fields": {"nom_de_la_commune": "VEULETTES SUR MER", "libell_d_acheminement": "VEULETTES SUR MER", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76736"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aee13532d1650276268edaccb85cc3554ebf178", "fields": {"nom_de_la_commune": "VIEUX MANOIR", "libell_d_acheminement": "VIEUX MANOIR", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76738"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603fccbcec1a44c5b84cee94c772cedcd37637c7", "fields": {"nom_de_la_commune": "VITTEFLEUR", "libell_d_acheminement": "VITTEFLEUR", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76748"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14dd928cb27fe77b06b7bf172795ccc4ce7e5555", "fields": {"nom_de_la_commune": "CHERISEY", "libell_d_acheminement": "CHERISEY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57139"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f16403793deb9a5420dfb788d6a7d62acaec4a", "fields": {"nom_de_la_commune": "CHESNY", "libell_d_acheminement": "CHESNY", "code_postal": "57245", "coordonnees_gps": [49.059836675, 6.25443635669], "code_commune_insee": "57140"}, "geometry": {"type": "Point", "coordinates": [6.25443635669, 49.059836675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3eeb38fec78e73f95cd9f3b65ecdcd38dd811b", "fields": {"nom_de_la_commune": "CHICOURT", "libell_d_acheminement": "CHICOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57141"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a87776792750a311ca5c519a006525e0344876b5", "fields": {"nom_de_la_commune": "CORNY SUR MOSELLE", "libell_d_acheminement": "CORNY SUR MOSELLE", "code_postal": "57680", "coordonnees_gps": [49.0358691515, 6.02886300131], "code_commune_insee": "57153"}, "geometry": {"type": "Point", "coordinates": [6.02886300131, 49.0358691515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343508ea8f4167de89e719aeeb6c2762f0669297", "fields": {"nom_de_la_commune": "COURCELLES CHAUSSY", "libell_d_acheminement": "COURCELLES CHAUSSY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57155"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "813be9e0d8adda1a663ccf9ccb717463be38ce80", "fields": {"nom_de_la_commune": "CRAINCOURT", "libell_d_acheminement": "CRAINCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57158"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b786e29cfec93a70992ef514972cb6b1336000e4", "fields": {"nom_de_la_commune": "CUVRY", "libell_d_acheminement": "CUVRY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57162"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21b6a4e19cd1a79f6ceb959c03a56628737c4c7c", "fields": {"code_postal": "57850", "code_commune_insee": "57163", "libell_d_acheminement": "DABO", "ligne_5": "SCHAEFERHOF", "nom_de_la_commune": "DABO", "coordonnees_gps": [48.6473916816, 7.23779474872]}, "geometry": {"type": "Point", "coordinates": [7.23779474872, 48.6473916816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "781f86635a6981d2dcefd8ce3214e88c25923095", "fields": {"nom_de_la_commune": "DALEM", "libell_d_acheminement": "DALEM", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57165"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676f7a8ce5b8396bf6a1d1aa70be1fd661f3c0bb", "fields": {"nom_de_la_commune": "DELME", "libell_d_acheminement": "DELME", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57171"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9afe5523955e14ab2300a23983b3be152e21eb69", "fields": {"nom_de_la_commune": "DENTING", "libell_d_acheminement": "DENTING", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57172"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27260d6258d7c633094410214a5a3e9636514e39", "fields": {"nom_de_la_commune": "DIEUZE", "libell_d_acheminement": "DIEUZE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57177"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "004943a8ab2a5b1d5f526c7a803264ed8ba859cb", "fields": {"nom_de_la_commune": "EGUELSHARDT", "libell_d_acheminement": "EGUELSHARDT", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57188"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e788058307e87721dba217bd6288382c2ca29fc5", "fields": {"nom_de_la_commune": "ELZANGE", "libell_d_acheminement": "ELZANGE", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57191"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df78578991a2d160adc1a8bcc09d9f7556132cef", "fields": {"nom_de_la_commune": "ESCHERANGE", "libell_d_acheminement": "ESCHERANGE", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57199"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "723b642c36cd0486ede4930997207f95b836a109", "fields": {"nom_de_la_commune": "FOLKLING", "libell_d_acheminement": "FOLKLING", "code_postal": "57600", "coordonnees_gps": [49.1737473048, 6.89495701943], "code_commune_insee": "57222"}, "geometry": {"type": "Point", "coordinates": [6.89495701943, 49.1737473048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b107afb6ae9de0a9af8c9904bf3f32905dc7cd6b", "fields": {"nom_de_la_commune": "FONTENY", "libell_d_acheminement": "FONTENY", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57225"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "638dfc5a7a2966a1a0ce83c17b8f006faefe4919", "fields": {"code_postal": "57600", "code_commune_insee": "57227", "libell_d_acheminement": "FORBACH", "ligne_5": "KREUTZBERG", "nom_de_la_commune": "FORBACH", "coordonnees_gps": [49.1737473048, 6.89495701943]}, "geometry": {"type": "Point", "coordinates": [6.89495701943, 49.1737473048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25c0fa1196a40439374d5ad88467213cc840026", "fields": {"nom_de_la_commune": "FRANCALTROFF", "libell_d_acheminement": "FRANCALTROFF", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57232"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35136fe42e2889c38fd306c4c1fd13d3cd42c3a1", "fields": {"nom_de_la_commune": "FREMERY", "libell_d_acheminement": "FREMERY", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57236"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b6d8d9fab92d8a2b8040f60a94bf97ef5860809", "fields": {"nom_de_la_commune": "GAVISSE", "libell_d_acheminement": "GAVISSE", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57245"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6dc427d0ed0f292b81ccdaff169475c33bd4103", "fields": {"nom_de_la_commune": "GROS REDERCHING", "libell_d_acheminement": "GROS REDERCHING", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57261"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7092fc4af0c9628cc4dbd7fe3b5636a29ab2c13a", "fields": {"nom_de_la_commune": "GUEBESTROFF", "libell_d_acheminement": "GUEBESTROFF", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57265"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "371523a430a6d4dbacb3a1951fc6b28212bbb02f", "fields": {"nom_de_la_commune": "GUEBLANGE LES DIEUZE", "libell_d_acheminement": "GUEBLANGE LES DIEUZE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57266"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d048eb2ed989541f2dc7e0009d39cf93d47eebc5", "fields": {"nom_de_la_commune": "GUENANGE", "libell_d_acheminement": "GUENANGE", "code_postal": "57310", "coordonnees_gps": [49.2880823973, 6.21031753305], "code_commune_insee": "57269"}, "geometry": {"type": "Point", "coordinates": [6.21031753305, 49.2880823973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a505430a1c54b011783c9475cca3c9272ffd54", "fields": {"nom_de_la_commune": "GUERSTLING", "libell_d_acheminement": "GUERSTLING", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57273"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2aa4bc822f64bc1c5aa519e101faaebae016eb", "fields": {"nom_de_la_commune": "GUINZELING", "libell_d_acheminement": "GUINZELING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57278"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f35f19944da0f31febe6eab182557006271220b", "fields": {"nom_de_la_commune": "HALLERING", "libell_d_acheminement": "HALLERING", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57284"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21e22b0079b8038d2fcd114dc313e03fd337d30b", "fields": {"nom_de_la_commune": "HAMBACH", "libell_d_acheminement": "HAMBACH", "code_postal": "57910", "coordonnees_gps": [49.0604348767, 7.04678570853], "code_commune_insee": "57289"}, "geometry": {"type": "Point", "coordinates": [7.04678570853, 49.0604348767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd9682dac276bbb399d53af09b2ccccc0952aa8", "fields": {"nom_de_la_commune": "HARGARTEN AUX MINES", "libell_d_acheminement": "HARGARTEN AUX MINES", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57296"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0cd101ea4374852c7ec614eb717735cde510729", "fields": {"nom_de_la_commune": "HARPRICH", "libell_d_acheminement": "HARPRICH", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57297"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69a357ea9b812b38978ae951381cc6e3ecec7278", "fields": {"nom_de_la_commune": "HATTIGNY", "libell_d_acheminement": "HATTIGNY", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57302"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa27493e8697130be6481c8fa77201a09f4e777", "fields": {"nom_de_la_commune": "HAYES", "libell_d_acheminement": "HAYES", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57307"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47791c5daeacee164d6a926470764f70c59c2095", "fields": {"nom_de_la_commune": "HERANGE", "libell_d_acheminement": "HERANGE", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57317"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "851b6cb14391b0967ad36d541ed2466663d15bd5", "fields": {"nom_de_la_commune": "HOLACOURT", "libell_d_acheminement": "HOLACOURT", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57328"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56074ec05d207aa1ff7bef90ab478d493e24198f", "fields": {"nom_de_la_commune": "HUNDLING", "libell_d_acheminement": "HUNDLING", "code_postal": "57990", "coordonnees_gps": [49.1133507394, 6.98404572012], "code_commune_insee": "57340"}, "geometry": {"type": "Point", "coordinates": [6.98404572012, 49.1133507394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d106ace29da4a5e0e88fab4e30d3c9ac276b2504", "fields": {"nom_de_la_commune": "JALLAUCOURT", "libell_d_acheminement": "JALLAUCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57349"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c5d988b85dc59e7bf316ec74a1aae0309b01401", "fields": {"nom_de_la_commune": "JURY", "libell_d_acheminement": "JURY", "code_postal": "57245", "coordonnees_gps": [49.059836675, 6.25443635669], "code_commune_insee": "57351"}, "geometry": {"type": "Point", "coordinates": [6.25443635669, 49.059836675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206648b6a0daee25cea0b5eac303894ed544d954", "fields": {"nom_de_la_commune": "KALHAUSEN", "libell_d_acheminement": "KALHAUSEN", "code_postal": "57412", "coordonnees_gps": [49.0305210047, 7.16958668406], "code_commune_insee": "57355"}, "geometry": {"type": "Point", "coordinates": [7.16958668406, 49.0305210047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c13c8e80e3cfaa5538fd0e66b3233cfa236193b", "fields": {"nom_de_la_commune": "KAPPELKINGER", "libell_d_acheminement": "KAPPELKINGER", "code_postal": "57430", "coordonnees_gps": [48.9890917181, 6.98173780701], "code_commune_insee": "57357"}, "geometry": {"type": "Point", "coordinates": [6.98173780701, 48.9890917181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360f48a862c815519557395347d28b752a7e42cc", "fields": {"nom_de_la_commune": "KEDANGE SUR CANNER", "libell_d_acheminement": "KEDANGE SUR CANNER", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57358"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e8fdf012370de269150f83eaebddbf37ce93031", "fields": {"nom_de_la_commune": "KERBACH", "libell_d_acheminement": "KERBACH", "code_postal": "57460", "coordonnees_gps": [49.1628216573, 6.95392357742], "code_commune_insee": "57360"}, "geometry": {"type": "Point", "coordinates": [6.95392357742, 49.1628216573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79f46932ed92e668eedd5f8de4f2b54908ec6782", "fields": {"nom_de_la_commune": "KIRSCHNAUMEN", "libell_d_acheminement": "KIRSCHNAUMEN", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57365"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb1bcd91f3ba7f24eb17ac92a00c84dd38136040", "fields": {"nom_de_la_commune": "LAMBACH", "libell_d_acheminement": "LAMBACH", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57376"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f614565e73bca27fb60f9d75f9e376f35c2aadb", "fields": {"nom_de_la_commune": "LANDROFF", "libell_d_acheminement": "LANDROFF", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57379"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39e4d95abbee48070907bf109b613a89ff5c067", "fields": {"nom_de_la_commune": "LANING", "libell_d_acheminement": "LANING", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57384"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9abc9e55a2bdf0e9b284f0bad2ebfd8f5a18575a", "fields": {"nom_de_la_commune": "LAQUENEXY", "libell_d_acheminement": "LAQUENEXY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57385"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c3ce83399f7f97da36f743809299a6ca0d1d4b", "fields": {"nom_de_la_commune": "LEMBERG", "libell_d_acheminement": "LEMBERG", "code_postal": "57620", "coordonnees_gps": [48.9917951549, 7.41577190853], "code_commune_insee": "57390"}, "geometry": {"type": "Point", "coordinates": [7.41577190853, 48.9917951549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "890b372296cbea293b4328643023d06b643968d6", "fields": {"nom_de_la_commune": "LEMUD", "libell_d_acheminement": "LEMUD", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57392"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7818443c104cbb636c0badd41d2e3c6d9a0ed740", "fields": {"nom_de_la_commune": "LENGELSHEIM", "libell_d_acheminement": "LENGELSHEIM", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57393"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c13e453219e6273a7b13b0f4ae4c4b1e8eb93fa", "fields": {"nom_de_la_commune": "LEZEY", "libell_d_acheminement": "LEZEY", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57399"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30dbfa9ae1f0b0ecb36be17f0dd1f8517b693b89", "fields": {"nom_de_la_commune": "LINDRE BASSE", "libell_d_acheminement": "LINDRE BASSE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57404"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c91e74eb3eb70f1feb4b4c1fbf2c40454a6671d", "fields": {"nom_de_la_commune": "LINDRE HAUTE", "libell_d_acheminement": "LINDRE HAUTE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57405"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3aeaf8e46476306668f05e67c06072228bbbf4a", "fields": {"nom_de_la_commune": "LHOR", "libell_d_acheminement": "LHOR", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57410"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ddfcad030dfd86d20532eadd6c998c741269eee", "fields": {"nom_de_la_commune": "LONGEVILLE LES METZ", "libell_d_acheminement": "LONGEVILLE LES METZ", "code_postal": "57050", "coordonnees_gps": [49.1138494739, 6.17894504375], "code_commune_insee": "57412"}, "geometry": {"type": "Point", "coordinates": [6.17894504375, 49.1138494739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a428283b9dc820be80d0744b53b3cbb4eabf640f", "fields": {"nom_de_la_commune": "LORQUIN", "libell_d_acheminement": "LORQUIN", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57414"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b135c5be2ed570ea91c4af20357c9fe7eb70a759", "fields": {"nom_de_la_commune": "LOUDREFING", "libell_d_acheminement": "LOUDREFING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57418"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aef02e255a75feb048aa1219939e473668c00f0", "fields": {"nom_de_la_commune": "LOUTZVILLER", "libell_d_acheminement": "LOUTZVILLER", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57421"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3a87c33dd9dcdeb0b562b0f224aecb626d9aa3", "fields": {"nom_de_la_commune": "LUBECOURT", "libell_d_acheminement": "LUBECOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57423"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527ee1a8ce63176c2e682ffbd61aab14ed8b0ea6", "fields": {"nom_de_la_commune": "LUCY", "libell_d_acheminement": "LUCY", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57424"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d385db77bcacabf64a203b626bca46cca17d07c6", "fields": {"nom_de_la_commune": "MACHEREN", "libell_d_acheminement": "MACHEREN", "code_postal": "57730", "coordonnees_gps": [49.0823148993, 6.73315918141], "code_commune_insee": "57428"}, "geometry": {"type": "Point", "coordinates": [6.73315918141, 49.0823148993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73acfface454ae59dc24a0abd92c5c11ece6ec95", "fields": {"nom_de_la_commune": "MAIZIERES LES METZ", "libell_d_acheminement": "MAIZIERES LES METZ", "code_postal": "57280", "coordonnees_gps": [49.2043430358, 6.15329881164], "code_commune_insee": "57433"}, "geometry": {"type": "Point", "coordinates": [6.15329881164, 49.2043430358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19bf5b8c55f7a0903fd79bfd1a3d09fecf96c7b8", "fields": {"nom_de_la_commune": "MALLING", "libell_d_acheminement": "MALLING", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57437"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17e54aaa240a3149cf14fb14223fd18a6a98df85", "fields": {"nom_de_la_commune": "MALROY", "libell_d_acheminement": "MALROY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57438"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5612948968e4f5f44873c6cec5e2f2fd0b4f2681", "fields": {"nom_de_la_commune": "MENSKIRCH", "libell_d_acheminement": "MENSKIRCH", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57457"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec118db02c4f0e769c1dc59aa6edf082cc9d3663", "fields": {"nom_de_la_commune": "MERTEN", "libell_d_acheminement": "MERTEN", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57460"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2c80e983e5518f24b2c28833af433c2c5b208a", "fields": {"nom_de_la_commune": "METZ", "libell_d_acheminement": "METZ", "code_postal": "57000", "coordonnees_gps": [49.1080992241, 6.19573945551], "code_commune_insee": "57463"}, "geometry": {"type": "Point", "coordinates": [6.19573945551, 49.1080992241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fdff2866aa3bc0043fbf11ffb06b3f129c8793a", "fields": {"nom_de_la_commune": "METZERVISSE", "libell_d_acheminement": "METZERVISSE", "code_postal": "57940", "coordonnees_gps": [49.3080727824, 6.26745665011], "code_commune_insee": "57465"}, "geometry": {"type": "Point", "coordinates": [6.26745665011, 49.3080727824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7bc299ad9928006a6f2342d58988b5a291bf9e4", "fields": {"nom_de_la_commune": "MOMERSTROFF", "libell_d_acheminement": "MOMERSTROFF", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57471"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a1de3d9fd4a0663670564b2b6b964d1de79716", "fields": {"nom_de_la_commune": "MONDELANGE", "libell_d_acheminement": "MONDELANGE", "code_postal": "57300", "coordonnees_gps": [49.2517615961, 6.19936397452], "code_commune_insee": "57474"}, "geometry": {"type": "Point", "coordinates": [6.19936397452, 49.2517615961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9fb2467152b0dac81a3b77612bb2189730c9698", "fields": {"nom_de_la_commune": "MONDORFF", "libell_d_acheminement": "MONDORFF", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57475"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb61ecaeb05704790221c6dd47ef28280d7629d", "fields": {"nom_de_la_commune": "MONTDIDIER", "libell_d_acheminement": "MONTDIDIER", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57478"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be54037187079aac5a0e365381dc5d4b35a76e56", "fields": {"nom_de_la_commune": "MONTENACH", "libell_d_acheminement": "MONTENACH", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57479"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52eb54ffbed97bacf93512a3f7b6b3e305c0c4cf", "fields": {"nom_de_la_commune": "MORHANGE", "libell_d_acheminement": "MORHANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57483"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efba803ec16bab92bced8c2baa361c4a202c6005", "fields": {"nom_de_la_commune": "MORVILLE LES VIC", "libell_d_acheminement": "MORVILLE LES VIC", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57485"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3144a7df4c0e977372289d54169328d21544f4b", "fields": {"code_postal": "57160", "code_commune_insee": "57487", "libell_d_acheminement": "MOULINS LES METZ", "ligne_5": "MOULINS ST PIERRE", "nom_de_la_commune": "MOULINS LES METZ", "coordonnees_gps": [49.1183395813, 6.08364219773]}, "geometry": {"type": "Point", "coordinates": [6.08364219773, 49.1183395813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805be3e563ed306bd41a29df5d7bc9fc99bf4941", "fields": {"nom_de_la_commune": "MOYENVIC", "libell_d_acheminement": "MOYENVIC", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57490"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b2b18d22a8c48d34ea9c3e5768695b693ac0e37", "fields": {"nom_de_la_commune": "NARBEFONTAINE", "libell_d_acheminement": "NARBEFONTAINE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57495"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73027eecf557ad2b174ca832d38c51e8ab06155b", "fields": {"nom_de_la_commune": "NEUFGRANGE", "libell_d_acheminement": "NEUFGRANGE", "code_postal": "57910", "coordonnees_gps": [49.0604348767, 7.04678570853], "code_commune_insee": "57499"}, "geometry": {"type": "Point", "coordinates": [7.04678570853, 49.0604348767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac92d3217c52a0674a491e230f7dc71b4602b7c", "fields": {"nom_de_la_commune": "NORROY LE VENEUR", "libell_d_acheminement": "NORROY LE VENEUR", "code_postal": "57140", "coordonnees_gps": [49.1663107654, 6.13682025903], "code_commune_insee": "57511"}, "geometry": {"type": "Point", "coordinates": [6.13682025903, 49.1663107654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50fb45dc5744e034edbfccfde54fd46a3b362c85", "fields": {"nom_de_la_commune": "NOUSSEVILLER LES BITCHE", "libell_d_acheminement": "NOUSSEVILLER LES BITCHE", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57513"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5603e45952a41ef3628d4902a0c2f5961ae79795", "fields": {"nom_de_la_commune": "OBERDORFF", "libell_d_acheminement": "OBERDORFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57516"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d9d008fbeef8c1a1ca5e92a47f4a1e76f53177", "fields": {"nom_de_la_commune": "OBERGAILBACH", "libell_d_acheminement": "OBERGAILBACH", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57517"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cae9a51ae82d30c8719d76301bb6de5f13d8a4a9", "fields": {"nom_de_la_commune": "OBERSTINZEL", "libell_d_acheminement": "OBERSTINZEL", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57518"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aacb848cc1d237727c2398de5c036064e6a3e99", "fields": {"nom_de_la_commune": "OETING", "libell_d_acheminement": "OETING", "code_postal": "57600", "coordonnees_gps": [49.1737473048, 6.89495701943], "code_commune_insee": "57521"}, "geometry": {"type": "Point", "coordinates": [6.89495701943, 49.1737473048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d8d46379737b9ebb702b69bfb09a0cbfe2d0d69", "fields": {"nom_de_la_commune": "ORMERSVILLER", "libell_d_acheminement": "ORMERSVILLER", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57526"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "100678790e678e37f8991827ebc3fb8e10f6aab7", "fields": {"nom_de_la_commune": "OTTANGE", "libell_d_acheminement": "OTTANGE", "code_postal": "57840", "coordonnees_gps": [49.4301490662, 6.01185144376], "code_commune_insee": "57529"}, "geometry": {"type": "Point", "coordinates": [6.01185144376, 49.4301490662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0564d18c445c9237c90b34116ca035daa5c4d686", "fields": {"nom_de_la_commune": "OTTONVILLE", "libell_d_acheminement": "OTTONVILLE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57530"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c984c6f323613865f6dc451a8db7223f0ea153c", "fields": {"nom_de_la_commune": "PETIT REDERCHING", "libell_d_acheminement": "PETIT REDERCHING", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57535"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ebe794833147e910e060e147cb773588df84f55", "fields": {"nom_de_la_commune": "PEVANGE", "libell_d_acheminement": "PEVANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57539"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb7d09c1f28f10afbbc09783554377c989942df", "fields": {"nom_de_la_commune": "PIBLANGE", "libell_d_acheminement": "PIBLANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57542"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1556ea4edf233db6c9c34a84ec881ff5c88cdf3f", "fields": {"nom_de_la_commune": "PORCELETTE", "libell_d_acheminement": "PORCELETTE", "code_postal": "57890", "coordonnees_gps": [49.1645840246, 6.6727973003], "code_commune_insee": "57550"}, "geometry": {"type": "Point", "coordinates": [6.6727973003, 49.1645840246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6143dfaa2785d63fdfce26efea812f5f3a268c87", "fields": {"nom_de_la_commune": "POURNOY LA CHETIVE", "libell_d_acheminement": "POURNOY LA CHETIVE", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57553"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e8ec336245545edba1eb0888c02103359cab0d4", "fields": {"nom_de_la_commune": "PUTTELANGE AUX LACS", "libell_d_acheminement": "PUTTELANGE AUX LACS", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57556"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "069f1ccbd7300720edbc5793ea87cf8cdab648ab", "fields": {"nom_de_la_commune": "RECHICOURT LE CHATEAU", "libell_d_acheminement": "RECHICOURT LE CHATEAU", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57564"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fae1a458f486f6b1c1521b454b9bf0760b50d4a3", "fields": {"nom_de_la_commune": "REDING", "libell_d_acheminement": "REDING", "code_postal": "57445", "coordonnees_gps": [48.7493754059, 7.10464333939], "code_commune_insee": "57566"}, "geometry": {"type": "Point", "coordinates": [7.10464333939, 48.7493754059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62610c7ef7cff7bd4f59f69e9c414d06e7cfa817", "fields": {"nom_de_la_commune": "REMELFANG", "libell_d_acheminement": "REMELFANG", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57567"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096349c2a3308e1be122cdddec3ca45c258b250a", "fields": {"nom_de_la_commune": "RHODES", "libell_d_acheminement": "RHODES", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57579"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a582a05f9068c02238c2f3bbf1e8200d5e4f4c8", "fields": {"nom_de_la_commune": "RICHE", "libell_d_acheminement": "RICHE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57580"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4cfbb5ecc0d61bd91ef83aaa4c18f10c9d74320", "fields": {"nom_de_la_commune": "RICHELING", "libell_d_acheminement": "RICHELING", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57581"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71ff5df540343b3af0ef52bf655a599d4dbc0d74", "fields": {"nom_de_la_commune": "BARISEY LA COTE", "libell_d_acheminement": "BARISEY LA COTE", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54047"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab66412f9bc93226779d9bb80503876d20154cb", "fields": {"code_postal": "54150", "code_commune_insee": "54048", "libell_d_acheminement": "LES BAROCHES", "ligne_5": "GENAVILLE", "nom_de_la_commune": "LES BAROCHES", "coordonnees_gps": [49.264324437, 5.89404491023]}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e85e8170cd19578179286b71c8e2a0157f0f7e0", "fields": {"nom_de_la_commune": "BATTIGNY", "libell_d_acheminement": "BATTIGNY", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54052"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02371d539a84793affd1d1127546ccb6e53c635", "fields": {"nom_de_la_commune": "BELLEAU", "libell_d_acheminement": "BELLEAU", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54059"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab1430b11a9886fbf26139bedb658a18b1699d3", "fields": {"code_postal": "54610", "code_commune_insee": "54059", "libell_d_acheminement": "BELLEAU", "ligne_5": "MANONCOURT SUR SEILLE", "nom_de_la_commune": "BELLEAU", "coordonnees_gps": [48.8814736429, 6.22677651571]}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b423358f2509a09f83c4db880a3525933878b1ae", "fields": {"nom_de_la_commune": "BENNEY", "libell_d_acheminement": "BENNEY", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54062"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e30763532dd2e57cdfb608b8359556baaabe713", "fields": {"nom_de_la_commune": "BETTAINVILLERS", "libell_d_acheminement": "BETTAINVILLERS", "code_postal": "54640", "coordonnees_gps": [49.3041198945, 5.8990385658], "code_commune_insee": "54066"}, "geometry": {"type": "Point", "coordinates": [5.8990385658, 49.3041198945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2046126798677e1b5f101832b6baa45b3c29d69", "fields": {"nom_de_la_commune": "BOISMONT", "libell_d_acheminement": "BOISMONT", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54081"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7230f8d6a0f7fa33a9e157d2973698ee5ced4044", "fields": {"nom_de_la_commune": "BORVILLE", "libell_d_acheminement": "BORVILLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54085"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e34d740590c63c5dd6d8feaee39452581003d07", "fields": {"nom_de_la_commune": "BOUXIERES AUX CHENES", "libell_d_acheminement": "BOUXIERES AUX CHENES", "code_postal": "54770", "coordonnees_gps": [48.7569187312, 6.27788013157], "code_commune_insee": "54089"}, "geometry": {"type": "Point", "coordinates": [6.27788013157, 48.7569187312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b2f02c120fdc7c82e2d0edc074a5d2acdf8cdb", "fields": {"nom_de_la_commune": "BOUZANVILLE", "libell_d_acheminement": "BOUZANVILLE", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54092"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36bff50f33af91e90e7a2d118a7e0bd0ef284d6a", "fields": {"nom_de_la_commune": "BREHAIN LA VILLE", "libell_d_acheminement": "BREHAIN LA VILLE", "code_postal": "54190", "coordonnees_gps": [49.4525960193, 5.89523270383], "code_commune_insee": "54096"}, "geometry": {"type": "Point", "coordinates": [5.89523270383, 49.4525960193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "219ddc8f112d3def2384f0f6676b9340a50ab20a", "fields": {"nom_de_la_commune": "BRULEY", "libell_d_acheminement": "BRULEY", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54102"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48a1583507cc282d008623156c5a63b598f07dc", "fields": {"nom_de_la_commune": "BULLIGNY", "libell_d_acheminement": "BULLIGNY", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54105"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1ba005a33d98a41ea538dfb285ca0ef4f16bfd", "fields": {"nom_de_la_commune": "CHARMOIS", "libell_d_acheminement": "CHARMOIS", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54121"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00682993f07c45c166d5595274f574c6ac84fba6", "fields": {"nom_de_la_commune": "CHAZELLES SUR ALBE", "libell_d_acheminement": "CHAZELLES SUR ALBE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54124"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f4e809e2b0313f501d859adf4ecdec014a14b1", "fields": {"code_postal": "54200", "code_commune_insee": "54128", "libell_d_acheminement": "CHOLOY MENILLOT", "ligne_5": "MENILLOT", "nom_de_la_commune": "CHOLOY MENILLOT", "coordonnees_gps": [48.7137861444, 5.87312333064]}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63ab93a5417acc4a81fcfc8eafe49bfe711e2a9", "fields": {"nom_de_la_commune": "CLEREY SUR BRENON", "libell_d_acheminement": "CLEREY SUR BRENON", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54132"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f317914d3cddd16807209ed46aeef702f088c9b", "fields": {"nom_de_la_commune": "COURBESSEAUX", "libell_d_acheminement": "COURBESSEAUX", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54139"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5af4a50c3ef0bdc638b9b2251c4ea6d2c7283c47", "fields": {"nom_de_la_commune": "CUSTINES", "libell_d_acheminement": "CUSTINES", "code_postal": "54670", "coordonnees_gps": [48.7978385403, 6.14814767129], "code_commune_insee": "54150"}, "geometry": {"type": "Point", "coordinates": [6.14814767129, 48.7978385403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65ea9defef824c3c20ec93a78c6c14e8e3735ccd", "fields": {"nom_de_la_commune": "DIARVILLE", "libell_d_acheminement": "DIARVILLE", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54156"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2652ada518ebd91a2e9a6622fd5f3be610b96792", "fields": {"nom_de_la_commune": "DOMBASLE SUR MEURTHE", "libell_d_acheminement": "DOMBASLE SUR MEURTHE", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54159"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f73a4fdd65517f6cf6e1f9e5e3055276aecca37", "fields": {"nom_de_la_commune": "DROUVILLE", "libell_d_acheminement": "DROUVILLE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54173"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0c5fa36848f6597765ba3c377a4855a2a5d30c", "fields": {"nom_de_la_commune": "ESSEY LA COTE", "libell_d_acheminement": "ESSEY LA COTE", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54183"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f93bc3983b4b91a1585263395ec2aab699add5", "fields": {"nom_de_la_commune": "ETREVAL", "libell_d_acheminement": "ETREVAL", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54185"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82011f37d2adeca3e23628ca79e5aca45ea87e67", "fields": {"nom_de_la_commune": "FAULX", "libell_d_acheminement": "FAULX", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54188"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af2d213b72204a77e3dd66a4ebd2cfe0eb6cd0c5", "fields": {"nom_de_la_commune": "FLAVIGNY SUR MOSELLE", "libell_d_acheminement": "FLAVIGNY SUR MOSELLE", "code_postal": "54630", "coordonnees_gps": [48.5776512425, 6.18802494178], "code_commune_insee": "54196"}, "geometry": {"type": "Point", "coordinates": [6.18802494178, 48.5776512425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "098d8227adb12e8959b014f86e1be2947b52b4df", "fields": {"nom_de_la_commune": "FOUG", "libell_d_acheminement": "FOUG", "code_postal": "54570", "coordonnees_gps": [48.6894085675, 5.77714272424], "code_commune_insee": "54205"}, "geometry": {"type": "Point", "coordinates": [5.77714272424, 48.6894085675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87a8244c6228ce1e21cbcce56ebf79e586ba7ba2", "fields": {"nom_de_la_commune": "FRAISNES EN SAINTOIS", "libell_d_acheminement": "FRAISNES EN SAINTOIS", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54207"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9f338f3a722d3c0fad72d269f215577c96e386", "fields": {"nom_de_la_commune": "FROUARD", "libell_d_acheminement": "FROUARD", "code_postal": "54390", "coordonnees_gps": [48.750746492, 6.12302354849], "code_commune_insee": "54215"}, "geometry": {"type": "Point", "coordinates": [6.12302354849, 48.750746492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fa35fb334f633ccb0247be9c5cdaf03b083e16e", "fields": {"nom_de_la_commune": "GELAUCOURT", "libell_d_acheminement": "GELAUCOURT", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54218"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63f982696d193a61b1d9d7dfc2e794fb20bf2cf9", "fields": {"nom_de_la_commune": "GIBEAUMEIX", "libell_d_acheminement": "GIBEAUMEIX", "code_postal": "54112", "coordonnees_gps": [48.5703688862, 5.77161023397], "code_commune_insee": "54226"}, "geometry": {"type": "Point", "coordinates": [5.77161023397, 48.5703688862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "082cb73281f231618e83b980736c806189736973", "fields": {"nom_de_la_commune": "GIRIVILLER", "libell_d_acheminement": "GIRIVILLER", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54228"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d2120d69fa71a63a8298ec0a926c483a981d4b", "fields": {"nom_de_la_commune": "GONDREXON", "libell_d_acheminement": "GONDREXON", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54233"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0187e9f4c95c9d1775d0065f1ea7273970ef36cf", "fields": {"nom_de_la_commune": "GRIMONVILLER", "libell_d_acheminement": "GRIMONVILLER", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54237"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84eca9d53f7c9bc7e7cbf2db783ba23359d29253", "fields": {"nom_de_la_commune": "GUGNEY", "libell_d_acheminement": "GUGNEY", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54241"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0553c89be9513ced36137aa92ca2191ca835f320", "fields": {"nom_de_la_commune": "HAGEVILLE", "libell_d_acheminement": "HAGEVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54244"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72878ff5f42fdcdd07427e2d98f0ac88ad374c7e", "fields": {"nom_de_la_commune": "HALLOVILLE", "libell_d_acheminement": "HALLOVILLE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54246"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057123f059ac50b6d2c0a7fd0920ca59d403d9ba", "fields": {"nom_de_la_commune": "HAROUE", "libell_d_acheminement": "HAROUE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54252"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2690269ff35b22b85a9f1fb794b83fabee147f85", "fields": {"nom_de_la_commune": "HENAMENIL", "libell_d_acheminement": "HENAMENIL", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54258"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b924e163ffad70d008807e91b67b707930a017a", "fields": {"nom_de_la_commune": "HERSERANGE", "libell_d_acheminement": "HERSERANGE", "code_postal": "54440", "coordonnees_gps": [49.5186978966, 5.79263554372], "code_commune_insee": "54261"}, "geometry": {"type": "Point", "coordinates": [5.79263554372, 49.5186978966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3810e9b052f36bbea882b08d382bf472a49dfdf2", "fields": {"nom_de_la_commune": "HOUDEMONT", "libell_d_acheminement": "HOUDEMONT", "code_postal": "54180", "coordonnees_gps": [48.6456781443, 6.18472060521], "code_commune_insee": "54265"}, "geometry": {"type": "Point", "coordinates": [6.18472060521, 48.6456781443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19844a45aea095e193ea435c905a96f123a08e1b", "fields": {"nom_de_la_commune": "HUSSIGNY GODBRANGE", "libell_d_acheminement": "HUSSIGNY GODBRANGE", "code_postal": "54590", "coordonnees_gps": [49.4956665774, 5.85569171913], "code_commune_insee": "54270"}, "geometry": {"type": "Point", "coordinates": [5.85569171913, 49.4956665774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b2c882bf3164b6e690a8ecfa524630d99abdb4e", "fields": {"nom_de_la_commune": "JUVRECOURT", "libell_d_acheminement": "JUVRECOURT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54285"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2879284eaec8fed46fce8c5d2d17c379f170461c", "fields": {"nom_de_la_commune": "LAGNEY", "libell_d_acheminement": "LAGNEY", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54288"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e967bdf891ffb60f4c7b59774c78ccbab9b2e2b", "fields": {"nom_de_la_commune": "LALOEUF", "libell_d_acheminement": "LALOEUF", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54291"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff2e9c1ee173973d17f31ad3545b7059a7194329", "fields": {"nom_de_la_commune": "LANEUVELOTTE", "libell_d_acheminement": "LANEUVELOTTE", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54296"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c5b6b1cf89980396623d42839e3064383701ef5", "fields": {"nom_de_la_commune": "LANFROICOURT", "libell_d_acheminement": "LANFROICOURT", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54301"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "683665be9cdcf2d1b7364d2008d74915d152061e", "fields": {"code_postal": "54520", "code_commune_insee": "54304", "libell_d_acheminement": "LAXOU", "ligne_5": "LAXOU CHAMPLEBOEUF", "nom_de_la_commune": "LAXOU", "coordonnees_gps": [48.6821372702, 6.11416538481]}, "geometry": {"type": "Point", "coordinates": [6.11416538481, 48.6821372702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0e02271dba881677cb647ae776dd21a8e6942c", "fields": {"nom_de_la_commune": "LEMENIL MITRY", "libell_d_acheminement": "LEMENIL MITRY", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54310"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7acabca3e00becf8ac43c02c5163384b3dfb1a54", "fields": {"nom_de_la_commune": "LEXY", "libell_d_acheminement": "LEXY", "code_postal": "54720", "coordonnees_gps": [49.4760856618, 5.75537597471], "code_commune_insee": "54314"}, "geometry": {"type": "Point", "coordinates": [5.75537597471, 49.4760856618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "294d3b89d50925b2f6e9b4b461e8a8d714c0c41a", "fields": {"nom_de_la_commune": "LIMEY REMENAUVILLE", "libell_d_acheminement": "LIMEY REMENAUVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54316"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f50a0a3722725250aaa436f51a06daa757ab63b", "fields": {"nom_de_la_commune": "LIVERDUN", "libell_d_acheminement": "LIVERDUN", "code_postal": "54460", "coordonnees_gps": [48.7483628916, 6.04028548825], "code_commune_insee": "54318"}, "geometry": {"type": "Point", "coordinates": [6.04028548825, 48.7483628916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ded8dba933a8a0e5839180bf06595a1c75a7d9a", "fields": {"nom_de_la_commune": "LUCEY", "libell_d_acheminement": "LUCEY", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54327"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf4f18ab93b374e97475d6849616dae1409a33e", "fields": {"nom_de_la_commune": "LUNEVILLE", "libell_d_acheminement": "LUNEVILLE", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54329"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bbb483978d41ce0c876ff5aec936f7e8cd8ad20", "fields": {"nom_de_la_commune": "MANCIEULLES", "libell_d_acheminement": "MANCIEULLES", "code_postal": "54790", "coordonnees_gps": [49.2813313847, 5.8972195561], "code_commune_insee": "54342"}, "geometry": {"type": "Point", "coordinates": [5.8972195561, 49.2813313847]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4453d96586f2084f64ac9b3e91396cfd2df9070f", "fields": {"nom_de_la_commune": "MARTINCOURT", "libell_d_acheminement": "MARTINCOURT", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54355"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9977812e851514f0cda2fa49495b56e40084e15", "fields": {"nom_de_la_commune": "MEHONCOURT", "libell_d_acheminement": "MEHONCOURT", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54359"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc21ea06049c8c436b80d17c0ceb385029c856ba", "fields": {"nom_de_la_commune": "MENIL LA TOUR", "libell_d_acheminement": "MENIL LA TOUR", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54360"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa16f60a41630f96e7e59c00c13b0ab801dfab4", "fields": {"nom_de_la_commune": "MERCY LE BAS", "libell_d_acheminement": "MERCY LE BAS", "code_postal": "54960", "coordonnees_gps": [49.385429349, 5.75808279243], "code_commune_insee": "54362"}, "geometry": {"type": "Point", "coordinates": [5.75808279243, 49.385429349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4da253defb476afedc9c26d4f21a6a53156e2f46", "fields": {"nom_de_la_commune": "MERVILLER", "libell_d_acheminement": "MERVILLER", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54365"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffdd6719a0527b0484fe61800c741721b5910c2b", "fields": {"nom_de_la_commune": "MINORVILLE", "libell_d_acheminement": "MINORVILLE", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54370"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b485139e4edcc8d76cc5aba860a628ca9cb5b1a", "fields": {"nom_de_la_commune": "MOIVRONS", "libell_d_acheminement": "MOIVRONS", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54372"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c0e5b1a36c984c3f0ffdf7085a2715196fa5548", "fields": {"nom_de_la_commune": "MONCEL SUR SEILLE", "libell_d_acheminement": "MONCEL SUR SEILLE", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54374"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e84fc65166dba0d034bb0314e20879df8903c470", "fields": {"nom_de_la_commune": "MONTENOY", "libell_d_acheminement": "MONTENOY", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54376"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3acd8a48ec3dab8cdc08879a65961e1e4833b4", "fields": {"nom_de_la_commune": "MONT LE VIGNOBLE", "libell_d_acheminement": "MONT LE VIGNOBLE", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54380"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05579e777f9e1c547bc3aa910670455717f82165", "fields": {"nom_de_la_commune": "MOUSSON", "libell_d_acheminement": "MOUSSON", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54390"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5574152002407e41ab05275771c64269b2dc083", "fields": {"nom_de_la_commune": "MURVILLE", "libell_d_acheminement": "MURVILLE", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54394"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98daaa14779183a1ab911971b92c713ad632cfab", "fields": {"nom_de_la_commune": "NANCY", "libell_d_acheminement": "NANCY", "code_postal": "54000", "coordonnees_gps": [48.6902043213, 6.1760319489], "code_commune_insee": "54395"}, "geometry": {"type": "Point", "coordinates": [6.1760319489, 48.6902043213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b5cbf3419402e93494f2a69a4f6c166e441e729", "fields": {"nom_de_la_commune": "NANCY", "libell_d_acheminement": "NANCY", "code_postal": "54100", "coordonnees_gps": [48.6902043213, 6.1760319489], "code_commune_insee": "54395"}, "geometry": {"type": "Point", "coordinates": [6.1760319489, 48.6902043213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f55815f7e7baba06192aea10d75159995600f79", "fields": {"nom_de_la_commune": "NORROY LE SEC", "libell_d_acheminement": "NORROY LE SEC", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54402"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3199bcba53af79c1a35b12b9e41a45ec026e18c", "fields": {"nom_de_la_commune": "OZERAILLES", "libell_d_acheminement": "OZERAILLES", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54413"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9efe3285e9afa57b9c7c0f0e0433708dcc7b602", "fields": {"nom_de_la_commune": "POMPEY", "libell_d_acheminement": "POMPEY", "code_postal": "54340", "coordonnees_gps": [48.7731935592, 6.11138149777], "code_commune_insee": "54430"}, "geometry": {"type": "Point", "coordinates": [6.11138149777, 48.7731935592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2a6a4aa18ae059b31ed4d563230ccc947b9b30a", "fields": {"nom_de_la_commune": "PORT SUR SEILLE", "libell_d_acheminement": "PORT SUR SEILLE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54433"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b1b2616a293947eba608e0a1481c5e9f8d2a759", "fields": {"nom_de_la_commune": "PULNOY", "libell_d_acheminement": "PULNOY", "code_postal": "54425", "coordonnees_gps": [48.7019193071, 6.265324903], "code_commune_insee": "54439"}, "geometry": {"type": "Point", "coordinates": [6.265324903, 48.7019193071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84e3c962a97b5378bf734d470710b76f2d9ec39f", "fields": {"nom_de_la_commune": "RAUCOURT", "libell_d_acheminement": "RAUCOURT", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54444"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da56a8ed62bc4751bb46aa7580896ce3ef9a020", "fields": {"nom_de_la_commune": "RECLONVILLE", "libell_d_acheminement": "RECLONVILLE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54447"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45b84215da66be4761a85c90938490c67a847337", "fields": {"nom_de_la_commune": "REHAINVILLER", "libell_d_acheminement": "REHAINVILLER", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54449"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b620dc97be97ad6239f0ee5af5b1a9558f53bd20", "fields": {"nom_de_la_commune": "REMBERCOURT SUR MAD", "libell_d_acheminement": "REMBERCOURT SUR MAD", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54453"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40993939715d54aa0f4a1999d31a2c656c036604", "fields": {"nom_de_la_commune": "REMEREVILLE", "libell_d_acheminement": "REMEREVILLE", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54456"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c3d2e1376165efec5b0c3779d4c7486ffe344a", "fields": {"nom_de_la_commune": "REMONCOURT", "libell_d_acheminement": "REMONCOURT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54457"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9380f83623df1f8ca42f2432b8b07b17b28c3664", "fields": {"nom_de_la_commune": "ROSIERES AUX SALINES", "libell_d_acheminement": "ROSIERES AUX SALINES", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54462"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f176e6393025252e35938ec8e8ff59fd26f860", "fields": {"nom_de_la_commune": "ROSIERES EN HAYE", "libell_d_acheminement": "ROSIERES EN HAYE", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54463"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ce770f156d2c50e9231c2cc325f20d755b5b891", "fields": {"code_postal": "54580", "code_commune_insee": "54469", "libell_d_acheminement": "ST AIL", "ligne_5": "HABONVILLE", "nom_de_la_commune": "ST AIL", "coordonnees_gps": [49.1903187118, 5.97291024326]}, "geometry": {"type": "Point", "coordinates": [5.97291024326, 49.1903187118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d9b150d575fceca955217308b00ca375d336426", "fields": {"nom_de_la_commune": "ST BAUSSANT", "libell_d_acheminement": "ST BAUSSANT", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54470"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "192c6228021ca7eb03f29fd768f5163be65ad21e", "fields": {"nom_de_la_commune": "STE GENEVIEVE", "libell_d_acheminement": "STE GENEVIEVE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54474"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c21da89dadc897a7c049dda52fa65321240937d", "fields": {"nom_de_la_commune": "ST GERMAIN", "libell_d_acheminement": "ST GERMAIN", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54475"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0835f605d0ccf8eb9e0a9801043d51ffc4feb30f", "fields": {"nom_de_la_commune": "ST JULIEN LES GORZE", "libell_d_acheminement": "ST JULIEN LES GORZE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54477"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ea65b86a89c0393335d0bccfdf3f6a09a74a37b", "fields": {"nom_de_la_commune": "ST REMIMONT", "libell_d_acheminement": "ST REMIMONT", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54486"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d82e1de157ae8baf551ad1646c627334bd082cd", "fields": {"nom_de_la_commune": "SAIZERAIS", "libell_d_acheminement": "SAIZERAIS", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54490"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce3e67435cb08f880378dec59884a5856de124e", "fields": {"nom_de_la_commune": "SAULXURES LES VANNES", "libell_d_acheminement": "SAULXURES LES VANNES", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54496"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9eafc0ca975356ba3f2cc497e5843f21fa06403", "fields": {"nom_de_la_commune": "SAXON SION", "libell_d_acheminement": "SAXON SION", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54497"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ecd56db55ac8a6dd13737097628ba30b6fbd4f1", "fields": {"nom_de_la_commune": "SEICHAMPS", "libell_d_acheminement": "SEICHAMPS", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54498"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf6e2a27ae145acd46a560413de5a49d795bd0f5", "fields": {"nom_de_la_commune": "SELAINCOURT", "libell_d_acheminement": "SELAINCOURT", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54500"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00bc300c6dd9963d7d27af02ac27045d8897532", "fields": {"nom_de_la_commune": "SIVRY", "libell_d_acheminement": "SIVRY", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54508"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef0b8e7b284052f975e0a127d027af311c881dc3", "fields": {"nom_de_la_commune": "CERNAY", "libell_d_acheminement": "CERNAY", "code_postal": "68700", "coordonnees_gps": [47.8077826523, 7.1623079719], "code_commune_insee": "68063"}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38fb5e195440402c2a41019f81dfaa2c664b75cf", "fields": {"nom_de_la_commune": "CHALAMPE", "libell_d_acheminement": "CHALAMPE", "code_postal": "68490", "coordonnees_gps": [47.7817852652, 7.50128243869], "code_commune_insee": "68064"}, "geometry": {"type": "Point", "coordinates": [7.50128243869, 47.7817852652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "295c01e78d69b4bc4c17d60b1454aaa8bec201d9", "fields": {"nom_de_la_commune": "DANNEMARIE", "libell_d_acheminement": "DANNEMARIE", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68068"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2379bd59c4be83332571c4a8a71a19dfb97fd2f1", "fields": {"nom_de_la_commune": "DIEFMATTEN", "libell_d_acheminement": "DIEFMATTEN", "code_postal": "68780", "coordonnees_gps": [47.7234740275, 7.06962991753], "code_commune_insee": "68071"}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f324efbf3b286c849bd42023f818010a7404cb22", "fields": {"nom_de_la_commune": "DURRENENTZEN", "libell_d_acheminement": "DURRENENTZEN", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68076"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09191b17485dbc06a094666fd88afffdc2b58dc4", "fields": {"nom_de_la_commune": "HOSTENS", "libell_d_acheminement": "HOSTENS", "code_postal": "33125", "coordonnees_gps": [44.5166549136, -0.635075777834], "code_commune_insee": "33202"}, "geometry": {"type": "Point", "coordinates": [-0.635075777834, 44.5166549136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "732597d3f90967a3aefeb1d048ad58a31026ba7c", "fields": {"nom_de_la_commune": "IZON", "libell_d_acheminement": "IZON", "code_postal": "33450", "coordonnees_gps": [44.9120653085, -0.402159133299], "code_commune_insee": "33207"}, "geometry": {"type": "Point", "coordinates": [-0.402159133299, 44.9120653085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4d694d71a781b024e48e5ca712d8c0d23bc2e1c", "fields": {"nom_de_la_commune": "LABARDE", "libell_d_acheminement": "LABARDE", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33211"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "393ff616c3ee0751759377e91658b5a8a6cdaf55", "fields": {"nom_de_la_commune": "LANDIRAS", "libell_d_acheminement": "LANDIRAS", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33225"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68ecd5bdd21e9a1bc00dce38dae002271401688", "fields": {"nom_de_la_commune": "LARUSCADE", "libell_d_acheminement": "LARUSCADE", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33233"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa27b0434d932ef436a7b78cbc53d03481cd6977", "fields": {"nom_de_la_commune": "LEGE CAP FERRET", "libell_d_acheminement": "LEGE CAP FERRET", "code_postal": "33970", "coordonnees_gps": [44.7600136809, -1.19365601812], "code_commune_insee": "33236"}, "geometry": {"type": "Point", "coordinates": [-1.19365601812, 44.7600136809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42cf3f132bed3c430f30c708266f19efa1e56dd7", "fields": {"nom_de_la_commune": "LESPARRE MEDOC", "libell_d_acheminement": "LESPARRE MEDOC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33240"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be2f8be067be685bdb2e48146d5f06879ecdcc9", "fields": {"nom_de_la_commune": "LIGNAN DE BAZAS", "libell_d_acheminement": "LIGNAN DE BAZAS", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33244"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3be29daf35950af997ad1b1625d7fc336fa8ac62", "fields": {"nom_de_la_commune": "LISTRAC MEDOC", "libell_d_acheminement": "LISTRAC MEDOC", "code_postal": "33480", "coordonnees_gps": [45.0106483018, -0.859128963466], "code_commune_insee": "33248"}, "geometry": {"type": "Point", "coordinates": [-0.859128963466, 45.0106483018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13a48ef2e003d53bfd142e3e452de995b1902f5", "fields": {"nom_de_la_commune": "LORMONT", "libell_d_acheminement": "LORMONT", "code_postal": "33310", "coordonnees_gps": [44.8765889573, -0.519217278128], "code_commune_insee": "33249"}, "geometry": {"type": "Point", "coordinates": [-0.519217278128, 44.8765889573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab92a79619f09b45869b509a38ecfa29fab4674", "fields": {"nom_de_la_commune": "LUGAIGNAC", "libell_d_acheminement": "LUGAIGNAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33257"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d77cd6439969c60056a4535c94f241cab40208", "fields": {"nom_de_la_commune": "LUSSAC", "libell_d_acheminement": "LUSSAC", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33261"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c5e28d2b855f85ed3f47aa2a6bbf63942bb5a6", "fields": {"nom_de_la_commune": "MACAU", "libell_d_acheminement": "MACAU", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33262"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf308bcbc15d8f2a7af31e6bf670a95077cd9a19", "fields": {"nom_de_la_commune": "MARGUERON", "libell_d_acheminement": "MARGUERON", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33269"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de1d1a943b5b94db32fd2060fd1cc356316cf488", "fields": {"nom_de_la_commune": "MAURIAC", "libell_d_acheminement": "MAURIAC", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33278"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66590a83731e6fe3ae86f0c625208397102cabfe", "fields": {"nom_de_la_commune": "MERIGNAS", "libell_d_acheminement": "MERIGNAS", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33282"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2803ab279d4fca05e1cf8e3ec237d67f41a0b00", "fields": {"code_postal": "33570", "code_commune_insee": "33290", "libell_d_acheminement": "MONTAGNE", "ligne_5": "PARSAC", "nom_de_la_commune": "MONTAGNE", "coordonnees_gps": [44.952442946, -0.0837974329549]}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7607e021e51a93be2927e9d05852df6f8f2acf", "fields": {"nom_de_la_commune": "MONTUSSAN", "libell_d_acheminement": "MONTUSSAN", "code_postal": "33450", "coordonnees_gps": [44.9120653085, -0.402159133299], "code_commune_insee": "33293"}, "geometry": {"type": "Point", "coordinates": [-0.402159133299, 44.9120653085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10dd655bf2a719ec450d22314a3ee7295cfac452", "fields": {"nom_de_la_commune": "MOUILLAC", "libell_d_acheminement": "MOUILLAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33295"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1aae5651df8a272d16735c98241491f7d0b55ff", "fields": {"nom_de_la_commune": "MOULIETS ET VILLEMARTIN", "libell_d_acheminement": "MOULIETS ET VILLEMARTIN", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33296"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd7ccb62b4e37ed04e41c894c8635909a464456", "fields": {"nom_de_la_commune": "MOULIS EN MEDOC", "libell_d_acheminement": "MOULIS EN MEDOC", "code_postal": "33480", "coordonnees_gps": [45.0106483018, -0.859128963466], "code_commune_insee": "33297"}, "geometry": {"type": "Point", "coordinates": [-0.859128963466, 45.0106483018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8541c45e57e067a93c111aad82a7263346e79a0", "fields": {"nom_de_la_commune": "PAILLET", "libell_d_acheminement": "PAILLET", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33311"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8c478ef44ccda75ce84569aa5aef8e87d2ca0b9", "fields": {"nom_de_la_commune": "PAREMPUYRE", "libell_d_acheminement": "PAREMPUYRE", "code_postal": "33290", "coordonnees_gps": [44.9495870677, -0.618779202684], "code_commune_insee": "33312"}, "geometry": {"type": "Point", "coordinates": [-0.618779202684, 44.9495870677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "279d66285a13b8b772933c29c97bfb91ae8bc368", "fields": {"nom_de_la_commune": "PAUILLAC", "libell_d_acheminement": "PAUILLAC", "code_postal": "33250", "coordonnees_gps": [45.1927076344, -0.786704253208], "code_commune_insee": "33314"}, "geometry": {"type": "Point", "coordinates": [-0.786704253208, 45.1927076344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2b13340a92040378f16926304c1d929b499446d", "fields": {"nom_de_la_commune": "LES PEINTURES", "libell_d_acheminement": "LES PEINTURES", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33315"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93310fbf77af5cd1d631ad4265e2a62e71dd71fe", "fields": {"nom_de_la_commune": "PESSAC", "libell_d_acheminement": "PESSAC", "code_postal": "33600", "coordonnees_gps": [44.7920119665, -0.675304941506], "code_commune_insee": "33318"}, "geometry": {"type": "Point", "coordinates": [-0.675304941506, 44.7920119665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d066a4726622c15be4842cea3e13413bad83857e", "fields": {"nom_de_la_commune": "LE PIAN MEDOC", "libell_d_acheminement": "LE PIAN MEDOC", "code_postal": "33290", "coordonnees_gps": [44.9495870677, -0.618779202684], "code_commune_insee": "33322"}, "geometry": {"type": "Point", "coordinates": [-0.618779202684, 44.9495870677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f39975aff1c0e4ca68a1c0abdcc43d45b8c4a5", "fields": {"nom_de_la_commune": "PLEINE SELVE", "libell_d_acheminement": "PLEINE SELVE", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33326"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29ceabddde1d82f5ed8f97f14b873311f3f3a9c8", "fields": {"nom_de_la_commune": "PODENSAC", "libell_d_acheminement": "PODENSAC", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33327"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8107493a21675fe6746917c239e2d13d926859f5", "fields": {"nom_de_la_commune": "PORTETS", "libell_d_acheminement": "PORTETS", "code_postal": "33640", "coordonnees_gps": [44.6903703564, -0.443613375594], "code_commune_insee": "33334"}, "geometry": {"type": "Point", "coordinates": [-0.443613375594, 44.6903703564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "228d1b02361659f9d2f6cff6243aa6adc3272526", "fields": {"nom_de_la_commune": "PRIGNAC ET MARCAMPS", "libell_d_acheminement": "PRIGNAC ET MARCAMPS", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33339"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b0be2ee2102b0f8aafb83299326b4cbd76a417", "fields": {"nom_de_la_commune": "LE PUY", "libell_d_acheminement": "LE PUY", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33345"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e493e29812f3713ebaa7d1ae4afb71c0da915f4a", "fields": {"nom_de_la_commune": "PUYBARBAN", "libell_d_acheminement": "PUYBARBAN", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33346"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a75ac6dccf9d9fcdc2d5a624921f22b9b50fa405", "fields": {"nom_de_la_commune": "RIONS", "libell_d_acheminement": "RIONS", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33355"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15853226bad24d1184f87514530db6bc244dbc8b", "fields": {"nom_de_la_commune": "LA RIVIERE", "libell_d_acheminement": "LA RIVIERE", "code_postal": "33126", "coordonnees_gps": [44.9271630379, -0.290628388761], "code_commune_insee": "33356"}, "geometry": {"type": "Point", "coordinates": [-0.290628388761, 44.9271630379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c5bdeffd8d260d2333a97dbe1799d690fde366", "fields": {"nom_de_la_commune": "ROAILLAN", "libell_d_acheminement": "ROAILLAN", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33357"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa669bbfc453f1ff967009db6797bc7c297a635", "fields": {"nom_de_la_commune": "ROMAGNE", "libell_d_acheminement": "ROMAGNE", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33358"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d23f68775a49b396f525800fcda2206756f14ff4", "fields": {"nom_de_la_commune": "LA ROQUILLE", "libell_d_acheminement": "LA ROQUILLE", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33360"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469fee80cfc121c5bb10309b8f25574f12be6d6e", "fields": {"nom_de_la_commune": "SADIRAC", "libell_d_acheminement": "SADIRAC", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33363"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6661e02d69103ccb5e02e82c17a0fff3dd1032cc", "fields": {"nom_de_la_commune": "SAILLANS", "libell_d_acheminement": "SAILLANS", "code_postal": "33141", "coordonnees_gps": [44.9675844038, -0.299545189755], "code_commune_insee": "33364"}, "geometry": {"type": "Point", "coordinates": [-0.299545189755, 44.9675844038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add2e9c40f509f4951f0362f8058290002cf902d", "fields": {"nom_de_la_commune": "ST AVIT ST NAZAIRE", "libell_d_acheminement": "ST AVIT ST NAZAIRE", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33378"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30e0129497149df7b33b466e1b3b681eb8d56cc5", "fields": {"nom_de_la_commune": "ST CHRISTOLY MEDOC", "libell_d_acheminement": "ST CHRISTOLY MEDOC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33383"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862a691f125bc02af5b33a4817de83c0b3d76ed4", "fields": {"nom_de_la_commune": "ST CIBARD", "libell_d_acheminement": "ST CIBARD", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33386"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ab56e4182ae4f86e632f07881da18f7be471bc", "fields": {"nom_de_la_commune": "ST CIERS D ABZAC", "libell_d_acheminement": "ST CIERS D ABZAC", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33387"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa87f07102eab497124c6ab782b3492669360b25", "fields": {"nom_de_la_commune": "STE FOY LA GRANDE", "libell_d_acheminement": "STE FOY LA GRANDE", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33402"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d751b7db995486f960b428b145f28551982b45", "fields": {"nom_de_la_commune": "ST GENES DE FRONSAC", "libell_d_acheminement": "ST GENES DE FRONSAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33407"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a22eebc3cfc4a4dc2481726b9164b53a80793236", "fields": {"nom_de_la_commune": "ST GERMAIN D ESTEUIL", "libell_d_acheminement": "ST GERMAIN D ESTEUIL", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33412"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e86363af1d36f917317d1be08432b29a7f9a080", "fields": {"nom_de_la_commune": "ST LOUBERT", "libell_d_acheminement": "ST LOUBERT", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33432"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d47460426cfc125f4f606b53948c8187b2f0a79", "fields": {"nom_de_la_commune": "ST MARTIN DU BOIS", "libell_d_acheminement": "ST MARTIN DU BOIS", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33445"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969e3adea600d0eff823b932d323394c56821cee", "fields": {"nom_de_la_commune": "ST MEDARD DE GUIZIERES", "libell_d_acheminement": "ST MEDARD DE GUIZIERES", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33447"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc319273d2ec280e49fba922f0c0c98ce75f7c53", "fields": {"nom_de_la_commune": "ST PEY DE CASTETS", "libell_d_acheminement": "ST PEY DE CASTETS", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33460"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9f195dc9eb55476e11aba6f3c019ab6bdc6030", "fields": {"nom_de_la_commune": "ST PHILIPPE D AIGUILLE", "libell_d_acheminement": "ST PHILIPPE D AIGUILLE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33461"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22409e25dd04d4956af0a0094387474d1e18891a", "fields": {"nom_de_la_commune": "ST PIERRE DE BAT", "libell_d_acheminement": "ST PIERRE DE BAT", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33464"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d1f40527744765ce65b48087f35709e4fbeeb5", "fields": {"nom_de_la_commune": "ST PIERRE DE MONS", "libell_d_acheminement": "ST PIERRE DE MONS", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33465"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4ebf5c1dfb72960b03961b0c1b6d7ac5454488", "fields": {"nom_de_la_commune": "ST QUENTIN DE BARON", "libell_d_acheminement": "ST QUENTIN DE BARON", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33466"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83a98b1e96a347bbebbd1987ccb44653db1541f4", "fields": {"nom_de_la_commune": "ST QUENTIN DE CAPLONG", "libell_d_acheminement": "ST QUENTIN DE CAPLONG", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33467"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3878b870d43812397fb9c8a4b3969e0049b21a7", "fields": {"nom_de_la_commune": "ST SEURIN DE CADOURNE", "libell_d_acheminement": "ST SEURIN DE CADOURNE", "code_postal": "33180", "coordonnees_gps": [45.262541575, -0.809284319605], "code_commune_insee": "33476"}, "geometry": {"type": "Point", "coordinates": [-0.809284319605, 45.262541575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6502d3753a9e3ce33c139c14226c5ebe01c47727", "fields": {"nom_de_la_commune": "ST SEVE", "libell_d_acheminement": "ST SEVE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33479"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f37221c84f2b3115ba8dca7008eed302d41b4f", "fields": {"nom_de_la_commune": "ST TROJAN", "libell_d_acheminement": "ST TROJAN", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33486"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77fd70ba299006f4213514f587c65f4c676c72e7", "fields": {"nom_de_la_commune": "ST VINCENT DE PAUL", "libell_d_acheminement": "ST VINCENT DE PAUL", "code_postal": "33440", "coordonnees_gps": [44.9552105783, -0.50282224185], "code_commune_insee": "33487"}, "geometry": {"type": "Point", "coordinates": [-0.50282224185, 44.9552105783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc192441d24dd1092608e19c37207b90e951220", "fields": {"nom_de_la_commune": "ST VINCENT DE PERTIGNAS", "libell_d_acheminement": "ST VINCENT DE PERTIGNAS", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33488"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "832f251ec87fead8ca54aa58feb3fa8290a4e66b", "fields": {"nom_de_la_commune": "ST YZAN DE SOUDIAC", "libell_d_acheminement": "ST YZAN DE SOUDIAC", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33492"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce60e85fc8e337dda674caa1eb10c0fbbaf1cea", "fields": {"nom_de_la_commune": "SALLES", "libell_d_acheminement": "SALLES", "code_postal": "33770", "coordonnees_gps": [44.5415934171, -0.883407721273], "code_commune_insee": "33498"}, "geometry": {"type": "Point", "coordinates": [-0.883407721273, 44.5415934171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd190f6440294a3408a3a94e132d946b1415117", "fields": {"nom_de_la_commune": "SAUGON", "libell_d_acheminement": "SAUGON", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33502"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa4dcaf39b94cfd283159582a67f5da542efc0bc", "fields": {"nom_de_la_commune": "SAUMOS", "libell_d_acheminement": "SAUMOS", "code_postal": "33680", "coordonnees_gps": [44.9228309984, -1.08469185775], "code_commune_insee": "33503"}, "geometry": {"type": "Point", "coordinates": [-1.08469185775, 44.9228309984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c796725d113768aba5fd281b53e2d200831fefb4", "fields": {"nom_de_la_commune": "SAVIGNAC DE L ISLE", "libell_d_acheminement": "SAVIGNAC DE L ISLE", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33509"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "853ed364fe3f1f9466f14bd96b5bcc175cabf5b2", "fields": {"nom_de_la_commune": "SOULAC SUR MER", "libell_d_acheminement": "SOULAC SUR MER", "code_postal": "33780", "coordonnees_gps": [45.4932494644, -1.10972499284], "code_commune_insee": "33514"}, "geometry": {"type": "Point", "coordinates": [-1.10972499284, 45.4932494644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1a46ae3936b84c2227fa045d7362bab56eefc80", "fields": {"nom_de_la_commune": "SOULIGNAC", "libell_d_acheminement": "SOULIGNAC", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33515"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea8b390dc1869a31fc33e7dded6ae335af011c0", "fields": {"nom_de_la_commune": "TALENCE", "libell_d_acheminement": "TALENCE", "code_postal": "33400", "coordonnees_gps": [44.8056885142, -0.591027573737], "code_commune_insee": "33522"}, "geometry": {"type": "Point", "coordinates": [-0.591027573737, 44.8056885142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c18eeebcc12ef02a66fc11186c761e2cf8a8aa87", "fields": {"nom_de_la_commune": "TOULENNE", "libell_d_acheminement": "TOULENNE", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33533"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0fd26275e8c02b72d4e75dd069b0a95c8c13d87", "fields": {"nom_de_la_commune": "LE TUZAN", "libell_d_acheminement": "LE TUZAN", "code_postal": "33125", "coordonnees_gps": [44.5166549136, -0.635075777834], "code_commune_insee": "33536"}, "geometry": {"type": "Point", "coordinates": [-0.635075777834, 44.5166549136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a33c7258d9f839cc7ee6e8d3971b9553c296f19", "fields": {"nom_de_la_commune": "VERAC", "libell_d_acheminement": "VERAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33542"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75c594097b788fb818886d8673024ba1fde31d80", "fields": {"nom_de_la_commune": "ABEILHAN", "libell_d_acheminement": "ABEILHAN", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34001"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0635a304bf151bf542fdea6aa9d4d53ea382e2ea", "fields": {"nom_de_la_commune": "LES AIRES", "libell_d_acheminement": "LES AIRES", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34008"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9061881837c2074b1948b8d06069820f3ab1240", "fields": {"nom_de_la_commune": "ARGELLIERS", "libell_d_acheminement": "ARGELLIERS", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34012"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8812897cc42b90e8492c70959fecf49fbb740cb3", "fields": {"nom_de_la_commune": "ASPIRAN", "libell_d_acheminement": "ASPIRAN", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34013"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38c66d216a0b5a9d43b4dbc84ee6fd2bf5afbdf0", "fields": {"nom_de_la_commune": "AUMES", "libell_d_acheminement": "AUMES", "code_postal": "34530", "coordonnees_gps": [43.4730122504, 3.50379748517], "code_commune_insee": "34017"}, "geometry": {"type": "Point", "coordinates": [3.50379748517, 43.4730122504]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8c3f2b80495a9247153af715c8079384e9232e2", "fields": {"nom_de_la_commune": "BAILLARGUES", "libell_d_acheminement": "BAILLARGUES", "code_postal": "34670", "coordonnees_gps": [43.6617396739, 4.0210678464], "code_commune_insee": "34022"}, "geometry": {"type": "Point", "coordinates": [4.0210678464, 43.6617396739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f1371b7f12e1927991b00dcf3cc96993d7113d2", "fields": {"nom_de_la_commune": "BEZIERS", "libell_d_acheminement": "BEZIERS", "code_postal": "34500", "coordonnees_gps": [43.3428885301, 3.23996566024], "code_commune_insee": "34032"}, "geometry": {"type": "Point", "coordinates": [3.23996566024, 43.3428885301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd02053b8d3fe33f05524463161d6a640ba9e75", "fields": {"nom_de_la_commune": "BOISSET", "libell_d_acheminement": "BOISSET", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34034"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8a294b933e76fb17a8ea83dee5970b0209a9b68", "fields": {"nom_de_la_commune": "BRIGNAC", "libell_d_acheminement": "BRIGNAC", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34041"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6772efb627b398e8214831db954adac45722b9fe", "fields": {"nom_de_la_commune": "CANDILLARGUES", "libell_d_acheminement": "CANDILLARGUES", "code_postal": "34130", "coordonnees_gps": [43.6110613982, 4.02001857853], "code_commune_insee": "34050"}, "geometry": {"type": "Point", "coordinates": [4.02001857853, 43.6110613982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2095f4cdfbba7660d3791713ef434077393c335b", "fields": {"nom_de_la_commune": "CANET", "libell_d_acheminement": "CANET", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34051"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "498783cf66f1d5b4f3c5a58111d53dc1be83e6fd", "fields": {"nom_de_la_commune": "CAPESTANG", "libell_d_acheminement": "CAPESTANG", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34052"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6e74e16e62e8efe7011fc5f6bb2797be552cac", "fields": {"nom_de_la_commune": "CAZILHAC", "libell_d_acheminement": "CAZILHAC", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34067"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7590b198a397ff8e6174f2a12ae7fd24840b801", "fields": {"nom_de_la_commune": "CEILHES ET ROCOZELS", "libell_d_acheminement": "CEILHES ET ROCOZELS", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34071"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad624c3bc1e26f8db1fd7f4ac7d9d78715af9985", "fields": {"nom_de_la_commune": "CESSENON SUR ORB", "libell_d_acheminement": "CESSENON SUR ORB", "code_postal": "34460", "coordonnees_gps": [43.4734338181, 3.02585092661], "code_commune_insee": "34074"}, "geometry": {"type": "Point", "coordinates": [3.02585092661, 43.4734338181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "880889e385c87675f150cd8fefa1d71c6e92af48", "fields": {"nom_de_la_commune": "CESSERAS", "libell_d_acheminement": "CESSERAS", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34075"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827ea0b70e94bc5e71fcc6101c31b27b27aaf111", "fields": {"nom_de_la_commune": "COULOBRES", "libell_d_acheminement": "COULOBRES", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34085"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "183d4ad5f9848aabec0efad2b28dc0f7673b6a2b", "fields": {"nom_de_la_commune": "COURNONTERRAL", "libell_d_acheminement": "COURNONTERRAL", "code_postal": "34660", "coordonnees_gps": [43.5604318583, 3.70546216229], "code_commune_insee": "34088"}, "geometry": {"type": "Point", "coordinates": [3.70546216229, 43.5604318583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13dc537ec683f92467e9a4b587a058b3602eb725", "fields": {"nom_de_la_commune": "ESPONDEILHAN", "libell_d_acheminement": "ESPONDEILHAN", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34094"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff64312a0d8fdb3056541de565b406a1e9f5456", "fields": {"nom_de_la_commune": "FABREGUES", "libell_d_acheminement": "FABREGUES", "code_postal": "34690", "coordonnees_gps": [43.5339626532, 3.77144949139], "code_commune_insee": "34095"}, "geometry": {"type": "Point", "coordinates": [3.77144949139, 43.5339626532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e97f6ced2e29e9745beff8a351622104dd227db3", "fields": {"nom_de_la_commune": "GARRIGUES", "libell_d_acheminement": "GARRIGUES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34112"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb913b19d5f076f15d8192935270415a49635e6e", "fields": {"nom_de_la_commune": "LAGAMAS", "libell_d_acheminement": "LAGAMAS", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34125"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41387174009f4405e2b56bd7ee8fffea42ff773f", "fields": {"nom_de_la_commune": "LAVERUNE", "libell_d_acheminement": "LAVERUNE", "code_postal": "34880", "coordonnees_gps": [43.5849389203, 3.80161642579], "code_commune_insee": "34134"}, "geometry": {"type": "Point", "coordinates": [3.80161642579, 43.5849389203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f43f5bdb22b77db09406640326290cb737132a7", "fields": {"nom_de_la_commune": "LESPIGNAN", "libell_d_acheminement": "LESPIGNAN", "code_postal": "34710", "coordonnees_gps": [43.2732858209, 3.16986859659], "code_commune_insee": "34135"}, "geometry": {"type": "Point", "coordinates": [3.16986859659, 43.2732858209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12b0a12b698f5e1cd87e89e80838673af98d5042", "fields": {"nom_de_la_commune": "LEZIGNAN LA CEBE", "libell_d_acheminement": "LEZIGNAN LA CEBE", "code_postal": "34120", "coordonnees_gps": [43.4541786417, 3.425777952], "code_commune_insee": "34136"}, "geometry": {"type": "Point", "coordinates": [3.425777952, 43.4541786417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60affe8f80dddcaae14d48bdf409fd20e8e10214", "fields": {"nom_de_la_commune": "LUNEL", "libell_d_acheminement": "LUNEL", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34145"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1ec3eb1b69a887f581f0f384027abcbc39eaad", "fields": {"nom_de_la_commune": "LUNEL VIEL", "libell_d_acheminement": "LUNEL VIEL", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34146"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e2894e604c23152607080a8c40f1e1acbf507e", "fields": {"nom_de_la_commune": "MAS DE LONDRES", "libell_d_acheminement": "MAS DE LONDRES", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34152"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34b1ee22098d340226eebb79ca5ec516a656b9d5", "fields": {"nom_de_la_commune": "LA CELLE SUR LOIRE", "libell_d_acheminement": "LA CELLE SUR LOIRE", "code_postal": "58440", "coordonnees_gps": [47.4771194845, 2.93695618494], "code_commune_insee": "58044"}, "geometry": {"type": "Point", "coordinates": [2.93695618494, 47.4771194845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d77997097a3aa259b91df27f8dddb30b2024e45", "fields": {"nom_de_la_commune": "CERVON", "libell_d_acheminement": "CERVON", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58047"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4892514b51c4921bf014b9099ddc4305e89aba66", "fields": {"nom_de_la_commune": "CHAMPLIN", "libell_d_acheminement": "CHAMPLIN", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58054"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44449df687424847f0b18faecf30b7a57e3122c4", "fields": {"nom_de_la_commune": "CHITRY LES MINES", "libell_d_acheminement": "CHITRY LES MINES", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58075"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f194c1710a3112028898183e328c7721096b75c", "fields": {"code_postal": "58500", "code_commune_insee": "58079", "libell_d_acheminement": "CLAMECY", "ligne_5": "BEAUGY", "nom_de_la_commune": "CLAMECY", "coordonnees_gps": [47.4641711809, 3.49201148604]}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848e788aec73e695efaaddc8207f3286aef48cd9", "fields": {"nom_de_la_commune": "CORBIGNY", "libell_d_acheminement": "CORBIGNY", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58083"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd2cf223e822ba48ff19905a1210178736af3124", "fields": {"nom_de_la_commune": "CORVOL L ORGUEILLEUX", "libell_d_acheminement": "CORVOL L ORGUEILLEUX", "code_postal": "58460", "coordonnees_gps": [47.436143333, 3.39666081915], "code_commune_insee": "58085"}, "geometry": {"type": "Point", "coordinates": [3.39666081915, 47.436143333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "923d5aaed018b12f02f6c45c4a17b4320b51cf9c", "fields": {"nom_de_la_commune": "COURCELLES", "libell_d_acheminement": "COURCELLES", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58090"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1557f8a9ba0a233e1ca072631bc2256e232e4ad1", "fields": {"nom_de_la_commune": "CUNCY LES VARZY", "libell_d_acheminement": "CUNCY LES VARZY", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58093"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c68d476b699a56bedd8e52660e10e008705f63", "fields": {"nom_de_la_commune": "DIROL", "libell_d_acheminement": "DIROL", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58098"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb1185ea61da92a6298acf9af00551b576676911", "fields": {"nom_de_la_commune": "DONZY", "libell_d_acheminement": "DONZY", "code_postal": "58220", "coordonnees_gps": [47.379682807, 3.15630792505], "code_commune_insee": "58102"}, "geometry": {"type": "Point", "coordinates": [3.15630792505, 47.379682807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c7abd0ab7b769802405ae238a6c943683a67cb", "fields": {"nom_de_la_commune": "DORNES", "libell_d_acheminement": "DORNES", "code_postal": "58390", "coordonnees_gps": [46.7188316156, 3.33778904385], "code_commune_insee": "58104"}, "geometry": {"type": "Point", "coordinates": [3.33778904385, 46.7188316156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede143287baa5d70710c6a273fe89348b6e203d2", "fields": {"nom_de_la_commune": "ENTRAINS SUR NOHAIN", "libell_d_acheminement": "ENTRAINS SUR NOHAIN", "code_postal": "58410", "coordonnees_gps": [47.4484285575, 3.26965518858], "code_commune_insee": "58109"}, "geometry": {"type": "Point", "coordinates": [3.26965518858, 47.4484285575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a62a1b21162a0d27fad17aafdadef8e9b6309e", "fields": {"nom_de_la_commune": "GACOGNE", "libell_d_acheminement": "GACOGNE", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58120"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc17fcad10bd835ce90769ec831d31341d998539", "fields": {"code_postal": "58150", "code_commune_insee": "58122", "libell_d_acheminement": "GARCHY", "ligne_5": "MAIZIERES", "nom_de_la_commune": "GARCHY", "coordonnees_gps": [47.3141169585, 3.01884186422]}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "184cf1ab67948844feb7e540c53e7ca23ffd79c8", "fields": {"nom_de_la_commune": "GERMENAY", "libell_d_acheminement": "GERMENAY", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58123"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0beca5c8ad24ea9eaa989eabdeb401585fec018d", "fields": {"nom_de_la_commune": "ISENAY", "libell_d_acheminement": "ISENAY", "code_postal": "58290", "coordonnees_gps": [46.9712229118, 3.77516056611], "code_commune_insee": "58135"}, "geometry": {"type": "Point", "coordinates": [3.77516056611, 46.9712229118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2996a38c5c6006aa7e97dc50c0b118e828857dde", "fields": {"nom_de_la_commune": "LANGERON", "libell_d_acheminement": "LANGERON", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58138"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dbdd1d79aa175b1c2fd7084f711b2a872dcb42d", "fields": {"nom_de_la_commune": "LIVRY", "libell_d_acheminement": "LIVRY", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58144"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "197775072f17d4fdebe180a453e0a1dfc2fc18f3", "fields": {"nom_de_la_commune": "LURCY LE BOURG", "libell_d_acheminement": "LURCY LE BOURG", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58147"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86614c72763c58e9b628dad0e0bd6fa46b9b199d", "fields": {"nom_de_la_commune": "MENOU", "libell_d_acheminement": "MENOU", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58163"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cade73a2d5db9988f7b5f039dbd59f91e72313e", "fields": {"nom_de_la_commune": "METZ LE COMTE", "libell_d_acheminement": "METZ LE COMTE", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58165"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6fb004fef3671e8ec3a6964a2b60a49ebcc4bff", "fields": {"nom_de_la_commune": "MOISSY MOULINOT", "libell_d_acheminement": "MOISSY MOULINOT", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58169"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c1a4480dffe91a7da98f2b13f10cb3c26d9ad10", "fields": {"nom_de_la_commune": "MONTAPAS", "libell_d_acheminement": "MONTAPAS", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58171"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49f27978008211916aab25b1ad4e7b12638ac695", "fields": {"code_postal": "58230", "code_commune_insee": "58180", "libell_d_acheminement": "MONTSAUCHE LES SETTONS", "ligne_5": "LES SETTONS", "nom_de_la_commune": "MONTSAUCHE LES SETTONS", "coordonnees_gps": [47.2108848273, 4.05888838547]}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "398ffcc5fb95aa6f6bab3e097360ac12b41e36f4", "fields": {"nom_de_la_commune": "NANNAY", "libell_d_acheminement": "NANNAY", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58188"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19d9978caeac6cf1801432a0506d59dcdad6394c", "fields": {"nom_de_la_commune": "NARCY", "libell_d_acheminement": "NARCY", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58189"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c9eb3453dc5a20bd014c107107c910a9fb8631", "fields": {"nom_de_la_commune": "NEVERS", "libell_d_acheminement": "NEVERS", "code_postal": "58000", "coordonnees_gps": [46.9644333624, 3.17459118159], "code_commune_insee": "58194"}, "geometry": {"type": "Point", "coordinates": [3.17459118159, 46.9644333624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ecb741d07b7cdda7f88e155482d1d189b40d5b7", "fields": {"nom_de_la_commune": "LA NOCLE MAULAIX", "libell_d_acheminement": "LA NOCLE MAULAIX", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58195"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f91fbe7171e7d372c248d111c6cc5d507c04fc32", "fields": {"nom_de_la_commune": "OUAGNE", "libell_d_acheminement": "OUAGNE", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58200"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "906b2163ec19f8cbb15bb5f63a901ee91e481b42", "fields": {"nom_de_la_commune": "OUDAN", "libell_d_acheminement": "OUDAN", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58201"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d64ce5136cd2acfe2d20a831bcb0e1b70c6314", "fields": {"nom_de_la_commune": "ST ETIENNE ROILAYE", "libell_d_acheminement": "ST ETIENNE ROILAYE", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60572"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c57c352810990ac9190dcd4cfb03c0b0a9797ebb", "fields": {"nom_de_la_commune": "ST JEAN AUX BOIS", "libell_d_acheminement": "ST JEAN AUX BOIS", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60579"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "193b3698a78d75d62bc7eb8f53e2d450f9ccb789", "fields": {"nom_de_la_commune": "ST LEGER EN BRAY", "libell_d_acheminement": "ST LEGER EN BRAY", "code_postal": "60155", "coordonnees_gps": [49.3994473154, 2.0089385619], "code_commune_insee": "60583"}, "geometry": {"type": "Point", "coordinates": [2.0089385619, 49.3994473154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fac85e4ca675b51e9b0f58b3c7fb6847ecb2f66", "fields": {"nom_de_la_commune": "ST MAUR", "libell_d_acheminement": "ST MAUR", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60588"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6c08cb17135b5537d6baf23306b3a045bd3ff8d", "fields": {"nom_de_la_commune": "ST QUENTIN DES PRES", "libell_d_acheminement": "ST QUENTIN DES PRES", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60594"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0048db6a2727ce15631a26a5aa22a1f812d20bc", "fields": {"nom_de_la_commune": "ST VAAST DE LONGMONT", "libell_d_acheminement": "ST VAAST DE LONGMONT", "code_postal": "60410", "coordonnees_gps": [49.2959209598, 2.7176751302], "code_commune_insee": "60600"}, "geometry": {"type": "Point", "coordinates": [2.7176751302, 49.2959209598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e01b5c67045cd90529dbaa29bb8a00e747fe69d1", "fields": {"nom_de_la_commune": "SALENCY", "libell_d_acheminement": "SALENCY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60603"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f4815f3d600e4db9f8061bc3d7a16862a81ae52", "fields": {"nom_de_la_commune": "SEREVILLERS", "libell_d_acheminement": "SEREVILLERS", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60615"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c78ffd1ab3febbeae2d0b0359748bb58c187a3ff", "fields": {"nom_de_la_commune": "TARTIGNY", "libell_d_acheminement": "TARTIGNY", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60627"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5e37d0881a22ed395f39d9b30dbd09483c460ac", "fields": {"nom_de_la_commune": "THIESCOURT", "libell_d_acheminement": "THIESCOURT", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60632"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e763e2fd59ba0075b0cbf14443917f336da0c62", "fields": {"nom_de_la_commune": "TRIE CHATEAU", "libell_d_acheminement": "TRIE CHATEAU", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60644"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23375567e72d4409e0c25478c45184e67bf333a2", "fields": {"nom_de_la_commune": "TRUMILLY", "libell_d_acheminement": "TRUMILLY", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60650"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b9dd757b426a18eea13a54b07fe14db1190a25", "fields": {"nom_de_la_commune": "ULLY ST GEORGES", "libell_d_acheminement": "ULLY ST GEORGES", "code_postal": "60730", "coordonnees_gps": [49.2849598013, 2.24410446166], "code_commune_insee": "60651"}, "geometry": {"type": "Point", "coordinates": [2.24410446166, 49.2849598013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c080cd76f09ea96bcdfe467b33778661487d9903", "fields": {"nom_de_la_commune": "VALESCOURT", "libell_d_acheminement": "VALESCOURT", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60653"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0aeaafb5eaf4a66649fd266efcb73b794a41c18", "fields": {"nom_de_la_commune": "VAUCHELLES", "libell_d_acheminement": "VAUCHELLES", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60657"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a1b29414813f15a164dc48829512a511a10ab45", "fields": {"nom_de_la_commune": "VIEFVILLERS", "libell_d_acheminement": "VIEFVILLERS", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60673"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee33bbd2187ee9e5bb5b5b241d8f082862e22fd1", "fields": {"nom_de_la_commune": "VIEUX MOULIN", "libell_d_acheminement": "VIEUX MOULIN", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60674"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd351a84cc06f98a91f45e77e75fc2ee80b87def", "fields": {"nom_de_la_commune": "VILLERS ST PAUL", "libell_d_acheminement": "VILLERS ST PAUL", "code_postal": "60870", "coordonnees_gps": [49.2979695646, 2.51851013647], "code_commune_insee": "60684"}, "geometry": {"type": "Point", "coordinates": [2.51851013647, 49.2979695646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e25cd60109edf4b9b1ac7c367a5d181d7de5dcea", "fields": {"nom_de_la_commune": "VILLERS ST SEPULCRE", "libell_d_acheminement": "VILLERS ST SEPULCRE", "code_postal": "60134", "coordonnees_gps": [49.3709674035, 2.20669140352], "code_commune_insee": "60685"}, "geometry": {"type": "Point", "coordinates": [2.20669140352, 49.3709674035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d2b8a7017d33becbc29a506501e4522464bdad8", "fields": {"nom_de_la_commune": "VILLERS SUR COUDUN", "libell_d_acheminement": "VILLERS SUR COUDUN", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60689"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ea1c7d39dd4a16fa19c2f9145947dee1d5503ab", "fields": {"nom_de_la_commune": "WELLES PERENNES", "libell_d_acheminement": "WELLES PERENNES", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60702"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6dd7c542bf39eff4df9867a885a93b991675f07", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "LA CARNEILLE", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a83e33990618206f2abf6471e4d48f26d6822677", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "TAILLEBOIS", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2427ae866056e44cb807053411d877ffffddde", "fields": {"nom_de_la_commune": "LES AUTHIEUX DU PUITS", "libell_d_acheminement": "LES AUTHIEUX DU PUITS", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61017"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0d27c854b0e2de23a8bf40a965eed740b47085", "fields": {"nom_de_la_commune": "AVRILLY", "libell_d_acheminement": "AVRILLY", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61021"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8336449b6d5a09ce9d1bb3e493bd39a83b3f5719", "fields": {"nom_de_la_commune": "BEAUFAI", "libell_d_acheminement": "BEAUFAI", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61032"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "951d8e44d0d1f3ccbad89119072653cbe65a7628", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61034"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb5a8f3082deeb5a7ac082d92ba78fc79e0b88d", "fields": {"nom_de_la_commune": "BEAUVAIN", "libell_d_acheminement": "BEAUVAIN", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61035"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b4f51f2aa4843dffdee48de925b16727456b56", "fields": {"nom_de_la_commune": "BELLOU EN HOULME", "libell_d_acheminement": "BELLOU EN HOULME", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61040"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a534c26570ff5bdad37a9c2c77542421752f75", "fields": {"nom_de_la_commune": "BERD HUIS", "libell_d_acheminement": "BERD HUIS", "code_postal": "61340", "coordonnees_gps": [48.372155968, 0.719847889248], "code_commune_insee": "61043"}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffa46ddd6d71ed8556c9de5211ab5979a08e977b", "fields": {"nom_de_la_commune": "BERJOU", "libell_d_acheminement": "BERJOU", "code_postal": "61430", "coordonnees_gps": [48.8220175154, -0.472614628167], "code_commune_insee": "61044"}, "geometry": {"type": "Point", "coordinates": [-0.472614628167, 48.8220175154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3743004d16eb783dd5799dc0694b1b79556619c9", "fields": {"nom_de_la_commune": "BOISSEI LA LANDE", "libell_d_acheminement": "BOISSEI LA LANDE", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61049"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66c8681e348de4fddd1ce0ef5e939d8dd6e3e5e5", "fields": {"nom_de_la_commune": "BOUCE", "libell_d_acheminement": "BOUCE", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61055"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edff5a5a99e978e01adeae64b41bd02753a55a2b", "fields": {"nom_de_la_commune": "LE BOURG ST LEONARD", "libell_d_acheminement": "LE BOURG ST LEONARD", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61057"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f72336b0bb869f65801a8a6e002e414a15c2274", "fields": {"nom_de_la_commune": "BRETONCELLES", "libell_d_acheminement": "BRETONCELLES", "code_postal": "61110", "coordonnees_gps": [48.440685995, 0.83185325454], "code_commune_insee": "61061"}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98ad2e665ac1ea331821c83487ecbaf6237b9452", "fields": {"nom_de_la_commune": "BRULLEMAIL", "libell_d_acheminement": "BRULLEMAIL", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61064"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d324437e74045fd2929a9a4ca3632026cb331075", "fields": {"nom_de_la_commune": "BURE", "libell_d_acheminement": "BURE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61066"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14736de2d090d1125dbcd539aa71f70146a992e8", "fields": {"nom_de_la_commune": "CAHAN", "libell_d_acheminement": "CAHAN", "code_postal": "61430", "coordonnees_gps": [48.8220175154, -0.472614628167], "code_commune_insee": "61069"}, "geometry": {"type": "Point", "coordinates": [-0.472614628167, 48.8220175154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7dd7da2dac18c3372699b3aae0d72672f8bf050", "fields": {"nom_de_la_commune": "CALIGNY", "libell_d_acheminement": "CALIGNY", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61070"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d454c82145fde1d5f2144d46480e4bd54e128370", "fields": {"nom_de_la_commune": "LE CERCUEIL", "libell_d_acheminement": "LE CERCUEIL", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61076"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f38ad06006216382db2269d66b44437efbed95d", "fields": {"nom_de_la_commune": "CERISY BELLE ETOILE", "libell_d_acheminement": "CERISY BELLE ETOILE", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61078"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff10568a765dfacf5e0f9339bf0449f8cdffc237", "fields": {"nom_de_la_commune": "CETON", "libell_d_acheminement": "CETON", "code_postal": "61260", "coordonnees_gps": [48.2308054852, 0.743916298767], "code_commune_insee": "61079"}, "geometry": {"type": "Point", "coordinates": [0.743916298767, 48.2308054852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "010905afae9c163b4c21612db2d308c04f5dfcac", "fields": {"nom_de_la_commune": "CHAMPOSOULT", "libell_d_acheminement": "CHAMPOSOULT", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61089"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba5cdbbb9268b4c95075a2579a1b39a322b4a83", "fields": {"nom_de_la_commune": "CHANDAI", "libell_d_acheminement": "CHANDAI", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61092"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61a8512ef18cc67132692b007aa3f056e4da0999", "fields": {"nom_de_la_commune": "LA CHAPELLE BICHE", "libell_d_acheminement": "LA CHAPELLE BICHE", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61095"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45d984faa4ec970d9b9b5f061c4cf2fa2ebc093c", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTLIGEON", "libell_d_acheminement": "LA CHAPELLE MONTLIGEON", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61097"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8738b55560ac6fe41be5c5a31cbf5b351848e0aa", "fields": {"nom_de_la_commune": "LA CHAUX", "libell_d_acheminement": "LA CHAUX", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61104"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4f8bd594a76674c663643b56833a41357a5b05", "fields": {"nom_de_la_commune": "CISAI ST AUBIN", "libell_d_acheminement": "CISAI ST AUBIN", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61108"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b623e3305bbfb224a9e3af465e2fdb4f873419b", "fields": {"nom_de_la_commune": "COMMEAUX", "libell_d_acheminement": "COMMEAUX", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61114"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250f221863fe8e9f12491972d41c8f0db2302551", "fields": {"code_postal": "61110", "code_commune_insee": "61116", "libell_d_acheminement": "SABLONS SUR HUISNE", "ligne_5": "CONDE SUR HUISNE", "nom_de_la_commune": "SABLONS SUR HUISNE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbc46a37f10680a528c6794175514835071f50de", "fields": {"nom_de_la_commune": "COULIMER", "libell_d_acheminement": "COULIMER", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61121"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad876b1ba1035ddfdb76ceb79b869e72139259b", "fields": {"nom_de_la_commune": "LA COULONCHE", "libell_d_acheminement": "LA COULONCHE", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61124"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbb9ea95d35e05901c2233390bae5ccaa6393dd8", "fields": {"nom_de_la_commune": "CROISILLES", "libell_d_acheminement": "CROISILLES", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61138"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c354110d8b2557d9158f96e286e3c0c91413808f", "fields": {"nom_de_la_commune": "CUISSAI", "libell_d_acheminement": "CUISSAI", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61141"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a17fbc0f3ed2bebaa27490c5a69302e3540a45", "fields": {"nom_de_la_commune": "ECORCHES", "libell_d_acheminement": "ECORCHES", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61152"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "095a36cfcc5e817ac1b8a51d523bedd55a933b95", "fields": {"code_postal": "61150", "code_commune_insee": "61153", "libell_d_acheminement": "ECOUCHE LES VALLEES", "ligne_5": "LA COURBE", "nom_de_la_commune": "ECOUCHE LES VALLEES", "coordonnees_gps": [48.689271735, -0.160878678155]}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed3d0cb92767488bba7e85417cfc189cc1ebcbb4", "fields": {"nom_de_la_commune": "ESSAY", "libell_d_acheminement": "ESSAY", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61156"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc2a3553981c4db0ad28d32b0aee7bd3ee5443b", "fields": {"nom_de_la_commune": "LA FERRIERE AU DOYEN", "libell_d_acheminement": "LA FERRIERE AU DOYEN", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61162"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "337a3d46ef11774b60ed8ab5fb76ac6a4a02056e", "fields": {"nom_de_la_commune": "LA FERRIERE AUX ETANGS", "libell_d_acheminement": "LA FERRIERE AUX ETANGS", "code_postal": "61450", "coordonnees_gps": [48.6630002344, -0.54676985736], "code_commune_insee": "61163"}, "geometry": {"type": "Point", "coordinates": [-0.54676985736, 48.6630002344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee682c9fe61bc935be85620d4aa135a6d52ae0c3", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "GLOS LA FERRIERE", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87075113bc258b10fdb0f56828c0dccf243db41f", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "VILLERS EN OUCHE", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c472f80b6d8073871bf322330923bc0e92dadb", "fields": {"nom_de_la_commune": "FONTAINE LES BASSETS", "libell_d_acheminement": "FONTAINE LES BASSETS", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61171"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a659a727ddb0c5312d2b288c4cc6a7bff3d6e728", "fields": {"nom_de_la_commune": "FONTENAI LES LOUVETS", "libell_d_acheminement": "FONTENAI LES LOUVETS", "code_postal": "61420", "coordonnees_gps": [48.4829812527, -0.0377038824512], "code_commune_insee": "61172"}, "geometry": {"type": "Point", "coordinates": [-0.0377038824512, 48.4829812527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dbeac1969e47d2c5ac22b7cb3f4d69e84f3e7e5", "fields": {"nom_de_la_commune": "GACE", "libell_d_acheminement": "GACE", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61181"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b85b7194b2b5dfce6cc2fba4207954314a40d5", "fields": {"nom_de_la_commune": "GINAI", "libell_d_acheminement": "GINAI", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61190"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fd105170486a47f4d079bc650324354043796a2", "fields": {"nom_de_la_commune": "GUERQUESALLES", "libell_d_acheminement": "GUERQUESALLES", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61198"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6080b89c89c1d40330d2b0e2932009c692cc79c4", "fields": {"nom_de_la_commune": "HAUTERIVE", "libell_d_acheminement": "HAUTERIVE", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61202"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "655c278fcb9aca7a10c2f3b215f3ff331b7a49ea", "fields": {"nom_de_la_commune": "L HOME CHAMONDOT", "libell_d_acheminement": "L HOME CHAMONDOT", "code_postal": "61290", "coordonnees_gps": [48.5268185363, 0.799843312026], "code_commune_insee": "61206"}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2872d4c60afe79e0b8a0fc07d194c008d71ff9c2", "fields": {"nom_de_la_commune": "IGE", "libell_d_acheminement": "IGE", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61207"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6567e8a13225b7015601fe0f3167e3b576911d4", "fields": {"nom_de_la_commune": "WANCHY CAPVAL", "libell_d_acheminement": "WANCHY CAPVAL", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76749"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e56f2f8d845ab310f7a52d4dc6e8f192403c9cb", "fields": {"nom_de_la_commune": "YPORT", "libell_d_acheminement": "YPORT", "code_postal": "76111", "coordonnees_gps": [49.7290566584, 0.303233550691], "code_commune_insee": "76754"}, "geometry": {"type": "Point", "coordinates": [0.303233550691, 49.7290566584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d280f7fcb927f7133bf15b152c54985e0a35c30c", "fields": {"nom_de_la_commune": "YVILLE SUR SEINE", "libell_d_acheminement": "YVILLE SUR SEINE", "code_postal": "76530", "coordonnees_gps": [49.3726997193, 0.948232561629], "code_commune_insee": "76759"}, "geometry": {"type": "Point", "coordinates": [0.948232561629, 49.3726997193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abbbc04ef53ffe72e17d50dc50fb8c1330c30731", "fields": {"nom_de_la_commune": "AMPONVILLE", "libell_d_acheminement": "AMPONVILLE", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77003"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "894091c089538687eda63c7f09e14efb86b32935", "fields": {"nom_de_la_commune": "AROZ", "libell_d_acheminement": "AROZ", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70028"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69fd36dd1f77b8c0ca0df2d7b64617fa17a20291", "fields": {"nom_de_la_commune": "ATHESANS ETROITEFONTAINE", "libell_d_acheminement": "ATHESANS ETROITEFONTAINE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70031"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf6c9f42cc3c96ca89b84bcdfd115e7978f7741", "fields": {"nom_de_la_commune": "AUTOREILLE", "libell_d_acheminement": "AUTOREILLE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70039"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff37ceacdff081361ae3301a3b3c736db744639", "fields": {"nom_de_la_commune": "AUTREY LES CERRE", "libell_d_acheminement": "AUTREY LES CERRE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70040"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d10f97d23ab3a30d7481adbde69473757e6c3f60", "fields": {"nom_de_la_commune": "AUTREY LE VAY", "libell_d_acheminement": "AUTREY LE VAY", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70042"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd3f7175164026696da89eeccf210f5ded7bfbe", "fields": {"code_postal": "70100", "code_commune_insee": "70058", "libell_d_acheminement": "BEAUJEU ET QUITTEUR", "ligne_5": "QUITTEUR", "nom_de_la_commune": "BEAUJEU ET QUITTEUR", "coordonnees_gps": [47.4450284828, 5.5835389303]}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efb1ccc5bc6a7d1bec551608509e6baa25cc4256", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70062"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaca3b1e57b39d2945bd4a47d53e6d9a94eae481", "fields": {"nom_de_la_commune": "BONNEVENT VELLOREILLE", "libell_d_acheminement": "BONNEVENT VELLOREILLE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70076"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4542ba4d6d645078e9fc2b2afb655fa11f1a02a7", "fields": {"nom_de_la_commune": "BOURGUIGNON LES MOREY", "libell_d_acheminement": "BOURGUIGNON LES MOREY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70089"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee755f9ee13ec1966ec108800a7bc263a209ac61", "fields": {"nom_de_la_commune": "BRESILLEY", "libell_d_acheminement": "BRESILLEY", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70092"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ff51a32f677d55865ba1983fddf04eb10092de", "fields": {"nom_de_la_commune": "BROYE AUBIGNEY MONTSEUGNY", "libell_d_acheminement": "BROYE AUBIGNEY MONTSEUGNY", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70101"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39af0f3ad7a3cbab477600cb4092c5a753dd0c22", "fields": {"nom_de_la_commune": "LA BRUYERE", "libell_d_acheminement": "LA BRUYERE", "code_postal": "70280", "coordonnees_gps": [47.8584720576, 6.48683952427], "code_commune_insee": "70103"}, "geometry": {"type": "Point", "coordinates": [6.48683952427, 47.8584720576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "723208f343376791266cc4251d75e1bdb8ac56dc", "fields": {"nom_de_la_commune": "BUFFIGNECOURT", "libell_d_acheminement": "BUFFIGNECOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70106"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dccedec0de43c19bef28e9c6ebb5b3ccc5d8fff3", "fields": {"nom_de_la_commune": "CENDRECOURT", "libell_d_acheminement": "CENDRECOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70114"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3169a82ff14a1970111bf7a5f11eafa8b576cde", "fields": {"nom_de_la_commune": "CHALONVILLARS", "libell_d_acheminement": "CHALONVILLARS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70117"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80fbe704999cb10d3b6da773b73e7df41efe01de", "fields": {"code_postal": "70600", "code_commune_insee": "70122", "libell_d_acheminement": "CHAMPLITTE", "ligne_5": "CHAMPLITTE LA VILLE", "nom_de_la_commune": "CHAMPLITTE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef042afc8f2639a3cbe75266b57e9336b82faa57", "fields": {"nom_de_la_commune": "CHANCEY", "libell_d_acheminement": "CHANCEY", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70126"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f15aa77176c8d11ea5b64ea164d5cea55384cbc7", "fields": {"nom_de_la_commune": "CHARCENNE", "libell_d_acheminement": "CHARCENNE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70130"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56bb587ff9104b31b6b6e2ae9a214b0a81de11d3", "fields": {"nom_de_la_commune": "CHARGEY LES GRAY", "libell_d_acheminement": "CHARGEY LES GRAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70132"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9b849933ef52eaa56c4dea3878cff134ae82541", "fields": {"nom_de_la_commune": "CHARMOILLE", "libell_d_acheminement": "CHARMOILLE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70136"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7691f6c367e52df66add66b34ed9f0df393945de", "fields": {"nom_de_la_commune": "CHASSEY LES SCEY", "libell_d_acheminement": "CHASSEY LES SCEY", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70138"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aaf7e4ccf9c9123453f46c6677edf272e987668", "fields": {"nom_de_la_commune": "CHAUMERCENNE", "libell_d_acheminement": "CHAUMERCENNE", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70142"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28878b2c879abb02dbe398b885fc70ed75965fea", "fields": {"nom_de_la_commune": "COLOMBE LES VESOUL", "libell_d_acheminement": "COLOMBE LES VESOUL", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70162"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0780376ed7f1de0585ca6c561d805af4a8932b1f", "fields": {"nom_de_la_commune": "COMBEAUFONTAINE", "libell_d_acheminement": "COMBEAUFONTAINE", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70165"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b03c880a800f2fd7e887e9b7fdeb0241ce9c2fd", "fields": {"nom_de_la_commune": "COMBERJON", "libell_d_acheminement": "COMBERJON", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70166"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d54afab8c84abac680b6cb15381e48d9c07b241", "fields": {"nom_de_la_commune": "COURMONT", "libell_d_acheminement": "COURMONT", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70182"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b222b78ecbd87d0b410c76fcb6f2074df189f1c", "fields": {"nom_de_la_commune": "CUGNEY", "libell_d_acheminement": "CUGNEY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70192"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3f9cf13dfda62368b3922f1aa46e5cc7210d1b2", "fields": {"nom_de_la_commune": "DENEVRE", "libell_d_acheminement": "DENEVRE", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70204"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "899f7200adcf4c728dc6d94b420d0be68b08b27a", "fields": {"nom_de_la_commune": "ESPRELS", "libell_d_acheminement": "ESPRELS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70219"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9949cd7ecd80c5cab333016640bd91dd7ed093ea", "fields": {"nom_de_la_commune": "FAUCOGNEY ET LA MER", "libell_d_acheminement": "FAUCOGNEY ET LA MER", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70227"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ea33baeaba0bf8a89f813299b27cecfc623ae7c", "fields": {"code_postal": "70160", "code_commune_insee": "70228", "libell_d_acheminement": "FAVERNEY", "ligne_5": "PORT D ATELIER", "nom_de_la_commune": "FAVERNEY", "coordonnees_gps": [47.7821357866, 6.09657961176]}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74cd2d3c3dfce4bf1e65ad6f844565daeb431fdc", "fields": {"nom_de_la_commune": "FLAGY", "libell_d_acheminement": "FLAGY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70235"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7aee3ef7cdeb13fd167d2a9123163a5a730631c", "fields": {"nom_de_la_commune": "FLEUREY LES ST LOUP", "libell_d_acheminement": "FLEUREY LES ST LOUP", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70238"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5274a4b362c1008665c2fea293a9173307284658", "fields": {"nom_de_la_commune": "FONTENOIS LA VILLE", "libell_d_acheminement": "FONTENOIS LA VILLE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70242"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d5cc74f79b62760a42099d97579a0f2c7da9555", "fields": {"nom_de_la_commune": "FOUCHECOURT", "libell_d_acheminement": "FOUCHECOURT", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70244"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c40e2d2ca830e2d9d62cb641c428c8d01254b353", "fields": {"nom_de_la_commune": "FRANCALMONT", "libell_d_acheminement": "FRANCALMONT", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70249"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bebe9fab83d154b1a33d6fb199ef71a0492f3866", "fields": {"code_postal": "70600", "code_commune_insee": "70252", "libell_d_acheminement": "FRAMONT", "ligne_5": "MONT LE FRANOIS", "nom_de_la_commune": "FRAMONT", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528529672e535b6df50485b591154d00f888169c", "fields": {"nom_de_la_commune": "FRESNE ST MAMES", "libell_d_acheminement": "FRESNE ST MAMES", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70255"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96a4fb48d0050244bc59d9d0b3af3c6340901d84", "fields": {"nom_de_la_commune": "GENEVREUILLE", "libell_d_acheminement": "GENEVREUILLE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70262"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd409f718bc4b194290cc306edd1c335babe3021", "fields": {"nom_de_la_commune": "GERMIGNEY", "libell_d_acheminement": "GERMIGNEY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70265"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4decb3f12b07555338a71edc10e9125d990519c3", "fields": {"nom_de_la_commune": "GRANGES LE BOURG", "libell_d_acheminement": "GRANGES LE BOURG", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70277"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d777e30403218fbc615451152d0145ea8d81908", "fields": {"nom_de_la_commune": "GRAY", "libell_d_acheminement": "GRAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70279"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1c3bca0465887f09950ed179b16523245974ac", "fields": {"nom_de_la_commune": "GY", "libell_d_acheminement": "GY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70282"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c62cf8d2ff7f6201131f0cd1a2e586d080c3aa9", "fields": {"code_postal": "70400", "code_commune_insee": "70285", "libell_d_acheminement": "HERICOURT", "ligne_5": "BUSSUREL", "nom_de_la_commune": "HERICOURT", "coordonnees_gps": [47.6008561434, 6.6927201573]}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37d1a4afd2829be457d4e5e4cdc57b5a8771bb3", "fields": {"code_postal": "70400", "code_commune_insee": "70285", "libell_d_acheminement": "HERICOURT", "ligne_5": "BYANS", "nom_de_la_commune": "HERICOURT", "coordonnees_gps": [47.6008561434, 6.6927201573]}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5241a65e81933fc75edbb90ba2b2e839e013f60", "fields": {"nom_de_la_commune": "LANTENOT", "libell_d_acheminement": "LANTENOT", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70294"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d398edcdb2ac343b979579b88542b3b9461b3bfc", "fields": {"nom_de_la_commune": "LIEFFRANS", "libell_d_acheminement": "LIEFFRANS", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70301"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f51ed02636ba5f63fd8d8ea798012123809e667", "fields": {"nom_de_la_commune": "LOEUILLEY", "libell_d_acheminement": "LOEUILLEY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70305"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d793bc949bd39038ccd35c1846ea8955cfb730c0", "fields": {"nom_de_la_commune": "MAGNONCOURT", "libell_d_acheminement": "MAGNONCOURT", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70315"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f29ac4c9b5db3f08de945aee644d76cb7cf58c58", "fields": {"nom_de_la_commune": "MAGNY LES JUSSEY", "libell_d_acheminement": "MAGNY LES JUSSEY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70320"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6811449cb41e75618688177107c693404a09818", "fields": {"nom_de_la_commune": "MALANS", "libell_d_acheminement": "MALANS", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70327"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9341aec61f25838ce3ff5d487851e02d8f95a33", "fields": {"nom_de_la_commune": "MALVILLERS", "libell_d_acheminement": "MALVILLERS", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70329"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07297ae3a14a1468a6ff5bf0c70fd51f00c47f8a", "fields": {"nom_de_la_commune": "MARAST", "libell_d_acheminement": "MARAST", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70332"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa368159c548adf56770df5c055b23d0bd11059", "fields": {"nom_de_la_commune": "MELECEY", "libell_d_acheminement": "MELECEY", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70336"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46587a92898e62e9dab1269e7da63364915d48bb", "fields": {"nom_de_la_commune": "MEURCOURT", "libell_d_acheminement": "MEURCOURT", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70344"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05fa4def8d014dceb9dce848e9704fbc3a0a4f41", "fields": {"nom_de_la_commune": "MIELLIN", "libell_d_acheminement": "MIELLIN", "code_postal": "70440", "coordonnees_gps": [47.8263854039, 6.71661809603], "code_commune_insee": "70345"}, "geometry": {"type": "Point", "coordinates": [6.71661809603, 47.8263854039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d288eefd349e52720caff52d5ae76d1871cb85e", "fields": {"nom_de_la_commune": "LA MONTAGNE", "libell_d_acheminement": "LA MONTAGNE", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70352"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b9eb0fd522452797a3b949f9782ab5bf899e58", "fields": {"nom_de_la_commune": "MONTCEY", "libell_d_acheminement": "MONTCEY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70358"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff784b1d5093a66914ee7871531023f01847f01", "fields": {"nom_de_la_commune": "MONTIGNY LES VESOUL", "libell_d_acheminement": "MONTIGNY LES VESOUL", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70363"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59d5fc39bd503e400929c2d00c2779d1426f3a88", "fields": {"nom_de_la_commune": "MONTJUSTIN ET VELOTTE", "libell_d_acheminement": "MONTJUSTIN ET VELOTTE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70364"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1c97e41c574806a62b54aceb988b7db2c19e60", "fields": {"nom_de_la_commune": "VILLERS CHEMIN ET MONT LES ETRELLES", "libell_d_acheminement": "VILLERS CHEMIN MONT LES ETRELLES", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70366"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d859dbecad549ba666e1ac89a4b0e5c8fc347cbc", "fields": {"nom_de_la_commune": "MONT LE VERNOIS", "libell_d_acheminement": "MONT LE VERNOIS", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70367"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d2d336398d401022d8283b0d641a41716b5266c", "fields": {"nom_de_la_commune": "MONTOT", "libell_d_acheminement": "MONTOT", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70368"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c01c5b3ff63549c943603016100cf2668375f83", "fields": {"nom_de_la_commune": "MONT ST LEGER", "libell_d_acheminement": "MONT ST LEGER", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70369"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5b4592f1ef6ea9b83b75f374cac303274b3f8f", "fields": {"nom_de_la_commune": "LA ROCHE MOREY", "libell_d_acheminement": "LA ROCHE MOREY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70373"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7d5abefbd5cf5757e339310af3a022cc762a001", "fields": {"code_postal": "70120", "code_commune_insee": "70373", "libell_d_acheminement": "LA ROCHE MOREY", "ligne_5": "SUAUCOURT ET PISSELOUP", "nom_de_la_commune": "LA ROCHE MOREY", "coordonnees_gps": [47.6952639398, 5.81680839597]}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "240faf2724f7fc77ea0a7d01f001527563fc8d3b", "fields": {"nom_de_la_commune": "MOTEY BESUCHE", "libell_d_acheminement": "MOTEY BESUCHE", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70374"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d63be6fd66b8e2c4a143393aae261360991e94", "fields": {"nom_de_la_commune": "MOTEY SUR SAONE", "libell_d_acheminement": "MOTEY SUR SAONE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70375"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "508a3ce0b7fe5f8b24ff541552786dc32d46a3f7", "fields": {"nom_de_la_commune": "NEUREY EN VAUX", "libell_d_acheminement": "NEUREY EN VAUX", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70380"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb32cf229122d79f305250b6f1124014db2566a0", "fields": {"nom_de_la_commune": "NEUREY LES LA DEMIE", "libell_d_acheminement": "NEUREY LES LA DEMIE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70381"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edb9d3d8088a6d750e07eda08b45240ab989a63d", "fields": {"nom_de_la_commune": "OISELAY ET GRACHAUX", "libell_d_acheminement": "OISELAY ET GRACHAUX", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70393"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c16a24481075a78cf8d144b16134edb5dd8f8a", "fields": {"nom_de_la_commune": "ORMOY", "libell_d_acheminement": "ORMOY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70399"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86ce900e7c4f001cc8e06e7e3877eca2d06c417", "fields": {"nom_de_la_commune": "PENNESIERES", "libell_d_acheminement": "PENNESIERES", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70405"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b5196480f26f619a9a9beade0e410fe08705044", "fields": {"nom_de_la_commune": "PIN", "libell_d_acheminement": "PIN", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70410"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a3bec8b6ef3cae09cc4037164c723a6c115906", "fields": {"nom_de_la_commune": "PREIGNEY", "libell_d_acheminement": "PREIGNEY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70423"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "517985f4abd9def82a86904216f22e4e8602d602", "fields": {"nom_de_la_commune": "PUSEY", "libell_d_acheminement": "PUSEY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70428"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fc3b5cdaf42e0442aae787f388df6c2fe4b2ff", "fields": {"nom_de_la_commune": "QUERS", "libell_d_acheminement": "QUERS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70432"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec0676ef87ef636b72e8c971cd67acc911827fdd", "fields": {"nom_de_la_commune": "RAY SUR SAONE", "libell_d_acheminement": "RAY SUR SAONE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70438"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08fd4a5fb0c5a077e80d359ad4035c9b44c4e7ac", "fields": {"nom_de_la_commune": "RECOLOGNE LES RIOZ", "libell_d_acheminement": "RECOLOGNE LES RIOZ", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70441"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4257ed378863bf46c7c4de61d4238280a12decaa", "fields": {"nom_de_la_commune": "RENAUCOURT", "libell_d_acheminement": "RENAUCOURT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70442"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14fe6c6f639f7eb4222b1e1acf99da3fbe9ecf57", "fields": {"nom_de_la_commune": "LA RESIE ST MARTIN", "libell_d_acheminement": "LA RESIE ST MARTIN", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70444"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7a8cba03c5d0dc72ca655439e7e3e2a5e878a70", "fields": {"nom_de_la_commune": "RIGNOVELLE", "libell_d_acheminement": "RIGNOVELLE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70445"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10ddc0671a24c68670a5bd7cf99225aa7831a43d", "fields": {"nom_de_la_commune": "RIOZ", "libell_d_acheminement": "RIOZ", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70447"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15357e703b5a53c1df14885375ef3c0692a53bad", "fields": {"code_postal": "70190", "code_commune_insee": "70447", "libell_d_acheminement": "RIOZ", "ligne_5": "LES FONTENIS", "nom_de_la_commune": "RIOZ", "coordonnees_gps": [47.4343544936, 6.05247846774]}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff3b8e7c7ac64b1520a544f8543f18383f9b3fe", "fields": {"nom_de_la_commune": "ROYE", "libell_d_acheminement": "ROYE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70455"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a969ec24d0cd466426674a9d0de2178cca1dabf8", "fields": {"nom_de_la_commune": "RUHANS", "libell_d_acheminement": "RUHANS", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70456"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290fc710b34276de543f37863b716f1f0797c482", "fields": {"nom_de_la_commune": "RUPT SUR SAONE", "libell_d_acheminement": "RUPT SUR SAONE", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70457"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283de7411cdf025613231074e907ca37bd02c279", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70459"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0737479bb511d64e95432ff02f4e7f0456605b1f", "fields": {"nom_de_la_commune": "ST GAND", "libell_d_acheminement": "ST GAND", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70463"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c115ae7a436087f4bd45911c14b23f5394f8d90", "fields": {"nom_de_la_commune": "ST VALBERT", "libell_d_acheminement": "ST VALBERT", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70475"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "786c83425665c2d6a450f6f69b42b999b89cde62", "fields": {"nom_de_la_commune": "SAUVIGNEY LES PESMES", "libell_d_acheminement": "SAUVIGNEY LES PESMES", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70480"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f385e4b4ef7a4188f0fe00df30a9a5df91338be1", "fields": {"nom_de_la_commune": "SAVOYEUX", "libell_d_acheminement": "SAVOYEUX", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70481"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ca638445158e768dcc3c3239b227a9e363cba33", "fields": {"nom_de_la_commune": "SECENANS", "libell_d_acheminement": "SECENANS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70484"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "795bbb3dd3beca1d36265ae133c227c2163a0b3d", "fields": {"nom_de_la_commune": "SENARGENT MIGNAFANS", "libell_d_acheminement": "SENARGENT MIGNAFANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70487"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f42b4af2165417cad63d267bdcb5407e66522c", "fields": {"code_postal": "70110", "code_commune_insee": "70487", "libell_d_acheminement": "SENARGENT MIGNAFANS", "ligne_5": "MIGNAFANS", "nom_de_la_commune": "SENARGENT MIGNAFANS", "coordonnees_gps": [47.5606005441, 6.44969851367]}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44ec31df269e64ea9ae50c5767e3eb9620353ac7", "fields": {"nom_de_la_commune": "THEULEY", "libell_d_acheminement": "THEULEY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70499"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6899d633d58e37bb90cf5aa53cde047dde56f397", "fields": {"nom_de_la_commune": "RODEMACK", "libell_d_acheminement": "RODEMACK", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57588"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83883ddd789bf66c2648064ea649a341ff7182b3", "fields": {"nom_de_la_commune": "ROMELFING", "libell_d_acheminement": "ROMELFING", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57592"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "752d0975b9160544e7850d76bdd59ed13f9633f2", "fields": {"nom_de_la_commune": "ROPPEVILLER", "libell_d_acheminement": "ROPPEVILLER", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57594"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc022586ed39a66f2dd0efcd2f7e10bede4a53cd", "fields": {"nom_de_la_commune": "ROSBRUCK", "libell_d_acheminement": "ROSBRUCK", "code_postal": "57800", "coordonnees_gps": [49.1440107234, 6.82296653278], "code_commune_insee": "57596"}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf99c07f318cb0681bdd2e528ecfc56208248a1c", "fields": {"nom_de_la_commune": "ROUPELDANGE", "libell_d_acheminement": "ROUPELDANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57599"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7224e5b50bd3cf7ab3d24010fa859a0a4006c820", "fields": {"nom_de_la_commune": "RUSSANGE", "libell_d_acheminement": "RUSSANGE", "code_postal": "57390", "coordonnees_gps": [49.4698725399, 5.94728059458], "code_commune_insee": "57603"}, "geometry": {"type": "Point", "coordinates": [5.94728059458, 49.4698725399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b9458183f281007c3fa8662dfb84eabe1c7eebc", "fields": {"nom_de_la_commune": "ST JURE", "libell_d_acheminement": "ST JURE", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57617"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8981fa58a52d966e8edc779df55c6c9297ea492b", "fields": {"nom_de_la_commune": "ST LOUIS", "libell_d_acheminement": "ST LOUIS", "code_postal": "57820", "coordonnees_gps": [48.7214419242, 7.22862669066], "code_commune_insee": "57618"}, "geometry": {"type": "Point", "coordinates": [7.22862669066, 48.7214419242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6727b168d8b359b2a4db40f727e7271d24fcf8a1", "fields": {"nom_de_la_commune": "ST LOUIS LES BITCHE", "libell_d_acheminement": "ST LOUIS LES BITCHE", "code_postal": "57620", "coordonnees_gps": [48.9917951549, 7.41577190853], "code_commune_insee": "57619"}, "geometry": {"type": "Point", "coordinates": [7.41577190853, 48.9917951549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a5bcdca43019725c405e1eb8f944338c5aa0625", "fields": {"nom_de_la_commune": "STE MARIE AUX CHENES", "libell_d_acheminement": "STE MARIE AUX CHENES", "code_postal": "57255", "coordonnees_gps": [49.1915639312, 6.00678448387], "code_commune_insee": "57620"}, "geometry": {"type": "Point", "coordinates": [6.00678448387, 49.1915639312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ab5094136edc8bbb1aa90cb13a81d27d08f47d", "fields": {"nom_de_la_commune": "SARRALTROFF", "libell_d_acheminement": "SARRALTROFF", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57629"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df43ace2f1823786225f099ee068b73ed59a3e7", "fields": {"nom_de_la_commune": "SAULNY", "libell_d_acheminement": "SAULNY", "code_postal": "57140", "coordonnees_gps": [49.1663107654, 6.13682025903], "code_commune_insee": "57634"}, "geometry": {"type": "Point", "coordinates": [6.13682025903, 49.1663107654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5200f88479c6e221b6f990e29d38a74d3446c0c8", "fields": {"nom_de_la_commune": "SEREMANGE ERZANGE", "libell_d_acheminement": "SEREMANGE ERZANGE", "code_postal": "57290", "coordonnees_gps": [49.3041832839, 6.102475564], "code_commune_insee": "57647"}, "geometry": {"type": "Point", "coordinates": [6.102475564, 49.3041832839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45015936ac76261e0f27d59fb0351a725ab2d768", "fields": {"nom_de_la_commune": "SERVIGNY LES STE BARBE", "libell_d_acheminement": "SERVIGNY LES STE BARBE", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57649"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4897c45e65e64fdf00a1090007511635cc95f2cf", "fields": {"nom_de_la_commune": "SOUCHT", "libell_d_acheminement": "SOUCHT", "code_postal": "57960", "coordonnees_gps": [48.965339221, 7.32931540364], "code_commune_insee": "57658"}, "geometry": {"type": "Point", "coordinates": [7.32931540364, 48.965339221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcde6cbcbdfdbe5a11ea493d4790ce53a86808b6", "fields": {"nom_de_la_commune": "SPICHEREN", "libell_d_acheminement": "SPICHEREN", "code_postal": "57350", "coordonnees_gps": [49.2014476423, 6.94907800284], "code_commune_insee": "57659"}, "geometry": {"type": "Point", "coordinates": [6.94907800284, 49.2014476423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d598590a904fe799a37738d99ab6966b773b87a", "fields": {"nom_de_la_commune": "TARQUIMPOL", "libell_d_acheminement": "TARQUIMPOL", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57664"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3838c6bc1ac363613ed6180d9680ccb1a230d5", "fields": {"nom_de_la_commune": "TENTELING", "libell_d_acheminement": "TENTELING", "code_postal": "57980", "coordonnees_gps": [49.1092636069, 6.94134556596], "code_commune_insee": "57665"}, "geometry": {"type": "Point", "coordinates": [6.94134556596, 49.1092636069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9138cbd4d822a27d16d32e8e798cb7d0895465", "fields": {"nom_de_la_commune": "THICOURT", "libell_d_acheminement": "THICOURT", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57670"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6417f65e21248b350b56e12e714eba71af9b6a", "fields": {"nom_de_la_commune": "THIMONVILLE", "libell_d_acheminement": "THIMONVILLE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57671"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6604c6b5522fc0c9f6f216c5af74198c15233c9c", "fields": {"nom_de_la_commune": "THIONVILLE", "libell_d_acheminement": "THIONVILLE", "code_postal": "57100", "coordonnees_gps": [49.376778126, 6.13767637123], "code_commune_insee": "57672"}, "geometry": {"type": "Point", "coordinates": [6.13767637123, 49.376778126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057dda1501f0877a5484225c0ecdf5bbbf738038", "fields": {"nom_de_la_commune": "TINCRY", "libell_d_acheminement": "TINCRY", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57674"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8432d50ba26242fd2d5ebf72e7b95752f008bd6f", "fields": {"code_postal": "57870", "code_commune_insee": "57680", "libell_d_acheminement": "TROISFONTAINES", "ligne_5": "VALLERYSTHAL", "nom_de_la_commune": "TROISFONTAINES", "coordonnees_gps": [48.6442661172, 7.16634369748]}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "587822500f3fa52175dc251cdf07004434fafa92", "fields": {"nom_de_la_commune": "VAHL LES FAULQUEMONT", "libell_d_acheminement": "VAHL LES FAULQUEMONT", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57686"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a427327e42370caad16de0dc6786b52bb8c0b1a5", "fields": {"nom_de_la_commune": "VALLERANGE", "libell_d_acheminement": "VALLERANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57687"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f979c289c78f594e4c7a9a4724b62fa3f82153b3", "fields": {"nom_de_la_commune": "VALMONT", "libell_d_acheminement": "VALMONT", "code_postal": "57730", "coordonnees_gps": [49.0823148993, 6.73315918141], "code_commune_insee": "57690"}, "geometry": {"type": "Point", "coordinates": [6.73315918141, 49.0823148993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc21375a58eece7d425dad9c865a4bd9d242db2e", "fields": {"nom_de_la_commune": "VANTOUX", "libell_d_acheminement": "VANTOUX", "code_postal": "57070", "coordonnees_gps": [49.1173648724, 6.2035419151], "code_commune_insee": "57693"}, "geometry": {"type": "Point", "coordinates": [6.2035419151, 49.1173648724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb8d9a8587efc85ca30e58682b8e1ba36b6d4ee7", "fields": {"nom_de_la_commune": "VAXY", "libell_d_acheminement": "VAXY", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57702"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "526c24b0ce61a7a7311e4b1e8d321245ca3cb44a", "fields": {"nom_de_la_commune": "VELVING", "libell_d_acheminement": "VELVING", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57705"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9d17f2ff885e922e6bb40a103aa552249eb848", "fields": {"nom_de_la_commune": "VERGAVILLE", "libell_d_acheminement": "VERGAVILLE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57706"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1abd522a77f2834c1066fca36ecc877c95674dd2", "fields": {"nom_de_la_commune": "VIEUX LIXHEIM", "libell_d_acheminement": "VIEUX LIXHEIM", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57713"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297bc03c58c9e63e1a1207c0da4fcdc4d6ffc38e", "fields": {"nom_de_la_commune": "HAUTE VIGNEULLES", "libell_d_acheminement": "HAUTE VIGNEULLES", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57714"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f62a29201372951531d356f38325425ec9340f12", "fields": {"nom_de_la_commune": "VIGNY", "libell_d_acheminement": "VIGNY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57715"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4abb8b19670803072266328b4baf5ef0ba58bb98", "fields": {"nom_de_la_commune": "VIRMING", "libell_d_acheminement": "VIRMING", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57723"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef2d30ce6e5ac03e404bf03989bca099a6f4224", "fields": {"nom_de_la_commune": "VITTONCOURT", "libell_d_acheminement": "VITTONCOURT", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57726"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8b012cfa5fb227ed934c4c3254731cf5ed58853", "fields": {"nom_de_la_commune": "VOYER", "libell_d_acheminement": "VOYER", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57734"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394c8cef6dbb2c9d3ac78d22d88d1d15e40502d8", "fields": {"nom_de_la_commune": "WALDWISSE", "libell_d_acheminement": "WALDWISSE", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57740"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de07862346c3651779fcc1c7ea1b57cf97714f34", "fields": {"nom_de_la_commune": "WIESVILLER", "libell_d_acheminement": "WIESVILLER", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57745"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec123c06ea5b9411b29259ca43f99c274fa82a3b", "fields": {"nom_de_la_commune": "WINTERSBOURG", "libell_d_acheminement": "WINTERSBOURG", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57747"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a58d5b20796ee616b0e72a8306faf809b9d4b1", "fields": {"nom_de_la_commune": "WITTRING", "libell_d_acheminement": "WITTRING", "code_postal": "57905", "coordonnees_gps": [49.0718152134, 7.12581121183], "code_commune_insee": "57748"}, "geometry": {"type": "Point", "coordinates": [7.12581121183, 49.0718152134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc14e06005756ad3774f629621676d2da6d43f93", "fields": {"nom_de_la_commune": "WOELFLING LES SARREGUEMINES", "libell_d_acheminement": "WOELFLING LES SARREGUEMINES", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57750"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fa4d55e466ca52d5f004b640f4c93ea085a4e5", "fields": {"nom_de_la_commune": "ARQUIAN", "libell_d_acheminement": "ARQUIAN", "code_postal": "58310", "coordonnees_gps": [47.5133822034, 3.08684545659], "code_commune_insee": "58012"}, "geometry": {"type": "Point", "coordinates": [3.08684545659, 47.5133822034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc48e355aa28191f691405564b3f0318da4af62c", "fields": {"nom_de_la_commune": "AVREE", "libell_d_acheminement": "AVREE", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58019"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f415d85cf3ffca054c43f1f3a3c9e5b35f8a572e", "fields": {"nom_de_la_commune": "BALLERAY", "libell_d_acheminement": "BALLERAY", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58022"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "808f5c3e8ce03b3ce2e44f8e9ad5809d4b77101d", "fields": {"nom_de_la_commune": "BOUHY", "libell_d_acheminement": "BOUHY", "code_postal": "58310", "coordonnees_gps": [47.5133822034, 3.08684545659], "code_commune_insee": "58036"}, "geometry": {"type": "Point", "coordinates": [3.08684545659, 47.5133822034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c28b82a6805a59a467089ae408d8276a1888ef27", "fields": {"nom_de_la_commune": "BRASSY", "libell_d_acheminement": "BRASSY", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58037"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ba2eedf4662de4474aa0ea1d84536fb8dc85437", "fields": {"nom_de_la_commune": "BREVES", "libell_d_acheminement": "BREVES", "code_postal": "58530", "coordonnees_gps": [47.4363082505, 3.60631182763], "code_commune_insee": "58039"}, "geometry": {"type": "Point", "coordinates": [3.60631182763, 47.4363082505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78642b2b0e1b99049a4dfe389cd9e9b25628c4f4", "fields": {"nom_de_la_commune": "BRINON SUR BEUVRON", "libell_d_acheminement": "BRINON SUR BEUVRON", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58041"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6d617bc13a2441f0bdee520609df26372e805e9", "fields": {"nom_de_la_commune": "CERCY LA TOUR", "libell_d_acheminement": "CERCY LA TOUR", "code_postal": "58340", "coordonnees_gps": [46.8965884387, 3.63097813462], "code_commune_insee": "58046"}, "geometry": {"type": "Point", "coordinates": [3.63097813462, 46.8965884387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05450421ecaced425a4eecab4737582e0c927d58", "fields": {"nom_de_la_commune": "CESSY LES BOIS", "libell_d_acheminement": "CESSY LES BOIS", "code_postal": "58220", "coordonnees_gps": [47.379682807, 3.15630792505], "code_commune_insee": "58048"}, "geometry": {"type": "Point", "coordinates": [3.15630792505, 47.379682807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ed49b5d09634bf2ba71cc655e488c79bce8ae08", "fields": {"nom_de_la_commune": "CHAMPVOUX", "libell_d_acheminement": "CHAMPVOUX", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58056"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "459b71b1824f29be584d858bb555ffa9dcbfff83", "fields": {"nom_de_la_commune": "CHAULGNES", "libell_d_acheminement": "CHAULGNES", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58067"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24a631dcf58e182a5b9db8a4c07a603f19e705c9", "fields": {"nom_de_la_commune": "CHAUMOT", "libell_d_acheminement": "CHAUMOT", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58069"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaa863c97783db193d0db716c09195d5dd61fb57", "fields": {"nom_de_la_commune": "LA COLLANCELLE", "libell_d_acheminement": "LA COLLANCELLE", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58080"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a17da993f9aacb4547f8718230c55f7d39b50602", "fields": {"nom_de_la_commune": "COLMERY", "libell_d_acheminement": "COLMERY", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58081"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "901301801c9fb4c32e9a87fdd1b34598cd919148", "fields": {"nom_de_la_commune": "COSNE COURS SUR LOIRE", "libell_d_acheminement": "COSNE COURS SUR LOIRE", "code_postal": "58200", "coordonnees_gps": [47.4176980884, 2.99755366408], "code_commune_insee": "58086"}, "geometry": {"type": "Point", "coordinates": [2.99755366408, 47.4176980884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad99aa69040de42cbac59f1e0a05b4d472a6b75", "fields": {"nom_de_la_commune": "CRUX LA VILLE", "libell_d_acheminement": "CRUX LA VILLE", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58092"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52db2f7b6296cc34a54779136ea84695e8f49ce8", "fields": {"nom_de_la_commune": "DIENNES AUBIGNY", "libell_d_acheminement": "DIENNES AUBIGNY", "code_postal": "58340", "coordonnees_gps": [46.8965884387, 3.63097813462], "code_commune_insee": "58097"}, "geometry": {"type": "Point", "coordinates": [3.63097813462, 46.8965884387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7e4b9b20e760c8682615824f55d0508ed9bf633", "fields": {"nom_de_la_commune": "DUN LES PLACES", "libell_d_acheminement": "DUN LES PLACES", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58106"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43b1b658e33e3243998585042fc123805c65744", "fields": {"nom_de_la_commune": "EMPURY", "libell_d_acheminement": "EMPURY", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58108"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2a92e24f564b449935463ff51bbed62a0cec339", "fields": {"nom_de_la_commune": "FOURS", "libell_d_acheminement": "FOURS", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58118"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc061acba6a7042b1a7cfb401db18ae68e5d205", "fields": {"nom_de_la_commune": "GUERIGNY", "libell_d_acheminement": "GUERIGNY", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58131"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e9baf0382558554b2702893d029a6970d15cf18", "fields": {"nom_de_la_commune": "GUIPY", "libell_d_acheminement": "GUIPY", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58132"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "727e3144e33e41039a20ffe96ab853b0b410b242", "fields": {"nom_de_la_commune": "HERY", "libell_d_acheminement": "HERY", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58133"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a01f1c7240afb9eae3851ded29b3c3246317d15a", "fields": {"nom_de_la_commune": "LANTY", "libell_d_acheminement": "LANTY", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58139"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95bcb63c0729a9458f906531b0bffe938395125e", "fields": {"nom_de_la_commune": "LIMANTON", "libell_d_acheminement": "LIMANTON", "code_postal": "58290", "coordonnees_gps": [46.9712229118, 3.77516056611], "code_commune_insee": "58142"}, "geometry": {"type": "Point", "coordinates": [3.77516056611, 46.9712229118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f25dcce040daeddf475351904989382fedb30c7", "fields": {"nom_de_la_commune": "LYS", "libell_d_acheminement": "LYS", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58150"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69ff8062bf2b0c0b07ed60cdf7241df6e74b1ef7", "fields": {"nom_de_la_commune": "LA MACHINE", "libell_d_acheminement": "LA MACHINE", "code_postal": "58260", "coordonnees_gps": [46.9023530657, 3.46382245029], "code_commune_insee": "58151"}, "geometry": {"type": "Point", "coordinates": [3.46382245029, 46.9023530657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c51aefb1dd2e3e1bcad2fa300a6bdd3ed8c77c36", "fields": {"nom_de_la_commune": "MAGNY COURS", "libell_d_acheminement": "MAGNY COURS", "code_postal": "58470", "coordonnees_gps": [46.9060969897, 3.12154059247], "code_commune_insee": "58152"}, "geometry": {"type": "Point", "coordinates": [3.12154059247, 46.9060969897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffcfcf0bf780c4d687d36920657ab5951b5f07ff", "fields": {"nom_de_la_commune": "MENESTREAU", "libell_d_acheminement": "MENESTREAU", "code_postal": "58410", "coordonnees_gps": [47.4484285575, 3.26965518858], "code_commune_insee": "58162"}, "geometry": {"type": "Point", "coordinates": [3.26965518858, 47.4484285575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4573752d34f65d1a5d72b24cdfe280d4d59603", "fields": {"nom_de_la_commune": "MONCEAUX LE COMTE", "libell_d_acheminement": "MONCEAUX LE COMTE", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58170"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76eedbea2e74c30dbe8b4f093a44d466d51a301", "fields": {"nom_de_la_commune": "MOUSSY", "libell_d_acheminement": "MOUSSY", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58184"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd0650f1310ced9dd3d5d4ea3b2ce4aefbff05b4", "fields": {"nom_de_la_commune": "MOUX EN MORVAN", "libell_d_acheminement": "MOUX EN MORVAN", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58185"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5102444683ad8803bc1c598da3cc0cdff0594df1", "fields": {"nom_de_la_commune": "MURLIN", "libell_d_acheminement": "MURLIN", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58186"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cdf6d783b6e3918bc3d18d9c6b4e505bac071ea", "fields": {"nom_de_la_commune": "OUROUER", "libell_d_acheminement": "OUROUER", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58204"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c29599230fa8fa118f2904e4bc16939329551d9", "fields": {"nom_de_la_commune": "POUGNY", "libell_d_acheminement": "POUGNY", "code_postal": "58200", "coordonnees_gps": [47.4176980884, 2.99755366408], "code_commune_insee": "58213"}, "geometry": {"type": "Point", "coordinates": [2.99755366408, 47.4176980884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0dddd72237e2d7c64b21f8c3019cbe6b0119819", "fields": {"nom_de_la_commune": "POUILLY SUR LOIRE", "libell_d_acheminement": "POUILLY SUR LOIRE", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58215"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0c19a9dae41931bf81bf37a36a81a26c1898b4b", "fields": {"nom_de_la_commune": "PREMERY", "libell_d_acheminement": "PREMERY", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58218"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7944283848287b145fa2788732bbf5f35fc3a95", "fields": {"nom_de_la_commune": "RAVEAU", "libell_d_acheminement": "RAVEAU", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58220"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1e57ef08b8d77e07a458c82775974314a516238", "fields": {"nom_de_la_commune": "ROUY", "libell_d_acheminement": "ROUY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58223"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fd61e1d525f9f3a251e0dd442d65cb4ec983b6f", "fields": {"nom_de_la_commune": "ST AMAND EN PUISAYE", "libell_d_acheminement": "ST AMAND EN PUISAYE", "code_postal": "58310", "coordonnees_gps": [47.5133822034, 3.08684545659], "code_commune_insee": "58227"}, "geometry": {"type": "Point", "coordinates": [3.08684545659, 47.5133822034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "700b0bf65f6e5dcf5cd6fd1b28e94315898e80d3", "fields": {"nom_de_la_commune": "ST AUBIN LES FORGES", "libell_d_acheminement": "ST AUBIN LES FORGES", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58231"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a35f4df954cef0c18fdcba1bd2741237e985f5", "fields": {"nom_de_la_commune": "ST BONNOT", "libell_d_acheminement": "ST BONNOT", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58234"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ace5aacbfae9a87c8d554e34208b437c5af80b05", "fields": {"nom_de_la_commune": "ST BRISSON", "libell_d_acheminement": "ST BRISSON", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58235"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a43ad3dab8e47272c82dde9c8642a9dd69e3602", "fields": {"nom_de_la_commune": "ST HILAIRE EN MORVAN", "libell_d_acheminement": "ST HILAIRE EN MORVAN", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58244"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc43654acbe9379eaa5393d096601fc31e7f6fcf", "fields": {"nom_de_la_commune": "ST HILAIRE FONTAINE", "libell_d_acheminement": "ST HILAIRE FONTAINE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58245"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03fe3511272d06401a859e701c3a481d19cbaedc", "fields": {"nom_de_la_commune": "ST HONORE LES BAINS", "libell_d_acheminement": "ST HONORE LES BAINS", "code_postal": "58360", "coordonnees_gps": [46.8973238863, 3.8600072839], "code_commune_insee": "58246"}, "geometry": {"type": "Point", "coordinates": [3.8600072839, 46.8973238863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31bbb51b7530ae4b982e0b6f544e551b6e92d459", "fields": {"nom_de_la_commune": "ST LEGER DE FOUGERET", "libell_d_acheminement": "ST LEGER DE FOUGERET", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58249"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8f2b45ea25271c35c550da079495aff51ef0f1f", "fields": {"nom_de_la_commune": "ST LEGER DES VIGNES", "libell_d_acheminement": "ST LEGER DES VIGNES", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58250"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "446814a193376ea4110744d7667863b19f51bfa1", "fields": {"nom_de_la_commune": "ST MALO EN DONZIOIS", "libell_d_acheminement": "ST MALO EN DONZIOIS", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58252"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ab01f1236a2d4607a107b373162d97d288ccf8", "fields": {"nom_de_la_commune": "SAUVIGNY LES BOIS", "libell_d_acheminement": "SAUVIGNY LES BOIS", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58273"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ffcc08996513f844a7faa6aa36fb6aa406d9cc", "fields": {"code_postal": "58160", "code_commune_insee": "58273", "libell_d_acheminement": "SAUVIGNY LES BOIS", "ligne_5": "FORGES", "nom_de_la_commune": "SAUVIGNY LES BOIS", "coordonnees_gps": [46.9269219844, 3.29890842672]}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11c21024ff7a6555c8d5baf922ad891eadf0d85", "fields": {"nom_de_la_commune": "SAXI BOURDON", "libell_d_acheminement": "SAXI BOURDON", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58275"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bdbb9f52af4d87087c4e8715dc0ea5c16f2d67", "fields": {"nom_de_la_commune": "ABLANCOURT", "libell_d_acheminement": "ABLANCOURT", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51001"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08c3fb8fa1fbbb88dda6bb63b5ecedbacd9931fa", "fields": {"nom_de_la_commune": "ST MARTIN D ABLOIS", "libell_d_acheminement": "ST MARTIN D ABLOIS", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51002"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e4a9d47539064a912aa626cab024826f9eabad", "fields": {"nom_de_la_commune": "ANGLURE", "libell_d_acheminement": "ANGLURE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51009"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720e1861437d2a23498c341296e0b195e2f68393", "fields": {"nom_de_la_commune": "AULNAY SUR MARNE", "libell_d_acheminement": "AULNAY SUR MARNE", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51023"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551e7d06e5dda066bd55229000d341502606f3be", "fields": {"nom_de_la_commune": "AVENAY VAL D OR", "libell_d_acheminement": "AVENAY VAL D OR", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51028"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27c7d5864314c5c43c7ad746e301fcd6bedf67cf", "fields": {"nom_de_la_commune": "BASLIEUX SOUS CHATILLON", "libell_d_acheminement": "BASLIEUX SOUS CHATILLON", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51038"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2b0563c55a99ad61aa8d6d0b0d913fa846187b", "fields": {"nom_de_la_commune": "BEINE NAUROY", "libell_d_acheminement": "BEINE NAUROY", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51046"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b66e593ccacc6ae8e7c0498790f83cd882f9c38f", "fields": {"nom_de_la_commune": "EMLINGEN", "libell_d_acheminement": "EMLINGEN", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68080"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3598498ce0d3524a7196b4f64eee18bd39648a26", "fields": {"nom_de_la_commune": "ETEIMBES", "libell_d_acheminement": "ETEIMBES", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68085"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b294a5c31c040284f9ead7f7de70a5437fb92151", "fields": {"nom_de_la_commune": "FERRETTE", "libell_d_acheminement": "FERRETTE", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68090"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9106c21913e2f3252f16e844ce572060407432a0", "fields": {"nom_de_la_commune": "FRELAND", "libell_d_acheminement": "FRELAND", "code_postal": "68240", "coordonnees_gps": [48.1678355817, 7.21603176483], "code_commune_insee": "68097"}, "geometry": {"type": "Point", "coordinates": [7.21603176483, 48.1678355817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d5651138d73c94f46c439cc9ecda3c1c4ac8040", "fields": {"nom_de_la_commune": "FROENINGEN", "libell_d_acheminement": "FROENINGEN", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68099"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab4eaab89ad08328eb3373e42786ac67829f579", "fields": {"nom_de_la_commune": "GEISPITZEN", "libell_d_acheminement": "GEISPITZEN", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68103"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862828cec0beed987c46e5834724f1e55ed164be", "fields": {"nom_de_la_commune": "GOLDBACH ALTENBACH", "libell_d_acheminement": "GOLDBACH ALTENBACH", "code_postal": "68760", "coordonnees_gps": [47.8611273336, 7.08860657983], "code_commune_insee": "68106"}, "geometry": {"type": "Point", "coordinates": [7.08860657983, 47.8611273336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f397bb092ea38cbef7a126988b4a8e704d9f06d", "fields": {"code_postal": "68760", "code_commune_insee": "68106", "libell_d_acheminement": "GOLDBACH ALTENBACH", "ligne_5": "ALTENBACH", "nom_de_la_commune": "GOLDBACH ALTENBACH", "coordonnees_gps": [47.8611273336, 7.08860657983]}, "geometry": {"type": "Point", "coordinates": [7.08860657983, 47.8611273336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e73401ebc14c3c53dedeacbc2c0a2f501a1c385", "fields": {"nom_de_la_commune": "GUEVENATTEN", "libell_d_acheminement": "GUEVENATTEN", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68114"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93639a9510508677489f3b9de923daea767b6c0", "fields": {"nom_de_la_commune": "HAGENTHAL LE HAUT", "libell_d_acheminement": "HAGENTHAL LE HAUT", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68121"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d4cc47281cc77173c07e9008385d3c543806944", "fields": {"nom_de_la_commune": "HEIDWILLER", "libell_d_acheminement": "HEIDWILLER", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68127"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "946b87f346c76d18ab86c23f2a13d2f98d019f34", "fields": {"nom_de_la_commune": "HESINGUE", "libell_d_acheminement": "HESINGUE", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68135"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519c9601dfe93a80a80bc9640fe6759958df8140", "fields": {"nom_de_la_commune": "HIRTZFELDEN", "libell_d_acheminement": "HIRTZFELDEN", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68140"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844a078a41d54648d8b7af18e830074858fdc954", "fields": {"code_postal": "68320", "code_commune_insee": "68143", "libell_d_acheminement": "PORTE DU RIED", "ligne_5": "HOLTZWIHR", "nom_de_la_commune": "PORTE DU RIED", "coordonnees_gps": [48.0998914946, 7.49472150161]}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "355c5315d3c20fde3aa012568c1e71ffc1b6433e", "fields": {"code_postal": "68320", "code_commune_insee": "68143", "libell_d_acheminement": "PORTE DU RIED", "ligne_5": "RIEDWIHR", "nom_de_la_commune": "PORTE DU RIED", "coordonnees_gps": [48.0998914946, 7.49472150161]}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0082f83ca83ab30d089e5e1ae8d7d30c66904076", "fields": {"nom_de_la_commune": "HOMBOURG", "libell_d_acheminement": "HOMBOURG", "code_postal": "68490", "coordonnees_gps": [47.7817852652, 7.50128243869], "code_commune_insee": "68144"}, "geometry": {"type": "Point", "coordinates": [7.50128243869, 47.7817852652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f568fb8fb44df6a2967a9e1fcec592f56ea2f50", "fields": {"code_postal": "68180", "code_commune_insee": "68145", "libell_d_acheminement": "HORBOURG WIHR", "ligne_5": "WIHR EN PLAINE", "nom_de_la_commune": "HORBOURG WIHR", "coordonnees_gps": [48.0830630727, 7.40347360738]}, "geometry": {"type": "Point", "coordinates": [7.40347360738, 48.0830630727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a979a10ad56ac524c7583c937a05b442aaae5eea", "fields": {"nom_de_la_commune": "HOUSSEN", "libell_d_acheminement": "HOUSSEN", "code_postal": "68125", "coordonnees_gps": [48.1316498521, 7.37525951288], "code_commune_insee": "68146"}, "geometry": {"type": "Point", "coordinates": [7.37525951288, 48.1316498521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d397bc450dd0943dab6be8a9b84c5e229867e7", "fields": {"nom_de_la_commune": "ISSENHEIM", "libell_d_acheminement": "ISSENHEIM", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68156"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b797d68b048879459f8ee9046616a10196ee2c1", "fields": {"nom_de_la_commune": "KAPPELEN", "libell_d_acheminement": "KAPPELEN", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68160"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6774212cb10dd52ef2b7c3d73530b82a5429203", "fields": {"code_postal": "68680", "code_commune_insee": "68163", "libell_d_acheminement": "KEMBS", "ligne_5": "KEMBS LOECHLE", "nom_de_la_commune": "KEMBS", "coordonnees_gps": [47.692052435, 7.4996914336]}, "geometry": {"type": "Point", "coordinates": [7.4996914336, 47.692052435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7882603dfde8e4db0f291d907cc206cdbfd378f", "fields": {"nom_de_la_commune": "KOESTLACH", "libell_d_acheminement": "KOESTLACH", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68169"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e8918ee7a0c53f5aed017a38053683215a1d2e", "fields": {"nom_de_la_commune": "LANDSER", "libell_d_acheminement": "LANDSER", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68174"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819cae4b029fb6438610ef5398f0e518f0e972fd", "fields": {"nom_de_la_commune": "LARGITZEN", "libell_d_acheminement": "LARGITZEN", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68176"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "230b865406e321b31910eb06dae7f40a2ed0c018", "fields": {"nom_de_la_commune": "LAUTENBACHZELL", "libell_d_acheminement": "LAUTENBACHZELL", "code_postal": "68610", "coordonnees_gps": [47.9413913563, 7.11100776725], "code_commune_insee": "68178"}, "geometry": {"type": "Point", "coordinates": [7.11100776725, 47.9413913563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c039ec1d370f6edd6fe3e7b04eca9548c2da1fd6", "fields": {"nom_de_la_commune": "LIEBSDORF", "libell_d_acheminement": "LIEBSDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68184"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21b3b4a17c62ad23a384ea00f7b2a0bbcfd7d81e", "fields": {"nom_de_la_commune": "LINSDORF", "libell_d_acheminement": "LINSDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68187"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d266d4eb79b4751af4b896c5205fd32f904016", "fields": {"nom_de_la_commune": "LUCELLE", "libell_d_acheminement": "LUCELLE", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68190"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "780afe571013b44aa710bf487aa9e9dd428844a9", "fields": {"code_postal": "68210", "code_commune_insee": "68192", "libell_d_acheminement": "VALDIEU LUTRAN", "ligne_5": "VALDIEU", "nom_de_la_commune": "VALDIEU LUTRAN", "coordonnees_gps": [47.6465535695, 7.10668724533]}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845a0bd1728181d53d2d7132fc6b10bc9ac79f27", "fields": {"nom_de_la_commune": "MICHELBACH LE HAUT", "libell_d_acheminement": "MICHELBACH LE HAUT", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68208"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67bbd0c8237b155945a247145b414137ccd13d29", "fields": {"nom_de_la_commune": "MITTELWIHR", "libell_d_acheminement": "MITTELWIHR", "code_postal": "68630", "coordonnees_gps": [48.1423548591, 7.33228036662], "code_commune_insee": "68209"}, "geometry": {"type": "Point", "coordinates": [7.33228036662, 48.1423548591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9657473ad93b35e9d1c3786f8fd9669fc427af8", "fields": {"nom_de_la_commune": "MITTLACH", "libell_d_acheminement": "MITTLACH", "code_postal": "68380", "coordonnees_gps": [47.9954927319, 7.05179544596], "code_commune_insee": "68210"}, "geometry": {"type": "Point", "coordinates": [7.05179544596, 47.9954927319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43bd7dbc94c1b330e687b3be4c73a3f8dcebfc95", "fields": {"nom_de_la_commune": "MOERNACH", "libell_d_acheminement": "MOERNACH", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68212"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba08736aad9c1a42c583ec174cbfea09f8783f6", "fields": {"nom_de_la_commune": "MONTREUX JEUNE", "libell_d_acheminement": "MONTREUX JEUNE", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68214"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0cca4b1bf7f6f2dc0fc6794814ee4ba6132209", "fields": {"nom_de_la_commune": "MONTREUX VIEUX", "libell_d_acheminement": "MONTREUX VIEUX", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68215"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ceb73d8e4a037136d6a08f2c199b45463b7262", "fields": {"code_postal": "68580", "code_commune_insee": "68216", "libell_d_acheminement": "MOOSLARGUE", "ligne_5": "NIEDERLARG", "nom_de_la_commune": "MOOSLARGUE", "coordonnees_gps": [47.5481438325, 7.17349023322]}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15ffebe2c456ce6f58e1e19c931b10da416afb70", "fields": {"nom_de_la_commune": "MORSCHWILLER LE BAS", "libell_d_acheminement": "MORSCHWILLER LE BAS", "code_postal": "68790", "coordonnees_gps": [47.733791142, 7.26547349647], "code_commune_insee": "68218"}, "geometry": {"type": "Point", "coordinates": [7.26547349647, 47.733791142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d059e3ce694c43dfe72c78c7b65543123a89513", "fields": {"nom_de_la_commune": "MUHLBACH SUR MUNSTER", "libell_d_acheminement": "MUHLBACH SUR MUNSTER", "code_postal": "68380", "coordonnees_gps": [47.9954927319, 7.05179544596], "code_commune_insee": "68223"}, "geometry": {"type": "Point", "coordinates": [7.05179544596, 47.9954927319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca072690b7b8e0ec407bc2188889a0a5f23385fc", "fields": {"nom_de_la_commune": "MUNCHHOUSE", "libell_d_acheminement": "MUNCHHOUSE", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68225"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13377140ebfb2babb1f802ecaa56316538042fd7", "fields": {"nom_de_la_commune": "NEUF BRISACH", "libell_d_acheminement": "NEUF BRISACH", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68231"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9382f85d48d079bd848bb512ae245944370db12d", "fields": {"code_postal": "68960", "code_commune_insee": "68240", "libell_d_acheminement": "ILLTAL", "ligne_5": "OBERDORF", "nom_de_la_commune": "ILLTAL", "coordonnees_gps": [47.5717118449, 7.32148674865]}, "geometry": {"type": "Point", "coordinates": [7.32148674865, 47.5717118449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dc448e89a70c64481dcd715429727031f871610", "fields": {"nom_de_la_commune": "PFETTERHOUSE", "libell_d_acheminement": "PFETTERHOUSE", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68257"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff0a1f575d6cc51963bebed0466517a5b220405", "fields": {"nom_de_la_commune": "RAEDERSDORF", "libell_d_acheminement": "RAEDERSDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68259"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80d3176070bb33e22937c85b97965a74cb3ea741", "fields": {"nom_de_la_commune": "RAMMERSMATT", "libell_d_acheminement": "RAMMERSMATT", "code_postal": "68800", "coordonnees_gps": [47.7994545972, 7.09241843411], "code_commune_insee": "68261"}, "geometry": {"type": "Point", "coordinates": [7.09241843411, 47.7994545972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae46017908de4484f42efcc44e00fd1f0367dffc", "fields": {"nom_de_la_commune": "RANSPACH LE HAUT", "libell_d_acheminement": "RANSPACH LE HAUT", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68264"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd89200afcca645be1caa63c0b0c8f63de21a93", "fields": {"nom_de_la_commune": "RIESPACH", "libell_d_acheminement": "RIESPACH", "code_postal": "68640", "coordonnees_gps": [47.5439826681, 7.33909806987], "code_commune_insee": "68273"}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f95d6d03a99916c9bfdecc3f5446f5e3dbabc0f", "fields": {"nom_de_la_commune": "RODERN", "libell_d_acheminement": "RODERN", "code_postal": "68590", "coordonnees_gps": [48.2362819475, 7.33191620928], "code_commune_insee": "68280"}, "geometry": {"type": "Point", "coordinates": [7.33191620928, 48.2362819475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52d8ab99d0a29e74c69f0b2612643133be67c6b4", "fields": {"nom_de_la_commune": "ROMAGNY", "libell_d_acheminement": "ROMAGNY", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68282"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188218954ecf111e063055853b9f663f2650905f", "fields": {"nom_de_la_commune": "ROSENAU", "libell_d_acheminement": "ROSENAU", "code_postal": "68128", "coordonnees_gps": [47.6245252213, 7.55534503962], "code_commune_insee": "68286"}, "geometry": {"type": "Point", "coordinates": [7.55534503962, 47.6245252213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c553409e5c3badbddee6ceaaa24bc2cc7e46651", "fields": {"nom_de_la_commune": "RUELISHEIM", "libell_d_acheminement": "RUELISHEIM", "code_postal": "68270", "coordonnees_gps": [47.8139348594, 7.32361311446], "code_commune_insee": "68289"}, "geometry": {"type": "Point", "coordinates": [7.32361311446, 47.8139348594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bf640f5e6cb677d449e9ad36fbec7cf9f1bad71", "fields": {"nom_de_la_commune": "ST COSME", "libell_d_acheminement": "ST COSME", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68293"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6af85c7ed5eb520a9fd7065ee67a0a08a94b0d", "fields": {"nom_de_la_commune": "STE CROIX AUX MINES", "libell_d_acheminement": "STE CROIX AUX MINES", "code_postal": "68160", "coordonnees_gps": [48.2436580194, 7.18389066901], "code_commune_insee": "68294"}, "geometry": {"type": "Point", "coordinates": [7.18389066901, 48.2436580194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "399ebb5cb7985fb07f2c48b9621d1953fb690ca6", "fields": {"nom_de_la_commune": "STE CROIX EN PLAINE", "libell_d_acheminement": "STE CROIX EN PLAINE", "code_postal": "68127", "coordonnees_gps": [47.9788629564, 7.39190027996], "code_commune_insee": "68295"}, "geometry": {"type": "Point", "coordinates": [7.39190027996, 47.9788629564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b0131937b29846c9c64e10b80cd2ed426cccea", "fields": {"nom_de_la_commune": "ST LOUIS", "libell_d_acheminement": "ST LOUIS", "code_postal": "68300", "coordonnees_gps": [47.6023175125, 7.54024522111], "code_commune_insee": "68297"}, "geometry": {"type": "Point", "coordinates": [7.54024522111, 47.6023175125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40fd94c8788f65f5fadd195dad52c3711ea2f7cc", "fields": {"nom_de_la_commune": "SCHWOBEN", "libell_d_acheminement": "SCHWOBEN", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68303"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d665a831897c1f61bca04041b5933ca91f10835", "fields": {"nom_de_la_commune": "SICKERT", "libell_d_acheminement": "SICKERT", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68308"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c76297d85e93633c2f7511f161d6017a3b6a8fa", "fields": {"nom_de_la_commune": "SOULTZBACH LES BAINS", "libell_d_acheminement": "SOULTZBACH LES BAINS", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68316"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c36bc14634880e60356afafcdeab9bb1c0ce606", "fields": {"nom_de_la_commune": "TAGSDORF", "libell_d_acheminement": "TAGSDORF", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68333"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b987b808e5a0418762e455f19617f5326d942e47", "fields": {"nom_de_la_commune": "THANN", "libell_d_acheminement": "THANN", "code_postal": "68800", "coordonnees_gps": [47.7994545972, 7.09241843411], "code_commune_insee": "68334"}, "geometry": {"type": "Point", "coordinates": [7.09241843411, 47.7994545972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f192e7a1a28288ba7fab09964bc157da8a386b8", "fields": {"nom_de_la_commune": "UFFHEIM", "libell_d_acheminement": "UFFHEIM", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68341"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b76249e515fe88dcac32ae7e00a43155df8af16", "fields": {"nom_de_la_commune": "UFFHOLTZ", "libell_d_acheminement": "UFFHOLTZ", "code_postal": "68700", "coordonnees_gps": [47.8077826523, 7.1623079719], "code_commune_insee": "68342"}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab4a47b12a7d6796a718c06666c9b226e425b453", "fields": {"nom_de_la_commune": "VILLAGE NEUF", "libell_d_acheminement": "VILLAGE NEUF", "code_postal": "68128", "coordonnees_gps": [47.6245252213, 7.55534503962], "code_commune_insee": "68349"}, "geometry": {"type": "Point", "coordinates": [7.55534503962, 47.6245252213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c756a7978345876ff68e48086cec42c94abad03b", "fields": {"nom_de_la_commune": "VOEGTLINSHOFFEN", "libell_d_acheminement": "VOEGTLINSHOFFEN", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68350"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6a2c896a7ea70427dabbdef956e322f1e80b60f", "fields": {"nom_de_la_commune": "WASSERBOURG", "libell_d_acheminement": "WASSERBOURG", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68358"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cefa48e25a22513824109b64047f695d243ca08", "fields": {"nom_de_la_commune": "WATTWILLER", "libell_d_acheminement": "WATTWILLER", "code_postal": "68700", "coordonnees_gps": [47.8077826523, 7.1623079719], "code_commune_insee": "68359"}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f41c1518a4efad6c2a1e05e6ec764c59bf1a26", "fields": {"nom_de_la_commune": "WETTOLSHEIM", "libell_d_acheminement": "WETTOLSHEIM", "code_postal": "68920", "coordonnees_gps": [48.0596682305, 7.28277674315], "code_commune_insee": "68365"}, "geometry": {"type": "Point", "coordinates": [7.28277674315, 48.0596682305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0e687d49a8198d6dc760c0652328aef78b9f4a", "fields": {"nom_de_la_commune": "WILLER SUR THUR", "libell_d_acheminement": "WILLER SUR THUR", "code_postal": "68760", "coordonnees_gps": [47.8611273336, 7.08860657983], "code_commune_insee": "68372"}, "geometry": {"type": "Point", "coordinates": [7.08860657983, 47.8611273336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e051f912b0d9bb43284e01255156c45c6b6441a", "fields": {"code_postal": "68124", "code_commune_insee": "68374", "libell_d_acheminement": "WINTZENHEIM", "ligne_5": "LOGELBACH", "nom_de_la_commune": "WINTZENHEIM", "coordonnees_gps": [48.063273489, 7.27115402765]}, "geometry": {"type": "Point", "coordinates": [7.27115402765, 48.063273489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d162e1044ed1c1981463a7264950ad4126284891", "fields": {"nom_de_la_commune": "WOLSCHWILLER", "libell_d_acheminement": "WOLSCHWILLER", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68380"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c74c791a052663e844efb91a468fafbae88d192", "fields": {"nom_de_la_commune": "WUENHEIM", "libell_d_acheminement": "WUENHEIM", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68381"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9403b8d53e01fed7371c3c8c7a06f43e2a27234", "fields": {"nom_de_la_commune": "ZIMMERBACH", "libell_d_acheminement": "ZIMMERBACH", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68385"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff179774363a954a9c8e04724df7a8e03746692d", "fields": {"nom_de_la_commune": "AMPLEPUIS", "libell_d_acheminement": "AMPLEPUIS", "code_postal": "69550", "coordonnees_gps": [45.9921852831, 4.36092903246], "code_commune_insee": "69006"}, "geometry": {"type": "Point", "coordinates": [4.36092903246, 45.9921852831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ee5d113908d03f9444ae989dd8c497de0acf72f", "fields": {"nom_de_la_commune": "ANCY", "libell_d_acheminement": "ANCY", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69008"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71289853e8cc36c596c2ec0dcb097cab99e14ede", "fields": {"nom_de_la_commune": "ARNAS", "libell_d_acheminement": "ARNAS", "code_postal": "69400", "coordonnees_gps": [45.9927200348, 4.70137722216], "code_commune_insee": "69013"}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f06e16b9bc2998b1c33b357d20771525bfefdda4", "fields": {"nom_de_la_commune": "BELLEVILLE", "libell_d_acheminement": "BELLEVILLE", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69019"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e150babffa5c34babe59b76714270f50eaabad3", "fields": {"nom_de_la_commune": "BELMONT D AZERGUES", "libell_d_acheminement": "BELMONT D AZERGUES", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69020"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ef37dcebbef8ce288535a21ba8978b2c0d33b4", "fields": {"nom_de_la_commune": "BIBOST", "libell_d_acheminement": "BIBOST", "code_postal": "69690", "coordonnees_gps": [45.7650952227, 4.53742435922], "code_commune_insee": "69022"}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b0b5a55395b3e048c84a9dd562bb89cd0ca11fa", "fields": {"code_postal": "69690", "code_commune_insee": "69022", "libell_d_acheminement": "BIBOST", "ligne_5": "LA CALONNIERE", "nom_de_la_commune": "BIBOST", "coordonnees_gps": [45.7650952227, 4.53742435922]}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d93d788067bc53bd04513a27d93eb1907f0989c2", "fields": {"nom_de_la_commune": "LE BOIS D OINGT", "libell_d_acheminement": "LE BOIS D OINGT", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69024"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba953d99862e128fd1ca7048d97e959516f57d8", "fields": {"nom_de_la_commune": "CHAPONOST", "libell_d_acheminement": "CHAPONOST", "code_postal": "69630", "coordonnees_gps": [45.708648101, 4.7456828007], "code_commune_insee": "69043"}, "geometry": {"type": "Point", "coordinates": [4.7456828007, 45.708648101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937eef42188c35aa85005afca46d6337d09d761f", "fields": {"nom_de_la_commune": "CHASSELAY", "libell_d_acheminement": "CHASSELAY", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69049"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abf2367a14e14c05b7f49983c64031fbde513adb", "fields": {"code_postal": "69440", "code_commune_insee": "69051", "libell_d_acheminement": "CHAUSSAN", "ligne_5": "LE RICHOUD", "nom_de_la_commune": "CHAUSSAN", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09178a9228b40478058c65cc91a1d9a029135241", "fields": {"nom_de_la_commune": "LES CHERES", "libell_d_acheminement": "LES CHERES", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69055"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60a2e11f261b5962d6aab2b944ec92c8168e4288", "fields": {"nom_de_la_commune": "CHIROUBLES", "libell_d_acheminement": "CHIROUBLES", "code_postal": "69115", "coordonnees_gps": [46.1852438194, 4.65593997989], "code_commune_insee": "69058"}, "geometry": {"type": "Point", "coordinates": [4.65593997989, 46.1852438194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48bee4d8a57399db3730c155de0b1004f4586d06", "fields": {"nom_de_la_commune": "COISE", "libell_d_acheminement": "COISE", "code_postal": "69590", "coordonnees_gps": [45.6217485802, 4.48906764505], "code_commune_insee": "69062"}, "geometry": {"type": "Point", "coordinates": [4.48906764505, 45.6217485802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25025ff0a32e1e1691e99ab9519c484bf8ad34c6", "fields": {"nom_de_la_commune": "COLLONGES AU MONT D OR", "libell_d_acheminement": "COLLONGES AU MONT D OR", "code_postal": "69660", "coordonnees_gps": [45.8215040365, 4.84320288902], "code_commune_insee": "69063"}, "geometry": {"type": "Point", "coordinates": [4.84320288902, 45.8215040365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c1ad4bf5d75971e1168ccd5ab96229701d57b25", "fields": {"nom_de_la_commune": "CORCELLES EN BEAUJOLAIS", "libell_d_acheminement": "CORCELLES EN BEAUJOLAIS", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69065"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f32859029b5d4e89f2674ec8780650db6ec8c088", "fields": {"code_postal": "69470", "code_commune_insee": "69066", "libell_d_acheminement": "COURS", "ligne_5": "LA VILLE", "nom_de_la_commune": "COURS", "coordonnees_gps": [46.1151639398, 4.3657661109]}, "geometry": {"type": "Point", "coordinates": [4.3657661109, 46.1151639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8432e9c3f2d99e960677835f5589214a8e9d93c", "fields": {"nom_de_la_commune": "CUBLIZE", "libell_d_acheminement": "CUBLIZE", "code_postal": "69550", "coordonnees_gps": [45.9921852831, 4.36092903246], "code_commune_insee": "69070"}, "geometry": {"type": "Point", "coordinates": [4.36092903246, 45.9921852831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e22e25df372441c29d23bb38db76ef8274ee5ef", "fields": {"nom_de_la_commune": "DAREIZE", "libell_d_acheminement": "DAREIZE", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69073"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d48d416a10eb30d3c901a11759f4483e9a075fb", "fields": {"nom_de_la_commune": "FLEURIE", "libell_d_acheminement": "FLEURIE", "code_postal": "69820", "coordonnees_gps": [46.2082600685, 4.66076858585], "code_commune_insee": "69084"}, "geometry": {"type": "Point", "coordinates": [4.66076858585, 46.2082600685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77c4b843117c14b5943fb887dcc2ad5e0ababc2b", "fields": {"nom_de_la_commune": "LES HALLES", "libell_d_acheminement": "LES HALLES", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69098"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c4e105c5a2668ef54c7c68d16cb5c726bc7994c", "fields": {"nom_de_la_commune": "HAUTE RIVOIRE", "libell_d_acheminement": "HAUTE RIVOIRE", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69099"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bdb3143326a0ac90a4bc36126816839390ec322", "fields": {"nom_de_la_commune": "JULIENAS", "libell_d_acheminement": "JULIENAS", "code_postal": "69840", "coordonnees_gps": [46.255819041, 4.67514291192], "code_commune_insee": "69103"}, "geometry": {"type": "Point", "coordinates": [4.67514291192, 46.255819041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8dcd921e259728b1d6ba4768a1d7ca3ccadce6f", "fields": {"nom_de_la_commune": "LANTIGNIE", "libell_d_acheminement": "LANTIGNIE", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69109"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b0e46dd35b3a7103f08101ce02e8bf7d2970a1", "fields": {"nom_de_la_commune": "LENTILLY", "libell_d_acheminement": "LENTILLY", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69112"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03480d0637d64c2fe6adf1ac9ebe7978ee3c7191", "fields": {"nom_de_la_commune": "LETRA", "libell_d_acheminement": "LETRA", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69113"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d9d8bc1edd29c555d9fa644523f5604af0542e9", "fields": {"nom_de_la_commune": "LOIRE SUR RHONE", "libell_d_acheminement": "LOIRE SUR RHONE", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69118"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80ceab064eef74cf0086742e99c7bebbf48fdc9", "fields": {"nom_de_la_commune": "LUCENAY", "libell_d_acheminement": "LUCENAY", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69122"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68d72cc410bce5de27a8f5e32220e335322ff253", "fields": {"nom_de_la_commune": "MARCY L ETOILE", "libell_d_acheminement": "MARCY L ETOILE", "code_postal": "69280", "coordonnees_gps": [45.7789755728, 4.70169351324], "code_commune_insee": "69127"}, "geometry": {"type": "Point", "coordinates": [4.70169351324, 45.7789755728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ec4f2880fcdd676e6dfda2459f22606b0249b6", "fields": {"nom_de_la_commune": "MONTARNAUD", "libell_d_acheminement": "MONTARNAUD", "code_postal": "34570", "coordonnees_gps": [43.6245225678, 3.72064518654], "code_commune_insee": "34163"}, "geometry": {"type": "Point", "coordinates": [3.72064518654, 43.6245225678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19de280ff77c0d83cb2f945043ae310ec8244706", "fields": {"nom_de_la_commune": "MONTBAZIN", "libell_d_acheminement": "MONTBAZIN", "code_postal": "34560", "coordonnees_gps": [43.505994329, 3.63477988295], "code_commune_insee": "34165"}, "geometry": {"type": "Point", "coordinates": [3.63477988295, 43.505994329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfe3ce9d917d93412c1ceab10e070fc0ccd2fbac", "fields": {"nom_de_la_commune": "MONTBLANC", "libell_d_acheminement": "MONTBLANC", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34166"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d323ba504933b30be7dd18d6cff600eace41f3d0", "fields": {"nom_de_la_commune": "MONTPELLIER", "libell_d_acheminement": "MONTPELLIER", "code_postal": "34000", "coordonnees_gps": [43.613085594, 3.86919806969], "code_commune_insee": "34172"}, "geometry": {"type": "Point", "coordinates": [3.86919806969, 43.613085594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d324cdaa621e751657ff883df4ef3317905cc37", "fields": {"nom_de_la_commune": "MONTPEYROUX", "libell_d_acheminement": "MONTPEYROUX", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34173"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0cb0c952cf6ae2fef5cc478c0d3c0067a5c9b91", "fields": {"nom_de_la_commune": "MURVIEL LES MONTPELLIER", "libell_d_acheminement": "MURVIEL LES MONTPELLIER", "code_postal": "34570", "coordonnees_gps": [43.6245225678, 3.72064518654], "code_commune_insee": "34179"}, "geometry": {"type": "Point", "coordinates": [3.72064518654, 43.6245225678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "024a1ff0e994b567fcb00614817fcfa81b5483e7", "fields": {"nom_de_la_commune": "PAILHES", "libell_d_acheminement": "PAILHES", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34191"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b9da4a376efe9f850b86cdbbd2e0fc7519ebf7d", "fields": {"nom_de_la_commune": "PEGAIROLLES DE L ESCALETTE", "libell_d_acheminement": "PEGAIROLLES DE L ESCALETTE", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34196"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f870e32b58018585853800e7cb57f0e9b3fb3dd8", "fields": {"nom_de_la_commune": "POILHES", "libell_d_acheminement": "POILHES", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34206"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8024ee0a7d18209e814030876d41868629debf2a", "fields": {"nom_de_la_commune": "PORTIRAGNES", "libell_d_acheminement": "PORTIRAGNES", "code_postal": "34420", "coordonnees_gps": [43.3127282598, 3.32015070092], "code_commune_insee": "34209"}, "geometry": {"type": "Point", "coordinates": [3.32015070092, 43.3127282598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67389ac2c8af34864135dc4e6515e05a1cedc6a9", "fields": {"nom_de_la_commune": "POUSSAN", "libell_d_acheminement": "POUSSAN", "code_postal": "34560", "coordonnees_gps": [43.505994329, 3.63477988295], "code_commune_insee": "34213"}, "geometry": {"type": "Point", "coordinates": [3.63477988295, 43.505994329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b71f1dc445f0f8ec72d8d78cc4e6b375cdbfe2", "fields": {"nom_de_la_commune": "PRADES LE LEZ", "libell_d_acheminement": "PRADES LE LEZ", "code_postal": "34730", "coordonnees_gps": [43.7084709884, 3.86709593283], "code_commune_insee": "34217"}, "geometry": {"type": "Point", "coordinates": [3.86709593283, 43.7084709884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa9a7d92c81615fb616ea4a434e8a62614c15f6b", "fields": {"nom_de_la_commune": "PUISSALICON", "libell_d_acheminement": "PUISSALICON", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34224"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe8c18ee0ede631bcaa43617656b4029cf2a842", "fields": {"nom_de_la_commune": "PUISSERGUIER", "libell_d_acheminement": "PUISSERGUIER", "code_postal": "34620", "coordonnees_gps": [43.3769386377, 3.04669438058], "code_commune_insee": "34225"}, "geometry": {"type": "Point", "coordinates": [3.04669438058, 43.3769386377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9df2af5e30f77ddb7cf7fb6a1f6d89a9b0ef77f3", "fields": {"nom_de_la_commune": "ROMIGUIERES", "libell_d_acheminement": "ROMIGUIERES", "code_postal": "34650", "coordonnees_gps": [43.7331097591, 3.20531974015], "code_commune_insee": "34231"}, "geometry": {"type": "Point", "coordinates": [3.20531974015, 43.7331097591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed7a58c622a4c77e2e7a182657eb44ad9b19edd8", "fields": {"nom_de_la_commune": "ST BAUZILLE DE PUTOIS", "libell_d_acheminement": "ST BAUZILLE DE PUTOIS", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34243"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f19808a00e6fcc43404a468210666ab284d50e7d", "fields": {"nom_de_la_commune": "ST ETIENNE D ALBAGNAN", "libell_d_acheminement": "ST ETIENNE D ALBAGNAN", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34250"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50edbe3d9c5caccc29dcef187590670e369d168e", "fields": {"nom_de_la_commune": "ST GENIES DES MOURGUES", "libell_d_acheminement": "ST GENIES DES MOURGUES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34256"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "577d431b1b69c4fa1715f82f42b0e7e7a05b611a", "fields": {"nom_de_la_commune": "ST GERVAIS SUR MARE", "libell_d_acheminement": "ST GERVAIS SUR MARE", "code_postal": "34610", "coordonnees_gps": [43.6529362037, 2.99617489245], "code_commune_insee": "34260"}, "geometry": {"type": "Point", "coordinates": [2.99617489245, 43.6529362037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bb1eb1d8ee047968dd46c14641829faee19e399", "fields": {"nom_de_la_commune": "ST GUIRAUD", "libell_d_acheminement": "ST GUIRAUD", "code_postal": "34725", "coordonnees_gps": [43.6689337124, 3.48233667506], "code_commune_insee": "34262"}, "geometry": {"type": "Point", "coordinates": [3.48233667506, 43.6689337124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53489fae0255f4a967dcf52df620ddeed9c03dd6", "fields": {"nom_de_la_commune": "ST HILAIRE DE BEAUVOIR", "libell_d_acheminement": "ST HILAIRE DE BEAUVOIR", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34263"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00036717fa5ee6854e3ca7b44681c8efe710e48a", "fields": {"nom_de_la_commune": "ST JEAN DE FOS", "libell_d_acheminement": "ST JEAN DE FOS", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34267"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08cbeec2768894b979923984daf3dfdeb3d7ae81", "fields": {"nom_de_la_commune": "ST JEAN DE VEDAS", "libell_d_acheminement": "ST JEAN DE VEDAS", "code_postal": "34430", "coordonnees_gps": [43.5716336218, 3.83171118012], "code_commune_insee": "34270"}, "geometry": {"type": "Point", "coordinates": [3.83171118012, 43.5716336218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9fdfce9765281c3a9b80bab8d4d65515dae8995", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34272"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f5ac1fbc3a3b7f79569fadf0473a508a9ab84b", "fields": {"nom_de_la_commune": "ST MARTIN DE L ARCON", "libell_d_acheminement": "ST MARTIN DE L ARCON", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34273"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b73bd58c3c38c405ca527497409dfc3abd5f35eb", "fields": {"nom_de_la_commune": "ST MATHIEU DE TREVIERS", "libell_d_acheminement": "ST MATHIEU DE TREVIERS", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34276"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42773ccecabbebcb5e8f640623d0e96d2f5ce8d3", "fields": {"nom_de_la_commune": "ST MAURICE NAVACELLES", "libell_d_acheminement": "ST MAURICE NAVACELLES", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34277"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81356adb53bfe148e508c9e1619ec6e51888ea49", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34278"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79a2e28c0cbc3ca772730bfcf2e10963c24f47ae", "fields": {"nom_de_la_commune": "LA SALVETAT SUR AGOUT", "libell_d_acheminement": "LA SALVETAT SUR AGOUT", "code_postal": "34330", "coordonnees_gps": [43.5945013819, 2.75693691265], "code_commune_insee": "34293"}, "geometry": {"type": "Point", "coordinates": [2.75693691265, 43.5945013819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "109389d20c91658147d41522a040c473d3981db5", "fields": {"nom_de_la_commune": "SAUTEYRARGUES", "libell_d_acheminement": "SAUTEYRARGUES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34297"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7454b93f40fcb0d3999011cd26134439950a86e", "fields": {"nom_de_la_commune": "LA TOUR SUR ORB", "libell_d_acheminement": "LA TOUR SUR ORB", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34312"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b804c8d4498039988ad23370c4da25d98f269d9", "fields": {"nom_de_la_commune": "USCLAS DU BOSC", "libell_d_acheminement": "USCLAS DU BOSC", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34316"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4b305382e4cfaae482f435ff60a3f7b09d84be", "fields": {"nom_de_la_commune": "VALMASCLE", "libell_d_acheminement": "VALMASCLE", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34323"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "407cdb388ad59e0ec58712592a1b266fe3d4799a", "fields": {"nom_de_la_commune": "VALRAS PLAGE", "libell_d_acheminement": "VALRAS PLAGE", "code_postal": "34350", "coordonnees_gps": [43.2574196352, 3.23174001635], "code_commune_insee": "34324"}, "geometry": {"type": "Point", "coordinates": [3.23174001635, 43.2574196352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ddddb849a8cd1ebbd3f1cae5bd4d95051e53c11", "fields": {"nom_de_la_commune": "VALROS", "libell_d_acheminement": "VALROS", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34325"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87fac2e40e59518ff7b7ae8fe8d30593fabba41f", "fields": {"nom_de_la_commune": "VIAS", "libell_d_acheminement": "VIAS", "code_postal": "34450", "coordonnees_gps": [43.3129531331, 3.39921346505], "code_commune_insee": "34332"}, "geometry": {"type": "Point", "coordinates": [3.39921346505, 43.3129531331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb8262df4dbf2203344b3fb2ae37b7f0102394d", "fields": {"nom_de_la_commune": "VIEUSSAN", "libell_d_acheminement": "VIEUSSAN", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34334"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec64ff4b865e565675820deaed082224435f0d9", "fields": {"nom_de_la_commune": "VILLENEUVE LES BEZIERS", "libell_d_acheminement": "VILLENEUVE LES BEZIERS", "code_postal": "34500", "coordonnees_gps": [43.3428885301, 3.23996566024], "code_commune_insee": "34336"}, "geometry": {"type": "Point", "coordinates": [3.23996566024, 43.3428885301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b5f47897c088c51b3572727b3adca1934e2d57", "fields": {"nom_de_la_commune": "VILLESPASSANS", "libell_d_acheminement": "VILLESPASSANS", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34339"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8fb0180fc8bed33e5bad01125d10a156e298aee", "fields": {"nom_de_la_commune": "VILLEVEYRAC", "libell_d_acheminement": "VILLEVEYRAC", "code_postal": "34560", "coordonnees_gps": [43.505994329, 3.63477988295], "code_commune_insee": "34341"}, "geometry": {"type": "Point", "coordinates": [3.63477988295, 43.505994329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8c23f47597b549cc1fd923ee978b5b772e741d", "fields": {"nom_de_la_commune": "ARBRISSEL", "libell_d_acheminement": "ARBRISSEL", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35005"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21e2d761ec397331f49a3b3e000458b9c35b2341", "fields": {"nom_de_la_commune": "AVAILLES SUR SEICHE", "libell_d_acheminement": "AVAILLES SUR SEICHE", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35008"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "858996fbd48d8b8c2386c9660b7f903396e9310b", "fields": {"nom_de_la_commune": "BAILLE", "libell_d_acheminement": "BAILLE", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35011"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1af69aa4d609fbb81ae6a7c669b518ecb551a79", "fields": {"nom_de_la_commune": "BAIN DE BRETAGNE", "libell_d_acheminement": "BAIN DE BRETAGNE", "code_postal": "35470", "coordonnees_gps": [47.8366270433, -1.70588612819], "code_commune_insee": "35012"}, "geometry": {"type": "Point", "coordinates": [-1.70588612819, 47.8366270433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8892ff5baa9c73f7ea9564f0e6a74b203160fe56", "fields": {"nom_de_la_commune": "BAINS SUR OUST", "libell_d_acheminement": "BAINS SUR OUST", "code_postal": "35600", "coordonnees_gps": [47.6975566329, -2.0582593409], "code_commune_insee": "35013"}, "geometry": {"type": "Point", "coordinates": [-2.0582593409, 47.6975566329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d16cf05ac892c4c911b631deb19f8af172f966b0", "fields": {"nom_de_la_commune": "BAZOUGES LA PEROUSE", "libell_d_acheminement": "BAZOUGES LA PEROUSE", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35019"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1dbcf25ae603bc87edd3431f171ef0997475165", "fields": {"nom_de_la_commune": "BEAUCE", "libell_d_acheminement": "BEAUCE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35021"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5059077da898fef05800633b4b7a7d1d857636", "fields": {"nom_de_la_commune": "BOVEL", "libell_d_acheminement": "BOVEL", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35035"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f240fad066e82dc029eb06459bc6107a56880a99", "fields": {"nom_de_la_commune": "BRUC SUR AFF", "libell_d_acheminement": "BRUC SUR AFF", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35045"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72c19184adfbc312f98df6bf5342df07798cea92", "fields": {"nom_de_la_commune": "BRUZ", "libell_d_acheminement": "BRUZ", "code_postal": "35170", "coordonnees_gps": [48.0258206706, -1.74865477283], "code_commune_insee": "35047"}, "geometry": {"type": "Point", "coordinates": [-1.74865477283, 48.0258206706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fde4a24a57b0fa9615fa1523593910c10ae1ba6c", "fields": {"nom_de_la_commune": "CESSON SEVIGNE", "libell_d_acheminement": "CESSON SEVIGNE", "code_postal": "35510", "coordonnees_gps": [48.1206278296, -1.59690492956], "code_commune_insee": "35051"}, "geometry": {"type": "Point", "coordinates": [-1.59690492956, 48.1206278296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157cc68b4789a2480026c23277dfb1959308a6a0", "fields": {"nom_de_la_commune": "CHANTEPIE", "libell_d_acheminement": "CHANTEPIE", "code_postal": "35135", "coordonnees_gps": [48.0823134568, -1.60390327167], "code_commune_insee": "35055"}, "geometry": {"type": "Point", "coordinates": [-1.60390327167, 48.0823134568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9894ba84a018c9d77ad2e999b7862dc95446c8", "fields": {"nom_de_la_commune": "LA CHAPELLE JANSON", "libell_d_acheminement": "LA CHAPELLE JANSON", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35062"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f10f7f4165f550822b00fdffc0e15bd6e2d5e39", "fields": {"nom_de_la_commune": "LA CHAPELLE THOUARAULT", "libell_d_acheminement": "LA CHAPELLE THOUARAULT", "code_postal": "35590", "coordonnees_gps": [48.1446063618, -1.84797555662], "code_commune_insee": "35065"}, "geometry": {"type": "Point", "coordinates": [-1.84797555662, 48.1446063618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b32c739ca277a6ba5f7b06887ab663a3e4379cb", "fields": {"nom_de_la_commune": "CINTRE", "libell_d_acheminement": "CINTRE", "code_postal": "35310", "coordonnees_gps": [48.0615640681, -1.86453604363], "code_commune_insee": "35080"}, "geometry": {"type": "Point", "coordinates": [-1.86453604363, 48.0615640681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b5da8d4dec8d6573b274858a1044980b628d9a", "fields": {"nom_de_la_commune": "COMBLESSAC", "libell_d_acheminement": "COMBLESSAC", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35084"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba80f833acd9b40abf966ec15256eb68cf1b9308", "fields": {"nom_de_la_commune": "CUGUEN", "libell_d_acheminement": "CUGUEN", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35092"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a8ed1d0e9c6c013f4403424d1977ac9286030b0", "fields": {"nom_de_la_commune": "DOMALAIN", "libell_d_acheminement": "DOMALAIN", "code_postal": "35680", "coordonnees_gps": [48.0164142152, -1.29664262346], "code_commune_insee": "35097"}, "geometry": {"type": "Point", "coordinates": [-1.29664262346, 48.0164142152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a4b07bd1b6df88f3a4d1b4f83ab8c50b2d3470", "fields": {"nom_de_la_commune": "FORGES LA FORET", "libell_d_acheminement": "FORGES LA FORET", "code_postal": "35640", "coordonnees_gps": [47.832577574, -1.30525929111], "code_commune_insee": "35114"}, "geometry": {"type": "Point", "coordinates": [-1.30525929111, 47.832577574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12207fbbce470d5ba013b43f46b90f27a7507fcc", "fields": {"nom_de_la_commune": "GENNES SUR SEICHE", "libell_d_acheminement": "GENNES SUR SEICHE", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35119"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "538d22b985fd56fa6996d65423183b7ea23c5bed", "fields": {"nom_de_la_commune": "GUICHEN", "libell_d_acheminement": "GUICHEN", "code_postal": "35580", "coordonnees_gps": [47.9620542944, -1.8429715247], "code_commune_insee": "35126"}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4360c4c301b0a33cfdec481416fe7ea2b4d7d2f6", "fields": {"code_postal": "35630", "code_commune_insee": "35130", "libell_d_acheminement": "HEDE BAZOUGES", "ligne_5": "BAZOUGES SOUS HEDE", "nom_de_la_commune": "HEDE BAZOUGES", "coordonnees_gps": [48.2776802001, -1.81257635657]}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "951eaca461a43607e0f1c63824c9d5d0f3f06409", "fields": {"nom_de_la_commune": "LAILLE", "libell_d_acheminement": "LAILLE", "code_postal": "35890", "coordonnees_gps": [47.9478686946, -1.71764789932], "code_commune_insee": "35139"}, "geometry": {"type": "Point", "coordinates": [-1.71764789932, 47.9478686946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebc780b970b4bf44b4c22ab3257f0aa5d7905d7f", "fields": {"nom_de_la_commune": "LANDAVRAN", "libell_d_acheminement": "LANDAVRAN", "code_postal": "35450", "coordonnees_gps": [48.2058112494, -1.3219232409], "code_commune_insee": "35141"}, "geometry": {"type": "Point", "coordinates": [-1.3219232409, 48.2058112494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6594acff5893cc623b9b3152193c980ac8541945", "fields": {"nom_de_la_commune": "LANDEAN", "libell_d_acheminement": "LANDEAN", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35142"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bffffaf1eb69cb3a74b902a5c6a7eb763d5fe34c", "fields": {"nom_de_la_commune": "LECOUSSE", "libell_d_acheminement": "LECOUSSE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35150"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a595b77977fd6e99a96353b08b1d253265a8cbc", "fields": {"nom_de_la_commune": "LIFFRE", "libell_d_acheminement": "LIFFRE", "code_postal": "35340", "coordonnees_gps": [48.199281564, -1.48595491187], "code_commune_insee": "35152"}, "geometry": {"type": "Point", "coordinates": [-1.48595491187, 48.199281564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b41e3cc0312990db1d4cbbd721c2b088fec271", "fields": {"nom_de_la_commune": "LE LOROUX", "libell_d_acheminement": "LE LOROUX", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35157"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc2d56241e642bf9b258ae85ab673507437a690", "fields": {"nom_de_la_commune": "MAXENT", "libell_d_acheminement": "MAXENT", "code_postal": "35380", "coordonnees_gps": [48.0149966641, -2.10718157509], "code_commune_insee": "35169"}, "geometry": {"type": "Point", "coordinates": [-2.10718157509, 48.0149966641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2f95ac00a6bf459ee1b96132dad919eb817cb2", "fields": {"nom_de_la_commune": "MONTGERMONT", "libell_d_acheminement": "MONTGERMONT", "code_postal": "35760", "coordonnees_gps": [48.1574437046, -1.69175560497], "code_commune_insee": "35189"}, "geometry": {"type": "Point", "coordinates": [-1.69175560497, 48.1574437046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ddbc13d5cd22d3c2f1f759d752bcb90eff21d8e", "fields": {"nom_de_la_commune": "MONTREUIL LE GAST", "libell_d_acheminement": "MONTREUIL LE GAST", "code_postal": "35520", "coordonnees_gps": [48.2154723883, -1.71567755367], "code_commune_insee": "35193"}, "geometry": {"type": "Point", "coordinates": [-1.71567755367, 48.2154723883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49307e89ded7c013449bbca4291f9b898b4655c9", "fields": {"nom_de_la_commune": "MOUAZE", "libell_d_acheminement": "MOUAZE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35197"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd436aa8118fe9685b79a83f8a6e651a194bb4e2", "fields": {"nom_de_la_commune": "MUEL", "libell_d_acheminement": "MUEL", "code_postal": "35290", "coordonnees_gps": [48.1587625255, -2.18370093137], "code_commune_insee": "35201"}, "geometry": {"type": "Point", "coordinates": [-2.18370093137, 48.1587625255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "697f4498b7ba28202065cbf5f22deba6ba0bd838", "fields": {"nom_de_la_commune": "NOYAL SOUS BAZOUGES", "libell_d_acheminement": "NOYAL SOUS BAZOUGES", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35205"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ebd9cddf9cb2ce6c5a4f02b68ce37c8e81fcd2", "fields": {"nom_de_la_commune": "NOYAL CHATILLON SUR SEICHE", "libell_d_acheminement": "NOYAL CHATILLON SUR SEICHE", "code_postal": "35230", "coordonnees_gps": [48.0164430154, -1.6442206032], "code_commune_insee": "35206"}, "geometry": {"type": "Point", "coordinates": [-1.6442206032, 48.0164430154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a829da9dc727dc2c81bb84573f9a10c39e84fc8", "fields": {"nom_de_la_commune": "PANCE", "libell_d_acheminement": "PANCE", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35212"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6551f131ad88d6a89a8eff98cf27acb304a126", "fields": {"nom_de_la_commune": "PARTHENAY DE BRETAGNE", "libell_d_acheminement": "PARTHENAY DE BRETAGNE", "code_postal": "35850", "coordonnees_gps": [48.2249209949, -1.86776064457], "code_commune_insee": "35216"}, "geometry": {"type": "Point", "coordinates": [-1.86776064457, 48.2249209949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2ab9770675f5ea6ea4464746713c69187001fd5", "fields": {"nom_de_la_commune": "LE PETIT FOUGERAY", "libell_d_acheminement": "LE PETIT FOUGERAY", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35218"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c705999b1bb1482640c0b639b06832763f9adb", "fields": {"nom_de_la_commune": "PIRE SUR SEICHE", "libell_d_acheminement": "PIRE SUR SEICHE", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35220"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c229879c43b0f979d17379ff17bbdaa126cadb7", "fields": {"nom_de_la_commune": "PLESDER", "libell_d_acheminement": "PLESDER", "code_postal": "35720", "coordonnees_gps": [48.4351031296, -1.88770006407], "code_commune_insee": "35225"}, "geometry": {"type": "Point", "coordinates": [-1.88770006407, 48.4351031296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "390dfe167e4e44832065ed65f440a9cf80fd5d11", "fields": {"nom_de_la_commune": "QUEBRIAC", "libell_d_acheminement": "QUEBRIAC", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35233"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4ea3fd71feed07eb8821a3d615e7044547da615", "fields": {"nom_de_la_commune": "RENNES", "libell_d_acheminement": "RENNES", "code_postal": "35700", "coordonnees_gps": [48.1116364246, -1.6816378334], "code_commune_insee": "35238"}, "geometry": {"type": "Point", "coordinates": [-1.6816378334, 48.1116364246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "475229b67ce1b22586310888b96931ce520e9079", "fields": {"nom_de_la_commune": "STE ANNE SUR VILAINE", "libell_d_acheminement": "STE ANNE SUR VILAINE", "code_postal": "35390", "coordonnees_gps": [47.7452832885, -1.72261713686], "code_commune_insee": "35249"}, "geometry": {"type": "Point", "coordinates": [-1.72261713686, 47.7452832885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ecabf86b34ff1290046097e42954d14a577126", "fields": {"nom_de_la_commune": "ST AUBIN DES LANDES", "libell_d_acheminement": "ST AUBIN DES LANDES", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35252"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "886de832c891b6c5b737f4c514c48ef008b79574", "fields": {"nom_de_la_commune": "ST AUBIN DU PAVAIL", "libell_d_acheminement": "ST AUBIN DU PAVAIL", "code_postal": "35410", "coordonnees_gps": [48.0490244352, -1.51988264041], "code_commune_insee": "35254"}, "geometry": {"type": "Point", "coordinates": [-1.51988264041, 48.0490244352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2cb0caa0393b8a99f388c4a33d10fb294bc41f5", "fields": {"nom_de_la_commune": "ST BRIEUC DES IFFS", "libell_d_acheminement": "ST BRIEUC DES IFFS", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35258"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e00d1dcc6318588547799f0e7b474e4c803717e0", "fields": {"nom_de_la_commune": "ST BROLADRE", "libell_d_acheminement": "ST BROLADRE", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35259"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc21baebaa8197c6d66afc836883eabec24f6e5f", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DES BOIS", "libell_d_acheminement": "ST CHRISTOPHE DES BOIS", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35260"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "881c077927e19d220594026adde02229a2a48283", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "35134", "coordonnees_gps": [47.8649465156, -1.44024199912], "code_commune_insee": "35262"}, "geometry": {"type": "Point", "coordinates": [-1.44024199912, 47.8649465156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba2605251309a2c00f80de65e75eb251188097d0", "fields": {"nom_de_la_commune": "ST COULOMB", "libell_d_acheminement": "ST COULOMB", "code_postal": "35350", "coordonnees_gps": [48.645566435, -1.90776582617], "code_commune_insee": "35263"}, "geometry": {"type": "Point", "coordinates": [-1.90776582617, 48.645566435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f9b2935b9efe94f419aa4bf9ec246a210cc295", "fields": {"nom_de_la_commune": "ST ERBLON", "libell_d_acheminement": "ST ERBLON", "code_postal": "35230", "coordonnees_gps": [48.0164430154, -1.6442206032], "code_commune_insee": "35266"}, "geometry": {"type": "Point", "coordinates": [-1.6442206032, 48.0164430154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d284b380a5c4e99759d6b0f874d21d310c7d2f6", "fields": {"nom_de_la_commune": "ST JEAN SUR COUESNON", "libell_d_acheminement": "ST JEAN SUR COUESNON", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35282"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eea98a5b2f46d96c42bc8f3c325fd117a423ee0e", "fields": {"nom_de_la_commune": "ST LEGER DES PRES", "libell_d_acheminement": "ST LEGER DES PRES", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35286"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e622d6039f0f50ae30956f4f0c82d64db43c997", "fields": {"code_postal": "35400", "code_commune_insee": "35288", "libell_d_acheminement": "ST MALO", "ligne_5": "CHATEAU MALO", "nom_de_la_commune": "ST MALO", "coordonnees_gps": [48.6399039698, -1.9807980796]}, "geometry": {"type": "Point", "coordinates": [-1.9807980796, 48.6399039698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca78fc971e22b9a1b6d15685b1333797783c903", "fields": {"code_postal": "35400", "code_commune_insee": "35288", "libell_d_acheminement": "ST MALO", "ligne_5": "ST SERVAN SUR MER", "nom_de_la_commune": "ST MALO", "coordonnees_gps": [48.6399039698, -1.9807980796]}, "geometry": {"type": "Point", "coordinates": [-1.9807980796, 48.6399039698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2042b1a9dd727ab93b9556f0abc72452b8ce58b", "fields": {"nom_de_la_commune": "ST MARC LE BLANC", "libell_d_acheminement": "ST MARC LE BLANC", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35292"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6d17ae2cdac5800ab69d4f66b0bfa823b62ab3f", "fields": {"nom_de_la_commune": "ST MARC SUR COUESNON", "libell_d_acheminement": "ST MARC SUR COUESNON", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35293"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9185d496ea1754a78160782a26e6291c98b718", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "35600", "coordonnees_gps": [47.6975566329, -2.0582593409], "code_commune_insee": "35294"}, "geometry": {"type": "Point", "coordinates": [-2.0582593409, 47.6975566329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d862c01ca1935bdb93a86b9ca5e3ce72ff4223", "fields": {"nom_de_la_commune": "ST OUEN DES ALLEUX", "libell_d_acheminement": "ST OUEN DES ALLEUX", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35304"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63f62f3ce330c9ee39b1c4825d1a8db21ff88aa3", "fields": {"nom_de_la_commune": "ST REMY DU PLAIN", "libell_d_acheminement": "ST REMY DU PLAIN", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35309"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f4bfbea421b120d40f0ff17744baafcb13a5db", "fields": {"code_postal": "61140", "code_commune_insee": "61211", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "ligne_5": "BEAULANDAIS", "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "coordonnees_gps": [48.5525924741, -0.471509032545]}, "geometry": {"type": "Point", "coordinates": [-0.471509032545, 48.5525924741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7439cb15a9c41e8b309ac091f0f0db6895d539", "fields": {"code_postal": "61330", "code_commune_insee": "61211", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "ligne_5": "LA BAROCHE SOUS LUCE", "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "coordonnees_gps": [48.5202783735, -0.60354646707]}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc367e21a4d9079b9e9c9c6a8249294fe57702e", "fields": {"nom_de_la_commune": "LA LANDE DE GOULT", "libell_d_acheminement": "LA LANDE DE GOULT", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61216"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18e0856bb734eb4fc5cf251ea03529550155caad", "fields": {"nom_de_la_commune": "LOISAIL", "libell_d_acheminement": "LOISAIL", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61229"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e23452877672d1a8475eee6af91a8cba51d209", "fields": {"nom_de_la_commune": "LONRAI", "libell_d_acheminement": "LONRAI", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61234"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "938551919518c0e927c71bbccc1398a09a3be2e2", "fields": {"nom_de_la_commune": "LOUVIERES EN AUGE", "libell_d_acheminement": "LOUVIERES EN AUGE", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61238"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fef922099009472aca6109fafaa6d32eeff36ca", "fields": {"nom_de_la_commune": "MAGNY LE DESERT", "libell_d_acheminement": "MAGNY LE DESERT", "code_postal": "61600", "coordonnees_gps": [48.5956941307, -0.336692342986], "code_commune_insee": "61243"}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aaa7aa422c9e39474f1f5bd547443a2f1222469", "fields": {"nom_de_la_commune": "MAUVES SUR HUISNE", "libell_d_acheminement": "MAUVES SUR HUISNE", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61255"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "917f8dccce8ffcf6ab44a22c2d1b78b0bab37b4b", "fields": {"nom_de_la_commune": "MEDAVY", "libell_d_acheminement": "MEDAVY", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61256"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0be8a210e24c8d233eecb267c187def1edefc32", "fields": {"nom_de_la_commune": "MENIL VIN", "libell_d_acheminement": "MENIL VIN", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61273"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "532b6d04456822ff09754a34a35ea5fde808bec6", "fields": {"nom_de_la_commune": "LES MENUS", "libell_d_acheminement": "LES MENUS", "code_postal": "61290", "coordonnees_gps": [48.5268185363, 0.799843312026], "code_commune_insee": "61274"}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900ee243bf17ab7eff9440a6dea1ec6362fdc8b7", "fields": {"nom_de_la_commune": "MIEUXCE", "libell_d_acheminement": "MIEUXCE", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61279"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f022c76e25c2356c9410c50a501bb627996883d9", "fields": {"nom_de_la_commune": "MONTCHEVREL", "libell_d_acheminement": "MONTCHEVREL", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61284"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a67b970cd88513b9a432fb027acfc4a89592ee9", "fields": {"nom_de_la_commune": "MONTGAUDRY", "libell_d_acheminement": "MONTGAUDRY", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61286"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf780faad358975f740af09d1e7dfc6988806305", "fields": {"code_postal": "61800", "code_commune_insee": "61292", "libell_d_acheminement": "MONTSECRET CLAIREFOUGERE", "ligne_5": "CLAIREFOUGERE", "nom_de_la_commune": "MONTSECRET CLAIREFOUGERE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab47e11ceca1f91c6ef37fa0c31fb8a2d7e58e9", "fields": {"nom_de_la_commune": "NEAUPHE SUR DIVE", "libell_d_acheminement": "NEAUPHE SUR DIVE", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61302"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06bac3392d9b43e9c7e1323900ec8dd381c4b668", "fields": {"nom_de_la_commune": "NEUVILLE SUR TOUQUES", "libell_d_acheminement": "NEUVILLE SUR TOUQUES", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61307"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b742e50a03ff9df508772e7c2257107d1fcf1ec0", "fields": {"code_postal": "61340", "code_commune_insee": "61309", "libell_d_acheminement": "PERCHE EN NOCE", "ligne_5": "PREAUX DU PERCHE", "nom_de_la_commune": "PERCHE EN NOCE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ca76425bb0a090c1a115f92aaa4edb964a56afc", "fields": {"nom_de_la_commune": "NORMANDEL", "libell_d_acheminement": "NORMANDEL", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61311"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96f61ea8c94b7434d99fbe24a2a480ac2f450a1a", "fields": {"nom_de_la_commune": "LE PAS ST L HOMER", "libell_d_acheminement": "LE PAS ST L HOMER", "code_postal": "61290", "coordonnees_gps": [48.5268185363, 0.799843312026], "code_commune_insee": "61323"}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abbf965bf1ecff3a6a95d95ddc36fef747600c81", "fields": {"nom_de_la_commune": "PLANCHES", "libell_d_acheminement": "PLANCHES", "code_postal": "61370", "coordonnees_gps": [48.7195586978, 0.414844883776], "code_commune_insee": "61330"}, "geometry": {"type": "Point", "coordinates": [0.414844883776, 48.7195586978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9a08b9fa2f2430beb76576eecc5502d0e23e54", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "MENIL JEAN", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eededf00adf1d97bc4f51fa24b2da0732c61af89", "fields": {"code_postal": "61250", "code_commune_insee": "61341", "libell_d_acheminement": "ECOUVES", "ligne_5": "FORGES", "nom_de_la_commune": "ECOUVES", "coordonnees_gps": [48.4708532437, 0.079807061748]}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4bb1f0009f1b1430c952fc87fc950efb59cd9f7", "fields": {"code_postal": "61250", "code_commune_insee": "61341", "libell_d_acheminement": "ECOUVES", "ligne_5": "VINGT HANAPS", "nom_de_la_commune": "ECOUVES", "coordonnees_gps": [48.4708532437, 0.079807061748]}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba21902de2a1828ab26b48070b037730ddbc821d", "fields": {"nom_de_la_commune": "RONAI", "libell_d_acheminement": "RONAI", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61352"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f0b298068a82bf55c9eb160cf16645b35fcb5df", "fields": {"nom_de_la_commune": "ST AUBIN DE COURTERAIE", "libell_d_acheminement": "ST AUBIN DE COURTERAIE", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61367"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64b92daf095cead15a13b592289d82da74823064", "fields": {"nom_de_la_commune": "ST BOMER LES FORGES", "libell_d_acheminement": "ST BOMER LES FORGES", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61369"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a33c2667f9cd031113952e9d0d56c2074cd99a5c", "fields": {"nom_de_la_commune": "BOISCHAMPRE", "libell_d_acheminement": "BOISCHAMPRE", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61375"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dab1f8cd656d1697f0f393783366b96351a8a1c", "fields": {"code_postal": "61570", "code_commune_insee": "61375", "libell_d_acheminement": "BOISCHAMPRE", "ligne_5": "MARCEI", "nom_de_la_commune": "BOISCHAMPRE", "coordonnees_gps": [48.6574688891, 0.0273677647898]}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9053c72519c30c54673c1c8c531d627e04299c5b", "fields": {"nom_de_la_commune": "ST DENIS SUR HUISNE", "libell_d_acheminement": "ST DENIS SUR HUISNE", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61381"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed8c7cc85aa6c3998373d783e875be54dfccace0", "fields": {"nom_de_la_commune": "ST EVROULT DE MONTFORT", "libell_d_acheminement": "ST EVROULT DE MONTFORT", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61385"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e7474e5a0240c019225871c3cd2d6ae9c62038c", "fields": {"nom_de_la_commune": "ST EVROULT NOTRE DAME DU BOIS", "libell_d_acheminement": "ST EVROULT NOTRE DAME DU BOIS", "code_postal": "61550", "coordonnees_gps": [48.7987924766, 0.488599977728], "code_commune_insee": "61386"}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e0778662b62a5bdb88d2ab30332d5346223533f", "fields": {"nom_de_la_commune": "ST FULGENT DES ORMES", "libell_d_acheminement": "ST FULGENT DES ORMES", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61388"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a12ad9c4b5ab711bed802bb8d5508658dfc2f8", "fields": {"nom_de_la_commune": "ST GERMAIN DE CLAIREFEUILLE", "libell_d_acheminement": "ST GERMAIN DE CLAIREFEUILLE", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61393"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761ede29450b8b243a6232305f1b17403255fbda", "fields": {"nom_de_la_commune": "ST GERMAIN DE LA COUDRE", "libell_d_acheminement": "ST GERMAIN DE LA COUDRE", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61394"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c24383511ce685176c1989490498c4330e29d8d8", "fields": {"nom_de_la_commune": "ST GERMAIN DES GROIS", "libell_d_acheminement": "ST GERMAIN DES GROIS", "code_postal": "61110", "coordonnees_gps": [48.440685995, 0.83185325454], "code_commune_insee": "61395"}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ddf362954049a9a2d6d69b1c75fb685f468751", "fields": {"nom_de_la_commune": "ST GERVAIS DU PERRON", "libell_d_acheminement": "ST GERVAIS DU PERRON", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61400"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c930ec93869258d278ba25303d7913e044502a75", "fields": {"nom_de_la_commune": "ST GILLES DES MARAIS", "libell_d_acheminement": "ST GILLES DES MARAIS", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61401"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f0c1072a2c7525367ca19facb064f0503f7a88", "fields": {"nom_de_la_commune": "ST HILAIRE DE BRIOUZE", "libell_d_acheminement": "ST HILAIRE DE BRIOUZE", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61402"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6647d03058604493eb6e7d1d1903c7067d8dd970", "fields": {"nom_de_la_commune": "ST JULIEN SUR SARTHE", "libell_d_acheminement": "ST JULIEN SUR SARTHE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61412"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c1d8f578e3d23ace46b4d7ee85361babab8f4d", "fields": {"nom_de_la_commune": "ST LANGIS LES MORTAGNE", "libell_d_acheminement": "ST LANGIS LES MORTAGNE", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61414"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d88e1edd1caa3b4157d1ad12a1af9a0ac3b3654a", "fields": {"nom_de_la_commune": "ST MARTIN D ECUBLEI", "libell_d_acheminement": "ST MARTIN D ECUBLEI", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61423"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ad75e038378717e4499bca9a6841c874d70623", "fields": {"nom_de_la_commune": "ST MAURICE LES CHARENCEY", "libell_d_acheminement": "ST MAURICE LES CHARENCEY", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61429"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72eb2199381103df4fbbef7a525abedc7e771fad", "fields": {"nom_de_la_commune": "ST NICOLAS DES BOIS", "libell_d_acheminement": "ST NICOLAS DES BOIS", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61433"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e4060e02fd360a43a2015748b6619652944d697", "fields": {"nom_de_la_commune": "ST OUEN DE LA COUR", "libell_d_acheminement": "ST OUEN DE LA COUR", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61437"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af869fd43d142d8c2fd351e6e5c238b2df960cc", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61443"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd42c43c3605ccfae24970d520acfd1271d4762c", "fields": {"nom_de_la_commune": "ST PHILBERT SUR ORNE", "libell_d_acheminement": "ST PHILBERT SUR ORNE", "code_postal": "61430", "coordonnees_gps": [48.8220175154, -0.472614628167], "code_commune_insee": "61444"}, "geometry": {"type": "Point", "coordinates": [-0.472614628167, 48.8220175154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cdb81001ac02ce0599336653c7ead659a085063", "fields": {"nom_de_la_commune": "ST QUENTIN LES CHARDONNETS", "libell_d_acheminement": "ST QUENTIN LES CHARDONNETS", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61451"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01d11cf268cd2c1f648d528ed5d0b472e8591eb7", "fields": {"nom_de_la_commune": "ST ROCH SUR EGRENNE", "libell_d_acheminement": "ST ROCH SUR EGRENNE", "code_postal": "61350", "coordonnees_gps": [48.5245489295, -0.754028854445], "code_commune_insee": "61452"}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b1dde6e48fba5d6bc7f41c1fa46020678a9d49d", "fields": {"code_postal": "61120", "code_commune_insee": "61460", "libell_d_acheminement": "SAP EN AUGE", "ligne_5": "ORVILLE", "nom_de_la_commune": "SAP EN AUGE", "coordonnees_gps": [48.8979629292, 0.218290083963]}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69ac1fdc92701071bbadcf995d8bae95bb19f6b7", "fields": {"nom_de_la_commune": "SARCEAUX", "libell_d_acheminement": "SARCEAUX", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61462"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a21e179bf5def712e46987271b909f96e86df0c3", "fields": {"nom_de_la_commune": "SERIGNY", "libell_d_acheminement": "SERIGNY", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61471"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5fbf62fde915586d8886233ec2e8113d351ba1a", "fields": {"nom_de_la_commune": "SEVIGNY", "libell_d_acheminement": "SEVIGNY", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61472"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "516b2cc948ee706f8032fe9e5f78d988395faa95", "fields": {"nom_de_la_commune": "SURVIE", "libell_d_acheminement": "SURVIE", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61477"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "594e031393fc5bec5ebb5edec7aeed1ea6fdd920", "fields": {"nom_de_la_commune": "BAGNOLES DE L ORNE NORMANDIE", "libell_d_acheminement": "BAGNOLES DE L ORNE NORMANDIE", "code_postal": "61140", "coordonnees_gps": [48.5525924741, -0.471509032545], "code_commune_insee": "61483"}, "geometry": {"type": "Point", "coordinates": [-0.471509032545, 48.5525924741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b563df2c1a9b9cd3b254c65eaeb3f219bdaf90e", "fields": {"code_postal": "61260", "code_commune_insee": "61484", "libell_d_acheminement": "VAL AU PERCHE", "ligne_5": "LA ROUGE", "nom_de_la_commune": "VAL AU PERCHE", "coordonnees_gps": [48.2308054852, 0.743916298767]}, "geometry": {"type": "Point", "coordinates": [0.743916298767, 48.2308054852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cfb6a7d21e1fed704516ad2c281277645598572", "fields": {"nom_de_la_commune": "TICHEVILLE", "libell_d_acheminement": "TICHEVILLE", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61485"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff3c6c4cd5fc7e4ebaca6f540d976e11a8bed6d", "fields": {"nom_de_la_commune": "TINCHEBRAY BOCAGE", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61486"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "235292d64223c4cca9922a5bc1c085300545c2f6", "fields": {"code_postal": "61800", "code_commune_insee": "61486", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "ligne_5": "FRENES", "nom_de_la_commune": "TINCHEBRAY BOCAGE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c50d4b3075b6aa9d4d40cddf88e641556d92d1c", "fields": {"code_postal": "61800", "code_commune_insee": "61486", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "ligne_5": "ST CORNIER DES LANDES", "nom_de_la_commune": "TINCHEBRAY BOCAGE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7704eefcdb2c08ad981d7911296186f96e54416a", "fields": {"code_postal": "61800", "code_commune_insee": "61486", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "ligne_5": "YVRANDES", "nom_de_la_commune": "TINCHEBRAY BOCAGE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b556e3033752e6946d76e023edd11dca065d9fc", "fields": {"nom_de_la_commune": "TOURNAI SUR DIVE", "libell_d_acheminement": "TOURNAI SUR DIVE", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61490"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a574e46416e6f1f2b169585517022045f217708e", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "CHAMPS", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d883f506cf6099634b540564dbc5b3379399281", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "RANDONNAI", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe7a627766d05440e5a900215f89b07f997d8769", "fields": {"nom_de_la_commune": "VAUNOISE", "libell_d_acheminement": "VAUNOISE", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61498"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59134482b3dd94a4dd1f13c5ab87f49fd13b3a1d", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "61110", "coordonnees_gps": [48.440685995, 0.83185325454], "code_commune_insee": "61501"}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aafcaeeb55554ab47e7dc7cbf9749c30309b206", "fields": {"nom_de_la_commune": "ACQUIN WESTBECOURT", "libell_d_acheminement": "ACQUIN WESTBECOURT", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62008"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d080701ff719dea9bc96e6a66ec35d25072027", "fields": {"code_postal": "62380", "code_commune_insee": "62008", "libell_d_acheminement": "ACQUIN WESTBECOURT", "ligne_5": "WESTBECOURT", "nom_de_la_commune": "ACQUIN WESTBECOURT", "coordonnees_gps": [50.6840669393, 2.07902625888]}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61be867d0f355160b2460bfd362bad69f0b793fb", "fields": {"nom_de_la_commune": "ADINFER", "libell_d_acheminement": "ADINFER", "code_postal": "62116", "coordonnees_gps": [50.1489493894, 2.70436913467], "code_commune_insee": "62009"}, "geometry": {"type": "Point", "coordinates": [2.70436913467, 50.1489493894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dba524b06c52425fceeb5788a9d25c02f949b35", "fields": {"nom_de_la_commune": "ALINCTHUN", "libell_d_acheminement": "ALINCTHUN", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62022"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a27e22716ce65ce3684e6dbc627ea8e2bc994fbc", "fields": {"nom_de_la_commune": "ANNAY", "libell_d_acheminement": "ANNAY", "code_postal": "62880", "coordonnees_gps": [50.470091244, 2.86997706713], "code_commune_insee": "62033"}, "geometry": {"type": "Point", "coordinates": [2.86997706713, 50.470091244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff5da08c276e11660987f436f22b270e9494afcc", "fields": {"code_postal": "62610", "code_commune_insee": "62038", "libell_d_acheminement": "ARDRES", "ligne_5": "BOIS EN ARDRES", "nom_de_la_commune": "ARDRES", "coordonnees_gps": [50.8468659582, 1.97558955191]}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f9a367594a4f2447e1f10ee2b570780f9370286", "fields": {"nom_de_la_commune": "AUCHEL", "libell_d_acheminement": "AUCHEL", "code_postal": "62260", "coordonnees_gps": [50.5172886108, 2.43294785801], "code_commune_insee": "62048"}, "geometry": {"type": "Point", "coordinates": [2.43294785801, 50.5172886108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f460d9035fbe35412c0b5c52b08a7b6704d386d1", "fields": {"nom_de_la_commune": "AUCHY AU BOIS", "libell_d_acheminement": "AUCHY AU BOIS", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62049"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad68d73f988bc65a11e9049241bd9d81409c43d1", "fields": {"nom_de_la_commune": "AUDEMBERT", "libell_d_acheminement": "AUDEMBERT", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62052"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed4159fb36867fa0d111baa6c4eece5f27a0b8d", "fields": {"nom_de_la_commune": "AUDINCTHUN", "libell_d_acheminement": "AUDINCTHUN", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62053"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07cbb4508b587b90afb6165ff278ae56c42779bb", "fields": {"nom_de_la_commune": "AUMERVAL", "libell_d_acheminement": "AUMERVAL", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62058"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf18db24a600ec9d4a532241d92354b5a755515", "fields": {"nom_de_la_commune": "AVERDOINGT", "libell_d_acheminement": "AVERDOINGT", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62061"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c63d7112d023ed9858a2a90cdb1c6d236f8603e1", "fields": {"nom_de_la_commune": "AVESNES", "libell_d_acheminement": "AVESNES", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62062"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3e44900735f337f770bb8e58a0885bbad43a17e", "fields": {"nom_de_la_commune": "AZINCOURT", "libell_d_acheminement": "AZINCOURT", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62069"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9c02e5e03caa0ed399d6a768cdc2397819f5bf", "fields": {"nom_de_la_commune": "BAILLEUL LES PERNES", "libell_d_acheminement": "BAILLEUL LES PERNES", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62071"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3899c41d52c3e8fb2764db807f204bc697182d9f", "fields": {"nom_de_la_commune": "BARASTRE", "libell_d_acheminement": "BARASTRE", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62082"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9831592ae52c1cb67fdd6ce606062654e67e661f", "fields": {"nom_de_la_commune": "BARLIN", "libell_d_acheminement": "BARLIN", "code_postal": "62620", "coordonnees_gps": [50.4611274621, 2.60092856741], "code_commune_insee": "62083"}, "geometry": {"type": "Point", "coordinates": [2.60092856741, 50.4611274621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641468a5c84392795c5d0f3a1bc1ddd4ecc402b8", "fields": {"nom_de_la_commune": "BASSEUX", "libell_d_acheminement": "BASSEUX", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62085"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e8fceb232d1525eb998fff03c20c5c55102227", "fields": {"nom_de_la_commune": "BAYENGHEM LES SENINGHEM", "libell_d_acheminement": "BAYENGHEM LES SENINGHEM", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62088"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c4d27d0fe7153ca0924b922fb8405be6e400879", "fields": {"nom_de_la_commune": "BAZINGHEN", "libell_d_acheminement": "BAZINGHEN", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62089"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc8f12f72cae5156abdb876bc3be6fb023d88367", "fields": {"nom_de_la_commune": "BENIFONTAINE", "libell_d_acheminement": "BENIFONTAINE", "code_postal": "62410", "coordonnees_gps": [50.4882510126, 2.84772935438], "code_commune_insee": "62107"}, "geometry": {"type": "Point", "coordinates": [2.84772935438, 50.4882510126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78ae7b4a1af5e4ff0ef63a7da1d6e50d3a46cae0", "fields": {"nom_de_la_commune": "BERMICOURT", "libell_d_acheminement": "BERMICOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62114"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c8638544cbfe46e938b409b10fed17eb9e7a2c", "fields": {"nom_de_la_commune": "BERNIEULLES", "libell_d_acheminement": "BERNIEULLES", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62116"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bafbda045b73d75352471890704da9dad11c3c64", "fields": {"nom_de_la_commune": "BIENVILLERS AU BOIS", "libell_d_acheminement": "BIENVILLERS AU BOIS", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62130"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d22ff5543b9f7172968ba5a952ba7966da422cf", "fields": {"nom_de_la_commune": "BLANGERVAL BLANGERMONT", "libell_d_acheminement": "BLANGERVAL BLANGERMONT", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62137"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9a9b5dfc5528c113840d0f9136d469e25e8a308", "fields": {"nom_de_la_commune": "BLANGY SUR TERNOISE", "libell_d_acheminement": "BLANGY SUR TERNOISE", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62138"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e66f2ce82805ddf8e80afff2f164a6c5431c56f0", "fields": {"nom_de_la_commune": "BOIRY NOTRE DAME", "libell_d_acheminement": "BOIRY NOTRE DAME", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62145"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41287f4063e9b898a62e48dace7dd91f729a245a", "fields": {"nom_de_la_commune": "BOISDINGHEM", "libell_d_acheminement": "BOISDINGHEM", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62149"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c828377639a210b825826bd31b2b9c8f8d6be6c5", "fields": {"nom_de_la_commune": "BONNINGUES LES ARDRES", "libell_d_acheminement": "BONNINGUES LES ARDRES", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62155"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b540e01f0fe95b1329215550ac221b415fc27c87", "fields": {"nom_de_la_commune": "BOURECQ", "libell_d_acheminement": "BOURECQ", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62162"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c33dba591fe3dbaf5d6473c81f2f7f2f2d60d57", "fields": {"nom_de_la_commune": "BOURET SUR CANCHE", "libell_d_acheminement": "BOURET SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62163"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e91f53923b0d5f316398a040348a947d625ac205", "fields": {"nom_de_la_commune": "BREMES", "libell_d_acheminement": "BREMES", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62174"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf7a43db6906ef82e4b73d8fb3bc3792b77fe25", "fields": {"nom_de_la_commune": "BRIMEUX", "libell_d_acheminement": "BRIMEUX", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62177"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb36ea94a4d8f779c303dca54311cec955b6fa7", "fields": {"nom_de_la_commune": "BRUNEMBERT", "libell_d_acheminement": "BRUNEMBERT", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62179"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b510dda5660f0a0b499bb1fb62a2e0b944b4aa5", "fields": {"nom_de_la_commune": "THIEFFRANS", "libell_d_acheminement": "THIEFFRANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70500"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ce966663b864c4b4563c726efb2988ef202fef", "fields": {"nom_de_la_commune": "THIENANS", "libell_d_acheminement": "THIENANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70501"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95211de9405580aa975560efd3764b5317efa959", "fields": {"nom_de_la_commune": "LE TREMBLOIS", "libell_d_acheminement": "LE TREMBLOIS", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70505"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25827f4d5828e3753ceac02702c7c0d601b95065", "fields": {"nom_de_la_commune": "TRESILLEY", "libell_d_acheminement": "TRESILLEY", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70507"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86f0dc321809f03fc40cc6902a1ed2dbb04b7820", "fields": {"nom_de_la_commune": "TROMAREY", "libell_d_acheminement": "TROMAREY", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70509"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8974af3cc6cd2a0bc818fb1570539d7739d6d321", "fields": {"nom_de_la_commune": "VADANS", "libell_d_acheminement": "VADANS", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70510"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af866e93189f2c307300d0bb814e967b3862af37", "fields": {"nom_de_la_commune": "LA VAIVRE", "libell_d_acheminement": "LA VAIVRE", "code_postal": "70320", "coordonnees_gps": [47.9247841994, 6.33509809591], "code_commune_insee": "70512"}, "geometry": {"type": "Point", "coordinates": [6.33509809591, 47.9247841994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc39fcaaa179c061ab16c773f58ef6d29a72356a", "fields": {"nom_de_la_commune": "LE VAL DE GOUHENANS", "libell_d_acheminement": "LE VAL DE GOUHENANS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70515"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9516298219f0d41b5ab3f4ccdd68b9d68561aa2", "fields": {"nom_de_la_commune": "VAUCONCOURT NERVEZAIN", "libell_d_acheminement": "VAUCONCOURT NERVEZAIN", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70525"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cac5d1c7364be5df5cb99b695eedc61311466f67", "fields": {"nom_de_la_commune": "VELLECHEVREUX ET COURBENANS", "libell_d_acheminement": "VELLECHEVREUX ET COURBENANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70530"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90cc8ee13b3b7fadd975e12f697ba9fb12ce1cc0", "fields": {"nom_de_la_commune": "VELLEFAUX", "libell_d_acheminement": "VELLEFAUX", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70532"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23a04e9219ec79b75e7dec3a32987d400baabb33", "fields": {"nom_de_la_commune": "VELLE LE CHATEL", "libell_d_acheminement": "VELLE LE CHATEL", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70536"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be44118d630d7db23d4a7f5f8e3db9f67f0b4b9", "fields": {"nom_de_la_commune": "VELLEXON QUEUTREY ET VAUDEY", "libell_d_acheminement": "VELLEXON QUEUTREY ET VAUDEY", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70539"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb4dc81b5cb0f74c631bfad61df44ec020e58d7", "fields": {"nom_de_la_commune": "VELLOREILLE LES CHOYE", "libell_d_acheminement": "VELLOREILLE LES CHOYE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70540"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c8f8cbf13d7bb0c737ff40801516d4fb1c260ba", "fields": {"nom_de_la_commune": "VELORCEY", "libell_d_acheminement": "VELORCEY", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70541"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f90ad105827b9057d18b4618e0ecaf6f874d93", "fields": {"nom_de_la_commune": "VENERE", "libell_d_acheminement": "VENERE", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70542"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6057b03596f7de96f5fc9e06c730ec4710334cf9", "fields": {"nom_de_la_commune": "VILLARGENT", "libell_d_acheminement": "VILLARGENT", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70553"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fe324e90b8ff2029e8be304bd3de1cb5ac50062", "fields": {"nom_de_la_commune": "VILLEFRANCON", "libell_d_acheminement": "VILLEFRANCON", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70557"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b2027d76a6d4aff3e2ee1c80818ddd235eb0b6", "fields": {"nom_de_la_commune": "LA VILLENEUVE BELLENOYE LA MAIZE", "libell_d_acheminement": "LA VILLENEUVE BELLENOYE LA MAIZE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70558"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cfdc43399e8de06d087d303711cf33051f03144", "fields": {"nom_de_la_commune": "VILLEPAROIS", "libell_d_acheminement": "VILLEPAROIS", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70559"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2662082688616edcbb9cbbb640663a6852f2dedb", "fields": {"nom_de_la_commune": "VILLERS LES LUXEUIL", "libell_d_acheminement": "VILLERS LES LUXEUIL", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70564"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39134a7f4853b1d10893303fd58bb997c5d3c1f", "fields": {"nom_de_la_commune": "VILLERS SUR PORT", "libell_d_acheminement": "VILLERS SUR PORT", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70566"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298ee7a1d2db8d4807476bc568e156c77a734fea", "fields": {"nom_de_la_commune": "VOLON", "libell_d_acheminement": "VOLON", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70574"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "424f7f96860e0bf8ef765e0d3fc0aaa4b9a44ab9", "fields": {"nom_de_la_commune": "ALLERIOT", "libell_d_acheminement": "ALLERIOT", "code_postal": "71380", "coordonnees_gps": [46.7753179262, 4.92186560965], "code_commune_insee": "71004"}, "geometry": {"type": "Point", "coordinates": [4.92186560965, 46.7753179262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d377fddbc1b1872b017306b253a768e26e4f74a2", "fields": {"nom_de_la_commune": "ARTAIX", "libell_d_acheminement": "ARTAIX", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71012"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acd22672ebb6c36fd7f7249dd31730ca6465c56e", "fields": {"nom_de_la_commune": "AUTUN", "libell_d_acheminement": "AUTUN", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71014"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12347a1b310c409af439f3225e4489f7ee24e56d", "fields": {"nom_de_la_commune": "BARIZEY", "libell_d_acheminement": "BARIZEY", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71019"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a3cf6d334084c4c6df9484f78d1f54bb4bd4b83", "fields": {"nom_de_la_commune": "BARNAY", "libell_d_acheminement": "BARNAY", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71020"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ff8a8759ce811ca1d7292c905f266e8cd5f7f8", "fields": {"nom_de_la_commune": "BAUDEMONT", "libell_d_acheminement": "BAUDEMONT", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71022"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b6b07bab9d916cae44cb4109b274bd040db814", "fields": {"nom_de_la_commune": "BAUDRIERES", "libell_d_acheminement": "BAUDRIERES", "code_postal": "71370", "coordonnees_gps": [46.7126638071, 5.00193850124], "code_commune_insee": "71023"}, "geometry": {"type": "Point", "coordinates": [5.00193850124, 46.7126638071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac5dd602c000b2fe44e18e9377e4dcee3159f488", "fields": {"nom_de_la_commune": "BEAUBERY", "libell_d_acheminement": "BEAUBERY", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71025"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86a9555c9117c7d3215c6c264ff0cea6517b43e3", "fields": {"nom_de_la_commune": "BOIS STE MARIE", "libell_d_acheminement": "BOIS STE MARIE", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71041"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "035de81be4d3230d7c8080ee34725b0e075a2bc6", "fields": {"nom_de_la_commune": "LES BORDES", "libell_d_acheminement": "LES BORDES", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71043"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f66fd3eedb08536a0d83da37714943c5b818011", "fields": {"nom_de_la_commune": "BOUHANS", "libell_d_acheminement": "BOUHANS", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71045"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c95f17b7cbc9b7e9a76eded40f6087a2929231", "fields": {"nom_de_la_commune": "BURNAND", "libell_d_acheminement": "BURNAND", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71067"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e01d04e6bd7e031ed88daa7b9800b148d874259c", "fields": {"nom_de_la_commune": "CHALMOUX", "libell_d_acheminement": "CHALMOUX", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71075"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28336176c3ca1f51d91afbbbb840ab8ba4b3f3c2", "fields": {"nom_de_la_commune": "LA CHAPELLE DE GUINCHAY", "libell_d_acheminement": "LA CHAPELLE DE GUINCHAY", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71090"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfec77bb06e95cf02128b948d8efacd7407a4117", "fields": {"nom_de_la_commune": "LA CHAPELLE SOUS BRANCION", "libell_d_acheminement": "LA CHAPELLE SOUS BRANCION", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71094"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "337650079846af3942b967c0456e2fe25d7b1e52", "fields": {"nom_de_la_commune": "LA CHAPELLE SOUS UCHON", "libell_d_acheminement": "LA CHAPELLE SOUS UCHON", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71096"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a76dba2503a2ead92f389e9051e8940e449bcb", "fields": {"nom_de_la_commune": "CHARBONNAT", "libell_d_acheminement": "CHARBONNAT", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71098"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645aa586e9b9fdb31a10c1858aa66ac2fa0f895e", "fields": {"nom_de_la_commune": "CHARDONNAY", "libell_d_acheminement": "CHARDONNAY", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71100"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e8001178ae8e199bf6e836d65dba075a238b92d", "fields": {"code_postal": "71270", "code_commune_insee": "71101", "libell_d_acheminement": "CHARETTE VARENNES", "ligne_5": "VARENNE SUR LE DOUBS", "nom_de_la_commune": "CHARETTE VARENNES", "coordonnees_gps": [46.8994601906, 5.25743617076]}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8118d8b992235b2bee23bc8c1b42e1c58faafaae", "fields": {"nom_de_la_commune": "CHARRECEY", "libell_d_acheminement": "CHARRECEY", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71107"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90417f0098e9e6bd6d828a5bb1eee96266b423fb", "fields": {"nom_de_la_commune": "CHASSEY LE CAMP", "libell_d_acheminement": "CHASSEY LE CAMP", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71109"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf62fd182be63f198b42f12c55e585f9a108ab61", "fields": {"nom_de_la_commune": "CHASSY", "libell_d_acheminement": "CHASSY", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71111"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703b8b8f3ec8395e9cf1f7e5a206d773aaf49c73", "fields": {"nom_de_la_commune": "CHATEAUNEUF", "libell_d_acheminement": "CHATEAUNEUF", "code_postal": "71740", "coordonnees_gps": [46.2095862576, 4.24377069569], "code_commune_insee": "71113"}, "geometry": {"type": "Point", "coordinates": [4.24377069569, 46.2095862576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afa72d18213ad427276d855382d0e8a704e796c1", "fields": {"nom_de_la_commune": "CHEVAGNY SUR GUYE", "libell_d_acheminement": "CHEVAGNY SUR GUYE", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71127"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81082edaa398ca1fe4b534ccb84ddcaab0410e2b", "fields": {"nom_de_la_commune": "CIEL", "libell_d_acheminement": "CIEL", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71131"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97c79ea3c981be086a4c1e879e33228a18a865f1", "fields": {"nom_de_la_commune": "CLERMAIN", "libell_d_acheminement": "CLERMAIN", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71134"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56efe22380d56c99c5868401eda2540c6eba59ec", "fields": {"nom_de_la_commune": "CLESSE", "libell_d_acheminement": "CLESSE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71135"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5344b4732e4a59c5ea37fe0c893686500ce4a23", "fields": {"nom_de_la_commune": "COLOMBIER EN BRIONNAIS", "libell_d_acheminement": "COLOMBIER EN BRIONNAIS", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71141"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86ce368152f2c51a60335cfb0d9f8a9474cb269b", "fields": {"nom_de_la_commune": "CONDAL", "libell_d_acheminement": "CONDAL", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71143"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3d6b370180bceb9b030f09b551f7ef087962a7", "fields": {"nom_de_la_commune": "CRECHES SUR SAONE", "libell_d_acheminement": "CRECHES SUR SAONE", "code_postal": "71680", "coordonnees_gps": [46.2494951765, 4.78409941334], "code_commune_insee": "71150"}, "geometry": {"type": "Point", "coordinates": [4.78409941334, 46.2494951765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c72c80e20884f18bebe764387e99f755cc02d5", "fields": {"nom_de_la_commune": "CRONAT", "libell_d_acheminement": "CRONAT", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71155"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c416b2e96563f2c47043ad7f3bc5659dc4339804", "fields": {"nom_de_la_commune": "CUISEAUX", "libell_d_acheminement": "CUISEAUX", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71157"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a29e9259acf5ee6e33c45bff9144a27241d30fbb", "fields": {"nom_de_la_commune": "CUSSY EN MORVAN", "libell_d_acheminement": "CUSSY EN MORVAN", "code_postal": "71550", "coordonnees_gps": [47.0673836602, 4.11662023514], "code_commune_insee": "71165"}, "geometry": {"type": "Point", "coordinates": [4.11662023514, 47.0673836602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5f4b60e9d35ec00054a6515ad9911a956efc00", "fields": {"nom_de_la_commune": "CUZY", "libell_d_acheminement": "CUZY", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71166"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b788e9982a9c0ee18da5bd9db665df87f68628a", "fields": {"nom_de_la_commune": "DENNEVY", "libell_d_acheminement": "DENNEVY", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71171"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328d39742cc09247d62a16f51e40fd6940ea781f", "fields": {"nom_de_la_commune": "DETTEY", "libell_d_acheminement": "DETTEY", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71172"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "089078317a588c9c7bb0336ca4b2d4dc5366aeee", "fields": {"nom_de_la_commune": "DRACY ST LOUP", "libell_d_acheminement": "DRACY ST LOUP", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71184"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c3be15b7a5e94358da22d650b70496e7552b3ec", "fields": {"nom_de_la_commune": "DYO", "libell_d_acheminement": "DYO", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71185"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaa704aaa3aa33d453a2c5464ec706cf33d213ed", "fields": {"nom_de_la_commune": "ECUISSES", "libell_d_acheminement": "ECUISSES", "code_postal": "71210", "coordonnees_gps": [46.7455963584, 4.48062710036], "code_commune_insee": "71187"}, "geometry": {"type": "Point", "coordinates": [4.48062710036, 46.7455963584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbc2245c5849ec98e81161afc6bc4a7c4f290373", "fields": {"nom_de_la_commune": "ETANG SUR ARROUX", "libell_d_acheminement": "ETANG SUR ARROUX", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71192"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc78482ccc324375b32ffc72560508eff193508d", "fields": {"nom_de_la_commune": "ETRIGNY", "libell_d_acheminement": "ETRIGNY", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71193"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "737085f3ccfd4cff02d793e9dac1ce7686795e53", "fields": {"nom_de_la_commune": "FLACEY EN BRESSE", "libell_d_acheminement": "FLACEY EN BRESSE", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71198"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b5cf6ce50167f7a73a9edccd454d5a1e73bc6cd", "fields": {"nom_de_la_commune": "FLAGY", "libell_d_acheminement": "FLAGY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71199"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f83c0b96e978430d99d9dab003bcbfe4aea4329", "fields": {"nom_de_la_commune": "FLEURY LA MONTAGNE", "libell_d_acheminement": "FLEURY LA MONTAGNE", "code_postal": "71340", "coordonnees_gps": [46.211474132, 4.04415638595], "code_commune_insee": "71200"}, "geometry": {"type": "Point", "coordinates": [4.04415638595, 46.211474132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e713847f64bdccc88bcac0d816fcc91661cd63", "fields": {"code_postal": "71530", "code_commune_insee": "71204", "libell_d_acheminement": "FRAGNES LA LOYERE", "ligne_5": "LA LOYERE", "nom_de_la_commune": "FRAGNES LA LOYERE", "coordonnees_gps": [46.8388869017, 4.87612871845]}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d5f96fbac2c68f6e4b1784f8175c46730895f7", "fields": {"nom_de_la_commune": "GOURDON", "libell_d_acheminement": "GOURDON", "code_postal": "71300", "coordonnees_gps": [46.6732150919, 4.39767167499], "code_commune_insee": "71222"}, "geometry": {"type": "Point", "coordinates": [4.39767167499, 46.6732150919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c728b9f8ac8648fce9c174d03fda547c1d392b", "fields": {"nom_de_la_commune": "GRANDVAUX", "libell_d_acheminement": "GRANDVAUX", "code_postal": "71430", "coordonnees_gps": [46.5278181999, 4.19290320019], "code_commune_insee": "71224"}, "geometry": {"type": "Point", "coordinates": [4.19290320019, 46.5278181999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea06f2d3937cbd9e5eeb462e62b0d3c3074ca16", "fields": {"nom_de_la_commune": "GRANGES", "libell_d_acheminement": "GRANGES", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71225"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385898de124b57de88fc971dd483c7e2f390a70a", "fields": {"nom_de_la_commune": "IGORNAY", "libell_d_acheminement": "IGORNAY", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71237"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6726052d46b7a8a99be8bd0ee3b09db6f840d411", "fields": {"nom_de_la_commune": "JALOGNY", "libell_d_acheminement": "JALOGNY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71240"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "120372e3a43d3259d94acfd45360b9fb80528dda", "fields": {"nom_de_la_commune": "JOUDES", "libell_d_acheminement": "JOUDES", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71243"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f3bbe3fa55a232c3e937a3114bee606ef7f232d", "fields": {"nom_de_la_commune": "LANS", "libell_d_acheminement": "LANS", "code_postal": "71380", "coordonnees_gps": [46.7753179262, 4.92186560965], "code_commune_insee": "71253"}, "geometry": {"type": "Point", "coordinates": [4.92186560965, 46.7753179262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0275634b9ce9bd3e4e2a96194f2c33795a2e934", "fields": {"nom_de_la_commune": "LAYS SUR LE DOUBS", "libell_d_acheminement": "LAYS SUR LE DOUBS", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71254"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0116d9bfca4773133af03d286c9310599ee465", "fields": {"nom_de_la_commune": "LUX", "libell_d_acheminement": "LUX", "code_postal": "71100", "coordonnees_gps": [46.753921991, 4.82932300465], "code_commune_insee": "71269"}, "geometry": {"type": "Point", "coordinates": [4.82932300465, 46.753921991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4908fb0afbdcc03aee057f1b97331758df5afb", "fields": {"code_postal": "71000", "code_commune_insee": "71270", "libell_d_acheminement": "MACON", "ligne_5": "FLACE LES MACON", "nom_de_la_commune": "MACON", "coordonnees_gps": [46.3175504743, 4.81977288125]}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f50576c94531bc2aa2b0eff2e33cacee0e196ce", "fields": {"nom_de_la_commune": "MAILLY", "libell_d_acheminement": "MAILLY", "code_postal": "71340", "coordonnees_gps": [46.211474132, 4.04415638595], "code_commune_insee": "71271"}, "geometry": {"type": "Point", "coordinates": [4.04415638595, 46.211474132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddf1933a32d48059659658adae15288c7e2ece01", "fields": {"nom_de_la_commune": "MARNAY", "libell_d_acheminement": "MARNAY", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71283"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae91fd99761b18a47941033920690b61e7aaceb", "fields": {"nom_de_la_commune": "MASSY", "libell_d_acheminement": "MASSY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71288"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad31cd2cf8b1f8ebbe9c4a8d90245c91bbe799ad", "fields": {"nom_de_la_commune": "MELLECEY", "libell_d_acheminement": "MELLECEY", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71292"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd9b0ff5545e48275c633820e4a5209787adc0b3", "fields": {"nom_de_la_commune": "MONTCENIS", "libell_d_acheminement": "MONTCENIS", "code_postal": "71710", "coordonnees_gps": [46.7997202983, 4.34541340932], "code_commune_insee": "71309"}, "geometry": {"type": "Point", "coordinates": [4.34541340932, 46.7997202983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b16db96fe646bef932e06c1cac40d464f53094c", "fields": {"nom_de_la_commune": "MONTCHANIN", "libell_d_acheminement": "MONTCHANIN", "code_postal": "71210", "coordonnees_gps": [46.7455963584, 4.48062710036], "code_commune_insee": "71310"}, "geometry": {"type": "Point", "coordinates": [4.48062710036, 46.7455963584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a80dce744acbf30b7f454cce1c9ac8cf584bd50d", "fields": {"nom_de_la_commune": "MONT LES SEURRE", "libell_d_acheminement": "MONT LES SEURRE", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71315"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bf28a5869a28734524f5b28b764b69967246cf3", "fields": {"nom_de_la_commune": "MORLET", "libell_d_acheminement": "MORLET", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71322"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bfd7e35c2e74b26c20f2d76b886841b9fd8cf18", "fields": {"nom_de_la_commune": "MORNAY", "libell_d_acheminement": "MORNAY", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71323"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a59509aa0bf399ec06b8308f75b6a037be55bd31", "fields": {"nom_de_la_commune": "MOUTHIER EN BRESSE", "libell_d_acheminement": "MOUTHIER EN BRESSE", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71326"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "666b7ce5c673df884b34fc315885c7724c8b63a7", "fields": {"nom_de_la_commune": "OZOLLES", "libell_d_acheminement": "OZOLLES", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71339"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49435e747f46cd659e898a8ce4a29056ca9fc10c", "fields": {"nom_de_la_commune": "PALINGES", "libell_d_acheminement": "PALINGES", "code_postal": "71430", "coordonnees_gps": [46.5278181999, 4.19290320019], "code_commune_insee": "71340"}, "geometry": {"type": "Point", "coordinates": [4.19290320019, 46.5278181999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b98725fcc3560cd63c7049bbda58da62f963c5", "fields": {"nom_de_la_commune": "PARIS L HOPITAL", "libell_d_acheminement": "PARIS L HOPITAL", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71343"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "866c610a15952cdd07e87d5c81185c3bcb7ca05c", "fields": {"nom_de_la_commune": "PASSY", "libell_d_acheminement": "PASSY", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71344"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51876ecac547a384539a033d6fbb8e839f71c875", "fields": {"nom_de_la_commune": "POISSON", "libell_d_acheminement": "POISSON", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71354"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d05911a0f886c0eff0a44ef7c3ea438a7d70ee74", "fields": {"nom_de_la_commune": "POURLANS", "libell_d_acheminement": "POURLANS", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71357"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c5d7b5db85631d7bfdc10eace241921ceb26a1", "fields": {"nom_de_la_commune": "PRISSE", "libell_d_acheminement": "PRISSE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71360"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a5e4ffcecbb408e9f84c246bbc2db4ff28133f2", "fields": {"nom_de_la_commune": "PRIZY", "libell_d_acheminement": "PRIZY", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71361"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c16682f22d2c3ff40137e5b64ef85b8d1d816b", "fields": {"nom_de_la_commune": "RECLESNE", "libell_d_acheminement": "RECLESNE", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71368"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbebd6c3de5c3d7f7bcfedddb9715307712e16f8", "fields": {"nom_de_la_commune": "SAILLY", "libell_d_acheminement": "SAILLY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71381"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0951cac64ecbc5714ce4495b1b56d4b38f89e021", "fields": {"nom_de_la_commune": "ST AMBREUIL", "libell_d_acheminement": "ST AMBREUIL", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71384"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a652fe230d7c32fd7ebfa12e4c346d1b911af9d8", "fields": {"nom_de_la_commune": "ST ANDRE LE DESERT", "libell_d_acheminement": "ST ANDRE LE DESERT", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71387"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52642574dd62839bb8303b08629f3d9feae21639", "fields": {"nom_de_la_commune": "BERGERES SOUS MONTMIRAIL", "libell_d_acheminement": "BERGERES SOUS MONTMIRAIL", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51050"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87a184e87a4f16f05acc6287f944c3cb2702cd85", "fields": {"nom_de_la_commune": "BERRU", "libell_d_acheminement": "BERRU", "code_postal": "51420", "coordonnees_gps": [49.2697568482, 4.13175123605], "code_commune_insee": "51052"}, "geometry": {"type": "Point", "coordinates": [4.13175123605, 49.2697568482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3ce978074758bd4fa301a191a68fa1b63bc2531", "fields": {"nom_de_la_commune": "BETHENY", "libell_d_acheminement": "BETHENY", "code_postal": "51450", "coordonnees_gps": [49.2957748213, 4.06017274114], "code_commune_insee": "51055"}, "geometry": {"type": "Point", "coordinates": [4.06017274114, 49.2957748213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c674044848bd9e7d3d9e4850264391a1cea096ce", "fields": {"nom_de_la_commune": "BIGNICOURT SUR MARNE", "libell_d_acheminement": "BIGNICOURT SUR MARNE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51059"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b63feac62b462efe7f27e12057c4e38c4bcf651", "fields": {"nom_de_la_commune": "BOISSY LE REPOS", "libell_d_acheminement": "BOISSY LE REPOS", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51070"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "458d33a223b33af34d436469cb0d00b3199dd373", "fields": {"nom_de_la_commune": "BOULEUSE", "libell_d_acheminement": "BOULEUSE", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51073"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1337137484a1511a26f4f8be034d8b55b9516520", "fields": {"nom_de_la_commune": "BRANSCOURT", "libell_d_acheminement": "BRANSCOURT", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51081"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ac3c08d9a8fc94f806c0891aadd10834ba4b24", "fields": {"nom_de_la_commune": "BRAUX ST REMY", "libell_d_acheminement": "BRAUX ST REMY", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51083"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8321edddcb4e9b4dc3337534499cee40f72799d0", "fields": {"nom_de_la_commune": "BRIMONT", "libell_d_acheminement": "BRIMONT", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51088"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad5492c04bdb89b1ee1912e324123e20ce3f0a0", "fields": {"nom_de_la_commune": "BUSSY LE CHATEAU", "libell_d_acheminement": "BUSSY LE CHATEAU", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51097"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "205606d34432b400069f8c09527ed2ad550994a8", "fields": {"nom_de_la_commune": "BUSSY LETTREE", "libell_d_acheminement": "BUSSY LETTREE", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51099"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ac3a9399aa162eda6f155b27f033a875add2e7", "fields": {"nom_de_la_commune": "CAUREL", "libell_d_acheminement": "CAUREL", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51101"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2787044f9b6c6799a4b42428d94215ffbe67477", "fields": {"nom_de_la_commune": "CHALONS EN CHAMPAGNE", "libell_d_acheminement": "CHALONS EN CHAMPAGNE", "code_postal": "51000", "coordonnees_gps": [48.9640626928, 4.37886072639], "code_commune_insee": "51108"}, "geometry": {"type": "Point", "coordinates": [4.37886072639, 48.9640626928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff94088bb1d4c0bf97f26412566b8ebd2563b350", "fields": {"nom_de_la_commune": "CHAMBRECY", "libell_d_acheminement": "CHAMBRECY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51111"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "710cf666cc9a38d5b004cadc8b6d37549cdf94ec", "fields": {"nom_de_la_commune": "CHAMPGUYON", "libell_d_acheminement": "CHAMPGUYON", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51116"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aacd9b4e8b637fd2ee8dd996a31524d3154f7326", "fields": {"nom_de_la_commune": "CHAMPILLON", "libell_d_acheminement": "CHAMPILLON", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51119"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc5f419332aea3516051e57a89c7787a59cf4d5", "fields": {"nom_de_la_commune": "LES CHARMONTOIS", "libell_d_acheminement": "LES CHARMONTOIS", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51132"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb4fc10cd56efcff32c17db21d3b09d343332e81", "fields": {"nom_de_la_commune": "LE CHATELIER", "libell_d_acheminement": "LE CHATELIER", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51133"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db59354ebed00cc4afa4d986a952bc557def3aba", "fields": {"nom_de_la_commune": "CHATILLON SUR MARNE", "libell_d_acheminement": "CHATILLON SUR MARNE", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51136"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370bc50b588abd8e480e396edcf751537aabd0d1", "fields": {"nom_de_la_commune": "CHATILLON SUR MORIN", "libell_d_acheminement": "CHATILLON SUR MORIN", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51137"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f15f155851561592549ed65d1489e433c5f18e5b", "fields": {"nom_de_la_commune": "COIZARD JOCHES", "libell_d_acheminement": "COIZARD JOCHES", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51157"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c23277cc9bfe4a23edb23205fe853359336c748", "fields": {"nom_de_la_commune": "VAL DES MARAIS", "libell_d_acheminement": "VAL DES MARAIS", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51158"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d9e0b2a2cadd58cb982ac944cc59980ef3ad280", "fields": {"nom_de_la_commune": "CONDE SUR MARNE", "libell_d_acheminement": "CONDE SUR MARNE", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51161"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd13d6009a57fea4d50b97165bbe08ca544aee0e", "fields": {"nom_de_la_commune": "CONGY", "libell_d_acheminement": "CONGY", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51163"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcdfc50ad6c3fce5a3dd137289e6e1f626204bd1", "fields": {"nom_de_la_commune": "CORMOYEUX", "libell_d_acheminement": "CORMOYEUX", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51173"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "455a63632ba4a19a5ba9c7580f297d1d3407af6d", "fields": {"nom_de_la_commune": "COURCY", "libell_d_acheminement": "COURCY", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51183"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aecd0e29bdcba84f4a568c109ee14112a217d404", "fields": {"nom_de_la_commune": "COURDEMANGES", "libell_d_acheminement": "COURDEMANGES", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51184"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a36599de910ceed2d40ef3e724dd9dd070f561df", "fields": {"nom_de_la_commune": "COURMAS", "libell_d_acheminement": "COURMAS", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51188"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d0f5e64496fe47db4d02f1121b5ed468784ceae", "fields": {"nom_de_la_commune": "CRUGNY", "libell_d_acheminement": "CRUGNY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51198"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08677cbdfb68ab86ab642da49e439eec02e1e0db", "fields": {"nom_de_la_commune": "CUCHERY", "libell_d_acheminement": "CUCHERY", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51199"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aeab225d28786d763a6e81b4a68f176530bc949", "fields": {"nom_de_la_commune": "DAMPIERRE LE CHATEAU", "libell_d_acheminement": "DAMPIERRE LE CHATEAU", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51206"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d35d59ec55bae199e92fd0ba0360da0bf5916f2", "fields": {"nom_de_la_commune": "DOMMARTIN DAMPIERRE", "libell_d_acheminement": "DOMMARTIN DAMPIERRE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51211"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d05cb7e1bb40e6037c3d55b8ea13af5da7ca04", "fields": {"nom_de_la_commune": "DROSNAY", "libell_d_acheminement": "DROSNAY", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51219"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da34791d3651ef87d1ee2401aadbf586b8164c8", "fields": {"nom_de_la_commune": "ECURY SUR COOLE", "libell_d_acheminement": "ECURY SUR COOLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51227"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc5766df22928abf592ae22c6e70b263b28cc404", "fields": {"nom_de_la_commune": "EPENSE", "libell_d_acheminement": "EPENSE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51229"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cdfbca6e0572a46e4067b20bafc22fae1dc66fc", "fields": {"nom_de_la_commune": "ESCLAVOLLES LUREY", "libell_d_acheminement": "ESCLAVOLLES LUREY", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51234"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce6afa7922670c055f5eaa78c41f05d314c65dcc", "fields": {"nom_de_la_commune": "ETRECHY", "libell_d_acheminement": "ETRECHY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51239"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "251ee068f5be1269d31a1c3c4cc9d0702a03b93e", "fields": {"nom_de_la_commune": "EUVY", "libell_d_acheminement": "EUVY", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51241"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f93a0dcaf7e890861951a4b47c9b22b27a7af0", "fields": {"nom_de_la_commune": "FAGNIERES", "libell_d_acheminement": "FAGNIERES", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51242"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b5fc57aa07861a09c5cd4b6470b654a64a1bfe", "fields": {"nom_de_la_commune": "FAVRESSE", "libell_d_acheminement": "FAVRESSE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51246"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb97774783463073b750960698f21c83815da3ed", "fields": {"nom_de_la_commune": "FONTAINE DENIS NUISY", "libell_d_acheminement": "FONTAINE DENIS NUISY", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51254"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a31bb1c3969c18f04369861b642f4d58c9f239e0", "fields": {"nom_de_la_commune": "GERMIGNY", "libell_d_acheminement": "GERMIGNY", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51267"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94c173c6aa3222686418e70e402643c216907c63", "fields": {"nom_de_la_commune": "GRANGES SUR AUBE", "libell_d_acheminement": "GRANGES SUR AUBE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51279"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbdcd3bd5338e2d35b3f5add11497994be154c35", "fields": {"nom_de_la_commune": "GRATREUIL", "libell_d_acheminement": "GRATREUIL", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51280"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b19ee5a8dff261b6c9307820ddfbfe6910ec10be", "fields": {"nom_de_la_commune": "HEILTZ LE MAURUPT", "libell_d_acheminement": "HEILTZ LE MAURUPT", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51289"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f634f452be5e67a62ee7fb801375cf4d139af4", "fields": {"nom_de_la_commune": "HERPONT", "libell_d_acheminement": "HERPONT", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51292"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18305f06bb022cf0c347a9adbf6a572dc13adc9f", "fields": {"nom_de_la_commune": "JANVRY", "libell_d_acheminement": "JANVRY", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51305"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04479ab6749f1c63247f2b786259c1a860b62421", "fields": {"nom_de_la_commune": "JONCHERY SUR SUIPPE", "libell_d_acheminement": "JONCHERY SUR SUIPPE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51307"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e771a647a3239353716b93b464106cce125afd4", "fields": {"nom_de_la_commune": "JONQUERY", "libell_d_acheminement": "JONQUERY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51309"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dac36e3f463667b7338ca7ff544cd77e68e72d9", "fields": {"nom_de_la_commune": "LAVANNES", "libell_d_acheminement": "LAVANNES", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51318"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8021ec1a18f6ba988a185d2477e8d42bfc121a0", "fields": {"nom_de_la_commune": "MAILLY CHAMPAGNE", "libell_d_acheminement": "MAILLY CHAMPAGNE", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51338"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d11aeb2f71051bf57c2b9b4dc36d46006751ad", "fields": {"nom_de_la_commune": "MARCILLY SUR SEINE", "libell_d_acheminement": "MARCILLY SUR SEINE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51343"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb956d7c7c99ccb6dc35ccf5edb3c1de25923ece", "fields": {"nom_de_la_commune": "MAREUIL EN BRIE", "libell_d_acheminement": "MAREUIL EN BRIE", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51345"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92229ac38d456e2e112c0dff2b11c194fef59c7a", "fields": {"nom_de_la_commune": "MAREUIL LE PORT", "libell_d_acheminement": "MAREUIL LE PORT", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51346"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a886c5eaab5e139bc189f5ea3d178eefd5d119de", "fields": {"nom_de_la_commune": "MARIGNY", "libell_d_acheminement": "MARIGNY", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51351"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "383a1e300056c0830e4069926ab81753eba17030", "fields": {"nom_de_la_commune": "MASSIGES", "libell_d_acheminement": "MASSIGES", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51355"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f36496d6c400a19d5b8bbeaae13246be883e4c", "fields": {"nom_de_la_commune": "MATOUGUES", "libell_d_acheminement": "MATOUGUES", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51357"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c82af37aec09dd1d44586ac68419cb647892f7", "fields": {"nom_de_la_commune": "MERY PREMECY", "libell_d_acheminement": "MERY PREMECY", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51364"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "591ba0548b119eb7a15fd9332d95493100253aa9", "fields": {"nom_de_la_commune": "LE MESNIL SUR OGER", "libell_d_acheminement": "LE MESNIL SUR OGER", "code_postal": "51190", "coordonnees_gps": [48.9639815903, 4.02338180898], "code_commune_insee": "51367"}, "geometry": {"type": "Point", "coordinates": [4.02338180898, 48.9639815903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12fa9cca0102bbba68945d8fd015493fa2b67ec9", "fields": {"nom_de_la_commune": "MORSAINS", "libell_d_acheminement": "MORSAINS", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51386"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01063a72c4126b5a57c4229e02674430b54ae5ef", "fields": {"nom_de_la_commune": "MOURMELON LE GRAND", "libell_d_acheminement": "MOURMELON LE GRAND", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51388"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be943f84d51f18c5cc60ed469facc6571f12b6e9", "fields": {"nom_de_la_commune": "LA NEUVILLE AUX BOIS", "libell_d_acheminement": "LA NEUVILLE AUX BOIS", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51397"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc7efb7108a33d1735100ad37481f03680c94a80", "fields": {"nom_de_la_commune": "LA NEUVILLE AU PONT", "libell_d_acheminement": "LA NEUVILLE AU PONT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51399"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f06ced21b2b775a89449286f249aaa3a85b4d61", "fields": {"nom_de_la_commune": "NOIRLIEU", "libell_d_acheminement": "NOIRLIEU", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51404"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "909a46344593a1aae42e9413f5138de97ddf3720", "fields": {"nom_de_la_commune": "PEVY", "libell_d_acheminement": "PEVY", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51429"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b6c6931bd453569663fc2c257948d85814332c", "fields": {"nom_de_la_commune": "PLICHANCOURT", "libell_d_acheminement": "PLICHANCOURT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51433"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ce7c8a8cf67fc823e04eee9f380c3fe96bcd9d", "fields": {"nom_de_la_commune": "POGNY", "libell_d_acheminement": "POGNY", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51436"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551be3b6b7e519632e370e6a5af0cc871980bcfd", "fields": {"nom_de_la_commune": "POMACLE", "libell_d_acheminement": "POMACLE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51439"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "322cbdf4cee11a2f3eece7eeba1049be8507d3ae", "fields": {"nom_de_la_commune": "PONTFAVERGER MORONVILLIERS", "libell_d_acheminement": "PONTFAVERGER MORONVILLIERS", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51440"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "704fd7dd078eb2e655c4a8ebb64c29225edfa718", "fields": {"nom_de_la_commune": "POSSESSE", "libell_d_acheminement": "POSSESSE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51442"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8314ebc5cbf742b4e27a19a18e86343dd2d2cc4", "fields": {"nom_de_la_commune": "ROMERY", "libell_d_acheminement": "ROMERY", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51465"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621ecc6f24e4120f3da47b19697af12769497d4e", "fields": {"nom_de_la_commune": "ROUFFY", "libell_d_acheminement": "ROUFFY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51469"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d026a506d63757d68fde20e1633afab95303de2e", "fields": {"nom_de_la_commune": "ROUVROY RIPONT", "libell_d_acheminement": "ROUVROY RIPONT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51470"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417837e3f5317b81e5464726e196e5f9fd65ae7b", "fields": {"nom_de_la_commune": "ST AMAND SUR FION", "libell_d_acheminement": "ST AMAND SUR FION", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51472"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f207847067fe1726c7f6d394c93ad7722a8482c8", "fields": {"nom_de_la_commune": "ST GERMAIN LA VILLE", "libell_d_acheminement": "ST GERMAIN LA VILLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51482"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee875f15a67c4e8315df09102e2d9c0a0757837", "fields": {"nom_de_la_commune": "ST HILAIRE AU TEMPLE", "libell_d_acheminement": "ST HILAIRE AU TEMPLE", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51485"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4617aa4b42ec3edea69afa347ac511ed5518caea", "fields": {"nom_de_la_commune": "ST HILAIRE LE PETIT", "libell_d_acheminement": "ST HILAIRE LE PETIT", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51487"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09a21f106472ffe390cfb5fe4265f1d579deff0d", "fields": {"nom_de_la_commune": "ST JEAN DEVANT POSSESSE", "libell_d_acheminement": "ST JEAN DEVANT POSSESSE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51489"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d62282262792ea2de3c25c391c3cdd8d76e7e54a", "fields": {"nom_de_la_commune": "ST LUMIER LA POPULEUSE", "libell_d_acheminement": "ST LUMIER LA POPULEUSE", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51497"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d41ef0504f8a73418398f39d358e87eda6351c8", "fields": {"nom_de_la_commune": "ST MARD LES ROUFFY", "libell_d_acheminement": "ST MARD LES ROUFFY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51499"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6884e7c91adb29d1a0fea5cb48dd150f430a5816", "fields": {"nom_de_la_commune": "ST MARTIN AUX CHAMPS", "libell_d_acheminement": "ST MARTIN AUX CHAMPS", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51502"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f31fdc7c85fc34c9dff81d1290a891efa0296491", "fields": {"nom_de_la_commune": "ST MARTIN SUR LE PRE", "libell_d_acheminement": "ST MARTIN SUR LE PRE", "code_postal": "51520", "coordonnees_gps": [48.9826382604, 4.36070920817], "code_commune_insee": "51504"}, "geometry": {"type": "Point", "coordinates": [4.36070920817, 48.9826382604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fedad820a38d762119df34f27370d364ec11047e", "fields": {"nom_de_la_commune": "ST QUENTIN LE VERGER", "libell_d_acheminement": "ST QUENTIN LE VERGER", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51511"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65e89ad08af97e1a7c193c0a594d86cef1874afa", "fields": {"nom_de_la_commune": "ST QUENTIN SUR COOLE", "libell_d_acheminement": "ST QUENTIN SUR COOLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51512"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537d34b861626c7cc0c266a796ffd2cf7d138f26", "fields": {"nom_de_la_commune": "ST REMY SOUS BROYES", "libell_d_acheminement": "ST REMY SOUS BROYES", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51514"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "380dbda870f3c44471be6ab3b42e09a6652671e3", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51516"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cb2b7a48adcfcadb8a8c772c3f96cae097759ee", "fields": {"nom_de_la_commune": "ST VRAIN", "libell_d_acheminement": "ST VRAIN", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51521"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a22c2c19fac4867e60a7df1b4ee8bc72351e183b", "fields": {"nom_de_la_commune": "SARON SUR AUBE", "libell_d_acheminement": "SARON SUR AUBE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51524"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8396c03ddcee0b01c1a2c65f81a247a34675e7", "fields": {"nom_de_la_commune": "SCRUPT", "libell_d_acheminement": "SCRUPT", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51528"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef694b9a86ea3c83d0875ba5bd9bc591ae07cc36", "fields": {"nom_de_la_commune": "SEZANNE", "libell_d_acheminement": "SEZANNE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51535"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f532549c6aacf18112432db0ebab36b472091c76", "fields": {"nom_de_la_commune": "SILLERY", "libell_d_acheminement": "SILLERY", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51536"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1dfb1b8de276f652713f8807860418382db85a", "fields": {"nom_de_la_commune": "SOGNY EN L ANGLE", "libell_d_acheminement": "SOGNY EN L ANGLE", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51539"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca2088952fb7e7d2b8c2ee2b714f5b2a6936efd3", "fields": {"nom_de_la_commune": "SOMME BIONNE", "libell_d_acheminement": "SOMME BIONNE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51543"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c838ef9f888fb8ac9037560b4c6062343a33c54b", "fields": {"nom_de_la_commune": "SOMME TOURBE", "libell_d_acheminement": "SOMME TOURBE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51547"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2e1d7aa78a330c268beb79330d7b7fb41ad9645", "fields": {"nom_de_la_commune": "SOUDE", "libell_d_acheminement": "SOUDE", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51555"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "880460d02250278e384bba1f8756cc5732be057d", "fields": {"nom_de_la_commune": "SOUDRON", "libell_d_acheminement": "SOUDRON", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51556"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab01879b78c92745467d5dd13c7b35a2580eb849", "fields": {"nom_de_la_commune": "TAISSY", "libell_d_acheminement": "TAISSY", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51562"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "963a08f4653ace348481400fa3428ac48fdba936", "fields": {"code_postal": "51150", "code_commune_insee": "51564", "libell_d_acheminement": "VAL DE LIVRE", "ligne_5": "LOUVOIS", "nom_de_la_commune": "VAL DE LIVRE", "coordonnees_gps": [49.0294111773, 4.16667797153]}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096a053da88994fee96416ca22032d8f405454f1", "fields": {"nom_de_la_commune": "THIEBLEMONT FAREMONT", "libell_d_acheminement": "THIEBLEMONT FAREMONT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51567"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ab258a50d1ce9dced46df97c34f482edf49969", "fields": {"nom_de_la_commune": "LE THOULT TROSNAY", "libell_d_acheminement": "LE THOULT TROSNAY", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51570"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d195418aa2209daf99717af223bddb26ef6a11ff", "fields": {"nom_de_la_commune": "MEAUX LA MONTAGNE", "libell_d_acheminement": "MEAUX LA MONTAGNE", "code_postal": "69550", "coordonnees_gps": [45.9921852831, 4.36092903246], "code_commune_insee": "69130"}, "geometry": {"type": "Point", "coordinates": [4.36092903246, 45.9921852831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f747b9e224204c79ebd4e1f557bad66c5a1ff8", "fields": {"nom_de_la_commune": "MONTAGNY", "libell_d_acheminement": "MONTAGNY", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69136"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2539a3db1cab62b72d4acfe4ff1ebf2cf3c2e2c4", "fields": {"code_postal": "69480", "code_commune_insee": "69140", "libell_d_acheminement": "MORANCE", "ligne_5": "ST PIERRE", "nom_de_la_commune": "MORANCE", "coordonnees_gps": [45.9282095873, 4.70232833984]}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a19896148f651c43d82b6bd1b0b1aaa123ebc33", "fields": {"nom_de_la_commune": "MORNANT", "libell_d_acheminement": "MORNANT", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69141"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9057b33d868904f9b25416854b5a78d51b2cff", "fields": {"code_postal": "69440", "code_commune_insee": "69141", "libell_d_acheminement": "MORNANT", "ligne_5": "LE ROSSEON", "nom_de_la_commune": "MORNANT", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3efbbbfa11048704bbb7039b8a80136e5f06954a", "fields": {"nom_de_la_commune": "NEUVILLE SUR SAONE", "libell_d_acheminement": "NEUVILLE SUR SAONE", "code_postal": "69250", "coordonnees_gps": [45.8691904995, 4.83538598434], "code_commune_insee": "69143"}, "geometry": {"type": "Point", "coordinates": [4.83538598434, 45.8691904995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "315887da3fbfaffd7b86fcf2091515e868abebae", "fields": {"nom_de_la_commune": "PIERRE BENITE", "libell_d_acheminement": "PIERRE BENITE", "code_postal": "69310", "coordonnees_gps": [45.7022087927, 4.8264216036], "code_commune_insee": "69152"}, "geometry": {"type": "Point", "coordinates": [4.8264216036, 45.7022087927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d017abf41bd725d3d44ccc0df273df3955069f", "fields": {"nom_de_la_commune": "POLEYMIEUX AU MONT D OR", "libell_d_acheminement": "POLEYMIEUX AU MONT D OR", "code_postal": "69250", "coordonnees_gps": [45.8691904995, 4.83538598434], "code_commune_insee": "69153"}, "geometry": {"type": "Point", "coordinates": [4.83538598434, 45.8691904995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "408375cf6001ac7aadf4618dfa78cbae67d3fd12", "fields": {"nom_de_la_commune": "POMEYS", "libell_d_acheminement": "POMEYS", "code_postal": "69590", "coordonnees_gps": [45.6217485802, 4.48906764505], "code_commune_insee": "69155"}, "geometry": {"type": "Point", "coordinates": [4.48906764505, 45.6217485802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f855a42024c531e09e8583362bf9b74b28f1a55a", "fields": {"nom_de_la_commune": "POUILLY LE MONIAL", "libell_d_acheminement": "POUILLY LE MONIAL", "code_postal": "69400", "coordonnees_gps": [45.9927200348, 4.70137722216], "code_commune_insee": "69159"}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4157277d10d2771ab630114c2f1537029315447", "fields": {"nom_de_la_commune": "RONTALON", "libell_d_acheminement": "RONTALON", "code_postal": "69510", "coordonnees_gps": [45.6836936194, 4.64151349794], "code_commune_insee": "69170"}, "geometry": {"type": "Point", "coordinates": [4.64151349794, 45.6836936194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62cbf216bbeb7d0dc5bc6223fa816ff9edccc45e", "fields": {"nom_de_la_commune": "SALLES ARBUISSONNAS EN BEAUJOLAIS", "libell_d_acheminement": "SALLES ARBUISSONNAS BEAUJOLAIS", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69172"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1b62f8ceaa0afdeec32b7fb97b15f170d4e8d9", "fields": {"nom_de_la_commune": "SARCEY", "libell_d_acheminement": "SARCEY", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69173"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "919e6c3ae26108677666be7597a735b13eb36cfe", "fields": {"nom_de_la_commune": "LES SAUVAGES", "libell_d_acheminement": "LES SAUVAGES", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69174"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2906b86c5c99e62976eb1a2f7b1b0def250e6d3a", "fields": {"nom_de_la_commune": "ST CLEMENT LES PLACES", "libell_d_acheminement": "ST CLEMENT LES PLACES", "code_postal": "69930", "coordonnees_gps": [45.7453041401, 4.44630555022], "code_commune_insee": "69187"}, "geometry": {"type": "Point", "coordinates": [4.44630555022, 45.7453041401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fea2ee0ad016fb4709c05074224bcca2f3a032cd", "fields": {"nom_de_la_commune": "ST CLEMENT SUR VALSONNE", "libell_d_acheminement": "ST CLEMENT SUR VALSONNE", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69188"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1a9bd383312c0b50edb85ac69a05d1de1d91eb", "fields": {"nom_de_la_commune": "STE CONSORCE", "libell_d_acheminement": "STE CONSORCE", "code_postal": "69280", "coordonnees_gps": [45.7789755728, 4.70169351324], "code_commune_insee": "69190"}, "geometry": {"type": "Point", "coordinates": [4.70169351324, 45.7789755728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad57c98cdeff262f2978e804109dd2c7cea82508", "fields": {"nom_de_la_commune": "ST CYR LE CHATOUX", "libell_d_acheminement": "ST CYR LE CHATOUX", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69192"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791279ea9b559cdd0e706262dc6b3f9b168a24d1", "fields": {"nom_de_la_commune": "ST DIDIER AU MONT D OR", "libell_d_acheminement": "ST DIDIER AU MONT D OR", "code_postal": "69370", "coordonnees_gps": [45.8154250732, 4.79803220273], "code_commune_insee": "69194"}, "geometry": {"type": "Point", "coordinates": [4.79803220273, 45.8154250732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbfb69a3be043b6de0b32e184ad4beac454f197", "fields": {"nom_de_la_commune": "ST DIDIER SOUS RIVERIE", "libell_d_acheminement": "ST DIDIER SOUS RIVERIE", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69195"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ade3fc2754629990e5e3b6e456634894b4c4e5", "fields": {"nom_de_la_commune": "ST FORGEUX", "libell_d_acheminement": "ST FORGEUX", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69200"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96cc4d9c195ba1bd817e5d4d6fb25ac4d4683acf", "fields": {"nom_de_la_commune": "STE FOY L ARGENTIERE", "libell_d_acheminement": "STE FOY L ARGENTIERE", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69201"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4fa4ae19a4d26153c0b25dd34aafe538d228774", "fields": {"nom_de_la_commune": "STE FOY LES LYON", "libell_d_acheminement": "STE FOY LES LYON", "code_postal": "69110", "coordonnees_gps": [45.7361365553, 4.79359970827], "code_commune_insee": "69202"}, "geometry": {"type": "Point", "coordinates": [4.79359970827, 45.7361365553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8629351dbad77e5112224a632dbd8b514f5136d0", "fields": {"nom_de_la_commune": "ST GENIS L ARGENTIERE", "libell_d_acheminement": "ST GENIS L ARGENTIERE", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69203"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa5b60fe6fd5803f536c7069e35493aedb936cf", "fields": {"nom_de_la_commune": "ST IGNY DE VERS", "libell_d_acheminement": "ST IGNY DE VERS", "code_postal": "69790", "coordonnees_gps": [46.2387836899, 4.44287004502], "code_commune_insee": "69209"}, "geometry": {"type": "Point", "coordinates": [4.44287004502, 46.2387836899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3d64ce0a3c1ce29b56aadf73a1838ac08873dd", "fields": {"nom_de_la_commune": "ST JULIEN SUR BIBOST", "libell_d_acheminement": "ST JULIEN SUR BIBOST", "code_postal": "69690", "coordonnees_gps": [45.7650952227, 4.53742435922], "code_commune_insee": "69216"}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efca161bd7c93fb979c237b9d53d0a8a7a7a38f4", "fields": {"nom_de_la_commune": "ST MARTIN EN HAUT", "libell_d_acheminement": "ST MARTIN EN HAUT", "code_postal": "69850", "coordonnees_gps": [45.6632329556, 4.55020035776], "code_commune_insee": "69227"}, "geometry": {"type": "Point", "coordinates": [4.55020035776, 45.6632329556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65949023f71d9f8a4c64f964a3846287125477d5", "fields": {"nom_de_la_commune": "ST MAURICE SUR DARGOIRE", "libell_d_acheminement": "ST MAURICE SUR DARGOIRE", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69228"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d0642c382e13439a72927d35598bd834f5a78f", "fields": {"code_postal": "69440", "code_commune_insee": "69228", "libell_d_acheminement": "ST MAURICE SUR DARGOIRE", "ligne_5": "ROUSSILLIERE", "nom_de_la_commune": "ST MAURICE SUR DARGOIRE", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba61ecc5f4f6975878c491b63629505101d9a2b", "fields": {"code_postal": "69560", "code_commune_insee": "69235", "libell_d_acheminement": "ST ROMAIN EN GAL", "ligne_5": "POMERIEUX", "nom_de_la_commune": "ST ROMAIN EN GAL", "coordonnees_gps": [45.5296436366, 4.83023010495]}, "geometry": {"type": "Point", "coordinates": [4.83023010495, 45.5296436366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676ca1f4265191173b55eeaea7dea92da7f5bc77", "fields": {"nom_de_la_commune": "ST SYMPHORIEN SUR COISE", "libell_d_acheminement": "ST SYMPHORIEN SUR COISE", "code_postal": "69590", "coordonnees_gps": [45.6217485802, 4.48906764505], "code_commune_insee": "69238"}, "geometry": {"type": "Point", "coordinates": [4.48906764505, 45.6217485802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fdfc2bd44674298e33c5246280e5ac67fd5f5d3", "fields": {"nom_de_la_commune": "ST VINCENT DE REINS", "libell_d_acheminement": "ST VINCENT DE REINS", "code_postal": "69240", "coordonnees_gps": [46.068199037, 4.3380922269], "code_commune_insee": "69240"}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ecd5bb666964fb5a5772e66f22462184c6dee9b", "fields": {"code_postal": "69440", "code_commune_insee": "69241", "libell_d_acheminement": "TALUYERS", "ligne_5": "LE BATARD", "nom_de_la_commune": "TALUYERS", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d61fd08be88a97f2e549df2152ac0cf81080d26", "fields": {"nom_de_la_commune": "TARARE", "libell_d_acheminement": "TARARE", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69243"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "497d7b2ff622725e46178115661366b101c192f4", "fields": {"code_postal": "69240", "code_commune_insee": "69248", "libell_d_acheminement": "THIZY LES BOURGS", "ligne_5": "BOURG DE THIZY", "nom_de_la_commune": "THIZY LES BOURGS", "coordonnees_gps": [46.068199037, 4.3380922269]}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d22b3d2e127a9d9b5c6d1f9d7a43a7c74efb2ef", "fields": {"code_postal": "69240", "code_commune_insee": "69248", "libell_d_acheminement": "THIZY LES BOURGS", "ligne_5": "MARDORE", "nom_de_la_commune": "THIZY LES BOURGS", "coordonnees_gps": [46.068199037, 4.3380922269]}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d2c832d8fd83f8559d6b32b5a3a16968ae49e0", "fields": {"nom_de_la_commune": "TRADES", "libell_d_acheminement": "TRADES", "code_postal": "69860", "coordonnees_gps": [46.2400571713, 4.55489493193], "code_commune_insee": "69251"}, "geometry": {"type": "Point", "coordinates": [4.55489493193, 46.2400571713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba3d0267915d3adfa489c0c15be48c6d07ba6bca", "fields": {"nom_de_la_commune": "TUPIN ET SEMONS", "libell_d_acheminement": "TUPIN ET SEMONS", "code_postal": "69420", "coordonnees_gps": [45.5036780287, 4.73457399039], "code_commune_insee": "69253"}, "geometry": {"type": "Point", "coordinates": [4.73457399039, 45.5036780287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81fe670f728e6a6d0b23664a681a4c9b44904250", "fields": {"nom_de_la_commune": "VALSONNE", "libell_d_acheminement": "VALSONNE", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69254"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec3c7aa45c56aee0844182da1ee4868e81d80e5a", "fields": {"nom_de_la_commune": "VILLEFRANCHE SUR SAONE", "libell_d_acheminement": "VILLEFRANCHE SUR SAONE", "code_postal": "69400", "coordonnees_gps": [45.9927200348, 4.70137722216], "code_commune_insee": "69264"}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6970b7b62c0b9cbaf416281dc4a125ccd8ab6819", "fields": {"nom_de_la_commune": "VILLE SUR JARNIOUX", "libell_d_acheminement": "VILLE SUR JARNIOUX", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69265"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a069f627362bae25e9144bd65d9f469f4e90e217", "fields": {"nom_de_la_commune": "YZERON", "libell_d_acheminement": "YZERON", "code_postal": "69510", "coordonnees_gps": [45.6836936194, 4.64151349794], "code_commune_insee": "69269"}, "geometry": {"type": "Point", "coordinates": [4.64151349794, 45.6836936194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e94704ca362b42453fdebeecf98381c66a7e468e", "fields": {"nom_de_la_commune": "CHAPONNAY", "libell_d_acheminement": "CHAPONNAY", "code_postal": "69970", "coordonnees_gps": [45.626140728, 4.93340438392], "code_commune_insee": "69270"}, "geometry": {"type": "Point", "coordinates": [4.93340438392, 45.626140728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a799b05f6e93507bafd87b2634b4faefdaf1c9ee", "fields": {"nom_de_la_commune": "CORBAS", "libell_d_acheminement": "CORBAS", "code_postal": "69960", "coordonnees_gps": [45.6681487919, 4.90843192874], "code_commune_insee": "69273"}, "geometry": {"type": "Point", "coordinates": [4.90843192874, 45.6681487919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e879d45fd90c0c366a149f6133806569b6a1944", "fields": {"code_postal": "69150", "code_commune_insee": "69275", "libell_d_acheminement": "DECINES CHARPIEU", "ligne_5": "LE MOLARD", "nom_de_la_commune": "DECINES CHARPIEU", "coordonnees_gps": [45.7718173914, 4.96151842912]}, "geometry": {"type": "Point", "coordinates": [4.96151842912, 45.7718173914]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0cd85fa0eab49694fd6db6bd4cabfbc31dd0a1d", "fields": {"nom_de_la_commune": "JONS", "libell_d_acheminement": "JONS", "code_postal": "69330", "coordonnees_gps": [45.7776752532, 5.03757503614], "code_commune_insee": "69280"}, "geometry": {"type": "Point", "coordinates": [5.03757503614, 45.7776752532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c88e3c650a5282bbb511ab074d7278f09226fb27", "fields": {"nom_de_la_commune": "MIONS", "libell_d_acheminement": "MIONS", "code_postal": "69780", "coordonnees_gps": [45.6517385833, 4.9906607201], "code_commune_insee": "69283"}, "geometry": {"type": "Point", "coordinates": [4.9906607201, 45.6517385833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "696d434e6148d45c6d995de36e55413fca5b47d3", "fields": {"nom_de_la_commune": "ST BONNET DE MURE", "libell_d_acheminement": "ST BONNET DE MURE", "code_postal": "69720", "coordonnees_gps": [45.6898441312, 5.04322574847], "code_commune_insee": "69287"}, "geometry": {"type": "Point", "coordinates": [5.04322574847, 45.6898441312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b071e8f4dc8fe7ccfd989ab4591baa916466f31", "fields": {"nom_de_la_commune": "SATHONAY CAMP", "libell_d_acheminement": "SATHONAY CAMP", "code_postal": "69580", "coordonnees_gps": [45.8366159534, 4.88315598235], "code_commune_insee": "69292"}, "geometry": {"type": "Point", "coordinates": [4.88315598235, 45.8366159534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8174291b1bed9f5997bade30b037184244267de", "fields": {"nom_de_la_commune": "SEREZIN DU RHONE", "libell_d_acheminement": "SEREZIN DU RHONE", "code_postal": "69360", "coordonnees_gps": [45.6220752838, 4.84615821285], "code_commune_insee": "69294"}, "geometry": {"type": "Point", "coordinates": [4.84615821285, 45.6220752838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de82d4ce95eac8897a1f402debeac31462f4b1f", "fields": {"nom_de_la_commune": "SOLAIZE", "libell_d_acheminement": "SOLAIZE", "code_postal": "69360", "coordonnees_gps": [45.6220752838, 4.84615821285], "code_commune_insee": "69296"}, "geometry": {"type": "Point", "coordinates": [4.84615821285, 45.6220752838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe005936e0382acf8f80429a0f46e4d8ffa4c69", "fields": {"nom_de_la_commune": "LYON 09", "libell_d_acheminement": "LYON", "code_postal": "69009", "coordonnees_gps": [45.7824566011, 4.80893117264], "code_commune_insee": "69389"}, "geometry": {"type": "Point", "coordinates": [4.80893117264, 45.7824566011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c4fa7493b81772d68c430c449da53c4858c1ba6", "fields": {"nom_de_la_commune": "AILLEVANS", "libell_d_acheminement": "AILLEVANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70005"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52028ec32796a825d921ea146d11680dc17db5b1", "fields": {"nom_de_la_commune": "ANCIER", "libell_d_acheminement": "ANCIER", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70018"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f655c4803ff4d8907897f01ee647882382c2c3", "fields": {"nom_de_la_commune": "ARSANS", "libell_d_acheminement": "ARSANS", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70030"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fda56446840d16a09b3b38694a28ea56f5e0174c", "fields": {"nom_de_la_commune": "AULX LES CROMARY", "libell_d_acheminement": "AULX LES CROMARY", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70036"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec7456d3b5b8cdc32816f97af9d9115dcb1f693d", "fields": {"nom_de_la_commune": "AUTET", "libell_d_acheminement": "AUTET", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70037"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4be38569b76c5c2dccf5d5ebf031fa5956215c70", "fields": {"nom_de_la_commune": "AVRIGNEY VIREY", "libell_d_acheminement": "AVRIGNEY VIREY", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70045"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4c5fa544db71601dc7f53d5272ec5dfbe1b008", "fields": {"code_postal": "70150", "code_commune_insee": "70045", "libell_d_acheminement": "AVRIGNEY VIREY", "ligne_5": "VIREY", "nom_de_la_commune": "AVRIGNEY VIREY", "coordonnees_gps": [47.3218065084, 5.78836351199]}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915292cab0f789fe0c44691be794aa9dc30400e4", "fields": {"nom_de_la_commune": "LA BARRE", "libell_d_acheminement": "LA BARRE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70050"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "624664041984eb2f9e59bfe4379b2ce7d057a743", "fields": {"nom_de_la_commune": "BASSIGNEY", "libell_d_acheminement": "BASSIGNEY", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70052"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ca6b0fd99b623e3a3c692ac9e55808e4f90b269", "fields": {"nom_de_la_commune": "BEAUMOTTE AUBERTANS", "libell_d_acheminement": "BEAUMOTTE AUBERTANS", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70059"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f71685772b2b2ce5397e6399314e725d2c162a2", "fields": {"nom_de_la_commune": "BELONCHAMP", "libell_d_acheminement": "BELONCHAMP", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70063"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4601a5060445593490a15de960d88fd3027e8a2b", "fields": {"nom_de_la_commune": "BOULIGNEY", "libell_d_acheminement": "BOULIGNEY", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70083"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b5691c14d1d3ebd943da268fd09c8c8fd7499e7", "fields": {"nom_de_la_commune": "BOURGUIGNON LES CONFLANS", "libell_d_acheminement": "BOURGUIGNON LES CONFLANS", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70087"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2985e2d8576b4ee31e7daff52b9f9d27839f6802", "fields": {"nom_de_la_commune": "BREUREY LES FAVERNEY", "libell_d_acheminement": "BREUREY LES FAVERNEY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70095"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e431afe6e4a36e38015b35ff12a09934333f74", "fields": {"code_postal": "70140", "code_commune_insee": "70101", "libell_d_acheminement": "BROYE AUBIGNEY MONTSEUGNY", "ligne_5": "MONTSEUGNY", "nom_de_la_commune": "BROYE AUBIGNEY MONTSEUGNY", "coordonnees_gps": [47.3157094968, 5.59575332821]}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "622806c7891eb47c4b7af340f6873107f2e9fa96", "fields": {"nom_de_la_commune": "BRUSSEY", "libell_d_acheminement": "BRUSSEY", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70102"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd794582ff815c6311c61d7f4fe45048a0892de", "fields": {"nom_de_la_commune": "BUCEY LES GY", "libell_d_acheminement": "BUCEY LES GY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70104"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283096aba297074d40d7ded5a3a147e47f7b81ba", "fields": {"nom_de_la_commune": "CHAMBORNAY LES BELLEVAUX", "libell_d_acheminement": "CHAMBORNAY LES BELLEVAUX", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70118"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f60e7af7a79f095527502d789a77266916fb86a3", "fields": {"code_postal": "70600", "code_commune_insee": "70122", "libell_d_acheminement": "CHAMPLITTE", "ligne_5": "MARGILLEY", "nom_de_la_commune": "CHAMPLITTE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56cb05fab7d6ccaca3f2a5a6ed6e6c4f2e4caef0", "fields": {"code_postal": "70600", "code_commune_insee": "70122", "libell_d_acheminement": "CHAMPLITTE", "ligne_5": "MONTARLOT LES CHAMPLITTE", "nom_de_la_commune": "CHAMPLITTE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd094aa2aa06ea30f3c911ccb4a8ffac99c28b8b", "fields": {"nom_de_la_commune": "LA CHAPELLE ST QUILLAIN", "libell_d_acheminement": "LA CHAPELLE ST QUILLAIN", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70129"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae447961dcff0a444fbbf1c5ab21d21a39867af", "fields": {"nom_de_la_commune": "CHARGEY LES PORT", "libell_d_acheminement": "CHARGEY LES PORT", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70133"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07f6d149f040ee1d2f48cede476ab3870aa41872", "fields": {"nom_de_la_commune": "CHATENOIS", "libell_d_acheminement": "CHATENOIS", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70141"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e3c112dbc655d0bc1845458217762f89cd75fba", "fields": {"nom_de_la_commune": "CHAUX LA LOTIERE", "libell_d_acheminement": "CHAUX LA LOTIERE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70145"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d49fdb2da88dee97b6cae98cd4274377513f28a", "fields": {"nom_de_la_commune": "CHAVANNE", "libell_d_acheminement": "CHAVANNE", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70147"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcab18c55e9bea357deb1da0e1c8e2eb33b47e86", "fields": {"nom_de_la_commune": "CORRAVILLERS", "libell_d_acheminement": "CORRAVILLERS", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70176"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b98400c0cb3d1e222e2e4c38647538758fe8e337", "fields": {"nom_de_la_commune": "LA COTE", "libell_d_acheminement": "LA COTE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70178"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22546543dfe8a816e91d0b6ec454a2be99cdef3e", "fields": {"nom_de_la_commune": "COURCUIRE", "libell_d_acheminement": "COURCUIRE", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70181"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b144b5f2f8b7d2cb5ce22ed69232d3f4dcb517ed", "fields": {"nom_de_la_commune": "COUTHENANS", "libell_d_acheminement": "COUTHENANS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70184"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b961a8dfa0a28f24f300fa7e475a935ba71915ff", "fields": {"nom_de_la_commune": "CUVE", "libell_d_acheminement": "CUVE", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70194"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b37a119a5906ab7807392bdae35b36053075fd29", "fields": {"nom_de_la_commune": "DAMBENOIT LES COLOMBE", "libell_d_acheminement": "DAMBENOIT LES COLOMBE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70195"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6c1e489cc55d8dcd322fc954cde38bbb09cfb10", "fields": {"code_postal": "70200", "code_commune_insee": "70195", "libell_d_acheminement": "DAMBENOIT LES COLOMBE", "ligne_5": "COLOMBE LES BITHAINE", "nom_de_la_commune": "DAMBENOIT LES COLOMBE", "coordonnees_gps": [47.6775063744, 6.50353320831]}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ed895f5e75c7e29f3c1be4289016782aa182e59", "fields": {"nom_de_la_commune": "DAMPVALLEY LES COLOMBE", "libell_d_acheminement": "DAMPVALLEY LES COLOMBE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70199"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f8152b7db3c669200fb87b0dc05d969d146c6bd", "fields": {"nom_de_la_commune": "DAMPVALLEY ST PANCRAS", "libell_d_acheminement": "DAMPVALLEY ST PANCRAS", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70200"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca61f3d90df1bf5f8c10048caa62e35a575724f5", "fields": {"nom_de_la_commune": "DELAIN", "libell_d_acheminement": "DELAIN", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70201"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd129581ce2e38e5a6f04264f71db23f9d77623c", "fields": {"nom_de_la_commune": "ECHAVANNE", "libell_d_acheminement": "ECHAVANNE", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70205"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9738d088fc70130487e6095cc16944f90c6092a3", "fields": {"nom_de_la_commune": "ESBOZ BREST", "libell_d_acheminement": "ESBOZ BREST", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70216"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e971e4d9b26cd4e127ddfaef79771daf9482beaf", "fields": {"nom_de_la_commune": "ESMOULINS", "libell_d_acheminement": "ESMOULINS", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70218"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "567c8bf06e8dd1e48e6e001086556d93b0a06670", "fields": {"nom_de_la_commune": "ETOBON", "libell_d_acheminement": "ETOBON", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70221"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9ded4607b0278a6c96beb284e019d36f5c31aa", "fields": {"nom_de_la_commune": "FALLON", "libell_d_acheminement": "FALLON", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70226"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bbb9b73cf24c1b4db6fc403b7c8e48369c7d648", "fields": {"nom_de_la_commune": "FERRIERES LES SCEY", "libell_d_acheminement": "FERRIERES LES SCEY", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70232"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99b212aa3b614fbb5919a7d514966b0802b83dd", "fields": {"nom_de_la_commune": "FILAIN", "libell_d_acheminement": "FILAIN", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70234"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1198dd91880f1c840ff964bed85a5db2545fe3e7", "fields": {"nom_de_la_commune": "FLEUREY LES FAVERNEY", "libell_d_acheminement": "FLEUREY LES FAVERNEY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70236"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee2975baf5131e7f0118a5d58fd06de547c0880", "fields": {"nom_de_la_commune": "FONDREMAND", "libell_d_acheminement": "FONDREMAND", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70239"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf245365b5ef25c0db7068b32debdec90b99280", "fields": {"nom_de_la_commune": "FONTAINE LES LUXEUIL", "libell_d_acheminement": "FONTAINE LES LUXEUIL", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70240"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af90287cb9ded89aa825708eb1c454778bf3463c", "fields": {"nom_de_la_commune": "FOUVENT ST ANDOCHE", "libell_d_acheminement": "FOUVENT ST ANDOCHE", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70247"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed251a6baa92b7cd3558946d6a9738b45064b43", "fields": {"nom_de_la_commune": "FRAHIER ET CHATEBIER", "libell_d_acheminement": "FRAHIER ET CHATEBIER", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70248"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96782e206b7b6b986b2e367355e2b8eb7f3713cd", "fields": {"nom_de_la_commune": "FRANCHEVELLE", "libell_d_acheminement": "FRANCHEVELLE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70250"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3185dc567899b02438e18581c4edff195bfc66", "fields": {"nom_de_la_commune": "ST SAUVEUR DES LANDES", "libell_d_acheminement": "ST SAUVEUR DES LANDES", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35310"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e2cc7a980f5e313209d189995a4af0122cd774a", "fields": {"nom_de_la_commune": "ST SULPICE LA FORET", "libell_d_acheminement": "ST SULPICE LA FORET", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35315"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "391f91ccd3586b277052e52b60636e1559f75288", "fields": {"nom_de_la_commune": "ST THURIAL", "libell_d_acheminement": "ST THURIAL", "code_postal": "35310", "coordonnees_gps": [48.0615640681, -1.86453604363], "code_commune_insee": "35319"}, "geometry": {"type": "Point", "coordinates": [-1.86453604363, 48.0615640681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c544a944e43790daf47699d45ce2e784e89a636b", "fields": {"nom_de_la_commune": "LE SEL DE BRETAGNE", "libell_d_acheminement": "LE SEL DE BRETAGNE", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35322"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e781cb3ab8de3a57c876b4018b7f36e868f8159", "fields": {"nom_de_la_commune": "SIXT SUR AFF", "libell_d_acheminement": "SIXT SUR AFF", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35328"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "518ff226b1d6409e23dfcf4f49eb94ab3ef7d22b", "fields": {"nom_de_la_commune": "LE THEIL DE BRETAGNE", "libell_d_acheminement": "LE THEIL DE BRETAGNE", "code_postal": "35240", "coordonnees_gps": [47.9216015444, -1.36801801684], "code_commune_insee": "35333"}, "geometry": {"type": "Point", "coordinates": [-1.36801801684, 47.9216015444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c367e0d792fa8b00d19248a43a9004dcac8e241", "fields": {"nom_de_la_commune": "THORIGNE FOUILLARD", "libell_d_acheminement": "THORIGNE FOUILLARD", "code_postal": "35235", "coordonnees_gps": [48.1563529935, -1.58358444348], "code_commune_insee": "35334"}, "geometry": {"type": "Point", "coordinates": [-1.58358444348, 48.1563529935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd2c6dc0ed202789a324e527c62ac9c4c6bb417f", "fields": {"nom_de_la_commune": "THOURIE", "libell_d_acheminement": "THOURIE", "code_postal": "35134", "coordonnees_gps": [47.8649465156, -1.44024199912], "code_commune_insee": "35335"}, "geometry": {"type": "Point", "coordinates": [-1.44024199912, 47.8649465156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fa1b19a4de66b0f3ee8338d665f0e0c77486134", "fields": {"nom_de_la_commune": "TRESSE", "libell_d_acheminement": "TRESSE", "code_postal": "35720", "coordonnees_gps": [48.4351031296, -1.88770006407], "code_commune_insee": "35344"}, "geometry": {"type": "Point", "coordinates": [-1.88770006407, 48.4351031296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186db898212c68ab53145e93d06373609fbf9e65", "fields": {"nom_de_la_commune": "TREVERIEN", "libell_d_acheminement": "TREVERIEN", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35345"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d069f5f2aa7f05e9059b82436b36ae195dba8c7", "fields": {"nom_de_la_commune": "VAL D IZE", "libell_d_acheminement": "VAL D IZE", "code_postal": "35450", "coordonnees_gps": [48.2058112494, -1.3219232409], "code_commune_insee": "35347"}, "geometry": {"type": "Point", "coordinates": [-1.3219232409, 48.2058112494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffa5585d9cdc1e00776b3d52e13441edd70b8abe", "fields": {"nom_de_la_commune": "VIEUX VIEL", "libell_d_acheminement": "VIEUX VIEL", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35354"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cfe250da4157da0d3adcb8769f33c7dff93183c", "fields": {"nom_de_la_commune": "VILLAMEE", "libell_d_acheminement": "VILLAMEE", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35357"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a97eba9be6d455e14feee366fe7206351e4c52", "fields": {"nom_de_la_commune": "VITRE", "libell_d_acheminement": "VITRE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35360"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70978cb5eca600e49a268b7b0acd2cf50855a2e1", "fields": {"nom_de_la_commune": "AMBRAULT", "libell_d_acheminement": "AMBRAULT", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36003"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699b5e5d8630b3a609e636c645354708198fe7e9", "fields": {"nom_de_la_commune": "BAGNEUX", "libell_d_acheminement": "BAGNEUX", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36011"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45421e8735048adb35bf852c51716f1b87011054", "fields": {"nom_de_la_commune": "BAZAIGES", "libell_d_acheminement": "BAZAIGES", "code_postal": "36270", "coordonnees_gps": [46.4580307735, 1.55896815313], "code_commune_insee": "36014"}, "geometry": {"type": "Point", "coordinates": [1.55896815313, 46.4580307735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e811b5a562d74e9fc53e95b67118bc2eb2c40a0", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "36310", "coordonnees_gps": [46.4191119953, 1.27433988132], "code_commune_insee": "36015"}, "geometry": {"type": "Point", "coordinates": [1.27433988132, 46.4191119953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b409ade9e852d364c3e76d8deb931b7fcb31ab3d", "fields": {"nom_de_la_commune": "LA BERTHENOUX", "libell_d_acheminement": "LA BERTHENOUX", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36017"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb74fea6cce81b994fcedc4f8f9703fc2d2b5aa", "fields": {"nom_de_la_commune": "CHALAIS", "libell_d_acheminement": "CHALAIS", "code_postal": "36370", "coordonnees_gps": [46.5287208025, 1.19590340151], "code_commune_insee": "36036"}, "geometry": {"type": "Point", "coordinates": [1.19590340151, 46.5287208025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0a26b89630b229f16c19cdf2f88456ac8d9a1c2", "fields": {"nom_de_la_commune": "COINGS", "libell_d_acheminement": "COINGS", "code_postal": "36130", "coordonnees_gps": [46.8562455965, 1.75263865537], "code_commune_insee": "36057"}, "geometry": {"type": "Point", "coordinates": [1.75263865537, 46.8562455965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c3717e033e83ccb45ce69317fa1ae171a41b46", "fields": {"nom_de_la_commune": "CONCREMIERS", "libell_d_acheminement": "CONCREMIERS", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36058"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "045c6280aec804868494969e33920b9ab5e08cdc", "fields": {"nom_de_la_commune": "DOUADIC", "libell_d_acheminement": "DOUADIC", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36066"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a5dbcba9eea9f50acd168edd3181b8fec484bf", "fields": {"code_postal": "36270", "code_commune_insee": "36070", "libell_d_acheminement": "EGUZON CHANTOME", "ligne_5": "CHANTOME", "nom_de_la_commune": "EGUZON CHANTOME", "coordonnees_gps": [46.4580307735, 1.55896815313]}, "geometry": {"type": "Point", "coordinates": [1.55896815313, 46.4580307735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34b431c0b07a8ba268e905590ccbbb88ad932a9a", "fields": {"nom_de_la_commune": "ETRECHET", "libell_d_acheminement": "ETRECHET", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36071"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ded3325f89c5fdd7fd8bdbff27f29e5ceecd09a6", "fields": {"nom_de_la_commune": "FONTENAY", "libell_d_acheminement": "FONTENAY", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36075"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2902593eb235d198604965985614531cf9947e", "fields": {"nom_de_la_commune": "GOURNAY", "libell_d_acheminement": "GOURNAY", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36084"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6c1d61691a33d52a7e7a29f473f65e8376bf5e4", "fields": {"nom_de_la_commune": "GUILLY", "libell_d_acheminement": "GUILLY", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36085"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcd5f7d4913ba719ff98456df7fb1f72dbcccefb", "fields": {"nom_de_la_commune": "LINIEZ", "libell_d_acheminement": "LINIEZ", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36097"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5707179fe4c3a3e4f736b9e1d5be8796a66502e2", "fields": {"nom_de_la_commune": "LIZERAY", "libell_d_acheminement": "LIZERAY", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36098"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3496daf47fd6c6ba069dde6aa7d518b1b37a169b", "fields": {"nom_de_la_commune": "LOURDOUEIX ST MICHEL", "libell_d_acheminement": "LOURDOUEIX ST MICHEL", "code_postal": "36140", "coordonnees_gps": [46.4665714493, 1.83368688617], "code_commune_insee": "36099"}, "geometry": {"type": "Point", "coordinates": [1.83368688617, 46.4665714493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "800e408d257e1ca4108d542e032d583cb3583d9d", "fields": {"nom_de_la_commune": "MALICORNAY", "libell_d_acheminement": "MALICORNAY", "code_postal": "36340", "coordonnees_gps": [46.5585963926, 1.71639190639], "code_commune_insee": "36111"}, "geometry": {"type": "Point", "coordinates": [1.71639190639, 46.5585963926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e6f170ad1e0031d10503ced0073f7ece3a8caa", "fields": {"nom_de_la_commune": "MEOBECQ", "libell_d_acheminement": "MEOBECQ", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36118"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038ca59467f62a1d65aa5025fdde9a1c66d51291", "fields": {"nom_de_la_commune": "NEUILLAY LES BOIS", "libell_d_acheminement": "NEUILLAY LES BOIS", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36139"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117bf2921c35dda1ba527f1f1febcf7d0033e7b3", "fields": {"nom_de_la_commune": "NEUVY PAILLOUX", "libell_d_acheminement": "NEUVY PAILLOUX", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36140"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c0c33a42207a88c28d6d272b22653f855a64c7", "fields": {"nom_de_la_commune": "NURET LE FERRON", "libell_d_acheminement": "NURET LE FERRON", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36144"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77d6fef62e4416581f04d2bc5f5be1ed03b2ac5e", "fields": {"nom_de_la_commune": "PARNAC", "libell_d_acheminement": "PARNAC", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36150"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77d4ef5993bf8fd3ce5e61e1c7adb707111d8e9e", "fields": {"nom_de_la_commune": "PAUDY", "libell_d_acheminement": "PAUDY", "code_postal": "36260", "coordonnees_gps": [47.0476254931, 1.98508496225], "code_commune_insee": "36152"}, "geometry": {"type": "Point", "coordinates": [1.98508496225, 47.0476254931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef586e4315698854d8bb71893368ec91f7606f69", "fields": {"nom_de_la_commune": "PERASSAY", "libell_d_acheminement": "PERASSAY", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36156"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620729adffab02ed0e27caba663cf465113bd0fe", "fields": {"nom_de_la_commune": "ROUVRES LES BOIS", "libell_d_acheminement": "ROUVRES LES BOIS", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36175"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2934683d697885160c945feb9a3a6962556bcec1", "fields": {"nom_de_la_commune": "ST AIGNY", "libell_d_acheminement": "ST AIGNY", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36178"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42757494a84376184dd3286cb2e51c5da86b95bb", "fields": {"nom_de_la_commune": "ST AOUSTRILLE", "libell_d_acheminement": "ST AOUSTRILLE", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36179"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe78b4495f0109336afd31e5d8d45700711bc3a", "fields": {"nom_de_la_commune": "ST HILAIRE SUR BENAIZE", "libell_d_acheminement": "ST HILAIRE SUR BENAIZE", "code_postal": "36370", "coordonnees_gps": [46.5287208025, 1.19590340151], "code_commune_insee": "36197"}, "geometry": {"type": "Point", "coordinates": [1.19590340151, 46.5287208025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a21156ef64a3d4dba3409b831506876bad420ad", "fields": {"nom_de_la_commune": "ST MAUR", "libell_d_acheminement": "ST MAUR", "code_postal": "36250", "coordonnees_gps": [46.7938326835, 1.59829810404], "code_commune_insee": "36202"}, "geometry": {"type": "Point", "coordinates": [1.59829810404, 46.7938326835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0343d1400b87b7421c2f58aaa1884add0083a12f", "fields": {"code_postal": "36250", "code_commune_insee": "36202", "libell_d_acheminement": "ST MAUR", "ligne_5": "VILLERS LES ORMES", "nom_de_la_commune": "ST MAUR", "coordonnees_gps": [46.7938326835, 1.59829810404]}, "geometry": {"type": "Point", "coordinates": [1.59829810404, 46.7938326835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4790b6a63df1e8696b2853b6b8e19e5a593561b", "fields": {"nom_de_la_commune": "SAZERAY", "libell_d_acheminement": "SAZERAY", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36214"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef81d0630979dd3e7beaf335f7acec3ed1e5ed1a", "fields": {"nom_de_la_commune": "SELLES SUR NAHON", "libell_d_acheminement": "SELLES SUR NAHON", "code_postal": "36180", "coordonnees_gps": [47.01148929, 1.41025324339], "code_commune_insee": "36216"}, "geometry": {"type": "Point", "coordinates": [1.41025324339, 47.01148929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bf3b14a3e38601083adfdd5dbea616b13566c09", "fields": {"nom_de_la_commune": "TRANZAULT", "libell_d_acheminement": "TRANZAULT", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36226"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c781420612a24708f94ba15552f02d28b0da7f26", "fields": {"code_postal": "36210", "code_commune_insee": "36229", "libell_d_acheminement": "VAL FOUZON", "ligne_5": "PARPECAY", "nom_de_la_commune": "VAL FOUZON", "coordonnees_gps": [47.1964381478, 1.69756497046]}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f07479e0001faeb447d6920ad6b759130d7a941", "fields": {"nom_de_la_commune": "VATAN", "libell_d_acheminement": "VATAN", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36230"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffab49c095ac360b07e813215dcf63e5e07c5df3", "fields": {"nom_de_la_commune": "VICQ EXEMPLET", "libell_d_acheminement": "VICQ EXEMPLET", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36236"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c285c453a14fee4b7a34b334ef74e337c7e0dda3", "fields": {"nom_de_la_commune": "VIJON", "libell_d_acheminement": "VIJON", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36240"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44167654b7a7badf8fc9f733d082ae4cfa7df01a", "fields": {"nom_de_la_commune": "ARTANNES SUR INDRE", "libell_d_acheminement": "ARTANNES SUR INDRE", "code_postal": "37260", "coordonnees_gps": [47.2480422288, 0.614098703872], "code_commune_insee": "37006"}, "geometry": {"type": "Point", "coordinates": [0.614098703872, 47.2480422288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8328d9e56ae32acc72eb4aaca80313317286a86", "fields": {"nom_de_la_commune": "ATHEE SUR CHER", "libell_d_acheminement": "ATHEE SUR CHER", "code_postal": "37270", "coordonnees_gps": [47.3461148739, 0.860028356093], "code_commune_insee": "37008"}, "geometry": {"type": "Point", "coordinates": [0.860028356093, 47.3461148739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe31880b460203de0b09fe7201a5022f5458940", "fields": {"nom_de_la_commune": "AVOINE", "libell_d_acheminement": "AVOINE", "code_postal": "37420", "coordonnees_gps": [47.2193932083, 0.209651167751], "code_commune_insee": "37011"}, "geometry": {"type": "Point", "coordinates": [0.209651167751, 47.2193932083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b46df44c2b8e90f48acd91ee96b895521ebad97", "fields": {"nom_de_la_commune": "AZAY SUR INDRE", "libell_d_acheminement": "AZAY SUR INDRE", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37016"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2889b225b589a991acaf718f60de9d175707d400", "fields": {"nom_de_la_commune": "BERTHENAY", "libell_d_acheminement": "BERTHENAY", "code_postal": "37510", "coordonnees_gps": [47.3427710301, 0.558059242204], "code_commune_insee": "37025"}, "geometry": {"type": "Point", "coordinates": [0.558059242204, 47.3427710301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1af96fafb0855f72d0f9b04642ad7affb0fbe7a", "fields": {"nom_de_la_commune": "BOSSEE", "libell_d_acheminement": "BOSSEE", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37029"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc79db82cbd75d86ef44403ef5f2773d3b945369", "fields": {"nom_de_la_commune": "BREHEMONT", "libell_d_acheminement": "BREHEMONT", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37038"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9b943eff2968008d13330fd61d44a82d91804cc", "fields": {"nom_de_la_commune": "CHAMBRAY LES TOURS", "libell_d_acheminement": "CHAMBRAY LES TOURS", "code_postal": "37170", "coordonnees_gps": [47.3315126303, 0.715864698032], "code_commune_insee": "37050"}, "geometry": {"type": "Point", "coordinates": [0.715864698032, 47.3315126303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3118b7b0045fdf9f1fa4f49802c88bbafac3b350", "fields": {"nom_de_la_commune": "CHAMPIGNY SUR VEUDE", "libell_d_acheminement": "CHAMPIGNY SUR VEUDE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37051"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b4d7e40758347b12f13f95d68cf0fdec9f04854", "fields": {"nom_de_la_commune": "CHANCAY", "libell_d_acheminement": "CHANCAY", "code_postal": "37210", "coordonnees_gps": [47.4342671644, 0.82289231323], "code_commune_insee": "37052"}, "geometry": {"type": "Point", "coordinates": [0.82289231323, 47.4342671644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8e41a3aebd7e4d4321a40113d787fd354e76661", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR LOIRE", "libell_d_acheminement": "LA CHAPELLE SUR LOIRE", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37058"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfefaedb7c08a77e05434d4e03af707a0dcca31d", "fields": {"nom_de_la_commune": "CHAUMUSSAY", "libell_d_acheminement": "CHAUMUSSAY", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37064"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58521f826813b4c2aea94eb7b3c85a061e73f209", "fields": {"nom_de_la_commune": "CHEILLE", "libell_d_acheminement": "CHEILLE", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37067"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d47263e3f762fae0f975e086056d969ce37d2365", "fields": {"nom_de_la_commune": "CHEMILLE SUR INDROIS", "libell_d_acheminement": "CHEMILLE SUR INDROIS", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37069"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "816d8a73d86dd90f77f3b64989d903a3455e1c6f", "fields": {"nom_de_la_commune": "CINQ MARS LA PILE", "libell_d_acheminement": "CINQ MARS LA PILE", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37077"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73686f9892616f89b953692b8a467ed952da26a9", "fields": {"nom_de_la_commune": "COURCOUE", "libell_d_acheminement": "COURCOUE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37087"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1422bfa650788337b3dc6427908c2093bfcd22d", "fields": {"nom_de_la_commune": "COUZIERS", "libell_d_acheminement": "COUZIERS", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37088"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48257b1bfd5590746e193994e94f63828dec5207", "fields": {"nom_de_la_commune": "CROUZILLES", "libell_d_acheminement": "CROUZILLES", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37093"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177be99becd97acb4628b1bcea9eb28de850dd87", "fields": {"nom_de_la_commune": "DIERRE", "libell_d_acheminement": "DIERRE", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37096"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4298e0e72c2ec6f51fce58db55301202dd99674a", "fields": {"nom_de_la_commune": "DOLUS LE SEC", "libell_d_acheminement": "DOLUS LE SEC", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37097"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c0da1657d4e14b94f78fbd7a99b3a3208bbfa67", "fields": {"nom_de_la_commune": "LES ESSARDS", "libell_d_acheminement": "LES ESSARDS", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37102"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "960177717795ced6a5919d85487000c4b5d5959f", "fields": {"nom_de_la_commune": "ESVRES", "libell_d_acheminement": "ESVRES", "code_postal": "37320", "coordonnees_gps": [47.2468353824, 0.78075583867], "code_commune_insee": "37104"}, "geometry": {"type": "Point", "coordinates": [0.78075583867, 47.2468353824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "740b6da0f079d53ee34d0f8cc830b62e1baaf9c5", "fields": {"nom_de_la_commune": "FERRIERE LARCON", "libell_d_acheminement": "FERRIERE LARCON", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37107"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da07b7f7abe4509401fa7c2260e2c82ea510368c", "fields": {"nom_de_la_commune": "FERRIERE SUR BEAULIEU", "libell_d_acheminement": "FERRIERE SUR BEAULIEU", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37108"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c9b6ae75cd1121ae6a5ec472e823ed360152bc", "fields": {"nom_de_la_commune": "GIZEUX", "libell_d_acheminement": "GIZEUX", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37112"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dced61d7914adbc28ab14101818fe722c9999a3", "fields": {"nom_de_la_commune": "LES HERMITES", "libell_d_acheminement": "LES HERMITES", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37116"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52c235fdf78dd04610e3ef4f5c9b3fc10ced30d9", "fields": {"nom_de_la_commune": "LOCHES", "libell_d_acheminement": "LOCHES", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37132"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b01298bab680c66f0096a696ac7ae1c67038f9", "fields": {"nom_de_la_commune": "LUBLE", "libell_d_acheminement": "LUBLE", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37137"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c791ef9cd0172980a85130e642acc6fb18d1466d", "fields": {"nom_de_la_commune": "LUYNES", "libell_d_acheminement": "LUYNES", "code_postal": "37230", "coordonnees_gps": [47.4147332779, 0.547534714708], "code_commune_insee": "37139"}, "geometry": {"type": "Point", "coordinates": [0.547534714708, 47.4147332779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d5ff9a313c828fa1d54167b00737b54f8419441", "fields": {"nom_de_la_commune": "MARCILLY SUR VIENNE", "libell_d_acheminement": "MARCILLY SUR VIENNE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37147"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a7b61351fafa5caa4f7f213aa05adbf3d0e31a3", "fields": {"nom_de_la_commune": "MARIGNY MARMANDE", "libell_d_acheminement": "MARIGNY MARMANDE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37148"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b27cd2f9ea4d74c7abf04adb4e9b9c489017222", "fields": {"nom_de_la_commune": "MAZIERES DE TOURAINE", "libell_d_acheminement": "MAZIERES DE TOURAINE", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37150"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eae8202a02cc3b7a2eb300e04ba88e0db4a99d4", "fields": {"nom_de_la_commune": "MONTBAZON", "libell_d_acheminement": "MONTBAZON", "code_postal": "37250", "coordonnees_gps": [47.2559000067, 0.703996574131], "code_commune_insee": "37154"}, "geometry": {"type": "Point", "coordinates": [0.703996574131, 47.2559000067]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fcf5937e471b3414ca5da78cdeb11c611940245", "fields": {"nom_de_la_commune": "MOSNES", "libell_d_acheminement": "MOSNES", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37161"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f4ab7d6d5d9de0f80580f6e38eb4bd4627d213", "fields": {"nom_de_la_commune": "NAZELLES NEGRON", "libell_d_acheminement": "NAZELLES NEGRON", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37163"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fa4cb0682b608b1682e5fcb4eede4e5df488b0b", "fields": {"nom_de_la_commune": "NEUIL", "libell_d_acheminement": "NEUIL", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37165"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ebc3bd4d02460353a51a2d7343946676fd12dd", "fields": {"nom_de_la_commune": "STE MARTHE", "libell_d_acheminement": "STE MARTHE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27568"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70741a7a7531bb36a85bb6006357042a6fd9041c", "fields": {"nom_de_la_commune": "STE OPPORTUNE LA MARE", "libell_d_acheminement": "STE OPPORTUNE LA MARE", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27577"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92dc4aa55bbbe8cc38f614a8121bcd58714dc8dd", "fields": {"code_postal": "27160", "code_commune_insee": "27578", "libell_d_acheminement": "STE MARIE D ATTEZ", "ligne_5": "ST OUEN D ATTEZ", "nom_de_la_commune": "STE MARIE D ATTEZ", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c968e4798f0731ba67cef606143a1b154c000be", "fields": {"nom_de_la_commune": "ST PHILBERT SUR BOISSEY", "libell_d_acheminement": "ST PHILBERT SUR BOISSEY", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27586"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ed7e21f11dbdad1c07948678a14ebad5f86a80", "fields": {"nom_de_la_commune": "ST PIERRE D AUTILS", "libell_d_acheminement": "ST PIERRE D AUTILS", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27588"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfffdfa83eaa9fedae37352c487294668d7e39d", "fields": {"nom_de_la_commune": "ST PIERRE DE BAILLEUL", "libell_d_acheminement": "ST PIERRE DE BAILLEUL", "code_postal": "27920", "coordonnees_gps": [49.1220332709, 1.39197763752], "code_commune_insee": "27589"}, "geometry": {"type": "Point", "coordinates": [1.39197763752, 49.1220332709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea90584c052c12b1f2ba9940f68a2250e0c1089c", "fields": {"nom_de_la_commune": "ST PIERRE DE CERNIERES", "libell_d_acheminement": "ST PIERRE DE CERNIERES", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27590"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b4e4919c512e5d22a51480b75c375330f75285", "fields": {"nom_de_la_commune": "ST PIERRE DES IFS", "libell_d_acheminement": "ST PIERRE DES IFS", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27594"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2038f71405eb97759e65cc04f950cf5907aa673", "fields": {"nom_de_la_commune": "ST QUENTIN DES ISLES", "libell_d_acheminement": "ST QUENTIN DES ISLES", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27600"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4ea2dce93a2ae83cc2eb5606f6a55ccbd545ff", "fields": {"nom_de_la_commune": "ST VINCENT DES BOIS", "libell_d_acheminement": "ST VINCENT DES BOIS", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27612"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0006183aeb5d50267a55395544415f7cb44567d2", "fields": {"nom_de_la_commune": "ST VINCENT DU BOULAY", "libell_d_acheminement": "ST VINCENT DU BOULAY", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27613"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f3a5b655dbb503c8012e5f6c86286196a08cc05", "fields": {"nom_de_la_commune": "SEBECOURT", "libell_d_acheminement": "SEBECOURT", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27618"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3161ba5d6da42a7116b5680221b08771c3f9a804", "fields": {"nom_de_la_commune": "BUISSY", "libell_d_acheminement": "BUISSY", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62184"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2fb5004f976e86ce888e1a08586a9162a712303", "fields": {"nom_de_la_commune": "BULLECOURT", "libell_d_acheminement": "BULLECOURT", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62185"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74aa04b1b971afe3ca56a0bb63fc90aecc0f1821", "fields": {"nom_de_la_commune": "BUNEVILLE", "libell_d_acheminement": "BUNEVILLE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62187"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f98d882534ad2de171485898e5800ee4c5d6b02", "fields": {"nom_de_la_commune": "CAMBLIGNEUL", "libell_d_acheminement": "CAMBLIGNEUL", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62198"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6281a56a03074df44b44a4d9c5c698a13fc566cd", "fields": {"nom_de_la_commune": "CAMPAGNE LES GUINES", "libell_d_acheminement": "CAMPAGNE LES GUINES", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62203"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c951fdf321d33b4e7cc817a7abad45768d4f8e0f", "fields": {"nom_de_la_commune": "CAMPIGNEULLES LES GRANDES", "libell_d_acheminement": "CAMPIGNEULLES LES GRANDES", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62206"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18caa31cef05dbc0d15db380d3c9dcef13bdd2ce", "fields": {"nom_de_la_commune": "CANTELEUX", "libell_d_acheminement": "CANTELEUX", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62210"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "962a3d31a61aaa3d9eb0cc31281c95d8ff27cc2d", "fields": {"nom_de_la_commune": "CARENCY", "libell_d_acheminement": "CARENCY", "code_postal": "62144", "coordonnees_gps": [50.3578850683, 2.67826739933], "code_commune_insee": "62213"}, "geometry": {"type": "Point", "coordinates": [2.67826739933, 50.3578850683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fbdc14cc55b9f150c9dac9dc751f05ef9f90952", "fields": {"nom_de_la_commune": "CARVIN", "libell_d_acheminement": "CARVIN", "code_postal": "62220", "coordonnees_gps": [50.4895582272, 2.94871056601], "code_commune_insee": "62215"}, "geometry": {"type": "Point", "coordinates": [2.94871056601, 50.4895582272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9973515caef0f7edc9f32de69093353d75b01ee6", "fields": {"nom_de_la_commune": "CAUCHY A LA TOUR", "libell_d_acheminement": "CAUCHY A LA TOUR", "code_postal": "62260", "coordonnees_gps": [50.5172886108, 2.43294785801], "code_commune_insee": "62217"}, "geometry": {"type": "Point", "coordinates": [2.43294785801, 50.5172886108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce95a5fd6ee1b70030905b2788611624646c56c", "fields": {"nom_de_la_commune": "CLAIRMARAIS", "libell_d_acheminement": "CLAIRMARAIS", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62225"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fefbcdc7e9e24d97f80eaccdcd226fdbdd5118f", "fields": {"nom_de_la_commune": "COLLINE BEAUMONT", "libell_d_acheminement": "COLLINE BEAUMONT", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62231"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3f0fa0f1aa27ec7369ee25474bde82c757c4be", "fields": {"nom_de_la_commune": "LA COMTE", "libell_d_acheminement": "LA COMTE", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62232"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f672f14b15edad3237bb84888032c11da7d9a7f0", "fields": {"nom_de_la_commune": "CONCHY SUR CANCHE", "libell_d_acheminement": "CONCHY SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62234"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36084d0a5e05cd5677267c910e9ac25b47061e7d", "fields": {"nom_de_la_commune": "CONTEVILLE LES BOULOGNE", "libell_d_acheminement": "CONTEVILLE LES BOULOGNE", "code_postal": "62126", "coordonnees_gps": [50.7597525083, 1.66237719631], "code_commune_insee": "62237"}, "geometry": {"type": "Point", "coordinates": [1.66237719631, 50.7597525083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de41bf67fc35ff00bc37203abb4585638fe6b4f", "fields": {"nom_de_la_commune": "COULOGNE", "libell_d_acheminement": "COULOGNE", "code_postal": "62137", "coordonnees_gps": [50.916892866, 1.88690595419], "code_commune_insee": "62244"}, "geometry": {"type": "Point", "coordinates": [1.88690595419, 50.916892866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a66d04a1b2a9378783292d8048cc8e56e9850b77", "fields": {"nom_de_la_commune": "COUPELLE VIEILLE", "libell_d_acheminement": "COUPELLE VIEILLE", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62247"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd55ab5148a70c2120cdcb3d614db032091ab7eb", "fields": {"nom_de_la_commune": "COURCELLES LES LENS", "libell_d_acheminement": "COURCELLES LES LENS", "code_postal": "62970", "coordonnees_gps": [50.4149409295, 3.01587971483], "code_commune_insee": "62249"}, "geometry": {"type": "Point", "coordinates": [3.01587971483, 50.4149409295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e139c51636a7adda1fd1584a6cecf7cba3c322b2", "fields": {"nom_de_la_commune": "COYECQUES", "libell_d_acheminement": "COYECQUES", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62254"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d8f516c522659ed897cf38250dc3a55407e068", "fields": {"nom_de_la_commune": "DELETTES", "libell_d_acheminement": "DELETTES", "code_postal": "62129", "coordonnees_gps": [50.6463145648, 2.25326814344], "code_commune_insee": "62265"}, "geometry": {"type": "Point", "coordinates": [2.25326814344, 50.6463145648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d859e7109076633c733186a7293e47a07dcb33d7", "fields": {"nom_de_la_commune": "DENNEBROEUCQ", "libell_d_acheminement": "DENNEBROEUCQ", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62267"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a059fc6cf4ef4578bfca17b39d790359795db53", "fields": {"nom_de_la_commune": "DOUCHY LES AYETTE", "libell_d_acheminement": "DOUCHY LES AYETTE", "code_postal": "62116", "coordonnees_gps": [50.1489493894, 2.70436913467], "code_commune_insee": "62272"}, "geometry": {"type": "Point", "coordinates": [2.70436913467, 50.1489493894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e7da0b7f34584749d8f652767e20e37ac23e76c", "fields": {"nom_de_la_commune": "DROCOURT", "libell_d_acheminement": "DROCOURT", "code_postal": "62320", "coordonnees_gps": [50.389396968, 2.90853721163], "code_commune_insee": "62277"}, "geometry": {"type": "Point", "coordinates": [2.90853721163, 50.389396968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b43bb64f4c802c506a57eb283b1d93798b29fb8d", "fields": {"nom_de_la_commune": "DROUVIN LE MARAIS", "libell_d_acheminement": "DROUVIN LE MARAIS", "code_postal": "62131", "coordonnees_gps": [50.4979995318, 2.63240823084], "code_commune_insee": "62278"}, "geometry": {"type": "Point", "coordinates": [2.63240823084, 50.4979995318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc5795173e5a2809357892320b48c51d5391af29", "fields": {"nom_de_la_commune": "DUISANS", "libell_d_acheminement": "DUISANS", "code_postal": "62161", "coordonnees_gps": [50.3152704012, 2.69028460141], "code_commune_insee": "62279"}, "geometry": {"type": "Point", "coordinates": [2.69028460141, 50.3152704012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fcddd22d29942eb9fba84ccb02f297f56c4d76f", "fields": {"nom_de_la_commune": "DURY", "libell_d_acheminement": "DURY", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62280"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d6349775d347f06db1aa8f3add06fa52cda5ab", "fields": {"nom_de_la_commune": "ECOURT ST QUENTIN", "libell_d_acheminement": "ECOURT ST QUENTIN", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62284"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4d4db0290b742711633ed08a19b44f1aba8c840", "fields": {"nom_de_la_commune": "ELNES", "libell_d_acheminement": "ELNES", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62292"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da4949039317d74349ddb4fea81c0c26b3bf2cda", "fields": {"nom_de_la_commune": "ENQUIN SUR BAILLONS", "libell_d_acheminement": "ENQUIN SUR BAILLONS", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62296"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3294a2d7b74e51253daa67547f32b585cdaae18f", "fields": {"nom_de_la_commune": "ESQUERDES", "libell_d_acheminement": "ESQUERDES", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62309"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52cf47e4dbf71e60d2ac935a5af9242a28f0e355", "fields": {"nom_de_la_commune": "ESTREE WAMIN", "libell_d_acheminement": "ESTREE WAMIN", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62316"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42922b0ec7a2daa2ea437fe00e33e87383c14192", "fields": {"nom_de_la_commune": "FARBUS", "libell_d_acheminement": "FARBUS", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62324"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1329b08c6161e25487a62041d733610bc0b8471d", "fields": {"nom_de_la_commune": "FIENNES", "libell_d_acheminement": "FIENNES", "code_postal": "62132", "coordonnees_gps": [50.8069626714, 1.83185894738], "code_commune_insee": "62334"}, "geometry": {"type": "Point", "coordinates": [1.83185894738, 50.8069626714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dda925ff2ec18bdeaae321430f163f4eb801572f", "fields": {"nom_de_la_commune": "FILLIEVRES", "libell_d_acheminement": "FILLIEVRES", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62335"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b5a4e8dae0a4f0c5b02185e69b855b234252a5a", "fields": {"nom_de_la_commune": "FLECHIN", "libell_d_acheminement": "FLECHIN", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62336"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a01273cb71392fa3ed1935332da7542745180f8b", "fields": {"nom_de_la_commune": "FLEURBAIX", "libell_d_acheminement": "FLEURBAIX", "code_postal": "62840", "coordonnees_gps": [50.6197278432, 2.7991107386], "code_commune_insee": "62338"}, "geometry": {"type": "Point", "coordinates": [2.7991107386, 50.6197278432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74deecdc19c65c2cec0cb97bef16ed6680829039", "fields": {"nom_de_la_commune": "FLORINGHEM", "libell_d_acheminement": "FLORINGHEM", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62340"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c8ea5ef8a524395824189054ecc76e32c15c30", "fields": {"nom_de_la_commune": "FONCQUEVILLERS", "libell_d_acheminement": "FONCQUEVILLERS", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62341"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03c39053a081c09ad83f22423a0bc15538551be", "fields": {"nom_de_la_commune": "FOSSEUX", "libell_d_acheminement": "FOSSEUX", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62347"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ff7054f5a5cad06147515291a171ef0dc2e71a1", "fields": {"nom_de_la_commune": "FOUFFLIN RICAMETZ", "libell_d_acheminement": "FOUFFLIN RICAMETZ", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62348"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea3037d5b8815ef5c8edc90fa668dca747d38f73", "fields": {"nom_de_la_commune": "FOUQUIERES LES LENS", "libell_d_acheminement": "FOUQUIERES LES LENS", "code_postal": "62740", "coordonnees_gps": [50.429254845, 2.9051160951], "code_commune_insee": "62351"}, "geometry": {"type": "Point", "coordinates": [2.9051160951, 50.429254845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df46b5070a3a031b1f78f7767d908a82e27ec841", "fields": {"nom_de_la_commune": "GIVENCHY EN GOHELLE", "libell_d_acheminement": "GIVENCHY EN GOHELLE", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62371"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c1c313ad29f1fca64f50a7293c5aea9ef496c7", "fields": {"nom_de_la_commune": "GIVENCHY LES LA BASSEE", "libell_d_acheminement": "GIVENCHY LES LA BASSEE", "code_postal": "62149", "coordonnees_gps": [50.526774017, 2.73934770262], "code_commune_insee": "62373"}, "geometry": {"type": "Point", "coordinates": [2.73934770262, 50.526774017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef3e80b54a43989f48b825341dd6479efd1ff228", "fields": {"nom_de_la_commune": "GRAINCOURT LES HAVRINCOURT", "libell_d_acheminement": "GRAINCOURT LES HAVRINCOURT", "code_postal": "62147", "coordonnees_gps": [50.1126051547, 3.07159688], "code_commune_insee": "62384"}, "geometry": {"type": "Point", "coordinates": [3.07159688, 50.1126051547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4640afd54f0a84220db15ef07e39285c5b586a45", "fields": {"nom_de_la_commune": "GUARBECQUE", "libell_d_acheminement": "GUARBECQUE", "code_postal": "62330", "coordonnees_gps": [50.61399538, 2.46439960248], "code_commune_insee": "62391"}, "geometry": {"type": "Point", "coordinates": [2.46439960248, 50.61399538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77b94a00e0b7546e07f52b4fb44b2ba5a7cf3992", "fields": {"nom_de_la_commune": "HALINGHEN", "libell_d_acheminement": "HALINGHEN", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62402"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1a4e2a44f4ee7d2a9cb1a90f2b5105a00aac0e", "fields": {"nom_de_la_commune": "HALLINES", "libell_d_acheminement": "HALLINES", "code_postal": "62570", "coordonnees_gps": [50.6952364342, 2.22748596722], "code_commune_insee": "62403"}, "geometry": {"type": "Point", "coordinates": [2.22748596722, 50.6952364342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ad2d9433ce781b6bc5cd3a4e1e8db07478f1be", "fields": {"nom_de_la_commune": "HAMELINCOURT", "libell_d_acheminement": "HAMELINCOURT", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62406"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e253d7cb0b136799109274e9aa8cd0cf60e2021d", "fields": {"nom_de_la_commune": "HAVRINCOURT", "libell_d_acheminement": "HAVRINCOURT", "code_postal": "62147", "coordonnees_gps": [50.1126051547, 3.07159688], "code_commune_insee": "62421"}, "geometry": {"type": "Point", "coordinates": [3.07159688, 50.1126051547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65a0111529b1fb590262205aff47866183995c4a", "fields": {"nom_de_la_commune": "HENINEL", "libell_d_acheminement": "HENINEL", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62426"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1cbf166e2e687e60ab61597e5829e308e4a287", "fields": {"nom_de_la_commune": "HENNEVEUX", "libell_d_acheminement": "HENNEVEUX", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62429"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdbfc2ffab1e27716feb1b30d42c9ec400d468c1", "fields": {"nom_de_la_commune": "HERICOURT", "libell_d_acheminement": "HERICOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62433"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d83151e7fd789fb622f242b9c202b54a781849e2", "fields": {"nom_de_la_commune": "HERLIN LE SEC", "libell_d_acheminement": "HERLIN LE SEC", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62436"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9c412bdfeff43963edd3d4ed77eb845fc21b760", "fields": {"nom_de_la_commune": "HERMAVILLE", "libell_d_acheminement": "HERMAVILLE", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62438"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4455d61e4f93d22fa40dc8e25a3c74a9fedd45bb", "fields": {"nom_de_la_commune": "HERMELINGHEN", "libell_d_acheminement": "HERMELINGHEN", "code_postal": "62132", "coordonnees_gps": [50.8069626714, 1.83185894738], "code_commune_insee": "62439"}, "geometry": {"type": "Point", "coordinates": [1.83185894738, 50.8069626714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9febd58174a782cdce28387464fa12401babe2b8", "fields": {"nom_de_la_commune": "HESDIN", "libell_d_acheminement": "HESDIN", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62447"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81406b5009e2200c28647f90b401214cf1b39b4d", "fields": {"nom_de_la_commune": "HOUCHIN", "libell_d_acheminement": "HOUCHIN", "code_postal": "62620", "coordonnees_gps": [50.4611274621, 2.60092856741], "code_commune_insee": "62456"}, "geometry": {"type": "Point", "coordinates": [2.60092856741, 50.4611274621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b41903f11562e5cc04582cfe7a5d8dcf2b49c6c0", "fields": {"nom_de_la_commune": "HUMIERES", "libell_d_acheminement": "HUMIERES", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62468"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a60e834d8c352879ff3a8c0f8b3045b84579bdfc", "fields": {"code_postal": "62330", "code_commune_insee": "62473", "libell_d_acheminement": "ISBERGUES", "ligne_5": "MOLINGHEM", "nom_de_la_commune": "ISBERGUES", "coordonnees_gps": [50.61399538, 2.46439960248]}, "geometry": {"type": "Point", "coordinates": [2.46439960248, 50.61399538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "317078b69ac28bf073c94643fdcbb091d3625e71", "fields": {"nom_de_la_commune": "LAIRES", "libell_d_acheminement": "LAIRES", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62485"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89877f45c5b59a3e4bbf32e5a46ce3799a24ec7c", "fields": {"nom_de_la_commune": "LEDINGHEM", "libell_d_acheminement": "LEDINGHEM", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62495"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8989f1e071b0df43dbeec299f0dd95c612bc3e44", "fields": {"nom_de_la_commune": "LESPESSES", "libell_d_acheminement": "LESPESSES", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62500"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9691aeaf109bb1e8a18827642ef533b8a8df05fd", "fields": {"nom_de_la_commune": "LINGHEM", "libell_d_acheminement": "LINGHEM", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62517"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c8a1f7503228c25c8619f1ab503c25a92f1556", "fields": {"nom_de_la_commune": "LOCON", "libell_d_acheminement": "LOCON", "code_postal": "62400", "coordonnees_gps": [50.5494833407, 2.65621048886], "code_commune_insee": "62520"}, "geometry": {"type": "Point", "coordinates": [2.65621048886, 50.5494833407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8f93b02de000c4703cbadbfdd94a70e8be3e03", "fields": {"nom_de_la_commune": "LOISON SUR CREQUOISE", "libell_d_acheminement": "LOISON SUR CREQUOISE", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62522"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8950d712b30991ab2dd5ae5e1e3299de8400eff", "fields": {"nom_de_la_commune": "LONGUENESSE", "libell_d_acheminement": "LONGUENESSE", "code_postal": "62219", "coordonnees_gps": [50.7332429452, 2.228444485], "code_commune_insee": "62525"}, "geometry": {"type": "Point", "coordinates": [2.228444485, 50.7332429452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3badabe03dca0d67aef3f2580c2c47990b74465", "fields": {"nom_de_la_commune": "LUGY", "libell_d_acheminement": "LUGY", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62533"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d29e9a2c678fbe6eddb44c80b7f658bfa14a6120", "fields": {"nom_de_la_commune": "MARCK", "libell_d_acheminement": "MARCK", "code_postal": "62730", "coordonnees_gps": [50.9324891449, 1.94466017116], "code_commune_insee": "62548"}, "geometry": {"type": "Point", "coordinates": [1.94466017116, 50.9324891449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bc97fede056ceac05a99956debfde2f00ed3a48", "fields": {"nom_de_la_commune": "MARENLA", "libell_d_acheminement": "MARENLA", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62551"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76ea7ac5b04d05deab2549caed9c07513384879", "fields": {"nom_de_la_commune": "MARESVILLE", "libell_d_acheminement": "MARESVILLE", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62554"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ee671d0c77b15bf58018acf82ffeddb57079b75", "fields": {"nom_de_la_commune": "MAROEUIL", "libell_d_acheminement": "MAROEUIL", "code_postal": "62161", "coordonnees_gps": [50.3152704012, 2.69028460141], "code_commune_insee": "62557"}, "geometry": {"type": "Point", "coordinates": [2.69028460141, 50.3152704012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7172364edcf3e42534def6b637ce445c2e464e3", "fields": {"nom_de_la_commune": "MENNEVILLE", "libell_d_acheminement": "MENNEVILLE", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62566"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0049dc6f7ce5c1a7dcc6eb83089d49886b148ece", "fields": {"nom_de_la_commune": "METZ EN COUTURE", "libell_d_acheminement": "METZ EN COUTURE", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62572"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2aaa1ee2432c13a6bd7eb364b29274b98311cef", "fields": {"nom_de_la_commune": "MONCHEL SUR CANCHE", "libell_d_acheminement": "MONCHEL SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62577"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fcaa8923bf0c6746771c7e879de86e7231fbb45", "fields": {"nom_de_la_commune": "MONCHIET", "libell_d_acheminement": "MONCHIET", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62578"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74f9820fe093dc8e504d02da0e6ee981418d46cc", "fields": {"nom_de_la_commune": "MONCHY BRETON", "libell_d_acheminement": "MONCHY BRETON", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62580"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31b9357e22be12599d5800b01dccc0171900793", "fields": {"nom_de_la_commune": "MONCHY CAYEUX", "libell_d_acheminement": "MONCHY CAYEUX", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62581"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8c2b177a208caa6fcd3a9cf6562419fbe24c699", "fields": {"nom_de_la_commune": "MONCHY LE PREUX", "libell_d_acheminement": "MONCHY LE PREUX", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62582"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5ae10f6ae805d85d204bfefaafe224e0390abc", "fields": {"nom_de_la_commune": "MONT BERNANCHON", "libell_d_acheminement": "MONT BERNANCHON", "code_postal": "62350", "coordonnees_gps": [50.6043469321, 2.56021109887], "code_commune_insee": "62584"}, "geometry": {"type": "Point", "coordinates": [2.56021109887, 50.6043469321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ab4dcc5eb1ad8b303ab75a6778ec5032479760", "fields": {"nom_de_la_commune": "MONTREUIL", "libell_d_acheminement": "MONTREUIL", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62588"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee009552a6b58127ac3af7b8a87f2f68fb3b5ce", "fields": {"nom_de_la_commune": "MONTS EN TERNOIS", "libell_d_acheminement": "MONTS EN TERNOIS", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62590"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd48ad30d6e21bfe4496562f2670b74b1b485be", "fields": {"nom_de_la_commune": "MORVAL", "libell_d_acheminement": "MORVAL", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62593"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6529ef6b6d5fbff1852f5af8bb0c0ea8e840e9b", "fields": {"nom_de_la_commune": "MOURIEZ", "libell_d_acheminement": "MOURIEZ", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62596"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "701234a75412f25f77bd24e7ad5c636671d38eed", "fields": {"nom_de_la_commune": "NESLES", "libell_d_acheminement": "NESLES", "code_postal": "62152", "coordonnees_gps": [50.6179006282, 1.6259917167], "code_commune_insee": "62603"}, "geometry": {"type": "Point", "coordinates": [1.6259917167, 50.6179006282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de8ced1bbdb62057bcfe8a047913055283137db2", "fields": {"nom_de_la_commune": "NEUFCHATEL HARDELOT", "libell_d_acheminement": "NEUFCHATEL HARDELOT", "code_postal": "62152", "coordonnees_gps": [50.6179006282, 1.6259917167], "code_commune_insee": "62604"}, "geometry": {"type": "Point", "coordinates": [1.6259917167, 50.6179006282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b136c5f0f17d0efe17556feae39403f75eadf41", "fields": {"nom_de_la_commune": "NEULETTE", "libell_d_acheminement": "NEULETTE", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62605"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8734f95da59c803b3937831e513d4d1ff85dd9f", "fields": {"nom_de_la_commune": "NEUVE CHAPELLE", "libell_d_acheminement": "NEUVE CHAPELLE", "code_postal": "62840", "coordonnees_gps": [50.6197278432, 2.7991107386], "code_commune_insee": "62606"}, "geometry": {"type": "Point", "coordinates": [2.7991107386, 50.6197278432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a3d1f03b20010e8ab8d9c9ff340204a54021f2a", "fields": {"nom_de_la_commune": "NEUVILLE SOUS MONTREUIL", "libell_d_acheminement": "NEUVILLE SOUS MONTREUIL", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62610"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057b6ecd7f834de5d1a59957c36d35bdc987a666", "fields": {"nom_de_la_commune": "NIELLES LES CALAIS", "libell_d_acheminement": "NIELLES LES CALAIS", "code_postal": "62185", "coordonnees_gps": [50.9031968827, 1.82269226345], "code_commune_insee": "62615"}, "geometry": {"type": "Point", "coordinates": [1.82269226345, 50.9031968827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "774d3a32e7a57c583b13f026f2360d7ebacecc31", "fields": {"nom_de_la_commune": "NORT LEULINGHEM", "libell_d_acheminement": "NORT LEULINGHEM", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62622"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f226554039ef020997cd2f85fe7dc9ab366e1a8a", "fields": {"nom_de_la_commune": "NOUVELLE EGLISE", "libell_d_acheminement": "NOUVELLE EGLISE", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62623"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eda4f7905520a9fad64f3dc977feaf6f99c0f6d", "fields": {"nom_de_la_commune": "NOYELLES GODAULT", "libell_d_acheminement": "NOYELLES GODAULT", "code_postal": "62950", "coordonnees_gps": [50.4179645622, 2.99397067433], "code_commune_insee": "62624"}, "geometry": {"type": "Point", "coordinates": [2.99397067433, 50.4179645622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bd64bf1fffcacd0a8475a24d35f4f28c5171f48", "fields": {"nom_de_la_commune": "OEUF EN TERNOIS", "libell_d_acheminement": "OEUF EN TERNOIS", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62633"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecb50ea2196f360fc99a4a6b8640eadb220ad89c", "fields": {"nom_de_la_commune": "OFFIN", "libell_d_acheminement": "OFFIN", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62635"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ad8bd2544ab2321ff8bf1e48e381bd14366f25d", "fields": {"nom_de_la_commune": "OUTREAU", "libell_d_acheminement": "OUTREAU", "code_postal": "62230", "coordonnees_gps": [50.6981882438, 1.59246943476], "code_commune_insee": "62643"}, "geometry": {"type": "Point", "coordinates": [1.59246943476, 50.6981882438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b869250cd519fae05f584acc489df47d5f08c07", "fields": {"nom_de_la_commune": "PAS EN ARTOIS", "libell_d_acheminement": "PAS EN ARTOIS", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62649"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97852b47c1b04f30dce3a6d51e6f31f322d9ee23", "fields": {"nom_de_la_commune": "PEUPLINGUES", "libell_d_acheminement": "PEUPLINGUES", "code_postal": "62231", "coordonnees_gps": [50.929758247, 1.77843645708], "code_commune_insee": "62654"}, "geometry": {"type": "Point", "coordinates": [1.77843645708, 50.929758247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72b842c0617245568010ff8fe4bc436d79f6b084", "fields": {"nom_de_la_commune": "PIERREMONT", "libell_d_acheminement": "PIERREMONT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62655"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75a65405882412a729b2d9d59e3c9c4dd6238a2", "fields": {"nom_de_la_commune": "PLOUVAIN", "libell_d_acheminement": "PLOUVAIN", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62660"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "591a0b2372cd641aa63590d76f8fb590a0eac200", "fields": {"nom_de_la_commune": "LE PONCHEL", "libell_d_acheminement": "LE PONCHEL", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62665"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8210ed673f7d94b9786515185f388b272386d91", "fields": {"nom_de_la_commune": "STE CECILE", "libell_d_acheminement": "STE CECILE", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71397"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed1b85bc6554e006645d22cc5e837d00a851b19e", "fields": {"nom_de_la_commune": "ST DESERT", "libell_d_acheminement": "ST DESERT", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71404"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a17970a05d9729262a8040491e9bc324fe89413", "fields": {"nom_de_la_commune": "ST EUGENE", "libell_d_acheminement": "ST EUGENE", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71411"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76697a109bc7aeefe25155b7dc69baad27fffcd7", "fields": {"nom_de_la_commune": "ST FIRMIN", "libell_d_acheminement": "ST FIRMIN", "code_postal": "71670", "coordonnees_gps": [46.8253378412, 4.49167816237], "code_commune_insee": "71413"}, "geometry": {"type": "Point", "coordinates": [4.49167816237, 46.8253378412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1092ed2a1740a07ed0eae4530e2e4ba78edd616", "fields": {"nom_de_la_commune": "ST HURUGE", "libell_d_acheminement": "ST HURUGE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71427"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6038f10b3e4a40714a216f0b20d1ab9f7bf01a96", "fields": {"nom_de_la_commune": "ST LEGER DU BOIS", "libell_d_acheminement": "ST LEGER DU BOIS", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71438"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b93827e21dff3a87d9fa4ad2c2fc141160798c4", "fields": {"nom_de_la_commune": "ST LEGER SOUS BEUVRAY", "libell_d_acheminement": "ST LEGER SOUS BEUVRAY", "code_postal": "71990", "coordonnees_gps": [46.9426625414, 4.10521172287], "code_commune_insee": "71440"}, "geometry": {"type": "Point", "coordinates": [4.10521172287, 46.9426625414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09f8641ac7993d22d0deeef5bef690b05bec4ae3", "fields": {"nom_de_la_commune": "ST MARCELIN DE CRAY", "libell_d_acheminement": "ST MARCELIN DE CRAY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71446"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6bdc919849eb9b5a5ae0578a599741167b05ddc", "fields": {"nom_de_la_commune": "ST MARD DE VAUX", "libell_d_acheminement": "ST MARD DE VAUX", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71447"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c625ddd19b2d76c2a28f8c90ce50233c3a097052", "fields": {"nom_de_la_commune": "ST MARTIN D AUXY", "libell_d_acheminement": "ST MARTIN D AUXY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71449"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acce177e7540286de2d7589c16a39922a1b1c579", "fields": {"nom_de_la_commune": "ST MARTIN DE LIXY", "libell_d_acheminement": "ST MARTIN DE LIXY", "code_postal": "71740", "coordonnees_gps": [46.2095862576, 4.24377069569], "code_commune_insee": "71451"}, "geometry": {"type": "Point", "coordinates": [4.24377069569, 46.2095862576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efc19130668d28a625124c561156121584b5d76", "fields": {"nom_de_la_commune": "ST MARTIN LA PATROUILLE", "libell_d_acheminement": "ST MARTIN LA PATROUILLE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71458"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa6c94975582bfb18b5d9ce93606e3ffd8382710", "fields": {"nom_de_la_commune": "ST MAURICE EN RIVIERE", "libell_d_acheminement": "ST MAURICE EN RIVIERE", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71462"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19705100ccda85a8ae7e32fb5d75a6b4f73ed646", "fields": {"nom_de_la_commune": "ST MAURICE LES CHATEAUNEUF", "libell_d_acheminement": "ST MAURICE LES CHATEAUNEUF", "code_postal": "71740", "coordonnees_gps": [46.2095862576, 4.24377069569], "code_commune_insee": "71463"}, "geometry": {"type": "Point", "coordinates": [4.24377069569, 46.2095862576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5fb21f9c8f690ace3cd61dcc317ae0512e0695", "fields": {"nom_de_la_commune": "ST MAURICE LES COUCHES", "libell_d_acheminement": "ST MAURICE LES COUCHES", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71464"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11e10e50e33dabe9cd3944c99565114fb6d5d1b8", "fields": {"nom_de_la_commune": "ST PIERRE LE VIEUX", "libell_d_acheminement": "ST PIERRE LE VIEUX", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71469"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7654afcc1f22bf8ecd4521d4a78c085b45c9c605", "fields": {"nom_de_la_commune": "ST PRIVE", "libell_d_acheminement": "ST PRIVE", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71471"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75698b1da526aeef4b80ce75459aece7f29c1efa", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "71100", "coordonnees_gps": [46.753921991, 4.82932300465], "code_commune_insee": "71475"}, "geometry": {"type": "Point", "coordinates": [4.82932300465, 46.753921991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35bdbd3d419a5886a5b9b29519e84a798f32183", "fields": {"nom_de_la_commune": "ST ROMAIN SOUS GOURDON", "libell_d_acheminement": "ST ROMAIN SOUS GOURDON", "code_postal": "71230", "coordonnees_gps": [46.6235547336, 4.3737497458], "code_commune_insee": "71477"}, "geometry": {"type": "Point", "coordinates": [4.3737497458, 46.6235547336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4958d6c1477675c852814bd50ac9ac5691c55464", "fields": {"nom_de_la_commune": "ST VINCENT DES PRES", "libell_d_acheminement": "ST VINCENT DES PRES", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71488"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92cd500205ded2b937fa6d5f9013d2fbfd6fe07d", "fields": {"nom_de_la_commune": "ST YTHAIRE", "libell_d_acheminement": "ST YTHAIRE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71492"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98df011bb3edafe0a6bcd03358fc2a45bfdfde07", "fields": {"nom_de_la_commune": "SANTILLY", "libell_d_acheminement": "SANTILLY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71498"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0556c76214744a986360c7602a27c82787b5a8a", "fields": {"nom_de_la_commune": "SANVIGNES LES MINES", "libell_d_acheminement": "SANVIGNES LES MINES", "code_postal": "71410", "coordonnees_gps": [46.6680452949, 4.27949256026], "code_commune_insee": "71499"}, "geometry": {"type": "Point", "coordinates": [4.27949256026, 46.6680452949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70758431c938a67813c6b253acc63b61280ce268", "fields": {"nom_de_la_commune": "SASSENAY", "libell_d_acheminement": "SASSENAY", "code_postal": "71530", "coordonnees_gps": [46.8388869017, 4.87612871845], "code_commune_insee": "71502"}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b98f106479fbd26d12e8a5d63100a2a91fd61b4e", "fields": {"nom_de_la_commune": "SAULES", "libell_d_acheminement": "SAULES", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71503"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5cc030e01a151dbcb14c7635e565b0a468538a", "fields": {"nom_de_la_commune": "SAVIANGES", "libell_d_acheminement": "SAVIANGES", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71505"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e4527630e914baae1e9c969dd5e41acc80c4fe9", "fields": {"nom_de_la_commune": "SENS SUR SEILLE", "libell_d_acheminement": "SENS SUR SEILLE", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71514"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eecdaeba0bfd5aebf6b1671a52a382daffd982b9", "fields": {"nom_de_la_commune": "SIGY LE CHATEL", "libell_d_acheminement": "SIGY LE CHATEL", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71521"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b172eb1bc4b87b9229141424755fb531a2e745e7", "fields": {"nom_de_la_commune": "SIMANDRE", "libell_d_acheminement": "SIMANDRE", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71522"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "680542602969b85826ae0b1cae64be23278c8d7b", "fields": {"nom_de_la_commune": "SIVIGNON", "libell_d_acheminement": "SIVIGNON", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71524"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28337cc1a3202029694a3b3216dde5f26db09ff5", "fields": {"nom_de_la_commune": "LA TAGNIERE", "libell_d_acheminement": "LA TAGNIERE", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71531"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0103369cb9a5bf8697e1cd80bc6eb727cb129e3d", "fields": {"nom_de_la_commune": "LE TARTRE", "libell_d_acheminement": "LE TARTRE", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71534"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c8770cb483a01a0e7e08fca51666534b7bff72d", "fields": {"nom_de_la_commune": "THIL SUR ARROUX", "libell_d_acheminement": "THIL SUR ARROUX", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71537"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4039b4b16ad9e42cec4b1ced97fa5381aea8893a", "fields": {"nom_de_la_commune": "TOUTENANT", "libell_d_acheminement": "TOUTENANT", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71544"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed99c41292993740b1e155057d094f55347aa4b", "fields": {"nom_de_la_commune": "TRIVY", "libell_d_acheminement": "TRIVY", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71547"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4ac44e3f03189a7c49aacd21bc88f3fbdb5226e", "fields": {"nom_de_la_commune": "UCHIZY", "libell_d_acheminement": "UCHIZY", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71550"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe90ea9c6d18f27521a8959f4e9cbd47001cfa6", "fields": {"nom_de_la_commune": "VARENNES LES MACON", "libell_d_acheminement": "VARENNES LES MACON", "code_postal": "71000", "coordonnees_gps": [46.3175504743, 4.81977288125], "code_commune_insee": "71556"}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9c5b2b0f8da1f8bcd4c6efeebf8fb529e5502dd", "fields": {"code_postal": "71600", "code_commune_insee": "71557", "libell_d_acheminement": "VARENNE ST GERMAIN", "ligne_5": "ST GERMAIN DES RIVES", "nom_de_la_commune": "VARENNE ST GERMAIN", "coordonnees_gps": [46.4281559429, 4.10161949628]}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a8b973322e69cb216312d6758ba634265e42ee", "fields": {"nom_de_la_commune": "VENDENESSE LES CHAROLLES", "libell_d_acheminement": "VENDENESSE LES CHAROLLES", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71564"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d20c3357babeced74b0aeeaca6794d4b43b9e94", "fields": {"nom_de_la_commune": "VERS", "libell_d_acheminement": "VERS", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71572"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3909d739d6c5d2ec63b77b52cdf4251050d94b01", "fields": {"nom_de_la_commune": "VINCELLES", "libell_d_acheminement": "VINCELLES", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71580"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0c5f286d91ca50e6aa79de3df38aa6eabda717", "fields": {"nom_de_la_commune": "VINDECY", "libell_d_acheminement": "VINDECY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71581"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b2e71c06e234087af0b70ea600b47e11881ea0", "fields": {"nom_de_la_commune": "LA VINEUSE", "libell_d_acheminement": "LA VINEUSE", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71582"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9854f4ed724ed81ceafc6c89ac2edf59e951715", "fields": {"nom_de_la_commune": "VIREY LE GRAND", "libell_d_acheminement": "VIREY LE GRAND", "code_postal": "71530", "coordonnees_gps": [46.8388869017, 4.87612871845], "code_commune_insee": "71585"}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16cbe0585c7060a3dbf69ca01c19d7efe3a264b6", "fields": {"nom_de_la_commune": "VIRY", "libell_d_acheminement": "VIRY", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71586"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721a989e1eb41e95d2fb2f61164c2d1fff5cbdbd", "fields": {"nom_de_la_commune": "VITRY EN CHAROLLAIS", "libell_d_acheminement": "VITRY EN CHAROLLAIS", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71588"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e4d86f9f92df0cf6f5eff8cf7d3e876b9a98b37", "fields": {"nom_de_la_commune": "VOLESVRES", "libell_d_acheminement": "VOLESVRES", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71590"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "507e95621e492c1f876da0cefe52420a43351854", "fields": {"nom_de_la_commune": "AUBIGNE RACAN", "libell_d_acheminement": "AUBIGNE RACAN", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72013"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e786d1fc72c3b80d48ca39be138791e40140e015", "fields": {"nom_de_la_commune": "AVOISE", "libell_d_acheminement": "AVOISE", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72021"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99fd10bf976d33bcd3cdf3b452226074eff58d3b", "fields": {"nom_de_la_commune": "BAZOUGES SUR LE LOIR", "libell_d_acheminement": "BAZOUGES SUR LE LOIR", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72025"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec5e3e7c9b9711526219540e37dd0be2bde7e8b9", "fields": {"nom_de_la_commune": "BERFAY", "libell_d_acheminement": "BERFAY", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72032"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdbdd122d387cd76259b4738d6cb61e98663f1ef", "fields": {"nom_de_la_commune": "BESSE SUR BRAYE", "libell_d_acheminement": "BESSE SUR BRAYE", "code_postal": "72310", "coordonnees_gps": [47.8336361151, 0.691494561054], "code_commune_insee": "72035"}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b05b2746a0666efbd68296db0170468b7359d6c", "fields": {"nom_de_la_commune": "BLEVES", "libell_d_acheminement": "BLEVES", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72037"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f7aa6361058ee728de9527040149365760eeb7e", "fields": {"nom_de_la_commune": "BONNETABLE", "libell_d_acheminement": "BONNETABLE", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72039"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6e36fa2d9f65143bf1e930a74d07c9ce5909145", "fields": {"nom_de_la_commune": "BOUER", "libell_d_acheminement": "BOUER", "code_postal": "72390", "coordonnees_gps": [48.0512827227, 0.629748234249], "code_commune_insee": "72041"}, "geometry": {"type": "Point", "coordinates": [0.629748234249, 48.0512827227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "565fa9f64f7d3f9c08f44d49033a474c2c401fb8", "fields": {"nom_de_la_commune": "BOUSSE", "libell_d_acheminement": "BOUSSE", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72044"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc7897bacacc107025c5420c97a6bbf1ccaa490", "fields": {"nom_de_la_commune": "LA BRUERE SUR LOIR", "libell_d_acheminement": "LA BRUERE SUR LOIR", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72049"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3cbc2d8be46e6adde57b57a6465e4679edd992", "fields": {"nom_de_la_commune": "CERANS FOULLETOURTE", "libell_d_acheminement": "CERANS FOULLETOURTE", "code_postal": "72330", "coordonnees_gps": [47.82608186, 0.101010219107], "code_commune_insee": "72051"}, "geometry": {"type": "Point", "coordinates": [0.101010219107, 47.82608186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc84a126e52d409e4d94ec7680ab0d25a2cd9e56", "fields": {"nom_de_la_commune": "CHANTENAY VILLEDIEU", "libell_d_acheminement": "CHANTENAY VILLEDIEU", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72059"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0467efaa999130ea13cf156115b1cdb7c95ad669", "fields": {"nom_de_la_commune": "LA CHAPELLE GAUGAIN", "libell_d_acheminement": "LA CHAPELLE GAUGAIN", "code_postal": "72310", "coordonnees_gps": [47.8336361151, 0.691494561054], "code_commune_insee": "72063"}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d29fcf96089344b65ec4bc046380fa2cc58c18", "fields": {"nom_de_la_commune": "CHERRE", "libell_d_acheminement": "CHERRE", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72080"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a600157208383643aac792a9636cadfb9e8c3d5", "fields": {"nom_de_la_commune": "CLERMONT CREANS", "libell_d_acheminement": "CLERMONT CREANS", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72084"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6e2472a16338d4fa0099d9c98696e8b8eec0cb", "fields": {"nom_de_la_commune": "COGNERS", "libell_d_acheminement": "COGNERS", "code_postal": "72310", "coordonnees_gps": [47.8336361151, 0.691494561054], "code_commune_insee": "72085"}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a52dc4143965ecf6d85f5a4551b200d0d105ee62", "fields": {"nom_de_la_commune": "CONNERRE", "libell_d_acheminement": "CONNERRE", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72090"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a55032a92b8b056b2f9a46f56d4dcd47044144a9", "fields": {"nom_de_la_commune": "COUDRECIEUX", "libell_d_acheminement": "COUDRECIEUX", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72094"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ddfe34a4ab650555313a9ecefd938500162c92", "fields": {"nom_de_la_commune": "DANGEUL", "libell_d_acheminement": "DANGEUL", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72112"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afd71f64453b310aebd98552d3f28cfa315f3505", "fields": {"nom_de_la_commune": "ECORPAIN", "libell_d_acheminement": "ECORPAIN", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72125"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26aa0558359ba23a846578fc76c61c4555d28abd", "fields": {"nom_de_la_commune": "ETIVAL LES LE MANS", "libell_d_acheminement": "ETIVAL LES LE MANS", "code_postal": "72700", "coordonnees_gps": [47.9647519456, 0.124625925124], "code_commune_insee": "72127"}, "geometry": {"type": "Point", "coordinates": [0.124625925124, 47.9647519456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9264b8e426b6ea88edcef3f82086ae63acf5ae52", "fields": {"nom_de_la_commune": "FATINES", "libell_d_acheminement": "FATINES", "code_postal": "72470", "coordonnees_gps": [48.0204564826, 0.363077616761], "code_commune_insee": "72129"}, "geometry": {"type": "Point", "coordinates": [0.363077616761, 48.0204564826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848cf0e02bd2a7816cbb9bf867c5a48f16bf3c90", "fields": {"nom_de_la_commune": "FAY", "libell_d_acheminement": "FAY", "code_postal": "72550", "coordonnees_gps": [48.0233786527, 0.0301205478964], "code_commune_insee": "72130"}, "geometry": {"type": "Point", "coordinates": [0.0301205478964, 48.0233786527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a115b8a6b3a9701612f7fb0ddf3d760f467d7e2", "fields": {"nom_de_la_commune": "FILLE", "libell_d_acheminement": "FILLE SUR SARTHE", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72133"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc3c3132bc43927aec74f7737d6a794f2aac0774", "fields": {"nom_de_la_commune": "FONTENAY SUR VEGRE", "libell_d_acheminement": "FONTENAY SUR VEGRE", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72136"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21c4301cfbfa48325492f5588ae75d460484ab82", "fields": {"nom_de_la_commune": "GUECELARD", "libell_d_acheminement": "GUECELARD", "code_postal": "72230", "coordonnees_gps": [47.913932839, 0.210035627904], "code_commune_insee": "72146"}, "geometry": {"type": "Point", "coordinates": [0.210035627904, 47.913932839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1099bd180014eaec087f49e4e6f4761b993dc1fa", "fields": {"nom_de_la_commune": "LA GUIERCHE", "libell_d_acheminement": "LA GUIERCHE", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72147"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e36da3d93791c1106d66c93e6ac1c568fd1c40d", "fields": {"nom_de_la_commune": "JOUE EN CHARNIE", "libell_d_acheminement": "JOUE EN CHARNIE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72149"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc28cf13099450096517c7e0a8344f129c4221e", "fields": {"nom_de_la_commune": "LA FLECHE", "libell_d_acheminement": "LA FLECHE", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72154"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b71623de8ea661317fe0bbb43f859c2936bfbe0", "fields": {"nom_de_la_commune": "LHOMME", "libell_d_acheminement": "LHOMME", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72161"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed9b429e1b0e16ef96e2ec8f51f55eb2226c1697", "fields": {"nom_de_la_commune": "LIGRON", "libell_d_acheminement": "LIGRON", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72163"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9523e98316ccbbc818b9f12ad2c469f3c9b17922", "fields": {"nom_de_la_commune": "LOUAILLES", "libell_d_acheminement": "LOUAILLES", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72167"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ce7604e5053b6b2e7eb886d80d609d6ad4554fe", "fields": {"nom_de_la_commune": "MAMERS", "libell_d_acheminement": "MAMERS", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72180"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d0f874ac6b3e031c5c267c10f8f393a8594cdea", "fields": {"nom_de_la_commune": "MAREIL EN CHAMPAGNE", "libell_d_acheminement": "MAREIL EN CHAMPAGNE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72184"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3911c3b4c75b37ab1550a4019121c1084458800", "fields": {"nom_de_la_commune": "MAROLLES LES ST CALAIS", "libell_d_acheminement": "MAROLLES LES ST CALAIS", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72190"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb6d96314edcf579998d97b2d2644a689f94c3e2", "fields": {"nom_de_la_commune": "MEZIERES SOUS LAVARDIN", "libell_d_acheminement": "MEZIERES SOUS LAVARDIN", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72197"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a14f48f7aad5ffbc02b9f74005ac0d65e774f07", "fields": {"nom_de_la_commune": "MONTREUIL LE CHETIF", "libell_d_acheminement": "MONTREUIL LE CHETIF", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72209"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b19ca5e07711c94da79fc5ede1dedc3e91b48166", "fields": {"nom_de_la_commune": "NEUVILLE SUR SARTHE", "libell_d_acheminement": "NEUVILLE SUR SARTHE", "code_postal": "72190", "coordonnees_gps": [48.0582059283, 0.222153096332], "code_commune_insee": "72217"}, "geometry": {"type": "Point", "coordinates": [0.222153096332, 48.0582059283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00a65ef6519b9edb88b597e299c2f46d7e7ee36", "fields": {"nom_de_la_commune": "OISSEAU LE PETIT", "libell_d_acheminement": "OISSEAU LE PETIT", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72225"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82c6b07acef7be939d32c8030611cb2dd8607d4", "fields": {"nom_de_la_commune": "PARIGNE LE POLIN", "libell_d_acheminement": "PARIGNE LE POLIN", "code_postal": "72330", "coordonnees_gps": [47.82608186, 0.101010219107], "code_commune_insee": "72230"}, "geometry": {"type": "Point", "coordinates": [0.101010219107, 47.82608186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92e14f9f89f9345a3e0ad3837022948ae4a62405", "fields": {"nom_de_la_commune": "RAHAY", "libell_d_acheminement": "RAHAY", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72250"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29dc05060cdc43ba88220480bbe94217776467c5", "fields": {"nom_de_la_commune": "ROUESSE FONTAINE", "libell_d_acheminement": "ROUESSE FONTAINE", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72254"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3395d0452da07a7c590b982cbef2e8a0ce1b25c", "fields": {"nom_de_la_commune": "ROUESSE VASSE", "libell_d_acheminement": "ROUESSE VASSE", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72255"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dce95660cf668149d269bfa1dcebc09cb44600f", "fields": {"nom_de_la_commune": "ROUEZ", "libell_d_acheminement": "ROUEZ", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72256"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2455adc73f614040f20bceaa7e95996b721c02e7", "fields": {"nom_de_la_commune": "ROUILLON", "libell_d_acheminement": "ROUILLON", "code_postal": "72700", "coordonnees_gps": [47.9647519456, 0.124625925124], "code_commune_insee": "72257"}, "geometry": {"type": "Point", "coordinates": [0.124625925124, 47.9647519456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "622f16de857f95f32955fd345a6102734a7ce6d9", "fields": {"nom_de_la_commune": "ROUPERROUX LE COQUET", "libell_d_acheminement": "ROUPERROUX LE COQUET", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72259"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2018c91256d7ff29e3b412b408a26749a614a57", "fields": {"nom_de_la_commune": "ST AIGNAN", "libell_d_acheminement": "ST AIGNAN", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72265"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ef6cf62cf5a25a722ca329d66d0f27b6c0d6c6", "fields": {"nom_de_la_commune": "ST AUBIN DE LOCQUENAY", "libell_d_acheminement": "ST AUBIN DE LOCQUENAY", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72266"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebac176e0800d548c7c626f1e8ed22622a416820", "fields": {"nom_de_la_commune": "ST AUBIN DES COUDRAIS", "libell_d_acheminement": "ST AUBIN DES COUDRAIS", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72267"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "679b5c9e244465f9776ebcefa4e6ab52be102827", "fields": {"nom_de_la_commune": "ST BIEZ EN BELIN", "libell_d_acheminement": "ST BIEZ EN BELIN", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72268"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c130d20d40b3ff4edf605a700b5d44a9be0d5b5", "fields": {"nom_de_la_commune": "ST CALAIS", "libell_d_acheminement": "ST CALAIS", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72269"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "733dde7d8d24af5feab0ab39432a8ec0fc59064f", "fields": {"nom_de_la_commune": "ST CELERIN", "libell_d_acheminement": "ST CELERIN", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72271"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ea2deee0dd67c73bd794082cdaab7fc887001af", "fields": {"nom_de_la_commune": "ST DENIS D ORQUES", "libell_d_acheminement": "ST DENIS D ORQUES", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72278"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f4acecfd92f1aabec7595be910ec034fb8d58ba", "fields": {"nom_de_la_commune": "TOGNY AUX BOEUFS", "libell_d_acheminement": "TOGNY AUX BOEUFS", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51574"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44b2719ff7c890245edd7659287a767191f7191a", "fields": {"nom_de_la_commune": "TRAMERY", "libell_d_acheminement": "TRAMERY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51577"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f74abe5129a93ed0f908c12b75ddcf7dbb12986e", "fields": {"nom_de_la_commune": "TREPAIL", "libell_d_acheminement": "TREPAIL", "code_postal": "51380", "coordonnees_gps": [49.1185203616, 4.19712264591], "code_commune_insee": "51580"}, "geometry": {"type": "Point", "coordinates": [4.19712264591, 49.1185203616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c51a18a12e8dde4418a2ac85445f0250a56f3fd", "fields": {"nom_de_la_commune": "TRESLON", "libell_d_acheminement": "TRESLON", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51581"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cefa295e52b35cdca37a84a0c32d570731299c71", "fields": {"nom_de_la_commune": "TRIGNY", "libell_d_acheminement": "TRIGNY", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51582"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7d2ef6d0ce886c098acf43e0c9c6561a344079", "fields": {"nom_de_la_commune": "TROISSY", "libell_d_acheminement": "TROISSY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51585"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa7f93855fc6069d35ba89e172b16fef08d857ad", "fields": {"nom_de_la_commune": "VALMY", "libell_d_acheminement": "VALMY", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51588"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eebed09cbeda03cd042d36550e9b973ee125664b", "fields": {"nom_de_la_commune": "VANAULT LE CHATEL", "libell_d_acheminement": "VANAULT LE CHATEL", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51589"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7989bda9a8a34b9e99b6394b66eadfba76355cab", "fields": {"nom_de_la_commune": "VANDEUIL", "libell_d_acheminement": "VANDEUIL", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51591"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47be46a70751a86df926a4ebc23f0a0c29b21c08", "fields": {"nom_de_la_commune": "VENTELAY", "libell_d_acheminement": "VENTELAY", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51604"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63e956f895a30137b5d02ef27820bf9fa7fa1c87", "fields": {"nom_de_la_commune": "VERDON", "libell_d_acheminement": "VERDON", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51607"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1710a69acda10c285e2025cf48773d265e796ee", "fields": {"nom_de_la_commune": "VERNANCOURT", "libell_d_acheminement": "VERNANCOURT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51608"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5c248481d587e9cd637397c8485437cb489759", "fields": {"nom_de_la_commune": "VERNEUIL", "libell_d_acheminement": "VERNEUIL", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51609"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d35dda94f03729a9a1fed278c41cc6f64c3b4dac", "fields": {"nom_de_la_commune": "VIENNE LE CHATEAU", "libell_d_acheminement": "VIENNE LE CHATEAU", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51621"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9786ae25658c22af13a0c886a8444e32e4653408", "fields": {"nom_de_la_commune": "LA VILLENEUVE LES CHARLEVILLE", "libell_d_acheminement": "LA VILLENEUVE LES CHARLEVILLE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51626"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888e5021dceecf5d07c1cb5f3920f1fbd06b4b43", "fields": {"nom_de_la_commune": "VILLENEUVE ST VISTRE ET VILLEVOTTE", "libell_d_acheminement": "VILLENEUVE ST VISTRE VILLEVOTTE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51628"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b9ee02f264591e12d61eec8b6b7c4a7615033f0", "fields": {"nom_de_la_commune": "VILLERS ALLERAND", "libell_d_acheminement": "VILLERS ALLERAND", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51629"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dddb255ec85d70d39f7a01c1728df09ced82aab", "fields": {"nom_de_la_commune": "VILLERS EN ARGONNE", "libell_d_acheminement": "VILLERS EN ARGONNE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51632"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c542268520d5b822b5a425d7b8b5bf64230c1ce", "fields": {"nom_de_la_commune": "VILLERS LE CHATEAU", "libell_d_acheminement": "VILLERS LE CHATEAU", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51634"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae4f333ab222cdae81ea349a5c41646212b8482", "fields": {"nom_de_la_commune": "VILLERS MARMERY", "libell_d_acheminement": "VILLERS MARMERY", "code_postal": "51380", "coordonnees_gps": [49.1185203616, 4.19712264591], "code_commune_insee": "51636"}, "geometry": {"type": "Point", "coordinates": [4.19712264591, 49.1185203616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efb9ca09c71c4ff66e2fdb8d8269476c89872179", "fields": {"nom_de_la_commune": "VILLEVENARD", "libell_d_acheminement": "VILLEVENARD", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51641"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43f62c08cc9b68f4f289f595f2b0bdee53b4372f", "fields": {"nom_de_la_commune": "VITRY LA VILLE", "libell_d_acheminement": "VITRY LA VILLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51648"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "503b69262fb99b4e7edb3c034514ffa5033260be", "fields": {"code_postal": "51240", "code_commune_insee": "51648", "libell_d_acheminement": "VITRY LA VILLE", "ligne_5": "VOUCIENNES", "nom_de_la_commune": "VITRY LA VILLE", "coordonnees_gps": [48.8713241468, 4.48928355914]}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0852296f9bd3d00d5288c86f0762afc95cfbf47", "fields": {"nom_de_la_commune": "AIGREMONT", "libell_d_acheminement": "AIGREMONT", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52002"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f965776ba2242e4f51496827087ac4bcd20b56", "fields": {"nom_de_la_commune": "AINGOULAINCOURT", "libell_d_acheminement": "AINGOULAINCOURT", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52004"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9615ef17336d234da9360c2ae4ff223b803bf368", "fields": {"nom_de_la_commune": "ARC EN BARROIS", "libell_d_acheminement": "ARC EN BARROIS", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52017"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43ff2fb892a3c4b03e8b704e2426a373d1b5bfe6", "fields": {"nom_de_la_commune": "AUTREVILLE SUR LA RENNE", "libell_d_acheminement": "AUTREVILLE SUR LA RENNE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52031"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0dd0ee56044997964046bf5e12d08c0c198df4", "fields": {"code_postal": "52120", "code_commune_insee": "52031", "libell_d_acheminement": "AUTREVILLE SUR LA RENNE", "ligne_5": "VALDELANCOURT", "nom_de_la_commune": "AUTREVILLE SUR LA RENNE", "coordonnees_gps": [48.0490446156, 4.88638529419]}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa94b2b55a1904ca339b1da630857ba65d7c33f", "fields": {"nom_de_la_commune": "BAUDRECOURT", "libell_d_acheminement": "BAUDRECOURT", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52039"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22458fc5cf49c2a2980311ab54418c367f074730", "fields": {"code_postal": "52270", "code_commune_insee": "52044", "libell_d_acheminement": "ROCHES BETTAINCOURT", "ligne_5": "ROCHES SUR ROGNON", "nom_de_la_commune": "ROCHES BETTAINCOURT", "coordonnees_gps": [48.329589946, 5.25765158251]}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b5de2a49618a88bbfd87b52458f843fed4e571", "fields": {"nom_de_la_commune": "BEURVILLE", "libell_d_acheminement": "BEURVILLE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52047"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721c648302f988f361387969110ec57211d757e4", "fields": {"code_postal": "52310", "code_commune_insee": "52058", "libell_d_acheminement": "BOLOGNE", "ligne_5": "ROOCOURT LA COTE", "nom_de_la_commune": "BOLOGNE", "coordonnees_gps": [48.2108562649, 5.11797313893]}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56f6a14626dafebc22b5aa94c8fa384321ba2dd1", "fields": {"nom_de_la_commune": "BOURDONS SUR ROGNON", "libell_d_acheminement": "BOURDONS SUR ROGNON", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52061"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81fb52c15aa8e44e49a5a3582139362a964ac964", "fields": {"nom_de_la_commune": "BRAUX LE CHATEL", "libell_d_acheminement": "BRAUX LE CHATEL", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52069"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1664cb83d72dcae5c932c6d76bd80f983874b5f", "fields": {"nom_de_la_commune": "CHAMPSEVRAINE", "libell_d_acheminement": "CHAMPSEVRAINE", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52083"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd6b162080b174b9b19a3f42db20bb82f1e0f82", "fields": {"nom_de_la_commune": "CEFFONDS", "libell_d_acheminement": "CEFFONDS", "code_postal": "52220", "coordonnees_gps": [48.4589686366, 4.78360005929], "code_commune_insee": "52088"}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df6d7f54bc4dc943c2ac5368276f956e1aaaa8b", "fields": {"code_postal": "52220", "code_commune_insee": "52088", "libell_d_acheminement": "CEFFONDS", "ligne_5": "ANGLUS", "nom_de_la_commune": "CEFFONDS", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f9b5852a216d50b6f488168b5d8c0507b93ae78", "fields": {"nom_de_la_commune": "CELLES EN BASSIGNY", "libell_d_acheminement": "CELLES EN BASSIGNY", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52089"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f9ba8d0b8afab4f74d70402f0a3836ef5997546", "fields": {"nom_de_la_commune": "CHALINDREY", "libell_d_acheminement": "CHALINDREY", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52093"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "333649bca7feef7b444c9ecc937dde612941443e", "fields": {"nom_de_la_commune": "CHALVRAINES", "libell_d_acheminement": "CHALVRAINES", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52095"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2065c6e99c7f92900d91af39f6d69f069f55d4c5", "fields": {"nom_de_la_commune": "CHAMPIGNEULLES EN BASSIGNY", "libell_d_acheminement": "CHAMPIGNEULLES EN BASSIGNY", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52101"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e7967a8777ba1a941317972f15e3068289c404", "fields": {"nom_de_la_commune": "CHANOY", "libell_d_acheminement": "CHANOY", "code_postal": "52260", "coordonnees_gps": [47.9429449859, 5.2580157459], "code_commune_insee": "52106"}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40580021449ce27250ad557d33f56ab7427fa452", "fields": {"nom_de_la_commune": "CHARMES", "libell_d_acheminement": "CHARMES", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52108"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26edc6a01d99dea5ab12b6183f19635cd9c80028", "fields": {"nom_de_la_commune": "CHASSIGNY", "libell_d_acheminement": "CHASSIGNY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52113"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12cf68b5642f841207522dbcaf4809a90eb843e0", "fields": {"nom_de_la_commune": "CHATEAUVILLAIN", "libell_d_acheminement": "CHATEAUVILLAIN", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52114"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e55ee3e49d455aecdd8a16fe652c095df763d424", "fields": {"code_postal": "52120", "code_commune_insee": "52114", "libell_d_acheminement": "CHATEAUVILLAIN", "ligne_5": "MARMESSE", "nom_de_la_commune": "CHATEAUVILLAIN", "coordonnees_gps": [48.0490446156, 4.88638529419]}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f047415eb9ceb0ed9f486db7f61274f0a5425a3", "fields": {"nom_de_la_commune": "CHAUDENAY", "libell_d_acheminement": "CHAUDENAY", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52119"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc1977a9afdc1a775ab044cb31ef3bd8b182d80", "fields": {"nom_de_la_commune": "CHAUMONT", "libell_d_acheminement": "CHAUMONT", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52121"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89257c1aaea513240148d121bbedf386195663a4", "fields": {"code_postal": "52000", "code_commune_insee": "52121", "libell_d_acheminement": "CHAUMONT", "ligne_5": "BROTTES", "nom_de_la_commune": "CHAUMONT", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c7bc498379928f01d100c90f69df368a2eba80", "fields": {"nom_de_la_commune": "CHAUMONT LA VILLE", "libell_d_acheminement": "CHAUMONT LA VILLE", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52122"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e323aab8b2a67c02edd0bcd79663b932766e1384", "fields": {"nom_de_la_commune": "CHEZEAUX", "libell_d_acheminement": "CHEZEAUX", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52124"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa642ce9d246808c525f1b88b37fa3ab2be2dc58", "fields": {"code_postal": "52190", "code_commune_insee": "52126", "libell_d_acheminement": "CHOILLEY DARDENAY", "ligne_5": "DARDENAY", "nom_de_la_commune": "CHOILLEY DARDENAY", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d0812fa239cd6b8e746212009bff6b713dfebe", "fields": {"nom_de_la_commune": "CIRFONTAINES EN AZOIS", "libell_d_acheminement": "CIRFONTAINES EN AZOIS", "code_postal": "52370", "coordonnees_gps": [48.1346812321, 4.86216753048], "code_commune_insee": "52130"}, "geometry": {"type": "Point", "coordinates": [4.86216753048, 48.1346812321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d50c635f75bf14f24cefc620b44029495590063", "fields": {"nom_de_la_commune": "CLEFMONT", "libell_d_acheminement": "CLEFMONT", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52132"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "381efd4e4508768209a1d396716fe6704c346c2d", "fields": {"nom_de_la_commune": "COIFFY LE HAUT", "libell_d_acheminement": "COIFFY LE HAUT", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52136"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a52723623ddf575bf5edba6f3f11c83a449cff8", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "HARRICOURT", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19ac4bc3db0f19395d99b9cf2a9611005444039", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "PRATZ", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4510eef240e3befcd6b272dcf01b70400abf8e", "fields": {"nom_de_la_commune": "CONSIGNY", "libell_d_acheminement": "CONSIGNY", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52142"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3e6828ad167ce1553f32eadb2df746f58755b81", "fields": {"nom_de_la_commune": "DARMANNES", "libell_d_acheminement": "DARMANNES", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52167"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "733c81fa136ea82a3e65626b928805fedec2ba5b", "fields": {"nom_de_la_commune": "DOMMARIEN", "libell_d_acheminement": "DOMMARIEN", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52170"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6729c1960d1351d1a3329115323c558c930fa2ab", "fields": {"nom_de_la_commune": "DOULAINCOURT SAUCOURT", "libell_d_acheminement": "DOULAINCOURT SAUCOURT", "code_postal": "52270", "coordonnees_gps": [48.329589946, 5.25765158251], "code_commune_insee": "52177"}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "322317c4c5f62c558a9e6c102f21d9df99688e8d", "fields": {"code_postal": "52270", "code_commune_insee": "52177", "libell_d_acheminement": "DOULAINCOURT SAUCOURT", "ligne_5": "SAUCOURT SUR ROGNON", "nom_de_la_commune": "DOULAINCOURT SAUCOURT", "coordonnees_gps": [48.329589946, 5.25765158251]}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33381ad57f9ca3506ae974fe6d3d42d398a15801", "fields": {"code_postal": "52290", "code_commune_insee": "52182", "libell_d_acheminement": "ECLARON BRAUCOURT STE LIVIERE", "ligne_5": "STE LIVIERE", "nom_de_la_commune": "ECLARON BRAUCOURT STE LIVIERE", "coordonnees_gps": [48.5761520145, 4.85527369999]}, "geometry": {"type": "Point", "coordinates": [4.85527369999, 48.5761520145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba69db03370b600c231399963f155afba44138eb", "fields": {"nom_de_la_commune": "ENFONVELLE", "libell_d_acheminement": "ENFONVELLE", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52185"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3b49465050684b947a0858b0358334d07523a3", "fields": {"code_postal": "52270", "code_commune_insee": "52187", "libell_d_acheminement": "EPIZON", "ligne_5": "PAUTAINES", "nom_de_la_commune": "EPIZON", "coordonnees_gps": [48.329589946, 5.25765158251]}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cbc9cd99f28bcf1a975a3028b0a374b1b5886dd", "fields": {"nom_de_la_commune": "LE VAL D ESNOMS", "libell_d_acheminement": "LE VAL D ESNOMS", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52189"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fa02969b9d16d22e86bd683a7eca8050d0ebc00", "fields": {"nom_de_la_commune": "EUFFIGNEIX", "libell_d_acheminement": "EUFFIGNEIX", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52193"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c8fe7b4f1a81dd9ddec71601d527a9d9c4afc5", "fields": {"nom_de_la_commune": "FARINCOURT", "libell_d_acheminement": "FARINCOURT", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52195"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20bccd2d05f895a3d11513638049b8fa983d5bc7", "fields": {"code_postal": "52500", "code_commune_insee": "52197", "libell_d_acheminement": "FAYL BILLOT", "ligne_5": "CHARMOY", "nom_de_la_commune": "FAYL BILLOT", "coordonnees_gps": [47.7590950974, 5.58361312095]}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3568a60fb3dbb1cd7070da9a0201544f38844c2c", "fields": {"nom_de_la_commune": "FAYS", "libell_d_acheminement": "FAYS", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52198"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007d03cc43e3ed86734b2ba69df1da8ead914720", "fields": {"nom_de_la_commune": "FLAGEY", "libell_d_acheminement": "FLAGEY", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52200"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f5ee4905a5e9b80ad01d91c986c2fee44409284", "fields": {"nom_de_la_commune": "FOULAIN", "libell_d_acheminement": "FOULAIN", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52205"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c89b40abd16afd401c40bd2c893d1851e5839a", "fields": {"code_postal": "52320", "code_commune_insee": "52211", "libell_d_acheminement": "FRONCLES", "ligne_5": "BUXIERES LES FRONCLES", "nom_de_la_commune": "FRONCLES", "coordonnees_gps": [48.287832359, 5.09541662675]}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f65d64b2351b7534014040d17f1dc28a3a367cd7", "fields": {"nom_de_la_commune": "GERMAINES", "libell_d_acheminement": "GERMAINES", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52216"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d10b82eedec643a39de5302a49dc37c1b7627be", "fields": {"nom_de_la_commune": "GERMAY", "libell_d_acheminement": "GERMAY", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52218"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a269a0178dac74aceddd469e9239efc705fbd9", "fields": {"nom_de_la_commune": "GIEY SUR AUJON", "libell_d_acheminement": "GIEY SUR AUJON", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52220"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd682a265f5ff557c34b0e9978e183029f166ca7", "fields": {"code_postal": "52320", "code_commune_insee": "52230", "libell_d_acheminement": "GUDMONT VILLIERS", "ligne_5": "VILLIERS SUR MARNE", "nom_de_la_commune": "GUDMONT VILLIERS", "coordonnees_gps": [48.287832359, 5.09541662675]}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6525c37729ea7b5d028bc2b626fa46ad362c146", "fields": {"nom_de_la_commune": "HUILLIECOURT", "libell_d_acheminement": "HUILLIECOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52243"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e10a7abd1e3c198cbd6532f3d5ff091a8a9d0b1", "fields": {"nom_de_la_commune": "IS EN BASSIGNY", "libell_d_acheminement": "IS EN BASSIGNY", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52248"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1384a781261159f1d1acd06858fa3adac1039ed", "fields": {"nom_de_la_commune": "JONCHERY", "libell_d_acheminement": "JONCHERY", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52251"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a07782b5767090d13e2aeb9b49c397a434867660", "fields": {"code_postal": "52000", "code_commune_insee": "52251", "libell_d_acheminement": "JONCHERY", "ligne_5": "SARCICOURT", "nom_de_la_commune": "JONCHERY", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0f90e467a1b2d7488eaf0a27fa3f925a955dc8f", "fields": {"nom_de_la_commune": "LAFERTE SUR AMANCE", "libell_d_acheminement": "LAFERTE SUR AMANCE", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52257"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f7ec79e07894b31bb1fe33079dd904f8e68f05", "fields": {"nom_de_la_commune": "LAMOTHE EN BLAISY", "libell_d_acheminement": "LAMOTHE EN BLAISY", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52262"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3709a3673015d948d705cdf0c8d426eeeb1aa28", "fields": {"code_postal": "52170", "code_commune_insee": "52265", "libell_d_acheminement": "BAYARD SUR MARNE", "ligne_5": "PREZ SUR MARNE", "nom_de_la_commune": "BAYARD SUR MARNE", "coordonnees_gps": [48.5434791123, 5.11650934546]}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a26f1f5f1842e77b55faf5a2a300f0dd36a1ec", "fields": {"nom_de_la_commune": "LANGRES", "libell_d_acheminement": "LANGRES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52269"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36b52e8e8c782aac7ae7a8e97b451286e03bf792", "fields": {"code_postal": "52200", "code_commune_insee": "52269", "libell_d_acheminement": "LANGRES", "ligne_5": "CORLEE", "nom_de_la_commune": "LANGRES", "coordonnees_gps": [47.8591837688, 5.27130634818]}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5447c56f82073a4a5346e3048ac69744cddabaf7", "fields": {"nom_de_la_commune": "LEVECOURT", "libell_d_acheminement": "LEVECOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52287"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb320dbdcd939f2155475c6d005625cedb003eb6", "fields": {"nom_de_la_commune": "LEZEVILLE", "libell_d_acheminement": "LEZEVILLE", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52288"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a27e3d50b1e6a85fef4613811e71a2d1727aa78", "fields": {"code_postal": "52230", "code_commune_insee": "52288", "libell_d_acheminement": "LEZEVILLE", "ligne_5": "HARMEVILLE", "nom_de_la_commune": "LEZEVILLE", "coordonnees_gps": [48.4233848371, 5.31749003055]}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cb8c24c413ba053a4745e216b2bba7fb780ef0e", "fields": {"nom_de_la_commune": "MAATZ", "libell_d_acheminement": "MAATZ", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52298"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ad36d2e32c29d022b491359c9238cd31057c30", "fields": {"nom_de_la_commune": "MAIZIERES", "libell_d_acheminement": "MAIZIERES", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52302"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0028b97974d2e76639c481c83304e156665e718d", "fields": {"nom_de_la_commune": "MARDOR", "libell_d_acheminement": "MARDOR", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52312"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643b813186e975bfadc5bb08b66b596df7863927", "fields": {"nom_de_la_commune": "MENNOUVEAUX", "libell_d_acheminement": "MENNOUVEAUX", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52319"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e979c6672860bc7aaf2b80b8253846dd8aa4e368", "fields": {"nom_de_la_commune": "MONTCHARVOT", "libell_d_acheminement": "MONTCHARVOT", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52328"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33af54256b1c46704a2266d7e061e23d2172654f", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "LECOURT", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7267dd688affdf709adccccef75eec03f1743ff", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "MONTIGNY LE ROI", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4263f22ff7955201956e0c596d11d6a3c9ab7553", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "RAVENNEFONTAINES", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2af5a290da3d70d8d3532cd34c0d2e54636a2ac", "fields": {"nom_de_la_commune": "MONTREUIL SUR BLAISE", "libell_d_acheminement": "MONTREUIL SUR BLAISE", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52336"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db49fbe41a0ffc7cd1d5f3df162abb796aaf626", "fields": {"nom_de_la_commune": "MORIONVILLIERS", "libell_d_acheminement": "MORIONVILLIERS", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52342"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb242b2bd450974e9504c7918066c21cc06988d5", "fields": {"nom_de_la_commune": "NOIDANT CHATENOY", "libell_d_acheminement": "NOIDANT CHATENOY", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52354"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00039072797e970e67eff03ffe88ee23100d64eb", "fields": {"nom_de_la_commune": "FRESSE", "libell_d_acheminement": "FRESSE", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70256"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d86f2c467963e1ed4906fc06e3eeb08a204353e5", "fields": {"nom_de_la_commune": "FROIDECONCHE", "libell_d_acheminement": "FROIDECONCHE", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70258"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c09df1a74f266fa1dcc9c2e6341b0b9c3bd9f20e", "fields": {"nom_de_la_commune": "FROIDETERRE", "libell_d_acheminement": "FROIDETERRE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70259"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "062ee2a61d14806cb54f7d27a8760fc55e1bb876", "fields": {"nom_de_la_commune": "GEORFANS", "libell_d_acheminement": "GEORFANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70264"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a4892a8fc55d98c70164418b092ea85a3c63c24", "fields": {"nom_de_la_commune": "GIREFONTAINE", "libell_d_acheminement": "GIREFONTAINE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70269"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c368c0f7a01b878e0d78dbfeaed3d78c313a3e4", "fields": {"nom_de_la_commune": "GRAMMONT", "libell_d_acheminement": "GRAMMONT", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70273"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72db1040bb1eb37e42ab1c7fa2f476772eb2a0b6", "fields": {"nom_de_la_commune": "GRANDVELLE ET LE PERRENOT", "libell_d_acheminement": "GRANDVELLE ET LE PERRENOT", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70275"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502d344bf1e4316bc030bc9747a09998b1dd03c6", "fields": {"nom_de_la_commune": "GRANGES LA VILLE", "libell_d_acheminement": "GRANGES LA VILLE", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70276"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe2b8c934990da6b8603d89106c8e9ecfee6e69", "fields": {"nom_de_la_commune": "LA LANTERNE ET LES ARMONTS", "libell_d_acheminement": "LA LANTERNE ET LES ARMONTS", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70295"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a127db993e32c21a017288201d99881252069c2", "fields": {"nom_de_la_commune": "LUXEUIL LES BAINS", "libell_d_acheminement": "LUXEUIL LES BAINS", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70311"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "339741632da85e8d1148cd7ca57b5c534e2ce3c4", "fields": {"nom_de_la_commune": "LYOFFANS", "libell_d_acheminement": "LYOFFANS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70313"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e480cf03987621ff91e2a26a92e4e42ed53615b", "fields": {"nom_de_la_commune": "MAGNIVRAY", "libell_d_acheminement": "MAGNIVRAY", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70314"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65b280003daaf4dba69af0816bbe2860d5634979", "fields": {"nom_de_la_commune": "LE MAGNORAY", "libell_d_acheminement": "LE MAGNORAY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70316"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "629431934884ccbbb856fe85d91097e11ad1b19e", "fields": {"nom_de_la_commune": "MALBOUHANS", "libell_d_acheminement": "MALBOUHANS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70328"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef4728e4b5552c4848b40779789a7a49b08df0ef", "fields": {"nom_de_la_commune": "MANDREVILLARS", "libell_d_acheminement": "MANDREVILLARS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70330"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0478605946ca45609fbd70990d0d053c49e8fe", "fields": {"nom_de_la_commune": "MELIN", "libell_d_acheminement": "MELIN", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70337"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89e03582a96f8b2e0fcbee050e0e287d7170b80d", "fields": {"nom_de_la_commune": "MELINCOURT", "libell_d_acheminement": "MELINCOURT", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70338"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4c2e12d9e0908880f9501c210ef340daab6239", "fields": {"nom_de_la_commune": "MOLAY", "libell_d_acheminement": "MOLAY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70350"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b64257d68e1738ad50eb3dbac7f3678959a93f", "fields": {"nom_de_la_commune": "MOLLANS", "libell_d_acheminement": "MOLLANS", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70351"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa5b41cd894cef182a737e18ebe7d37d37e01323", "fields": {"nom_de_la_commune": "MONTAGNEY", "libell_d_acheminement": "MONTAGNEY", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70353"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6597dd248572a7631bf2d080dbcfa8eb46efa8", "fields": {"nom_de_la_commune": "MONTUREUX ET PRANTIGNY", "libell_d_acheminement": "MONTUREUX ET PRANTIGNY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70371"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8fb5d08a50f61b604699d4988d324083ee5c368", "fields": {"nom_de_la_commune": "NAVENNE", "libell_d_acheminement": "NAVENNE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70378"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b564e67c94c63297920a2ebcc4abc43f5b7f408", "fields": {"nom_de_la_commune": "LA NEUVELLE LES LURE", "libell_d_acheminement": "LA NEUVELLE LES LURE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70385"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8141af1a53bbac4e048ee3e5252893c84110dc79", "fields": {"nom_de_la_commune": "ONAY", "libell_d_acheminement": "ONAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70394"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fdd293132c8f926dc90952c7665c159d5e98327", "fields": {"nom_de_la_commune": "OYRIERES", "libell_d_acheminement": "OYRIERES", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70402"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f13a0f94b41af09a31cc6b6a6976f277d2d6d7b", "fields": {"nom_de_la_commune": "PASSAVANT LA ROCHERE", "libell_d_acheminement": "PASSAVANT LA ROCHERE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70404"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec4c0a01149dd1648f80b7c7f2b09c3a6f5afa4", "fields": {"nom_de_la_commune": "PIERRECOURT", "libell_d_acheminement": "PIERRECOURT", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70409"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e3769b856cd2deea64b4c0249d65d189d97513b", "fields": {"nom_de_la_commune": "LA PISSEURE", "libell_d_acheminement": "LA PISSEURE", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70411"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69d45289f6160a773287fc65199931a3212235e6", "fields": {"nom_de_la_commune": "PLANCHER LES MINES", "libell_d_acheminement": "PLANCHER LES MINES", "code_postal": "70290", "coordonnees_gps": [47.7309841125, 6.72677134274], "code_commune_insee": "70414"}, "geometry": {"type": "Point", "coordinates": [6.72677134274, 47.7309841125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61973dd44e70c4915809670725303c7fc7f19bf0", "fields": {"nom_de_la_commune": "POLAINCOURT ET CLAIREFONTAINE", "libell_d_acheminement": "POLAINCOURT ET CLAIREFONTAINE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70415"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90e2b841157d9c90d4a9815b76a9f891e2764a06", "fields": {"nom_de_la_commune": "POMOY", "libell_d_acheminement": "POMOY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70416"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0d44e339eead8a065723962bfd4379c02147de", "fields": {"code_postal": "70130", "code_commune_insee": "70418", "libell_d_acheminement": "LA ROMAINE", "ligne_5": "GREUCOURT", "nom_de_la_commune": "LA ROMAINE", "coordonnees_gps": [47.5459896831, 5.86128799053]}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86acc85b5682df1434c9afdaf678f8a2ae2b8015", "fields": {"code_postal": "70130", "code_commune_insee": "70418", "libell_d_acheminement": "LA ROMAINE", "ligne_5": "VEZET", "nom_de_la_commune": "LA ROMAINE", "coordonnees_gps": [47.5459896831, 5.86128799053]}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f020988d7c514fc78689ff77d779f0a0d619fb3", "fields": {"nom_de_la_commune": "RADDON ET CHAPENDU", "libell_d_acheminement": "RADDON ET CHAPENDU", "code_postal": "70280", "coordonnees_gps": [47.8584720576, 6.48683952427], "code_commune_insee": "70435"}, "geometry": {"type": "Point", "coordinates": [6.48683952427, 47.8584720576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c5d032060e5d4c96fc5c40543ecf4c3566eae42", "fields": {"nom_de_la_commune": "RAINCOURT", "libell_d_acheminement": "RAINCOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70436"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87a38ad1f7dc01c738ff9cdf694365914707e928", "fields": {"nom_de_la_commune": "LA ROCHELLE", "libell_d_acheminement": "LA ROCHELLE", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70450"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3645f9dd2f40249d1a3c64159e3ca09b0576e1a", "fields": {"nom_de_la_commune": "ST FERJEUX", "libell_d_acheminement": "ST FERJEUX", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70462"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b26180ea2a9c07ec3e467a74f610bf1e6fe4b03", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70472"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22cb93805328d4b81a911ff31b20c4bcaaf0519b", "fields": {"nom_de_la_commune": "SAULNOT", "libell_d_acheminement": "SAULNOT", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70477"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f74ef0d64db3916aa636364243f40e57bf42aed", "fields": {"code_postal": "70400", "code_commune_insee": "70477", "libell_d_acheminement": "SAULNOT", "ligne_5": "CORCELLES", "nom_de_la_commune": "SAULNOT", "coordonnees_gps": [47.6008561434, 6.6927201573]}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f2c657ff29098b3e6625eb1717c82d8ac003579", "fields": {"nom_de_la_commune": "TARTECOURT", "libell_d_acheminement": "TARTECOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70496"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ef3569cea615585f6f6541b3062eed071136c2d", "fields": {"nom_de_la_commune": "TERNUAY MELAY ET ST HILAIRE", "libell_d_acheminement": "TERNUAY MELAY ET ST HILAIRE", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70498"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08520e3fb3c13b9d373ee14a145d0b316100442a", "fields": {"nom_de_la_commune": "TINCEY ET PONTREBEAU", "libell_d_acheminement": "TINCEY ET PONTREBEAU", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70502"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73e6c1e59c8540791bd4e4e23fbcb716c487fff", "fields": {"nom_de_la_commune": "VAIVRE ET MONTOILLE", "libell_d_acheminement": "VAIVRE ET MONTOILLE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70513"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6def6a0a3361a7411170e3f660cd95f353f6ad8d", "fields": {"nom_de_la_commune": "LE VAL ST ELOI", "libell_d_acheminement": "LE VAL ST ELOI", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70518"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4481a9706f3620e62999b901ab90478d851f42aa", "fields": {"nom_de_la_commune": "VAUCHOUX", "libell_d_acheminement": "VAUCHOUX", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70524"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fa0a9b0217fba50caa1026eb8671053a30f0822", "fields": {"nom_de_la_commune": "VELESMES ECHEVANNE", "libell_d_acheminement": "VELESMES ECHEVANNE", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70528"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44fb729208b4990f4f6ad5c18ac8e9112fc77440", "fields": {"nom_de_la_commune": "VELLECLAIRE", "libell_d_acheminement": "VELLECLAIRE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70531"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "671795f08ef784c25de283bd0578672edf820b94", "fields": {"nom_de_la_commune": "VELLEFREY ET VELLEFRANGE", "libell_d_acheminement": "VELLEFREY ET VELLEFRANGE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70533"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19634b61fb98e21e18ddbf8610f0bbb8b690e9d9", "fields": {"nom_de_la_commune": "VENISEY", "libell_d_acheminement": "VENISEY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70545"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46532258dfb8d85bc46f9aff0d25bcec2d4aead1", "fields": {"nom_de_la_commune": "VEREUX", "libell_d_acheminement": "VEREUX", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70546"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91db820df6053531cbc0b91c7a29d70025f86efc", "fields": {"nom_de_la_commune": "VERLANS", "libell_d_acheminement": "VERLANS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70547"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8a35d7fef71038d6be5fcd14304fb7d069c27e", "fields": {"nom_de_la_commune": "VILLERS PATER", "libell_d_acheminement": "VILLERS PATER", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70565"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a70c0299ed0b4fd7ddd75c393da3c3675279924", "fields": {"nom_de_la_commune": "VILLERS SUR SAULNOT", "libell_d_acheminement": "VILLERS SUR SAULNOT", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70567"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ed98ac2732b461602b103cb0791523a4d37f2f", "fields": {"nom_de_la_commune": "VISONCOURT", "libell_d_acheminement": "VISONCOURT", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70571"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4da093bb92ef6b07ac0118e4a8e83a76bcf9476", "fields": {"nom_de_la_commune": "VOUHENANS", "libell_d_acheminement": "VOUHENANS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70577"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987009e43c3771ccf3c995d0c02c19ed1dcb1b7d", "fields": {"nom_de_la_commune": "VREGILLE", "libell_d_acheminement": "VREGILLE", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70578"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0283ccd7967af005a1b90895733480721cba5e05", "fields": {"nom_de_la_commune": "L ABERGEMENT STE COLOMBE", "libell_d_acheminement": "L ABERGEMENT STE COLOMBE", "code_postal": "71370", "coordonnees_gps": [46.7126638071, 5.00193850124], "code_commune_insee": "71002"}, "geometry": {"type": "Point", "coordinates": [5.00193850124, 46.7126638071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d4835c96e2d9811022b7ebe7e46f208603f8efa", "fields": {"nom_de_la_commune": "AUTHUMES", "libell_d_acheminement": "AUTHUMES", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71013"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec85a8baf1c95991f23d5a25e231bf38a4bf7621", "fields": {"code_postal": "71400", "code_commune_insee": "71014", "libell_d_acheminement": "AUTUN", "ligne_5": "ST PANTALEON", "nom_de_la_commune": "AUTUN", "coordonnees_gps": [46.9658637429, 4.31686540744]}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0923c35393c9204ea8184ce6286924c3694a551", "fields": {"nom_de_la_commune": "AUXY", "libell_d_acheminement": "AUXY", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71015"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c36451db9236930a60bbaf03d7439ad0c9b5312", "fields": {"nom_de_la_commune": "AZE", "libell_d_acheminement": "AZE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71016"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c543f5d133e103b563f97d9d1f1859a7b59da9bd", "fields": {"nom_de_la_commune": "BALLORE", "libell_d_acheminement": "BALLORE", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71017"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f562bda0745a8eaf0c7a78698718ee965537315", "fields": {"nom_de_la_commune": "BAUGY", "libell_d_acheminement": "BAUGY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71024"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7679ab824833eeaf6ceed459a6d2444dbbc8e6", "fields": {"nom_de_la_commune": "BERZE LE CHATEL", "libell_d_acheminement": "BERZE LE CHATEL", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71031"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dacf4d2d317206067d84eb27fc826a93b5955ab", "fields": {"nom_de_la_commune": "BISSY LA MACONNAISE", "libell_d_acheminement": "BISSY LA MACONNAISE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71035"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01f6dd0043298a5dca43483bd08ede41d0ccd654", "fields": {"nom_de_la_commune": "BISSY SOUS UXELLES", "libell_d_acheminement": "BISSY SOUS UXELLES", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71036"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd9ae9b05df1ddf0e529d92e95c8350e9e651c9", "fields": {"nom_de_la_commune": "BLANOT", "libell_d_acheminement": "BLANOT", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71039"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e552919828f6b941085f260f4c38326782360c30", "fields": {"nom_de_la_commune": "BOSJEAN", "libell_d_acheminement": "BOSJEAN", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71044"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70a17967340f2ecfa2cf77835bd0b83346c87d8e", "fields": {"nom_de_la_commune": "BOURGVILAIN", "libell_d_acheminement": "BOURGVILAIN", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71050"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04a2390d166b0f35b7e42362a6b1a8456d7ca62", "fields": {"nom_de_la_commune": "BRANDON", "libell_d_acheminement": "BRANDON", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71055"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c29f1cacffffc51355238e37ff13e63bcdb5584", "fields": {"nom_de_la_commune": "BRANGES", "libell_d_acheminement": "BRANGES", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71056"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3550ee1f40ccf9891272b9e5d2d4e79ab0d1be0f", "fields": {"nom_de_la_commune": "BRAY", "libell_d_acheminement": "BRAY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71057"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac71478b1106eceeb0ff4eb5a3769c02e755d085", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71062"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e51984d0886dd804c59c79fb0e812251352485", "fields": {"nom_de_la_commune": "BRUAILLES", "libell_d_acheminement": "BRUAILLES", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71064"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43731133f02efb192f4e3a8dcf39bbc7d539fa3", "fields": {"nom_de_la_commune": "BUFFIERES", "libell_d_acheminement": "BUFFIERES", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71065"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b4d5263ddc98938d890e37279c400913e8c4df", "fields": {"nom_de_la_commune": "BURGY", "libell_d_acheminement": "BURGY", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71066"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c65fbe16ece39cc4ba8d33888c87b94528be78", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71069"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0bd85acf2f569e206876651c50ab26b14cfe3d5", "fields": {"nom_de_la_commune": "CHAMILLY", "libell_d_acheminement": "CHAMILLY", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71078"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37767cdd18ecaf2d9a99f2a754b0b535aa5520ca", "fields": {"nom_de_la_commune": "CHAMPAGNAT", "libell_d_acheminement": "CHAMPAGNAT", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71079"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba01f9ba01cef8fc2b3cee370781514d88fe2a7c", "fields": {"nom_de_la_commune": "CHAMPLECY", "libell_d_acheminement": "CHAMPLECY", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71082"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f49d17d6a361011dc8b7dd7bbb504ba0ff9d5d9a", "fields": {"nom_de_la_commune": "CHANGE", "libell_d_acheminement": "CHANGE", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "71085"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bae172b4edcd35637b52349cabd4dc74137d8baa", "fields": {"nom_de_la_commune": "CHANGY", "libell_d_acheminement": "CHANGY", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71086"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0f834af18d55291943f11fe0548284c1c07156", "fields": {"nom_de_la_commune": "CHAPAIZE", "libell_d_acheminement": "CHAPAIZE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71087"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdfe62f12c3a7a796985895703fa6d2af2a4681a", "fields": {"nom_de_la_commune": "LA CHAPELLE SOUS DUN", "libell_d_acheminement": "LA CHAPELLE SOUS DUN", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71095"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ed9de98d89a48801302b04df53b7b033c7424e", "fields": {"nom_de_la_commune": "CHARBONNIERES", "libell_d_acheminement": "CHARBONNIERES", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71099"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "680e646d51bb8187711f6d1f63945c4c888affb9", "fields": {"nom_de_la_commune": "CHARMOY", "libell_d_acheminement": "CHARMOY", "code_postal": "71710", "coordonnees_gps": [46.7997202983, 4.34541340932], "code_commune_insee": "71103"}, "geometry": {"type": "Point", "coordinates": [4.34541340932, 46.7997202983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd89a84f091a36714384e31094106892d99f53e9", "fields": {"nom_de_la_commune": "CHATENOY EN BRESSE", "libell_d_acheminement": "CHATENOY EN BRESSE", "code_postal": "71380", "coordonnees_gps": [46.7753179262, 4.92186560965], "code_commune_insee": "71117"}, "geometry": {"type": "Point", "coordinates": [4.92186560965, 46.7753179262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d758c152df63589eefa8e22245adf567a480ff96", "fields": {"nom_de_la_commune": "CHAUFFAILLES", "libell_d_acheminement": "CHAUFFAILLES", "code_postal": "71170", "coordonnees_gps": [46.2126023592, 4.32086009768], "code_commune_insee": "71120"}, "geometry": {"type": "Point", "coordinates": [4.32086009768, 46.2126023592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9a92234e61e9f18e70449ff4ffe6c35457f63fe", "fields": {"nom_de_la_commune": "LA CHAUX", "libell_d_acheminement": "LA CHAUX", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71121"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b32510503073359bad9ec72bb311c86a81f83a8", "fields": {"nom_de_la_commune": "CHERIZET", "libell_d_acheminement": "CHERIZET", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71125"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb533fa40769228fd08916fc4036dbe7d20c5c70", "fields": {"nom_de_la_commune": "CIRY LE NOBLE", "libell_d_acheminement": "CIRY LE NOBLE", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71132"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beb4f809ee9c1fafe5728d12bb4a6dd712e37f03", "fields": {"nom_de_la_commune": "COUCHES", "libell_d_acheminement": "COUCHES", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71149"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af149bcd4d25fe0cd5964cef79d087dd73129e0", "fields": {"nom_de_la_commune": "CREOT", "libell_d_acheminement": "CREOT", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71151"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95248ebee874750fc8d6fb194358e2d17465bad7", "fields": {"nom_de_la_commune": "CURBIGNY", "libell_d_acheminement": "CURBIGNY", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71160"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb948edd8a9dd7bda3f42f6b0d3526d29c184a80", "fields": {"nom_de_la_commune": "CURGY", "libell_d_acheminement": "CURGY", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71162"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb7628e6951e23613d7cf24aec2248a48e9a62a", "fields": {"nom_de_la_commune": "CURTIL SOUS BUFFIERES", "libell_d_acheminement": "CURTIL SOUS BUFFIERES", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71163"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c6d034f2129c727f3d9f10b7ce9369354bc57bc", "fields": {"nom_de_la_commune": "DICONNE", "libell_d_acheminement": "DICONNE", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71175"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73da49a835685f32c40fc6dcc38d2989f418300c", "fields": {"code_postal": "71160", "code_commune_insee": "71176", "libell_d_acheminement": "DIGOIN", "ligne_5": "VIGNY LES PARAY", "nom_de_la_commune": "DIGOIN", "coordonnees_gps": [46.5259433972, 3.94371544939]}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c538841101e669dc7553036c6c55ebea6d08d6d6", "fields": {"nom_de_la_commune": "DOMMARTIN LES CUISEAUX", "libell_d_acheminement": "DOMMARTIN LES CUISEAUX", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71177"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "def91b11c480162c8c784bb858e9b01ea503d75c", "fields": {"nom_de_la_commune": "SELLES", "libell_d_acheminement": "SELLES", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27620"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccc9e115460c37f04b3a06951e711925ffe8c384", "fields": {"nom_de_la_commune": "THEILLEMENT", "libell_d_acheminement": "THEILLEMENT", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27626"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82d23ac21e42f009f1c4832d2da32a6521d3e0f", "fields": {"nom_de_la_commune": "TOURVILLE LA CAMPAGNE", "libell_d_acheminement": "TOURVILLE LA CAMPAGNE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27654"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61f75ba848859c8c70cb861ee9d7984dc41905f6", "fields": {"nom_de_la_commune": "TRIQUEVILLE", "libell_d_acheminement": "TRIQUEVILLE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27662"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49d828e35a5c189e45327da71989cdb2c944f03", "fields": {"nom_de_la_commune": "VALAILLES", "libell_d_acheminement": "VALAILLES", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27667"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07562d320872ebad3c1ee25339218ba1e1cf857e", "fields": {"nom_de_la_commune": "VALLETOT", "libell_d_acheminement": "VALLETOT", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27669"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703027343b8c96aa3c6e13ba98eeb9a5798c2d6e", "fields": {"nom_de_la_commune": "VANNECROCQ", "libell_d_acheminement": "VANNECROCQ", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27671"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "362988b31559c81ce66119323bf6e7658d0eb55b", "fields": {"nom_de_la_commune": "VASCOEUIL", "libell_d_acheminement": "VASCOEUIL", "code_postal": "27910", "coordonnees_gps": [49.419867111, 1.36959145067], "code_commune_insee": "27672"}, "geometry": {"type": "Point", "coordinates": [1.36959145067, 49.419867111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3690b62a869960506582b57874465072cb3175cb", "fields": {"nom_de_la_commune": "VAUX SUR EURE", "libell_d_acheminement": "VAUX SUR EURE", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27674"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc55656dde7586e93fa1029f3d88db0a47feace", "fields": {"nom_de_la_commune": "VERNON", "libell_d_acheminement": "VERNON", "code_postal": "27200", "coordonnees_gps": [49.0878727116, 1.48448951533], "code_commune_insee": "27681"}, "geometry": {"type": "Point", "coordinates": [1.48448951533, 49.0878727116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d68ab7a501ea1f67715fd87a43e098d8a02529", "fields": {"nom_de_la_commune": "LE VIEIL EVREUX", "libell_d_acheminement": "LE VIEIL EVREUX", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27684"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b3397f9a6eaf630df3f148e541fe68dc21b7088", "fields": {"nom_de_la_commune": "VILLEGATS", "libell_d_acheminement": "VILLEGATS", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27689"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea1bb14bce0188ae8a9d4cc65002ecffccb65cb", "fields": {"code_postal": "27240", "code_commune_insee": "27693", "libell_d_acheminement": "SYLVAINS LES MOULINS", "ligne_5": "VILLALET", "nom_de_la_commune": "SYLVAINS LES MOULINS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6622006a4ad6121e2e3269dbb26a8d9aeb04516d", "fields": {"nom_de_la_commune": "VILLEZ SUR LE NEUBOURG", "libell_d_acheminement": "VILLEZ SUR LE NEUBOURG", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27695"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69004bd68f5aeee3acee1ffbb21a532411ebbcd4", "fields": {"nom_de_la_commune": "VAL DE REUIL", "libell_d_acheminement": "VAL DE REUIL", "code_postal": "27100", "coordonnees_gps": [49.2628287582, 1.2134503663], "code_commune_insee": "27701"}, "geometry": {"type": "Point", "coordinates": [1.2134503663, 49.2628287582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00143b86899bb605e22ac907b32462923d514f44", "fields": {"code_postal": "28310", "code_commune_insee": "28002", "libell_d_acheminement": "ALLAINES MERVILLIERS", "ligne_5": "MERVILLIERS", "nom_de_la_commune": "ALLAINES MERVILLIERS", "coordonnees_gps": [48.2536557069, 1.88422826059]}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcc60a0527c9575172694df285153b8840fc62a7", "fields": {"nom_de_la_commune": "ANET", "libell_d_acheminement": "ANET", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28007"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c8e5418338bcee04fafb4f303e2022dd85ce54e", "fields": {"nom_de_la_commune": "AUNAY SOUS AUNEAU", "libell_d_acheminement": "AUNAY SOUS AUNEAU", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28013"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a1750fb4c3972bd72253008b022aff4282a4825", "fields": {"nom_de_la_commune": "AUTHON DU PERCHE", "libell_d_acheminement": "AUTHON DU PERCHE", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28018"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8766c4c9dbe3eb9adecf362b2d55dca138875f", "fields": {"nom_de_la_commune": "BAIGNEAUX", "libell_d_acheminement": "BAIGNEAUX", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28019"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4471af6745a858be221865f16a7a319dc5c9ffee", "fields": {"nom_de_la_commune": "BAILLEAU L EVEQUE", "libell_d_acheminement": "BAILLEAU L EVEQUE", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28022"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0dbe72ccc14131dcf42d0dd266b0e31c6a1a60e", "fields": {"nom_de_la_commune": "LA BAZOCHE GOUET", "libell_d_acheminement": "LA BAZOCHE GOUET", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28027"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da23f47fb36239762c22be32e0502b13be52fd4a", "fields": {"nom_de_la_commune": "BAZOCHES EN DUNOIS", "libell_d_acheminement": "BAZOCHES EN DUNOIS", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28028"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41d11a5ca320fc1405dd76f6390bc9574bccc64a", "fields": {"nom_de_la_commune": "BEAUVILLIERS", "libell_d_acheminement": "BEAUVILLIERS", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28032"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79af878f13ed1b483f1c4a643b3c2d321e714320", "fields": {"nom_de_la_commune": "BERCHERES ST GERMAIN", "libell_d_acheminement": "BERCHERES ST GERMAIN", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28034"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c25ae71824e128ad45d8f53ab8c7209d18086c", "fields": {"code_postal": "28300", "code_commune_insee": "28034", "libell_d_acheminement": "BERCHERES ST GERMAIN", "ligne_5": "ST GERMAIN LA GATINE", "nom_de_la_commune": "BERCHERES ST GERMAIN", "coordonnees_gps": [48.4964776729, 1.45446147738]}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e5af52e40eaf9f0354d344e304a595c3ebac08", "fields": {"nom_de_la_commune": "BLANDAINVILLE", "libell_d_acheminement": "BLANDAINVILLE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28041"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38b0f732ec5d08fa790a3413079ad87088930ed", "fields": {"nom_de_la_commune": "BOISSY LES PERCHE", "libell_d_acheminement": "BOISSY LES PERCHE", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28046"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aecdf81453a9b920a73277492dede93f61ddb37f", "fields": {"code_postal": "28360", "code_commune_insee": "28048", "libell_d_acheminement": "LA BOURDINIERE ST LOUP", "ligne_5": "ST LOUP", "nom_de_la_commune": "LA BOURDINIERE ST LOUP", "coordonnees_gps": [48.3227374254, 1.50670193351]}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be6704c64ecc5457d44620fb19d1f96761369f0", "fields": {"nom_de_la_commune": "BONCE", "libell_d_acheminement": "BONCE", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28049"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ec107ad1950f5aa6ba4bec56c3830b26b09ae9", "fields": {"nom_de_la_commune": "LE BOULLAY MIVOYE", "libell_d_acheminement": "LE BOULLAY MIVOYE", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28054"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd3f903ced495d77dafce9c4d7497930f105813c", "fields": {"nom_de_la_commune": "BRUNELLES", "libell_d_acheminement": "BRUNELLES", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28063"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4982847753036d71ccffd716ebbe8cde29ca2827", "fields": {"nom_de_la_commune": "BU", "libell_d_acheminement": "BU", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28064"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646214aad40575c32350f15d7334900fb87c2805", "fields": {"nom_de_la_commune": "CHAMPSERU", "libell_d_acheminement": "CHAMPSERU", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28073"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec741cac00163bc084081dd71e05012d4625f14", "fields": {"nom_de_la_commune": "LA CHAPELLE D AUNAINVILLE", "libell_d_acheminement": "LA CHAPELLE D AUNAINVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28074"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f595aee6957de259bac56d82f177c0384eae874e", "fields": {"nom_de_la_commune": "CHATEAUDUN", "libell_d_acheminement": "CHATEAUDUN", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28088"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebd4113f239ed3853a732942808d274ce77e6ab1", "fields": {"nom_de_la_commune": "CHATEAUNEUF EN THYMERAIS", "libell_d_acheminement": "CHATEAUNEUF EN THYMERAIS", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28089"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e8e02eb6d6cb40306492cd0d9b1785cab21c52", "fields": {"nom_de_la_commune": "CHATENAY", "libell_d_acheminement": "CHATENAY", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28092"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb7dd0bc527004d12f56f06fbf7bea53a75957a", "fields": {"nom_de_la_commune": "CHATILLON EN DUNOIS", "libell_d_acheminement": "CHATILLON EN DUNOIS", "code_postal": "28290", "coordonnees_gps": [48.1141718404, 1.11818420399], "code_commune_insee": "28093"}, "geometry": {"type": "Point", "coordinates": [1.11818420399, 48.1141718404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a8e6667218e4033a1dbfa863a83655d9d39c144", "fields": {"nom_de_la_commune": "CHAUDON", "libell_d_acheminement": "CHAUDON", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28094"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5071d921135d3e239bf47457f0b26f3681ad4620", "fields": {"nom_de_la_commune": "LA CHAUSSEE D IVRY", "libell_d_acheminement": "LA CHAUSSEE D IVRY", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28096"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa11b81d476938e0f5d5936402969787b1cb4450", "fields": {"nom_de_la_commune": "LES CORVEES LES YYS", "libell_d_acheminement": "LES CORVEES LES YYS", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28109"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a11bee7179822a96c9959650003d1dbf9076184", "fields": {"nom_de_la_commune": "LE COUDRAY", "libell_d_acheminement": "LE COUDRAY", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28110"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdf58a9923f0eb9181484f950c0537e413fb0eae", "fields": {"nom_de_la_commune": "COUDRAY AU PERCHE", "libell_d_acheminement": "COUDRAY AU PERCHE", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28111"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09aec67bdd3e75742af52de33f35793c8688b923", "fields": {"nom_de_la_commune": "COUDRECEAU", "libell_d_acheminement": "COUDRECEAU", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28112"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6cf933e8760760554eb9811a2fdd85a6c8467a9", "fields": {"nom_de_la_commune": "DAMPIERRE SUR AVRE", "libell_d_acheminement": "DAMPIERRE SUR AVRE", "code_postal": "28350", "coordonnees_gps": [48.7549252293, 1.16177089609], "code_commune_insee": "28124"}, "geometry": {"type": "Point", "coordinates": [1.16177089609, 48.7549252293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc3f67480003febdf4709c342b98b99c0b91829d", "fields": {"nom_de_la_commune": "DANGEAU", "libell_d_acheminement": "DANGEAU", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28127"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a007f8fbb42c22ff4ee66b196b3dfa1ec65df4", "fields": {"nom_de_la_commune": "DANGERS", "libell_d_acheminement": "DANGERS", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28128"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb62d7afaee8d674b344ecaffb01eb5e6a5a57f", "fields": {"nom_de_la_commune": "DOUY", "libell_d_acheminement": "DOUY", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28133"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b14bc44a827ea3effa59848cb18e0ecb7029394", "fields": {"nom_de_la_commune": "ECLUZELLES", "libell_d_acheminement": "ECLUZELLES", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28136"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb80800fdac481bedf297112c7b64613de6867e", "fields": {"nom_de_la_commune": "ERMENONVILLE LA GRANDE", "libell_d_acheminement": "ERMENONVILLE LA GRANDE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28141"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a52e1b941b09d4327c27b9757289c502e8eef1", "fields": {"nom_de_la_commune": "FAVEROLLES", "libell_d_acheminement": "FAVEROLLES", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28146"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a08b091622683259ed38cef342808ee8e5866e9d", "fields": {"nom_de_la_commune": "LA FERTE VILLENEUIL", "libell_d_acheminement": "LA FERTE VILLENEUIL", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28150"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1e7a731a5db48a71c0d242518d1e0a50d7b04f", "fields": {"nom_de_la_commune": "FONTENAY SUR CONIE", "libell_d_acheminement": "FONTENAY SUR CONIE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28157"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2f24ada981247e1a22af47939424c86ac55034", "fields": {"nom_de_la_commune": "FRAZE", "libell_d_acheminement": "FRAZE", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28161"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d8d7bdc65af8fa8dbd2a685389d75450924153a", "fields": {"nom_de_la_commune": "FRESNAY LE GILMERT", "libell_d_acheminement": "FRESNAY LE GILMERT", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28163"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a91c68db0482ba30f7a55358360316fad58e587", "fields": {"nom_de_la_commune": "FRESNAY L EVEQUE", "libell_d_acheminement": "FRESNAY L EVEQUE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28164"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "575de1b6873a7ae1181f63fcf1b80b89b9a8ffb6", "fields": {"nom_de_la_commune": "GASVILLE OISEME", "libell_d_acheminement": "GASVILLE OISEME", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28173"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75dce4649a3bea70e362494eae7684b3fa91b1a6", "fields": {"nom_de_la_commune": "GILLES", "libell_d_acheminement": "GILLES", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28180"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9acca600472084206b780623ca45d9c73804dc2", "fields": {"code_postal": "28700", "code_commune_insee": "28183", "libell_d_acheminement": "GOMMERVILLE", "ligne_5": "ORLU", "nom_de_la_commune": "GOMMERVILLE", "coordonnees_gps": [48.4174133692, 1.78775113893]}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a21a85de8f249ce9156c390bca8f8a14f79f0244", "fields": {"code_postal": "28410", "code_commune_insee": "28185", "libell_d_acheminement": "GOUSSAINVILLE", "ligne_5": "CHAMPAGNE", "nom_de_la_commune": "GOUSSAINVILLE", "coordonnees_gps": [48.777838041, 1.50962562015]}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0898a0c5dc89dc05492891a8a2b126472720ae78", "fields": {"nom_de_la_commune": "LE GUE DE LONGROI", "libell_d_acheminement": "LE GUE DE LONGROI", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28188"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6c24a9a313d5268cf78098f1ae9cbb8676c794", "fields": {"nom_de_la_commune": "HAVELU", "libell_d_acheminement": "HAVELU", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28193"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "449f9e7614ee5d94507db33bfd863dffc4c4d327", "fields": {"nom_de_la_commune": "HOUVILLE LA BRANCHE", "libell_d_acheminement": "HOUVILLE LA BRANCHE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28194"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25f38bc012f362fc80273ae866d56f29927d6585", "fields": {"nom_de_la_commune": "INTREVILLE", "libell_d_acheminement": "INTREVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28197"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5000511a60f9b2fc9ec4b18e090910c0f2239770", "fields": {"nom_de_la_commune": "LANNERAY", "libell_d_acheminement": "LANNERAY", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28205"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84707bdc64d37c94cc422764550a427e3c9b18f6", "fields": {"nom_de_la_commune": "LAONS", "libell_d_acheminement": "LAONS", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28206"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9057f678cc6a171316bf4ef53125d2595fba343e", "fields": {"nom_de_la_commune": "LEVES", "libell_d_acheminement": "LEVES", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28209"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b089568b6642c91d4c872344b9b32a1be84b9b03", "fields": {"nom_de_la_commune": "LOUVILLIERS LES PERCHE", "libell_d_acheminement": "LOUVILLIERS LES PERCHE", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28217"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d250dbf16acb2a75da588ba32fcad4b2c0f00e", "fields": {"nom_de_la_commune": "MARBOUE", "libell_d_acheminement": "MARBOUE", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28233"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c070e6cd3ba40ffc62fc56313e205c556f2c20d", "fields": {"nom_de_la_commune": "MARCHEZAIS", "libell_d_acheminement": "MARCHEZAIS", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28235"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3258fa8e3a11bea773055b3f5dbbcd8e8b9731aa", "fields": {"nom_de_la_commune": "MEAUCE", "libell_d_acheminement": "MEAUCE", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28240"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1849c9d68c41d0356b2a2c17801a29e86a486962", "fields": {"nom_de_la_commune": "MONTHARVILLE", "libell_d_acheminement": "MONTHARVILLE", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28260"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "976fe7154cefa502f504ec278b0d91a0ac046eee", "fields": {"nom_de_la_commune": "NONVILLIERS GRANDHOUX", "libell_d_acheminement": "NONVILLIERS GRANDHOUX", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28282"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55b3d025f3c2b77f5ea1a76b70b342b9d4343fd9", "fields": {"nom_de_la_commune": "OINVILLE SOUS AUNEAU", "libell_d_acheminement": "OINVILLE SOUS AUNEAU", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28285"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b9fd73ee964631703fdeef14500762393563b1b", "fields": {"nom_de_la_commune": "ORGERES EN BEAUCE", "libell_d_acheminement": "ORGERES EN BEAUCE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28287"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe6a5bde993387c40ec8f8da2626ce33ac2f0e3", "fields": {"nom_de_la_commune": "PRUDEMANCHE", "libell_d_acheminement": "PRUDEMANCHE", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28308"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "493e5ea248661ae60dd8e395659725e989f89b53", "fields": {"nom_de_la_commune": "REVERCOURT", "libell_d_acheminement": "REVERCOURT", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28315"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e3a61b3aeabeb9efac0e443259781eea62c605c", "fields": {"nom_de_la_commune": "ST ANGE ET TORCAY", "libell_d_acheminement": "ST ANGE ET TORCAY", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28323"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b74c49ac0cb18f8709488aafe2b21323bcd0792", "fields": {"nom_de_la_commune": "ST BOMER", "libell_d_acheminement": "ST BOMER", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28327"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df3967a9c48d24d0319d1ef936710d97a773212b", "fields": {"nom_de_la_commune": "ST CLOUD EN DUNOIS", "libell_d_acheminement": "ST CLOUD EN DUNOIS", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28330"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b23649531618e4593d9996a06e1fddfaa5474348", "fields": {"nom_de_la_commune": "ST DENIS D AUTHOU", "libell_d_acheminement": "ST DENIS D AUTHOU", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28331"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f58544fbd5b453a16f484caaf23d782abe237bc", "fields": {"nom_de_la_commune": "ST LUBIN DES JONCHERETS", "libell_d_acheminement": "ST LUBIN DES JONCHERETS", "code_postal": "28350", "coordonnees_gps": [48.7549252293, 1.16177089609], "code_commune_insee": "28348"}, "geometry": {"type": "Point", "coordinates": [1.16177089609, 48.7549252293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54e13b5c3debefda2fb8e7b79884f0ffb9772d81", "fields": {"nom_de_la_commune": "SENONCHES", "libell_d_acheminement": "SENONCHES", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28373"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e3c9648c70e0618bdf32186b34ec03811a6b676", "fields": {"nom_de_la_commune": "SOULAIRES", "libell_d_acheminement": "SOULAIRES", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28379"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b25ed51442611bf5bded7aeb74c40bfbefbef139", "fields": {"nom_de_la_commune": "THEUVILLE", "libell_d_acheminement": "THEUVILLE", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28383"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b3fcb920bf13d4f160fe2f0ec7b1027e7b0cf5", "fields": {"nom_de_la_commune": "LE THIEULIN", "libell_d_acheminement": "LE THIEULIN", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28385"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd71bec8d7a7f6abf9712082e4b5cbcf2789a744", "fields": {"nom_de_la_commune": "THIVARS", "libell_d_acheminement": "THIVARS", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28388"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d3f6055efe9801afb8b289f9ac24876f9c5636", "fields": {"nom_de_la_commune": "TILLAY LE PENEUX", "libell_d_acheminement": "TILLAY LE PENEUX", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28390"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6cc0080bbf3a5540599fcf455593af84e3384c", "fields": {"nom_de_la_commune": "TRIZAY LES BONNEVAL", "libell_d_acheminement": "TRIZAY LES BONNEVAL", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28396"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "913a37f28cf87e3262db56c80a7d3a7784b46346", "fields": {"nom_de_la_commune": "VERNOUILLET", "libell_d_acheminement": "VERNOUILLET", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28404"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5b21792935094c882c6ea734b130e52a4262414", "fields": {"nom_de_la_commune": "VERT EN DROUAIS", "libell_d_acheminement": "VERT EN DROUAIS", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28405"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c52fb19789d12794a777e482893379a1813ad4f4", "fields": {"code_postal": "28150", "code_commune_insee": "28422", "libell_d_acheminement": "LES VILLAGES VOVEENS", "ligne_5": "ROUVRAY ST FLORENTIN", "nom_de_la_commune": "LES VILLAGES VOVEENS", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ad3daad6567f57dde1a51eba8b96d0401c1bbbb", "fields": {"nom_de_la_commune": "YMONVILLE", "libell_d_acheminement": "YMONVILLE", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28426"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48ab48c4cd5c9d5eedda33dcbce8b4006911a5b", "fields": {"nom_de_la_commune": "BERRIEN", "libell_d_acheminement": "BERRIEN", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29007"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ed1411cb70023b3f6b38e2076e3a6762f7040e3", "fields": {"nom_de_la_commune": "BEUZEC CAP SIZUN", "libell_d_acheminement": "BEUZEC CAP SIZUN", "code_postal": "29790", "coordonnees_gps": [48.0541879472, -4.46870916199], "code_commune_insee": "29008"}, "geometry": {"type": "Point", "coordinates": [-4.46870916199, 48.0541879472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed3efe9d1585baf4e82d65e9c803f487eb4d57d", "fields": {"nom_de_la_commune": "BOLAZEC", "libell_d_acheminement": "BOLAZEC", "code_postal": "29640", "coordonnees_gps": [48.4664762138, -3.68447061124], "code_commune_insee": "29012"}, "geometry": {"type": "Point", "coordinates": [-3.68447061124, 48.4664762138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86cdde0e1b7c9585ff132926933be1a20b43995f", "fields": {"nom_de_la_commune": "BOTMEUR", "libell_d_acheminement": "BOTMEUR", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29013"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e542952e49e4b8b86ef7c8af02caffec3eb5f6d1", "fields": {"nom_de_la_commune": "BOTSORHEL", "libell_d_acheminement": "BOTSORHEL", "code_postal": "29650", "coordonnees_gps": [48.5310739903, -3.6118782406], "code_commune_insee": "29014"}, "geometry": {"type": "Point", "coordinates": [-3.6118782406, 48.5310739903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c464b892f5728c508c847bebd191ca290f719b9", "fields": {"nom_de_la_commune": "BRELES", "libell_d_acheminement": "BRELES", "code_postal": "29810", "coordonnees_gps": [48.4283895014, -4.71567534635], "code_commune_insee": "29017"}, "geometry": {"type": "Point", "coordinates": [-4.71567534635, 48.4283895014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df49f1a2504d8b7513465486c7e23a10527115b", "fields": {"nom_de_la_commune": "PRONVILLE", "libell_d_acheminement": "PRONVILLE", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62671"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9ee0abc07761821e77cf948de73d82553b63fb7", "fields": {"nom_de_la_commune": "QUERNES", "libell_d_acheminement": "QUERNES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62676"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac2c978c7df39209e9cff47c33fb50a137e82be", "fields": {"nom_de_la_commune": "QUIERY LA MOTTE", "libell_d_acheminement": "QUIERY LA MOTTE", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62680"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15c3ce839f8cd3ec3f3863eeb75f080f0a344253", "fields": {"nom_de_la_commune": "QUIESTEDE", "libell_d_acheminement": "QUIESTEDE", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62681"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b7266bcd3c1f7190737926043ba2211219bbd9", "fields": {"nom_de_la_commune": "RANG DU FLIERS", "libell_d_acheminement": "RANG DU FLIERS", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62688"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940d94b9efbf501daed405fefa3f81bde5e46b0e", "fields": {"code_postal": "62120", "code_commune_insee": "62691", "libell_d_acheminement": "ST AUGUSTIN", "ligne_5": "REBECQUES", "nom_de_la_commune": "ST AUGUSTIN", "coordonnees_gps": [50.6358470101, 2.3677470535]}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1749d0956cb72225abf143997fa13ed9bfe4f954", "fields": {"nom_de_la_commune": "REGNAUVILLE", "libell_d_acheminement": "REGNAUVILLE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62700"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6670140298bd917c0c03b2c9f58f73f450d09eaa", "fields": {"nom_de_la_commune": "REMILLY WIRQUIN", "libell_d_acheminement": "REMILLY WIRQUIN", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62702"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139dc5e8d26f0f38cbbac435dbbf70308190bb25", "fields": {"nom_de_la_commune": "REMY", "libell_d_acheminement": "REMY", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62703"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96ee02f0ff9f9119ff717ea850e1b687e09dba7f", "fields": {"nom_de_la_commune": "RICHEBOURG", "libell_d_acheminement": "RICHEBOURG", "code_postal": "62136", "coordonnees_gps": [50.5923913171, 2.70776740353], "code_commune_insee": "62706"}, "geometry": {"type": "Point", "coordinates": [2.70776740353, 50.5923913171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f2bd5ba8b211dcf7977723752be947e87a6317", "fields": {"nom_de_la_commune": "RIENCOURT LES CAGNICOURT", "libell_d_acheminement": "RIENCOURT LES CAGNICOURT", "code_postal": "62182", "coordonnees_gps": [50.2102987642, 2.97666168153], "code_commune_insee": "62709"}, "geometry": {"type": "Point", "coordinates": [2.97666168153, 50.2102987642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "242a5da221112d47230357b8e599655b5058186e", "fields": {"nom_de_la_commune": "RIMBOVAL", "libell_d_acheminement": "RIMBOVAL", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62710"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790139c935719aadd642283490dee5ae942eab04", "fields": {"nom_de_la_commune": "ROBECQ", "libell_d_acheminement": "ROBECQ", "code_postal": "62350", "coordonnees_gps": [50.6043469321, 2.56021109887], "code_commune_insee": "62713"}, "geometry": {"type": "Point", "coordinates": [2.56021109887, 50.6043469321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a5c616352df234474fa22119856be6bfa10ce39", "fields": {"nom_de_la_commune": "ROELLECOURT", "libell_d_acheminement": "ROELLECOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62717"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7f3ba200db975631463ad1b0e3eeecd7519e5a", "fields": {"nom_de_la_commune": "ROUGEFAY", "libell_d_acheminement": "ROUGEFAY", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62722"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42626f64a2f41d87a6d4c91e16de7330f37a855f", "fields": {"nom_de_la_commune": "ROUVROY", "libell_d_acheminement": "ROUVROY", "code_postal": "62320", "coordonnees_gps": [50.389396968, 2.90853721163], "code_commune_insee": "62724"}, "geometry": {"type": "Point", "coordinates": [2.90853721163, 50.389396968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79a037609c3304d97000b340c47d0cf0d01f14cd", "fields": {"nom_de_la_commune": "RUMAUCOURT", "libell_d_acheminement": "RUMAUCOURT", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62728"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ddced14885acc5c4a7acfa4fd362e621684834", "fields": {"nom_de_la_commune": "ST AMAND", "libell_d_acheminement": "ST AMAND", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62741"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78716316662b7203078f60081b7fe65821833d71", "fields": {"nom_de_la_commune": "ST DENOEUX", "libell_d_acheminement": "ST DENOEUX", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62745"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf2fb13d135fd461bf72dfe2a9cb974d10bb666", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62749"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb8427c8dd309938d590216bdc977dccc0e319ed", "fields": {"nom_de_la_commune": "ST INGLEVERT", "libell_d_acheminement": "ST INGLEVERT", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62751"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bedd2d0d411f2c9a4f29c85b983276fe9bd63fc", "fields": {"nom_de_la_commune": "ST LAURENT BLANGY", "libell_d_acheminement": "ST LAURENT BLANGY", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62753"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674af3eb1f903aefb7feec17c48a57569ce598ff", "fields": {"nom_de_la_commune": "ST MARTIN LEZ TATINGHEM", "libell_d_acheminement": "ST MARTIN LEZ TATINGHEM", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62757"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d76586630c793faccfa588573c9771a9f8120d4", "fields": {"code_postal": "62500", "code_commune_insee": "62757", "libell_d_acheminement": "ST MARTIN LEZ TATINGHEM", "ligne_5": "TATINGHEM", "nom_de_la_commune": "ST MARTIN LEZ TATINGHEM", "coordonnees_gps": [50.7591830774, 2.23290877714]}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c013ebac653d2b6f2cb797073d8d1e79a5478a3", "fields": {"nom_de_la_commune": "ST MARTIN BOULOGNE", "libell_d_acheminement": "ST MARTIN BOULOGNE", "code_postal": "62280", "coordonnees_gps": [50.723565994, 1.64723102775], "code_commune_insee": "62758"}, "geometry": {"type": "Point", "coordinates": [1.64723102775, 50.723565994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "397ebee7cb2fe8d253de3282fda8d09d35e1a793", "fields": {"nom_de_la_commune": "ST POL SUR TERNOISE", "libell_d_acheminement": "ST POL SUR TERNOISE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62767"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42c1decdf35aeb1db3f211c77084ff724f83c2a", "fields": {"nom_de_la_commune": "SAMER", "libell_d_acheminement": "SAMER", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62773"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10904a1ebf42517fb0313f5d7d71564f96a660d3", "fields": {"nom_de_la_commune": "SANGATTE", "libell_d_acheminement": "SANGATTE", "code_postal": "62231", "coordonnees_gps": [50.929758247, 1.77843645708], "code_commune_insee": "62774"}, "geometry": {"type": "Point", "coordinates": [1.77843645708, 50.929758247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0f934c1e0ef69aa58b56d468a2d1c984a154695", "fields": {"nom_de_la_commune": "SANGHEN", "libell_d_acheminement": "SANGHEN", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62775"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc512cd67956f36b2e526fbc932a5fcf2ec89b77", "fields": {"nom_de_la_commune": "SAULTY", "libell_d_acheminement": "SAULTY", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62784"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6856f293f20fdb3b75a27f9f32ca1822ed680813", "fields": {"nom_de_la_commune": "SERQUES", "libell_d_acheminement": "SERQUES", "code_postal": "62910", "coordonnees_gps": [50.7991488939, 2.16031831269], "code_commune_insee": "62792"}, "geometry": {"type": "Point", "coordinates": [2.16031831269, 50.7991488939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6554ea810780f5a8735f0ec7f002c35a423a2492", "fields": {"nom_de_la_commune": "SOUASTRE", "libell_d_acheminement": "SOUASTRE", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62800"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12203e3490f4b9563bd22617108f06f279c5faa", "fields": {"nom_de_la_commune": "TANGRY", "libell_d_acheminement": "TANGRY", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62805"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3e1f734fa410515bc94bda7f501e3d865caaa0", "fields": {"nom_de_la_commune": "TENEUR", "libell_d_acheminement": "TENEUR", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62808"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfe2d70118ad65610e87fbff1f3bd0489a24241a", "fields": {"nom_de_la_commune": "THELUS", "libell_d_acheminement": "THELUS", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62810"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ebb391e43ca183bce911a1a6c90ebe7cbeedc7c", "fields": {"nom_de_la_commune": "THEROUANNE", "libell_d_acheminement": "THEROUANNE", "code_postal": "62129", "coordonnees_gps": [50.6463145648, 2.25326814344], "code_commune_insee": "62811"}, "geometry": {"type": "Point", "coordinates": [2.25326814344, 50.6463145648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fac323e149f3e053b54d7572e0fbb62c40624c08", "fields": {"nom_de_la_commune": "LA THIEULOYE", "libell_d_acheminement": "LA THIEULOYE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62813"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0868d38ddaaddfa83f324b99ca38cea198e051c4", "fields": {"nom_de_la_commune": "TILLOY LES MOFFLAINES", "libell_d_acheminement": "TILLOY LES MOFFLAINES", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62817"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca1987888a1fff2fc1275b599aac0c72c66bcc0", "fields": {"nom_de_la_commune": "TILLY CAPELLE", "libell_d_acheminement": "TILLY CAPELLE", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62818"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d52afc0aab73d282164f60839ff53c09b7fac9", "fields": {"nom_de_la_commune": "TINGRY", "libell_d_acheminement": "TINGRY", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62821"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f0928f3b0131d38d2012e6b0393a4d4cc19484", "fields": {"nom_de_la_commune": "TORCY", "libell_d_acheminement": "TORCY", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62823"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "539ab3cabff8160740cbfd7220a9eebd002e55b0", "fields": {"nom_de_la_commune": "TROISVAUX", "libell_d_acheminement": "TROISVAUX", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62831"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10fc01620d3663f51a0cc503b369e1da43cffc70", "fields": {"nom_de_la_commune": "VALHUON", "libell_d_acheminement": "VALHUON", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62835"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e66348150666425d1e19a60dc78ccf22989b74b0", "fields": {"nom_de_la_commune": "VERTON", "libell_d_acheminement": "VERTON", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62849"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c540eada2ff21d41f788478b57c6db82c9f1b0f3", "fields": {"nom_de_la_commune": "VILLERS BRULIN", "libell_d_acheminement": "VILLERS BRULIN", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62856"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c71750fc7c5906bb6b079e6ab6664d5e4cce34", "fields": {"nom_de_la_commune": "VINCLY", "libell_d_acheminement": "VINCLY", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62862"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68a7783f0a01f96feac8f2fe3a6af5353ce6d627", "fields": {"nom_de_la_commune": "WANCOURT", "libell_d_acheminement": "WANCOURT", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62873"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e65f2f66b52f2a45fc9b58aada8cf2419f97e91e", "fields": {"nom_de_la_commune": "WANQUETIN", "libell_d_acheminement": "WANQUETIN", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62874"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe7be3d6aa5b74d9f9bef3a2816a9def411a2673", "fields": {"nom_de_la_commune": "BEAUVOIR WAVANS", "libell_d_acheminement": "BEAUVOIR WAVANS", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62881"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf96a34912c55a36bdaeaf06c2f3de62041ac85e", "fields": {"nom_de_la_commune": "WAVRANS SUR L AA", "libell_d_acheminement": "WAVRANS SUR L AA", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62882"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94e53f78a04aec853980a881bacc653c98bfca54", "fields": {"nom_de_la_commune": "WAVRANS SUR TERNOISE", "libell_d_acheminement": "WAVRANS SUR TERNOISE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62883"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "441e110b626522eec8779dde278fc172085ebb0e", "fields": {"nom_de_la_commune": "WILLEMAN", "libell_d_acheminement": "WILLEMAN", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62890"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d7173b6e8cf41bf61a7254ade639eee2f5533b", "fields": {"nom_de_la_commune": "WILLENCOURT", "libell_d_acheminement": "WILLENCOURT", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62891"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7f2050414566c171d66ce74e0779f5f25013175", "fields": {"nom_de_la_commune": "WITTES", "libell_d_acheminement": "WITTES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62901"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e1bf743490af23c3a903bc5d4600bb4664e4ee", "fields": {"nom_de_la_commune": "WIZERNES", "libell_d_acheminement": "WIZERNES", "code_postal": "62570", "coordonnees_gps": [50.6952364342, 2.22748596722], "code_commune_insee": "62902"}, "geometry": {"type": "Point", "coordinates": [2.22748596722, 50.6952364342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40e7219e5507ef397339a6a203d0b7689c62d53", "fields": {"nom_de_la_commune": "ZOUAFQUES", "libell_d_acheminement": "ZOUAFQUES", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62904"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7b06ec2ad14dc3e71ef34da2c31bb80a75f520e", "fields": {"nom_de_la_commune": "AIX LA FAYETTE", "libell_d_acheminement": "AIX LA FAYETTE", "code_postal": "63980", "coordonnees_gps": [45.5203885139, 3.57234672112], "code_commune_insee": "63002"}, "geometry": {"type": "Point", "coordinates": [3.57234672112, 45.5203885139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea2280741267442f5f7ce06e26fd712c2108715", "fields": {"nom_de_la_commune": "LES ANCIZES COMPS", "libell_d_acheminement": "LES ANCIZES COMPS", "code_postal": "63770", "coordonnees_gps": [45.9328819518, 2.80522779596], "code_commune_insee": "63004"}, "geometry": {"type": "Point", "coordinates": [2.80522779596, 45.9328819518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7ab6655bf3000054bb4357ce48e60f8ed9b8f5", "fields": {"nom_de_la_commune": "ANTOINGT", "libell_d_acheminement": "ANTOINGT", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63005"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc04719f0575801f4d2854434ed26cea8546d264", "fields": {"nom_de_la_commune": "ARCONSAT", "libell_d_acheminement": "ARCONSAT", "code_postal": "63250", "coordonnees_gps": [45.8665213579, 3.68184303614], "code_commune_insee": "63008"}, "geometry": {"type": "Point", "coordinates": [3.68184303614, 45.8665213579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3663ab5b2974ea08f7e2d8814d507051dd1f3e70", "fields": {"nom_de_la_commune": "ARDES", "libell_d_acheminement": "ARDES", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63009"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4af6ad79cbd17bc8f88daa3f6f1ba8ed0f8c48c", "fields": {"nom_de_la_commune": "ARLANC", "libell_d_acheminement": "ARLANC", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63010"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "692c8f0de0a2b11b17a0d0227880d36878c67208", "fields": {"nom_de_la_commune": "ARS LES FAVETS", "libell_d_acheminement": "ARS LES FAVETS", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63011"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0780755bad8d42de014c9da1ea6aa670ee3bce79", "fields": {"nom_de_la_commune": "ARTONNE", "libell_d_acheminement": "ARTONNE", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63012"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c613b9daa8ff2c10674b2e5b1ca309af7972ca3", "fields": {"code_postal": "63260", "code_commune_insee": "63013", "libell_d_acheminement": "AUBIAT", "ligne_5": "CHAZELLES", "nom_de_la_commune": "AUBIAT", "coordonnees_gps": [46.0185019732, 3.21337186417]}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "176c06d45805b8ed60e561d6547d41b8df4ac621", "fields": {"nom_de_la_commune": "AUBIERE", "libell_d_acheminement": "AUBIERE", "code_postal": "63170", "coordonnees_gps": [45.7453592394, 3.13138248185], "code_commune_insee": "63014"}, "geometry": {"type": "Point", "coordinates": [3.13138248185, 45.7453592394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1beec70f04cfbe3dd7cf3f7ba81ce9fbf020bb", "fields": {"nom_de_la_commune": "AUTHEZAT", "libell_d_acheminement": "AUTHEZAT", "code_postal": "63114", "coordonnees_gps": [45.6254856472, 3.19813088283], "code_commune_insee": "63021"}, "geometry": {"type": "Point", "coordinates": [3.19813088283, 45.6254856472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cecedddf8346e1f6dec57368032242089e930b77", "fields": {"nom_de_la_commune": "AVEZE", "libell_d_acheminement": "AVEZE", "code_postal": "63690", "coordonnees_gps": [45.555010149, 2.58536882047], "code_commune_insee": "63024"}, "geometry": {"type": "Point", "coordinates": [2.58536882047, 45.555010149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fcbd1ff5eeb4fc9e2098067e1c4a11ce850fb1f", "fields": {"nom_de_la_commune": "BANSAT", "libell_d_acheminement": "BANSAT", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63029"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16db34dd8ce956d695b387a0b734049aab96454d", "fields": {"nom_de_la_commune": "BESSE ET ST ANASTAISE", "libell_d_acheminement": "BESSE ET ST ANASTAISE", "code_postal": "63610", "coordonnees_gps": [45.477068899, 2.93237565554], "code_commune_insee": "63038"}, "geometry": {"type": "Point", "coordinates": [2.93237565554, 45.477068899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9708da43cfc40a0447c26212b83751078f5d33e", "fields": {"code_postal": "63610", "code_commune_insee": "63038", "libell_d_acheminement": "BESSE ET ST ANASTAISE", "ligne_5": "SUPER BESSE", "nom_de_la_commune": "BESSE ET ST ANASTAISE", "coordonnees_gps": [45.477068899, 2.93237565554]}, "geometry": {"type": "Point", "coordinates": [2.93237565554, 45.477068899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbf3c46d72e2056b9c1f46b11db99e7fecca0de7", "fields": {"nom_de_la_commune": "BILLOM", "libell_d_acheminement": "BILLOM", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63040"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edec3cd65976bd12e2efc0500eaf889329261000", "fields": {"nom_de_la_commune": "BOUZEL", "libell_d_acheminement": "BOUZEL", "code_postal": "63910", "coordonnees_gps": [45.7740957976, 3.29534868018], "code_commune_insee": "63049"}, "geometry": {"type": "Point", "coordinates": [3.29534868018, 45.7740957976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298142e7e47128082284b1b276cf7f6d3637ae5c", "fields": {"nom_de_la_commune": "BRASSAC LES MINES", "libell_d_acheminement": "BRASSAC LES MINES", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63050"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d733860c311474e519e3554fada4c6fc4534518a", "fields": {"nom_de_la_commune": "BRENAT", "libell_d_acheminement": "BRENAT", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63051"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9eb45b5451089bb7ee1e88cc085897406f7e06b", "fields": {"nom_de_la_commune": "LA CELLE", "libell_d_acheminement": "LA CELLE", "code_postal": "63620", "coordonnees_gps": [45.8124173701, 2.47211906548], "code_commune_insee": "63064"}, "geometry": {"type": "Point", "coordinates": [2.47211906548, 45.8124173701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f61a8f91021c10e530bddc348cc5c75a7acae695", "fields": {"nom_de_la_commune": "CELLES SUR DUROLLE", "libell_d_acheminement": "CELLES SUR DUROLLE", "code_postal": "63250", "coordonnees_gps": [45.8665213579, 3.68184303614], "code_commune_insee": "63066"}, "geometry": {"type": "Point", "coordinates": [3.68184303614, 45.8665213579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de308311eac14a6ad29718eb53cf26425a2ddf02", "fields": {"nom_de_la_commune": "CEYRAT", "libell_d_acheminement": "CEYRAT", "code_postal": "63122", "coordonnees_gps": [45.7250562511, 3.00944108289], "code_commune_insee": "63070"}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d64f7df2c153e3f100796d4179f8c2122b0bac6c", "fields": {"nom_de_la_commune": "CEYSSAT", "libell_d_acheminement": "CEYSSAT", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63071"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208c82ff04123beca413760e5b2538ff89d76eef", "fields": {"nom_de_la_commune": "CHADELEUF", "libell_d_acheminement": "CHADELEUF", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63073"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91aa17b670421c03648851d977db72a075cbb2ca", "fields": {"nom_de_la_commune": "LA CHAPELLE AGNON", "libell_d_acheminement": "LA CHAPELLE AGNON", "code_postal": "63590", "coordonnees_gps": [45.630246547, 3.56815456434], "code_commune_insee": "63086"}, "geometry": {"type": "Point", "coordinates": [3.56815456434, 45.630246547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e47ba1b9817317a48ef43c70bc31fc8cc448c35", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR USSON", "libell_d_acheminement": "LA CHAPELLE SUR USSON", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63088"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568e7113ca3e569ae3212784421c8087624304cd", "fields": {"nom_de_la_commune": "CHARBONNIERES LES VARENNES", "libell_d_acheminement": "CHARBONNIERES LES VARENNES", "code_postal": "63410", "coordonnees_gps": [45.9529948229, 2.96821882159], "code_commune_insee": "63092"}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "365632c23e009b7fd433639f3aedf9ec1a719337", "fields": {"nom_de_la_commune": "CHASTREIX", "libell_d_acheminement": "CHASTREIX", "code_postal": "63680", "coordonnees_gps": [45.5115697686, 2.72357891601], "code_commune_insee": "63098"}, "geometry": {"type": "Point", "coordinates": [2.72357891601, 45.5115697686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9811fff2a4bab2667988c118eca14c0d8654d1c", "fields": {"nom_de_la_commune": "CHATEAU SUR CHER", "libell_d_acheminement": "CHATEAU SUR CHER", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63101"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2bc9c8a18533b63533f7c8b986bc01689c72de2", "fields": {"nom_de_la_commune": "CHAUMONT LE BOURG", "libell_d_acheminement": "CHAUMONT LE BOURG", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63105"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a300d2d017c4b2bbd54695df1357a0ec09f88ebe", "fields": {"nom_de_la_commune": "COMBRAILLES", "libell_d_acheminement": "COMBRAILLES", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63115"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e4d46091ab9e3735233f6e9dd4b9b9418d8881", "fields": {"nom_de_la_commune": "CONDAT EN COMBRAILLE", "libell_d_acheminement": "CONDAT EN COMBRAILLE", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63118"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cdc8c3d8da92370f151b0cc10666790716ca694", "fields": {"nom_de_la_commune": "CORENT", "libell_d_acheminement": "CORENT", "code_postal": "63730", "coordonnees_gps": [45.6563565096, 3.18143690291], "code_commune_insee": "63120"}, "geometry": {"type": "Point", "coordinates": [3.18143690291, 45.6563565096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c6160d555e006dfd2b82a570e823600f3bb592", "fields": {"nom_de_la_commune": "COUDES", "libell_d_acheminement": "COUDES", "code_postal": "63114", "coordonnees_gps": [45.6254856472, 3.19813088283], "code_commune_insee": "63121"}, "geometry": {"type": "Point", "coordinates": [3.19813088283, 45.6254856472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9d78a05662daf8c96748b587e699dd0997a8a9", "fields": {"nom_de_la_commune": "COURGOUL", "libell_d_acheminement": "COURGOUL", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63122"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28321ecc9fb6d08fce5c2623183ce8caf5b9b8a", "fields": {"nom_de_la_commune": "CUNLHAT", "libell_d_acheminement": "CUNLHAT", "code_postal": "63590", "coordonnees_gps": [45.630246547, 3.56815456434], "code_commune_insee": "63132"}, "geometry": {"type": "Point", "coordinates": [3.56815456434, 45.630246547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7512057f22af012e791d3979af0a6e4578aaf3d", "fields": {"nom_de_la_commune": "DAVAYAT", "libell_d_acheminement": "DAVAYAT", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63135"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d05b77e0ece7d24f4a66c3c6b32e74e40ed686", "fields": {"nom_de_la_commune": "DOMAIZE", "libell_d_acheminement": "DOMAIZE", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63136"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27956470bb3d3d809cbf4b7588d28b6901d15d8", "fields": {"nom_de_la_commune": "DURMIGNAT", "libell_d_acheminement": "DURMIGNAT", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63140"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa54ac9602ac60a815063ca22a3c8e3a8796a8b", "fields": {"nom_de_la_commune": "DURTOL", "libell_d_acheminement": "DURTOL", "code_postal": "63830", "coordonnees_gps": [45.8036028369, 3.05439430506], "code_commune_insee": "63141"}, "geometry": {"type": "Point", "coordinates": [3.05439430506, 45.8036028369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d2763626aea4692bdd9556ddcea8b1c5adeb041", "fields": {"nom_de_la_commune": "EGLISOLLES", "libell_d_acheminement": "EGLISOLLES", "code_postal": "63840", "coordonnees_gps": [45.4285937621, 3.88182928163], "code_commune_insee": "63147"}, "geometry": {"type": "Point", "coordinates": [3.88182928163, 45.4285937621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14ee5688c6a2c044991c7d7e6eb519e932592eea", "fields": {"code_postal": "50800", "code_commune_insee": "50639", "libell_d_acheminement": "VILLEDIEU LES POELES ROUFFIGNY", "ligne_5": "ROUFFIGNY", "nom_de_la_commune": "VILLEDIEU LES POELES ROUFFIGNY", "coordonnees_gps": [48.8292712717, -1.21839643313]}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "008e1f639dde5474c63b6cd1350d56814bffbc4e", "fields": {"nom_de_la_commune": "YVETOT BOCAGE", "libell_d_acheminement": "YVETOT BOCAGE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50648"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987d90971aff46114e9ec52837bd6a4846ffebb1", "fields": {"nom_de_la_commune": "AIGNY", "libell_d_acheminement": "AIGNY", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51003"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9327919a90dc145bf8f555d0831822ceea0a01a", "fields": {"nom_de_la_commune": "ST JEAN DES ECHELLES", "libell_d_acheminement": "ST JEAN DES ECHELLES", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72292"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049cad0dac9d87aeb9d241518f67366e029f9c90", "fields": {"nom_de_la_commune": "ST LEONARD DES BOIS", "libell_d_acheminement": "ST LEONARD DES BOIS", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72294"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23a4df03bb1f9f99735849415013987213e87ef", "fields": {"nom_de_la_commune": "ST MARS LA BRIERE", "libell_d_acheminement": "ST MARS LA BRIERE", "code_postal": "72470", "coordonnees_gps": [48.0204564826, 0.363077616761], "code_commune_insee": "72300"}, "geometry": {"type": "Point", "coordinates": [0.363077616761, 48.0204564826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18080a326de3b77c13b0b025117b28423c90fd76", "fields": {"nom_de_la_commune": "ST PAVACE", "libell_d_acheminement": "ST PAVACE", "code_postal": "72190", "coordonnees_gps": [48.0582059283, 0.222153096332], "code_commune_insee": "72310"}, "geometry": {"type": "Point", "coordinates": [0.222153096332, 48.0582059283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9728a31f563e9c83fb2e1c7be0a82dd68de38757", "fields": {"nom_de_la_commune": "ST PIERRE DU LOROUER", "libell_d_acheminement": "ST PIERRE DU LOROUER", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72314"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bc41d7ba96ca03a40c1ef973d1063daef90e5b1", "fields": {"nom_de_la_commune": "ST REMY DES MONTS", "libell_d_acheminement": "ST REMY DES MONTS", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72316"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "577816973b800e726309c01f130cc512e0149612", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72321"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca08f0fa9048faf12070e90876617fc5d9e5d2b", "fields": {"nom_de_la_commune": "ST VICTEUR", "libell_d_acheminement": "ST VICTEUR", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72323"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956f78512ecd10a52167b9dfe32aca12114301b6", "fields": {"nom_de_la_commune": "ST VINCENT DES PRES", "libell_d_acheminement": "ST VINCENT DES PRES", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72324"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "839fc517159a93a77f95e59ad39fefa4cd577596", "fields": {"nom_de_la_commune": "SAOSNES", "libell_d_acheminement": "SAOSNES", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72326"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f1c906c4aa79f53097e10fb88ad6900b8b175bd", "fields": {"nom_de_la_commune": "SARGE LES LE MANS", "libell_d_acheminement": "SARGE LES LE MANS", "code_postal": "72190", "coordonnees_gps": [48.0582059283, 0.222153096332], "code_commune_insee": "72328"}, "geometry": {"type": "Point", "coordinates": [0.222153096332, 48.0582059283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d040d15f8d96bd96b5fd513197281b26d45b4d20", "fields": {"nom_de_la_commune": "SCEAUX SUR HUISNE", "libell_d_acheminement": "SCEAUX SUR HUISNE", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72331"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4780f247152419a5b64359f4c2d0ec87cb7283d0", "fields": {"nom_de_la_commune": "SOUILLE", "libell_d_acheminement": "SOUILLE", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72338"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8921f190b5cd7f4543f69379c71ec2ba717683", "fields": {"nom_de_la_commune": "SOULIGNE SOUS BALLON", "libell_d_acheminement": "SOULIGNE SOUS BALLON", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72340"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5cd9bacd36920aab5005ebec0f11b65f0a642b2", "fields": {"nom_de_la_commune": "SPAY", "libell_d_acheminement": "SPAY", "code_postal": "72700", "coordonnees_gps": [47.9647519456, 0.124625925124], "code_commune_insee": "72344"}, "geometry": {"type": "Point", "coordinates": [0.124625925124, 47.9647519456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37cbad53020b5b108ab35ff1b772f711e88a6d68", "fields": {"nom_de_la_commune": "SURFONDS", "libell_d_acheminement": "SURFONDS", "code_postal": "72370", "coordonnees_gps": [48.0020289464, 0.465705755443], "code_commune_insee": "72345"}, "geometry": {"type": "Point", "coordinates": [0.465705755443, 48.0020289464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007c4d1d915771f884d558c40dd96e7988408b5b", "fields": {"nom_de_la_commune": "VAULRY", "libell_d_acheminement": "VAULRY", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87198"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce5915b6ba5fd89bbec03cdd39bfcf329b02a5d", "fields": {"nom_de_la_commune": "VICQ SUR BREUILH", "libell_d_acheminement": "VICQ SUR BREUILH", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87203"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56cac1b6ee2c70cf446600d19f7b44dfeca2147d", "fields": {"nom_de_la_commune": "AINVELLE", "libell_d_acheminement": "AINVELLE", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88004"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a85c4b83cee8b995f685b07cc2a7dd5aa805465c", "fields": {"nom_de_la_commune": "AOUZE", "libell_d_acheminement": "AOUZE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88010"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "785fc0f38f5871496192ed936b9629bc5405ec82", "fields": {"nom_de_la_commune": "ATTIGNEVILLE", "libell_d_acheminement": "ATTIGNEVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88015"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db6e0f43bd98617cf475f97b3f1d9a5be99856fd", "fields": {"nom_de_la_commune": "AULNOIS", "libell_d_acheminement": "AULNOIS", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88017"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e1cd13260f3c396ff0211b5c4e4db25be44d2c", "fields": {"nom_de_la_commune": "AUTREVILLE", "libell_d_acheminement": "AUTREVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88020"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4612b61438d3378aaffd49650594f1a2e5ef42b7", "fields": {"nom_de_la_commune": "BAN DE SAPT", "libell_d_acheminement": "BAN DE SAPT", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88033"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76c42e4d1832ee1a8ab6ee41640a4c09e5ec43c", "fields": {"nom_de_la_commune": "BATTEXEY", "libell_d_acheminement": "BATTEXEY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88038"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70bbf7ed17dbcfa796153b8722f6fa7d00e12eff", "fields": {"nom_de_la_commune": "BAZEGNEY", "libell_d_acheminement": "BAZEGNEY", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88041"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba896294fbe45c31dc33b73643566e2e7431dae0", "fields": {"nom_de_la_commune": "BELLEFONTAINE", "libell_d_acheminement": "BELLEFONTAINE", "code_postal": "88370", "coordonnees_gps": [47.9937026909, 6.4494827214], "code_commune_insee": "88048"}, "geometry": {"type": "Point", "coordinates": [6.4494827214, 47.9937026909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddfa64fec7e05526ca093b1dd2c36bc5f5609068", "fields": {"nom_de_la_commune": "BELMONT SUR BUTTANT", "libell_d_acheminement": "BELMONT SUR BUTTANT", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88050"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "947cc826d984c3ccd3eb18015221e6a596663705", "fields": {"nom_de_la_commune": "BELVAL", "libell_d_acheminement": "BELVAL", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88053"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d834ea7ac02bf421812d542dd984af7e9be53023", "fields": {"nom_de_la_commune": "BETTEGNEY ST BRICE", "libell_d_acheminement": "BETTEGNEY ST BRICE", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88055"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a271316e1ae4d15a097751984968ece66b61cf18", "fields": {"nom_de_la_commune": "LE BEULAY", "libell_d_acheminement": "LE BEULAY", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88057"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec2e5ee758a8e371da184cf75fb4698c4c68fce", "fields": {"nom_de_la_commune": "BIFFONTAINE", "libell_d_acheminement": "BIFFONTAINE", "code_postal": "88430", "coordonnees_gps": [48.1658357174, 6.87708921795], "code_commune_insee": "88059"}, "geometry": {"type": "Point", "coordinates": [6.87708921795, 48.1658357174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7093cf3a0f31aa92f710247ab070c16ef7f968d5", "fields": {"nom_de_la_commune": "BLEURVILLE", "libell_d_acheminement": "BLEURVILLE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88061"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e58136d0f663ec03e0e9a4abc3cb4db148e80c", "fields": {"nom_de_la_commune": "BOIS DE CHAMP", "libell_d_acheminement": "BOIS DE CHAMP", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88064"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a95de767d074f3117f5456335446bcc7ab1ca2fa", "fields": {"nom_de_la_commune": "BRANTIGNY", "libell_d_acheminement": "BRANTIGNY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88073"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcad71ae6c8f1d871e5a3497c3d3048599143e7d", "fields": {"nom_de_la_commune": "BRU", "libell_d_acheminement": "BRU", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88077"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "323d8a77357b214330ef5e35bf58eeddaa76e624", "fields": {"nom_de_la_commune": "BRUYERES", "libell_d_acheminement": "BRUYERES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88078"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f05fc2132b94d33c21732f9699ef01a28fe1a76", "fields": {"nom_de_la_commune": "BULGNEVILLE", "libell_d_acheminement": "BULGNEVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88079"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd7b021ac60a75a601c96e43bf09e526e498649", "fields": {"nom_de_la_commune": "BUSSANG", "libell_d_acheminement": "BUSSANG", "code_postal": "88540", "coordonnees_gps": [47.8915745036, 6.87676798215], "code_commune_insee": "88081"}, "geometry": {"type": "Point", "coordinates": [6.87676798215, 47.8915745036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce6e3032c86647163fdef9cefd98be77a8a12dd", "fields": {"nom_de_la_commune": "CHAMAGNE", "libell_d_acheminement": "CHAMAGNE", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88084"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04cead8a3a6bb5e1fb108406e8848a7ab258a3f9", "fields": {"nom_de_la_commune": "CIRCOURT", "libell_d_acheminement": "CIRCOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88103"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "303d4da7cbcbd6f42e7c384b993b221e9abc7fdd", "fields": {"nom_de_la_commune": "CRAINVILLIERS", "libell_d_acheminement": "CRAINVILLIERS", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88119"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fec96619c6d799f83f9e9112ae9c462335f6e571", "fields": {"nom_de_la_commune": "LA CROIX AUX MINES", "libell_d_acheminement": "LA CROIX AUX MINES", "code_postal": "88520", "coordonnees_gps": [48.2317545938, 7.08210366402], "code_commune_insee": "88120"}, "geometry": {"type": "Point", "coordinates": [7.08210366402, 48.2317545938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7413922b1a3be21b468a5fd5280dd6eff18aed0b", "fields": {"nom_de_la_commune": "DARNEY", "libell_d_acheminement": "DARNEY", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88124"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ab01b7c93797ebb98250675596dd3d3677dc4c", "fields": {"nom_de_la_commune": "DEYCIMONT", "libell_d_acheminement": "DEYCIMONT", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88131"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96dc1680a17af97cae0cad14c97d28bc4059880c", "fields": {"nom_de_la_commune": "DINOZE", "libell_d_acheminement": "DINOZE", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88134"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee2b6582cd6746e9397cabe7c143b8199ef6a95", "fields": {"nom_de_la_commune": "DOLAINCOURT", "libell_d_acheminement": "DOLAINCOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88137"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534ef26d2edf68242c857a3137233a72a12fc297", "fields": {"nom_de_la_commune": "DOMBROT SUR VAIR", "libell_d_acheminement": "DOMBROT SUR VAIR", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88141"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9427365456a3b896111eed38798f85cac26a1d6d", "fields": {"nom_de_la_commune": "DOMFAING", "libell_d_acheminement": "DOMFAING", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88145"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dc659db247075a53843081d4a3073780d3d56b8", "fields": {"nom_de_la_commune": "DOMMARTIN LES VALLOIS", "libell_d_acheminement": "DOMMARTIN LES VALLOIS", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88149"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eda75528b34ab4b937370bba97ac8b8cbfb506d", "fields": {"nom_de_la_commune": "DOMPIERRE", "libell_d_acheminement": "DOMPIERRE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88152"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8746965abeec62072d67c4c2f499fd1e555a31e8", "fields": {"nom_de_la_commune": "DOMVALLIER", "libell_d_acheminement": "DOMVALLIER", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88155"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed6345190cdebd157bad47d3fef1ebe84823405c", "fields": {"nom_de_la_commune": "DONCIERES", "libell_d_acheminement": "DONCIERES", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88156"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2793cd8b99d949ef2796fefcd74fd812684977d2", "fields": {"nom_de_la_commune": "ESSEGNEY", "libell_d_acheminement": "ESSEGNEY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88163"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "871aeb2ec3243aa640496555bb9ebf4405bf1e46", "fields": {"nom_de_la_commune": "FLOREMONT", "libell_d_acheminement": "FLOREMONT", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88173"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "818a7b13914b13951ebcf8d3ea1a67a8002e30cf", "fields": {"nom_de_la_commune": "FONTENAY", "libell_d_acheminement": "FONTENAY", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88175"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e865df80bff56e1c2178b4951547a2441a57e64e", "fields": {"nom_de_la_commune": "LES FORGES", "libell_d_acheminement": "LES FORGES", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88178"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd8b7ffa098f155e2b61bc703c78f121d64ff8dd", "fields": {"nom_de_la_commune": "FREMIFONTAINE", "libell_d_acheminement": "FREMIFONTAINE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88184"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d2e5804bc9615149f3463375f4eaf6d83adc84", "fields": {"nom_de_la_commune": "FREVILLE", "libell_d_acheminement": "FREVILLE", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88189"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c3437129d94c983acbacee4a203afb8b39803d2", "fields": {"nom_de_la_commune": "GERBAMONT", "libell_d_acheminement": "GERBAMONT", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88197"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32def70caf89346345e3d8606ee13f70f0205bfa", "fields": {"nom_de_la_commune": "GIGNEVILLE", "libell_d_acheminement": "GIGNEVILLE", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88199"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51224e8a8e8bc4fbfe1bd5ebe869894592caf14f", "fields": {"nom_de_la_commune": "GOLBEY", "libell_d_acheminement": "GOLBEY", "code_postal": "88190", "coordonnees_gps": [48.1998237909, 6.42518589351], "code_commune_insee": "88209"}, "geometry": {"type": "Point", "coordinates": [6.42518589351, 48.1998237909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1af0d5b4e481c3d9a169a99d022b77f799561e4c", "fields": {"nom_de_la_commune": "GRAND", "libell_d_acheminement": "GRAND", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88212"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d5ce43e0a2b79921f6d2737ea65a666c06742d7", "fields": {"nom_de_la_commune": "GRANDVILLERS", "libell_d_acheminement": "GRANDVILLERS", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88216"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7808500cf9689249f397f7cbbcecfc53daed2c4d", "fields": {"nom_de_la_commune": "GRANGES AUMONTZEY", "libell_d_acheminement": "GRANGES AUMONTZEY", "code_postal": "88640", "coordonnees_gps": [48.1317016087, 6.78306883061], "code_commune_insee": "88218"}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ef6d36b39ecda3fb0ec68183af9403617476bc", "fields": {"code_postal": "88640", "code_commune_insee": "88218", "libell_d_acheminement": "GRANGES AUMONTZEY", "ligne_5": "AUMONTZEY", "nom_de_la_commune": "GRANGES AUMONTZEY", "coordonnees_gps": [48.1317016087, 6.78306883061]}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6376e9961758529b6af7c675206020f4e89ab6e9", "fields": {"nom_de_la_commune": "HAGNEVILLE ET RONCOURT", "libell_d_acheminement": "HAGNEVILLE ET RONCOURT", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88227"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab46628b9c6b77e8d2d5dd99876974177022004", "fields": {"nom_de_la_commune": "HARSAULT", "libell_d_acheminement": "HARSAULT", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88234"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8d4816105011a23c2442c7210d2585203c601b2", "fields": {"code_postal": "88240", "code_commune_insee": "88234", "libell_d_acheminement": "HARSAULT", "ligne_5": "LA FORGE DE THUNIMONT", "nom_de_la_commune": "HARSAULT", "coordonnees_gps": [48.007182961, 6.25362129699]}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce069eab834b0ede7ea3360fb160991d2ed570a1", "fields": {"nom_de_la_commune": "HAUTMOUGEY", "libell_d_acheminement": "HAUTMOUGEY", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88235"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9cc17ca6b4620c64b76f15d3d4bbe428c326ce", "fields": {"nom_de_la_commune": "LA HOUSSIERE", "libell_d_acheminement": "LA HOUSSIERE", "code_postal": "88430", "coordonnees_gps": [48.1658357174, 6.87708921795], "code_commune_insee": "88244"}, "geometry": {"type": "Point", "coordinates": [6.87708921795, 48.1658357174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e717262fb4fce01914bdcd55b97b39bcc23a04bb", "fields": {"nom_de_la_commune": "HYMONT", "libell_d_acheminement": "HYMONT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88246"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33e59a78590349270dc02594af911adf24794114", "fields": {"nom_de_la_commune": "JEANMENIL", "libell_d_acheminement": "JEANMENIL", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88251"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23aa3214a4122184f1aa69ff85a0910f3faf41be", "fields": {"nom_de_la_commune": "JEUXEY", "libell_d_acheminement": "JEUXEY", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88253"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc2b3bc2f78ed9c374f492b05728dd5149c2315b", "fields": {"nom_de_la_commune": "LANDAVILLE", "libell_d_acheminement": "LANDAVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88259"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d84e2757f6546bde8ac7232c94c821b6212c208b", "fields": {"nom_de_la_commune": "LAVELINE DEVANT BRUYERES", "libell_d_acheminement": "LAVELINE DEVANT BRUYERES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88262"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d69ed315fa8eb171f0b72068d1228353ee2dad8", "fields": {"nom_de_la_commune": "LEMMECOURT", "libell_d_acheminement": "LEMMECOURT", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88265"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ef84724704f87e5f5a20268fb3a39b0df9dcb5", "fields": {"nom_de_la_commune": "LIEZEY", "libell_d_acheminement": "LIEZEY", "code_postal": "88400", "coordonnees_gps": [48.0708964326, 6.88124451872], "code_commune_insee": "88269"}, "geometry": {"type": "Point", "coordinates": [6.88124451872, 48.0708964326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e32df6e88027077c9be5766b95d8e72a53b54515", "fields": {"nom_de_la_commune": "LONGCHAMP SOUS CHATENOIS", "libell_d_acheminement": "LONGCHAMP SOUS CHATENOIS", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88274"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f17acd06f5c559d4401b91a6a711ba8a717ae53", "fields": {"nom_de_la_commune": "LUBINE", "libell_d_acheminement": "LUBINE", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88275"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd26458ee2ddf392ad485088f0ca8536ca0c306", "fields": {"nom_de_la_commune": "MARONCOURT", "libell_d_acheminement": "MARONCOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88288"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce6cfe85e42ba201141cab537bf915e4edd9b57", "fields": {"nom_de_la_commune": "MARTINVELLE", "libell_d_acheminement": "MARTINVELLE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88291"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e1febbcdf5ebfcebabb9a1dd28719b1ff5d649", "fields": {"nom_de_la_commune": "MEMENIL", "libell_d_acheminement": "MEMENIL", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88297"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee0917f57a5916f1eb5c2a6a05aa3eb70f79f17", "fields": {"nom_de_la_commune": "MENIL DE SENONES", "libell_d_acheminement": "MENIL DE SENONES", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88300"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eda7571a148d031022e48f3a22e0a27f0a7114a", "fields": {"nom_de_la_commune": "MIRECOURT", "libell_d_acheminement": "MIRECOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88304"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fde3ba1ec36d03bf35acb1e42b745e8fea7c37", "fields": {"nom_de_la_commune": "MONCEL SUR VAIR", "libell_d_acheminement": "MONCEL SUR VAIR", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88305"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0c59d3cb65752caa6daadf6bf5c6f5fb4167ccf", "fields": {"nom_de_la_commune": "MONT LES NEUFCHATEAU", "libell_d_acheminement": "MONT LES NEUFCHATEAU", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88308"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab7ad169fbbede9a2c2aedd4370376477464e8f", "fields": {"nom_de_la_commune": "MOUSSEY", "libell_d_acheminement": "MOUSSEY", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88317"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f534c3441600189f2024494ec41e18ce170952ec", "fields": {"nom_de_la_commune": "MOYEMONT", "libell_d_acheminement": "MOYEMONT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88318"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5937f78d07084c71ed7ddb0b05bc42b464500fe", "fields": {"code_postal": "88600", "code_commune_insee": "88322", "libell_d_acheminement": "LA NEUVEVILLE DEVANT LEPANGES", "ligne_5": "LE BOULAY", "nom_de_la_commune": "LA NEUVEVILLE DEVANT LEPANGES", "coordonnees_gps": [48.2228084318, 6.69811489698]}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a99a3523e9e330a4df5b243d866ef6852baa6c", "fields": {"nom_de_la_commune": "NOMEXY", "libell_d_acheminement": "NOMEXY", "code_postal": "88440", "coordonnees_gps": [48.2939351767, 6.36082179338], "code_commune_insee": "88327"}, "geometry": {"type": "Point", "coordinates": [6.36082179338, 48.2939351767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c60b9be29f83bbae7ac341c88d31f0cbba0d651", "fields": {"nom_de_la_commune": "NONZEVILLE", "libell_d_acheminement": "NONZEVILLE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88331"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92bd1150dde1756bbeb059145401571e8bab0f6f", "fields": {"nom_de_la_commune": "OLLAINVILLE", "libell_d_acheminement": "OLLAINVILLE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88336"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf31b62e3f573df08b83d8facd3bb02fd51ae9ad", "fields": {"nom_de_la_commune": "ORTONCOURT", "libell_d_acheminement": "ORTONCOURT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88338"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddd7cda4743ff71264fc7c6e5379da141a81ac07", "fields": {"nom_de_la_commune": "LA PETITE RAON", "libell_d_acheminement": "LA PETITE RAON", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88346"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2403301accb87bd68a0393fd36f019fe8ee3c10", "fields": {"code_postal": "88370", "code_commune_insee": "88351", "libell_d_acheminement": "PLOMBIERES LES BAINS", "ligne_5": "RUAUX", "nom_de_la_commune": "PLOMBIERES LES BAINS", "coordonnees_gps": [47.9937026909, 6.4494827214]}, "geometry": {"type": "Point", "coordinates": [6.4494827214, 47.9937026909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6953644baca06c836a1d6c855029a6a55f149868", "fields": {"nom_de_la_commune": "POMPIERRE", "libell_d_acheminement": "POMPIERRE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88352"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1d7f4f0d91a04045566b8c0f5165bf85c5163e9", "fields": {"nom_de_la_commune": "POUSSAY", "libell_d_acheminement": "POUSSAY", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88357"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecc36811e3aca6fed3f0bd475177d7b64ec2b5a4", "fields": {"nom_de_la_commune": "PREY", "libell_d_acheminement": "PREY", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88359"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7831daf7c1eaebd7b68a2982cc9d57d3473694de", "fields": {"code_postal": "88490", "code_commune_insee": "88361", "libell_d_acheminement": "PROVENCHERES ET COLROY", "ligne_5": "COLROY LA GRANDE", "nom_de_la_commune": "PROVENCHERES ET COLROY", "coordonnees_gps": [48.3052037465, 7.10759475498]}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1bd2972fe6d33851cdba9c4766032b2935d3621", "fields": {"nom_de_la_commune": "NULLY", "libell_d_acheminement": "NULLY", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52359"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "849df4c8082eb78399ed1b2bf69e4cf24653c502", "fields": {"nom_de_la_commune": "ORMOY LES SEXFONTAINES", "libell_d_acheminement": "ORMOY LES SEXFONTAINES", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52367"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04728941f58888195a2fdc09a2f35b698e0c6a20", "fields": {"nom_de_la_commune": "OUDINCOURT", "libell_d_acheminement": "OUDINCOURT", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52371"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21174ff12910008edbea084c52f6037d4ccbcf18", "fields": {"nom_de_la_commune": "PALAISEUL", "libell_d_acheminement": "PALAISEUL", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52375"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e46c4a171cf69fe69613a665a9f3e38815654678", "fields": {"code_postal": "52200", "code_commune_insee": "52383", "libell_d_acheminement": "PERRANCEY LES VIEUX MOULINS", "ligne_5": "VIEUX MOULINS", "nom_de_la_commune": "PERRANCEY LES VIEUX MOULINS", "coordonnees_gps": [47.8591837688, 5.27130634818]}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4b4b3befb753123d6e8bc670702a4f2fe55bd1", "fields": {"nom_de_la_commune": "PLANRUPT", "libell_d_acheminement": "PLANRUPT", "code_postal": "52220", "coordonnees_gps": [48.4589686366, 4.78360005929], "code_commune_insee": "52391"}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de8294199cd1f10122022b2321165680d6a3f88", "fields": {"nom_de_la_commune": "LE CHATELET SUR MEUSE", "libell_d_acheminement": "LE CHATELET SUR MEUSE", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52400"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba52ebb6b23bd87e06152cc40fd9eda9de58fae8", "fields": {"code_postal": "52400", "code_commune_insee": "52400", "libell_d_acheminement": "LE CHATELET SUR MEUSE", "ligne_5": "POUILLY EN BASSIGNY", "nom_de_la_commune": "LE CHATELET SUR MEUSE", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "224b9ea4b661bb857ad309e8d142a70b0cb532d3", "fields": {"nom_de_la_commune": "PRASLAY", "libell_d_acheminement": "PRASLAY", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52403"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c5270e76ca06f24cf4aca1555b1661ea725e1a8", "fields": {"code_postal": "52190", "code_commune_insee": "52405", "libell_d_acheminement": "LE MONTSAUGEONNAIS", "ligne_5": "MONTSAUGEON", "nom_de_la_commune": "LE MONTSAUGEONNAIS", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182f59f52ba2cd4fa399a521a3114ef6f3e04b3e", "fields": {"code_postal": "52190", "code_commune_insee": "52405", "libell_d_acheminement": "LE MONTSAUGEONNAIS", "ligne_5": "VAUX SOUS AUBIGNY", "nom_de_la_commune": "LE MONTSAUGEONNAIS", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4a51a55665951832127249a5f480fe09d05c3e5", "fields": {"nom_de_la_commune": "PRESSIGNY", "libell_d_acheminement": "PRESSIGNY", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52406"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7365c1ed7952d77778e926a2ce6b7243e407e6", "fields": {"code_postal": "52220", "code_commune_insee": "52411", "libell_d_acheminement": "RIVES DERVOISES", "ligne_5": "LONGEVILLE SUR LA LAINES", "nom_de_la_commune": "RIVES DERVOISES", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925d9b9aa1b039ac39140a5a1f5df64961180d4a", "fields": {"nom_de_la_commune": "RACHECOURT SUZEMONT", "libell_d_acheminement": "RACHECOURT SUZEMONT", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52413"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76014ad49d0e0a1832c43f7541d7c934a5ea648e", "fields": {"nom_de_la_commune": "RANCONNIERES", "libell_d_acheminement": "RANCONNIERES", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52415"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0cdae195ab1fdc1aa82fdded0600fd0aac0dbb", "fields": {"nom_de_la_commune": "REYNEL", "libell_d_acheminement": "REYNEL", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52420"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7a8f83461683fff31f15ee6ee66ba60d713485", "fields": {"nom_de_la_commune": "RIZAUCOURT BUCHEY", "libell_d_acheminement": "RIZAUCOURT BUCHEY", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52426"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a305b36d219056cac36940836dcf9d89d632159", "fields": {"nom_de_la_commune": "ROCHES SUR MARNE", "libell_d_acheminement": "ROCHES SUR MARNE", "code_postal": "52410", "coordonnees_gps": [48.5892998637, 5.03091312346], "code_commune_insee": "52429"}, "geometry": {"type": "Point", "coordinates": [5.03091312346, 48.5892998637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091eb7c8936919e05634f159909386a5850068de", "fields": {"nom_de_la_commune": "ROMAIN SUR MEUSE", "libell_d_acheminement": "ROMAIN SUR MEUSE", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52433"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "246d4bb7759fe64863aec7952000eed22beb22b7", "fields": {"nom_de_la_commune": "ROUELLES", "libell_d_acheminement": "ROUELLES", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52437"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb2c0d6d758b0cdd7d754232a268918c893af06", "fields": {"nom_de_la_commune": "ROUVROY SUR MARNE", "libell_d_acheminement": "ROUVROY SUR MARNE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52440"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed8d0301de50fefb9af18a6b74321ff6f57fd4fd", "fields": {"nom_de_la_commune": "ST BROINGT LE BOIS", "libell_d_acheminement": "ST BROINGT LE BOIS", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52445"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891ad2fa69c814d6a1be9e6ff82144fb44057c69", "fields": {"nom_de_la_commune": "ST BROINGT LES FOSSES", "libell_d_acheminement": "ST BROINGT LES FOSSES", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52446"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f61f0a811abcbfaff265e8c0d97ca9c743b5aca", "fields": {"nom_de_la_commune": "ST CIERGUES", "libell_d_acheminement": "ST CIERGUES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52447"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5655e1a5cfba6a49a9849c68300dd0c95dcc6ed", "fields": {"nom_de_la_commune": "ST MARTIN LES LANGRES", "libell_d_acheminement": "ST MARTIN LES LANGRES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52452"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3162cf03ceb58834989214c5676565e9fea69380", "fields": {"nom_de_la_commune": "SAULLES", "libell_d_acheminement": "SAULLES", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52464"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1460c6cfebb8240e8b5371be5cc343284caed2", "fields": {"nom_de_la_commune": "SAULXURES", "libell_d_acheminement": "SAULXURES", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52465"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0ea443bdca6e274220343cd031797829c6c0df", "fields": {"nom_de_la_commune": "SEXFONTAINES", "libell_d_acheminement": "SEXFONTAINES", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52472"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528cbc93fdcbffd48c1c3a6890f101d6530f0329", "fields": {"nom_de_la_commune": "SOULAUCOURT SUR MOUZON", "libell_d_acheminement": "SOULAUCOURT SUR MOUZON", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52482"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf86d78540150fc9a8b1370e995e898c20bb17df", "fields": {"nom_de_la_commune": "THILLEUX", "libell_d_acheminement": "THILLEUX", "code_postal": "52220", "coordonnees_gps": [48.4589686366, 4.78360005929], "code_commune_insee": "52487"}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0090dcea3d91ab1ecc5d96cf525c0ec102d6e258", "fields": {"nom_de_la_commune": "THONNANCE LES MOULINS", "libell_d_acheminement": "THONNANCE LES MOULINS", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52491"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca8ae6af9602ed5baee79cc5f0baa81ab187c2c", "fields": {"code_postal": "52230", "code_commune_insee": "52491", "libell_d_acheminement": "THONNANCE LES MOULINS", "ligne_5": "BRESSONCOURT", "nom_de_la_commune": "THONNANCE LES MOULINS", "coordonnees_gps": [48.4233848371, 5.31749003055]}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54caa3e4e003f384cb970a73bc497e317b033be", "fields": {"nom_de_la_commune": "VALCOURT", "libell_d_acheminement": "VALCOURT", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52500"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb1862d7b29312ce2aacae1e8d13697148c4a5a", "fields": {"nom_de_la_commune": "VALLERET", "libell_d_acheminement": "VALLERET", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52502"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc363c04cb1c06e33e3275a089003eee3c535283", "fields": {"nom_de_la_commune": "VELLES", "libell_d_acheminement": "VELLES", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52513"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "320ca3b1b5e231855154d319ec8bd65f2ea1e3f8", "fields": {"nom_de_la_commune": "VIGNORY", "libell_d_acheminement": "VIGNORY", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52524"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12e16d9e7daced17de1f29bb0ad9ee51a1896704", "fields": {"nom_de_la_commune": "VILLARS SANTENOGE", "libell_d_acheminement": "VILLARS SANTENOGE", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52526"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f9c750ee493a51403b462f632d13e1255d10b79", "fields": {"code_postal": "52160", "code_commune_insee": "52526", "libell_d_acheminement": "VILLARS SANTENOGE", "ligne_5": "SANTENOGE", "nom_de_la_commune": "VILLARS SANTENOGE", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "952d7f1fcde7f14b4673a9c42884255212c200ad", "fields": {"code_postal": "52190", "code_commune_insee": "52529", "libell_d_acheminement": "VILLEGUSIEN LE LAC", "ligne_5": "PRANGEY", "nom_de_la_commune": "VILLEGUSIEN LE LAC", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4cd7b0f145f076e54ce3ade8b818004c04d9981", "fields": {"nom_de_la_commune": "VILLIERS EN LIEU", "libell_d_acheminement": "VILLIERS EN LIEU", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52534"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d208e7ff1ca5c1c5d0263a2b00d9117e3bfff286", "fields": {"nom_de_la_commune": "VITRY LES NOGENT", "libell_d_acheminement": "VITRY LES NOGENT", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52541"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153a6b8c93657cfc2a0b718a122c119bcf805241", "fields": {"nom_de_la_commune": "VRONCOURT LA COTE", "libell_d_acheminement": "VRONCOURT LA COTE", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52549"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eb7f33a3add779d644d53b34a705725b4f265ff", "fields": {"nom_de_la_commune": "WASSY", "libell_d_acheminement": "WASSY", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52550"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "538ed303b3527a159c31e9e668f0c5e17470b043", "fields": {"nom_de_la_commune": "AMPOIGNE", "libell_d_acheminement": "AMPOIGNE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53004"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945d2dd85dadfddfafeccfcdbb0756c01f0485e6", "fields": {"nom_de_la_commune": "ASSE LE BERENGER", "libell_d_acheminement": "ASSE LE BERENGER", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53010"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9718fb08c33c46073e0e9fe65b17bd8397cc94af", "fields": {"nom_de_la_commune": "ASTILLE", "libell_d_acheminement": "ASTILLE", "code_postal": "53230", "coordonnees_gps": [47.9490046036, -0.924040792242], "code_commune_insee": "53011"}, "geometry": {"type": "Point", "coordinates": [-0.924040792242, 47.9490046036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8726a5818958938e1e88dcd91f263e44e50ffc97", "fields": {"nom_de_la_commune": "AVERTON", "libell_d_acheminement": "AVERTON", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53013"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f140e8f6cad92a42028ea2e5a7885d143ddca8b", "fields": {"nom_de_la_commune": "BALLOTS", "libell_d_acheminement": "BALLOTS", "code_postal": "53350", "coordonnees_gps": [47.8986067834, -1.10393836397], "code_commune_insee": "53018"}, "geometry": {"type": "Point", "coordinates": [-1.10393836397, 47.8986067834]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8a0f7ca4288b581debe6a5e3e8ac7e739d490dc", "fields": {"nom_de_la_commune": "LA BAZOUGE DES ALLEUX", "libell_d_acheminement": "LA BAZOUGE DES ALLEUX", "code_postal": "53470", "coordonnees_gps": [48.1996610785, -0.64326294123], "code_commune_insee": "53023"}, "geometry": {"type": "Point", "coordinates": [-0.64326294123, 48.1996610785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d900a9a0bd8415bb084c8ca79257d94d6838935", "fields": {"nom_de_la_commune": "BIERNE", "libell_d_acheminement": "BIERNE", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53029"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24719878050eb6c37ddd1612152af04e26451934", "fields": {"nom_de_la_commune": "LE BIGNON DU MAINE", "libell_d_acheminement": "LE BIGNON DU MAINE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53030"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07025a852d1349e743942084044da4c0175275a5", "fields": {"nom_de_la_commune": "LA BIGOTTIERE", "libell_d_acheminement": "LA BIGOTTIERE", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53031"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7977f83a7cba660b440a035b1e4456b66fca5f95", "fields": {"nom_de_la_commune": "BOUCHAMPS LES CRAON", "libell_d_acheminement": "BOUCHAMPS LES CRAON", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53035"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5c1b032fbb88295f55f2a78fda06c7234d796fa", "fields": {"nom_de_la_commune": "BOUERE", "libell_d_acheminement": "BOUERE", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53036"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a04a7872701ae25be78035118967042c5013252", "fields": {"nom_de_la_commune": "BOULAY LES IFS", "libell_d_acheminement": "BOULAY LES IFS", "code_postal": "53370", "coordonnees_gps": [48.4038350742, -0.121705571791], "code_commune_insee": "53038"}, "geometry": {"type": "Point", "coordinates": [-0.121705571791, 48.4038350742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a77c6b35858261444a4dc7fa3c5161ab4b23668", "fields": {"nom_de_la_commune": "CHAMPEON", "libell_d_acheminement": "CHAMPEON", "code_postal": "53640", "coordonnees_gps": [48.3702796098, -0.466991822845], "code_commune_insee": "53051"}, "geometry": {"type": "Point", "coordinates": [-0.466991822845, 48.3702796098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "989e27020ce8e61cfe80b4b31f55d1477a35561a", "fields": {"nom_de_la_commune": "CHAMPFREMONT", "libell_d_acheminement": "CHAMPFREMONT", "code_postal": "53370", "coordonnees_gps": [48.4038350742, -0.121705571791], "code_commune_insee": "53052"}, "geometry": {"type": "Point", "coordinates": [-0.121705571791, 48.4038350742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b41c8dd0abe883b5fc4d8f7643214e4d743de6f9", "fields": {"nom_de_la_commune": "CHANGE", "libell_d_acheminement": "CHANGE", "code_postal": "53810", "coordonnees_gps": [48.1076010926, -0.799424532764], "code_commune_insee": "53054"}, "geometry": {"type": "Point", "coordinates": [-0.799424532764, 48.1076010926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a1f0d208bbc241183d2049755135c43994560ee", "fields": {"nom_de_la_commune": "LA CHAPELLE CRAONNAISE", "libell_d_acheminement": "LA CHAPELLE CRAONNAISE", "code_postal": "53230", "coordonnees_gps": [47.9490046036, -0.924040792242], "code_commune_insee": "53058"}, "geometry": {"type": "Point", "coordinates": [-0.924040792242, 47.9490046036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70a19a0d889881b2873d61a14b2028e51017b55", "fields": {"nom_de_la_commune": "CHARCHIGNE", "libell_d_acheminement": "CHARCHIGNE", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53061"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c97639dbc82ebe3ef5541dd17834fd9c3d6898", "fields": {"nom_de_la_commune": "CHATEAU GONTIER", "libell_d_acheminement": "CHATEAU GONTIER", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53062"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba1d93db2e75e89cad455504894e6745f8a22d2", "fields": {"nom_de_la_commune": "CHATELAIN", "libell_d_acheminement": "CHATELAIN", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53063"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa9d5aec199e114b5a55f4e2df17a9cda3868be1", "fields": {"nom_de_la_commune": "CHERANCE", "libell_d_acheminement": "CHERANCE", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53068"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d380056cb2da53bd431d75acbfbb68eee1ab9f", "fields": {"nom_de_la_commune": "CONGRIER", "libell_d_acheminement": "CONGRIER", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53073"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce97376593b0882265c8eaf1b52f85f653b6ac55", "fields": {"nom_de_la_commune": "COUPTRAIN", "libell_d_acheminement": "COUPTRAIN", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53080"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc21d1e1285552566d973c264410c8928023ec20", "fields": {"nom_de_la_commune": "CRENNES SUR FRAUBEE", "libell_d_acheminement": "CRENNES SUR FRAUBEE", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53085"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8852bcfe580303343ecb6df316d9f6ca188178a8", "fields": {"nom_de_la_commune": "ENTRAMMES", "libell_d_acheminement": "ENTRAMMES", "code_postal": "53260", "coordonnees_gps": [48.0032103275, -0.692724123682], "code_commune_insee": "53094"}, "geometry": {"type": "Point", "coordinates": [-0.692724123682, 48.0032103275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f909c8fe3b13c788ab34b48b6b09761676cb1bff", "fields": {"nom_de_la_commune": "GORRON", "libell_d_acheminement": "GORRON", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53107"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c074afdf3af3c5f0103a28e039719816b0ad00f0", "fields": {"nom_de_la_commune": "HAMBERS", "libell_d_acheminement": "HAMBERS", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53113"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7562097c9becc87f4d56195365176639c1e8eab", "fields": {"nom_de_la_commune": "HERCE", "libell_d_acheminement": "HERCE", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53115"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033526c9aaec134376c46aad765875596caedd03", "fields": {"nom_de_la_commune": "LE HOUSSEAU BRETIGNOLLES", "libell_d_acheminement": "LE HOUSSEAU BRETIGNOLLES", "code_postal": "53110", "coordonnees_gps": [48.4617357482, -0.486776188303], "code_commune_insee": "53118"}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fffca9e6105ed4f259186288b1b96d039d5e842a", "fields": {"nom_de_la_commune": "LESBOIS", "libell_d_acheminement": "LESBOIS", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53131"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848fe2a1f41b6f704e312a298dd803b493471c52", "fields": {"nom_de_la_commune": "LEVARE", "libell_d_acheminement": "LEVARE", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53132"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ddacd55c30b804194ee9a5305f023560a0338fd", "fields": {"code_postal": "53140", "code_commune_insee": "53133", "libell_d_acheminement": "LIGNIERES ORGERES", "ligne_5": "ORGERES LA ROCHE", "nom_de_la_commune": "LIGNIERES ORGERES", "coordonnees_gps": [48.4797003216, -0.222461490352]}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0901dee846bc9f9bfe395ca96f13c22210049aea", "fields": {"nom_de_la_commune": "LONGUEFUYE", "libell_d_acheminement": "LONGUEFUYE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53138"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec7d83761badabb62f475ae19995a6eca17668eb", "fields": {"nom_de_la_commune": "LOUVERNE", "libell_d_acheminement": "LOUVERNE", "code_postal": "53950", "coordonnees_gps": [48.1285774332, -0.685956019561], "code_commune_insee": "53140"}, "geometry": {"type": "Point", "coordinates": [-0.685956019561, 48.1285774332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e01c70f4a48b722649344c96064a7aea3b45c64c", "fields": {"nom_de_la_commune": "MARTIGNE SUR MAYENNE", "libell_d_acheminement": "MARTIGNE SUR MAYENNE", "code_postal": "53470", "coordonnees_gps": [48.1996610785, -0.64326294123], "code_commune_insee": "53146"}, "geometry": {"type": "Point", "coordinates": [-0.64326294123, 48.1996610785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2d62cc9210928c82f1c0149a4e80dccaf539f99", "fields": {"nom_de_la_commune": "MONTOURTIER", "libell_d_acheminement": "MONTOURTIER", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53159"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a22779bce20d259ae2edc2871c03cef3065c72b0", "fields": {"nom_de_la_commune": "NEUILLY LE VENDIN", "libell_d_acheminement": "NEUILLY LE VENDIN", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53164"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d391e3fac1ea4f4173cc78cfae8212d113352e0", "fields": {"nom_de_la_commune": "PARNE SUR ROC", "libell_d_acheminement": "PARNE SUR ROC", "code_postal": "53260", "coordonnees_gps": [48.0032103275, -0.692724123682], "code_commune_insee": "53175"}, "geometry": {"type": "Point", "coordinates": [-0.692724123682, 48.0032103275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2dae2253ae85f8a335eee8e42b4ab8937e366a7", "fields": {"nom_de_la_commune": "LA PELLERINE", "libell_d_acheminement": "LA PELLERINE", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53177"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "738bb2cf539d10bf7261ee0fbe137d834c2912fd", "fields": {"nom_de_la_commune": "PORT BRILLET", "libell_d_acheminement": "PORT BRILLET", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53182"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3d1a4fc9252e30ea3ad8a6817416eeaa58a80d", "fields": {"nom_de_la_commune": "QUELAINES ST GAULT", "libell_d_acheminement": "QUELAINES ST GAULT", "code_postal": "53360", "coordonnees_gps": [47.9163829894, -0.78422271898], "code_commune_insee": "53186"}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007107b26c8f932708f92c81e28da976e8d5fda4", "fields": {"nom_de_la_commune": "LA ROE", "libell_d_acheminement": "LA ROE", "code_postal": "53350", "coordonnees_gps": [47.8986067834, -1.10393836397], "code_commune_insee": "53191"}, "geometry": {"type": "Point", "coordinates": [-1.10393836397, 47.8986067834]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8680850d455a22502c7233b7994715fb1d71f4da", "fields": {"nom_de_la_commune": "ST AIGNAN DE COUPTRAIN", "libell_d_acheminement": "ST AIGNAN DE COUPTRAIN", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53196"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ae43aa171f34b31d66224afea683d124551d065", "fields": {"nom_de_la_commune": "ST BERTHEVIN LA TANNIERE", "libell_d_acheminement": "ST BERTHEVIN LA TANNIERE", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53202"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3066e71d5b994ebca4478a644d238414c61eb4", "fields": {"nom_de_la_commune": "ST CYR EN PAIL", "libell_d_acheminement": "ST CYR EN PAIL", "code_postal": "53140", "coordonnees_gps": [48.4797003216, -0.222461490352], "code_commune_insee": "53208"}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1627e45a8cba6836f0c5578788f8b05c786cebb6", "fields": {"nom_de_la_commune": "ST CYR LE GRAVELAIS", "libell_d_acheminement": "ST CYR LE GRAVELAIS", "code_postal": "53320", "coordonnees_gps": [48.0269054563, -0.962440957136], "code_commune_insee": "53209"}, "geometry": {"type": "Point", "coordinates": [-0.962440957136, 48.0269054563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6abb32c0abe7534f304eb724024d59a62e8d78", "fields": {"nom_de_la_commune": "ST GEORGES BUTTAVENT", "libell_d_acheminement": "ST GEORGES BUTTAVENT", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53219"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c8214a1ee754220693a6b4c9e205986ef82cd8", "fields": {"nom_de_la_commune": "ST JULIEN DU TERROUX", "libell_d_acheminement": "ST JULIEN DU TERROUX", "code_postal": "53110", "coordonnees_gps": [48.4617357482, -0.486776188303], "code_commune_insee": "53230"}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "266a8f0b0d693fd89bdd74d61f98322a90e29cd7", "fields": {"nom_de_la_commune": "ST MARS SUR COLMONT", "libell_d_acheminement": "ST MARS SUR COLMONT", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53237"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e30ea80f7a44d6b1def9628ba021e48fe79b514", "fields": {"nom_de_la_commune": "ST MARS SUR LA FUTAIE", "libell_d_acheminement": "ST MARS SUR LA FUTAIE", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53238"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe992387aa927d4ca8eb57cc20175c80538abfea", "fields": {"nom_de_la_commune": "ST PIERRE SUR ERVE", "libell_d_acheminement": "ST PIERRE SUR ERVE", "code_postal": "53270", "coordonnees_gps": [48.066547004, -0.33227388574], "code_commune_insee": "53248"}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84891692d7f86cde4b808b44b49b2845fcf93321", "fields": {"nom_de_la_commune": "TORCE VIVIERS EN CHARNIE", "libell_d_acheminement": "TORCE VIVIERS EN CHARNIE", "code_postal": "53270", "coordonnees_gps": [48.066547004, -0.33227388574], "code_commune_insee": "53265"}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffa4247c856e15b56d82f675b42a1c38850173ad", "fields": {"code_postal": "53270", "code_commune_insee": "53265", "libell_d_acheminement": "TORCE VIVIERS EN CHARNIE", "ligne_5": "VIVIERS EN CHARNIE", "nom_de_la_commune": "TORCE VIVIERS EN CHARNIE", "coordonnees_gps": [48.066547004, -0.33227388574]}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cd28f5ec491c85774290d3d0e87db255cd33a96", "fields": {"nom_de_la_commune": "VAUTORTE", "libell_d_acheminement": "VAUTORTE", "code_postal": "53500", "coordonnees_gps": [48.3059363855, -0.916419053315], "code_commune_insee": "53269"}, "geometry": {"type": "Point", "coordinates": [-0.916419053315, 48.3059363855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c461b6d58f5c5f377939a7269d0d59ef8e5af808", "fields": {"nom_de_la_commune": "VIEUVY", "libell_d_acheminement": "VIEUVY", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53270"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12f1df46b9809e42200a0f77aad5d46a752a1126", "fields": {"nom_de_la_commune": "VILLEPAIL", "libell_d_acheminement": "VILLEPAIL", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53272"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da2c88a33cf9cd27820791a72fcb173d4a5a79a5", "fields": {"nom_de_la_commune": "VILLIERS CHARLEMAGNE", "libell_d_acheminement": "VILLIERS CHARLEMAGNE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53273"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdd5172cb3d1e367ab504325c0d4ad3556edeebe", "fields": {"nom_de_la_commune": "ABBEVILLE LES CONFLANS", "libell_d_acheminement": "ABBEVILLE LES CONFLANS", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54002"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c20d2c60d04c788cfd59a3a3119d67aa8462d3a", "fields": {"nom_de_la_commune": "DOMPIERRE SOUS SANVIGNES", "libell_d_acheminement": "DOMPIERRE SOUS SANVIGNES", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71179"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf6bfdd6892c9cba0dbc47417098929e2eabc51", "fields": {"nom_de_la_commune": "FARGES LES CHALON", "libell_d_acheminement": "FARGES LES CHALON", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71194"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea93ce995ff0f4e3b2afa7c2804a5d0cb437fec", "fields": {"nom_de_la_commune": "FARGES LES MACON", "libell_d_acheminement": "FARGES LES MACON", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71195"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed0ef43bf11e1f8b81e83aa835f85620e334a0e", "fields": {"nom_de_la_commune": "FONTENAY", "libell_d_acheminement": "FONTENAY", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71203"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ae8fa60479144e08c78be393c4524e60f75e1b", "fields": {"nom_de_la_commune": "FUISSE", "libell_d_acheminement": "FUISSE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71210"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba2e963b115554e94a736eb6cb33e11af6f54c02", "fields": {"nom_de_la_commune": "GERMOLLES SUR GROSNE", "libell_d_acheminement": "GERMOLLES SUR GROSNE", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71217"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35fad5f1e18717e1d7001d2bf9f2ea9c6f27fd14", "fields": {"nom_de_la_commune": "GILLY SUR LOIRE", "libell_d_acheminement": "GILLY SUR LOIRE", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71220"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a843c24eaa38c6d071f31dddd2c00244a6ca62", "fields": {"nom_de_la_commune": "GIVRY", "libell_d_acheminement": "GIVRY", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71221"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d35b4d0265a2ad7bfbdd6c125ba47aa665c8731f", "fields": {"nom_de_la_commune": "GUERFAND", "libell_d_acheminement": "GUERFAND", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71228"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10076912681117d0e000819bbd6268cea04308a5", "fields": {"nom_de_la_commune": "HAUTEFOND", "libell_d_acheminement": "HAUTEFOND", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71232"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbaa655f88314bab5782380a3753073da643392d", "fields": {"nom_de_la_commune": "IGUERANDE", "libell_d_acheminement": "IGUERANDE", "code_postal": "71340", "coordonnees_gps": [46.211474132, 4.04415638595], "code_commune_insee": "71238"}, "geometry": {"type": "Point", "coordinates": [4.04415638595, 46.211474132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcb0153d8c49ae493d8bb59b4f691878a6452c1c", "fields": {"nom_de_la_commune": "ISSY L EVEQUE", "libell_d_acheminement": "ISSY L EVEQUE", "code_postal": "71760", "coordonnees_gps": [46.6998808869, 3.94523218405], "code_commune_insee": "71239"}, "geometry": {"type": "Point", "coordinates": [3.94523218405, 46.6998808869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24507fbaaff1cbfb5c62fec650f9cbd0ae23f041", "fields": {"nom_de_la_commune": "JAMBLES", "libell_d_acheminement": "JAMBLES", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71241"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "141da077e9670c0c950cfbfa25586d2d694e8f74", "fields": {"nom_de_la_commune": "JULLY LES BUXY", "libell_d_acheminement": "JULLY LES BUXY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71247"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb83571e9f15f0784748a9bde70efc2efd494369", "fields": {"nom_de_la_commune": "LEYNES", "libell_d_acheminement": "LEYNES", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71258"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d7c086f20dedd6f5a1c934c8a34b0d1764718f", "fields": {"nom_de_la_commune": "LIGNY EN BRIONNAIS", "libell_d_acheminement": "LIGNY EN BRIONNAIS", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71259"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fd38b477249539b2ed6b593f57f56076d2ec2c4", "fields": {"nom_de_la_commune": "LUGNY LES CHAROLLES", "libell_d_acheminement": "LUGNY LES CHAROLLES", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71268"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0b4bd93f2f1ae7379052b174b67d83f0a9a8eb7", "fields": {"nom_de_la_commune": "MANCEY", "libell_d_acheminement": "MANCEY", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71274"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4584aba1f803ba5d7a07e5b5e8a9341d31091192", "fields": {"nom_de_la_commune": "MARCIGNY", "libell_d_acheminement": "MARCIGNY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71275"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f87cdc03de10330005e2d3932c3a04acef19087", "fields": {"nom_de_la_commune": "MARCILLY LES BUXY", "libell_d_acheminement": "MARCILLY LES BUXY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71277"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0e37e7b82c5fc435c03a28655a5f850f2f40fef", "fields": {"nom_de_la_commune": "MARLY SOUS ISSY", "libell_d_acheminement": "MARLY SOUS ISSY", "code_postal": "71760", "coordonnees_gps": [46.6998808869, 3.94523218405], "code_commune_insee": "71280"}, "geometry": {"type": "Point", "coordinates": [3.94523218405, 46.6998808869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7aa434b3320fed029a10f47c2db5120a9572a48", "fields": {"nom_de_la_commune": "MARLY SUR ARROUX", "libell_d_acheminement": "MARLY SUR ARROUX", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71281"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e09dc00ffe5104f3919cf339dae5a11463ad060", "fields": {"nom_de_la_commune": "MARY", "libell_d_acheminement": "MARY", "code_postal": "71300", "coordonnees_gps": [46.6732150919, 4.39767167499], "code_commune_insee": "71286"}, "geometry": {"type": "Point", "coordinates": [4.39767167499, 46.6732150919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1992420aecbaf28e6ddc158db8c3ca2e7dee932", "fields": {"nom_de_la_commune": "MASSILLY", "libell_d_acheminement": "MASSILLY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71287"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f782df810fc1b1be792d93f4a727aca142a1153", "fields": {"nom_de_la_commune": "LE MIROIR", "libell_d_acheminement": "LE MIROIR", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71300"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "289e4b603afb594aca3a97c509b6cb059b69cba2", "fields": {"nom_de_la_commune": "MONTAGNY LES BUXY", "libell_d_acheminement": "MONTAGNY LES BUXY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71302"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5cf40b974eb26782252faa79b147de000f4e806", "fields": {"nom_de_la_commune": "MONTAGNY PRES LOUHANS", "libell_d_acheminement": "MONTAGNY PRES LOUHANS", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71303"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "490652fb337456a482c2ef3e360a266ac9495c9f", "fields": {"nom_de_la_commune": "MONTAGNY SUR GROSNE", "libell_d_acheminement": "MONTAGNY SUR GROSNE", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71304"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "752c9928769b7bd81ca92defedec9e543bea5bcf", "fields": {"nom_de_la_commune": "MONTBELLET", "libell_d_acheminement": "MONTBELLET", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71305"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90ec3e8a1d415c9ff8bfaa00e127472ef1e86b16", "fields": {"nom_de_la_commune": "MONTCEAUX RAGNY", "libell_d_acheminement": "MONTCEAUX RAGNY", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71308"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cb4f91ded3c289b99db0d6ae45ddda0f3d08d00", "fields": {"nom_de_la_commune": "MONTCONY", "libell_d_acheminement": "MONTCONY", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71311"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea68e405bb437474348975a6923967b4dd8e3162", "fields": {"nom_de_la_commune": "MONTHELON", "libell_d_acheminement": "MONTHELON", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71313"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "418cad6afc3406f3049c21420098586bf89d3c14", "fields": {"nom_de_la_commune": "MONTMORT", "libell_d_acheminement": "MONTMORT", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71317"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d94dd1b458def8c39effc598434a7552d2a81f96", "fields": {"nom_de_la_commune": "MONTRET", "libell_d_acheminement": "MONTRET", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71319"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb4121f811a8ffc305fae3bb26f2073680f58799", "fields": {"nom_de_la_commune": "LA MOTTE ST JEAN", "libell_d_acheminement": "LA MOTTE ST JEAN", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71325"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb87a81493c921ec30c85472831e260060ea46e1", "fields": {"nom_de_la_commune": "ORMES", "libell_d_acheminement": "ORMES", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71332"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea87962bf23c35fa03381c856c7c65553c88f4f", "fields": {"nom_de_la_commune": "OUDRY", "libell_d_acheminement": "OUDRY", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71334"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79fec55f0de73bc5ca11714564f490adef9a7c9f", "fields": {"nom_de_la_commune": "OYE", "libell_d_acheminement": "OYE", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71337"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb010dd4479e4d192b5d3b8d48c82b70163593f", "fields": {"nom_de_la_commune": "PARAY LE MONIAL", "libell_d_acheminement": "PARAY LE MONIAL", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71342"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e486049ed92dc6671207b48c9e6a3b35b86df8", "fields": {"nom_de_la_commune": "PERRECY LES FORGES", "libell_d_acheminement": "PERRECY LES FORGES", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71346"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "390d264d577d4b85be7855c1986fed5981500bd5", "fields": {"nom_de_la_commune": "LA PETITE VERRIERE", "libell_d_acheminement": "LA PETITE VERRIERE", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71349"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "043249d672a0eb42454d98da0d67655e50b02b1b", "fields": {"code_postal": "71270", "code_commune_insee": "71351", "libell_d_acheminement": "PIERRE DE BRESSE", "ligne_5": "TERRANS", "nom_de_la_commune": "PIERRE DE BRESSE", "coordonnees_gps": [46.8994601906, 5.25743617076]}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62a7562272948fe61f420b8f0c3ba399db8ed61c", "fields": {"nom_de_la_commune": "PRETY", "libell_d_acheminement": "PRETY", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71359"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab104b3d6232e10a4b70495b9fba37cfb1e16acf", "fields": {"nom_de_la_commune": "LA RACINEUSE", "libell_d_acheminement": "LA RACINEUSE", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71364"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b1ec9add3d5102f204c30c23c1075be83479ca6", "fields": {"nom_de_la_commune": "ROYER", "libell_d_acheminement": "ROYER", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71377"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec79673bbb7441a22148970693012634113c2f86", "fields": {"nom_de_la_commune": "ST ALBAIN", "libell_d_acheminement": "ST ALBAIN", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71383"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8000d663d4c6b82cb327d180f5f4903f8076815", "fields": {"nom_de_la_commune": "ST AMOUR BELLEVUE", "libell_d_acheminement": "ST AMOUR BELLEVUE", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71385"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e314e6ecc4fe5cd455619d5ce12eb8273b011036", "fields": {"nom_de_la_commune": "ST BERAIN SOUS SANVIGNES", "libell_d_acheminement": "ST BERAIN SOUS SANVIGNES", "code_postal": "71300", "coordonnees_gps": [46.6732150919, 4.39767167499], "code_commune_insee": "71390"}, "geometry": {"type": "Point", "coordinates": [4.39767167499, 46.6732150919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592ffabbcd5bb3d07ce864098d78e24cfa2ab999", "fields": {"nom_de_la_commune": "ST BONNET EN BRESSE", "libell_d_acheminement": "ST BONNET EN BRESSE", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71396"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56467107649950c9187ebfae8a77bb64d6d59b36", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "71470", "coordonnees_gps": [46.5407527997, 5.13778374719], "code_commune_insee": "71401"}, "geometry": {"type": "Point", "coordinates": [5.13778374719, 46.5407527997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21d2e4cbc3b6df268da27361225f0055bdde0e6e", "fields": {"nom_de_la_commune": "ST DENIS DE VAUX", "libell_d_acheminement": "ST DENIS DE VAUX", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71403"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d3de81ccd5477e078bd7695bd46e6b83b127d0", "fields": {"nom_de_la_commune": "ST DIDIER SUR ARROUX", "libell_d_acheminement": "ST DIDIER SUR ARROUX", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71407"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d98804440ec5604a071ba7782be3d8c9045a9c", "fields": {"nom_de_la_commune": "ST EDMOND", "libell_d_acheminement": "ST EDMOND", "code_postal": "71740", "coordonnees_gps": [46.2095862576, 4.24377069569], "code_commune_insee": "71408"}, "geometry": {"type": "Point", "coordinates": [4.24377069569, 46.2095862576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5550dae44d7d6809e0245cc17c8e4799d1c95691", "fields": {"nom_de_la_commune": "ST FORGEOT", "libell_d_acheminement": "ST FORGEOT", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71414"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7778c5f1279c140d928b9e1819c98ebc180a32b0", "fields": {"nom_de_la_commune": "ST GERMAIN DU BOIS", "libell_d_acheminement": "ST GERMAIN DU BOIS", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71419"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476b378793e2dd40fc5f6c45565425848772a0a5", "fields": {"nom_de_la_commune": "ST GERMAIN EN BRIONNAIS", "libell_d_acheminement": "ST GERMAIN EN BRIONNAIS", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71421"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce2e37436417bf74e1246695abb1b70e3f6ff7c", "fields": {"nom_de_la_commune": "ST GERMAIN LES BUXY", "libell_d_acheminement": "ST GERMAIN LES BUXY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71422"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0778af7296bcbd8a93f56e043ee65ed9780939f9", "fields": {"nom_de_la_commune": "ST GERVAIS EN VALLIERE", "libell_d_acheminement": "ST GERVAIS EN VALLIERE", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71423"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31b24c7368c2e92a9dcf3d69e17d06393c15dafe", "fields": {"nom_de_la_commune": "ST LAURENT D ANDENAY", "libell_d_acheminement": "ST LAURENT D ANDENAY", "code_postal": "71210", "coordonnees_gps": [46.7455963584, 4.48062710036], "code_commune_insee": "71436"}, "geometry": {"type": "Point", "coordinates": [4.48062710036, 46.7455963584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25b6172084d87df96881d02e380cf7f84437438c", "fields": {"nom_de_la_commune": "BAILLEUL SIR BERTHOULT", "libell_d_acheminement": "BAILLEUL SIR BERTHOULT", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62073"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dff2a4d01fa807f8f7528df1e38feee42d6c70b1", "fields": {"nom_de_la_commune": "BAINGHEN", "libell_d_acheminement": "BAINGHEN", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62076"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001d96ad61f439b11b709f260dc8d7e0ff9813bd", "fields": {"nom_de_la_commune": "BAYENGHEM LES EPERLECQUES", "libell_d_acheminement": "BAYENGHEM LES EPERLECQUES", "code_postal": "62910", "coordonnees_gps": [50.7991488939, 2.16031831269], "code_commune_insee": "62087"}, "geometry": {"type": "Point", "coordinates": [2.16031831269, 50.7991488939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7555390a2c0c1fbb9b5d217293e28616b564be6", "fields": {"nom_de_la_commune": "BEAUMETZ LES AIRE", "libell_d_acheminement": "BEAUMETZ LES AIRE", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62095"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bc83bd6d5b1dfc48833e7e424da645aa8f21973", "fields": {"nom_de_la_commune": "BEAURAINVILLE", "libell_d_acheminement": "BEAURAINVILLE", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62100"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18776ef9a4885ecb64d228f6a9b125336293ff45", "fields": {"nom_de_la_commune": "BECOURT", "libell_d_acheminement": "BECOURT", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62102"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb7010a7345ee20a5b9d985c0a5617b11d21f5a", "fields": {"nom_de_la_commune": "BELLEBRUNE", "libell_d_acheminement": "BELLEBRUNE", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62104"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d426a0098a9b56f35909386c5bad66b306a25847", "fields": {"nom_de_la_commune": "BERGUENEUSE", "libell_d_acheminement": "BERGUENEUSE", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62109"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31ff617ef5473f51081065c1062938c9bf28ba6b", "fields": {"nom_de_la_commune": "BERTINCOURT", "libell_d_acheminement": "BERTINCOURT", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62117"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0138f3a40dacafe16457bf3bf5e88fbe707c59f6", "fields": {"nom_de_la_commune": "BETHUNE", "libell_d_acheminement": "BETHUNE", "code_postal": "62400", "coordonnees_gps": [50.5494833407, 2.65621048886], "code_commune_insee": "62119"}, "geometry": {"type": "Point", "coordinates": [2.65621048886, 50.5494833407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4a17abc325ea80be63406f76db5658f67f344cb", "fields": {"nom_de_la_commune": "BEUGIN", "libell_d_acheminement": "BEUGIN", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62120"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "190f1b3628b4521a120f52cecc3521db0f2f0ce6", "fields": {"nom_de_la_commune": "BEUGNY", "libell_d_acheminement": "BEUGNY", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62122"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "205abedca5cc07968d6dca924352229ac626db37", "fields": {"nom_de_la_commune": "BEUVREQUEN", "libell_d_acheminement": "BEUVREQUEN", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62125"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2192265f2048f8444bfba479f3cba9150e5a4bb", "fields": {"nom_de_la_commune": "BIACHE ST VAAST", "libell_d_acheminement": "BIACHE ST VAAST", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62128"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5fcf4398918ac2d6191dffe57cc9ce3d450d08e", "fields": {"nom_de_la_commune": "BIHUCOURT", "libell_d_acheminement": "BIHUCOURT", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62131"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a40be3bca457763748ed76c5a31f18f70c6fdcb1", "fields": {"nom_de_la_commune": "BIMONT", "libell_d_acheminement": "BIMONT", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62134"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c2a12a083cd3e589ba3d5458e3ce05e06250355", "fields": {"nom_de_la_commune": "BOFFLES", "libell_d_acheminement": "BOFFLES", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62143"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a778e2fb88e733751888ad560c068923c0a433f", "fields": {"nom_de_la_commune": "BOISLEUX AU MONT", "libell_d_acheminement": "BOISLEUX AU MONT", "code_postal": "62175", "coordonnees_gps": [50.2052015663, 2.76287210363], "code_commune_insee": "62151"}, "geometry": {"type": "Point", "coordinates": [2.76287210363, 50.2052015663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bf93efc08be835e798273055c33a46ec1c55941", "fields": {"nom_de_la_commune": "BONNIERES", "libell_d_acheminement": "BONNIERES", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62154"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79dd7728cbbd9597236c8bd451929231130917c6", "fields": {"nom_de_la_commune": "BOURLON", "libell_d_acheminement": "BOURLON", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62164"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dc1445f16fc0fece316d1a98218de2a3aabfcb2", "fields": {"nom_de_la_commune": "BOURSIN", "libell_d_acheminement": "BOURSIN", "code_postal": "62132", "coordonnees_gps": [50.8069626714, 1.83185894738], "code_commune_insee": "62167"}, "geometry": {"type": "Point", "coordinates": [1.83185894738, 50.8069626714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c03d94bc6cf8ff432dda667439efef4dbe569241", "fields": {"nom_de_la_commune": "BOURTHES", "libell_d_acheminement": "BOURTHES", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62168"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0428cf0a8e594a6023a207e9953a81f9d4576a78", "fields": {"nom_de_la_commune": "BOUVELINGHEM", "libell_d_acheminement": "BOUVELINGHEM", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62169"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c863935ed46c73f44e19908c9dac7cd1b012c685", "fields": {"nom_de_la_commune": "BOYELLES", "libell_d_acheminement": "BOYELLES", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62172"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99f7486ea243032b40f1587a1c001315e9a28fb1", "fields": {"nom_de_la_commune": "BREBIERES", "libell_d_acheminement": "BREBIERES", "code_postal": "62117", "coordonnees_gps": [50.3378113552, 3.01977264157], "code_commune_insee": "62173"}, "geometry": {"type": "Point", "coordinates": [3.01977264157, 50.3378113552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2447c5bc471ff9de67109670e44194635d5b86f4", "fields": {"nom_de_la_commune": "BREXENT ENOCQ", "libell_d_acheminement": "BREXENT ENOCQ", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62176"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3fb06a4bf7dc4274ad34c9432794d9d14348984", "fields": {"nom_de_la_commune": "BULLY LES MINES", "libell_d_acheminement": "BULLY LES MINES", "code_postal": "62160", "coordonnees_gps": [50.434305501, 2.71988094941], "code_commune_insee": "62186"}, "geometry": {"type": "Point", "coordinates": [2.71988094941, 50.434305501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a3793072e473ecec9f35da0c5538adea1d682af", "fields": {"nom_de_la_commune": "CAFFIERS", "libell_d_acheminement": "CAFFIERS", "code_postal": "62132", "coordonnees_gps": [50.8069626714, 1.83185894738], "code_commune_insee": "62191"}, "geometry": {"type": "Point", "coordinates": [1.83185894738, 50.8069626714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96340aee4b417e0ce7b0490449d8c824b13728c", "fields": {"nom_de_la_commune": "CALAIS", "libell_d_acheminement": "CALAIS", "code_postal": "62100", "coordonnees_gps": [50.9500651474, 1.87611226111], "code_commune_insee": "62193"}, "geometry": {"type": "Point", "coordinates": [1.87611226111, 50.9500651474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ad3747dff2593f89728cc1374d2f25565f622c", "fields": {"nom_de_la_commune": "LA CALOTTERIE", "libell_d_acheminement": "LA CALOTTERIE", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62196"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "626e74da93fd27a06801facc1ac1e11e97a7b86e", "fields": {"nom_de_la_commune": "CAMBLAIN L ABBE", "libell_d_acheminement": "CAMBLAIN L ABBE", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62199"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7aadfad009b2543436634cbdba7ee579c45225a", "fields": {"code_postal": "62176", "code_commune_insee": "62201", "libell_d_acheminement": "CAMIERS", "ligne_5": "STE CECILE", "nom_de_la_commune": "CAMIERS", "coordonnees_gps": [50.5643841007, 1.61258915324]}, "geometry": {"type": "Point", "coordinates": [1.61258915324, 50.5643841007]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97953d935c764d82e3e6f76954bb8951d3957d95", "fields": {"nom_de_la_commune": "CAMPAGNE LES HESDIN", "libell_d_acheminement": "CAMPAGNE LES HESDIN", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62204"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "292fb4b575ef8a73358b99941e0b5bfab8847e04", "fields": {"nom_de_la_commune": "CARLY", "libell_d_acheminement": "CARLY", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62214"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac3f92538586a600b8719831091db3f966fff35", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62219"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3c2078ce51410926389bb186c631704b3904b41", "fields": {"nom_de_la_commune": "CAVRON ST MARTIN", "libell_d_acheminement": "CAVRON ST MARTIN", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62220"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "decea7ac76cc4105dfe1088aa8b11c2dd17a2cbf", "fields": {"nom_de_la_commune": "CHELERS", "libell_d_acheminement": "CHELERS", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62221"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3b1055c3c7f7d028fffa40cb359c04a12f2a4ad", "fields": {"nom_de_la_commune": "CHERISY", "libell_d_acheminement": "CHERISY", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62223"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "203c5c55981290f1edd2ff94242f1f9c4759a44e", "fields": {"nom_de_la_commune": "CONTES", "libell_d_acheminement": "CONTES", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62236"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a05e056e2034f947414b481521b77f910481def9", "fields": {"nom_de_la_commune": "CORBEHEM", "libell_d_acheminement": "CORBEHEM", "code_postal": "62112", "coordonnees_gps": [50.3205971806, 3.05553687028], "code_commune_insee": "62240"}, "geometry": {"type": "Point", "coordinates": [3.05553687028, 50.3205971806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58a896c5a46687bb97bbdaa8dfe8197397cf26d2", "fields": {"nom_de_la_commune": "COULLEMONT", "libell_d_acheminement": "COULLEMONT", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62243"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bec0484a6df4ea5878c02aba7fd04a67984834d", "fields": {"nom_de_la_commune": "BRENNILIS", "libell_d_acheminement": "BRENNILIS", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29018"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca8c93098a8a2c0bcd221039fbcaaf93ff6a59cd", "fields": {"nom_de_la_commune": "BREST", "libell_d_acheminement": "BREST", "code_postal": "29200", "coordonnees_gps": [48.3998970513, -4.5026725313], "code_commune_insee": "29019"}, "geometry": {"type": "Point", "coordinates": [-4.5026725313, 48.3998970513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4080ff9543a44b34c28d08233be7624245fb51e6", "fields": {"nom_de_la_commune": "CAST", "libell_d_acheminement": "CAST", "code_postal": "29150", "coordonnees_gps": [48.1891302996, -4.12434734749], "code_commune_insee": "29025"}, "geometry": {"type": "Point", "coordinates": [-4.12434734749, 48.1891302996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26f954dda1a44287fbb60a9bff1d70e7da9fa1b7", "fields": {"nom_de_la_commune": "COAT MEAL", "libell_d_acheminement": "COAT MEAL", "code_postal": "29870", "coordonnees_gps": [48.5578339908, -4.54140590584], "code_commune_insee": "29035"}, "geometry": {"type": "Point", "coordinates": [-4.54140590584, 48.5578339908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7210cc242a591c7a0b744140bfd7dbd9b691678b", "fields": {"nom_de_la_commune": "COMMANA", "libell_d_acheminement": "COMMANA", "code_postal": "29450", "coordonnees_gps": [48.3997146924, -4.03661538866], "code_commune_insee": "29038"}, "geometry": {"type": "Point", "coordinates": [-4.03661538866, 48.3997146924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f523037a71043791067c93f6da903c533aeb0c7a", "fields": {"code_postal": "29160", "code_commune_insee": "29042", "libell_d_acheminement": "CROZON", "ligne_5": "MORGAT", "nom_de_la_commune": "CROZON", "coordonnees_gps": [48.2509456374, -4.48250403015]}, "geometry": {"type": "Point", "coordinates": [-4.48250403015, 48.2509456374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7a8d51e37004bfea9659d17a96d3660521b21b1", "fields": {"nom_de_la_commune": "DIRINON", "libell_d_acheminement": "DIRINON", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29045"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55a48760aaacc39b088f68512b9e4e85a5ee1463", "fields": {"nom_de_la_commune": "DOUARNENEZ", "libell_d_acheminement": "DOUARNENEZ", "code_postal": "29100", "coordonnees_gps": [48.0680166457, -4.3318760918], "code_commune_insee": "29046"}, "geometry": {"type": "Point", "coordinates": [-4.3318760918, 48.0680166457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37ec2695a253d415ce32354d7b0e6a73102ba50", "fields": {"nom_de_la_commune": "LE FAOU", "libell_d_acheminement": "LE FAOU", "code_postal": "29590", "coordonnees_gps": [48.2799947077, -4.10763494114], "code_commune_insee": "29053"}, "geometry": {"type": "Point", "coordinates": [-4.10763494114, 48.2799947077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5decad00313ec949e84533a60cd9b7e0e2b47cfa", "fields": {"nom_de_la_commune": "GOUESNOU", "libell_d_acheminement": "GOUESNOU", "code_postal": "29850", "coordonnees_gps": [48.4463653072, -4.46262748284], "code_commune_insee": "29061"}, "geometry": {"type": "Point", "coordinates": [-4.46262748284, 48.4463653072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37953ca36ce57f4a8a19c5a18dc9a0b30041e953", "fields": {"nom_de_la_commune": "GOUEZEC", "libell_d_acheminement": "GOUEZEC", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29062"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b19f2d0a854006c41b8740b4bb159f67438f5747", "fields": {"nom_de_la_commune": "GOULIEN", "libell_d_acheminement": "GOULIEN", "code_postal": "29770", "coordonnees_gps": [48.0454956217, -4.63185223568], "code_commune_insee": "29063"}, "geometry": {"type": "Point", "coordinates": [-4.63185223568, 48.0454956217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ffab31e7691fffbcbb7492789f7a4444a897c75", "fields": {"nom_de_la_commune": "GOURLIZON", "libell_d_acheminement": "GOURLIZON", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29065"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7af1bf55fe318c9e518572017d9c2c585655aef", "fields": {"nom_de_la_commune": "GUILERS", "libell_d_acheminement": "GUILERS", "code_postal": "29820", "coordonnees_gps": [48.4223401129, -4.55120430112], "code_commune_insee": "29069"}, "geometry": {"type": "Point", "coordinates": [-4.55120430112, 48.4223401129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e708b9bec138ae4b85880a571579bf0c8db3ff", "fields": {"nom_de_la_commune": "GUIMILIAU", "libell_d_acheminement": "GUIMILIAU", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29074"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0971792062278def0fddd43076dd3d3ecc90be7", "fields": {"nom_de_la_commune": "ILE DE BATZ", "libell_d_acheminement": "ILE DE BATZ", "code_postal": "29253", "coordonnees_gps": [48.7451496585, -4.01396117173], "code_commune_insee": "29082"}, "geometry": {"type": "Point", "coordinates": [-4.01396117173, 48.7451496585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "422f1e719ab55a853409cf621788e80d4d249bbd", "fields": {"nom_de_la_commune": "ILE TUDY", "libell_d_acheminement": "ILE TUDY", "code_postal": "29980", "coordonnees_gps": [47.8535512561, -4.16110508856], "code_commune_insee": "29085"}, "geometry": {"type": "Point", "coordinates": [-4.16110508856, 47.8535512561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f945b22cb4f1b4f4d928eb1effa67d0ea2f4ae60", "fields": {"nom_de_la_commune": "LANDERNEAU", "libell_d_acheminement": "LANDERNEAU", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29103"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00b82e3c3dc656b1bcedd2b956a990a81b80d4a", "fields": {"nom_de_la_commune": "LANGOLEN", "libell_d_acheminement": "LANGOLEN", "code_postal": "29510", "coordonnees_gps": [48.0935216519, -3.99705249419], "code_commune_insee": "29110"}, "geometry": {"type": "Point", "coordinates": [-3.99705249419, 48.0935216519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e94a07b44da4f7233df1aefc6045bd6f0a20474", "fields": {"nom_de_la_commune": "LANNEDERN", "libell_d_acheminement": "LANNEDERN", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29115"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97ee04a0b66c1b9939c86d300a743a51c733a97d", "fields": {"nom_de_la_commune": "LESNEVEN", "libell_d_acheminement": "LESNEVEN", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29124"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1215557c6d328b99924122bdcb37f1ae33dfb86", "fields": {"nom_de_la_commune": "LOCQUENOLE", "libell_d_acheminement": "LOCQUENOLE", "code_postal": "29670", "coordonnees_gps": [48.6115229936, -3.90607440481], "code_commune_insee": "29132"}, "geometry": {"type": "Point", "coordinates": [-3.90607440481, 48.6115229936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49bc7507a81e781831aefce0713ca5751c3567c9", "fields": {"nom_de_la_commune": "LOCUNOLE", "libell_d_acheminement": "LOCUNOLE", "code_postal": "29310", "coordonnees_gps": [47.9478080575, -3.53309930028], "code_commune_insee": "29136"}, "geometry": {"type": "Point", "coordinates": [-3.53309930028, 47.9478080575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e357a4b911f90992e44917a5968d35b141b95428", "fields": {"nom_de_la_commune": "MORLAIX", "libell_d_acheminement": "MORLAIX", "code_postal": "29600", "coordonnees_gps": [48.5560606462, -3.82444218679], "code_commune_insee": "29151"}, "geometry": {"type": "Point", "coordinates": [-3.82444218679, 48.5560606462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b594f567cece80fd84f570ce7008e67b80d973ab", "fields": {"code_postal": "29920", "code_commune_insee": "29153", "libell_d_acheminement": "NEVEZ", "ligne_5": "PORT MANECH", "nom_de_la_commune": "NEVEZ", "coordonnees_gps": [47.815380473, -3.77580285801]}, "geometry": {"type": "Point", "coordinates": [-3.77580285801, 47.815380473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1409c367279787d2cf68a7183d59cd621b74dd06", "fields": {"nom_de_la_commune": "PENMARCH", "libell_d_acheminement": "PENMARCH", "code_postal": "29760", "coordonnees_gps": [47.8121356044, -4.34149591824], "code_commune_insee": "29158"}, "geometry": {"type": "Point", "coordinates": [-4.34149591824, 47.8121356044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb7c32e386072a7ddd5d2be851fa7c0b094d585d", "fields": {"nom_de_la_commune": "PLABENNEC", "libell_d_acheminement": "PLABENNEC", "code_postal": "29860", "coordonnees_gps": [48.5072852164, -4.44045299523], "code_commune_insee": "29160"}, "geometry": {"type": "Point", "coordinates": [-4.44045299523, 48.5072852164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d44934495781c3e5348ff02297f79d4c6ff7620", "fields": {"nom_de_la_commune": "PLEYBEN", "libell_d_acheminement": "PLEYBEN", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29162"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ebddef1f9826345764dc3ee503a8c54a03ed760", "fields": {"nom_de_la_commune": "PLOEVEN", "libell_d_acheminement": "PLOEVEN", "code_postal": "29550", "coordonnees_gps": [48.1687142961, -4.23322522108], "code_commune_insee": "29166"}, "geometry": {"type": "Point", "coordinates": [-4.23322522108, 48.1687142961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d5a4a886bb6f9b46778e6c639f9784153a1af3", "fields": {"nom_de_la_commune": "PLOMELIN", "libell_d_acheminement": "PLOMELIN", "code_postal": "29700", "coordonnees_gps": [47.9557228551, -4.17033368764], "code_commune_insee": "29170"}, "geometry": {"type": "Point", "coordinates": [-4.17033368764, 47.9557228551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de45cfb44e5be295b8f6e8444e60f31b7392e793", "fields": {"nom_de_la_commune": "PLOMODIERN", "libell_d_acheminement": "PLOMODIERN", "code_postal": "29550", "coordonnees_gps": [48.1687142961, -4.23322522108], "code_commune_insee": "29172"}, "geometry": {"type": "Point", "coordinates": [-4.23322522108, 48.1687142961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40a74123c7d6808f153a46cf60c622fe146f38ec", "fields": {"nom_de_la_commune": "PLONEVEZ PORZAY", "libell_d_acheminement": "PLONEVEZ PORZAY", "code_postal": "29550", "coordonnees_gps": [48.1687142961, -4.23322522108], "code_commune_insee": "29176"}, "geometry": {"type": "Point", "coordinates": [-4.23322522108, 48.1687142961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f6c3402147bee6557bc4cb756802be4ab17125", "fields": {"nom_de_la_commune": "PLOUEGAT MOYSAN", "libell_d_acheminement": "PLOUEGAT MOYSAN", "code_postal": "29650", "coordonnees_gps": [48.5310739903, -3.6118782406], "code_commune_insee": "29183"}, "geometry": {"type": "Point", "coordinates": [-3.6118782406, 48.5310739903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d52f76aeaf8c0d85348434879dbe89721b7fdc44", "fields": {"nom_de_la_commune": "PLOUGAR", "libell_d_acheminement": "PLOUGAR", "code_postal": "29440", "coordonnees_gps": [48.5805315546, -4.12744185635], "code_commune_insee": "29187"}, "geometry": {"type": "Point", "coordinates": [-4.12744185635, 48.5805315546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a96cf9df17c5b4d321e5dcf978ad0312cdb45b49", "fields": {"nom_de_la_commune": "PLOUGASNOU", "libell_d_acheminement": "PLOUGASNOU", "code_postal": "29630", "coordonnees_gps": [48.6746083543, -3.7940474751], "code_commune_insee": "29188"}, "geometry": {"type": "Point", "coordinates": [-3.7940474751, 48.6746083543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "760370c93b9536240d8353581024fecbfa8c30fc", "fields": {"nom_de_la_commune": "PLOUGONVEN", "libell_d_acheminement": "PLOUGONVEN", "code_postal": "29640", "coordonnees_gps": [48.4664762138, -3.68447061124], "code_commune_insee": "29191"}, "geometry": {"type": "Point", "coordinates": [-3.68447061124, 48.4664762138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a095a3a04fcaa403fa6db3f5e5dbcd837b16d5d2", "fields": {"nom_de_la_commune": "PLOZEVET", "libell_d_acheminement": "PLOZEVET", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29215"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212206dca70c63ab32fe7812e069921d5e405cd4", "fields": {"nom_de_la_commune": "PONT AVEN", "libell_d_acheminement": "PONT AVEN", "code_postal": "29930", "coordonnees_gps": [47.8719049121, -3.76549245761], "code_commune_insee": "29217"}, "geometry": {"type": "Point", "coordinates": [-3.76549245761, 47.8719049121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d2092d22a662a579a62ade2019199c28db9e647", "fields": {"nom_de_la_commune": "PONT CROIX", "libell_d_acheminement": "PONT CROIX", "code_postal": "29790", "coordonnees_gps": [48.0541879472, -4.46870916199], "code_commune_insee": "29218"}, "geometry": {"type": "Point", "coordinates": [-4.46870916199, 48.0541879472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14a352c2c4ae7a38893a79f37e4904db8b60b97f", "fields": {"code_postal": "29840", "code_commune_insee": "29221", "libell_d_acheminement": "PORSPODER", "ligne_5": "LARRET", "nom_de_la_commune": "PORSPODER", "coordonnees_gps": [48.5120330691, -4.73920454797]}, "geometry": {"type": "Point", "coordinates": [-4.73920454797, 48.5120330691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf830c19c2385a079af1c6b5667b601132620b0f", "fields": {"nom_de_la_commune": "POULDERGAT", "libell_d_acheminement": "POULDERGAT", "code_postal": "29100", "coordonnees_gps": [48.0680166457, -4.3318760918], "code_commune_insee": "29224"}, "geometry": {"type": "Point", "coordinates": [-4.3318760918, 48.0680166457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57bc9888adc021ba97b1cb8297a122d9427f1130", "fields": {"nom_de_la_commune": "PRIMELIN", "libell_d_acheminement": "PRIMELIN", "code_postal": "29770", "coordonnees_gps": [48.0454956217, -4.63185223568], "code_commune_insee": "29228"}, "geometry": {"type": "Point", "coordinates": [-4.63185223568, 48.0454956217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d19cf12895e01edf06a802c8bcea071820f61e9", "fields": {"nom_de_la_commune": "QUIMPER", "libell_d_acheminement": "QUIMPER", "code_postal": "29000", "coordonnees_gps": [47.9969497735, -4.09093803063], "code_commune_insee": "29232"}, "geometry": {"type": "Point", "coordinates": [-4.09093803063, 47.9969497735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fbb4f1d41a425a2ec4074fbc49222fbe63f891d", "fields": {"nom_de_la_commune": "ROSCOFF", "libell_d_acheminement": "ROSCOFF", "code_postal": "29680", "coordonnees_gps": [48.7119919943, -3.9888631331], "code_commune_insee": "29239"}, "geometry": {"type": "Point", "coordinates": [-3.9888631331, 48.7119919943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0a63b49063a786a1bc944cd0c1f653397e51fd", "fields": {"nom_de_la_commune": "ROSNOEN", "libell_d_acheminement": "ROSNOEN", "code_postal": "29590", "coordonnees_gps": [48.2799947077, -4.10763494114], "code_commune_insee": "29240"}, "geometry": {"type": "Point", "coordinates": [-4.10763494114, 48.2799947077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfcd07c598b53c7c4fb004cfd03a4d2ecf23f6af", "fields": {"nom_de_la_commune": "ST DIVY", "libell_d_acheminement": "ST DIVY", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29245"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bbf9f6593c1b02a9ed095481693658cdaa3efc", "fields": {"nom_de_la_commune": "ST FREGANT", "libell_d_acheminement": "ST FREGANT", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29248"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9805d44080c8eeeec5208873ad65b6553f01cc", "fields": {"nom_de_la_commune": "ST GOAZEC", "libell_d_acheminement": "ST GOAZEC", "code_postal": "29520", "coordonnees_gps": [48.1597745239, -3.82338194426], "code_commune_insee": "29249"}, "geometry": {"type": "Point", "coordinates": [-3.82338194426, 48.1597745239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eaaff7b4411b9b85c4ef8899d42592f4f39257f", "fields": {"nom_de_la_commune": "SCAER", "libell_d_acheminement": "SCAER", "code_postal": "29390", "coordonnees_gps": [48.0434565453, -3.74078838463], "code_commune_insee": "29274"}, "geometry": {"type": "Point", "coordinates": [-3.74078838463, 48.0434565453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad988141cac40fd4a2599c849bb9da25e041c8c", "fields": {"nom_de_la_commune": "SCRIGNAC", "libell_d_acheminement": "SCRIGNAC", "code_postal": "29640", "coordonnees_gps": [48.4664762138, -3.68447061124], "code_commune_insee": "29275"}, "geometry": {"type": "Point", "coordinates": [-3.68447061124, 48.4664762138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2925980364e5b8b9b67ab531f6c2bf178dc73bc9", "fields": {"nom_de_la_commune": "TELGRUC SUR MER", "libell_d_acheminement": "TELGRUC SUR MER", "code_postal": "29560", "coordonnees_gps": [48.2479935749, -4.31271696117], "code_commune_insee": "29280"}, "geometry": {"type": "Point", "coordinates": [-4.31271696117, 48.2479935749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1ba35697a121aee58fbdf3f118ff7a237ae7f81", "fields": {"nom_de_la_commune": "TREGUNC", "libell_d_acheminement": "TREGUNC", "code_postal": "29910", "coordonnees_gps": [47.8382124091, -3.84120100086], "code_commune_insee": "29293"}, "geometry": {"type": "Point", "coordinates": [-3.84120100086, 47.8382124091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfc9a156861b1da1c3ab87ea9f5d267a702828c", "fields": {"nom_de_la_commune": "LE TREHOU", "libell_d_acheminement": "LE TREHOU", "code_postal": "29450", "coordonnees_gps": [48.3997146924, -4.03661538866], "code_commune_insee": "29294"}, "geometry": {"type": "Point", "coordinates": [-4.03661538866, 48.3997146924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b564a0e9c5ee7f259ee9b66ecc20778ce4e40dc", "fields": {"nom_de_la_commune": "LE TREVOUX", "libell_d_acheminement": "LE TREVOUX", "code_postal": "29380", "coordonnees_gps": [47.931095922, -3.67533522316], "code_commune_insee": "29300"}, "geometry": {"type": "Point", "coordinates": [-3.67533522316, 47.931095922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072f4e3f6cc687c762017b7895dac36b8c978fa5", "fields": {"nom_de_la_commune": "TREZILIDE", "libell_d_acheminement": "TREZILIDE", "code_postal": "29440", "coordonnees_gps": [48.5805315546, -4.12744185635], "code_commune_insee": "29301"}, "geometry": {"type": "Point", "coordinates": [-4.12744185635, 48.5805315546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2e469f6adbe6f7b1e62165069cd450294e1bbc", "fields": {"nom_de_la_commune": "AIGALIERS", "libell_d_acheminement": "AIGALIERS", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30001"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed74aeb42e717dbdf9898516b9e2dc0eaccbf1dc", "fields": {"nom_de_la_commune": "AIGUEZE", "libell_d_acheminement": "AIGUEZE", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30005"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2716e978d07d8b6612c5b4560e4c3772c016cda", "fields": {"nom_de_la_commune": "LES ANGLES", "libell_d_acheminement": "LES ANGLES", "code_postal": "30133", "coordonnees_gps": [43.9466329625, 4.75207033981], "code_commune_insee": "30011"}, "geometry": {"type": "Point", "coordinates": [4.75207033981, 43.9466329625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48f52ef4eeefc7922c23fde1dd383c8f45ae402", "fields": {"nom_de_la_commune": "ARRIGAS", "libell_d_acheminement": "ARRIGAS", "code_postal": "30770", "coordonnees_gps": [43.9504922652, 3.46315986765], "code_commune_insee": "30017"}, "geometry": {"type": "Point", "coordinates": [3.46315986765, 43.9504922652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b57e62fe6676a0afa8ff6c22276d6bfebf428f84", "fields": {"nom_de_la_commune": "ASPERES", "libell_d_acheminement": "ASPERES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30018"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49e41d6f13dbf138b73e9cfa5b9f7855f88b5d59", "fields": {"nom_de_la_commune": "BARJAC", "libell_d_acheminement": "BARJAC", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30029"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "132643d4f36bbb198715f4cd3818e4348efe9ea4", "fields": {"code_postal": "30640", "code_commune_insee": "30033", "libell_d_acheminement": "BEAUVOISIN", "ligne_5": "FRANQUEVAUX", "nom_de_la_commune": "BEAUVOISIN", "coordonnees_gps": [43.6958928961, 4.32221754971]}, "geometry": {"type": "Point", "coordinates": [4.32221754971, 43.6958928961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4430a996a4b341e066132935827353875884181a", "fields": {"code_postal": "30160", "code_commune_insee": "30037", "libell_d_acheminement": "BESSEGES", "ligne_5": "FOUSSIGNARGUES", "nom_de_la_commune": "BESSEGES", "coordonnees_gps": [44.2982766732, 4.09724420546]}, "geometry": {"type": "Point", "coordinates": [4.09724420546, 44.2982766732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fd35c0b56a77501dd3124e9810e158c1adcd8bc", "fields": {"nom_de_la_commune": "BLAUZAC", "libell_d_acheminement": "BLAUZAC", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30041"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb819781905e02ef8fae1b77b0e73e7608676034", "fields": {"nom_de_la_commune": "BROUZET LES ALES", "libell_d_acheminement": "BROUZET LES ALES", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30055"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe00d038f307cdfcb1e27352c684678e92ac414", "fields": {"nom_de_la_commune": "LA BRUGUIERE", "libell_d_acheminement": "LA BRUGUIERE", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30056"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69333f3df5437dc5640665fce11631488f540942", "fields": {"nom_de_la_commune": "CANAULES ET ARGENTIERES", "libell_d_acheminement": "CANAULES ET ARGENTIERES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30065"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4890dfed21ada4f1fd9d835d2824c05d94bc91b", "fields": {"nom_de_la_commune": "CAVILLARGUES", "libell_d_acheminement": "CAVILLARGUES", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30076"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5970d5452ecea7eaae8263707816b48a7c093145", "fields": {"nom_de_la_commune": "CORNILLON", "libell_d_acheminement": "CORNILLON", "code_postal": "30630", "coordonnees_gps": [44.2160658373, 4.44619382418], "code_commune_insee": "30096"}, "geometry": {"type": "Point", "coordinates": [4.44619382418, 44.2160658373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb18b13f5c1b5d450f52ddd777c05dbe7c268fb4", "fields": {"nom_de_la_commune": "DURFORT ET ST MARTIN DE SOSSENAC", "libell_d_acheminement": "DURFORT ET ST MARTIN DE SOSSENAC", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30106"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edcec617bd237de84ad6177d6dca9b0d10a7acdb", "fields": {"nom_de_la_commune": "ESTEZARGUES", "libell_d_acheminement": "ESTEZARGUES", "code_postal": "30390", "coordonnees_gps": [43.9188039715, 4.66026536244], "code_commune_insee": "30107"}, "geometry": {"type": "Point", "coordinates": [4.66026536244, 43.9188039715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9295406ff1744a8476a928e5adf584da9d6df82", "fields": {"nom_de_la_commune": "EUZET", "libell_d_acheminement": "EUZET", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30109"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59dcea2d4f47bb36abbb03a7e36da0a5ab9edef9", "fields": {"nom_de_la_commune": "FONS SUR LUSSAN", "libell_d_acheminement": "FONS SUR LUSSAN", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30113"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e07f24b3813a9de12e5dd4e77237d279ac587d", "fields": {"nom_de_la_commune": "FONTANES", "libell_d_acheminement": "FONTANES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30114"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93abc10e8568bf02898475dc83d73dd7f490691b", "fields": {"nom_de_la_commune": "GARONS", "libell_d_acheminement": "GARONS", "code_postal": "30128", "coordonnees_gps": [43.7717827428, 4.43860430343], "code_commune_insee": "30125"}, "geometry": {"type": "Point", "coordinates": [4.43860430343, 43.7717827428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af59a68a9a2b784f59b2278ec551f300074f570c", "fields": {"nom_de_la_commune": "GENERARGUES", "libell_d_acheminement": "GENERARGUES", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30129"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd3e1c36785b48b3f8ce1e4141a3dd794834336f", "fields": {"nom_de_la_commune": "GENOLHAC", "libell_d_acheminement": "GENOLHAC", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30130"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dddc4d4a350714a23b4b721a9a370f7832116b7c", "fields": {"nom_de_la_commune": "LE GRAU DU ROI", "libell_d_acheminement": "LE GRAU DU ROI", "code_postal": "30240", "coordonnees_gps": [43.5075003304, 4.16612104181], "code_commune_insee": "30133"}, "geometry": {"type": "Point", "coordinates": [4.16612104181, 43.5075003304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9475ee8be6bd018af14bd6f87eb05341de8c8c2e", "fields": {"nom_de_la_commune": "ISSIRAC", "libell_d_acheminement": "ISSIRAC", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30134"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dc6e47c1ca9884661838ee894cea2ec47ce97e7", "fields": {"nom_de_la_commune": "LANUEJOLS", "libell_d_acheminement": "LANUEJOLS", "code_postal": "30750", "coordonnees_gps": [44.0925479958, 3.41838052673], "code_commune_insee": "30139"}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "875bb3033a3ce15a61406870608a2b7d7e43b34f", "fields": {"nom_de_la_commune": "MEYRANNES", "libell_d_acheminement": "MEYRANNES", "code_postal": "30410", "coordonnees_gps": [44.2684552462, 4.15312879608], "code_commune_insee": "30167"}, "geometry": {"type": "Point", "coordinates": [4.15312879608, 44.2684552462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a6221c36d4069b7428a48032954f9c6fc491c1", "fields": {"nom_de_la_commune": "MILHAUD", "libell_d_acheminement": "MILHAUD", "code_postal": "30540", "coordonnees_gps": [43.7894384552, 4.30898822967], "code_commune_insee": "30169"}, "geometry": {"type": "Point", "coordinates": [4.30898822967, 43.7894384552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d77078e125c0621b3d18c1907b2aced9c09dc221", "fields": {"nom_de_la_commune": "MONTEILS", "libell_d_acheminement": "MONTEILS", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30177"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c7d67546775d2ab89e80cbb040ce6b76b95dd5c", "fields": {"nom_de_la_commune": "MOULEZAN", "libell_d_acheminement": "MOULEZAN", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30183"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8c1e5197a618f6265abb316cb6b6501feab2939", "fields": {"nom_de_la_commune": "MOUSSAC", "libell_d_acheminement": "MOUSSAC", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30184"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5ac29b872e0908c24081f2d83ed36c535190c7a", "fields": {"nom_de_la_commune": "NIMES", "libell_d_acheminement": "NIMES", "code_postal": "30000", "coordonnees_gps": [43.8446783278, 4.34763990758], "code_commune_insee": "30189"}, "geometry": {"type": "Point", "coordinates": [4.34763990758, 43.8446783278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29026a2277a26f49eba6ef233cd16f56edcb89d", "fields": {"nom_de_la_commune": "NOTRE DAME DE LA ROUVIERE", "libell_d_acheminement": "NOTRE DAME DE LA ROUVIERE", "code_postal": "30570", "coordonnees_gps": [44.0726659804, 3.64380586054], "code_commune_insee": "30190"}, "geometry": {"type": "Point", "coordinates": [3.64380586054, 44.0726659804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9764a49893cc96714e8d48f905c34d0577ef382", "fields": {"nom_de_la_commune": "PARIGNARGUES", "libell_d_acheminement": "PARIGNARGUES", "code_postal": "30730", "coordonnees_gps": [43.8845718462, 4.18952374763], "code_commune_insee": "30193"}, "geometry": {"type": "Point", "coordinates": [4.18952374763, 43.8845718462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f86f53468b355ecf508a5862a843217b1bd121ec", "fields": {"nom_de_la_commune": "PONT ST ESPRIT", "libell_d_acheminement": "PONT ST ESPRIT", "code_postal": "30130", "coordonnees_gps": [44.2445980567, 4.61246226346], "code_commune_insee": "30202"}, "geometry": {"type": "Point", "coordinates": [4.61246226346, 44.2445980567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afad073cd0568e92275fcf271d832b58efe81fee", "fields": {"nom_de_la_commune": "POULX", "libell_d_acheminement": "POULX", "code_postal": "30320", "coordonnees_gps": [43.8770383531, 4.45722283055], "code_commune_insee": "30206"}, "geometry": {"type": "Point", "coordinates": [4.45722283055, 43.8770383531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00505283238fb68f687b9ea8194618b4de57a81", "fields": {"nom_de_la_commune": "POUZILHAC", "libell_d_acheminement": "POUZILHAC", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30207"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e44d9efa81abd795cc9f6cd2dd55a4a3d4ec5e0", "fields": {"nom_de_la_commune": "PUECHREDON", "libell_d_acheminement": "PUECHREDON", "code_postal": "30610", "coordonnees_gps": [43.9495863294, 3.99062671704], "code_commune_insee": "30208"}, "geometry": {"type": "Point", "coordinates": [3.99062671704, 43.9495863294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d79bb90e16e27ebf994d8994759ee8c83e43f00c", "fields": {"nom_de_la_commune": "QUISSAC", "libell_d_acheminement": "QUISSAC", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30210"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9932fda572aa35a57f1a991a8072f0a6b22ac23d", "fields": {"nom_de_la_commune": "REDESSAN", "libell_d_acheminement": "REDESSAN", "code_postal": "30129", "coordonnees_gps": [43.8162096592, 4.49752945444], "code_commune_insee": "30211"}, "geometry": {"type": "Point", "coordinates": [4.49752945444, 43.8162096592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b880212f5095932b9fd1a70021edbb2e7309f6", "fields": {"nom_de_la_commune": "ROCHEFORT DU GARD", "libell_d_acheminement": "ROCHEFORT DU GARD", "code_postal": "30650", "coordonnees_gps": [43.9716290587, 4.68530597674], "code_commune_insee": "30217"}, "geometry": {"type": "Point", "coordinates": [4.68530597674, 43.9716290587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "448d6fe31a8ea2aae05dcd6d54e3ce713255a704", "fields": {"nom_de_la_commune": "LA ROUVIERE", "libell_d_acheminement": "LA ROUVIERE", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30224"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aa8cfcb771e3b8975d2de5872465c269ec2ae66", "fields": {"nom_de_la_commune": "SABRAN", "libell_d_acheminement": "SABRAN", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30225"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "905d5ab05ee2ff26c459457d1ed2c63899826112", "fields": {"nom_de_la_commune": "ST ANDRE DE MAJENCOULES", "libell_d_acheminement": "ST ANDRE DE MAJENCOULES", "code_postal": "30570", "coordonnees_gps": [44.0726659804, 3.64380586054], "code_commune_insee": "30229"}, "geometry": {"type": "Point", "coordinates": [3.64380586054, 44.0726659804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4c3d7b7c46f51fdc3cc53645f2b69da86400b5d", "fields": {"nom_de_la_commune": "ST CHAPTES", "libell_d_acheminement": "ST CHAPTES", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30241"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d1f48e8258430b57f84fa3fc5e075620f8f4b9a", "fields": {"nom_de_la_commune": "STE CROIX DE CADERLE", "libell_d_acheminement": "STE CROIX DE CADERLE", "code_postal": "30460", "coordonnees_gps": [44.0515498157, 3.8329499699], "code_commune_insee": "30246"}, "geometry": {"type": "Point", "coordinates": [3.8329499699, 44.0515498157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37ff3365591c5a08a6a7f32216f81a79061891f3", "fields": {"nom_de_la_commune": "AOUGNY", "libell_d_acheminement": "AOUGNY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51013"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a734c3306403fe587b5eb190fcbf18d13c803b6f", "fields": {"nom_de_la_commune": "ARCIS LE PONSART", "libell_d_acheminement": "ARCIS LE PONSART", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51014"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757225f1a02bf309335e90f8ff8c430ccdc37cca", "fields": {"code_postal": "51290", "code_commune_insee": "51017", "libell_d_acheminement": "ARZILLIERES NEUVILLE", "ligne_5": "NEUVILLE SOUS ARZILLIERES", "nom_de_la_commune": "ARZILLIERES NEUVILLE", "coordonnees_gps": [48.5969777002, 4.64247571558]}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eae4509f9446fb80fcc52142a801813e0d0a2cb7", "fields": {"nom_de_la_commune": "AUBERIVE", "libell_d_acheminement": "AUBERIVE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51019"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31f1b25a08460e8fa4da6d7603200944588e1b4a", "fields": {"nom_de_la_commune": "AUBILLY", "libell_d_acheminement": "AUBILLY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51020"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "427dbaeede4125f2a7ba5df888fbc9d9f2bbc9ec", "fields": {"nom_de_la_commune": "AUVE", "libell_d_acheminement": "AUVE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51027"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad70373c3bbeca0a886cebbdb85674ef43cc6b7", "fields": {"nom_de_la_commune": "LE BAIZIL", "libell_d_acheminement": "LE BAIZIL", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51033"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ffb4433d2c94d2d3b29fed55d57470f237a8c49", "fields": {"nom_de_la_commune": "BASSUET", "libell_d_acheminement": "BASSUET", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51040"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569c78278f412fea167a4f76f56950d1d1e6c7cf", "fields": {"nom_de_la_commune": "BAYE", "libell_d_acheminement": "BAYE", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51042"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0351625f94b3aea949ba463dad2cfb4059dfe4bd", "fields": {"nom_de_la_commune": "BILLY LE GRAND", "libell_d_acheminement": "BILLY LE GRAND", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51061"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71e8c0656808b5a7744b4a3483ce8a2ebe84d70a", "fields": {"nom_de_la_commune": "BINARVILLE", "libell_d_acheminement": "BINARVILLE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51062"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9440ee6a9609c47ddb4f40faf973dbe57bd743d1", "fields": {"nom_de_la_commune": "BLESME", "libell_d_acheminement": "BLESME", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51068"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ce9a6e1b8a0a68edd0b3f3399213305accb40f", "fields": {"nom_de_la_commune": "BOULT SUR SUIPPE", "libell_d_acheminement": "BOULT SUR SUIPPE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51074"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d36084ac3ebf0f3d2a462b1c879facb7d9d38ce", "fields": {"nom_de_la_commune": "BOURSAULT", "libell_d_acheminement": "BOURSAULT", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51076"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96453020077b53c7b0614ce691778fcec12e5bb7", "fields": {"nom_de_la_commune": "BOUZY", "libell_d_acheminement": "BOUZY", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51079"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f611e08e2a856497ecccbfa4e4dc83025feac99", "fields": {"nom_de_la_commune": "BREBAN", "libell_d_acheminement": "BREBAN", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51084"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e24eec7e25ecbacdd8b34b36f1cb8854aba799ea", "fields": {"nom_de_la_commune": "BRUGNY VAUDANCOURT", "libell_d_acheminement": "BRUGNY VAUDANCOURT", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51093"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a8a71d3985c04d08c045997fa0eac81ce3e0c49", "fields": {"nom_de_la_commune": "LE BUISSON", "libell_d_acheminement": "LE BUISSON", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51095"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba9b922180fa5c9e26a9f1019a941e1211b2dde", "fields": {"nom_de_la_commune": "CHALONS SUR VESLE", "libell_d_acheminement": "CHALONS SUR VESLE", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51109"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64cc7a2988df833e70a7155d5d6557e6bb2ead23", "fields": {"nom_de_la_commune": "CHAMPFLEURY", "libell_d_acheminement": "CHAMPFLEURY", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51115"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78f1832da221c6407cb35bbc0e823c127a94735c", "fields": {"nom_de_la_commune": "CHENAY", "libell_d_acheminement": "CHENAY", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51145"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083d65d59fc2be34f8f9359729443e8d572eb03c", "fields": {"nom_de_la_commune": "CHIGNY LES ROSES", "libell_d_acheminement": "CHIGNY LES ROSES", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51152"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "639f86485df76909956695fe35265cfae5d96420", "fields": {"nom_de_la_commune": "CHOUILLY", "libell_d_acheminement": "CHOUILLY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51153"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca8cc0393e4e96c11c988a732f07b40a958edf7", "fields": {"code_postal": "51130", "code_commune_insee": "51158", "libell_d_acheminement": "VAL DES MARAIS", "ligne_5": "AULNIZEUX", "nom_de_la_commune": "VAL DES MARAIS", "coordonnees_gps": [48.8827840053, 4.0351549525]}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d85f98e650d89e35a47ff59c76b69c19536c92c2", "fields": {"code_postal": "51130", "code_commune_insee": "51158", "libell_d_acheminement": "VAL DES MARAIS", "ligne_5": "MORAINS", "nom_de_la_commune": "VAL DES MARAIS", "coordonnees_gps": [48.8827840053, 4.0351549525]}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e12afe92576a876724c698b825e42ae5eccb44a", "fields": {"nom_de_la_commune": "CONTAULT", "libell_d_acheminement": "CONTAULT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51166"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d03d633291cb26b6ebc222a88eb59f38da2c0c", "fields": {"nom_de_la_commune": "CORBEIL", "libell_d_acheminement": "CORBEIL", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51169"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb80e0709397bab15197c920523a22ba39c5e21c", "fields": {"nom_de_la_commune": "COURCELLES SAPICOURT", "libell_d_acheminement": "COURCELLES SAPICOURT", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51181"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65ed1dff438ff644f5e15ce83a5049d20361eda1", "fields": {"nom_de_la_commune": "COURJEONNET", "libell_d_acheminement": "COURJEONNET", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51186"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd26c70e7f48942900aeee96c880638ae5b90619", "fields": {"nom_de_la_commune": "DAMERY", "libell_d_acheminement": "DAMERY", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51204"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091e09d291d001e4d803e407a8598fd7f1ae7f29", "fields": {"nom_de_la_commune": "DOMMARTIN SOUS HANS", "libell_d_acheminement": "DOMMARTIN SOUS HANS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51213"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cec10c5c6be8144fe80875c09d2b34f932e89e7", "fields": {"nom_de_la_commune": "DORMANS", "libell_d_acheminement": "DORMANS", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51217"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6cccf20c1d7bbaf2ae5fa6ec10bdf8b3255d098", "fields": {"nom_de_la_commune": "ECRIENNES", "libell_d_acheminement": "ECRIENNES", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51224"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e063961e541316d6c60a731707339d9c17823e9", "fields": {"nom_de_la_commune": "ELISE DAUCOURT", "libell_d_acheminement": "ELISE DAUCOURT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51228"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a9f6710c4ab9dd30e3d59ea490e08f5c076e0c9", "fields": {"nom_de_la_commune": "LES ESSARTS LE VICOMTE", "libell_d_acheminement": "LES ESSARTS LE VICOMTE", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51236"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6539a0e0ff2ccea309a0204626001ab031b289", "fields": {"nom_de_la_commune": "FLAVIGNY", "libell_d_acheminement": "FLAVIGNY", "code_postal": "51190", "coordonnees_gps": [48.9639815903, 4.02338180898], "code_commune_insee": "51251"}, "geometry": {"type": "Point", "coordinates": [4.02338180898, 48.9639815903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2467957ff5a7160950afe66c80d972952f85ccd", "fields": {"nom_de_la_commune": "FRIGNICOURT", "libell_d_acheminement": "FRIGNICOURT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51262"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6691d9c383693f616566d17ed4325509c2c1e0f5", "fields": {"nom_de_la_commune": "GAYE", "libell_d_acheminement": "GAYE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51265"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "663fae6268ac4f2be0e8d1bfdde98e6cf0012738", "fields": {"nom_de_la_commune": "HANS", "libell_d_acheminement": "HANS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51283"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f13f46b8161882730a142881f1e735c405969b6", "fields": {"nom_de_la_commune": "HAUSSIGNEMONT", "libell_d_acheminement": "HAUSSIGNEMONT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51284"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df1a76140779856ea3e06bcb933fe982931b222b", "fields": {"nom_de_la_commune": "HAUTEVILLE", "libell_d_acheminement": "HAUTEVILLE", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51286"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "175b31d46dfa9365631fdaaf8b542e2a83ad9c03", "fields": {"nom_de_la_commune": "HEILTZ L EVEQUE", "libell_d_acheminement": "HEILTZ L EVEQUE", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51290"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "728407fe8dae75e8d63e5bc009f6ba21b6e304b4", "fields": {"nom_de_la_commune": "HUIRON", "libell_d_acheminement": "HUIRON", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51295"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "838d4ea70d0a2e087a6cd2644cb6024c88b40795", "fields": {"nom_de_la_commune": "IGNY COMBLIZY", "libell_d_acheminement": "IGNY COMBLIZY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51298"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f72e646660b0958b4a7f025093c0d5ef15dc3c", "fields": {"nom_de_la_commune": "ISLE SUR MARNE", "libell_d_acheminement": "ISLE SUR MARNE", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51300"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b77e877baa71a9690ecd1c5a6ccabb634a577e5", "fields": {"nom_de_la_commune": "LES ISTRES ET BURY", "libell_d_acheminement": "LES ISTRES ET BURY", "code_postal": "51190", "coordonnees_gps": [48.9639815903, 4.02338180898], "code_commune_insee": "51302"}, "geometry": {"type": "Point", "coordinates": [4.02338180898, 48.9639815903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f4bc3b6c143fca6f9e18ad456d0aca19ce1c63d", "fields": {"nom_de_la_commune": "JUSSECOURT MINECOURT", "libell_d_acheminement": "JUSSECOURT MINECOURT", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51311"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dde34c7438bea65a71e6e3a1e7b5b3387117b925", "fields": {"nom_de_la_commune": "MAGNEUX", "libell_d_acheminement": "MAGNEUX", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51337"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c119aabe870766bff9a3bca6b0abc3b2426f174", "fields": {"nom_de_la_commune": "MARFAUX", "libell_d_acheminement": "MARFAUX", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51348"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75778250491f8fce934dd3af49a5e46bb3f67c45", "fields": {"nom_de_la_commune": "MATIGNICOURT GONCOURT", "libell_d_acheminement": "MATIGNICOURT GONCOURT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51356"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b25e43a57b7d37b5c6019a190a357b85d87a163e", "fields": {"nom_de_la_commune": "LE MEIX ST EPOING", "libell_d_acheminement": "LE MEIX ST EPOING", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51360"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd3115820ce0625e900cb1c36000f9531033972", "fields": {"nom_de_la_commune": "MERFY", "libell_d_acheminement": "MERFY", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51362"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbca269ecefb22012f980a30f0686bf5380eb598", "fields": {"nom_de_la_commune": "MOIREMONT", "libell_d_acheminement": "MOIREMONT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51370"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e2c202ce40a1fe103f1acc40b087154c732d124", "fields": {"nom_de_la_commune": "MONTHELON", "libell_d_acheminement": "MONTHELON", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51378"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab08e5acb1d879a07007b1062b5ed9f1dafaa21", "fields": {"nom_de_la_commune": "MOURMELON LE PETIT", "libell_d_acheminement": "MOURMELON LE PETIT", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51389"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a5da092f811c9ee55315819a9f61d62abf2852", "fields": {"nom_de_la_commune": "NANTEUIL LA FORET", "libell_d_acheminement": "NANTEUIL LA FORET", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51393"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d90957896a27373283b90774f4036856c862ba01", "fields": {"nom_de_la_commune": "NESLE LA REPOSTE", "libell_d_acheminement": "NESLE LA REPOSTE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51395"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8c8a2e0e8fb874686b797c5f41ef7382664d9ba", "fields": {"nom_de_la_commune": "NOGENT L ABBESSE", "libell_d_acheminement": "NOGENT L ABBESSE", "code_postal": "51420", "coordonnees_gps": [49.2697568482, 4.13175123605], "code_commune_insee": "51403"}, "geometry": {"type": "Point", "coordinates": [4.13175123605, 49.2697568482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb8ff94d075402dc6ff264d6a2be9090dc08833", "fields": {"nom_de_la_commune": "OEUILLY", "libell_d_acheminement": "OEUILLY", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51410"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1a2281609ea9889b751b78a1c9e797b72088c2", "fields": {"nom_de_la_commune": "OGER", "libell_d_acheminement": "OGER", "code_postal": "51190", "coordonnees_gps": [48.9639815903, 4.02338180898], "code_commune_insee": "51411"}, "geometry": {"type": "Point", "coordinates": [4.02338180898, 48.9639815903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c437529c937276413ccd7107c9cc600499b60c40", "fields": {"nom_de_la_commune": "OYES", "libell_d_acheminement": "OYES", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51421"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5923b0a7537981ac06b5571eff405a3421e5ec98", "fields": {"nom_de_la_commune": "PASSAVANT EN ARGONNE", "libell_d_acheminement": "PASSAVANT EN ARGONNE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51424"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f9d749f130501a437f5ca2a91dc30f07940de66", "fields": {"nom_de_la_commune": "POCANCY", "libell_d_acheminement": "POCANCY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51435"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "543e001c69d08f8e43db1977e3ef259ee2dfff78", "fields": {"nom_de_la_commune": "POIX", "libell_d_acheminement": "POIX", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51438"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aef98000d9c8739e08553f913ef31c477ffa4ac", "fields": {"nom_de_la_commune": "PONTHION", "libell_d_acheminement": "PONTHION", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51441"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e50b82e26e1d17e854915f8f3897c28d41513ab", "fields": {"nom_de_la_commune": "PROSNES", "libell_d_acheminement": "PROSNES", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51447"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5fd1e4ec2f82957594671d138075b768faedaa9", "fields": {"nom_de_la_commune": "PRUNAY", "libell_d_acheminement": "PRUNAY", "code_postal": "51360", "coordonnees_gps": [49.1885177288, 4.19782075204], "code_commune_insee": "51449"}, "geometry": {"type": "Point", "coordinates": [4.19782075204, 49.1885177288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bccbb5a7d72c40c51e9bb9a1b35219003c99689e", "fields": {"nom_de_la_commune": "REIMS", "libell_d_acheminement": "REIMS", "code_postal": "51100", "coordonnees_gps": [49.2518578026, 4.03958522088], "code_commune_insee": "51454"}, "geometry": {"type": "Point", "coordinates": [4.03958522088, 49.2518578026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6105304a5ef047df2570f9d8c5cd1b3abdc40c06", "fields": {"nom_de_la_commune": "REMICOURT", "libell_d_acheminement": "REMICOURT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51456"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f692a8d855af4faf4c2f48b845302ca27affcb22", "fields": {"nom_de_la_commune": "RILLY LA MONTAGNE", "libell_d_acheminement": "RILLY LA MONTAGNE", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51461"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a67d9b9fb1663a34ab06ccb38418e27ed1d46314", "fields": {"nom_de_la_commune": "ROMAIN", "libell_d_acheminement": "ROMAIN", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51464"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "560972fe76c92d75cbe6eba4602d1a2c293e0b5a", "fields": {"nom_de_la_commune": "ST GIBRIEN", "libell_d_acheminement": "ST GIBRIEN", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51483"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebad402feb3d41f247087da6894c51caf2500fd4", "fields": {"nom_de_la_commune": "ST JEAN SUR MOIVRE", "libell_d_acheminement": "ST JEAN SUR MOIVRE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51490"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646926e75623af73bc18fa57746bbdcbfe489147", "fields": {"nom_de_la_commune": "ST MEMMIE", "libell_d_acheminement": "ST MEMMIE", "code_postal": "51470", "coordonnees_gps": [48.9418441799, 4.42855134186], "code_commune_insee": "51506"}, "geometry": {"type": "Point", "coordinates": [4.42855134186, 48.9418441799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6c7c096e8e50adee53cc947fe8a99d7b275d15f", "fields": {"nom_de_la_commune": "ST OUEN DOMPROT", "libell_d_acheminement": "ST OUEN DOMPROT", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51508"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c985905162c2ddd78ba60821aee487d53dce6c1", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51509"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50bc5c85807810eefe6441497a682141d2a335bf", "fields": {"nom_de_la_commune": "ST UTIN", "libell_d_acheminement": "ST UTIN", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51520"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e939d024608dcf4424d2fd2f8c4bb9a138307554", "fields": {"nom_de_la_commune": "SAPIGNICOURT", "libell_d_acheminement": "SAPIGNICOURT", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "51522"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ec0e6bd98112b3a4920eb3ae3f45a6b86f81486", "fields": {"nom_de_la_commune": "SAUDOY", "libell_d_acheminement": "SAUDOY", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51526"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48fdada020bdd2ffbb08c13bc9e3c11b842c90c", "fields": {"nom_de_la_commune": "SOIZY AUX BOIS", "libell_d_acheminement": "SOIZY AUX BOIS", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51542"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aec1991767e794675e4bbd954c6fa7989b6486e", "fields": {"nom_de_la_commune": "SOMME VESLE", "libell_d_acheminement": "SOMME VESLE", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51548"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4670fe09f5d57911feb65eb59229e311b57803d0", "fields": {"nom_de_la_commune": "SOMME YEVRE", "libell_d_acheminement": "SOMME YEVRE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51549"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04ec011492c243215561dc5cee893829d0a946f", "fields": {"nom_de_la_commune": "SOUAIN PERTHES LES HURLUS", "libell_d_acheminement": "SOUAIN PERTHES LES HURLUS", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51553"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c34c66e74fff37e7836bf039ceb8c5f04ac65c54", "fields": {"nom_de_la_commune": "SUIZY LE FRANC", "libell_d_acheminement": "SUIZY LE FRANC", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51560"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abbba99820cd1166fa0f7da08a415e519c63bcd1", "fields": {"nom_de_la_commune": "THIBIE", "libell_d_acheminement": "THIBIE", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51566"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f936246abd89214def3534a006745f94f6872546", "fields": {"nom_de_la_commune": "VAL DE VESLE", "libell_d_acheminement": "VAL DE VESLE", "code_postal": "51360", "coordonnees_gps": [49.1885177288, 4.19782075204], "code_commune_insee": "51571"}, "geometry": {"type": "Point", "coordinates": [4.19782075204, 49.1885177288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdfc6f58dd6efdeaf9e34e380201044992fe8dd8", "fields": {"nom_de_la_commune": "TINQUEUX", "libell_d_acheminement": "TINQUEUX", "code_postal": "51430", "coordonnees_gps": [49.2303011179, 3.98992981852], "code_commune_insee": "51573"}, "geometry": {"type": "Point", "coordinates": [3.98992981852, 49.2303011179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71449e5d0b6561e083900e2a9825509e285df7ae", "fields": {"nom_de_la_commune": "TROIS PUITS", "libell_d_acheminement": "TROIS PUITS", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51584"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4ef79cfa836647d9640b8d77d29e281697200c7", "fields": {"nom_de_la_commune": "UNCHAIR", "libell_d_acheminement": "UNCHAIR", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51586"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c8154311b5a95030bbfee48d72882699e4a55a8", "fields": {"nom_de_la_commune": "VAVRAY LE PETIT", "libell_d_acheminement": "VAVRAY LE PETIT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51602"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d264ef854fece308b30a19a936c1ce5150d88967", "fields": {"nom_de_la_commune": "VERT TOULON", "libell_d_acheminement": "VERT TOULON", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51611"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "092388c3a21a266e386dd9114440f1e93a388b92", "fields": {"nom_de_la_commune": "LE VEZIER", "libell_d_acheminement": "LE VEZIER", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51618"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88744051a9ec01feb7a14ac6d81f0b8d5526ea51", "fields": {"nom_de_la_commune": "LE VIEIL DAMPIERRE", "libell_d_acheminement": "LE VIEIL DAMPIERRE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51619"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04ecd38dedf5c190ebb375039b3de63a46ce7ccb", "fields": {"nom_de_la_commune": "VILLE EN TARDENOIS", "libell_d_acheminement": "VILLE EN TARDENOIS", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51624"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba5e2bbbe28b74379f7a705fd4cec41bcae6fe2", "fields": {"nom_de_la_commune": "VILLENEUVE LA LIONNE", "libell_d_acheminement": "VILLENEUVE LA LIONNE", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51625"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7962e3212339d1f9d612a217f441970b62025c4e", "fields": {"nom_de_la_commune": "VILLENEUVE RENNEVILLE CHEVIGNY", "libell_d_acheminement": "VILLENEUVE RENNEVILLE CHEVIGNY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51627"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81e0909d2c29c6f8a49022cae5943897804a83c0", "fields": {"nom_de_la_commune": "VILLERS AUX NOEUDS", "libell_d_acheminement": "VILLERS AUX NOEUDS", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51631"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f787347b5575edc7ec62804eef4f3549e2fa46fa", "fields": {"nom_de_la_commune": "VILLE SUR TOURBE", "libell_d_acheminement": "VILLE SUR TOURBE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51640"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "509217ebb3e05cdd5253ec47a29a74714bf4fcc0", "fields": {"nom_de_la_commune": "VINAY", "libell_d_acheminement": "VINAY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51643"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c818f81162f8aa138fd8d41cd873598726b1f5a", "fields": {"nom_de_la_commune": "VINDEY", "libell_d_acheminement": "VINDEY", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51645"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d35c08ac99bd4e4dd8dc1eda55e8e7b860665c", "fields": {"nom_de_la_commune": "RAON L ETAPE", "libell_d_acheminement": "RAON L ETAPE", "code_postal": "88110", "coordonnees_gps": [48.4500564784, 6.97091495001], "code_commune_insee": "88372"}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7d86636cd6fafa94ae17b5df0b13a3a46823a1e", "fields": {"nom_de_la_commune": "REMIREMONT", "libell_d_acheminement": "REMIREMONT", "code_postal": "88200", "coordonnees_gps": [48.0187075371, 6.60603974178], "code_commune_insee": "88383"}, "geometry": {"type": "Point", "coordinates": [6.60603974178, 48.0187075371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "906b50aa29663bb957691fe5c0741564e342f285", "fields": {"nom_de_la_commune": "RENAUVOID", "libell_d_acheminement": "RENAUVOID", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88388"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b07d47e3ec428d5e23dea81059a8c51d71c06f2", "fields": {"nom_de_la_commune": "ROCOURT", "libell_d_acheminement": "ROCOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88392"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "657b8796c0123e4466dbbc5ad62a6b2d16c0c1b5", "fields": {"nom_de_la_commune": "ROZEROTTE", "libell_d_acheminement": "ROZEROTTE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88403"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6a3885211e36441b89fc37ac14d5ac279ef6f9", "fields": {"nom_de_la_commune": "RUGNEY", "libell_d_acheminement": "RUGNEY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88406"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41ae918b47745479b2f9a3a390a4b6db41fc32b1", "fields": {"nom_de_la_commune": "RUPT SUR MOSELLE", "libell_d_acheminement": "RUPT SUR MOSELLE", "code_postal": "88360", "coordonnees_gps": [47.9275982656, 6.67734911799], "code_commune_insee": "88408"}, "geometry": {"type": "Point", "coordinates": [6.67734911799, 47.9275982656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f163d01060373d03971d0542942030ef886a6d38", "fields": {"nom_de_la_commune": "ST BASLEMONT", "libell_d_acheminement": "ST BASLEMONT", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88411"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d7be39d012fd2a8f43d225a58076a2a73badbf", "fields": {"nom_de_la_commune": "ST GENEST", "libell_d_acheminement": "ST GENEST", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88416"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48998462d3dc30cc3b13fbeb483333a800e6d013", "fields": {"nom_de_la_commune": "ST GORGON", "libell_d_acheminement": "ST GORGON", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88417"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f03b7207f9d26e5741355eab005d9404511d5d8", "fields": {"nom_de_la_commune": "STE HELENE", "libell_d_acheminement": "STE HELENE", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88418"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236e4900f054cd851e435fa569b22bcd194dd273", "fields": {"nom_de_la_commune": "ST JEAN D ORMONT", "libell_d_acheminement": "ST JEAN D ORMONT", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88419"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a234e2a5c2d662209b2b3395f9fadf36d15daab1", "fields": {"nom_de_la_commune": "ST LEONARD", "libell_d_acheminement": "ST LEONARD", "code_postal": "88650", "coordonnees_gps": [48.2058834977, 6.95656032842], "code_commune_insee": "88423"}, "geometry": {"type": "Point", "coordinates": [6.95656032842, 48.2058834977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bf9c9acb11fdc81d3be9a771ab624bc5c6f9020", "fields": {"nom_de_la_commune": "ST MAURICE SUR MOSELLE", "libell_d_acheminement": "ST MAURICE SUR MOSELLE", "code_postal": "88560", "coordonnees_gps": [47.8464941122, 6.85473877602], "code_commune_insee": "88426"}, "geometry": {"type": "Point", "coordinates": [6.85473877602, 47.8464941122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "184dc171ac032b8cd5a60d593e3638ceb9dcf41b", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88431"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d07001947add6e1621883b4938d23a8111c8afe4", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "88480", "coordonnees_gps": [48.3578241534, 6.83459479111], "code_commune_insee": "88435"}, "geometry": {"type": "Point", "coordinates": [6.83459479111, 48.3578241534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0a86733bae4cff8900fc1b3d219015df14b9d6d", "fields": {"nom_de_la_commune": "SARTES", "libell_d_acheminement": "SARTES", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88443"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "910f86df6be58d4cb71d713ecebf8cadc31c2e28", "fields": {"nom_de_la_commune": "SAULCY SUR MEURTHE", "libell_d_acheminement": "SAULCY SUR MEURTHE", "code_postal": "88580", "coordonnees_gps": [48.2420514631, 6.9497997825], "code_commune_insee": "88445"}, "geometry": {"type": "Point", "coordinates": [6.9497997825, 48.2420514631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e81b154209a918fa9cdb6d5090863e2f66c71796", "fields": {"nom_de_la_commune": "SAULXURES SUR MOSELOTTE", "libell_d_acheminement": "SAULXURES SUR MOSELOTTE", "code_postal": "88290", "coordonnees_gps": [47.9540952189, 6.76680969694], "code_commune_insee": "88447"}, "geometry": {"type": "Point", "coordinates": [6.76680969694, 47.9540952189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b7661b627c2154547a245b58226fac9c157dcc2", "fields": {"nom_de_la_commune": "SAUVILLE", "libell_d_acheminement": "SAUVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88448"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e092f1ad8395a026728d2f82fb8188fd1154724", "fields": {"nom_de_la_commune": "SEROCOURT", "libell_d_acheminement": "SEROCOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88456"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1601f51ff988c86e5fd0286959d25d7f2bc1614b", "fields": {"nom_de_la_commune": "SIONNE", "libell_d_acheminement": "SIONNE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88457"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f1abf3d847866ac901611db13862317421c0b5", "fields": {"nom_de_la_commune": "LE SYNDICAT", "libell_d_acheminement": "LE SYNDICAT", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88462"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd153e131bb2a471c66b83d0d61f7aabcddcb172", "fields": {"code_postal": "88120", "code_commune_insee": "88462", "libell_d_acheminement": "LE SYNDICAT", "ligne_5": "JULIENRUPT", "nom_de_la_commune": "LE SYNDICAT", "coordonnees_gps": [48.0216912949, 6.74452235991]}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fd023cc5537ea6c150fdf318fcc216009023764", "fields": {"nom_de_la_commune": "LE THILLOT", "libell_d_acheminement": "LE THILLOT", "code_postal": "88160", "coordonnees_gps": [47.8910254018, 6.78612164116], "code_commune_insee": "88468"}, "geometry": {"type": "Point", "coordinates": [6.78612164116, 47.8910254018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c3713946f8c9aa65ef0d3729a98c5e7386fe13", "fields": {"code_postal": "88530", "code_commune_insee": "88470", "libell_d_acheminement": "LE THOLY", "ligne_5": "BOUVACOTE", "nom_de_la_commune": "LE THOLY", "coordonnees_gps": [48.0852406406, 6.73632940481]}, "geometry": {"type": "Point", "coordinates": [6.73632940481, 48.0852406406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b29536324842fcc477bebd0dc3f5cf3f536b6141", "fields": {"nom_de_la_commune": "LES THONS", "libell_d_acheminement": "LES THONS", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88471"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e88b393d5b4ab35f8d348f4ded8ede610952674d", "fields": {"nom_de_la_commune": "VAGNEY", "libell_d_acheminement": "VAGNEY", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88486"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0fa37a0cb5d9e18b39e7d30fd59f2201f454f51", "fields": {"nom_de_la_commune": "VALLEROY AUX SAULES", "libell_d_acheminement": "VALLEROY AUX SAULES", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88489"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed142a8c58561290b192cbc724b07c12b89f0ef2", "fields": {"nom_de_la_commune": "VAUDONCOURT", "libell_d_acheminement": "VAUDONCOURT", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88496"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfa30cb412cb212c8ead3c40f7807927c4dff69", "fields": {"nom_de_la_commune": "VENTRON", "libell_d_acheminement": "VENTRON", "code_postal": "88310", "coordonnees_gps": [47.9567015163, 6.87250847131], "code_commune_insee": "88500"}, "geometry": {"type": "Point", "coordinates": [6.87250847131, 47.9567015163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c387b12ac488fb3facef87c4a5379e73e76cb8c", "fields": {"nom_de_la_commune": "LE VERMONT", "libell_d_acheminement": "LE VERMONT", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88501"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a44a0d909ed8135b18bf1d1108e84698254cf0a7", "fields": {"nom_de_la_commune": "VICHEREY", "libell_d_acheminement": "VICHEREY", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88504"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "119b9a7d3ceef50e80aee3d3f1cd742ee15f8728", "fields": {"nom_de_la_commune": "VIEUX MOULIN", "libell_d_acheminement": "VIEUX MOULIN", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88506"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "105d31b6542d27a549d0a5d20f265fce2ffed4e1", "fields": {"nom_de_la_commune": "LA VOIVRE", "libell_d_acheminement": "LA VOIVRE", "code_postal": "88470", "coordonnees_gps": [48.3159931003, 6.84826816273], "code_commune_insee": "88519"}, "geometry": {"type": "Point", "coordinates": [6.84826816273, 48.3159931003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ee95087f7bbf92bdbeffd7ade5ccc8722c454f9", "fields": {"nom_de_la_commune": "ACCOLAY", "libell_d_acheminement": "ACCOLAY", "code_postal": "89460", "coordonnees_gps": [47.6637745179, 3.68045501565], "code_commune_insee": "89001"}, "geometry": {"type": "Point", "coordinates": [3.68045501565, 47.6637745179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5a2cdd557eb14c121ea3c2163aad1f3e16333c", "fields": {"nom_de_la_commune": "ANDRYES", "libell_d_acheminement": "ANDRYES", "code_postal": "89480", "coordonnees_gps": [47.5244722983, 3.44429021267], "code_commune_insee": "89007"}, "geometry": {"type": "Point", "coordinates": [3.44429021267, 47.5244722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "835166d96f7884a935090f5b5d7164017ebb7393", "fields": {"nom_de_la_commune": "AUXERRE", "libell_d_acheminement": "AUXERRE", "code_postal": "89000", "coordonnees_gps": [47.8006402501, 3.56347649804], "code_commune_insee": "89024"}, "geometry": {"type": "Point", "coordinates": [3.56347649804, 47.8006402501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1842919dbca93bfc8f255e1f5ce31d0030043c", "fields": {"code_postal": "89290", "code_commune_insee": "89024", "libell_d_acheminement": "AUXERRE", "ligne_5": "VAUX", "nom_de_la_commune": "AUXERRE", "coordonnees_gps": [47.7651600621, 3.61733473781]}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a0c094b98320ebe3d83cfa98ff50781040ce01b", "fields": {"nom_de_la_commune": "AVALLON", "libell_d_acheminement": "AVALLON", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89025"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "585bdf19d53b630b6f7778daa9105f40f1ef7032", "fields": {"nom_de_la_commune": "BELLECHAUME", "libell_d_acheminement": "BELLECHAUME", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89035"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8f34856ff622320cdc1f236c050eff3095691e6", "fields": {"nom_de_la_commune": "BEON", "libell_d_acheminement": "BEON", "code_postal": "89410", "coordonnees_gps": [47.9724194151, 3.31445831227], "code_commune_insee": "89037"}, "geometry": {"type": "Point", "coordinates": [3.31445831227, 47.9724194151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb36ad6d2081efb39eb2502c511cb6d21cf351cb", "fields": {"nom_de_la_commune": "BERU", "libell_d_acheminement": "BERU", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89039"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f50f16c64d15007bb5e2cefe10277f3c0987132", "fields": {"nom_de_la_commune": "BESSY SUR CURE", "libell_d_acheminement": "BESSY SUR CURE", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89040"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16744a73f083e56b187d7fea99b0b5516c2e454b", "fields": {"nom_de_la_commune": "LES BORDES", "libell_d_acheminement": "LES BORDES", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89051"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b70cdfedc2a7608297fe841b7444858fb9e0b49", "fields": {"nom_de_la_commune": "CENSY", "libell_d_acheminement": "CENSY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89064"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1a9beac4b4c6c702c733303b616d15898cb381", "fields": {"nom_de_la_commune": "CERILLY", "libell_d_acheminement": "CERILLY", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89065"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5461adbed916d9fac309d807f371fa83e1c27a4", "fields": {"nom_de_la_commune": "CHABLIS", "libell_d_acheminement": "CHABLIS", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89068"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "467f790374d51a416d557bb69d586eae61281a57", "fields": {"nom_de_la_commune": "CHAMOUX", "libell_d_acheminement": "CHAMOUX", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89071"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8278f695aeaf35bbd0cd083c526c0b0396191388", "fields": {"nom_de_la_commune": "CHAMPIGNY", "libell_d_acheminement": "CHAMPIGNY", "code_postal": "89340", "coordonnees_gps": [48.3152294161, 3.08931043068], "code_commune_insee": "89074"}, "geometry": {"type": "Point", "coordinates": [3.08931043068, 48.3152294161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3726f20194bb680fc02f293d42054ef0f0d405b", "fields": {"nom_de_la_commune": "CHAMVRES", "libell_d_acheminement": "CHAMVRES", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89079"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "736e9b6be3ef633836736f4875f58f388f68e83e", "fields": {"nom_de_la_commune": "CHARMOY", "libell_d_acheminement": "CHARMOY", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89085"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0925f79b004941c7eef28dfcaa558d10cd6c1017", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "FONTENOUILLES", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a67f0cb2a7f87b4277e09fa407f9c3559d9e452", "fields": {"code_postal": "89350", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "GRANDCHAMP", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.7773444304, 3.09490527015]}, "geometry": {"type": "Point", "coordinates": [3.09490527015, 47.7773444304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "581093a347a382b3e7c2ef6caacc4bf79ead1d55", "fields": {"nom_de_la_commune": "CHASSIGNELLES", "libell_d_acheminement": "CHASSIGNELLES", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89087"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a3327da062ba3110188483402a3067bfd1242f", "fields": {"nom_de_la_commune": "CHASSY", "libell_d_acheminement": "CHASSY", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89088"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8cbdca045d5c0d120c784814fc8a9443e50b205", "fields": {"nom_de_la_commune": "CHEMILLY SUR SEREIN", "libell_d_acheminement": "CHEMILLY SUR SEREIN", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89095"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7d3b53d1816e7b828a161fed6ef325720c1f45b", "fields": {"nom_de_la_commune": "CHICHEE", "libell_d_acheminement": "CHICHEE", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89104"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d61092466ac55cacbc23833abb3cae606638b0f6", "fields": {"nom_de_la_commune": "CORNANT", "libell_d_acheminement": "CORNANT", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89116"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02dc0bee2defd0ae68d7b1bc8e3a523961964461", "fields": {"nom_de_la_commune": "COULANGES LA VINEUSE", "libell_d_acheminement": "COULANGES LA VINEUSE", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89118"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb6f195ce0894816e5921166f134c17e43ca205", "fields": {"nom_de_la_commune": "CRAIN", "libell_d_acheminement": "CRAIN", "code_postal": "89480", "coordonnees_gps": [47.5244722983, 3.44429021267], "code_commune_insee": "89129"}, "geometry": {"type": "Point", "coordinates": [3.44429021267, 47.5244722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80073a066f27b9dcebf428976361d80eb90a8fad", "fields": {"nom_de_la_commune": "CRY", "libell_d_acheminement": "CRY", "code_postal": "89390", "coordonnees_gps": [47.70341613, 4.2240121649], "code_commune_insee": "89132"}, "geometry": {"type": "Point", "coordinates": [4.2240121649, 47.70341613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c6d0dcf7350c2d1abad57075d9697cf266cd1d6", "fields": {"nom_de_la_commune": "DYE", "libell_d_acheminement": "DYE", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89149"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd5975ad1162bc5810cd711c63f7bd520f2941e7", "fields": {"nom_de_la_commune": "ETAULE", "libell_d_acheminement": "ETAULE", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89159"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb66e3e71cb8a2af85649530744cfbd6b821bc18", "fields": {"nom_de_la_commune": "FLACY", "libell_d_acheminement": "FLACY", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89165"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63b1e73295f496512928db34e16d2a2588378a09", "fields": {"nom_de_la_commune": "FLEYS", "libell_d_acheminement": "FLEYS", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89168"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62045fbe84fd61d388c449723f0d6da63cd95e67", "fields": {"nom_de_la_commune": "FOISSY LES VEZELAY", "libell_d_acheminement": "FOISSY LES VEZELAY", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89170"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4e7602a90d574588bd9788279fe9f0e24ca4e68", "fields": {"nom_de_la_commune": "FOUCHERES", "libell_d_acheminement": "FOUCHERES", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89180"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ee8f3054fd23c35d02c5e93da6bbeab73bea01", "fields": {"nom_de_la_commune": "FOURONNES", "libell_d_acheminement": "FOURONNES", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89182"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "196b2732280dd4050b2d861cad69347e979c4b8c", "fields": {"nom_de_la_commune": "FRESNES", "libell_d_acheminement": "FRESNES", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89183"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed937a974dde22d5f8289028d96d9f9b6712dbc", "fields": {"nom_de_la_commune": "GURGY", "libell_d_acheminement": "GURGY", "code_postal": "89250", "coordonnees_gps": [47.9169771664, 3.59359231918], "code_commune_insee": "89198"}, "geometry": {"type": "Point", "coordinates": [3.59359231918, 47.9169771664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c363e5c2d31956ac4ce5039c9d781c38001b113", "fields": {"nom_de_la_commune": "GY L EVEQUE", "libell_d_acheminement": "GY L EVEQUE", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89199"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d98560a6ec4c385e3b596fd62e81ebce1edec30", "fields": {"nom_de_la_commune": "IRANCY", "libell_d_acheminement": "IRANCY", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89202"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4486fee0917b13c027a3ac0b5702cece998ad5", "fields": {"nom_de_la_commune": "JOUANCY", "libell_d_acheminement": "JOUANCY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89207"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e1a9be58f9c3107550cd7bcc8e813c9f50383bb", "fields": {"nom_de_la_commune": "JUNAY", "libell_d_acheminement": "JUNAY", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89211"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610b1c705520a9c863bbe938d527d67172c02d77", "fields": {"nom_de_la_commune": "LAVAU", "libell_d_acheminement": "LAVAU", "code_postal": "89170", "coordonnees_gps": [47.6325308017, 3.04724624104], "code_commune_insee": "89220"}, "geometry": {"type": "Point", "coordinates": [3.04724624104, 47.6325308017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbcbc784964624c6fe3dbe3e248f5372e21df685", "fields": {"nom_de_la_commune": "LEVIS", "libell_d_acheminement": "LEVIS", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89222"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23c350c3f1d4f5a2aee3c6b52ad811be7c854244", "fields": {"nom_de_la_commune": "LIGNORELLES", "libell_d_acheminement": "LIGNORELLES", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89226"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53163670dce1d5e87ca176a78dde85d44bf30c40", "fields": {"nom_de_la_commune": "LINDRY", "libell_d_acheminement": "LINDRY", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89228"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45f4414a4780e63a2b91bd9063bf3a4cce6428e3", "fields": {"nom_de_la_commune": "LOOZE", "libell_d_acheminement": "LOOZE", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89230"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "069a4b7cdc71140a112491525b18d9e2d14b270f", "fields": {"nom_de_la_commune": "MALAY LE PETIT", "libell_d_acheminement": "MALAY LE PETIT", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89240"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbbbd64c6cbf9127fcaa5d5371e46c2ad9d7bc11", "fields": {"nom_de_la_commune": "MASSANGIS", "libell_d_acheminement": "MASSANGIS", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89246"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b4817ab953d5cf56d42ed754fdb68667047776", "fields": {"nom_de_la_commune": "MELISEY", "libell_d_acheminement": "MELISEY", "code_postal": "89430", "coordonnees_gps": [47.8807711106, 4.10354187275], "code_commune_insee": "89247"}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e322f8cf429d0f47144c95536cf00cb0a9ede425", "fields": {"nom_de_la_commune": "MERE", "libell_d_acheminement": "MERE", "code_postal": "89144", "coordonnees_gps": [47.9141574217, 3.77517476311], "code_commune_insee": "89250"}, "geometry": {"type": "Point", "coordinates": [3.77517476311, 47.9141574217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72dded16d23f1abb9e3ac26a23347a77139285ae", "fields": {"nom_de_la_commune": "MEZILLES", "libell_d_acheminement": "MEZILLES", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89254"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b2ac59e53f0b78028758605134fba0af740176", "fields": {"nom_de_la_commune": "MICHERY", "libell_d_acheminement": "MICHERY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89255"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e995c5781949ff76186698f4441282117e96e4", "fields": {"nom_de_la_commune": "MIGE", "libell_d_acheminement": "MIGE", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89256"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0cb57dab311a438b39f1aa38487f81d109d7d30", "fields": {"nom_de_la_commune": "MOLAY", "libell_d_acheminement": "MOLAY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89259"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d62ecfaa52662600e863bbe0072878c0f464ee", "fields": {"nom_de_la_commune": "MOLOSMES", "libell_d_acheminement": "MOLOSMES", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89262"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a181f53c317bd36985176dd6fe43ce7a201d35b6", "fields": {"nom_de_la_commune": "MONETEAU", "libell_d_acheminement": "MONETEAU", "code_postal": "89470", "coordonnees_gps": [47.8490995163, 3.58774369009], "code_commune_insee": "89263"}, "geometry": {"type": "Point", "coordinates": [3.58774369009, 47.8490995163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81f6f48065b13196a74b2e308d1bb1bd5b69ec53", "fields": {"code_postal": "89470", "code_commune_insee": "89263", "libell_d_acheminement": "MONETEAU", "ligne_5": "SOUGERES SUR SINOTTE", "nom_de_la_commune": "MONETEAU", "coordonnees_gps": [47.8490995163, 3.58774369009]}, "geometry": {"type": "Point", "coordinates": [3.58774369009, 47.8490995163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "150bbeddfe453b64babfc729b894af6e41e06297", "fields": {"nom_de_la_commune": "MOULINS EN TONNERROIS", "libell_d_acheminement": "MOULINS EN TONNERROIS", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89271"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e11223c677fbee3e1a24e3fe83bb240f96c95168", "fields": {"nom_de_la_commune": "MOULINS SUR OUANNE", "libell_d_acheminement": "MOULINS SUR OUANNE", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89272"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "478ed7acddec816bb078c0ae83aca0b3055e19d1", "fields": {"nom_de_la_commune": "NITRY", "libell_d_acheminement": "NITRY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89277"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ff095cb966e6e85a5ed1ac7db321db7ffd399aa", "fields": {"nom_de_la_commune": "NOYERS", "libell_d_acheminement": "NOYERS", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89279"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ebd8c77cd1d18b8b0e3108f522fe1456dffcfb4", "fields": {"nom_de_la_commune": "PASILLY", "libell_d_acheminement": "PASILLY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89290"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348908839e45f670fc4dcdef975fc91b6b9eba7e", "fields": {"nom_de_la_commune": "PERCEY", "libell_d_acheminement": "PERCEY", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89292"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ffd0274ebedf1bab65c7dd13e53d61d2cd6dea", "fields": {"nom_de_la_commune": "PERRIGNY", "libell_d_acheminement": "PERRIGNY", "code_postal": "89000", "coordonnees_gps": [47.8006402501, 3.56347649804], "code_commune_insee": "89295"}, "geometry": {"type": "Point", "coordinates": [3.56347649804, 47.8006402501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cca99e727e6c300166ecfe199a2d1a802b29591", "fields": {"nom_de_la_commune": "PLESSIS ST JEAN", "libell_d_acheminement": "PLESSIS ST JEAN", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89302"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1a349701844c259df168705edb347f47fc1bc6", "fields": {"nom_de_la_commune": "POILLY SUR SEREIN", "libell_d_acheminement": "POILLY SUR SEREIN", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89303"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "029281f69c2cd784140af3fbd314e6eb8fe8362b", "fields": {"nom_de_la_commune": "AFFRACOURT", "libell_d_acheminement": "AFFRACOURT", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54005"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e29e771fa3a0d1e3e6222c8f27ad51c4d194b9", "fields": {"nom_de_la_commune": "AINGERAY", "libell_d_acheminement": "AINGERAY", "code_postal": "54460", "coordonnees_gps": [48.7483628916, 6.04028548825], "code_commune_insee": "54007"}, "geometry": {"type": "Point", "coordinates": [6.04028548825, 48.7483628916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ceeb41f6cf7d3e3f1f4ddc316f77caab0a5444", "fields": {"nom_de_la_commune": "ALLAMONT", "libell_d_acheminement": "ALLAMONT", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54009"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83d29ed0038bb70b1a71304ddcbdb57c4066140d", "fields": {"nom_de_la_commune": "ANCERVILLER", "libell_d_acheminement": "ANCERVILLER", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54014"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94aa3b09755aefea15eeab4c02361ca41a485a24", "fields": {"nom_de_la_commune": "ARNAVILLE", "libell_d_acheminement": "ARNAVILLE", "code_postal": "54530", "coordonnees_gps": [48.9844597069, 5.99102568671], "code_commune_insee": "54022"}, "geometry": {"type": "Point", "coordinates": [5.99102568671, 48.9844597069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d17cd2295aadf839233211d5b97f7a2231d5727", "fields": {"nom_de_la_commune": "ATTON", "libell_d_acheminement": "ATTON", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54027"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0821843425b73f6ed861f42e5da8cfdd5eec8bf4", "fields": {"nom_de_la_commune": "AUTREPIERRE", "libell_d_acheminement": "AUTREPIERRE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54030"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78ad84b4debdb1d4dc2ae9076618619f9c7266e7", "fields": {"nom_de_la_commune": "AVRICOURT", "libell_d_acheminement": "AVRICOURT", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54035"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76b5f8c1786338254349c27ae67de48cb26e9ba", "fields": {"nom_de_la_commune": "BACCARAT", "libell_d_acheminement": "BACCARAT", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54039"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9578a8b37d5051e5aee1c941c1a52f550fd63d27", "fields": {"nom_de_la_commune": "BAINVILLE SUR MADON", "libell_d_acheminement": "BAINVILLE SUR MADON", "code_postal": "54550", "coordonnees_gps": [48.6084517258, 6.04974383571], "code_commune_insee": "54043"}, "geometry": {"type": "Point", "coordinates": [6.04974383571, 48.6084517258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36915415033b180f09341549148d559565676825", "fields": {"nom_de_la_commune": "BARISEY AU PLAIN", "libell_d_acheminement": "BARISEY AU PLAIN", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54046"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44152aef9ddf48c448801e59673e934dce973c13", "fields": {"nom_de_la_commune": "BATILLY", "libell_d_acheminement": "BATILLY", "code_postal": "54980", "coordonnees_gps": [49.1764673803, 5.96982138413], "code_commune_insee": "54051"}, "geometry": {"type": "Point", "coordinates": [5.96982138413, 49.1764673803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "555b950091c20e797b7fa319b7fa8865e10788b9", "fields": {"nom_de_la_commune": "BECHAMPS", "libell_d_acheminement": "BECHAMPS", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54058"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c12acd5a16019a0e94e6b481fa26ee2a802e9412", "fields": {"code_postal": "54610", "code_commune_insee": "54059", "libell_d_acheminement": "BELLEAU", "ligne_5": "LIXIERES", "nom_de_la_commune": "BELLEAU", "coordonnees_gps": [48.8814736429, 6.22677651571]}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "662443727a5ab80d67b70537e308d7ee377fbdb9", "fields": {"code_postal": "54610", "code_commune_insee": "54059", "libell_d_acheminement": "BELLEAU", "ligne_5": "SERRIERES", "nom_de_la_commune": "BELLEAU", "coordonnees_gps": [48.8814736429, 6.22677651571]}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08479e83935c5bbddb4269141798944a15b24f00", "fields": {"nom_de_la_commune": "BEUVILLERS", "libell_d_acheminement": "BEUVILLERS", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54069"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2c63084a6566b690911948dded832c43c40d14", "fields": {"nom_de_la_commune": "BEZANGE LA GRANDE", "libell_d_acheminement": "BEZANGE LA GRANDE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54071"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cec856c6485fcce2c537e8b4237bb511669d7bd8", "fields": {"nom_de_la_commune": "BONCOURT", "libell_d_acheminement": "BONCOURT", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54082"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f66dafb271b365f70df919ed9e86ecd7db9461f", "fields": {"nom_de_la_commune": "BONVILLER", "libell_d_acheminement": "BONVILLER", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54083"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d1edcf2eca8a38a52b6398c53a5d51713eb813", "fields": {"nom_de_la_commune": "MONT BONVILLERS", "libell_d_acheminement": "MONT BONVILLERS", "code_postal": "54111", "coordonnees_gps": [49.3263998152, 5.84293563303], "code_commune_insee": "54084"}, "geometry": {"type": "Point", "coordinates": [5.84293563303, 49.3263998152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02b26f96d1ba371724948a0db38012b7e080de76", "fields": {"nom_de_la_commune": "BOUVRON", "libell_d_acheminement": "BOUVRON", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54088"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fab63bfead6762b69f7ee46fbb72beb17cc5fbfe", "fields": {"code_postal": "54770", "code_commune_insee": "54089", "libell_d_acheminement": "BOUXIERES AUX CHENES", "ligne_5": "MOULINS", "nom_de_la_commune": "BOUXIERES AUX CHENES", "coordonnees_gps": [48.7569187312, 6.27788013157]}, "geometry": {"type": "Point", "coordinates": [6.27788013157, 48.7569187312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63efe8ba478051f669c0c6eb67cad47035be832d", "fields": {"nom_de_la_commune": "BOUXIERES AUX DAMES", "libell_d_acheminement": "BOUXIERES AUX DAMES", "code_postal": "54136", "coordonnees_gps": [48.7581559072, 6.16412630754], "code_commune_insee": "54090"}, "geometry": {"type": "Point", "coordinates": [6.16412630754, 48.7581559072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b47d261e796b489fae7ac617eecd02c903bcf65", "fields": {"nom_de_la_commune": "BUISSONCOURT", "libell_d_acheminement": "BUISSONCOURT", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54104"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a9b023e356daf2dfcba26938c184c1dfa57d03", "fields": {"nom_de_la_commune": "CERVILLE", "libell_d_acheminement": "CERVILLE", "code_postal": "54420", "coordonnees_gps": [48.6910890899, 6.28501495776], "code_commune_insee": "54110"}, "geometry": {"type": "Point", "coordinates": [6.28501495776, 48.6910890899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d711bd9def18ba2909faffa157035fda466273", "fields": {"nom_de_la_commune": "CHAMPEY SUR MOSELLE", "libell_d_acheminement": "CHAMPEY SUR MOSELLE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54114"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "567a6a92b7222a68be92fb113203b5807b0905bb", "fields": {"nom_de_la_commune": "CHAMPIGNEULLES", "libell_d_acheminement": "CHAMPIGNEULLES", "code_postal": "54250", "coordonnees_gps": [48.7208958614, 6.122323287], "code_commune_insee": "54115"}, "geometry": {"type": "Point", "coordinates": [6.122323287, 48.7208958614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e178115c189bb415e3e1a8c86f48b28db55ccb38", "fields": {"nom_de_la_commune": "CHARENCY VEZIN", "libell_d_acheminement": "CHARENCY VEZIN", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54118"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dc7e8139130bf11f5fb1273d7121bac2041be16", "fields": {"nom_de_la_commune": "CHAREY", "libell_d_acheminement": "CHAREY", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54119"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55568e7f19f3686d9a3f41019aea72705985e3ae", "fields": {"nom_de_la_commune": "CHAUDENEY SUR MOSELLE", "libell_d_acheminement": "CHAUDENEY SUR MOSELLE", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54122"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94617a0f4c5d4cda3f6a31256a219c58e1a7ea6a", "fields": {"nom_de_la_commune": "CHENEVIERES", "libell_d_acheminement": "CHENEVIERES", "code_postal": "54122", "coordonnees_gps": [48.4830574623, 6.66436645475], "code_commune_insee": "54125"}, "geometry": {"type": "Point", "coordinates": [6.66436645475, 48.4830574623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9ab6f91bc2c312ccc5654a89ee2458c6dc6e52", "fields": {"nom_de_la_commune": "CHENICOURT", "libell_d_acheminement": "CHENICOURT", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54126"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0f074906ef8e82dfab92d1c33c98c9c8516171e", "fields": {"nom_de_la_commune": "CHOLOY MENILLOT", "libell_d_acheminement": "CHOLOY MENILLOT", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54128"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "706deba9c9cf57c4d5666d83916228f05c076dc6", "fields": {"nom_de_la_commune": "CLAYEURES", "libell_d_acheminement": "CLAYEURES", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54130"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d312a371fb50c8abe081456e7c697e6fd72d935", "fields": {"nom_de_la_commune": "COINCOURT", "libell_d_acheminement": "COINCOURT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54133"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8640b195fefe58003978c8a13094e5c85010202", "fields": {"code_postal": "54260", "code_commune_insee": "54134", "libell_d_acheminement": "COLMEY", "ligne_5": "FLABEUVILLE", "nom_de_la_commune": "COLMEY", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f9dfc3d6fa970f0931867a76890c3e676be1548", "fields": {"nom_de_la_commune": "CONFLANS EN JARNISY", "libell_d_acheminement": "CONFLANS EN JARNISY", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54136"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b7021c76630e28388c996adef43f679702d6986", "fields": {"nom_de_la_commune": "CONS LA GRANDVILLE", "libell_d_acheminement": "CONS LA GRANDVILLE", "code_postal": "54870", "coordonnees_gps": [49.4779492899, 5.69039116636], "code_commune_insee": "54137"}, "geometry": {"type": "Point", "coordinates": [5.69039116636, 49.4779492899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca284719d30281bad764e9274ba8eee73d6eca37", "fields": {"nom_de_la_commune": "COSNES ET ROMAIN", "libell_d_acheminement": "COSNES ET ROMAIN", "code_postal": "54400", "coordonnees_gps": [49.5244232599, 5.7294177983], "code_commune_insee": "54138"}, "geometry": {"type": "Point", "coordinates": [5.7294177983, 49.5244232599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2184d438f65ffe31f393ca7ad0f711bb5aba88f", "fields": {"nom_de_la_commune": "CRANTENOY", "libell_d_acheminement": "CRANTENOY", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54142"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30abd6188b899c53b5a441b341744b90bb63b038", "fields": {"nom_de_la_commune": "CREVECHAMPS", "libell_d_acheminement": "CREVECHAMPS", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54144"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c799fa9cc9e8364a2967dd4655314e7cada5a5d6", "fields": {"nom_de_la_commune": "CREZILLES", "libell_d_acheminement": "CREZILLES", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54146"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5014989b24eb292d43f9723b4794dc71abfa334", "fields": {"nom_de_la_commune": "DENEUVRE", "libell_d_acheminement": "DENEUVRE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54154"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b33058929a858f4903d8595d8689dba4581719", "fields": {"nom_de_la_commune": "DONCOURT LES LONGUYON", "libell_d_acheminement": "DONCOURT LES LONGUYON", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54172"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd8fb8be0989ef649ef86dac6ec65856531c146", "fields": {"nom_de_la_commune": "EINVILLE AU JARD", "libell_d_acheminement": "EINVILLE AU JARD", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54176"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2954cd1accb9b7319cea0683bc5f691a69124be8", "fields": {"nom_de_la_commune": "EPIEZ SUR CHIERS", "libell_d_acheminement": "EPIEZ SUR CHIERS", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54178"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50c9f0bd4b71743a2b74472f20eefc0516007511", "fields": {"nom_de_la_commune": "ERROUVILLE", "libell_d_acheminement": "ERROUVILLE", "code_postal": "54680", "coordonnees_gps": [49.4266992744, 5.91035100074], "code_commune_insee": "54181"}, "geometry": {"type": "Point", "coordinates": [5.91035100074, 49.4266992744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c6168cf18cbb645aae1b40ec5073ddd01553d4", "fields": {"nom_de_la_commune": "EUVEZIN", "libell_d_acheminement": "EUVEZIN", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54187"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "991a80d63b2f402563233d4b6ee459900a2775ae", "fields": {"nom_de_la_commune": "FECOCOURT", "libell_d_acheminement": "FECOCOURT", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54190"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8042dc2a5da11ee14092131f377468121ad9531", "fields": {"nom_de_la_commune": "FENNEVILLER", "libell_d_acheminement": "FENNEVILLER", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54191"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f2bd5f0039db52eeffe06cd0a4dbd9e55592a4", "fields": {"nom_de_la_commune": "FLAINVAL", "libell_d_acheminement": "FLAINVAL", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54195"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177981e28d420e251ef651ad163c0b0a6b38d134", "fields": {"nom_de_la_commune": "FRAIMBOIS", "libell_d_acheminement": "FRAIMBOIS", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54206"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f929c89a42433be75d66092ad440db9104c8ae53", "fields": {"nom_de_la_commune": "FRANCONVILLE", "libell_d_acheminement": "FRANCONVILLE", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54209"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a761d9ba1bf4119d45e25b6435ca36ea88285018", "fields": {"nom_de_la_commune": "FREMENIL", "libell_d_acheminement": "FREMENIL", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54210"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56794117851ebfc3c360b3b2b90c9c27397e8410", "fields": {"nom_de_la_commune": "FRESNOIS LA MONTAGNE", "libell_d_acheminement": "FRESNOIS LA MONTAGNE", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54212"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd68424809b98263bad6e08daba362c14242398", "fields": {"nom_de_la_commune": "FROLOIS", "libell_d_acheminement": "FROLOIS", "code_postal": "54160", "coordonnees_gps": [48.5525165802, 6.13358335741], "code_commune_insee": "54214"}, "geometry": {"type": "Point", "coordinates": [6.13358335741, 48.5525165802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd00bd62b1c7b474e2fa49a2cc09a9792aba2138", "fields": {"nom_de_la_commune": "GRISCOURT", "libell_d_acheminement": "GRISCOURT", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54239"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0482066e823153eedd0f7ad943b8b76a7586478", "fields": {"nom_de_la_commune": "HAIGNEVILLE", "libell_d_acheminement": "HAIGNEVILLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54245"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c8043c4b88f24b2eea623ca76573261d1eb5eb7", "fields": {"nom_de_la_commune": "HANNONVILLE SUZEMONT", "libell_d_acheminement": "HANNONVILLE SUZEMONT", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54249"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038e757848385acb428063c0e65ed2d394d8ae94", "fields": {"nom_de_la_commune": "HARAUCOURT", "libell_d_acheminement": "HARAUCOURT", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54250"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9429e3560400d6fc409bcb05ae56957d191e1435", "fields": {"code_postal": "54860", "code_commune_insee": "54254", "libell_d_acheminement": "HAUCOURT MOULAINE", "ligne_5": "ST CHARLES", "nom_de_la_commune": "HAUCOURT MOULAINE", "coordonnees_gps": [49.4962809644, 5.80724274639]}, "geometry": {"type": "Point", "coordinates": [5.80724274639, 49.4962809644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8a1e645e25ba78a3b5584622a6509bfb83cf7dd", "fields": {"nom_de_la_commune": "HAUDONVILLE", "libell_d_acheminement": "HAUDONVILLE", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54255"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cb3bd025ca4bac82eaf32ecc63a0e946f6e348e", "fields": {"nom_de_la_commune": "JARVILLE LA MALGRANGE", "libell_d_acheminement": "JARVILLE LA MALGRANGE", "code_postal": "54140", "coordonnees_gps": [48.6669142212, 6.20534540639], "code_commune_insee": "54274"}, "geometry": {"type": "Point", "coordinates": [6.20534540639, 48.6669142212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65b0465b801d6cc8d678df33700e0bc6123b6ecb", "fields": {"nom_de_la_commune": "JAULNY", "libell_d_acheminement": "JAULNY", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54275"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "490063674a9c9dce20d8f5768826dc651a5d15e0", "fields": {"nom_de_la_commune": "JEANDELAINCOURT", "libell_d_acheminement": "JEANDELAINCOURT", "code_postal": "54114", "coordonnees_gps": [48.846903091, 6.24363375744], "code_commune_insee": "54276"}, "geometry": {"type": "Point", "coordinates": [6.24363375744, 48.846903091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add0b3f7d4504833aef12035c0f906a610e15e2c", "fields": {"nom_de_la_commune": "JOUAVILLE", "libell_d_acheminement": "JOUAVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54283"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f3c51cb35fc8f4aac9f38a0304c0a2943aa03a5", "fields": {"nom_de_la_commune": "LANDECOURT", "libell_d_acheminement": "LANDECOURT", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54293"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10bbc0c5f41debe578cafcb03383c827339e03b", "fields": {"nom_de_la_commune": "LANDREMONT", "libell_d_acheminement": "LANDREMONT", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54294"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19b93e76f930ee6b61a06600b3f6351e22fca931", "fields": {"nom_de_la_commune": "LANEUVEVILLE DERRIERE FOUG", "libell_d_acheminement": "LANEUVEVILLE DERRIERE FOUG", "code_postal": "54570", "coordonnees_gps": [48.6894085675, 5.77714272424], "code_commune_insee": "54298"}, "geometry": {"type": "Point", "coordinates": [5.77714272424, 48.6894085675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d9f0480770551bec62233bc7dd013de4ba9f3aa", "fields": {"nom_de_la_commune": "LANEUVEVILLE DEVANT BAYON", "libell_d_acheminement": "LANEUVEVILLE DEVANT BAYON", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54299"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f490dd5d2fa9092a42d57abe1823a01c505a5a5d", "fields": {"nom_de_la_commune": "LAY ST CHRISTOPHE", "libell_d_acheminement": "LAY ST CHRISTOPHE", "code_postal": "54690", "coordonnees_gps": [48.7521802489, 6.20651635247], "code_commune_insee": "54305"}, "geometry": {"type": "Point", "coordinates": [6.20651635247, 48.7521802489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04d84fdba1d4f21025cd2fe8088d68decee1215c", "fields": {"nom_de_la_commune": "LEMAINVILLE", "libell_d_acheminement": "LEMAINVILLE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54309"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca2a130ad8563f968870da0041954c729347293", "fields": {"nom_de_la_commune": "LUBEY", "libell_d_acheminement": "LUBEY", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54326"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26331845db0f0328ff483cc9ec023ba4d5d4c9f0", "fields": {"nom_de_la_commune": "MAIZIERES", "libell_d_acheminement": "MAIZIERES", "code_postal": "54550", "coordonnees_gps": [48.6084517258, 6.04974383571], "code_commune_insee": "54336"}, "geometry": {"type": "Point", "coordinates": [6.04974383571, 48.6084517258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827fcb8c2402aa3764ec168a01a8529306ac231c", "fields": {"nom_de_la_commune": "MALZEVILLE", "libell_d_acheminement": "MALZEVILLE", "code_postal": "54220", "coordonnees_gps": [48.7225241745, 6.18950275131], "code_commune_insee": "54339"}, "geometry": {"type": "Point", "coordinates": [6.18950275131, 48.7225241745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d1e6e2bf396eaa72ed4e2c6f060f1ddabfec0f3", "fields": {"nom_de_la_commune": "MANONCOURT EN WOEVRE", "libell_d_acheminement": "MANONCOURT EN WOEVRE", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54346"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ca07aef8ad5bd5dc779d4439649a87b50227add", "fields": {"nom_de_la_commune": "MARBACHE", "libell_d_acheminement": "MARBACHE", "code_postal": "54820", "coordonnees_gps": [48.7898557088, 6.09022066301], "code_commune_insee": "54351"}, "geometry": {"type": "Point", "coordinates": [6.09022066301, 48.7898557088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f3f1d2a62c93aabd01b2781f55b6a3729dc972", "fields": {"nom_de_la_commune": "MAZERULLES", "libell_d_acheminement": "MAZERULLES", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54358"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854e9dcb39d10e3fc8629eea62a1e75a93d325ed", "fields": {"code_postal": "54560", "code_commune_insee": "54363", "libell_d_acheminement": "MERCY LE HAUT", "ligne_5": "BOUDREZY", "nom_de_la_commune": "MERCY LE HAUT", "coordonnees_gps": [49.3750223548, 5.87500468042]}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66231a47febfa52e522ce80b147d7bde648dba78", "fields": {"nom_de_la_commune": "MOINEVILLE", "libell_d_acheminement": "MOINEVILLE", "code_postal": "54580", "coordonnees_gps": [49.1903187118, 5.97291024326], "code_commune_insee": "54371"}, "geometry": {"type": "Point", "coordinates": [5.97291024326, 49.1903187118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1af2cb71ff6db4321d5cc24e699083dae85334", "fields": {"nom_de_la_commune": "MONTREUX", "libell_d_acheminement": "MONTREUX", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54381"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "505c1eaf35a56dc5ad3451965976996b4e360bbb", "fields": {"nom_de_la_commune": "MONT ST MARTIN", "libell_d_acheminement": "MONT ST MARTIN", "code_postal": "54350", "coordonnees_gps": [49.5466243356, 5.77826351741], "code_commune_insee": "54382"}, "geometry": {"type": "Point", "coordinates": [5.77826351741, 49.5466243356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a464292bd3c7ae45678980a45c6145440686730", "fields": {"nom_de_la_commune": "MOUTROT", "libell_d_acheminement": "MOUTROT", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54392"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe59ee113c5a69d4b56d4d9543621167d8a15688", "fields": {"nom_de_la_commune": "NONHIGNY", "libell_d_acheminement": "NONHIGNY", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54401"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41d529e8aef153d1d00c3211f29fa2863326b9b7", "fields": {"nom_de_la_commune": "NOVIANT AUX PRES", "libell_d_acheminement": "NOVIANT AUX PRES", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54404"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faaae0a62e1e3e7eed15bc02fd10c329e9e04a37", "fields": {"nom_de_la_commune": "OGNEVILLE", "libell_d_acheminement": "OGNEVILLE", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54407"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c342ee0c506156450b197e084f8f3e194236026", "fields": {"nom_de_la_commune": "OTHE", "libell_d_acheminement": "OTHE", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54412"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b69bdf3ab3aab0724f8e0ccc6cb6ca530c8cf3c", "fields": {"nom_de_la_commune": "PAGNY SUR MOSELLE", "libell_d_acheminement": "PAGNY SUR MOSELLE", "code_postal": "54530", "coordonnees_gps": [48.9844597069, 5.99102568671], "code_commune_insee": "54415"}, "geometry": {"type": "Point", "coordinates": [5.99102568671, 48.9844597069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4defd27e2bcab03f5506d147e6969867827bfa2c", "fields": {"nom_de_la_commune": "PARROY", "libell_d_acheminement": "PARROY", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54418"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87eeffc0a229384f6dd02f908dcd417584eddf1d", "fields": {"nom_de_la_commune": "PARUX", "libell_d_acheminement": "PARUX", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54419"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a22c1991a2580c150c1d3722ea446931b3ae9f", "fields": {"nom_de_la_commune": "PIENNES", "libell_d_acheminement": "PIENNES", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54425"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a830aea42ac1b3b009d63059659e51216391b0", "fields": {"nom_de_la_commune": "PRENY", "libell_d_acheminement": "PRENY", "code_postal": "54530", "coordonnees_gps": [48.9844597069, 5.99102568671], "code_commune_insee": "54435"}, "geometry": {"type": "Point", "coordinates": [5.99102568671, 48.9844597069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19667de92151b5626b531bd2275444bc2636c119", "fields": {"nom_de_la_commune": "RECHICOURT LA PETITE", "libell_d_acheminement": "RECHICOURT LA PETITE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54446"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6c2bdc8068f3f1129595446613c7be7bd3f3969", "fields": {"nom_de_la_commune": "REHON", "libell_d_acheminement": "REHON", "code_postal": "54430", "coordonnees_gps": [49.4993467832, 5.75753479184], "code_commune_insee": "54451"}, "geometry": {"type": "Point", "coordinates": [5.75753479184, 49.4993467832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86625947f04926736139ca793ca37de245743111", "fields": {"nom_de_la_commune": "REILLON", "libell_d_acheminement": "REILLON", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54452"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbbd4bf7d3937db8a2e0cd809efa76607c80696f", "fields": {"nom_de_la_commune": "REMENOVILLE", "libell_d_acheminement": "REMENOVILLE", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54455"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df492f6a5d0bcb4607bd3485e207ab4994357ca7", "fields": {"nom_de_la_commune": "ROYAUMEIX", "libell_d_acheminement": "ROYAUMEIX", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54466"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40fbbdd0d8c062bb89469c470ce25ff85beacc1a", "fields": {"nom_de_la_commune": "ST BOINGT", "libell_d_acheminement": "ST BOINGT", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54471"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca509c4d828c16fe69fcbcaa53edf96d77a17ed6", "fields": {"nom_de_la_commune": "ST JEAN LES LONGUYON", "libell_d_acheminement": "ST JEAN LES LONGUYON", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54476"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40bd77686feec79d60040675f747d380852ba29f", "fields": {"code_postal": "54260", "code_commune_insee": "54476", "libell_d_acheminement": "ST JEAN LES LONGUYON", "ligne_5": "HAM LES ST JEAN", "nom_de_la_commune": "ST JEAN LES LONGUYON", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59df75600d8213273d8a3112123dcd9692e5a41c", "fields": {"nom_de_la_commune": "COULOMBY", "libell_d_acheminement": "COULOMBY", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62245"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80565166610b72f2a70041833027382c08157572", "fields": {"nom_de_la_commune": "CREQUY", "libell_d_acheminement": "CREQUY", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62257"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48caff23b520906144e70642256b14efb114d374", "fields": {"nom_de_la_commune": "DENIER", "libell_d_acheminement": "DENIER", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62266"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a19ffbbd25ed4ecf78f11d25c055c33556714f4", "fields": {"nom_de_la_commune": "DIEVAL", "libell_d_acheminement": "DIEVAL", "code_postal": "62460", "coordonnees_gps": [50.4531419324, 2.47496250173], "code_commune_insee": "62269"}, "geometry": {"type": "Point", "coordinates": [2.47496250173, 50.4531419324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b0a14d0514cf163ddca7dd9d65f18d8e3c2e730", "fields": {"nom_de_la_commune": "DOURIEZ", "libell_d_acheminement": "DOURIEZ", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62275"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c223bac4cbafa4b7e59452ec34e5cceb1d7fb45", "fields": {"nom_de_la_commune": "DOUVRIN", "libell_d_acheminement": "DOUVRIN", "code_postal": "62138", "coordonnees_gps": [50.5179062037, 2.8111923561], "code_commune_insee": "62276"}, "geometry": {"type": "Point", "coordinates": [2.8111923561, 50.5179062037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ff2e70c2c699124169b0c3060d9b3a5303e9be", "fields": {"nom_de_la_commune": "ECHINGHEN", "libell_d_acheminement": "ECHINGHEN", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62281"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1e693845f4950e704ef25a533dc02f8c4acd6f", "fields": {"nom_de_la_commune": "ENGUINEGATTE", "libell_d_acheminement": "ENGUINEGATTE", "code_postal": "62145", "coordonnees_gps": [50.5958443707, 2.29512440043], "code_commune_insee": "62294"}, "geometry": {"type": "Point", "coordinates": [2.29512440043, 50.5958443707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e065e5f238c455e7e03a527ae2386814e68f56f", "fields": {"nom_de_la_commune": "EQUIRRE", "libell_d_acheminement": "EQUIRRE", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62301"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c842769e4fedfef28c1251d47fcce62f0fd665ef", "fields": {"nom_de_la_commune": "ERIN", "libell_d_acheminement": "ERIN", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62303"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc53842ee7d8725c065001085d52be7088d161b3", "fields": {"nom_de_la_commune": "ESTREE", "libell_d_acheminement": "ESTREE", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62312"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720d767caa04362925fe6c85f48da66dea452524", "fields": {"nom_de_la_commune": "ESTREELLES", "libell_d_acheminement": "ESTREELLES", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62315"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb65e0e1c80dc80c5617fc03da642ebdb9c9108", "fields": {"nom_de_la_commune": "FAMPOUX", "libell_d_acheminement": "FAMPOUX", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62323"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75b6d6ef52d642c8efb1076b6f01285ed47d825e", "fields": {"nom_de_la_commune": "FONTAINE LES BOULANS", "libell_d_acheminement": "FONTAINE LES BOULANS", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62342"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c7ef214a5429d6f720da5ce92c47360af6bee0f", "fields": {"nom_de_la_commune": "FONTAINE LES CROISILLES", "libell_d_acheminement": "FONTAINE LES CROISILLES", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62343"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2e1c56e0259b7476d04f43d44466aac9e9a01a", "fields": {"nom_de_la_commune": "FONTAINE L ETALON", "libell_d_acheminement": "FONTAINE L ETALON", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62345"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260a561d7cde4cf577559678d119d44d68d0b218", "fields": {"nom_de_la_commune": "FOUQUEREUIL", "libell_d_acheminement": "FOUQUEREUIL", "code_postal": "62232", "coordonnees_gps": [50.5485643749, 2.61912647325], "code_commune_insee": "62349"}, "geometry": {"type": "Point", "coordinates": [2.61912647325, 50.5485643749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "993b55f29883e867082c5987f25c9697dd00b407", "fields": {"nom_de_la_commune": "FRESNES LES MONTAUBAN", "libell_d_acheminement": "FRESNES LES MONTAUBAN", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62355"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "306a26b24dc72e53c46232b3e1c4f20416470782", "fields": {"nom_de_la_commune": "FRESSIN", "libell_d_acheminement": "FRESSIN", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62359"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c123a8c11a5c6577ec5d4f7f872df1047ce065f8", "fields": {"nom_de_la_commune": "FREVILLERS", "libell_d_acheminement": "FREVILLERS", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62362"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c00dac7d75fcc6807db4bb48c28f06f89cf8323", "fields": {"nom_de_la_commune": "GAUCHIN LEGAL", "libell_d_acheminement": "GAUCHIN LEGAL", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62366"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d4142e8b4b59a6db2eb1ff7ebcd410707272224", "fields": {"nom_de_la_commune": "GOMIECOURT", "libell_d_acheminement": "GOMIECOURT", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62374"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d992cae43715debc3dd0274aa6e0ed4e20848e3e", "fields": {"nom_de_la_commune": "GOSNAY", "libell_d_acheminement": "GOSNAY", "code_postal": "62199", "coordonnees_gps": [50.5082867831, 2.58728737007], "code_commune_insee": "62377"}, "geometry": {"type": "Point", "coordinates": [2.58728737007, 50.5082867831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9c44313edbc75b410cc9e207a34c60c6cc086d", "fields": {"nom_de_la_commune": "GOUY SERVINS", "libell_d_acheminement": "GOUY SERVINS", "code_postal": "62530", "coordonnees_gps": [50.4280976053, 2.64237906213], "code_commune_insee": "62380"}, "geometry": {"type": "Point", "coordinates": [2.64237906213, 50.4280976053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce2b348ca19a3c1643cfcca1776216a96fc7d8d", "fields": {"nom_de_la_commune": "GREVILLERS", "libell_d_acheminement": "GREVILLERS", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62387"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab9ea396d362c670f36cd9032d467c2e9952e605", "fields": {"nom_de_la_commune": "GRIGNY", "libell_d_acheminement": "GRIGNY", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62388"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59aaf5ddad3bdba5431389938ffc307a0c8d366e", "fields": {"nom_de_la_commune": "GRINCOURT LES PAS", "libell_d_acheminement": "GRINCOURT LES PAS", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62389"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd44b66ad1b816b153129d23e85004ba51188e5", "fields": {"nom_de_la_commune": "GUEMAPPE", "libell_d_acheminement": "GUEMAPPE", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62392"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6e62d491c1e096cc76819bcfb0128c4bce7c27", "fields": {"nom_de_la_commune": "GUIGNY", "libell_d_acheminement": "GUIGNY", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62395"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a59fe98554cd02b434dcef604eb9262f356fce53", "fields": {"nom_de_la_commune": "GUINECOURT", "libell_d_acheminement": "GUINECOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62396"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "245d0c09b32f0cc06cb47b941687502b4afe0d43", "fields": {"nom_de_la_commune": "HAILLICOURT", "libell_d_acheminement": "HAILLICOURT", "code_postal": "62940", "coordonnees_gps": [50.4753757752, 2.57841530584], "code_commune_insee": "62400"}, "geometry": {"type": "Point", "coordinates": [2.57841530584, 50.4753757752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23dbac12d6b520fa3eefebcc3db770b294309a19", "fields": {"nom_de_la_commune": "HAPLINCOURT", "libell_d_acheminement": "HAPLINCOURT", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62410"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "586de23849ba141059267dc42a4940f76ca091b0", "fields": {"nom_de_la_commune": "HEBUTERNE", "libell_d_acheminement": "HEBUTERNE", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62422"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7856db113f2fe5a025199b34fab2259762706fd", "fields": {"nom_de_la_commune": "HERMIES", "libell_d_acheminement": "HERMIES", "code_postal": "62147", "coordonnees_gps": [50.1126051547, 3.07159688], "code_commune_insee": "62440"}, "geometry": {"type": "Point", "coordinates": [3.07159688, 50.1126051547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35a67fd032baf8e7edd5f89770803f1a4fe672f", "fields": {"nom_de_la_commune": "HERNICOURT", "libell_d_acheminement": "HERNICOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62442"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dcf564cb6e4d0bc342109a6017f273db8068e8a", "fields": {"nom_de_la_commune": "HERSIN COUPIGNY", "libell_d_acheminement": "HERSIN COUPIGNY", "code_postal": "62530", "coordonnees_gps": [50.4280976053, 2.64237906213], "code_commune_insee": "62443"}, "geometry": {"type": "Point", "coordinates": [2.64237906213, 50.4280976053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "530a1864d1e4c7d06e6001a2f01ed01ccf590f5e", "fields": {"nom_de_la_commune": "HESDIGNEUL LES BOULOGNE", "libell_d_acheminement": "HESDIGNEUL LES BOULOGNE", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62446"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "822df5c9ef348260672299948faa4751a262ee7d", "fields": {"nom_de_la_commune": "HESMOND", "libell_d_acheminement": "HESMOND", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62449"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b665627eb3d7c6a466dfeff6b11b0d7243d66b3", "fields": {"nom_de_la_commune": "HOCQUINGHEN", "libell_d_acheminement": "HOCQUINGHEN", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62455"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54c19e8f60278f446a7291adcc1bb7746c88e2a8", "fields": {"nom_de_la_commune": "HOUDAIN", "libell_d_acheminement": "HOUDAIN", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62457"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31cfddbc53590e4485b823d3048cb1495a5d406", "fields": {"nom_de_la_commune": "HUCLIER", "libell_d_acheminement": "HUCLIER", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62462"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1e595d0f32b9471515a5bd30ab40a171a0ccaa9", "fields": {"nom_de_la_commune": "HUCQUELIERS", "libell_d_acheminement": "HUCQUELIERS", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62463"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4954f01dc621b12014491bd75bb49aebe9d69c9", "fields": {"nom_de_la_commune": "HUMBERT", "libell_d_acheminement": "HUMBERT", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62466"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c430bc34a3814a54f65107c90ea4ddd89268e1e", "fields": {"nom_de_la_commune": "INCHY EN ARTOIS", "libell_d_acheminement": "INCHY EN ARTOIS", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62469"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e0b6727b3c7784559c457b2a32bd15d3c8056f", "fields": {"nom_de_la_commune": "ISBERGUES", "libell_d_acheminement": "ISBERGUES", "code_postal": "62330", "coordonnees_gps": [50.61399538, 2.46439960248], "code_commune_insee": "62473"}, "geometry": {"type": "Point", "coordinates": [2.46439960248, 50.61399538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a7242fe25479e61ce03b5f18cd24786ae18a10", "fields": {"nom_de_la_commune": "IZEL LES HAMEAU", "libell_d_acheminement": "IZEL LES HAMEAU", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62477"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1ca2d18ec5ee6b2616c23bbad538680d870ef0", "fields": {"nom_de_la_commune": "LABROYE", "libell_d_acheminement": "LABROYE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62481"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23bb41665c266ace7a03163b9ead870288a14176", "fields": {"nom_de_la_commune": "LAVENTIE", "libell_d_acheminement": "LAVENTIE", "code_postal": "62840", "coordonnees_gps": [50.6197278432, 2.7991107386], "code_commune_insee": "62491"}, "geometry": {"type": "Point", "coordinates": [2.7991107386, 50.6197278432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd778d14b496cc25186c00c566283e1dfaab8bb3", "fields": {"nom_de_la_commune": "LENS", "libell_d_acheminement": "LENS", "code_postal": "62300", "coordonnees_gps": [50.435564897, 2.82028472263], "code_commune_insee": "62498"}, "geometry": {"type": "Point", "coordinates": [2.82028472263, 50.435564897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5556dbca7710eff933f490baff5772729ca1258", "fields": {"nom_de_la_commune": "LEULINGHEM", "libell_d_acheminement": "LEULINGHEM", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62504"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3034d6dcdb17b13e1e41bf1b0e7e25279a525aba", "fields": {"nom_de_la_commune": "LICQUES", "libell_d_acheminement": "LICQUES", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62506"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63acebaf964d844fd955aff485e82af35cf4232", "fields": {"nom_de_la_commune": "LIENCOURT", "libell_d_acheminement": "LIENCOURT", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62507"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74fd9c9c681543f259b264df43a0956ff7211b9d", "fields": {"nom_de_la_commune": "LIERES", "libell_d_acheminement": "LIERES", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62508"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2bfff05395a9350ece5b5ff39b287c11f25d782", "fields": {"nom_de_la_commune": "LIGNY SUR CANCHE", "libell_d_acheminement": "LIGNY SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62513"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61c14f1fe71d78b07c6ce400b5962fef60b1250f", "fields": {"nom_de_la_commune": "LIGNY THILLOY", "libell_d_acheminement": "LIGNY THILLOY", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62515"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cab175e0bd315ca547a2933b74bc0ce3b7208ba0", "fields": {"nom_de_la_commune": "LOISON SOUS LENS", "libell_d_acheminement": "LOISON SOUS LENS", "code_postal": "62218", "coordonnees_gps": [50.4434633909, 2.85889088604], "code_commune_insee": "62523"}, "geometry": {"type": "Point", "coordinates": [2.85889088604, 50.4434633909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c1ec5cb3d84103eee2d3287be5812895f0e83b", "fields": {"nom_de_la_commune": "LONGVILLIERS", "libell_d_acheminement": "LONGVILLIERS", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62527"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a1dd008b8d163f620a528e138487cac044b67c", "fields": {"nom_de_la_commune": "LUMBRES", "libell_d_acheminement": "LUMBRES", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62534"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "103d5edaa1a397e3a8fac4cb5978e5e7567fa602", "fields": {"nom_de_la_commune": "MAISNIL", "libell_d_acheminement": "MAISNIL", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62539"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72093e6915d39e6cd710d538132dfe3d6cf6263", "fields": {"nom_de_la_commune": "MARCONNELLE", "libell_d_acheminement": "MARCONNELLE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62550"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40919a2484ddb4409850378c01f7f5609713c7f1", "fields": {"nom_de_la_commune": "MARQUAY", "libell_d_acheminement": "MARQUAY", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62558"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1e036dc56d440183a67c4f2aef25883bd9c5339", "fields": {"nom_de_la_commune": "MARQUION", "libell_d_acheminement": "MARQUION", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62559"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce384d8a2d87b46bf6473eee0b548eb400c79a63", "fields": {"nom_de_la_commune": "MARQUISE", "libell_d_acheminement": "MARQUISE", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62560"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb62a90dae34515f17226d8813a6e839a304a7d1", "fields": {"nom_de_la_commune": "MAZINGHEM", "libell_d_acheminement": "MAZINGHEM", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62564"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cd2e44d7f87af94a7aa9a2a86f73366ece662d3", "fields": {"nom_de_la_commune": "MENTQUE NORTBECOURT", "libell_d_acheminement": "MENTQUE NORTBECOURT", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62567"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083d5e9241bf10eb39306cd74d66a1288086cfc9", "fields": {"nom_de_la_commune": "MERLIMONT", "libell_d_acheminement": "MERLIMONT", "code_postal": "62155", "coordonnees_gps": [50.4527348288, 1.60774682903], "code_commune_insee": "62571"}, "geometry": {"type": "Point", "coordinates": [1.60774682903, 50.4527348288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2422d66e5fcbdbc69cc386fdc9c4195dce503f43", "fields": {"nom_de_la_commune": "MINGOVAL", "libell_d_acheminement": "MINGOVAL", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62574"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acb9506aa8a934de329b7c1456ed4f3465a0a42b", "fields": {"nom_de_la_commune": "MONCHEAUX LES FREVENT", "libell_d_acheminement": "MONCHEAUX LES FREVENT", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62576"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "166ff90d0dd4f798ec53fc0590fd8a86d3dcdcc9", "fields": {"nom_de_la_commune": "MONTIGNY EN GOHELLE", "libell_d_acheminement": "MONTIGNY EN GOHELLE", "code_postal": "62640", "coordonnees_gps": [50.4279708349, 2.92977249287], "code_commune_insee": "62587"}, "geometry": {"type": "Point", "coordinates": [2.92977249287, 50.4279708349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28c9ab290e4d6e24bfe76d3243ba6681c5f85df7", "fields": {"nom_de_la_commune": "MOULLE", "libell_d_acheminement": "MOULLE", "code_postal": "62910", "coordonnees_gps": [50.7991488939, 2.16031831269], "code_commune_insee": "62595"}, "geometry": {"type": "Point", "coordinates": [2.16031831269, 50.7991488939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc796d81eff63cbef513a4fd584ebc6cafbf480", "fields": {"nom_de_la_commune": "NEUVILLE AU CORNET", "libell_d_acheminement": "NEUVILLE AU CORNET", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62607"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd40c021817efc3d0eac52b6f35d2390647651a7", "fields": {"nom_de_la_commune": "NEUVILLE BOURJONVAL", "libell_d_acheminement": "NEUVILLE BOURJONVAL", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62608"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fed89eab24275c961856ed97dbd913998c68ce9", "fields": {"nom_de_la_commune": "NOYELLES LES HUMIERES", "libell_d_acheminement": "NOYELLES LES HUMIERES", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62625"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5e643465c62e054e1598be34fd79b52c22230f", "fields": {"nom_de_la_commune": "NOYELLES SOUS LENS", "libell_d_acheminement": "NOYELLES SOUS LENS", "code_postal": "62221", "coordonnees_gps": [50.4286604241, 2.8758171937], "code_commune_insee": "62628"}, "geometry": {"type": "Point", "coordinates": [2.8758171937, 50.4286604241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aefd6efcac5b3c80ce2707343548ef4f09f4cc2d", "fields": {"nom_de_la_commune": "NOYELLE VION", "libell_d_acheminement": "NOYELLE VION", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62630"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c81be16e390aab14891a58c0ac42bb8bb16d41f", "fields": {"nom_de_la_commune": "OFFEKERQUE", "libell_d_acheminement": "OFFEKERQUE", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62634"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe1a0b511479c638b0438f1e88c85cce031d4c12", "fields": {"nom_de_la_commune": "OISY LE VERGER", "libell_d_acheminement": "OISY LE VERGER", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62638"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9289b2dedff06d11670bc6dc4e8a7ba146a430d", "fields": {"nom_de_la_commune": "OPPY", "libell_d_acheminement": "OPPY", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62639"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07e61fd26213d57910c38ce28f4f02e68a1ba73", "fields": {"nom_de_la_commune": "OSTREVILLE", "libell_d_acheminement": "OSTREVILLE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62641"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95cd14a40c3ec5de6fd841ee1be02552c708ec44", "fields": {"nom_de_la_commune": "OYE PLAGE", "libell_d_acheminement": "OYE PLAGE", "code_postal": "62215", "coordonnees_gps": [50.9814914166, 2.03942162279], "code_commune_insee": "62645"}, "geometry": {"type": "Point", "coordinates": [2.03942162279, 50.9814914166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac286d6d0696549bd4f17b00ee521075edd16c3d", "fields": {"nom_de_la_commune": "LE PARCQ", "libell_d_acheminement": "LE PARCQ", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62647"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5418b2dff7888c5a06bec09c10440f378ca155bf", "fields": {"nom_de_la_commune": "PERNES LES BOULOGNE", "libell_d_acheminement": "PERNES LES BOULOGNE", "code_postal": "62126", "coordonnees_gps": [50.7597525083, 1.66237719631], "code_commune_insee": "62653"}, "geometry": {"type": "Point", "coordinates": [1.66237719631, 50.7597525083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3592bb38aee78ad785755912c9934255b5a55a4", "fields": {"nom_de_la_commune": "BOUIN PLUMOISON", "libell_d_acheminement": "BOUIN PLUMOISON", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62661"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b9767c775234ece3e9d353f73398a2f97454e5", "fields": {"nom_de_la_commune": "POMMIER", "libell_d_acheminement": "POMMIER", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62664"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82940eab7a603dc6a48de529cbc0e81784dbf20f", "fields": {"nom_de_la_commune": "PREURES", "libell_d_acheminement": "PREURES", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62670"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be76fb71f611c218a3a678ceb51904855a3bc04e", "fields": {"nom_de_la_commune": "QUELMES", "libell_d_acheminement": "QUELMES", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62674"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b45ae67e7446fbd3738de1d9ba6d7180c772fe4", "fields": {"nom_de_la_commune": "QUESTRECQUES", "libell_d_acheminement": "QUESTRECQUES", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62679"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c9dfa2c8bb3a650b2bd1468274a999127467bb4", "fields": {"nom_de_la_commune": "QUILEN", "libell_d_acheminement": "QUILEN", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62682"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc089c22ceb4128468b4380b468f9d15c957816", "fields": {"code_postal": "62390", "code_commune_insee": "62683", "libell_d_acheminement": "QUOEUX HAUT MAINIL", "ligne_5": "HAUT MAINIL", "nom_de_la_commune": "QUOEUX HAUT MAINIL", "coordonnees_gps": [50.2560013525, 2.12580845781]}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610131d1e763925fbd099da7c618a8183a9ae78f", "fields": {"nom_de_la_commune": "RANSART", "libell_d_acheminement": "RANSART", "code_postal": "62173", "coordonnees_gps": [50.2219083528, 2.6997796891], "code_commune_insee": "62689"}, "geometry": {"type": "Point", "coordinates": [2.6997796891, 50.2219083528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63569adcbbcf280aab430ab2e36e7c72ce8896a4", "fields": {"code_postal": "62129", "code_commune_insee": "62691", "libell_d_acheminement": "ST AUGUSTIN", "ligne_5": "CLARQUES", "nom_de_la_commune": "ST AUGUSTIN", "coordonnees_gps": [50.6463145648, 2.25326814344]}, "geometry": {"type": "Point", "coordinates": [2.25326814344, 50.6463145648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e4f158689a57ad83d40d52ec8e3a08b6b56436", "fields": {"code_postal": "62150", "code_commune_insee": "62693", "libell_d_acheminement": "REBREUVE RANCHICOURT", "ligne_5": "RANCHICOURT", "nom_de_la_commune": "REBREUVE RANCHICOURT", "coordonnees_gps": [50.4256106344, 2.54741516512]}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bf18fe11bcacc67cfff8be7c611006d6149e22f", "fields": {"nom_de_la_commune": "RIVIERE", "libell_d_acheminement": "RIVIERE", "code_postal": "62173", "coordonnees_gps": [50.2219083528, 2.6997796891], "code_commune_insee": "62712"}, "geometry": {"type": "Point", "coordinates": [2.6997796891, 50.2219083528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ddff8cea81e79c6ba6bcf45992e64c3a806700e", "fields": {"nom_de_la_commune": "ROMBLY", "libell_d_acheminement": "ROMBLY", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62720"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99324308bb738ffae80b037b637b0c2ea3fbffe5", "fields": {"nom_de_la_commune": "ROQUETOIRE", "libell_d_acheminement": "ROQUETOIRE", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62721"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "627ec3f8ac6b6fa7372152cac4a1868e04a712c8", "fields": {"nom_de_la_commune": "ROYON", "libell_d_acheminement": "ROYON", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62725"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd5503c4fb2d0b44f2cf65572ec65f8265633b7", "fields": {"nom_de_la_commune": "SAILLY AU BOIS", "libell_d_acheminement": "SAILLY AU BOIS", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62733"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9eaaa1b5b84da64decbd775aa4b52db50af1cb", "fields": {"nom_de_la_commune": "SAINS EN GOHELLE", "libell_d_acheminement": "SAINS EN GOHELLE", "code_postal": "62114", "coordonnees_gps": [50.450880407, 2.68380342094], "code_commune_insee": "62737"}, "geometry": {"type": "Point", "coordinates": [2.68380342094, 50.450880407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aa93141808318f9c4b31ca66f6f12abd5e378cf", "fields": {"nom_de_la_commune": "SAINS LES FRESSIN", "libell_d_acheminement": "SAINS LES FRESSIN", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62738"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af6bc4d14d35679763dea2c820c68c9f13a7ba6a", "fields": {"nom_de_la_commune": "SAINS LES PERNES", "libell_d_acheminement": "SAINS LES PERNES", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62740"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f17109576ccb6c82cc2c3b605069d764474f11a9", "fields": {"nom_de_la_commune": "ST DENIS", "libell_d_acheminement": "ST DENIS", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30247"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edd161db04187010797408ad23fa6f05900dc726", "fields": {"nom_de_la_commune": "ST DEZERY", "libell_d_acheminement": "ST DEZERY", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30248"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b89c82bd87cdc543317543691322b7ef5da6c94", "fields": {"nom_de_la_commune": "ST HILAIRE D OZILHAN", "libell_d_acheminement": "ST HILAIRE D OZILHAN", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30260"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dec2318bcd1368e1656edb7be18878f0f96c7ba", "fields": {"nom_de_la_commune": "ST LAURENT DE CARNOLS", "libell_d_acheminement": "ST LAURENT DE CARNOLS", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30277"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3df89b176c2a8517c8165498b6127f708c137b38", "fields": {"nom_de_la_commune": "ST LAURENT LE MINIER", "libell_d_acheminement": "ST LAURENT LE MINIER", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30280"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95367b9203da4b0b820ca9a1b115e817584601f0", "fields": {"nom_de_la_commune": "ST MARCEL DE CAREIRET", "libell_d_acheminement": "ST MARCEL DE CAREIRET", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30282"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b71d7a3cd123ba2f6a0e64f1d7855f1c4dae10", "fields": {"nom_de_la_commune": "ST NAZAIRE DES GARDIES", "libell_d_acheminement": "ST NAZAIRE DES GARDIES", "code_postal": "30610", "coordonnees_gps": [43.9495863294, 3.99062671704], "code_commune_insee": "30289"}, "geometry": {"type": "Point", "coordinates": [3.99062671704, 43.9495863294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d6a4794180c6ed21d6f0d1f7045ba4d15accbe6", "fields": {"nom_de_la_commune": "ST SIFFRET", "libell_d_acheminement": "ST SIFFRET", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30299"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7a68184b10c2494736df900a1d440989994c66d", "fields": {"nom_de_la_commune": "SALAZAC", "libell_d_acheminement": "SALAZAC", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30304"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f42c6be5d9b842b51ade327cfea172af33997e4", "fields": {"nom_de_la_commune": "SANILHAC SAGRIES", "libell_d_acheminement": "SANILHAC SAGRIES", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30308"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e120070f64782ce1a85340d41a91faab2c6445c", "fields": {"nom_de_la_commune": "SAUZET", "libell_d_acheminement": "SAUZET", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30313"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54f291bad65ac683c7baf292ed4aa749467bcba3", "fields": {"nom_de_la_commune": "SAZE", "libell_d_acheminement": "SAZE", "code_postal": "30650", "coordonnees_gps": [43.9716290587, 4.68530597674], "code_commune_insee": "30315"}, "geometry": {"type": "Point", "coordinates": [4.68530597674, 43.9716290587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0c8d4e57eb9c87076a80afb4598ef7821fc3201", "fields": {"nom_de_la_commune": "THOIRAS", "libell_d_acheminement": "THOIRAS", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30329"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfe644cb1ea06129159dbe8a9d033c6197f79a2f", "fields": {"nom_de_la_commune": "UZES", "libell_d_acheminement": "UZES", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30334"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1324f7da09d0df0325519380894fa01a93c60e86", "fields": {"nom_de_la_commune": "VALLABREGUES", "libell_d_acheminement": "VALLABREGUES", "code_postal": "30300", "coordonnees_gps": [43.780193328, 4.58229884673], "code_commune_insee": "30336"}, "geometry": {"type": "Point", "coordinates": [4.58229884673, 43.780193328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0acb7b135a771ef6f0587f79c83e67779aefe06", "fields": {"nom_de_la_commune": "VALLERARGUES", "libell_d_acheminement": "VALLERARGUES", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30338"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0fb29273f2268e9b281ff90b8278f5167bdff6", "fields": {"nom_de_la_commune": "VALLIGUIERES", "libell_d_acheminement": "VALLIGUIERES", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30340"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c726e3b03facb2274c0c905bd51ed2e72d28c0f", "fields": {"code_postal": "30600", "code_commune_insee": "30341", "libell_d_acheminement": "VAUVERT", "ligne_5": "SYLVEREAL", "nom_de_la_commune": "VAUVERT", "coordonnees_gps": [43.6360200976, 4.3019597877]}, "geometry": {"type": "Point", "coordinates": [4.3019597877, 43.6360200976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1abc6cdffd0b094cd40d78f7f30dcdd0c103edd8", "fields": {"nom_de_la_commune": "VERFEUIL", "libell_d_acheminement": "VERFEUIL", "code_postal": "30630", "coordonnees_gps": [44.2160658373, 4.44619382418], "code_commune_insee": "30343"}, "geometry": {"type": "Point", "coordinates": [4.44619382418, 44.2160658373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90c6ccec9c736900423b9b3795bb076d362bddf3", "fields": {"nom_de_la_commune": "RODILHAN", "libell_d_acheminement": "RODILHAN", "code_postal": "30230", "coordonnees_gps": [43.8071223757, 4.43456661825], "code_commune_insee": "30356"}, "geometry": {"type": "Point", "coordinates": [4.43456661825, 43.8071223757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30bbab1a6ed7ef780b97680933e5107f4ee1befc", "fields": {"nom_de_la_commune": "ARGUENOS", "libell_d_acheminement": "ARGUENOS", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31014"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f268ca6975afed7eb0bfe5fadee39a9cdb5fb5c", "fields": {"nom_de_la_commune": "ARTIGUE", "libell_d_acheminement": "ARTIGUE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31019"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df3149568d529fdac14e582363d73c437df8f38a", "fields": {"nom_de_la_commune": "ASPET", "libell_d_acheminement": "ASPET", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31020"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14259c60dc2b5ef7be8028d739742e9360890208", "fields": {"nom_de_la_commune": "AURIBAIL", "libell_d_acheminement": "AURIBAIL", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31027"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1269d55626340afa2fd42b97754abf79af739c4f", "fields": {"nom_de_la_commune": "AVIGNONET LAURAGAIS", "libell_d_acheminement": "AVIGNONET LAURAGAIS", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31037"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04e092bf22cc486d74fa590089d414dca4ae8e8", "fields": {"nom_de_la_commune": "BALESTA", "libell_d_acheminement": "BALESTA", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31043"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e31c5bb0e13b53bba131024ece55f77d246a10d", "fields": {"nom_de_la_commune": "BAZUS", "libell_d_acheminement": "BAZUS", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31049"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0984a288fd12107ac3c34f1ee0b1608a1dc672d5", "fields": {"nom_de_la_commune": "BELESTA EN LAURAGAIS", "libell_d_acheminement": "BELESTA EN LAURAGAIS", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31060"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6471565809898269cc8a6f38825b8d5a0e2e572", "fields": {"nom_de_la_commune": "BENQUE DESSOUS ET DESSUS", "libell_d_acheminement": "BENQUE DESSOUS ET DESSUS", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31064"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc42702bbd95a31df06f330c23d8cc39a04c9136", "fields": {"nom_de_la_commune": "BEZINS GARRAUX", "libell_d_acheminement": "BEZINS GARRAUX", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31067"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23fa4d6cbebcda8aa15c29aeda34c4747a6c1ab9", "fields": {"nom_de_la_commune": "BLAJAN", "libell_d_acheminement": "BLAJAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31070"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b344a7c907df0fc733e31681b60195f712a26346", "fields": {"nom_de_la_commune": "BOISSEDE", "libell_d_acheminement": "BOISSEDE", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31072"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b953e3c2713b221e179e123dca09290a6d8c6d", "fields": {"nom_de_la_commune": "BOULOGNE SUR GESSE", "libell_d_acheminement": "BOULOGNE SUR GESSE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31080"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6cfda079c7e8074a0e4f04ffed943fadaeb84e9", "fields": {"code_postal": "31160", "code_commune_insee": "31085", "libell_d_acheminement": "BOUTX", "ligne_5": "COULEDOUX", "nom_de_la_commune": "BOUTX", "coordonnees_gps": [42.9888223575, 0.812886566983]}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfedf54a82ce5966dca7c84ea100e4687413121e", "fields": {"nom_de_la_commune": "CADOURS", "libell_d_acheminement": "CADOURS", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31098"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360d7d1796b76a4b0429965c74b2adaa89f1b009", "fields": {"nom_de_la_commune": "CARAGOUDES", "libell_d_acheminement": "CARAGOUDES", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31105"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914a953dc6c426ea33dcef8f122f0571af5c756e", "fields": {"nom_de_la_commune": "CASSAGNABERE TOURNAS", "libell_d_acheminement": "CASSAGNABERE TOURNAS", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31109"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba9011c48ccec545f30da4a5a66f9280b64d79a", "fields": {"nom_de_la_commune": "CASSAGNE", "libell_d_acheminement": "CASSAGNE", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31110"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b9ece0d2fa0f9301a923b2b9afb131a2169739", "fields": {"nom_de_la_commune": "CASTANET TOLOSAN", "libell_d_acheminement": "CASTANET TOLOSAN", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31113"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631bfbed71642afa73eb470e3bf5fd967a7e18e9", "fields": {"nom_de_la_commune": "CASTELNAU PICAMPEAU", "libell_d_acheminement": "CASTELNAU PICAMPEAU", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31119"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b66170cd37f827a703c78d4dfe342312a54fbf5", "fields": {"nom_de_la_commune": "CATHERVIELLE", "libell_d_acheminement": "CATHERVIELLE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31125"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f43bf75a60e3eac36cef8921a85b1e4b2ae9d95e", "fields": {"nom_de_la_commune": "CAZAUNOUS", "libell_d_acheminement": "CAZAUNOUS", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31131"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feadf7f97b8518115a9471f8aa8e5afbbb344728", "fields": {"nom_de_la_commune": "CAZEAUX DE LARBOUST", "libell_d_acheminement": "CAZEAUX DE LARBOUST", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31133"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f5264928386e4afba914a317267c02dc8be03b6", "fields": {"nom_de_la_commune": "CAZENEUVE MONTAUT", "libell_d_acheminement": "CAZENEUVE MONTAUT", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31134"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f9296e91b7d60480d39cf6e0906f768534d434", "fields": {"code_postal": "31440", "code_commune_insee": "31144", "libell_d_acheminement": "CIERP GAUD", "ligne_5": "GAUD", "nom_de_la_commune": "CIERP GAUD", "coordonnees_gps": [42.895421056, 0.722774837437]}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da2358b32e7ce2e10991ea5ce3324ee659df15e", "fields": {"nom_de_la_commune": "CIRES", "libell_d_acheminement": "CIRES", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31146"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08395565bf4047f868f8dd8aaca4067db93869e5", "fields": {"nom_de_la_commune": "COUEILLES", "libell_d_acheminement": "COUEILLES", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31152"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc176621d91d506737273fff8e2cb9b5a21d0836", "fields": {"nom_de_la_commune": "COURET", "libell_d_acheminement": "COURET", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31155"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b71a64e7f4231aecb03d5e93d456fd76fbe6a6", "fields": {"nom_de_la_commune": "CUGURON", "libell_d_acheminement": "CUGURON", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31158"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71e326f83046840f7ef5699ed86a93e4e4600a6a", "fields": {"nom_de_la_commune": "ESPARRON", "libell_d_acheminement": "ESPARRON", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31172"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e37d4daa1107da6fc86bfdac6ea44ad6390f5ad0", "fields": {"nom_de_la_commune": "LE FAGET", "libell_d_acheminement": "LE FAGET", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31179"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2445516bba4f1b812601d552ca19af89d32bbe", "fields": {"nom_de_la_commune": "FOLCARDE", "libell_d_acheminement": "FOLCARDE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31185"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1633c240f501fe7893c17c37556cab61d11bcaa6", "fields": {"nom_de_la_commune": "FONSORBES", "libell_d_acheminement": "FONSORBES", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31187"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3483f3eddbadaf63fc73a89f1550cb277fcbf592", "fields": {"nom_de_la_commune": "FOURQUEVAUX", "libell_d_acheminement": "FOURQUEVAUX", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31192"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "011d432f9cf99dbd9d7456c9704ba41a0c98978f", "fields": {"nom_de_la_commune": "FRONTIGNAN DE COMMINGES", "libell_d_acheminement": "FRONTIGNAN DE COMMINGES", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31200"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57613d8d259e0e20e80d56872bc8b53d10cd063a", "fields": {"nom_de_la_commune": "GANTIES", "libell_d_acheminement": "GANTIES", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31208"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb47f22a95e0f5cda1adc40e3b0d2c913879afc", "fields": {"nom_de_la_commune": "GEMIL", "libell_d_acheminement": "GEMIL", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31216"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c68366f2e90563673684d6dce5e05400d4dd157", "fields": {"nom_de_la_commune": "GENOS", "libell_d_acheminement": "GENOS", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31217"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a214a1350bbc7982f0e61a6c41d33c2f0904a67", "fields": {"nom_de_la_commune": "GOUAUX DE LARBOUST", "libell_d_acheminement": "GOUAUX DE LARBOUST", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31221"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f97ecdc06c994c95a3461ee3b3379f613212a0", "fields": {"nom_de_la_commune": "GRATENS", "libell_d_acheminement": "GRATENS", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31229"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65394bd93877dee57c913b542a4da5ca37f77797", "fields": {"nom_de_la_commune": "JURVIELLE", "libell_d_acheminement": "JURVIELLE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31242"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb2d4d2d8e9e1f839139b6d1dbb6ad6aea8f73e6", "fields": {"nom_de_la_commune": "LABASTIDETTE", "libell_d_acheminement": "LABASTIDETTE", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31253"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41348eebcd48571aee491c0d7c01a59eddc5b52", "fields": {"nom_de_la_commune": "LABEGE", "libell_d_acheminement": "LABEGE", "code_postal": "31670", "coordonnees_gps": [43.5391711847, 1.52136663289], "code_commune_insee": "31254"}, "geometry": {"type": "Point", "coordinates": [1.52136663289, 43.5391711847]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43c6fa0e8ffaea90842b378ffe931b096a488db9", "fields": {"nom_de_la_commune": "LACROIX FALGARDE", "libell_d_acheminement": "LACROIX FALGARDE", "code_postal": "31120", "coordonnees_gps": [43.5086807596, 1.39534123704], "code_commune_insee": "31259"}, "geometry": {"type": "Point", "coordinates": [1.39534123704, 43.5086807596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c26e6ffffecbb3a5933980c4e01fe9545605fe", "fields": {"nom_de_la_commune": "LAMASQUERE", "libell_d_acheminement": "LAMASQUERE", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31269"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c57e10fab0ce664ef6985471b9a757971b6828ad", "fields": {"nom_de_la_commune": "LATRAPE", "libell_d_acheminement": "LATRAPE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31280"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39c3d3bda25d2ea5357aef98659b13ecc794a62", "fields": {"nom_de_la_commune": "LAVALETTE", "libell_d_acheminement": "LAVALETTE", "code_postal": "31590", "coordonnees_gps": [43.6511913852, 1.64656678771], "code_commune_insee": "31285"}, "geometry": {"type": "Point", "coordinates": [1.64656678771, 43.6511913852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ad9cf40ed2fbdb7494963238ceeba1e36309a2", "fields": {"nom_de_la_commune": "LAVELANET DE COMMINGES", "libell_d_acheminement": "LAVELANET DE COMMINGES", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31286"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47956cdfe2fae2a808bc01dc92fadee66074144e", "fields": {"nom_de_la_commune": "LAVERNOSE LACASSE", "libell_d_acheminement": "LAVERNOSE LACASSE", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31287"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f48f00f13947777d8f1bff749e4198410d283ec2", "fields": {"nom_de_la_commune": "LECUSSAN", "libell_d_acheminement": "LECUSSAN", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31289"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f826f8a531f0128b590b1630b3760f55c421899", "fields": {"nom_de_la_commune": "LESCUNS", "libell_d_acheminement": "LESCUNS", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31292"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492259abb463ea9bc6fd7d6e6d2d91ebb934aa89", "fields": {"nom_de_la_commune": "LHERM", "libell_d_acheminement": "LHERM", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31299"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10335b7217d1d604795cda0437c2d7291169d285", "fields": {"nom_de_la_commune": "LONGAGES", "libell_d_acheminement": "LONGAGES", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31303"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "639c4941ad4636c39c8250080b980034e1c12eea", "fields": {"nom_de_la_commune": "LOURDE", "libell_d_acheminement": "LOURDE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31306"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2bb78e8647447c82607a2596abfcbca3520479a", "fields": {"nom_de_la_commune": "LUNAX", "libell_d_acheminement": "LUNAX", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31307"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "507519565a0c6b48988b475e78ef03b3bebe79af", "fields": {"nom_de_la_commune": "LUSCAN", "libell_d_acheminement": "LUSCAN", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31308"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da69f800add334316fad260110765fb5f533ae25", "fields": {"nom_de_la_commune": "LA MAGDELAINE SUR TARN", "libell_d_acheminement": "LA MAGDELAINE SUR TARN", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31311"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ed9ba78b131a11f7de883f318cdb53447cf7cb", "fields": {"nom_de_la_commune": "MAILHOLAS", "libell_d_acheminement": "MAILHOLAS", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31312"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c3ca0aac469b9b8a7b9f9459bb39065610a5a05", "fields": {"nom_de_la_commune": "MARIGNAC", "libell_d_acheminement": "MARIGNAC", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31316"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f7e86e16f6ab288c7dbd5c05c574e1b8430fbb1", "fields": {"nom_de_la_commune": "MARTRES DE RIVIERE", "libell_d_acheminement": "MARTRES DE RIVIERE", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31323"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88a10467015c249d608cbf6c58b010e560c39dbd", "fields": {"nom_de_la_commune": "MAURAN", "libell_d_acheminement": "MAURAN", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31327"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7c0ac69bca0f53abab71e64aaef87feb21d908", "fields": {"nom_de_la_commune": "MAUREVILLE", "libell_d_acheminement": "MAUREVILLE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31331"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86b5555cb9b2414ed3eb76017a4398db96174a05", "fields": {"nom_de_la_commune": "MAUVAISIN", "libell_d_acheminement": "MAUVAISIN", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31332"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b06df6ed2d8763d0c606cd5dfef03268a9264e2f", "fields": {"nom_de_la_commune": "MAYREGNE", "libell_d_acheminement": "MAYREGNE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31335"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d57176acdcc1b4ced230c8e22937308094b9c2", "fields": {"nom_de_la_commune": "MAZERES SUR SALAT", "libell_d_acheminement": "MAZERES SUR SALAT", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31336"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e65663d41e6019058505a21572781b4314e31b23", "fields": {"nom_de_la_commune": "MERVILLE", "libell_d_acheminement": "MERVILLE", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31341"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bc0918605d0526c6d45b119f772a34e3929912d", "fields": {"nom_de_la_commune": "MILHAS", "libell_d_acheminement": "MILHAS", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31342"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd743a73aa64544db0faaab912b61a59992622f", "fields": {"nom_de_la_commune": "MIRAMONT DE COMMINGES", "libell_d_acheminement": "MIRAMONT DE COMMINGES", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31344"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c637f8ac1e31343c5a1055696239fe6fec9167c1", "fields": {"nom_de_la_commune": "MONDILHAN", "libell_d_acheminement": "MONDILHAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31350"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5f20fc9dd4a6b18866abbaa6558c1648d43b3f", "fields": {"nom_de_la_commune": "MONDOUZIL", "libell_d_acheminement": "MONDOUZIL", "code_postal": "31850", "coordonnees_gps": [43.6433615869, 1.54999438189], "code_commune_insee": "31352"}, "geometry": {"type": "Point", "coordinates": [1.54999438189, 43.6433615869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb6d0018274bac6c253914a1e9dd77f55c9b886b", "fields": {"nom_de_la_commune": "MONES", "libell_d_acheminement": "MONES", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31353"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "375df3488dbd85853d6c5d014de7e2a5ef69a4d3", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31361"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27663bcfac9c8e7d27638840be09a242fc2fc7a3", "fields": {"nom_de_la_commune": "MONT DE GALIE", "libell_d_acheminement": "MONT DE GALIE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31369"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30cea444b32b7c52e9baa2b8aee850b1c9bc46ec", "fields": {"nom_de_la_commune": "MONTREJEAU", "libell_d_acheminement": "MONTREJEAU", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31390"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03171cc4e38622dad26b8630d59d924f7d160d75", "fields": {"nom_de_la_commune": "MONTSAUNES", "libell_d_acheminement": "MONTSAUNES", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31391"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "951d988070da56c1f2d35d307ed7691f6aad9517", "fields": {"nom_de_la_commune": "NOE", "libell_d_acheminement": "NOE", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31399"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad0b9f696ccb5b4a79a74d083b85b18c7af394ad", "fields": {"nom_de_la_commune": "ORE", "libell_d_acheminement": "ORE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31405"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "738565bde862f77340a7cc81584ee7e9808f368b", "fields": {"nom_de_la_commune": "PALAMINY", "libell_d_acheminement": "PALAMINY", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31406"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d26d32a8e4c1a379a0c5c6f10b5af0525e281e5", "fields": {"nom_de_la_commune": "PAULHAC", "libell_d_acheminement": "PAULHAC", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31407"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e03d54a2fd27ae3be74e7ee2b2c6588d9b6eb760", "fields": {"nom_de_la_commune": "PECHBONNIEU", "libell_d_acheminement": "PECHBONNIEU", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31410"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd031e09e1125fb5be0fa595ac108432a59aca73", "fields": {"nom_de_la_commune": "VOUILLERS", "libell_d_acheminement": "VOUILLERS", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51654"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe9fac3c8688d13fdda330165b16b98f10d3b940", "fields": {"nom_de_la_commune": "AMBONVILLE", "libell_d_acheminement": "AMBONVILLE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52007"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e27bcc55ce52c87b5dc54d64ecc8e6aa1e7c778", "fields": {"nom_de_la_commune": "ANDELOT BLANCHEVILLE", "libell_d_acheminement": "ANDELOT BLANCHEVILLE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52008"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7c14fae42a77f30594990fac0375c3c895b7d3", "fields": {"nom_de_la_commune": "ANNEVILLE LA PRAIRIE", "libell_d_acheminement": "ANNEVILLE LA PRAIRIE", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52011"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5668eed796679850bec57c368e1d25eb9a401a63", "fields": {"nom_de_la_commune": "ARBOT", "libell_d_acheminement": "ARBOT", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52016"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23268cb0f945eeaf0830b39adfdb9a2dd27fa9fd", "fields": {"nom_de_la_commune": "AUBERIVE", "libell_d_acheminement": "AUBERIVE", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52023"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "251f44e9feeea72704fee57c0f4ebb518d5111f5", "fields": {"nom_de_la_commune": "AUTIGNY LE PETIT", "libell_d_acheminement": "AUTIGNY LE PETIT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52030"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68ebcafa56a7cb9f69916e567616e0ce3dfead40", "fields": {"nom_de_la_commune": "BAISSEY", "libell_d_acheminement": "BAISSEY", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52035"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edfa25eff001869b3faacbfd57a7fc545732301c", "fields": {"nom_de_la_commune": "BAY SUR AUBE", "libell_d_acheminement": "BAY SUR AUBE", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52040"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f3286e1d3487ddaddc18c4d4eb0a1dd547e03b", "fields": {"nom_de_la_commune": "BETTANCOURT LA FERREE", "libell_d_acheminement": "BETTANCOURT LA FERREE", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52045"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1484e96cc9881360800ad738045d7f4d58a305c8", "fields": {"nom_de_la_commune": "BIESLES", "libell_d_acheminement": "BIESLES", "code_postal": "52340", "coordonnees_gps": [48.1142571752, 5.32025976914], "code_commune_insee": "52050"}, "geometry": {"type": "Point", "coordinates": [5.32025976914, 48.1142571752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "344d1dd1f6758b6fc621d7914bdb16479bf9eaaa", "fields": {"nom_de_la_commune": "BIZE", "libell_d_acheminement": "BIZE", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52051"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4f16252fa18b50b2ffdb0e40174dab1e561fd82", "fields": {"nom_de_la_commune": "BRACHAY", "libell_d_acheminement": "BRACHAY", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52066"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2d40543a8cfcb9f8a8fb4053565e481b925962", "fields": {"nom_de_la_commune": "BRAINVILLE SUR MEUSE", "libell_d_acheminement": "BRAINVILLE SUR MEUSE", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52067"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "105f9b347b64481aaf579f01d7d1b4fcb141b6e6", "fields": {"nom_de_la_commune": "BRENNES", "libell_d_acheminement": "BRENNES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52070"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc0a9e18f99edd76603764407a504fbff0403bec", "fields": {"code_postal": "52240", "code_commune_insee": "52074", "libell_d_acheminement": "BREUVANNES EN BASSIGNY", "ligne_5": "MEUVY", "nom_de_la_commune": "BREUVANNES EN BASSIGNY", "coordonnees_gps": [48.0703177579, 5.52769658592]}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ba6742326359864b0ec1e66ecb00b9ef1972273", "fields": {"code_postal": "52500", "code_commune_insee": "52083", "libell_d_acheminement": "CHAMPSEVRAINE", "ligne_5": "CORGIRNON", "nom_de_la_commune": "CHAMPSEVRAINE", "coordonnees_gps": [47.7590950974, 5.58361312095]}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a123605e66652acfe5bd9f10db4305b8138e61", "fields": {"code_postal": "52220", "code_commune_insee": "52088", "libell_d_acheminement": "CEFFONDS", "ligne_5": "SAUVAGE MAGNY", "nom_de_la_commune": "CEFFONDS", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb32f53ebd04bbf3b255eada3a6e55df2895ac8e", "fields": {"nom_de_la_commune": "CHALANCEY", "libell_d_acheminement": "CHALANCEY", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52092"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "332297fd4f42772f4b79769363e979c77021dc05", "fields": {"code_postal": "52160", "code_commune_insee": "52094", "libell_d_acheminement": "VALS DES TILLES", "ligne_5": "CHALMESSIN", "nom_de_la_commune": "VALS DES TILLES", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c085a58d9ee2b968dc3a5c89a5dc3aae8bc1c4fc", "fields": {"nom_de_la_commune": "CHAMPIGNY SOUS VARENNES", "libell_d_acheminement": "CHAMPIGNY SOUS VARENNES", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52103"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15f759af5f1d778ff11f1082d8679d48b942610f", "fields": {"nom_de_la_commune": "CHANGEY", "libell_d_acheminement": "CHANGEY", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52105"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0de2bdfbac2809b68e2bebd6f63ea68d2d405fb", "fields": {"code_postal": "52120", "code_commune_insee": "52114", "libell_d_acheminement": "CHATEAUVILLAIN", "ligne_5": "ESSEY LES PONTS", "nom_de_la_commune": "CHATEAUVILLAIN", "coordonnees_gps": [48.0490446156, 4.88638529419]}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79eb274da622fd54461b0fc30601e9a53721390e", "fields": {"code_postal": "52300", "code_commune_insee": "52118", "libell_d_acheminement": "CHATONRUPT SOMMERMONT", "ligne_5": "SOMMERMONT", "nom_de_la_commune": "CHATONRUPT SOMMERMONT", "coordonnees_gps": [48.4374713855, 5.14251151909]}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5fd1f0c9469d585ea6c75b0987effea11d4bb0f", "fields": {"code_postal": "52170", "code_commune_insee": "52123", "libell_d_acheminement": "CHEVILLON", "ligne_5": "BREUIL SUR MARNE", "nom_de_la_commune": "CHEVILLON", "coordonnees_gps": [48.5434791123, 5.11650934546]}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d02c412f26b0b8b6ae96c6575dcfe2d1d1d106d", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "ARGENTOLLES", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c0b35bd731035d9061ac61f7b617b3a581a1593", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "BIERNES", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f37e492648c232a2b7aed101fd611c89e2e8ca3", "fields": {"nom_de_la_commune": "COUR L EVEQUE", "libell_d_acheminement": "COUR L EVEQUE", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52151"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1ea5130ade6f645a5d93f23cf2d50ee62fda222", "fields": {"nom_de_la_commune": "CULMONT", "libell_d_acheminement": "CULMONT", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52155"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d926149ee8df3ec3fbd63fb3c68769dae49c530", "fields": {"nom_de_la_commune": "CURMONT", "libell_d_acheminement": "CURMONT", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52157"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9d81992dec770c95cc14b5e2b37775d650068a", "fields": {"nom_de_la_commune": "DAILLANCOURT", "libell_d_acheminement": "DAILLANCOURT", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52160"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe11e5d3d313a5e0d39ecb35ff3446013b983cf9", "fields": {"nom_de_la_commune": "DAMMARTIN SUR MEUSE", "libell_d_acheminement": "DAMMARTIN SUR MEUSE", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52162"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47c50411695e8f999daf058ccdebbd34ae37f024", "fields": {"nom_de_la_commune": "DANCEVOIR", "libell_d_acheminement": "DANCEVOIR", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52165"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "639d56ac973d38b716db3b907532f5f514ade12a", "fields": {"nom_de_la_commune": "DONJEUX", "libell_d_acheminement": "DONJEUX", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52175"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311003c6b278dc80109983ed072a5791fb668b1e", "fields": {"code_postal": "52110", "code_commune_insee": "52178", "libell_d_acheminement": "DOULEVANT LE CHATEAU", "ligne_5": "VILLIERS AUX CHENES", "nom_de_la_commune": "DOULEVANT LE CHATEAU", "coordonnees_gps": [48.3635578917, 4.93134168199]}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0160f9a757c5a9844bfa69a232cfbbed4c3b4bb", "fields": {"nom_de_la_commune": "ECOT LA COMBE", "libell_d_acheminement": "ECOT LA COMBE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52183"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba8cf9fd930d564a56976e346c762ab04b036edc", "fields": {"code_postal": "52230", "code_commune_insee": "52187", "libell_d_acheminement": "EPIZON", "ligne_5": "BETTONCOURT LE HAUT", "nom_de_la_commune": "EPIZON", "coordonnees_gps": [48.4233848371, 5.31749003055]}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1359c4acf8e2c77d95889e83cd1fc395837dd92b", "fields": {"nom_de_la_commune": "FRONVILLE", "libell_d_acheminement": "FRONVILLE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52212"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a4fe31d1f3c8416ba1f271815d802161826ddb6", "fields": {"nom_de_la_commune": "GERMAINVILLIERS", "libell_d_acheminement": "GERMAINVILLIERS", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52217"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7afc4f4b572ab636f9a87fcfe99a0e16312bcb8", "fields": {"nom_de_la_commune": "GILLAUME", "libell_d_acheminement": "GILLAUME", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52222"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b329d81aea5d1709a1204355a7e5d6fcfca4791", "fields": {"nom_de_la_commune": "GRAFFIGNY CHEMIN", "libell_d_acheminement": "GRAFFIGNY CHEMIN", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52227"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f32c3f6d89ece181d4f7a114f38e61008ada33a0", "fields": {"nom_de_la_commune": "GRANDCHAMP", "libell_d_acheminement": "GRANDCHAMP", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52228"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39445e1f3de0b3da1a0d6c7f847d683cde1a5fa2", "fields": {"nom_de_la_commune": "HEUILLEY LE GRAND", "libell_d_acheminement": "HEUILLEY LE GRAND", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52240"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d56d4298d64f49760c9ac30bb1fa6ced990d14a", "fields": {"code_postal": "52600", "code_commune_insee": "52242", "libell_d_acheminement": "HAUTE AMANCE", "ligne_5": "HORTES", "nom_de_la_commune": "HAUTE AMANCE", "coordonnees_gps": [47.7926178231, 5.43469720671]}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a4b351bda32b27d829c8919d237159f8ec9954", "fields": {"code_postal": "52200", "code_commune_insee": "52246", "libell_d_acheminement": "HUMES JORQUENAY", "ligne_5": "JORQUENAY", "nom_de_la_commune": "HUMES JORQUENAY", "coordonnees_gps": [47.8591837688, 5.27130634818]}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28bbf4143ae0eb41df3d7a913cb7558fcb6d3dd8", "fields": {"nom_de_la_commune": "LAFAUCHE", "libell_d_acheminement": "LAFAUCHE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52256"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2d30f3afde53915d3af07b5083dd700f191d5f1", "fields": {"nom_de_la_commune": "BAYARD SUR MARNE", "libell_d_acheminement": "BAYARD SUR MARNE", "code_postal": "52170", "coordonnees_gps": [48.5434791123, 5.11650934546], "code_commune_insee": "52265"}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76132fe48e49c745df1ba4b1449eef5e00938bce", "fields": {"nom_de_la_commune": "LANEUVILLE AU PONT", "libell_d_acheminement": "LANEUVILLE AU PONT", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52267"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efe82c04444afb01da7474535b962cfd1e0084aa", "fields": {"nom_de_la_commune": "LANTY SUR AUBE", "libell_d_acheminement": "LANTY SUR AUBE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52272"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f45f4abea4ce570d0809551d8a5a144f1a46a09", "fields": {"nom_de_la_commune": "LAVERNOY", "libell_d_acheminement": "LAVERNOY", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52275"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab6dbe382b8e8fc77f29982d63baf93c46a173c4", "fields": {"nom_de_la_commune": "LEFFONDS", "libell_d_acheminement": "LEFFONDS", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52282"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117d69beab9d2da73f95cab6a146f963c4c0d8b4", "fields": {"nom_de_la_commune": "LONGCHAMP", "libell_d_acheminement": "LONGCHAMP", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52291"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891b725e43195bc22b7fc2fc1145a4de067b0a6d", "fields": {"nom_de_la_commune": "MAISONCELLES", "libell_d_acheminement": "MAISONCELLES", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52301"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81912e220f75e5f3698eb73bef55b5afb737fa4", "fields": {"nom_de_la_commune": "MANDRES LA COTE", "libell_d_acheminement": "MANDRES LA COTE", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52305"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "650c1e408f69993b05ffdfbd3688aa1c560e0e08", "fields": {"nom_de_la_commune": "MARANVILLE", "libell_d_acheminement": "MARANVILLE", "code_postal": "52370", "coordonnees_gps": [48.1346812321, 4.86216753048], "code_commune_insee": "52308"}, "geometry": {"type": "Point", "coordinates": [4.86216753048, 48.1346812321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64bedceb08afed08798a1c4750261be2bbd0360c", "fields": {"nom_de_la_commune": "MARBEVILLE", "libell_d_acheminement": "MARBEVILLE", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52310"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32501ca6143fd3bb3cfa8755ac515b4c41917ff6", "fields": {"nom_de_la_commune": "MARCILLY EN BASSIGNY", "libell_d_acheminement": "MARCILLY EN BASSIGNY", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52311"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f3a7829a2705ad055e58d2a5aca0b2c5184fe7", "fields": {"nom_de_la_commune": "MARNAY SUR MARNE", "libell_d_acheminement": "MARNAY SUR MARNE", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52315"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bdb3a348e8585bebe151376c892a83ef1633457", "fields": {"nom_de_la_commune": "MATHONS", "libell_d_acheminement": "MATHONS", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52316"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abebff74db3e3f7a017b90c9d6562c16aad52d20", "fields": {"nom_de_la_commune": "MILLIERES", "libell_d_acheminement": "MILLIERES", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52325"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba13799cf31a80a1bfc3bde0438d3bfce515942c", "fields": {"nom_de_la_commune": "MONTHERIES", "libell_d_acheminement": "MONTHERIES", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52330"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53cf910ba5d5887bf17120b653fc61836e2b9dc8", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "MAULAIN", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb86af16ba2f5b538a27361ab063f21e2bc4644", "fields": {"nom_de_la_commune": "MONTREUIL SUR THONNANCE", "libell_d_acheminement": "MONTREUIL SUR THONNANCE", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52337"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ddcd59e5bf7a6074d7a2675028ae0f1580f9bc", "fields": {"nom_de_la_commune": "NEUILLY L EVEQUE", "libell_d_acheminement": "NEUILLY L EVEQUE", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52348"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "101251067bba56e19222e47bf4c4fd558c6e5ba6", "fields": {"nom_de_la_commune": "NIJON", "libell_d_acheminement": "NIJON", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52351"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c0467d74480b52de839529548950ae6d6fd7afd", "fields": {"nom_de_la_commune": "NINVILLE", "libell_d_acheminement": "NINVILLE", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52352"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a7cc196f1d369e70a46daba03cabd33a3506ae", "fields": {"nom_de_la_commune": "OCCEY", "libell_d_acheminement": "OCCEY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52360"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf89072a9e67dc5c045f7b541e393b4b4a7fa20f", "fields": {"nom_de_la_commune": "ORBIGNY AU VAL", "libell_d_acheminement": "ORBIGNY AU VAL", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52363"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc4cc0774f4a04a03dfe08f1fde1aaadcf96fc8", "fields": {"nom_de_la_commune": "OSNE LE VAL", "libell_d_acheminement": "OSNE LE VAL", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52370"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3393aeb7dfe36eb73971adef2128a17f69f99d57", "fields": {"nom_de_la_commune": "LE PAILLY", "libell_d_acheminement": "LE PAILLY", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52374"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa29d52aafc18a278cc285aba7fbd1accb85d3af", "fields": {"code_postal": "52500", "code_commune_insee": "52388", "libell_d_acheminement": "PIERREMONT SUR AMANCE", "ligne_5": "MONTESSON", "nom_de_la_commune": "PIERREMONT SUR AMANCE", "coordonnees_gps": [47.7590950974, 5.58361312095]}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b35d1c33172a93dae2c4bc4a89c677dc3052c8b1", "fields": {"code_postal": "52500", "code_commune_insee": "52388", "libell_d_acheminement": "PIERREMONT SUR AMANCE", "ligne_5": "PIERREFAITES", "nom_de_la_commune": "PIERREMONT SUR AMANCE", "coordonnees_gps": [47.7590950974, 5.58361312095]}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca574a0b49487b0aeee88ca0853d4769ce6586e7", "fields": {"nom_de_la_commune": "PLESNOY", "libell_d_acheminement": "PLESNOY", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52392"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fced512622b92318f9a1fa813b1eb173eb3e922", "fields": {"nom_de_la_commune": "POISEUL", "libell_d_acheminement": "POISEUL", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52397"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b90a50ef008888a07d5884cbdff1276af70522", "fields": {"nom_de_la_commune": "POULANGY", "libell_d_acheminement": "POULANGY", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52401"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e094e5c6dc3ed1718bd34e87c4abf5fa40b1716f", "fields": {"nom_de_la_commune": "RACHECOURT SUR MARNE", "libell_d_acheminement": "RACHECOURT SUR MARNE", "code_postal": "52170", "coordonnees_gps": [48.5434791123, 5.11650934546], "code_commune_insee": "52414"}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848084efc0e55ece0e4010cf26fd337ee7e0148d", "fields": {"nom_de_la_commune": "RANGECOURT", "libell_d_acheminement": "RANGECOURT", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52416"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5316b4148b350bafdbf092c45433c2308bcd2641", "fields": {"code_postal": "52330", "code_commune_insee": "52426", "libell_d_acheminement": "RIZAUCOURT BUCHEY", "ligne_5": "BUCHEY", "nom_de_la_commune": "RIZAUCOURT BUCHEY", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ad5b84b53227336814275a483f214122b8cc76", "fields": {"nom_de_la_commune": "ROLAMPONT", "libell_d_acheminement": "ROLAMPONT", "code_postal": "52260", "coordonnees_gps": [47.9429449859, 5.2580157459], "code_commune_insee": "52432"}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528188a4b07855a3828b0a125231936b86f02fd7", "fields": {"code_postal": "52260", "code_commune_insee": "52432", "libell_d_acheminement": "ROLAMPONT", "ligne_5": "TRONCHOY", "nom_de_la_commune": "ROLAMPONT", "coordonnees_gps": [47.9429449859, 5.2580157459]}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6f3f2c08f4e887909cedfb796e6df28e6fea674", "fields": {"nom_de_la_commune": "ST DIZIER", "libell_d_acheminement": "ST DIZIER", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52448"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5462afd6de6bd0c9aa7c614e15b0f2064c35d686", "fields": {"code_postal": "52210", "code_commune_insee": "52450", "libell_d_acheminement": "ST LOUP SUR AUJON", "ligne_5": "COURCELLES SUR AUJON", "nom_de_la_commune": "ST LOUP SUR AUJON", "coordonnees_gps": [47.9325249173, 5.04140809229]}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07a50e8dcce27a11c53b44b97917c94f672f6ab5", "fields": {"code_postal": "52210", "code_commune_insee": "52450", "libell_d_acheminement": "ST LOUP SUR AUJON", "ligne_5": "ERISEUL", "nom_de_la_commune": "ST LOUP SUR AUJON", "coordonnees_gps": [47.9325249173, 5.04140809229]}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc44edcb8b58759953b7e1bf82911eed0619a43b", "fields": {"nom_de_la_commune": "ST URBAIN MACONCOURT", "libell_d_acheminement": "ST URBAIN MACONCOURT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52456"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bf100cb14450e7a6ea40197d8d5ec88f9f099d9", "fields": {"nom_de_la_commune": "SERQUEUX", "libell_d_acheminement": "SERQUEUX", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52470"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32f092c4b9e08c62e5885528ed125e689d1a079e", "fields": {"nom_de_la_commune": "SILVAROUVRES", "libell_d_acheminement": "SILVAROUVRES", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52474"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c533cc7006dea9e644b2da97664b0143a4ad5c3", "fields": {"nom_de_la_commune": "SOMMEVOIRE", "libell_d_acheminement": "SOMMEVOIRE", "code_postal": "52220", "coordonnees_gps": [48.4589686366, 4.78360005929], "code_commune_insee": "52479"}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dfc85027bc7f25b130aeb8b7832d599fe64aa86", "fields": {"nom_de_la_commune": "SONCOURT SUR MARNE", "libell_d_acheminement": "SONCOURT SUR MARNE", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52480"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0b2407f24532bbccf864521e535dab4d149b42", "fields": {"nom_de_la_commune": "THONNANCE LES JOINVILLE", "libell_d_acheminement": "THONNANCE LES JOINVILLE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52490"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc2b7802240240cd7381b264c3406cb18893f1c", "fields": {"code_postal": "52230", "code_commune_insee": "52491", "libell_d_acheminement": "THONNANCE LES MOULINS", "ligne_5": "BROUTHIERES", "nom_de_la_commune": "THONNANCE LES MOULINS", "coordonnees_gps": [48.4233848371, 5.31749003055]}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5331c427d7ebc1781b8298e7cade21dff208e74f", "fields": {"nom_de_la_commune": "VARENNES SUR AMANCE", "libell_d_acheminement": "VARENNES SUR AMANCE", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52504"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c2ed5a565a71420e6dbb471865f10ab03acdab", "fields": {"nom_de_la_commune": "VAUX SUR BLAISE", "libell_d_acheminement": "VAUX SUR BLAISE", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52510"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0fd4bc8cf8c3013bee8e795f2e1226541109dff", "fields": {"nom_de_la_commune": "VERBIESLES", "libell_d_acheminement": "VERBIESLES", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52514"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6583686d891f4f4f482dee6d826b8686fadc02cd", "fields": {"nom_de_la_commune": "VERSEILLES LE HAUT", "libell_d_acheminement": "VERSEILLES LE HAUT", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52516"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "214861b58e5f4a35719f28b833c0132a922e39ae", "fields": {"nom_de_la_commune": "VESAIGNES SUR MARNE", "libell_d_acheminement": "VESAIGNES SUR MARNE", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52518"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8129a603b5526b65ec91d096d9283838170f5e10", "fields": {"nom_de_la_commune": "VIEVILLE", "libell_d_acheminement": "VIEVILLE", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52522"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9380516b37a56f7835ea1fa06d5e5ccb2471fda", "fields": {"code_postal": "52600", "code_commune_insee": "52529", "libell_d_acheminement": "VILLEGUSIEN LE LAC", "ligne_5": "HEUILLEY COTTON", "nom_de_la_commune": "VILLEGUSIEN LE LAC", "coordonnees_gps": [47.7926178231, 5.43469720671]}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18fab5b5afff652c9940992df94228a580d9f3c4", "fields": {"nom_de_la_commune": "VILLIERS LES APREY", "libell_d_acheminement": "VILLIERS LES APREY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52536"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1566613a959528c8663b6c3544544d91cd57de7", "fields": {"nom_de_la_commune": "BANNES", "libell_d_acheminement": "BANNES", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53019"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea17eda667f73025bfee4df1ff87ad516438decc", "fields": {"nom_de_la_commune": "LA BAZOGE MONTPINCON", "libell_d_acheminement": "LA BAZOGE MONTPINCON", "code_postal": "53440", "coordonnees_gps": [48.2988991204, -0.511946929707], "code_commune_insee": "53021"}, "geometry": {"type": "Point", "coordinates": [-0.511946929707, 48.2988991204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd22668641184913857aec700a8ceff2bd53eb87", "fields": {"nom_de_la_commune": "LA POSTOLLE", "libell_d_acheminement": "LA POSTOLLE", "code_postal": "89260", "coordonnees_gps": [48.3092552712, 3.39257343746], "code_commune_insee": "89310"}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd30196d08f708be0637eb00bbfb471e9e6ef8a5", "fields": {"nom_de_la_commune": "POURRAIN", "libell_d_acheminement": "POURRAIN", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89311"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86e1d6c00ac79cc50338704bc7edabde5d70755", "fields": {"code_postal": "89110", "code_commune_insee": "89334", "libell_d_acheminement": "LE VAL D OCRE", "ligne_5": "ST AUBIN CHATEAU NEUF", "nom_de_la_commune": "LE VAL D OCRE", "coordonnees_gps": [47.8527025116, 3.31027533122]}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b9625e42d00fcfeeef596c9365602589528086b", "fields": {"code_postal": "89110", "code_commune_insee": "89334", "libell_d_acheminement": "LE VAL D OCRE", "ligne_5": "ST MARTIN SUR OCRE", "nom_de_la_commune": "LE VAL D OCRE", "coordonnees_gps": [47.8527025116, 3.31027533122]}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cfd85ade7a59b572c946915363a8256b734b73d", "fields": {"nom_de_la_commune": "ST AUBIN SUR YONNE", "libell_d_acheminement": "ST AUBIN SUR YONNE", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89335"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4eed62d0897fa17cc143a18c8424cd5ea13d342", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89339"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "326ca0c01e97c0ecaf3cda3e5bbf3652a2bd8796", "fields": {"code_postal": "89600", "code_commune_insee": "89345", "libell_d_acheminement": "ST FLORENTIN", "ligne_5": "AVROLLES", "nom_de_la_commune": "ST FLORENTIN", "coordonnees_gps": [47.9775250716, 3.71821754522]}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1bda0216e5ac9bb988a137aa03c0e75395cfff0", "fields": {"nom_de_la_commune": "ST GEORGES SUR BAULCHE", "libell_d_acheminement": "ST GEORGES SUR BAULCHE", "code_postal": "89000", "coordonnees_gps": [47.8006402501, 3.56347649804], "code_commune_insee": "89346"}, "geometry": {"type": "Point", "coordinates": [3.56347649804, 47.8006402501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019152126731bc05a88db089339c92a967b7e4a0", "fields": {"nom_de_la_commune": "ST MARTIN D ORDON", "libell_d_acheminement": "ST MARTIN D ORDON", "code_postal": "89330", "coordonnees_gps": [48.032264148, 3.20612795948], "code_commune_insee": "89353"}, "geometry": {"type": "Point", "coordinates": [3.20612795948, 48.032264148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d37f41a0eb67336d46454749309261f2eef5a3", "fields": {"nom_de_la_commune": "ST PRIVE", "libell_d_acheminement": "ST PRIVE", "code_postal": "89220", "coordonnees_gps": [47.7194478698, 2.95753192292], "code_commune_insee": "89365"}, "geometry": {"type": "Point", "coordinates": [2.95753192292, 47.7194478698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30634f886958d10f914de9bf1f2379f7a2c267db", "fields": {"nom_de_la_commune": "ST VALERIEN", "libell_d_acheminement": "ST VALERIEN", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89370"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cb3cf0b15bc4324e6f8ed9650e4d24ebcaa1708", "fields": {"nom_de_la_commune": "SCEAUX", "libell_d_acheminement": "SCEAUX", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89381"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8aaea0c27c696899d056d5086908467c57510fc", "fields": {"nom_de_la_commune": "SEPEAUX ST ROMAIN", "libell_d_acheminement": "SEPEAUX ST ROMAIN", "code_postal": "89116", "coordonnees_gps": [47.9697320355, 3.23051623218], "code_commune_insee": "89388"}, "geometry": {"type": "Point", "coordinates": [3.23051623218, 47.9697320355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fbeba8aeb77ee04be946d3015550217e7631ceb", "fields": {"nom_de_la_commune": "SERRIGNY", "libell_d_acheminement": "SERRIGNY", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89393"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f1f595060ce420d4ecf9fbfbf1f34a389cdc7b6", "fields": {"nom_de_la_commune": "SERY", "libell_d_acheminement": "SERY", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89394"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d9f4f4e65bff382c42108174fcdbcabced5fd2", "fields": {"nom_de_la_commune": "THAROISEAU", "libell_d_acheminement": "THAROISEAU", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89409"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a87a8cfbca18fbb64f70280511c8b4320feaca", "fields": {"code_postal": "89320", "code_commune_insee": "89411", "libell_d_acheminement": "LES VALLEES DE LA VANNE", "ligne_5": "THEIL SUR VANNE", "nom_de_la_commune": "LES VALLEES DE LA VANNE", "coordonnees_gps": [48.1363744746, 3.52794249897]}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ffbeec51b3e054ba6c6903cdd70b78c6049745f", "fields": {"nom_de_la_commune": "THIZY", "libell_d_acheminement": "THIZY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89412"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44e2ab41c7c8a932ad2efed67146da273ba1e28e", "fields": {"nom_de_la_commune": "THOREY", "libell_d_acheminement": "THOREY", "code_postal": "89430", "coordonnees_gps": [47.8807711106, 4.10354187275], "code_commune_insee": "89413"}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e48ab4e1c64c8a6ce1c80c2e38daf7c5480a798", "fields": {"nom_de_la_commune": "VAULT DE LUGNY", "libell_d_acheminement": "VAULT DE LUGNY", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89433"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5d73dc6861f3da1a9e241f684f7616e30eee25", "fields": {"nom_de_la_commune": "VAUMORT", "libell_d_acheminement": "VAUMORT", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89434"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad50e9615e86b19c3b6abdbd58fa3ada512fc6c", "fields": {"nom_de_la_commune": "VERLIN", "libell_d_acheminement": "VERLIN", "code_postal": "89330", "coordonnees_gps": [48.032264148, 3.20612795948], "code_commune_insee": "89440"}, "geometry": {"type": "Point", "coordinates": [3.20612795948, 48.032264148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19a30e127f52a8f619f1d81771cdbd1e27ce7be5", "fields": {"nom_de_la_commune": "VILLENAVOTTE", "libell_d_acheminement": "VILLENAVOTTE", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89458"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aa62e0b21f60aed7b386cbc834e5ba8b8575b9e", "fields": {"nom_de_la_commune": "VILLENEUVE ST SALVES", "libell_d_acheminement": "VILLENEUVE ST SALVES", "code_postal": "89230", "coordonnees_gps": [47.8736260465, 3.68278303348], "code_commune_insee": "89463"}, "geometry": {"type": "Point", "coordinates": [3.68278303348, 47.8736260465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "600339c1a3d4de97c0a5def2d79405cd52f968dd", "fields": {"nom_de_la_commune": "PERCENEIGE", "libell_d_acheminement": "PERCENEIGE", "code_postal": "89260", "coordonnees_gps": [48.3092552712, 3.39257343746], "code_commune_insee": "89469"}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d0828885e79ce038c2667d4a246449ff35456f0", "fields": {"code_postal": "89260", "code_commune_insee": "89469", "libell_d_acheminement": "PERCENEIGE", "ligne_5": "COURCEAUX", "nom_de_la_commune": "PERCENEIGE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a32c42a34792c719e1de9b1f7a4f50f94a95bfa4", "fields": {"nom_de_la_commune": "VILLIERS LES HAUTS", "libell_d_acheminement": "VILLIERS LES HAUTS", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89470"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "137bba1179f57a0c15796e4fa88282f32123f1bc", "fields": {"code_postal": "89130", "code_commune_insee": "89472", "libell_d_acheminement": "VILLIERS ST BENOIT", "ligne_5": "LA VILLOTTE", "nom_de_la_commune": "VILLIERS ST BENOIT", "coordonnees_gps": [47.7204896398, 3.24989314971]}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7767e3ee8da2b46685b0f2edc19aa3e1bb19cad4", "fields": {"nom_de_la_commune": "ANDELNANS", "libell_d_acheminement": "ANDELNANS", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90001"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e689fc54b13682bcde3d5b4c79ee3393678ce522", "fields": {"nom_de_la_commune": "AUXELLES BAS", "libell_d_acheminement": "AUXELLES BAS", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90005"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed94afdf0709df11fe370ccc26d3ba45e467a17e", "fields": {"nom_de_la_commune": "BEAUCOURT", "libell_d_acheminement": "BEAUCOURT", "code_postal": "90500", "coordonnees_gps": [47.4797366638, 6.92587332829], "code_commune_insee": "90009"}, "geometry": {"type": "Point", "coordinates": [6.92587332829, 47.4797366638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a090d49249a9b420c3fffde457dd0469017c11c7", "fields": {"nom_de_la_commune": "BELFORT", "libell_d_acheminement": "BELFORT", "code_postal": "90000", "coordonnees_gps": [47.6462035629, 6.84586873125], "code_commune_insee": "90010"}, "geometry": {"type": "Point", "coordinates": [6.84586873125, 47.6462035629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "632b817206b4088c9b8221eaccbd483045e04457", "fields": {"nom_de_la_commune": "BOURG SOUS CHATELET", "libell_d_acheminement": "BOURG SOUS CHATELET", "code_postal": "90110", "coordonnees_gps": [47.7312446096, 6.96557108211], "code_commune_insee": "90016"}, "geometry": {"type": "Point", "coordinates": [6.96557108211, 47.7312446096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ccf2cc91d2d866e7a724faa20580b2bb443eb01", "fields": {"nom_de_la_commune": "BOUROGNE", "libell_d_acheminement": "BOUROGNE", "code_postal": "90140", "coordonnees_gps": [47.5713832567, 6.93555749389], "code_commune_insee": "90017"}, "geometry": {"type": "Point", "coordinates": [6.93555749389, 47.5713832567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "889174d4a8dddd51cbe01812b3eb401cf4d5bacf", "fields": {"nom_de_la_commune": "BRETAGNE", "libell_d_acheminement": "BRETAGNE", "code_postal": "90130", "coordonnees_gps": [47.605567769, 6.99078617872], "code_commune_insee": "90019"}, "geometry": {"type": "Point", "coordinates": [6.99078617872, 47.605567769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4357b31db6c7e3669b0fc7126ee864dd7f48fd26", "fields": {"nom_de_la_commune": "CHAVANNES LES GRANDS", "libell_d_acheminement": "CHAVANNES LES GRANDS", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90025"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c02df25dc8096f2c61990fa75a7ced5c0f3c60b", "fields": {"nom_de_la_commune": "DORANS", "libell_d_acheminement": "DORANS", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90035"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "008f04dbebaaa5cb56ceacde850e50842708c6df", "fields": {"nom_de_la_commune": "EGUENIGUE", "libell_d_acheminement": "EGUENIGUE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90036"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9069b75df48fbe0696322cd21ba18e77880d4dc0", "fields": {"nom_de_la_commune": "ETUEFFONT", "libell_d_acheminement": "ETUEFFONT", "code_postal": "90170", "coordonnees_gps": [47.7266319105, 6.91618940907], "code_commune_insee": "90041"}, "geometry": {"type": "Point", "coordinates": [6.91618940907, 47.7266319105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73972d2cbc31c1a5492212452acf7d3d890b2d63", "fields": {"nom_de_la_commune": "FONTAINE", "libell_d_acheminement": "FONTAINE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90047"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e0de018c1c86bb1cd22e7cfa41532db460fa06", "fields": {"nom_de_la_commune": "FOUSSEMAGNE", "libell_d_acheminement": "FOUSSEMAGNE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90049"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6405000bc1a5c52ca20ac8a526d4d1e382e2cf94", "fields": {"nom_de_la_commune": "GRANDVILLARS", "libell_d_acheminement": "GRANDVILLARS", "code_postal": "90600", "coordonnees_gps": [47.5384307783, 6.97020602923], "code_commune_insee": "90053"}, "geometry": {"type": "Point", "coordinates": [6.97020602923, 47.5384307783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbfafabe262aa6a52fa29987bba80f5bb434a059", "fields": {"nom_de_la_commune": "GROSMAGNY", "libell_d_acheminement": "GROSMAGNY", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90054"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216123920a4937284d9d32f5b625716d7f7b9914", "fields": {"nom_de_la_commune": "LACOLLONGE", "libell_d_acheminement": "LACOLLONGE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90059"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46eba2a0e04dc081abd09a7879836a8e48d54885", "fields": {"nom_de_la_commune": "LEPUIX NEUF", "libell_d_acheminement": "LEPUIX NEUF", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90064"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2070d0e188754e0c6086fec0ebf1d2032948314", "fields": {"nom_de_la_commune": "MONTBOUTON", "libell_d_acheminement": "MONTBOUTON", "code_postal": "90500", "coordonnees_gps": [47.4797366638, 6.92587332829], "code_commune_insee": "90070"}, "geometry": {"type": "Point", "coordinates": [6.92587332829, 47.4797366638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5b55d52b8e9e6132c4a12a27a3013f577601eb", "fields": {"nom_de_la_commune": "PEROUSE", "libell_d_acheminement": "PEROUSE", "code_postal": "90160", "coordonnees_gps": [47.6449615689, 6.92104396254], "code_commune_insee": "90076"}, "geometry": {"type": "Point", "coordinates": [6.92104396254, 47.6449615689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01b369edffc3ce1fb13b0c76979a7fc0fd9dcc3f", "fields": {"nom_de_la_commune": "RECHESY", "libell_d_acheminement": "RECHESY", "code_postal": "90370", "coordonnees_gps": [47.5160443969, 7.11643957358], "code_commune_insee": "90081"}, "geometry": {"type": "Point", "coordinates": [7.11643957358, 47.5160443969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7256a25ed61a3ff748bd33ae671a8b19b85f3b7", "fields": {"nom_de_la_commune": "AUTRECHENE", "libell_d_acheminement": "AUTRECHENE", "code_postal": "90140", "coordonnees_gps": [47.5713832567, 6.93555749389], "code_commune_insee": "90082"}, "geometry": {"type": "Point", "coordinates": [6.93555749389, 47.5713832567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46248d0a921e2c8ed2d5228a71a9a9026db7510f", "fields": {"nom_de_la_commune": "RECOUVRANCE", "libell_d_acheminement": "RECOUVRANCE", "code_postal": "90140", "coordonnees_gps": [47.5713832567, 6.93555749389], "code_commune_insee": "90083"}, "geometry": {"type": "Point", "coordinates": [6.93555749389, 47.5713832567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ebaed8d916d9f292262ee65b49865744daea261", "fields": {"nom_de_la_commune": "THIANCOURT", "libell_d_acheminement": "THIANCOURT", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90096"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41210f337bb8ac4bff12352c6e31eb3145d60bf7", "fields": {"nom_de_la_commune": "TREVENANS", "libell_d_acheminement": "TREVENANS", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90097"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94065cc97b238896d265679c37dc2e72e74fca4c", "fields": {"nom_de_la_commune": "VAUTHIERMONT", "libell_d_acheminement": "VAUTHIERMONT", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90100"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8294fa3dd0a3dcdf6cde77aa90ddd9a0bec6fedd", "fields": {"nom_de_la_commune": "VETRIGNE", "libell_d_acheminement": "VETRIGNE", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90103"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77193b860eeac7b23e9d415fd745064d259a753e", "fields": {"nom_de_la_commune": "VILLARS LE SEC", "libell_d_acheminement": "VILLARS LE SEC", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90105"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ad7818df9b35d3df9ccf7e5e1d47d896218ba5", "fields": {"code_postal": "91670", "code_commune_insee": "91016", "libell_d_acheminement": "ANGERVILLE", "ligne_5": "DOMMERVILLE", "nom_de_la_commune": "ANGERVILLE", "coordonnees_gps": [48.3099539715, 2.00495721135]}, "geometry": {"type": "Point", "coordinates": [2.00495721135, 48.3099539715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf182b4e2de2553b4c5960712ace2ecb64d099de", "fields": {"nom_de_la_commune": "ATHIS MONS", "libell_d_acheminement": "ATHIS MONS", "code_postal": "91200", "coordonnees_gps": [48.7091026954, 2.3868160936], "code_commune_insee": "91027"}, "geometry": {"type": "Point", "coordinates": [2.3868160936, 48.7091026954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1b00053d4558000930cba04d0f4d8a33dfd871", "fields": {"nom_de_la_commune": "AUTHON LA PLAINE", "libell_d_acheminement": "AUTHON LA PLAINE", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91035"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a63f477dbb08d3425bc47ee3d31448221e6bb9", "fields": {"nom_de_la_commune": "AUVERS ST GEORGES", "libell_d_acheminement": "AUVERS ST GEORGES", "code_postal": "91580", "coordonnees_gps": [48.493877819, 2.18164362927], "code_commune_insee": "91038"}, "geometry": {"type": "Point", "coordinates": [2.18164362927, 48.493877819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b760466806dd8239448319ef8a17e45aec97500", "fields": {"nom_de_la_commune": "BALLAINVILLIERS", "libell_d_acheminement": "BALLAINVILLIERS", "code_postal": "91160", "coordonnees_gps": [48.6879154099, 2.28155441875], "code_commune_insee": "91044"}, "geometry": {"type": "Point", "coordinates": [2.28155441875, 48.6879154099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51e372b50ef51acf4b674e9bbb567df6244d9dde", "fields": {"nom_de_la_commune": "BOISSY LE SEC", "libell_d_acheminement": "BOISSY LE SEC", "code_postal": "91870", "coordonnees_gps": [48.4851550025, 2.0920257825], "code_commune_insee": "91081"}, "geometry": {"type": "Point", "coordinates": [2.0920257825, 48.4851550025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bd6f29282ff89a20bd9fc66b0c2355c4b678dd0", "fields": {"nom_de_la_commune": "BOURAY SUR JUINE", "libell_d_acheminement": "BOURAY SUR JUINE", "code_postal": "91850", "coordonnees_gps": [48.5126253695, 2.29601584294], "code_commune_insee": "91095"}, "geometry": {"type": "Point", "coordinates": [2.29601584294, 48.5126253695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb970b1fcb564bad1aab1f45260f7ff6c1dd796", "fields": {"nom_de_la_commune": "BREUILLET", "libell_d_acheminement": "BREUILLET", "code_postal": "91650", "coordonnees_gps": [48.5636207397, 2.17184394889], "code_commune_insee": "91105"}, "geometry": {"type": "Point", "coordinates": [2.17184394889, 48.5636207397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29568fd8a061e4f06d3894a146661b925eb1ed7", "fields": {"nom_de_la_commune": "BREUX JOUY", "libell_d_acheminement": "BREUX JOUY", "code_postal": "91650", "coordonnees_gps": [48.5636207397, 2.17184394889], "code_commune_insee": "91106"}, "geometry": {"type": "Point", "coordinates": [2.17184394889, 48.5636207397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d85fa488d574f88061a053137bc0cfb955cfbf", "fields": {"nom_de_la_commune": "BRIIS SOUS FORGES", "libell_d_acheminement": "BRIIS SOUS FORGES", "code_postal": "91640", "coordonnees_gps": [48.6224133727, 2.14125590005], "code_commune_insee": "91111"}, "geometry": {"type": "Point", "coordinates": [2.14125590005, 48.6224133727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d487a62b27897488332358120e1004abe4d7be", "fields": {"nom_de_la_commune": "BRUNOY", "libell_d_acheminement": "BRUNOY", "code_postal": "91800", "coordonnees_gps": [48.6944519423, 2.51253975836], "code_commune_insee": "91114"}, "geometry": {"type": "Point", "coordinates": [2.51253975836, 48.6944519423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d05b7025e5f510354cb1c2b94ef84f8952f37c2", "fields": {"nom_de_la_commune": "BUNO BONNEVAUX", "libell_d_acheminement": "BUNO BONNEVAUX", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91121"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab25833a7622f6fc99854bbb428c04c3adbf2c3", "fields": {"nom_de_la_commune": "CERNY", "libell_d_acheminement": "CERNY", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91129"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b6854aab74a51e52a0a88c585003a0922d87204", "fields": {"nom_de_la_commune": "CHAMPCUEIL", "libell_d_acheminement": "CHAMPCUEIL", "code_postal": "91750", "coordonnees_gps": [48.5147670198, 2.45459432239], "code_commune_insee": "91135"}, "geometry": {"type": "Point", "coordinates": [2.45459432239, 48.5147670198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c8b70dcc4c5f8c6e7bb23d489ec3b550b9aad8", "fields": {"nom_de_la_commune": "CHAMPLAN", "libell_d_acheminement": "CHAMPLAN", "code_postal": "91160", "coordonnees_gps": [48.6879154099, 2.28155441875], "code_commune_insee": "91136"}, "geometry": {"type": "Point", "coordinates": [2.28155441875, 48.6879154099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de7b8535c76cfc557f54098493062d10f92ce776", "fields": {"nom_de_la_commune": "COURANCES", "libell_d_acheminement": "COURANCES", "code_postal": "91490", "coordonnees_gps": [48.4186455247, 2.46228788074], "code_commune_insee": "91180"}, "geometry": {"type": "Point", "coordinates": [2.46228788074, 48.4186455247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e9b6785042bbe5d20980ef4ef3be1f62b501f14", "fields": {"nom_de_la_commune": "DOURDAN", "libell_d_acheminement": "DOURDAN", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91200"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a61b4cfedb0347737d246fcaa5944f4b16392d84", "fields": {"nom_de_la_commune": "EPINAY SUR ORGE", "libell_d_acheminement": "EPINAY SUR ORGE", "code_postal": "91360", "coordonnees_gps": [48.6691027635, 2.32253482428], "code_commune_insee": "91216"}, "geometry": {"type": "Point", "coordinates": [2.32253482428, 48.6691027635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce52cc437646f3208cd554783382e55aabca22b0", "fields": {"nom_de_la_commune": "ETAMPES", "libell_d_acheminement": "ETAMPES", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91223"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a7179b1492e1ceca0a38075198d6b77c47e47c", "fields": {"nom_de_la_commune": "FLEURY MEROGIS", "libell_d_acheminement": "FLEURY MEROGIS", "code_postal": "91700", "coordonnees_gps": [48.6398858055, 2.34146847544], "code_commune_insee": "91235"}, "geometry": {"type": "Point", "coordinates": [2.34146847544, 48.6398858055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06475aee085fe356bad494a1a29b1d61bf740ca2", "fields": {"nom_de_la_commune": "FONTENAY LES BRIIS", "libell_d_acheminement": "FONTENAY LES BRIIS", "code_postal": "91640", "coordonnees_gps": [48.6224133727, 2.14125590005], "code_commune_insee": "91243"}, "geometry": {"type": "Point", "coordinates": [2.14125590005, 48.6224133727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63c8656a3f68a530a15c66f1129b825b00ddd01", "fields": {"nom_de_la_commune": "LA FORET LE ROI", "libell_d_acheminement": "LA FORET LE ROI", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91247"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645b0c337b1c00ac4c58cd15cd55341959bb9d5b", "fields": {"nom_de_la_commune": "FORGES LES BAINS", "libell_d_acheminement": "FORGES LES BAINS", "code_postal": "91470", "coordonnees_gps": [48.6369515369, 2.06831882052], "code_commune_insee": "91249"}, "geometry": {"type": "Point", "coordinates": [2.06831882052, 48.6369515369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae26b76500967079c7e340105b824677b40de98", "fields": {"code_postal": "91430", "code_commune_insee": "91312", "libell_d_acheminement": "IGNY", "ligne_5": "GOMMONVILLIERS", "nom_de_la_commune": "IGNY", "coordonnees_gps": [48.7339593054, 2.21260184658]}, "geometry": {"type": "Point", "coordinates": [2.21260184658, 48.7339593054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65b766b79944b845dd23fcd6f7266d2e5c97f8d0", "fields": {"nom_de_la_commune": "JANVILLE SUR JUINE", "libell_d_acheminement": "JANVILLE SUR JUINE", "code_postal": "91510", "coordonnees_gps": [48.5117436099, 2.26036943723], "code_commune_insee": "91318"}, "geometry": {"type": "Point", "coordinates": [2.26036943723, 48.5117436099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a36f4941aee90bc4043bbdab4e6515f27748acb9", "fields": {"nom_de_la_commune": "LINAS", "libell_d_acheminement": "LINAS", "code_postal": "91310", "coordonnees_gps": [48.6316590424, 2.26650021218], "code_commune_insee": "91339"}, "geometry": {"type": "Point", "coordinates": [2.26650021218, 48.6316590424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1932d990411c77d5bd331f5a65c2206fa70bf057", "fields": {"nom_de_la_commune": "MAISSE", "libell_d_acheminement": "MAISSE", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91359"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a263d3deb3304cf4944b86b3f32091a0683cd1", "fields": {"nom_de_la_commune": "MAROLLES EN BEAUCE", "libell_d_acheminement": "MAROLLES EN BEAUCE", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91374"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2332792b2a014e7205521074d700ed9391fe6fca", "fields": {"nom_de_la_commune": "MILLY LA FORET", "libell_d_acheminement": "MILLY LA FORET", "code_postal": "91490", "coordonnees_gps": [48.4186455247, 2.46228788074], "code_commune_insee": "91405"}, "geometry": {"type": "Point", "coordinates": [2.46228788074, 48.4186455247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8dfaddfa686f5c890612672b3b6acb501fa730d", "fields": {"nom_de_la_commune": "LA NORVILLE", "libell_d_acheminement": "LA NORVILLE", "code_postal": "91290", "coordonnees_gps": [48.5844568763, 2.25774325874], "code_commune_insee": "91457"}, "geometry": {"type": "Point", "coordinates": [2.25774325874, 48.5844568763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f600d343baec1c79df3f1f40e5ad7cab518bd7c0", "fields": {"nom_de_la_commune": "NOZAY", "libell_d_acheminement": "NOZAY", "code_postal": "91620", "coordonnees_gps": [48.6612886154, 2.24603935989], "code_commune_insee": "91458"}, "geometry": {"type": "Point", "coordinates": [2.24603935989, 48.6612886154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fe6de1246cc38bd7f3044e67c0b94fa30e9452c", "fields": {"nom_de_la_commune": "PALAISEAU", "libell_d_acheminement": "PALAISEAU", "code_postal": "91120", "coordonnees_gps": [48.714670201, 2.22882062662], "code_commune_insee": "91477"}, "geometry": {"type": "Point", "coordinates": [2.22882062662, 48.714670201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "060432e01fb89a0085a9ca31df85b69be395b70c", "fields": {"nom_de_la_commune": "LE PLESSIS PATE", "libell_d_acheminement": "LE PLESSIS PATE", "code_postal": "91220", "coordonnees_gps": [48.6039242304, 2.3152152775], "code_commune_insee": "91494"}, "geometry": {"type": "Point", "coordinates": [2.3152152775, 48.6039242304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d604868e3edc72ba7d0e1300bf324e859a5445", "fields": {"nom_de_la_commune": "PUSSAY", "libell_d_acheminement": "PUSSAY", "code_postal": "91740", "coordonnees_gps": [48.3700823354, 2.00542911555], "code_commune_insee": "91511"}, "geometry": {"type": "Point", "coordinates": [2.00542911555, 48.3700823354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674e67eef7e0b9c69c2a2c42e55d8034d723deb3", "fields": {"nom_de_la_commune": "ROINVILLIERS", "libell_d_acheminement": "ROINVILLIERS", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91526"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "564f773e7053fde9b3b2c0c422bf90a4fafd6a41", "fields": {"nom_de_la_commune": "SACLAS", "libell_d_acheminement": "SACLAS", "code_postal": "91690", "coordonnees_gps": [48.3609334789, 2.12492559974], "code_commune_insee": "91533"}, "geometry": {"type": "Point", "coordinates": [2.12492559974, 48.3609334789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b86f5d8d7d9644ab5ed93d35b3d4ca0ee623dbd", "fields": {"nom_de_la_commune": "SACLAY", "libell_d_acheminement": "SACLAY", "code_postal": "91400", "coordonnees_gps": [48.7079533558, 2.15419618195], "code_commune_insee": "91534"}, "geometry": {"type": "Point", "coordinates": [2.15419618195, 48.7079533558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1b76b0b10277c5a4a9453a01e58e33c5d5a543", "fields": {"code_postal": "91400", "code_commune_insee": "91534", "libell_d_acheminement": "SACLAY", "ligne_5": "LE VAL D ALBIAN", "nom_de_la_commune": "SACLAY", "coordonnees_gps": [48.7079533558, 2.15419618195]}, "geometry": {"type": "Point", "coordinates": [2.15419618195, 48.7079533558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03781fd11e21e27ec5cab0f3b0b1c2052fb45602", "fields": {"nom_de_la_commune": "ST CYR SOUS DOURDAN", "libell_d_acheminement": "ST CYR SOUS DOURDAN", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91546"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f60b489a547c552c44e426a29f153536cb8a4c", "fields": {"nom_de_la_commune": "ST ESCOBILLE", "libell_d_acheminement": "ST ESCOBILLE", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91547"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7cd8655b93caf7fbe5040bedc11cb486c48e20b", "fields": {"nom_de_la_commune": "STE GENEVIEVE DES BOIS", "libell_d_acheminement": "STE GENEVIEVE DES BOIS", "code_postal": "91700", "coordonnees_gps": [48.6398858055, 2.34146847544], "code_commune_insee": "91549"}, "geometry": {"type": "Point", "coordinates": [2.34146847544, 48.6398858055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef3f7cac9f6feebc75aa519420f33dd7ba8c11e", "fields": {"nom_de_la_commune": "ST GERMAIN LES CORBEIL", "libell_d_acheminement": "ST GERMAIN LES CORBEIL", "code_postal": "91250", "coordonnees_gps": [48.6186905603, 2.50655101918], "code_commune_insee": "91553"}, "geometry": {"type": "Point", "coordinates": [2.50655101918, 48.6186905603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f141acce9256dcb24031e396764d52d68b8ba1d", "fields": {"code_postal": "91940", "code_commune_insee": "91560", "libell_d_acheminement": "ST JEAN DE BEAUREGARD", "ligne_5": "VILLEZIERS", "nom_de_la_commune": "ST JEAN DE BEAUREGARD", "coordonnees_gps": [48.6746009432, 2.16779886217]}, "geometry": {"type": "Point", "coordinates": [2.16779886217, 48.6746009432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58d80af0369dc774739b69d1590d8a276551ec0", "fields": {"nom_de_la_commune": "ST SULPICE DE FAVIERES", "libell_d_acheminement": "ST SULPICE DE FAVIERES", "code_postal": "91910", "coordonnees_gps": [48.5358095636, 2.18105811506], "code_commune_insee": "91578"}, "geometry": {"type": "Point", "coordinates": [2.18105811506, 48.5358095636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aad4f9b12e1625abd677c50e590b09e0cd123ac", "fields": {"nom_de_la_commune": "ST VRAIN", "libell_d_acheminement": "ST VRAIN", "code_postal": "91770", "coordonnees_gps": [48.5370542716, 2.32337001511], "code_commune_insee": "91579"}, "geometry": {"type": "Point", "coordinates": [2.32337001511, 48.5370542716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08dcb58034d1c5ee0cec2eb0fdc4bc53aa9261b9", "fields": {"nom_de_la_commune": "ST MARD", "libell_d_acheminement": "ST MARD", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54479"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a242329ec16de47490cd63b9731fafe4bee6f4", "fields": {"nom_de_la_commune": "ST MAURICE AUX FORGES", "libell_d_acheminement": "ST MAURICE AUX FORGES", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54481"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3fc5fea0f3ec7cde1f534a07cb2be80bcb56580", "fields": {"nom_de_la_commune": "ST MAX", "libell_d_acheminement": "ST MAX", "code_postal": "54130", "coordonnees_gps": [48.7101644321, 6.209548924], "code_commune_insee": "54482"}, "geometry": {"type": "Point", "coordinates": [6.209548924, 48.7101644321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "573bc24b7a727dda9c4052c0f7c1d417e67ef94c", "fields": {"nom_de_la_commune": "ST PANCRE", "libell_d_acheminement": "ST PANCRE", "code_postal": "54730", "coordonnees_gps": [49.5332181757, 5.65682394495], "code_commune_insee": "54485"}, "geometry": {"type": "Point", "coordinates": [5.65682394495, 49.5332181757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be4bab99050b1d22c9e0ee63ca0313bba9f621a", "fields": {"nom_de_la_commune": "ST SUPPLET", "libell_d_acheminement": "ST SUPPLET", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54489"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174d85b262671220ece31f7ebd7eb6b0bb3da96a", "fields": {"nom_de_la_commune": "SEXEY AUX FORGES", "libell_d_acheminement": "SEXEY AUX FORGES", "code_postal": "54550", "coordonnees_gps": [48.6084517258, 6.04974383571], "code_commune_insee": "54505"}, "geometry": {"type": "Point", "coordinates": [6.04974383571, 48.6084517258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73a1a7857b6211a76ceac8bb3def2ac4d2bfd2f", "fields": {"code_postal": "67170", "code_commune_insee": "67359", "libell_d_acheminement": "OHLUNGEN", "ligne_5": "KEFFENDORF", "nom_de_la_commune": "OHLUNGEN", "coordonnees_gps": [48.7372742925, 7.70176270666]}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da31573b66acfa245d7a8cf78a04c7566a7447a", "fields": {"code_postal": "67350", "code_commune_insee": "67372", "libell_d_acheminement": "VAL DE MODER", "ligne_5": "UBERACH", "nom_de_la_commune": "VAL DE MODER", "coordonnees_gps": [48.8437239093, 7.60701636897]}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aeb5dec856ab081712a508f0988cafa12c49e02", "fields": {"nom_de_la_commune": "PLAINE", "libell_d_acheminement": "PLAINE", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67377"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb357e7a30b07cbe6d42fb3e1b2bfeca15de34b9", "fields": {"code_postal": "67420", "code_commune_insee": "67377", "libell_d_acheminement": "PLAINE", "ligne_5": "CHAMPENAY", "nom_de_la_commune": "PLAINE", "coordonnees_gps": [48.3874894068, 7.1481297444]}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814d45d4867aa321a8f88b7b5730adf565645f94", "fields": {"nom_de_la_commune": "RAUWILLER", "libell_d_acheminement": "RAUWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67386"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e1cd40b959bf3c93742530ce98f6561e2457cc", "fields": {"code_postal": "67110", "code_commune_insee": "67388", "libell_d_acheminement": "REICHSHOFFEN", "ligne_5": "NEHWILLER", "nom_de_la_commune": "REICHSHOFFEN", "coordonnees_gps": [48.9564241197, 7.64420401079]}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4232c5185b9eee1290aa7b65ffcc6608279c7f54", "fields": {"nom_de_la_commune": "REIPERTSWILLER", "libell_d_acheminement": "REIPERTSWILLER", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67392"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934496858a604f2bb7fc6bcd12d884f93614f3ee", "fields": {"nom_de_la_commune": "RIEDSELTZ", "libell_d_acheminement": "RIEDSELTZ", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67400"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbfa30ac60697a6d67391bd700af2fde37555c94", "fields": {"nom_de_la_commune": "ROHR", "libell_d_acheminement": "ROHR", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67406"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c64734bc15579cdb94b0a85ff315e0244793bddd", "fields": {"nom_de_la_commune": "ROMANSWILLER", "libell_d_acheminement": "ROMANSWILLER", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67408"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a5c0223478122b4c78ebc6b539825df5fba7073", "fields": {"nom_de_la_commune": "ROSENWILLER", "libell_d_acheminement": "ROSENWILLER", "code_postal": "67560", "coordonnees_gps": [48.4928593453, 7.41301977896], "code_commune_insee": "67410"}, "geometry": {"type": "Point", "coordinates": [7.41301977896, 48.4928593453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b68f095a5b5ad805b94b46478588629bbf5bafb", "fields": {"nom_de_la_commune": "ROTHAU", "libell_d_acheminement": "ROTHAU", "code_postal": "67570", "coordonnees_gps": [48.4582864667, 7.17805256783], "code_commune_insee": "67414"}, "geometry": {"type": "Point", "coordinates": [7.17805256783, 48.4582864667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "267973690f5c4d4c09db4650173fd540ce56372a", "fields": {"nom_de_la_commune": "SAALES", "libell_d_acheminement": "SAALES", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67421"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4238a557a22a15bb451db782d5ba97e05f2e042", "fields": {"nom_de_la_commune": "ST NABOR", "libell_d_acheminement": "ST NABOR", "code_postal": "67530", "coordonnees_gps": [48.4532281253, 7.37169792676], "code_commune_insee": "67428"}, "geometry": {"type": "Point", "coordinates": [7.37169792676, 48.4532281253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94192a01833c41e841daa03f40fe718fb085f145", "fields": {"nom_de_la_commune": "ST PIERRE BOIS", "libell_d_acheminement": "ST PIERRE BOIS", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67430"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6038b752c92b01d8e55d5b9b5044ef355953298d", "fields": {"nom_de_la_commune": "SALMBACH", "libell_d_acheminement": "SALMBACH", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67432"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b42f4cc0051a982b84188e19ecd49f40d2ed1a4", "fields": {"nom_de_la_commune": "SARRE UNION", "libell_d_acheminement": "SARRE UNION", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67434"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c291871294c0a7b51a05f9922906a7d53317a674", "fields": {"nom_de_la_commune": "SCHILTIGHEIM", "libell_d_acheminement": "SCHILTIGHEIM", "code_postal": "67300", "coordonnees_gps": [48.6118186538, 7.74524523422], "code_commune_insee": "67447"}, "geometry": {"type": "Point", "coordinates": [7.74524523422, 48.6118186538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d1191204dc9f16dda0a39e12a496fe49f8d3862", "fields": {"nom_de_la_commune": "SCHIRMECK", "libell_d_acheminement": "SCHIRMECK", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67448"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823cdbb6282b5242c07860c288cbff6e518e6123", "fields": {"nom_de_la_commune": "SCHIRRHOFFEN", "libell_d_acheminement": "SCHIRRHOFFEN", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67450"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f52c1ded49f0ffab6a0fa48b9d3d05b04317dd2", "fields": {"nom_de_la_commune": "SELTZ", "libell_d_acheminement": "SELTZ", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67463"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c6e1b3be4ea61e7dd525043be5385a59648f183", "fields": {"nom_de_la_commune": "STOTZHEIM", "libell_d_acheminement": "STOTZHEIM", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67481"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a41260b864b295d3ea94311438334d46f50360b", "fields": {"nom_de_la_commune": "STRASBOURG", "libell_d_acheminement": "STRASBOURG", "code_postal": "67100", "coordonnees_gps": [48.5716222333, 7.76768232804], "code_commune_insee": "67482"}, "geometry": {"type": "Point", "coordinates": [7.76768232804, 48.5716222333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c142641ab95640e389ce28bc8ced7cc257a9f59a", "fields": {"nom_de_la_commune": "STUTZHEIM OFFENHEIM", "libell_d_acheminement": "STUTZHEIM OFFENHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67485"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3894cd8f460a19235c08514f2e4fe0bc77b735", "fields": {"nom_de_la_commune": "SURBOURG", "libell_d_acheminement": "SURBOURG", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67487"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a503c3f20ba830ab73923940e4644f778f4aca", "fields": {"code_postal": "67440", "code_commune_insee": "67489", "libell_d_acheminement": "THAL MARMOUTIER", "ligne_5": "SCHWEBWILLER", "nom_de_la_commune": "THAL MARMOUTIER", "coordonnees_gps": [48.685560689, 7.36622848676]}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f16d2c58c9efbd8045183037fa17b6f0b3e69c0", "fields": {"nom_de_la_commune": "TRIMBACH", "libell_d_acheminement": "TRIMBACH", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67494"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a285ae0be657a2c244cde2dda629d956c030b2", "fields": {"code_postal": "67370", "code_commune_insee": "67495", "libell_d_acheminement": "TRUCHTERSHEIM", "ligne_5": "PFETTISHEIM", "nom_de_la_commune": "TRUCHTERSHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eff5ad0094cfbdf321a1ea55945693c84b1d273", "fields": {"code_postal": "67350", "code_commune_insee": "67497", "libell_d_acheminement": "UHLWILLER", "ligne_5": "NIEDERALTDORF", "nom_de_la_commune": "UHLWILLER", "coordonnees_gps": [48.8437239093, 7.60701636897]}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "347f504f9717dd4f14b5091325e1dba021330ece", "fields": {"nom_de_la_commune": "URBEIS", "libell_d_acheminement": "URBEIS", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67499"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8880b7a9f29e09e40600013151be24dc5b41a173", "fields": {"nom_de_la_commune": "VOELLERDINGEN", "libell_d_acheminement": "VOELLERDINGEN", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67508"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48bef63a81f29659057dafc54915d0dc876596c1", "fields": {"nom_de_la_commune": "WALDHAMBACH", "libell_d_acheminement": "WALDHAMBACH", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67514"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a553d0af7be8f3e94a82a572a703a2061d7bf2c5", "fields": {"nom_de_la_commune": "WEINBOURG", "libell_d_acheminement": "WEINBOURG", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67521"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afdbdd9e6e684b6e6faacd166793a5883443a019", "fields": {"nom_de_la_commune": "WEITERSWILLER", "libell_d_acheminement": "WEITERSWILLER", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67524"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa80cbd5cf1780691df83b962bbae17312f198e4", "fields": {"nom_de_la_commune": "WEYER", "libell_d_acheminement": "WEYER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67528"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d158ad471adc6dfcf7f02051c52ae3b27119281", "fields": {"code_postal": "67370", "code_commune_insee": "67532", "libell_d_acheminement": "WILLGOTTHEIM", "ligne_5": "WOELLENHEIM", "nom_de_la_commune": "WILLGOTTHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35552721a5748473e38afdfe063e8bef950d6d75", "fields": {"nom_de_la_commune": "WIMMENAU", "libell_d_acheminement": "WIMMENAU", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67535"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc8b421e8c48154e7533ec6659a25e17e1b46311", "fields": {"nom_de_la_commune": "WINGEN SUR MODER", "libell_d_acheminement": "WINGEN SUR MODER", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67538"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad5bf16b803a8cacc1b1047087afbbca60b44d6", "fields": {"nom_de_la_commune": "WINTERSHOUSE", "libell_d_acheminement": "WINTERSHOUSE", "code_postal": "67590", "coordonnees_gps": [48.811939028, 7.71713029127], "code_commune_insee": "67540"}, "geometry": {"type": "Point", "coordinates": [7.71713029127, 48.811939028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5fe8ad1046ac9178c29cd0f671562cf33757dd", "fields": {"nom_de_la_commune": "WINTZENBACH", "libell_d_acheminement": "WINTZENBACH", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67541"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "543cbbb02355afe9be69aeff785e0187227f5f05", "fields": {"code_postal": "67130", "code_commune_insee": "67543", "libell_d_acheminement": "WISCHES", "ligne_5": "HERSBACH", "nom_de_la_commune": "WISCHES", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99533cd6cec617437566b413f660aa2a16fcbff", "fields": {"code_postal": "67160", "code_commune_insee": "67544", "libell_d_acheminement": "WISSEMBOURG", "ligne_5": "WEILER", "nom_de_la_commune": "WISSEMBOURG", "coordonnees_gps": [48.9935225292, 7.97087755177]}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712120500e4df8925322f4c7bdd3da99c00eaca4", "fields": {"nom_de_la_commune": "WITTISHEIM", "libell_d_acheminement": "WITTISHEIM", "code_postal": "67820", "coordonnees_gps": [48.2626688042, 7.59114242143], "code_commune_insee": "67547"}, "geometry": {"type": "Point", "coordinates": [7.59114242143, 48.2626688042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d76522ade10b35647721c3cf3359327d694fccf", "fields": {"nom_de_la_commune": "ZOEBERSDORF", "libell_d_acheminement": "ZOEBERSDORF", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67560"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b058b32d7bb60079f057fa543fe8c813025ed8c", "fields": {"nom_de_la_commune": "ALTENACH", "libell_d_acheminement": "ALTENACH", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68002"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba36c7acb5bda03204cbeab87a73238f93565455", "fields": {"code_postal": "68410", "code_commune_insee": "68005", "libell_d_acheminement": "AMMERSCHWIHR", "ligne_5": "LES TROIS EPIS", "nom_de_la_commune": "AMMERSCHWIHR", "coordonnees_gps": [48.1196029764, 7.259781289]}, "geometry": {"type": "Point", "coordinates": [7.259781289, 48.1196029764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97f55037c88f481facb907deb627ca315056b664", "fields": {"nom_de_la_commune": "AMMERSCHWIHR", "libell_d_acheminement": "AMMERSCHWIHR", "code_postal": "68770", "coordonnees_gps": [48.1196029764, 7.259781289], "code_commune_insee": "68005"}, "geometry": {"type": "Point", "coordinates": [7.259781289, 48.1196029764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5b75a4e695d8c4f726b4a2dec3b90ee97d649f5", "fields": {"nom_de_la_commune": "ANDOLSHEIM", "libell_d_acheminement": "ANDOLSHEIM", "code_postal": "68280", "coordonnees_gps": [48.0441812016, 7.43245539363], "code_commune_insee": "68007"}, "geometry": {"type": "Point", "coordinates": [7.43245539363, 48.0441812016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bcb351d0a10bd49c535ee46a79fb542c82d1bf8", "fields": {"nom_de_la_commune": "APPENWIHR", "libell_d_acheminement": "APPENWIHR", "code_postal": "68280", "coordonnees_gps": [48.0441812016, 7.43245539363], "code_commune_insee": "68008"}, "geometry": {"type": "Point", "coordinates": [7.43245539363, 48.0441812016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdbc2802ce03744944adfae0540c64e88ac4ecc5", "fields": {"nom_de_la_commune": "ARTZENHEIM", "libell_d_acheminement": "ARTZENHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68009"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7945bea10aebfb44e194c97391cd8f4071b0a3bc", "fields": {"nom_de_la_commune": "ASPACH", "libell_d_acheminement": "ASPACH", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68010"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62704ae431dec422512bb7c7ca70fa6be928e4a4", "fields": {"nom_de_la_commune": "ATTENSCHWILLER", "libell_d_acheminement": "ATTENSCHWILLER", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68013"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3ddf69c5f92edb99f227ac695b25ef66e1fcaa", "fields": {"nom_de_la_commune": "BALDERSHEIM", "libell_d_acheminement": "BALDERSHEIM", "code_postal": "68390", "coordonnees_gps": [47.7997453022, 7.41007777982], "code_commune_insee": "68015"}, "geometry": {"type": "Point", "coordinates": [7.41007777982, 47.7997453022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ade27ed880a1929cb5cf1682f2afc7d3b7e67e", "fields": {"nom_de_la_commune": "BALTZENHEIM", "libell_d_acheminement": "BALTZENHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68019"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "486f52339312ea162f0a746864166af11a184800", "fields": {"nom_de_la_commune": "BENNWIHR", "libell_d_acheminement": "BENNWIHR MITTELWIHR", "code_postal": "68630", "coordonnees_gps": [48.1423548591, 7.33228036662], "code_commune_insee": "68026"}, "geometry": {"type": "Point", "coordinates": [7.33228036662, 48.1423548591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48dc39296580e23db5cb8466b2250297cffe3623", "fields": {"nom_de_la_commune": "BERGHOLTZ", "libell_d_acheminement": "BERGHOLTZ", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68029"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f42dee7dc52303621cb9778b97ce572815d6c9", "fields": {"nom_de_la_commune": "BERNWILLER", "libell_d_acheminement": "BERNWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68031"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63a1c7a2f629a41804641c80f29d43e46f0b073", "fields": {"nom_de_la_commune": "BIEDERTHAL", "libell_d_acheminement": "BIEDERTHAL", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68035"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6c0608ecf1b4c2e7945fba6d423adf2dad5fad", "fields": {"nom_de_la_commune": "BREITENBACH HAUT RHIN", "libell_d_acheminement": "BREITENBACH", "code_postal": "68380", "coordonnees_gps": [47.9954927319, 7.05179544596], "code_commune_insee": "68051"}, "geometry": {"type": "Point", "coordinates": [7.05179544596, 47.9954927319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc838cf6b73f28c0fb2093432b73d9c87526486", "fields": {"nom_de_la_commune": "CHAVANNES SUR L ETANG", "libell_d_acheminement": "CHAVANNES SUR L ETANG", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68065"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5c80f64cdc6120af8fe1d45da00b2d9bd059d06", "fields": {"nom_de_la_commune": "COURTAVON", "libell_d_acheminement": "COURTAVON", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68067"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699faf85af086d65bf74cfc1fc8a2c4fdec7a552", "fields": {"nom_de_la_commune": "DESSENHEIM", "libell_d_acheminement": "DESSENHEIM", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68069"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e29212135d36ff09ca106e7bf470bd231bec5c0", "fields": {"nom_de_la_commune": "DURMENACH", "libell_d_acheminement": "DURMENACH", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68075"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "785ab7e2d7b9ca7426edcc16424382eeb57a30a3", "fields": {"nom_de_la_commune": "ELBACH", "libell_d_acheminement": "ELBACH", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68079"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf64f4189152e82562c007cb38fd43d3506df6d", "fields": {"nom_de_la_commune": "ESCHENTZWILLER", "libell_d_acheminement": "ESCHENTZWILLER", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68084"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87df4105084fb6668d94e6c96d4c8a2a1172c950", "fields": {"nom_de_la_commune": "FORTSCHWIHR", "libell_d_acheminement": "FORTSCHWIHR", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68095"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ff15a761e8774b9ba7f322067a1d73773d7f18", "fields": {"nom_de_la_commune": "GEISHOUSE", "libell_d_acheminement": "GEISHOUSE", "code_postal": "68690", "coordonnees_gps": [47.8604403288, 7.04290512633], "code_commune_insee": "68102"}, "geometry": {"type": "Point", "coordinates": [7.04290512633, 47.8604403288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d724cc96cc60c9768ee85bafd697d562497978d", "fields": {"nom_de_la_commune": "GEISWASSER", "libell_d_acheminement": "GEISWASSER", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68104"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "150f16fbe0926c5f221fcdbdf53505bcc2dd6f0e", "fields": {"nom_de_la_commune": "GOMMERSDORF", "libell_d_acheminement": "GOMMERSDORF", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68107"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3df7bff21608b9cb2da4cd0db603e48a7d2067a", "fields": {"nom_de_la_commune": "HOCHSTATT", "libell_d_acheminement": "HOCHSTATT", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68141"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85dacfeacdf9cc3374710500189e65449d025635", "fields": {"nom_de_la_commune": "HUNDSBACH", "libell_d_acheminement": "HUNDSBACH", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68148"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f54b758da24a6d579d2f5dfdf080f15533066f9", "fields": {"nom_de_la_commune": "JUNGHOLTZ", "libell_d_acheminement": "JUNGHOLTZ", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68159"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4078ef0519022482a72ad5f28a3a61a6ffc6d504", "fields": {"code_postal": "68240", "code_commune_insee": "68162", "libell_d_acheminement": "KAYSERSBERG VIGNOBLE", "ligne_5": "SIGOLSHEIM", "nom_de_la_commune": "KAYSERSBERG VIGNOBLE", "coordonnees_gps": [48.1678355817, 7.21603176483]}, "geometry": {"type": "Point", "coordinates": [7.21603176483, 48.1678355817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b33c535018ee8e96e0702575225d7e92c6aef5", "fields": {"nom_de_la_commune": "KIFFIS", "libell_d_acheminement": "KIFFIS", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68165"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0099ed3f5a698958cd8ba87e94af86251d5d609d", "fields": {"nom_de_la_commune": "KNOERINGUE", "libell_d_acheminement": "KNOERINGUE", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68168"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a28cc4d59e50fe202355760d3f573ba9bdb3385d", "fields": {"nom_de_la_commune": "LABAROCHE", "libell_d_acheminement": "LABAROCHE", "code_postal": "68910", "coordonnees_gps": [48.1097845379, 7.19577629538], "code_commune_insee": "68173"}, "geometry": {"type": "Point", "coordinates": [7.19577629538, 48.1097845379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68f40e611737d8b0024d30cc24821b7e3485b4c0", "fields": {"code_postal": "68610", "code_commune_insee": "68177", "libell_d_acheminement": "LAUTENBACH", "ligne_5": "MARKSTEIN", "nom_de_la_commune": "LAUTENBACH", "coordonnees_gps": [47.9413913563, 7.11100776725]}, "geometry": {"type": "Point", "coordinates": [7.11100776725, 47.9413913563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "467b03c4e5d148d06ec93532f71211ece6d15d18", "fields": {"nom_de_la_commune": "LEIMBACH", "libell_d_acheminement": "LEIMBACH", "code_postal": "68800", "coordonnees_gps": [47.7994545972, 7.09241843411], "code_commune_insee": "68180"}, "geometry": {"type": "Point", "coordinates": [7.09241843411, 47.7994545972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26754713f7b5283aad7e4bad8a60a93595ed0ec0", "fields": {"nom_de_la_commune": "LIEBENSWILLER", "libell_d_acheminement": "LIEBENSWILLER", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68183"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ded9d1b2abca830457b0bfdb8eace9090c407063", "fields": {"nom_de_la_commune": "LIEPVRE", "libell_d_acheminement": "LIEPVRE", "code_postal": "68660", "coordonnees_gps": [48.2830260075, 7.25621728255], "code_commune_insee": "68185"}, "geometry": {"type": "Point", "coordinates": [7.25621728255, 48.2830260075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3761d5ed854b0787a1d68bfbf3b621a10801dc5", "fields": {"nom_de_la_commune": "LOGELHEIM", "libell_d_acheminement": "LOGELHEIM", "code_postal": "68280", "coordonnees_gps": [48.0441812016, 7.43245539363], "code_commune_insee": "68189"}, "geometry": {"type": "Point", "coordinates": [7.43245539363, 48.0441812016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "661a50d2fee684eab5c58aca15e583cc018826d8", "fields": {"nom_de_la_commune": "LUTTENBACH PRES MUNSTER", "libell_d_acheminement": "LUTTENBACH", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68193"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6fe66d677382133073617c2da054941a79f85f", "fields": {"nom_de_la_commune": "MAGNY", "libell_d_acheminement": "MAGNY", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68196"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a12d41fd0fc3b92e49a33989031c38730f678070", "fields": {"nom_de_la_commune": "MALMERSPACH", "libell_d_acheminement": "MALMERSPACH", "code_postal": "68550", "coordonnees_gps": [47.8832667116, 7.03896446399], "code_commune_insee": "68199"}, "geometry": {"type": "Point", "coordinates": [7.03896446399, 47.8832667116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7164ff709b68dcf574e6a957517cf79b88119b00", "fields": {"code_postal": "68290", "code_commune_insee": "68201", "libell_d_acheminement": "MASEVAUX NIEDERBRUCK", "ligne_5": "NIEDERBRUCK", "nom_de_la_commune": "MASEVAUX NIEDERBRUCK", "coordonnees_gps": [47.799453165, 6.9576762067]}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e0e377f563543a71aa562888ba3531a49b8aff", "fields": {"nom_de_la_commune": "METZERAL", "libell_d_acheminement": "METZERAL", "code_postal": "68380", "coordonnees_gps": [47.9954927319, 7.05179544596], "code_commune_insee": "68204"}, "geometry": {"type": "Point", "coordinates": [7.05179544596, 47.9954927319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "513b7ddee4b4a0f4c57f2b8ffcf7281649939619", "fields": {"nom_de_la_commune": "MITZACH", "libell_d_acheminement": "MITZACH", "code_postal": "68470", "coordonnees_gps": [47.8911637424, 6.97731625336], "code_commune_insee": "68211"}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d23e0d5ba6b8ae453093981d42d5b1822ae6d7e7", "fields": {"nom_de_la_commune": "MUESPACH", "libell_d_acheminement": "MUESPACH", "code_postal": "68640", "coordonnees_gps": [47.5439826681, 7.33909806987], "code_commune_insee": "68221"}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "302520beccee0ff72c626044f8a80e77befbb5da", "fields": {"nom_de_la_commune": "NEUWILLER", "libell_d_acheminement": "NEUWILLER", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68232"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef4c78f782b263a3b3324c41a937e7187b69852a", "fields": {"nom_de_la_commune": "NIEDERHERGHEIM", "libell_d_acheminement": "NIEDERHERGHEIM", "code_postal": "68127", "coordonnees_gps": [47.9788629564, 7.39190027996], "code_commune_insee": "68235"}, "geometry": {"type": "Point", "coordinates": [7.39190027996, 47.9788629564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00f4b85eefa824d7e507063045f1964fdc1449c0", "fields": {"nom_de_la_commune": "NIFFER", "libell_d_acheminement": "NIFFER", "code_postal": "68680", "coordonnees_gps": [47.692052435, 7.4996914336], "code_commune_insee": "68238"}, "geometry": {"type": "Point", "coordinates": [7.4996914336, 47.692052435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beab6cd12edbed6f68635df293029e2ee644e16a", "fields": {"code_postal": "68960", "code_commune_insee": "68240", "libell_d_acheminement": "ILLTAL", "ligne_5": "HENFLINGEN", "nom_de_la_commune": "ILLTAL", "coordonnees_gps": [47.5717118449, 7.32148674865]}, "geometry": {"type": "Point", "coordinates": [7.32148674865, 47.5717118449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e226bc6020bbe68f8de627ba725b8fcaad2463f", "fields": {"nom_de_la_commune": "OBERHERGHEIM", "libell_d_acheminement": "OBERHERGHEIM", "code_postal": "68127", "coordonnees_gps": [47.9788629564, 7.39190027996], "code_commune_insee": "68242"}, "geometry": {"type": "Point", "coordinates": [7.39190027996, 47.9788629564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93c4e9f8b842fb0e675840e7d043450dd4b11f1c", "fields": {"nom_de_la_commune": "OBERMORSCHWIHR", "libell_d_acheminement": "OBERMORSCHWIHR", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68244"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6274fe39b2ac260ea58476bf6b920da364c92a6", "fields": {"nom_de_la_commune": "ST ETIENNE AU MONT", "libell_d_acheminement": "PONT DE BRIQUES ST ETIENNE", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62746"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0237c97d17a2aec86053551346c61ef91b9fe41f", "fields": {"code_postal": "62360", "code_commune_insee": "62746", "libell_d_acheminement": "PONT DE BRIQUES ST ETIENNE", "ligne_5": "PONT DE BRIQUES", "nom_de_la_commune": "ST ETIENNE AU MONT", "coordonnees_gps": [50.6825479214, 1.6682942512]}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89a72b646a80e30bafa38a7524c8abd773442ed1", "fields": {"nom_de_la_commune": "ST FLORIS", "libell_d_acheminement": "ST FLORIS", "code_postal": "62350", "coordonnees_gps": [50.6043469321, 2.56021109887], "code_commune_insee": "62747"}, "geometry": {"type": "Point", "coordinates": [2.56021109887, 50.6043469321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9368579b576f89ad950cef9875d79634567f5a3e", "fields": {"nom_de_la_commune": "ST LEONARD", "libell_d_acheminement": "ST LEONARD", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62755"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a265de27d07627c93c0502b08b5235179ce30f7", "fields": {"nom_de_la_commune": "STE MARIE KERQUE", "libell_d_acheminement": "STE MARIE KERQUE", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62756"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "494f62e49bae845877ec830af95e3ba24d80552b", "fields": {"nom_de_la_commune": "ST VENANT", "libell_d_acheminement": "ST VENANT", "code_postal": "62350", "coordonnees_gps": [50.6043469321, 2.56021109887], "code_commune_insee": "62770"}, "geometry": {"type": "Point", "coordinates": [2.56021109887, 50.6043469321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16b8f05b27dc8c330db272c3720e47a1065093a2", "fields": {"nom_de_la_commune": "SARTON", "libell_d_acheminement": "SARTON", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62779"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3229879746b31a61e00e98f6aee67f67f7a02b", "fields": {"nom_de_la_commune": "SENINGHEM", "libell_d_acheminement": "SENINGHEM", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62788"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcefcb8f28ce4919f2cb1a769dd9442083894a4c", "fields": {"nom_de_la_commune": "SIRACOURT", "libell_d_acheminement": "SIRACOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62797"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efa5a401744a909dfbbc08686c11c06d32f88c05", "fields": {"nom_de_la_commune": "SOMBRIN", "libell_d_acheminement": "SOMBRIN", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62798"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981498a7a6ee1253f922b3cbb4a6fc1bbec8dfd0", "fields": {"nom_de_la_commune": "LE SOUICH", "libell_d_acheminement": "LE SOUICH", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62802"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f6728e9472e0cfed3e7deb20cb3429729e72e02", "fields": {"nom_de_la_commune": "SURQUES", "libell_d_acheminement": "SURQUES", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62803"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155fe2acf13e0885abd5fd1ed2b53c1f274ab550", "fields": {"nom_de_la_commune": "TARDINGHEN", "libell_d_acheminement": "TARDINGHEN", "code_postal": "62179", "coordonnees_gps": [50.8769884551, 1.66495996056], "code_commune_insee": "62806"}, "geometry": {"type": "Point", "coordinates": [1.66495996056, 50.8769884551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361b4121bc9fce217f91ae22ab9f30746c3f3c55", "fields": {"nom_de_la_commune": "TERNAS", "libell_d_acheminement": "TERNAS", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62809"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e271e85081f2a736aabf22dab218a058fca9e4dc", "fields": {"nom_de_la_commune": "THIEVRES", "libell_d_acheminement": "THIEVRES", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62814"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999b943d5a7653e06bbeecd81c65887dc358ae8f", "fields": {"nom_de_la_commune": "TOLLENT", "libell_d_acheminement": "TOLLENT", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62822"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32afa22d0866c36fe9da12c31ec430f4c8736637", "fields": {"nom_de_la_commune": "VACQUERIE LE BOUCQ", "libell_d_acheminement": "VACQUERIE LE BOUCQ", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62833"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49ec6433577560656fb52d01a951737f0cf7fe21", "fields": {"nom_de_la_commune": "VENDIN LES BETHUNE", "libell_d_acheminement": "VENDIN LES BETHUNE", "code_postal": "62232", "coordonnees_gps": [50.5485643749, 2.61912647325], "code_commune_insee": "62841"}, "geometry": {"type": "Point", "coordinates": [2.61912647325, 50.5485643749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eef2a5282501cd7bcc40771290ae6306f36a96ca", "fields": {"nom_de_la_commune": "VERCHIN", "libell_d_acheminement": "VERCHIN", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62843"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ad6f4487f4b52ef4e75b415d55ee4e9d3dc57b0", "fields": {"nom_de_la_commune": "VERQUIN", "libell_d_acheminement": "VERQUIN", "code_postal": "62131", "coordonnees_gps": [50.4979995318, 2.63240823084], "code_commune_insee": "62848"}, "geometry": {"type": "Point", "coordinates": [2.63240823084, 50.4979995318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2630b8c17277a83617b83339873f1cb3508422e", "fields": {"nom_de_la_commune": "VILLERS L HOPITAL", "libell_d_acheminement": "VILLERS L HOPITAL", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62859"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57cd82b48f07222b90325f22d8d864fd2706547", "fields": {"nom_de_la_commune": "WAMIN", "libell_d_acheminement": "WAMIN", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62872"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62d0f57b272f735c3ecde072f514ca85f17b63fb", "fields": {"nom_de_la_commune": "WARDRECQUES", "libell_d_acheminement": "WARDRECQUES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62875"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c3b628f326384393f15e12f4a9b9efc7b54deca", "fields": {"nom_de_la_commune": "WARLINCOURT LES PAS", "libell_d_acheminement": "WARLINCOURT LES PAS", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62877"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a18e002aafd9cd74bbe76e4cf0a7c1aed9b66f1d", "fields": {"nom_de_la_commune": "WARLUZEL", "libell_d_acheminement": "WARLUZEL", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62879"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffdb1b71d3f01db6ebde06ddf90cd167009e5c9a", "fields": {"nom_de_la_commune": "WESTREHEM", "libell_d_acheminement": "WESTREHEM", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62885"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aecd95a6815479bc28c71ffae228ab5f1b7049d", "fields": {"nom_de_la_commune": "WICQUINGHEM", "libell_d_acheminement": "WICQUINGHEM", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62886"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a67dd303cb33baaae2fcd4edec1eadcc0e2059b3", "fields": {"nom_de_la_commune": "WIRWIGNES", "libell_d_acheminement": "WIRWIGNES", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62896"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f6e462d1a2dde74e3ed8c9417afca5252b16746", "fields": {"nom_de_la_commune": "WISMES", "libell_d_acheminement": "WISMES", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62897"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4648cf035e9296907aa13a2de91bb0c8d3f0ef9", "fields": {"nom_de_la_commune": "WISSANT", "libell_d_acheminement": "WISSANT", "code_postal": "62179", "coordonnees_gps": [50.8769884551, 1.66495996056], "code_commune_insee": "62899"}, "geometry": {"type": "Point", "coordinates": [1.66495996056, 50.8769884551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbcc6f0f131c1860978aaea6cb1ee4d7bf48d57c", "fields": {"code_postal": "62890", "code_commune_insee": "62904", "libell_d_acheminement": "ZOUAFQUES", "ligne_5": "LA RECOUSSE", "nom_de_la_commune": "ZOUAFQUES", "coordonnees_gps": [50.7978193475, 2.05396583461]}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1ffc11194ef060c25143100fe08b821a43a44b", "fields": {"nom_de_la_commune": "APCHAT", "libell_d_acheminement": "APCHAT", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63007"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9310ab760f67bf1a2f0967f306b64f74e1a3cd8", "fields": {"nom_de_la_commune": "AULNAT", "libell_d_acheminement": "AULNAT", "code_postal": "63510", "coordonnees_gps": [45.804716466, 3.18423558419], "code_commune_insee": "63019"}, "geometry": {"type": "Point", "coordinates": [3.18423558419, 45.804716466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9976ed10b776a1843e20b879ed20a2127e1b5ea", "fields": {"nom_de_la_commune": "BAGNOLS", "libell_d_acheminement": "BAGNOLS", "code_postal": "63810", "coordonnees_gps": [45.4876676748, 2.61850330437], "code_commune_insee": "63028"}, "geometry": {"type": "Point", "coordinates": [2.61850330437, 45.4876676748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7427b7f3f99203a1db6e63c57e8da9ad34fb43a", "fields": {"nom_de_la_commune": "BEAUMONT LES RANDAN", "libell_d_acheminement": "BEAUMONT LES RANDAN", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63033"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7389c11bb71d59652b41480716708f980bbf53d0", "fields": {"nom_de_la_commune": "BIOLLET", "libell_d_acheminement": "BIOLLET", "code_postal": "63640", "coordonnees_gps": [45.9806226406, 2.69554487333], "code_commune_insee": "63041"}, "geometry": {"type": "Point", "coordinates": [2.69554487333, 45.9806226406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fcd49f920f1ae7d488701dbd5ccf916acdef55e", "fields": {"nom_de_la_commune": "BORT L ETANG", "libell_d_acheminement": "BORT L ETANG", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63045"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b31c0d2d9adadfd3a6b6418c5604af0d43778bf", "fields": {"nom_de_la_commune": "BRIFFONS", "libell_d_acheminement": "BRIFFONS", "code_postal": "63820", "coordonnees_gps": [45.6766706035, 2.68432018586], "code_commune_insee": "63053"}, "geometry": {"type": "Point", "coordinates": [2.68432018586, 45.6766706035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1359e5f97a3bcc07d6a96eff4f3de510cefd5cf0", "fields": {"nom_de_la_commune": "BUSSEOL", "libell_d_acheminement": "BUSSEOL", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63059"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c145a29d9e5f6087085a0fa8a9419439e9befd92", "fields": {"nom_de_la_commune": "BUXIERES SOUS MONTAIGUT", "libell_d_acheminement": "BUXIERES SOUS MONTAIGUT", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63062"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fef27ce1109882d0ee924f317cd6dafae0b1711", "fields": {"nom_de_la_commune": "LA CELLETTE", "libell_d_acheminement": "LA CELLETTE", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63067"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658e4c2224f64547fdb98aa548cf24c91521aa94", "fields": {"nom_de_la_commune": "LE CENDRE", "libell_d_acheminement": "LE CENDRE", "code_postal": "63670", "coordonnees_gps": [45.7124444692, 3.15893935126], "code_commune_insee": "63069"}, "geometry": {"type": "Point", "coordinates": [3.15893935126, 45.7124444692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b6e87d950806491c543e701258079c726582c56", "fields": {"code_postal": "63122", "code_commune_insee": "63070", "libell_d_acheminement": "CEYRAT", "ligne_5": "BOISSEJOUR", "nom_de_la_commune": "CEYRAT", "coordonnees_gps": [45.7250562511, 3.00944108289]}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf6410e1874bc826c0df857bf1b4a56b5b6a635", "fields": {"nom_de_la_commune": "CHAMBON SUR LAC", "libell_d_acheminement": "CHAMBON SUR LAC", "code_postal": "63790", "coordonnees_gps": [45.562829077, 2.89483440684], "code_commune_insee": "63077"}, "geometry": {"type": "Point", "coordinates": [2.89483440684, 45.562829077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b65d2c8e69be544bd00b0ec1a665b21ba340fce", "fields": {"nom_de_la_commune": "CHAMPEIX", "libell_d_acheminement": "CHAMPEIX", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63080"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f739a8dc2fcbfe9db90fcb0a4cacaf05ea3efb5", "fields": {"nom_de_la_commune": "CHANAT LA MOUTEYRE", "libell_d_acheminement": "CHANAT LA MOUTEYRE", "code_postal": "63530", "coordonnees_gps": [45.855002413, 3.02081571111], "code_commune_insee": "63083"}, "geometry": {"type": "Point", "coordinates": [3.02081571111, 45.855002413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e88d5906e2459e19fd8e645361f152d5a17c8611", "fields": {"nom_de_la_commune": "CHAPDES BEAUFORT", "libell_d_acheminement": "CHAPDES BEAUFORT", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63085"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1716d6f3a68601281ccceea2ad1d57a29af094", "fields": {"nom_de_la_commune": "LA CHAPELLE MARCOUSSE", "libell_d_acheminement": "LA CHAPELLE MARCOUSSE", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63087"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e799231b28491e3b26396677f72f1c99fbb751", "fields": {"nom_de_la_commune": "CHAPPES", "libell_d_acheminement": "CHAPPES", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63089"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01bebc38ee19699fa38c7f40095aceb332714c2a", "fields": {"nom_de_la_commune": "CHAPTUZAT", "libell_d_acheminement": "CHAPTUZAT", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63090"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5e84832e1140a4b3a5630b9b1f97c2f703afc0b", "fields": {"nom_de_la_commune": "CHARENSAT", "libell_d_acheminement": "CHARENSAT", "code_postal": "63640", "coordonnees_gps": [45.9806226406, 2.69554487333], "code_commune_insee": "63094"}, "geometry": {"type": "Point", "coordinates": [2.69554487333, 45.9806226406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d9acd0e9419a27ef21da6ce781b6a053a24c11", "fields": {"nom_de_la_commune": "CHARNAT", "libell_d_acheminement": "CHARNAT", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63095"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01137a84aa297c047f9fd43b305ac775f9cc1be", "fields": {"nom_de_la_commune": "CHAS", "libell_d_acheminement": "CHAS", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63096"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ab86823457fa4bcb3f2ac5dfca065711dd68392", "fields": {"nom_de_la_commune": "CHASSAGNE", "libell_d_acheminement": "CHASSAGNE", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63097"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdc38473ac50d97180ff0b6a63b69f835a04dce7", "fields": {"nom_de_la_commune": "CHATEL GUYON", "libell_d_acheminement": "CHATEL GUYON", "code_postal": "63140", "coordonnees_gps": [45.9205002665, 3.06256995694], "code_commune_insee": "63103"}, "geometry": {"type": "Point", "coordinates": [3.06256995694, 45.9205002665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ba9feefcd043ea705d142330fcafea574ff97bf", "fields": {"code_postal": "63140", "code_commune_insee": "63103", "libell_d_acheminement": "CHATEL GUYON", "ligne_5": "ST HIPPOLYTE", "nom_de_la_commune": "CHATEL GUYON", "coordonnees_gps": [45.9205002665, 3.06256995694]}, "geometry": {"type": "Point", "coordinates": [3.06256995694, 45.9205002665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d81aa564da94b0b21d4fcfefb1723b88580226", "fields": {"nom_de_la_commune": "LA CHAULME", "libell_d_acheminement": "LA CHAULME", "code_postal": "63660", "coordonnees_gps": [45.5294414829, 3.9086743951], "code_commune_insee": "63104"}, "geometry": {"type": "Point", "coordinates": [3.9086743951, 45.5294414829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1b38818ba4c3af64223ce3432c6cf3be164e949", "fields": {"nom_de_la_commune": "CHIDRAC", "libell_d_acheminement": "CHIDRAC", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63109"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007bfc88879891696ca85a84a6f0826aaea6a426", "fields": {"nom_de_la_commune": "CLEMENSAT", "libell_d_acheminement": "CLEMENSAT", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63111"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645f7f8ec8e5d68dac1be2b40074554491905baf", "fields": {"nom_de_la_commune": "CLERMONT FERRAND", "libell_d_acheminement": "CLERMONT FERRAND", "code_postal": "63100", "coordonnees_gps": [45.7859081171, 3.1155334528], "code_commune_insee": "63113"}, "geometry": {"type": "Point", "coordinates": [3.1155334528, 45.7859081171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f54a9ba06b96f1a02df8c4392ce7ee6d49f2d7", "fields": {"nom_de_la_commune": "COURNOLS", "libell_d_acheminement": "COURNOLS", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63123"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d991cbc13ec632e3dfc893716df431e51ad38de9", "fields": {"nom_de_la_commune": "COURNON D AUVERGNE", "libell_d_acheminement": "COURNON D AUVERGNE", "code_postal": "63800", "coordonnees_gps": [45.7314255981, 3.21711000607], "code_commune_insee": "63124"}, "geometry": {"type": "Point", "coordinates": [3.21711000607, 45.7314255981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e11c0788651270b25d362dab8429fd42ead061b3", "fields": {"nom_de_la_commune": "LE CREST", "libell_d_acheminement": "LE CREST", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63126"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd99f5298e4a1c7bbd3e9c02711432f8b932b79f", "fields": {"nom_de_la_commune": "CROS", "libell_d_acheminement": "CROS", "code_postal": "63810", "coordonnees_gps": [45.4876676748, 2.61850330437], "code_commune_insee": "63129"}, "geometry": {"type": "Point", "coordinates": [2.61850330437, 45.4876676748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8f2ee0b654651f5b1edaefd119fe2ce672ca130", "fields": {"nom_de_la_commune": "LA CROUZILLE", "libell_d_acheminement": "LA CROUZILLE", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63130"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be1648d124e0a3899ba5de0c450c97546105c7b", "fields": {"nom_de_la_commune": "CULHAT", "libell_d_acheminement": "CULHAT", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63131"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee2c38eb0bff5573a4665b87a981483f468c6fe", "fields": {"nom_de_la_commune": "DORANGES", "libell_d_acheminement": "DORANGES", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63137"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5b0e66570ed78a9e7d7b7dfab788eb24579b03", "fields": {"nom_de_la_commune": "EGLISENEUVE D ENTRAIGUES", "libell_d_acheminement": "EGLISENEUVE D ENTRAIGUES", "code_postal": "63850", "coordonnees_gps": [45.4132189945, 2.81236528132], "code_commune_insee": "63144"}, "geometry": {"type": "Point", "coordinates": [2.81236528132, 45.4132189945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66dbbd09082c6792bcf1abe6418abc2683f110ec", "fields": {"nom_de_la_commune": "ENNEZAT", "libell_d_acheminement": "ENNEZAT", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63148"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add77859efe655d957523d4b8243b4466a19bebc", "fields": {"nom_de_la_commune": "ESPINASSE", "libell_d_acheminement": "ESPINASSE", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63152"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a34823eeddef3e1d193de1963af943bef728954", "fields": {"nom_de_la_commune": "ESPIRAT", "libell_d_acheminement": "ESPIRAT", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63154"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aee445740299a0b3ee247b0b57c7d7813d59c655", "fields": {"nom_de_la_commune": "ESTANDEUIL", "libell_d_acheminement": "ESTANDEUIL", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63155"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fbd8fc0f52e8f4f64516f3e2771c6d765d9e11c", "fields": {"nom_de_la_commune": "GIAT", "libell_d_acheminement": "GIAT", "code_postal": "63620", "coordonnees_gps": [45.8124173701, 2.47211906548], "code_commune_insee": "63165"}, "geometry": {"type": "Point", "coordinates": [2.47211906548, 45.8124173701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5487bebc19e570f4bcaf8e05e094fb67434695e", "fields": {"nom_de_la_commune": "GIMEAUX", "libell_d_acheminement": "GIMEAUX", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63167"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0142874e1a9bf67113cacb94f5395ef308fe68", "fields": {"nom_de_la_commune": "LAMONTGIE", "libell_d_acheminement": "LAMONTGIE", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63185"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab8ba8928c937408494f12d02ba02e2f19b369df", "fields": {"nom_de_la_commune": "LANDOGNE", "libell_d_acheminement": "LANDOGNE", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63186"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "815b81c3cd569ea0942b0d1d93a41dd20fb37646", "fields": {"nom_de_la_commune": "LEMPTY", "libell_d_acheminement": "LEMPTY", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63194"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "834da8015875f5ac388058ca56d8964aaf641387", "fields": {"nom_de_la_commune": "LISSEUIL", "libell_d_acheminement": "LISSEUIL", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63197"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1119ada415752303ec3cdd8c4dc96dae57a7f6ee", "fields": {"nom_de_la_commune": "LUSSAT", "libell_d_acheminement": "LUSSAT", "code_postal": "63360", "coordonnees_gps": [45.840831165, 3.18231829254], "code_commune_insee": "63200"}, "geometry": {"type": "Point", "coordinates": [3.18231829254, 45.840831165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1567f934aefe25afda7053ab9328dfd48fc2b13d", "fields": {"nom_de_la_commune": "MADRIAT", "libell_d_acheminement": "MADRIAT", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63202"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a38eef81ad10d81241ecf6b807173b3f1c5fae", "fields": {"nom_de_la_commune": "MARINGUES", "libell_d_acheminement": "MARINGUES", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63210"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dceb1f924e329cac7a127ca50a1111bb4525eb1", "fields": {"nom_de_la_commune": "MAZOIRES", "libell_d_acheminement": "MAZOIRES", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63220"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1fc83d82e5aac6a22186dd313a0d67e45e582fd", "fields": {"nom_de_la_commune": "MEZEL", "libell_d_acheminement": "MEZEL", "code_postal": "63115", "coordonnees_gps": [45.7491591602, 3.23995056994], "code_commune_insee": "63226"}, "geometry": {"type": "Point", "coordinates": [3.23995056994, 45.7491591602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a40b28679aaec783207eaf0eebb86ecc60810b3", "fields": {"nom_de_la_commune": "MIREMONT", "libell_d_acheminement": "MIREMONT", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63228"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4947c46260206b6e5a53c3280dc401cfb9d56f21", "fields": {"nom_de_la_commune": "MONT DORE", "libell_d_acheminement": "LE MONT DORE", "code_postal": "63240", "coordonnees_gps": [45.5755818256, 2.80980084479], "code_commune_insee": "63236"}, "geometry": {"type": "Point", "coordinates": [2.80980084479, 45.5755818256]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece114038dc2d279dc81b4820c88c35bb9214140", "fields": {"nom_de_la_commune": "MONTFERMY", "libell_d_acheminement": "MONTFERMY", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63238"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "630bcc5ce38de44c5edfe53c65fc00ac5703a2ce", "fields": {"nom_de_la_commune": "MONTPENSIER", "libell_d_acheminement": "MONTPENSIER", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63240"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2968edbff27c57899320acca9507ca4cf45059df", "fields": {"nom_de_la_commune": "MURAT LE QUAIRE", "libell_d_acheminement": "MURAT LE QUAIRE", "code_postal": "63150", "coordonnees_gps": [45.5912385571, 2.7549139086], "code_commune_insee": "63246"}, "geometry": {"type": "Point", "coordinates": [2.7549139086, 45.5912385571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce15f742a0110cb2bb1f60c445b0178b366b4e4", "fields": {"nom_de_la_commune": "NOALHAT", "libell_d_acheminement": "NOALHAT", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63253"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d60b043752336a0d95200ed56a0016a4f00afa4f", "fields": {"nom_de_la_commune": "NOHANENT", "libell_d_acheminement": "NOHANENT", "code_postal": "63830", "coordonnees_gps": [45.8036028369, 3.05439430506], "code_commune_insee": "63254"}, "geometry": {"type": "Point", "coordinates": [3.05439430506, 45.8036028369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11b575a02b8cf1d45610fb4dc2662cb63064e623", "fields": {"code_postal": "63340", "code_commune_insee": "63255", "libell_d_acheminement": "NONETTE ORSONNETTE", "ligne_5": "ORSONNETTE", "nom_de_la_commune": "NONETTE ORSONNETTE", "coordonnees_gps": [45.450400978, 3.19686495404]}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3870142bc180eb09692751930515509680c0ff3d", "fields": {"nom_de_la_commune": "OLBY", "libell_d_acheminement": "OLBY", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63257"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2879f4afd38a32e894612a6040124d58ba5188", "fields": {"nom_de_la_commune": "OLMET", "libell_d_acheminement": "OLMET", "code_postal": "63880", "coordonnees_gps": [45.7022203315, 3.68151290757], "code_commune_insee": "63260"}, "geometry": {"type": "Point", "coordinates": [3.68151290757, 45.7022203315]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba859d85e670f2296a05db2df0a547a022701610", "fields": {"nom_de_la_commune": "ORBEIL", "libell_d_acheminement": "ORBEIL", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63261"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e3c88dab5fac7bd83c7c6dcdf08bd023e94d427", "fields": {"nom_de_la_commune": "PARENTIGNAT", "libell_d_acheminement": "PARENTIGNAT", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63270"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d15248c9e54f5a94a7c2a15ab7f6c21723d8cd", "fields": {"nom_de_la_commune": "PERIGNAT LES SARLIEVE", "libell_d_acheminement": "PERIGNAT LES SARLIEVE", "code_postal": "63170", "coordonnees_gps": [45.7453592394, 3.13138248185], "code_commune_insee": "63272"}, "geometry": {"type": "Point", "coordinates": [3.13138248185, 45.7453592394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d1e50224198e3059e545572f373db1bd71b75cf", "fields": {"nom_de_la_commune": "PONTAUMUR", "libell_d_acheminement": "PONTAUMUR", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63283"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e8ca4fe6fcd5364481dad4309fb4b2dfd78d1a", "fields": {"nom_de_la_commune": "PONTGIBAUD", "libell_d_acheminement": "PONTGIBAUD", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63285"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92b1e672d8121c1fd68f8ef8c2dccb22ad9d17c1", "fields": {"nom_de_la_commune": "PUY GUILLAUME", "libell_d_acheminement": "PUY GUILLAUME", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63291"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e97426122b14086ecaf30068211ca45da371cbf", "fields": {"nom_de_la_commune": "QUEUILLE", "libell_d_acheminement": "QUEUILLE", "code_postal": "63780", "coordonnees_gps": [45.9494669995, 2.85840011362], "code_commune_insee": "63294"}, "geometry": {"type": "Point", "coordinates": [2.85840011362, 45.9494669995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ff9f1485fe443b3283d26978ec1b935cab9442", "fields": {"nom_de_la_commune": "PEYSSIES", "libell_d_acheminement": "PEYSSIES", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31416"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d0484b0b7e2fa57231688fa93a6c7c759739d7", "fields": {"nom_de_la_commune": "PINSAGUEL", "libell_d_acheminement": "PINSAGUEL", "code_postal": "31120", "coordonnees_gps": [43.5086807596, 1.39534123704], "code_commune_insee": "31420"}, "geometry": {"type": "Point", "coordinates": [1.39534123704, 43.5086807596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcaf8534eb4a19624e39b3dc54f1e21870d5357d", "fields": {"nom_de_la_commune": "PLAGNOLE", "libell_d_acheminement": "PLAGNOLE", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31423"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90fbb3dd211d6330efb0b5e5106f3b1a70ea2504", "fields": {"nom_de_la_commune": "POMPERTUZAT", "libell_d_acheminement": "POMPERTUZAT", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31429"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9011302230f945ec05ea1540a6fd863a68a292", "fields": {"nom_de_la_commune": "PORTET D ASPET", "libell_d_acheminement": "PORTET D ASPET", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31431"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21c18cce0bc87c47c4bf1b78b4ba59f3deb29ed3", "fields": {"nom_de_la_commune": "POUBEAU", "libell_d_acheminement": "POUBEAU", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31434"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "240821e83d6b7b2163fd19ed9aee6350e0aaf45a", "fields": {"nom_de_la_commune": "PRADERE LES BOURGUETS", "libell_d_acheminement": "PRADERE LES BOURGUETS", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31438"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab47881635a2ca361225c17075b1a21d7f844276", "fields": {"nom_de_la_commune": "REBIGUE", "libell_d_acheminement": "REBIGUE", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31448"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aada38f637f0de0155cce3464ba0bf39fe909f3", "fields": {"nom_de_la_commune": "RENNEVILLE", "libell_d_acheminement": "RENNEVILLE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31450"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9eec6b0716e1defd466f1e5551a38363a2354c", "fields": {"nom_de_la_commune": "SABONNERES", "libell_d_acheminement": "SABONNERES", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31464"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f80ce23c5b35568e2dcc6f26481a974380f61690", "fields": {"nom_de_la_commune": "STE FOY DE PEYROLIERES", "libell_d_acheminement": "STE FOY DE PEYROLIERES", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31481"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a78fcbdde0508ac0599a8ca24653899c1e332507", "fields": {"nom_de_la_commune": "ST JULIA", "libell_d_acheminement": "ST JULIA", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31491"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2baeb439cbe92fc64d004bcb3d9d18fab1436a88", "fields": {"nom_de_la_commune": "ST LARY BOUJEAN", "libell_d_acheminement": "ST LARY BOUJEAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31493"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d95fec1a5752f107b899dbd6519a2ec491319e30", "fields": {"nom_de_la_commune": "ST ORENS DE GAMEVILLE", "libell_d_acheminement": "ST ORENS DE GAMEVILLE", "code_postal": "31650", "coordonnees_gps": [43.5547223319, 1.54753565987], "code_commune_insee": "31506"}, "geometry": {"type": "Point", "coordinates": [1.54753565987, 43.5547223319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c848078eb32a4281f3109ea39313100cc686d7d", "fields": {"nom_de_la_commune": "ST PAUL D OUEIL", "libell_d_acheminement": "ST PAUL D OUEIL", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31508"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44067103482681c0a5d67710676192fbb87e64e", "fields": {"nom_de_la_commune": "ST ROME", "libell_d_acheminement": "ST ROME", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31514"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f36482c6b98a29d5303417a6a334c18eb1b61ea", "fields": {"nom_de_la_commune": "ST VINCENT", "libell_d_acheminement": "ST VINCENT", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31519"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d47cf83d0340ff6bf2536db9edcc08d1d0afcc5", "fields": {"nom_de_la_commune": "SALERM", "libell_d_acheminement": "SALERM", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31522"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d889d46763f136693a98c8c288a9d63a46cbe218", "fields": {"nom_de_la_commune": "SALIES DU SALAT", "libell_d_acheminement": "SALIES DU SALAT", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31523"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "736603a0afc73ee2b90dea65914cf5a916d93af4", "fields": {"nom_de_la_commune": "SAUBENS", "libell_d_acheminement": "SAUBENS", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31533"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4d4b53c881ed2b42c29f1e66a010690bd2e694", "fields": {"nom_de_la_commune": "SAVARTHES", "libell_d_acheminement": "SAVARTHES", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31537"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e06dc41cd916f8f3a47faefda1427dc33ed56b", "fields": {"nom_de_la_commune": "SEPX", "libell_d_acheminement": "SEPX", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31545"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e148c0abae87eb8cd323b2fdeaaecc0a7f2e7b14", "fields": {"nom_de_la_commune": "SEYRE", "libell_d_acheminement": "SEYRE", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31546"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad73bf9f99b1c5ff23938c904ec6cc30bab671b", "fields": {"nom_de_la_commune": "SIGNAC", "libell_d_acheminement": "SIGNAC", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31548"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b638c3371a62e1274b472dac6c80311f57d6eb8", "fields": {"nom_de_la_commune": "SODE", "libell_d_acheminement": "SODE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31549"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "730a9a7310b042292eda363aacbedaafd29dac74", "fields": {"nom_de_la_commune": "TERREBASSE", "libell_d_acheminement": "TERREBASSE", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31552"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2990e28ee995ec15119dab1bab6ff2ec4f3824d", "fields": {"nom_de_la_commune": "THIL", "libell_d_acheminement": "THIL", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31553"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8022a1a29ba8934b80c09d266c79b8cbcb26ba3", "fields": {"nom_de_la_commune": "VALLESVILLES", "libell_d_acheminement": "VALLESVILLES", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31567"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc084c0cccce5cb53d19c119a405997cdca5f1f9", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31568"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bccc0c24da28e51e0dd8e795d8c27d96def991ee", "fields": {"nom_de_la_commune": "VERNET", "libell_d_acheminement": "VERNET", "code_postal": "31810", "coordonnees_gps": [43.4392556161, 1.44590848032], "code_commune_insee": "31574"}, "geometry": {"type": "Point", "coordinates": [1.44590848032, 43.4392556161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c221a0023814594acbc85cc3babd858c702b4a80", "fields": {"nom_de_la_commune": "VIGNAUX", "libell_d_acheminement": "VIGNAUX", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31577"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9d10e74a0a86db7742b92640164e14e9fcd912", "fields": {"nom_de_la_commune": "VIGOULET AUZIL", "libell_d_acheminement": "VIGOULET AUZIL", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31578"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a0cdbf4d6341b4dd78f40659d3784e2e79b572", "fields": {"nom_de_la_commune": "VILLENOUVELLE", "libell_d_acheminement": "VILLENOUVELLE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31589"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "119b6a1a1c9ead751e81ccd7671b4c47a5ee7da6", "fields": {"nom_de_la_commune": "ANSAN", "libell_d_acheminement": "ANSAN", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32002"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a7fda9b8143fad82d876d9186bfeb185dceb436", "fields": {"nom_de_la_commune": "ARDIZAS", "libell_d_acheminement": "ARDIZAS", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32007"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9139fb5698bd24f5524186dde5e63dc5496a0de8", "fields": {"nom_de_la_commune": "ARMENTIEUX", "libell_d_acheminement": "ARMENTIEUX", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32008"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0effa0e99ba4c76edf34da916da1890e42fb800a", "fields": {"nom_de_la_commune": "ARMOUS ET CAU", "libell_d_acheminement": "ARMOUS ET CAU", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32009"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a350adbe54b184e80be9a6a7a3c1be097679fbb", "fields": {"nom_de_la_commune": "AUCH", "libell_d_acheminement": "AUCH", "code_postal": "32000", "coordonnees_gps": [43.6532557362, 0.574938612747], "code_commune_insee": "32013"}, "geometry": {"type": "Point", "coordinates": [0.574938612747, 43.6532557362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6772bb7b988389c042b1a3604208078789e19dfc", "fields": {"nom_de_la_commune": "AUGNAX", "libell_d_acheminement": "AUGNAX", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32014"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0ac20c6ddb4512b538ce71e55cf4f3b861b3995", "fields": {"nom_de_la_commune": "AVERON BERGELLE", "libell_d_acheminement": "AVERON BERGELLE", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32022"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b99a3c45277faf873a378b7a38a8a1ad96834fff", "fields": {"nom_de_la_commune": "AYGUETINTE", "libell_d_acheminement": "AYGUETINTE", "code_postal": "32410", "coordonnees_gps": [43.8145538611, 0.434864041407], "code_commune_insee": "32024"}, "geometry": {"type": "Point", "coordinates": [0.434864041407, 43.8145538611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98fae4df40574cfc865b75fc7422323dfb60f512", "fields": {"nom_de_la_commune": "BAJONNETTE", "libell_d_acheminement": "BAJONNETTE", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32026"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b46e384ef12ed7bc277f25e43e5d4792d787ac2e", "fields": {"nom_de_la_commune": "BASCOUS", "libell_d_acheminement": "BASCOUS", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32031"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcec3e7b982171a60becb4cb6ee3571732e9929a", "fields": {"nom_de_la_commune": "BAZIAN", "libell_d_acheminement": "BAZIAN", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32033"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1cf6cb9961f08af238d0d00a61b032388b4d675", "fields": {"nom_de_la_commune": "BEAUMARCHES", "libell_d_acheminement": "BEAUMARCHES", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32036"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bedc8fe8df21d01f480bbc564421b8da57c3f43c", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32043"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab4c9cd1193c68ec90e3290a2a321a40aacc822a", "fields": {"nom_de_la_commune": "BERNEDE", "libell_d_acheminement": "BERNEDE", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32046"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d782cde802fbf7564d69595f3f5822e3628705bf", "fields": {"nom_de_la_commune": "BETPLAN", "libell_d_acheminement": "BETPLAN", "code_postal": "32730", "coordonnees_gps": [43.4054676887, 0.198171265768], "code_commune_insee": "32050"}, "geometry": {"type": "Point", "coordinates": [0.198171265768, 43.4054676887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc77d6d26098774cf30eb14c742a090ede91b80c", "fields": {"nom_de_la_commune": "BEZOLLES", "libell_d_acheminement": "BEZOLLES", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32052"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97e2ace3412d213b047ea9fd8a3c53cada466889", "fields": {"nom_de_la_commune": "BEZUES BAJON", "libell_d_acheminement": "BEZUES BAJON", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32053"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fcd0780239b0e50576e6567c64c0eb8c172325a", "fields": {"nom_de_la_commune": "BLOUSSON SERIAN", "libell_d_acheminement": "BLOUSSON SERIAN", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32058"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd0fe713c4b1287371158c4d655418c3587b68e9", "fields": {"nom_de_la_commune": "BOULAUR", "libell_d_acheminement": "BOULAUR", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32061"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27f3364cc8e336e817cd629231b6d27baf5eb7a4", "fields": {"nom_de_la_commune": "LE BROUILH MONBERT", "libell_d_acheminement": "LE BROUILH MONBERT", "code_postal": "32350", "coordonnees_gps": [43.6571309769, 0.430675404963], "code_commune_insee": "32065"}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe846b0b4d5f2b1331e4329b7cd1b3c5df041dd6", "fields": {"nom_de_la_commune": "BRUGNENS", "libell_d_acheminement": "BRUGNENS", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32066"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f6c75927f94da8ed427b0e87c99034fedf3412", "fields": {"nom_de_la_commune": "CANNET", "libell_d_acheminement": "CANNET", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32074"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275433c793c6b964ddec0e50f4c289cfcd9e7e20", "fields": {"nom_de_la_commune": "CASSAIGNE", "libell_d_acheminement": "CASSAIGNE", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32075"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7b16d29c4034ab821547af2df601811efbe0276", "fields": {"nom_de_la_commune": "CASTELNAU D ARBIEU", "libell_d_acheminement": "CASTELNAU D ARBIEU", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32078"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b4c865de76a510563445f59029082282556b834", "fields": {"code_postal": "32250", "code_commune_insee": "32079", "libell_d_acheminement": "CASTELNAU D AUZAN LABARRERE", "ligne_5": "LABARRERE", "nom_de_la_commune": "CASTELNAU D AUZAN LABARRERE", "coordonnees_gps": [43.956623436, 0.171871761576]}, "geometry": {"type": "Point", "coordinates": [0.171871761576, 43.956623436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ccb8cac64b8cc6a61053cb01e925446ea1c94f2", "fields": {"nom_de_la_commune": "CASTELNAU SUR L AUVIGNON", "libell_d_acheminement": "CASTELNAU SUR L AUVIGNON", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32080"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ee8401354ee3ecdc4af7519f71342e0aca32e04", "fields": {"nom_de_la_commune": "CASTET ARROUY", "libell_d_acheminement": "CASTET ARROUY", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32085"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d396ac6aa6254c7d9fc1a2623856247e24f084c9", "fields": {"nom_de_la_commune": "CASTILLON DEBATS", "libell_d_acheminement": "CASTILLON DEBATS", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32088"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca56e7e2ef5601b2756317039be299d79702cda7", "fields": {"nom_de_la_commune": "CATONVIELLE", "libell_d_acheminement": "CATONVIELLE", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32092"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ed9469921ff4a42715fbc6737df242bfd061a1", "fields": {"nom_de_la_commune": "CAUSSENS", "libell_d_acheminement": "CAUSSENS", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32095"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2484228500fbbe1b553df2077cfc97d02b74a5bb", "fields": {"nom_de_la_commune": "CAZAUX D ANGLES", "libell_d_acheminement": "CAZAUX D ANGLES", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32097"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a953ccde96d7ed74e76c8c1d4d5b3444faeaa8f", "fields": {"nom_de_la_commune": "CAZAUX SAVES", "libell_d_acheminement": "CAZAUX SAVES", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32098"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fb1e3ea702ade719112d59b2767fafbe6b12e6", "fields": {"nom_de_la_commune": "CEZAN", "libell_d_acheminement": "CEZAN", "code_postal": "32410", "coordonnees_gps": [43.8145538611, 0.434864041407], "code_commune_insee": "32102"}, "geometry": {"type": "Point", "coordinates": [0.434864041407, 43.8145538611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7093ae3f950f292f89f9acbe8414a499973e0411", "fields": {"nom_de_la_commune": "CORNEILLAN", "libell_d_acheminement": "CORNEILLAN", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32108"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19eda877d811709e76c7edd2f2623ddd0d45a9fe", "fields": {"nom_de_la_commune": "CRAVENCERES", "libell_d_acheminement": "CRAVENCERES", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32113"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "623cf84c69d5ddd2f1aed1110f5370bccbb4fc40", "fields": {"nom_de_la_commune": "DEMU", "libell_d_acheminement": "DEMU", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32115"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6c21c2f81507dd907a7ddefc7accdfbd3c76f21", "fields": {"nom_de_la_commune": "ENDOUFIELLE", "libell_d_acheminement": "ENDOUFIELLE", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32121"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a340bc10311cb5ffa3ee898bfb6c22404c6d72b6", "fields": {"nom_de_la_commune": "ESTANG", "libell_d_acheminement": "ESTANG", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32127"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3709b13f5b59dca19af1a63f3f1d2a1ceca72c", "fields": {"nom_de_la_commune": "FLEURANCE", "libell_d_acheminement": "FLEURANCE", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32132"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0947a3d04a43505c6b18a817b78acad9b31732f8", "fields": {"nom_de_la_commune": "GALIAX", "libell_d_acheminement": "GALIAX", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32136"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "461f1a9b991880ea1df3223a775d2822a4b2715e", "fields": {"nom_de_la_commune": "IZOTGES", "libell_d_acheminement": "IZOTGES", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32161"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c048babfbcb9da276df42a50059f16eff83e2571", "fields": {"nom_de_la_commune": "JEGUN", "libell_d_acheminement": "JEGUN", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32162"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "728393478d0e2705a80f3c9c03609ef05fe7e349", "fields": {"nom_de_la_commune": "LAGARDE", "libell_d_acheminement": "LAGARDE FIMARCON", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32176"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a329891868c32134720296e9c3f38ab1d04ef32", "fields": {"nom_de_la_commune": "LAHITTE", "libell_d_acheminement": "LAHITTE", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32183"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13645c65dfeb69e7f89b3c300b608120ce74ea7", "fields": {"nom_de_la_commune": "YQUELON", "libell_d_acheminement": "YQUELON", "code_postal": "50400", "coordonnees_gps": [48.8338992843, -1.53304864714], "code_commune_insee": "50647"}, "geometry": {"type": "Point", "coordinates": [-1.53304864714, 48.8338992843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0525f67c9031801f22d480634e13d6357c78e38", "fields": {"nom_de_la_commune": "AMBRIERES", "libell_d_acheminement": "AMBRIERES", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51008"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a78e2b86913af6204f5fe5761af765ec96157c0", "fields": {"nom_de_la_commune": "ANTHENAY", "libell_d_acheminement": "ANTHENAY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51012"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d3317af77f36e201979075693cdbcc7344179f", "fields": {"nom_de_la_commune": "ATHIS", "libell_d_acheminement": "ATHIS", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51018"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abc272d252de1c737bd81d8d385642613375af11", "fields": {"nom_de_la_commune": "AULNAY L AITRE", "libell_d_acheminement": "AULNAY L AITRE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51022"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ebea3f56d0c0bba2bbe072cd4ffb487a09c868f", "fields": {"nom_de_la_commune": "AUMENANCOURT", "libell_d_acheminement": "AUMENANCOURT", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51025"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "565d20025c1c4c7780f932f6d27d12a7e4675c78", "fields": {"nom_de_la_commune": "AVIZE", "libell_d_acheminement": "AVIZE", "code_postal": "51190", "coordonnees_gps": [48.9639815903, 4.02338180898], "code_commune_insee": "51029"}, "geometry": {"type": "Point", "coordinates": [4.02338180898, 48.9639815903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b1b7944d119c31d7187cf2056fcbd984320575", "fields": {"nom_de_la_commune": "AY CHAMPAGNE", "libell_d_acheminement": "AY CHAMPAGNE", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51030"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef38ae3a5998e8b2e4fa9ea4f643b1bd93a5c37d", "fields": {"nom_de_la_commune": "BANNES", "libell_d_acheminement": "BANNES", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51035"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bffdeb4cee1e9f656ba606095a204c4ad1ac4aff", "fields": {"nom_de_la_commune": "BARBONNE FAYEL", "libell_d_acheminement": "BARBONNE FAYEL", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51036"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b8ce54e7b24bc59c305fdf040971bf0aa0cf96", "fields": {"nom_de_la_commune": "BETHENIVILLE", "libell_d_acheminement": "BETHENIVILLE", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51054"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90ddf655c0c13bff35222a8d2e5d14eaf4a75d9", "fields": {"nom_de_la_commune": "BLAISE SOUS ARZILLIERES", "libell_d_acheminement": "BLAISE SOUS ARZILLIERES", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51066"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7deb0112e2439fbda61a382af76a22b8f6aea329", "fields": {"nom_de_la_commune": "BLIGNY", "libell_d_acheminement": "BLIGNY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51069"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc04cc058ff5bd63dae7bb2ba75539574b738d9", "fields": {"nom_de_la_commune": "BOURGOGNE", "libell_d_acheminement": "BOURGOGNE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51075"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afed39c15259abbdaab096b1e40b00293d9d7eda", "fields": {"nom_de_la_commune": "BOUY", "libell_d_acheminement": "BOUY", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51078"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a841a9a38dea9e4af78d4d0cd41b306bfdad4480", "fields": {"nom_de_la_commune": "BRANDONVILLERS", "libell_d_acheminement": "BRANDONVILLERS", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51080"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "466193024ab294ab24fd7a13246b2297c5c8baa5", "fields": {"nom_de_la_commune": "BRAUX STE COHIERE", "libell_d_acheminement": "BRAUX STE COHIERE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51082"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298e511d1db8324faf85631d96cc81e8d3306fd3", "fields": {"nom_de_la_commune": "BREUIL", "libell_d_acheminement": "BREUIL", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51086"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a49b3843a3ac7746eb8067070c87a8c5defd300", "fields": {"nom_de_la_commune": "BROYES", "libell_d_acheminement": "BROYES", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51092"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df950fc444673af62e3a36da9f44647385fb8332", "fields": {"nom_de_la_commune": "LA CAURE", "libell_d_acheminement": "LA CAURE", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51100"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4035b592964c59719a533d3cd274b7141ba3386c", "fields": {"nom_de_la_commune": "CERNAY LES REIMS", "libell_d_acheminement": "CERNAY LES REIMS", "code_postal": "51420", "coordonnees_gps": [49.2697568482, 4.13175123605], "code_commune_insee": "51105"}, "geometry": {"type": "Point", "coordinates": [4.13175123605, 49.2697568482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a4b93f3a1c555438b30479d3bf049b8782b273d", "fields": {"nom_de_la_commune": "CHAINTRIX BIERGES", "libell_d_acheminement": "CHAINTRIX BIERGES", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51107"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b10f19969b669c06d8f6b1cec94b5da1a9b0dc", "fields": {"nom_de_la_commune": "CHALTRAIT", "libell_d_acheminement": "CHALTRAIT", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51110"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f6b0227a24e491fd9629a9d9c8904828ce98a0d", "fields": {"nom_de_la_commune": "BAZOUGERS", "libell_d_acheminement": "BAZOUGERS", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53025"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc13ce8779128b53607b5643c9c6acc5b4da900", "fields": {"nom_de_la_commune": "BEAUMONT PIED DE BOEUF", "libell_d_acheminement": "BEAUMONT PIED DE BOEUF", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53027"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de096ce183c4184810ee839efbfc742fcc31bca8", "fields": {"nom_de_la_commune": "BELGEARD", "libell_d_acheminement": "BELGEARD", "code_postal": "53440", "coordonnees_gps": [48.2988991204, -0.511946929707], "code_commune_insee": "53028"}, "geometry": {"type": "Point", "coordinates": [-0.511946929707, 48.2988991204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7f8e4b2732029b9ca2c581c709f79cd53b6d56", "fields": {"nom_de_la_commune": "BREE", "libell_d_acheminement": "BREE", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53043"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2fe1bb995de10fd59569c6dc44e1b5e6b97709", "fields": {"nom_de_la_commune": "LA BRULATTE", "libell_d_acheminement": "LA BRULATTE", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53045"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "279205b88d1898ddadfdec77979fc3dde415e836", "fields": {"nom_de_la_commune": "LE BURET", "libell_d_acheminement": "LE BURET", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53046"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "257d994ae9b7c6ed85ef6e1fd647edeb3ea2044e", "fields": {"nom_de_la_commune": "CHAILLAND", "libell_d_acheminement": "CHAILLAND", "code_postal": "53420", "coordonnees_gps": [48.2329805228, -0.867786035333], "code_commune_insee": "53048"}, "geometry": {"type": "Point", "coordinates": [-0.867786035333, 48.2329805228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc312cd62fa88bd57f0f94a4b67ba8a9d72fb085", "fields": {"nom_de_la_commune": "CHANTRIGNE", "libell_d_acheminement": "CHANTRIGNE", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53055"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58a861b72d9f8e2aca5573770997eec82cb20c13", "fields": {"nom_de_la_commune": "LA CHAPELLE ANTHENAISE", "libell_d_acheminement": "LA CHAPELLE ANTHENAISE", "code_postal": "53950", "coordonnees_gps": [48.1285774332, -0.685956019561], "code_commune_insee": "53056"}, "geometry": {"type": "Point", "coordinates": [-0.685956019561, 48.1285774332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ce26fea138d68e097eabfc96c31ef6f01ce15b0", "fields": {"nom_de_la_commune": "LA CHAPELLE AU RIBOUL", "libell_d_acheminement": "LA CHAPELLE AU RIBOUL", "code_postal": "53440", "coordonnees_gps": [48.2988991204, -0.511946929707], "code_commune_insee": "53057"}, "geometry": {"type": "Point", "coordinates": [-0.511946929707, 48.2988991204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0042f0391d4c45bf1053f2bf7adb4e5e6e022994", "fields": {"nom_de_la_commune": "CHATRES LA FORET", "libell_d_acheminement": "CHATRES LA FORET", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53065"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2ad52a84b72f646ece0a0c438da1abaa86c000", "fields": {"nom_de_la_commune": "COSSE EN CHAMPAGNE", "libell_d_acheminement": "COSSE EN CHAMPAGNE", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53076"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d42be399e43f303c90df48618cd9b26a8ba6d60d", "fields": {"nom_de_la_commune": "COURBEVEILLE", "libell_d_acheminement": "COURBEVEILLE", "code_postal": "53230", "coordonnees_gps": [47.9490046036, -0.924040792242], "code_commune_insee": "53082"}, "geometry": {"type": "Point", "coordinates": [-0.924040792242, 47.9490046036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b78e7cd2b8b8b2bc0ec09d64a6c87672a3288f", "fields": {"nom_de_la_commune": "CRAON", "libell_d_acheminement": "CRAON", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53084"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e295606a10abc86a5d8f8204a3d256a39daa720d", "fields": {"nom_de_la_commune": "CUILLE", "libell_d_acheminement": "CUILLE", "code_postal": "53540", "coordonnees_gps": [47.9577685856, -1.09475844584], "code_commune_insee": "53088"}, "geometry": {"type": "Point", "coordinates": [-1.09475844584, 47.9577685856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a8fc7a55182abb95b03d5858ce880633909f72a", "fields": {"nom_de_la_commune": "DESERTINES", "libell_d_acheminement": "DESERTINES", "code_postal": "53190", "coordonnees_gps": [48.4738805383, -0.958356062845], "code_commune_insee": "53091"}, "geometry": {"type": "Point", "coordinates": [-0.958356062845, 48.4738805383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6a58759cb7a67a09ae735195324ddfa96418ce", "fields": {"nom_de_la_commune": "EVRON", "libell_d_acheminement": "EVRON", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53097"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0504c53acd93349b245954daf6e2941362a7a4b", "fields": {"nom_de_la_commune": "GASTINES", "libell_d_acheminement": "GASTINES", "code_postal": "53540", "coordonnees_gps": [47.9577685856, -1.09475844584], "code_commune_insee": "53102"}, "geometry": {"type": "Point", "coordinates": [-1.09475844584, 47.9577685856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b46d96229d7b8812f99bbadfd31d87d5454953", "fields": {"nom_de_la_commune": "GRAZAY", "libell_d_acheminement": "GRAZAY", "code_postal": "53440", "coordonnees_gps": [48.2988991204, -0.511946929707], "code_commune_insee": "53109"}, "geometry": {"type": "Point", "coordinates": [-0.511946929707, 48.2988991204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "013d5ed2c5a5cbc011841c1493a71163292c0811", "fields": {"nom_de_la_commune": "LE HORPS", "libell_d_acheminement": "LE HORPS", "code_postal": "53640", "coordonnees_gps": [48.3702796098, -0.466991822845], "code_commune_insee": "53116"}, "geometry": {"type": "Point", "coordinates": [-0.466991822845, 48.3702796098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41ccff75c4ee721b8fbd54c19d601719a7bd0e24", "fields": {"nom_de_la_commune": "LANDIVY", "libell_d_acheminement": "LANDIVY", "code_postal": "53190", "coordonnees_gps": [48.4738805383, -0.958356062845], "code_commune_insee": "53125"}, "geometry": {"type": "Point", "coordinates": [-0.958356062845, 48.4738805383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fbec53bae3ee23111f551bc91855d60738b1a05", "fields": {"nom_de_la_commune": "LASSAY LES CHATEAUX", "libell_d_acheminement": "LASSAY LES CHATEAUX", "code_postal": "53110", "coordonnees_gps": [48.4617357482, -0.486776188303], "code_commune_insee": "53127"}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b94bf273c3df28aa5ccacb590ca59c1574ab3a0f", "fields": {"code_postal": "53110", "code_commune_insee": "53127", "libell_d_acheminement": "LASSAY LES CHATEAUX", "ligne_5": "NIORT LA FONTAINE", "nom_de_la_commune": "LASSAY LES CHATEAUX", "coordonnees_gps": [48.4617357482, -0.486776188303]}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1808d8151c2ae09a31986b38911fac46e6d326", "fields": {"nom_de_la_commune": "LAUBRIERES", "libell_d_acheminement": "LAUBRIERES", "code_postal": "53540", "coordonnees_gps": [47.9577685856, -1.09475844584], "code_commune_insee": "53128"}, "geometry": {"type": "Point", "coordinates": [-1.09475844584, 47.9577685856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da567f312d1a805755954fb883edd5838bec3b0", "fields": {"nom_de_la_commune": "LAVAL", "libell_d_acheminement": "LAVAL", "code_postal": "53000", "coordonnees_gps": [48.061207848, -0.766068526202], "code_commune_insee": "53130"}, "geometry": {"type": "Point", "coordinates": [-0.766068526202, 48.061207848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce4ab52ef1613e39ac318540f2908855e392495", "fields": {"nom_de_la_commune": "LIGNIERES ORGERES", "libell_d_acheminement": "LIGNIERES ORGERES", "code_postal": "53140", "coordonnees_gps": [48.4797003216, -0.222461490352], "code_commune_insee": "53133"}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49a3abf27264918b6cfed73ca60a9c6e5587b1e", "fields": {"nom_de_la_commune": "LOUPFOUGERES", "libell_d_acheminement": "LOUPFOUGERES", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53139"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a22946a43ba87f48571353629465dae089188e", "fields": {"nom_de_la_commune": "MAISONCELLES DU MAINE", "libell_d_acheminement": "MAISONCELLES DU MAINE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53143"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d535068ed273123db1e344f4c4cfad979eb3c9bd", "fields": {"nom_de_la_commune": "MARCILLE LA VILLE", "libell_d_acheminement": "MARCILLE LA VILLE", "code_postal": "53440", "coordonnees_gps": [48.2988991204, -0.511946929707], "code_commune_insee": "53144"}, "geometry": {"type": "Point", "coordinates": [-0.511946929707, 48.2988991204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17feeb5f05b6c67a19453b3368dc84b760040235", "fields": {"nom_de_la_commune": "MAYENNE", "libell_d_acheminement": "MAYENNE", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53147"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66ae800d08fdb38fadc0fbfe1aa1ebc92e5a7191", "fields": {"nom_de_la_commune": "MENIL", "libell_d_acheminement": "MENIL", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53150"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "916317c3d1c622140a89fb0370e6783f64dbd3bf", "fields": {"nom_de_la_commune": "MERAL", "libell_d_acheminement": "MERAL", "code_postal": "53230", "coordonnees_gps": [47.9490046036, -0.924040792242], "code_commune_insee": "53151"}, "geometry": {"type": "Point", "coordinates": [-0.924040792242, 47.9490046036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d019c38f12bc3aa070e76ba600b962f6fe6028cf", "fields": {"nom_de_la_commune": "MONTIGNE LE BRILLANT", "libell_d_acheminement": "MONTIGNE LE BRILLANT", "code_postal": "53970", "coordonnees_gps": [48.0004120893, -0.787519584296], "code_commune_insee": "53157"}, "geometry": {"type": "Point", "coordinates": [-0.787519584296, 48.0004120893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56799ae336dc054a8a00feddd185704e0fcf4307", "fields": {"nom_de_la_commune": "MONTJEAN", "libell_d_acheminement": "MONTJEAN", "code_postal": "53320", "coordonnees_gps": [48.0269054563, -0.962440957136], "code_commune_insee": "53158"}, "geometry": {"type": "Point", "coordinates": [-0.962440957136, 48.0269054563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "162fa6a8505966f0ec1c81e4f2a063a8912b7ec6", "fields": {"nom_de_la_commune": "MONTREUIL POULAY", "libell_d_acheminement": "MONTREUIL POULAY", "code_postal": "53640", "coordonnees_gps": [48.3702796098, -0.466991822845], "code_commune_insee": "53160"}, "geometry": {"type": "Point", "coordinates": [-0.466991822845, 48.3702796098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ab38dfa5f520ae0255db80b65a1302b2e55262", "fields": {"code_postal": "53640", "code_commune_insee": "53160", "libell_d_acheminement": "MONTREUIL POULAY", "ligne_5": "POULAY", "nom_de_la_commune": "MONTREUIL POULAY", "coordonnees_gps": [48.3702796098, -0.466991822845]}, "geometry": {"type": "Point", "coordinates": [-0.466991822845, 48.3702796098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e2cf0bcacd1d9f0c5c0c7e5d9adb2dffd5f6868", "fields": {"nom_de_la_commune": "NEAU", "libell_d_acheminement": "NEAU", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53163"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "758508b98f5c5f2799d4fd1acb2324dd7329cd5a", "fields": {"nom_de_la_commune": "NUILLE SUR VICOIN", "libell_d_acheminement": "NUILLE SUR VICOIN", "code_postal": "53970", "coordonnees_gps": [48.0004120893, -0.787519584296], "code_commune_insee": "53168"}, "geometry": {"type": "Point", "coordinates": [-0.787519584296, 48.0004120893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25ae8a066918920a70f068e173fc287330542aa5", "fields": {"nom_de_la_commune": "OISSEAU", "libell_d_acheminement": "OISSEAU", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53170"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07bcccd324d55714053aecd4b67db71072f02e95", "fields": {"nom_de_la_commune": "LA PALLU", "libell_d_acheminement": "LA PALLU", "code_postal": "53140", "coordonnees_gps": [48.4797003216, -0.222461490352], "code_commune_insee": "53173"}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db85045c4a5dbceed6d7af3432d4b98b8afb3d60", "fields": {"code_postal": "53140", "code_commune_insee": "53185", "libell_d_acheminement": "PRE EN PAIL ST SAMSON", "ligne_5": "ST SAMSON", "nom_de_la_commune": "PRE EN PAIL ST SAMSON", "coordonnees_gps": [48.4797003216, -0.222461490352]}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7506fb2342cce41c7a40b807b1a1af76b793b7b5", "fields": {"nom_de_la_commune": "RENNES EN GRENOUILLES", "libell_d_acheminement": "RENNES EN GRENOUILLES", "code_postal": "53110", "coordonnees_gps": [48.4617357482, -0.486776188303], "code_commune_insee": "53189"}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c15e42b14896e513283570d4ee447b3f03a5f1f4", "fields": {"nom_de_la_commune": "ST AUBIN DU DESERT", "libell_d_acheminement": "ST AUBIN DU DESERT", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53198"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0328f928ad9c418b9ad0392ce9784b8a37cc18ce", "fields": {"nom_de_la_commune": "ST BAUDELLE", "libell_d_acheminement": "ST BAUDELLE", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53200"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33cd621c76febd76c3c7534e8d87b5b57f5fd9bc", "fields": {"nom_de_la_commune": "ST DENIS DE GASTINES", "libell_d_acheminement": "ST DENIS DE GASTINES", "code_postal": "53500", "coordonnees_gps": [48.3059363855, -0.916419053315], "code_commune_insee": "53211"}, "geometry": {"type": "Point", "coordinates": [-0.916419053315, 48.3059363855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85d4b49733d081244db9d06f99978a3053be627f", "fields": {"nom_de_la_commune": "ST DENIS DU MAINE", "libell_d_acheminement": "ST DENIS DU MAINE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53212"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9c6b8121dcd25f624087bfb3128046113237f7", "fields": {"nom_de_la_commune": "ST ERBLON", "libell_d_acheminement": "ST ERBLON", "code_postal": "53390", "coordonnees_gps": [47.8296503455, -1.17079905697], "code_commune_insee": "53214"}, "geometry": {"type": "Point", "coordinates": [-1.17079905697, 47.8296503455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fdd5c3dca63bc4dd379052be0b57508cdb9341b", "fields": {"nom_de_la_commune": "ST GERMAIN LE FOUILLOUX", "libell_d_acheminement": "ST GERMAIN LE FOUILLOUX", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53224"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90d3287b0ade29ec92eb70c3d7aae103f13c6e51", "fields": {"nom_de_la_commune": "ST HILAIRE DU MAINE", "libell_d_acheminement": "ST HILAIRE DU MAINE", "code_postal": "53380", "coordonnees_gps": [48.2253517545, -1.00061376372], "code_commune_insee": "53226"}, "geometry": {"type": "Point", "coordinates": [-1.00061376372, 48.2253517545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69aca9715d780d4ede779b3c36f9b2dd26c984a", "fields": {"nom_de_la_commune": "ST JEAN SUR ERVE", "libell_d_acheminement": "ST JEAN SUR ERVE", "code_postal": "53270", "coordonnees_gps": [48.066547004, -0.33227388574], "code_commune_insee": "53228"}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36376f880b8690ba3a0c7cdeba486ef40fe3f7f6", "fields": {"nom_de_la_commune": "STE MARIE DU BOIS", "libell_d_acheminement": "STE MARIE DU BOIS", "code_postal": "53110", "coordonnees_gps": [48.4617357482, -0.486776188303], "code_commune_insee": "53235"}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b78065b248be99b7e1af917b056d6f51536355eb", "fields": {"nom_de_la_commune": "ST MARS DU DESERT", "libell_d_acheminement": "ST MARS DU DESERT", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53236"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf7a8f51bc161968ca8e56bb548fccc683d41de0", "fields": {"nom_de_la_commune": "ST MARTIN DU LIMET", "libell_d_acheminement": "ST MARTIN DU LIMET", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53240"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49ed270d9b6bd2bea5f345f42f1f309048fe2091", "fields": {"nom_de_la_commune": "ST PIERRE DES NIDS", "libell_d_acheminement": "ST PIERRE DES NIDS", "code_postal": "53370", "coordonnees_gps": [48.4038350742, -0.121705571791], "code_commune_insee": "53246"}, "geometry": {"type": "Point", "coordinates": [-0.121705571791, 48.4038350742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90428d84aa35acc3dcd71a479d0a7b1ea8d129a0", "fields": {"nom_de_la_commune": "ST SATURNIN DU LIMET", "libell_d_acheminement": "ST SATURNIN DU LIMET", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53253"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bf1a32ddfff17230a07df86dc18ed3c59b65387", "fields": {"nom_de_la_commune": "LA SELLE CRAONNAISE", "libell_d_acheminement": "LA SELLE CRAONNAISE", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53258"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a26f2e56d064cff27490efb6d66fa312eeb21a", "fields": {"nom_de_la_commune": "SOUCE", "libell_d_acheminement": "SOUCE", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53261"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5862c9bb5dd91666e18682df35ab7f694ef4d2c", "fields": {"nom_de_la_commune": "SOULGE SUR OUETTE", "libell_d_acheminement": "SOULGE SUR OUETTE", "code_postal": "53210", "coordonnees_gps": [48.0752567481, -0.609038039774], "code_commune_insee": "53262"}, "geometry": {"type": "Point", "coordinates": [-0.609038039774, 48.0752567481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8416077732499b5212f8128465fa70618891bfa", "fields": {"code_postal": "53210", "code_commune_insee": "53262", "libell_d_acheminement": "SOULGE SUR OUETTE", "ligne_5": "NUILLE SUR OUETTE", "nom_de_la_commune": "SOULGE SUR OUETTE", "coordonnees_gps": [48.0752567481, -0.609038039774]}, "geometry": {"type": "Point", "coordinates": [-0.609038039774, 48.0752567481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f2d92e171e0ce8f9696935b8aaa5dafe9641c2", "fields": {"nom_de_la_commune": "TRANS", "libell_d_acheminement": "TRANS", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53266"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9978149d41ea752abe2ad9a8b148c8f81e0e165c", "fields": {"nom_de_la_commune": "VILLAINES LA JUHEL", "libell_d_acheminement": "VILLAINES LA JUHEL", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53271"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5977759c4246c7c63ccef3ad5e3309156c59f94c", "fields": {"nom_de_la_commune": "VOUTRE", "libell_d_acheminement": "VOUTRE", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53276"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b920eae2bf3fe70e3d4127778477ff1bc684bd24", "fields": {"nom_de_la_commune": "ABONCOURT", "libell_d_acheminement": "ABONCOURT", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54003"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41520572e26905929cadf3fb242650e9c75337d7", "fields": {"nom_de_la_commune": "ALLAIN", "libell_d_acheminement": "ALLAIN", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54008"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "462ed65a3587967c041f19dd706937e6784850b0", "fields": {"nom_de_la_commune": "ARRACOURT", "libell_d_acheminement": "ARRACOURT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54023"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0b8a45e4610cd3d9ceb21064110ff38cbf4771", "fields": {"nom_de_la_commune": "ARRAYE ET HAN", "libell_d_acheminement": "ARRAYE ET HAN", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54024"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c1f5c87643253124d834fac1f83f6ed56d179a", "fields": {"nom_de_la_commune": "AUBOUE", "libell_d_acheminement": "AUBOUE", "code_postal": "54580", "coordonnees_gps": [49.1903187118, 5.97291024326], "code_commune_insee": "54028"}, "geometry": {"type": "Point", "coordinates": [5.97291024326, 49.1903187118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ec4fc85fadf366099545053f0c042fa0be150fe", "fields": {"nom_de_la_commune": "AUTREY", "libell_d_acheminement": "AUTREY", "code_postal": "54160", "coordonnees_gps": [48.5525165802, 6.13358335741], "code_commune_insee": "54032"}, "geometry": {"type": "Point", "coordinates": [6.13358335741, 48.5525165802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3080326d84642f9319af76d08957ac0e0d1103ef", "fields": {"nom_de_la_commune": "AVILLERS", "libell_d_acheminement": "AVILLERS", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54033"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82743be13c1be5556f21302af62b8e9c0a870e20", "fields": {"nom_de_la_commune": "BADONVILLER", "libell_d_acheminement": "BADONVILLER", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54040"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e94148b37c455a0d15d5056888f64baa7022a90b", "fields": {"nom_de_la_commune": "BAGNEUX", "libell_d_acheminement": "BAGNEUX", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54041"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d960df7064509061363088f67b578e311c135d", "fields": {"nom_de_la_commune": "BARBAS", "libell_d_acheminement": "BARBAS", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54044"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "705d001d1b1297c68445805c7599599256908ba3", "fields": {"nom_de_la_commune": "LES BAROCHES", "libell_d_acheminement": "LES BAROCHES", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54048"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c1c9c5310802f9b31d6c38f4df35808b1754d8", "fields": {"nom_de_la_commune": "BAYONVILLE SUR MAD", "libell_d_acheminement": "BAYONVILLE SUR MAD", "code_postal": "54890", "coordonnees_gps": [49.0257742751, 5.94673598373], "code_commune_insee": "54055"}, "geometry": {"type": "Point", "coordinates": [5.94673598373, 49.0257742751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dca2365cd3a890c132a6da18216627da1dd60a1", "fields": {"nom_de_la_commune": "BELLEVILLE", "libell_d_acheminement": "BELLEVILLE", "code_postal": "54940", "coordonnees_gps": [48.8142398061, 6.08946411374], "code_commune_insee": "54060"}, "geometry": {"type": "Point", "coordinates": [6.08946411374, 48.8142398061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c685760c404c22b3cd7c43750fce512e2f8df119", "fields": {"nom_de_la_commune": "BENAMENIL", "libell_d_acheminement": "BENAMENIL", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54061"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e0640c4880c4e552702516b984c3d3d3c58bbff", "fields": {"nom_de_la_commune": "BERTRAMBOIS", "libell_d_acheminement": "BERTRAMBOIS", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54064"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "066093b9a2bcbececb225dc4846a3a61246db9cd", "fields": {"nom_de_la_commune": "BERTRICHAMPS", "libell_d_acheminement": "BERTRICHAMPS", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54065"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b95e5b62d173062f3e0e4059f4ed98abc34e97", "fields": {"nom_de_la_commune": "BEY SUR SEILLE", "libell_d_acheminement": "BEY SUR SEILLE", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54070"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98dd981273ba9b54b644456028089f29fc5b990c", "fields": {"nom_de_la_commune": "BIENVILLE LA PETITE", "libell_d_acheminement": "BIENVILLE LA PETITE", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54074"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d34a2ba266778a13d4f20c85b1dc1f90f03c64a1", "fields": {"nom_de_la_commune": "BLAMONT", "libell_d_acheminement": "BLAMONT", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54077"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957d625bab73f3608d1fb1afde571eee97d71e05", "fields": {"nom_de_la_commune": "BLEMEREY", "libell_d_acheminement": "BLEMEREY", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54078"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac0dab6f383b491199dc2bed52c18cf75b8f177c", "fields": {"nom_de_la_commune": "BOUILLONVILLE", "libell_d_acheminement": "BOUILLONVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54087"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f50efd011550b654cc3abfec33061231a7a0495", "fields": {"nom_de_la_commune": "BRATTE", "libell_d_acheminement": "BRATTE", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54095"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad81f9046ccecd46d5a83b4b76d4172656207ea", "fields": {"nom_de_la_commune": "BREMENIL", "libell_d_acheminement": "BREMENIL", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54097"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c26972c258f6762c7f29530d7482271f5f2af4", "fields": {"nom_de_la_commune": "BREMONCOURT", "libell_d_acheminement": "BREMONCOURT", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54098"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cc549703d69988a0b76ee707ebc17dff1cb558", "fields": {"nom_de_la_commune": "BRIEY", "libell_d_acheminement": "BRIEY", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54099"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e873baa1ff0658480a02981918f999b4d5ecdff", "fields": {"nom_de_la_commune": "BRIN SUR SEILLE", "libell_d_acheminement": "BRIN SUR SEILLE", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54100"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece8487307a026963707b7fa2ad9745a78dceec2", "fields": {"nom_de_la_commune": "BROUVILLE", "libell_d_acheminement": "BROUVILLE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54101"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e4b39505af8292d3f39c752bc1988a332c2a04", "fields": {"nom_de_la_commune": "BURES", "libell_d_acheminement": "BURES", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54106"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad21814e63db1e4d83d9c5a720e61270024ae55", "fields": {"nom_de_la_commune": "BURIVILLE", "libell_d_acheminement": "BURIVILLE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54107"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f899cfa6cffa6d78f741bcd4d1ef15b41acbf0", "fields": {"nom_de_la_commune": "CEINTREY", "libell_d_acheminement": "CEINTREY", "code_postal": "54134", "coordonnees_gps": [48.5293245976, 6.1775765715], "code_commune_insee": "54109"}, "geometry": {"type": "Point", "coordinates": [6.1775765715, 48.5293245976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbdc18b9703b136eaf32790f2d41de4a7dc1312", "fields": {"nom_de_la_commune": "CHANTEHEUX", "libell_d_acheminement": "CHANTEHEUX", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54116"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95bbb401d82723066c64f047720bb46dd653495c", "fields": {"nom_de_la_commune": "CHARMES LA COTE", "libell_d_acheminement": "CHARMES LA COTE", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54120"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6ddb39689fbb25f4f86c0ebbb0e37fad950f90", "fields": {"nom_de_la_commune": "CIREY SUR VEZOUZE", "libell_d_acheminement": "CIREY SUR VEZOUZE", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54129"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85cedd0673ff4653a49cd5c07b1d22efb915bc5", "fields": {"nom_de_la_commune": "COLOMBEY LES BELLES", "libell_d_acheminement": "COLOMBEY LES BELLES", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54135"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7536d054a11030e27424f93ef97de6216a8ec7aa", "fields": {"nom_de_la_commune": "COYVILLER", "libell_d_acheminement": "COYVILLER", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54141"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cffa9a34c4f3d6f665cc3c7ad01d90237e7025ae", "fields": {"nom_de_la_commune": "CREPEY", "libell_d_acheminement": "CREPEY", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54143"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebcfa955bac4e40197248f8e10e5673d98950be0", "fields": {"nom_de_la_commune": "CRION", "libell_d_acheminement": "CRION", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54147"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c6decfaa079723ef869b9120f8407d0752fa025", "fields": {"nom_de_la_commune": "CUTRY", "libell_d_acheminement": "CUTRY", "code_postal": "54720", "coordonnees_gps": [49.4760856618, 5.75537597471], "code_commune_insee": "54151"}, "geometry": {"type": "Point", "coordinates": [5.75537597471, 49.4760856618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d59a8bdc6064493fd4d7a22fd55e6a6ea4b0ca4", "fields": {"nom_de_la_commune": "SAULX LES CHARTREUX", "libell_d_acheminement": "SAULX LES CHARTREUX", "code_postal": "91160", "coordonnees_gps": [48.6879154099, 2.28155441875], "code_commune_insee": "91587"}, "geometry": {"type": "Point", "coordinates": [2.28155441875, 48.6879154099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b78cb8651756653ab4000e816e3eaddd869c07b6", "fields": {"nom_de_la_commune": "SAVIGNY SUR ORGE", "libell_d_acheminement": "SAVIGNY SUR ORGE", "code_postal": "91600", "coordonnees_gps": [48.6839573506, 2.34917991911], "code_commune_insee": "91589"}, "geometry": {"type": "Point", "coordinates": [2.34917991911, 48.6839573506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470cd3decbc983425aef4d90cb0d77fe0a3a1cfd", "fields": {"nom_de_la_commune": "VALPUISEAUX", "libell_d_acheminement": "VALPUISEAUX", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91629"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11b688efdc62be1b90db72019bdfcb8ced48f243", "fields": {"nom_de_la_commune": "VAUGRIGNEUSE", "libell_d_acheminement": "VAUGRIGNEUSE", "code_postal": "91640", "coordonnees_gps": [48.6224133727, 2.14125590005], "code_commune_insee": "91634"}, "geometry": {"type": "Point", "coordinates": [2.14125590005, 48.6224133727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9834f70e1f50472df5b27062bccfe3459d4a990", "fields": {"nom_de_la_commune": "VAUHALLAN", "libell_d_acheminement": "VAUHALLAN", "code_postal": "91430", "coordonnees_gps": [48.7339593054, 2.21260184658], "code_commune_insee": "91635"}, "geometry": {"type": "Point", "coordinates": [2.21260184658, 48.7339593054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d0c5f8c95343985ce91ea231c5bb0a7e664992f", "fields": {"nom_de_la_commune": "BOIS COLOMBES", "libell_d_acheminement": "BOIS COLOMBES", "code_postal": "92270", "coordonnees_gps": [48.9156526901, 2.26727430129], "code_commune_insee": "92009"}, "geometry": {"type": "Point", "coordinates": [2.26727430129, 48.9156526901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f70f99d1128f7d53507b33de7328be8ac60cade", "fields": {"nom_de_la_commune": "CHATENAY MALABRY", "libell_d_acheminement": "CHATENAY MALABRY", "code_postal": "92290", "coordonnees_gps": [48.7683241133, 2.26382535631], "code_commune_insee": "92019"}, "geometry": {"type": "Point", "coordinates": [2.26382535631, 48.7683241133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1f2aa406d445a5e28af41f999b7f2330164fbea", "fields": {"nom_de_la_commune": "CHATILLON", "libell_d_acheminement": "CHATILLON", "code_postal": "92320", "coordonnees_gps": [48.8030902828, 2.2864012174], "code_commune_insee": "92020"}, "geometry": {"type": "Point", "coordinates": [2.2864012174, 48.8030902828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66555e8a14bc91112f4317a5cce64d4d6d47fe71", "fields": {"code_postal": "92140", "code_commune_insee": "92023", "libell_d_acheminement": "CLAMART", "ligne_5": "LE PETIT CLAMART", "nom_de_la_commune": "CLAMART", "coordonnees_gps": [48.7967176819, 2.25385173895]}, "geometry": {"type": "Point", "coordinates": [2.25385173895, 48.7967176819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00ae222bb8c7ed72134a3d7ed41ca593eeefcb7", "fields": {"nom_de_la_commune": "COURBEVOIE", "libell_d_acheminement": "COURBEVOIE", "code_postal": "92400", "coordonnees_gps": [48.8983884255, 2.25522376319], "code_commune_insee": "92026"}, "geometry": {"type": "Point", "coordinates": [2.25522376319, 48.8983884255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "259cca308c09eccee4d4ddd0245805bd68b8407d", "fields": {"nom_de_la_commune": "FONTENAY AUX ROSES", "libell_d_acheminement": "FONTENAY AUX ROSES", "code_postal": "92260", "coordonnees_gps": [48.7896302863, 2.28707483751], "code_commune_insee": "92032"}, "geometry": {"type": "Point", "coordinates": [2.28707483751, 48.7896302863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4dfc29aaef169cee10ca53022b45a7e944a7035", "fields": {"nom_de_la_commune": "LEVALLOIS PERRET", "libell_d_acheminement": "LEVALLOIS PERRET", "code_postal": "92300", "coordonnees_gps": [48.8951336953, 2.28682447096], "code_commune_insee": "92044"}, "geometry": {"type": "Point", "coordinates": [2.28682447096, 48.8951336953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a4b9da6f83a9a5d8d0a3cb332742f245f2a75f", "fields": {"nom_de_la_commune": "PANTIN", "libell_d_acheminement": "PANTIN", "code_postal": "93500", "coordonnees_gps": [48.8984397601, 2.40883983631], "code_commune_insee": "93055"}, "geometry": {"type": "Point", "coordinates": [2.40883983631, 48.8984397601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d952110bbbe727c322949cde676c71da9db21b9", "fields": {"nom_de_la_commune": "LES PAVILLONS SOUS BOIS", "libell_d_acheminement": "LES PAVILLONS SOUS BOIS", "code_postal": "93320", "coordonnees_gps": [48.9077599592, 2.50325789732], "code_commune_insee": "93057"}, "geometry": {"type": "Point", "coordinates": [2.50325789732, 48.9077599592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba84aac25f5b15db3c4a58ad034e6fb56480b28", "fields": {"nom_de_la_commune": "LE PRE ST GERVAIS", "libell_d_acheminement": "LE PRE ST GERVAIS", "code_postal": "93310", "coordonnees_gps": [48.8849181509, 2.40614464546], "code_commune_insee": "93061"}, "geometry": {"type": "Point", "coordinates": [2.40614464546, 48.8849181509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c38ca26a125654780737b1e664565c242776190", "fields": {"nom_de_la_commune": "ST DENIS", "libell_d_acheminement": "ST DENIS", "code_postal": "93200", "coordonnees_gps": [48.9296140653, 2.35920270384], "code_commune_insee": "93066"}, "geometry": {"type": "Point", "coordinates": [2.35920270384, 48.9296140653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c7d5fc0ecbc70cc28a97ddad699362e6db582d6", "fields": {"nom_de_la_commune": "VILLEPINTE", "libell_d_acheminement": "VILLEPINTE", "code_postal": "93420", "coordonnees_gps": [48.9594041186, 2.53661738011], "code_commune_insee": "93078"}, "geometry": {"type": "Point", "coordinates": [2.53661738011, 48.9594041186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5811aa1661b48a563cc3f27e843a546d4925b1bc", "fields": {"nom_de_la_commune": "VILLETANEUSE", "libell_d_acheminement": "VILLETANEUSE", "code_postal": "93430", "coordonnees_gps": [48.9567205255, 2.34508496615], "code_commune_insee": "93079"}, "geometry": {"type": "Point", "coordinates": [2.34508496615, 48.9567205255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff2c9ee18deb1c7dc1ed463925a1cf57ff8a3eb4", "fields": {"nom_de_la_commune": "BONNEUIL SUR MARNE", "libell_d_acheminement": "BONNEUIL SUR MARNE", "code_postal": "94380", "coordonnees_gps": [48.7736342302, 2.48825429698], "code_commune_insee": "94011"}, "geometry": {"type": "Point", "coordinates": [2.48825429698, 48.7736342302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1fd21444c30c57e88193fa7b72a1c35f24c360", "fields": {"nom_de_la_commune": "CHENNEVIERES SUR MARNE", "libell_d_acheminement": "CHENNEVIERES SUR MARNE", "code_postal": "94430", "coordonnees_gps": [48.7980000026, 2.54187225559], "code_commune_insee": "94019"}, "geometry": {"type": "Point", "coordinates": [2.54187225559, 48.7980000026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8088c202626b17e3c02396773db3cf298ccf4e", "fields": {"nom_de_la_commune": "CHEVILLY LARUE", "libell_d_acheminement": "CHEVILLY LARUE", "code_postal": "94550", "coordonnees_gps": [48.7667771551, 2.35266828544], "code_commune_insee": "94021"}, "geometry": {"type": "Point", "coordinates": [2.35266828544, 48.7667771551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf1a27ea99b81623bc43339ef7482b77bf2b54a4", "fields": {"nom_de_la_commune": "FONTENAY SOUS BOIS", "libell_d_acheminement": "FONTENAY SOUS BOIS", "code_postal": "94120", "coordonnees_gps": [48.8510089992, 2.47454061171], "code_commune_insee": "94033"}, "geometry": {"type": "Point", "coordinates": [2.47454061171, 48.8510089992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7959736bd363ce9e37f1a9263528d88329a6c992", "fields": {"nom_de_la_commune": "MAROLLES EN BRIE", "libell_d_acheminement": "MAROLLES EN BRIE", "code_postal": "94440", "coordonnees_gps": [48.7320439942, 2.55920831223], "code_commune_insee": "94048"}, "geometry": {"type": "Point", "coordinates": [2.55920831223, 48.7320439942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc13716ad0fe7c1bad969f889aeeea89d6f3b514", "fields": {"nom_de_la_commune": "ORLY", "libell_d_acheminement": "ORLY", "code_postal": "94310", "coordonnees_gps": [48.7428085691, 2.39544879484], "code_commune_insee": "94054"}, "geometry": {"type": "Point", "coordinates": [2.39544879484, 48.7428085691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92e2e89bbb174f8571fa54ae8a1995afe8647aaf", "fields": {"nom_de_la_commune": "SANTENY", "libell_d_acheminement": "SANTENY", "code_postal": "94440", "coordonnees_gps": [48.7320439942, 2.55920831223], "code_commune_insee": "94070"}, "geometry": {"type": "Point", "coordinates": [2.55920831223, 48.7320439942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adcf5b1947f25e9a5373b3cae7c7020c55c5fc39", "fields": {"nom_de_la_commune": "SUCY EN BRIE", "libell_d_acheminement": "SUCY EN BRIE", "code_postal": "94370", "coordonnees_gps": [48.7657010886, 2.53346938213], "code_commune_insee": "94071"}, "geometry": {"type": "Point", "coordinates": [2.53346938213, 48.7657010886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ffd726ce0bdc948e8fae621748d36b2c876a5a", "fields": {"code_postal": "94460", "code_commune_insee": "94074", "libell_d_acheminement": "VALENTON", "ligne_5": "VAL POMPADOUR", "nom_de_la_commune": "VALENTON", "coordonnees_gps": [48.7530822759, 2.46124565223]}, "geometry": {"type": "Point", "coordinates": [2.46124565223, 48.7530822759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe1824187d430f555265b91008d8c19fee058c74", "fields": {"nom_de_la_commune": "VILLENEUVE LE ROI", "libell_d_acheminement": "VILLENEUVE LE ROI", "code_postal": "94290", "coordonnees_gps": [48.7321875577, 2.41059838063], "code_commune_insee": "94077"}, "geometry": {"type": "Point", "coordinates": [2.41059838063, 48.7321875577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "255dac8020c3fbc6911eec54a68e750787dfeeb7", "fields": {"nom_de_la_commune": "VINCENNES", "libell_d_acheminement": "VINCENNES", "code_postal": "94300", "coordonnees_gps": [48.8472921582, 2.43775823084], "code_commune_insee": "94080"}, "geometry": {"type": "Point", "coordinates": [2.43775823084, 48.8472921582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2c252d1f0099fc96476806d9d46071a6a6af1ad", "fields": {"nom_de_la_commune": "VITRY SUR SEINE", "libell_d_acheminement": "VITRY SUR SEINE", "code_postal": "94400", "coordonnees_gps": [48.7885568869, 2.39425728394], "code_commune_insee": "94081"}, "geometry": {"type": "Point", "coordinates": [2.39425728394, 48.7885568869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6373137428bbca60db501292670f35441c781a01", "fields": {"code_postal": "95420", "code_commune_insee": "95011", "libell_d_acheminement": "AMBLEVILLE", "ligne_5": "LE VAUMION", "nom_de_la_commune": "AMBLEVILLE", "coordonnees_gps": [49.1378230096, 1.7800854585]}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db26f0871deb7c1692b6311af8bb906f0d204631", "fields": {"nom_de_la_commune": "BELLEFONTAINE", "libell_d_acheminement": "BELLEFONTAINE", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95055"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2b64a5e0395c64f96995baae9fffa8a32799962", "fields": {"nom_de_la_commune": "BUHY", "libell_d_acheminement": "BUHY", "code_postal": "95770", "coordonnees_gps": [49.1959926831, 1.69814198153], "code_commune_insee": "95119"}, "geometry": {"type": "Point", "coordinates": [1.69814198153, 49.1959926831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "316b3083c9ce1204a632b8e84afde0593e1d342d", "fields": {"nom_de_la_commune": "CERGY", "libell_d_acheminement": "CERGY", "code_postal": "95000", "coordonnees_gps": [49.0378977963, 2.06061895699], "code_commune_insee": "95127"}, "geometry": {"type": "Point", "coordinates": [2.06061895699, 49.0378977963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9aa276ba3e0d1866ef3fee99e237de1c4451b7", "fields": {"nom_de_la_commune": "LA CHAPELLE EN VEXIN", "libell_d_acheminement": "LA CHAPELLE EN VEXIN", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95139"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6f2902d8a35d06cf55ad5b5330e19567b819bbb", "fields": {"nom_de_la_commune": "CHARS", "libell_d_acheminement": "CHARS", "code_postal": "95750", "coordonnees_gps": [49.1561369779, 1.91918704594], "code_commune_insee": "95142"}, "geometry": {"type": "Point", "coordinates": [1.91918704594, 49.1561369779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba67fc9577734b160b1128400d7cdd54f74a704", "fields": {"nom_de_la_commune": "CHENNEVIERES LES LOUVRES", "libell_d_acheminement": "CHENNEVIERES LES LOUVRES", "code_postal": "95380", "coordonnees_gps": [49.0485279227, 2.5187416869], "code_commune_insee": "95154"}, "geometry": {"type": "Point", "coordinates": [2.5187416869, 49.0485279227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2f13792983e24e472a3d8716aff346ccdd002e", "fields": {"nom_de_la_commune": "ECOUEN", "libell_d_acheminement": "ECOUEN", "code_postal": "95440", "coordonnees_gps": [49.0257365877, 2.38491446746], "code_commune_insee": "95205"}, "geometry": {"type": "Point", "coordinates": [2.38491446746, 49.0257365877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7001ebaf31415c441c2e79928dba3324f025976e", "fields": {"nom_de_la_commune": "ERMONT", "libell_d_acheminement": "ERMONT", "code_postal": "95120", "coordonnees_gps": [48.9883041761, 2.25629551186], "code_commune_insee": "95219"}, "geometry": {"type": "Point", "coordinates": [2.25629551186, 48.9883041761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4906947a7681c52848d89c31c683fd5958fadb21", "fields": {"nom_de_la_commune": "FOSSES", "libell_d_acheminement": "FOSSES", "code_postal": "95470", "coordonnees_gps": [49.0842919677, 2.54827429077], "code_commune_insee": "95250"}, "geometry": {"type": "Point", "coordinates": [2.54827429077, 49.0842919677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e958137885748556399af8bcbd8fb4c49f2599", "fields": {"nom_de_la_commune": "FREPILLON", "libell_d_acheminement": "FREPILLON", "code_postal": "95740", "coordonnees_gps": [49.0503556269, 2.20602188929], "code_commune_insee": "95256"}, "geometry": {"type": "Point", "coordinates": [2.20602188929, 49.0503556269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e02aba0b8a989a7ac64e296e68b961f352bd68bd", "fields": {"nom_de_la_commune": "GENAINVILLE", "libell_d_acheminement": "GENAINVILLE", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95270"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9efa3f23fdf6fb881c7735405e7a6ddd9bfa3cb2", "fields": {"nom_de_la_commune": "GENICOURT", "libell_d_acheminement": "GENICOURT", "code_postal": "95650", "coordonnees_gps": [49.0831465949, 2.02625716292], "code_commune_insee": "95271"}, "geometry": {"type": "Point", "coordinates": [2.02625716292, 49.0831465949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "697309cec84cd6d9f835b32ff835bb8567c06a03", "fields": {"nom_de_la_commune": "GROSLAY", "libell_d_acheminement": "GROSLAY", "code_postal": "95410", "coordonnees_gps": [48.9851592656, 2.35040435023], "code_commune_insee": "95288"}, "geometry": {"type": "Point", "coordinates": [2.35040435023, 48.9851592656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3454e1da52d75897c75d3951e6c1c4ae9bd72f72", "fields": {"nom_de_la_commune": "HAUTE ISLE", "libell_d_acheminement": "HAUTE ISLE", "code_postal": "95780", "coordonnees_gps": [49.0867183905, 1.64440422629], "code_commune_insee": "95301"}, "geometry": {"type": "Point", "coordinates": [1.64440422629, 49.0867183905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a6016c40bf13e7a98fe68448400f9a78c37666f", "fields": {"code_postal": "95220", "code_commune_insee": "95306", "libell_d_acheminement": "HERBLAY", "ligne_5": "LA PATTE D OIE", "nom_de_la_commune": "HERBLAY", "coordonnees_gps": [49.0082603783, 2.15434312371]}, "geometry": {"type": "Point", "coordinates": [2.15434312371, 49.0082603783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c505601310649ff94f8087df39fef42243df2e", "fields": {"nom_de_la_commune": "L ISLE ADAM", "libell_d_acheminement": "L ISLE ADAM", "code_postal": "95290", "coordonnees_gps": [49.1073866175, 2.23418827484], "code_commune_insee": "95313"}, "geometry": {"type": "Point", "coordinates": [2.23418827484, 49.1073866175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69755c10aa24f738fd77b703147119c08a871da0", "fields": {"nom_de_la_commune": "JOUY LE MOUTIER", "libell_d_acheminement": "JOUY LE MOUTIER", "code_postal": "95280", "coordonnees_gps": [49.0112311928, 2.03342738029], "code_commune_insee": "95323"}, "geometry": {"type": "Point", "coordinates": [2.03342738029, 49.0112311928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e961496e94432225b7738110eaa4e6d0af16acf", "fields": {"nom_de_la_commune": "LONGUESSE", "libell_d_acheminement": "LONGUESSE", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95348"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a329eca971419b37e8ae9fe571e1a0573cc4d66a", "fields": {"nom_de_la_commune": "LOUVRES", "libell_d_acheminement": "LOUVRES", "code_postal": "95380", "coordonnees_gps": [49.0485279227, 2.5187416869], "code_commune_insee": "95351"}, "geometry": {"type": "Point", "coordinates": [2.5187416869, 49.0485279227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61fd5c7d1aaf5ee9c3c94e99bc25b5db22c55ab8", "fields": {"nom_de_la_commune": "MAUDETOUR EN VEXIN", "libell_d_acheminement": "MAUDETOUR EN VEXIN", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95379"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7971e74f80ecee84a4b5b1b123fb99a67fd92c91", "fields": {"nom_de_la_commune": "MERY SUR OISE", "libell_d_acheminement": "MERY SUR OISE", "code_postal": "95540", "coordonnees_gps": [49.0543404407, 2.17434065342], "code_commune_insee": "95394"}, "geometry": {"type": "Point", "coordinates": [2.17434065342, 49.0543404407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca9383bc066fc92477a49996b4f6cdeed373a1a", "fields": {"nom_de_la_commune": "PONTOISE", "libell_d_acheminement": "PONTOISE", "code_postal": "95000", "coordonnees_gps": [49.0378977963, 2.06061895699], "code_commune_insee": "95500"}, "geometry": {"type": "Point", "coordinates": [2.06061895699, 49.0378977963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88356632120da31594bfe3c910e22c417e467a7f", "fields": {"nom_de_la_commune": "PRESLES", "libell_d_acheminement": "PRESLES", "code_postal": "95590", "coordonnees_gps": [49.1078677101, 2.28470413018], "code_commune_insee": "95504"}, "geometry": {"type": "Point", "coordinates": [2.28470413018, 49.1078677101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad55f46d21487196f371dcfe1fd3a9652731937", "fields": {"nom_de_la_commune": "RONQUEROLLES", "libell_d_acheminement": "RONQUEROLLES", "code_postal": "95340", "coordonnees_gps": [49.1610028463, 2.26428490236], "code_commune_insee": "95529"}, "geometry": {"type": "Point", "coordinates": [2.26428490236, 49.1610028463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9113e949f691757c26220f01fa7d9ec4891b2be", "fields": {"nom_de_la_commune": "ST LEU LA FORET", "libell_d_acheminement": "ST LEU LA FORET", "code_postal": "95320", "coordonnees_gps": [49.0185563436, 2.24663214737], "code_commune_insee": "95563"}, "geometry": {"type": "Point", "coordinates": [2.24663214737, 49.0185563436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b17b4db788ce818816224bd8d42f0ceb524c8c1", "fields": {"nom_de_la_commune": "ST PRIX", "libell_d_acheminement": "ST PRIX", "code_postal": "95390", "coordonnees_gps": [49.0210602804, 2.2702548944], "code_commune_insee": "95574"}, "geometry": {"type": "Point", "coordinates": [2.2702548944, 49.0210602804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "704f1788064fe50aa6f7bef4a6fd1ac651283e69", "fields": {"nom_de_la_commune": "SANNOIS", "libell_d_acheminement": "SANNOIS", "code_postal": "95110", "coordonnees_gps": [48.9719496259, 2.25343831149], "code_commune_insee": "95582"}, "geometry": {"type": "Point", "coordinates": [2.25343831149, 48.9719496259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b372087b0333aa37e76699b80d16d989d2541af6", "fields": {"nom_de_la_commune": "SANTEUIL", "libell_d_acheminement": "SANTEUIL", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95584"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8821b97f2d6fac61d0105e9bea7116968a9aa713", "fields": {"nom_de_la_commune": "VAUDHERLAND", "libell_d_acheminement": "VAUDHERLAND", "code_postal": "95500", "coordonnees_gps": [48.9856270002, 2.45534121324], "code_commune_insee": "95633"}, "geometry": {"type": "Point", "coordinates": [2.45534121324, 48.9856270002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf447c0212187c7feb583cabf5fe400da958b40e", "fields": {"nom_de_la_commune": "VEMARS", "libell_d_acheminement": "VEMARS", "code_postal": "95470", "coordonnees_gps": [49.0842919677, 2.54827429077], "code_commune_insee": "95641"}, "geometry": {"type": "Point", "coordinates": [2.54827429077, 49.0842919677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a66653b650afb87dfa1a8986322ecc808f967ac6", "fields": {"nom_de_la_commune": "WY DIT JOLI VILLAGE", "libell_d_acheminement": "WY DIT JOLI VILLAGE", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95690"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3797ca15b39c88e26f6803c47318e07e23cf0caa", "fields": {"nom_de_la_commune": "GRAND BOURG", "libell_d_acheminement": "GRAND BOURG", "code_postal": "97112", "coordonnees_gps": [15.9059074056, -61.2940501948], "code_commune_insee": "97112"}, "geometry": {"type": "Point", "coordinates": [-61.2940501948, 15.9059074056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "041046361e9fb1cf1bb556a936fbf29d6da7fd79", "fields": {"nom_de_la_commune": "LAMENTIN", "libell_d_acheminement": "LAMENTIN", "code_postal": "97129", "coordonnees_gps": [16.2409664705, -61.6688216708], "code_commune_insee": "97115"}, "geometry": {"type": "Point", "coordinates": [-61.6688216708, 16.2409664705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c12315de450a168ca3fb85012bc51aac17e151fb", "fields": {"nom_de_la_commune": "PETIT BOURG", "libell_d_acheminement": "PETIT BOURG", "code_postal": "97170", "coordonnees_gps": [16.1714632305, -61.6577301591], "code_commune_insee": "97118"}, "geometry": {"type": "Point", "coordinates": [-61.6577301591, 16.1714632305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc2c5a47cffeed32573e8749fe5ab22425c19848", "fields": {"nom_de_la_commune": "ST FRANCOIS", "libell_d_acheminement": "ST FRANCOIS", "code_postal": "97118", "coordonnees_gps": [16.2729556298, -61.2814571844], "code_commune_insee": "97125"}, "geometry": {"type": "Point", "coordinates": [-61.2814571844, 16.2729556298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2a906564f6203c0d7bfef9e4ab0a85524f403b5", "fields": {"nom_de_la_commune": "TROIS RIVIERES", "libell_d_acheminement": "TROIS RIVIERES", "code_postal": "97114", "coordonnees_gps": [15.9909841341, -61.6478530536], "code_commune_insee": "97132"}, "geometry": {"type": "Point", "coordinates": [-61.6478530536, 15.9909841341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab8c439cff2c90992a8e344d631274dc7c17b7e", "fields": {"nom_de_la_commune": "BASSE POINTE", "libell_d_acheminement": "BASSE POINTE", "code_postal": "97218", "coordonnees_gps": [14.8474849535, -61.1459690766], "code_commune_insee": "97203"}, "geometry": {"type": "Point", "coordinates": [-61.1459690766, 14.8474849535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e06e068ca0aab949920dfd7fdf19fdd4e5508a2a", "fields": {"nom_de_la_commune": "LE DIAMANT", "libell_d_acheminement": "LE DIAMANT", "code_postal": "97223", "coordonnees_gps": [14.4888484016, -61.0202991489], "code_commune_insee": "97206"}, "geometry": {"type": "Point", "coordinates": [-61.0202991489, 14.4888484016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b19eac78184d5082a92e6f82288353050bc504", "fields": {"nom_de_la_commune": "FONDS ST DENIS", "libell_d_acheminement": "FONDS ST DENIS", "code_postal": "97250", "coordonnees_gps": [14.777738804, -61.1678676514], "code_commune_insee": "97208"}, "geometry": {"type": "Point", "coordinates": [-61.1678676514, 14.777738804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15a909ce4c1441ca1ab9dd8d929746b2f1eaae4e", "fields": {"nom_de_la_commune": "LE MORNE ROUGE", "libell_d_acheminement": "LE MORNE ROUGE", "code_postal": "97260", "coordonnees_gps": [14.7690224618, -61.1203956225], "code_commune_insee": "97218"}, "geometry": {"type": "Point", "coordinates": [-61.1203956225, 14.7690224618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a503b0f8759cbf3b6ebfcd8dd43ebd90c391dfb1", "fields": {"nom_de_la_commune": "LE ROBERT", "libell_d_acheminement": "LE ROBERT", "code_postal": "97231", "coordonnees_gps": [14.6748993025, -60.9426153066], "code_commune_insee": "97222"}, "geometry": {"type": "Point", "coordinates": [-60.9426153066, 14.6748993025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df45af571db365cda4fe5453a0e555868cd0fd8", "fields": {"nom_de_la_commune": "ST ESPRIT", "libell_d_acheminement": "ST ESPRIT", "code_postal": "97270", "coordonnees_gps": [14.5589038688, -60.9214749212], "code_commune_insee": "97223"}, "geometry": {"type": "Point", "coordinates": [-60.9214749212, 14.5589038688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36996432bd5d39a3bc6b7939ad66484606a29c2", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "97250", "coordonnees_gps": [14.777738804, -61.1678676514], "code_commune_insee": "97225"}, "geometry": {"type": "Point", "coordinates": [-61.1678676514, 14.777738804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c357ecb5d09c87a58a5a178c9ef24285156459b", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "97230", "coordonnees_gps": [14.7693102054, -61.0177300072], "code_commune_insee": "97228"}, "geometry": {"type": "Point", "coordinates": [-61.0177300072, 14.7693102054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54e5c0ddde3bbc0d738ffe009539aa1fb68ca4f", "fields": {"nom_de_la_commune": "SCHOELCHER", "libell_d_acheminement": "SCHOELCHER", "code_postal": "97233", "coordonnees_gps": [14.6461548775, -61.1003483307], "code_commune_insee": "97229"}, "geometry": {"type": "Point", "coordinates": [-61.1003483307, 14.6461548775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd9c466f8b81f2f5a56b6e226ad26509d280dddf", "fields": {"nom_de_la_commune": "LES TROIS ILETS", "libell_d_acheminement": "LES TROIS ILETS", "code_postal": "97229", "coordonnees_gps": [14.5268411285, -61.0368740286], "code_commune_insee": "97231"}, "geometry": {"type": "Point", "coordinates": [-61.0368740286, 14.5268411285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a887fb557c0a5c3102444224d9d6debebd61232b", "fields": {"nom_de_la_commune": "MACOURIA", "libell_d_acheminement": "MACOURIA TONATE", "code_postal": "97355", "coordonnees_gps": [4.98223447686, -52.5086780821], "code_commune_insee": "97305"}, "geometry": {"type": "Point", "coordinates": [-52.5086780821, 4.98223447686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50dd0d885c036de2bf51b77cfe295a5405be48e0", "fields": {"nom_de_la_commune": "MATOURY", "libell_d_acheminement": "MATOURY", "code_postal": "97351", "coordonnees_gps": [4.83155863035, -52.3435695608], "code_commune_insee": "97307"}, "geometry": {"type": "Point", "coordinates": [-52.3435695608, 4.83155863035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "897447a4c9c6943d8b4c8c87708e595eb0d4d778", "fields": {"nom_de_la_commune": "ST LAURENT DU MARONI", "libell_d_acheminement": "ST LAURENT DU MARONI", "code_postal": "97320", "coordonnees_gps": [4.9462197668, -53.9779735451], "code_commune_insee": "97311"}, "geometry": {"type": "Point", "coordinates": [-53.9779735451, 4.9462197668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51ce7dfd26c44d684218f2b7144df5592c4f6f27", "fields": {"nom_de_la_commune": "MONTSINERY TONNEGRANDE", "libell_d_acheminement": "MONTSINERY TONNEGRANDE", "code_postal": "97356", "coordonnees_gps": [4.80953678108, -52.5096708871], "code_commune_insee": "97313"}, "geometry": {"type": "Point", "coordinates": [-52.5096708871, 4.80953678108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a8d495d0e796b8d8e14e45e4eed1e1c2e78cdba", "fields": {"nom_de_la_commune": "OUANARY", "libell_d_acheminement": "OUANARY", "code_postal": "97380", "coordonnees_gps": [4.19033633228, -51.8102044212], "code_commune_insee": "97314"}, "geometry": {"type": "Point", "coordinates": [-51.8102044212, 4.19033633228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f2b361ee01ab1008059089bac9c03eacc6f81ea", "fields": {"nom_de_la_commune": "ENTRE DEUX", "libell_d_acheminement": "ENTRE DEUX", "code_postal": "97414", "coordonnees_gps": [-21.2039549859, 55.4926624049], "code_commune_insee": "97403"}, "geometry": {"type": "Point", "coordinates": [55.4926624049, -21.2039549859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba5a1626bb41f6fb8a1889ff47c0f4b949a2912", "fields": {"nom_de_la_commune": "LA PLAINE DES PALMISTES", "libell_d_acheminement": "LA PLAINE DES PALMISTES", "code_postal": "97431", "coordonnees_gps": [-21.1519471024, 55.6441769419], "code_commune_insee": "97406"}, "geometry": {"type": "Point", "coordinates": [55.6441769419, -21.1519471024]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ee06df97035d17ca3d30416bf8994621cb85dec", "fields": {"code_postal": "97419", "code_commune_insee": "97408", "libell_d_acheminement": "LA POSSESSION", "ligne_5": "STE THERESE", "nom_de_la_commune": "LA POSSESSION", "coordonnees_gps": [-20.99459115, 55.3979867416]}, "geometry": {"type": "Point", "coordinates": [55.3979867416, -20.99459115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c048d85498512536bfaf198c52290b7d9b390d1d", "fields": {"code_postal": "97470", "code_commune_insee": "97410", "libell_d_acheminement": "ST BENOIT", "ligne_5": "BEAUFONDS", "nom_de_la_commune": "ST BENOIT", "coordonnees_gps": [-21.0919418821, 55.6492890915]}, "geometry": {"type": "Point", "coordinates": [55.6492890915, -21.0919418821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e1bc52660c5ed158b3415236b58c923fcb58402", "fields": {"code_postal": "97400", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "BELLE PIERRE", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e1c0fdd85583e84f3c9ab64ce2eba74bd370fc", "fields": {"code_postal": "97400", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "LE BRULE", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d8c2df0f92e063a1d3f84bf3ecc2ca73759b15b", "fields": {"code_postal": "97416", "code_commune_insee": "97413", "libell_d_acheminement": "ST LEU", "ligne_5": "LA CHALOUPE", "nom_de_la_commune": "ST LEU", "coordonnees_gps": [-21.1657814773, 55.3335929857]}, "geometry": {"type": "Point", "coordinates": [55.3335929857, -21.1657814773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde8841186a8fc83ca18375798cd373f232d302e", "fields": {"nom_de_la_commune": "ST LEU", "libell_d_acheminement": "ST LEU", "code_postal": "97436", "coordonnees_gps": [-21.1657814773, 55.3335929857], "code_commune_insee": "97413"}, "geometry": {"type": "Point", "coordinates": [55.3335929857, -21.1657814773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04bac72ee3ecd32df0f663dbcef032997b27b932", "fields": {"nom_de_la_commune": "ST LOUIS", "libell_d_acheminement": "ST LOUIS", "code_postal": "97450", "coordonnees_gps": [-21.2337866407, 55.4216954351], "code_commune_insee": "97414"}, "geometry": {"type": "Point", "coordinates": [55.4216954351, -21.2337866407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e653ae9285fb6b2c0e92d83fbcfa4c976d24ab7", "fields": {"code_postal": "97411", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "BOIS DE NEFLES ST PAUL", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f672ff50e8fbffea5757ffe7bb436d2f8a276119", "fields": {"code_postal": "97435", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "TAN ROUGE", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2157f2fa737e642517a549331213b17597778e2e", "fields": {"code_postal": "97460", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "BELLEMENE", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd4151a53d398a1f088e27afeea4680edd03e3e8", "fields": {"code_postal": "97460", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "PLATEAU CAILLOUX", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e20db38c3ebdfc1779e1a8eccee940ab6e460676", "fields": {"code_postal": "97438", "code_commune_insee": "97418", "libell_d_acheminement": "STE MARIE", "ligne_5": "LA GRANDE MONTEE", "nom_de_la_commune": "STE MARIE", "coordonnees_gps": [-20.9470117135, 55.5304413195]}, "geometry": {"type": "Point", "coordinates": [55.5304413195, -20.9470117135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bad9c78edd8a7875c78cfcd3fb5bb9d2d042e70", "fields": {"code_postal": "97438", "code_commune_insee": "97418", "libell_d_acheminement": "STE MARIE", "ligne_5": "RIVIERE DES PLUIES", "nom_de_la_commune": "STE MARIE", "coordonnees_gps": [-20.9470117135, 55.5304413195]}, "geometry": {"type": "Point", "coordinates": [55.5304413195, -20.9470117135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c4bef6a650408659317f94f9f3cc43958f0d0be", "fields": {"nom_de_la_commune": "STE ROSE", "libell_d_acheminement": "STE ROSE", "code_postal": "97439", "coordonnees_gps": [-21.1923490823, 55.7545391105], "code_commune_insee": "97419"}, "geometry": {"type": "Point", "coordinates": [55.7545391105, -21.1923490823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb1ee86e24c6637abdc97e20d637fcc581a06293", "fields": {"nom_de_la_commune": "STE SUZANNE", "libell_d_acheminement": "STE SUZANNE", "code_postal": "97441", "coordonnees_gps": [-20.9453936025, 55.5929823966], "code_commune_insee": "97420"}, "geometry": {"type": "Point", "coordinates": [55.5929823966, -20.9453936025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ced30f28c5f14774ac7a828b1ce7fe0f87233f6", "fields": {"nom_de_la_commune": "MIQUELON LANGLADE", "libell_d_acheminement": "ST PIERRE ET MIQUELON", "code_postal": "97500", "ligne_5": "LANGLADE", "code_commune_insee": "97501"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03b750ed15fe2e9da4bf43157341e0f5ba6a464", "fields": {"nom_de_la_commune": "OBERMORSCHWILLER", "libell_d_acheminement": "OBERMORSCHWILLER", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68245"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "357c2fd8b1c4e641ab12ee50718a1472d5c32875", "fields": {"nom_de_la_commune": "OBERSAASHEIM", "libell_d_acheminement": "OBERSAASHEIM", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68246"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c3f54a069cbfeea2800546f6f284d5180c8ac9a", "fields": {"nom_de_la_commune": "ODEREN", "libell_d_acheminement": "ODEREN", "code_postal": "68830", "coordonnees_gps": [47.9280210497, 6.9935822488], "code_commune_insee": "68247"}, "geometry": {"type": "Point", "coordinates": [6.9935822488, 47.9280210497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d23c29d491aed136e61954ee61c3b34e551c1a", "fields": {"nom_de_la_commune": "OTTMARSHEIM", "libell_d_acheminement": "OTTMARSHEIM", "code_postal": "68490", "coordonnees_gps": [47.7817852652, 7.50128243869], "code_commune_insee": "68253"}, "geometry": {"type": "Point", "coordinates": [7.50128243869, 47.7817852652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1b810792ae9391a995fe38c8bfb333e47894b58", "fields": {"nom_de_la_commune": "REGUISHEIM", "libell_d_acheminement": "REGUISHEIM", "code_postal": "68890", "coordonnees_gps": [47.9000897431, 7.37306716667], "code_commune_insee": "68266"}, "geometry": {"type": "Point", "coordinates": [7.37306716667, 47.9000897431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0daa29865598bccca9fe3dd78a27c7a902ff7029", "fields": {"nom_de_la_commune": "RICHWILLER", "libell_d_acheminement": "RICHWILLER", "code_postal": "68120", "coordonnees_gps": [47.7768307965, 7.2881348904], "code_commune_insee": "68270"}, "geometry": {"type": "Point", "coordinates": [7.2881348904, 47.7768307965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528b14ad7fd02c3a800855fae83c2d553d822fba", "fields": {"nom_de_la_commune": "RIEDISHEIM", "libell_d_acheminement": "RIEDISHEIM", "code_postal": "68400", "coordonnees_gps": [47.7397475615, 7.36559547622], "code_commune_insee": "68271"}, "geometry": {"type": "Point", "coordinates": [7.36559547622, 47.7397475615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a73be9dddd4e9ebbc466d81486e9b1b2455c41aa", "fields": {"nom_de_la_commune": "RIMBACH PRES GUEBWILLER", "libell_d_acheminement": "RIMBACH PRES GUEBWILLER", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68274"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "958ff0810606e82223e9057eb1683e05b81dbb66", "fields": {"nom_de_la_commune": "RIQUEWIHR", "libell_d_acheminement": "RIQUEWIHR", "code_postal": "68340", "coordonnees_gps": [48.1777476023, 7.28848905346], "code_commune_insee": "68277"}, "geometry": {"type": "Point", "coordinates": [7.28848905346, 48.1777476023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "531d4dd5fb6f0f593c8f4322620c669becd6af20", "fields": {"nom_de_la_commune": "ROGGENHOUSE", "libell_d_acheminement": "ROGGENHOUSE", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68281"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab38c1c48b5b3f1362bbcf62c83deac1b395ece", "fields": {"nom_de_la_commune": "RUSTENHART", "libell_d_acheminement": "RUSTENHART", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68290"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "765bc4dae9fed514e59c3dfd958c9c6b39a5d2ee", "fields": {"code_postal": "68300", "code_commune_insee": "68297", "libell_d_acheminement": "ST LOUIS", "ligne_5": "ST LOUIS LA CHAUSSEE", "nom_de_la_commune": "ST LOUIS", "coordonnees_gps": [47.6023175125, 7.54024522111]}, "geometry": {"type": "Point", "coordinates": [7.54024522111, 47.6023175125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df42521c754fc9194ed308727ecdab79c5bca1e3", "fields": {"nom_de_la_commune": "SAUSHEIM", "libell_d_acheminement": "SAUSHEIM", "code_postal": "68390", "coordonnees_gps": [47.7997453022, 7.41007777982], "code_commune_insee": "68300"}, "geometry": {"type": "Point", "coordinates": [7.41007777982, 47.7997453022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12fc3fd2105277b4bd18633acfcb9b1f5f757f6f", "fields": {"nom_de_la_commune": "SCHWEIGHOUSE THANN", "libell_d_acheminement": "SCHWEIGHOUSE THANN", "code_postal": "68520", "coordonnees_gps": [47.7328574448, 7.15152670714], "code_commune_insee": "68302"}, "geometry": {"type": "Point", "coordinates": [7.15152670714, 47.7328574448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9bb87d8313549d8cdc5052bf7659cfe79bc1c2", "fields": {"nom_de_la_commune": "SENTHEIM", "libell_d_acheminement": "SENTHEIM", "code_postal": "68780", "coordonnees_gps": [47.7234740275, 7.06962991753], "code_commune_insee": "68304"}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9296494cfa96be88353ac0091994c8801d25fbf1", "fields": {"nom_de_la_commune": "SEWEN", "libell_d_acheminement": "SEWEN", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68307"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3054f4da1e1ba1e74cb734f8320f7478d0e55828", "fields": {"nom_de_la_commune": "SOULTZEREN", "libell_d_acheminement": "SOULTZEREN", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68317"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3665d12b6c3233716a98c9607dd63d3431987834", "fields": {"nom_de_la_commune": "STEINBRUNN LE HAUT", "libell_d_acheminement": "STEINBRUNN LE HAUT", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68324"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5383b86cb1d44be06116706f643879fce0883292", "fields": {"nom_de_la_commune": "TRAUBACH LE BAS", "libell_d_acheminement": "TRAUBACH LE BAS", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68336"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d8648600fa3e51e7377a3eea9f41845e56ed4d6", "fields": {"nom_de_la_commune": "TRAUBACH LE HAUT", "libell_d_acheminement": "TRAUBACH LE HAUT", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68337"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc01dea0ef1c668785a38cb709574f734b1d71fd", "fields": {"nom_de_la_commune": "URBES", "libell_d_acheminement": "URBES", "code_postal": "68121", "coordonnees_gps": [47.8799375308, 6.92692522405], "code_commune_insee": "68344"}, "geometry": {"type": "Point", "coordinates": [6.92692522405, 47.8799375308]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feddab4d900c1084cd85d0fae1d6e13f7278a7f9", "fields": {"nom_de_la_commune": "VIEUX THANN", "libell_d_acheminement": "VIEUX THANN", "code_postal": "68800", "coordonnees_gps": [47.7994545972, 7.09241843411], "code_commune_insee": "68348"}, "geometry": {"type": "Point", "coordinates": [7.09241843411, 47.7994545972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f4ce2caa35dbb36986a407fc1cd47d5284a980a", "fields": {"nom_de_la_commune": "WENTZWILLER", "libell_d_acheminement": "WENTZWILLER", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68362"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5170a6df7c3a259ab9e0fa3dde15436fd0c5c6c", "fields": {"nom_de_la_commune": "WINKEL", "libell_d_acheminement": "WINKEL", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68373"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96e10aa3cafa15575b4d8e80e6eef21764c7efe9", "fields": {"nom_de_la_commune": "WITTELSHEIM", "libell_d_acheminement": "WITTELSHEIM", "code_postal": "68310", "coordonnees_gps": [47.7985535201, 7.23964411959], "code_commune_insee": "68375"}, "geometry": {"type": "Point", "coordinates": [7.23964411959, 47.7985535201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a77da3dfaf71fe8c8ebbf0bdd88e36aa1fd1e6c", "fields": {"nom_de_la_commune": "WITTERSDORF", "libell_d_acheminement": "WITTERSDORF", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68377"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b460f84267644d2fc9d84071f5474982ed8bcf", "fields": {"nom_de_la_commune": "WOLFERSDORF", "libell_d_acheminement": "WOLFERSDORF", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68378"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb46592a7a376c50bc918ed02bd45e28a004d926", "fields": {"nom_de_la_commune": "WOLFGANTZEN", "libell_d_acheminement": "WOLFGANTZEN", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68379"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9f810aef7deeb41b4150022d28c3fde702a40f", "fields": {"nom_de_la_commune": "ZELLENBERG", "libell_d_acheminement": "ZELLENBERG", "code_postal": "68340", "coordonnees_gps": [48.1777476023, 7.28848905346], "code_commune_insee": "68383"}, "geometry": {"type": "Point", "coordinates": [7.28848905346, 48.1777476023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a7b3064686bcb4ed2d036e47c329f09b1ac811", "fields": {"nom_de_la_commune": "ALBIGNY SUR SAONE", "libell_d_acheminement": "ALBIGNY SUR SAONE", "code_postal": "69250", "coordonnees_gps": [45.8691904995, 4.83538598434], "code_commune_insee": "69003"}, "geometry": {"type": "Point", "coordinates": [4.83538598434, 45.8691904995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d2dff380f56e4990de97329cd61fdd3c64349ec", "fields": {"nom_de_la_commune": "AMBERIEUX", "libell_d_acheminement": "AMBERIEUX D AZERGUES", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69005"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bd17a0aa5076f1509c462e4e1eddf4dc7980231", "fields": {"nom_de_la_commune": "AVEIZE", "libell_d_acheminement": "AVEIZE", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69014"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0e9004d43dcb92299eb62ea2bd2287038beb3f", "fields": {"nom_de_la_commune": "AVENAS", "libell_d_acheminement": "AVENAS", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69015"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94a32f6ff72e10f2497d8f79f924688cc7c906a2", "fields": {"nom_de_la_commune": "AZOLETTE", "libell_d_acheminement": "AZOLETTE", "code_postal": "69790", "coordonnees_gps": [46.2387836899, 4.44287004502], "code_commune_insee": "69016"}, "geometry": {"type": "Point", "coordinates": [4.44287004502, 46.2387836899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe90137a86bac32d34e32bfa14f8363b1b1d46dc", "fields": {"code_postal": "69690", "code_commune_insee": "69021", "libell_d_acheminement": "BESSENAY", "ligne_5": "LA BREVENNE", "nom_de_la_commune": "BESSENAY", "coordonnees_gps": [45.7650952227, 4.53742435922]}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a662d1001c04bc7fec809bdb20ce98e8bd79aafa", "fields": {"nom_de_la_commune": "CHAMBOST LONGESSAIGNE", "libell_d_acheminement": "CHAMBOST LONGESSAIGNE", "code_postal": "69770", "coordonnees_gps": [45.7948653503, 4.42430458336], "code_commune_insee": "69038"}, "geometry": {"type": "Point", "coordinates": [4.42430458336, 45.7948653503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc598f3c460c63f6bd058fb6d9bb008ebf12ab2", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR COISE", "libell_d_acheminement": "LA CHAPELLE SUR COISE", "code_postal": "69590", "coordonnees_gps": [45.6217485802, 4.48906764505], "code_commune_insee": "69042"}, "geometry": {"type": "Point", "coordinates": [4.48906764505, 45.6217485802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f04d4959638f9761acfc9f2c85476ec4de6e93a", "fields": {"nom_de_la_commune": "CIVRIEUX D AZERGUES", "libell_d_acheminement": "CIVRIEUX D AZERGUES", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69059"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2d5d749af4626ab8c9d366637ea978953d10144", "fields": {"nom_de_la_commune": "COGNY", "libell_d_acheminement": "COGNY", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69061"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c50a832a5bcda0172f8a5187e143e22cc36e3673", "fields": {"nom_de_la_commune": "DUERNE", "libell_d_acheminement": "DUERNE", "code_postal": "69850", "coordonnees_gps": [45.6632329556, 4.55020035776], "code_commune_insee": "69078"}, "geometry": {"type": "Point", "coordinates": [4.55020035776, 45.6632329556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3123075511f17206155e92b0863ff95f6122a5f0", "fields": {"nom_de_la_commune": "FONTAINES SUR SAONE", "libell_d_acheminement": "FONTAINES SUR SAONE", "code_postal": "69270", "coordonnees_gps": [45.8483845362, 4.85660481546], "code_commune_insee": "69088"}, "geometry": {"type": "Point", "coordinates": [4.85660481546, 45.8483845362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336ee8530a1c1dfcf5ac4690856856a81bcc2221", "fields": {"nom_de_la_commune": "FRONTENAS", "libell_d_acheminement": "FRONTENAS", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69090"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49996241763185e50478fb0665742c2976639c85", "fields": {"nom_de_la_commune": "GIVORS", "libell_d_acheminement": "GIVORS", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69091"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7304866bd96263a0a10620794e3df13ff136424f", "fields": {"code_postal": "69700", "code_commune_insee": "69091", "libell_d_acheminement": "GIVORS", "ligne_5": "ST MARTIN DE CORNAS", "nom_de_la_commune": "GIVORS", "coordonnees_gps": [45.5741550977, 4.73818709302]}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2988081a4a07b4666a6ee3ad201967a8a9227c78", "fields": {"nom_de_la_commune": "LES HAIES", "libell_d_acheminement": "LES HAIES", "code_postal": "69420", "coordonnees_gps": [45.5036780287, 4.73457399039], "code_commune_insee": "69097"}, "geometry": {"type": "Point", "coordinates": [4.73457399039, 45.5036780287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce581fe3ec562219bf298622450be606d9dc3fd", "fields": {"nom_de_la_commune": "JOUX", "libell_d_acheminement": "JOUX", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69102"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06718c71713cd49ae2ee9987862472b47ebe4ee5", "fields": {"nom_de_la_commune": "LEGNY", "libell_d_acheminement": "LEGNY", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69111"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15bebcced97af8d81fc5427c1d09ae46aa9288b", "fields": {"nom_de_la_commune": "MOIRE", "libell_d_acheminement": "MOIRE", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69134"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9e9f2f55d327ff181ce4d03298faa11a2831fb8", "fields": {"nom_de_la_commune": "MONSOLS", "libell_d_acheminement": "MONSOLS", "code_postal": "69860", "coordonnees_gps": [46.2400571713, 4.55489493193], "code_commune_insee": "69135"}, "geometry": {"type": "Point", "coordinates": [4.55489493193, 46.2400571713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b139ac91a4fec10769322741462c81d984479dd3", "fields": {"nom_de_la_commune": "MONTMELAS ST SORLIN", "libell_d_acheminement": "MONTMELAS ST SORLIN", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69137"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad769674506db9df846da9c6c56b7bf7eb2e708", "fields": {"nom_de_la_commune": "MORANCE", "libell_d_acheminement": "MORANCE", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69140"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa841753dce19d6d1d7735bf7c225a6a3709c36", "fields": {"nom_de_la_commune": "OULLINS", "libell_d_acheminement": "OULLINS", "code_postal": "69600", "coordonnees_gps": [45.7156524382, 4.80267589495], "code_commune_insee": "69149"}, "geometry": {"type": "Point", "coordinates": [4.80267589495, 45.7156524382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f25a388f6600c5a51d112daf80d6406a9c6d6f6", "fields": {"nom_de_la_commune": "RIVERIE", "libell_d_acheminement": "RIVERIE", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69166"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "677019f18357e37fa857d185715b9afc0b1a73ed", "fields": {"code_postal": "69640", "code_commune_insee": "69167", "libell_d_acheminement": "RIVOLET", "ligne_5": "LA FOUILLOUSE", "nom_de_la_commune": "RIVOLET", "coordonnees_gps": [45.9971718546, 4.6146387877]}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecfe67aff09e613619b8b1e69e63d83af142ef61", "fields": {"nom_de_la_commune": "SAVIGNY", "libell_d_acheminement": "SAVIGNY", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69175"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe403332cdf718ba0fa83420e41ab69904b6bb7", "fields": {"nom_de_la_commune": "SOUCIEU EN JARREST", "libell_d_acheminement": "SOUCIEU EN JARREST", "code_postal": "69510", "coordonnees_gps": [45.6836936194, 4.64151349794], "code_commune_insee": "69176"}, "geometry": {"type": "Point", "coordinates": [4.64151349794, 45.6836936194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "227a4865fece10dab4824c53d5d0c1474b1fced8", "fields": {"nom_de_la_commune": "SOUZY", "libell_d_acheminement": "SOUZY", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69178"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10b59218ee0e840a13c098e6ff0e59c1b6b9c227", "fields": {"nom_de_la_commune": "ST APPOLINAIRE", "libell_d_acheminement": "ST APPOLINAIRE", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69181"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94375b03437e254649f2fd33cf0718d483661993", "fields": {"nom_de_la_commune": "ST BONNET DES BRUYERES", "libell_d_acheminement": "ST BONNET DES BRUYERES", "code_postal": "69790", "coordonnees_gps": [46.2387836899, 4.44287004502], "code_commune_insee": "69182"}, "geometry": {"type": "Point", "coordinates": [4.44287004502, 46.2387836899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1b049180e63b5cac01a811cd1d560e1e90402e", "fields": {"nom_de_la_commune": "ST ETIENNE DES OULLIERES", "libell_d_acheminement": "ST ETIENNE DES OULLIERES", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69197"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0353625571358d19c203a7a78ab5167743fbfeb7", "fields": {"nom_de_la_commune": "ST JEAN LA BUSSIERE", "libell_d_acheminement": "ST JEAN LA BUSSIERE", "code_postal": "69550", "coordonnees_gps": [45.9921852831, 4.36092903246], "code_commune_insee": "69214"}, "geometry": {"type": "Point", "coordinates": [4.36092903246, 45.9921852831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "815cdee93edcd9154afdb416815cd920f9b4269e", "fields": {"nom_de_la_commune": "ST LAGER", "libell_d_acheminement": "ST LAGER", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69218"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c3b9a3cf08255040341b76ef51e529bace04ea8", "fields": {"nom_de_la_commune": "ST LAURENT D AGNY", "libell_d_acheminement": "ST LAURENT D AGNY", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69219"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b95f807cc62225f82d61e99ac73c18e4bc41d3", "fields": {"nom_de_la_commune": "ST ROMAIN EN GIER", "libell_d_acheminement": "ST ROMAIN EN GIER", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69236"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e973d5c08f3feaf9ac94857346d6f092e86bd92", "fields": {"nom_de_la_commune": "TERNAND", "libell_d_acheminement": "TERNAND", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69245"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7adedb79ed650dd01aefd4a95372f7fadf89ea3", "fields": {"nom_de_la_commune": "THEIZE", "libell_d_acheminement": "THEIZE", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69246"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311d6efc78479120e9999a8316e455d96dfadddd", "fields": {"code_postal": "69240", "code_commune_insee": "69248", "libell_d_acheminement": "THIZY LES BOURGS", "ligne_5": "MARNAND", "nom_de_la_commune": "THIZY LES BOURGS", "coordonnees_gps": [46.068199037, 4.3380922269]}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a3477706300b13400d28f3d47227aaa45cf86f", "fields": {"nom_de_la_commune": "VAUGNERAY", "libell_d_acheminement": "VAUGNERAY", "code_postal": "69670", "coordonnees_gps": [45.7297593676, 4.64249561363], "code_commune_insee": "69255"}, "geometry": {"type": "Point", "coordinates": [4.64249561363, 45.7297593676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a229edfebde517eb36e1c7d1348750919895cd9a", "fields": {"nom_de_la_commune": "VERNAY", "libell_d_acheminement": "VERNAY", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69261"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d2e1703ba968c3e186c6259525ae74071dff204", "fields": {"nom_de_la_commune": "VILLECHENEVE", "libell_d_acheminement": "VILLECHENEVE", "code_postal": "69770", "coordonnees_gps": [45.7948653503, 4.42430458336], "code_commune_insee": "69263"}, "geometry": {"type": "Point", "coordinates": [4.42430458336, 45.7948653503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beb282af92ea5af446d73babdca64c556936cf20", "fields": {"nom_de_la_commune": "COMMUNAY", "libell_d_acheminement": "COMMUNAY", "code_postal": "69360", "coordonnees_gps": [45.6220752838, 4.84615821285], "code_commune_insee": "69272"}, "geometry": {"type": "Point", "coordinates": [4.84615821285, 45.6220752838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46ccd7d1f4172451c3442e8ab058ef26f978adfd", "fields": {"nom_de_la_commune": "FEYZIN", "libell_d_acheminement": "FEYZIN", "code_postal": "69320", "coordonnees_gps": [45.6733069707, 4.85791542174], "code_commune_insee": "69276"}, "geometry": {"type": "Point", "coordinates": [4.85791542174, 45.6733069707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5872548e979296e6acc3c76c77045c4296454f", "fields": {"nom_de_la_commune": "GENAS", "libell_d_acheminement": "GENAS", "code_postal": "69740", "coordonnees_gps": [45.7300186003, 5.01578595253], "code_commune_insee": "69277"}, "geometry": {"type": "Point", "coordinates": [5.01578595253, 45.7300186003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "484690072c826b2fd4d15a30964f814a3ed81e48", "fields": {"nom_de_la_commune": "MARENNES", "libell_d_acheminement": "MARENNES", "code_postal": "69970", "coordonnees_gps": [45.626140728, 4.93340438392], "code_commune_insee": "69281"}, "geometry": {"type": "Point", "coordinates": [4.93340438392, 45.626140728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e909692feb5520c90ffabb7bb9bb1bf4e281a760", "fields": {"nom_de_la_commune": "ST LAURENT DE MURE", "libell_d_acheminement": "ST LAURENT DE MURE", "code_postal": "69720", "coordonnees_gps": [45.6898441312, 5.04322574847], "code_commune_insee": "69288"}, "geometry": {"type": "Point", "coordinates": [5.04322574847, 45.6898441312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c728d78b61833f9f3ae911d7ed319445a6d4c5a4", "fields": {"nom_de_la_commune": "ST PIERRE DE CHANDIEU", "libell_d_acheminement": "ST PIERRE DE CHANDIEU", "code_postal": "69780", "coordonnees_gps": [45.6517385833, 4.9906607201], "code_commune_insee": "69289"}, "geometry": {"type": "Point", "coordinates": [4.9906607201, 45.6517385833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275233d26df4890e50b98ef318f29575cdfbcdfa", "fields": {"nom_de_la_commune": "ST PRIEST", "libell_d_acheminement": "ST PRIEST", "code_postal": "69800", "coordonnees_gps": [45.7017022335, 4.94898769222], "code_commune_insee": "69290"}, "geometry": {"type": "Point", "coordinates": [4.94898769222, 45.7017022335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2691f332de6bc4e793279cf29a4b56839cd53f57", "fields": {"nom_de_la_commune": "ST SYMPHORIEN D OZON", "libell_d_acheminement": "ST SYMPHORIEN D OZON", "code_postal": "69360", "coordonnees_gps": [45.6220752838, 4.84615821285], "code_commune_insee": "69291"}, "geometry": {"type": "Point", "coordinates": [4.84615821285, 45.6220752838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f9dfa2c1c627bb48c7bbf87dcd52ce6da2127a", "fields": {"nom_de_la_commune": "TERNAY", "libell_d_acheminement": "TERNAY", "code_postal": "69360", "coordonnees_gps": [45.6220752838, 4.84615821285], "code_commune_insee": "69297"}, "geometry": {"type": "Point", "coordinates": [4.84615821285, 45.6220752838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfc8f8791c7a10842d3591620bdad1768ce84a82", "fields": {"code_postal": "69124", "code_commune_insee": "69299", "libell_d_acheminement": "COLOMBIER SAUGNIEU", "ligne_5": "SAUGNIEU", "nom_de_la_commune": "COLOMBIER SAUGNIEU", "coordonnees_gps": [45.7180247923, 5.10320927277]}, "geometry": {"type": "Point", "coordinates": [5.10320927277, 45.7180247923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edcce5af5f152a882a0ea387bab8a620b91a5d6f", "fields": {"nom_de_la_commune": "LYON 01", "libell_d_acheminement": "LYON", "code_postal": "69001", "coordonnees_gps": [45.7698747385, 4.82857516905], "code_commune_insee": "69381"}, "geometry": {"type": "Point", "coordinates": [4.82857516905, 45.7698747385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c511c061319d99313ad02981b3c6ee11b2a035", "fields": {"nom_de_la_commune": "LYON 02", "libell_d_acheminement": "LYON", "code_postal": "69002", "coordonnees_gps": [45.7483660735, 4.825926093], "code_commune_insee": "69382"}, "geometry": {"type": "Point", "coordinates": [4.825926093, 45.7483660735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af420098a02efd76110fb5ba65ee2e5082fcc9d", "fields": {"nom_de_la_commune": "LYON 04", "libell_d_acheminement": "LYON", "code_postal": "69004", "coordonnees_gps": [45.7789266388, 4.8239526432], "code_commune_insee": "69384"}, "geometry": {"type": "Point", "coordinates": [4.8239526432, 45.7789266388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ca6408ca115e3f2e6e7f37ec2f332eb8adb968", "fields": {"nom_de_la_commune": "LYON 08", "libell_d_acheminement": "LYON", "code_postal": "69008", "coordonnees_gps": [45.7340095868, 4.869109412], "code_commune_insee": "69388"}, "geometry": {"type": "Point", "coordinates": [4.869109412, 45.7340095868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3effbdb83a579fa929e522b8c658a5ca83d2ca8a", "fields": {"nom_de_la_commune": "ACHEY", "libell_d_acheminement": "ACHEY", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70003"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96c77c9c5e49e7df4fb291d56047b84b44158485", "fields": {"nom_de_la_commune": "AILLEVILLERS ET LYAUMONT", "libell_d_acheminement": "AILLEVILLERS ET LYAUMONT", "code_postal": "70320", "coordonnees_gps": [47.9247841994, 6.33509809591], "code_commune_insee": "70006"}, "geometry": {"type": "Point", "coordinates": [6.33509809591, 47.9247841994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1fa598756300a17fda2018255edb4e4c527c046", "fields": {"nom_de_la_commune": "AINVELLE", "libell_d_acheminement": "AINVELLE", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70008"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc11fb0c6112b2a1c1fb83fb81eea746182eff0b", "fields": {"nom_de_la_commune": "AMAGE", "libell_d_acheminement": "AMAGE", "code_postal": "70280", "coordonnees_gps": [47.8584720576, 6.48683952427], "code_commune_insee": "70011"}, "geometry": {"type": "Point", "coordinates": [6.48683952427, 47.8584720576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f366e637fd6bcaabbe70da5974cf419be08ca5", "fields": {"nom_de_la_commune": "AMBLANS ET VELOTTE", "libell_d_acheminement": "AMBLANS ET VELOTTE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70014"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8f54418b7f896c204273e5b69c7b756da6c04f2", "fields": {"nom_de_la_commune": "ANCHENONCOURT ET CHAZEL", "libell_d_acheminement": "ANCHENONCOURT ET CHAZEL", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70017"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "984b7a4ab155ef60b203665f11ac49e135696cb2", "fields": {"nom_de_la_commune": "AUTREY LES GRAY", "libell_d_acheminement": "AUTREY LES GRAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70041"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fcdd03e7ac1b67166d01b52dcda2b126faf221a", "fields": {"nom_de_la_commune": "AUVET ET LA CHAPELOTTE", "libell_d_acheminement": "AUVET ET LA CHAPELOTTE", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70043"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b540a6da5905dce9c8e66d20ed19fe2d930c6ad6", "fields": {"nom_de_la_commune": "BAIGNES", "libell_d_acheminement": "BAIGNES", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70047"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a55774b4912900baf3a5ee0e724131321709676f", "fields": {"nom_de_la_commune": "LES BATIES", "libell_d_acheminement": "LES BATIES", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70053"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0a51d993f2bf2b4863017ff6a3f6c1da01d24e2", "fields": {"nom_de_la_commune": "BAULAY", "libell_d_acheminement": "BAULAY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70056"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcd9660292f24a95185c371b77f4bc3698b8ddaf", "fields": {"nom_de_la_commune": "BAY", "libell_d_acheminement": "BAY", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70057"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ced4193ac6c341683742714e94230717c5f12c0a", "fields": {"nom_de_la_commune": "BEAUJEU ET QUITTEUR", "libell_d_acheminement": "BEAUJEU ET QUITTEUR", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70058"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a40a885136dd302ed814ca029ca9727774dc6f7c", "fields": {"nom_de_la_commune": "BEAUMOTTE LES PIN", "libell_d_acheminement": "BEAUMOTTE LES PIN", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70060"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8059571eab7a2b8783eff9990baad7402c454942", "fields": {"nom_de_la_commune": "BESNANS", "libell_d_acheminement": "BESNANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70065"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3205d7f3c186d33de5c66145709ac44eb7e2ddab", "fields": {"nom_de_la_commune": "BETAUCOURT", "libell_d_acheminement": "BETAUCOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70066"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae13e9c410152f32708a00ae4c47aa8ff9621b09", "fields": {"nom_de_la_commune": "LA RENAUDIE", "libell_d_acheminement": "LA RENAUDIE", "code_postal": "63930", "coordonnees_gps": [45.7386166201, 3.6587951745], "code_commune_insee": "63298"}, "geometry": {"type": "Point", "coordinates": [3.6587951745, 45.7386166201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987994b5364fb3ea2a4c2db0548bd083d15e8295", "fields": {"nom_de_la_commune": "LA ROCHE BLANCHE", "libell_d_acheminement": "LA ROCHE BLANCHE", "code_postal": "63670", "coordonnees_gps": [45.7124444692, 3.15893935126], "code_commune_insee": "63302"}, "geometry": {"type": "Point", "coordinates": [3.15893935126, 45.7124444692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e88f1844719dd7e6e041672250a5d34485f76f90", "fields": {"nom_de_la_commune": "ROCHE CHARLES LA MAYRAND", "libell_d_acheminement": "ROCHE CHARLES LA MAYRAND", "code_postal": "63420", "coordonnees_gps": [45.3815607414, 3.05063750475], "code_commune_insee": "63303"}, "geometry": {"type": "Point", "coordinates": [3.05063750475, 45.3815607414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cf8f0004eecf4ab267c638b119b364eae4e727c", "fields": {"nom_de_la_commune": "ST AGOULIN", "libell_d_acheminement": "ST AGOULIN", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63311"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ce10946db57e98b3e8eda33edf71e8d091d190", "fields": {"nom_de_la_commune": "ST CIRGUES SUR COUZE", "libell_d_acheminement": "ST CIRGUES SUR COUZE", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63330"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67551edac1f52ea0b6f5902a07d6af5eeb782143", "fields": {"nom_de_la_commune": "ST CLEMENT DE VALORGUE", "libell_d_acheminement": "ST CLEMENT DE VALORGUE", "code_postal": "63660", "coordonnees_gps": [45.5294414829, 3.9086743951], "code_commune_insee": "63331"}, "geometry": {"type": "Point", "coordinates": [3.9086743951, 45.5294414829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6573296b985efc4faf60f541f18811705db39c51", "fields": {"nom_de_la_commune": "ST CLEMENT DE REGNAT", "libell_d_acheminement": "ST CLEMENT DE REGNAT", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63332"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7603a8bcb119b10b7336a437719873b48e4f0a2", "fields": {"nom_de_la_commune": "ST DIER D AUVERGNE", "libell_d_acheminement": "ST DIER D AUVERGNE", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63334"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7af5f9c2d8f0e0b21a2bc7ad1b827c94ef131a93", "fields": {"nom_de_la_commune": "ST ELOY LES MINES", "libell_d_acheminement": "ST ELOY LES MINES", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63338"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "874eb9d5123a2d4fe81b46857c322eb9d190a1d3", "fields": {"nom_de_la_commune": "ST FLOUR", "libell_d_acheminement": "ST FLOUR", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63343"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d08292bff92fe81ca6af72c19ec695176731b08b", "fields": {"nom_de_la_commune": "ST GENES CHAMPESPE", "libell_d_acheminement": "ST GENES CHAMPESPE", "code_postal": "63850", "coordonnees_gps": [45.4132189945, 2.81236528132], "code_commune_insee": "63346"}, "geometry": {"type": "Point", "coordinates": [2.81236528132, 45.4132189945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "572845721d58fa1017f1d05dda843c5ca69d6707", "fields": {"nom_de_la_commune": "ST GENES DU RETZ", "libell_d_acheminement": "ST GENES DU RETZ", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63347"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703bc6231c76d914763eb13f812c027aff00c17b", "fields": {"nom_de_la_commune": "ST GEORGES DE MONS", "libell_d_acheminement": "ST GEORGES DE MONS", "code_postal": "63780", "coordonnees_gps": [45.9494669995, 2.85840011362], "code_commune_insee": "63349"}, "geometry": {"type": "Point", "coordinates": [2.85840011362, 45.9494669995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a5d9ff2b5447f94c28a52b44eed32913f9f82c", "fields": {"nom_de_la_commune": "ST HERENT", "libell_d_acheminement": "ST HERENT", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63357"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef636eb751665150ba3edfe4c886fd5d1b7bfa2", "fields": {"nom_de_la_commune": "ST JEAN D HEURS", "libell_d_acheminement": "ST JEAN D HEURS", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63364"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f32ff583df02e14aef1e4874e96208f6f7b2082", "fields": {"nom_de_la_commune": "ST JEAN DES OLLIERES", "libell_d_acheminement": "ST JEAN DES OLLIERES", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63365"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d24fe74659ebae1064b13dba79ded9de7477b1f8", "fields": {"nom_de_la_commune": "ST JEAN ST GERVAIS", "libell_d_acheminement": "ST JEAN ST GERVAIS", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63367"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcba889ff51eb0161df66de5f4ea4791b7e948d4", "fields": {"nom_de_la_commune": "ST JULIEN LA GENESTE", "libell_d_acheminement": "ST JULIEN LA GENESTE", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63369"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9ed40bc5350d3bdf6c84e10fe47867386225af0", "fields": {"nom_de_la_commune": "ST MAURICE PRES PIONSAT", "libell_d_acheminement": "ST MAURICE PRES PIONSAT", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63377"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "037b23487ea399fbb1f64ab8f86af0f56e5ebb91", "fields": {"nom_de_la_commune": "ST MYON", "libell_d_acheminement": "ST MYON", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63379"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "084f045047a8d936e498bf3d5d63b3300a1fe1c7", "fields": {"nom_de_la_commune": "ST NECTAIRE", "libell_d_acheminement": "ST NECTAIRE", "code_postal": "63710", "coordonnees_gps": [45.6024911149, 2.9728034479], "code_commune_insee": "63380"}, "geometry": {"type": "Point", "coordinates": [2.9728034479, 45.6024911149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8f1c8c979b1a5aa8e02cb2135861245dc50129", "fields": {"nom_de_la_commune": "ST REMY DE CHARGNAT", "libell_d_acheminement": "ST REMY DE CHARGNAT", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63392"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56c84f6908956e66037101ed9afdb3b7b5015f1", "fields": {"nom_de_la_commune": "ST REMY SUR DUROLLE", "libell_d_acheminement": "ST REMY SUR DUROLLE", "code_postal": "63550", "coordonnees_gps": [45.9228930521, 3.6102507473], "code_commune_insee": "63393"}, "geometry": {"type": "Point", "coordinates": [3.6102507473, 45.9228930521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d7207a17ed2732051ce2f08db0020a590f71a1", "fields": {"nom_de_la_commune": "ST SANDOUX", "libell_d_acheminement": "ST SANDOUX", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63395"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09ddbddcd1cf0ad53732008dce867c712a091649", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63396"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bb9534c238440da3333dc1bc4595a15b91b0841", "fields": {"nom_de_la_commune": "SARDON", "libell_d_acheminement": "SARDON", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63406"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc479f789cd609b9c5e134f6b3397d414c56f334", "fields": {"nom_de_la_commune": "SAURIER", "libell_d_acheminement": "SAURIER", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63409"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2910e219a8f6b076850005e72df952c0a1f2f512", "fields": {"nom_de_la_commune": "SAUXILLANGES", "libell_d_acheminement": "SAUXILLANGES", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63415"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558687ece746fee45c98d3974fbc44bb4ca4c9a6", "fields": {"nom_de_la_commune": "SAVENNES", "libell_d_acheminement": "SAVENNES", "code_postal": "63750", "coordonnees_gps": [45.6027201086, 2.52290102161], "code_commune_insee": "63416"}, "geometry": {"type": "Point", "coordinates": [2.52290102161, 45.6027201086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b0bc06f0337c4d7652b93d87319e9873b04ac5", "fields": {"nom_de_la_commune": "SINGLES", "libell_d_acheminement": "SINGLES", "code_postal": "63690", "coordonnees_gps": [45.555010149, 2.58536882047], "code_commune_insee": "63421"}, "geometry": {"type": "Point", "coordinates": [2.58536882047, 45.555010149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1cec7489d48b37ce115b166bd212717e7d12996", "fields": {"nom_de_la_commune": "SUGERES", "libell_d_acheminement": "SUGERES", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63423"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55de9931fcfecfef887de7433b276d1e3bfe516d", "fields": {"nom_de_la_commune": "SURAT", "libell_d_acheminement": "SURAT", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63424"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a68d9c1a39ff83ff7707721ac3fdaa4669a1ae29", "fields": {"nom_de_la_commune": "TALLENDE", "libell_d_acheminement": "TALLENDE", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63425"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17942b15a29e532717cee81e85b6362c65acc801", "fields": {"nom_de_la_commune": "TORTEBESSE", "libell_d_acheminement": "TORTEBESSE", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63433"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8daea338c886209fa65cde98c210ba14779a979", "fields": {"nom_de_la_commune": "TOURS SUR MEYMONT", "libell_d_acheminement": "TOURS SUR MEYMONT", "code_postal": "63590", "coordonnees_gps": [45.630246547, 3.56815456434], "code_commune_insee": "63434"}, "geometry": {"type": "Point", "coordinates": [3.56815456434, 45.630246547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daf08b6ec4bea1cf91da08f597267aa86b533199", "fields": {"nom_de_la_commune": "TOURZEL RONZIERES", "libell_d_acheminement": "TOURZEL RONZIERES", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63435"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61e4bf6ca2a179c3f326bd18998612d9961241a8", "fields": {"nom_de_la_commune": "TREZIOUX", "libell_d_acheminement": "TREZIOUX", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63438"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f3d761e09712512bf7d438c3366e1f3d0b4ce9", "fields": {"nom_de_la_commune": "VENSAT", "libell_d_acheminement": "VENSAT", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63446"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9db4f28b663380487233713c4d23adb500c6bee8", "fields": {"nom_de_la_commune": "VICHEL", "libell_d_acheminement": "VICHEL", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63456"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a7f2a8e2e496da2bfba2ef7cf005a97e0a20cd8", "fields": {"nom_de_la_commune": "VIC LE COMTE", "libell_d_acheminement": "VIC LE COMTE", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63457"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4e6a0c0c8886f1944fd60afd4780cc3d0340508", "fields": {"code_postal": "63700", "code_commune_insee": "63471", "libell_d_acheminement": "YOUX", "ligne_5": "MONTJOIE", "nom_de_la_commune": "YOUX", "coordonnees_gps": [46.1865575466, 2.8334076893]}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df89e0018fc84ec7a70724069a453a819b7ffc58", "fields": {"nom_de_la_commune": "YRONDE ET BURON", "libell_d_acheminement": "YRONDE ET BURON", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63472"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe73730b9905a627190ed805997bd2a659187b3d", "fields": {"nom_de_la_commune": "ABIDOS", "libell_d_acheminement": "ABIDOS", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64003"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c637415aa23a1ec634519548803e8c091043cdb", "fields": {"nom_de_la_commune": "AGNOS", "libell_d_acheminement": "AGNOS", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64007"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a90ddcb82c0c85f890506987910739442e4532", "fields": {"nom_de_la_commune": "AHETZE", "libell_d_acheminement": "AHETZE", "code_postal": "64210", "coordonnees_gps": [43.4226559085, -1.56911488604], "code_commune_insee": "64009"}, "geometry": {"type": "Point", "coordinates": [-1.56911488604, 43.4226559085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b115566c4a5e99d0a3d6b43affc090086979418a", "fields": {"nom_de_la_commune": "AINHICE MONGELOS", "libell_d_acheminement": "AINHICE MONGELOS", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64013"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceca7d569a8397b7519e0511695514e135ac4cee", "fields": {"nom_de_la_commune": "ALOS SIBAS ABENSE", "libell_d_acheminement": "ALOS SIBAS ABENSE", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64017"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1b0961208fb2d8f29045f1f6516f1d8ac4ad268", "fields": {"nom_de_la_commune": "ANCE", "libell_d_acheminement": "ANCE", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64020"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdc9de92494d6f1d57f7f1030703c890a6a86cbb", "fields": {"nom_de_la_commune": "ANDREIN", "libell_d_acheminement": "ANDREIN", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64022"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831327c4b96c8e2b292c5630e22b961d547cbecc", "fields": {"nom_de_la_commune": "ARCANGUES", "libell_d_acheminement": "ARCANGUES", "code_postal": "64200", "coordonnees_gps": [43.44355076, -1.52562527873], "code_commune_insee": "64038"}, "geometry": {"type": "Point", "coordinates": [-1.52562527873, 43.44355076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "005a97a6317334b60d332afe6a346fbcb30c27d1", "fields": {"nom_de_la_commune": "ARGAGNON", "libell_d_acheminement": "ARGAGNON", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64042"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7699a6f1532230f249cc86e2bdca0112b9efe402", "fields": {"nom_de_la_commune": "ARRAUTE CHARRITTE", "libell_d_acheminement": "ARRAUTE CHARRITTE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64051"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "750536dd369f4520996eb9881a427df32cfae27b", "fields": {"nom_de_la_commune": "ARRIEN", "libell_d_acheminement": "ARRIEN", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64053"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b904d9b48ff162ea01c4241235c79a6dd10d59b7", "fields": {"nom_de_la_commune": "ARTHEZ DE BEARN", "libell_d_acheminement": "ARTHEZ DE BEARN", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64057"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17b9493644cf2a5987a86b59497d81a1dfad9c18", "fields": {"nom_de_la_commune": "ARTHEZ D ASSON", "libell_d_acheminement": "ARTHEZ D ASSON", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64058"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab3bd37b89a983e557e7964bef3e4b1eef2261c3", "fields": {"nom_de_la_commune": "ARTIGUELOUTAN", "libell_d_acheminement": "ARTIGUELOUTAN", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64059"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0db7d26c03897baa7e793d64c2a40bc1e93c66", "fields": {"nom_de_la_commune": "ARUDY", "libell_d_acheminement": "ARUDY", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64062"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80233f75fd78c0f5bde9650a0247ef6a29415c55", "fields": {"nom_de_la_commune": "ASASP ARROS", "libell_d_acheminement": "ASASP ARROS", "code_postal": "64660", "coordonnees_gps": [43.1157198025, -0.622971094801], "code_commune_insee": "64064"}, "geometry": {"type": "Point", "coordinates": [-0.622971094801, 43.1157198025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b690fb74ae7603e1c82e0dba92747c21d2f19eb", "fields": {"code_postal": "64660", "code_commune_insee": "64064", "libell_d_acheminement": "ASASP ARROS", "ligne_5": "ARROS D OLORON", "nom_de_la_commune": "ASASP ARROS", "coordonnees_gps": [43.1157198025, -0.622971094801]}, "geometry": {"type": "Point", "coordinates": [-0.622971094801, 43.1157198025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ef4e79e0328d7d3ac6ee364471e972c8dee419", "fields": {"nom_de_la_commune": "ASSAT", "libell_d_acheminement": "ASSAT", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64067"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9025d7a85b218491a512d21ad167cda3a456d2e", "fields": {"nom_de_la_commune": "ATHOS ASPIS", "libell_d_acheminement": "ATHOS ASPIS", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64071"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e730bd0612c810170bf82197c77a4edc7dab21", "fields": {"nom_de_la_commune": "AUDAUX", "libell_d_acheminement": "AUDAUX", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64075"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc78cedcd79dad0253355ea79deedcafb6e847c", "fields": {"nom_de_la_commune": "AUTERRIVE", "libell_d_acheminement": "AUTERRIVE", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64082"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac5b34dd496f93c9cc998f3e5e576157359c18b", "fields": {"nom_de_la_commune": "AYHERRE", "libell_d_acheminement": "AYHERRE", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64086"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2494f8f171ab8bae9e7c14bcd22c25627b8db798", "fields": {"nom_de_la_commune": "BALEIX", "libell_d_acheminement": "BALEIX", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64089"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d168f14f320343300ebf8ab73a1b74ebfa112a77", "fields": {"nom_de_la_commune": "BALIRACQ MAUMUSSON", "libell_d_acheminement": "BALIRACQ MAUMUSSON", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64090"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28aee838d34855588cb9ded79e33634e0d46aa36", "fields": {"nom_de_la_commune": "BALIROS", "libell_d_acheminement": "BALIROS", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64091"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e69c3f40fbe68b973eade8b802320d5a318aa5a", "fields": {"nom_de_la_commune": "BANCA", "libell_d_acheminement": "BANCA", "code_postal": "64430", "coordonnees_gps": [43.1256104701, -1.37703506654], "code_commune_insee": "64092"}, "geometry": {"type": "Point", "coordinates": [-1.37703506654, 43.1256104701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bdb4f710bb54e4faa4dfe5424fb0bfd2dede738", "fields": {"nom_de_la_commune": "BASTANES", "libell_d_acheminement": "BASTANES", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64099"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "448fb66351d6cf59a806b2618fb5a3d0de57a761", "fields": {"nom_de_la_commune": "BASSUSSARRY", "libell_d_acheminement": "BASSUSSARRY", "code_postal": "64200", "coordonnees_gps": [43.44355076, -1.52562527873], "code_commune_insee": "64100"}, "geometry": {"type": "Point", "coordinates": [-1.52562527873, 43.44355076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74d703422ea5ebafda22392ac5ef350327352587", "fields": {"nom_de_la_commune": "BEDOUS", "libell_d_acheminement": "BEDOUS", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64104"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a21d2be93184bccf255e4158df563e113065b3d", "fields": {"nom_de_la_commune": "BEHORLEGUY", "libell_d_acheminement": "BEHORLEGUY", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64107"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "267b911d0465c0b6b94a349e58bc1590745d7b3a", "fields": {"nom_de_la_commune": "BEOST", "libell_d_acheminement": "BEOST", "code_postal": "64440", "coordonnees_gps": [42.9183295476, -0.395850195838], "code_commune_insee": "64110"}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a848f9010d0c2371f5ce03a26935bbf3188d4e4", "fields": {"nom_de_la_commune": "BESINGRAND", "libell_d_acheminement": "BESINGRAND", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64117"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfde2a0cc7817574c2dea9132f36d622b7f036d", "fields": {"nom_de_la_commune": "BETRACQ", "libell_d_acheminement": "BETRACQ", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64118"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d2d564b3e0628358932e046f2353844b27832fe", "fields": {"nom_de_la_commune": "BEYRIE SUR JOYEUSE", "libell_d_acheminement": "BEYRIE SUR JOYEUSE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64120"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68f75c8ea91bf0c6df4fbc6e4ec03c60a978de09", "fields": {"nom_de_la_commune": "BEYRIE EN BEARN", "libell_d_acheminement": "BEYRIE EN BEARN", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64121"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08c85e3bac4b0f5b6ee29b0cecd7130da0abc4c2", "fields": {"nom_de_la_commune": "BIRIATOU", "libell_d_acheminement": "BIRIATOU", "code_postal": "64700", "coordonnees_gps": [43.3477852312, -1.71224103787], "code_commune_insee": "64130"}, "geometry": {"type": "Point", "coordinates": [-1.71224103787, 43.3477852312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb0fad661ece4acfd647b02e1fa78994af1698fb", "fields": {"nom_de_la_commune": "BONLOC", "libell_d_acheminement": "BONLOC", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64134"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d6a9b9ab07659e00950e806cae6f8283c92f83", "fields": {"nom_de_la_commune": "BONNUT", "libell_d_acheminement": "BONNUT", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64135"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3243c9b6d65d6367440c5fa162a0a8ad84139173", "fields": {"nom_de_la_commune": "BORCE", "libell_d_acheminement": "BORCE", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64136"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6a9cd80bbafb341373c2151523fb7b933695c7c", "fields": {"nom_de_la_commune": "BOUILLON", "libell_d_acheminement": "BOUILLON", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64143"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1acf67a051e478e8833e1309f49eaf5f70d69ff", "fields": {"nom_de_la_commune": "BURGARONNE", "libell_d_acheminement": "BURGARONNE", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64151"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521ed7302e2c6564e61656a0eb6a3fdb214ed360", "fields": {"nom_de_la_commune": "CADILLON", "libell_d_acheminement": "CADILLON", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64159"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ef5478648f8a5d623db89b38efdf6bc98530e3", "fields": {"nom_de_la_commune": "CARDESSE", "libell_d_acheminement": "CARDESSE", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64165"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "860eaa69587ce3824e5e2653a8b86af42d519825", "fields": {"nom_de_la_commune": "CASTEIDE CAMI", "libell_d_acheminement": "CASTEIDE CAMI", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64171"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "330f65d4f35da6cfe056309ce3ea61b3b43719a2", "fields": {"nom_de_la_commune": "CASTERA LOUBIX", "libell_d_acheminement": "CASTERA LOUBIX", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64174"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5377a7bf9280d3e8c5dd424687957119d08d7785", "fields": {"nom_de_la_commune": "CASTETPUGON", "libell_d_acheminement": "CASTETPUGON", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64180"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a522ba85863609d39bee7ac0e14ca17aec076e72", "fields": {"nom_de_la_commune": "CAUBIOS LOOS", "libell_d_acheminement": "CAUBIOS LOOS", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64183"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ab2ee3950f3eea6346569a9cb6dabc901f61001", "fields": {"nom_de_la_commune": "CROUSEILLES", "libell_d_acheminement": "CROUSEILLES", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64196"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cf86d0acaa34d70c6a15c090816c5e57757c51c", "fields": {"nom_de_la_commune": "DOGNEN", "libell_d_acheminement": "DOGNEN", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64201"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "903c32298b01c05d19a561770032257b868330b8", "fields": {"nom_de_la_commune": "DOUMY", "libell_d_acheminement": "DOUMY", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64203"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "346a0fb691d164f68f1bd77a3a24ad89e8c07915", "fields": {"nom_de_la_commune": "ESPOEY", "libell_d_acheminement": "ESPOEY", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64216"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b321def52cfbbd8a6373cd54f5731557eeaddb4", "fields": {"nom_de_la_commune": "FEAS", "libell_d_acheminement": "FEAS", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64225"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f3e5e5e741fc77aedb0e6932c2308d46a475d24", "fields": {"nom_de_la_commune": "GABASTON", "libell_d_acheminement": "GABASTON", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64227"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf43a45630ac8a6c48ed4974f355b2db5eddd08", "fields": {"nom_de_la_commune": "GABAT", "libell_d_acheminement": "GABAT", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64228"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd1bff882cc82a6b5b49f5426f1cff525c685939", "fields": {"nom_de_la_commune": "GARINDEIN", "libell_d_acheminement": "GARINDEIN", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64231"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0985513e541f33e98b4e697744a800f41c65886", "fields": {"nom_de_la_commune": "GELOS", "libell_d_acheminement": "GELOS", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64237"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37354524c0006fe40015750af09e7b415758a6c", "fields": {"nom_de_la_commune": "GERDEREST", "libell_d_acheminement": "GERDEREST", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64239"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7406f66aa2b8ecb9c96bac532f87644f76a2cf2e", "fields": {"nom_de_la_commune": "GERONCE", "libell_d_acheminement": "GERONCE", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64241"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c235ca686e8a02b8224bec78f20f1487777d28", "fields": {"nom_de_la_commune": "CHAMPAUBERT", "libell_d_acheminement": "CHAMPAUBERT", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51113"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "675bb380918507a59149f91180eec846b814c3ea", "fields": {"nom_de_la_commune": "CHAMPVOISY", "libell_d_acheminement": "CHAMPVOISY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51121"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af62e80958c44ecde83c94769420086d7ce414e9", "fields": {"nom_de_la_commune": "LA CHAPELLE SOUS ORBAIS", "libell_d_acheminement": "LA CHAPELLE SOUS ORBAIS", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51128"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9203e28f231112f5e70ddbb0e73a3ffbc6aa15", "fields": {"nom_de_la_commune": "CHATELRAOULD ST LOUVENT", "libell_d_acheminement": "CHATELRAOULD ST LOUVENT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51134"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "933d679bea1b3efb800baa4b1ec42cd83d3921ee", "fields": {"nom_de_la_commune": "CHATRICES", "libell_d_acheminement": "CHATRICES", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51138"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dd768388e10df3d5dff86c8bd389269c17a45e8", "fields": {"nom_de_la_commune": "CHAUMUZY", "libell_d_acheminement": "CHAUMUZY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51140"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "175b3dcf2f0c4c9175e71f879033b9b19681a9ef", "fields": {"nom_de_la_commune": "LA CHEPPE", "libell_d_acheminement": "LA CHEPPE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51147"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be3a789b7f7f4d4f65a67f1563e0815bc6acc2e4", "fields": {"nom_de_la_commune": "CHEPY", "libell_d_acheminement": "CHEPY", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51149"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88baec117cf15c0d405eebeeb9b63be7a9f5c020", "fields": {"nom_de_la_commune": "CLAMANGES", "libell_d_acheminement": "CLAMANGES", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51154"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43bce19bd484a89edf9d23bf086fc989f0e9f39", "fields": {"nom_de_la_commune": "CLESLES", "libell_d_acheminement": "CLESLES", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51155"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f665cde1361b06e0c9b2595d338e25c808ffdd9", "fields": {"nom_de_la_commune": "CLOYES SUR MARNE", "libell_d_acheminement": "CLOYES SUR MARNE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51156"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "203c990bfa2d6bc8e64accca7d08f2d3675d5005", "fields": {"nom_de_la_commune": "CONFLANS SUR SEINE", "libell_d_acheminement": "CONFLANS SUR SEINE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51162"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e446512fc1774b7165923d125c55182acd72c8", "fields": {"nom_de_la_commune": "CONNANTRE", "libell_d_acheminement": "CONNANTRE", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51165"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2143ba1f665217322435b51322d1b6e42f8016fc", "fields": {"nom_de_la_commune": "COOLE", "libell_d_acheminement": "COOLE", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51167"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d4b2b191c0ac774cccdc7aafd6217d56649b82", "fields": {"nom_de_la_commune": "CORFELIX", "libell_d_acheminement": "CORFELIX", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51170"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7256ab3c25c1f87ecd0bd4c0ebb617303c6bffe", "fields": {"nom_de_la_commune": "CORRIBERT", "libell_d_acheminement": "CORRIBERT", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51174"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b36dce8f49350e175fd8e09a9aef3d6ee309abf5", "fields": {"nom_de_la_commune": "CORROBERT", "libell_d_acheminement": "CORROBERT", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51175"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9b01b9194af42149a94488ffcacf14a87e21ec", "fields": {"nom_de_la_commune": "CORROY", "libell_d_acheminement": "CORROY", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51176"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b3c4c59d76d78eb315ee9faac2aed12e2a6e9df", "fields": {"nom_de_la_commune": "COULOMMES LA MONTAGNE", "libell_d_acheminement": "COULOMMES LA MONTAGNE", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51177"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8343be81f35a36120498ebacd5614b5ec2584a1", "fields": {"nom_de_la_commune": "COURCEMAIN", "libell_d_acheminement": "COURCEMAIN", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51182"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45d8bcbd1f8ca08194a43d810b030cd32761dd99", "fields": {"nom_de_la_commune": "COURTAGNON", "libell_d_acheminement": "COURTAGNON", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51190"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78068e81148b0b305208b9cd2f608b9709c26604", "fields": {"nom_de_la_commune": "LA CROIX EN CHAMPAGNE", "libell_d_acheminement": "LA CROIX EN CHAMPAGNE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51197"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5462e7fb2404ea3f7eeb2a74de8059e702f649", "fields": {"nom_de_la_commune": "CUIS", "libell_d_acheminement": "CUIS", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51200"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8892b1d80c2df6d3c845b53e4950173789719fe4", "fields": {"nom_de_la_commune": "DAMPIERRE SUR MOIVRE", "libell_d_acheminement": "DAMPIERRE SUR MOIVRE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51208"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d93eb125fcb6a99dd35e4e6efba4a0a7b8a12982", "fields": {"nom_de_la_commune": "DOMMARTIN LETTREE", "libell_d_acheminement": "DOMMARTIN LETTREE", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51212"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e94039aaec516b5ce2c8f65d6f901722d017c4f", "fields": {"nom_de_la_commune": "DONTRIEN", "libell_d_acheminement": "DONTRIEN", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51216"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daee612ac100eccdf2157f24561f7e849bc5f418", "fields": {"nom_de_la_commune": "EPERNAY", "libell_d_acheminement": "EPERNAY", "code_postal": "51200", "coordonnees_gps": [49.0369295263, 3.93142899495], "code_commune_insee": "51230"}, "geometry": {"type": "Point", "coordinates": [3.93142899495, 49.0369295263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0708ec87e248653991978eaff75bd5fe11364177", "fields": {"nom_de_la_commune": "L EPINE", "libell_d_acheminement": "L EPINE", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51231"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2af732c4d2f63ea85f3fc71258af1e8ba40354dd", "fields": {"nom_de_la_commune": "ESTERNAY", "libell_d_acheminement": "ESTERNAY", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51237"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93695d23d5f613e9c06f18f2ceeec905615a13e1", "fields": {"nom_de_la_commune": "ETOGES", "libell_d_acheminement": "ETOGES", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51238"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b29a2906140b0740821107415a4d2b89f0f9d5", "fields": {"nom_de_la_commune": "FEREBRIANGES", "libell_d_acheminement": "FEREBRIANGES", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51247"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981dc5173f82c8cd184d7595deae568533a3a7db", "fields": {"nom_de_la_commune": "FERE CHAMPENOISE", "libell_d_acheminement": "FERE CHAMPENOISE", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51248"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88b3f48cb3c7ae2bc4de3e5cb462edf51defbc0a", "fields": {"code_postal": "51230", "code_commune_insee": "51248", "libell_d_acheminement": "FERE CHAMPENOISE", "ligne_5": "NORMEE", "nom_de_la_commune": "FERE CHAMPENOISE", "coordonnees_gps": [48.7311539666, 3.95932221935]}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d185342f19443f60d4e696672d96ebe468c410", "fields": {"nom_de_la_commune": "FISMES", "libell_d_acheminement": "FISMES", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51250"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0c5401c2418f211dc93d14b345b890e9d39c8ca", "fields": {"nom_de_la_commune": "FLEURY LA RIVIERE", "libell_d_acheminement": "FLEURY LA RIVIERE", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51252"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "962310debcac7cc53bb1ff91c6d9c710ec7ab1a4", "fields": {"nom_de_la_commune": "FONTAINE SUR AY", "libell_d_acheminement": "FONTAINE SUR AY", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51256"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "948bd5c654bf292dd0f4beead0d7b54138aa68cd", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51259"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51dcae8814d14307455ff498b184ffced830c8a", "fields": {"nom_de_la_commune": "GIFFAUMONT CHAMPAUBERT", "libell_d_acheminement": "GIFFAUMONT CHAMPAUBERT", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51269"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36c1fa5350e663ed56d90075f6f81aa70e0eb59", "fields": {"nom_de_la_commune": "GIGNY BUSSY", "libell_d_acheminement": "GIGNY BUSSY", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51270"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7263d6f10743dd564257fd7bd64e528d7faab1", "fields": {"nom_de_la_commune": "GIONGES", "libell_d_acheminement": "GIONGES", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51271"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "501792bde9317966455a9807438e23cf643b2861", "fields": {"nom_de_la_commune": "GIVRY EN ARGONNE", "libell_d_acheminement": "GIVRY EN ARGONNE", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51272"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d47e536a4fbd5e4dbf08fb9c3a747ef9e0bf5fd", "fields": {"nom_de_la_commune": "STE MARIE DU LAC NUISEMENT", "libell_d_acheminement": "STE MARIE DU LAC NUISEMENT", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51277"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b6558f6ef94ff4068c0437cd2ecc413d9fa13ca", "fields": {"nom_de_la_commune": "HAUTVILLERS", "libell_d_acheminement": "HAUTVILLERS", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51287"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a554786bb5cd051f8419db3aebb3ca3faf8457", "fields": {"nom_de_la_commune": "HEUTREGIVILLE", "libell_d_acheminement": "HEUTREGIVILLE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51293"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9747e4d1007bb2e08ff14c7abd606a6df434de74", "fields": {"nom_de_la_commune": "HOURGES", "libell_d_acheminement": "HOURGES", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51294"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab276a80559cfe6d7f78a438af65a040ceea923", "fields": {"nom_de_la_commune": "HUMBAUVILLE", "libell_d_acheminement": "HUMBAUVILLE", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51296"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "482ea165ed23ff1f5eedf8f5beaad88805a6b318", "fields": {"nom_de_la_commune": "ISLES SUR SUIPPE", "libell_d_acheminement": "ISLES SUR SUIPPE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51299"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba507ceb0f121ac6f41bc0cf05087dd2ef224f75", "fields": {"nom_de_la_commune": "ISSE", "libell_d_acheminement": "ISSE", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51301"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c08c90b1d1419032d5c4ef08ee68b968a693369c", "fields": {"nom_de_la_commune": "JONCHERY SUR VESLE", "libell_d_acheminement": "JONCHERY SUR VESLE", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51308"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb46111b68144bec6c038ed8699eb494327c53fd", "fields": {"nom_de_la_commune": "JOUY LES REIMS", "libell_d_acheminement": "JOUY LES REIMS", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51310"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c640a140463ac3076e95cf0a9a86c72f4d8b7f4", "fields": {"nom_de_la_commune": "LAGERY", "libell_d_acheminement": "LAGERY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51314"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f46e843d99471a4e3a7e6b728f43d75d58bc71", "fields": {"nom_de_la_commune": "LAVAL SUR TOURBE", "libell_d_acheminement": "LAVAL SUR TOURBE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51317"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "920782279dc2530add55ec74943f9315aa0cb77e", "fields": {"nom_de_la_commune": "LINTHELLES", "libell_d_acheminement": "LINTHELLES", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51323"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e10783a64e35db87f53c748cadf559d758502f8", "fields": {"nom_de_la_commune": "LISSE EN CHAMPAGNE", "libell_d_acheminement": "LISSE EN CHAMPAGNE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51325"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a3b05da45928e36750954911872886372cf469", "fields": {"nom_de_la_commune": "LIVRY LOUVERCY", "libell_d_acheminement": "LIVRY LOUVERCY", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51326"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b9c3b128c980352314c061cf9e1959c9c50d23", "fields": {"nom_de_la_commune": "LOIVRE", "libell_d_acheminement": "LOIVRE", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51329"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a767ae9f651fcbfab819a07c428cdbc5b95a40f", "fields": {"nom_de_la_commune": "MAFFRECOURT", "libell_d_acheminement": "MAFFRECOURT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51336"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f872d1a9960809e23780a48e2765d3425351a22", "fields": {"nom_de_la_commune": "MAROLLES", "libell_d_acheminement": "MAROLLES", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51352"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c0ecf9a134a37c813274a20c61c8abb494ecfa9", "fields": {"nom_de_la_commune": "MARSANGIS", "libell_d_acheminement": "MARSANGIS", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51353"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e2423e651562a6419798a4a014160b9b9ee4e2", "fields": {"nom_de_la_commune": "LE MEIX TIERCELIN", "libell_d_acheminement": "LE MEIX TIERCELIN", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51361"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c422277304cbedfca813c3871e58ada0a2b6b00", "fields": {"nom_de_la_commune": "MERLAUT", "libell_d_acheminement": "MERLAUT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51363"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18d7d8c92298077f7edb8e280ec3c4192dc21736", "fields": {"nom_de_la_commune": "MINAUCOURT LE MESNIL LES HURLUS", "libell_d_acheminement": "MINAUCOURT LE MESNIL LES HURLUS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51368"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ca60bde9788a3b295873627198f1bf30bd520b", "fields": {"nom_de_la_commune": "MOIVRE", "libell_d_acheminement": "MOIVRE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51371"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370162ceb9c94ed4b64180491910945dc2267e2f", "fields": {"nom_de_la_commune": "MONCETZ L ABBAYE", "libell_d_acheminement": "MONCETZ L ABBAYE", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51373"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2ac166f2cf1099efe3e74f3519306b4eb7628fc", "fields": {"nom_de_la_commune": "MONTBRE", "libell_d_acheminement": "MONTBRE", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51375"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebf32ef57d3d481565df69ebfbea3f830556656", "fields": {"nom_de_la_commune": "MONTEPREUX", "libell_d_acheminement": "MONTEPREUX", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51377"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9760efb2d27d989b33fd3492a0b9f722255b4a70", "fields": {"code_postal": "51210", "code_commune_insee": "51380", "libell_d_acheminement": "MONTMIRAIL", "ligne_5": "MACLAUNAY", "nom_de_la_commune": "MONTMIRAIL", "coordonnees_gps": [48.8662532943, 3.59451333889]}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9483207ee40e66624c8a2cc7fe6998fd95f801be", "fields": {"nom_de_la_commune": "MONTMORT LUCY", "libell_d_acheminement": "MONTMORT LUCY", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51381"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c85b3804f78705c68958eef1200e51c28fab1d", "fields": {"nom_de_la_commune": "MORANGIS", "libell_d_acheminement": "MORANGIS", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51384"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d8399ea3ef105916cdf488a1f8f3609b66a5661", "fields": {"nom_de_la_commune": "MUTIGNY", "libell_d_acheminement": "MUTIGNY", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51392"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a26b6d092585ed375294a25673b9041f2e0ef318", "fields": {"nom_de_la_commune": "NESLE LE REPONS", "libell_d_acheminement": "NESLE LE REPONS", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51396"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0fb3769666b3526d6ca63607a17d804cf1da111", "fields": {"nom_de_la_commune": "LA NOUE", "libell_d_acheminement": "LA NOUE", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51407"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a4e7a22d16ba35c6a4e9ba261315d9847907447", "fields": {"nom_de_la_commune": "OGNES", "libell_d_acheminement": "OGNES", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51412"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60897fccf3ef60b3778a553ca4ac82bb39fc751e", "fields": {"nom_de_la_commune": "OLIZY", "libell_d_acheminement": "OLIZY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51414"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24e3642f4118004594bd4b765df569b8ce4a70e", "fields": {"nom_de_la_commune": "ORCONTE", "libell_d_acheminement": "ORCONTE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51417"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca88036676d1db58053d2cb2399cc046df03979", "fields": {"nom_de_la_commune": "ORMES", "libell_d_acheminement": "ORMES", "code_postal": "51370", "coordonnees_gps": [49.2503894906, 3.96059449419], "code_commune_insee": "51418"}, "geometry": {"type": "Point", "coordinates": [3.96059449419, 49.2503894906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee66a63e59a30ac0efab4d94f452b029ed4d7f86", "fields": {"nom_de_la_commune": "PARGNY SUR SAULX", "libell_d_acheminement": "PARGNY SUR SAULX", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51423"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d3f1fea96e90600865ae86916d78f1648e52ddf", "fields": {"nom_de_la_commune": "PEAS", "libell_d_acheminement": "PEAS", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51426"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72a5e65bc0f44fe1a78b25d40de2613b855b4ad", "fields": {"nom_de_la_commune": "PIERRY", "libell_d_acheminement": "PIERRY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51431"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0b6167fcdbaf07e6953451694fd87d02ed086a", "fields": {"nom_de_la_commune": "POTANGIS", "libell_d_acheminement": "POTANGIS", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51443"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d045158ca20d0488cd95c42f46cc1804cd1bb1ef", "fields": {"nom_de_la_commune": "POURCY", "libell_d_acheminement": "POURCY", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51445"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b1af9e7747ca3ed4c5ba4b77ea1d2c4d91cf717", "fields": {"nom_de_la_commune": "PUISIEULX", "libell_d_acheminement": "PUISIEULX", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51450"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ded2bbbb48969f7655d3b4b55119c891bc4e0c6b", "fields": {"nom_de_la_commune": "QUEUDES", "libell_d_acheminement": "QUEUDES", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51451"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e58953d2a903e7d063c38f4dc538e2e9dfe6d00", "fields": {"nom_de_la_commune": "RECY", "libell_d_acheminement": "RECY", "code_postal": "51520", "coordonnees_gps": [48.9826382604, 4.36070920817], "code_commune_insee": "51453"}, "geometry": {"type": "Point", "coordinates": [4.36070920817, 48.9826382604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9772a7bbdcc09c59e65b7bdd0876c2bf39bca19", "fields": {"nom_de_la_commune": "REUIL", "libell_d_acheminement": "REUIL", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51457"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c22d0b7ad1d2d5a6933caee07fa56e7d43b391", "fields": {"nom_de_la_commune": "REVEILLON", "libell_d_acheminement": "REVEILLON", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51459"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f975c19a64f1721e0991962ac3f4cdd1b8071b1", "fields": {"nom_de_la_commune": "ROSNAY", "libell_d_acheminement": "ROSNAY", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51468"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3394f362ed0545b9a7eb8ce4ce632cab70db68a2", "fields": {"nom_de_la_commune": "ST BON", "libell_d_acheminement": "ST BON", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51473"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31b43f90472d4c3aca88d2052cda7afe7afbb7d0", "fields": {"nom_de_la_commune": "ST ETIENNE AU TEMPLE", "libell_d_acheminement": "ST ETIENNE AU TEMPLE", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51476"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84e361553e574d0c72affc3ef234ea3fe5bb828c", "fields": {"nom_de_la_commune": "ST GILLES", "libell_d_acheminement": "ST GILLES", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51484"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "818a5c3064bbf9fe75582f0ca9480968da84055f", "fields": {"nom_de_la_commune": "ST IMOGES", "libell_d_acheminement": "ST IMOGES", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51488"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b1042d3192544adc5df9b2b7c4183aa521c478", "fields": {"nom_de_la_commune": "ST MARD SUR LE MONT", "libell_d_acheminement": "ST MARD SUR LE MONT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51500"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e442f0bcab2c330226f3757f0b4d4820b1bf8ac", "fields": {"nom_de_la_commune": "STE MARIE A PY", "libell_d_acheminement": "STE MARIE A PY", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51501"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c71ea1c97251bc963a09ded80a65b7966bb8f2", "fields": {"nom_de_la_commune": "ST REMY EN BOUZEMONT ST GENEST ISSON", "libell_d_acheminement": "ST REMY EN BOUZEMONT ST GENEST", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51513"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc37217521521b3bced08fbd0ffe14cde20c7ca7", "fields": {"nom_de_la_commune": "SARRY", "libell_d_acheminement": "SARRY", "code_postal": "51520", "coordonnees_gps": [48.9826382604, 4.36070920817], "code_commune_insee": "51525"}, "geometry": {"type": "Point", "coordinates": [4.36070920817, 48.9826382604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d2c94bdb552091019f9589ce9580d95a2f1d5d", "fields": {"nom_de_la_commune": "SAVIGNY SUR ARDRES", "libell_d_acheminement": "SAVIGNY SUR ARDRES", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51527"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1ce3e5bcd704ab187f9716a119f908d1d05f558", "fields": {"nom_de_la_commune": "SELLES", "libell_d_acheminement": "SELLES", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51529"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eef6ba8fd16684a000fba17ff3412ef2755c9b56", "fields": {"nom_de_la_commune": "SERMIERS", "libell_d_acheminement": "SERMIERS", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51532"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f05f823bd593f23af4acc193782b7a9764d682", "fields": {"nom_de_la_commune": "SERZY ET PRIN", "libell_d_acheminement": "SERZY ET PRIN", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51534"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633a53de88ca258cb6c998d8a85b21ae2ee2879a", "fields": {"nom_de_la_commune": "SOMPUIS", "libell_d_acheminement": "SOMPUIS", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51550"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6c12dd809d85164437643d9e7141bd97eb3cf6", "fields": {"nom_de_la_commune": "DAMPVITOUX", "libell_d_acheminement": "DAMPVITOUX", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54153"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c64a39d400b57714a0c1b2c5cdaeb2b4664996", "fields": {"nom_de_la_commune": "DEUXVILLE", "libell_d_acheminement": "DEUXVILLE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54155"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64bc9323ba034f9109c75dc23b9c47e4070e1aee", "fields": {"nom_de_la_commune": "DIEULOUARD", "libell_d_acheminement": "DIEULOUARD", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54157"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b1f1dc54ddfd54d604727f6f466decc83c8164", "fields": {"nom_de_la_commune": "DOMGERMAIN", "libell_d_acheminement": "DOMGERMAIN", "code_postal": "54119", "coordonnees_gps": [48.6416908501, 5.82316792671], "code_commune_insee": "54162"}, "geometry": {"type": "Point", "coordinates": [5.82316792671, 48.6416908501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04afb7793d1fc09e58243e4ee4d60bd4a3dd2a89", "fields": {"nom_de_la_commune": "DOMMARIE EULMONT", "libell_d_acheminement": "DOMMARIE EULMONT", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54164"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e012a53330d34e0fb156620991325c39451fec9f", "fields": {"code_postal": "54200", "code_commune_insee": "54174", "libell_d_acheminement": "ECROUVES", "ligne_5": "GRAND MENIL", "nom_de_la_commune": "ECROUVES", "coordonnees_gps": [48.7137861444, 5.87312333064]}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5efea3b818ac58a99166611dbeff19c3c8b145", "fields": {"nom_de_la_commune": "EMBERMENIL", "libell_d_acheminement": "EMBERMENIL", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54177"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241113a8c7aa2e3112b3fa1bdca06504d79422e4", "fields": {"nom_de_la_commune": "EULMONT", "libell_d_acheminement": "EULMONT", "code_postal": "54690", "coordonnees_gps": [48.7521802489, 6.20651635247], "code_commune_insee": "54186"}, "geometry": {"type": "Point", "coordinates": [6.20651635247, 48.7521802489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f309fb2836e9e58b5174dc88662dde6cb370ad0", "fields": {"nom_de_la_commune": "FONTENOY LA JOUTE", "libell_d_acheminement": "FONTENOY LA JOUTE", "code_postal": "54122", "coordonnees_gps": [48.4830574623, 6.66436645475], "code_commune_insee": "54201"}, "geometry": {"type": "Point", "coordinates": [6.66436645475, 48.4830574623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda16464caf6e066bebfaa7cd66159c2346cabae", "fields": {"nom_de_la_commune": "FORCELLES ST GORGON", "libell_d_acheminement": "FORCELLES ST GORGON", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54203"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01c400825904ba0b2d610c8c3a8c3f020d82e14", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54208"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33847ba6326b0ba2d1614ce4a978a608efbe5dbb", "fields": {"nom_de_la_commune": "GELACOURT", "libell_d_acheminement": "GELACOURT", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54217"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "196c1593bb6ee1a42ae71764e82fe34b5270dd88", "fields": {"nom_de_la_commune": "GEMONVILLE", "libell_d_acheminement": "GEMONVILLE", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54220"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776f4e460e1140ccffae2c05b2917724bfb8541a", "fields": {"nom_de_la_commune": "GERBEVILLER", "libell_d_acheminement": "GERBEVILLER", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54222"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "000f372891e2c799857ff06b39fe3d4a947ea516", "fields": {"nom_de_la_commune": "GERMINY", "libell_d_acheminement": "GERMINY", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54223"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5e33dbc40d903c6c0e5f0695fa9fd00498cf39", "fields": {"nom_de_la_commune": "GERMONVILLE", "libell_d_acheminement": "GERMONVILLE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54224"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e417d36f07b27d3962915d27cd0a6c1a9b01ef7e", "fields": {"nom_de_la_commune": "GOGNEY", "libell_d_acheminement": "GOGNEY", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54230"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02d8131292cbe69738cc8088952b3d53750f6d9", "fields": {"nom_de_la_commune": "GONDRECOURT AIX", "libell_d_acheminement": "GONDRECOURT AIX", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54231"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174d45b75bfc44d5d4df644da62d7bc587c280b8", "fields": {"nom_de_la_commune": "GRAND FAILLY", "libell_d_acheminement": "GRAND FAILLY", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54236"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46fd7a9a63501ce5c68e26f117b2934bfe69ea55", "fields": {"code_postal": "54260", "code_commune_insee": "54236", "libell_d_acheminement": "GRAND FAILLY", "ligne_5": "PETIT XIVRY", "nom_de_la_commune": "GRAND FAILLY", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85dee6303df71f311504d0b566bff21ac2b0ab7", "fields": {"nom_de_la_commune": "GROSROUVRES", "libell_d_acheminement": "GROSROUVRES", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54240"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb9381e701667af199d68e3ef434f150329c8b56", "fields": {"nom_de_la_commune": "HAMMEVILLE", "libell_d_acheminement": "HAMMEVILLE", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54247"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4019cc5ca35aa74001ecc62a524e2ed2e967d43", "fields": {"nom_de_la_commune": "HERIMENIL", "libell_d_acheminement": "HERIMENIL", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54260"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef65f9a50543571f8c4655f2643ff51d0ff68268", "fields": {"nom_de_la_commune": "HOMECOURT", "libell_d_acheminement": "HOMECOURT", "code_postal": "54310", "coordonnees_gps": [49.2227384925, 5.99260044922], "code_commune_insee": "54263"}, "geometry": {"type": "Point", "coordinates": [5.99260044922, 49.2227384925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d58fead99a4a3c3a37cbb7ba1833dfc59108c32", "fields": {"nom_de_la_commune": "IGNEY", "libell_d_acheminement": "IGNEY", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54271"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aaa642c38674c196ef8bc9805b5621b868b9b70", "fields": {"nom_de_la_commune": "JEVONCOURT", "libell_d_acheminement": "JEVONCOURT", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54278"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b92c965682669ff93c3bf2ebee1dfc54ed0fc88", "fields": {"nom_de_la_commune": "LAIX", "libell_d_acheminement": "LAIX", "code_postal": "54720", "coordonnees_gps": [49.4760856618, 5.75537597471], "code_commune_insee": "54290"}, "geometry": {"type": "Point", "coordinates": [5.75537597471, 49.4760856618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ac3ea2425a13584fcfca7132376fcc8fc2be379", "fields": {"nom_de_la_commune": "LAMATH", "libell_d_acheminement": "LAMATH", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54292"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc161bd3e26a61ab301f4e3912c03220559c57c", "fields": {"code_postal": "54410", "code_commune_insee": "54300", "libell_d_acheminement": "LANEUVEVILLE DEVANT NANCY", "ligne_5": "LA MADELEINE", "nom_de_la_commune": "LANEUVEVILLE DEVANT NANCY", "coordonnees_gps": [48.6455435814, 6.24186804631]}, "geometry": {"type": "Point", "coordinates": [6.24186804631, 48.6455435814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83316061c10db4ebe0fbde520367800a22755887", "fields": {"code_postal": "54150", "code_commune_insee": "54302", "libell_d_acheminement": "LANTEFONTAINE", "ligne_5": "IMMONVILLE", "nom_de_la_commune": "LANTEFONTAINE", "coordonnees_gps": [49.264324437, 5.89404491023]}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b768f098e4266fa40afd46e55cc4e340e57c2d", "fields": {"nom_de_la_commune": "LEBEUVILLE", "libell_d_acheminement": "LEBEUVILLE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54307"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e26517fe71e2038367dbec81fb963cf9c9d9e5", "fields": {"nom_de_la_commune": "LENONCOURT", "libell_d_acheminement": "LENONCOURT", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54311"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c59880b7677b010e01e7e682380328170175c751", "fields": {"nom_de_la_commune": "LETRICOURT", "libell_d_acheminement": "LETRICOURT", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54313"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb46f2461aef94343964cc9a70993cee993ef28", "fields": {"nom_de_la_commune": "LEYR", "libell_d_acheminement": "LEYR", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54315"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "410841e3ffad27dba766cb8a3ab21e391adbede6", "fields": {"nom_de_la_commune": "LIRONVILLE", "libell_d_acheminement": "LIRONVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54317"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c6e109294a68387f70c8f386154bfddfbd9a14", "fields": {"nom_de_la_commune": "LOISY", "libell_d_acheminement": "LOISY", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54320"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900ae51e780f70f9c650f3377a58697e10b5231b", "fields": {"nom_de_la_commune": "LONGUYON", "libell_d_acheminement": "LONGUYON", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54322"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c73f098fed6f02e3518cb5fb90abf92456eeb7", "fields": {"nom_de_la_commune": "LUDRES", "libell_d_acheminement": "LUDRES", "code_postal": "54710", "coordonnees_gps": [48.6251795468, 6.18855131653], "code_commune_insee": "54328"}, "geometry": {"type": "Point", "coordinates": [6.18855131653, 48.6251795468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c9dae8a4d8aaeede7844d9bead795ad2f14c58", "fields": {"nom_de_la_commune": "MAIRY MAINVILLE", "libell_d_acheminement": "MAIRY MAINVILLE", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54334"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca9043b3b947e3e9f9989909cfc468276bf7a02c", "fields": {"code_postal": "54150", "code_commune_insee": "54334", "libell_d_acheminement": "MAIRY MAINVILLE", "ligne_5": "MAINVILLE", "nom_de_la_commune": "MAIRY MAINVILLE", "coordonnees_gps": [49.264324437, 5.89404491023]}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1edef19e38d9c3d186e2138f277e9c3fbf97e023", "fields": {"nom_de_la_commune": "MAMEY", "libell_d_acheminement": "MAMEY", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54340"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e320166e9715216f3499f54cd2d6d63bd52206aa", "fields": {"nom_de_la_commune": "MANCE", "libell_d_acheminement": "MANCE", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54341"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c63188b01f6ed2974f92ca95b82fd779eac533", "fields": {"nom_de_la_commune": "MANGONVILLE", "libell_d_acheminement": "MANGONVILLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54344"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4def0f0f699e217e2747913c5aeb0820d01eb61", "fields": {"nom_de_la_commune": "MANONCOURT EN VERMOIS", "libell_d_acheminement": "MANONCOURT EN VERMOIS", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54345"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de33916d269885d6ee0bcca58bfa397632014d9d", "fields": {"nom_de_la_commune": "MANONVILLE", "libell_d_acheminement": "MANONVILLE", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54348"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f54987ffd59b7828829ebe3caf0596ce9c519ad1", "fields": {"nom_de_la_commune": "MANONVILLER", "libell_d_acheminement": "MANONVILLER", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54349"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4d68fed52ac33dc45f350eeed41910af4d231ee", "fields": {"nom_de_la_commune": "MARS LA TOUR", "libell_d_acheminement": "MARS LA TOUR", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54353"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f03c84a80e92f4507b372a19b7813a064ac5937", "fields": {"nom_de_la_commune": "MATTEXEY", "libell_d_acheminement": "MATTEXEY", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54356"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "573229e7614237f8ed148b5fb8d8a10b646f5162", "fields": {"nom_de_la_commune": "MONT L ETROIT", "libell_d_acheminement": "MONT L ETROIT", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54379"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6475a2c33518a7b660294913518ce346c5e72cc7", "fields": {"nom_de_la_commune": "MORIVILLER", "libell_d_acheminement": "MORIVILLER", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54386"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34717b7bb4acb1920942791062854dcd5ada6f85", "fields": {"nom_de_la_commune": "MOUACOURT", "libell_d_acheminement": "MOUACOURT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54388"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea2e902268fcfbf28c8287b6d578af0a2f4dfd55", "fields": {"nom_de_la_commune": "OCHEY", "libell_d_acheminement": "OCHEY", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54405"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888385d3620096ad3f2e026acd4b0ed91228688e", "fields": {"nom_de_la_commune": "OMELMONT", "libell_d_acheminement": "OMELMONT", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54409"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce733d8511ad1dfc5056cda03f83bdbd5778acf", "fields": {"nom_de_la_commune": "ONVILLE", "libell_d_acheminement": "ONVILLE", "code_postal": "54890", "coordonnees_gps": [49.0257742751, 5.94673598373], "code_commune_insee": "54410"}, "geometry": {"type": "Point", "coordinates": [5.94673598373, 49.0257742751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f42a5bf09cb67b756b9a584b7c0af30b0d44c1", "fields": {"nom_de_la_commune": "PANNES", "libell_d_acheminement": "PANNES", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54416"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd5c335ca7f837d19dc244577d873fc4f73c1f1", "fields": {"nom_de_la_commune": "PAREY ST CESAIRE", "libell_d_acheminement": "PAREY ST CESAIRE", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54417"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54bfd8f127b7c4d567a7eb4f7c70b80ff952ec04", "fields": {"nom_de_la_commune": "PETTONVILLE", "libell_d_acheminement": "PETTONVILLE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54422"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ab4c8b2d327568736b41884ad2ccf23dc731bd", "fields": {"nom_de_la_commune": "PEXONNE", "libell_d_acheminement": "PEXONNE", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54423"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "648f1df5145b56f8ffb4fc68e92ac002e3d0320d", "fields": {"nom_de_la_commune": "PHLIN", "libell_d_acheminement": "PHLIN", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54424"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b465eccfd0b96b45e6d8b670e4aec5968a8b4f2", "fields": {"nom_de_la_commune": "PIERRE PERCEE", "libell_d_acheminement": "PIERRE PERCEE", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54427"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3142eb322a66ddb46d054d256398581befd47f1", "fields": {"nom_de_la_commune": "PIERREPONT", "libell_d_acheminement": "PIERREPONT", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54428"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bfecc04d31f31a177bb1e7a66bc4aa239060ffc", "fields": {"nom_de_la_commune": "PIERREVILLE", "libell_d_acheminement": "PIERREVILLE", "code_postal": "54160", "coordonnees_gps": [48.5525165802, 6.13358335741], "code_commune_insee": "54429"}, "geometry": {"type": "Point", "coordinates": [6.13358335741, 48.5525165802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139a81264cc147bcd9c8a4c0e396be2b0b9876ff", "fields": {"nom_de_la_commune": "ROGEVILLE", "libell_d_acheminement": "ROGEVILLE", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54460"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9994a3c8e0c1ac51c173a03939a45d9bba39f56c", "fields": {"nom_de_la_commune": "ST AIL", "libell_d_acheminement": "ST AIL", "code_postal": "54580", "coordonnees_gps": [49.1903187118, 5.97291024326], "code_commune_insee": "54469"}, "geometry": {"type": "Point", "coordinates": [5.97291024326, 49.1903187118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bd449161bd28dc757d035da6c733bc1147433c5", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "54950", "coordonnees_gps": [48.5425960628, 6.61591716683], "code_commune_insee": "54472"}, "geometry": {"type": "Point", "coordinates": [6.61591716683, 48.5425960628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34b3ae3727aa6f7f6061418e7dc4ab437d401448", "fields": {"nom_de_la_commune": "ST NICOLAS DE PORT", "libell_d_acheminement": "ST NICOLAS DE PORT", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54483"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7648776801a17735a0b7b587543ebf2d7b7e77", "fields": {"nom_de_la_commune": "SANZEY", "libell_d_acheminement": "SANZEY", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54492"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502a7a3a06500ca5842bf558a8c1b4fbc3743e04", "fields": {"nom_de_la_commune": "SAULNES", "libell_d_acheminement": "SAULNES", "code_postal": "54650", "coordonnees_gps": [49.5295320118, 5.8266810409], "code_commune_insee": "54493"}, "geometry": {"type": "Point", "coordinates": [5.8266810409, 49.5295320118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bab0957308ca08243c3a558d528d08c09a918c54", "fields": {"nom_de_la_commune": "SERANVILLE", "libell_d_acheminement": "SERANVILLE", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54501"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab8b592064a225c1e8c51305caf60b58c7aee84c", "fields": {"nom_de_la_commune": "SERRES", "libell_d_acheminement": "SERRES", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54502"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66ea3a318710098ee19bdc30594d2facf34efc64", "fields": {"nom_de_la_commune": "SEXEY LES BOIS", "libell_d_acheminement": "SEXEY LES BOIS", "code_postal": "54840", "coordonnees_gps": [48.6916643372, 6.00665545464], "code_commune_insee": "54506"}, "geometry": {"type": "Point", "coordinates": [6.00665545464, 48.6916643372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76148b6d34a75ba33fc308a71406124cff28ee95", "fields": {"nom_de_la_commune": "SOMMERVILLER", "libell_d_acheminement": "SOMMERVILLER", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54509"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee3a3e2c1d827e71ccf0d722333b9d169e2a067a", "fields": {"nom_de_la_commune": "COURCELLES DE TOURAINE", "libell_d_acheminement": "COURCELLES DE TOURAINE", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37086"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7208c746d0c661bb5d1137f3bfd34f27107c6da1", "fields": {"nom_de_la_commune": "LA CROIX EN TOURAINE", "libell_d_acheminement": "LA CROIX EN TOURAINE", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37091"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7977964ac37e74dee7ecff2eae747130daf5ca3", "fields": {"nom_de_la_commune": "CUSSAY", "libell_d_acheminement": "CUSSAY", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37094"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae50bf1e87f5889e9d05d1b8fe0f437bece0d37", "fields": {"nom_de_la_commune": "FONDETTES", "libell_d_acheminement": "FONDETTES", "code_postal": "37230", "coordonnees_gps": [47.4147332779, 0.547534714708], "code_commune_insee": "37109"}, "geometry": {"type": "Point", "coordinates": [0.547534714708, 47.4147332779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd72f87297e592d930e7f463eb9d546beb68c51a", "fields": {"nom_de_la_commune": "HOMMES", "libell_d_acheminement": "HOMMES", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37117"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0a0c6674eae2f4bf2eb4e644b3b32381f33202e", "fields": {"nom_de_la_commune": "JAULNAY", "libell_d_acheminement": "JAULNAY", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37121"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862764219bca2f9ed4ae12b9bb1e52bf6330f615", "fields": {"nom_de_la_commune": "JOUE LES TOURS", "libell_d_acheminement": "JOUE LES TOURS", "code_postal": "37300", "coordonnees_gps": [47.3328059161, 0.654077388292], "code_commune_insee": "37122"}, "geometry": {"type": "Point", "coordinates": [0.654077388292, 47.3328059161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2061c9eb41479198592e24ec2b9b1efe74215362", "fields": {"nom_de_la_commune": "LEMERE", "libell_d_acheminement": "LEMERE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37125"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3b643efedf2162ea37086a6f94a406b5fe75b61", "fields": {"nom_de_la_commune": "LERNE", "libell_d_acheminement": "LERNE", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37126"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be6b23e4e27bf11efefa927eb815dfa707ac61d6", "fields": {"nom_de_la_commune": "LE LOUROUX", "libell_d_acheminement": "LE LOUROUX", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37136"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d8397c91b3b13ed911d112244909210eb0d7ebb", "fields": {"nom_de_la_commune": "LUSSAULT SUR LOIRE", "libell_d_acheminement": "LUSSAULT SUR LOIRE", "code_postal": "37400", "coordonnees_gps": [47.3913535441, 0.985132271005], "code_commune_insee": "37138"}, "geometry": {"type": "Point", "coordinates": [0.985132271005, 47.3913535441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce825cc17c822ffe0ec930d05148be0bc2eb449c", "fields": {"nom_de_la_commune": "MAILLE", "libell_d_acheminement": "MAILLE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37142"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55356befca241d204afba57b7b4eabe1e2cee012", "fields": {"nom_de_la_commune": "MANTHELAN", "libell_d_acheminement": "MANTHELAN", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37143"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01a084396dfec23498167e8140e7b3d3765054a", "fields": {"nom_de_la_commune": "MARCE SUR ESVES", "libell_d_acheminement": "MARCE SUR ESVES", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "37145"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b444ff31501ef8293b5a9545c57000551ebc84a2", "fields": {"nom_de_la_commune": "MONTLOUIS SUR LOIRE", "libell_d_acheminement": "MONTLOUIS SUR LOIRE", "code_postal": "37270", "coordonnees_gps": [47.3461148739, 0.860028356093], "code_commune_insee": "37156"}, "geometry": {"type": "Point", "coordinates": [0.860028356093, 47.3461148739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b2e5c990f683cd0071e8c0c36cd43fd003e7657", "fields": {"nom_de_la_commune": "MONTRESOR", "libell_d_acheminement": "MONTRESOR", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37157"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a238f9f79eb3ff74a4fcff09bba34a1e48819d", "fields": {"nom_de_la_commune": "MORAND", "libell_d_acheminement": "MORAND", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37160"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24cd326b01681c7be18bf83221099f3f3afc755", "fields": {"nom_de_la_commune": "NEUILLE LE LIERRE", "libell_d_acheminement": "NEUILLE LE LIERRE", "code_postal": "37380", "coordonnees_gps": [47.5261492712, 0.803507929992], "code_commune_insee": "37166"}, "geometry": {"type": "Point", "coordinates": [0.803507929992, 47.5261492712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7afb983cfa2917adb54305d9be58a27de999141e", "fields": {"nom_de_la_commune": "NEUVILLE SUR BRENNE", "libell_d_acheminement": "NEUVILLE SUR BRENNE", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37169"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da637c5c38787e429c6888614d35e2e41916814", "fields": {"nom_de_la_commune": "ORBIGNY", "libell_d_acheminement": "ORBIGNY", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37177"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ae62ad820d05a16e27a39e35697d8676d2e4df", "fields": {"nom_de_la_commune": "PARCAY SUR VIENNE", "libell_d_acheminement": "PARCAY SUR VIENNE", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37180"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ff706c1506f74ff71f0e24ca95bf50ef9c090e", "fields": {"nom_de_la_commune": "POUZAY", "libell_d_acheminement": "POUZAY", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37188"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d7b1a8b516c8283cfaa11177d71fadd8ede0c2", "fields": {"nom_de_la_commune": "RESTIGNE", "libell_d_acheminement": "RESTIGNE", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37193"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb52e2c289fff017b2447e021b752fdf4ab66f2", "fields": {"nom_de_la_commune": "REUGNY", "libell_d_acheminement": "REUGNY", "code_postal": "37380", "coordonnees_gps": [47.5261492712, 0.803507929992], "code_commune_insee": "37194"}, "geometry": {"type": "Point", "coordinates": [0.803507929992, 47.5261492712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f14d784f97f627dc5a3c1c795e7f2320c54d02a8", "fields": {"nom_de_la_commune": "ROUZIERS DE TOURAINE", "libell_d_acheminement": "ROUZIERS DE TOURAINE", "code_postal": "37360", "coordonnees_gps": [47.5289315618, 0.576894142963], "code_commune_insee": "37204"}, "geometry": {"type": "Point", "coordinates": [0.576894142963, 47.5289315618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "337adf5ffb41ff35e425807e026e36afbf2eb0f4", "fields": {"nom_de_la_commune": "ST AUBIN LE DEPEINT", "libell_d_acheminement": "ST AUBIN LE DEPEINT", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37207"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2217cb2379b497b4c38259f54fd69707351f6c36", "fields": {"nom_de_la_commune": "ST ETIENNE DE CHIGNY", "libell_d_acheminement": "ST ETIENNE DE CHIGNY", "code_postal": "37230", "coordonnees_gps": [47.4147332779, 0.547534714708], "code_commune_insee": "37217"}, "geometry": {"type": "Point", "coordinates": [0.547534714708, 47.4147332779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c54d077d868c19c07802e875d3c84d1055201cb", "fields": {"nom_de_la_commune": "ST FLOVIER", "libell_d_acheminement": "ST FLOVIER", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37218"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e341f7457f498f1f13819650c572690a7fb064a", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE ET MIQUELON", "code_postal": "97500", "ligne_5": "ST PIERRE", "code_commune_insee": "97502"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dd9efdcc5f9c1179f300cfc2bd09f5842463f88", "fields": {"nom_de_la_commune": "BANDRELE", "libell_d_acheminement": "BANDRELE", "code_postal": "97660", "coordonnees_gps": [-12.8901616081, 45.1766863463], "code_commune_insee": "97603"}, "geometry": {"type": "Point", "coordinates": [45.1766863463, -12.8901616081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "741495ed717af02188fd81003fc893166b03cdaf", "fields": {"nom_de_la_commune": "MAMOUDZOU", "libell_d_acheminement": "MAMOUDZOU", "code_postal": "97600", "coordonnees_gps": [-12.7725574763, 45.1908759365], "code_commune_insee": "97611"}, "geometry": {"type": "Point", "coordinates": [45.1908759365, -12.7725574763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "933beaa87d4211a41fc2a216181e9f045c598e7a", "fields": {"nom_de_la_commune": "M TSANGAMOUJI", "libell_d_acheminement": "M TSANGAMOUJI", "code_postal": "97650", "coordonnees_gps": [-12.758982005, 45.144203404], "code_commune_insee": "97613"}, "geometry": {"type": "Point", "coordinates": [45.144203404, -12.758982005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fbcb0b1b662345305263b1a463ad308fe4b880", "fields": {"nom_de_la_commune": "SIGAVE", "libell_d_acheminement": "SIGAVE", "code_postal": "98620", "code_commune_insee": "98612"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7988f13a90a7a2fdd51e154a32d4e903d336f54b", "fields": {"nom_de_la_commune": "UVEA", "libell_d_acheminement": "UVEA", "code_postal": "98600", "code_commune_insee": "98613"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93bd35380941de8319ad00afdb668dce9806230b", "fields": {"nom_de_la_commune": "ANAA", "libell_d_acheminement": "TUUHORA", "code_postal": "98760", "ligne_5": "ANAA", "code_commune_insee": "98711"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ffca65c67e3c7b48ced47cfe21e2658200f18f", "fields": {"nom_de_la_commune": "BORA BORA", "libell_d_acheminement": "VAITAPE", "code_postal": "98730", "ligne_5": "BORA BORA", "code_commune_insee": "98714"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b81d765bc8a2b687b8d2d030e2dba7af572b5b6", "fields": {"nom_de_la_commune": "FAKARAVA", "libell_d_acheminement": "OFARE", "code_postal": "98790", "ligne_5": "FAKARAVA", "code_commune_insee": "98716"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd67c3206771da94613ea1fc45f6c67d63020a6e", "fields": {"nom_de_la_commune": "FANGATAU", "libell_d_acheminement": "TARIONE", "code_postal": "98766", "ligne_5": "FANGATAU", "code_commune_insee": "98717"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f7eb5a19b3a286baab24c0e070dcf5cec23207", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "KAMAKA", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c06d64b748928eb55b705ac7ac7b78c5ea83f4b", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "RIKITEA", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1d58732915226342ba8f3c7ec9f9f2475277e9d", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "TARAVAI", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3181174937a60d2da21099ae03930f9052c67b1b", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "TENARUNGA", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd7d7ecb6d7f713097a8c6c88f3f64f1198d4e2a", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "NENGONENGO", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28315c2ca39f8a834fd63754a6377b086d16baa0", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "PARAOA", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d952dcdaf8a6f00c10112d98f4fe1384b66f1127", "fields": {"nom_de_la_commune": "HITIAA O TE RA", "libell_d_acheminement": "HITIAA", "code_postal": "98705", "ligne_5": "HITIAA O TE RA", "code_commune_insee": "98722"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53963b10ba61e1e7e581a7d47dfb53bcae3f8e89", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "MOHOTANI", "code_postal": "98796", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdc08eb5219bb7dadd91e09ff15595f067c5abb4", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "TEFARERII", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f30136d36992d7accf6698ca4edf9f30734b22d", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "FARE", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a90c2fb8061f4984633ded4023228fb3df8005e", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "MARUTEA NORD", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379548670a2820776066fc49ccbfc654d4ee84f2", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "TEPOTO SUD", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32642099cc2127d2d730848b5556d3c5c0046678", "fields": {"nom_de_la_commune": "MANIHI", "libell_d_acheminement": "TENOKUPARA", "code_postal": "98770", "ligne_5": "MANIHI", "code_commune_insee": "98727"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "136092208b1691ed88eeb807363f3787690d3426", "fields": {"nom_de_la_commune": "MAUPITI", "libell_d_acheminement": "MAUPITI", "code_postal": "98732", "code_commune_insee": "98728"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6025953759af030e0420416ec172d93a1c98c2da", "fields": {"nom_de_la_commune": "MAUPITI", "libell_d_acheminement": "MOTU ONE", "code_postal": "98732", "ligne_5": "MAUPITI", "code_commune_insee": "98728"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b420628c1da5d4a20c3e610f2d6ce8f99034f6", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "HAUMI", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c124c242e47e80c5021593c3ebe921004840428", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "PAOPAO", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386b3fc2fc8a12cdd1fe06381c72011ebb7ae27d", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "TIAHURA", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f38fc00008a0acb93d8df2d5b3f1cdd973d29a", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "VARARI", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f25bde4408bde2420b8b7abe3ce5792ac70d134", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "TAIPIVAI", "code_postal": "98742", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beba5c4ce569bc913cf9cb7fcb389b4cf07e4ea8", "fields": {"nom_de_la_commune": "RAIVAVAE", "libell_d_acheminement": "ANATONU", "code_postal": "98750", "ligne_5": "RAIVAVAE", "code_commune_insee": "98739"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b29b1563c911e7d09b7c3a156b02629e6429e45", "fields": {"nom_de_la_commune": "RANGIROA", "libell_d_acheminement": "AVATORU", "code_postal": "98775", "ligne_5": "RANGIROA", "code_commune_insee": "98740"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04b10f9319fc706b31537c88b82b72ade476447b", "fields": {"nom_de_la_commune": "RANGIROA", "libell_d_acheminement": "TIPUTA", "code_postal": "98776", "ligne_5": "RANGIROA", "code_commune_insee": "98740"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa5ee7457ec6f6d9ae7b9cd9ca5ca69c4680ffff", "fields": {"nom_de_la_commune": "RANGIROA", "libell_d_acheminement": "TUHERAHERA", "code_postal": "98778", "ligne_5": "RANGIROA", "code_commune_insee": "98740"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c95655b5e4bb13da6e9153d753b65b61be1fab2", "fields": {"nom_de_la_commune": "REAO", "libell_d_acheminement": "MARAUTAGAROA", "code_postal": "98780", "ligne_5": "REAO", "code_commune_insee": "98742"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62a35e53d3cba3e9ced9611d2a8b6509e8df4cd0", "fields": {"nom_de_la_commune": "RIMATARA", "libell_d_acheminement": "RIMATARA", "code_postal": "98752", "code_commune_insee": "98743"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0755d28bc143e016ff051047ff2b275fc1684aa1", "fields": {"nom_de_la_commune": "RURUTU", "libell_d_acheminement": "MOERAI", "code_postal": "98753", "ligne_5": "RURUTU", "code_commune_insee": "98744"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5f541867988dc2a38ff5e37a456300821d74ba7", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "IRIPAU", "code_postal": "98733", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a75b7a7f865d88006ac40e700a007cae664435cd", "fields": {"nom_de_la_commune": "TAHUATA", "libell_d_acheminement": "MOTOPU", "code_postal": "98743", "ligne_5": "TAHUATA", "code_commune_insee": "98746"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82163c703a241c58d45951e327779f8905fb3f00", "fields": {"nom_de_la_commune": "TAKAROA", "libell_d_acheminement": "TEAVAROA", "code_postal": "98781", "ligne_5": "TAKAROA", "code_commune_insee": "98749"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19783fba979e6bb7a15fa958a0fa89523a8b03cb", "fields": {"nom_de_la_commune": "TAKAROA", "libell_d_acheminement": "FAKATOPATERE", "code_postal": "98782", "ligne_5": "TAKAROA", "code_commune_insee": "98749"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc708ad1ccd46c7f977b414d3468f2c0ec0d97e", "fields": {"nom_de_la_commune": "TUBUAI", "libell_d_acheminement": "MATAURA", "code_postal": "98754", "ligne_5": "TUBUAI", "code_commune_insee": "98753"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecf5fca54365bd5ff10781eb4223497f178579f3", "fields": {"nom_de_la_commune": "UA POU", "libell_d_acheminement": "HAKATAO", "code_postal": "98745", "ligne_5": "UA POU", "code_commune_insee": "98757"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b78898b28262ee998030960b41179cf0799d56e4", "fields": {"nom_de_la_commune": "DUMBEA", "libell_d_acheminement": "DUMBEA", "code_postal": "98839", "code_commune_insee": "98805"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ed2e6b4d67bdc6ba61a254f30105d40c7214e5", "fields": {"nom_de_la_commune": "KAALA GOMEN", "libell_d_acheminement": "KAALA GOMEN", "code_postal": "98817", "code_commune_insee": "98810"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2b23a9f2b3cd7a01b87a67c237a44857b0ceb7", "fields": {"nom_de_la_commune": "LIFOU", "libell_d_acheminement": "WE", "code_postal": "98820", "ligne_5": "LIFOU", "code_commune_insee": "98814"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b399a5e3063aea61ba3cf9d76747d7d5d83454", "fields": {"nom_de_la_commune": "LIFOU", "libell_d_acheminement": "CHEPENEHE", "code_postal": "98884", "ligne_5": "LIFOU", "code_commune_insee": "98814"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2b76815351ccb0d5b6d126eb23f0aaf42bb200", "fields": {"nom_de_la_commune": "MARE", "libell_d_acheminement": "TADINE", "code_postal": "98828", "ligne_5": "MARE", "code_commune_insee": "98815"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33b7e309998647ea6477384ac7d7c9689a010797", "fields": {"nom_de_la_commune": "MARE", "libell_d_acheminement": "LA ROCHE", "code_postal": "98878", "ligne_5": "MARE", "code_commune_insee": "98815"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e4f55536c3c1b6c619f1063ba2f43368087a5c", "fields": {"nom_de_la_commune": "MOINDOU", "libell_d_acheminement": "MOINDOU", "code_postal": "98819", "code_commune_insee": "98816"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53ba37b554bf153fd9cc029dfb7432fe787d0646", "fields": {"nom_de_la_commune": "LE MONT DORE", "libell_d_acheminement": "MONT DORE", "code_postal": "98809", "code_commune_insee": "98817"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a2ea1170830e96630cf1364946b3d15db40f422", "fields": {"nom_de_la_commune": "LE MONT DORE", "libell_d_acheminement": "PONT DES FRANCAIS", "code_postal": "98874", "ligne_5": "LE MONT DORE", "code_commune_insee": "98817"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e96e6c712a76b69848b0d1f0af7f57d67362f0", "fields": {"nom_de_la_commune": "PAITA", "libell_d_acheminement": "PAITA", "code_postal": "98890", "code_commune_insee": "98821"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a8cf8a9ec019f962ca0c76d70e45d279064e5f0", "fields": {"nom_de_la_commune": "PONERIHOUEN", "libell_d_acheminement": "PONERIHOUEN", "code_postal": "98823", "code_commune_insee": "98823"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97719f28a9dc42fd448347b2fb6dc01ad4003e16", "fields": {"nom_de_la_commune": "POUEMBOUT", "libell_d_acheminement": "POUEMBOUT", "code_postal": "98825", "code_commune_insee": "98825"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c2181ddb78ccb29ff4ec13742f95d62240874e1", "fields": {"nom_de_la_commune": "VOH", "libell_d_acheminement": "OUACO", "code_postal": "98883", "ligne_5": "VOH", "code_commune_insee": "98831"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9141819c52af48c869a256b55866d336ac732ba2", "fields": {"nom_de_la_commune": "MONACO", "libell_d_acheminement": "MONACO", "code_postal": "98000", "code_commune_insee": "99138"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76a09e08a302a941f3bef2c8605b0fd97b4003a", "fields": {"nom_de_la_commune": "AJACCIO", "libell_d_acheminement": "AJACCIO", "code_postal": "20090", "coordonnees_gps": [41.9348656233, 8.70148853139], "code_commune_insee": "2A004"}, "geometry": {"type": "Point", "coordinates": [8.70148853139, 41.9348656233]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1e15f4ba6f99a4998577b09d2aba6ac03343bc", "fields": {"nom_de_la_commune": "ALATA", "libell_d_acheminement": "ALATA", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A006"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c856121461cea561cc0e3d834e73b7910a5684", "fields": {"nom_de_la_commune": "APPIETTO", "libell_d_acheminement": "APPIETTO", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A017"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f68e76c456e184d29230dfdd841592139ee2b2", "fields": {"nom_de_la_commune": "ARRO", "libell_d_acheminement": "ARRO", "code_postal": "20151", "coordonnees_gps": [42.0685003984, 8.81211774694], "code_commune_insee": "2A022"}, "geometry": {"type": "Point", "coordinates": [8.81211774694, 42.0685003984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58fc85c2f886bc27a64cccad91d192d488a313e7", "fields": {"nom_de_la_commune": "CALCATOGGIO", "libell_d_acheminement": "CALCATOGGIO", "code_postal": "20111", "coordonnees_gps": [42.0444832828, 8.74672877779], "code_commune_insee": "2A048"}, "geometry": {"type": "Point", "coordinates": [8.74672877779, 42.0444832828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ae1757fd33ffd74f7273cf67963c1a2b174ed4", "fields": {"nom_de_la_commune": "CANNELLE", "libell_d_acheminement": "CANNELLE", "code_postal": "20151", "coordonnees_gps": [42.0685003984, 8.81211774694], "code_commune_insee": "2A060"}, "geometry": {"type": "Point", "coordinates": [8.81211774694, 42.0685003984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdc6c3a067bbf6deea9830fe9e7dee42cdf4e169", "fields": {"nom_de_la_commune": "CARBINI", "libell_d_acheminement": "CARBINI", "code_postal": "20170", "coordonnees_gps": [41.663555071, 9.15818579459], "code_commune_insee": "2A061"}, "geometry": {"type": "Point", "coordinates": [9.15818579459, 41.663555071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf5a1ff2d617a34254f874064abe9226c58131d", "fields": {"nom_de_la_commune": "CASAGLIONE", "libell_d_acheminement": "CASAGLIONE", "code_postal": "20111", "coordonnees_gps": [42.0444832828, 8.74672877779], "code_commune_insee": "2A070"}, "geometry": {"type": "Point", "coordinates": [8.74672877779, 42.0444832828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a57d08fef9d0d3e3b3e738a67026f22e8dc1a4b", "fields": {"nom_de_la_commune": "CAURO", "libell_d_acheminement": "CAURO", "code_postal": "20117", "coordonnees_gps": [41.9372935669, 8.91884221363], "code_commune_insee": "2A085"}, "geometry": {"type": "Point", "coordinates": [8.91884221363, 41.9372935669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20bedc7367bc102f8f814ab4db6c390fbc237001", "fields": {"nom_de_la_commune": "CIAMANNACCE", "libell_d_acheminement": "CIAMANNACCE", "code_postal": "20134", "coordonnees_gps": [41.9757035744, 9.1524895794], "code_commune_insee": "2A089"}, "geometry": {"type": "Point", "coordinates": [9.1524895794, 41.9757035744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "065970417ffcd9b24dd069d4acef95cc72f64b74", "fields": {"code_postal": "20166", "code_commune_insee": "2A091", "libell_d_acheminement": "COGNOCOLI MONTICCHI", "ligne_5": "MARATO", "nom_de_la_commune": "COGNOCOLI MONTICCHI", "coordonnees_gps": [41.8437560104, 8.85889610104]}, "geometry": {"type": "Point", "coordinates": [8.85889610104, 41.8437560104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ca28384deed8f4eeb925b6b9ea787ff83ea3a9", "fields": {"nom_de_la_commune": "EVISA", "libell_d_acheminement": "EVISA", "code_postal": "20126", "coordonnees_gps": [42.2751546292, 8.82859750608], "code_commune_insee": "2A108"}, "geometry": {"type": "Point", "coordinates": [8.82859750608, 42.2751546292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "943d85af5a84890c81ce44d59e185bb448f8d677", "fields": {"nom_de_la_commune": "FIGARI", "libell_d_acheminement": "FIGARI", "code_postal": "20114", "coordonnees_gps": [41.5160057519, 9.12021159495], "code_commune_insee": "2A114"}, "geometry": {"type": "Point", "coordinates": [9.12021159495, 41.5160057519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb4454a4ad6f07f100d1bd3bca7e97b5723279f", "fields": {"nom_de_la_commune": "FORCIOLO", "libell_d_acheminement": "FORCIOLO", "code_postal": "20190", "coordonnees_gps": [41.8574694236, 8.99242736054], "code_commune_insee": "2A117"}, "geometry": {"type": "Point", "coordinates": [8.99242736054, 41.8574694236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eae26ce6fb4a7fcdc3b85f70bb7918c01e647de3", "fields": {"nom_de_la_commune": "GRANACE", "libell_d_acheminement": "GRANACE", "code_postal": "20100", "coordonnees_gps": [41.5806968547, 8.93943169099], "code_commune_insee": "2A128"}, "geometry": {"type": "Point", "coordinates": [8.93943169099, 41.5806968547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0574b368345a7c19e0ac0b02894e042cf95c95c", "fields": {"nom_de_la_commune": "LEVIE", "libell_d_acheminement": "LEVIE", "code_postal": "20170", "coordonnees_gps": [41.663555071, 9.15818579459], "code_commune_insee": "2A142"}, "geometry": {"type": "Point", "coordinates": [9.15818579459, 41.663555071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "717f631f9b6dec785d3c5c0dddefcbd34028a744", "fields": {"nom_de_la_commune": "MURZO", "libell_d_acheminement": "MURZO", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A174"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9353fc22b48ee4362c3b72bebcb88cbf2ff6e195", "fields": {"nom_de_la_commune": "ORTO", "libell_d_acheminement": "ORTO", "code_postal": "20125", "coordonnees_gps": [42.1964321132, 8.92767106471], "code_commune_insee": "2A196"}, "geometry": {"type": "Point", "coordinates": [8.92767106471, 42.1964321132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bef3ede2008080893a2ee20555d3f11bcd9c564", "fields": {"nom_de_la_commune": "PALNECA", "libell_d_acheminement": "PALNECA", "code_postal": "20134", "coordonnees_gps": [41.9757035744, 9.1524895794], "code_commune_insee": "2A200"}, "geometry": {"type": "Point", "coordinates": [9.1524895794, 41.9757035744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c15531b4a402f113676cf40e93d7d7003d41eee", "fields": {"nom_de_la_commune": "PETRETO BICCHISANO", "libell_d_acheminement": "PETRETO BICCHISANO", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A211"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3e22092bf14869494f2f5c928f91439f2e8acd", "fields": {"nom_de_la_commune": "POGGIOLO", "libell_d_acheminement": "POGGIOLO", "code_postal": "20125", "coordonnees_gps": [42.1964321132, 8.92767106471], "code_commune_insee": "2A240"}, "geometry": {"type": "Point", "coordinates": [8.92767106471, 42.1964321132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b226cc2ecffa84feb956118094eca84d5173a3ae", "fields": {"nom_de_la_commune": "PROPRIANO", "libell_d_acheminement": "PROPRIANO", "code_postal": "20110", "coordonnees_gps": [41.6455084953, 8.89371494323], "code_commune_insee": "2A249"}, "geometry": {"type": "Point", "coordinates": [8.89371494323, 41.6455084953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0e1ebf3161316535e4f2cafe4316a55ec45c04", "fields": {"nom_de_la_commune": "QUASQUARA", "libell_d_acheminement": "QUASQUARA", "code_postal": "20142", "coordonnees_gps": [41.9026734548, 9.00649807358], "code_commune_insee": "2A253"}, "geometry": {"type": "Point", "coordinates": [9.00649807358, 41.9026734548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4952314141d91f58874003384c10dae9e7c329b8", "fields": {"nom_de_la_commune": "RENNO", "libell_d_acheminement": "RENNO", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A258"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee41ea8b179bd696e66f04875e9112fbe7b562e5", "fields": {"nom_de_la_commune": "ROSAZIA", "libell_d_acheminement": "ROSAZIA", "code_postal": "20121", "coordonnees_gps": [42.1272719035, 8.95083209288], "code_commune_insee": "2A262"}, "geometry": {"type": "Point", "coordinates": [8.95083209288, 42.1272719035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c94d064df13f792523f83e44fa5becc028a1ad5", "fields": {"nom_de_la_commune": "SALICE", "libell_d_acheminement": "SALICE", "code_postal": "20121", "coordonnees_gps": [42.1272719035, 8.95083209288], "code_commune_insee": "2A266"}, "geometry": {"type": "Point", "coordinates": [8.95083209288, 42.1272719035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61ffaa7007eb142e25694966a96972ac44a92ffd", "fields": {"nom_de_la_commune": "SARI D ORCINO", "libell_d_acheminement": "SARI D ORCINO", "code_postal": "20151", "coordonnees_gps": [42.0685003984, 8.81211774694], "code_commune_insee": "2A270"}, "geometry": {"type": "Point", "coordinates": [8.81211774694, 42.0685003984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a7aa81d4c99208dd47ea4c39b214d33ccdf66dc", "fields": {"nom_de_la_commune": "SANT ANDREA D ORCINO", "libell_d_acheminement": "SANT ANDREA D ORCINO", "code_postal": "20151", "coordonnees_gps": [42.0685003984, 8.81211774694], "code_commune_insee": "2A295"}, "geometry": {"type": "Point", "coordinates": [8.81211774694, 42.0685003984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6425165d8cbeccef27c4903fbc424849f8147ea", "fields": {"nom_de_la_commune": "TAVACO", "libell_d_acheminement": "TAVACO", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A323"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a98fca4fbf7e1946e2eb173d4fe9459decf3caeb", "fields": {"nom_de_la_commune": "TOLLA", "libell_d_acheminement": "TOLLA", "code_postal": "20117", "coordonnees_gps": [41.9372935669, 8.91884221363], "code_commune_insee": "2A326"}, "geometry": {"type": "Point", "coordinates": [8.91884221363, 41.9372935669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "958b7f1fb0a255c32ae611a683ea8c4644112f44", "fields": {"nom_de_la_commune": "VICO", "libell_d_acheminement": "VICO", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A348"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5384d1858a1cc4b238deeb4b61b95b98bcd285f", "fields": {"code_postal": "20224", "code_commune_insee": "2B007", "libell_d_acheminement": "ALBERTACCE", "ligne_5": "VERGIO", "nom_de_la_commune": "ALBERTACCE", "coordonnees_gps": [42.3286262979, 8.98251417824]}, "geometry": {"type": "Point", "coordinates": [8.98251417824, 42.3286262979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b23c8daae4ac9999d381bdb5db557bf47b5e12f", "fields": {"nom_de_la_commune": "BORGO", "libell_d_acheminement": "BORGO", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B042"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "195fa6e5de4e9b74525b9959de7ed6685feb2e05", "fields": {"nom_de_la_commune": "BUSTANICO", "libell_d_acheminement": "BUSTANICO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B045"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebbc4b882e9bd03a2d3ee98ca248698d0ba1c926", "fields": {"nom_de_la_commune": "CALACUCCIA", "libell_d_acheminement": "CALACUCCIA", "code_postal": "20224", "coordonnees_gps": [42.3286262979, 8.98251417824], "code_commune_insee": "2B047"}, "geometry": {"type": "Point", "coordinates": [8.98251417824, 42.3286262979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0e7c636885335a96e610bdf2ed447f9b8613267", "fields": {"nom_de_la_commune": "CALVI", "libell_d_acheminement": "CALVI", "code_postal": "20260", "coordonnees_gps": [42.4957918886, 8.79984001369], "code_commune_insee": "2B050"}, "geometry": {"type": "Point", "coordinates": [8.79984001369, 42.4957918886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba3267061941654c1b1bbda41cb29840a83bfa37", "fields": {"nom_de_la_commune": "CAMPILE", "libell_d_acheminement": "CAMPILE", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B054"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d2d20c3c045673e96882f6c44791b13d9b9a59d", "fields": {"nom_de_la_commune": "CARCHETO BRUSTICO", "libell_d_acheminement": "CARCHETO BRUSTICO", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B063"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8f5c25dc3265dce7e778cfd7c35ffb4b986d90", "fields": {"nom_de_la_commune": "CASTELLARE DI CASINCA", "libell_d_acheminement": "CASTELLARE DI CASINCA", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B077"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f87c420ad9092c9aba48ef3cca6dbf47b336226", "fields": {"nom_de_la_commune": "CASTIGLIONE", "libell_d_acheminement": "CASTIGLIONE", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B081"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5cb0ceebb2ec19e2f410b124a9c39739a45203", "fields": {"nom_de_la_commune": "CASTIRLA", "libell_d_acheminement": "CASTIRLA", "code_postal": "20236", "coordonnees_gps": [42.3752519871, 9.15942302041], "code_commune_insee": "2B083"}, "geometry": {"type": "Point", "coordinates": [9.15942302041, 42.3752519871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bac531f02056a8c9d52d74f36bceed20d6fa6ab", "fields": {"nom_de_la_commune": "CATERI", "libell_d_acheminement": "CATERI", "code_postal": "20225", "coordonnees_gps": [42.5548622449, 8.91822255191], "code_commune_insee": "2B084"}, "geometry": {"type": "Point", "coordinates": [8.91822255191, 42.5548622449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b62daedb37ba757bd5cddbf1991771a1fb3fc62", "fields": {"nom_de_la_commune": "CENTURI", "libell_d_acheminement": "CENTURI", "code_postal": "20238", "coordonnees_gps": [42.948308645, 9.37005973], "code_commune_insee": "2B086"}, "geometry": {"type": "Point", "coordinates": [9.37005973, 42.948308645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f221c8447b214d4a2949013ec8fab9b22c772aae", "fields": {"nom_de_la_commune": "BEULOTTE ST LAURENT", "libell_d_acheminement": "BEULOTTE ST LAURENT", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70071"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0c1b1377a6151fa97e1467b6d6ac60f7aa851db", "fields": {"nom_de_la_commune": "BOREY", "libell_d_acheminement": "BOREY", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70077"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d72cd6232d583819005c2129c052ce7c1af37a4", "fields": {"nom_de_la_commune": "BOUGEY", "libell_d_acheminement": "BOUGEY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70078"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04fb353e81d0a80e5ecd2538fff3d35015a5d8d5", "fields": {"nom_de_la_commune": "BOUHANS ET FEURG", "libell_d_acheminement": "BOUHANS ET FEURG", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70080"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02f4ee933013984fc34bc39a2b778266afc25366", "fields": {"nom_de_la_commune": "BOUHANS LES LURE", "libell_d_acheminement": "BOUHANS LES LURE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70081"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778930f79781e28463bbc121a0f55136e37afa09", "fields": {"nom_de_la_commune": "BOULOT", "libell_d_acheminement": "BOULOT", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70084"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75be4afacdd074abb4e9081ffc4b67543c54db7d", "fields": {"nom_de_la_commune": "BOURBEVELLE", "libell_d_acheminement": "BOURBEVELLE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70086"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9e901905006b22189b33dee105e131fa6ca4d5", "fields": {"nom_de_la_commune": "BREVILLIERS", "libell_d_acheminement": "BREVILLIERS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70096"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb41ff826e13b228ba192a448a2d5d0f0551d3f9", "fields": {"nom_de_la_commune": "BRIAUCOURT", "libell_d_acheminement": "BRIAUCOURT", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70097"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b7c481a6b0b597f4a9fb66a5f2647f60d94aeb3", "fields": {"nom_de_la_commune": "BROTTE LES RAY", "libell_d_acheminement": "BROTTE LES RAY", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70099"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "397096325913a1d529ff4cda1825565d43913f56", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70107"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca0da9f94c3bc796f1c5bc3e9bb0f01891f04dee", "fields": {"nom_de_la_commune": "CALMOUTIER", "libell_d_acheminement": "CALMOUTIER", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70111"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b3d261179dec5ed018673bece53f0e3be5cedd", "fields": {"nom_de_la_commune": "CEMBOING", "libell_d_acheminement": "CEMBOING", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70112"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4dec01adc9f2457e6544acb437c4faf3b91503a", "fields": {"nom_de_la_commune": "CHAMBORNAY LES PIN", "libell_d_acheminement": "CHAMBORNAY LES PIN", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70119"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d484389461894d91f25d62209ea2b31658ba303", "fields": {"nom_de_la_commune": "CHAMPEY", "libell_d_acheminement": "CHAMPEY", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70121"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "949cf95765a857e70c35f3354f034fd8036650dd", "fields": {"nom_de_la_commune": "CHANTES", "libell_d_acheminement": "CHANTES", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70127"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10033f21fdcc090bd6835f81dc9873aa103d9be5", "fields": {"nom_de_la_commune": "CHARIEZ", "libell_d_acheminement": "CHARIEZ", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70134"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1423366c1fb952c6854b75fa8917c4549b5356a1", "fields": {"nom_de_la_commune": "CHASSEY LES MONTBOZON", "libell_d_acheminement": "CHASSEY LES MONTBOZON", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70137"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "263e9cf8bf0a29eda00cbb7b893120ca03696ff2", "fields": {"nom_de_la_commune": "CHEMILLY", "libell_d_acheminement": "CHEMILLY", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70148"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b158aaa19e48a059063ca3cc97e9f00295bf18a3", "fields": {"nom_de_la_commune": "CIREY", "libell_d_acheminement": "CIREY", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70154"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3f430180a971c85fd8dc836cb4d15f4dc033730", "fields": {"nom_de_la_commune": "CITERS", "libell_d_acheminement": "CITERS", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70155"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c01d8de0736cef45a14fd303016a15fb3250c20", "fields": {"nom_de_la_commune": "CITEY", "libell_d_acheminement": "CITEY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70156"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7345196bcfdc07021aea3b5ada4baab4c781a73b", "fields": {"nom_de_la_commune": "COGNIERES", "libell_d_acheminement": "COGNIERES", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70159"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54891f1166192358a66aad8271619707859cb60", "fields": {"nom_de_la_commune": "COLOMBIER", "libell_d_acheminement": "COLOMBIER", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70163"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24e4a89c55eef49d95a89b4261727c7fa7151aaf", "fields": {"nom_de_la_commune": "COLOMBOTTE", "libell_d_acheminement": "COLOMBOTTE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70164"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40da3d054f7a165a762273d7a5e1de6235dff55", "fields": {"nom_de_la_commune": "CONFLANS SUR LANTERNE", "libell_d_acheminement": "CONFLANS SUR LANTERNE", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70168"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed4013f351393d88c009bfea9d745ec7f7194d69", "fields": {"nom_de_la_commune": "CONFRACOURT", "libell_d_acheminement": "CONFRACOURT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70169"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af5ee3cf860cf6e54426becd566efb1eb3849da0", "fields": {"nom_de_la_commune": "CORRE", "libell_d_acheminement": "CORRE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70177"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8690eace656cafb181b127b0f161e6e289f04493", "fields": {"nom_de_la_commune": "CRESANCEY", "libell_d_acheminement": "CRESANCEY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70185"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4828bc6e84afd0c16dd67ced5cdadaa39dfaebc8", "fields": {"nom_de_la_commune": "CROMARY", "libell_d_acheminement": "CROMARY", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70189"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4574372d0760ec5a8b0a2b6bb2cbb4ca2ff55349", "fields": {"nom_de_la_commune": "CUBRY LES FAVERNEY", "libell_d_acheminement": "CUBRY LES FAVERNEY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70190"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cba7529edbec272cd8141bde80d7b5776380b27", "fields": {"nom_de_la_commune": "LA DEMIE", "libell_d_acheminement": "LA DEMIE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70203"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62984d73077f238fa323f72d5b03e2dafbc89431", "fields": {"nom_de_la_commune": "ECHENANS SOUS MONT VAUDOIS", "libell_d_acheminement": "ECHENANS SOUS MONT VAUDOIS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70206"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208ed403db84edd0f45bd62ad762b68b002cf24e", "fields": {"nom_de_la_commune": "ECROMAGNY", "libell_d_acheminement": "ECROMAGNY", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70210"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7553a8a05d4722a05426e86a69737048a693e4", "fields": {"nom_de_la_commune": "ECUELLE", "libell_d_acheminement": "ECUELLE", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70211"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e1a59f00d1d027f653dc0f4d44ae2ffa01d9bb0", "fields": {"nom_de_la_commune": "EHUNS", "libell_d_acheminement": "EHUNS", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70213"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15dc1fb8cc86dac92d467b4898b561379efa57af", "fields": {"nom_de_la_commune": "ERREVET", "libell_d_acheminement": "ERREVET", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70215"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55a81ae3e920b9d652aa84d0e7e8fd56913521d0", "fields": {"nom_de_la_commune": "ESSERTENNE ET CECEY", "libell_d_acheminement": "ESSERTENNE ET CECEY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70220"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f560f300b4465b6200a442da94399c20455297", "fields": {"nom_de_la_commune": "ETUZ", "libell_d_acheminement": "ETUZ", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70224"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4414896d427f51376bee2a8ab8a46b8584d0a3c", "fields": {"nom_de_la_commune": "FAHY LES AUTREY", "libell_d_acheminement": "FAHY LES AUTREY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70225"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e56772cd12ab3982df1392f78ed2ffbf7286e99", "fields": {"nom_de_la_commune": "FLEUREY LES LAVONCOURT", "libell_d_acheminement": "FLEUREY LES LAVONCOURT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70237"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb782fa6e17945245e11f61a7e9713cf5d20750b", "fields": {"code_postal": "70600", "code_commune_insee": "70247", "libell_d_acheminement": "FOUVENT ST ANDOCHE", "ligne_5": "ST ANDOCHE", "nom_de_la_commune": "FOUVENT ST ANDOCHE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9033790dd73ee8d1330119ecb835dbc54c01b749", "fields": {"nom_de_la_commune": "FROTEY LES LURE", "libell_d_acheminement": "FROTEY LES LURE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70260"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5351d03b3b45ba960a3a528a92698350f99a899", "fields": {"nom_de_la_commune": "FROTEY LES VESOUL", "libell_d_acheminement": "FROTEY LES VESOUL", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70261"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b2457ba157bbbcc9059c365deee87452eb5076", "fields": {"nom_de_la_commune": "GRANDECOURT", "libell_d_acheminement": "GRANDECOURT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70274"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e78b229729a121a39c5a387c97c5b5b42bd1c81", "fields": {"code_postal": "70440", "code_commune_insee": "70283", "libell_d_acheminement": "HAUT DU THEM CHATEAU LAMBERT", "ligne_5": "CHATEAU LAMBERT", "nom_de_la_commune": "HAUT DU THEM CHATEAU LAMBERT", "coordonnees_gps": [47.8263854039, 6.71661809603]}, "geometry": {"type": "Point", "coordinates": [6.71661809603, 47.8263854039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62cc134181c0f6fdea2ff8eaab435697c1f62561", "fields": {"nom_de_la_commune": "HERICOURT", "libell_d_acheminement": "HERICOURT", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70285"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f59cf0226a3fc8b4079e06548b1eb20ef21fb4a", "fields": {"nom_de_la_commune": "JONVELLE", "libell_d_acheminement": "JONVELLE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70291"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac854f44f3c70065ffc6b4a37a1e8a0ab66568d1", "fields": {"nom_de_la_commune": "LARIANS ET MUNANS", "libell_d_acheminement": "LARIANS ET MUNANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70296"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8988ba9e05cacf1093f6b6d3f42c5f77c82b2de8", "fields": {"nom_de_la_commune": "LARRET", "libell_d_acheminement": "LARRET", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70297"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c6b8901f54890cd7d52eaa8cde308da2aa6c258", "fields": {"nom_de_la_commune": "LAVIGNEY", "libell_d_acheminement": "LAVIGNEY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70298"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a0263f033059cbc3fa560669ce7ea629e6f381", "fields": {"nom_de_la_commune": "LAVONCOURT", "libell_d_acheminement": "LAVONCOURT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70299"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f4eff24e415a4624982e866f0d9d5024ebbf07e", "fields": {"nom_de_la_commune": "LIEUCOURT", "libell_d_acheminement": "LIEUCOURT", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70302"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e970f99c8a1222eb570463c8444b2853c9dfe2a", "fields": {"nom_de_la_commune": "LIEVANS", "libell_d_acheminement": "LIEVANS", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70303"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1586da336f447314a6d04bb76dd5c7c9b9ada685", "fields": {"nom_de_la_commune": "LONGEVELLE", "libell_d_acheminement": "LONGEVELLE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70307"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebd8705db317cfbd9c6357be1d0c70524f179b12", "fields": {"nom_de_la_commune": "LURE", "libell_d_acheminement": "LURE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70310"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78202bc40ee2eae71085c70e7d41cae8648b13a2", "fields": {"nom_de_la_commune": "MAGNY VERNOIS", "libell_d_acheminement": "MAGNY VERNOIS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70321"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b2cc5d9de479e491ab5106c6a950891801ec04", "fields": {"nom_de_la_commune": "MAILLEY ET CHAZELOT", "libell_d_acheminement": "MAILLEY ET CHAZELOT", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70324"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934499f8d9a78d7ff95c0c37b1fd2abe64157d6f", "fields": {"nom_de_la_commune": "LA MALACHERE", "libell_d_acheminement": "LA MALACHERE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70326"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab575220b73348400273211dced4fcd41bc2348", "fields": {"nom_de_la_commune": "MANTOCHE", "libell_d_acheminement": "MANTOCHE", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70331"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65624c1a1a2619fe9db6ccce7176170d79391a2f", "fields": {"nom_de_la_commune": "MARNAY", "libell_d_acheminement": "MARNAY", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70334"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afd7e9e9939bc405262e09ff9ed76e19088259be", "fields": {"nom_de_la_commune": "MEMBREY", "libell_d_acheminement": "MEMBREY", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70340"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6f678e73427fb87e7fe01b76170fb09222c450", "fields": {"nom_de_la_commune": "MIGNAVILLERS", "libell_d_acheminement": "MIGNAVILLERS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70347"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c679db2d2e35a30f47e18ecb4d4036c8f824f20b", "fields": {"nom_de_la_commune": "MONTDORE", "libell_d_acheminement": "MONTDORE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70360"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757644f9e56e7611c58f617c2df2c0129e010629", "fields": {"nom_de_la_commune": "MONTIGNY LES CHERLIEU", "libell_d_acheminement": "MONTIGNY LES CHERLIEU", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70362"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d6f2164c2fe5cc28814a14dd02ee1d2e5e8e26", "fields": {"code_postal": "70120", "code_commune_insee": "70373", "libell_d_acheminement": "LA ROCHE MOREY", "ligne_5": "ST JULIEN", "nom_de_la_commune": "LA ROCHE MOREY", "coordonnees_gps": [47.6952639398, 5.81680839597]}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f8a8390f32512b76ec1af616daf6fbe79890de9", "fields": {"nom_de_la_commune": "NEUVELLE LES CROMARY", "libell_d_acheminement": "NEUVELLE LES CROMARY", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70383"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0483ec1560971f1a09cac9c1569a6f195b780b", "fields": {"nom_de_la_commune": "NOIDANS LE FERROUX", "libell_d_acheminement": "NOIDANS LE FERROUX", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70387"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030d6a186012316626649db72b2a1aa27661d45b", "fields": {"nom_de_la_commune": "NOIRON", "libell_d_acheminement": "NOIRON", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70389"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef9953537cc34e56b9134eee8e0ca38a8aa31e7", "fields": {"nom_de_la_commune": "OIGNEY", "libell_d_acheminement": "OIGNEY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70392"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "414e3cace06180b0201170b14d57c258d982a02d", "fields": {"nom_de_la_commune": "ORMENANS", "libell_d_acheminement": "ORMENANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70397"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04bb4c5eabf4028cfb6d8f592f0b2b9f5e44277f", "fields": {"nom_de_la_commune": "OUGE", "libell_d_acheminement": "OUGE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70400"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40a0d4dbdf61fb511c26098fbc9d69661570e05", "fields": {"nom_de_la_commune": "PONTCEY", "libell_d_acheminement": "PONTCEY", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70417"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5edb5e7a7957c256056f253a7add9d2e84b8d90", "fields": {"nom_de_la_commune": "PONT SUR L OGNON", "libell_d_acheminement": "PONT SUR L OGNON", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70420"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "134bd0bc31268d25799e0197c2d8dcdd58e47901", "fields": {"nom_de_la_commune": "PORT SUR SAONE", "libell_d_acheminement": "PORT SUR SAONE", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70421"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "296916f5ec90651a4c360b42b2d8c03e22363b80", "fields": {"nom_de_la_commune": "LA QUARTE", "libell_d_acheminement": "LA QUARTE", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70430"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6304d43755b47cd87f6837a32b16a8887dbde5bb", "fields": {"nom_de_la_commune": "QUINCEY", "libell_d_acheminement": "QUINCEY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70433"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f314f16a0393fb6b83aa6bcb8fa44dba3565751", "fields": {"nom_de_la_commune": "RAZE", "libell_d_acheminement": "RAZE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70439"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43902a4464b851219abbabddc71157988696f069", "fields": {"nom_de_la_commune": "RIGNY", "libell_d_acheminement": "RIGNY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70446"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fafe2a65afd0a4fa746af0826409477605e81461", "fields": {"nom_de_la_commune": "ROCHE LINOTTE ET SORANS CORDIERS", "libell_d_acheminement": "ROCHE LINOTTE ET SORANS CORDIERS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70449"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed2b4e5011f2336b0adf9d1ad5754b796f59fbe3", "fields": {"nom_de_la_commune": "RONCHAMP", "libell_d_acheminement": "RONCHAMP", "code_postal": "70250", "coordonnees_gps": [47.7163093328, 6.63449293574], "code_commune_insee": "70451"}, "geometry": {"type": "Point", "coordinates": [6.63449293574, 47.7163093328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293aadfe66c43b6cb13ebe687a36db1e9539ed71", "fields": {"nom_de_la_commune": "ST LOUP SUR SEMOUSE", "libell_d_acheminement": "ST LOUP SUR SEMOUSE", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70467"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d96c22b9d132fdb1ef71f0e2983cc9ddaecd07a6", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70468"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9a4aed135a68ffcb8834a60d13a61a75234858", "fields": {"nom_de_la_commune": "STE MARIE EN CHAUX", "libell_d_acheminement": "STE MARIE EN CHAUX", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70470"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07025e3db98e82efe5a75f8185d7a0883405f334", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70473"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5588c9268bf906fa4c75b8a2ff27e4fe296714b", "fields": {"nom_de_la_commune": "SORNAY", "libell_d_acheminement": "SORNAY", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70494"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a816e8fe492959b120a7362d36de48258aa13fea", "fields": {"nom_de_la_commune": "TAVEY", "libell_d_acheminement": "TAVEY", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70497"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5603687ad5634a314327520caf9609b58c5544d7", "fields": {"nom_de_la_commune": "VAITE", "libell_d_acheminement": "VAITE", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70511"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66cb8e63817a0753d94b59b9eca8cec76f94b695", "fields": {"nom_de_la_commune": "VANNE", "libell_d_acheminement": "VANNE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70520"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08a48c5e081ec259cff621502bbe4ee62423cebd", "fields": {"nom_de_la_commune": "VAROGNE", "libell_d_acheminement": "VAROGNE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70522"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85fc6d2b97a6abf24c2e07a80c9054675a7d67b2", "fields": {"nom_de_la_commune": "VAUVILLERS", "libell_d_acheminement": "VAUVILLERS", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70526"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d73273024af9fc7110e62bb442afd98949d4bf", "fields": {"nom_de_la_commune": "VAUX LE MONCELOT", "libell_d_acheminement": "VAUX LE MONCELOT", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70527"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88e55586f0df35565387eaf0e436441b081b664a", "fields": {"nom_de_la_commune": "VELLEGUINDRY ET LEVRECEY", "libell_d_acheminement": "VELLEGUINDRY ET LEVRECEY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70535"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b9ec0cffa2021d6a4132b33b71e0a7174b52a1", "fields": {"nom_de_la_commune": "LA VERGENNE", "libell_d_acheminement": "LA VERGENNE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70544"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2a6ab8c3539e3f9209d01d7400d775349dba7bb", "fields": {"nom_de_la_commune": "LA VILLEDIEU EN FONTENETTE", "libell_d_acheminement": "LA VILLEDIEU EN FONTENETTE", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70555"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63345a7765f137d6e6aaedfb455f6657d2ff602", "fields": {"nom_de_la_commune": "VILLERSEXEL", "libell_d_acheminement": "VILLERSEXEL", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70561"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78e21798279a0236fb4aef6bb6eb3cd6a84eb207", "fields": {"nom_de_la_commune": "VILLERS VAUDEY", "libell_d_acheminement": "VILLERS VAUDEY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70568"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef22eed2193144b9cdb6ee20850706382075d7a6", "fields": {"nom_de_la_commune": "VITREY SUR MANCE", "libell_d_acheminement": "VITREY SUR MANCE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70572"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95c9563ffac9f3fca8553a4dadce6c98016e8664", "fields": {"nom_de_la_commune": "VORAY SUR L OGNON", "libell_d_acheminement": "VORAY SUR L OGNON", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70575"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94a617f5f93f06a9cfe9d1771c103d96fb578ed", "fields": {"nom_de_la_commune": "VOUGECOURT", "libell_d_acheminement": "VOUGECOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70576"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3faa470efb533f20ff69458276ce8deec24376c6", "fields": {"nom_de_la_commune": "GURS", "libell_d_acheminement": "GURS", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64253"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a51f99066143cfc8999cc85bc0cb7123ecc8b704", "fields": {"nom_de_la_commune": "HAGETAUBIN", "libell_d_acheminement": "HAGETAUBIN", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64254"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06cc8763e969e4528563361212ec5a7259876a44", "fields": {"nom_de_la_commune": "HIGUERES SOUYE", "libell_d_acheminement": "HIGUERES SOUYE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64262"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "116539204e141d0287d9a44aa41411c82ef8b0fe", "fields": {"nom_de_la_commune": "L HOPITAL ST BLAISE", "libell_d_acheminement": "L HOPITAL ST BLAISE", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64264"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17205f9be02dbe9b8dfd29b52f212e2691da7bf5", "fields": {"nom_de_la_commune": "HOURS", "libell_d_acheminement": "HOURS", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64266"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf25ffdd09e1a56262e5721bd6647bc6a53a0167", "fields": {"nom_de_la_commune": "ILHARRE", "libell_d_acheminement": "ILHARRE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64272"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b83215d4883dc36bba02678160ca961a866a350d", "fields": {"nom_de_la_commune": "IROULEGUY", "libell_d_acheminement": "IROULEGUY", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64274"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c0069952dc7f0b969f14afbd25bc72c834b3047", "fields": {"nom_de_la_commune": "JURANCON", "libell_d_acheminement": "JURANCON", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64284"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5ca362d99ec18cc182aed1eff9b14abc70fc251", "fields": {"nom_de_la_commune": "LABASTIDE CEZERACQ", "libell_d_acheminement": "LABASTIDE CEZERACQ", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64288"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2194e5f394d62c9f23e4378aeb1e71e71af1634", "fields": {"nom_de_la_commune": "LAGOR", "libell_d_acheminement": "LAGOR", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64301"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f55aa1672c2174d86b1dd5267f4ea21976808cae", "fields": {"nom_de_la_commune": "LALONQUETTE", "libell_d_acheminement": "LALONQUETTE", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64308"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec574f5504e5d4f5121ef54bd7b5289fea9b1e5b", "fields": {"nom_de_la_commune": "LANNECAUBE", "libell_d_acheminement": "LANNECAUBE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64311"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46d9f6a6df787441571e977489e209516841c292", "fields": {"code_postal": "64440", "code_commune_insee": "64320", "libell_d_acheminement": "LARUNS", "ligne_5": "EAUX CHAUDES", "nom_de_la_commune": "LARUNS", "coordonnees_gps": [42.9183295476, -0.395850195838]}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed318da5e9c643c5e2d2bfd18a55a224d9a42f27", "fields": {"nom_de_la_commune": "LASSEUBETAT", "libell_d_acheminement": "LASSEUBETAT", "code_postal": "64290", "coordonnees_gps": [43.2158139133, -0.441474336827], "code_commune_insee": "64325"}, "geometry": {"type": "Point", "coordinates": [-0.441474336827, 43.2158139133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8338bc48ddb78c1b8e11a193d86c3895fd308259", "fields": {"nom_de_la_commune": "LEMBEYE", "libell_d_acheminement": "LEMBEYE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64331"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62bec7d19fa08ad0c17f68382ebc1e4361157d4b", "fields": {"nom_de_la_commune": "LEREN", "libell_d_acheminement": "LEREN", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64334"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd0fbeba7035e5f58531408b289dfaa53a882ed9", "fields": {"nom_de_la_commune": "LUC ARMAU", "libell_d_acheminement": "LUC ARMAU", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64356"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8eeea7af603e62231d6cc4e2a4ea04007b6902c", "fields": {"nom_de_la_commune": "LUXE SUMBERRAUTE", "libell_d_acheminement": "LUXE SUMBERRAUTE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64362"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d798d54b73b9a5748c1790763b36b219698c17", "fields": {"nom_de_la_commune": "MASPARRAUTE", "libell_d_acheminement": "MASPARRAUTE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64368"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7af561b04804379d115d5f5ace56f04732a3cb8", "fields": {"nom_de_la_commune": "MASPIE LALONQUERE JUILLACQ", "libell_d_acheminement": "MASPIE LALONQUERE JUILLACQ", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64369"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47d3de05a0c26bec7dff03d43e43969d82da4089", "fields": {"nom_de_la_commune": "MAULEON LICHARRE", "libell_d_acheminement": "MAULEON SOULE", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64371"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bbed62c400ab3553db70c8733ca2f98f54fd144", "fields": {"nom_de_la_commune": "MAZERES LEZONS", "libell_d_acheminement": "MAZERES LEZONS", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64373"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25b0f510518cf491648dea22c1f58d8d4fe9e3f3", "fields": {"nom_de_la_commune": "MAZEROLLES", "libell_d_acheminement": "MAZEROLLES", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64374"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6936f4db4d52c5c6aa6bd87c18fe3e54c6c93fee", "fields": {"nom_de_la_commune": "MIALOS", "libell_d_acheminement": "MIALOS", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64383"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b3c1f3398bf78872cbb307ca62243a840160bd0", "fields": {"nom_de_la_commune": "MOMY", "libell_d_acheminement": "MOMY", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64388"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6794d25dc14e1a6f7583be4a2eb731b4cbfacc56", "fields": {"nom_de_la_commune": "MONASSUT AUDIRACQ", "libell_d_acheminement": "MONASSUT AUDIRACQ", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64389"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98b4080bc3c1db0be6abf27d3bd4fcad2e5f81a", "fields": {"code_postal": "64300", "code_commune_insee": "64396", "libell_d_acheminement": "MONT", "ligne_5": "ARANCE", "nom_de_la_commune": "MONT", "coordonnees_gps": [43.4859974267, -0.75266936644]}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a83b33a9bcddd1e0bfe5765c9a6ccc0ef6e82d61", "fields": {"nom_de_la_commune": "MONTORY", "libell_d_acheminement": "MONTORY", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64404"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f2e69fef95b9b52921f7dfb9520a76f28403e3b", "fields": {"nom_de_la_commune": "MOURENX", "libell_d_acheminement": "MOURENX", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64410"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49a6159ca843fb3488bd924fa1d087fbf52442a", "fields": {"nom_de_la_commune": "MUSCULDY", "libell_d_acheminement": "MUSCULDY", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64411"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e3906c7b72c5b2522975cf9d042ce7d12de5a21", "fields": {"nom_de_la_commune": "NAVAILLES ANGOS", "libell_d_acheminement": "NAVAILLES ANGOS", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64415"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08dac37ff4caab7c9d2a3d8d36ee8d1c7b382c26", "fields": {"nom_de_la_commune": "OGEU LES BAINS", "libell_d_acheminement": "OGEU LES BAINS", "code_postal": "64680", "coordonnees_gps": [43.154142648, -0.506746806096], "code_commune_insee": "64421"}, "geometry": {"type": "Point", "coordinates": [-0.506746806096, 43.154142648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1ec98ecc443ca6acc7a9aec1f8c0b63ee1a965a", "fields": {"nom_de_la_commune": "ORAAS", "libell_d_acheminement": "ORAAS", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64423"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5225a6f1ceb752f96e8f101b573e24db7f484f4a", "fields": {"nom_de_la_commune": "ORDIARP", "libell_d_acheminement": "ORDIARP", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64424"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1348b37d2934446a19db1c0e34fb1319e5642d8", "fields": {"nom_de_la_commune": "ORIN", "libell_d_acheminement": "ORIN", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64426"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ebc6bc9d8816c74523bebf56f8fb6df184f96a4", "fields": {"nom_de_la_commune": "ORRIULE", "libell_d_acheminement": "ORRIULE", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64428"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69504d57f20ca83f7105e4a4159b7bc0bf827c09", "fields": {"code_postal": "64300", "code_commune_insee": "64430", "libell_d_acheminement": "ORTHEZ", "ligne_5": "STE SUZANNE", "nom_de_la_commune": "ORTHEZ", "coordonnees_gps": [43.4859974267, -0.75266936644]}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53981edc5bf6725ce5baf280a3b04d29b3f5ba0a", "fields": {"nom_de_la_commune": "PIETS PLASENCE MOUSTROU", "libell_d_acheminement": "PIETS PLASENCE MOUSTROU", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64447"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7b7c5aba8bbb27e134476b3d21538597b3ff665", "fields": {"nom_de_la_commune": "PONTIACQ VIELLEPINTE", "libell_d_acheminement": "PONTIACQ VIELLEPINTE", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64454"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59851385716be0a09b043902c218ecb73f67558d", "fields": {"nom_de_la_commune": "REBENACQ", "libell_d_acheminement": "REBENACQ", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64463"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf027be1303e6ceba436d6920aa2feca6866b829", "fields": {"nom_de_la_commune": "RIVEHAUTE", "libell_d_acheminement": "RIVEHAUTE", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64466"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0702209ebbb47ac6999147a2f164c41895037b", "fields": {"nom_de_la_commune": "RONTIGNON", "libell_d_acheminement": "RONTIGNON", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64467"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e78f84f1b06fac8d3ae5554b575caefccb2738e2", "fields": {"nom_de_la_commune": "ST BOES", "libell_d_acheminement": "ST BOES", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64471"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f83a5eea31a7d1f0fab0d28025488de90b89049e", "fields": {"nom_de_la_commune": "STE COLOME", "libell_d_acheminement": "STE COLOME", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64473"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb2d2e32f456e49b8654d471da712ee059726482", "fields": {"nom_de_la_commune": "ST JAMMES", "libell_d_acheminement": "ST JAMMES", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64482"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef1e76ce14e920020681af9881389806ce420b3", "fields": {"nom_de_la_commune": "ST JEAN POUDGE", "libell_d_acheminement": "ST JEAN POUDGE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64486"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35068db23a30c1ba69924b09b29d5057766721b2", "fields": {"nom_de_la_commune": "ST MARTIN D ARBEROUE", "libell_d_acheminement": "ST MARTIN D ARBEROUE", "code_postal": "64640", "coordonnees_gps": [43.2945597226, -1.18265900805], "code_commune_insee": "64489"}, "geometry": {"type": "Point", "coordinates": [-1.18265900805, 43.2945597226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e025c08ae07db09e4e62ef93b150b0f6b41d84c", "fields": {"nom_de_la_commune": "ST PIERRE D IRUBE", "libell_d_acheminement": "ST PIERRE D IRUBE", "code_postal": "64990", "coordonnees_gps": [43.4632822407, -1.40781223333], "code_commune_insee": "64496"}, "geometry": {"type": "Point", "coordinates": [-1.40781223333, 43.4632822407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "012dc77283677d6aba25db26a01f2143d0962d47", "fields": {"nom_de_la_commune": "SARRANCE", "libell_d_acheminement": "SARRANCE", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64506"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12eb0fc89af0a35aec0699acc7767bd1c2f5a616", "fields": {"nom_de_la_commune": "SAULT DE NAVAILLES", "libell_d_acheminement": "SAULT DE NAVAILLES", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64510"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff716a22aea6c83b7ec6711d70135771b06bacd", "fields": {"nom_de_la_commune": "SENDETS", "libell_d_acheminement": "SENDETS", "code_postal": "64320", "coordonnees_gps": [43.2929999605, -0.293556943502], "code_commune_insee": "64518"}, "geometry": {"type": "Point", "coordinates": [-0.293556943502, 43.2929999605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9550610612d15f8264f866420133601063f7a0", "fields": {"nom_de_la_commune": "SERRES STE MARIE", "libell_d_acheminement": "SERRES STE MARIE", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64521"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2457c422b5cf93d567db6a49f92490d0a2cd5173", "fields": {"nom_de_la_commune": "SEVIGNACQ MEYRACQ", "libell_d_acheminement": "SEVIGNACQ MEYRACQ", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64522"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "222f9117d3964a803634eaf12f9508961e18f0f0", "fields": {"nom_de_la_commune": "SIMACOURBE", "libell_d_acheminement": "SIMACOURBE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64524"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02bda7b650b32b53d878a32b053f4799edabca9", "fields": {"nom_de_la_commune": "SOUMOULOU", "libell_d_acheminement": "SOUMOULOU", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64526"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17b6c8356112d9b6f08716498af9e176e198e388", "fields": {"nom_de_la_commune": "SOURAIDE", "libell_d_acheminement": "SOURAIDE", "code_postal": "64250", "coordonnees_gps": [43.3249246789, -1.42953644285], "code_commune_insee": "64527"}, "geometry": {"type": "Point", "coordinates": [-1.42953644285, 43.3249246789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7414a55bc16b05965fae40efc04370d62f72a50", "fields": {"nom_de_la_commune": "TROIS VILLES", "libell_d_acheminement": "TROIS VILLES", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64537"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d36664a7d735d85f2bf3f92852dc52f6a87f4e0b", "fields": {"nom_de_la_commune": "UREPEL", "libell_d_acheminement": "UREPEL", "code_postal": "64430", "coordonnees_gps": [43.1256104701, -1.37703506654], "code_commune_insee": "64543"}, "geometry": {"type": "Point", "coordinates": [-1.37703506654, 43.1256104701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b001964596a791e56be26d5b8958cbbb6dae373f", "fields": {"nom_de_la_commune": "URRUGNE", "libell_d_acheminement": "URRUGNE", "code_postal": "64122", "coordonnees_gps": [43.3494929486, -1.69734552192], "code_commune_insee": "64545"}, "geometry": {"type": "Point", "coordinates": [-1.69734552192, 43.3494929486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ba49a4d807962a73cbce42ca11e1c5f42c55dd", "fields": {"nom_de_la_commune": "URT", "libell_d_acheminement": "URT", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64546"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2109c4636fb73499e51c870eb64d3870c4fb6f79", "fields": {"nom_de_la_commune": "UZAN", "libell_d_acheminement": "UZAN", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64548"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a240fb5c35e6e2adc42495cba48ec79bdd6e2d", "fields": {"nom_de_la_commune": "VIELLENAVE DE NAVARRENX", "libell_d_acheminement": "VIELLENAVE DE NAVARRENX", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64555"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a46b4399cfd0bde8c0092db8a94436458c0b4fb", "fields": {"nom_de_la_commune": "VIODOS ABENSE DE BAS", "libell_d_acheminement": "VIODOS ABENSE DE BAS", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64559"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e37e153a67861a0feacf6d8c2ffca4f6389917", "fields": {"nom_de_la_commune": "ANGOS", "libell_d_acheminement": "ANGOS", "code_postal": "65690", "coordonnees_gps": [43.1995880438, 0.138139149082], "code_commune_insee": "65010"}, "geometry": {"type": "Point", "coordinates": [0.138139149082, 43.1995880438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c592c3e06e80cffbd4030aaf5000dadf2a2e17e6", "fields": {"nom_de_la_commune": "ANTICHAN", "libell_d_acheminement": "ANTICHAN", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65014"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb655eb84c3268b5e402347646df514c8a437a7f", "fields": {"nom_de_la_commune": "ANTIN", "libell_d_acheminement": "ANTIN", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65015"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bfb9ad1092e4e35709e26651ed39934b83bc0a4", "fields": {"nom_de_la_commune": "ARGELES GAZOST", "libell_d_acheminement": "ARGELES GAZOST", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65025"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80401dc4d08ea0d2fd5cf725f5570c7902c7bd98", "fields": {"code_postal": "65400", "code_commune_insee": "65032", "libell_d_acheminement": "ARRENS MARSOUS", "ligne_5": "MARSOUS", "nom_de_la_commune": "ARRENS MARSOUS", "coordonnees_gps": [42.9460232752, -0.163635149644]}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ced37782644250bd5cae65a07eeefa37883d366e", "fields": {"nom_de_la_commune": "ARTAGNAN", "libell_d_acheminement": "ARTAGNAN", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65035"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19b1f134c309c356b539f563f342f60e62d6fef1", "fields": {"nom_de_la_commune": "ARTIGUES", "libell_d_acheminement": "ARTIGUES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65038"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22baeebe348ed10d59aeafaf2448135374188ef8", "fields": {"nom_de_la_commune": "ASPIN AURE", "libell_d_acheminement": "ASPIN AURE", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65039"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53135575880c89dcc9c0543e1a91da0ebc0b783c", "fields": {"nom_de_la_commune": "ASTE", "libell_d_acheminement": "ASTE", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65042"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3d67b805da5014153c9465e242faa448391c98", "fields": {"nom_de_la_commune": "ASTUGUE", "libell_d_acheminement": "ASTUGUE", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65043"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "351557ba485e29b57a1d4f611623cb5e67d47e27", "fields": {"nom_de_la_commune": "AULON", "libell_d_acheminement": "AULON", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65046"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b64bff0078d0e08884f67b28c339b6581c41b28e", "fields": {"nom_de_la_commune": "AVAJAN", "libell_d_acheminement": "AVAJAN", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65050"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319051b8542d9c36b9d23349d06b358fe0414a15", "fields": {"nom_de_la_commune": "AVENTIGNAN", "libell_d_acheminement": "AVENTIGNAN", "code_postal": "65660", "coordonnees_gps": [43.0619103765, 0.524094993812], "code_commune_insee": "65051"}, "geometry": {"type": "Point", "coordinates": [0.524094993812, 43.0619103765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ce18f68a571975ef96c3376776b20be80ccf24", "fields": {"code_postal": "65200", "code_commune_insee": "65059", "libell_d_acheminement": "BAGNERES DE BIGORRE", "ligne_5": "LA MONGIE", "nom_de_la_commune": "BAGNERES DE BIGORRE", "coordonnees_gps": [43.0346588013, 0.142823788541]}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9f5adfa2fec61fceb3d96fd28793761da76b4d", "fields": {"nom_de_la_commune": "BARBAZAN DESSUS", "libell_d_acheminement": "BARBAZAN DESSUS", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65063"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c655555396f894b061801b4900546aa8715ed6", "fields": {"nom_de_la_commune": "BEAUCENS", "libell_d_acheminement": "BEAUCENS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65077"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91d46877eee8ea718273649db8978fe21cdaadd", "fields": {"nom_de_la_commune": "BERTREN", "libell_d_acheminement": "BERTREN", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65087"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0204c4c24f30572b6aaff4a6786f6e8b7e2196f0", "fields": {"nom_de_la_commune": "BETPOUY", "libell_d_acheminement": "BETPOUY", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65090"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d280f7ee793375cac7c028962bf7aba421f3b31", "fields": {"nom_de_la_commune": "BETTES", "libell_d_acheminement": "BETTES", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65091"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b786170dba78c342d725e415751915a1f8400302", "fields": {"nom_de_la_commune": "BORDERES LOURON", "libell_d_acheminement": "BORDERES LOURON", "code_postal": "65590", "coordonnees_gps": [42.8710607597, 0.412551570718], "code_commune_insee": "65099"}, "geometry": {"type": "Point", "coordinates": [0.412551570718, 42.8710607597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5547dd5ef12259346399659e4388cb82b1597336", "fields": {"nom_de_la_commune": "BORDES", "libell_d_acheminement": "BORDES", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65101"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049ff703ae1857ceb2fa4696f7cec175a71eff0f", "fields": {"nom_de_la_commune": "BRAMEVAQUE", "libell_d_acheminement": "BRAMEVAQUE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65109"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032450e1deda475db567b6f62eae10c1ee85cd1a", "fields": {"nom_de_la_commune": "BURG", "libell_d_acheminement": "BURG", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65113"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6526a3fdbabac86ddd4ecf25c275fe7491b6de", "fields": {"nom_de_la_commune": "CADEAC", "libell_d_acheminement": "CADEAC", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65116"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc47e7720ab79bfe9f182ebad7ba067d4b9476b9", "fields": {"nom_de_la_commune": "CAIXON", "libell_d_acheminement": "CAIXON", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65119"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4131e054a89a5d21ea8962e55991847c5495d82a", "fields": {"code_postal": "65710", "code_commune_insee": "65123", "libell_d_acheminement": "CAMPAN", "ligne_5": "LA SEOUBE", "nom_de_la_commune": "CAMPAN", "coordonnees_gps": [42.9707906298, 0.166937174771]}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa7635a268d23cf9b09e8058c461c8b87f91a1c", "fields": {"nom_de_la_commune": "CAMPARAN", "libell_d_acheminement": "CAMPARAN", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65124"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12a4b7febe17b769e5b8c79521734145625cc5b", "fields": {"nom_de_la_commune": "CAMPISTROUS", "libell_d_acheminement": "CAMPISTROUS", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65125"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19e1590d497b3b00377a61d7ce06b196c6f950b9", "fields": {"nom_de_la_commune": "CASTELNAU MAGNOAC", "libell_d_acheminement": "CASTELNAU MAGNOAC", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65129"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c68718db9a9e677c5c2db5f63f537ae0042851ac", "fields": {"nom_de_la_commune": "CASTERA LOU", "libell_d_acheminement": "CASTERA LOU", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65133"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "979a7d4822e150b8bcccff3b193b76d399592699", "fields": {"nom_de_la_commune": "CASTILLON", "libell_d_acheminement": "CASTILLON", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65135"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c454287d1e6f66de479e148971eba4bf03ce7bd8", "fields": {"code_postal": "65240", "code_commune_insee": "65141", "libell_d_acheminement": "CAZAUX FRECHET ANERAN CAMORS", "ligne_5": "CAZAUX FRECHET", "nom_de_la_commune": "CAZAUX FRECHET ANERAN CAMORS", "coordonnees_gps": [42.8315711949, 0.385912028349]}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be1772cd562d8f54cfb5cb94b1c9f3ec8ce7d45", "fields": {"nom_de_la_commune": "CHEUST", "libell_d_acheminement": "CHEUST", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65144"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b91dbfd01fe3b65f292b439af929ed3743fc1ca", "fields": {"nom_de_la_commune": "CLARAC", "libell_d_acheminement": "CLARAC", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65149"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fd28183cd7f38f3955bb5e7f4e880a8fff5a026", "fields": {"nom_de_la_commune": "ESQUIEZE SERE", "libell_d_acheminement": "ESQUIEZE SERE", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65168"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4187d0f64e14c10425253f20d195718ce2df5cc1", "fields": {"nom_de_la_commune": "FERRIERES", "libell_d_acheminement": "FERRIERES", "code_postal": "65560", "coordonnees_gps": [42.9975341833, -0.255768295954], "code_commune_insee": "65176"}, "geometry": {"type": "Point", "coordinates": [-0.255768295954, 42.9975341833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c964df7dced2d0a1c4e37cb732d2663774185129", "fields": {"nom_de_la_commune": "FONTRAILLES", "libell_d_acheminement": "FONTRAILLES", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65177"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fb720f8b0d51e3224759ae46d65c81adae093fb", "fields": {"nom_de_la_commune": "TALUS ST PRIX", "libell_d_acheminement": "TALUS ST PRIX", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51563"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6d17969307a5349d1f2b66c557c8072be35480", "fields": {"nom_de_la_commune": "TILLOY ET BELLAY", "libell_d_acheminement": "TILLOY ET BELLAY", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51572"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1c2ba513db4bac3099608c21823138d5516b9c9", "fields": {"nom_de_la_commune": "TREFOLS", "libell_d_acheminement": "TREFOLS", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51579"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3c837f0b13ee905d9e464692eb2d446504acea2", "fields": {"nom_de_la_commune": "TROIS FONTAINES L ABBAYE", "libell_d_acheminement": "TROIS FONTAINES L ABBAYE", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51583"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d477d596faf006f25ec06f608ec5c73c5100122", "fields": {"nom_de_la_commune": "VADENAY", "libell_d_acheminement": "VADENAY", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51587"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d84373cb0df012b39faf792529350cd764ea212e", "fields": {"nom_de_la_commune": "VANDIERES", "libell_d_acheminement": "VANDIERES", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51592"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8074bd2fa26dbafc779b4723fb3f0d8cb1ddbaaf", "fields": {"nom_de_la_commune": "VASSIMONT ET CHAPELAINE", "libell_d_acheminement": "VASSIMONT ET CHAPELAINE", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51594"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957065388b84920ffa3db1c77d21302a4964511f", "fields": {"nom_de_la_commune": "VAUCLERC", "libell_d_acheminement": "VAUCLERC", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51598"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0095e795297771f7891787a15fdff03bd60656", "fields": {"nom_de_la_commune": "VENTEUIL", "libell_d_acheminement": "VENTEUIL", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51605"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d001fdc7120095baee95f8277ceddfe73cd99f", "fields": {"nom_de_la_commune": "VERTUS", "libell_d_acheminement": "VERTUS", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51612"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28b7540f9fc4d7ab0abdccb58c813e7c1d7325b0", "fields": {"nom_de_la_commune": "LA VEUVE", "libell_d_acheminement": "LA VEUVE", "code_postal": "51520", "coordonnees_gps": [48.9826382604, 4.36070920817], "code_commune_insee": "51617"}, "geometry": {"type": "Point", "coordinates": [4.36070920817, 48.9826382604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3305ab0e5e1e3d03f30bf1699af601a7663108", "fields": {"nom_de_la_commune": "VIENNE LA VILLE", "libell_d_acheminement": "VIENNE LA VILLE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51620"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d78e7dc592f408795ce0178dbdb33f205a22e715", "fields": {"nom_de_la_commune": "VILLE DOMMANGE", "libell_d_acheminement": "VILLE DOMMANGE", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51622"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06605e4e49a1e151b7b1ceb903e419fab6ce3216", "fields": {"nom_de_la_commune": "VILLERS AUX BOIS", "libell_d_acheminement": "VILLERS AUX BOIS", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51630"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b36584aff34e2b6190189e61816f40add54a58", "fields": {"nom_de_la_commune": "VILLERS LE SEC", "libell_d_acheminement": "VILLERS LE SEC", "code_postal": "51250", "coordonnees_gps": [48.7689715005, 4.90406151708], "code_commune_insee": "51635"}, "geometry": {"type": "Point", "coordinates": [4.90406151708, 48.7689715005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988a398bd473f88c80adfb709101587860042a7c", "fields": {"nom_de_la_commune": "VILLERS SOUS CHATILLON", "libell_d_acheminement": "VILLERS SOUS CHATILLON", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51637"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6272d1275033d403b911a9acdf406460c562803", "fields": {"nom_de_la_commune": "VINCELLES", "libell_d_acheminement": "VINCELLES", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51644"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e789293cc67cfd9e0bc60f98fb3ce5a2d9e296ab", "fields": {"nom_de_la_commune": "VOUARCES", "libell_d_acheminement": "VOUARCES", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51652"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec6401287be995f26c4946813998193fc6c6b1a3", "fields": {"nom_de_la_commune": "VRAUX", "libell_d_acheminement": "VRAUX", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51656"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93766d08dffd77f8bd3a72c59ece471feb0f3bd2", "fields": {"nom_de_la_commune": "VRIGNY", "libell_d_acheminement": "VRIGNY", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51657"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9302c843af37ddd43acedfafcd9a6fe35667bce7", "fields": {"nom_de_la_commune": "WARMERIVILLE", "libell_d_acheminement": "WARMERIVILLE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51660"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49f0daa98b8f5bbd5b728f2a2d8d3bab56d945b8", "fields": {"nom_de_la_commune": "WITRY LES REIMS", "libell_d_acheminement": "WITRY LES REIMS", "code_postal": "51420", "coordonnees_gps": [49.2697568482, 4.13175123605], "code_commune_insee": "51662"}, "geometry": {"type": "Point", "coordinates": [4.13175123605, 49.2697568482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edcd7138864b8e0979f55bb5685c3dec5f364391", "fields": {"nom_de_la_commune": "AGEVILLE", "libell_d_acheminement": "AGEVILLE", "code_postal": "52340", "coordonnees_gps": [48.1142571752, 5.32025976914], "code_commune_insee": "52001"}, "geometry": {"type": "Point", "coordinates": [5.32025976914, 48.1142571752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c982ffbbe099b8782ae0745252686be9b3ac8d5", "fields": {"nom_de_la_commune": "AIZANVILLE", "libell_d_acheminement": "AIZANVILLE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52005"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31cb9c35c2abac64de570844ed1636134a9080e6", "fields": {"nom_de_la_commune": "ANDILLY EN BASSIGNY", "libell_d_acheminement": "ANDILLY EN BASSIGNY", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52009"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc58bccb9037399cc61d68c8b2a14a8d362444bf", "fields": {"nom_de_la_commune": "APREY", "libell_d_acheminement": "APREY", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52014"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d882b7a5463af345a110510888b2d6a5890aeff8", "fields": {"nom_de_la_commune": "AUBEPIERRE SUR AUBE", "libell_d_acheminement": "AUBEPIERRE SUR AUBE", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52022"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23354741fcf90f3b9e34cc37a11969b5ea4f7602", "fields": {"nom_de_la_commune": "AUTREVILLE SUR LA RENNE", "libell_d_acheminement": "AUTREVILLE SUR LA RENNE", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52031"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a3e569fc4f673bb3c322e6429dd44c5d46af57", "fields": {"code_postal": "52330", "code_commune_insee": "52031", "libell_d_acheminement": "AUTREVILLE SUR LA RENNE", "ligne_5": "ST MARTIN SUR LA RENNE", "nom_de_la_commune": "AUTREVILLE SUR LA RENNE", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d24b4e64ca76b5af681bc9631f22deec27d263a", "fields": {"nom_de_la_commune": "BAILLY AUX FORGES", "libell_d_acheminement": "BAILLY AUX FORGES", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52034"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb848861e5220bd60af2522df0f95489c70c31f", "fields": {"nom_de_la_commune": "BANNES", "libell_d_acheminement": "BANNES", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52037"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf112c65aec511c852b0e489642ede937d4b4303", "fields": {"nom_de_la_commune": "BASSONCOURT", "libell_d_acheminement": "BASSONCOURT", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52038"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04aa35654f02a4b431b369fc424fa25a6c8d350d", "fields": {"nom_de_la_commune": "BLECOURT", "libell_d_acheminement": "BLECOURT", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52055"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0962d80c8181876f6e87eea2c9f54e57b47f04ab", "fields": {"nom_de_la_commune": "BOLOGNE", "libell_d_acheminement": "BOLOGNE", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52058"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73d38a20d0cd946aabfe14084490ecea52c2f7cc", "fields": {"code_postal": "52400", "code_commune_insee": "52060", "libell_d_acheminement": "BOURBONNE LES BAINS", "ligne_5": "GENRUPT", "nom_de_la_commune": "BOURBONNE LES BAINS", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f6e0eea51e542e7d9a3d79d8fc8467ee257339b", "fields": {"nom_de_la_commune": "BOUZANCOURT", "libell_d_acheminement": "BOUZANCOURT", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52065"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f516353dd5d22a1e07e8e997f0146fa4954bede", "fields": {"code_postal": "52240", "code_commune_insee": "52074", "libell_d_acheminement": "BREUVANNES EN BASSIGNY", "ligne_5": "COLOMBEY LES CHOISEUL", "nom_de_la_commune": "BREUVANNES EN BASSIGNY", "coordonnees_gps": [48.0703177579, 5.52769658592]}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47884c89cc94da618c598770275fe31f11747901", "fields": {"nom_de_la_commune": "BRICON", "libell_d_acheminement": "BRICON", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52076"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "984bb8a6ea87004574af72680b345ccc9d59a886", "fields": {"nom_de_la_commune": "BROUSSEVAL", "libell_d_acheminement": "BROUSSEVAL", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52079"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "378c928f2829c2bc08126a9c7d091bdaecbaa9f8", "fields": {"nom_de_la_commune": "BUSSON", "libell_d_acheminement": "BUSSON", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52084"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b96d330db8b35d5b90354f6b14eb4d6b07574b5", "fields": {"nom_de_la_commune": "BUXIERES LES VILLIERS", "libell_d_acheminement": "BUXIERES LES VILLIERS", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52087"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b66105a574029f026e6fd64db7709eabd2b3e8", "fields": {"code_postal": "52160", "code_commune_insee": "52094", "libell_d_acheminement": "VALS DES TILLES", "ligne_5": "VILLEMERVRY", "nom_de_la_commune": "VALS DES TILLES", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc1f2dbaa97bdf3482d7b0df28174e48828d071e", "fields": {"nom_de_la_commune": "CHAMPIGNY LES LANGRES", "libell_d_acheminement": "CHAMPIGNY LES LANGRES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52102"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "333c87243714280162a3e5fa000590d22c380043", "fields": {"nom_de_la_commune": "CHARMES LA GRANDE", "libell_d_acheminement": "CHARMES LA GRANDE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52110"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "668f20d4a0d22d325db540d43b3513337f435ac4", "fields": {"code_postal": "52120", "code_commune_insee": "52114", "libell_d_acheminement": "CHATEAUVILLAIN", "ligne_5": "CREANCEY", "nom_de_la_commune": "CHATEAUVILLAIN", "coordonnees_gps": [48.0490446156, 4.88638529419]}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a49d1a4cdc17b75de25d002108860dda39953d7c", "fields": {"nom_de_la_commune": "CHAUFFOURT", "libell_d_acheminement": "CHAUFFOURT", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52120"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8736baa49b97f149c8708d121d4aa0149117e6e7", "fields": {"code_postal": "52000", "code_commune_insee": "52125", "libell_d_acheminement": "CHAMARANDES CHOIGNES", "ligne_5": "CHOIGNES", "nom_de_la_commune": "CHAMARANDES CHOIGNES", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a7c95e79693741810edad5544e93dc53983ff9", "fields": {"nom_de_la_commune": "CHOILLEY DARDENAY", "libell_d_acheminement": "CHOILLEY DARDENAY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52126"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a60ffc21aff58b100fdb188abdfd3db9cf6f7571", "fields": {"nom_de_la_commune": "CHOISEUL", "libell_d_acheminement": "CHOISEUL", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52127"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "316bfc882d5b9bb8914616fcd1bbbe6a5cdcedc5", "fields": {"nom_de_la_commune": "CLINCHAMP", "libell_d_acheminement": "CLINCHAMP", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52133"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6f520cbdd1d1a359705032964cc634ea1b10bbf", "fields": {"nom_de_la_commune": "COIFFY LE BAS", "libell_d_acheminement": "COIFFY LE BAS", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52135"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f82c6937324cc437f1b98cd17e97325929f059f7", "fields": {"nom_de_la_commune": "CUREL", "libell_d_acheminement": "CUREL", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52156"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5c315bd1df77d74897a4fdd1d3e01b9b00b95b", "fields": {"code_postal": "52190", "code_commune_insee": "52158", "libell_d_acheminement": "CUSEY", "ligne_5": "PERCEY SOUS MONTORMENTIER", "nom_de_la_commune": "CUSEY", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e62ded5af766fe1612cf88660ab76f8b684ca228", "fields": {"nom_de_la_commune": "DAILLECOURT", "libell_d_acheminement": "DAILLECOURT", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52161"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad6b3b6645eb0ae7317c36ef57fa43d994f08222", "fields": {"nom_de_la_commune": "DINTEVILLE", "libell_d_acheminement": "DINTEVILLE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52168"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "270a631be56e7ffdf827c31976cc2cd6ff571068", "fields": {"nom_de_la_commune": "DOMMARTIN LE FRANC", "libell_d_acheminement": "DOMMARTIN LE FRANC", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52171"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1c4b6111489052a5a2b21583316009b5f8e4d2", "fields": {"nom_de_la_commune": "DONCOURT SUR MEUSE", "libell_d_acheminement": "DONCOURT SUR MEUSE", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52174"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa66a4e1f832116f3ef7f996cb39d98e5478f756", "fields": {"nom_de_la_commune": "DOULEVANT LE PETIT", "libell_d_acheminement": "DOULEVANT LE PETIT", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52179"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac5ae90584bc45fb7027ff3a0cb5d4911551502e", "fields": {"code_postal": "52290", "code_commune_insee": "52182", "libell_d_acheminement": "ECLARON BRAUCOURT STE LIVIERE", "ligne_5": "BRAUCOURT", "nom_de_la_commune": "ECLARON BRAUCOURT STE LIVIERE", "coordonnees_gps": [48.5761520145, 4.85527369999]}, "geometry": {"type": "Point", "coordinates": [4.85527369999, 48.5761520145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f488c4b7aa443f6724c52ae258199a543c4adfa1", "fields": {"nom_de_la_commune": "EPIZON", "libell_d_acheminement": "EPIZON", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52187"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f726f6d09f26fdedb6158ed0ae2ade22445e017f", "fields": {"code_postal": "52190", "code_commune_insee": "52189", "libell_d_acheminement": "LE VAL D ESNOMS", "ligne_5": "CHATOILLENOT", "nom_de_la_commune": "LE VAL D ESNOMS", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "002a02beb3ef92b6f40dec5b887a7bb2d82d2779", "fields": {"code_postal": "52190", "code_commune_insee": "52189", "libell_d_acheminement": "LE VAL D ESNOMS", "ligne_5": "ESNOMS AU VAL", "nom_de_la_commune": "LE VAL D ESNOMS", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9599c0e71243ed2a3042c5272df1a5988c1e59e", "fields": {"nom_de_la_commune": "EURVILLE BIENVILLE", "libell_d_acheminement": "EURVILLE BIENVILLE", "code_postal": "52410", "coordonnees_gps": [48.5892998637, 5.03091312346], "code_commune_insee": "52194"}, "geometry": {"type": "Point", "coordinates": [5.03091312346, 48.5892998637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bd26d17b6a51cc86c8666ba48289e42c18eb6b9", "fields": {"code_postal": "52500", "code_commune_insee": "52197", "libell_d_acheminement": "FAYL BILLOT", "ligne_5": "BRONCOURT", "nom_de_la_commune": "FAYL BILLOT", "coordonnees_gps": [47.7590950974, 5.58361312095]}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71acf7400c3d3ddb01eb8f290e026733c875b75", "fields": {"nom_de_la_commune": "FRAMPAS", "libell_d_acheminement": "FRAMPAS", "code_postal": "52220", "coordonnees_gps": [48.4589686366, 4.78360005929], "code_commune_insee": "52206"}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f65a4af56dc25f0672cf5ef6fbdfb2ab79be3d43", "fields": {"nom_de_la_commune": "FRECOURT", "libell_d_acheminement": "FRECOURT", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52207"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9efdea7aeed39c3bde84286f0f53c50cc3b1c2cd", "fields": {"nom_de_la_commune": "GENEVRIERES", "libell_d_acheminement": "GENEVRIERES", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52213"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6bb1a6192807766ca7ecd533ea1e14ac4b4507", "fields": {"nom_de_la_commune": "LA GENEVROYE", "libell_d_acheminement": "LA GENEVROYE", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52214"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd47c663348b4d108a95e1b7609409dd5860992", "fields": {"nom_de_la_commune": "GILLANCOURT", "libell_d_acheminement": "GILLANCOURT", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52221"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6470184acb8d3f737dd5f7f2c695162df82b003", "fields": {"nom_de_la_commune": "GRENANT", "libell_d_acheminement": "GRENANT", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52229"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274351f280f61d06404c7af07bd2e52541c4ca4f", "fields": {"nom_de_la_commune": "GUINDRECOURT AUX ORMES", "libell_d_acheminement": "GUINDRECOURT AUX ORMES", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52231"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b128628677bf32d5de40c151c5803c2fd21892a6", "fields": {"nom_de_la_commune": "HALLIGNICOURT", "libell_d_acheminement": "HALLIGNICOURT", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52235"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d84d06b0a587836a7f97f2f03742df0ccaa5a38", "fields": {"nom_de_la_commune": "LAMANCINE", "libell_d_acheminement": "LAMANCINE", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52260"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7a54df758dc33755212bb3969b9b483f3846f07", "fields": {"code_postal": "52170", "code_commune_insee": "52265", "libell_d_acheminement": "BAYARD SUR MARNE", "ligne_5": "GOURZON", "nom_de_la_commune": "BAYARD SUR MARNE", "coordonnees_gps": [48.5434791123, 5.11650934546]}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4906fa0d76664e6cbc55590366b34e2ff439468b", "fields": {"nom_de_la_commune": "LANEUVILLE A REMY", "libell_d_acheminement": "LANEUVILLE A REMY", "code_postal": "52220", "coordonnees_gps": [48.4589686366, 4.78360005929], "code_commune_insee": "52266"}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a53c60f18f1c2871b70700c493ce53be71d6c89d", "fields": {"nom_de_la_commune": "LATRECEY ORMOY SUR AUBE", "libell_d_acheminement": "LATRECEY ORMOY SUR AUBE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52274"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4bbbec5a8af137be1a872e3936bcfd82773a1c3", "fields": {"nom_de_la_commune": "LAVILLENEUVE AU ROI", "libell_d_acheminement": "LAVILLENEUVE AU ROI", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52278"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bccdc625c7d7f61eae83051910a5dc268c0b036", "fields": {"nom_de_la_commune": "LEUCHEY", "libell_d_acheminement": "LEUCHEY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52285"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef439eeb0c50b19514200876c112dd3e7860c123", "fields": {"nom_de_la_commune": "LES LOGES", "libell_d_acheminement": "LES LOGES", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52290"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "851d273ca4b58d6d55a5c6d0c5c679d74867aea6", "fields": {"nom_de_la_commune": "LONGEAU PERCEY", "libell_d_acheminement": "LONGEAU PERCEY", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52292"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14f0086890b64ae22ec157db99804a709804a508", "fields": {"code_postal": "52250", "code_commune_insee": "52292", "libell_d_acheminement": "LONGEAU PERCEY", "ligne_5": "LONGEAU", "nom_de_la_commune": "LONGEAU PERCEY", "coordonnees_gps": [47.7675447812, 5.24768674453]}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96827029a138a84701a8e0ede7c20dcc25f81be8", "fields": {"code_postal": "52250", "code_commune_insee": "52292", "libell_d_acheminement": "LONGEAU PERCEY", "ligne_5": "PERCEY LE PAUTEL", "nom_de_la_commune": "LONGEAU PERCEY", "coordonnees_gps": [47.7675447812, 5.24768674453]}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f6878d7796ba1c5774d39e11fef57e5f86fef0", "fields": {"nom_de_la_commune": "LOUVIERES", "libell_d_acheminement": "LOUVIERES", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52295"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac5e1bec2e0b07d0d0eb5d1bba4d99d51bf0907", "fields": {"nom_de_la_commune": "LUZY SUR MARNE", "libell_d_acheminement": "LUZY SUR MARNE", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52297"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fea9fdd8b19a9c689de59abeba9f3da89996c429", "fields": {"nom_de_la_commune": "MAIZIERES SUR AMANCE", "libell_d_acheminement": "MAIZIERES SUR AMANCE", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52303"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7d9b1923833e9d0a4c7ed67fd75afca56c574f5", "fields": {"nom_de_la_commune": "MERREY", "libell_d_acheminement": "MERREY", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52320"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc380a571e4ea8910ae5ccc6a86d11725003a43", "fields": {"nom_de_la_commune": "MERTRUD", "libell_d_acheminement": "MERTRUD", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52321"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b825e602f5f24f2dd0266897ab67c079ea66d1e1", "fields": {"nom_de_la_commune": "MEURES", "libell_d_acheminement": "MEURES", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52322"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb89bf3fc9f4db0faa320f632a3133700503f5ff", "fields": {"nom_de_la_commune": "MIRBEL", "libell_d_acheminement": "MIRBEL", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52326"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b123bc8641955f84662b773df8b6fade4f95419", "fields": {"nom_de_la_commune": "VAL DE MEUSE", "libell_d_acheminement": "VAL DE MEUSE", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52332"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7bfbb7f5c13bfec5520c8d7b748ee93261e5795", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "EPINANT", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff6808c2b2e23c2aa8db24bcbebdc4e6809c5639", "fields": {"nom_de_la_commune": "MORANCOURT", "libell_d_acheminement": "MORANCOURT", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52341"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31485e8aaddf5b389c049bffcac81d8e8f7f8e7", "fields": {"nom_de_la_commune": "MUSSEY SUR MARNE", "libell_d_acheminement": "MUSSEY SUR MARNE", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52346"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522e6843f7b4f78c8c0d1d7c1e96afd4cde3ae64", "fields": {"nom_de_la_commune": "NOGENT", "libell_d_acheminement": "NOGENT", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52353"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9cc13ee61379b1892d143893c9e512ea7eb9d4d", "fields": {"code_postal": "52800", "code_commune_insee": "52353", "libell_d_acheminement": "NOGENT", "ligne_5": "DONNEMARIE", "nom_de_la_commune": "NOGENT", "coordonnees_gps": [48.0321546961, 5.30922833367]}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc48bce18851aded4f9314451a4cf1e447f5555", "fields": {"nom_de_la_commune": "NONCOURT SUR LE RONGEANT", "libell_d_acheminement": "NONCOURT SUR LE RONGEANT", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52357"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6cd0eefedcea8892f24c2cedf62f85efeb2f850", "fields": {"nom_de_la_commune": "NOYERS", "libell_d_acheminement": "NOYERS", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52358"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25455deec1eebb6508b2bf390798b4ec0431828", "fields": {"nom_de_la_commune": "PREZ SOUS LAFAUCHE", "libell_d_acheminement": "PREZ SOUS LAFAUCHE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52407"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b03ccd0732bb27f0d615d574f73b28bab4fe833", "fields": {"code_postal": "52220", "code_commune_insee": "52411", "libell_d_acheminement": "RIVES DERVOISES", "ligne_5": "DROYES", "nom_de_la_commune": "RIVES DERVOISES", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fe1f4dc9b1ab883b7ea29213a2a8c2da4123048", "fields": {"code_postal": "52220", "code_commune_insee": "52411", "libell_d_acheminement": "RIVES DERVOISES", "ligne_5": "PUELLEMONTIER", "nom_de_la_commune": "RIVES DERVOISES", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9d16da22152ec7e6a624afb821a3fef796b098", "fields": {"nom_de_la_commune": "ST GERMAIN SUR VIENNE", "libell_d_acheminement": "ST GERMAIN SUR VIENNE", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37220"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca2909a6b436728bd758785264e8627d7f821448", "fields": {"nom_de_la_commune": "STE MAURE DE TOURAINE", "libell_d_acheminement": "STE MAURE DE TOURAINE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37226"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78f05029306b7345b44d26718837636434802708", "fields": {"nom_de_la_commune": "ST REGLE", "libell_d_acheminement": "ST REGLE", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37236"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "636f7e409ce95679e41b0559032547b2b65983a2", "fields": {"nom_de_la_commune": "SORIGNY", "libell_d_acheminement": "SORIGNY", "code_postal": "37250", "coordonnees_gps": [47.2559000067, 0.703996574131], "code_commune_insee": "37250"}, "geometry": {"type": "Point", "coordinates": [0.703996574131, 47.2559000067]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb691dbe9245db6dced3f552dc00a518641aa3f", "fields": {"nom_de_la_commune": "TAUXIGNY", "libell_d_acheminement": "TAUXIGNY", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37254"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddd7ae839ef5d25b552ae92567a11d290deb7c69", "fields": {"nom_de_la_commune": "TAVANT", "libell_d_acheminement": "TAVANT", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37255"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58e120cb67984eb5633ca7df93f765ea79ecf857", "fields": {"nom_de_la_commune": "THILOUZE", "libell_d_acheminement": "THILOUZE", "code_postal": "37260", "coordonnees_gps": [47.2480422288, 0.614098703872], "code_commune_insee": "37257"}, "geometry": {"type": "Point", "coordinates": [0.614098703872, 47.2480422288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969772b36bb1f0da7249e109421a916f72e8dd32", "fields": {"nom_de_la_commune": "TOURNON ST PIERRE", "libell_d_acheminement": "TOURNON ST PIERRE", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37259"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "245b9e3828c7dbf43bab31bb9b36d540954ac52b", "fields": {"nom_de_la_commune": "TOURS", "libell_d_acheminement": "TOURS", "code_postal": "37000", "coordonnees_gps": [47.3979724257, 0.696297496341], "code_commune_insee": "37261"}, "geometry": {"type": "Point", "coordinates": [0.696297496341, 47.3979724257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541fea6c9b5e2b13459cf8506e3ed4f0de694bb2", "fields": {"nom_de_la_commune": "VILLEPERDUE", "libell_d_acheminement": "VILLEPERDUE", "code_postal": "37260", "coordonnees_gps": [47.2480422288, 0.614098703872], "code_commune_insee": "37278"}, "geometry": {"type": "Point", "coordinates": [0.614098703872, 47.2480422288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "649f5ba9eb908d9c1ccb42e810941c066122bae5", "fields": {"nom_de_la_commune": "VILLIERS AU BOUIN", "libell_d_acheminement": "VILLIERS AU BOUIN", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37279"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "048f586f97f856eff8d0a77cbcacb9043487cb10", "fields": {"nom_de_la_commune": "VOU", "libell_d_acheminement": "VOU", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37280"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca6db7ca183b08ac432d9eb38a499967592a5a38", "fields": {"nom_de_la_commune": "ALLEMOND", "libell_d_acheminement": "ALLEMOND", "code_postal": "38114", "coordonnees_gps": [45.1681255777, 6.0656743192], "code_commune_insee": "38005"}, "geometry": {"type": "Point", "coordinates": [6.0656743192, 45.1681255777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "514a36d47d469cc1671d9bb1c6a2c4cd88dc22d7", "fields": {"nom_de_la_commune": "ANJOU", "libell_d_acheminement": "ANJOU", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38009"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce255a4eca12097e75a12c3b1a556e49efc58133", "fields": {"nom_de_la_commune": "ANNOISIN CHATELANS", "libell_d_acheminement": "ANNOISIN CHATELANS", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38010"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24a825b6235fc0be2fbd9ff2ea18f3819fe117f2", "fields": {"nom_de_la_commune": "ARTAS", "libell_d_acheminement": "ARTAS", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38015"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4059cd827661f7ada9959acc819fb220bdd2bd8", "fields": {"nom_de_la_commune": "BARRAUX", "libell_d_acheminement": "BARRAUX", "code_postal": "38530", "coordonnees_gps": [45.4375526666, 5.98907840878], "code_commune_insee": "38027"}, "geometry": {"type": "Point", "coordinates": [5.98907840878, 45.4375526666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aec4f98bc89914c989f1653a1035e7bb0445edb", "fields": {"nom_de_la_commune": "BIOL", "libell_d_acheminement": "BIOL", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38044"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c47a7028d59d8bc7bd00a5fa42e4fa859851209", "fields": {"nom_de_la_commune": "BIZONNES", "libell_d_acheminement": "BIZONNES", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38046"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f82d5141c9ad2fbe5f11d674dc51247ad4aead1", "fields": {"nom_de_la_commune": "BONNEFAMILLE", "libell_d_acheminement": "BONNEFAMILLE", "code_postal": "38090", "coordonnees_gps": [45.595478316, 5.15236035491], "code_commune_insee": "38048"}, "geometry": {"type": "Point", "coordinates": [5.15236035491, 45.595478316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb738a1e10062c4b1c92f22b6f40f0393e9d6f7", "fields": {"nom_de_la_commune": "LE BOURG D OISANS", "libell_d_acheminement": "LE BOURG D OISANS", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38052"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93610e5ff429829ec9e392c6ef64901f5a46cfbb", "fields": {"nom_de_la_commune": "BRANGUES", "libell_d_acheminement": "BRANGUES", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38055"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cf950f670549c36d0f4b176ee1b022a37aeaf69", "fields": {"nom_de_la_commune": "CHALON", "libell_d_acheminement": "CHALON", "code_postal": "38122", "coordonnees_gps": [45.4359368128, 4.99798252687], "code_commune_insee": "38066"}, "geometry": {"type": "Point", "coordinates": [4.99798252687, 45.4359368128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abf81c700f936b7943360a5c78f561d84f569c1c", "fields": {"nom_de_la_commune": "CHAMAGNIEU", "libell_d_acheminement": "CHAMAGNIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38067"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "425c6f4125420e18fa8648c10287de592109bb67", "fields": {"nom_de_la_commune": "CHAMPAGNIER", "libell_d_acheminement": "CHAMPAGNIER", "code_postal": "38800", "coordonnees_gps": [45.1176440456, 5.71273169882], "code_commune_insee": "38068"}, "geometry": {"type": "Point", "coordinates": [5.71273169882, 45.1176440456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30002a68da81a685c9ec57b4699fcbf4037f57ee", "fields": {"nom_de_la_commune": "CHARETTE", "libell_d_acheminement": "CHARETTE", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38083"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b7ad784436ed05e446d4f5314f5c74a1a7eb4f9", "fields": {"nom_de_la_commune": "CHARVIEU CHAVAGNEUX", "libell_d_acheminement": "CHARVIEU CHAVAGNEUX", "code_postal": "38230", "coordonnees_gps": [45.7461483574, 5.17160988161], "code_commune_insee": "38085"}, "geometry": {"type": "Point", "coordinates": [5.17160988161, 45.7461483574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "268bfb5b3818d96eec1290808fcc427bd62c8f93", "fields": {"code_postal": "38230", "code_commune_insee": "38085", "libell_d_acheminement": "CHARVIEU CHAVAGNEUX", "ligne_5": "CHAVAGNEUX", "nom_de_la_commune": "CHARVIEU CHAVAGNEUX", "coordonnees_gps": [45.7461483574, 5.17160988161]}, "geometry": {"type": "Point", "coordinates": [5.17160988161, 45.7461483574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95707ce193b452bc323a9c0097c4e351a2fec0e8", "fields": {"nom_de_la_commune": "CHATENAY", "libell_d_acheminement": "CHATENAY", "code_postal": "38980", "coordonnees_gps": [45.3053476338, 5.21305858038], "code_commune_insee": "38093"}, "geometry": {"type": "Point", "coordinates": [5.21305858038, 45.3053476338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca1435eca844857747ce768d64a18c7aa549d4aa", "fields": {"nom_de_la_commune": "CHATONNAY", "libell_d_acheminement": "CHATONNAY", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38094"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122a924840e0e70b63e07d2ee502491c1bee7a42", "fields": {"nom_de_la_commune": "CHICHILIANNE", "libell_d_acheminement": "CHICHILIANNE", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38103"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "598241f47b5ee91c0ddbb0657b8667501082c9c8", "fields": {"nom_de_la_commune": "CHIMILIN", "libell_d_acheminement": "CHIMILIN", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38104"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3afd1e1ac009a6449dda387baf5589ecedd0434d", "fields": {"nom_de_la_commune": "CHONAS L AMBALLAN", "libell_d_acheminement": "CHONAS L AMBALLAN", "code_postal": "38121", "coordonnees_gps": [45.4752927217, 4.83249057524], "code_commune_insee": "38107"}, "geometry": {"type": "Point", "coordinates": [4.83249057524, 45.4752927217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de128f39ccca5ec0dac45b87b7470eedb8187ad0", "fields": {"nom_de_la_commune": "CHUZELLES", "libell_d_acheminement": "CHUZELLES", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38110"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3afb965a262dbb3b2466a3670a9d3372a1bfc5d4", "fields": {"nom_de_la_commune": "CLONAS SUR VAREZE", "libell_d_acheminement": "CLONAS SUR VAREZE", "code_postal": "38550", "coordonnees_gps": [45.3884978642, 4.79761924958], "code_commune_insee": "38114"}, "geometry": {"type": "Point", "coordinates": [4.79761924958, 45.3884978642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55df2dcdf4741adc984773ce859f825abef6ad3b", "fields": {"nom_de_la_commune": "COUR ET BUIS", "libell_d_acheminement": "COUR ET BUIS", "code_postal": "38122", "coordonnees_gps": [45.4359368128, 4.99798252687], "code_commune_insee": "38134"}, "geometry": {"type": "Point", "coordinates": [4.99798252687, 45.4359368128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4fac8bb184efd2052c6f58cfc1bddc5502260a2", "fields": {"code_postal": "38510", "code_commune_insee": "38139", "libell_d_acheminement": "CREYS MEPIEU", "ligne_5": "MEPIEU", "nom_de_la_commune": "CREYS MEPIEU", "coordonnees_gps": [45.7026691916, 5.45358290741]}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "240628670b89f7cdd72ff52d1a6ab8a90ea2c919", "fields": {"nom_de_la_commune": "CROLLES", "libell_d_acheminement": "CROLLES", "code_postal": "38920", "coordonnees_gps": [45.2821420826, 5.88908300611], "code_commune_insee": "38140"}, "geometry": {"type": "Point", "coordinates": [5.88908300611, 45.2821420826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f2b523aba714abc11508c8d60753793b747909", "fields": {"nom_de_la_commune": "ECLOSE BADINIERES", "libell_d_acheminement": "ECLOSE BADINIERES", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38152"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba48ace2163e80cc4828f5227ecb4a49d0c2c422", "fields": {"code_postal": "38300", "code_commune_insee": "38152", "libell_d_acheminement": "ECLOSE BADINIERES", "ligne_5": "BADINIERES", "nom_de_la_commune": "ECLOSE BADINIERES", "coordonnees_gps": [45.5640393391, 5.29545357844]}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca6f37463f61cd9b3678a55aa80d36e93aa3a4af", "fields": {"nom_de_la_commune": "LA FORTERESSE", "libell_d_acheminement": "LA FORTERESSE", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38171"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41df918ff34cbfe6882287c83ad3d4d710436e67", "fields": {"nom_de_la_commune": "LE FRENEY D OISANS", "libell_d_acheminement": "LE FRENEY D OISANS", "code_postal": "38142", "coordonnees_gps": [45.0896138023, 6.16821943755], "code_commune_insee": "38173"}, "geometry": {"type": "Point", "coordinates": [6.16821943755, 45.0896138023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d054bf954dca7f3f34a1e3c65992ee040674d7a", "fields": {"code_postal": "38290", "code_commune_insee": "38176", "libell_d_acheminement": "FRONTONAS", "ligne_5": "GONAS", "nom_de_la_commune": "FRONTONAS", "coordonnees_gps": [45.6634032734, 5.1509887973]}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "952598503f3ba9dac888368bee78a716030a6770", "fields": {"nom_de_la_commune": "GIERES", "libell_d_acheminement": "GIERES", "code_postal": "38610", "coordonnees_gps": [45.1794754259, 5.79803477823], "code_commune_insee": "38179"}, "geometry": {"type": "Point", "coordinates": [5.79803477823, 45.1794754259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e35e29d04d09626bd9d1a169002fd4e36e17fd63", "fields": {"nom_de_la_commune": "GONCELIN", "libell_d_acheminement": "GONCELIN", "code_postal": "38570", "coordonnees_gps": [45.3269943353, 6.00916897234], "code_commune_insee": "38181"}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11ac513985be812f3833bc4cf0cc1224927c69c0", "fields": {"nom_de_la_commune": "GRANIEU", "libell_d_acheminement": "GRANIEU", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38183"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52c85235c0a593ee89113a599c6bd8104bc36c34", "fields": {"nom_de_la_commune": "GRENAY", "libell_d_acheminement": "GRENAY", "code_postal": "38540", "coordonnees_gps": [45.6158247621, 5.03787664057], "code_commune_insee": "38184"}, "geometry": {"type": "Point", "coordinates": [5.03787664057, 45.6158247621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f27d866a8cefe1db5b969df940ea819fb0bdfebf", "fields": {"nom_de_la_commune": "HEYRIEUX", "libell_d_acheminement": "HEYRIEUX", "code_postal": "38540", "coordonnees_gps": [45.6158247621, 5.03787664057], "code_commune_insee": "38189"}, "geometry": {"type": "Point", "coordinates": [5.03787664057, 45.6158247621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e22689f1b98077ece701af071601d30d95dc52e9", "fields": {"nom_de_la_commune": "L ISLE D ABEAU", "libell_d_acheminement": "L ISLE D ABEAU", "code_postal": "38080", "coordonnees_gps": [45.6169539729, 5.22284898383], "code_commune_insee": "38193"}, "geometry": {"type": "Point", "coordinates": [5.22284898383, 45.6169539729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc0baadfe5f8e2a7b149f975dd5d5969396eaef9", "fields": {"nom_de_la_commune": "LAFFREY", "libell_d_acheminement": "LAFFREY", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38203"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87a381f7db0786b8a2213e7991cc2c9e5ee08fd5", "fields": {"nom_de_la_commune": "LALLEY", "libell_d_acheminement": "LALLEY", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38204"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99b3d836cac857a5a10e01bd11017a0944ed272f", "fields": {"nom_de_la_commune": "LAVARS", "libell_d_acheminement": "LAVARS", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38208"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10b05cd623d549ef0c4a119c392871a85c56a2a9", "fields": {"nom_de_la_commune": "LIVET ET GAVET", "libell_d_acheminement": "LIVET ET GAVET", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38212"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3750b7ce58ca8a9bf5def52d59c1b8beec25caf6", "fields": {"code_postal": "38220", "code_commune_insee": "38212", "libell_d_acheminement": "LIVET ET GAVET", "ligne_5": "RIOUPEROUX", "nom_de_la_commune": "LIVET ET GAVET", "coordonnees_gps": [45.0661676194, 5.84675560183]}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aee23792e2e228343e14fe473d5078103da8759d", "fields": {"nom_de_la_commune": "LUMBIN", "libell_d_acheminement": "LUMBIN", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38214"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8febf6a3df6e2bebb34c45018754f39725373d80", "fields": {"nom_de_la_commune": "MERLAS", "libell_d_acheminement": "MERLAS", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38228"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5273a4c4ec8b9aafa0d2447c08fc543bc155aa", "fields": {"nom_de_la_commune": "MEYSSIEZ", "libell_d_acheminement": "MEYSSIEZ", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38232"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c4510ac99d4657b2e3c733e7c6b69b2317bda5", "fields": {"nom_de_la_commune": "MIZOEN", "libell_d_acheminement": "MIZOEN", "code_postal": "38142", "coordonnees_gps": [45.0896138023, 6.16821943755], "code_commune_insee": "38237"}, "geometry": {"type": "Point", "coordinates": [6.16821943755, 45.0896138023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a2444d1574d0b5c6b95b6085f82492267848366", "fields": {"nom_de_la_commune": "MOIDIEU DETOURBE", "libell_d_acheminement": "MOIDIEU DETOURBE", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38238"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39b58170c0d3fc4b468e364197f2fd669ac882c", "fields": {"nom_de_la_commune": "MOIRANS", "libell_d_acheminement": "MOIRANS", "code_postal": "38430", "coordonnees_gps": [45.3230969594, 5.56811777038], "code_commune_insee": "38239"}, "geometry": {"type": "Point", "coordinates": [5.56811777038, 45.3230969594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3187322eaf94487d6f60c6e9eb7169914864fac", "fields": {"nom_de_la_commune": "MONTBONNOT ST MARTIN", "libell_d_acheminement": "MONTBONNOT ST MARTIN", "code_postal": "38330", "coordonnees_gps": [45.246730874, 5.82653141673], "code_commune_insee": "38249"}, "geometry": {"type": "Point", "coordinates": [5.82653141673, 45.246730874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3faf13185c5e5b3086d62f02d875b205e5f6be9c", "fields": {"nom_de_la_commune": "MONT DE LANS", "libell_d_acheminement": "MONT DE LANS", "code_postal": "38860", "coordonnees_gps": [44.994660373, 6.12322203081], "code_commune_insee": "38253"}, "geometry": {"type": "Point", "coordinates": [6.12322203081, 44.994660373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7925d45f740560c94af922360d3ef0b29f44bd13", "fields": {"nom_de_la_commune": "MONTEYNARD", "libell_d_acheminement": "MONTEYNARD", "code_postal": "38770", "coordonnees_gps": [44.9592629252, 5.7197167385], "code_commune_insee": "38254"}, "geometry": {"type": "Point", "coordinates": [5.7197167385, 44.9592629252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c998d5a541fc35d3486b89328a8e6c8ce752b281", "fields": {"nom_de_la_commune": "MORAS", "libell_d_acheminement": "MORAS", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38260"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa0fa37619569e7c6c845759f3d26f7b8fa9b7a", "fields": {"nom_de_la_commune": "MORETTE", "libell_d_acheminement": "MORETTE", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38263"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207a6f61080c742910c34343efb52364b905fde5", "fields": {"nom_de_la_commune": "LA MURETTE", "libell_d_acheminement": "LA MURETTE", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38270"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1b8ce587e73bc938988454a9fd359e49eb02f3", "fields": {"nom_de_la_commune": "MURIANETTE", "libell_d_acheminement": "MURIANETTE", "code_postal": "38420", "coordonnees_gps": [45.1842766535, 5.88281738166], "code_commune_insee": "38271"}, "geometry": {"type": "Point", "coordinates": [5.88281738166, 45.1842766535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58286edf389ee328ef39f1ecbb5ce9275061abb5", "fields": {"nom_de_la_commune": "NIVOLAS VERMELLE", "libell_d_acheminement": "NIVOLAS VERMELLE", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38276"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb3914335bef97d712cf9782b509f409a440f87f", "fields": {"nom_de_la_commune": "NOTRE DAME DE VAULX", "libell_d_acheminement": "NOTRE DAME DE VAULX", "code_postal": "38144", "coordonnees_gps": [44.9913624463, 5.74144194434], "code_commune_insee": "38280"}, "geometry": {"type": "Point", "coordinates": [5.74144194434, 44.9913624463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4cf0df2af5bbbc306d9e611ad3ae017885c1b4f", "fields": {"nom_de_la_commune": "ORNON", "libell_d_acheminement": "ORNON", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38285"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dcd6b4f52af6bc2f644b79c577ee2c708a5d7a7", "fields": {"nom_de_la_commune": "PAJAY", "libell_d_acheminement": "PAJAY", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38291"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "855139289fb955a1007d63ee5f04666eb730f279", "fields": {"nom_de_la_commune": "PALADRU", "libell_d_acheminement": "PALADRU", "code_postal": "38850", "coordonnees_gps": [45.4410466118, 5.5471440592], "code_commune_insee": "38292"}, "geometry": {"type": "Point", "coordinates": [5.5471440592, 45.4410466118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "998456f0ce29b1c264630326a1063a7141931485", "fields": {"nom_de_la_commune": "PELLAFOL", "libell_d_acheminement": "PELLAFOL", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38299"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a1e66879a852618c02484811ac6181a1aa820a1", "fields": {"nom_de_la_commune": "PERCY", "libell_d_acheminement": "LE PERCY", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38301"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6c8353b892b221585e8762ff14cfc674be7e08", "fields": {"nom_de_la_commune": "LA PIERRE", "libell_d_acheminement": "LA PIERRE", "code_postal": "38570", "coordonnees_gps": [45.3269943353, 6.00916897234], "code_commune_insee": "38303"}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402617a5797254e63ea1f534978493b87f0dcb0e", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38305"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4feb6ae251a4d374c69474277bb67bc58a7c132", "fields": {"nom_de_la_commune": "PINSOT", "libell_d_acheminement": "PINSOT", "code_postal": "38580", "coordonnees_gps": [45.3350666079, 6.10773824742], "code_commune_insee": "38306"}, "geometry": {"type": "Point", "coordinates": [6.10773824742, 45.3350666079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6837bd7f68b2dffb47dca1914f4ba82b1513b57", "fields": {"nom_de_la_commune": "POLIENAS", "libell_d_acheminement": "POLIENAS", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38310"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a8dfa7f395da6b9acacf4e34b2dbeece3ec372", "fields": {"nom_de_la_commune": "PONSONNAS", "libell_d_acheminement": "PONSONNAS", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38313"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178d5353e190b0dcaca208caa6859575439609e1", "fields": {"nom_de_la_commune": "PRIMARETTE", "libell_d_acheminement": "PRIMARETTE", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38324"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d93620d42e1f7ccb5aeeb0d6e8d32fd891aaaac", "fields": {"nom_de_la_commune": "QUET EN BEAUMONT", "libell_d_acheminement": "QUET EN BEAUMONT", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38329"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ba2c643e04dec20c3fa498885e391a8fa7c536", "fields": {"nom_de_la_commune": "LES ROCHES DE CONDRIEU", "libell_d_acheminement": "LES ROCHES DE CONDRIEU", "code_postal": "38370", "coordonnees_gps": [45.436858951, 4.78033179088], "code_commune_insee": "38340"}, "geometry": {"type": "Point", "coordinates": [4.78033179088, 45.436858951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7612b885106e4e304f283ce1e189873e43eb677b", "fields": {"nom_de_la_commune": "ROUSSILLON", "libell_d_acheminement": "ROUSSILLON", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38344"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82dd27f78fbaa06afabe65304468a1d1532f15b", "fields": {"nom_de_la_commune": "ST ANDEOL", "libell_d_acheminement": "ST ANDEOL", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38355"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1388f616f653f15faa6e2cfedff847ab48a6c9be", "fields": {"nom_de_la_commune": "ST AREY", "libell_d_acheminement": "ST AREY", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38361"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13676cc315402f7c6999e29dc96e65b495c35ebd", "fields": {"nom_de_la_commune": "ST BAUDILLE DE LA TOUR", "libell_d_acheminement": "ST BAUDILLE DE LA TOUR", "code_postal": "38118", "coordonnees_gps": [45.7906226846, 5.32480499353], "code_commune_insee": "38365"}, "geometry": {"type": "Point", "coordinates": [5.32480499353, 45.7906226846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d56596209bc90715431e41d26e090f90ea290dc", "fields": {"nom_de_la_commune": "ST CLAIR SUR GALAURE", "libell_d_acheminement": "ST CLAIR SUR GALAURE", "code_postal": "38940", "coordonnees_gps": [45.2530241738, 5.22613793096], "code_commune_insee": "38379"}, "geometry": {"type": "Point", "coordinates": [5.22613793096, 45.2530241738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87396a142aad9e6f954179ce4ace244a702a388a", "fields": {"nom_de_la_commune": "ST ETIENNE DE CROSSEY", "libell_d_acheminement": "ST ETIENNE DE CROSSEY", "code_postal": "38960", "coordonnees_gps": [45.3922025887, 5.6488231816], "code_commune_insee": "38383"}, "geometry": {"type": "Point", "coordinates": [5.6488231816, 45.3922025887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8e674059e273d27240169be9dc7da7bb6ab1d92", "fields": {"nom_de_la_commune": "ST GEORGES DE COMMIERS", "libell_d_acheminement": "ST GEORGES DE COMMIERS", "code_postal": "38450", "coordonnees_gps": [45.0222177332, 5.65673982861], "code_commune_insee": "38388"}, "geometry": {"type": "Point", "coordinates": [5.65673982861, 45.0222177332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a99d772ce3dac7238598f93600de175170f9d1f2", "fields": {"nom_de_la_commune": "ST JEAN D AVELANNE", "libell_d_acheminement": "ST JEAN D AVELANNE", "code_postal": "38480", "coordonnees_gps": [45.53172228, 5.65443955806], "code_commune_insee": "38398"}, "geometry": {"type": "Point", "coordinates": [5.65443955806, 45.53172228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "349b655ba9eb22eb4423afa6ac21333d7ea8529a", "fields": {"nom_de_la_commune": "ST JEAN D HERANS", "libell_d_acheminement": "ST JEAN D HERANS", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38403"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce1ee3ab4ef453badbd439abae25b54e3e3ebe0a", "fields": {"nom_de_la_commune": "ST JULIEN DE L HERMS", "libell_d_acheminement": "ST JULIEN DE L HERMS", "code_postal": "38122", "coordonnees_gps": [45.4359368128, 4.99798252687], "code_commune_insee": "38406"}, "geometry": {"type": "Point", "coordinates": [4.99798252687, 45.4359368128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "450cf52691f4d8f646ca85151636ce27c80401e9", "fields": {"nom_de_la_commune": "ST LAURENT EN BEAUMONT", "libell_d_acheminement": "ST LAURENT EN BEAUMONT", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38413"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019e9a0efdc10a469592b41689697e9a3a5585b1", "fields": {"nom_de_la_commune": "STE LUCE", "libell_d_acheminement": "STE LUCE", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38414"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f59e8de74d244c0661871ce362a15675a28a860d", "fields": {"nom_de_la_commune": "ST MARTIN DE CLELLES", "libell_d_acheminement": "ST MARTIN DE CLELLES", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38419"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1fed057b75fac21aedcb9d28b83472782a179f", "fields": {"nom_de_la_commune": "ST MAURICE L EXIL", "libell_d_acheminement": "ST MAURICE L EXIL", "code_postal": "38550", "coordonnees_gps": [45.3884978642, 4.79761924958], "code_commune_insee": "38425"}, "geometry": {"type": "Point", "coordinates": [4.79761924958, 45.3884978642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40a285276c3d19e78fec92bd0cf190223c48c616", "fields": {"nom_de_la_commune": "ST MICHEL EN BEAUMONT", "libell_d_acheminement": "ST MICHEL EN BEAUMONT", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38428"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac3980c151abad6bd9df5a384fafedb46aa6157", "fields": {"nom_de_la_commune": "ST MICHEL LES PORTES", "libell_d_acheminement": "ST MICHEL LES PORTES", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38429"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da4ad27399b8ded16653b9dd9e5566b426e4da6", "fields": {"nom_de_la_commune": "ST MURY MONTEYMOND", "libell_d_acheminement": "ST MURY MONTEYMOND", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38430"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a02fd8315fccb17d052318491ff1932363bfaac", "fields": {"nom_de_la_commune": "ST NAZAIRE LES EYMES", "libell_d_acheminement": "ST NAZAIRE LES EYMES", "code_postal": "38330", "coordonnees_gps": [45.246730874, 5.82653141673], "code_commune_insee": "38431"}, "geometry": {"type": "Point", "coordinates": [5.82653141673, 45.246730874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c74c0314fa7b282aec9dc2e74147743c4591238", "fields": {"nom_de_la_commune": "CHIATRA", "libell_d_acheminement": "CHIATRA DI VERDE", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B088"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f5947331a21f474a3d7b47c8740af636583daac", "fields": {"nom_de_la_commune": "ERBAJOLO", "libell_d_acheminement": "ERBAJOLO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B105"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806015e97b9d62cec8c6d472e28e099587d92c40", "fields": {"nom_de_la_commune": "FOCICCHIA", "libell_d_acheminement": "FOCICCHIA", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B116"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f43aac8f52ebb2d420375566dc02cc602ce192", "fields": {"code_postal": "20240", "code_commune_insee": "2B123", "libell_d_acheminement": "GHISONACCIA", "ligne_5": "ST ANTOINE", "nom_de_la_commune": "GHISONACCIA", "coordonnees_gps": [41.9691281261, 9.34452761596]}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a5b4e4e81500a7855b354296c0896d2e788624f", "fields": {"nom_de_la_commune": "ISOLACCIO DI FIUMORBO", "libell_d_acheminement": "ISOLACCIO DI FIUMORBO", "code_postal": "20243", "coordonnees_gps": [41.9932570337, 9.30778955947], "code_commune_insee": "2B135"}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94cb3f11977bfb7aac3554876429fd23ae69fef1", "fields": {"nom_de_la_commune": "LANO", "libell_d_acheminement": "LANO", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B137"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93bb0860e6b03466a1fdac6e01d3188a0e3b41a4", "fields": {"nom_de_la_commune": "MATRA", "libell_d_acheminement": "MATRA", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B155"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b336b7f47a9deaafe9df3cb051bc355c16cf437", "fields": {"nom_de_la_commune": "MAZZOLA", "libell_d_acheminement": "MAZZOLA", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B157"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9666a06731b8e92a8939f65cc191a828c6a73f9c", "fields": {"nom_de_la_commune": "MOITA", "libell_d_acheminement": "MOITA", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B161"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9e500994dafa4e9b6f35d8b3fcad4de27603f9", "fields": {"nom_de_la_commune": "NESSA", "libell_d_acheminement": "NESSA", "code_postal": "20225", "coordonnees_gps": [42.5548622449, 8.91822255191], "code_commune_insee": "2B175"}, "geometry": {"type": "Point", "coordinates": [8.91822255191, 42.5548622449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1827549c2aea7e1723ef4eaaadf073111b1b6a5b", "fields": {"nom_de_la_commune": "OLMI CAPPELLA", "libell_d_acheminement": "OLMI CAPPELLA", "code_postal": "20259", "coordonnees_gps": [42.5155262709, 9.0055257703], "code_commune_insee": "2B190"}, "geometry": {"type": "Point", "coordinates": [9.0055257703, 42.5155262709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1428fdd6f0acbc0b8e4af2dc80212b59c95baa9", "fields": {"nom_de_la_commune": "PALASCA", "libell_d_acheminement": "PALASCA", "code_postal": "20226", "coordonnees_gps": [42.6078256045, 9.04614705699], "code_commune_insee": "2B199"}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7df8b8af98db54f4f22a128586d2a08e0391b7f", "fields": {"nom_de_la_commune": "PATRIMONIO", "libell_d_acheminement": "PATRIMONIO", "code_postal": "20253", "coordonnees_gps": [42.7087957082, 9.36671940301], "code_commune_insee": "2B205"}, "geometry": {"type": "Point", "coordinates": [9.36671940301, 42.7087957082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70b527e6e1be7d55f855de09d4fa6dc4fd8a6351", "fields": {"nom_de_la_commune": "PERO CASEVECCHIE", "libell_d_acheminement": "PERO CASEVECCHIE", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B210"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e20eb8806cc2734988c6eab92949f11412932038", "fields": {"nom_de_la_commune": "PIEDICORTE DI GAGGIO", "libell_d_acheminement": "PIEDICORTE DI GAGGIO", "code_postal": "20251", "coordonnees_gps": [42.2097375121, 9.34194965175], "code_commune_insee": "2B218"}, "geometry": {"type": "Point", "coordinates": [9.34194965175, 42.2097375121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dd2cc688f9f9e72b5caf23d63b5b8e20cb174a9", "fields": {"nom_de_la_commune": "PIEDICROCE", "libell_d_acheminement": "PIEDICROCE", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B219"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5281e756712f932433c99b2de36eca1cb8e321be", "fields": {"nom_de_la_commune": "PIE D OREZZA", "libell_d_acheminement": "PIE D OREZZA", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B222"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85bf3dd10ad8267289413816a0733883aba181f", "fields": {"nom_de_la_commune": "PINO", "libell_d_acheminement": "PINO", "code_postal": "20228", "coordonnees_gps": [42.8844689798, 9.39824491548], "code_commune_insee": "2B233"}, "geometry": {"type": "Point", "coordinates": [9.39824491548, 42.8844689798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58038c86fa4d8dc45adad3f9ce9c61a448c65204", "fields": {"nom_de_la_commune": "POGGIO D OLETTA", "libell_d_acheminement": "POGGIO D OLETTA", "code_postal": "20232", "coordonnees_gps": [42.6331759717, 9.34813181689], "code_commune_insee": "2B239"}, "geometry": {"type": "Point", "coordinates": [9.34813181689, 42.6331759717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92c0a902da5f543ae017d03ed93599a0c7e80a18", "fields": {"nom_de_la_commune": "POLVEROSO", "libell_d_acheminement": "POLVEROSO", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B243"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "367793f987a33186f1c1d40416af20c67795ef38", "fields": {"nom_de_la_commune": "PRATO DI GIOVELLINA", "libell_d_acheminement": "PRATO DI GIOVELLINA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B248"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17cc37a1591db025406f1635656a521d4d9a2b44", "fields": {"nom_de_la_commune": "ROGLIANO", "libell_d_acheminement": "ROGLIANO", "code_postal": "20247", "coordonnees_gps": [42.9723585308, 9.42606924882], "code_commune_insee": "2B261"}, "geometry": {"type": "Point", "coordinates": [9.42606924882, 42.9723585308]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5883e0cff6dcfe72d56de859804eb5620522de4c", "fields": {"nom_de_la_commune": "SCOLCA", "libell_d_acheminement": "SCOLCA", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B274"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5ba2aec32a8be700e534b4cfbb0e77ab2be8438", "fields": {"nom_de_la_commune": "SILVARECCIO", "libell_d_acheminement": "SILVARECCIO", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B280"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f71f1b2e19c0c3efb57776fbff7770c78d8135e5", "fields": {"nom_de_la_commune": "SORBO OCAGNANO", "libell_d_acheminement": "SORBO OCAGNANO", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B286"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9538f264e27239099ff2b1ea574bf1c567b6dab5", "fields": {"nom_de_la_commune": "SANT ANDREA DI BOZIO", "libell_d_acheminement": "SANT ANDREA DI BOZIO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B292"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c69ed05caf0929d0a81e25f828e7864213c5e5", "fields": {"nom_de_la_commune": "SAN GIOVANNI DI MORIANI", "libell_d_acheminement": "SAN GIOVANNI DI MORIANI", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B302"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8568cf3029d3a6c0a9e47591173e62482100b938", "fields": {"code_postal": "20200", "code_commune_insee": "2B309", "libell_d_acheminement": "SANTA MARIA DI LOTA", "ligne_5": "MIOMO", "nom_de_la_commune": "SANTA MARIA DI LOTA", "coordonnees_gps": [42.7169845542, 9.42659304409]}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250bf4ea104f8c05f8030906094b2c5ecd7c91e6", "fields": {"nom_de_la_commune": "SAN NICOLAO", "libell_d_acheminement": "SAN NICOLAO", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B313"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b6fa563df3ff0693d682caabdf4e080c1871134", "fields": {"code_postal": "20230", "code_commune_insee": "2B313", "libell_d_acheminement": "SAN NICOLAO", "ligne_5": "MORIANI", "nom_de_la_commune": "SAN NICOLAO", "coordonnees_gps": [42.30630414, 9.49791395184]}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d774e125e5bb3693c136c6bb6e0f3c1a481e5b7e", "fields": {"code_postal": "20230", "code_commune_insee": "2B313", "libell_d_acheminement": "SAN NICOLAO", "ligne_5": "MORIANI PLAGE", "nom_de_la_commune": "SAN NICOLAO", "coordonnees_gps": [42.30630414, 9.49791395184]}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "288b41f613263ef68a211be1359da96de3595ce6", "fields": {"nom_de_la_commune": "SANTO PIETRO DI VENACO", "libell_d_acheminement": "SANTO PIETRO DI VENACO", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B315"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e958449bef87bd5ec0491491f1a388f42a08403", "fields": {"nom_de_la_commune": "SANTA REPARATA DI BALAGNA", "libell_d_acheminement": "SANTA REPARATA DI BALAGNA", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B316"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac84d8d0894dbcd6e0049ae35ee16799cf0ff2fc", "fields": {"nom_de_la_commune": "TARRANO", "libell_d_acheminement": "TARRANO", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B321"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "613a441204b9f383bc2a95675c0f45fe844ec4bb", "fields": {"nom_de_la_commune": "VELONE ORNETO", "libell_d_acheminement": "VELONE ORNETO", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B340"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c40218098b3c92bc3eaf2658fa2b7324f830445", "fields": {"nom_de_la_commune": "VENTISERI", "libell_d_acheminement": "VENTISERI", "code_postal": "20240", "coordonnees_gps": [41.9691281261, 9.34452761596], "code_commune_insee": "2B342"}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15491c6bbbd3f2329ed11b37e888f69e860f25f8", "fields": {"code_postal": "20219", "code_commune_insee": "2B354", "libell_d_acheminement": "VIVARIO", "ligne_5": "TATTONE", "nom_de_la_commune": "VIVARIO", "coordonnees_gps": [42.1546750022, 9.13106391385]}, "geometry": {"type": "Point", "coordinates": [9.13106391385, 42.1546750022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "897acc783c2f84ede6b9fae1ad8de244bb31498f", "fields": {"nom_de_la_commune": "ZILIA", "libell_d_acheminement": "ZILIA", "code_postal": "20214", "coordonnees_gps": [42.4880074487, 8.81568831698], "code_commune_insee": "2B361"}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1791477e3979c8c433c53eaf35bfda2757034461", "fields": {"nom_de_la_commune": "ZUANI", "libell_d_acheminement": "ZUANI", "code_postal": "20272", "coordonnees_gps": [42.274903778, 9.36318949568], "code_commune_insee": "2B364"}, "geometry": {"type": "Point", "coordinates": [9.36318949568, 42.274903778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aa1266e3479652909cefc20a42ce3476d9c9bb4", "fields": {"nom_de_la_commune": "LA VEZE", "libell_d_acheminement": "LA VEZE", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25611"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60dc3fd41a8d038f73f3ad25fd48ecb83c711ddc", "fields": {"nom_de_la_commune": "VIEILLEY", "libell_d_acheminement": "VIEILLEY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25612"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5055e0b964d09b3487ae2d49cef1feccb6113b", "fields": {"nom_de_la_commune": "VILLARS LES BLAMONT", "libell_d_acheminement": "VILLARS LES BLAMONT", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25615"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551231a082f8dd32ec9f8a1e7ad914b05c0d73f8", "fields": {"nom_de_la_commune": "LES VILLEDIEU", "libell_d_acheminement": "LES VILLEDIEU", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25619"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5d8ee5202e5a64afcd164c35b09ac068589022c", "fields": {"nom_de_la_commune": "VILLERS BUZON", "libell_d_acheminement": "VILLERS BUZON", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25622"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b94b0675ba766f9c30250f77c2714c1de88b3b8e", "fields": {"nom_de_la_commune": "VILLERS GRELOT", "libell_d_acheminement": "VILLERS GRELOT", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25624"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26f063c69b00281c0deb304c8044412ca6fde55d", "fields": {"nom_de_la_commune": "VILLERS ST MARTIN", "libell_d_acheminement": "VILLERS ST MARTIN", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25626"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06049de83fe5fa61806d83579bc045d88d546e79", "fields": {"nom_de_la_commune": "VOIRES", "libell_d_acheminement": "VOIRES", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25630"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186751e45700872dc7452869346f7b2328f65e4f", "fields": {"nom_de_la_commune": "VOUJEAUCOURT", "libell_d_acheminement": "VOUJEAUCOURT", "code_postal": "25420", "coordonnees_gps": [47.4766226069, 6.76728800486], "code_commune_insee": "25632"}, "geometry": {"type": "Point", "coordinates": [6.76728800486, 47.4766226069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89116d49ba6f03538f9631309fe1135ca4b0def1", "fields": {"nom_de_la_commune": "AMBONIL", "libell_d_acheminement": "AMBONIL", "code_postal": "26800", "coordonnees_gps": [44.8326704656, 4.89052463788], "code_commune_insee": "26007"}, "geometry": {"type": "Point", "coordinates": [4.89052463788, 44.8326704656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50085e9686dfb5c42dccfa98705d47bd4fc2838b", "fields": {"nom_de_la_commune": "ANCONE", "libell_d_acheminement": "ANCONE", "code_postal": "26200", "coordonnees_gps": [44.5548199965, 4.74796911041], "code_commune_insee": "26008"}, "geometry": {"type": "Point", "coordinates": [4.74796911041, 44.5548199965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db036b2a018e26622c5f3adb36123084477b8b86", "fields": {"nom_de_la_commune": "AUBENASSON", "libell_d_acheminement": "AUBENASSON", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26015"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5f48780d432a3ff79d7ff67f22c4e4dd8814e19", "fields": {"nom_de_la_commune": "AUREL", "libell_d_acheminement": "AUREL", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26019"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75210ee7780729ea0e1d4444f444f254ee63f19", "fields": {"nom_de_la_commune": "LA REPARA AURIPLES", "libell_d_acheminement": "LA REPARA AURIPLES", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26020"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b031ef692e8b579cfff8de25524d1cbff04180e9", "fields": {"nom_de_la_commune": "BARBIERES", "libell_d_acheminement": "BARBIERES", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26023"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b4d8f77439acd23e5a7b6356455d3a9431aa40d", "fields": {"nom_de_la_commune": "LA BATIE DES FONDS", "libell_d_acheminement": "LA BATIE DES FONDS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26030"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dcb6f2d6d7ba539712dc8f329702927ec3137ce", "fields": {"nom_de_la_commune": "BEAUMONT LES VALENCE", "libell_d_acheminement": "BEAUMONT LES VALENCE", "code_postal": "26760", "coordonnees_gps": [44.8676636246, 4.93984005309], "code_commune_insee": "26037"}, "geometry": {"type": "Point", "coordinates": [4.93984005309, 44.8676636246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5de3022a480c1f830c510020e24fe7a73347eae", "fields": {"nom_de_la_commune": "BEAUVOISIN", "libell_d_acheminement": "BEAUVOISIN", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26043"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcd963f08175020b2af088e8139657888fa3e949", "fields": {"nom_de_la_commune": "BONLIEU SUR ROUBION", "libell_d_acheminement": "BONLIEU SUR ROUBION", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26052"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2acfb339f7b435c1c1e68a298b1ccc0be645175a", "fields": {"nom_de_la_commune": "BUIS LES BARONNIES", "libell_d_acheminement": "BUIS LES BARONNIES", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26063"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6950a8c890be7822d645c04f960da6c850ade2cb", "fields": {"nom_de_la_commune": "CHABEUIL", "libell_d_acheminement": "CHABEUIL", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26064"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98a26cb76f240e7dc3121a886ba9aa58e3ee0671", "fields": {"code_postal": "26190", "code_commune_insee": "26066", "libell_d_acheminement": "LE CHAFFAL", "ligne_5": "LA VACHERIE", "nom_de_la_commune": "LE CHAFFAL", "coordonnees_gps": [44.9669941445, 5.28273235477]}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5679c1ae624079da43f79854807833ce9173d370", "fields": {"nom_de_la_commune": "CHAMARET", "libell_d_acheminement": "CHAMARET", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26070"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67ef4000b4909df60077e2c30e2fd4b4f4a93d8d", "fields": {"nom_de_la_commune": "CHANTEMERLE LES BLES", "libell_d_acheminement": "CHANTEMERLE LES BLES", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26072"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01021367fecb83fa0dda8c727a04fc6239811a6", "fields": {"nom_de_la_commune": "CHANTEMERLE LES GRIGNAN", "libell_d_acheminement": "CHANTEMERLE LES GRIGNAN", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26073"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78dfe6ef479334f04f46111d3501bdbc862c3387", "fields": {"nom_de_la_commune": "LA CHAPELLE EN VERCORS", "libell_d_acheminement": "LA CHAPELLE EN VERCORS", "code_postal": "26420", "coordonnees_gps": [44.9365927101, 5.42231201851], "code_commune_insee": "26074"}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cf5e723f4e0876e086a735c9930dfc29747292d", "fields": {"nom_de_la_commune": "CHARENS", "libell_d_acheminement": "CHARENS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26076"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d24e9189cfff743bda9b50d3e631514baa73660", "fields": {"nom_de_la_commune": "CHATEAUDOUBLE", "libell_d_acheminement": "CHATEAUDOUBLE", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26081"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ef3e8663b19dfb494dbccd6be717d6aa6b49604", "fields": {"nom_de_la_commune": "CHAVANNES", "libell_d_acheminement": "CHAVANNES", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26092"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d12e48360328401ef4db5e3d89708f80d79e21", "fields": {"nom_de_la_commune": "CLANSAYES", "libell_d_acheminement": "CLANSAYES", "code_postal": "26130", "coordonnees_gps": [44.3543801752, 4.80463085245], "code_commune_insee": "26093"}, "geometry": {"type": "Point", "coordinates": [4.80463085245, 44.3543801752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dce5201399b9cffde5fa9dd286c6ff72b4b1b98", "fields": {"nom_de_la_commune": "CLERIEUX", "libell_d_acheminement": "CLERIEUX", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26096"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03af342bfb88a6a608a1c018bc0481eedf4c9085", "fields": {"nom_de_la_commune": "CLIOUSCLAT", "libell_d_acheminement": "CLIOUSCLAT", "code_postal": "26270", "coordonnees_gps": [44.7168044995, 4.81795152107], "code_commune_insee": "26097"}, "geometry": {"type": "Point", "coordinates": [4.81795152107, 44.7168044995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b292790f947a540cd8049064eef38966aceadbd2", "fields": {"nom_de_la_commune": "COBONNE", "libell_d_acheminement": "COBONNE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26098"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66ac8211173ee38c9bafb8eb7b09da94ed9bbc53", "fields": {"nom_de_la_commune": "COMBOVIN", "libell_d_acheminement": "COMBOVIN", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26100"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d63b38ba8c2947f6ec9a83689a008d315d49c26", "fields": {"nom_de_la_commune": "CRUPIES", "libell_d_acheminement": "CRUPIES", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26111"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "535f3319f335db1333598bfb6b37673e1a7e50c4", "fields": {"nom_de_la_commune": "ESPELUCHE", "libell_d_acheminement": "ESPELUCHE", "code_postal": "26780", "coordonnees_gps": [44.4972299108, 4.7672638827], "code_commune_insee": "26121"}, "geometry": {"type": "Point", "coordinates": [4.7672638827, 44.4972299108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4446d2ea3770fdea8cb72f2a87efa5bd80ea1983", "fields": {"nom_de_la_commune": "ESPENEL", "libell_d_acheminement": "ESPENEL", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26122"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d500ed0ef8c0c5e09eb5558d33506a82e4b5d60", "fields": {"nom_de_la_commune": "ESTABLET", "libell_d_acheminement": "ESTABLET", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26123"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd6b5811fb664fc8b68c84bce3dc4c794dbddcfd", "fields": {"nom_de_la_commune": "EYGALIERS", "libell_d_acheminement": "EYGALIERS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26127"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59371f260648bb69f4008be2272ae57682c1f06b", "fields": {"code_postal": "26730", "code_commune_insee": "26129", "libell_d_acheminement": "EYMEUX", "ligne_5": "L ECANCIERE", "nom_de_la_commune": "EYMEUX", "coordonnees_gps": [45.0482944782, 5.20163673449]}, "geometry": {"type": "Point", "coordinates": [5.20163673449, 45.0482944782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b26fa6c1ded46e19837c60708bbb1d6d2be3702b", "fields": {"nom_de_la_commune": "EYZAHUT", "libell_d_acheminement": "EYZAHUT", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26131"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0505239443a40a648fcc55fd9ed6601238d75794", "fields": {"nom_de_la_commune": "VAL MARAVEL", "libell_d_acheminement": "VAL MARAVEL", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26136"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6ffe3020fd649ad3260db0f507d08e3a08bd740", "fields": {"nom_de_la_commune": "GEYSSANS", "libell_d_acheminement": "GEYSSANS", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26140"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d7cffee732dae7a62cf7b449c45d295ad7182d", "fields": {"nom_de_la_commune": "JONCHERES", "libell_d_acheminement": "JONCHERES", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26152"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e59daea7ad8f8d87ee2bc1b8eb3640b87193fb8d", "fields": {"nom_de_la_commune": "LABOREL", "libell_d_acheminement": "LABOREL", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26153"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8dcc8e27284c795b58dd2aa633e09c14233a060", "fields": {"nom_de_la_commune": "LENS LESTANG", "libell_d_acheminement": "LENS LESTANG", "code_postal": "26210", "coordonnees_gps": [45.2969498397, 4.98492206327], "code_commune_insee": "26162"}, "geometry": {"type": "Point", "coordinates": [4.98492206327, 45.2969498397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe07d0aefe61cea0424ff5be64f48873c9ade0dc", "fields": {"nom_de_la_commune": "LUC EN DIOIS", "libell_d_acheminement": "LUC EN DIOIS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26167"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8341a6584d84524b31a1214a9c0d141e006f2c", "fields": {"nom_de_la_commune": "MALATAVERNE", "libell_d_acheminement": "MALATAVERNE", "code_postal": "26780", "coordonnees_gps": [44.4972299108, 4.7672638827], "code_commune_insee": "26169"}, "geometry": {"type": "Point", "coordinates": [4.7672638827, 44.4972299108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a539a239b2c045ca769a5f08b370e4290c0171ab", "fields": {"code_postal": "26600", "code_commune_insee": "26179", "libell_d_acheminement": "MERCUROL VEAUNES", "ligne_5": "VEAUNES", "nom_de_la_commune": "MERCUROL VEAUNES", "coordonnees_gps": [45.0726066557, 4.88253360628]}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "912dc293daf1818d1f1a8b04bf3f2cde5b3df536", "fields": {"nom_de_la_commune": "MOLLANS SUR OUVEZE", "libell_d_acheminement": "MOLLANS SUR OUVEZE", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26188"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99c3349cfdf81bada785efcde7d22a043e161f20", "fields": {"nom_de_la_commune": "MONTAUBAN SUR L OUVEZE", "libell_d_acheminement": "MONTAUBAN SUR L OUVEZE", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26189"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8157ed0ede2e48c8eb4f69830fca1a740e38a8f", "fields": {"nom_de_la_commune": "MONTBOUCHER SUR JABRON", "libell_d_acheminement": "MONTBOUCHER SUR JABRON", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26191"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d36a1738280c5d7748eb7dc976cf9b72392cf38", "fields": {"code_postal": "26120", "code_commune_insee": "26197", "libell_d_acheminement": "MONTELIER", "ligne_5": "FAUCONNIERES", "nom_de_la_commune": "MONTELIER", "coordonnees_gps": [44.8732903807, 5.03514249262]}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5572720a9bd06c58cbfbce5a3f9644654d44152a", "fields": {"nom_de_la_commune": "MONTJOYER", "libell_d_acheminement": "MONTJOYER", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26203"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80a9295b5f766d637f0f17d00bf95c4d5ec67ba7", "fields": {"nom_de_la_commune": "MONTREAL LES SOURCES", "libell_d_acheminement": "MONTREAL LES SOURCES", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26209"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "653a105f3e698f38c3c7256fb0ee88a3f0986550", "fields": {"nom_de_la_commune": "OMBLEZE", "libell_d_acheminement": "OMBLEZE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26221"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffac4426633cc99554bdbc6d2a440d9d8bfac5d5", "fields": {"nom_de_la_commune": "LE POET SIGILLAT", "libell_d_acheminement": "LE POET SIGILLAT", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26244"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d489251c174aeb3da6a269056bf51717f9feab6", "fields": {"nom_de_la_commune": "PORTES EN VALDAINE", "libell_d_acheminement": "PORTES EN VALDAINE", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26251"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c4019a3786f2d021156cb3466c88ec33b8df6b5", "fields": {"nom_de_la_commune": "RECOUBEAU JANSAC", "libell_d_acheminement": "RECOUBEAU JANSAC", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26262"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1f415f7e8d516823aca71f006f2d4c6891edc1", "fields": {"nom_de_la_commune": "REILHANETTE", "libell_d_acheminement": "REILHANETTE", "code_postal": "26570", "coordonnees_gps": [44.1743354505, 5.46650063945], "code_commune_insee": "26263"}, "geometry": {"type": "Point", "coordinates": [5.46650063945, 44.1743354505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c16677dd053eaac7ad3edf93de8a0ff4e3970693", "fields": {"nom_de_la_commune": "ROCHEBAUDIN", "libell_d_acheminement": "ROCHEBAUDIN", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26268"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "462384ba5e989078b5e625127548e9bc38f03f41", "fields": {"nom_de_la_commune": "ANZY LE DUC", "libell_d_acheminement": "ANZY LE DUC", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71011"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eb53025f3eb9f0ecedde495837efdc1ddbf8d95", "fields": {"nom_de_la_commune": "BARON", "libell_d_acheminement": "BARON", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71021"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07bd622c5955727989643ea80e6b8860247fa5f7", "fields": {"nom_de_la_commune": "BEAUREPAIRE EN BRESSE", "libell_d_acheminement": "BEAUREPAIRE EN BRESSE", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71027"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5972a374885cdcf1bfda645fc963f3214ae8a27f", "fields": {"nom_de_la_commune": "BEAUVERNOIS", "libell_d_acheminement": "BEAUVERNOIS", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71028"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f295b7a5f61afbe84f88d1ce0278240d40c6ee3e", "fields": {"nom_de_la_commune": "BISSEY SOUS CRUCHAUD", "libell_d_acheminement": "BISSEY SOUS CRUCHAUD", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71034"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f1fedf70e98a27d68a270a2d77ce4c64141151", "fields": {"nom_de_la_commune": "BLANZY", "libell_d_acheminement": "BLANZY", "code_postal": "71450", "coordonnees_gps": [46.7042190085, 4.39304672537], "code_commune_insee": "71040"}, "geometry": {"type": "Point", "coordinates": [4.39304672537, 46.7042190085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f526504b2ae26d701be96951a5052f5de433cea0", "fields": {"nom_de_la_commune": "BONNAY", "libell_d_acheminement": "BONNAY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71042"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4945acdadb59d7a986f13307414b8d711e7c7ce8", "fields": {"nom_de_la_commune": "BOURBON LANCY", "libell_d_acheminement": "BOURBON LANCY", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71047"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db9b3fadf2c721a49c3e9aebe5095702bf0579fd", "fields": {"nom_de_la_commune": "BOUZERON", "libell_d_acheminement": "BOUZERON", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71051"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a9c9ed928380b1a4f91ab679b900038bdb444cd", "fields": {"nom_de_la_commune": "BOYER", "libell_d_acheminement": "BOYER", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71052"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c326fb72b695991d99138698a7e0627675b708", "fields": {"nom_de_la_commune": "BRAGNY SUR SAONE", "libell_d_acheminement": "BRAGNY SUR SAONE", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71054"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "838ed49c0c5063cad37068dcc1c89d6138511dd4", "fields": {"nom_de_la_commune": "BRIANT", "libell_d_acheminement": "BRIANT", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71060"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49c49963d5badc4cc33b77ba611ccacfa0fc77f7", "fields": {"nom_de_la_commune": "BURZY", "libell_d_acheminement": "BURZY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71068"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a9ddac8143617f33c75b1e9cb2385bf6c0ecee", "fields": {"nom_de_la_commune": "BUXY", "libell_d_acheminement": "BUXY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71070"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85a7335b5a9809c78cfe47ab29ec0157e363bfcc", "fields": {"nom_de_la_commune": "CHANES", "libell_d_acheminement": "CHANES", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71084"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e036d32b9e64e7f8315dfade63cb0ccf1641efb0", "fields": {"code_postal": "71570", "code_commune_insee": "71090", "libell_d_acheminement": "LA CHAPELLE DE GUINCHAY", "ligne_5": "PONTANEVAUX", "nom_de_la_commune": "LA CHAPELLE DE GUINCHAY", "coordonnees_gps": [46.2281804382, 4.74594921623]}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad7f75073d053f2a499a43cb8bea8bc8bfb99704", "fields": {"nom_de_la_commune": "LA CHAPELLE NAUDE", "libell_d_acheminement": "LA CHAPELLE NAUDE", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71092"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8136606f83e9723a4cd85454feef76dab2b4933c", "fields": {"nom_de_la_commune": "CHARNAY LES CHALON", "libell_d_acheminement": "CHARNAY LES CHALON", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71104"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e34582aaabc0990c39a9b14b396d1fa481fdc3", "fields": {"nom_de_la_commune": "CHARNAY LES MACON", "libell_d_acheminement": "CHARNAY LES MACON", "code_postal": "71850", "coordonnees_gps": [46.3041485683, 4.78697709545], "code_commune_insee": "71105"}, "geometry": {"type": "Point", "coordinates": [4.78697709545, 46.3041485683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca2342b428c4a40296c28fefc23e520e7a68796", "fields": {"nom_de_la_commune": "CHASSELAS", "libell_d_acheminement": "CHASSELAS", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71108"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a872b694535f12ec3c086e3c9edad66a73a43cf", "fields": {"nom_de_la_commune": "CHAUDENAY", "libell_d_acheminement": "CHAUDENAY", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71119"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75c031c70fb13c307230071546e2eb0927a3c6ef", "fields": {"nom_de_la_commune": "CHENOVES", "libell_d_acheminement": "CHENOVES", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71124"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4590489ded4d869c55935d535817997dba6cadb", "fields": {"nom_de_la_commune": "CHIDDES", "libell_d_acheminement": "CHIDDES", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71128"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "459718bef92fdbfcc40b74d094fae833da6b3143", "fields": {"nom_de_la_commune": "CLESSY", "libell_d_acheminement": "CLESSY", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71136"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e843f709fadbbd523d888b6c7e61a379451bbc3b", "fields": {"nom_de_la_commune": "LA COMELLE", "libell_d_acheminement": "LA COMELLE", "code_postal": "71990", "coordonnees_gps": [46.9426625414, 4.10521172287], "code_commune_insee": "71142"}, "geometry": {"type": "Point", "coordinates": [4.10521172287, 46.9426625414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcf5813695b6eaa06588ecd09df07095f96684d4", "fields": {"nom_de_la_commune": "EPERVANS", "libell_d_acheminement": "EPERVANS", "code_postal": "71380", "coordonnees_gps": [46.7753179262, 4.92186560965], "code_commune_insee": "71189"}, "geometry": {"type": "Point", "coordinates": [4.92186560965, 46.7753179262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90524dd5ec908f93ae2709b628db2cb6ecf242c8", "fields": {"nom_de_la_commune": "EPINAC", "libell_d_acheminement": "EPINAC", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71190"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a99a199957833cdad4c9d88e46822d868506601", "fields": {"code_postal": "71240", "code_commune_insee": "71193", "libell_d_acheminement": "ETRIGNY", "ligne_5": "CHAMPLIEU", "nom_de_la_commune": "ETRIGNY", "coordonnees_gps": [46.6465695916, 4.84963105442]}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb59436ab56848d502669e4f68d7c0d26434348", "fields": {"nom_de_la_commune": "LE FAY", "libell_d_acheminement": "LE FAY", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71196"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff2849bc563a125e927e3825c1b131bc41a92e4", "fields": {"nom_de_la_commune": "FRAGNES LA LOYERE", "libell_d_acheminement": "FRAGNES LA LOYERE", "code_postal": "71530", "coordonnees_gps": [46.8388869017, 4.87612871845], "code_commune_insee": "71204"}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2da16875e09754dca623621bbd8dd041a9318b", "fields": {"nom_de_la_commune": "LA FRETTE", "libell_d_acheminement": "LA FRETTE", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71206"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0460c3b09865e4f56bc1fad884b727996f6c517", "fields": {"nom_de_la_commune": "FRONTENAUD", "libell_d_acheminement": "FRONTENAUD", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71209"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baca489a541706da0a997236e445eb8ac9eaeea7", "fields": {"nom_de_la_commune": "LES GUERREAUX", "libell_d_acheminement": "LES GUERREAUX", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71229"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46a2a88dcc940f95aa86f5e8ab8cc895c261e3fd", "fields": {"nom_de_la_commune": "LA GUICHE", "libell_d_acheminement": "LA GUICHE", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71231"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c90fcf8fe80defe2078d60ddb88888b5a68198c", "fields": {"nom_de_la_commune": "HURIGNY", "libell_d_acheminement": "HURIGNY", "code_postal": "71870", "coordonnees_gps": [46.3631972842, 4.80026769579], "code_commune_insee": "71235"}, "geometry": {"type": "Point", "coordinates": [4.80026769579, 46.3631972842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b78e54659ed47081664da9a46b2d08bf01d16fa4", "fields": {"nom_de_la_commune": "IGE", "libell_d_acheminement": "IGE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71236"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90832126f4044be8399d983a7f307aba01b6477b", "fields": {"nom_de_la_commune": "JOUVENCON", "libell_d_acheminement": "JOUVENCON", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71244"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeff3d054181e9805b9fe03496ce6b956287570b", "fields": {"nom_de_la_commune": "JUGY", "libell_d_acheminement": "JUGY", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71245"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f695469e7a893bc6ed6d4b7fb58eee35662e3f7c", "fields": {"nom_de_la_commune": "JUIF", "libell_d_acheminement": "JUIF", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71246"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efdc5ce2f2b19d9ab958763fa5f60c4701ecd4b8", "fields": {"nom_de_la_commune": "LAIZY", "libell_d_acheminement": "LAIZY", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71251"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e515ce91c33db56f2443d504d16343c83548a9", "fields": {"nom_de_la_commune": "LALHEUE", "libell_d_acheminement": "LALHEUE", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71252"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e62e8eaeb9bf24b982a0c76eabee37e51560ac13", "fields": {"nom_de_la_commune": "LESSARD LE NATIONAL", "libell_d_acheminement": "LESSARD LE NATIONAL", "code_postal": "71530", "coordonnees_gps": [46.8388869017, 4.87612871845], "code_commune_insee": "71257"}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "249d1243d3fe30206debf37cfaababf1c9998559", "fields": {"nom_de_la_commune": "LOUHANS", "libell_d_acheminement": "LOUHANS", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71263"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bff7566c89c9d1c41223010b7c123a32f393479", "fields": {"nom_de_la_commune": "LUGNY", "libell_d_acheminement": "LUGNY", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71267"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa47be81b3796aa0435675ae398ba0d684630eb", "fields": {"code_postal": "71000", "code_commune_insee": "71270", "libell_d_acheminement": "MACON", "ligne_5": "ST JEAN LE PRICHE", "nom_de_la_commune": "MACON", "coordonnees_gps": [46.3175504743, 4.81977288125]}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3e903093aadc676941460eef840b5738c873d1", "fields": {"nom_de_la_commune": "MARMAGNE", "libell_d_acheminement": "MARMAGNE", "code_postal": "71710", "coordonnees_gps": [46.7997202983, 4.34541340932], "code_commune_insee": "71282"}, "geometry": {"type": "Point", "coordinates": [4.34541340932, 46.7997202983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "950288021f39664269124491f4777f96e9a044e5", "fields": {"nom_de_la_commune": "MARTAILLY LES BRANCION", "libell_d_acheminement": "MARTAILLY LES BRANCION", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71284"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3782a31e0c5dcb93d97b36c7cc68143366da51d0", "fields": {"nom_de_la_commune": "MATOUR", "libell_d_acheminement": "MATOUR", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71289"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1411d0f8e7481f0c2b0d91d7ca85202454be202", "fields": {"nom_de_la_commune": "MAZILLE", "libell_d_acheminement": "MAZILLE", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71290"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "562446fee7816b2b50cfc128ba4b37d42590f665", "fields": {"nom_de_la_commune": "MELAY", "libell_d_acheminement": "MELAY", "code_postal": "71340", "coordonnees_gps": [46.211474132, 4.04415638595], "code_commune_insee": "71291"}, "geometry": {"type": "Point", "coordinates": [4.04415638595, 46.211474132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b3a916e58f4286f7d9a637df26af98feb4ff0d5", "fields": {"code_postal": "71640", "code_commune_insee": "71292", "libell_d_acheminement": "MELLECEY", "ligne_5": "GERMOLLES", "nom_de_la_commune": "MELLECEY", "coordonnees_gps": [46.7976011118, 4.72754976033]}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f82ce5213e899557f1c5151f7f9f4b2f507351ed", "fields": {"nom_de_la_commune": "MERVANS", "libell_d_acheminement": "MERVANS", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71295"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b9ffdc4158a573e313c28c00fc8bde7939ee45", "fields": {"nom_de_la_commune": "MESSEY SUR GROSNE", "libell_d_acheminement": "MESSEY SUR GROSNE", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71296"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "149dae181b667d74e76d66c8137c2b1babe229c2", "fields": {"nom_de_la_commune": "MESVRES", "libell_d_acheminement": "MESVRES", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71297"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7aef766f6cedfe8ea6dbd67d67f2b6864351dc8", "fields": {"nom_de_la_commune": "MONT", "libell_d_acheminement": "MONT", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71301"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "860d0b74719e5fa6d8fba77d643e09f5c6954bbe", "fields": {"nom_de_la_commune": "MONTCEAUX L ETOILE", "libell_d_acheminement": "MONTCEAUX L ETOILE", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71307"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4da02c79d6b20da135d6c70406f21320a3481ecb", "fields": {"nom_de_la_commune": "MONTPONT EN BRESSE", "libell_d_acheminement": "MONTPONT EN BRESSE", "code_postal": "71470", "coordonnees_gps": [46.5407527997, 5.13778374719], "code_commune_insee": "71318"}, "geometry": {"type": "Point", "coordinates": [5.13778374719, 46.5407527997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4bf00a20b0155a33a58804b510d68f13559ade9", "fields": {"nom_de_la_commune": "NAVILLY", "libell_d_acheminement": "NAVILLY", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71329"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "747812fde33ea6b53ec073c9b77275177e1c5916", "fields": {"nom_de_la_commune": "PERREUIL", "libell_d_acheminement": "PERREUIL", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71347"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc5a7d1ad0b237d64ada2271f6bcae90bc987a0", "fields": {"nom_de_la_commune": "PIERRECLOS", "libell_d_acheminement": "PIERRECLOS", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71350"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a9b1a0fa1b8ae1169cef57d9fafd89f6d0aff44", "fields": {"nom_de_la_commune": "PIERRE DE BRESSE", "libell_d_acheminement": "PIERRE DE BRESSE", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71351"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69959453e76736060fe865539d99444fea29adb1", "fields": {"nom_de_la_commune": "POUILLOUX", "libell_d_acheminement": "POUILLOUX", "code_postal": "71230", "coordonnees_gps": [46.6235547336, 4.3737497458], "code_commune_insee": "71356"}, "geometry": {"type": "Point", "coordinates": [4.3737497458, 46.6235547336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ec1fe428dafcabc12873fd953a1edae2a12090", "fields": {"nom_de_la_commune": "PRESSY SOUS DONDIN", "libell_d_acheminement": "PRESSY SOUS DONDIN", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71358"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0bb7c5501e1430f93a3c90960f79db3f9e7f30", "fields": {"nom_de_la_commune": "PRUZILLY", "libell_d_acheminement": "PRUZILLY", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71362"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b58146f9821ef32fba15641e5a1702fda0c44b", "fields": {"nom_de_la_commune": "RATTE", "libell_d_acheminement": "RATTE", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71367"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc714083e05b2b99444725bf333e93d4662efb12", "fields": {"nom_de_la_commune": "RIGNY SUR ARROUX", "libell_d_acheminement": "RIGNY SUR ARROUX", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71370"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08714b26d8fa849900462d17aa643aa0c7a89316", "fields": {"nom_de_la_commune": "ST ANDRE EN BRESSE", "libell_d_acheminement": "ST ANDRE EN BRESSE", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71386"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfd9fc7146aef08d6c2576766de63eef4460100", "fields": {"nom_de_la_commune": "ST AUBIN SUR LOIRE", "libell_d_acheminement": "ST AUBIN SUR LOIRE", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71389"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec3e8657d3c7bdd12a323b8404161d61f596609", "fields": {"nom_de_la_commune": "ST BONNET DE CRAY", "libell_d_acheminement": "ST BONNET DE CRAY", "code_postal": "71340", "coordonnees_gps": [46.211474132, 4.04415638595], "code_commune_insee": "71393"}, "geometry": {"type": "Point", "coordinates": [4.04415638595, 46.211474132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "215b6a4fa0db4287df589fa698f9443a53607a0f", "fields": {"nom_de_la_commune": "ST BONNET DE VIEILLE VIGNE", "libell_d_acheminement": "ST BONNET DE VIEILLE VIGNE", "code_postal": "71430", "coordonnees_gps": [46.5278181999, 4.19290320019], "code_commune_insee": "71395"}, "geometry": {"type": "Point", "coordinates": [4.19290320019, 46.5278181999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9d0518f2e0c2015f0c2cf0caf4f29c2c4b84441", "fields": {"nom_de_la_commune": "ST CYR", "libell_d_acheminement": "ST CYR", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71402"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db5c3c26339a74b57c4b6d9a619db78449512399", "fields": {"nom_de_la_commune": "ST ETIENNE EN BRESSE", "libell_d_acheminement": "ST ETIENNE EN BRESSE", "code_postal": "71370", "coordonnees_gps": [46.7126638071, 5.00193850124], "code_commune_insee": "71410"}, "geometry": {"type": "Point", "coordinates": [5.00193850124, 46.7126638071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba786b7fc9690287bdf45eadd23982c53fb6b1e", "fields": {"nom_de_la_commune": "ST EUSEBE", "libell_d_acheminement": "ST EUSEBE", "code_postal": "71210", "coordonnees_gps": [46.7455963584, 4.48062710036], "code_commune_insee": "71412"}, "geometry": {"type": "Point", "coordinates": [4.48062710036, 46.7455963584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ec3c9ecaefc84686e21ca810ed059a6242818f", "fields": {"nom_de_la_commune": "ST GENGOUX LE NATIONAL", "libell_d_acheminement": "ST GENGOUX LE NATIONAL", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71417"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dceaacbdc09a60f07c2981cf380446c03f94ab7", "fields": {"nom_de_la_commune": "ST JULIEN DE JONZY", "libell_d_acheminement": "ST JULIEN DE JONZY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71434"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37efdc08055113e5a325419bcaba71889ffb298", "fields": {"nom_de_la_commune": "BOURNOS", "libell_d_acheminement": "BOURNOS", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64146"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c340e259dfd441b34956b1a1de803a6bb6fb57b0", "fields": {"code_postal": "64800", "code_commune_insee": "64148", "libell_d_acheminement": "BRUGES CAPBIS MIFAGET", "ligne_5": "CAPBIS", "nom_de_la_commune": "BRUGES CAPBIS MIFAGET", "coordonnees_gps": [43.1416716993, -0.242876303099]}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e22438b78ff5e554c614fb047bf280d4abe033", "fields": {"nom_de_la_commune": "BUGNEIN", "libell_d_acheminement": "BUGNEIN", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64149"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6cbee508fa6ee5cabc63961be2e4fd428980267", "fields": {"nom_de_la_commune": "BUROS", "libell_d_acheminement": "BUROS", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64152"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9cfdd18dacd4371bbd40e5106ba687a1007ab0", "fields": {"nom_de_la_commune": "CARRERE", "libell_d_acheminement": "CARRERE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64167"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a881684b24a6f71d7b08c5e6cfe57a1fe86d2285", "fields": {"nom_de_la_commune": "CASTETIS", "libell_d_acheminement": "CASTETIS", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64177"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba20aec25dbe98413c842544a1b5bac45da4673a", "fields": {"nom_de_la_commune": "CIBOURE", "libell_d_acheminement": "CIBOURE", "code_postal": "64500", "coordonnees_gps": [43.389108568, -1.63881898251], "code_commune_insee": "64189"}, "geometry": {"type": "Point", "coordinates": [-1.63881898251, 43.389108568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6de33ecd812eb90d9e52875030be2f39361e161", "fields": {"nom_de_la_commune": "CLARACQ", "libell_d_acheminement": "CLARACQ", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64190"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94faf85fba0d94cd956e2ae55e8f164930fc8263", "fields": {"nom_de_la_commune": "COARRAZE", "libell_d_acheminement": "COARRAZE", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64191"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55bc2c7e661ee7ba429425d851dab5404e213201", "fields": {"nom_de_la_commune": "CORBERE ABERES", "libell_d_acheminement": "CORBERE ABERES", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64193"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa2efa67d968dab6d3b80395e4bb0be76376de89", "fields": {"nom_de_la_commune": "ESCOU", "libell_d_acheminement": "ESCOU", "code_postal": "64870", "coordonnees_gps": [43.1859088919, -0.54370425822], "code_commune_insee": "64207"}, "geometry": {"type": "Point", "coordinates": [-0.54370425822, 43.1859088919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "080d48d3f1d2748c004f791838f0f5755967dac1", "fields": {"nom_de_la_commune": "ESCOUBES", "libell_d_acheminement": "ESCOUBES", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64208"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "437ec03e036e53500e9fd2fd6e94807b5a9b5c00", "fields": {"nom_de_la_commune": "ESCURES", "libell_d_acheminement": "ESCURES", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64210"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f958d8e92637db321f42c74af0e3ed1309d572d", "fields": {"nom_de_la_commune": "ESPES UNDUREIN", "libell_d_acheminement": "ESPES UNDUREIN", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64214"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee5466765fea0de67db17c7dbf12948e48b1b242", "fields": {"nom_de_la_commune": "FICHOUS RIUMAYOU", "libell_d_acheminement": "FICHOUS RIUMAYOU", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64226"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad3c2f34a97a51f60185d83be0e2c7e75bda60e", "fields": {"nom_de_la_commune": "GAN", "libell_d_acheminement": "GAN", "code_postal": "64290", "coordonnees_gps": [43.2158139133, -0.441474336827], "code_commune_insee": "64230"}, "geometry": {"type": "Point", "coordinates": [-0.441474336827, 43.2158139133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1ffa29ebaddd40780fb9ff68307d32bd7e52d7a", "fields": {"nom_de_la_commune": "GER", "libell_d_acheminement": "GER", "code_postal": "64530", "coordonnees_gps": [43.2249813189, -0.0930410318434], "code_commune_insee": "64238"}, "geometry": {"type": "Point", "coordinates": [-0.0930410318434, 43.2249813189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cbd4c3cfb79929faee38166d4addc189e9f4e34", "fields": {"nom_de_la_commune": "GERE BELESTEN", "libell_d_acheminement": "GERE BELESTEN", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64240"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deea398d99b30704c822fd03c95cf65552f635d4", "fields": {"nom_de_la_commune": "GOES", "libell_d_acheminement": "GOES", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64245"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "980c5e52019c8725f249a83e42da7c8256a4fc43", "fields": {"nom_de_la_commune": "GUETHARY", "libell_d_acheminement": "GUETHARY", "code_postal": "64210", "coordonnees_gps": [43.4226559085, -1.56911488604], "code_commune_insee": "64249"}, "geometry": {"type": "Point", "coordinates": [-1.56911488604, 43.4226559085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be84f65a2924a1b28f7cf030644c0239220246d", "fields": {"nom_de_la_commune": "GUICHE", "libell_d_acheminement": "GUICHE", "code_postal": "64520", "coordonnees_gps": [43.4828017234, -1.16861389886], "code_commune_insee": "64250"}, "geometry": {"type": "Point", "coordinates": [-1.16861389886, 43.4828017234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcda20cfebb503e4ab6bb2c0b8f5c844bdc5ceeb", "fields": {"nom_de_la_commune": "HALSOU", "libell_d_acheminement": "HALSOU", "code_postal": "64480", "coordonnees_gps": [43.3959215702, -1.45000012935], "code_commune_insee": "64255"}, "geometry": {"type": "Point", "coordinates": [-1.45000012935, 43.3959215702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32a00d2c909fc391fa411efa35f01933df5d6ba5", "fields": {"nom_de_la_commune": "HENDAYE", "libell_d_acheminement": "HENDAYE", "code_postal": "64700", "coordonnees_gps": [43.3477852312, -1.71224103787], "code_commune_insee": "64260"}, "geometry": {"type": "Point", "coordinates": [-1.71224103787, 43.3477852312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd0d5796cb6946dd13d04da40e8dcb0c2669d4b1", "fields": {"nom_de_la_commune": "HERRERE", "libell_d_acheminement": "HERRERE", "code_postal": "64680", "coordonnees_gps": [43.154142648, -0.506746806096], "code_commune_insee": "64261"}, "geometry": {"type": "Point", "coordinates": [-0.506746806096, 43.154142648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "090565d0e0103a4b3ab5bd7df4411fd4809242e2", "fields": {"nom_de_la_commune": "IBARROLLE", "libell_d_acheminement": "IBARROLLE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64267"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2cb796f2487b9dfb2795b2f0c5f63601e00573", "fields": {"nom_de_la_commune": "FRECHENDETS", "libell_d_acheminement": "FRECHENDETS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65179"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc022800cc4bcee3a4b7bdfc7d1f0094bb5b17d3", "fields": {"nom_de_la_commune": "GARDERES", "libell_d_acheminement": "GARDERES", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65185"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25274f5702e03f0597b866ddb028ec7a9ee16be", "fields": {"nom_de_la_commune": "GAUDENT", "libell_d_acheminement": "GAUDENT", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65186"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f59742b1a258c6b5a4c2effdec19f27386c0f8a8", "fields": {"nom_de_la_commune": "GEMBRIE", "libell_d_acheminement": "GEMBRIE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65193"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c053c1c0695a1900a01e873c37819544bec894", "fields": {"nom_de_la_commune": "GEZ EZ ANGLES", "libell_d_acheminement": "GEZ EZ ANGLES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65203"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f79b5307894eaeeb5429a0907f2a90d31303326", "fields": {"nom_de_la_commune": "GONEZ", "libell_d_acheminement": "GONEZ", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65204"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c251f9d0aea904a7152b14cbf4bb89c09f54af9", "fields": {"nom_de_la_commune": "GOUAUX", "libell_d_acheminement": "GOUAUX", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65205"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec2373b8b038c4a1f5ac6cfe555b6472536e304", "fields": {"nom_de_la_commune": "GREZIAN", "libell_d_acheminement": "GREZIAN", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65209"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a8401f1504e17e5b9c2995abdc13f0b1f66057", "fields": {"nom_de_la_commune": "GUCHEN", "libell_d_acheminement": "GUCHEN", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65212"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d78c3db78ee3feb358b6ae01bb17d2ae83a4a4e9", "fields": {"nom_de_la_commune": "HAUBAN", "libell_d_acheminement": "HAUBAN", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65216"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0354c5e01b6b7e5b57d1ae8c0b0d319d9ffef4e", "fields": {"nom_de_la_commune": "HAUTAGET", "libell_d_acheminement": "HAUTAGET", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65217"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bf256040e8e5b9b9679cfe0c25594ece90345f4", "fields": {"nom_de_la_commune": "HERES", "libell_d_acheminement": "HERES", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65219"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fef2a2c4742102f1afbd5919b07483cea378cbab", "fields": {"nom_de_la_commune": "ILHET", "libell_d_acheminement": "ILHET", "code_postal": "65410", "coordonnees_gps": [42.9580883388, 0.38930305031], "code_commune_insee": "65228"}, "geometry": {"type": "Point", "coordinates": [0.38930305031, 42.9580883388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "748e9969878d42e4ccde9be95c85e49bfa01e9ac", "fields": {"nom_de_la_commune": "LABASSERE", "libell_d_acheminement": "LABASSERE", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65238"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "387290dd457123c70565984e7651825ac86ead21", "fields": {"nom_de_la_commune": "LANCON", "libell_d_acheminement": "LANCON", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65255"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3b156a5dbea1714c68411881d130fcde117865b", "fields": {"nom_de_la_commune": "LANNE", "libell_d_acheminement": "LANNE", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65257"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d193f9571bae5177b68c1c65f6426986b76aed3f", "fields": {"nom_de_la_commune": "LANNEMEZAN", "libell_d_acheminement": "LANNEMEZAN", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65258"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31e1e09b75d81cfa233b9bdb960726b1575df2cf", "fields": {"nom_de_la_commune": "LARREULE", "libell_d_acheminement": "LARREULE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65262"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f404e6139c7297b21c98f57108fccb63f51679d", "fields": {"nom_de_la_commune": "LOUBAJAC", "libell_d_acheminement": "LOUBAJAC", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65280"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d009bf5618adfde2061a225a473ce66ac8a06010", "fields": {"nom_de_la_commune": "LOUDENVIELLE", "libell_d_acheminement": "LOUDENVIELLE", "code_postal": "65510", "coordonnees_gps": [42.7301559382, 0.432385797938], "code_commune_insee": "65282"}, "geometry": {"type": "Point", "coordinates": [0.432385797938, 42.7301559382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "903906b6b522b8d1c0713514490a6b79188939a1", "fields": {"nom_de_la_commune": "LOUIT", "libell_d_acheminement": "LOUIT", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65285"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ff6853a71e14e2f0dbfcb1120ced3c8d1f8214", "fields": {"nom_de_la_commune": "LOURDES", "libell_d_acheminement": "LOURDES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65286"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ac372d52b066a990e8e51e2c5662fc52650698", "fields": {"nom_de_la_commune": "LOURES BAROUSSE", "libell_d_acheminement": "LOURES BAROUSSE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65287"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd25d4a5529cde591f930bdbb1c3832bd139687", "fields": {"nom_de_la_commune": "LUZ ST SAUVEUR", "libell_d_acheminement": "LUZ ST SAUVEUR", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65295"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae8aebb159057b79bd1b117d28799b7aa9e5af8", "fields": {"nom_de_la_commune": "MINGOT", "libell_d_acheminement": "MINGOT", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65311"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db498027a63120b48154897d376ffe20a309aa06", "fields": {"nom_de_la_commune": "MONFAUCON", "libell_d_acheminement": "MONFAUCON", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65314"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5edcb4d5909338981f1d808922c9bbe916c89d1d", "fields": {"nom_de_la_commune": "MONLONG", "libell_d_acheminement": "MONLONG", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65316"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ed76350d1d17c2aa2a646707f8b93b52744909e", "fields": {"nom_de_la_commune": "MONT", "libell_d_acheminement": "MONT", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65317"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2645f31eeffc1b9489874a39f2b4082fe15bedd0", "fields": {"nom_de_la_commune": "MONTSERIE", "libell_d_acheminement": "MONTSERIE", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65323"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed43d764edc80dbb6bdbe5cb806f9eba709af76c", "fields": {"nom_de_la_commune": "NISTOS", "libell_d_acheminement": "NISTOS", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65329"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4da4c3a15074f666e68c6edbb419bd9537a64bb1", "fields": {"nom_de_la_commune": "ORGAN", "libell_d_acheminement": "ORGAN", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65336"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a438ce11e874f1e93d093a7af0bd55c23a96dd0d", "fields": {"nom_de_la_commune": "OROIX", "libell_d_acheminement": "OROIX", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65341"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "971da219123f7c878477acdf10e78e8c44055e6d", "fields": {"nom_de_la_commune": "OSSEN", "libell_d_acheminement": "OSSEN", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65343"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218e61bcebf03ba33e672553161624744fed3a71", "fields": {"nom_de_la_commune": "OSSUN EZ ANGLES", "libell_d_acheminement": "OSSUN EZ ANGLES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65345"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb843c2c861e2d39c0aa91e3795b96da69c816f1", "fields": {"nom_de_la_commune": "OUEILLOUX", "libell_d_acheminement": "OUEILLOUX", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65346"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6300adb6d037be00183ed55c287820b91579ea61", "fields": {"nom_de_la_commune": "OURSBELILLE", "libell_d_acheminement": "OURSBELILLE", "code_postal": "65490", "coordonnees_gps": [43.286290231, 0.0353926793618], "code_commune_insee": "65350"}, "geometry": {"type": "Point", "coordinates": [0.0353926793618, 43.286290231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9270efd2fa02cf654750d8e15086be7019b5df5f", "fields": {"nom_de_la_commune": "PERE", "libell_d_acheminement": "PERE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65356"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f505261f77cd7a9d42409ba84ce15607f0371156", "fields": {"nom_de_la_commune": "PEYRET ST ANDRE", "libell_d_acheminement": "PEYRET ST ANDRE", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65358"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a18f0382a755eeaad552f2b4f79e82ce9cdeac8", "fields": {"nom_de_la_commune": "PINAS", "libell_d_acheminement": "PINAS", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65363"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea911c1e3a164423037d3b97a2b46d31cae7242f", "fields": {"nom_de_la_commune": "POUYASTRUC", "libell_d_acheminement": "POUYASTRUC", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65369"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be6cc8577ef577c6e49efea0ea413653eb7ce11f", "fields": {"nom_de_la_commune": "PUYDARRIEUX", "libell_d_acheminement": "PUYDARRIEUX", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65374"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d154513cc9f322acff4955b511297571ed9a21b", "fields": {"nom_de_la_commune": "RABASTENS DE BIGORRE", "libell_d_acheminement": "RABASTENS DE BIGORRE", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65375"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7bb738963d2217e1a292816fa7c0f4f222b661f", "fields": {"nom_de_la_commune": "ST LAURENT DE NESTE", "libell_d_acheminement": "ST LAURENT DE NESTE", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65389"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48a6029fb787aa658bc5458af477bac51716c6b", "fields": {"nom_de_la_commune": "ST MARTIN", "libell_d_acheminement": "ST MARTIN", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65392"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c8d52f743e42589c9dde4d66d02ca7278a02371", "fields": {"nom_de_la_commune": "ST SAVIN", "libell_d_acheminement": "ST SAVIN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65396"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d386cd3ce80aa5c480578de4ac7ee9598a5aa1c4", "fields": {"nom_de_la_commune": "SAMURAN", "libell_d_acheminement": "SAMURAN", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65402"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c09cc9dcea9576d01bf5abd792725a5011caf13", "fields": {"nom_de_la_commune": "SARRIAC BIGORRE", "libell_d_acheminement": "SARRIAC BIGORRE", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65409"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd07ca27892644a4b4a6fad87034c898d86e955c", "fields": {"nom_de_la_commune": "SAZOS", "libell_d_acheminement": "SAZOS", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65413"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "367cd37a16a075fab7c09b07f59e03de3c5c056d", "fields": {"nom_de_la_commune": "SIRADAN", "libell_d_acheminement": "SIRADAN", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65427"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a01e6a2460e9cbfa7d63632ff8a828abce7c129", "fields": {"nom_de_la_commune": "SIREIX", "libell_d_acheminement": "SIREIX", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65428"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7130ae319cc16c45e2b4a518b06b05fd48c74691", "fields": {"nom_de_la_commune": "SOMBRUN", "libell_d_acheminement": "SOMBRUN", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65429"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee3798f3e8d7ff6be9b711a0a7d759e241bd81ec", "fields": {"nom_de_la_commune": "SOUBLECAUSE", "libell_d_acheminement": "SOUBLECAUSE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65432"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8159e5b974ac5afbd088f8abb3fd42e24b89a63b", "fields": {"nom_de_la_commune": "TALAZAC", "libell_d_acheminement": "TALAZAC", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65438"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519e685903fd84fb94fc66e7f367acc20019b201", "fields": {"nom_de_la_commune": "TARBES", "libell_d_acheminement": "TARBES", "code_postal": "65000", "coordonnees_gps": [43.2347029707, 0.0655253081546], "code_commune_insee": "65440"}, "geometry": {"type": "Point", "coordinates": [0.0655253081546, 43.2347029707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "150780ba4359e972978fc2fa7c527d773682fa10", "fields": {"nom_de_la_commune": "TIBIRAN JAUNAC", "libell_d_acheminement": "TIBIRAN JAUNAC", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65444"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "910c681341808171e8b6351c364e1ece5937ec2e", "fields": {"nom_de_la_commune": "TOURNOUS DARRE", "libell_d_acheminement": "TOURNOUS DARRE", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65448"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9965f927a8a96505480c11324a66252b2f8a1e62", "fields": {"nom_de_la_commune": "TROULEY LABARTHE", "libell_d_acheminement": "TROULEY LABARTHE", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65454"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1799969140be5e1ba55b30514a53ab38aaf81c5b", "fields": {"nom_de_la_commune": "UGNOUAS", "libell_d_acheminement": "UGNOUAS", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65457"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f251039d6ccb39a156dd634af9555e40dab52d70", "fields": {"nom_de_la_commune": "VIELLA", "libell_d_acheminement": "VIELLA", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65463"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087436cba764110822a4f08dfc752a34112119b4", "fields": {"nom_de_la_commune": "VIZOS", "libell_d_acheminement": "VIZOS", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65480"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b52ec24a26c85446dce41e7222a22887a357407e", "fields": {"nom_de_la_commune": "BAGES", "libell_d_acheminement": "BAGES", "code_postal": "66670", "coordonnees_gps": [42.6078330352, 2.88931135373], "code_commune_insee": "66011"}, "geometry": {"type": "Point", "coordinates": [2.88931135373, 42.6078330352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f66c092a2879dc333f9688fdcfeda76b44107764", "fields": {"nom_de_la_commune": "LA BASTIDE", "libell_d_acheminement": "LA BASTIDE", "code_postal": "66110", "coordonnees_gps": [42.4916633371, 2.63428714842], "code_commune_insee": "66018"}, "geometry": {"type": "Point", "coordinates": [2.63428714842, 42.4916633371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "413b5aebf55978502f02dc243909d1de533bcaae", "fields": {"nom_de_la_commune": "BELESTA", "libell_d_acheminement": "BELESTA", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66019"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53a96919bb47111b8c49bc9178d4680b272b04e1", "fields": {"nom_de_la_commune": "BOMPAS", "libell_d_acheminement": "BOMPAS", "code_postal": "66430", "coordonnees_gps": [42.7284007923, 2.94233076648], "code_commune_insee": "66021"}, "geometry": {"type": "Point", "coordinates": [2.94233076648, 42.7284007923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9d541e62130e1e7a2c725e571d97fb34a1fec1", "fields": {"nom_de_la_commune": "LE BOULOU", "libell_d_acheminement": "LE BOULOU", "code_postal": "66160", "coordonnees_gps": [42.5266396924, 2.83155537764], "code_commune_insee": "66024"}, "geometry": {"type": "Point", "coordinates": [2.83155537764, 42.5266396924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "708c415804ea3213499e3a6a479b9b4f695a8d31", "fields": {"nom_de_la_commune": "BOURG MADAME", "libell_d_acheminement": "BOURG MADAME", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66025"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "638f7848115357a699ae973a58a8554a34d9add4", "fields": {"nom_de_la_commune": "CARAMANY", "libell_d_acheminement": "CARAMANY", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66039"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7191297b0a74d4f097732d94dbf5e51b9b5951d", "fields": {"nom_de_la_commune": "COLLIOURE", "libell_d_acheminement": "COLLIOURE", "code_postal": "66190", "coordonnees_gps": [42.5131451113, 3.0728014531], "code_commune_insee": "66053"}, "geometry": {"type": "Point", "coordinates": [3.0728014531, 42.5131451113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b500c2c94ac5668207383f2308dacb2d1609599", "fields": {"nom_de_la_commune": "CORBERE LES CABANES", "libell_d_acheminement": "CORBERE LES CABANES", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66056"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117a80d39434f6219d7409089d318e7daa44818c", "fields": {"nom_de_la_commune": "EYNE", "libell_d_acheminement": "EYNE", "code_postal": "66800", "coordonnees_gps": [42.4383838343, 2.06806880933], "code_commune_insee": "66075"}, "geometry": {"type": "Point", "coordinates": [2.06806880933, 42.4383838343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b7f8c577babc471c64aec7a79c992d25bf23920", "fields": {"nom_de_la_commune": "FELLUNS", "libell_d_acheminement": "FELLUNS", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66076"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a3a56a5f94b6253d81d332a51134a89228c9dc", "fields": {"nom_de_la_commune": "FONTRABIOUSE", "libell_d_acheminement": "FONTRABIOUSE", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66081"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe737cec4dda333128a433b5e9fb49904698adf1", "fields": {"nom_de_la_commune": "LA LLAGONNE", "libell_d_acheminement": "LA LLAGONNE", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66098"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53eda4adf21f9678c32b33cb56f827a84f74ff64", "fields": {"nom_de_la_commune": "MONTESQUIEU DES ALBERES", "libell_d_acheminement": "MONTESQUIEU DES ALBERES", "code_postal": "66740", "coordonnees_gps": [42.5221445036, 2.90707419717], "code_commune_insee": "66115"}, "geometry": {"type": "Point", "coordinates": [2.90707419717, 42.5221445036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df2ba80d210408d5c9cb1ec0ca0e09b7abf9e62c", "fields": {"nom_de_la_commune": "OMS", "libell_d_acheminement": "OMS", "code_postal": "66400", "coordonnees_gps": [42.4987556652, 2.71589039576], "code_commune_insee": "66126"}, "geometry": {"type": "Point", "coordinates": [2.71589039576, 42.4987556652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "826eac0ecb0174829cc32cd13d611a2b0b852e1d", "fields": {"nom_de_la_commune": "OPOUL PERILLOS", "libell_d_acheminement": "OPOUL PERILLOS", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66127"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f143995ec00ab6f9ae3d7329309959bd749668f5", "fields": {"nom_de_la_commune": "OSSEJA", "libell_d_acheminement": "OSSEJA", "code_postal": "66340", "coordonnees_gps": [42.3895975345, 2.01369065827], "code_commune_insee": "66130"}, "geometry": {"type": "Point", "coordinates": [2.01369065827, 42.3895975345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f54084557e1f88e5296fe6f397915cca2f4e928", "fields": {"nom_de_la_commune": "PALAU DE CERDAGNE", "libell_d_acheminement": "PALAU DE CERDAGNE", "code_postal": "66340", "coordonnees_gps": [42.3895975345, 2.01369065827], "code_commune_insee": "66132"}, "geometry": {"type": "Point", "coordinates": [2.01369065827, 42.3895975345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde0c2be3f9d7975f62610042168636e7ebc63fc", "fields": {"nom_de_la_commune": "PASSA", "libell_d_acheminement": "PASSA", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66134"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7113f19bd48bdd012d9f765931f7ad6d28825ddc", "fields": {"nom_de_la_commune": "PEYRESTORTES", "libell_d_acheminement": "PEYRESTORTES", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66138"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3055d19262a66badb83c7ab7b975de404c221eb1", "fields": {"nom_de_la_commune": "PLANES", "libell_d_acheminement": "PLANES", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66142"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1820d4501a5c971b5f8a5199fe127668811a2050", "fields": {"nom_de_la_commune": "PLANEZES", "libell_d_acheminement": "PLANEZES", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66143"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0f49141411c2ea06ee1a603943557ec39a37e39", "fields": {"nom_de_la_commune": "PORTE PUYMORENS", "libell_d_acheminement": "PORTE PUYMORENS", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66147"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cdcf723ee194b9b9b43cee7a0f19479f0e49e05", "fields": {"nom_de_la_commune": "PORT VENDRES", "libell_d_acheminement": "PORT VENDRES", "code_postal": "66660", "coordonnees_gps": [42.502711951, 3.10451027968], "code_commune_insee": "66148"}, "geometry": {"type": "Point", "coordinates": [3.10451027968, 42.502711951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87a23e37b34d3c5d6cf2191909c801f75087cb71", "fields": {"nom_de_la_commune": "PRUGNANES", "libell_d_acheminement": "PRUGNANES", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66152"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c6143583f4619a9996c7918e6c7ea0e2f25bfc2", "fields": {"nom_de_la_commune": "PRUNET ET BELPUIG", "libell_d_acheminement": "PRUNET ET BELPUIG", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66153"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67bc1aa077534cbbd6b061d700918e22e06388d3", "fields": {"nom_de_la_commune": "ST ANDRE", "libell_d_acheminement": "ST ANDRE", "code_postal": "66690", "coordonnees_gps": [42.522189398, 2.97653046487], "code_commune_insee": "66168"}, "geometry": {"type": "Point", "coordinates": [2.97653046487, 42.522189398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c0aa89b2f61b2c8ed18cffdb11ab21c655faa1", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "66510", "coordonnees_gps": [42.8073026659, 2.97357958894], "code_commune_insee": "66176"}, "geometry": {"type": "Point", "coordinates": [2.97357958894, 42.8073026659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4453990057d398bc134154578ddb99d3fb2f74f4", "fields": {"nom_de_la_commune": "ST JEAN LASSEILLE", "libell_d_acheminement": "ST JEAN LASSEILLE", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66177"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee02a7e6dca7c5c609d35d5e05d0ef222dd39c33", "fields": {"nom_de_la_commune": "ST LAURENT DE LA SALANQUE", "libell_d_acheminement": "ST LAURENT DE LA SALANQUE", "code_postal": "66250", "coordonnees_gps": [42.7935439901, 3.00175427886], "code_commune_insee": "66180"}, "geometry": {"type": "Point", "coordinates": [3.00175427886, 42.7935439901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c929dfbdc15540b189967fc99ac735f9a5db8738", "fields": {"nom_de_la_commune": "SANSA", "libell_d_acheminement": "SANSA", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66191"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d73c03d5e714cab657f14a70e1d9312bc522adb", "fields": {"nom_de_la_commune": "SOURNIA", "libell_d_acheminement": "SOURNIA", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66198"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d2d59e7f6d4102d688eb6387389dc9c33fc8db9", "fields": {"nom_de_la_commune": "TARGASSONNE", "libell_d_acheminement": "TARGASSONNE", "code_postal": "66120", "coordonnees_gps": [42.5100577993, 2.01893656435], "code_commune_insee": "66202"}, "geometry": {"type": "Point", "coordinates": [2.01893656435, 42.5100577993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75491e2e2f532c014e66c0e3835401a7c6b0ed84", "fields": {"nom_de_la_commune": "TERRATS", "libell_d_acheminement": "TERRATS", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66207"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8551518f34c75969912972338579d80ccf49f7a0", "fields": {"nom_de_la_commune": "THEZA", "libell_d_acheminement": "THEZA", "code_postal": "66200", "coordonnees_gps": [42.6141104205, 2.96373811685], "code_commune_insee": "66208"}, "geometry": {"type": "Point", "coordinates": [2.96373811685, 42.6141104205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "debdc05d6ffb0ed3c3234d2a640bcf10902ffe74", "fields": {"nom_de_la_commune": "THUIR", "libell_d_acheminement": "THUIR", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66210"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e823e40583e5a53825521164756907c6eb83f59", "fields": {"nom_de_la_commune": "TRILLA", "libell_d_acheminement": "TRILLA", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66216"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf344b0ac349d9f9e8524a5399bd057957c066dd", "fields": {"nom_de_la_commune": "TROUILLAS", "libell_d_acheminement": "TROUILLAS", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66217"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "185b4fc5e46e9b0dd3b5f0b7a0bce69bfb8bbfca", "fields": {"nom_de_la_commune": "VALCEBOLLERE", "libell_d_acheminement": "VALCEBOLLERE", "code_postal": "66340", "coordonnees_gps": [42.3895975345, 2.01369065827], "code_commune_insee": "66220"}, "geometry": {"type": "Point", "coordinates": [2.01369065827, 42.3895975345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "865dc3caf78af6efa025b2bbf136e7567dcad87d", "fields": {"nom_de_la_commune": "VILLEMOLAQUE", "libell_d_acheminement": "VILLEMOLAQUE", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66226"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17a642e4084abfabde804ba018bb5b6b05462c1d", "fields": {"nom_de_la_commune": "RENNEPONT", "libell_d_acheminement": "RENNEPONT", "code_postal": "52370", "coordonnees_gps": [48.1346812321, 4.86216753048], "code_commune_insee": "52419"}, "geometry": {"type": "Point", "coordinates": [4.86216753048, 48.1346812321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d74d07defc8b847eafb255a17e4b7202510a75c", "fields": {"nom_de_la_commune": "RIAUCOURT", "libell_d_acheminement": "RIAUCOURT", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52421"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3740e5cca3478488b14f4ebad368192c32cbeca6", "fields": {"nom_de_la_commune": "RIMAUCOURT", "libell_d_acheminement": "RIMAUCOURT", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52423"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa5a1ad3661241bf4fdabe49e570253780025ff9", "fields": {"nom_de_la_commune": "RIVIERE LES FOSSES", "libell_d_acheminement": "RIVIERE LES FOSSES", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52425"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d8c233afeeedbadd16c324cba3d1984bf8a7dff", "fields": {"nom_de_la_commune": "ROCHETAILLEE", "libell_d_acheminement": "ROCHETAILLEE", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52431"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45da7f64c5f50886628f41ca4734dbb52108c9e1", "fields": {"code_postal": "52260", "code_commune_insee": "52432", "libell_d_acheminement": "ROLAMPONT", "ligne_5": "LANNES", "nom_de_la_commune": "ROLAMPONT", "coordonnees_gps": [47.9429449859, 5.2580157459]}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "910a1e301d2e06784ea5fc91ea10f951c12cbd52", "fields": {"nom_de_la_commune": "ROUECOURT", "libell_d_acheminement": "ROUECOURT", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52436"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d143940e8406bc1043a0e177a7e22165bca652ff", "fields": {"nom_de_la_commune": "ROUVRES SUR AUBE", "libell_d_acheminement": "ROUVRES SUR AUBE", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52439"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d70e22572576cc56621ef8214cdf2e23db1960d8", "fields": {"nom_de_la_commune": "ST BLIN", "libell_d_acheminement": "ST BLIN", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52444"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26bf5794d4394d0bee19d53cd527c21fd5d96841", "fields": {"code_postal": "52300", "code_commune_insee": "52456", "libell_d_acheminement": "ST URBAIN MACONCOURT", "ligne_5": "MACONCOURT", "nom_de_la_commune": "ST URBAIN MACONCOURT", "coordonnees_gps": [48.4374713855, 5.14251151909]}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ee6fc1fb2c552ddb1445cfbbc2ede4babe94ff", "fields": {"nom_de_la_commune": "ST VALLIER SUR MARNE", "libell_d_acheminement": "ST VALLIER SUR MARNE", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52457"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6578fa0910867efbdd2a6937598d44a1cf3379eb", "fields": {"nom_de_la_commune": "SARCEY", "libell_d_acheminement": "SARCEY", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52459"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e9ba4e97ffa82db7aa3d29ca84f4d654a86a365", "fields": {"nom_de_la_commune": "SAUDRON", "libell_d_acheminement": "SAUDRON", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52463"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e735ea0332e9aaf017a543b8e157087a57d32722", "fields": {"nom_de_la_commune": "SEMILLY", "libell_d_acheminement": "SEMILLY", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52468"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a945688a1f4d7e99e62e88842707e696f1b9d9", "fields": {"nom_de_la_commune": "SOYERS", "libell_d_acheminement": "SOYERS", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52483"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9a06513a2c895bd4deeb8ea10c0ff60b03cbdc", "fields": {"nom_de_la_commune": "THIVET", "libell_d_acheminement": "THIVET", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52488"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de7875aa0c43b40146832589099c7c109fc88b2", "fields": {"code_postal": "52230", "code_commune_insee": "52491", "libell_d_acheminement": "THONNANCE LES MOULINS", "ligne_5": "SOULAINCOURT", "nom_de_la_commune": "THONNANCE LES MOULINS", "coordonnees_gps": [48.4233848371, 5.31749003055]}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50c0ed76092d4729ce76a868742653f1bfb31858", "fields": {"nom_de_la_commune": "TREIX", "libell_d_acheminement": "TREIX", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52494"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dab4a8c655ea9b22ef39c96e593d49cdad771f5", "fields": {"nom_de_la_commune": "VERSEILLES LE BAS", "libell_d_acheminement": "VERSEILLES LE BAS", "code_postal": "52250", "coordonnees_gps": [47.7675447812, 5.24768674453], "code_commune_insee": "52515"}, "geometry": {"type": "Point", "coordinates": [5.24768674453, 47.7675447812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4dbf5f25409c529c9b66dabc110f9b9dec1220", "fields": {"nom_de_la_commune": "VILLARS EN AZOIS", "libell_d_acheminement": "VILLARS EN AZOIS", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52525"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14e5789ed2cf11fec627df14058f883d275514a", "fields": {"nom_de_la_commune": "VILLIERS LE SEC", "libell_d_acheminement": "VILLIERS LE SEC", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52535"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef267f6d81bf51f65f2f5536cefec012ac09f7a8", "fields": {"nom_de_la_commune": "VIVEY", "libell_d_acheminement": "VIVEY", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52542"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d8092242f4a693a14bee9430f9d3dec4625df8", "fields": {"nom_de_la_commune": "VOILLECOMTE", "libell_d_acheminement": "VOILLECOMTE", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52543"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff4014f0c8bf30a895c0f5f2e932dfc9374a1d58", "fields": {"nom_de_la_commune": "VOISEY", "libell_d_acheminement": "VOISEY", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52544"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8732024f8eb8036411759740f1dcc9335ef5f9b", "fields": {"code_postal": "52400", "code_commune_insee": "52544", "libell_d_acheminement": "VOISEY", "ligne_5": "VAUX LA DOUCE", "nom_de_la_commune": "VOISEY", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "725412fbed7dfbc55eb55baba7ed9d3e6b6e47d9", "fields": {"nom_de_la_commune": "AMBRIERES LES VALLEES", "libell_d_acheminement": "AMBRIERES LES VALLEES", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53003"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1327f2d5fe871498ced780663a9c76becaf81aca", "fields": {"nom_de_la_commune": "ANDOUILLE", "libell_d_acheminement": "ANDOUILLE", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53005"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64346c1d1b3cd56a0e9d7b4c74fd91e952192ee", "fields": {"nom_de_la_commune": "ARON", "libell_d_acheminement": "ARON", "code_postal": "53440", "coordonnees_gps": [48.2988991204, -0.511946929707], "code_commune_insee": "53008"}, "geometry": {"type": "Point", "coordinates": [-0.511946929707, 48.2988991204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7486a08f80962c2dd96911a14e1e4d444922307a", "fields": {"nom_de_la_commune": "AZE", "libell_d_acheminement": "AZE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53014"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1456c6958fdc3bcd24fc83484e483239488d666", "fields": {"nom_de_la_commune": "LA BACONNIERE", "libell_d_acheminement": "LA BACONNIERE", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53015"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ac20424b9c3e41fc56cc1f380ed7006410804f", "fields": {"nom_de_la_commune": "BLANDOUET", "libell_d_acheminement": "BLANDOUET", "code_postal": "53270", "coordonnees_gps": [48.066547004, -0.33227388574], "code_commune_insee": "53032"}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61116e2be751cbae477e04115932e08f227deb1d", "fields": {"nom_de_la_commune": "CHALONS DU MAINE", "libell_d_acheminement": "CHALONS DU MAINE", "code_postal": "53470", "coordonnees_gps": [48.1996610785, -0.64326294123], "code_commune_insee": "53049"}, "geometry": {"type": "Point", "coordinates": [-0.64326294123, 48.1996610785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e28b4e8c6243cf50b1c92428d45db70cf2726ee8", "fields": {"nom_de_la_commune": "CHAMPGENETEUX", "libell_d_acheminement": "CHAMPGENETEUX", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53053"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a49d0fdb89d544de770737e0b640fadc3cc8326a", "fields": {"nom_de_la_commune": "CHEMERE LE ROI", "libell_d_acheminement": "CHEMERE LE ROI", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53067"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de39271ad08965d0e31759c42cbff19b93731da8", "fields": {"nom_de_la_commune": "COSMES", "libell_d_acheminement": "COSMES", "code_postal": "53230", "coordonnees_gps": [47.9490046036, -0.924040792242], "code_commune_insee": "53075"}, "geometry": {"type": "Point", "coordinates": [-0.924040792242, 47.9490046036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "219a3f8580d3fc052576d354e97d3cb15b644d28", "fields": {"nom_de_la_commune": "COUDRAY", "libell_d_acheminement": "COUDRAY", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53078"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af911cff0165c002e7d0b19a7a19043bdb8d90dc", "fields": {"nom_de_la_commune": "COUESMES VAUCE", "libell_d_acheminement": "COUESMES VAUCE", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53079"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "471554a63df28fd1f251adc0f685cfe028ede984", "fields": {"code_postal": "53300", "code_commune_insee": "53079", "libell_d_acheminement": "COUESMES VAUCE", "ligne_5": "VAUCE", "nom_de_la_commune": "COUESMES VAUCE", "coordonnees_gps": [48.4002685671, -0.643929114886]}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a09f378d3f01e850240a790a768d0b620ecda00", "fields": {"nom_de_la_commune": "DAON", "libell_d_acheminement": "DAON", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53089"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b9d84503ba5976d3107bba6969e960b9d293a10", "fields": {"nom_de_la_commune": "DENAZE", "libell_d_acheminement": "DENAZE", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53090"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31250edcef2932eed245072fb65927df3229285b", "fields": {"code_postal": "53940", "code_commune_insee": "53103", "libell_d_acheminement": "LE GENEST ST ISLE", "ligne_5": "ST ISLE", "nom_de_la_commune": "LE GENEST ST ISLE", "coordonnees_gps": [48.0612320187, -0.86717945825]}, "geometry": {"type": "Point", "coordinates": [-0.86717945825, 48.0612320187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc18d1d1a9713d54852ade3789c5494c06e9b01e", "fields": {"nom_de_la_commune": "GENNES SUR GLAIZE", "libell_d_acheminement": "GENNES SUR GLAIZE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53104"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60e11975ec1288a721eb50562494d3b0154ac732", "fields": {"nom_de_la_commune": "HOUSSAY", "libell_d_acheminement": "HOUSSAY", "code_postal": "53360", "coordonnees_gps": [47.9163829894, -0.78422271898], "code_commune_insee": "53117"}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241763d87a6586508c83c084a3d0c908a3039b86", "fields": {"code_postal": "53110", "code_commune_insee": "53118", "libell_d_acheminement": "LE HOUSSEAU BRETIGNOLLES", "ligne_5": "BRETIGNOLLES LE MOULIN", "nom_de_la_commune": "LE HOUSSEAU BRETIGNOLLES", "coordonnees_gps": [48.4617357482, -0.486776188303]}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecdcd11881e1e725cc5d49f056f6b92a46732e16", "fields": {"nom_de_la_commune": "JAVRON LES CHAPELLES", "libell_d_acheminement": "JAVRON LES CHAPELLES", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53121"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ba1050086d33b44d7a75bb032dbe356418bb09c", "fields": {"nom_de_la_commune": "JUVIGNE", "libell_d_acheminement": "JUVIGNE", "code_postal": "53380", "coordonnees_gps": [48.2253517545, -1.00061376372], "code_commune_insee": "53123"}, "geometry": {"type": "Point", "coordinates": [-1.00061376372, 48.2253517545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9efbdf6b133382176c305d6d18749c6ce283813", "fields": {"code_postal": "53110", "code_commune_insee": "53127", "libell_d_acheminement": "LASSAY LES CHATEAUX", "ligne_5": "MELLERAY LA VALLEE", "nom_de_la_commune": "LASSAY LES CHATEAUX", "coordonnees_gps": [48.4617357482, -0.486776188303]}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee294fb29f89efc55ce0d59c40ca88e3878d6f49", "fields": {"nom_de_la_commune": "LIVET", "libell_d_acheminement": "LIVET", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53134"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f62fd72e6d76bd6a8dfac38b2cf0cce75e957b16", "fields": {"nom_de_la_commune": "LIVRE LA TOUCHE", "libell_d_acheminement": "LIVRE LA TOUCHE", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53135"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0905edb510592b2ba24ee217072bd7e727449104", "fields": {"nom_de_la_commune": "LOIRON RUILLE", "libell_d_acheminement": "LOIRON RUILLE", "code_postal": "53320", "coordonnees_gps": [48.0269054563, -0.962440957136], "code_commune_insee": "53137"}, "geometry": {"type": "Point", "coordinates": [-0.962440957136, 48.0269054563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5afc04014f0998e04b6ecbdbc965a0cd91ea848", "fields": {"nom_de_la_commune": "MADRE", "libell_d_acheminement": "MADRE", "code_postal": "53250", "coordonnees_gps": [48.4288854285, -0.342425192265], "code_commune_insee": "53142"}, "geometry": {"type": "Point", "coordinates": [-0.342425192265, 48.4288854285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6512108566c886a8d077bf48166a5b722208f5e", "fields": {"nom_de_la_commune": "MEE", "libell_d_acheminement": "MEE", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53148"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f4a09ff29e1eca8595947c6b94c22d989f97c65", "fields": {"nom_de_la_commune": "MESLAY DU MAINE", "libell_d_acheminement": "MESLAY DU MAINE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53152"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ccf727996af7fc4260cda3157dc3fed6844137", "fields": {"nom_de_la_commune": "MONTSURS", "libell_d_acheminement": "MONTSURS", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53161"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a123099fefff50bfda3b79f1e85860c5b306b48", "fields": {"nom_de_la_commune": "OLIVET", "libell_d_acheminement": "OLIVET", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53169"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ed1b221cd426b911056a6a3de38e6a6e85d3574", "fields": {"nom_de_la_commune": "PONTMAIN", "libell_d_acheminement": "PONTMAIN", "code_postal": "53220", "coordonnees_gps": [48.3845072387, -1.0029033143], "code_commune_insee": "53181"}, "geometry": {"type": "Point", "coordinates": [-1.0029033143, 48.3845072387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d7cf97bb0d566c58783d1427b8c97ae3c5af396", "fields": {"nom_de_la_commune": "PRE EN PAIL ST SAMSON", "libell_d_acheminement": "PRE EN PAIL ST SAMSON", "code_postal": "53140", "coordonnees_gps": [48.4797003216, -0.222461490352], "code_commune_insee": "53185"}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "403caa679c165ffc30bb7d47ae32ba727e17e918", "fields": {"nom_de_la_commune": "RENAZE", "libell_d_acheminement": "RENAZE", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53188"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f5c27518ef7d512998c9806d979e2558c259cf", "fields": {"nom_de_la_commune": "LE RIBAY", "libell_d_acheminement": "LE RIBAY", "code_postal": "53640", "coordonnees_gps": [48.3702796098, -0.466991822845], "code_commune_insee": "53190"}, "geometry": {"type": "Point", "coordinates": [-0.466991822845, 48.3702796098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "737d90f70d12cf167fbbb4906114423ca1cd9de0", "fields": {"nom_de_la_commune": "RUILLE FROID FONDS", "libell_d_acheminement": "RUILLE FROID FONDS", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53193"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1682c7df3e167487662ae8597058ada3fc6f4028", "fields": {"nom_de_la_commune": "SACE", "libell_d_acheminement": "SACE", "code_postal": "53470", "coordonnees_gps": [48.1996610785, -0.64326294123], "code_commune_insee": "53195"}, "geometry": {"type": "Point", "coordinates": [-0.64326294123, 48.1996610785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6a09728aaeaf5f86d33de15850da80e1f4d05f", "fields": {"nom_de_la_commune": "ST BRICE", "libell_d_acheminement": "ST BRICE", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53203"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0517c4e7fb90b5e33ec6b346a6bd0f3e5fc1de", "fields": {"nom_de_la_commune": "ST CENERE", "libell_d_acheminement": "ST CENERE", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53205"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2369a1d2ed248c32292421761bfd60f2c51b5a00", "fields": {"nom_de_la_commune": "ST CHARLES LA FORET", "libell_d_acheminement": "ST CHARLES LA FORET", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53206"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9e2660b270bfcf5759426ada4b37b73ac53bc7", "fields": {"nom_de_la_commune": "ST DENIS D ANJOU", "libell_d_acheminement": "ST DENIS D ANJOU", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53210"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caebf41ca3584c54ecda126926b4542bb8eccc2c", "fields": {"nom_de_la_commune": "ST FRAIMBAULT DE PRIERES", "libell_d_acheminement": "ST FRAIMBAULT DE PRIERES", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53216"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ef824aad513daf0dddc999583990ea96a479b3", "fields": {"nom_de_la_commune": "STE GEMMES LE ROBERT", "libell_d_acheminement": "STE GEMMES LE ROBERT", "code_postal": "53600", "coordonnees_gps": [48.1712764888, -0.371025494246], "code_commune_insee": "53218"}, "geometry": {"type": "Point", "coordinates": [-0.371025494246, 48.1712764888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3914760a90c9a2d1e4d012a4ddb4304e55b71195", "fields": {"code_postal": "53100", "code_commune_insee": "53219", "libell_d_acheminement": "ST GEORGES BUTTAVENT", "ligne_5": "FONTAINE DANIEL", "nom_de_la_commune": "ST GEORGES BUTTAVENT", "coordonnees_gps": [48.3036155584, -0.694747095996]}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcdd7159c03b6e5cb7974098288de12c96dc7e7a", "fields": {"nom_de_la_commune": "ST GEORGES LE FLECHARD", "libell_d_acheminement": "ST GEORGES LE FLECHARD", "code_postal": "53480", "coordonnees_gps": [48.0582603543, -0.470360797173], "code_commune_insee": "53220"}, "geometry": {"type": "Point", "coordinates": [-0.470360797173, 48.0582603543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f74b99213965be2e99fe44926debae505d404137", "fields": {"nom_de_la_commune": "ST MICHEL DE FEINS", "libell_d_acheminement": "ST MICHEL DE FEINS", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53241"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b64ec24ce37839cbc0c702a2a163d0d45e77144", "fields": {"nom_de_la_commune": "ST PIERRE SUR ORTHE", "libell_d_acheminement": "ST PIERRE SUR ORTHE", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53249"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b99ffeb540d48f68c9268de7ab7143dfce585040", "fields": {"nom_de_la_commune": "ST QUENTIN LES ANGES", "libell_d_acheminement": "ST QUENTIN LES ANGES", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53251"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e98d44d93ee7d9c34c966c0aa3854af72cef887f", "fields": {"nom_de_la_commune": "STE SUZANNE ET CHAMMES", "libell_d_acheminement": "STE SUZANNE ET CHAMMES", "code_postal": "53270", "coordonnees_gps": [48.066547004, -0.33227388574], "code_commune_insee": "53255"}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290a7ca030437a416a14732d0d96ca14f82ec3a2", "fields": {"nom_de_la_commune": "SAULGES", "libell_d_acheminement": "SAULGES", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53257"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b4cb3c80bc8cb58aa1393899e348b495aa33da", "fields": {"nom_de_la_commune": "THUBOEUF", "libell_d_acheminement": "THUBOEUF", "code_postal": "53110", "coordonnees_gps": [48.4617357482, -0.486776188303], "code_commune_insee": "53263"}, "geometry": {"type": "Point", "coordinates": [-0.486776188303, 48.4617357482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f1c059aeafed25b509a4fd310b7960934fe0edc", "fields": {"nom_de_la_commune": "AGINCOURT", "libell_d_acheminement": "AGINCOURT", "code_postal": "54770", "coordonnees_gps": [48.7569187312, 6.27788013157], "code_commune_insee": "54006"}, "geometry": {"type": "Point", "coordinates": [6.27788013157, 48.7569187312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea09dc736e3708b4b964ab42b14b33e337e2a39c", "fields": {"nom_de_la_commune": "ANDERNY", "libell_d_acheminement": "ANDERNY", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54015"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492c7a0618fbe859c7459b7ec55714ca356dbf5f", "fields": {"nom_de_la_commune": "ANDILLY", "libell_d_acheminement": "ANDILLY", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54016"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5e10d9a5b1cad8dc9e359e91d0ee470c3a0814", "fields": {"nom_de_la_commune": "ATHIENVILLE", "libell_d_acheminement": "ATHIENVILLE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54026"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7afe23b9ebb980d8bfe148ef4c3170d1a695ef3", "fields": {"nom_de_la_commune": "AUTREVILLE SUR MOSELLE", "libell_d_acheminement": "AUTREVILLE SUR MOSELLE", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54031"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd7db06cc1f7695b5dfda3ff401ab0f3fbfcdb9", "fields": {"nom_de_la_commune": "AZERAILLES", "libell_d_acheminement": "AZERAILLES", "code_postal": "54122", "coordonnees_gps": [48.4830574623, 6.66436645475], "code_commune_insee": "54038"}, "geometry": {"type": "Point", "coordinates": [6.66436645475, 48.4830574623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31c610afd8eb0a8cd3e7fefd3b0233b9550d0661", "fields": {"nom_de_la_commune": "BASLIEUX", "libell_d_acheminement": "BASLIEUX", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54049"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8761d08d5397a983bea93a6c17df39112b8b2e8c", "fields": {"nom_de_la_commune": "BAUZEMONT", "libell_d_acheminement": "BAUZEMONT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54053"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14671a33110ea381ca4b4ff242665ff5e598bc13", "fields": {"nom_de_la_commune": "BAZAILLES", "libell_d_acheminement": "BAZAILLES", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54056"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee2845baab08e94e1e7a3bce07bf75eb462b376b", "fields": {"code_postal": "54610", "code_commune_insee": "54059", "libell_d_acheminement": "BELLEAU", "ligne_5": "MOREY", "nom_de_la_commune": "BELLEAU", "coordonnees_gps": [48.8814736429, 6.22677651571]}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3b94600757284541ffe6d102ba7331dfeede38d", "fields": {"nom_de_la_commune": "BEUVEZIN", "libell_d_acheminement": "BEUVEZIN", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54068"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f576ff95828c1542e699eae436ee8bc693512ec3", "fields": {"nom_de_la_commune": "BEZAUMONT", "libell_d_acheminement": "BEZAUMONT", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54072"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e8d9c5820feb89d36e7c1289a5404d62a1edc66", "fields": {"nom_de_la_commune": "BICQUELEY", "libell_d_acheminement": "BICQUELEY", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54073"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d94199216b2049930db0b34310134216ee1291", "fields": {"nom_de_la_commune": "BIONVILLE", "libell_d_acheminement": "BIONVILLE", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54075"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff6b9f73217f9425c1deab7f0ad639c652340b5a", "fields": {"nom_de_la_commune": "BOUCQ", "libell_d_acheminement": "BOUCQ", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54086"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5667d4017398bdc8c98d16e3303634d8bd60fb30", "fields": {"nom_de_la_commune": "BOUXIERES SOUS FROIDMONT", "libell_d_acheminement": "BOUXIERES SOUS FROIDMONT", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54091"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d6a306325f61c4f6be8defc9dc8a84ec464d2b8", "fields": {"nom_de_la_commune": "BRALLEVILLE", "libell_d_acheminement": "BRALLEVILLE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54094"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b98b162bbf153a80aab2ad986b09efbbf4ab558", "fields": {"nom_de_la_commune": "BURTHECOURT AUX CHENES", "libell_d_acheminement": "BURTHECOURT AUX CHENES", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54108"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eea039dec096ac276cb66c8b30f8e0bca4ea32d", "fields": {"nom_de_la_commune": "CHAMBLEY BUSSIERES", "libell_d_acheminement": "CHAMBLEY BUSSIERES", "code_postal": "54890", "coordonnees_gps": [49.0257742751, 5.94673598373], "code_commune_insee": "54112"}, "geometry": {"type": "Point", "coordinates": [5.94673598373, 49.0257742751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "950cc5cdbce9b5c14b123c86f5289dcf4c7c816a", "fields": {"nom_de_la_commune": "CHENIERES", "libell_d_acheminement": "CHENIERES", "code_postal": "54720", "coordonnees_gps": [49.4760856618, 5.75537597471], "code_commune_insee": "54127"}, "geometry": {"type": "Point", "coordinates": [5.75537597471, 49.4760856618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca48fd0804d6ac2917793632c3c485e68173ffd0", "fields": {"nom_de_la_commune": "COLMEY", "libell_d_acheminement": "COLMEY", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54134"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddfda59bea8c309a16f3d4974b55c1537baa5d52", "fields": {"nom_de_la_commune": "CROISMARE", "libell_d_acheminement": "CROISMARE", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54148"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28db11034676fc7c7e06032d7eb450fcf9bffa4a", "fields": {"nom_de_la_commune": "DOLCOURT", "libell_d_acheminement": "DOLCOURT", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54158"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3743231de041f5ce8763cb83c17979fea4a48e66", "fields": {"nom_de_la_commune": "DOMJEVIN", "libell_d_acheminement": "DOMJEVIN", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54163"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64ced68430f84fabfa9135530f0e5fd314289653", "fields": {"nom_de_la_commune": "DOMMARTEMONT", "libell_d_acheminement": "DOMMARTEMONT", "code_postal": "54130", "coordonnees_gps": [48.7101644321, 6.209548924], "code_commune_insee": "54165"}, "geometry": {"type": "Point", "coordinates": [6.209548924, 48.7101644321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98ede06eb0627d54e4839d89d2bca2a1fa09c51d", "fields": {"nom_de_la_commune": "ST ONDRAS", "libell_d_acheminement": "ST ONDRAS", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38434"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd131bf1adc0a616a55c477384ab876d13b796fc", "fields": {"nom_de_la_commune": "ST PAUL DE VARCES", "libell_d_acheminement": "ST PAUL DE VARCES", "code_postal": "38760", "coordonnees_gps": [45.0790840767, 5.65520915705], "code_commune_insee": "38436"}, "geometry": {"type": "Point", "coordinates": [5.65520915705, 45.0790840767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c77f44fc2c2153825039412d829b9c33f87ce396", "fields": {"nom_de_la_commune": "ST PAUL LES MONESTIER", "libell_d_acheminement": "ST PAUL LES MONESTIER", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38438"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f50b035ab494a6858236d564c7e4ddb8898497", "fields": {"code_postal": "38830", "code_commune_insee": "38439", "libell_d_acheminement": "CRETS EN BELLEDONNE", "ligne_5": "ST PIERRE D ALLEVARD", "nom_de_la_commune": "CRETS EN BELLEDONNE", "coordonnees_gps": [45.3570790479, 6.0451117626]}, "geometry": {"type": "Point", "coordinates": [6.0451117626, 45.3570790479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f10cb36fff4c9a7c7bc364bbea90d02af63cbdb", "fields": {"nom_de_la_commune": "ST PIERRE D ENTREMONT", "libell_d_acheminement": "ST PIERRE D ENTREMONT", "code_postal": "38380", "coordonnees_gps": [45.375484002, 5.78036097359], "code_commune_insee": "38446"}, "geometry": {"type": "Point", "coordinates": [5.78036097359, 45.375484002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9677f417feb3ac91d3f35377b0e5563e21499b4", "fields": {"nom_de_la_commune": "ST PRIM", "libell_d_acheminement": "ST PRIM", "code_postal": "38370", "coordonnees_gps": [45.436858951, 4.78033179088], "code_commune_insee": "38448"}, "geometry": {"type": "Point", "coordinates": [4.78033179088, 45.436858951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cafd8f2b144d5204d02c4a61732609326c48097", "fields": {"nom_de_la_commune": "ST QUENTIN SUR ISERE", "libell_d_acheminement": "ST QUENTIN SUR ISERE", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38450"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79a4933de37e689fca35dee31f040e9b44f40fd6", "fields": {"nom_de_la_commune": "ST SULPICE DES RIVOIRES", "libell_d_acheminement": "ST SULPICE DES RIVOIRES", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38460"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee8583279e952d6edf01daba29037a94e67fa02", "fields": {"nom_de_la_commune": "ST VINCENT DE MERCUZE", "libell_d_acheminement": "ST VINCENT DE MERCUZE", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38466"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9ce98b1841a0659de5c39e30662890fa69ee1b7", "fields": {"nom_de_la_commune": "SECHILIENNE", "libell_d_acheminement": "SECHILIENNE", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38478"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b306a64fa1e0a9ec393ed76978e6ca2824fdbf6e", "fields": {"nom_de_la_commune": "SEMONS", "libell_d_acheminement": "SEMONS", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38479"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72271e7145b6171cd8057f86e7be8eef14d1beff", "fields": {"nom_de_la_commune": "SINARD", "libell_d_acheminement": "SINARD", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38492"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "758208e9d70d8cbf807bf84ed8ccf8e3a17ecdc1", "fields": {"nom_de_la_commune": "TIGNIEU JAMEYZIEU", "libell_d_acheminement": "TIGNIEU JAMEYZIEU", "code_postal": "38230", "coordonnees_gps": [45.7461483574, 5.17160988161], "code_commune_insee": "38507"}, "geometry": {"type": "Point", "coordinates": [5.17160988161, 45.7461483574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc7d635b462b58b99564b82175b9181780cdf0cb", "fields": {"nom_de_la_commune": "TREPT", "libell_d_acheminement": "TREPT", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38515"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a05ddd6f282fbe502c99e811a419bc12c1dd97a", "fields": {"code_postal": "38210", "code_commune_insee": "38517", "libell_d_acheminement": "TULLINS", "ligne_5": "FURES", "nom_de_la_commune": "TULLINS", "coordonnees_gps": [45.270292441, 5.50879408313]}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4af063bae9c3f0c797c55a26453999d57325e8f6", "fields": {"nom_de_la_commune": "VALJOUFFREY", "libell_d_acheminement": "VALJOUFFREY", "code_postal": "38740", "coordonnees_gps": [44.9085893261, 6.02132611132], "code_commune_insee": "38522"}, "geometry": {"type": "Point", "coordinates": [6.02132611132, 44.9085893261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a33300542f00f2ff542113ac9729322eda8128", "fields": {"nom_de_la_commune": "VAUJANY", "libell_d_acheminement": "VAUJANY", "code_postal": "38114", "coordonnees_gps": [45.1681255777, 6.0656743192], "code_commune_insee": "38527"}, "geometry": {"type": "Point", "coordinates": [6.0656743192, 45.1681255777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3b623ec90c3816b10140130827fec9ca7e8dcc", "fields": {"nom_de_la_commune": "VAULNAVEYS LE BAS", "libell_d_acheminement": "VAULNAVEYS LE BAS", "code_postal": "38410", "coordonnees_gps": [45.1312146211, 5.85219394747], "code_commune_insee": "38528"}, "geometry": {"type": "Point", "coordinates": [5.85219394747, 45.1312146211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06147faff34d0361d90359e81befe19786e90b74", "fields": {"nom_de_la_commune": "VAULNAVEYS LE HAUT", "libell_d_acheminement": "VAULNAVEYS LE HAUT", "code_postal": "38410", "coordonnees_gps": [45.1312146211, 5.85219394747], "code_commune_insee": "38529"}, "geometry": {"type": "Point", "coordinates": [5.85219394747, 45.1312146211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6711c36b2c6ac61a0abccff43726f2715b537996", "fields": {"nom_de_la_commune": "VELANNE", "libell_d_acheminement": "VELANNE", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38531"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ae9eb86b0cbeef58a9594e0bae95fb64b0eb93f", "fields": {"nom_de_la_commune": "VENERIEU", "libell_d_acheminement": "VENERIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38532"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "410e782b6b0e6923090f50a879a14a8c7d91e367", "fields": {"code_postal": "38860", "code_commune_insee": "38534", "libell_d_acheminement": "VENOSC", "ligne_5": "LES DEUX ALPES", "nom_de_la_commune": "VENOSC", "coordonnees_gps": [44.994660373, 6.12322203081]}, "geometry": {"type": "Point", "coordinates": [6.12322203081, 44.994660373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8907287e23085ef983bdbe012c5d0658ea787d0", "fields": {"nom_de_la_commune": "VILLARD ST CHRISTOPHE", "libell_d_acheminement": "VILLARD ST CHRISTOPHE", "code_postal": "38119", "coordonnees_gps": [44.9763278291, 5.79332397715], "code_commune_insee": "38552"}, "geometry": {"type": "Point", "coordinates": [5.79332397715, 44.9763278291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fd8fe78cd2f486ee0ad09b829793471c712754c", "fields": {"nom_de_la_commune": "VILLETTE DE VIENNE", "libell_d_acheminement": "VILLETTE DE VIENNE", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38558"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25865f0f4875aae6287e6120379454db00e9e3e4", "fields": {"nom_de_la_commune": "VOUREY", "libell_d_acheminement": "VOUREY", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38566"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aeb57db888a5478c3a2e05411dd9537bca32a04", "fields": {"nom_de_la_commune": "ANNOIRE", "libell_d_acheminement": "ANNOIRE", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39011"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd0d86ca59ac7f9116efb980b453c080853a7c5", "fields": {"nom_de_la_commune": "ARBOIS", "libell_d_acheminement": "ARBOIS", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39013"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cd7155c9210b9af16fd42d16c6fd7951307bd1b", "fields": {"code_postal": "39270", "code_commune_insee": "39021", "libell_d_acheminement": "LA CHAILLEUSE", "ligne_5": "ARTHENAS", "nom_de_la_commune": "LA CHAILLEUSE", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54def8a4a2adf5cfc2851208832f8f756cfc78a6", "fields": {"nom_de_la_commune": "AUXANGE", "libell_d_acheminement": "AUXANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39031"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ce88d921b4b25fb63d27e4e2b003fda8b4bc4a", "fields": {"nom_de_la_commune": "BARESIA SUR L AIN", "libell_d_acheminement": "BARESIA SUR L AIN", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39038"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0be39ab25937b58745ac5c9c02d149ca01d921c", "fields": {"nom_de_la_commune": "BAVERANS", "libell_d_acheminement": "BAVERANS", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39042"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfac9c60b01bc485cf0a9a2e5689cda20d81a1c7", "fields": {"nom_de_la_commune": "BOISSIA", "libell_d_acheminement": "BOISSIA", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39061"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bcf6f13e9b3f6250677487be8d99b103b1e3193", "fields": {"nom_de_la_commune": "BONLIEU", "libell_d_acheminement": "BONLIEU", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39063"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fadbfadebf536e9973178f35478e0aa9b9d73e53", "fields": {"nom_de_la_commune": "BONNEFONTAINE", "libell_d_acheminement": "BONNEFONTAINE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39065"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab058fc21e8fa046e343c596f7ae6250a8a7d0e1", "fields": {"nom_de_la_commune": "BORNAY", "libell_d_acheminement": "BORNAY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39066"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fec0d67eb1b1a90e5d33c99bfa832fe2c3f0a0b3", "fields": {"nom_de_la_commune": "LES BOUCHOUX", "libell_d_acheminement": "LES BOUCHOUX", "code_postal": "39370", "coordonnees_gps": [46.2916662197, 5.82108544834], "code_commune_insee": "39068"}, "geometry": {"type": "Point", "coordinates": [5.82108544834, 46.2916662197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9ec937ecaed400e6e3091ba9cba09111e2d75a1", "fields": {"nom_de_la_commune": "BRERY", "libell_d_acheminement": "BRERY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39075"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73d36f557bcad37fe4bf5c07edad954353fd2862", "fields": {"nom_de_la_commune": "CERNIEBAUD", "libell_d_acheminement": "CERNIEBAUD", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39085"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "414b4b3d15e97e692af3632662a86f428d35ad50", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR FURIEUSE", "libell_d_acheminement": "LA CHAPELLE SUR FURIEUSE", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39103"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45646f5c9d5dd6e5b30ed1af144ab72f6cff5750", "fields": {"nom_de_la_commune": "CHARCIER", "libell_d_acheminement": "CHARCIER", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39107"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92fa34aefad242191369542b68e41d31e404c069", "fields": {"nom_de_la_commune": "LA CHASSAGNE", "libell_d_acheminement": "LA CHASSAGNE", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39112"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "509e80e1f735914c1c70c7b1440af29d003bd874", "fields": {"nom_de_la_commune": "LA CHATELAINE", "libell_d_acheminement": "LA CHATELAINE", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39116"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74a8732422ef1c368282ffa1b5b3d9a0b97e1cf", "fields": {"nom_de_la_commune": "CHATEL DE JOUX", "libell_d_acheminement": "CHATEL DE JOUX", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39118"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "889f5c86e1f311a87d58c750e1be6163f62b1f75", "fields": {"nom_de_la_commune": "CHAUMERGY", "libell_d_acheminement": "CHAUMERGY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39124"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fe438d7a1340e05924d4b0ac888d5038d2366fb", "fields": {"nom_de_la_commune": "CHAUSSENANS", "libell_d_acheminement": "CHAUSSENANS", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39127"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5102296d7a5c5eebb54f7a50c8f84f07c530a82", "fields": {"nom_de_la_commune": "CHEMILLA", "libell_d_acheminement": "CHEMILLA", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39137"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d80dd1e426213a983bcd954a93209fc2d6511572", "fields": {"nom_de_la_commune": "CHEVREAUX", "libell_d_acheminement": "CHEVREAUX", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39142"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d32041f4f3fd1d502a0ff96170b628dc16359116", "fields": {"nom_de_la_commune": "CHILLY SUR SALINS", "libell_d_acheminement": "CHILLY SUR SALINS", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39147"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7efb8b4b71ea5cfb3848f2115832539c50c6a1e2", "fields": {"nom_de_la_commune": "CIZE", "libell_d_acheminement": "CIZE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39153"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad9f7a3eaf73e577da9d1d0e03c416448fe71bc", "fields": {"nom_de_la_commune": "CLAIRVAUX LES LACS", "libell_d_acheminement": "CLAIRVAUX LES LACS", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39154"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5c184a21b6f4b57dea48a3891ff61806e552d9", "fields": {"nom_de_la_commune": "COGNA", "libell_d_acheminement": "COGNA", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39156"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1450adf54b328de071d9da09c8c3146ecd4f39b", "fields": {"nom_de_la_commune": "COMMENAILLES", "libell_d_acheminement": "COMMENAILLES", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39160"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76c5f518c3c0f3099a9ae6b717a7ce5033d540a", "fields": {"nom_de_la_commune": "CONLIEGE", "libell_d_acheminement": "CONLIEGE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39164"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd3c1028f9fec76b15916d869513f631ef15d93", "fields": {"nom_de_la_commune": "CONTE", "libell_d_acheminement": "CONTE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39165"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c7b9334df130d6af3dade21f0279c9a010573e5", "fields": {"nom_de_la_commune": "CRESSIA", "libell_d_acheminement": "CRESSIA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39180"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1180fc60dba7990d178777330d7e22508b4e6a5e", "fields": {"nom_de_la_commune": "CRISSEY", "libell_d_acheminement": "CRISSEY", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39182"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f844bf8868629c6903c5011f4c2c3285daa53c", "fields": {"nom_de_la_commune": "CUTTURA", "libell_d_acheminement": "CUTTURA", "code_postal": "39170", "coordonnees_gps": [46.4122748444, 5.79038088139], "code_commune_insee": "39186"}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82d0eb23cb92f20f37b7e4abc6ef53ec96c4030c", "fields": {"nom_de_la_commune": "CUVIER", "libell_d_acheminement": "CUVIER", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39187"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b085213ad4da32d16359bee30e224a39428048", "fields": {"code_postal": "39290", "code_commune_insee": "39188", "libell_d_acheminement": "DAMMARTIN MARPAIN", "ligne_5": "MARPAIN", "nom_de_la_commune": "DAMMARTIN MARPAIN", "coordonnees_gps": [47.2159380749, 5.52780674218]}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385318d22e4ee3f61402db0fddf3adc358095939", "fields": {"nom_de_la_commune": "LES DEUX FAYS", "libell_d_acheminement": "LES DEUX FAYS", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39196"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc2c929c9d22f0b4b07bccf0fe38843bee1f3c2f", "fields": {"nom_de_la_commune": "DOLE", "libell_d_acheminement": "DOLE", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39198"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e16caea7d4606ce19f4b35a89bf8b043c43ed5f3", "fields": {"nom_de_la_commune": "DOMBLANS", "libell_d_acheminement": "DOMBLANS", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39199"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c907f984c2a98c59aad2ad1a9288080e85094ca8", "fields": {"nom_de_la_commune": "DOYE", "libell_d_acheminement": "DOYE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39203"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c1e67f0ac17cee4b1214cfadbb5c6ec0d5fe7c8", "fields": {"nom_de_la_commune": "DRAMELAY", "libell_d_acheminement": "DRAMELAY", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39204"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a712bc899a63f821973791f51574695fe5d3db", "fields": {"nom_de_la_commune": "ECRILLE", "libell_d_acheminement": "ECRILLE", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39207"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6089aaf00d608243b5abeee23ae4158ad082d99", "fields": {"code_postal": "39160", "code_commune_insee": "39209", "libell_d_acheminement": "VAL D EPY", "ligne_5": "SENAUD", "nom_de_la_commune": "VAL D EPY", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e20b3b8f83381b1bec308a68df4bfe8b06c1028", "fields": {"nom_de_la_commune": "L ETOILE", "libell_d_acheminement": "L ETOILE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39217"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8766cc794e5fc6d65cb331c29532b03f7911278f", "fields": {"nom_de_la_commune": "LA FERTE", "libell_d_acheminement": "LA FERTE", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39223"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64da445e05d2c970725afe2742c4dfbc5f9dffb1", "fields": {"nom_de_la_commune": "FOUCHERANS", "libell_d_acheminement": "FOUCHERANS", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39233"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f5d7732cc8f10e999a56df509404db3f3fe53c", "fields": {"nom_de_la_commune": "GENDREY", "libell_d_acheminement": "GENDREY", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39246"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e930351fec5b41672a689e4b685ff1131e17a75", "fields": {"nom_de_la_commune": "GERAISE", "libell_d_acheminement": "GERAISE", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39248"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "575c9db7b5542e582d48f54c759b121605d2f609", "fields": {"nom_de_la_commune": "GERUGE", "libell_d_acheminement": "GERUGE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39250"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fece50853d790340f2bbf1f2f239ac00ae37176", "fields": {"nom_de_la_commune": "GIGNY", "libell_d_acheminement": "GIGNY", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39253"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a56b4d0206957cc945c4eca41f81d2207f9801ec", "fields": {"nom_de_la_commune": "GRANGE DE VAIVRE", "libell_d_acheminement": "GRANGE DE VAIVRE", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39259"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e77815655e95ef672c8937e1005b882ce2bfba2", "fields": {"nom_de_la_commune": "LES HAYS", "libell_d_acheminement": "LES HAYS", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39266"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f61c6b053f69326bee247d1137a930deedaa7e7f", "fields": {"nom_de_la_commune": "LAC DES ROUGES TRUITES", "libell_d_acheminement": "LAC DES ROUGES TRUITES", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39271"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925232092b38f8aa69e47cbb2c5cc4374744c393", "fields": {"nom_de_la_commune": "LARGILLAY MARSONNAY", "libell_d_acheminement": "LARGILLAY MARSONNAY", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39278"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7bc9ab654f64e9e72dd3fd2780085c53f39a791", "fields": {"nom_de_la_commune": "LA LATETTE", "libell_d_acheminement": "LA LATETTE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39282"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c2af93e84023a31842d1f5111508f88959c4a1a", "fields": {"nom_de_la_commune": "LAVIGNY", "libell_d_acheminement": "LAVIGNY", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39288"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f76ca179aa8f18b1aeed5f641ed42aa10fe8d59", "fields": {"code_postal": "39260", "code_commune_insee": "39289", "libell_d_acheminement": "LECT", "ligne_5": "VOUGLANS", "nom_de_la_commune": "LECT", "coordonnees_gps": [46.4403663302, 5.71909726645]}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0341950ea3e3ad5e31624b534cffb2e6140f8e1", "fields": {"nom_de_la_commune": "LONGCOCHON", "libell_d_acheminement": "LONGCOCHON", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39298"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4d5ce091ec277d6a39e52affefe5558c28f4f1", "fields": {"nom_de_la_commune": "LOULLE", "libell_d_acheminement": "LOULLE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39301"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09e996a285b80e41307ec74fb647aa8b0ae2ab97", "fields": {"nom_de_la_commune": "MAISOD", "libell_d_acheminement": "MAISOD", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39307"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4760c20f72ade3ed4118b280249a014a89edd9d3", "fields": {"nom_de_la_commune": "MANTRY", "libell_d_acheminement": "MANTRY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39310"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0555db37c60fb8f36eea9efdd1b300eea4493c74", "fields": {"nom_de_la_commune": "MARIGNY", "libell_d_acheminement": "MARIGNY", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39313"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc31093aa944a8411b84557bd200c593ef055be", "fields": {"nom_de_la_commune": "MARNEZIA", "libell_d_acheminement": "MARNEZIA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39314"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ee74213d35e6371c529af669d3a8e50f143f5b", "fields": {"nom_de_la_commune": "MATHENAY", "libell_d_acheminement": "MATHENAY", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39319"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98381eddfd82706fc8227a4ee1bbbcdfb7878789", "fields": {"nom_de_la_commune": "MENETRU LE VIGNOBLE", "libell_d_acheminement": "MENETRU LE VIGNOBLE", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39321"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e632fef75899d5489286d563da634c4322d81600", "fields": {"nom_de_la_commune": "MEUSSIA", "libell_d_acheminement": "MEUSSIA", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39328"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da289a8abecdd5c9d601e47687ccff139f090d71", "fields": {"nom_de_la_commune": "MIGNOVILLARD", "libell_d_acheminement": "MIGNOVILLARD", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39331"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f948c7f9e82e812068f6982d0b17d5df37cc6c24", "fields": {"code_postal": "39250", "code_commune_insee": "39331", "libell_d_acheminement": "MIGNOVILLARD", "ligne_5": "ESSAVILLY", "nom_de_la_commune": "MIGNOVILLARD", "coordonnees_gps": [46.7774503228, 6.08094337332]}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa2c3eebd7a4790a3ca91914942a10d1f43006e4", "fields": {"nom_de_la_commune": "MONAY", "libell_d_acheminement": "MONAY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39342"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0729e0fe706dc52f6b223f0f4d6e7a15547866", "fields": {"nom_de_la_commune": "MONTBARREY", "libell_d_acheminement": "MONTBARREY", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39350"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8772644a0d41103b7fc4c43bc5734cc0125a70", "fields": {"nom_de_la_commune": "MONTIGNY SUR L AIN", "libell_d_acheminement": "MONTIGNY SUR L AIN", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39356"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d907225a139145a4fa368eac5caf52388454e94d", "fields": {"nom_de_la_commune": "MONTMIREY LA VILLE", "libell_d_acheminement": "MONTMIREY LA VILLE", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39360"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "359c9a5444e812bca660762649985a9172949ffd", "fields": {"nom_de_la_commune": "MONTMIREY LE CHATEAU", "libell_d_acheminement": "MONTMIREY LE CHATEAU", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39361"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0397dd6b471cc2278a47379e0b4583615f344fa", "fields": {"code_postal": "39400", "code_commune_insee": "39368", "libell_d_acheminement": "HAUTS DE BIENNE", "ligne_5": "MOREZ", "nom_de_la_commune": "HAUTS DE BIENNE", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a25b96d64c177dd1b176eff0a7ac94f79fc03e54", "fields": {"code_postal": "39160", "code_commune_insee": "39378", "libell_d_acheminement": "LES TROIS CHATEAUX", "ligne_5": "NANC LES ST AMOUR", "nom_de_la_commune": "LES TROIS CHATEAUX", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0298f7021da261ddf43cbbe94ea5cb460a5d4cd", "fields": {"nom_de_la_commune": "NANCUISE", "libell_d_acheminement": "NANCUISE", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39380"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a1685522d76f8aaceb2e830c63fae073933b490", "fields": {"code_postal": "39120", "code_commune_insee": "39385", "libell_d_acheminement": "NEUBLANS ABERGEMENT", "ligne_5": "ABERGEMENT ST JEAN", "nom_de_la_commune": "NEUBLANS ABERGEMENT", "coordonnees_gps": [46.9509063875, 5.4122957378]}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f4258a1cc6932734a4f117a9127a8da2ae546da", "fields": {"nom_de_la_commune": "ROCHECHINARD", "libell_d_acheminement": "ROCHECHINARD", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26270"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72821c57728f089046a9a79e4cfdf5cbe0c83a8f", "fields": {"nom_de_la_commune": "LA ROCHE DE GLUN", "libell_d_acheminement": "LA ROCHE DE GLUN", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26271"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b1ba4596b0ec150c71f23179432a54998fc7d72", "fields": {"nom_de_la_commune": "ROCHEGUDE", "libell_d_acheminement": "ROCHEGUDE", "code_postal": "26790", "coordonnees_gps": [44.2888524342, 4.87321368948], "code_commune_insee": "26275"}, "geometry": {"type": "Point", "coordinates": [4.87321368948, 44.2888524342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f6c5ad8bc5f014817fcd8ae69caf050e16758f", "fields": {"nom_de_la_commune": "ROUSSIEUX", "libell_d_acheminement": "ROUSSIEUX", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26286"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5cfee0513a446db973ae184a67a89dc756113ac", "fields": {"nom_de_la_commune": "ST CHRISTOPHE ET LE LARIS", "libell_d_acheminement": "ST CHRISTOPHE ET LE LARIS", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26298"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e435b12402d72325cc7f4a3dabb73fdc31619bc", "fields": {"nom_de_la_commune": "ST DIZIER EN DIOIS", "libell_d_acheminement": "ST DIZIER EN DIOIS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26300"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a562066905fdece085a6b12e456402cd71f308c0", "fields": {"nom_de_la_commune": "ST DONAT SUR L HERBASSE", "libell_d_acheminement": "ST DONAT SUR L HERBASSE", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26301"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78e3865d7530ce5fbab8acb22ac5e8cbc269058a", "fields": {"nom_de_la_commune": "STE EULALIE EN ROYANS", "libell_d_acheminement": "STE EULALIE EN ROYANS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26302"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4016ef47acee21b6f877cb33a97d1d38ce92f5ed", "fields": {"nom_de_la_commune": "ST FERREOL TRENTE PAS", "libell_d_acheminement": "ST FERREOL TRENTE PAS", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26304"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd947b061cbe72669acc3a2ba5d700b12924fed2", "fields": {"nom_de_la_commune": "ST GERVAIS SUR ROUBION", "libell_d_acheminement": "ST GERVAIS SUR ROUBION", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26305"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814c82865f88c91594cad7b3125bae87a8a7a5a9", "fields": {"nom_de_la_commune": "STE JALLE", "libell_d_acheminement": "STE JALLE", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26306"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "450e15e9196ac4ca88b06172cc0fef7699599fb5", "fields": {"nom_de_la_commune": "ST LAURENT EN ROYANS", "libell_d_acheminement": "ST LAURENT EN ROYANS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26311"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39b44ecf96d0b51c24af10138ce337cb0d132956", "fields": {"nom_de_la_commune": "ST MARTIN D AOUT", "libell_d_acheminement": "ST MARTIN D AOUT", "code_postal": "26330", "coordonnees_gps": [45.2134239475, 4.96745732699], "code_commune_insee": "26314"}, "geometry": {"type": "Point", "coordinates": [4.96745732699, 45.2134239475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92eefddd4df9a7ae213239a5dee655368aa9ca0", "fields": {"nom_de_la_commune": "ST MICHEL SUR SAVASSE", "libell_d_acheminement": "ST MICHEL SUR SAVASSE", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26319"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e949ca2a0a58eb4c55bf1287274155fb6fb403b6", "fields": {"nom_de_la_commune": "ST NAZAIRE LE DESERT", "libell_d_acheminement": "ST NAZAIRE LE DESERT", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26321"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b01e809a4f672373a76ea67a63389f9528fb4cd", "fields": {"nom_de_la_commune": "ST RESTITUT", "libell_d_acheminement": "ST RESTITUT", "code_postal": "26130", "coordonnees_gps": [44.3543801752, 4.80463085245], "code_commune_insee": "26326"}, "geometry": {"type": "Point", "coordinates": [4.80463085245, 44.3543801752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "060885565f2c1eaacb3dd9abbe48c2b84defb464", "fields": {"nom_de_la_commune": "ST UZE", "libell_d_acheminement": "ST UZE", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26332"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b552e99175625380655885982028a93fb4266f18", "fields": {"nom_de_la_commune": "SAOU", "libell_d_acheminement": "SAOU", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26336"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a970774aa8937c766553f1a1f6c7264fcb52012", "fields": {"nom_de_la_commune": "SAUZET", "libell_d_acheminement": "SAUZET", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26338"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd3cc43b200e12bada45374667ccc9447a8665e4", "fields": {"nom_de_la_commune": "TEYSSIERES", "libell_d_acheminement": "TEYSSIERES", "code_postal": "26220", "coordonnees_gps": [44.5059252728, 5.12194208681], "code_commune_insee": "26350"}, "geometry": {"type": "Point", "coordinates": [5.12194208681, 44.5059252728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59aaa6bf582a7f0b058a2d8af9b8d6c096f78326", "fields": {"nom_de_la_commune": "TRESCHENU CREYERS", "libell_d_acheminement": "TRESCHENU CREYERS", "code_postal": "26410", "coordonnees_gps": [44.6917619163, 5.54713177432], "code_commune_insee": "26354"}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470d2dc202f96ed920cbc6f5355802c2af93e43d", "fields": {"nom_de_la_commune": "VALDROME", "libell_d_acheminement": "VALDROME", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26361"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95fe8eb63c44717f0c0a080ad0e8328417c526f", "fields": {"nom_de_la_commune": "VALOUSE", "libell_d_acheminement": "VALOUSE", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26363"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e19c3ce0c6fffa9f940ec51d1a8256c181c0cd8", "fields": {"nom_de_la_commune": "VERCLAUSE", "libell_d_acheminement": "VERCLAUSE", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26369"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b358c21d1fe249d621f5eead8a03b4cf48bd5139", "fields": {"nom_de_la_commune": "GRANGES LES BEAUMONT", "libell_d_acheminement": "GRANGES LES BEAUMONT", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26379"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67fe96292733ff36bb90d6ee7682185515d2324e", "fields": {"nom_de_la_commune": "ACON", "libell_d_acheminement": "ACON", "code_postal": "27570", "coordonnees_gps": [48.7688437949, 1.05443864674], "code_commune_insee": "27002"}, "geometry": {"type": "Point", "coordinates": [1.05443864674, 48.7688437949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "061e223e8638962ecd342b1bda7fb4a6a950ac2f", "fields": {"nom_de_la_commune": "AILLY", "libell_d_acheminement": "AILLY", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27005"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc627ff61ba7452ae7de7e9df9fc610a88e45b91", "fields": {"nom_de_la_commune": "AMECOURT", "libell_d_acheminement": "AMECOURT", "code_postal": "27140", "coordonnees_gps": [49.3150271215, 1.74471668878], "code_commune_insee": "27010"}, "geometry": {"type": "Point", "coordinates": [1.74471668878, 49.3150271215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e671ce975a60f7995c04459bb5ed7b5fbb039eac", "fields": {"nom_de_la_commune": "AMFREVILLE SUR ITON", "libell_d_acheminement": "AMFREVILLE SUR ITON", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27014"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bb21e6b7e72a26a93de3881ed62e4cb5c11b525", "fields": {"nom_de_la_commune": "LES ANDELYS", "libell_d_acheminement": "LES ANDELYS", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27016"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92cb654081f8b2499735344eb782be3ace96feba", "fields": {"code_postal": "27600", "code_commune_insee": "27022", "libell_d_acheminement": "LE VAL D HAZEY", "ligne_5": "STE BARBE SUR GAILLON", "nom_de_la_commune": "LE VAL D HAZEY", "coordonnees_gps": [49.1557980805, 1.30618945985]}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db2a3a7171af6dad0bfde7c4e911f2ed9664486d", "fields": {"code_postal": "27240", "code_commune_insee": "27032", "libell_d_acheminement": "CHAMBOIS", "ligne_5": "AVRILLY", "nom_de_la_commune": "CHAMBOIS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7a6e1976e1f14365a61f44399b7dc4a138b6505", "fields": {"nom_de_la_commune": "BACQUEVILLE", "libell_d_acheminement": "BACQUEVILLE", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27034"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "874a6e7c365efd2c398fc9e7cc8f888d7b9ae69c", "fields": {"nom_de_la_commune": "BAILLEUL LA VALLEE", "libell_d_acheminement": "BAILLEUL LA VALLEE", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27035"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2c8a1d3b6ca2f0e847eb416d1ecad827e351191", "fields": {"nom_de_la_commune": "LES BAUX DE BRETEUIL", "libell_d_acheminement": "LES BAUX DE BRETEUIL", "code_postal": "27160", "coordonnees_gps": [48.8560757973, 0.877611850909], "code_commune_insee": "27043"}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8b9378ca38e15e2199fdce8f1f0c334878f0e9", "fields": {"nom_de_la_commune": "BAZINCOURT SUR EPTE", "libell_d_acheminement": "BAZINCOURT SUR EPTE", "code_postal": "27140", "coordonnees_gps": [49.3150271215, 1.74471668878], "code_commune_insee": "27045"}, "geometry": {"type": "Point", "coordinates": [1.74471668878, 49.3150271215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52cd6f99b2149ac8c1e7fd56aae42302494dd2bc", "fields": {"nom_de_la_commune": "BEAUBRAY", "libell_d_acheminement": "BEAUBRAY", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27047"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a9e651fafd1b476809aa16afe433b646b3389d8", "fields": {"code_postal": "27330", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "GISAY LA COUDRE", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [48.928948419, 0.685983737995]}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a93afba59f977403297c64020bbd925515896216", "fields": {"code_postal": "27330", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "THEVRAY", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [48.928948419, 0.685983737995]}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "430165091841cf71706efb0d91d78b22c9dc3b6a", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "THEVRAY", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b63eb77281d5f6a0660e406e0729e6505ef1eaad", "fields": {"nom_de_la_commune": "BERNOUVILLE", "libell_d_acheminement": "BERNOUVILLE", "code_postal": "27660", "coordonnees_gps": [49.299213116, 1.68011773724], "code_commune_insee": "27059"}, "geometry": {"type": "Point", "coordinates": [1.68011773724, 49.299213116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b90e66f0f65b434b26032e8eb7f6f07281ce9b", "fields": {"nom_de_la_commune": "BERTHOUVILLE", "libell_d_acheminement": "BERTHOUVILLE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27061"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ca5b40f4abc6d0cd8ca2553f0c6feb70915937", "fields": {"nom_de_la_commune": "BERVILLE SUR MER", "libell_d_acheminement": "BERVILLE SUR MER", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27064"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca04d34f5eb1283577b7ce02ab9cc3a3bfb21740", "fields": {"nom_de_la_commune": "BOIS ANZERAY", "libell_d_acheminement": "BOIS ANZERAY", "code_postal": "27330", "coordonnees_gps": [48.928948419, 0.685983737995], "code_commune_insee": "27068"}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30ea0c62a92d0b0020948502e4f7edf81e93f3c2", "fields": {"nom_de_la_commune": "BOISEMONT", "libell_d_acheminement": "BOISEMONT", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27070"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142efcacf3340fa9599f3197f1e11743a46b6e9f", "fields": {"nom_de_la_commune": "BOIS LE ROI", "libell_d_acheminement": "BOIS LE ROI", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27073"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ffabb4fb97b5049e107358e74908a8a4b21d337", "fields": {"nom_de_la_commune": "BOISSET LES PREVANCHES", "libell_d_acheminement": "BOISSET LES PREVANCHES", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27076"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d18a4e953c25e03c2ca4358a7a1dda5d8a470db", "fields": {"nom_de_la_commune": "BOISSEY LE CHATEL", "libell_d_acheminement": "BOISSEY LE CHATEL", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27077"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0fccf17f3dd1516e68530c9bbc107c44ab017da", "fields": {"nom_de_la_commune": "LA BONNEVILLE SUR ITON", "libell_d_acheminement": "LA BONNEVILLE SUR ITON", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27082"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18fd7338af40d64dda685f202d47a0e3fa3494a0", "fields": {"code_postal": "27310", "code_commune_insee": "27085", "libell_d_acheminement": "FLANCOURT CRESCY EN ROUMOIS", "ligne_5": "FLANCOURT CATELON", "nom_de_la_commune": "FLANCOURT CRESCY EN ROUMOIS", "coordonnees_gps": [49.3596105697, 0.832082294949]}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d6a5644c9042c72b33a814aba3e2ced24d8e204", "fields": {"nom_de_la_commune": "BOSC RENOULT EN ROUMOIS", "libell_d_acheminement": "BOSC RENOULT EN ROUMOIS", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27089"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ad9848120dc18d52a5c78e088fd2f7217291d9", "fields": {"nom_de_la_commune": "BOSNORMAND", "libell_d_acheminement": "BOSNORMAND", "code_postal": "27670", "coordonnees_gps": [49.2917091598, 0.924488601867], "code_commune_insee": "27093"}, "geometry": {"type": "Point", "coordinates": [0.924488601867, 49.2917091598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddba539834abd813060b709697e50db83846fe8c", "fields": {"nom_de_la_commune": "BOULLEVILLE", "libell_d_acheminement": "BOULLEVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27100"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c62d9afeb3b8e2ec5d6a7d80584b621e09107676", "fields": {"nom_de_la_commune": "BOURG ACHARD", "libell_d_acheminement": "BOURG ACHARD", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27103"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1ad4bf67103ca4fa4dc95e73c0718f222e25d7", "fields": {"code_postal": "27230", "code_commune_insee": "27106", "libell_d_acheminement": "BOURNAINVILLE FAVEROLLES", "ligne_5": "BOURNAINVILLE", "nom_de_la_commune": "BOURNAINVILLE FAVEROLLES", "coordonnees_gps": [49.1267066474, 0.462557937493]}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6edf37b229ba02780277ea9cfcf2b6c7fc2f28", "fields": {"code_postal": "27230", "code_commune_insee": "27106", "libell_d_acheminement": "BOURNAINVILLE FAVEROLLES", "ligne_5": "FAVEROLLES LES MARES", "nom_de_la_commune": "BOURNAINVILLE FAVEROLLES", "coordonnees_gps": [49.1267066474, 0.462557937493]}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0fd26a542b5b2de99123180eceeea1f00d2713", "fields": {"code_postal": "27160", "code_commune_insee": "27112", "libell_d_acheminement": "BRETEUIL", "ligne_5": "CINTRAY", "nom_de_la_commune": "BRETEUIL", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e262377d097610341d9b52f3bebb554a32b01a9", "fields": {"nom_de_la_commune": "BREUILPONT", "libell_d_acheminement": "BREUILPONT", "code_postal": "27640", "coordonnees_gps": [48.9602482824, 1.4448225375], "code_commune_insee": "27114"}, "geometry": {"type": "Point", "coordinates": [1.4448225375, 48.9602482824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84d2097cf159590e7fb3ad598549ec5bfd3cff1", "fields": {"nom_de_la_commune": "CAPELLE LES GRANDS", "libell_d_acheminement": "CAPELLE LES GRANDS", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27130"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1eca988f253e17a92ea88f592c5f260e4d24a1", "fields": {"nom_de_la_commune": "CAUGE", "libell_d_acheminement": "CAUGE", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27132"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6435ad107bd3882a74804d38e3b0ffa304082cdb", "fields": {"code_postal": "27270", "code_commune_insee": "27138", "libell_d_acheminement": "CHAMBLAC", "ligne_5": "BOSC MOREL", "nom_de_la_commune": "CHAMBLAC", "coordonnees_gps": [49.0109875811, 0.530997676834]}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d0938e08c64d8f952ed76f02622c2ca14063a0", "fields": {"nom_de_la_commune": "CHAMBORD", "libell_d_acheminement": "CHAMBORD", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27139"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d503f41345d269ab47198e83a5ab51a8dfc76c7", "fields": {"nom_de_la_commune": "LA CHAPELLE GAUTHIER", "libell_d_acheminement": "LA CHAPELLE GAUTHIER", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27148"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99390463da2a4a0bda30147e98235b4d5c825a67", "fields": {"nom_de_la_commune": "CHATEAU SUR EPTE", "libell_d_acheminement": "CHATEAU SUR EPTE", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27152"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9d25ff925dbc8bad9de550d096358499fb5628", "fields": {"nom_de_la_commune": "CHAUVINCOURT PROVEMONT", "libell_d_acheminement": "CHAUVINCOURT PROVEMONT", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27153"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8c0a002cb05612fed8ac9f39d349c2319a8c39b", "fields": {"nom_de_la_commune": "CHERONVILLIERS", "libell_d_acheminement": "CHERONVILLIERS", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27156"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a46adb7dcda1527eaf6eb1ad9b80fac2d964fd", "fields": {"code_postal": "27160", "code_commune_insee": "27157", "libell_d_acheminement": "MARBOIS", "ligne_5": "ST DENIS DU BEHELAN", "nom_de_la_commune": "MARBOIS", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa7889484c11233a41788a5fccec136fb2a102b", "fields": {"code_postal": "27240", "code_commune_insee": "27157", "libell_d_acheminement": "MARBOIS", "ligne_5": "CHANTELOUP", "nom_de_la_commune": "MARBOIS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f588350f04ccd1246e28920e9f6d1b4944327b96", "fields": {"nom_de_la_commune": "CIERREY", "libell_d_acheminement": "CIERREY", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27158"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0a18d244da46487bb3762fc3997629a3ed66ad", "fields": {"nom_de_la_commune": "LE CORMIER", "libell_d_acheminement": "LE CORMIER", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27171"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "744075133d929e1fc9a95091c844841a66300597", "fields": {"nom_de_la_commune": "CORNEVILLE LA FOUQUETIERE", "libell_d_acheminement": "CORNEVILLE LA FOUQUETIERE", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27173"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "322c4b33728325d15f0bb005e3e0ec7c499b0b3d", "fields": {"nom_de_la_commune": "COUDRAY", "libell_d_acheminement": "COUDRAY", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27176"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52dd1a8a601bea77280b3ed7a2f521315ebe4ae7", "fields": {"nom_de_la_commune": "CRESTOT", "libell_d_acheminement": "CRESTOT", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27185"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bdd4fe0f4407a378ca81fd7422b8eb83071e8c4", "fields": {"nom_de_la_commune": "CRIQUEBEUF SUR SEINE", "libell_d_acheminement": "CRIQUEBEUF SUR SEINE", "code_postal": "27340", "coordonnees_gps": [49.282400174, 1.11419041631], "code_commune_insee": "27188"}, "geometry": {"type": "Point", "coordinates": [1.11419041631, 49.282400174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8acee77b998bd873f3be393b40d1706d07e607c4", "fields": {"nom_de_la_commune": "LA CROISILLE", "libell_d_acheminement": "LA CROISILLE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27189"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f108dd9afeb934e18d70dd6f7328b5b76edc85e7", "fields": {"code_postal": "27490", "code_commune_insee": "27191", "libell_d_acheminement": "CLEF VALLEE D EURE", "ligne_5": "ECARDENVILLE SUR EURE", "nom_de_la_commune": "CLEF VALLEE D EURE", "coordonnees_gps": [49.1112180044, 1.26339750484]}, "geometry": {"type": "Point", "coordinates": [1.26339750484, 49.1112180044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c828710bf85d32bd05bbbdbcd7184055e61300a", "fields": {"nom_de_la_commune": "DOUAINS", "libell_d_acheminement": "DOUAINS", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27203"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e03b307785cef33e317484c70bcef75282f52467", "fields": {"nom_de_la_commune": "DOUDEAUVILLE EN VEXIN", "libell_d_acheminement": "DOUDEAUVILLE EN VEXIN", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27204"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53ac6a251c96c491f6e6ba8c2eb9388efba0eb8a", "fields": {"nom_de_la_commune": "DOUVILLE SUR ANDELLE", "libell_d_acheminement": "DOUVILLE SUR ANDELLE", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27205"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd348cf78ed868a6a73494f46383c9e061b7ec52", "fields": {"code_postal": "27320", "code_commune_insee": "27206", "libell_d_acheminement": "DROISY", "ligne_5": "PANLATTE", "nom_de_la_commune": "DROISY", "coordonnees_gps": [48.803702003, 1.19395665858]}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b72103586ae338563fd702ae3164f39b909f6ae", "fields": {"nom_de_la_commune": "ECARDENVILLE LA CAMPAGNE", "libell_d_acheminement": "ECARDENVILLE LA CAMPAGNE", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27210"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5951e7c85c847fee07e24a5cce4d98184306b93e", "fields": {"code_postal": "27510", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "TOURNY", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1509982632, 1.53002426085]}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cf6d36bea0d75f5e66c7982b32a50b1685cbf0f", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "BERTHENONVILLE", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c87b160f6366b24846674e1dc3d10cee1f93a445", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "DAMPSMESNIL", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7db86fa7d02ef49d3a7ce679ff221ce482253a36", "fields": {"nom_de_la_commune": "ECOUIS", "libell_d_acheminement": "ECOUIS", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27214"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "589f479f87acc651d3b708027a8b2563f088974f", "fields": {"nom_de_la_commune": "ECQUETOT", "libell_d_acheminement": "ECQUETOT", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27215"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6b317173be63b4efb609be5f876c6efeafeac8", "fields": {"nom_de_la_commune": "EMANVILLE", "libell_d_acheminement": "EMANVILLE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27217"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac502e2d55ae74383b673dbcb545985701b3d9dc", "fields": {"nom_de_la_commune": "EPIEDS", "libell_d_acheminement": "EPIEDS", "code_postal": "27730", "coordonnees_gps": [48.932997523, 1.41949136051], "code_commune_insee": "27220"}, "geometry": {"type": "Point", "coordinates": [1.41949136051, 48.932997523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ef3755d0bd81b5e252325ea245c0606dc109e3", "fields": {"nom_de_la_commune": "EPREVILLE EN LIEUVIN", "libell_d_acheminement": "EPREVILLE EN LIEUVIN", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27222"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9edd1feda26e22f5354fde01eac07b1cdeed5a", "fields": {"nom_de_la_commune": "ETREPAGNY", "libell_d_acheminement": "ETREPAGNY", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27226"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1472413a856da2394cb37d00ab0dbbc51d56ee5b", "fields": {"nom_de_la_commune": "EVREUX", "libell_d_acheminement": "EVREUX", "code_postal": "27000", "coordonnees_gps": [49.0199173611, 1.14145974873], "code_commune_insee": "27229"}, "geometry": {"type": "Point", "coordinates": [1.14145974873, 49.0199173611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c1ab172dffc3243e2b46821ac6eada875013f26", "fields": {"nom_de_la_commune": "FAUVILLE", "libell_d_acheminement": "FAUVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27234"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e46b7cda9e5bbb9ec9435144450c4c4ed293bbbd", "fields": {"nom_de_la_commune": "FERRIERES ST HILAIRE", "libell_d_acheminement": "FERRIERES ST HILAIRE", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27239"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8004aafd0ff1e17b44a9a469dd6324931915fd6", "fields": {"nom_de_la_commune": "FEUGUEROLLES", "libell_d_acheminement": "FEUGUEROLLES", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27241"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e08c69863dc9935cc4bfa0f29a915dc48554dbf", "fields": {"nom_de_la_commune": "FIQUEFLEUR EQUAINVILLE", "libell_d_acheminement": "FIQUEFLEUR EQUAINVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27243"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57db93c08cd35c3f960b030e6f4d05e879c46658", "fields": {"nom_de_la_commune": "FLEURY LA FORET", "libell_d_acheminement": "FLEURY LA FORET", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27245"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0735edd9aaf377351043c1ab7b410db6498064f4", "fields": {"nom_de_la_commune": "FLIPOU", "libell_d_acheminement": "FLIPOU", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27247"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07952903258dd0bbc7cf927bd20deff3ac65997b", "fields": {"nom_de_la_commune": "FONTAINE LA LOUVET", "libell_d_acheminement": "FONTAINE LA LOUVET", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27252"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be28f477eb10db642df5c5dd1a6432d28b0b06b5", "fields": {"nom_de_la_commune": "FOUCRAINVILLE", "libell_d_acheminement": "FOUCRAINVILLE", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27259"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f482d120747f7acaeb5c316eda0dde97914ce7c6", "fields": {"nom_de_la_commune": "FOURMETOT", "libell_d_acheminement": "FOURMETOT", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27263"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21bf2f8f92455771716aa6f9cda5fc473fee4054", "fields": {"nom_de_la_commune": "IGON", "libell_d_acheminement": "IGON", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64270"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153a4aa9cf139f86011e059a8f1e2f25f7b99b7a", "fields": {"nom_de_la_commune": "ISSOR", "libell_d_acheminement": "ISSOR", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64276"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5427b6d4a5692f3f5b3992154f54172b6c03d293", "fields": {"nom_de_la_commune": "ITXASSOU", "libell_d_acheminement": "ITXASSOU", "code_postal": "64250", "coordonnees_gps": [43.3249246789, -1.42953644285], "code_commune_insee": "64279"}, "geometry": {"type": "Point", "coordinates": [-1.42953644285, 43.3249246789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a94d0f1d14bb0e27622d9cd0417570ff6b05e320", "fields": {"nom_de_la_commune": "LAA MONDRANS", "libell_d_acheminement": "LAA MONDRANS", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64286"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d29b289ce7f7c9b0e496fdb794684d36b91535", "fields": {"nom_de_la_commune": "LA BASTIDE CLAIRENCE", "libell_d_acheminement": "LA BASTIDE CLAIRENCE", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64289"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb5cc50f4edb67fcb7638929d290dec14c96abb", "fields": {"nom_de_la_commune": "LABASTIDE MONREJEAU", "libell_d_acheminement": "LABASTIDE MONREJEAU", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64290"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab7ca2865bf1a07f519bba2e9a69050f3777981", "fields": {"nom_de_la_commune": "LAHONCE", "libell_d_acheminement": "LAHONCE", "code_postal": "64990", "coordonnees_gps": [43.4632822407, -1.40781223333], "code_commune_insee": "64304"}, "geometry": {"type": "Point", "coordinates": [-1.40781223333, 43.4632822407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c124789d6620f4da7c35b7dbe394fba9b2bca71a", "fields": {"nom_de_la_commune": "LANTABAT", "libell_d_acheminement": "LANTABAT", "code_postal": "64640", "coordonnees_gps": [43.2945597226, -1.18265900805], "code_commune_insee": "64313"}, "geometry": {"type": "Point", "coordinates": [-1.18265900805, 43.2945597226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b445a0e5c7057fa6f14ffc857fe476dd8da67911", "fields": {"nom_de_la_commune": "LAROIN", "libell_d_acheminement": "LAROIN", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64315"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9276e786e9c508e897f01639ff29fd3d8fe46e1", "fields": {"nom_de_la_commune": "LARRAU", "libell_d_acheminement": "LARRAU", "code_postal": "64560", "coordonnees_gps": [43.0084914097, -0.920619929244], "code_commune_insee": "64316"}, "geometry": {"type": "Point", "coordinates": [-0.920619929244, 43.0084914097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28289ab0fb824a3f6307e3f3520be9d8534da855", "fields": {"nom_de_la_commune": "LARRIBAR SORHAPURU", "libell_d_acheminement": "LARRIBAR SORHAPURU", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64319"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84760e6296ec8972031a9be4e4d7dc4547ef8fc6", "fields": {"nom_de_la_commune": "LASCLAVERIES", "libell_d_acheminement": "LASCLAVERIES", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64321"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0bc961970aceea85902e945bdda1dd3cb867731", "fields": {"nom_de_la_commune": "LASSERRE", "libell_d_acheminement": "LASSERRE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64323"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d93174980944f7b3d716f47189b9f21d2250030", "fields": {"nom_de_la_commune": "LASSEUBE", "libell_d_acheminement": "LASSEUBE", "code_postal": "64290", "coordonnees_gps": [43.2158139133, -0.441474336827], "code_commune_insee": "64324"}, "geometry": {"type": "Point", "coordinates": [-0.441474336827, 43.2158139133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983d0fece833ca5a8afce6b907be469d95fa349b", "fields": {"nom_de_la_commune": "LEE", "libell_d_acheminement": "LEE", "code_postal": "64320", "coordonnees_gps": [43.2929999605, -0.293556943502], "code_commune_insee": "64329"}, "geometry": {"type": "Point", "coordinates": [-0.293556943502, 43.2929999605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51407c3d943efc7a1eda91608801befba926f503", "fields": {"nom_de_la_commune": "LEES ATHAS", "libell_d_acheminement": "LEES ATHAS", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64330"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36b896a72d2884dcaf0f6ab719c20168ae9e97f8", "fields": {"nom_de_la_commune": "LESPIELLE", "libell_d_acheminement": "LESPIELLE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64337"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79dc6b73a107bc529e3a7a5f45c5d8568b9bdcc8", "fields": {"nom_de_la_commune": "LOUHOSSOA", "libell_d_acheminement": "LOUHOSSOA", "code_postal": "64250", "coordonnees_gps": [43.3249246789, -1.42953644285], "code_commune_insee": "64350"}, "geometry": {"type": "Point", "coordinates": [-1.42953644285, 43.3249246789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdbe63ec60487fb7998d9a4a37b82ead4b9cd284", "fields": {"nom_de_la_commune": "LOURENTIES", "libell_d_acheminement": "LOURENTIES", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64352"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35c303796fa54ebad9a97a470fd18e2cb8497ced", "fields": {"nom_de_la_commune": "LOUVIE SOUBIRON", "libell_d_acheminement": "LOUVIE SOUBIRON", "code_postal": "64440", "coordonnees_gps": [42.9183295476, -0.395850195838], "code_commune_insee": "64354"}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d376264805b317ce8eb6d9945904c485b2f33c8e", "fields": {"nom_de_la_commune": "LUCARRE", "libell_d_acheminement": "LUCARRE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64357"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eef12a6f71b739565b7e90d2dd3987517c2f78a", "fields": {"nom_de_la_commune": "LUCGARIER", "libell_d_acheminement": "LUCGARIER", "code_postal": "64420", "coordonnees_gps": [43.2727772692, -0.18517685756], "code_commune_insee": "64358"}, "geometry": {"type": "Point", "coordinates": [-0.18517685756, 43.2727772692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "259df52ba432f5b277b513690ddb768dd24bf8ff", "fields": {"nom_de_la_commune": "MEHARIN", "libell_d_acheminement": "MEHARIN", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64375"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7174bc9e54ccc62f9d866b32dc20b0bf9e6b756", "fields": {"nom_de_la_commune": "MIREPEIX", "libell_d_acheminement": "MIREPEIX", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64386"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f6675ed8f01af72f90596e573b6a54d7a9eb1c", "fields": {"nom_de_la_commune": "MOMAS", "libell_d_acheminement": "MOMAS", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64387"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33016b2c241e549d0ee8563b4fbbe50de06ad47b", "fields": {"nom_de_la_commune": "MONCAUP", "libell_d_acheminement": "MONCAUP", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64390"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11eec9f70c157296cb07912d8e1abd289af7bed6", "fields": {"code_postal": "64300", "code_commune_insee": "64396", "libell_d_acheminement": "MONT", "ligne_5": "GOUZE", "nom_de_la_commune": "MONT", "coordonnees_gps": [43.4859974267, -0.75266936644]}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cea1113090fe770809a28fefa70bac2d2aa6432", "fields": {"code_postal": "64300", "code_commune_insee": "64396", "libell_d_acheminement": "MONT", "ligne_5": "LENDRESSE", "nom_de_la_commune": "MONT", "coordonnees_gps": [43.4859974267, -0.75266936644]}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb370afe14f79b74ae391fbb7e3fcf95f5feded", "fields": {"nom_de_la_commune": "MONTAGUT", "libell_d_acheminement": "MONTAGUT", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64397"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5631dca48801ba19a97d9a2c0dbb4fcce3e4aad0", "fields": {"nom_de_la_commune": "NABAS", "libell_d_acheminement": "NABAS", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64412"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a093af6fbd6eb3293d8acc9d3608e8ff83de3d28", "fields": {"nom_de_la_commune": "NARCASTET", "libell_d_acheminement": "NARCASTET", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64413"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f41c8ad1e029224fa2739c9eaba642a514b7ebe", "fields": {"nom_de_la_commune": "NARP", "libell_d_acheminement": "NARP", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64414"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cac6d76b9c12b66bc9daac7fc4022f23d9ce0aa9", "fields": {"nom_de_la_commune": "OLORON STE MARIE", "libell_d_acheminement": "OLORON STE MARIE", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64422"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b7a41dd69fd2ed1e1c6c8a9cfdebd26d0a98313", "fields": {"nom_de_la_commune": "OS MARSILLON", "libell_d_acheminement": "OS MARSILLON", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64431"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "884988027ad34e61b560243575b7e8d4866c39a3", "fields": {"nom_de_la_commune": "OSSES", "libell_d_acheminement": "OSSES", "code_postal": "64780", "coordonnees_gps": [43.2518666668, -1.28852003798], "code_commune_insee": "64436"}, "geometry": {"type": "Point", "coordinates": [-1.28852003798, 43.2518666668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d829bd857276cc17890d085b89c837989ec63b45", "fields": {"nom_de_la_commune": "OUILLON", "libell_d_acheminement": "OUILLON", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64438"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5071f985a5c2a36d43cb8f07e4dd6c98459860f", "fields": {"code_postal": "64300", "code_commune_insee": "64440", "libell_d_acheminement": "OZENX MONTESTRUCQ", "ligne_5": "MONTESTRUCQ", "nom_de_la_commune": "OZENX MONTESTRUCQ", "coordonnees_gps": [43.4859974267, -0.75266936644]}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030894983343a4e31be2d58c17ef2035b24f4e1d", "fields": {"nom_de_la_commune": "PARBAYSE", "libell_d_acheminement": "PARBAYSE", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64442"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b265d4af3c004dd23b5e8ad1a5d7d9154b636ee3", "fields": {"nom_de_la_commune": "PARDIES", "libell_d_acheminement": "PARDIES", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64443"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdcfc6960feeab96c676d045fdb47889009713c4", "fields": {"nom_de_la_commune": "PARDIES PIETAT", "libell_d_acheminement": "PARDIES PIETAT", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64444"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22893c778225cd80bf0548830e7dee51c875855c", "fields": {"nom_de_la_commune": "POEY DE LESCAR", "libell_d_acheminement": "POEY DE LESCAR", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64448"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da6d435f86dead5c752eaa2908428b11c7736482", "fields": {"nom_de_la_commune": "POEY D OLORON", "libell_d_acheminement": "POEY D OLORON", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64449"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1e380058933778cc2f676b89877ed88f8efb79e", "fields": {"nom_de_la_commune": "POMPS", "libell_d_acheminement": "POMPS", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64450"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e71287a1e6abd6d27177a919fb271b867aeff4", "fields": {"nom_de_la_commune": "PONTACQ", "libell_d_acheminement": "PONTACQ", "code_postal": "64530", "coordonnees_gps": [43.2249813189, -0.0930410318434], "code_commune_insee": "64453"}, "geometry": {"type": "Point", "coordinates": [-0.0930410318434, 43.2249813189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe64a0bbef53c0c80ef9c1a04e5232c385a14b8c", "fields": {"nom_de_la_commune": "PORTET", "libell_d_acheminement": "PORTET", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64455"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aff0bca366fdbafa89964afd5b8d3c48b692e90", "fields": {"nom_de_la_commune": "PRECHACQ JOSBAIG", "libell_d_acheminement": "PRECHACQ JOSBAIG", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64458"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd42fe759a38966ccd990ef0c576615c93a9375", "fields": {"nom_de_la_commune": "PRECILHON", "libell_d_acheminement": "PRECILHON", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64460"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcd5596d358ecdd7d30d0e648bc85b6dd02c9bee", "fields": {"nom_de_la_commune": "ST JEAN LE VIEUX", "libell_d_acheminement": "ST JEAN LE VIEUX", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64484"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbf9eec6e92cba1d3f853d80fd69e41406c52fa5", "fields": {"nom_de_la_commune": "ST LAURENT BRETAGNE", "libell_d_acheminement": "ST LAURENT BRETAGNE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64488"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e0283cd53078fbac5344824836aad7b1948ba5b", "fields": {"code_postal": "64780", "code_commune_insee": "64490", "libell_d_acheminement": "ST MARTIN D ARROSSA", "ligne_5": "EYHARCE", "nom_de_la_commune": "ST MARTIN D ARROSSA", "coordonnees_gps": [43.2518666668, -1.28852003798]}, "geometry": {"type": "Point", "coordinates": [-1.28852003798, 43.2518666668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a1a634353e4558a35b3dfa97764dc529a62f2ac", "fields": {"nom_de_la_commune": "ST PE DE LEREN", "libell_d_acheminement": "ST PE DE LEREN", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64494"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c6613e240575c7de5f4ceffba8dd17de87dfba", "fields": {"nom_de_la_commune": "SARE", "libell_d_acheminement": "SARE", "code_postal": "64310", "coordonnees_gps": [43.3310114321, -1.57798494011], "code_commune_insee": "64504"}, "geometry": {"type": "Point", "coordinates": [-1.57798494011, 43.3310114321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3834b22a8b9f0760a5a25ae07d00d7d13121055e", "fields": {"nom_de_la_commune": "SAUGUIS ST ETIENNE", "libell_d_acheminement": "SAUGUIS ST ETIENNE", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64509"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01b5261ed4423b8527811ea062f98f34485d5f09", "fields": {"nom_de_la_commune": "SAUVELADE", "libell_d_acheminement": "SAUVELADE", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64512"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee0e55a95789bab68370ab6a92c54272f6577a6", "fields": {"nom_de_la_commune": "SEDZERE", "libell_d_acheminement": "SEDZERE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64516"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe8061b6b5dd52a78676a58c07b957303ff123d", "fields": {"nom_de_la_commune": "SERRES CASTET", "libell_d_acheminement": "SERRES CASTET", "code_postal": "64121", "coordonnees_gps": [43.3744840703, -0.360649842096], "code_commune_insee": "64519"}, "geometry": {"type": "Point", "coordinates": [-0.360649842096, 43.3744840703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52567648dc1eee28fd3819b983dc3cea06ffe9c2", "fields": {"nom_de_la_commune": "SUS", "libell_d_acheminement": "SUS", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64529"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad8d498705ce56debd6728507ba98357d9685917", "fields": {"nom_de_la_commune": "TABAILLE USQUAIN", "libell_d_acheminement": "TABAILLE USQUAIN", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64531"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2330596f149430a50cdc27c86a467652816c6032", "fields": {"nom_de_la_commune": "UHART CIZE", "libell_d_acheminement": "UHART CIZE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64538"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3760b26cbb6779c32326503b450a756dad721948", "fields": {"nom_de_la_commune": "UHART MIXE", "libell_d_acheminement": "UHART MIXE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64539"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9418abe759bf9c2631fa92a0cdc2f86f61b67b", "fields": {"nom_de_la_commune": "VIALER", "libell_d_acheminement": "VIALER", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64552"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a97f8043082bd7d293bd4bb60063d88cc2d20e8e", "fields": {"code_postal": "65240", "code_commune_insee": "65003", "libell_d_acheminement": "ADERVIELLE POUCHERGUES", "ligne_5": "POUCHERGUES", "nom_de_la_commune": "ADERVIELLE POUCHERGUES", "coordonnees_gps": [42.8315711949, 0.385912028349]}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f7d6ef4e3f21d4c85321ce76d52243ea125fb81", "fields": {"nom_de_la_commune": "ALLIER", "libell_d_acheminement": "ALLIER", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65005"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06b4ed53d05ddab4d26b68f734ebf52b603fb8c7", "fields": {"nom_de_la_commune": "ANCIZAN", "libell_d_acheminement": "ANCIZAN", "code_postal": "65440", "coordonnees_gps": [42.8992933799, 0.284053149323], "code_commune_insee": "65006"}, "geometry": {"type": "Point", "coordinates": [0.284053149323, 42.8992933799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6461fa81ca38f7fdeb18ea408fb80f1b2269aea", "fields": {"nom_de_la_commune": "ANERES", "libell_d_acheminement": "ANERES", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65009"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769a9885b0802f1958cfba2892a4e935597c01ec", "fields": {"nom_de_la_commune": "ANTIST", "libell_d_acheminement": "ANTIST", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65016"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71184fff9b717d7ebf8c795dc5f207a210ec07e", "fields": {"nom_de_la_commune": "ARCIZAC ADOUR", "libell_d_acheminement": "ARCIZAC ADOUR", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65019"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e10d381d817d97985ca426483b3316f49eb5943", "fields": {"nom_de_la_commune": "ARCIZAC EZ ANGLES", "libell_d_acheminement": "ARCIZAC EZ ANGLES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65020"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3a48bc1ca3dbad8f1d3c185df3de75a3688dbc", "fields": {"nom_de_la_commune": "ARGELES BAGNERES", "libell_d_acheminement": "ARGELES BAGNERES", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65024"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57ea5914725c29e3ff5e2c326ce6076c5c35432", "fields": {"nom_de_la_commune": "ARRODETS", "libell_d_acheminement": "ARRODETS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65034"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23a39f3a678a60868ff463179f1164ba5ca99f0", "fields": {"nom_de_la_commune": "ARTALENS SOUIN", "libell_d_acheminement": "ARTALENS SOUIN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65036"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e12cc86de628f899d35082cfc0b5db27fa7e772", "fields": {"nom_de_la_commune": "AVEZAC PRAT LAHITTE", "libell_d_acheminement": "AVEZAC PRAT LAHITTE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65054"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93fce9ccbb51ec7cdea9a2c759041cf9cbb0d789", "fields": {"nom_de_la_commune": "AYROS ARBOUIX", "libell_d_acheminement": "AYROS ARBOUIX", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65055"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64500f7b5f9d02b0ba3e1fdf935cbae681eaa052", "fields": {"nom_de_la_commune": "BANIOS", "libell_d_acheminement": "BANIOS", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65060"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c46b9d61bf440420570a105027f5a2811df2d907", "fields": {"nom_de_la_commune": "BAREILLES", "libell_d_acheminement": "BAREILLES", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65064"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc55bb05626051aeab70b3623ee36bacdbc3bbb", "fields": {"nom_de_la_commune": "BAZET", "libell_d_acheminement": "BAZET", "code_postal": "65460", "coordonnees_gps": [43.2812999777, 0.0852833295183], "code_commune_insee": "65072"}, "geometry": {"type": "Point", "coordinates": [0.0852833295183, 43.2812999777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfc79681d1b7f70c4f1cfb2a8ea6d2ff2cf6f349", "fields": {"nom_de_la_commune": "BAZORDAN", "libell_d_acheminement": "BAZORDAN", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65074"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca9849f2ba2df508597fd3199a35e07d0de8ad5f", "fields": {"nom_de_la_commune": "BAZUS AURE", "libell_d_acheminement": "BAZUS AURE", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65075"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70a8fe7a7731fbda4f135016acf4a4c0609d3d7e", "fields": {"nom_de_la_commune": "BAZUS NESTE", "libell_d_acheminement": "BAZUS NESTE", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65076"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c774d504cabd4a6dd29d85dd964b080feed667f", "fields": {"nom_de_la_commune": "BENAC", "libell_d_acheminement": "BENAC", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65080"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c21c0406c222e0fb38a88524306687ddb2c33571", "fields": {"nom_de_la_commune": "BERNAC DESSUS", "libell_d_acheminement": "BERNAC DESSUS", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65084"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2dce836fd99099f49b5282bdf50a15f5d2ab645", "fields": {"nom_de_la_commune": "BONNEFONT", "libell_d_acheminement": "BONNEFONT", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65095"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d22696026ba60d9206c5fce6a55a449ade6a3973", "fields": {"nom_de_la_commune": "BONREPOS", "libell_d_acheminement": "BONREPOS", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65097"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b87b63b8e8a95b4fe86172a7425185909fb11e2", "fields": {"code_postal": "65590", "code_commune_insee": "65099", "libell_d_acheminement": "BORDERES LOURON", "ligne_5": "ILHAN", "nom_de_la_commune": "BORDERES LOURON", "coordonnees_gps": [42.8710607597, 0.412551570718]}, "geometry": {"type": "Point", "coordinates": [0.412551570718, 42.8710607597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2d4d880ddab3a401b541d5cbb8a5c7375bd57e7", "fields": {"nom_de_la_commune": "BOUILH PEREUILH", "libell_d_acheminement": "BOUILH PEREUILH", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65103"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d004a6b374eeb1c3ffb5fef56d03e90939823f03", "fields": {"nom_de_la_commune": "BOURG DE BIGORRE", "libell_d_acheminement": "BOURG DE BIGORRE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65105"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e0da6b8d566e101ed9be5bde6f28660bb6efe13", "fields": {"nom_de_la_commune": "CASTELNAU RIVIERE BASSE", "libell_d_acheminement": "CASTELNAU RIVIERE BASSE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65130"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c5a9df68b1004a4ef56ba6d7c855917808a289f", "fields": {"nom_de_la_commune": "CASTERETS", "libell_d_acheminement": "CASTERETS", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65134"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc0961a38ce913b21d57b299b5b892693bae6d0d", "fields": {"nom_de_la_commune": "CAUBOUS", "libell_d_acheminement": "CAUBOUS", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65136"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5a5f8f62b3839b0dae5b2e7d514072a114d7a9", "fields": {"nom_de_la_commune": "CIEUTAT", "libell_d_acheminement": "CIEUTAT", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65147"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c600f043ceeecc687da4d6db06108aaf5614b420", "fields": {"nom_de_la_commune": "CRECHETS", "libell_d_acheminement": "CRECHETS", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65154"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ae4aefb00e7254424711c490ac4afbf74f79bc", "fields": {"nom_de_la_commune": "DEVEZE", "libell_d_acheminement": "DEVEZE", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65155"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68e5037185e491157f2f2d71179b954edb233c2f", "fields": {"nom_de_la_commune": "ESCAUNETS", "libell_d_acheminement": "ESCAUNETS", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65160"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab166f8af17cb90fd2113eadcdd028747f3b72bc", "fields": {"nom_de_la_commune": "ESCOUBES POUTS", "libell_d_acheminement": "ESCOUBES POUTS", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65164"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42932aa351a5df1f58b686727bf3e118d0e9478c", "fields": {"nom_de_la_commune": "ESPIEILH", "libell_d_acheminement": "ESPIEILH", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65167"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba35a2e9cb2aa24c7ad5236d55cdee21fac7fe7e", "fields": {"nom_de_la_commune": "ESTAMPURES", "libell_d_acheminement": "ESTAMPURES", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65170"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "163f1054877bf81e21a0a7a296a62f978af79b61", "fields": {"nom_de_la_commune": "ESTARVIELLE", "libell_d_acheminement": "ESTARVIELLE", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65171"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a99d2c4ff3b891a90e186d2dd308bd420e4e1eb", "fields": {"nom_de_la_commune": "ESTIRAC", "libell_d_acheminement": "ESTIRAC", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65174"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf5fb36ee2f2f6496aaa5e2a0b1c3f69361916ca", "fields": {"nom_de_la_commune": "FRECHET AURE", "libell_d_acheminement": "FRECHET AURE", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65180"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f5cf54b0952aff3d41010d552d498e97755a33", "fields": {"nom_de_la_commune": "FRECHOU FRECHET", "libell_d_acheminement": "FRECHOU FRECHET", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65181"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae95f00a53b6cb9f157de4c1c328cd089eecc437", "fields": {"nom_de_la_commune": "VILLENEUVE DE LA RAHO", "libell_d_acheminement": "VILLENEUVE DE LA RAHO", "code_postal": "66180", "coordonnees_gps": [42.6398795386, 2.9103777475], "code_commune_insee": "66227"}, "geometry": {"type": "Point", "coordinates": [2.9103777475, 42.6398795386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb6cd60b001c8e84cca855184b80cca23840e3da", "fields": {"nom_de_la_commune": "VIRA", "libell_d_acheminement": "VIRA", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66232"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5673bb5ce065eb1e3e2ca4e24b0444030ad39b", "fields": {"nom_de_la_commune": "VIVES", "libell_d_acheminement": "VIVES", "code_postal": "66490", "coordonnees_gps": [42.5223497938, 2.78118948745], "code_commune_insee": "66233"}, "geometry": {"type": "Point", "coordinates": [2.78118948745, 42.5223497938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdba1ea486d8af7b7f72b23f1a3a0a1388137662", "fields": {"nom_de_la_commune": "ACHENHEIM", "libell_d_acheminement": "ACHENHEIM", "code_postal": "67204", "coordonnees_gps": [48.5799762459, 7.62595300588], "code_commune_insee": "67001"}, "geometry": {"type": "Point", "coordinates": [7.62595300588, 48.5799762459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb8c60f38a58d93ed611ba0beb458b65acf62c7", "fields": {"nom_de_la_commune": "ANDLAU", "libell_d_acheminement": "ANDLAU", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67010"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4512453531e1cfa5f7d87978ca78777e9a12d57", "fields": {"nom_de_la_commune": "AUENHEIM", "libell_d_acheminement": "AUENHEIM", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67014"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ba67a3a6241a8baf71c994d033e6eefbe37861", "fields": {"nom_de_la_commune": "AVOLSHEIM", "libell_d_acheminement": "AVOLSHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67016"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdadc0bee9e2e1703680f279def5fec2a4d3a9f0", "fields": {"nom_de_la_commune": "BALBRONN", "libell_d_acheminement": "BALBRONN", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67018"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "315051c09ffba871ab158343e5f9579fd05c7f9f", "fields": {"nom_de_la_commune": "BASSEMBERG", "libell_d_acheminement": "BASSEMBERG", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67022"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a763d6fcc23bd05cc7196df9f036f60bcfbb9253", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67027"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553fb9ed0b6ca1866c1a9fa4240574ef468b31ed", "fields": {"code_postal": "67370", "code_commune_insee": "67034", "libell_d_acheminement": "BERSTETT", "ligne_5": "REITWILLER", "nom_de_la_commune": "BERSTETT", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b3e29e97a1befd0f429793a0be999b05b8d41e", "fields": {"nom_de_la_commune": "BIETLENHEIM", "libell_d_acheminement": "BIETLENHEIM", "code_postal": "67720", "coordonnees_gps": [48.7056122798, 7.80812947302], "code_commune_insee": "67038"}, "geometry": {"type": "Point", "coordinates": [7.80812947302, 48.7056122798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad09894ede523568ac53e40ae99927fc735c24b8", "fields": {"nom_de_la_commune": "BILWISHEIM", "libell_d_acheminement": "BILWISHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67039"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca59f8a430e7c79f3b1b75591b60dbe3a7c8d9d", "fields": {"nom_de_la_commune": "BISCHOFFSHEIM", "libell_d_acheminement": "BISCHOFFSHEIM", "code_postal": "67870", "coordonnees_gps": [48.4894170469, 7.52737448291], "code_commune_insee": "67045"}, "geometry": {"type": "Point", "coordinates": [7.52737448291, 48.4894170469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c431c79a6dd404306a188826ccec3018e5dd02e0", "fields": {"nom_de_la_commune": "BITSCHHOFFEN", "libell_d_acheminement": "BITSCHHOFFEN", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67048"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9f9eab2f2cddf6b82a7444b5aae702b932a43a8", "fields": {"nom_de_la_commune": "BLAESHEIM", "libell_d_acheminement": "BLAESHEIM", "code_postal": "67113", "coordonnees_gps": [48.5021364494, 7.60884342111], "code_commune_insee": "67049"}, "geometry": {"type": "Point", "coordinates": [7.60884342111, 48.5021364494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9273698a6d8722e277e52e9869eb3731c49e79bd", "fields": {"nom_de_la_commune": "BOOFZHEIM", "libell_d_acheminement": "BOOFZHEIM", "code_postal": "67860", "coordonnees_gps": [48.3174289749, 7.68184154693], "code_commune_insee": "67055"}, "geometry": {"type": "Point", "coordinates": [7.68184154693, 48.3174289749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72fc77307103746fc417643c9032c9f944ba7740", "fields": {"code_postal": "67420", "code_commune_insee": "67059", "libell_d_acheminement": "BOURG BRUCHE", "ligne_5": "BOURG", "nom_de_la_commune": "BOURG BRUCHE", "coordonnees_gps": [48.3874894068, 7.1481297444]}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "871ce00e582a2fbc436eb6258e267dcffc125de8", "fields": {"nom_de_la_commune": "BOURGHEIM", "libell_d_acheminement": "BOURGHEIM", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67060"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b74e1df7aba04041908be9f830a43917e18c16d6", "fields": {"nom_de_la_commune": "BOUXWILLER", "libell_d_acheminement": "BOUXWILLER", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67061"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3ba934c296adeaab45c3e54f51389033f8ead3", "fields": {"code_postal": "67330", "code_commune_insee": "67061", "libell_d_acheminement": "BOUXWILLER", "ligne_5": "IMBSHEIM", "nom_de_la_commune": "BOUXWILLER", "coordonnees_gps": [48.8220828424, 7.43331239388]}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c08c32835d1c33cca50bc55448e94e6a5b750c9", "fields": {"nom_de_la_commune": "BREITENBACH", "libell_d_acheminement": "BREITENBACH", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67063"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff37527474575bca0f6523917cb882da3805eb13", "fields": {"nom_de_la_commune": "LA BROQUE", "libell_d_acheminement": "LA BROQUE", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67066"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ecfef596ee1c5b00b578efc167420fcadeca99b", "fields": {"code_postal": "67130", "code_commune_insee": "67066", "libell_d_acheminement": "LA BROQUE", "ligne_5": "FRECONRUPT", "nom_de_la_commune": "LA BROQUE", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f99db2207cb680cebf96d827ef494dd78662741e", "fields": {"code_postal": "67130", "code_commune_insee": "67066", "libell_d_acheminement": "LA BROQUE", "ligne_5": "WACQUENOUX", "nom_de_la_commune": "LA BROQUE", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f2ec055133ab82cb75004b4c8f3582ae244679", "fields": {"nom_de_la_commune": "CHATENOIS", "libell_d_acheminement": "CHATENOIS", "code_postal": "67730", "coordonnees_gps": [48.2803512075, 7.36339905958], "code_commune_insee": "67073"}, "geometry": {"type": "Point", "coordinates": [7.36339905958, 48.2803512075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af63e3abc08b39fd9e4c3b654bb2c2dc45c3fe1c", "fields": {"code_postal": "67160", "code_commune_insee": "67074", "libell_d_acheminement": "CLEEBOURG", "ligne_5": "BREMMELBACH", "nom_de_la_commune": "CLEEBOURG", "coordonnees_gps": [48.9935225292, 7.97087755177]}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b9c6579eb5946ac4a9513629318b1a8323685e9", "fields": {"nom_de_la_commune": "DAMBACH", "libell_d_acheminement": "DAMBACH", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67083"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a841305edc6111095f812a0e1fe7805d73aa4d9", "fields": {"nom_de_la_commune": "DANGOLSHEIM", "libell_d_acheminement": "DANGOLSHEIM", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67085"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6674feead9d6f12f8fc92462d49d56cfddd7aadd", "fields": {"nom_de_la_commune": "DAUBENSAND", "libell_d_acheminement": "DAUBENSAND", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67086"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19321c2f20c5b10b85b589a0bec8ccbf6f744be4", "fields": {"nom_de_la_commune": "DETTWILLER", "libell_d_acheminement": "DETTWILLER", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67089"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efa2c4f94e8e6c66cd188ee7bf36c446ccedb8ad", "fields": {"nom_de_la_commune": "DIEFFENBACH AU VAL", "libell_d_acheminement": "DIEFFENBACH AU VAL", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67092"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3018d3d5fa6bbbc41e7c453bc008622648eaa26a", "fields": {"nom_de_la_commune": "DIEFFENBACH LES WOERTH", "libell_d_acheminement": "DIEFFENBACH LES WOERTH", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67093"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e235ffa03696e99a4ab478bc5db9b7a6d42ae714", "fields": {"nom_de_la_commune": "DORLISHEIM", "libell_d_acheminement": "DORLISHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67101"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761ac0b74885711b5385cccf262b6fa45201e584", "fields": {"nom_de_la_commune": "DOSSENHEIM KOCHERSBERG", "libell_d_acheminement": "DOSSENHEIM KOCHERSBERG", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67102"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a96517a0aec7839f9c4732911c2de981f4ca18ec", "fields": {"nom_de_la_commune": "DOSSENHEIM SUR ZINSEL", "libell_d_acheminement": "DOSSENHEIM SUR ZINSEL", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67103"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb3f5b2c8524d6aff555bc3ab17a3538a47754b5", "fields": {"nom_de_la_commune": "ELSENHEIM", "libell_d_acheminement": "ELSENHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67121"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32bfccdc695b433626d10f059971d37ca1e3803f", "fields": {"nom_de_la_commune": "ENGWILLER", "libell_d_acheminement": "ENGWILLER", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67123"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8adda9985aa74bb7f3817447eb858cc443f835f1", "fields": {"nom_de_la_commune": "ERGERSHEIM", "libell_d_acheminement": "ERGERSHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67127"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ca521ba3833a136f406ee9adea73b2886828012", "fields": {"code_postal": "67640", "code_commune_insee": "67137", "libell_d_acheminement": "FEGERSHEIM", "ligne_5": "OHNHEIM", "nom_de_la_commune": "FEGERSHEIM", "coordonnees_gps": [48.4903746121, 7.67506089743]}, "geometry": {"type": "Point", "coordinates": [7.67506089743, 48.4903746121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "734800b670e95c7ca0578866cd96efb9b4c314cc", "fields": {"nom_de_la_commune": "FLEXBOURG", "libell_d_acheminement": "FLEXBOURG", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67139"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51c6cac59d87cefcb84088c34f002b9e5bc7dcb", "fields": {"nom_de_la_commune": "GAMBSHEIM", "libell_d_acheminement": "GAMBSHEIM", "code_postal": "67760", "coordonnees_gps": [48.6925787959, 7.8842333221], "code_commune_insee": "67151"}, "geometry": {"type": "Point", "coordinates": [7.8842333221, 48.6925787959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ff35e9768583d9d026ea61e2aaa4a6fd8410d1a", "fields": {"nom_de_la_commune": "GOERLINGEN", "libell_d_acheminement": "GOERLINGEN", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67159"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b1e960ecbdbd5adfb0edd3767a0d53257b86599", "fields": {"nom_de_la_commune": "GOERSDORF", "libell_d_acheminement": "GOERSDORF", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67160"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d51911e1cd8b469344541bcb7bc2fa068e2d1e8", "fields": {"nom_de_la_commune": "GRANDFONTAINE", "libell_d_acheminement": "GRANDFONTAINE", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67165"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "162893b892c8d6a7040ae4ece5192caa0d3b1865", "fields": {"nom_de_la_commune": "GRASSENDORF", "libell_d_acheminement": "GRASSENDORF", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67166"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74949e5d16fe63eb6cb9090fd2eb484e585a6ae8", "fields": {"code_postal": "67110", "code_commune_insee": "67176", "libell_d_acheminement": "GUNDERSHOFFEN", "ligne_5": "EBERBACH", "nom_de_la_commune": "GUNDERSHOFFEN", "coordonnees_gps": [48.9564241197, 7.64420401079]}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a597705abc7b13302bf4d0cf7ec55110e5ef94", "fields": {"nom_de_la_commune": "GUNSTETT", "libell_d_acheminement": "GUNSTETT", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67177"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa19e165084bca6919ca79c075fdf8fe7f315409", "fields": {"nom_de_la_commune": "HARSKIRCHEN", "libell_d_acheminement": "HARSKIRCHEN", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67183"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ba5d87bdc39188201ce18fadd3363787681bc8e", "fields": {"nom_de_la_commune": "HATTMATT", "libell_d_acheminement": "HATTMATT", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67185"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a3d0c902b7192c17a80386a5bf7c32fb69d693", "fields": {"nom_de_la_commune": "HEIDOLSHEIM", "libell_d_acheminement": "HEIDOLSHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67187"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74529fe855c4d4cde4458596bfa1126eb12a8377", "fields": {"nom_de_la_commune": "HEILIGENSTEIN", "libell_d_acheminement": "HEILIGENSTEIN", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67189"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7e6bf3db3b6320d9bb0fcf454a6c7281e1b2a3", "fields": {"nom_de_la_commune": "HENGWILLER", "libell_d_acheminement": "HENGWILLER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67190"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60db3d4055bafd401a5c8d4fa79ce6ca2d345de5", "fields": {"nom_de_la_commune": "HERRLISHEIM", "libell_d_acheminement": "HERRLISHEIM", "code_postal": "67850", "coordonnees_gps": [48.7239519575, 7.9191715322], "code_commune_insee": "67194"}, "geometry": {"type": "Point", "coordinates": [7.9191715322, 48.7239519575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca2ff6ef384b4a9ddce7358488b98e5d3231b8ac", "fields": {"nom_de_la_commune": "HINSINGEN", "libell_d_acheminement": "HINSINGEN", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67199"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7772c1944e0b0b94ec4157cf50799f0762c29b82", "fields": {"nom_de_la_commune": "HIRSCHLAND", "libell_d_acheminement": "HIRSCHLAND", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67201"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5381b63ad8fc7221008da10e26bccfedad6daf", "fields": {"nom_de_la_commune": "HOCHSTETT", "libell_d_acheminement": "HOCHSTETT", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67203"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4da2baaa4505dc544473483514d89062c8c90637", "fields": {"nom_de_la_commune": "HOENHEIM", "libell_d_acheminement": "HOENHEIM", "code_postal": "67800", "coordonnees_gps": [48.6226822047, 7.75647923551], "code_commune_insee": "67204"}, "geometry": {"type": "Point", "coordinates": [7.75647923551, 48.6226822047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b15f4230a829f6f37d47db4b15071505550dbc2", "fields": {"code_postal": "67250", "code_commune_insee": "67206", "libell_d_acheminement": "HOFFEN", "ligne_5": "LEITERSWILLER", "nom_de_la_commune": "HOFFEN", "coordonnees_gps": [48.9438844656, 7.88208962387]}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98c010c1025ae63484bb31d4e170136825fad0e4", "fields": {"nom_de_la_commune": "HOLTZHEIM", "libell_d_acheminement": "HOLTZHEIM", "code_postal": "67810", "coordonnees_gps": [48.5566076104, 7.64464812051], "code_commune_insee": "67212"}, "geometry": {"type": "Point", "coordinates": [7.64464812051, 48.5566076104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9283ef26e131f7b0add5ba5c28ebe1c6d8b1f912", "fields": {"nom_de_la_commune": "HUTTENDORF", "libell_d_acheminement": "HUTTENDORF", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67215"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ea306cd516c81484c043466a0d7e87e71b18f71", "fields": {"nom_de_la_commune": "JETTERSWILLER", "libell_d_acheminement": "JETTERSWILLER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67229"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb13f9fd0fe1989910758b78046ce312722ea540", "fields": {"code_postal": "67250", "code_commune_insee": "67254", "libell_d_acheminement": "KUTZENHAUSEN", "ligne_5": "OBERKUTZENHAUSEN", "nom_de_la_commune": "KUTZENHAUSEN", "coordonnees_gps": [48.9438844656, 7.88208962387]}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa384e73fcfab4430da25794bee949188a8dc7b7", "fields": {"nom_de_la_commune": "LAMPERTSLOCH", "libell_d_acheminement": "LAMPERTSLOCH", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67257"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3fcc65902db6e67132b2a261b06766753b279c0", "fields": {"nom_de_la_commune": "LOCHWILLER", "libell_d_acheminement": "LOCHWILLER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67272"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "664ee75660a7fb78ef6fd73e69b5f43b56ff060d", "fields": {"nom_de_la_commune": "MAENNOLSHEIM", "libell_d_acheminement": "MAENNOLSHEIM", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67279"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8ea081c914bfc43fc7da2d8def6f31eb1b2e509", "fields": {"nom_de_la_commune": "MATZENHEIM", "libell_d_acheminement": "MATZENHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67285"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "959ef87a1ff590c1d054fcd2b72ce116c0b95ce1", "fields": {"nom_de_la_commune": "MOMMENHEIM", "libell_d_acheminement": "MOMMENHEIM", "code_postal": "67670", "coordonnees_gps": [48.7613693186, 7.64473130495], "code_commune_insee": "67301"}, "geometry": {"type": "Point", "coordinates": [7.64473130495, 48.7613693186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff56181b16a4cac10fdcea7acd3a59fbb5caaa7", "fields": {"nom_de_la_commune": "MONSWILLER", "libell_d_acheminement": "MONSWILLER", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67302"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc756ed0dbaa526b16165bcf256716f318e48929", "fields": {"nom_de_la_commune": "MUNCHHAUSEN", "libell_d_acheminement": "MUNCHHAUSEN", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67308"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24da34d893b705df322f5fda905e2e644335e4b8", "fields": {"nom_de_la_commune": "MUTZENHOUSE", "libell_d_acheminement": "MUTZENHOUSE", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67312"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68cbc693d42ed0371bd26ae6a4189eabb827440a", "fields": {"nom_de_la_commune": "NORDHOUSE", "libell_d_acheminement": "NORDHOUSE", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67336"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d24f3beac9f810e052ecb212ebadc57f90ce382", "fields": {"nom_de_la_commune": "NOTHALTEN", "libell_d_acheminement": "NOTHALTEN", "code_postal": "67680", "coordonnees_gps": [48.3522236097, 7.46155942515], "code_commune_insee": "67337"}, "geometry": {"type": "Point", "coordinates": [7.46155942515, 48.3522236097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42b27258c949feb0073bb6fa41d9c3508fc37453", "fields": {"code_postal": "67660", "code_commune_insee": "67339", "libell_d_acheminement": "BETSCHDORF", "ligne_5": "REIMERSWILLER", "nom_de_la_commune": "BETSCHDORF", "coordonnees_gps": [48.8932955893, 7.92442100196]}, "geometry": {"type": "Point", "coordinates": [7.92442100196, 48.8932955893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6a7056c88237f9dfbb220c43a0642415b3380e5", "fields": {"nom_de_la_commune": "OBERHOFFEN SUR MODER", "libell_d_acheminement": "OBERHOFFEN SUR MODER", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67345"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9d8bd86a2c914138cdc592bdafad175620699da", "fields": {"code_postal": "67240", "code_commune_insee": "67345", "libell_d_acheminement": "OBERHOFFEN SUR MODER", "ligne_5": "CAMP D OBERHOFFEN", "nom_de_la_commune": "OBERHOFFEN SUR MODER", "coordonnees_gps": [48.7680189809, 7.86094825926]}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1486d16129167f7db0eb02ae9001294b3daa88d", "fields": {"code_postal": "67330", "code_commune_insee": "67347", "libell_d_acheminement": "OBERMODERN ZUTZENDORF", "ligne_5": "ZUTZENDORF", "nom_de_la_commune": "OBERMODERN ZUTZENDORF", "coordonnees_gps": [48.8220828424, 7.43331239388]}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbbd65bfb7f245df299db2e89c9098c63a64796", "fields": {"code_postal": "67160", "code_commune_insee": "67351", "libell_d_acheminement": "SEEBACH", "ligne_5": "NIEDERSEEBACH", "nom_de_la_commune": "SEEBACH", "coordonnees_gps": [48.9935225292, 7.97087755177]}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ad5a5c1fcd0f8dab848da73baabd067b0bb9b1", "fields": {"nom_de_la_commune": "OLWISHEIM", "libell_d_acheminement": "OLWISHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67361"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "037febe08bcd1eb3cd759ccf2836b5dadc04ee20", "fields": {"nom_de_la_commune": "OSTHOFFEN", "libell_d_acheminement": "OSTHOFFEN", "code_postal": "67990", "coordonnees_gps": [48.5903450304, 7.56134207926], "code_commune_insee": "67363"}, "geometry": {"type": "Point", "coordinates": [7.56134207926, 48.5903450304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876ca3c5279b69259ef91720f0ddfa7efc82f099", "fields": {"nom_de_la_commune": "LA PETITE PIERRE", "libell_d_acheminement": "LA PETITE PIERRE", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67371"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8007f8592354355793aa00154f4f87452179e2ed", "fields": {"code_postal": "67350", "code_commune_insee": "67372", "libell_d_acheminement": "VAL DE MODER", "ligne_5": "LA WALCK", "nom_de_la_commune": "VAL DE MODER", "coordonnees_gps": [48.8437239093, 7.60701636897]}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f13720d9e025957d7d3cba12f349a202d5a4438", "fields": {"code_postal": "67420", "code_commune_insee": "67377", "libell_d_acheminement": "PLAINE", "ligne_5": "POUTAY", "nom_de_la_commune": "PLAINE", "coordonnees_gps": [48.3874894068, 7.1481297444]}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa9d4944fa5f04d8cf996b2a8b6700a746c82333", "fields": {"nom_de_la_commune": "RHINAU", "libell_d_acheminement": "RHINAU", "code_postal": "67860", "coordonnees_gps": [48.3174289749, 7.68184154693], "code_commune_insee": "67397"}, "geometry": {"type": "Point", "coordinates": [7.68184154693, 48.3174289749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1668911fd685a25d6de46a5274f6a5f2427057c7", "fields": {"nom_de_la_commune": "RIMSDORF", "libell_d_acheminement": "RIMSDORF", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67401"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805be09efc67f3416ff9997d068a5676862bbf86", "fields": {"nom_de_la_commune": "ROPPENHEIM", "libell_d_acheminement": "ROPPENHEIM", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67409"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "958eee40a8be06d76c15a0b4230b66f26e3eff5e", "fields": {"nom_de_la_commune": "ROSSFELD", "libell_d_acheminement": "ROSSFELD", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67412"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fad80ac7c129952376033e55d9d828118725a4e", "fields": {"nom_de_la_commune": "ROTHBACH", "libell_d_acheminement": "ROTHBACH", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67415"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174d40f160a78d6992b4145ef9a674380fa44d1a", "fields": {"nom_de_la_commune": "SAASENHEIM", "libell_d_acheminement": "SAASENHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67422"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19b5bbc254903c3e5fe89ef955fd194962281bd4", "fields": {"nom_de_la_commune": "SAULXURES", "libell_d_acheminement": "SAULXURES", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67436"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19caa50ef1aec48bde5d347eda6fe85476cc03ab", "fields": {"nom_de_la_commune": "SCHALKENDORF", "libell_d_acheminement": "SCHALKENDORF", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67441"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3017c368832b686d35e4ead244b705b7cff99b6a", "fields": {"code_postal": "67130", "code_commune_insee": "67448", "libell_d_acheminement": "SCHIRMECK", "ligne_5": "WACKENBACH", "nom_de_la_commune": "SCHIRMECK", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "172cecffd1b989ee63a20749df1f544384e3ce38", "fields": {"code_postal": "67370", "code_commune_insee": "67452", "libell_d_acheminement": "SCHNERSHEIM", "ligne_5": "AVENHEIM", "nom_de_la_commune": "SCHNERSHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "899b0a244e29aeab073678160025a2a7c492ebb9", "fields": {"code_postal": "67370", "code_commune_insee": "67452", "libell_d_acheminement": "SCHNERSHEIM", "ligne_5": "KLEINFRANKENHEIM", "nom_de_la_commune": "SCHNERSHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0231ac719207485498326eccd4e24d8e994a04d0", "fields": {"nom_de_la_commune": "SCHOENENBOURG", "libell_d_acheminement": "SCHOENENBOURG", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67455"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1665b76f5be3cf6f44d93c474fe385f8b65d6cc", "fields": {"nom_de_la_commune": "SCHOPPERTEN", "libell_d_acheminement": "SCHOPPERTEN", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67456"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d007e21f96577634729bd70e6c4f56a14a3196", "fields": {"nom_de_la_commune": "SCHWINDRATZHEIM", "libell_d_acheminement": "SCHWINDRATZHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67460"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5852a11df1d1f21d8d4dbb2fbb300cd05960bf17", "fields": {"nom_de_la_commune": "SCHWOBSHEIM", "libell_d_acheminement": "SCHWOBSHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67461"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aaff22ee33eb2d736944cde79967a58b732482b", "fields": {"nom_de_la_commune": "SERMERSHEIM", "libell_d_acheminement": "SERMERSHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67464"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66875e55aa9f1137805f20b420496bc73ed9ddea", "fields": {"nom_de_la_commune": "SIEWILLER", "libell_d_acheminement": "SIEWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67467"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d077f3a37b0765a91051dd3f5862317675537c0", "fields": {"nom_de_la_commune": "DOMMARTIN LES TOUL", "libell_d_acheminement": "DOMMARTIN LES TOUL", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54167"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1022b18434ff30b7978e86f624aa630f88f8bf59", "fields": {"nom_de_la_commune": "DOMMARTIN SOUS AMANCE", "libell_d_acheminement": "DOMMARTIN SOUS AMANCE", "code_postal": "54770", "coordonnees_gps": [48.7569187312, 6.27788013157], "code_commune_insee": "54168"}, "geometry": {"type": "Point", "coordinates": [6.27788013157, 48.7569187312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b2b5e495ac184434679265b7962252bb109cfb7", "fields": {"nom_de_la_commune": "DOMPRIX", "libell_d_acheminement": "DOMPRIX", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54169"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5379467c5c30c42491cfe5f07217aeb94570f9e5", "fields": {"nom_de_la_commune": "DOMPTAIL EN L AIR", "libell_d_acheminement": "DOMPTAIL EN L AIR", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54170"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae162607628f2b9957b1277f31308e39cc41617b", "fields": {"nom_de_la_commune": "DONCOURT LES CONFLANS", "libell_d_acheminement": "DONCOURT LES CONFLANS", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54171"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89f19562dad34de8a001587c8c50ebdf48314a56", "fields": {"nom_de_la_commune": "ECROUVES", "libell_d_acheminement": "ECROUVES", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54174"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cee790e5adff4cf55113fdad24585cd151f2cc0", "fields": {"nom_de_la_commune": "EINVAUX", "libell_d_acheminement": "EINVAUX", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54175"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a862395618d44ae296c0709034146dd30189dc4c", "fields": {"nom_de_la_commune": "ERBEVILLER SUR AMEZULE", "libell_d_acheminement": "ERBEVILLER SUR AMEZULE", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54180"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d377347d947c0bbfd0aed46d9388c03f6d1cc3", "fields": {"nom_de_la_commune": "ESSEY LES NANCY", "libell_d_acheminement": "ESSEY LES NANCY", "code_postal": "54270", "coordonnees_gps": [48.7079752445, 6.232804092], "code_commune_insee": "54184"}, "geometry": {"type": "Point", "coordinates": [6.232804092, 48.7079752445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84975edfb8ab69472bb646d8ba03999196c566d3", "fields": {"nom_de_la_commune": "FAVIERES", "libell_d_acheminement": "FAVIERES", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54189"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "076b264d50b2481524caa7d797391a0691c7afd0", "fields": {"nom_de_la_commune": "FERRIERES", "libell_d_acheminement": "FERRIERES", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54192"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c2500c08a9152270e5de8d558ed847ed6497db", "fields": {"nom_de_la_commune": "FEY EN HAYE", "libell_d_acheminement": "FEY EN HAYE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54193"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f43d2a481b898721043b477dbe86bcbf5d5c873c", "fields": {"nom_de_la_commune": "FLIREY", "libell_d_acheminement": "FLIREY", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54200"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1bbeba185072ad4e19f59d19a045d3e8cac63b2", "fields": {"nom_de_la_commune": "FORCELLES SOUS GUGNEY", "libell_d_acheminement": "FORCELLES SOUS GUGNEY", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54204"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d78a77341331a9cb7776ffa18821ad2f55241474", "fields": {"nom_de_la_commune": "FREMONVILLE", "libell_d_acheminement": "FREMONVILLE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54211"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc1136be86e1522ca469ce75364c5342b2dcfed", "fields": {"nom_de_la_commune": "GERBECOURT ET HAPLEMONT", "libell_d_acheminement": "GERBECOURT ET HAPLEMONT", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54221"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569fed64daed89744f4aff429760767fe71f0d2e", "fields": {"nom_de_la_commune": "GIRAUMONT", "libell_d_acheminement": "GIRAUMONT", "code_postal": "54780", "coordonnees_gps": [49.1732943616, 5.91641313825], "code_commune_insee": "54227"}, "geometry": {"type": "Point", "coordinates": [5.91641313825, 49.1732943616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2ae010aa4f4e2e27f6bb8e22766a44bbf610a92", "fields": {"nom_de_la_commune": "GLONVILLE", "libell_d_acheminement": "GLONVILLE", "code_postal": "54122", "coordonnees_gps": [48.4830574623, 6.66436645475], "code_commune_insee": "54229"}, "geometry": {"type": "Point", "coordinates": [6.66436645475, 48.4830574623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0079454527d0c05ce4edb417997e1b7de3e4fa18", "fields": {"nom_de_la_commune": "GONDREVILLE", "libell_d_acheminement": "GONDREVILLE", "code_postal": "54840", "coordonnees_gps": [48.6916643372, 6.00665545464], "code_commune_insee": "54232"}, "geometry": {"type": "Point", "coordinates": [6.00665545464, 48.6916643372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379a793877f5ab9786277d50a2f6bb23ccffd1e6", "fields": {"nom_de_la_commune": "GORCY", "libell_d_acheminement": "GORCY", "code_postal": "54730", "coordonnees_gps": [49.5332181757, 5.65682394495], "code_commune_insee": "54234"}, "geometry": {"type": "Point", "coordinates": [5.65682394495, 49.5332181757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "375973ef0b00556c6e8d015fa794212afbf4d975", "fields": {"nom_de_la_commune": "GYE", "libell_d_acheminement": "GYE", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54242"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2474edffd2fbf9b8542da682b6208a69e75b8be", "fields": {"nom_de_la_commune": "HABLAINVILLE", "libell_d_acheminement": "HABLAINVILLE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54243"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb07ea877142938ea1cdbfd3cb83c2b1eeaad3f6", "fields": {"nom_de_la_commune": "HAMONVILLE", "libell_d_acheminement": "HAMONVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54248"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a7be6df4465f9179ff88bdec881094f8477de6", "fields": {"nom_de_la_commune": "HARBOUEY", "libell_d_acheminement": "HARBOUEY", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54251"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30aa7f980b86eec1146c1688089b9562313a660c", "fields": {"nom_de_la_commune": "HAUCOURT MOULAINE", "libell_d_acheminement": "HAUCOURT MOULAINE", "code_postal": "54860", "coordonnees_gps": [49.4962809644, 5.80724274639], "code_commune_insee": "54254"}, "geometry": {"type": "Point", "coordinates": [5.80724274639, 49.4962809644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76318faff49ac6c05956340ae72fe405e521675", "fields": {"nom_de_la_commune": "HEILLECOURT", "libell_d_acheminement": "HEILLECOURT", "code_postal": "54180", "coordonnees_gps": [48.6456781443, 6.18472060521], "code_commune_insee": "54257"}, "geometry": {"type": "Point", "coordinates": [6.18472060521, 48.6456781443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f623388a0641e9848f1b34c27fb640315fd59cb", "fields": {"nom_de_la_commune": "HOUDREVILLE", "libell_d_acheminement": "HOUDREVILLE", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54266"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2df62f34aa7714b8445d205a4da545c760476a3", "fields": {"nom_de_la_commune": "HOUSSEVILLE", "libell_d_acheminement": "HOUSSEVILLE", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54268"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8456552c968d921e132cf6bc2caa71ac0545a9ea", "fields": {"nom_de_la_commune": "JAILLON", "libell_d_acheminement": "JAILLON", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54272"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add3004205958b21e076a1b71c4653e7c4f39351", "fields": {"nom_de_la_commune": "JARNY", "libell_d_acheminement": "JARNY", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54273"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181b23e4eb56fa15e40168d74e0d91a6b1effe51", "fields": {"nom_de_la_commune": "JEANDELIZE", "libell_d_acheminement": "JEANDELIZE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54277"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd1c9d795588258fb520c05d0a7546d708e261e9", "fields": {"nom_de_la_commune": "JEZAINVILLE", "libell_d_acheminement": "JEZAINVILLE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54279"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218933ec6ec3a01235a4bba2e753aa85f6506111", "fields": {"nom_de_la_commune": "JOPPECOURT", "libell_d_acheminement": "JOPPECOURT", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54282"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "917cc7e53243eb039e343455e4448cda17e2d81e", "fields": {"nom_de_la_commune": "LAITRE SOUS AMANCE", "libell_d_acheminement": "LAITRE SOUS AMANCE", "code_postal": "54770", "coordonnees_gps": [48.7569187312, 6.27788013157], "code_commune_insee": "54289"}, "geometry": {"type": "Point", "coordinates": [6.27788013157, 48.7569187312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072b8e586203edd4846c3c6042c8e3613135c7dc", "fields": {"nom_de_la_commune": "LANEUVEVILLE AUX BOIS", "libell_d_acheminement": "LANEUVEVILLE AUX BOIS", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54297"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26f7717b470602fac67037db0b1fb6c55f38cc84", "fields": {"nom_de_la_commune": "LANEUVEVILLE DEVANT NANCY", "libell_d_acheminement": "LANEUVEVILLE DEVANT NANCY", "code_postal": "54410", "coordonnees_gps": [48.6455435814, 6.24186804631], "code_commune_insee": "54300"}, "geometry": {"type": "Point", "coordinates": [6.24186804631, 48.6455435814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9e3e4608556300b4233998f47b0c9ddd2eec028", "fields": {"nom_de_la_commune": "LANTEFONTAINE", "libell_d_acheminement": "LANTEFONTAINE", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54302"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba9501c70a379d53670d143475db97d94bd5ac91", "fields": {"nom_de_la_commune": "LESMENILS", "libell_d_acheminement": "LESMENILS", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54312"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790740968d6dc4efcb99851ca55c538a7e4f430a", "fields": {"code_postal": "54260", "code_commune_insee": "54322", "libell_d_acheminement": "LONGUYON", "ligne_5": "NOERS", "nom_de_la_commune": "LONGUYON", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86502e833fe3058702a422ab34ed2c8a5d86691e", "fields": {"code_postal": "54260", "code_commune_insee": "54322", "libell_d_acheminement": "LONGUYON", "ligne_5": "VILLANCY", "nom_de_la_commune": "LONGUYON", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28893b213cf03391b8cc523868cba8119f71961a", "fields": {"nom_de_la_commune": "LONGWY", "libell_d_acheminement": "LONGWY", "code_postal": "54400", "coordonnees_gps": [49.5244232599, 5.7294177983], "code_commune_insee": "54323"}, "geometry": {"type": "Point", "coordinates": [5.7294177983, 49.5244232599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc510d3dd7fa8e400a5be158d74666b682701521", "fields": {"nom_de_la_commune": "LOREY", "libell_d_acheminement": "LOREY", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54324"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b3aaa8aeb6b57c0c338bbacd53d9329fac4b65", "fields": {"nom_de_la_commune": "MAIXE", "libell_d_acheminement": "MAIXE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54335"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e0dffe4723c7b6af11f549d6bc4392fe0024aa", "fields": {"nom_de_la_commune": "MALLELOY", "libell_d_acheminement": "MALLELOY", "code_postal": "54670", "coordonnees_gps": [48.7978385403, 6.14814767129], "code_commune_insee": "54338"}, "geometry": {"type": "Point", "coordinates": [6.14814767129, 48.7978385403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dafe1f257134ffe079c5d2b2325c329a20947af", "fields": {"nom_de_la_commune": "MARAINVILLER", "libell_d_acheminement": "MARAINVILLER", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54350"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86acdb2532cb2d286f570e859af7c0ac7ad70e3", "fields": {"nom_de_la_commune": "MAXEVILLE", "libell_d_acheminement": "MAXEVILLE", "code_postal": "54320", "coordonnees_gps": [48.7099239924, 6.15129717058], "code_commune_insee": "54357"}, "geometry": {"type": "Point", "coordinates": [6.15129717058, 48.7099239924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b0886e5f5ecd997a2dd702e68fd6d6b5986e3bc", "fields": {"nom_de_la_commune": "MERCY LE HAUT", "libell_d_acheminement": "MERCY LE HAUT", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54363"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7effad5439ffc94c2b4dabd0986267eb8eef067", "fields": {"nom_de_la_commune": "MEREVILLE", "libell_d_acheminement": "MEREVILLE", "code_postal": "54850", "coordonnees_gps": [48.5983844972, 6.13949808979], "code_commune_insee": "54364"}, "geometry": {"type": "Point", "coordinates": [6.13949808979, 48.5983844972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bab0d4dd031edd28ddc3b5013b2868103a8b73a0", "fields": {"nom_de_la_commune": "MESSEIN", "libell_d_acheminement": "MESSEIN", "code_postal": "54850", "coordonnees_gps": [48.5983844972, 6.13949808979], "code_commune_insee": "54366"}, "geometry": {"type": "Point", "coordinates": [6.13949808979, 48.5983844972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bbf70a3206e2290c79c964860ef9aacf34db4bb", "fields": {"nom_de_la_commune": "MIGNEVILLE", "libell_d_acheminement": "MIGNEVILLE", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54368"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75267f4717fb99f89d4f84156caf820fd7ca42a1", "fields": {"nom_de_la_commune": "MONCEL LES LUNEVILLE", "libell_d_acheminement": "MONCEL LES LUNEVILLE", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54373"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84407dc6f6581d26ff9f0c4966b9203c0fe68ff7", "fields": {"nom_de_la_commune": "MONTIGNY SUR CHIERS", "libell_d_acheminement": "MONTIGNY SUR CHIERS", "code_postal": "54870", "coordonnees_gps": [49.4779492899, 5.69039116636], "code_commune_insee": "54378"}, "geometry": {"type": "Point", "coordinates": [5.69039116636, 49.4779492899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7573de5dd53d59324f2ecc615f1658917023ec64", "fields": {"nom_de_la_commune": "MOUAVILLE", "libell_d_acheminement": "MOUAVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54389"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "010fcc7859025cf09671e55c1c9a8b5839782845", "fields": {"nom_de_la_commune": "MOUTIERS", "libell_d_acheminement": "MOUTIERS", "code_postal": "54660", "coordonnees_gps": [49.2327229416, 5.95521267683], "code_commune_insee": "54391"}, "geometry": {"type": "Point", "coordinates": [5.95521267683, 49.2327229416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb6cf377ee9fc13d18d16f84139a0153c0d6dca6", "fields": {"nom_de_la_commune": "MOYEN", "libell_d_acheminement": "MOYEN", "code_postal": "54118", "coordonnees_gps": [48.4874027009, 6.58698461134], "code_commune_insee": "54393"}, "geometry": {"type": "Point", "coordinates": [6.58698461134, 48.4874027009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3582833ea23351cd69daa60f4ec68de910a548", "fields": {"nom_de_la_commune": "NEUVES MAISONS", "libell_d_acheminement": "NEUVES MAISONS", "code_postal": "54230", "coordonnees_gps": [48.642574056, 6.08496261598], "code_commune_insee": "54397"}, "geometry": {"type": "Point", "coordinates": [6.08496261598, 48.642574056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67cea5ac19eb52313841c9a79db78f5263d53bf", "fields": {"nom_de_la_commune": "NORROY LES PONT A MOUSSON", "libell_d_acheminement": "NORROY LES PONT A MOUSSON", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54403"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1f17332d9a7a864988329e82f72b013d12d70ec", "fields": {"nom_de_la_commune": "OLLEY", "libell_d_acheminement": "OLLEY", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54408"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ed44fb95363b30d9e99f4e87ee6fa44f322c59b", "fields": {"nom_de_la_commune": "PAGNEY DERRIERE BARINE", "libell_d_acheminement": "PAGNEY DERRIERE BARINE", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54414"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29e1f6c0fdb1aaa341b7f9999826e064fd0ee73", "fields": {"nom_de_la_commune": "PIERRE LA TREICHE", "libell_d_acheminement": "PIERRE LA TREICHE", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54426"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44df66e2b72724c3305aaa45811ebf3ba322481", "fields": {"nom_de_la_commune": "PONT A MOUSSON", "libell_d_acheminement": "PONT A MOUSSON", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54431"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ca9ad52216eafb8e54dade2acddae4aad59d5b6", "fields": {"nom_de_la_commune": "PRAYE", "libell_d_acheminement": "PRAYE", "code_postal": "54116", "coordonnees_gps": [48.452260444, 6.12393420575], "code_commune_insee": "54434"}, "geometry": {"type": "Point", "coordinates": [6.12393420575, 48.452260444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaa0cb55e859d1b6ad1eba4aadb59504ed6402b5", "fields": {"nom_de_la_commune": "PREUTIN HIGNY", "libell_d_acheminement": "PREUTIN HIGNY", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54436"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8691caf55dcb20a0c5d0bff8e89cb05644067e98", "fields": {"nom_de_la_commune": "PUXIEUX", "libell_d_acheminement": "PUXIEUX", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54441"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "201f99ec99f0d6587bd43ab5792708c61279c551", "fields": {"nom_de_la_commune": "QUEVILLONCOURT", "libell_d_acheminement": "QUEVILLONCOURT", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54442"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de624220a6dbf199a5580836af12f879383c71af", "fields": {"code_postal": "54430", "code_commune_insee": "54451", "libell_d_acheminement": "REHON", "ligne_5": "HEUMONT", "nom_de_la_commune": "REHON", "coordonnees_gps": [49.4993467832, 5.75753479184]}, "geometry": {"type": "Point", "coordinates": [5.75753479184, 49.4993467832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a26629cea77e591034c0790940a22a25b998bb", "fields": {"nom_de_la_commune": "ROMAIN", "libell_d_acheminement": "ROMAIN", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54461"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c09b8caf2466dc0761745fb7c797f07600cd3c59", "fields": {"nom_de_la_commune": "ROUVES", "libell_d_acheminement": "ROUVES", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54464"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a73d0309cb6ce4ec75e6743af3ad91db0d313ca9", "fields": {"nom_de_la_commune": "ROVILLE DEVANT BAYON", "libell_d_acheminement": "ROVILLE DEVANT BAYON", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54465"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ec937400d359f0bf12bd4d3ced2728b85b2648", "fields": {"nom_de_la_commune": "ROZELIEURES", "libell_d_acheminement": "ROZELIEURES", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54467"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "596f6c5f0be0ade1d4be20b4a374240247ee2f94", "fields": {"nom_de_la_commune": "SAFFAIS", "libell_d_acheminement": "SAFFAIS", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54468"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18de0baff3daa51b576572b0d1fa0cd2588a5f37", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54478"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "626c2f7d288a9a23e0929ac640476c3bb52285e0", "fields": {"nom_de_la_commune": "STE POLE", "libell_d_acheminement": "STE POLE", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54484"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ee8ce89553070fa610ea7e54508559325ff8996", "fields": {"nom_de_la_commune": "ST REMY AUX BOIS", "libell_d_acheminement": "ST REMY AUX BOIS", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54487"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d926974a0846c873c3c320bff637208474c2a3fd", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54488"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffdb6ffa9e516d5e2ec9e4ee7656ba48c77e46cb", "fields": {"nom_de_la_commune": "SANCY", "libell_d_acheminement": "SANCY", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54491"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083f5b2708d492a3a029630c0ab467ba8348b433", "fields": {"nom_de_la_commune": "SAULXEROTTE", "libell_d_acheminement": "SAULXEROTTE", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54494"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63d4a8bf22af93266b76d31c7861e4c7dd6f65d", "fields": {"nom_de_la_commune": "SEICHEPREY", "libell_d_acheminement": "SEICHEPREY", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54499"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14818f7cc754420746e2ca504396a5a7613b1fa3", "fields": {"nom_de_la_commune": "SIONVILLER", "libell_d_acheminement": "SIONVILLER", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54507"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1443b5c4393971cfeb578ab6f4c6e03d944615d6", "fields": {"nom_de_la_commune": "PUSSIGNY", "libell_d_acheminement": "PUSSIGNY", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37190"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba1533fb52bc943541c4d03db8d336a6c3e048d", "fields": {"nom_de_la_commune": "RIGNY USSE", "libell_d_acheminement": "RIGNY USSE", "code_postal": "37420", "coordonnees_gps": [47.2193932083, 0.209651167751], "code_commune_insee": "37197"}, "geometry": {"type": "Point", "coordinates": [0.209651167751, 47.2193932083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "401c257062c0b109455138bc236d7423f400c1fc", "fields": {"nom_de_la_commune": "SACHE", "libell_d_acheminement": "SACHE", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37205"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaeebf1489187f0dadd12ced9093854c2ca94e77", "fields": {"nom_de_la_commune": "ST ANTOINE DU ROCHER", "libell_d_acheminement": "ST ANTOINE DU ROCHER", "code_postal": "37360", "coordonnees_gps": [47.5289315618, 0.576894142963], "code_commune_insee": "37206"}, "geometry": {"type": "Point", "coordinates": [0.576894142963, 47.5289315618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "449822472be89945cd89148b4a47c8c11b19b4ed", "fields": {"nom_de_la_commune": "ST BRANCHS", "libell_d_acheminement": "ST BRANCHS", "code_postal": "37320", "coordonnees_gps": [47.2468353824, 0.78075583867], "code_commune_insee": "37211"}, "geometry": {"type": "Point", "coordinates": [0.78075583867, 47.2468353824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e6f0ffe1e904c2abd0160c29f2d2e14dae2ecf0", "fields": {"nom_de_la_commune": "ST CHRISTOPHE SUR LE NAIS", "libell_d_acheminement": "ST CHRISTOPHE SUR LE NAIS", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37213"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7522f1c066aae6f0a6ac6489b95896a17d0292d", "fields": {"nom_de_la_commune": "ST GENOUPH", "libell_d_acheminement": "ST GENOUPH", "code_postal": "37510", "coordonnees_gps": [47.3427710301, 0.558059242204], "code_commune_insee": "37219"}, "geometry": {"type": "Point", "coordinates": [0.558059242204, 47.3427710301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8894a51e17bd813484a4376cabebf6bd213d805", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37221"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a23a1c76ac886c03f928d1ac8b1573694e6b7b9", "fields": {"nom_de_la_commune": "ST MICHEL SUR LOIRE", "libell_d_acheminement": "ST MICHEL SUR LOIRE", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37227"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8f119f95492f03343e4493e7cd110042482e37b", "fields": {"nom_de_la_commune": "ST OUEN LES VIGNES", "libell_d_acheminement": "ST OUEN LES VIGNES", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37230"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55306aa82f818256433522cf17057c031400069b", "fields": {"nom_de_la_commune": "ST PATERNE RACAN", "libell_d_acheminement": "ST PATERNE RACAN", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37231"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5326fd7ddeb91cf34cbf5197e3e38999574d2857", "fields": {"nom_de_la_commune": "ST PIERRE DES CORPS", "libell_d_acheminement": "ST PIERRE DES CORPS", "code_postal": "37700", "coordonnees_gps": [47.3897548545, 0.752757543739], "code_commune_insee": "37233"}, "geometry": {"type": "Point", "coordinates": [0.752757543739, 47.3897548545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55bb53697fe9d512a4dff4174a0b8dc8d2a65cab", "fields": {"nom_de_la_commune": "SEPMES", "libell_d_acheminement": "SEPMES", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37247"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f4f01178a96c72b52c890bcec381f0b66e967d", "fields": {"nom_de_la_commune": "VILLAINES LES ROCHERS", "libell_d_acheminement": "VILLAINES LES ROCHERS", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37271"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed75da9d25a4c68c9c22d4960f4ea9c748cc020", "fields": {"nom_de_la_commune": "LA VILLE AUX DAMES", "libell_d_acheminement": "LA VILLE AUX DAMES", "code_postal": "37700", "coordonnees_gps": [47.3897548545, 0.752757543739], "code_commune_insee": "37273"}, "geometry": {"type": "Point", "coordinates": [0.752757543739, 47.3897548545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd49ad609922d86efe218c1596f200cd97ead6c4", "fields": {"nom_de_la_commune": "VILLEDOMER", "libell_d_acheminement": "VILLEDOMER", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37276"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c02ea5cc74d4172243bc6aabb190cd06906cf96", "fields": {"nom_de_la_commune": "LES ADRETS", "libell_d_acheminement": "LES ADRETS", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38002"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c697274bdaec2a192c1b202f52753bf5a6323b", "fields": {"nom_de_la_commune": "AMBEL", "libell_d_acheminement": "AMBEL", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38008"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "276eb7ca18869dd74f3400d65ed164bdc2bf27e3", "fields": {"nom_de_la_commune": "AOSTE", "libell_d_acheminement": "AOSTE", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38012"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96bc4e9002bf8eadeb5ad877d908845e71faf5cd", "fields": {"nom_de_la_commune": "LES AVENIERES VEYRINS THUELLIN", "libell_d_acheminement": "LES AVENIERES VEYRINS THUELLIN", "code_postal": "38630", "coordonnees_gps": [45.6308900094, 5.56433388526], "code_commune_insee": "38022"}, "geometry": {"type": "Point", "coordinates": [5.56433388526, 45.6308900094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ef1473afb39a22a914cd3fa548562deffe61915", "fields": {"code_postal": "38630", "code_commune_insee": "38022", "libell_d_acheminement": "LES AVENIERES VEYRINS THUELLIN", "ligne_5": "THUELLIN", "nom_de_la_commune": "LES AVENIERES VEYRINS THUELLIN", "coordonnees_gps": [45.6308900094, 5.56433388526]}, "geometry": {"type": "Point", "coordinates": [5.56433388526, 45.6308900094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b54a5df1a99d7242df484ec10dedf20afa17e60", "fields": {"nom_de_la_commune": "NEUVILLEY", "libell_d_acheminement": "NEUVILLEY", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39386"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d2b33bf4c31ebc20aff0c2990abb469f25da24", "fields": {"nom_de_la_commune": "NEVY LES DOLE", "libell_d_acheminement": "NEVY LES DOLE", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39387"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a68d08d1254cca4a626fa99d564d4120c70fd6", "fields": {"nom_de_la_commune": "NEVY SUR SEILLE", "libell_d_acheminement": "NEVY SUR SEILLE", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39388"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ff9e9d40627e1fd3bb555da264d111f588253b", "fields": {"nom_de_la_commune": "ONGLIERES", "libell_d_acheminement": "ONGLIERES", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39393"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "579af518bf7434bfcceac28b6b750291480cda9e", "fields": {"nom_de_la_commune": "ONOZ", "libell_d_acheminement": "ONOZ", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39394"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8fc568a048cde218576e68adba2f0bb52de359", "fields": {"nom_de_la_commune": "OUSSIERES", "libell_d_acheminement": "OUSSIERES", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39401"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edefb8a2564e923c2d5c04672c8d3b4c83376275", "fields": {"nom_de_la_commune": "LE PASQUIER", "libell_d_acheminement": "LE PASQUIER", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39406"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33e0ce44b9714aaa346b08c07e3da67f3d8b6bc3", "fields": {"nom_de_la_commune": "PERRIGNY", "libell_d_acheminement": "PERRIGNY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39411"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2df5933343ddab8ae75299db4a4fe6dec9e6e28", "fields": {"nom_de_la_commune": "LES PIARDS", "libell_d_acheminement": "LES PIARDS", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39417"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62240cc3cca81f0e5f0c38d1efe087d174e96ae0", "fields": {"nom_de_la_commune": "PLAINOISEAU", "libell_d_acheminement": "PLAINOISEAU", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39422"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a62be4aff5532f5ea6ad6591a2d5f8e6fa1d7bf", "fields": {"nom_de_la_commune": "LES PLANCHES PRES ARBOIS", "libell_d_acheminement": "LES PLANCHES PRES ARBOIS", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39425"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064043bfd69e4375680db66db12a42e13757eb7d", "fields": {"nom_de_la_commune": "PLEURE", "libell_d_acheminement": "PLEURE", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39429"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee9212cb95817979096920e391b99367f67578e", "fields": {"nom_de_la_commune": "PLUMONT", "libell_d_acheminement": "PLUMONT", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39430"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a16afc7b807558d289af2cf41e635149a17b4029", "fields": {"nom_de_la_commune": "PREMANON", "libell_d_acheminement": "PREMANON", "code_postal": "39220", "coordonnees_gps": [46.4870347389, 6.06467102901], "code_commune_insee": "39441"}, "geometry": {"type": "Point", "coordinates": [6.06467102901, 46.4870347389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8f75e894879aa75d5e715f5670438f25b36c658", "fields": {"nom_de_la_commune": "PRESILLY", "libell_d_acheminement": "PRESILLY", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39443"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b868409196578ba477e5c9133677844c40b4640", "fields": {"nom_de_la_commune": "PRETIN", "libell_d_acheminement": "PRETIN", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39444"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a700c153c403227e643209e1b255766278a736c", "fields": {"nom_de_la_commune": "PUPILLIN", "libell_d_acheminement": "PUPILLIN", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39446"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001821ac287d61c76581b0bf7dda7554f152851d", "fields": {"nom_de_la_commune": "RAVILLOLES", "libell_d_acheminement": "RAVILLOLES", "code_postal": "39170", "coordonnees_gps": [46.4122748444, 5.79038088139], "code_commune_insee": "39453"}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6a914980f4c180b166517d57eafee284b46217", "fields": {"nom_de_la_commune": "LES REPOTS", "libell_d_acheminement": "LES REPOTS", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39457"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f82cee91c62f021921c6e17f2b326d20084958", "fields": {"nom_de_la_commune": "REVIGNY", "libell_d_acheminement": "REVIGNY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39458"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b33f6c2cd59b542b75f825cd301ab1429038e7c9", "fields": {"nom_de_la_commune": "LA RIXOUSE", "libell_d_acheminement": "LA RIXOUSE", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39460"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba6a13a0e62bce8810319f81ae63c037d665e1f", "fields": {"nom_de_la_commune": "ROTHONAY", "libell_d_acheminement": "ROTHONAY", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39468"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75fa5c2b367c00f60d99ce3c12c829a00ae3ab26", "fields": {"code_postal": "39400", "code_commune_insee": "39470", "libell_d_acheminement": "LES ROUSSES", "ligne_5": "LES ARCETS", "nom_de_la_commune": "LES ROUSSES", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f4add5411d9bc5a52ccfb23db7e14c13cf7c12", "fields": {"nom_de_la_commune": "ST DIDIER", "libell_d_acheminement": "ST DIDIER", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39480"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de8539081ad5c47ce97b4c057acdf42a9c88bbf7", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39490"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba062645c4b863b30ac368806ccbadac2ea66e6c", "fields": {"code_postal": "39130", "code_commune_insee": "39493", "libell_d_acheminement": "ST MAURICE CRILLAT", "ligne_5": "CRILLAT", "nom_de_la_commune": "ST MAURICE CRILLAT", "coordonnees_gps": [46.5974008072, 5.7778821985]}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f18ec117057eac5851780d3da79a8df2868174c", "fields": {"code_postal": "39270", "code_commune_insee": "39504", "libell_d_acheminement": "SARROGNA", "ligne_5": "MONTJOUVENT", "nom_de_la_commune": "SARROGNA", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7c9de1c98e8d6c4f04724e107de14ebc8993580", "fields": {"nom_de_la_commune": "SELIGNEY", "libell_d_acheminement": "SELIGNEY", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39507"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15654c51c7f4fe3e06c33bade8369a6cfd37f6ba", "fields": {"nom_de_la_commune": "SEPTMONCEL", "libell_d_acheminement": "SEPTMONCEL", "code_postal": "39310", "coordonnees_gps": [46.3646047349, 5.94493572712], "code_commune_insee": "39510"}, "geometry": {"type": "Point", "coordinates": [5.94493572712, 46.3646047349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796a43d625f7bfe49de717b53e9f2e0561815a36", "fields": {"nom_de_la_commune": "SERGENON", "libell_d_acheminement": "SERGENON", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39512"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef32ff6f36bec12a4d7ee1b9b41ee38bf08c1567", "fields": {"nom_de_la_commune": "SIROD", "libell_d_acheminement": "SIROD", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39517"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e3008d76d9adb16d64a6e080f976ddf69490fa4", "fields": {"nom_de_la_commune": "VALFIN SUR VALOUSE", "libell_d_acheminement": "VALFIN SUR VALOUSE", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39542"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80a260d3e7ea5ef792c021ef9a38ef945e39babb", "fields": {"nom_de_la_commune": "VERGES", "libell_d_acheminement": "VERGES", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39550"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e748b6d67cda8429569d613e91f92fed6a007e24", "fields": {"nom_de_la_commune": "VERS EN MONTAGNE", "libell_d_acheminement": "VERS EN MONTAGNE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39554"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46cbc89563cc7fa7365d3105f8254ee3241d0e15", "fields": {"nom_de_la_commune": "VESCLES", "libell_d_acheminement": "VESCLES", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39557"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36dec426e07d12b67494e48b509a5b6244e01987", "fields": {"nom_de_la_commune": "VILLARD ST SAUVEUR", "libell_d_acheminement": "VILLARD ST SAUVEUR", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39560"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8768dcad165ec98b664d9caae35be6bc33b8ce1", "fields": {"nom_de_la_commune": "VILLETTE LES DOLE", "libell_d_acheminement": "VILLETTE LES DOLE", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39573"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083e512290395792ebf2e07154857b720143ff3e", "fields": {"nom_de_la_commune": "VINCELLES", "libell_d_acheminement": "VINCELLES", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39576"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bfef1256830d4424eebc1694e3dc534932e4d69", "fields": {"code_postal": "39230", "code_commune_insee": "39577", "libell_d_acheminement": "VINCENT FROIDEVILLE", "ligne_5": "FROIDEVILLE", "nom_de_la_commune": "VINCENT FROIDEVILLE", "coordonnees_gps": [46.8351760526, 5.52787683557]}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90fa1bfa34e3a8d1e357dac1b66fd8bc2f06cab9", "fields": {"nom_de_la_commune": "VIRY", "libell_d_acheminement": "VIRY", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39579"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0524f39f13e530b31868105f8a7cac1f841a2cfc", "fields": {"nom_de_la_commune": "ANGRESSE", "libell_d_acheminement": "ANGRESSE", "code_postal": "40150", "coordonnees_gps": [43.6643756035, -1.39445931936], "code_commune_insee": "40004"}, "geometry": {"type": "Point", "coordinates": [-1.39445931936, 43.6643756035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fb8c2092d4d6155d3628d58f7d15326c8978390", "fields": {"nom_de_la_commune": "ARBOUCAVE", "libell_d_acheminement": "ARBOUCAVE", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40005"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a47a356b66c9a493a2e743d37b887b0190f42ee", "fields": {"nom_de_la_commune": "AUBAGNAN", "libell_d_acheminement": "AUBAGNAN", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40016"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4e1d3d5e69d4c7ec9b205bce1e2995108b33e77", "fields": {"nom_de_la_commune": "BAHUS SOUBIRAN", "libell_d_acheminement": "BAHUS SOUBIRAN", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40022"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "784a1bd393304f23218710bba4478e51bc0dca81", "fields": {"nom_de_la_commune": "BASCONS", "libell_d_acheminement": "BASCONS", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40025"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e8c0d5a09ed40054cb7220c918fa97449686b9", "fields": {"nom_de_la_commune": "BASTENNES", "libell_d_acheminement": "BASTENNES", "code_postal": "40360", "coordonnees_gps": [43.6226190594, -0.830742350632], "code_commune_insee": "40028"}, "geometry": {"type": "Point", "coordinates": [-0.830742350632, 43.6226190594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "911ed33882180d5ff54dc9433236849a784bf42f", "fields": {"nom_de_la_commune": "BERGOUEY", "libell_d_acheminement": "BERGOUEY", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40038"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0624f5924f657e69e1325e28c2e3ffafc15f649", "fields": {"nom_de_la_commune": "BIAUDOS", "libell_d_acheminement": "BIAUDOS", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40044"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1496ba742808609091062180276957a4628c00a", "fields": {"nom_de_la_commune": "BOOS", "libell_d_acheminement": "BOOS", "code_postal": "40370", "coordonnees_gps": [43.9279657957, -0.915942648289], "code_commune_insee": "40048"}, "geometry": {"type": "Point", "coordinates": [-0.915942648289, 43.9279657957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2a1e612e451ba974a9c3856fb36061d3ced8f8d", "fields": {"nom_de_la_commune": "BOSTENS", "libell_d_acheminement": "BOSTENS", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40050"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bf1def0f368201c298a9fd5636043da4074793f", "fields": {"nom_de_la_commune": "BRETAGNE DE MARSAN", "libell_d_acheminement": "BRETAGNE DE MARSAN", "code_postal": "40280", "coordonnees_gps": [43.8401834528, -0.518454816406], "code_commune_insee": "40055"}, "geometry": {"type": "Point", "coordinates": [-0.518454816406, 43.8401834528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab6edfcceaa40e2c0c1ac263d1ad230211bfab3", "fields": {"nom_de_la_commune": "BROCAS", "libell_d_acheminement": "BROCAS", "code_postal": "40420", "coordonnees_gps": [44.093205309, -0.572816204392], "code_commune_insee": "40056"}, "geometry": {"type": "Point", "coordinates": [-0.572816204392, 44.093205309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d53fe5b225c3e7786545fda14d2a5e163789d1", "fields": {"nom_de_la_commune": "CAMPAGNE", "libell_d_acheminement": "CAMPAGNE", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40061"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6323f2a540ebc95482057b2f7000ec384fc3ed34", "fields": {"nom_de_la_commune": "CAMPET ET LAMOLERE", "libell_d_acheminement": "CAMPET ET LAMOLERE", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40062"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8600e272be2ae70a41d0de44d8d659a80f975ff", "fields": {"nom_de_la_commune": "CASTELNAU CHALOSSE", "libell_d_acheminement": "CASTELNAU CHALOSSE", "code_postal": "40360", "coordonnees_gps": [43.6226190594, -0.830742350632], "code_commune_insee": "40071"}, "geometry": {"type": "Point", "coordinates": [-0.830742350632, 43.6226190594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46599508e5796109d6ac5b82678e0126f09e7f59", "fields": {"nom_de_la_commune": "CASTEL SARRAZIN", "libell_d_acheminement": "CASTEL SARRAZIN", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40074"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c899f3de3cd8b1d48b9a0dc65f6207297339097c", "fields": {"nom_de_la_commune": "CAUNA", "libell_d_acheminement": "CAUNA", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40076"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a726c8922a4937cb815c87bfcc982dd5f8eb6b1", "fields": {"nom_de_la_commune": "COMMENSACQ", "libell_d_acheminement": "COMMENSACQ", "code_postal": "40210", "coordonnees_gps": [44.186401376, -0.94336239865], "code_commune_insee": "40085"}, "geometry": {"type": "Point", "coordinates": [-0.94336239865, 44.186401376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "326f58f9c7f1ada710e7b869ad063af4d159e152", "fields": {"nom_de_la_commune": "DAX", "libell_d_acheminement": "DAX", "code_postal": "40100", "coordonnees_gps": [43.7008871058, -1.05932787559], "code_commune_insee": "40088"}, "geometry": {"type": "Point", "coordinates": [-1.05932787559, 43.7008871058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5adec25fa463b04103babf7cd609d4bfb75a2264", "fields": {"nom_de_la_commune": "DONZACQ", "libell_d_acheminement": "DONZACQ", "code_postal": "40360", "coordonnees_gps": [43.6226190594, -0.830742350632], "code_commune_insee": "40090"}, "geometry": {"type": "Point", "coordinates": [-0.830742350632, 43.6226190594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1990cfad39ece65597a7f43d9cb64472653f5e6", "fields": {"nom_de_la_commune": "ESCOURCE", "libell_d_acheminement": "ESCOURCE", "code_postal": "40210", "coordonnees_gps": [44.186401376, -0.94336239865], "code_commune_insee": "40094"}, "geometry": {"type": "Point", "coordinates": [-0.94336239865, 44.186401376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27802383144d66a60fb17bc6a6591af1578b979", "fields": {"nom_de_la_commune": "FARGUES", "libell_d_acheminement": "FARGUES", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40099"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a90be8c606d326210a4cea53fa2485d1afcd0ce", "fields": {"nom_de_la_commune": "GAAS", "libell_d_acheminement": "GAAS", "code_postal": "40350", "coordonnees_gps": [43.6178542813, -0.994527077008], "code_commune_insee": "40101"}, "geometry": {"type": "Point", "coordinates": [-0.994527077008, 43.6178542813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "265297c2f8926365edc7a5b4d4c9dc624508d001", "fields": {"nom_de_la_commune": "GAREIN", "libell_d_acheminement": "GAREIN", "code_postal": "40420", "coordonnees_gps": [44.093205309, -0.572816204392], "code_commune_insee": "40105"}, "geometry": {"type": "Point", "coordinates": [-0.572816204392, 44.093205309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8b89c06637d8be4af283d5cd1ad6f3fa82fea6a", "fields": {"nom_de_la_commune": "GEAUNE", "libell_d_acheminement": "GEAUNE", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40110"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b98206154c01ce6a66869264266638ac1c787f", "fields": {"nom_de_la_commune": "GIBRET", "libell_d_acheminement": "GIBRET", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40112"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3528389e8816bcbe34c72bc8ed25945a144d22a0", "fields": {"nom_de_la_commune": "HAGETMAU", "libell_d_acheminement": "HAGETMAU", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40119"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b7eda0f08cde571b9ac6e03601039f5e0452bf7", "fields": {"nom_de_la_commune": "HASTINGUES", "libell_d_acheminement": "HASTINGUES", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40120"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "accbe5ca87c1f71f5c944fd978c47d0543d1b870", "fields": {"nom_de_la_commune": "HAURIET", "libell_d_acheminement": "HAURIET", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40121"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecb67b44c66f7384b7ee37b3625c8ce1fb8f9205", "fields": {"nom_de_la_commune": "HORSARRIEU", "libell_d_acheminement": "HORSARRIEU", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40128"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36ac03690e91efa93a407db4fadd551feb66971", "fields": {"nom_de_la_commune": "LABENNE", "libell_d_acheminement": "LABENNE", "code_postal": "40530", "coordonnees_gps": [43.5951486658, -1.43007761091], "code_commune_insee": "40133"}, "geometry": {"type": "Point", "coordinates": [-1.43007761091, 43.5951486658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e0ea8f52f3ef379b39740e96657a9c47cae124c", "fields": {"nom_de_la_commune": "LAGLORIEUSE", "libell_d_acheminement": "LAGLORIEUSE", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40139"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ad3ad84fac9340ba82ebf06fa5f131841aec41b", "fields": {"nom_de_la_commune": "LALUQUE", "libell_d_acheminement": "LALUQUE", "code_postal": "40465", "coordonnees_gps": [43.8185485328, -0.958961434744], "code_commune_insee": "40142"}, "geometry": {"type": "Point", "coordinates": [-0.958961434744, 43.8185485328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c7d6ac5c61767767686375362b020d676c7b6e", "fields": {"nom_de_la_commune": "LARBEY", "libell_d_acheminement": "LARBEY", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40144"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566ae86f0e01d7369c891dbc45c0f5c9c138058e", "fields": {"nom_de_la_commune": "LARRIVIERE ST SAVIN", "libell_d_acheminement": "LARRIVIERE ST SAVIN", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40145"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416df9ae1960699d411470bc43ec03ba9c806f20", "fields": {"nom_de_la_commune": "LAUREDE", "libell_d_acheminement": "LAUREDE", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40147"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057a030ecd09583a0b1088795c6e64ea03432582", "fields": {"nom_de_la_commune": "LE LEUY", "libell_d_acheminement": "LE LEUY", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40153"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dfc760b4c260ca0023a78b2fef5008a793b4693", "fields": {"nom_de_la_commune": "LEVIGNACQ", "libell_d_acheminement": "LEVIGNACQ", "code_postal": "40170", "coordonnees_gps": [44.0581997047, -1.21339037658], "code_commune_insee": "40154"}, "geometry": {"type": "Point", "coordinates": [-1.21339037658, 44.0581997047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e8b6df4ba1a35ba2f91afe7a0e43284bd495a8", "fields": {"nom_de_la_commune": "LIT ET MIXE", "libell_d_acheminement": "LIT ET MIXE", "code_postal": "40170", "coordonnees_gps": [44.0581997047, -1.21339037658], "code_commune_insee": "40157"}, "geometry": {"type": "Point", "coordinates": [-1.21339037658, 44.0581997047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b3c0f91e94dfd2f9ddec13240acb4d22cf70aa", "fields": {"nom_de_la_commune": "MAURRIN", "libell_d_acheminement": "MAURRIN", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40175"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c3a2bd7e044328491417dc29d5dadad6e42989", "fields": {"nom_de_la_commune": "MEES", "libell_d_acheminement": "MEES", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40179"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2973d1949cdef5418dedbf89d98d05b9ffea1c9", "fields": {"nom_de_la_commune": "MEILHAN", "libell_d_acheminement": "MEILHAN", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40180"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c60c6e63413801875c3a5f6932fccbc1804a37d", "fields": {"nom_de_la_commune": "MOMUY", "libell_d_acheminement": "MOMUY", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40188"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da02d0631f7b239d3b78bb76fded00937898cc9", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40191"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e32b15abe7cb119387544eae041f6d018ba747a", "fields": {"nom_de_la_commune": "MONTEGUT", "libell_d_acheminement": "MONTEGUT", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40193"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3de91fce7dd61b3ffe43213bdc30da9b7a60960c", "fields": {"nom_de_la_commune": "MONTFORT EN CHALOSSE", "libell_d_acheminement": "MONTFORT EN CHALOSSE", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40194"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe9bd5487069f041a38ab2fbae84ad1c0cebd47e", "fields": {"nom_de_la_commune": "ONARD", "libell_d_acheminement": "ONARD", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40208"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8583ec43eb506b020505a2360b806611224f9ac2", "fields": {"nom_de_la_commune": "ONDRES", "libell_d_acheminement": "ONDRES", "code_postal": "40440", "coordonnees_gps": [43.5661833619, -1.4546231219], "code_commune_insee": "40209"}, "geometry": {"type": "Point", "coordinates": [-1.4546231219, 43.5661833619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf61164667970ae172df66f94f7539c95a4dfcd", "fields": {"code_postal": "40110", "code_commune_insee": "40210", "libell_d_acheminement": "ONESSE LAHARIE", "ligne_5": "LAHARIE", "nom_de_la_commune": "ONESSE LAHARIE", "coordonnees_gps": [44.0292859591, -0.886711370847]}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe0893b51c70841ceb32a8ddef51a8e06aa5fa46", "fields": {"nom_de_la_commune": "PECORADE", "libell_d_acheminement": "PECORADE", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40220"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82d4c46c30dad90a841ac9f21365d7b1c843cd4c", "fields": {"nom_de_la_commune": "POYARTIN", "libell_d_acheminement": "POYARTIN", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40236"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e94e13b540ceeb48e022c4fb68fe8c481fcee425", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40251"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec821cdb97d34877d4e36123bf5f3bd0663a0102", "fields": {"nom_de_la_commune": "STE FOY", "libell_d_acheminement": "STE FOY", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40258"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2b59a6fe0c957b304cfaf18cbb3cb00ee7f1c4c", "fields": {"nom_de_la_commune": "ST JULIEN EN BORN", "libell_d_acheminement": "ST JULIEN EN BORN", "code_postal": "40170", "coordonnees_gps": [44.0581997047, -1.21339037658], "code_commune_insee": "40266"}, "geometry": {"type": "Point", "coordinates": [-1.21339037658, 44.0581997047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f5e6bb82815f7655f2e7cefa4787ea99321f4b", "fields": {"nom_de_la_commune": "ST PANDELON", "libell_d_acheminement": "ST PANDELON", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40277"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f11254959cc504a6afbd499a5d3f7a9beb2624db", "fields": {"nom_de_la_commune": "ST VINCENT DE TYROSSE", "libell_d_acheminement": "ST VINCENT DE TYROSSE", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40284"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc3d657a03541ad522dd28d834d372a372caaf89", "fields": {"nom_de_la_commune": "SAUBRIGUES", "libell_d_acheminement": "SAUBRIGUES", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40292"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcc88b3ceb8fa35ee5e80cf163cd3cf2766a31ae", "fields": {"nom_de_la_commune": "SEIGNOSSE", "libell_d_acheminement": "SEIGNOSSE", "code_postal": "40510", "coordonnees_gps": [43.7023305134, -1.39790012476], "code_commune_insee": "40296"}, "geometry": {"type": "Point", "coordinates": [-1.39790012476, 43.7023305134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5d8360b03d1a217a2b58826b76f666e50828115", "fields": {"nom_de_la_commune": "SOLFERINO", "libell_d_acheminement": "SOLFERINO", "code_postal": "40210", "coordonnees_gps": [44.186401376, -0.94336239865], "code_commune_insee": "40303"}, "geometry": {"type": "Point", "coordinates": [-0.94336239865, 44.186401376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681eb13510ce900a4df0737089e6cbf624405284", "fields": {"nom_de_la_commune": "SOUPROSSE", "libell_d_acheminement": "SOUPROSSE", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40309"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f50583dcb0a51a837c4adfa31dfb136d1b89faac", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "27160", "coordonnees_gps": [48.8560757973, 0.877611850909], "code_commune_insee": "27265"}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c18c42ab2a87bb49e68110741c0bf856bcfd71e1", "fields": {"nom_de_la_commune": "FRESNE CAUVERVILLE", "libell_d_acheminement": "FRESNE CAUVERVILLE", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27269"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52753fd2c1fa7683301a1a2def946424a336cc50", "fields": {"nom_de_la_commune": "FRESNE L ARCHEVEQUE", "libell_d_acheminement": "FRESNE L ARCHEVEQUE", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27270"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a95eb045e22abb0740756ccc228c17770b33ce8", "fields": {"code_postal": "27220", "code_commune_insee": "27277", "libell_d_acheminement": "LA BARONNIE", "ligne_5": "GARENCIERES", "nom_de_la_commune": "LA BARONNIE", "coordonnees_gps": [48.9045809856, 1.2729790086]}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5d027de4204733b08d277d2947d0b1271461a7", "fields": {"nom_de_la_commune": "GARENNES SUR EURE", "libell_d_acheminement": "GARENNES SUR EURE", "code_postal": "27780", "coordonnees_gps": [48.9095072645, 1.43438618943], "code_commune_insee": "27278"}, "geometry": {"type": "Point", "coordinates": [1.43438618943, 48.9095072645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4641a25295c0d9424cdca3c8d00ffc9d229ebf97", "fields": {"nom_de_la_commune": "LA GOULAFRIERE", "libell_d_acheminement": "LA GOULAFRIERE", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27289"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8409b91bd7250a4625fdfa223448132569f03f", "fields": {"nom_de_la_commune": "GRAVIGNY", "libell_d_acheminement": "GRAVIGNY", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27299"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa67771eedab31e35617a6b3c8a2932da22e570c", "fields": {"nom_de_la_commune": "GROSSOEUVRE", "libell_d_acheminement": "GROSSOEUVRE", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27301"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e693a97c0d9b61f3a32868f5a1dba34abe7ed78", "fields": {"code_postal": "27370", "code_commune_insee": "27302", "libell_d_acheminement": "LE BOSC DU THEIL", "ligne_5": "LE GROS THEIL", "nom_de_la_commune": "LE BOSC DU THEIL", "coordonnees_gps": [49.2357010366, 0.935247048397]}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87824d03f05ae653249049dd1eaca9d134015882", "fields": {"nom_de_la_commune": "GUISENIERS", "libell_d_acheminement": "GUISENIERS", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27307"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a934db00186681c515ac0f1e33b4ca62fe0124b1", "fields": {"nom_de_la_commune": "HAUVILLE", "libell_d_acheminement": "HAUVILLE", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27316"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8398f2baa6e9ef5c7a74b9d1c6302e3359dc14e3", "fields": {"nom_de_la_commune": "LA HAYE DE CALLEVILLE", "libell_d_acheminement": "LA HAYE DE CALLEVILLE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27318"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b445d4f78303ed440e3ca9a09f6350e980d4bc2", "fields": {"nom_de_la_commune": "LA HAYE LE COMTE", "libell_d_acheminement": "LA HAYE LE COMTE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27321"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f023193b04b7e7ef7aa1425fa1f373c724b39028", "fields": {"nom_de_la_commune": "LA HAYE MALHERBE", "libell_d_acheminement": "LA HAYE MALHERBE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27322"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "041ff28f63898955ce59c06e0b4ea19f608b4e77", "fields": {"nom_de_la_commune": "HEBECOURT", "libell_d_acheminement": "HEBECOURT", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27324"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3cba58fc91b0fba4f29f13879e77e15a129a546", "fields": {"nom_de_la_commune": "HEUDICOURT", "libell_d_acheminement": "HEUDICOURT", "code_postal": "27860", "coordonnees_gps": [49.3342504503, 1.66205092492], "code_commune_insee": "27333"}, "geometry": {"type": "Point", "coordinates": [1.66205092492, 49.3342504503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d000ea8df310c1d74d1cff2f88f427b2c3ea6297", "fields": {"nom_de_la_commune": "HOULBEC COCHEREL", "libell_d_acheminement": "HOULBEC COCHEREL", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27343"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ba7db3ccc6965ac10ce1df263ef24f007e1f324", "fields": {"nom_de_la_commune": "IGOVILLE", "libell_d_acheminement": "IGOVILLE", "code_postal": "27460", "coordonnees_gps": [49.3216784952, 1.17178716844], "code_commune_insee": "27348"}, "geometry": {"type": "Point", "coordinates": [1.17178716844, 49.3216784952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e43e6824d5d94641b9825a71998ba8a005adb4e8", "fields": {"nom_de_la_commune": "ILLIERS L EVEQUE", "libell_d_acheminement": "ILLIERS L EVEQUE", "code_postal": "27770", "coordonnees_gps": [48.8248510871, 1.25896242019], "code_commune_insee": "27350"}, "geometry": {"type": "Point", "coordinates": [1.25896242019, 48.8248510871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6620a8cb7e57bbb6dffe6dd05fad313396de1f65", "fields": {"nom_de_la_commune": "IVRY LA BATAILLE", "libell_d_acheminement": "IVRY LA BATAILLE", "code_postal": "27540", "coordonnees_gps": [48.8858963291, 1.44635852874], "code_commune_insee": "27355"}, "geometry": {"type": "Point", "coordinates": [1.44635852874, 48.8858963291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b39ef028a6658e7c5588d2ace0d7878b6b9b2c8", "fields": {"nom_de_la_commune": "JOUY SUR EURE", "libell_d_acheminement": "JOUY SUR EURE", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27358"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b0bb45674d46c0d52719f3ac86691b0372c98fc", "fields": {"code_postal": "27210", "code_commune_insee": "27361", "libell_d_acheminement": "LA LANDE ST LEGER", "ligne_5": "ST LEGER SUR BONNEVILLE", "nom_de_la_commune": "LA LANDE ST LEGER", "coordonnees_gps": [49.3651599552, 0.371153081403]}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5f5b006ff876c31ea8db4a6eff16cfbc38658b9", "fields": {"nom_de_la_commune": "LETTEGUIVES", "libell_d_acheminement": "LETTEGUIVES", "code_postal": "27910", "coordonnees_gps": [49.419867111, 1.36959145067], "code_commune_insee": "27366"}, "geometry": {"type": "Point", "coordinates": [1.36959145067, 49.419867111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13479fb7847e80c09805a98a63626cad1c98a0be", "fields": {"nom_de_la_commune": "LIEUREY", "libell_d_acheminement": "LIEUREY", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27367"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8be181f4cae78373fc83a520262e1d783f990488", "fields": {"nom_de_la_commune": "LORLEAU", "libell_d_acheminement": "LORLEAU", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27373"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a841bf5cf4665a60752c136dff61ca913ae5df7f", "fields": {"nom_de_la_commune": "MARAIS VERNIER", "libell_d_acheminement": "MARAIS VERNIER", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27388"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f8f87a7f63d5d575d949e0c49fd14af7cf8c452", "fields": {"code_postal": "27240", "code_commune_insee": "27416", "libell_d_acheminement": "BUIS SUR DAMVILLE", "ligne_5": "CRETON", "nom_de_la_commune": "BUIS SUR DAMVILLE", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4d97c668fb06628c24a2adab78f81a4e91f11a", "fields": {"nom_de_la_commune": "MORSAN", "libell_d_acheminement": "MORSAN", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27418"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad89f55fbcf862f8ff25e021fd1cb17166c0fb57", "fields": {"nom_de_la_commune": "NAGEL SEEZ MESNIL", "libell_d_acheminement": "NAGEL SEEZ MESNIL", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27424"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02062f149ea6bcfc827b845eee70a38c3bb6548", "fields": {"nom_de_la_commune": "LA NEUVE LYRE", "libell_d_acheminement": "LA NEUVE LYRE", "code_postal": "27330", "coordonnees_gps": [48.928948419, 0.685983737995], "code_commune_insee": "27431"}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2354b63927f5a2fa59a7bc79b5d69335026f4a06", "fields": {"nom_de_la_commune": "LA NEUVILLE DU BOSC", "libell_d_acheminement": "LA NEUVILLE DU BOSC", "code_postal": "27890", "coordonnees_gps": [49.1940187292, 0.815313589202], "code_commune_insee": "27432"}, "geometry": {"type": "Point", "coordinates": [0.815313589202, 49.1940187292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8191eff677b6bede77c43f8d85ac8bc0971f0213", "fields": {"nom_de_la_commune": "NEUVILLE SUR AUTHOU", "libell_d_acheminement": "NEUVILLE SUR AUTHOU", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27433"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3634eb748e4b03a59f7d050b876f81bf60e2b4c7", "fields": {"nom_de_la_commune": "NOGENT LE SEC", "libell_d_acheminement": "NOGENT LE SEC", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27436"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bd1fd9cb65c462141759468f0159b0dd44f5171", "fields": {"nom_de_la_commune": "NOTRE DAME DU HAMEL", "libell_d_acheminement": "NOTRE DAME DU HAMEL", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27442"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b1e0591d746a0f76c784d488bcaa2ba15042e3b", "fields": {"nom_de_la_commune": "ORMES", "libell_d_acheminement": "ORMES", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27446"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc74e9e8194ff8d677031e29bb097bd5f2191953", "fields": {"nom_de_la_commune": "PARVILLE", "libell_d_acheminement": "PARVILLE", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27451"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95f477ffe2f4bdb0bc8d2a47453ea54abbdcfd5d", "fields": {"nom_de_la_commune": "PERRUEL", "libell_d_acheminement": "PERRUEL", "code_postal": "27910", "coordonnees_gps": [49.419867111, 1.36959145067], "code_commune_insee": "27454"}, "geometry": {"type": "Point", "coordinates": [1.36959145067, 49.419867111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f449e18c0a83fc0e4c0cbcfe0555d523adab98d", "fields": {"nom_de_la_commune": "PITRES", "libell_d_acheminement": "PITRES", "code_postal": "27590", "coordonnees_gps": [49.3310796095, 1.21716196064], "code_commune_insee": "27458"}, "geometry": {"type": "Point", "coordinates": [1.21716196064, 49.3310796095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cde3ce6c9ac6268eea84249560f0f3ee52045b7", "fields": {"nom_de_la_commune": "LE PLESSIS HEBERT", "libell_d_acheminement": "LE PLESSIS HEBERT", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27465"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1e60f6d9dbf2c4d79c8f80aec83c4b515c9fc54", "fields": {"nom_de_la_commune": "PONT DE L ARCHE", "libell_d_acheminement": "PONT DE L ARCHE", "code_postal": "27340", "coordonnees_gps": [49.282400174, 1.11419041631], "code_commune_insee": "27469"}, "geometry": {"type": "Point", "coordinates": [1.11419041631, 49.282400174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5a593abfc64be46f8ff892dfc5f70ba60ec40ae", "fields": {"nom_de_la_commune": "PORTES", "libell_d_acheminement": "PORTES", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27472"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8c38d219b5b4063d145100518c517f133e7cf9", "fields": {"nom_de_la_commune": "POSES", "libell_d_acheminement": "POSES", "code_postal": "27740", "coordonnees_gps": [49.2998386126, 1.24045837179], "code_commune_insee": "27474"}, "geometry": {"type": "Point", "coordinates": [1.24045837179, 49.2998386126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc569551751cf4aa93afadd4a420d1e8b13de8d2", "fields": {"nom_de_la_commune": "PUCHAY", "libell_d_acheminement": "PUCHAY", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27480"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75c3867e4871a4e1549a3527582307b11e6dd4bf", "fields": {"nom_de_la_commune": "RADEPONT", "libell_d_acheminement": "RADEPONT", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27487"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f32aff01bee089b3b1657eb0fa2756bc287dc01", "fields": {"nom_de_la_commune": "RENNEVILLE", "libell_d_acheminement": "RENNEVILLE", "code_postal": "27910", "coordonnees_gps": [49.419867111, 1.36959145067], "code_commune_insee": "27488"}, "geometry": {"type": "Point", "coordinates": [1.36959145067, 49.419867111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0a851888dc82da9b7c8d412d1cd3843af7ac2a", "fields": {"nom_de_la_commune": "ROMAN", "libell_d_acheminement": "ROMAN", "code_postal": "27240", "coordonnees_gps": [48.8630175528, 1.06923363449], "code_commune_insee": "27491"}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e015dbacf83d6e29a9ce6d372a0f678f6d92abe", "fields": {"nom_de_la_commune": "LA ROQUETTE", "libell_d_acheminement": "LA ROQUETTE", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27495"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b095c8c34da91f96f7fde58de8bdd5c4a38ad802", "fields": {"nom_de_la_commune": "ST AGNAN DE CERNIERES", "libell_d_acheminement": "ST AGNAN DE CERNIERES", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27505"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa69ff8974f8fb17ac0df6f5881ab573907944d1", "fields": {"nom_de_la_commune": "ST AUBIN DE SCELLON", "libell_d_acheminement": "ST AUBIN DE SCELLON", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27512"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df1c3fa0a506af4abb114cd11277f3975d01531", "fields": {"nom_de_la_commune": "ST ETIENNE L ALLIER", "libell_d_acheminement": "ST ETIENNE L ALLIER", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27538"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3063fa47caf326e22e3562c865e3034e9bff64", "fields": {"nom_de_la_commune": "ST JEAN DU THENNEY", "libell_d_acheminement": "ST JEAN DU THENNEY", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27552"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1a82ef5a698ee5c64d50036e5ca7135bc0c7444", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27554"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a942af9dc5c669f79cc14fcea65061b5358bb2", "fields": {"nom_de_la_commune": "STE MARIE DE VATIMESNIL", "libell_d_acheminement": "STE MARIE DE VATIMESNIL", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27567"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3c10072b0dfec29fa731e4585c84957b336e93", "fields": {"code_postal": "27160", "code_commune_insee": "27578", "libell_d_acheminement": "STE MARIE D ATTEZ", "ligne_5": "DAME MARIE", "nom_de_la_commune": "STE MARIE D ATTEZ", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fd82e7be726e0d20c5d654a2dae24ecc4a5d1cd", "fields": {"nom_de_la_commune": "ST OUEN DES CHAMPS", "libell_d_acheminement": "ST OUEN DES CHAMPS", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27581"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c7022b80fb8f6c3221983856247b528a7d9299", "fields": {"nom_de_la_commune": "ST SAMSON DE LA ROQUE", "libell_d_acheminement": "ST SAMSON DE LA ROQUE", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27601"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef55be132e5b60fb324d7be40f44216d9f4f4b0f", "fields": {"nom_de_la_commune": "ST SEBASTIEN DE MORSENT", "libell_d_acheminement": "ST SEBASTIEN DE MORSENT", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27602"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8997231a6f377b13943fc7e61f4b96850dec81b", "fields": {"nom_de_la_commune": "ST SIMEON", "libell_d_acheminement": "ST SIMEON", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27603"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96115264f5e04d2bed0c0a827ebbec48bd3eb64a", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27606"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f9880d985c9f5a9e1a8027f53ee8f65413d240", "fields": {"nom_de_la_commune": "ST VIGOR", "libell_d_acheminement": "ST VIGOR", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27611"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40cf6c9d966e4e597dd94e7632a06e82a50e7bca", "fields": {"nom_de_la_commune": "SERQUIGNY", "libell_d_acheminement": "SERQUIGNY", "code_postal": "27470", "coordonnees_gps": [49.1014259839, 0.700715090149], "code_commune_insee": "27622"}, "geometry": {"type": "Point", "coordinates": [0.700715090149, 49.1014259839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc6aa5d587176d516fe51e04a57ed4ba8286b8a", "fields": {"nom_de_la_commune": "THIBOUVILLE", "libell_d_acheminement": "THIBOUVILLE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27630"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b89af255fc11e9941e230efcda94e4c66ade3638", "fields": {"nom_de_la_commune": "LE THUIT", "libell_d_acheminement": "LE THUIT", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27635"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39a435362adfd79290d82d36d81faba7d84e340", "fields": {"code_postal": "27370", "code_commune_insee": "27638", "libell_d_acheminement": "LE THUIT DE L OISON", "ligne_5": "LE THUIT ANGER", "nom_de_la_commune": "LE THUIT DE L OISON", "coordonnees_gps": [49.2357010366, 0.935247048397]}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec9999a26a1bda0331c910665a5d2a2c65f29e4f", "fields": {"code_postal": "27370", "code_commune_insee": "27638", "libell_d_acheminement": "LE THUIT DE L OISON", "ligne_5": "LE THUIT SIMER", "nom_de_la_commune": "LE THUIT DE L OISON", "coordonnees_gps": [49.2357010366, 0.935247048397]}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328739ba2671ab7ae04ad7f79536ea445ba199d2", "fields": {"nom_de_la_commune": "LE TILLEUL OTHON", "libell_d_acheminement": "LE TILLEUL OTHON", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27642"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10d10a938119e2fe7aa217fd06d7f485c6438c7", "fields": {"nom_de_la_commune": "TILLIERES SUR AVRE", "libell_d_acheminement": "TILLIERES SUR AVRE", "code_postal": "27570", "coordonnees_gps": [48.7688437949, 1.05443864674], "code_commune_insee": "27643"}, "geometry": {"type": "Point", "coordinates": [1.05443864674, 48.7688437949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "659a6b95c5c6fa6245df88f88a6b839cf22662ec", "fields": {"nom_de_la_commune": "TOUFFREVILLE", "libell_d_acheminement": "TOUFFREVILLE", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27649"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04165c8df4cc19bd9c238738685b78df54692073", "fields": {"nom_de_la_commune": "TOUTAINVILLE", "libell_d_acheminement": "TOUTAINVILLE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27656"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f40c19ea12c5d9f63733fc22c80a4a8973a3038b", "fields": {"nom_de_la_commune": "LE TRONQUAY", "libell_d_acheminement": "LE TRONQUAY", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27664"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "223bd329bb640de05c52d5853fc21fe1b3d09758", "fields": {"nom_de_la_commune": "LA VACHERIE", "libell_d_acheminement": "LA VACHERIE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27666"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285cf121445f2b217e003d2af4e5db7a060a5273", "fields": {"nom_de_la_commune": "VANDRIMARE", "libell_d_acheminement": "VANDRIMARE", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27670"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "943a66953374154458e4f1f78318b4e739227d4b", "fields": {"nom_de_la_commune": "VENABLES", "libell_d_acheminement": "VENABLES", "code_postal": "27940", "coordonnees_gps": [49.1799104876, 1.36654248146], "code_commune_insee": "27676"}, "geometry": {"type": "Point", "coordinates": [1.36654248146, 49.1799104876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66e6ca547366f5708e9500c07fe45baad84c2000", "fields": {"nom_de_la_commune": "VERNEUIL SUR AVRE", "libell_d_acheminement": "VERNEUIL SUR AVRE", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27679"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "760a33292ae2526fee4fd163e85b38139c104215", "fields": {"nom_de_la_commune": "VERNEUSSES", "libell_d_acheminement": "VERNEUSSES", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27680"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86fd1c0b72fd09d148d62e6b92ba0c87b3753bff", "fields": {"nom_de_la_commune": "VESLY", "libell_d_acheminement": "VESLY", "code_postal": "27870", "coordonnees_gps": [49.2421968033, 1.64200700948], "code_commune_insee": "27682"}, "geometry": {"type": "Point", "coordinates": [1.64200700948, 49.2421968033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b530173bb28c8535e300c38619ce05251fc9550", "fields": {"nom_de_la_commune": "LA VIEILLE LYRE", "libell_d_acheminement": "LA VIEILLE LYRE", "code_postal": "27330", "coordonnees_gps": [48.928948419, 0.685983737995], "code_commune_insee": "27685"}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da008fe6818dd20302b8972fb504db1a250a418", "fields": {"code_postal": "27240", "code_commune_insee": "27693", "libell_d_acheminement": "SYLVAINS LES MOULINS", "ligne_5": "COULONGES", "nom_de_la_commune": "SYLVAINS LES MOULINS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603c52942b17e9ffe6e4037b997f442df311850b", "fields": {"nom_de_la_commune": "VOISCREVILLE", "libell_d_acheminement": "VOISCREVILLE", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27699"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8482159d9293d121bd272df50264462e838ff45c", "fields": {"nom_de_la_commune": "VRAIVILLE", "libell_d_acheminement": "VRAIVILLE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27700"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30cf2c497adf06a504d8b19ca99764f4dcf02843", "fields": {"nom_de_la_commune": "AMILLY", "libell_d_acheminement": "AMILLY", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28006"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9a222cf7df042090ac8237483b173990742b185", "fields": {"nom_de_la_commune": "ARDELLES", "libell_d_acheminement": "ARDELLES", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28008"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c40456c576c052c70f965185abf55742996d5736", "fields": {"code_postal": "28700", "code_commune_insee": "28015", "libell_d_acheminement": "AUNEAU BLEURY ST SYMPHORIEN", "ligne_5": "BLEURY", "nom_de_la_commune": "AUNEAU BLEURY ST SYMPHORIEN", "coordonnees_gps": [48.4174133692, 1.78775113893]}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2026d554cc153b7b6ea3429a0897645b683922", "fields": {"code_postal": "28320", "code_commune_insee": "28023", "libell_d_acheminement": "BAILLEAU ARMENONVILLE", "ligne_5": "ARMENONVILLE LES GATINEAUX", "nom_de_la_commune": "BAILLEAU ARMENONVILLE", "coordonnees_gps": [48.5411997507, 1.69133759252]}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d05b6d5a297d18f229c66d6c9d6e9a9fb2dad735", "fields": {"nom_de_la_commune": "BAUDREVILLE", "libell_d_acheminement": "BAUDREVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28026"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04a718539ab1d5a53d5e1d621fc1055c36ee578", "fields": {"nom_de_la_commune": "BAZOCHES LES HAUTES", "libell_d_acheminement": "BAZOCHES LES HAUTES", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28029"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c81343a652ba39e03cd15ea161651f9a82080a47", "fields": {"nom_de_la_commune": "BEAUMONT LES AUTELS", "libell_d_acheminement": "BEAUMONT LES AUTELS", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28031"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb4fa11fc57b8eba007fbc641b015e738acceb48", "fields": {"nom_de_la_commune": "BEROU LA MULOTIERE", "libell_d_acheminement": "BEROU LA MULOTIERE", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28037"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b0ae14cc58ba5125076c1b03d2eeef130d50c03", "fields": {"nom_de_la_commune": "BETHONVILLIERS", "libell_d_acheminement": "BETHONVILLIERS", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28038"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e2b0b223ba85e293a6098abb94a7913831aa835", "fields": {"nom_de_la_commune": "BEVILLE LE COMTE", "libell_d_acheminement": "BEVILLE LE COMTE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28039"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41445113e2370541502b0e1566ee3d927fbe5c5", "fields": {"nom_de_la_commune": "BOISGASSON", "libell_d_acheminement": "BOISGASSON", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28044"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18dcdc9a42fb716dfa1b4a06d6ca4606e484e7d4", "fields": {"nom_de_la_commune": "BOISVILLE LA ST PERE", "libell_d_acheminement": "BOISVILLE LA ST PERE", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28047"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6304e543334a5fa7633dc6f42ae591a9bae91ca", "fields": {"nom_de_la_commune": "BOUGLAINVAL", "libell_d_acheminement": "BOUGLAINVAL", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28052"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cd46edafde26e4f8dbda057e4527942d520ce50", "fields": {"nom_de_la_commune": "BRECHAMPS", "libell_d_acheminement": "BRECHAMPS", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28058"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2cd62ebb0abdef3d43b01efb864ee114d178d45", "fields": {"nom_de_la_commune": "BREZOLLES", "libell_d_acheminement": "BREZOLLES", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28059"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a78282a307a8471741a63e1f774dc8ee3be02904", "fields": {"nom_de_la_commune": "BROU", "libell_d_acheminement": "BROU", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28061"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eacb23b612f044e392009e469848da9bafa62bf", "fields": {"nom_de_la_commune": "LA CHAPELLE FORAINVILLIERS", "libell_d_acheminement": "LA CHAPELLE FORAINVILLIERS", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28076"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab7814358f647e0f59665079d6078a780742905b", "fields": {"nom_de_la_commune": "CHAPELLE ROYALE", "libell_d_acheminement": "CHAPELLE ROYALE", "code_postal": "28290", "coordonnees_gps": [48.1141718404, 1.11818420399], "code_commune_insee": "28079"}, "geometry": {"type": "Point", "coordinates": [1.11818420399, 48.1141718404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1aecc2999bc2597452d53602ae22470592308ec", "fields": {"nom_de_la_commune": "CHARBONNIERES", "libell_d_acheminement": "CHARBONNIERES", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28080"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e84b082b20150baa7f2ae95cbf647a7c1e237f46", "fields": {"nom_de_la_commune": "CHARPONT", "libell_d_acheminement": "CHARPONT", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28082"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5bb4f65020e691eed2fd180a47a8878ddec9f0e", "fields": {"nom_de_la_commune": "GAYAN", "libell_d_acheminement": "GAYAN", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65189"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "249062ecf4f6ddb1d85f083198ae001ce0e6d081", "fields": {"nom_de_la_commune": "GENOS", "libell_d_acheminement": "GENOS", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65195"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "882759398419aff5a5fd60e5ae59742a9a97c64e", "fields": {"nom_de_la_commune": "GERDE", "libell_d_acheminement": "GERDE", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65198"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "220a4fd28fcba9f5f65668f6867837fb56028e41", "fields": {"nom_de_la_commune": "GERMS SUR L OUSSOUET", "libell_d_acheminement": "GERMS SUR L OUSSOUET", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65200"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f8dda16222dccc4ac3caeada95b1963ebdf51b3", "fields": {"nom_de_la_commune": "GEU", "libell_d_acheminement": "GEU", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65201"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f16bdac179a23d03e6ca50dc6842b5b9b646382a", "fields": {"nom_de_la_commune": "HACHAN", "libell_d_acheminement": "HACHAN", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65214"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8171ac395f07c0d71017f4ebf3900d4993b3d164", "fields": {"code_postal": "65250", "code_commune_insee": "65218", "libell_d_acheminement": "HECHES", "ligne_5": "REBOUC", "nom_de_la_commune": "HECHES", "coordonnees_gps": [43.0306895829, 0.387562975856]}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e183c94b810681c7c23798f538c1f34ed0927f8", "fields": {"nom_de_la_commune": "JARRET", "libell_d_acheminement": "JARRET", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65233"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d1671c50212182f0532458e7d821e261418139", "fields": {"nom_de_la_commune": "JEZEAU", "libell_d_acheminement": "JEZEAU", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65234"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6200056e836ab6b13afa2b2a8074eb824b7d0a94", "fields": {"nom_de_la_commune": "JUILLAN", "libell_d_acheminement": "JUILLAN", "code_postal": "65290", "coordonnees_gps": [43.1908085674, 0.0212768080657], "code_commune_insee": "65235"}, "geometry": {"type": "Point", "coordinates": [0.0212768080657, 43.1908085674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc1686d359b716b6e1f6d3dd16d611f0f67ad671", "fields": {"nom_de_la_commune": "JULOS", "libell_d_acheminement": "JULOS", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65236"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "039902b97fb814ccb3a2a2585ce87bd128d1a183", "fields": {"nom_de_la_commune": "JUNCALAS", "libell_d_acheminement": "JUNCALAS", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65237"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aae413f1b3cb1b501e0525e389401c4831869b3", "fields": {"nom_de_la_commune": "LABORDE", "libell_d_acheminement": "LABORDE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65241"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c340c312affe59ca47c6c1a8d9e78fae03ebdd", "fields": {"nom_de_la_commune": "LAGRANGE", "libell_d_acheminement": "LAGRANGE", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65245"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1cc9326e09e69560514e69368a4868e761b4957", "fields": {"nom_de_la_commune": "ARRAYOU LAHITTE", "libell_d_acheminement": "ARRAYOU LAHITTE", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65247"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693c588528fde8427c7e606a63cf4364c53ee8bc", "fields": {"nom_de_la_commune": "LAMEAC", "libell_d_acheminement": "LAMEAC", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65254"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "086ca0c9f98b9841e450860d645825ab27dad281", "fields": {"nom_de_la_commune": "LANESPEDE", "libell_d_acheminement": "LANESPEDE", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65256"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "114ee576e22046e7b787208fb7a515d643f2718a", "fields": {"nom_de_la_commune": "LAU BALAGNAS", "libell_d_acheminement": "LAU BALAGNAS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65267"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3d370fc94ad2f6bd91290d82ca03091bce54fc", "fields": {"nom_de_la_commune": "LAYRISSE", "libell_d_acheminement": "LAYRISSE", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65268"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd1869e7b2c9b5ac40a3cacbdf9242b0ff0d727", "fields": {"nom_de_la_commune": "LESPOUEY", "libell_d_acheminement": "LESPOUEY", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65270"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2cc4400bb7b4ba1e349ca875d55076aed666c7c", "fields": {"nom_de_la_commune": "LHEZ", "libell_d_acheminement": "LHEZ", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65272"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087eff038be9f8e3d2da38379679038fb1aef069", "fields": {"nom_de_la_commune": "LIES", "libell_d_acheminement": "LIES", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65275"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5983166342ae3752abd1569f9144508292a9c4fc", "fields": {"nom_de_la_commune": "LOMBRES", "libell_d_acheminement": "LOMBRES", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65277"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e632e4591d14d8169313633532366d1ffc28c9c7", "fields": {"nom_de_la_commune": "LOMNE", "libell_d_acheminement": "LOMNE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65278"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5669c1d696994d4965908a72f60fd2f6e2e2109d", "fields": {"nom_de_la_commune": "LUC", "libell_d_acheminement": "LUC", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65290"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "923fc3209de3e00f9c98fdb87fd233432f558fd8", "fields": {"code_postal": "65120", "code_commune_insee": "65295", "libell_d_acheminement": "LUZ ST SAUVEUR", "ligne_5": "ST SAUVEUR LES BAINS", "nom_de_la_commune": "LUZ ST SAUVEUR", "coordonnees_gps": [42.8310164277, 0.0356881047595]}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3294677ae4070b9b2e201ad2bb085d64996eac", "fields": {"nom_de_la_commune": "MADIRAN", "libell_d_acheminement": "MADIRAN", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65296"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f75ff16f8ff2f3ac618288ed242de669e3fdac8", "fields": {"nom_de_la_commune": "MAUBOURGUET", "libell_d_acheminement": "MAUBOURGUET", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65304"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091bb60fd516f41ea1bdd6ee7dffa0a3c98ffc0c", "fields": {"nom_de_la_commune": "MAZERES DE NESTE", "libell_d_acheminement": "MAZERES DE NESTE", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65307"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a10de87f7dd80093c5cd1799f5a3293dfd22b8c", "fields": {"nom_de_la_commune": "MONLEON MAGNOAC", "libell_d_acheminement": "MONLEON MAGNOAC", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65315"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7543860652e8a65f0946781d8d5534b107d03b55", "fields": {"nom_de_la_commune": "MONTASTRUC", "libell_d_acheminement": "MONTASTRUC", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65318"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afd7bad82a4d342520ee69c79f0d45034e6532fc", "fields": {"nom_de_la_commune": "MONTIGNAC", "libell_d_acheminement": "MONTIGNAC", "code_postal": "65690", "coordonnees_gps": [43.1995880438, 0.138139149082], "code_commune_insee": "65321"}, "geometry": {"type": "Point", "coordinates": [0.138139149082, 43.1995880438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76b963679a25a9732c51f17f7580f46a34770ab1", "fields": {"nom_de_la_commune": "OLEAC DEBAT", "libell_d_acheminement": "OLEAC DEBAT", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65332"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b716862cd34977845cb96fde241d9b13fe74b9", "fields": {"nom_de_la_commune": "ORDIZAN", "libell_d_acheminement": "ORDIZAN", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65335"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b675e91cb828d8dd18c4d084b46618fa5e55c0df", "fields": {"nom_de_la_commune": "ORIEUX", "libell_d_acheminement": "ORIEUX", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65337"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43242c4eb922e9a9268ddd33eab7809d75228f41", "fields": {"nom_de_la_commune": "ORIGNAC", "libell_d_acheminement": "ORIGNAC", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65338"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cfa94db9acc53feca13ca7f902ba3481050f3bb", "fields": {"nom_de_la_commune": "PEYRIGUERE", "libell_d_acheminement": "PEYRIGUERE", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65359"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a3972924a54ac944154d47ab73bf0846a16be8b", "fields": {"nom_de_la_commune": "PEYRUN", "libell_d_acheminement": "PEYRUN", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65361"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9dd923c60d0aafad0a0aa622e1d8a3c21971fe1", "fields": {"nom_de_la_commune": "POUMAROUS", "libell_d_acheminement": "POUMAROUS", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65367"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09a93ea54c7daad37c8f72510e7615d5f84b0bdd", "fields": {"nom_de_la_commune": "PUJO", "libell_d_acheminement": "PUJO", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65372"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d87c1b6613a5aadfc98b9ce6934b069cdb744bc", "fields": {"nom_de_la_commune": "RIS", "libell_d_acheminement": "RIS", "code_postal": "65590", "coordonnees_gps": [42.8710607597, 0.412551570718], "code_commune_insee": "65379"}, "geometry": {"type": "Point", "coordinates": [0.412551570718, 42.8710607597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5416edc6a4e7f9496c7ad80173ffa6189f1b201", "fields": {"nom_de_la_commune": "SADOURNIN", "libell_d_acheminement": "SADOURNIN", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65383"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7afe225eee667c169d70b8da325c3b4bfd2f16d", "fields": {"nom_de_la_commune": "ST LEZER", "libell_d_acheminement": "ST LEZER", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65390"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e16d4b3def863edb9bde189a9ec235539ddaacab", "fields": {"nom_de_la_commune": "ST PASTOUS", "libell_d_acheminement": "ST PASTOUS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65393"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac1219d648c090a5c6d53533f49a2edc82efc6f", "fields": {"nom_de_la_commune": "SALIGOS", "libell_d_acheminement": "SALIGOS", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65399"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "967022c26498be2dbf5b5c4512d7eed58bc80afe", "fields": {"nom_de_la_commune": "SARLABOUS", "libell_d_acheminement": "SARLABOUS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65405"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1960f24011c8f51538bff705b3e65149e94a37db", "fields": {"nom_de_la_commune": "SARNIGUET", "libell_d_acheminement": "SARNIGUET", "code_postal": "65390", "coordonnees_gps": [43.3119188804, 0.08204368276], "code_commune_insee": "65406"}, "geometry": {"type": "Point", "coordinates": [0.08204368276, 43.3119188804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c1bc06e5aa7e84652dc59008cc10d6c8562b986", "fields": {"nom_de_la_commune": "SASSIS", "libell_d_acheminement": "SASSIS", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65411"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63fb36f155d6dc994ae25f530c561e458fbd3905", "fields": {"nom_de_la_commune": "SEGALAS", "libell_d_acheminement": "SEGALAS", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65414"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "214deea9776320b2d13a6dd6b8fbdb4151d144a7", "fields": {"nom_de_la_commune": "SEGUS", "libell_d_acheminement": "SEGUS", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65415"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "372fd9e3e0d033d69fb8825d34f63164d1ea398e", "fields": {"nom_de_la_commune": "SERE LANSO", "libell_d_acheminement": "SERE LANSO", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65421"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b58c00485bf8882ff5e7434e007f2ec4ef1dfe5e", "fields": {"nom_de_la_commune": "TILHOUSE", "libell_d_acheminement": "TILHOUSE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65445"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf9c12a523c6cb36d36a626439fe0dd81cf14d87", "fields": {"nom_de_la_commune": "TUZAGUET", "libell_d_acheminement": "TUZAGUET", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65455"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7bd44c2944fd6fb522dc50897fa6cad42b29acd", "fields": {"nom_de_la_commune": "UGLAS", "libell_d_acheminement": "UGLAS", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65456"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40b90f3d18e90a5844508a7b2bea9d42cea07f12", "fields": {"nom_de_la_commune": "UZ", "libell_d_acheminement": "UZ", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65458"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521dfd2e08d594c4106272bf6b0aae18e3a2dc13", "fields": {"nom_de_la_commune": "UZER", "libell_d_acheminement": "UZER", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65459"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1dda7e01709261891cfd6c8c3c33f9329aa6cd", "fields": {"nom_de_la_commune": "VIDOU", "libell_d_acheminement": "VIDOU", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65461"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a4d4a807d99f5582341b1dee91a02afae65f31", "fields": {"nom_de_la_commune": "VIEUZOS", "libell_d_acheminement": "VIEUZOS", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65468"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13358568e0acd57103d038bcbc74cc976edccdf3", "fields": {"nom_de_la_commune": "VIGER", "libell_d_acheminement": "VIGER", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65470"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84fb7fcbc5cff2e92c2195820c466c2f6448e3d1", "fields": {"nom_de_la_commune": "VIGNEC", "libell_d_acheminement": "VIGNEC", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65471"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0deb17dfdc648fd147c230ca3b4e5bac539dc996", "fields": {"nom_de_la_commune": "VILLELONGUE", "libell_d_acheminement": "VILLELONGUE", "code_postal": "65260", "coordonnees_gps": [42.9464075776, -0.0299417216939], "code_commune_insee": "65473"}, "geometry": {"type": "Point", "coordinates": [-0.0299417216939, 42.9464075776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6d0dc11bfc4dbd10c7f1dcdef70a6bc0bde9c5", "fields": {"nom_de_la_commune": "VILLENAVE PRES MARSAC", "libell_d_acheminement": "VILLENAVE PRES MARSAC", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65477"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cecf672cc12eeb283ced9b56918de39788042004", "fields": {"nom_de_la_commune": "VISCOS", "libell_d_acheminement": "VISCOS", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65478"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab43ead8717bac59fb751e28048a0a6e1e22e1f9", "fields": {"nom_de_la_commune": "VISKER", "libell_d_acheminement": "VISKER", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65479"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a37c6ed00a172c6635f7a90439dd1ea4f8ff662", "fields": {"nom_de_la_commune": "BAREGES", "libell_d_acheminement": "BAREGES", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65481"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1cec96272c5ea6f6ee80c02b56cadf9b7c19dc", "fields": {"nom_de_la_commune": "ANGOUSTRINE VILLENEUVE DES ESCALDES", "libell_d_acheminement": "ANGOUSTRINE VILLENEUVE ESCALDES", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66005"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20dee28f0c697a5edf382d5b2d8e6918c9568dd2", "fields": {"code_postal": "66760", "code_commune_insee": "66005", "libell_d_acheminement": "ANGOUSTRINE VILLENEUVE ESCALDES", "ligne_5": "VILLENEUVE DES ESCALDES", "nom_de_la_commune": "ANGOUSTRINE VILLENEUVE DES ESCALDES", "coordonnees_gps": [42.529853625, 1.88244729389]}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe129e7c59d1a15c172d7b77923ee58156d784b6", "fields": {"nom_de_la_commune": "ARLES SUR TECH", "libell_d_acheminement": "ARLES SUR TECH", "code_postal": "66150", "coordonnees_gps": [42.4639953782, 2.57094475406], "code_commune_insee": "66009"}, "geometry": {"type": "Point", "coordinates": [2.57094475406, 42.4639953782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece18ae2d8b4d69b5bc2b8ebce0fcd60e62e9162", "fields": {"nom_de_la_commune": "BAHO", "libell_d_acheminement": "BAHO", "code_postal": "66540", "coordonnees_gps": [42.706004136, 2.82015872285], "code_commune_insee": "66012"}, "geometry": {"type": "Point", "coordinates": [2.82015872285, 42.706004136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14470f331add35308d46371f65a3677655f3bd23", "fields": {"nom_de_la_commune": "BAIXAS", "libell_d_acheminement": "BAIXAS", "code_postal": "66390", "coordonnees_gps": [42.7456296535, 2.80571785995], "code_commune_insee": "66014"}, "geometry": {"type": "Point", "coordinates": [2.80571785995, 42.7456296535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "971aa6630d21bfeac056c2e6a758a4fbaaf03df1", "fields": {"nom_de_la_commune": "BANYULS SUR MER", "libell_d_acheminement": "BANYULS SUR MER", "code_postal": "66650", "coordonnees_gps": [42.4611706779, 3.09951528001], "code_commune_insee": "66016"}, "geometry": {"type": "Point", "coordinates": [3.09951528001, 42.4611706779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce6771390d0d2072663283ac84d7588f338fdbbf", "fields": {"code_postal": "66420", "code_commune_insee": "66017", "libell_d_acheminement": "LE BARCARES", "ligne_5": "PORT BARCARES", "nom_de_la_commune": "LE BARCARES", "coordonnees_gps": [42.8127463649, 3.02827722038]}, "geometry": {"type": "Point", "coordinates": [3.02827722038, 42.8127463649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95940dc61c54b6fa6078e0de22b0161ee9526750", "fields": {"nom_de_la_commune": "BOLQUERE", "libell_d_acheminement": "BOLQUERE", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66020"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23990491a25b0e3ba8f383970be122c619cd872b", "fields": {"code_postal": "66210", "code_commune_insee": "66020", "libell_d_acheminement": "BOLQUERE", "ligne_5": "SUPERBOLQUERE", "nom_de_la_commune": "BOLQUERE", "coordonnees_gps": [42.5768510498, 2.08522065901]}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1891a95a63c676c89d84fb2d191368871b71fb89", "fields": {"nom_de_la_commune": "BOULETERNERE", "libell_d_acheminement": "BOULETERNERE", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66023"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4da24da98dda206b699acffa5f2dfadd539d3f1", "fields": {"code_postal": "66760", "code_commune_insee": "66025", "libell_d_acheminement": "BOURG MADAME", "ligne_5": "CALDEGAS", "nom_de_la_commune": "BOURG MADAME", "coordonnees_gps": [42.529853625, 1.88244729389]}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b4c02b508c0a06b0be398614e7e1b577af5dd5", "fields": {"nom_de_la_commune": "LA CABANASSE", "libell_d_acheminement": "LA CABANASSE", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66027"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d800fe67814d7c444636186b66a653b973ecf419", "fields": {"nom_de_la_commune": "CAIXAS", "libell_d_acheminement": "CAIXAS", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66029"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2033ce33d3c69457f0a858ef54b94daef6e92556", "fields": {"nom_de_la_commune": "CAMPOME", "libell_d_acheminement": "CAMPOME", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66034"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3784e16787110f3110514af7dd0b2fcaec7b16ae", "fields": {"nom_de_la_commune": "CANAVEILLES", "libell_d_acheminement": "CANAVEILLES", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66036"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb863f3fa6e4b9396b7b75193cc8eb9177325d11", "fields": {"nom_de_la_commune": "CAUDIES DE CONFLENT", "libell_d_acheminement": "CAUDIES DE CONFLENT", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66047"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddfea5749362c82cb1ec79af332313e666d2ba7c", "fields": {"nom_de_la_commune": "CODALET", "libell_d_acheminement": "CODALET", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66052"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b9ef8c552381074d9b0e59dfe530770f7b3e7d", "fields": {"nom_de_la_commune": "ELNE", "libell_d_acheminement": "ELNE", "code_postal": "66200", "coordonnees_gps": [42.6141104205, 2.96373811685], "code_commune_insee": "66065"}, "geometry": {"type": "Point", "coordinates": [2.96373811685, 42.6141104205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89c350f2457a6d72ef1229602c8bc74112a0d6b2", "fields": {"nom_de_la_commune": "ENVEITG", "libell_d_acheminement": "ENVEITG", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66066"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ba491481202fc1097fbc3bd168e314f4ea1469", "fields": {"nom_de_la_commune": "ESTAVAR", "libell_d_acheminement": "ESTAVAR", "code_postal": "66800", "coordonnees_gps": [42.4383838343, 2.06806880933], "code_commune_insee": "66072"}, "geometry": {"type": "Point", "coordinates": [2.06806880933, 42.4383838343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f2bbed541f06a000a000b077b4658410c8bc42", "fields": {"nom_de_la_commune": "ESTOHER", "libell_d_acheminement": "ESTOHER", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66073"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6946461e73fe38e255fdf322ef03ad7634c4c0ad", "fields": {"nom_de_la_commune": "FILLOLS", "libell_d_acheminement": "FILLOLS", "code_postal": "66820", "coordonnees_gps": [42.5365726469, 2.40581074719], "code_commune_insee": "66078"}, "geometry": {"type": "Point", "coordinates": [2.40581074719, 42.5365726469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05204766c60e5f3d4254bdcfdc34f4d25d65e289", "fields": {"nom_de_la_commune": "FUILLA", "libell_d_acheminement": "FUILLA", "code_postal": "66820", "coordonnees_gps": [42.5365726469, 2.40581074719], "code_commune_insee": "66085"}, "geometry": {"type": "Point", "coordinates": [2.40581074719, 42.5365726469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0270bf09055c970d741d0b17023846195b17c26", "fields": {"nom_de_la_commune": "ILLE SUR TET", "libell_d_acheminement": "ILLE SUR TET", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66088"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b71d730572bea32a1826ea637a44de750502b72", "fields": {"nom_de_la_commune": "LATOUR DE CAROL", "libell_d_acheminement": "LATOUR DE CAROL", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66095"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71009c6d06084edbcd55ef7ffbe3b73f1f479bbd", "fields": {"nom_de_la_commune": "LESQUERDE", "libell_d_acheminement": "LESQUERDE", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66097"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5964eb3c7fab13ab4683a8721d5d4791616a1ee0", "fields": {"nom_de_la_commune": "LLO", "libell_d_acheminement": "LLO", "code_postal": "66800", "coordonnees_gps": [42.4383838343, 2.06806880933], "code_commune_insee": "66100"}, "geometry": {"type": "Point", "coordinates": [2.06806880933, 42.4383838343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc885b3b5ecb848925a330add92c8055843c1cce", "fields": {"nom_de_la_commune": "MANTET", "libell_d_acheminement": "MANTET", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66102"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fe6354d176f676e82dd2dfabeaacf1d7c198d78", "fields": {"nom_de_la_commune": "MARQUIXANES", "libell_d_acheminement": "MARQUIXANES", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66103"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c59bea25928b6e251ee2984a526de74b7b0cc4", "fields": {"nom_de_la_commune": "MAUREILLAS LAS ILLAS", "libell_d_acheminement": "MAUREILLAS LAS ILLAS", "code_postal": "66480", "coordonnees_gps": [42.4667287992, 2.83075140133], "code_commune_insee": "66106"}, "geometry": {"type": "Point", "coordinates": [2.83075140133, 42.4667287992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1e88a80061d5c17dd6ee8d5f4b2cbe2296f1d4", "fields": {"code_postal": "66480", "code_commune_insee": "66106", "libell_d_acheminement": "MAUREILLAS LAS ILLAS", "ligne_5": "LAS ILLAS", "nom_de_la_commune": "MAUREILLAS LAS ILLAS", "coordonnees_gps": [42.4667287992, 2.83075140133]}, "geometry": {"type": "Point", "coordinates": [2.83075140133, 42.4667287992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d6283202bf22a3447d683b4a99ab0fbf1ed759", "fields": {"nom_de_la_commune": "MONTESCOT", "libell_d_acheminement": "MONTESCOT", "code_postal": "66200", "coordonnees_gps": [42.6141104205, 2.96373811685], "code_commune_insee": "66114"}, "geometry": {"type": "Point", "coordinates": [2.96373811685, 42.6141104205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3aece8d3fc3d147726d78c681e8db326bba9c7e", "fields": {"code_postal": "66120", "code_commune_insee": "66124", "libell_d_acheminement": "FONT ROMEU ODEILLO VIA", "ligne_5": "ODEILLO VIA", "nom_de_la_commune": "FONT ROMEU ODEILLO VIA", "coordonnees_gps": [42.5100577993, 2.01893656435]}, "geometry": {"type": "Point", "coordinates": [2.01893656435, 42.5100577993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d6b00138739c445fa9702f5f78cc92dbe5aaf1", "fields": {"nom_de_la_commune": "OLETTE", "libell_d_acheminement": "OLETTE", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66125"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f231878d3966ec2c42866fd9d9d5e4642907dfc", "fields": {"nom_de_la_commune": "PALAU DEL VIDRE", "libell_d_acheminement": "PALAU DEL VIDRE", "code_postal": "66690", "coordonnees_gps": [42.522189398, 2.97653046487], "code_commune_insee": "66133"}, "geometry": {"type": "Point", "coordinates": [2.97653046487, 42.522189398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd89e29c6eb0f0ec06acd0511a43b7d9310bc54f", "fields": {"nom_de_la_commune": "SOULTZ LES BAINS", "libell_d_acheminement": "SOULTZ LES BAINS", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67473"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d4b37b1cc3b6c108adeb33d8e17f755e611549", "fields": {"nom_de_la_commune": "STEIGE", "libell_d_acheminement": "STEIGE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67477"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5005ddc2050a3ae19eee5b92bf32e3d9dc4bd936", "fields": {"nom_de_la_commune": "STRUTH", "libell_d_acheminement": "STRUTH", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67483"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1844d539f6c3471e2a577d2ddb212a75e1c23544", "fields": {"nom_de_la_commune": "STUNDWILLER", "libell_d_acheminement": "STUNDWILLER", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67484"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe064dbafac84ba93ba267a38cc671c4b72514c1", "fields": {"nom_de_la_commune": "SUNDHOUSE", "libell_d_acheminement": "SUNDHOUSE", "code_postal": "67920", "coordonnees_gps": [48.2548302573, 7.63036029569], "code_commune_insee": "67486"}, "geometry": {"type": "Point", "coordinates": [7.63036029569, 48.2548302573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d315cee5a52e987dc89d2b7a89a6d6b6ecef709", "fields": {"code_postal": "67440", "code_commune_insee": "67489", "libell_d_acheminement": "THAL MARMOUTIER", "ligne_5": "ST GALL", "nom_de_la_commune": "THAL MARMOUTIER", "coordonnees_gps": [48.685560689, 7.36622848676]}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79543df03eb97533e6f08d9c9080a875bff45ec0", "fields": {"nom_de_la_commune": "URMATT", "libell_d_acheminement": "URMATT", "code_postal": "67280", "coordonnees_gps": [48.5545295138, 7.30377202795], "code_commune_insee": "67500"}, "geometry": {"type": "Point", "coordinates": [7.30377202795, 48.5545295138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39470366869bf1d5579fe82440449308fa9b5250", "fields": {"nom_de_la_commune": "UTTENHEIM", "libell_d_acheminement": "UTTENHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67501"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cca4e273ede188bb96be8f293f0edef5a3f5021", "fields": {"nom_de_la_commune": "VALFF", "libell_d_acheminement": "VALFF", "code_postal": "67210", "coordonnees_gps": [48.4477372351, 7.50825704753], "code_commune_insee": "67504"}, "geometry": {"type": "Point", "coordinates": [7.50825704753, 48.4477372351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50faefde89aea899b05eb8398a602ad62a0e9a59", "fields": {"nom_de_la_commune": "LA VANCELLE", "libell_d_acheminement": "LA VANCELLE", "code_postal": "67730", "coordonnees_gps": [48.2803512075, 7.36339905958], "code_commune_insee": "67505"}, "geometry": {"type": "Point", "coordinates": [7.36339905958, 48.2803512075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "706e4092f1a422cd55c440bb824fd466f24b16b4", "fields": {"nom_de_la_commune": "WALBOURG", "libell_d_acheminement": "WALBOURG", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67511"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95bc200a92e3a56527a3d7adae5b1b982de58919", "fields": {"nom_de_la_commune": "WALTENHEIM SUR ZORN", "libell_d_acheminement": "WALTENHEIM SUR ZORN", "code_postal": "67670", "coordonnees_gps": [48.7613693186, 7.64473130495], "code_commune_insee": "67516"}, "geometry": {"type": "Point", "coordinates": [7.64473130495, 48.7613693186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99bb54bbb315fc11f2d8c3dbcf1881eb424cfc33", "fields": {"nom_de_la_commune": "LA WANTZENAU", "libell_d_acheminement": "LA WANTZENAU", "code_postal": "67610", "coordonnees_gps": [48.6591055879, 7.83132660472], "code_commune_insee": "67519"}, "geometry": {"type": "Point", "coordinates": [7.83132660472, 48.6591055879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cce6046c28bdb5ae2f84aef8e086e5423a9a198", "fields": {"code_postal": "67310", "code_commune_insee": "67520", "libell_d_acheminement": "WASSELONNE", "ligne_5": "BRECHLINGEN", "nom_de_la_commune": "WASSELONNE", "coordonnees_gps": [48.6178840196, 7.42141185001]}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9c2da51a6e76741c86b29f48700614c0510913", "fields": {"nom_de_la_commune": "WESTHOUSE", "libell_d_acheminement": "WESTHOUSE", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67526"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52bce64f1ae9c79a69acd6104dfdad636cd61b0f", "fields": {"nom_de_la_commune": "WESTHOUSE MARMOUTIER", "libell_d_acheminement": "WESTHOUSE MARMOUTIER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67527"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13ec11508a47f3e20f5bdbc8e2b9d62db5e7f8d", "fields": {"nom_de_la_commune": "WICKERSHEIM WILSHAUSEN", "libell_d_acheminement": "WICKERSHEIM WILSHAUSEN", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67530"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cda797f0fc3d28bd7d420c7b66667cd4382bc77", "fields": {"nom_de_la_commune": "WINGERSHEIM LES QUATRE BANS", "libell_d_acheminement": "WINGERSHEIM LES QUATRE BANS", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67539"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b4c49be97c3b455a913d1bc38fa971ab3eae3a", "fields": {"code_postal": "67170", "code_commune_insee": "67539", "libell_d_acheminement": "WINGERSHEIM LES QUATRE BANS", "ligne_5": "HOHATZENHEIM", "nom_de_la_commune": "WINGERSHEIM LES QUATRE BANS", "coordonnees_gps": [48.7372742925, 7.70176270666]}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cfd34da3e726f155d44329ff19b9b14e0e6619d", "fields": {"code_postal": "67270", "code_commune_insee": "67539", "libell_d_acheminement": "WINGERSHEIM LES QUATRE BANS", "ligne_5": "GINGSHEIM", "nom_de_la_commune": "WINGERSHEIM LES QUATRE BANS", "coordonnees_gps": [48.7485075734, 7.5652768188]}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dbc29f08fc1dcdd3cf818bcf925f994db259a84", "fields": {"nom_de_la_commune": "WISCHES", "libell_d_acheminement": "WISCHES", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67543"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9062db21b145a4b9f94e753a2da0daeeb28377d", "fields": {"nom_de_la_commune": "WIWERSHEIM", "libell_d_acheminement": "WIWERSHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67548"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca4967f63c405fa78907198ad9dab6f38bd7871", "fields": {"nom_de_la_commune": "ZITTERSHEIM", "libell_d_acheminement": "ZITTERSHEIM", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67559"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "180e41642a9c57bc64517dfa32efa91a52990697", "fields": {"nom_de_la_commune": "BALGAU", "libell_d_acheminement": "BALGAU", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68016"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0c8c7fafbb51bcc6121ff3fa3ad1d7ffc4a1370", "fields": {"nom_de_la_commune": "BALLERSDORF", "libell_d_acheminement": "BALLERSDORF", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68017"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a59e56d71568fbba34b500c69e701664171bcd34", "fields": {"nom_de_la_commune": "BALSCHWILLER", "libell_d_acheminement": "BALSCHWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68018"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba1acdec44349bd2895deb4808c1c38275b1262f", "fields": {"nom_de_la_commune": "BARTENHEIM", "libell_d_acheminement": "BARTENHEIM", "code_postal": "68870", "coordonnees_gps": [47.6331033531, 7.48190833837], "code_commune_insee": "68021"}, "geometry": {"type": "Point", "coordinates": [7.48190833837, 47.6331033531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0664c59759c16f1ab8a3e402024d074f8f0f6c", "fields": {"nom_de_la_commune": "BEBLENHEIM", "libell_d_acheminement": "BEBLENHEIM", "code_postal": "68980", "coordonnees_gps": [48.1597092029, 7.34129342284], "code_commune_insee": "68023"}, "geometry": {"type": "Point", "coordinates": [7.34129342284, 48.1597092029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "205ca2b9d6eac5326b51ec879c630e060fef15ad", "fields": {"nom_de_la_commune": "BELLEMAGNY", "libell_d_acheminement": "BELLEMAGNY", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68024"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d056c176497c8f847453af7af21b694d63340c", "fields": {"nom_de_la_commune": "BERGHOLTZZELL", "libell_d_acheminement": "BERGHOLTZZELL", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68030"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9992911c5ffbc955e502622ca118292cf8080b31", "fields": {"nom_de_la_commune": "BITSCHWILLER LES THANN", "libell_d_acheminement": "BITSCHWILLER LES THANN", "code_postal": "68620", "coordonnees_gps": [47.8266830087, 7.06905643042], "code_commune_insee": "68040"}, "geometry": {"type": "Point", "coordinates": [7.06905643042, 47.8266830087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3af7fcf138caf22fc63be8e7d23ba18d35e9468d", "fields": {"nom_de_la_commune": "BLODELSHEIM", "libell_d_acheminement": "BLODELSHEIM", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68041"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ad4c96b01872ae03a7cbbe4ab136069ad37f0d", "fields": {"nom_de_la_commune": "BOLLWILLER", "libell_d_acheminement": "BOLLWILLER", "code_postal": "68540", "coordonnees_gps": [47.8545137602, 7.25864777821], "code_commune_insee": "68043"}, "geometry": {"type": "Point", "coordinates": [7.25864777821, 47.8545137602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "529834d50b95dbda93e4b954a3887b820fce4270", "fields": {"nom_de_la_commune": "LE BONHOMME", "libell_d_acheminement": "LE BONHOMME", "code_postal": "68650", "coordonnees_gps": [48.1617407345, 7.12836272368], "code_commune_insee": "68044"}, "geometry": {"type": "Point", "coordinates": [7.12836272368, 48.1617407345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea81759a92bd66dfc481027238c264b01ef62e88", "fields": {"nom_de_la_commune": "BRUEBACH", "libell_d_acheminement": "BRUEBACH", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68055"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "996dcda6c89c818a29eb12e71c7405c19c45f3f3", "fields": {"nom_de_la_commune": "BUETHWILLER", "libell_d_acheminement": "BUETHWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68057"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee525b0dd1628fb254a5364fd7650221093f0d27", "fields": {"nom_de_la_commune": "BURNHAUPT LE HAUT", "libell_d_acheminement": "BURNHAUPT LE HAUT", "code_postal": "68520", "coordonnees_gps": [47.7328574448, 7.15152670714], "code_commune_insee": "68060"}, "geometry": {"type": "Point", "coordinates": [7.15152670714, 47.7328574448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e495deeac55bc572499dee7f53adf16c94f9f1f0", "fields": {"nom_de_la_commune": "GREZIEUX LE FROMENTAL", "libell_d_acheminement": "GREZIEUX LE FROMENTAL", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42105"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec907d4be93e1127979d7ccea364c47aff6ed1ff", "fields": {"nom_de_la_commune": "LEIGNEUX", "libell_d_acheminement": "LEIGNEUX", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42119"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd787d76ce80d08b5903122c9ad76f742c77e8bb", "fields": {"nom_de_la_commune": "LEZIGNEUX", "libell_d_acheminement": "LEZIGNEUX", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42122"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b4d875415ce8d8d0b918bb52f154c30fc2318b3", "fields": {"nom_de_la_commune": "MACLAS", "libell_d_acheminement": "MACLAS", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42129"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "794e05c3aa4e6a0edc472c2db479b80b7f9de72f", "fields": {"nom_de_la_commune": "MALLEVAL", "libell_d_acheminement": "MALLEVAL", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42132"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4785073f77f9e6fdc944fac9288c7fd6ccae7dc", "fields": {"nom_de_la_commune": "MARCENOD", "libell_d_acheminement": "MARCENOD", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42133"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7baf743c37f469259be00244009042fe1842f232", "fields": {"nom_de_la_commune": "MARS", "libell_d_acheminement": "MARS", "code_postal": "42750", "coordonnees_gps": [46.1636009324, 4.23557932675], "code_commune_insee": "42141"}, "geometry": {"type": "Point", "coordinates": [4.23557932675, 46.1636009324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d2df30fffc6e0eecc8b3084eef9968e9248bd7", "fields": {"nom_de_la_commune": "NEAUX", "libell_d_acheminement": "NEAUX", "code_postal": "42470", "coordonnees_gps": [45.9509348, 4.21878807509], "code_commune_insee": "42153"}, "geometry": {"type": "Point", "coordinates": [4.21878807509, 45.9509348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23e777af3696568a16adb0a33da48fcc2c3d272", "fields": {"nom_de_la_commune": "NERONDE", "libell_d_acheminement": "NERONDE", "code_postal": "42510", "coordonnees_gps": [45.8327642613, 4.18646349405], "code_commune_insee": "42154"}, "geometry": {"type": "Point", "coordinates": [4.18646349405, 45.8327642613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40984089fd3e39a08edc435efaaea7873692725d", "fields": {"nom_de_la_commune": "NEULISE", "libell_d_acheminement": "NEULISE", "code_postal": "42590", "coordonnees_gps": [45.9031033118, 4.13012302493], "code_commune_insee": "42156"}, "geometry": {"type": "Point", "coordinates": [4.13012302493, 45.9031033118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7d8e0b68d4d3b03e77c8dce71804be248fc8efd", "fields": {"nom_de_la_commune": "PANISSIERES", "libell_d_acheminement": "PANISSIERES", "code_postal": "42360", "coordonnees_gps": [45.793651332, 4.32907155822], "code_commune_insee": "42165"}, "geometry": {"type": "Point", "coordinates": [4.32907155822, 45.793651332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95c157b3fd5169adeef2554802a5fa3dd12e1755", "fields": {"nom_de_la_commune": "PERIGNEUX", "libell_d_acheminement": "PERIGNEUX", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42169"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915179e107865c565b02d2b95b1f4e1e9ba99126", "fields": {"nom_de_la_commune": "PINAY", "libell_d_acheminement": "PINAY", "code_postal": "42590", "coordonnees_gps": [45.9031033118, 4.13012302493], "code_commune_insee": "42171"}, "geometry": {"type": "Point", "coordinates": [4.13012302493, 45.9031033118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ce233b68cc5af370893e503d2ceab12967e2d23", "fields": {"nom_de_la_commune": "PLANFOY", "libell_d_acheminement": "PLANFOY", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42172"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3415e6525fb0ba47358accfb50aa202cf5ae9aa", "fields": {"nom_de_la_commune": "POUILLY LES FEURS", "libell_d_acheminement": "POUILLY LES FEURS", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42175"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74da66033cd7f3dc8a3c00a044e337041b022d93", "fields": {"nom_de_la_commune": "POUILLY LES NONAINS", "libell_d_acheminement": "POUILLY LES NONAINS", "code_postal": "42155", "coordonnees_gps": [45.9923375929, 3.9763968216], "code_commune_insee": "42176"}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "908609ce41f9d099587521fb24ea44c87990da20", "fields": {"nom_de_la_commune": "POUILLY SOUS CHARLIEU", "libell_d_acheminement": "POUILLY SOUS CHARLIEU", "code_postal": "42720", "coordonnees_gps": [46.1272697069, 4.10675684873], "code_commune_insee": "42177"}, "geometry": {"type": "Point", "coordinates": [4.10675684873, 46.1272697069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d521530dedb67eaffeb8946b0d46def7c72237f", "fields": {"nom_de_la_commune": "RIORGES", "libell_d_acheminement": "RIORGES", "code_postal": "42153", "coordonnees_gps": [46.0434594454, 4.03449243651], "code_commune_insee": "42184"}, "geometry": {"type": "Point", "coordinates": [4.03449243651, 46.0434594454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a411edd44c596482b14e8b0ffa01532181cd689d", "fields": {"nom_de_la_commune": "ROISEY", "libell_d_acheminement": "ROISEY", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42191"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e7f7bdf11cc786fba4b07d191e91e31d708073", "fields": {"nom_de_la_commune": "SAIL LES BAINS", "libell_d_acheminement": "SAIL LES BAINS", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42194"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956a15ad6b04e7402e0507622975fc44a96ab7d6", "fields": {"nom_de_la_commune": "ST ALBAN LES EAUX", "libell_d_acheminement": "ST ALBAN LES EAUX", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42198"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba7977578605d5b927d01b41b941fa67852f0d4", "fields": {"nom_de_la_commune": "ST ANDRE LE PUY", "libell_d_acheminement": "ST ANDRE LE PUY", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42200"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69101b88746ff2774f919e4825ea8439efee8c40", "fields": {"nom_de_la_commune": "ST APPOLINARD", "libell_d_acheminement": "ST APPOLINARD", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42201"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "729ffa50d0315ae7e451a8fa7a535ee9efc9d860", "fields": {"nom_de_la_commune": "ST BONNET LE COURREAU", "libell_d_acheminement": "ST BONNET LE COURREAU", "code_postal": "42940", "coordonnees_gps": [45.6531481683, 3.93398383728], "code_commune_insee": "42205"}, "geometry": {"type": "Point", "coordinates": [3.93398383728, 45.6531481683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32790f6473f6ce590ce96da41a04b5027b5d27eb", "fields": {"nom_de_la_commune": "ST GENEST LERPT", "libell_d_acheminement": "ST GENEST LERPT", "code_postal": "42530", "coordonnees_gps": [45.4552531869, 4.33153333366], "code_commune_insee": "42223"}, "geometry": {"type": "Point", "coordinates": [4.33153333366, 45.4552531869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1949ce11537c16762da4e691a718f45a30d893", "fields": {"nom_de_la_commune": "ST HAON LE VIEUX", "libell_d_acheminement": "ST HAON LE VIEUX", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42233"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d420fbd68b4ad65202a99439a20bf326ab0f44f", "fields": {"nom_de_la_commune": "ST JOSEPH", "libell_d_acheminement": "ST JOSEPH", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42242"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181853fa58f13e21ea60d8a052228db1b26dd24a", "fields": {"nom_de_la_commune": "ST LAURENT ROCHEFORT", "libell_d_acheminement": "ST LAURENT ROCHEFORT", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42252"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5adf8f552deb5122ad340c0b587c99d1e13d27e", "fields": {"nom_de_la_commune": "ST MARCEL DE FELINES", "libell_d_acheminement": "ST MARCEL DE FELINES", "code_postal": "42122", "coordonnees_gps": [45.8611514365, 4.18707697159], "code_commune_insee": "42254"}, "geometry": {"type": "Point", "coordinates": [4.18707697159, 45.8611514365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8895648d9221c4c78499b59a92a5941236611bf", "fields": {"nom_de_la_commune": "ST MARCEL D URFE", "libell_d_acheminement": "ST MARCEL D URFE", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42255"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b1bb35c5a0c4d70068bca9b877d619234704b5", "fields": {"nom_de_la_commune": "ST MAURICE EN GOURGOIS", "libell_d_acheminement": "ST MAURICE EN GOURGOIS", "code_postal": "42240", "coordonnees_gps": [45.4075302894, 4.20833828623], "code_commune_insee": "42262"}, "geometry": {"type": "Point", "coordinates": [4.20833828623, 45.4075302894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a41f35338b6e4435f39cc133c68e62114cc9c216", "fields": {"nom_de_la_commune": "ST PIERRE LA NOAILLE", "libell_d_acheminement": "ST PIERRE LA NOAILLE", "code_postal": "42190", "coordonnees_gps": [46.1512797161, 4.16150779651], "code_commune_insee": "42273"}, "geometry": {"type": "Point", "coordinates": [4.16150779651, 46.1512797161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5872331b2f378404f4ae022e959bd41a53bdf874", "fields": {"nom_de_la_commune": "ST POLGUES", "libell_d_acheminement": "ST POLGUES", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42274"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec2afaa5c7146fb87e203b523501c287bd376c2a", "fields": {"nom_de_la_commune": "ST PRIEST LA PRUGNE", "libell_d_acheminement": "ST PRIEST LA PRUGNE", "code_postal": "42830", "coordonnees_gps": [45.9518080744, 3.77484013363], "code_commune_insee": "42276"}, "geometry": {"type": "Point", "coordinates": [3.77484013363, 45.9518080744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a09426c79bb071ab1832c69e772f714313cefb8", "fields": {"nom_de_la_commune": "ST PRIEST LA VETRE", "libell_d_acheminement": "ST PRIEST LA VETRE", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42278"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "376bb075a292d57d2a403f07aff560cc79caa42a", "fields": {"nom_de_la_commune": "ST JUST ST RAMBERT", "libell_d_acheminement": "ST JUST ST RAMBERT", "code_postal": "42170", "coordonnees_gps": [45.4781366129, 4.24298529227], "code_commune_insee": "42279"}, "geometry": {"type": "Point", "coordinates": [4.24298529227, 45.4781366129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3125885dff4609e7b56d19e890aaa2a60270c85", "fields": {"nom_de_la_commune": "ST REGIS DU COIN", "libell_d_acheminement": "ST REGIS DU COIN", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42280"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f4145b771a0b59d94ece24daa042dbdb8c4a2c", "fields": {"nom_de_la_commune": "ST ROMAIN LA MOTTE", "libell_d_acheminement": "ST ROMAIN LA MOTTE", "code_postal": "42640", "coordonnees_gps": [46.1173312235, 3.98457148265], "code_commune_insee": "42284"}, "geometry": {"type": "Point", "coordinates": [3.98457148265, 46.1173312235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469bd9bb07b64b9ca7751bc6f02b92dff3d269ed", "fields": {"nom_de_la_commune": "ST SIXTE", "libell_d_acheminement": "ST SIXTE", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42288"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab384450376db7a4d1b325cde62b920855cc4691", "fields": {"nom_de_la_commune": "ST VINCENT DE BOISSET", "libell_d_acheminement": "ST VINCENT DE BOISSET", "code_postal": "42120", "coordonnees_gps": [46.0189816241, 4.12010356973], "code_commune_insee": "42294"}, "geometry": {"type": "Point", "coordinates": [4.12010356973, 46.0189816241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ef81b7b8ebd7e7310cdcfc3ee2bd8c3c07e2c6", "fields": {"nom_de_la_commune": "SEVELINGES", "libell_d_acheminement": "SEVELINGES", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42300"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc53446334d3af6679b8ab89dc28cdaeb260212", "fields": {"nom_de_la_commune": "SORBIERS", "libell_d_acheminement": "SORBIERS", "code_postal": "42290", "coordonnees_gps": [45.4992581933, 4.43794592057], "code_commune_insee": "42302"}, "geometry": {"type": "Point", "coordinates": [4.43794592057, 45.4992581933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f88ca9ef739cb461ec68b698e26ca57beac6ced2", "fields": {"nom_de_la_commune": "TARENTAISE", "libell_d_acheminement": "TARENTAISE", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42306"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80adf0b00a33c1f78487584bded24ecf68b21584", "fields": {"nom_de_la_commune": "LA TOUR EN JAREZ", "libell_d_acheminement": "LA TOUR EN JAREZ", "code_postal": "42580", "coordonnees_gps": [45.4919279434, 4.38174482251], "code_commune_insee": "42311"}, "geometry": {"type": "Point", "coordinates": [4.38174482251, 45.4919279434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf2b9120cc55f40b03fb2f9edec7d060a7d0596", "fields": {"nom_de_la_commune": "UNIAS", "libell_d_acheminement": "UNIAS", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42315"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c173235c0d1843a0bb261fa5c1753c4cdb055bcd", "fields": {"nom_de_la_commune": "UNIEUX", "libell_d_acheminement": "UNIEUX", "code_postal": "42240", "coordonnees_gps": [45.4075302894, 4.20833828623], "code_commune_insee": "42316"}, "geometry": {"type": "Point", "coordinates": [4.20833828623, 45.4075302894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f679142d8c2179d3676791f5528ea014197abbc7", "fields": {"nom_de_la_commune": "VALFLEURY", "libell_d_acheminement": "VALFLEURY", "code_postal": "42320", "coordonnees_gps": [45.5245095873, 4.5130578574], "code_commune_insee": "42320"}, "geometry": {"type": "Point", "coordinates": [4.5130578574, 45.5245095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c59e5b841bf74ee39c76c523cd9159e7b5619118", "fields": {"nom_de_la_commune": "VEAUCHETTE", "libell_d_acheminement": "VEAUCHETTE", "code_postal": "42340", "coordonnees_gps": [45.5673382654, 4.26910796554], "code_commune_insee": "42324"}, "geometry": {"type": "Point", "coordinates": [4.26910796554, 45.5673382654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64cb0e99ba132553137ed7e1524682c30cbdf3fa", "fields": {"nom_de_la_commune": "VILLEMONTAIS", "libell_d_acheminement": "VILLEMONTAIS", "code_postal": "42155", "coordonnees_gps": [45.9923375929, 3.9763968216], "code_commune_insee": "42331"}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26a5076ce5b0773b8481dc6887c8c1880ada42a7", "fields": {"nom_de_la_commune": "VILLERS", "libell_d_acheminement": "VILLERS", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42333"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb7c06475357724c0c23f9c3f793503baa77c45d", "fields": {"nom_de_la_commune": "ARSAC EN VELAY", "libell_d_acheminement": "ARSAC EN VELAY", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43010"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a45a11c039a3da6cef5dd41f0a7e9f1b77571ec8", "fields": {"nom_de_la_commune": "VISSAC AUTEYRAC", "libell_d_acheminement": "VISSAC AUTEYRAC", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43013"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c2909555b7c2315fe0e5ee6303363042e5ce580", "fields": {"nom_de_la_commune": "AUTRAC", "libell_d_acheminement": "AUTRAC", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "43014"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d99cbac044ffb7316fabab9e0a0174963ad6abe", "fields": {"nom_de_la_commune": "AUVERS", "libell_d_acheminement": "AUVERS", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43015"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f47d7f269135d4fb11c2a2ee74d1c864179a061", "fields": {"nom_de_la_commune": "AUZON", "libell_d_acheminement": "AUZON", "code_postal": "43390", "coordonnees_gps": [45.377762878, 3.39697021869], "code_commune_insee": "43016"}, "geometry": {"type": "Point", "coordinates": [3.39697021869, 45.377762878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "611df4ac242a880a93c05b42f315ef845aed983a", "fields": {"nom_de_la_commune": "BELLEVUE LA MONTAGNE", "libell_d_acheminement": "BELLEVUE LA MONTAGNE", "code_postal": "43350", "coordonnees_gps": [45.1597919947, 3.81524516944], "code_commune_insee": "43026"}, "geometry": {"type": "Point", "coordinates": [3.81524516944, 45.1597919947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a592496b062a84c80d7666d22147bd4015c4142d", "fields": {"nom_de_la_commune": "BERBEZIT", "libell_d_acheminement": "BERBEZIT", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43027"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fced3a528a24b4ec26401761ad9abf633af205b", "fields": {"nom_de_la_commune": "LE BOUCHET ST NICOLAS", "libell_d_acheminement": "LE BOUCHET ST NICOLAS", "code_postal": "43510", "coordonnees_gps": [44.9244140229, 3.76769965575], "code_commune_insee": "43037"}, "geometry": {"type": "Point", "coordinates": [3.76769965575, 44.9244140229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4cf9050f9f07639c5d96d50f460b2a96fd48d6", "fields": {"nom_de_la_commune": "LA CHAISE DIEU", "libell_d_acheminement": "LA CHAISE DIEU", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43048"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b9a4b10fddbc0c5cb91bdd2ed94b4b60d3a2c4", "fields": {"nom_de_la_commune": "CHAMPAGNAC LE VIEUX", "libell_d_acheminement": "CHAMPAGNAC LE VIEUX", "code_postal": "43440", "coordonnees_gps": [45.3510344646, 3.5299252821], "code_commune_insee": "43052"}, "geometry": {"type": "Point", "coordinates": [3.5299252821, 45.3510344646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86480d53236dcac6ca576abc6a75a076cc57fd45", "fields": {"nom_de_la_commune": "CHANALEILLES", "libell_d_acheminement": "CHANALEILLES", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43054"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1595d6236a62919d0678a0db92d83d6831820a1", "fields": {"nom_de_la_commune": "CHANTEUGES", "libell_d_acheminement": "CHANTEUGES", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43056"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d8ddb06feb96d65a43646afe8e728a2283c0e7", "fields": {"nom_de_la_commune": "CHASPINHAC", "libell_d_acheminement": "CHASPINHAC", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43061"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d20c10290b14d06c4ab5354f701b52e29a71f71", "fields": {"nom_de_la_commune": "AVIGNONET", "libell_d_acheminement": "AVIGNONET", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38023"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d4939d04b468fb803c91ff4e3564ab2f72b7077", "fields": {"nom_de_la_commune": "BEAUCROISSANT", "libell_d_acheminement": "BEAUCROISSANT", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38030"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb3e22fdaf263abb0d4076e40ba1232775251740", "fields": {"nom_de_la_commune": "BEVENAIS", "libell_d_acheminement": "BEVENAIS", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38042"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b892d29727a236d2244773d03ff61bfbdd32b9", "fields": {"nom_de_la_commune": "BILIEU", "libell_d_acheminement": "BILIEU", "code_postal": "38850", "coordonnees_gps": [45.4410466118, 5.5471440592], "code_commune_insee": "38043"}, "geometry": {"type": "Point", "coordinates": [5.5471440592, 45.4410466118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a475213ee712462383988318f6bc70906dc396f7", "fields": {"nom_de_la_commune": "CESSIEU", "libell_d_acheminement": "CESSIEU", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38064"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "860806ce44c5d26f28a7118cdc26266f1381d00f", "fields": {"nom_de_la_commune": "LE CHAMP PRES FROGES", "libell_d_acheminement": "LE CHAMP PRES FROGES", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38070"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a0921ed9fbf96c02515178c65b2bceab30f6883", "fields": {"nom_de_la_commune": "LA CHAPELLE DE SURIEU", "libell_d_acheminement": "LA CHAPELLE DE SURIEU", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38077"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b09705b7ef5140a77b2be2122dde97e0be8c0f", "fields": {"nom_de_la_commune": "CHARANCIEU", "libell_d_acheminement": "CHARANCIEU", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38080"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f33423d8fb83d8bd15f1f15c87b56a1db43fe90", "fields": {"nom_de_la_commune": "CHARAVINES", "libell_d_acheminement": "CHARAVINES", "code_postal": "38850", "coordonnees_gps": [45.4410466118, 5.5471440592], "code_commune_insee": "38082"}, "geometry": {"type": "Point", "coordinates": [5.5471440592, 45.4410466118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d53c7a07a10552c2ee9113036f257e4b9b0ea75", "fields": {"nom_de_la_commune": "CHATEAU BERNARD", "libell_d_acheminement": "CHATEAU BERNARD", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38090"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "506f59399ae2f8509993288fd4257c3582585b48", "fields": {"nom_de_la_commune": "CHATTE", "libell_d_acheminement": "CHATTE", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38095"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c608980079919322b9f0ac21b675338661dd2e6", "fields": {"nom_de_la_commune": "CHEVRIERES", "libell_d_acheminement": "CHEVRIERES", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38099"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a45eff3ac3de96c4443b234253c409bf6a7a6cf2", "fields": {"nom_de_la_commune": "CHEYSSIEU", "libell_d_acheminement": "CHEYSSIEU", "code_postal": "38550", "coordonnees_gps": [45.3884978642, 4.79761924958], "code_commune_insee": "38101"}, "geometry": {"type": "Point", "coordinates": [4.79761924958, 45.3884978642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1848ef5a49be965bac0e00d0e1def3c69dc9c2e3", "fields": {"nom_de_la_commune": "CHOZEAU", "libell_d_acheminement": "CHOZEAU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38109"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dca85cf9271a7fd2cd3a4e862b4de58602fe2a6a", "fields": {"nom_de_la_commune": "ST MARTIN DE LA CLUZE", "libell_d_acheminement": "ST MARTIN DE LA CLUZE", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38115"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32a8d03a6fdacd4489927aeef8b468469d44058f", "fields": {"nom_de_la_commune": "CORDEAC", "libell_d_acheminement": "CORDEAC", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38125"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b14697aad34b9176703a1d437c54762e288b7e6", "fields": {"nom_de_la_commune": "CORPS", "libell_d_acheminement": "CORPS", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38128"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f809d44913a7ba06efaf212e92093a58563046a", "fields": {"nom_de_la_commune": "LA COTE ST ANDRE", "libell_d_acheminement": "LA COTE ST ANDRE", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38130"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae15623e8c2e9a0d7dbb8c978c445880d2fdfee5", "fields": {"nom_de_la_commune": "COURTENAY", "libell_d_acheminement": "COURTENAY", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38135"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4a651d172e765408cd65f4f31bd4b7cd1e6e49f", "fields": {"nom_de_la_commune": "DIZIMIEU", "libell_d_acheminement": "DIZIMIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38146"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2636c89f7f816d803dfb596f5ba5e2f60401f9db", "fields": {"nom_de_la_commune": "DOLOMIEU", "libell_d_acheminement": "DOLOMIEU", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38148"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37f2b5400e546345b16a7daf92c09d621397672", "fields": {"nom_de_la_commune": "ENGINS", "libell_d_acheminement": "ENGINS", "code_postal": "38360", "coordonnees_gps": [45.2140316159, 5.62374044814], "code_commune_insee": "38153"}, "geometry": {"type": "Point", "coordinates": [5.62374044814, 45.2140316159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4104597bac3b58a008a430987b1d662f8cbcaa3f", "fields": {"nom_de_la_commune": "EYBENS", "libell_d_acheminement": "EYBENS", "code_postal": "38320", "coordonnees_gps": [45.1372833334, 5.77563920733], "code_commune_insee": "38158"}, "geometry": {"type": "Point", "coordinates": [5.77563920733, 45.1372833334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aed327a82eacc52d56cecdc724ff7dcb89366c12", "fields": {"nom_de_la_commune": "FARAMANS", "libell_d_acheminement": "FARAMANS", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38161"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8057c3f25a03b9264e7f165e8f2c5f2a41d23f47", "fields": {"nom_de_la_commune": "FAVERGES DE LA TOUR", "libell_d_acheminement": "FAVERGES DE LA TOUR", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38162"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d4ed5d579674a15daa3b87c7dbdab6f54d471df", "fields": {"nom_de_la_commune": "LA FLACHERE", "libell_d_acheminement": "LA FLACHERE", "code_postal": "38530", "coordonnees_gps": [45.4375526666, 5.98907840878], "code_commune_insee": "38166"}, "geometry": {"type": "Point", "coordinates": [5.98907840878, 45.4375526666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90da6294b1b5d48854b425ba20ee31b1a197844c", "fields": {"nom_de_la_commune": "FLACHERES", "libell_d_acheminement": "FLACHERES", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38167"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a33980a4a6087dd02a4c99ab3bb6f18fddb78f", "fields": {"nom_de_la_commune": "FOUR", "libell_d_acheminement": "FOUR", "code_postal": "38080", "coordonnees_gps": [45.6169539729, 5.22284898383], "code_commune_insee": "38172"}, "geometry": {"type": "Point", "coordinates": [5.22284898383, 45.6169539729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "112d3996a7f5e09a41431f9d97cbf727f6d350a3", "fields": {"nom_de_la_commune": "LA FRETTE", "libell_d_acheminement": "LA FRETTE", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38174"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e5cc50b1ddd29c2780534d11b2432b4138054b", "fields": {"nom_de_la_commune": "FROGES", "libell_d_acheminement": "FROGES", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38175"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c453621f4e4c246282b933f38a5ba665396ac2", "fields": {"nom_de_la_commune": "FRONTONAS", "libell_d_acheminement": "FRONTONAS", "code_postal": "38290", "coordonnees_gps": [45.6634032734, 5.1509887973], "code_commune_insee": "38176"}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4662e0edbf8b54cbdbd70928aa132fa72f9d5b5", "fields": {"nom_de_la_commune": "GRENOBLE", "libell_d_acheminement": "GRENOBLE", "code_postal": "38100", "coordonnees_gps": [45.182155682, 5.72079920349], "code_commune_insee": "38185"}, "geometry": {"type": "Point", "coordinates": [5.72079920349, 45.182155682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0fce14efe2012a79cbd458c798d6fd2a489203c", "fields": {"code_postal": "38750", "code_commune_insee": "38191", "libell_d_acheminement": "HUEZ", "ligne_5": "L ALPE D HUEZ", "nom_de_la_commune": "HUEZ", "coordonnees_gps": [45.0970333607, 6.08483184334]}, "geometry": {"type": "Point", "coordinates": [6.08483184334, 45.0970333607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f84ed831cfcd129b26c806bde65bd8ce795d5131", "fields": {"nom_de_la_commune": "IZEAUX", "libell_d_acheminement": "IZEAUX", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38194"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d07e645759b01e614ea4b7422b1f5e77e866246", "fields": {"nom_de_la_commune": "IZERON", "libell_d_acheminement": "IZERON", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38195"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba927b87c22bea7ae275a75ec7519349526240c", "fields": {"nom_de_la_commune": "LAVAL", "libell_d_acheminement": "LAVAL", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38206"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff56e65309bc4b21398b4cff98ad12e9b6e098dc", "fields": {"nom_de_la_commune": "LIEUDIEU", "libell_d_acheminement": "LIEUDIEU", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38211"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac446728657b6d5d576174bf355ef680b5aed97", "fields": {"nom_de_la_commune": "MEYRIEU LES ETANGS", "libell_d_acheminement": "MEYRIEU LES ETANGS", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38231"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b02c2857a2cc44d155cba0af4258685eca825c", "fields": {"nom_de_la_commune": "MIRIBEL LES ECHELLES", "libell_d_acheminement": "MIRIBEL LES ECHELLES", "code_postal": "38380", "coordonnees_gps": [45.375484002, 5.78036097359], "code_commune_insee": "38236"}, "geometry": {"type": "Point", "coordinates": [5.78036097359, 45.375484002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7febdb859be1ce2735f7c3219b8c8ab4b3414fc3", "fields": {"nom_de_la_commune": "MONTAGNE", "libell_d_acheminement": "MONTAGNE", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38245"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1d4d061b194589c409a6ad44aae0d9323aba408", "fields": {"nom_de_la_commune": "MONTAGNIEU", "libell_d_acheminement": "MONTAGNIEU", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38246"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b977a8e5f64977b73ecb4e2bf655bb3f092aa0a", "fields": {"nom_de_la_commune": "MONTCARRA", "libell_d_acheminement": "MONTCARRA", "code_postal": "38890", "coordonnees_gps": [45.6399503357, 5.38104923329], "code_commune_insee": "38250"}, "geometry": {"type": "Point", "coordinates": [5.38104923329, 45.6399503357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9264df7aca712bf225156941f79307b04fe01e", "fields": {"nom_de_la_commune": "MONTFALCON", "libell_d_acheminement": "MONTFALCON", "code_postal": "38940", "coordonnees_gps": [45.2530241738, 5.22613793096], "code_commune_insee": "38255"}, "geometry": {"type": "Point", "coordinates": [5.22613793096, 45.2530241738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a662fa8824a97ec97c4635ff2d6d5e29fabe0906", "fields": {"nom_de_la_commune": "MONTFERRAT", "libell_d_acheminement": "MONTFERRAT", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38256"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "448440bdf10177b0ba82545b6430df41af6de727", "fields": {"nom_de_la_commune": "MOTTIER", "libell_d_acheminement": "LE MOTTIER", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38267"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188c858d693ee8a1ff1385a0cdcf79bd31e456a8", "fields": {"nom_de_la_commune": "LE MOUTARET", "libell_d_acheminement": "LE MOUTARET", "code_postal": "38580", "coordonnees_gps": [45.3350666079, 6.10773824742], "code_commune_insee": "38268"}, "geometry": {"type": "Point", "coordinates": [6.10773824742, 45.3350666079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6dddb04ad035fdaa367f3a26a3ac7ebbd0021f8", "fields": {"nom_de_la_commune": "LA MURE", "libell_d_acheminement": "LA MURE D ISERE", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38269"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49cdf596ebb7b36000877cc60412da110cec455e", "fields": {"nom_de_la_commune": "OZ", "libell_d_acheminement": "OZ", "code_postal": "38114", "coordonnees_gps": [45.1681255777, 6.0656743192], "code_commune_insee": "38289"}, "geometry": {"type": "Point", "coordinates": [6.0656743192, 45.1681255777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e9ccd8a6261b782260a5e3de208114d98c88578", "fields": {"nom_de_la_commune": "LE PASSAGE", "libell_d_acheminement": "LE PASSAGE", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38296"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5b8a26d347491b97387b74917599aecb466b50", "fields": {"nom_de_la_commune": "PASSINS", "libell_d_acheminement": "PASSINS", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38297"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97befc00e661a32d5841b8f6b922ad32ddc94f8d", "fields": {"nom_de_la_commune": "LE PEAGE DE ROUSSILLON", "libell_d_acheminement": "LE PEAGE DE ROUSSILLON", "code_postal": "38550", "coordonnees_gps": [45.3884978642, 4.79761924958], "code_commune_insee": "38298"}, "geometry": {"type": "Point", "coordinates": [4.79761924958, 45.3884978642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9afc3d09a692f961c343423c711c260f84af505", "fields": {"nom_de_la_commune": "LE PERIER", "libell_d_acheminement": "LE PERIER", "code_postal": "38740", "coordonnees_gps": [44.9085893261, 6.02132611132], "code_commune_insee": "38302"}, "geometry": {"type": "Point", "coordinates": [6.02132611132, 44.9085893261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3646200a70b6e33e05293ae061e52f2a9a3de68", "fields": {"nom_de_la_commune": "PONT DE CHERUY", "libell_d_acheminement": "PONT DE CHERUY", "code_postal": "38230", "coordonnees_gps": [45.7461483574, 5.17160988161], "code_commune_insee": "38316"}, "geometry": {"type": "Point", "coordinates": [5.17160988161, 45.7461483574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33e0470430bf1a6d1bbb89b4010013eb19ca9ee", "fields": {"nom_de_la_commune": "PRESSINS", "libell_d_acheminement": "PRESSINS", "code_postal": "38480", "coordonnees_gps": [45.53172228, 5.65443955806], "code_commune_insee": "38323"}, "geometry": {"type": "Point", "coordinates": [5.65443955806, 45.53172228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1592e16ddc5f8a1f8debedc82d37da2ad0ef1395", "fields": {"nom_de_la_commune": "QUINCIEU", "libell_d_acheminement": "QUINCIEU", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38330"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e493399d4324485b811bc8b6eb9320d23c940f6", "fields": {"nom_de_la_commune": "LA RIVIERE", "libell_d_acheminement": "LA RIVIERE", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38338"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6ec541b2f50a484c9799a0990514170036b91cf", "fields": {"nom_de_la_commune": "ROVON", "libell_d_acheminement": "ROVON", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38345"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "808b7b6e68f5aca2ce610bb609966b4e1a8e3433", "fields": {"nom_de_la_commune": "ROYAS", "libell_d_acheminement": "ROYAS", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38346"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac940f1e63f721bb753d54bb4c8289e354967d5", "fields": {"nom_de_la_commune": "ST ALBIN DE VAULSERRE", "libell_d_acheminement": "ST ALBIN DE VAULSERRE", "code_postal": "38480", "coordonnees_gps": [45.53172228, 5.65443955806], "code_commune_insee": "38354"}, "geometry": {"type": "Point", "coordinates": [5.65443955806, 45.53172228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1fe64fcfb2384cfab69c9d81037e2c8b80bd72f", "fields": {"nom_de_la_commune": "ST ANDRE EN ROYANS", "libell_d_acheminement": "ST ANDRE EN ROYANS", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38356"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7169b1648cfb28795b76ed18932b7c212cabe3ca", "fields": {"nom_de_la_commune": "ST ANTOINE L ABBAYE", "libell_d_acheminement": "ST ANTOINE L ABBAYE", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38359"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c92b9109c8346440d07977c8e5967a025687d3", "fields": {"code_postal": "38160", "code_commune_insee": "38359", "libell_d_acheminement": "ST ANTOINE L ABBAYE", "ligne_5": "DIONAY", "nom_de_la_commune": "ST ANTOINE L ABBAYE", "coordonnees_gps": [45.1571232612, 5.3036381799]}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39040dd39b78b02478d521edb31c09b1778464aa", "fields": {"nom_de_la_commune": "ST AUPRE", "libell_d_acheminement": "ST AUPRE", "code_postal": "38960", "coordonnees_gps": [45.3922025887, 5.6488231816], "code_commune_insee": "38362"}, "geometry": {"type": "Point", "coordinates": [5.6488231816, 45.3922025887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afedd2a88c8cbd5578b8691f806d5cb8e534e668", "fields": {"nom_de_la_commune": "ST BERNARD", "libell_d_acheminement": "ST BERNARD DU TOUVET", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38367"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56b1e9db8471e9f175a61feb89cecd09139b0b7", "fields": {"nom_de_la_commune": "STE BLANDINE", "libell_d_acheminement": "STE BLANDINE", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38369"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ed7c25df5d7eaa1f9ddd815448529a86f7bec1", "fields": {"nom_de_la_commune": "ST CHEF", "libell_d_acheminement": "ST CHEF", "code_postal": "38890", "coordonnees_gps": [45.6399503357, 5.38104923329], "code_commune_insee": "38374"}, "geometry": {"type": "Point", "coordinates": [5.38104923329, 45.6399503357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe70fbe8b0eb09477c5d921bb4047579c66dabe", "fields": {"nom_de_la_commune": "ST CHRISTOPHE EN OISANS", "libell_d_acheminement": "ST CHRISTOPHE EN OISANS", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38375"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e3d1ab2d248449914cd97ee92458dc4fc91bde0", "fields": {"nom_de_la_commune": "ST DIDIER DE BIZONNES", "libell_d_acheminement": "ST DIDIER DE BIZONNES", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38380"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8380fbdb08347161fe593b097cfabb04d22361fe", "fields": {"nom_de_la_commune": "ST GEOIRE EN VALDAINE", "libell_d_acheminement": "ST GEOIRE EN VALDAINE", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38386"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "058e9c4b51b31da8623b62658e82bca7771e8b61", "fields": {"nom_de_la_commune": "ST GEORGES D ESPERANCHE", "libell_d_acheminement": "ST GEORGES D ESPERANCHE", "code_postal": "38790", "coordonnees_gps": [45.5630185121, 5.09029489838], "code_commune_insee": "38389"}, "geometry": {"type": "Point", "coordinates": [5.09029489838, 45.5630185121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71cb776dc0ad0c41db7c3ef736d4cfe9696f67e", "fields": {"nom_de_la_commune": "ST JUST CHALEYSSIN", "libell_d_acheminement": "ST JUST CHALEYSSIN", "code_postal": "38540", "coordonnees_gps": [45.6158247621, 5.03787664057], "code_commune_insee": "38408"}, "geometry": {"type": "Point", "coordinates": [5.03787664057, 45.6158247621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c77d1ff0f39dc4d0e33215dd6162f890d09732", "fields": {"nom_de_la_commune": "ST MARCEL BEL ACCUEIL", "libell_d_acheminement": "ST MARCEL BEL ACCUEIL", "code_postal": "38080", "coordonnees_gps": [45.6169539729, 5.22284898383], "code_commune_insee": "38415"}, "geometry": {"type": "Point", "coordinates": [5.22284898383, 45.6169539729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd302106cc566c8c0a4ddc58284958d0e808f74b", "fields": {"nom_de_la_commune": "STE MARIE DU MONT", "libell_d_acheminement": "STE MARIE DU MONT", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38418"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30e3ee3eac94027d88c2c7290b0a6e0d4f6e6486", "fields": {"nom_de_la_commune": "ST ROMANS", "libell_d_acheminement": "ST ROMANS", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38453"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fe06fcd71e4e5e9face6d4431d1ee10802f361e", "fields": {"nom_de_la_commune": "ST VERAND", "libell_d_acheminement": "ST VERAND", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38463"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1026acea83591d5a992837eb430d92b9b57a12e6", "fields": {"nom_de_la_commune": "LA SALLE EN BEAUMONT", "libell_d_acheminement": "LA SALLE EN BEAUMONT", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38470"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3ae0ebb3e4668f22bc3e090cae8b1701646d13", "fields": {"nom_de_la_commune": "LE SAPPEY EN CHARTREUSE", "libell_d_acheminement": "LE SAPPEY EN CHARTREUSE", "code_postal": "38700", "coordonnees_gps": [45.2521287611, 5.7666044089], "code_commune_insee": "38471"}, "geometry": {"type": "Point", "coordinates": [5.7666044089, 45.2521287611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "229c6596b9df8f8234dcb9b9818f26fba7ae463a", "fields": {"code_postal": "38290", "code_commune_insee": "38475", "libell_d_acheminement": "SATOLAS ET BONCE", "ligne_5": "BONCE", "nom_de_la_commune": "SATOLAS ET BONCE", "coordonnees_gps": [45.6634032734, 5.1509887973]}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcd2f862158f931821ab3deb4f3254a4a6be1390", "fields": {"code_postal": "38290", "code_commune_insee": "38475", "libell_d_acheminement": "SATOLAS ET BONCE", "ligne_5": "LE CHAFFARD", "nom_de_la_commune": "SATOLAS ET BONCE", "coordonnees_gps": [45.6634032734, 5.1509887973]}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a683c858e43c82294e774a0760e4e29eb74c217c", "fields": {"code_postal": "38780", "code_commune_insee": "38480", "libell_d_acheminement": "SEPTEME", "ligne_5": "LE PEAGE", "nom_de_la_commune": "SEPTEME", "coordonnees_gps": [45.5202153457, 4.98494519095]}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "320c8894a46f75790d6c3d1320ed975a781d1b12", "fields": {"nom_de_la_commune": "SEYSSINET PARISET", "libell_d_acheminement": "SEYSSINET PARISET", "code_postal": "38170", "coordonnees_gps": [45.1728190384, 5.66921532748], "code_commune_insee": "38485"}, "geometry": {"type": "Point", "coordinates": [5.66921532748, 45.1728190384]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24005c7a8c6c90e6e4ad0970bd873a74e6fd55ed", "fields": {"nom_de_la_commune": "SILLANS", "libell_d_acheminement": "SILLANS", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38490"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbdd891c543057ee5a6cfa92cc6b8f49db3b12ab", "fields": {"nom_de_la_commune": "SOLEYMIEU", "libell_d_acheminement": "SOLEYMIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38494"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b176bfea498f0130ff6f07f81d0dcfdecd11dfd", "fields": {"nom_de_la_commune": "LA SONE", "libell_d_acheminement": "LA SONE", "code_postal": "38840", "coordonnees_gps": [45.102231129, 5.22315153689], "code_commune_insee": "38495"}, "geometry": {"type": "Point", "coordinates": [5.22315153689, 45.102231129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f824de1374d10541a359ec71f897c30daf10a0ff", "fields": {"nom_de_la_commune": "TECHE", "libell_d_acheminement": "TECHE", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38500"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0392e22752707d9e17f2bea9e714a06ca97d6ec", "fields": {"nom_de_la_commune": "TREFFORT", "libell_d_acheminement": "TREFFORT", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38513"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "200f7c4abe568385495f884a249507aaff8a8702", "fields": {"nom_de_la_commune": "TREMINIS", "libell_d_acheminement": "TREMINIS", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38514"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee1dbb49b62b5d327de1a35e8a0e422744e2d30", "fields": {"nom_de_la_commune": "VASSELIN", "libell_d_acheminement": "VASSELIN", "code_postal": "38890", "coordonnees_gps": [45.6399503357, 5.38104923329], "code_commune_insee": "38525"}, "geometry": {"type": "Point", "coordinates": [5.38104923329, 45.6399503357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c51ba3aed04909f92144ee784593beaa8dbc285", "fields": {"nom_de_la_commune": "VAULX MILIEU", "libell_d_acheminement": "VAULX MILIEU", "code_postal": "38090", "coordonnees_gps": [45.595478316, 5.15236035491], "code_commune_insee": "38530"}, "geometry": {"type": "Point", "coordinates": [5.15236035491, 45.595478316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8efef718727e7d978ec0f5f2d401617a7275077", "fields": {"nom_de_la_commune": "VENON", "libell_d_acheminement": "VENON", "code_postal": "38610", "coordonnees_gps": [45.1794754259, 5.79803477823], "code_commune_insee": "38533"}, "geometry": {"type": "Point", "coordinates": [5.79803477823, 45.1794754259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373901ac3ccde908ead91b4bd63830a9434fa412", "fields": {"code_postal": "38860", "code_commune_insee": "38534", "libell_d_acheminement": "VENOSC", "ligne_5": "L ALPE DE VENOSC", "nom_de_la_commune": "VENOSC", "coordonnees_gps": [44.994660373, 6.12322203081]}, "geometry": {"type": "Point", "coordinates": [6.12322203081, 44.994660373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4574ab433f82aa4bf8d7fbc1b16cd95a61819def", "fields": {"nom_de_la_commune": "VERNAS", "libell_d_acheminement": "VERNAS", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38535"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "266b5fb6eaec017f1f8bb2a3d050be0e9345baaa", "fields": {"nom_de_la_commune": "VEUREY VOROIZE", "libell_d_acheminement": "VEUREY VOROIZE", "code_postal": "38113", "coordonnees_gps": [45.269486237, 5.60210187311], "code_commune_insee": "38540"}, "geometry": {"type": "Point", "coordinates": [5.60210187311, 45.269486237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf156b974218526a9bb6a22f610f3d0dc49ad2e3", "fields": {"nom_de_la_commune": "VEYSSILIEU", "libell_d_acheminement": "VEYSSILIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38542"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c7e98ac2c86ea18f4812d93c76e828a581ab9f", "fields": {"nom_de_la_commune": "VIGNIEU", "libell_d_acheminement": "VIGNIEU", "code_postal": "38890", "coordonnees_gps": [45.6399503357, 5.38104923329], "code_commune_insee": "38546"}, "geometry": {"type": "Point", "coordinates": [5.38104923329, 45.6399503357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "103dc61dc9804820d835d9cd8f080d3d9e3ab4d5", "fields": {"nom_de_la_commune": "VILLARD RECULAS", "libell_d_acheminement": "VILLARD RECULAS", "code_postal": "38114", "coordonnees_gps": [45.1681255777, 6.0656743192], "code_commune_insee": "38550"}, "geometry": {"type": "Point", "coordinates": [6.0656743192, 45.1681255777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc89e9def5888bcb2649c56e241c5be9dc1c172", "fields": {"nom_de_la_commune": "VILLARD REYMOND", "libell_d_acheminement": "VILLARD REYMOND", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38551"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4699e585c36741f52342cee858e727ad485cc739", "fields": {"nom_de_la_commune": "VILLETTE D ANTHON", "libell_d_acheminement": "VILLETTE D ANTHON", "code_postal": "38280", "coordonnees_gps": [45.7761558636, 5.11926140068], "code_commune_insee": "38557"}, "geometry": {"type": "Point", "coordinates": [5.11926140068, 45.7761558636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "787b78b27cf0931b8b5c4b1f378da19c4ecee866", "fields": {"nom_de_la_commune": "VIRIEU", "libell_d_acheminement": "VIRIEU SUR BOURBRE", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38560"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec2183dd6ff0e8ca5e069e1db6fef92416c56a11", "fields": {"nom_de_la_commune": "VIRIVILLE", "libell_d_acheminement": "VIRIVILLE", "code_postal": "38980", "coordonnees_gps": [45.3053476338, 5.21305858038], "code_commune_insee": "38561"}, "geometry": {"type": "Point", "coordinates": [5.21305858038, 45.3053476338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef2fafb26a8cc3bf00d0e90c7e4222b62065554e", "fields": {"nom_de_la_commune": "SOUSTONS", "libell_d_acheminement": "SOUSTONS", "code_postal": "40140", "coordonnees_gps": [43.7629098488, -1.27641282315], "code_commune_insee": "40310"}, "geometry": {"type": "Point", "coordinates": [-1.27641282315, 43.7629098488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00fd253b2d548f6b7c385e06bc8404a5be48b0ef", "fields": {"nom_de_la_commune": "TALLER", "libell_d_acheminement": "TALLER", "code_postal": "40260", "coordonnees_gps": [43.9187422777, -1.13083737668], "code_commune_insee": "40311"}, "geometry": {"type": "Point", "coordinates": [-1.13083737668, 43.9187422777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b931563715f1b83a6bbd21b9f225d10ccb9f64c", "fields": {"nom_de_la_commune": "TARTAS", "libell_d_acheminement": "TARTAS", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40313"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0e7fc6ff311040a8e198e086603ec19793ca47d", "fields": {"nom_de_la_commune": "UZA", "libell_d_acheminement": "UZA", "code_postal": "40170", "coordonnees_gps": [44.0581997047, -1.21339037658], "code_commune_insee": "40322"}, "geometry": {"type": "Point", "coordinates": [-1.21339037658, 44.0581997047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b928c6d24c9bcbe6d4f62acdb445eb20d9dfcb", "fields": {"nom_de_la_commune": "VIELLE TURSAN", "libell_d_acheminement": "VIELLE TURSAN", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40325"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcebb59950b29e3ebdd8be4d39588e533e531108", "fields": {"nom_de_la_commune": "LE VIGNAU", "libell_d_acheminement": "LE VIGNAU", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40329"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba1c037055cd7e6edf041cdd1a505008c70981d3", "fields": {"nom_de_la_commune": "YGOS ST SATURNIN", "libell_d_acheminement": "YGOS ST SATURNIN", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40333"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c9be51d25531d96483e23fa64dab2c21ae3d9e1", "fields": {"nom_de_la_commune": "AUTAINVILLE", "libell_d_acheminement": "AUTAINVILLE", "code_postal": "41240", "coordonnees_gps": [47.883516552, 1.48678396082], "code_commune_insee": "41006"}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ce826e2ee90170d0240c2797a3c50c9279db803", "fields": {"nom_de_la_commune": "AUTHON", "libell_d_acheminement": "AUTHON", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41007"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed03cc6f1136ad395dbd39679292fc39810aac00", "fields": {"nom_de_la_commune": "AVERDON", "libell_d_acheminement": "AVERDON", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41009"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345f7f6055f00e5a7d574ee3e7f55f46db8b2964", "fields": {"nom_de_la_commune": "BEAUCHENE", "libell_d_acheminement": "BEAUCHENE", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41014"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ce5622818a4156f2deb5ce6d27faed17d5aee6", "fields": {"nom_de_la_commune": "BEAUVILLIERS", "libell_d_acheminement": "BEAUVILLIERS", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41015"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec1e52a1d9b217b1a7477f74d33a2b1e7172629b", "fields": {"nom_de_la_commune": "BLOIS", "libell_d_acheminement": "BLOIS", "code_postal": "41000", "coordonnees_gps": [47.612940364, 1.32071876619], "code_commune_insee": "41018"}, "geometry": {"type": "Point", "coordinates": [1.32071876619, 47.612940364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631087c8a2db45d153ae2c6416b0aa12e90c9142", "fields": {"nom_de_la_commune": "CHAMBORD", "libell_d_acheminement": "CHAMBORD", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41034"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b5cc170f06980fcc3462e99415dbef84bda2e46", "fields": {"nom_de_la_commune": "CHAON", "libell_d_acheminement": "CHAON", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41036"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23555ef03835a67f67082cdc2b1d59adddaa0d84", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTMARTIN", "libell_d_acheminement": "LA CHAPELLE MONTMARTIN", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41038"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73e6fda99ac637ad830304fec67b7e8c0792469b", "fields": {"nom_de_la_commune": "CHEMERY", "libell_d_acheminement": "CHEMERY", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41049"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8730aacdff01a805d5af872d08ef0e3327d5ded", "fields": {"nom_de_la_commune": "CHISSAY EN TOURAINE", "libell_d_acheminement": "CHISSAY EN TOURAINE", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41051"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fe59e1e51d7a1f6dcc38b62b0ad657195461180", "fields": {"nom_de_la_commune": "CHOUE", "libell_d_acheminement": "CHOUE", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41053"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21cf12091daece45102d8455ffffdc84be25dac2", "fields": {"nom_de_la_commune": "CORMERAY", "libell_d_acheminement": "CORMERAY", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41061"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ed4ca5c7bb240039d851360926350de153c87b", "fields": {"nom_de_la_commune": "LA FERTE IMBAULT", "libell_d_acheminement": "LA FERTE IMBAULT", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41084"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8457704f1dff0517eaff5a8611538b356f5edc7", "fields": {"nom_de_la_commune": "FONTAINE RAOUL", "libell_d_acheminement": "FONTAINE RAOUL", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41088"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d74f49383065b750a1add6ec85b4d98c9a412b", "fields": {"nom_de_la_commune": "FRANCAY", "libell_d_acheminement": "FRANCAY", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41093"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28a4381beec812b6eec319e38395759256a52120", "fields": {"nom_de_la_commune": "GOMBERGEAN", "libell_d_acheminement": "GOMBERGEAN", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41098"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8e3f3c9f6b3fc181dd4ceb68be6e8cc5e0cadfb", "fields": {"nom_de_la_commune": "LAMOTTE BEUVRON", "libell_d_acheminement": "LAMOTTE BEUVRON", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41106"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a0717cb23a50d900f516f21a638a7b12c50f26", "fields": {"nom_de_la_commune": "LANCE", "libell_d_acheminement": "LANCE", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41107"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d9be0793531728978f8029f0e0aca890a0b8e03", "fields": {"nom_de_la_commune": "LESTIOU", "libell_d_acheminement": "LESTIOU", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41114"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f76fe8c497c911f07b558257552f9367120d55e6", "fields": {"nom_de_la_commune": "MAROLLES", "libell_d_acheminement": "MAROLLES", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41128"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c05a9194b461f093452d2435322992899fb9db", "fields": {"nom_de_la_commune": "MAVES", "libell_d_acheminement": "MAVES", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41130"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9d0d6641ce235d6c2a7768422dd1e4e6aa7aa3", "fields": {"nom_de_la_commune": "MENARS", "libell_d_acheminement": "MENARS", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41134"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79402c129715986abfc304ab05074794fecaf65d", "fields": {"nom_de_la_commune": "MEUSNES", "libell_d_acheminement": "MEUSNES", "code_postal": "41130", "coordonnees_gps": [47.2869148603, 1.56604401374], "code_commune_insee": "41139"}, "geometry": {"type": "Point", "coordinates": [1.56604401374, 47.2869148603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7640d7d33e086e8f04d26166cbb1a96a6d7b6de", "fields": {"nom_de_la_commune": "MUR DE SOLOGNE", "libell_d_acheminement": "MUR DE SOLOGNE", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41157"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f88e2c5c449f13ac3154d74d142cd93aa2289cfb", "fields": {"nom_de_la_commune": "NOURRAY", "libell_d_acheminement": "NOURRAY", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41163"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74609c46b445de7f9bbb2c9a9bd07fef376a4d21", "fields": {"nom_de_la_commune": "OISLY", "libell_d_acheminement": "OISLY", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41166"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3524195bdb73425173ee0af8d558441a18d11b", "fields": {"code_postal": "41240", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "OUZOUER LE MARCHE", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.883516552, 1.48678396082]}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6c58f6fe1849252cba7f09b458bd3ac3ac9c607", "fields": {"code_postal": "41240", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "PRENOUVELLON", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.883516552, 1.48678396082]}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ad27a81e550def72605c8527a1412efb0fffd4a", "fields": {"code_postal": "41240", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "TRIPLEVILLE", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.883516552, 1.48678396082]}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1012b90b65b1c36fbb1cbf7706c924caa7a70ac", "fields": {"nom_de_la_commune": "RAHART", "libell_d_acheminement": "RAHART", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41186"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0287a4723375c9f74cb04e047f5105bc09d2ff3a", "fields": {"nom_de_la_commune": "ROCE", "libell_d_acheminement": "ROCE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41190"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe352d9da9fd7adddee48f5f741cb229ac1b6080", "fields": {"nom_de_la_commune": "ST GERVAIS LA FORET", "libell_d_acheminement": "ST GERVAIS LA FORET", "code_postal": "41350", "coordonnees_gps": [47.5967187787, 1.41738581826], "code_commune_insee": "41212"}, "geometry": {"type": "Point", "coordinates": [1.41738581826, 47.5967187787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3cfa4bb240d255817c364dbe0b2dd0fb508f9b", "fields": {"code_postal": "41220", "code_commune_insee": "41220", "libell_d_acheminement": "ST LAURENT NOUAN", "ligne_5": "NOUAN SUR LOIRE", "nom_de_la_commune": "ST LAURENT NOUAN", "coordonnees_gps": [47.6522187818, 1.66627730575]}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9fe158b8a3f8003c5db68f7455f3f50b6a7750", "fields": {"nom_de_la_commune": "ST LUBIN EN VERGONNOIS", "libell_d_acheminement": "ST LUBIN EN VERGONNOIS", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41223"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "885e7c64d6c189e5dfa062e3681283d839f65b69", "fields": {"nom_de_la_commune": "SALBRIS", "libell_d_acheminement": "SALBRIS", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41232"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47279ffd40a1a3636b5ef7edf76a1134bbeb09f1", "fields": {"nom_de_la_commune": "SAMBIN", "libell_d_acheminement": "SAMBIN", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41233"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9276a0ff2b187da8fb8a02254a9ae7c4d1a25be", "fields": {"nom_de_la_commune": "SELOMMES", "libell_d_acheminement": "SELOMMES", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41243"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d78690d46f0155efd3980ccd588170ff33914ab", "fields": {"nom_de_la_commune": "SOINGS EN SOLOGNE", "libell_d_acheminement": "SOINGS EN SOLOGNE", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41247"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1436112da4dba672990ff27199f2fac2b4ba376e", "fields": {"nom_de_la_commune": "SOUDAY", "libell_d_acheminement": "SOUDAY", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41248"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df812310581c78f692696d7b6066dcd8fe16dd03", "fields": {"nom_de_la_commune": "SOUESMES", "libell_d_acheminement": "SOUESMES", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41249"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f6b64bff592d7db67452d51842a4851fbf711b", "fields": {"nom_de_la_commune": "LE TEMPLE", "libell_d_acheminement": "LE TEMPLE", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41254"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a40e7376ae82e872ab77a998e61b9b81a699255", "fields": {"nom_de_la_commune": "THENAY", "libell_d_acheminement": "THENAY", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41257"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050d0fd690c88af36e86cb8ab06b2bdc10586c95", "fields": {"nom_de_la_commune": "VILLAVARD", "libell_d_acheminement": "VILLAVARD", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41274"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29ef42def29c19e97f45aacaeef11163eaa4bda", "fields": {"nom_de_la_commune": "VILLEBOUT", "libell_d_acheminement": "VILLEBOUT", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41277"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc50b15943d7b1bd3a4647c132a31b60c982346c", "fields": {"nom_de_la_commune": "VILLEROMAIN", "libell_d_acheminement": "VILLEROMAIN", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41290"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9923fb3ff959697d13330c58c01550391b4edf23", "fields": {"nom_de_la_commune": "ANDREZIEUX BOUTHEON", "libell_d_acheminement": "ANDREZIEUX BOUTHEON", "code_postal": "42160", "coordonnees_gps": [45.5337951598, 4.25427323721], "code_commune_insee": "42005"}, "geometry": {"type": "Point", "coordinates": [4.25427323721, 45.5337951598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b873bca2bf691facd8324325b30f6ca902b07d1", "fields": {"nom_de_la_commune": "BALBIGNY", "libell_d_acheminement": "BALBIGNY", "code_postal": "42510", "coordonnees_gps": [45.8327642613, 4.18646349405], "code_commune_insee": "42011"}, "geometry": {"type": "Point", "coordinates": [4.18646349405, 45.8327642613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "509fc87125b640b66f0d4f6d86073215901174ca", "fields": {"nom_de_la_commune": "BARD", "libell_d_acheminement": "BARD", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42012"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18512adb377f309abee6a5a495f0d842d1753c4c", "fields": {"nom_de_la_commune": "BELLEGARDE EN FOREZ", "libell_d_acheminement": "BELLEGARDE EN FOREZ", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42013"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1f941f92cbaea6f10b469c8b5629995010e5bf", "fields": {"nom_de_la_commune": "BELLEROCHE", "libell_d_acheminement": "BELLEROCHE", "code_postal": "42670", "coordonnees_gps": [46.1669318835, 4.36381176292], "code_commune_insee": "42014"}, "geometry": {"type": "Point", "coordinates": [4.36381176292, 46.1669318835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc81b2408eec66ab0ea8e6cca40d3e99a8db90e3", "fields": {"nom_de_la_commune": "BOISSET ST PRIEST", "libell_d_acheminement": "BOISSET ST PRIEST", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42021"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298a4aab609e2b3cc1dc6c0eb99a9c47314595b4", "fields": {"nom_de_la_commune": "BONSON", "libell_d_acheminement": "BONSON", "code_postal": "42160", "coordonnees_gps": [45.5337951598, 4.25427323721], "code_commune_insee": "42022"}, "geometry": {"type": "Point", "coordinates": [4.25427323721, 45.5337951598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f337cac25bdbca86e1161733263d3918068685", "fields": {"nom_de_la_commune": "BOYER", "libell_d_acheminement": "BOYER", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42025"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34dbc67e8bdd4fbc98c44259bb3eff6ecb2e16c9", "fields": {"nom_de_la_commune": "BRIENNON", "libell_d_acheminement": "BRIENNON", "code_postal": "42720", "coordonnees_gps": [46.1272697069, 4.10675684873], "code_commune_insee": "42026"}, "geometry": {"type": "Point", "coordinates": [4.10675684873, 46.1272697069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3b3bb34db60da8aff1bdba7045886b077a77bf", "fields": {"nom_de_la_commune": "BURDIGNES", "libell_d_acheminement": "BURDIGNES", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42028"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0806f3c125c8101e70811319f4bfa1e99ef70197", "fields": {"nom_de_la_commune": "CHAMBOEUF", "libell_d_acheminement": "CHAMBOEUF", "code_postal": "42330", "coordonnees_gps": [45.5836134512, 4.32526364645], "code_commune_insee": "42043"}, "geometry": {"type": "Point", "coordinates": [4.32526364645, 45.5836134512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70358aa74dae7fd789c91b7858b319dd73cfcd1d", "fields": {"nom_de_la_commune": "CHATELNEUF", "libell_d_acheminement": "CHATELNEUF", "code_postal": "42940", "coordonnees_gps": [45.6531481683, 3.93398383728], "code_commune_insee": "42054"}, "geometry": {"type": "Point", "coordinates": [3.93398383728, 45.6531481683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a08b18ac215b5037b2d90261369ac7ff1b2c7f21", "fields": {"nom_de_la_commune": "CHATELUS", "libell_d_acheminement": "CHATELUS", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42055"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e6d229b93c62b547866a2f36bbd8cac08ad359", "fields": {"nom_de_la_commune": "CHAZELLES SUR LAVIEU", "libell_d_acheminement": "CHAZELLES SUR LAVIEU", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42058"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01275d275cd6a881ac0f4b527e844f20e844412", "fields": {"nom_de_la_commune": "COUTOUVRE", "libell_d_acheminement": "COUTOUVRE", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42074"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2298a3471bf794e0545587268d3a42dd2abc7731", "fields": {"nom_de_la_commune": "CRAINTILLEUX", "libell_d_acheminement": "CRAINTILLEUX", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42075"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85fa733a1e184efb69eebda433c4f130bf795c9e", "fields": {"nom_de_la_commune": "DARGOIRE", "libell_d_acheminement": "DARGOIRE", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42083"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94b0e7a021284be9062c0399b7451dd464e996b4", "fields": {"nom_de_la_commune": "ESSERTINES EN DONZY", "libell_d_acheminement": "ESSERTINES EN DONZY", "code_postal": "42360", "coordonnees_gps": [45.793651332, 4.32907155822], "code_commune_insee": "42090"}, "geometry": {"type": "Point", "coordinates": [4.32907155822, 45.793651332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85d006c7be0fdb256e28c69e7b81306d20b3c694", "fields": {"nom_de_la_commune": "FARNAY", "libell_d_acheminement": "FARNAY", "code_postal": "42320", "coordonnees_gps": [45.5245095873, 4.5130578574], "code_commune_insee": "42093"}, "geometry": {"type": "Point", "coordinates": [4.5130578574, 45.5245095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c46d173d667da2c2ef425872ffdd8750afb155d3", "fields": {"nom_de_la_commune": "LA FOUILLOUSE", "libell_d_acheminement": "LA FOUILLOUSE", "code_postal": "42480", "coordonnees_gps": [45.501428477, 4.31933881321], "code_commune_insee": "42097"}, "geometry": {"type": "Point", "coordinates": [4.31933881321, 45.501428477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33a3f1d807559f258a3e7f3da67502658030205d", "fields": {"nom_de_la_commune": "FOURNEAUX", "libell_d_acheminement": "FOURNEAUX", "code_postal": "42470", "coordonnees_gps": [45.9509348, 4.21878807509], "code_commune_insee": "42098"}, "geometry": {"type": "Point", "coordinates": [4.21878807509, 45.9509348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9492b09a1e172a62d13975966bf57fc8ee99268d", "fields": {"nom_de_la_commune": "JARNOSSE", "libell_d_acheminement": "JARNOSSE", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42112"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dccd185d1e85beea7b20b81b77007d047534214", "fields": {"nom_de_la_commune": "JONZIEUX", "libell_d_acheminement": "JONZIEUX", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42115"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b331d426c032e0ca39697321cc5e045db46631c3", "fields": {"nom_de_la_commune": "MABLY", "libell_d_acheminement": "MABLY", "code_postal": "42300", "coordonnees_gps": [46.0587698503, 4.05970322199], "code_commune_insee": "42127"}, "geometry": {"type": "Point", "coordinates": [4.05970322199, 46.0587698503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfbd46624591ce09679639431fd766097f23b7c3", "fields": {"code_postal": "42300", "code_commune_insee": "42127", "libell_d_acheminement": "MABLY", "ligne_5": "LES TUILERIES", "nom_de_la_commune": "MABLY", "coordonnees_gps": [46.0587698503, 4.05970322199]}, "geometry": {"type": "Point", "coordinates": [4.05970322199, 46.0587698503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a0f967f11ced32cc397c7788bd6a851d35617f", "fields": {"nom_de_la_commune": "MACHEZAL", "libell_d_acheminement": "MACHEZAL", "code_postal": "42114", "coordonnees_gps": [45.9115558204, 4.30459179806], "code_commune_insee": "42128"}, "geometry": {"type": "Point", "coordinates": [4.30459179806, 45.9115558204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5eb32759dfb76a0dde22418632f53b1822624b5", "fields": {"nom_de_la_commune": "MARGERIE CHANTAGRET", "libell_d_acheminement": "MARGERIE CHANTAGRET", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42137"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "784dcffaa631c6f697b2284d54200dc89dcc6a53", "fields": {"nom_de_la_commune": "MONTVERDUN", "libell_d_acheminement": "MONTVERDUN", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42150"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d32ad4688cad8c02b37f6894bd94dcef123c969", "fields": {"nom_de_la_commune": "NOIRETABLE", "libell_d_acheminement": "NOIRETABLE", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42159"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a2e6333be48ef3cc1e666c2b1b5ff91298a548", "fields": {"nom_de_la_commune": "OUCHES", "libell_d_acheminement": "OUCHES", "code_postal": "42155", "coordonnees_gps": [45.9923375929, 3.9763968216], "code_commune_insee": "42162"}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ce0b86f1e684801c3f96287c667fd9f4c88bc8", "fields": {"nom_de_la_commune": "LA PACAUDIERE", "libell_d_acheminement": "LA PACAUDIERE", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42163"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf77410a725f2d799943c9bea034b88dcd42855", "fields": {"nom_de_la_commune": "PELUSSIN", "libell_d_acheminement": "PELUSSIN", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42168"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "369b7909937a4e6f55e53d08dafe778342078fb7", "fields": {"nom_de_la_commune": "PONCINS", "libell_d_acheminement": "PONCINS", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42174"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2171e02fe341e95942364d330eb8db5ff9d99336", "fields": {"nom_de_la_commune": "PRECIEUX", "libell_d_acheminement": "PRECIEUX", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42180"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc3be99117145ad80415f65e71e8252f7e66e9ea", "fields": {"nom_de_la_commune": "ROANNE", "libell_d_acheminement": "ROANNE", "code_postal": "42300", "coordonnees_gps": [46.0587698503, 4.05970322199], "code_commune_insee": "42187"}, "geometry": {"type": "Point", "coordinates": [4.05970322199, 46.0587698503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c977ee1ac6a37f0d688120b643668ed4bf4625", "fields": {"nom_de_la_commune": "ROCHE", "libell_d_acheminement": "ROCHE", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42188"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfbc7c2bd7e2a00c749b0ede257d533c54227fac", "fields": {"nom_de_la_commune": "STE AGATHE EN DONZY", "libell_d_acheminement": "STE AGATHE EN DONZY", "code_postal": "42510", "coordonnees_gps": [45.8327642613, 4.18646349405], "code_commune_insee": "42196"}, "geometry": {"type": "Point", "coordinates": [4.18646349405, 45.8327642613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0122511a14e03aaef42ef817e2300795aa55147", "fields": {"nom_de_la_commune": "ST BONNET LE CHATEAU", "libell_d_acheminement": "ST BONNET LE CHATEAU", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42204"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86a5ba0f46e5fb31f79687f2f696266bbc10b17b", "fields": {"nom_de_la_commune": "ST CHAMOND", "libell_d_acheminement": "ST CHAMOND", "code_postal": "42400", "coordonnees_gps": [45.4701877634, 4.50203719758], "code_commune_insee": "42207"}, "geometry": {"type": "Point", "coordinates": [4.50203719758, 45.4701877634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95f092e1afe12ac4e856eb015c04b78ed5105fe", "fields": {"nom_de_la_commune": "ST CHRISTO EN JAREZ", "libell_d_acheminement": "ST CHRISTO EN JAREZ", "code_postal": "42320", "coordonnees_gps": [45.5245095873, 4.5130578574], "code_commune_insee": "42208"}, "geometry": {"type": "Point", "coordinates": [4.5130578574, 45.5245095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e0e6c336e343fc7ad4c53fb93b2c9503246635", "fields": {"nom_de_la_commune": "STE COLOMBE SUR GAND", "libell_d_acheminement": "STE COLOMBE SUR GAND", "code_postal": "42540", "coordonnees_gps": [45.8845566287, 4.25261617322], "code_commune_insee": "42209"}, "geometry": {"type": "Point", "coordinates": [4.25261617322, 45.8845566287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ef7a6ebfd47b77fa14fcced92cc16146a2c684", "fields": {"nom_de_la_commune": "ST CYR DE VALORGES", "libell_d_acheminement": "ST CYR DE VALORGES", "code_postal": "42114", "coordonnees_gps": [45.9115558204, 4.30459179806], "code_commune_insee": "42213"}, "geometry": {"type": "Point", "coordinates": [4.30459179806, 45.9115558204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9331046b3b3b0b348bfd35f0b90555969bcc9239", "fields": {"nom_de_la_commune": "ST ETIENNE", "libell_d_acheminement": "ST ETIENNE", "code_postal": "42000", "coordonnees_gps": [45.4301225907, 4.37830062526], "code_commune_insee": "42218"}, "geometry": {"type": "Point", "coordinates": [4.37830062526, 45.4301225907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d259f42b30d2603facd275564b3eaf5ea3cc09c", "fields": {"code_postal": "42100", "code_commune_insee": "42218", "libell_d_acheminement": "ST ETIENNE", "ligne_5": "ROCHETAILLEE", "nom_de_la_commune": "ST ETIENNE", "coordonnees_gps": [45.4301225907, 4.37830062526]}, "geometry": {"type": "Point", "coordinates": [4.37830062526, 45.4301225907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a163e293ac8ba24175008726ee65bf2499af09", "fields": {"code_postal": "42230", "code_commune_insee": "42218", "libell_d_acheminement": "ST ETIENNE", "ligne_5": "ST VICTOR SUR LOIRE", "nom_de_la_commune": "ST ETIENNE", "coordonnees_gps": [45.4293966387, 4.36873276603]}, "geometry": {"type": "Point", "coordinates": [4.36873276603, 45.4293966387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "333e3fc182f1844b7e7c2be12ca264ec72648a2d", "fields": {"nom_de_la_commune": "ST GEORGES DE BAROILLE", "libell_d_acheminement": "ST GEORGES DE BAROILLE", "code_postal": "42510", "coordonnees_gps": [45.8327642613, 4.18646349405], "code_commune_insee": "42226"}, "geometry": {"type": "Point", "coordinates": [4.18646349405, 45.8327642613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6c3e555d480ee60a7511720205332020ed57bda", "fields": {"nom_de_la_commune": "ST GEORGES HAUTE VILLE", "libell_d_acheminement": "ST GEORGES HAUTE VILLE", "code_postal": "42610", "coordonnees_gps": [45.5527385083, 4.11908617697], "code_commune_insee": "42228"}, "geometry": {"type": "Point", "coordinates": [4.11908617697, 45.5527385083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e498bd8167a2b2de2dbf4f441a331bee70dbc831", "fields": {"nom_de_la_commune": "CHARRAY", "libell_d_acheminement": "CHARRAY", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28083"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "538bdfdcbfa812090dcabfbdcf121268fd939f4b", "fields": {"nom_de_la_commune": "CINTRAY", "libell_d_acheminement": "CINTRAY", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28100"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "959e14dd91eecd35d20f1fb53a25991330973bd7", "fields": {"nom_de_la_commune": "CIVRY", "libell_d_acheminement": "CIVRY", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28101"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06729ae42a62dfcc3ff65cfc529c257aa3a9fa21", "fields": {"nom_de_la_commune": "CORANCEZ", "libell_d_acheminement": "CORANCEZ", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28107"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ac447ac6aba8b0d89e3bd5aab73560faa7ce079", "fields": {"nom_de_la_commune": "CRUCEY VILLAGES", "libell_d_acheminement": "CRUCEY VILLAGES", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28120"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8deb74cc3580298e67b385702f9675590288a5b1", "fields": {"nom_de_la_commune": "DAMMARIE", "libell_d_acheminement": "DAMMARIE", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28122"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ec46b852f3373b794f8aca4ed577626fa8f3898", "fields": {"nom_de_la_commune": "DAMPIERRE SOUS BROU", "libell_d_acheminement": "DAMPIERRE SOUS BROU", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28123"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db627ef630ba5487705b89e971d6a5548f103723", "fields": {"nom_de_la_commune": "DIGNY", "libell_d_acheminement": "DIGNY", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28130"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e35ee09f6152b5c48c6c2f0334a2315d43daf30c", "fields": {"nom_de_la_commune": "ECROSNES", "libell_d_acheminement": "ECROSNES", "code_postal": "28320", "coordonnees_gps": [48.5411997507, 1.69133759252], "code_commune_insee": "28137"}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7943c16c841d434c4cdd16f8f4dcc88f1e558de", "fields": {"nom_de_la_commune": "ERMENONVILLE LA PETITE", "libell_d_acheminement": "ERMENONVILLE LA PETITE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28142"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3df81069ea9f695039b9be0ed834615923d6c5ab", "fields": {"nom_de_la_commune": "LES ETILLEUX", "libell_d_acheminement": "LES ETILLEUX", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28144"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fe1beaf552bbebe2698b3ea1e1f0c4624be7a0", "fields": {"nom_de_la_commune": "LE FAVRIL", "libell_d_acheminement": "LE FAVRIL", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28148"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a92f57252a9d8903f2a202db0d17fd75f60d2d", "fields": {"nom_de_la_commune": "FLACEY", "libell_d_acheminement": "FLACEY", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28153"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b6515895c1dd784fb713749a1c0b194eb16a2f", "fields": {"nom_de_la_commune": "FONTAINE LES RIBOUTS", "libell_d_acheminement": "FONTAINE LES RIBOUTS", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28155"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e433d5cf3c79b4f9c4c8e3f9f84a2cecf9dd323b", "fields": {"nom_de_la_commune": "FONTAINE SIMON", "libell_d_acheminement": "FONTAINE SIMON", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28156"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c55606c95fc6ba4c9cc88a2c55ff418ed83936a7", "fields": {"nom_de_la_commune": "LA FRAMBOISIERE", "libell_d_acheminement": "LA FRAMBOISIERE", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28159"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51a377c4ba211b04349e2fceefff660482c1962", "fields": {"nom_de_la_commune": "FRANCOURVILLE", "libell_d_acheminement": "FRANCOURVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28160"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5103d7430eabb9c59538719243aa4d77ada70ee5", "fields": {"nom_de_la_commune": "FRUNCE", "libell_d_acheminement": "FRUNCE", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28167"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0e96fbd6d6d92b23f196fc40947a25ede1fbf7", "fields": {"nom_de_la_commune": "LEVESVILLE LA CHENARD", "libell_d_acheminement": "LEVESVILLE LA CHENARD", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28210"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fa552ba34e10a4d52753be836e56a66ad536154", "fields": {"nom_de_la_commune": "LOIGNY LA BATAILLE", "libell_d_acheminement": "LOIGNY LA BATAILLE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28212"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68af4225683ee2d4434b7bfb848ea719107408ab", "fields": {"nom_de_la_commune": "LORMAYE", "libell_d_acheminement": "LORMAYE", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28213"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "462c3b457e82e773eaa81131cb43c8125b0ab02a", "fields": {"nom_de_la_commune": "LUIGNY", "libell_d_acheminement": "LUIGNY", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28219"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1d67e7e28bbcd8a53dcbb15fcd255022afe7a10", "fields": {"nom_de_la_commune": "LURAY", "libell_d_acheminement": "LURAY", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28223"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de1da6e7c4049684a2dcbfd8c1fb2611b4fad5ed", "fields": {"nom_de_la_commune": "LUTZ EN DUNOIS", "libell_d_acheminement": "LUTZ EN DUNOIS", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28224"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98b987e47c0dc885bfa3d5b321fe5acac7b749dd", "fields": {"nom_de_la_commune": "LA MANCELIERE", "libell_d_acheminement": "LA MANCELIERE", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28231"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0310e2a1ffb2857d3a11cafc2daca07987e5a7d5", "fields": {"nom_de_la_commune": "MEVOISINS", "libell_d_acheminement": "MEVOISINS", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28249"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc1d42369e22c4454acbb876b62e75f5b3bfe09", "fields": {"nom_de_la_commune": "MIERMAIGNE", "libell_d_acheminement": "MIERMAIGNE", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28252"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6f8f30c808815fe20ad252fb6df907aefc1161c", "fields": {"nom_de_la_commune": "MONDONVILLE ST JEAN", "libell_d_acheminement": "MONDONVILLE ST JEAN", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28257"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9bbf022e9753e3a8ced9ad680c31a5550a59391", "fields": {"nom_de_la_commune": "MONTIGNY SUR AVRE", "libell_d_acheminement": "MONTIGNY SUR AVRE", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28263"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6957b0f3e29793740422013fc6d30c9c5ef9220", "fields": {"nom_de_la_commune": "MONTLANDON", "libell_d_acheminement": "MONTLANDON", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28265"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f10111c712a0bfd55d0c9efdb17f0762021de86", "fields": {"nom_de_la_commune": "MORAINVILLE", "libell_d_acheminement": "MORAINVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28268"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "100caf4bc1f2422b7ac0b2cad4bef5015845a46d", "fields": {"nom_de_la_commune": "MORIERS", "libell_d_acheminement": "MORIERS", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28270"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f99d1651d81f3aa80b2176c84cafab3224b48bf0", "fields": {"nom_de_la_commune": "MORVILLIERS", "libell_d_acheminement": "MORVILLIERS", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28271"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5634977572830cf0b73347d55ad35bef00aefcde", "fields": {"nom_de_la_commune": "MOULHARD", "libell_d_acheminement": "MOULHARD", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28273"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dc8569fff3d09911f26cbce3a032744f491ea31", "fields": {"nom_de_la_commune": "NOGENT LE ROI", "libell_d_acheminement": "NOGENT LE ROI", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28279"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac7428caaadb2acb79d30e71b2ce58beafe02b3", "fields": {"nom_de_la_commune": "NOGENT LE ROTROU", "libell_d_acheminement": "NOGENT LE ROTROU", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28280"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1949367716977b9494819e4f90429dbf91b9cf8", "fields": {"nom_de_la_commune": "OINVILLE ST LIPHARD", "libell_d_acheminement": "OINVILLE ST LIPHARD", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28284"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b52a5254a10473cd2857fbf344a6897802573837", "fields": {"nom_de_la_commune": "LA PUISAYE", "libell_d_acheminement": "LA PUISAYE", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28310"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72278a3a7e74d696ca0e8d02198fe8dfcc5e213", "fields": {"nom_de_la_commune": "PUISEUX", "libell_d_acheminement": "PUISEUX", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28312"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1d8140176349a31d40dcc38c2485fb48dbe89c6", "fields": {"nom_de_la_commune": "ROUVRAY ST DENIS", "libell_d_acheminement": "ROUVRAY ST DENIS", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28319"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4af73c89159021711f0c512ff4d958d03a1f6bd", "fields": {"nom_de_la_commune": "ST DENIS LES PONTS", "libell_d_acheminement": "ST DENIS LES PONTS", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28334"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90171825574b7b0d3c9e11b796e4171a7c198ea7", "fields": {"nom_de_la_commune": "ST JEAN DE REBERVILLIERS", "libell_d_acheminement": "ST JEAN DE REBERVILLIERS", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28341"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b0017889a3131f4f31d511ebbfef29a3b8ab507", "fields": {"nom_de_la_commune": "ST OUEN MARCHEFROY", "libell_d_acheminement": "ST OUEN MARCHEFROY", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28355"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904912962846f11ff79575df0536e240f91588f6", "fields": {"nom_de_la_commune": "ST PIAT", "libell_d_acheminement": "ST PIAT", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28357"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b6a2c565bd2ef5f95700ace167f32996b82eae2", "fields": {"nom_de_la_commune": "ST PREST", "libell_d_acheminement": "ST PREST", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28358"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9db21279198d7740c8c56a3b351182e5e9160259", "fields": {"nom_de_la_commune": "THIMERT GATELLES", "libell_d_acheminement": "THIMERT GATELLES", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28386"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "441e53de46c9bdd9a43c8bee20f28e300ef5a52c", "fields": {"code_postal": "28170", "code_commune_insee": "28386", "libell_d_acheminement": "THIMERT GATELLES", "ligne_5": "GATELLES", "nom_de_la_commune": "THIMERT GATELLES", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c4271c45322adfa3fb0d631f12f00de2f69c11", "fields": {"nom_de_la_commune": "TOURY", "libell_d_acheminement": "TOURY", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28391"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dca7c8b56494359ee0f79d25f3b8bb7ac59eecc", "fields": {"nom_de_la_commune": "TRANCRAINVILLE", "libell_d_acheminement": "TRANCRAINVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28392"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a9add20cea899dc06063924265d60e35e2d8d7", "fields": {"code_postal": "28170", "code_commune_insee": "28393", "libell_d_acheminement": "TREMBLAY LES VILLAGES", "ligne_5": "ECUBLE", "nom_de_la_commune": "TREMBLAY LES VILLAGES", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ed8a26b70c001b909768ada8ee503907edaaa0c", "fields": {"code_postal": "28170", "code_commune_insee": "28393", "libell_d_acheminement": "TREMBLAY LES VILLAGES", "ligne_5": "GIRONVILLE ET NEUVILLE", "nom_de_la_commune": "TREMBLAY LES VILLAGES", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ad57142ab291371175417c856b05df62415f09", "fields": {"code_postal": "28170", "code_commune_insee": "28393", "libell_d_acheminement": "TREMBLAY LES VILLAGES", "ligne_5": "ST CHERON DES CHAMPS", "nom_de_la_commune": "TREMBLAY LES VILLAGES", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1dcee93009ea3e37eb3b5845c265177a3a79cac", "fields": {"code_postal": "28150", "code_commune_insee": "28406", "libell_d_acheminement": "EOLE EN BEAUCE", "ligne_5": "VIABON", "nom_de_la_commune": "EOLE EN BEAUCE", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7a19841536c5bc0caa8aba9475f577659a51d7", "fields": {"nom_de_la_commune": "VITRAY EN BEAUCE", "libell_d_acheminement": "VITRAY EN BEAUCE", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28419"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea717bef631bad71ccaf1c655bafe272d4ac43f3", "fields": {"nom_de_la_commune": "YERMENONVILLE", "libell_d_acheminement": "YERMENONVILLE", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28423"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f00aefd5bbf9d0b7943281cedb7707ec5d43f5", "fields": {"nom_de_la_commune": "YMERAY", "libell_d_acheminement": "YMERAY", "code_postal": "28320", "coordonnees_gps": [48.5411997507, 1.69133759252], "code_commune_insee": "28425"}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bef6b25fd9fbe035190c767b7b6401c8cb650008", "fields": {"nom_de_la_commune": "AUDIERNE", "libell_d_acheminement": "AUDIERNE", "code_postal": "29770", "coordonnees_gps": [48.0454956217, -4.63185223568], "code_commune_insee": "29003"}, "geometry": {"type": "Point", "coordinates": [-4.63185223568, 48.0454956217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a9c016c07b25aff77494f8531f3f00b7aae5d3e", "fields": {"nom_de_la_commune": "CAMARET SUR MER", "libell_d_acheminement": "CAMARET SUR MER", "code_postal": "29570", "coordonnees_gps": [48.2895784826, -4.57542430265], "code_commune_insee": "29022"}, "geometry": {"type": "Point", "coordinates": [-4.57542430265, 48.2895784826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71870ea91d1890d8987e4602a906f0ccbfffdcb", "fields": {"nom_de_la_commune": "LE CLOITRE PLEYBEN", "libell_d_acheminement": "LE CLOITRE PLEYBEN", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29033"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3434fd4d7484460bbe9425a50c365db3963189a", "fields": {"nom_de_la_commune": "COLLOREC", "libell_d_acheminement": "COLLOREC", "code_postal": "29530", "coordonnees_gps": [48.2737361692, -3.80437790081], "code_commune_insee": "29036"}, "geometry": {"type": "Point", "coordinates": [-3.80437790081, 48.2737361692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "578338be34c362f672e309d77c27ade4b11566ac", "fields": {"nom_de_la_commune": "LE CONQUET", "libell_d_acheminement": "LE CONQUET", "code_postal": "29217", "coordonnees_gps": [48.3548137568, -4.73034046541], "code_commune_insee": "29040"}, "geometry": {"type": "Point", "coordinates": [-4.73034046541, 48.3548137568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "750eae17e7e32c9bf796096d54001be0a4b64540", "fields": {"nom_de_la_commune": "CORAY", "libell_d_acheminement": "CORAY", "code_postal": "29370", "coordonnees_gps": [48.0256499846, -3.888334488], "code_commune_insee": "29041"}, "geometry": {"type": "Point", "coordinates": [-3.888334488, 48.0256499846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55cca8dbe2baa7f6504665c396b8590795ba1179", "fields": {"nom_de_la_commune": "LA FEUILLEE", "libell_d_acheminement": "LA FEUILLEE", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29054"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1686180b6ae76f0dd9430e88de8c5f51fe950649", "fields": {"nom_de_la_commune": "LE FOLGOET", "libell_d_acheminement": "LE FOLGOET", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29055"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79a7ed0f069af266fe5f8f9ca57452f916f03c2", "fields": {"nom_de_la_commune": "LA FOREST LANDERNEAU", "libell_d_acheminement": "LA FOREST LANDERNEAU", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29056"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69180f7a630d6601f7bf4dc942479398f9f4dbb8", "fields": {"nom_de_la_commune": "FOUESNANT", "libell_d_acheminement": "FOUESNANT", "code_postal": "29170", "coordonnees_gps": [47.912618887, -4.02039306441], "code_commune_insee": "29058"}, "geometry": {"type": "Point", "coordinates": [-4.02039306441, 47.912618887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "670980fc973ed7e96f0b0d0161db12c49b0e3911", "fields": {"nom_de_la_commune": "HENVIC", "libell_d_acheminement": "HENVIC", "code_postal": "29670", "coordonnees_gps": [48.6115229936, -3.90607440481], "code_commune_insee": "29079"}, "geometry": {"type": "Point", "coordinates": [-3.90607440481, 48.6115229936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3fdac3ce9aad00f7cf3fab5194bc0f747180ef7", "fields": {"nom_de_la_commune": "KERLAZ", "libell_d_acheminement": "KERLAZ", "code_postal": "29100", "coordonnees_gps": [48.0680166457, -4.3318760918], "code_commune_insee": "29090"}, "geometry": {"type": "Point", "coordinates": [-4.3318760918, 48.0680166457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e89f298e138e4c1df9f23f4657c419de874f7d", "fields": {"nom_de_la_commune": "KERLOUAN", "libell_d_acheminement": "KERLOUAN", "code_postal": "29890", "coordonnees_gps": [48.6454148535, -4.34605621713], "code_commune_insee": "29091"}, "geometry": {"type": "Point", "coordinates": [-4.34605621713, 48.6454148535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc80a43df1427b153e452a9f03cfae497c79d1e", "fields": {"nom_de_la_commune": "LANDEVENNEC", "libell_d_acheminement": "LANDEVENNEC", "code_postal": "29560", "coordonnees_gps": [48.2479935749, -4.31271696117], "code_commune_insee": "29104"}, "geometry": {"type": "Point", "coordinates": [-4.31271696117, 48.2479935749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876686c07e10dde9a8ef7060b08d788c85478993", "fields": {"nom_de_la_commune": "LANHOUARNEAU", "libell_d_acheminement": "LANHOUARNEAU", "code_postal": "29430", "coordonnees_gps": [48.6194750242, -4.20707342526], "code_commune_insee": "29111"}, "geometry": {"type": "Point", "coordinates": [-4.20707342526, 48.6194750242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69dfdebe36cd2143a6808dbb54b33ad429f97c71", "fields": {"nom_de_la_commune": "LANNILIS", "libell_d_acheminement": "LANNILIS", "code_postal": "29870", "coordonnees_gps": [48.5578339908, -4.54140590584], "code_commune_insee": "29117"}, "geometry": {"type": "Point", "coordinates": [-4.54140590584, 48.5578339908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5997c35a11c506cf36ded592db508312c9db9f7", "fields": {"nom_de_la_commune": "LENNON", "libell_d_acheminement": "LENNON", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29123"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89fb1842f27bca56b10e60819bb0101d6e0c24aa", "fields": {"nom_de_la_commune": "LOC EGUINER", "libell_d_acheminement": "LOC EGUINER", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29128"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae151ba128dc24c177c1c08fab3abd3583b5e245", "fields": {"nom_de_la_commune": "LOCMARIA PLOUZANE", "libell_d_acheminement": "LOCMARIA PLOUZANE", "code_postal": "29280", "coordonnees_gps": [48.3750034189, -4.61990199453], "code_commune_insee": "29130"}, "geometry": {"type": "Point", "coordinates": [-4.61990199453, 48.3750034189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5121b7599f518563cc404b7a7c1ac8310bc229d8", "fields": {"nom_de_la_commune": "LOCRONAN", "libell_d_acheminement": "LOCRONAN", "code_postal": "29180", "coordonnees_gps": [48.0793827712, -4.16636878922], "code_commune_insee": "29134"}, "geometry": {"type": "Point", "coordinates": [-4.16636878922, 48.0793827712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6820dfdf616f46120d63f76f864bdc9973ff85b", "fields": {"nom_de_la_commune": "LOGONNA DAOULAS", "libell_d_acheminement": "LOGONNA DAOULAS", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29137"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568d0c80197bf0e4c6096bc0e147380b24a00867", "fields": {"nom_de_la_commune": "LOTHEY", "libell_d_acheminement": "LOTHEY", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29142"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d10985f1394874375c74ea895d4e8fef60bd81b4", "fields": {"nom_de_la_commune": "LA MARTYRE", "libell_d_acheminement": "LA MARTYRE", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29144"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b7f426952a99c00afc2b840cdcaad0499b8814", "fields": {"nom_de_la_commune": "NEVEZ", "libell_d_acheminement": "NEVEZ", "code_postal": "29920", "coordonnees_gps": [47.815380473, -3.77580285801], "code_commune_insee": "29153"}, "geometry": {"type": "Point", "coordinates": [-3.77580285801, 47.815380473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe82fabe8ad2bfe0976cfcea0a28d19e636226c", "fields": {"nom_de_la_commune": "OUESSANT", "libell_d_acheminement": "ILE D OUESSANT", "code_postal": "29242", "coordonnees_gps": [48.459903719, -5.08558073486], "code_commune_insee": "29155"}, "geometry": {"type": "Point", "coordinates": [-5.08558073486, 48.459903719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416aa631e1b142c40c5be2b9b426848e95fffa70", "fields": {"code_postal": "29760", "code_commune_insee": "29158", "libell_d_acheminement": "PENMARCH", "ligne_5": "ST GUENOLE", "nom_de_la_commune": "PENMARCH", "coordonnees_gps": [47.8121356044, -4.34149591824]}, "geometry": {"type": "Point", "coordinates": [-4.34149591824, 47.8121356044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e20a7360895c8a38fc03f50a23b11b2f28ebaa94", "fields": {"nom_de_la_commune": "PLOMEUR", "libell_d_acheminement": "PLOMEUR", "code_postal": "29120", "coordonnees_gps": [47.8679473907, -4.24180509959], "code_commune_insee": "29171"}, "geometry": {"type": "Point", "coordinates": [-4.24180509959, 47.8679473907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25800122d0430982cfa9f8e521eba582f499a38f", "fields": {"nom_de_la_commune": "PLONEOUR LANVERN", "libell_d_acheminement": "PLONEOUR LANVERN", "code_postal": "29720", "coordonnees_gps": [47.9104464367, -4.30004549098], "code_commune_insee": "29174"}, "geometry": {"type": "Point", "coordinates": [-4.30004549098, 47.9104464367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb9abe39c7e3c874276dd9d6ec32be390db7abc", "fields": {"nom_de_la_commune": "PLONEVEZ DU FAOU", "libell_d_acheminement": "PLONEVEZ DU FAOU", "code_postal": "29530", "coordonnees_gps": [48.2737361692, -3.80437790081], "code_commune_insee": "29175"}, "geometry": {"type": "Point", "coordinates": [-3.80437790081, 48.2737361692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a12d3041e3423adae6b0f98f3a9d7040c8c034e", "fields": {"nom_de_la_commune": "PLOUEZOC H", "libell_d_acheminement": "PLOUEZOC H", "code_postal": "29252", "coordonnees_gps": [48.6370036944, -3.81562783248], "code_commune_insee": "29186"}, "geometry": {"type": "Point", "coordinates": [-3.81562783248, 48.6370036944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b96d42ac5a6e187b4091d9cdd426e85f0706477f", "fields": {"nom_de_la_commune": "PLOUGUIN", "libell_d_acheminement": "PLOUGUIN", "code_postal": "29830", "coordonnees_gps": [48.5288495464, -4.64332809681], "code_commune_insee": "29196"}, "geometry": {"type": "Point", "coordinates": [-4.64332809681, 48.5288495464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa530b9c4111c3e7893c07e128c0820360e786c2", "fields": {"nom_de_la_commune": "PLOUNEOUR MENEZ", "libell_d_acheminement": "PLOUNEOUR MENEZ", "code_postal": "29410", "coordonnees_gps": [48.4944200655, -3.89854217], "code_commune_insee": "29202"}, "geometry": {"type": "Point", "coordinates": [-3.89854217, 48.4944200655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97e0812df5cb0aa7c292f3dc43f2f2245d1105cc", "fields": {"nom_de_la_commune": "PLOUNEVEZEL", "libell_d_acheminement": "PLOUNEVEZEL", "code_postal": "29270", "coordonnees_gps": [48.2542377474, -3.60710668308], "code_commune_insee": "29205"}, "geometry": {"type": "Point", "coordinates": [-3.60710668308, 48.2542377474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b63e94738ff6e716bd9295e15f393c1a3dd63ca", "fields": {"nom_de_la_commune": "PLOUNEVEZ LOCHRIST", "libell_d_acheminement": "PLOUNEVEZ LOCHRIST", "code_postal": "29430", "coordonnees_gps": [48.6194750242, -4.20707342526], "code_commune_insee": "29206"}, "geometry": {"type": "Point", "coordinates": [-4.20707342526, 48.6194750242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82ef0ae3df79c9e382d8d2d20d1ce3ffd04d37d", "fields": {"nom_de_la_commune": "PLOURIN LES MORLAIX", "libell_d_acheminement": "PLOURIN LES MORLAIX", "code_postal": "29600", "coordonnees_gps": [48.5560606462, -3.82444218679], "code_commune_insee": "29207"}, "geometry": {"type": "Point", "coordinates": [-3.82444218679, 48.5560606462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf71a910d581a92ee158d444355606434af13e33", "fields": {"nom_de_la_commune": "PLOUZEVEDE", "libell_d_acheminement": "PLOUZEVEDE", "code_postal": "29440", "coordonnees_gps": [48.5805315546, -4.12744185635], "code_commune_insee": "29213"}, "geometry": {"type": "Point", "coordinates": [-4.12744185635, 48.5805315546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad8e6a427033210ec46dfe016243ac62a721bf5", "fields": {"nom_de_la_commune": "QUERRIEN", "libell_d_acheminement": "QUERRIEN", "code_postal": "29310", "coordonnees_gps": [47.9478080575, -3.53309930028], "code_commune_insee": "29230"}, "geometry": {"type": "Point", "coordinates": [-3.53309930028, 47.9478080575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf1d35aee09202126f2fa010582c65b9121ec0a4", "fields": {"nom_de_la_commune": "ST DERRIEN", "libell_d_acheminement": "ST DERRIEN", "code_postal": "29440", "coordonnees_gps": [48.5805315546, -4.12744185635], "code_commune_insee": "29244"}, "geometry": {"type": "Point", "coordinates": [-4.12744185635, 48.5805315546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8897235c6f1a6ff36adaa709a592a047f2c9e98", "fields": {"nom_de_la_commune": "ST ELOY", "libell_d_acheminement": "ST ELOY", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29246"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900d76a3aedd0daf810566cc5f014310f0564569", "fields": {"nom_de_la_commune": "ST JEAN TROLIMON", "libell_d_acheminement": "ST JEAN TROLIMON", "code_postal": "29120", "coordonnees_gps": [47.8679473907, -4.24180509959], "code_commune_insee": "29252"}, "geometry": {"type": "Point", "coordinates": [-4.24180509959, 47.8679473907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "731ca452afa5950b46094a707a397f57c51eab4b", "fields": {"nom_de_la_commune": "ST THEGONNEC LOC EGUINER", "libell_d_acheminement": "ST THEGONNEC LOC EGUINER", "code_postal": "29410", "coordonnees_gps": [48.4944200655, -3.89854217], "code_commune_insee": "29266"}, "geometry": {"type": "Point", "coordinates": [-3.89854217, 48.4944200655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21a7e977a2707e8cfb3daba9e1a51ee2a4c206d7", "fields": {"nom_de_la_commune": "ST THONAN", "libell_d_acheminement": "ST THONAN", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29268"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "333040ae6c8532b737ddfd9cc7c634e3b3480dbe", "fields": {"nom_de_la_commune": "ST THURIEN", "libell_d_acheminement": "ST THURIEN", "code_postal": "29380", "coordonnees_gps": [47.931095922, -3.67533522316], "code_commune_insee": "29269"}, "geometry": {"type": "Point", "coordinates": [-3.67533522316, 47.931095922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce01b138017df38ddb219a0a6648d2139df6883f", "fields": {"nom_de_la_commune": "TOURCH", "libell_d_acheminement": "TOURCH", "code_postal": "29140", "coordonnees_gps": [47.9522669314, -3.84121638089], "code_commune_insee": "29281"}, "geometry": {"type": "Point", "coordinates": [-3.84121638089, 47.9522669314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a8298e2df494bd94a01bd60d16a4c8e00d7472", "fields": {"nom_de_la_commune": "LE PERTHUS", "libell_d_acheminement": "LE PERTHUS", "code_postal": "66480", "coordonnees_gps": [42.4667287992, 2.83075140133], "code_commune_insee": "66137"}, "geometry": {"type": "Point", "coordinates": [2.83075140133, 42.4667287992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602404425027101caf9c7bc1e7cb2dfc76b3a978", "fields": {"nom_de_la_commune": "PIA", "libell_d_acheminement": "PIA", "code_postal": "66380", "coordonnees_gps": [42.7491096887, 2.91515282762], "code_commune_insee": "66141"}, "geometry": {"type": "Point", "coordinates": [2.91515282762, 42.7491096887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e77d81ffae95bd71f778275511e8ad136e22e90", "fields": {"nom_de_la_commune": "PONTEILLA", "libell_d_acheminement": "PONTEILLA", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66145"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015b681ad7c7a51170f6a641415200855967672d", "fields": {"nom_de_la_commune": "PUYVALADOR", "libell_d_acheminement": "PUYVALADOR", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66154"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52c5633ac12af0fbbc510e86f3330af9e0c06392", "fields": {"nom_de_la_commune": "PY", "libell_d_acheminement": "PY", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66155"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76678775c480257daa6eb9bf5e1630862963a55c", "fields": {"nom_de_la_commune": "RIGARDA", "libell_d_acheminement": "RIGARDA", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66162"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "334c7cfafe8466c128ae099b974c5fa2ce86041f", "fields": {"nom_de_la_commune": "STE COLOMBE DE LA COMMANDERIE", "libell_d_acheminement": "STE COLOMBE DE LA COMMANDERIE", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66170"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edab17ca13aeb5193ae983bc0ff0c75460af081a", "fields": {"nom_de_la_commune": "ST MARTIN DE FENOUILLET", "libell_d_acheminement": "ST MARTIN DE FENOUILLET", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66184"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ae57ca6728348bf088f5aa446de500759796201", "fields": {"nom_de_la_commune": "SALEILLES", "libell_d_acheminement": "SALEILLES", "code_postal": "66280", "coordonnees_gps": [42.6571521574, 2.94899721736], "code_commune_insee": "66189"}, "geometry": {"type": "Point", "coordinates": [2.94899721736, 42.6571521574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "949bf4e2dbc7fbe3f4da2fae1d4db814c2b30892", "fields": {"nom_de_la_commune": "SALSES LE CHATEAU", "libell_d_acheminement": "SALSES LE CHATEAU", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66190"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c6d36182060fcd92cb15220da220f4aee4b2e0", "fields": {"nom_de_la_commune": "SAUTO", "libell_d_acheminement": "SAUTO", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66192"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00fad407ea3570cdfda773778dce7456c7c20574", "fields": {"nom_de_la_commune": "SOUANYAS", "libell_d_acheminement": "SOUANYAS", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66197"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2881128db6dbb58c1d0a5486c97a69804090d912", "fields": {"nom_de_la_commune": "TAULIS", "libell_d_acheminement": "TAULIS", "code_postal": "66110", "coordonnees_gps": [42.4916633371, 2.63428714842], "code_commune_insee": "66203"}, "geometry": {"type": "Point", "coordinates": [2.63428714842, 42.4916633371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b057f913eecfa7957d84835a4f120148359a2813", "fields": {"nom_de_la_commune": "TOULOUGES", "libell_d_acheminement": "TOULOUGES", "code_postal": "66350", "coordonnees_gps": [42.6703079126, 2.82366497706], "code_commune_insee": "66213"}, "geometry": {"type": "Point", "coordinates": [2.82366497706, 42.6703079126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9be7d3343400199984302e700e11a9a8471c989a", "fields": {"nom_de_la_commune": "TRESSERRE", "libell_d_acheminement": "TRESSERRE", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66214"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b54e86876485b82d36211411b7aab53efc90f701", "fields": {"nom_de_la_commune": "UR", "libell_d_acheminement": "UR", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66218"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab5d34ee651e8c440102425404b38b3add0e8e51", "fields": {"nom_de_la_commune": "VALMANYA", "libell_d_acheminement": "VALMANYA", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66221"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a68002ac0b8088de2e14d8feed1f076d963f611", "fields": {"nom_de_la_commune": "VILLELONGUE DE LA SALANQUE", "libell_d_acheminement": "VILLELONGUE DE LA SALANQUE", "code_postal": "66410", "coordonnees_gps": [42.725777411, 2.97701363818], "code_commune_insee": "66224"}, "geometry": {"type": "Point", "coordinates": [2.97701363818, 42.725777411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01616e8a5d3d438872f548f80a4735027033637f", "fields": {"nom_de_la_commune": "VILLENEUVE LA RIVIERE", "libell_d_acheminement": "VILLENEUVE LA RIVIERE", "code_postal": "66610", "coordonnees_gps": [42.7054255947, 2.79893251682], "code_commune_insee": "66228"}, "geometry": {"type": "Point", "coordinates": [2.79893251682, 42.7054255947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da422ceb9b7ce0619cdff07bb70e195d88ba06c3", "fields": {"nom_de_la_commune": "VINCA", "libell_d_acheminement": "VINCA", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66230"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e97d3f5bf1c220101c0e5e4c298f292e55de7e80", "fields": {"nom_de_la_commune": "VINGRAU", "libell_d_acheminement": "VINGRAU", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66231"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1f2bc475913cb2256fb2c4b954577eb750f6f4d", "fields": {"nom_de_la_commune": "ADAMSWILLER", "libell_d_acheminement": "ADAMSWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67002"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dcb042e161c6fdd55aa3995cef41c2d61f6be9c", "fields": {"code_postal": "67440", "code_commune_insee": "67004", "libell_d_acheminement": "SOMMERAU", "ligne_5": "BIRKENWALD", "nom_de_la_commune": "SOMMERAU", "coordonnees_gps": [48.685560689, 7.36622848676]}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f87f816cf151d5058d8dee80646e711bf1dc4a5b", "fields": {"code_postal": "67440", "code_commune_insee": "67004", "libell_d_acheminement": "SOMMERAU", "ligne_5": "SINGRIST", "nom_de_la_commune": "SOMMERAU", "coordonnees_gps": [48.685560689, 7.36622848676]}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0467c252d08aad08e35dffcef418cf750932db7f", "fields": {"nom_de_la_commune": "ALTECKENDORF", "libell_d_acheminement": "ALTECKENDORF", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67005"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d3182e2159c5a6da7b3fd30876f257548b8d878", "fields": {"nom_de_la_commune": "ALTORF", "libell_d_acheminement": "ALTORF", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67008"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681cb37f1aca67f4e800e765e7146732e1ee64f3", "fields": {"nom_de_la_commune": "ARTOLSHEIM", "libell_d_acheminement": "ARTOLSHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67011"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c520f5061709564fd562cdffc6022fa3e843fc", "fields": {"nom_de_la_commune": "ASSWILLER", "libell_d_acheminement": "ASSWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67013"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "518e545acea39c1ddf0d079d1cc202f11b0ee6c4", "fields": {"nom_de_la_commune": "BAERENDORF", "libell_d_acheminement": "BAERENDORF", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67017"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab5b615f9120d941a3278557c0188e0a95e4e66", "fields": {"nom_de_la_commune": "BERG", "libell_d_acheminement": "BERG", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67029"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d031421bde3a3abd83af28851c1ee518e97ae289", "fields": {"nom_de_la_commune": "BERGBIETEN", "libell_d_acheminement": "BERGBIETEN", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67030"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf19f92b3f758d8a70243a439f8488f21615287", "fields": {"code_postal": "67370", "code_commune_insee": "67034", "libell_d_acheminement": "BERSTETT", "ligne_5": "RUMERSHEIM", "nom_de_la_commune": "BERSTETT", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41330a4b01c6c8ed500ecf4a1b77cebf93d9cf8d", "fields": {"nom_de_la_commune": "BERSTHEIM", "libell_d_acheminement": "BERSTHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67035"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d0f3925420bb097f99d8ba7ce33b9fb73817d7", "fields": {"nom_de_la_commune": "BISSERT", "libell_d_acheminement": "BISSERT", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67047"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e4c1639d54fbd76a2252600b7e2491d154c142", "fields": {"nom_de_la_commune": "BLANCHERUPT", "libell_d_acheminement": "BLANCHERUPT", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67050"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470932139a7eb86464207af5b09a48199b44eca1", "fields": {"nom_de_la_commune": "BOSSENDORF", "libell_d_acheminement": "BOSSENDORF", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67058"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d8625a454f224eaac638e2ea416cafa0579cd45", "fields": {"nom_de_la_commune": "BREITENAU", "libell_d_acheminement": "BREITENAU", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67062"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f8b98f4db54004bcfbc7dee09b42c99aa4a78d", "fields": {"nom_de_la_commune": "BRUMATH", "libell_d_acheminement": "BRUMATH", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67067"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3795c346dec8b0950c10586cda809b86d8ec29bd", "fields": {"nom_de_la_commune": "BUSWILLER", "libell_d_acheminement": "BUSWILLER", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67068"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a069b16d8ee1a45051317538eaba72b81ce384c5", "fields": {"nom_de_la_commune": "BUST", "libell_d_acheminement": "BUST", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67071"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93cd89200f042ab9c5f51481a520dd1424188ebc", "fields": {"nom_de_la_commune": "CLIMBACH", "libell_d_acheminement": "CLIMBACH", "code_postal": "67510", "coordonnees_gps": [49.0227242639, 7.76839928059], "code_commune_insee": "67075"}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adab6328882936c1a4415c1aa96e656658c166ec", "fields": {"nom_de_la_commune": "COLROY LA ROCHE", "libell_d_acheminement": "COLROY LA ROCHE", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67076"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f076e0357ef7e29c29154cc9c4ab4a7f2d0b891f", "fields": {"nom_de_la_commune": "DIEBOLSHEIM", "libell_d_acheminement": "DIEBOLSHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67090"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6a099925d91b123f25ee43ad441e5085eaae991", "fields": {"nom_de_la_commune": "DIEMERINGEN", "libell_d_acheminement": "DIEMERINGEN", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67095"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d120b5580f1f0729d1992a0849b8a42c9fbcb7", "fields": {"nom_de_la_commune": "DRACHENBRONN BIRLENBACH", "libell_d_acheminement": "DRACHENBRONN BIRLENBACH", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67104"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0746b3f6a890555b896b76d2c70978d1a560d9f9", "fields": {"nom_de_la_commune": "DUNTZENHEIM", "libell_d_acheminement": "DUNTZENHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67107"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9665581567a20d2c8fcb9932bd26a61502b6e833", "fields": {"nom_de_la_commune": "DURRENBACH", "libell_d_acheminement": "DURRENBACH", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67110"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "287226f55f421dd9fe770e51ddc512b0ccb238c8", "fields": {"nom_de_la_commune": "DUTTLENHEIM", "libell_d_acheminement": "DUTTLENHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67112"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed98730b110f37a4a8fd9ce82dc93b808babffaa", "fields": {"nom_de_la_commune": "ECKARTSWILLER", "libell_d_acheminement": "ECKARTSWILLER", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67117"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9026c0a81acddabdfb71289013464581f6db810d", "fields": {"nom_de_la_commune": "EICHHOFFEN", "libell_d_acheminement": "EICHHOFFEN", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67120"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09a84d70d254e474463065a3f7459e62ec425a2b", "fields": {"code_postal": "67710", "code_commune_insee": "67122", "libell_d_acheminement": "WANGENBOURG ENGENTHAL", "ligne_5": "SCHNEETHAL", "nom_de_la_commune": "WANGENBOURG ENGENTHAL", "coordonnees_gps": [48.6210040499, 7.30576868446]}, "geometry": {"type": "Point", "coordinates": [7.30576868446, 48.6210040499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a50dcfd5b75706317e4eafe322554180d36e512c", "fields": {"code_postal": "67150", "code_commune_insee": "67130", "libell_d_acheminement": "ERSTEIN", "ligne_5": "KRAFFT", "nom_de_la_commune": "ERSTEIN", "coordonnees_gps": [48.4189432585, 7.66592042678]}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8027d2e3e255173fc98db06827eda49308b9863f", "fields": {"nom_de_la_commune": "ESCHWILLER", "libell_d_acheminement": "ESCHWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67134"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92f5663249e6c8242fc93392f02f6f5269d0552", "fields": {"nom_de_la_commune": "EYWILLER", "libell_d_acheminement": "EYWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67136"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deb6e3f14f4154c72fd65137e6eb945da70f68eb", "fields": {"nom_de_la_commune": "FOUCHY", "libell_d_acheminement": "FOUCHY", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67143"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b491ace7d226d73b048596de9265434dde64a6e7", "fields": {"nom_de_la_commune": "GRIES", "libell_d_acheminement": "GRIES", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67169"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d9c5e7af7dc659fb8e4f60c1f2e0ec46a4a0ba", "fields": {"nom_de_la_commune": "GUNDERSHOFFEN", "libell_d_acheminement": "GUNDERSHOFFEN", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67176"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072c5ee5c39a43ee67bbf92e3248c609d6454aff", "fields": {"code_postal": "67500", "code_commune_insee": "67180", "libell_d_acheminement": "HAGUENAU", "ligne_5": "MARIENTHAL", "nom_de_la_commune": "HAGUENAU", "coordonnees_gps": [48.83252193, 7.82037649522]}, "geometry": {"type": "Point", "coordinates": [7.82037649522, 48.83252193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e03c1f31e3d985d71218d0ef4c8f3731b1d4ffc6", "fields": {"nom_de_la_commune": "HANGENBIETEN", "libell_d_acheminement": "HANGENBIETEN", "code_postal": "67980", "coordonnees_gps": [48.5566327988, 7.61284773841], "code_commune_insee": "67182"}, "geometry": {"type": "Point", "coordinates": [7.61284773841, 48.5566327988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92852864669817a27801fd2f1db3511d3db2609a", "fields": {"nom_de_la_commune": "HEGENEY", "libell_d_acheminement": "HEGENEY", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67186"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c9f019548ff30129e5e43cd0a4c4fcada86726", "fields": {"nom_de_la_commune": "HERBSHEIM", "libell_d_acheminement": "HERBSHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67192"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2732ba695ce73a5dcd4687b520464adf6fda5aae", "fields": {"nom_de_la_commune": "HUNSPACH", "libell_d_acheminement": "HUNSPACH", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67213"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d93fd9dc7059e1f73ea2d362614c7b69d6b00d", "fields": {"nom_de_la_commune": "INGOLSHEIM", "libell_d_acheminement": "INGOLSHEIM", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67221"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d292092a5c2ad75d423a382b7b8f7c2360f24c0", "fields": {"nom_de_la_commune": "ITTENHEIM", "libell_d_acheminement": "ITTENHEIM", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67226"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c023ab0a7fdbf2b3d14b019d156157f1b6f20031", "fields": {"nom_de_la_commune": "NEUGARTHEIM ITTLENHEIM", "libell_d_acheminement": "NEUGARTHEIM ITTLENHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67228"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c07525b1d4afe8c6c639938f05328cbe1ba634df", "fields": {"nom_de_la_commune": "KALTENHOUSE", "libell_d_acheminement": "KALTENHOUSE", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67230"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c67708d9d62d5a4b84aabb44d90b4965cb544ce5", "fields": {"nom_de_la_commune": "KERTZFELD", "libell_d_acheminement": "KERTZFELD", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67233"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d733f2917a3721aea22b005fecb367bfe2d5488", "fields": {"nom_de_la_commune": "KESSELDORF", "libell_d_acheminement": "KESSELDORF", "code_postal": "67930", "coordonnees_gps": [48.8645701824, 8.0807216154], "code_commune_insee": "67235"}, "geometry": {"type": "Point", "coordinates": [8.0807216154, 48.8645701824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4953d3d35a68cd75773eb33aeacf5081ac3828d", "fields": {"nom_de_la_commune": "KIENHEIM", "libell_d_acheminement": "KIENHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67236"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b982ba56f27a3978a9722afabea1bb4c176cb0af", "fields": {"nom_de_la_commune": "KINTZHEIM", "libell_d_acheminement": "KINTZHEIM", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67239"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4767d69c5e272ca15a001ecbf70722dca53f7363", "fields": {"nom_de_la_commune": "KOGENHEIM", "libell_d_acheminement": "KOGENHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67246"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87069c6036c82520181a9164d7b6bfcebb4b45d4", "fields": {"nom_de_la_commune": "KRAUTERGERSHEIM", "libell_d_acheminement": "KRAUTERGERSHEIM", "code_postal": "67880", "coordonnees_gps": [48.4869700046, 7.56924214969], "code_commune_insee": "67248"}, "geometry": {"type": "Point", "coordinates": [7.56924214969, 48.4869700046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f971d1e0ebce9e50a426a9bf0c795246df6b52b6", "fields": {"nom_de_la_commune": "KRAUTWILLER", "libell_d_acheminement": "KRAUTWILLER", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67249"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285081fe1ec78de82445b74c43e618147a583194", "fields": {"nom_de_la_commune": "KUTZENHAUSEN", "libell_d_acheminement": "KUTZENHAUSEN", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67254"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92e753b120b08c9b8c77362d83b422e52ae0457", "fields": {"nom_de_la_commune": "LALAYE", "libell_d_acheminement": "LALAYE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67255"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2053b8f851c1441f2a04d01728ac407dea3e70a1", "fields": {"code_postal": "67220", "code_commune_insee": "67255", "libell_d_acheminement": "LALAYE", "ligne_5": "CHARBES", "nom_de_la_commune": "LALAYE", "coordonnees_gps": [48.3397350207, 7.28306516568]}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d9c16a7c73e1b459ccc005ea317f5a6d2f1a15", "fields": {"nom_de_la_commune": "LAUBACH", "libell_d_acheminement": "LAUBACH", "code_postal": "67580", "coordonnees_gps": [48.8787753721, 7.67873675705], "code_commune_insee": "67260"}, "geometry": {"type": "Point", "coordinates": [7.67873675705, 48.8787753721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "099c770bfcecfce014363fe5bc5f090544b7876c", "fields": {"code_postal": "67510", "code_commune_insee": "67263", "libell_d_acheminement": "LEMBACH", "ligne_5": "MATTSTALL", "nom_de_la_commune": "LEMBACH", "coordonnees_gps": [49.0227242639, 7.76839928059]}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541fddf5e9eee38ad75e60b420fb029f0e6afc27", "fields": {"nom_de_la_commune": "LOHR", "libell_d_acheminement": "LOHR", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67273"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c80adc20e2e02e69fb9673e6d7cf0750a257db6", "fields": {"nom_de_la_commune": "LUPSTEIN", "libell_d_acheminement": "LUPSTEIN", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67275"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7154bbdc8d975d004866bc1ff107d97e779bf66d", "fields": {"nom_de_la_commune": "MAISONSGOUTTE", "libell_d_acheminement": "MAISONSGOUTTE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67280"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c9c114f6995d952ff5d1395b03c394cb8e288c", "fields": {"nom_de_la_commune": "MEMMELSHOFFEN", "libell_d_acheminement": "MEMMELSHOFFEN", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67288"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11bf68979ffad992ac9dd9c565ae4624baf5df5e", "fields": {"code_postal": "67250", "code_commune_insee": "67290", "libell_d_acheminement": "MERKWILLER PECHELBRONN", "ligne_5": "HOELSCHLOCH", "nom_de_la_commune": "MERKWILLER PECHELBRONN", "coordonnees_gps": [48.9438844656, 7.88208962387]}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba00c3c2218c213565d47edabcbd05a60c7ce3f", "fields": {"nom_de_la_commune": "MITTELBERGHEIM", "libell_d_acheminement": "MITTELBERGHEIM", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67295"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609599090b4fabd85da97f0bdd444a49654e872d", "fields": {"nom_de_la_commune": "MOLLKIRCH", "libell_d_acheminement": "MOLLKIRCH", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67299"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "665bcc3d6aba790ccab2934aa0699b7159abd876", "fields": {"nom_de_la_commune": "MORSCHWILLER", "libell_d_acheminement": "MORSCHWILLER", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67304"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cef5f8fd62fb9a922785dac87fae1daac3fb39bd", "fields": {"nom_de_la_commune": "MOTHERN", "libell_d_acheminement": "MOTHERN", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67305"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2db6e312bcfc74b16d1346ea0632c99165667c2", "fields": {"nom_de_la_commune": "MUHLBACH SUR BRUCHE", "libell_d_acheminement": "MUHLBACH SUR BRUCHE", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67306"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece48b0c5f1c58c1b2d8401a20869ae5583f4239", "fields": {"nom_de_la_commune": "MUTTERSHOLTZ", "libell_d_acheminement": "MUTTERSHOLTZ", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67311"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5db17157df7f7f5e63671160b197dbfc6e69b720", "fields": {"nom_de_la_commune": "NEEWILLER PRES LAUTERBOURG", "libell_d_acheminement": "NEEWILLER PRES LAUTERBOURG", "code_postal": "67630", "coordonnees_gps": [48.9645506647, 8.14057364298], "code_commune_insee": "67315"}, "geometry": {"type": "Point", "coordinates": [8.14057364298, 48.9645506647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac47927cc58fbefb5e2cf1dd25ee6a9341570bf5", "fields": {"nom_de_la_commune": "NEUVILLER LA ROCHE", "libell_d_acheminement": "NEUVILLER LA ROCHE", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67321"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bda2bfb0bdb7bb5db2b2717917a16ff25c98bc78", "fields": {"nom_de_la_commune": "NEUWILLER LES SAVERNE", "libell_d_acheminement": "NEUWILLER LES SAVERNE", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67322"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea18cecb223df3e00b8eb24119e676cc939f0c0b", "fields": {"nom_de_la_commune": "NIEDERHASLACH", "libell_d_acheminement": "NIEDERHASLACH", "code_postal": "67280", "coordonnees_gps": [48.5545295138, 7.30377202795], "code_commune_insee": "67325"}, "geometry": {"type": "Point", "coordinates": [7.30377202795, 48.5545295138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a74b07309c57c79e391b51d79f3a597a0204e9a", "fields": {"nom_de_la_commune": "NIEDERMODERN", "libell_d_acheminement": "NIEDERMODERN", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67328"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff1115ec38837088b3888162a022424429dfa7f", "fields": {"nom_de_la_commune": "NIEDERSOULTZBACH", "libell_d_acheminement": "NIEDERSOULTZBACH", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67333"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ecdbf031f773aea370470f11a326aa5b454014", "fields": {"nom_de_la_commune": "OBENHEIM", "libell_d_acheminement": "OBENHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67338"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001c459ee520e1b370cdede6248dfffe14e7918e", "fields": {"nom_de_la_commune": "BETSCHDORF", "libell_d_acheminement": "BETSCHDORF", "code_postal": "67660", "coordonnees_gps": [48.8932955893, 7.92442100196], "code_commune_insee": "67339"}, "geometry": {"type": "Point", "coordinates": [7.92442100196, 48.8932955893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6834976f98833700d356d2f6ac4767b829b5572b", "fields": {"nom_de_la_commune": "OBERDORF SPACHBACH", "libell_d_acheminement": "OBERDORF SPACHBACH", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67341"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b80bc19d428550554da88042c0067826c1303e3", "fields": {"nom_de_la_commune": "OBERHOFFEN LES WISSEMBOURG", "libell_d_acheminement": "OBERHOFFEN LES WISSEMBOURG", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67344"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73525df2a57b203b74301a4935ed66a1f4b52118", "fields": {"nom_de_la_commune": "OBERMODERN ZUTZENDORF", "libell_d_acheminement": "OBERMODERN ZUTZENDORF", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67347"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53205160abbae1e56bcb85290d02711e275e9d37", "fields": {"nom_de_la_commune": "CHASSAGNES", "libell_d_acheminement": "CHASSAGNES", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43063"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216da74092af2344b056fd366ca2505e1dc77f37", "fields": {"nom_de_la_commune": "CHAVANIAC LAFAYETTE", "libell_d_acheminement": "CHAVANIAC LAFAYETTE", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43067"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "584c8b523fa30db86cd192e51d3045d8142d8966", "fields": {"nom_de_la_commune": "CHENEREILLES", "libell_d_acheminement": "CHENEREILLES", "code_postal": "43190", "coordonnees_gps": [45.1188374413, 4.29959378038], "code_commune_insee": "43069"}, "geometry": {"type": "Point", "coordinates": [4.29959378038, 45.1188374413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26ae033b64595909e4297f6c7c08f41b8b476852", "fields": {"nom_de_la_commune": "CHOMELIX", "libell_d_acheminement": "CHOMELIX", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43071"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "798480c9c20533962d17dc6d8e16157a2cb1c7fd", "fields": {"nom_de_la_commune": "LA CHOMETTE", "libell_d_acheminement": "LA CHOMETTE", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43072"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48453d9a8d9068e6b00384a8a697b2d5bc1ef3a", "fields": {"nom_de_la_commune": "CRAPONNE SUR ARZON", "libell_d_acheminement": "CRAPONNE SUR ARZON", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43080"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ad1c395316866cac894fb61ea4f93c9db3c716d", "fields": {"nom_de_la_commune": "CRONCE", "libell_d_acheminement": "CRONCE", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43082"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305e4cfca2da44abe6dba75c154ebbac2224293f", "fields": {"nom_de_la_commune": "CUSSAC SUR LOIRE", "libell_d_acheminement": "CUSSAC SUR LOIRE", "code_postal": "43370", "coordonnees_gps": [44.9661456359, 3.83512081172], "code_commune_insee": "43084"}, "geometry": {"type": "Point", "coordinates": [3.83512081172, 44.9661456359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d226930bba8d3f49a2920d81b71644dcab59f3", "fields": {"nom_de_la_commune": "ESPALEM", "libell_d_acheminement": "ESPALEM", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "43088"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983edfa66519f74ea2f4320ea9739de59c004a0a", "fields": {"code_postal": "43580", "code_commune_insee": "43090", "libell_d_acheminement": "ESPLANTAS VAZEILLES", "ligne_5": "VAZEILLES PRES SAUGUES", "nom_de_la_commune": "ESPLANTAS VAZEILLES", "coordonnees_gps": [44.9273994452, 3.63004731198]}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30e700543fc269a485e94ea8e1a4cd0f85809790", "fields": {"nom_de_la_commune": "FREYCENET LA TOUR", "libell_d_acheminement": "FREYCENET LA TOUR", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43098"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67febe5ecd38234920d1a2e816815b559fd0214", "fields": {"nom_de_la_commune": "GREZES", "libell_d_acheminement": "GREZES", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43104"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeade00692286516c3c2673f7191688d61f6a0dc", "fields": {"nom_de_la_commune": "LANGEAC", "libell_d_acheminement": "LANGEAC", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43112"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25e9b097070c879319127f441560e3584d0d67e", "fields": {"nom_de_la_commune": "LEOTOING", "libell_d_acheminement": "LEOTOING", "code_postal": "43410", "coordonnees_gps": [45.3649207273, 3.25237177222], "code_commune_insee": "43121"}, "geometry": {"type": "Point", "coordinates": [3.25237177222, 45.3649207273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "444191c4e6c261fe6f2276ec5216f9a34d410a21", "fields": {"nom_de_la_commune": "LORLANGES", "libell_d_acheminement": "LORLANGES", "code_postal": "43360", "coordonnees_gps": [45.3429722324, 3.30288813488], "code_commune_insee": "43123"}, "geometry": {"type": "Point", "coordinates": [3.30288813488, 45.3429722324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08db8c0d2713af71d501331695633b0c3d829296", "fields": {"nom_de_la_commune": "MAZERAT AUROUZE", "libell_d_acheminement": "MAZERAT AUROUZE", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43131"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5f0a2922426a508d4914511d5e5930b4a5f336", "fields": {"code_postal": "43300", "code_commune_insee": "43132", "libell_d_acheminement": "MAZEYRAT D ALLIER", "ligne_5": "ST EBLE", "nom_de_la_commune": "MAZEYRAT D ALLIER", "coordonnees_gps": [45.0667197349, 3.4902019392]}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df2ed2202e6019e01783d212b9fdfbdb17a0ff4d", "fields": {"nom_de_la_commune": "MONISTROL D ALLIER", "libell_d_acheminement": "MONISTROL D ALLIER", "code_postal": "43580", "coordonnees_gps": [44.9273994452, 3.63004731198], "code_commune_insee": "43136"}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293a8eea6da610a7488070902d2e53c4312aed04", "fields": {"nom_de_la_commune": "LE MONTEIL", "libell_d_acheminement": "LE MONTEIL", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43140"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9822b724cd474084cccae9ff92e835a6d017d20c", "fields": {"nom_de_la_commune": "POLIGNAC", "libell_d_acheminement": "POLIGNAC", "code_postal": "43000", "coordonnees_gps": [45.0562801759, 3.86447846564], "code_commune_insee": "43152"}, "geometry": {"type": "Point", "coordinates": [3.86447846564, 45.0562801759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721c54ceea9e6bd393fe21bfb36d022b7e1dc3d5", "fields": {"nom_de_la_commune": "PONT SALOMON", "libell_d_acheminement": "PONT SALOMON", "code_postal": "43330", "coordonnees_gps": [45.3471380637, 4.25156297945], "code_commune_insee": "43153"}, "geometry": {"type": "Point", "coordinates": [4.25156297945, 45.3471380637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04cbe3498924880df0a1ef5bd0d70c44dd30a1b", "fields": {"nom_de_la_commune": "PRESAILLES", "libell_d_acheminement": "PRESAILLES", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43156"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f163245bc8ff859a72a19c50b953409949f8800a", "fields": {"nom_de_la_commune": "ST CHRISTOPHE SUR DOLAISON", "libell_d_acheminement": "ST CHRISTOPHE SUR DOLAISON", "code_postal": "43370", "coordonnees_gps": [44.9661456359, 3.83512081172], "code_commune_insee": "43174"}, "geometry": {"type": "Point", "coordinates": [3.83512081172, 44.9661456359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d40cf1292e5e9503f49725e0c7bfdfd3ab5323", "fields": {"nom_de_la_commune": "ST CIRGUES", "libell_d_acheminement": "ST CIRGUES", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43175"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53de3c0cde4f382bafe81af4e3c52270429f40a5", "fields": {"nom_de_la_commune": "ST FERREOL D AUROURE", "libell_d_acheminement": "ST FERREOL D AUROURE", "code_postal": "43330", "coordonnees_gps": [45.3471380637, 4.25156297945], "code_commune_insee": "43184"}, "geometry": {"type": "Point", "coordinates": [4.25156297945, 45.3471380637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44e1b46b08a7580f4bc2ed78ced1654e6be28b3e", "fields": {"nom_de_la_commune": "ST GENEYS PRES ST PAULIEN", "libell_d_acheminement": "ST GENEYS PRES ST PAULIEN", "code_postal": "43350", "coordonnees_gps": [45.1597919947, 3.81524516944], "code_commune_insee": "43187"}, "geometry": {"type": "Point", "coordinates": [3.81524516944, 45.1597919947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7667a6e99c22d94a3e59d3f01a964fa3585afdf8", "fields": {"nom_de_la_commune": "ST GEORGES D AURAC", "libell_d_acheminement": "ST GEORGES D AURAC", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43188"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1cdea96ec7ef4644467941665990a28fda0ec94", "fields": {"nom_de_la_commune": "ST GERMAIN LAPRADE", "libell_d_acheminement": "ST GERMAIN LAPRADE", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43190"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c84748ba4bb109f91a458f0fe4e7b7cb6ec812e", "fields": {"nom_de_la_commune": "ST HAON", "libell_d_acheminement": "ST HAON", "code_postal": "43340", "coordonnees_gps": [44.842698307, 3.79076623546], "code_commune_insee": "43192"}, "geometry": {"type": "Point", "coordinates": [3.79076623546, 44.842698307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4215a63aa05e734e886ff579c8c15914cc33fcdf", "fields": {"nom_de_la_commune": "ST JULIEN CHAPTEUIL", "libell_d_acheminement": "ST JULIEN CHAPTEUIL", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43200"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "425a393be448c56656c7f5f9cb12463fd569e1f0", "fields": {"nom_de_la_commune": "ST MAURICE DE LIGNON", "libell_d_acheminement": "ST MAURICE DE LIGNON", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43211"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31ad2a25ab605e75040b0b67e88bedbfc14127a2", "fields": {"nom_de_la_commune": "ST PAULIEN", "libell_d_acheminement": "ST PAULIEN", "code_postal": "43350", "coordonnees_gps": [45.1597919947, 3.81524516944], "code_commune_insee": "43216"}, "geometry": {"type": "Point", "coordinates": [3.81524516944, 45.1597919947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb7814dfcbbd8e04b4db815aee0c84cbe0b0166f", "fields": {"nom_de_la_commune": "ST PIERRE EYNAC", "libell_d_acheminement": "ST PIERRE EYNAC", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43218"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8200902eaa8edb848505492d9c90b4fde11c337f", "fields": {"nom_de_la_commune": "ST PRIVAT D ALLIER", "libell_d_acheminement": "ST PRIVAT D ALLIER", "code_postal": "43580", "coordonnees_gps": [44.9273994452, 3.63004731198], "code_commune_insee": "43221"}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f91f5ce88ebf8070e2ab60683cfea0eae5d5c55", "fields": {"nom_de_la_commune": "ST PRIVAT DU DRAGON", "libell_d_acheminement": "ST PRIVAT DU DRAGON", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43222"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5cb74e63729f00f7319fe0e8444c705306375e8", "fields": {"nom_de_la_commune": "STE SIGOLENE", "libell_d_acheminement": "STE SIGOLENE", "code_postal": "43600", "coordonnees_gps": [45.2449490447, 4.21509490997], "code_commune_insee": "43224"}, "geometry": {"type": "Point", "coordinates": [4.21509490997, 45.2449490447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f972a48eff2ce31d00438d8e908b74edb876308b", "fields": {"nom_de_la_commune": "ST VENERAND", "libell_d_acheminement": "ST VENERAND", "code_postal": "43580", "coordonnees_gps": [44.9273994452, 3.63004731198], "code_commune_insee": "43225"}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc585113a53e84bb054f2d9e5e78707c92c82584", "fields": {"nom_de_la_commune": "ST VERT", "libell_d_acheminement": "ST VERT", "code_postal": "43440", "coordonnees_gps": [45.3510344646, 3.5299252821], "code_commune_insee": "43226"}, "geometry": {"type": "Point", "coordinates": [3.5299252821, 45.3510344646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baa38729e712f7d0505c18d69837fabe044ef038", "fields": {"nom_de_la_commune": "ST VICTOR MALESCOURS", "libell_d_acheminement": "ST VICTOR MALESCOURS", "code_postal": "43140", "coordonnees_gps": [45.3026508928, 4.29061531047], "code_commune_insee": "43227"}, "geometry": {"type": "Point", "coordinates": [4.29061531047, 45.3026508928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e8f2d9b1171f4cd4d460eeb6d8cfc31d057c048", "fields": {"nom_de_la_commune": "SALETTES", "libell_d_acheminement": "SALETTES", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43231"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "884b8f4346e813e088e28894dd1022e5becaf7b4", "fields": {"nom_de_la_commune": "SALZUIT", "libell_d_acheminement": "SALZUIT", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43232"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ad4819351978c4f8714719a923bb5049886b5b", "fields": {"nom_de_la_commune": "SAUGUES", "libell_d_acheminement": "SAUGUES", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43234"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5b650d392341272e0e0898c9f94892f761b2e4", "fields": {"nom_de_la_commune": "SOLIGNAC SUR LOIRE", "libell_d_acheminement": "SOLIGNAC SUR LOIRE", "code_postal": "43370", "coordonnees_gps": [44.9661456359, 3.83512081172], "code_commune_insee": "43241"}, "geometry": {"type": "Point", "coordinates": [3.83512081172, 44.9661456359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3256e30d1f5af8c642284746efc20b39d8c6cd9d", "fields": {"nom_de_la_commune": "TENCE", "libell_d_acheminement": "TENCE", "code_postal": "43190", "coordonnees_gps": [45.1188374413, 4.29959378038], "code_commune_insee": "43244"}, "geometry": {"type": "Point", "coordinates": [4.29959378038, 45.1188374413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0852c82b0113d6265a2e67ef304f6f08f0562dd", "fields": {"nom_de_la_commune": "VALS LE CHASTEL", "libell_d_acheminement": "VALS LE CHASTEL", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43250"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75cfac81c56310ed5c7cea8c6bfe35f39cb9aa3", "fields": {"nom_de_la_commune": "LES VILLETTES", "libell_d_acheminement": "LES VILLETTES", "code_postal": "43600", "coordonnees_gps": [45.2449490447, 4.21509490997], "code_commune_insee": "43265"}, "geometry": {"type": "Point", "coordinates": [4.21509490997, 45.2449490447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2125330976b0220c94f32b12a98e68b7b10d5d77", "fields": {"code_postal": "44320", "code_commune_insee": "44005", "libell_d_acheminement": "CHAUMES EN RETZ", "ligne_5": "ARTHON EN RETZ", "nom_de_la_commune": "CHAUMES EN RETZ", "coordonnees_gps": [47.2108954989, -1.99426015028]}, "geometry": {"type": "Point", "coordinates": [-1.99426015028, 47.2108954989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63bb39d44e7058938077123ee34b70d8074f60f", "fields": {"code_postal": "44680", "code_commune_insee": "44005", "libell_d_acheminement": "CHAUMES EN RETZ", "ligne_5": "CHEMERE", "nom_de_la_commune": "CHAUMES EN RETZ", "coordonnees_gps": [47.1058819776, -1.85298461474]}, "geometry": {"type": "Point", "coordinates": [-1.85298461474, 47.1058819776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62a55beccbb485088e6bae768f993e2f2da244fd", "fields": {"nom_de_la_commune": "AVESSAC", "libell_d_acheminement": "AVESSAC", "code_postal": "44460", "coordonnees_gps": [47.6181534488, -2.00119847224], "code_commune_insee": "44007"}, "geometry": {"type": "Point", "coordinates": [-2.00119847224, 47.6181534488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfcd69639f92d97b0b2ddd6af6fcc49c8b390e1a", "fields": {"code_postal": "44130", "code_commune_insee": "44015", "libell_d_acheminement": "BLAIN", "ligne_5": "ST EMILIEN DE BLAIN", "nom_de_la_commune": "BLAIN", "coordonnees_gps": [47.4415843575, -1.78877692421]}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63b644fbcab989dd84ebc0af6f9637ee17b91da6", "fields": {"code_postal": "44130", "code_commune_insee": "44015", "libell_d_acheminement": "BLAIN", "ligne_5": "ST OMER DE BLAIN", "nom_de_la_commune": "BLAIN", "coordonnees_gps": [47.4415843575, -1.78877692421]}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd51871df0557107e2f6443d96cd17fd80c8aa6b", "fields": {"nom_de_la_commune": "BOUEE", "libell_d_acheminement": "BOUEE", "code_postal": "44260", "coordonnees_gps": [47.3429940898, -1.93537477196], "code_commune_insee": "44019"}, "geometry": {"type": "Point", "coordinates": [-1.93537477196, 47.3429940898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "709374222d90c0e6e4f7bf059e82622568ea7e45", "fields": {"nom_de_la_commune": "BRAINS", "libell_d_acheminement": "BRAINS", "code_postal": "44830", "coordonnees_gps": [47.1596986296, -1.70104385056], "code_commune_insee": "44024"}, "geometry": {"type": "Point", "coordinates": [-1.70104385056, 47.1596986296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08663a97841973ca0807de1f3e11dfdaf9452dfe", "fields": {"nom_de_la_commune": "LE CELLIER", "libell_d_acheminement": "LE CELLIER", "code_postal": "44850", "coordonnees_gps": [47.3786651344, -1.3830703271], "code_commune_insee": "44028"}, "geometry": {"type": "Point", "coordinates": [-1.3830703271, 47.3786651344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede3fa9618b97b42c43025d936a33a31a0ec9cdd", "fields": {"nom_de_la_commune": "CHATEAUBRIANT", "libell_d_acheminement": "CHATEAUBRIANT", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44036"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4777f22f0b75ea5deada6c8825aedd2d0189f03", "fields": {"code_postal": "44220", "code_commune_insee": "44047", "libell_d_acheminement": "COUERON", "ligne_5": "LA CHABOSSIERE", "nom_de_la_commune": "COUERON", "coordonnees_gps": [47.230492836, -1.73028941593]}, "geometry": {"type": "Point", "coordinates": [-1.73028941593, 47.230492836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9929ba015e326336336427d8cc0eeb40fdece7e4", "fields": {"nom_de_la_commune": "DREFFEAC", "libell_d_acheminement": "DREFFEAC", "code_postal": "44530", "coordonnees_gps": [47.5092008769, -2.00892310392], "code_commune_insee": "44053"}, "geometry": {"type": "Point", "coordinates": [-2.00892310392, 47.5092008769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea61a89412ca67413c1b53d4ae94b60c3d93d7bb", "fields": {"nom_de_la_commune": "GUERANDE", "libell_d_acheminement": "GUERANDE", "code_postal": "44350", "coordonnees_gps": [47.3439577414, -2.41627951573], "code_commune_insee": "44069"}, "geometry": {"type": "Point", "coordinates": [-2.41627951573, 47.3439577414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a06746cdd672673988e356fd7ef5f1d9e2b6909", "fields": {"code_postal": "44350", "code_commune_insee": "44069", "libell_d_acheminement": "GUERANDE", "ligne_5": "LA MADELEINE", "nom_de_la_commune": "GUERANDE", "coordonnees_gps": [47.3439577414, -2.41627951573]}, "geometry": {"type": "Point", "coordinates": [-2.41627951573, 47.3439577414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bc627045fe3bd023793273c427fa94460206d8b", "fields": {"nom_de_la_commune": "LA HAIE FOUASSIERE", "libell_d_acheminement": "LA HAIE FOUASSIERE", "code_postal": "44690", "coordonnees_gps": [47.1278112688, -1.40123093208], "code_commune_insee": "44070"}, "geometry": {"type": "Point", "coordinates": [-1.40123093208, 47.1278112688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af59a30dde3b7d842eb58b82f60aab04011dc85a", "fields": {"nom_de_la_commune": "HERBIGNAC", "libell_d_acheminement": "HERBIGNAC", "code_postal": "44410", "coordonnees_gps": [47.4324776311, -2.33169406972], "code_commune_insee": "44072"}, "geometry": {"type": "Point", "coordinates": [-2.33169406972, 47.4324776311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534663f6b4a80b8d5e180e06ad0dde1a4f2823ca", "fields": {"code_postal": "44410", "code_commune_insee": "44072", "libell_d_acheminement": "HERBIGNAC", "ligne_5": "POMPAS", "nom_de_la_commune": "HERBIGNAC", "coordonnees_gps": [47.4324776311, -2.33169406972]}, "geometry": {"type": "Point", "coordinates": [-2.33169406972, 47.4324776311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87fba454b9a2cf627b40f1073b72cdfb7f16358f", "fields": {"code_postal": "44610", "code_commune_insee": "44074", "libell_d_acheminement": "INDRE", "ligne_5": "BASSE INDRE", "nom_de_la_commune": "INDRE", "coordonnees_gps": [47.1984071351, -1.67155607359]}, "geometry": {"type": "Point", "coordinates": [-1.67155607359, 47.1984071351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f30f310a7a034b690b249a8e6468f245c712594f", "fields": {"nom_de_la_commune": "JUIGNE DES MOUTIERS", "libell_d_acheminement": "JUIGNE DES MOUTIERS", "code_postal": "44670", "coordonnees_gps": [47.6418522644, -1.22470955782], "code_commune_insee": "44078"}, "geometry": {"type": "Point", "coordinates": [-1.22470955782, 47.6418522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ee14f80fdbfe82f3da650d67147e031faea46ff", "fields": {"nom_de_la_commune": "MAUMUSSON", "libell_d_acheminement": "MAUMUSSON", "code_postal": "44540", "coordonnees_gps": [47.5525167785, -1.15686679562], "code_commune_insee": "44093"}, "geometry": {"type": "Point", "coordinates": [-1.15686679562, 47.5525167785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce1d283298308c1441666f00176e7258d81b01e", "fields": {"nom_de_la_commune": "MAUVES SUR LOIRE", "libell_d_acheminement": "MAUVES SUR LOIRE", "code_postal": "44470", "coordonnees_gps": [47.3000422915, -1.4503189654], "code_commune_insee": "44094"}, "geometry": {"type": "Point", "coordinates": [-1.4503189654, 47.3000422915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec882558d3f57234fc16a2e22e5d5049066a71c", "fields": {"nom_de_la_commune": "LA MEILLERAYE DE BRETAGNE", "libell_d_acheminement": "LA MEILLERAYE DE BRETAGNE", "code_postal": "44520", "coordonnees_gps": [47.5995335706, -1.38415930312], "code_commune_insee": "44095"}, "geometry": {"type": "Point", "coordinates": [-1.38415930312, 47.5995335706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cdabbaf395fbffc4d46ee123745238d5fbc1b8a", "fields": {"nom_de_la_commune": "NANTES", "libell_d_acheminement": "NANTES", "code_postal": "44000", "coordonnees_gps": [47.2321830557, -1.54780684906], "code_commune_insee": "44109"}, "geometry": {"type": "Point", "coordinates": [-1.54780684906, 47.2321830557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c8c6a67df9402833243b0a5e0ec135edce6aa0", "fields": {"nom_de_la_commune": "NOYAL SUR BRUTZ", "libell_d_acheminement": "NOYAL SUR BRUTZ", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44112"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ff04a72c14b33e0a927e4ccfdd1fe94ef2e1ae", "fields": {"nom_de_la_commune": "ORVAULT", "libell_d_acheminement": "ORVAULT", "code_postal": "44700", "coordonnees_gps": [47.2742584851, -1.62327402303], "code_commune_insee": "44114"}, "geometry": {"type": "Point", "coordinates": [-1.62327402303, 47.2742584851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "021cd51487efea914c445320b15471e0a1e1df4c", "fields": {"nom_de_la_commune": "PANNECE", "libell_d_acheminement": "PANNECE", "code_postal": "44440", "coordonnees_gps": [47.4983275474, -1.33409165092], "code_commune_insee": "44118"}, "geometry": {"type": "Point", "coordinates": [-1.33409165092, 47.4983275474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c0797efbb9a706d669d6a49864a9a99120ee29b", "fields": {"nom_de_la_commune": "PAULX", "libell_d_acheminement": "PAULX", "code_postal": "44270", "coordonnees_gps": [46.9745110591, -1.78089818288], "code_commune_insee": "44119"}, "geometry": {"type": "Point", "coordinates": [-1.78089818288, 46.9745110591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4694a11b825999d04b38f59d3b05fe86309c5a67", "fields": {"nom_de_la_commune": "PETIT MARS", "libell_d_acheminement": "PETIT MARS", "code_postal": "44390", "coordonnees_gps": [47.4571485959, -1.52512056844], "code_commune_insee": "44122"}, "geometry": {"type": "Point", "coordinates": [-1.52512056844, 47.4571485959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09bc86b7dd6bbe5633f6b43557dee7b11b4bf1bb", "fields": {"nom_de_la_commune": "PIRIAC SUR MER", "libell_d_acheminement": "PIRIAC SUR MER", "code_postal": "44420", "coordonnees_gps": [47.373686193, -2.48987078247], "code_commune_insee": "44125"}, "geometry": {"type": "Point", "coordinates": [-2.48987078247, 47.373686193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "471418d615363d8962761cb6053220249d3a6e4a", "fields": {"code_postal": "44630", "code_commune_insee": "44128", "libell_d_acheminement": "PLESSE", "ligne_5": "LE COUDRAY", "nom_de_la_commune": "PLESSE", "coordonnees_gps": [47.5557950636, -1.89023163627]}, "geometry": {"type": "Point", "coordinates": [-1.89023163627, 47.5557950636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3925d429a32915d2d69013a9bd2810d55aeb140c", "fields": {"nom_de_la_commune": "PONTCHATEAU", "libell_d_acheminement": "PONTCHATEAU", "code_postal": "44160", "coordonnees_gps": [47.4265793893, -2.10093858399], "code_commune_insee": "44129"}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6180ee939763dcc180502ad9894931cca9469428", "fields": {"code_postal": "44210", "code_commune_insee": "44131", "libell_d_acheminement": "PORNIC", "ligne_5": "LE CLION SUR MER", "nom_de_la_commune": "PORNIC", "coordonnees_gps": [47.122206427, -2.05186337229]}, "geometry": {"type": "Point", "coordinates": [-2.05186337229, 47.122206427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44ce2f8f0efa83102a9533e10b43a0d57fccd8af", "fields": {"nom_de_la_commune": "PUCEUL", "libell_d_acheminement": "PUCEUL", "code_postal": "44390", "coordonnees_gps": [47.4571485959, -1.52512056844], "code_commune_insee": "44138"}, "geometry": {"type": "Point", "coordinates": [-1.52512056844, 47.4571485959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f106b3124f4f38deaad40261636ec5c1f6150da", "fields": {"nom_de_la_commune": "QUILLY", "libell_d_acheminement": "QUILLY", "code_postal": "44750", "coordonnees_gps": [47.4278237849, -1.96018609185], "code_commune_insee": "44139"}, "geometry": {"type": "Point", "coordinates": [-1.96018609185, 47.4278237849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c2f843466eb2d0433bd6df938e107897c5ec244", "fields": {"nom_de_la_commune": "RIAILLE", "libell_d_acheminement": "RIAILLE", "code_postal": "44440", "coordonnees_gps": [47.4983275474, -1.33409165092], "code_commune_insee": "44144"}, "geometry": {"type": "Point", "coordinates": [-1.33409165092, 47.4983275474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d525bebdf8765e40113801dbf77edb19ace08c4", "fields": {"nom_de_la_commune": "RUFFIGNE", "libell_d_acheminement": "RUFFIGNE", "code_postal": "44660", "coordonnees_gps": [47.7784822888, -1.45044243144], "code_commune_insee": "44148"}, "geometry": {"type": "Point", "coordinates": [-1.45044243144, 47.7784822888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817c861dee35bd3e2f95a3db31407ad78fd084f8", "fields": {"nom_de_la_commune": "ST AIGNAN GRANDLIEU", "libell_d_acheminement": "ST AIGNAN GRANDLIEU", "code_postal": "44860", "coordonnees_gps": [47.1293725692, -1.59139240082], "code_commune_insee": "44150"}, "geometry": {"type": "Point", "coordinates": [-1.59139240082, 47.1293725692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fdfcef278c02ca067c4cd446d840170b063b2e", "fields": {"nom_de_la_commune": "STE ANNE SUR BRIVET", "libell_d_acheminement": "STE ANNE SUR BRIVET", "code_postal": "44160", "coordonnees_gps": [47.4265793893, -2.10093858399], "code_commune_insee": "44152"}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ddb66f7a69b911a0a8a893fe36ac5415d935c01", "fields": {"nom_de_la_commune": "ST AUBIN DES CHATEAUX", "libell_d_acheminement": "ST AUBIN DES CHATEAUX", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44153"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236e5ba2a721ea20d715b247b7b95baecc7cd362", "fields": {"code_postal": "44650", "code_commune_insee": "44156", "libell_d_acheminement": "CORCOUE SUR LOGNE", "ligne_5": "ST JEAN DE CORCOUE", "nom_de_la_commune": "CORCOUE SUR LOGNE", "coordonnees_gps": [46.9200173219, -1.61088022271]}, "geometry": {"type": "Point", "coordinates": [-1.61088022271, 46.9200173219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f10989a01d130bc44eee88b8cbd56e765f97c13", "fields": {"nom_de_la_commune": "ST HILAIRE DE CLISSON", "libell_d_acheminement": "ST HILAIRE DE CLISSON", "code_postal": "44190", "coordonnees_gps": [47.0757597302, -1.26309617738], "code_commune_insee": "44165"}, "geometry": {"type": "Point", "coordinates": [-1.26309617738, 47.0757597302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e77dd45b78eba9c80e6abce12a8cc3041296ab31", "fields": {"nom_de_la_commune": "ST JULIEN DE CONCELLES", "libell_d_acheminement": "ST JULIEN DE CONCELLES", "code_postal": "44450", "coordonnees_gps": [47.2609944569, -1.38232107674], "code_commune_insee": "44169"}, "geometry": {"type": "Point", "coordinates": [-1.38232107674, 47.2609944569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0abb46930d9e19efc788f4a595e90b7a0bcc0c", "fields": {"nom_de_la_commune": "ST LEGER LES VIGNES", "libell_d_acheminement": "ST LEGER LES VIGNES", "code_postal": "44710", "coordonnees_gps": [47.1414628863, -1.75847032416], "code_commune_insee": "44171"}, "geometry": {"type": "Point", "coordinates": [-1.75847032416, 47.1414628863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "045bcc9787a1e7c379168bfba6b94c609041f977", "fields": {"nom_de_la_commune": "ST MALO DE GUERSAC", "libell_d_acheminement": "ST MALO DE GUERSAC", "code_postal": "44550", "coordonnees_gps": [47.3304711447, -2.15365906277], "code_commune_insee": "44176"}, "geometry": {"type": "Point", "coordinates": [-2.15365906277, 47.3304711447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "256884cbe4b411cb29e57573c14962316c05684f", "fields": {"nom_de_la_commune": "STE PAZANNE", "libell_d_acheminement": "STE PAZANNE", "code_postal": "44680", "coordonnees_gps": [47.1058819776, -1.85298461474], "code_commune_insee": "44186"}, "geometry": {"type": "Point", "coordinates": [-1.85298461474, 47.1058819776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ca9d314353ba273a0308fec9757402d4173095", "fields": {"nom_de_la_commune": "SION LES MINES", "libell_d_acheminement": "SION LES MINES", "code_postal": "44590", "coordonnees_gps": [47.6829911414, -1.60317365389], "code_commune_insee": "44197"}, "geometry": {"type": "Point", "coordinates": [-1.60317365389, 47.6829911414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a680adf5e44b44006aeb6526da74b34e06e58273", "fields": {"nom_de_la_commune": "TOUVOIS", "libell_d_acheminement": "TOUVOIS", "code_postal": "44650", "coordonnees_gps": [46.9200173219, -1.61088022271], "code_commune_insee": "44206"}, "geometry": {"type": "Point", "coordinates": [-1.61088022271, 46.9200173219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15a13645818b933862ae051e02ada02bf49b519b", "fields": {"nom_de_la_commune": "VIGNEUX DE BRETAGNE", "libell_d_acheminement": "VIGNEUX DE BRETAGNE", "code_postal": "44360", "coordonnees_gps": [47.2931220587, -1.77460002675], "code_commune_insee": "44217"}, "geometry": {"type": "Point", "coordinates": [-1.77460002675, 47.2931220587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe73527f58ef8e55d96b6221738ebdd3b5e0c31", "fields": {"nom_de_la_commune": "LA CHEVALLERAIS", "libell_d_acheminement": "LA CHEVALLERAIS", "code_postal": "44810", "coordonnees_gps": [47.42821115, -1.64065236011], "code_commune_insee": "44221"}, "geometry": {"type": "Point", "coordinates": [-1.64065236011, 47.42821115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14dfa78e34d36fa5041af0487bda7c0b566c4e3b", "fields": {"nom_de_la_commune": "ADON", "libell_d_acheminement": "ADON", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45001"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e728d68399efcee8c8e2acd4bcdfd85492f30f7", "fields": {"nom_de_la_commune": "AUGERVILLE LA RIVIERE", "libell_d_acheminement": "AUGERVILLE LA RIVIERE", "code_postal": "45330", "coordonnees_gps": [48.2827964198, 2.40158740828], "code_commune_insee": "45013"}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b37e51b86a54ecf9f23f2f729157a3c26db2e42", "fields": {"nom_de_la_commune": "BAZOCHES LES GALLERANDES", "libell_d_acheminement": "BAZOCHES LES GALLERANDES", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45025"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e25954adaeb72dde9267603abe33b1b8fe4a2fd7", "fields": {"nom_de_la_commune": "BAZOCHES SUR LE BETZ", "libell_d_acheminement": "BAZOCHES SUR LE BETZ", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45026"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eecff5be2d1284ad641d5a6661261176a0ebbee", "fields": {"nom_de_la_commune": "BEAULIEU SUR LOIRE", "libell_d_acheminement": "BEAULIEU SUR LOIRE", "code_postal": "45630", "coordonnees_gps": [47.5356351776, 2.80251320136], "code_commune_insee": "45029"}, "geometry": {"type": "Point", "coordinates": [2.80251320136, 47.5356351776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6eedf4ee1a5b1d50a0ac663b56d51e82dca1da5", "fields": {"nom_de_la_commune": "BOISMORAND", "libell_d_acheminement": "BOISMORAND", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45036"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "211025a59cf7258605bb846ef528c6fc098798f2", "fields": {"nom_de_la_commune": "VOREPPE", "libell_d_acheminement": "VOREPPE", "code_postal": "38340", "coordonnees_gps": [45.3011036045, 5.65576728481], "code_commune_insee": "38565"}, "geometry": {"type": "Point", "coordinates": [5.65576728481, 45.3011036045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcdc32b71a105c18e62913dfecc547fe62e69a6a", "fields": {"nom_de_la_commune": "ALIEZE", "libell_d_acheminement": "ALIEZE", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39007"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1178f740e2deab04797457f938f8f5c24a11dca4", "fields": {"nom_de_la_commune": "ANDELOT MORVAL", "libell_d_acheminement": "ANDELOT MORVAL", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39010"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb349660bbacc93c3322548bea9e68cd3a9e6f43", "fields": {"code_postal": "39270", "code_commune_insee": "39021", "libell_d_acheminement": "LA CHAILLEUSE", "ligne_5": "VARESSIA", "nom_de_la_commune": "LA CHAILLEUSE", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8454bf64abb0f5f0381b3bb231eaa1a0fe7ea92f", "fields": {"nom_de_la_commune": "AUGERANS", "libell_d_acheminement": "AUGERANS", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39026"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "144a061d2052c5cd3ca8fe54e6d08ff921ae45c4", "fields": {"nom_de_la_commune": "AUMONT", "libell_d_acheminement": "AUMONT", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39028"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff9f1918d0b4b06b48e54188bc606c03950a00e8", "fields": {"nom_de_la_commune": "AUMUR", "libell_d_acheminement": "AUMUR", "code_postal": "39410", "coordonnees_gps": [47.0386263121, 5.33402730171], "code_commune_insee": "39029"}, "geometry": {"type": "Point", "coordinates": [5.33402730171, 47.0386263121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a90e8cecc250d5e41494f041ac18437f9fe8ed", "fields": {"nom_de_la_commune": "BALANOD", "libell_d_acheminement": "BALANOD", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39035"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5be6f38182ef0d5f1f4a16eb7c796d3cfb6115f", "fields": {"nom_de_la_commune": "LA BALME D EPY", "libell_d_acheminement": "LA BALME D EPY", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39036"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6df07f6adbbdea35f640e8bec92ee97ce386b7", "fields": {"nom_de_la_commune": "BAUME LES MESSIEURS", "libell_d_acheminement": "BAUME LES MESSIEURS", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39041"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f41cd4f1d3b71dcb5ac0c3dc2742284a90f342", "fields": {"nom_de_la_commune": "BAUME LES MESSIEURS", "libell_d_acheminement": "BAUME LES MESSIEURS", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39041"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd624ea71c2d40cd1f00183b161e92149c53c812", "fields": {"nom_de_la_commune": "BEAUFORT", "libell_d_acheminement": "BEAUFORT", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39043"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1edfab3e14d931491b8fa4230fca03d5cf2f951", "fields": {"nom_de_la_commune": "BERSAILLIN", "libell_d_acheminement": "BERSAILLIN", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39049"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2800febfe21367eedf8810859d73854651165d5", "fields": {"nom_de_la_commune": "BIEF DES MAISONS", "libell_d_acheminement": "BIEF DES MAISONS", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39052"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "549c5dc03f565f5b72e9d5ea33ede77904ef6b2d", "fields": {"nom_de_la_commune": "BILLECUL", "libell_d_acheminement": "BILLECUL", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39055"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b67bd5500f3032051a58891a441c655eb096001", "fields": {"nom_de_la_commune": "BLETTERANS", "libell_d_acheminement": "BLETTERANS", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39056"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "594a94b65fefd1bb16f6c4c1eec82f90ce6a6c7e", "fields": {"nom_de_la_commune": "BLYE", "libell_d_acheminement": "BLYE", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39058"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d2bcc1aebc010dd9d7afe80dbb1a2e2af441bce", "fields": {"nom_de_la_commune": "BOIS DE GAND", "libell_d_acheminement": "BOIS DE GAND", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39060"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796db0fbbb526ee7a1f082dc72dd9b4da4929a10", "fields": {"nom_de_la_commune": "BONNAUD", "libell_d_acheminement": "BONNAUD", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39064"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "071677e19061c4e0602cd866d72e4a0b95fae9c8", "fields": {"nom_de_la_commune": "CERNANS", "libell_d_acheminement": "CERNANS", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39084"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf497da9625776ab33a4d53dfc5d5f926c15d462", "fields": {"nom_de_la_commune": "CEZIA", "libell_d_acheminement": "CEZIA", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39089"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b009c2e7321745ac46eefc05c602b7c6f9cb00cd", "fields": {"nom_de_la_commune": "CHAMBLAY", "libell_d_acheminement": "CHAMBLAY", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39093"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8833528eed0bfc99079b6f5e4b21d2007753a186", "fields": {"nom_de_la_commune": "CHAMPAGNE SUR LOUE", "libell_d_acheminement": "CHAMPAGNE SUR LOUE", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39095"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b71512495c1faf5af39c3addd8628b896cc592", "fields": {"nom_de_la_commune": "CHAMPROUGIER", "libell_d_acheminement": "CHAMPROUGIER", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39100"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa14c1cadb253a0a43de94c515d0a9dd5453ec13", "fields": {"nom_de_la_commune": "CHANCIA", "libell_d_acheminement": "CHANCIA", "code_postal": "01590", "coordonnees_gps": [46.3238684456, 5.65548376535], "code_commune_insee": "39102"}, "geometry": {"type": "Point", "coordinates": [5.65548376535, 46.3238684456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "461187288f287f7109ce8d1b451d2eb9d20041c3", "fields": {"nom_de_la_commune": "LA CHARME", "libell_d_acheminement": "LA CHARME", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39110"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a760bb6d415a559549375799dd3abecbf467cdb", "fields": {"nom_de_la_commune": "CHASSAL", "libell_d_acheminement": "CHASSAL", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39113"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e687282710eda36333eb245f928d9512c5c3a799", "fields": {"nom_de_la_commune": "CHATENOIS", "libell_d_acheminement": "CHATENOIS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39121"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c077164e09e05db42a14370301a6be47dcef3b", "fields": {"nom_de_la_commune": "CHATONNAY", "libell_d_acheminement": "CHATONNAY", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39123"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e8031b28102eb1c0fda4b2b0249b669cc0eee2", "fields": {"code_postal": "39150", "code_commune_insee": "39130", "libell_d_acheminement": "NANCHEZ", "ligne_5": "PRENOVEL", "nom_de_la_commune": "NANCHEZ", "coordonnees_gps": [46.5872536631, 5.94328461493]}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45209ef5f91ec7391b78d3e8bf0d279cfc6574b0", "fields": {"code_postal": "39110", "code_commune_insee": "39133", "libell_d_acheminement": "CHAUX CHAMPAGNY", "ligne_5": "CHAMPAGNY", "nom_de_la_commune": "CHAUX CHAMPAGNY", "coordonnees_gps": [46.9201409369, 5.90413463996]}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "788b6d4e7b264d7d308f94ace578169bc6f0a7da", "fields": {"nom_de_la_commune": "CHENE BERNARD", "libell_d_acheminement": "CHENE BERNARD", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39139"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91ea1520fa455e2b7a2ca641fc0f56c6508b318a", "fields": {"nom_de_la_commune": "CHEVIGNY", "libell_d_acheminement": "CHEVIGNY", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39141"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfec720d0d1773c9f36730c476f7150cbc6186d0", "fields": {"nom_de_la_commune": "CLUCY", "libell_d_acheminement": "CLUCY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39155"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76891e9b45468d83af42eb93c61c54635246f81", "fields": {"nom_de_la_commune": "COISERETTE", "libell_d_acheminement": "COISERETTE", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39157"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bbd09fb633a7ae02661cb4772efef7e323c1f6a", "fields": {"nom_de_la_commune": "COISIA", "libell_d_acheminement": "COISIA", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39158"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe60421bd824ba4eaf1a44697fb7b24174d66ba9", "fields": {"nom_de_la_commune": "COURLANS", "libell_d_acheminement": "COURLANS", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39170"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad076aacb8a704aa1707c100c85ceda351e4042", "fields": {"code_postal": "39570", "code_commune_insee": "39170", "libell_d_acheminement": "COURLANS", "ligne_5": "CHAVANNE", "nom_de_la_commune": "COURLANS", "coordonnees_gps": [46.65517776, 5.57390144978]}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5732ead49e50feb7a8f83a5e551528cf9c4c6693", "fields": {"nom_de_la_commune": "COURTEFONTAINE", "libell_d_acheminement": "COURTEFONTAINE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39172"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1cdac3c54704726078f72108e750a34313688d", "fields": {"code_postal": "39570", "code_commune_insee": "39177", "libell_d_acheminement": "HAUTEROCHE", "ligne_5": "CRANCOT", "nom_de_la_commune": "HAUTEROCHE", "coordonnees_gps": [46.65517776, 5.57390144978]}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8891bb323bd73e0239c9e3d5df9311da53bae4a5", "fields": {"nom_de_la_commune": "DAMMARTIN MARPAIN", "libell_d_acheminement": "DAMMARTIN MARPAIN", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39188"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5629dbdb154c25c92b4985dcae47dda20eb0588b", "fields": {"nom_de_la_commune": "DAMPIERRE", "libell_d_acheminement": "DAMPIERRE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39190"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c9859f14234842a1ffcc0b8932ecc61b5b8ae15", "fields": {"nom_de_la_commune": "LE DESCHAUX", "libell_d_acheminement": "LE DESCHAUX", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39193"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c14695c9d44f79ae702fd7dac072e219fdd378cd", "fields": {"code_postal": "39100", "code_commune_insee": "39198", "libell_d_acheminement": "DOLE", "ligne_5": "GOUX", "nom_de_la_commune": "DOLE", "coordonnees_gps": [47.081657682, 5.47646341998]}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ab19227d59d7967e259b859fc30ffd6e30f0048", "fields": {"nom_de_la_commune": "ENTRE DEUX MONTS", "libell_d_acheminement": "ENTRE DEUX MONTS", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39208"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ee91b00883157100d77c66448d98ef5ac747db2", "fields": {"nom_de_la_commune": "EQUEVILLON", "libell_d_acheminement": "EQUEVILLON", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39210"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867d3a10b54ee780a449dc734f0d3fd532eece76", "fields": {"nom_de_la_commune": "ETIVAL", "libell_d_acheminement": "ETIVAL", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39216"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "847c7ac42a08ae71ed203f9ac1220fb8bf324d3d", "fields": {"nom_de_la_commune": "FAY EN MONTAGNE", "libell_d_acheminement": "FAY EN MONTAGNE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39222"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db67cc6b0fb388904321b0749e2b5965edecd6a0", "fields": {"nom_de_la_commune": "FOULENAY", "libell_d_acheminement": "FOULENAY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39234"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95c213aedf17280450959acc3aaf96f4d61ae4e5", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39236"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d37752ba63392313a54ffd3f410b029bf6da516c", "fields": {"nom_de_la_commune": "FRONTENAY", "libell_d_acheminement": "FRONTENAY", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39244"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97e932779c1da316f6ad4aeb977a40a9b190135f", "fields": {"nom_de_la_commune": "GATEY", "libell_d_acheminement": "GATEY", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39245"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "046e99529af498a3967d470e0bdfab5701daf880", "fields": {"nom_de_la_commune": "GEVINGEY", "libell_d_acheminement": "GEVINGEY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39251"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7163b53ba041ca571e4bc5f9a3a440d7327390cb", "fields": {"nom_de_la_commune": "GILLOIS", "libell_d_acheminement": "GILLOIS", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39254"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6587c8a67e86cd8b99ca96a47fd6efdc3433dc0", "fields": {"nom_de_la_commune": "GIZIA", "libell_d_acheminement": "GIZIA", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39255"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ccddccb57b9007748a4fb51246811dd4b365263", "fields": {"code_postal": "39150", "code_commune_insee": "39258", "libell_d_acheminement": "GRANDE RIVIERE", "ligne_5": "RIVIERE DEVANT", "nom_de_la_commune": "GRANDE RIVIERE", "coordonnees_gps": [46.5872536631, 5.94328461493]}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0092b4335391a4268f1c274671467c4eb26ed574", "fields": {"nom_de_la_commune": "GROZON", "libell_d_acheminement": "GROZON", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39263"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69d38c203d9f99466df421ece15a563213ce2b07", "fields": {"nom_de_la_commune": "HAUTECOUR", "libell_d_acheminement": "HAUTECOUR", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39265"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe1755efa2e903b73c873fff6adc40aa9a41fce", "fields": {"nom_de_la_commune": "JOUHE", "libell_d_acheminement": "JOUHE", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39270"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c4eaf53baa0ab7aecbc6bda1abb500095517790", "fields": {"nom_de_la_commune": "LADOYE SUR SEILLE", "libell_d_acheminement": "LADOYE SUR SEILLE", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39272"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "958129486601b819e826c44c2034336e75fc68db", "fields": {"nom_de_la_commune": "LAMOURA", "libell_d_acheminement": "LAMOURA", "code_postal": "39310", "coordonnees_gps": [46.3646047349, 5.94493572712], "code_commune_insee": "39275"}, "geometry": {"type": "Point", "coordinates": [5.94493572712, 46.3646047349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142c8d2924d832b5b883a88848995693a6f4cc5d", "fields": {"nom_de_la_commune": "LAVANS LES DOLE", "libell_d_acheminement": "LAVANS LES DOLE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39285"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95a0b6dc7e6de174ed2402d10a12b82c0bb0a69", "fields": {"nom_de_la_commune": "LAVANS LES ST CLAUDE", "libell_d_acheminement": "LAVANS LES ST CLAUDE", "code_postal": "39170", "coordonnees_gps": [46.4122748444, 5.79038088139], "code_commune_insee": "39286"}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df2d1ae0aaa2929c5b56b1c30f2f02ef0c75cac4", "fields": {"code_postal": "39210", "code_commune_insee": "39288", "libell_d_acheminement": "LAVIGNY", "ligne_5": "ROSNAY", "nom_de_la_commune": "LAVIGNY", "coordonnees_gps": [46.742636609, 5.62862510157]}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb0a501be361303154e143aa2c4ca3b0673604ed", "fields": {"nom_de_la_commune": "LEGNA", "libell_d_acheminement": "LEGNA", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39290"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8120879ef9c0e18fc78a0c87582281168ac6cfa0", "fields": {"nom_de_la_commune": "LOUVATANGE", "libell_d_acheminement": "LOUVATANGE", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39302"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6339bd41e4d022bfa3644b7e13602cec12e80f55", "fields": {"nom_de_la_commune": "LOUVENNE", "libell_d_acheminement": "LOUVENNE", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39303"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "704d64f6f0502e51947afd12a98486930da8d2b4", "fields": {"nom_de_la_commune": "MARNOZ", "libell_d_acheminement": "MARNOZ", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39315"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b156f77304eec83f76c904a8f804a22cac91b961", "fields": {"nom_de_la_commune": "MENOTEY", "libell_d_acheminement": "MENOTEY", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39323"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49071226e2195aca03ed0b4c27ecefbccdb86b8", "fields": {"nom_de_la_commune": "MESNOIS", "libell_d_acheminement": "MESNOIS", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39326"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e271b7f71f7f9d9734ca12348a1b67cb9b71f13f", "fields": {"nom_de_la_commune": "MIEGES", "libell_d_acheminement": "MIEGES", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39329"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db5be5137926597420d152dd32037d691691cd4", "fields": {"code_postal": "39250", "code_commune_insee": "39329", "libell_d_acheminement": "MIEGES", "ligne_5": "ESSERVAL COMBE", "nom_de_la_commune": "MIEGES", "coordonnees_gps": [46.7774503228, 6.08094337332]}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e21a0ad9032730e9ba7edcd83458b2b7fa570ba", "fields": {"nom_de_la_commune": "MIERY", "libell_d_acheminement": "MIERY", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39330"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7b1a2c3a4fb69a04049bb8b141b3c942319a431", "fields": {"code_postal": "39250", "code_commune_insee": "39331", "libell_d_acheminement": "MIGNOVILLARD", "ligne_5": "COMMUNAILLES EN MONTAGNE", "nom_de_la_commune": "MIGNOVILLARD", "coordonnees_gps": [46.7774503228, 6.08094337332]}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae67bee817b624b4b6734145b8e24e3b5ebb5c8d", "fields": {"nom_de_la_commune": "MONNETAY", "libell_d_acheminement": "MONNETAY", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39343"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d5b8c39a31ba2df4e529cdb942a422ffc75e576", "fields": {"nom_de_la_commune": "MONTAGNA LE TEMPLIER", "libell_d_acheminement": "MONTAGNA LE TEMPLIER", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39347"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd67cd5be5ecb7d2c7e4d3982c48912a618fa880", "fields": {"nom_de_la_commune": "MONTCUSEL", "libell_d_acheminement": "MONTCUSEL", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39351"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817b55f8c5739507e8df1bd3b81e3e637bc9e70f", "fields": {"code_postal": "39570", "code_commune_insee": "39362", "libell_d_acheminement": "MONTMOROT", "ligne_5": "SAVAGNA", "nom_de_la_commune": "MONTMOROT", "coordonnees_gps": [46.65517776, 5.57390144978]}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dec70e7c52ecc3c3ede8207fcfd435c57229711", "fields": {"nom_de_la_commune": "MONTREVEL", "libell_d_acheminement": "MONTREVEL", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39363"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9dd6e4b08bc70fe9f95c4447a2c15a7aa79b55e", "fields": {"nom_de_la_commune": "MONT SOUS VAUDREY", "libell_d_acheminement": "MONT SOUS VAUDREY", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39365"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77da04f74efa9150744d17487dd00a3ba88a8cca", "fields": {"code_postal": "39400", "code_commune_insee": "39367", "libell_d_acheminement": "MORBIER", "ligne_5": "TANCUA", "nom_de_la_commune": "MORBIER", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a25d2b53a45c34d6e6d27b0029d305b24319825", "fields": {"code_postal": "39330", "code_commune_insee": "39370", "libell_d_acheminement": "MOUCHARD", "ligne_5": "CERTEMERY", "nom_de_la_commune": "MOUCHARD", "coordonnees_gps": [46.9882126425, 5.81136152584]}, "geometry": {"type": "Point", "coordinates": [5.81136152584, 46.9882126425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264ef7c573979289bfbe5213f7d5634e58da2a5e", "fields": {"code_postal": "39160", "code_commune_insee": "39378", "libell_d_acheminement": "LES TROIS CHATEAUX", "ligne_5": "CHAZELLES", "nom_de_la_commune": "LES TROIS CHATEAUX", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bf1a7a6a720baff15c60729628ff7970c287f19", "fields": {"nom_de_la_commune": "NEUBLANS ABERGEMENT", "libell_d_acheminement": "NEUBLANS ABERGEMENT", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39385"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1a22e8f5db430ef378032fdfb7051d22981ab08", "fields": {"nom_de_la_commune": "NOZEROY", "libell_d_acheminement": "NOZEROY", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39391"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b11b7d28a451bd17a7c86ca80d185703702bbe", "fields": {"nom_de_la_commune": "OFFLANGES", "libell_d_acheminement": "OFFLANGES", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39392"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d7efa4f2cb8e53cacc4a26c90225ba04bca17d", "fields": {"code_postal": "39270", "code_commune_insee": "39397", "libell_d_acheminement": "ORGELET", "ligne_5": "SEZERIA", "nom_de_la_commune": "ORGELET", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6aeafa72537459c7ab56cb6e4690b9b62e4a727", "fields": {"nom_de_la_commune": "PAGNEY", "libell_d_acheminement": "PAGNEY", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39402"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42d128ddcfcdaf8f41a77493dcc5c97e6144e4a5", "fields": {"nom_de_la_commune": "PANNESSIERES", "libell_d_acheminement": "PANNESSIERES", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39404"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb01534fb79f25fe214dc51d44a2c985cb182b05", "fields": {"nom_de_la_commune": "PEINTRE", "libell_d_acheminement": "PEINTRE", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39409"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37520ece8dbc029eef0916d8ca82a7f3feea9c5d", "fields": {"nom_de_la_commune": "PESEUX", "libell_d_acheminement": "PESEUX", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39412"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4241541b4efe4e85005ec3319d5c8171dde1d78c", "fields": {"nom_de_la_commune": "LA PESSE", "libell_d_acheminement": "LA PESSE", "code_postal": "39370", "coordonnees_gps": [46.2916662197, 5.82108544834], "code_commune_insee": "39413"}, "geometry": {"type": "Point", "coordinates": [5.82108544834, 46.2916662197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9812ba07510f60f0ff025a3ac59ef07463fb53f7", "fields": {"nom_de_la_commune": "PIMORIN", "libell_d_acheminement": "PIMORIN", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39420"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7384fa0801626e62919063534d407e1401f5c2d", "fields": {"nom_de_la_commune": "PLASNE", "libell_d_acheminement": "PLASNE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39426"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bedeab395b160868c7522ebc8f4f86d71f13c76", "fields": {"nom_de_la_commune": "PLENISETTE", "libell_d_acheminement": "PLENISETTE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39428"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ea99d1c9d854572f7e119338cca5d90464c538", "fields": {"nom_de_la_commune": "POLIGNY", "libell_d_acheminement": "POLIGNY", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39434"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d9bf4bba5ac2c6466ecb0b2f1e7709ec2840220", "fields": {"nom_de_la_commune": "PORT LESNEY", "libell_d_acheminement": "PORT LESNEY", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39439"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4442cb957110b453f2922fbc73d00c36ca3b23a3", "fields": {"nom_de_la_commune": "PREMANON", "libell_d_acheminement": "PREMANON", "code_postal": "39400", "coordonnees_gps": [46.5030859232, 6.02288479651], "code_commune_insee": "39441"}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74ac3a2d0a002625fc9a5ffc1a9efe2de480dba5", "fields": {"nom_de_la_commune": "RIX", "libell_d_acheminement": "RIX", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39461"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d399ea93084c2f2f46f4abd7aa198401f9789e1", "fields": {"nom_de_la_commune": "LES ROUSSES", "libell_d_acheminement": "LES ROUSSES", "code_postal": "39220", "coordonnees_gps": [46.4870347389, 6.06467102901], "code_commune_insee": "39470"}, "geometry": {"type": "Point", "coordinates": [6.06467102901, 46.4870347389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee70613911c027b8f8c3becaaa5789458b0379c9", "fields": {"nom_de_la_commune": "ST HILAIRE SOUS CHARLIEU", "libell_d_acheminement": "ST HILAIRE SOUS CHARLIEU", "code_postal": "42190", "coordonnees_gps": [46.1512797161, 4.16150779651], "code_commune_insee": "42236"}, "geometry": {"type": "Point", "coordinates": [4.16150779651, 46.1512797161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6da06a71d97f3a12cf0b4afd97b874d42a69c78", "fields": {"nom_de_la_commune": "ST JEAN ST MAURICE SUR LOIRE", "libell_d_acheminement": "ST JEAN ST MAURICE SUR LOIRE", "code_postal": "42155", "coordonnees_gps": [45.9923375929, 3.9763968216], "code_commune_insee": "42239"}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d350ad59c3cb847e03949c29f99611e3a743e77", "fields": {"code_postal": "42155", "code_commune_insee": "42239", "libell_d_acheminement": "ST JEAN ST MAURICE SUR LOIRE", "ligne_5": "ST MAURICE SUR LOIRE", "nom_de_la_commune": "ST JEAN ST MAURICE SUR LOIRE", "coordonnees_gps": [45.9923375929, 3.9763968216]}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a082c384cc87504305f0328fc6f1aa495f57215", "fields": {"nom_de_la_commune": "ST JULIEN D ODDES", "libell_d_acheminement": "ST JULIEN D ODDES", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42243"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc94bec5bf9337acbf81cec927b14a1a30656fe", "fields": {"nom_de_la_commune": "ST JULIEN MOLIN MOLETTE", "libell_d_acheminement": "ST JULIEN MOLIN MOLETTE", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42246"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da95f0934e50dec229124b6e68f0ef7ed951a9f", "fields": {"nom_de_la_commune": "ST MARCELLIN EN FOREZ", "libell_d_acheminement": "ST MARCELLIN EN FOREZ", "code_postal": "42680", "coordonnees_gps": [45.4895995384, 4.16803060335], "code_commune_insee": "42256"}, "geometry": {"type": "Point", "coordinates": [4.16803060335, 45.4895995384]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75841c5773a20555563fd005cf300130c3dabac", "fields": {"nom_de_la_commune": "ST MARTIN LA PLAINE", "libell_d_acheminement": "ST MARTIN LA PLAINE", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42259"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d0acc16e69fc0bf3dc23acf09fad352c21ad08", "fields": {"nom_de_la_commune": "ST MEDARD EN FOREZ", "libell_d_acheminement": "ST MEDARD EN FOREZ", "code_postal": "42330", "coordonnees_gps": [45.5836134512, 4.32526364645], "code_commune_insee": "42264"}, "geometry": {"type": "Point", "coordinates": [4.32526364645, 45.5836134512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad3231e59490d5281dde737c9e05491512bb6adc", "fields": {"nom_de_la_commune": "ST PAUL DE VEZELIN", "libell_d_acheminement": "ST PAUL DE VEZELIN", "code_postal": "42590", "coordonnees_gps": [45.9031033118, 4.13012302493], "code_commune_insee": "42268"}, "geometry": {"type": "Point", "coordinates": [4.13012302493, 45.9031033118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b0fbf5fbce03ab53b7af4d365d12eed7389f471", "fields": {"nom_de_la_commune": "ST PIERRE DE BOEUF", "libell_d_acheminement": "ST PIERRE DE BOEUF", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42272"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790249239170295fb3ae29b60590bb622bf88909", "fields": {"nom_de_la_commune": "ST PRIEST LA ROCHE", "libell_d_acheminement": "ST PRIEST LA ROCHE", "code_postal": "42590", "coordonnees_gps": [45.9031033118, 4.13012302493], "code_commune_insee": "42277"}, "geometry": {"type": "Point", "coordinates": [4.13012302493, 45.9031033118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f03378c7d405fc6c8a8706d83bb56309b43c7e1f", "fields": {"nom_de_la_commune": "ST RIRAND", "libell_d_acheminement": "ST RIRAND", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42281"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59051d07c2ef5d013569815b91f244824f9339bc", "fields": {"nom_de_la_commune": "ST ROMAIN EN JAREZ", "libell_d_acheminement": "ST ROMAIN EN JAREZ", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42283"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a16a6e47d2c417d6427958de09f53772c818c7c9", "fields": {"nom_de_la_commune": "ST THOMAS LA GARDE", "libell_d_acheminement": "ST THOMAS LA GARDE", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42290"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44fda63f45380dd3524d9bcf3fb33ad526290d79", "fields": {"nom_de_la_commune": "SAVIGNEUX", "libell_d_acheminement": "SAVIGNEUX", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42299"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26ab2ae470b4f9a25c0bbff5d76fee09702f768", "fields": {"nom_de_la_commune": "SURY LE COMTAL", "libell_d_acheminement": "SURY LE COMTAL", "code_postal": "42450", "coordonnees_gps": [45.5419473284, 4.18169243713], "code_commune_insee": "42304"}, "geometry": {"type": "Point", "coordinates": [4.18169243713, 45.5419473284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d86bc7fe8ae6cd01d193c1eded56b0eb7347373", "fields": {"nom_de_la_commune": "LA TOURETTE", "libell_d_acheminement": "LA TOURETTE", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42312"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73ae9d7d7ac50383fece7a0902abf9746917ce12", "fields": {"nom_de_la_commune": "LA TUILIERE", "libell_d_acheminement": "LA TUILIERE", "code_postal": "42830", "coordonnees_gps": [45.9518080744, 3.77484013363], "code_commune_insee": "42314"}, "geometry": {"type": "Point", "coordinates": [3.77484013363, 45.9518080744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "035e2628aa4123d5a47768f74819fbdcc8d74e6e", "fields": {"nom_de_la_commune": "VEAUCHE", "libell_d_acheminement": "VEAUCHE", "code_postal": "42340", "coordonnees_gps": [45.5673382654, 4.26910796554], "code_commune_insee": "42323"}, "geometry": {"type": "Point", "coordinates": [4.26910796554, 45.5673382654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206eb0dee311432caf3cdcd96ddede0c8b55d7f8", "fields": {"nom_de_la_commune": "VENDRANGES", "libell_d_acheminement": "VENDRANGES", "code_postal": "42590", "coordonnees_gps": [45.9031033118, 4.13012302493], "code_commune_insee": "42325"}, "geometry": {"type": "Point", "coordinates": [4.13012302493, 45.9031033118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c56cea85eda79f9ea00b5ea592b16045ea5256", "fields": {"nom_de_la_commune": "LA VERSANNE", "libell_d_acheminement": "LA VERSANNE", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42329"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1847410fa1dc4205ccc916bb220f7ac57d2ddd94", "fields": {"nom_de_la_commune": "VILLARS", "libell_d_acheminement": "VILLARS", "code_postal": "42390", "coordonnees_gps": [45.4686632816, 4.35121808476], "code_commune_insee": "42330"}, "geometry": {"type": "Point", "coordinates": [4.35121808476, 45.4686632816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a09f9f3910afe9b6080a53f686dbbc2538bfd4", "fields": {"nom_de_la_commune": "VILLEREST", "libell_d_acheminement": "VILLEREST", "code_postal": "42300", "coordonnees_gps": [46.0587698503, 4.05970322199], "code_commune_insee": "42332"}, "geometry": {"type": "Point", "coordinates": [4.05970322199, 46.0587698503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a664f2437827715d0ca6c47bad8a67e6b45633bc", "fields": {"nom_de_la_commune": "CHAUSSETERRE", "libell_d_acheminement": "CHAUSSETERRE", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42339"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8adff8a5abaecf07084ab18144ff8a8fd8cd1992", "fields": {"nom_de_la_commune": "AIGUILHE", "libell_d_acheminement": "AIGUILHE", "code_postal": "43000", "coordonnees_gps": [45.0562801759, 3.86447846564], "code_commune_insee": "43002"}, "geometry": {"type": "Point", "coordinates": [3.86447846564, 45.0562801759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1edd1fc4879cc73827cab85a1c8d4daed92b3fe", "fields": {"nom_de_la_commune": "ALLEYRAC", "libell_d_acheminement": "ALLEYRAC", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43004"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ea6c7c64a27fea742bb8570138c8ef202f9e6c", "fields": {"nom_de_la_commune": "ARLET", "libell_d_acheminement": "ARLET", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43009"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90ab83785214c168284b2724436244325f022395", "fields": {"nom_de_la_commune": "AUBAZAT", "libell_d_acheminement": "AUBAZAT", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43011"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71d9cd3e173f8597aaa039a5518bd89472d378bc", "fields": {"nom_de_la_commune": "BAS EN BASSET", "libell_d_acheminement": "BAS EN BASSET", "code_postal": "43210", "coordonnees_gps": [45.3265198809, 4.10184881262], "code_commune_insee": "43020"}, "geometry": {"type": "Point", "coordinates": [4.10184881262, 45.3265198809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2e23f8151034cc7274cc019b8edfbdf628bc988", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43021"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f7b215717a5b1f59304568befd96bdf4a2544d", "fields": {"nom_de_la_commune": "BONNEVAL", "libell_d_acheminement": "BONNEVAL", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43035"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca8b0d0ea11a5f7c7f64e33d6c69bc61a3838673", "fields": {"nom_de_la_commune": "BORNE", "libell_d_acheminement": "BORNE", "code_postal": "43350", "coordonnees_gps": [45.1597919947, 3.81524516944], "code_commune_insee": "43036"}, "geometry": {"type": "Point", "coordinates": [3.81524516944, 45.1597919947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a413047e8d349141def986bd7d71b12dd81974", "fields": {"nom_de_la_commune": "BOURNONCLE ST PIERRE", "libell_d_acheminement": "BOURNONCLE ST PIERRE", "code_postal": "43360", "coordonnees_gps": [45.3429722324, 3.30288813488], "code_commune_insee": "43038"}, "geometry": {"type": "Point", "coordinates": [3.30288813488, 45.3429722324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9ba84ec1d759e0dbae804184493b260d1b2661b", "fields": {"nom_de_la_commune": "BRIVES CHARENSAC", "libell_d_acheminement": "BRIVES CHARENSAC", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43041"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "149906ff29a1a42b0b5e48c09e82a1d24056a77c", "fields": {"nom_de_la_commune": "CERZAT", "libell_d_acheminement": "CERZAT", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43044"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ecd4712dfad62434fa126ee563d64863fed497d", "fields": {"nom_de_la_commune": "CHADRON", "libell_d_acheminement": "CHADRON", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43047"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3982ff7d964bce0245cde52ddf3f54d00f8f1878", "fields": {"nom_de_la_commune": "CHAMBEZON", "libell_d_acheminement": "CHAMBEZON", "code_postal": "43410", "coordonnees_gps": [45.3649207273, 3.25237177222], "code_commune_insee": "43050"}, "geometry": {"type": "Point", "coordinates": [3.25237177222, 45.3649207273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0809d028c6fa4106dd9171195ffdeb03f52edb19", "fields": {"nom_de_la_commune": "CHANIAT", "libell_d_acheminement": "CHANIAT", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43055"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57df055bc49751e80a002e3556373c4677effe99", "fields": {"nom_de_la_commune": "LA CHAPELLE BERTIN", "libell_d_acheminement": "LA CHAPELLE BERTIN", "code_postal": "43270", "coordonnees_gps": [45.1932424816, 3.70874018432], "code_commune_insee": "43057"}, "geometry": {"type": "Point", "coordinates": [3.70874018432, 45.1932424816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e275ebfb94c9621d41e1022706727ff56cb5f658", "fields": {"nom_de_la_commune": "CHASTEL", "libell_d_acheminement": "CHASTEL", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43065"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb21d4c8abd75dc2b29fd71589e813a7d69c35d", "fields": {"nom_de_la_commune": "COHADE", "libell_d_acheminement": "COHADE", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43074"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ea91d4a3f94f31665d2910cc3f0e20b8980a83", "fields": {"nom_de_la_commune": "COLLAT", "libell_d_acheminement": "COLLAT", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43075"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f183c7a3b0b13ea19c510a4f43909adb0e134a93", "fields": {"nom_de_la_commune": "COSTAROS", "libell_d_acheminement": "COSTAROS", "code_postal": "43490", "coordonnees_gps": [44.856451175, 3.93428361287], "code_commune_insee": "43077"}, "geometry": {"type": "Point", "coordinates": [3.93428361287, 44.856451175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dcf26f350588840c0d1bd877c8d9d1e3bc836ba", "fields": {"nom_de_la_commune": "COUBON", "libell_d_acheminement": "COUBON", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43078"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8751235dbb75cfe428668d5a2e932df853a4ea8a", "fields": {"nom_de_la_commune": "CUBELLES", "libell_d_acheminement": "CUBELLES", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43083"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5818fde1d06f32a2c30f3e5244d884b5708063e", "fields": {"nom_de_la_commune": "FAY SUR LIGNON", "libell_d_acheminement": "FAY SUR LIGNON", "code_postal": "43430", "coordonnees_gps": [44.9885742524, 4.21536792056], "code_commune_insee": "43092"}, "geometry": {"type": "Point", "coordinates": [4.21536792056, 44.9885742524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208b9e2bb95e03510d6a999c107c958f54428e5b", "fields": {"nom_de_la_commune": "FERRUSSAC", "libell_d_acheminement": "FERRUSSAC", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43094"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8167439f684b25becd9be0701eadba61b1fa3e8f", "fields": {"nom_de_la_commune": "JAVAUGUES", "libell_d_acheminement": "JAVAUGUES", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43105"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2dd91037de8a8e9d190a8460eb4e204f5dc0566", "fields": {"nom_de_la_commune": "LAMOTHE", "libell_d_acheminement": "LAMOTHE", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43110"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afcb72213439787a2181a8d91fa6b91965ea33d3", "fields": {"nom_de_la_commune": "LEMPDES SUR ALLAGNON", "libell_d_acheminement": "LEMPDES SUR ALLAGNON", "code_postal": "43410", "coordonnees_gps": [45.3649207273, 3.25237177222], "code_commune_insee": "43120"}, "geometry": {"type": "Point", "coordinates": [3.25237177222, 45.3649207273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d69bea35520991af1dfb5aa88eed03f48a14639", "fields": {"nom_de_la_commune": "MALREVERS", "libell_d_acheminement": "MALREVERS", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43126"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe90596cef39f876823f840ce95dd5702e49bbf2", "fields": {"nom_de_la_commune": "MALVALETTE", "libell_d_acheminement": "MALVALETTE", "code_postal": "43210", "coordonnees_gps": [45.3265198809, 4.10184881262], "code_commune_insee": "43127"}, "geometry": {"type": "Point", "coordinates": [4.10184881262, 45.3265198809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "302ff6ca205ccf34c00ec6b31310c2e882c370d2", "fields": {"nom_de_la_commune": "LE MAS DE TENCE", "libell_d_acheminement": "LE MAS DE TENCE", "code_postal": "43190", "coordonnees_gps": [45.1188374413, 4.29959378038], "code_commune_insee": "43129"}, "geometry": {"type": "Point", "coordinates": [4.29959378038, 45.1188374413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c57318c8c4d107948aff650e48ec22ee915e819", "fields": {"nom_de_la_commune": "MAZET ST VOY", "libell_d_acheminement": "MAZET ST VOY", "code_postal": "43520", "coordonnees_gps": [45.0436685669, 4.23998847158], "code_commune_insee": "43130"}, "geometry": {"type": "Point", "coordinates": [4.23998847158, 45.0436685669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592147cb7521929e55ab1afe01565f051d28d1ac", "fields": {"nom_de_la_commune": "MAZEYRAT D ALLIER", "libell_d_acheminement": "MAZEYRAT D ALLIER", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43132"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862d6974b975b661409f8c35b35957ce87d0a0fc", "fields": {"nom_de_la_commune": "MERCOEUR", "libell_d_acheminement": "MERCOEUR", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43133"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d5a7ee890dea575eeec20ae922d616b613c241", "fields": {"nom_de_la_commune": "MONTUSCLAT", "libell_d_acheminement": "MONTUSCLAT", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43143"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f602ed99c5e5f3e574d7029ca3987c90cc1530f1", "fields": {"nom_de_la_commune": "PEBRAC", "libell_d_acheminement": "PEBRAC", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43149"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e7ab97ab726bf9146e8e35c522f2cd588623c83", "fields": {"nom_de_la_commune": "PRADELLES", "libell_d_acheminement": "PRADELLES", "code_postal": "43420", "coordonnees_gps": [44.79692139, 3.8871844325], "code_commune_insee": "43154"}, "geometry": {"type": "Point", "coordinates": [3.8871844325, 44.79692139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ee6407ba36d9ae035575538989a4ad77ff3e351", "fields": {"nom_de_la_commune": "RAURET", "libell_d_acheminement": "RAURET", "code_postal": "43340", "coordonnees_gps": [44.842698307, 3.79076623546], "code_commune_insee": "43160"}, "geometry": {"type": "Point", "coordinates": [3.79076623546, 44.842698307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ed97a21133994ca62258b8663c680b0c31ef53", "fields": {"nom_de_la_commune": "RETOURNAC", "libell_d_acheminement": "RETOURNAC", "code_postal": "43130", "coordonnees_gps": [45.2367556015, 4.006325814], "code_commune_insee": "43162"}, "geometry": {"type": "Point", "coordinates": [4.006325814, 45.2367556015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2862009aa521678e183e1aec1708bdcce258ded6", "fields": {"nom_de_la_commune": "RIOTORD", "libell_d_acheminement": "RIOTORD", "code_postal": "43220", "coordonnees_gps": [45.218017746, 4.40270777123], "code_commune_insee": "43163"}, "geometry": {"type": "Point", "coordinates": [4.40270777123, 45.218017746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b07ff6382e830ce7528a0c8f76c1a8ae5d5e6b83", "fields": {"nom_de_la_commune": "ST DIDIER D ALLIER", "libell_d_acheminement": "ST DIDIER D ALLIER", "code_postal": "43580", "coordonnees_gps": [44.9273994452, 3.63004731198], "code_commune_insee": "43176"}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8cebc441ed2a2cdab3c995e9746b6056a452ef4", "fields": {"nom_de_la_commune": "ST ETIENNE SUR BLESLE", "libell_d_acheminement": "ST ETIENNE SUR BLESLE", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "43182"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8862a06d6a7c1bf2d98acbe79834142a43877a32", "fields": {"nom_de_la_commune": "ST HOSTIEN", "libell_d_acheminement": "ST HOSTIEN", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43194"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7da22523a72fe99222627193365fa72a1e229af9", "fields": {"nom_de_la_commune": "ST JULIEN D ANCE", "libell_d_acheminement": "ST JULIEN D ANCE", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43201"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140f4c4aeca1a5e55f01ef92d418702b9df064b6", "fields": {"nom_de_la_commune": "ST JULIEN MOLHESABATE", "libell_d_acheminement": "ST JULIEN MOLHESABATE", "code_postal": "43220", "coordonnees_gps": [45.218017746, 4.40270777123], "code_commune_insee": "43204"}, "geometry": {"type": "Point", "coordinates": [4.40270777123, 45.218017746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "627b65d57b4572c2201d95d6000ee48f11d2a232", "fields": {"nom_de_la_commune": "ST JUST PRES BRIOUDE", "libell_d_acheminement": "ST JUST PRES BRIOUDE", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43206"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d9adc798e2d36bdecf33dccef950082d34e2e4", "fields": {"nom_de_la_commune": "ST PAL DE SENOUIRE", "libell_d_acheminement": "ST PAL DE SENOUIRE", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43214"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178e9ff7f32b516e6c9b04ced185ed7ec27f9ec2", "fields": {"nom_de_la_commune": "ST PREJET D ALLIER", "libell_d_acheminement": "ST PREJET D ALLIER", "code_postal": "43580", "coordonnees_gps": [44.9273994452, 3.63004731198], "code_commune_insee": "43220"}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8609569a6e7e58bb6a9c1ecaee5457de409f47a8", "fields": {"nom_de_la_commune": "ST ROMAIN LACHALM", "libell_d_acheminement": "ST ROMAIN LACHALM", "code_postal": "43620", "coordonnees_gps": [45.2519727569, 4.30691844433], "code_commune_insee": "43223"}, "geometry": {"type": "Point", "coordinates": [4.30691844433, 45.2519727569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cddb35ce2f8aee72688f94f76ac941f725c04b0", "fields": {"nom_de_la_commune": "ST VICTOR SUR ARLANC", "libell_d_acheminement": "ST VICTOR SUR ARLANC", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43228"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ff47695a03d13e16f0570c2294d6ec899586ab2", "fields": {"nom_de_la_commune": "ST VIDAL", "libell_d_acheminement": "ST VIDAL", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43229"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91948f39d80d1d5bfd9a581bcce595e2917f0df4", "fields": {"nom_de_la_commune": "SANSSAC L EGLISE", "libell_d_acheminement": "SANSSAC L EGLISE", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43233"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cfceb9ef5ecec1924b35a35d726f7f5bd398b5e", "fields": {"nom_de_la_commune": "LA SEAUVE SUR SEMENE", "libell_d_acheminement": "LA SEAUVE SUR SEMENE", "code_postal": "43140", "coordonnees_gps": [45.3026508928, 4.29061531047], "code_commune_insee": "43236"}, "geometry": {"type": "Point", "coordinates": [4.29061531047, 45.3026508928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72d857c20e78f189192b8e74d470872b0aace6f9", "fields": {"nom_de_la_commune": "LES VASTRES", "libell_d_acheminement": "LES VASTRES", "code_postal": "43430", "coordonnees_gps": [44.9885742524, 4.21536792056], "code_commune_insee": "43253"}, "geometry": {"type": "Point", "coordinates": [4.21536792056, 44.9885742524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3dd6f117f415536dfe225464ebb7b1b750d447", "fields": {"nom_de_la_commune": "VERGONGHEON", "libell_d_acheminement": "VERGONGHEON", "code_postal": "43360", "coordonnees_gps": [45.3429722324, 3.30288813488], "code_commune_insee": "43258"}, "geometry": {"type": "Point", "coordinates": [3.30288813488, 45.3429722324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c894b64def26e44a8963ae566a640ac593207a37", "fields": {"nom_de_la_commune": "VERNASSAL", "libell_d_acheminement": "VERNASSAL", "code_postal": "43270", "coordonnees_gps": [45.1932424816, 3.70874018432], "code_commune_insee": "43259"}, "geometry": {"type": "Point", "coordinates": [3.70874018432, 45.1932424816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c0ae7c35eb42d30febc212aea8e78f6e8991363", "fields": {"nom_de_la_commune": "ABBARETZ", "libell_d_acheminement": "ABBARETZ", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44001"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072ed5e50fbd5879349705889f7c78ff346c1f03", "fields": {"code_postal": "44320", "code_commune_insee": "44005", "libell_d_acheminement": "CHAUMES EN RETZ", "ligne_5": "LA SICAUDAIS", "nom_de_la_commune": "CHAUMES EN RETZ", "coordonnees_gps": [47.2108954989, -1.99426015028]}, "geometry": {"type": "Point", "coordinates": [-1.99426015028, 47.2108954989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a62440d380f3a13ba07d60c3b1d07f13ba64a79b", "fields": {"nom_de_la_commune": "BOUVRON", "libell_d_acheminement": "BOUVRON", "code_postal": "44130", "coordonnees_gps": [47.4415843575, -1.78877692421], "code_commune_insee": "44023"}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa5187df2b9507629659589cfb4fe62b6e567cf1", "fields": {"nom_de_la_commune": "CAMPBON", "libell_d_acheminement": "CAMPBON", "code_postal": "44750", "coordonnees_gps": [47.4278237849, -1.96018609185], "code_commune_insee": "44025"}, "geometry": {"type": "Point", "coordinates": [-1.96018609185, 47.4278237849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba84206ee6aabc3aa9bef6902937016b4ed83d3", "fields": {"code_postal": "44450", "code_commune_insee": "44029", "libell_d_acheminement": "DIVATTE SUR LOIRE", "ligne_5": "BARBECHAT", "nom_de_la_commune": "DIVATTE SUR LOIRE", "coordonnees_gps": [47.2609944569, -1.38232107674]}, "geometry": {"type": "Point", "coordinates": [-1.38232107674, 47.2609944569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efbbbe0e7d4140d9bd294e4a4c4da66e8371d8c", "fields": {"nom_de_la_commune": "LA CHAPELLE DES MARAIS", "libell_d_acheminement": "LA CHAPELLE DES MARAIS", "code_postal": "44410", "coordonnees_gps": [47.4324776311, -2.33169406972], "code_commune_insee": "44030"}, "geometry": {"type": "Point", "coordinates": [-2.33169406972, 47.4324776311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29829c6b8689a1c2c74b555415698037274643e", "fields": {"nom_de_la_commune": "CHAUVE", "libell_d_acheminement": "CHAUVE", "code_postal": "44320", "coordonnees_gps": [47.2108954989, -1.99426015028], "code_commune_insee": "44038"}, "geometry": {"type": "Point", "coordinates": [-1.99426015028, 47.2108954989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "230bc2ceb9508f21f56f79733792f9444c92f6bc", "fields": {"nom_de_la_commune": "CLISSON", "libell_d_acheminement": "CLISSON", "code_postal": "44190", "coordonnees_gps": [47.0757597302, -1.26309617738], "code_commune_insee": "44043"}, "geometry": {"type": "Point", "coordinates": [-1.26309617738, 47.0757597302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73911776cf3d7ed09a30bb0ec103b2a42b7ea87d", "fields": {"nom_de_la_commune": "LE CROISIC", "libell_d_acheminement": "LE CROISIC", "code_postal": "44490", "coordonnees_gps": [47.2925346738, -2.52343668563], "code_commune_insee": "44049"}, "geometry": {"type": "Point", "coordinates": [-2.52343668563, 47.2925346738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1ea68e9b1b2a52712a391040abe7dc935fbd25f", "fields": {"nom_de_la_commune": "DERVAL", "libell_d_acheminement": "DERVAL", "code_postal": "44590", "coordonnees_gps": [47.6829911414, -1.60317365389], "code_commune_insee": "44051"}, "geometry": {"type": "Point", "coordinates": [-1.60317365389, 47.6829911414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35aa3885a86fe22113a8b907c922ebb658477366", "fields": {"nom_de_la_commune": "DONGES", "libell_d_acheminement": "DONGES", "code_postal": "44480", "coordonnees_gps": [47.3331156301, -2.07211683429], "code_commune_insee": "44052"}, "geometry": {"type": "Point", "coordinates": [-2.07211683429, 47.3331156301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0065ffc2ed83f237c7d9f7685a57f7fc32332b77", "fields": {"nom_de_la_commune": "LA BAULE ESCOUBLAC", "libell_d_acheminement": "LA BAULE", "code_postal": "44500", "coordonnees_gps": [47.2909335075, -2.35378776755], "code_commune_insee": "44055"}, "geometry": {"type": "Point", "coordinates": [-2.35378776755, 47.2909335075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f6a829c0b14519f6e2e04f5003b00bb1882d50a", "fields": {"nom_de_la_commune": "FEGREAC", "libell_d_acheminement": "FEGREAC", "code_postal": "44460", "coordonnees_gps": [47.6181534488, -2.00119847224], "code_commune_insee": "44057"}, "geometry": {"type": "Point", "coordinates": [-2.00119847224, 47.6181534488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8768ce868d9236263655fc13f13535d281449a80", "fields": {"nom_de_la_commune": "LE GAVRE", "libell_d_acheminement": "LE GAVRE", "code_postal": "44130", "coordonnees_gps": [47.4415843575, -1.78877692421], "code_commune_insee": "44062"}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a862df3ff126d2b9c3a6a1ac7ce8a4bc6e0d1d3", "fields": {"nom_de_la_commune": "GETIGNE", "libell_d_acheminement": "GETIGNE", "code_postal": "44190", "coordonnees_gps": [47.0757597302, -1.26309617738], "code_commune_insee": "44063"}, "geometry": {"type": "Point", "coordinates": [-1.26309617738, 47.0757597302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b4c2acf516c8ea911d266a05350a953a4cae44", "fields": {"nom_de_la_commune": "GRAND AUVERNE", "libell_d_acheminement": "GRAND AUVERNE", "code_postal": "44520", "coordonnees_gps": [47.5995335706, -1.38415930312], "code_commune_insee": "44065"}, "geometry": {"type": "Point", "coordinates": [-1.38415930312, 47.5995335706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d08a1df4e841ad0001c8fe185c697d45facb8925", "fields": {"code_postal": "44290", "code_commune_insee": "44067", "libell_d_acheminement": "GUEMENE PENFAO", "ligne_5": "BESLE SUR VILAINE", "nom_de_la_commune": "GUEMENE PENFAO", "coordonnees_gps": [47.6456298963, -1.81807007019]}, "geometry": {"type": "Point", "coordinates": [-1.81807007019, 47.6456298963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049f9b09376636840a0851ac01f9e68a9fcebb48", "fields": {"nom_de_la_commune": "ISSE", "libell_d_acheminement": "ISSE", "code_postal": "44520", "coordonnees_gps": [47.5995335706, -1.38415930312], "code_commune_insee": "44075"}, "geometry": {"type": "Point", "coordinates": [-1.38415930312, 47.5995335706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4925a9d7ea2e6b75b2e99e1bcf5bdec9489cf853", "fields": {"nom_de_la_commune": "LA LIMOUZINIERE", "libell_d_acheminement": "LA LIMOUZINIERE", "code_postal": "44310", "coordonnees_gps": [47.040945415, -1.64161948487], "code_commune_insee": "44083"}, "geometry": {"type": "Point", "coordinates": [-1.64161948487, 47.040945415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47445b35c9f0b9043ca5f04d58293ff4737ccd11", "fields": {"code_postal": "44270", "code_commune_insee": "44087", "libell_d_acheminement": "MACHECOUL ST MEME", "ligne_5": "ST MEME LE TENU", "nom_de_la_commune": "MACHECOUL ST MEME", "coordonnees_gps": [46.9745110591, -1.78089818288]}, "geometry": {"type": "Point", "coordinates": [-1.78089818288, 46.9745110591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70680222bc9fb4e97903f3307428520b89da705e", "fields": {"nom_de_la_commune": "MALVILLE", "libell_d_acheminement": "MALVILLE", "code_postal": "44260", "coordonnees_gps": [47.3429940898, -1.93537477196], "code_commune_insee": "44089"}, "geometry": {"type": "Point", "coordinates": [-1.93537477196, 47.3429940898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d164d3a806fc1fe47dc0ac4525e03165a57fe9a3", "fields": {"nom_de_la_commune": "MESQUER", "libell_d_acheminement": "MESQUER", "code_postal": "44420", "coordonnees_gps": [47.373686193, -2.48987078247], "code_commune_insee": "44097"}, "geometry": {"type": "Point", "coordinates": [-2.48987078247, 47.373686193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac8a9b962936682b9e5046fd9c319500212e77e9", "fields": {"nom_de_la_commune": "TREGLONOU", "libell_d_acheminement": "TREGLONOU", "code_postal": "29870", "coordonnees_gps": [48.5578339908, -4.54140590584], "code_commune_insee": "29290"}, "geometry": {"type": "Point", "coordinates": [-4.54140590584, 48.5578339908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a654b15d22eedf57d40a8d711dad3b7fd97550df", "fields": {"nom_de_la_commune": "TREMEOC", "libell_d_acheminement": "TREMEOC", "code_postal": "29120", "coordonnees_gps": [47.8679473907, -4.24180509959], "code_commune_insee": "29296"}, "geometry": {"type": "Point", "coordinates": [-4.24180509959, 47.8679473907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610d4ec3212d7896591183636f6acfc3fc9e2d96", "fields": {"nom_de_la_commune": "TREMEVEN", "libell_d_acheminement": "TREMEVEN", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29297"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72ea46d7d1e71cdaa2bd573dc9be06c60cef62f", "fields": {"nom_de_la_commune": "TREOGAT", "libell_d_acheminement": "TREOGAT", "code_postal": "29720", "coordonnees_gps": [47.9104464367, -4.30004549098], "code_commune_insee": "29298"}, "geometry": {"type": "Point", "coordinates": [-4.30004549098, 47.9104464367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59020e6e247d73a36831dea1be7121d30027bde9", "fields": {"nom_de_la_commune": "TREOUERGAT", "libell_d_acheminement": "TREOUERGAT", "code_postal": "29290", "coordonnees_gps": [48.4609307964, -4.5931901744], "code_commune_insee": "29299"}, "geometry": {"type": "Point", "coordinates": [-4.5931901744, 48.4609307964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "864cd373304a79ed602e193ff2ba87abc4dc39e0", "fields": {"nom_de_la_commune": "ALLEGRE LES FUMADES", "libell_d_acheminement": "ALLEGRE LES FUMADES", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30008"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f57ee4ebe4277f5b7c4d0d67833beede4ce25f7", "fields": {"nom_de_la_commune": "AUBAIS", "libell_d_acheminement": "AUBAIS", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30019"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32ae7ee5ba7da6d556a373c63ca8a59b0b8f9f60", "fields": {"nom_de_la_commune": "AUJARGUES", "libell_d_acheminement": "AUJARGUES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30023"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fc8acac8fcba56d89e4fd40790ba4a117c7bd13", "fields": {"nom_de_la_commune": "BELLEGARDE", "libell_d_acheminement": "BELLEGARDE", "code_postal": "30127", "coordonnees_gps": [43.7515537312, 4.49595254324], "code_commune_insee": "30034"}, "geometry": {"type": "Point", "coordinates": [4.49595254324, 43.7515537312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5821fb080fc5d24fb789dcdd69f8ee64d9bc4aae", "fields": {"nom_de_la_commune": "BERNIS", "libell_d_acheminement": "BERNIS", "code_postal": "30620", "coordonnees_gps": [43.7617443706, 4.28868094098], "code_commune_insee": "30036"}, "geometry": {"type": "Point", "coordinates": [4.28868094098, 43.7617443706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe764f6abcd071c7bccf474da134a53a61ac5dc1", "fields": {"nom_de_la_commune": "BESSEGES", "libell_d_acheminement": "BESSEGES", "code_postal": "30160", "coordonnees_gps": [44.2982766732, 4.09724420546], "code_commune_insee": "30037"}, "geometry": {"type": "Point", "coordinates": [4.09724420546, 44.2982766732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2c74c32d601fa9b6cc684ddd1d550c2bee10160", "fields": {"nom_de_la_commune": "BOUCOIRAN ET NOZIERES", "libell_d_acheminement": "BOUCOIRAN ET NOZIERES", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30046"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "223beaa1c1ffc872d95a8722977b657d1e14898d", "fields": {"nom_de_la_commune": "BOURDIC", "libell_d_acheminement": "BOURDIC", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30049"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7504c2fe198e91cb31c58229c2eeea00046772c1", "fields": {"nom_de_la_commune": "BRAGASSARGUES", "libell_d_acheminement": "BRAGASSARGUES", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30050"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9e3373166bfd6199d47d6dfd3ef1c1c71bce64", "fields": {"nom_de_la_commune": "CABRIERES", "libell_d_acheminement": "CABRIERES", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30057"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b70bab270f11ddf6e1eec399add45ef15d1bde4", "fields": {"nom_de_la_commune": "CAISSARGUES", "libell_d_acheminement": "CAISSARGUES", "code_postal": "30132", "coordonnees_gps": [43.7919598414, 4.39540235975], "code_commune_insee": "30060"}, "geometry": {"type": "Point", "coordinates": [4.39540235975, 43.7919598414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "626c51d39ef9d5b11101342174b1ecb5c40c99d7", "fields": {"nom_de_la_commune": "CHAMBON", "libell_d_acheminement": "CHAMBON", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30079"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5979080c7b20d44017bd7590b59711d04bba260d", "fields": {"nom_de_la_commune": "CHAMBORIGAUD", "libell_d_acheminement": "CHAMBORIGAUD", "code_postal": "30530", "coordonnees_gps": [44.2835677648, 3.99804352323], "code_commune_insee": "30080"}, "geometry": {"type": "Point", "coordinates": [3.99804352323, 44.2835677648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed73197ce12951e915718b6f212a7b9db13cb3a", "fields": {"code_postal": "30200", "code_commune_insee": "30081", "libell_d_acheminement": "CHUSCLAN", "ligne_5": "MARCOULE", "nom_de_la_commune": "CHUSCLAN", "coordonnees_gps": [44.1738229164, 4.60897329043]}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2315d3d1fdd5949905004151f91fd1af02457558", "fields": {"nom_de_la_commune": "CODOGNAN", "libell_d_acheminement": "CODOGNAN", "code_postal": "30920", "coordonnees_gps": [43.7231922793, 4.2275810591], "code_commune_insee": "30083"}, "geometry": {"type": "Point", "coordinates": [4.2275810591, 43.7231922793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cd7610f3e44d5698ea8073d04a3a77c346e82b6", "fields": {"nom_de_la_commune": "COLLIAS", "libell_d_acheminement": "COLLIAS", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30085"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbe82df72a47a73137de388f895e8b165af78a9c", "fields": {"nom_de_la_commune": "COLLORGUES", "libell_d_acheminement": "COLLORGUES", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30086"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cdf1434604704836e8be1a19d5de55ac7b51c58", "fields": {"nom_de_la_commune": "CONGENIES", "libell_d_acheminement": "CONGENIES", "code_postal": "30111", "coordonnees_gps": [43.7757593036, 4.15842080594], "code_commune_insee": "30091"}, "geometry": {"type": "Point", "coordinates": [4.15842080594, 43.7757593036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25dc2f735c07bc877e77ed9cae6c3980b2c1fdc7", "fields": {"nom_de_la_commune": "CRESPIAN", "libell_d_acheminement": "CRESPIAN", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30098"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2708b23e7ba3909cdc64418225bfb69b70a573f4", "fields": {"nom_de_la_commune": "SEIGNY", "libell_d_acheminement": "SEIGNY", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21598"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc9059cb79dd3fbb751f1ae9c0e6fca4c3b0505f", "fields": {"nom_de_la_commune": "SEMUR EN AUXOIS", "libell_d_acheminement": "SEMUR EN AUXOIS", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21603"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118e8b144239967cf81eefb9b57543390971ffd8", "fields": {"nom_de_la_commune": "LADOIX SERRIGNY", "libell_d_acheminement": "LADOIX SERRIGNY", "code_postal": "21550", "coordonnees_gps": [47.0621683884, 4.91195092652], "code_commune_insee": "21606"}, "geometry": {"type": "Point", "coordinates": [4.91195092652, 47.0621683884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a2edb60c756d068e3448a4e6a4297c38a1c4d2", "fields": {"nom_de_la_commune": "SOIRANS", "libell_d_acheminement": "SOIRANS", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21609"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6e855cda4604ab55815a14e9882a6174ba578ba", "fields": {"nom_de_la_commune": "SUSSEY", "libell_d_acheminement": "SUSSEY", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21615"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6389f629b0832b0d5bfb63516e464e29ed475e35", "fields": {"nom_de_la_commune": "TERREFONDREE", "libell_d_acheminement": "TERREFONDREE", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21626"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4d72b370a3135e70917162ad70caecca0e1c167", "fields": {"nom_de_la_commune": "TROUHANS", "libell_d_acheminement": "TROUHANS", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21645"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41de63e06bb9c77c6288985c0e2540615e70bc97", "fields": {"nom_de_la_commune": "TRUGNY", "libell_d_acheminement": "TRUGNY", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21647"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91ca9c27762cf3278d4df00c9cab463b4d2276fd", "fields": {"nom_de_la_commune": "VELARS SUR OUCHE", "libell_d_acheminement": "VELARS SUR OUCHE", "code_postal": "21370", "coordonnees_gps": [47.3545097127, 4.89318102918], "code_commune_insee": "21661"}, "geometry": {"type": "Point", "coordinates": [4.89318102918, 47.3545097127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2c5fd1cf7d3d009e283b93b117a655e226a8cb", "fields": {"nom_de_la_commune": "VESVRES", "libell_d_acheminement": "VESVRES", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21672"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c7acd94ddb056657ac966c953aa384405f4e10", "fields": {"nom_de_la_commune": "VEUXHAULLES SUR AUBE", "libell_d_acheminement": "VEUXHAULLES SUR AUBE", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21674"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e23cffd7248ff34560683cfdde329fbba3293d1c", "fields": {"nom_de_la_commune": "VILLARS FONTAINE", "libell_d_acheminement": "VILLARS FONTAINE", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21688"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d188f05ec8c8bf6048b5c01ad21215e200df4a1b", "fields": {"nom_de_la_commune": "VILLEBICHOT", "libell_d_acheminement": "VILLEBICHOT", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21691"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9be4175646da9afbafb80a5e9f4d9f40f472a393", "fields": {"nom_de_la_commune": "LA VILLENEUVE LES CONVERS", "libell_d_acheminement": "LA VILLENEUVE LES CONVERS", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21695"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efa1f3441c38efeff980e207fbec6e46e5312bbe", "fields": {"nom_de_la_commune": "VILLERS LES POTS", "libell_d_acheminement": "VILLERS LES POTS", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21699"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3696da178a4e8dd7665aaf8838cceef07560a41", "fields": {"nom_de_la_commune": "VILLOTTE ST SEINE", "libell_d_acheminement": "VILLOTTE ST SEINE", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21705"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6073e9ea096bfb407cf8130bc31153b1a159a88e", "fields": {"nom_de_la_commune": "VILLOTTE SUR OURCE", "libell_d_acheminement": "VILLOTTE SUR OURCE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21706"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80e572bf669a300b53dfc353153cd30fe48f740c", "fields": {"nom_de_la_commune": "ANDEL", "libell_d_acheminement": "ANDEL", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22002"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba4517a39b5ef8f80811b38679c7392010b6f526", "fields": {"code_postal": "22140", "code_commune_insee": "22004", "libell_d_acheminement": "BEGARD", "ligne_5": "GUENEZAN", "nom_de_la_commune": "BEGARD", "coordonnees_gps": [48.6535314003, -3.30873251878]}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b7483dbfaae0e791ca75b5a6e4880041f03d62", "fields": {"nom_de_la_commune": "BERHET", "libell_d_acheminement": "BERHET", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22006"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b1128b75b43e9456be3868685fefd6cdd75b06e", "fields": {"nom_de_la_commune": "BOBITAL", "libell_d_acheminement": "BOBITAL", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22008"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "303fde225d4c346e5f3e0d8b89ccfa4de1cdb3c8", "fields": {"nom_de_la_commune": "LE BODEO", "libell_d_acheminement": "LE BODEO", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22009"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "251437544214c3d0046abfdd1acaaf5818a36064", "fields": {"nom_de_la_commune": "CAUREL", "libell_d_acheminement": "CAUREL", "code_postal": "22530", "coordonnees_gps": [48.2126596163, -2.96770725479], "code_commune_insee": "22033"}, "geometry": {"type": "Point", "coordinates": [-2.96770725479, 48.2126596163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d3a7ae31fb25c566f41fe505b93e542d8645220", "fields": {"nom_de_la_commune": "COADOUT", "libell_d_acheminement": "COADOUT", "code_postal": "22970", "coordonnees_gps": [48.5268505114, -3.12593475161], "code_commune_insee": "22040"}, "geometry": {"type": "Point", "coordinates": [-3.12593475161, 48.5268505114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f280dc1a14ec28bb5e813629688efb89f894588a", "fields": {"nom_de_la_commune": "COETLOGON", "libell_d_acheminement": "COETLOGON", "code_postal": "22210", "coordonnees_gps": [48.1328117448, -2.60089281473], "code_commune_insee": "22043"}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bd9c7fa30a01e9a82d83ac691805f31e4a0df63", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "COLLINEE", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "458eca006e31b914852509b254578a8d18b135db", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "ST GILLES DU MENE", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c359aa4afe934d8a86116cc117a74722d4f713a", "fields": {"nom_de_la_commune": "BINIC ETABLES SUR MER", "libell_d_acheminement": "BINIC ETABLES SUR MER", "code_postal": "22680", "coordonnees_gps": [48.6253671156, -2.8412181683], "code_commune_insee": "22055"}, "geometry": {"type": "Point", "coordinates": [-2.8412181683, 48.6253671156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "295b9c3262055f62c3b07bd49d4600b4e8dbedcf", "fields": {"nom_de_la_commune": "GLOMEL", "libell_d_acheminement": "GLOMEL", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22061"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c4ade1a2fb8efe6f9857bb3a343ef78ae7f9d9", "fields": {"nom_de_la_commune": "GUINGAMP", "libell_d_acheminement": "GUINGAMP", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22070"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5dc73e84c6f945f69b2e93a76c5b7ab5dd661c", "fields": {"nom_de_la_commune": "HILLION", "libell_d_acheminement": "HILLION", "code_postal": "22120", "coordonnees_gps": [48.462144605, -2.65332605915], "code_commune_insee": "22081"}, "geometry": {"type": "Point", "coordinates": [-2.65332605915, 48.462144605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2975d43af4427c7581d78af65dba22089153e34c", "fields": {"nom_de_la_commune": "KERMOROC H", "libell_d_acheminement": "KERMOROC H", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22091"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6a64e79bcfb44df591a35094f0537a16adabe4f", "fields": {"nom_de_la_commune": "LANFAINS", "libell_d_acheminement": "LANFAINS", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22099"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5fd23a48bb03f1b4d0e46d23a03f59094a52aae", "fields": {"nom_de_la_commune": "LANGOAT", "libell_d_acheminement": "LANGOAT", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22101"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56bfb86f8b98c4b209e26e8860943507319b59ff", "fields": {"nom_de_la_commune": "LANGUEUX", "libell_d_acheminement": "LANGUEUX", "code_postal": "22360", "coordonnees_gps": [48.5000567544, -2.71042685567], "code_commune_insee": "22106"}, "geometry": {"type": "Point", "coordinates": [-2.71042685567, 48.5000567544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e92d69528db0df820502ade1f0df86269da0f6a0", "fields": {"nom_de_la_commune": "LANLEFF", "libell_d_acheminement": "LANLEFF", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22108"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5b28d1fbc628e8e3eb53b7b1140df4ea805124", "fields": {"nom_de_la_commune": "LANMODEZ", "libell_d_acheminement": "LANMODEZ", "code_postal": "22610", "coordonnees_gps": [48.8387667808, -3.14072269056], "code_commune_insee": "22111"}, "geometry": {"type": "Point", "coordinates": [-3.14072269056, 48.8387667808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e673de536e991775a1f3cebc1434ddc24a5077", "fields": {"code_postal": "22100", "code_commune_insee": "22118", "libell_d_acheminement": "LANVALLAY", "ligne_5": "ST SOLEN", "nom_de_la_commune": "LANVALLAY", "coordonnees_gps": [48.4429392522, -2.05375025215]}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3090be4c3e1b04f3991d59b688a9c1f744a8d02", "fields": {"nom_de_la_commune": "LANVELLEC", "libell_d_acheminement": "LANVELLEC", "code_postal": "22420", "coordonnees_gps": [48.6137512705, -3.47149497332], "code_commune_insee": "22119"}, "geometry": {"type": "Point", "coordinates": [-3.47149497332, 48.6137512705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f08a7d20da5b09fd6787c4d27fc47a39d3fd9f", "fields": {"nom_de_la_commune": "LEHON", "libell_d_acheminement": "LEHON", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22123"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c1bbb8f606ad4527c8ad855179589aa00c5f774", "fields": {"nom_de_la_commune": "LOGUIVY PLOUGRAS", "libell_d_acheminement": "LOGUIVY PLOUGRAS", "code_postal": "22780", "coordonnees_gps": [48.5213777811, -3.52574815356], "code_commune_insee": "22131"}, "geometry": {"type": "Point", "coordinates": [-3.52574815356, 48.5213777811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f08d15a124ae0399a691548acc4cbb671d47634b", "fields": {"nom_de_la_commune": "MANTALLOT", "libell_d_acheminement": "MANTALLOT", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22141"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4789404e81c3274b2740375ec0c5fe1fba02d527", "fields": {"nom_de_la_commune": "MELLIONNEC", "libell_d_acheminement": "MELLIONNEC", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22146"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04c516d551939684734f5eb75af529492925f1e", "fields": {"nom_de_la_commune": "MERILLAC", "libell_d_acheminement": "MERILLAC", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22148"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "230f027483d5818efe0d16ee4be17f96910314b3", "fields": {"nom_de_la_commune": "MOUSTERU", "libell_d_acheminement": "MOUSTERU", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22156"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9383c365ac3e377d3996a9aa4042459749c45ff1", "fields": {"nom_de_la_commune": "MUR DE BRETAGNE", "libell_d_acheminement": "MUR DE BRETAGNE", "code_postal": "22530", "coordonnees_gps": [48.2126596163, -2.96770725479], "code_commune_insee": "22158"}, "geometry": {"type": "Point", "coordinates": [-2.96770725479, 48.2126596163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6809ee869226e106b357da703fe8cdd546fdce", "fields": {"nom_de_la_commune": "PAIMPOL", "libell_d_acheminement": "PAIMPOL", "code_postal": "22500", "coordonnees_gps": [48.7659885525, -3.04980464918], "code_commune_insee": "22162"}, "geometry": {"type": "Point", "coordinates": [-3.04980464918, 48.7659885525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c592f3876ababa5975f0e727c67d773ab817a92", "fields": {"nom_de_la_commune": "PLEBOULLE", "libell_d_acheminement": "PLEBOULLE", "code_postal": "22550", "coordonnees_gps": [48.570915647, -2.33432479795], "code_commune_insee": "22174"}, "geometry": {"type": "Point", "coordinates": [-2.33432479795, 48.570915647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d7329416bd16e171d4bac02c8b1430b569b95d", "fields": {"nom_de_la_commune": "PLEDRAN", "libell_d_acheminement": "PLEDRAN", "code_postal": "22960", "coordonnees_gps": [48.4433395848, -2.74484098565], "code_commune_insee": "22176"}, "geometry": {"type": "Point", "coordinates": [-2.74484098565, 48.4433395848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c4fe8c83b422c2785a8a69f7190020c28215eed", "fields": {"nom_de_la_commune": "PLEGUIEN", "libell_d_acheminement": "PLEGUIEN", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22177"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5638442c344efe173391a1f5543bd3cf81526b82", "fields": {"code_postal": "22240", "code_commune_insee": "22179", "libell_d_acheminement": "FREHEL", "ligne_5": "SABLES D OR LES PINS", "nom_de_la_commune": "FREHEL", "coordonnees_gps": [48.6228539052, -2.37843201672]}, "geometry": {"type": "Point", "coordinates": [-2.37843201672, 48.6228539052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c7b0c46c3f0b818e7f340c84310fb7d671e2e5", "fields": {"code_postal": "22170", "code_commune_insee": "22182", "libell_d_acheminement": "PLELO", "ligne_5": "ST JEAN PLELO", "nom_de_la_commune": "PLELO", "coordonnees_gps": [48.5200598595, -2.97473935214]}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04e8fda5dbfdf502ec56d4e0e57598caca4bb016", "fields": {"nom_de_la_commune": "PLESSIX BALISSON", "libell_d_acheminement": "PLESSIX BALISSON", "code_postal": "22650", "coordonnees_gps": [48.5606353312, -2.1363314846], "code_commune_insee": "22192"}, "geometry": {"type": "Point", "coordinates": [-2.1363314846, 48.5606353312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a6746d14e655e706a955828389c60db0377ebb", "fields": {"nom_de_la_commune": "PLESTAN", "libell_d_acheminement": "PLESTAN", "code_postal": "22640", "coordonnees_gps": [48.3786869246, -2.4244584084], "code_commune_insee": "22193"}, "geometry": {"type": "Point", "coordinates": [-2.4244584084, 48.3786869246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6870c9c6f2b4969f13d33d6adb622c040b4758", "fields": {"code_postal": "22610", "code_commune_insee": "22195", "libell_d_acheminement": "PLEUBIAN", "ligne_5": "L ARMOR", "nom_de_la_commune": "PLEUBIAN", "coordonnees_gps": [48.8387667808, -3.14072269056]}, "geometry": {"type": "Point", "coordinates": [-3.14072269056, 48.8387667808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "912e5eab0b662a9ee1b74d4db7c92c163cd0d955", "fields": {"nom_de_la_commune": "PLOUAGAT", "libell_d_acheminement": "PLOUAGAT", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22206"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5573ea09d290fc0de3d2650d9eb8ddf8d2e4bd7", "fields": {"nom_de_la_commune": "PLOUARET", "libell_d_acheminement": "PLOUARET", "code_postal": "22420", "coordonnees_gps": [48.6137512705, -3.47149497332], "code_commune_insee": "22207"}, "geometry": {"type": "Point", "coordinates": [-3.47149497332, 48.6137512705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca18741d25a1b606d64c37b1ed81d4bad9e7d8cd", "fields": {"nom_de_la_commune": "PLOUBALAY", "libell_d_acheminement": "PLOUBALAY", "code_postal": "22650", "coordonnees_gps": [48.5606353312, -2.1363314846], "code_commune_insee": "22209"}, "geometry": {"type": "Point", "coordinates": [-2.1363314846, 48.5606353312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8caab5f22a361c951fe82dd2552397517d9e7087", "fields": {"code_postal": "22620", "code_commune_insee": "22210", "libell_d_acheminement": "PLOUBAZLANEC", "ligne_5": "L ARCOUEST", "nom_de_la_commune": "PLOUBAZLANEC", "coordonnees_gps": [48.8054371509, -3.04487100542]}, "geometry": {"type": "Point", "coordinates": [-3.04487100542, 48.8054371509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b61ab5edb0072f36307226c43876587c5442ddc", "fields": {"nom_de_la_commune": "PLOUBEZRE", "libell_d_acheminement": "PLOUBEZRE", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22211"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffc6a028b1fd004a56c9536f60d63c6d61a3a53c", "fields": {"nom_de_la_commune": "PLOUER SUR RANCE", "libell_d_acheminement": "PLOUER SUR RANCE", "code_postal": "22490", "coordonnees_gps": [48.5318949869, -2.03987229623], "code_commune_insee": "22213"}, "geometry": {"type": "Point", "coordinates": [-2.03987229623, 48.5318949869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9293f5b04f3436fabc5bdc05beea717f7a7861", "fields": {"code_postal": "22580", "code_commune_insee": "22222", "libell_d_acheminement": "PLOUHA", "ligne_5": "KEREGAL", "nom_de_la_commune": "PLOUHA", "coordonnees_gps": [48.6838185781, -2.93369249044]}, "geometry": {"type": "Point", "coordinates": [-2.93369249044, 48.6838185781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8228ce3ec084f03f4cb0f46e0c442fa51a2ff48e", "fields": {"nom_de_la_commune": "PLOUMAGOAR", "libell_d_acheminement": "PLOUMAGOAR", "code_postal": "22970", "coordonnees_gps": [48.5268505114, -3.12593475161], "code_commune_insee": "22225"}, "geometry": {"type": "Point", "coordinates": [-3.12593475161, 48.5268505114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2956e676acda582d980ce90e20a2ff61cbf608d", "fields": {"nom_de_la_commune": "PLOUMILLIAU", "libell_d_acheminement": "PLOUMILLIAU", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22226"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83fddda04b8d9366de512545408bfcea88e3a4f9", "fields": {"nom_de_la_commune": "PLOUNEVEZ MOEDEC", "libell_d_acheminement": "PLOUNEVEZ MOEDEC", "code_postal": "22810", "coordonnees_gps": [48.5216835739, -3.40784365182], "code_commune_insee": "22228"}, "geometry": {"type": "Point", "coordinates": [-3.40784365182, 48.5216835739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec3606d69e157dd09041dea981de7bcfc244f431", "fields": {"nom_de_la_commune": "PLOUVARA", "libell_d_acheminement": "PLOUVARA", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22234"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "677e7906db9f37e0c514321c88a86191a8c7c837", "fields": {"nom_de_la_commune": "PLURIEN", "libell_d_acheminement": "PLURIEN", "code_postal": "22240", "coordonnees_gps": [48.6228539052, -2.37843201672], "code_commune_insee": "22242"}, "geometry": {"type": "Point", "coordinates": [-2.37843201672, 48.6228539052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24c99b32e4cedff29029f464cf3f494b7817a658", "fields": {"nom_de_la_commune": "POMMERET", "libell_d_acheminement": "POMMERET", "code_postal": "22120", "coordonnees_gps": [48.462144605, -2.65332605915], "code_commune_insee": "22246"}, "geometry": {"type": "Point", "coordinates": [-2.65332605915, 48.462144605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "876cb4d3815b092ec9533dc8ac9d815f8c6281be", "fields": {"nom_de_la_commune": "POMMERIT JAUDY", "libell_d_acheminement": "POMMERIT JAUDY", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22247"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f04229b0ee18406f5cbc778e42d41001ff49231", "fields": {"code_postal": "22590", "code_commune_insee": "22251", "libell_d_acheminement": "PORDIC", "ligne_5": "LA VILLE LOUAIS", "nom_de_la_commune": "PORDIC", "coordonnees_gps": [48.5695461938, -2.84144566596]}, "geometry": {"type": "Point", "coordinates": [-2.84144566596, 48.5695461938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece0598b86f8ca1d4994f1ffc6731b08aced1fb6", "fields": {"nom_de_la_commune": "LE QUIOU", "libell_d_acheminement": "LE QUIOU", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22263"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c869fe6ca072682907b0765ce70b8b95b29478", "fields": {"nom_de_la_commune": "ROUILLAC", "libell_d_acheminement": "ROUILLAC", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22267"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a9ef55c2ac3846b278f9205eeca077b5a0dafb2", "fields": {"nom_de_la_commune": "ST ANDRE DES EAUX", "libell_d_acheminement": "ST ANDRE DES EAUX", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22274"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "595f2f032d657b825743c5bb72b5b327306c4588", "fields": {"nom_de_la_commune": "ST BRIEUC", "libell_d_acheminement": "ST BRIEUC", "code_postal": "22000", "coordonnees_gps": [48.5146037386, -2.76180979127], "code_commune_insee": "22278"}, "geometry": {"type": "Point", "coordinates": [-2.76180979127, 48.5146037386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3651edabe029a017d0a6f808c77d99535b668bd8", "fields": {"nom_de_la_commune": "ST CARREUC", "libell_d_acheminement": "ST CARREUC", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22281"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cd5dcd4fc7e8692365dd0594ef4b977bac91fd2", "fields": {"code_postal": "22380", "code_commune_insee": "22282", "libell_d_acheminement": "ST CAST LE GUILDO", "ligne_5": "NOTRE DAME DU GUILDO", "nom_de_la_commune": "ST CAST LE GUILDO", "coordonnees_gps": [48.6033654101, -2.24845045064]}, "geometry": {"type": "Point", "coordinates": [-2.24845045064, 48.6033654101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84787479b0f7c72a25cd6058ca5b9119db7db8e7", "fields": {"code_postal": "67330", "code_commune_insee": "67347", "libell_d_acheminement": "OBERMODERN ZUTZENDORF", "ligne_5": "OBERMODERN", "nom_de_la_commune": "OBERMODERN ZUTZENDORF", "coordonnees_gps": [48.8220828424, 7.43331239388]}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cfa14d4b2f40d6c1ff8ade2fe66e4dc432cd95a", "fields": {"nom_de_la_commune": "OBERSCHAEFFOLSHEIM", "libell_d_acheminement": "OBERSCHAEFFOLSHEIM", "code_postal": "67203", "coordonnees_gps": [48.5913901619, 7.64679643518], "code_commune_insee": "67350"}, "geometry": {"type": "Point", "coordinates": [7.64679643518, 48.5913901619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e4087059af6a25559426a87f89ee0ba791d2f5", "fields": {"nom_de_la_commune": "SEEBACH", "libell_d_acheminement": "SEEBACH", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67351"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694d49e249f91e7cfbc4eb5285563de052cde878", "fields": {"nom_de_la_commune": "TACONNAY", "libell_d_acheminement": "TACONNAY", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58283"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f637a68b05f8a13d9d7e79a0b536698f4139a4d8", "fields": {"nom_de_la_commune": "TINTURY", "libell_d_acheminement": "TINTURY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58292"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f738671c17795d153dda455c0dffd2b49e7c3a67", "fields": {"code_postal": "58150", "code_commune_insee": "58295", "libell_d_acheminement": "TRACY SUR LOIRE", "ligne_5": "BOISGIBAULT", "nom_de_la_commune": "TRACY SUR LOIRE", "coordonnees_gps": [47.3141169585, 3.01884186422]}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5e0578271a90f2b774bcf3dc88f5478e5f581e", "fields": {"nom_de_la_commune": "TRESNAY", "libell_d_acheminement": "TRESNAY", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58296"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0cdca3ffdac09c33a27fe47a4dc59f7530fa9cc", "fields": {"nom_de_la_commune": "TRONSANGES", "libell_d_acheminement": "TRONSANGES", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58298"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "170bda081a45ea07e05ecde3139002697d442eb0", "fields": {"nom_de_la_commune": "URZY", "libell_d_acheminement": "URZY", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58300"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a7b149e50cbd2d64e11f1ee5b7a61c1e64cd84e", "fields": {"nom_de_la_commune": "VARENNES LES NARCY", "libell_d_acheminement": "VARENNES LES NARCY", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58302"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6edcc6d0bdd727f2e94b046dfd959807afb81b32", "fields": {"nom_de_la_commune": "VERNEUIL", "libell_d_acheminement": "VERNEUIL", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58306"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e46c0beaeb4c9947b82f8b283bcdc2f8d0f4a5c", "fields": {"nom_de_la_commune": "VIGNOL", "libell_d_acheminement": "VIGNOL", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58308"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b2966dab477ccacc24c923a325d6c1903e882c", "fields": {"nom_de_la_commune": "VILLAPOURCON", "libell_d_acheminement": "VILLAPOURCON", "code_postal": "58370", "coordonnees_gps": [46.9308516747, 3.9664871714], "code_commune_insee": "58309"}, "geometry": {"type": "Point", "coordinates": [3.9664871714, 46.9308516747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6babb01241ab6b2218d26c3d4bc553fe82ab7f39", "fields": {"nom_de_la_commune": "VILLE LANGY", "libell_d_acheminement": "VILLE LANGY", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58311"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23a1e45e2c994d0a04316e9210f0e88e0242238c", "fields": {"nom_de_la_commune": "AIBES", "libell_d_acheminement": "AIBES", "code_postal": "59149", "coordonnees_gps": [50.2443056992, 4.15095520104], "code_commune_insee": "59003"}, "geometry": {"type": "Point", "coordinates": [4.15095520104, 50.2443056992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b6cc165bfd7b2b1a7561fa8c090917dc75d7a55", "fields": {"nom_de_la_commune": "ALLENNES LES MARAIS", "libell_d_acheminement": "ALLENNES LES MARAIS", "code_postal": "59251", "coordonnees_gps": [50.5419829153, 2.94796550506], "code_commune_insee": "59005"}, "geometry": {"type": "Point", "coordinates": [2.94796550506, 50.5419829153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b1140baf2520b75cd9f4655e74feb0a1385b902", "fields": {"nom_de_la_commune": "ANNEUX", "libell_d_acheminement": "ANNEUX", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59010"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4375c2a680c23128e6966f2cbadc7f93b1db9b7", "fields": {"nom_de_la_commune": "ARTRES", "libell_d_acheminement": "ARTRES", "code_postal": "59269", "coordonnees_gps": [50.2865936592, 3.53807571429], "code_commune_insee": "59019"}, "geometry": {"type": "Point", "coordinates": [3.53807571429, 50.2865936592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b1aa0614e5abb8e1038c1ffc791b40b84900fd2", "fields": {"nom_de_la_commune": "ASSEVENT", "libell_d_acheminement": "ASSEVENT", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59021"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db677226526ff3cb8b1fabc116c05e3e993258f", "fields": {"nom_de_la_commune": "AULNOY LEZ VALENCIENNES", "libell_d_acheminement": "AULNOY LEZ VALENCIENNES", "code_postal": "59300", "coordonnees_gps": [50.3420089884, 3.52240338554], "code_commune_insee": "59032"}, "geometry": {"type": "Point", "coordinates": [3.52240338554, 50.3420089884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6ebf589add38faa3496ef8b3b0acf769e68fa79", "fields": {"nom_de_la_commune": "AVELIN", "libell_d_acheminement": "AVELIN", "code_postal": "59710", "coordonnees_gps": [50.5305991887, 3.10906639629], "code_commune_insee": "59034"}, "geometry": {"type": "Point", "coordinates": [3.10906639629, 50.5305991887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a232cd06710cdfda63a9fbc4142dc91d2bf3c5", "fields": {"nom_de_la_commune": "AVESNES LES AUBERT", "libell_d_acheminement": "AVESNES LES AUBERT", "code_postal": "59129", "coordonnees_gps": [50.191508936, 3.37663816461], "code_commune_insee": "59037"}, "geometry": {"type": "Point", "coordinates": [3.37663816461, 50.191508936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df9e581f23b0b31d3f8ad9d511a1d0e2086988af", "fields": {"nom_de_la_commune": "BANTIGNY", "libell_d_acheminement": "BANTIGNY", "code_postal": "59554", "coordonnees_gps": [50.1997132829, 3.19825969693], "code_commune_insee": "59048"}, "geometry": {"type": "Point", "coordinates": [3.19825969693, 50.1997132829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "991276ec6a2b2e05c398ba79337beb3fb49a5157", "fields": {"nom_de_la_commune": "BAS LIEU", "libell_d_acheminement": "BAS LIEU", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59050"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e981eccbdd0cfff61ed03b436a72c85b181450fa", "fields": {"nom_de_la_commune": "BEAUFORT", "libell_d_acheminement": "BEAUFORT", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59058"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b06f01f3c42c3715c510d9584f0bf31008240301", "fields": {"nom_de_la_commune": "BEAUVOIS EN CAMBRESIS", "libell_d_acheminement": "BEAUVOIS EN CAMBRESIS", "code_postal": "59157", "coordonnees_gps": [50.1316078184, 3.37201243969], "code_commune_insee": "59063"}, "geometry": {"type": "Point", "coordinates": [3.37201243969, 50.1316078184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f7263f37b5835b235dc39c9d9adc5721e9f06e", "fields": {"nom_de_la_commune": "BETHENCOURT", "libell_d_acheminement": "BETHENCOURT", "code_postal": "59540", "coordonnees_gps": [50.1250979725, 3.43223199835], "code_commune_insee": "59075"}, "geometry": {"type": "Point", "coordinates": [3.43223199835, 50.1250979725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a07dff901ab921e2cce62267634da98328549fe6", "fields": {"nom_de_la_commune": "BEUGNIES", "libell_d_acheminement": "BEUGNIES", "code_postal": "59216", "coordonnees_gps": [50.1687463201, 4.01936516486], "code_commune_insee": "59078"}, "geometry": {"type": "Point", "coordinates": [4.01936516486, 50.1687463201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7251b76c8b3c621c315858be6252a60ff1287c", "fields": {"nom_de_la_commune": "BEUVRAGES", "libell_d_acheminement": "BEUVRAGES", "code_postal": "59192", "coordonnees_gps": [50.3888434919, 3.50516090536], "code_commune_insee": "59079"}, "geometry": {"type": "Point", "coordinates": [3.50516090536, 50.3888434919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcb6ab516f6bca9fd3feb36949a31cd56f479b6e", "fields": {"nom_de_la_commune": "BLECOURT", "libell_d_acheminement": "BLECOURT", "code_postal": "59268", "coordonnees_gps": [50.2255437815, 3.19481961843], "code_commune_insee": "59085"}, "geometry": {"type": "Point", "coordinates": [3.19481961843, 50.2255437815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dac1ba11f63b7735621762a7bcfdc4d663ecb3ee", "fields": {"code_postal": "59111", "code_commune_insee": "59092", "libell_d_acheminement": "BOUCHAIN", "ligne_5": "BASSIN ROND", "nom_de_la_commune": "BOUCHAIN", "coordonnees_gps": [50.2733776483, 3.31798741017]}, "geometry": {"type": "Point", "coordinates": [3.31798741017, 50.2733776483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92b29cc54b83d2a748aeccee577ead2d025932f8", "fields": {"nom_de_la_commune": "BOURGHELLES", "libell_d_acheminement": "BOURGHELLES", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59096"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21bc72c372226b3e8e433949e4ffb3951f97649f", "fields": {"nom_de_la_commune": "BOUSSIERES EN CAMBRESIS", "libell_d_acheminement": "BOUSSIERES EN CAMBRESIS", "code_postal": "59217", "coordonnees_gps": [50.1561970919, 3.35840082194], "code_commune_insee": "59102"}, "geometry": {"type": "Point", "coordinates": [3.35840082194, 50.1561970919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04addcf7edaa207d5d332c3d117b35f42016644b", "fields": {"nom_de_la_commune": "BOUVINES", "libell_d_acheminement": "BOUVINES", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59106"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8631266784228a9aebf75d43b83343d38d38b6", "fields": {"nom_de_la_commune": "BRILLON", "libell_d_acheminement": "BRILLON", "code_postal": "59178", "coordonnees_gps": [50.4208694129, 3.3753580668], "code_commune_insee": "59109"}, "geometry": {"type": "Point", "coordinates": [3.3753580668, 50.4208694129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c98cee287f51f1d234f16479da2ba91a8c573b", "fields": {"nom_de_la_commune": "BUGNICOURT", "libell_d_acheminement": "BUGNICOURT", "code_postal": "59151", "coordonnees_gps": [50.2865158745, 3.11140042003], "code_commune_insee": "59117"}, "geometry": {"type": "Point", "coordinates": [3.11140042003, 50.2865158745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03a1daba5fc67ecbb3486086581a89ae54a2597", "fields": {"nom_de_la_commune": "BUSIGNY", "libell_d_acheminement": "BUSIGNY", "code_postal": "59137", "coordonnees_gps": [50.0375774947, 3.46625652064], "code_commune_insee": "59118"}, "geometry": {"type": "Point", "coordinates": [3.46625652064, 50.0375774947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de2c998c75f976770342a22c605a8de5823dcee", "fields": {"nom_de_la_commune": "CAGNONCLES", "libell_d_acheminement": "CAGNONCLES", "code_postal": "59161", "coordonnees_gps": [50.1987116728, 3.28713967931], "code_commune_insee": "59121"}, "geometry": {"type": "Point", "coordinates": [3.28713967931, 50.1987116728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23e0d7f83b0ec6341c7721e812f278fb69690fd6", "fields": {"nom_de_la_commune": "CAPINGHEM", "libell_d_acheminement": "CAPINGHEM", "code_postal": "59160", "coordonnees_gps": [50.6326805368, 3.0429756448], "code_commune_insee": "59128"}, "geometry": {"type": "Point", "coordinates": [3.0429756448, 50.6326805368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f3b99f9e5c843011ec50834f85892752d3072e", "fields": {"nom_de_la_commune": "CLAIRFAYTS", "libell_d_acheminement": "CLAIRFAYTS", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59148"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7f7adef7c484dc684c7849f448f9e796a6b35f", "fields": {"nom_de_la_commune": "CLARY", "libell_d_acheminement": "CLARY", "code_postal": "59225", "coordonnees_gps": [50.0767179455, 3.40307595775], "code_commune_insee": "59149"}, "geometry": {"type": "Point", "coordinates": [3.40307595775, 50.0767179455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea625b60b13ce7014366f03ec99ad1ff194e4953", "fields": {"nom_de_la_commune": "COLLERET", "libell_d_acheminement": "COLLERET", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59151"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4424a61082def78257b25d6e24055cf937837d88", "fields": {"nom_de_la_commune": "COMINES", "libell_d_acheminement": "COMINES", "code_postal": "59560", "coordonnees_gps": [50.7487126349, 3.00528149313], "code_commune_insee": "59152"}, "geometry": {"type": "Point", "coordinates": [3.00528149313, 50.7487126349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db1fc62c64304b3aee3cdff4217c315fb2c6c5f", "fields": {"nom_de_la_commune": "CRAYWICK", "libell_d_acheminement": "CRAYWICK", "code_postal": "59279", "coordonnees_gps": [51.0134149737, 2.28028859027], "code_commune_insee": "59159"}, "geometry": {"type": "Point", "coordinates": [2.28028859027, 51.0134149737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "259a746b94cb7d4689b63a4d74d7cf33579f0979", "fields": {"nom_de_la_commune": "CRESPIN", "libell_d_acheminement": "CRESPIN", "code_postal": "59154", "coordonnees_gps": [50.4218005346, 3.65167545746], "code_commune_insee": "59160"}, "geometry": {"type": "Point", "coordinates": [3.65167545746, 50.4218005346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6df67371b94bb7949ceb9dd138399a16454be5e", "fields": {"nom_de_la_commune": "DAMOUSIES", "libell_d_acheminement": "DAMOUSIES", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59169"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "509578f03bea1f9068d8008ef91e513b5ee0ee17", "fields": {"nom_de_la_commune": "DIMECHAUX", "libell_d_acheminement": "DIMECHAUX", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59174"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f4ce7c787e7aa52c60f37978a361f587febd40c", "fields": {"nom_de_la_commune": "DOIGNIES", "libell_d_acheminement": "DOIGNIES", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59176"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "859476ad0453e84b4cea2636e9b6f3aec5bcfe38", "fields": {"code_postal": "59500", "code_commune_insee": "59178", "libell_d_acheminement": "DOUAI", "ligne_5": "DORIGNIES", "nom_de_la_commune": "DOUAI", "coordonnees_gps": [50.382032933, 3.09129729986]}, "geometry": {"type": "Point", "coordinates": [3.09129729986, 50.382032933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97184a3d30d2a7e25cdedcf73ba412e35f541cbb", "fields": {"nom_de_la_commune": "ECLAIBES", "libell_d_acheminement": "ECLAIBES", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59187"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8bca446eb6b2931e3912dc874b059c477964ba", "fields": {"nom_de_la_commune": "EMERCHICOURT", "libell_d_acheminement": "EMERCHICOURT", "code_postal": "59580", "coordonnees_gps": [50.322452087, 3.25533634496], "code_commune_insee": "59192"}, "geometry": {"type": "Point", "coordinates": [3.25533634496, 50.322452087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f7a1f7feb5d356a439ed77a4250776d04db11e", "fields": {"nom_de_la_commune": "EPPE SAUVAGE", "libell_d_acheminement": "EPPE SAUVAGE", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59198"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5467667cf81ab7e03ca4a3dcc514e1d40db0488", "fields": {"nom_de_la_commune": "ERQUINGHEM LE SEC", "libell_d_acheminement": "ERQUINGHEM LE SEC", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59201"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ecc10cb0f7a4406705a045d038cbc5dbc882ed8", "fields": {"nom_de_la_commune": "ERQUINGHEM LYS", "libell_d_acheminement": "ERQUINGHEM LYS", "code_postal": "59193", "coordonnees_gps": [50.6702564088, 2.84077626226], "code_commune_insee": "59202"}, "geometry": {"type": "Point", "coordinates": [2.84077626226, 50.6702564088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602adbe357f423d36e039b59c2572c2be509843c", "fields": {"nom_de_la_commune": "FERIN", "libell_d_acheminement": "FERIN", "code_postal": "59169", "coordonnees_gps": [50.3188008385, 3.12364772716], "code_commune_insee": "59228"}, "geometry": {"type": "Point", "coordinates": [3.12364772716, 50.3188008385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5bf17789d630eff84748cd577d07f3d8375f6ff", "fields": {"nom_de_la_commune": "LA FLAMENGRIE", "libell_d_acheminement": "LA FLAMENGRIE", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59232"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b4abc8e6e7c4a64bcc89eeb8c109d08f887be2", "fields": {"nom_de_la_commune": "FLINES LES MORTAGNE", "libell_d_acheminement": "FLINES LES MORTAGNE", "code_postal": "59158", "coordonnees_gps": [50.504294197, 3.46542876217], "code_commune_insee": "59238"}, "geometry": {"type": "Point", "coordinates": [3.46542876217, 50.504294197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f72b641a48f0107fdc4f5d10b9d70bfe8735623", "fields": {"nom_de_la_commune": "FONTAINE AU PIRE", "libell_d_acheminement": "FONTAINE AU PIRE", "code_postal": "59157", "coordonnees_gps": [50.1316078184, 3.37201243969], "code_commune_insee": "59243"}, "geometry": {"type": "Point", "coordinates": [3.37201243969, 50.1316078184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ab2d616d75e59dd07f973eb89c0ceb711f8baf", "fields": {"nom_de_la_commune": "FRESNES SUR ESCAUT", "libell_d_acheminement": "FRESNES SUR ESCAUT", "code_postal": "59970", "coordonnees_gps": [50.4323433177, 3.57545124255], "code_commune_insee": "59253"}, "geometry": {"type": "Point", "coordinates": [3.57545124255, 50.4323433177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "059ad10f678f75f14b79188e83bd182de05a7e48", "fields": {"code_postal": "59122", "code_commune_insee": "59260", "libell_d_acheminement": "GHYVELDE", "ligne_5": "LES MOERES", "nom_de_la_commune": "GHYVELDE", "coordonnees_gps": [50.9782311457, 2.55726472129]}, "geometry": {"type": "Point", "coordinates": [2.55726472129, 50.9782311457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e3f59f698bccb85eef5477e64a2e61a393245e", "fields": {"nom_de_la_commune": "GOMMEGNIES", "libell_d_acheminement": "GOMMEGNIES", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59265"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41d3c48a58a163145fdf89353abbfba0f870f83b", "fields": {"nom_de_la_commune": "GRAND FAYT", "libell_d_acheminement": "GRAND FAYT", "code_postal": "59244", "coordonnees_gps": [50.0896425348, 3.83023391682], "code_commune_insee": "59270"}, "geometry": {"type": "Point", "coordinates": [3.83023391682, 50.0896425348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9ad2e2c77fae2a9439da25da40b450b2915c89a", "fields": {"nom_de_la_commune": "HASNON", "libell_d_acheminement": "HASNON", "code_postal": "59178", "coordonnees_gps": [50.4208694129, 3.3753580668], "code_commune_insee": "59284"}, "geometry": {"type": "Point", "coordinates": [3.3753580668, 50.4208694129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ac762a2963a93ce62bb5563ec0039daa66f7d8", "fields": {"nom_de_la_commune": "HASPRES", "libell_d_acheminement": "HASPRES", "code_postal": "59198", "coordonnees_gps": [50.2646016218, 3.41120751388], "code_commune_insee": "59285"}, "geometry": {"type": "Point", "coordinates": [3.41120751388, 50.2646016218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "302375f36baca4185cce81779fb97469b0366e50", "fields": {"nom_de_la_commune": "HAUSSY", "libell_d_acheminement": "HAUSSY", "code_postal": "59294", "coordonnees_gps": [50.2223682652, 3.47941651772], "code_commune_insee": "59289"}, "geometry": {"type": "Point", "coordinates": [3.47941651772, 50.2223682652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce9f40e72078e88fcf44a343eb932ed9edc4cb10", "fields": {"nom_de_la_commune": "HAUT LIEU", "libell_d_acheminement": "HAUT LIEU", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59290"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20795fde20cde0e36358cebec3610c98408418f8", "fields": {"nom_de_la_commune": "HAYNECOURT", "libell_d_acheminement": "HAYNECOURT", "code_postal": "59268", "coordonnees_gps": [50.2255437815, 3.19481961843], "code_commune_insee": "59294"}, "geometry": {"type": "Point", "coordinates": [3.19481961843, 50.2255437815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1eec77d013dee93671670ae7bfdd2ac9983b2d", "fields": {"nom_de_la_commune": "HAZEBROUCK", "libell_d_acheminement": "HAZEBROUCK", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59295"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4c2484b6d527e438cb9e30cdf78eab9f60a002", "fields": {"nom_de_la_commune": "HELESMES", "libell_d_acheminement": "HELESMES", "code_postal": "59171", "coordonnees_gps": [50.3694204804, 3.33834111863], "code_commune_insee": "59297"}, "geometry": {"type": "Point", "coordinates": [3.33834111863, 50.3694204804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a867e757facbda4acbb268b13a4cb6d8e00d011", "fields": {"nom_de_la_commune": "HERIN", "libell_d_acheminement": "HERIN", "code_postal": "59195", "coordonnees_gps": [50.3552982371, 3.44360395869], "code_commune_insee": "59302"}, "geometry": {"type": "Point", "coordinates": [3.44360395869, 50.3552982371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "058324648c405c3bb83ccdd1ff510e13e640a550", "fields": {"nom_de_la_commune": "HERLIES", "libell_d_acheminement": "HERLIES", "code_postal": "59134", "coordonnees_gps": [50.592822459, 2.88189663466], "code_commune_insee": "59303"}, "geometry": {"type": "Point", "coordinates": [2.88189663466, 50.592822459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e802734be740c3035d08b9cfe91fad028d42d2", "fields": {"nom_de_la_commune": "HOLQUE", "libell_d_acheminement": "HOLQUE", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59307"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f482fb97d5fe5064ff8dc32b6fa490e6f12efb11", "fields": {"nom_de_la_commune": "HONDEGHEM", "libell_d_acheminement": "HONDEGHEM", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59308"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "756d0476e27b1a3e75aba14ef7e3969a179ea5d3", "fields": {"nom_de_la_commune": "HONNECHY", "libell_d_acheminement": "HONNECHY", "code_postal": "59980", "coordonnees_gps": [50.0845778116, 3.46500822238], "code_commune_insee": "59311"}, "geometry": {"type": "Point", "coordinates": [3.46500822238, 50.0845778116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb76f79787a5067925abfe4ac7fd951a17196980", "fields": {"nom_de_la_commune": "HOUTKERQUE", "libell_d_acheminement": "HOUTKERQUE", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59318"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aec27fca089f941f1083534b44f5a2455d8c6d68", "fields": {"nom_de_la_commune": "LANDRECIES", "libell_d_acheminement": "LANDRECIES", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59331"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bbf36d74bca8baae7d4049dac4cf7531f52dc19", "fields": {"nom_de_la_commune": "LECELLES", "libell_d_acheminement": "LECELLES", "code_postal": "59226", "coordonnees_gps": [50.480222772, 3.38511026562], "code_commune_insee": "59335"}, "geometry": {"type": "Point", "coordinates": [3.38511026562, 50.480222772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "990a75d781210201c199e622c54a254691d9caf4", "fields": {"nom_de_la_commune": "LEFFRINCKOUCKE", "libell_d_acheminement": "LEFFRINCKOUCKE", "code_postal": "59495", "coordonnees_gps": [51.0480700987, 2.45495927922], "code_commune_insee": "59340"}, "geometry": {"type": "Point", "coordinates": [2.45495927922, 51.0480700987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d938696f93eddc3756906f8ba3002003b864f14e", "fields": {"nom_de_la_commune": "LEWARDE", "libell_d_acheminement": "LEWARDE", "code_postal": "59287", "coordonnees_gps": [50.3426420903, 3.15765827403], "code_commune_insee": "59345"}, "geometry": {"type": "Point", "coordinates": [3.15765827403, 50.3426420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b7be0b9ebcf6729eedbacb2522939980df5d53e", "fields": {"nom_de_la_commune": "LEZENNES", "libell_d_acheminement": "LEZENNES", "code_postal": "59260", "coordonnees_gps": [50.6305664, 3.05173534019], "code_commune_insee": "59346"}, "geometry": {"type": "Point", "coordinates": [3.05173534019, 50.6305664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b4ab5376d01b3c9008b3a92633fb00a0cd0700", "fields": {"nom_de_la_commune": "LIESSIES", "libell_d_acheminement": "LIESSIES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59347"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f68f0a68e94f82b84d9778acb8e053527d08626", "fields": {"nom_de_la_commune": "LILLE", "libell_d_acheminement": "LILLE", "code_postal": "59000", "coordonnees_gps": [50.6319195692, 3.04708687186], "code_commune_insee": "59350"}, "geometry": {"type": "Point", "coordinates": [3.04708687186, 50.6319195692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85497828ee09604d48c97c30910ada52e30330ae", "fields": {"code_postal": "59260", "code_commune_insee": "59350", "libell_d_acheminement": "LILLE", "ligne_5": "HELLEMMES LILLE", "nom_de_la_commune": "LILLE", "coordonnees_gps": [50.6305664, 3.05173534019]}, "geometry": {"type": "Point", "coordinates": [3.05173534019, 50.6305664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b7dd02cd6e7122788b26a12bfd8b712675116b8", "fields": {"code_postal": "59777", "code_commune_insee": "59350", "libell_d_acheminement": "LILLE", "ligne_5": "EURALILLE", "nom_de_la_commune": "LILLE", "coordonnees_gps": [50.6319195692, 3.04708687186]}, "geometry": {"type": "Point", "coordinates": [3.04708687186, 50.6319195692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b975292455afd7db4422bd799d5b8819d536c1ce", "fields": {"nom_de_la_commune": "LILLE", "libell_d_acheminement": "LILLE", "code_postal": "59800", "coordonnees_gps": [50.6319195692, 3.04708687186], "code_commune_insee": "59350"}, "geometry": {"type": "Point", "coordinates": [3.04708687186, 50.6319195692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bcb5cc9864e9c3c36699395049f278eec49c2b1", "fields": {"nom_de_la_commune": "LOMPRET", "libell_d_acheminement": "LOMPRET", "code_postal": "59840", "coordonnees_gps": [50.6641115451, 2.96705892746], "code_commune_insee": "59356"}, "geometry": {"type": "Point", "coordinates": [2.96705892746, 50.6641115451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67029dcc781a7e8f53afa0ca17085683d5d66006", "fields": {"nom_de_la_commune": "LOOBERGHE", "libell_d_acheminement": "LOOBERGHE", "code_postal": "59630", "coordonnees_gps": [50.9241353596, 2.23327395744], "code_commune_insee": "59358"}, "geometry": {"type": "Point", "coordinates": [2.23327395744, 50.9241353596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b03296d51d30fcde450239d143be8ac4889c8b6", "fields": {"nom_de_la_commune": "LOON PLAGE", "libell_d_acheminement": "LOON PLAGE", "code_postal": "59279", "coordonnees_gps": [51.0134149737, 2.28028859027], "code_commune_insee": "59359"}, "geometry": {"type": "Point", "coordinates": [2.28028859027, 51.0134149737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88bee0e0cccab4d6bdc2143554d22f6dbd927635", "fields": {"nom_de_la_commune": "LYS LEZ LANNOY", "libell_d_acheminement": "LYS LEZ LANNOY", "code_postal": "59390", "coordonnees_gps": [50.657732592, 3.22516990677], "code_commune_insee": "59367"}, "geometry": {"type": "Point", "coordinates": [3.22516990677, 50.657732592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37afc98373cd01b72907176ad806273902a99e7", "fields": {"nom_de_la_commune": "MALINCOURT", "libell_d_acheminement": "MALINCOURT", "code_postal": "59127", "coordonnees_gps": [50.0669008118, 3.33260202285], "code_commune_insee": "59372"}, "geometry": {"type": "Point", "coordinates": [3.33260202285, 50.0669008118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cdf6c4450d51fc8daff4b13d9c5c74ea9172393", "fields": {"nom_de_la_commune": "MARCHIENNES", "libell_d_acheminement": "MARCHIENNES", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59375"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de804e821f9b0be5f3c5493314b392fe6dbcd4b1", "fields": {"nom_de_la_commune": "MARCOING", "libell_d_acheminement": "MARCOING", "code_postal": "59159", "coordonnees_gps": [50.1152893393, 3.16124259033], "code_commune_insee": "59377"}, "geometry": {"type": "Point", "coordinates": [3.16124259033, 50.1152893393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e12c071f1a0a6e6283a172e2e83c12e1f9c99fd", "fields": {"nom_de_la_commune": "MARQUETTE EN OSTREVANT", "libell_d_acheminement": "MARQUETTE EN OSTREVANT", "code_postal": "59252", "coordonnees_gps": [50.2842668858, 3.25374088253], "code_commune_insee": "59387"}, "geometry": {"type": "Point", "coordinates": [3.25374088253, 50.2842668858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb5f777e4709c452035a93f7450c7f3d4efabe8b", "fields": {"nom_de_la_commune": "MASNY", "libell_d_acheminement": "MASNY", "code_postal": "59176", "coordonnees_gps": [50.3439205555, 3.20295217014], "code_commune_insee": "59390"}, "geometry": {"type": "Point", "coordinates": [3.20295217014, 50.3439205555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f194dee7be4a5f1adce9969ef1e043f65d1b6c6", "fields": {"nom_de_la_commune": "MAUROIS", "libell_d_acheminement": "MAUROIS", "code_postal": "59980", "coordonnees_gps": [50.0845778116, 3.46500822238], "code_commune_insee": "59394"}, "geometry": {"type": "Point", "coordinates": [3.46500822238, 50.0845778116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63b655ded6c6e4c57e4e48e993a21efea378200", "fields": {"nom_de_la_commune": "MERVILLE", "libell_d_acheminement": "MERVILLE", "code_postal": "59660", "coordonnees_gps": [50.6440201212, 2.61424433004], "code_commune_insee": "59400"}, "geometry": {"type": "Point", "coordinates": [2.61424433004, 50.6440201212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4868a91ed4edf5cc30fa50960cb74a77ce41e9ab", "fields": {"nom_de_la_commune": "METEREN", "libell_d_acheminement": "METEREN", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59401"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ec4b4b60f61cd3231e8b2f318dbd2f785787b80", "fields": {"nom_de_la_commune": "MONS EN PEVELE", "libell_d_acheminement": "MONS EN PEVELE", "code_postal": "59246", "coordonnees_gps": [50.4819044324, 3.10379562947], "code_commune_insee": "59411"}, "geometry": {"type": "Point", "coordinates": [3.10379562947, 50.4819044324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d4695e45a5aa9c7f3d791ca217ff5fb662eb36", "fields": {"nom_de_la_commune": "MONTIGNY EN OSTREVENT", "libell_d_acheminement": "MONTIGNY EN OSTREVENT", "code_postal": "59182", "coordonnees_gps": [50.3632091187, 3.17800560697], "code_commune_insee": "59414"}, "geometry": {"type": "Point", "coordinates": [3.17800560697, 50.3632091187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c57a8f9fd868e34b4fbfc1cfdaecabf26c12fbc", "fields": {"nom_de_la_commune": "NEUF MESNIL", "libell_d_acheminement": "NEUF MESNIL", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59424"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70636df89e530638ec1e086759aa69a699dffe83", "fields": {"nom_de_la_commune": "BOISSEAUX", "libell_d_acheminement": "BOISSEAUX", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45037"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa7518a50d0117093bee7dca801ee48c384542af", "fields": {"nom_de_la_commune": "BONDAROY", "libell_d_acheminement": "BONDAROY", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45038"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aa1a94489bc771afb973174120b374ce41dec67", "fields": {"nom_de_la_commune": "BONNY SUR LOIRE", "libell_d_acheminement": "BONNY SUR LOIRE", "code_postal": "45420", "coordonnees_gps": [47.6034837022, 2.88243398662], "code_commune_insee": "45040"}, "geometry": {"type": "Point", "coordinates": [2.88243398662, 47.6034837022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4bf823c8b027ace960b04232fbddfbcacd42b5c", "fields": {"nom_de_la_commune": "BOUZONVILLE AUX BOIS", "libell_d_acheminement": "BOUZONVILLE AUX BOIS", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45047"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95df8a7c5aad300820db31918c557507136db361", "fields": {"nom_de_la_commune": "BRAY EN VAL", "libell_d_acheminement": "BRAY EN VAL", "code_postal": "45460", "coordonnees_gps": [47.835810766, 2.38912953908], "code_commune_insee": "45051"}, "geometry": {"type": "Point", "coordinates": [2.38912953908, 47.835810766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90bf54d3be9aed92e935dd03a1d6da39d26f2791", "fields": {"nom_de_la_commune": "BUCY LE ROI", "libell_d_acheminement": "BUCY LE ROI", "code_postal": "45410", "coordonnees_gps": [48.0813211933, 1.88378056007], "code_commune_insee": "45058"}, "geometry": {"type": "Point", "coordinates": [1.88378056007, 48.0813211933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99c5ca6ba6b97de008eebd2548d3d7bf7d6c27c5", "fields": {"nom_de_la_commune": "CERCOTTES", "libell_d_acheminement": "CERCOTTES", "code_postal": "45520", "coordonnees_gps": [48.0106833156, 1.86938159284], "code_commune_insee": "45062"}, "geometry": {"type": "Point", "coordinates": [1.86938159284, 48.0106833156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42b86ac3ee9ddeca93126105880bd2e0b6123230", "fields": {"nom_de_la_commune": "CHAINGY", "libell_d_acheminement": "CHAINGY", "code_postal": "45380", "coordonnees_gps": [47.8904899207, 1.78907704146], "code_commune_insee": "45067"}, "geometry": {"type": "Point", "coordinates": [1.78907704146, 47.8904899207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "801ee3faea183b4997190a522fde06480d43f9e6", "fields": {"nom_de_la_commune": "CHALETTE SUR LOING", "libell_d_acheminement": "CHALETTE SUR LOING", "code_postal": "45120", "coordonnees_gps": [48.0454419877, 2.71939290754], "code_commune_insee": "45068"}, "geometry": {"type": "Point", "coordinates": [2.71939290754, 48.0454419877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b6a8fa4d3b79f5aeb7409ad5e54574e7a85b5d4", "fields": {"nom_de_la_commune": "LA CHAPELLE ST SEPULCRE", "libell_d_acheminement": "LA CHAPELLE ST SEPULCRE", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45076"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f3585aca645b72ab3b2f16df867bb27d2a347b", "fields": {"nom_de_la_commune": "CHARSONVILLE", "libell_d_acheminement": "CHARSONVILLE", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45081"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7803ada944377a3ee4ce8235a87d387013b1bd21", "fields": {"nom_de_la_commune": "CHATEAU RENARD", "libell_d_acheminement": "CHATEAU RENARD", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45083"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e6e40752afe1b9d2828ff9b5ea7312593ffabaa", "fields": {"nom_de_la_commune": "CHATILLON COLIGNY", "libell_d_acheminement": "CHATILLON COLIGNY", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45085"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3cde660fda103f5b2115c4a83aeba59e35dc275", "fields": {"nom_de_la_commune": "CHATILLON LE ROI", "libell_d_acheminement": "CHATILLON LE ROI", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45086"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c48a6f0bf38a5511404127d4cce6c96c54d1fd", "fields": {"nom_de_la_commune": "CHEVANNES", "libell_d_acheminement": "CHEVANNES", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45091"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "572540cbe2e57c7b904e1ce36f32cf3141460608", "fields": {"nom_de_la_commune": "CHEVILLON SUR HUILLARD", "libell_d_acheminement": "CHEVILLON SUR HUILLARD", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45092"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a54aea95c9ad33215eb7f85d12321ab05d02ea5", "fields": {"nom_de_la_commune": "CHEVRY SOUS LE BIGNON", "libell_d_acheminement": "CHEVRY SOUS LE BIGNON", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45094"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21d9799134de3c41d928f685ca2287019c1efb92", "fields": {"nom_de_la_commune": "COMBLEUX", "libell_d_acheminement": "COMBLEUX", "code_postal": "45800", "coordonnees_gps": [47.9164571685, 1.97410766394], "code_commune_insee": "45100"}, "geometry": {"type": "Point", "coordinates": [1.97410766394, 47.9164571685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd94751b904de9bec5efa686c01dbc6b29b7be3", "fields": {"nom_de_la_commune": "CORBEILLES", "libell_d_acheminement": "CORBEILLES", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45103"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769436cd91993fcaeb82ab28856decbef2739bb8", "fields": {"nom_de_la_commune": "COULLONS", "libell_d_acheminement": "COULLONS", "code_postal": "45720", "coordonnees_gps": [47.6176666982, 2.50600758489], "code_commune_insee": "45108"}, "geometry": {"type": "Point", "coordinates": [2.50600758489, 47.6176666982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d4bcc4ebc08bbd3f220e76169bacf735610e51", "fields": {"nom_de_la_commune": "LA COUR MARIGNY", "libell_d_acheminement": "LA COUR MARIGNY", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45112"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b50ad3c002943f2f5766bf7b7bed52c380d92486", "fields": {"nom_de_la_commune": "COURTEMPIERRE", "libell_d_acheminement": "COURTEMPIERRE", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45114"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf40005fb752eb5233daea63f93e901053d44637", "fields": {"code_postal": "45170", "code_commune_insee": "45118", "libell_d_acheminement": "CROTTES EN PITHIVERAIS", "ligne_5": "TEILLAY ST BENOIT", "nom_de_la_commune": "CROTTES EN PITHIVERAIS", "coordonnees_gps": [48.0809443986, 2.05747366676]}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "287c3776834c75e18da519043a57a2a922522b8a", "fields": {"nom_de_la_commune": "DADONVILLE", "libell_d_acheminement": "DADONVILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45119"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c56021b4121c99324d79fdd96efd1d3580ac9a8c", "fields": {"nom_de_la_commune": "DAMMARIE EN PUISAYE", "libell_d_acheminement": "DAMMARIE EN PUISAYE", "code_postal": "45420", "coordonnees_gps": [47.6034837022, 2.88243398662], "code_commune_insee": "45120"}, "geometry": {"type": "Point", "coordinates": [2.88243398662, 47.6034837022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca88528a6370d60fb930f4a6fe456d629f9bfbd", "fields": {"code_postal": "45220", "code_commune_insee": "45129", "libell_d_acheminement": "DOUCHY MONTCORBON", "ligne_5": "MONTCORBON", "nom_de_la_commune": "DOUCHY MONTCORBON", "coordonnees_gps": [47.9445707894, 2.94063509683]}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "183a9be83d5fdae577b99e952fe6cc6662dcd091", "fields": {"nom_de_la_commune": "DRY", "libell_d_acheminement": "DRY", "code_postal": "45370", "coordonnees_gps": [47.7881448232, 1.78614777532], "code_commune_insee": "45130"}, "geometry": {"type": "Point", "coordinates": [1.78614777532, 47.7881448232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dde6b1d73811d867ee8a543604683a3fd351adf", "fields": {"nom_de_la_commune": "EGRY", "libell_d_acheminement": "EGRY", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45132"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceb38bff93acbc06b11a1252d068a6bd6a712140", "fields": {"nom_de_la_commune": "ERCEVILLE", "libell_d_acheminement": "ERCEVILLE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45135"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec0e3d5b99591a6aa5cf56594eab5705ac11cc42", "fields": {"nom_de_la_commune": "ERVAUVILLE", "libell_d_acheminement": "ERVAUVILLE", "code_postal": "45320", "coordonnees_gps": [48.0463130644, 3.01780722216], "code_commune_insee": "45136"}, "geometry": {"type": "Point", "coordinates": [3.01780722216, 48.0463130644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e15604b7303af9160737054a7c9885275370b5f6", "fields": {"nom_de_la_commune": "ESCRENNES", "libell_d_acheminement": "ESCRENNES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45137"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87bdc58bde9955f3732ea34b950420345b1f312", "fields": {"nom_de_la_commune": "FAVERELLES", "libell_d_acheminement": "FAVERELLES", "code_postal": "45420", "coordonnees_gps": [47.6034837022, 2.88243398662], "code_commune_insee": "45141"}, "geometry": {"type": "Point", "coordinates": [2.88243398662, 47.6034837022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec4f19d85f3002d5f31941d71baf8abd239ee795", "fields": {"nom_de_la_commune": "FEROLLES", "libell_d_acheminement": "FEROLLES", "code_postal": "45150", "coordonnees_gps": [47.8403868287, 2.12671311034], "code_commune_insee": "45144"}, "geometry": {"type": "Point", "coordinates": [2.12671311034, 47.8403868287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2040ad8616d7cea676d2df6f85560f3a2e3faafc", "fields": {"nom_de_la_commune": "FLEURY LES AUBRAIS", "libell_d_acheminement": "FLEURY LES AUBRAIS", "code_postal": "45400", "coordonnees_gps": [47.9619656993, 1.95515679115], "code_commune_insee": "45147"}, "geometry": {"type": "Point", "coordinates": [1.95515679115, 47.9619656993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "464a10993f986be3bff194d1227c0bd987c63295", "fields": {"nom_de_la_commune": "FOUCHEROLLES", "libell_d_acheminement": "FOUCHEROLLES", "code_postal": "45320", "coordonnees_gps": [48.0463130644, 3.01780722216], "code_commune_insee": "45149"}, "geometry": {"type": "Point", "coordinates": [3.01780722216, 48.0463130644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d43e2935aedf100f47d9855369c24167cde11b", "fields": {"nom_de_la_commune": "GAUBERTIN", "libell_d_acheminement": "GAUBERTIN", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45151"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a53f1c337457fbb5dcf7623009b25ed7ef1dcc44", "fields": {"nom_de_la_commune": "GIEN", "libell_d_acheminement": "GIEN", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45155"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1135f4630805b4861445ce4735242c4002bac6b1", "fields": {"code_postal": "45500", "code_commune_insee": "45155", "libell_d_acheminement": "GIEN", "ligne_5": "ARRABLOY", "nom_de_la_commune": "GIEN", "coordonnees_gps": [47.669813444, 2.62052294278]}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0408069a90712aa18595e70f39fd62c82e457e24", "fields": {"nom_de_la_commune": "GIROLLES", "libell_d_acheminement": "GIROLLES", "code_postal": "45120", "coordonnees_gps": [48.0454419877, 2.71939290754], "code_commune_insee": "45156"}, "geometry": {"type": "Point", "coordinates": [2.71939290754, 48.0454419877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e2801044097377a38629d572b246a3f8282448e", "fields": {"nom_de_la_commune": "GRANGERMONT", "libell_d_acheminement": "GRANGERMONT", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45159"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04d98423bac7956fad5737a981132075d8872fe", "fields": {"nom_de_la_commune": "GY LES NONAINS", "libell_d_acheminement": "GY LES NONAINS", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45165"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a1e48e6c81237cbc5a5cb1025fd2adb52c53b0e", "fields": {"nom_de_la_commune": "INGRE", "libell_d_acheminement": "INGRE", "code_postal": "45140", "coordonnees_gps": [47.9387970361, 1.79888602843], "code_commune_insee": "45169"}, "geometry": {"type": "Point", "coordinates": [1.79888602843, 47.9387970361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d45306d1da6225b143e8f7ffd79c49fa94d643", "fields": {"nom_de_la_commune": "LANGESSE", "libell_d_acheminement": "LANGESSE", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45180"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d40033f71acdc5abd1ef1f4c2ba145e339dff853", "fields": {"nom_de_la_commune": "LION EN BEAUCE", "libell_d_acheminement": "LION EN BEAUCE", "code_postal": "45410", "coordonnees_gps": [48.0813211933, 1.88378056007], "code_commune_insee": "45183"}, "geometry": {"type": "Point", "coordinates": [1.88378056007, 48.0813211933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9af41f299dc88e86003baab0754961d7798f74", "fields": {"nom_de_la_commune": "LORCY", "libell_d_acheminement": "LORCY", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45186"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4154ccd29b8d4ba61c7d001a53086133696c9962", "fields": {"code_postal": "45330", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "NANGEVILLE", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.2827964198, 2.40158740828]}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6f08527cc0ee5b177efc81d61a11832eb0d5161", "fields": {"nom_de_la_commune": "MARCILLY EN VILLETTE", "libell_d_acheminement": "MARCILLY EN VILLETTE", "code_postal": "45240", "coordonnees_gps": [47.7166815663, 1.97527540747], "code_commune_insee": "45193"}, "geometry": {"type": "Point", "coordinates": [1.97527540747, 47.7166815663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416be7b55163a083000082f56bdfb15749067ae0", "fields": {"nom_de_la_commune": "MERINVILLE", "libell_d_acheminement": "MERINVILLE", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45201"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9759f0e19e4df94f7c64aa7f69c9bcf5a715ba7", "fields": {"nom_de_la_commune": "MEZIERES EN GATINAIS", "libell_d_acheminement": "MEZIERES EN GATINAIS", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45205"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033d25fffb5b413e57a5c0fbaae687bea94f1e45", "fields": {"nom_de_la_commune": "MONTBARROIS", "libell_d_acheminement": "MONTBARROIS", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45209"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d985e25ef835b3b9c3bd2283ea5c6f39fcd3838", "fields": {"nom_de_la_commune": "MONTCRESSON", "libell_d_acheminement": "MONTCRESSON", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45212"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d97d6e00a56e0836788fceb8b8bb3146ab7adf", "fields": {"nom_de_la_commune": "LE MOULINET SUR SOLIN", "libell_d_acheminement": "LE MOULINET SUR SOLIN", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45218"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bbfcfaaadcfa76eed9ef17c3c2e0cd08a615954", "fields": {"nom_de_la_commune": "LA NEUVILLE SUR ESSONNE", "libell_d_acheminement": "LA NEUVILLE SUR ESSONNE", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45225"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a63855d63978ac05e85481071ca24abec00ac2d", "fields": {"nom_de_la_commune": "NEUVY EN SULLIAS", "libell_d_acheminement": "NEUVY EN SULLIAS", "code_postal": "45510", "coordonnees_gps": [47.7639996935, 2.18590511935], "code_commune_insee": "45226"}, "geometry": {"type": "Point", "coordinates": [2.18590511935, 47.7639996935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93fa4519f995608dcc6249fcc0727b5d426e8e6", "fields": {"nom_de_la_commune": "OISON", "libell_d_acheminement": "OISON", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45231"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef081b27799a9988fd82f9fe3934b6556b0325db", "fields": {"nom_de_la_commune": "ORLEANS", "libell_d_acheminement": "ORLEANS", "code_postal": "45000", "coordonnees_gps": [47.8826248233, 1.91635582903], "code_commune_insee": "45234"}, "geometry": {"type": "Point", "coordinates": [1.91635582903, 47.8826248233]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee874a4ab13487c54c2c33b3c960a32100854c9", "fields": {"nom_de_la_commune": "OUTARVILLE", "libell_d_acheminement": "OUTARVILLE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45240"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a45a4c97e182e1c6f70d7687b08ab1cbda23fff2", "fields": {"nom_de_la_commune": "OUZOUER DES CHAMPS", "libell_d_acheminement": "OUZOUER DES CHAMPS", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45242"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb55763cb89cd59f055e0573e4ffeccc0d9caf9", "fields": {"nom_de_la_commune": "PREFONTAINES", "libell_d_acheminement": "PREFONTAINES", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45255"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede1a4464ac6b25d1206941692e3b7b8b19cfdb4", "fields": {"nom_de_la_commune": "ST CYR EN VAL", "libell_d_acheminement": "ST CYR EN VAL", "code_postal": "45590", "coordonnees_gps": [47.8147392443, 1.95993704937], "code_commune_insee": "45272"}, "geometry": {"type": "Point", "coordinates": [1.95993704937, 47.8147392443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e507965475b46aa174e79ec6a3ba2e28be9210", "fields": {"nom_de_la_commune": "SOUGY", "libell_d_acheminement": "SOUGY", "code_postal": "45410", "coordonnees_gps": [48.0813211933, 1.88378056007], "code_commune_insee": "45313"}, "geometry": {"type": "Point", "coordinates": [1.88378056007, 48.0813211933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3273ddc11206878c4dd933ee35dc16fb16ebb7", "fields": {"nom_de_la_commune": "TRAINOU", "libell_d_acheminement": "TRAINOU", "code_postal": "45470", "coordonnees_gps": [47.9894256341, 2.08205266737], "code_commune_insee": "45327"}, "geometry": {"type": "Point", "coordinates": [2.08205266737, 47.9894256341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4645be76927d0dce8658789679d3e221c120ca46", "fields": {"nom_de_la_commune": "VARENNES CHANGY", "libell_d_acheminement": "VARENNES CHANGY", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45332"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6800441f7d3ecee359370f9fe3c6321b4c0675d", "fields": {"nom_de_la_commune": "VILLENEUVE SUR CONIE", "libell_d_acheminement": "VILLENEUVE SUR CONIE", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45341"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0bd7deb0f8c2adf86f0d5f87e8f7041eb1716ef", "fields": {"nom_de_la_commune": "ALBAS", "libell_d_acheminement": "ALBAS", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46001"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b8864113edf2d5073c475646c90b428ec166dc3", "fields": {"nom_de_la_commune": "ALBIAC", "libell_d_acheminement": "ALBIAC", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46002"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "673b067dc82b9fde9603895b704c8df738efc6aa", "fields": {"nom_de_la_commune": "ALVIGNAC", "libell_d_acheminement": "ALVIGNAC", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46003"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d556eb20256806b91d49ee678395be3ed21891", "fields": {"nom_de_la_commune": "AUJOLS", "libell_d_acheminement": "AUJOLS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46010"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03940b6571927ec4b6fdbd800970c57caa4b0482", "fields": {"nom_de_la_commune": "AUTOIRE", "libell_d_acheminement": "AUTOIRE", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46011"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "066bf86139d42e51f5e47192fda16dd9ba04fef9", "fields": {"nom_de_la_commune": "AYNAC", "libell_d_acheminement": "AYNAC", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46012"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cca3c2f4d71feeddec5d1ca2e5ae748a66ca1979", "fields": {"nom_de_la_commune": "BAGNAC SUR CELE", "libell_d_acheminement": "BAGNAC SUR CELE", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46015"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "282bb3297a34e94a61d32b7601136bafea22b700", "fields": {"nom_de_la_commune": "BANNES", "libell_d_acheminement": "BANNES", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46017"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61196a3a068029036e95d3cf78b20dfa967695b8", "fields": {"nom_de_la_commune": "LE BASTIT", "libell_d_acheminement": "LE BASTIT", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46018"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1146ca0fd729035cb7307de466ac926d5fd226cb", "fields": {"nom_de_la_commune": "BEAUREGARD", "libell_d_acheminement": "BEAUREGARD", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46020"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e89956a65ae7c81aaddcd16a4ff16c25a7e4c35", "fields": {"nom_de_la_commune": "BEDUER", "libell_d_acheminement": "BEDUER", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46021"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbd0f6cece3c92e3592247d78f9e4edc662040f0", "fields": {"nom_de_la_commune": "LE BOULVE", "libell_d_acheminement": "LE BOULVE", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46033"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39d7d2fc331d1cb724eefcfb380a4469b06af58c", "fields": {"nom_de_la_commune": "CABRERETS", "libell_d_acheminement": "CABRERETS", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46040"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fdb6b49f21f6d99a3565f923faf53d7639ffa14", "fields": {"nom_de_la_commune": "CAHORS", "libell_d_acheminement": "CAHORS", "code_postal": "46000", "coordonnees_gps": [44.4507621185, 1.44053357922], "code_commune_insee": "46042"}, "geometry": {"type": "Point", "coordinates": [1.44053357922, 44.4507621185]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13d0153d7b575631ab21408f036745cf7e1c3944", "fields": {"nom_de_la_commune": "CANIAC DU CAUSSE", "libell_d_acheminement": "CANIAC DU CAUSSE", "code_postal": "46240", "coordonnees_gps": [44.6554006937, 1.59713194799], "code_commune_insee": "46054"}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "419a079e520e09f23de2e678e982c09d70bef01d", "fields": {"nom_de_la_commune": "CARNAC ROUFFIAC", "libell_d_acheminement": "CARNAC ROUFFIAC", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46060"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b71c3fa156e81ab24478d9955b8d7d5e33f2e1e", "fields": {"nom_de_la_commune": "CASTELFRANC", "libell_d_acheminement": "CASTELFRANC", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46062"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1a9be6d82c5ff44fe186e5e0c8638b0438ca6f", "fields": {"nom_de_la_commune": "CONCORES", "libell_d_acheminement": "CONCORES", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46072"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "238bd39448c7ce920104b40848e37079a0b1dd5d", "fields": {"nom_de_la_commune": "CREGOLS", "libell_d_acheminement": "CREGOLS", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46081"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15463fc62fe59cc303f6ad4dae32f57f6fb9e460", "fields": {"nom_de_la_commune": "FLAUJAC GARE", "libell_d_acheminement": "FLAUJAC GARE", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46104"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dae0793c24197d6b3d8d1088970ce431e14ed84", "fields": {"nom_de_la_commune": "FLOIRAC", "libell_d_acheminement": "FLOIRAC", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46106"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "359fe4470ee677a5523c33990c0e8fda61e94660", "fields": {"nom_de_la_commune": "FOURMAGNAC", "libell_d_acheminement": "FOURMAGNAC", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46111"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0e3952451b0bb20cd4c2f7a7e9e8c2b938daa0b", "fields": {"nom_de_la_commune": "GINDOU", "libell_d_acheminement": "GINDOU", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46120"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ceaa4d655b12298141746e0358d3442b9c82220", "fields": {"nom_de_la_commune": "GRAMAT", "libell_d_acheminement": "GRAMAT", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46128"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007d013661b361e43364554cc6d65018225402eb", "fields": {"nom_de_la_commune": "GREZELS", "libell_d_acheminement": "GREZELS", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46130"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293eef83944f9617db4ba88a97bda5b3bef71b7a", "fields": {"nom_de_la_commune": "LABASTIDE DU HAUT MONT", "libell_d_acheminement": "LABASTIDE DU HAUT MONT", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46135"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "813c0197e6cc1d9704573c57d7170b09a5687554", "fields": {"nom_de_la_commune": "LANZAC", "libell_d_acheminement": "LANZAC", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46153"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904fdeb47159905e092aca2871ab1f30fbbad673", "fields": {"nom_de_la_commune": "LEOBARD", "libell_d_acheminement": "LEOBARD", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46169"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2377481cca4bd938bb7413301ec164b5dd761633", "fields": {"nom_de_la_commune": "LOUPIAC", "libell_d_acheminement": "LOUPIAC", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46178"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5797d1c08fa648e92b09bbd22dfd2f8d5847fcba", "fields": {"nom_de_la_commune": "MARCILHAC SUR CELE", "libell_d_acheminement": "MARCILHAC SUR CELE", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46183"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b6630cf9e852c1a02f2139274f5e3b35d07fde8", "fields": {"nom_de_la_commune": "MASCLAT", "libell_d_acheminement": "MASCLAT", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46186"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6743d4951bb21a32e711aeb784746ece9424acce", "fields": {"nom_de_la_commune": "MECHMONT", "libell_d_acheminement": "MECHMONT", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46190"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625b3d81583b2bfc3cf052b31a32d6395ae0d795", "fields": {"nom_de_la_commune": "MERCUES", "libell_d_acheminement": "MERCUES", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46191"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad13f0da7ce46206c86847775f9db3e35d3e9fe", "fields": {"nom_de_la_commune": "MIERS", "libell_d_acheminement": "MIERS", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46193"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f7e507c3a6cdff5ac42638c9a731f45c30e3267", "fields": {"code_postal": "46800", "code_commune_insee": "46201", "libell_d_acheminement": "MONTCUQ EN QUERCY BLANC", "ligne_5": "VALPRIONDE", "nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", "coordonnees_gps": [44.3585211768, 1.21527135512]}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c80121bdb4e81d80aa36d2e5d1ef6a246b9343", "fields": {"nom_de_la_commune": "NADILLAC", "libell_d_acheminement": "NADILLAC", "code_postal": "46360", "coordonnees_gps": [44.5788373248, 1.59698113973], "code_commune_insee": "46210"}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "755002eb7d71cd6f809f675e90b81bd29d918c34", "fields": {"nom_de_la_commune": "RYE", "libell_d_acheminement": "RYE", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39472"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1b8313a80fe906b072c93017dd7b147cd35628", "fields": {"code_postal": "39200", "code_commune_insee": "39478", "libell_d_acheminement": "ST CLAUDE", "ligne_5": "CHEVRY", "nom_de_la_commune": "ST CLAUDE", "coordonnees_gps": [46.412034572, 5.87063091649]}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3028bb93fefd8194cb335d8d733db5b0049346d1", "fields": {"code_postal": "39200", "code_commune_insee": "39478", "libell_d_acheminement": "ST CLAUDE", "ligne_5": "RANCHETTE", "nom_de_la_commune": "ST CLAUDE", "coordonnees_gps": [46.412034572, 5.87063091649]}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "317f05ea57b40301cffba72190ec1f3f1f718999", "fields": {"nom_de_la_commune": "ST CYR MONTMALIN", "libell_d_acheminement": "ST CYR MONTMALIN", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39479"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef47f2f9c137ddb71a73e561d6e0e1dab41b80c6", "fields": {"nom_de_la_commune": "ST LAMAIN", "libell_d_acheminement": "ST LAMAIN", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39486"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a3d11a0740a37d6276771764d8fb90919983124", "fields": {"nom_de_la_commune": "ST LUPICIN", "libell_d_acheminement": "ST LUPICIN", "code_postal": "39170", "coordonnees_gps": [46.4122748444, 5.79038088139], "code_commune_insee": "39491"}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c905aa36e1454a59c661eda1e4b78aa1231bb65", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39494"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9846ae06629335466b320b915712a908843997e", "fields": {"nom_de_la_commune": "SAIZENAY", "libell_d_acheminement": "SAIZENAY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39497"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de699550089a63701f3887c3c1c94e32dcc91100", "fields": {"nom_de_la_commune": "SALANS", "libell_d_acheminement": "SALANS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39498"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1eaa835a3bfe44a10bbb7cae6aab68e408173e6", "fields": {"nom_de_la_commune": "SALIGNEY", "libell_d_acheminement": "SALIGNEY", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39499"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8f08b5603c5ae64ecd696665525a5cd0c9234b1", "fields": {"nom_de_la_commune": "SAVIGNA", "libell_d_acheminement": "SAVIGNA", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39506"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "877248d99325e5976ca260c14df801017c420592", "fields": {"nom_de_la_commune": "SERMANGE", "libell_d_acheminement": "SERMANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39513"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d833687141ab39d04b4c753f3e905d6f0304e755", "fields": {"nom_de_la_commune": "SERRE LES MOULIERES", "libell_d_acheminement": "SERRE LES MOULIERES", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39514"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e15c29b6a40f9311e1c72ba89f3fe22cc08a081f", "fields": {"nom_de_la_commune": "SUPT", "libell_d_acheminement": "SUPT", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39522"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "294a53abc9a6a10ef3ebfaa7a518ff340b46cd94", "fields": {"nom_de_la_commune": "SYAM", "libell_d_acheminement": "SYAM", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39523"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b38aefa99af8f696de94f1dd46adcd9ff278d34", "fields": {"nom_de_la_commune": "VAUX LES ST CLAUDE", "libell_d_acheminement": "VAUX LES ST CLAUDE", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39547"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a303e8fb00c25167c89a3f04d085f958caab725a", "fields": {"nom_de_la_commune": "VAUX SUR POLIGNY", "libell_d_acheminement": "VAUX SUR POLIGNY", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39548"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96fe8973393fac170a8960ee375db0528802ce36", "fields": {"nom_de_la_commune": "LE VERNOIS", "libell_d_acheminement": "LE VERNOIS", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39553"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39a844b62e1e31e7868895f48a1dcd9fdf087e97", "fields": {"nom_de_la_commune": "VERTAMBOZ", "libell_d_acheminement": "VERTAMBOZ", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39556"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a7f32b64af089f0122be056ce145a4161a67b5", "fields": {"nom_de_la_commune": "VILLECHANTRIA", "libell_d_acheminement": "VILLECHANTRIA", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39564"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f09f3b7d14b476198839ad0f26a95da15431903", "fields": {"nom_de_la_commune": "VILLERSERINE", "libell_d_acheminement": "VILLERSERINE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39568"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "935346fedb9bb531c18ceb1379e1148cb211a0bf", "fields": {"nom_de_la_commune": "VILLETTE LES ARBOIS", "libell_d_acheminement": "VILLETTE LES ARBOIS", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39572"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "133f6a2f49c2d386378a183d15c0888c63738d5f", "fields": {"nom_de_la_commune": "VITREUX", "libell_d_acheminement": "VITREUX", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39581"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "766e7549e4b59165640aff114391b7ba0e3f8bb1", "fields": {"nom_de_la_commune": "VRIANGE", "libell_d_acheminement": "VRIANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39584"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a731a450069bb1f69fe7d158a2d90b4a1e9cf532", "fields": {"nom_de_la_commune": "AIRE SUR L ADOUR", "libell_d_acheminement": "AIRE SUR L ADOUR", "code_postal": "40800", "coordonnees_gps": [43.6902343376, -0.284055090083], "code_commune_insee": "40001"}, "geometry": {"type": "Point", "coordinates": [-0.284055090083, 43.6902343376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b3a3dfc489f744b385069908e793137ecfb0d81", "fields": {"nom_de_la_commune": "ANGOUME", "libell_d_acheminement": "ANGOUME", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40003"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1757037e739f9a4b7124de43f76b343338d95ee3", "fields": {"nom_de_la_commune": "ARGELOS", "libell_d_acheminement": "ARGELOS", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40007"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9a201f70e7649962ee1dae3a104e1aa5725e83", "fields": {"nom_de_la_commune": "ARTHEZ D ARMAGNAC", "libell_d_acheminement": "ARTHEZ D ARMAGNAC", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40013"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dba6429d843333e2180625762c4aecfcab22583", "fields": {"nom_de_la_commune": "ARX", "libell_d_acheminement": "ARX", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40015"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82f8b95e57119c1e4bbc20a139cd1b5d45658179", "fields": {"nom_de_la_commune": "AUDIGNON", "libell_d_acheminement": "AUDIGNON", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40017"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db54678633960869c0393729ae2b2040d5a8b662", "fields": {"nom_de_la_commune": "AUREILHAN", "libell_d_acheminement": "AUREILHAN", "code_postal": "40200", "coordonnees_gps": [44.2276964616, -1.18406164586], "code_commune_insee": "40019"}, "geometry": {"type": "Point", "coordinates": [-1.18406164586, 44.2276964616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c4ca58d9345ba06bb61364178155210e204142", "fields": {"nom_de_la_commune": "AURICE", "libell_d_acheminement": "AURICE", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40020"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02adef7d1a5c1be61bf83098f9e962194ea1a4d2", "fields": {"nom_de_la_commune": "BAS MAUCO", "libell_d_acheminement": "BAS MAUCO", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40026"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86a9a85da50c183aff7e28a3fa0e1eec1f2b1e28", "fields": {"nom_de_la_commune": "BEGAAR", "libell_d_acheminement": "BEGAAR", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40031"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9c879314a4be2b71f1d3e93e27affa5a484551b", "fields": {"nom_de_la_commune": "BEYRIES", "libell_d_acheminement": "BEYRIES", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40041"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "717449b3077e4d2b78901cbebde6577d997ec609", "fields": {"nom_de_la_commune": "BISCARROSSE", "libell_d_acheminement": "BISCARROSSE", "code_postal": "40600", "coordonnees_gps": [44.4090784689, -1.17737599006], "code_commune_insee": "40046"}, "geometry": {"type": "Point", "coordinates": [-1.17737599006, 44.4090784689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b602154627ad1cf4ca7528c1c089b2a58437a3", "fields": {"nom_de_la_commune": "BOURDALAT", "libell_d_acheminement": "BOURDALAT", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40052"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8525b5d33acb256c60e9c5e91e9380a36729ae76", "fields": {"nom_de_la_commune": "BOURRIOT BERGONCE", "libell_d_acheminement": "BOURRIOT BERGONCE", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40053"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ee21b56112a35f7e393fe11930a4761174c339", "fields": {"nom_de_la_commune": "CAPBRETON", "libell_d_acheminement": "CAPBRETON", "code_postal": "40130", "coordonnees_gps": [43.6325077803, -1.42907501854], "code_commune_insee": "40065"}, "geometry": {"type": "Point", "coordinates": [-1.42907501854, 43.6325077803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a23bda126d021f9ef05d4552c0439179921f7aeb", "fields": {"nom_de_la_commune": "CASTELNAU TURSAN", "libell_d_acheminement": "CASTELNAU TURSAN", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40072"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e70689c16d8700e019c0df610ff3f28953a2604", "fields": {"nom_de_la_commune": "CAZALIS", "libell_d_acheminement": "CAZALIS", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40079"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2f52228573b3da83f2dad0835e5eb4058f5463", "fields": {"nom_de_la_commune": "CLEDES", "libell_d_acheminement": "CLEDES", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40083"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d8b2d7697b53acea12684371c5718d8462f3a5", "fields": {"nom_de_la_commune": "DOAZIT", "libell_d_acheminement": "DOAZIT", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40089"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51964da690d47f81717397e2cdd32e6dc6615573", "fields": {"nom_de_la_commune": "GABARRET", "libell_d_acheminement": "GABARRET", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40102"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298ac6aa7e0586e45a1ab98ab7bca27f972f0603", "fields": {"nom_de_la_commune": "GAMARDE LES BAINS", "libell_d_acheminement": "GAMARDE LES BAINS", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40104"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cbd735c8d7cf92d5373bd0b65f493d8829cf971", "fields": {"nom_de_la_commune": "HAUT MAUCO", "libell_d_acheminement": "HAUT MAUCO", "code_postal": "40280", "coordonnees_gps": [43.8401834528, -0.518454816406], "code_commune_insee": "40122"}, "geometry": {"type": "Point", "coordinates": [-0.518454816406, 43.8401834528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a713a81bb0ad0570e49237c38950a48500c9b057", "fields": {"nom_de_la_commune": "HONTANX", "libell_d_acheminement": "HONTANX", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40127"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e06b0658508ef0cb347c25ad16d75f408ccf2dc4", "fields": {"nom_de_la_commune": "LACAJUNTE", "libell_d_acheminement": "LACAJUNTE", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40136"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64c384228104423d16d43fdddf6fa7a3747bd3f", "fields": {"nom_de_la_commune": "LUCBARDEZ ET BARGUES", "libell_d_acheminement": "LUCBARDEZ ET BARGUES", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40162"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7721bcc05bb6d655338a3c2d7192687fca2fe1ba", "fields": {"nom_de_la_commune": "LUE", "libell_d_acheminement": "LUE", "code_postal": "40210", "coordonnees_gps": [44.186401376, -0.94336239865], "code_commune_insee": "40163"}, "geometry": {"type": "Point", "coordinates": [-0.94336239865, 44.186401376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c1970d2fd96b08cc3df024c955b8f47c1362aaa", "fields": {"nom_de_la_commune": "LUSSAGNET", "libell_d_acheminement": "LUSSAGNET", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40166"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba9c875941021347c73af9d7079135bee4b27252", "fields": {"nom_de_la_commune": "MAYLIS", "libell_d_acheminement": "MAYLIS", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40177"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "180bc47442e913a7571c0a1c56630bc21b95bf87", "fields": {"nom_de_la_commune": "MIMBASTE", "libell_d_acheminement": "MIMBASTE", "code_postal": "40350", "coordonnees_gps": [43.6178542813, -0.994527077008], "code_commune_insee": "40183"}, "geometry": {"type": "Point", "coordinates": [-0.994527077008, 43.6178542813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5160297e5b922203cc4b78d9de956b3381bdd2f", "fields": {"nom_de_la_commune": "MONGET", "libell_d_acheminement": "MONGET", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40189"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda9e6ece42880786cd21dd66a032a146bfde3f7", "fields": {"nom_de_la_commune": "MORGANX", "libell_d_acheminement": "MORGANX", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40198"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e2ea81007e0336c2aabf2448e638db504dc6ce5", "fields": {"nom_de_la_commune": "MOUSTEY", "libell_d_acheminement": "MOUSTEY", "code_postal": "40410", "coordonnees_gps": [44.3533102389, -0.785997047975], "code_commune_insee": "40200"}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73a8802449c82563ea977ce60f31705d6e8c03f", "fields": {"nom_de_la_commune": "NERBIS", "libell_d_acheminement": "NERBIS", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40204"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ead266a869dfcf7616424c9a4855c662fc691430", "fields": {"nom_de_la_commune": "ORIST", "libell_d_acheminement": "ORIST", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40211"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65dcfe1143b2b8ad0c7aa5aa75c814a74540457f", "fields": {"nom_de_la_commune": "OUSSE SUZAN", "libell_d_acheminement": "OUSSE SUZAN", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40215"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "976be9a92daa8814bfc0201afb3dfe2cb58a09fc", "fields": {"nom_de_la_commune": "PARENTIS EN BORN", "libell_d_acheminement": "PARENTIS EN BORN", "code_postal": "40160", "coordonnees_gps": [44.3463280206, -1.04252210773], "code_commune_insee": "40217"}, "geometry": {"type": "Point", "coordinates": [-1.04252210773, 44.3463280206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5a1b12718a2a9bdbc1a7adf9d7c976673a5a3a4", "fields": {"nom_de_la_commune": "PERQUIE", "libell_d_acheminement": "PERQUIE", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40221"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df705f98d1bb8500fe8bf1129ca68b9da907d43e", "fields": {"nom_de_la_commune": "PEYREHORADE", "libell_d_acheminement": "PEYREHORADE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40224"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26969a781d0a5c8e403044b76ff437fdade85b8d", "fields": {"nom_de_la_commune": "PIMBO", "libell_d_acheminement": "PIMBO", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40226"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4630f53210edf79496c80f0a01579307499ed29", "fields": {"code_postal": "40410", "code_commune_insee": "40227", "libell_d_acheminement": "PISSOS", "ligne_5": "RICHET", "nom_de_la_commune": "PISSOS", "coordonnees_gps": [44.3533102389, -0.785997047975]}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3b1811d1ac606c84b1a5e37acb3534450f7eb8", "fields": {"nom_de_la_commune": "POUILLON", "libell_d_acheminement": "POUILLON", "code_postal": "40350", "coordonnees_gps": [43.6178542813, -0.994527077008], "code_commune_insee": "40233"}, "geometry": {"type": "Point", "coordinates": [-0.994527077008, 43.6178542813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c4742d25e2b3830e96016ee896cf6dec3660811", "fields": {"nom_de_la_commune": "RENUNG", "libell_d_acheminement": "RENUNG", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40240"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568e0b743364c88f54a314b2aab3b94ca9bf0efe", "fields": {"nom_de_la_commune": "RIMBEZ ET BAUDIETS", "libell_d_acheminement": "RIMBEZ ET BAUDIETS", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40242"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c676769408bde91573538735de47b8d06feef81f", "fields": {"nom_de_la_commune": "SABRES", "libell_d_acheminement": "SABRES", "code_postal": "40630", "coordonnees_gps": [44.158641182, -0.72802164635], "code_commune_insee": "40246"}, "geometry": {"type": "Point", "coordinates": [-0.72802164635, 44.158641182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f8ed500a8de70802921c166b9b958f98aa8146", "fields": {"nom_de_la_commune": "ST ANDRE DE SEIGNANX", "libell_d_acheminement": "ST ANDRE DE SEIGNANX", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40248"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ff746ed3923fd76a8c86d927109aef687db82b3", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40249"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30793dc3bc07f285e5747d417bd7aefdbc881315", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40250"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1558e22c065478e2ef27ec39bdc87aae5fb53cd2", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40252"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4c0f11779576acddec34b4e3bafc8fc97435866", "fields": {"nom_de_la_commune": "ST ETIENNE D ORTHE", "libell_d_acheminement": "ST ETIENNE D ORTHE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40256"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c7d9eb8ea48c11414641d543e3543af256f9a9d", "fields": {"nom_de_la_commune": "STE EULALIE EN BORN", "libell_d_acheminement": "STE EULALIE EN BORN", "code_postal": "40200", "coordonnees_gps": [44.2276964616, -1.18406164586], "code_commune_insee": "40257"}, "geometry": {"type": "Point", "coordinates": [-1.18406164586, 44.2276964616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc058c22f250d0946eb698b8b372cb970b07b627", "fields": {"nom_de_la_commune": "ST PIERRE DU MONT", "libell_d_acheminement": "ST PIERRE DU MONT", "code_postal": "40280", "coordonnees_gps": [43.8401834528, -0.518454816406], "code_commune_insee": "40281"}, "geometry": {"type": "Point", "coordinates": [-0.518454816406, 43.8401834528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c48b6c3811b91617c73140483cf866e0ca0a90", "fields": {"nom_de_la_commune": "ST VINCENT DE PAUL", "libell_d_acheminement": "ST VINCENT DE PAUL", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40283"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f62787741def4888af9690cf96bd97c011a9c65c", "fields": {"nom_de_la_commune": "ST YAGUEN", "libell_d_acheminement": "ST YAGUEN", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40285"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd0873cc895fa0c2ff424e7dd678ce22a056b0e", "fields": {"nom_de_la_commune": "SARRAZIET", "libell_d_acheminement": "SARRAZIET", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40289"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e877ac452578338e07fed2c42c4234bfc8d6a9a", "fields": {"nom_de_la_commune": "SAUBION", "libell_d_acheminement": "SAUBION", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40291"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e933c35b825a2cba59f1fa887b995583b05b0cc5", "fields": {"nom_de_la_commune": "SAUBUSSE", "libell_d_acheminement": "SAUBUSSE", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40293"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fee4ea534dabceeaf3392e09efe52c2acfda331", "fields": {"nom_de_la_commune": "SAUGNACQ ET MURET", "libell_d_acheminement": "SAUGNACQ ET MURET", "code_postal": "40410", "coordonnees_gps": [44.3533102389, -0.785997047975], "code_commune_insee": "40295"}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97315e117724292b6b67daab75e652ebab46d9c", "fields": {"nom_de_la_commune": "SERRESLOUS ET ARRIBANS", "libell_d_acheminement": "SERRESLOUS ET ARRIBANS", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40299"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73fb6ce0695b5fef3688e8921a6cfb3ece8a4ef8", "fields": {"nom_de_la_commune": "SIEST", "libell_d_acheminement": "SIEST", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40301"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e2b6004a98d30c2655f1fadc850d8c41fa47d0", "fields": {"nom_de_la_commune": "TARNOS", "libell_d_acheminement": "TARNOS", "code_postal": "40220", "coordonnees_gps": [43.5368571138, -1.46590189188], "code_commune_insee": "40312"}, "geometry": {"type": "Point", "coordinates": [-1.46590189188, 43.5368571138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ca35e29aa9dfacf85e03a3085a7277e957119fb", "fields": {"nom_de_la_commune": "TERCIS LES BAINS", "libell_d_acheminement": "TERCIS LES BAINS", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40314"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e712f27df8b456f29338ae1cc59c454ce81d9953", "fields": {"nom_de_la_commune": "TETHIEU", "libell_d_acheminement": "TETHIEU", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40315"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76deed8084b1d2900e0c73c4961b1c3c04b4b48e", "fields": {"nom_de_la_commune": "TILH", "libell_d_acheminement": "TILH", "code_postal": "40360", "coordonnees_gps": [43.6226190594, -0.830742350632], "code_commune_insee": "40316"}, "geometry": {"type": "Point", "coordinates": [-0.830742350632, 43.6226190594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16af68561391df16b660196f13606fdbeb878fd2", "fields": {"nom_de_la_commune": "TOULOUZETTE", "libell_d_acheminement": "TOULOUZETTE", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40318"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d82600df10ea6af60caa2a5d15173d45bad0a5d9", "fields": {"nom_de_la_commune": "YCHOUX", "libell_d_acheminement": "YCHOUX", "code_postal": "40160", "coordonnees_gps": [44.3463280206, -1.04252210773], "code_commune_insee": "40332"}, "geometry": {"type": "Point", "coordinates": [-1.04252210773, 44.3463280206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fffd106e175cc4397b8a235e7f9d01ef6ade84b1", "fields": {"nom_de_la_commune": "YZOSSE", "libell_d_acheminement": "YZOSSE", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40334"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adf3eff84457289f031f058c3eb6b9ebdbd8adc6", "fields": {"nom_de_la_commune": "ARTINS", "libell_d_acheminement": "ARTINS", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41004"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d6a7a17a251f65c3b500727cc3ecc5fbe1119d", "fields": {"nom_de_la_commune": "ARVILLE", "libell_d_acheminement": "ARVILLE", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41005"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7a2a9d23aaa0016da7141cabb6823a39d566652", "fields": {"nom_de_la_commune": "AVARAY", "libell_d_acheminement": "AVARAY", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41008"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1905569d81d25f7f4f110f95805efcc0330dd901", "fields": {"nom_de_la_commune": "BAUZY", "libell_d_acheminement": "BAUZY", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41013"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba9c4e0ac6f75d4b3953518e710ba1ee91fd223", "fields": {"nom_de_la_commune": "BRACIEUX", "libell_d_acheminement": "BRACIEUX", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41025"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab28c8ff0e9d340a011402fd2a3cf4a334ad7a2", "fields": {"nom_de_la_commune": "BREVAINVILLE", "libell_d_acheminement": "BREVAINVILLE", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41026"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140b7e359967f1b31cd0b565951269b4bb983e3a", "fields": {"nom_de_la_commune": "BUSLOUP", "libell_d_acheminement": "BUSLOUP", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41028"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "043f86bb29b4eb96857851ee38c33d5624309ba5", "fields": {"nom_de_la_commune": "CELLETTES", "libell_d_acheminement": "CELLETTES", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41031"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f716e405686438311c635fef5e75ddc9dccc61c1", "fields": {"nom_de_la_commune": "CHAMPIGNY EN BEAUCE", "libell_d_acheminement": "CHAMPIGNY EN BEAUCE", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41035"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89510718ccfa3516ceda4f942f34b310610a0826", "fields": {"nom_de_la_commune": "LA CHAPELLE VENDOMOISE", "libell_d_acheminement": "LA CHAPELLE VENDOMOISE", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41040"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cceddbfdc708cf7e36f0cb33f923727a4179455", "fields": {"code_postal": "44420", "code_commune_insee": "44097", "libell_d_acheminement": "MESQUER", "ligne_5": "QUIMIAC", "nom_de_la_commune": "MESQUER", "coordonnees_gps": [47.373686193, -2.48987078247]}, "geometry": {"type": "Point", "coordinates": [-2.48987078247, 47.373686193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e279218abb6ce07a0595a52ae1682cd89e22d19", "fields": {"nom_de_la_commune": "MOISDON LA RIVIERE", "libell_d_acheminement": "MOISDON LA RIVIERE", "code_postal": "44520", "coordonnees_gps": [47.5995335706, -1.38415930312], "code_commune_insee": "44099"}, "geometry": {"type": "Point", "coordinates": [-1.38415930312, 47.5995335706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064a5fe34cc980e96371215ed0926242695f9be2", "fields": {"nom_de_la_commune": "LA MONTAGNE", "libell_d_acheminement": "LA MONTAGNE", "code_postal": "44620", "coordonnees_gps": [47.1849440556, -1.6845203285], "code_commune_insee": "44101"}, "geometry": {"type": "Point", "coordinates": [-1.6845203285, 47.1849440556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4303f5fa2aacc5d6e1f15498921c3dab71f6758", "fields": {"nom_de_la_commune": "MONTRELAIS", "libell_d_acheminement": "MONTRELAIS", "code_postal": "44370", "coordonnees_gps": [47.4023701755, -1.01236308659], "code_commune_insee": "44104"}, "geometry": {"type": "Point", "coordinates": [-1.01236308659, 47.4023701755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86a422213cfeed5c2a1376b19eb0ef1ae0ff166f", "fields": {"nom_de_la_commune": "NANTES", "libell_d_acheminement": "NANTES", "code_postal": "44200", "coordonnees_gps": [47.2321830557, -1.54780684906], "code_commune_insee": "44109"}, "geometry": {"type": "Point", "coordinates": [-1.54780684906, 47.2321830557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3868cbe3e558fbca0d9a3deeec464c6ed33cab4", "fields": {"nom_de_la_commune": "NOZAY", "libell_d_acheminement": "NOZAY", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44113"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "199b02cab61485a6580b48ace876f0a47ccc5777", "fields": {"nom_de_la_commune": "PAIMBOEUF", "libell_d_acheminement": "PAIMBOEUF", "code_postal": "44560", "coordonnees_gps": [47.2711622125, -2.08332725108], "code_commune_insee": "44116"}, "geometry": {"type": "Point", "coordinates": [-2.08332725108, 47.2711622125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26aa4e78a8c37b325d28298b57edc3b1ece85f07", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "44540", "coordonnees_gps": [47.5525167785, -1.15686679562], "code_commune_insee": "44124"}, "geometry": {"type": "Point", "coordinates": [-1.15686679562, 47.5525167785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02905b618c505038cc9809ddbf3328c1d2ccff47", "fields": {"nom_de_la_commune": "LA PLANCHE", "libell_d_acheminement": "LA PLANCHE", "code_postal": "44140", "coordonnees_gps": [47.0608389163, -1.45654054931], "code_commune_insee": "44127"}, "geometry": {"type": "Point", "coordinates": [-1.45654054931, 47.0608389163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03934813fe006a8a8a168c03ddb685e9a616f0d2", "fields": {"code_postal": "44210", "code_commune_insee": "44131", "libell_d_acheminement": "PORNIC", "ligne_5": "STE MARIE", "nom_de_la_commune": "PORNIC", "coordonnees_gps": [47.122206427, -2.05186337229]}, "geometry": {"type": "Point", "coordinates": [-2.05186337229, 47.122206427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00607bf20179916d5024defdbae8418d0f0eff61", "fields": {"nom_de_la_commune": "PORNICHET", "libell_d_acheminement": "PORNICHET", "code_postal": "44380", "coordonnees_gps": [47.2620004843, -2.31447331185], "code_commune_insee": "44132"}, "geometry": {"type": "Point", "coordinates": [-2.31447331185, 47.2620004843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d9a320ec2e0a7b0d98c1d7796179c92ac5bc74", "fields": {"nom_de_la_commune": "PORT ST PERE", "libell_d_acheminement": "PORT ST PERE", "code_postal": "44710", "coordonnees_gps": [47.1414628863, -1.75847032416], "code_commune_insee": "44133"}, "geometry": {"type": "Point", "coordinates": [-1.75847032416, 47.1414628863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297971685b6c3560e803402f3fa518efc01ec4ed", "fields": {"nom_de_la_commune": "PREFAILLES", "libell_d_acheminement": "PREFAILLES", "code_postal": "44770", "coordonnees_gps": [47.1411450003, -2.19113263493], "code_commune_insee": "44136"}, "geometry": {"type": "Point", "coordinates": [-2.19113263493, 47.1411450003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799153125e506825eee2d4a357396cd5d87a03ef", "fields": {"nom_de_la_commune": "LA REGRIPPIERE", "libell_d_acheminement": "LA REGRIPPIERE", "code_postal": "44330", "coordonnees_gps": [47.1650939887, -1.27114440843], "code_commune_insee": "44140"}, "geometry": {"type": "Point", "coordinates": [-1.27114440843, 47.1650939887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49d535f64e0620899e4748fadb4c81b3c5ab3ad", "fields": {"nom_de_la_commune": "REMOUILLE", "libell_d_acheminement": "REMOUILLE", "code_postal": "44140", "coordonnees_gps": [47.0608389163, -1.45654054931], "code_commune_insee": "44142"}, "geometry": {"type": "Point", "coordinates": [-1.45654054931, 47.0608389163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43b8f107fcfa313b50e29d85c9674227e8c5bc61", "fields": {"code_postal": "44400", "code_commune_insee": "44143", "libell_d_acheminement": "REZE", "ligne_5": "PONT ROUSSEAU", "nom_de_la_commune": "REZE", "coordonnees_gps": [47.176499243, -1.54979300458]}, "geometry": {"type": "Point", "coordinates": [-1.54979300458, 47.176499243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6a0861ace1938e2d4d7d3d3e9c78c57643dc658", "fields": {"nom_de_la_commune": "ST BREVIN LES PINS", "libell_d_acheminement": "ST BREVIN LES PINS", "code_postal": "44250", "coordonnees_gps": [47.2472409804, -2.15082822089], "code_commune_insee": "44154"}, "geometry": {"type": "Point", "coordinates": [-2.15082822089, 47.2472409804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68a37b2a462d5659e778043515f095d7f7b103e7", "fields": {"code_postal": "44250", "code_commune_insee": "44154", "libell_d_acheminement": "ST BREVIN LES PINS", "ligne_5": "MINDIN", "nom_de_la_commune": "ST BREVIN LES PINS", "coordonnees_gps": [47.2472409804, -2.15082822089]}, "geometry": {"type": "Point", "coordinates": [-2.15082822089, 47.2472409804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86aaca0e25dc914a6ab4ee4bf5db21231d7b9de", "fields": {"nom_de_la_commune": "ST ETIENNE DE MER MORTE", "libell_d_acheminement": "ST ETIENNE DE MER MORTE", "code_postal": "44270", "coordonnees_gps": [46.9745110591, -1.78089818288], "code_commune_insee": "44157"}, "geometry": {"type": "Point", "coordinates": [-1.78089818288, 46.9745110591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0fb8e904f44009c31ae3c5fdcd4b5e8f7ba7d3c", "fields": {"nom_de_la_commune": "ST JEAN DE BOISEAU", "libell_d_acheminement": "ST JEAN DE BOISEAU", "code_postal": "44640", "coordonnees_gps": [47.1953946232, -1.83239436965], "code_commune_insee": "44166"}, "geometry": {"type": "Point", "coordinates": [-1.83239436965, 47.1953946232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab6c572b24e4d27f303f683bef42f7f49f58185c", "fields": {"nom_de_la_commune": "STE LUCE SUR LOIRE", "libell_d_acheminement": "STE LUCE SUR LOIRE", "code_postal": "44980", "coordonnees_gps": [47.2534245812, -1.47264031933], "code_commune_insee": "44172"}, "geometry": {"type": "Point", "coordinates": [-1.47264031933, 47.2534245812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8afde85160ea6ea3c59b041250d4a04fb8eebbec", "fields": {"nom_de_la_commune": "ST LUMINE DE COUTAIS", "libell_d_acheminement": "ST LUMINE DE COUTAIS", "code_postal": "44310", "coordonnees_gps": [47.040945415, -1.64161948487], "code_commune_insee": "44174"}, "geometry": {"type": "Point", "coordinates": [-1.64161948487, 47.040945415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c32db92d99618c69bdc3396068212c21e455204", "fields": {"nom_de_la_commune": "ST LYPHARD", "libell_d_acheminement": "ST LYPHARD", "code_postal": "44410", "coordonnees_gps": [47.4324776311, -2.33169406972], "code_commune_insee": "44175"}, "geometry": {"type": "Point", "coordinates": [-2.33169406972, 47.4324776311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "594a1cbd76d4096d8d231f3adef7341abf943368", "fields": {"nom_de_la_commune": "ST MARS DU DESERT", "libell_d_acheminement": "ST MARS DU DESERT", "code_postal": "44850", "coordonnees_gps": [47.3786651344, -1.3830703271], "code_commune_insee": "44179"}, "geometry": {"type": "Point", "coordinates": [-1.3830703271, 47.3786651344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc917db41d03fb78d06eb3c3bd5100fc09ba4578", "fields": {"nom_de_la_commune": "ST MARS LA JAILLE", "libell_d_acheminement": "ST MARS LA JAILLE", "code_postal": "44540", "coordonnees_gps": [47.5525167785, -1.15686679562], "code_commune_insee": "44180"}, "geometry": {"type": "Point", "coordinates": [-1.15686679562, 47.5525167785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7663af8ff67edc2d1a0a9995c2a2f1bcb8fdfca", "fields": {"nom_de_la_commune": "ST MICHEL CHEF CHEF", "libell_d_acheminement": "ST MICHEL CHEF CHEF", "code_postal": "44730", "coordonnees_gps": [47.1753240266, -2.12708707959], "code_commune_insee": "44182"}, "geometry": {"type": "Point", "coordinates": [-2.12708707959, 47.1753240266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e52bf7a462e3a9ee5470804303812313b4468c3", "fields": {"nom_de_la_commune": "SOUDAN", "libell_d_acheminement": "SOUDAN", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44199"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b70e1458e81ecf800a59851efb61da58c28ec255", "fields": {"nom_de_la_commune": "SOULVACHE", "libell_d_acheminement": "SOULVACHE", "code_postal": "44660", "coordonnees_gps": [47.7784822888, -1.45044243144], "code_commune_insee": "44200"}, "geometry": {"type": "Point", "coordinates": [-1.45044243144, 47.7784822888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5903cde49479276d222f59317c3bc63a0234b5cb", "fields": {"nom_de_la_commune": "TEILLE", "libell_d_acheminement": "TEILLE", "code_postal": "44440", "coordonnees_gps": [47.4983275474, -1.33409165092], "code_commune_insee": "44202"}, "geometry": {"type": "Point", "coordinates": [-1.33409165092, 47.4983275474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96fcd6831012002b0dab52f2ea891a84ef6c695f", "fields": {"nom_de_la_commune": "LE TEMPLE DE BRETAGNE", "libell_d_acheminement": "LE TEMPLE DE BRETAGNE", "code_postal": "44360", "coordonnees_gps": [47.2931220587, -1.77460002675], "code_commune_insee": "44203"}, "geometry": {"type": "Point", "coordinates": [-1.77460002675, 47.2931220587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc3f261db8cd5c48e9f0296c5f09e8e0f9ce08fb", "fields": {"code_postal": "44420", "code_commune_insee": "44211", "libell_d_acheminement": "LA TURBALLE", "ligne_5": "TRESCALAN", "nom_de_la_commune": "LA TURBALLE", "coordonnees_gps": [47.373686193, -2.48987078247]}, "geometry": {"type": "Point", "coordinates": [-2.48987078247, 47.373686193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc6777a1dca1acf8d535e965efb63608151d6b09", "fields": {"nom_de_la_commune": "VUE", "libell_d_acheminement": "VUE", "code_postal": "44640", "coordonnees_gps": [47.1953946232, -1.83239436965], "code_commune_insee": "44220"}, "geometry": {"type": "Point", "coordinates": [-1.83239436965, 47.1953946232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76f147d10b316ec56aeef268b2475ba8a27d25e5", "fields": {"nom_de_la_commune": "LA GRIGONNAIS", "libell_d_acheminement": "LA GRIGONNAIS", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44224"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed26e4975daddf4aa4c8cff79cd9e0da6a6639c9", "fields": {"nom_de_la_commune": "AILLANT SUR MILLERON", "libell_d_acheminement": "AILLANT SUR MILLERON", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45002"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "529b0907ac6a4dc0d5ba8b4539093d458f22086f", "fields": {"nom_de_la_commune": "AMILLY", "libell_d_acheminement": "AMILLY", "code_postal": "45200", "coordonnees_gps": [48.0036568049, 2.78095949035], "code_commune_insee": "45004"}, "geometry": {"type": "Point", "coordinates": [2.78095949035, 48.0036568049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1b704e9228ee86b86188157febefc74c6f6c304", "fields": {"nom_de_la_commune": "ARTENAY", "libell_d_acheminement": "ARTENAY", "code_postal": "45410", "coordonnees_gps": [48.0813211933, 1.88378056007], "code_commune_insee": "45008"}, "geometry": {"type": "Point", "coordinates": [1.88378056007, 48.0813211933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a004a23aea549c838d44edf908da2dd4d3277df8", "fields": {"nom_de_la_commune": "ASCHERES LE MARCHE", "libell_d_acheminement": "ASCHERES LE MARCHE", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45009"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0abce6a8c4011b597482c5a956fd43ecc7a53d9", "fields": {"nom_de_la_commune": "BACCON", "libell_d_acheminement": "BACCON", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45019"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72840e50beeb101be2119c92271cc837de972a5", "fields": {"nom_de_la_commune": "BEAUGENCY", "libell_d_acheminement": "BEAUGENCY", "code_postal": "45190", "coordonnees_gps": [47.8004436022, 1.60034648518], "code_commune_insee": "45028"}, "geometry": {"type": "Point", "coordinates": [1.60034648518, 47.8004436022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f3d38e865a3f47ca3152d4097c9c86eeaf8d895", "fields": {"nom_de_la_commune": "LE BIGNON MIRABEAU", "libell_d_acheminement": "LE BIGNON MIRABEAU", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45032"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9716e115f7ec3b862ab61edcb6b18208627f9af", "fields": {"code_postal": "45340", "code_commune_insee": "45035", "libell_d_acheminement": "BOISCOMMUN", "ligne_5": "CHEMAULT", "nom_de_la_commune": "BOISCOMMUN", "coordonnees_gps": [48.0647487968, 2.39617529456]}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b854121ef23f64c5ea23c047970e785b5559bc22", "fields": {"code_postal": "45290", "code_commune_insee": "45036", "libell_d_acheminement": "BOISMORAND", "ligne_5": "LES BEZARDS", "nom_de_la_commune": "BOISMORAND", "coordonnees_gps": [47.8346228413, 2.67975778756]}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e05c589f84a7bf39c5871fd17bdaf9a994753f0", "fields": {"nom_de_la_commune": "BORDEAUX EN GATINAIS", "libell_d_acheminement": "BORDEAUX EN GATINAIS", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45041"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df96e2cb4d221d436b2eadde9d188099965c9275", "fields": {"nom_de_la_commune": "BRICY", "libell_d_acheminement": "BRICY", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45055"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8684089d395b831720c2248b1072a7c97596b705", "fields": {"code_postal": "45300", "code_commune_insee": "45065", "libell_d_acheminement": "CESARVILLE DOSSAINVILLE", "ligne_5": "DOSSAINVILLE", "nom_de_la_commune": "CESARVILLE DOSSAINVILLE", "coordonnees_gps": [48.1872746027, 2.25373917421]}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8108a8903ee9e218024a60503324e5b7e3d7382", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR AVEYRON", "libell_d_acheminement": "LA CHAPELLE SUR AVEYRON", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45077"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d1d218aa4b235cb8a30360c02e192acdad144de", "fields": {"nom_de_la_commune": "LE CHARME", "libell_d_acheminement": "LE CHARME", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45079"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b7fb25fb2d1a667fb5bbb860d3fc17987861d36", "fields": {"nom_de_la_commune": "CORTRAT", "libell_d_acheminement": "CORTRAT", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45105"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b518fee56c628e552f4d7b3044acfea32588c80", "fields": {"nom_de_la_commune": "COUDROY", "libell_d_acheminement": "COUDROY", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45107"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "287ea034734abae5c9edd0efe633c08fb615e2ef", "fields": {"nom_de_la_commune": "COURCELLES", "libell_d_acheminement": "COURCELLES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45110"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdda871e8710c819736d840fd16ab109481b3cfc", "fields": {"nom_de_la_commune": "COURTENAY", "libell_d_acheminement": "COURTENAY", "code_postal": "45320", "coordonnees_gps": [48.0463130644, 3.01780722216], "code_commune_insee": "45115"}, "geometry": {"type": "Point", "coordinates": [3.01780722216, 48.0463130644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "171ef2348547083c285abcd8da5747e014ac183c", "fields": {"nom_de_la_commune": "DAMPIERRE EN BURLY", "libell_d_acheminement": "DAMPIERRE EN BURLY", "code_postal": "45570", "coordonnees_gps": [47.7713399136, 2.51487040381], "code_commune_insee": "45122"}, "geometry": {"type": "Point", "coordinates": [2.51487040381, 47.7713399136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f0d9a58168e6b836b2ed285bb4c2a525708ddd8", "fields": {"nom_de_la_commune": "DARVOY", "libell_d_acheminement": "DARVOY", "code_postal": "45150", "coordonnees_gps": [47.8403868287, 2.12671311034], "code_commune_insee": "45123"}, "geometry": {"type": "Point", "coordinates": [2.12671311034, 47.8403868287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b404ed2604f135e5fdc1c2de42ea00c5befa6141", "fields": {"nom_de_la_commune": "DOUCHY MONTCORBON", "libell_d_acheminement": "DOUCHY MONTCORBON", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45129"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8204abdbc7aab072537c1039c08e11fd06e9ed37", "fields": {"nom_de_la_commune": "FAY AUX LOGES", "libell_d_acheminement": "FAY AUX LOGES", "code_postal": "45450", "coordonnees_gps": [47.9620977232, 2.17370967023], "code_commune_insee": "45142"}, "geometry": {"type": "Point", "coordinates": [2.17370967023, 47.9620977232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac709dd3164510707851ab3c5c254e0a9038f78", "fields": {"nom_de_la_commune": "FONTENAY SUR LOING", "libell_d_acheminement": "FONTENAY SUR LOING", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45148"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b88cfc38bd636b73b16f18ac8ab41e1da8998a", "fields": {"code_postal": "45300", "code_commune_insee": "45162", "libell_d_acheminement": "GUIGNEVILLE", "ligne_5": "SEBOUVILLE", "nom_de_la_commune": "GUIGNEVILLE", "coordonnees_gps": [48.1872746027, 2.25373917421]}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c1ded8554253322ee2bc9753218fe2838741b8", "fields": {"nom_de_la_commune": "GUILLY", "libell_d_acheminement": "GUILLY", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45164"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce33754bf015b67a7b3e46858fed1592b9a7295", "fields": {"nom_de_la_commune": "JARGEAU", "libell_d_acheminement": "JARGEAU", "code_postal": "45150", "coordonnees_gps": [47.8403868287, 2.12671311034], "code_commune_insee": "45173"}, "geometry": {"type": "Point", "coordinates": [2.12671311034, 47.8403868287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebf006a46d67af7a092363abb98a6576ea4024f6", "fields": {"nom_de_la_commune": "JOUY LE POTIER", "libell_d_acheminement": "JOUY LE POTIER", "code_postal": "45370", "coordonnees_gps": [47.7881448232, 1.78614777532], "code_commune_insee": "45175"}, "geometry": {"type": "Point", "coordinates": [1.78614777532, 47.7881448232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcf8f8528701e81d263c74b271aa8da962f03c85", "fields": {"nom_de_la_commune": "LAAS", "libell_d_acheminement": "LAAS", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45177"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d267bc198edb861f6e558e3136b59f86efbe214", "fields": {"nom_de_la_commune": "LAILLY EN VAL", "libell_d_acheminement": "LAILLY EN VAL", "code_postal": "45740", "coordonnees_gps": [47.746544398, 1.71571419606], "code_commune_insee": "45179"}, "geometry": {"type": "Point", "coordinates": [1.71571419606, 47.746544398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0b2a4b7011fabcae850911730a6a7e82f40537", "fields": {"nom_de_la_commune": "LORRIS", "libell_d_acheminement": "LORRIS", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45187"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f1a209b32ef4fdbc31ece70bacbc504c56b82f7", "fields": {"nom_de_la_commune": "LOURY", "libell_d_acheminement": "LOURY", "code_postal": "45470", "coordonnees_gps": [47.9894256341, 2.08205266737], "code_commune_insee": "45188"}, "geometry": {"type": "Point", "coordinates": [2.08205266737, 47.9894256341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa24a82f32fdf3ce1823269c65b1089a35c1b2f9", "fields": {"code_postal": "45330", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "MALESHERBES", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.2827964198, 2.40158740828]}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c09f93fc7f4432cec4d2b0f45e4c0808b359d2a", "fields": {"nom_de_la_commune": "MARDIE", "libell_d_acheminement": "MARDIE", "code_postal": "45430", "coordonnees_gps": [47.8949996525, 2.04744187127], "code_commune_insee": "45194"}, "geometry": {"type": "Point", "coordinates": [2.04744187127, 47.8949996525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fea18d0a2c9cd85b611207b71136869577e281b", "fields": {"code_postal": "45430", "code_commune_insee": "45194", "libell_d_acheminement": "MARDIE", "ligne_5": "PONT AUX MOINES", "nom_de_la_commune": "MARDIE", "coordonnees_gps": [47.8949996525, 2.04744187127]}, "geometry": {"type": "Point", "coordinates": [2.04744187127, 47.8949996525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7d9dddd8f19ba072a7056816813b77fe7f1f7fc", "fields": {"nom_de_la_commune": "MAREAU AUX PRES", "libell_d_acheminement": "MAREAU AUX PRES", "code_postal": "45370", "coordonnees_gps": [47.7881448232, 1.78614777532], "code_commune_insee": "45196"}, "geometry": {"type": "Point", "coordinates": [1.78614777532, 47.7881448232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0667d4ea7e3cbc0db85cba1dfe0e7bd805c12faf", "fields": {"nom_de_la_commune": "MELLEROY", "libell_d_acheminement": "MELLEROY", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45199"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed7b64a01ed9c180372fec1cc9fe49237c8a32ab", "fields": {"nom_de_la_commune": "MESSAS", "libell_d_acheminement": "MESSAS", "code_postal": "45190", "coordonnees_gps": [47.8004436022, 1.60034648518], "code_commune_insee": "45202"}, "geometry": {"type": "Point", "coordinates": [1.60034648518, 47.8004436022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69cb274a104345b28ea9e45039a8b70375a7e1a5", "fields": {"nom_de_la_commune": "MEZIERES LEZ CLERY", "libell_d_acheminement": "MEZIERES LEZ CLERY", "code_postal": "45370", "coordonnees_gps": [47.7881448232, 1.78614777532], "code_commune_insee": "45204"}, "geometry": {"type": "Point", "coordinates": [1.78614777532, 47.7881448232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9978ad8672362c0ddbdf1161823d9ea48bfcf88", "fields": {"nom_de_la_commune": "MIGNERES", "libell_d_acheminement": "MIGNERES", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45206"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b491ddccd6739244a9fe11bac48168af924d33e8", "fields": {"nom_de_la_commune": "MIGNERETTE", "libell_d_acheminement": "MIGNERETTE", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45207"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4261469adf4a1d1a865652defd731eced4fcc44e", "fields": {"nom_de_la_commune": "NANCRAY SUR RIMARDE", "libell_d_acheminement": "NANCRAY SUR RIMARDE", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45220"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00b9ddb713bcfd5d71dae89322cdad58d0779bf", "fields": {"nom_de_la_commune": "NOYERS", "libell_d_acheminement": "NOYERS", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45230"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a972b11ca143a84777090e007d6bfde3895f263", "fields": {"nom_de_la_commune": "OLIVET", "libell_d_acheminement": "OLIVET", "code_postal": "45160", "coordonnees_gps": [47.8140032252, 1.87690042129], "code_commune_insee": "45232"}, "geometry": {"type": "Point", "coordinates": [1.87690042129, 47.8140032252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f155fa84f08814472890932498cf40b2bcdfd5", "fields": {"nom_de_la_commune": "OUGNY", "libell_d_acheminement": "OUGNY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58202"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88e69c7c3a817c2e03eef7dcf6d1a860166ab99d", "fields": {"nom_de_la_commune": "OULON", "libell_d_acheminement": "OULON", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58203"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c795ce9af050521c9ab0c62f8aa0afb6552fb40", "fields": {"nom_de_la_commune": "PARIGNY LA ROSE", "libell_d_acheminement": "PARIGNY LA ROSE", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58206"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99fd99f2e57c09ee931276ef978e0b43e9aea5dc", "fields": {"nom_de_la_commune": "PARIGNY LES VAUX", "libell_d_acheminement": "PARIGNY LES VAUX", "code_postal": "58320", "coordonnees_gps": [47.0887291303, 3.1067226135], "code_commune_insee": "58207"}, "geometry": {"type": "Point", "coordinates": [3.1067226135, 47.0887291303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54fe8871a1921606423bc27b3ca976be74f9a340", "fields": {"nom_de_la_commune": "POISEUX", "libell_d_acheminement": "POISEUX", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58212"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f463a83981702d87ec3029891c15a11607af4706", "fields": {"nom_de_la_commune": "POUGUES LES EAUX", "libell_d_acheminement": "POUGUES LES EAUX", "code_postal": "58320", "coordonnees_gps": [47.0887291303, 3.1067226135], "code_commune_insee": "58214"}, "geometry": {"type": "Point", "coordinates": [3.1067226135, 47.0887291303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce219c925059c83fcc5a42cf0a9c7a1870b8bd60", "fields": {"nom_de_la_commune": "RUAGES", "libell_d_acheminement": "RUAGES", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58224"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d868ea1edf76c06208e512c90385c10cd5419576", "fields": {"nom_de_la_commune": "ST AGNAN", "libell_d_acheminement": "ST AGNAN", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58226"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dd984496cc41e4f5fd608d3e4304865827c6344", "fields": {"nom_de_la_commune": "ST BENIN DES BOIS", "libell_d_acheminement": "ST BENIN DES BOIS", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58233"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69d4ea737f7292f3be1aec5a3090405897aeacd1", "fields": {"nom_de_la_commune": "STE COLOMBE DES BOIS", "libell_d_acheminement": "STE COLOMBE DES BOIS", "code_postal": "58220", "coordonnees_gps": [47.379682807, 3.15630792505], "code_commune_insee": "58236"}, "geometry": {"type": "Point", "coordinates": [3.15630792505, 47.379682807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1367d85dc0678fa7085857fba39bc4550f1f11a1", "fields": {"nom_de_la_commune": "ST DIDIER", "libell_d_acheminement": "ST DIDIER", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58237"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d9c93c87670fcc27cbecd87431f0382647c2dc2", "fields": {"nom_de_la_commune": "ST JEAN AUX AMOGNES", "libell_d_acheminement": "ST JEAN AUX AMOGNES", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58247"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec366b4734c4773eea7cba2f8ea91ff0f6b932d6", "fields": {"nom_de_la_commune": "ST OUEN SUR LOIRE", "libell_d_acheminement": "ST OUEN SUR LOIRE", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58258"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7edac308d0835672462f31d6cb607d7b557a9b6", "fields": {"nom_de_la_commune": "ST PARIZE EN VIRY", "libell_d_acheminement": "ST PARIZE EN VIRY", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58259"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98c682290d84b64aca38e033fedce24f2bbdc227", "fields": {"nom_de_la_commune": "ST PIERRE LE MOUTIER", "libell_d_acheminement": "ST PIERRE LE MOUTIER", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58264"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f974866ac525d3ef02ac8af91f4164864d49972e", "fields": {"nom_de_la_commune": "ST QUENTIN SUR NOHAIN", "libell_d_acheminement": "ST QUENTIN SUR NOHAIN", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58265"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bff17c076d4f3b63196abdf6010231df964ea9b2", "fields": {"nom_de_la_commune": "ST SEINE", "libell_d_acheminement": "ST SEINE", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58268"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f85445e85ad19fa7dc17fce291e01f9074d3d4", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58269"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e98ade3c9485d6692fea81107a05b241d11e30", "fields": {"nom_de_la_commune": "SOUGY SUR LOIRE", "libell_d_acheminement": "SOUGY SUR LOIRE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58280"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80db614e4b5f3438bd7ba2997295c22c331d2135", "fields": {"nom_de_la_commune": "SURGY", "libell_d_acheminement": "SURGY", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58282"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f91083a27b936762c80da53ba3ffc4f996e36e", "fields": {"nom_de_la_commune": "TALON", "libell_d_acheminement": "TALON", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58284"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ed73e0229fee50b5112ccbec7975ef05f6501d", "fields": {"nom_de_la_commune": "TANNAY", "libell_d_acheminement": "TANNAY", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58286"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6795a97ad1486d1e9b067ca5561dd8ac3f5b0e", "fields": {"nom_de_la_commune": "TOURY LURCY", "libell_d_acheminement": "TOURY LURCY", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58293"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a606de2c022358d50c1edb81378de8e9e7bd27e", "fields": {"nom_de_la_commune": "TOURY SUR JOUR", "libell_d_acheminement": "TOURY SUR JOUR", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58294"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c1c850553ff7e22e395b46dac64e2dabbd53733", "fields": {"nom_de_la_commune": "ST HELEN", "libell_d_acheminement": "ST HELEN", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22299"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d00cd6657dff6518c6aea1593c86dabfbc275d5", "fields": {"nom_de_la_commune": "ST HERVE", "libell_d_acheminement": "ST HERVE", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22300"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d593b0245861a41e32fe371ca3719bfcfddad7bc", "fields": {"nom_de_la_commune": "ST JOUAN DE L ISLE", "libell_d_acheminement": "ST JOUAN DE L ISLE", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22305"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bd212faaeb19cf3ad0b9966d64e0d42a4f41d9a", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22310"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3db7c1684f0b867cf7f0413b249d247daa83c0f8", "fields": {"nom_de_la_commune": "ST MAYEUX", "libell_d_acheminement": "ST MAYEUX", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22316"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa6f6e1ad25b3d2cc54f7bfd805cb69c16a42fc", "fields": {"nom_de_la_commune": "ST MELOIR DES BOIS", "libell_d_acheminement": "ST MELOIR DES BOIS", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22317"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5123734ce5c17c9101698fe9afae08d40faa3025", "fields": {"nom_de_la_commune": "ST MICHEL EN GREVE", "libell_d_acheminement": "ST MICHEL EN GREVE", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22319"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f48061218bbdd940f08f9570741d25f3530bdd3", "fields": {"nom_de_la_commune": "ST RIEUL", "libell_d_acheminement": "ST RIEUL", "code_postal": "22270", "coordonnees_gps": [48.4388729687, -2.34282802999], "code_commune_insee": "22326"}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c142d179abc7f51815c8fe246ceb0e86533f12c2", "fields": {"code_postal": "22100", "code_commune_insee": "22327", "libell_d_acheminement": "ST SAMSON SUR RANCE", "ligne_5": "LA HISSE ST SAMSON", "nom_de_la_commune": "ST SAMSON SUR RANCE", "coordonnees_gps": [48.4429392522, -2.05375025215]}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71cc678e52d9e6395db973587677aa32c4861187", "fields": {"nom_de_la_commune": "TRAMAIN", "libell_d_acheminement": "TRAMAIN", "code_postal": "22640", "coordonnees_gps": [48.3786869246, -2.4244584084], "code_commune_insee": "22341"}, "geometry": {"type": "Point", "coordinates": [-2.4244584084, 48.3786869246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a48813c4685f37e9ae034e915a50b0cabcd62f0", "fields": {"nom_de_la_commune": "TREBRIVAN", "libell_d_acheminement": "TREBRIVAN", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22344"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19a2a8bafe1e44989a1df8ef27d8212d324564d9", "fields": {"nom_de_la_commune": "TREDIAS", "libell_d_acheminement": "TREDIAS", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22348"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87d0803144352a167a14ba16952b7796600bdbc", "fields": {"nom_de_la_commune": "TREGUEUX", "libell_d_acheminement": "TREGUEUX", "code_postal": "22950", "coordonnees_gps": [48.480585356, -2.74472433795], "code_commune_insee": "22360"}, "geometry": {"type": "Point", "coordinates": [-2.74472433795, 48.480585356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6163f6f0b6bd3bafa4db02c1b2e4fb52f55d4947", "fields": {"nom_de_la_commune": "TREGUIER", "libell_d_acheminement": "TREGUIER", "code_postal": "22220", "coordonnees_gps": [48.7897014791, -3.23704501723], "code_commune_insee": "22362"}, "geometry": {"type": "Point", "coordinates": [-3.23704501723, 48.7897014791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52c49d418650a664accf20493cae4319a7c4d322", "fields": {"nom_de_la_commune": "TRELIVAN", "libell_d_acheminement": "TRELIVAN", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22364"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acc8f3a81df6b72c05eb5973b51532ce8c94d5d6", "fields": {"nom_de_la_commune": "TREMEUR", "libell_d_acheminement": "TREMEUR", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22369"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "279f9fc76a5a55288fdfd31c56c6e14c2b693bf3", "fields": {"nom_de_la_commune": "TREVE", "libell_d_acheminement": "TREVE", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22376"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "413cd173f9e683e1efb33f314a6c8b79d3ab73ad", "fields": {"nom_de_la_commune": "TREZENY", "libell_d_acheminement": "TREZENY", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22381"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7781127774ecf59026fae128e03adea07565afe6", "fields": {"nom_de_la_commune": "YVIGNAC LA TOUR", "libell_d_acheminement": "YVIGNAC LA TOUR", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22391"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cf1cf5d177331179ccc5ddff2260cc30117cedc", "fields": {"nom_de_la_commune": "AZERABLES", "libell_d_acheminement": "AZERABLES", "code_postal": "23160", "coordonnees_gps": [46.3627698496, 1.53929968478], "code_commune_insee": "23015"}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d96f3dd8f9869a3a4b8483eb11f5fa08ef0206", "fields": {"nom_de_la_commune": "BANIZE", "libell_d_acheminement": "BANIZE", "code_postal": "23120", "coordonnees_gps": [45.9136291884, 2.02913270433], "code_commune_insee": "23016"}, "geometry": {"type": "Point", "coordinates": [2.02913270433, 45.9136291884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743081e902c335268fac1b6a20d7045f29ef9a9d", "fields": {"nom_de_la_commune": "BELLEGARDE EN MARCHE", "libell_d_acheminement": "BELLEGARDE EN MARCHE", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23020"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4521b937d1cc24d052c57fc341a20f7e0c1f2e3", "fields": {"nom_de_la_commune": "LA CELLE DUNOISE", "libell_d_acheminement": "LA CELLE DUNOISE", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23039"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8baeea0e13e78e4bd519cb14c9a823c53d577b28", "fields": {"nom_de_la_commune": "CHAVANAT", "libell_d_acheminement": "CHAVANAT", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23060"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deac80b802614428ba13db03d8894ea077cbdc8f", "fields": {"nom_de_la_commune": "CHENERAILLES", "libell_d_acheminement": "CHENERAILLES", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23061"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f5ce68f0038a58a29a489424e49dd303fad538f", "fields": {"nom_de_la_commune": "CLAIRAVAUX", "libell_d_acheminement": "CLAIRAVAUX", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23063"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f32eaa58bd478b7cb80cc1d10ae5ead93414cc50", "fields": {"nom_de_la_commune": "LE DONZEIL", "libell_d_acheminement": "LE DONZEIL", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23074"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a0efe0a2f01be2aa4f18ff5359ee4e8e19f51e", "fields": {"nom_de_la_commune": "FELLETIN", "libell_d_acheminement": "FELLETIN", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23079"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f22c837b877d7e59b31137e5a99ebf1965c3d65", "fields": {"nom_de_la_commune": "FONTANIERES", "libell_d_acheminement": "FONTANIERES", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23083"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab1d9c40ab81dcf43944cb1cccdbf6daade7fd66", "fields": {"nom_de_la_commune": "GARTEMPE", "libell_d_acheminement": "GARTEMPE", "code_postal": "23320", "coordonnees_gps": [46.2024027743, 1.74389390315], "code_commune_insee": "23088"}, "geometry": {"type": "Point", "coordinates": [1.74389390315, 46.2024027743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef3e4971d85b0c1f8377a0827e56b6d35182b37", "fields": {"nom_de_la_commune": "JOUILLAT", "libell_d_acheminement": "JOUILLAT", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23101"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf9eb8f11d0b107cffe4d005b6d733d37759e8b", "fields": {"nom_de_la_commune": "LEPAUD", "libell_d_acheminement": "LEPAUD", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23106"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5095b7181af0a21fac1cde4a48847e10d2a8f16b", "fields": {"nom_de_la_commune": "LEYRAT", "libell_d_acheminement": "LEYRAT", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23108"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625128b9df4037c10c85ca973c38e8b3d15b415b", "fields": {"nom_de_la_commune": "LINARD", "libell_d_acheminement": "LINARD", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23109"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a05b8bd9e14b24cb12d3f2180af204c56d77124", "fields": {"nom_de_la_commune": "LIZIERES", "libell_d_acheminement": "LIZIERES", "code_postal": "23240", "coordonnees_gps": [46.1728661103, 1.63437872593], "code_commune_insee": "23111"}, "geometry": {"type": "Point", "coordinates": [1.63437872593, 46.1728661103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29342695ab7f1029b196602ca4ea41ea0c014f8", "fields": {"nom_de_la_commune": "MAISON FEYNE", "libell_d_acheminement": "MAISON FEYNE", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23117"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f95bd2da81400bf130275e4585acef2da7d5d4", "fields": {"nom_de_la_commune": "MALLERET", "libell_d_acheminement": "MALLERET", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23119"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd9cf0aa69d4c5d6fec894afc7981e41a343d42", "fields": {"nom_de_la_commune": "LE MAS D ARTIGE", "libell_d_acheminement": "LE MAS D ARTIGE", "code_postal": "23100", "coordonnees_gps": [45.7268146987, 2.29618213551], "code_commune_insee": "23125"}, "geometry": {"type": "Point", "coordinates": [2.29618213551, 45.7268146987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6d30a26b9aa8d8abe6a35e07d0210c2380a3b7d", "fields": {"nom_de_la_commune": "MERINCHAL", "libell_d_acheminement": "MERINCHAL", "code_postal": "23420", "coordonnees_gps": [45.9083107746, 2.49413853625], "code_commune_insee": "23131"}, "geometry": {"type": "Point", "coordinates": [2.49413853625, 45.9083107746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93bec7506b764009f03cb413ee4087c057d783bb", "fields": {"nom_de_la_commune": "MOURIOUX VIEILLEVILLE", "libell_d_acheminement": "MOURIOUX VIEILLEVILLE", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23137"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a30633192e186e71e5e26eb01be7224096eee674", "fields": {"nom_de_la_commune": "MOUTIER ROZEILLE", "libell_d_acheminement": "MOUTIER ROZEILLE", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23140"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d33e73995e7476bef2aa8044725d69ba7da27ca", "fields": {"nom_de_la_commune": "NOTH", "libell_d_acheminement": "NOTH", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23143"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5c7bee19c94d5659ba3c4979924ccc6059fc37", "fields": {"nom_de_la_commune": "LA NOUAILLE", "libell_d_acheminement": "LA NOUAILLE", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23144"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "616d690c4df66baa8552460c7a223f55c25eadb1", "fields": {"nom_de_la_commune": "PIERREFITTE", "libell_d_acheminement": "PIERREFITTE", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23152"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77fc531832678cca83d91bd379b7d02efc3ed766", "fields": {"nom_de_la_commune": "PONTARION", "libell_d_acheminement": "PONTARION", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23155"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35bf95e16908b4fc7fe128d7a0bc8762a0cf6179", "fields": {"nom_de_la_commune": "LA POUGE", "libell_d_acheminement": "LA POUGE", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23157"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee6f9112ce5ad35a65b3fad3033f406ea45e6a5", "fields": {"nom_de_la_commune": "RETERRE", "libell_d_acheminement": "RETERRE", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23160"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91ef032b71c63126957858a97db230384d6c564", "fields": {"nom_de_la_commune": "SARDENT", "libell_d_acheminement": "SARDENT", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23168"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb4afa7d5ea27addac5ab482ec46c0ce14b4b94", "fields": {"nom_de_la_commune": "SERMUR", "libell_d_acheminement": "SERMUR", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23171"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eddec362991986a1f16400bdd29d40f7f26c34de", "fields": {"nom_de_la_commune": "SOUBREBOST", "libell_d_acheminement": "SOUBREBOST", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23173"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84584595081968015f2c5d20d0238f7891420aa6", "fields": {"nom_de_la_commune": "ST AVIT DE TARDES", "libell_d_acheminement": "ST AVIT DE TARDES", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23182"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d3bfdf27588e3ed3db6503933a4b42bc82f7960", "fields": {"nom_de_la_commune": "ST BARD", "libell_d_acheminement": "ST BARD", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23184"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa2ea610eef7901d780c36f5811c736332e5ce60", "fields": {"nom_de_la_commune": "STE FEYRE", "libell_d_acheminement": "STE FEYRE", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23193"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c8111bf53293d8c30d18232789f4a220856af35", "fields": {"nom_de_la_commune": "ST GEORGES LA POUGE", "libell_d_acheminement": "ST GEORGES LA POUGE", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23197"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bc0e37f99c125d42b22a73b0a428f66a66a490b", "fields": {"nom_de_la_commune": "ST GERMAIN BEAUPRE", "libell_d_acheminement": "ST GERMAIN BEAUPRE", "code_postal": "23160", "coordonnees_gps": [46.3627698496, 1.53929968478], "code_commune_insee": "23199"}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2369cc730acea29086543e84c3231395127c858d", "fields": {"nom_de_la_commune": "ST HILAIRE LA PLAINE", "libell_d_acheminement": "ST HILAIRE LA PLAINE", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23201"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0031c0f8be99a1a5dc3a1b5340c58df7eb5fa0ce", "fields": {"nom_de_la_commune": "ST HILAIRE LE CHATEAU", "libell_d_acheminement": "ST HILAIRE LE CHATEAU", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23202"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "363cdd6e2a94fa4d8245cb80bc482540a5b8d177", "fields": {"nom_de_la_commune": "ST JULIEN LA GENETE", "libell_d_acheminement": "ST JULIEN LA GENETE", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23203"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f246b754582aa6a0b46406bafd7340d82a8f781c", "fields": {"nom_de_la_commune": "ST MARC A FRONGIER", "libell_d_acheminement": "ST MARC A FRONGIER", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23211"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d697b29b9e9624fe91b65ad904aa4765ceef96", "fields": {"code_postal": "23300", "code_commune_insee": "23219", "libell_d_acheminement": "ST MAURICE LA SOUTERRAINE", "ligne_5": "LE DOGNON", "nom_de_la_commune": "ST MAURICE LA SOUTERRAINE", "coordonnees_gps": [46.2460007526, 1.49623466309]}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "608bdeb911a817b24e9704060eca074aa4ea3770", "fields": {"nom_de_la_commune": "ST MEDARD LA ROCHETTE", "libell_d_acheminement": "ST MEDARD LA ROCHETTE", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23220"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb3fed01406a7ba93ce1f80393516cc2cd15209c", "fields": {"nom_de_la_commune": "ST MERD LA BREUILLE", "libell_d_acheminement": "ST MERD LA BREUILLE", "code_postal": "23100", "coordonnees_gps": [45.7268146987, 2.29618213551], "code_commune_insee": "23221"}, "geometry": {"type": "Point", "coordinates": [2.29618213551, 45.7268146987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd9afd869d261bf931124b274c51e126ea9da7a7", "fields": {"nom_de_la_commune": "ST PRIEST", "libell_d_acheminement": "ST PRIEST", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23234"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad48678961ce677ab9b569484d268d2178c2f20", "fields": {"nom_de_la_commune": "ST PRIEST LA FEUILLE", "libell_d_acheminement": "ST PRIEST LA FEUILLE", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23235"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5190459a2af4eb995940c9c114a007d6af6ddfe8", "fields": {"nom_de_la_commune": "ST PRIEST LA PLAINE", "libell_d_acheminement": "ST PRIEST LA PLAINE", "code_postal": "23240", "coordonnees_gps": [46.1728661103, 1.63437872593], "code_commune_insee": "23236"}, "geometry": {"type": "Point", "coordinates": [1.63437872593, 46.1728661103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d9a0400f6ef8b23e5142d39291e64b775c907d", "fields": {"nom_de_la_commune": "ST SILVAIN BELLEGARDE", "libell_d_acheminement": "ST SILVAIN BELLEGARDE", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23241"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4684d8e10c9c3ed21fab9db0690f378854ecd6d7", "fields": {"nom_de_la_commune": "ST SULPICE LE DUNOIS", "libell_d_acheminement": "ST SULPICE LE DUNOIS", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23244"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed8653c0c48d2afa619226d79d567163ee94465", "fields": {"nom_de_la_commune": "VALLIERE", "libell_d_acheminement": "VALLIERE", "code_postal": "23120", "coordonnees_gps": [45.9136291884, 2.02913270433], "code_commune_insee": "23257"}, "geometry": {"type": "Point", "coordinates": [2.02913270433, 45.9136291884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6211d28025dcd1f3a6eba12cb4bb4c0d9f8c21b", "fields": {"nom_de_la_commune": "LA VILLENEUVE", "libell_d_acheminement": "LA VILLENEUVE", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23265"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2a3872e67cbf73068e063d56dc3bb27b1e7e5c", "fields": {"nom_de_la_commune": "ALLES SUR DORDOGNE", "libell_d_acheminement": "ALLES SUR DORDOGNE", "code_postal": "24480", "coordonnees_gps": [44.8133494955, 0.885908136539], "code_commune_insee": "24005"}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11bdd2f6fdff5222ac92ef257002246582e5852", "fields": {"nom_de_la_commune": "ALLEMANS", "libell_d_acheminement": "ALLEMANS", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24007"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca858e0776276a02614cab72a6a76fbe1de8035f", "fields": {"nom_de_la_commune": "ANLHIAC", "libell_d_acheminement": "ANLHIAC", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24009"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0c5c04bf02c0c3416df422ff6fdf700ce2b79fe", "fields": {"nom_de_la_commune": "BASSILLAC", "libell_d_acheminement": "BASSILLAC", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24026"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82669199d8003c093e2cd90dedd2605e129a17d7", "fields": {"code_postal": "24440", "code_commune_insee": "24028", "libell_d_acheminement": "BEAUMONTOIS EN PERIGORD", "ligne_5": "LABOUQUERIE", "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", "coordonnees_gps": [44.7570815244, 0.786200936905]}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d768a654326f18a177dd9d50d4df86f118efae7", "fields": {"nom_de_la_commune": "BEAUREGARD ET BASSAC", "libell_d_acheminement": "BEAUREGARD ET BASSAC", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24031"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a62e30ca79c1909b1c6ba6d2effd2598cef4619", "fields": {"code_postal": "24170", "code_commune_insee": "24035", "libell_d_acheminement": "PAYS DE BELVES", "ligne_5": "ST AMAND DE BELVES", "nom_de_la_commune": "PAYS DE BELVES", "coordonnees_gps": [44.7520136105, 1.04613211786]}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dfde77a419fa356c32fda0280c2ed3418a264f5", "fields": {"nom_de_la_commune": "BERGERAC", "libell_d_acheminement": "BERGERAC", "code_postal": "24100", "coordonnees_gps": [44.8574412518, 0.495284602644], "code_commune_insee": "24037"}, "geometry": {"type": "Point", "coordinates": [0.495284602644, 44.8574412518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "321c48d82e3bca4e96ce2ae5e6794e7e0ff970a0", "fields": {"nom_de_la_commune": "BEYNAC ET CAZENAC", "libell_d_acheminement": "BEYNAC ET CAZENAC", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24040"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28f3b2ec231e976b2f4e1c0b3ddb5ea4a558b50", "fields": {"nom_de_la_commune": "BIRAS", "libell_d_acheminement": "BIRAS", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24042"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "639d2a997ab927f08babd530bb3144d08a05c876", "fields": {"nom_de_la_commune": "BOISSE", "libell_d_acheminement": "BOISSE", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24045"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e021a4d1e4dbeaf6107b71db047d9d2b87bbdf7", "fields": {"nom_de_la_commune": "BOISSEUILH", "libell_d_acheminement": "BOISSEUILH", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24046"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122ebc01b188b463a9cbbca613a05961f3596f29", "fields": {"nom_de_la_commune": "BORREZE", "libell_d_acheminement": "BORREZE", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24050"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a01ad06df82bb5a4f82bc78cfd8738c7ffc28dd7", "fields": {"nom_de_la_commune": "BOUTEILLES ST SEBASTIEN", "libell_d_acheminement": "BOUTEILLES ST SEBASTIEN", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24062"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe184a4add79e2ce9cf2529af2dbc072ad1a93c5", "fields": {"code_postal": "24250", "code_commune_insee": "24086", "libell_d_acheminement": "CASTELNAUD LA CHAPELLE", "ligne_5": "LA CHAPELLE PECHAUD", "nom_de_la_commune": "CASTELNAUD LA CHAPELLE", "coordonnees_gps": [44.774302218, 1.21332262796]}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a55dccf12dbeae0aec640e4308a7cf95b7e70e0", "fields": {"nom_de_la_commune": "CAZOULES", "libell_d_acheminement": "CAZOULES", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24089"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae02a73c8be785941dd083e46e160588942c7576", "fields": {"nom_de_la_commune": "CENDRIEUX", "libell_d_acheminement": "CENDRIEUX", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24092"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "455d3781278a7206d6778ca9a0ae111bbee2b8c9", "fields": {"nom_de_la_commune": "CHANCELADE", "libell_d_acheminement": "CHANCELADE", "code_postal": "24650", "coordonnees_gps": [45.2097414862, 0.655505386092], "code_commune_insee": "24102"}, "geometry": {"type": "Point", "coordinates": [0.655505386092, 45.2097414862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd9c41d4fea084fb16b78e3fb8fdc954ee15001", "fields": {"nom_de_la_commune": "LA CHAPELLE GRESIGNAC", "libell_d_acheminement": "LA CHAPELLE GRESIGNAC", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24109"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6946f21c366c49d5cd38bf3db10cbcbf7ef86147", "fields": {"nom_de_la_commune": "CHERVEIX CUBAS", "libell_d_acheminement": "CHERVEIX CUBAS", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24120"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec044ff7b127b316352acf83d77a09486491881c", "fields": {"nom_de_la_commune": "COLOMBIER", "libell_d_acheminement": "COLOMBIER", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24126"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "513f420de3d431d7a5cc36745392a9cb32c8d6bd", "fields": {"nom_de_la_commune": "CONDAT SUR TRINCOU", "libell_d_acheminement": "CONDAT SUR TRINCOU", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24129"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd1cc84f2bc0528418c14a22d21afb800e698db3", "fields": {"nom_de_la_commune": "LA COQUILLE", "libell_d_acheminement": "LA COQUILLE", "code_postal": "24450", "coordonnees_gps": [45.5667064353, 0.957966162426], "code_commune_insee": "24133"}, "geometry": {"type": "Point", "coordinates": [0.957966162426, 45.5667064353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "515f5ce8f6dbbe04066cb38e0e2ef73f5c614bc8", "fields": {"nom_de_la_commune": "COURSAC", "libell_d_acheminement": "COURSAC", "code_postal": "24430", "coordonnees_gps": [45.1552585356, 0.627698357906], "code_commune_insee": "24139"}, "geometry": {"type": "Point", "coordinates": [0.627698357906, 45.1552585356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7044ace58756e5e7212e4245fe95a63e7eb109ee", "fields": {"nom_de_la_commune": "COURS DE PILE", "libell_d_acheminement": "COURS DE PILE", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24140"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9139808e2ab901597e7c98272183dc7096193ee5", "fields": {"nom_de_la_commune": "CREYSSAC", "libell_d_acheminement": "CREYSSAC", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24144"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca01bb6b8cfd3eba4688558913743e7b611d7aaf", "fields": {"nom_de_la_commune": "CREYSSENSAC ET PISSOT", "libell_d_acheminement": "CREYSSENSAC ET PISSOT", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24146"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fb9796295dba95accb0f4e6a0e6840f3f58d4b4", "fields": {"nom_de_la_commune": "DOUCHAPT", "libell_d_acheminement": "DOUCHAPT", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24154"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d40dd603423c093833713430ad0e3dd807b0e1", "fields": {"nom_de_la_commune": "EXCIDEUIL", "libell_d_acheminement": "EXCIDEUIL", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24164"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf32dfe0195d844da81699f2a17e6f00e79aa4d4", "fields": {"nom_de_la_commune": "EYMET", "libell_d_acheminement": "EYMET", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24167"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84996d54523e92b879c81f03ed5230208ef34752", "fields": {"nom_de_la_commune": "PLAISANCE", "libell_d_acheminement": "PLAISANCE", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24168"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "548233eabd9f5ec2e976f0f1968645ef5e14f92c", "fields": {"nom_de_la_commune": "NOMAIN", "libell_d_acheminement": "NOMAIN", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59435"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417e0f8f63eaa38a661224fe05f7e2ae8a845bff", "fields": {"nom_de_la_commune": "NOYELLES SUR ESCAUT", "libell_d_acheminement": "NOYELLES SUR ESCAUT", "code_postal": "59159", "coordonnees_gps": [50.1152893393, 3.16124259033], "code_commune_insee": "59438"}, "geometry": {"type": "Point", "coordinates": [3.16124259033, 50.1152893393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1509ef1b17fa6c6c8122665ad67e64149c7e66a8", "fields": {"nom_de_la_commune": "NOYELLES SUR SELLE", "libell_d_acheminement": "NOYELLES SUR SELLE", "code_postal": "59282", "coordonnees_gps": [50.2922712188, 3.38676423014], "code_commune_insee": "59440"}, "geometry": {"type": "Point", "coordinates": [3.38676423014, 50.2922712188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae3a31be9216d90413d7c92c888a7cddc2b7b7a", "fields": {"nom_de_la_commune": "OBIES", "libell_d_acheminement": "OBIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59441"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58f2f1a556e7fef6a9294e40f2516981efec3797", "fields": {"nom_de_la_commune": "OOST CAPPEL", "libell_d_acheminement": "OOST CAPPEL", "code_postal": "59122", "coordonnees_gps": [50.9782311457, 2.55726472129], "code_commune_insee": "59448"}, "geometry": {"type": "Point", "coordinates": [2.55726472129, 50.9782311457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fde774848730214e820fbaa5d5523d06e3197a5", "fields": {"nom_de_la_commune": "ORCHIES", "libell_d_acheminement": "ORCHIES", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59449"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b80e7dea7df18e9b81500acf2e069fa4a26ce13", "fields": {"nom_de_la_commune": "ORSINVAL", "libell_d_acheminement": "ORSINVAL", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59451"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9202e58379c5540881bec47d5f535d5cc67e0403", "fields": {"nom_de_la_commune": "OUDEZEELE", "libell_d_acheminement": "OUDEZEELE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59453"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6390ae44ce3e3ef9a604b13fac57cbceefcf7819", "fields": {"nom_de_la_commune": "PITGAM", "libell_d_acheminement": "PITGAM", "code_postal": "59284", "coordonnees_gps": [50.9300434284, 2.3406993946], "code_commune_insee": "59463"}, "geometry": {"type": "Point", "coordinates": [2.3406993946, 50.9300434284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a19dba2feef8c5be4bef378a497c5e173f090c13", "fields": {"nom_de_la_commune": "POIX DU NORD", "libell_d_acheminement": "POIX DU NORD", "code_postal": "59218", "coordonnees_gps": [50.188036681, 3.59383349158], "code_commune_insee": "59464"}, "geometry": {"type": "Point", "coordinates": [3.59383349158, 50.188036681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0590df0118601c9ade92cc664047f1d32ff6b48d", "fields": {"nom_de_la_commune": "POMMEREUIL", "libell_d_acheminement": "POMMEREUIL", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59465"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8ac0d95d66c5c213f50251aa3cb7e0f2563096f", "fields": {"nom_de_la_commune": "PONT SUR SAMBRE", "libell_d_acheminement": "PONT SUR SAMBRE", "code_postal": "59138", "coordonnees_gps": [50.2338166677, 3.85860343752], "code_commune_insee": "59467"}, "geometry": {"type": "Point", "coordinates": [3.85860343752, 50.2338166677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b0d0823af3e538c98014fbda1db5aef845ace6c", "fields": {"nom_de_la_commune": "PREMESQUES", "libell_d_acheminement": "PREMESQUES", "code_postal": "59840", "coordonnees_gps": [50.6641115451, 2.96705892746], "code_commune_insee": "59470"}, "geometry": {"type": "Point", "coordinates": [2.96705892746, 50.6641115451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceb8b80054f68c2af59dc94c3145a3b633b288d5", "fields": {"nom_de_la_commune": "PROVILLE", "libell_d_acheminement": "PROVILLE", "code_postal": "59267", "coordonnees_gps": [50.14197399, 3.16014006865], "code_commune_insee": "59476"}, "geometry": {"type": "Point", "coordinates": [3.16014006865, 50.14197399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab193e97c2862849798ed32b83c6b942a7ef13a9", "fields": {"nom_de_la_commune": "QUAEDYPRE", "libell_d_acheminement": "QUAEDYPRE", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59478"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11394c43224fe8ce7bdd4fbacce68c71c8b1d222", "fields": {"nom_de_la_commune": "QUAROUBLE", "libell_d_acheminement": "QUAROUBLE", "code_postal": "59243", "coordonnees_gps": [50.4026527101, 3.62777454], "code_commune_insee": "59479"}, "geometry": {"type": "Point", "coordinates": [3.62777454, 50.4026527101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbdc295bd1c9a26462cda894b87ae355afed0cb6", "fields": {"nom_de_la_commune": "QUIEVRECHAIN", "libell_d_acheminement": "QUIEVRECHAIN", "code_postal": "59920", "coordonnees_gps": [50.3920105185, 3.65986336367], "code_commune_insee": "59484"}, "geometry": {"type": "Point", "coordinates": [3.65986336367, 50.3920105185]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27384ede72fc9549b791e4b887190f12bf3691c7", "fields": {"code_postal": "59920", "code_commune_insee": "59484", "libell_d_acheminement": "QUIEVRECHAIN", "ligne_5": "BLANC MISSERON", "nom_de_la_commune": "QUIEVRECHAIN", "coordonnees_gps": [50.3920105185, 3.65986336367]}, "geometry": {"type": "Point", "coordinates": [3.65986336367, 50.3920105185]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24284466e745312e09e4f184438c12e4fd6bb85", "fields": {"nom_de_la_commune": "QUIEVY", "libell_d_acheminement": "QUIEVY", "code_postal": "59214", "coordonnees_gps": [50.1631137023, 3.42269935978], "code_commune_insee": "59485"}, "geometry": {"type": "Point", "coordinates": [3.42269935978, 50.1631137023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81aae882aa3fbf8e3cedf6f2f01e7292b60f0551", "fields": {"nom_de_la_commune": "RACHES", "libell_d_acheminement": "RACHES", "code_postal": "59194", "coordonnees_gps": [50.4161128378, 3.14174159912], "code_commune_insee": "59486"}, "geometry": {"type": "Point", "coordinates": [3.14174159912, 50.4161128378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032115f4704f385e98ff25fe7b27db7cfb244837", "fields": {"nom_de_la_commune": "RAMILLIES", "libell_d_acheminement": "RAMILLIES", "code_postal": "59161", "coordonnees_gps": [50.1987116728, 3.28713967931], "code_commune_insee": "59492"}, "geometry": {"type": "Point", "coordinates": [3.28713967931, 50.1987116728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e8f1b23ec8507a4af3e78bc273f5a5d0fb4adf5", "fields": {"nom_de_la_commune": "REJET DE BEAULIEU", "libell_d_acheminement": "REJET DE BEAULIEU", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59496"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c816325f7060970579fa8c31a85336e206ec7f6", "fields": {"nom_de_la_commune": "RIBECOURT LA TOUR", "libell_d_acheminement": "RIBECOURT LA TOUR", "code_postal": "59159", "coordonnees_gps": [50.1152893393, 3.16124259033], "code_commune_insee": "59500"}, "geometry": {"type": "Point", "coordinates": [3.16124259033, 50.1152893393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b611d78a5e94b36b78017b0c8810dafb39132e", "fields": {"nom_de_la_commune": "RIEULAY", "libell_d_acheminement": "RIEULAY", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59501"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee9a9f7f8393228e1848630f9fe6cd1528a4ca72", "fields": {"nom_de_la_commune": "ROEULX", "libell_d_acheminement": "ROEULX", "code_postal": "59172", "coordonnees_gps": [50.3090205997, 3.30898360738], "code_commune_insee": "59504"}, "geometry": {"type": "Point", "coordinates": [3.30898360738, 50.3090205997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8d366ae69243461ad65282b41699224ebcda1f1", "fields": {"nom_de_la_commune": "ROUCOURT", "libell_d_acheminement": "ROUCOURT", "code_postal": "59169", "coordonnees_gps": [50.3188008385, 3.12364772716], "code_commune_insee": "59513"}, "geometry": {"type": "Point", "coordinates": [3.12364772716, 50.3188008385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e62981b5ed5099f5fecb7cab82eb2df629706452", "fields": {"nom_de_la_commune": "ROUSIES", "libell_d_acheminement": "ROUSIES", "code_postal": "59131", "coordonnees_gps": [50.2717476027, 3.99907995948], "code_commune_insee": "59514"}, "geometry": {"type": "Point", "coordinates": [3.99907995948, 50.2717476027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d8e55ec06f2917fc3f287cc15e675659e654c71", "fields": {"nom_de_la_commune": "ROUVIGNIES", "libell_d_acheminement": "ROUVIGNIES", "code_postal": "59220", "coordonnees_gps": [50.331558265, 3.40464647794], "code_commune_insee": "59515"}, "geometry": {"type": "Point", "coordinates": [3.40464647794, 50.331558265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0b7b1c471b423e4bf81f68f86d05724dc4d814", "fields": {"nom_de_la_commune": "SAINGHIN EN WEPPES", "libell_d_acheminement": "SAINGHIN EN WEPPES", "code_postal": "59184", "coordonnees_gps": [50.5586252814, 2.89724093973], "code_commune_insee": "59524"}, "geometry": {"type": "Point", "coordinates": [2.89724093973, 50.5586252814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914c00db857529ba0eaba92f5128ae296d2be9ed", "fields": {"nom_de_la_commune": "ST HILAIRE SUR HELPE", "libell_d_acheminement": "ST HILAIRE SUR HELPE", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59534"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96af03e4d3d1df520b3f87fb7ff9606ee610129d", "fields": {"nom_de_la_commune": "ST JANS CAPPEL", "libell_d_acheminement": "ST JANS CAPPEL", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59535"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "185a011ce0f7c12f75a29459d10bbc5a0ae9157b", "fields": {"nom_de_la_commune": "ST PYTHON", "libell_d_acheminement": "ST PYTHON", "code_postal": "59730", "coordonnees_gps": [50.1806606643, 3.51245734771], "code_commune_insee": "59541"}, "geometry": {"type": "Point", "coordinates": [3.51245734771, 50.1806606643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a7518762786b66fb21f8fc5a8eaf245f9114e45", "fields": {"nom_de_la_commune": "ST REMY CHAUSSEE", "libell_d_acheminement": "ST REMY CHAUSSEE", "code_postal": "59620", "coordonnees_gps": [50.1872040884, 3.853225186], "code_commune_insee": "59542"}, "geometry": {"type": "Point", "coordinates": [3.853225186, 50.1872040884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebb9a20f28fa5b7f107a030b687c545fd742fc8", "fields": {"code_postal": "59360", "code_commune_insee": "59545", "libell_d_acheminement": "ST SOUPLET", "ligne_5": "ESCAUFOURT", "nom_de_la_commune": "ST SOUPLET", "coordonnees_gps": [50.0869230183, 3.58161803685]}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9d378058ad5967303643e3e6ab4a67672fc944f", "fields": {"nom_de_la_commune": "ST SYLVESTRE CAPPEL", "libell_d_acheminement": "ST SYLVESTRE CAPPEL", "code_postal": "59114", "coordonnees_gps": [50.8038796466, 2.57811297783], "code_commune_insee": "59546"}, "geometry": {"type": "Point", "coordinates": [2.57811297783, 50.8038796466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ce6a94240b2530f673ee567a9fcdafef63c060", "fields": {"nom_de_la_commune": "SARS ET ROSIERES", "libell_d_acheminement": "SARS ET ROSIERES", "code_postal": "59230", "coordonnees_gps": [50.4489515034, 3.43065651887], "code_commune_insee": "59554"}, "geometry": {"type": "Point", "coordinates": [3.43065651887, 50.4489515034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb3fc60295a520a3a922c7d350c8489818314cf6", "fields": {"nom_de_la_commune": "SAULTAIN", "libell_d_acheminement": "SAULTAIN", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59557"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe8708cf7b684a4c0167baf32d9811b812b9d7a8", "fields": {"nom_de_la_commune": "SEMERIES", "libell_d_acheminement": "SEMERIES", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59562"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c03c8dfed0cb9e4afd91a513f92d21ea9d7320", "fields": {"nom_de_la_commune": "SEQUEDIN", "libell_d_acheminement": "SEQUEDIN", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59566"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8021051f89f33e8bafa99d16be579c4c503591", "fields": {"nom_de_la_commune": "SOLRINNES", "libell_d_acheminement": "SOLRINNES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59573"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6fd3c0d7a9bb0053cd9ec657fe56b80889b8dd6", "fields": {"nom_de_la_commune": "SPYCKER", "libell_d_acheminement": "SPYCKER", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59576"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c381403ac7cf3ec90d9f3a2993816710dedfb8b2", "fields": {"nom_de_la_commune": "STEENE", "libell_d_acheminement": "STEENE", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59579"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb1e1179d27d3348f6f85dcc32047aa49e3ff52", "fields": {"nom_de_la_commune": "STEENWERCK", "libell_d_acheminement": "STEENWERCK", "code_postal": "59181", "coordonnees_gps": [50.6868143298, 2.76936799525], "code_commune_insee": "59581"}, "geometry": {"type": "Point", "coordinates": [2.76936799525, 50.6868143298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9825f19f17d0352994e307657a2ec60accbfafbf", "fields": {"code_postal": "59181", "code_commune_insee": "59581", "libell_d_acheminement": "STEENWERCK", "ligne_5": "CROIX DU BAC", "nom_de_la_commune": "STEENWERCK", "coordonnees_gps": [50.6868143298, 2.76936799525]}, "geometry": {"type": "Point", "coordinates": [2.76936799525, 50.6868143298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c4e64f656d86480ceba7ae4c0da8dd054e18643", "fields": {"nom_de_la_commune": "TAISNIERES EN THIERACHE", "libell_d_acheminement": "TAISNIERES EN THIERACHE", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59583"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca7ee249e46a36aadb02b6b8157bcc6d7e858aa2", "fields": {"nom_de_la_commune": "THIANT", "libell_d_acheminement": "THIANT", "code_postal": "59224", "coordonnees_gps": [50.2929263496, 3.44612493476], "code_commune_insee": "59589"}, "geometry": {"type": "Point", "coordinates": [3.44612493476, 50.2929263496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "344777453300a7be0ef7340d0aa98de19c9dac35", "fields": {"nom_de_la_commune": "THUN ST AMAND", "libell_d_acheminement": "THUN ST AMAND", "code_postal": "59158", "coordonnees_gps": [50.504294197, 3.46542876217], "code_commune_insee": "59594"}, "geometry": {"type": "Point", "coordinates": [3.46542876217, 50.504294197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c014228dd5b25d3771041938538752225d6be9", "fields": {"nom_de_la_commune": "TILLOY LEZ CAMBRAI", "libell_d_acheminement": "TILLOY LEZ CAMBRAI", "code_postal": "59554", "coordonnees_gps": [50.1997132829, 3.19825969693], "code_commune_insee": "59597"}, "geometry": {"type": "Point", "coordinates": [3.19825969693, 50.1997132829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3649fe6255fc8017633bb20e7e5301c89e34605", "fields": {"nom_de_la_commune": "TOUFFLERS", "libell_d_acheminement": "TOUFFLERS", "code_postal": "59390", "coordonnees_gps": [50.657732592, 3.22516990677], "code_commune_insee": "59598"}, "geometry": {"type": "Point", "coordinates": [3.22516990677, 50.657732592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "729a37eaa1d7c29b00ffe54dae243be5f15286ba", "fields": {"nom_de_la_commune": "TRELON", "libell_d_acheminement": "TRELON", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59601"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63efd81121bdde3d5ba3d49694485fe8b3936289", "fields": {"code_postal": "59530", "code_commune_insee": "59619", "libell_d_acheminement": "VILLEREAU", "ligne_5": "HERBIGNIES VILLEREAU", "nom_de_la_commune": "VILLEREAU", "coordonnees_gps": [50.223224015, 3.68515855463]}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c35927867c792a87d295e06c7f9ce2c8d06af65", "fields": {"nom_de_la_commune": "VILLERS OUTREAUX", "libell_d_acheminement": "VILLERS OUTREAUX", "code_postal": "59142", "coordonnees_gps": [50.0299399327, 3.29180819068], "code_commune_insee": "59624"}, "geometry": {"type": "Point", "coordinates": [3.29180819068, 50.0299399327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d38bfadee66e27ed02abb196ca2228fd35a73828", "fields": {"nom_de_la_commune": "VILLERS POL", "libell_d_acheminement": "VILLERS POL", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59626"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e8b6822a97112b7abff7b127b097d6064bcc377", "fields": {"code_postal": "59127", "code_commune_insee": "59631", "libell_d_acheminement": "WALINCOURT SELVIGNY", "ligne_5": "SELVIGNY", "nom_de_la_commune": "WALINCOURT SELVIGNY", "coordonnees_gps": [50.0669008118, 3.33260202285]}, "geometry": {"type": "Point", "coordinates": [3.33260202285, 50.0669008118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "597cfdd93f3dd4b4cf4af4266462d4c5530bc7e7", "fields": {"nom_de_la_commune": "WANDIGNIES HAMAGE", "libell_d_acheminement": "WANDIGNIES HAMAGE", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59637"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "855eba775142e51839b5987a8c909d8a1827aa25", "fields": {"nom_de_la_commune": "WASNES AU BAC", "libell_d_acheminement": "WASNES AU BAC", "code_postal": "59252", "coordonnees_gps": [50.2842668858, 3.25374088253], "code_commune_insee": "59645"}, "geometry": {"type": "Point", "coordinates": [3.25374088253, 50.2842668858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db57ad67552c0387abb58749d20c202778699128", "fields": {"nom_de_la_commune": "WATTIGNIES LA VICTOIRE", "libell_d_acheminement": "WATTIGNIES LA VICTOIRE", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59649"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9920c2e9e435a02fe93e67114bc1bced8136a567", "fields": {"nom_de_la_commune": "WAVRECHAIN SOUS DENAIN", "libell_d_acheminement": "WAVRECHAIN SOUS DENAIN", "code_postal": "59220", "coordonnees_gps": [50.331558265, 3.40464647794], "code_commune_insee": "59651"}, "geometry": {"type": "Point", "coordinates": [3.40464647794, 50.331558265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c363d260e525c2ce5ae6c47f98f9aae77ce40514", "fields": {"nom_de_la_commune": "WAVRECHAIN SOUS FAULX", "libell_d_acheminement": "WAVRECHAIN SOUS FAULX", "code_postal": "59111", "coordonnees_gps": [50.2733776483, 3.31798741017], "code_commune_insee": "59652"}, "geometry": {"type": "Point", "coordinates": [3.31798741017, 50.2733776483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a68a18d4e6f77d91ed2bb8d0b5ddbc24a9f9e926", "fields": {"nom_de_la_commune": "WAZIERS", "libell_d_acheminement": "WAZIERS", "code_postal": "59119", "coordonnees_gps": [50.3855065324, 3.11218708685], "code_commune_insee": "59654"}, "geometry": {"type": "Point", "coordinates": [3.11218708685, 50.3855065324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc45965893597839ee7e149b8f33d1ef13711b3", "fields": {"nom_de_la_commune": "ABBEVILLE ST LUCIEN", "libell_d_acheminement": "ABBEVILLE ST LUCIEN", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60003"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b323c46250f8567d73cf7de973855604385ef8", "fields": {"nom_de_la_commune": "AIRION", "libell_d_acheminement": "AIRION", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60008"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1e4aa91c35807073fcc696fb650f87b133c46d3", "fields": {"nom_de_la_commune": "ALLONNE", "libell_d_acheminement": "ALLONNE", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60009"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1651c274e44da5939ce0b89547e827592202c494", "fields": {"nom_de_la_commune": "AMBLAINVILLE", "libell_d_acheminement": "AMBLAINVILLE", "code_postal": "60110", "coordonnees_gps": [49.232969162, 2.13061952998], "code_commune_insee": "60010"}, "geometry": {"type": "Point", "coordinates": [2.13061952998, 49.232969162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a46fd3e23ff871c92ba5f1fea98bc80f78c0d50", "fields": {"nom_de_la_commune": "ANGICOURT", "libell_d_acheminement": "ANGICOURT", "code_postal": "60940", "coordonnees_gps": [49.322780883, 2.53673238341], "code_commune_insee": "60013"}, "geometry": {"type": "Point", "coordinates": [2.53673238341, 49.322780883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6481398abae172d76b921c4a6c3186dacfa0738", "fields": {"nom_de_la_commune": "ANTILLY", "libell_d_acheminement": "ANTILLY", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60020"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "270f906093e6a2506c11a35f30fc7c331372ecf3", "fields": {"nom_de_la_commune": "ATTICHY", "libell_d_acheminement": "ATTICHY", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60025"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c2a3108c0f8e18ffd9e1daa376fea7432d886c3", "fields": {"nom_de_la_commune": "AUNEUIL", "libell_d_acheminement": "AUNEUIL", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60029"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d391469b2cf00706dc9e9c1e60ed9784c0be7935", "fields": {"nom_de_la_commune": "BAILLEUL LE SOC", "libell_d_acheminement": "BAILLEUL LE SOC", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60040"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd8f796970d7b6573ccb64cf74787db07cea09d5", "fields": {"nom_de_la_commune": "BAUGY", "libell_d_acheminement": "BAUGY", "code_postal": "60113", "coordonnees_gps": [49.468392159, 2.74988902801], "code_commune_insee": "60048"}, "geometry": {"type": "Point", "coordinates": [2.74988902801, 49.468392159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee2376b7f9f5fa03561a539abf844c79f6a9ce1", "fields": {"nom_de_la_commune": "BEHERICOURT", "libell_d_acheminement": "BEHERICOURT", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60059"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9529585bc18d9e4ce8076b478e6a48c4ae20f1d", "fields": {"nom_de_la_commune": "BETHISY ST MARTIN", "libell_d_acheminement": "BETHISY ST MARTIN", "code_postal": "60320", "coordonnees_gps": [49.2987381345, 2.79474571672], "code_commune_insee": "60067"}, "geometry": {"type": "Point", "coordinates": [2.79474571672, 49.2987381345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c93f2792f0230e445b3a6c4a0dc90f8bd036a27", "fields": {"nom_de_la_commune": "BETHISY ST PIERRE", "libell_d_acheminement": "BETHISY ST PIERRE", "code_postal": "60320", "coordonnees_gps": [49.2987381345, 2.79474571672], "code_commune_insee": "60068"}, "geometry": {"type": "Point", "coordinates": [2.79474571672, 49.2987381345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00139305c990062794bfe4a509574a6ad9774e31", "fields": {"nom_de_la_commune": "BETZ", "libell_d_acheminement": "BETZ", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60069"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75fa6fd90502acdfc2e0d5ca8672ba528e714c1f", "fields": {"nom_de_la_commune": "BLANCFOSSE", "libell_d_acheminement": "BLANCFOSSE", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60075"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8ad51384917e17680dc22ec24800d27a3d6820", "fields": {"nom_de_la_commune": "BOISSY LE BOIS", "libell_d_acheminement": "BOISSY LE BOIS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60080"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b315d8e60de009b7850f45ef899c1d5f00e7f5a0", "fields": {"nom_de_la_commune": "BONLIER", "libell_d_acheminement": "BONLIER", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60081"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f6304bcfe6e9f03fc0a1f89cf69550a6156a615", "fields": {"nom_de_la_commune": "BONNEUIL EN VALOIS", "libell_d_acheminement": "BONNEUIL EN VALOIS", "code_postal": "60123", "coordonnees_gps": [49.2803594207, 2.98767047499], "code_commune_insee": "60083"}, "geometry": {"type": "Point", "coordinates": [2.98767047499, 49.2803594207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "529527be04ee90993efdaddd2b17a86cf4962ab1", "fields": {"nom_de_la_commune": "BORNEL", "libell_d_acheminement": "BORNEL", "code_postal": "60540", "coordonnees_gps": [49.1970454016, 2.20454103263], "code_commune_insee": "60088"}, "geometry": {"type": "Point", "coordinates": [2.20454103263, 49.1970454016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13bdfdc05d9ab07bad7cbb8ef1c8a46ee06e73a7", "fields": {"nom_de_la_commune": "BOUTAVENT", "libell_d_acheminement": "BOUTAVENT", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60096"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f80b42c21d00767d33059de26e4ea427f3c3bd61", "fields": {"nom_de_la_commune": "BOUTENCOURT", "libell_d_acheminement": "BOUTENCOURT", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60097"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeecc3dbecf542f0235684a44167f04032bb1af0", "fields": {"nom_de_la_commune": "BRESLES", "libell_d_acheminement": "BRESLES", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60103"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ced5655fee561d883726271586b01e642a5d693", "fields": {"nom_de_la_commune": "BRETIGNY", "libell_d_acheminement": "BRETIGNY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60105"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c93b5a59911d0f215d4830250cc93413578d62", "fields": {"nom_de_la_commune": "BREUIL LE SEC", "libell_d_acheminement": "BREUIL LE SEC", "code_postal": "60840", "coordonnees_gps": [49.3800366036, 2.49101738028], "code_commune_insee": "60106"}, "geometry": {"type": "Point", "coordinates": [2.49101738028, 49.3800366036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fab0cffd3df8ae7ade3d150b17c7095fa5407b65", "fields": {"nom_de_la_commune": "BROMBOS", "libell_d_acheminement": "BROMBOS", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60109"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a32b83b41c1f1faf1b272e21f90bd4818b0e79", "fields": {"nom_de_la_commune": "BROQUIERS", "libell_d_acheminement": "BROQUIERS", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60110"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45734cedb5745685ed0cd3c57982aa27be065a6d", "fields": {"nom_de_la_commune": "BROYES", "libell_d_acheminement": "BROYES", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60111"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38dbc30ad057b660148b223bacc316154c16d8b", "fields": {"nom_de_la_commune": "BRUNVILLERS LA MOTTE", "libell_d_acheminement": "BRUNVILLERS LA MOTTE", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60112"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c84013e41bcb7f66af8caf8fb2588f46a50facfa", "fields": {"nom_de_la_commune": "BUCAMPS", "libell_d_acheminement": "BUCAMPS", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60113"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bec7c3128251f081ec6e6e718d34aa61f14f290", "fields": {"nom_de_la_commune": "BUSSY", "libell_d_acheminement": "BUSSY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60117"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "700918c676f62a9fa47af7db3738d0830a91a144", "fields": {"nom_de_la_commune": "CANDOR", "libell_d_acheminement": "CANDOR", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60124"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16fa7b081993f5b67bb1aa4e37f22de04e1b17d4", "fields": {"nom_de_la_commune": "CANNY SUR THERAIN", "libell_d_acheminement": "CANNY SUR THERAIN", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60128"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7fe178f19354594ca5b1e39905c2be44b154694", "fields": {"nom_de_la_commune": "CHAMANT", "libell_d_acheminement": "CHAMANT", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60138"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac44affb304140674f96e78023b5d15275812ab8", "fields": {"nom_de_la_commune": "CHEVREVILLE", "libell_d_acheminement": "CHEVREVILLE", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60148"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac728000eb7e866f425671cd5a9505692c4e84b", "fields": {"nom_de_la_commune": "CHEVRIERES", "libell_d_acheminement": "CHEVRIERES", "code_postal": "60710", "coordonnees_gps": [49.343381616, 2.66813985407], "code_commune_insee": "60149"}, "geometry": {"type": "Point", "coordinates": [2.66813985407, 49.343381616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064a6f087af8077349ee88832028a38596194e52", "fields": {"nom_de_la_commune": "CHIRY OURSCAMP", "libell_d_acheminement": "CHIRY OURSCAMP", "code_postal": "60138", "coordonnees_gps": [49.530957314, 2.96949803106], "code_commune_insee": "60150"}, "geometry": {"type": "Point", "coordinates": [2.96949803106, 49.530957314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b12a748bf21aa2a277dd0905581f0abe4947556c", "fields": {"nom_de_la_commune": "CHOISY LA VICTOIRE", "libell_d_acheminement": "CHOISY LA VICTOIRE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60152"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd0b9f1567cee561bb40c5d3ca84938157396a9a", "fields": {"nom_de_la_commune": "CIRES LES MELLO", "libell_d_acheminement": "CIRES LES MELLO", "code_postal": "60660", "coordonnees_gps": [49.2665303301, 2.368580624], "code_commune_insee": "60155"}, "geometry": {"type": "Point", "coordinates": [2.368580624, 49.2665303301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c00292a9998bdbcaec4aaadba6ebb4310267c3b2", "fields": {"nom_de_la_commune": "CORMEILLES", "libell_d_acheminement": "CORMEILLES", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60163"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0361889b3213d0b6883b6792b441f2d3c6602cf5", "fields": {"nom_de_la_commune": "COUDUN", "libell_d_acheminement": "COUDUN", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60166"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24834a7f9b5fc70d26b465a043c3a724c6b36aca", "fields": {"nom_de_la_commune": "PARNAC", "libell_d_acheminement": "PARNAC", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46214"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e58755c9b3f1177d292004782fd742a976f1b326", "fields": {"nom_de_la_commune": "PINSAC", "libell_d_acheminement": "PINSAC", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46220"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8b5d68f54478527b5d3895174bc51d685719077", "fields": {"nom_de_la_commune": "POMAREDE", "libell_d_acheminement": "POMAREDE", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46222"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2fe6c2d86477ab40164465a27f4bd0891d749f3", "fields": {"nom_de_la_commune": "QUISSAC", "libell_d_acheminement": "QUISSAC", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46233"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ea3ead002a4859c30c585dbc2ec312c102e453", "fields": {"nom_de_la_commune": "RIGNAC", "libell_d_acheminement": "RIGNAC", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46238"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff4bf72263124dfe55d134bf043fa36e210a7926", "fields": {"nom_de_la_commune": "RUDELLE", "libell_d_acheminement": "RUDELLE", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46242"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b639ddb50d7eca6910b231b7715aff5fa406746d", "fields": {"nom_de_la_commune": "STE ALAUZIE", "libell_d_acheminement": "STE ALAUZIE", "code_postal": "46170", "coordonnees_gps": [44.2978599733, 1.37150326445], "code_commune_insee": "46248"}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b711fd8ede08d4ca5a8e8a815c475b2df96dd785", "fields": {"code_postal": "46360", "code_commune_insee": "46252", "libell_d_acheminement": "LES PECHS DU VERS", "ligne_5": "ST MARTIN DE VERS", "nom_de_la_commune": "LES PECHS DU VERS", "coordonnees_gps": [44.5788373248, 1.59698113973]}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ae50ddf305a1bcaf798e1f44a94f715647feaa", "fields": {"nom_de_la_commune": "ST CIRQ LAPOPIE", "libell_d_acheminement": "ST CIRQ LAPOPIE", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46256"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c7838091d2be2d2544783524886f42a1cbaad49", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46260"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a865b17739eb43ae7fda50e3f203c7dee32daa9", "fields": {"nom_de_la_commune": "ST GERMAIN DU BEL AIR", "libell_d_acheminement": "ST GERMAIN DU BEL AIR", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46267"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb79fb84eb0f4b0c04b401453e2a6c9459656810", "fields": {"nom_de_la_commune": "ST LAURENT LES TOURS", "libell_d_acheminement": "ST LAURENT LES TOURS", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46273"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5b3d475bab207e7c4c13e9e87aebf6988099d3c", "fields": {"nom_de_la_commune": "ST MARTIN LE REDON", "libell_d_acheminement": "ST MARTIN LE REDON", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46277"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293ba4f2b9d189ff9a960b419ec08b2ab01645dd", "fields": {"nom_de_la_commune": "ST MAURICE EN QUERCY", "libell_d_acheminement": "ST MAURICE EN QUERCY", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46279"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7143401f09f3c2e066407347232696d035d57ccc", "fields": {"nom_de_la_commune": "ST MICHEL LOUBEJOU", "libell_d_acheminement": "ST MICHEL LOUBEJOU", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46284"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a05c20bff1ad8576752f8fe4023e6ca174f49329", "fields": {"nom_de_la_commune": "SARRAZAC", "libell_d_acheminement": "SARRAZAC", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46298"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1092a0e513d9a57805ee313cc78250365890d35b", "fields": {"nom_de_la_commune": "SAULIAC SUR CELE", "libell_d_acheminement": "SAULIAC SUR CELE", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46299"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f988425df977ecb3c8733814cbcfdf24ae017f6", "fields": {"nom_de_la_commune": "SENAILLAC LAUZES", "libell_d_acheminement": "SENAILLAC LAUZES", "code_postal": "46360", "coordonnees_gps": [44.5788373248, 1.59698113973], "code_commune_insee": "46303"}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07afe3a901c90624aba2fba55df0fd81f57309dc", "fields": {"nom_de_la_commune": "SOTURAC", "libell_d_acheminement": "SOTURAC", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46307"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fb2bd962c318c16eea84cf60cc3057305d85a4", "fields": {"nom_de_la_commune": "SOUSCEYRAC EN QUERCY", "libell_d_acheminement": "SOUSCEYRAC EN QUERCY", "code_postal": "46190", "coordonnees_gps": [44.886802824, 2.02091707559], "code_commune_insee": "46311"}, "geometry": {"type": "Point", "coordinates": [2.02091707559, 44.886802824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "548bd93bb5c18f081668c108a2d9118ccd972157", "fields": {"code_postal": "46190", "code_commune_insee": "46311", "libell_d_acheminement": "SOUSCEYRAC EN QUERCY", "ligne_5": "COMIAC", "nom_de_la_commune": "SOUSCEYRAC EN QUERCY", "coordonnees_gps": [44.886802824, 2.02091707559]}, "geometry": {"type": "Point", "coordinates": [2.02091707559, 44.886802824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac78a2834980455ff8589d0a223dbed9efdc347b", "fields": {"nom_de_la_commune": "TERROU", "libell_d_acheminement": "TERROU", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46314"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b81c634da38678120005a93556b535bda217f3f7", "fields": {"nom_de_la_commune": "VILLESEQUE", "libell_d_acheminement": "VILLESEQUE", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46335"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502374c75f312ed72189fbb624de840cfe6a9a29", "fields": {"nom_de_la_commune": "ALLEMANS DU DROPT", "libell_d_acheminement": "ALLEMANS DU DROPT", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47005"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c46ce45c96727a2dfc69713290688005c77206f6", "fields": {"nom_de_la_commune": "ANDIRAN", "libell_d_acheminement": "ANDIRAN", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47009"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a7d36755acc074a750c8d2fe7c7aa4fe763c9f", "fields": {"nom_de_la_commune": "ANTHE", "libell_d_acheminement": "ANTHE", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47011"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f347ead65bbbc2e9113e8a16dc6171767563fe5c", "fields": {"nom_de_la_commune": "BEAUVILLE", "libell_d_acheminement": "BEAUVILLE", "code_postal": "47470", "coordonnees_gps": [44.2689553649, 0.867525739201], "code_commune_insee": "47025"}, "geometry": {"type": "Point", "coordinates": [0.867525739201, 44.2689553649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b743aced1a261bc875911c0c5da7bcbda755df9", "fields": {"nom_de_la_commune": "BOUDY DE BEAUREGARD", "libell_d_acheminement": "BOUDY DE BEAUREGARD", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47033"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "209cbaa3b28eac20b898bd4036a88041dde1e684", "fields": {"nom_de_la_commune": "BRAX", "libell_d_acheminement": "BRAX", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47040"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9821ee0f9bc3df623eb9ba219b320d995d1ddf9", "fields": {"nom_de_la_commune": "BRUCH", "libell_d_acheminement": "BRUCH", "code_postal": "47130", "coordonnees_gps": [44.2354000817, 0.42312133119], "code_commune_insee": "47041"}, "geometry": {"type": "Point", "coordinates": [0.42312133119, 44.2354000817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5028a5485e8cf706a9e9ee349acf32868832f6", "fields": {"nom_de_la_commune": "CANCON", "libell_d_acheminement": "CANCON", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47048"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0444b0a7e823f1c60f1c3c2cc8ae6fc72390d9df", "fields": {"nom_de_la_commune": "CASTELCULIER", "libell_d_acheminement": "CASTELCULIER", "code_postal": "47240", "coordonnees_gps": [44.1950523774, 0.697905787009], "code_commune_insee": "47051"}, "geometry": {"type": "Point", "coordinates": [0.697905787009, 44.1950523774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72c1b610d0c02125189176c497482dfe15ea117b", "fields": {"nom_de_la_commune": "COCUMONT", "libell_d_acheminement": "COCUMONT", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47068"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c4f2ef162174024d53af252f39f9a381b4f44a", "fields": {"nom_de_la_commune": "COLAYRAC ST CIRQ", "libell_d_acheminement": "COLAYRAC ST CIRQ", "code_postal": "47450", "coordonnees_gps": [44.2392176007, 0.551719264146], "code_commune_insee": "47069"}, "geometry": {"type": "Point", "coordinates": [0.551719264146, 44.2392176007]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bfb75ea26d029c355ff68182cb0e2b2e852d764", "fields": {"nom_de_la_commune": "COURS", "libell_d_acheminement": "COURS", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47073"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa86104a461d9cf20ade2cb9e45adc4c2073061f", "fields": {"nom_de_la_commune": "CUZORN", "libell_d_acheminement": "CUZORN", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47077"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f43df30acd9da2df27db4b71100f447e9501129", "fields": {"nom_de_la_commune": "DONDAS", "libell_d_acheminement": "DONDAS", "code_postal": "47470", "coordonnees_gps": [44.2689553649, 0.867525739201], "code_commune_insee": "47082"}, "geometry": {"type": "Point", "coordinates": [0.867525739201, 44.2689553649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0f520469ae4e19b70040eacb8391244091ae59", "fields": {"nom_de_la_commune": "FAUILLET", "libell_d_acheminement": "FAUILLET", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47095"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dcb2ca1e9105fb67fa54021f583925ebc441368", "fields": {"nom_de_la_commune": "FIEUX", "libell_d_acheminement": "FIEUX", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47098"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6fa3e8ce54787222800d7bb486287e4c9ff7a72", "fields": {"nom_de_la_commune": "FONGRAVE", "libell_d_acheminement": "FONGRAVE", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47099"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e155eb25afede4eba0e6431d7d8806271c72a0f", "fields": {"nom_de_la_commune": "FRECHOU", "libell_d_acheminement": "FRECHOU", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47103"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd8aa768b4c4385c777a1e05268f8659e620eef", "fields": {"nom_de_la_commune": "FRESPECH", "libell_d_acheminement": "FRESPECH", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47105"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd9097fd3a6356ff8c4d26ea3ba32e16fcbc7147", "fields": {"nom_de_la_commune": "GRANGES SUR LOT", "libell_d_acheminement": "GRANGES SUR LOT", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47111"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823735b62b58df845b9c058a627b00cefde22d9b", "fields": {"nom_de_la_commune": "LABRETONIE", "libell_d_acheminement": "LABRETONIE", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47122"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087dab39b0b8f95396f119c97b531c165924b9fb", "fields": {"nom_de_la_commune": "LACHAPELLE", "libell_d_acheminement": "LACHAPELLE", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47126"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efdb04abf4c74fcd676d40d2b51dcde781015c6d", "fields": {"code_postal": "47170", "code_commune_insee": "47134", "libell_d_acheminement": "LANNES", "ligne_5": "VILLENEUVE DE MEZIN", "nom_de_la_commune": "LANNES", "coordonnees_gps": [44.0578455097, 0.199141887722]}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "114663abe162629b5033efa9aee9cf8c413f241b", "fields": {"nom_de_la_commune": "LAPLUME", "libell_d_acheminement": "LAPLUME", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47137"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "898dd96c049540ce2af5473023a9d306312056a7", "fields": {"nom_de_la_commune": "LAYRAC", "libell_d_acheminement": "LAYRAC", "code_postal": "47390", "coordonnees_gps": [44.1202976189, 0.654195230069], "code_commune_insee": "47145"}, "geometry": {"type": "Point", "coordinates": [0.654195230069, 44.1202976189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0f98e3cdafb7dd09a58372cbb9e07f1643f6a83", "fields": {"nom_de_la_commune": "LE MAS D AGENAIS", "libell_d_acheminement": "LE MAS D AGENAIS", "code_postal": "47430", "coordonnees_gps": [44.4038524558, 0.201607662579], "code_commune_insee": "47159"}, "geometry": {"type": "Point", "coordinates": [0.201607662579, 44.4038524558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "759a30e47ab789137f3b09a5ad58261f9d33277f", "fields": {"nom_de_la_commune": "MAZIERES NARESSE", "libell_d_acheminement": "MAZIERES NARESSE", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47164"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba67227cfd71a2aa7bffad767f5b65b60dfa3541", "fields": {"nom_de_la_commune": "MIRAMONT DE GUYENNE", "libell_d_acheminement": "MIRAMONT DE GUYENNE", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47168"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1aa18456b1050cf253459f117411b1644ddec3a", "fields": {"nom_de_la_commune": "MONSEMPRON LIBOS", "libell_d_acheminement": "MONSEMPRON LIBOS", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47179"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f0a3a86e1c79cee8b6db7efc00fd2923d79f050", "fields": {"nom_de_la_commune": "MONTAGNAC SUR AUVIGNON", "libell_d_acheminement": "MONTAGNAC SUR AUVIGNON", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47180"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b4d7dd25a7ae8082e8830a959fae3562c868965", "fields": {"nom_de_la_commune": "MONTAGNAC SUR LEDE", "libell_d_acheminement": "MONTAGNAC SUR LEDE", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47181"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "457a7585fb314f64d6a615d0817e0e192e022c69", "fields": {"nom_de_la_commune": "MONTPEZAT", "libell_d_acheminement": "MONTPEZAT", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47190"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a727c6ce8a4dae302ae50026f57279fc4aab0588", "fields": {"nom_de_la_commune": "PENNE D AGENAIS", "libell_d_acheminement": "PENNE D AGENAIS", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47203"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3876f6c9eb5c472e80acbdcf02be3f1f1f91d86", "fields": {"nom_de_la_commune": "PEYRIERE", "libell_d_acheminement": "PEYRIERE", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47204"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1727bf9da4ee19a4b43bbb9e24ddee57c5efff06", "fields": {"code_postal": "47380", "code_commune_insee": "47206", "libell_d_acheminement": "PINEL HAUTERIVE", "ligne_5": "ST PIERRE DE CAUBEL", "nom_de_la_commune": "PINEL HAUTERIVE", "coordonnees_gps": [44.4800576934, 0.508511955035]}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70a55fef06e4013670da5c5ba9938077534862fc", "fields": {"nom_de_la_commune": "PRAYSSAS", "libell_d_acheminement": "PRAYSSAS", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47213"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c00b7a6aa820bf41ddbc7842e4a7d73c0da0d88", "fields": {"nom_de_la_commune": "RAZIMET", "libell_d_acheminement": "RAZIMET", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47220"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e276b94d009153afc961bb2629c8371caac447b0", "fields": {"nom_de_la_commune": "RIVES", "libell_d_acheminement": "RIVES", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47223"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04d424ea1e1f2febda9db7a5e1ba38d3653319b1", "fields": {"nom_de_la_commune": "ROUMAGNE", "libell_d_acheminement": "ROUMAGNE", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47226"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d545cb5818deba41806fc1bdf82b2651bc66841", "fields": {"nom_de_la_commune": "ST BARTHELEMY D AGENAIS", "libell_d_acheminement": "ST BARTHELEMY D AGENAIS", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47232"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfe6500c0149e1af1b67fa4f65cc7c5b99a742c9", "fields": {"nom_de_la_commune": "STE BAZEILLE", "libell_d_acheminement": "STE BAZEILLE", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47233"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebab6a9f27f0853d4cb2c88ada468028332f9921", "fields": {"nom_de_la_commune": "ST HILAIRE DE LUSIGNAN", "libell_d_acheminement": "ST HILAIRE DE LUSIGNAN", "code_postal": "47450", "coordonnees_gps": [44.2392176007, 0.551719264146], "code_commune_insee": "47246"}, "geometry": {"type": "Point", "coordinates": [0.551719264146, 44.2392176007]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7bd93ef3a711c3349d106b52a7b421c5da0ce89", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47250"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13bed177866803bcc7fd762200009bf0f28fb27", "fields": {"nom_de_la_commune": "ST LEON", "libell_d_acheminement": "ST LEON", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47251"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3368b07db29cf1167fab1181722e71a9942ef510", "fields": {"nom_de_la_commune": "ST MARTIN CURTON", "libell_d_acheminement": "ST MARTIN CURTON", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47254"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b4cc170336e9557a674244e3e94d46fb4dbeaa", "fields": {"nom_de_la_commune": "ST PE ST SIMON", "libell_d_acheminement": "ST PE ST SIMON", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47266"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39799722a2b6fbe2775489812b0609bf43313c99", "fields": {"nom_de_la_commune": "ST PIERRE DE CLAIRAC", "libell_d_acheminement": "ST PIERRE DE CLAIRAC", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47269"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc71d5c8f76a3629abc129df90378c3ff62ad15", "fields": {"nom_de_la_commune": "ST SAUVEUR DE MEILHAN", "libell_d_acheminement": "ST SAUVEUR DE MEILHAN", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47277"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30f2fdbf840cc04a4885626ba66416b07393f1b9", "fields": {"nom_de_la_commune": "ST SYLVESTRE SUR LOT", "libell_d_acheminement": "ST SYLVESTRE SUR LOT", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47280"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ce83bfd30a4df0c64ab103956722e707a707f1", "fields": {"nom_de_la_commune": "LA SAUVETAT DE SAVERES", "libell_d_acheminement": "LA SAUVETAT DE SAVERES", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47289"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a1cbd3448e3739751cec53ee1c9a8a7c0ad75d5", "fields": {"nom_de_la_commune": "LA SAUVETAT DU DROPT", "libell_d_acheminement": "LA SAUVETAT DU DROPT", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47290"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e22a1dd33ccbbc657f3104b6d99056e0077f12", "fields": {"nom_de_la_commune": "SAVIGNAC DE DURAS", "libell_d_acheminement": "SAVIGNAC DE DURAS", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47294"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc86abfd61b79cb11f27f83188e0f1b04f4d3072", "fields": {"nom_de_la_commune": "SERIGNAC PEBOUDOU", "libell_d_acheminement": "SERIGNAC PEBOUDOU", "code_postal": "47410", "coordonnees_gps": [44.6188360432, 0.483344290978], "code_commune_insee": "47299"}, "geometry": {"type": "Point", "coordinates": [0.483344290978, 44.6188360432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df175a05fda998bb8b7651ffb71d415bc3e625c", "fields": {"nom_de_la_commune": "SEYCHES", "libell_d_acheminement": "SEYCHES", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47301"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce1ca9c4be4453b8bcf387e1b34384a2662b90fb", "fields": {"nom_de_la_commune": "ALBARET LE COMTAL", "libell_d_acheminement": "ALBARET LE COMTAL", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48001"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6234608f0e9ab9aaeed4df1deaba6de0f91e46c", "fields": {"nom_de_la_commune": "ALBARET STE MARIE", "libell_d_acheminement": "ALBARET STE MARIE", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48002"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6657489024c7dc30d0fbb4a87abacb1fe3a81793", "fields": {"nom_de_la_commune": "ALLENC", "libell_d_acheminement": "ALLENC", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48003"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4cd38531bd54b5b2122ba9df3dff281fbfe435e", "fields": {"nom_de_la_commune": "AUROUX", "libell_d_acheminement": "AUROUX", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48010"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5b0784eb214a3e53c9779816496b6def599ebd", "fields": {"nom_de_la_commune": "BADAROUX", "libell_d_acheminement": "BADAROUX", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48013"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5de38b89b9c586de93a11416f4a69a20f5436a8", "fields": {"nom_de_la_commune": "LES BONDONS", "libell_d_acheminement": "LES BONDONS", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48028"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1304cfc5dd02a96218e5531505ac38d863836134", "fields": {"nom_de_la_commune": "CULTURES", "libell_d_acheminement": "CULTURES", "code_postal": "48230", "coordonnees_gps": [44.4596098281, 3.3408753793], "code_commune_insee": "48055"}, "geometry": {"type": "Point", "coordinates": [3.3408753793, 44.4596098281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62eb5e6ad78bbb0df1e74214c67546f8f41bc742", "fields": {"nom_de_la_commune": "ESTABLES", "libell_d_acheminement": "ESTABLES", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48057"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f44c5d308146f3f64453267399045a8c0f7aef", "fields": {"nom_de_la_commune": "FRAISSINET DE FOURQUES", "libell_d_acheminement": "FRAISSINET DE FOURQUES", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48065"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "325fc7e671099e991eaf17f908237ae42df001fe", "fields": {"nom_de_la_commune": "GABRIAS", "libell_d_acheminement": "GABRIAS", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48068"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a27b1614f6d5cb923300a9d9e545464f856ded", "fields": {"nom_de_la_commune": "GRANDRIEU", "libell_d_acheminement": "GRANDRIEU", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48070"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f24ce3b42b547288934ac9857f89b8cf109ba2", "fields": {"nom_de_la_commune": "LES HERMAUX", "libell_d_acheminement": "LES HERMAUX", "code_postal": "48340", "coordonnees_gps": [44.5032026768, 3.13108556015], "code_commune_insee": "48073"}, "geometry": {"type": "Point", "coordinates": [3.13108556015, 44.5032026768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694a35f3ed55ce6e04f59cc4626d9a5ddfa8030a", "fields": {"nom_de_la_commune": "JULIANGES", "libell_d_acheminement": "JULIANGES", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48077"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0feac092e7ef0caaccea4c89a7d922d6b749bce7", "fields": {"nom_de_la_commune": "MAS D ORCIERES", "libell_d_acheminement": "MAS D ORCIERES", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48093"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b30bfd3bdbdf56ffa705d39ea563676899592b4", "fields": {"nom_de_la_commune": "MONTRODAT", "libell_d_acheminement": "MONTRODAT", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48103"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05f1def6a4eb84987b65f587e948df6dbd31f30f", "fields": {"nom_de_la_commune": "PRUNIERES", "libell_d_acheminement": "PRUNIERES", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48121"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d90237cf5d211f2b2d1f1bcde4fed0a1420ea7a2", "fields": {"nom_de_la_commune": "RECOULES DE FUMAS", "libell_d_acheminement": "RECOULES DE FUMAS", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48124"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa24a80efddcf73f9d91b1ad16736b3ddfae41c8", "fields": {"nom_de_la_commune": "LE ROZIER", "libell_d_acheminement": "LE ROZIER", "code_postal": "48150", "coordonnees_gps": [44.2076020774, 3.4086160478], "code_commune_insee": "48131"}, "geometry": {"type": "Point", "coordinates": [3.4086160478, 44.2076020774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dda4a26155922af8797792ba326238c9606c1241", "fields": {"nom_de_la_commune": "ST ANDRE CAPCEZE", "libell_d_acheminement": "ST ANDRE CAPCEZE", "code_postal": "48800", "coordonnees_gps": [44.4744037088, 3.906783441], "code_commune_insee": "48135"}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c25e479f2ece5aac6ec74610d466f7799da887b", "fields": {"code_postal": "48600", "code_commune_insee": "48139", "libell_d_acheminement": "ST BONNET DE MONTAUROUX", "ligne_5": "CHAPEAUROUX", "nom_de_la_commune": "ST BONNET DE MONTAUROUX", "coordonnees_gps": [44.7870474778, 3.63511389212]}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d732576b58e7b49e7906fa29fa9e269dca52b3", "fields": {"nom_de_la_commune": "ST CHELY D APCHER", "libell_d_acheminement": "ST CHELY D APCHER", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48140"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e70598ac3cccc435f1fbc68d1304224487444b9c", "fields": {"nom_de_la_commune": "STE COLOMBE DE PEYRE", "libell_d_acheminement": "STE COLOMBE DE PEYRE", "code_postal": "48130", "coordonnees_gps": [44.6979669437, 3.26876016092], "code_commune_insee": "48142"}, "geometry": {"type": "Point", "coordinates": [3.26876016092, 44.6979669437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9db864db13b83638433e6e602bf0ca9f616c2aba", "fields": {"nom_de_la_commune": "ST GAL", "libell_d_acheminement": "ST GAL", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48153"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb194463582c50fbebde452a8d22ff221b87a6ba", "fields": {"nom_de_la_commune": "CHATEAUVIEUX", "libell_d_acheminement": "CHATEAUVIEUX", "code_postal": "41110", "coordonnees_gps": [47.2568714, 1.34079255884], "code_commune_insee": "41042"}, "geometry": {"type": "Point", "coordinates": [1.34079255884, 47.2568714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71849c2541a1341021ce559ba74d7152311b2f71", "fields": {"nom_de_la_commune": "CHATILLON SUR CHER", "libell_d_acheminement": "CHATILLON SUR CHER", "code_postal": "41130", "coordonnees_gps": [47.2869148603, 1.56604401374], "code_commune_insee": "41043"}, "geometry": {"type": "Point", "coordinates": [1.56604401374, 47.2869148603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4300c90f162966ae897a8f22e6b874c19a9ebe45", "fields": {"nom_de_la_commune": "CHAUMONT SUR THARONNE", "libell_d_acheminement": "CHAUMONT SUR THARONNE", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41046"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a56e2d695b466429da46311856302e28b5610109", "fields": {"nom_de_la_commune": "CONAN", "libell_d_acheminement": "CONAN", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41057"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7571df8f38576ab0ea6e7e7cab8db8677f23ba53", "fields": {"nom_de_la_commune": "CONCRIERS", "libell_d_acheminement": "CONCRIERS", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41058"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74327a475bf938efdd7b96a6f017ed8d02ae116c", "fields": {"nom_de_la_commune": "COULANGES", "libell_d_acheminement": "COULANGES", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41064"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c7ccc09135af723dac8b997ec4dd4d803408b20", "fields": {"nom_de_la_commune": "COURBOUZON", "libell_d_acheminement": "COURBOUZON", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41066"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3107d7a25bc7e35f19f7bba600f62fe9b3d5fb8b", "fields": {"nom_de_la_commune": "COUTURE SUR LOIR", "libell_d_acheminement": "COUTURE SUR LOIR", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41070"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9d21fd500a0dc48b467565b5fb4113f849d068", "fields": {"nom_de_la_commune": "CRUCHERAY", "libell_d_acheminement": "CRUCHERAY", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41072"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0291b525334ca6c60ba94350e32e8e6f86d6f88", "fields": {"nom_de_la_commune": "LES ESSARTS", "libell_d_acheminement": "LES ESSARTS", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41079"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5bd98e469fd05dd792a874e68b5aa0b8e8ce776", "fields": {"nom_de_la_commune": "FONTAINES EN SOLOGNE", "libell_d_acheminement": "FONTAINES EN SOLOGNE", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41086"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f9afeb3297a160617cdb748ce7fbf9bf930e35", "fields": {"nom_de_la_commune": "LA FONTENELLE", "libell_d_acheminement": "LA FONTENELLE", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41089"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4693803d4eaf2b1ab808e9aa51e1413a283eead4", "fields": {"nom_de_la_commune": "FOSSE", "libell_d_acheminement": "FOSSE", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41091"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c92deee017028eceaf40734b0ffe4936a54930b", "fields": {"nom_de_la_commune": "FOUGERES SUR BIEVRE", "libell_d_acheminement": "FOUGERES SUR BIEVRE", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41092"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b14c5bb5fdeb9205fa12c58a25bbc5ebd314cdb", "fields": {"nom_de_la_commune": "FRESNES", "libell_d_acheminement": "FRESNES", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41094"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c4e3060c4d33eeca47bbf94bc410cd0c1e0950", "fields": {"nom_de_la_commune": "LES HAYES", "libell_d_acheminement": "LES HAYES", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41100"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db5ef22f7a2723037ae290792a63c102228400d2", "fields": {"nom_de_la_commune": "HUISSEAU EN BEAUCE", "libell_d_acheminement": "HUISSEAU EN BEAUCE", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41103"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba0c96d8ff1614dcc48e4e765f98c842eb25962", "fields": {"nom_de_la_commune": "HUISSEAU SUR COSSON", "libell_d_acheminement": "HUISSEAU SUR COSSON", "code_postal": "41350", "coordonnees_gps": [47.5967187787, 1.41738581826], "code_commune_insee": "41104"}, "geometry": {"type": "Point", "coordinates": [1.41738581826, 47.5967187787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e96aff09d46a7213a2104d2265ac5f1eca7454", "fields": {"nom_de_la_commune": "LANCOME", "libell_d_acheminement": "LANCOME", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41108"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecc605d09be0c6dde012d6aacb60767b316c1f0e", "fields": {"nom_de_la_commune": "LANDES LE GAULOIS", "libell_d_acheminement": "LANDES LE GAULOIS", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41109"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c645b2b4bc614352e53781048d2ebd979b5b15a9", "fields": {"nom_de_la_commune": "LOREUX", "libell_d_acheminement": "LOREUX", "code_postal": "41200", "coordonnees_gps": [47.3811514911, 1.76608679793], "code_commune_insee": "41118"}, "geometry": {"type": "Point", "coordinates": [1.76608679793, 47.3811514911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c27edf8eca7e63d0179f244116a73c05815875e", "fields": {"nom_de_la_commune": "MASLIVES", "libell_d_acheminement": "MASLIVES", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41129"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d9c43f2ae71af6c6bb4476539e0040dd70cd55b", "fields": {"nom_de_la_commune": "MENNETOU SUR CHER", "libell_d_acheminement": "MENNETOU SUR CHER", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41135"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93fb2a4cc2e2e34d0c01d624cbf640d7a99ae17d", "fields": {"code_postal": "41190", "code_commune_insee": "41142", "libell_d_acheminement": "VALENCISSE", "ligne_5": "ORCHAISE", "nom_de_la_commune": "VALENCISSE", "coordonnees_gps": [47.6158784323, 1.13032503262]}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ba0d463ee8d067edfd04eb3f1e42ac3a4257536", "fields": {"nom_de_la_commune": "MONDOUBLEAU", "libell_d_acheminement": "MONDOUBLEAU", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41143"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45f9f48b0382ab2db15c8e253f4bd654b537342f", "fields": {"code_postal": "41400", "code_commune_insee": "41151", "libell_d_acheminement": "MONTRICHARD VAL DE CHER", "ligne_5": "BOURRE", "nom_de_la_commune": "MONTRICHARD VAL DE CHER", "coordonnees_gps": [47.3654199665, 1.20385620984]}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80f43114071d7ff9832d1c0cbdb402e67a3ce470", "fields": {"nom_de_la_commune": "MULSANS", "libell_d_acheminement": "MULSANS", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41156"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54350a2858b40e03397037f40adbfcfd42338a8a", "fields": {"nom_de_la_commune": "NOUAN LE FUZELIER", "libell_d_acheminement": "NOUAN LE FUZELIER", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41161"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e18a415932228ef0b66d58128e9e046a78a2b320", "fields": {"nom_de_la_commune": "ONZAIN", "libell_d_acheminement": "ONZAIN", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41167"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e72628e4214ec7efaa3d3befe54ef2dc54ea045", "fields": {"nom_de_la_commune": "PERIGNY", "libell_d_acheminement": "PERIGNY", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41174"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904abc00f2c77ac37574b3f8a157699b88a6048a", "fields": {"nom_de_la_commune": "LE PLESSIS L ECHELLE", "libell_d_acheminement": "LE PLESSIS L ECHELLE", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41178"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f1c72eac2eb5a7269ae0b39bd51e4ef12bc62e", "fields": {"nom_de_la_commune": "ROMILLY", "libell_d_acheminement": "ROMILLY", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41193"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb2760f99d4cb5a43ec3f6a738487b1eb9926557", "fields": {"nom_de_la_commune": "STE ANNE", "libell_d_acheminement": "STE ANNE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41200"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "316f820e2611e8368c7bb1cdcadbe36524fb2424", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41202"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d086e9cebdfdda579d0b9253e9ba2f4b9cb116a", "fields": {"nom_de_la_commune": "ST CLAUDE DE DIRAY", "libell_d_acheminement": "ST CLAUDE DE DIRAY", "code_postal": "41350", "coordonnees_gps": [47.5967187787, 1.41738581826], "code_commune_insee": "41204"}, "geometry": {"type": "Point", "coordinates": [1.41738581826, 47.5967187787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7949d250d43305ed644d7261386698749ec1709c", "fields": {"nom_de_la_commune": "ST DYE SUR LOIRE", "libell_d_acheminement": "ST DYE SUR LOIRE", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41207"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4dde0e6171c7d0a5f5b5873168194def8de4147", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41222"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2440ff008e20579cd70c77733dd356865a6f34f3", "fields": {"nom_de_la_commune": "ST OUEN", "libell_d_acheminement": "ST OUEN", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41226"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "763cc9bd88116915e906b459e4234394fec5c8e1", "fields": {"nom_de_la_commune": "SASSAY", "libell_d_acheminement": "SASSAY", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41237"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f93454fd68edc3d5fb028bd77d47cf714206e8f4", "fields": {"nom_de_la_commune": "SEIGY", "libell_d_acheminement": "SEIGY", "code_postal": "41110", "coordonnees_gps": [47.2568714, 1.34079255884], "code_commune_insee": "41239"}, "geometry": {"type": "Point", "coordinates": [1.34079255884, 47.2568714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f547199a891031b90e9df644df375d21d2adae9", "fields": {"nom_de_la_commune": "THORE LA ROCHETTE", "libell_d_acheminement": "THORE LA ROCHETTE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41259"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c6dc8ff70b17eb1cf2e03c82d4f52ecda72c53", "fields": {"nom_de_la_commune": "VENDOME", "libell_d_acheminement": "VENDOME", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41269"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86d79e174e37bda3ac27d134301b29c07e084aeb", "fields": {"nom_de_la_commune": "VILLEBAROU", "libell_d_acheminement": "VILLEBAROU", "code_postal": "41000", "coordonnees_gps": [47.612940364, 1.32071876619], "code_commune_insee": "41276"}, "geometry": {"type": "Point", "coordinates": [1.32071876619, 47.612940364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ac323c25948fda949d89b82945a3bc666253d4", "fields": {"nom_de_la_commune": "VILLEMARDY", "libell_d_acheminement": "VILLEMARDY", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41283"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2834a5bad494f1b3780f7a8cfb5d336f78e160da", "fields": {"nom_de_la_commune": "VILLETRUN", "libell_d_acheminement": "VILLETRUN", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41291"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98d1ec397f987845710691fbb54991067ecae77e", "fields": {"nom_de_la_commune": "VILLIERS SUR LOIR", "libell_d_acheminement": "VILLIERS SUR LOIR", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41294"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7566a3abeea7c74b2159308befd438d138abf72c", "fields": {"nom_de_la_commune": "VINEUIL", "libell_d_acheminement": "VINEUIL", "code_postal": "41350", "coordonnees_gps": [47.5967187787, 1.41738581826], "code_commune_insee": "41295"}, "geometry": {"type": "Point", "coordinates": [1.41738581826, 47.5967187787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b183b866f84dfce9dd949687652beacd18fff97d", "fields": {"nom_de_la_commune": "ABOEN", "libell_d_acheminement": "ABOEN", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42001"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167bda4c433003581858e710755ec8a03ef671df", "fields": {"nom_de_la_commune": "AILLEUX", "libell_d_acheminement": "AILLEUX", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42002"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d8485fed5c6280d0b9c3b791f45dc16d553997c", "fields": {"nom_de_la_commune": "AMIONS", "libell_d_acheminement": "AMIONS", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42004"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eac5a7054e559477c33626457a5309aed22681b", "fields": {"nom_de_la_commune": "APINAC", "libell_d_acheminement": "APINAC", "code_postal": "42550", "coordonnees_gps": [45.3920060669, 3.94898861156], "code_commune_insee": "42006"}, "geometry": {"type": "Point", "coordinates": [3.94898861156, 45.3920060669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e77c4ccfdd14df7a1a6b248809f686789be6b9cd", "fields": {"nom_de_la_commune": "ARCON", "libell_d_acheminement": "ARCON", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42008"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ecdd422652426b24f2b8ea81c355836784e84e", "fields": {"nom_de_la_commune": "LA BENISSON DIEU", "libell_d_acheminement": "LA BENISSON DIEU", "code_postal": "42720", "coordonnees_gps": [46.1272697069, 4.10675684873], "code_commune_insee": "42016"}, "geometry": {"type": "Point", "coordinates": [4.10675684873, 46.1272697069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a3972e80cfbecbb2b0ed8d45b094df04bf7e2d1", "fields": {"nom_de_la_commune": "BESSEY", "libell_d_acheminement": "BESSEY", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42018"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9f9891a1123b6766c2d522d7dac4b6924db9989", "fields": {"nom_de_la_commune": "BULLY", "libell_d_acheminement": "BULLY", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42027"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0427a5e5e78563ebb90efa6b1be0951ab04b228b", "fields": {"nom_de_la_commune": "LA CHAMBA", "libell_d_acheminement": "LA CHAMBA", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42040"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d012b10d37edd588f2b981a37fcf80c60144a1e2", "fields": {"nom_de_la_commune": "CHERIER", "libell_d_acheminement": "CHERIER", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42061"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb75a90a2a4b60e13e4986ded2d21d1b67c0ab3", "fields": {"nom_de_la_commune": "CIVENS", "libell_d_acheminement": "CIVENS", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42065"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "166a31984362b0ad2488008dc4ca494204cf0715", "fields": {"nom_de_la_commune": "CLEPPE", "libell_d_acheminement": "CLEPPE", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42066"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4de3947e91005a258ea22ee2f467f211f444ed3b", "fields": {"nom_de_la_commune": "CORDELLE", "libell_d_acheminement": "CORDELLE", "code_postal": "42123", "coordonnees_gps": [45.9494163931, 4.07525689543], "code_commune_insee": "42070"}, "geometry": {"type": "Point", "coordinates": [4.07525689543, 45.9494163931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a6e7b6b1e45b6c28e8653483eab63ee275f84f", "fields": {"nom_de_la_commune": "LE CROZET", "libell_d_acheminement": "LE CROZET", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42078"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2979c7b56f4fd3533ed5aa3ab0b438b9ff7fc930", "fields": {"nom_de_la_commune": "DEBATS RIVIERE D ORPRA", "libell_d_acheminement": "DEBATS RIVIERE D ORPRA", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42084"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31a33cdc96b3509464004b1547e114134c94d449", "fields": {"nom_de_la_commune": "ESSERTINES EN CHATELNEUF", "libell_d_acheminement": "ESSERTINES EN CHATELNEUF", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42089"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dbfc6d2c6cec6740c1fedbb33ada3e7ddd484d9", "fields": {"nom_de_la_commune": "FEURS", "libell_d_acheminement": "FEURS", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42094"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcdcd7e66a073f878f217a602baa712c611a6e52", "fields": {"nom_de_la_commune": "FONTANES", "libell_d_acheminement": "FONTANES", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42096"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c0a801fc9dc902c71f4f8050a43dce4c6baabc", "fields": {"nom_de_la_commune": "SAVOISY", "libell_d_acheminement": "SAVOISY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21594"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba615f93f687ad7c9198a85db37467475c3c5d47", "fields": {"nom_de_la_commune": "SOMBERNON", "libell_d_acheminement": "SOMBERNON", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21611"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "229c1df01ddde896b8fac0d563a4804c11b2a3ce", "fields": {"nom_de_la_commune": "SOUSSEY SUR BRIONNE", "libell_d_acheminement": "SOUSSEY SUR BRIONNE", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21613"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b0ba981219e33ff0574e86eb70074a77edd6b3", "fields": {"code_postal": "21430", "code_commune_insee": "21615", "libell_d_acheminement": "SUSSEY", "ligne_5": "LE MAUPAS", "nom_de_la_commune": "SUSSEY", "coordonnees_gps": [47.1707376827, 4.30105737278]}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b637f564833fd430394831e99b1edb776fff574", "fields": {"nom_de_la_commune": "TALANT", "libell_d_acheminement": "TALANT", "code_postal": "21240", "coordonnees_gps": [47.3390347486, 4.99726805025], "code_commune_insee": "21617"}, "geometry": {"type": "Point", "coordinates": [4.99726805025, 47.3390347486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c462b15473b80976dd667470124620db29a6176", "fields": {"nom_de_la_commune": "TART LE HAUT", "libell_d_acheminement": "TART LE HAUT", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21623"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79fe0ec1935e209ffdb4dd656b31653f5715ebda", "fields": {"nom_de_la_commune": "TELLECEY", "libell_d_acheminement": "TELLECEY", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21624"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "573dff994196fafb135c4598dc72c23ca12bebbd", "fields": {"nom_de_la_commune": "TERNANT", "libell_d_acheminement": "TERNANT", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21625"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "342d94c9fca61e3eb481db55bc63c82f24db0178", "fields": {"nom_de_la_commune": "THENISSEY", "libell_d_acheminement": "THENISSEY", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21627"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04d3ae55d2466dffe006740359eba0e3cf961a3", "fields": {"nom_de_la_commune": "VARANGES", "libell_d_acheminement": "VARANGES", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21656"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57659f65949fee2717dc459b6a4c557e603d94f2", "fields": {"nom_de_la_commune": "VENAREY LES LAUMES", "libell_d_acheminement": "VENAREY LES LAUMES", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21663"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b7e316f16fad9aa67d771c9dddcdf0cbfb7f910", "fields": {"code_postal": "21150", "code_commune_insee": "21663", "libell_d_acheminement": "VENAREY LES LAUMES", "ligne_5": "LES LAUMES", "nom_de_la_commune": "VENAREY LES LAUMES", "coordonnees_gps": [47.5309324126, 4.52615532844]}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbdff5b1f4853882eb8a22ec78cc8b8e741779fd", "fields": {"code_postal": "21260", "code_commune_insee": "21667", "libell_d_acheminement": "VERONNES", "ligne_5": "VERONNES LES PETITES", "nom_de_la_commune": "VERONNES", "coordonnees_gps": [47.5891653686, 5.22743421512]}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "098c6e7d79fc997d52e7de2340d4b94271c578d0", "fields": {"nom_de_la_commune": "VERREY SOUS DREE", "libell_d_acheminement": "VERREY SOUS DREE", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21669"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2110ca17479a253a609334d04c2a1f9306397037", "fields": {"nom_de_la_commune": "VERREY SOUS SALMAISE", "libell_d_acheminement": "VERREY SOUS SALMAISE", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21670"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b69981b999614d852d09b0c06f1f5ceb8e69333", "fields": {"nom_de_la_commune": "VIEILMOULIN", "libell_d_acheminement": "VIEILMOULIN", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21679"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b6ef7da7fcb063223d3ae942f4c0d2031b85b2e", "fields": {"nom_de_la_commune": "VILLARGOIX", "libell_d_acheminement": "VILLARGOIX", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21687"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c38bb6b6bcb2f9713ff551bc2176d502510adf3", "fields": {"nom_de_la_commune": "VILLEBERNY", "libell_d_acheminement": "VILLEBERNY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21690"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f9a315bbe2b8830a0eaf0296cece50e9280148", "fields": {"nom_de_la_commune": "VILLENEUVE SOUS CHARIGNY", "libell_d_acheminement": "VILLENEUVE SOUS CHARIGNY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21696"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c1266d6286dc680c4e87ace639f0574be618c98", "fields": {"nom_de_la_commune": "VILLERS LA FAYE", "libell_d_acheminement": "VILLERS LA FAYE", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21698"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b06215944c6d0bb4270883b055783bbbc28e618b", "fields": {"nom_de_la_commune": "VILLY LE MOUTIER", "libell_d_acheminement": "VILLY LE MOUTIER", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21708"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad6d5d0569cb27f145d0c2386c2b63e9d9df1c69", "fields": {"nom_de_la_commune": "VOSNE ROMANEE", "libell_d_acheminement": "VOSNE ROMANEE", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21714"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22147ae3088611c868f7648df68284036b97d506", "fields": {"nom_de_la_commune": "ALLINEUC", "libell_d_acheminement": "ALLINEUC", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22001"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250155929d4e7f5023dfb42546512bfc1d0e86d1", "fields": {"nom_de_la_commune": "AUCALEUC", "libell_d_acheminement": "AUCALEUC", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22003"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de0512bc993cbbf8793b287f9b8dc6dae936e6ef", "fields": {"nom_de_la_commune": "BOURSEUL", "libell_d_acheminement": "BOURSEUL", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22014"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95025e81fe1f77a71db6fecbe9d3342d80d0070f", "fields": {"nom_de_la_commune": "BULAT PESTIVIEN", "libell_d_acheminement": "BULAT PESTIVIEN", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22023"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50235f8e66639d9e67945023dcf4bdebbf5af3dd", "fields": {"nom_de_la_commune": "CANIHUEL", "libell_d_acheminement": "CANIHUEL", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22029"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de73db7b1f6e1dcf3e2a109178b9c20d2006c9f9", "fields": {"nom_de_la_commune": "LES CHAMPS GERAUX", "libell_d_acheminement": "LES CHAMPS GERAUX", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22035"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015c78266c6ff4d1496bc417afee381ede43a713", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "ST JACUT DU MENE", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "812ad6c6e450e395c1f353d3c3a1f913a999a958", "fields": {"nom_de_la_commune": "CORSEUL", "libell_d_acheminement": "CORSEUL", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22048"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d6a3a09193f3b1821a3b1d9153151b21425c905", "fields": {"nom_de_la_commune": "CREHEN", "libell_d_acheminement": "CREHEN", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22049"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ed4ae30894b82e204ac43a52170245ef88b3c0d", "fields": {"nom_de_la_commune": "ERQUY", "libell_d_acheminement": "ERQUY", "code_postal": "22430", "coordonnees_gps": [48.6189302635, -2.45852814283], "code_commune_insee": "22054"}, "geometry": {"type": "Point", "coordinates": [-2.45852814283, 48.6189302635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ab089bc53a2cb9b5739f1975abcbb5a3b54737", "fields": {"code_postal": "22430", "code_commune_insee": "22054", "libell_d_acheminement": "ERQUY", "ligne_5": "CAROUAL", "nom_de_la_commune": "ERQUY", "coordonnees_gps": [48.6189302635, -2.45852814283]}, "geometry": {"type": "Point", "coordinates": [-2.45852814283, 48.6189302635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f1dc54bf37c6a79e44bfbf470dc095e9e6ff6f6", "fields": {"nom_de_la_commune": "LE FAOUET", "libell_d_acheminement": "LE FAOUET", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22057"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10513bea6961115d642b92f312d00b266b2bb6da", "fields": {"nom_de_la_commune": "GOMENE", "libell_d_acheminement": "GOMENE", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22062"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fc6766da51851795504dac87202af74ff4addf", "fields": {"nom_de_la_commune": "VARZY", "libell_d_acheminement": "VARZY", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58304"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd93b9c83bb83701fa6db560076059fc08ec4ef7", "fields": {"nom_de_la_commune": "ABANCOURT", "libell_d_acheminement": "ABANCOURT", "code_postal": "59268", "coordonnees_gps": [50.2255437815, 3.19481961843], "code_commune_insee": "59001"}, "geometry": {"type": "Point", "coordinates": [3.19481961843, 50.2255437815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d0656f0a0dea8c8e274c22bcaefa17a81a1d0b6", "fields": {"nom_de_la_commune": "AIX", "libell_d_acheminement": "AIX", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59004"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "330998049b0b5672d07471736dcc64a2edc50864", "fields": {"nom_de_la_commune": "VILLENEUVE D ASCQ", "libell_d_acheminement": "VILLENEUVE D ASCQ", "code_postal": "59493", "coordonnees_gps": [50.6323253006, 3.15291340611], "code_commune_insee": "59009"}, "geometry": {"type": "Point", "coordinates": [3.15291340611, 50.6323253006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd6ec1aca77219720f5c26b4d202a763d6b76bb5", "fields": {"nom_de_la_commune": "ANOR", "libell_d_acheminement": "ANOR", "code_postal": "59186", "coordonnees_gps": [49.9951527515, 4.11798958936], "code_commune_insee": "59012"}, "geometry": {"type": "Point", "coordinates": [4.11798958936, 49.9951527515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253053c5773410524d71176ff078007fc2a315be", "fields": {"nom_de_la_commune": "ARMENTIERES", "libell_d_acheminement": "ARMENTIERES", "code_postal": "59280", "coordonnees_gps": [50.6683510107, 2.87630050545], "code_commune_insee": "59017"}, "geometry": {"type": "Point", "coordinates": [2.87630050545, 50.6683510107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c7d9daa16c906487ea68d8d9f0fd4111379e2d", "fields": {"nom_de_la_commune": "ARNEKE", "libell_d_acheminement": "ARNEKE", "code_postal": "59285", "coordonnees_gps": [50.8315857512, 2.37917573107], "code_commune_insee": "59018"}, "geometry": {"type": "Point", "coordinates": [2.37917573107, 50.8315857512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "755603a3139ad0a09eccfb62e1b10c0a6b0f151f", "fields": {"nom_de_la_commune": "AUBRY DU HAINAUT", "libell_d_acheminement": "AUBRY DU HAINAUT", "code_postal": "59494", "coordonnees_gps": [50.3753696067, 3.46424091997], "code_commune_insee": "59027"}, "geometry": {"type": "Point", "coordinates": [3.46424091997, 50.3753696067]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c663fae09901c09f33f0aac159dd1ebc2108d3fa", "fields": {"nom_de_la_commune": "AUDIGNIES", "libell_d_acheminement": "AUDIGNIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59031"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a5ee2d846287ab79c08fc17780dab003b23d9d", "fields": {"nom_de_la_commune": "AVESNES SUR HELPE", "libell_d_acheminement": "AVESNES SUR HELPE", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59036"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1434f6698790111fac76cc0d51da85760a2d35aa", "fields": {"nom_de_la_commune": "AVESNES LE SEC", "libell_d_acheminement": "AVESNES LE SEC", "code_postal": "59296", "coordonnees_gps": [50.2482297165, 3.37116225953], "code_commune_insee": "59038"}, "geometry": {"type": "Point", "coordinates": [3.37116225953, 50.2482297165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e413aab2561c94874ed8c75afb9dd3ec64bc332", "fields": {"nom_de_la_commune": "BAILLEUL", "libell_d_acheminement": "BAILLEUL", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59043"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a65b65064a279516e0eb67cd631bcaf88f3b30cb", "fields": {"nom_de_la_commune": "BAIVES", "libell_d_acheminement": "BAIVES", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59045"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b41457aa7ab0b2fd837c8f29f5e9eb7fe007011f", "fields": {"nom_de_la_commune": "BAMBECQUE", "libell_d_acheminement": "BAMBECQUE", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59046"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d6680965f420d1fa05e87b254f81fcdb738a44", "fields": {"nom_de_la_commune": "BANTOUZELLE", "libell_d_acheminement": "BANTOUZELLE", "code_postal": "59266", "coordonnees_gps": [50.0472384043, 3.20499874057], "code_commune_insee": "59049"}, "geometry": {"type": "Point", "coordinates": [3.20499874057, 50.0472384043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49f1a9913e4fdb3feda7e066f10b33fa721903f", "fields": {"nom_de_la_commune": "BAVINCHOVE", "libell_d_acheminement": "BAVINCHOVE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59054"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4019bce6f203b164208c8054a1ed0dec75b89f76", "fields": {"nom_de_la_commune": "BEAURIEUX", "libell_d_acheminement": "BEAURIEUX", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59062"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ec91625bab1ab91c7b8f40a62516964e3106562", "fields": {"nom_de_la_commune": "BELLAING", "libell_d_acheminement": "BELLAING", "code_postal": "59135", "coordonnees_gps": [50.3789593982, 3.39834366175], "code_commune_insee": "59064"}, "geometry": {"type": "Point", "coordinates": [3.39834366175, 50.3789593982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ffc0b1140592f8f5f308d0e4bce8f882daba96d", "fields": {"nom_de_la_commune": "BEVILLERS", "libell_d_acheminement": "BEVILLERS", "code_postal": "59217", "coordonnees_gps": [50.1561970919, 3.35840082194], "code_commune_insee": "59081"}, "geometry": {"type": "Point", "coordinates": [3.35840082194, 50.1561970919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9e1801625f826c156887d6c6046e84d8216ad8", "fields": {"nom_de_la_commune": "BONDUES", "libell_d_acheminement": "BONDUES", "code_postal": "59910", "coordonnees_gps": [50.7097709499, 3.09551042829], "code_commune_insee": "59090"}, "geometry": {"type": "Point", "coordinates": [3.09551042829, 50.7097709499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eec189298cc133506dc0be214b6d0389034d309", "fields": {"nom_de_la_commune": "BRAY DUNES", "libell_d_acheminement": "BRAY DUNES", "code_postal": "59123", "coordonnees_gps": [51.0709279733, 2.51756699208], "code_commune_insee": "59107"}, "geometry": {"type": "Point", "coordinates": [2.51756699208, 51.0709279733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d99553e7f946d4b147ee479f48a11e90bd86b2aa", "fields": {"nom_de_la_commune": "BRIASTRE", "libell_d_acheminement": "BRIASTRE", "code_postal": "59730", "coordonnees_gps": [50.1806606643, 3.51245734771], "code_commune_insee": "59108"}, "geometry": {"type": "Point", "coordinates": [3.51245734771, 50.1806606643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb292764b0edabe700f62618b675c06ee8a8a9c4", "fields": {"nom_de_la_commune": "BRUAY SUR L ESCAUT", "libell_d_acheminement": "BRUAY SUR L ESCAUT", "code_postal": "59860", "coordonnees_gps": [50.3972882388, 3.53799089043], "code_commune_insee": "59112"}, "geometry": {"type": "Point", "coordinates": [3.53799089043, 50.3972882388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50ef708aa5b7034fc3a5103f83c010441d407453", "fields": {"nom_de_la_commune": "CAMBRAI", "libell_d_acheminement": "CAMBRAI", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59122"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9acdd5809971ca4b2820cbf36b8cb8ff80587e", "fields": {"nom_de_la_commune": "CAPELLE", "libell_d_acheminement": "CAPELLE", "code_postal": "59213", "coordonnees_gps": [50.2475337981, 3.52978047064], "code_commune_insee": "59127"}, "geometry": {"type": "Point", "coordinates": [3.52978047064, 50.2475337981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13790189e0c1bf608b254f7224370938e6fcd4e", "fields": {"nom_de_la_commune": "CAPPELLE BROUCK", "libell_d_acheminement": "CAPPELLE BROUCK", "code_postal": "59630", "coordonnees_gps": [50.9241353596, 2.23327395744], "code_commune_insee": "59130"}, "geometry": {"type": "Point", "coordinates": [2.23327395744, 50.9241353596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2d18ded5a6e067928ef1d3d00e71e385dbc2a9", "fields": {"nom_de_la_commune": "CARNIN", "libell_d_acheminement": "CARNIN", "code_postal": "59112", "coordonnees_gps": [50.524811889, 2.93444929776], "code_commune_insee": "59133"}, "geometry": {"type": "Point", "coordinates": [2.93444929776, 50.524811889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82632878b531debb76d50d507baab858604fda1a", "fields": {"nom_de_la_commune": "CATTENIERES", "libell_d_acheminement": "CATTENIERES", "code_postal": "59217", "coordonnees_gps": [50.1561970919, 3.35840082194], "code_commune_insee": "59138"}, "geometry": {"type": "Point", "coordinates": [3.35840082194, 50.1561970919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b29134d51e948428c63fcf74f31cb1cd68da3ebf", "fields": {"nom_de_la_commune": "CERFONTAINE", "libell_d_acheminement": "CERFONTAINE", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59142"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a61ec09c2b43b58e50ca191aae6821d8bd2ef78", "fields": {"nom_de_la_commune": "CHATEAU L ABBAYE", "libell_d_acheminement": "CHATEAU L ABBAYE", "code_postal": "59230", "coordonnees_gps": [50.4489515034, 3.43065651887], "code_commune_insee": "59144"}, "geometry": {"type": "Point", "coordinates": [3.43065651887, 50.4489515034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7fa5ce239fd50ec2f51a0e8dc998bad9e39689d", "fields": {"nom_de_la_commune": "CHEMY", "libell_d_acheminement": "CHEMY", "code_postal": "59147", "coordonnees_gps": [50.5444177471, 2.98104516318], "code_commune_insee": "59145"}, "geometry": {"type": "Point", "coordinates": [2.98104516318, 50.5444177471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48d6df43418e18abc55f8ad7500e2eab9aa56bd", "fields": {"nom_de_la_commune": "COURCHELETTES", "libell_d_acheminement": "COURCHELETTES", "code_postal": "59552", "coordonnees_gps": [50.3521392693, 3.05547051543], "code_commune_insee": "59156"}, "geometry": {"type": "Point", "coordinates": [3.05547051543, 50.3521392693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01198df83def2b2313e494a18e0c7bb7f2ebf895", "fields": {"nom_de_la_commune": "CURGIES", "libell_d_acheminement": "CURGIES", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59166"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6161151a3caa5b14fb4b3cf7c6301dbda3687e2b", "fields": {"nom_de_la_commune": "CUVILLERS", "libell_d_acheminement": "CUVILLERS", "code_postal": "59268", "coordonnees_gps": [50.2255437815, 3.19481961843], "code_commune_insee": "59167"}, "geometry": {"type": "Point", "coordinates": [3.19481961843, 50.2255437815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dbe692a476e64160b5cfdbce75bdc2b967a4682", "fields": {"nom_de_la_commune": "DENAIN", "libell_d_acheminement": "DENAIN", "code_postal": "59220", "coordonnees_gps": [50.331558265, 3.40464647794], "code_commune_insee": "59172"}, "geometry": {"type": "Point", "coordinates": [3.40464647794, 50.331558265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ed2bb84bfc33f5f23131055e9efb8cc610adc8a", "fields": {"nom_de_la_commune": "DUNKERQUE", "libell_d_acheminement": "DUNKERQUE", "code_postal": "59240", "coordonnees_gps": [51.0306940868, 2.33760634], "code_commune_insee": "59183"}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e444928196b8b1937fac0004af15c9786220a91", "fields": {"code_postal": "59240", "code_commune_insee": "59183", "libell_d_acheminement": "DUNKERQUE", "ligne_5": "MALO LES BAINS", "nom_de_la_commune": "DUNKERQUE", "coordonnees_gps": [51.0306940868, 2.33760634]}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "780e6df57ef9ecaa92fc6fca38adf20e0671bedd", "fields": {"code_postal": "59240", "code_commune_insee": "59183", "libell_d_acheminement": "DUNKERQUE", "ligne_5": "ROSENDAEL", "nom_de_la_commune": "DUNKERQUE", "coordonnees_gps": [51.0306940868, 2.33760634]}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62ca84c36a73971a520039244bdd83c6d5014069", "fields": {"nom_de_la_commune": "EBBLINGHEM", "libell_d_acheminement": "EBBLINGHEM", "code_postal": "59173", "coordonnees_gps": [50.7167343875, 2.40817332289], "code_commune_insee": "59184"}, "geometry": {"type": "Point", "coordinates": [2.40817332289, 50.7167343875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fdb28ffb606278f114b220c155e8ff176795afc", "fields": {"nom_de_la_commune": "ELESMES", "libell_d_acheminement": "ELESMES", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59190"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e01679087fd7518ee57725c94771deb5c4cad535", "fields": {"nom_de_la_commune": "ELINCOURT", "libell_d_acheminement": "ELINCOURT", "code_postal": "59127", "coordonnees_gps": [50.0669008118, 3.33260202285], "code_commune_insee": "59191"}, "geometry": {"type": "Point", "coordinates": [3.33260202285, 50.0669008118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1af791230454e8247769124a93a176407dea0fb", "fields": {"nom_de_la_commune": "ESCOBECQUES", "libell_d_acheminement": "ESCOBECQUES", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59208"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2198e5364b3e61d1e4af869c816828791fa4e485", "fields": {"nom_de_la_commune": "ESTREUX", "libell_d_acheminement": "ESTREUX", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59215"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "facb840eaebfcddb3be3267f58733842c1f4ddf1", "fields": {"nom_de_la_commune": "ESTRUN", "libell_d_acheminement": "ESTRUN", "code_postal": "59295", "coordonnees_gps": [50.2473645343, 3.27148479456], "code_commune_insee": "59219"}, "geometry": {"type": "Point", "coordinates": [3.27148479456, 50.2473645343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fc3f9c0fff195865576a5184d42c63c166d1243", "fields": {"nom_de_la_commune": "FLOURSIES", "libell_d_acheminement": "FLOURSIES", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59240"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dcc1e64f4200a902549624b0741ecb27540f008", "fields": {"nom_de_la_commune": "FONTAINE AU BOIS", "libell_d_acheminement": "FONTAINE AU BOIS", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59242"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2726faf1087f6050c152676221ac74022f7280", "fields": {"nom_de_la_commune": "FONTAINE NOTRE DAME", "libell_d_acheminement": "FONTAINE NOTRE DAME", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59244"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a17e4db4c6a7b60cc69115f1e56c823dcbae8a1", "fields": {"nom_de_la_commune": "FRETIN", "libell_d_acheminement": "FRETIN", "code_postal": "59273", "coordonnees_gps": [50.5659829271, 3.1352270312], "code_commune_insee": "59256"}, "geometry": {"type": "Point", "coordinates": [3.1352270312, 50.5659829271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f0df3447961c54f64e187489ffead9a6e6fa84", "fields": {"nom_de_la_commune": "FROMELLES", "libell_d_acheminement": "FROMELLES", "code_postal": "59249", "coordonnees_gps": [50.6028600602, 2.83634213579], "code_commune_insee": "59257"}, "geometry": {"type": "Point", "coordinates": [2.83634213579, 50.6028600602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc2324e4fae7f52acd070f660c83ec3a4159c2b", "fields": {"nom_de_la_commune": "GODEWAERSVELDE", "libell_d_acheminement": "GODEWAERSVELDE", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59262"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03aa3b04526a8092a8354d46201ace767326d258", "fields": {"nom_de_la_commune": "GONNELIEU", "libell_d_acheminement": "GONNELIEU", "code_postal": "59231", "coordonnees_gps": [50.065671657, 3.13135649355], "code_commune_insee": "59267"}, "geometry": {"type": "Point", "coordinates": [3.13135649355, 50.065671657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e0279dca4c30ffb6a4e211212db69e4cc100469", "fields": {"nom_de_la_commune": "GRANDE SYNTHE", "libell_d_acheminement": "GRANDE SYNTHE", "code_postal": "59760", "coordonnees_gps": [51.0165890114, 2.29038510702], "code_commune_insee": "59271"}, "geometry": {"type": "Point", "coordinates": [2.29038510702, 51.0165890114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f74daf2848921557c41b4b7e38b59e5522010e49", "fields": {"nom_de_la_commune": "HAMEL", "libell_d_acheminement": "HAMEL", "code_postal": "59151", "coordonnees_gps": [50.2865158745, 3.11140042003], "code_commune_insee": "59280"}, "geometry": {"type": "Point", "coordinates": [3.11140042003, 50.2865158745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29558d8a3bfc7872ec4674cf2fd6704d22bf3cd0", "fields": {"nom_de_la_commune": "HAUTMONT", "libell_d_acheminement": "HAUTMONT", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59291"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63785c6178cdb21075f2ff12dab8fcfcf1f006ad", "fields": {"nom_de_la_commune": "HONDSCHOOTE", "libell_d_acheminement": "HONDSCHOOTE", "code_postal": "59122", "coordonnees_gps": [50.9782311457, 2.55726472129], "code_commune_insee": "59309"}, "geometry": {"type": "Point", "coordinates": [2.55726472129, 50.9782311457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a54c3f02d36131adabfe791314ec8e0b06976876", "fields": {"nom_de_la_commune": "KILLEM", "libell_d_acheminement": "KILLEM", "code_postal": "59122", "coordonnees_gps": [50.9782311457, 2.55726472129], "code_commune_insee": "59326"}, "geometry": {"type": "Point", "coordinates": [2.55726472129, 50.9782311457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541436a99fc5bb67a10ebcc84a6339697157eb2e", "fields": {"nom_de_la_commune": "LALLAING", "libell_d_acheminement": "LALLAING", "code_postal": "59167", "coordonnees_gps": [50.3862957696, 3.168388613], "code_commune_insee": "59327"}, "geometry": {"type": "Point", "coordinates": [3.168388613, 50.3862957696]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "909115a8bc036fb957dc0f292480508e944405fc", "fields": {"nom_de_la_commune": "LAROUILLIES", "libell_d_acheminement": "LAROUILLIES", "code_postal": "59219", "coordonnees_gps": [50.0518032549, 3.92131798693], "code_commune_insee": "59333"}, "geometry": {"type": "Point", "coordinates": [3.92131798693, 50.0518032549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9840ec1a9f9c8f7292fdca662ed8431f68243436", "fields": {"nom_de_la_commune": "LIGNY EN CAMBRESIS", "libell_d_acheminement": "LIGNY EN CAMBRESIS", "code_postal": "59191", "coordonnees_gps": [50.1001907619, 3.36864533682], "code_commune_insee": "59349"}, "geometry": {"type": "Point", "coordinates": [3.36864533682, 50.1001907619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "673bffdd992fcb545f9c834fc8d3e3af67124813", "fields": {"code_postal": "59160", "code_commune_insee": "59350", "libell_d_acheminement": "LILLE", "ligne_5": "LOMME", "nom_de_la_commune": "LILLE", "coordonnees_gps": [50.6326805368, 3.0429756448]}, "geometry": {"type": "Point", "coordinates": [3.0429756448, 50.6326805368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72820c6c4ae282905e01105b5cd042e4b5ad26a", "fields": {"nom_de_la_commune": "LIMONT FONTAINE", "libell_d_acheminement": "LIMONT FONTAINE", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59351"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f18570f011e2b07fce2fb4b22a14a67065480a2c", "fields": {"nom_de_la_commune": "LOFFRE", "libell_d_acheminement": "LOFFRE", "code_postal": "59182", "coordonnees_gps": [50.3632091187, 3.17800560697], "code_commune_insee": "59354"}, "geometry": {"type": "Point", "coordinates": [3.17800560697, 50.3632091187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab1b4990f6d09a27cda7cd055b88a1320d569abf", "fields": {"nom_de_la_commune": "LA LONGUEVILLE", "libell_d_acheminement": "LA LONGUEVILLE", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59357"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ca65df29f5eb342064514997922d692b96877b", "fields": {"nom_de_la_commune": "LOUVIGNIES QUESNOY", "libell_d_acheminement": "LOUVIGNIES QUESNOY", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59363"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13e2a815b6513053f2b92ad620b5c7023968d39", "fields": {"nom_de_la_commune": "MARCQ EN BAROEUL", "libell_d_acheminement": "MARCQ EN BAROEUL", "code_postal": "59700", "coordonnees_gps": [50.6754108079, 3.10130180622], "code_commune_insee": "59378"}, "geometry": {"type": "Point", "coordinates": [3.10130180622, 50.6754108079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "910891c4ac3680d578649cab8bdd5d4cbc11d256", "fields": {"nom_de_la_commune": "MARESCHES", "libell_d_acheminement": "MARESCHES", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59381"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c93584887d82254503a03e315d1b61aa04e5e7f", "fields": {"nom_de_la_commune": "MARQUETTE LEZ LILLE", "libell_d_acheminement": "MARQUETTE LEZ LILLE", "code_postal": "59520", "coordonnees_gps": [50.6742385888, 3.06026176447], "code_commune_insee": "59386"}, "geometry": {"type": "Point", "coordinates": [3.06026176447, 50.6742385888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e13cb40b7c372c7c36e3c8ce27c1983290200b", "fields": {"nom_de_la_commune": "MERCKEGHEM", "libell_d_acheminement": "MERCKEGHEM", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59397"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "747b2607fc3144cb2ca02a5d53151e8ad4888ea1", "fields": {"nom_de_la_commune": "MERIGNIES", "libell_d_acheminement": "MERIGNIES", "code_postal": "59710", "coordonnees_gps": [50.5305991887, 3.10906639629], "code_commune_insee": "59398"}, "geometry": {"type": "Point", "coordinates": [3.10906639629, 50.5305991887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e14d09fe02e51da5c87223863457dccc16314cdf", "fields": {"nom_de_la_commune": "MERRIS", "libell_d_acheminement": "MERRIS", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59399"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ea30b80340f95530ae46332c9db2390ee4294a", "fields": {"nom_de_la_commune": "MONS EN BAROEUL", "libell_d_acheminement": "MONS EN BAROEUL", "code_postal": "59370", "coordonnees_gps": [50.6427503155, 3.10726820603], "code_commune_insee": "59410"}, "geometry": {"type": "Point", "coordinates": [3.10726820603, 50.6427503155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b184126fb2877e7ad2ad3b9ca87881516a9f19", "fields": {"nom_de_la_commune": "MONTAY", "libell_d_acheminement": "MONTAY", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59412"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97797f84142e67ef5058b3768bb6cd4496b73cdf", "fields": {"nom_de_la_commune": "MONTIGNY EN CAMBRESIS", "libell_d_acheminement": "MONTIGNY EN CAMBRESIS", "code_postal": "59225", "coordonnees_gps": [50.0767179455, 3.40307595775], "code_commune_insee": "59413"}, "geometry": {"type": "Point", "coordinates": [3.40307595775, 50.0767179455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05beb20372c1fd2d3874fa90cde5ca7057652466", "fields": {"nom_de_la_commune": "MORBECQUE", "libell_d_acheminement": "MORBECQUE", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59416"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb8bb7d20c962ae9ebdca3b9cb7b28ae31eaacd0", "fields": {"nom_de_la_commune": "MORTAGNE DU NORD", "libell_d_acheminement": "MORTAGNE DU NORD", "code_postal": "59158", "coordonnees_gps": [50.504294197, 3.46542876217], "code_commune_insee": "59418"}, "geometry": {"type": "Point", "coordinates": [3.46542876217, 50.504294197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44902117c178b3f11bbcb16c6a0d9c7f169e6a66", "fields": {"nom_de_la_commune": "NEUF BERQUIN", "libell_d_acheminement": "NEUF BERQUIN", "code_postal": "59940", "coordonnees_gps": [50.6663981785, 2.70159427049], "code_commune_insee": "59423"}, "geometry": {"type": "Point", "coordinates": [2.70159427049, 50.6663981785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1126ea03dbdfd14198bc3c1a853c535391c4f29", "fields": {"nom_de_la_commune": "NIEPPE", "libell_d_acheminement": "NIEPPE", "code_postal": "59850", "coordonnees_gps": [50.6991351406, 2.83274027717], "code_commune_insee": "59431"}, "geometry": {"type": "Point", "coordinates": [2.83274027717, 50.6991351406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7cc375812f4b4997a264b2ca7283a14cad338b", "fields": {"nom_de_la_commune": "NIEURLET", "libell_d_acheminement": "NIEURLET", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59433"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dbfbf35d4d4f4839beead0bf750f0c6daf6ea3d", "fields": {"nom_de_la_commune": "ODOMEZ", "libell_d_acheminement": "ODOMEZ", "code_postal": "59970", "coordonnees_gps": [50.4323433177, 3.57545124255], "code_commune_insee": "59444"}, "geometry": {"type": "Point", "coordinates": [3.57545124255, 50.4323433177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fbdf7c4e74ab47b91383e13cffdf68a3f123982", "fields": {"nom_de_la_commune": "OHAIN", "libell_d_acheminement": "OHAIN", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59445"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "194756864a2890d5296ccfb72c767c0e6ddd2899", "fields": {"nom_de_la_commune": "ONNAING", "libell_d_acheminement": "ONNAING", "code_postal": "59264", "coordonnees_gps": [50.3864443825, 3.59638308705], "code_commune_insee": "59447"}, "geometry": {"type": "Point", "coordinates": [3.59638308705, 50.3864443825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed7a9330dd3de7b3e0ebab00b54563cd3230c6f", "fields": {"nom_de_la_commune": "OSTRICOURT", "libell_d_acheminement": "OSTRICOURT", "code_postal": "59162", "coordonnees_gps": [50.4575299308, 3.03272831033], "code_commune_insee": "59452"}, "geometry": {"type": "Point", "coordinates": [3.03272831033, 50.4575299308]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "770f489f6aad6e80fb991bab5a77429a49f39a74", "fields": {"nom_de_la_commune": "PECQUENCOURT", "libell_d_acheminement": "PECQUENCOURT", "code_postal": "59146", "coordonnees_gps": [50.3766235173, 3.21883898526], "code_commune_insee": "59456"}, "geometry": {"type": "Point", "coordinates": [3.21883898526, 50.3766235173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "829fcae57757e8b156217a66bfd548790ee0a925", "fields": {"nom_de_la_commune": "PETITE FORET", "libell_d_acheminement": "PETITE FORET", "code_postal": "59494", "coordonnees_gps": [50.3753696067, 3.46424091997], "code_commune_insee": "59459"}, "geometry": {"type": "Point", "coordinates": [3.46424091997, 50.3753696067]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc23e4b08123d4ec24b902095f15bb8c79edc47d", "fields": {"nom_de_la_commune": "PETIT FAYT", "libell_d_acheminement": "PETIT FAYT", "code_postal": "59244", "coordonnees_gps": [50.0896425348, 3.83023391682], "code_commune_insee": "59461"}, "geometry": {"type": "Point", "coordinates": [3.83023391682, 50.0896425348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bfa98adc529c281a6c31b7c90420cf4d654e0ab", "fields": {"nom_de_la_commune": "PHALEMPIN", "libell_d_acheminement": "PHALEMPIN", "code_postal": "59133", "coordonnees_gps": [50.5122341221, 3.00761898471], "code_commune_insee": "59462"}, "geometry": {"type": "Point", "coordinates": [3.00761898471, 50.5122341221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46af315b11ce32667262f92d75ceeee12d850ec9", "fields": {"nom_de_la_commune": "PONT A MARCQ", "libell_d_acheminement": "PONT A MARCQ", "code_postal": "59710", "coordonnees_gps": [50.5305991887, 3.10906639629], "code_commune_insee": "59466"}, "geometry": {"type": "Point", "coordinates": [3.10906639629, 50.5305991887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "044249295e58045c98b281a8990238134f99f71d", "fields": {"nom_de_la_commune": "QUIEVELON", "libell_d_acheminement": "QUIEVELON", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59483"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb3a552843901c1c78c6532a8488caaafe87503", "fields": {"nom_de_la_commune": "RAISMES", "libell_d_acheminement": "RAISMES", "code_postal": "59590", "coordonnees_gps": [50.4106446323, 3.48926993726], "code_commune_insee": "59491"}, "geometry": {"type": "Point", "coordinates": [3.48926993726, 50.4106446323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19a5dc96e40d614273e48cc435ca54a73adfc023", "fields": {"nom_de_la_commune": "RECQUIGNIES", "libell_d_acheminement": "RECQUIGNIES", "code_postal": "59245", "coordonnees_gps": [50.2759501478, 4.04846683203], "code_commune_insee": "59495"}, "geometry": {"type": "Point", "coordinates": [4.04846683203, 50.2759501478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3d762cf376282f18674d5ac740c24cde994bdb", "fields": {"nom_de_la_commune": "REXPOEDE", "libell_d_acheminement": "REXPOEDE", "code_postal": "59122", "coordonnees_gps": [50.9782311457, 2.55726472129], "code_commune_insee": "59499"}, "geometry": {"type": "Point", "coordinates": [2.55726472129, 50.9782311457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3e10088f05dcb3998ef602776709162c7535311", "fields": {"nom_de_la_commune": "RIEUX EN CAMBRESIS", "libell_d_acheminement": "RIEUX EN CAMBRESIS", "code_postal": "59277", "coordonnees_gps": [50.2046176366, 3.3520348216], "code_commune_insee": "59502"}, "geometry": {"type": "Point", "coordinates": [3.3520348216, 50.2046176366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904bb2ef0ef63a214aab143143c864a64ee9f6bd", "fields": {"nom_de_la_commune": "ROOST WARENDIN", "libell_d_acheminement": "ROOST WARENDIN", "code_postal": "59286", "coordonnees_gps": [50.4150658867, 3.10332195148], "code_commune_insee": "59509"}, "geometry": {"type": "Point", "coordinates": [3.10332195148, 50.4150658867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e91b7c6504448b19896b1ad1029f7ae6aa3b2f1", "fields": {"nom_de_la_commune": "RUBROUCK", "libell_d_acheminement": "RUBROUCK", "code_postal": "59285", "coordonnees_gps": [50.8315857512, 2.37917573107], "code_commune_insee": "59516"}, "geometry": {"type": "Point", "coordinates": [2.37917573107, 50.8315857512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a947cc84fbf09fdc1a67d648186ed37bb8a31e4", "fields": {"nom_de_la_commune": "LES RUES DES VIGNES", "libell_d_acheminement": "LES RUES DES VIGNES", "code_postal": "59258", "coordonnees_gps": [50.0777482818, 3.25663233924], "code_commune_insee": "59517"}, "geometry": {"type": "Point", "coordinates": [3.25663233924, 50.0777482818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6809dec38f372fd2e6371a099a15cc914bab3bd8", "fields": {"nom_de_la_commune": "RUMILLY EN CAMBRESIS", "libell_d_acheminement": "RUMILLY EN CAMBRESIS", "code_postal": "59281", "coordonnees_gps": [50.1302971756, 3.22861401767], "code_commune_insee": "59520"}, "geometry": {"type": "Point", "coordinates": [3.22861401767, 50.1302971756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5d6a5686b8dc5142628b008916ff746bb1e4415", "fields": {"nom_de_la_commune": "SAILLY LEZ LANNOY", "libell_d_acheminement": "SAILLY LEZ LANNOY", "code_postal": "59390", "coordonnees_gps": [50.657732592, 3.22516990677], "code_commune_insee": "59522"}, "geometry": {"type": "Point", "coordinates": [3.22516990677, 50.657732592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ecc54e0f4a9cdbbfd31eb519c737fc0fb004569", "fields": {"nom_de_la_commune": "SAINS DU NORD", "libell_d_acheminement": "SAINS DU NORD", "code_postal": "59177", "coordonnees_gps": [50.0919119818, 4.0256341447], "code_commune_insee": "59525"}, "geometry": {"type": "Point", "coordinates": [4.0256341447, 50.0919119818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cf29294da67efa36f0e5412adf36535e0e7a699", "fields": {"nom_de_la_commune": "ST AMAND LES EAUX", "libell_d_acheminement": "ST AMAND LES EAUX", "code_postal": "59230", "coordonnees_gps": [50.4489515034, 3.43065651887], "code_commune_insee": "59526"}, "geometry": {"type": "Point", "coordinates": [3.43065651887, 50.4489515034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf4384e638c1842134b29460bf883f8e6dc9a19f", "fields": {"nom_de_la_commune": "ST BENIN", "libell_d_acheminement": "ST BENIN", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59531"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bccb3869e6be19982d8c1d596992bf377b0e3fa", "fields": {"nom_de_la_commune": "GABILLOU", "libell_d_acheminement": "GABILLOU", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24192"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38153791c6ef9067faa9e4e32b1ddabbe27c7609", "fields": {"nom_de_la_commune": "GAGEAC ET ROUILLAC", "libell_d_acheminement": "GAGEAC ET ROUILLAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24193"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62fd74daf231742107cdd0b3c6c54ca99f47fa39", "fields": {"nom_de_la_commune": "GINESTET", "libell_d_acheminement": "GINESTET", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24197"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4115a0df2be903f680e12ec8e581c97aa55cdc63", "fields": {"nom_de_la_commune": "GOUT ROSSIGNOL", "libell_d_acheminement": "GOUT ROSSIGNOL", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24199"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ea744847591bf98ea91e23070cc9fa456982c68", "fields": {"nom_de_la_commune": "GRAND BRASSAC", "libell_d_acheminement": "GRAND BRASSAC", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24200"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2ffe7bfc12cdbed1c84a2228b19c390bf34da7b", "fields": {"nom_de_la_commune": "GRIGNOLS", "libell_d_acheminement": "GRIGNOLS", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24205"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb6038ed1bac20b62fba4e632cab498e1b0fbf3", "fields": {"nom_de_la_commune": "GRIVES", "libell_d_acheminement": "GRIVES", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24206"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f141eee8c612e426f7145fb7371b3c7ea91c553b", "fields": {"nom_de_la_commune": "ISSIGEAC", "libell_d_acheminement": "ISSIGEAC", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24212"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8e9e60facb533605a2b5b279518f2525464dc2", "fields": {"nom_de_la_commune": "JAYAC", "libell_d_acheminement": "JAYAC", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24215"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1156e9a7849b093717d98f5caa5f056fb331c477", "fields": {"nom_de_la_commune": "LA JEMAYE", "libell_d_acheminement": "LA JEMAYE", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24216"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eb75154f92982c03c1ea643446cce57cc6a8398", "fields": {"nom_de_la_commune": "LACROPTE", "libell_d_acheminement": "LACROPTE", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24220"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032a6dbe01377861df9e033527c80ea686f0f22f", "fields": {"nom_de_la_commune": "LALINDE", "libell_d_acheminement": "LALINDE", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24223"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23cfea2b237c686e0577cab56e967e4c25d69621", "fields": {"nom_de_la_commune": "LES LECHES", "libell_d_acheminement": "LES LECHES", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24234"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd73f212277fbd61209a41bf9d97346c6fa902c1", "fields": {"nom_de_la_commune": "LEGUILLAC DE CERCLES", "libell_d_acheminement": "LEGUILLAC DE CERCLES", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24235"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "025090a4d59bac1d67147899a549abf9b220b4ae", "fields": {"nom_de_la_commune": "LEGUILLAC DE L AUCHE", "libell_d_acheminement": "LEGUILLAC DE L AUCHE", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24236"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "516639c9e5b957614555549d9725f91f19e2baaf", "fields": {"nom_de_la_commune": "LISLE", "libell_d_acheminement": "LISLE", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24243"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "411c2aa82d24505e10b8e6d742f7d4a3c8b5f19e", "fields": {"nom_de_la_commune": "MARCILLAC ST QUENTIN", "libell_d_acheminement": "MARCILLAC ST QUENTIN", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24252"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4493ca75bbeec2c750c5f7b9f98ff0297a86dbd2", "fields": {"nom_de_la_commune": "MARQUAY", "libell_d_acheminement": "MARQUAY", "code_postal": "24620", "coordonnees_gps": [44.9543754146, 1.07528659092], "code_commune_insee": "24255"}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82abc4b5bbd99e8dc8e35d279e001f87c8e2bbb3", "fields": {"nom_de_la_commune": "MARSANEIX", "libell_d_acheminement": "MARSANEIX", "code_postal": "24750", "coordonnees_gps": [45.1801193657, 0.766939907734], "code_commune_insee": "24258"}, "geometry": {"type": "Point", "coordinates": [0.766939907734, 45.1801193657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0283541e1df557d57d9195f392e0ca1b780764f8", "fields": {"nom_de_la_commune": "MEYRALS", "libell_d_acheminement": "MEYRALS", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24268"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07dda78b3c0866dba730fe59b27341e2e9d11f5f", "fields": {"nom_de_la_commune": "MILHAC D AUBEROCHE", "libell_d_acheminement": "MILHAC D AUBEROCHE", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24270"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ced3cd904594803651766a03a2e94c8d54db25", "fields": {"nom_de_la_commune": "MONFAUCON", "libell_d_acheminement": "MONFAUCON", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24277"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff03bf7c119622fd4471291edee85ddb8ddbde35", "fields": {"nom_de_la_commune": "MONTAZEAU", "libell_d_acheminement": "MONTAZEAU", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24288"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53cfb0bce1b7baca8a3f90bf3af6564a81a50b6", "fields": {"nom_de_la_commune": "MONTPEYROUX", "libell_d_acheminement": "MONTPEYROUX", "code_postal": "24610", "coordonnees_gps": [44.9374172162, 0.100217545195], "code_commune_insee": "24292"}, "geometry": {"type": "Point", "coordinates": [0.100217545195, 44.9374172162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0cb9bce29e9152f777a568aca83d4558415b169", "fields": {"nom_de_la_commune": "MONTPON MENESTEROL", "libell_d_acheminement": "MONTPON MENESTEROL", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24294"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c7ff044ff717f35c819aa8a20068913e5791a2", "fields": {"nom_de_la_commune": "MOULIN NEUF", "libell_d_acheminement": "MOULIN NEUF", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24297"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0265643dfd7d798d68f6b2180b9bd92793b9e97", "fields": {"nom_de_la_commune": "NANTHEUIL", "libell_d_acheminement": "NANTHEUIL", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24304"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22a238b9271a7fe4db3593d49db43a2f0624d7c0", "fields": {"nom_de_la_commune": "PERIGUEUX", "libell_d_acheminement": "PERIGUEUX", "code_postal": "24000", "coordonnees_gps": [45.1922180776, 0.71141252253], "code_commune_insee": "24322"}, "geometry": {"type": "Point", "coordinates": [0.71141252253, 45.1922180776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bde8998087607db8501243da25dabb0c7dc2037", "fields": {"nom_de_la_commune": "PEYZAC LE MOUSTIER", "libell_d_acheminement": "PEYZAC LE MOUSTIER", "code_postal": "24620", "coordonnees_gps": [44.9543754146, 1.07528659092], "code_commune_insee": "24326"}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a0ca232397ab2faf8a79edcecb60292f11b7827", "fields": {"nom_de_la_commune": "PLAZAC", "libell_d_acheminement": "PLAZAC", "code_postal": "24580", "coordonnees_gps": [45.0387588745, 0.994420883545], "code_commune_insee": "24330"}, "geometry": {"type": "Point", "coordinates": [0.994420883545, 45.0387588745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4465c4dc2a7491b21338aafc06e2d344975c9fcd", "fields": {"nom_de_la_commune": "PRIGONRIEUX", "libell_d_acheminement": "PRIGONRIEUX", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24340"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2143e56ff487a2f7b195a12fa95cb77450882441", "fields": {"nom_de_la_commune": "PUYRENIER", "libell_d_acheminement": "PUYRENIER", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24344"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9904a275f87befbea65e07f71cbca1f0fe97296", "fields": {"nom_de_la_commune": "ROUFFIGNAC ST CERNIN DE REILHAC", "libell_d_acheminement": "ROUFFIGNAC ST CERNIN DE REILHAC", "code_postal": "24580", "coordonnees_gps": [45.0387588745, 0.994420883545], "code_commune_insee": "24356"}, "geometry": {"type": "Point", "coordinates": [0.994420883545, 45.0387588745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05eea0c932c669abe12d2f483a13a7200a897d76", "fields": {"nom_de_la_commune": "SADILLAC", "libell_d_acheminement": "SADILLAC", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24359"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e37011bf51cc92300e112194c46cc1b2904b0443", "fields": {"nom_de_la_commune": "ST AMAND DE COLY", "libell_d_acheminement": "ST AMAND DE COLY", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24364"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96591579c7fbadaafeaa38532b6684cd60247366", "fields": {"nom_de_la_commune": "ST AUBIN DE LANQUAIS", "libell_d_acheminement": "ST AUBIN DE LANQUAIS", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24374"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5baa6a601c2b201f1449e7f98ddd75c5d4c1b4e", "fields": {"nom_de_la_commune": "ST AVIT DE VIALARD", "libell_d_acheminement": "ST AVIT DE VIALARD", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24377"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2302590c3699a6810d4be131e62a4a9037075fec", "fields": {"nom_de_la_commune": "ST AVIT SENIEUR", "libell_d_acheminement": "ST AVIT SENIEUR", "code_postal": "24440", "coordonnees_gps": [44.7570815244, 0.786200936905], "code_commune_insee": "24379"}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bfd875495ef33908282f166a5bf338d82a4a667", "fields": {"nom_de_la_commune": "ST CASSIEN", "libell_d_acheminement": "ST CASSIEN", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24384"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28751306f1de93ef71e660255393266c4a57ee0", "fields": {"nom_de_la_commune": "ST CREPIN D AUBEROCHE", "libell_d_acheminement": "ST CREPIN D AUBEROCHE", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24390"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f02d4bd439c5a579be597cb786c31372b7a66495", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "24440", "coordonnees_gps": [44.7570815244, 0.786200936905], "code_commune_insee": "24393"}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00411662e03152ad50dd10168e8b46be63e57cc9", "fields": {"nom_de_la_commune": "ST CYPRIEN", "libell_d_acheminement": "ST CYPRIEN", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24396"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f800684a75ed1b27c2853a0d7e7604a07e28bde9", "fields": {"nom_de_la_commune": "STE EULALIE D EYMET", "libell_d_acheminement": "STE EULALIE D EYMET", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24402"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4e34a04c2a79b6506e0db1e3c2936e9b42ca1e0", "fields": {"nom_de_la_commune": "ST FELIX DE VILLADEIX", "libell_d_acheminement": "ST FELIX DE VILLADEIX", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24405"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8fb6f7c72f9dc7e2a540ee16d32eb108d92829", "fields": {"nom_de_la_commune": "ST FRONT DE PRADOUX", "libell_d_acheminement": "ST FRONT DE PRADOUX", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24409"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f578196a4c3b7a7849c2896d3f82e510c253b02b", "fields": {"nom_de_la_commune": "ST FRONT LA RIVIERE", "libell_d_acheminement": "ST FRONT LA RIVIERE", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24410"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad712a0b4f21483e4da3410a917234198fd27799", "fields": {"nom_de_la_commune": "ST GERMAIN DES PRES", "libell_d_acheminement": "ST GERMAIN DES PRES", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24417"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c7dcdb59c404eb56ed92c63e0d497bad3d9a586", "fields": {"nom_de_la_commune": "ST GERY", "libell_d_acheminement": "ST GERY", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24420"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e9f2f626a0f50f7a6da929a4933a92ec9ae95ca", "fields": {"nom_de_la_commune": "ST LAURENT DES HOMMES", "libell_d_acheminement": "ST LAURENT DES HOMMES", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24436"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a8f5c013574a5fbe1da925cdbf44d65486f32b1", "fields": {"nom_de_la_commune": "ST LAURENT DES VIGNES", "libell_d_acheminement": "ST LAURENT DES VIGNES", "code_postal": "24100", "coordonnees_gps": [44.8574412518, 0.495284602644], "code_commune_insee": "24437"}, "geometry": {"type": "Point", "coordinates": [0.495284602644, 44.8574412518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90914b8dfc376b6701497225fd12a7a5bd94bb9f", "fields": {"nom_de_la_commune": "ST LEON SUR VEZERE", "libell_d_acheminement": "ST LEON SUR VEZERE", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24443"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0de64e42b6a2189f7f623ea29a3619db0693a6d8", "fields": {"nom_de_la_commune": "ST LOUIS EN L ISLE", "libell_d_acheminement": "ST LOUIS EN L ISLE", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24444"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "115ce35ad21f9aa3bd8985e08b2570e8bd28ef72", "fields": {"nom_de_la_commune": "ST MARCORY", "libell_d_acheminement": "ST MARCORY", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24446"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af39af14bd5b945e96d9e0d88c919367a0e7d0e6", "fields": {"nom_de_la_commune": "ST MARTIAL VIVEYROL", "libell_d_acheminement": "ST MARTIAL VIVEYROL", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24452"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ea9e26653cc5e209ca32c1b3c033fca5ea5121", "fields": {"nom_de_la_commune": "ST MARTIN DE RIBERAC", "libell_d_acheminement": "ST MARTIN DE RIBERAC", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24455"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fbd5c86b7e586bef706353807cc566aa8072102", "fields": {"nom_de_la_commune": "ST MARTIN L ASTIER", "libell_d_acheminement": "ST MARTIN L ASTIER", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24457"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2220a4d1816ccb188d173ea3aad6cf9e70b7d70", "fields": {"nom_de_la_commune": "ST MEARD DE DRONE", "libell_d_acheminement": "ST MEARD DE DRONE", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24460"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14cb48bdb82c3f39e849e837c8cf2e55b9e899e7", "fields": {"nom_de_la_commune": "ST PARDOUX ET VIELVIC", "libell_d_acheminement": "ST PARDOUX ET VIELVIC", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24478"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b36eb6f382d9ec00426f9d401609a3e91c35849", "fields": {"nom_de_la_commune": "ST PRIEST LES FOUGERES", "libell_d_acheminement": "ST PRIEST LES FOUGERES", "code_postal": "24450", "coordonnees_gps": [45.5667064353, 0.957966162426], "code_commune_insee": "24489"}, "geometry": {"type": "Point", "coordinates": [0.957966162426, 45.5667064353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab69c4a05f5e0d119a6c43fa6d9713707ed57c1", "fields": {"nom_de_la_commune": "ST RAPHAEL", "libell_d_acheminement": "ST RAPHAEL", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24493"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6199c4212b54abfcd2c8883bae67c3211bf69853", "fields": {"nom_de_la_commune": "ST SEURIN DE PRATS", "libell_d_acheminement": "ST SEURIN DE PRATS", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24501"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c12ed9777d2cb48c2cefe21ee25b55f402f3f381", "fields": {"nom_de_la_commune": "ST VINCENT DE CONNEZAC", "libell_d_acheminement": "ST VINCENT DE CONNEZAC", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24509"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc019dc79d2fd4b766f31950af0617e69a61bb4", "fields": {"nom_de_la_commune": "ST VINCENT LE PALUEL", "libell_d_acheminement": "ST VINCENT LE PALUEL", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24512"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc11534d6c3c7e362b1184a8ba303d43a4890a2", "fields": {"nom_de_la_commune": "ST VINCENT SUR L ISLE", "libell_d_acheminement": "ST VINCENT SUR L ISLE", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24513"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f9dcbf4cb60c2c97166724165f92b206920864", "fields": {"nom_de_la_commune": "SAVIGNAC LES EGLISES", "libell_d_acheminement": "SAVIGNAC LES EGLISES", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24527"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ddcb1656fe787dcc3853f3535376a01fb2bf8c5", "fields": {"nom_de_la_commune": "SIMEYROLS", "libell_d_acheminement": "SIMEYROLS", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24535"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e1dfd85637e9f82c364fdc4452d8b806988d68", "fields": {"nom_de_la_commune": "SOURZAC", "libell_d_acheminement": "SOURZAC", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24543"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a532b11b1734b9848af785a22f51a93a98358f", "fields": {"nom_de_la_commune": "TAMNIES", "libell_d_acheminement": "TAMNIES", "code_postal": "24620", "coordonnees_gps": [44.9543754146, 1.07528659092], "code_commune_insee": "24544"}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2638bab06f7ae26beea75431c08a46df60e3012", "fields": {"nom_de_la_commune": "TEILLOTS", "libell_d_acheminement": "TEILLOTS", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24545"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf900301c295ee1a37f5da980060e255fab15af8", "fields": {"nom_de_la_commune": "TEYJAT", "libell_d_acheminement": "TEYJAT", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24548"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e96f4cbac609bdc242244cf82325234c3cdd8f54", "fields": {"code_postal": "24240", "code_commune_insee": "24549", "libell_d_acheminement": "THENAC", "ligne_5": "PUYGUILHEM", "nom_de_la_commune": "THENAC", "coordonnees_gps": [44.7790390603, 0.38999404584]}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0cb35e89d326790dddfecc22061fc8a5ba0685b", "fields": {"nom_de_la_commune": "LA TOUR BLANCHE", "libell_d_acheminement": "LA TOUR BLANCHE", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24554"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ea4379cffe8b510f3a2dc495eb5007f54389618", "fields": {"nom_de_la_commune": "VANXAINS", "libell_d_acheminement": "VANXAINS", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24564"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "137d161c5025fbeb8842984e95333693f9d162d0", "fields": {"nom_de_la_commune": "VARAIGNES", "libell_d_acheminement": "VARAIGNES", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24565"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4aa2a2353fb0e094feb4c8c8c8d942b27a71f1b", "fields": {"nom_de_la_commune": "VAUNAC", "libell_d_acheminement": "VAUNAC", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24567"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1252eca02af665a7940c0ac61d7b6de8f722db3", "fields": {"nom_de_la_commune": "VERGT", "libell_d_acheminement": "VERGT", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24571"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33e0df34328c87cb5d76b576fa7a32ede1dec83d", "fields": {"nom_de_la_commune": "VILLEFRANCHE DU PERIGORD", "libell_d_acheminement": "VILLEFRANCHE DU PERIGORD", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24585"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71352d4275d00fc9af524205ec38914faeb31ae5", "fields": {"nom_de_la_commune": "ALLENJOIE", "libell_d_acheminement": "ALLENJOIE", "code_postal": "25490", "coordonnees_gps": [47.518340025, 6.90999860346], "code_commune_insee": "25011"}, "geometry": {"type": "Point", "coordinates": [6.90999860346, 47.518340025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "433fc6d1ee45a17246a9282ed4cb3c85f3ccb607", "fields": {"nom_de_la_commune": "AMAGNEY", "libell_d_acheminement": "AMAGNEY", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25014"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983f86ed93772bb93603012bfa15e7bf37d54bb3", "fields": {"nom_de_la_commune": "AMANCEY", "libell_d_acheminement": "AMANCEY", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25015"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b95a3fc2fd38d4e8b4457086c1480f2597f7024", "fields": {"nom_de_la_commune": "ARBOUANS", "libell_d_acheminement": "ARBOUANS", "code_postal": "25400", "coordonnees_gps": [47.488209741, 6.84586139131], "code_commune_insee": "25020"}, "geometry": {"type": "Point", "coordinates": [6.84586139131, 47.488209741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88329227a16d16296cb7eed2c83aadd41c20e1a3", "fields": {"nom_de_la_commune": "ARCEY", "libell_d_acheminement": "ARCEY", "code_postal": "25750", "coordonnees_gps": [47.5357024428, 6.66891038206], "code_commune_insee": "25022"}, "geometry": {"type": "Point", "coordinates": [6.66891038206, 47.5357024428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ced17103ea5cf29f3d20ab7f0600efbb1b4e10fd", "fields": {"nom_de_la_commune": "ARC SOUS MONTENOT", "libell_d_acheminement": "ARC SOUS MONTENOT", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25026"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd1e342189e3f79216e756d7f7d0979ec1c4317", "fields": {"nom_de_la_commune": "ARGUEL", "libell_d_acheminement": "ARGUEL", "code_postal": "25720", "coordonnees_gps": [47.1886369614, 5.98434041211], "code_commune_insee": "25027"}, "geometry": {"type": "Point", "coordinates": [5.98434041211, 47.1886369614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee9f38aa92d63286f12216967d51b634db975ec", "fields": {"nom_de_la_commune": "AUBONNE", "libell_d_acheminement": "AUBONNE", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25029"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d72b0623a0c87eb12d7660bafb5b34e0d3241b2", "fields": {"code_postal": "25720", "code_commune_insee": "25036", "libell_d_acheminement": "AVANNE AVENEY", "ligne_5": "AVENEY", "nom_de_la_commune": "AVANNE AVENEY", "coordonnees_gps": [47.1886369614, 5.98434041211]}, "geometry": {"type": "Point", "coordinates": [5.98434041211, 47.1886369614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc7bc9480831feff747c119360b60f7acdd0094a", "fields": {"nom_de_la_commune": "AVOUDREY", "libell_d_acheminement": "AVOUDREY", "code_postal": "25690", "coordonnees_gps": [47.1118189228, 6.43431918233], "code_commune_insee": "25039"}, "geometry": {"type": "Point", "coordinates": [6.43431918233, 47.1118189228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cec043b3db6b78e48fc0367b0c170aac63e5dede", "fields": {"nom_de_la_commune": "BANNANS", "libell_d_acheminement": "BANNANS", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25041"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df7b4112456692c997e80602f7eb96e36f1e8e9", "fields": {"nom_de_la_commune": "BATTENANS VARIN", "libell_d_acheminement": "BATTENANS VARIN", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25046"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96254a478a5f56143b82dbfad89a070c578e5aaa", "fields": {"nom_de_la_commune": "BELFAYS", "libell_d_acheminement": "BELFAYS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25049"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "341ce19071cd73f1d6c91ec679bd1383878147db", "fields": {"nom_de_la_commune": "BESANCON", "libell_d_acheminement": "BESANCON", "code_postal": "25000", "coordonnees_gps": [47.2552328934, 6.01938051129], "code_commune_insee": "25056"}, "geometry": {"type": "Point", "coordinates": [6.01938051129, 47.2552328934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db41c9550d39cbc0fdd368aaa6f866e286b142e1", "fields": {"nom_de_la_commune": "BEURE", "libell_d_acheminement": "BEURE", "code_postal": "25720", "coordonnees_gps": [47.1886369614, 5.98434041211], "code_commune_insee": "25058"}, "geometry": {"type": "Point", "coordinates": [5.98434041211, 47.1886369614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "101bb610ed1600a6f7f3e996ee0fdc6a97c5a34d", "fields": {"nom_de_la_commune": "BONNAL", "libell_d_acheminement": "BONNAL", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25072"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a59c0dd6fe7e1e87d37f2d4afcd84303da03fc6", "fields": {"nom_de_la_commune": "BOUJAILLES", "libell_d_acheminement": "BOUJAILLES", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25079"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2fa7b66cc32f50286130b3b4764a48c94c52cab", "fields": {"nom_de_la_commune": "BOURGUIGNON", "libell_d_acheminement": "BOURGUIGNON", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25082"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab339a31c049cfeb0e332c452fd46b9f786ed1b", "fields": {"nom_de_la_commune": "BOUSSIERES", "libell_d_acheminement": "BOUSSIERES", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25084"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1125467a4756627b81dfd6daff30d6e7381555a", "fields": {"nom_de_la_commune": "BOUVERANS", "libell_d_acheminement": "BOUVERANS", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25085"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b768e4af1e820f0dae837459796769776f07c48", "fields": {"nom_de_la_commune": "BRAILLANS", "libell_d_acheminement": "BRAILLANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25086"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348d9eef01200fcc6d7a21a4ad210533d251961d", "fields": {"nom_de_la_commune": "LES BRESEUX", "libell_d_acheminement": "LES BRESEUX", "code_postal": "25120", "coordonnees_gps": [47.2517789005, 6.78722407898], "code_commune_insee": "25091"}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba4996731c8d677b9a7a4c979710ed278756092", "fields": {"nom_de_la_commune": "BROGNARD", "libell_d_acheminement": "BROGNARD", "code_postal": "25600", "coordonnees_gps": [47.5315026095, 6.85354062275], "code_commune_insee": "25097"}, "geometry": {"type": "Point", "coordinates": [6.85354062275, 47.5315026095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc33ba88c5bffdff098a340665e172f473e76f29", "fields": {"nom_de_la_commune": "COURCELLES LES GISORS", "libell_d_acheminement": "COURCELLES LES GISORS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60169"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c91fe07334b4b979ee820c6d7f956db8ecca780", "fields": {"nom_de_la_commune": "COYE LA FORET", "libell_d_acheminement": "COYE LA FORET", "code_postal": "60580", "coordonnees_gps": [49.1449019202, 2.47077084027], "code_commune_insee": "60172"}, "geometry": {"type": "Point", "coordinates": [2.47077084027, 49.1449019202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7df58eff607dea2b47a5b02ee686148963dbdbac", "fields": {"nom_de_la_commune": "CREVECOEUR LE GRAND", "libell_d_acheminement": "CREVECOEUR LE GRAND", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60178"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e41ee334daa8950b7afbc1d67c5ad9ed837b344", "fields": {"nom_de_la_commune": "LE CROCQ", "libell_d_acheminement": "LE CROCQ", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60182"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03204c1dd7208e4ed550140a2a03b8fd6fdcb5fd", "fields": {"nom_de_la_commune": "CUTS", "libell_d_acheminement": "CUTS", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60189"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8ad542d382591f985eba283f8ee13f09e4f3611", "fields": {"nom_de_la_commune": "LE DELUGE", "libell_d_acheminement": "LE DELUGE", "code_postal": "60790", "coordonnees_gps": [49.2852248633, 2.06991456979], "code_commune_insee": "60196"}, "geometry": {"type": "Point", "coordinates": [2.06991456979, 49.2852248633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f739cd00eeac6c7063023eb83f2e57b5988fd0", "fields": {"nom_de_la_commune": "DIVES", "libell_d_acheminement": "DIVES", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60198"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65eef5460f581b52d677dc5fa1d3008ebfe3b3a3", "fields": {"nom_de_la_commune": "DOMPIERRE", "libell_d_acheminement": "DOMPIERRE", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60201"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c60684d0101f2ecf9555789abf23619bc56339cc", "fields": {"nom_de_la_commune": "ECUVILLY", "libell_d_acheminement": "ECUVILLY", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60204"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806565b9748ab0e4a6aca59ed57de542f789d7ae", "fields": {"nom_de_la_commune": "ERQUERY", "libell_d_acheminement": "ERQUERY", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60215"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6780ac90318c8dc2ca2c8d1b49df3825f2823ac4", "fields": {"nom_de_la_commune": "ESCLES ST PIERRE", "libell_d_acheminement": "ESCLES ST PIERRE", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60219"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1b5d445c32e31238bb99f54b1629744d1a46ebb", "fields": {"nom_de_la_commune": "FEUQUIERES", "libell_d_acheminement": "FEUQUIERES", "code_postal": "60960", "coordonnees_gps": [49.6501432507, 1.85066345289], "code_commune_insee": "60233"}, "geometry": {"type": "Point", "coordinates": [1.85066345289, 49.6501432507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba234c01627416c5c7f422fc8959d686cf46885d", "fields": {"nom_de_la_commune": "FITZ JAMES", "libell_d_acheminement": "FITZ JAMES", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60234"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aeb7ae07f81378e95ea42757bd3cbe5b4835fbc", "fields": {"nom_de_la_commune": "FRESNOY EN THELLE", "libell_d_acheminement": "FRESNOY EN THELLE", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60259"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "698bc5aa87432c9c878d602a5a5e2fba669fafcc", "fields": {"nom_de_la_commune": "LE FRESTOY VAUX", "libell_d_acheminement": "LE FRESTOY VAUX", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60262"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87595895b4d8bbba4611ec225d1a4148b9b3ef37", "fields": {"nom_de_la_commune": "FRETOY LE CHATEAU", "libell_d_acheminement": "FRETOY LE CHATEAU", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60263"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bf44299c64ae09a115a7a5fd13a615c21b56cfe", "fields": {"nom_de_la_commune": "GANNES", "libell_d_acheminement": "GANNES", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60268"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe09678e547b86fc5aa28c44c387ecfd6f45829b", "fields": {"nom_de_la_commune": "GIRAUMONT", "libell_d_acheminement": "GIRAUMONT", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60273"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5982ece59b1a4a65b756d694ab724c498bde5e0f", "fields": {"nom_de_la_commune": "GLATIGNY", "libell_d_acheminement": "GLATIGNY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60275"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6443d3344095311eda9fdee69fe46dbf98bdad88", "fields": {"nom_de_la_commune": "GRANDVILLIERS", "libell_d_acheminement": "GRANDVILLIERS", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60286"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81487e6129c7ab3cbf957323be7a4b3877316c80", "fields": {"nom_de_la_commune": "GREMEVILLERS", "libell_d_acheminement": "GREMEVILLERS", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60288"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5bbea6f15b751e1f9868f716551e72d4f90f253", "fields": {"nom_de_la_commune": "GUIGNECOURT", "libell_d_acheminement": "GUIGNECOURT", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60290"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79cf4a70c3f4bf2134eeaa0f8cf080b589ffc163", "fields": {"nom_de_la_commune": "HARDIVILLERS EN VEXIN", "libell_d_acheminement": "HARDIVILLERS EN VEXIN", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60300"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7345c7062d73a50d1fa9d4c25ad39deed23a6c90", "fields": {"nom_de_la_commune": "HEMEVILLERS", "libell_d_acheminement": "HEMEVILLERS", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60308"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05f1e5e5f93c6f5ad427f033db6215241638d86b", "fields": {"nom_de_la_commune": "HERICOURT SUR THERAIN", "libell_d_acheminement": "HERICOURT SUR THERAIN", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60312"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02b8f60a8be9dd18aac73fe634f684d494c148d6", "fields": {"nom_de_la_commune": "HERMES", "libell_d_acheminement": "HERMES", "code_postal": "60370", "coordonnees_gps": [49.3538659848, 2.25221191124], "code_commune_insee": "60313"}, "geometry": {"type": "Point", "coordinates": [2.25221191124, 49.3538659848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98c2d0c61cc380706ed62e5c2f7e369c48220ee6", "fields": {"nom_de_la_commune": "LA HOUSSOYE", "libell_d_acheminement": "LA HOUSSOYE", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60319"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3affc0ee9bb9646c21ffacd61d6683a68393b800", "fields": {"nom_de_la_commune": "JUVIGNIES", "libell_d_acheminement": "JUVIGNIES", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60328"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73bbb993ec84b4b9853b53ed043a42fc99339f21", "fields": {"nom_de_la_commune": "LABRUYERE", "libell_d_acheminement": "LABRUYERE", "code_postal": "60140", "coordonnees_gps": [49.3368593358, 2.481661192], "code_commune_insee": "60332"}, "geometry": {"type": "Point", "coordinates": [2.481661192, 49.3368593358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "570d7630552061cb1f40e5c444ae70a6be370d66", "fields": {"nom_de_la_commune": "LACHAPELLE SOUS GERBEROY", "libell_d_acheminement": "LACHAPELLE SOUS GERBEROY", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60335"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "933cf1e85be9d650ab221cb8d3ec92670dadd149", "fields": {"nom_de_la_commune": "LACHAUSSEE DU BOIS D ECU", "libell_d_acheminement": "LACHAUSSEE DU BOIS D ECU", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60336"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12eafd59b1835bb4ab76f113d68405d3ec158476", "fields": {"nom_de_la_commune": "LAGNY", "libell_d_acheminement": "LAGNY", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60340"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "495dadcc2117f5de84d88ffaa372f7904efbd723", "fields": {"nom_de_la_commune": "LAMECOURT", "libell_d_acheminement": "LAMECOURT", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60345"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d130bf19d219fab31af02b27024104f3c4b1247a", "fields": {"nom_de_la_commune": "LATAULE", "libell_d_acheminement": "LATAULE", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60351"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2afe99a2a8bdbfb3943e65102fb91b395aa71285", "fields": {"nom_de_la_commune": "LOUEUSE", "libell_d_acheminement": "LOUEUSE", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60371"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d43ea1c3af967e05d06a7653ab40cb7617a9fcc8", "fields": {"nom_de_la_commune": "MAIGNELAY MONTIGNY", "libell_d_acheminement": "MAIGNELAY MONTIGNY", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60374"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50cafe6d63586533f7290292c93ef60e943614ac", "fields": {"nom_de_la_commune": "MARQUEGLISE", "libell_d_acheminement": "MARQUEGLISE", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60386"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a54e32f55723d48c1d5c9d5830a3d015318a9d01", "fields": {"nom_de_la_commune": "MAUCOURT", "libell_d_acheminement": "MAUCOURT", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60389"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a63ecd2f25d22732433a7cdc8aa838744306a8c", "fields": {"nom_de_la_commune": "MENEVILLERS", "libell_d_acheminement": "MENEVILLERS", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60394"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89efaaca595ac203759451078a6ded1f9e255718", "fields": {"nom_de_la_commune": "MERY LA BATAILLE", "libell_d_acheminement": "MERY LA BATAILLE", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60396"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc5ecb0f2d168cb1a1594a9310d2dfbc3b907c1", "fields": {"nom_de_la_commune": "LE MESNIL THERIBUS", "libell_d_acheminement": "LE MESNIL THERIBUS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60401"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d6c437d40e81b3a07b8cd41cb0d65091035d40", "fields": {"nom_de_la_commune": "MONCEAUX L ABBAYE", "libell_d_acheminement": "MONCEAUX L ABBAYE", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60407"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea52db5b8a112c5fcc904d4ee2eb1f8acb16ed4c", "fields": {"nom_de_la_commune": "MONTAGNY STE FELICITE", "libell_d_acheminement": "MONTAGNY STE FELICITE", "code_postal": "60950", "coordonnees_gps": [49.1189792735, 2.6960856018], "code_commune_insee": "60413"}, "geometry": {"type": "Point", "coordinates": [2.6960856018, 49.1189792735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe7b906f72d373626f18e7e39510cbb7fe076277", "fields": {"nom_de_la_commune": "MONT L EVEQUE", "libell_d_acheminement": "MONT L EVEQUE", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60421"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f267454892f8ab503f38b8a340568fc3cd61d41d", "fields": {"nom_de_la_commune": "MONTMARTIN", "libell_d_acheminement": "MONTMARTIN", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60424"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d23bb6c3ad3d53b30ec0f874b390f371dc27087", "fields": {"nom_de_la_commune": "MORTEFONTAINE", "libell_d_acheminement": "MORTEFONTAINE", "code_postal": "60128", "coordonnees_gps": [49.1164844091, 2.59215767956], "code_commune_insee": "60432"}, "geometry": {"type": "Point", "coordinates": [2.59215767956, 49.1164844091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8947ca80be10bb59db6489e2b0c9ff45b6d1a6d", "fields": {"nom_de_la_commune": "MORVILLERS", "libell_d_acheminement": "MORVILLERS", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60435"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87134e1203c95fa99894ea501e14876957629318", "fields": {"nom_de_la_commune": "MOUCHY LE CHATEL", "libell_d_acheminement": "MOUCHY LE CHATEL", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60437"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4e687760e4b6d3ee012f8111d146fed5dbe4dc", "fields": {"nom_de_la_commune": "MUREAUMONT", "libell_d_acheminement": "MUREAUMONT", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60444"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ceab91ea9d8882983274db73726ffbc70339377", "fields": {"nom_de_la_commune": "NERY", "libell_d_acheminement": "NERY", "code_postal": "60320", "coordonnees_gps": [49.2987381345, 2.79474571672], "code_commune_insee": "60447"}, "geometry": {"type": "Point", "coordinates": [2.79474571672, 49.2987381345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f0b312e81b273b0cb93bd7a0e0f38afb7e4e6c1", "fields": {"nom_de_la_commune": "LA NEUVILLE ST PIERRE", "libell_d_acheminement": "LA NEUVILLE ST PIERRE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60457"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56e275bc7ebb025a5852a83e172c85086d1619de", "fields": {"nom_de_la_commune": "NOAILLES", "libell_d_acheminement": "NOAILLES", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60462"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33839025922a8fb6218d694b9923d3786b815ecc", "fields": {"nom_de_la_commune": "NOGENT SUR OISE", "libell_d_acheminement": "NOGENT SUR OISE", "code_postal": "60180", "coordonnees_gps": [49.2761514704, 2.46422100507], "code_commune_insee": "60463"}, "geometry": {"type": "Point", "coordinates": [2.46422100507, 49.2761514704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28cf28205ee71929ba53783ccb57a6b6884c1732", "fields": {"nom_de_la_commune": "NOROY", "libell_d_acheminement": "NOROY", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60466"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc3ef5e08a330332d777c3e2f532e96da608f493", "fields": {"nom_de_la_commune": "OFFOY", "libell_d_acheminement": "OFFOY", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60472"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da0936792d0e81a2d83000a470a2a717004406a", "fields": {"nom_de_la_commune": "OGNES", "libell_d_acheminement": "OGNES", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60473"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d798e151267c83bdfa35c72e1121f5583f8e7b6", "fields": {"nom_de_la_commune": "OGNOLLES", "libell_d_acheminement": "OGNOLLES", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60474"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e0cb5307be7a94222a76f224d7bf90776042d0c", "fields": {"nom_de_la_commune": "ONS EN BRAY", "libell_d_acheminement": "ONS EN BRAY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60477"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "334c1f2887f63e259908774e8930057924e37899", "fields": {"nom_de_la_commune": "ORMOY LE DAVIEN", "libell_d_acheminement": "ORMOY LE DAVIEN", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60478"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8d72202a1e048c38f57ba59b90b20b46634e425", "fields": {"nom_de_la_commune": "PIMPREZ", "libell_d_acheminement": "PIMPREZ", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60492"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de0d5d52855910f1a1c8adad728aed254bfeb855", "fields": {"nom_de_la_commune": "PLAINVILLE", "libell_d_acheminement": "PLAINVILLE", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60496"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acf3f0cffff2b195f1fbf3f975b8bad835590478", "fields": {"nom_de_la_commune": "LE PLESSIS BRION", "libell_d_acheminement": "LE PLESSIS BRION", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60501"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40efc963d7040416a0d9ff04a6d045ced3f7ce8", "fields": {"nom_de_la_commune": "LE PLESSIS PATTE D OIE", "libell_d_acheminement": "LE PLESSIS PATTE D OIE", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60502"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb1b4d3570a89436636e0bc868ef6e9a20e1afc9", "fields": {"nom_de_la_commune": "POUILLY", "libell_d_acheminement": "POUILLY", "code_postal": "60790", "coordonnees_gps": [49.2852248633, 2.06991456979], "code_commune_insee": "60512"}, "geometry": {"type": "Point", "coordinates": [2.06991456979, 49.2852248633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "869019280c7022da0e9678129135cb4457d46aef", "fields": {"nom_de_la_commune": "PRONLEROY", "libell_d_acheminement": "PRONLEROY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60515"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4b0bee99bd2d7ee80097e7387c113803b8654b", "fields": {"nom_de_la_commune": "RAVENEL", "libell_d_acheminement": "RAVENEL", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60526"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82cd86f376ecb5dd5d8fc454150abf2e83e15c45", "fields": {"nom_de_la_commune": "REMERANGLES", "libell_d_acheminement": "REMERANGLES", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60530"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47339dc4635a2464b3a91696cd858f8ec0f7d41a", "fields": {"nom_de_la_commune": "REMY", "libell_d_acheminement": "REMY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60531"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "076863c1ac6d6a2f2dc94d94d502be7811ce16f6", "fields": {"nom_de_la_commune": "RHUIS", "libell_d_acheminement": "RHUIS", "code_postal": "60410", "coordonnees_gps": [49.2959209598, 2.7176751302], "code_commune_insee": "60536"}, "geometry": {"type": "Point", "coordinates": [2.7176751302, 49.2959209598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "872f77528cb7a069923b20bb3bc8a5e10e472d01", "fields": {"code_postal": "60170", "code_commune_insee": "60537", "libell_d_acheminement": "RIBECOURT DRESLINCOURT", "ligne_5": "DRESLINCOURT", "nom_de_la_commune": "RIBECOURT DRESLINCOURT", "coordonnees_gps": [49.4914347292, 2.97702281469]}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5329c1fc8a8381a96b1c69affe2f8ab1aea642d", "fields": {"nom_de_la_commune": "ROCQUEMONT", "libell_d_acheminement": "ROCQUEMONT", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60543"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c1f95b555287f526f09425d3dc495e41ff4727", "fields": {"nom_de_la_commune": "ROTANGY", "libell_d_acheminement": "ROTANGY", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60549"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c8cbedde25bf8de4afe6dd2eb5db2ebd2d16ae9", "fields": {"nom_de_la_commune": "ST ANDRE FARIVILLERS", "libell_d_acheminement": "ST ANDRE FARIVILLERS", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60565"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c55893cd4ac3d4d4d508903ba00033226842d4f", "fields": {"nom_de_la_commune": "ST DENISCOURT", "libell_d_acheminement": "ST DENISCOURT", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60571"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6138c12129103595e3ec5f30578afef2bc23a754", "fields": {"nom_de_la_commune": "ST FELIX", "libell_d_acheminement": "ST FELIX", "code_postal": "60370", "coordonnees_gps": [49.3538659848, 2.25221191124], "code_commune_insee": "60574"}, "geometry": {"type": "Point", "coordinates": [2.25221191124, 49.3538659848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e73b20a160f34ef49057544eaac2aad8a76d2c08", "fields": {"nom_de_la_commune": "ST GERMAIN LA POTERIE", "libell_d_acheminement": "ST GERMAIN LA POTERIE", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60576"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d544d112ed771fd2a9ece3e27183ada5eaf4dd", "fields": {"nom_de_la_commune": "ST GERMER DE FLY", "libell_d_acheminement": "ST GERMER DE FLY", "code_postal": "60850", "coordonnees_gps": [49.4183231211, 1.8058971314], "code_commune_insee": "60577"}, "geometry": {"type": "Point", "coordinates": [1.8058971314, 49.4183231211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53a1ee0e1734877a4768d19622779282cee4a518", "fields": {"nom_de_la_commune": "ST OMER EN CHAUSSEE", "libell_d_acheminement": "ST OMER EN CHAUSSEE", "code_postal": "60860", "coordonnees_gps": [49.5467911244, 2.02913194071], "code_commune_insee": "60590"}, "geometry": {"type": "Point", "coordinates": [2.02913194071, 49.5467911244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf44b38f838102758ba57dda6ce50ff06e4f1af", "fields": {"nom_de_la_commune": "ST REMY EN L EAU", "libell_d_acheminement": "ST REMY EN L EAU", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60595"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d562928ca9dcbaa515d2ece481f7cde9db317b", "fields": {"nom_de_la_commune": "ST THIBAULT", "libell_d_acheminement": "ST THIBAULT", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60599"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cc12345a47dbc44e60f12c093236a654a5e3071", "fields": {"nom_de_la_commune": "SENOTS", "libell_d_acheminement": "SENOTS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60613"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d69cc5b5393a72782d0b50a499225d796431f7", "fields": {"nom_de_la_commune": "SILLY TILLARD", "libell_d_acheminement": "SILLY TILLARD", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60620"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c17ddd6eaab42df46f4af298a23023913d1f7349", "fields": {"nom_de_la_commune": "SOMMEREUX", "libell_d_acheminement": "SOMMEREUX", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60622"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8182c3685f2d0cd4a26f41b580609b4fa22d2e4", "fields": {"nom_de_la_commune": "THIERS SUR THEVE", "libell_d_acheminement": "THIERS SUR THEVE", "code_postal": "60520", "coordonnees_gps": [49.1470921709, 2.55054405119], "code_commune_insee": "60631"}, "geometry": {"type": "Point", "coordinates": [2.55054405119, 49.1470921709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91350517f425e664934ee04dec1a30ebd36bb910", "fields": {"nom_de_la_commune": "THURY SOUS CLERMONT", "libell_d_acheminement": "THURY SOUS CLERMONT", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60638"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a2444d834aae2b0b2f7e3d3765be8bd39b3865f", "fields": {"nom_de_la_commune": "TILLE", "libell_d_acheminement": "TILLE", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60639"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c20b0f202d2994f4a31d5ec261996dfd67ede0c", "fields": {"nom_de_la_commune": "TROSLY BREUIL", "libell_d_acheminement": "TROSLY BREUIL", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60647"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e54664987677adba989e100f55ab323e7e307a1", "fields": {"nom_de_la_commune": "LE VAUROUX", "libell_d_acheminement": "LE VAUROUX", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60662"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c41cee690c9a5a1928aebc4f94999228e5e2369", "fields": {"code_postal": "60112", "code_commune_insee": "60668", "libell_d_acheminement": "VERDEREL LES SAUQUEUSE", "ligne_5": "SAUQUEUSE ST LUCIEN", "nom_de_la_commune": "VERDEREL LES SAUQUEUSE", "coordonnees_gps": [49.5062949705, 2.00745335083]}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc1b6ff3332ad44d8f9398263163da32723b533c", "fields": {"nom_de_la_commune": "VERSIGNY", "libell_d_acheminement": "VERSIGNY", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60671"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc202334d9048567c21a0b4afdfee9324a0ab90", "fields": {"nom_de_la_commune": "VEZ", "libell_d_acheminement": "VEZ", "code_postal": "60117", "coordonnees_gps": [49.2419560642, 2.9827380143], "code_commune_insee": "60672"}, "geometry": {"type": "Point", "coordinates": [2.9827380143, 49.2419560642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b93e9d7177ec7697c2747626026de28df2ec24b", "fields": {"nom_de_la_commune": "VILLE", "libell_d_acheminement": "VILLE", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60676"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56e908848dc3ffa6ff65afa208a2b7176fffa6f6", "fields": {"nom_de_la_commune": "VILLENEUVE SUR VERBERIE", "libell_d_acheminement": "VILLENEUVE SUR VERBERIE", "code_postal": "60410", "coordonnees_gps": [49.2959209598, 2.7176751302], "code_commune_insee": "60680"}, "geometry": {"type": "Point", "coordinates": [2.7176751302, 49.2959209598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "353d1cd63be070bf15ec7d3d36cc295c365403cf", "fields": {"nom_de_la_commune": "VILLERS SUR BONNIERES", "libell_d_acheminement": "VILLERS SUR BONNIERES", "code_postal": "60860", "coordonnees_gps": [49.5467911244, 2.02913194071], "code_commune_insee": "60688"}, "geometry": {"type": "Point", "coordinates": [2.02913194071, 49.5467911244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27845577bb070023173b80da5cf187d52c648edb", "fields": {"nom_de_la_commune": "VILLOTRAN", "libell_d_acheminement": "VILLOTRAN", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60694"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99fe33f653cc51917fb5b3bd6b56b1e98de987aa", "fields": {"nom_de_la_commune": "WACQUEMOULIN", "libell_d_acheminement": "WACQUEMOULIN", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60698"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df1d2ccb60ed5da24006030b0ca53cf11c254400", "fields": {"nom_de_la_commune": "ARGENTAN", "libell_d_acheminement": "ARGENTAN", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61006"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c5aadb8852e7bdfb5677ebdf4263ddff589a62", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "RONFEUGERAI", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aece9517ab5b09f0e5f2978ad8049e7d9540376", "fields": {"nom_de_la_commune": "ATHIS VAL DE ROUVRE", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "code_postal": "61430", "coordonnees_gps": [48.8220175154, -0.472614628167], "code_commune_insee": "61007"}, "geometry": {"type": "Point", "coordinates": [-0.472614628167, 48.8220175154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c13b8dc730c2762fb9de731233fc62b67d0db18", "fields": {"nom_de_la_commune": "AUGUAISE", "libell_d_acheminement": "AUGUAISE", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61012"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4436c079d595e2af07169fc9a6241b789739f5d", "fields": {"nom_de_la_commune": "ST JULIEN DES POINTS", "libell_d_acheminement": "ST JULIEN DES POINTS", "code_postal": "48160", "coordonnees_gps": [44.2409475687, 3.90246721272], "code_commune_insee": "48163"}, "geometry": {"type": "Point", "coordinates": [3.90246721272, 44.2409475687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8ba176d24ab57699c20dbd4a292e96541e9b09", "fields": {"nom_de_la_commune": "ST JULIEN DU TOURNEL", "libell_d_acheminement": "ST JULIEN DU TOURNEL", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48164"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6508630dbd16a16c0d877406369c9fbfd261e63b", "fields": {"nom_de_la_commune": "ST LAURENT DE MURET", "libell_d_acheminement": "ST LAURENT DE MURET", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48165"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28575b8e7b66c004808fbba45ee4aa42aef38c9a", "fields": {"nom_de_la_commune": "ST LAURENT DE VEYRES", "libell_d_acheminement": "ST LAURENT DE VEYRES", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48167"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6e66f982ea280e2fd425221c06b0a3201f53bac", "fields": {"nom_de_la_commune": "ST PRIVAT DE VALLONGUE", "libell_d_acheminement": "ST PRIVAT DE VALLONGUE", "code_postal": "48240", "coordonnees_gps": [44.2838225075, 3.82458328852], "code_commune_insee": "48178"}, "geometry": {"type": "Point", "coordinates": [3.82458328852, 44.2838225075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad11e5b485c90326a892f0691763684de8293586", "fields": {"nom_de_la_commune": "ST ROME DE DOLAN", "libell_d_acheminement": "ST ROME DE DOLAN", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48180"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e0daf9842659dc4da7a240f9396a04c77f59fc0", "fields": {"nom_de_la_commune": "SERVIERES", "libell_d_acheminement": "SERVIERES", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48189"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7dc7f26accddf5cc598322e7cf6487539a3b24", "fields": {"nom_de_la_commune": "TERMES", "libell_d_acheminement": "TERMES", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48190"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1590bea88ec8e38fa84e91f79cf150257ede68bf", "fields": {"code_postal": "48400", "code_commune_insee": "48193", "libell_d_acheminement": "VEBRON", "ligne_5": "LES VANELS", "nom_de_la_commune": "VEBRON", "coordonnees_gps": [44.2653689577, 3.61246385495]}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fd3ffc2f5646b8896cd1c006e5295ddb2e170e1", "fields": {"nom_de_la_commune": "VIALAS", "libell_d_acheminement": "VIALAS", "code_postal": "48220", "coordonnees_gps": [44.3629471664, 3.81136680024], "code_commune_insee": "48194"}, "geometry": {"type": "Point", "coordinates": [3.81136680024, 44.3629471664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28ead7a01270136e407522caf60360a695ae320d", "fields": {"nom_de_la_commune": "ANGERS", "libell_d_acheminement": "ANGERS", "code_postal": "49000", "coordonnees_gps": [47.4914905977, -0.545029996891], "code_commune_insee": "49007"}, "geometry": {"type": "Point", "coordinates": [-0.545029996891, 47.4914905977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "614e08f0426c51083b248b3082214f88b3d890f4", "fields": {"nom_de_la_commune": "ANGERS", "libell_d_acheminement": "ANGERS", "code_postal": "49100", "coordonnees_gps": [47.4764503449, -0.55599583518], "code_commune_insee": "49007"}, "geometry": {"type": "Point", "coordinates": [-0.55599583518, 47.4764503449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "581b76da14f5da08455fb2f9a2562b336c5d7742", "fields": {"nom_de_la_commune": "ANGRIE", "libell_d_acheminement": "ANGRIE", "code_postal": "49440", "coordonnees_gps": [47.5742354301, -1.03309048428], "code_commune_insee": "49008"}, "geometry": {"type": "Point", "coordinates": [-1.03309048428, 47.5742354301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0bdfeadc132a40220164b8506e2dc442264a05", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "CHARTRENE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5cd46162333db9a5d2def1ca825bad17ba80bba", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "CUON", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f83fc4832e69cfef60a9132fdc75f316304455", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "FOUGERE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5475d0ee0bdeeb55452ad6e14e7c30551e5433c6", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "MONTPOLLIN", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73f16109b54f0e1ccefc309bde3104ba5345d132", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "ST QUENTIN LES BEAUREPAIRE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a897d45794c7ee74fa76a8a36217656a7e2705a7", "fields": {"nom_de_la_commune": "BEAUCOUZE", "libell_d_acheminement": "BEAUCOUZE", "code_postal": "49070", "coordonnees_gps": [47.4753092045, -0.662263154222], "code_commune_insee": "49020"}, "geometry": {"type": "Point", "coordinates": [-0.662263154222, 47.4753092045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd13f5999508ae3bbf9765b1d16ec4b31609491f", "fields": {"nom_de_la_commune": "BECON LES GRANITS", "libell_d_acheminement": "BECON LES GRANITS", "code_postal": "49370", "coordonnees_gps": [47.5234772434, -0.840270654951], "code_commune_insee": "49026"}, "geometry": {"type": "Point", "coordinates": [-0.840270654951, 47.5234772434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8bee65f442e48be9e3511ce1f57f2d194185a5", "fields": {"nom_de_la_commune": "BOUCHEMAINE", "libell_d_acheminement": "BOUCHEMAINE", "code_postal": "49080", "coordonnees_gps": [47.4306089664, -0.627478615441], "code_commune_insee": "49035"}, "geometry": {"type": "Point", "coordinates": [-0.627478615441, 47.4306089664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "034c978e96bedb775c2a92ed0aae64503d5cf3bf", "fields": {"nom_de_la_commune": "LE BOURG D IRE", "libell_d_acheminement": "LE BOURG D IRE", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49037"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b024503d1764fdc17fa879c7933b058b5a520f80", "fields": {"nom_de_la_commune": "LA BREILLE LES PINS", "libell_d_acheminement": "LA BREILLE LES PINS", "code_postal": "49390", "coordonnees_gps": [47.4059865072, 0.072262523742], "code_commune_insee": "49045"}, "geometry": {"type": "Point", "coordinates": [0.072262523742, 47.4059865072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f58fc6792e70ffbb195caf08ac55bd0d6c7a8ecf", "fields": {"nom_de_la_commune": "CARBAY", "libell_d_acheminement": "CARBAY", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49056"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04b5d13f1cd503b26814e304050830607480d721", "fields": {"nom_de_la_commune": "LES CERQUEUX", "libell_d_acheminement": "LES CERQUEUX", "code_postal": "49360", "coordonnees_gps": [47.0353791389, -0.681865691619], "code_commune_insee": "49058"}, "geometry": {"type": "Point", "coordinates": [-0.681865691619, 47.0353791389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "496ac5bdaffc72ecf1abaf0bdd6ebea479a819fa", "fields": {"nom_de_la_commune": "CHAMPTOCE SUR LOIRE", "libell_d_acheminement": "CHAMPTOCE SUR LOIRE", "code_postal": "49123", "coordonnees_gps": [47.4332447625, -0.895504618393], "code_commune_insee": "49068"}, "geometry": {"type": "Point", "coordinates": [-0.895504618393, 47.4332447625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af05cf48bcf82426f87aa453e30c1bf28bb5f3ae", "fields": {"code_postal": "49270", "code_commune_insee": "49069", "libell_d_acheminement": "OREE D ANJOU", "ligne_5": "ST LAURENT DES AUTELS", "nom_de_la_commune": "OREE D ANJOU", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da20492039d5432e2cceca654ea84058a0355678", "fields": {"nom_de_la_commune": "CHATEAUNEUF SUR SARTHE", "libell_d_acheminement": "CHATEAUNEUF SUR SARTHE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49080"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5f4d77e77895dbb996e382ce052ac69fc7a221", "fields": {"nom_de_la_commune": "CHAVAGNES", "libell_d_acheminement": "CHAVAGNES", "code_postal": "49380", "coordonnees_gps": [47.275621339, -0.477027666042], "code_commune_insee": "49086"}, "geometry": {"type": "Point", "coordinates": [-0.477027666042, 47.275621339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "780f162592ec5f7c8ed7aca91576f7a26d02bf5f", "fields": {"nom_de_la_commune": "CHEFFES", "libell_d_acheminement": "CHEFFES", "code_postal": "49125", "coordonnees_gps": [47.6143418722, -0.475891019587], "code_commune_insee": "49090"}, "geometry": {"type": "Point", "coordinates": [-0.475891019587, 47.6143418722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4af32d58bc638c39bb9824ca5076263b0cfdb007", "fields": {"nom_de_la_commune": "CHEMELLIER", "libell_d_acheminement": "CHEMELLIER", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49091"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a961589c100fbff1aed84d04bb9ed5f27844d13", "fields": {"nom_de_la_commune": "CHEMILLE EN ANJOU", "libell_d_acheminement": "CHEMILLE EN ANJOU", "code_postal": "49120", "coordonnees_gps": [47.2129709341, -0.724371217207], "code_commune_insee": "49092"}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b68d75c920f9e387e4be7737c125add49ae2def6", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "STE CHRISTINE", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aaccfa3034d0089eadbc6ede28e536b6d65352c", "fields": {"code_postal": "49670", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "JOUE ETIAU", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50425e1f43b933516a772ae2aaf899a41d384f5f", "fields": {"code_postal": "49670", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "VALANJOU", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db6eb9d87cdb719d1fdc1891950273d26b36ed86", "fields": {"nom_de_la_commune": "CHERRE", "libell_d_acheminement": "CHERRE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49096"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70e48b4253128ce8f687238367d50006bcb45ca", "fields": {"nom_de_la_commune": "CHIGNE", "libell_d_acheminement": "CHIGNE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49098"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5092a95cffb4560f13512e7fe87e81a72de2871", "fields": {"nom_de_la_commune": "CHOLET", "libell_d_acheminement": "CHOLET", "code_postal": "49300", "coordonnees_gps": [47.0459625077, -0.876963134951], "code_commune_insee": "49099"}, "geometry": {"type": "Point", "coordinates": [-0.876963134951, 47.0459625077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f152793c78001a0a06b0cf80a4ac2c5140c9beb", "fields": {"nom_de_la_commune": "COMBREE", "libell_d_acheminement": "COMBREE", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49103"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf10dc077e77109472a3f34ecdaed54eca74c85e", "fields": {"nom_de_la_commune": "COURCHAMPS", "libell_d_acheminement": "COURCHAMPS", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49113"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d13368eba146df49b075f3ccc7b094d9f6ae26", "fields": {"nom_de_la_commune": "DENEE", "libell_d_acheminement": "DENEE", "code_postal": "49190", "coordonnees_gps": [47.3455543641, -0.637191878311], "code_commune_insee": "49120"}, "geometry": {"type": "Point", "coordinates": [-0.637191878311, 47.3455543641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "442bb8d3e1a94f5d082108e362ec46e4dbe32d20", "fields": {"nom_de_la_commune": "LA FERRIERE DE FLEE", "libell_d_acheminement": "LA FERRIERE DE FLEE", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49136"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9374d8058befc4c04d491aa5f81c1f43b844409c", "fields": {"code_postal": "49350", "code_commune_insee": "49149", "libell_d_acheminement": "GENNES VAL DE LOIRE", "ligne_5": "ST GEORGES DES SEPT VOIES", "nom_de_la_commune": "GENNES VAL DE LOIRE", "coordonnees_gps": [47.3419898447, -0.231335175854]}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8592793c2d9651b07e3fb0fae679942694bf04cd", "fields": {"nom_de_la_commune": "JUIGNE SUR LOIRE", "libell_d_acheminement": "JUIGNE SUR LOIRE", "code_postal": "49610", "coordonnees_gps": [47.3759967288, -0.537909548513], "code_commune_insee": "49167"}, "geometry": {"type": "Point", "coordinates": [-0.537909548513, 47.3759967288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7b79ff42c123abadbcb0ad53e189cd3cc91f0c", "fields": {"nom_de_la_commune": "JUVARDEIL", "libell_d_acheminement": "JUVARDEIL", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49170"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36aa2076f2438d3cd24be02ca2517b6fa7508f03", "fields": {"code_postal": "49160", "code_commune_insee": "49180", "libell_d_acheminement": "LONGUE JUMELLES", "ligne_5": "JUMELLES", "nom_de_la_commune": "LONGUE JUMELLES", "coordonnees_gps": [47.3844683998, -0.0956251907418]}, "geometry": {"type": "Point", "coordinates": [-0.0956251907418, 47.3844683998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57b943ffbcbe62b21216f88180d893f3f736b93", "fields": {"nom_de_la_commune": "LOURESSE ROCHEMENIER", "libell_d_acheminement": "LOURESSE ROCHEMENIER", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49182"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bdb73a6ed96ddac4ad6fc5b604550b083e6b0c2", "fields": {"nom_de_la_commune": "LUIGNE", "libell_d_acheminement": "LUIGNE", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49186"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a9c44c34354938d33575f195c947c66900c64fb", "fields": {"nom_de_la_commune": "MAULEVRIER", "libell_d_acheminement": "MAULEVRIER", "code_postal": "49360", "coordonnees_gps": [47.0353791389, -0.681865691619], "code_commune_insee": "49192"}, "geometry": {"type": "Point", "coordinates": [-0.681865691619, 47.0353791389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5433ef67beb400929dfebb7a5a8aa7367f6013", "fields": {"code_postal": "49770", "code_commune_insee": "49200", "libell_d_acheminement": "LONGUENEE EN ANJOU", "ligne_5": "LA MEMBROLLE SUR LONGUENEE", "nom_de_la_commune": "LONGUENEE EN ANJOU", "coordonnees_gps": [47.5603869664, -0.682921091412]}, "geometry": {"type": "Point", "coordinates": [-0.682921091412, 47.5603869664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7ca8ca9212f60fadfbb2967be23979deac906bb", "fields": {"nom_de_la_commune": "MIRE", "libell_d_acheminement": "MIRE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49205"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9120804745a26479ad76ff579375680b9ebfe642", "fields": {"nom_de_la_commune": "MONTILLIERS", "libell_d_acheminement": "MONTILLIERS", "code_postal": "49310", "coordonnees_gps": [47.1669501795, -0.609299799039], "code_commune_insee": "49211"}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c36618bbc814a07865a58e8276431f88f3e4d23", "fields": {"nom_de_la_commune": "MONTREVAULT SUR EVRE", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "code_postal": "49110", "coordonnees_gps": [47.2803686932, -0.928193282699], "code_commune_insee": "49218"}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6051aa6fe83775cd01d53482f4440395cfc5cfde", "fields": {"code_postal": "49600", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "LE FIEF SAUVIN", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f307b6d349512723398fb61e0e299647602da4c5", "fields": {"nom_de_la_commune": "NOYANT", "libell_d_acheminement": "NOYANT", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49228"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f3487374b8ba01b61af914d943403e151573ba2", "fields": {"nom_de_la_commune": "NOYANT LA GRAVOYERE", "libell_d_acheminement": "NOYANT LA GRAVOYERE", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49229"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72aaed6277f82a51bd899c7730ea9ff39de6b2f", "fields": {"code_postal": "49570", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "MONTJEAN SUR LOIRE", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "012ea11d60ce7639d1682478a0cc174e9fbc0e2f", "fields": {"code_postal": "49620", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "LA POMMERAYE", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7999ca286f553b5006ae52397c48f2cce5710b7a", "fields": {"nom_de_la_commune": "LES PONTS DE CE", "libell_d_acheminement": "LES PONTS DE CE", "code_postal": "49130", "coordonnees_gps": [47.4268002737, -0.542779965339], "code_commune_insee": "49246"}, "geometry": {"type": "Point", "coordinates": [-0.542779965339, 47.4268002737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d74b67b52e60c1011f89e185a01936e04c2959e4", "fields": {"nom_de_la_commune": "LA POSSONNIERE", "libell_d_acheminement": "LA POSSONNIERE", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49247"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae2d030dc0dbbf24d147240348572ffcf9ae8444", "fields": {"nom_de_la_commune": "QUERRE", "libell_d_acheminement": "QUERRE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49254"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c073e6084572fa855a08aa8ab35c9c1935ccad7", "fields": {"nom_de_la_commune": "LES RAIRIES", "libell_d_acheminement": "LES RAIRIES", "code_postal": "49430", "coordonnees_gps": [47.6620353083, -0.269301702185], "code_commune_insee": "49257"}, "geometry": {"type": "Point", "coordinates": [-0.269301702185, 47.6620353083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f77af52fd3c33a3ae9cd67433f9869b0cfe3265e", "fields": {"nom_de_la_commune": "ROU MARSON", "libell_d_acheminement": "ROU MARSON", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49262"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc961440df5c597df44a83cc77588fd43f2b2ef", "fields": {"nom_de_la_commune": "STE GEMMES SUR LOIRE", "libell_d_acheminement": "STE GEMMES SUR LOIRE", "code_postal": "49130", "coordonnees_gps": [47.4268002737, -0.542779965339], "code_commune_insee": "49278"}, "geometry": {"type": "Point", "coordinates": [-0.542779965339, 47.4268002737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b88efbb7101a1bd87a1947284780273266f4f7", "fields": {"nom_de_la_commune": "ST GEORGES SUR LOIRE", "libell_d_acheminement": "ST GEORGES SUR LOIRE", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49283"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "befb6601215efafb98e4ccae9a1888f1fee649d8", "fields": {"nom_de_la_commune": "ST JEAN DE LINIERES", "libell_d_acheminement": "ST JEAN DE LINIERES", "code_postal": "49070", "coordonnees_gps": [47.4753092045, -0.662263154222], "code_commune_insee": "49289"}, "geometry": {"type": "Point", "coordinates": [-0.662263154222, 47.4753092045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e534b045a8067a83e3659139be135274b08b05a6", "fields": {"nom_de_la_commune": "ST JUST SUR DIVE", "libell_d_acheminement": "ST JUST SUR DIVE", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49291"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82162d20b7862bae20c4a2dadef408028dc89047", "fields": {"code_postal": "49750", "code_commune_insee": "49292", "libell_d_acheminement": "VAL DU LAYON", "ligne_5": "ST LAMBERT DU LATTAY", "nom_de_la_commune": "VAL DU LAYON", "coordonnees_gps": [47.2426647325, -0.667761115453]}, "geometry": {"type": "Point", "coordinates": [-0.667761115453, 47.2426647325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df1a385546b8fa946f4e357ffcaa542fb4d8c97", "fields": {"nom_de_la_commune": "ST LEGER DES BOIS", "libell_d_acheminement": "ST LEGER DES BOIS", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49298"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "147d4bec0384d671cf8c6db697e8d000abd6d2e7", "fields": {"code_postal": "49450", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "ST ANDRE DE LA MARCHE", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1753425771, -0.989795900274]}, "geometry": {"type": "Point", "coordinates": [-0.989795900274, 47.1753425771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e10fe86606cb9066f76fbb167a857dfcf2e18ab", "fields": {"nom_de_la_commune": "ST MACAIRE DU BOIS", "libell_d_acheminement": "ST MACAIRE DU BOIS", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49302"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ef64c44985d2feda231ec6d7eccc1d040e55e3b", "fields": {"nom_de_la_commune": "ST MARTIN DU BOIS", "libell_d_acheminement": "ST MARTIN DU BOIS", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49305"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11fa4ca2c76346227cc85698697d3bfe11a2a0b", "fields": {"code_postal": "49800", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "BRAIN SUR L AUTHION", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.4402094612, -0.379405488422]}, "geometry": {"type": "Point", "coordinates": [-0.379405488422, 47.4402094612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04e6f2b46690ee9d846f977d51aad7818d1a1a8", "fields": {"code_postal": "49800", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "LA BOHALLE", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.4402094612, -0.379405488422]}, "geometry": {"type": "Point", "coordinates": [-0.379405488422, 47.4402094612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30b42b5e0532afdcd5267fdd50662648181b5c9", "fields": {"nom_de_la_commune": "ST PAUL DU BOIS", "libell_d_acheminement": "ST PAUL DU BOIS", "code_postal": "49310", "coordonnees_gps": [47.1669501795, -0.609299799039], "code_commune_insee": "49310"}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66a82bc8747daa9769ef24c23099d4dad48389c7", "fields": {"code_postal": "49112", "code_commune_insee": "49323", "libell_d_acheminement": "VERRIERES EN ANJOU", "ligne_5": "PELLOUAILLES LES VIGNES", "nom_de_la_commune": "VERRIERES EN ANJOU", "coordonnees_gps": [47.5121402522, -0.476038939286]}, "geometry": {"type": "Point", "coordinates": [-0.476038939286, 47.5121402522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b07c27fd2e5b4969e87c3efe0125c9283505a92f", "fields": {"nom_de_la_commune": "SCEAUX D ANJOU", "libell_d_acheminement": "SCEAUX D ANJOU", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49330"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9bc8c9c6e06417b69c0ac112f0636870185333b", "fields": {"nom_de_la_commune": "SEICHES SUR LE LOIR", "libell_d_acheminement": "SEICHES SUR LE LOIR", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49333"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d23e5448a6f232b215a5614536adbc2182d8ae9", "fields": {"nom_de_la_commune": "SOMLOIRE", "libell_d_acheminement": "SOMLOIRE", "code_postal": "49360", "coordonnees_gps": [47.0353791389, -0.681865691619], "code_commune_insee": "49336"}, "geometry": {"type": "Point", "coordinates": [-0.681865691619, 47.0353791389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "582c27e7ec2f708e4ae7a9b66af17656f8b7366b", "fields": {"nom_de_la_commune": "SOUCELLES", "libell_d_acheminement": "SOUCELLES", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49337"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d5ce7d08c888ddcfba89c72aeac262510730c00", "fields": {"nom_de_la_commune": "THORIGNE D ANJOU", "libell_d_acheminement": "THORIGNE D ANJOU", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49344"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4513d9f657912cd8978703a124aaa5f042eb61b4", "fields": {"code_postal": "49750", "code_commune_insee": "49345", "libell_d_acheminement": "BELLEVIGNE EN LAYON", "ligne_5": "RABLAY SUR LAYON", "nom_de_la_commune": "BELLEVIGNE EN LAYON", "coordonnees_gps": [47.2426647325, -0.667761115453]}, "geometry": {"type": "Point", "coordinates": [-0.667761115453, 47.2426647325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffa74edda79ee6bd09d9e35e0c41cd899b21ebc6", "fields": {"nom_de_la_commune": "LE TREMBLAY", "libell_d_acheminement": "LE TREMBLAY", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49354"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992ea4081ebbf10a6cb0462530273f0306e36b8c", "fields": {"nom_de_la_commune": "VAUCHRETIEN", "libell_d_acheminement": "VAUCHRETIEN", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49363"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c747fa8108cc21a448b829e0ff5c9c96d62e94c", "fields": {"nom_de_la_commune": "LES VERCHERS SUR LAYON", "libell_d_acheminement": "LES VERCHERS SUR LAYON", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49365"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90e547bc667adefd466097c6c01dbb2ef8a34b2c", "fields": {"nom_de_la_commune": "VERGONNES", "libell_d_acheminement": "VERGONNES", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49366"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa07c2a05582755274aeaa0f2937d5f5ea2512b1", "fields": {"nom_de_la_commune": "VERNOIL LE FOURRIER", "libell_d_acheminement": "VERNOIL LE FOURRIER", "code_postal": "49390", "coordonnees_gps": [47.4059865072, 0.072262523742], "code_commune_insee": "49369"}, "geometry": {"type": "Point", "coordinates": [0.072262523742, 47.4059865072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1089602dcf70a02e99a7c514f8c6b8e5b96447", "fields": {"code_postal": "49310", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "LES CERQUEUX SOUS PASSAVANT", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f4a39c23a3baf176ccb5bedd615c9f7d57cca5b", "fields": {"nom_de_la_commune": "APPEVILLE", "libell_d_acheminement": "APPEVILLE", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50016"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e75451ac8907b9d27ef04e31bd3c3b3eb4be3b79", "fields": {"nom_de_la_commune": "AVRANCHES", "libell_d_acheminement": "AVRANCHES", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50025"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd8f34cb4f292eaed5c426a26445abca99cc8653", "fields": {"nom_de_la_commune": "BARNEVILLE CARTERET", "libell_d_acheminement": "BARNEVILLE CARTERET", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50031"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df9d5f4b7f76e61199bd688d3fd7228f79c54267", "fields": {"nom_de_la_commune": "LA BARRE DE SEMILLY", "libell_d_acheminement": "LA BARRE DE SEMILLY", "code_postal": "50810", "coordonnees_gps": [49.1141244901, -0.965580935712], "code_commune_insee": "50032"}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db49a179683de453a4414b3e543253bb2c2de67f", "fields": {"nom_de_la_commune": "BEAUCHAMPS", "libell_d_acheminement": "BEAUCHAMPS", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50038"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "294f6ee6ec7750c1ed202e9a16fe67999721d840", "fields": {"nom_de_la_commune": "BELVAL", "libell_d_acheminement": "BELVAL", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50044"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b2856273ecf6b133a6c8690eac9aea8acf9604", "fields": {"nom_de_la_commune": "BLAINVILLE SUR MER", "libell_d_acheminement": "BLAINVILLE SUR MER", "code_postal": "50560", "coordonnees_gps": [49.1045282282, -1.56820466944], "code_commune_insee": "50058"}, "geometry": {"type": "Point", "coordinates": [-1.56820466944, 49.1045282282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff20ac9cdc6517f2b3bd34f7bba63a235db3451", "fields": {"nom_de_la_commune": "JULLOUVILLE", "libell_d_acheminement": "JULLOUVILLE", "code_postal": "50610", "coordonnees_gps": [48.7634707089, -1.52774338084], "code_commune_insee": "50066"}, "geometry": {"type": "Point", "coordinates": [-1.52774338084, 48.7634707089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "063eb44a1a08922b183a5537df040730c922351a", "fields": {"nom_de_la_commune": "BRETTEVILLE SUR AY", "libell_d_acheminement": "BRETTEVILLE SUR AY", "code_postal": "50430", "coordonnees_gps": [49.238207059, -1.53592999138], "code_commune_insee": "50078"}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3599ce75d88ff5dfce38d7562091c00f9896ce74", "fields": {"nom_de_la_commune": "BREUVILLE", "libell_d_acheminement": "BREUVILLE", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50079"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188991db7b79113362fa0a1d7b4d36e07d88941a", "fields": {"nom_de_la_commune": "BREVILLE SUR MER", "libell_d_acheminement": "BREVILLE SUR MER", "code_postal": "50290", "coordonnees_gps": [48.8970159466, -1.52458100267], "code_commune_insee": "50081"}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6d60a8ee2429cea32ec5d1d2b88085923f543ef", "fields": {"nom_de_la_commune": "BRICQUEVILLE SUR MER", "libell_d_acheminement": "BRICQUEVILLE SUR MER", "code_postal": "50290", "coordonnees_gps": [48.8970159466, -1.52458100267], "code_commune_insee": "50085"}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd18cdb49d04ca12f1d2c232896394a173a709e2", "fields": {"nom_de_la_commune": "GOMMENEC H", "libell_d_acheminement": "GOMMENEC H", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22063"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a56d8e4ef03571568b892276c6f16f7d19f59f4", "fields": {"code_postal": "22200", "code_commune_insee": "22067", "libell_d_acheminement": "GRACES", "ligne_5": "GOURLAN GRACES", "nom_de_la_commune": "GRACES", "coordonnees_gps": [48.5849264415, -3.14728309077]}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8dd61a7d9f3adf7e5805aee289913e5b3eb1ebb", "fields": {"nom_de_la_commune": "KERFOT", "libell_d_acheminement": "KERFOT", "code_postal": "22500", "coordonnees_gps": [48.7659885525, -3.04980464918], "code_commune_insee": "22086"}, "geometry": {"type": "Point", "coordinates": [-3.04980464918, 48.7659885525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5551a79c98cbc82bcc8b68e10f9471245470a701", "fields": {"nom_de_la_commune": "KERGRIST MOELOU", "libell_d_acheminement": "KERGRIST MOELOU", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22087"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "702288f6fd3b24aa039e5ad0c56eb7301be8a569", "fields": {"nom_de_la_commune": "KERIEN", "libell_d_acheminement": "KERIEN", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22088"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757d3a8afc8f50ecbc7f938fb632b03c9386799a", "fields": {"nom_de_la_commune": "LANDEBAERON", "libell_d_acheminement": "LANDEBAERON", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22095"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "020a83d318924837e4b0ac94a6d3769861cf86c8", "fields": {"nom_de_la_commune": "LANDEBIA", "libell_d_acheminement": "LANDEBIA", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22096"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c8df2f11a7cec73a980dad941f39cd43124dd1", "fields": {"nom_de_la_commune": "LA LANDEC", "libell_d_acheminement": "LA LANDEC", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22097"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f9e363cf9a66f0e66855a5e495e3895a2d7b2fa", "fields": {"nom_de_la_commune": "LANDEHEN", "libell_d_acheminement": "LANDEHEN", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22098"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b249cfaaca07860627e725cfd3ae03c844db0e42", "fields": {"nom_de_la_commune": "LANGROLAY SUR RANCE", "libell_d_acheminement": "LANGROLAY SUR RANCE", "code_postal": "22490", "coordonnees_gps": [48.5318949869, -2.03987229623], "code_commune_insee": "22103"}, "geometry": {"type": "Point", "coordinates": [-2.03987229623, 48.5318949869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7afb0dac52b26e35c70b37a795d828842e0e3362", "fields": {"code_postal": "22300", "code_commune_insee": "22113", "libell_d_acheminement": "LANNION", "ligne_5": "BEG LEGUER SERVEL", "nom_de_la_commune": "LANNION", "coordonnees_gps": [48.7115988979, -3.46942340449]}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "302fddb08d543b7106266e071375eedb3848d104", "fields": {"nom_de_la_commune": "LANRODEC", "libell_d_acheminement": "LANRODEC", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22116"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32c3f25e8e877f93037a8ec0ab991db80ebb6e21", "fields": {"nom_de_la_commune": "LANTIC", "libell_d_acheminement": "LANTIC", "code_postal": "22410", "coordonnees_gps": [48.627965542, -2.88359302537], "code_commune_insee": "22117"}, "geometry": {"type": "Point", "coordinates": [-2.88359302537, 48.627965542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7956189c10f35054d7a1b9157261e917fe65cc14", "fields": {"nom_de_la_commune": "LAURENAN", "libell_d_acheminement": "LAURENAN", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22122"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67df8f05424643d92cb539ab70c8c605781cf14e", "fields": {"nom_de_la_commune": "MAEL CARHAIX", "libell_d_acheminement": "MAEL CARHAIX", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22137"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf217e80e37962838d87dcb15ba2d150cd88671", "fields": {"nom_de_la_commune": "LA MALHOURE", "libell_d_acheminement": "LA MALHOURE", "code_postal": "22640", "coordonnees_gps": [48.3786869246, -2.4244584084], "code_commune_insee": "22140"}, "geometry": {"type": "Point", "coordinates": [-2.4244584084, 48.3786869246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf1b8c66c5aae7420053f6a04bdeddc92665511d", "fields": {"nom_de_la_commune": "MATIGNON", "libell_d_acheminement": "MATIGNON", "code_postal": "22550", "coordonnees_gps": [48.570915647, -2.33432479795], "code_commune_insee": "22143"}, "geometry": {"type": "Point", "coordinates": [-2.33432479795, 48.570915647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f6c09498915b9a73e5c894bb194ed1942197208", "fields": {"nom_de_la_commune": "LA MEAUGON", "libell_d_acheminement": "LA MEAUGON", "code_postal": "22440", "coordonnees_gps": [48.4956130543, -2.82108365648], "code_commune_insee": "22144"}, "geometry": {"type": "Point", "coordinates": [-2.82108365648, 48.4956130543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad099ca1d5fac65339a7c0d7cf16e42eddf8fc5c", "fields": {"nom_de_la_commune": "MERDRIGNAC", "libell_d_acheminement": "MERDRIGNAC", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22147"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74663d60819f1e9f21ffef134e4d08032e6696d1", "fields": {"nom_de_la_commune": "MERLEAC", "libell_d_acheminement": "MERLEAC", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22149"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "478c77691b4b83243bb8ec7c7e29662b9f6915f7", "fields": {"nom_de_la_commune": "MINIHY TREGUIER", "libell_d_acheminement": "MINIHY TREGUIER", "code_postal": "22220", "coordonnees_gps": [48.7897014791, -3.23704501723], "code_commune_insee": "22152"}, "geometry": {"type": "Point", "coordinates": [-3.23704501723, 48.7897014791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6fd25762fcd94ddf11a9475c4782f99620bac16", "fields": {"nom_de_la_commune": "MONCONTOUR", "libell_d_acheminement": "MONCONTOUR DE BRETAGNE", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22153"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67de97d004edcbe2fcfb190e490a5b277956676", "fields": {"nom_de_la_commune": "LA MOTTE", "libell_d_acheminement": "LA MOTTE", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22155"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed7b160e97cf79a45ab58fc29284549be55d2d9", "fields": {"nom_de_la_commune": "PEDERNEC", "libell_d_acheminement": "PEDERNEC", "code_postal": "22540", "coordonnees_gps": [48.5672822265, -3.30848163045], "code_commune_insee": "22164"}, "geometry": {"type": "Point", "coordinates": [-3.30848163045, 48.5672822265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39e2557df41967a34c127b1b1552ef968fc4754", "fields": {"code_postal": "22710", "code_commune_insee": "22166", "libell_d_acheminement": "PENVENAN", "ligne_5": "PORT BLANC", "nom_de_la_commune": "PENVENAN", "coordonnees_gps": [48.815824264, -3.30211967596]}, "geometry": {"type": "Point", "coordinates": [-3.30211967596, 48.815824264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16b7166b250b158904e1ddae2158b1ccaa8e1b5e", "fields": {"nom_de_la_commune": "PERROS GUIREC", "libell_d_acheminement": "PERROS GUIREC", "code_postal": "22700", "coordonnees_gps": [48.7941225989, -3.4412963824], "code_commune_insee": "22168"}, "geometry": {"type": "Point", "coordinates": [-3.4412963824, 48.7941225989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d588513b7a7a801109eed66af600a743e7efc42", "fields": {"code_postal": "22700", "code_commune_insee": "22168", "libell_d_acheminement": "PERROS GUIREC", "ligne_5": "PLOUMANACH", "nom_de_la_commune": "PERROS GUIREC", "coordonnees_gps": [48.7941225989, -3.4412963824]}, "geometry": {"type": "Point", "coordinates": [-3.4412963824, 48.7941225989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86fcf27e6c3dc77bf0c9eadd61122a53bb000180", "fields": {"nom_de_la_commune": "PEUMERIT QUINTIN", "libell_d_acheminement": "PEUMERIT QUINTIN", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22169"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf96162f62b10cc567ab8dc8552a53075ba5ada3", "fields": {"nom_de_la_commune": "PLAINTEL", "libell_d_acheminement": "PLAINTEL", "code_postal": "22940", "coordonnees_gps": [48.4160517121, -2.8116302496], "code_commune_insee": "22171"}, "geometry": {"type": "Point", "coordinates": [-2.8116302496, 48.4160517121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e56bccab06aaeeb53dede10e9279f5e8b9d7d2ce", "fields": {"nom_de_la_commune": "PLEUDIHEN SUR RANCE", "libell_d_acheminement": "PLEUDIHEN SUR RANCE", "code_postal": "22690", "coordonnees_gps": [48.5060687899, -1.94808964301], "code_commune_insee": "22197"}, "geometry": {"type": "Point", "coordinates": [-1.94808964301, 48.5060687899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71ee0c3d2c9aa8525c05d6d81a8997d7c4257807", "fields": {"nom_de_la_commune": "PLOUHA", "libell_d_acheminement": "PLOUHA", "code_postal": "22580", "coordonnees_gps": [48.6838185781, -2.93369249044], "code_commune_insee": "22222"}, "geometry": {"type": "Point", "coordinates": [-2.93369249044, 48.6838185781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a9d2f8c83f3f00f7f6d08a0b485c5d7b653e26", "fields": {"nom_de_la_commune": "PLOUISY", "libell_d_acheminement": "PLOUISY", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22223"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cf89d7a0dc511bc7b4ad8cb467de4118b8086eb", "fields": {"nom_de_la_commune": "PLOUNERIN", "libell_d_acheminement": "PLOUNERIN", "code_postal": "22780", "coordonnees_gps": [48.5213777811, -3.52574815356], "code_commune_insee": "22227"}, "geometry": {"type": "Point", "coordinates": [-3.52574815356, 48.5213777811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f609c64ba6b8c9a3ba76855054ca242d3675ca4a", "fields": {"nom_de_la_commune": "PLOURAC H", "libell_d_acheminement": "PLOURAC H", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22231"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "231f20f092c9df55f90baf2623d11bf105ef4e33", "fields": {"nom_de_la_commune": "PLOURHAN", "libell_d_acheminement": "PLOURHAN", "code_postal": "22410", "coordonnees_gps": [48.627965542, -2.88359302537], "code_commune_insee": "22232"}, "geometry": {"type": "Point", "coordinates": [-2.88359302537, 48.627965542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d869d5ac6cf1e5c15c8819e4ed323a271fb6c75b", "fields": {"nom_de_la_commune": "PLOUZELAMBRE", "libell_d_acheminement": "PLOUZELAMBRE", "code_postal": "22420", "coordonnees_gps": [48.6137512705, -3.47149497332], "code_commune_insee": "22235"}, "geometry": {"type": "Point", "coordinates": [-3.47149497332, 48.6137512705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a845b6442e9bcbc960a106af347fd9d26a6b1d51", "fields": {"nom_de_la_commune": "PLUDUAL", "libell_d_acheminement": "PLUDUAL", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22236"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5493726496e6987ab7dc872246b4db94a882b1ca", "fields": {"nom_de_la_commune": "PLUZUNET", "libell_d_acheminement": "PLUZUNET", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22245"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee065f43f1317d610db53cd95c55e1fd83b1b01", "fields": {"nom_de_la_commune": "POULDOURAN", "libell_d_acheminement": "POULDOURAN", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22253"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0277980a6f0f64a6a68d2e0ee81e43de60668a30", "fields": {"nom_de_la_commune": "LA PRENESSAYE", "libell_d_acheminement": "LA PRENESSAYE", "code_postal": "22210", "coordonnees_gps": [48.1328117448, -2.60089281473], "code_commune_insee": "22255"}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb93d51718b75f9f5060dafdad283854c667d28a", "fields": {"nom_de_la_commune": "QUEMPER GUEZENNEC", "libell_d_acheminement": "QUEMPER GUEZENNEC", "code_postal": "22260", "coordonnees_gps": [48.6934931842, -3.15876407926], "code_commune_insee": "22256"}, "geometry": {"type": "Point", "coordinates": [-3.15876407926, 48.6934931842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51299dd8e53418040184cd0fafb80fc572c3372b", "fields": {"nom_de_la_commune": "QUESSOY", "libell_d_acheminement": "QUESSOY", "code_postal": "22120", "coordonnees_gps": [48.462144605, -2.65332605915], "code_commune_insee": "22258"}, "geometry": {"type": "Point", "coordinates": [-2.65332605915, 48.462144605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e2c37ddf03ac579c9af3de35452bf5bb5876a03", "fields": {"nom_de_la_commune": "QUEVERT", "libell_d_acheminement": "QUEVERT", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22259"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e99e4136c743b0a98628a7294d054f9b2642df92", "fields": {"code_postal": "22100", "code_commune_insee": "22259", "libell_d_acheminement": "QUEVERT", "ligne_5": "L AUBLETTE QUEVERT", "nom_de_la_commune": "QUEVERT", "coordonnees_gps": [48.4429392522, -2.05375025215]}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84a6612e80b99e4493135c240b22793bd34986a1", "fields": {"nom_de_la_commune": "ROSTRENEN", "libell_d_acheminement": "ROSTRENEN", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22266"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb98dca4bd9fac03c9f34a7ff7bead3c0d194be1", "fields": {"code_postal": "22110", "code_commune_insee": "22266", "libell_d_acheminement": "ROSTRENEN", "ligne_5": "BONEN", "nom_de_la_commune": "ROSTRENEN", "coordonnees_gps": [48.2418797133, -3.31058083]}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "833300b7410074849f32114717ac74bad0f2ff4f", "fields": {"nom_de_la_commune": "ST AGATHON", "libell_d_acheminement": "ST AGATHON", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22272"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "195aac527781fa798d485798eef4ee62f9a4d3ce", "fields": {"nom_de_la_commune": "ST CAST LE GUILDO", "libell_d_acheminement": "ST CAST LE GUILDO", "code_postal": "22380", "coordonnees_gps": [48.6033654101, -2.24845045064], "code_commune_insee": "22282"}, "geometry": {"type": "Point", "coordinates": [-2.24845045064, 48.6033654101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e6d02ede9bdffab9b07429e0b8110bc99fe9e5b", "fields": {"nom_de_la_commune": "ST CLET", "libell_d_acheminement": "ST CLET", "code_postal": "22260", "coordonnees_gps": [48.6934931842, -3.15876407926], "code_commune_insee": "22283"}, "geometry": {"type": "Point", "coordinates": [-3.15876407926, 48.6934931842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721bda6a7849bb0c99095757abce94dfe9060505", "fields": {"nom_de_la_commune": "ST CONNAN", "libell_d_acheminement": "ST CONNAN", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22284"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8e9285d737ebcdd6a10f33dbb253a00cc0fa57", "fields": {"nom_de_la_commune": "ST CONNEC", "libell_d_acheminement": "ST CONNEC", "code_postal": "22530", "coordonnees_gps": [48.2126596163, -2.96770725479], "code_commune_insee": "22285"}, "geometry": {"type": "Point", "coordinates": [-2.96770725479, 48.2126596163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea0d18e2f8a4ae552945e445ee5da3526b30422", "fields": {"nom_de_la_commune": "ST DENOUAL", "libell_d_acheminement": "ST DENOUAL", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22286"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7b75beae257a0390edd5aea996115472e5d582", "fields": {"nom_de_la_commune": "ST FIACRE", "libell_d_acheminement": "ST FIACRE", "code_postal": "22720", "coordonnees_gps": [48.4508738956, -3.09490021902], "code_commune_insee": "22289"}, "geometry": {"type": "Point", "coordinates": [-3.09490021902, 48.4508738956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6133a520dda507234f7f12b40886bbb5f19f0e29", "fields": {"nom_de_la_commune": "ST GELVEN", "libell_d_acheminement": "ST GELVEN", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22290"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60395e91699b2a78e678a33a755ecde5f5c23eb", "fields": {"nom_de_la_commune": "ST GILLES PLIGEAUX", "libell_d_acheminement": "ST GILLES PLIGEAUX", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22294"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8676da5ce06468fe5b497680d212e9c433ae8fc", "fields": {"nom_de_la_commune": "ST GUEN", "libell_d_acheminement": "ST GUEN", "code_postal": "22530", "coordonnees_gps": [48.2126596163, -2.96770725479], "code_commune_insee": "22298"}, "geometry": {"type": "Point", "coordinates": [-2.96770725479, 48.2126596163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fe87f5d2548cc33e96cb5ff39be9c7bb78e3938", "fields": {"nom_de_la_commune": "ST JACUT DE LA MER", "libell_d_acheminement": "ST JACUT DE LA MER", "code_postal": "22750", "coordonnees_gps": [48.5896019058, -2.19253863485], "code_commune_insee": "22302"}, "geometry": {"type": "Point", "coordinates": [-2.19253863485, 48.5896019058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acf051683e1737295362952ee69b17fde7b6e2ab", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "22940", "coordonnees_gps": [48.4160517121, -2.8116302496], "code_commune_insee": "22307"}, "geometry": {"type": "Point", "coordinates": [-2.8116302496, 48.4160517121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbdf88f48c76fed3139103e4c6734a1b1b2caa0b", "fields": {"nom_de_la_commune": "ST NICODEME", "libell_d_acheminement": "ST NICODEME", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22320"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f93c69a30df478d0614634b28cd341b7aef17a9", "fields": {"nom_de_la_commune": "ST PEVER", "libell_d_acheminement": "ST PEVER", "code_postal": "22720", "coordonnees_gps": [48.4508738956, -3.09490021902], "code_commune_insee": "22322"}, "geometry": {"type": "Point", "coordinates": [-3.09490021902, 48.4508738956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9140d1ba1eddeede39ec3e552b5d971ec92107", "fields": {"nom_de_la_commune": "SENVEN LEHART", "libell_d_acheminement": "SENVEN LEHART", "code_postal": "22720", "coordonnees_gps": [48.4508738956, -3.09490021902], "code_commune_insee": "22335"}, "geometry": {"type": "Point", "coordinates": [-3.09490021902, 48.4508738956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33fbeedee9fe9b2a4653d2669aa74a128fa746fd", "fields": {"nom_de_la_commune": "SEVIGNAC", "libell_d_acheminement": "SEVIGNAC", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22337"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3779c49921d5cfc810d5d9a1e3ab1fadfad41985", "fields": {"nom_de_la_commune": "SQUIFFIEC", "libell_d_acheminement": "SQUIFFIEC", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22338"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b6181c42400e327d3986b2a2d015e85e63ed6f2", "fields": {"nom_de_la_commune": "TREDARZEC", "libell_d_acheminement": "TREDARZEC", "code_postal": "22220", "coordonnees_gps": [48.7897014791, -3.23704501723], "code_commune_insee": "22347"}, "geometry": {"type": "Point", "coordinates": [-3.23704501723, 48.7897014791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa2eed17b7039edd3888e8066e40a900912398c", "fields": {"nom_de_la_commune": "TREDREZ LOCQUEMEAU", "libell_d_acheminement": "TREDREZ LOCQUEMEAU", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22349"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b03af8d04616c04c0bbaf7dd174166350e80811a", "fields": {"nom_de_la_commune": "TREDUDER", "libell_d_acheminement": "TREDUDER", "code_postal": "22310", "coordonnees_gps": [48.6314281059, -3.60402882378], "code_commune_insee": "22350"}, "geometry": {"type": "Point", "coordinates": [-3.60402882378, 48.6314281059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd14782147fd25c2172fd0c54833b6561f5551e4", "fields": {"nom_de_la_commune": "TREFUMEL", "libell_d_acheminement": "TREFUMEL", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22352"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0577954e64ba6a167e42e24455e0ab094918ac", "fields": {"nom_de_la_commune": "TREGASTEL", "libell_d_acheminement": "TREGASTEL", "code_postal": "22730", "coordonnees_gps": [48.816984154, -3.50723770629], "code_commune_insee": "22353"}, "geometry": {"type": "Point", "coordinates": [-3.50723770629, 48.816984154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c51b04b01998a867b181bd7b51e40143039cc5", "fields": {"nom_de_la_commune": "TREGUIDEL", "libell_d_acheminement": "TREGUIDEL", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22361"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b031b9469d96c8a3191c128cae3daa565eb5b0c8", "fields": {"nom_de_la_commune": "TRELEVERN", "libell_d_acheminement": "TRELEVERN", "code_postal": "22660", "coordonnees_gps": [48.8064531549, -3.35769639754], "code_commune_insee": "22363"}, "geometry": {"type": "Point", "coordinates": [-3.35769639754, 48.8064531549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba978b7fe67e2e4c7d2d2437d974df62cf37318e", "fields": {"nom_de_la_commune": "TREMEL", "libell_d_acheminement": "TREMEL", "code_postal": "22310", "coordonnees_gps": [48.6314281059, -3.60402882378], "code_commune_insee": "22366"}, "geometry": {"type": "Point", "coordinates": [-3.60402882378, 48.6314281059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7287935e9517754be6140174f5deefcf6333a2e8", "fields": {"nom_de_la_commune": "TREMEVEN", "libell_d_acheminement": "TREMEVEN", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22370"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e0959afad52cd2fc820e6d14e5781c2154e2420", "fields": {"nom_de_la_commune": "TRESSIGNAUX", "libell_d_acheminement": "TRESSIGNAUX", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22375"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5286460c35df4075e6fed2eaf8c38e2cac852a8f", "fields": {"nom_de_la_commune": "TROGUERY", "libell_d_acheminement": "TROGUERY", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22383"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd052a92d9d824fdb816a5232e0e14508cac4de2", "fields": {"nom_de_la_commune": "ALLEYRAT", "libell_d_acheminement": "ALLEYRAT", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23003"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5564320e730407ad0f8024ca11d84ef2b8f2a31", "fields": {"nom_de_la_commune": "AULON", "libell_d_acheminement": "AULON", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23011"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40cb5c2789bf23c6e20355ff6e5e3e66d978d4a9", "fields": {"nom_de_la_commune": "BEISSAT", "libell_d_acheminement": "BEISSAT", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23019"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7820dfec60512891ad05562958c5b81f5051e979", "fields": {"nom_de_la_commune": "BLAUDEIX", "libell_d_acheminement": "BLAUDEIX", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23023"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7191cc783443c749fc5cb05fa3fad3c66eab1c06", "fields": {"nom_de_la_commune": "BOSROGER", "libell_d_acheminement": "BOSROGER", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23028"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e30087ebda3fcbbce06a3e2711f212bda030bed7", "fields": {"nom_de_la_commune": "BOURGANEUF", "libell_d_acheminement": "BOURGANEUF", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23030"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5813e89605cb063f176205a7dccd0ee15e02e18", "fields": {"nom_de_la_commune": "BOUSSAC BOURG", "libell_d_acheminement": "BOUSSAC BOURG", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23032"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b088f33725dae2b5b8c0dfcf4f4eb361206f05d", "fields": {"nom_de_la_commune": "BROUSSE", "libell_d_acheminement": "BROUSSE", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23034"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3bea9b7627ca7301da576423f63995a28c2b925", "fields": {"nom_de_la_commune": "BUSSIERE ST GEORGES", "libell_d_acheminement": "BUSSIERE ST GEORGES", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23038"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9afb0129838fc47d2c0c9de7e40ac6f0bdf8ba2f", "fields": {"nom_de_la_commune": "LA CELLE SOUS GOUZON", "libell_d_acheminement": "LA CELLE SOUS GOUZON", "code_postal": "23230", "coordonnees_gps": [46.2160065726, 2.24523675556], "code_commune_insee": "23040"}, "geometry": {"type": "Point", "coordinates": [2.24523675556, 46.2160065726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02eb0683ae1d6eece1858d0bbe1d0912beb6ba19", "fields": {"nom_de_la_commune": "LA CELLETTE", "libell_d_acheminement": "LA CELLETTE", "code_postal": "23350", "coordonnees_gps": [46.3822619833, 2.00190110842], "code_commune_insee": "23041"}, "geometry": {"type": "Point", "coordinates": [2.00190110842, 46.3822619833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f01853ebcf085cd225e9bde3d23c33ae625368", "fields": {"nom_de_la_commune": "CHAMBON STE CROIX", "libell_d_acheminement": "CHAMBON STE CROIX", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23044"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e96b965b98b7587ceede5282f18fe92c90bc00", "fields": {"nom_de_la_commune": "CHAMBON SUR VOUEIZE", "libell_d_acheminement": "CHAMBON SUR VOUEIZE", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23045"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a4b931eb4221a0fe62da6d711114b4dbfc9928", "fields": {"nom_de_la_commune": "LA CHAPELLE ST MARTIAL", "libell_d_acheminement": "LA CHAPELLE ST MARTIAL", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23051"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e05d339cb4f206b667eefda47a1fdca3684d647", "fields": {"nom_de_la_commune": "LA CHAPELLE TAILLEFERT", "libell_d_acheminement": "LA CHAPELLE TAILLEFERT", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23052"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e1ede02f88e65cd873855c6408a3668693e489", "fields": {"nom_de_la_commune": "COLONDANNES", "libell_d_acheminement": "COLONDANNES", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23065"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7144ac7155f589a7d1748b60ca6d4dd1c19a17e", "fields": {"nom_de_la_commune": "GENTIOUX PIGEROLLES", "libell_d_acheminement": "GENTIOUX PIGEROLLES", "code_postal": "23340", "coordonnees_gps": [45.7675202312, 1.97700019659], "code_commune_insee": "23090"}, "geometry": {"type": "Point", "coordinates": [1.97700019659, 45.7675202312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a26f07535f2b6074868f46d3e7fa253a05c6000", "fields": {"nom_de_la_commune": "GLENIC", "libell_d_acheminement": "GLENIC", "code_postal": "23380", "coordonnees_gps": [46.2198124266, 1.97076642582], "code_commune_insee": "23092"}, "geometry": {"type": "Point", "coordinates": [1.97076642582, 46.2198124266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274ccb6a16452dc05f81b091f7c7807982b61d9d", "fields": {"nom_de_la_commune": "LE GRAND BOURG", "libell_d_acheminement": "LE GRAND BOURG", "code_postal": "23240", "coordonnees_gps": [46.1728661103, 1.63437872593], "code_commune_insee": "23095"}, "geometry": {"type": "Point", "coordinates": [1.63437872593, 46.1728661103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e29d3a5a4b327704c3948f0ea0a362373b7a919", "fields": {"nom_de_la_commune": "LAFAT", "libell_d_acheminement": "LAFAT", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23103"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d28099bc86648ac5dd0978ac310c5c54638611c8", "fields": {"nom_de_la_commune": "LAVAUFRANCHE", "libell_d_acheminement": "LAVAUFRANCHE", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23104"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ade045db2c0c1d97255f509cf3c45fe79d0cb9c", "fields": {"nom_de_la_commune": "LIOUX LES MONGES", "libell_d_acheminement": "LIOUX LES MONGES", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23110"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2419678685d88555a54eedda63dfb7c81dc1796e", "fields": {"nom_de_la_commune": "LUSSAT", "libell_d_acheminement": "LUSSAT", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23114"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db29b3971cc767d9ac996fc758b54a149ae7640", "fields": {"nom_de_la_commune": "MAINSAT", "libell_d_acheminement": "MAINSAT", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23116"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24061cf2400c2268c130c341b443e0d0bf6e2973", "fields": {"nom_de_la_commune": "MAISONNISSES", "libell_d_acheminement": "MAISONNISSES", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23118"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0df53feeb54dff24007d6d3c2f417760256a2e8", "fields": {"nom_de_la_commune": "MALLERET BOUSSAC", "libell_d_acheminement": "MALLERET BOUSSAC", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23120"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e3568ebbc4a304f4f42c7806d7c0b52560e30af", "fields": {"nom_de_la_commune": "STE MARIE CAPPEL", "libell_d_acheminement": "STE MARIE CAPPEL", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59536"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7daed764dc0cdfffe7d06748226f0b1d7144715a", "fields": {"nom_de_la_commune": "ST MOMELIN", "libell_d_acheminement": "ST MOMELIN", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59538"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "830b41b27e877562d4e95f18775928ac5cf442ba", "fields": {"nom_de_la_commune": "ST SOUPLET", "libell_d_acheminement": "ST SOUPLET", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59545"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62321f48ad2b289908b642ea60c490a13dc57bd2", "fields": {"nom_de_la_commune": "ST VAAST EN CAMBRESIS", "libell_d_acheminement": "ST VAAST EN CAMBRESIS", "code_postal": "59188", "coordonnees_gps": [50.2124042637, 3.41180746227], "code_commune_insee": "59547"}, "geometry": {"type": "Point", "coordinates": [3.41180746227, 50.2124042637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3682f895887e84759adfb9d2ce6cbfe5c9d8fc9", "fields": {"nom_de_la_commune": "SAMEON", "libell_d_acheminement": "SAMEON", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59551"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9206f814eb84b9b31164d5f4011e446be24ad3", "fields": {"nom_de_la_commune": "SANTES", "libell_d_acheminement": "SANTES", "code_postal": "59211", "coordonnees_gps": [50.5902518478, 2.96079766371], "code_commune_insee": "59553"}, "geometry": {"type": "Point", "coordinates": [2.96079766371, 50.5902518478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acb475f0c755719ee0c2232ab971000d00044e20", "fields": {"nom_de_la_commune": "SASSEGNIES", "libell_d_acheminement": "SASSEGNIES", "code_postal": "59145", "coordonnees_gps": [50.1990593503, 3.79431721305], "code_commune_insee": "59556"}, "geometry": {"type": "Point", "coordinates": [3.79431721305, 50.1990593503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eddbc7b230527a38f4dfcbb0a407c6eca700625", "fields": {"nom_de_la_commune": "SEBOURG", "libell_d_acheminement": "SEBOURG", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59559"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff2bf5f0edcb0df71df290aa2d50c681d7d87ad0", "fields": {"nom_de_la_commune": "SERANVILLERS FORENVILLE", "libell_d_acheminement": "SERANVILLERS FORENVILLE", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59567"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "254ebbf56878e14d0275b2af35981e0f8b0140e4", "fields": {"nom_de_la_commune": "SERCUS", "libell_d_acheminement": "SERCUS", "code_postal": "59173", "coordonnees_gps": [50.7167343875, 2.40817332289], "code_commune_insee": "59568"}, "geometry": {"type": "Point", "coordinates": [2.40817332289, 50.7167343875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aa360f487463ce4c1b43a7dc387a1e01749c467", "fields": {"nom_de_la_commune": "SIN LE NOBLE", "libell_d_acheminement": "SIN LE NOBLE", "code_postal": "59450", "coordonnees_gps": [50.3677619244, 3.12077272055], "code_commune_insee": "59569"}, "geometry": {"type": "Point", "coordinates": [3.12077272055, 50.3677619244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fded58ab1bb752e0a8440acc48e9772433149557", "fields": {"nom_de_la_commune": "SOLRE LE CHATEAU", "libell_d_acheminement": "SOLRE LE CHATEAU", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59572"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da652a34220450666fc6c111b54c735740c2f6e", "fields": {"nom_de_la_commune": "TETEGHEM COUDEKERQUE VILLAGE", "libell_d_acheminement": "TETEGHEM COUDEKERQUE VILLAGE", "code_postal": "59229", "coordonnees_gps": [51.0183217327, 2.46486695201], "code_commune_insee": "59588"}, "geometry": {"type": "Point", "coordinates": [2.46486695201, 51.0183217327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c7a783176b3f8e83a372832bb76a9b9739f168", "fields": {"nom_de_la_commune": "THIENNES", "libell_d_acheminement": "THIENNES", "code_postal": "59189", "coordonnees_gps": [50.6676916499, 2.47249399478], "code_commune_insee": "59590"}, "geometry": {"type": "Point", "coordinates": [2.47249399478, 50.6676916499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f686adf23b5eca7a38379565ce083c30f91c32", "fields": {"nom_de_la_commune": "THIVENCELLE", "libell_d_acheminement": "THIVENCELLE", "code_postal": "59163", "coordonnees_gps": [50.4613685751, 3.61604638041], "code_commune_insee": "59591"}, "geometry": {"type": "Point", "coordinates": [3.61604638041, 50.4613685751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779bc3151b3c1bfddcf86e0529b6d713315bc84a", "fields": {"nom_de_la_commune": "TOURMIGNIES", "libell_d_acheminement": "TOURMIGNIES", "code_postal": "59551", "coordonnees_gps": [50.5114163439, 3.06811658517], "code_commune_insee": "59600"}, "geometry": {"type": "Point", "coordinates": [3.06811658517, 50.5114163439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b82714d88445c5310cf14d2d1768c0345e8bd9ce", "fields": {"nom_de_la_commune": "VALENCIENNES", "libell_d_acheminement": "VALENCIENNES", "code_postal": "59300", "coordonnees_gps": [50.3420089884, 3.52240338554], "code_commune_insee": "59606"}, "geometry": {"type": "Point", "coordinates": [3.52240338554, 50.3420089884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181ed31688891c327d4a4b26db64d398d10bf0f8", "fields": {"nom_de_la_commune": "VENDEGIES AU BOIS", "libell_d_acheminement": "VENDEGIES AU BOIS", "code_postal": "59218", "coordonnees_gps": [50.188036681, 3.59383349158], "code_commune_insee": "59607"}, "geometry": {"type": "Point", "coordinates": [3.59383349158, 50.188036681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ef2d59589b7228ec20ac2356d6f710e19d6f62", "fields": {"nom_de_la_commune": "VIESLY", "libell_d_acheminement": "VIESLY", "code_postal": "59271", "coordonnees_gps": [50.1566654786, 3.45681264991], "code_commune_insee": "59614"}, "geometry": {"type": "Point", "coordinates": [3.45681264991, 50.1566654786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da5b48b04b12eb001f69098f919e44de1647bd5", "fields": {"nom_de_la_commune": "VIEUX MESNIL", "libell_d_acheminement": "VIEUX MESNIL", "code_postal": "59138", "coordonnees_gps": [50.2338166677, 3.85860343752], "code_commune_insee": "59617"}, "geometry": {"type": "Point", "coordinates": [3.85860343752, 50.2338166677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a720e210440150445b016e0a006c25eaf74da0", "fields": {"nom_de_la_commune": "VILLEREAU", "libell_d_acheminement": "VILLEREAU", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59619"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c1429082b8d98468c87f0f816cc34b285c0806", "fields": {"nom_de_la_commune": "VILLERS GUISLAIN", "libell_d_acheminement": "VILLERS GUISLAIN", "code_postal": "59297", "coordonnees_gps": [50.0360859364, 3.1522537661], "code_commune_insee": "59623"}, "geometry": {"type": "Point", "coordinates": [3.1522537661, 50.0360859364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33335782e01be4a8a41baeb232fcf2c5af26ffcb", "fields": {"nom_de_la_commune": "VOLCKERINCKHOVE", "libell_d_acheminement": "VOLCKERINCKHOVE", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59628"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be151fa5e4e4603b9114db929bf10344b6fbdb27", "fields": {"nom_de_la_commune": "WALLERS", "libell_d_acheminement": "WALLERS", "code_postal": "59135", "coordonnees_gps": [50.3789593982, 3.39834366175], "code_commune_insee": "59632"}, "geometry": {"type": "Point", "coordinates": [3.39834366175, 50.3789593982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1923b55bbc7b7d8ef94e7968340ef04345c0d98", "fields": {"nom_de_la_commune": "WANNEHAIN", "libell_d_acheminement": "WANNEHAIN", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59638"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be706628a41641960729039565aa48cb32b14f72", "fields": {"nom_de_la_commune": "WARGNIES LE PETIT", "libell_d_acheminement": "WARGNIES LE PETIT", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59640"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3186da6768a73cc5a8753e92171f844b928d64e", "fields": {"nom_de_la_commune": "WARLAING", "libell_d_acheminement": "WARLAING", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59642"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d30c12ab97d6c0c626433f0766e34065c72e554d", "fields": {"nom_de_la_commune": "WILLEMS", "libell_d_acheminement": "WILLEMS", "code_postal": "59780", "coordonnees_gps": [50.6106542416, 3.2436665711], "code_commune_insee": "59660"}, "geometry": {"type": "Point", "coordinates": [3.2436665711, 50.6106542416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad4cc7a572be44a7b414c5a5ab2275e391db389", "fields": {"nom_de_la_commune": "WILLIES", "libell_d_acheminement": "WILLIES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59661"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e1470a297d87c654581e0044c18235f619fc04", "fields": {"nom_de_la_commune": "ZUYDCOOTE", "libell_d_acheminement": "ZUYDCOOTE", "code_postal": "59123", "coordonnees_gps": [51.0709279733, 2.51756699208], "code_commune_insee": "59668"}, "geometry": {"type": "Point", "coordinates": [2.51756699208, 51.0709279733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "543628af1b525b5e4918b39bc7d9d6f3521fa30d", "fields": {"nom_de_la_commune": "DON", "libell_d_acheminement": "DON", "code_postal": "59272", "coordonnees_gps": [50.5443637938, 2.91481132578], "code_commune_insee": "59670"}, "geometry": {"type": "Point", "coordinates": [2.91481132578, 50.5443637938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27e6748c8b1cfccff804b6a14372f6b604d2e2ce", "fields": {"nom_de_la_commune": "ANDEVILLE", "libell_d_acheminement": "ANDEVILLE", "code_postal": "60570", "coordonnees_gps": [49.2740563361, 2.16701620037], "code_commune_insee": "60012"}, "geometry": {"type": "Point", "coordinates": [2.16701620037, 49.2740563361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072763dbc03fe875c1c78159e2731240631b7b33", "fields": {"nom_de_la_commune": "ANGIVILLERS", "libell_d_acheminement": "ANGIVILLERS", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60014"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99676def98e42aa48adf5927a3a551155816654b", "fields": {"nom_de_la_commune": "AUGER ST VINCENT", "libell_d_acheminement": "AUGER ST VINCENT", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60027"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d54f2101e21bbc303890b2aa93dfea8850dd97", "fields": {"nom_de_la_commune": "BAILLEVAL", "libell_d_acheminement": "BAILLEVAL", "code_postal": "60140", "coordonnees_gps": [49.3368593358, 2.481661192], "code_commune_insee": "60042"}, "geometry": {"type": "Point", "coordinates": [2.481661192, 49.3368593358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12083e773338d684d2933336c2af293618d012cf", "fields": {"nom_de_la_commune": "BALAGNY SUR THERAIN", "libell_d_acheminement": "BALAGNY SUR THERAIN", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60044"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3db8f9d9cafdb3e0bf182f522d207f9be800f5f", "fields": {"nom_de_la_commune": "BEAUDEDUIT", "libell_d_acheminement": "BEAUDEDUIT", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60051"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c68f6255d2bcb93f15a269f0ae4aef0257d72418", "fields": {"nom_de_la_commune": "BEAULIEU LES FONTAINES", "libell_d_acheminement": "BEAULIEU LES FONTAINES", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60053"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a59f1a21e2893f7af0fca18ec20d5a089aa11c51", "fields": {"nom_de_la_commune": "BEAURAINS LES NOYON", "libell_d_acheminement": "BEAURAINS LES NOYON", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60055"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e8c2bc3fc54daba274e3f82483fbf145535ad8", "fields": {"nom_de_la_commune": "BELLOY", "libell_d_acheminement": "BELLOY", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60061"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b5841111f6de93a7499048dece06b9aa35261c7", "fields": {"nom_de_la_commune": "BIERMONT", "libell_d_acheminement": "BIERMONT", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60071"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a185ea4dd4a65d2f7042a2f2a50dc0886e1b6f98", "fields": {"nom_de_la_commune": "BLACOURT", "libell_d_acheminement": "BLACOURT", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60073"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c08bed712f25efba0f5991c28ce85e056bbd9272", "fields": {"nom_de_la_commune": "BOUILLANCY", "libell_d_acheminement": "BOUILLANCY", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60091"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a5598a5c2828030aa4639fbb8ce64ffd3d787e6", "fields": {"nom_de_la_commune": "BOUVRESSE", "libell_d_acheminement": "BOUVRESSE", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60098"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10cb6234ebd69d8244bee951593565cc10aa08d0", "fields": {"nom_de_la_commune": "BREGY", "libell_d_acheminement": "BREGY", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60101"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b1ef70f5a8bea55a7a4e86759d38b766709f22e", "fields": {"nom_de_la_commune": "BREUIL LE VERT", "libell_d_acheminement": "BREUIL LE VERT", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60107"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbadfe523fee82ad984e518ccf43474187ed366e", "fields": {"nom_de_la_commune": "CATIGNY", "libell_d_acheminement": "CATIGNY", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60132"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccae5e163f90e111c2fcc43e0d3d70ca86aa0abf", "fields": {"nom_de_la_commune": "CATILLON FUMECHON", "libell_d_acheminement": "CATILLON FUMECHON", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60133"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97efe8ee1495560e93b023c9fe29fe4c309d4641", "fields": {"nom_de_la_commune": "CHAMBORS", "libell_d_acheminement": "CHAMBORS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60140"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297c4d6a5557997ede530608b66cf0964071dffd", "fields": {"nom_de_la_commune": "LA CHAPELLE EN SERVAL", "libell_d_acheminement": "LA CHAPELLE EN SERVAL", "code_postal": "60520", "coordonnees_gps": [49.1470921709, 2.55054405119], "code_commune_insee": "60142"}, "geometry": {"type": "Point", "coordinates": [2.55054405119, 49.1470921709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b410b3ecdc4921fcbb65920ef0de49e4a84b19", "fields": {"nom_de_la_commune": "CHAVENCON", "libell_d_acheminement": "CHAVENCON", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60144"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a70e0e61ca0fdd1fca806a0d5fcca8adc4eea5e", "fields": {"nom_de_la_commune": "CHEPOIX", "libell_d_acheminement": "CHEPOIX", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60146"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e44374a6a68d389bea321ad83433cfd6c315be4", "fields": {"nom_de_la_commune": "CHOQUEUSE LES BENARDS", "libell_d_acheminement": "CHOQUEUSE LES BENARDS", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60153"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a1170226b61f6222d5f52a9b4bd65970a414dc4", "fields": {"nom_de_la_commune": "COMPIEGNE", "libell_d_acheminement": "COMPIEGNE", "code_postal": "60200", "coordonnees_gps": [49.3992378489, 2.8537782842], "code_commune_insee": "60159"}, "geometry": {"type": "Point", "coordinates": [2.8537782842, 49.3992378489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0176281cd90e42bacf29bb54f5bbaa1ea29d00f6", "fields": {"nom_de_la_commune": "LE COUDRAY ST GERMER", "libell_d_acheminement": "LE COUDRAY ST GERMER", "code_postal": "60850", "coordonnees_gps": [49.4183231211, 1.8058971314], "code_commune_insee": "60164"}, "geometry": {"type": "Point", "coordinates": [1.8058971314, 49.4183231211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d03a8bc986bd8ec2fb80face1af7e316a2c5807b", "fields": {"nom_de_la_commune": "LE COUDRAY SUR THELLE", "libell_d_acheminement": "LE COUDRAY SUR THELLE", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60165"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7973a02b49e52847fad47a16f11e28a8ea89fb0", "fields": {"nom_de_la_commune": "COULOISY", "libell_d_acheminement": "COULOISY", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60167"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c8685b201a5807a864beb9bc268a425da2588f6", "fields": {"nom_de_la_commune": "COURTIEUX", "libell_d_acheminement": "COURTIEUX", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60171"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1acf9d045bbd972a84a6462df07fc2b941c8b9df", "fields": {"nom_de_la_commune": "CREIL", "libell_d_acheminement": "CREIL", "code_postal": "60100", "coordonnees_gps": [49.2528803702, 2.48402017104], "code_commune_insee": "60175"}, "geometry": {"type": "Point", "coordinates": [2.48402017104, 49.2528803702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fee3a727bb1cc7fbe64fa76df65662cb962faf4", "fields": {"nom_de_la_commune": "CROISSY SUR CELLE", "libell_d_acheminement": "CROISSY SUR CELLE", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60183"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9daf38700640264e249f029eb0f8b23458b3e4e9", "fields": {"nom_de_la_commune": "CUIGNIERES", "libell_d_acheminement": "CUIGNIERES", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60186"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1444623c164df6e7fe80a287c7113d61d334f899", "fields": {"nom_de_la_commune": "CUVILLY", "libell_d_acheminement": "CUVILLY", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60191"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319bc816fd209df663286f9d202962dfe1e315a9", "fields": {"nom_de_la_commune": "DUVY", "libell_d_acheminement": "DUVY", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60203"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "898ff1fb17f63675b1c502d78fefdac31d7a0738", "fields": {"nom_de_la_commune": "EPINEUSE", "libell_d_acheminement": "EPINEUSE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60210"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acc8c067dfd7f07cb0601de8faf9538ba8a7ccc6", "fields": {"nom_de_la_commune": "ESCHES", "libell_d_acheminement": "ESCHES", "code_postal": "60110", "coordonnees_gps": [49.232969162, 2.13061952998], "code_commune_insee": "60218"}, "geometry": {"type": "Point", "coordinates": [2.13061952998, 49.232969162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fcc557b24c8a65aa792643c62e7dc04e7068484", "fields": {"nom_de_la_commune": "EVRICOURT", "libell_d_acheminement": "EVRICOURT", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60227"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef93d5237694778e6e91bd972f89a937e71a6d48", "fields": {"nom_de_la_commune": "FAY LES ETANGS", "libell_d_acheminement": "FAY LES ETANGS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60228"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb0edf40e58094a3510b59c9b2bbc10556b6110", "fields": {"nom_de_la_commune": "FEIGNEUX", "libell_d_acheminement": "FEIGNEUX", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60231"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dd9d2570625cd5c8b1014630da9ac53fae6f39c", "fields": {"nom_de_la_commune": "FLAVY LE MELDEUX", "libell_d_acheminement": "FLAVY LE MELDEUX", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60236"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb402de08883a359a7e0ce29ae9e319b62a266c", "fields": {"nom_de_la_commune": "FORMERIE", "libell_d_acheminement": "FORMERIE", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60245"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8da46944762679a1d02e32e8ab36c3a37db862ad", "fields": {"nom_de_la_commune": "FOUILLOY", "libell_d_acheminement": "FOUILLOY", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60248"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a19cdd3983fe25a1313fc0670b0decaebddec4b1", "fields": {"nom_de_la_commune": "FOURNIVAL", "libell_d_acheminement": "FOURNIVAL", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60252"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6deac1bb3a37d3165fc21b3daf8a79f8d1bcbb26", "fields": {"nom_de_la_commune": "GAUDECHART", "libell_d_acheminement": "GAUDECHART", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60269"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d71341d5be9535a0b2bad6480c0a7e74c9953eea", "fields": {"nom_de_la_commune": "GILOCOURT", "libell_d_acheminement": "GILOCOURT", "code_postal": "60129", "coordonnees_gps": [49.2970523686, 2.864136269], "code_commune_insee": "60272"}, "geometry": {"type": "Point", "coordinates": [2.864136269, 49.2970523686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69df2a42c6dca3bd1257b9b2e4ee2fa1b7a6aa9", "fields": {"nom_de_la_commune": "GOUY LES GROSEILLERS", "libell_d_acheminement": "GOUY LES GROSEILLERS", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60283"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6771b9aa63f2cf1cefbe5e34f1a890d835d837e", "fields": {"nom_de_la_commune": "GREZ", "libell_d_acheminement": "GREZ", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60289"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64495a4f6039b77b2f40ff0813ddab1f27c4346a", "fields": {"nom_de_la_commune": "HAINVILLERS", "libell_d_acheminement": "HAINVILLERS", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60294"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9773ec306099a889cbe026c6d0ad7882d4a8e7b", "fields": {"nom_de_la_commune": "HARDIVILLERS", "libell_d_acheminement": "HARDIVILLERS", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60299"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "335e8a428c237d39fd5c8716df5df7d0e37a0514", "fields": {"nom_de_la_commune": "HENONVILLE", "libell_d_acheminement": "HENONVILLE", "code_postal": "60119", "coordonnees_gps": [49.2082498189, 2.02680448523], "code_commune_insee": "60309"}, "geometry": {"type": "Point", "coordinates": [2.02680448523, 49.2082498189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "789b2b5bc40a78e9b8b122b3af6f4da1f02f2b99", "fields": {"nom_de_la_commune": "HETOMESNIL", "libell_d_acheminement": "HETOMESNIL", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60314"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987acd35e6e0d8e1aa8bb0a418e60df0b63711b6", "fields": {"nom_de_la_commune": "HODENC L EVEQUE", "libell_d_acheminement": "HODENC L EVEQUE", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60316"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4879c2e392e400f482e3f235bc8d472690e0fa8a", "fields": {"nom_de_la_commune": "HONDAINVILLE", "libell_d_acheminement": "HONDAINVILLE", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60317"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c946304e3e7ed12e454c4af456a3ffaaf4cb89b", "fields": {"nom_de_la_commune": "JAMERICOURT", "libell_d_acheminement": "JAMERICOURT", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60322"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f3175964363c7d0eec0659c2c276ea8f7da8ea1", "fields": {"nom_de_la_commune": "JANVILLE", "libell_d_acheminement": "JANVILLE", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60323"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aedb2217534faa1eeef0e40767ec373125bf69c7", "fields": {"nom_de_la_commune": "JAUX", "libell_d_acheminement": "JAUX", "code_postal": "60880", "coordonnees_gps": [49.3809036755, 2.75739000766], "code_commune_insee": "60325"}, "geometry": {"type": "Point", "coordinates": [2.75739000766, 49.3809036755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1168712840ca2bf251d7e26563e0c9a2b5d26f0b", "fields": {"nom_de_la_commune": "LABOISSIERE EN THELLE", "libell_d_acheminement": "LABOISSIERE EN THELLE", "code_postal": "60570", "coordonnees_gps": [49.2740563361, 2.16701620037], "code_commune_insee": "60330"}, "geometry": {"type": "Point", "coordinates": [2.16701620037, 49.2740563361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3cee8375c45feb450a9f42372579c74229660b", "fields": {"nom_de_la_commune": "LACHAPELLE AUX POTS", "libell_d_acheminement": "LACHAPELLE AUX POTS", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60333"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "543098a57714fb6cc55e9ab15d3d7a2d863c27f2", "fields": {"nom_de_la_commune": "LACHAPELLE ST PIERRE", "libell_d_acheminement": "LACHAPELLE ST PIERRE", "code_postal": "60730", "coordonnees_gps": [49.2849598013, 2.24410446166], "code_commune_insee": "60334"}, "geometry": {"type": "Point", "coordinates": [2.24410446166, 49.2849598013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be0acb6b04f94cb719af6e73fdfa6a595c1a4225", "fields": {"nom_de_la_commune": "LAFRAYE", "libell_d_acheminement": "LAFRAYE", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60339"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218423f00c3ae41ad3b2e54a555fe117b5a51ec8", "fields": {"nom_de_la_commune": "LAMORLAYE", "libell_d_acheminement": "LAMORLAYE", "code_postal": "60260", "coordonnees_gps": [49.1601603194, 2.4189700047], "code_commune_insee": "60346"}, "geometry": {"type": "Point", "coordinates": [2.4189700047, 49.1601603194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e14d24c75207fe58f8b7dceab26463106db0a55", "fields": {"nom_de_la_commune": "LAVACQUERIE", "libell_d_acheminement": "LAVACQUERIE", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60353"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805a4a822b0256dd9bbcef5d81abdbe0d808cb25", "fields": {"nom_de_la_commune": "LAVERRIERE", "libell_d_acheminement": "LAVERRIERE", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60354"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c136fbeee9ec94d01fe1eda5b94f39d2e9bc668", "fields": {"nom_de_la_commune": "LEVIGNEN", "libell_d_acheminement": "LEVIGNEN", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60358"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91e1c3af488e9e799ac4edd7c5aa555f06f1e37", "fields": {"nom_de_la_commune": "LOCONVILLE", "libell_d_acheminement": "LOCONVILLE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60367"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35a990279b710bc9166ec9845560cd08a61cbeb3", "fields": {"nom_de_la_commune": "LONGUEIL ANNEL", "libell_d_acheminement": "LONGUEIL ANNEL", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60368"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4652d06897642fa34d4f76209751bc3d86ebf79", "fields": {"nom_de_la_commune": "LONGUEIL STE MARIE", "libell_d_acheminement": "LONGUEIL STE MARIE", "code_postal": "60126", "coordonnees_gps": [49.3411887466, 2.71608141162], "code_commune_insee": "60369"}, "geometry": {"type": "Point", "coordinates": [2.71608141162, 49.3411887466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "483ec81ec4659d2b0bcde291a99c021e8a81ea17", "fields": {"nom_de_la_commune": "MAISONCELLE TUILERIE", "libell_d_acheminement": "MAISONCELLE TUILERIE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60377"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8530306e833fc163054f64f2cb0ade36400b9380", "fields": {"nom_de_la_commune": "MARGNY AUX CERISES", "libell_d_acheminement": "MARGNY AUX CERISES", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60381"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975907aa18783078f574e5e8e481f30d4c039c66", "fields": {"nom_de_la_commune": "MAROLLES", "libell_d_acheminement": "MAROLLES", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60385"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b70723d4b22dccca815c06e1390e275f2429474", "fields": {"nom_de_la_commune": "MAULERS", "libell_d_acheminement": "MAULERS", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60390"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c0ae5abd1ffef4e4a07c174353deda616d7dfd", "fields": {"nom_de_la_commune": "BUFFARD", "libell_d_acheminement": "BUFFARD", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25098"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9aeb4a703076630d57395f202d17feeb75768e9", "fields": {"nom_de_la_commune": "BUGNY", "libell_d_acheminement": "BUGNY", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25099"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2257dae885edef3967eff60ff34bfad91a2633c4", "fields": {"nom_de_la_commune": "BURGILLE", "libell_d_acheminement": "BURGILLE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25101"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c150f252db5afaa6886df18d83802c679bee272", "fields": {"nom_de_la_commune": "BUSY", "libell_d_acheminement": "BUSY", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25103"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d3b08e27920b600e145b263ce110ea2b8219f8", "fields": {"nom_de_la_commune": "CENDREY", "libell_d_acheminement": "CENDREY", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25107"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a835e1545e4046e832892723c787bd65e57789c6", "fields": {"nom_de_la_commune": "CHALEZE", "libell_d_acheminement": "CHALEZE", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25111"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5376490b1f0bf9aa244e53a3eeb1658421a5a5f", "fields": {"nom_de_la_commune": "CHANTRANS", "libell_d_acheminement": "CHANTRANS", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25120"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3316794e05ffa55922bcd522309e23c88667a890", "fields": {"nom_de_la_commune": "CHARQUEMONT", "libell_d_acheminement": "CHARQUEMONT", "code_postal": "25140", "coordonnees_gps": [47.193428851, 6.81794567647], "code_commune_insee": "25127"}, "geometry": {"type": "Point", "coordinates": [6.81794567647, 47.193428851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0f390851549ddc1b6628a96bf40459c51a97e7a", "fields": {"code_postal": "25140", "code_commune_insee": "25127", "libell_d_acheminement": "CHARQUEMONT", "ligne_5": "LE BOULOIS", "nom_de_la_commune": "CHARQUEMONT", "coordonnees_gps": [47.193428851, 6.81794567647]}, "geometry": {"type": "Point", "coordinates": [6.81794567647, 47.193428851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cec82007faaba0b160f674e9e83dce3a4323e37", "fields": {"nom_de_la_commune": "CHATILLON GUYOTTE", "libell_d_acheminement": "CHATILLON GUYOTTE", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25132"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eae5b7f6f945c7d177edfcab87c46f69ad5b0a10", "fields": {"nom_de_la_commune": "CHAUCENNE", "libell_d_acheminement": "CHAUCENNE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25136"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc7aa26f8753e5a734a70b4c95ab4581ce01060", "fields": {"nom_de_la_commune": "CHAY", "libell_d_acheminement": "CHAY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25143"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc724e1d0a4f5c31eb2602d7c33b4cf05700ca3d", "fields": {"nom_de_la_commune": "LA CHENALOTTE", "libell_d_acheminement": "LA CHENALOTTE", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25148"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b7600d7237e0e4f61e3779186e66eca6c350ea0", "fields": {"nom_de_la_commune": "CHENECEY BUILLON", "libell_d_acheminement": "CHENECEY BUILLON", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25149"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7882dd51d8d8bd9ab387f0c33eb46037a88502b8", "fields": {"nom_de_la_commune": "LA CLUSE ET MIJOUX", "libell_d_acheminement": "LA CLUSE ET MIJOUX", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25157"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40e6d6e1a6fbb6b67e8304cd1a0616ce9f365c23", "fields": {"nom_de_la_commune": "COLOMBIER FONTAINE", "libell_d_acheminement": "COLOMBIER FONTAINE", "code_postal": "25260", "coordonnees_gps": [47.456571306, 6.67036104248], "code_commune_insee": "25159"}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92e9e521dcc9caaa229722e756d730a44f64139c", "fields": {"nom_de_la_commune": "COTEBRUNE", "libell_d_acheminement": "COTEBRUNE", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25166"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7315a5fa19b17cfa29e2129fb83fb7b886745b57", "fields": {"nom_de_la_commune": "COURTEFONTAINE", "libell_d_acheminement": "COURTEFONTAINE", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25174"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49bf921f16c007321596c535525e3c4db710ceb9", "fields": {"nom_de_la_commune": "DAMBENOIS", "libell_d_acheminement": "DAMBENOIS", "code_postal": "25600", "coordonnees_gps": [47.5315026095, 6.85354062275], "code_commune_insee": "25188"}, "geometry": {"type": "Point", "coordinates": [6.85354062275, 47.5315026095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469b6601f6ec2d7710e97277e6aa0399e7037380", "fields": {"nom_de_la_commune": "DAMMARTIN LES TEMPLIERS", "libell_d_acheminement": "DAMMARTIN LES TEMPLIERS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25189"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbefab0cb72052b38d3aaebb77844769f663727c", "fields": {"nom_de_la_commune": "DASLE", "libell_d_acheminement": "DASLE", "code_postal": "25230", "coordonnees_gps": [47.458852927, 6.88062444955], "code_commune_insee": "25196"}, "geometry": {"type": "Point", "coordinates": [6.88062444955, 47.458852927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "606ed0ada33a290b68e558787f3dc96e2d6ecfe5", "fields": {"nom_de_la_commune": "DOMPIERRE LES TILLEULS", "libell_d_acheminement": "DOMPIERRE LES TILLEULS", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25202"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b260a66c04915c75bc29d1bac81bee8e9f14ea5", "fields": {"nom_de_la_commune": "LES ECORCES", "libell_d_acheminement": "LES ECORCES", "code_postal": "25140", "coordonnees_gps": [47.193428851, 6.81794567647], "code_commune_insee": "25213"}, "geometry": {"type": "Point", "coordinates": [6.81794567647, 47.193428851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b3dd74ff057c9fbbeaee553e4294a6316ccb47", "fields": {"nom_de_la_commune": "EMAGNY", "libell_d_acheminement": "EMAGNY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25217"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eba4a6da94514a3aa27c512246c7a4884d503db3", "fields": {"code_postal": "25330", "code_commune_insee": "25223", "libell_d_acheminement": "ETERNOZ", "ligne_5": "COULANS SUR LIZON", "nom_de_la_commune": "ETERNOZ", "coordonnees_gps": [47.0294541279, 6.08005639292]}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8c2065568a11287573113c33b05373e260a75d6", "fields": {"nom_de_la_commune": "ETOUVANS", "libell_d_acheminement": "ETOUVANS", "code_postal": "25260", "coordonnees_gps": [47.456571306, 6.67036104248], "code_commune_insee": "25224"}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d529068f42b46f9a25ee1bf3a17a5b8524255023", "fields": {"nom_de_la_commune": "ETRABONNE", "libell_d_acheminement": "ETRABONNE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25225"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b54b10dfc31d19623aa86ea330336e78bd40c669", "fields": {"nom_de_la_commune": "EXINCOURT", "libell_d_acheminement": "EXINCOURT", "code_postal": "25400", "coordonnees_gps": [47.488209741, 6.84586139131], "code_commune_insee": "25230"}, "geometry": {"type": "Point", "coordinates": [6.84586139131, 47.488209741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064c652dd455a2aa4b4fd9d99fbe6afdf37d8552", "fields": {"nom_de_la_commune": "FERTANS", "libell_d_acheminement": "FERTANS", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25236"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57f43971b3323121e9ba29b74049e9acce58d79", "fields": {"nom_de_la_commune": "FLAGEY", "libell_d_acheminement": "FLAGEY", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25241"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1ac6eb66981b73a584049c0f06c585e52bd14fb", "fields": {"nom_de_la_commune": "FLANGEBOUCHE", "libell_d_acheminement": "FLANGEBOUCHE", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25243"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08edecb043e13cb0d8f799d04eb1f83b071f808d", "fields": {"nom_de_la_commune": "FONTAIN", "libell_d_acheminement": "FONTAIN", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25245"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e81eff8627e7b0d1912a9b8331eddb159b2168c", "fields": {"nom_de_la_commune": "FOURCATIER ET MAISON NEUVE", "libell_d_acheminement": "FOURCATIER ET MAISON NEUVE", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25252"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b83b1bad2f00f1cdbb5733e4ad0d0f7faf63d954", "fields": {"nom_de_la_commune": "FRASNE", "libell_d_acheminement": "FRASNE", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25259"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888b1e6485d50572636704001ff751effb889c21", "fields": {"nom_de_la_commune": "GELLIN", "libell_d_acheminement": "GELLIN", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25263"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3dd5f7348b44b4bf54859a0adb08b46018935a9", "fields": {"nom_de_la_commune": "GENEUILLE", "libell_d_acheminement": "GENEUILLE", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25265"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09adbd1d1e130c3765903865867086ea69f73dda", "fields": {"nom_de_la_commune": "GERMEFONTAINE", "libell_d_acheminement": "GERMEFONTAINE", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25268"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65aca60b1588893863afe16ecc239b4d80f61f61", "fields": {"nom_de_la_commune": "GERMONDANS", "libell_d_acheminement": "GERMONDANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25269"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e80c39a68eacabd40f1277d93b39076e827901f", "fields": {"nom_de_la_commune": "GILLEY", "libell_d_acheminement": "GILLEY", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25271"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89e8b73737a83defac4d29f087ff4ecffb714671", "fields": {"nom_de_la_commune": "GLAY", "libell_d_acheminement": "GLAY", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25274"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af41aa1f96d211e9d58218ae5f893c7cfb78dcbe", "fields": {"nom_de_la_commune": "GONSANS", "libell_d_acheminement": "GONSANS", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25278"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1eb9242900d1da4419f1663835de6f5fe3acbf0", "fields": {"nom_de_la_commune": "GRAND COMBE CHATELEU", "libell_d_acheminement": "GRAND COMBE CHATELEU", "code_postal": "25570", "coordonnees_gps": [47.0162100758, 6.56050756599], "code_commune_insee": "25285"}, "geometry": {"type": "Point", "coordinates": [6.56050756599, 47.0162100758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc0a6c3dde622222dde49f78285685b373a1f4e", "fields": {"nom_de_la_commune": "LES GRAS", "libell_d_acheminement": "LES GRAS", "code_postal": "25790", "coordonnees_gps": [46.9877227671, 6.54041107345], "code_commune_insee": "25296"}, "geometry": {"type": "Point", "coordinates": [6.54041107345, 46.9877227671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0c935da96c89e0de5ee058b6d7fe447cb27f40", "fields": {"nom_de_la_commune": "LES HOPITAUX VIEUX", "libell_d_acheminement": "LES HOPITAUX VIEUX", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25308"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "491d95febfd9d6cb69a4232184efdf8b20ef4407", "fields": {"nom_de_la_commune": "HUANNE MONTMARTIN", "libell_d_acheminement": "HUANNE MONTMARTIN", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25310"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d5ca8880e17fac86dc2449a407d06ee5dd8dc76", "fields": {"nom_de_la_commune": "HYEVRE PAROISSE", "libell_d_acheminement": "HYEVRE PAROISSE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25313"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04e619ad10405f511754a71017733df8ff6ba31", "fields": {"nom_de_la_commune": "JOUGNE", "libell_d_acheminement": "JOUGNE", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25318"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd9c6becd3ac45fbec954852cbefb3403f12b61", "fields": {"nom_de_la_commune": "LAISSEY", "libell_d_acheminement": "LAISSEY", "code_postal": "25820", "coordonnees_gps": [47.3002732154, 6.22746805322], "code_commune_insee": "25323"}, "geometry": {"type": "Point", "coordinates": [6.22746805322, 47.3002732154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c4b8a2363eb64f7433c286c292ca96e4cee1d56", "fields": {"nom_de_la_commune": "LANANS", "libell_d_acheminement": "LANANS", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25324"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c27e5c6e407f34f3c1de0d403bfd1814df179c", "fields": {"nom_de_la_commune": "LANTHENANS", "libell_d_acheminement": "LANTHENANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25327"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94acffd8c6a4cdd5eb02d15979fdd6f55dd259fa", "fields": {"nom_de_la_commune": "LAVANS VUILLAFANS", "libell_d_acheminement": "LAVANS VUILLAFANS", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25331"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "197504b021dbc6ceb9186978cb23824d03d938e8", "fields": {"code_postal": "25270", "code_commune_insee": "25334", "libell_d_acheminement": "LEVIER", "ligne_5": "GRANGES MAILLOT", "nom_de_la_commune": "LEVIER", "coordonnees_gps": [46.9453479853, 6.08965158553]}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817a9228f763148881d10f8d0f56164557316286", "fields": {"nom_de_la_commune": "LIESLE", "libell_d_acheminement": "LIESLE", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25336"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eeb035e0469716a5d58a415803680ccb1f3376b", "fields": {"nom_de_la_commune": "LONGEVELLE SUR DOUBS", "libell_d_acheminement": "LONGEVELLE SUR DOUBS", "code_postal": "25260", "coordonnees_gps": [47.456571306, 6.67036104248], "code_commune_insee": "25345"}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cf37c45ba10a72686c7b98463efbaf73585862f", "fields": {"nom_de_la_commune": "LOUGRES", "libell_d_acheminement": "LOUGRES", "code_postal": "25260", "coordonnees_gps": [47.456571306, 6.67036104248], "code_commune_insee": "25350"}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3bb1d1cda1fde5ad75508a99d6d7c6741b2ed88", "fields": {"nom_de_la_commune": "LE LUHIER", "libell_d_acheminement": "LE LUHIER", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25351"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a65fbe181e14d52366fb87a8de5e3cc42eacdc", "fields": {"nom_de_la_commune": "MANCENANS LIZERNE", "libell_d_acheminement": "MANCENANS LIZERNE", "code_postal": "25120", "coordonnees_gps": [47.2517789005, 6.78722407898], "code_commune_insee": "25366"}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd0d0cf754066c6e7706baeffd54f4c466571d5a", "fields": {"nom_de_la_commune": "MANDEURE", "libell_d_acheminement": "MANDEURE", "code_postal": "25350", "coordonnees_gps": [47.4325059101, 6.81027856127], "code_commune_insee": "25367"}, "geometry": {"type": "Point", "coordinates": [6.81027856127, 47.4325059101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e4051de49c79a077371c3f8da228f85d4aa765b", "fields": {"nom_de_la_commune": "MARCHAUX", "libell_d_acheminement": "MARCHAUX", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25368"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e7d947328f3e43b8bb6ea12b264ecf7c01c384", "fields": {"nom_de_la_commune": "MARVELISE", "libell_d_acheminement": "MARVELISE", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25369"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85add9671a55d8eb7d95ac4fd8da2e6eac115947", "fields": {"nom_de_la_commune": "MERCEY LE GRAND", "libell_d_acheminement": "MERCEY LE GRAND", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25374"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db94e7c8efe32ce7c2bfa8149d3df825164bd29", "fields": {"nom_de_la_commune": "MEREY SOUS MONTROND", "libell_d_acheminement": "MEREY SOUS MONTROND", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25375"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "085cd7510ef8f5f0f6feddabc703853bbe662f6e", "fields": {"nom_de_la_commune": "MONTAGNEY SERVIGNEY", "libell_d_acheminement": "MONTAGNEY SERVIGNEY", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25385"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69d50feb44fdd990f1fe28bb31d1aa651c56b827", "fields": {"nom_de_la_commune": "MONTBELIARDOT", "libell_d_acheminement": "MONTBELIARDOT", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25389"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a68bcd5984fe921c2064cb775674beb8729c42bb", "fields": {"nom_de_la_commune": "MONTECHEROUX", "libell_d_acheminement": "MONTECHEROUX", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25393"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4381ec71789c662041b4eca1b6fbfd55ea20b960", "fields": {"nom_de_la_commune": "MONTJOIE LE CHATEAU", "libell_d_acheminement": "MONTJOIE LE CHATEAU", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25402"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b6d276c8171001e29c91f60b600db6964a8f0e", "fields": {"nom_de_la_commune": "MYON", "libell_d_acheminement": "MYON", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25416"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1ebce53dbd6bd587b705a2f51ba95da6bc94790", "fields": {"nom_de_la_commune": "NANCRAY", "libell_d_acheminement": "NANCRAY", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25418"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5caafa1f4720d03a0c08dc790fd84b5f966222e2", "fields": {"nom_de_la_commune": "NARBIEF", "libell_d_acheminement": "NARBIEF", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25421"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743c84105814b22a75629ab697de8cd7c11da528", "fields": {"nom_de_la_commune": "NEUCHATEL URTIERE", "libell_d_acheminement": "NEUCHATEL URTIERE", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25422"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cc6f2b2442426d6a3a32337974b35f78d0daac0", "fields": {"code_postal": "25580", "code_commune_insee": "25424", "libell_d_acheminement": "LES PREMIERS SAPINS", "ligne_5": "HAUTEPIERRE LE CHATELET", "nom_de_la_commune": "LES PREMIERS SAPINS", "coordonnees_gps": [47.1244467282, 6.26910894266]}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "644505ca5614ece3315db34ec2e8a4808acc0f51", "fields": {"nom_de_la_commune": "NOIRONTE", "libell_d_acheminement": "NOIRONTE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25427"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd9076381e63eb5fddc92cec76e8d1b1ee00b8c", "fields": {"nom_de_la_commune": "ORGEANS BLANCHEFONTAINE", "libell_d_acheminement": "ORGEANS BLANCHEFONTAINE", "code_postal": "25120", "coordonnees_gps": [47.2517789005, 6.78722407898], "code_commune_insee": "25433"}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "692a604b78ae7b60decc9785ebf8398d7a72f89c", "fields": {"code_postal": "25620", "code_commune_insee": "25434", "libell_d_acheminement": "ORNANS", "ligne_5": "BONNEVAUX LE PRIEURE", "nom_de_la_commune": "ORNANS", "coordonnees_gps": [47.1496172493, 6.14926775628]}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00f5609e95d00f509d6979c43e8e7421864f821", "fields": {"nom_de_la_commune": "OSSELLE ROUTELLE", "libell_d_acheminement": "OSSELLE ROUTELLE", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25438"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0b8cb446e6092b51753006b0b0c80aad0f5a3e0", "fields": {"code_postal": "25410", "code_commune_insee": "25438", "libell_d_acheminement": "OSSELLE ROUTELLE", "ligne_5": "ROUTELLE", "nom_de_la_commune": "OSSELLE ROUTELLE", "coordonnees_gps": [47.1860285519, 5.82335931135]}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4174b4d0935d2e01f88c658e9a71faee11eb869a", "fields": {"nom_de_la_commune": "PASSAVANT", "libell_d_acheminement": "PASSAVANT", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25446"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd41ba66dfba37e16e3f97ceb283e7392a6cc971", "fields": {"nom_de_la_commune": "PONT DE ROIDE VERMONDANS", "libell_d_acheminement": "PONT DE ROIDE VERMONDANS", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25463"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b36edab88a13d0e7aef513a53540a99289debc9", "fields": {"nom_de_la_commune": "POULIGNEY LUSANS", "libell_d_acheminement": "POULIGNEY LUSANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25468"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5799392ca2fd2ee4b8a4e356b6e2576cea66209", "fields": {"nom_de_la_commune": "PRESENTEVILLERS", "libell_d_acheminement": "PRESENTEVILLERS", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25469"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "054fafd5dc35799825070cce349ff10464e53859", "fields": {"nom_de_la_commune": "RECOLOGNE", "libell_d_acheminement": "RECOLOGNE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25482"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5eb4fc5163a569c8a45ec7e7536407f86cb79ab", "fields": {"nom_de_la_commune": "ROGNON", "libell_d_acheminement": "ROGNON", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25498"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb35e27e22e601644b073066f0226c157fb2d9b", "fields": {"nom_de_la_commune": "ROUGEMONT", "libell_d_acheminement": "ROUGEMONT", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25505"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aecdbed1e2a2fd04a1bb3fcc1f5a7fe4d4303b5", "fields": {"nom_de_la_commune": "ST JUAN", "libell_d_acheminement": "ST JUAN", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25520"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da43158643fc3291de879eafb36bc1b7c227c388", "fields": {"nom_de_la_commune": "ST JULIEN LES RUSSEY", "libell_d_acheminement": "ST JULIEN LES RUSSEY", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25522"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "514056a7a373766cc451c7a37c75e3d3a1e2d692", "fields": {"code_postal": "25260", "code_commune_insee": "25524", "libell_d_acheminement": "ST MAURICE COLOMBIER", "ligne_5": "COLOMBIER CHATELOT", "nom_de_la_commune": "ST MAURICE COLOMBIER", "coordonnees_gps": [47.456571306, 6.67036104248]}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b67a0cf420ec1b7a016f7a64b94c452c8e11a5", "fields": {"nom_de_la_commune": "STE SUZANNE", "libell_d_acheminement": "STE SUZANNE", "code_postal": "25630", "coordonnees_gps": [47.5088322071, 6.76860220893], "code_commune_insee": "25526"}, "geometry": {"type": "Point", "coordinates": [6.76860220893, 47.5088322071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8885431c177350c437f1e2ba14f11f456dff07", "fields": {"nom_de_la_commune": "SAUVAGNEY", "libell_d_acheminement": "SAUVAGNEY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25536"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80cec22094ee788d4eabfd7d1b28cdd7c4fbea93", "fields": {"nom_de_la_commune": "SECHIN", "libell_d_acheminement": "SECHIN", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25538"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f46aceb231fadff071d866e0d0db7e93ba15b71", "fields": {"nom_de_la_commune": "SILLEY BLEFOND", "libell_d_acheminement": "SILLEY BLEFOND", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25546"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9eab71dbfbda1e1cd561693051be004409fa3ca", "fields": {"nom_de_la_commune": "SOLEMONT", "libell_d_acheminement": "SOLEMONT", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25548"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0044fa4da5d9ed55f0b211dac3978413f3f0cc28", "fields": {"nom_de_la_commune": "SOULCE CERNAY", "libell_d_acheminement": "SOULCE CERNAY", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25551"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8da52a681ab0c253fdcea78ce08f42ecb6b5a38e", "fields": {"nom_de_la_commune": "TALLENAY", "libell_d_acheminement": "TALLENAY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25557"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a7b6d60cf1c74a68f7c3fff768ad510f84b751", "fields": {"nom_de_la_commune": "THULAY", "libell_d_acheminement": "THULAY", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25562"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da2e9a7ab6b638fd8fa1dac43944d73d5f3bf0f9", "fields": {"nom_de_la_commune": "THUREY LE MONT", "libell_d_acheminement": "THUREY LE MONT", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25563"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3007bb7a4169791d2eb00d70ceb02f87621a9a5", "fields": {"nom_de_la_commune": "VAL DE ROULANS", "libell_d_acheminement": "VAL DE ROULANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25579"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63bb4b208a1e30832f4d0384816bad05d1ce45b", "fields": {"nom_de_la_commune": "VAUCHAMPS", "libell_d_acheminement": "VAUCHAMPS", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25587"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867ae4880dd85385e660d0829ef04739da254677", "fields": {"nom_de_la_commune": "VAUX ET CHANTEGRUE", "libell_d_acheminement": "VAUX ET CHANTEGRUE", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25592"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e952f1fe804a420e4af93ae5f865695fa09248e", "fields": {"nom_de_la_commune": "VELLEROT LES VERCEL", "libell_d_acheminement": "VELLEROT LES VERCEL", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25596"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94e9e0eb2011186c93b81333c17568eb34ca0369", "fields": {"nom_de_la_commune": "VERCEL VILLEDIEU LE CAMP", "libell_d_acheminement": "VERCEL VILLEDIEU LE CAMP", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25601"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c9291b37fb6dd8f2d6b7d089a90ebfa1351dfe", "fields": {"nom_de_la_commune": "AUNAY LES BOIS", "libell_d_acheminement": "AUNAY LES BOIS", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61013"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c10075038c8f042057f63bf9baa0159b1d0ba46", "fields": {"nom_de_la_commune": "BARVILLE", "libell_d_acheminement": "BARVILLE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61026"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e09dfd650bcb6d5185828b40b9e50bbdb81fcdd6", "fields": {"nom_de_la_commune": "BAZOCHES SUR HOENE", "libell_d_acheminement": "BAZOCHES SUR HOENE", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61029"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f7fcddc3531bd918048b42446af96bd05b3286", "fields": {"nom_de_la_commune": "BELFONDS", "libell_d_acheminement": "BELFONDS", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61036"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac9e5fd7ad624b587e3281dc209be232ad8bb4d", "fields": {"nom_de_la_commune": "BELLOU LE TRICHARD", "libell_d_acheminement": "BELLOU LE TRICHARD", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61041"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "651ae0c4be0c99bb7cc7c77d69e997e72bea4cda", "fields": {"nom_de_la_commune": "BOITRON", "libell_d_acheminement": "BOITRON", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61051"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca304a23e88b83c0124efc4c812c0e8e63ef541", "fields": {"nom_de_la_commune": "BONNEFOI", "libell_d_acheminement": "BONNEFOI", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61052"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "281228046a078a5a996fb4b400072714ae284a66", "fields": {"nom_de_la_commune": "BRETHEL", "libell_d_acheminement": "BRETHEL", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61060"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e543a3094ee7ea396daeaa2a0376aad7f1557acd", "fields": {"nom_de_la_commune": "BRIEUX", "libell_d_acheminement": "BRIEUX", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61062"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e581febf36bfb11025e26abc42b45d43f4305bdc", "fields": {"nom_de_la_commune": "CANAPVILLE", "libell_d_acheminement": "CANAPVILLE", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61072"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942ea0f73e431c14f4cd6adf2142f36c7ce8aace", "fields": {"nom_de_la_commune": "ST CYR DU GAULT", "libell_d_acheminement": "ST CYR DU GAULT", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41205"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8231d32794aa90c1f0e749fd0a3be5844264c45a", "fields": {"nom_de_la_commune": "ST DENIS SUR LOIRE", "libell_d_acheminement": "ST DENIS SUR LOIRE", "code_postal": "41000", "coordonnees_gps": [47.612940364, 1.32071876619], "code_commune_insee": "41206"}, "geometry": {"type": "Point", "coordinates": [1.32071876619, 47.612940364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87dce219650f72c856f950699a74851a8bf5b1bf", "fields": {"nom_de_la_commune": "ST ETIENNE DES GUERETS", "libell_d_acheminement": "ST ETIENNE DES GUERETS", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41208"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2efff33f6f4d22806769f6d6e6606b787e796f", "fields": {"nom_de_la_commune": "STE GEMMES", "libell_d_acheminement": "STE GEMMES", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41210"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4032ffcfbad776ea9baf2835c610393f07534d53", "fields": {"nom_de_la_commune": "ST MARTIN DES BOIS", "libell_d_acheminement": "ST MARTIN DES BOIS", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41225"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d32f4e55398c181ae22601034a3c4d9dfba41e2", "fields": {"nom_de_la_commune": "ST RIMAY", "libell_d_acheminement": "ST RIMAY", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41228"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25daa3faf329ba6198daabdca79e7bca69fcf337", "fields": {"nom_de_la_commune": "SARGE SUR BRAYE", "libell_d_acheminement": "SARGE SUR BRAYE", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41235"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da79b07b7a8508b2f12927d49e8a472f2eecfe4", "fields": {"nom_de_la_commune": "SASNIERES", "libell_d_acheminement": "SASNIERES", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41236"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c4776ff49d5090ba7da9c8c6b46862815c6328", "fields": {"nom_de_la_commune": "SEILLAC", "libell_d_acheminement": "SEILLAC", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41240"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59e49899c2b067ece8ed4ec1e4a083a5105764d5", "fields": {"nom_de_la_commune": "SEUR", "libell_d_acheminement": "SEUR", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41246"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c4d1f7779324516eeb7dcb0718dd4886dc4e08a", "fields": {"nom_de_la_commune": "THEILLAY", "libell_d_acheminement": "THEILLAY", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41256"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1a2c9d2cf2bfe3018098496f9c689e5a2d970a", "fields": {"nom_de_la_commune": "TROO", "libell_d_acheminement": "TROO", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41265"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8431b159b64d5b8bbccfbf3912d2c324fcf15c4b", "fields": {"nom_de_la_commune": "VALAIRE", "libell_d_acheminement": "VALAIRE", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41266"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2c79200e5d2a20b071ffb9f4e274d552ba9cd5d", "fields": {"nom_de_la_commune": "VIEVY LE RAYE", "libell_d_acheminement": "VIEVY LE RAYE", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41273"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf511801d344705c7bcde0c27a6c0395ee8d16d", "fields": {"nom_de_la_commune": "LA VILLE AUX CLERCS", "libell_d_acheminement": "LA VILLE AUX CLERCS", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41275"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab54724d26798ae3009adea28f2924e77b5adbc9", "fields": {"nom_de_la_commune": "VILLEFRANCHE SUR CHER", "libell_d_acheminement": "VILLEFRANCHE SUR CHER", "code_postal": "41200", "coordonnees_gps": [47.3811514911, 1.76608679793], "code_commune_insee": "41280"}, "geometry": {"type": "Point", "coordinates": [1.76608679793, 47.3811514911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de1a0093e655b0aee5cc66307003383f76c8a53", "fields": {"nom_de_la_commune": "VILLEHERVIERS", "libell_d_acheminement": "VILLEHERVIERS", "code_postal": "41200", "coordonnees_gps": [47.3811514911, 1.76608679793], "code_commune_insee": "41282"}, "geometry": {"type": "Point", "coordinates": [1.76608679793, 47.3811514911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e08b7e9d900d7f1a65b9ee4121048d3c6efb6dff", "fields": {"nom_de_la_commune": "VILLENY", "libell_d_acheminement": "VILLENY", "code_postal": "41220", "coordonnees_gps": [47.6522187818, 1.66627730575], "code_commune_insee": "41285"}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f36366eb72edc5995bce3b0bd4f87b881d10e6", "fields": {"nom_de_la_commune": "VILLEPORCHER", "libell_d_acheminement": "VILLEPORCHER", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41286"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ff2d50698111e4d77770af3cb75d0d5224daa1", "fields": {"nom_de_la_commune": "VILLERABLE", "libell_d_acheminement": "VILLERABLE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41287"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "726690f9afe1a395110e5c5129964099ca4e4ffc", "fields": {"nom_de_la_commune": "VILLERMAIN", "libell_d_acheminement": "VILLERMAIN", "code_postal": "41240", "coordonnees_gps": [47.883516552, 1.48678396082], "code_commune_insee": "41289"}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55b249b8fe397f0b503cd86d0409d7808548b45e", "fields": {"nom_de_la_commune": "ARTHUN", "libell_d_acheminement": "ARTHUN", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42009"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e61949d0a88bdd59a51777a8f8f5c7b5fb874432", "fields": {"nom_de_la_commune": "AVEIZIEUX", "libell_d_acheminement": "AVEIZIEUX", "code_postal": "42330", "coordonnees_gps": [45.5836134512, 4.32526364645], "code_commune_insee": "42010"}, "geometry": {"type": "Point", "coordinates": [4.32526364645, 45.5836134512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea4498cf9ece162aab7d5b422118788fd644299a", "fields": {"nom_de_la_commune": "BOURG ARGENTAL", "libell_d_acheminement": "BOURG ARGENTAL", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42023"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7704843c8cd8b308318e4a2ff9d1f9af63ca0037", "fields": {"nom_de_la_commune": "LE CERGNE", "libell_d_acheminement": "LE CERGNE", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42033"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4556ac6ddad6c28ed1b8199219d137c13cfa13", "fields": {"nom_de_la_commune": "CEZAY", "libell_d_acheminement": "CEZAY", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42035"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b9282bddf8d28a65b06e491ddc5dd4aa1d7551", "fields": {"nom_de_la_commune": "CHALMAZEL JEANSAGNIERE", "libell_d_acheminement": "CHALMAZEL JEANSAGNIERE", "code_postal": "42920", "coordonnees_gps": [45.6983422849, 3.82487008798], "code_commune_insee": "42039"}, "geometry": {"type": "Point", "coordinates": [3.82487008798, 45.6983422849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd942b802e38106151fc5c7ab1530afce540dda0", "fields": {"nom_de_la_commune": "CHAMBEON", "libell_d_acheminement": "CHAMBEON", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42041"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e752d2cc8d26b46216450eb402f76965e748c667", "fields": {"nom_de_la_commune": "CHAMPDIEU", "libell_d_acheminement": "CHAMPDIEU", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42046"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dff93038af9db1c61e8086c5de333b3f00371b2", "fields": {"nom_de_la_commune": "LA CHAPELLE VILLARS", "libell_d_acheminement": "LA CHAPELLE VILLARS", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42051"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47203bbd8c4bf7fb0f054add854445378f2a745c", "fields": {"nom_de_la_commune": "CHAZELLES SUR LYON", "libell_d_acheminement": "CHAZELLES SUR LYON", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42059"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965c707d44268bc437a82e1f2eaf0a2b33155b88", "fields": {"nom_de_la_commune": "COMBRE", "libell_d_acheminement": "COMBRE", "code_postal": "42840", "coordonnees_gps": [46.0311905207, 4.23062167861], "code_commune_insee": "42068"}, "geometry": {"type": "Point", "coordinates": [4.23062167861, 46.0311905207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d62b89a8fb90bff4f1484a094ed98df069469d16", "fields": {"nom_de_la_commune": "CREMEAUX", "libell_d_acheminement": "CREMEAUX", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42076"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eee3eeca943e8cc92a6abb6b126f51b56015781", "fields": {"nom_de_la_commune": "CUINZIER", "libell_d_acheminement": "CUINZIER", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42079"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99a02d654867a3516855fbfae21f00cc9d418586", "fields": {"nom_de_la_commune": "DANCE", "libell_d_acheminement": "DANCE", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42082"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b707d8587e9ba5bcd88b4114ccfea8f85baeca75", "fields": {"nom_de_la_commune": "DOIZIEUX", "libell_d_acheminement": "DOIZIEUX", "code_postal": "42740", "coordonnees_gps": [45.4411267885, 4.58408605646], "code_commune_insee": "42085"}, "geometry": {"type": "Point", "coordinates": [4.58408605646, 45.4411267885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0362d300acc64a9dd93e318eeb5aaa97fe642210", "fields": {"nom_de_la_commune": "ECOCHE", "libell_d_acheminement": "ECOCHE", "code_postal": "42670", "coordonnees_gps": [46.1669318835, 4.36381176292], "code_commune_insee": "42086"}, "geometry": {"type": "Point", "coordinates": [4.36381176292, 46.1669318835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2be8e24dab7156c9b43be26d88b7dca40ae6159d", "fields": {"nom_de_la_commune": "ECOTAY L OLME", "libell_d_acheminement": "ECOTAY L OLME", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42087"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c2e99aa88d9d4d9d1cccaf6d93893a08e737e5", "fields": {"nom_de_la_commune": "L ETRAT", "libell_d_acheminement": "L ETRAT", "code_postal": "42580", "coordonnees_gps": [45.4919279434, 4.38174482251], "code_commune_insee": "42092"}, "geometry": {"type": "Point", "coordinates": [4.38174482251, 45.4919279434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f19913bef4ff2de9c5801d27f9ac0fa1b270bf8", "fields": {"nom_de_la_commune": "FRAISSES", "libell_d_acheminement": "FRAISSES", "code_postal": "42490", "coordonnees_gps": [45.3844645276, 4.26055946433], "code_commune_insee": "42099"}, "geometry": {"type": "Point", "coordinates": [4.26055946433, 45.3844645276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e692edfd2d3e03196da3dc017db99c8adc5dd51c", "fields": {"nom_de_la_commune": "LA GIMOND", "libell_d_acheminement": "LA GIMOND", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42100"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6bc3bef540a8d0206b960c4a1d908cdca73888", "fields": {"nom_de_la_commune": "GRAMMOND", "libell_d_acheminement": "GRAMMOND", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42102"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca5ec3cd6cc13ad7e231782102c7a5fcb8c9c44", "fields": {"nom_de_la_commune": "GREZOLLES", "libell_d_acheminement": "GREZOLLES", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42106"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed92e9d7b2ea5327e01a534a9ab2f01dd1252ad7", "fields": {"nom_de_la_commune": "LAVIEU", "libell_d_acheminement": "LAVIEU", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42117"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc2398343a08608a0ca487c1b9113d157e89def0", "fields": {"nom_de_la_commune": "LAY", "libell_d_acheminement": "LAY", "code_postal": "42470", "coordonnees_gps": [45.9509348, 4.21878807509], "code_commune_insee": "42118"}, "geometry": {"type": "Point", "coordinates": [4.21878807509, 45.9509348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10937681f1e8a6a05a8470aaad0805af2c946fa2", "fields": {"nom_de_la_commune": "LORETTE", "libell_d_acheminement": "LORETTE", "code_postal": "42420", "coordonnees_gps": [45.5109070676, 4.58167229649], "code_commune_insee": "42123"}, "geometry": {"type": "Point", "coordinates": [4.58167229649, 45.5109070676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5b0b4f4f0a4feae252d1466e5227b106ddf58b8", "fields": {"nom_de_la_commune": "LURE", "libell_d_acheminement": "LURE", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42125"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bb58819b9bd33e64bc921cefd33cc2856e10f7d", "fields": {"nom_de_la_commune": "MARCILLY LE CHATEL", "libell_d_acheminement": "MARCILLY LE CHATEL", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42134"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dfa7b10654a6af23455fdcad0b967bd520a4d59", "fields": {"nom_de_la_commune": "MARCLOPT", "libell_d_acheminement": "MARCLOPT", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42135"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02b69fdf15ce316ec450c1cd6f540289e50bcb29", "fields": {"nom_de_la_commune": "MARCOUX", "libell_d_acheminement": "MARCOUX", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42136"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e39858cd5a7d8f9c8cf79348194fca0ce4f6e0af", "fields": {"nom_de_la_commune": "MARINGES", "libell_d_acheminement": "MARINGES", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42138"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e8dd9e740e24af3eab276a23a73390f68ec9309", "fields": {"nom_de_la_commune": "MIZERIEUX", "libell_d_acheminement": "MIZERIEUX", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42143"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28f9fcc6c394c7bf1af68c71ee98b4fc6ac8b6c4", "fields": {"nom_de_la_commune": "MONTBRISON", "libell_d_acheminement": "MONTBRISON", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42147"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb50ab4d1d727363de98da2e319a559030bba934", "fields": {"nom_de_la_commune": "NERVIEUX", "libell_d_acheminement": "NERVIEUX", "code_postal": "42510", "coordonnees_gps": [45.8327642613, 4.18646349405], "code_commune_insee": "42155"}, "geometry": {"type": "Point", "coordinates": [4.18646349405, 45.8327642613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153a7460efa47c4dbf895e7e6f85d52a4f408801", "fields": {"nom_de_la_commune": "PARIGNY", "libell_d_acheminement": "PARIGNY", "code_postal": "42120", "coordonnees_gps": [46.0189816241, 4.12010356973], "code_commune_insee": "42166"}, "geometry": {"type": "Point", "coordinates": [4.12010356973, 46.0189816241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0268406b6702d7ef6b839142142df66dfdd48b0", "fields": {"nom_de_la_commune": "REGNY", "libell_d_acheminement": "REGNY", "code_postal": "42630", "coordonnees_gps": [46.0004668112, 4.2221699814], "code_commune_insee": "42181"}, "geometry": {"type": "Point", "coordinates": [4.2221699814, 46.0004668112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9159dfc9d8a0e15abfb069305767252efbfd4f34", "fields": {"code_postal": "42300", "code_commune_insee": "42187", "libell_d_acheminement": "ROANNE", "ligne_5": "L ARSENAL", "nom_de_la_commune": "ROANNE", "coordonnees_gps": [46.0587698503, 4.05970322199]}, "geometry": {"type": "Point", "coordinates": [4.05970322199, 46.0587698503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b99fa4a2269405af671de16323d08e84e8876c3d", "fields": {"nom_de_la_commune": "ROZIER EN DONZY", "libell_d_acheminement": "ROZIER EN DONZY", "code_postal": "42810", "coordonnees_gps": [45.8037489521, 4.27356891069], "code_commune_insee": "42193"}, "geometry": {"type": "Point", "coordinates": [4.27356891069, 45.8037489521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f90339bdd129a16efd547d6a4e4ae866bb214c7f", "fields": {"nom_de_la_commune": "SAIL SOUS COUZAN", "libell_d_acheminement": "SAIL SOUS COUZAN", "code_postal": "42890", "coordonnees_gps": [45.7367322973, 3.96160108331], "code_commune_insee": "42195"}, "geometry": {"type": "Point", "coordinates": [3.96160108331, 45.7367322973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "256046b20c7a34e1d4a00dfb8fc2560129154737", "fields": {"nom_de_la_commune": "ST BARTHELEMY LESTRA", "libell_d_acheminement": "ST BARTHELEMY LESTRA", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42202"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4ad14fd1b1cc9154e760e61077ca802046d2f3", "fields": {"code_postal": "42400", "code_commune_insee": "42207", "libell_d_acheminement": "ST CHAMOND", "ligne_5": "IZIEUX", "nom_de_la_commune": "ST CHAMOND", "coordonnees_gps": [45.4701877634, 4.50203719758]}, "geometry": {"type": "Point", "coordinates": [4.50203719758, 45.4701877634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4baca67f97902670ba6af82f5884d18706583b8c", "fields": {"nom_de_la_commune": "ST CYPRIEN", "libell_d_acheminement": "ST CYPRIEN", "code_postal": "42160", "coordonnees_gps": [45.5337951598, 4.25427323721], "code_commune_insee": "42211"}, "geometry": {"type": "Point", "coordinates": [4.25427323721, 45.5337951598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "961fe2fae09e331cdd2de7186aae6b2a6981ac23", "fields": {"nom_de_la_commune": "ST DENIS SUR COISE", "libell_d_acheminement": "ST DENIS SUR COISE", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42216"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b93ff8c63fc92f21e73094380b23f05ec49a29", "fields": {"nom_de_la_commune": "ST DIDIER SUR ROCHEFORT", "libell_d_acheminement": "ST DIDIER SUR ROCHEFORT", "code_postal": "42111", "coordonnees_gps": [45.7864146517, 3.85739554907], "code_commune_insee": "42217"}, "geometry": {"type": "Point", "coordinates": [3.85739554907, 45.7864146517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dff8bc815c04d2283e646985fd8e0af55206d339", "fields": {"code_postal": "42100", "code_commune_insee": "42218", "libell_d_acheminement": "ST ETIENNE", "ligne_5": "TERRENOIRE", "nom_de_la_commune": "ST ETIENNE", "coordonnees_gps": [45.4301225907, 4.37830062526]}, "geometry": {"type": "Point", "coordinates": [4.37830062526, 45.4301225907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3b840c1515ec4326cafe3cce3da97fa32d2c223", "fields": {"nom_de_la_commune": "ST GALMIER", "libell_d_acheminement": "ST GALMIER", "code_postal": "42330", "coordonnees_gps": [45.5836134512, 4.32526364645], "code_commune_insee": "42222"}, "geometry": {"type": "Point", "coordinates": [4.32526364645, 45.5836134512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be2f621227bf9531ef3a5934d572a07ad885769", "fields": {"nom_de_la_commune": "ST GENEST MALIFAUX", "libell_d_acheminement": "ST GENEST MALIFAUX", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42224"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c18ae252ff537ec68ff613de408dc571cd05d6c", "fields": {"code_postal": "42800", "code_commune_insee": "42225", "libell_d_acheminement": "GENILAC", "ligne_5": "LA CULA", "nom_de_la_commune": "GENILAC", "coordonnees_gps": [45.5337245551, 4.60104990812]}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5b609966838a2e8b16aa542c5f75d752d9ff74", "fields": {"nom_de_la_commune": "ST GERMAIN LAVAL", "libell_d_acheminement": "ST GERMAIN LAVAL", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42230"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba9d8c10dc215300c781dbf090f7c3cd3594124c", "fields": {"nom_de_la_commune": "ST JODARD", "libell_d_acheminement": "ST JODARD", "code_postal": "42590", "coordonnees_gps": [45.9031033118, 4.13012302493], "code_commune_insee": "42241"}, "geometry": {"type": "Point", "coordinates": [4.13012302493, 45.9031033118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6acbf42e56cf035137ec0db3ed53c9947b32849", "fields": {"nom_de_la_commune": "ST JUST EN CHEVALET", "libell_d_acheminement": "ST JUST EN CHEVALET", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42248"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9e574c7de6402cab428906b0eac2c88884af031", "fields": {"nom_de_la_commune": "ST NIZIER DE FORNAS", "libell_d_acheminement": "ST NIZIER DE FORNAS", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42266"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb6d52b1825af03c4ef0f4efde44890be8175f6", "fields": {"nom_de_la_commune": "ST NIZIER SOUS CHARLIEU", "libell_d_acheminement": "ST NIZIER SOUS CHARLIEU", "code_postal": "42190", "coordonnees_gps": [46.1512797161, 4.16150779651], "code_commune_insee": "42267"}, "geometry": {"type": "Point", "coordinates": [4.16150779651, 46.1512797161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38529bf973b11beed64ef914191a60b12ea52d59", "fields": {"nom_de_la_commune": "ST PAUL D UZORE", "libell_d_acheminement": "ST PAUL D UZORE", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42269"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a357f7507799dde3a006d23be08e99f072e783f9", "fields": {"nom_de_la_commune": "ST PAUL EN CORNILLON", "libell_d_acheminement": "ST PAUL EN CORNILLON", "code_postal": "42240", "coordonnees_gps": [45.4075302894, 4.20833828623], "code_commune_insee": "42270"}, "geometry": {"type": "Point", "coordinates": [4.20833828623, 45.4075302894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1614ff09ab4dd187090cf8d15d558322e9e46b9f", "fields": {"nom_de_la_commune": "ST PAUL EN JAREZ", "libell_d_acheminement": "ST PAUL EN JAREZ", "code_postal": "42740", "coordonnees_gps": [45.4411267885, 4.58408605646], "code_commune_insee": "42271"}, "geometry": {"type": "Point", "coordinates": [4.58408605646, 45.4411267885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a88564020690086273ebf5589b99768c4cb1e02d", "fields": {"code_postal": "42170", "code_commune_insee": "42279", "libell_d_acheminement": "ST JUST ST RAMBERT", "ligne_5": "ST JUST SUR LOIRE", "nom_de_la_commune": "ST JUST ST RAMBERT", "coordonnees_gps": [45.4781366129, 4.24298529227]}, "geometry": {"type": "Point", "coordinates": [4.24298529227, 45.4781366129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb81747bcd84f8deb040bfa460cb46b79ebfbf6", "fields": {"nom_de_la_commune": "LES SALLES", "libell_d_acheminement": "LES SALLES", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42295"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3829962ab211215425d4b6dfa5bec7e853fee372", "fields": {"nom_de_la_commune": "SOLEYMIEUX", "libell_d_acheminement": "SOLEYMIEUX", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42301"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40b77c47e4ac82c1568e1ee0b0f5243750a37fd6", "fields": {"nom_de_la_commune": "URBISE", "libell_d_acheminement": "URBISE", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42317"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0a6655381edc15ce115e3e3cb3c4591c8e15291", "fields": {"nom_de_la_commune": "VERANNE", "libell_d_acheminement": "VERANNE", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42326"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b0dd4840472eb8a8ba4e53590b7a47d3441e664", "fields": {"nom_de_la_commune": "VERIN", "libell_d_acheminement": "VERIN", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42327"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13f3ab298f6cf3d91f30c7e1c01e5564e8084fd", "fields": {"nom_de_la_commune": "VERRIERES EN FOREZ", "libell_d_acheminement": "VERRIERES EN FOREZ", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42328"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8a1a48d9410839d5282d06fb2c8ee8fe4a547c1", "fields": {"nom_de_la_commune": "VOUGY", "libell_d_acheminement": "VOUGY", "code_postal": "42720", "coordonnees_gps": [46.1272697069, 4.10675684873], "code_commune_insee": "42338"}, "geometry": {"type": "Point", "coordinates": [4.10675684873, 46.1272697069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47a18ea89ae7e4e4718c70986c0a6e8f149f019", "fields": {"nom_de_la_commune": "ALLEYRAS", "libell_d_acheminement": "ALLEYRAS", "code_postal": "43580", "coordonnees_gps": [44.9273994452, 3.63004731198], "code_commune_insee": "43005"}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18d7fdf5e1086a3df702390941b2901a0258738", "fields": {"nom_de_la_commune": "ALLY", "libell_d_acheminement": "ALLY", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43006"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a738c8ee31a7c9c8277697785ad5d1f0f5c0fe3b", "fields": {"nom_de_la_commune": "AUREC SUR LOIRE", "libell_d_acheminement": "AUREC SUR LOIRE", "code_postal": "43110", "coordonnees_gps": [45.3688222347, 4.20461554973], "code_commune_insee": "43012"}, "geometry": {"type": "Point", "coordinates": [4.20461554973, 45.3688222347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9d4e4fea1b576806ebf662ebf21a2b4912940b", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43022"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ae02d957777f145cf9761b9b51cd33d254abdf", "fields": {"nom_de_la_commune": "BLESLE", "libell_d_acheminement": "BLESLE", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "43033"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ad7964c0d8201ba1734e5a485d1aa28875d2010", "fields": {"nom_de_la_commune": "BOISSET", "libell_d_acheminement": "BOISSET", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43034"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec4c5d2a3ae656802f4f3577041cb291b16bd9a", "fields": {"nom_de_la_commune": "BRUCHEVILLE", "libell_d_acheminement": "BRUCHEVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50089"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2478d3dbcd796506b34be76b33a6507161888c0c", "fields": {"nom_de_la_commune": "CAMBERNON", "libell_d_acheminement": "CAMBERNON", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50092"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "540ab3a26dfdfb0725ed688a7287e82bf5fa7a8b", "fields": {"nom_de_la_commune": "CANTELOUP", "libell_d_acheminement": "CANTELOUP", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50096"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d28c7554d333b437b9d24a052c7784b3f714f2eb", "fields": {"nom_de_la_commune": "CARENTAN LES MARAIS", "libell_d_acheminement": "CARENTAN LES MARAIS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50099"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8bc15e24b4430d4c24cb4bdebc2da1c03caae66", "fields": {"code_postal": "50320", "code_commune_insee": "50115", "libell_d_acheminement": "LE GRIPPON", "ligne_5": "CHAMPCERVON", "nom_de_la_commune": "LE GRIPPON", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1855a931d14e07164d4627029b920464da529b6", "fields": {"nom_de_la_commune": "CHAMPEAUX", "libell_d_acheminement": "CHAMPEAUX", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50117"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a68bf4037251b20d2ecd14d12a3a60917bfce7fb", "fields": {"nom_de_la_commune": "CHAVOY", "libell_d_acheminement": "CHAVOY", "code_postal": "50870", "coordonnees_gps": [48.7458565845, -1.30663914164], "code_commune_insee": "50126"}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a1fb2abe038ec3081a81512bd7fd1224dab49dd", "fields": {"code_postal": "50120", "code_commune_insee": "50129", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "ligne_5": "EQUEURDREVILLE HAINNEVILLE", "nom_de_la_commune": "CHERBOURG EN COTENTIN", "coordonnees_gps": [49.6331832109, -1.6338586934]}, "geometry": {"type": "Point", "coordinates": [-1.6338586934, 49.6331832109]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51cdbf39ebd57fcf4d0d568dc78494a532ba07aa", "fields": {"nom_de_la_commune": "CLITOURPS", "libell_d_acheminement": "CLITOURPS", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50135"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8204c1a94a52189357eff76540358401ae68f6", "fields": {"code_postal": "50330", "code_commune_insee": "50142", "libell_d_acheminement": "VICQ SUR MER", "ligne_5": "GOUBERVILLE", "nom_de_la_commune": "VICQ SUR MER", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f1f204cea9bda44ebb96be6f11c96c691f840ca", "fields": {"nom_de_la_commune": "COUDEVILLE SUR MER", "libell_d_acheminement": "COUDEVILLE SUR MER", "code_postal": "50290", "coordonnees_gps": [48.8970159466, -1.52458100267], "code_commune_insee": "50143"}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd1ca6aba6994b37067015ffcd3150e383d6989", "fields": {"nom_de_la_commune": "COULOUVRAY BOISBENATRE", "libell_d_acheminement": "COULOUVRAY BOISBENATRE", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50144"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e12703cf514ddd79dceed7fa2909fe824ba16e8", "fields": {"nom_de_la_commune": "COURTILS", "libell_d_acheminement": "COURTILS", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50146"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16db40e40600ea93a30b8b2fc55eca44c4daa371", "fields": {"nom_de_la_commune": "COUVAINS", "libell_d_acheminement": "COUVAINS", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50148"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97ebe7d1c2011fc161f5afcd4a706c84d9ad99e2", "fields": {"nom_de_la_commune": "DENNEVILLE", "libell_d_acheminement": "DENNEVILLE", "code_postal": "50580", "coordonnees_gps": [49.3440940344, -1.66617929223], "code_commune_insee": "50160"}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5679b5b2922667ddfa926a546b779cbdb15d336", "fields": {"nom_de_la_commune": "DIGULLEVILLE", "libell_d_acheminement": "DIGULLEVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50163"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7b5938536062e3a8ba9458b593ac9d3fdbea466", "fields": {"nom_de_la_commune": "DOMJEAN", "libell_d_acheminement": "DOMJEAN", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50164"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84608879f5a163fb345e8e3936567620a009cdf2", "fields": {"nom_de_la_commune": "EQUILLY", "libell_d_acheminement": "EQUILLY", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50174"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a78065973fe16159bade96640dae4638194fe953", "fields": {"nom_de_la_commune": "L ETANG BERTRAND", "libell_d_acheminement": "L ETANG BERTRAND", "code_postal": "50260", "coordonnees_gps": [49.4933087231, -1.61334140824], "code_commune_insee": "50176"}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d782df70ba62fc2539a88df8ae6c410309da1044", "fields": {"nom_de_la_commune": "FERMANVILLE", "libell_d_acheminement": "FERMANVILLE", "code_postal": "50840", "coordonnees_gps": [49.681368583, -1.45437779574], "code_commune_insee": "50178"}, "geometry": {"type": "Point", "coordinates": [-1.45437779574, 49.681368583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca1f556381c843f15db2d1d4743ed6c743aaedd", "fields": {"code_postal": "50320", "code_commune_insee": "50188", "libell_d_acheminement": "FOLLIGNY", "ligne_5": "LE MESNIL DREY", "nom_de_la_commune": "FOLLIGNY", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39e625dd5d89f5b7268be5d0c60bcb3e243534c", "fields": {"nom_de_la_commune": "FOURNEAUX", "libell_d_acheminement": "FOURNEAUX", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50192"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d866452dadde295925ed2d89e659beb468035e3", "fields": {"nom_de_la_commune": "GATHEMO", "libell_d_acheminement": "GATHEMO", "code_postal": "50150", "coordonnees_gps": [48.7316763227, -0.921013476497], "code_commune_insee": "50195"}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c135afa4b9e23995e2f1dc8c2ad6f6fa7c2b1471", "fields": {"code_postal": "50450", "code_commune_insee": "50197", "libell_d_acheminement": "GAVRAY", "ligne_5": "LE MESNIL BONANT", "nom_de_la_commune": "GAVRAY", "coordonnees_gps": [48.9111916966, -1.32149043714]}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd548688cb84b3ad043fa08bb82400e788987575", "fields": {"nom_de_la_commune": "LE HAM", "libell_d_acheminement": "LE HAM", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50227"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c8cb42d2a1a568bb9d67d0bea8504ccc439cc4f", "fields": {"nom_de_la_commune": "LA HAYE D ECTOT", "libell_d_acheminement": "LA HAYE D ECTOT", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50235"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a8777dc6cc98ca09a31bb2d11a0ce81467ebb0", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "MONTGARDON", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5996b32aea1929cec25c1a5a0bc6b48f4a44d66", "fields": {"code_postal": "50580", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "ST REMY DES LANDES", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3440940344, -1.66617929223]}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "115d6556d364b3e860cc3a614b84b58eb7a870d6", "fields": {"nom_de_la_commune": "HEAUVILLE", "libell_d_acheminement": "HEAUVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50238"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64cba5296bb4fbe9316692defd312b39da748f35", "fields": {"code_postal": "50180", "code_commune_insee": "50239", "libell_d_acheminement": "THEREVAL", "ligne_5": "HEBECREVON", "nom_de_la_commune": "THEREVAL", "coordonnees_gps": [49.1138081989, -1.15891000484]}, "geometry": {"type": "Point", "coordinates": [-1.15891000484, 49.1138081989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfccedb4ea2c487c41f8f73f48c96489cfc7c1c4", "fields": {"nom_de_la_commune": "HIESVILLE", "libell_d_acheminement": "HIESVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50246"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93b7a10f764f56005784f409e059c4e76add6ebf", "fields": {"nom_de_la_commune": "HOCQUIGNY", "libell_d_acheminement": "HOCQUIGNY", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50247"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb2d6e97ebed4a3af6440e0339285e7196b469a", "fields": {"nom_de_la_commune": "HUBERVILLE", "libell_d_acheminement": "HUBERVILLE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50251"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b53bc61bb67c2ea31c70c924364a4d5ba41130b", "fields": {"nom_de_la_commune": "ISIGNY LE BUAT", "libell_d_acheminement": "ISIGNY LE BUAT", "code_postal": "50540", "coordonnees_gps": [48.6212799417, -1.18273702532], "code_commune_insee": "50256"}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a08475bfe01b6a5a0f32c7de66132c2f8d8841d1", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "MONTGOTHIER", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fb53325fee0fd8ea73e1607e9079b6dde611fc9", "fields": {"code_postal": "50540", "code_commune_insee": "50256", "libell_d_acheminement": "ISIGNY LE BUAT", "ligne_5": "MONTIGNY", "nom_de_la_commune": "ISIGNY LE BUAT", "coordonnees_gps": [48.6212799417, -1.18273702532]}, "geometry": {"type": "Point", "coordinates": [-1.18273702532, 48.6212799417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0727244e4da939e578ff5e7be9057e5050eefed1", "fields": {"nom_de_la_commune": "LAULNE", "libell_d_acheminement": "LAULNE", "code_postal": "50430", "coordonnees_gps": [49.238207059, -1.53592999138], "code_commune_insee": "50265"}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ace5284200163d88481ef7441fd0c046cac2f9e2", "fields": {"nom_de_la_commune": "LESTRE", "libell_d_acheminement": "LESTRE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50268"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc52ca5f1e8e8471b4c7d8f91e3ead68350c7a6f", "fields": {"code_postal": "50250", "code_commune_insee": "50273", "libell_d_acheminement": "MONTSENELLE", "ligne_5": "LITHAIRE", "nom_de_la_commune": "MONTSENELLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c827f49ef3c5ac2a2065aa83f9cad64dcad12986", "fields": {"nom_de_la_commune": "LES LOGES SUR BRECEY", "libell_d_acheminement": "LES LOGES SUR BRECEY", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50275"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88521d1e04a583d8a115cca847aeacf2203063e1", "fields": {"nom_de_la_commune": "MARCHESIEUX", "libell_d_acheminement": "MARCHESIEUX", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50289"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79f128f059e7dc65be749675a9efa993be86705a", "fields": {"code_postal": "50570", "code_commune_insee": "50292", "libell_d_acheminement": "MARIGNY LE LOZON", "ligne_5": "LOZON", "nom_de_la_commune": "MARIGNY LE LOZON", "coordonnees_gps": [49.1154216014, -1.25542173856]}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1515fb4caed4cda2c74bce361d070ce42c4423c", "fields": {"nom_de_la_commune": "MARTINVAST", "libell_d_acheminement": "MARTINVAST", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50294"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e4aef5f5e4eff0a3ae871c0be88cb450430528", "fields": {"nom_de_la_commune": "MEAUTIS", "libell_d_acheminement": "MEAUTIS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50298"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccdaca1746ced9dbd82fd3489cdb6478992c6e6a", "fields": {"nom_de_la_commune": "LA MEURDRAQUIERE", "libell_d_acheminement": "LA MEURDRAQUIERE", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50327"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a5e948aab54773e144e10d83b01a2cead6ac21", "fields": {"nom_de_la_commune": "MONTAIGU LES BOIS", "libell_d_acheminement": "MONTAIGU LES BOIS", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50336"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "189194a4b30a3347aa3c6207d387ae4e081427b7", "fields": {"nom_de_la_commune": "MONTFARVILLE", "libell_d_acheminement": "MONTFARVILLE", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50342"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04d6eca05ccf5f4a61bea001b3fcbfd842d9d1e8", "fields": {"nom_de_la_commune": "MOON SUR ELLE", "libell_d_acheminement": "MOON SUR ELLE", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50356"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569e270a398f28edfa110106d90d7f035cbe7bc1", "fields": {"nom_de_la_commune": "LA MOUCHE", "libell_d_acheminement": "LA MOUCHE", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50361"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4975096b859ae5ff4be503d51b53e212ccf55650", "fields": {"nom_de_la_commune": "MOULINES", "libell_d_acheminement": "MOULINES", "code_postal": "50600", "coordonnees_gps": [48.5703711319, -1.06754299241], "code_commune_insee": "50362"}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dc80e26b88f9cdfbbd960aacccf79d6c62e4107", "fields": {"code_postal": "50420", "code_commune_insee": "50363", "libell_d_acheminement": "MOYON VILLAGES", "ligne_5": "CHEVRY", "nom_de_la_commune": "MOYON VILLAGES", "coordonnees_gps": [48.9843046983, -1.06508907903]}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6afa82f80885f89d53f1b57225f68593dc43c0f1", "fields": {"nom_de_la_commune": "NAY", "libell_d_acheminement": "NAY", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50368"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9e14706b44d4b7e143d84937c5aac0090adbe08", "fields": {"nom_de_la_commune": "LE NEUFBOURG", "libell_d_acheminement": "LE NEUFBOURG", "code_postal": "50140", "coordonnees_gps": [48.6562885959, -0.934860297079], "code_commune_insee": "50371"}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9dc3790c17c218ef46e59776e951d0bafe01db", "fields": {"nom_de_la_commune": "OMONVILLE LA ROGUE", "libell_d_acheminement": "OMONVILLE LA ROGUE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50386"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49138469430bfbe2c11bf9a4b372b7c950ce379", "fields": {"nom_de_la_commune": "ORVAL SUR SIENNE", "libell_d_acheminement": "ORVAL SUR SIENNE", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50388"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ebcc25ef62be548a67d4208c53231b6e457ff0f", "fields": {"code_postal": "50660", "code_commune_insee": "50388", "libell_d_acheminement": "ORVAL SUR SIENNE", "ligne_5": "MONTCHATON", "nom_de_la_commune": "ORVAL SUR SIENNE", "coordonnees_gps": [48.9716894019, -1.47095914438]}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc89a11d229804f836d2e817c9ba544f40721dc8", "fields": {"nom_de_la_commune": "LE PETIT CELLAND", "libell_d_acheminement": "LE PETIT CELLAND", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50399"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28e20f2aef7193c4322bcc4181faadc0030e1460", "fields": {"code_postal": "50250", "code_commune_insee": "50400", "libell_d_acheminement": "PICAUVILLE", "ligne_5": "HOUTTEVILLE", "nom_de_la_commune": "PICAUVILLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efd0a90d724a69afd72733867a150a75943dab7a", "fields": {"code_postal": "50480", "code_commune_insee": "50400", "libell_d_acheminement": "PICAUVILLE", "ligne_5": "GOURBESVILLE", "nom_de_la_commune": "PICAUVILLE", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1733d79028b37d415e2f7966563e6672287368b4", "fields": {"nom_de_la_commune": "LES PIEUX", "libell_d_acheminement": "LES PIEUX", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50402"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc99719b03de542a310d427bcb32794656064c37", "fields": {"nom_de_la_commune": "PLACY MONTAIGU", "libell_d_acheminement": "PLACY MONTAIGU", "code_postal": "50160", "coordonnees_gps": [49.0498306608, -0.92753197973], "code_commune_insee": "50404"}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd94769a7007d0eecc34206bef1d7d8db2b4bdf2", "fields": {"nom_de_la_commune": "LE PLESSIS LASTELLE", "libell_d_acheminement": "LE PLESSIS LASTELLE", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50405"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25d23eadc49f225515374b1fe9bfcf2f0df1add", "fields": {"nom_de_la_commune": "PONT HEBERT", "libell_d_acheminement": "PONT HEBERT", "code_postal": "50880", "coordonnees_gps": [49.1662165631, -1.12970537087], "code_commune_insee": "50409"}, "geometry": {"type": "Point", "coordinates": [-1.12970537087, 49.1662165631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfad7e3623d4802447e620b9f60a3db7b4496f9d", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "MACEY", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6005a3d9e145bc8d76d657041c1db8b99d10f989", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "MOIDREY", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b0c4c8fabc2dc91732fc3e0c74b747451f5035", "fields": {"nom_de_la_commune": "PONTS", "libell_d_acheminement": "PONTS", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50411"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d6df42e11b9cff265d2e8415af63b256fd677ac", "fields": {"nom_de_la_commune": "PORTBAIL", "libell_d_acheminement": "PORTBAIL", "code_postal": "50580", "coordonnees_gps": [49.3440940344, -1.66617929223], "code_commune_insee": "50412"}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ebba590cb02f1e5472e7bba0b654e5fa1c5026", "fields": {"nom_de_la_commune": "QUETTEHOU", "libell_d_acheminement": "QUETTEHOU", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50417"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d663d0c19b48778ed433080bd73d658a82fc4a", "fields": {"nom_de_la_commune": "RAIDS", "libell_d_acheminement": "RAIDS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50422"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "885c905b4ba175fedcc93e5f9dc3b49b6e9d8422", "fields": {"nom_de_la_commune": "RAMPAN", "libell_d_acheminement": "RAMPAN", "code_postal": "50000", "coordonnees_gps": [49.1199688631, -1.08893981029], "code_commune_insee": "50423"}, "geometry": {"type": "Point", "coordinates": [-1.08893981029, 49.1199688631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ef752563f836c5ea050202ae394519eab93331", "fields": {"nom_de_la_commune": "REMILLY SUR LOZON", "libell_d_acheminement": "REMILLY SUR LOZON", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50431"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "526d59e0dc90371f8e4c0c6ec3239d64a8c9b7e2", "fields": {"nom_de_la_commune": "ROMAGNY FONTENAY", "libell_d_acheminement": "ROMAGNY FONTENAY", "code_postal": "50140", "coordonnees_gps": [48.6562885959, -0.934860297079], "code_commune_insee": "50436"}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79915b1fc2f6fd6e7e9f68882fdf0f94185d5da0", "fields": {"code_postal": "50160", "code_commune_insee": "50444", "libell_d_acheminement": "ST AMAND", "ligne_5": "LA CHAPELLE DU FEST", "nom_de_la_commune": "ST AMAND", "coordonnees_gps": [49.0498306608, -0.92753197973]}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8832882086ce0b9c5af3b22bcabebc3fd659240f", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DU FOC", "libell_d_acheminement": "ST CHRISTOPHE DU FOC", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50454"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1530a3f7cabe483023fc2bfbf167c2318da949c3", "fields": {"nom_de_la_commune": "ST DENIS LE GAST", "libell_d_acheminement": "ST DENIS LE GAST", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50463"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f286435dae05c696faf85284e30f6b98fb54bf15", "fields": {"nom_de_la_commune": "ST GERMAIN DE VARREVILLE", "libell_d_acheminement": "ST GERMAIN DE VARREVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50479"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5ec601c4d3e9cc35383148db1f86f98185ff66a", "fields": {"nom_de_la_commune": "ST GERMAIN SUR SEVES", "libell_d_acheminement": "ST GERMAIN SUR SEVES", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50482"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d2405261ed6a8f915125b6f1c0561af032a432d", "fields": {"code_postal": "50600", "code_commune_insee": "50484", "libell_d_acheminement": "ST HILAIRE DU HARCOUET", "ligne_5": "VIREY", "nom_de_la_commune": "ST HILAIRE DU HARCOUET", "coordonnees_gps": [48.5703711319, -1.06754299241]}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a37d5ddb3dc6b914b173f267bb3c138d58e22f6", "fields": {"code_postal": "50810", "code_commune_insee": "50492", "libell_d_acheminement": "ST JEAN D ELLE", "ligne_5": "NOTRE DAME D ELLE", "nom_de_la_commune": "ST JEAN D ELLE", "coordonnees_gps": [49.1141244901, -0.965580935712]}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4765e339c3d1eccc45dfd49c422de8ac26723790", "fields": {"nom_de_la_commune": "ST JEAN DU CORAIL DES BOIS", "libell_d_acheminement": "ST JEAN DU CORAIL DES BOIS", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50495"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b21f84f4027a9dd58bd208ad12feca153e6af78d", "fields": {"nom_de_la_commune": "ST MARTIN LE GREARD", "libell_d_acheminement": "ST MARTIN LE GREARD", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50519"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98b046fd807d816b3c22668d207228bbceacc65d", "fields": {"nom_de_la_commune": "ST NICOLAS DE PIERREPONT", "libell_d_acheminement": "ST NICOLAS DE PIERREPONT", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50528"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d93642b22b7daa7b8df48d0a14979e75452e398e", "fields": {"nom_de_la_commune": "ST PELLERIN", "libell_d_acheminement": "ST PELLERIN", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50534"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57db5cf93d4a47f07ed6eee9831026c8b68546d2", "fields": {"nom_de_la_commune": "ST PIERRE DE SEMILLY", "libell_d_acheminement": "ST PIERRE DE SEMILLY", "code_postal": "50810", "coordonnees_gps": [49.1141244901, -0.965580935712], "code_commune_insee": "50538"}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aac95fa296e3149735e0437ed550d220e41994b5", "fields": {"nom_de_la_commune": "ST PLANCHERS", "libell_d_acheminement": "ST PLANCHERS", "code_postal": "50400", "coordonnees_gps": [48.8338992843, -1.53304864714], "code_commune_insee": "50541"}, "geometry": {"type": "Point", "coordinates": [-1.53304864714, 48.8338992843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f80114b15ced0d5c93cdf2be06a6c197b008aae8", "fields": {"code_postal": "50750", "code_commune_insee": "50546", "libell_d_acheminement": "BOURGVALLEES", "ligne_5": "GOURFALEUR", "nom_de_la_commune": "BOURGVALLEES", "coordonnees_gps": [49.0496336445, -1.17517736978]}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b571febcb9212a62b123bc709bd07a468d14e7ae", "fields": {"code_postal": "50750", "code_commune_insee": "50546", "libell_d_acheminement": "BOURGVALLEES", "ligne_5": "LA MANCELLIERE SUR VIRE", "nom_de_la_commune": "BOURGVALLEES", "coordonnees_gps": [49.0496336445, -1.17517736978]}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30eefc43cc43867da1834c0d9cd5808db347b4e6", "fields": {"nom_de_la_commune": "ST SENIER SOUS AVRANCHES", "libell_d_acheminement": "ST SENIER SOUS AVRANCHES", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50554"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260d8fcf6b6f03a6cc22654fa3d9d5757fce01d2", "fields": {"nom_de_la_commune": "ST VAAST LA HOUGUE", "libell_d_acheminement": "ST VAAST LA HOUGUE", "code_postal": "50550", "coordonnees_gps": [49.5998454115, -1.27309328299], "code_commune_insee": "50562"}, "geometry": {"type": "Point", "coordinates": [-1.27309328299, 49.5998454115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7351ae61f27fd0eb39908d94fd66c5b8e034c5", "fields": {"code_postal": "50500", "code_commune_insee": "50564", "libell_d_acheminement": "TERRE ET MARAIS", "ligne_5": "SAINTENY", "nom_de_la_commune": "TERRE ET MARAIS", "coordonnees_gps": [49.2869249451, -1.26541021444]}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee3a5400f18fb5beb52342f68aad9b93e7b7c13c", "fields": {"code_postal": "50530", "code_commune_insee": "50565", "libell_d_acheminement": "SARTILLY BAIE BOCAGE", "ligne_5": "MONTVIRON", "nom_de_la_commune": "SARTILLY BAIE BOCAGE", "coordonnees_gps": [48.7283863786, -1.45989829146]}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea5241ae00332cb8120cf77dc5dc5944f84796be", "fields": {"nom_de_la_commune": "SERVON", "libell_d_acheminement": "SERVON", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50574"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7469340a5a66077e693304cde2df870d205c3a63", "fields": {"nom_de_la_commune": "SOULLES", "libell_d_acheminement": "SOULLES", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50581"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ad2cd2734cd5d7b4bbb3210830a14a74cb800a", "fields": {"nom_de_la_commune": "SURTAINVILLE", "libell_d_acheminement": "SURTAINVILLE", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50585"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d32ad43bd0ec48cb0beba38d7a8f0249e41fb4db", "fields": {"code_postal": "50640", "code_commune_insee": "50591", "libell_d_acheminement": "LE TEILLEUL", "ligne_5": "FERRIERES", "nom_de_la_commune": "LE TEILLEUL", "coordonnees_gps": [48.5293564364, -0.941843015494]}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d170b6370ae92a37f66d3492c4768b4e588d0bc2", "fields": {"nom_de_la_commune": "TEURTHEVILLE HAGUE", "libell_d_acheminement": "TEURTHEVILLE HAGUE", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50594"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3af7755107f5e20e3318b48d07ce14386e37b02", "fields": {"code_postal": "50870", "code_commune_insee": "50597", "libell_d_acheminement": "TIREPIED", "ligne_5": "STE EUGIENNE", "nom_de_la_commune": "TIREPIED", "coordonnees_gps": [48.7458565845, -1.30663914164]}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "859daa6bb84a94e49fb0ad8c4a3581980ca7cdf8", "fields": {"code_postal": "50160", "code_commune_insee": "50601", "libell_d_acheminement": "TORIGNY LES VILLES", "ligne_5": "BRECTOUVILLE", "nom_de_la_commune": "TORIGNY LES VILLES", "coordonnees_gps": [49.0498306608, -0.92753197973]}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d99ada1c545237a1c4ce5f486d32c63c07b7d2ca", "fields": {"nom_de_la_commune": "LA TRINITE", "libell_d_acheminement": "LA TRINITE", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50607"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f75d63b826b960dd03faada0d4e18b99616f823a", "fields": {"nom_de_la_commune": "URVILLE", "libell_d_acheminement": "URVILLE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50610"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b526d6b1862a173c7d7f4db730c41e7a1c2be0a9", "fields": {"nom_de_la_commune": "MARSAC", "libell_d_acheminement": "MARSAC", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23124"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfd924a900cebf5994d7c2d84ea236f4aab4284a", "fields": {"nom_de_la_commune": "MASBARAUD MERIGNAT", "libell_d_acheminement": "MASBARAUD MERIGNAT", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23126"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a2326f72c13ad3110cd8c789424547bbecc5e9", "fields": {"nom_de_la_commune": "MONTAIGUT LE BLANC", "libell_d_acheminement": "MONTAIGUT LE BLANC", "code_postal": "23320", "coordonnees_gps": [46.2024027743, 1.74389390315], "code_commune_insee": "23132"}, "geometry": {"type": "Point", "coordinates": [1.74389390315, 46.2024027743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "531f3a3b20dd2b97e53d150219acd797845ef916", "fields": {"nom_de_la_commune": "MOUTIER MALCARD", "libell_d_acheminement": "MOUTIER MALCARD", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23139"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97fe539fecdd41ed77a0495295854c2cba26e35d", "fields": {"nom_de_la_commune": "PUY MALSIGNAT", "libell_d_acheminement": "PUY MALSIGNAT", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23159"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4ddba4c2d99b050c9656be6de61bbb18ad80a9a", "fields": {"nom_de_la_commune": "ST AGNANT DE VERSILLAT", "libell_d_acheminement": "ST AGNANT DE VERSILLAT", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23177"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e7e6962fbf488a3a2ecdc01893b7708a350b8eb", "fields": {"nom_de_la_commune": "ST ALPINIEN", "libell_d_acheminement": "ST ALPINIEN", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23179"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7cddc43017f1cf1fc24c1de9f72e45686786ea6", "fields": {"nom_de_la_commune": "ST AMAND JARTOUDEIX", "libell_d_acheminement": "ST AMAND JARTOUDEIX", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23181"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4788abb34048c2450faa8b0ac58f5e7c76a9808", "fields": {"nom_de_la_commune": "ST AVIT LE PAUVRE", "libell_d_acheminement": "ST AVIT LE PAUVRE", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23183"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "749769b03bcbac9a008f9ed665b32048a7762630", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23186"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9fe5e45d097a37418c5288a1c860105c101ddc3", "fields": {"nom_de_la_commune": "ST ELOI", "libell_d_acheminement": "ST ELOI", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23191"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631f268cdc94ca6addad97b9d7fbf35ceb9f49f9", "fields": {"nom_de_la_commune": "STE FEYRE LA MONTAGNE", "libell_d_acheminement": "STE FEYRE LA MONTAGNE", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23194"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b252c5206689125a1b5e3a6593b1b5870b57df", "fields": {"nom_de_la_commune": "ST GEORGES NIGREMONT", "libell_d_acheminement": "ST GEORGES NIGREMONT", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23198"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3386ca0094cfe4bb36a954b0e69993f3c1be5ac", "fields": {"code_postal": "23160", "code_commune_insee": "23199", "libell_d_acheminement": "ST GERMAIN BEAUPRE", "ligne_5": "FORGEVIEILLE", "nom_de_la_commune": "ST GERMAIN BEAUPRE", "coordonnees_gps": [46.3627698496, 1.53929968478]}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81533cb689180d8a360d7b3b49eee66fed9efe8c", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23206"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9743366daa6d3a7cbd53af0a2c419b161e116bf2", "fields": {"nom_de_la_commune": "ST LEGER BRIDEREIX", "libell_d_acheminement": "ST LEGER BRIDEREIX", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23207"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b73d66de52fa8cb0b235dd1f6f0f2fe1ea809d", "fields": {"nom_de_la_commune": "ST MARTIN STE CATHERINE", "libell_d_acheminement": "ST MARTIN STE CATHERINE", "code_postal": "23430", "coordonnees_gps": [45.9881301052, 1.59522254815], "code_commune_insee": "23217"}, "geometry": {"type": "Point", "coordinates": [1.59522254815, 45.9881301052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f15d3b39398dc72883b9f2fe45c19031a10180a", "fields": {"nom_de_la_commune": "ST MAURICE PRES CROCQ", "libell_d_acheminement": "ST MAURICE PRES CROCQ", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23218"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d188722c026688afba740aea87e05fa7c6144846", "fields": {"code_postal": "23200", "code_commune_insee": "23220", "libell_d_acheminement": "ST MEDARD LA ROCHETTE", "ligne_5": "FOURNEAUX", "nom_de_la_commune": "ST MEDARD LA ROCHETTE", "coordonnees_gps": [45.9607828765, 2.18895520996]}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f406642578878ec676319bab8d2a69fc3dcbb32", "fields": {"code_postal": "23200", "code_commune_insee": "23220", "libell_d_acheminement": "ST MEDARD LA ROCHETTE", "ligne_5": "LA ROCHETTE", "nom_de_la_commune": "ST MEDARD LA ROCHETTE", "coordonnees_gps": [45.9607828765, 2.18895520996]}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4ae844ec350f7d654191535b63dfb92c31c91f", "fields": {"nom_de_la_commune": "ST ORADOUX DE CHIROUZE", "libell_d_acheminement": "ST ORADOUX DE CHIROUZE", "code_postal": "23100", "coordonnees_gps": [45.7268146987, 2.29618213551], "code_commune_insee": "23224"}, "geometry": {"type": "Point", "coordinates": [2.29618213551, 45.7268146987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42335d740c10e6c1411f3a31c4baf0d2469f96eb", "fields": {"nom_de_la_commune": "ST ORADOUX PRES CROCQ", "libell_d_acheminement": "ST ORADOUX PRES CROCQ", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23225"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e41902403aa476f6b582577cc24cc5c483a152ac", "fields": {"nom_de_la_commune": "ST SULPICE LE GUERETOIS", "libell_d_acheminement": "ST SULPICE LE GUERETOIS", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23245"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfe8fa8c14e938aa652d0817256d69521091dc5", "fields": {"nom_de_la_commune": "TERCILLAT", "libell_d_acheminement": "TERCILLAT", "code_postal": "23350", "coordonnees_gps": [46.3822619833, 2.00190110842], "code_commune_insee": "23252"}, "geometry": {"type": "Point", "coordinates": [2.00190110842, 46.3822619833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a280606a9095c6680d53c6b600b15dbc7dee0f", "fields": {"nom_de_la_commune": "TROIS FONDS", "libell_d_acheminement": "TROIS FONDS", "code_postal": "23230", "coordonnees_gps": [46.2160065726, 2.24523675556], "code_commune_insee": "23255"}, "geometry": {"type": "Point", "coordinates": [2.24523675556, 46.2160065726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c90a6910506e1014127dc4bb84ea82fd461b1e5", "fields": {"nom_de_la_commune": "VAREILLES", "libell_d_acheminement": "VAREILLES", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23258"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a6100042cf84de6bf1999588b614114872a420", "fields": {"nom_de_la_commune": "AGONAC", "libell_d_acheminement": "AGONAC", "code_postal": "24460", "coordonnees_gps": [45.2956832726, 0.780250609832], "code_commune_insee": "24002"}, "geometry": {"type": "Point", "coordinates": [0.780250609832, 45.2956832726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f280527843f61f22b14694ad92a1ee362108e604", "fields": {"nom_de_la_commune": "AJAT", "libell_d_acheminement": "AJAT", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24004"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "926a9037cb27ef7348c95ee8611a80aeed3dffb8", "fields": {"nom_de_la_commune": "ANTONNE ET TRIGONANT", "libell_d_acheminement": "ANTONNE ET TRIGONANT", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24011"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d80ca0a975e3e81f886b96f3d762bc89936a7de0", "fields": {"nom_de_la_commune": "AZERAT", "libell_d_acheminement": "AZERAT", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24019"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5704ed6700afd6b4f99609f310739da4badc2a24", "fields": {"nom_de_la_commune": "BADEFOLS SUR DORDOGNE", "libell_d_acheminement": "BADEFOLS SUR DORDOGNE", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24022"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52724b95ad42839773c19bcd5877a67522748712", "fields": {"nom_de_la_commune": "BEAUPOUYET", "libell_d_acheminement": "BEAUPOUYET", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24029"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6c4bf407253f99f1d9f59178fa414a013336dd0", "fields": {"nom_de_la_commune": "BEAUREGARD DE TERRASSON", "libell_d_acheminement": "BEAUREGARD DE TERRASSON", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24030"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e6846464606ab3d479a19adaae12efa88da15f6", "fields": {"nom_de_la_commune": "BELEYMAS", "libell_d_acheminement": "BELEYMAS", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24034"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44e45b57a95b7ae98987b93202fb18c288733ea", "fields": {"nom_de_la_commune": "BERBIGUIERES", "libell_d_acheminement": "BERBIGUIERES", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24036"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9974d18c2a9771c5bcbd8aab4f01bccea3c45c4", "fields": {"nom_de_la_commune": "BESSE", "libell_d_acheminement": "BESSE", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24039"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc55617ca6278cf2a2fdcbbd550e2e07432cbe14", "fields": {"nom_de_la_commune": "BIRON", "libell_d_acheminement": "BIRON", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24043"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da5f505e901770e100a3bf95cd691b6b52c9001", "fields": {"nom_de_la_commune": "BLIS ET BORN", "libell_d_acheminement": "BLIS ET BORN", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24044"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78905ddd004b063468d84df30ec766e5e9dbb820", "fields": {"code_postal": "24330", "code_commune_insee": "24053", "libell_d_acheminement": "BOULAZAC ISLE MANOIRE", "ligne_5": "ST LAURENT SUR MANOIRE", "nom_de_la_commune": "BOULAZAC ISLE MANOIRE", "coordonnees_gps": [45.1284574814, 0.869348647957]}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566786c1daf70c46265c0b8b5de0ea332ed66e8a", "fields": {"nom_de_la_commune": "BOULAZAC ISLE MANOIRE", "libell_d_acheminement": "BOULAZAC ISLE MANOIRE", "code_postal": "24750", "coordonnees_gps": [45.1801193657, 0.766939907734], "code_commune_insee": "24053"}, "geometry": {"type": "Point", "coordinates": [0.766939907734, 45.1801193657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb078741aa9323fd605b249edccbe55d7824b3b2", "fields": {"nom_de_la_commune": "LE BOURDEIX", "libell_d_acheminement": "LE BOURDEIX", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24056"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7b0dd4de48831391cc2dbe8cea00e358a482d65", "fields": {"nom_de_la_commune": "BROUCHAUD", "libell_d_acheminement": "BROUCHAUD", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24066"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "258fbfd5979f719832edad034d33ae028ef8885b", "fields": {"nom_de_la_commune": "LE BUISSON DE CADOUIN", "libell_d_acheminement": "LE BUISSON DE CADOUIN", "code_postal": "24480", "coordonnees_gps": [44.8133494955, 0.885908136539], "code_commune_insee": "24068"}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00709c50ac4e8fd4fc9ee5e4637c220ec6c8dfc5", "fields": {"code_postal": "24480", "code_commune_insee": "24068", "libell_d_acheminement": "LE BUISSON DE CADOUIN", "ligne_5": "CADOUIN", "nom_de_la_commune": "LE BUISSON DE CADOUIN", "coordonnees_gps": [44.8133494955, 0.885908136539]}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a3211f8c14f232070787b1d58cd69926dc8a9a8", "fields": {"nom_de_la_commune": "BUSSAC", "libell_d_acheminement": "BUSSAC", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24069"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4209a84297e3f86e149a437f0528f5f69b6bfec0", "fields": {"nom_de_la_commune": "BUSSEROLLES", "libell_d_acheminement": "BUSSEROLLES", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24070"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d59c9ca6f9824fd764995d882a18ce4c58f1b4c", "fields": {"nom_de_la_commune": "CALVIAC EN PERIGORD", "libell_d_acheminement": "CALVIAC EN PERIGORD", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24074"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12c44a9e33830fc882b5f7ddedf476ba99e4f0ea", "fields": {"nom_de_la_commune": "CAMPAGNAC LES QUERCY", "libell_d_acheminement": "CAMPAGNAC LES QUERCY", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24075"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0e2232b4f1883b52999e840811203d7e605a79", "fields": {"nom_de_la_commune": "CAMPSEGRET", "libell_d_acheminement": "CAMPSEGRET", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24077"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9fd8485da0a2ca4d362eff646c164edf9b49369", "fields": {"nom_de_la_commune": "CANTILLAC", "libell_d_acheminement": "CANTILLAC", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24079"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72b73450f82fe2e87c9e9d20cfd22c8db722456e", "fields": {"nom_de_la_commune": "CERCLES", "libell_d_acheminement": "CERCLES", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24093"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "613834a89deee71bd71ed06541bf8b0d29a11e62", "fields": {"nom_de_la_commune": "CHAMPEAUX ET LA CHAPELLE POMMIER", "libell_d_acheminement": "CHAMPEAUX ET LA CHAPELLE POMMIER", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24099"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25c84a35ef3661d9c494ccfc57a2611bdec2e0a3", "fields": {"nom_de_la_commune": "CHAMPS ROMAIN", "libell_d_acheminement": "CHAMPS ROMAIN", "code_postal": "24470", "coordonnees_gps": [45.5151211984, 0.802361572826], "code_commune_insee": "24101"}, "geometry": {"type": "Point", "coordinates": [0.802361572826, 45.5151211984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96138c44db7cfb923abd302ae378bca7a65d6d6c", "fields": {"nom_de_la_commune": "CHANTERAC", "libell_d_acheminement": "CHANTERAC", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24104"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ac6866759504e457b455f4b66d67bb6c9ea8a31", "fields": {"nom_de_la_commune": "CHAPDEUIL", "libell_d_acheminement": "CHAPDEUIL", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24105"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1981c86cd60eb00f0922ef6cd2e03a20c5297508", "fields": {"nom_de_la_commune": "LA CHAPELLE FAUCHER", "libell_d_acheminement": "LA CHAPELLE FAUCHER", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24107"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06c65703fcce5032f0e1c8622891e2fec3188d7b", "fields": {"nom_de_la_commune": "LA CHAPELLE GONAGUET", "libell_d_acheminement": "LA CHAPELLE GONAGUET", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24108"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82456985ad4c5d0dd1e156f0a5c7c517ef9e5c83", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTABOURLET", "libell_d_acheminement": "LA CHAPELLE MONTABOURLET", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24110"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "780340647ccf4466d6d12d007a4291e3cde39764", "fields": {"nom_de_la_commune": "CHATRES", "libell_d_acheminement": "CHATRES", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24116"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04aa288b2bfe4a286e7a05ec811e2e7c84d2617a", "fields": {"nom_de_la_commune": "CLERMONT D EXCIDEUIL", "libell_d_acheminement": "CLERMONT D EXCIDEUIL", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24124"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "500d0a9a00e0e3b80b3ca99c6889af3c2f00351a", "fields": {"nom_de_la_commune": "COLY", "libell_d_acheminement": "COLY", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24127"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94fee0269c0847ce68b9162b71020e5c9f3f538d", "fields": {"nom_de_la_commune": "CONNEZAC", "libell_d_acheminement": "CONNEZAC", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24131"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f13c76404df443f29598dd2c7330ba97391d33c", "fields": {"nom_de_la_commune": "COUTURES", "libell_d_acheminement": "COUTURES", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24141"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83d3c2675090df7fc06c634d8a0be676918dbd03", "fields": {"nom_de_la_commune": "CREYSSE", "libell_d_acheminement": "CREYSSE", "code_postal": "24100", "coordonnees_gps": [44.8574412518, 0.495284602644], "code_commune_insee": "24145"}, "geometry": {"type": "Point", "coordinates": [0.495284602644, 44.8574412518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896e83b8d641d3813853eba5cd79576b752272f2", "fields": {"nom_de_la_commune": "CUBJAC", "libell_d_acheminement": "CUBJAC", "code_postal": "24640", "coordonnees_gps": [45.228517812, 0.964656350856], "code_commune_insee": "24147"}, "geometry": {"type": "Point", "coordinates": [0.964656350856, 45.228517812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a6121999175a1e67a6e9c4b26e9c651a3924d3", "fields": {"nom_de_la_commune": "DOMME", "libell_d_acheminement": "DOMME", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24152"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "005467cbfd81222ca6cf3b408e2e176803fa7dc1", "fields": {"nom_de_la_commune": "DOUVILLE", "libell_d_acheminement": "DOUVILLE", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24155"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a7e38a6d3205aafe59eb308e66a9e9dadd5da0f", "fields": {"nom_de_la_commune": "LA DOUZE", "libell_d_acheminement": "LA DOUZE", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24156"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa8b845ff900b2d61e71e3fbc687102b5bff6ba", "fields": {"nom_de_la_commune": "DOUZILLAC", "libell_d_acheminement": "DOUZILLAC", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24157"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2b9e7144ad15886a89e8534a1534fae7c056dd1", "fields": {"nom_de_la_commune": "DUSSAC", "libell_d_acheminement": "DUSSAC", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24158"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2911685da0d2c5c85056f26cee643568ab6fcad", "fields": {"nom_de_la_commune": "EGLISE NEUVE DE VERGT", "libell_d_acheminement": "EGLISE NEUVE DE VERGT", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24160"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b4655f3267b4d306ddf4ed53f7ba1327f949eda", "fields": {"nom_de_la_commune": "ESCOIRE", "libell_d_acheminement": "ESCOIRE", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24162"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23ea43641188ec6f25ebebdf63b3b746a550927b", "fields": {"nom_de_la_commune": "EYGURANDE ET GARDEDEUIL", "libell_d_acheminement": "EYGURANDE ET GARDEDEUIL", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24165"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb49c189a4dda84651ff55595442e288cca0144", "fields": {"code_postal": "24560", "code_commune_insee": "24168", "libell_d_acheminement": "PLAISANCE", "ligne_5": "FALGUEYRAT", "nom_de_la_commune": "PLAISANCE", "coordonnees_gps": [44.7422356439, 0.603161629803]}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3275b3757a7bbf3094c31d52cb011bcca745373f", "fields": {"nom_de_la_commune": "EYZERAC", "libell_d_acheminement": "EYZERAC", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24171"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec374b160d1224f6db1e752c251664bae3dbfd90", "fields": {"nom_de_la_commune": "FAURILLES", "libell_d_acheminement": "FAURILLES", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24176"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "002448ea7085b7d635556243780c418fbc68dbcd", "fields": {"nom_de_la_commune": "FIRBEIX", "libell_d_acheminement": "FIRBEIX", "code_postal": "24450", "coordonnees_gps": [45.5667064353, 0.957966162426], "code_commune_insee": "24180"}, "geometry": {"type": "Point", "coordinates": [0.957966162426, 45.5667064353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "689a0a2e802297e16c4bdda8c608ff34110e3349", "fields": {"nom_de_la_commune": "FLORIMONT GAUMIER", "libell_d_acheminement": "FLORIMONT GAUMIER", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24184"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dac09ba5f8b96578d8d0ee29ba3511d99e232f1d", "fields": {"nom_de_la_commune": "FRAISSE", "libell_d_acheminement": "FRAISSE", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24191"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7141c494f8c32443b63c3bcdd472e421b291a489", "fields": {"nom_de_la_commune": "GENIS", "libell_d_acheminement": "GENIS", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24196"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf575ffecc19718441a057b46e03a46ead30503f", "fields": {"nom_de_la_commune": "GRUN BORDAS", "libell_d_acheminement": "GRUN BORDAS", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24208"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "605c53687ef70d8629fd58bb247124accb6702c7", "fields": {"nom_de_la_commune": "HAUTEFORT", "libell_d_acheminement": "HAUTEFORT", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24210"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab570889d5c6636c386193ddcb4ccad4451418c7", "fields": {"nom_de_la_commune": "LAMONZIE ST MARTIN", "libell_d_acheminement": "LAMONZIE ST MARTIN", "code_postal": "24680", "coordonnees_gps": [44.8327905083, 0.37087813465], "code_commune_insee": "24225"}, "geometry": {"type": "Point", "coordinates": [0.37087813465, 44.8327905083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553ee5e55497c4d4f8ff661c0b386fe20bc14512", "fields": {"nom_de_la_commune": "LANOUAILLE", "libell_d_acheminement": "LANOUAILLE", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24227"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1fc07d0643e104648871cc65c2118abcdfeb41d", "fields": {"nom_de_la_commune": "LEMBRAS", "libell_d_acheminement": "LEMBRAS", "code_postal": "24100", "coordonnees_gps": [44.8574412518, 0.495284602644], "code_commune_insee": "24237"}, "geometry": {"type": "Point", "coordinates": [0.495284602644, 44.8574412518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfcb5ad43794eeb152f831d55807805ed4c92aba", "fields": {"nom_de_la_commune": "LEMPZOURS", "libell_d_acheminement": "LEMPZOURS", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24238"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f1f7b06f6f5bedfbed91dab11f445e71bbf733e", "fields": {"nom_de_la_commune": "LIMEUIL", "libell_d_acheminement": "LIMEUIL", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24240"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76dc8f6ecfbed8179a8a84789931a941b7ab7638", "fields": {"nom_de_la_commune": "LOUBEJAC", "libell_d_acheminement": "LOUBEJAC", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24245"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d4a57ea20abf1542df0446a18e5a5ec7cbc5c2b", "fields": {"nom_de_la_commune": "MANZAC SUR VERN", "libell_d_acheminement": "MANZAC SUR VERN", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24251"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fec326c33dab1ba18c6648acd286302441fd360a", "fields": {"nom_de_la_commune": "MARSAC SUR L ISLE", "libell_d_acheminement": "MARSAC SUR L ISLE", "code_postal": "24430", "coordonnees_gps": [45.1552585356, 0.627698357906], "code_commune_insee": "24256"}, "geometry": {"type": "Point", "coordinates": [0.627698357906, 45.1552585356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15693accd2755f30fd841661c1c1d9efefb9d73c", "fields": {"nom_de_la_commune": "MAURENS", "libell_d_acheminement": "MAURENS", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24259"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59bd55804f3bc4a409b18acf947de09a4b6cf4a2", "fields": {"nom_de_la_commune": "MENESPLET", "libell_d_acheminement": "MENESPLET", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24264"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0c9e532e5bc815d923ea98e1b16794a7de5d226", "fields": {"nom_de_la_commune": "MILHAC DE NONTRON", "libell_d_acheminement": "MILHAC DE NONTRON", "code_postal": "24470", "coordonnees_gps": [45.5151211984, 0.802361572826], "code_commune_insee": "24271"}, "geometry": {"type": "Point", "coordinates": [0.802361572826, 45.5151211984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c10583d4c026c30af50e73943d128204187d8e62", "fields": {"nom_de_la_commune": "MINZAC", "libell_d_acheminement": "MINZAC", "code_postal": "24610", "coordonnees_gps": [44.9374172162, 0.100217545195], "code_commune_insee": "24272"}, "geometry": {"type": "Point", "coordinates": [0.100217545195, 44.9374172162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9075383f54b82d2272e40d4290dcca6d0889ee8", "fields": {"nom_de_la_commune": "MONMARVES", "libell_d_acheminement": "MONMARVES", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24279"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f6010b5eb9e5b6b64d561c0beb2ec7cc8430a0e", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24287"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "856637241bb68c590779f68cd859b2b844018871", "fields": {"nom_de_la_commune": "MONTFERRAND DU PERIGORD", "libell_d_acheminement": "MONTFERRAND DU PERIGORD", "code_postal": "24440", "coordonnees_gps": [44.7570815244, 0.786200936905], "code_commune_insee": "24290"}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db698d216e46581fad8f387cc40662819e445df", "fields": {"nom_de_la_commune": "NADAILLAC", "libell_d_acheminement": "NADAILLAC", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24301"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b8e74833ef9f9be2ba7a9102ca2de29c85350c", "fields": {"nom_de_la_commune": "NAILHAC", "libell_d_acheminement": "NAILHAC", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24302"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "838af22f85097f36fafc9fd64152012789546f59", "fields": {"nom_de_la_commune": "NANTEUIL AURIAC DE BOURZAC", "libell_d_acheminement": "NANTEUIL AURIAC DE BOURZAC", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24303"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25231b138781484effcad8fd753dece6c767b10b", "fields": {"nom_de_la_commune": "MAYSEL", "libell_d_acheminement": "MAYSEL", "code_postal": "60660", "coordonnees_gps": [49.2665303301, 2.368580624], "code_commune_insee": "60391"}, "geometry": {"type": "Point", "coordinates": [2.368580624, 49.2665303301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a6b0f03d12369f352706e29971473db256c632", "fields": {"nom_de_la_commune": "LE MEUX", "libell_d_acheminement": "LE MEUX", "code_postal": "60880", "coordonnees_gps": [49.3809036755, 2.75739000766], "code_commune_insee": "60402"}, "geometry": {"type": "Point", "coordinates": [2.75739000766, 49.3809036755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51c39ed8b7a3c588ccb31fd3302a55b3e346e7e6", "fields": {"nom_de_la_commune": "MONNEVILLE", "libell_d_acheminement": "MONNEVILLE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60411"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "affe25a841ebffb81fb770a30379225d43ccdf3c", "fields": {"nom_de_la_commune": "MONTAGNY EN VEXIN", "libell_d_acheminement": "MONTAGNY EN VEXIN", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60412"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a1506b6c9f4d550ab2cd7a6d77be8a4c09830be", "fields": {"nom_de_la_commune": "MONTEPILLOY", "libell_d_acheminement": "MONTEPILLOY", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60415"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70839afb3b3e194dfab6d823e458904c1489d1de", "fields": {"nom_de_la_commune": "MONTMACQ", "libell_d_acheminement": "MONTMACQ", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60423"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aa5cd5abbc21d68078806720a1c236120e1efda", "fields": {"nom_de_la_commune": "MONTREUIL SUR THERAIN", "libell_d_acheminement": "MONTREUIL SUR THERAIN", "code_postal": "60134", "coordonnees_gps": [49.3709674035, 2.20669140352], "code_commune_insee": "60426"}, "geometry": {"type": "Point", "coordinates": [2.20669140352, 49.3709674035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e752ae48483c8792f24e1d988da224adac7aae9", "fields": {"nom_de_la_commune": "MORIENVAL", "libell_d_acheminement": "MORIENVAL", "code_postal": "60127", "coordonnees_gps": [49.3037551422, 2.92944456621], "code_commune_insee": "60430"}, "geometry": {"type": "Point", "coordinates": [2.92944456621, 49.3037551422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9821ad48788cb2f99b36b39893ca2c0e0106b5c8", "fields": {"nom_de_la_commune": "MOULIN SOUS TOUVENT", "libell_d_acheminement": "MOULIN SOUS TOUVENT", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60438"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7634c5704e2ad2ee655e51e9d135a7e390ab501a", "fields": {"nom_de_la_commune": "MOYVILLERS", "libell_d_acheminement": "MOYVILLERS", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60441"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a6749267af4fe78ea1a7d22303027095433625", "fields": {"nom_de_la_commune": "NEUFVY SUR ARONDE", "libell_d_acheminement": "NEUFVY SUR ARONDE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60449"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86f9f51b0bc1125c7fc3410b8ce219aad2144ae", "fields": {"nom_de_la_commune": "LA NEUVILLE SUR RESSONS", "libell_d_acheminement": "LA NEUVILLE SUR RESSONS", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60459"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f5e968f1e414bd6fd6f37e0ad9fa9e17c8859b9", "fields": {"nom_de_la_commune": "NOINTEL", "libell_d_acheminement": "NOINTEL", "code_postal": "60840", "coordonnees_gps": [49.3800366036, 2.49101738028], "code_commune_insee": "60464"}, "geometry": {"type": "Point", "coordinates": [2.49101738028, 49.3800366036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9caea4fcde8d3c85b86c52d1fb84ff7e73ce1aeb", "fields": {"nom_de_la_commune": "NOIREMONT", "libell_d_acheminement": "NOIREMONT", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60465"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae45ae546052f3888af3bed2e4122789870e460c", "fields": {"nom_de_la_commune": "ORMOY VILLERS", "libell_d_acheminement": "ORMOY VILLERS", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60479"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aec957211b88698df1931c92c041dd596f648a2", "fields": {"nom_de_la_commune": "ORRY LA VILLE", "libell_d_acheminement": "ORRY LA VILLE", "code_postal": "60560", "coordonnees_gps": [49.1406725737, 2.50972357232], "code_commune_insee": "60482"}, "geometry": {"type": "Point", "coordinates": [2.50972357232, 49.1406725737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d8005407408bd077245d8431e951ba3b8ea96f", "fields": {"nom_de_la_commune": "PASSEL", "libell_d_acheminement": "PASSEL", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60488"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a617b4262b580431779283ba610f4515afb047d", "fields": {"nom_de_la_commune": "PLAILLY", "libell_d_acheminement": "PLAILLY", "code_postal": "60128", "coordonnees_gps": [49.1164844091, 2.59215767956], "code_commune_insee": "60494"}, "geometry": {"type": "Point", "coordinates": [2.59215767956, 49.1164844091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f0da3fa4d6788cf11d1272117e37b09d67cf1b3", "fields": {"nom_de_la_commune": "LE PLESSIER SUR BULLES", "libell_d_acheminement": "LE PLESSIER SUR BULLES", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60497"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35271375285f6371da9f76c1f4b3200d9e921274", "fields": {"nom_de_la_commune": "PLESSIS DE ROYE", "libell_d_acheminement": "PLESSIS DE ROYE", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60499"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c1470f5338d2acad03520513b717f57e6f8430", "fields": {"nom_de_la_commune": "PONTPOINT", "libell_d_acheminement": "PONTPOINT", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60508"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2893c46a03fe698386b6bac6373bcfd5841bf228", "fields": {"nom_de_la_commune": "PORQUERICOURT", "libell_d_acheminement": "PORQUERICOURT", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60511"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ded62b08f612caa40df450b1ee0d199e0d64c332", "fields": {"nom_de_la_commune": "PUISEUX EN BRAY", "libell_d_acheminement": "PUISEUX EN BRAY", "code_postal": "60850", "coordonnees_gps": [49.4183231211, 1.8058971314], "code_commune_insee": "60516"}, "geometry": {"type": "Point", "coordinates": [1.8058971314, 49.4183231211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ba03eef54e0ff2ca6606e8da1936ade58f0bf68", "fields": {"nom_de_la_commune": "PUITS LA VALLEE", "libell_d_acheminement": "PUITS LA VALLEE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60518"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "736f146651cca3012b729125606395b83bb1e696", "fields": {"nom_de_la_commune": "RAINVILLERS", "libell_d_acheminement": "RAINVILLERS", "code_postal": "60155", "coordonnees_gps": [49.3994473154, 2.0089385619], "code_commune_insee": "60523"}, "geometry": {"type": "Point", "coordinates": [2.0089385619, 49.3994473154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0b81d87b86325187921635ee267c6632e5c8e89", "fields": {"nom_de_la_commune": "RANTIGNY", "libell_d_acheminement": "RANTIGNY", "code_postal": "60290", "coordonnees_gps": [49.3208581304, 2.42249383706], "code_commune_insee": "60524"}, "geometry": {"type": "Point", "coordinates": [2.42249383706, 49.3208581304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2457253cddca5d6bc218dd91539acfaf96ff15", "fields": {"nom_de_la_commune": "RARAY", "libell_d_acheminement": "RARAY", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60525"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c012717f5f85716f20888195808107917852480", "fields": {"nom_de_la_commune": "REILLY", "libell_d_acheminement": "REILLY", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60528"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2b2a310b9fd2c3e0efb59d8451f8a9363d0075c", "fields": {"nom_de_la_commune": "REUIL SUR BRECHE", "libell_d_acheminement": "REUIL SUR BRECHE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60535"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5ff24a58f5209e104c41b08dea55ab908556d5f", "fields": {"nom_de_la_commune": "RICQUEBOURG", "libell_d_acheminement": "RICQUEBOURG", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60538"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e304b3634e2f2f913d98cc21c4b17f2cb2f10ca", "fields": {"nom_de_la_commune": "RIVECOURT", "libell_d_acheminement": "RIVECOURT", "code_postal": "60126", "coordonnees_gps": [49.3411887466, 2.71608141162], "code_commune_insee": "60540"}, "geometry": {"type": "Point", "coordinates": [2.71608141162, 49.3411887466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16175889e7d0507a1b157ce6265811d1296e1ef8", "fields": {"nom_de_la_commune": "ROCHY CONDE", "libell_d_acheminement": "ROCHY CONDE", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60542"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bda5303256e6a63450524382bad8538d439b11", "fields": {"nom_de_la_commune": "ROSIERES", "libell_d_acheminement": "ROSIERES", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60546"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e04acf6a50a3876b84580e2c32d081c9540e5875", "fields": {"nom_de_la_commune": "ROY BOISSY", "libell_d_acheminement": "ROY BOISSY", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60557"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0129c41f305066ad0a6b1d68ac76c26ba322bdd", "fields": {"nom_de_la_commune": "ROYE SUR MATZ", "libell_d_acheminement": "ROYE SUR MATZ", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60558"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b1dbd799c0f7f6fe2c05189b9a0865ad7d1d91", "fields": {"nom_de_la_commune": "RULLY", "libell_d_acheminement": "RULLY", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60560"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ce7c6c79c2a452c0888bbe603703e3afcfe011", "fields": {"nom_de_la_commune": "RUSSY BEMONT", "libell_d_acheminement": "RUSSY BEMONT", "code_postal": "60117", "coordonnees_gps": [49.2419560642, 2.9827380143], "code_commune_insee": "60561"}, "geometry": {"type": "Point", "coordinates": [2.9827380143, 49.2419560642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a4a44ec3e1371adfe1688156b22e9295a729632", "fields": {"nom_de_la_commune": "ST AUBIN EN BRAY", "libell_d_acheminement": "ST AUBIN EN BRAY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60567"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "347de175502eaf1680a12f704ada15d44d180407", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "LONGUEVAL BARBONVAL", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e762318157da4b27b9751a39fd3851cbc077d9", "fields": {"nom_de_la_commune": "LANDOUZY LA COUR", "libell_d_acheminement": "LANDOUZY LA COUR", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02404"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f9a4d3bca506fcbf1a66c368d17df598e0c3ef8", "fields": {"nom_de_la_commune": "LUCY LE BOCAGE", "libell_d_acheminement": "LUCY LE BOCAGE", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02443"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e7a65a73b45c8950155d6512c3439656bd5755", "fields": {"nom_de_la_commune": "LESCHELLE", "libell_d_acheminement": "LESCHELLE", "code_postal": "02170", "coordonnees_gps": [50.0019463297, 3.79418155637], "code_commune_insee": "02419"}, "geometry": {"type": "Point", "coordinates": [3.79418155637, 50.0019463297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5270bcb72e2597628231d0f2aff88b1cc793317b", "fields": {"nom_de_la_commune": "LIERVAL", "libell_d_acheminement": "LIERVAL", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02429"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a8de7069863a5db370d57bfcf21410dab05f46", "fields": {"nom_de_la_commune": "LOUATRE", "libell_d_acheminement": "LOUATRE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02441"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8a45e3515bfb1c72ea9338ab80744e7f80f2a5c", "fields": {"nom_de_la_commune": "LEMPIRE", "libell_d_acheminement": "LEMPIRE", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02417"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c5adea78906da4eafa3551bd59bf87e1472204e", "fields": {"nom_de_la_commune": "LANCHY", "libell_d_acheminement": "LANCHY", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02402"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "549cdcb151a0c32c7ea30381423f07022aaa549f", "fields": {"nom_de_la_commune": "LAON", "libell_d_acheminement": "LAON", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02408"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3f0134d219e532fa59b5a745c0b5d41814c7cd", "fields": {"nom_de_la_commune": "LOR", "libell_d_acheminement": "LOR", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02440"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f24624410197a4ab3712b846f9970fda55b888", "fields": {"nom_de_la_commune": "MORGNY EN THIERACHE", "libell_d_acheminement": "MORGNY EN THIERACHE", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02526"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0504e59b512da75df071453b4d141b06073fc5eb", "fields": {"nom_de_la_commune": "MONTREUIL AUX LIONS", "libell_d_acheminement": "MONTREUIL AUX LIONS", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02521"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e101e23f796d5e37e2e49e014bac4c1de0d7d27", "fields": {"nom_de_la_commune": "MONTGRU ST HILAIRE", "libell_d_acheminement": "MONTGRU ST HILAIRE", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02507"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df8b9ebc51b12820c7cd728711b49fcde0e49e6", "fields": {"nom_de_la_commune": "MONT NOTRE DAME", "libell_d_acheminement": "MONT NOTRE DAME", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02520"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8780498374e2b84d43b97328447acc329daf0778", "fields": {"nom_de_la_commune": "MONT D ORIGNY", "libell_d_acheminement": "MONT D ORIGNY", "code_postal": "02390", "coordonnees_gps": [49.8377010181, 3.51039258756], "code_commune_insee": "02503"}, "geometry": {"type": "Point", "coordinates": [3.51039258756, 49.8377010181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f435b83fe84e4bcadfa49f579932e0cb31e1da", "fields": {"nom_de_la_commune": "MONT ST PERE", "libell_d_acheminement": "MONT ST PERE", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02524"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31d17bd06f9ec840fef2d8d65d961a66c173b30e", "fields": {"nom_de_la_commune": "MONTHENAULT", "libell_d_acheminement": "MONTHENAULT", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02508"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce7ce0a8084338280ae3659f076ac26956632209", "fields": {"nom_de_la_commune": "MONDREPUIS", "libell_d_acheminement": "MONDREPUIS", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02495"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "408c500b926d212605ce5fd69b2d505514690f64", "fields": {"nom_de_la_commune": "MONTHUREL", "libell_d_acheminement": "MONTHUREL", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02510"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a10d6e0ef47d203ba7f5bf727a0643f29ce0556", "fields": {"nom_de_la_commune": "MORSAIN", "libell_d_acheminement": "MORSAIN", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02527"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc4a6c235fc4a104918712bb6d0af7853f39a8d", "fields": {"nom_de_la_commune": "LE HERIE LA VIEVILLE", "libell_d_acheminement": "LE HERIE LA VIEVILLE", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02379"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a252f4ed4e57c08b1fd0378db24f9bd0978214ef", "fields": {"nom_de_la_commune": "JUVINCOURT ET DAMARY", "libell_d_acheminement": "JUVINCOURT ET DAMARY", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02399"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65c65cf1911d01c366ae7fd5b8292f46ecb6f7eb", "fields": {"nom_de_la_commune": "HARTENNES ET TAUX", "libell_d_acheminement": "HARTENNES ET TAUX", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02372"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "488c99851f948020ea50fd7a790178c77e2e71fe", "fields": {"nom_de_la_commune": "LEHAUCOURT", "libell_d_acheminement": "LEHAUCOURT", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02374"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c6aab3d1a760acd555a33eb385f9c74bc152dc5", "fields": {"nom_de_la_commune": "JEANCOURT", "libell_d_acheminement": "JEANCOURT", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02390"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ab4cbadf5532b7dfffb0bd8e5291077a7780c5f", "fields": {"nom_de_la_commune": "GUIVRY", "libell_d_acheminement": "GUIVRY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02362"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c3ba6ff97d3def7d2431a361543aa52b8f2af7", "fields": {"nom_de_la_commune": "HIRSON", "libell_d_acheminement": "HIRSON", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02381"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efda8ffa26437eefe9a1712493c685dbac610025", "fields": {"nom_de_la_commune": "JUSSY", "libell_d_acheminement": "JUSSY", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02397"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3196c136240af76fadcba0f70e397bf7f4d76c13", "fields": {"nom_de_la_commune": "GUISE", "libell_d_acheminement": "GUISE", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02361"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17742b74e952b8b585eee2f2883ba9dcdc1a8b9b", "fields": {"nom_de_la_commune": "GUNY", "libell_d_acheminement": "GUNY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02363"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ada60fe21b951558ce6ee35a19c3b3bd849b4dad", "fields": {"nom_de_la_commune": "LA NEUVILLE BOSMONT", "libell_d_acheminement": "LA NEUVILLE BOSMONT", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02545"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fc20496a79ebd742166744cffbb86d6287d96b0", "fields": {"nom_de_la_commune": "LE PLESSIER HULEU", "libell_d_acheminement": "LE PLESSIER HULEU", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02606"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f4a5a68c5f094da7970e3db040505cdd2b03f8e", "fields": {"nom_de_la_commune": "NOYANT ET ACONIN", "libell_d_acheminement": "NOYANT ET ACONIN", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02564"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f20aee1b6ef7f757730b5e50e6380f3fcaf0575", "fields": {"nom_de_la_commune": "OIGNY EN VALOIS", "libell_d_acheminement": "OIGNY EN VALOIS", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02568"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f33515729e2036166eee169757a80be0fedd973b", "fields": {"nom_de_la_commune": "OLLEZY", "libell_d_acheminement": "OLLEZY", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02570"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ea49edd1b07c91408470326cbc6a87e383a59e2", "fields": {"nom_de_la_commune": "PAISSY", "libell_d_acheminement": "PAISSY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02582"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "271e472bbd3feecbc22db635426f8d30cfd80bcc", "fields": {"nom_de_la_commune": "PASLY", "libell_d_acheminement": "PASLY", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02593"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f51311c0358fbabaf19bac8ecff7eabd41be99a", "fields": {"nom_de_la_commune": "MARIZY STE GENEVIEVE", "libell_d_acheminement": "MARIZY STE GENEVIEVE", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02466"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7756e7925a2eeedae32325a2539adc06ba0b54d", "fields": {"nom_de_la_commune": "MAAST ET VIOLAINE", "libell_d_acheminement": "MAAST ET VIOLAINE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02447"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55aff8a72625f4640976e364f2116c74c408401b", "fields": {"nom_de_la_commune": "MARIGNY EN ORXOIS", "libell_d_acheminement": "MARIGNY EN ORXOIS", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02465"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79d7242bde49f6c0aa369137a291000bf146ed13", "fields": {"nom_de_la_commune": "MISSY AUX BOIS", "libell_d_acheminement": "MISSY AUX BOIS", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02485"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66a7a73ab07207e486a1e963c5ccc3bc4ceaf18d", "fields": {"nom_de_la_commune": "LA MALMAISON", "libell_d_acheminement": "LA MALMAISON", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02454"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e7779dd0d007fbc74641cfb26d034c62b431e9", "fields": {"nom_de_la_commune": "MACQUIGNY", "libell_d_acheminement": "MACQUIGNY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02450"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d8b9a305c40b94116db6cb92ec2b47ff39c6e33", "fields": {"nom_de_la_commune": "MAISSEMY", "libell_d_acheminement": "MAISSEMY", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02452"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ed867c32f160dc5c0bc9768545e8eeb79ff81d", "fields": {"nom_de_la_commune": "MARGIVAL", "libell_d_acheminement": "MARGIVAL", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02464"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "869edb50d18e2d9e1dc8442d2593d282bb644e11", "fields": {"nom_de_la_commune": "MANICAMP", "libell_d_acheminement": "MANICAMP", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02456"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d35812223b4254b0177a50cb5f0ccfc3feec0b5", "fields": {"nom_de_la_commune": "MALZY", "libell_d_acheminement": "MALZY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02455"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c20cf34e0ab8813fbfc0e772d64da4e346336c", "fields": {"nom_de_la_commune": "PRESLES ET BOVES", "libell_d_acheminement": "PRESLES ET BOVES", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02620"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5697bc40f502a7c7de94e1858b09876f298b5142", "fields": {"nom_de_la_commune": "PUISEUX EN RETZ", "libell_d_acheminement": "PUISEUX EN RETZ", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02628"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f411d46bb1aefd8947ed8155ed0b4c457303aaab", "fields": {"nom_de_la_commune": "PREMONTRE", "libell_d_acheminement": "PREMONTRE", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02619"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67f6bbf5dc964d611f39bcaa1d1667ad6b4f31f", "fields": {"nom_de_la_commune": "ROGECOURT", "libell_d_acheminement": "ROGECOURT", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02651"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40cdbbdeb3d9ae4b7efaedbe07c83355560562c7", "fields": {"nom_de_la_commune": "PONT ARCY", "libell_d_acheminement": "PONT ARCY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02612"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7baa6d2dc0020e52ab588a1d9825ee24028bd269", "fields": {"nom_de_la_commune": "ROCQUIGNY", "libell_d_acheminement": "ROCQUIGNY", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02650"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c63c8f634a04dba776c45ea8da0dfe6364ca3d", "fields": {"nom_de_la_commune": "PONTRUET", "libell_d_acheminement": "PONTRUET", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02615"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcb9a1a60a5613205c77ac945009ac1e0870bde0", "fields": {"nom_de_la_commune": "PRIEZ", "libell_d_acheminement": "PRIEZ", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02622"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b4749174c209231f5b0a33785f8ff0925f74244", "fields": {"nom_de_la_commune": "ST PIERRE LES FRANQUEVILLE", "libell_d_acheminement": "ST PIERRE LES FRANQUEVILLE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02688"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aef8a8d7b3fdf288be7ee62bca21b9826bd12cb", "fields": {"nom_de_la_commune": "ST ERME OUTRE ET RAMECOURT", "libell_d_acheminement": "ST ERME OUTRE ET RAMECOURT", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02676"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df595b31af1c566bcc0fafa45b26e8ff3e523bf5", "fields": {"nom_de_la_commune": "ST NICOLAS AUX BOIS", "libell_d_acheminement": "ST NICOLAS AUX BOIS", "code_postal": "02410", "coordonnees_gps": [49.5909068066, 3.39907207955], "code_commune_insee": "02685"}, "geometry": {"type": "Point", "coordinates": [3.39907207955, 49.5909068066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26b820304aff83e39e2fad1223b66568eccfc89", "fields": {"nom_de_la_commune": "ROZIERES SUR CRISE", "libell_d_acheminement": "ROZIERES SUR CRISE", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02663"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e85164e769ae00a88f6f362b7c2d99d0d9a7750", "fields": {"nom_de_la_commune": "ROUVROY SUR SERRE", "libell_d_acheminement": "ROUVROY SUR SERRE", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02660"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5224eef819a0e7c8e5c81cd074cc0d07b49e730b", "fields": {"nom_de_la_commune": "ST MARTIN RIVIERE", "libell_d_acheminement": "ST MARTIN RIVIERE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02683"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd5c0d34e8de251d94ecf46b7576e38081ebbdf1", "fields": {"nom_de_la_commune": "ST PIERRE AIGLE", "libell_d_acheminement": "ST PIERRE AIGLE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02687"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0746690344ec74aa7e034219034f0da32c8efee5", "fields": {"nom_de_la_commune": "VERNE", "libell_d_acheminement": "VERNE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25604"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a201bdfe3f7f8b989b331a7b21e86ada9a95e5", "fields": {"nom_de_la_commune": "CRESSAC ST GENIS", "libell_d_acheminement": "CRESSAC ST GENIS", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16115"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f43439cb4566200b4cf41e6d395600909b1d0af5", "fields": {"nom_de_la_commune": "DIRAC", "libell_d_acheminement": "DIRAC", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16120"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f95107e2939a3217b7c7b428bfaee7cc134febe", "fields": {"nom_de_la_commune": "ECHALLAT", "libell_d_acheminement": "ECHALLAT", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16123"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f76da1fbb657d73a0f0848ac70a994316ebafa6", "fields": {"nom_de_la_commune": "FEUILLADE", "libell_d_acheminement": "FEUILLADE", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16137"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ef296f6ae06699f2f3f8ce053d81eb9271789d", "fields": {"nom_de_la_commune": "FONTENILLE", "libell_d_acheminement": "FONTENILLE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16141"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b33e44adc6336106cd6cfa5f9404ce0af3838172", "fields": {"nom_de_la_commune": "FOUSSIGNAC", "libell_d_acheminement": "FOUSSIGNAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16145"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b34c2a8c813232370d56e751c24d0188f7363aa", "fields": {"nom_de_la_commune": "GONDEVILLE", "libell_d_acheminement": "GONDEVILLE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16153"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a94b33cab6e4b2b4b183770fd0f6170c7adf6b", "fields": {"nom_de_la_commune": "GOND PONTOUVRE", "libell_d_acheminement": "GOND PONTOUVRE", "code_postal": "16160", "coordonnees_gps": [45.6793140943, 0.165488990587], "code_commune_insee": "16154"}, "geometry": {"type": "Point", "coordinates": [0.165488990587, 45.6793140943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0823067c75c8d3f5307c703ed3aa2f4622422a72", "fields": {"nom_de_la_commune": "LE GRAND MADIEU", "libell_d_acheminement": "LE GRAND MADIEU", "code_postal": "16450", "coordonnees_gps": [45.9168932329, 0.460927666406], "code_commune_insee": "16157"}, "geometry": {"type": "Point", "coordinates": [0.460927666406, 45.9168932329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8afc1d02ce274827e67890418db4fea05960a224", "fields": {"nom_de_la_commune": "HIESSE", "libell_d_acheminement": "HIESSE", "code_postal": "16490", "coordonnees_gps": [46.0379756155, 0.534996364854], "code_commune_insee": "16164"}, "geometry": {"type": "Point", "coordinates": [0.534996364854, 46.0379756155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5190da281e84a25e57f1fb82b74d27a880f09a7f", "fields": {"nom_de_la_commune": "HOULETTE", "libell_d_acheminement": "HOULETTE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16165"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a291c897762a324b91fa116c4801610fb341dcc6", "fields": {"nom_de_la_commune": "L ISLE D ESPAGNAC", "libell_d_acheminement": "L ISLE D ESPAGNAC", "code_postal": "16340", "coordonnees_gps": [45.6638639482, 0.199285365252], "code_commune_insee": "16166"}, "geometry": {"type": "Point", "coordinates": [0.199285365252, 45.6638639482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ddd3d90402032cb14746809d4e2afca3428e28d", "fields": {"nom_de_la_commune": "JAVREZAC", "libell_d_acheminement": "JAVREZAC", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16169"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84870c1bb9e62d135cc5189c7cc5fc836eb0d8c5", "fields": {"nom_de_la_commune": "JUILLAC LE COQ", "libell_d_acheminement": "JUILLAC LE COQ", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16171"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a3dded816bddbc6ed094d7fe08b8481bf8dbeff", "fields": {"nom_de_la_commune": "LACHAISE", "libell_d_acheminement": "LACHAISE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16176"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eef0c8fb1a8d20a6cfcc684ae278efd725e0917", "fields": {"nom_de_la_commune": "LAGARDE SUR LE NE", "libell_d_acheminement": "LAGARDE SUR LE NE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16178"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00f69a93a6887239da4fd9f2d68baabe583de5f9", "fields": {"nom_de_la_commune": "LESIGNAC DURAND", "libell_d_acheminement": "LESIGNAC DURAND", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16183"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd3e2a07b0a101f7bf777e1bfa8123cc464c7516", "fields": {"nom_de_la_commune": "LIGNE", "libell_d_acheminement": "LIGNE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16185"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17566a661ebef33fcfc6667d02a66c29cea4f8e9", "fields": {"nom_de_la_commune": "LIGNIERES SONNEVILLE", "libell_d_acheminement": "LIGNIERES SONNEVILLE", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16186"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efe05c88f237350af7df08726aeb7e76c8cdf822", "fields": {"nom_de_la_commune": "LUPSAULT", "libell_d_acheminement": "LUPSAULT", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16194"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6fef65831ae5a2458bc08e993346a5018db591", "fields": {"nom_de_la_commune": "LUXE", "libell_d_acheminement": "LUXE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16196"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f4d4fbd3d497bd04c2f13ff6deb65f2abb3953e", "fields": {"nom_de_la_commune": "MAINE DE BOIXE", "libell_d_acheminement": "MAINE DE BOIXE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16200"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afab9e93491a8bd11c1cdc866418366bb0c8b709", "fields": {"nom_de_la_commune": "MALAVILLE", "libell_d_acheminement": "MALAVILLE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16204"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cffc5875ccfd3eaeb8200a6c273f50b2c94c60d8", "fields": {"nom_de_la_commune": "MARCILLAC LANVILLE", "libell_d_acheminement": "MARCILLAC LANVILLE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16207"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67bb06e50e4a6307dfa839d3393b4f09229b9668", "fields": {"nom_de_la_commune": "MARILLAC LE FRANC", "libell_d_acheminement": "MARILLAC LE FRANC", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16209"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a134e08f2d4ff4f286b2b989c0204ab44cd193", "fields": {"nom_de_la_commune": "MASSIGNAC", "libell_d_acheminement": "MASSIGNAC", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16212"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e542b3e4eec6ba0b07b702cedcb3c510c17e18", "fields": {"nom_de_la_commune": "MONTIGNE", "libell_d_acheminement": "MONTIGNE", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16228"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862c2928921f7f97aa2286c5c9d7480ac22707b5", "fields": {"nom_de_la_commune": "MONTMOREAU ST CYBARD", "libell_d_acheminement": "MONTMOREAU ST CYBARD", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16230"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eae106e3cc31b496dbd2f6266a43ea05ce97577", "fields": {"nom_de_la_commune": "MOUTHIERS SUR BOEME", "libell_d_acheminement": "MOUTHIERS SUR BOEME", "code_postal": "16440", "coordonnees_gps": [45.5763660352, 0.064435228401], "code_commune_insee": "16236"}, "geometry": {"type": "Point", "coordinates": [0.064435228401, 45.5763660352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95899c22daf8318adc9a96f6571ecc6ee595e0d3", "fields": {"code_postal": "16240", "code_commune_insee": "16253", "libell_d_acheminement": "PAIZAY NAUDOUIN EMBOURIE", "ligne_5": "EMBOURIE", "nom_de_la_commune": "PAIZAY NAUDOUIN EMBOURIE", "coordonnees_gps": [46.0204608634, 0.0623105228243]}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc532ac91586ca773069772b1f008b061e151ef7", "fields": {"nom_de_la_commune": "PARZAC", "libell_d_acheminement": "PARZAC", "code_postal": "16450", "coordonnees_gps": [45.9168932329, 0.460927666406], "code_commune_insee": "16255"}, "geometry": {"type": "Point", "coordinates": [0.460927666406, 45.9168932329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f33d8782b1e3f77fc6f8d8129a89d07338b8097", "fields": {"nom_de_la_commune": "PERIGNAC", "libell_d_acheminement": "PERIGNAC", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16258"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa7030ec60bcb51c242533d4926422e3ca6e123e", "fields": {"nom_de_la_commune": "PILLAC", "libell_d_acheminement": "PILLAC", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16260"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a29ed5590576684bc3c41c9806f8efe1a3bf6ac4", "fields": {"nom_de_la_commune": "PLASSAC ROUFFIAC", "libell_d_acheminement": "PLASSAC ROUFFIAC", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16263"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb851ff2cd6fb2d22b5999d655165b7f76a79a63", "fields": {"nom_de_la_commune": "PLEUVILLE", "libell_d_acheminement": "PLEUVILLE", "code_postal": "16490", "coordonnees_gps": [46.0379756155, 0.534996364854], "code_commune_insee": "16264"}, "geometry": {"type": "Point", "coordinates": [0.534996364854, 46.0379756155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ca3a8b49f9a2ba2eb0a600feb0a6d6c0268bac", "fields": {"nom_de_la_commune": "RANCOGNE", "libell_d_acheminement": "RANCOGNE", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16274"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06702dc57a0dec96a49c7ee058b6b0b16830c357", "fields": {"nom_de_la_commune": "ROUFFIAC", "libell_d_acheminement": "ROUFFIAC", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16284"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59f264ac339a2ba85e56ea2ea329d305683b2202", "fields": {"nom_de_la_commune": "RUELLE SUR TOUVRE", "libell_d_acheminement": "RUELLE SUR TOUVRE", "code_postal": "16600", "coordonnees_gps": [45.6754215966, 0.266312411242], "code_commune_insee": "16291"}, "geometry": {"type": "Point", "coordinates": [0.266312411242, 45.6754215966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a0bb6978af5d5dd91a65c2e083244dc4354867b", "fields": {"nom_de_la_commune": "ST ANGEAU", "libell_d_acheminement": "ST ANGEAU", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16300"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47ec52115d326eb1ccffb8d0e9e628ef7ce4c427", "fields": {"nom_de_la_commune": "ST AULAIS LA CHAPELLE", "libell_d_acheminement": "ST AULAIS LA CHAPELLE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16301"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71eb8b2b9a016be9c30fccc751fb1ecb89568994", "fields": {"nom_de_la_commune": "ST CLAUD", "libell_d_acheminement": "ST CLAUD", "code_postal": "16450", "coordonnees_gps": [45.9168932329, 0.460927666406], "code_commune_insee": "16308"}, "geometry": {"type": "Point", "coordinates": [0.460927666406, 45.9168932329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc4648f42371e8d39713fd32b6bc592f3f989ee2", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16321"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55029c3288c288410b9d474d994445d7cb1ee88c", "fields": {"nom_de_la_commune": "ST LAURENT DE BELZAGOT", "libell_d_acheminement": "ST LAURENT DE BELZAGOT", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16328"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ca681a181478052a738c444191139669de1394", "fields": {"nom_de_la_commune": "ST PREUIL", "libell_d_acheminement": "ST PREUIL", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16343"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf25c0b0d7edc434976e96418f9c91274a798921", "fields": {"nom_de_la_commune": "ST QUENTIN SUR CHARENTE", "libell_d_acheminement": "ST QUENTIN SUR CHARENTE", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16345"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b77a0a8e9f96b59c765fe5a249c677678baa830", "fields": {"nom_de_la_commune": "ST ROMAIN", "libell_d_acheminement": "ST ROMAIN", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16347"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a06cfbdd390cdda7eb76680ea4ac70d11bcfd4a", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "16290", "coordonnees_gps": [45.681734469, 0.0127639877624], "code_commune_insee": "16348"}, "geometry": {"type": "Point", "coordinates": [0.0127639877624, 45.681734469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9592fe9b6a2d85301626aadef712fe98e86da913", "fields": {"nom_de_la_commune": "SALLES D ANGLES", "libell_d_acheminement": "SALLES D ANGLES", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16359"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3070a69089d9f76be66e68ca9d3d7b6931bcbfeb", "fields": {"nom_de_la_commune": "SALLES DE BARBEZIEUX", "libell_d_acheminement": "SALLES DE BARBEZIEUX", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16360"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f836979e8de1c98ac65319e1ed737875836be82f", "fields": {"nom_de_la_commune": "SUAUX", "libell_d_acheminement": "SUAUX", "code_postal": "16260", "coordonnees_gps": [45.8489084837, 0.405198517802], "code_commune_insee": "16375"}, "geometry": {"type": "Point", "coordinates": [0.405198517802, 45.8489084837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7075265b4e6d26f9758593f5ae75872fd32e3798", "fields": {"nom_de_la_commune": "LA TACHE", "libell_d_acheminement": "LA TACHE", "code_postal": "16260", "coordonnees_gps": [45.8489084837, 0.405198517802], "code_commune_insee": "16377"}, "geometry": {"type": "Point", "coordinates": [0.405198517802, 45.8489084837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "454f4b922b774a7fa421767cab1ddbe483e56a55", "fields": {"nom_de_la_commune": "LE TATRE", "libell_d_acheminement": "LE TATRE", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16380"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f5c1af0598c555df11590eca3255ba7c2a35ceb", "fields": {"nom_de_la_commune": "TORSAC", "libell_d_acheminement": "TORSAC", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16382"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79df5c3f22cbb3067f64c88eb4d577effd10afda", "fields": {"nom_de_la_commune": "TOUZAC", "libell_d_acheminement": "TOUZAC", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16386"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c465a0ad1ad4ad52516303e8f4377975b0e4adb7", "fields": {"nom_de_la_commune": "TUZIE", "libell_d_acheminement": "TUZIE", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16391"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8641d2e11566775dcb668e7bdbeba649647ef639", "fields": {"nom_de_la_commune": "VAUX ROUILLAC", "libell_d_acheminement": "VAUX ROUILLAC", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16395"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5503c75501b80087de04a6d84f49c57b9b1b3a78", "fields": {"nom_de_la_commune": "VENTOUSE", "libell_d_acheminement": "VENTOUSE", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16396"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5027843418e6ba553644be0a3e74195eb67858c", "fields": {"nom_de_la_commune": "VERDILLE", "libell_d_acheminement": "VERDILLE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16397"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5203bf7905da5948a99da5238dfcf209ae8eff1a", "fields": {"nom_de_la_commune": "VERNEUIL", "libell_d_acheminement": "VERNEUIL", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16398"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "601479d9c30241b05c73ae5f636a28fe89661e46", "fields": {"nom_de_la_commune": "VERTEUIL SUR CHARENTE", "libell_d_acheminement": "VERTEUIL SUR CHARENTE", "code_postal": "16510", "coordonnees_gps": [45.9782104986, 0.226047066423], "code_commune_insee": "16400"}, "geometry": {"type": "Point", "coordinates": [0.226047066423, 45.9782104986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efea0bb410b0b19adf21ca5f39bdd7953aadb18d", "fields": {"nom_de_la_commune": "VIBRAC", "libell_d_acheminement": "VIBRAC", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16402"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7acb10f13cce03fd5c9ff9ae02e57473940270e2", "fields": {"nom_de_la_commune": "LE VIEUX CERIER", "libell_d_acheminement": "LE VIEUX CERIER", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16403"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9e93b4ab4a9909fcd8ca9c26aa2bb9d04bcff05", "fields": {"nom_de_la_commune": "VIEUX RUFFEC", "libell_d_acheminement": "VIEUX RUFFEC", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16404"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b8236c90fc548ac2bb908d7225201673a714d53", "fields": {"nom_de_la_commune": "VILLEJESUS", "libell_d_acheminement": "VILLEJESUS", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16411"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3042106600c424414befbc85a8f92bd8ee93fbf", "fields": {"nom_de_la_commune": "VILLEJOUBERT", "libell_d_acheminement": "VILLEJOUBERT", "code_postal": "16560", "coordonnees_gps": [45.7971229421, 0.228616838557], "code_commune_insee": "16412"}, "geometry": {"type": "Point", "coordinates": [0.228616838557, 45.7971229421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c9b5480ddbbe28396f7d160900b22ca3406a7c", "fields": {"nom_de_la_commune": "ALLAS CHAMPAGNE", "libell_d_acheminement": "ALLAS CHAMPAGNE", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17006"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e55a24e30d0f3ec8167af3ff66a1f686158601", "fields": {"code_postal": "17230", "code_commune_insee": "17008", "libell_d_acheminement": "ANDILLY", "ligne_5": "SERIGNY", "nom_de_la_commune": "ANDILLY", "coordonnees_gps": [46.286014889, -1.01509211949]}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ef3dc924fa90349b1046ecc2ecd78545d4cf9f", "fields": {"nom_de_la_commune": "ANNEPONT", "libell_d_acheminement": "ANNEPONT", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17011"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9221e318cfbcebb54d412aa8f67d2ea6dbd1e03b", "fields": {"nom_de_la_commune": "ARCHIAC", "libell_d_acheminement": "ARCHIAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17016"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5084b3867549baae1803966733ca89737076015c", "fields": {"nom_de_la_commune": "AULNAY", "libell_d_acheminement": "AULNAY", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17024"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4035c160d0893e6b2c469be999ef7667f28fd46e", "fields": {"code_postal": "17470", "code_commune_insee": "17024", "libell_d_acheminement": "AULNAY", "ligne_5": "SALLES LES AULNAY", "nom_de_la_commune": "AULNAY", "coordonnees_gps": [46.0200499858, -0.337018455128]}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27cf36c4cac10b42dcc267341549b5643556fa6", "fields": {"nom_de_la_commune": "BALANZAC", "libell_d_acheminement": "BALANZAC", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17030"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4334bf5e4ef8d80e0db23558f28245b57bb01781", "fields": {"nom_de_la_commune": "BEURLAY", "libell_d_acheminement": "BEURLAY", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17045"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b2418b7bbd3baa65ae0266f4b88e9d71ffe3b0", "fields": {"nom_de_la_commune": "BOIS", "libell_d_acheminement": "BOIS", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17050"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0da977cff4cc9454cb93e4872e619f032d06c06", "fields": {"nom_de_la_commune": "LE BOIS PLAGE EN RE", "libell_d_acheminement": "LE BOIS PLAGE EN RE", "code_postal": "17580", "coordonnees_gps": [46.1829462788, -1.37733812185], "code_commune_insee": "17051"}, "geometry": {"type": "Point", "coordinates": [-1.37733812185, 46.1829462788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47f3f34df491d513ce4e6f3b03da5e94478f4a00", "fields": {"nom_de_la_commune": "BOISREDON", "libell_d_acheminement": "BOISREDON", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17052"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9e14cb7e021e0314e3c7d2a912a5b1125353eba", "fields": {"nom_de_la_commune": "BOSCAMNANT", "libell_d_acheminement": "BOSCAMNANT", "code_postal": "17360", "coordonnees_gps": [45.1692213805, -0.0733315684265], "code_commune_insee": "17055"}, "geometry": {"type": "Point", "coordinates": [-0.0733315684265, 45.1692213805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ea278b208f7645af1825206d7641719afd4b07", "fields": {"nom_de_la_commune": "BREUILLET", "libell_d_acheminement": "BREUILLET", "code_postal": "17920", "coordonnees_gps": [45.6938468387, -1.05527970385], "code_commune_insee": "17064"}, "geometry": {"type": "Point", "coordinates": [-1.05527970385, 45.6938468387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d36fe1b079acc11892ab2ced697eecba60b2650", "fields": {"nom_de_la_commune": "CHAILLEVETTE", "libell_d_acheminement": "CHAILLEVETTE", "code_postal": "17890", "coordonnees_gps": [45.7304903713, -1.06851724099], "code_commune_insee": "17079"}, "geometry": {"type": "Point", "coordinates": [-1.06851724099, 45.7304903713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d363fa8dd9f8c39523a54f8137fa8285b2663777", "fields": {"code_postal": "17480", "code_commune_insee": "17093", "libell_d_acheminement": "LE CHATEAU D OLERON", "ligne_5": "LA CHEVALERIE", "nom_de_la_commune": "LE CHATEAU D OLERON", "coordonnees_gps": [45.8814200371, -1.21657707924]}, "geometry": {"type": "Point", "coordinates": [-1.21657707924, 45.8814200371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f7c72b54895624ec769738e694b12ecb42d41b2", "fields": {"nom_de_la_commune": "LE CHAY", "libell_d_acheminement": "LE CHAY", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17097"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18105c14d8c52392ae8af07e36f08496c9c81f54", "fields": {"nom_de_la_commune": "CHENAC ST SEURIN D UZET", "libell_d_acheminement": "CHENAC ST SEURIN D UZET", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17098"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aebee3e95ea67d6ce7378f08863773586aac447", "fields": {"nom_de_la_commune": "CHEPNIERS", "libell_d_acheminement": "CHEPNIERS", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17099"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f309c9eb64e2e6b0be601ab5bf5e4da4c9612de3", "fields": {"nom_de_la_commune": "CHERMIGNAC", "libell_d_acheminement": "CHERMIGNAC", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17102"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feba723938892e73110ca5a05e5e6ad41db6e549", "fields": {"nom_de_la_commune": "CHEVANCEAUX", "libell_d_acheminement": "CHEVANCEAUX", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17104"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7211ff92de9cd930958562a2b57b077c5f4c350", "fields": {"nom_de_la_commune": "CLERAC", "libell_d_acheminement": "CLERAC", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17110"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "459e144838e776681936a8fb0d45e28efff1466e", "fields": {"nom_de_la_commune": "CONSAC", "libell_d_acheminement": "CONSAC", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17116"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8abca01ee192b745fe7002c5465b2798e9223e8", "fields": {"nom_de_la_commune": "CORME ECLUSE", "libell_d_acheminement": "CORME ECLUSE", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17119"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934f9a952c19e65fc6b7531f10a03739855a98a0", "fields": {"nom_de_la_commune": "COULONGES", "libell_d_acheminement": "COULONGES", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17122"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8942e32b9f676b922263f3f66ac7048860fe98b0", "fields": {"nom_de_la_commune": "COUX", "libell_d_acheminement": "COUX", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17130"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6553cd173178442f31201d21431d7e493e6066", "fields": {"nom_de_la_commune": "CRAZANNES", "libell_d_acheminement": "CRAZANNES", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17134"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21458f120ded67ed240b28e9322dd925db445049", "fields": {"nom_de_la_commune": "CROIX CHAPEAU", "libell_d_acheminement": "CROIX CHAPEAU", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17136"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05fec6d577ed2d24e3cc47e573c98519bb866bbc", "fields": {"code_postal": "17139", "code_commune_insee": "17142", "libell_d_acheminement": "DOMPIERRE SUR MER", "ligne_5": "CHAGNOLET", "nom_de_la_commune": "DOMPIERRE SUR MER", "coordonnees_gps": [46.1839503995, -1.06844117713]}, "geometry": {"type": "Point", "coordinates": [-1.06844117713, 46.1839503995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4157e667047f7a846d4e0206e871b000686c81d", "fields": {"code_postal": "17620", "code_commune_insee": "17146", "libell_d_acheminement": "ECHILLAIS", "ligne_5": "LA RENAISSANCE", "nom_de_la_commune": "ECHILLAIS", "coordonnees_gps": [45.8464645946, -0.95771650444]}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049ca7a0b44916cb3e803b423e655c4f6dde8ae1", "fields": {"nom_de_la_commune": "L EGUILLE", "libell_d_acheminement": "L EGUILLE", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17151"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "447661f370640c57d9173d0f3e53a34c81cf07d8", "fields": {"nom_de_la_commune": "LES ESSARDS", "libell_d_acheminement": "LES ESSARDS", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17154"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e24823b107c87920c48c63c6a0acdad92fc5abf", "fields": {"nom_de_la_commune": "ETAULES", "libell_d_acheminement": "ETAULES", "code_postal": "17750", "coordonnees_gps": [45.7233727549, -1.09909741065], "code_commune_insee": "17155"}, "geometry": {"type": "Point", "coordinates": [-1.09909741065, 45.7233727549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7447554c9ecb5ce84ca162a411b75de4df695ee", "fields": {"nom_de_la_commune": "FENIOUX", "libell_d_acheminement": "FENIOUX", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17157"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c0a3e8f055e1b5f96d171b4eb72f2645b1d52a8", "fields": {"nom_de_la_commune": "FLEAC SUR SEUGNE", "libell_d_acheminement": "FLEAC SUR SEUGNE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17159"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa07518c7e6d362e5720bca146b8f50d155c449", "fields": {"code_postal": "43360", "code_commune_insee": "43038", "libell_d_acheminement": "BOURNONCLE ST PIERRE", "ligne_5": "ARVANT", "nom_de_la_commune": "BOURNONCLE ST PIERRE", "coordonnees_gps": [45.3429722324, 3.30288813488]}, "geometry": {"type": "Point", "coordinates": [3.30288813488, 45.3429722324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d4da76925d16f0f08885fc2354d64c95523890", "fields": {"nom_de_la_commune": "CAYRES", "libell_d_acheminement": "CAYRES", "code_postal": "43510", "coordonnees_gps": [44.9244140229, 3.76769965575], "code_commune_insee": "43042"}, "geometry": {"type": "Point", "coordinates": [3.76769965575, 44.9244140229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "899b8c51bf748f69f2a42eee4b4a61e8de26cd86", "fields": {"nom_de_la_commune": "CHAMALIERES SUR LOIRE", "libell_d_acheminement": "CHAMALIERES SUR LOIRE", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43049"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "548f6089e56a79c12509ced8f59101dcb53b7e05", "fields": {"nom_de_la_commune": "CHARRAIX", "libell_d_acheminement": "CHARRAIX", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43060"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "994ab40e47e7819cf0e6489a9105bddb595928ba", "fields": {"nom_de_la_commune": "CHASSIGNOLLES", "libell_d_acheminement": "CHASSIGNOLLES", "code_postal": "43440", "coordonnees_gps": [45.3510344646, 3.5299252821], "code_commune_insee": "43064"}, "geometry": {"type": "Point", "coordinates": [3.5299252821, 45.3510344646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940004ad9ebff3b97f8f7e04f5221b9021dc156d", "fields": {"nom_de_la_commune": "CHAUDEYROLLES", "libell_d_acheminement": "CHAUDEYROLLES", "code_postal": "43430", "coordonnees_gps": [44.9885742524, 4.21536792056], "code_commune_insee": "43066"}, "geometry": {"type": "Point", "coordinates": [4.21536792056, 44.9885742524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e41e3baed2092e40dd79f822594e1f423eb7eb56", "fields": {"nom_de_la_commune": "CONNANGLES", "libell_d_acheminement": "CONNANGLES", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43076"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e1deedf2b8bee21ab1ed4768c771050e41add4", "fields": {"nom_de_la_commune": "DUNIERES", "libell_d_acheminement": "DUNIERES", "code_postal": "43220", "coordonnees_gps": [45.218017746, 4.40270777123], "code_commune_insee": "43087"}, "geometry": {"type": "Point", "coordinates": [4.40270777123, 45.218017746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f849afd4f07c1b429d76df3b7742c7b90d5a934", "fields": {"nom_de_la_commune": "ESPALY ST MARCEL", "libell_d_acheminement": "ESPALY ST MARCEL", "code_postal": "43000", "coordonnees_gps": [45.0562801759, 3.86447846564], "code_commune_insee": "43089"}, "geometry": {"type": "Point", "coordinates": [3.86447846564, 45.0562801759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "110067e9d235822b2fc6b9b5d08143f079f7c3b5", "fields": {"nom_de_la_commune": "ESPLANTAS VAZEILLES", "libell_d_acheminement": "ESPLANTAS VAZEILLES", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43090"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b46c1d8a90570861d8c0addb3b84049b873ef858", "fields": {"nom_de_la_commune": "FIX ST GENEYS", "libell_d_acheminement": "FIX ST GENEYS", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43095"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a3ff7d6d89c3753eba90553ebb8d7775e6a363", "fields": {"nom_de_la_commune": "GRENIER MONTGON", "libell_d_acheminement": "GRENIER MONTGON", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "43103"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a02408476df5b0ed905e9aa8e4d4a5325a59b3cf", "fields": {"nom_de_la_commune": "JAX", "libell_d_acheminement": "JAX", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43106"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1397dc609e05c67682ef41eb80765e18be8c1bdf", "fields": {"nom_de_la_commune": "JULLIANGES", "libell_d_acheminement": "JULLIANGES", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43108"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7029e3d57d62058461495b5f6872e9e95bd07e1c", "fields": {"code_postal": "43340", "code_commune_insee": "43111", "libell_d_acheminement": "LANDOS", "ligne_5": "LA SAUVETAT", "nom_de_la_commune": "LANDOS", "coordonnees_gps": [44.842698307, 3.79076623546]}, "geometry": {"type": "Point", "coordinates": [3.79076623546, 44.842698307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec883bd2b2e2a793c9c52ac0f7ccce2af54cd8d7", "fields": {"nom_de_la_commune": "LANTRIAC", "libell_d_acheminement": "LANTRIAC", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43113"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2666ef05009dfc9c4a9853c11ae8e563b656ffa0", "fields": {"nom_de_la_commune": "LAUSSONNE", "libell_d_acheminement": "LAUSSONNE", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43115"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "951e46c97a724c752406c1018d96a61a1df19d39", "fields": {"nom_de_la_commune": "LAVAUDIEU", "libell_d_acheminement": "LAVAUDIEU", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43117"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "842b65d6b86e5a20abc014d31c5f91a42822033b", "fields": {"nom_de_la_commune": "LAVOUTE SUR LOIRE", "libell_d_acheminement": "LAVOUTE SUR LOIRE", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43119"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc66abc2e66d1fc5c24f669619f8220c4ef02392", "fields": {"nom_de_la_commune": "MALVIERES", "libell_d_acheminement": "MALVIERES", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43128"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee20184c8c4be28daafc08de68be1fae3f46aff6", "fields": {"nom_de_la_commune": "MONISTROL SUR LOIRE", "libell_d_acheminement": "MONISTROL SUR LOIRE", "code_postal": "43120", "coordonnees_gps": [45.2982913973, 4.18798743532], "code_commune_insee": "43137"}, "geometry": {"type": "Point", "coordinates": [4.18798743532, 45.2982913973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ec5049a0a0c64b5c9fadbedbac5ab83c49a5fe", "fields": {"nom_de_la_commune": "MONTFAUCON EN VELAY", "libell_d_acheminement": "MONTFAUCON EN VELAY", "code_postal": "43290", "coordonnees_gps": [45.1673455076, 4.34679652069], "code_commune_insee": "43141"}, "geometry": {"type": "Point", "coordinates": [4.34679652069, 45.1673455076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7629dafe2cb6f9919aebcfaa69959290d06818c", "fields": {"nom_de_la_commune": "MONTREGARD", "libell_d_acheminement": "MONTREGARD", "code_postal": "43290", "coordonnees_gps": [45.1673455076, 4.34679652069], "code_commune_insee": "43142"}, "geometry": {"type": "Point", "coordinates": [4.34679652069, 45.1673455076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e9cbe4a3fc8bbfe62da344ea81a3dfd7616dd5", "fields": {"nom_de_la_commune": "PAULHAGUET", "libell_d_acheminement": "PAULHAGUET", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43148"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a03c4b433d12e549f925c11d5e5508ef41083e8", "fields": {"nom_de_la_commune": "LE PUY EN VELAY", "libell_d_acheminement": "LE PUY EN VELAY", "code_postal": "43000", "coordonnees_gps": [45.0562801759, 3.86447846564], "code_commune_insee": "43157"}, "geometry": {"type": "Point", "coordinates": [3.86447846564, 45.0562801759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b2f4b4f3cfca05b18e7ea9408907032d76aea8", "fields": {"nom_de_la_commune": "RAUCOULES", "libell_d_acheminement": "RAUCOULES", "code_postal": "43290", "coordonnees_gps": [45.1673455076, 4.34679652069], "code_commune_insee": "43159"}, "geometry": {"type": "Point", "coordinates": [4.34679652069, 45.1673455076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "481ca9ab42356f2a9ac6b8ad624ab1bb3f15759c", "fields": {"nom_de_la_commune": "ROCHE EN REGNIER", "libell_d_acheminement": "ROCHE EN REGNIER", "code_postal": "43810", "coordonnees_gps": [45.2402907147, 3.91556730056], "code_commune_insee": "43164"}, "geometry": {"type": "Point", "coordinates": [3.91556730056, 45.2402907147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6faa6eb476de2c9cd92b96ae74cc80b39892b13f", "fields": {"nom_de_la_commune": "ST ARCONS DE BARGES", "libell_d_acheminement": "ST ARCONS DE BARGES", "code_postal": "43420", "coordonnees_gps": [44.79692139, 3.8871844325], "code_commune_insee": "43168"}, "geometry": {"type": "Point", "coordinates": [3.8871844325, 44.79692139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ae9ed929f4487eafa0784716ab218f8c086bea", "fields": {"nom_de_la_commune": "ST BONNET LE FROID", "libell_d_acheminement": "ST BONNET LE FROID", "code_postal": "43290", "coordonnees_gps": [45.1673455076, 4.34679652069], "code_commune_insee": "43172"}, "geometry": {"type": "Point", "coordinates": [4.34679652069, 45.1673455076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f52971f42f2b59477a02b1a34fb373611edd7a5", "fields": {"nom_de_la_commune": "ST DIDIER SUR DOULON", "libell_d_acheminement": "ST DIDIER SUR DOULON", "code_postal": "43440", "coordonnees_gps": [45.3510344646, 3.5299252821], "code_commune_insee": "43178"}, "geometry": {"type": "Point", "coordinates": [3.5299252821, 45.3510344646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc365e958b85edee76d274fdfdb9c3327df08a94", "fields": {"nom_de_la_commune": "ST ETIENNE DU VIGAN", "libell_d_acheminement": "ST ETIENNE DU VIGAN", "code_postal": "43420", "coordonnees_gps": [44.79692139, 3.8871844325], "code_commune_insee": "43180"}, "geometry": {"type": "Point", "coordinates": [3.8871844325, 44.79692139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cebed8e00dc66d2b9969c6a799ee0909868c8e1", "fields": {"nom_de_la_commune": "STE EUGENIE DE VILLENEUVE", "libell_d_acheminement": "STE EUGENIE DE VILLENEUVE", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43183"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1edb5a7f55285390b1af7c69f237661eb3f7d7c", "fields": {"nom_de_la_commune": "ST FRONT", "libell_d_acheminement": "ST FRONT", "code_postal": "43550", "coordonnees_gps": [44.9734407897, 4.13957696833], "code_commune_insee": "43186"}, "geometry": {"type": "Point", "coordinates": [4.13957696833, 44.9734407897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ada5a8ac648976fc01fed58ee6b2fb2cb904dd", "fields": {"nom_de_la_commune": "ST GEORGES LAGRICOL", "libell_d_acheminement": "ST GEORGES LAGRICOL", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43189"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6628d2f9fd18d9c5f14207439e37a4b4cd03eec6", "fields": {"nom_de_la_commune": "ST JULIEN DU PINET", "libell_d_acheminement": "ST JULIEN DU PINET", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43203"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5292727a2e0237e325f26a671753ab044f8d84c4", "fields": {"nom_de_la_commune": "ST LAURENT CHABREUGES", "libell_d_acheminement": "ST LAURENT CHABREUGES", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43207"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76412f2ad4842b6e9d184f9e7dfb33fa6eba14b", "fields": {"nom_de_la_commune": "ST PAL DE MONS", "libell_d_acheminement": "ST PAL DE MONS", "code_postal": "43620", "coordonnees_gps": [45.2519727569, 4.30691844433], "code_commune_insee": "43213"}, "geometry": {"type": "Point", "coordinates": [4.30691844433, 45.2519727569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1e97be67dae1381ea6101537ced5edd9e236359", "fields": {"nom_de_la_commune": "ST PAUL DE TARTAS", "libell_d_acheminement": "ST PAUL DE TARTAS", "code_postal": "43420", "coordonnees_gps": [44.79692139, 3.8871844325], "code_commune_insee": "43215"}, "geometry": {"type": "Point", "coordinates": [3.8871844325, 44.79692139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52471bd2ba5112ffd4bf8306b23e392ab7caad3b", "fields": {"nom_de_la_commune": "ST PREJET ARMANDON", "libell_d_acheminement": "ST PREJET ARMANDON", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43219"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8352b39172e72680b264616e959027e9bc032e28", "fields": {"nom_de_la_commune": "SEMBADEL", "libell_d_acheminement": "SEMBADEL", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43237"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "058e29fa174af58b4ed7b7ea04267b19f299cbe3", "fields": {"nom_de_la_commune": "SIAUGUES STE MARIE", "libell_d_acheminement": "SIAUGUES STE MARIE", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43239"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0e47b969bb440f0997b5cf86b946e51f23c460b", "fields": {"nom_de_la_commune": "SOLIGNAC SOUS ROCHE", "libell_d_acheminement": "SOLIGNAC SOUS ROCHE", "code_postal": "43130", "coordonnees_gps": [45.2367556015, 4.006325814], "code_commune_insee": "43240"}, "geometry": {"type": "Point", "coordinates": [4.006325814, 45.2367556015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b731be56ac631b1dec7861b4ee4bdb1f5995eb60", "fields": {"nom_de_la_commune": "TAILHAC", "libell_d_acheminement": "TAILHAC", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43242"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ec8891dec173c2bcc6b69ab4a29070f303c7b3a", "fields": {"nom_de_la_commune": "THORAS", "libell_d_acheminement": "THORAS", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43245"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9c6a36a179e64c5bbbd7413682c52cb5678580", "fields": {"code_postal": "43580", "code_commune_insee": "43245", "libell_d_acheminement": "THORAS", "ligne_5": "CROISANCES", "nom_de_la_commune": "THORAS", "coordonnees_gps": [44.9273994452, 3.63004731198]}, "geometry": {"type": "Point", "coordinates": [3.63004731198, 44.9273994452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5039633213f45d9c2d1b1cc3d44cb09c0a329b9a", "fields": {"nom_de_la_commune": "TORSIAC", "libell_d_acheminement": "TORSIAC", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "43247"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e44f6aa2252ca609368f78658d6c7c2b6ea6d721", "fields": {"nom_de_la_commune": "VALPRIVAS", "libell_d_acheminement": "VALPRIVAS", "code_postal": "43210", "coordonnees_gps": [45.3265198809, 4.10184881262], "code_commune_insee": "43249"}, "geometry": {"type": "Point", "coordinates": [4.10184881262, 45.3265198809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d40d97ee803ac9d527f2eed250ecc3a49aa8de76", "fields": {"nom_de_la_commune": "LE VERNET", "libell_d_acheminement": "LE VERNET", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43260"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f6a1bcec04931ddfa8af65b4046830e1829373", "fields": {"nom_de_la_commune": "VEZEZOUX", "libell_d_acheminement": "VEZEZOUX", "code_postal": "43390", "coordonnees_gps": [45.377762878, 3.39697021869], "code_commune_insee": "43261"}, "geometry": {"type": "Point", "coordinates": [3.39697021869, 45.377762878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b025f436d9625e162c246a282c809882969c34d8", "fields": {"nom_de_la_commune": "VIEILLE BRIOUDE", "libell_d_acheminement": "VIEILLE BRIOUDE", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43262"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f90e84280cd61bd6200af53ef989e63879380144", "fields": {"nom_de_la_commune": "VIELPRAT", "libell_d_acheminement": "VIELPRAT", "code_postal": "43490", "coordonnees_gps": [44.856451175, 3.93428361287], "code_commune_insee": "43263"}, "geometry": {"type": "Point", "coordinates": [3.93428361287, 44.856451175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e63e13c41b82dbf75e223d33206b3ae1a23fea9", "fields": {"nom_de_la_commune": "VILLENEUVE D ALLIER", "libell_d_acheminement": "VILLENEUVE D ALLIER", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43264"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e74ba9b29a5d6cc1b1be2124a935dee29a8c95fd", "fields": {"nom_de_la_commune": "BATZ SUR MER", "libell_d_acheminement": "BATZ SUR MER", "code_postal": "44740", "coordonnees_gps": [47.2846734504, -2.47393710058], "code_commune_insee": "44010"}, "geometry": {"type": "Point", "coordinates": [-2.47393710058, 47.2846734504]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609f4978ab1380d3843fc7ff76ed94099c631f3a", "fields": {"nom_de_la_commune": "LA BERNERIE EN RETZ", "libell_d_acheminement": "LA BERNERIE EN RETZ", "code_postal": "44760", "coordonnees_gps": [47.0707006392, -2.00607135756], "code_commune_insee": "44012"}, "geometry": {"type": "Point", "coordinates": [-2.00607135756, 47.0707006392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "496708605039fd4856a1dd107330d94fe321199e", "fields": {"nom_de_la_commune": "BESNE", "libell_d_acheminement": "BESNE", "code_postal": "44160", "coordonnees_gps": [47.4265793893, -2.10093858399], "code_commune_insee": "44013"}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3461c95539cd32149b646bafcc479b1dede9444", "fields": {"nom_de_la_commune": "LE BIGNON", "libell_d_acheminement": "LE BIGNON", "code_postal": "44140", "coordonnees_gps": [47.0608389163, -1.45654054931], "code_commune_insee": "44014"}, "geometry": {"type": "Point", "coordinates": [-1.45654054931, 47.0608389163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99744a95f4c608bbde2203dae2a8e822d0b02c14", "fields": {"nom_de_la_commune": "BLAIN", "libell_d_acheminement": "BLAIN", "code_postal": "44130", "coordonnees_gps": [47.4415843575, -1.78877692421], "code_commune_insee": "44015"}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d5682e7c6180cfbf23be8dd8763fe781f4fd83", "fields": {"nom_de_la_commune": "LA BOISSIERE DU DORE", "libell_d_acheminement": "LA BOISSIERE DU DORE", "code_postal": "44430", "coordonnees_gps": [47.2258283333, -1.29550283149], "code_commune_insee": "44016"}, "geometry": {"type": "Point", "coordinates": [-1.29550283149, 47.2258283333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ba15794c99638eeb76787fc8fb8020b92983e5", "fields": {"nom_de_la_commune": "BOUGUENAIS", "libell_d_acheminement": "BOUGUENAIS", "code_postal": "44340", "coordonnees_gps": [47.1707627594, -1.61663580743], "code_commune_insee": "44020"}, "geometry": {"type": "Point", "coordinates": [-1.61663580743, 47.1707627594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9be26fa11c827e2005ffbcf032e65c7b1473e943", "fields": {"code_postal": "44340", "code_commune_insee": "44020", "libell_d_acheminement": "BOUGUENAIS", "ligne_5": "LES COUETS", "nom_de_la_commune": "BOUGUENAIS", "coordonnees_gps": [47.1707627594, -1.61663580743]}, "geometry": {"type": "Point", "coordinates": [-1.61663580743, 47.1707627594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a659f95a9fd4db7f21d32b39ea08ca62b8810475", "fields": {"code_postal": "44580", "code_commune_insee": "44021", "libell_d_acheminement": "VILLENEUVE EN RETZ", "ligne_5": "BOURGNEUF EN RETZ", "nom_de_la_commune": "VILLENEUVE EN RETZ", "coordonnees_gps": [47.0379472575, -1.92596110196]}, "geometry": {"type": "Point", "coordinates": [-1.92596110196, 47.0379472575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f2c0f0a2a837740522774b2bdc322d8f70fd37c", "fields": {"code_postal": "44580", "code_commune_insee": "44021", "libell_d_acheminement": "VILLENEUVE EN RETZ", "ligne_5": "FRESNAY EN RETZ", "nom_de_la_commune": "VILLENEUVE EN RETZ", "coordonnees_gps": [47.0379472575, -1.92596110196]}, "geometry": {"type": "Point", "coordinates": [-1.92596110196, 47.0379472575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fac773ddd51295b65542721ff26cd73e45a9197", "fields": {"nom_de_la_commune": "BOUSSAY", "libell_d_acheminement": "BOUSSAY", "code_postal": "44190", "coordonnees_gps": [47.0757597302, -1.26309617738], "code_commune_insee": "44022"}, "geometry": {"type": "Point", "coordinates": [-1.26309617738, 47.0757597302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b042b84055d99d1ba08ac593c834e40dfb12cc4a", "fields": {"nom_de_la_commune": "CARQUEFOU", "libell_d_acheminement": "CARQUEFOU", "code_postal": "44470", "coordonnees_gps": [47.3000422915, -1.4503189654], "code_commune_insee": "44026"}, "geometry": {"type": "Point", "coordinates": [-1.4503189654, 47.3000422915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e86fc0b62628c6856e82415d19399260c20e32e", "fields": {"code_postal": "44450", "code_commune_insee": "44029", "libell_d_acheminement": "DIVATTE SUR LOIRE", "ligne_5": "LA CHAPELLE BASSE MER", "nom_de_la_commune": "DIVATTE SUR LOIRE", "coordonnees_gps": [47.2609944569, -1.38232107674]}, "geometry": {"type": "Point", "coordinates": [-1.38232107674, 47.2609944569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "061d7f615d579049b1f30490e3c1fba8cbb767cb", "fields": {"nom_de_la_commune": "LA CHAPELLE LAUNAY", "libell_d_acheminement": "LA CHAPELLE LAUNAY", "code_postal": "44260", "coordonnees_gps": [47.3429940898, -1.93537477196], "code_commune_insee": "44033"}, "geometry": {"type": "Point", "coordinates": [-1.93537477196, 47.3429940898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffecc6f57ba242209c6b36d794c866a758e2b6da", "fields": {"nom_de_la_commune": "CHATEAU THEBAUD", "libell_d_acheminement": "CHATEAU THEBAUD", "code_postal": "44690", "coordonnees_gps": [47.1278112688, -1.40123093208], "code_commune_insee": "44037"}, "geometry": {"type": "Point", "coordinates": [-1.40123093208, 47.1278112688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7df3d4fd528612d87c85025f98af64bcea66fc5", "fields": {"code_postal": "44118", "code_commune_insee": "44041", "libell_d_acheminement": "LA CHEVROLIERE", "ligne_5": "PASSAY", "nom_de_la_commune": "LA CHEVROLIERE", "coordonnees_gps": [47.0889695478, -1.59676742494]}, "geometry": {"type": "Point", "coordinates": [-1.59676742494, 47.0889695478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec6c06dab6b244f09ccd6720ed13ae5f915b0d2", "fields": {"nom_de_la_commune": "CORDEMAIS", "libell_d_acheminement": "CORDEMAIS", "code_postal": "44360", "coordonnees_gps": [47.2931220587, -1.77460002675], "code_commune_insee": "44045"}, "geometry": {"type": "Point", "coordinates": [-1.77460002675, 47.2931220587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9d398dcd83eafe679ec5a44e2c660da55009f1", "fields": {"nom_de_la_commune": "CROSSAC", "libell_d_acheminement": "CROSSAC", "code_postal": "44160", "coordonnees_gps": [47.4265793893, -2.10093858399], "code_commune_insee": "44050"}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74db8c7cd353ca34fb931b32cae08da8e6faca20", "fields": {"nom_de_la_commune": "ERBRAY", "libell_d_acheminement": "ERBRAY", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44054"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "687d8533c4dfddfe46cbabec4bf7e4c4a9435522", "fields": {"nom_de_la_commune": "GUENROUET", "libell_d_acheminement": "GUENROUET", "code_postal": "44530", "coordonnees_gps": [47.5092008769, -2.00892310392], "code_commune_insee": "44068"}, "geometry": {"type": "Point", "coordinates": [-2.00892310392, 47.5092008769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "875590e5adfec4f68c1adec98c3234a9099bfc55", "fields": {"nom_de_la_commune": "HERIC", "libell_d_acheminement": "HERIC", "code_postal": "44810", "coordonnees_gps": [47.42821115, -1.64065236011], "code_commune_insee": "44073"}, "geometry": {"type": "Point", "coordinates": [-1.64065236011, 47.42821115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9cc8b726c9a3df8151b9757d2d7e06e20a9de8d", "fields": {"nom_de_la_commune": "INDRE", "libell_d_acheminement": "INDRE", "code_postal": "44610", "coordonnees_gps": [47.1984071351, -1.67155607359], "code_commune_insee": "44074"}, "geometry": {"type": "Point", "coordinates": [-1.67155607359, 47.1984071351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3166f058af86870f7822ac50e63274540761bd9", "fields": {"nom_de_la_commune": "JOUE SUR ERDRE", "libell_d_acheminement": "JOUE SUR ERDRE", "code_postal": "44440", "coordonnees_gps": [47.4983275474, -1.33409165092], "code_commune_insee": "44077"}, "geometry": {"type": "Point", "coordinates": [-1.33409165092, 47.4983275474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74722b8a0da984a7cc837579739727ac5cf13620", "fields": {"code_postal": "44440", "code_commune_insee": "44077", "libell_d_acheminement": "JOUE SUR ERDRE", "ligne_5": "NOTRE DAME DES LANGUEURS", "nom_de_la_commune": "JOUE SUR ERDRE", "coordonnees_gps": [47.4983275474, -1.33409165092]}, "geometry": {"type": "Point", "coordinates": [-1.33409165092, 47.4983275474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82832b94d9ed0d83710921cb029bb7fd048a5865", "fields": {"nom_de_la_commune": "LA MARNE", "libell_d_acheminement": "LA MARNE", "code_postal": "44270", "coordonnees_gps": [46.9745110591, -1.78089818288], "code_commune_insee": "44090"}, "geometry": {"type": "Point", "coordinates": [-1.78089818288, 46.9745110591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96bb7a9befcbbe1a508726973b7c2ccc08bb721c", "fields": {"nom_de_la_commune": "MISSILLAC", "libell_d_acheminement": "MISSILLAC", "code_postal": "44780", "coordonnees_gps": [47.48816665, -2.17748670642], "code_commune_insee": "44098"}, "geometry": {"type": "Point", "coordinates": [-2.17748670642, 47.48816665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "010ff362eecf0a022f3a304fb5f2023d9679ddbd", "fields": {"nom_de_la_commune": "MONNIERES", "libell_d_acheminement": "MONNIERES", "code_postal": "44690", "coordonnees_gps": [47.1278112688, -1.40123093208], "code_commune_insee": "44100"}, "geometry": {"type": "Point", "coordinates": [-1.40123093208, 47.1278112688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "627768165bc4e724153013c5bf494bde92661da3", "fields": {"nom_de_la_commune": "NORT SUR ERDRE", "libell_d_acheminement": "NORT SUR ERDRE", "code_postal": "44390", "coordonnees_gps": [47.4571485959, -1.52512056844], "code_commune_insee": "44110"}, "geometry": {"type": "Point", "coordinates": [-1.52512056844, 47.4571485959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "997b7d205536d9934734fd4f3e046ec98d11fa79", "fields": {"nom_de_la_commune": "NOTRE DAME DES LANDES", "libell_d_acheminement": "NOTRE DAME DES LANDES", "code_postal": "44130", "coordonnees_gps": [47.4415843575, -1.78877692421], "code_commune_insee": "44111"}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beb7d3f8f44171921de87ce5774c86d69cdca5ac", "fields": {"nom_de_la_commune": "PIERRIC", "libell_d_acheminement": "PIERRIC", "code_postal": "44290", "coordonnees_gps": [47.6456298963, -1.81807007019], "code_commune_insee": "44123"}, "geometry": {"type": "Point", "coordinates": [-1.81807007019, 47.6456298963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e617891896ed38f8389e9fc13a374b9af886bf6", "fields": {"nom_de_la_commune": "LA PLAINE SUR MER", "libell_d_acheminement": "LA PLAINE SUR MER", "code_postal": "44770", "coordonnees_gps": [47.1411450003, -2.19113263493], "code_commune_insee": "44126"}, "geometry": {"type": "Point", "coordinates": [-2.19113263493, 47.1411450003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "509bedca3c17308401ce50e74ca3637e6e0771a8", "fields": {"code_postal": "44630", "code_commune_insee": "44128", "libell_d_acheminement": "PLESSE", "ligne_5": "LE DRESNY", "nom_de_la_commune": "PLESSE", "coordonnees_gps": [47.5557950636, -1.89023163627]}, "geometry": {"type": "Point", "coordinates": [-1.89023163627, 47.5557950636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eab7ff2e5b1a7a2062f174136ddd7ff19945914", "fields": {"nom_de_la_commune": "PONT ST MARTIN", "libell_d_acheminement": "PONT ST MARTIN", "code_postal": "44860", "coordonnees_gps": [47.1293725692, -1.59139240082], "code_commune_insee": "44130"}, "geometry": {"type": "Point", "coordinates": [-1.59139240082, 47.1293725692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1208af58e359573f32d480f8cf5c53f27bdd7fca", "fields": {"code_postal": "44860", "code_commune_insee": "44130", "libell_d_acheminement": "PONT ST MARTIN", "ligne_5": "VIAIS", "nom_de_la_commune": "PONT ST MARTIN", "coordonnees_gps": [47.1293725692, -1.59139240082]}, "geometry": {"type": "Point", "coordinates": [-1.59139240082, 47.1293725692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "798e6e8bd73b707437e2dbf58065c8ea7610f8f8", "fields": {"nom_de_la_commune": "POUILLE LES COTEAUX", "libell_d_acheminement": "POUILLE LES COTEAUX", "code_postal": "44522", "coordonnees_gps": [47.4363371088, -1.20212334851], "code_commune_insee": "44134"}, "geometry": {"type": "Point", "coordinates": [-1.20212334851, 47.4363371088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72fc7278d0ea920edfe9526910f4cbd7bbc4af69", "fields": {"nom_de_la_commune": "LE POULIGUEN", "libell_d_acheminement": "LE POULIGUEN", "code_postal": "44510", "coordonnees_gps": [47.2703996777, -2.43224200434], "code_commune_insee": "44135"}, "geometry": {"type": "Point", "coordinates": [-2.43224200434, 47.2703996777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d4629fccde97468ba3346c4b19fa96bf0d49deb", "fields": {"nom_de_la_commune": "LA REMAUDIERE", "libell_d_acheminement": "LA REMAUDIERE", "code_postal": "44430", "coordonnees_gps": [47.2258283333, -1.29550283149], "code_commune_insee": "44141"}, "geometry": {"type": "Point", "coordinates": [-1.29550283149, 47.2258283333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b97e8f478cc71a103989f6f37797622b41e6e872", "fields": {"nom_de_la_commune": "ROUANS", "libell_d_acheminement": "ROUANS", "code_postal": "44640", "coordonnees_gps": [47.1953946232, -1.83239436965], "code_commune_insee": "44145"}, "geometry": {"type": "Point", "coordinates": [-1.83239436965, 47.1953946232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4be837e4117d4db2dbff21f1bee282d4813c6ca5", "fields": {"nom_de_la_commune": "ROUGE", "libell_d_acheminement": "ROUGE", "code_postal": "44660", "coordonnees_gps": [47.7784822888, -1.45044243144], "code_commune_insee": "44146"}, "geometry": {"type": "Point", "coordinates": [-1.45044243144, 47.7784822888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "947afdff62265bceb6ad459efa8b65321b746ee7", "fields": {"nom_de_la_commune": "SAFFRE", "libell_d_acheminement": "SAFFRE", "code_postal": "44390", "coordonnees_gps": [47.4571485959, -1.52512056844], "code_commune_insee": "44149"}, "geometry": {"type": "Point", "coordinates": [-1.52512056844, 47.4571485959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c37e36152d3cb4f4df3589169cd18f3209e084", "fields": {"nom_de_la_commune": "ST ETIENNE DE MONTLUC", "libell_d_acheminement": "ST ETIENNE DE MONTLUC", "code_postal": "44360", "coordonnees_gps": [47.2931220587, -1.77460002675], "code_commune_insee": "44158"}, "geometry": {"type": "Point", "coordinates": [-1.77460002675, 47.2931220587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73b3ed1734e5e477dee89345d902bf97bdd36d1", "fields": {"nom_de_la_commune": "ST GEREON", "libell_d_acheminement": "ST GEREON", "code_postal": "44150", "coordonnees_gps": [47.3950525616, -1.14692474643], "code_commune_insee": "44160"}, "geometry": {"type": "Point", "coordinates": [-1.14692474643, 47.3950525616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9341393c9c5603c1f0b8581fa23e8711d00108b8", "fields": {"code_postal": "44150", "code_commune_insee": "44163", "libell_d_acheminement": "VAIR SUR LOIRE", "ligne_5": "ANETZ", "nom_de_la_commune": "VAIR SUR LOIRE", "coordonnees_gps": [47.3950525616, -1.14692474643]}, "geometry": {"type": "Point", "coordinates": [-1.14692474643, 47.3950525616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ea927574438461ec2eef8f00b7425113505273a", "fields": {"nom_de_la_commune": "ST JULIEN DE VOUVANTES", "libell_d_acheminement": "ST JULIEN DE VOUVANTES", "code_postal": "44670", "coordonnees_gps": [47.6418522644, -1.22470955782], "code_commune_insee": "44170"}, "geometry": {"type": "Point", "coordinates": [-1.22470955782, 47.6418522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdaa3c406d000e9034c0010ff279de3089731c35", "fields": {"nom_de_la_commune": "STE REINE DE BRETAGNE", "libell_d_acheminement": "STE REINE DE BRETAGNE", "code_postal": "44160", "coordonnees_gps": [47.4265793893, -2.10093858399], "code_commune_insee": "44189"}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5c8cfc84adac738d4745eb4c346fb3da45bd78e", "fields": {"nom_de_la_commune": "ST SULPICE DES LANDES", "libell_d_acheminement": "ST SULPICE DES LANDES", "code_postal": "44540", "coordonnees_gps": [47.5525167785, -1.15686679562], "code_commune_insee": "44191"}, "geometry": {"type": "Point", "coordinates": [-1.15686679562, 47.5525167785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbe188df3edd30960b8fa73dec2ffac0d9e35eb", "fields": {"nom_de_la_commune": "ST VINCENT DES LANDES", "libell_d_acheminement": "ST VINCENT DES LANDES", "code_postal": "44590", "coordonnees_gps": [47.6829911414, -1.60317365389], "code_commune_insee": "44193"}, "geometry": {"type": "Point", "coordinates": [-1.60317365389, 47.6829911414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebedc7f7d3bd3c1ca09329cbba91f417f99c047a", "fields": {"nom_de_la_commune": "TREILLIERES", "libell_d_acheminement": "TREILLIERES", "code_postal": "44119", "coordonnees_gps": [47.3409762189, -1.62124994195], "code_commune_insee": "44209"}, "geometry": {"type": "Point", "coordinates": [-1.62124994195, 47.3409762189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb065cc73b8e38c9d8f6f94b03f7805d5105a00a", "fields": {"nom_de_la_commune": "VARENGUEBEC", "libell_d_acheminement": "VARENGUEBEC", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50617"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "359e910bece6b5f1ebbd0c5aea82341a105d7b1a", "fields": {"nom_de_la_commune": "VAROUVILLE", "libell_d_acheminement": "VAROUVILLE", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50618"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daa6192ddc3370bef64ecfa72beea7e16226de1c", "fields": {"nom_de_la_commune": "VAUDRIMESNIL", "libell_d_acheminement": "VAUDRIMESNIL", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50622"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "497811c8c2e02d3f290623c3a76ede409b668d92", "fields": {"nom_de_la_commune": "LES VEYS", "libell_d_acheminement": "LES VEYS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50631"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c52978c0fa4a6744dea3ca051e188332510ba0d", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "BARBONVAL", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fed3e1bc88ca9db2ae095a096284ad3cac5f3cd", "fields": {"nom_de_la_commune": "LARGNY SUR AUTOMNE", "libell_d_acheminement": "LARGNY SUR AUTOMNE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02410"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c174683e125255062ac3c53fb1329c93d28a9b3", "fields": {"nom_de_la_commune": "LEUILLY SOUS COUCY", "libell_d_acheminement": "LEUILLY SOUS COUCY", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02423"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58b2db36103438c36476373cf43f37c89f708289", "fields": {"nom_de_la_commune": "LAVAQUERESSE", "libell_d_acheminement": "LAVAQUERESSE", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02414"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a925fd83344147be96d3edb9a119fcce2b6ad450", "fields": {"nom_de_la_commune": "LAVERSINE", "libell_d_acheminement": "LAVERSINE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02415"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0f7d4a5ef25b138a2eb0ddff157afb50c311686", "fields": {"nom_de_la_commune": "LONGPONT", "libell_d_acheminement": "LONGPONT", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02438"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84b6074175a88eba45e34190945fe6f15611c930", "fields": {"nom_de_la_commune": "JONCOURT", "libell_d_acheminement": "JONCOURT", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02392"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cff8d553ee6d8ff1755068782769a41acad0659", "fields": {"nom_de_la_commune": "LATILLY", "libell_d_acheminement": "LATILLY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02411"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46cf1e1a7877e85fe108e36675fe6758e52668d1", "fields": {"nom_de_la_commune": "LEME", "libell_d_acheminement": "LEME", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02416"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7f64d465c34ff981f50ba6e9353138456447d0", "fields": {"nom_de_la_commune": "LA BASTIDE SUR L HERS", "libell_d_acheminement": "LA BASTIDE SUR L HERS", "code_postal": "09600", "coordonnees_gps": [42.9966813157, 1.86782868426], "code_commune_insee": "09043"}, "geometry": {"type": "Point", "coordinates": [1.86782868426, 42.9966813157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "935e4eb96cb1b6ecc71761615adf1ec2556596ef", "fields": {"nom_de_la_commune": "LA BASTIDE DE BESPLAS", "libell_d_acheminement": "LA BASTIDE DE BESPLAS", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09038"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c756767eedcd26516ce28a9bd46179f960c609c4", "fields": {"nom_de_la_commune": "AULUS LES BAINS", "libell_d_acheminement": "AULUS LES BAINS", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09029"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56607422897b16b2c6078a9e5356a6a3c4fe231d", "fields": {"nom_de_la_commune": "AX LES THERMES", "libell_d_acheminement": "AX LES THERMES", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09032"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "419fee3f1cb506584157583597f09769e0c16994", "fields": {"nom_de_la_commune": "BETCHAT", "libell_d_acheminement": "BETCHAT", "code_postal": "09160", "coordonnees_gps": [43.0402483269, 1.04449509042], "code_commune_insee": "09054"}, "geometry": {"type": "Point", "coordinates": [1.04449509042, 43.0402483269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb9ec7ac870f66d343e28fe8db2f4e4cbeb920c", "fields": {"nom_de_la_commune": "ARVIGNA", "libell_d_acheminement": "ARVIGNA", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09022"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29340784f17908121728c9d7a68a726a70ccafd4", "fields": {"nom_de_la_commune": "BESSET", "libell_d_acheminement": "BESSET", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09052"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73ef8fd85dfd986b0ede157630896615077a727", "fields": {"nom_de_la_commune": "ASTON", "libell_d_acheminement": "ASTON", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09024"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1392816a94a6209a120213737991eca126a4a755", "fields": {"nom_de_la_commune": "AULOS", "libell_d_acheminement": "AULOS", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09028"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0148651eafeea13bb1e708f580c7946b0a5b97e8", "fields": {"nom_de_la_commune": "ST MARTIN LA CAMPAGNE", "libell_d_acheminement": "ST MARTIN LA CAMPAGNE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27570"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c87538df5aeea5b9797372edbddeb527a2387a7", "fields": {"nom_de_la_commune": "STE OPPORTUNE DU BOSC", "libell_d_acheminement": "STE OPPORTUNE DU BOSC", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27576"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeced92151a4fe8bfe2372873371e254cd011a65", "fields": {"nom_de_la_commune": "ST OUEN DE PONTCHEUIL", "libell_d_acheminement": "ST OUEN DE PONTCHEUIL", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27579"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d364b70d8963b1f6c589e1ccf0d1b22386fbcac9", "fields": {"nom_de_la_commune": "ST OUEN DU TILLEUL", "libell_d_acheminement": "ST OUEN DU TILLEUL", "code_postal": "27670", "coordonnees_gps": [49.2917091598, 0.924488601867], "code_commune_insee": "27582"}, "geometry": {"type": "Point", "coordinates": [0.924488601867, 49.2917091598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f9289bc06442ca9bae738a42a2d5e1ba5b211c", "fields": {"nom_de_la_commune": "ST PAUL DE FOURQUES", "libell_d_acheminement": "ST PAUL DE FOURQUES", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27584"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84b3772fe395be15a839469ac78d25ddafc41104", "fields": {"nom_de_la_commune": "ST PIERRE DE CORMEILLES", "libell_d_acheminement": "ST PIERRE DE CORMEILLES", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27591"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c57c80af52a026091c6336f80b3b939054b192e", "fields": {"nom_de_la_commune": "ST PIERRE DES FLEURS", "libell_d_acheminement": "ST PIERRE DES FLEURS", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27593"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c167519974737d32cff016cdd5dfd80c78cd3a2", "fields": {"nom_de_la_commune": "ST PIERRE DU BOSGUERARD", "libell_d_acheminement": "ST PIERRE DU BOSGUERARD", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27595"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac2f08da07fd597c3feb5eefb08abee8fa94f39", "fields": {"nom_de_la_commune": "ST PIERRE DU VAUVRAY", "libell_d_acheminement": "ST PIERRE DU VAUVRAY", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27598"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d07c1dbbf3ec4d90e21f88d088d5211f257629f1", "fields": {"nom_de_la_commune": "ST VICTOR DE CHRETIENVILLE", "libell_d_acheminement": "ST VICTOR DE CHRETIENVILLE", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27608"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "424bbc21db580b88f284f5883f331ba0a00b6eb0", "fields": {"nom_de_la_commune": "ST VICTOR D EPINE", "libell_d_acheminement": "ST VICTOR D EPINE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27609"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b075252a973d090c53adedaa6aa67dfbd7b918", "fields": {"nom_de_la_commune": "SASSEY", "libell_d_acheminement": "SASSEY", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27615"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49718074fb1199956136a1d434ff415d66eb70c7", "fields": {"nom_de_la_commune": "LA SAUSSAYE", "libell_d_acheminement": "LA SAUSSAYE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27616"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ca09263d2a43624f81540efdb3a6970b9477f5d", "fields": {"nom_de_la_commune": "THIERVILLE", "libell_d_acheminement": "THIERVILLE", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27631"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "281d698390cd88bd04f71b17502743ce26dc1e3f", "fields": {"nom_de_la_commune": "LE THIL", "libell_d_acheminement": "LE THIL EN VEXIN", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27632"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f58e3123c1228633c902f54bc62299e3e4836d7e", "fields": {"nom_de_la_commune": "LES THILLIERS EN VEXIN", "libell_d_acheminement": "LES THILLIERS EN VEXIN", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27633"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2cf6e7b46eec94f4d1944d94dd7b9ab358afad5", "fields": {"nom_de_la_commune": "TOURVILLE SUR PONT AUDEMER", "libell_d_acheminement": "TOURVILLE SUR PONT AUDEMER", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27655"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e78e26bab5757b680a960383c471c05692c7e8", "fields": {"nom_de_la_commune": "LE TREMBLAY OMONVILLE", "libell_d_acheminement": "LE TREMBLAY OMONVILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27658"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42add04b9e5aa6b5db341ef2c3250c8755cc1f5e", "fields": {"nom_de_la_commune": "LA TRINITE", "libell_d_acheminement": "LA TRINITE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27659"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f0573bdb1df8c5dfa990da6d4cd0446cab258e3", "fields": {"nom_de_la_commune": "LE TRONCQ", "libell_d_acheminement": "LE TRONCQ", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27663"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1495d6ef7d6cc261980238ab05a45145c29cc0bc", "fields": {"nom_de_la_commune": "TROUVILLE LA HAULE", "libell_d_acheminement": "TROUVILLE LA HAULE", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27665"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a287ed0520ca166d4e0ccfc9448b796110c0765", "fields": {"nom_de_la_commune": "VEZILLON", "libell_d_acheminement": "VEZILLON", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27683"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37cd5cdab3dc9485690410e0555f3a8540d93aba", "fields": {"nom_de_la_commune": "VILLERS EN VEXIN", "libell_d_acheminement": "VILLERS EN VEXIN", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27690"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814c30dd365c11eaa98aea85825766e495877b79", "fields": {"nom_de_la_commune": "VILLETTES", "libell_d_acheminement": "VILLETTES", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27692"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1eee9f80733d7b9f8743c926550d439541d7e7", "fields": {"nom_de_la_commune": "VILLIERS EN DESOEUVRE", "libell_d_acheminement": "VILLIERS EN DESOEUVRE", "code_postal": "27640", "coordonnees_gps": [48.9602482824, 1.4448225375], "code_commune_insee": "27696"}, "geometry": {"type": "Point", "coordinates": [1.4448225375, 48.9602482824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3e312a5e3fd73e4c8fda22da4dabb001f2166fe", "fields": {"nom_de_la_commune": "ALLAINES MERVILLIERS", "libell_d_acheminement": "ALLAINES MERVILLIERS", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28002"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e79907f9fccc316fc299939b68608e15926b85", "fields": {"nom_de_la_commune": "ALLONNES", "libell_d_acheminement": "ALLONNES", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28004"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b6a28466dd1bfbc2261c853b0dac74b609e74be", "fields": {"nom_de_la_commune": "ARDELU", "libell_d_acheminement": "ARDELU", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28009"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56867e10345ce6bb5ac6cd646dd23c1d74560b05", "fields": {"nom_de_la_commune": "ARGENVILLIERS", "libell_d_acheminement": "ARGENVILLIERS", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28010"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d49daa27e04fa9331f99e4884fb880f41e9e0f3", "fields": {"code_postal": "28700", "code_commune_insee": "28015", "libell_d_acheminement": "AUNEAU BLEURY ST SYMPHORIEN", "ligne_5": "BLEURY ST SYMPHORIEN", "nom_de_la_commune": "AUNEAU BLEURY ST SYMPHORIEN", "coordonnees_gps": [48.4174133692, 1.78775113893]}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51e29399bb56c53b9567dc975b0fcfed00b75e58", "fields": {"nom_de_la_commune": "LES AUTELS VILLEVILLON", "libell_d_acheminement": "LES AUTELS VILLEVILLON", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28016"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7307cfef1e6b220fd9238c581b220834d897d8f7", "fields": {"nom_de_la_commune": "BARMAINVILLE", "libell_d_acheminement": "BARMAINVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28025"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54f8390643462c7ab6be5113ec6c455cad8aff17", "fields": {"nom_de_la_commune": "BEAUCHE", "libell_d_acheminement": "BEAUCHE", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28030"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f80d4ed13ebf690ee900b98aaa898051e1e763", "fields": {"nom_de_la_commune": "BOISSY EN DROUAIS", "libell_d_acheminement": "BOISSY EN DROUAIS", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28045"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cab44a97f8f2eb460c801af3c5f9d608d2c7fa4", "fields": {"nom_de_la_commune": "LA BOURDINIERE ST LOUP", "libell_d_acheminement": "LA BOURDINIERE ST LOUP", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28048"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fda18c1d8741f458942c9d100ffcb1edcd376cae", "fields": {"nom_de_la_commune": "BONNEVAL", "libell_d_acheminement": "BONNEVAL", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28051"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1cd18bc4bc0033acfd2f464b3f47434fe6dd5f", "fields": {"nom_de_la_commune": "BOUTIGNY PROUAIS", "libell_d_acheminement": "BOUTIGNY PROUAIS", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28056"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6cf51a6e935a7cfdc58167470a9fe87084f1a37", "fields": {"code_postal": "28410", "code_commune_insee": "28056", "libell_d_acheminement": "BOUTIGNY PROUAIS", "ligne_5": "PROUAIS", "nom_de_la_commune": "BOUTIGNY PROUAIS", "coordonnees_gps": [48.777838041, 1.50962562015]}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2212830f885d4af3a84f9f57a9f4944499ac281f", "fields": {"nom_de_la_commune": "BROUE", "libell_d_acheminement": "BROUE", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28062"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1902b6a238d585a165d2679d2a5ca287740bcdda", "fields": {"nom_de_la_commune": "BULLAINVILLE", "libell_d_acheminement": "BULLAINVILLE", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28065"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "713a2fd5f6f36c6bbc025253fe8cd93ecf91adba", "fields": {"nom_de_la_commune": "BULLOU", "libell_d_acheminement": "BULLOU", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28066"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa55392c011cebca822d073c0885bb4149e90a96", "fields": {"nom_de_la_commune": "CERNAY", "libell_d_acheminement": "CERNAY", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28067"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4dd9ac8712971a3da4d3ac0271628ec7c088be6", "fields": {"nom_de_la_commune": "CHAMPROND EN GATINE", "libell_d_acheminement": "CHAMPROND EN GATINE", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28071"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e57d9ee6dc217e5090f563e67e75e14933e4c53b", "fields": {"nom_de_la_commune": "LA CHAPELLE FORTIN", "libell_d_acheminement": "LA CHAPELLE FORTIN", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28077"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f8e68ead0f3046a38eb9a77dba492bd70ca34ee", "fields": {"nom_de_la_commune": "CHAPELLE GUILLAUME", "libell_d_acheminement": "CHAPELLE GUILLAUME", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28078"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "577b4446a77bda08600710571746e9ec51982edc", "fields": {"nom_de_la_commune": "CHATAINCOURT", "libell_d_acheminement": "CHATAINCOURT", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28087"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ca225b668883bf05b515016bed02e798e77d1dd", "fields": {"nom_de_la_commune": "CHAUFFOURS", "libell_d_acheminement": "CHAUFFOURS", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28095"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af24a5df176e3c4827298cafe0f1087d48e2af7b", "fields": {"nom_de_la_commune": "CHERISY", "libell_d_acheminement": "CHERISY", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28098"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49bda17cf00ddd6ad7356f2ee18c8c489899095", "fields": {"nom_de_la_commune": "CLOYES SUR LE LOIR", "libell_d_acheminement": "CLOYES SUR LE LOIR", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28103"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad217090b13f892607c196010485260b495536d", "fields": {"nom_de_la_commune": "COMBRES", "libell_d_acheminement": "COMBRES", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28105"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b04dc70b937283adcff7129e0c7944432d72df", "fields": {"nom_de_la_commune": "CORMAINVILLE", "libell_d_acheminement": "CORMAINVILLE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28108"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3d01ecd802d14d92ba4ef93b1e6470cc9ee5a1d", "fields": {"nom_de_la_commune": "LA CROIX DU PERCHE", "libell_d_acheminement": "LA CROIX DU PERCHE", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28119"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7a3557192117610e0ec1e21b82c64ff98bd5e02", "fields": {"nom_de_la_commune": "DANCY", "libell_d_acheminement": "DANCY", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28126"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce27ef30948575ab794329661b37bcf11622d29", "fields": {"nom_de_la_commune": "DONNEMAIN ST MAMES", "libell_d_acheminement": "DONNEMAIN ST MAMES", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28132"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f411895eadf12211da64fbddfd629dbde5840b4d", "fields": {"nom_de_la_commune": "DROUE SUR DROUETTE", "libell_d_acheminement": "DROUE SUR DROUETTE", "code_postal": "28230", "coordonnees_gps": [48.5972768911, 1.69206934612], "code_commune_insee": "28135"}, "geometry": {"type": "Point", "coordinates": [1.69206934612, 48.5972768911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca599fe5679baa5ab06e30a319defb924460de55", "fields": {"nom_de_la_commune": "ESCORPAIN", "libell_d_acheminement": "ESCORPAIN", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28143"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6610291b603a1549fc99df50ed99bec5338314b", "fields": {"nom_de_la_commune": "LA FERTE VIDAME", "libell_d_acheminement": "LA FERTE VIDAME", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28149"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b04c68ef5a5eddf9431d1bd4cfc435dcebda1f", "fields": {"nom_de_la_commune": "FRIAIZE", "libell_d_acheminement": "FRIAIZE", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28166"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c49aaa74f71173dedec993295539b357698166b", "fields": {"nom_de_la_commune": "GALLARDON", "libell_d_acheminement": "GALLARDON", "code_postal": "28320", "coordonnees_gps": [48.5411997507, 1.69133759252], "code_commune_insee": "28168"}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe149251f95ceff26740f215b2ad39ed29437711", "fields": {"nom_de_la_commune": "GARANCIERES EN BEAUCE", "libell_d_acheminement": "GARANCIERES EN BEAUCE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28169"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5281c754348a13c0e6d6c38be3802bbb2859c7b", "fields": {"nom_de_la_commune": "LA GAUDAINE", "libell_d_acheminement": "LA GAUDAINE", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28175"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dda6706b0a82b16cc72b2e6685af67fb2b7b05a", "fields": {"nom_de_la_commune": "GOHORY", "libell_d_acheminement": "GOHORY", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28182"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a27ae4645379be3e0038bfee2b91e25282c8ed68", "fields": {"nom_de_la_commune": "GOUSSAINVILLE", "libell_d_acheminement": "GOUSSAINVILLE", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28185"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b16c13d982e3d0409a4de80140cdbebdeb90b44a", "fields": {"nom_de_la_commune": "GUILLONVILLE", "libell_d_acheminement": "GUILLONVILLE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28190"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbcf0f644bd156cc7c5a11cdd1361eb6955c70c4", "fields": {"nom_de_la_commune": "HANCHES", "libell_d_acheminement": "HANCHES", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28191"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53bdc7facf9bc559049d0134ce248f656545e880", "fields": {"nom_de_la_commune": "HOUX", "libell_d_acheminement": "HOUX", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28195"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73d71eba76f97335a846f0a8df448b91f5f568d7", "fields": {"nom_de_la_commune": "JAUDRAIS", "libell_d_acheminement": "JAUDRAIS", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28200"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d0a4e344ad1b9381df22a8897d6a2952daeb2b7", "fields": {"nom_de_la_commune": "LA LOUPE", "libell_d_acheminement": "LA LOUPE", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28214"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5596cc264f2df708e4c3746f10ceeb0836ad86ae", "fields": {"nom_de_la_commune": "MAINTENON", "libell_d_acheminement": "MAINTENON", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28227"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ff65b26f53c6603b24c377fec079f475465c8e", "fields": {"nom_de_la_commune": "MANOU", "libell_d_acheminement": "MANOU", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28232"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a12b236479d698357c89249a41ffa484c389a5ff", "fields": {"nom_de_la_commune": "MARVILLE MOUTIERS BRULE", "libell_d_acheminement": "MARVILLE MOUTIERS BRULE", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28239"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c792744cb7ae6baa38e7058653d665cc7e60cd5", "fields": {"nom_de_la_commune": "MEROUVILLE", "libell_d_acheminement": "MEROUVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28243"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1a5801e5f03d10b16670c1417584b3ee96a5fd", "fields": {"nom_de_la_commune": "MIGNIERES", "libell_d_acheminement": "MIGNIERES", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28253"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d2713dc123e4facf43724c01a19856e9bfaa4e4", "fields": {"nom_de_la_commune": "MONTIGNY LE CHARTIF", "libell_d_acheminement": "MONTIGNY LE CHARTIF", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28261"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4274789b5880a7f68b0dd870626ef1d28111b5", "fields": {"nom_de_la_commune": "MORANCEZ", "libell_d_acheminement": "MORANCEZ", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28269"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc005f2afd3cd44377a870abfe0b724bdd1decb3", "fields": {"nom_de_la_commune": "MOTTEREAU", "libell_d_acheminement": "MOTTEREAU", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28272"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a52ae342fa233671edf6b15a69983f7ecba7e4", "fields": {"nom_de_la_commune": "NERON", "libell_d_acheminement": "NERON", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28275"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46615fd19128aefd92b91cd356c6c4a20a83af3d", "fields": {"nom_de_la_commune": "NEUVY EN BEAUCE", "libell_d_acheminement": "NEUVY EN BEAUCE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28276"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536d53040ec205a35f560189bdee9e465ea956e6", "fields": {"code_postal": "24320", "code_commune_insee": "24303", "libell_d_acheminement": "NANTEUIL AURIAC DE BOURZAC", "ligne_5": "AURIAC DE BOURZAC", "nom_de_la_commune": "NANTEUIL AURIAC DE BOURZAC", "coordonnees_gps": [45.3701841655, 0.369368345584]}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2a4bb69f88b1fcf82d0743891222f1339ad34d5", "fields": {"nom_de_la_commune": "NANTHIAT", "libell_d_acheminement": "NANTHIAT", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24305"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d79d1996493c5c2aecf4a65e6aa77dc055a72a7", "fields": {"nom_de_la_commune": "NASTRINGUES", "libell_d_acheminement": "NASTRINGUES", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24306"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e34dafc5315b8c8058dbd40d9e95db12087192", "fields": {"nom_de_la_commune": "NAUSSANNES", "libell_d_acheminement": "NAUSSANNES", "code_postal": "24440", "coordonnees_gps": [44.7570815244, 0.786200936905], "code_commune_insee": "24307"}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "550e831af5779ee9270d3bcc4d0491018c48c002", "fields": {"nom_de_la_commune": "NEUVIC", "libell_d_acheminement": "NEUVIC", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24309"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "524f947906fbca50f0695a4841b7f36395435fc1", "fields": {"nom_de_la_commune": "PAYZAC", "libell_d_acheminement": "PAYZAC", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24320"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4362740aebedac271ed983ac8851e5ad16f5e4e5", "fields": {"nom_de_la_commune": "LE PIZOU", "libell_d_acheminement": "LE PIZOU", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24329"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7cae895449192b0ddce3f8c3bbf0f45c765d574", "fields": {"nom_de_la_commune": "PONTEYRAUD", "libell_d_acheminement": "PONTEYRAUD", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24333"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50f951e7f3e6ff31f1f5d24f5f63871c88b68904", "fields": {"nom_de_la_commune": "PRATS DE CARLUX", "libell_d_acheminement": "PRATS DE CARLUX", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24336"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2526b83e52268fec1b67cef31da36dd4245c4c", "fields": {"nom_de_la_commune": "PRATS DU PERIGORD", "libell_d_acheminement": "PRATS DU PERIGORD", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24337"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bd25024e1ec5bef32d5ab8068c466b198401f84", "fields": {"nom_de_la_commune": "QUEYSSAC", "libell_d_acheminement": "QUEYSSAC", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24345"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd0d240eb4f54126b961ca75ce3b27d7a3887bf", "fields": {"nom_de_la_commune": "RAZAC D EYMET", "libell_d_acheminement": "RAZAC D EYMET", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24348"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d1b77a5a04607a760cc2a2194de6ea0538199b", "fields": {"nom_de_la_commune": "RAZAC DE SAUSSIGNAC", "libell_d_acheminement": "RAZAC DE SAUSSIGNAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24349"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25c3651cbd33e71f8583f86a01a051839d9134e4", "fields": {"nom_de_la_commune": "RAZAC SUR L ISLE", "libell_d_acheminement": "RAZAC SUR L ISLE", "code_postal": "24430", "coordonnees_gps": [45.1552585356, 0.627698357906], "code_commune_insee": "24350"}, "geometry": {"type": "Point", "coordinates": [0.627698357906, 45.1552585356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3500f6b13078996ce1650de13b71f6974228add", "fields": {"nom_de_la_commune": "LA ROQUE GAGEAC", "libell_d_acheminement": "LA ROQUE GAGEAC", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24355"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a342fd1fcb68cd3c6520fb2442a33ce3a14fc8be", "fields": {"nom_de_la_commune": "SAGELAT", "libell_d_acheminement": "SAGELAT", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24360"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d4d7eb178710e0e1983361dc2bb93d514c7ac62", "fields": {"code_postal": "24510", "code_commune_insee": "24362", "libell_d_acheminement": "STE ALVERE ST LAURENT LES BATONS", "ligne_5": "ST LAURENT DES BATONS", "nom_de_la_commune": "STE ALVERE ST LAURENT LES BATONS", "coordonnees_gps": [44.9191872389, 0.791972354919]}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7741510e712d36459b39c6d464f36e732963866c", "fields": {"nom_de_la_commune": "ST AUBIN DE NABIRAT", "libell_d_acheminement": "ST AUBIN DE NABIRAT", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24375"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e39618b7f40661093e2d7cf4e704f7a0c3e5332", "fields": {"nom_de_la_commune": "ST AULAYE PUYMANGOU", "libell_d_acheminement": "ST AULAYE PUYMANGOU", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24376"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c304b37d76a645fe8a6289bea80f1e293216d7b", "fields": {"nom_de_la_commune": "ST BARTHELEMY DE BELLEGARDE", "libell_d_acheminement": "ST BARTHELEMY DE BELLEGARDE", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24380"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6fb812c0b21479eafaa8cc8263fcb6489b9ccb", "fields": {"nom_de_la_commune": "STE CROIX DE MAREUIL", "libell_d_acheminement": "STE CROIX DE MAREUIL", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24394"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0107d798c8d3866c2e06d9276aee549fa4dbbaef", "fields": {"nom_de_la_commune": "ST CYR LES CHAMPAGNES", "libell_d_acheminement": "ST CYR LES CHAMPAGNES", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24397"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4b7dce1f1487b1633c891bbdf8efc245097d6f", "fields": {"nom_de_la_commune": "STE EULALIE D ANS", "libell_d_acheminement": "STE EULALIE D ANS", "code_postal": "24640", "coordonnees_gps": [45.228517812, 0.964656350856], "code_commune_insee": "24401"}, "geometry": {"type": "Point", "coordinates": [0.964656350856, 45.228517812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cc0f0977fd027ea708621fa7298c1387827648", "fields": {"nom_de_la_commune": "ST GEORGES BLANCANEIX", "libell_d_acheminement": "ST GEORGES BLANCANEIX", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24413"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa1a4959fbf73ba64a207c6e87c5b1aa7ee4f9d1", "fields": {"nom_de_la_commune": "ST GEORGES DE MONTCLARD", "libell_d_acheminement": "ST GEORGES DE MONTCLARD", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24414"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ecddd992c9e492402e33c3851f94978d27f069", "fields": {"nom_de_la_commune": "ST GERMAIN DE BELVES", "libell_d_acheminement": "ST GERMAIN DE BELVES", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24416"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c2c5abc391d6d91815c002fa477eb7907ac3d36", "fields": {"nom_de_la_commune": "ST JEAN D ATAUX", "libell_d_acheminement": "ST JEAN D ATAUX", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24424"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e4e694b67b97ccd41cf8403f7f7cbf25944cc42", "fields": {"nom_de_la_commune": "ST JEAN DE COLE", "libell_d_acheminement": "ST JEAN DE COLE", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24425"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0abb3e0f213afb09187fe3f51ffab0d9c26a410b", "fields": {"nom_de_la_commune": "ST JEAN D ESTISSAC", "libell_d_acheminement": "ST JEAN D ESTISSAC", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24426"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0aa3a6a98608592ec63802e6f89b456034bdc97", "fields": {"nom_de_la_commune": "ST JEAN D EYRAUD", "libell_d_acheminement": "ST JEAN D EYRAUD", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24427"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f437b9a9d518e0375b4b7ac0462b589a890f8f4d", "fields": {"nom_de_la_commune": "ST JORY LAS BLOUX", "libell_d_acheminement": "ST JORY LAS BLOUX", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24429"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adb6b11563d829b72d388c4141f0e55a2d163f5", "fields": {"nom_de_la_commune": "ST LAURENT LA VALLEE", "libell_d_acheminement": "ST LAURENT LA VALLEE", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24438"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da47bbe5c2caa77e581c949d087fedbf3e7fbc5e", "fields": {"nom_de_la_commune": "ST MARTIN DES COMBES", "libell_d_acheminement": "ST MARTIN DES COMBES", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24456"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "671e006e3f17a0f9563b09ba102f667bf844ca4e", "fields": {"nom_de_la_commune": "ST MARTIN LE PIN", "libell_d_acheminement": "ST MARTIN LE PIN", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24458"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd481ee9cad71b510a2187e6fc5a7d733ac09e49", "fields": {"nom_de_la_commune": "ST MEDARD D EXCIDEUIL", "libell_d_acheminement": "ST MEDARD D EXCIDEUIL", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24463"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb0c11dd669f1656793d4d08f7cad83bb5f465e", "fields": {"nom_de_la_commune": "ST MICHEL DE MONTAIGNE", "libell_d_acheminement": "ST MICHEL DE MONTAIGNE", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24466"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a80c757580ce68038274fb47d03f0aa94b8286", "fields": {"nom_de_la_commune": "ST PANCRACE", "libell_d_acheminement": "ST PANCRACE", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24474"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6fbf0249bb5f15381bb3ae4523e95cbc8c0653", "fields": {"nom_de_la_commune": "ST PAUL DE SERRE", "libell_d_acheminement": "ST PAUL DE SERRE", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24480"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98a3681e35cac9794d40f81d1ec22cf3c67b994e", "fields": {"nom_de_la_commune": "ST PAUL LA ROCHE", "libell_d_acheminement": "ST PAUL LA ROCHE", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24481"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb215198170296d9e3cbf00fc0f0c5f44a05ff5", "fields": {"nom_de_la_commune": "ST PIERRE D EYRAUD", "libell_d_acheminement": "ST PIERRE D EYRAUD", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24487"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "788e6de14a5915759c5938289dfd228253a63d5b", "fields": {"nom_de_la_commune": "ST POMPONT", "libell_d_acheminement": "ST POMPONT", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24488"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "159165eba35958bc0c62d2ca6a883a6982fe43e9", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24492"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bcf5a509e8ee3f7874c58ce06f764245c66ee05", "fields": {"nom_de_la_commune": "ST ROMAIN ET ST CLEMENT", "libell_d_acheminement": "ST ROMAIN ET ST CLEMENT", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24496"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28fd321efa9541586d8deed3eda45e2ac0fe462f", "fields": {"nom_de_la_commune": "ST SULPICE D EXCIDEUIL", "libell_d_acheminement": "ST SULPICE D EXCIDEUIL", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24505"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee434b8b15a92d5d79a28a76b265fca0b09d2f1", "fields": {"nom_de_la_commune": "ST VINCENT JALMOUTIERS", "libell_d_acheminement": "ST VINCENT JALMOUTIERS", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24511"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb0d4ac31531902597feb7145061f1eedd7ec8e", "fields": {"nom_de_la_commune": "SARLIAC SUR L ISLE", "libell_d_acheminement": "SARLIAC SUR L ISLE", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24521"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ad41d8d8b0ba03d86d0ecfd3cd6d877dd5b9c84", "fields": {"nom_de_la_commune": "SAVIGNAC DE NONTRON", "libell_d_acheminement": "SAVIGNAC DE NONTRON", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24525"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec373d619d682a6f85cc3c0b1be5004b059a66da", "fields": {"nom_de_la_commune": "SEGONZAC", "libell_d_acheminement": "SEGONZAC", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24529"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6c6f5c083b28219aa3b370d4e3096002407809e", "fields": {"nom_de_la_commune": "SENCENAC PUY DE FOURCHES", "libell_d_acheminement": "SENCENAC PUY DE FOURCHES", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24530"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76287ef1c9df1ed08d32d4c72a068e5adfd37f7c", "fields": {"nom_de_la_commune": "SINGLEYRAC", "libell_d_acheminement": "SINGLEYRAC", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24536"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925f4ff45f865843b46e19436b4890239b149fd9", "fields": {"nom_de_la_commune": "SORGES ET LIGUEUX EN PERIGORD", "libell_d_acheminement": "SORGES ET LIGUEUX EN PERIGORD", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24540"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9062c9f1bb4417296bc0a0fc16297ef3f133749", "fields": {"nom_de_la_commune": "SOULAURES", "libell_d_acheminement": "SOULAURES", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24542"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8be8c003f6f6fdc50dc1449d7aa77414320d23f5", "fields": {"nom_de_la_commune": "THENAC", "libell_d_acheminement": "THENAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24549"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71092a0e3a4e7cda1d7a741e9b580fc575b7475a", "fields": {"nom_de_la_commune": "THONAC", "libell_d_acheminement": "THONAC", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24552"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d2ad5475a9f0f47f5663b6aebc66dfa573d3558", "fields": {"nom_de_la_commune": "TREMOLAT", "libell_d_acheminement": "TREMOLAT", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24558"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c80d83b8f14656f6e8e73d06adf72abb27be183", "fields": {"nom_de_la_commune": "URVAL", "libell_d_acheminement": "URVAL", "code_postal": "24480", "coordonnees_gps": [44.8133494955, 0.885908136539], "code_commune_insee": "24560"}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32fdb6da481192a319ca74aa2b4aada3624a84dc", "fields": {"nom_de_la_commune": "VALLEREUIL", "libell_d_acheminement": "VALLEREUIL", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24562"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90e90288d6fb3c4f9c4a8dce8a43a95cc18b87f6", "fields": {"nom_de_la_commune": "VELINES", "libell_d_acheminement": "VELINES", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24568"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "745bc66e5958ca45b6e789562d399506ab960055", "fields": {"nom_de_la_commune": "VERGT DE BIRON", "libell_d_acheminement": "VERGT DE BIRON", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24572"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02373d61829fa69dc62adab2fd1c6961e2f4710b", "fields": {"nom_de_la_commune": "VERTEILLAC", "libell_d_acheminement": "VERTEILLAC", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24573"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a64ba632d98eb6ea5b2b55b4986a5a0b50748453", "fields": {"nom_de_la_commune": "VILLAC", "libell_d_acheminement": "VILLAC", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24580"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e23f78bc5163dbfc0c7a57c31f54b64006e7e8a", "fields": {"nom_de_la_commune": "ABBEVILLERS", "libell_d_acheminement": "ABBEVILLERS", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25004"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8035d6d6172502185bf8ea526b70e3e0a6934be6", "fields": {"nom_de_la_commune": "ADAM LES PASSAVANT", "libell_d_acheminement": "ADAM LES PASSAVANT", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25006"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8271420d517d202af9082854854132314d989f7e", "fields": {"nom_de_la_commune": "ALLONDANS", "libell_d_acheminement": "ALLONDANS", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25013"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fa1f3399ad127859ac7b3388585cbb1b7ce53f0", "fields": {"nom_de_la_commune": "AMATHAY VESIGNEUX", "libell_d_acheminement": "AMATHAY VESIGNEUX", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25016"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6f124ce88d41c469b378ed27988d5649a998402", "fields": {"nom_de_la_commune": "AMONDANS", "libell_d_acheminement": "AMONDANS", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25017"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b7105c81f3c69fa3836034e209132395ca40f64", "fields": {"nom_de_la_commune": "ARC ET SENANS", "libell_d_acheminement": "ARC ET SENANS", "code_postal": "25610", "coordonnees_gps": [47.0353605141, 5.76972348183], "code_commune_insee": "25021"}, "geometry": {"type": "Point", "coordinates": [5.76972348183, 47.0353605141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9037c704c750ba7b744914d356718903dd95993d", "fields": {"nom_de_la_commune": "ARCON", "libell_d_acheminement": "ARCON", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25024"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5032c0353b555893567cfe62e598fd88a0975b", "fields": {"nom_de_la_commune": "ARC SOUS CICON", "libell_d_acheminement": "ARC SOUS CICON", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25025"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a06e88ed7c4b328e950b89cbb29dc6c7f045cf82", "fields": {"nom_de_la_commune": "AUTECHAUX ROIDE", "libell_d_acheminement": "AUTECHAUX ROIDE", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25033"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a49fb6e168e1781c4ba0078ae89cc64ce5969ea", "fields": {"nom_de_la_commune": "AVILLEY", "libell_d_acheminement": "AVILLEY", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25038"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce09367084ac7997b5fb3db2a4fba233a9fd993", "fields": {"nom_de_la_commune": "BAUME LES DAMES", "libell_d_acheminement": "BAUME LES DAMES", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25047"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "165034506dd33afba3b4da342092e95730923fd7", "fields": {"nom_de_la_commune": "LE BELIEU", "libell_d_acheminement": "LE BELIEU", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25050"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dd9b609eebe1e7000bc891718c4bded47875afb", "fields": {"nom_de_la_commune": "BELLEHERBE", "libell_d_acheminement": "BELLEHERBE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25051"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e67e99058a93dbeb119f298a2152aea74ffcba", "fields": {"nom_de_la_commune": "BERCHE", "libell_d_acheminement": "BERCHE", "code_postal": "25420", "coordonnees_gps": [47.4766226069, 6.76728800486], "code_commune_insee": "25054"}, "geometry": {"type": "Point", "coordinates": [6.76728800486, 47.4766226069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db239666b70c4e488d511a7112acd5a6c1142b00", "fields": {"nom_de_la_commune": "BETHONCOURT", "libell_d_acheminement": "BETHONCOURT", "code_postal": "25200", "coordonnees_gps": [47.5248285421, 6.80015635102], "code_commune_insee": "25057"}, "geometry": {"type": "Point", "coordinates": [6.80015635102, 47.5248285421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27798959c2646b274a7082706082f7b1bffe9859", "fields": {"nom_de_la_commune": "LE BIZOT", "libell_d_acheminement": "LE BIZOT", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25062"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d25d9b76fe278716d3b291a58c127c35a9ec5ae", "fields": {"nom_de_la_commune": "BONNAY", "libell_d_acheminement": "BONNAY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25073"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68d6a2c6db80c2c0b8eb674fdeac571f0ee0cef9", "fields": {"nom_de_la_commune": "BONNETAGE", "libell_d_acheminement": "BONNETAGE", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25074"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bc458d79222dddeaf3e1bf2c7e49e110b1066e0", "fields": {"nom_de_la_commune": "BONNEVAUX", "libell_d_acheminement": "BONNEVAUX", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25075"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9200ccce9ebb5056ddb78bcf7e7d699f8d587ab1", "fields": {"nom_de_la_commune": "BOURNOIS", "libell_d_acheminement": "BOURNOIS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25083"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f518e3f06de5fe60c4c592af8f57ca0cc8bb95", "fields": {"nom_de_la_commune": "BRANNE", "libell_d_acheminement": "BRANNE", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25087"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c742e205b52fe7e517f5ec0c103377f2a98089", "fields": {"nom_de_la_commune": "BRETIGNEY", "libell_d_acheminement": "BRETIGNEY", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25093"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab56def9762de59e7cc639317d62e3626213f00", "fields": {"nom_de_la_commune": "BRETIGNEY NOTRE DAME", "libell_d_acheminement": "BRETIGNEY NOTRE DAME", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25094"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3d2a067d7b13836cff56fd08ef64243c3d166d", "fields": {"nom_de_la_commune": "BRETONVILLERS", "libell_d_acheminement": "BRETONVILLERS", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25095"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f06be3575c216ba40eb7ba6af3050c068a3b356", "fields": {"code_postal": "25170", "code_commune_insee": "25101", "libell_d_acheminement": "BURGILLE", "ligne_5": "CORDIRON", "nom_de_la_commune": "BURGILLE", "coordonnees_gps": [47.2664378485, 5.83042087003]}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "315a30bc8e4c0543a97714b6c7a86ab6d36d3982", "fields": {"nom_de_la_commune": "BYANS SUR DOUBS", "libell_d_acheminement": "BYANS SUR DOUBS", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25105"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c910c8ae9c50341d15e1ab2475fe840f4f78a682", "fields": {"nom_de_la_commune": "GUMIERES", "libell_d_acheminement": "GUMIERES", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42107"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ee79c06c841bc29f91a2049fb5d6c932d5600e", "fields": {"nom_de_la_commune": "L HOPITAL LE GRAND", "libell_d_acheminement": "L HOPITAL LE GRAND", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42108"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44cceb07ca545a1ff469ad674680f76eeea6eaa5", "fields": {"nom_de_la_commune": "LUPE", "libell_d_acheminement": "LUPE", "code_postal": "42520", "coordonnees_gps": [45.3733315424, 4.67467859118], "code_commune_insee": "42124"}, "geometry": {"type": "Point", "coordinates": [4.67467859118, 45.3733315424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6586ea0a94261123622fc82de56a81d8fe9f7209", "fields": {"nom_de_la_commune": "LURIECQ", "libell_d_acheminement": "LURIECQ", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42126"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a1779e85cfe83582304d22c459e3d715a4363d4", "fields": {"nom_de_la_commune": "MAGNEUX HAUTE RIVE", "libell_d_acheminement": "MAGNEUX HAUTE RIVE", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42130"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c5202fe8ed06f1a74a5ada338031e93e2d8127", "fields": {"nom_de_la_commune": "MARLHES", "libell_d_acheminement": "MARLHES", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42139"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ed31ee84f910c2aee450f4959a58174eabc79d", "fields": {"nom_de_la_commune": "MONTAGNY", "libell_d_acheminement": "MONTAGNY", "code_postal": "42840", "coordonnees_gps": [46.0311905207, 4.23062167861], "code_commune_insee": "42145"}, "geometry": {"type": "Point", "coordinates": [4.23062167861, 46.0311905207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "512e73664a93e3dd4b38ac7dd50c2e79217e16c9", "fields": {"code_postal": "42600", "code_commune_insee": "42147", "libell_d_acheminement": "MONTBRISON", "ligne_5": "MOINGT", "nom_de_la_commune": "MONTBRISON", "coordonnees_gps": [45.6194255891, 4.06119351589]}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "325b12b24a7a748b7b42dfe8ada4f7b3c8900fc9", "fields": {"nom_de_la_commune": "MORNAND EN FOREZ", "libell_d_acheminement": "MORNAND EN FOREZ", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42151"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b009683f5a931db41820652f94511e282ed8e685", "fields": {"nom_de_la_commune": "LES NOES", "libell_d_acheminement": "LES NOES", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42158"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed4b3bddc31eb0c93a7afb03e440cd16f99596d5", "fields": {"nom_de_la_commune": "NOTRE DAME DE BOISSET", "libell_d_acheminement": "NOTRE DAME DE BOISSET", "code_postal": "42120", "coordonnees_gps": [46.0189816241, 4.12010356973], "code_commune_insee": "42161"}, "geometry": {"type": "Point", "coordinates": [4.12010356973, 46.0189816241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01599e2097b8a6c90bb340e6d5ba8426c47788a8", "fields": {"nom_de_la_commune": "PALOGNEUX", "libell_d_acheminement": "PALOGNEUX", "code_postal": "42990", "coordonnees_gps": [45.7002510044, 3.8910786139], "code_commune_insee": "42164"}, "geometry": {"type": "Point", "coordinates": [3.8910786139, 45.7002510044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f603ceca002da3e8501caf01fdd80c6e31a9b2", "fields": {"nom_de_la_commune": "PAVEZIN", "libell_d_acheminement": "PAVEZIN", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42167"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "223727c2febc882fe8133a0701b854e85ff1bdff", "fields": {"nom_de_la_commune": "ST THIBAUT", "libell_d_acheminement": "ST THIBAUT", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02695"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c07e36f1406afb0cfc94c016f20cb941f646cb3", "fields": {"nom_de_la_commune": "ST EUGENE", "libell_d_acheminement": "ST EUGENE", "code_postal": "02330", "coordonnees_gps": [48.9761149923, 3.54081832468], "code_commune_insee": "02677"}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c462972c5f09902c980fb5bcfee690c643ccfc", "fields": {"nom_de_la_commune": "SAULCHERY", "libell_d_acheminement": "SAULCHERY", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02701"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ecf351a194339a2c5e8d7d258c64ac7b54eb0e8", "fields": {"nom_de_la_commune": "MONTCOMBROUX LES MINES", "libell_d_acheminement": "MONTCOMBROUX LES MINES", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03181"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd50056eeb63b5dc9a271d816618dc110a3f1a00", "fields": {"nom_de_la_commune": "PIERREFITTE SUR LOIRE", "libell_d_acheminement": "PIERREFITTE SUR LOIRE", "code_postal": "03470", "coordonnees_gps": [46.4660182657, 3.79821234181], "code_commune_insee": "03207"}, "geometry": {"type": "Point", "coordinates": [3.79821234181, 46.4660182657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "562859b2b24636efbd4e9cb358db99cabae94b84", "fields": {"nom_de_la_commune": "NEUILLY EN DONJON", "libell_d_acheminement": "NEUILLY EN DONJON", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03196"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ec74e0b2fb2d0960ece8b10a3c6fc5facf8056", "fields": {"nom_de_la_commune": "NASSIGNY", "libell_d_acheminement": "NASSIGNY", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03193"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a9e8d7f40483dbb0329f52b0accc388e82bafbf", "fields": {"nom_de_la_commune": "MAZERIER", "libell_d_acheminement": "MAZERIER", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03166"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00018f0d0d48929d23d91683fd6d99d2b73010fe", "fields": {"nom_de_la_commune": "ROCLES", "libell_d_acheminement": "ROCLES", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03214"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eeb33762d2388e5a79ae33c9aab193f3b2eb516", "fields": {"nom_de_la_commune": "POEZAT", "libell_d_acheminement": "POEZAT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03209"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12b23fea05f9498a5122e89efa45b31b438ace37", "fields": {"nom_de_la_commune": "ST MARTIN DU TILLEUL", "libell_d_acheminement": "ST MARTIN DU TILLEUL", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27569"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba8d4b8a358b3df2c5ed1da76608bda0af28a7f", "fields": {"nom_de_la_commune": "ST MARTIN ST FIRMIN", "libell_d_acheminement": "ST MARTIN ST FIRMIN", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27571"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e64cb96b0154ce6a369bd64b6b34c3bf361423c0", "fields": {"nom_de_la_commune": "ST MESLIN DU BOSC", "libell_d_acheminement": "ST MESLIN DU BOSC", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27572"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50edbcf309d955b8d14fccfe6b34a6c0fb96375a", "fields": {"nom_de_la_commune": "ST OUEN DE THOUBERVILLE", "libell_d_acheminement": "ST OUEN DE THOUBERVILLE", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27580"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681de17a3f6f2bbeea52a6763608e9a23a5ede65", "fields": {"nom_de_la_commune": "ST PHILBERT SUR RISLE", "libell_d_acheminement": "ST PHILBERT SUR RISLE", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27587"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6a50e89f98a4f7240182953d75030c3c6d7f92", "fields": {"nom_de_la_commune": "ST PIERRE DU VAL", "libell_d_acheminement": "ST PIERRE DU VAL", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27597"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b425802b1ecb5b9a4dd388502b7bae2ca68e0b5f", "fields": {"nom_de_la_commune": "ST SYLVESTRE DE CORMEILLES", "libell_d_acheminement": "ST SYLVESTRE DE CORMEILLES", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27605"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc127ec2388768f538f38767f372143f1d9e0a8c", "fields": {"nom_de_la_commune": "ST THURIEN", "libell_d_acheminement": "ST THURIEN", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27607"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d949adec71da0b2c9eb54b8b7fad5d3a3e0cc51", "fields": {"nom_de_la_commune": "SANCOURT", "libell_d_acheminement": "SANCOURT", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27614"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4625f88adb82b43382d91c1357ef6b8f47fae8ac", "fields": {"nom_de_la_commune": "SAUSSAY LA CAMPAGNE", "libell_d_acheminement": "SAUSSAY LA CAMPAGNE", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27617"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a94ec0d114136bd9fad2b5375c234438ca760f7", "fields": {"nom_de_la_commune": "SEREZ", "libell_d_acheminement": "SEREZ", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27621"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f00586362c250ae02e6e04eff0b0fdb95c5e9c38", "fields": {"nom_de_la_commune": "SURTAUVILLE", "libell_d_acheminement": "SURTAUVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27623"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d94155004ab3a8f6d31874de7c20133c1f22558", "fields": {"nom_de_la_commune": "SURVILLE", "libell_d_acheminement": "SURVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27624"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c262adc9ef0490f752560078829ce6bd473e7afd", "fields": {"nom_de_la_commune": "LE THUIT DE L OISON", "libell_d_acheminement": "LE THUIT DE L OISON", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27638"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d52d5cd4ad419cdaf67deff9c06181f48377926", "fields": {"nom_de_la_commune": "TILLEUL DAME AGNES", "libell_d_acheminement": "TILLEUL DAME AGNES", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27640"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e44356f25954424f0e17f5582dacfbcf4ea4401", "fields": {"nom_de_la_commune": "TOCQUEVILLE", "libell_d_acheminement": "TOCQUEVILLE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27645"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0aaace63c5c85e1df996d112b5623fc89cd481f", "fields": {"nom_de_la_commune": "TOURNEDOS SUR SEINE", "libell_d_acheminement": "TOURNEDOS SUR SEINE", "code_postal": "27100", "coordonnees_gps": [49.2628287582, 1.2134503663], "code_commune_insee": "27651"}, "geometry": {"type": "Point", "coordinates": [1.2134503663, 49.2628287582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05560c75a674057abcfabebba40924bd5ade01a2", "fields": {"nom_de_la_commune": "TOURNEVILLE", "libell_d_acheminement": "TOURNEVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27652"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f328796daf9672ecf9313e40981a02a6b27251d", "fields": {"nom_de_la_commune": "LA TRINITE DE REVILLE", "libell_d_acheminement": "LA TRINITE DE REVILLE", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27660"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bddbc5a6c6c1ab1f9af30416e5ff014d6a75a5d0", "fields": {"nom_de_la_commune": "VENON", "libell_d_acheminement": "VENON", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27677"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78c90391cac9db5d7886111b79a5f505f8ec2dbc", "fields": {"nom_de_la_commune": "LES VENTES", "libell_d_acheminement": "LES VENTES", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27678"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bbeda54115c98c5abd4faba5889b9116fa96d6f", "fields": {"nom_de_la_commune": "VILLERS SUR LE ROULE", "libell_d_acheminement": "VILLERS SUR LE ROULE", "code_postal": "27940", "coordonnees_gps": [49.1799104876, 1.36654248146], "code_commune_insee": "27691"}, "geometry": {"type": "Point", "coordinates": [1.36654248146, 49.1799104876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e594355e0f60dae45b1b0ec95911b9085f3c020a", "fields": {"nom_de_la_commune": "VITOT", "libell_d_acheminement": "VITOT", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27698"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18bb0b9e6a4f3d24162662db39f8478b1ddbc67", "fields": {"nom_de_la_commune": "ARROU", "libell_d_acheminement": "ARROU", "code_postal": "28290", "coordonnees_gps": [48.1141718404, 1.11818420399], "code_commune_insee": "28012"}, "geometry": {"type": "Point", "coordinates": [1.11818420399, 48.1141718404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39286858457b62bed8ef4f1a5cc6b85d15a18751", "fields": {"nom_de_la_commune": "AUNAY SOUS CRECY", "libell_d_acheminement": "AUNAY SOUS CRECY", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28014"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6716f7cf5ce02e70ac33dd6874ae0654bb20660f", "fields": {"nom_de_la_commune": "AUTHEUIL", "libell_d_acheminement": "AUTHEUIL", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28017"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec10558144fdf6e45b9584bbdb2e26541331d00", "fields": {"nom_de_la_commune": "BAILLEAU LE PIN", "libell_d_acheminement": "BAILLEAU LE PIN", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28021"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e605f431f4cdba6f45225f9c90e57ea97c95807", "fields": {"nom_de_la_commune": "BAILLEAU ARMENONVILLE", "libell_d_acheminement": "BAILLEAU ARMENONVILLE", "code_postal": "28320", "coordonnees_gps": [48.5411997507, 1.69133759252], "code_commune_insee": "28023"}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32cd4a13b8d81b1c37caea08e4e77b6af41527bc", "fields": {"nom_de_la_commune": "BERCHERES SUR VESGRE", "libell_d_acheminement": "BERCHERES SUR VESGRE", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28036"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3fe936be264aa4631da40aacde9503e825b54e", "fields": {"nom_de_la_commune": "BILLANCELLES", "libell_d_acheminement": "BILLANCELLES", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28040"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af03553c351c3f56a58c54bb028a9e71ce4a4d0a", "fields": {"nom_de_la_commune": "BONCOURT", "libell_d_acheminement": "BONCOURT", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28050"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17e8391604efdaa5d4003491544b1b0cea0e27b1", "fields": {"nom_de_la_commune": "LE BOULLAY LES DEUX EGLISES", "libell_d_acheminement": "LE BOULLAY LES DEUX EGLISES", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28053"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "093abf00eb41c94f12b1ce129de95ad2208b557b", "fields": {"nom_de_la_commune": "BOUVILLE", "libell_d_acheminement": "BOUVILLE", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28057"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b3291f93530a2a1801037fa8f2e5f11755456c7", "fields": {"nom_de_la_commune": "CHAMPHOL", "libell_d_acheminement": "CHAMPHOL", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28070"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33729e541a0cad2ed778a507a8d817427d23d94b", "fields": {"nom_de_la_commune": "LA CHAPELLE DU NOYER", "libell_d_acheminement": "LA CHAPELLE DU NOYER", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28075"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f630112108b1ba0a451e0f28769b8eac00d0975", "fields": {"nom_de_la_commune": "CHARONVILLE", "libell_d_acheminement": "CHARONVILLE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28081"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b270de0bca49af96711f8106da314b838d165d", "fields": {"nom_de_la_commune": "CHARTAINVILLIERS", "libell_d_acheminement": "CHARTAINVILLIERS", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28084"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c1e90cd0d8abe96f59efdfc5c4cbc4c6e187ac", "fields": {"nom_de_la_commune": "CHARTRES", "libell_d_acheminement": "CHARTRES", "code_postal": "28000", "coordonnees_gps": [48.4472286537, 1.50557775943], "code_commune_insee": "28085"}, "geometry": {"type": "Point", "coordinates": [1.50557775943, 48.4472286537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73448268001d519172425ea464800366086d9aea", "fields": {"nom_de_la_commune": "CHASSANT", "libell_d_acheminement": "CHASSANT", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28086"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ac54b66798d117dc6295e0c1000e3964c92444", "fields": {"nom_de_la_commune": "LES CHATELETS", "libell_d_acheminement": "LES CHATELETS", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28090"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f001a14278f7b66f74e08f1a5b0fbae07786ba1", "fields": {"nom_de_la_commune": "COLTAINVILLE", "libell_d_acheminement": "COLTAINVILLE", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28104"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e99169626a8cb8b8b4069c17a2c5da3676f9bb0", "fields": {"nom_de_la_commune": "COULOMBS", "libell_d_acheminement": "COULOMBS", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28113"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c56d0a48fec8155f0bdbb2529c7208285eba4811", "fields": {"nom_de_la_commune": "COURBEHAYE", "libell_d_acheminement": "COURBEHAYE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28114"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "774af5282a10b43fb4d5da499380e8fa74e6371d", "fields": {"nom_de_la_commune": "COURTALAIN", "libell_d_acheminement": "COURTALAIN", "code_postal": "28290", "coordonnees_gps": [48.1141718404, 1.11818420399], "code_commune_insee": "28115"}, "geometry": {"type": "Point", "coordinates": [1.11818420399, 48.1141718404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f205c897d7e8751467b4617bacf5afda8a4b52d", "fields": {"nom_de_la_commune": "COURVILLE SUR EURE", "libell_d_acheminement": "COURVILLE SUR EURE", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28116"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24154515944d01fb1376c3af0cbd538d504c63cd", "fields": {"nom_de_la_commune": "CRECY COUVE", "libell_d_acheminement": "CRECY COUVE", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28117"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99ed05db4a0e760c403c275ec687bacc0af2dac0", "fields": {"nom_de_la_commune": "CROISILLES", "libell_d_acheminement": "CROISILLES", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28118"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c74a403f11a660c51d6a866b484cfeb4d9c5aa", "fields": {"code_postal": "28270", "code_commune_insee": "28120", "libell_d_acheminement": "CRUCEY VILLAGES", "ligne_5": "MAINTERNE", "nom_de_la_commune": "CRUCEY VILLAGES", "coordonnees_gps": [48.6934411697, 1.0846058718]}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc21df478ffb01d3851bcb2685f68e48ea20b37", "fields": {"nom_de_la_commune": "DENONVILLE", "libell_d_acheminement": "DENONVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28129"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "868de911199d0048a6e9ffbe58c447cb9ba8f449", "fields": {"nom_de_la_commune": "DREUX", "libell_d_acheminement": "DREUX", "code_postal": "28100", "coordonnees_gps": [48.7484318093, 1.36004109115], "code_commune_insee": "28134"}, "geometry": {"type": "Point", "coordinates": [1.36004109115, 48.7484318093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94a736b9415137e5240c20932faaffd094277e2d", "fields": {"nom_de_la_commune": "EPERNON", "libell_d_acheminement": "EPERNON", "code_postal": "28230", "coordonnees_gps": [48.5972768911, 1.69206934612], "code_commune_insee": "28140"}, "geometry": {"type": "Point", "coordinates": [1.69206934612, 48.5972768911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c4d54654355ceb04407d78c845dc861bbfd713", "fields": {"nom_de_la_commune": "FESSANVILLIERS MATTANVILLIERS", "libell_d_acheminement": "FESSANVILLIERS MATTANVILLIERS", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28151"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e136fe02fb07f7d6fb1407c7d734b59c6521e186", "fields": {"nom_de_la_commune": "FONTAINE LA GUYON", "libell_d_acheminement": "FONTAINE LA GUYON", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28154"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df2a09889d9c9750fa75fecf224778a9bc469527", "fields": {"nom_de_la_commune": "FONTENAY SUR EURE", "libell_d_acheminement": "FONTENAY SUR EURE", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28158"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e7202d9592717d8c2b64d2e79244f2470b2d6e5", "fields": {"code_postal": "28320", "code_commune_insee": "28168", "libell_d_acheminement": "GALLARDON", "ligne_5": "MONTLOUET", "nom_de_la_commune": "GALLARDON", "coordonnees_gps": [48.5411997507, 1.69133759252]}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd190fe21e5ba430b8864a7c4d8d26dec701c001", "fields": {"nom_de_la_commune": "GARNAY", "libell_d_acheminement": "GARNAY", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28171"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "964022302a89b4393e09d0fe133be8c0990cf50a", "fields": {"nom_de_la_commune": "GAS", "libell_d_acheminement": "GAS", "code_postal": "28320", "coordonnees_gps": [48.5411997507, 1.69133759252], "code_commune_insee": "28172"}, "geometry": {"type": "Point", "coordinates": [1.69133759252, 48.5411997507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bea52a850adca0df82cd32fa2d642e118205541a", "fields": {"nom_de_la_commune": "LE GAULT ST DENIS", "libell_d_acheminement": "LE GAULT ST DENIS", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28176"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a9c1bd1b9f5e4fddc72377ac75eb06fdac2db9", "fields": {"nom_de_la_commune": "GELLAINVILLE", "libell_d_acheminement": "GELLAINVILLE", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28177"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8050f14ac7c8c7c78812418bf998100fb85142ea", "fields": {"nom_de_la_commune": "GOMMERVILLE", "libell_d_acheminement": "GOMMERVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28183"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec31aba7849d376914dd6f69a384e73d88a9bfe", "fields": {"nom_de_la_commune": "GOUILLONS", "libell_d_acheminement": "GOUILLONS", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28184"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02490f1f2cd14fd7fea919d239453948f544c077", "fields": {"nom_de_la_commune": "GUILLEVILLE", "libell_d_acheminement": "GUILLEVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28189"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4742e9d0ac10c08e3004b7b5d2ffbba9a31ef492", "fields": {"nom_de_la_commune": "HAPPONVILLIERS", "libell_d_acheminement": "HAPPONVILLIERS", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28192"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c93d1a78ae2dd9955f7ac5739dad90a191a6e6", "fields": {"nom_de_la_commune": "JALLANS", "libell_d_acheminement": "JALLANS", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28198"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34696885f32837c35052451c4679caca54564404", "fields": {"nom_de_la_commune": "JANVILLE", "libell_d_acheminement": "JANVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28199"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "959618bc1b6beafdbc8c29839a407f29d3004c42", "fields": {"nom_de_la_commune": "LETHUIN", "libell_d_acheminement": "LETHUIN", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28207"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84511dfb462a4ad5f8870bc8e09be6be58ee9640", "fields": {"nom_de_la_commune": "LEVAINVILLE", "libell_d_acheminement": "LEVAINVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28208"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a212367c8f1cbf2a41298ec50e9bcea837904f79", "fields": {"nom_de_la_commune": "LOUVILLIERS EN DROUAIS", "libell_d_acheminement": "LOUVILLIERS EN DROUAIS", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28216"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3b0de9d70f49e59ac74b3143aad75446b6f48d9", "fields": {"nom_de_la_commune": "LUCE", "libell_d_acheminement": "LUCE", "code_postal": "28110", "coordonnees_gps": [48.4348199169, 1.45309110629], "code_commune_insee": "28218"}, "geometry": {"type": "Point", "coordinates": [1.45309110629, 48.4348199169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6244f63f37714b4e6677b0e0842c9435a341be51", "fields": {"nom_de_la_commune": "LUMEAU", "libell_d_acheminement": "LUMEAU", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28221"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f4e0316b7f670b5ffdb14176b142e340109e63", "fields": {"nom_de_la_commune": "LUPLANTE", "libell_d_acheminement": "LUPLANTE", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28222"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee2d407667aa94d693a13166298badeb3a117d67", "fields": {"nom_de_la_commune": "MAGNY", "libell_d_acheminement": "MAGNY", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28225"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f059ef619a09bacf35a2ecc60a37373f75d9d7a", "fields": {"nom_de_la_commune": "MAILLEBOIS", "libell_d_acheminement": "MAILLEBOIS", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28226"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa029057f486bf20d65309ce367da082e828e20f", "fields": {"code_postal": "28170", "code_commune_insee": "28226", "libell_d_acheminement": "MAILLEBOIS", "ligne_5": "BLEVY", "nom_de_la_commune": "MAILLEBOIS", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8007634b5ad0e200c2622d370203f29d5bc80a2b", "fields": {"nom_de_la_commune": "MAINVILLIERS", "libell_d_acheminement": "MAINVILLIERS", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28229"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a9a6dedc872f8b82a1f0f92dc5e9e7c53f17572", "fields": {"nom_de_la_commune": "MAISONS", "libell_d_acheminement": "MAISONS", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28230"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce13de268153699e642f5fede1db2d0052eeeba2", "fields": {"nom_de_la_commune": "MARCHEVILLE", "libell_d_acheminement": "MARCHEVILLE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28234"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdd61146f9fb2aa92cf7988a25efd498d64081ca", "fields": {"nom_de_la_commune": "MEREGLISE", "libell_d_acheminement": "MEREGLISE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28242"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f536b3ace85f2a6005fdd06c9c651155f22eed91", "fields": {"nom_de_la_commune": "LE MESNIL THOMAS", "libell_d_acheminement": "LE MESNIL THOMAS", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28248"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a686e209d144957e7df31d1c25b651ee3a4d22", "fields": {"nom_de_la_commune": "MEZIERES AU PERCHE", "libell_d_acheminement": "MEZIERES AU PERCHE", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28250"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95cb23ca29ee04f342c70a3731516fb875f1097f", "fields": {"nom_de_la_commune": "MEZIERES EN DROUAIS", "libell_d_acheminement": "MEZIERES EN DROUAIS", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28251"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58765ec2dc9fb5b1d4ae81a40d393b4a2162cc45", "fields": {"nom_de_la_commune": "MOLEANS", "libell_d_acheminement": "MOLEANS", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28256"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992dfbbbec4a1c0e7f9c80629593f6aafe5dac28", "fields": {"nom_de_la_commune": "MONTBOISSIER", "libell_d_acheminement": "MONTBOISSIER", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28259"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce091072c4c47bac503c5c86e3ce00f55d8eac93", "fields": {"nom_de_la_commune": "NOGENT LE PHAYE", "libell_d_acheminement": "NOGENT LE PHAYE", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28278"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe992229d7edccef0eb9d9e99236f2eb4153c52", "fields": {"code_postal": "28210", "code_commune_insee": "28279", "libell_d_acheminement": "NOGENT LE ROI", "ligne_5": "VACHERESSES LES BASSES", "nom_de_la_commune": "NOGENT LE ROI", "coordonnees_gps": [48.6496934928, 1.50829757585]}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15cae0c9e1f488849765aa0012ed29e60534e0b", "fields": {"nom_de_la_commune": "NOTTONVILLE", "libell_d_acheminement": "NOTTONVILLE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28283"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01032eb371b844e2b0ab3083858862eb1274e2f4", "fields": {"nom_de_la_commune": "OUARVILLE", "libell_d_acheminement": "OUARVILLE", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28291"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8060120048fe9887b8e22f8d116fdc46ecd08ef4", "fields": {"nom_de_la_commune": "OZOIR LE BREUIL", "libell_d_acheminement": "OZOIR LE BREUIL", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28295"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f3f79c25d051fe3a50d760768198710d4d24047", "fields": {"nom_de_la_commune": "POISVILLIERS", "libell_d_acheminement": "POISVILLIERS", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28301"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bed8046b7dafcc08f5afee79a4a306063dfc72a", "fields": {"nom_de_la_commune": "PRASVILLE", "libell_d_acheminement": "PRASVILLE", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28304"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c321a348e00337dce13723cf1960a460c4c8cc", "fields": {"nom_de_la_commune": "GEMOZAC", "libell_d_acheminement": "GEMOZAC", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17172"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cacd459502d59ef8e0e5971df60af20dc4efc9e6", "fields": {"nom_de_la_commune": "LA JARNE", "libell_d_acheminement": "LA JARNE", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17193"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e172a49fe74d726d2c56653932ab63781f17834", "fields": {"nom_de_la_commune": "JAZENNES", "libell_d_acheminement": "JAZENNES", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17196"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "048436069b11798691a71ee45e9fd75e511acd0c", "fields": {"nom_de_la_commune": "LAGORD", "libell_d_acheminement": "LAGORD", "code_postal": "17140", "coordonnees_gps": [46.1866834559, -1.15273602201], "code_commune_insee": "17200"}, "geometry": {"type": "Point", "coordinates": [-1.15273602201, 46.1866834559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74155daf7d263faa7dd2fb1d21308c99908f4d28", "fields": {"nom_de_la_commune": "LANDRAIS", "libell_d_acheminement": "LANDRAIS", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17203"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b20bd3058a733e768536c9847157e0a914c99e42", "fields": {"nom_de_la_commune": "LOIRE SUR NIE", "libell_d_acheminement": "LOIRE SUR NIE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17206"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c60bbfff81200eb61070622717664c8bab561fe", "fields": {"nom_de_la_commune": "LONGEVES", "libell_d_acheminement": "LONGEVES", "code_postal": "17230", "coordonnees_gps": [46.286014889, -1.01509211949], "code_commune_insee": "17208"}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08c4e3e475ab42257454b1f2b99b5bb8b6c8e500", "fields": {"nom_de_la_commune": "MIGRON", "libell_d_acheminement": "MIGRON", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17235"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b3d7ba43ee07b9783fa0b42caefde7882b0aa81", "fields": {"code_postal": "17130", "code_commune_insee": "17240", "libell_d_acheminement": "MONTENDRE", "ligne_5": "VALLET", "nom_de_la_commune": "MONTENDRE", "coordonnees_gps": [45.3143331813, -0.405621594016]}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47cda05009953ea779204c7a08b7785fcd436e14", "fields": {"nom_de_la_commune": "MONTILS", "libell_d_acheminement": "MONTILS", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17242"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf4300b3723b22c75a2af2f9e7a8ce29750af6e", "fields": {"nom_de_la_commune": "MONTPELLIER DE MEDILLAN", "libell_d_acheminement": "MONTPELLIER DE MEDILLAN", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17244"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a158d70fe77d1ebb0f4eaa8b7b5c3928ecb4ff", "fields": {"nom_de_la_commune": "MOSNAC", "libell_d_acheminement": "MOSNAC", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17250"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "437c4b52400df8a346b35034c06f7975e96d7da4", "fields": {"nom_de_la_commune": "NANCRAS", "libell_d_acheminement": "NANCRAS", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17255"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8215fa867b800fa71a8a49bd235e2d32bec9a9e", "fields": {"nom_de_la_commune": "NERE", "libell_d_acheminement": "NERE", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17257"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a9bfeff936877d113fec5745440ae93cdd6bf62", "fields": {"nom_de_la_commune": "NIEUL LES SAINTES", "libell_d_acheminement": "NIEUL LES SAINTES", "code_postal": "17810", "coordonnees_gps": [45.7618866866, -0.717102907714], "code_commune_insee": "17262"}, "geometry": {"type": "Point", "coordinates": [-0.717102907714, 45.7618866866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c89afe154f0596b7eb211df488f326a798542610", "fields": {"nom_de_la_commune": "NIEUL LE VIROUIL", "libell_d_acheminement": "NIEUL LE VIROUIL", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17263"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b36714f9e97bbe9f2e0c33ab50cca2d6ec45672", "fields": {"nom_de_la_commune": "PISANY", "libell_d_acheminement": "PISANY", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17278"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aad70ce038a0472e9ae85e5b4472f7c7eb6fe71", "fields": {"nom_de_la_commune": "PREGUILLAC", "libell_d_acheminement": "PREGUILLAC", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17289"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3f0c6bf930d40dc4bca3617b38b63c27f9d546a", "fields": {"nom_de_la_commune": "PUYRAVAULT", "libell_d_acheminement": "PUYRAVAULT", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17293"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1e53020fa17d7c940fe6d7013fed06ed579d29", "fields": {"nom_de_la_commune": "RIVEDOUX PLAGE", "libell_d_acheminement": "RIVEDOUX PLAGE", "code_postal": "17940", "coordonnees_gps": [46.1591322925, -1.28378217941], "code_commune_insee": "17297"}, "geometry": {"type": "Point", "coordinates": [-1.28378217941, 46.1591322925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65499dc492e75a53d4174c5c5d3eb22e5d2adcb0", "fields": {"nom_de_la_commune": "ST BRIS DES BOIS", "libell_d_acheminement": "ST BRIS DES BOIS", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17313"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fa0129179d67f65e1b5aca169fa1145fcccd958", "fields": {"nom_de_la_commune": "ST CREPIN", "libell_d_acheminement": "ST CREPIN", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17321"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caef90881e243f97d3ef6e805f8464d8b3bf1f8c", "fields": {"nom_de_la_commune": "ST CYR DU DORET", "libell_d_acheminement": "ST CYR DU DORET", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17322"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30a80e0af8f8aa1d0128df6c3882e06ec17135ca", "fields": {"nom_de_la_commune": "ST DENIS D OLERON", "libell_d_acheminement": "ST DENIS D OLERON", "code_postal": "17650", "coordonnees_gps": [46.0245582667, -1.38697941463], "code_commune_insee": "17323"}, "geometry": {"type": "Point", "coordinates": [-1.38697941463, 46.0245582667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a63661081c7b2cbb3ab41400e14764487c3af47", "fields": {"nom_de_la_commune": "ST FROULT", "libell_d_acheminement": "ST FROULT", "code_postal": "17780", "coordonnees_gps": [45.9139828968, -1.03532159537], "code_commune_insee": "17329"}, "geometry": {"type": "Point", "coordinates": [-1.03532159537, 45.9139828968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b193ca893c660713bcbe7b1ac8efe217ed30723", "fields": {"nom_de_la_commune": "ST GENIS DE SAINTONGE", "libell_d_acheminement": "ST GENIS DE SAINTONGE", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17331"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c732bd5803e5174fa3ef9feb221122602b85eeb", "fields": {"nom_de_la_commune": "ST GEORGES ANTIGNAC", "libell_d_acheminement": "ST GEORGES ANTIGNAC", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17332"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40950abe1b94302699d84930f30bbfb70de01e4e", "fields": {"nom_de_la_commune": "ST GEORGES DES COTEAUX", "libell_d_acheminement": "ST GEORGES DES COTEAUX", "code_postal": "17810", "coordonnees_gps": [45.7618866866, -0.717102907714], "code_commune_insee": "17336"}, "geometry": {"type": "Point", "coordinates": [-0.717102907714, 45.7618866866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed39425068b75b3537770e2d42ade57028230a75", "fields": {"code_postal": "17190", "code_commune_insee": "17337", "libell_d_acheminement": "ST GEORGES D OLERON", "ligne_5": "CHAUCRE", "nom_de_la_commune": "ST GEORGES D OLERON", "coordonnees_gps": [45.9760434465, -1.32419340484]}, "geometry": {"type": "Point", "coordinates": [-1.32419340484, 45.9760434465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "550a24a0ec1562dc69f267c7b10535045a952692", "fields": {"code_postal": "17190", "code_commune_insee": "17337", "libell_d_acheminement": "ST GEORGES D OLERON", "ligne_5": "SAUZELLE", "nom_de_la_commune": "ST GEORGES D OLERON", "coordonnees_gps": [45.9760434465, -1.32419340484]}, "geometry": {"type": "Point", "coordinates": [-1.32419340484, 45.9760434465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f75180601f998666f03701ac1bcb0ad758067ce1", "fields": {"nom_de_la_commune": "ST GERMAIN DU SEUDRE", "libell_d_acheminement": "ST GERMAIN DU SEUDRE", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17342"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae780f4977742761ee4351229cb24d84c668c6d", "fields": {"nom_de_la_commune": "ST HILAIRE DE VILLEFRANCHE", "libell_d_acheminement": "ST HILAIRE DE VILLEFRANCHE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17344"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ccdd982f1407082b5ce834bf7619cea78962eaa", "fields": {"nom_de_la_commune": "ST JEAN D ANGELY", "libell_d_acheminement": "ST JEAN D ANGELY", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17347"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7819dc0400a254e4540baa6dc9744e244d923d4", "fields": {"nom_de_la_commune": "ST MAIGRIN", "libell_d_acheminement": "ST MAIGRIN", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17357"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfcc2a5182fba856c380e58e50ea2b7c1c7389b6", "fields": {"nom_de_la_commune": "ST MANDE SUR BREDOIRE", "libell_d_acheminement": "ST MANDE SUR BREDOIRE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17358"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94100f61fe622831527cd6bc3281e5e455918df6", "fields": {"nom_de_la_commune": "STE MARIE DE RE", "libell_d_acheminement": "STE MARIE DE RE", "code_postal": "17740", "coordonnees_gps": [46.1562709439, -1.32156428166], "code_commune_insee": "17360"}, "geometry": {"type": "Point", "coordinates": [-1.32156428166, 46.1562709439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f1b4408451dcf7bd7c1c2e03c3129d43f90ddaa", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17372"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aa995da82e5e95e3f4c879e75cdd267b45c15c1", "fields": {"nom_de_la_commune": "ST PALAIS DE PHIOLIN", "libell_d_acheminement": "ST PALAIS DE PHIOLIN", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17379"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2bb2ebeb3e3b22d48f0b5fecabdc6cbc9891b03", "fields": {"nom_de_la_commune": "ST ROGATIEN", "libell_d_acheminement": "ST ROGATIEN", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17391"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41b160030c3d9bf5f6ef64a35cbc4ba2625794ca", "fields": {"nom_de_la_commune": "ST SEVER DE SAINTONGE", "libell_d_acheminement": "ST SEVER DE SAINTONGE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17400"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d367d0c75847e7b21ff346dca1816ca63e7ac9e9", "fields": {"nom_de_la_commune": "ST SEVERIN SUR BOUTONNE", "libell_d_acheminement": "ST SEVERIN SUR BOUTONNE", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17401"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4689a8810286bdcdfc4892b4d8123d00f6eb5a4", "fields": {"nom_de_la_commune": "ST SIMON DE BORDES", "libell_d_acheminement": "ST SIMON DE BORDES", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17403"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c24da86da4082e60e976e5d59e456986ab09446", "fields": {"nom_de_la_commune": "ST SORNIN", "libell_d_acheminement": "ST SORNIN", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17406"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b09b56b05befc91e8910ede7c7c74432ee0b32", "fields": {"code_postal": "17220", "code_commune_insee": "17407", "libell_d_acheminement": "STE SOULLE", "ligne_5": "LES GRANDES RIVIERES", "nom_de_la_commune": "STE SOULLE", "coordonnees_gps": [46.1421522644, -1.01138171467]}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef3132679ba8d26aa42dd226075469b2d6066ce8", "fields": {"nom_de_la_commune": "SALEIGNES", "libell_d_acheminement": "SALEIGNES", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17416"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "278141184aefc2a5b5ee982c60ec406bf1a4b877", "fields": {"nom_de_la_commune": "SALLES SUR MER", "libell_d_acheminement": "SALLES SUR MER", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17420"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0f2412848bedcad6774a9b97492d478bfcfe650", "fields": {"nom_de_la_commune": "SAUJON", "libell_d_acheminement": "SAUJON", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17421"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a063e92f93c23464cc0aecbdf1c9ff7b47364263", "fields": {"nom_de_la_commune": "SEMILLAC", "libell_d_acheminement": "SEMILLAC", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17423"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6ae0ab8ed72c88e9a015f1d473a9f6e26ea356e", "fields": {"nom_de_la_commune": "SEMUSSAC", "libell_d_acheminement": "SEMUSSAC", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17425"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfa3759bf3bb4776f21742c9fa7e102d62e41399", "fields": {"nom_de_la_commune": "SONNAC", "libell_d_acheminement": "SONNAC", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17428"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f923f728dbe81377b4339812e5ce436480d56737", "fields": {"nom_de_la_commune": "TAILLANT", "libell_d_acheminement": "TAILLANT", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17435"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "783f1094cc815834c6a0e7f84eb7b7933fda132d", "fields": {"nom_de_la_commune": "TAILLEBOURG", "libell_d_acheminement": "TAILLEBOURG", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17436"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e95a00959ffa39a08ddc8f5f827ffbce8dedfab", "fields": {"nom_de_la_commune": "TERNANT", "libell_d_acheminement": "TERNANT", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17440"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f437720c8781125afc05f164ba1d716090756e21", "fields": {"nom_de_la_commune": "THEZAC", "libell_d_acheminement": "THEZAC", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17445"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69f4b77bc225e40be1c9540aebbd5a825b87785b", "fields": {"nom_de_la_commune": "LA TREMBLADE", "libell_d_acheminement": "LA TREMBLADE", "code_postal": "17390", "coordonnees_gps": [45.7593024584, -1.1913464058], "code_commune_insee": "17452"}, "geometry": {"type": "Point", "coordinates": [-1.1913464058, 45.7593024584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebaa66c1fa225eb805be13fa31e5c7d7487c70ed", "fields": {"code_postal": "17390", "code_commune_insee": "17452", "libell_d_acheminement": "LA TREMBLADE", "ligne_5": "RONCE LES BAINS", "nom_de_la_commune": "LA TREMBLADE", "coordonnees_gps": [45.7593024584, -1.1913464058]}, "geometry": {"type": "Point", "coordinates": [-1.1913464058, 45.7593024584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a9c7bb507958d21bbdaf943e7784e8b7ad17fc", "fields": {"nom_de_la_commune": "TRIZAY", "libell_d_acheminement": "TRIZAY", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17453"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f57b27010150cf4df4f07308f8f0761eda8d8f2", "fields": {"nom_de_la_commune": "LA VALLEE", "libell_d_acheminement": "LA VALLEE", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17455"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f243d118eaf5b29e9bfed009e36519cbb52e38ac", "fields": {"nom_de_la_commune": "VANDRE", "libell_d_acheminement": "VANDRE", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17457"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0fc5b40093414fedd6e6f5c8d2545d999050d02", "fields": {"nom_de_la_commune": "LA VERGNE", "libell_d_acheminement": "LA VERGNE", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17465"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a237880dd98bf72ce1cce5cdf16d415b56ca21d8", "fields": {"nom_de_la_commune": "VILLARS EN PONS", "libell_d_acheminement": "VILLARS EN PONS", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17469"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb881a16ddbea75cda0c767541a7e79f7a1de292", "fields": {"nom_de_la_commune": "VILLIERS COUTURE", "libell_d_acheminement": "VILLIERS COUTURE", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17477"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd66e557ad1bfe6bac4501d807e3385004d20b38", "fields": {"nom_de_la_commune": "VINAX", "libell_d_acheminement": "VINAX", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17478"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dedaacb244b7efb3ef752bd1cc364c2c1ea86aff", "fields": {"nom_de_la_commune": "YVES", "libell_d_acheminement": "YVES", "code_postal": "17340", "coordonnees_gps": [46.0464260547, -1.04444906455], "code_commune_insee": "17483"}, "geometry": {"type": "Point", "coordinates": [-1.04444906455, 46.0464260547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "382e1c2444f5cc980ea27012bffe23876966d4f4", "fields": {"nom_de_la_commune": "ACHERES", "libell_d_acheminement": "ACHERES", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18001"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ffa0e1699ead856e53349f00eaba25fa9099a2", "fields": {"nom_de_la_commune": "LES AIX D ANGILLON", "libell_d_acheminement": "LES AIX D ANGILLON", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18003"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7cfaf1e2b84ae73cf715f54a275b76d17e098c4", "fields": {"nom_de_la_commune": "BANNEGON", "libell_d_acheminement": "BANNEGON", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18021"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7b283d098355a10678f8ffef80a0126e414538", "fields": {"nom_de_la_commune": "BEFFES", "libell_d_acheminement": "BEFFES", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18025"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1133c4f62f8b58a0bb0ca01fa3bac912f7307cc2", "fields": {"nom_de_la_commune": "BOULLERET", "libell_d_acheminement": "BOULLERET", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18032"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72764cf8c5aaf05a65ab712a4102a6918664977", "fields": {"nom_de_la_commune": "BUSSY", "libell_d_acheminement": "BUSSY", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18040"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f783f2cfc87e1ffbbd3dc4bb2edda1fb01143010", "fields": {"nom_de_la_commune": "LA CELLE", "libell_d_acheminement": "LA CELLE", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18042"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c01f90f5b9251fd0e961f5f841a058dbdb94a94", "fields": {"nom_de_la_commune": "LA CHAPELLE HUGON", "libell_d_acheminement": "LA CHAPELLE HUGON", "code_postal": "18150", "coordonnees_gps": [46.9399476242, 2.96880212388], "code_commune_insee": "18048"}, "geometry": {"type": "Point", "coordinates": [2.96880212388, 46.9399476242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae858be90c98ae7624e9cd33a9959de39b70c162", "fields": {"nom_de_la_commune": "LA CHAPELOTTE", "libell_d_acheminement": "LA CHAPELOTTE", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18051"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6945d5500d4627a432b35d2aed2e74846cceab", "fields": {"nom_de_la_commune": "CHAVANNES", "libell_d_acheminement": "CHAVANNES", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18063"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5f89bcbdf571e47dc384b49672bce42deedd2a", "fields": {"nom_de_la_commune": "CIVRAY", "libell_d_acheminement": "CIVRAY", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18066"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21a4f48b05cc6704dcac2ad080d7adc212e6313a", "fields": {"nom_de_la_commune": "COLOMBIERS", "libell_d_acheminement": "COLOMBIERS", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18069"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "113dc0ac2ce287d30e80340c63e0ff5690906535", "fields": {"nom_de_la_commune": "CREZANCAY SUR CHER", "libell_d_acheminement": "CREZANCAY SUR CHER", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18078"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b44e4314d646f4084ab702ed9acbb3a1ab9e068", "fields": {"nom_de_la_commune": "CUFFY", "libell_d_acheminement": "CUFFY", "code_postal": "18150", "coordonnees_gps": [46.9399476242, 2.96880212388], "code_commune_insee": "18082"}, "geometry": {"type": "Point", "coordinates": [2.96880212388, 46.9399476242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb51ac573288a752bd983397792f703999f3f5c2", "fields": {"nom_de_la_commune": "CULAN", "libell_d_acheminement": "CULAN", "code_postal": "18270", "coordonnees_gps": [46.5558646891, 2.33204574523], "code_commune_insee": "18083"}, "geometry": {"type": "Point", "coordinates": [2.33204574523, 46.5558646891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2974955a464ebd1ec0723eb16effe5027865a04", "fields": {"nom_de_la_commune": "DAMPIERRE EN CROT", "libell_d_acheminement": "DAMPIERRE EN CROT", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18084"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "572b623dd494e99f2da8f6d197e0da393dfede34", "fields": {"nom_de_la_commune": "ETRECHY", "libell_d_acheminement": "ETRECHY", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18090"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c5c9b1ae993435a0b36ad2b49dee04a301f77a", "fields": {"nom_de_la_commune": "FARGES EN SEPTAINE", "libell_d_acheminement": "FARGES EN SEPTAINE", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18092"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b61f01ebb6789b757ac54440f43b9827128a4eef", "fields": {"nom_de_la_commune": "FUSSY", "libell_d_acheminement": "FUSSY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18097"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a02701d3dfc80fdb28f53e7cdb2d09c427c7e3eb", "fields": {"nom_de_la_commune": "GARIGNY", "libell_d_acheminement": "GARIGNY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18099"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e44f79e693762bfc59eb2a51033c26012686ef", "fields": {"nom_de_la_commune": "LA GUERCHE SUR L AUBOIS", "libell_d_acheminement": "LA GUERCHE SUR L AUBOIS", "code_postal": "18150", "coordonnees_gps": [46.9399476242, 2.96880212388], "code_commune_insee": "18108"}, "geometry": {"type": "Point", "coordinates": [2.96880212388, 46.9399476242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "267c91283d0b4fba5926123dec88cf057ed37217", "fields": {"nom_de_la_commune": "LERE", "libell_d_acheminement": "LERE", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18125"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a361290417b63ec084cde96a1f891524c629f5a", "fields": {"nom_de_la_commune": "LISSAY LOCHY", "libell_d_acheminement": "LISSAY LOCHY", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18129"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebf4232755869710f38dad45b709f76dd4dd02f6", "fields": {"nom_de_la_commune": "LUGNY BOURBONNAIS", "libell_d_acheminement": "LUGNY BOURBONNAIS", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18131"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b25313322811a04789154c973fa805d4314ae0b1", "fields": {"nom_de_la_commune": "MERY ES BOIS", "libell_d_acheminement": "MERY ES BOIS", "code_postal": "18380", "coordonnees_gps": [47.3630668749, 2.41288125218], "code_commune_insee": "18149"}, "geometry": {"type": "Point", "coordinates": [2.41288125218, 47.3630668749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e395497fb162f3acd5676599daee3aaf35c8a68", "fields": {"nom_de_la_commune": "NOHANT EN GOUT", "libell_d_acheminement": "NOHANT EN GOUT", "code_postal": "18390", "coordonnees_gps": [47.0877811378, 2.52674457802], "code_commune_insee": "18166"}, "geometry": {"type": "Point", "coordinates": [2.52674457802, 47.0877811378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90156faaa1ba456ecf9dcef6d6a2b6cff5d35c37", "fields": {"nom_de_la_commune": "OIZON", "libell_d_acheminement": "OIZON", "code_postal": "18700", "coordonnees_gps": [47.4727480114, 2.39384218551], "code_commune_insee": "18170"}, "geometry": {"type": "Point", "coordinates": [2.39384218551, 47.4727480114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebdb9d367ad8a661e323fb16e2cc8743e8fe31b7", "fields": {"nom_de_la_commune": "ORCENAIS", "libell_d_acheminement": "ORCENAIS", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18171"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "944ba3fc4529016b63fb1569f221526bc8931235", "fields": {"nom_de_la_commune": "LA PERCHE", "libell_d_acheminement": "LA PERCHE", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18178"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3818f77fd55b312d4423ed03afdc288543237b6", "fields": {"nom_de_la_commune": "ST AIGNAN DES NOYERS", "libell_d_acheminement": "ST AIGNAN DES NOYERS", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18196"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a2ac03f23ddd3e6c689108bec25f39268795605", "fields": {"nom_de_la_commune": "ST BAUDEL", "libell_d_acheminement": "ST BAUDEL", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18199"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d4b9781e34da154fd4f6f61e0ff81bbb942713b", "fields": {"nom_de_la_commune": "ST CAPRAIS", "libell_d_acheminement": "ST CAPRAIS", "code_postal": "18400", "coordonnees_gps": [46.9642447985, 2.24452322455], "code_commune_insee": "18201"}, "geometry": {"type": "Point", "coordinates": [2.24452322455, 46.9642447985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2633811ec9ad20fa7eba183a984aea7a258fda", "fields": {"nom_de_la_commune": "ST CEOLS", "libell_d_acheminement": "ST CEOLS", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18202"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "114dfb0ca19bdd7447817950bb2d75b5910892a1", "fields": {"nom_de_la_commune": "ST CHRISTOPHE LE CHAUDRY", "libell_d_acheminement": "ST CHRISTOPHE LE CHAUDRY", "code_postal": "18270", "coordonnees_gps": [46.5558646891, 2.33204574523], "code_commune_insee": "18203"}, "geometry": {"type": "Point", "coordinates": [2.33204574523, 46.5558646891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "687566c180e1453f9b1477921bad4f07ca8ecc81", "fields": {"nom_de_la_commune": "ST DOULCHARD", "libell_d_acheminement": "ST DOULCHARD", "code_postal": "18230", "coordonnees_gps": [47.111266878, 2.35685668856], "code_commune_insee": "18205"}, "geometry": {"type": "Point", "coordinates": [2.35685668856, 47.111266878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "737bc6ba1aaa39244150c7e6318fa7ae83575fe2", "fields": {"nom_de_la_commune": "ST GEORGES DE POISIEUX", "libell_d_acheminement": "ST GEORGES DE POISIEUX", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18209"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fc6da729cfa93c514e6afe97a2b37168f7eef29", "fields": {"nom_de_la_commune": "TRIGNAC", "libell_d_acheminement": "TRIGNAC", "code_postal": "44570", "coordonnees_gps": [47.3120002564, -2.20651150379], "code_commune_insee": "44210"}, "geometry": {"type": "Point", "coordinates": [-2.20651150379, 47.3120002564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98edfed7c4888bf2f658f59fe5681f23f2bfe2f2", "fields": {"nom_de_la_commune": "LA TURBALLE", "libell_d_acheminement": "LA TURBALLE", "code_postal": "44420", "coordonnees_gps": [47.373686193, -2.48987078247], "code_commune_insee": "44211"}, "geometry": {"type": "Point", "coordinates": [-2.48987078247, 47.373686193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee7f53ca27dd55da0a2d6a52354602f2b2e043d", "fields": {"nom_de_la_commune": "VALLET", "libell_d_acheminement": "VALLET", "code_postal": "44330", "coordonnees_gps": [47.1650939887, -1.27114440843], "code_commune_insee": "44212"}, "geometry": {"type": "Point", "coordinates": [-1.27114440843, 47.1650939887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e3dc928e86ac369c5fb4d52b6182a3514001e47", "fields": {"code_postal": "44370", "code_commune_insee": "44213", "libell_d_acheminement": "LOIREAUXENCE", "ligne_5": "LA CHAPELLE ST SAUVEUR", "nom_de_la_commune": "LOIREAUXENCE", "coordonnees_gps": [47.4023701755, -1.01236308659]}, "geometry": {"type": "Point", "coordinates": [-1.01236308659, 47.4023701755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e10c7567ca4a111cfb6170b5c841f27f6840bdd8", "fields": {"nom_de_la_commune": "VERTOU", "libell_d_acheminement": "VERTOU", "code_postal": "44120", "coordonnees_gps": [47.1603173471, -1.47089983101], "code_commune_insee": "44215"}, "geometry": {"type": "Point", "coordinates": [-1.47089983101, 47.1603173471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1e1648803e815397e4f6e099e80070f6763f08c", "fields": {"nom_de_la_commune": "VIEILLEVIGNE", "libell_d_acheminement": "VIEILLEVIGNE", "code_postal": "44116", "coordonnees_gps": [46.9711238546, -1.4191717487], "code_commune_insee": "44216"}, "geometry": {"type": "Point", "coordinates": [-1.4191717487, 46.9711238546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf3ce6d6f50b94662594f7009fb366a4c438af0", "fields": {"nom_de_la_commune": "VILLEPOT", "libell_d_acheminement": "VILLEPOT", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44218"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f98d32e51e6800f1b90b5c210f1f0d7f986864d2", "fields": {"nom_de_la_commune": "LA ROCHE BLANCHE", "libell_d_acheminement": "LA ROCHE BLANCHE", "code_postal": "44522", "coordonnees_gps": [47.4363371088, -1.20212334851], "code_commune_insee": "44222"}, "geometry": {"type": "Point", "coordinates": [-1.20212334851, 47.4363371088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40888ea1c287efbfd7e536d67c4ddc62a7030fdd", "fields": {"nom_de_la_commune": "ANDONVILLE", "libell_d_acheminement": "ANDONVILLE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45005"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecc607c170812d40a25637e0a6ddbb449a6a686b", "fields": {"nom_de_la_commune": "ARDON", "libell_d_acheminement": "ARDON", "code_postal": "45160", "coordonnees_gps": [47.8140032252, 1.87690042129], "code_commune_insee": "45006"}, "geometry": {"type": "Point", "coordinates": [1.87690042129, 47.8140032252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "205f622432b594e3f10f6dd6933eccb8fd7e9fa3", "fields": {"nom_de_la_commune": "AUDEVILLE", "libell_d_acheminement": "AUDEVILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45012"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cbb75e26a2dbfce4ef83f97cd8f0d0032193beb", "fields": {"nom_de_la_commune": "AULNAY LA RIVIERE", "libell_d_acheminement": "AULNAY LA RIVIERE", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45014"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60fc31a16483c2582a7859d19b3051b39105112e", "fields": {"nom_de_la_commune": "BARVILLE EN GATINAIS", "libell_d_acheminement": "BARVILLE EN GATINAIS", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45021"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c068c04005f19c5540d755fde0d6e24c655f268", "fields": {"nom_de_la_commune": "BATILLY EN GATINAIS", "libell_d_acheminement": "BATILLY EN GATINAIS", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45022"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f21c3b2956527190da2b0f2e7ef28c1aa7c1b17", "fields": {"nom_de_la_commune": "BAULE", "libell_d_acheminement": "BAULE", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45024"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a5d81c30c5606f507b3b991ecda97c86766acf2", "fields": {"nom_de_la_commune": "BEAUCHAMPS SUR HUILLARD", "libell_d_acheminement": "BEAUCHAMPS SUR HUILLARD", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45027"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f53c814c7999875db1e4f5cd20cf6aba508d6eae", "fields": {"nom_de_la_commune": "BOISCOMMUN", "libell_d_acheminement": "BOISCOMMUN", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45035"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba3568085f4fcb8d10e8cdfaf450f31dbe60257", "fields": {"nom_de_la_commune": "BONNEE", "libell_d_acheminement": "BONNEE", "code_postal": "45460", "coordonnees_gps": [47.835810766, 2.38912953908], "code_commune_insee": "45039"}, "geometry": {"type": "Point", "coordinates": [2.38912953908, 47.835810766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b298849fcd0d8b0fabc57210c67b84a6a442569", "fields": {"nom_de_la_commune": "BOUILLY EN GATINAIS", "libell_d_acheminement": "BOUILLY EN GATINAIS", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45045"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15288de9bd4ca12b0d792998a8feefd2a5b1c50c", "fields": {"nom_de_la_commune": "BRETEAU", "libell_d_acheminement": "BRETEAU", "code_postal": "45250", "coordonnees_gps": [47.6666483755, 2.7989341243], "code_commune_insee": "45052"}, "geometry": {"type": "Point", "coordinates": [2.7989341243, 47.6666483755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d2358735c2335bcc62f8a883895de21ec1e32f7", "fields": {"nom_de_la_commune": "BRIARRES SUR ESSONNE", "libell_d_acheminement": "BRIARRES SUR ESSONNE", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45054"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd81da04d5a68928e33fbd128a195b1a1a206847", "fields": {"nom_de_la_commune": "CEPOY", "libell_d_acheminement": "CEPOY", "code_postal": "45120", "coordonnees_gps": [48.0454419877, 2.71939290754], "code_commune_insee": "45061"}, "geometry": {"type": "Point", "coordinates": [2.71939290754, 48.0454419877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ab0d9d5eb03719323045ac53e96c394595542e", "fields": {"nom_de_la_commune": "CERNOY EN BERRY", "libell_d_acheminement": "CERNOY EN BERRY", "code_postal": "45360", "coordonnees_gps": [47.5591036835, 2.69824746137], "code_commune_insee": "45064"}, "geometry": {"type": "Point", "coordinates": [2.69824746137, 47.5591036835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2383020da8cd75c6bb113834a4e6ab34a9c1e1da", "fields": {"nom_de_la_commune": "CESARVILLE DOSSAINVILLE", "libell_d_acheminement": "CESARVILLE DOSSAINVILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45065"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "199805cc9b699b2398e920ffe032697f8bd9c95e", "fields": {"nom_de_la_commune": "CHAMBON LA FORET", "libell_d_acheminement": "CHAMBON LA FORET", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45069"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce9242d642f2d32393b5afafad4f25fd9673066", "fields": {"nom_de_la_commune": "CHANTEAU", "libell_d_acheminement": "CHANTEAU", "code_postal": "45400", "coordonnees_gps": [47.9619656993, 1.95515679115], "code_commune_insee": "45072"}, "geometry": {"type": "Point", "coordinates": [1.95515679115, 47.9619656993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e708dbc91873f45776b7e5534a25903025d663a", "fields": {"nom_de_la_commune": "CHANTECOQ", "libell_d_acheminement": "CHANTECOQ", "code_postal": "45320", "coordonnees_gps": [48.0463130644, 3.01780722216], "code_commune_insee": "45073"}, "geometry": {"type": "Point", "coordinates": [3.01780722216, 48.0463130644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049396d3d0bc4b4acd573ec26daa023b037c5f57", "fields": {"nom_de_la_commune": "LA CHAPELLE ST MESMIN", "libell_d_acheminement": "LA CHAPELLE ST MESMIN", "code_postal": "45380", "coordonnees_gps": [47.8904899207, 1.78907704146], "code_commune_insee": "45075"}, "geometry": {"type": "Point", "coordinates": [1.78907704146, 47.8904899207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbea7cce552bbb3391250825232e75931772a8ad", "fields": {"nom_de_la_commune": "CHATEAUNEUF SUR LOIRE", "libell_d_acheminement": "CHATEAUNEUF SUR LOIRE", "code_postal": "45110", "coordonnees_gps": [47.8743242491, 2.26314688236], "code_commune_insee": "45082"}, "geometry": {"type": "Point", "coordinates": [2.26314688236, 47.8743242491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1e8eba6c2e27c5ddb4cc8abac07f798b24a58d1", "fields": {"nom_de_la_commune": "COULMIERS", "libell_d_acheminement": "COULMIERS", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45109"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e4a96b2da62d7527ee2b6f91206b751d5ea7c6a", "fields": {"nom_de_la_commune": "COURTEMAUX", "libell_d_acheminement": "COURTEMAUX", "code_postal": "45320", "coordonnees_gps": [48.0463130644, 3.01780722216], "code_commune_insee": "45113"}, "geometry": {"type": "Point", "coordinates": [3.01780722216, 48.0463130644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d23d9d5273fe536919f4d8940d1480465abcc54", "fields": {"nom_de_la_commune": "CROTTES EN PITHIVERAIS", "libell_d_acheminement": "CROTTES EN PITHIVERAIS", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45118"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e21791856601a870e27a31bcf19d62c9fb77a4e", "fields": {"nom_de_la_commune": "DONNERY", "libell_d_acheminement": "DONNERY", "code_postal": "45450", "coordonnees_gps": [47.9620977232, 2.17370967023], "code_commune_insee": "45126"}, "geometry": {"type": "Point", "coordinates": [2.17370967023, 47.9620977232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99373ebd3b26974fb0eda2ac5aaad979160e5932", "fields": {"nom_de_la_commune": "DORDIVES", "libell_d_acheminement": "DORDIVES", "code_postal": "45680", "coordonnees_gps": [48.1480384141, 2.77415862582], "code_commune_insee": "45127"}, "geometry": {"type": "Point", "coordinates": [2.77415862582, 48.1480384141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbab5ee55c438fd14ec5df3328d652224adc3584", "fields": {"nom_de_la_commune": "ECHILLEUSES", "libell_d_acheminement": "ECHILLEUSES", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45131"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c172af973d0fe34333f0f68eae32a097852eddcf", "fields": {"nom_de_la_commune": "ENGENVILLE", "libell_d_acheminement": "ENGENVILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45133"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfe1c0b2a276a39f091b61f9d2d6269532215fff", "fields": {"nom_de_la_commune": "ESTOUY", "libell_d_acheminement": "ESTOUY", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45139"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "254300a9c5e63a9a80b1c0be3adad46d3d941105", "fields": {"nom_de_la_commune": "FERRIERES EN GATINAIS", "libell_d_acheminement": "FERRIERES EN GATINAIS", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45145"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9b4e0edad374f5fb323d743b656fe7c54568cf", "fields": {"nom_de_la_commune": "GEMIGNY", "libell_d_acheminement": "GEMIGNY", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45152"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "617c0cb46ae3e221c97bdfb0a9512ef948641ca6", "fields": {"nom_de_la_commune": "GIVRAINES", "libell_d_acheminement": "GIVRAINES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45157"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a0fc94166c91e7ad93b125273cb0e9c778ddd7c", "fields": {"code_postal": "45480", "code_commune_insee": "45160", "libell_d_acheminement": "GRENEVILLE EN BEAUCE", "ligne_5": "GUIGNONVILLE", "nom_de_la_commune": "GRENEVILLE EN BEAUCE", "coordonnees_gps": [48.2104328363, 2.06032110325]}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7616c2ee88770d0d1a644368a4f93068f0c51667", "fields": {"nom_de_la_commune": "ISDES", "libell_d_acheminement": "ISDES", "code_postal": "45620", "coordonnees_gps": [47.6434103501, 2.3340789354], "code_commune_insee": "45171"}, "geometry": {"type": "Point", "coordinates": [2.3340789354, 47.6434103501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72754e8ef14a7d0d33f266c7ef5cc85af03d01fb", "fields": {"nom_de_la_commune": "JOUY EN PITHIVERAIS", "libell_d_acheminement": "JOUY EN PITHIVERAIS", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45174"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e209058f9f8188e2ac6a47e51851e1679a6fb41", "fields": {"nom_de_la_commune": "LOMBREUIL", "libell_d_acheminement": "LOMBREUIL", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45185"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10e915614aa76fa3edacbad75e1f90630d4d7102", "fields": {"nom_de_la_commune": "MENESTREAU EN VILLETTE", "libell_d_acheminement": "MENESTREAU EN VILLETTE", "code_postal": "45240", "coordonnees_gps": [47.7166815663, 1.97527540747], "code_commune_insee": "45200"}, "geometry": {"type": "Point", "coordinates": [1.97527540747, 47.7166815663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f85a56175fad16c72609a0ce2da367c820b21f", "fields": {"nom_de_la_commune": "MEUNG SUR LOIRE", "libell_d_acheminement": "MEUNG SUR LOIRE", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45203"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f58d51243eda6661ce546009ee7e6c6471111bd8", "fields": {"nom_de_la_commune": "MONTEREAU", "libell_d_acheminement": "MONTEREAU", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45213"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf21c2c93bf68c503c63c2528b4b54d0307291b7", "fields": {"nom_de_la_commune": "MONTIGNY", "libell_d_acheminement": "MONTIGNY", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45214"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c835d6fe16b9d2ee215bd226f417c6e89ab212f0", "fields": {"nom_de_la_commune": "MOULON", "libell_d_acheminement": "MOULON", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45219"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b3ef5601c9a4a3e04c31615f633268d78e705d", "fields": {"nom_de_la_commune": "NEVOY", "libell_d_acheminement": "NEVOY", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45227"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b081a319a28dea1662b933d59b541f9761647dfc", "fields": {"nom_de_la_commune": "NIBELLE", "libell_d_acheminement": "NIBELLE", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45228"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fdb3b1f71a131eab7fdb39107ca281fcf589fdc", "fields": {"nom_de_la_commune": "NOGENT SUR VERNISSON", "libell_d_acheminement": "NOGENT SUR VERNISSON", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45229"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cde02f7f1df853670e9e8da449d99c4201a6191", "fields": {"nom_de_la_commune": "BOURGUIGNON SOUS MONTBAVIN", "libell_d_acheminement": "BOURGUIGNON SOUS MONTBAVIN", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02108"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1854c301fc2bff84d1b6eacadd30bb37beb30083", "fields": {"nom_de_la_commune": "BOHAIN EN VERMANDOIS", "libell_d_acheminement": "BOHAIN EN VERMANDOIS", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02095"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d3f12e731c3bcccc49f7f23504a1db01d3867e", "fields": {"nom_de_la_commune": "BOUFFIGNEREUX", "libell_d_acheminement": "BOUFFIGNEREUX", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02104"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e1aaede6e535e669a82617790a1b2593d3a05a", "fields": {"nom_de_la_commune": "BICHANCOURT", "libell_d_acheminement": "BICHANCOURT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02086"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ffa4439572b060c6fe7be98d515d5640c9a2eed", "fields": {"nom_de_la_commune": "BOURESCHES", "libell_d_acheminement": "BOURESCHES", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02105"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9efa25029e38aafb2f7e8626090ba5773965b82f", "fields": {"nom_de_la_commune": "BONCOURT", "libell_d_acheminement": "BONCOURT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02097"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e91f5bd247385104ea31162732b52d07455dd90f", "fields": {"nom_de_la_commune": "BIEVRES", "libell_d_acheminement": "BIEVRES", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02088"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9abb0ffbe9fe80ac032b96fa6555d3e2d0663967", "fields": {"nom_de_la_commune": "BRUMETZ", "libell_d_acheminement": "BRUMETZ", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02125"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "459308f935007a3789c564080ab784a916f07edd", "fields": {"nom_de_la_commune": "BONNEIL", "libell_d_acheminement": "BONNEIL", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02098"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15163ccb1d66e011d0f100a02822b9c0b069c697", "fields": {"nom_de_la_commune": "BRECY", "libell_d_acheminement": "BRECY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02119"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e311997a03da7ad31e3d24eec96d867f5e5938e", "fields": {"nom_de_la_commune": "ESSOMES SUR MARNE", "libell_d_acheminement": "ESSOMES SUR MARNE", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02290"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a539a543dd44661cb45fea1edf2958c371d873f8", "fields": {"nom_de_la_commune": "ESSIGNY LE PETIT", "libell_d_acheminement": "ESSIGNY LE PETIT", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02288"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c76e7065b3e5c28f344c5e2b5efd466d3cd6cfd", "fields": {"nom_de_la_commune": "DIZY LE GROS", "libell_d_acheminement": "DIZY LE GROS", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02264"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087b273091337f53a1035b4508c13d93f3e7d580", "fields": {"nom_de_la_commune": "EPAUX BEZU", "libell_d_acheminement": "EPAUX BEZU", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02279"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f3987ba271663cc3bebdecd2867d6dfe8b38cba", "fields": {"nom_de_la_commune": "EBOULEAU", "libell_d_acheminement": "EBOULEAU", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02274"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2216d016f329399bc3b24c6bc64c18d5a42f66", "fields": {"nom_de_la_commune": "DRAVEGNY", "libell_d_acheminement": "DRAVEGNY", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02271"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a06dc801ed4d98a2130ab09230c0124f6b6433", "fields": {"nom_de_la_commune": "DANIZY", "libell_d_acheminement": "DANIZY", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02260"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "815d3825acaee93b1ad0064dbec742a0cd1d2f28", "fields": {"nom_de_la_commune": "DOUCHY", "libell_d_acheminement": "DOUCHY", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02270"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1274f26b23ba1648da3f93d56c3d0f68165aaee", "fields": {"nom_de_la_commune": "EFFRY", "libell_d_acheminement": "EFFRY", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02275"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b784ab8b324ddd8385dd08cf8956d0ce239871", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR CHEZY", "libell_d_acheminement": "LA CHAPELLE SUR CHEZY", "code_postal": "02570", "coordonnees_gps": [48.9733835684, 3.38685321975], "code_commune_insee": "02162"}, "geometry": {"type": "Point", "coordinates": [3.38685321975, 48.9733835684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f6f28a9b5ee2e083eea7412b1602e2220611df", "fields": {"nom_de_la_commune": "CHIVRES EN LAONNOIS", "libell_d_acheminement": "CHIVRES EN LAONNOIS", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02189"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d456a4bb4b1a8c81ad13adbfff244314d3afd456", "fields": {"nom_de_la_commune": "CHATILLON SUR OISE", "libell_d_acheminement": "CHATILLON SUR OISE", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02170"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b194c29bd5a8cf989ae51212d44382af5c4611c6", "fields": {"nom_de_la_commune": "CLACY ET THIERRET", "libell_d_acheminement": "CLACY ET THIERRET", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02196"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f752dc42f4dbe5e6bbab67795d1ae2b93b272a6", "fields": {"nom_de_la_commune": "CELLES SUR AISNE", "libell_d_acheminement": "CELLES SUR AISNE", "code_postal": "02370", "coordonnees_gps": [49.4107346804, 3.51937274632], "code_commune_insee": "02148"}, "geometry": {"type": "Point", "coordinates": [3.51937274632, 49.4107346804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7fa911de0aef34e959a34773f34a3a310606cd0", "fields": {"nom_de_la_commune": "CHERY CHARTREUVE", "libell_d_acheminement": "CHERY CHARTREUVE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02179"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9109a5c5ed6681978af25ef62c7ca875cd8dfc", "fields": {"nom_de_la_commune": "CIRY SALSOGNE", "libell_d_acheminement": "CIRY SALSOGNE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02195"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cfefc610977665874e0ec307f5a4bc1b423bdbd", "fields": {"nom_de_la_commune": "LE CHARMEL", "libell_d_acheminement": "LE CHARMEL", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02164"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e05debcee04436b481f826ae3b760f0de0fbbb8", "fields": {"nom_de_la_commune": "BUZANCY", "libell_d_acheminement": "BUZANCY", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02138"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb94a8aa95fceb467f73e5b0b7b6887e453e6c5", "fields": {"nom_de_la_commune": "CHAMBRY", "libell_d_acheminement": "CHAMBRY", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02157"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0a52a84db0b0af3449d2c7e07373b067bd9f16f", "fields": {"nom_de_la_commune": "COUVRON ET AUMENCOURT", "libell_d_acheminement": "COUVRON ET AUMENCOURT", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02231"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61dab11c50537e38482aefe4b1e527b8dc37144c", "fields": {"nom_de_la_commune": "COEUVRES ET VALSERY", "libell_d_acheminement": "COEUVRES ET VALSERY", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02201"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb1429c3f6ad42b235d3ad5aca85459ad3924f2", "fields": {"nom_de_la_commune": "CRECY SUR SERRE", "libell_d_acheminement": "CRECY SUR SERRE", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02237"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8a52bdc9a4cdf349c4d2f31b09017ceb69eb86", "fields": {"nom_de_la_commune": "COUCY LES EPPES", "libell_d_acheminement": "COUCY LES EPPES", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02218"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63848bef468a4a201b63c0458da3c9ded3ad795", "fields": {"nom_de_la_commune": "DAGNY LAMBERCY", "libell_d_acheminement": "DAGNY LAMBERCY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02256"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7971caa6e50301c3e1332b390558aab1a25e04e4", "fields": {"nom_de_la_commune": "CYS LA COMMUNE", "libell_d_acheminement": "CYS LA COMMUNE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02255"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f428a1f52f8c84df7d23b96aaf3c3112fbb52bb", "fields": {"nom_de_la_commune": "CONCEVREUX", "libell_d_acheminement": "CONCEVREUX", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02208"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37db20b9941172438fbca62c84e7dcbe821e6eca", "fields": {"nom_de_la_commune": "COURMONT", "libell_d_acheminement": "COURMONT", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02227"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ecc01d589109ac0688cd25a63b9ddfcaa76c52", "fields": {"nom_de_la_commune": "COYOLLES", "libell_d_acheminement": "COYOLLES", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02232"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7925ea4634b03f33319d723cc818406184f0e70a", "fields": {"nom_de_la_commune": "CUGNY", "libell_d_acheminement": "CUGNY", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02246"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4caa5b986f928cfce39a4bff5e37ff4ea56faf39", "fields": {"nom_de_la_commune": "BAZOCHES SUR VESLES", "libell_d_acheminement": "BAZOCHES SUR VESLES", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02054"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f77268598c76f8f9077d7a8ca4b2897950607ee", "fields": {"nom_de_la_commune": "BEAUMONT EN BEINE", "libell_d_acheminement": "BEAUMONT EN BEINE", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02056"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "601666248a3b5759e895f3e89cf36b3b8e0114db", "fields": {"nom_de_la_commune": "BASSOLES AULERS", "libell_d_acheminement": "BASSOLES AULERS", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02052"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e4730b3e37420ccaf3e08b3d81544c82067746", "fields": {"nom_de_la_commune": "BEZU ST GERMAIN", "libell_d_acheminement": "BEZU ST GERMAIN", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02085"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f69d27a2d2352e69584c7372e31589a565de872", "fields": {"nom_de_la_commune": "BERLANCOURT", "libell_d_acheminement": "BERLANCOURT", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02068"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "902ce3cd133b7ae2eb1f10e8167346482078dc86", "fields": {"nom_de_la_commune": "BEAUREVOIR", "libell_d_acheminement": "BEAUREVOIR", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02057"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af07dec152cb3e6e9299d9b1216b79d2ad42a3b", "fields": {"nom_de_la_commune": "AUTREVILLE", "libell_d_acheminement": "AUTREVILLE", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02041"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab493f2dedd7a374b1a718a5dd2fdb6a4b2dcb4", "fields": {"nom_de_la_commune": "BANCIGNY", "libell_d_acheminement": "BANCIGNY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02044"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7014d8d8ff86cdf02a0bda96b4e7df3e9b83bd8e", "fields": {"nom_de_la_commune": "BEAUTOR", "libell_d_acheminement": "BEAUTOR", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02059"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b69b9ee6e9beea3fddd6f5f15071f0e9a33c3f28", "fields": {"nom_de_la_commune": "NOGENT SUR EURE", "libell_d_acheminement": "NOGENT SUR EURE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28281"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4c7c7d690741be44a4c047cab7b590f02ee203", "fields": {"nom_de_la_commune": "ORMOY", "libell_d_acheminement": "ORMOY", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28289"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0f71ee433454069efc68e5b8c5e74268f751c4", "fields": {"nom_de_la_commune": "ORROUER", "libell_d_acheminement": "ORROUER", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28290"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e770cfd30226739df4e613ab739373134f3a53d", "fields": {"nom_de_la_commune": "OUERRE", "libell_d_acheminement": "OUERRE", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28292"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e659664466b044631cf660978c3abaee5599d6e", "fields": {"nom_de_la_commune": "OYSONVILLE", "libell_d_acheminement": "OYSONVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28294"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0135db5fb4c3db9d2a402b7ec5f2e7a70541bec", "fields": {"nom_de_la_commune": "PIERRES", "libell_d_acheminement": "PIERRES", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28298"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3131256d7d18f4cecd58da7c4d58340ed941cc72", "fields": {"nom_de_la_commune": "LES PINTHIERES", "libell_d_acheminement": "LES PINTHIERES", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28299"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68502c0d507dc9fcf7147c2aecbd7fac8265b4e4", "fields": {"nom_de_la_commune": "POINVILLE", "libell_d_acheminement": "POINVILLE", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28300"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f6731c094a3399ae02b65ac4059b04b22d12e9", "fields": {"nom_de_la_commune": "PRUNAY LE GILLON", "libell_d_acheminement": "PRUNAY LE GILLON", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28309"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad7cdb03453b276344c9fff7e68f8cb7500f3c8a", "fields": {"nom_de_la_commune": "RECLAINVILLE", "libell_d_acheminement": "RECLAINVILLE", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28313"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9288f33ef163687fe147b1ab0a556bc47cc42c91", "fields": {"nom_de_la_commune": "ST ARNOULT DES BOIS", "libell_d_acheminement": "ST ARNOULT DES BOIS", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28324"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e7f766283c25d01ed763278b34c1cad3311b905", "fields": {"nom_de_la_commune": "STE GEMME MORONVAL", "libell_d_acheminement": "STE GEMME MORONVAL", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28332"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16adb8de966f35630e4bc541407e6bf4068ea905", "fields": {"nom_de_la_commune": "ST ELIPH", "libell_d_acheminement": "ST ELIPH", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28335"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3f5d15a0da3262e8c402ac781cf316ce93e0a80", "fields": {"nom_de_la_commune": "ST GERMAIN LE GAILLARD", "libell_d_acheminement": "ST GERMAIN LE GAILLARD", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28339"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f89455ad91a802fa53e308f21452c624a7339141", "fields": {"nom_de_la_commune": "ST MARTIN DE NIGELLES", "libell_d_acheminement": "ST MARTIN DE NIGELLES", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28352"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3fcceea009445ffae2a3fda879b705ca59eed2c", "fields": {"nom_de_la_commune": "ST MAUR SUR LE LOIR", "libell_d_acheminement": "ST MAUR SUR LE LOIR", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28353"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2d419cefb0a13e2902c2ad26c9c759eb51ce90", "fields": {"nom_de_la_commune": "ST MAURICE ST GERMAIN", "libell_d_acheminement": "ST MAURICE ST GERMAIN", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28354"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e943c7365337e6afab3b1521112c4a8debce0e1", "fields": {"code_postal": "28170", "code_commune_insee": "28360", "libell_d_acheminement": "ST SAUVEUR MARVILLE", "ligne_5": "MARVILLE LES BOIS", "nom_de_la_commune": "ST SAUVEUR MARVILLE", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "935a66388d83a09251e1bcf1361122f5371fb1b8", "fields": {"nom_de_la_commune": "ST VICTOR DE BUTHON", "libell_d_acheminement": "ST VICTOR DE BUTHON", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28362"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31d536c7c4519c6774114d558f19954019f28fd9", "fields": {"nom_de_la_commune": "SAINVILLE", "libell_d_acheminement": "SAINVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28363"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ddde7dc00dd3ebb557dad75df7bf227f99eaa85", "fields": {"nom_de_la_commune": "SANCHEVILLE", "libell_d_acheminement": "SANCHEVILLE", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28364"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef4d015646f899bc910eaca100e66576a082e118", "fields": {"nom_de_la_commune": "SANDARVILLE", "libell_d_acheminement": "SANDARVILLE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28365"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b56d5a4c25b7cff9550c6054bdd4a43fbee0f7ad", "fields": {"nom_de_la_commune": "LA SAUCELLE", "libell_d_acheminement": "LA SAUCELLE", "code_postal": "28250", "coordonnees_gps": [48.5729617229, 1.05761026517], "code_commune_insee": "28368"}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c030dd779a345b160969c7d6230fc2fd188f3c", "fields": {"nom_de_la_commune": "SAUSSAY", "libell_d_acheminement": "SAUSSAY", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28371"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182566c01267ffe1b1caea09130f654c362bac6b", "fields": {"nom_de_la_commune": "SERAZEREUX", "libell_d_acheminement": "SERAZEREUX", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28374"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33310ae9d8c444977b08947c368be611b84189f4", "fields": {"nom_de_la_commune": "SOREL MOUSSEL", "libell_d_acheminement": "SOREL MOUSSEL", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28377"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "596be381310fb490fe2a37788e7e877254e7b89b", "fields": {"nom_de_la_commune": "SOUANCE AU PERCHE", "libell_d_acheminement": "SOUANCE AU PERCHE", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28378"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37ee7ef720b6177bf1dca4d4f295d933ec393421", "fields": {"nom_de_la_commune": "THIRON GARDAIS", "libell_d_acheminement": "THIRON GARDAIS", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28387"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "510e41a61bc73f55032ebf0b7ba5484f2e33da6c", "fields": {"nom_de_la_commune": "THIVILLE", "libell_d_acheminement": "THIVILLE", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28389"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b5cce8ef4702df6bd7862aa30cd05a305d7572", "fields": {"code_postal": "28170", "code_commune_insee": "28393", "libell_d_acheminement": "TREMBLAY LES VILLAGES", "ligne_5": "THEUVY ACHERES", "nom_de_la_commune": "TREMBLAY LES VILLAGES", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77857b39beff7c132da80c54db248fc738d9aaa8", "fields": {"nom_de_la_commune": "TREON", "libell_d_acheminement": "TREON", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28394"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a8e8dc4f0115dd96e201064e04f370f165dcbe", "fields": {"nom_de_la_commune": "UMPEAU", "libell_d_acheminement": "UMPEAU", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28397"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "588549b0a09190c57c7db4a288f3837a19293029", "fields": {"nom_de_la_commune": "VARIZE", "libell_d_acheminement": "VARIZE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28400"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa025482dd39bc7b562bbd2210b28afa43b3b7a7", "fields": {"nom_de_la_commune": "VAUPILLON", "libell_d_acheminement": "VAUPILLON", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28401"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fadf6b5bf51ccfc1aa03ff31ee370447dda371ca", "fields": {"nom_de_la_commune": "VER LES CHARTRES", "libell_d_acheminement": "VER LES CHARTRES", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28403"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba56134e1b171aec293224613841b9f8226f9866", "fields": {"nom_de_la_commune": "VILLEBON", "libell_d_acheminement": "VILLEBON", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28414"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb96aa9b7658c85d461d11988f5fb68b0b5175df", "fields": {"nom_de_la_commune": "VILLIERS ST ORIEN", "libell_d_acheminement": "VILLIERS ST ORIEN", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28418"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b029209f1ae915f3b635f625673625e2f92404", "fields": {"code_postal": "28150", "code_commune_insee": "28422", "libell_d_acheminement": "LES VILLAGES VOVEENS", "ligne_5": "VILLENEUVE ST NICOLAS", "nom_de_la_commune": "LES VILLAGES VOVEENS", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc956f1ffee2098ed89e25d8544e6906b0f235cf", "fields": {"code_postal": "28150", "code_commune_insee": "28422", "libell_d_acheminement": "LES VILLAGES VOVEENS", "ligne_5": "VOVES", "nom_de_la_commune": "LES VILLAGES VOVEENS", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8297462c046318639a25109ca09ef9f2050ec0b6", "fields": {"nom_de_la_commune": "YEVRES", "libell_d_acheminement": "YEVRES", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28424"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c66fc3d35c5533806e1808a3f444929d6cb2a2", "fields": {"code_postal": "29770", "code_commune_insee": "29003", "libell_d_acheminement": "AUDIERNE", "ligne_5": "ESQUIBIEN", "nom_de_la_commune": "AUDIERNE", "coordonnees_gps": [48.0454956217, -4.63185223568]}, "geometry": {"type": "Point", "coordinates": [-4.63185223568, 48.0454956217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ec0d79c24c9ef4aa322196416d03522a9723732", "fields": {"nom_de_la_commune": "BAYE", "libell_d_acheminement": "BAYE", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29005"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a09f45230307d4b55e8e069db6f251cb02cc7a6", "fields": {"nom_de_la_commune": "BODILIS", "libell_d_acheminement": "BODILIS", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29010"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e95d0bcbbd7c27b8943b55b63f047e2d702f572", "fields": {"nom_de_la_commune": "BRIEC", "libell_d_acheminement": "BRIEC", "code_postal": "29510", "coordonnees_gps": [48.0935216519, -3.99705249419], "code_commune_insee": "29020"}, "geometry": {"type": "Point", "coordinates": [-3.99705249419, 48.0935216519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb517c03c23f71aec1ead9334704b77fdc23889", "fields": {"nom_de_la_commune": "CHATEAUNEUF DU FAOU", "libell_d_acheminement": "CHATEAUNEUF DU FAOU", "code_postal": "29520", "coordonnees_gps": [48.1597745239, -3.82338194426], "code_commune_insee": "29027"}, "geometry": {"type": "Point", "coordinates": [-3.82338194426, 48.1597745239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0e89828abf35fddd0a9e387c6e6f452d076214", "fields": {"nom_de_la_commune": "CLOHARS CARNOET", "libell_d_acheminement": "CLOHARS CARNOET", "code_postal": "29360", "coordonnees_gps": [47.7942669936, -3.56719689292], "code_commune_insee": "29031"}, "geometry": {"type": "Point", "coordinates": [-3.56719689292, 47.7942669936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68f6bf7c1cbdbcfd44ef4a50fbe387ecff0e258b", "fields": {"code_postal": "29360", "code_commune_insee": "29031", "libell_d_acheminement": "CLOHARS CARNOET", "ligne_5": "LE POULDU", "nom_de_la_commune": "CLOHARS CARNOET", "coordonnees_gps": [47.7942669936, -3.56719689292]}, "geometry": {"type": "Point", "coordinates": [-3.56719689292, 47.7942669936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "302ff6cdb830eb351c06a46430fabafac600de3b", "fields": {"nom_de_la_commune": "CROZON", "libell_d_acheminement": "CROZON", "code_postal": "29160", "coordonnees_gps": [48.2509456374, -4.48250403015], "code_commune_insee": "29042"}, "geometry": {"type": "Point", "coordinates": [-4.48250403015, 48.2509456374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f348c61189c30fa58586952637797ec09c23c0", "fields": {"code_postal": "29160", "code_commune_insee": "29042", "libell_d_acheminement": "CROZON", "ligne_5": "LE FRET", "nom_de_la_commune": "CROZON", "coordonnees_gps": [48.2509456374, -4.48250403015]}, "geometry": {"type": "Point", "coordinates": [-4.48250403015, 48.2509456374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d6aa3d5254ba25cc3eb2b62c77b93a5444e5c66", "fields": {"code_postal": "29100", "code_commune_insee": "29046", "libell_d_acheminement": "DOUARNENEZ", "ligne_5": "TREBOUL", "nom_de_la_commune": "DOUARNENEZ", "coordonnees_gps": [48.0680166457, -4.3318760918]}, "geometry": {"type": "Point", "coordinates": [-4.3318760918, 48.0680166457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41850f5bf60754ba6accfc96fef2d7a0c8e74030", "fields": {"nom_de_la_commune": "ELLIANT", "libell_d_acheminement": "ELLIANT", "code_postal": "29370", "coordonnees_gps": [48.0256499846, -3.888334488], "code_commune_insee": "29049"}, "geometry": {"type": "Point", "coordinates": [-3.888334488, 48.0256499846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "772c03f04ee9d761c538ac9210edcb8219ef8c5c", "fields": {"nom_de_la_commune": "GARLAN", "libell_d_acheminement": "GARLAN", "code_postal": "29610", "coordonnees_gps": [48.5789578669, -3.7146289967], "code_commune_insee": "29059"}, "geometry": {"type": "Point", "coordinates": [-3.7146289967, 48.5789578669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa8b29aa0aaf3ae873bef9542aa1c687a1873ee", "fields": {"nom_de_la_commune": "GUILVINEC", "libell_d_acheminement": "GUILVINEC", "code_postal": "29730", "coordonnees_gps": [47.80414483, -4.26610695], "code_commune_insee": "29072"}, "geometry": {"type": "Point", "coordinates": [-4.26610695, 47.80414483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7db5195c886accfb0a8ca9df50b21f960eca528", "fields": {"nom_de_la_commune": "GUIMAEC", "libell_d_acheminement": "GUIMAEC", "code_postal": "29620", "coordonnees_gps": [48.6479299732, -3.70272210639], "code_commune_insee": "29073"}, "geometry": {"type": "Point", "coordinates": [-3.70272210639, 48.6479299732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dd25770bf8c8b9e185e6c93bae220c46e3fbdf0", "fields": {"nom_de_la_commune": "HANVEC", "libell_d_acheminement": "HANVEC", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29078"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd8498f86be60e817ba908662d339582c1a5229", "fields": {"nom_de_la_commune": "HUELGOAT", "libell_d_acheminement": "HUELGOAT", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29081"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23acbcff7542b5c7f5e70ad94ad60cfec2f86d81", "fields": {"nom_de_la_commune": "ILE DE SEIN", "libell_d_acheminement": "ILE DE SEIN", "code_postal": "29990", "coordonnees_gps": [48.0380497921, -4.85657063177], "code_commune_insee": "29083"}, "geometry": {"type": "Point", "coordinates": [-4.85657063177, 48.0380497921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c22e2bd4e3de981227e19aca9b6d8c7b00d9611", "fields": {"nom_de_la_commune": "KERNOUES", "libell_d_acheminement": "KERNOUES", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29094"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096a1c4f1815a109301e97e271c05d031e9f92b9", "fields": {"nom_de_la_commune": "LAMPAUL GUIMILIAU", "libell_d_acheminement": "LAMPAUL GUIMILIAU", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29097"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d26d386fc4e4193bbc7e12e49269addc67f7c8", "fields": {"nom_de_la_commune": "LAMPAUL PLOUDALMEZEAU", "libell_d_acheminement": "LAMPAUL PLOUDALMEZEAU", "code_postal": "29830", "coordonnees_gps": [48.5288495464, -4.64332809681], "code_commune_insee": "29099"}, "geometry": {"type": "Point", "coordinates": [-4.64332809681, 48.5288495464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13f6257455d42bcc96e63dd3159fa92fd28c0a18", "fields": {"nom_de_la_commune": "LANARVILY", "libell_d_acheminement": "LANARVILY", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29100"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569fdfe515d4c747d8153515b16de90cc8cfcd56", "fields": {"nom_de_la_commune": "LANDELEAU", "libell_d_acheminement": "LANDELEAU", "code_postal": "29530", "coordonnees_gps": [48.2737361692, -3.80437790081], "code_commune_insee": "29102"}, "geometry": {"type": "Point", "coordinates": [-3.80437790081, 48.2737361692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54f7675fdd87cfb6b0ed5f10015c66b9a291308", "fields": {"nom_de_la_commune": "LANDIVISIAU", "libell_d_acheminement": "LANDIVISIAU", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29105"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b124ab568ad7051302ae664de75de120d464bc6e", "fields": {"nom_de_la_commune": "LANDUDAL", "libell_d_acheminement": "LANDUDAL", "code_postal": "29510", "coordonnees_gps": [48.0935216519, -3.99705249419], "code_commune_insee": "29107"}, "geometry": {"type": "Point", "coordinates": [-3.99705249419, 48.0935216519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ffc5ea80051b8ba767283e1214c4de8ef6dc81", "fields": {"nom_de_la_commune": "LANMEUR", "libell_d_acheminement": "LANMEUR", "code_postal": "29620", "coordonnees_gps": [48.6479299732, -3.70272210639], "code_commune_insee": "29113"}, "geometry": {"type": "Point", "coordinates": [-3.70272210639, 48.6479299732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4570d4a381b43f4603dce56d9e89d1f5ad477816", "fields": {"nom_de_la_commune": "LAZ", "libell_d_acheminement": "LAZ", "code_postal": "29520", "coordonnees_gps": [48.1597745239, -3.82338194426], "code_commune_insee": "29122"}, "geometry": {"type": "Point", "coordinates": [-3.82338194426, 48.1597745239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb2f23615f1bf1f483fab3e7e973e946d9bda6e", "fields": {"nom_de_la_commune": "LOCQUIREC", "libell_d_acheminement": "LOCQUIREC", "code_postal": "29241", "coordonnees_gps": [48.6828515665, -3.66757726911], "code_commune_insee": "29133"}, "geometry": {"type": "Point", "coordinates": [-3.66757726911, 48.6828515665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db04477e435e90b854933245177f80a6fc5d367d", "fields": {"nom_de_la_commune": "LOPEREC", "libell_d_acheminement": "LOPEREC", "code_postal": "29590", "coordonnees_gps": [48.2799947077, -4.10763494114], "code_commune_insee": "29139"}, "geometry": {"type": "Point", "coordinates": [-4.10763494114, 48.2799947077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44a0e37303fc3b9593f13226d2071b26fc18d03", "fields": {"nom_de_la_commune": "LOPERHET", "libell_d_acheminement": "LOPERHET", "code_postal": "29470", "coordonnees_gps": [48.3674331518, -4.36175367065], "code_commune_insee": "29140"}, "geometry": {"type": "Point", "coordinates": [-4.36175367065, 48.3674331518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2120091367ff79c785ff20dcfba4608870545871", "fields": {"nom_de_la_commune": "MELLAC", "libell_d_acheminement": "MELLAC", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29147"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b341c2571c9e400dfc663796204cdf1e6a84663d", "fields": {"nom_de_la_commune": "MESPAUL", "libell_d_acheminement": "MESPAUL", "code_postal": "29420", "coordonnees_gps": [48.5999876589, -4.00739831758], "code_commune_insee": "29148"}, "geometry": {"type": "Point", "coordinates": [-4.00739831758, 48.5999876589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b93b2455d68dad9888eb7702fa92e061029a5b", "fields": {"nom_de_la_commune": "MILIZAC", "libell_d_acheminement": "MILIZAC", "code_postal": "29290", "coordonnees_gps": [48.4609307964, -4.5931901744], "code_commune_insee": "29149"}, "geometry": {"type": "Point", "coordinates": [-4.5931901744, 48.4609307964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce45496458d830865743733360e223c622d2c619", "fields": {"nom_de_la_commune": "MOTREFF", "libell_d_acheminement": "MOTREFF", "code_postal": "29270", "coordonnees_gps": [48.2542377474, -3.60710668308], "code_commune_insee": "29152"}, "geometry": {"type": "Point", "coordinates": [-3.60710668308, 48.2542377474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6798a484f4b4d84fc8be5242961f0407d59cf1", "fields": {"nom_de_la_commune": "PLEUVEN", "libell_d_acheminement": "PLEUVEN", "code_postal": "29170", "coordonnees_gps": [47.912618887, -4.02039306441], "code_commune_insee": "29161"}, "geometry": {"type": "Point", "coordinates": [-4.02039306441, 47.912618887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b912b8d112040c7114d20cde0fbe859fef565f4", "fields": {"code_postal": "29740", "code_commune_insee": "29165", "libell_d_acheminement": "PLOBANNALEC LESCONIL", "ligne_5": "LESCONIL", "nom_de_la_commune": "PLOBANNALEC LESCONIL", "coordonnees_gps": [47.8211386982, -4.22818525264]}, "geometry": {"type": "Point", "coordinates": [-4.22818525264, 47.8211386982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a02eae2699b4ed26789263c55fb53e166f02bf28", "fields": {"nom_de_la_commune": "PLOGASTEL ST GERMAIN", "libell_d_acheminement": "PLOGASTEL ST GERMAIN", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29167"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470d049044f566e549b4aae20e9afcdb5c6202f7", "fields": {"nom_de_la_commune": "PLOGOFF", "libell_d_acheminement": "PLOGOFF", "code_postal": "29770", "coordonnees_gps": [48.0454956217, -4.63185223568], "code_commune_insee": "29168"}, "geometry": {"type": "Point", "coordinates": [-4.63185223568, 48.0454956217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c99d9d86a3c9a81c51fc445d9aaad6a910f0b6", "fields": {"nom_de_la_commune": "PLOUARZEL", "libell_d_acheminement": "PLOUARZEL", "code_postal": "29810", "coordonnees_gps": [48.4283895014, -4.71567534635], "code_commune_insee": "29177"}, "geometry": {"type": "Point", "coordinates": [-4.71567534635, 48.4283895014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf4bf3d75466918c9eabe35d79ed3f192a2d8a2b", "fields": {"nom_de_la_commune": "PLOUDIRY", "libell_d_acheminement": "PLOUDIRY", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29180"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa17de86e511d56c7996907494730ab84e7afd65", "fields": {"nom_de_la_commune": "PLOUEDERN", "libell_d_acheminement": "PLOUEDERN", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29181"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f181c7c4d46dcdff06bb7ae7028602bcdf6ed80", "fields": {"nom_de_la_commune": "PLOUENAN", "libell_d_acheminement": "PLOUENAN", "code_postal": "29420", "coordonnees_gps": [48.5999876589, -4.00739831758], "code_commune_insee": "29184"}, "geometry": {"type": "Point", "coordinates": [-4.00739831758, 48.5999876589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a87ddce93c4d0e9a22bc32b6fdd54c59824babb", "fields": {"code_postal": "29630", "code_commune_insee": "29188", "libell_d_acheminement": "PLOUGASNOU", "ligne_5": "PRIMEL TREGASTEL", "nom_de_la_commune": "PLOUGASNOU", "coordonnees_gps": [48.6746083543, -3.7940474751]}, "geometry": {"type": "Point", "coordinates": [-3.7940474751, 48.6746083543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaa44bf1619e474f0dad61db200f07b01248a979", "fields": {"code_postal": "29217", "code_commune_insee": "29190", "libell_d_acheminement": "PLOUGONVELIN", "ligne_5": "ST MATHIEU", "nom_de_la_commune": "PLOUGONVELIN", "coordonnees_gps": [48.3548137568, -4.73034046541]}, "geometry": {"type": "Point", "coordinates": [-4.73034046541, 48.3548137568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930c051ff5036b4707fdf62e5043d172f73ad50d", "fields": {"nom_de_la_commune": "PLOUGOULM", "libell_d_acheminement": "PLOUGOULM", "code_postal": "29250", "coordonnees_gps": [48.669516256, -4.02599526836], "code_commune_insee": "29192"}, "geometry": {"type": "Point", "coordinates": [-4.02599526836, 48.669516256]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b69d8fddf0e656fe58506e72dbad6b289e1d9aeb", "fields": {"nom_de_la_commune": "PLOUIDER", "libell_d_acheminement": "PLOUIDER", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29198"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "412112d8dafee3de2d1cc3c175cbb31fef802d83", "fields": {"nom_de_la_commune": "PLOUMOGUER", "libell_d_acheminement": "PLOUMOGUER", "code_postal": "29810", "coordonnees_gps": [48.4283895014, -4.71567534635], "code_commune_insee": "29201"}, "geometry": {"type": "Point", "coordinates": [-4.71567534635, 48.4283895014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ced45abede180d74a092e2b049214bfec95fd7f3", "fields": {"nom_de_la_commune": "PLOUNEVENTER", "libell_d_acheminement": "PLOUNEVENTER", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29204"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5caae39a1b9d1ba099a3c1bdc236f17552d9a4", "fields": {"nom_de_la_commune": "PLOUYE", "libell_d_acheminement": "PLOUYE", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29211"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93416fe195e5a34cb28eb726b38cd0a0302d1f37", "fields": {"nom_de_la_commune": "PLOUZANE", "libell_d_acheminement": "PLOUZANE", "code_postal": "29280", "coordonnees_gps": [48.3750034189, -4.61990199453], "code_commune_insee": "29212"}, "geometry": {"type": "Point", "coordinates": [-4.61990199453, 48.3750034189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edbd09b1f84723260a67f85caa3673f0983c69ae", "fields": {"nom_de_la_commune": "PONT L ABBE", "libell_d_acheminement": "PONT L ABBE", "code_postal": "29120", "coordonnees_gps": [47.8679473907, -4.24180509959], "code_commune_insee": "29220"}, "geometry": {"type": "Point", "coordinates": [-4.24180509959, 47.8679473907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122b9038c2a81c0211c6fb632fa6ffe4c2529c42", "fields": {"nom_de_la_commune": "POULLAN SUR MER", "libell_d_acheminement": "POULLAN SUR MER", "code_postal": "29100", "coordonnees_gps": [48.0680166457, -4.3318760918], "code_commune_insee": "29226"}, "geometry": {"type": "Point", "coordinates": [-4.3318760918, 48.0680166457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53eaca321319703ef7bd98a2283942a9053f44f1", "fields": {"nom_de_la_commune": "POULLAOUEN", "libell_d_acheminement": "POULLAOUEN", "code_postal": "29246", "coordonnees_gps": [48.3452916463, -3.63011667373], "code_commune_insee": "29227"}, "geometry": {"type": "Point", "coordinates": [-3.63011667373, 48.3452916463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0dd1066935c349495f73f7aac824e0a293829d", "fields": {"nom_de_la_commune": "LE RELECQ KERHUON", "libell_d_acheminement": "LE RELECQ KERHUON", "code_postal": "29480", "coordonnees_gps": [48.4030607499, -4.40121515046], "code_commune_insee": "29235"}, "geometry": {"type": "Point", "coordinates": [-4.40121515046, 48.4030607499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3a987282bdaac33faed35ca9c50f08eb609baf", "fields": {"nom_de_la_commune": "RIEC SUR BELON", "libell_d_acheminement": "RIEC SUR BELON", "code_postal": "29340", "coordonnees_gps": [47.8492743509, -3.69074275177], "code_commune_insee": "29236"}, "geometry": {"type": "Point", "coordinates": [-3.69074275177, 47.8492743509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdea5074321acddd6c313155895228b76b3f65f3", "fields": {"nom_de_la_commune": "LA ROCHE MAURICE", "libell_d_acheminement": "LA ROCHE MAURICE", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29237"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d41b94b91bf150db1e6c146e73c05577651c7a", "fields": {"nom_de_la_commune": "ST POL DE LEON", "libell_d_acheminement": "ST POL DE LEON", "code_postal": "29250", "coordonnees_gps": [48.669516256, -4.02599526836], "code_commune_insee": "29259"}, "geometry": {"type": "Point", "coordinates": [-4.02599526836, 48.669516256]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bac7cd420db72da28ad6a9b1498a1f256767536", "fields": {"nom_de_la_commune": "STE SEVE", "libell_d_acheminement": "STE SEVE", "code_postal": "29600", "coordonnees_gps": [48.5560606462, -3.82444218679], "code_commune_insee": "29265"}, "geometry": {"type": "Point", "coordinates": [-3.82444218679, 48.5560606462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ad0a88722e95d56848246776eb82b7959a651b", "fields": {"code_postal": "29410", "code_commune_insee": "29266", "libell_d_acheminement": "ST THEGONNEC LOC EGUINER", "ligne_5": "LOC EGUINER ST THEGONNEC", "nom_de_la_commune": "ST THEGONNEC LOC EGUINER", "coordonnees_gps": [48.4944200655, -3.89854217]}, "geometry": {"type": "Point", "coordinates": [-3.89854217, 48.4944200655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdb06525a2cde66be75dc09ba615468329362b7d", "fields": {"nom_de_la_commune": "ST URBAIN", "libell_d_acheminement": "ST URBAIN", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29270"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "356c3d898a1b7dd22b26b0f410a66f4a2a607e1e", "fields": {"nom_de_la_commune": "ST VOUGAY", "libell_d_acheminement": "ST VOUGAY", "code_postal": "29440", "coordonnees_gps": [48.5805315546, -4.12744185635], "code_commune_insee": "29271"}, "geometry": {"type": "Point", "coordinates": [-4.12744185635, 48.5805315546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8938819a994eed13d741323e66848cb30a7d6eb3", "fields": {"nom_de_la_commune": "RENAISON", "libell_d_acheminement": "RENAISON", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42182"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8f6cadc3c9f5d678c29eaa27f4d42b0fa700b9", "fields": {"nom_de_la_commune": "RIVAS", "libell_d_acheminement": "RIVAS", "code_postal": "42340", "coordonnees_gps": [45.5673382654, 4.26910796554], "code_commune_insee": "42185"}, "geometry": {"type": "Point", "coordinates": [4.26910796554, 45.5673382654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecaecbcf7422b5bb26566e2337aea948ed3fdfc5", "fields": {"nom_de_la_commune": "ROZIER COTES D AUREC", "libell_d_acheminement": "ROZIER COTES D AUREC", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42192"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e16759602fd73066ae92fce1c329772bdd73449e", "fields": {"nom_de_la_commune": "STE AGATHE LA BOUTERESSE", "libell_d_acheminement": "STE AGATHE LA BOUTERESSE", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42197"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ee5ad7d9cff6aee19d3f5ef88d5c40b2e3f2c7a", "fields": {"nom_de_la_commune": "ST BONNET DES QUARTS", "libell_d_acheminement": "ST BONNET DES QUARTS", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42203"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033903bd2599d557e69af461eeb1274989a0350a", "fields": {"nom_de_la_commune": "ST BONNET LES OULES", "libell_d_acheminement": "ST BONNET LES OULES", "code_postal": "42330", "coordonnees_gps": [45.5836134512, 4.32526364645], "code_commune_insee": "42206"}, "geometry": {"type": "Point", "coordinates": [4.32526364645, 45.5836134512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f767bf7d5e4532e70eecc01b49e054d2ffa8f0a6", "fields": {"code_postal": "42400", "code_commune_insee": "42207", "libell_d_acheminement": "ST CHAMOND", "ligne_5": "ST MARTIN EN COAILLEUX", "nom_de_la_commune": "ST CHAMOND", "coordonnees_gps": [45.4701877634, 4.50203719758]}, "geometry": {"type": "Point", "coordinates": [4.50203719758, 45.4701877634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d288125d7ba8feb6fae166fe22f58c070d68b30", "fields": {"nom_de_la_commune": "STE CROIX EN JAREZ", "libell_d_acheminement": "STE CROIX EN JAREZ", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42210"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c6989a9e8a2c406ce933cbb7965d79bf0e5ccc", "fields": {"nom_de_la_commune": "ST CYR DE FAVIERES", "libell_d_acheminement": "ST CYR DE FAVIERES", "code_postal": "42123", "coordonnees_gps": [45.9494163931, 4.07525689543], "code_commune_insee": "42212"}, "geometry": {"type": "Point", "coordinates": [4.07525689543, 45.9494163931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b34d49bbef5959a25b935750a561453387fc5be9", "fields": {"nom_de_la_commune": "ST ETIENNE LE MOLARD", "libell_d_acheminement": "ST ETIENNE LE MOLARD", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42219"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56a0ed33c7e4457fd7d783ef215f93553c27f999", "fields": {"nom_de_la_commune": "ST FORGEUX LESPINASSE", "libell_d_acheminement": "ST FORGEUX LESPINASSE", "code_postal": "42640", "coordonnees_gps": [46.1173312235, 3.98457148265], "code_commune_insee": "42220"}, "geometry": {"type": "Point", "coordinates": [3.98457148265, 46.1173312235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c652026338b6f3c43acf586a26cc198fac914814", "fields": {"nom_de_la_commune": "STE FOY ST SULPICE", "libell_d_acheminement": "STE FOY ST SULPICE", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42221"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0fa4e32ea58556685278881c5d679ade6e7bd5", "fields": {"nom_de_la_commune": "GENILAC", "libell_d_acheminement": "GENILAC", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42225"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0bd072731ffe9d29a9ebb968dcdacd47acb7030", "fields": {"nom_de_la_commune": "ST GEORGES EN COUZAN", "libell_d_acheminement": "ST GEORGES EN COUZAN", "code_postal": "42990", "coordonnees_gps": [45.7002510044, 3.8910786139], "code_commune_insee": "42227"}, "geometry": {"type": "Point", "coordinates": [3.8910786139, 45.7002510044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1de0831d3d6dfa3ceec4cd72c92b28d09b2f9a48", "fields": {"nom_de_la_commune": "ST GERMAIN LA MONTAGNE", "libell_d_acheminement": "ST GERMAIN LA MONTAGNE", "code_postal": "42670", "coordonnees_gps": [46.1669318835, 4.36381176292], "code_commune_insee": "42229"}, "geometry": {"type": "Point", "coordinates": [4.36381176292, 46.1669318835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6647b8898c00dfc2c5d6d4812a720af0c1368bec", "fields": {"nom_de_la_commune": "ST GERMAIN LESPINASSE", "libell_d_acheminement": "ST GERMAIN LESPINASSE", "code_postal": "42640", "coordonnees_gps": [46.1173312235, 3.98457148265], "code_commune_insee": "42231"}, "geometry": {"type": "Point", "coordinates": [3.98457148265, 46.1173312235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47ca7ab1e156d7e4d9798de01c713759c868e49b", "fields": {"nom_de_la_commune": "ST HAON LE CHATEL", "libell_d_acheminement": "ST HAON LE CHATEL", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42232"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d5d9ac6fe9ecfe3a656dc887005b62c79d7f712", "fields": {"nom_de_la_commune": "ST HEAND", "libell_d_acheminement": "ST HEAND", "code_postal": "42570", "coordonnees_gps": [45.5307279114, 4.38118209598], "code_commune_insee": "42234"}, "geometry": {"type": "Point", "coordinates": [4.38118209598, 45.5307279114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0cd369b1f88cb3282d2e313ce481819ac140cc", "fields": {"nom_de_la_commune": "ST JEAN BONNEFONDS", "libell_d_acheminement": "ST JEAN BONNEFONDS", "code_postal": "42650", "coordonnees_gps": [45.4566338869, 4.44834110414], "code_commune_insee": "42237"}, "geometry": {"type": "Point", "coordinates": [4.44834110414, 45.4566338869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d81fbb37cc5dc34699cf1b034279ef3f0806076", "fields": {"nom_de_la_commune": "ST JEAN SOLEYMIEUX", "libell_d_acheminement": "ST JEAN SOLEYMIEUX", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42240"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5344a17969c55aec177c09e8b3329ef5aee71ae", "fields": {"nom_de_la_commune": "ST JUST EN BAS", "libell_d_acheminement": "ST JUST EN BAS", "code_postal": "42990", "coordonnees_gps": [45.7002510044, 3.8910786139], "code_commune_insee": "42247"}, "geometry": {"type": "Point", "coordinates": [3.8910786139, 45.7002510044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5cb701b195e96abc44ec122f32cbef9dedbba0", "fields": {"nom_de_la_commune": "ST LAURENT LA CONCHE", "libell_d_acheminement": "ST LAURENT LA CONCHE", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42251"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54358f723bfdb8eed291965f646c8de6e9a5b0f3", "fields": {"nom_de_la_commune": "ST MARTIN D ESTREAUX", "libell_d_acheminement": "ST MARTIN D ESTREAUX", "code_postal": "42620", "coordonnees_gps": [46.2033046771, 3.79612534085], "code_commune_insee": "42257"}, "geometry": {"type": "Point", "coordinates": [3.79612534085, 46.2033046771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1116007cec8d2ba0852d9910cca0254b1357bff0", "fields": {"nom_de_la_commune": "ST MICHEL SUR RHONE", "libell_d_acheminement": "ST MICHEL SUR RHONE", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42265"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb37f9f4fa69e6e135f141fe206bfd9c026ac950", "fields": {"nom_de_la_commune": "ST ROMAIN D URFE", "libell_d_acheminement": "ST ROMAIN D URFE", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42282"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6222f94d53382d36553b1edcf6afab57f9ca0db", "fields": {"nom_de_la_commune": "ST ROMAIN LE PUY", "libell_d_acheminement": "ST ROMAIN LE PUY", "code_postal": "42610", "coordonnees_gps": [45.5527385083, 4.11908617697], "code_commune_insee": "42285"}, "geometry": {"type": "Point", "coordinates": [4.11908617697, 45.5527385083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0dd58fe142cbcbf158a6b4a44cfc6b2801a1b84", "fields": {"nom_de_la_commune": "ST SAUVEUR EN RUE", "libell_d_acheminement": "ST SAUVEUR EN RUE", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42287"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9199b4012232dd7923b48b6e507a77f7d04149aa", "fields": {"nom_de_la_commune": "ST VICTOR SUR RHINS", "libell_d_acheminement": "ST VICTOR SUR RHINS", "code_postal": "42630", "coordonnees_gps": [46.0004668112, 4.2221699814], "code_commune_insee": "42293"}, "geometry": {"type": "Point", "coordinates": [4.2221699814, 46.0004668112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb2d43a824cdb525fe582f987adc2be5c0fd669", "fields": {"nom_de_la_commune": "SALVIZINET", "libell_d_acheminement": "SALVIZINET", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42297"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621f455c10290f794e722e259e3c350d617b5523", "fields": {"nom_de_la_commune": "SAUVAIN", "libell_d_acheminement": "SAUVAIN", "code_postal": "42990", "coordonnees_gps": [45.7002510044, 3.8910786139], "code_commune_insee": "42298"}, "geometry": {"type": "Point", "coordinates": [3.8910786139, 45.7002510044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "228533c1d9fb850f9634762dc33f9c0b9dee9c93", "fields": {"nom_de_la_commune": "SOUTERNON", "libell_d_acheminement": "SOUTERNON", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42303"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1f28fda8c725b6e5fd24f3e5812b64a577855c7", "fields": {"nom_de_la_commune": "LA TERRASSE SUR DORLAY", "libell_d_acheminement": "LA TERRASSE SUR DORLAY", "code_postal": "42740", "coordonnees_gps": [45.4411267885, 4.58408605646], "code_commune_insee": "42308"}, "geometry": {"type": "Point", "coordinates": [4.58408605646, 45.4411267885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d527ed9e9d602dafa3e20c947efce381f13383", "fields": {"nom_de_la_commune": "THELIS LA COMBE", "libell_d_acheminement": "THELIS LA COMBE", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42310"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c06d875dbc46c6f627e0118466ac870385edbf9", "fields": {"nom_de_la_commune": "VALEILLE", "libell_d_acheminement": "VALEILLE", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42319"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc15f95fab019fbcc5c0ae5b87cd77b9f97d45c7", "fields": {"nom_de_la_commune": "LA VALLA SUR ROCHEFORT", "libell_d_acheminement": "LA VALLA SUR ROCHEFORT", "code_postal": "42111", "coordonnees_gps": [45.7864146517, 3.85739554907], "code_commune_insee": "42321"}, "geometry": {"type": "Point", "coordinates": [3.85739554907, 45.7864146517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66700e7cb08a58b962811309cac6c29a22957789", "fields": {"nom_de_la_commune": "VIOLAY", "libell_d_acheminement": "VIOLAY", "code_postal": "42780", "coordonnees_gps": [45.8519257177, 4.34943755733], "code_commune_insee": "42334"}, "geometry": {"type": "Point", "coordinates": [4.34943755733, 45.8519257177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f52a7a0a8b59b0837d56b7fa7db362a5b93bc486", "fields": {"nom_de_la_commune": "VIRICELLES", "libell_d_acheminement": "VIRICELLES", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42335"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aeb54b628eb5e889277d7446db14bc0f0f3ca7f", "fields": {"nom_de_la_commune": "AGNAT", "libell_d_acheminement": "AGNAT", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43001"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1fee7824e098f55f1c98c728d8644cf3d34c4e4", "fields": {"nom_de_la_commune": "ARAULES", "libell_d_acheminement": "ARAULES", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43007"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2be6a2d73b0bd76eb7a8e4b03e80e2aecd0b74c6", "fields": {"code_postal": "43300", "code_commune_insee": "43013", "libell_d_acheminement": "VISSAC AUTEYRAC", "ligne_5": "VISSAC", "nom_de_la_commune": "VISSAC AUTEYRAC", "coordonnees_gps": [45.0667197349, 3.4902019392]}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa9ca105888b8d53e9ad709384a26e2cc4f5448", "fields": {"nom_de_la_commune": "AZERAT", "libell_d_acheminement": "AZERAT", "code_postal": "43390", "coordonnees_gps": [45.377762878, 3.39697021869], "code_commune_insee": "43017"}, "geometry": {"type": "Point", "coordinates": [3.39697021869, 45.377762878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99d75c0252f52688189ef03d5b95661a07a82406", "fields": {"nom_de_la_commune": "BAINS", "libell_d_acheminement": "BAINS", "code_postal": "43370", "coordonnees_gps": [44.9661456359, 3.83512081172], "code_commune_insee": "43018"}, "geometry": {"type": "Point", "coordinates": [3.83512081172, 44.9661456359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c1300f4d32f152201d0d5819f5acfc48050849", "fields": {"nom_de_la_commune": "BLASSAC", "libell_d_acheminement": "BLASSAC", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43031"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b36dada004b9f4fce91aec9c20ba3a3dfeb225", "fields": {"nom_de_la_commune": "LE BRIGNON", "libell_d_acheminement": "LE BRIGNON", "code_postal": "43370", "coordonnees_gps": [44.9661456359, 3.83512081172], "code_commune_insee": "43039"}, "geometry": {"type": "Point", "coordinates": [3.83512081172, 44.9661456359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4289c91e6413192a376270c53227a5d6ad896f5", "fields": {"nom_de_la_commune": "BRIOUDE", "libell_d_acheminement": "BRIOUDE", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43040"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76126474704ac258b11989083967451227c4cb2c", "fields": {"nom_de_la_commune": "LE CHAMBON SUR LIGNON", "libell_d_acheminement": "LE CHAMBON SUR LIGNON", "code_postal": "43400", "coordonnees_gps": [45.0530604169, 4.31970286969], "code_commune_insee": "43051"}, "geometry": {"type": "Point", "coordinates": [4.31970286969, 45.0530604169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b38d1505c48011c4e5ead70b4e09c04b2cf8cac", "fields": {"nom_de_la_commune": "CHAMPCLAUSE", "libell_d_acheminement": "CHAMPCLAUSE", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43053"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95b099c886e833e7666b3028ce00a390999618a4", "fields": {"nom_de_la_commune": "CHAMPCLAUSE", "libell_d_acheminement": "CHAMPCLAUSE", "code_postal": "43430", "coordonnees_gps": [44.9885742524, 4.21536792056], "code_commune_insee": "43053"}, "geometry": {"type": "Point", "coordinates": [4.21536792056, 44.9885742524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8026d10b4f26be5f7ab548e55b42935350bd0be5", "fields": {"nom_de_la_commune": "CHAZELLES", "libell_d_acheminement": "CHAZELLES", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43068"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05c755bc7e92f34dc4dbc1e92a3a59274ab65931", "fields": {"nom_de_la_commune": "CISTRIERES", "libell_d_acheminement": "CISTRIERES", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43073"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915209137caffc699947b0e1d1a096a09edacb6b", "fields": {"nom_de_la_commune": "COUTEUGES", "libell_d_acheminement": "COUTEUGES", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43079"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec6900f55ee5aa2abd521ac350c6900aad5cc35d", "fields": {"nom_de_la_commune": "DESGES", "libell_d_acheminement": "DESGES", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43085"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc2dc57341532428e9e0554c45fdde4315daf5b", "fields": {"nom_de_la_commune": "DOMEYRAT", "libell_d_acheminement": "DOMEYRAT", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43086"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2836a27a1c1440742e2c8cf56b46bcc6091e2b38", "fields": {"nom_de_la_commune": "FELINES", "libell_d_acheminement": "FELINES", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43093"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f0d540d283d730723f1f61897b5b47132f28560", "fields": {"nom_de_la_commune": "FONTANNES", "libell_d_acheminement": "FONTANNES", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43096"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97f5d02da70925313e9ba34936bd7c7b0172683d", "fields": {"nom_de_la_commune": "FREYCENET LA CUCHE", "libell_d_acheminement": "FREYCENET LA CUCHE", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43097"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e734493ef24c149b7a98daca873c028c6207c5", "fields": {"nom_de_la_commune": "FRUGERES LES MINES", "libell_d_acheminement": "FRUGERES LES MINES", "code_postal": "43250", "coordonnees_gps": [45.4003953203, 3.3095057239], "code_commune_insee": "43099"}, "geometry": {"type": "Point", "coordinates": [3.3095057239, 45.4003953203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b9d3e2037bca57fb80dcf559315770f8e63a751", "fields": {"nom_de_la_commune": "GOUDET", "libell_d_acheminement": "GOUDET", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43101"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7be07f8844d2f799bceafc812a1f5d5ef361bdab", "fields": {"nom_de_la_commune": "JOSAT", "libell_d_acheminement": "JOSAT", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43107"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c28794c9b70676cbe47e87e74214d04414d5a036", "fields": {"nom_de_la_commune": "LAVAL SUR DOULON", "libell_d_acheminement": "LAVAL SUR DOULON", "code_postal": "43440", "coordonnees_gps": [45.3510344646, 3.5299252821], "code_commune_insee": "43116"}, "geometry": {"type": "Point", "coordinates": [3.5299252821, 45.3510344646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f46ccc2e5c9b5f9c4e30a12c9e8726364508cab", "fields": {"nom_de_la_commune": "LISSAC", "libell_d_acheminement": "LISSAC", "code_postal": "43350", "coordonnees_gps": [45.1597919947, 3.81524516944], "code_commune_insee": "43122"}, "geometry": {"type": "Point", "coordinates": [3.81524516944, 45.1597919947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aafefdad8040a075400a64d9ca9268f0dd1f577b", "fields": {"nom_de_la_commune": "LOUDES", "libell_d_acheminement": "LOUDES", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43124"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174a2921a42332c1a680b8a6e6fac6c486bb5de7", "fields": {"nom_de_la_commune": "LUBILHAC", "libell_d_acheminement": "LUBILHAC", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43125"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95ee498cb6e6ba3ae0d1b78038425da418d239e", "fields": {"nom_de_la_commune": "MEZERES", "libell_d_acheminement": "MEZERES", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43134"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da74f64c7e6b4bbd450018bbe09a07a0608b9590", "fields": {"nom_de_la_commune": "MONTCLARD", "libell_d_acheminement": "MONTCLARD", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43139"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79d4b6afef12f03dc18874d54ce3ae383324bb9", "fields": {"nom_de_la_commune": "MOUDEYRES", "libell_d_acheminement": "MOUDEYRES", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43144"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2636a486e92beda45d46c4624497885e5afa3d3", "fields": {"nom_de_la_commune": "OUIDES", "libell_d_acheminement": "OUIDES", "code_postal": "43510", "coordonnees_gps": [44.9244140229, 3.76769965575], "code_commune_insee": "43145"}, "geometry": {"type": "Point", "coordinates": [3.76769965575, 44.9244140229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "395f922fc9048dfb38551b36e0808a16d63dffd3", "fields": {"nom_de_la_commune": "PINOLS", "libell_d_acheminement": "PINOLS", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43151"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4978ad7fe938e18dc725842319a3e1d630b469c2", "fields": {"nom_de_la_commune": "ROSIERES", "libell_d_acheminement": "ROSIERES", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43165"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "933f5654c032acc63a739d595924d4004bbd3745", "fields": {"nom_de_la_commune": "ST BERAIN", "libell_d_acheminement": "ST BERAIN", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43171"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d3a564702366d3f59fb666d46395f03891c09a", "fields": {"nom_de_la_commune": "ST CHRISTOPHE D ALLIER", "libell_d_acheminement": "ST CHRISTOPHE D ALLIER", "code_postal": "43340", "coordonnees_gps": [44.842698307, 3.79076623546], "code_commune_insee": "43173"}, "geometry": {"type": "Point", "coordinates": [3.79076623546, 44.842698307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6e0fdcae6ff21a1ca5ab536a9c88afe3d0f607f", "fields": {"nom_de_la_commune": "STE FLORINE", "libell_d_acheminement": "STE FLORINE", "code_postal": "43250", "coordonnees_gps": [45.4003953203, 3.3095057239], "code_commune_insee": "43185"}, "geometry": {"type": "Point", "coordinates": [3.3095057239, 45.4003953203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d8de98ebc5ad9b5f6ffb7b21c409365db77fdc4", "fields": {"nom_de_la_commune": "ST JEAN D AUBRIGOUX", "libell_d_acheminement": "ST JEAN D AUBRIGOUX", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43196"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2e8426ce7d1252144cedd2131134184f8522418", "fields": {"nom_de_la_commune": "ST JEAN DE NAY", "libell_d_acheminement": "ST JEAN DE NAY", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43197"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bdf5b8823ef59ddb6563ef7964958523a953ca5", "fields": {"nom_de_la_commune": "ST JEAN LACHALM", "libell_d_acheminement": "ST JEAN LACHALM", "code_postal": "43510", "coordonnees_gps": [44.9244140229, 3.76769965575], "code_commune_insee": "43198"}, "geometry": {"type": "Point", "coordinates": [3.76769965575, 44.9244140229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3425b1096fe89f3b41aac6f27ef3d63fa251eaa", "fields": {"nom_de_la_commune": "ST JULIEN DES CHAZES", "libell_d_acheminement": "ST JULIEN DES CHAZES", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43202"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8591926bb5d9adccfc17296bfcca328915b002b9", "fields": {"nom_de_la_commune": "STE MARGUERITE", "libell_d_acheminement": "STE MARGUERITE", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43208"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e25126fe590d709438de36d48c234b60c3423953", "fields": {"nom_de_la_commune": "ST MARTIN DE FUGERES", "libell_d_acheminement": "ST MARTIN DE FUGERES", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43210"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35fb7e899c282a9a192abd8b51d7b03c1446dc75", "fields": {"nom_de_la_commune": "ST PAL DE CHALENCON", "libell_d_acheminement": "ST PAL DE CHALENCON", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43212"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799cf627fff94c98dd4fc44c4ba9115cc53520b7", "fields": {"nom_de_la_commune": "ST PIERRE DU CHAMP", "libell_d_acheminement": "ST PIERRE DU CHAMP", "code_postal": "43810", "coordonnees_gps": [45.2402907147, 3.91556730056], "code_commune_insee": "43217"}, "geometry": {"type": "Point", "coordinates": [3.91556730056, 45.2402907147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d283b90c9dfb9dd29df4af478d42844e02942aae", "fields": {"nom_de_la_commune": "VAZEILLES LIMANDRE", "libell_d_acheminement": "VAZEILLES LIMANDRE", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43254"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba8b5e28282eb56073fc53b8b059f4ababb51d41", "fields": {"nom_de_la_commune": "VENTEUGES", "libell_d_acheminement": "VENTEUGES", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43256"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c75893fb53f398e4bb441657b89aa9d9b91b65", "fields": {"nom_de_la_commune": "VERGEZAC", "libell_d_acheminement": "VERGEZAC", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43257"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2cf3d4ad3b81ffcc7ba8c5b782e64151acab64c", "fields": {"nom_de_la_commune": "VOREY", "libell_d_acheminement": "VOREY", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43267"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff3fcc2b2af936aa3b2d8ef8b79723a20233622", "fields": {"nom_de_la_commune": "YSSINGEAUX", "libell_d_acheminement": "YSSINGEAUX", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43268"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a7ba87915a32f34fbce073bf966b85b630f1a5", "fields": {"nom_de_la_commune": "AIGREFEUILLE SUR MAINE", "libell_d_acheminement": "AIGREFEUILLE SUR MAINE", "code_postal": "44140", "coordonnees_gps": [47.0608389163, -1.45654054931], "code_commune_insee": "44002"}, "geometry": {"type": "Point", "coordinates": [-1.45654054931, 47.0608389163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "585a8597d9cec92259f3745e0d3106aefe87860d", "fields": {"nom_de_la_commune": "BOUAYE", "libell_d_acheminement": "BOUAYE", "code_postal": "44830", "coordonnees_gps": [47.1596986296, -1.70104385056], "code_commune_insee": "44018"}, "geometry": {"type": "Point", "coordinates": [-1.70104385056, 47.1596986296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b661a9bee5caedc8c65dbef670dbe52529ec06f", "fields": {"nom_de_la_commune": "LA CHAPELLE GLAIN", "libell_d_acheminement": "LA CHAPELLE GLAIN", "code_postal": "44670", "coordonnees_gps": [47.6418522644, -1.22470955782], "code_commune_insee": "44031"}, "geometry": {"type": "Point", "coordinates": [-1.22470955782, 47.6418522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8611b1525b11f79f83db004d5cb63addca509d1e", "fields": {"nom_de_la_commune": "LA CHAPELLE HEULIN", "libell_d_acheminement": "LA CHAPELLE HEULIN", "code_postal": "44330", "coordonnees_gps": [47.1650939887, -1.27114440843], "code_commune_insee": "44032"}, "geometry": {"type": "Point", "coordinates": [-1.27114440843, 47.1650939887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e1cf8452e9a86afb400a6b7bb350f6714be86f", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR ERDRE", "libell_d_acheminement": "LA CHAPELLE SUR ERDRE", "code_postal": "44240", "coordonnees_gps": [47.3309393698, -1.53749152159], "code_commune_insee": "44035"}, "geometry": {"type": "Point", "coordinates": [-1.53749152159, 47.3309393698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91853de743365e78ba68a98541127c08c421316c", "fields": {"nom_de_la_commune": "CHEIX EN RETZ", "libell_d_acheminement": "CHEIX EN RETZ", "code_postal": "44640", "coordonnees_gps": [47.1953946232, -1.83239436965], "code_commune_insee": "44039"}, "geometry": {"type": "Point", "coordinates": [-1.83239436965, 47.1953946232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0ac50a62a044d36eb16005e0e0311c34921cfb", "fields": {"nom_de_la_commune": "CORSEPT", "libell_d_acheminement": "CORSEPT", "code_postal": "44560", "coordonnees_gps": [47.2711622125, -2.08332725108], "code_commune_insee": "44046"}, "geometry": {"type": "Point", "coordinates": [-2.08332725108, 47.2711622125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a23fa554499c1d57e6ed19a0a5826fbdd34e33c0", "fields": {"nom_de_la_commune": "COUERON", "libell_d_acheminement": "COUERON", "code_postal": "44220", "coordonnees_gps": [47.230492836, -1.73028941593], "code_commune_insee": "44047"}, "geometry": {"type": "Point", "coordinates": [-1.73028941593, 47.230492836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ebf81362a8d44b11d015d7fb8e66fe0fd11fe0d", "fields": {"nom_de_la_commune": "FAY DE BRETAGNE", "libell_d_acheminement": "FAY DE BRETAGNE", "code_postal": "44130", "coordonnees_gps": [47.4415843575, -1.78877692421], "code_commune_insee": "44056"}, "geometry": {"type": "Point", "coordinates": [-1.78877692421, 47.4415843575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebaa0c776541e1afde52e84168677cf5d41acf6e", "fields": {"nom_de_la_commune": "GRANDCHAMPS DES FONTAINES", "libell_d_acheminement": "GRANDCHAMPS DES FONTAINES", "code_postal": "44119", "coordonnees_gps": [47.3409762189, -1.62124994195], "code_commune_insee": "44066"}, "geometry": {"type": "Point", "coordinates": [-1.62124994195, 47.3409762189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51e511a43e4cf84abcff80ab5702182a2f1782d1", "fields": {"code_postal": "44290", "code_commune_insee": "44067", "libell_d_acheminement": "GUEMENE PENFAO", "ligne_5": "GUENOUVRY", "nom_de_la_commune": "GUEMENE PENFAO", "coordonnees_gps": [47.6456298963, -1.81807007019]}, "geometry": {"type": "Point", "coordinates": [-1.81807007019, 47.6456298963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2178aa7fbfa4b4e3274745a56e7018b305bba35c", "fields": {"code_postal": "44530", "code_commune_insee": "44068", "libell_d_acheminement": "GUENROUET", "ligne_5": "NOTRE DAME DE GRACE", "nom_de_la_commune": "GUENROUET", "coordonnees_gps": [47.5092008769, -2.00892310392]}, "geometry": {"type": "Point", "coordinates": [-2.00892310392, 47.5092008769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e468179a02049d80d623addcce578aa8ad3006", "fields": {"code_postal": "44350", "code_commune_insee": "44069", "libell_d_acheminement": "GUERANDE", "ligne_5": "CLIS", "nom_de_la_commune": "GUERANDE", "coordonnees_gps": [47.3439577414, -2.41627951573]}, "geometry": {"type": "Point", "coordinates": [-2.41627951573, 47.3439577414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7f6f48dc4fbc6f33efbb4c4bdd9f9a269288da2", "fields": {"nom_de_la_commune": "HAUTE GOULAINE", "libell_d_acheminement": "HAUTE GOULAINE", "code_postal": "44115", "coordonnees_gps": [47.2024487913, -1.43097454176], "code_commune_insee": "44071"}, "geometry": {"type": "Point", "coordinates": [-1.43097454176, 47.2024487913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957ac89df628c83c3c495c0c7c9003f957ef308b", "fields": {"nom_de_la_commune": "JANS", "libell_d_acheminement": "JANS", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44076"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cf77e9aeb6b0a3d893196d844276b94a573bf6a", "fields": {"nom_de_la_commune": "PRE ST EVROULT", "libell_d_acheminement": "PRE ST EVROULT", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28305"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4ed4e2d4ad0279097b369abf2f3e444d2d37c7c", "fields": {"nom_de_la_commune": "PRE ST MARTIN", "libell_d_acheminement": "PRE ST MARTIN", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28306"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e52f12120ace0d53e053870874e0f77af74b8a", "fields": {"nom_de_la_commune": "LE PUISET", "libell_d_acheminement": "LE PUISET", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28311"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c18df3bb097ee3998e6b7d9a1a708e8fe6d90b4", "fields": {"nom_de_la_commune": "LES RESSUINTES", "libell_d_acheminement": "LES RESSUINTES", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28314"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98daf3af41c3fbe278aedd4018e0ce59ee930e1e", "fields": {"nom_de_la_commune": "ROHAIRE", "libell_d_acheminement": "ROHAIRE", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28316"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1adc87f08bff5fb53b22e855c7f52557e280b84c", "fields": {"nom_de_la_commune": "ROINVILLE", "libell_d_acheminement": "ROINVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28317"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04e11a40522a9052f9d970d237f8ad5ef36f7747", "fields": {"nom_de_la_commune": "ROMILLY SUR AIGRE", "libell_d_acheminement": "ROMILLY SUR AIGRE", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28318"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51a5ed10db66f9793aa37d85b6b4ff5599233e4", "fields": {"nom_de_la_commune": "ROUVRES", "libell_d_acheminement": "ROUVRES", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28321"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67f3b0afbb0cc63b65b7f7a640a3f4191c5ea3e8", "fields": {"nom_de_la_commune": "RUEIL LA GADELIERE", "libell_d_acheminement": "RUEIL LA GADELIERE", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28322"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9752f39520875906aa09f2482e244f10a4064030", "fields": {"nom_de_la_commune": "ST AUBIN DES BOIS", "libell_d_acheminement": "ST AUBIN DES BOIS", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28325"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2362ff286ccd2ae009647c4056dc633d9e702269", "fields": {"nom_de_la_commune": "ST DENIS DES PUITS", "libell_d_acheminement": "ST DENIS DES PUITS", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28333"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "770326359ac4a16ad1d5220d916fc54667222aef", "fields": {"nom_de_la_commune": "ST GEORGES SUR EURE", "libell_d_acheminement": "ST GEORGES SUR EURE", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28337"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48f9c98518acc5f2a080e4b5535bb5955b03998", "fields": {"nom_de_la_commune": "ST LUBIN DE CRAVANT", "libell_d_acheminement": "ST LUBIN DE CRAVANT", "code_postal": "28270", "coordonnees_gps": [48.6934411697, 1.0846058718], "code_commune_insee": "28346"}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "788a14881d44fd879326ba006120e0abf7880716", "fields": {"nom_de_la_commune": "ST LUBIN DE LA HAYE", "libell_d_acheminement": "ST LUBIN DE LA HAYE", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28347"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e125e4c2f015d1657369fa5ff8e3d18013c95f", "fields": {"nom_de_la_commune": "ST MAIXME HAUTERIVE", "libell_d_acheminement": "ST MAIXME HAUTERIVE", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28351"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a76b3e7b5c3e488acea2798d075bd265832aec", "fields": {"nom_de_la_commune": "SANTILLY", "libell_d_acheminement": "SANTILLY", "code_postal": "28310", "coordonnees_gps": [48.2536557069, 1.88422826059], "code_commune_insee": "28367"}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f4cbf24d3252b03c16b999ee73163f137a29f7a", "fields": {"nom_de_la_commune": "SAULNIERES", "libell_d_acheminement": "SAULNIERES", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28369"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6630d2242da6134255d1f2301cf8a97664de887", "fields": {"nom_de_la_commune": "SENANTES", "libell_d_acheminement": "SENANTES", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28372"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a692f9a2eb1b2be00b1b3a909c76b3410455a81", "fields": {"nom_de_la_commune": "SOURS", "libell_d_acheminement": "SOURS", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28380"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb310cac558942c92493b23a956b60c6f6ab47be", "fields": {"nom_de_la_commune": "TERMINIERS", "libell_d_acheminement": "TERMINIERS", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28382"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b353afbf28c6d1f838147149a341666ad0372eca", "fields": {"code_postal": "28150", "code_commune_insee": "28383", "libell_d_acheminement": "THEUVILLE", "ligne_5": "PEZY", "nom_de_la_commune": "THEUVILLE", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc938ba78c8d79b86dc7f2517b3ea4b64fefce55", "fields": {"code_postal": "28170", "code_commune_insee": "28393", "libell_d_acheminement": "TREMBLAY LES VILLAGES", "ligne_5": "CHENE CHENU", "nom_de_la_commune": "TREMBLAY LES VILLAGES", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac48b6eb5515d159dfed103214ac9951a8b6166", "fields": {"nom_de_la_commune": "UNVERRE", "libell_d_acheminement": "UNVERRE", "code_postal": "28160", "coordonnees_gps": [48.2085234969, 1.15330490142], "code_commune_insee": "28398"}, "geometry": {"type": "Point", "coordinates": [1.15330490142, 48.2085234969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4825220c943ae7a270794d9cb2c023e9e5772db9", "fields": {"nom_de_la_commune": "VICHERES", "libell_d_acheminement": "VICHERES", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28407"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6c6760bd7ced0b860452a6b5a49a267df85371b", "fields": {"nom_de_la_commune": "VILLARS", "libell_d_acheminement": "VILLARS", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28411"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71cae0996cbf62269140fa5e1a717a60e3af07f0", "fields": {"nom_de_la_commune": "VILLEMEUX SUR EURE", "libell_d_acheminement": "VILLEMEUX SUR EURE", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28415"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0826bc20caee7584209ac2797b5d3c9d4efacd1a", "fields": {"nom_de_la_commune": "ARZANO", "libell_d_acheminement": "ARZANO", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29002"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34eb70a1e6dd5d21dacf99f4a76948cc2c5891cd", "fields": {"nom_de_la_commune": "BANNALEC", "libell_d_acheminement": "BANNALEC", "code_postal": "29380", "coordonnees_gps": [47.931095922, -3.67533522316], "code_commune_insee": "29004"}, "geometry": {"type": "Point", "coordinates": [-3.67533522316, 47.931095922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d06f984284c2eaaf54da3c260800810190df18d", "fields": {"nom_de_la_commune": "BOHARS", "libell_d_acheminement": "BOHARS", "code_postal": "29820", "coordonnees_gps": [48.4223401129, -4.55120430112], "code_commune_insee": "29011"}, "geometry": {"type": "Point", "coordinates": [-4.55120430112, 48.4223401129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b06f34eb29d024d1cb1cd3bcea4134bc83d157", "fields": {"nom_de_la_commune": "BRASPARTS", "libell_d_acheminement": "BRASPARTS", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29016"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efa45db0e1756496c1d23774b1e444cefc406e1b", "fields": {"nom_de_la_commune": "CARHAIX PLOUGUER", "libell_d_acheminement": "CARHAIX PLOUGUER", "code_postal": "29270", "coordonnees_gps": [48.2542377474, -3.60710668308], "code_commune_insee": "29024"}, "geometry": {"type": "Point", "coordinates": [-3.60710668308, 48.2542377474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fdb68f074d9ad92820a654d96868977e539ec25", "fields": {"nom_de_la_commune": "CHATEAULIN", "libell_d_acheminement": "CHATEAULIN", "code_postal": "29150", "coordonnees_gps": [48.1891302996, -4.12434734749], "code_commune_insee": "29026"}, "geometry": {"type": "Point", "coordinates": [-4.12434734749, 48.1891302996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "211016c6ca21cbbfed673bdcabd55f85c1abd773", "fields": {"nom_de_la_commune": "CLEDEN CAP SIZUN", "libell_d_acheminement": "CLEDEN CAP SIZUN", "code_postal": "29770", "coordonnees_gps": [48.0454956217, -4.63185223568], "code_commune_insee": "29028"}, "geometry": {"type": "Point", "coordinates": [-4.63185223568, 48.0454956217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9508b633f4c3efbfdd0b7b927c41ac29ae1a808c", "fields": {"nom_de_la_commune": "CLEDEN POHER", "libell_d_acheminement": "CLEDEN POHER", "code_postal": "29270", "coordonnees_gps": [48.2542377474, -3.60710668308], "code_commune_insee": "29029"}, "geometry": {"type": "Point", "coordinates": [-3.60710668308, 48.2542377474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32c3c237335d4c1c61196b405e89c6d422613712", "fields": {"nom_de_la_commune": "CLEDER", "libell_d_acheminement": "CLEDER", "code_postal": "29233", "coordonnees_gps": [48.6604596156, -4.12456271442], "code_commune_insee": "29030"}, "geometry": {"type": "Point", "coordinates": [-4.12456271442, 48.6604596156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1fac03c63dd2f19fc9df7d0f77b2f4ea35b7051", "fields": {"nom_de_la_commune": "LE CLOITRE ST THEGONNEC", "libell_d_acheminement": "LE CLOITRE ST THEGONNEC", "code_postal": "29410", "coordonnees_gps": [48.4944200655, -3.89854217], "code_commune_insee": "29034"}, "geometry": {"type": "Point", "coordinates": [-3.89854217, 48.4944200655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7eb39e77c94a27da1917d8013a74194b635ea42", "fields": {"nom_de_la_commune": "CONCARNEAU", "libell_d_acheminement": "CONCARNEAU", "code_postal": "29900", "coordonnees_gps": [47.8961173122, -3.9073816698], "code_commune_insee": "29039"}, "geometry": {"type": "Point", "coordinates": [-3.9073816698, 47.8961173122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a16614eea11d8135f6ca7521b793045c0503c7d5", "fields": {"nom_de_la_commune": "DINEAULT", "libell_d_acheminement": "DINEAULT", "code_postal": "29150", "coordonnees_gps": [48.1891302996, -4.12434734749], "code_commune_insee": "29044"}, "geometry": {"type": "Point", "coordinates": [-4.12434734749, 48.1891302996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621a88c70693e59cfc78e73fc677009e90108610", "fields": {"nom_de_la_commune": "EDERN", "libell_d_acheminement": "EDERN", "code_postal": "29510", "coordonnees_gps": [48.0935216519, -3.99705249419], "code_commune_insee": "29048"}, "geometry": {"type": "Point", "coordinates": [-3.99705249419, 48.0935216519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde266f3b114ded9eecc4c1c9501d79d5a10af19", "fields": {"code_postal": "29170", "code_commune_insee": "29058", "libell_d_acheminement": "FOUESNANT", "ligne_5": "BEGMEIL", "nom_de_la_commune": "FOUESNANT", "coordonnees_gps": [47.912618887, -4.02039306441]}, "geometry": {"type": "Point", "coordinates": [-4.02039306441, 47.912618887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c040ae1461b4d346c303dae93d5f4f15c2c089fd", "fields": {"nom_de_la_commune": "GOUESNACH", "libell_d_acheminement": "GOUESNACH", "code_postal": "29950", "coordonnees_gps": [47.9011430985, -4.09292071146], "code_commune_insee": "29060"}, "geometry": {"type": "Point", "coordinates": [-4.09292071146, 47.9011430985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "366bd7df86172d346c7fb45ff55cb600deffe681", "fields": {"nom_de_la_commune": "GUERLESQUIN", "libell_d_acheminement": "GUERLESQUIN", "code_postal": "29650", "coordonnees_gps": [48.5310739903, -3.6118782406], "code_commune_insee": "29067"}, "geometry": {"type": "Point", "coordinates": [-3.6118782406, 48.5310739903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df087f9cd80f69b6909972da705adcf8fb31226e", "fields": {"nom_de_la_commune": "GUILER SUR GOYEN", "libell_d_acheminement": "GUILER SUR GOYEN", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29070"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3beafd86606cc3c2774feab3fee241dbf4592bb9", "fields": {"nom_de_la_commune": "GUIPRONVEL", "libell_d_acheminement": "GUIPRONVEL", "code_postal": "29290", "coordonnees_gps": [48.4609307964, -4.5931901744], "code_commune_insee": "29076"}, "geometry": {"type": "Point", "coordinates": [-4.5931901744, 48.4609307964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b6bf9bb481e5ab53ddef6b76201efb11cb9d738", "fields": {"nom_de_la_commune": "GUISSENY", "libell_d_acheminement": "GUISSENY", "code_postal": "29880", "coordonnees_gps": [48.6082093608, -4.46096917427], "code_commune_insee": "29077"}, "geometry": {"type": "Point", "coordinates": [-4.46096917427, 48.6082093608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71e35e1b62634e3641fbb28a3c542dd3e30201af", "fields": {"nom_de_la_commune": "IRVILLAC", "libell_d_acheminement": "IRVILLAC", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29086"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daca0a705c782659e38c46a0df7982ab852c9517", "fields": {"nom_de_la_commune": "LE JUCH", "libell_d_acheminement": "LE JUCH", "code_postal": "29100", "coordonnees_gps": [48.0680166457, -4.3318760918], "code_commune_insee": "29087"}, "geometry": {"type": "Point", "coordinates": [-4.3318760918, 48.0680166457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d0ac4487f40bd4ddcb18d2e6e8100d2af5d545", "fields": {"nom_de_la_commune": "KERGLOFF", "libell_d_acheminement": "KERGLOFF", "code_postal": "29270", "coordonnees_gps": [48.2542377474, -3.60710668308], "code_commune_insee": "29089"}, "geometry": {"type": "Point", "coordinates": [-3.60710668308, 48.2542377474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8f74d541a85e237e4fd0aa0b785fcd941804e12", "fields": {"nom_de_la_commune": "KERSAINT PLABENNEC", "libell_d_acheminement": "KERSAINT PLABENNEC", "code_postal": "29860", "coordonnees_gps": [48.5072852164, -4.44045299523], "code_commune_insee": "29095"}, "geometry": {"type": "Point", "coordinates": [-4.44045299523, 48.5072852164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e289af8464500f0fd9d55fba9194a6ff821c766", "fields": {"nom_de_la_commune": "LAMPAUL PLOUARZEL", "libell_d_acheminement": "LAMPAUL PLOUARZEL", "code_postal": "29810", "coordonnees_gps": [48.4283895014, -4.71567534635], "code_commune_insee": "29098"}, "geometry": {"type": "Point", "coordinates": [-4.71567534635, 48.4283895014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592326d09a2f316f677d0cbbfcf89a0cb7c34f56", "fields": {"code_postal": "29870", "code_commune_insee": "29101", "libell_d_acheminement": "LANDEDA", "ligne_5": "ABERWRACH", "nom_de_la_commune": "LANDEDA", "coordonnees_gps": [48.5578339908, -4.54140590584]}, "geometry": {"type": "Point", "coordinates": [-4.54140590584, 48.5578339908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff7e55f4f1a4c3f176a0dfbaa9b1bcbc89d0b6e", "fields": {"nom_de_la_commune": "LANDREVARZEC", "libell_d_acheminement": "LANDREVARZEC", "code_postal": "29510", "coordonnees_gps": [48.0935216519, -3.99705249419], "code_commune_insee": "29106"}, "geometry": {"type": "Point", "coordinates": [-3.99705249419, 48.0935216519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48922f31a4911fa941978545e087224003511a02", "fields": {"nom_de_la_commune": "LANDUNVEZ", "libell_d_acheminement": "LANDUNVEZ", "code_postal": "29840", "coordonnees_gps": [48.5120330691, -4.73920454797], "code_commune_insee": "29109"}, "geometry": {"type": "Point", "coordinates": [-4.73920454797, 48.5120330691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e28d8314dc2b5398f43e2b76f2a9c91b149329e3", "fields": {"nom_de_la_commune": "LANNEANOU", "libell_d_acheminement": "LANNEANOU", "code_postal": "29640", "coordonnees_gps": [48.4664762138, -3.68447061124], "code_commune_insee": "29114"}, "geometry": {"type": "Point", "coordinates": [-3.68447061124, 48.4664762138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d85c556d2fc0c07612f55a8bf601d8e1b49314b", "fields": {"nom_de_la_commune": "LANRIVOARE", "libell_d_acheminement": "LANRIVOARE", "code_postal": "29290", "coordonnees_gps": [48.4609307964, -4.5931901744], "code_commune_insee": "29119"}, "geometry": {"type": "Point", "coordinates": [-4.5931901744, 48.4609307964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65ce7d7322a4baff560c1f8bd539ac6ddfe807e8", "fields": {"nom_de_la_commune": "LEUHAN", "libell_d_acheminement": "LEUHAN", "code_postal": "29390", "coordonnees_gps": [48.0434565453, -3.74078838463], "code_commune_insee": "29125"}, "geometry": {"type": "Point", "coordinates": [-3.74078838463, 48.0434565453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0024efad5f46ed93b7245c7ac7779d0861316a4", "fields": {"nom_de_la_commune": "LOCMELAR", "libell_d_acheminement": "LOCMELAR", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29131"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9669b6cb662966c6ad654ce5abb711441a38949d", "fields": {"nom_de_la_commune": "LOCTUDY", "libell_d_acheminement": "LOCTUDY", "code_postal": "29750", "coordonnees_gps": [47.8249550518, -4.18787458821], "code_commune_insee": "29135"}, "geometry": {"type": "Point", "coordinates": [-4.18787458821, 47.8249550518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8427cc8c4b40625d8a9345012213ff55c1e5320", "fields": {"nom_de_la_commune": "LOQUEFFRET", "libell_d_acheminement": "LOQUEFFRET", "code_postal": "29530", "coordonnees_gps": [48.2737361692, -3.80437790081], "code_commune_insee": "29141"}, "geometry": {"type": "Point", "coordinates": [-3.80437790081, 48.2737361692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae2371cf4cc705a96dd3917fbd955759b910ce3", "fields": {"nom_de_la_commune": "MAHALON", "libell_d_acheminement": "MAHALON", "code_postal": "29790", "coordonnees_gps": [48.0541879472, -4.46870916199], "code_commune_insee": "29143"}, "geometry": {"type": "Point", "coordinates": [-4.46870916199, 48.0541879472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9e7101ac332437dbc54db5ec7a3fb6577326e28", "fields": {"nom_de_la_commune": "MOELAN SUR MER", "libell_d_acheminement": "MOELAN SUR MER", "code_postal": "29350", "coordonnees_gps": [47.8062886655, -3.645915458], "code_commune_insee": "29150"}, "geometry": {"type": "Point", "coordinates": [-3.645915458, 47.8062886655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ae32e0425784355f4efab09465469c7d59f09c", "fields": {"code_postal": "29350", "code_commune_insee": "29150", "libell_d_acheminement": "MOELAN SUR MER", "ligne_5": "KERFANY LES PINS", "nom_de_la_commune": "MOELAN SUR MER", "coordonnees_gps": [47.8062886655, -3.645915458]}, "geometry": {"type": "Point", "coordinates": [-3.645915458, 47.8062886655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2ff1489cb6fa16949afa626c8b55d7e160990ca", "fields": {"nom_de_la_commune": "PEUMERIT", "libell_d_acheminement": "PEUMERIT", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29159"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a924d8312bc32a66c0747c605f9610c06a219f7c", "fields": {"nom_de_la_commune": "PLOBANNALEC LESCONIL", "libell_d_acheminement": "PLOBANNALEC LESCONIL", "code_postal": "29740", "coordonnees_gps": [47.8211386982, -4.22818525264], "code_commune_insee": "29165"}, "geometry": {"type": "Point", "coordinates": [-4.22818525264, 47.8211386982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81bff0cf47c303fe0cf186020bfa0dfb895082d7", "fields": {"nom_de_la_commune": "PLOUDANIEL", "libell_d_acheminement": "PLOUDANIEL", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29179"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf3ecada70fd8936c4148b2912f6a08b86c05b3", "fields": {"nom_de_la_commune": "PLOUEGAT GUERAND", "libell_d_acheminement": "PLOUEGAT GUERAND", "code_postal": "29620", "coordonnees_gps": [48.6479299732, -3.70272210639], "code_commune_insee": "29182"}, "geometry": {"type": "Point", "coordinates": [-3.70272210639, 48.6479299732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdcad2dd9b1a9de436ab8ea05986a91679f4b5e3", "fields": {"nom_de_la_commune": "PLOUESCAT", "libell_d_acheminement": "PLOUESCAT", "code_postal": "29430", "coordonnees_gps": [48.6194750242, -4.20707342526], "code_commune_insee": "29185"}, "geometry": {"type": "Point", "coordinates": [-4.20707342526, 48.6194750242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9eaddccd0671fbe561eb6bae5fd007325c02c7b", "fields": {"nom_de_la_commune": "PLOUGONVELIN", "libell_d_acheminement": "PLOUGONVELIN", "code_postal": "29217", "coordonnees_gps": [48.3548137568, -4.73034046541], "code_commune_insee": "29190"}, "geometry": {"type": "Point", "coordinates": [-4.73034046541, 48.3548137568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51cde3c8d3c2e52ec8670d5a958967772dd17f10", "fields": {"nom_de_la_commune": "PLOUHINEC", "libell_d_acheminement": "PLOUHINEC", "code_postal": "29780", "coordonnees_gps": [48.013893245, -4.48458481137], "code_commune_insee": "29197"}, "geometry": {"type": "Point", "coordinates": [-4.48458481137, 48.013893245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c78ff4831559cfcd056387d7c312353067b09b1d", "fields": {"nom_de_la_commune": "PLOURIN", "libell_d_acheminement": "PLOURIN", "code_postal": "29830", "coordonnees_gps": [48.5288495464, -4.64332809681], "code_commune_insee": "29208"}, "geometry": {"type": "Point", "coordinates": [-4.64332809681, 48.5288495464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e5d49366a429e735a40b5692934422ca53a7ce", "fields": {"nom_de_la_commune": "PLOUVORN", "libell_d_acheminement": "PLOUVORN", "code_postal": "29420", "coordonnees_gps": [48.5999876589, -4.00739831758], "code_commune_insee": "29210"}, "geometry": {"type": "Point", "coordinates": [-4.00739831758, 48.5999876589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce91dbe148c74d32dc0e5bf94966a2c356196514", "fields": {"nom_de_la_commune": "PORSPODER", "libell_d_acheminement": "PORSPODER", "code_postal": "29840", "coordonnees_gps": [48.5120330691, -4.73920454797], "code_commune_insee": "29221"}, "geometry": {"type": "Point", "coordinates": [-4.73920454797, 48.5120330691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5be652cb313ce9da223f59bb27ae2c9ff35c263", "fields": {"nom_de_la_commune": "QUIMPERLE", "libell_d_acheminement": "QUIMPERLE", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29233"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e302ccad9db1260edb4947ca05484ca0d9152f1", "fields": {"nom_de_la_commune": "REDENE", "libell_d_acheminement": "REDENE", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29234"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1058ea9b691d328aae8306f3d7a9dd3cfe1f464e", "fields": {"nom_de_la_commune": "ROSCANVEL", "libell_d_acheminement": "ROSCANVEL", "code_postal": "29570", "coordonnees_gps": [48.2895784826, -4.57542430265], "code_commune_insee": "29238"}, "geometry": {"type": "Point", "coordinates": [-4.57542430265, 48.2895784826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5208d57ec358ebb70c5856283e4997f60ef04959", "fields": {"nom_de_la_commune": "ST MARTIN DES CHAMPS", "libell_d_acheminement": "ST MARTIN DES CHAMPS", "code_postal": "29600", "coordonnees_gps": [48.5560606462, -3.82444218679], "code_commune_insee": "29254"}, "geometry": {"type": "Point", "coordinates": [-3.82444218679, 48.5560606462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79de8f9dc38adddf5bd45fe1abc38a529fb0c672", "fields": {"nom_de_la_commune": "ST PABU", "libell_d_acheminement": "ST PABU", "code_postal": "29830", "coordonnees_gps": [48.5288495464, -4.64332809681], "code_commune_insee": "29257"}, "geometry": {"type": "Point", "coordinates": [-4.64332809681, 48.5288495464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e636df6e7f1c9f0bbb993884a69432b03262364e", "fields": {"nom_de_la_commune": "ST RENAN", "libell_d_acheminement": "ST RENAN", "code_postal": "29290", "coordonnees_gps": [48.4609307964, -4.5931901744], "code_commune_insee": "29260"}, "geometry": {"type": "Point", "coordinates": [-4.5931901744, 48.4609307964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0804a4a2f93a4264eedfbb4aebfc7fe939afbf15", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29262"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bd22594c1ad02a24d9a0340a646bdb2894bcb27", "fields": {"nom_de_la_commune": "ST SEGAL", "libell_d_acheminement": "ST SEGAL", "code_postal": "29590", "coordonnees_gps": [48.2799947077, -4.10763494114], "code_commune_insee": "29263"}, "geometry": {"type": "Point", "coordinates": [-4.10763494114, 48.2799947077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ede98c86146951fb784bceafe587e8a1795ea1", "fields": {"nom_de_la_commune": "ST SERVAIS", "libell_d_acheminement": "ST SERVAIS", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29264"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e062bdda4ca3ced5116aa24e399566470fe867", "fields": {"nom_de_la_commune": "ST THOIS", "libell_d_acheminement": "ST THOIS", "code_postal": "29520", "coordonnees_gps": [48.1597745239, -3.82338194426], "code_commune_insee": "29267"}, "geometry": {"type": "Point", "coordinates": [-3.82338194426, 48.1597745239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ed5582634fc89bd5ff5ca241fa6521e816b288", "fields": {"nom_de_la_commune": "SANTEC", "libell_d_acheminement": "SANTEC", "code_postal": "29250", "coordonnees_gps": [48.669516256, -4.02599526836], "code_commune_insee": "29273"}, "geometry": {"type": "Point", "coordinates": [-4.02599526836, 48.669516256]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033003bc053b64b234aa388c9f6e6698b9e8f382", "fields": {"nom_de_la_commune": "SIBIRIL", "libell_d_acheminement": "SIBIRIL", "code_postal": "29250", "coordonnees_gps": [48.669516256, -4.02599526836], "code_commune_insee": "29276"}, "geometry": {"type": "Point", "coordinates": [-4.02599526836, 48.669516256]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "111b63b4a59b0525342caa111f000355fd2073be", "fields": {"nom_de_la_commune": "SPEZET", "libell_d_acheminement": "SPEZET", "code_postal": "29540", "coordonnees_gps": [48.1860332797, -3.69150876519], "code_commune_insee": "29278"}, "geometry": {"type": "Point", "coordinates": [-3.69150876519, 48.1860332797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18bcfabe718eefd6aead2de83861c42059c68e6c", "fields": {"nom_de_la_commune": "TAULE", "libell_d_acheminement": "TAULE", "code_postal": "29670", "coordonnees_gps": [48.6115229936, -3.90607440481], "code_commune_insee": "29279"}, "geometry": {"type": "Point", "coordinates": [-3.90607440481, 48.6115229936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe41800b74ce8be004b01323ec3d8201c75ee78b", "fields": {"nom_de_la_commune": "TREBABU", "libell_d_acheminement": "TREBABU", "code_postal": "29217", "coordonnees_gps": [48.3548137568, -4.73034046541], "code_commune_insee": "29282"}, "geometry": {"type": "Point", "coordinates": [-4.73034046541, 48.3548137568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f542c67e1220cc78ef055ce60be6c7fcf048d767", "fields": {"nom_de_la_commune": "TREGARVAN", "libell_d_acheminement": "TREGARVAN", "code_postal": "29560", "coordonnees_gps": [48.2479935749, -4.31271696117], "code_commune_insee": "29289"}, "geometry": {"type": "Point", "coordinates": [-4.31271696117, 48.2479935749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aed91bbf145c11f4e20f194806e72039d2962064", "fields": {"code_postal": "29590", "code_commune_insee": "29302", "libell_d_acheminement": "PONT DE BUIS LES QUIMERCH", "ligne_5": "QUIMERCH", "nom_de_la_commune": "PONT DE BUIS LES QUIMERCH", "coordonnees_gps": [48.2799947077, -4.10763494114]}, "geometry": {"type": "Point", "coordinates": [-4.10763494114, 48.2799947077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a8bff81c2d93ce8aa159c078bade208d2a9aab1", "fields": {"nom_de_la_commune": "AIGREMONT", "libell_d_acheminement": "AIGREMONT", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30002"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "445e3aae5e8c7af4724bb38b6036a02304ff6784", "fields": {"nom_de_la_commune": "AIGUES MORTES", "libell_d_acheminement": "AIGUES MORTES", "code_postal": "30220", "coordonnees_gps": [43.5627760713, 4.22023448009], "code_commune_insee": "30003"}, "geometry": {"type": "Point", "coordinates": [4.22023448009, 43.5627760713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9313043cf013d6c593bf58a3ccae30a6ba0b7bb7", "fields": {"nom_de_la_commune": "AIMARGUES", "libell_d_acheminement": "AIMARGUES", "code_postal": "30470", "coordonnees_gps": [43.6720844575, 4.20379508436], "code_commune_insee": "30006"}, "geometry": {"type": "Point", "coordinates": [4.20379508436, 43.6720844575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d19a55625df2e5e10689e0373117591fd2d2a4a", "fields": {"nom_de_la_commune": "ARAMON", "libell_d_acheminement": "ARAMON", "code_postal": "30390", "coordonnees_gps": [43.9188039715, 4.66026536244], "code_commune_insee": "30012"}, "geometry": {"type": "Point", "coordinates": [4.66026536244, 43.9188039715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcfa5695c55c1111b3c0df4bc8a079562ce2f358", "fields": {"nom_de_la_commune": "ARRE", "libell_d_acheminement": "ARRE", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30016"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c04e66770fc14f709be67c753b5b55644dff50e", "fields": {"nom_de_la_commune": "AUBUSSARGUES", "libell_d_acheminement": "AUBUSSARGUES", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30021"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2a2839b64e995dca08325ce37f373ed075b57b7", "fields": {"nom_de_la_commune": "AULAS", "libell_d_acheminement": "AULAS", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30024"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee0d35324563e0215a878b53969082b8bc210c7", "fields": {"nom_de_la_commune": "BEZOUCE", "libell_d_acheminement": "BEZOUCE", "code_postal": "30320", "coordonnees_gps": [43.8770383531, 4.45722283055], "code_commune_insee": "30039"}, "geometry": {"type": "Point", "coordinates": [4.45722283055, 43.8770383531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "773547598e00399091a0d98d340bcd6e29983f35", "fields": {"nom_de_la_commune": "BONNEVAUX", "libell_d_acheminement": "BONNEVAUX", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30044"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6011b7508184ef8687ecadb0436b47102bcbc00f", "fields": {"nom_de_la_commune": "BORDEZAC", "libell_d_acheminement": "BORDEZAC", "code_postal": "30160", "coordonnees_gps": [44.2982766732, 4.09724420546], "code_commune_insee": "30045"}, "geometry": {"type": "Point", "coordinates": [4.09724420546, 44.2982766732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe9196142f3e67de49162e5dfe256fd6ae7e22c", "fields": {"nom_de_la_commune": "BRIGNON", "libell_d_acheminement": "BRIGNON", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30053"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6782716020b4d0c21ff81ee22c09c13daf1caff", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18218"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fd7d8fbabce6b91c0b5557a19478a67f6239eaf", "fields": {"nom_de_la_commune": "ST LEGER LE PETIT", "libell_d_acheminement": "ST LEGER LE PETIT", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18220"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98bc81849be26f830d7dd05f0a3fccf884ac85f3", "fields": {"nom_de_la_commune": "ST MARTIN DES CHAMPS", "libell_d_acheminement": "ST MARTIN DES CHAMPS", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18224"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b77b6f46e0790e09ee9e8447c40b7941cd37ff9", "fields": {"nom_de_la_commune": "STE MONTAINE", "libell_d_acheminement": "STE MONTAINE", "code_postal": "18700", "coordonnees_gps": [47.4727480114, 2.39384218551], "code_commune_insee": "18227"}, "geometry": {"type": "Point", "coordinates": [2.39384218551, 47.4727480114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0e688468a7b8450f61035374bc243eb98549c56", "fields": {"nom_de_la_commune": "ST PIERRE LES BOIS", "libell_d_acheminement": "ST PIERRE LES BOIS", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18230"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d432c249a1aba8d7709dfe69cf3d82e8c0681b", "fields": {"nom_de_la_commune": "ST PIERRE LES ETIEUX", "libell_d_acheminement": "ST PIERRE LES ETIEUX", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18231"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f30b8f0961d96f205b8e9b099b6da5654291557d", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "18370", "coordonnees_gps": [46.5167318179, 2.22634680986], "code_commune_insee": "18234"}, "geometry": {"type": "Point", "coordinates": [2.22634680986, 46.5167318179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c1d647160fc8764f97803ed25f1b48a26aca984", "fields": {"nom_de_la_commune": "SENNECAY", "libell_d_acheminement": "SENNECAY", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18248"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dff7d26b9a301b7d1707c2cf365a1954ce95678", "fields": {"nom_de_la_commune": "SEVRY", "libell_d_acheminement": "SEVRY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18251"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d632db9f4d9f985a1d93e8f0c4380382630a4e0", "fields": {"nom_de_la_commune": "THOU", "libell_d_acheminement": "THOU", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18264"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6790daaa1c2173c8f868b4652e545cfaebcb804d", "fields": {"nom_de_la_commune": "UZAY LE VENON", "libell_d_acheminement": "UZAY LE VENON", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18268"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9195525c36715f324cd764fb18292b544a155c14", "fields": {"nom_de_la_commune": "VAILLY SUR SAULDRE", "libell_d_acheminement": "VAILLY SUR SAULDRE", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18269"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ade2a15281cbf5d8bbd92485141f661d2b6773d5", "fields": {"nom_de_la_commune": "VESDUN", "libell_d_acheminement": "VESDUN", "code_postal": "18360", "coordonnees_gps": [46.5847135273, 2.49730367441], "code_commune_insee": "18278"}, "geometry": {"type": "Point", "coordinates": [2.49730367441, 46.5847135273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ad210ca4feb22a62f4decb64c80566ede1109ae", "fields": {"nom_de_la_commune": "AFFIEUX", "libell_d_acheminement": "AFFIEUX", "code_postal": "19260", "coordonnees_gps": [45.5242684959, 1.78346555124], "code_commune_insee": "19001"}, "geometry": {"type": "Point", "coordinates": [1.78346555124, 45.5242684959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb5cd7ba584da85a0c682b9f05e8600cd2996cf", "fields": {"nom_de_la_commune": "AIX", "libell_d_acheminement": "AIX", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19002"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcef2af4e90e93ab937765cc5b09e3cb06ffc989", "fields": {"nom_de_la_commune": "ALBIGNAC", "libell_d_acheminement": "ALBIGNAC", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19003"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df3388adcdc8a08dc259f00a9f7cd89cbcd1f44", "fields": {"nom_de_la_commune": "ALLASSAC", "libell_d_acheminement": "ALLASSAC", "code_postal": "19240", "coordonnees_gps": [45.2278338531, 1.45884900159], "code_commune_insee": "19005"}, "geometry": {"type": "Point", "coordinates": [1.45884900159, 45.2278338531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8124eb33a905f92c1d7fca56001442afbdaf2c5b", "fields": {"nom_de_la_commune": "AUBAZINES", "libell_d_acheminement": "AUBAZINES", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19013"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceb4d644b11345f3e0555065073d08a9423cfb75", "fields": {"nom_de_la_commune": "BELLECHASSAGNE", "libell_d_acheminement": "BELLECHASSAGNE", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19021"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c60c20bb1429fe3501309254644e7e61a6876c", "fields": {"nom_de_la_commune": "BEYNAT", "libell_d_acheminement": "BEYNAT", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19023"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dca05f6ea87a997d80a81d5c127bd44b94cd9255", "fields": {"nom_de_la_commune": "BEYSSAC", "libell_d_acheminement": "BEYSSAC", "code_postal": "19230", "coordonnees_gps": [45.3932618354, 1.37629346937], "code_commune_insee": "19024"}, "geometry": {"type": "Point", "coordinates": [1.37629346937, 45.3932618354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdac5057d0f5e9c752cd0d5cd1d6d9d2a4f6c922", "fields": {"nom_de_la_commune": "BILHAC", "libell_d_acheminement": "BILHAC", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19026"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77a36e2477e84f7bae52d1f72d6f06da72010f4e", "fields": {"nom_de_la_commune": "BORT LES ORGUES", "libell_d_acheminement": "BORT LES ORGUES", "code_postal": "19110", "coordonnees_gps": [45.4385840854, 2.46492490353], "code_commune_insee": "19028"}, "geometry": {"type": "Point", "coordinates": [2.46492490353, 45.4385840854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7b38ea30ed5981ee47c0eb34ff7fa9974cdacb9", "fields": {"nom_de_la_commune": "BRIVE LA GAILLARDE", "libell_d_acheminement": "BRIVE LA GAILLARDE", "code_postal": "19100", "coordonnees_gps": [45.1432638879, 1.51886484736], "code_commune_insee": "19031"}, "geometry": {"type": "Point", "coordinates": [1.51886484736, 45.1432638879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1d52beb1c31ca03a1fe3bb4f56e1989a39d7a2", "fields": {"code_postal": "19430", "code_commune_insee": "19034", "libell_d_acheminement": "CAMPS ST MATHURIN LEOBAZEL", "ligne_5": "ST MATHURIN LEOBAZEL", "nom_de_la_commune": "CAMPS ST MATHURIN LEOBAZEL", "coordonnees_gps": [45.0199120867, 1.9968720483]}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "647a1d6f3f1dde4bba7933338185060ce18bb2be", "fields": {"nom_de_la_commune": "LE CHASTANG", "libell_d_acheminement": "LE CHASTANG", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19048"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15ecfcc3bcbda6ea1145afc9d2728869446e2d9", "fields": {"nom_de_la_commune": "CHASTEAUX", "libell_d_acheminement": "CHASTEAUX", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19049"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bad3554bae026509b0c36f54611cd30865c1138", "fields": {"nom_de_la_commune": "CHAVANAC", "libell_d_acheminement": "CHAVANAC", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19052"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5662307c8b34d8cd03a0fb42fb19e01a3ced7b11", "fields": {"nom_de_la_commune": "CORNIL", "libell_d_acheminement": "CORNIL", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19061"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fedd26d704d9515dcde45cdccfc71928605b25c1", "fields": {"nom_de_la_commune": "CUREMONTE", "libell_d_acheminement": "CUREMONTE", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19067"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05203cb2b2eafe1f351a54850ece00eebc0607e8", "fields": {"nom_de_la_commune": "DARAZAC", "libell_d_acheminement": "DARAZAC", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19069"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddcfbae8d88534fcd623289416726d6a775d112a", "fields": {"nom_de_la_commune": "LACELLE", "libell_d_acheminement": "LACELLE", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19095"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a853dd8d5e9dc100173a407b0e1d521adbaf199", "fields": {"nom_de_la_commune": "LAFAGE SUR SOMBRE", "libell_d_acheminement": "LAFAGE SUR SOMBRE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19097"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e2494117070d5c171edd1b6611de843021edc7", "fields": {"nom_de_la_commune": "LAGLEYGEOLLE", "libell_d_acheminement": "LAGLEYGEOLLE", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19099"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30a5fd9ce41e791249627f207bdf6e533cc8576f", "fields": {"nom_de_la_commune": "LAROCHE PRES FEYT", "libell_d_acheminement": "LAROCHE PRES FEYT", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19108"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afbbb06ef72b3acbcd74699150721ce3a4c68605", "fields": {"nom_de_la_commune": "LASCAUX", "libell_d_acheminement": "LASCAUX", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19109"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ea8bab35339d70f209f8bc8346c49190e6e813", "fields": {"nom_de_la_commune": "LE LONZAC", "libell_d_acheminement": "LE LONZAC", "code_postal": "19470", "coordonnees_gps": [45.4692753573, 1.7476592385], "code_commune_insee": "19118"}, "geometry": {"type": "Point", "coordinates": [1.7476592385, 45.4692753573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c790d856b25d7119141c4ff7b3655dd6fb59bb", "fields": {"nom_de_la_commune": "LUBERSAC", "libell_d_acheminement": "LUBERSAC", "code_postal": "19210", "coordonnees_gps": [45.4578364183, 1.39671905539], "code_commune_insee": "19121"}, "geometry": {"type": "Point", "coordinates": [1.39671905539, 45.4578364183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "066c7296f0cf4e6c245a1920cfb18831654a9849", "fields": {"code_postal": "19360", "code_commune_insee": "19123", "libell_d_acheminement": "MALEMORT", "ligne_5": "VENARSAL", "nom_de_la_commune": "MALEMORT", "coordonnees_gps": [45.1545428877, 1.60311872412]}, "geometry": {"type": "Point", "coordinates": [1.60311872412, 45.1545428877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e85678d40b5f19729be2a83bf750b16e843df591", "fields": {"nom_de_la_commune": "MERCOEUR", "libell_d_acheminement": "MERCOEUR", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19133"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2509f7bb9065966532da3455c0a18d20aa6d2024", "fields": {"nom_de_la_commune": "MESTES", "libell_d_acheminement": "MESTES", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19135"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "338aee994ed4a51779f0b04bafee8857dc335022", "fields": {"nom_de_la_commune": "MONTAIGNAC ST HIPPOLYTE", "libell_d_acheminement": "MONTAIGNAC ST HIPPOLYTE", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19143"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba0638913b31736f302318da8834a57370287de", "fields": {"nom_de_la_commune": "MOUSTIER VENTADOUR", "libell_d_acheminement": "MOUSTIER VENTADOUR", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19145"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c39bc18501a450b233fc058ff354c5ba7da953f", "fields": {"nom_de_la_commune": "NOAILLES", "libell_d_acheminement": "NOAILLES", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19151"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d2f6998513e397a3b7c2525cdd50c5e45cded49", "fields": {"nom_de_la_commune": "NONARDS", "libell_d_acheminement": "NONARDS", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19152"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1770d50d0d44dcac556904515bf5827fcf6c961", "fields": {"nom_de_la_commune": "OBJAT", "libell_d_acheminement": "OBJAT", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19153"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44b06cf7eee21c8d1ec447b38e1ddcd5bc6587e", "fields": {"nom_de_la_commune": "PERPEZAC LE NOIR", "libell_d_acheminement": "PERPEZAC LE NOIR", "code_postal": "19410", "coordonnees_gps": [45.3468885239, 1.51457035634], "code_commune_insee": "19162"}, "geometry": {"type": "Point", "coordinates": [1.51457035634, 45.3468885239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19865817c64b5ed833075f26e2ba793c39088938", "fields": {"nom_de_la_commune": "LE PESCHER", "libell_d_acheminement": "LE PESCHER", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19163"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6629a76a1e2c78447a4438a25b5cc252960758c3", "fields": {"nom_de_la_commune": "PRADINES", "libell_d_acheminement": "PRADINES", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19168"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a65ec224e6a32b96433b4187f587de3636cde23", "fields": {"nom_de_la_commune": "PUY D ARNAC", "libell_d_acheminement": "PUY D ARNAC", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19169"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c74e32da87d527263df9844680924ba47fcfb5a8", "fields": {"nom_de_la_commune": "QUEYSSAC LES VIGNES", "libell_d_acheminement": "QUEYSSAC LES VIGNES", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19170"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "683e63fa6f9cea1003d1ed1b5d73e723e1fc46a3", "fields": {"nom_de_la_commune": "LA ROCHE CANILLAC", "libell_d_acheminement": "LA ROCHE CANILLAC", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19174"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ade6cab023a60621421fb499f55e7289a5dc965f", "fields": {"nom_de_la_commune": "SAILLAC", "libell_d_acheminement": "SAILLAC", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19179"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8606a2e62c1899f46463cec3ac36cf0f92778897", "fields": {"nom_de_la_commune": "ST BONNET AVALOUZE", "libell_d_acheminement": "ST BONNET AVALOUZE", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19185"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8836ff9eef4977744b103441e7636c5f20f96ced", "fields": {"nom_de_la_commune": "ST BONNET ELVERT", "libell_d_acheminement": "ST BONNET ELVERT", "code_postal": "19380", "coordonnees_gps": [45.1425705015, 1.85972993392], "code_commune_insee": "19186"}, "geometry": {"type": "Point", "coordinates": [1.85972993392, 45.1425705015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9937608c81f25e4e4938cb3c44ef9236f040ad8", "fields": {"nom_de_la_commune": "ST CHAMANT", "libell_d_acheminement": "ST CHAMANT", "code_postal": "19380", "coordonnees_gps": [45.1425705015, 1.85972993392], "code_commune_insee": "19192"}, "geometry": {"type": "Point", "coordinates": [1.85972993392, 45.1425705015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a72dd808e96eac71920f2a7d61c49bcda5d02de", "fields": {"nom_de_la_commune": "ST CYR LA ROCHE", "libell_d_acheminement": "ST CYR LA ROCHE", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19196"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54bcf4d7b119bffc622bee3bf5e6753a1dd901d", "fields": {"nom_de_la_commune": "ST ELOY LES TUILERIES", "libell_d_acheminement": "ST ELOY LES TUILERIES", "code_postal": "19210", "coordonnees_gps": [45.4578364183, 1.39671905539], "code_commune_insee": "19198"}, "geometry": {"type": "Point", "coordinates": [1.39671905539, 45.4578364183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73b0ee6397c3979471e77437686dfbf8da83e6c9", "fields": {"nom_de_la_commune": "STE FORTUNADE", "libell_d_acheminement": "STE FORTUNADE", "code_postal": "19490", "coordonnees_gps": [45.2070605995, 1.76340639063], "code_commune_insee": "19203"}, "geometry": {"type": "Point", "coordinates": [1.76340639063, 45.2070605995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99dda0d42893748eb3dc5aa2aa1014c1ae456dae", "fields": {"nom_de_la_commune": "ST HILAIRE FOISSAC", "libell_d_acheminement": "ST HILAIRE FOISSAC", "code_postal": "19550", "coordonnees_gps": [45.2859653325, 2.15926332347], "code_commune_insee": "19208"}, "geometry": {"type": "Point", "coordinates": [2.15926332347, 45.2859653325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a071d90a1dbc18f684bb04eb1ae75bca035ab0", "fields": {"nom_de_la_commune": "ST JAL", "libell_d_acheminement": "ST JAL", "code_postal": "19700", "coordonnees_gps": [45.365962799, 1.68361128619], "code_commune_insee": "19213"}, "geometry": {"type": "Point", "coordinates": [1.68361128619, 45.365962799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36bdaa120f85bd7c225b1420c91cdfe0916c5631", "fields": {"nom_de_la_commune": "ST JULIEN AUX BOIS", "libell_d_acheminement": "ST JULIEN AUX BOIS", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19214"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42f971a2a25f8623f097612e7daef4185a71628b", "fields": {"nom_de_la_commune": "ST JULIEN LE VENDOMOIS", "libell_d_acheminement": "ST JULIEN LE VENDOMOIS", "code_postal": "19210", "coordonnees_gps": [45.4578364183, 1.39671905539], "code_commune_insee": "19216"}, "geometry": {"type": "Point", "coordinates": [1.39671905539, 45.4578364183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a5d34215a721746014d49c52525ac73fe6a207", "fields": {"nom_de_la_commune": "ST JULIEN PRES BORT", "libell_d_acheminement": "ST JULIEN PRES BORT", "code_postal": "19110", "coordonnees_gps": [45.4385840854, 2.46492490353], "code_commune_insee": "19218"}, "geometry": {"type": "Point", "coordinates": [2.46492490353, 45.4385840854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1500090b5d2a158a0e79491de8326fb67d07d1fe", "fields": {"nom_de_la_commune": "ST MARTIAL ENTRAYGUES", "libell_d_acheminement": "ST MARTIAL ENTRAYGUES", "code_postal": "19400", "coordonnees_gps": [45.0883560028, 1.92575532209], "code_commune_insee": "19221"}, "geometry": {"type": "Point", "coordinates": [1.92575532209, 45.0883560028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02bfbb6bc70498bb3373369ca3242cb312a70133", "fields": {"nom_de_la_commune": "ST MERD DE LAPLEAU", "libell_d_acheminement": "ST MERD DE LAPLEAU", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19225"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b288cd435ecf7a64ef69fd5fb14a0518e0653eca", "fields": {"nom_de_la_commune": "ST PANTALEON DE LAPLEAU", "libell_d_acheminement": "ST PANTALEON DE LAPLEAU", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19228"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dee28600255f911bb2b92fa08150a3b79ae29bc", "fields": {"nom_de_la_commune": "ST PARDOUX CORBIER", "libell_d_acheminement": "ST PARDOUX CORBIER", "code_postal": "19210", "coordonnees_gps": [45.4578364183, 1.39671905539], "code_commune_insee": "19230"}, "geometry": {"type": "Point", "coordinates": [1.39671905539, 45.4578364183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f2d70183b7eed48c15dfdc553b5712e8846f0e", "fields": {"nom_de_la_commune": "ST PARDOUX LE NEUF", "libell_d_acheminement": "ST PARDOUX LE NEUF", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19232"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37a014608644e214edc087a2bec09f1a5bc2421", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19235"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b363c5f60e027c5a1c09ba072f927f789bca7a8", "fields": {"nom_de_la_commune": "ST PRIVAT", "libell_d_acheminement": "ST PRIVAT", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19237"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8d56dc777df0911fa9f3cf532da8c1b7d9161f", "fields": {"nom_de_la_commune": "SOUDAINE LAVINADIERE", "libell_d_acheminement": "SOUDAINE LAVINADIERE", "code_postal": "19370", "coordonnees_gps": [45.5888302854, 1.72130640352], "code_commune_insee": "19262"}, "geometry": {"type": "Point", "coordinates": [1.72130640352, 45.5888302854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b837c1efa2c2d37e06f275fb95ecc6d9810713cf", "fields": {"nom_de_la_commune": "TOY VIAM", "libell_d_acheminement": "TOY VIAM", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19268"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6125a1fe3a9f68f716b48aee02b78f87690e1fc", "fields": {"nom_de_la_commune": "TREIGNAC", "libell_d_acheminement": "TREIGNAC", "code_postal": "19260", "coordonnees_gps": [45.5242684959, 1.78346555124], "code_commune_insee": "19269"}, "geometry": {"type": "Point", "coordinates": [1.78346555124, 45.5242684959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd53cbc4f70d08cf2d0fbccc7244d2c8999aeaec", "fields": {"nom_de_la_commune": "VIGEOIS", "libell_d_acheminement": "VIGEOIS", "code_postal": "19410", "coordonnees_gps": [45.3468885239, 1.51457035634], "code_commune_insee": "19285"}, "geometry": {"type": "Point", "coordinates": [1.51457035634, 45.3468885239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479fd7db17ac6213c5d702e7a3bfe654d01b074d", "fields": {"nom_de_la_commune": "AGEY", "libell_d_acheminement": "AGEY", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21002"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2741472f09c2185b074553360acb74cb7cb0f1d", "fields": {"nom_de_la_commune": "AISY SOUS THIL", "libell_d_acheminement": "AISY SOUS THIL", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21007"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b1bd67a1202d25d0924923dec465567785841e", "fields": {"nom_de_la_commune": "ANTHEUIL", "libell_d_acheminement": "ANTHEUIL", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21014"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c769256202292fc95be84a7b7a6dd694533651d8", "fields": {"nom_de_la_commune": "ANTIGNY LA VILLE", "libell_d_acheminement": "ANTIGNY LA VILLE", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21015"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbbf5232f21ee3e263249bb84dfeb952898ddf5a", "fields": {"nom_de_la_commune": "ARRANS", "libell_d_acheminement": "ARRANS", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21025"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a9f1b03e86b8011f73ccd2fc267db5472b3f66", "fields": {"nom_de_la_commune": "AUBIGNY LES SOMBERNON", "libell_d_acheminement": "AUBIGNY LES SOMBERNON", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21033"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a9171c505403439cba8a7c254b356198073532", "fields": {"nom_de_la_commune": "AUTRICOURT", "libell_d_acheminement": "AUTRICOURT", "code_postal": "21570", "coordonnees_gps": [47.9722434237, 4.63863087175], "code_commune_insee": "21034"}, "geometry": {"type": "Point", "coordinates": [4.63863087175, 47.9722434237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51951cdc4e49b5f7232fe9badf44efc6223f831", "fields": {"nom_de_la_commune": "BAIGNEUX LES JUIFS", "libell_d_acheminement": "BAIGNEUX LES JUIFS", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21043"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "747e077b3a4611f39391c4b1376cfaa1e976d3ca", "fields": {"nom_de_la_commune": "BEIRE LE CHATEL", "libell_d_acheminement": "BEIRE LE CHATEL", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21056"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a474927ca21c07c585ac0a80b47ac7c65822b73", "fields": {"nom_de_la_commune": "BELLENOD SUR SEINE", "libell_d_acheminement": "BELLENOD SUR SEINE", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21061"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf742d8166d8e52a5d98a11e6e8321c22acd1d51", "fields": {"nom_de_la_commune": "BESSEY EN CHAUME", "libell_d_acheminement": "BESSEY EN CHAUME", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21065"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59974511e1feadd64b9dab14f6140578154b7ee0", "fields": {"nom_de_la_commune": "BESSEY LES CITEAUX", "libell_d_acheminement": "BESSEY LES CITEAUX", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21067"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce17709ff3189963ab22ee9c683065f0007f26cb", "fields": {"nom_de_la_commune": "BEUREY BAUGUAY", "libell_d_acheminement": "BEUREY BAUGUAY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21068"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a5fdbde29350c1d7fd7a0eaf4f527deb3be2e6", "fields": {"nom_de_la_commune": "BINGES", "libell_d_acheminement": "BINGES", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21076"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c187050ff4d5cbb97535f727b8e834f89277a949", "fields": {"nom_de_la_commune": "BLAGNY SUR VINGEANNE", "libell_d_acheminement": "BLAGNY SUR VINGEANNE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21079"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e3bb78ab1ac37ccb43758347646560397ca87a3", "fields": {"nom_de_la_commune": "BOUSSEY", "libell_d_acheminement": "BOUSSEY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21097"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97ecd531581d92c9ca8f9c65bf2e675a56125908", "fields": {"nom_de_la_commune": "BRETIGNY", "libell_d_acheminement": "BRETIGNY", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21107"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bfd410c877727630351afd38c9a91dfbc331c16", "fields": {"nom_de_la_commune": "BUNCEY", "libell_d_acheminement": "BUNCEY", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21115"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db2291eb8637069e083408a11247bbdf37c536fb", "fields": {"nom_de_la_commune": "CENSEREY", "libell_d_acheminement": "CENSEREY", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21124"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "994f7272d04b3805c1e29cf8ced48e5d4d472eab", "fields": {"nom_de_la_commune": "CHAMBOLLE MUSIGNY", "libell_d_acheminement": "CHAMBOLLE MUSIGNY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21133"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7fe7a56c1fdb92b4caea542c0a779bf3b420b3", "fields": {"nom_de_la_commune": "CHAMP D OISEAU", "libell_d_acheminement": "CHAMP D OISEAU", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21137"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5864c3503cf04113f99958e78bb094fa4ef1bf6e", "fields": {"nom_de_la_commune": "CHAMPRENAULT", "libell_d_acheminement": "CHAMPRENAULT", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21141"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63eee193977a6c560f20105148c252bc93053b03", "fields": {"nom_de_la_commune": "CHARNY", "libell_d_acheminement": "CHARNY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21147"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97fb3004754f5d048a30f23c3f78819241d73dfa", "fields": {"nom_de_la_commune": "CHARREY SUR SEINE", "libell_d_acheminement": "CHARREY SUR SEINE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21149"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ef43b7fc9a747d828dcde18a21e9da6f1315c8", "fields": {"nom_de_la_commune": "CHAUDENAY LE CHATEAU", "libell_d_acheminement": "CHAUDENAY LE CHATEAU", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21156"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a13790d380de21d7522c9dec098fae65d4a75474", "fields": {"nom_de_la_commune": "BELLEAU", "libell_d_acheminement": "BELLEAU", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02062"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89254f43cc3beab0f9fe00adef802bea4bd5f76a", "fields": {"code_postal": "02460", "code_commune_insee": "02307", "libell_d_acheminement": "LA FERTE MILON", "ligne_5": "MOSLOY", "nom_de_la_commune": "LA FERTE MILON", "coordonnees_gps": [49.1801295296, 3.14646603898]}, "geometry": {"type": "Point", "coordinates": [3.14646603898, 49.1801295296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a57a263738b043365607d81ebde203d9e51688c9", "fields": {"code_postal": "02450", "code_commune_insee": "02308", "libell_d_acheminement": "FESMY LE SART", "ligne_5": "LE SART", "nom_de_la_commune": "FESMY LE SART", "coordonnees_gps": [50.0067534754, 3.69457044766]}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa763c63f7aa69f527dba92e15f993a613163920", "fields": {"nom_de_la_commune": "FLAVY LE MARTEL", "libell_d_acheminement": "FLAVY LE MARTEL", "code_postal": "02520", "coordonnees_gps": [49.7053596828, 3.19468399179], "code_commune_insee": "02315"}, "geometry": {"type": "Point", "coordinates": [3.19468399179, 49.7053596828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a7884998e9f56aef3c438608bf4d8685293f92", "fields": {"nom_de_la_commune": "ETOUVELLES", "libell_d_acheminement": "ETOUVELLES", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02294"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7770f2c6a652a27f02c0bbd724a70ec4dc0c97dc", "fields": {"nom_de_la_commune": "FLUQUIERES", "libell_d_acheminement": "FLUQUIERES", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02317"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6179801a2cd6b00a2bb0338aaf1633ef9f73a2d5", "fields": {"nom_de_la_commune": "ESTREES", "libell_d_acheminement": "ESTREES", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02291"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a95b00c57318b13cdd1cd6712c675a3bc3d3285", "fields": {"nom_de_la_commune": "GOUDELANCOURT LES PIERREPONT", "libell_d_acheminement": "GOUDELANCOURT LES PIERREPONT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02350"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8231267cd4be8375c841217dd021260e0f1af473", "fields": {"nom_de_la_commune": "FRANCILLY SELENCY", "libell_d_acheminement": "FRANCILLY SELENCY", "code_postal": "02760", "coordonnees_gps": [49.8580828393, 3.21383047105], "code_commune_insee": "02330"}, "geometry": {"type": "Point", "coordinates": [3.21383047105, 49.8580828393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0a1638e58d59a3690f6c9fc8ea4703787826e2", "fields": {"nom_de_la_commune": "FONTAINE UTERTE", "libell_d_acheminement": "FONTAINE UTERTE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02323"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b561e654f1bdb131de56c56cf117393ac9f8a65", "fields": {"nom_de_la_commune": "HARGICOURT", "libell_d_acheminement": "HARGICOURT", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02370"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f79d9aadd40d5a6af85b48412933f97df0cd827b", "fields": {"nom_de_la_commune": "GRICOURT", "libell_d_acheminement": "GRICOURT", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02355"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b122c0ca1c45f38f47285908743a8d46c0ef9e5", "fields": {"nom_de_la_commune": "GRUGIES", "libell_d_acheminement": "GRUGIES", "code_postal": "02680", "coordonnees_gps": [49.80786398, 3.24088325825], "code_commune_insee": "02359"}, "geometry": {"type": "Point", "coordinates": [3.24088325825, 49.80786398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae553fef00f4b4836029cc0a5e3a54d0ce38d17", "fields": {"nom_de_la_commune": "GLAND", "libell_d_acheminement": "GLAND", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02347"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa5ef728e91e2d1a26e3a47ed6db8b782e5d055", "fields": {"nom_de_la_commune": "GIZY", "libell_d_acheminement": "GIZY", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02346"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5919215c1332eb705cde91f60332ff5383315ea", "fields": {"code_postal": "04150", "code_commune_insee": "04208", "libell_d_acheminement": "SIMIANE LA ROTONDE", "ligne_5": "VALSAINTES", "nom_de_la_commune": "SIMIANE LA ROTONDE", "coordonnees_gps": [44.0485937813, 5.61131710182]}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a86edbe1d98bd4cd970cd00a30abcb5ec65417df", "fields": {"code_postal": "04170", "code_commune_insee": "04219", "libell_d_acheminement": "THORAME HAUTE", "ligne_5": "ST MICHEL PEYRESQ", "nom_de_la_commune": "THORAME HAUTE", "coordonnees_gps": [44.0283793714, 6.53951156663]}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "263b36998bd4af4f8e13b99c84622d45643a527f", "fields": {"code_postal": "04380", "code_commune_insee": "04217", "libell_d_acheminement": "THOARD", "ligne_5": "LA PERUSSE", "nom_de_la_commune": "THOARD", "coordonnees_gps": [44.1606174491, 6.13108296701]}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8966933d5f8e1c5fc08005729b2a75d80ae7405", "fields": {"nom_de_la_commune": "ST MARTIN LES SEYNE", "libell_d_acheminement": "ST MARTIN LES SEYNE", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04191"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c2a7e3377958f44540d3d28433c885448b43ccd", "fields": {"nom_de_la_commune": "SOURRIBES", "libell_d_acheminement": "SOURRIBES", "code_postal": "04290", "coordonnees_gps": [44.1438661231, 6.02689394814], "code_commune_insee": "04211"}, "geometry": {"type": "Point", "coordinates": [6.02689394814, 44.1438661231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c7387f1cf45f210ca789c7100f21a85cecca1c1", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "04194"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb279a02e5c34f82051f083a24578acca3fa35f", "fields": {"nom_de_la_commune": "ST LIONS", "libell_d_acheminement": "ST LIONS", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04187"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81a0b28ff45d208850b177fcbaa121a517f0cdbb", "fields": {"nom_de_la_commune": "ST JURS", "libell_d_acheminement": "ST JURS", "code_postal": "04410", "coordonnees_gps": [43.8849946548, 6.15663492635], "code_commune_insee": "04184"}, "geometry": {"type": "Point", "coordinates": [6.15663492635, 43.8849946548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6871afc0b01af754e9ce4a170cbd91ebf591c9a", "fields": {"nom_de_la_commune": "SIGONCE", "libell_d_acheminement": "SIGONCE", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04206"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69f2db1fd2c4b228223764560510a270c8a59b1a", "fields": {"nom_de_la_commune": "LA MOTTE EN CHAMPSAUR", "libell_d_acheminement": "LA MOTTE EN CHAMPSAUR", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05090"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7767ce15953df0e2c300adeb752be8aa1efdec21", "fields": {"nom_de_la_commune": "NOSSAGE ET BENEVENT", "libell_d_acheminement": "NOSSAGE ET BENEVENT", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05094"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f279558060ffe08214a8816e6e52ad929d96cbb", "fields": {"nom_de_la_commune": "PELLEAUTIER", "libell_d_acheminement": "PELLEAUTIER", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05100"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdef3b800a13708b1c0cf2d164f7ee500b08c244", "fields": {"nom_de_la_commune": "MONTROND", "libell_d_acheminement": "MONTROND", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05089"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2a727d794ec336f6806d3b2523194c99756b1b", "fields": {"nom_de_la_commune": "POLIGNY", "libell_d_acheminement": "POLIGNY", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05104"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761f54359530901c7dd87f1cdb78b3ea7876ccda", "fields": {"nom_de_la_commune": "MOYDANS", "libell_d_acheminement": "MOYDANS", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05091"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f50398cba5374d471a29ebceef5b7e56d2022149", "fields": {"nom_de_la_commune": "PELVOUX", "libell_d_acheminement": "PELVOUX", "code_postal": "05340", "coordonnees_gps": [44.8995242291, 6.43584380145], "code_commune_insee": "05101"}, "geometry": {"type": "Point", "coordinates": [6.43584380145, 44.8995242291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8fb9e445e6e74f3c3f7087c0cf76088a3af8d2b", "fields": {"nom_de_la_commune": "NEFFES", "libell_d_acheminement": "NEFFES", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05092"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f19db0873ecd8ebca339becaa770dedfe7d0f1", "fields": {"nom_de_la_commune": "OZE", "libell_d_acheminement": "OZE", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05099"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dda85b2254b5cb3000b5730aa31badb965c83ddc", "fields": {"code_postal": "04320", "code_commune_insee": "04043", "libell_d_acheminement": "VAL DE CHALVAGNE", "ligne_5": "VILLEVIEILLE", "nom_de_la_commune": "VAL DE CHALVAGNE", "coordonnees_gps": [43.9774312961, 6.76983906157]}, "geometry": {"type": "Point", "coordinates": [6.76983906157, 43.9774312961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93c3427185b9fe9e6c3f06e95a28d8581543d863", "fields": {"code_postal": "04380", "code_commune_insee": "04040", "libell_d_acheminement": "LE CASTELLARD MELAN", "ligne_5": "MELAN", "nom_de_la_commune": "LE CASTELLARD MELAN", "coordonnees_gps": [44.1606174491, 6.13108296701]}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fbc414cff7dc60335f7491daeb47f0dd2f3e126", "fields": {"nom_de_la_commune": "LE CHAFFAUT ST JURSON", "libell_d_acheminement": "LE CHAFFAUT ST JURSON", "code_postal": "04510", "coordonnees_gps": [44.0399432995, 6.10204866093], "code_commune_insee": "04046"}, "geometry": {"type": "Point", "coordinates": [6.10204866093, 44.0399432995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "198bb559dfaf0a1d46b187d595bd65985d89352d", "fields": {"nom_de_la_commune": "LE BRUSQUET", "libell_d_acheminement": "LE BRUSQUET", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04036"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1e0078b390b44e681bd8b49df4f6682ffc4ffe4", "fields": {"nom_de_la_commune": "LA BREOLE", "libell_d_acheminement": "LA BREOLE", "code_postal": "04340", "coordonnees_gps": [44.4048142358, 6.43134796483], "code_commune_insee": "04033"}, "geometry": {"type": "Point", "coordinates": [6.43134796483, 44.4048142358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c08f0fbe7bb2ed575a173fec71dcb907a3fbca7", "fields": {"nom_de_la_commune": "ARCHAIL", "libell_d_acheminement": "ARCHAIL", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04009"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40abcbf38a4d31e28a1678fe4133df246660524f", "fields": {"nom_de_la_commune": "BLIEUX", "libell_d_acheminement": "BLIEUX", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04030"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f75faca48e8e0fb77335b99377aa857a6f3c2712", "fields": {"nom_de_la_commune": "BEVONS", "libell_d_acheminement": "BEVONS", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04027"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d8b39463cac036284d0869f54c08bda763d59c", "fields": {"nom_de_la_commune": "BANON", "libell_d_acheminement": "BANON", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04018"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "127924a62e6dee2138cc1ab7fe4f90c9f2fcff22", "fields": {"nom_de_la_commune": "BRAUX", "libell_d_acheminement": "BRAUX", "code_postal": "04240", "coordonnees_gps": [43.977813048, 6.67580684745], "code_commune_insee": "04032"}, "geometry": {"type": "Point", "coordinates": [6.67580684745, 43.977813048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ebb9c6b0e51878a1bd143ccbe7dc43a8caff1af", "fields": {"code_postal": "04260", "code_commune_insee": "04006", "libell_d_acheminement": "ALLOS", "ligne_5": "LA FOUX D ALLOS", "nom_de_la_commune": "ALLOS", "coordonnees_gps": [44.2616156328, 6.62661023596]}, "geometry": {"type": "Point", "coordinates": [6.62661023596, 44.2616156328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f595a53770f00ae5a215fa17b4e69ea66c020d2", "fields": {"nom_de_la_commune": "ALLEMAGNE EN PROVENCE", "libell_d_acheminement": "ALLEMAGNE EN PROVENCE", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04004"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31e58559d99be025ca93fd1a34938fc625def337", "fields": {"nom_de_la_commune": "VARENNES SUR TECHE", "libell_d_acheminement": "VARENNES SUR TECHE", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03299"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c47f4e5bf86d1a55c37d8912839ff928ed210e", "fields": {"nom_de_la_commune": "VALLON EN SULLY", "libell_d_acheminement": "VALLON EN SULLY", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03297"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ab769ad01d1239707c1d4885c67b904509f0d78", "fields": {"nom_de_la_commune": "VALIGNAT", "libell_d_acheminement": "VALIGNAT", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03295"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "332e166c7e618dc0b83a30a47769d29ef0a0ae8d", "fields": {"nom_de_la_commune": "TRONGET", "libell_d_acheminement": "TRONGET", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03292"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8e891169480101026584114e5873142ef6c00cc", "fields": {"nom_de_la_commune": "VALIGNY", "libell_d_acheminement": "VALIGNY", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03296"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69ff0b34bbd4fef03886a647ac12b251eba1266d", "fields": {"nom_de_la_commune": "VOUSSAC", "libell_d_acheminement": "VOUSSAC", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03319"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3dcbaad9d54f0c3a2f3091612291c1348f32dba", "fields": {"nom_de_la_commune": "SUSSAT", "libell_d_acheminement": "SUSSAT", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03276"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b17c67b6e63723d26e3667e5088ae63a0025be28", "fields": {"nom_de_la_commune": "VICQ", "libell_d_acheminement": "VICQ", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03311"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f048ce0b55d059cbbe44911e960ce0dfe3c5f3", "fields": {"nom_de_la_commune": "ST GERMAIN DE SALLES", "libell_d_acheminement": "ST GERMAIN DE SALLES", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03237"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68ffacb463a54e9b41c840ec3febf803232f738c", "fields": {"nom_de_la_commune": "ST DIDIER EN DONJON", "libell_d_acheminement": "ST DIDIER EN DONJON", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03226"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dafb8f5893f09249449f9447936fadeeb71df57f", "fields": {"nom_de_la_commune": "ST MARTIN DES LAIS", "libell_d_acheminement": "ST MARTIN DES LAIS", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03245"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1142347dcd2d7cad111c7f46cf12a5acfd6b4f6d", "fields": {"nom_de_la_commune": "ST FARGEOL", "libell_d_acheminement": "ST FARGEOL", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03231"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51db95268b6523f9a109ddebeecb44aeda394a9b", "fields": {"nom_de_la_commune": "ST VICTOR", "libell_d_acheminement": "ST VICTOR", "code_postal": "03410", "coordonnees_gps": [46.3319374821, 2.55481116435], "code_commune_insee": "03262"}, "geometry": {"type": "Point", "coordinates": [2.55481116435, 46.3319374821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6c6828d8cea630be6aa5e93bb13ea685bed4ed6", "fields": {"nom_de_la_commune": "ST GENEST", "libell_d_acheminement": "ST GENEST", "code_postal": "03310", "coordonnees_gps": [46.276794637, 2.66130166835], "code_commune_insee": "03233"}, "geometry": {"type": "Point", "coordinates": [2.66130166835, 46.276794637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03cce0055473d9f1c439bf87daa6ab0d035e83fb", "fields": {"nom_de_la_commune": "SERVILLY", "libell_d_acheminement": "SERVILLY", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03272"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f06b3f8d7a225421a1c19a6840bcdf60e944e15", "fields": {"nom_de_la_commune": "SEUILLET", "libell_d_acheminement": "SEUILLET", "code_postal": "03260", "coordonnees_gps": [46.2217159232, 3.4471669721], "code_commune_insee": "03273"}, "geometry": {"type": "Point", "coordinates": [3.4471669721, 46.2217159232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5fd095f77e5d99a5c32d63541ba45a22e163466", "fields": {"nom_de_la_commune": "SAULZET", "libell_d_acheminement": "SAULZET", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03268"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a227d0effb6b6d0e4297acc1cb7db03df2e75d7", "fields": {"nom_de_la_commune": "ST PONT", "libell_d_acheminement": "ST PONT", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03252"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc4ba5d4b44bc88edb5636eac52f65ee5c708f2f", "fields": {"nom_de_la_commune": "LE MAYET DE MONTAGNE", "libell_d_acheminement": "LE MAYET DE MONTAGNE", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03165"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b64f850fe836a68543bdc4cbbd0367fcffd144b1", "fields": {"nom_de_la_commune": "ST AUBIN LE MONIAL", "libell_d_acheminement": "ST AUBIN LE MONIAL", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03218"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3ac733923d95559f9bdaafd5c753ea88f86733", "fields": {"nom_de_la_commune": "MONETAY SUR LOIRE", "libell_d_acheminement": "MONETAY SUR LOIRE", "code_postal": "03470", "coordonnees_gps": [46.4660182657, 3.79821234181], "code_commune_insee": "03177"}, "geometry": {"type": "Point", "coordinates": [3.79821234181, 46.4660182657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69756d7fa5480ba42110a1a394ab595d450847c3", "fields": {"nom_de_la_commune": "MONTAIGU LE BLIN", "libell_d_acheminement": "MONTAIGU LE BLIN", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03179"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80db4a26ec5c8c9ae4afb930994a9bedd358195", "fields": {"nom_de_la_commune": "NIZEROLLES", "libell_d_acheminement": "NIZEROLLES", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03201"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ed3f4b62676dbed81e23725e4720979f1c4fd6d", "fields": {"nom_de_la_commune": "ST CAPRAIS", "libell_d_acheminement": "ST CAPRAIS", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03222"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ec6be149c0a912bd6927b56eb39c4b477803ae", "fields": {"nom_de_la_commune": "MEILLERS", "libell_d_acheminement": "MEILLERS", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03170"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbebec3b0e3a0254f5bc9c52f6ef8706b06049e3", "fields": {"nom_de_la_commune": "RONNET", "libell_d_acheminement": "RONNET", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03216"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2bd6ade3b84bcfa1d5475470681fbc598899872", "fields": {"nom_de_la_commune": "NEUVY", "libell_d_acheminement": "NEUVY", "code_postal": "03000", "coordonnees_gps": [46.5704726367, 3.27970202933], "code_commune_insee": "03200"}, "geometry": {"type": "Point", "coordinates": [3.27970202933, 46.5704726367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "460e9bcaa60174d7475f26848370bc2ac4976b25", "fields": {"nom_de_la_commune": "NAVES", "libell_d_acheminement": "NAVES", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03194"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867048d8b272f3f3db299f75b6efa7813df3d67e", "fields": {"nom_de_la_commune": "LA ROCHEGIRON", "libell_d_acheminement": "LA ROCHEGIRON", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04169"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b1ab90615bca037355ac0b2135c0fe70b09d335", "fields": {"nom_de_la_commune": "PEYROULES", "libell_d_acheminement": "PEYROULES", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04148"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d552f8ed50f8b0b359c73c25efa35816512b63e", "fields": {"nom_de_la_commune": "PEYRUIS", "libell_d_acheminement": "PEYRUIS", "code_postal": "04310", "coordonnees_gps": [44.0250031317, 5.92272332026], "code_commune_insee": "04149"}, "geometry": {"type": "Point", "coordinates": [5.92272332026, 44.0250031317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d61badab4eb50f3b3bcc7dd049193dae6621d76", "fields": {"nom_de_la_commune": "PONTIS", "libell_d_acheminement": "PONTIS", "code_postal": "05160", "coordonnees_gps": [44.5645200462, 6.36522312148], "code_commune_insee": "04154"}, "geometry": {"type": "Point", "coordinates": [6.36522312148, 44.5645200462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdac15b6fc69d7525744cbea0efc5cdab5ab1dcb", "fields": {"nom_de_la_commune": "PEIPIN", "libell_d_acheminement": "PEIPIN", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04145"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff36e9fb3b219c5b0d8e8f2b88a2593f49cc8105", "fields": {"nom_de_la_commune": "RIEZ", "libell_d_acheminement": "RIEZ", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04166"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea26adbcfb349de9b31840edfe7dbbff6970830", "fields": {"code_postal": "03190", "code_commune_insee": "03158", "libell_d_acheminement": "HAUT BOCAGE", "ligne_5": "MAILLET", "nom_de_la_commune": "HAUT BOCAGE", "coordonnees_gps": [46.4826080397, 2.65647600079]}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef9cb02f231fe0e9cef359c2cdafc2edd7595a71", "fields": {"nom_de_la_commune": "MARCILLAT EN COMBRAILLE", "libell_d_acheminement": "MARCILLAT EN COMBRAILLE", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03161"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdbda58e01655a5ac1953a604eb03bf40d32d766", "fields": {"nom_de_la_commune": "FERRIERES SUR SICHON", "libell_d_acheminement": "FERRIERES SUR SICHON", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03113"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3179bbdfe2a59760c205de4eed5d4f33d0d48cfa", "fields": {"nom_de_la_commune": "ESPINASSE VOZELLE", "libell_d_acheminement": "ESPINASSE VOZELLE", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03110"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd9e2639fd1da7540b2d805fdb03657bd8dc53a", "fields": {"nom_de_la_commune": "LAVAULT STE ANNE", "libell_d_acheminement": "LAVAULT STE ANNE", "code_postal": "03100", "coordonnees_gps": [46.3299080468, 2.60294961501], "code_commune_insee": "03140"}, "geometry": {"type": "Point", "coordinates": [2.60294961501, 46.3299080468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6a934d7a931283049d2bc4eef9f8a1f08f1d33", "fields": {"nom_de_la_commune": "HERISSON", "libell_d_acheminement": "HERISSON", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03127"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad6b64ca134fb1a2de7d0d0c057bcd6ead96c58e", "fields": {"nom_de_la_commune": "MARIOL", "libell_d_acheminement": "MARIOL", "code_postal": "03270", "coordonnees_gps": [46.0549562922, 3.49595690849], "code_commune_insee": "03163"}, "geometry": {"type": "Point", "coordinates": [3.49595690849, 46.0549562922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7031bf4099afa450b7b9c846bc3c1e876ad3d39", "fields": {"nom_de_la_commune": "GOUISE", "libell_d_acheminement": "GOUISE", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03124"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a048166a51bc83ea8cfbe753a7dcb27765761c", "fields": {"nom_de_la_commune": "HURIEL", "libell_d_acheminement": "HURIEL", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03128"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a8c6ad48ef5b9a810a39483dc25e5130dbf6868", "fields": {"nom_de_la_commune": "LANGY", "libell_d_acheminement": "LANGY", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03137"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab99fce7555cc17fc15a3138b547c7084df8a21", "fields": {"nom_de_la_commune": "BUXIERES LES MINES", "libell_d_acheminement": "BUXIERES LES MINES", "code_postal": "03440", "coordonnees_gps": [46.4644451309, 2.96888238917], "code_commune_insee": "03046"}, "geometry": {"type": "Point", "coordinates": [2.96888238917, 46.4644451309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6741705f240ce893809f3fcec227ec13c2d01c8", "fields": {"nom_de_la_commune": "CHATEL DE NEUVRE", "libell_d_acheminement": "CHATEL DE NEUVRE", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03065"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a4a5f094d420b976869977ceef7144cb73cb890", "fields": {"nom_de_la_commune": "CHAREIL CINTRAT", "libell_d_acheminement": "CHAREIL CINTRAT", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03059"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9996f800504409ce35569a1b9f7446725468d79", "fields": {"nom_de_la_commune": "BRESSOLLES", "libell_d_acheminement": "BRESSOLLES", "code_postal": "03000", "coordonnees_gps": [46.5704726367, 3.27970202933], "code_commune_insee": "03040"}, "geometry": {"type": "Point", "coordinates": [3.27970202933, 46.5704726367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b15d67304a208e1de95a32d68192184792e586", "fields": {"nom_de_la_commune": "BIZENEUILLE", "libell_d_acheminement": "BIZENEUILLE", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03031"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "261c3069ea9a5494ee234fade3cf15320e45f91c", "fields": {"nom_de_la_commune": "CHAMBERAT", "libell_d_acheminement": "CHAMBERAT", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03051"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad992e84ef26b758377ee6ac0640d35ed750d2d1", "fields": {"nom_de_la_commune": "LE BREUIL", "libell_d_acheminement": "LE BREUIL", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03042"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc7037980ae11a7af515b1bfddcf50fa12e856ba", "fields": {"nom_de_la_commune": "BRUGHEAS", "libell_d_acheminement": "BRUGHEAS", "code_postal": "03700", "coordonnees_gps": [46.0940657836, 3.37277682749], "code_commune_insee": "03044"}, "geometry": {"type": "Point", "coordinates": [3.37277682749, 46.0940657836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78dca44531377c72dbff56075f5ac2ca55735d5b", "fields": {"nom_de_la_commune": "BLOMARD", "libell_d_acheminement": "BLOMARD", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03032"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e2bbd5d8d469e7d11744c140ff3108e5609d984", "fields": {"nom_de_la_commune": "BOUCE", "libell_d_acheminement": "BOUCE", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03034"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e98e8bfd896f31bcd9c0d95a91df1426add635", "fields": {"nom_de_la_commune": "COSNE D ALLIER", "libell_d_acheminement": "COSNE D ALLIER", "code_postal": "03430", "coordonnees_gps": [46.4484596667, 2.84631497595], "code_commune_insee": "03084"}, "geometry": {"type": "Point", "coordinates": [2.84631497595, 46.4484596667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7573c1be01bb788585d517dd9ff324cf49877abd", "fields": {"nom_de_la_commune": "ST YVI", "libell_d_acheminement": "ST YVI", "code_postal": "29140", "coordonnees_gps": [47.9522669314, -3.84121638089], "code_commune_insee": "29272"}, "geometry": {"type": "Point", "coordinates": [-3.84121638089, 47.9522669314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264b491b3137b16554ba9c3e06b2f75df5cf8bd7", "fields": {"nom_de_la_commune": "TREFLEVENEZ", "libell_d_acheminement": "TREFLEVENEZ", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29286"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54ca3679da00bff399afafcade30ea8831bcd28", "fields": {"nom_de_la_commune": "TREGARANTEC", "libell_d_acheminement": "TREGARANTEC", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29288"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a5e707c6b0b186d4af3bf1cddcc8a4009276ffb", "fields": {"nom_de_la_commune": "PONT DE BUIS LES QUIMERCH", "libell_d_acheminement": "PONT DE BUIS LES QUIMERCH", "code_postal": "29590", "coordonnees_gps": [48.2799947077, -4.10763494114], "code_commune_insee": "29302"}, "geometry": {"type": "Point", "coordinates": [-4.10763494114, 48.2799947077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c59e3f175152ea8667600873f12e3fee1cef98e", "fields": {"nom_de_la_commune": "AIGUES VIVES", "libell_d_acheminement": "AIGUES VIVES", "code_postal": "30670", "coordonnees_gps": [43.7344032661, 4.19053144146], "code_commune_insee": "30004"}, "geometry": {"type": "Point", "coordinates": [4.19053144146, 43.7344032661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d43a1d70ac34fedfb6a5f80037b819baba54b6c0", "fields": {"nom_de_la_commune": "ALZON", "libell_d_acheminement": "ALZON", "code_postal": "30770", "coordonnees_gps": [43.9504922652, 3.46315986765], "code_commune_insee": "30009"}, "geometry": {"type": "Point", "coordinates": [3.46315986765, 43.9504922652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904d487db1711cdf014c0e4ffbcb4b6cf08e1a61", "fields": {"nom_de_la_commune": "ARPAILLARGUES ET AUREILLAC", "libell_d_acheminement": "ARPAILLARGUES ET AUREILLAC", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30014"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "204479f1cb201ab0d54cf30a8ecd7c2d41cb49cf", "fields": {"nom_de_la_commune": "BAGNOLS SUR CEZE", "libell_d_acheminement": "BAGNOLS SUR CEZE", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30028"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "121c501879383a7d3f0f5fa5a10aee10b0faff35", "fields": {"nom_de_la_commune": "LA BASTIDE D ENGRAS", "libell_d_acheminement": "LA BASTIDE D ENGRAS", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30031"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181f529d395ef53e9f2ee78785a024a2a7a7746f", "fields": {"nom_de_la_commune": "BELVEZET", "libell_d_acheminement": "BELVEZET", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30035"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd9a4833675d58465f8d996420ea9d4c8290a271", "fields": {"nom_de_la_commune": "BEZ ET ESPARON", "libell_d_acheminement": "BEZ ET ESPARON", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30038"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd420d14b20bfb0c74d67d86a2c632e0ab4fab5", "fields": {"nom_de_la_commune": "BOISSET ET GAUJAC", "libell_d_acheminement": "BOISSET ET GAUJAC", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30042"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3df9b8a1efafe599a9ec17b0d5a4ebc277fa16b", "fields": {"nom_de_la_commune": "BRANOUX LES TAILLADES", "libell_d_acheminement": "BRANOUX LES TAILLADES", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30051"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99bf4f399cfda2607e1795f9d2eef6540268b38c", "fields": {"nom_de_la_commune": "BREAU ET SALAGOSSE", "libell_d_acheminement": "BREAU ET SALAGOSSE", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30052"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcf4640094564b4f53c6b6505d00de7dbcf0816a", "fields": {"nom_de_la_commune": "BROUZET LES QUISSAC", "libell_d_acheminement": "BROUZET LES QUISSAC", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30054"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9186d11029b7d8319343fa9f9ce46032d2b520c", "fields": {"nom_de_la_commune": "LE CAILAR", "libell_d_acheminement": "LE CAILAR", "code_postal": "30740", "coordonnees_gps": [43.6580354658, 4.2427890874], "code_commune_insee": "30059"}, "geometry": {"type": "Point", "coordinates": [4.2427890874, 43.6580354658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17cee6d2962ed9fa3ad02c19e22efea40192bd43", "fields": {"nom_de_la_commune": "CAMPESTRE ET LUC", "libell_d_acheminement": "CAMPESTRE ET LUC", "code_postal": "30770", "coordonnees_gps": [43.9504922652, 3.46315986765], "code_commune_insee": "30064"}, "geometry": {"type": "Point", "coordinates": [3.46315986765, 43.9504922652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6fb35d2c426e2b9c24b04f32c9a867c73ae5ed", "fields": {"nom_de_la_commune": "CANNES ET CLAIRAN", "libell_d_acheminement": "CANNES ET CLAIRAN", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30066"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcd4281a805558621d8b6ad02a709b8ec345c7c3", "fields": {"nom_de_la_commune": "CASSAGNOLES", "libell_d_acheminement": "CASSAGNOLES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30071"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c0c2a7cc7cd5aa066f345ba31f72af2e114b0b4", "fields": {"nom_de_la_commune": "CENDRAS", "libell_d_acheminement": "CENDRAS", "code_postal": "30480", "coordonnees_gps": [44.1525130958, 3.9959976233], "code_commune_insee": "30077"}, "geometry": {"type": "Point", "coordinates": [3.9959976233, 44.1525130958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93aaf49cb5b662de4c16cc2fe9ded74ed203fd89", "fields": {"nom_de_la_commune": "CHUSCLAN", "libell_d_acheminement": "CHUSCLAN", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30081"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6ac303f5bf8e6ab02d3d60957b13fb8949110c", "fields": {"nom_de_la_commune": "COLOGNAC", "libell_d_acheminement": "COLOGNAC", "code_postal": "30460", "coordonnees_gps": [44.0515498157, 3.8329499699], "code_commune_insee": "30087"}, "geometry": {"type": "Point", "coordinates": [3.8329499699, 44.0515498157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b6d8c73f7d4a2cdb13cd5ef9b4f14c49979af9", "fields": {"nom_de_la_commune": "COMPS", "libell_d_acheminement": "COMPS", "code_postal": "30300", "coordonnees_gps": [43.780193328, 4.58229884673], "code_commune_insee": "30089"}, "geometry": {"type": "Point", "coordinates": [4.58229884673, 43.780193328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "222f39451921b9a4a38456128ed4889d144ba906", "fields": {"nom_de_la_commune": "CONCOULES", "libell_d_acheminement": "CONCOULES", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30090"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b7b4a1bbac9405aa7acae9f5401608e4b44bfa", "fields": {"nom_de_la_commune": "CONNAUX", "libell_d_acheminement": "CONNAUX", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30092"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2950a43d574a1bbbf7b66d7347696a850155b53", "fields": {"nom_de_la_commune": "CONQUEYRAC", "libell_d_acheminement": "CONQUEYRAC", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30093"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b6dd967005658c0b0d988cc4c5241b4b8320ce", "fields": {"nom_de_la_commune": "CROS", "libell_d_acheminement": "CROS", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30099"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621a9bced00cdfeab78c6e4b6ddd8ff7fbea3595", "fields": {"nom_de_la_commune": "CRUVIERS LASCOURS", "libell_d_acheminement": "CRUVIERS LASCOURS", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30100"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca5bdf433a53210e2f9a03203691f1043977d019", "fields": {"nom_de_la_commune": "DIONS", "libell_d_acheminement": "DIONS", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30102"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f98b001c5856109c630803c67e675f3742c84f", "fields": {"nom_de_la_commune": "FONS", "libell_d_acheminement": "FONS", "code_postal": "30730", "coordonnees_gps": [43.8845718462, 4.18952374763], "code_commune_insee": "30112"}, "geometry": {"type": "Point", "coordinates": [4.18952374763, 43.8845718462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8737cc9905abae5abd2cc7fd31a489f7308da1e", "fields": {"nom_de_la_commune": "GAJAN", "libell_d_acheminement": "GAJAN", "code_postal": "30730", "coordonnees_gps": [43.8845718462, 4.18952374763], "code_commune_insee": "30122"}, "geometry": {"type": "Point", "coordinates": [4.18952374763, 43.8845718462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a437bcb1fbac6ee9203733775e993ac33178e0", "fields": {"nom_de_la_commune": "GOUDARGUES", "libell_d_acheminement": "GOUDARGUES", "code_postal": "30630", "coordonnees_gps": [44.2160658373, 4.44619382418], "code_commune_insee": "30131"}, "geometry": {"type": "Point", "coordinates": [4.44619382418, 44.2160658373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e857b3333ee925d37c20ec710271fdaf848ebb9", "fields": {"code_postal": "30240", "code_commune_insee": "30133", "libell_d_acheminement": "LE GRAU DU ROI", "ligne_5": "PORT CAMARGUE", "nom_de_la_commune": "LE GRAU DU ROI", "coordonnees_gps": [43.5075003304, 4.16612104181]}, "geometry": {"type": "Point", "coordinates": [4.16612104181, 43.5075003304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "372c98fa04dc388251280a7476c71404be20f64e", "fields": {"nom_de_la_commune": "JONQUIERES ST VINCENT", "libell_d_acheminement": "JONQUIERES ST VINCENT", "code_postal": "30300", "coordonnees_gps": [43.780193328, 4.58229884673], "code_commune_insee": "30135"}, "geometry": {"type": "Point", "coordinates": [4.58229884673, 43.780193328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef620754d4062dec63fdeed7c01cb8ddbef05d49", "fields": {"nom_de_la_commune": "LANGLADE", "libell_d_acheminement": "LANGLADE", "code_postal": "30980", "coordonnees_gps": [43.8042643595, 4.24666861732], "code_commune_insee": "30138"}, "geometry": {"type": "Point", "coordinates": [4.24666861732, 43.8042643595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d050000f9bdeded6856036650781f2fed689614e", "fields": {"nom_de_la_commune": "LASALLE", "libell_d_acheminement": "LASALLE", "code_postal": "30460", "coordonnees_gps": [44.0515498157, 3.8329499699], "code_commune_insee": "30140"}, "geometry": {"type": "Point", "coordinates": [3.8329499699, 44.0515498157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54029cbb6473c2bdf3939efc10f1a9cdfa9f9b96", "fields": {"nom_de_la_commune": "LAUDUN L ARDOISE", "libell_d_acheminement": "LAUDUN L ARDOISE", "code_postal": "30290", "coordonnees_gps": [44.0818801602, 4.65422570722], "code_commune_insee": "30141"}, "geometry": {"type": "Point", "coordinates": [4.65422570722, 44.0818801602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a9bb9badeb38340e191d108600cc70859de5b4", "fields": {"nom_de_la_commune": "LIRAC", "libell_d_acheminement": "LIRAC", "code_postal": "30126", "coordonnees_gps": [44.0300936861, 4.6901493854], "code_commune_insee": "30149"}, "geometry": {"type": "Point", "coordinates": [4.6901493854, 44.0300936861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6faf5d88854d722463816657f81dff7ae75f9328", "fields": {"nom_de_la_commune": "LOGRIAN FLORIAN", "libell_d_acheminement": "LOGRIAN FLORIAN", "code_postal": "30610", "coordonnees_gps": [43.9495863294, 3.99062671704], "code_commune_insee": "30150"}, "geometry": {"type": "Point", "coordinates": [3.99062671704, 43.9495863294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70da173ea4334f6b32f5f8ad8f18e64ee35aa230", "fields": {"nom_de_la_commune": "MALONS ET ELZE", "libell_d_acheminement": "MALONS ET ELZE", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30153"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "807ace188abc1eb6fc9cd9b82f04d4eee6bab0e4", "fields": {"nom_de_la_commune": "MARTIGNARGUES", "libell_d_acheminement": "MARTIGNARGUES", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30158"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31ea62c4322a0e29b3178335bf527e1c05a463cd", "fields": {"nom_de_la_commune": "MASSANES", "libell_d_acheminement": "MASSANES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30161"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eabbb32f3289ee967821d3d2cec48c7900170175", "fields": {"nom_de_la_commune": "MEYNES", "libell_d_acheminement": "MEYNES", "code_postal": "30840", "coordonnees_gps": [43.8767626989, 4.55429203448], "code_commune_insee": "30166"}, "geometry": {"type": "Point", "coordinates": [4.55429203448, 43.8767626989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9409554fe1167042f66b0091c5cc58e6cbc6667", "fields": {"nom_de_la_commune": "MOLIERES CAVAILLAC", "libell_d_acheminement": "MOLIERES CAVAILLAC", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30170"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22744547485846d50772b707ec63e17313356ad6", "fields": {"nom_de_la_commune": "MONOBLET", "libell_d_acheminement": "MONOBLET", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30172"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d1d22d8d23f7fd982774378b30413e57452f66", "fields": {"nom_de_la_commune": "MONTMIRAT", "libell_d_acheminement": "MONTMIRAT", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30181"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6281d7740af3969f910e1d1db531b4a625ed1b81", "fields": {"nom_de_la_commune": "LES PLANS", "libell_d_acheminement": "LES PLANS", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30197"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f503426da9aa03c4d6c96d689d0b11543e50827", "fields": {"nom_de_la_commune": "POMPIGNAN", "libell_d_acheminement": "POMPIGNAN", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30200"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bebfff6630a82c7dd69a3710eb4a1d877d8dc9ac", "fields": {"nom_de_la_commune": "REMOULINS", "libell_d_acheminement": "REMOULINS", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30212"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea9746a3b0ea44b023427b816fc0f32a64e8939", "fields": {"nom_de_la_commune": "RIVIERES", "libell_d_acheminement": "RIVIERES", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30215"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad33fb4f744ea6572e49328208a1846e8ea30ee7", "fields": {"nom_de_la_commune": "ROCHEGUDE", "libell_d_acheminement": "ROCHEGUDE", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30218"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74ef2e99c58d28bd1e6915684b1e1c4939486f89", "fields": {"nom_de_la_commune": "ROQUEMAURE", "libell_d_acheminement": "ROQUEMAURE", "code_postal": "30150", "coordonnees_gps": [44.0420660293, 4.76432610967], "code_commune_insee": "30221"}, "geometry": {"type": "Point", "coordinates": [4.76432610967, 44.0420660293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c98c8d0cbd6726bd18b87e9ef095e93a1f4e45", "fields": {"nom_de_la_commune": "ROUSSON", "libell_d_acheminement": "ROUSSON", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30223"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "052dd82ba9854c755d610fd3c3509daa6fc15e44", "fields": {"nom_de_la_commune": "ST ANDRE D OLERARGUES", "libell_d_acheminement": "ST ANDRE D OLERARGUES", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30232"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402249734bb88bd79bc0545ca39082c5da6f319d", "fields": {"nom_de_la_commune": "ST BONNET DE SALENDRINQUE", "libell_d_acheminement": "ST BONNET DE SALENDRINQUE", "code_postal": "30460", "coordonnees_gps": [44.0515498157, 3.8329499699], "code_commune_insee": "30236"}, "geometry": {"type": "Point", "coordinates": [3.8329499699, 44.0515498157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bca5d530bd25cde0ac27a6e00efb75993985fb", "fields": {"nom_de_la_commune": "STE CECILE D ANDORGE", "libell_d_acheminement": "STE CECILE D ANDORGE", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30239"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b4842c67c174d1f1e8c768154f364fbee3f2bf", "fields": {"nom_de_la_commune": "ST ETIENNE DE L OLM", "libell_d_acheminement": "ST ETIENNE DE L OLM", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30250"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5aa3770712e9b488e8d288caf21cba25e06325", "fields": {"nom_de_la_commune": "ST FLORENT SUR AUZONNET", "libell_d_acheminement": "ST FLORENT SUR AUZONNET", "code_postal": "30960", "coordonnees_gps": [44.2386422448, 4.12848944185], "code_commune_insee": "30253"}, "geometry": {"type": "Point", "coordinates": [4.12848944185, 44.2386422448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10a420af38a0f1a4bf49c13342b3459ea88d04b1", "fields": {"nom_de_la_commune": "ST GENIES DE MALGOIRES", "libell_d_acheminement": "ST GENIES DE MALGOIRES", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30255"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28940d6a6815de4eaba0e06e992e34e41ee45f2d", "fields": {"nom_de_la_commune": "ST GERVASY", "libell_d_acheminement": "ST GERVASY", "code_postal": "30320", "coordonnees_gps": [43.8770383531, 4.45722283055], "code_commune_insee": "30257"}, "geometry": {"type": "Point", "coordinates": [4.45722283055, 43.8770383531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71e8ef3e19e2bef064259e24943843be6668f956", "fields": {"nom_de_la_commune": "ST GILLES", "libell_d_acheminement": "ST GILLES", "code_postal": "30800", "coordonnees_gps": [43.657925014, 4.40745034656], "code_commune_insee": "30258"}, "geometry": {"type": "Point", "coordinates": [4.40745034656, 43.657925014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a09623b021858a899116786ac9b6fd48b0c74a4", "fields": {"nom_de_la_commune": "ST JEAN DE CRIEULON", "libell_d_acheminement": "ST JEAN DE CRIEULON", "code_postal": "30610", "coordonnees_gps": [43.9495863294, 3.99062671704], "code_commune_insee": "30265"}, "geometry": {"type": "Point", "coordinates": [3.99062671704, 43.9495863294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81687e5aaf82dd815f2777e6d6fd05995fe3d3a2", "fields": {"nom_de_la_commune": "ST JULIEN DE CASSAGNAS", "libell_d_acheminement": "ST JULIEN DE CASSAGNAS", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30271"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa6a050c0040972b22f7eba51dd23acd50bd0de6", "fields": {"nom_de_la_commune": "ST MAXIMIN", "libell_d_acheminement": "ST MAXIMIN", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30286"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d8b925407e29494c92486082ca71983da1a18d", "fields": {"nom_de_la_commune": "ST PAUL LA COSTE", "libell_d_acheminement": "ST PAUL LA COSTE", "code_postal": "30480", "coordonnees_gps": [44.1525130958, 3.9959976233], "code_commune_insee": "30291"}, "geometry": {"type": "Point", "coordinates": [3.9959976233, 44.1525130958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "257c37b256037b189ac446e83a334bdadaa3193a", "fields": {"nom_de_la_commune": "ST VICTOR LA COSTE", "libell_d_acheminement": "ST VICTOR LA COSTE", "code_postal": "30290", "coordonnees_gps": [44.0818801602, 4.65422570722], "code_commune_insee": "30302"}, "geometry": {"type": "Point", "coordinates": [4.65422570722, 44.0818801602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373b29be613e8ed1aa48b6368488f2a50a2f6b2a", "fields": {"nom_de_la_commune": "SAUMANE", "libell_d_acheminement": "SAUMANE", "code_postal": "30125", "coordonnees_gps": [44.1195052098, 3.76831241907], "code_commune_insee": "30310"}, "geometry": {"type": "Point", "coordinates": [3.76831241907, 44.1195052098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b553f422d9afa11a0d28bb20527448ab123cd43b", "fields": {"nom_de_la_commune": "SERNHAC", "libell_d_acheminement": "SERNHAC", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30317"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c79156bd105e8b0c54ef921b682476a6fa65e080", "fields": {"nom_de_la_commune": "SOUVIGNARGUES", "libell_d_acheminement": "SOUVIGNARGUES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30324"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1049774587183f0dfefd6e4f9dc72a1a7d272777", "fields": {"code_postal": "30440", "code_commune_insee": "30325", "libell_d_acheminement": "SUMENE", "ligne_5": "PONT D HERAULT", "nom_de_la_commune": "SUMENE", "coordonnees_gps": [43.9870513283, 3.7146726024]}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6eb06aaac2a39af06c1f283ee827ff9a4b9a05", "fields": {"nom_de_la_commune": "VALLABRIX", "libell_d_acheminement": "VALLABRIX", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30337"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f0aa03ae3f7ac00620b11d38956ab44202a798", "fields": {"nom_de_la_commune": "VALLERAUGUE", "libell_d_acheminement": "VALLERAUGUE", "code_postal": "30570", "coordonnees_gps": [44.0726659804, 3.64380586054], "code_commune_insee": "30339"}, "geometry": {"type": "Point", "coordinates": [3.64380586054, 44.0726659804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8dbe1969cb7f260ddb9fc6d9c4a2c4358467be5", "fields": {"code_postal": "30570", "code_commune_insee": "30339", "libell_d_acheminement": "VALLERAUGUE", "ligne_5": "PONT D HERAULT", "nom_de_la_commune": "VALLERAUGUE", "coordonnees_gps": [44.0726659804, 3.64380586054]}, "geometry": {"type": "Point", "coordinates": [3.64380586054, 44.0726659804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84ad603d1c5f43787c9e97485058e12cab595d04", "fields": {"code_postal": "30600", "code_commune_insee": "30341", "libell_d_acheminement": "VAUVERT", "ligne_5": "GALLICIAN", "nom_de_la_commune": "VAUVERT", "coordonnees_gps": [43.6360200976, 4.3019597877]}, "geometry": {"type": "Point", "coordinates": [4.3019597877, 43.6360200976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f0105c4546605582a46d7a4af98984b0b86633", "fields": {"nom_de_la_commune": "VERGEZE", "libell_d_acheminement": "VERGEZE", "code_postal": "30310", "coordonnees_gps": [43.7378529674, 4.23230506556], "code_commune_insee": "30344"}, "geometry": {"type": "Point", "coordinates": [4.23230506556, 43.7378529674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e3d2509065a83b1204bd549f4ca1ec9a3ba6ef", "fields": {"nom_de_la_commune": "VIC LE FESQ", "libell_d_acheminement": "VIC LE FESQ", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30349"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33986057038b8da68538a8f6eea7c91b5ae86910", "fields": {"nom_de_la_commune": "VILLENEUVE LES AVIGNON", "libell_d_acheminement": "VILLENEUVE LES AVIGNON", "code_postal": "30400", "coordonnees_gps": [43.9767094968, 4.7939679581], "code_commune_insee": "30351"}, "geometry": {"type": "Point", "coordinates": [4.7939679581, 43.9767094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d1eb2cfb5270cadc9dcec13625b9f6180eaf2de", "fields": {"nom_de_la_commune": "VISSEC", "libell_d_acheminement": "VISSEC", "code_postal": "30770", "coordonnees_gps": [43.9504922652, 3.46315986765], "code_commune_insee": "30353"}, "geometry": {"type": "Point", "coordinates": [3.46315986765, 43.9504922652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb13321eb32acf1ee1b03a1235e4ed325b08f95f", "fields": {"nom_de_la_commune": "AGASSAC", "libell_d_acheminement": "AGASSAC", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31001"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "584cd0fb90a0a680364622070554772b2c9f878c", "fields": {"nom_de_la_commune": "ALAN", "libell_d_acheminement": "ALAN", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31005"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65be359fb1afd3bb616cc026e1cdfe7233e7d2d1", "fields": {"nom_de_la_commune": "ALBIAC", "libell_d_acheminement": "ALBIAC", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31006"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84ec523ee9f21ccfa6e4a01bd8fcb937c3356c0b", "fields": {"nom_de_la_commune": "AMBAX", "libell_d_acheminement": "AMBAX", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31007"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b3dbe388329ea01044a22a81d6b2fee7a1cc31b", "fields": {"nom_de_la_commune": "ANTICHAN DE FRONTIGNES", "libell_d_acheminement": "ANTICHAN DE FRONTIGNES", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31009"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fd5de7bca96b2afd8af9fe274047837dc4c5594", "fields": {"nom_de_la_commune": "ANTIGNAC", "libell_d_acheminement": "ANTIGNAC", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31010"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3775a478d4a5763f43fee1ff82ab318e80b82fc", "fields": {"nom_de_la_commune": "ASPRET SARRAT", "libell_d_acheminement": "ASPRET SARRAT", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31021"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f682cd5e18948653f8a8cfbf2eaacd3143a07f43", "fields": {"nom_de_la_commune": "AULON", "libell_d_acheminement": "AULON", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31023"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41237b94acb51ae7a34c8979c753af67277df1ca", "fields": {"nom_de_la_commune": "AUREVILLE", "libell_d_acheminement": "AUREVILLE", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31025"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72bedac9646d7b89145c7d57548b2bf06ffaa1c0", "fields": {"nom_de_la_commune": "AURIGNAC", "libell_d_acheminement": "AURIGNAC", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31028"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa23db4ac2e19e162aa20e5525797fc4f46c096d", "fields": {"nom_de_la_commune": "AUTERIVE", "libell_d_acheminement": "AUTERIVE", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31033"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6830c6a0cf9b721bbe19a97da7843db4bc6a2d0a", "fields": {"nom_de_la_commune": "AZAS", "libell_d_acheminement": "AZAS", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31038"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35c887c5bca6ea24d98ac766dbdd8c19a6764400", "fields": {"nom_de_la_commune": "BACHAS", "libell_d_acheminement": "BACHAS", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31039"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "472480e1098734f7df4ae2b2f99530f1e3cfe2f9", "fields": {"nom_de_la_commune": "BALMA", "libell_d_acheminement": "BALMA", "code_postal": "31130", "coordonnees_gps": [43.6044083046, 1.52857222339], "code_commune_insee": "31044"}, "geometry": {"type": "Point", "coordinates": [1.52857222339, 43.6044083046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0179b072b849a64a3ea21e62e1e5f2b2dbba63f", "fields": {"nom_de_la_commune": "BAZIEGE", "libell_d_acheminement": "BAZIEGE", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31048"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02b257c9d215ed785dfaf6bdb1d41ffccec6b993", "fields": {"nom_de_la_commune": "BEAUFORT", "libell_d_acheminement": "BEAUFORT", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31051"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19bacc23c6c350c4ccb3ba85b826563154d61336", "fields": {"nom_de_la_commune": "BEAUMONT SUR LEZE", "libell_d_acheminement": "BEAUMONT SUR LEZE", "code_postal": "31870", "coordonnees_gps": [43.3914758658, 1.36906768586], "code_commune_insee": "31052"}, "geometry": {"type": "Point", "coordinates": [1.36906768586, 43.3914758658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1271de4e3ff8e92a7ed829077ea1e82e8ed4e13", "fields": {"nom_de_la_commune": "BELLEGARDE STE MARIE", "libell_d_acheminement": "BELLEGARDE STE MARIE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31061"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98a212dcdca497b186dea2990cbac3cb61ddf220", "fields": {"nom_de_la_commune": "BELLESSERRE", "libell_d_acheminement": "BELLESSERRE", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31062"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27244140fa5a3346d61c1dfe20e041fc1d2681c5", "fields": {"nom_de_la_commune": "BENQUE", "libell_d_acheminement": "BENQUE", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31063"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0d176d1b17153e9102e5380c9f56be8246c571", "fields": {"nom_de_la_commune": "BESSIERES", "libell_d_acheminement": "BESSIERES", "code_postal": "31660", "coordonnees_gps": [43.7787521435, 1.60352136541], "code_commune_insee": "31066"}, "geometry": {"type": "Point", "coordinates": [1.60352136541, 43.7787521435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4014bd0d65e33885ec447d2ac5bfbbe092be466", "fields": {"nom_de_la_commune": "BLAGNAC", "libell_d_acheminement": "BLAGNAC", "code_postal": "31700", "coordonnees_gps": [43.6597738568, 1.31989347966], "code_commune_insee": "31069"}, "geometry": {"type": "Point", "coordinates": [1.31989347966, 43.6597738568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baa91d638c5ce42aa61071475238c9072d591813", "fields": {"nom_de_la_commune": "LE LANDREAU", "libell_d_acheminement": "LE LANDREAU", "code_postal": "44430", "coordonnees_gps": [47.2258283333, -1.29550283149], "code_commune_insee": "44079"}, "geometry": {"type": "Point", "coordinates": [-1.29550283149, 47.2258283333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f6494c0935a50b1fc80d58ba80059b73e98f6fb", "fields": {"nom_de_la_commune": "LEGE", "libell_d_acheminement": "LEGE", "code_postal": "44650", "coordonnees_gps": [46.9200173219, -1.61088022271], "code_commune_insee": "44081"}, "geometry": {"type": "Point", "coordinates": [-1.61088022271, 46.9200173219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "886efec1997c52d84dd412845bf0047cd7aeefda", "fields": {"nom_de_la_commune": "LIGNE", "libell_d_acheminement": "LIGNE", "code_postal": "44850", "coordonnees_gps": [47.3786651344, -1.3830703271], "code_commune_insee": "44082"}, "geometry": {"type": "Point", "coordinates": [-1.3830703271, 47.3786651344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9748cef38be297e0c81b45a55b7d289f7ea861", "fields": {"nom_de_la_commune": "LOUISFERT", "libell_d_acheminement": "LOUISFERT", "code_postal": "44110", "coordonnees_gps": [47.7085932754, -1.36002284106], "code_commune_insee": "44085"}, "geometry": {"type": "Point", "coordinates": [-1.36002284106, 47.7085932754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea60c3822418c9e62e55cf1decb2bcca47ed5487", "fields": {"nom_de_la_commune": "LUSANGER", "libell_d_acheminement": "LUSANGER", "code_postal": "44590", "coordonnees_gps": [47.6829911414, -1.60317365389], "code_commune_insee": "44086"}, "geometry": {"type": "Point", "coordinates": [-1.60317365389, 47.6829911414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f9660c82688e4290831269d3a51bb391dc53b3", "fields": {"nom_de_la_commune": "MACHECOUL ST MEME", "libell_d_acheminement": "MACHECOUL ST MEME", "code_postal": "44270", "coordonnees_gps": [46.9745110591, -1.78089818288], "code_commune_insee": "44087"}, "geometry": {"type": "Point", "coordinates": [-1.78089818288, 46.9745110591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e46445ec576a956cf75a785aaa170e9870a3fc70", "fields": {"nom_de_la_commune": "MARSAC SUR DON", "libell_d_acheminement": "MARSAC SUR DON", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44091"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bd2b6b1baf89f4d76c808ce8eb2779fc7ee76b8", "fields": {"nom_de_la_commune": "MASSERAC", "libell_d_acheminement": "MASSERAC", "code_postal": "44290", "coordonnees_gps": [47.6456298963, -1.81807007019], "code_commune_insee": "44092"}, "geometry": {"type": "Point", "coordinates": [-1.81807007019, 47.6456298963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9c796fe4647577abdaca009d553c5dc1a2eb43", "fields": {"nom_de_la_commune": "MONTBERT", "libell_d_acheminement": "MONTBERT", "code_postal": "44140", "coordonnees_gps": [47.0608389163, -1.45654054931], "code_commune_insee": "44102"}, "geometry": {"type": "Point", "coordinates": [-1.45654054931, 47.0608389163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad41481dd2ab79a25143ebb39019105336e93073", "fields": {"nom_de_la_commune": "MONTOIR DE BRETAGNE", "libell_d_acheminement": "MONTOIR DE BRETAGNE", "code_postal": "44550", "coordonnees_gps": [47.3304711447, -2.15365906277], "code_commune_insee": "44103"}, "geometry": {"type": "Point", "coordinates": [-2.15365906277, 47.3304711447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01bcb1b2aefa2ceb983192a1b7bf24ba14bfd278", "fields": {"nom_de_la_commune": "MOUZEIL", "libell_d_acheminement": "MOUZEIL", "code_postal": "44850", "coordonnees_gps": [47.3786651344, -1.3830703271], "code_commune_insee": "44107"}, "geometry": {"type": "Point", "coordinates": [-1.3830703271, 47.3786651344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eef6ca6f4519510cd31659bd86620283967ffc43", "fields": {"nom_de_la_commune": "NANTES", "libell_d_acheminement": "NANTES", "code_postal": "44100", "coordonnees_gps": [47.2321830557, -1.54780684906], "code_commune_insee": "44109"}, "geometry": {"type": "Point", "coordinates": [-1.54780684906, 47.2321830557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1a6eb04518860d90b610aaea6b1030c29c9da7", "fields": {"nom_de_la_commune": "NANTES", "libell_d_acheminement": "NANTES", "code_postal": "44300", "coordonnees_gps": [47.2321830557, -1.54780684906], "code_commune_insee": "44109"}, "geometry": {"type": "Point", "coordinates": [-1.54780684906, 47.2321830557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eef284ae552a57873d151c7bb72ad2b8088c418", "fields": {"nom_de_la_commune": "LE PALLET", "libell_d_acheminement": "LE PALLET", "code_postal": "44330", "coordonnees_gps": [47.1650939887, -1.27114440843], "code_commune_insee": "44117"}, "geometry": {"type": "Point", "coordinates": [-1.27114440843, 47.1650939887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4711e43e6723e1c631d4f6786fa99e088bd00c75", "fields": {"nom_de_la_commune": "LE PELLERIN", "libell_d_acheminement": "LE PELLERIN", "code_postal": "44640", "coordonnees_gps": [47.1953946232, -1.83239436965], "code_commune_insee": "44120"}, "geometry": {"type": "Point", "coordinates": [-1.83239436965, 47.1953946232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e58da2276bb985887e5599c1de99be6d0e52f5ba", "fields": {"code_postal": "44160", "code_commune_insee": "44129", "libell_d_acheminement": "PONTCHATEAU", "ligne_5": "ST GUILLAUME", "nom_de_la_commune": "PONTCHATEAU", "coordonnees_gps": [47.4265793893, -2.10093858399]}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0b82178fa0415b25b17463477374aaec05123c", "fields": {"code_postal": "44160", "code_commune_insee": "44129", "libell_d_acheminement": "PONTCHATEAU", "ligne_5": "ST ROCH", "nom_de_la_commune": "PONTCHATEAU", "coordonnees_gps": [47.4265793893, -2.10093858399]}, "geometry": {"type": "Point", "coordinates": [-2.10093858399, 47.4265793893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb02ad15e110a25d68f6092dc97552c0bb6ebd47", "fields": {"nom_de_la_commune": "ST ANDRE DES EAUX", "libell_d_acheminement": "ST ANDRE DES EAUX", "code_postal": "44117", "coordonnees_gps": [47.3234199197, -2.31212027704], "code_commune_insee": "44151"}, "geometry": {"type": "Point", "coordinates": [-2.31212027704, 47.3234199197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "235f85b9d2a31ba7fd8499308b61ca0b64683d83", "fields": {"code_postal": "44310", "code_commune_insee": "44155", "libell_d_acheminement": "ST COLOMBAN", "ligne_5": "PONT JAMES", "nom_de_la_commune": "ST COLOMBAN", "coordonnees_gps": [47.040945415, -1.64161948487]}, "geometry": {"type": "Point", "coordinates": [-1.64161948487, 47.040945415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9713299c2b3ff54a4f2e82785cc97247fe29aa", "fields": {"nom_de_la_commune": "CORCOUE SUR LOGNE", "libell_d_acheminement": "CORCOUE SUR LOGNE", "code_postal": "44650", "coordonnees_gps": [46.9200173219, -1.61088022271], "code_commune_insee": "44156"}, "geometry": {"type": "Point", "coordinates": [-1.61088022271, 46.9200173219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8254e97d4ea38e913983b515c758f1ee75d5953b", "fields": {"code_postal": "44150", "code_commune_insee": "44163", "libell_d_acheminement": "VAIR SUR LOIRE", "ligne_5": "ST HERBLON", "nom_de_la_commune": "VAIR SUR LOIRE", "coordonnees_gps": [47.3950525616, -1.14692474643]}, "geometry": {"type": "Point", "coordinates": [-1.14692474643, 47.3950525616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b54fa13b296558bba9de3699e39b7e33b4641806", "fields": {"nom_de_la_commune": "ST HILAIRE DE CHALEONS", "libell_d_acheminement": "ST HILAIRE DE CHALEONS", "code_postal": "44680", "coordonnees_gps": [47.1058819776, -1.85298461474], "code_commune_insee": "44164"}, "geometry": {"type": "Point", "coordinates": [-1.85298461474, 47.1058819776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f760f1a6ecbd2304df30bca868dd7716050b0628", "fields": {"nom_de_la_commune": "ST JOACHIM", "libell_d_acheminement": "ST JOACHIM", "code_postal": "44720", "coordonnees_gps": [47.3719152384, -2.24320653036], "code_commune_insee": "44168"}, "geometry": {"type": "Point", "coordinates": [-2.24320653036, 47.3719152384]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40109331d195361c54a78e81166d76a424a80ebf", "fields": {"nom_de_la_commune": "ST MARS DE COUTAIS", "libell_d_acheminement": "ST MARS DE COUTAIS", "code_postal": "44680", "coordonnees_gps": [47.1058819776, -1.85298461474], "code_commune_insee": "44178"}, "geometry": {"type": "Point", "coordinates": [-1.85298461474, 47.1058819776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51e461d318c64eec0595031af4f1af6287203213", "fields": {"code_postal": "44730", "code_commune_insee": "44182", "libell_d_acheminement": "ST MICHEL CHEF CHEF", "ligne_5": "THARON PLAGE", "nom_de_la_commune": "ST MICHEL CHEF CHEF", "coordonnees_gps": [47.1753240266, -2.12708707959]}, "geometry": {"type": "Point", "coordinates": [-2.12708707959, 47.1753240266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7ab8cebc0ac92dbd69b52a1250f20a92eb62e55", "fields": {"nom_de_la_commune": "ST NAZAIRE", "libell_d_acheminement": "ST NAZAIRE", "code_postal": "44600", "coordonnees_gps": [47.2802195147, -2.2511094831], "code_commune_insee": "44184"}, "geometry": {"type": "Point", "coordinates": [-2.2511094831, 47.2802195147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33ae05b912f9e81e6976eeb07580f31ee15cffb6", "fields": {"nom_de_la_commune": "ST PHILBERT DE GRAND LIEU", "libell_d_acheminement": "ST PHILBERT DE GRAND LIEU", "code_postal": "44310", "coordonnees_gps": [47.040945415, -1.64161948487], "code_commune_insee": "44188"}, "geometry": {"type": "Point", "coordinates": [-1.64161948487, 47.040945415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed153a76370ece668ac0bf8533a5fc44d98e7cd", "fields": {"nom_de_la_commune": "SAVENAY", "libell_d_acheminement": "SAVENAY", "code_postal": "44260", "coordonnees_gps": [47.3429940898, -1.93537477196], "code_commune_insee": "44195"}, "geometry": {"type": "Point", "coordinates": [-1.93537477196, 47.3429940898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00b0108de49ed65070ef89a05e9e8c5f10fbaf9", "fields": {"nom_de_la_commune": "LES SORINIERES", "libell_d_acheminement": "LES SORINIERES", "code_postal": "44840", "coordonnees_gps": [47.1416858299, -1.5195061965], "code_commune_insee": "44198"}, "geometry": {"type": "Point", "coordinates": [-1.5195061965, 47.1416858299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d06a0ae2a68afd06c2e4815a78d971a088fc7a3", "fields": {"nom_de_la_commune": "SUCE SUR ERDRE", "libell_d_acheminement": "SUCE SUR ERDRE", "code_postal": "44240", "coordonnees_gps": [47.3309393698, -1.53749152159], "code_commune_insee": "44201"}, "geometry": {"type": "Point", "coordinates": [-1.53749152159, 47.3309393698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "777a219bb0879ee786d43f056eeb0e0b3f737d26", "fields": {"nom_de_la_commune": "THOUARE SUR LOIRE", "libell_d_acheminement": "THOUARE SUR LOIRE", "code_postal": "44470", "coordonnees_gps": [47.3000422915, -1.4503189654], "code_commune_insee": "44204"}, "geometry": {"type": "Point", "coordinates": [-1.4503189654, 47.3000422915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6bda1b2a81d542f16eb4442137255d4f46af9a6", "fields": {"nom_de_la_commune": "TREFFIEUX", "libell_d_acheminement": "TREFFIEUX", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44208"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f33d581a29ee71b84e831524caddf466b45ffeb7", "fields": {"code_postal": "44370", "code_commune_insee": "44213", "libell_d_acheminement": "LOIREAUXENCE", "ligne_5": "BELLIGNE", "nom_de_la_commune": "LOIREAUXENCE", "coordonnees_gps": [47.4023701755, -1.01236308659]}, "geometry": {"type": "Point", "coordinates": [-1.01236308659, 47.4023701755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142937775801cf06aa13e777a5bde8e83f1c8554", "fields": {"code_postal": "44370", "code_commune_insee": "44213", "libell_d_acheminement": "LOIREAUXENCE", "ligne_5": "LA ROUXIERE", "nom_de_la_commune": "LOIREAUXENCE", "coordonnees_gps": [47.4023701755, -1.01236308659]}, "geometry": {"type": "Point", "coordinates": [-1.01236308659, 47.4023701755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79f606c3c3aef321da0339df97ed30f009c00cda", "fields": {"code_postal": "44370", "code_commune_insee": "44213", "libell_d_acheminement": "LOIREAUXENCE", "ligne_5": "VARADES", "nom_de_la_commune": "LOIREAUXENCE", "coordonnees_gps": [47.4023701755, -1.01236308659]}, "geometry": {"type": "Point", "coordinates": [-1.01236308659, 47.4023701755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a0d4388e44fbce5278ecf07588a72ef911317b", "fields": {"code_postal": "44120", "code_commune_insee": "44215", "libell_d_acheminement": "VERTOU", "ligne_5": "BEAUTOUR", "nom_de_la_commune": "VERTOU", "coordonnees_gps": [47.1603173471, -1.47089983101]}, "geometry": {"type": "Point", "coordinates": [-1.47089983101, 47.1603173471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ed5b2aceaaa440785941bd63be3bcca62a4e4e", "fields": {"nom_de_la_commune": "VRITZ", "libell_d_acheminement": "VRITZ", "code_postal": "44540", "coordonnees_gps": [47.5525167785, -1.15686679562], "code_commune_insee": "44219"}, "geometry": {"type": "Point", "coordinates": [-1.15686679562, 47.5525167785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891461703d25a7e899a7d7a52d91d54c18c95542", "fields": {"nom_de_la_commune": "GENESTON", "libell_d_acheminement": "GENESTON", "code_postal": "44140", "coordonnees_gps": [47.0608389163, -1.45654054931], "code_commune_insee": "44223"}, "geometry": {"type": "Point", "coordinates": [-1.45654054931, 47.0608389163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e251a0a3a7f3a28efa2c678fd501273fd7c395", "fields": {"nom_de_la_commune": "ATTRAY", "libell_d_acheminement": "ATTRAY", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45011"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5850b001042d3e68709fbeed754517478286e520", "fields": {"nom_de_la_commune": "AUTRY LE CHATEL", "libell_d_acheminement": "AUTRY LE CHATEL", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45016"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18c8eb97fdc49cc7443530e6442c44bf3e0262b7", "fields": {"nom_de_la_commune": "AUXY", "libell_d_acheminement": "AUXY", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45018"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4daf5796ff81bd01b886f3ac8dc65c7ba490655", "fields": {"nom_de_la_commune": "BOIGNY SUR BIONNE", "libell_d_acheminement": "BOIGNY SUR BIONNE", "code_postal": "45760", "coordonnees_gps": [47.9504956092, 2.02989730454], "code_commune_insee": "45034"}, "geometry": {"type": "Point", "coordinates": [2.02989730454, 47.9504956092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "244e22008577606291465b84c13f147fcad9525b", "fields": {"nom_de_la_commune": "LES BORDES", "libell_d_acheminement": "LES BORDES", "code_postal": "45460", "coordonnees_gps": [47.835810766, 2.38912953908], "code_commune_insee": "45042"}, "geometry": {"type": "Point", "coordinates": [2.38912953908, 47.835810766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf15bf958b68d1a03fab46365b9592462abe4df1", "fields": {"nom_de_la_commune": "BOU", "libell_d_acheminement": "BOU", "code_postal": "45430", "coordonnees_gps": [47.8949996525, 2.04744187127], "code_commune_insee": "45043"}, "geometry": {"type": "Point", "coordinates": [2.04744187127, 47.8949996525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9df8b10d41dd8fa3bf7f8ed92247b0d077129a1", "fields": {"nom_de_la_commune": "BOUGY LEZ NEUVILLE", "libell_d_acheminement": "BOUGY LEZ NEUVILLE", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45044"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5e92e64567de8b52bcd12fc206d13adbc45e56", "fields": {"nom_de_la_commune": "BOUZY LA FORET", "libell_d_acheminement": "BOUZY LA FORET", "code_postal": "45460", "coordonnees_gps": [47.835810766, 2.38912953908], "code_commune_insee": "45049"}, "geometry": {"type": "Point", "coordinates": [2.38912953908, 47.835810766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd7ea3f45b8ebcde9ca00ebccf0e32baa4cc354", "fields": {"nom_de_la_commune": "BROMEILLES", "libell_d_acheminement": "BROMEILLES", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45056"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a75d8f0b3a1232798111178912d7806b802c370", "fields": {"nom_de_la_commune": "CERDON", "libell_d_acheminement": "CERDON", "code_postal": "45620", "coordonnees_gps": [47.6434103501, 2.3340789354], "code_commune_insee": "45063"}, "geometry": {"type": "Point", "coordinates": [2.3340789354, 47.6434103501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda311db4b287bd0f92f80c3a401cf466bc94e12", "fields": {"nom_de_la_commune": "CHAILLY EN GATINAIS", "libell_d_acheminement": "CHAILLY EN GATINAIS", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45066"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e865bde6bb642e2c740d70a9b52708898aa8b4", "fields": {"nom_de_la_commune": "CHAMPOULET", "libell_d_acheminement": "CHAMPOULET", "code_postal": "45420", "coordonnees_gps": [47.6034837022, 2.88243398662], "code_commune_insee": "45070"}, "geometry": {"type": "Point", "coordinates": [2.88243398662, 47.6034837022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edeb1576c6367577e0d0d8d502a4987c8aa6c79f", "fields": {"nom_de_la_commune": "CHARMONT EN BEAUCE", "libell_d_acheminement": "CHARMONT EN BEAUCE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45080"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4e0d41a4c8e497091a35f8507b367f42013f852", "fields": {"nom_de_la_commune": "CHAUSSY", "libell_d_acheminement": "CHAUSSY", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45088"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0f749dd091852a9ede80d9b0d41386b82d8474", "fields": {"nom_de_la_commune": "CHEVILLY", "libell_d_acheminement": "CHEVILLY", "code_postal": "45520", "coordonnees_gps": [48.0106833156, 1.86938159284], "code_commune_insee": "45093"}, "geometry": {"type": "Point", "coordinates": [1.86938159284, 48.0106833156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f193c4732298508f320fd2b5ed8bb6da645ef021", "fields": {"nom_de_la_commune": "CHILLEURS AUX BOIS", "libell_d_acheminement": "CHILLEURS AUX BOIS", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45095"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f442fdb1ae32f6898312baa3c9f3bcf4e4b1ab8", "fields": {"nom_de_la_commune": "LES CHOUX", "libell_d_acheminement": "LES CHOUX", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45096"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89219199e01acf9708ff33edb5295bae85ec5a3c", "fields": {"nom_de_la_commune": "CHUELLES", "libell_d_acheminement": "CHUELLES", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45097"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c77baeadf960c584fbbdf9fff86bb30fb0d5140", "fields": {"nom_de_la_commune": "DAMMARIE SUR LOING", "libell_d_acheminement": "DAMMARIE SUR LOING", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45121"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3822dd4acc6c90b35270dbbc54a8c1562752044", "fields": {"nom_de_la_commune": "EPIEDS EN BEAUCE", "libell_d_acheminement": "EPIEDS EN BEAUCE", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45134"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd5c5cf8a7830811f31be3ca482020ad944cc117", "fields": {"nom_de_la_commune": "ESCRIGNELLES", "libell_d_acheminement": "ESCRIGNELLES", "code_postal": "45250", "coordonnees_gps": [47.6666483755, 2.7989341243], "code_commune_insee": "45138"}, "geometry": {"type": "Point", "coordinates": [2.7989341243, 47.6666483755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4499f302008bbb777d09226ac658a6d4314f1fa0", "fields": {"nom_de_la_commune": "FEINS EN GATINAIS", "libell_d_acheminement": "FEINS EN GATINAIS", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45143"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2882620936cd9287c60423148799731dfe5d9c65", "fields": {"nom_de_la_commune": "GRENEVILLE EN BEAUCE", "libell_d_acheminement": "GRENEVILLE EN BEAUCE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45160"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b5ff1cb11b297a922d524d3557d983a6f936bd", "fields": {"nom_de_la_commune": "INGRANNES", "libell_d_acheminement": "INGRANNES", "code_postal": "45450", "coordonnees_gps": [47.9620977232, 2.17370967023], "code_commune_insee": "45168"}, "geometry": {"type": "Point", "coordinates": [2.17370967023, 47.9620977232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a68ab6a3a42eae20f72997809b84ef304329354", "fields": {"nom_de_la_commune": "JURANVILLE", "libell_d_acheminement": "JURANVILLE", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45176"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36c49e053ae21a5bcd12a36c67133b93224dde2f", "fields": {"nom_de_la_commune": "LADON", "libell_d_acheminement": "LADON", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45178"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e79b4f46a415e0dcd94f23684688aedef318866", "fields": {"nom_de_la_commune": "LEOUVILLE", "libell_d_acheminement": "LEOUVILLE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45181"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae4bd7b20823ce5885b870b8b194b528ee215589", "fields": {"nom_de_la_commune": "LIGNY LE RIBAULT", "libell_d_acheminement": "LIGNY LE RIBAULT", "code_postal": "45240", "coordonnees_gps": [47.7166815663, 1.97527540747], "code_commune_insee": "45182"}, "geometry": {"type": "Point", "coordinates": [1.97527540747, 47.7166815663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1d31cd55ff4cbeae7f47c21a3db74f312a0887a", "fields": {"nom_de_la_commune": "LOUZOUER", "libell_d_acheminement": "LOUZOUER", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45189"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1576635c0707bd0eaf32cc7ce2bbb415ae60f94", "fields": {"code_postal": "45300", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "MANCHECOURT", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.1872746027, 2.25373917421]}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb7593778493aee57b2fb76cbc00f7a9cac75881", "fields": {"code_postal": "45330", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "LABROSSE", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.2827964198, 2.40158740828]}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e499e07cce7a2c0f873e1f65a292b6ee8d7181ad", "fields": {"code_postal": "45330", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "ORVEAU BELLESAUVE", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.2827964198, 2.40158740828]}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe325f4399d01ee0a234552400954d84d1531382", "fields": {"nom_de_la_commune": "MARSAINVILLIERS", "libell_d_acheminement": "MARSAINVILLIERS", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45198"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a040d2c32232a4d29467d9c371d183e25d44f1ff", "fields": {"nom_de_la_commune": "MONTARGIS", "libell_d_acheminement": "MONTARGIS", "code_postal": "45200", "coordonnees_gps": [48.0036568049, 2.78095949035], "code_commune_insee": "45208"}, "geometry": {"type": "Point", "coordinates": [2.78095949035, 48.0036568049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a59556a7f569384377236b652dfc5f819cea0c", "fields": {"nom_de_la_commune": "MONTLIARD", "libell_d_acheminement": "MONTLIARD", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45215"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43f196d3e7acc9db7656089872d05cb991e5ddc5", "fields": {"nom_de_la_commune": "MORVILLE EN BEAUCE", "libell_d_acheminement": "MORVILLE EN BEAUCE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45217"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af77bb9fc4ac240725ac570a94723520369924ca", "fields": {"nom_de_la_commune": "NARGIS", "libell_d_acheminement": "NARGIS", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45222"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd8a0d163a58d65f41047ecdcc81c3d053e47a6", "fields": {"nom_de_la_commune": "NEUVILLE AUX BOIS", "libell_d_acheminement": "NEUVILLE AUX BOIS", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45224"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36426793a864d4b87bc43104c20125d13a708fe2", "fields": {"nom_de_la_commune": "ONDREVILLE SUR ESSONNE", "libell_d_acheminement": "ONDREVILLE SUR ESSONNE", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45233"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a98519c113b98e7e7ece2658705516f0e4790c", "fields": {"nom_de_la_commune": "ORLEANS", "libell_d_acheminement": "ORLEANS", "code_postal": "45100", "coordonnees_gps": [47.8826248233, 1.91635582903], "code_commune_insee": "45234"}, "geometry": {"type": "Point", "coordinates": [1.91635582903, 47.8826248233]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48368e79afaa680bb6143d129681d32e4bebb82a", "fields": {"nom_de_la_commune": "PAUCOURT", "libell_d_acheminement": "PAUCOURT", "code_postal": "45200", "coordonnees_gps": [48.0036568049, 2.78095949035], "code_commune_insee": "45249"}, "geometry": {"type": "Point", "coordinates": [2.78095949035, 48.0036568049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbb4860c90d87b6454e7c229bd902745c35577b", "fields": {"nom_de_la_commune": "PIERREFITTE ES BOIS", "libell_d_acheminement": "PIERREFITTE ES BOIS", "code_postal": "45360", "coordonnees_gps": [47.5591036835, 2.69824746137], "code_commune_insee": "45251"}, "geometry": {"type": "Point", "coordinates": [2.69824746137, 47.5591036835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "892470ddfb92be45341c9e484c8357d42e64eb8e", "fields": {"code_postal": "45300", "code_commune_insee": "45253", "libell_d_acheminement": "PITHIVIERS LE VIEIL", "ligne_5": "BOUZONVILLE EN BEAUCE", "nom_de_la_commune": "PITHIVIERS LE VIEIL", "coordonnees_gps": [48.1872746027, 2.25373917421]}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f69c47c42e974921a1b2bfe744ebfc05926ab899", "fields": {"nom_de_la_commune": "PRESNOY", "libell_d_acheminement": "PRESNOY", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45256"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b29f4a6c2472eea244bd8ddae892395b83dbda2", "fields": {"nom_de_la_commune": "ROUVRAY STE CROIX", "libell_d_acheminement": "ROUVRAY STE CROIX", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45262"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00929c8da327aaa5c54131fe2a48385f1dfa8042", "fields": {"nom_de_la_commune": "ROZIERES EN BEAUCE", "libell_d_acheminement": "ROZIERES EN BEAUCE", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45264"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843c7d4f444c919ae33dd3d32d3ecdfcb9b1cf87", "fields": {"nom_de_la_commune": "ROZOY LE VIEIL", "libell_d_acheminement": "ROZOY LE VIEIL", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45265"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2befeafb33b843b15ad11092e92b85ef9bea6f7", "fields": {"nom_de_la_commune": "ST BENOIT SUR LOIRE", "libell_d_acheminement": "ST BENOIT SUR LOIRE", "code_postal": "45730", "coordonnees_gps": [47.808760292, 2.31707246728], "code_commune_insee": "45270"}, "geometry": {"type": "Point", "coordinates": [2.31707246728, 47.808760292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e8d00c2e922b8c1b0e8f84a4f5d70005fbe115e", "fields": {"nom_de_la_commune": "ST FLORENT", "libell_d_acheminement": "ST FLORENT", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45277"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "266c9e120e439022266087d1c192f0b91f1f9c9e", "fields": {"nom_de_la_commune": "ST GERMAIN DES PRES", "libell_d_acheminement": "ST GERMAIN DES PRES", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45279"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dd317555a4a94d8aff99517cf188f4c0c15d6dd", "fields": {"nom_de_la_commune": "ST HILAIRE LES ANDRESIS", "libell_d_acheminement": "ST HILAIRE LES ANDRESIS", "code_postal": "45320", "coordonnees_gps": [48.0463130644, 3.01780722216], "code_commune_insee": "45281"}, "geometry": {"type": "Point", "coordinates": [3.01780722216, 48.0463130644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea30f5a810b28ae470f9d16950bd002252421fe1", "fields": {"nom_de_la_commune": "ST HILAIRE SUR PUISEAUX", "libell_d_acheminement": "ST HILAIRE SUR PUISEAUX", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45283"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb451b6fe7605436764c3f7791fd171b52ab5a2", "fields": {"nom_de_la_commune": "ST JEAN DE LA RUELLE", "libell_d_acheminement": "ST JEAN DE LA RUELLE", "code_postal": "45140", "coordonnees_gps": [47.9387970361, 1.79888602843], "code_commune_insee": "45285"}, "geometry": {"type": "Point", "coordinates": [1.79888602843, 47.9387970361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a63fbeb4284da193b33e54797ea5f16b8123dc", "fields": {"nom_de_la_commune": "ST JEAN LE BLANC", "libell_d_acheminement": "ST JEAN LE BLANC", "code_postal": "45650", "coordonnees_gps": [47.8831183185, 1.93332847011], "code_commune_insee": "45286"}, "geometry": {"type": "Point", "coordinates": [1.93332847011, 47.8831183185]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "899c87ebd49c8f0d2e2e9810eddcb965cbeaf299", "fields": {"nom_de_la_commune": "ST LOUP DE GONOIS", "libell_d_acheminement": "ST LOUP DE GONOIS", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45287"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad60bc7343d4aa512aaba125a0545ddd55fda6a", "fields": {"nom_de_la_commune": "ST LYE LA FORET", "libell_d_acheminement": "ST LYE LA FORET", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45289"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eeb54cb1fe5045326615aafce672870311c3026", "fields": {"nom_de_la_commune": "ST MARTIN SUR OCRE", "libell_d_acheminement": "ST MARTIN SUR OCRE", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45291"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b38a43d4fcefc5ce158850ae8325405c657f94", "fields": {"nom_de_la_commune": "LA SELLE SUR LE BIED", "libell_d_acheminement": "LA SELLE SUR LE BIED", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45307"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dfadcf725aeb174028cb2f797fc2fedd86de7a3", "fields": {"nom_de_la_commune": "SENNELY", "libell_d_acheminement": "SENNELY", "code_postal": "45240", "coordonnees_gps": [47.7166815663, 1.97527540747], "code_commune_insee": "45309"}, "geometry": {"type": "Point", "coordinates": [1.97527540747, 47.7166815663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e58c006833ba6746be6a3a9a6ce4cb30416f93f", "fields": {"nom_de_la_commune": "TAVERS", "libell_d_acheminement": "TAVERS", "code_postal": "45190", "coordonnees_gps": [47.8004436022, 1.60034648518], "code_commune_insee": "45317"}, "geometry": {"type": "Point", "coordinates": [1.60034648518, 47.8004436022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "279d5683cdced2bbac393166c427d40975555b2e", "fields": {"nom_de_la_commune": "TRIGUERES", "libell_d_acheminement": "TRIGUERES", "code_postal": "45220", "coordonnees_gps": [47.9445707894, 2.94063509683], "code_commune_insee": "45329"}, "geometry": {"type": "Point", "coordinates": [2.94063509683, 47.9445707894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d4fc1b7627360c31623bfcf63526fe496243cae", "fields": {"nom_de_la_commune": "VILLAMBLAIN", "libell_d_acheminement": "VILLAMBLAIN", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45337"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a8fc00799c5f7febaa06462e63b251cab0007d", "fields": {"nom_de_la_commune": "LA CADIERE ET CAMBO", "libell_d_acheminement": "LA CADIERE ET CAMBO", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30058"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba9cdb10f41b77a11ae7348b7f45f24432af4b32", "fields": {"nom_de_la_commune": "LA CALMETTE", "libell_d_acheminement": "LA CALMETTE", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30061"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64afa7afaa254e66d702c5a5bff34c451489502b", "fields": {"nom_de_la_commune": "CALVISSON", "libell_d_acheminement": "CALVISSON", "code_postal": "30420", "coordonnees_gps": [43.7877220442, 4.18874527572], "code_commune_insee": "30062"}, "geometry": {"type": "Point", "coordinates": [4.18874527572, 43.7877220442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cce49e4d094797f5ccd3f556cabb202b119e8ca", "fields": {"nom_de_la_commune": "CARDET", "libell_d_acheminement": "CARDET", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30068"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c010e52c453e1a6863ec52ccb21444a14c1823c0", "fields": {"nom_de_la_commune": "CASTILLON DU GARD", "libell_d_acheminement": "CASTILLON DU GARD", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30073"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712adc70c9ab74be648571105fe8115828109dd8", "fields": {"nom_de_la_commune": "CAVEIRAC", "libell_d_acheminement": "CAVEIRAC", "code_postal": "30820", "coordonnees_gps": [43.8345078656, 4.26758675229], "code_commune_insee": "30075"}, "geometry": {"type": "Point", "coordinates": [4.26758675229, 43.8345078656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99a450daac36dea8a47aaf7b75fb7e75312bda18", "fields": {"nom_de_la_commune": "CLARENSAC", "libell_d_acheminement": "CLARENSAC", "code_postal": "30870", "coordonnees_gps": [43.8342757187, 4.20744229546], "code_commune_insee": "30082"}, "geometry": {"type": "Point", "coordinates": [4.20744229546, 43.8342757187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050f7e446b8d27b23ebc03e219af28a8c018a807", "fields": {"nom_de_la_commune": "COMBAS", "libell_d_acheminement": "COMBAS", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30088"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f01fe3aebf021fe06370fdf2b40746afe706e7c", "fields": {"nom_de_la_commune": "DEAUX", "libell_d_acheminement": "DEAUX", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30101"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5b6a666730f3da659dd4c04129c08847747fec", "fields": {"nom_de_la_commune": "L ESTRECHURE", "libell_d_acheminement": "L ESTRECHURE", "code_postal": "30124", "coordonnees_gps": [44.0999030236, 3.79947600086], "code_commune_insee": "30108"}, "geometry": {"type": "Point", "coordinates": [3.79947600086, 44.0999030236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79d7bab7abd494fcf7a4247db2c8834d7836e55f", "fields": {"nom_de_la_commune": "FOURNES", "libell_d_acheminement": "FOURNES", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30116"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bc08f9a4d6a75c5aad5e7d36adc55c4739e355c", "fields": {"nom_de_la_commune": "FOURQUES", "libell_d_acheminement": "FOURQUES", "code_postal": "30300", "coordonnees_gps": [43.780193328, 4.58229884673], "code_commune_insee": "30117"}, "geometry": {"type": "Point", "coordinates": [4.58229884673, 43.780193328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1bd389391dc6ff463728b1d49e1de65216e202", "fields": {"nom_de_la_commune": "GARRIGUES STE EULALIE", "libell_d_acheminement": "GARRIGUES STE EULALIE", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30126"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6388666c197bad5696ae2066113a5f4cd7faaa3e", "fields": {"nom_de_la_commune": "GENERAC", "libell_d_acheminement": "GENERAC", "code_postal": "30510", "coordonnees_gps": [43.7239855564, 4.35877744622], "code_commune_insee": "30128"}, "geometry": {"type": "Point", "coordinates": [4.35877744622, 43.7239855564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad9ebd37b09da7408e2ca8c7d1993e8fcf848c9", "fields": {"nom_de_la_commune": "LA GRAND COMBE", "libell_d_acheminement": "LA GRAND COMBE", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30132"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06306b12f126bea60f58047c9e3f82a73265ad8f", "fields": {"nom_de_la_commune": "LECQUES", "libell_d_acheminement": "LECQUES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30144"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a608ff3f21c31cb34bf9772406b000055c34ab", "fields": {"nom_de_la_commune": "LEDIGNAN", "libell_d_acheminement": "LEDIGNAN", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30146"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44bc0b862d972cdee5f5ce7c94248ae7c06f8898", "fields": {"nom_de_la_commune": "LEZAN", "libell_d_acheminement": "LEZAN", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30147"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174e77464807fb1342159c84902593f68797f1bf", "fields": {"nom_de_la_commune": "LIOUC", "libell_d_acheminement": "LIOUC", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30148"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25f354eb203ec7a02abadcaf6de1abe2d2f7f7d6", "fields": {"nom_de_la_commune": "LES MAGES", "libell_d_acheminement": "LES MAGES", "code_postal": "30960", "coordonnees_gps": [44.2386422448, 4.12848944185], "code_commune_insee": "30152"}, "geometry": {"type": "Point", "coordinates": [4.12848944185, 44.2386422448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b2fa058afe698018b0f44ed9cf3ceebc8c55d4b", "fields": {"nom_de_la_commune": "MARGUERITTES", "libell_d_acheminement": "MARGUERITTES", "code_postal": "30320", "coordonnees_gps": [43.8770383531, 4.45722283055], "code_commune_insee": "30156"}, "geometry": {"type": "Point", "coordinates": [4.45722283055, 43.8770383531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9685e8012b796a13dda80f44a40b5dec0b5ab8c0", "fields": {"nom_de_la_commune": "MAURESSARGUES", "libell_d_acheminement": "MAURESSARGUES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30163"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bced85f6b5cce3569696ea63429906a3e451823", "fields": {"nom_de_la_commune": "MEJANNES LES ALES", "libell_d_acheminement": "MEJANNES LES ALES", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30165"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d75148280f95d28b89598383742ccbcff1b0063", "fields": {"nom_de_la_commune": "MONTDARDIER", "libell_d_acheminement": "MONTDARDIER", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30176"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9062dbb5eee6c10134069038efd911b8e56be2b8", "fields": {"nom_de_la_commune": "MONTIGNARGUES", "libell_d_acheminement": "MONTIGNARGUES", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30180"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1993e43776a10d1811839f5ca911eafc74cec653", "fields": {"nom_de_la_commune": "NAVACELLES", "libell_d_acheminement": "NAVACELLES", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30187"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d85bf7b6792b61466f1f89b57082ca558993551", "fields": {"nom_de_la_commune": "NERS", "libell_d_acheminement": "NERS", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30188"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "710eef50fbcc5be0d2d6e99f38a9553d9712b35d", "fields": {"nom_de_la_commune": "ORSAN", "libell_d_acheminement": "ORSAN", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30191"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e459403ac8b97d1bd9494ff4352d12c81cf36f25", "fields": {"nom_de_la_commune": "POTELIERES", "libell_d_acheminement": "POTELIERES", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30204"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5734b16d8813f3dbed8eaceb50856929979f4ca", "fields": {"nom_de_la_commune": "PUJAUT", "libell_d_acheminement": "PUJAUT", "code_postal": "30131", "coordonnees_gps": [43.9996703515, 4.76494310963], "code_commune_insee": "30209"}, "geometry": {"type": "Point", "coordinates": [4.76494310963, 43.9996703515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6fe99303eaa239a6242a566c96bb3a2da2bf22c", "fields": {"nom_de_la_commune": "ST ALEXANDRE", "libell_d_acheminement": "ST ALEXANDRE", "code_postal": "30130", "coordonnees_gps": [44.2445980567, 4.61246226346], "code_commune_insee": "30226"}, "geometry": {"type": "Point", "coordinates": [4.61246226346, 44.2445980567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893dcc7e8a43fd35b1bde658ca226d9643706b17", "fields": {"nom_de_la_commune": "ST AMBROIX", "libell_d_acheminement": "ST AMBROIX", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30227"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9271f9e5339b1bf6bbf97662906b998c2815979", "fields": {"nom_de_la_commune": "ST ANDRE DE ROQUEPERTUIS", "libell_d_acheminement": "ST ANDRE DE ROQUEPERTUIS", "code_postal": "30630", "coordonnees_gps": [44.2160658373, 4.44619382418], "code_commune_insee": "30230"}, "geometry": {"type": "Point", "coordinates": [4.44619382418, 44.2160658373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07ec4e6186d67ecbeb710f2b87f20f18cedcebb", "fields": {"nom_de_la_commune": "ST ANDRE DE VALBORGNE", "libell_d_acheminement": "ST ANDRE DE VALBORGNE", "code_postal": "30940", "coordonnees_gps": [44.1475370042, 3.68508048992], "code_commune_insee": "30231"}, "geometry": {"type": "Point", "coordinates": [3.68508048992, 44.1475370042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3138177699f93a47e81d973a09dbeb71f1f6a66", "fields": {"nom_de_la_commune": "ST BONNET DU GARD", "libell_d_acheminement": "ST BONNET DU GARD", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30235"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465d5a7094b55bc7158b1101a8ada439fe300958", "fields": {"nom_de_la_commune": "ST CESAIRE DE GAUZIGNAN", "libell_d_acheminement": "ST CESAIRE DE GAUZIGNAN", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30240"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8bbca7cbbe915879fec999e0b5353c5fcdaa37b", "fields": {"nom_de_la_commune": "ST ETIENNE DES SORTS", "libell_d_acheminement": "ST ETIENNE DES SORTS", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30251"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999992a167c2bc2f67486351061a127157f9e332", "fields": {"nom_de_la_commune": "ST FELIX DE PALLIERES", "libell_d_acheminement": "ST FELIX DE PALLIERES", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30252"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6e37e4930cef7d673eec85ef8fe809e901f21a", "fields": {"nom_de_la_commune": "ST HILAIRE DE BRETHMAS", "libell_d_acheminement": "ST HILAIRE DE BRETHMAS", "code_postal": "30560", "coordonnees_gps": [44.0919758672, 4.12323888329], "code_commune_insee": "30259"}, "geometry": {"type": "Point", "coordinates": [4.12323888329, 44.0919758672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43ff072530689a84e052c7c1711addc5fe43d4f4", "fields": {"nom_de_la_commune": "ST HIPPOLYTE DE CATON", "libell_d_acheminement": "ST HIPPOLYTE DE CATON", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30261"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9124967a4880154f102a6e2c1c63ccef12aea8fc", "fields": {"nom_de_la_commune": "ST JEAN DE CEYRARGUES", "libell_d_acheminement": "ST JEAN DE CEYRARGUES", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30264"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41ae1ee8a03714d162f144913d1cd3fda4f4929", "fields": {"nom_de_la_commune": "ST JEAN DE MARUEJOLS ET AVEJAN", "libell_d_acheminement": "ST JEAN DE MARUEJOLS ET AVEJAN", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30266"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d1dfa79fb2523f5823e54e43cce2f69780a8b7", "fields": {"nom_de_la_commune": "ST JEAN DE SERRES", "libell_d_acheminement": "ST JEAN DE SERRES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30267"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22011802b3d4bece9e136f4514b188332e55ad3f", "fields": {"nom_de_la_commune": "ST JEAN DU GARD", "libell_d_acheminement": "ST JEAN DU GARD", "code_postal": "30270", "coordonnees_gps": [44.1068662238, 3.87766205266], "code_commune_insee": "30269"}, "geometry": {"type": "Point", "coordinates": [3.87766205266, 44.1068662238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7dc0d9f594fff2ad205ed039048fa671f740bb3", "fields": {"nom_de_la_commune": "ST JULIEN DE LA NEF", "libell_d_acheminement": "ST JULIEN DE LA NEF", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30272"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6403bf5fb3439b97ece0a030b1ec37c1fadd5e8b", "fields": {"nom_de_la_commune": "ST LAURENT DES ARBRES", "libell_d_acheminement": "ST LAURENT DES ARBRES", "code_postal": "30126", "coordonnees_gps": [44.0300936861, 4.6901493854], "code_commune_insee": "30278"}, "geometry": {"type": "Point", "coordinates": [4.6901493854, 44.0300936861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb582f6982ada330a617abb8bc81ff53091a590c", "fields": {"nom_de_la_commune": "ST LAURENT LA VERNEDE", "libell_d_acheminement": "ST LAURENT LA VERNEDE", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30279"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7af0c07df28e1e5699f8fca366eda833e654dfba", "fields": {"nom_de_la_commune": "ST MARTIAL", "libell_d_acheminement": "ST MARTIAL", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30283"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eb47c3da06695d221cdfb02f9a5886ec5f14e24", "fields": {"nom_de_la_commune": "ST MARTIN DE VALGALGUES", "libell_d_acheminement": "ST MARTIN DE VALGALGUES", "code_postal": "30520", "coordonnees_gps": [44.1658639136, 4.07436260956], "code_commune_insee": "30284"}, "geometry": {"type": "Point", "coordinates": [4.07436260956, 44.1658639136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be9a7805c68a9033887bd4f208ac2bb682001cd4", "fields": {"nom_de_la_commune": "ST PAULET DE CAISSON", "libell_d_acheminement": "ST PAULET DE CAISSON", "code_postal": "30130", "coordonnees_gps": [44.2445980567, 4.61246226346], "code_commune_insee": "30290"}, "geometry": {"type": "Point", "coordinates": [4.61246226346, 44.2445980567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc14aef7bff735b13165aeeb5a65315a50027cf7", "fields": {"nom_de_la_commune": "ST PRIVAT DE CHAMPCLOS", "libell_d_acheminement": "ST PRIVAT DE CHAMPCLOS", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30293"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c5da72dc47fb0ae96b42ff530434cb235527ac", "fields": {"nom_de_la_commune": "ST PRIVAT DES VIEUX", "libell_d_acheminement": "ST PRIVAT DES VIEUX", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30294"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4938d25b931a95d4f9448c11f0c0693cfa8ab5a3", "fields": {"nom_de_la_commune": "ST ROMAN DE CODIERES", "libell_d_acheminement": "ST ROMAN DE CODIERES", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30296"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d617bd785e8319d6b3e7a9671606bf1388117740", "fields": {"nom_de_la_commune": "ST SEBASTIEN D AIGREFEUILLE", "libell_d_acheminement": "ST SEBASTIEN D AIGREFEUILLE", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30298"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d0fd6e92cb4cb7cb7018a2844a2298769aac7ea", "fields": {"nom_de_la_commune": "ST VICTOR DES OULES", "libell_d_acheminement": "ST VICTOR DES OULES", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30301"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6fca0c3d6d09afc7891e7a9ed9c30974d34e67", "fields": {"nom_de_la_commune": "SALINDRES", "libell_d_acheminement": "SALINDRES", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30305"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a0134f5b205028c4155b0602fb4c036ab5a3f84", "fields": {"nom_de_la_commune": "SAUVETERRE", "libell_d_acheminement": "SAUVETERRE", "code_postal": "30150", "coordonnees_gps": [44.0420660293, 4.76432610967], "code_commune_insee": "30312"}, "geometry": {"type": "Point", "coordinates": [4.76432610967, 44.0420660293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eeffb52df31a541ff0b4dae062c717c91e26c91", "fields": {"nom_de_la_commune": "SAVIGNARGUES", "libell_d_acheminement": "SAVIGNARGUES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30314"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479573fd9d48945398a52537225227d0a936e65e", "fields": {"nom_de_la_commune": "SOUDORGUES", "libell_d_acheminement": "SOUDORGUES", "code_postal": "30460", "coordonnees_gps": [44.0515498157, 3.8329499699], "code_commune_insee": "30322"}, "geometry": {"type": "Point", "coordinates": [3.8329499699, 44.0515498157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71325d0cfa110300bfe94c588d24f21d6c5e075", "fields": {"nom_de_la_commune": "TAVEL", "libell_d_acheminement": "TAVEL", "code_postal": "30126", "coordonnees_gps": [44.0300936861, 4.6901493854], "code_commune_insee": "30326"}, "geometry": {"type": "Point", "coordinates": [4.6901493854, 44.0300936861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cff620fd567974cf8ec4f4e482585e122a6c3eed", "fields": {"nom_de_la_commune": "VAUVERT", "libell_d_acheminement": "VAUVERT", "code_postal": "30600", "coordonnees_gps": [43.6360200976, 4.3019597877], "code_commune_insee": "30341"}, "geometry": {"type": "Point", "coordinates": [4.3019597877, 43.6360200976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e724c95086dedbeb24f213e5d4ffe8b255547d76", "fields": {"nom_de_la_commune": "VENEJAN", "libell_d_acheminement": "VENEJAN", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30342"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd3f44acea5dd12771e690412e1b9afbea3dc23c", "fields": {"nom_de_la_commune": "VERS PONT DU GARD", "libell_d_acheminement": "VERS PONT DU GARD", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30346"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64876ce9d5c69c6cc2805b2e8af3000175e83222", "fields": {"nom_de_la_commune": "VESTRIC ET CANDIAC", "libell_d_acheminement": "VESTRIC ET CANDIAC", "code_postal": "30600", "coordonnees_gps": [43.6360200976, 4.3019597877], "code_commune_insee": "30347"}, "geometry": {"type": "Point", "coordinates": [4.3019597877, 43.6360200976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cd58443c5a584197a405f963db6dfbf286bce31", "fields": {"nom_de_la_commune": "MONTAGNAC", "libell_d_acheminement": "MONTAGNAC", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30354"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "788cec4470903d0cc72189eee7a13cacc576ca66", "fields": {"nom_de_la_commune": "AIGNES", "libell_d_acheminement": "AIGNES", "code_postal": "31550", "coordonnees_gps": [43.2904004473, 1.51499636485], "code_commune_insee": "31002"}, "geometry": {"type": "Point", "coordinates": [1.51499636485, 43.2904004473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "189dd6d0decee5cca2ae1243a453021f6f4a18e3", "fields": {"nom_de_la_commune": "AIGREFEUILLE", "libell_d_acheminement": "AIGREFEUILLE", "code_postal": "31280", "coordonnees_gps": [43.5930942522, 1.59070902866], "code_commune_insee": "31003"}, "geometry": {"type": "Point", "coordinates": [1.59070902866, 43.5930942522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65302c653c63b4d741e5050e1a2ce002040d2649", "fields": {"nom_de_la_commune": "ANAN", "libell_d_acheminement": "ANAN", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31008"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35a96cefbe0a178f19faccb011a45ca2241ca7c0", "fields": {"nom_de_la_commune": "ARBON", "libell_d_acheminement": "ARBON", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31012"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e089f29aaf6341ff67f8641cec6f18a753ba0d1b", "fields": {"nom_de_la_commune": "ARGUT DESSOUS", "libell_d_acheminement": "ARGUT DESSOUS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31015"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ad3bb7c8caec7e1b8cb0f2695b891e12d7c989", "fields": {"nom_de_la_commune": "ARLOS", "libell_d_acheminement": "ARLOS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31017"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75993568453610ca2b386e79a22302b5aa508aff", "fields": {"nom_de_la_commune": "AUCAMVILLE", "libell_d_acheminement": "AUCAMVILLE", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31022"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a7747a101757972fb21452e37d236e8e5af84e9", "fields": {"nom_de_la_commune": "AURAGNE", "libell_d_acheminement": "AURAGNE", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31024"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42978a2070c410d1c00e56110c10df9b2fa764f", "fields": {"nom_de_la_commune": "AURIAC SUR VENDINELLE", "libell_d_acheminement": "AURIAC SUR VENDINELLE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31026"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4c3265e2862949c3e77a9da2eda5dff3ed9da08", "fields": {"nom_de_la_commune": "AUSSEING", "libell_d_acheminement": "AUSSEING", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31030"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a012c98c8edea34b785e312caf0ea98e454756b", "fields": {"nom_de_la_commune": "AUZAS", "libell_d_acheminement": "AUZAS", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31034"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf0d4ca03f12f61635609fae1a9424a67b907e59", "fields": {"nom_de_la_commune": "AUZEVILLE TOLOSANE", "libell_d_acheminement": "AUZEVILLE TOLOSANE", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31035"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83a44dbade1329f306d653e131ce9069fce0976a", "fields": {"nom_de_la_commune": "BACHOS", "libell_d_acheminement": "BACHOS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31040"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d2c8a63f704d12f4554c4b837d51df738212350", "fields": {"code_postal": "31110", "code_commune_insee": "31042", "libell_d_acheminement": "BAGNERES DE LUCHON", "ligne_5": "SUPERBAGNERES", "nom_de_la_commune": "BAGNERES DE LUCHON", "coordonnees_gps": [42.78191254, 0.56401037404]}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f193be14de4fb3d4077a1704dad5bb52bda15e00", "fields": {"nom_de_la_commune": "BARBAZAN", "libell_d_acheminement": "BARBAZAN", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31045"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4626acf48ffce912075ee2fbb8115389c6b987e", "fields": {"nom_de_la_commune": "BEAUCHALOT", "libell_d_acheminement": "BEAUCHALOT", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31050"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a06d279d893efe4a91355e77c7b1df8a53bd0aaa", "fields": {"nom_de_la_commune": "BEAUTEVILLE", "libell_d_acheminement": "BEAUTEVILLE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31054"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "540184278b38a4be75ed195d961203eb836e5b89", "fields": {"nom_de_la_commune": "BELBEZE DE LAURAGAIS", "libell_d_acheminement": "BELBEZE DE LAURAGAIS", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31058"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b41f6bb7add754ea94323dff3ba7fd5c79076be", "fields": {"nom_de_la_commune": "BERAT", "libell_d_acheminement": "BERAT", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31065"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee79f132efaa399a171e5134157ba2da6a02860", "fields": {"nom_de_la_commune": "BONDIGOUX", "libell_d_acheminement": "BONDIGOUX", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31073"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76cb3c01247c737a38605b37ff1fac1e52686eb", "fields": {"nom_de_la_commune": "BONREPOS RIQUET", "libell_d_acheminement": "BONREPOS RIQUET", "code_postal": "31590", "coordonnees_gps": [43.6511913852, 1.64656678771], "code_commune_insee": "31074"}, "geometry": {"type": "Point", "coordinates": [1.64656678771, 43.6511913852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dddc5a3f38a142f23a108c6f33b5a9e4b7fc040a", "fields": {"nom_de_la_commune": "LE BORN", "libell_d_acheminement": "LE BORN", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31077"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416d6ebc10a35a176b2a366292afd4ad0b3432c2", "fields": {"nom_de_la_commune": "BOUSSAN", "libell_d_acheminement": "BOUSSAN", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31083"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "781a9cf5df9fb9cf20a4de7a4e11889cf78c526a", "fields": {"nom_de_la_commune": "BOUTX", "libell_d_acheminement": "BOUTX", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31085"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "510e7023da32930cb45952ebd32ce4a1bb6469d9", "fields": {"nom_de_la_commune": "BOUZIN", "libell_d_acheminement": "BOUZIN", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31086"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f2288be1d13ac4d2b78c06b0f113ab890dff9d", "fields": {"nom_de_la_commune": "BRUGUIERES", "libell_d_acheminement": "BRUGUIERES", "code_postal": "31150", "coordonnees_gps": [43.7088681187, 1.39635626813], "code_commune_insee": "31091"}, "geometry": {"type": "Point", "coordinates": [1.39635626813, 43.7088681187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e65c5a6a990596b10ce155fd7e2578ad66f3a0b7", "fields": {"nom_de_la_commune": "BURGALAYS", "libell_d_acheminement": "BURGALAYS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31092"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d46a5dc1f9817dc59e9f64bcc6dffa6d4d9960f0", "fields": {"nom_de_la_commune": "LE BURGAUD", "libell_d_acheminement": "LE BURGAUD", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31093"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4261688bf23fbffd73236d4e6e959eeb2e5ddfa6", "fields": {"nom_de_la_commune": "CALMONT", "libell_d_acheminement": "CALMONT", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31100"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e4a6e2507df97df4343a842560eee10358aefd8", "fields": {"nom_de_la_commune": "CARAMAN", "libell_d_acheminement": "CARAMAN", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31106"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d37f666c0c59677d3f816d94763a9793345e6a6", "fields": {"nom_de_la_commune": "CARBONNE", "libell_d_acheminement": "CARBONNE", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31107"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feb3cd5dc8f1351be1e01652aa686f1747010e46", "fields": {"nom_de_la_commune": "CASTAGNAC", "libell_d_acheminement": "CASTAGNAC", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31111"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "467a07a1edcddf8dd279b6a2410de3e6fd49e248", "fields": {"nom_de_la_commune": "CASTAGNEDE", "libell_d_acheminement": "CASTAGNEDE", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31112"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "108e7a9899a043b886ee19bd71331057d0eb0061", "fields": {"nom_de_la_commune": "CASTELMAUROU", "libell_d_acheminement": "CASTELMAUROU", "code_postal": "31180", "coordonnees_gps": [43.6864958094, 1.52214716429], "code_commune_insee": "31117"}, "geometry": {"type": "Point", "coordinates": [1.52214716429, 43.6864958094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b681221aa3b21915074e77d61e84f5ab1d49e906", "fields": {"nom_de_la_commune": "LE CASTERA", "libell_d_acheminement": "LE CASTERA", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31120"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03498a0f3bf4d5d51289cb62f618c6d7aad1b644", "fields": {"nom_de_la_commune": "CHAUME ET COURCHAMP", "libell_d_acheminement": "CHAUME ET COURCHAMP", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21158"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4abed004f080ed80a7731c66b2b7ac621ca6117", "fields": {"nom_de_la_commune": "LA CHAUME", "libell_d_acheminement": "LA CHAUME", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21159"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99818880a56a89b930ef623e4bd1dc502123a6f7", "fields": {"nom_de_la_commune": "CHAUX", "libell_d_acheminement": "CHAUX", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21162"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06cf88ba50416195d6db681272ab85a508ba960e", "fields": {"nom_de_la_commune": "CHENOVE", "libell_d_acheminement": "CHENOVE", "code_postal": "21300", "coordonnees_gps": [47.2927838988, 5.00536857546], "code_commune_insee": "21166"}, "geometry": {"type": "Point", "coordinates": [5.00536857546, 47.2927838988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e3f0510049ed14096b6cf50e4da35c280fa128", "fields": {"nom_de_la_commune": "CHEVIGNY EN VALIERE", "libell_d_acheminement": "CHEVIGNY EN VALIERE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21170"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49088c135e8ecb66f6ce472d191352a72c05ce95", "fields": {"nom_de_la_commune": "CHIVRES", "libell_d_acheminement": "CHIVRES", "code_postal": "21820", "coordonnees_gps": [46.9896528835, 5.08851380654], "code_commune_insee": "21172"}, "geometry": {"type": "Point", "coordinates": [5.08851380654, 46.9896528835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab00f8aeccb3c28ac96487497e51eae33b5b20c0", "fields": {"nom_de_la_commune": "CHOREY LES BEAUNE", "libell_d_acheminement": "CHOREY LES BEAUNE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21173"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c379d368274cb63f7f494f71f41a7d74484717cc", "fields": {"nom_de_la_commune": "CIREY LES PONTAILLER", "libell_d_acheminement": "CIREY LES PONTAILLER", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21175"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ad238fbc2841c2393cd57b3f7316c8cedf834b9", "fields": {"nom_de_la_commune": "CORGOLOIN", "libell_d_acheminement": "CORGOLOIN", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21194"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5512a6dc2221be89b6b223a727fa57add2de1c3", "fields": {"nom_de_la_commune": "CORPEAU", "libell_d_acheminement": "CORPEAU", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21196"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7511791f92c5b56ac43d7ae1bbdb3d2498e16a6e", "fields": {"nom_de_la_commune": "COUCHEY", "libell_d_acheminement": "COUCHEY", "code_postal": "21160", "coordonnees_gps": [47.2786553108, 4.96453888127], "code_commune_insee": "21200"}, "geometry": {"type": "Point", "coordinates": [4.96453888127, 47.2786553108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1562444077869e8cc1e0be4b11914972ffd385", "fields": {"nom_de_la_commune": "COURCELLES FREMOY", "libell_d_acheminement": "COURCELLES FREMOY", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21203"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f604c1521eed519de67da9f82f6c0087eb8c75c", "fields": {"nom_de_la_commune": "COURCELLES LES MONTBARD", "libell_d_acheminement": "COURCELLES LES MONTBARD", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21204"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11883b27377ad52e9aba461985f4e7e830b6f496", "fields": {"nom_de_la_commune": "COURLON", "libell_d_acheminement": "COURLON", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21207"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0becda5ff8aa428dc22553795232720917577e0", "fields": {"nom_de_la_commune": "COURTIVRON", "libell_d_acheminement": "COURTIVRON", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21208"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8475a35ac3a63b404028fbdc304a6dce8c5384ca", "fields": {"nom_de_la_commune": "CREANCEY", "libell_d_acheminement": "CREANCEY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21210"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ecd97730a0222b75074bc500430160977e7d18c", "fields": {"nom_de_la_commune": "CREPAND", "libell_d_acheminement": "CREPAND", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21212"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8af678bf496a43c071037f7b2e6100f8f42635c7", "fields": {"nom_de_la_commune": "CUSSEY LES FORGES", "libell_d_acheminement": "CUSSEY LES FORGES", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21220"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a0c25f18f990971cef3e884fa3009558af8b98e", "fields": {"nom_de_la_commune": "DAMPIERRE EN MONTAGNE", "libell_d_acheminement": "DAMPIERRE EN MONTAGNE", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21224"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee8e6373dde10f4e7ddabd84f848f3a47aaadd6", "fields": {"nom_de_la_commune": "DAROIS", "libell_d_acheminement": "DAROIS", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21227"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d9b06571dfaf885ed4e02a78bd5fe03ebbb6732", "fields": {"nom_de_la_commune": "DIANCEY", "libell_d_acheminement": "DIANCEY", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21229"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abdcae21303b1b06f2f28ebe6759236f55dfd16b", "fields": {"nom_de_la_commune": "DIJON", "libell_d_acheminement": "DIJON", "code_postal": "21000", "coordonnees_gps": [47.3229417955, 5.03751223305], "code_commune_insee": "21231"}, "geometry": {"type": "Point", "coordinates": [5.03751223305, 47.3229417955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "227f2561a937f68a772337d90a477520c917810e", "fields": {"nom_de_la_commune": "DOMPIERRE EN MORVAN", "libell_d_acheminement": "DOMPIERRE EN MORVAN", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21232"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a098afa18d7c5062f455674cbe5209f22afd9ff", "fields": {"nom_de_la_commune": "DREE", "libell_d_acheminement": "DREE", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21234"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48380452984cb3b190de0af84a8f783fbc189575", "fields": {"nom_de_la_commune": "ECHENON", "libell_d_acheminement": "ECHENON", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21239"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d26daa2fa9c290d4d4908ae102fa306ca0f324", "fields": {"nom_de_la_commune": "EPAGNY", "libell_d_acheminement": "EPAGNY", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21245"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed96854618930a294d04abd4014e8d67a2b271b8", "fields": {"nom_de_la_commune": "ERINGES", "libell_d_acheminement": "ERINGES", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21248"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae3fe6326df49d9f0e9d851fd2d8e3857361d544", "fields": {"nom_de_la_commune": "ETAIS", "libell_d_acheminement": "ETAIS", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21252"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9783611accf24c68c35e4f4478919cfbfdfefb3d", "fields": {"nom_de_la_commune": "L ETANG VERGY", "libell_d_acheminement": "L ETANG VERGY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21254"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35660886408edebc3db876736d8a476566b5901b", "fields": {"nom_de_la_commune": "ETORMAY", "libell_d_acheminement": "ETORMAY", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21257"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce94c565a46447f3c927206cc2a5d629e29d0932", "fields": {"nom_de_la_commune": "FAIN LES MONTBARD", "libell_d_acheminement": "FAIN LES MONTBARD", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21259"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0a2e6d8c2eb26089c48749eb12dd817c5e18309", "fields": {"nom_de_la_commune": "FENAY", "libell_d_acheminement": "FENAY", "code_postal": "21600", "coordonnees_gps": [47.2634836316, 5.06260029514], "code_commune_insee": "21263"}, "geometry": {"type": "Point", "coordinates": [5.06260029514, 47.2634836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a44c86200f2144d107a5c9594ca76971f687d1", "fields": {"nom_de_la_commune": "LE FETE", "libell_d_acheminement": "LE FETE", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21264"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05116703189cb1af7cde431078348bd2c75f94e1", "fields": {"nom_de_la_commune": "FLAGEY ECHEZEAUX", "libell_d_acheminement": "FLAGEY ECHEZEAUX", "code_postal": "21640", "coordonnees_gps": [47.1699047121, 4.99001555579], "code_commune_insee": "21267"}, "geometry": {"type": "Point", "coordinates": [4.99001555579, 47.1699047121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86a48fef19bb5d423be1705812ddfa8ac7816cd", "fields": {"nom_de_la_commune": "FLAGEY LES AUXONNE", "libell_d_acheminement": "FLAGEY LES AUXONNE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21268"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eba7a19d7f4c984fb4bce313fb86d8701a345423", "fields": {"nom_de_la_commune": "FOISSY", "libell_d_acheminement": "FOISSY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21274"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4dd2d20eafe3e5151d45c7ec285095de48cf47", "fields": {"nom_de_la_commune": "FONTAINES LES SECHES", "libell_d_acheminement": "FONTAINES LES SECHES", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21279"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45e04233e0513c6ad125a870b6aed39fd606c87", "fields": {"nom_de_la_commune": "FRANXAULT", "libell_d_acheminement": "FRANXAULT", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21285"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9305ba53e17092351a244874e81d0a4ab375962", "fields": {"nom_de_la_commune": "FRESNES", "libell_d_acheminement": "FRESNES", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21287"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b4c19eddd212c9a0c8c2baf3dc00fd85333e8fa", "fields": {"nom_de_la_commune": "GRANCEY SUR OURCE", "libell_d_acheminement": "GRANCEY SUR OURCE", "code_postal": "21570", "coordonnees_gps": [47.9722434237, 4.63863087175], "code_commune_insee": "21305"}, "geometry": {"type": "Point", "coordinates": [4.63863087175, 47.9722434237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152dc8fbcd75e54b64330cc3f5e4be91f8a9b5e6", "fields": {"nom_de_la_commune": "GRENANT LES SOMBERNON", "libell_d_acheminement": "GRENANT LES SOMBERNON", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21306"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffbad76cb66475aca994b44647db00f29c79b088", "fields": {"nom_de_la_commune": "JANCIGNY", "libell_d_acheminement": "JANCIGNY", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21323"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35f9a59dfe9855779663ef96ca6d6dcf47722f74", "fields": {"nom_de_la_commune": "JOURS LES BAIGNEUX", "libell_d_acheminement": "JOURS LES BAIGNEUX", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21326"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61e516f662774b7974083a8250c9c960fc2a9af5", "fields": {"nom_de_la_commune": "LABRUYERE", "libell_d_acheminement": "LABRUYERE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21333"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12b780ea3784d8ab94f97aeb03a21b0acba283f3", "fields": {"nom_de_la_commune": "LACANCHE", "libell_d_acheminement": "LACANCHE", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21334"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b925a87a24877104e3bf2e463a51e8683e1feb3b", "fields": {"nom_de_la_commune": "LAMARGELLE", "libell_d_acheminement": "LAMARGELLE", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21338"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e969e8a8b29b313bbd0c7ec31c6bbe09a3dd4f3", "fields": {"nom_de_la_commune": "LANTENAY", "libell_d_acheminement": "LANTENAY", "code_postal": "21370", "coordonnees_gps": [47.3545097127, 4.89318102918], "code_commune_insee": "21339"}, "geometry": {"type": "Point", "coordinates": [4.89318102918, 47.3545097127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "869a6e2b69a66ac289bf320ca50e3ae48f408790", "fields": {"nom_de_la_commune": "LANTHES", "libell_d_acheminement": "LANTHES", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21340"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ded6dfd918ff9bed14fcad8b70d15baf6bb89cd", "fields": {"nom_de_la_commune": "LECHATELET", "libell_d_acheminement": "LECHATELET", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21344"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8ad1d8cd55a648befe49e41d2cc4e29e96005a8", "fields": {"nom_de_la_commune": "LICEY SUR VINGEANNE", "libell_d_acheminement": "LICEY SUR VINGEANNE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21348"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b21b6956510b3b54c94c08bcf235324f2f2c3ac", "fields": {"nom_de_la_commune": "LONGCHAMP", "libell_d_acheminement": "LONGCHAMP", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21351"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b754300a90147db04c6488c00e7b379dd9ab3808", "fields": {"nom_de_la_commune": "LONGEAULT", "libell_d_acheminement": "LONGEAULT", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21352"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "980cbbc119dc74b747686d247145c1e4a54b7636", "fields": {"nom_de_la_commune": "LUCEY", "libell_d_acheminement": "LUCEY", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21359"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8115042bfd3e8b883f399f0f94c3e0fb075f9d75", "fields": {"nom_de_la_commune": "MAGNY ST MEDARD", "libell_d_acheminement": "MAGNY ST MEDARD", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21369"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25aa3c2938882aa50039c904ff352df95b28e356", "fields": {"nom_de_la_commune": "LES MAILLYS", "libell_d_acheminement": "LES MAILLYS", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21371"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a32fe53ef43349a4167b2f950b71abb31037752", "fields": {"nom_de_la_commune": "MAISEY LE DUC", "libell_d_acheminement": "MAISEY LE DUC", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21372"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b8bc1b67fd212445432e328529c893e50f90ed4", "fields": {"nom_de_la_commune": "MARCIGNY SOUS THIL", "libell_d_acheminement": "MARCIGNY SOUS THIL", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21380"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d39424cfd136d4afd4c13f7de3369aaab0a7fc8", "fields": {"nom_de_la_commune": "MASSINGY LES SEMUR", "libell_d_acheminement": "MASSINGY LES SEMUR", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21394"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a99fb9dfe05a703ff61dc3b8083cc5e19554fd8a", "fields": {"nom_de_la_commune": "MAUVILLY", "libell_d_acheminement": "MAUVILLY", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21396"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d5eb7098d174ffc42078d318cc01f7eda38d18", "fields": {"nom_de_la_commune": "MELOISEY", "libell_d_acheminement": "MELOISEY", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21401"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c481e379fc4e3241c4178ca6c8ece6a3f8cfeb", "fields": {"nom_de_la_commune": "MERCEUIL", "libell_d_acheminement": "MERCEUIL", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21405"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb64780de9a5d13f77c7b202dd31edfddd1ec41", "fields": {"nom_de_la_commune": "MESSANGES", "libell_d_acheminement": "MESSANGES", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21407"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b6a1aa13e119af5128dfc1136e53a0caaa49fca", "fields": {"nom_de_la_commune": "MEURSANGES", "libell_d_acheminement": "MEURSANGES", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21411"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a630f55f5189f6b641c53dd90e907d3ef0f7e80", "fields": {"nom_de_la_commune": "MONTCEAU ET ECHARNANT", "libell_d_acheminement": "MONTCEAU ET ECHARNANT", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21427"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb3f97b668d1473d2b240a0444e366607798cbf", "fields": {"nom_de_la_commune": "MONTMAIN", "libell_d_acheminement": "MONTMAIN", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21436"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47c70bf19ec87e1d73d2d9d1fcdf78c1c5bf84a3", "fields": {"nom_de_la_commune": "LA MOTTE TERNANT", "libell_d_acheminement": "LA MOTTE TERNANT", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21445"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96632cc05c7fbc093011f5250e674a7fb6bc93dd", "fields": {"nom_de_la_commune": "NOIRON SUR BEZE", "libell_d_acheminement": "NOIRON SUR BEZE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21459"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4dfa2ca46d919c15baed141629e8fecdc322eee", "fields": {"nom_de_la_commune": "ORRET", "libell_d_acheminement": "ORRET", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21471"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c42b37aaae56a1a969e6c9a69c7b98217c7338", "fields": {"nom_de_la_commune": "PANGES", "libell_d_acheminement": "PANGES", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21477"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b24df3ced41a5da38fabce70df25a4ddafe815", "fields": {"nom_de_la_commune": "PASQUES", "libell_d_acheminement": "PASQUES", "code_postal": "21370", "coordonnees_gps": [47.3545097127, 4.89318102918], "code_commune_insee": "21478"}, "geometry": {"type": "Point", "coordinates": [4.89318102918, 47.3545097127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2dac18ce80d83eba15fec4be5302d1a049da77", "fields": {"nom_de_la_commune": "POISEUL LA VILLE ET LAPERRIERE", "libell_d_acheminement": "POISEUL LA VILLE ET LAPERRIERE", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21490"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4b3d4a0bf8f1a67e051a7f4c867ada26955e0de", "fields": {"nom_de_la_commune": "PONTAILLER SUR SAONE", "libell_d_acheminement": "PONTAILLER SUR SAONE", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21496"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21a940a848ff0e21c29ba79696a6e333989ac29c", "fields": {"nom_de_la_commune": "POUILLENAY", "libell_d_acheminement": "POUILLENAY", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21500"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8d918e46abe3f1fb96d55bfb1cc618d8b19ab0", "fields": {"nom_de_la_commune": "PRECY SOUS THIL", "libell_d_acheminement": "PRECY SOUS THIL", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21505"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f54e84d91f3fbb6307415d74e9415eafb851099", "fields": {"nom_de_la_commune": "PREMEAUX PRISSEY", "libell_d_acheminement": "PREMEAUX PRISSEY", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21506"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8067a5686934571a5f4ee1f334f964db70eab9ed", "fields": {"nom_de_la_commune": "PREMIERES", "libell_d_acheminement": "PREMIERES", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21507"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e099db4220628088f750e2d91fc293996e4ddbe", "fields": {"nom_de_la_commune": "PUITS", "libell_d_acheminement": "PUITS", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21511"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5501ec88c0500ed77b242ccf3e7d33b98c65573", "fields": {"nom_de_la_commune": "QUEMIGNY SUR SEINE", "libell_d_acheminement": "QUEMIGNY SUR SEINE", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21514"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f122c38bf408861c250e6ac064c019e5a6a63d05", "fields": {"nom_de_la_commune": "QUINCEROT", "libell_d_acheminement": "QUINCEROT", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21516"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c3e2f75312ef24e8266ae38b845e14484562709", "fields": {"nom_de_la_commune": "REMILLY EN MONTAGNE", "libell_d_acheminement": "REMILLY EN MONTAGNE", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21520"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "495f700dbd0d4b0d301c417a31a800c81bcafd53", "fields": {"nom_de_la_commune": "RUFFEY LES ECHIREY", "libell_d_acheminement": "RUFFEY LES ECHIREY", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21535"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8d72634786a00a9bc48c65629a881564a211882", "fields": {"nom_de_la_commune": "SAFFRES", "libell_d_acheminement": "SAFFRES", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21537"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c37fa8975dfe1061580f09bff1ed66fc774c40", "fields": {"nom_de_la_commune": "ST BERNARD", "libell_d_acheminement": "ST BERNARD", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21542"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4679464fa03f65de46a6b64ccfd8effd5ed74e99", "fields": {"nom_de_la_commune": "ST MARC SUR SEINE", "libell_d_acheminement": "ST MARC SUR SEINE", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21557"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776931a5f13b11800e51c169b60ff27ea657d0f1", "fields": {"nom_de_la_commune": "ST NICOLAS LES CITEAUX", "libell_d_acheminement": "ST NICOLAS LES CITEAUX", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21564"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48ab7c3237789494f3bbb76501ae4c4e0a0ab11", "fields": {"nom_de_la_commune": "ST PHILIBERT", "libell_d_acheminement": "ST PHILIBERT", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21565"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348e076c514436a5f61bdc8f3ae2486e6a1d816f", "fields": {"nom_de_la_commune": "ST PIERRE EN VAUX", "libell_d_acheminement": "ST PIERRE EN VAUX", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21566"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "525e6e698ee9f3a8b68ddebcea9f1dd05ec8e648", "fields": {"nom_de_la_commune": "ST ROMAIN", "libell_d_acheminement": "ST ROMAIN", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21569"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7695686af70b17db57910ff892bf941bba4eb92", "fields": {"nom_de_la_commune": "STE SABINE", "libell_d_acheminement": "STE SABINE", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21570"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f09374596a491be7210910026e5eb4f4e75664", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21571"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91597df403b3d6b429535e3b822db54b50941006", "fields": {"nom_de_la_commune": "SAMEREY", "libell_d_acheminement": "SAMEREY", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21581"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1540d1f02da7275198bee3f028c5f4f5777cf7c0", "fields": {"nom_de_la_commune": "SAULON LA CHAPELLE", "libell_d_acheminement": "SAULON LA CHAPELLE", "code_postal": "21910", "coordonnees_gps": [47.1979696302, 5.07760526191], "code_commune_insee": "21585"}, "geometry": {"type": "Point", "coordinates": [5.07760526191, 47.1979696302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3834ee3705b7feec54c256f8efc1aada6a166ae", "fields": {"nom_de_la_commune": "SAUSSEY", "libell_d_acheminement": "SAUSSEY", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21588"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb8bfb88f2184922527e8320224c0fb2fbee5b0f", "fields": {"nom_de_la_commune": "DOMESSARGUES", "libell_d_acheminement": "DOMESSARGUES", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30104"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13eac7057f816d91cb0b32f476103720e687414f", "fields": {"nom_de_la_commune": "FLAUX", "libell_d_acheminement": "FLAUX", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30110"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "016137cacbfad4eb6e05da8577d43f17e58a8238", "fields": {"nom_de_la_commune": "FRESSAC", "libell_d_acheminement": "FRESSAC", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30119"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adf944eb0ef522c67626181a0746a9c874517b8d", "fields": {"nom_de_la_commune": "GAGNIERES", "libell_d_acheminement": "GAGNIERES", "code_postal": "30160", "coordonnees_gps": [44.2982766732, 4.09724420546], "code_commune_insee": "30120"}, "geometry": {"type": "Point", "coordinates": [4.09724420546, 44.2982766732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abdf3a2b9c0cd5ab9d0c3a3b2072f1a3d0a00f07", "fields": {"code_postal": "30450", "code_commune_insee": "30130", "libell_d_acheminement": "GENOLHAC", "ligne_5": "PONT DE RASTEL", "nom_de_la_commune": "GENOLHAC", "coordonnees_gps": [44.3723847738, 3.99224222327]}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b7a1cb530437abc725a6dad4bea11423baeead", "fields": {"nom_de_la_commune": "LAMELOUZE", "libell_d_acheminement": "LAMELOUZE", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30137"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd597e08046ab93e2bf079ef6196791edb1361a", "fields": {"code_postal": "30290", "code_commune_insee": "30141", "libell_d_acheminement": "LAUDUN L ARDOISE", "ligne_5": "L ARDOISE", "nom_de_la_commune": "LAUDUN L ARDOISE", "coordonnees_gps": [44.0818801602, 4.65422570722]}, "geometry": {"type": "Point", "coordinates": [4.65422570722, 44.0818801602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "028365b8c39255af368ec6f9eebb23991588c200", "fields": {"nom_de_la_commune": "CHATELPERRON", "libell_d_acheminement": "CHATELPERRON", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03067"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e601cda9a1fc94c88e66eaad7c627fd2970305", "fields": {"nom_de_la_commune": "CHAVROCHES", "libell_d_acheminement": "CHAVROCHES", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03071"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a3f03e5ef8e520351f30894066986151eef8df", "fields": {"nom_de_la_commune": "COMMENTRY", "libell_d_acheminement": "COMMENTRY", "code_postal": "03600", "coordonnees_gps": [46.2666871749, 2.79054682985], "code_commune_insee": "03082"}, "geometry": {"type": "Point", "coordinates": [2.79054682985, 46.2666871749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d022e69506e62829a0f8946bb121ff041a16f7f5", "fields": {"nom_de_la_commune": "COULEUVRE", "libell_d_acheminement": "COULEUVRE", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03087"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7029306fee14dabf4849cfee5e99f9046978ce9", "fields": {"nom_de_la_commune": "CHAZEMAIS", "libell_d_acheminement": "CHAZEMAIS", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03072"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dbb5ed54e2d84dd84d5bb1475537cdf53ba987a", "fields": {"nom_de_la_commune": "CONTIGNY", "libell_d_acheminement": "CONTIGNY", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03083"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536b3d86978c45a5d90aab08d74d112fe21ceada", "fields": {"nom_de_la_commune": "CHAVENON", "libell_d_acheminement": "CHAVENON", "code_postal": "03440", "coordonnees_gps": [46.4644451309, 2.96888238917], "code_commune_insee": "03070"}, "geometry": {"type": "Point", "coordinates": [2.96888238917, 46.4644451309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8624826d82f3ca1b9ad4acface8877e5331ed91e", "fields": {"nom_de_la_commune": "COURCAIS", "libell_d_acheminement": "COURCAIS", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03088"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d49b594b396a909f5f2b945f3180acc954ec20", "fields": {"nom_de_la_commune": "EBREUIL", "libell_d_acheminement": "EBREUIL", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03107"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c116b1c0551feb533a17e9febad2b9585293d46c", "fields": {"code_postal": "04530", "code_commune_insee": "04120", "libell_d_acheminement": "VAL D ORONAYE", "ligne_5": "MEYRONNES", "nom_de_la_commune": "VAL D ORONAYE", "coordonnees_gps": [44.529721781, 6.79644418503]}, "geometry": {"type": "Point", "coordinates": [6.79644418503, 44.529721781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84023b8410d52cfb2339d515bc3b300ed379d436", "fields": {"code_postal": "04530", "code_commune_insee": "04120", "libell_d_acheminement": "VAL D ORONAYE", "ligne_5": "LARCHE", "nom_de_la_commune": "VAL D ORONAYE", "coordonnees_gps": [44.529721781, 6.79644418503]}, "geometry": {"type": "Point", "coordinates": [6.79644418503, 44.529721781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eccd21e40da1b70738a13db6d918264e53908107", "fields": {"nom_de_la_commune": "MONTAGNAC MONTPEZAT", "libell_d_acheminement": "MONTAGNAC MONTPEZAT", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04124"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3ba7fca61eada817922fc1a21edda5e4f03122", "fields": {"nom_de_la_commune": "MONTSALIER", "libell_d_acheminement": "MONTSALIER", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04132"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cecc999011b3af22277f085288857bfc2d35bad5", "fields": {"nom_de_la_commune": "MONTCLAR", "libell_d_acheminement": "MONTCLAR", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04126"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d454363d6ff1665469447be353afcb3699081654", "fields": {"nom_de_la_commune": "LES MEES", "libell_d_acheminement": "LES MEES", "code_postal": "04190", "coordonnees_gps": [43.9943294384, 5.9660365633], "code_commune_insee": "04116"}, "geometry": {"type": "Point", "coordinates": [5.9660365633, 43.9943294384]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8179cd485e8ecbd04efaee4e4d7af9bdcbb7d730", "fields": {"nom_de_la_commune": "MELVE", "libell_d_acheminement": "MELVE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04118"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ea48aa89d42afe1f19d6acbae031bf3fa50e50", "fields": {"code_postal": "04800", "code_commune_insee": "04081", "libell_d_acheminement": "ESPARRON DE VERDON", "ligne_5": "ALBIOSC", "nom_de_la_commune": "ESPARRON DE VERDON", "coordonnees_gps": [43.7622916617, 5.91644609387]}, "geometry": {"type": "Point", "coordinates": [5.91644609387, 43.7622916617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf60ad754eed4d5205bd2cce6a72082bd8b54856", "fields": {"nom_de_la_commune": "FAUCON DU CAIRE", "libell_d_acheminement": "FAUCON DU CAIRE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04085"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fde1b93ccb1720269944ed85452cf9817151575a", "fields": {"nom_de_la_commune": "CHAMPTERCIER", "libell_d_acheminement": "CHAMPTERCIER", "code_postal": "04660", "coordonnees_gps": [44.0968674904, 6.14437203811], "code_commune_insee": "04047"}, "geometry": {"type": "Point", "coordinates": [6.14437203811, 44.0968674904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f6721966c40cd8ff047fd1c42f312ccea574041", "fields": {"nom_de_la_commune": "MALLEMOISSON", "libell_d_acheminement": "MALLEMOISSON", "code_postal": "04510", "coordonnees_gps": [44.0399432995, 6.10204866093], "code_commune_insee": "04110"}, "geometry": {"type": "Point", "coordinates": [6.10204866093, 44.0399432995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7a6ff6b5d6676840d8752bbb1eb17a3d27f7f9", "fields": {"nom_de_la_commune": "CHATEAUFORT", "libell_d_acheminement": "CHATEAUFORT", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04050"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e90a037232a090d0aae9a782fa3bac701279c7e4", "fields": {"nom_de_la_commune": "LAMBRUISSE", "libell_d_acheminement": "LAMBRUISSE", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04099"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99752e0c5f562887e113b799f31fef4b04d25cb8", "fields": {"nom_de_la_commune": "MAJASTRES", "libell_d_acheminement": "MAJASTRES", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04107"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0110a351e4db90528d9b73d132bca6ee338287", "fields": {"nom_de_la_commune": "ENTREVAUX", "libell_d_acheminement": "ENTREVAUX", "code_postal": "04320", "coordonnees_gps": [43.9774312961, 6.76983906157], "code_commune_insee": "04076"}, "geometry": {"type": "Point", "coordinates": [6.76983906157, 43.9774312961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5973f68d41b66e4351f24855deaed4e852b3faf3", "fields": {"nom_de_la_commune": "MANOSQUE", "libell_d_acheminement": "MANOSQUE", "code_postal": "04100", "coordonnees_gps": [43.8351241867, 5.7912492202], "code_commune_insee": "04112"}, "geometry": {"type": "Point", "coordinates": [5.7912492202, 43.8351241867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eefff9fe9cce301cf6769e5d806678c7a48ef26", "fields": {"nom_de_la_commune": "MANE", "libell_d_acheminement": "MANE", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04111"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e096424320be7edb40d8cc33752855fae13059cb", "fields": {"nom_de_la_commune": "ARPHEUILLES ST PRIEST", "libell_d_acheminement": "ARPHEUILLES ST PRIEST", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03007"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4a29f31150f870e1d16a13d17c8b8721b05d7e0", "fields": {"nom_de_la_commune": "BELLERIVE SUR ALLIER", "libell_d_acheminement": "BELLERIVE SUR ALLIER", "code_postal": "03700", "coordonnees_gps": [46.0940657836, 3.37277682749], "code_commune_insee": "03023"}, "geometry": {"type": "Point", "coordinates": [3.37277682749, 46.0940657836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e054c0f9be0a15b4abdcdde095508638049ff55e", "fields": {"nom_de_la_commune": "AUTRY ISSARDS", "libell_d_acheminement": "AUTRY ISSARDS", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03012"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3b263a8b1e4ce11b4785b3b17da75a9c87c8f0", "fields": {"nom_de_la_commune": "BILLEZOIS", "libell_d_acheminement": "BILLEZOIS", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03028"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a5cb4e955f61a5ccda8f14bb55b8c5bf619d0d2", "fields": {"nom_de_la_commune": "ARRONNES", "libell_d_acheminement": "ARRONNES", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03008"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9cb694e55cf44b564636ecf2fa2c7fcabc046a6", "fields": {"nom_de_la_commune": "AUBIGNY", "libell_d_acheminement": "AUBIGNY", "code_postal": "03460", "coordonnees_gps": [46.6591659055, 3.26064885085], "code_commune_insee": "03009"}, "geometry": {"type": "Point", "coordinates": [3.26064885085, 46.6591659055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "880e9babe33a608a125e51f56866b2125408f648", "fields": {"nom_de_la_commune": "AVRILLY", "libell_d_acheminement": "AVRILLY", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03014"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92b8f23b57af4b1bc93257cdcfd41ea1d5dbb53a", "fields": {"nom_de_la_commune": "ABREST", "libell_d_acheminement": "ABREST", "code_postal": "03200", "coordonnees_gps": [46.1075083503, 3.45428306112], "code_commune_insee": "03001"}, "geometry": {"type": "Point", "coordinates": [3.45428306112, 46.1075083503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22da4bdcf67b47ca49ff3fea5d3066cad9adc6e8", "fields": {"nom_de_la_commune": "BIOZAT", "libell_d_acheminement": "BIOZAT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03030"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96e877657f27040ce01cc092dee824112db8687d", "fields": {"nom_de_la_commune": "WIMY", "libell_d_acheminement": "WIMY", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02833"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "926cb45e8d778c5e1ebe67c2c99b8f4bfc4e8dec", "fields": {"nom_de_la_commune": "VILLERS LES GUISE", "libell_d_acheminement": "VILLERS LES GUISE", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02814"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "441da2d80d567b2a873bcf541b18f67c905016e0", "fields": {"nom_de_la_commune": "VILLERS COTTERETS", "libell_d_acheminement": "VILLERS COTTERETS", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02810"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61701f080af391f39ffb34bc02cc6276de8cdd81", "fields": {"nom_de_la_commune": "VIRY NOUREUIL", "libell_d_acheminement": "VIRY NOUREUIL", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02820"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "107c4613678bc91f4b9745403fe23adc7cb05593", "fields": {"nom_de_la_commune": "GRAND VERLY", "libell_d_acheminement": "GRAND VERLY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02783"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27f7da6080728f7ac2dabfd32ad4378d98036dac", "fields": {"nom_de_la_commune": "VENDELLES", "libell_d_acheminement": "VENDELLES", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02774"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbea9f65ca4d9b013dbe357183d834564f557bb2", "fields": {"nom_de_la_commune": "VIEL ARCY", "libell_d_acheminement": "VIEL ARCY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02797"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c55089b7378976b77667f8fb891e29639fe4e6d", "fields": {"nom_de_la_commune": "VERDILLY", "libell_d_acheminement": "VERDILLY", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02781"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3c2f2f2f98c38f0dbdfe40133f649e929f3b49", "fields": {"nom_de_la_commune": "VENIZEL", "libell_d_acheminement": "VENIZEL", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02780"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48728b37437367e7dcb6069cb54d8bdfa4eedc64", "fields": {"nom_de_la_commune": "VOYENNE", "libell_d_acheminement": "VOYENNE", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02827"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f74aca5dbb6886fa409552752d34a421d8636317", "fields": {"nom_de_la_commune": "VIFFORT", "libell_d_acheminement": "VIFFORT", "code_postal": "02540", "coordonnees_gps": [48.9128673746, 3.4403848461], "code_commune_insee": "02800"}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa078a142ed32af715b1d51adba7a26efa689197", "fields": {"nom_de_la_commune": "ST ANDRE LES ALPES", "libell_d_acheminement": "ST ANDRE LES ALPES", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04173"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f965eb5b0c02145435f1b4aca45ddb960f25605d", "fields": {"nom_de_la_commune": "ST JEANNET", "libell_d_acheminement": "ST JEANNET", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04181"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a225262c834c7ec7aaa8dcf0db181586fba2da", "fields": {"nom_de_la_commune": "ST JACQUES", "libell_d_acheminement": "ST JACQUES", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04180"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b95ff18867e0be132782ab22d7cf42aefc54176", "fields": {"nom_de_la_commune": "ROUMOULES", "libell_d_acheminement": "ROUMOULES", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04172"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60e3c64d3e8fb5ef3f6265ffb65720213f6b8620", "fields": {"nom_de_la_commune": "ROUGON", "libell_d_acheminement": "ROUGON", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04171"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cff48c050a00ba69a3e186d2ec1789c866de9baf", "fields": {"nom_de_la_commune": "CHATEAU VILLE VIEILLE", "libell_d_acheminement": "CHATEAU VILLE VIEILLE", "code_postal": "05350", "coordonnees_gps": [44.7398415746, 6.81322835157], "code_commune_insee": "05038"}, "geometry": {"type": "Point", "coordinates": [6.81322835157, 44.7398415746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c652a82659fb2caa3d19c2363d3b0e94da60a8d", "fields": {"nom_de_la_commune": "BARCILLONNETTE", "libell_d_acheminement": "BARCILLONNETTE", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "05013"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4987ad22e135e0b5213ca278881826ed83adb777", "fields": {"nom_de_la_commune": "LA BATIE NEUVE", "libell_d_acheminement": "LA BATIE NEUVE", "code_postal": "05230", "coordonnees_gps": [44.5500776801, 6.2567130171], "code_commune_insee": "05017"}, "geometry": {"type": "Point", "coordinates": [6.2567130171, 44.5500776801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819f1e1628f980c891735afcdfc1309624f525e1", "fields": {"nom_de_la_commune": "CHAUFFAYER", "libell_d_acheminement": "CHAUFFAYER", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05039"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c075c47e14f3d80dcfded4c3e89f1ca986bba9f0", "fields": {"nom_de_la_commune": "LE VERNET", "libell_d_acheminement": "LE VERNET", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04237"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "615cc8945efb87abc887ad5ae396e5d32a3a4840", "fields": {"nom_de_la_commune": "BUISSARD", "libell_d_acheminement": "BUISSARD", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05025"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d7820a99a1a982d15387a8e11ad657801086f9b", "fields": {"nom_de_la_commune": "VOLONNE", "libell_d_acheminement": "VOLONNE", "code_postal": "04290", "coordonnees_gps": [44.1438661231, 6.02689394814], "code_commune_insee": "04244"}, "geometry": {"type": "Point", "coordinates": [6.02689394814, 44.1438661231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188c6d499d853d77f4ee91ab70133f790899b308", "fields": {"nom_de_la_commune": "AVANCON", "libell_d_acheminement": "AVANCON", "code_postal": "05230", "coordonnees_gps": [44.5500776801, 6.2567130171], "code_commune_insee": "05011"}, "geometry": {"type": "Point", "coordinates": [6.2567130171, 44.5500776801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b58f989925d721b808ffaaaddb082fc176b260ed", "fields": {"nom_de_la_commune": "UBRAYE", "libell_d_acheminement": "UBRAYE", "code_postal": "04240", "coordonnees_gps": [43.977813048, 6.67580684745], "code_commune_insee": "04224"}, "geometry": {"type": "Point", "coordinates": [6.67580684745, 43.977813048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "807f2b2d8322b32c6cf37e3bde505cf60535500d", "fields": {"code_postal": "05000", "code_commune_insee": "05061", "libell_d_acheminement": "GAP", "ligne_5": "ROMETTE", "nom_de_la_commune": "GAP", "coordonnees_gps": [44.5625391818, 6.06869105196]}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e112b57f259bb65ffebc6a694029350d919c6ba0", "fields": {"nom_de_la_commune": "LE MONETIER LES BAINS", "libell_d_acheminement": "LE MONETIER LES BAINS", "code_postal": "05220", "coordonnees_gps": [44.9957936495, 6.46967651706], "code_commune_insee": "05079"}, "geometry": {"type": "Point", "coordinates": [6.46967651706, 44.9957936495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "205cd839c88c451a3c9e28c11c1ee4515eb02c4a", "fields": {"nom_de_la_commune": "ETOILE ST CYRICE", "libell_d_acheminement": "ETOILE ST CYRICE", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05051"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99521f981d2b5432ecf11ef0faff1b8ced58cd89", "fields": {"nom_de_la_commune": "FREISSINIERES", "libell_d_acheminement": "FREISSINIERES", "code_postal": "05310", "coordonnees_gps": [44.7404687507, 6.51315581075], "code_commune_insee": "05058"}, "geometry": {"type": "Point", "coordinates": [6.51315581075, 44.7404687507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32cdb1448f2ae7b915475fce13766ed7f0b3b513", "fields": {"nom_de_la_commune": "MONT DAUPHIN", "libell_d_acheminement": "MONT DAUPHIN", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05082"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cc5360f80462ec972b7bc68e2439108f3c4cdeb", "fields": {"nom_de_la_commune": "MONTGENEVRE", "libell_d_acheminement": "MONTGENEVRE", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05085"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f24ded8029697c74e3eae5bf8da4468b21f0daa7", "fields": {"nom_de_la_commune": "LA FAURIE", "libell_d_acheminement": "LA FAURIE", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05055"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee173f9cdb404f9679de0919046ab178cdcaef0", "fields": {"nom_de_la_commune": "EYGLIERS", "libell_d_acheminement": "EYGLIERS", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05052"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c32aee7de0a76b8daf489d2c2e92985d9431e7", "fields": {"nom_de_la_commune": "CHORGES", "libell_d_acheminement": "CHORGES", "code_postal": "05230", "coordonnees_gps": [44.5500776801, 6.2567130171], "code_commune_insee": "05040"}, "geometry": {"type": "Point", "coordinates": [6.2567130171, 44.5500776801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aab8be72d81c813737c10e0dbdddad795be94db", "fields": {"nom_de_la_commune": "EMBRUN", "libell_d_acheminement": "EMBRUN", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05046"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6c86c860392bb68270d70d3cd1e7698f2c4655c", "fields": {"code_postal": "05250", "code_commune_insee": "05139", "libell_d_acheminement": "LE DEVOLUY", "ligne_5": "LA CLUSE", "nom_de_la_commune": "LE DEVOLUY", "coordonnees_gps": [44.6849532625, 5.89081686523]}, "geometry": {"type": "Point", "coordinates": [5.89081686523, 44.6849532625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf7fa2f728b4a6c8ffaacaf3cfd89e7a4ac30800", "fields": {"nom_de_la_commune": "ST JACQUES EN VALGODEMARD", "libell_d_acheminement": "ST JACQUES EN VALGODEMARD", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05144"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a09bece920f67e85137a303c5d1e0df517047e79", "fields": {"nom_de_la_commune": "ST EUSEBE EN CHAMPSAUR", "libell_d_acheminement": "ST EUSEBE EN CHAMPSAUR", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05141"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24985553d0a4ed6b41080910aca41b34dc8d90ac", "fields": {"nom_de_la_commune": "ST LEGER LES MELEZES", "libell_d_acheminement": "ST LEGER LES MELEZES", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05149"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c5da513cd317c1b784e4f8fb6b6df82dfaf696c", "fields": {"nom_de_la_commune": "PUY ST VINCENT", "libell_d_acheminement": "PUY ST VINCENT", "code_postal": "05290", "coordonnees_gps": [44.8269347148, 6.42358106998], "code_commune_insee": "05110"}, "geometry": {"type": "Point", "coordinates": [6.42358106998, 44.8269347148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adebd557b9ec902c3de9aff59ce5d9cebdd376eb", "fields": {"nom_de_la_commune": "ST APOLLINAIRE", "libell_d_acheminement": "ST APOLLINAIRE", "code_postal": "05160", "coordonnees_gps": [44.5645200462, 6.36522312148], "code_commune_insee": "05130"}, "geometry": {"type": "Point", "coordinates": [6.36522312148, 44.5645200462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942d1a36ea50db6588d8b5d079034ec8404ae600", "fields": {"nom_de_la_commune": "ST CREPIN", "libell_d_acheminement": "ST CREPIN", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05136"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72c93ca9a01c9a3ecb02183a82c6d2785cd4cde3", "fields": {"nom_de_la_commune": "CHAMPIGNOL LEZ MONDEVILLE", "libell_d_acheminement": "CHAMPIGNOL LEZ MONDEVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10076"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd715ae4ad2567106fd1f0e7a5e89b12a91c6553", "fields": {"nom_de_la_commune": "BRAGELOGNE BEAUVOIR", "libell_d_acheminement": "BRAGELOGNE BEAUVOIR", "code_postal": "10340", "coordonnees_gps": [47.9929585912, 4.30782302551], "code_commune_insee": "10058"}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48fad59060fb3dff5dfc70eadcecab0291cab7b1", "fields": {"nom_de_la_commune": "BRILLECOURT", "libell_d_acheminement": "BRILLECOURT", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10065"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8cb5798ad0207a99e98ee30b96d3f1d4c27f984", "fields": {"nom_de_la_commune": "BOURDENAY", "libell_d_acheminement": "BOURDENAY", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10054"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edba1e6d4550098feeb9a0149f0618e29298e30f", "fields": {"nom_de_la_commune": "BOURANTON", "libell_d_acheminement": "BOURANTON", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10053"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3451d970a72bd08cc8f26b86184937a0402c40c4", "fields": {"nom_de_la_commune": "BERGERES", "libell_d_acheminement": "BERGERES", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10039"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0991517436ab592550988648003e40829e44c6", "fields": {"nom_de_la_commune": "BEUREY", "libell_d_acheminement": "BEUREY", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10045"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1d71fcc167e9a2ec8da4647fb7cec5495989c7a", "fields": {"nom_de_la_commune": "BAYEL", "libell_d_acheminement": "BAYEL", "code_postal": "10310", "coordonnees_gps": [48.1567685845, 4.79470021531], "code_commune_insee": "10035"}, "geometry": {"type": "Point", "coordinates": [4.79470021531, 48.1567685845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307b41abde3f664dc6e50d10f59b86a8c3259a34", "fields": {"nom_de_la_commune": "BESSY", "libell_d_acheminement": "BESSY", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10043"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22a52da5e42bb393ac215a79d79c94078de04bb8", "fields": {"nom_de_la_commune": "FAUX", "libell_d_acheminement": "FAUX", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24177"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "185609c1bed2588525d361f087a32a5cb3f012b2", "fields": {"nom_de_la_commune": "FLEURAC", "libell_d_acheminement": "FLEURAC", "code_postal": "24580", "coordonnees_gps": [45.0387588745, 0.994420883545], "code_commune_insee": "24183"}, "geometry": {"type": "Point", "coordinates": [0.994420883545, 45.0387588745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79d1f54d6c49e6627650e8673e93a251fd640132", "fields": {"nom_de_la_commune": "FOULEIX", "libell_d_acheminement": "FOULEIX", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24190"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b331b6e467f1e9e0e6b1a056ac40cc998388954f", "fields": {"nom_de_la_commune": "GAUGEAC", "libell_d_acheminement": "GAUGEAC", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24195"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5270e5959c6f8109eeac2ff72c7f9092c42a45a", "fields": {"nom_de_la_commune": "GROLEJAC", "libell_d_acheminement": "GROLEJAC", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24207"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b942f25a98c874f809e14ce69a2e53d3670f7537", "fields": {"nom_de_la_commune": "JAURE", "libell_d_acheminement": "JAURE", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24213"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f027755c04677959e88cff81cbac85a39c479cf1", "fields": {"nom_de_la_commune": "JAVERLHAC ET LA CHAPELLE ST ROBERT", "libell_d_acheminement": "JAVERLHAC LA CHAPELLE ST ROBERT", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24214"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86f5889f76e367fb50016804aff921e4a99bea98", "fields": {"nom_de_la_commune": "RUDEAU LADOSSE", "libell_d_acheminement": "RUDEAU LADOSSE", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24221"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f5c85c28e4a95862d0ace4d08f04e504673ea9", "fields": {"nom_de_la_commune": "LAMONZIE MONTASTRUC", "libell_d_acheminement": "LAMONZIE MONTASTRUC", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24224"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e556543b3c6d499d4b1881277e1552d0c8a841", "fields": {"nom_de_la_commune": "LAMOTHE MONTRAVEL", "libell_d_acheminement": "LAMOTHE MONTRAVEL", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24226"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f77789995c3bc1cad99c034df5733c8f4f0ab8", "fields": {"nom_de_la_commune": "LAVAUR", "libell_d_acheminement": "LAVAUR", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24232"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1a27edcea82dda5865f578fd6571e07dcce7fb7", "fields": {"nom_de_la_commune": "LUNAS", "libell_d_acheminement": "LUNAS", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24246"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2166d49dfe463826816ee4bbcb885a55ff42b2", "fields": {"nom_de_la_commune": "LUSIGNAC", "libell_d_acheminement": "LUSIGNAC", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24247"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "895ef2271a538b69d29e29172a03ef211319d204", "fields": {"nom_de_la_commune": "LUSSAS ET NONTRONNEAU", "libell_d_acheminement": "LUSSAS ET NONTRONNEAU", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24248"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9a9b6f03e8c88789610ee4090ef656e4534f44", "fields": {"nom_de_la_commune": "BONREPOS SUR AUSSONNELLE", "libell_d_acheminement": "BONREPOS SUR AUSSONNELLE", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31075"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fde885c12ae1f4132a9f3b2dac0890cb6dfa69a4", "fields": {"nom_de_la_commune": "BOULOC", "libell_d_acheminement": "BOULOC", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31079"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5adf12b8f3ef41f88f60fde23433daa3a16bc7c", "fields": {"nom_de_la_commune": "BOURG D OUEIL", "libell_d_acheminement": "BOURG D OUEIL", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31081"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3df47e8321494ad6a3aec52dad1285aba754fe2", "fields": {"nom_de_la_commune": "BOURG ST BERNARD", "libell_d_acheminement": "BOURG ST BERNARD", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31082"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148b63140f8c71f88751edfcbfd219e418f7f0b8", "fields": {"nom_de_la_commune": "BOUTX", "libell_d_acheminement": "BOUTX", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31085"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2739b14696302af75c8038cde4c601e9c32efa40", "fields": {"code_postal": "31440", "code_commune_insee": "31085", "libell_d_acheminement": "BOUTX", "ligne_5": "ARGUT DESSUS", "nom_de_la_commune": "BOUTX", "coordonnees_gps": [42.895421056, 0.722774837437]}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b6c76222f2f962f8cafc73d3baab43ee088255", "fields": {"nom_de_la_commune": "BRETX", "libell_d_acheminement": "BRETX", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31089"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a607d72144037765433e5783b60a33b28cdcbdae", "fields": {"nom_de_la_commune": "BUZET SUR TARN", "libell_d_acheminement": "BUZET SUR TARN", "code_postal": "31660", "coordonnees_gps": [43.7787521435, 1.60352136541], "code_commune_insee": "31094"}, "geometry": {"type": "Point", "coordinates": [1.60352136541, 43.7787521435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe4cfe2df3d892e8cf310957678b9cf086e1a88", "fields": {"nom_de_la_commune": "CABANAC CAZAUX", "libell_d_acheminement": "CABANAC CAZAUX", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31095"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260afe4834956ed9a85cbf2533066b97c82e14e8", "fields": {"nom_de_la_commune": "CABANAC SEGUENVILLE", "libell_d_acheminement": "CABANAC SEGUENVILLE", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31096"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a649e1bc0facb27c9e7e078d3de31d9073d7b87", "fields": {"nom_de_la_commune": "CASTELBIAGUE", "libell_d_acheminement": "CASTELBIAGUE", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31114"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55b8b32298d00527e4056cc334977b2adc4db297", "fields": {"nom_de_la_commune": "CASTELNAU D ESTRETEFONDS", "libell_d_acheminement": "CASTELNAU D ESTRETEFONDS", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31118"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d9e0d2499dd8260af7539a072b4055b4744670", "fields": {"nom_de_la_commune": "CASTILLON DE LARBOUST", "libell_d_acheminement": "CASTILLON DE LARBOUST", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31123"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805e5f57b856a2a90a7ecc3ca5a53eac37948aa7", "fields": {"nom_de_la_commune": "CAUBIAC", "libell_d_acheminement": "CAUBIAC", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31126"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72148f4d52debaa72731e9a8ac498e008bb83e5e", "fields": {"nom_de_la_commune": "CAZARIL TAMBOURES", "libell_d_acheminement": "CAZARIL TAMBOURES", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31130"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b5614cc2435f92d2c6f4c7585ec5b2c7eb9aa86", "fields": {"nom_de_la_commune": "CAZERES", "libell_d_acheminement": "CAZERES", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31135"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9713841498842b9033a4fbcb9a47a75dc15283c2", "fields": {"nom_de_la_commune": "CHARLAS", "libell_d_acheminement": "CHARLAS", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31138"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81d27f99c065e721f16ad31bbc1e423cb37b257c", "fields": {"nom_de_la_commune": "CHEIN DESSUS", "libell_d_acheminement": "CHEIN DESSUS", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31140"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "852a6d8b6069c5115d5b585332a4a27d2e37fbd3", "fields": {"nom_de_la_commune": "CIER DE RIVIERE", "libell_d_acheminement": "CIER DE RIVIERE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31143"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a14d7c7bb0d06c174b928a1d02350c6283622d", "fields": {"nom_de_la_commune": "CIERP GAUD", "libell_d_acheminement": "CIERP GAUD", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31144"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c1ccfbf8e21d8277e2b037afcb0753e79d050a", "fields": {"nom_de_la_commune": "CINTEGABELLE", "libell_d_acheminement": "CINTEGABELLE", "code_postal": "31550", "coordonnees_gps": [43.2904004473, 1.51499636485], "code_commune_insee": "31145"}, "geometry": {"type": "Point", "coordinates": [1.51499636485, 43.2904004473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f081e3793531beecf19da0cce793f4a1f4e2a7e3", "fields": {"nom_de_la_commune": "CLARAC", "libell_d_acheminement": "CLARAC", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31147"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79509639fc1626f36dc98b8860e72ddd2d4aa76", "fields": {"nom_de_la_commune": "COLOMIERS", "libell_d_acheminement": "COLOMIERS", "code_postal": "31770", "coordonnees_gps": [43.6115429523, 1.32737692342], "code_commune_insee": "31149"}, "geometry": {"type": "Point", "coordinates": [1.32737692342, 43.6115429523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a13375beb72c6b75f195caef8a3b5eafc15399f1", "fields": {"nom_de_la_commune": "CORNEBARRIEU", "libell_d_acheminement": "CORNEBARRIEU", "code_postal": "31700", "coordonnees_gps": [43.6597738568, 1.31989347966], "code_commune_insee": "31150"}, "geometry": {"type": "Point", "coordinates": [1.31989347966, 43.6597738568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db4cfe56b3442e3539c24d7af1263dd0e53064b", "fields": {"nom_de_la_commune": "DONNEVILLE", "libell_d_acheminement": "DONNEVILLE", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31162"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c62d000924c84491cd7bd534eb437f7784486019", "fields": {"nom_de_la_commune": "DREMIL LAFAGE", "libell_d_acheminement": "DREMIL LAFAGE", "code_postal": "31280", "coordonnees_gps": [43.5930942522, 1.59070902866], "code_commune_insee": "31163"}, "geometry": {"type": "Point", "coordinates": [1.59070902866, 43.5930942522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e6c198d72b24c71f11ef6e319f94cef581bad6e", "fields": {"nom_de_la_commune": "EAUNES", "libell_d_acheminement": "EAUNES", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31165"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a05f7018bc166ebd3625eca6d5c6dcc5c408ac", "fields": {"nom_de_la_commune": "EOUX", "libell_d_acheminement": "EOUX", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31168"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007ef60f3ef55d5fc96b0aaf69cbefffde8baee5", "fields": {"nom_de_la_commune": "ESCANECRABE", "libell_d_acheminement": "ESCANECRABE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31170"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674aa7f0093dad7d6954a9f78ee6e8b5b68ea51c", "fields": {"nom_de_la_commune": "ESTENOS", "libell_d_acheminement": "ESTENOS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31176"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25167fbca22f2e354b209393d817c9c5c46c8932", "fields": {"nom_de_la_commune": "FENOUILLET", "libell_d_acheminement": "FENOUILLET", "code_postal": "31150", "coordonnees_gps": [43.7088681187, 1.39635626813], "code_commune_insee": "31182"}, "geometry": {"type": "Point", "coordinates": [1.39635626813, 43.7088681187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155aa5275fbf772e9558e39b86f8ae7c17df4266", "fields": {"nom_de_la_commune": "FIGAROL", "libell_d_acheminement": "FIGAROL", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31183"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a6a689097f99445fa03611b857d185b154a5944", "fields": {"nom_de_la_commune": "FOS", "libell_d_acheminement": "FOS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31190"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a5c3ea8ea34978ead06ca0dbaab087789214a9", "fields": {"nom_de_la_commune": "FRANQUEVIELLE", "libell_d_acheminement": "FRANQUEVIELLE", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31197"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a30b150002b53ccc71135c88c5a576b1db8094c", "fields": {"nom_de_la_commune": "FRONTON", "libell_d_acheminement": "FRONTON", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31202"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dd9e7f07fbb8d63bb202150f5b5410da2fa1f8f", "fields": {"nom_de_la_commune": "FROUZINS", "libell_d_acheminement": "FROUZINS", "code_postal": "31270", "coordonnees_gps": [43.5340423568, 1.33486531125], "code_commune_insee": "31203"}, "geometry": {"type": "Point", "coordinates": [1.33486531125, 43.5340423568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20d6a4c08ee4d61b5eecf5a751462625d1a560f4", "fields": {"nom_de_la_commune": "FUSTIGNAC", "libell_d_acheminement": "FUSTIGNAC", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31204"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001d994d26422d1e94e2aa38cee7460da58f343d", "fields": {"nom_de_la_commune": "GARDOUCH", "libell_d_acheminement": "GARDOUCH", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31210"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bca0faa8673212f8bcfc82400e0784852104f94", "fields": {"nom_de_la_commune": "GARGAS", "libell_d_acheminement": "GARGAS", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31211"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8a2fb7825022d27c2928a2f4772f9f587f92646", "fields": {"nom_de_la_commune": "GAURE", "libell_d_acheminement": "GAURE", "code_postal": "31590", "coordonnees_gps": [43.6511913852, 1.64656678771], "code_commune_insee": "31215"}, "geometry": {"type": "Point", "coordinates": [1.64656678771, 43.6511913852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "172bfdba2c2f919cf6c793b2094f9709cff09ad4", "fields": {"nom_de_la_commune": "GOUAUX DE LUCHON", "libell_d_acheminement": "GOUAUX DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31222"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d888f44a5487cb8d47ebd59b6e6b9d98b97fc038", "fields": {"nom_de_la_commune": "GOUTEVERNISSE", "libell_d_acheminement": "GOUTEVERNISSE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31225"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af708980c130b0a2753c8d6a0cba4cfc2f05ec89", "fields": {"nom_de_la_commune": "GOYRANS", "libell_d_acheminement": "GOYRANS", "code_postal": "31120", "coordonnees_gps": [43.5086807596, 1.39534123704], "code_commune_insee": "31227"}, "geometry": {"type": "Point", "coordinates": [1.39534123704, 43.5086807596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a796c6ed155ff82a81d6eb412fed0111e4fdb1", "fields": {"nom_de_la_commune": "GURAN", "libell_d_acheminement": "GURAN", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31235"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf60a3fe9a22285b92cfb6be6aabd5aed4b989c", "fields": {"nom_de_la_commune": "HUOS", "libell_d_acheminement": "HUOS", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31238"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96842822f522477cbe85fbb941ae57d9644f4a5c", "fields": {"nom_de_la_commune": "LABROQUERE", "libell_d_acheminement": "LABROQUERE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31255"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6055d4eaac74671a67b444e7647e2470fee51eb4", "fields": {"nom_de_la_commune": "LAHAGE", "libell_d_acheminement": "LAHAGE", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31266"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "884195706605e923229aeda59f237ab16e1dda5f", "fields": {"nom_de_la_commune": "LANTA", "libell_d_acheminement": "LANTA", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31271"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8b0b7623cdddf84101f0096e5b647b999c3ca82", "fields": {"nom_de_la_commune": "LAPEYRERE", "libell_d_acheminement": "LAPEYRERE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31272"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c509302c8f07e83498509adf836ef552818ecfed", "fields": {"nom_de_la_commune": "LATOUR", "libell_d_acheminement": "LATOUR", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31279"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afe2fc377bbe7bb1567d30e58989c68db31381bb", "fields": {"nom_de_la_commune": "LAUNAC", "libell_d_acheminement": "LAUNAC", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31281"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1713a6f3027f3c8d4a686db538d2d29c19f70c2", "fields": {"nom_de_la_commune": "LEGE", "libell_d_acheminement": "LEGE", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31290"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb62caa069e22f795f56dd3bcebbae7e6ed4d45f", "fields": {"nom_de_la_commune": "LEGUEVIN", "libell_d_acheminement": "LEGUEVIN", "code_postal": "31490", "coordonnees_gps": [43.5952608538, 1.22974000355], "code_commune_insee": "31291"}, "geometry": {"type": "Point", "coordinates": [1.22974000355, 43.5952608538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1e70e3c5352ca12e9ea8bb8b489c42ee7561639", "fields": {"nom_de_la_commune": "LESTELLE DE ST MARTORY", "libell_d_acheminement": "LESTELLE DE ST MARTORY", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31296"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5797969ffd40e52e18827046a964cfd1d41f9a4", "fields": {"nom_de_la_commune": "LOUBENS LAURAGAIS", "libell_d_acheminement": "LOUBENS LAURAGAIS", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31304"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e6cc09d6a8f13bdcd8e0e5d8c2e59defb42c04", "fields": {"nom_de_la_commune": "MANE", "libell_d_acheminement": "MANE", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31315"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b1e945106324a8fd7a3bd7b545f42f55acbda1b", "fields": {"nom_de_la_commune": "MARIGNAC LASPEYRES", "libell_d_acheminement": "MARIGNAC LASPEYRES", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31318"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f2a96017b114c0f98a11e98cdc18937c35b0ac3", "fields": {"nom_de_la_commune": "MARTRES TOLOSANE", "libell_d_acheminement": "MARTRES TOLOSANE", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31324"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eae2716155ee2272ef1007204c65197b0aa91b09", "fields": {"nom_de_la_commune": "MASCARVILLE", "libell_d_acheminement": "MASCARVILLE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31325"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad539529b9a56e31e2d85ec18f7d2c731ba383a", "fields": {"nom_de_la_commune": "MAUREMONT", "libell_d_acheminement": "MAUREMONT", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31328"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87682e8b9968db32fc61cfcd90f6834e55c005a", "fields": {"nom_de_la_commune": "MAUZAC", "libell_d_acheminement": "MAUZAC", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31334"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e2172bbd8e95761a51c30f1861b0ff6fa656956", "fields": {"nom_de_la_commune": "MELLES", "libell_d_acheminement": "MELLES", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31337"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc17f07d25b8a92e57f23344e1aac9324304af6c", "fields": {"nom_de_la_commune": "MENVILLE", "libell_d_acheminement": "MENVILLE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31338"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2b650aac246ac5709cf9141f1f93eef866056b", "fields": {"nom_de_la_commune": "MIREMONT", "libell_d_acheminement": "MIREMONT", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31345"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a392226f38f9be5489d9284af5acd666c538eb", "fields": {"nom_de_la_commune": "MONESTROL", "libell_d_acheminement": "MONESTROL", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31354"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ae74150fd3a4dfc366ca6043ab013cf8c26a1c", "fields": {"nom_de_la_commune": "MONTAIGUT SUR SAVE", "libell_d_acheminement": "MONTAIGUT SUR SAVE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31356"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce547e26668fe387f5d76a4cc49f0dfd59ec141", "fields": {"nom_de_la_commune": "MONTASTRUC DE SALIES", "libell_d_acheminement": "MONTASTRUC DE SALIES", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31357"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6593b0e20f3a3d18e0a911564a18b6871e39c2d5", "fields": {"nom_de_la_commune": "MONTBERON", "libell_d_acheminement": "MONTBERON", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31364"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e2761dfc03b87c51e7ebcff024cf30dda502ee6", "fields": {"nom_de_la_commune": "MONTBRUN BOCAGE", "libell_d_acheminement": "MONTBRUN BOCAGE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31365"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef05cc6fdf8ad726a070d63b0621cbf9459f6614", "fields": {"nom_de_la_commune": "MONTESQUIEU GUITTAUT", "libell_d_acheminement": "MONTESQUIEU GUITTAUT", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31373"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9975a315ff923869b69ccf27b71fb6d9c07a733", "fields": {"nom_de_la_commune": "MONTGEARD", "libell_d_acheminement": "MONTGEARD", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31380"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84611d0c2e5cecb2bb23fce9b821f2dc166379d4", "fields": {"nom_de_la_commune": "MONTJOIRE", "libell_d_acheminement": "MONTJOIRE", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31383"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55451a48dbbef890cc717da7cd30493e33d833c7", "fields": {"nom_de_la_commune": "MONTLAUR", "libell_d_acheminement": "MONTLAUR", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31384"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61217f167cb436b04228afd8078ffd0ad36a3eaf", "fields": {"nom_de_la_commune": "MONTOUSSIN", "libell_d_acheminement": "MONTOUSSIN", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31387"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32ffdfdf7a0a2a7f04f08ae9c3a6de1258c6f8a4", "fields": {"nom_de_la_commune": "MOURVILLES HAUTES", "libell_d_acheminement": "MOURVILLES HAUTES", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31393"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc9ff9c91568aff2a1276fd84c2a4d70a66ebf5a", "fields": {"nom_de_la_commune": "NIZAN GESSE", "libell_d_acheminement": "NIZAN GESSE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31398"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90e32f60414d0953477021ae747cb1cdb2b6eb6", "fields": {"nom_de_la_commune": "NOGARET", "libell_d_acheminement": "NOGARET", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31400"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "401d949ffd3c740c4efdd57427d2d12f5460a0db", "fields": {"nom_de_la_commune": "OO", "libell_d_acheminement": "OO", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31404"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b26259a82165f3e5d34f728678b4fac128890e4", "fields": {"nom_de_la_commune": "PECHABOU", "libell_d_acheminement": "PECHABOU", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31409"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df7234fb196549900141773ba145d6f1be0f4320", "fields": {"nom_de_la_commune": "PELLEPORT", "libell_d_acheminement": "PELLEPORT", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31413"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49200789c8b62e2af2f10dbcc97e3f637aed72e3", "fields": {"nom_de_la_commune": "PONLAT TAILLEBOURG", "libell_d_acheminement": "PONLAT TAILLEBOURG", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31430"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e2bf194a5acb600d01317aa0ffa632bc25bda5", "fields": {"nom_de_la_commune": "PORTET DE LUCHON", "libell_d_acheminement": "PORTET DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31432"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82cd6ea1e4df518ea68a2cdad2f9facbd945e0f", "fields": {"nom_de_la_commune": "RIEUCAZE", "libell_d_acheminement": "RIEUCAZE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31452"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519f40c501850de9043f62a20762101944614114", "fields": {"nom_de_la_commune": "ROQUES", "libell_d_acheminement": "ROQUES", "code_postal": "31120", "coordonnees_gps": [43.5086807596, 1.39534123704], "code_commune_insee": "31458"}, "geometry": {"type": "Point", "coordinates": [1.39534123704, 43.5086807596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08da58e076f67271db69728ee0d62434b5a35e69", "fields": {"nom_de_la_commune": "ROUMENS", "libell_d_acheminement": "ROUMENS", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31463"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1dbe57327224d69452dc28989fdba9b495a5ff", "fields": {"nom_de_la_commune": "ST ARAILLE", "libell_d_acheminement": "ST ARAILLE", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31469"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1147aa381b99f0ed40dbf07569c95b674fd650a", "fields": {"nom_de_la_commune": "ST AVENTIN", "libell_d_acheminement": "ST AVENTIN", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31470"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e81f2c15b5a5d51d31dc0fc437d099ab82ae6de1", "fields": {"nom_de_la_commune": "ST BEAT", "libell_d_acheminement": "ST BEAT", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31471"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40251cc9a621d0bfa50848a84fa458707da147f7", "fields": {"nom_de_la_commune": "ST FERREOL DE COMMINGES", "libell_d_acheminement": "ST FERREOL DE COMMINGES", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31479"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee3e2a0a16f180edac89d82e379886a10722d0a", "fields": {"nom_de_la_commune": "STE FOY D AIGREFEUILLE", "libell_d_acheminement": "STE FOY D AIGREFEUILLE", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31480"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24976c8098a16cb7630ef371202fbb49a5510409", "fields": {"nom_de_la_commune": "ST JULIEN SUR GARONNE", "libell_d_acheminement": "ST JULIEN SUR GARONNE", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31492"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f09ce010e66f3b288114e0d023c51683685be7", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31494"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc36c4e66eb378105279333558591d1fde3921c1", "fields": {"nom_de_la_commune": "ST LYS", "libell_d_acheminement": "ST LYS", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31499"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec92ded9bfc0a4dd23e78fed40f7c8a512958562", "fields": {"nom_de_la_commune": "ST MARCEL PAULEL", "libell_d_acheminement": "ST MARCEL PAULEL", "code_postal": "31590", "coordonnees_gps": [43.6511913852, 1.64656678771], "code_commune_insee": "31501"}, "geometry": {"type": "Point", "coordinates": [1.64656678771, 43.6511913852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf7a308f1f7462f0961b44ad643fe2553a90e2a3", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31504"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6465969cb3cf3438d0cb6bc29f29f5dbb4bd56c", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "31590", "coordonnees_gps": [43.6511913852, 1.64656678771], "code_commune_insee": "31511"}, "geometry": {"type": "Point", "coordinates": [1.64656678771, 43.6511913852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293ab0c54b2d837d91be3492a808ba8912389123", "fields": {"nom_de_la_commune": "SAMOUILLAN", "libell_d_acheminement": "SAMOUILLAN", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31529"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1b07662118f6532dbbdb78dd713d182ca1a7842", "fields": {"nom_de_la_commune": "SAUVETERRE DE COMMINGES", "libell_d_acheminement": "SAUVETERRE DE COMMINGES", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31535"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc109d069f711dc790eeda700c13431de426e7a0", "fields": {"nom_de_la_commune": "SAVERES", "libell_d_acheminement": "SAVERES", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31538"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c25541517edefcc07c06fed6d9e8f2c1927e449", "fields": {"nom_de_la_commune": "SEILH", "libell_d_acheminement": "SEILH", "code_postal": "31840", "coordonnees_gps": [43.6853114113, 1.33718819111], "code_commune_insee": "31541"}, "geometry": {"type": "Point", "coordinates": [1.33718819111, 43.6853114113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd7dd28fe97afec5fbecebeb78bebd1abab80a20", "fields": {"nom_de_la_commune": "VILLEREAU", "libell_d_acheminement": "VILLEREAU", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45342"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa97e2d54e2e81f21407ea7cdbd76f30c448254d", "fields": {"nom_de_la_commune": "VILLEVOQUES", "libell_d_acheminement": "VILLEVOQUES", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45343"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2256b82dfef535db11fc7737aa7d0754d5a0976d", "fields": {"nom_de_la_commune": "VITRY AUX LOGES", "libell_d_acheminement": "VITRY AUX LOGES", "code_postal": "45530", "coordonnees_gps": [47.9488737088, 2.29855578175], "code_commune_insee": "45346"}, "geometry": {"type": "Point", "coordinates": [2.29855578175, 47.9488737088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a8b64d17b22f40b51355bd9360d1d062762a82d", "fields": {"nom_de_la_commune": "ANGLARS NOZAC", "libell_d_acheminement": "ANGLARS NOZAC", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46006"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fcee7a45029c9eff5ab03549c9754e189554bfa", "fields": {"nom_de_la_commune": "BALADOU", "libell_d_acheminement": "BALADOU", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46016"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311ba2eb802f9c6a8fa1aaa6acbbcf2815e2098b", "fields": {"nom_de_la_commune": "BELFORT DU QUERCY", "libell_d_acheminement": "BELFORT DU QUERCY", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46023"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56667b26ceb6d729b4346d81d00616fc39296cef", "fields": {"nom_de_la_commune": "BIARS SUR CERE", "libell_d_acheminement": "BIARS SUR CERE", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46029"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b8f1d542165cb7de2e7bfea15b0be00af28896", "fields": {"nom_de_la_commune": "LE BOURG", "libell_d_acheminement": "LE BOURG", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46034"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfdfd34128a7db271d9c3849093e8dce6eb477e", "fields": {"nom_de_la_commune": "CADRIEU", "libell_d_acheminement": "CADRIEU", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46041"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff6a8232976b58c35cfe1d54c0bd9f0a5c84a3f", "fields": {"nom_de_la_commune": "CAHUS", "libell_d_acheminement": "CAHUS", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46043"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eebb5f1d5ac571a3194f445b6d620d763db73d8f", "fields": {"nom_de_la_commune": "CAMBES", "libell_d_acheminement": "CAMBES", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46051"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de44a22caf2a8e902a4417d75bb5162e000f57af", "fields": {"nom_de_la_commune": "CARENNAC", "libell_d_acheminement": "CARENNAC", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46058"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02fc56214000c828a53cd40e29bca21e4f604da2", "fields": {"nom_de_la_commune": "CASSAGNES", "libell_d_acheminement": "CASSAGNES", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46061"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfb34e37faed8e7e3a07d0177ad3c6fab25f6c65", "fields": {"nom_de_la_commune": "CATUS", "libell_d_acheminement": "CATUS", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46064"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fc8986daa4d8a3c84426464d45b73e1736ff9b", "fields": {"nom_de_la_commune": "CAVAGNAC", "libell_d_acheminement": "CAVAGNAC", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46065"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8afe4609ef9d28c5515d4560baab3dc064c4be7", "fields": {"nom_de_la_commune": "CEZAC", "libell_d_acheminement": "CEZAC", "code_postal": "46170", "coordonnees_gps": [44.2978599733, 1.37150326445], "code_commune_insee": "46069"}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4088e4fbd65efb1da47a1717bb28297fd2e9c6c3", "fields": {"nom_de_la_commune": "CRAS", "libell_d_acheminement": "CRAS", "code_postal": "46360", "coordonnees_gps": [44.5788373248, 1.59698113973], "code_commune_insee": "46079"}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d279746bf06f5f1a442bb1c9c084ef07ba04103", "fields": {"nom_de_la_commune": "CREMPS", "libell_d_acheminement": "CREMPS", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46082"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa92f9470d269771c3543e4f19c71880757e6be", "fields": {"nom_de_la_commune": "CREYSSE", "libell_d_acheminement": "CREYSSE", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46084"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f87de45f6b8cb5135e54ebf1241ae36b1a07889b", "fields": {"nom_de_la_commune": "CUZANCE", "libell_d_acheminement": "CUZANCE", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46086"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b86ba216d2e03835ce89d0d68d3a394a7b5773", "fields": {"nom_de_la_commune": "ESPAGNAC STE EULALIE", "libell_d_acheminement": "ESPAGNAC STE EULALIE", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46093"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bee75b90bbdaad46410794a5d0b012ad40404d4", "fields": {"nom_de_la_commune": "FARGUES", "libell_d_acheminement": "FARGUES", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46099"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49fdc1c29b0f34ce1df58c75a1cfa7fc387347f5", "fields": {"nom_de_la_commune": "FAYCELLES", "libell_d_acheminement": "FAYCELLES", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46100"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ec50559aa5c36ac87b5c31f5f684dd2bdc8998d", "fields": {"nom_de_la_commune": "FONS", "libell_d_acheminement": "FONS", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46108"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca54c1b276fe50332e07f8337c8aa8a90be14fb1", "fields": {"nom_de_la_commune": "FRANCOULES", "libell_d_acheminement": "FRANCOULES", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46112"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dec07d6e7f476d64dbfe189cb0fbfba3fdc3a72", "fields": {"nom_de_la_commune": "FRAYSSINHES", "libell_d_acheminement": "FRAYSSINHES", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46115"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dd54fc6343ee327372fb71d7a258aa95ccbafb6", "fields": {"nom_de_la_commune": "GIRAC", "libell_d_acheminement": "GIRAC", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46123"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0988788155c776d66e6943a2c882c814e65937b", "fields": {"nom_de_la_commune": "ISSENDOLUS", "libell_d_acheminement": "ISSENDOLUS", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46132"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e8cec903b5892670fc3b7da40a14a4d863a305", "fields": {"nom_de_la_commune": "ISSEPTS", "libell_d_acheminement": "ISSEPTS", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46133"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe0f7cac2b14fca23f9365b83b88e85d4a2d1edd", "fields": {"nom_de_la_commune": "LABASTIDE MARNHAC", "libell_d_acheminement": "LABASTIDE MARNHAC", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46137"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17e042a5f9d9fac7dfbc030549f283ac96c064b5", "fields": {"code_postal": "46240", "code_commune_insee": "46138", "libell_d_acheminement": "COEUR DE CAUSSE", "ligne_5": "FONTANES DU CAUSSE", "nom_de_la_commune": "COEUR DE CAUSSE", "coordonnees_gps": [44.6554006937, 1.59713194799]}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aad88a62368eec2ceb710e92a36a77971b86db4", "fields": {"code_postal": "46240", "code_commune_insee": "46138", "libell_d_acheminement": "COEUR DE CAUSSE", "ligne_5": "LABASTIDE MURAT", "nom_de_la_commune": "COEUR DE CAUSSE", "coordonnees_gps": [44.6554006937, 1.59713194799]}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04646d7907551da1bc6e9d53aa511d54956dddc0", "fields": {"nom_de_la_commune": "LABURGADE", "libell_d_acheminement": "LABURGADE", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46140"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "161dbedd8c1c27a92145551d5dbdb713c00b27c3", "fields": {"nom_de_la_commune": "LACHAPELLE AUZAC", "libell_d_acheminement": "LACHAPELLE AUZAC", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46145"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ff9dc47e82333c632633b3567a730d03711f83", "fields": {"nom_de_la_commune": "LADIRAT", "libell_d_acheminement": "LADIRAT", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46146"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8004499782ba68f3ac69e344cc835af1cf50c81", "fields": {"nom_de_la_commune": "LAMAGDELAINE", "libell_d_acheminement": "LAMAGDELAINE", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46149"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f59f1a6f5d2165738cc6c25dd19c1fcc5ff3be50", "fields": {"nom_de_la_commune": "LAMOTHE FENELON", "libell_d_acheminement": "LAMOTHE FENELON", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46152"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a74ecaf5b1f7d97028946d1f0946b95f290df30", "fields": {"nom_de_la_commune": "LAROQUE DES ARCS", "libell_d_acheminement": "LAROQUE DES ARCS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46156"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bf822bcdd55f7c8e93921dac8e2c4d85a781ce6", "fields": {"nom_de_la_commune": "LATOUILLE LENTILLAC", "libell_d_acheminement": "LATOUILLE LENTILLAC", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46159"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb5c92c98caf320fc0233d5042fa791a892756ab", "fields": {"nom_de_la_commune": "LAVERCANTIERE", "libell_d_acheminement": "LAVERCANTIERE", "code_postal": "46340", "coordonnees_gps": [44.6657598644, 1.30345191373], "code_commune_insee": "46164"}, "geometry": {"type": "Point", "coordinates": [1.30345191373, 44.6657598644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d877e22c21d9579acf835b95b21227fd93e4aab", "fields": {"nom_de_la_commune": "LENTILLAC ST BLAISE", "libell_d_acheminement": "LENTILLAC ST BLAISE", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46168"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edd1ff5a009e62a4b63a68ebde114338e19a306d", "fields": {"nom_de_la_commune": "LUNAN", "libell_d_acheminement": "LUNAN", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46180"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24d0823f7085e87a1f478db72e4c99e6d6020cac", "fields": {"nom_de_la_commune": "MAUROUX", "libell_d_acheminement": "MAUROUX", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46187"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70956c4bcddff6a640547607bc936fb5e7cc19c7", "fields": {"nom_de_la_commune": "MOLIERES", "libell_d_acheminement": "MOLIERES", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46195"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "995118434fcfbe994b3e0c0e00902f3cfd793c56", "fields": {"nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", "libell_d_acheminement": "MONTCUQ EN QUERCY BLANC", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46201"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f757e63be32f8a9554f4faee242618cead76e6", "fields": {"code_postal": "46800", "code_commune_insee": "46201", "libell_d_acheminement": "MONTCUQ EN QUERCY BLANC", "ligne_5": "STE CROIX", "nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", "coordonnees_gps": [44.3585211768, 1.21527135512]}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c45782674e3cb216a85e49fd3e81fdfe83cd5a3", "fields": {"nom_de_la_commune": "MONTET ET BOUXAL", "libell_d_acheminement": "MONTET ET BOUXAL", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46203"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a397bcfeebb604d837ff894d968f746cdd56270c", "fields": {"nom_de_la_commune": "MONTGESTY", "libell_d_acheminement": "MONTGESTY", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46205"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6181845ece1132ed3ef22cb1e4a7e9f69684ea6", "fields": {"nom_de_la_commune": "NUZEJOULS", "libell_d_acheminement": "NUZEJOULS", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46211"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25be8aa17a3516aef7e533f5b1cc97d1a4ef975", "fields": {"nom_de_la_commune": "PAYRAC", "libell_d_acheminement": "PAYRAC", "code_postal": "46350", "coordonnees_gps": [44.8071332775, 1.48114774786], "code_commune_insee": "46215"}, "geometry": {"type": "Point", "coordinates": [1.48114774786, 44.8071332775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b647ee392998055c9d89939dda0aba8c3a66a1", "fields": {"nom_de_la_commune": "PESCADOIRES", "libell_d_acheminement": "PESCADOIRES", "code_postal": "46220", "coordonnees_gps": [44.5097292644, 1.18339970147], "code_commune_insee": "46218"}, "geometry": {"type": "Point", "coordinates": [1.18339970147, 44.5097292644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3097a59aa66b6b6f31c1a5ba6ea64c4baffc7b6", "fields": {"nom_de_la_commune": "PLANIOLES", "libell_d_acheminement": "PLANIOLES", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46221"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc8cd5c01dc8109d65a55c179a7eeb4b886acca", "fields": {"nom_de_la_commune": "PRUDHOMAT", "libell_d_acheminement": "PRUDHOMAT", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46228"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7334ab441ad66f0686cc981eb583726eddcd21e4", "fields": {"nom_de_la_commune": "RAMPOUX", "libell_d_acheminement": "RAMPOUX", "code_postal": "46340", "coordonnees_gps": [44.6657598644, 1.30345191373], "code_commune_insee": "46234"}, "geometry": {"type": "Point", "coordinates": [1.30345191373, 44.6657598644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a59ba166515d1298083a0c59eb5ed8cb086d3db", "fields": {"nom_de_la_commune": "REILHAC", "libell_d_acheminement": "REILHAC", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46235"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfea63dd0d6af90d4534481fdc99f1138bd9abfe", "fields": {"nom_de_la_commune": "SABADEL LATRONQUIERE", "libell_d_acheminement": "SABADEL LATRONQUIERE", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46244"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d4dd166a879f692bd6840a3139ddaaa088d453f", "fields": {"nom_de_la_commune": "SABADEL LAUZES", "libell_d_acheminement": "SABADEL LAUZES", "code_postal": "46360", "coordonnees_gps": [44.5788373248, 1.59698113973], "code_commune_insee": "46245"}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af79a06a33adc3b519c998abcad7542eedc07c90", "fields": {"nom_de_la_commune": "SAIGNES", "libell_d_acheminement": "SAIGNES", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46246"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "651bfc5b2093d3b8358ddd60c76f53cd26882f8a", "fields": {"nom_de_la_commune": "ST CAPRAIS", "libell_d_acheminement": "ST CAPRAIS", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46250"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b94c4428ed6023335143fd55303d03c2a8f95d84", "fields": {"nom_de_la_commune": "ST CERE", "libell_d_acheminement": "ST CERE", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46251"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a66557f88dcdb3c69ca2f94fce97d36f1acc88c", "fields": {"nom_de_la_commune": "ST DAUNES", "libell_d_acheminement": "ST DAUNES", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46263"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0b8f84663019afa121e9c39dd100cf6677b163b", "fields": {"nom_de_la_commune": "ST DENIS CATUS", "libell_d_acheminement": "ST DENIS CATUS", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46264"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb4cf12d6ee3b16d865787ce1a33fb40fd226bc", "fields": {"nom_de_la_commune": "ST DENIS LES MARTEL", "libell_d_acheminement": "ST DENIS LES MARTEL", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46265"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049dcff1010e02b5b6813a95eb7eb7d76bbcf4f6", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "46210", "coordonnees_gps": [44.7778876008, 2.08086087379], "code_commune_insee": "46269"}, "geometry": {"type": "Point", "coordinates": [2.08086087379, 44.7778876008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a82bf2010a837278edeee2341160d799ace8e0", "fields": {"nom_de_la_commune": "ST JEAN DE LAUR", "libell_d_acheminement": "ST JEAN DE LAUR", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46270"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ef80c5a54f83fc355390d24ec038a52eaf68d5", "fields": {"nom_de_la_commune": "ST LAURENT LOLMIE", "libell_d_acheminement": "ST LAURENT LOLMIE", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46274"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bfc5a31a40c570e38ced0b9fb252417ec18aaa1", "fields": {"nom_de_la_commune": "ST PIERRE TOIRAC", "libell_d_acheminement": "ST PIERRE TOIRAC", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46289"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f857b4311b71c4ef7c0a34414eabd78fc293305", "fields": {"nom_de_la_commune": "ST SOZY", "libell_d_acheminement": "ST SOZY", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46293"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae04b99068496c0f57b65a777f2b5be8d6d2ff74", "fields": {"nom_de_la_commune": "ST VINCENT DU PENDIT", "libell_d_acheminement": "ST VINCENT DU PENDIT", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46295"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8b61a6ac6fcdb9b0f8c0540691476f20832926b", "fields": {"nom_de_la_commune": "SAUX", "libell_d_acheminement": "SAUX", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46300"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e23413b495804f971d6fa9f6e513e0fbdfc9c51", "fields": {"nom_de_la_commune": "SAUZET", "libell_d_acheminement": "SAUZET", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46301"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e602ca0cf3fde3b08e1b00c025237a47cd69d7cd", "fields": {"nom_de_la_commune": "SONAC", "libell_d_acheminement": "SONAC", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46306"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64d8434bb081bbf233bb981b46522dda2703d6c", "fields": {"nom_de_la_commune": "SOUCIRAC", "libell_d_acheminement": "SOUCIRAC", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46308"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27dcec49240e7454bff4354d773b5dc186a6f844", "fields": {"code_postal": "46190", "code_commune_insee": "46311", "libell_d_acheminement": "SOUSCEYRAC EN QUERCY", "ligne_5": "LACAM D OURCET", "nom_de_la_commune": "SOUSCEYRAC EN QUERCY", "coordonnees_gps": [44.886802824, 2.02091707559]}, "geometry": {"type": "Point", "coordinates": [2.02091707559, 44.886802824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0f955cb942ae178f148104eccbdfe1f31a937b", "fields": {"nom_de_la_commune": "UZECH", "libell_d_acheminement": "UZECH", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46324"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e437676f0f373e7b5d7f5131b69fd29d5166b73", "fields": {"nom_de_la_commune": "AGEN", "libell_d_acheminement": "AGEN", "code_postal": "47000", "coordonnees_gps": [44.2024127205, 0.625779253608], "code_commune_insee": "47001"}, "geometry": {"type": "Point", "coordinates": [0.625779253608, 44.2024127205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19833c6f296c704111288d38efa59983dd07e761", "fields": {"nom_de_la_commune": "AGNAC", "libell_d_acheminement": "AGNAC", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47003"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "818ecb1690261a8f59367abd95672764d119f884", "fields": {"nom_de_la_commune": "AUBIAC", "libell_d_acheminement": "AUBIAC", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47016"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be84a62576d7cd3db5b354d0bce52969894ef734", "fields": {"nom_de_la_commune": "AURADOU", "libell_d_acheminement": "AURADOU", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47017"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de9027347142b1e407ef9262bb098fae691523b1", "fields": {"nom_de_la_commune": "BEAUPUY", "libell_d_acheminement": "BEAUPUY", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47024"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e55bb451ce06668e207e509de18bac7b8224c0", "fields": {"nom_de_la_commune": "BIRAC SUR TREC", "libell_d_acheminement": "BIRAC SUR TREC", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47028"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118f22de22e608ac84d9027d02ee65ad9abc8cdf", "fields": {"nom_de_la_commune": "BLANQUEFORT SUR BRIOLANCE", "libell_d_acheminement": "BLANQUEFORT SUR BRIOLANCE", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47029"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e51d97b5ad1f67f959c8043309cf5e3d81d0933", "fields": {"nom_de_la_commune": "BOE", "libell_d_acheminement": "BOE", "code_postal": "47550", "coordonnees_gps": [44.1702951945, 0.64636771159], "code_commune_insee": "47031"}, "geometry": {"type": "Point", "coordinates": [0.64636771159, 44.1702951945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93e5fb7c6884dd96712cdc2c35f174784a26b0ae", "fields": {"nom_de_la_commune": "BON ENCONTRE", "libell_d_acheminement": "BON ENCONTRE", "code_postal": "47240", "coordonnees_gps": [44.1950523774, 0.697905787009], "code_commune_insee": "47032"}, "geometry": {"type": "Point", "coordinates": [0.697905787009, 44.1950523774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f99a545e1346243c7a86d1f1ce41c6f5e4aba04e", "fields": {"nom_de_la_commune": "BOURLENS", "libell_d_acheminement": "BOURLENS", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47036"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9f8ac82c1051cffd7be2abe850d9376449b2b61", "fields": {"nom_de_la_commune": "BOUSSES", "libell_d_acheminement": "BOUSSES", "code_postal": "47420", "coordonnees_gps": [44.190114172, 0.0302523935969], "code_commune_insee": "47039"}, "geometry": {"type": "Point", "coordinates": [0.0302523935969, 44.190114172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "194dd875df1a7133fa8505eb6da2c4a5a00f5412", "fields": {"nom_de_la_commune": "CAHUZAC", "libell_d_acheminement": "CAHUZAC", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47044"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61917c5c0a63e7f4ec276213d795cf5d2d3e8000", "fields": {"nom_de_la_commune": "CHAMESEY", "libell_d_acheminement": "CHAMESEY", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25113"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5317793b72db3fb7b0ffb5b5908693ae536b239a", "fields": {"nom_de_la_commune": "CHAMPOUX", "libell_d_acheminement": "CHAMPOUX", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25117"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2311fea07a18efee506868f59c1aea305fede25a", "fields": {"nom_de_la_commune": "CHAPELLE DES BOIS", "libell_d_acheminement": "CHAPELLE DES BOIS", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25121"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "549bd5e3c869e9c4be3c4a7484e25e12f335d143", "fields": {"nom_de_la_commune": "CHARMOILLE", "libell_d_acheminement": "CHARMOILLE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25125"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca0605270659bb9c631c3e26e3a47d8c9edde48", "fields": {"nom_de_la_commune": "CHASSAGNE ST DENIS", "libell_d_acheminement": "CHASSAGNE ST DENIS", "code_postal": "25290", "coordonnees_gps": [47.1021279633, 6.08388420751], "code_commune_insee": "25129"}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4f76d59c381dd94836b548a30a0db16c25c337", "fields": {"nom_de_la_commune": "CHAUX LES PASSAVANT", "libell_d_acheminement": "CHAUX LES PASSAVANT", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25141"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8318b9e229376051e0f558ab987c31ce5475493", "fields": {"nom_de_la_commune": "LA CHEVILLOTTE", "libell_d_acheminement": "LA CHEVILLOTTE", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25152"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eecc50b2b08dec6c693d90c43fd705e3cdb64b77", "fields": {"nom_de_la_commune": "CONSOLATION MAISONNETTES", "libell_d_acheminement": "CONSOLATION MAISONNETTES", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25161"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656b2bb7f6c3b602f4dd86710a3cf5d06455f0f2", "fields": {"nom_de_la_commune": "CORCELLE MIESLOT", "libell_d_acheminement": "CORCELLE MIESLOT", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25163"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374e99643b127dc458549817568f91b8453f2e1b", "fields": {"nom_de_la_commune": "COURCHAPON", "libell_d_acheminement": "COURCHAPON", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25172"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1ef26089774d78ed8f6997aa579702512524f67", "fields": {"nom_de_la_commune": "COUR ST MAURICE", "libell_d_acheminement": "COUR ST MAURICE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25173"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef02d6b6f690264e738ee98b6e58d37de42a7ec", "fields": {"nom_de_la_commune": "COURVIERES", "libell_d_acheminement": "COURVIERES", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25176"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c34e3917b8b21d26529427a5d45d30b63e2e280", "fields": {"nom_de_la_commune": "CROSEY LE PETIT", "libell_d_acheminement": "CROSEY LE PETIT", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25178"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c65d6879f0ff38a1d614da145729351392d0fe", "fields": {"nom_de_la_commune": "CASTILLON DE ST MARTORY", "libell_d_acheminement": "CASTILLON DE ST MARTORY", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31124"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c14e27b3363c9ade84e9d862ccf266ea8d148a", "fields": {"nom_de_la_commune": "CAZARILH LASPENES", "libell_d_acheminement": "CAZARILH LASPENES", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31129"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10b2e042a3addfe8141283251bb530455ed30ee9", "fields": {"nom_de_la_commune": "CHAUM", "libell_d_acheminement": "CHAUM", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31139"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9c752f2376bce982735187dd5e0f03a0737bfb", "fields": {"nom_de_la_commune": "CORRONSAC", "libell_d_acheminement": "CORRONSAC", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31151"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c213f1966e28ec6c716ca53416fde232d250a8", "fields": {"nom_de_la_commune": "ENCAUSSE LES THERMES", "libell_d_acheminement": "ENCAUSSE LES THERMES", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31167"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dfab61eefe29e6a14cd22ef0356c535493c85b9", "fields": {"nom_de_la_commune": "ESTADENS", "libell_d_acheminement": "ESTADENS", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31174"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d7ff25647d9570ae9e5823774e6627b0be192b0", "fields": {"nom_de_la_commune": "FALGA", "libell_d_acheminement": "FALGA", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31180"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da1f9d8039cefcc09a6ef7f3f87f5579e0d73ad", "fields": {"nom_de_la_commune": "LE FAUGA", "libell_d_acheminement": "LE FAUGA", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31181"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1105012ce3a7f48b06693c5df0ad9ff59d6a654a", "fields": {"nom_de_la_commune": "FOUGARON", "libell_d_acheminement": "FOUGARON", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31191"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b35663c697c32c78f48d137aa1d0d80c3bf40b", "fields": {"nom_de_la_commune": "FRANCAZAL", "libell_d_acheminement": "FRANCAZAL", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31195"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186d4d2019460579173d28bfc4a01eb00d0cee11", "fields": {"nom_de_la_commune": "GAILLAC TOULZA", "libell_d_acheminement": "GAILLAC TOULZA", "code_postal": "31550", "coordonnees_gps": [43.2904004473, 1.51499636485], "code_commune_insee": "31206"}, "geometry": {"type": "Point", "coordinates": [1.51499636485, 43.2904004473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7079faae785e42cd0d2fb02909b43b30439a462e", "fields": {"nom_de_la_commune": "GALIE", "libell_d_acheminement": "GALIE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31207"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6623da37874973083a6b381c13d476ace48192d1", "fields": {"nom_de_la_commune": "GARIN", "libell_d_acheminement": "GARIN", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31213"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0a071d1f0b349d9de1ef3566a5b417493367a0", "fields": {"nom_de_la_commune": "GENSAC DE BOULOGNE", "libell_d_acheminement": "GENSAC DE BOULOGNE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31218"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60805c625cee4deb511695616339c70792fc546e", "fields": {"nom_de_la_commune": "GIBEL", "libell_d_acheminement": "GIBEL", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31220"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fba138d76ff9f8d0f7b4d434cea44bf468d215c", "fields": {"nom_de_la_commune": "GOURDAN POLIGNAN", "libell_d_acheminement": "GOURDAN POLIGNAN", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31224"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36381bbb0de186bff62f94eb65e6f1bbc3218ead", "fields": {"nom_de_la_commune": "GREPIAC", "libell_d_acheminement": "GREPIAC", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31233"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ca43aad62a81a58a59243b9ad782cf3033018a", "fields": {"nom_de_la_commune": "LE GRES", "libell_d_acheminement": "LE GRES", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31234"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6566e674d8025f75842cf58ed293adb24085040a", "fields": {"nom_de_la_commune": "HERRAN", "libell_d_acheminement": "HERRAN", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31236"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7699f431b7f3803814739d40cea882b30f474e40", "fields": {"nom_de_la_commune": "JUZET DE LUCHON", "libell_d_acheminement": "JUZET DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31244"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a61d7c3ea2d125de2791a3af5b6248bce3908de2", "fields": {"nom_de_la_commune": "JUZET D IZAUT", "libell_d_acheminement": "JUZET D IZAUT", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31245"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d9667ee55d235751fd99f54593c12c6faadfad4", "fields": {"nom_de_la_commune": "LAGRAULET ST NICOLAS", "libell_d_acheminement": "LAGRAULET ST NICOLAS", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31265"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e7b9d2c8eeff3162c8ac5e7415a55b23abcdc97", "fields": {"nom_de_la_commune": "LAPEYROUSE FOSSAT", "libell_d_acheminement": "LAPEYROUSE FOSSAT", "code_postal": "31180", "coordonnees_gps": [43.6864958094, 1.52214716429], "code_commune_insee": "31273"}, "geometry": {"type": "Point", "coordinates": [1.52214716429, 43.6864958094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b23bc98dd8839776c537af6b16501eb2bed9a6b1", "fields": {"nom_de_la_commune": "LARCAN", "libell_d_acheminement": "LARCAN", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31274"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea688dd2bc64b518c8806b4937ff05d507e80bfc", "fields": {"nom_de_la_commune": "LAREOLE", "libell_d_acheminement": "LAREOLE", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31275"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d942a5723a566470dded76316e33d36eff1616", "fields": {"nom_de_la_commune": "LASSERRE", "libell_d_acheminement": "LASSERRE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31277"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0956dc188ebe936d050011493648a2fb7e063e40", "fields": {"nom_de_la_commune": "LAUNAGUET", "libell_d_acheminement": "LAUNAGUET", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31282"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d805600c5f50455a007c63ef112bb3fdbaa0431f", "fields": {"nom_de_la_commune": "LAUZERVILLE", "libell_d_acheminement": "LAUZERVILLE", "code_postal": "31650", "coordonnees_gps": [43.5547223319, 1.54753565987], "code_commune_insee": "31284"}, "geometry": {"type": "Point", "coordinates": [1.54753565987, 43.5547223319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900407efb6dc62868949c6bc24d716b87b23e699", "fields": {"nom_de_la_commune": "LAYRAC SUR TARN", "libell_d_acheminement": "LAYRAC SUR TARN", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31288"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da98282ff844ca33a5235a5661c3739c5401216", "fields": {"nom_de_la_commune": "LEZ", "libell_d_acheminement": "LEZ", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31298"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e8356b0f89e96a65f6b157065176326832071f", "fields": {"nom_de_la_commune": "LILHAC", "libell_d_acheminement": "LILHAC", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31301"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ceb72f094d3b68e849e71ef9b81d751a7dbd955", "fields": {"nom_de_la_commune": "LODES", "libell_d_acheminement": "LODES", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31302"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a17edbfc0ba95c6139ca9a67536965fa75b71a05", "fields": {"nom_de_la_commune": "LUX", "libell_d_acheminement": "LUX", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31310"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a53843b08f4ea9cfd4e562b2c4ddbd3b94023cd", "fields": {"nom_de_la_commune": "MARQUEFAVE", "libell_d_acheminement": "MARQUEFAVE", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31320"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6660d513b73d06de2a905f9a294f0b597aac0b5", "fields": {"nom_de_la_commune": "MARTISSERRE", "libell_d_acheminement": "MARTISSERRE", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31322"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "918ad70394645fbfba20bc3a7629b0c267464562", "fields": {"nom_de_la_commune": "MAURESSAC", "libell_d_acheminement": "MAURESSAC", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31330"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71d299a4540054747c0b9e233bb009a62df5a422", "fields": {"nom_de_la_commune": "MONCAUP", "libell_d_acheminement": "MONCAUP", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31348"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a66b14f0a6c405d9a7f45ca67dd20bfa01a152b", "fields": {"nom_de_la_commune": "MONTASTRUC SAVES", "libell_d_acheminement": "MONTASTRUC SAVES", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31359"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17567205dcf4814d32b296e38331c508d49a2f81", "fields": {"nom_de_la_commune": "MONTAUBAN DE LUCHON", "libell_d_acheminement": "MONTAUBAN DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31360"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ecc0299a27ade837f79dcaccce6b45b81b9a885", "fields": {"nom_de_la_commune": "MONTBERNARD", "libell_d_acheminement": "MONTBERNARD", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31363"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c674c3281ee11f4b9dd0e5f6633ed15f5ff11ff", "fields": {"nom_de_la_commune": "MONTCLAR LAURAGAIS", "libell_d_acheminement": "MONTCLAR LAURAGAIS", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31368"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "088961516fa70aef25719afab88c3f937a63f932", "fields": {"nom_de_la_commune": "MONTGAILLARD LAURAGAIS", "libell_d_acheminement": "MONTGAILLARD LAURAGAIS", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31377"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d7811563e5f3907b6913c3719ce5d28d42ad2b9", "fields": {"nom_de_la_commune": "MONTGAZIN", "libell_d_acheminement": "MONTGAZIN", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31379"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6344a93acbc98a3f5323412daf5488a5c7954e4c", "fields": {"nom_de_la_commune": "MOUSTAJON", "libell_d_acheminement": "MOUSTAJON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31394"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ead11d19c0344c69ed7f811582d62dca22ab47", "fields": {"nom_de_la_commune": "NENIGAN", "libell_d_acheminement": "NENIGAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31397"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac01664f51baa8a257cfa3a2d6250e1ac1118e1b", "fields": {"nom_de_la_commune": "PIN BALMA", "libell_d_acheminement": "PIN BALMA", "code_postal": "31130", "coordonnees_gps": [43.6044083046, 1.52857222339], "code_commune_insee": "31418"}, "geometry": {"type": "Point", "coordinates": [1.52857222339, 43.6044083046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83efb742d60f2c81ae1e0e957b6ea6bd85e01de2", "fields": {"nom_de_la_commune": "PLAGNE", "libell_d_acheminement": "PLAGNE", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31422"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42db5e4d0efc91578bb62899230fbece7b4211a5", "fields": {"nom_de_la_commune": "POINTIS DE RIVIERE", "libell_d_acheminement": "POINTIS DE RIVIERE", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31426"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b28b9324ed7c6582c8f56fa7351bfbc6b733778", "fields": {"nom_de_la_commune": "POINTIS INARD", "libell_d_acheminement": "POINTIS INARD", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31427"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "104733a4f28c9ec98730205b8cabd882192f5e22", "fields": {"nom_de_la_commune": "POUZE", "libell_d_acheminement": "POUZE", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31437"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d99a6efd0a42d1a60ffad0de53433e40b765aca", "fields": {"nom_de_la_commune": "PRUNET", "libell_d_acheminement": "PRUNET", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31441"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7790fa5afbb335c16d846ee972b9726ad869149a", "fields": {"nom_de_la_commune": "RAZECUEILLE", "libell_d_acheminement": "RAZECUEILLE", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31447"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5f6c8bf9f88e06de94f76fc138404dd614890fb", "fields": {"nom_de_la_commune": "REVEL", "libell_d_acheminement": "REVEL", "code_postal": "31250", "coordonnees_gps": [43.4555954942, 1.99785019175], "code_commune_insee": "31451"}, "geometry": {"type": "Point", "coordinates": [1.99785019175, 43.4555954942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eb526a29a4611c3c02ed76f622896e5bf5d969a", "fields": {"nom_de_la_commune": "RIEUMAJOU", "libell_d_acheminement": "RIEUMAJOU", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31453"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40c8b0397457e5c8cccd660b8d1a1ab0cff4ad1e", "fields": {"nom_de_la_commune": "ROUEDE", "libell_d_acheminement": "ROUEDE", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31461"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6aae06651baa8d07b99e79eca0c7b2cc084ed6", "fields": {"nom_de_la_commune": "ROUFFIAC TOLOSAN", "libell_d_acheminement": "ROUFFIAC TOLOSAN", "code_postal": "31180", "coordonnees_gps": [43.6864958094, 1.52214716429], "code_commune_insee": "31462"}, "geometry": {"type": "Point", "coordinates": [1.52214716429, 43.6864958094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38c4130bf39fb1d59f3d05600ea542ee99b9e5d7", "fields": {"nom_de_la_commune": "ST ALBAN", "libell_d_acheminement": "ST ALBAN", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31467"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8aeebc31abb1353a3f9bc790918eb4e8b8ff49", "fields": {"nom_de_la_commune": "ST ANDRE", "libell_d_acheminement": "ST ANDRE", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31468"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "787a36436fc492e58cfe5478135a1378fe82e830", "fields": {"nom_de_la_commune": "ST BERTRAND DE COMMINGES", "libell_d_acheminement": "ST BERTRAND DE COMMINGES", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31472"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeaeff06d87399b994d1482852c0fbc6e5ccb6a0", "fields": {"nom_de_la_commune": "ST CHRISTAUD", "libell_d_acheminement": "ST CHRISTAUD", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31474"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c9ca286fc7f846efd269aaaaeb2d4a2cf94e2a", "fields": {"nom_de_la_commune": "ST CLAR DE RIVIERE", "libell_d_acheminement": "ST CLAR DE RIVIERE", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31475"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3403883458bf989b96f53b212f767c0227ac6a6b", "fields": {"nom_de_la_commune": "ST FRAJOU", "libell_d_acheminement": "ST FRAJOU", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31482"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d8a90a1024817821911bd129ba2147d9735260", "fields": {"nom_de_la_commune": "ST IGNAN", "libell_d_acheminement": "ST IGNAN", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31487"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "143d702a02c4b4efc78a93bd77236bb597922e4e", "fields": {"nom_de_la_commune": "ST JEAN", "libell_d_acheminement": "ST JEAN", "code_postal": "31240", "coordonnees_gps": [43.6585008037, 1.49133331309], "code_commune_insee": "31488"}, "geometry": {"type": "Point", "coordinates": [1.49133331309, 43.6585008037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c33aa0d85cba123f03063d4a35d3703dda6012c", "fields": {"nom_de_la_commune": "ST JEAN LHERM", "libell_d_acheminement": "ST JEAN LHERM", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31489"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345ebe46625f5933c37d59d284fa9493c3e17a85", "fields": {"nom_de_la_commune": "ST JORY", "libell_d_acheminement": "ST JORY", "code_postal": "31790", "coordonnees_gps": [43.7425683225, 1.36753439021], "code_commune_insee": "31490"}, "geometry": {"type": "Point", "coordinates": [1.36753439021, 43.7425683225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c032d11567d593c5cf304ccb75a46c80475399df", "fields": {"nom_de_la_commune": "ST LOUP CAMMAS", "libell_d_acheminement": "ST LOUP CAMMAS", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31497"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d43d91425ffdc141272da3d795296e1ef4915606", "fields": {"nom_de_la_commune": "ST LOUP EN COMMINGES", "libell_d_acheminement": "ST LOUP EN COMMINGES", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31498"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98b43b2e3c99029e3cd133d45e71edc89d8007ac", "fields": {"nom_de_la_commune": "ST MARCET", "libell_d_acheminement": "ST MARCET", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31502"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d6af437cc85c5052d12b7fd9eab4de681e4d881", "fields": {"nom_de_la_commune": "ST MARTORY", "libell_d_acheminement": "ST MARTORY", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31503"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc67e5ee42233d57f29e682c55b3a0a31948f06c", "fields": {"nom_de_la_commune": "ST PE DELBOSC", "libell_d_acheminement": "ST PE DELBOSC", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31510"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16400383fa6a0aa04ecb6259cba571682f6aea60", "fields": {"nom_de_la_commune": "ST RUSTICE", "libell_d_acheminement": "ST RUSTICE", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31515"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "375fe85a75cdd447fa9c489f516154d3738f351b", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "31790", "coordonnees_gps": [43.7425683225, 1.36753439021], "code_commune_insee": "31516"}, "geometry": {"type": "Point", "coordinates": [1.36753439021, 43.7425683225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "220de16237a0ca0ac9e06934994e83f81ceb71c9", "fields": {"nom_de_la_commune": "SAJAS", "libell_d_acheminement": "SAJAS", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31520"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e1ab2d529d87c282a0289171171bfca31e53da", "fields": {"nom_de_la_commune": "SAMAN", "libell_d_acheminement": "SAMAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31528"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a764fa9929bf758c51b206a6e3f30fe953e43e", "fields": {"nom_de_la_commune": "SEILHAN", "libell_d_acheminement": "SEILHAN", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31542"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c273bd0085b425d34018d0f4312a8a92244e436", "fields": {"nom_de_la_commune": "SOUEICH", "libell_d_acheminement": "SOUEICH", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31550"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53531a4a7ab6a0696b30a0d178a396c73e2a195", "fields": {"nom_de_la_commune": "TOUILLE", "libell_d_acheminement": "TOUILLE", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31554"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f8cb50d49128c60a71f9a9b5ed11828108b3be", "fields": {"nom_de_la_commune": "TOULOUSE", "libell_d_acheminement": "TOULOUSE", "code_postal": "31300", "coordonnees_gps": [43.5959709582, 1.43229378001], "code_commune_insee": "31555"}, "geometry": {"type": "Point", "coordinates": [1.43229378001, 43.5959709582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f449814857f71b5f408c325b7736686ab7c75423", "fields": {"nom_de_la_commune": "TOULOUSE", "libell_d_acheminement": "TOULOUSE", "code_postal": "31500", "coordonnees_gps": [43.5959709582, 1.43229378001], "code_commune_insee": "31555"}, "geometry": {"type": "Point", "coordinates": [1.43229378001, 43.5959709582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1308dc03bbfd514147ee181dc01456c3ab610b5b", "fields": {"nom_de_la_commune": "L UNION", "libell_d_acheminement": "L UNION", "code_postal": "31240", "coordonnees_gps": [43.6585008037, 1.49133331309], "code_commune_insee": "31561"}, "geometry": {"type": "Point", "coordinates": [1.49133331309, 43.6585008037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e86d8473da5fc76f3131c3c22c5b26e1ac8858", "fields": {"nom_de_la_commune": "VACQUIERS", "libell_d_acheminement": "VACQUIERS", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31563"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0724b7e342a1d15843c8737de497ccd2b02c3d70", "fields": {"nom_de_la_commune": "VENERQUE", "libell_d_acheminement": "VENERQUE", "code_postal": "31810", "coordonnees_gps": [43.4392556161, 1.44590848032], "code_commune_insee": "31572"}, "geometry": {"type": "Point", "coordinates": [1.44590848032, 43.4392556161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2438747d938aea74d2c28dcf241a2fdbb8da66fd", "fields": {"nom_de_la_commune": "VIEILLEVIGNE", "libell_d_acheminement": "VIEILLEVIGNE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31576"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd011d765c4a4fa9acf1b5b1e92379de77d79a28", "fields": {"nom_de_la_commune": "VILLARIES", "libell_d_acheminement": "VILLARIES", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31579"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88dac40b83f8535a71250575fbe93d38ba02a0de", "fields": {"nom_de_la_commune": "VILLAUDRIC", "libell_d_acheminement": "VILLAUDRIC", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31581"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7dd8cafd5f8add162d221e0c10faa74e02183e", "fields": {"nom_de_la_commune": "VILLEMATIER", "libell_d_acheminement": "VILLEMATIER", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31583"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbf89da5d8d86d533aef4a13e576ff78a5bd2ea", "fields": {"nom_de_la_commune": "VILLENEUVE LES BOULOC", "libell_d_acheminement": "VILLENEUVE LES BOULOC", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31587"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c874dc5cd5662ef23d992a37ab7e9deacbc233c", "fields": {"nom_de_la_commune": "VILLENEUVE TOLOSANE", "libell_d_acheminement": "VILLENEUVE TOLOSANE", "code_postal": "31270", "coordonnees_gps": [43.5340423568, 1.33486531125], "code_commune_insee": "31588"}, "geometry": {"type": "Point", "coordinates": [1.33486531125, 43.5340423568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa028224bc31f7b36a4d1288f346906d013e3f20", "fields": {"nom_de_la_commune": "ESCOULIS", "libell_d_acheminement": "ESCOULIS", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31591"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b8f7429ae68ffcc9bab173c8740492f55d6b140", "fields": {"nom_de_la_commune": "CAZAC", "libell_d_acheminement": "CAZAC", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31593"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2afdfcd472d4d86c5c18e3bc0e59bae59852ae7", "fields": {"nom_de_la_commune": "AIGNAN", "libell_d_acheminement": "AIGNAN", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32001"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ba87bf1a86c1a82778d2fa9ebe6a6977d43cc5", "fields": {"nom_de_la_commune": "AUBIET", "libell_d_acheminement": "AUBIET", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32012"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75678fc0e15a7eba805d3decd2ecc1a7ff7e94eb", "fields": {"nom_de_la_commune": "AURADE", "libell_d_acheminement": "AURADE", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32016"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e855d2cf23026489a915e327328ab8d0ce359f68", "fields": {"nom_de_la_commune": "AVEZAN", "libell_d_acheminement": "AVEZAN", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32023"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76dbf4f79ca602c74fcb6408afcd592267f40f4", "fields": {"nom_de_la_commune": "BARCUGNAN", "libell_d_acheminement": "BARCUGNAN", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32028"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f80aaeb0bf244eafcc4afcb1a01a587ee3cba5b", "fields": {"nom_de_la_commune": "BEAUCAIRE", "libell_d_acheminement": "BEAUCAIRE", "code_postal": "32410", "coordonnees_gps": [43.8145538611, 0.434864041407], "code_commune_insee": "32035"}, "geometry": {"type": "Point", "coordinates": [0.434864041407, 43.8145538611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc6fa86548c2c8b2d0a4ca051d34dcedbe72f2c", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32037"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140d4fdadafba2c23c15ea9dcc8f2f10bbf39c56", "fields": {"nom_de_la_commune": "BECCAS", "libell_d_acheminement": "BECCAS", "code_postal": "32730", "coordonnees_gps": [43.4054676887, 0.198171265768], "code_commune_insee": "32039"}, "geometry": {"type": "Point", "coordinates": [0.198171265768, 43.4054676887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a146a5cabc3854f92eb4acf113b4af8f35715be7", "fields": {"nom_de_la_commune": "BEDECHAN", "libell_d_acheminement": "BEDECHAN", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32040"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76d5fdc0d8ae04612aa106b92466675648c4ea42", "fields": {"nom_de_la_commune": "LE MARTINET", "libell_d_acheminement": "LE MARTINET", "code_postal": "30960", "coordonnees_gps": [44.2386422448, 4.12848944185], "code_commune_insee": "30159"}, "geometry": {"type": "Point", "coordinates": [4.12848944185, 44.2386422448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda851e55c84dbf3cb353a7978ea7f2183e3ade3", "fields": {"nom_de_la_commune": "MASSILLARGUES ATTUECH", "libell_d_acheminement": "MASSILLARGUES ATTUECH", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30162"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf2fdd31985d3af0900d6d70c6f68e2920387b29", "fields": {"nom_de_la_commune": "MEJANNES LE CLAP", "libell_d_acheminement": "MEJANNES LE CLAP", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30164"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbca21e17dfb12a072b22c8956f8735c53a9e9d7", "fields": {"nom_de_la_commune": "MIALET", "libell_d_acheminement": "MIALET", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30168"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f19b2ac096a9fc0032a99637149c7ab565147b4", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30173"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4bebf58b703c81bc372557ed93fca13797f6a41", "fields": {"nom_de_la_commune": "MONTAREN ET ST MEDIERS", "libell_d_acheminement": "MONTAREN ET ST MEDIERS", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30174"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "254034a031e23a4583320449a37330600f859086", "fields": {"nom_de_la_commune": "MONTCLUS", "libell_d_acheminement": "MONTCLUS", "code_postal": "30630", "coordonnees_gps": [44.2160658373, 4.44619382418], "code_commune_insee": "30175"}, "geometry": {"type": "Point", "coordinates": [4.44619382418, 44.2160658373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007d036284e3210f08d0e8e1be1c75a9a4037cd7", "fields": {"nom_de_la_commune": "MONTFAUCON", "libell_d_acheminement": "MONTFAUCON", "code_postal": "30150", "coordonnees_gps": [44.0420660293, 4.76432610967], "code_commune_insee": "30178"}, "geometry": {"type": "Point", "coordinates": [4.76432610967, 44.0420660293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dbc8b1c52f795b057cba319fe7979996c4a5a5b", "fields": {"nom_de_la_commune": "NIMES", "libell_d_acheminement": "NIMES", "code_postal": "30900", "coordonnees_gps": [43.8446783278, 4.34763990758], "code_commune_insee": "30189"}, "geometry": {"type": "Point", "coordinates": [4.34763990758, 43.8446783278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08406b6cd0103030ba5994a44fa245800c560542", "fields": {"code_postal": "30900", "code_commune_insee": "30189", "libell_d_acheminement": "NIMES", "ligne_5": "ST CESAIRE", "nom_de_la_commune": "NIMES", "coordonnees_gps": [43.8446783278, 4.34763990758]}, "geometry": {"type": "Point", "coordinates": [4.34763990758, 43.8446783278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c876badd3cbd3cdafe5465c22cba4e1e06aee0f5", "fields": {"nom_de_la_commune": "ORTHOUX SERIGNAC QUILHAN", "libell_d_acheminement": "ORTHOUX SERIGNAC QUILHAN", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30192"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab523e85b43698f82d1d33344fc4e9eb93461088", "fields": {"nom_de_la_commune": "PEYROLLES", "libell_d_acheminement": "PEYROLLES", "code_postal": "30124", "coordonnees_gps": [44.0999030236, 3.79947600086], "code_commune_insee": "30195"}, "geometry": {"type": "Point", "coordinates": [3.79947600086, 44.0999030236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca32549f9c92e35f706132b7fcf66cb721e5b02", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30196"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f340b9a569d3d866771f2d0bbd15fb54515eaea7", "fields": {"nom_de_la_commune": "POUGNADORESSE", "libell_d_acheminement": "POUGNADORESSE", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30205"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1ab5114f0d7b6b70b3b456aef9e362bf928c602", "fields": {"nom_de_la_commune": "RIBAUTE LES TAVERNES", "libell_d_acheminement": "RIBAUTE LES TAVERNES", "code_postal": "30720", "coordonnees_gps": [44.0422106382, 4.08547634071], "code_commune_insee": "30214"}, "geometry": {"type": "Point", "coordinates": [4.08547634071, 44.0422106382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b2dc8a7d8b59ff0e2daa676339f17d78bd80070", "fields": {"nom_de_la_commune": "ROBIAC ROCHESSADOULE", "libell_d_acheminement": "ROBIAC ROCHESSADOULE", "code_postal": "30160", "coordonnees_gps": [44.2982766732, 4.09724420546], "code_commune_insee": "30216"}, "geometry": {"type": "Point", "coordinates": [4.09724420546, 44.2982766732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0caccf6f4e86abf89eb8f6c74e5c8f0531db096", "fields": {"nom_de_la_commune": "LA ROQUE SUR CEZE", "libell_d_acheminement": "LA ROQUE SUR CEZE", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30222"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c988da0b3325f570cbd7b5960776a5ba92af62", "fields": {"nom_de_la_commune": "ST BAUZELY", "libell_d_acheminement": "ST BAUZELY", "code_postal": "30730", "coordonnees_gps": [43.8845718462, 4.18952374763], "code_commune_insee": "30233"}, "geometry": {"type": "Point", "coordinates": [4.18952374763, 43.8845718462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38715333706f74c999a457deacc6d8ff9101b64", "fields": {"nom_de_la_commune": "ST BRES", "libell_d_acheminement": "ST BRES", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30237"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7377abd9aac7dc2a47a3a0f1965162d4e2d46b9", "fields": {"nom_de_la_commune": "ST CHRISTOL DE RODIERES", "libell_d_acheminement": "ST CHRISTOL DE RODIERES", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30242"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd3af5769beafd694ae571362cf00dadac2b216e", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30244"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99761922b8cd0088c333f2cf117bc0e9505b05e7", "fields": {"nom_de_la_commune": "ST GENIES DE COMOLAS", "libell_d_acheminement": "ST GENIES DE COMOLAS", "code_postal": "30150", "coordonnees_gps": [44.0420660293, 4.76432610967], "code_commune_insee": "30254"}, "geometry": {"type": "Point", "coordinates": [4.76432610967, 44.0420660293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85f0616ba5f37a663b3d117d18efc1c6df8ff5b9", "fields": {"nom_de_la_commune": "ST HIPPOLYTE DE MONTAIGU", "libell_d_acheminement": "ST HIPPOLYTE DE MONTAIGU", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30262"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ccc12127226a5d941f9297794c77744af1f72a", "fields": {"nom_de_la_commune": "ST HIPPOLYTE DU FORT", "libell_d_acheminement": "ST HIPPOLYTE DU FORT", "code_postal": "30170", "coordonnees_gps": [43.952254176, 3.87237250902], "code_commune_insee": "30263"}, "geometry": {"type": "Point", "coordinates": [3.87237250902, 43.952254176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c508ed5bd83a9aa9d3a859e57cc5a808c835bd53", "fields": {"nom_de_la_commune": "ST PONS LA CALM", "libell_d_acheminement": "ST PONS LA CALM", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30292"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14d275f6a5617a8bf35e793ec303fac35c18054", "fields": {"nom_de_la_commune": "ST THEODORIT", "libell_d_acheminement": "ST THEODORIT", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30300"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c616a8c04d3e1971a2c1b51f00d9a7e1000591e1", "fields": {"nom_de_la_commune": "ST VICTOR DE MALCAP", "libell_d_acheminement": "ST VICTOR DE MALCAP", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30303"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f05a9a66883c51887ad1356fa31f6cfce66b8d1", "fields": {"nom_de_la_commune": "LES SALLES DU GARDON", "libell_d_acheminement": "LES SALLES DU GARDON", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30307"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f0897f82db5a48acc35ea4de044b5d49de765ca", "fields": {"nom_de_la_commune": "SARDAN", "libell_d_acheminement": "SARDAN", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30309"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52510e9e3194e0307102fa030d33ff83efedb877", "fields": {"nom_de_la_commune": "SAUVE", "libell_d_acheminement": "SAUVE", "code_postal": "30610", "coordonnees_gps": [43.9495863294, 3.99062671704], "code_commune_insee": "30311"}, "geometry": {"type": "Point", "coordinates": [3.99062671704, 43.9495863294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea53c7cca7756dc0ce1ffbb5c14eb576f3f7553f", "fields": {"nom_de_la_commune": "SEYNES", "libell_d_acheminement": "SEYNES", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30320"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88dc16de55a650ea748679656c8f6164a7d6c14b", "fields": {"nom_de_la_commune": "TRESQUES", "libell_d_acheminement": "TRESQUES", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30331"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2adf91e6908fe706d90014f2b7598381d14c8f72", "fields": {"nom_de_la_commune": "TREVES", "libell_d_acheminement": "TREVES", "code_postal": "30750", "coordonnees_gps": [44.0925479958, 3.41838052673], "code_commune_insee": "30332"}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e687e7d5c1a46c35500f73904269f8f99379626c", "fields": {"nom_de_la_commune": "UCHAUD", "libell_d_acheminement": "UCHAUD", "code_postal": "30620", "coordonnees_gps": [43.7617443706, 4.28868094098], "code_commune_insee": "30333"}, "geometry": {"type": "Point", "coordinates": [4.28868094098, 43.7617443706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf46273dc3da60f9842c4f68e54152039996881a", "fields": {"code_postal": "30570", "code_commune_insee": "30339", "libell_d_acheminement": "VALLERAUGUE", "ligne_5": "L ESPEROU", "nom_de_la_commune": "VALLERAUGUE", "coordonnees_gps": [44.0726659804, 3.64380586054]}, "geometry": {"type": "Point", "coordinates": [3.64380586054, 44.0726659804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e81ebe01e2bbfe40df6c31a688716ceb53af79", "fields": {"nom_de_la_commune": "LA VERNAREDE", "libell_d_acheminement": "LA VERNAREDE", "code_postal": "30530", "coordonnees_gps": [44.2835677648, 3.99804352323], "code_commune_insee": "30345"}, "geometry": {"type": "Point", "coordinates": [3.99804352323, 44.2835677648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69ee73a79a7edd419caa7c7382ca1d407a6994c", "fields": {"nom_de_la_commune": "LE VIGAN", "libell_d_acheminement": "LE VIGAN", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30350"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e353166e4d0472311f8c137720e5f2026204bc", "fields": {"nom_de_la_commune": "ARNAUD GUILHEM", "libell_d_acheminement": "ARNAUD GUILHEM", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31018"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58df020141ccadddc1102c7d6011d0889ed3abd6", "fields": {"nom_de_la_commune": "AUSSON", "libell_d_acheminement": "AUSSON", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31031"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15e89f21598ca3c811de2719c7f7986efe3d903", "fields": {"nom_de_la_commune": "BAGNERES DE LUCHON", "libell_d_acheminement": "BAGNERES DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31042"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2273e618d4e282c051eb8d2c6ea1f51d0a7a1e29", "fields": {"nom_de_la_commune": "BAREN", "libell_d_acheminement": "BAREN", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31046"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d7c37f6d6397dee6aa51964f8c9b81cbc61582", "fields": {"nom_de_la_commune": "BAX", "libell_d_acheminement": "BAX", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31047"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc9facf8801161c4a7a862a0deae043606f2479e", "fields": {"nom_de_la_commune": "BEAUPUY", "libell_d_acheminement": "BEAUPUY", "code_postal": "31850", "coordonnees_gps": [43.6433615869, 1.54999438189], "code_commune_insee": "31053"}, "geometry": {"type": "Point", "coordinates": [1.54999438189, 43.6433615869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f633ad24cab21336b8679f145fc4f663ad23b5e", "fields": {"nom_de_la_commune": "BEAUVILLE", "libell_d_acheminement": "BEAUVILLE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31055"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25372551cd5b36fad677d326970863f647e3b4e9", "fields": {"nom_de_la_commune": "BOIS DE LA PIERRE", "libell_d_acheminement": "BOIS DE LA PIERRE", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31071"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56d205326723d12535ac0df9cb393003d9bedef4", "fields": {"nom_de_la_commune": "BORDES DE RIVIERE", "libell_d_acheminement": "BORDES DE RIVIERE", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31076"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f336465aca4160fb017552a4739ac6b86a20509", "fields": {"nom_de_la_commune": "BOUDRAC", "libell_d_acheminement": "BOUDRAC", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31078"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a3571ad5ff65e10d12ffe432ee2ded4d0822f9e", "fields": {"nom_de_la_commune": "BRAX", "libell_d_acheminement": "BRAX", "code_postal": "31490", "coordonnees_gps": [43.5952608538, 1.22974000355], "code_commune_insee": "31088"}, "geometry": {"type": "Point", "coordinates": [1.22974000355, 43.5952608538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b54d82e59e6919e7a1418435fd4ba4989a387ba", "fields": {"nom_de_la_commune": "BRIGNEMONT", "libell_d_acheminement": "BRIGNEMONT", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31090"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc8279e0d56449848e3e95734a2926252a0ba9f0", "fields": {"nom_de_la_commune": "LE CABANIAL", "libell_d_acheminement": "LE CABANIAL", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31097"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ff13097b02eecaacbe90122a32e6322d1b1543f", "fields": {"nom_de_la_commune": "CAIGNAC", "libell_d_acheminement": "CAIGNAC", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31099"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb042edce230ad4ae4dd881c72b54ce3d84716f9", "fields": {"nom_de_la_commune": "CAMBERNARD", "libell_d_acheminement": "CAMBERNARD", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31101"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "747d9800206833c5b0bd4716a4bc5df70ef7f8ff", "fields": {"nom_de_la_commune": "CAPENS", "libell_d_acheminement": "CAPENS", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31104"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4784f7c4e15cc83311f762580f0eac536ed24b1c", "fields": {"nom_de_la_commune": "CASTELGAILLARD", "libell_d_acheminement": "CASTELGAILLARD", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31115"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ee2ddd18ffc53e857a563d4f14b53fef09b4862", "fields": {"nom_de_la_commune": "CASTIES LABRANDE", "libell_d_acheminement": "CASTIES LABRANDE", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31122"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa16fa78709ccbd2e1bea7b4cf5d58e12b27cc8d", "fields": {"nom_de_la_commune": "CEPET", "libell_d_acheminement": "CEPET", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31136"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c22bb696b274142686ff8750e2a8012739300f", "fields": {"nom_de_la_commune": "CESSALES", "libell_d_acheminement": "CESSALES", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31137"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b1ec5cbb1802aa14f44765119e5cc640e9f669", "fields": {"nom_de_la_commune": "CIER DE LUCHON", "libell_d_acheminement": "CIER DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31142"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dfecb49d55bac5ce0602f5a35af74c92176c255", "fields": {"nom_de_la_commune": "CUGNAUX", "libell_d_acheminement": "CUGNAUX", "code_postal": "31270", "coordonnees_gps": [43.5340423568, 1.33486531125], "code_commune_insee": "31157"}, "geometry": {"type": "Point", "coordinates": [1.33486531125, 43.5340423568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e56c0f0fff37c49cd3dd9d32a72da0cd650cb2c2", "fields": {"nom_de_la_commune": "LE CUING", "libell_d_acheminement": "LE CUING", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31159"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee8f85db910291a8a021f67b7d4fd9c51c5f093", "fields": {"nom_de_la_commune": "DAUX", "libell_d_acheminement": "DAUX", "code_postal": "31700", "coordonnees_gps": [43.6597738568, 1.31989347966], "code_commune_insee": "31160"}, "geometry": {"type": "Point", "coordinates": [1.31989347966, 43.6597738568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb2cdacf115cadef85732c86d8bd5e2f740e97c", "fields": {"nom_de_la_commune": "DEYME", "libell_d_acheminement": "DEYME", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31161"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6297f6f23b746c0573be15b6768d5a2cbf0fefc", "fields": {"nom_de_la_commune": "DRUDAS", "libell_d_acheminement": "DRUDAS", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31164"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79406dbeb5d970667e1475c83ad0ca50334f1ed", "fields": {"nom_de_la_commune": "ESCALQUENS", "libell_d_acheminement": "ESCALQUENS", "code_postal": "31750", "coordonnees_gps": [43.5207883419, 1.55234095316], "code_commune_insee": "31169"}, "geometry": {"type": "Point", "coordinates": [1.55234095316, 43.5207883419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8bc3600b812c2227091efbe07706cdc91a2f246", "fields": {"nom_de_la_commune": "ESPANES", "libell_d_acheminement": "ESPANES", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31171"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04df112356ddac5906dd3dd6148d586d02ba4de6", "fields": {"nom_de_la_commune": "FLOURENS", "libell_d_acheminement": "FLOURENS", "code_postal": "31130", "coordonnees_gps": [43.6044083046, 1.52857222339], "code_commune_insee": "31184"}, "geometry": {"type": "Point", "coordinates": [1.52857222339, 43.6044083046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a09e507c8bdfd37a3c7dca70a15cceb0ddb5928", "fields": {"nom_de_la_commune": "FORGUES", "libell_d_acheminement": "FORGUES", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31189"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b15af951f8fcb29622577e95a81fcc8f73dc13b", "fields": {"nom_de_la_commune": "FRANCARVILLE", "libell_d_acheminement": "FRANCARVILLE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31194"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a5cbd629b86f82f225d5c2d3129fd22a1cd9458", "fields": {"nom_de_la_commune": "FRANCON", "libell_d_acheminement": "FRANCON", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31196"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cae8af2e2d02679aafaf2439f6d7af63257414a", "fields": {"nom_de_la_commune": "LE FRECHET", "libell_d_acheminement": "LE FRECHET", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31198"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76122ad79bf408acdd7f05a8ea129c17d61d329", "fields": {"nom_de_la_commune": "FRONTIGNAN SAVES", "libell_d_acheminement": "FRONTIGNAN SAVES", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31201"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c1c6d94c873aeb4cc19b75572253a5fb122c8d", "fields": {"nom_de_la_commune": "GAGNAC SUR GARONNE", "libell_d_acheminement": "GAGNAC SUR GARONNE", "code_postal": "31150", "coordonnees_gps": [43.7088681187, 1.39635626813], "code_commune_insee": "31205"}, "geometry": {"type": "Point", "coordinates": [1.39635626813, 43.7088681187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d60d75c194f348aabd57cd5af7caac304039b9", "fields": {"nom_de_la_commune": "GENSAC SUR GARONNE", "libell_d_acheminement": "GENSAC SUR GARONNE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31219"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0289163212fc54a50e997838b144943c73e8d18a", "fields": {"nom_de_la_commune": "GOUDEX", "libell_d_acheminement": "GOUDEX", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31223"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a0aa0309e9ae98bd59fede3eb55d6092f53957f", "fields": {"nom_de_la_commune": "GOUZENS", "libell_d_acheminement": "GOUZENS", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31226"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf539436f81bdbec2910a2a49e81c2dad06fd2d2", "fields": {"nom_de_la_commune": "GRAGNAGUE", "libell_d_acheminement": "GRAGNAGUE", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31228"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98000c9ddf4a1ace67f12a003bcb1cd879e0a281", "fields": {"nom_de_la_commune": "GRATENTOUR", "libell_d_acheminement": "GRATENTOUR", "code_postal": "31150", "coordonnees_gps": [43.7088681187, 1.39635626813], "code_commune_insee": "31230"}, "geometry": {"type": "Point", "coordinates": [1.39635626813, 43.7088681187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8695fbd08b1f5dd93ec4c59976c4ef35c769253f", "fields": {"nom_de_la_commune": "GRENADE", "libell_d_acheminement": "GRENADE", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31232"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4389c14948c2c0fbb2d270c03a89847cad2eb2e", "fields": {"nom_de_la_commune": "L ISLE EN DODON", "libell_d_acheminement": "L ISLE EN DODON", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31239"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f398a287ad062574dd470d5991ec73eb40651002", "fields": {"nom_de_la_commune": "ISSUS", "libell_d_acheminement": "ISSUS", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31240"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e17965627e078f63409d2f2803f3acb396ac969e", "fields": {"nom_de_la_commune": "IZAUT DE L HOTEL", "libell_d_acheminement": "IZAUT DE L HOTEL", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31241"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6695fb3fb7cda26e33a3f21a0e1da6975a7a591d", "fields": {"nom_de_la_commune": "LABASTIDE BEAUVOIR", "libell_d_acheminement": "LABASTIDE BEAUVOIR", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31249"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56cfef525cb757c34599bdffcbd352d169319c66", "fields": {"nom_de_la_commune": "LACAUGNE", "libell_d_acheminement": "LACAUGNE", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31258"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aeea2bbcf4c0a0ce8fa6d99f3c4031a734407e3", "fields": {"nom_de_la_commune": "LAFFITE TOUPIERE", "libell_d_acheminement": "LAFFITE TOUPIERE", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31260"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1edaa3d1add9ab10dac3db7328c270a4c3da753", "fields": {"nom_de_la_commune": "LAFITTE VIGORDANE", "libell_d_acheminement": "LAFITTE VIGORDANE", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31261"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3e89a45e1aa9e2d2a84537ca10903eb55095ca", "fields": {"nom_de_la_commune": "LAGARDE", "libell_d_acheminement": "LAGARDE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31262"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e740e5c93f3480a80d09879a7bd098f0e65e7f", "fields": {"nom_de_la_commune": "LAUTIGNAC", "libell_d_acheminement": "LAUTIGNAC", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31283"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eaebdf0f04c919a09aa34c1e1ef39a2ed04f41a", "fields": {"nom_de_la_commune": "LUSSAN ADEILHAC", "libell_d_acheminement": "LUSSAN ADEILHAC", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31309"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8756d6c8122ad88d13521260d0cb407e1cdeaf2", "fields": {"nom_de_la_commune": "MALVEZIE", "libell_d_acheminement": "MALVEZIE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31313"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd52fad2aca0a3501d56759e6f7f672cccf83792", "fields": {"nom_de_la_commune": "MARSOULAS", "libell_d_acheminement": "MARSOULAS", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31321"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b7598be3a665825d53be28419cb3d0ab4883b0e", "fields": {"nom_de_la_commune": "MASSABRAC", "libell_d_acheminement": "MASSABRAC", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31326"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c53f4ef78b173aaa4e4101f49a2e62e754d3b5", "fields": {"nom_de_la_commune": "MAURENS", "libell_d_acheminement": "MAURENS", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31329"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bae57f76872aad2254bd2be16c0a3cb4381dbf2f", "fields": {"nom_de_la_commune": "MAUVEZIN", "libell_d_acheminement": "MAUVEZIN", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31333"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33324e62f9207000db922dafbcbe9aa48f438e61", "fields": {"nom_de_la_commune": "MERENVIELLE", "libell_d_acheminement": "MERENVIELLE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31339"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba84503382213d76f3c8708dca65224b029ed3d", "fields": {"nom_de_la_commune": "MIRAMBEAU", "libell_d_acheminement": "MIRAMBEAU", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31343"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f8e256930921468949df4bd69777a0850364941", "fields": {"nom_de_la_commune": "MONDAVEZAN", "libell_d_acheminement": "MONDAVEZAN", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31349"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cae1bce7cbe16109b56e68ca4add8e7f0d97cab2", "fields": {"nom_de_la_commune": "MONDONVILLE", "libell_d_acheminement": "MONDONVILLE", "code_postal": "31700", "coordonnees_gps": [43.6597738568, 1.31989347966], "code_commune_insee": "31351"}, "geometry": {"type": "Point", "coordinates": [1.31989347966, 43.6597738568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4842aa2ed4b9de5ef3d7923023ec23c033a1652", "fields": {"nom_de_la_commune": "MONTEGUT BOURJAC", "libell_d_acheminement": "MONTEGUT BOURJAC", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31370"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc6d3b15478a12996d2209d41595b02d1cd16f28", "fields": {"nom_de_la_commune": "MONTEGUT LAURAGAIS", "libell_d_acheminement": "MONTEGUT LAURAGAIS", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31371"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a48e10bc5ae39ede53d9ca27b12934af5ea1e9", "fields": {"nom_de_la_commune": "MONTESPAN", "libell_d_acheminement": "MONTESPAN", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31372"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "919346380d5ff04fe24dfd1cf3f22fdb5908e076", "fields": {"nom_de_la_commune": "MANAURIE", "libell_d_acheminement": "MANAURIE", "code_postal": "24620", "coordonnees_gps": [44.9543754146, 1.07528659092], "code_commune_insee": "24249"}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb4bc00090e6be4db7f62b5eef104549d56517b", "fields": {"code_postal": "24150", "code_commune_insee": "24260", "libell_d_acheminement": "MAUZAC ET GRAND CASTANG", "ligne_5": "GRAND CASTANG", "nom_de_la_commune": "MAUZAC ET GRAND CASTANG", "coordonnees_gps": [44.8499844626, 0.730354146465]}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cef33dc03d583626010f58b6cff922d55464fbc1", "fields": {"nom_de_la_commune": "MAUZENS ET MIREMONT", "libell_d_acheminement": "MAUZENS ET MIREMONT", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24261"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a671ffe89a6f248d6cbddceb8bbf849c4e627b48", "fields": {"nom_de_la_commune": "MAZEYROLLES", "libell_d_acheminement": "MAZEYROLLES", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24263"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "134a975728b2d60604c483f48e544f96cddae8ef", "fields": {"nom_de_la_commune": "MENSIGNAC", "libell_d_acheminement": "MENSIGNAC", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24266"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e955f6ef746c2d397625b4bc9173ed394bab30d1", "fields": {"nom_de_la_commune": "MESCOULES", "libell_d_acheminement": "MESCOULES", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24267"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb5577b1bfaaa4ff3fb3426dc2cd560aea37a41e", "fields": {"nom_de_la_commune": "MONBAZILLAC", "libell_d_acheminement": "MONBAZILLAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24274"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c1c5da49d7711620516a77ccdd4baf38ea6de0", "fields": {"nom_de_la_commune": "MONTAGNAC LA CREMPSE", "libell_d_acheminement": "MONTAGNAC LA CREMPSE", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24285"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b7ad6d6c0236c531371daecd6bc406c6c03691", "fields": {"nom_de_la_commune": "MONTCARET", "libell_d_acheminement": "MONTCARET", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24289"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a7084c799898e7292168442fbc4eb86e154ab7c", "fields": {"nom_de_la_commune": "MONPLAISANT", "libell_d_acheminement": "MONPLAISANT", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24293"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eada454c45e287f0e2ad35f2d9f431dad2abfab1", "fields": {"nom_de_la_commune": "MOULEYDIER", "libell_d_acheminement": "MOULEYDIER", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24296"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d8f3d10d486712e7278c9e105f37df9a8078d1", "fields": {"nom_de_la_commune": "NEGRONDES", "libell_d_acheminement": "NEGRONDES", "code_postal": "24460", "coordonnees_gps": [45.2956832726, 0.780250609832], "code_commune_insee": "24308"}, "geometry": {"type": "Point", "coordinates": [0.780250609832, 45.2956832726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f2d3a83b84ab7b46942abd8280d636203a9d21", "fields": {"nom_de_la_commune": "ORLIAC", "libell_d_acheminement": "ORLIAC", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24313"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c46bd658359c2e91c816d0650ee8334e6a1188", "fields": {"nom_de_la_commune": "PARCOUL CHENAUD", "libell_d_acheminement": "PARCOUL CHENAUD", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24316"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a2725287098de0824b5d609612c3cc0fc5afaad", "fields": {"code_postal": "24410", "code_commune_insee": "24316", "libell_d_acheminement": "PARCOUL CHENAUD", "ligne_5": "CHENAUD", "nom_de_la_commune": "PARCOUL CHENAUD", "coordonnees_gps": [45.1753160251, 0.189361331723]}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a71b61a5426581cdc97c9607b507e8472992dd2", "fields": {"nom_de_la_commune": "PAUSSAC ET ST VIVIEN", "libell_d_acheminement": "PAUSSAC ET ST VIVIEN", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24319"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "180bfcb45aa26e3088eaf6456774222b1282cef2", "fields": {"nom_de_la_commune": "PEYRIGNAC", "libell_d_acheminement": "PEYRIGNAC", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24324"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660e0c0801041b906abb04c0568dd4b9f0c64ae5", "fields": {"nom_de_la_commune": "PIEGUT PLUVIERS", "libell_d_acheminement": "PIEGUT PLUVIERS", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24328"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "886f0e9a3785913d9f5c4d29769224c11b282a3e", "fields": {"nom_de_la_commune": "PORT STE FOY ET PONCHAPT", "libell_d_acheminement": "PORT STE FOY ET PONCHAPT", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "24335"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6afe6d478ffc62c964bcdb7ce6b80f349860375", "fields": {"nom_de_la_commune": "PROISSANS", "libell_d_acheminement": "PROISSANS", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24341"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "792d29a91bc09436902a2a8c9846a28ee609ca5c", "fields": {"nom_de_la_commune": "RIBAGNAC", "libell_d_acheminement": "RIBAGNAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24351"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "effbe1e1a07c5dbb6dc5df83767e8f326c41a5ce", "fields": {"nom_de_la_commune": "LA ROCHEBEAUCOURT ET ARGENTINE", "libell_d_acheminement": "LA ROCHEBEAUCOURT ET ARGENTINE", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24353"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e217c815e8013db2d8ae059814a7868f784b767", "fields": {"code_postal": "24490", "code_commune_insee": "24354", "libell_d_acheminement": "LA ROCHE CHALAIS", "ligne_5": "ST MICHEL DE RIVIERE", "nom_de_la_commune": "LA ROCHE CHALAIS", "coordonnees_gps": [45.135601927, 0.0544832948908]}, "geometry": {"type": "Point", "coordinates": [0.0544832948908, 45.135601927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843ebcf190601b99c497e893de61c7783f8878bf", "fields": {"code_postal": "24490", "code_commune_insee": "24354", "libell_d_acheminement": "LA ROCHE CHALAIS", "ligne_5": "ST MICHEL L ECLUSE ET LEPARON", "nom_de_la_commune": "LA ROCHE CHALAIS", "coordonnees_gps": [45.135601927, 0.0544832948908]}, "geometry": {"type": "Point", "coordinates": [0.0544832948908, 45.135601927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ef404d8a60ac679f9ceaa282ee2fe2d3672c5a5", "fields": {"nom_de_la_commune": "ST AGNE", "libell_d_acheminement": "ST AGNE", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24361"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e34bf0829103990041082ad07e17d68ad1b8e06", "fields": {"nom_de_la_commune": "STE ALVERE ST LAURENT LES BATONS", "libell_d_acheminement": "STE ALVERE ST LAURENT LES BATONS", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24362"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "164a1a98a5ba4d9f2d63e5fd10da8103c8bb8d10", "fields": {"nom_de_la_commune": "ST ANTOINE DE BREUILH", "libell_d_acheminement": "ST ANTOINE DE BREUILH", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24370"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9854d67ea7759ae4157722027dce73f4de8ad12", "fields": {"nom_de_la_commune": "ST ASTIER", "libell_d_acheminement": "ST ASTIER", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24372"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c39900e87929a925eed14fd53a88fc08a85c2646", "fields": {"code_postal": "24410", "code_commune_insee": "24376", "libell_d_acheminement": "ST AULAYE PUYMANGOU", "ligne_5": "PUYMANGOU", "nom_de_la_commune": "ST AULAYE PUYMANGOU", "coordonnees_gps": [45.1753160251, 0.189361331723]}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "400087c121bfb2394f14ec82285478f127d3c538", "fields": {"nom_de_la_commune": "ST AVIT RIVIERE", "libell_d_acheminement": "ST AVIT RIVIERE", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24378"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0988666b2f99a3a9ca86d6bb5179e7d1d38f58b2", "fields": {"nom_de_la_commune": "ST BARTHELEMY DE BUSSIERE", "libell_d_acheminement": "ST BARTHELEMY DE BUSSIERE", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24381"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b82e98c23cf8e54191d4aa64967b3e079ca526b", "fields": {"nom_de_la_commune": "ST CAPRAISE DE LALINDE", "libell_d_acheminement": "ST CAPRAISE DE LALINDE", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24382"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96cebe24c6782f7afded6398d67ed0e117054efd", "fields": {"nom_de_la_commune": "ST CERNIN DE LABARDE", "libell_d_acheminement": "ST CERNIN DE LABARDE", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24385"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f445f486b0a221c1cd401d780bd980fd1090150e", "fields": {"nom_de_la_commune": "ST CERNIN DE L HERM", "libell_d_acheminement": "ST CERNIN DE L HERM", "code_postal": "24550", "coordonnees_gps": [44.6557879622, 1.07714419525], "code_commune_insee": "24386"}, "geometry": {"type": "Point", "coordinates": [1.07714419525, 44.6557879622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e811f3c7327e01fe9a782197cbbdbd06db0b96d", "fields": {"nom_de_la_commune": "ST CIRQ", "libell_d_acheminement": "ST CIRQ", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24389"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c250f7a603123b75296778b46017bc8dd154ba", "fields": {"nom_de_la_commune": "ST CREPIN DE RICHEMONT", "libell_d_acheminement": "ST CREPIN DE RICHEMONT", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24391"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa13e4c491dbf91183e4a21a82a050736dbc3bb0", "fields": {"nom_de_la_commune": "ST CREPIN ET CARLUCET", "libell_d_acheminement": "ST CREPIN ET CARLUCET", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24392"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d9cb112b86d775a5e73a05d929c15d171d92f68", "fields": {"nom_de_la_commune": "ST ESTEPHE", "libell_d_acheminement": "ST ESTEPHE", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24398"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a9713879b6d325998d163585e48345cf008ef81", "fields": {"nom_de_la_commune": "ST ETIENNE DE PUYCORBIER", "libell_d_acheminement": "ST ETIENNE DE PUYCORBIER", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24399"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cf04db84428a36de03ce910d80adb23d9829130", "fields": {"nom_de_la_commune": "ST FRONT D ALEMPS", "libell_d_acheminement": "ST FRONT D ALEMPS", "code_postal": "24460", "coordonnees_gps": [45.2956832726, 0.780250609832], "code_commune_insee": "24408"}, "geometry": {"type": "Point", "coordinates": [0.780250609832, 45.2956832726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c798c23484c7a9af914d1b4ba7c0bcf3404a8e59", "fields": {"nom_de_la_commune": "ST GERAUD DE CORPS", "libell_d_acheminement": "ST GERAUD DE CORPS", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24415"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2533b0bbe8e8bb94263f110a531ccb51f1169490", "fields": {"nom_de_la_commune": "STE INNOCENCE", "libell_d_acheminement": "STE INNOCENCE", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24423"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e02776607bab5e7fda374c875a56b8bd2f75890", "fields": {"nom_de_la_commune": "ST JULIEN DE CREMPSE", "libell_d_acheminement": "ST JULIEN DE CREMPSE", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24431"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c23eae11cf59119d4e758985df12ec6fd961c2b", "fields": {"nom_de_la_commune": "ST JULIEN DE LAMPON", "libell_d_acheminement": "ST JULIEN DE LAMPON", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24432"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7157afd8c05e87fea5d0b1477d3cdb54c1184c52", "fields": {"nom_de_la_commune": "ST LEON D ISSIGEAC", "libell_d_acheminement": "ST LEON D ISSIGEAC", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24441"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af7f55e04794a50cafe88e301abdd0a0f996adea", "fields": {"nom_de_la_commune": "ST LEON SUR L ISLE", "libell_d_acheminement": "ST LEON SUR L ISLE", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24442"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9b2e2aa295ee90619fac1b2912eeb5e332c057", "fields": {"nom_de_la_commune": "ST MARTIAL D ALBAREDE", "libell_d_acheminement": "ST MARTIAL D ALBAREDE", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24448"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d0d49c3d29df6a738237e5a6c947850261b95c", "fields": {"nom_de_la_commune": "ST MARTIAL DE VALETTE", "libell_d_acheminement": "ST MARTIAL DE VALETTE", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24451"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "338fa989e3c6e9fac2ab70fec0f8a1f545857968", "fields": {"nom_de_la_commune": "ST MARTIN DE GURSON", "libell_d_acheminement": "ST MARTIN DE GURSON", "code_postal": "24610", "coordonnees_gps": [44.9374172162, 0.100217545195], "code_commune_insee": "24454"}, "geometry": {"type": "Point", "coordinates": [0.100217545195, 44.9374172162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42be4822a1cdc094b7b4213724b37fe87c1a0156", "fields": {"nom_de_la_commune": "ST MEARD DE GURCON", "libell_d_acheminement": "ST MEARD DE GURCON", "code_postal": "24610", "coordonnees_gps": [44.9374172162, 0.100217545195], "code_commune_insee": "24461"}, "geometry": {"type": "Point", "coordinates": [0.100217545195, 44.9374172162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f034780d35a51c1270fb86014a4548781f9c75", "fields": {"nom_de_la_commune": "ST MESMIN", "libell_d_acheminement": "ST MESMIN", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24464"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083fe72d411c40c59ed4a2b15245c25d03684551", "fields": {"nom_de_la_commune": "ST MICHEL DE DOUBLE", "libell_d_acheminement": "ST MICHEL DE DOUBLE", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24465"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "542072c8a268400a9c0fe15308ba8e00d80c68b0", "fields": {"nom_de_la_commune": "STE NATHALENE", "libell_d_acheminement": "STE NATHALENE", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24471"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67f09b425b5e5426081de5ff8834dc0c88cd548", "fields": {"nom_de_la_commune": "ST NEXANS", "libell_d_acheminement": "ST NEXANS", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24472"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7937fec11a77505639e59e57df2a578d7bcf926", "fields": {"nom_de_la_commune": "ST PANTALY D EXCIDEUIL", "libell_d_acheminement": "ST PANTALY D EXCIDEUIL", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24476"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b239b5324a6cb808355beaa2741ab49f886b68", "fields": {"nom_de_la_commune": "ST PARDOUX DE DRONE", "libell_d_acheminement": "ST PARDOUX DE DRONE", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24477"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cde85782219f32bdce5e4c9feb4813d0e5b933b", "fields": {"nom_de_la_commune": "ST PARDOUX LA RIVIERE", "libell_d_acheminement": "ST PARDOUX LA RIVIERE", "code_postal": "24470", "coordonnees_gps": [45.5151211984, 0.802361572826], "code_commune_insee": "24479"}, "geometry": {"type": "Point", "coordinates": [0.802361572826, 45.5151211984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f314a0d38a23e6ad804d99a66a173fb3b80261", "fields": {"nom_de_la_commune": "ST RABIER", "libell_d_acheminement": "ST RABIER", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24491"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18238c344041724558daa5fcc9694ab70bf8eaa5", "fields": {"nom_de_la_commune": "ST SULPICE DE MAREUIL", "libell_d_acheminement": "ST SULPICE DE MAREUIL", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24503"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3b97d895fca44e752a54eb1e5c67b660355a8e", "fields": {"nom_de_la_commune": "ST SULPICE DE ROUMAGNAC", "libell_d_acheminement": "ST SULPICE DE ROUMAGNAC", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24504"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f6aad1c7abb2647043be59b96af1e5ff3c6e757", "fields": {"nom_de_la_commune": "STE TRIE", "libell_d_acheminement": "STE TRIE", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24507"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d4f6862ea27e88f2d0f77e52dbd0a7ea9ef9a1", "fields": {"nom_de_la_commune": "ST VINCENT DE COSSE", "libell_d_acheminement": "ST VINCENT DE COSSE", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24510"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcad60dc3abf98803a88b78f3262c364fe5ebaa2", "fields": {"nom_de_la_commune": "ST VIVIEN", "libell_d_acheminement": "ST VIVIEN", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24514"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1abb7d0a6ce59f5e1aae90165891e74a9603e1", "fields": {"nom_de_la_commune": "SALIGNAC EYVIGUES", "libell_d_acheminement": "SALIGNAC EYVIGUES", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24516"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e02a825a9653869e3d799e6c3bf2997b825521a", "fields": {"nom_de_la_commune": "SARRAZAC", "libell_d_acheminement": "SARRAZAC", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24522"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720de9a210ca1ab134f1e3b2476229232f6513a1", "fields": {"nom_de_la_commune": "SAUSSIGNAC", "libell_d_acheminement": "SAUSSIGNAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24523"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b445b3d5e949050b2ba6a6b8d5f8938eae76e224", "fields": {"nom_de_la_commune": "SAVIGNAC LEDRIER", "libell_d_acheminement": "SAVIGNAC LEDRIER", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24526"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd4fcbed8614a3592eb72f553b13a47b9f8eefaa", "fields": {"nom_de_la_commune": "SERVANCHES", "libell_d_acheminement": "SERVANCHES", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24533"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78c8d1b20775deaacc62ac51043edd7838f789f1", "fields": {"nom_de_la_commune": "SIGOULES", "libell_d_acheminement": "SIGOULES", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24534"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2be2a2435c1def507b0368f1c892644c7fdeb4bc", "fields": {"nom_de_la_commune": "SIORAC EN PERIGORD", "libell_d_acheminement": "SIORAC EN PERIGORD", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24538"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37c81dc0bafcf6a66114883bc717ddbe81ec0e95", "fields": {"nom_de_la_commune": "TEMPLE LAGUYON", "libell_d_acheminement": "TEMPLE LAGUYON", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24546"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c04b557b97fbbacd02d8b7b52e0acbdb95ac81a2", "fields": {"nom_de_la_commune": "TOCANE ST APRE", "libell_d_acheminement": "TOCANE ST APRE", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24553"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16188d0b4ac0cf625c978a6ed554616a6c3ff1c8", "fields": {"nom_de_la_commune": "VILLAMBLARD", "libell_d_acheminement": "VILLAMBLARD", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24581"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86bbd1ee0c48043da4e78f390a7a7d0788652ef6", "fields": {"nom_de_la_commune": "VILLEFRANCHE DE LONCHAT", "libell_d_acheminement": "VILLEFRANCHE DE LONCHAT", "code_postal": "24610", "coordonnees_gps": [44.9374172162, 0.100217545195], "code_commune_insee": "24584"}, "geometry": {"type": "Point", "coordinates": [0.100217545195, 44.9374172162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b85378bec17e1c96755351b15576f109404cbb", "fields": {"nom_de_la_commune": "VITRAC", "libell_d_acheminement": "VITRAC", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24587"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd0dd105afac52e4e7fcd8fbbbf6045f2f726e8", "fields": {"nom_de_la_commune": "ADAM LES VERCEL", "libell_d_acheminement": "ADAM LES VERCEL", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25007"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb0a72099bb602a4f44e68585f256be4a657340", "fields": {"nom_de_la_commune": "AIBRE", "libell_d_acheminement": "AIBRE", "code_postal": "25750", "coordonnees_gps": [47.5357024428, 6.66891038206], "code_commune_insee": "25008"}, "geometry": {"type": "Point", "coordinates": [6.66891038206, 47.5357024428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79f05b59755fe0241e7130f76626cc6aebf1a999", "fields": {"nom_de_la_commune": "AUDINCOURT", "libell_d_acheminement": "AUDINCOURT", "code_postal": "25400", "coordonnees_gps": [47.488209741, 6.84586139131], "code_commune_insee": "25031"}, "geometry": {"type": "Point", "coordinates": [6.84586139131, 47.488209741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af8c2510cb3c57f8436ee182fb3724e65c2e78f4", "fields": {"nom_de_la_commune": "BADEVEL", "libell_d_acheminement": "BADEVEL", "code_postal": "25490", "coordonnees_gps": [47.518340025, 6.90999860346], "code_commune_insee": "25040"}, "geometry": {"type": "Point", "coordinates": [6.90999860346, 47.518340025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa74085183a933a83868e18ba9e4a290fafcb6b9", "fields": {"nom_de_la_commune": "BAVANS", "libell_d_acheminement": "BAVANS", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25048"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcc1cfed6d218e4cb926fc534e37f936bae91b0f", "fields": {"code_postal": "25380", "code_commune_insee": "25051", "libell_d_acheminement": "BELLEHERBE", "ligne_5": "DROITFONTAINE", "nom_de_la_commune": "BELLEHERBE", "coordonnees_gps": [47.2514656671, 6.66193856736]}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0305be666f58e99ec593f0cd4cf53efe76f503", "fields": {"nom_de_la_commune": "BERTHELANGE", "libell_d_acheminement": "BERTHELANGE", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25055"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "389d5829694e40870bc20a47ba2da70b8c41a6f7", "fields": {"nom_de_la_commune": "BIANS LES USIERS", "libell_d_acheminement": "BIANS LES USIERS", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25060"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1665d425e53d09002f39a1b6c363542da35c184", "fields": {"nom_de_la_commune": "BIEF", "libell_d_acheminement": "BIEF", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25061"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf7f634eecd307d2fbabefcd8a9f518b4b18a07", "fields": {"nom_de_la_commune": "BLAMONT", "libell_d_acheminement": "BLAMONT", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25063"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68511100ce340001be27aec40a063b3230fe30b", "fields": {"nom_de_la_commune": "BOLANDOZ", "libell_d_acheminement": "BOLANDOZ", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25070"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a997379ee0348cf8ca4a755d5b3890d15f4a7aa", "fields": {"nom_de_la_commune": "LA BOSSE", "libell_d_acheminement": "LA BOSSE", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25077"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "059ff7e3fdf49d4871b33f48e210ce7634fe9c2e", "fields": {"nom_de_la_commune": "BOUCLANS", "libell_d_acheminement": "BOUCLANS", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25078"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb651dc2e1151b45053bea51ecd01427c0f025b8", "fields": {"nom_de_la_commune": "BRERES", "libell_d_acheminement": "BRERES", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25090"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4244f65e4a89371f7173b4606e4bd99c2dde1c12", "fields": {"nom_de_la_commune": "LA BRETENIERE", "libell_d_acheminement": "LA BRETENIERE", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25092"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aecfa14e5b83e2ac0e88f0cbf23eb55e2622075e", "fields": {"nom_de_la_commune": "CADEMENE", "libell_d_acheminement": "CADEMENE", "code_postal": "25290", "coordonnees_gps": [47.1021279633, 6.08388420751], "code_commune_insee": "25106"}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c832c9569a9975c3924ab7b25fad1f255995622", "fields": {"nom_de_la_commune": "CHAFFOIS", "libell_d_acheminement": "CHAFFOIS", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25110"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b84c1a10fa19d3613d1921e497c131f492abc31", "fields": {"nom_de_la_commune": "CHALEZEULE", "libell_d_acheminement": "CHALEZEULE", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25112"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad71807237c5f1cb8e0d32b3423589a3df7b3fba", "fields": {"nom_de_la_commune": "CHARBONNIERES LES SAPINS", "libell_d_acheminement": "CHARBONNIERES LES SAPINS", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25123"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede20c4348448c1acc7e852f735c0f0fc9762ce8", "fields": {"nom_de_la_commune": "CHATELBLANC", "libell_d_acheminement": "CHATELBLANC", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25131"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16522387ef37a327828c7643dcdd2352be8ff9c7", "fields": {"nom_de_la_commune": "CHATILLON LE DUC", "libell_d_acheminement": "CHATILLON LE DUC", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25133"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b288c56e30a2f03eb6b4c85614ce9cd18c2b97", "fields": {"nom_de_la_commune": "CHATILLON SUR LISON", "libell_d_acheminement": "CHATILLON SUR LISON", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25134"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45deb5290d5fab39a352ea9c6b3b9d46bf9dab2a", "fields": {"nom_de_la_commune": "CHAUDEFONTAINE", "libell_d_acheminement": "CHAUDEFONTAINE", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25137"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d168ed262057ff3df32472a2a1653031d5ab0b", "fields": {"nom_de_la_commune": "LES TERRES DE CHAUX", "libell_d_acheminement": "LES TERRES DE CHAUX", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25138"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c92d3a12117773e482e1b20601bebc12d031e54b", "fields": {"nom_de_la_commune": "CHAUX LES CLERVAL", "libell_d_acheminement": "CHAUX LES CLERVAL", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25140"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be910cb2f1a6c5442f2146d17bc53b9b5f22aed", "fields": {"nom_de_la_commune": "TOUTENS", "libell_d_acheminement": "TOUTENS", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31558"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edbbe94f28312c052fc3277254dc8440d9165ff9", "fields": {"nom_de_la_commune": "URAU", "libell_d_acheminement": "URAU", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31562"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6f5758e3382778626d6b9d7c7f65e06e1184887", "fields": {"nom_de_la_commune": "VALLEGUE", "libell_d_acheminement": "VALLEGUE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31566"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8afd70ac0939dc3d0166c48f3b3575dd45aa97a6", "fields": {"nom_de_la_commune": "VAUDREUILLE", "libell_d_acheminement": "VAUDREUILLE", "code_postal": "31250", "coordonnees_gps": [43.4555954942, 1.99785019175], "code_commune_insee": "31569"}, "geometry": {"type": "Point", "coordinates": [1.99785019175, 43.4555954942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "124c208c23ce7118b99fa2145a7c4f9f6e532b9f", "fields": {"nom_de_la_commune": "ARBLADE LE BAS", "libell_d_acheminement": "ARBLADE LE BAS", "code_postal": "32720", "coordonnees_gps": [43.7019808503, -0.197015823545], "code_commune_insee": "32004"}, "geometry": {"type": "Point", "coordinates": [-0.197015823545, 43.7019808503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d47e7a313d4683d138a5c9b77dd9190063145369", "fields": {"nom_de_la_commune": "ARROUEDE", "libell_d_acheminement": "ARROUEDE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32010"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e21c97c5da31d31b86218ad961e9c7328683297", "fields": {"nom_de_la_commune": "AUTERIVE", "libell_d_acheminement": "AUTERIVE", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32019"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f13b75b48615d2b4025ce6cff5fce2322becc83c", "fields": {"nom_de_la_commune": "AVENSAC", "libell_d_acheminement": "AVENSAC", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32021"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65c49b00568c24a86cb0f9d27aafcd4346d85e73", "fields": {"nom_de_la_commune": "BARCELONNE DU GERS", "libell_d_acheminement": "BARCELONNE DU GERS", "code_postal": "32720", "coordonnees_gps": [43.7019808503, -0.197015823545], "code_commune_insee": "32027"}, "geometry": {"type": "Point", "coordinates": [-0.197015823545, 43.7019808503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43bb4332ff3cec7f21ad39a0102f674b1d08b10b", "fields": {"nom_de_la_commune": "BARRAN", "libell_d_acheminement": "BARRAN", "code_postal": "32350", "coordonnees_gps": [43.6571309769, 0.430675404963], "code_commune_insee": "32029"}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d08259213e4f9a838ae398c1f4901a5129d73cd", "fields": {"nom_de_la_commune": "BASSOUES", "libell_d_acheminement": "BASSOUES", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32032"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d03a8bd21149d2dc0bd5716d53c1074461ce9b", "fields": {"nom_de_la_commune": "BAZUGUES", "libell_d_acheminement": "BAZUGUES", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32034"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "092a300d02d39e437d56922f6f2a111312ad5f95", "fields": {"nom_de_la_commune": "BERRAC", "libell_d_acheminement": "BERRAC", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32047"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d3c4346aa189b0c0b24db1746ec7e7eadf64b67", "fields": {"nom_de_la_commune": "BLANQUEFORT", "libell_d_acheminement": "BLANQUEFORT", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32056"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d980816fb5759964a9cf754a1990b38678d6890f", "fields": {"nom_de_la_commune": "BOUCAGNERES", "libell_d_acheminement": "BOUCAGNERES", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32060"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51fac7e993b8b62bae2fbd498680f5163a840592", "fields": {"nom_de_la_commune": "BOUZON GELLENAVE", "libell_d_acheminement": "BOUZON GELLENAVE", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32063"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d64f0460a307bb48d5feef9a00097b609adbe29", "fields": {"nom_de_la_commune": "CADEILHAN", "libell_d_acheminement": "CADEILHAN", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32068"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0117553f712c3a98137e8d55a38e7e82d4c1fa8d", "fields": {"nom_de_la_commune": "CADEILLAN", "libell_d_acheminement": "CADEILLAN", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32069"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3b8fd632217b070370202c20f4d24c4fb657ec", "fields": {"nom_de_la_commune": "CAHUZAC SUR ADOUR", "libell_d_acheminement": "CAHUZAC SUR ADOUR", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32070"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb2d4be08beccaad18715a4a229fd0f2041462e", "fields": {"nom_de_la_commune": "CAILLAVET", "libell_d_acheminement": "CAILLAVET", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32071"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e752bf0bb3680fa3299163425d1008cd1941bca7", "fields": {"nom_de_la_commune": "CASTELNAU D ANGLES", "libell_d_acheminement": "CASTELNAU D ANGLES", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32077"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0084ccc6441509fc2d8d3f3329e3928bdf71551b", "fields": {"nom_de_la_commune": "CASTERON", "libell_d_acheminement": "CASTERON", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32084"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b5ade59493107cc8d465f65b8813f2a43784df5", "fields": {"nom_de_la_commune": "CLERMONT POUYGUILLES", "libell_d_acheminement": "CLERMONT POUYGUILLES", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32104"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1422f629989bd765cba02eef11f8f6da9aa4b03", "fields": {"nom_de_la_commune": "CONDOM", "libell_d_acheminement": "CONDOM", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32107"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f71a888807fd2f568ae21a2b5b9849eed6733cf9", "fields": {"nom_de_la_commune": "COULOUME MONDEBAT", "libell_d_acheminement": "COULOUME MONDEBAT", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32109"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940476794a4fb6573d0570e7b9499a593c39c4cb", "fields": {"nom_de_la_commune": "COURTIES", "libell_d_acheminement": "COURTIES", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32111"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "696095b1d561cb884d88f5daef0faad65d102c70", "fields": {"nom_de_la_commune": "CRASTES", "libell_d_acheminement": "CRASTES", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32112"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc518f466b57248ae2348a26cc3aa53436f68135", "fields": {"nom_de_la_commune": "CUELAS", "libell_d_acheminement": "CUELAS", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32114"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b38b6ef9f30d9d7761347dbaedf4725dda19b7c", "fields": {"nom_de_la_commune": "DURAN", "libell_d_acheminement": "DURAN", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32117"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ed648348fec2debfb475197980fae7d62bd54e2", "fields": {"nom_de_la_commune": "EAUZE", "libell_d_acheminement": "EAUZE", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32119"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb71030f154502ad5f580b5e52dc70da8e24ece", "fields": {"nom_de_la_commune": "FAGET ABBATIAL", "libell_d_acheminement": "FAGET ABBATIAL", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32130"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "939b25465474b35d95b70fb963b5c34f6b65f046", "fields": {"nom_de_la_commune": "FOURCES", "libell_d_acheminement": "FOURCES", "code_postal": "32250", "coordonnees_gps": [43.956623436, 0.171871761576], "code_commune_insee": "32133"}, "geometry": {"type": "Point", "coordinates": [0.171871761576, 43.956623436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e7be13d48af0a9372aafa65278aa623ff731c7c", "fields": {"nom_de_la_commune": "GAUJAC", "libell_d_acheminement": "GAUJAC", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32140"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ee3a1321fd7887f08ade8ba53e5823c4a8d3ad7", "fields": {"nom_de_la_commune": "GAZAUPOUY", "libell_d_acheminement": "GAZAUPOUY", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32143"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a66aac1c5650b2816fa3c339ffbcd9ac36384e7", "fields": {"nom_de_la_commune": "GOUX", "libell_d_acheminement": "GOUX", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32151"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c406b9d6cfbe1ddd96d377eab23961638da2b9", "fields": {"nom_de_la_commune": "JUSTIAN", "libell_d_acheminement": "JUSTIAN", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32166"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59e75d2a52bb6d7bc62f3d2b89080ee71d5bc8cd", "fields": {"nom_de_la_commune": "LAGUIAN MAZOUS", "libell_d_acheminement": "LAGUIAN MAZOUS", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32181"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ec6e088e73e004fd69864bece29ab54034dba34", "fields": {"nom_de_la_commune": "LAHAS", "libell_d_acheminement": "LAHAS", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32182"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac3b8adadaea23f1560db04270d3b417b14d20d8", "fields": {"nom_de_la_commune": "LALANNE", "libell_d_acheminement": "LALANNE", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32184"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92fb9387f708c1856bd52d74d36128076e4573f2", "fields": {"nom_de_la_commune": "LANNEMAIGNAN", "libell_d_acheminement": "LANNEMAIGNAN", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32189"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47f936f50606e7bdb94b21c8059238a336c333fb", "fields": {"nom_de_la_commune": "LASSERAN", "libell_d_acheminement": "LASSERAN", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32200"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805fb764625f69eec0eb0042e78740e44d5447a1", "fields": {"nom_de_la_commune": "LAVARDENS", "libell_d_acheminement": "LAVARDENS", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32204"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4443584548a2ef031cb7d34d67e6546cf8c4e7c0", "fields": {"nom_de_la_commune": "LAVERAET", "libell_d_acheminement": "LAVERAET", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32205"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88500b3c76d70d6ef1a9760af8567ad5900edf19", "fields": {"nom_de_la_commune": "LIGARDES", "libell_d_acheminement": "LIGARDES", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32212"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2561aad2c0f15e9ffb0efe42dfa540d496f3db2", "fields": {"nom_de_la_commune": "LOUSLITGES", "libell_d_acheminement": "LOUSLITGES", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32217"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf5dee67b5eb30e1a2675c26faa5fac116111fb5", "fields": {"nom_de_la_commune": "MAGNAS", "libell_d_acheminement": "MAGNAS", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32223"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be1253ca2ecb5da9daccaaa8cd06425966a3b69", "fields": {"nom_de_la_commune": "MANAS BASTANOUS", "libell_d_acheminement": "MANAS BASTANOUS", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32226"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b851094769e291c4d2b8947940203f99e9c1245", "fields": {"nom_de_la_commune": "MANSEMPUY", "libell_d_acheminement": "MANSEMPUY", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32229"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e21a5f261337075259412a820df562ad257b67a", "fields": {"nom_de_la_commune": "MANSENCOME", "libell_d_acheminement": "MANSENCOME", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32230"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49cdfc50329830ec7ad153e0a1833430e55e918f", "fields": {"nom_de_la_commune": "MARESTAING", "libell_d_acheminement": "MARESTAING", "code_postal": "32490", "coordonnees_gps": [43.5909785115, 0.981247393287], "code_commune_insee": "32234"}, "geometry": {"type": "Point", "coordinates": [0.981247393287, 43.5909785115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c1c58a417904bd6ea87f926b968bdaa09dbf8e", "fields": {"nom_de_la_commune": "MARGOUET MEYMES", "libell_d_acheminement": "MARGOUET MEYMES", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32235"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b84d7162bb672e9b38f42a425808f81c4d99e9f", "fields": {"nom_de_la_commune": "MAUROUX", "libell_d_acheminement": "MAUROUX", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32248"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f450483f6aff9f6eeb3ed14a1b0a9b554e84c5a0", "fields": {"nom_de_la_commune": "MAUVEZIN", "libell_d_acheminement": "MAUVEZIN", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32249"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d4c12af5f9a2d1d0dc6a6137ab89ed37386b2a", "fields": {"nom_de_la_commune": "MERENS", "libell_d_acheminement": "MERENS", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32251"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d52ae6087d87ef366d63ec8cdbbd4d5a6113829", "fields": {"nom_de_la_commune": "MIRANDE", "libell_d_acheminement": "MIRANDE", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32256"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baaee7dfa40944e1ad6de94e2d97f8cc9514ff89", "fields": {"nom_de_la_commune": "MIRANNES", "libell_d_acheminement": "MIRANNES", "code_postal": "32350", "coordonnees_gps": [43.6571309769, 0.430675404963], "code_commune_insee": "32257"}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "865d41ee27b94210f5743b1c8d40dfc7bfee30d7", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32278"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf444c2746baa48235c9ca94bfb7d82a86433ff", "fields": {"nom_de_la_commune": "MONT DE MARRAST", "libell_d_acheminement": "MONT DE MARRAST", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32281"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b880882f306c03adad647bd5db1c50e683d5a90", "fields": {"nom_de_la_commune": "NOULENS", "libell_d_acheminement": "NOULENS", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32299"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b597ec146487040593263b0bdbb3277a60897e", "fields": {"nom_de_la_commune": "PAUILHAC", "libell_d_acheminement": "PAUILHAC", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32306"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4524877d07e809cfe838cec1566d4abaced1df03", "fields": {"nom_de_la_commune": "POMPIAC", "libell_d_acheminement": "POMPIAC", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32322"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253616d769cae7e40d68d6ffa3544629e433ba3a", "fields": {"nom_de_la_commune": "POUYDRAGUIN", "libell_d_acheminement": "POUYDRAGUIN", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32325"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc3b9f95f41b6729894b3570377d9884e4fe3e6", "fields": {"nom_de_la_commune": "PRECHAC SUR ADOUR", "libell_d_acheminement": "PRECHAC SUR ADOUR", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32330"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e9e76b23ea1aa318428e56ad36039f611eab53f", "fields": {"nom_de_la_commune": "PUYCASQUIER", "libell_d_acheminement": "PUYCASQUIER", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32335"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fab3ac4fb055672f8dd8a8a19cab55ecf5d818ff", "fields": {"nom_de_la_commune": "ST ANTOINE", "libell_d_acheminement": "ST ANTOINE", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32358"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cdf9525056d51f80c3de9dc0bf69b80985e54e1", "fields": {"nom_de_la_commune": "STE CHRISTIE D ARMAGNAC", "libell_d_acheminement": "STE CHRISTIE D ARMAGNAC", "code_postal": "32370", "coordonnees_gps": [43.8064207893, 0.0369995528597], "code_commune_insee": "32369"}, "geometry": {"type": "Point", "coordinates": [0.0369995528597, 43.8064207893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6066032481f4022b605b9e32914aec772a9e28ef", "fields": {"nom_de_la_commune": "ST CREAC", "libell_d_acheminement": "ST CREAC", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32371"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d84bacbe147f6b2d10a4a0e0980685d2e8272f9", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32388"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e78fa28e64cf755406ca6b21e342c25c368f3a0b", "fields": {"nom_de_la_commune": "ST MARTIN D ARMAGNAC", "libell_d_acheminement": "ST MARTIN D ARMAGNAC", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32390"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be48e498984d2a388da519c886e1440bca90d411", "fields": {"nom_de_la_commune": "ST MARTIN GIMOIS", "libell_d_acheminement": "ST MARTIN GIMOIS", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32392"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e9df4be3d9e595e9eeeb848b949f86451acdd0a", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32394"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c3ba47371cbfae918644ecf9ae94e1fdfc4e0c", "fields": {"nom_de_la_commune": "ST ORENS", "libell_d_acheminement": "ST ORENS", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32399"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9999c5e42beda624767bad4df3d5e39f302f3469", "fields": {"nom_de_la_commune": "ST ORENS POUY PETIT", "libell_d_acheminement": "ST ORENS POUY PETIT", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32400"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "726cfbdad4308b85a71c93ac28459aa6201d4798", "fields": {"nom_de_la_commune": "ST OST", "libell_d_acheminement": "ST OST", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32401"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0b0a59fb8aeb3646ff66f16d455cb10265262d", "fields": {"nom_de_la_commune": "ST PUY", "libell_d_acheminement": "ST PUY", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32404"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7ff68935c2d5bc69c7195617d4578ce355d42af", "fields": {"nom_de_la_commune": "ST SOULAN", "libell_d_acheminement": "ST SOULAN", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32407"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "136b50b1f0ce3e87edfc9609f95b4499886237e8", "fields": {"nom_de_la_commune": "SANSAN", "libell_d_acheminement": "SANSAN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32411"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8bbc8d24e18647c7887f48f7de9626c18a60a95", "fields": {"nom_de_la_commune": "SARRAGACHIES", "libell_d_acheminement": "SARRAGACHIES", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32414"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1048525d816641ca6ec0e8911effddec2caa9c7e", "fields": {"nom_de_la_commune": "SARRAGUZAN", "libell_d_acheminement": "SARRAGUZAN", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32415"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfeebfdbcd1487e75eff00ce906bb774ea5e2cde", "fields": {"nom_de_la_commune": "SAUVIMONT", "libell_d_acheminement": "SAUVIMONT", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32420"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4a6267b85b479ff666340c8e335a37a4aa331b7", "fields": {"nom_de_la_commune": "SEAILLES", "libell_d_acheminement": "SEAILLES", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32423"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4416f29c2bd266b749ace93358f5edbfdcef342", "fields": {"nom_de_la_commune": "SEISSAN", "libell_d_acheminement": "SEISSAN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32426"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "870039d7b7a15698e3a6079d945b79cf613d3e80", "fields": {"nom_de_la_commune": "SEMPESSERRE", "libell_d_acheminement": "SEMPESSERRE", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32429"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c00a2d7bcc31def0dd8bdd4c9f3261107aacc2b1", "fields": {"nom_de_la_commune": "SION", "libell_d_acheminement": "SION", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32434"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82394e874fc103c562ce9998981c4be3800a9c70", "fields": {"nom_de_la_commune": "SIRAC", "libell_d_acheminement": "SIRAC", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32435"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "764fb00712b909c978835833caeed8da27f0a7a3", "fields": {"nom_de_la_commune": "TARSAC", "libell_d_acheminement": "TARSAC", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32439"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "decb61b14a33808950f3909b7118af292d9806e5", "fields": {"nom_de_la_commune": "TASQUE", "libell_d_acheminement": "TASQUE", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32440"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32fd1d9726b81f03bd89bb124f5d0d6861678713", "fields": {"nom_de_la_commune": "TERMES D ARMAGNAC", "libell_d_acheminement": "TERMES D ARMAGNAC", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32443"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019be947fef452b1d391ae1102bec00e79a8c1ab", "fields": {"nom_de_la_commune": "TIESTE URAGNOUX", "libell_d_acheminement": "TIESTE URAGNOUX", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32445"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d0e7b9244797baac010b7f6e5a5c9b0a6f19fe0", "fields": {"nom_de_la_commune": "TILLAC", "libell_d_acheminement": "TILLAC", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32446"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fbee25615537f69ca837bbf791c35fb2e394236", "fields": {"nom_de_la_commune": "TOUJOUSE", "libell_d_acheminement": "TOUJOUSE", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32449"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "599f13e1b27e51a961c3481487e61787faa5bf1f", "fields": {"nom_de_la_commune": "TOURDUN", "libell_d_acheminement": "TOURDUN", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32450"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a09182130cc87be8a3d82c02cca659b646defa1", "fields": {"nom_de_la_commune": "URGOSSE", "libell_d_acheminement": "URGOSSE", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32458"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6c8d51420a0e8f585ca6472e3b5b6a2dc30b0fb", "fields": {"nom_de_la_commune": "VIC FEZENSAC", "libell_d_acheminement": "VIC FEZENSAC", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32462"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e6cb2d2eade1b2bf7c96f236ca906b865371e8", "fields": {"nom_de_la_commune": "VIELLA", "libell_d_acheminement": "VIELLA", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32463"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d75ddad014b2f198568feebb34c40b0afe3721", "fields": {"nom_de_la_commune": "ABZAC", "libell_d_acheminement": "ABZAC", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33001"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39930988360aebc6cbdaafb591e05512a0d679bd", "fields": {"nom_de_la_commune": "ARES", "libell_d_acheminement": "ARES", "code_postal": "33740", "coordonnees_gps": [44.7952398157, -1.07874990703], "code_commune_insee": "33011"}, "geometry": {"type": "Point", "coordinates": [-1.07874990703, 44.7952398157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10b56a0b5a9e3fecd0f173e8d84bb9ae783dfa78", "fields": {"nom_de_la_commune": "LES ARTIGUES DE LUSSAC", "libell_d_acheminement": "LES ARTIGUES DE LUSSAC", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33014"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56cb55b3360eadb129f0a1d0d9c76784550b86ce", "fields": {"code_postal": "33240", "code_commune_insee": "33018", "libell_d_acheminement": "VAL DE VIRVEE", "ligne_5": "SALIGNAC", "nom_de_la_commune": "VAL DE VIRVEE", "coordonnees_gps": [44.9990310815, -0.398251913536]}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05598b02e070781e66e7f4211ac1a727ed6178bd", "fields": {"nom_de_la_commune": "BARSAC", "libell_d_acheminement": "BARSAC", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33030"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941994774e60a0c159bdb47f70c47dedfd0c2fd1", "fields": {"nom_de_la_commune": "LE CROUZET", "libell_d_acheminement": "LE CROUZET", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25179"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfc3d5c31698adcbdc059730b88030e161b188e", "fields": {"nom_de_la_commune": "DAMPJOUX", "libell_d_acheminement": "DAMPJOUX", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25192"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f1a6bc66eb6722c95c7d130450e253b4e72afe9", "fields": {"nom_de_la_commune": "DESANDANS", "libell_d_acheminement": "DESANDANS", "code_postal": "25750", "coordonnees_gps": [47.5357024428, 6.66891038206], "code_commune_insee": "25198"}, "geometry": {"type": "Point", "coordinates": [6.66891038206, 47.5357024428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ebf12d177fbd85ad7a5a916fc4aa59f6dccec2", "fields": {"nom_de_la_commune": "DESERVILLERS", "libell_d_acheminement": "DESERVILLERS", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25199"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "520ae942ffe17b6b098f499486d4b96a3adf5710", "fields": {"nom_de_la_commune": "DUNG", "libell_d_acheminement": "DUNG", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25207"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ea712c199c71bc59bb4b1b0da508fc096f70be", "fields": {"nom_de_la_commune": "ECOT", "libell_d_acheminement": "ECOT", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25214"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36953c58bab72a0e689cf39da4776e487fe0daa3", "fields": {"nom_de_la_commune": "L ECOUVOTTE", "libell_d_acheminement": "L ECOUVOTTE", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25215"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a753f7ada3c3cd613761b0aa38beae824d75c9b", "fields": {"nom_de_la_commune": "EPENOUSE", "libell_d_acheminement": "EPENOUSE", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25218"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d472835e40a8af650e1469852e7ef6bdd60d73", "fields": {"nom_de_la_commune": "ESNANS", "libell_d_acheminement": "ESNANS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25221"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d342ea3822528a2115a80735a1cd1ab09771f335", "fields": {"nom_de_la_commune": "ETERNOZ", "libell_d_acheminement": "ETERNOZ", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25223"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d01dbe0972f58e9161ddd92b157f4d4ffc4beb1c", "fields": {"code_postal": "25330", "code_commune_insee": "25223", "libell_d_acheminement": "ETERNOZ", "ligne_5": "DOULAIZE", "nom_de_la_commune": "ETERNOZ", "coordonnees_gps": [47.0294541279, 6.08005639292]}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2445a5568880aeaff60056c341dad677f1a5c96c", "fields": {"nom_de_la_commune": "ETRAPPE", "libell_d_acheminement": "ETRAPPE", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25226"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0403d22bdac91667ea823ce59f5b16fda55814ac", "fields": {"nom_de_la_commune": "FLAGEY RIGNEY", "libell_d_acheminement": "FLAGEY RIGNEY", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25242"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb3851614042eab5767f6070b749706f8f31e78", "fields": {"nom_de_la_commune": "FONTENELLE MONTBY", "libell_d_acheminement": "FONTENELLE MONTBY", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25247"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b975341d2183855a57f13335130941f6ba4655", "fields": {"nom_de_la_commune": "FRANEY", "libell_d_acheminement": "FRANEY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25257"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a25c6466f171454b99cb9329ad5cafbdae9011", "fields": {"nom_de_la_commune": "FROIDEVAUX", "libell_d_acheminement": "FROIDEVAUX", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25261"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c034f6fa15ce9cbe2bf4cea822c62de58c47eb65", "fields": {"nom_de_la_commune": "GEMONVAL", "libell_d_acheminement": "GEMONVAL", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25264"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9d18f232c808178e7d19eb60605df9a971665a", "fields": {"nom_de_la_commune": "GOUMOIS", "libell_d_acheminement": "GOUMOIS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25280"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844b95855fd18d052dbe1a90a97426a155376dad", "fields": {"nom_de_la_commune": "GRAND COMBE DES BOIS", "libell_d_acheminement": "GRAND COMBE DES BOIS", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25286"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81536d5217b6a053c23ea5b26d7f88e1af9a2bff", "fields": {"nom_de_la_commune": "GRANDFONTAINE", "libell_d_acheminement": "GRANDFONTAINE", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25287"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f23f9323afbdca9bd1cb20a6b677ddd47c7c0a1", "fields": {"nom_de_la_commune": "LES HOPITAUX NEUFS", "libell_d_acheminement": "LES HOPITAUX NEUFS", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25307"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6a5d245b120cd882faf6fdb4ec4bebc69a7caf", "fields": {"nom_de_la_commune": "HOUTAUD", "libell_d_acheminement": "HOUTAUD", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25309"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71a292d00a663bf4d238d8e982bef571e3cd24c2", "fields": {"nom_de_la_commune": "ISSANS", "libell_d_acheminement": "ISSANS", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25316"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c82e0420c458cf919221771d8163ff7a38068487", "fields": {"nom_de_la_commune": "LABERGEMENT STE MARIE", "libell_d_acheminement": "LABERGEMENT STE MARIE", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25320"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c06dbd05caf2c95ab1d8820142ca3133e261c94c", "fields": {"nom_de_la_commune": "LAVAL LE PRIEURE", "libell_d_acheminement": "LAVAL LE PRIEURE", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25329"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52900f9b4d3f3ed48418a2f7f2b01016fadb3388", "fields": {"nom_de_la_commune": "LEVIER", "libell_d_acheminement": "LEVIER", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25334"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bccbc189bdfe9f3ee887740e04d84085817d70df", "fields": {"nom_de_la_commune": "LOMBARD", "libell_d_acheminement": "LOMBARD", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25340"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc07b7f2c681837125c604107a159dfa4a272d43", "fields": {"nom_de_la_commune": "LONGEVELLE LES RUSSEY", "libell_d_acheminement": "LONGEVELLE LES RUSSEY", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25344"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e9a80df9b11d8c7c08d6a859f6ecef9392dc29c", "fields": {"nom_de_la_commune": "LONGEVILLE", "libell_d_acheminement": "LONGEVILLE", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25346"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd73036a3514d4104c0c8790f8365efe0abe7591", "fields": {"nom_de_la_commune": "MAGNY CHATELARD", "libell_d_acheminement": "MAGNY CHATELARD", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25355"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5ad02e00803609e6246364cca25478f84bbdb23", "fields": {"nom_de_la_commune": "MAISONS DU BOIS LIEVREMONT", "libell_d_acheminement": "MAISONS DU BOIS LIEVREMONT", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25357"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd40767ca2840aeb0bb0dd826f8694773919450", "fields": {"code_postal": "25650", "code_commune_insee": "25357", "libell_d_acheminement": "MAISONS DU BOIS LIEVREMONT", "ligne_5": "LIEVREMONT", "nom_de_la_commune": "MAISONS DU BOIS LIEVREMONT", "coordonnees_gps": [47.0093520385, 6.45599520386]}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9417998998c9f50ebdca1421c7e9b648d65c9ab7", "fields": {"nom_de_la_commune": "MALBRANS", "libell_d_acheminement": "MALBRANS", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25360"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa6f580958429fab166f31b68d008db43b509199", "fields": {"nom_de_la_commune": "MATHAY", "libell_d_acheminement": "MATHAY", "code_postal": "25700", "coordonnees_gps": [47.450787456, 6.79182503855], "code_commune_insee": "25370"}, "geometry": {"type": "Point", "coordinates": [6.79182503855, 47.450787456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af36ce438443e05e0ac2991b9aca50143dc70e09", "fields": {"nom_de_la_commune": "MESMAY", "libell_d_acheminement": "MESMAY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25379"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e914d4df8c1a762a0f5b5dfa818564bccb12b659", "fields": {"nom_de_la_commune": "METABIEF", "libell_d_acheminement": "METABIEF", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25380"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec67b753990b554f2f3398fe018cea04973568b8", "fields": {"nom_de_la_commune": "MONCLEY", "libell_d_acheminement": "MONCLEY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25383"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b064622b7393e8030d191fb794f53e24662c3720", "fields": {"nom_de_la_commune": "MONDON", "libell_d_acheminement": "MONDON", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25384"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d09329246e0236cb5fd9217e5fbba3c8ea181a19", "fields": {"code_postal": "25680", "code_commune_insee": "25385", "libell_d_acheminement": "MONTAGNEY SERVIGNEY", "ligne_5": "SERVIGNEY", "nom_de_la_commune": "MONTAGNEY SERVIGNEY", "coordonnees_gps": [47.4550311949, 6.34612081479]}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d960db531a9d7a10c0266046ca261ebe3233984", "fields": {"nom_de_la_commune": "MONTANCY", "libell_d_acheminement": "MONTANCY", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25386"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522c3c4848670e078aa56fcff895a09e9abe43ec", "fields": {"nom_de_la_commune": "MONTANDON", "libell_d_acheminement": "MONTANDON", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25387"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97e18fadaca3a8f1ed29f6de94fdf99f5ae2f97e", "fields": {"nom_de_la_commune": "MONTBELIARD", "libell_d_acheminement": "MONTBELIARD", "code_postal": "25200", "coordonnees_gps": [47.5248285421, 6.80015635102], "code_commune_insee": "25388"}, "geometry": {"type": "Point", "coordinates": [6.80015635102, 47.5248285421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ee71fa06191d74015c4787e022b4549fd3c1ce0", "fields": {"nom_de_la_commune": "MONT DE LAVAL", "libell_d_acheminement": "MONT DE LAVAL", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25391"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea19c8a6cecaf49cd5ddd80f63c44d63723d6004", "fields": {"nom_de_la_commune": "MONTLEBON", "libell_d_acheminement": "MONTLEBON", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25403"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "572b04beddb101e7a6f104915bd2ac201f268c04", "fields": {"nom_de_la_commune": "MONTROND LE CHATEAU", "libell_d_acheminement": "MONTROND LE CHATEAU", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25406"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1ca860a18a1964b16db9749aa221100255175b", "fields": {"code_postal": "25580", "code_commune_insee": "25424", "libell_d_acheminement": "LES PREMIERS SAPINS", "ligne_5": "ATHOSE", "nom_de_la_commune": "LES PREMIERS SAPINS", "coordonnees_gps": [47.1244467282, 6.26910894266]}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecdfcbb2e6ae4328bc84d5cc3a062c80d21b6938", "fields": {"code_postal": "25580", "code_commune_insee": "25424", "libell_d_acheminement": "LES PREMIERS SAPINS", "ligne_5": "VANCLANS", "nom_de_la_commune": "LES PREMIERS SAPINS", "coordonnees_gps": [47.1244467282, 6.26910894266]}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79a040d8509c5825a5d590f8a6ee22382c68644", "fields": {"nom_de_la_commune": "NOVILLARS", "libell_d_acheminement": "NOVILLARS", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25429"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af7776528200a7e39ba3794bb03225b33b06302f", "fields": {"nom_de_la_commune": "ONANS", "libell_d_acheminement": "ONANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25431"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "947c78156ac9b701d784d0c62ec5eb059218128a", "fields": {"nom_de_la_commune": "OUGNEY DOUVOT", "libell_d_acheminement": "OUGNEY DOUVOT", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25439"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f2ba11de9647b80859e2101fae8804a49906ad3", "fields": {"nom_de_la_commune": "PELOUSEY", "libell_d_acheminement": "PELOUSEY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25448"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51991aec167492fad019dea4b9a62c60d787b79e", "fields": {"nom_de_la_commune": "PESEUX", "libell_d_acheminement": "PESEUX", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25449"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3be081731d8fe6fbccc45fb5b91eafd8aa371b50", "fields": {"nom_de_la_commune": "PETITE CHAUX", "libell_d_acheminement": "PETITE CHAUX", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25451"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4dcda341ded85993b51440ece374263efca2244", "fields": {"nom_de_la_commune": "PIERREFONTAINE LES BLAMONT", "libell_d_acheminement": "PIERREFONTAINE LES BLAMONT", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25452"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2b5ef46dec862de10ba9571bc139fc357adece5", "fields": {"nom_de_la_commune": "PLAIMBOIS VENNES", "libell_d_acheminement": "PLAIMBOIS VENNES", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25457"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c8216086b954c95d1318c26280f6c3f71e25546", "fields": {"nom_de_la_commune": "LA PLANEE", "libell_d_acheminement": "LA PLANEE", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25459"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3f26e635a8c2e7240b740cbb1c8a75144c6ed8", "fields": {"nom_de_la_commune": "LES PONTETS", "libell_d_acheminement": "LES PONTETS", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25464"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ee05149fec73af92472f130e57809d7afa00bf", "fields": {"nom_de_la_commune": "PONT LES MOULINS", "libell_d_acheminement": "PONT LES MOULINS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25465"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbea5834fcd400c448c1cda620356e8f94b1779b", "fields": {"nom_de_la_commune": "LE PUY", "libell_d_acheminement": "LE PUY", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25474"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de23ad8e4b65ca350d207813b5f40db84beb295", "fields": {"nom_de_la_commune": "RANG", "libell_d_acheminement": "RANG", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25479"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e820eed41a668d0421da4b6a41e105b9a03f430", "fields": {"nom_de_la_commune": "RECULFOZ", "libell_d_acheminement": "RECULFOZ", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25483"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e0ade142e4e0640466ae5db8f93ab23d38f0ee5", "fields": {"code_postal": "25150", "code_commune_insee": "25485", "libell_d_acheminement": "REMONDANS VAIVRE", "ligne_5": "VAIVRE", "nom_de_la_commune": "REMONDANS VAIVRE", "coordonnees_gps": [47.3948099665, 6.72943096547]}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d2ea6047ef03c0eac2523b3140d7b7a928efb8", "fields": {"nom_de_la_commune": "RIGNEY", "libell_d_acheminement": "RIGNEY", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25490"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e6a6dbd6dc71343493d4482b87d24393c1d5978", "fields": {"nom_de_la_commune": "RIGNOSOT", "libell_d_acheminement": "RIGNOSOT", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25491"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee4a7b45025faf9cb0f489106e623bc0f9b272b5", "fields": {"nom_de_la_commune": "LA RIVIERE DRUGEON", "libell_d_acheminement": "LA RIVIERE DRUGEON", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25493"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "752ef866e36b604f5ff6a791622839970f90070c", "fields": {"nom_de_la_commune": "ROSET FLUANS", "libell_d_acheminement": "ROSET FLUANS", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25502"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54fe7270834f8d08557cbc70926e752cbd934ddd", "fields": {"nom_de_la_commune": "RUFFEY LE CHATEAU", "libell_d_acheminement": "RUFFEY LE CHATEAU", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25510"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "486e6070a4293bd64672addd0fdea07fd72840b2", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25518"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6280b169866ab981f9f0b7d7ddff209bc178a9d", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25519"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be3c726917c3743d7e828bd354b62d0bdabe15a1", "fields": {"nom_de_la_commune": "ST MAURICE COLOMBIER", "libell_d_acheminement": "ST MAURICE COLOMBIER", "code_postal": "25260", "coordonnees_gps": [47.456571306, 6.67036104248], "code_commune_insee": "25524"}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4e8448c38a3d0ba541a277e8f92a22899a51e9f", "fields": {"code_postal": "25410", "code_commune_insee": "25527", "libell_d_acheminement": "ST VIT", "ligne_5": "ANTORPE", "nom_de_la_commune": "ST VIT", "coordonnees_gps": [47.1860285519, 5.82335931135]}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e287c004dee7886e14f7c2e2da7f5739cf98f00", "fields": {"nom_de_la_commune": "SANTOCHE", "libell_d_acheminement": "SANTOCHE", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25531"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "785a15703b0b3e64291e05ab715235c11163adad", "fields": {"nom_de_la_commune": "SAONE", "libell_d_acheminement": "SAONE", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25532"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6553c92e9ec27fed165bd64cd0aae29a11b69254", "fields": {"nom_de_la_commune": "SARRAGEOIS", "libell_d_acheminement": "SARRAGEOIS", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25534"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a58e2957d1908a0525ecd940afd3f7a286b382", "fields": {"code_postal": "25290", "code_commune_insee": "25537", "libell_d_acheminement": "SCEY MAISIERES", "ligne_5": "MAISIERES NOTRE DAME", "nom_de_la_commune": "SCEY MAISIERES", "coordonnees_gps": [47.1021279633, 6.08388420751]}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60309209a2b673a79005aa3ac562b3b8899437f9", "fields": {"nom_de_la_commune": "SEMONDANS", "libell_d_acheminement": "SEMONDANS", "code_postal": "25750", "coordonnees_gps": [47.5357024428, 6.66891038206], "code_commune_insee": "25540"}, "geometry": {"type": "Point", "coordinates": [6.66891038206, 47.5357024428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc45d6897532101be1dcfe7c74fee787d0b97458", "fields": {"nom_de_la_commune": "SERVIN", "libell_d_acheminement": "SERVIN", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25544"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d068fd67710c96a1701177a31115903f572dc4c2", "fields": {"nom_de_la_commune": "SOURANS", "libell_d_acheminement": "SOURANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25552"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ec51a662880bc9d190061eb9aed57bbd136d18", "fields": {"nom_de_la_commune": "TAILLECOURT", "libell_d_acheminement": "TAILLECOURT", "code_postal": "25400", "coordonnees_gps": [47.488209741, 6.84586139131], "code_commune_insee": "25555"}, "geometry": {"type": "Point", "coordinates": [6.84586139131, 47.488209741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a987f63506fcf6f30718af9832927285978a990", "fields": {"nom_de_la_commune": "TALLANS", "libell_d_acheminement": "TALLANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25556"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "838b63834c34f5843a7582685f852fd79d91f23a", "fields": {"nom_de_la_commune": "THISE", "libell_d_acheminement": "THISE", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25560"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7e83d42789c47e3d727ea114368a764c6d6b85", "fields": {"nom_de_la_commune": "TOUILLON ET LOUTELET", "libell_d_acheminement": "TOUILLON ET LOUTELET", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25565"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90a69b2db3312227ed138f1bffb33046ce492d2", "fields": {"nom_de_la_commune": "TREPOT", "libell_d_acheminement": "TREPOT", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25569"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f99fc08553f7607c0f6c6b92354ac3b6e201a60", "fields": {"nom_de_la_commune": "URTIERE", "libell_d_acheminement": "URTIERE", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25573"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bb3bd3a8229c4ef007b6c3902d96fe67017b33f", "fields": {"code_postal": "25220", "code_commune_insee": "25575", "libell_d_acheminement": "VAIRE ARCIER", "ligne_5": "ARCIER", "nom_de_la_commune": "VAIRE ARCIER", "coordonnees_gps": [47.2829032238, 6.12157333697]}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7e2a4645ef4ba686bf80de8dc9dc0435b81505a", "fields": {"nom_de_la_commune": "VALOREILLE", "libell_d_acheminement": "VALOREILLE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25584"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39bf90ca8fdb8a73705a119612fbe389784b2e1b", "fields": {"nom_de_la_commune": "VERGRANNE", "libell_d_acheminement": "VERGRANNE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25602"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f2687b005b9b621c7a704ec546e2e2d8d8b2c0b", "fields": {"nom_de_la_commune": "LE VERNOY", "libell_d_acheminement": "LE VERNOY", "code_postal": "25750", "coordonnees_gps": [47.5357024428, 6.66891038206], "code_commune_insee": "25608"}, "geometry": {"type": "Point", "coordinates": [6.66891038206, 47.5357024428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33068d59466653a373880db32bffff1acdc1c872", "fields": {"nom_de_la_commune": "VOILLANS", "libell_d_acheminement": "VOILLANS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25629"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6fbac1d03ad2a8bb589d9e18a068867e2b2a48", "fields": {"nom_de_la_commune": "VUILLECIN", "libell_d_acheminement": "VUILLECIN", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25634"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae1b0d92e6c520dcae58ce8422ac6d7dc2a109b", "fields": {"nom_de_la_commune": "VYT LES BELVOIR", "libell_d_acheminement": "VYT LES BELVOIR", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25635"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3bf1a4e2fb71d2b3a682cdc8fdc886c3a9ae6de", "fields": {"code_postal": "26150", "code_commune_insee": "26001", "libell_d_acheminement": "SOLAURE EN DIOIS", "ligne_5": "AIX EN DIOIS", "nom_de_la_commune": "SOLAURE EN DIOIS", "coordonnees_gps": [44.7765586622, 5.35143868083]}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be698b0c07b80da64654e9c23b83ac979d61af3", "fields": {"nom_de_la_commune": "ALEYRAC", "libell_d_acheminement": "ALEYRAC", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26003"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b35b7c6ed2cf278d7724b4232846f267b45445d3", "fields": {"nom_de_la_commune": "AOUSTE SUR SYE", "libell_d_acheminement": "AOUSTE SUR SYE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26011"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d0bfad4356610514d657bd3fde82ba93e59f296", "fields": {"nom_de_la_commune": "ARNAYON", "libell_d_acheminement": "ARNAYON", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26012"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d4488803eb51b73ecaba7f131b16283f74a46f3", "fields": {"nom_de_la_commune": "BATHERNAY", "libell_d_acheminement": "BATHERNAY", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26028"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8df273dbb52c1e062676bb6934f633cc543ab6e3", "fields": {"nom_de_la_commune": "LA BAUME DE TRANSIT", "libell_d_acheminement": "LA BAUME DE TRANSIT", "code_postal": "26790", "coordonnees_gps": [44.2888524342, 4.87321368948], "code_commune_insee": "26033"}, "geometry": {"type": "Point", "coordinates": [4.87321368948, 44.2888524342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20cecc782f04a4163ce36b39483e2bea3636b495", "fields": {"nom_de_la_commune": "LA BAUME D HOSTUN", "libell_d_acheminement": "LA BAUME D HOSTUN", "code_postal": "26730", "coordonnees_gps": [45.0482944782, 5.20163673449], "code_commune_insee": "26034"}, "geometry": {"type": "Point", "coordinates": [5.20163673449, 45.0482944782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2876c95feae93dd6d3296e61f816a16f683674fd", "fields": {"nom_de_la_commune": "LA BEGUDE DE MAZENC", "libell_d_acheminement": "LA BEGUDE DE MAZENC", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26045"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff3c96cc858bdad600e3b94a7e667523da06105", "fields": {"nom_de_la_commune": "BELLECOMBE TARENDOL", "libell_d_acheminement": "BELLECOMBE TARENDOL", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26046"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6e9798495e16af9eb5f5dfeac16cd28a772b836", "fields": {"nom_de_la_commune": "BELLEGARDE", "libell_d_acheminement": "BELLEGARDE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32041"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcaa70a139ce5c6d5e78e016eea927e0fef79759", "fields": {"nom_de_la_commune": "BELLOC ST CLAMENS", "libell_d_acheminement": "BELLOC ST CLAMENS", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32042"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1456d35714b66510225bdc942101da7facbbd57a", "fields": {"nom_de_la_commune": "BETCAVE AGUIN", "libell_d_acheminement": "BETCAVE AGUIN", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32048"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "695395e69b28049189cfc293cb84a4d9f260b63e", "fields": {"nom_de_la_commune": "BEZERIL", "libell_d_acheminement": "BEZERIL", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32051"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a53fc65b88c51fb6d501e6d074975c4bb0d2cd", "fields": {"nom_de_la_commune": "BIRAN", "libell_d_acheminement": "BIRAN", "code_postal": "32350", "coordonnees_gps": [43.6571309769, 0.430675404963], "code_commune_insee": "32054"}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eac2b9f2940b2c11cad6b7bd6d97738209eedf1", "fields": {"nom_de_la_commune": "BOURROUILLAN", "libell_d_acheminement": "BOURROUILLAN", "code_postal": "32370", "coordonnees_gps": [43.8064207893, 0.0369995528597], "code_commune_insee": "32062"}, "geometry": {"type": "Point", "coordinates": [0.0369995528597, 43.8064207893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b139d0bf16cb4dfc954f5e0071fb587c11c411", "fields": {"nom_de_la_commune": "BRETAGNE D ARMAGNAC", "libell_d_acheminement": "BRETAGNE D ARMAGNAC", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32064"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73013635756b5ef6dc6647df3bc1113f0b3d4c14", "fields": {"nom_de_la_commune": "CASTELNAU D AUZAN LABARRERE", "libell_d_acheminement": "CASTELNAU D AUZAN LABARRERE", "code_postal": "32440", "coordonnees_gps": [43.9438759009, 0.101535289851], "code_commune_insee": "32079"}, "geometry": {"type": "Point", "coordinates": [0.101535289851, 43.9438759009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b09c7477c83cdd68e0202ae84dd8eddbdd495973", "fields": {"nom_de_la_commune": "CASTERA LECTOUROIS", "libell_d_acheminement": "CASTERA LECTOUROIS", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32082"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7cd5246f9dcc6e06ead85c05ce634fffea69ba2", "fields": {"nom_de_la_commune": "CASTERA VERDUZAN", "libell_d_acheminement": "CASTERA VERDUZAN", "code_postal": "32410", "coordonnees_gps": [43.8145538611, 0.434864041407], "code_commune_insee": "32083"}, "geometry": {"type": "Point", "coordinates": [0.434864041407, 43.8145538611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0930c868998de6f588de7288db6090968d28fedf", "fields": {"code_postal": "32150", "code_commune_insee": "32096", "libell_d_acheminement": "CAZAUBON", "ligne_5": "BARBOTAN LES THERMES", "nom_de_la_commune": "CAZAUBON", "coordonnees_gps": [43.9190765536, -0.0421545944105]}, "geometry": {"type": "Point", "coordinates": [-0.0421545944105, 43.9190765536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3b223c31bb880777972d27362018e0551efb60", "fields": {"nom_de_la_commune": "CAZENEUVE", "libell_d_acheminement": "CAZENEUVE", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32100"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c518006593885607443d68ac4070a6d2adeccff4", "fields": {"nom_de_la_commune": "DUFFORT", "libell_d_acheminement": "DUFFORT", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32116"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "679f2a73797d0e3e5c913922fdd21168ed94dbef", "fields": {"nom_de_la_commune": "DURBAN", "libell_d_acheminement": "DURBAN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32118"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a5855f37f95144a00f8d294d6ae2fbea814456", "fields": {"nom_de_la_commune": "ENCAUSSE", "libell_d_acheminement": "ENCAUSSE", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32120"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6977055af3b26d8ad7050af7cde3fd5f1d76981c", "fields": {"nom_de_la_commune": "ESCORNEBOEUF", "libell_d_acheminement": "ESCORNEBOEUF", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32123"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c8674ba800961147bdb2dbcd25a93ee239a318", "fields": {"nom_de_la_commune": "ESTIPOUY", "libell_d_acheminement": "ESTIPOUY", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32128"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7919a1f581283d67028b54cd80e7e612630f4116", "fields": {"nom_de_la_commune": "ESTRAMIAC", "libell_d_acheminement": "ESTRAMIAC", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32129"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a585b11f8f26a3586f1804ca0e94c869749e9cf1", "fields": {"nom_de_la_commune": "FLAMARENS", "libell_d_acheminement": "FLAMARENS", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32131"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cab0a34c7d5cbc2457c2d0ce46e7a4c219edd109", "fields": {"nom_de_la_commune": "GARRAVET", "libell_d_acheminement": "GARRAVET", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32138"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c66c40f96d1b458ad0f939b09ade4f5dc3036239", "fields": {"nom_de_la_commune": "GAUDONVILLE", "libell_d_acheminement": "GAUDONVILLE", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32139"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "996aab2ef69b7b0968734e015e959079d766fc90", "fields": {"nom_de_la_commune": "GONDRIN", "libell_d_acheminement": "GONDRIN", "code_postal": "32330", "coordonnees_gps": [43.8809220251, 0.246811473327], "code_commune_insee": "32149"}, "geometry": {"type": "Point", "coordinates": [0.246811473327, 43.8809220251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9be64d0697d4e0c2809d3c9da3e72bdf4745f5", "fields": {"nom_de_la_commune": "GOUTZ", "libell_d_acheminement": "GOUTZ", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32150"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ada76c1463e8c57988dbc5bc7445e2411a0ca5a", "fields": {"nom_de_la_commune": "HAULIES", "libell_d_acheminement": "HAULIES", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32153"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1937e06f55451564fc1821567a9237ab08feb8e7", "fields": {"nom_de_la_commune": "HOMPS", "libell_d_acheminement": "HOMPS", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32154"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2d61bf66f5e7bad657141297740b111815fba29", "fields": {"nom_de_la_commune": "L ISLE BOUZON", "libell_d_acheminement": "L ISLE BOUZON", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32158"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00801bbbf105e91e4488396f02d7423d5e142272", "fields": {"nom_de_la_commune": "JUILLAC", "libell_d_acheminement": "JUILLAC", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32164"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7f2e50295bce3dd285ee6f0eb71774b2664c0e", "fields": {"nom_de_la_commune": "LAAS", "libell_d_acheminement": "LAAS", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32167"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f2d8d55a11527829fafe09b88c426e2ceb067e", "fields": {"nom_de_la_commune": "LAGARDE HACHAN", "libell_d_acheminement": "LAGARDE HACHAN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32177"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805c984a1b98397e25c72577cc6723986afddf78", "fields": {"code_postal": "02700", "code_commune_insee": "02738", "libell_d_acheminement": "TERGNIER", "ligne_5": "VOUEL", "nom_de_la_commune": "TERGNIER", "coordonnees_gps": [49.6402663387, 3.29629531322]}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "159b65c84428e946479abb842f3539bbde01b09d", "fields": {"nom_de_la_commune": "SERY LES MEZIERES", "libell_d_acheminement": "SERY LES MEZIERES", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02717"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f84ee6ea2ee7e015ff2f613122ae6b247fe1f5ea", "fields": {"nom_de_la_commune": "TROSLY LOIRE", "libell_d_acheminement": "TROSLY LOIRE", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02750"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc6a3d933a2a7c010a16819ae666c60592a6c34e", "fields": {"nom_de_la_commune": "SEBONCOURT", "libell_d_acheminement": "SEBONCOURT", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02703"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3de797acfb1d8c4f425211338591535a1c9fd006", "fields": {"nom_de_la_commune": "SOMMELANS", "libell_d_acheminement": "SOMMELANS", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02724"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b442caa03f6ee58bf2eac03cac1f5d292f6d6fa2", "fields": {"nom_de_la_commune": "SEQUEHART", "libell_d_acheminement": "SEQUEHART", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02708"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67549e70eaa8221e64d2f3a4f65f486e4b0e843", "fields": {"nom_de_la_commune": "SISSONNE", "libell_d_acheminement": "SISSONNE", "code_postal": "02150", "coordonnees_gps": [49.5724565859, 3.96353926072], "code_commune_insee": "02720"}, "geometry": {"type": "Point", "coordinates": [3.96353926072, 49.5724565859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "defcbf57c9efd33d765e29e1c53aa65734f688af", "fields": {"nom_de_la_commune": "SOUPIR", "libell_d_acheminement": "SOUPIR", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02730"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e56705618c054e1557c61a56f28ea2009f322b61", "fields": {"nom_de_la_commune": "SISSY", "libell_d_acheminement": "SISSY", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02721"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49d577c799a601bd8b3b461fc694d0be0dd3eb8", "fields": {"nom_de_la_commune": "SOIZE", "libell_d_acheminement": "SOIZE", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02723"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e99dd02f439fbffcdf2b881dd2f100670ac6a2", "fields": {"nom_de_la_commune": "VAUX EN VERMANDOIS", "libell_d_acheminement": "VAUX EN VERMANDOIS", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02772"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d951af74f6031b1b18a9a15ec4d12065f6b96b", "fields": {"nom_de_la_commune": "VEUILLY LA POTERIE", "libell_d_acheminement": "VEUILLY LA POTERIE", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02792"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cb62076d783fa4aace5c47de99cad08407a4e39", "fields": {"nom_de_la_commune": "LA VALLEE AU BLE", "libell_d_acheminement": "LA VALLEE AU BLE", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02759"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dac41bc0b54d285d0fb40965c0945a0a8ba577d0", "fields": {"nom_de_la_commune": "VIGNEUX HOCQUET", "libell_d_acheminement": "VIGNEUX HOCQUET", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02801"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13d8491d20c5d6ca19685ab0ed7c2521a836f0b", "fields": {"nom_de_la_commune": "VAUXAILLON", "libell_d_acheminement": "VAUXAILLON", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02768"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd1a3a229ba7baae9d406039a21db23b231a3de", "fields": {"nom_de_la_commune": "VAUDESSON", "libell_d_acheminement": "VAUDESSON", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02766"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f9ec3ef2335087507c7445a9700ae01e8f71c5f", "fields": {"nom_de_la_commune": "VEZAPONIN", "libell_d_acheminement": "VEZAPONIN", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02793"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831d6a87ce8d68989b9b4889242854ccb8826bb4", "fields": {"nom_de_la_commune": "VILLERET", "libell_d_acheminement": "VILLERET", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02808"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7403c9e167612f0d394b1d31e2b5b5419dd2c01", "fields": {"nom_de_la_commune": "VEZILLY", "libell_d_acheminement": "VEZILLY", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02794"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a2353d8f540e36006e27f60351bf27519986b49", "fields": {"nom_de_la_commune": "TUPIGNY", "libell_d_acheminement": "TUPIGNY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02753"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6e1122883bf731052aef049ce8d212f98a15ced", "fields": {"nom_de_la_commune": "CHATEAU SUR ALLIER", "libell_d_acheminement": "CHATEAU SUR ALLIER", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03064"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e4f74d8ed61f2ccca96b798047fca639e0f1bf", "fields": {"nom_de_la_commune": "BESSAY SUR ALLIER", "libell_d_acheminement": "BESSAY SUR ALLIER", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03025"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2a4625baaacd3175a96dae547f0ca1c26b6ff06", "fields": {"nom_de_la_commune": "BROUT VERNET", "libell_d_acheminement": "BROUT VERNET", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03043"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71869279eb963e4faadc3285379e0aa31b93a25c", "fields": {"nom_de_la_commune": "LA CHABANNE", "libell_d_acheminement": "LA CHABANNE", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03050"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01818a89a71a923d23ba3528223020e166df1064", "fields": {"nom_de_la_commune": "CERILLY", "libell_d_acheminement": "CERILLY", "code_postal": "03350", "coordonnees_gps": [46.5880559435, 2.80538087836], "code_commune_insee": "03048"}, "geometry": {"type": "Point", "coordinates": [2.80538087836, 46.5880559435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec473ac0653708ba4deae0c183b703fae03e520", "fields": {"nom_de_la_commune": "BEZENET", "libell_d_acheminement": "BEZENET", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03027"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "256ff22e1e381f07e27944c363d1773592cbe756", "fields": {"nom_de_la_commune": "CESSET", "libell_d_acheminement": "CESSET", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03049"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "022159fa8b220f4bb61114f18d234d1d40fbe105", "fields": {"nom_de_la_commune": "BUSSET", "libell_d_acheminement": "BUSSET", "code_postal": "03270", "coordonnees_gps": [46.0549562922, 3.49595690849], "code_commune_insee": "03045"}, "geometry": {"type": "Point", "coordinates": [3.49595690849, 46.0549562922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85586e22f6012ed1c6a76089d80dcff75b7e8b5", "fields": {"nom_de_la_commune": "BEGUES", "libell_d_acheminement": "BEGUES", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03021"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ee2a431cd097ecf83d828c17c023467d719a72", "fields": {"nom_de_la_commune": "BILLY", "libell_d_acheminement": "BILLY", "code_postal": "03260", "coordonnees_gps": [46.2217159232, 3.4471669721], "code_commune_insee": "03029"}, "geometry": {"type": "Point", "coordinates": [3.4471669721, 46.2217159232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16d3290d9f594e9091d88d19b866e0f6abdafd1d", "fields": {"nom_de_la_commune": "VILLIERS ST DENIS", "libell_d_acheminement": "VILLIERS ST DENIS", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02818"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361f89f309578e75c893b1cb71b9c844dc6ff793", "fields": {"nom_de_la_commune": "BARRAIS BUSSOLLES", "libell_d_acheminement": "BARRAIS BUSSOLLES", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03017"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72f25d3912bfd59cb072ac34171e081383b4b1d", "fields": {"nom_de_la_commune": "AINAY LE CHATEAU", "libell_d_acheminement": "AINAY LE CHATEAU", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03003"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "813e8a548091411ee570194edd2eed5bb62e9ae0", "fields": {"nom_de_la_commune": "VILLERS HELON", "libell_d_acheminement": "VILLERS HELON", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02812"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "755a218163622266866b8e3bbcc3f59c92c705a8", "fields": {"nom_de_la_commune": "ANDELAROCHE", "libell_d_acheminement": "ANDELAROCHE", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03004"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "313f7efc0defb0d3684a13fca52159205d53aa15", "fields": {"nom_de_la_commune": "ARFEUILLES", "libell_d_acheminement": "ARFEUILLES", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03006"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fe4a9134af00ff538c86cd01d43e560e7a26576", "fields": {"nom_de_la_commune": "WIEGE FATY", "libell_d_acheminement": "WIEGE FATY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02832"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b4ace1a039e33130fb4f2351dbdd0cdc3b9520", "fields": {"nom_de_la_commune": "VOULPAIX", "libell_d_acheminement": "VOULPAIX", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02826"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2b4e1deb468aa913b61d075881d356cb95249eb", "fields": {"nom_de_la_commune": "BEAULON", "libell_d_acheminement": "BEAULON", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03019"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14287736ee4b1d8b080c1a44e6eb29e1e543576b", "fields": {"nom_de_la_commune": "BAYET", "libell_d_acheminement": "BAYET", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03018"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "214af4cd96bdff7e0996ddd486f0ab93bbe67a8c", "fields": {"nom_de_la_commune": "ST MARCEL EN MARCILLAT", "libell_d_acheminement": "ST MARCEL EN MARCILLAT", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03244"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63d9471b3bc93acd5c5205fc1c0811ad659e6c8c", "fields": {"nom_de_la_commune": "ST PRIEST D ANDELOT", "libell_d_acheminement": "ST PRIEST D ANDELOT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03255"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c01e0c2d1a2495cf1878674285b8c2fad91a43", "fields": {"nom_de_la_commune": "ST GERAND LE PUY", "libell_d_acheminement": "ST GERAND LE PUY", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03235"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64edf54ae22bd0300ae4df97e9f564a278c33fd8", "fields": {"nom_de_la_commune": "ST ANGEL", "libell_d_acheminement": "ST ANGEL", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03217"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914278f645f9be9b89dbda72626107b1aacad282", "fields": {"nom_de_la_commune": "SAZERET", "libell_d_acheminement": "SAZERET", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03270"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6561fd9e39c85d8d60f288038288371f2c4f4b", "fields": {"nom_de_la_commune": "ST PRIX", "libell_d_acheminement": "ST PRIX", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03257"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ee25cc87d26944705576fe686084cd95368b06c", "fields": {"nom_de_la_commune": "DOMPIERRE SUR BESBRE", "libell_d_acheminement": "DOMPIERRE SUR BESBRE", "code_postal": "03290", "coordonnees_gps": [46.5135121651, 3.68226349341], "code_commune_insee": "03102"}, "geometry": {"type": "Point", "coordinates": [3.68226349341, 46.5135121651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b092bb7806f58f8ce4455af9db8ef2c325b545e5", "fields": {"nom_de_la_commune": "GARNAT SUR ENGIEVRE", "libell_d_acheminement": "GARNAT SUR ENGIEVRE", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03120"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ada8289d3c4ea1a02f45672a5e5a3245ac2a86cf", "fields": {"nom_de_la_commune": "DURDAT LAREQUILLE", "libell_d_acheminement": "DURDAT LAREQUILLE", "code_postal": "03310", "coordonnees_gps": [46.276794637, 2.66130166835], "code_commune_insee": "03106"}, "geometry": {"type": "Point", "coordinates": [2.66130166835, 46.276794637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97c2b1d79c768c357a2bec340ccb195f6100ec7d", "fields": {"nom_de_la_commune": "ISLE ET BARDAIS", "libell_d_acheminement": "ISLE ET BARDAIS", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03130"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b0fae8772ad893d26b9246ef89e95aa1e67895", "fields": {"nom_de_la_commune": "CHATEL MONTAGNE", "libell_d_acheminement": "CHATEL MONTAGNE", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03066"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2d2cb16098b49f47b3856449321c19d7c0af6c", "fields": {"nom_de_la_commune": "DEUX CHAISES", "libell_d_acheminement": "DEUX CHAISES", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03099"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45198d8a85f3aae1a3c953ad91cdf7a8eec6c32b", "fields": {"nom_de_la_commune": "COGNAT LYONNE", "libell_d_acheminement": "COGNAT LYONNE", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03080"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdd2e2dd71cda24d5191ff429e970d1c82f6ba8b", "fields": {"nom_de_la_commune": "COLOMBIER", "libell_d_acheminement": "COLOMBIER", "code_postal": "03600", "coordonnees_gps": [46.2666871749, 2.79054682985], "code_commune_insee": "03081"}, "geometry": {"type": "Point", "coordinates": [2.79054682985, 46.2666871749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5ce5e7b8ee988641f6cdeeacc04ac5ff4d6a972", "fields": {"nom_de_la_commune": "LE DONJON", "libell_d_acheminement": "LE DONJON", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03103"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb2c01c1513b61713e3a4f1448830a8bf1a7282", "fields": {"nom_de_la_commune": "GANNAT", "libell_d_acheminement": "GANNAT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03118"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb6f1919caa097a4f350c4c51a1533524c8b078b", "fields": {"nom_de_la_commune": "JALIGNY SUR BESBRE", "libell_d_acheminement": "JALIGNY SUR BESBRE", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03132"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072fb6c7624844c3f4a5c92ca06efda17d323862", "fields": {"nom_de_la_commune": "LAPALISSE", "libell_d_acheminement": "LAPALISSE", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03138"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e078c52a332ddf9409b4b7dfe151d9c5eb09b76", "fields": {"nom_de_la_commune": "ISSERPENT", "libell_d_acheminement": "ISSERPENT", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03131"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3722e010018a03dbd31b6329e6826b22fc46386", "fields": {"nom_de_la_commune": "LAVOINE", "libell_d_acheminement": "LAVOINE", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03141"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c34ce3708565d2f0509a4b4f30ad36afe6723a", "fields": {"nom_de_la_commune": "MARIGNY", "libell_d_acheminement": "MARIGNY", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03162"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8de2f6e9b16c162116f9e51b4fed773ec08b972", "fields": {"nom_de_la_commune": "LIMOISE", "libell_d_acheminement": "LIMOISE", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03146"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af1c6892760f999716b5067148947d166544b4ab", "fields": {"nom_de_la_commune": "LAMAIDS", "libell_d_acheminement": "LAMAIDS", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03136"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13994063fc28ff5ef959fcf962951fb8572b2eef", "fields": {"nom_de_la_commune": "JENZAT", "libell_d_acheminement": "JENZAT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03133"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89e2e80b397c2295ddeb3c7bc9b0b0dbb61da46e", "fields": {"nom_de_la_commune": "LODDES", "libell_d_acheminement": "LODDES", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03147"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15f9081aee562c4ed5de77da5787a7a05201d1c3", "fields": {"nom_de_la_commune": "MAGNET", "libell_d_acheminement": "MAGNET", "code_postal": "03260", "coordonnees_gps": [46.2217159232, 3.4471669721], "code_commune_insee": "03157"}, "geometry": {"type": "Point", "coordinates": [3.4471669721, 46.2217159232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82602cfbd4e8a900b6b16e281b9ab0349c690fc8", "fields": {"code_postal": "03430", "code_commune_insee": "03315", "libell_d_acheminement": "VILLEFRANCHE D ALLIER", "ligne_5": "NEUVILLE", "nom_de_la_commune": "VILLEFRANCHE D ALLIER", "coordonnees_gps": [46.4484596667, 2.84631497595]}, "geometry": {"type": "Point", "coordinates": [2.84631497595, 46.4484596667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b070ad7ddc35665db1f8f0adea8887fafd5eb176", "fields": {"nom_de_la_commune": "LE VEURDRE", "libell_d_acheminement": "LE VEURDRE", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03309"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9b6bd4c51dd1b7cea9c51933f9f4690fc0a32d", "fields": {"nom_de_la_commune": "SOUVIGNY", "libell_d_acheminement": "SOUVIGNY", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03275"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a955be51acb7ee4059646b6fa11c1b993f8de35", "fields": {"nom_de_la_commune": "BEAUJEU", "libell_d_acheminement": "BEAUJEU", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04024"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0635629cad2c5257fd44d2d08341d2603c05430", "fields": {"nom_de_la_commune": "ANGLES", "libell_d_acheminement": "ANGLES", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04007"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b89f468ee01b098344c13c20a3d8019da25b2c4d", "fields": {"nom_de_la_commune": "MONTESQUIEU LAURAGAIS", "libell_d_acheminement": "MONTESQUIEU LAURAGAIS", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31374"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc0da7a071749b01f84cc20420f1cf9181856640", "fields": {"nom_de_la_commune": "MONTGAILLARD DE SALIES", "libell_d_acheminement": "MONTGAILLARD DE SALIES", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31376"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "626b8dc4f8f60929261df230d8a4cd8e0c871c97", "fields": {"nom_de_la_commune": "MONTGISCARD", "libell_d_acheminement": "MONTGISCARD", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31381"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e5ca170eebe1f0dfef4b6a1b54c3b516299420", "fields": {"nom_de_la_commune": "MONTGRAS", "libell_d_acheminement": "MONTGRAS", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31382"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38449b961eb65d01da3d988939aa58d4b6216ea2", "fields": {"nom_de_la_commune": "MONTMAURIN", "libell_d_acheminement": "MONTMAURIN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31385"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aaaab9694f990c8cf35ab0041a799583b01abd1", "fields": {"nom_de_la_commune": "MONTPITOL", "libell_d_acheminement": "MONTPITOL", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31388"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3101b378ca0badefef5ab77c6c8b74a1eb258875", "fields": {"nom_de_la_commune": "MOURVILLES BASSES", "libell_d_acheminement": "MOURVILLES BASSES", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31392"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a5269f458a7229cca80c6c08e5b185acada7cc", "fields": {"nom_de_la_commune": "PAYSSOUS", "libell_d_acheminement": "PAYSSOUS", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31408"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a789646cada03386a83bd20ac5f4a9461578ea", "fields": {"nom_de_la_commune": "PEGUILHAN", "libell_d_acheminement": "PEGUILHAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31412"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abf42422bbdd55135987e361a114e3167f4b9701", "fields": {"nom_de_la_commune": "PIBRAC", "libell_d_acheminement": "PIBRAC", "code_postal": "31820", "coordonnees_gps": [43.6275845417, 1.26125738954], "code_commune_insee": "31417"}, "geometry": {"type": "Point", "coordinates": [1.26125738954, 43.6275845417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63104bf64088d2c67ef7be31af1d7cb468d001ea", "fields": {"nom_de_la_commune": "PLAISANCE DU TOUCH", "libell_d_acheminement": "PLAISANCE DU TOUCH", "code_postal": "31830", "coordonnees_gps": [43.5572059678, 1.28546523259], "code_commune_insee": "31424"}, "geometry": {"type": "Point", "coordinates": [1.28546523259, 43.5572059678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7928e9ac2e19503a379a063455a7d1ae74702f3", "fields": {"nom_de_la_commune": "POLASTRON", "libell_d_acheminement": "POLASTRON", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31428"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fde97c6a2e962b87aa05bc778e85eb3624f9805", "fields": {"nom_de_la_commune": "PORTET SUR GARONNE", "libell_d_acheminement": "PORTET SUR GARONNE", "code_postal": "31120", "coordonnees_gps": [43.5086807596, 1.39534123704], "code_commune_insee": "31433"}, "geometry": {"type": "Point", "coordinates": [1.39534123704, 43.5086807596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a0e3d980dc340d19bd737553ceb0cbee1b44c98", "fields": {"nom_de_la_commune": "POUCHARRAMET", "libell_d_acheminement": "POUCHARRAMET", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31435"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83dd649f681c87fcdf8a05fc30d9718fa9497c7f", "fields": {"nom_de_la_commune": "QUINT FONSEGRIVES", "libell_d_acheminement": "QUINT FONSEGRIVES", "code_postal": "31130", "coordonnees_gps": [43.6044083046, 1.52857222339], "code_commune_insee": "31445"}, "geometry": {"type": "Point", "coordinates": [1.52857222339, 43.6044083046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2d3fc542b3d9f878165ad27ad1b422c6eeaba0", "fields": {"nom_de_la_commune": "REGADES", "libell_d_acheminement": "REGADES", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31449"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80f8d83984424a1fb77f910f7d90d65ad7ba53c8", "fields": {"code_postal": "31250", "code_commune_insee": "31451", "libell_d_acheminement": "REVEL", "ligne_5": "ST FERREOL LE LAC", "nom_de_la_commune": "REVEL", "coordonnees_gps": [43.4555954942, 1.99785019175]}, "geometry": {"type": "Point", "coordinates": [1.99785019175, 43.4555954942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0273e5ef6fd777bf62e6a8670cab97abfe4a6895", "fields": {"nom_de_la_commune": "RIEUX VOLVESTRE", "libell_d_acheminement": "RIEUX VOLVESTRE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31455"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8488d3a360f32aa99fec63bf1339bb17eec180", "fields": {"nom_de_la_commune": "ROQUEFORT SUR GARONNE", "libell_d_acheminement": "ROQUEFORT SUR GARONNE", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31457"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee7afcf384dce11a22a2f684543edaba9097d76", "fields": {"nom_de_la_commune": "SACCOURVIELLE", "libell_d_acheminement": "SACCOURVIELLE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31465"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f55da47d3e1bdb4a03e1d72b83964238e356f31f", "fields": {"nom_de_la_commune": "SAIGUEDE", "libell_d_acheminement": "SAIGUEDE", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31466"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd67b50992d23c45075f836db78b00632836bcf", "fields": {"nom_de_la_commune": "ST FELIX LAURAGAIS", "libell_d_acheminement": "ST FELIX LAURAGAIS", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31478"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89cb3b04cee05425527f6aa3ec1aaa40f4fbbf96", "fields": {"nom_de_la_commune": "ST GERMIER", "libell_d_acheminement": "ST GERMIER", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31485"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0c04ffae2991ab26c40fde7eaa7131c25d03a53", "fields": {"nom_de_la_commune": "STE LIVRADE", "libell_d_acheminement": "STE LIVRADE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31496"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30bffc2ff2e37ef7b541420144698760e4837baf", "fields": {"nom_de_la_commune": "ST MAMET", "libell_d_acheminement": "ST MAMET", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31500"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b464d39a134e0a7e02530254418e81050132b4ab", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31505"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd5ff6eda9ce842752ad4a7e3ad67561e9feb57", "fields": {"nom_de_la_commune": "ST PAUL SUR SAVE", "libell_d_acheminement": "ST PAUL SUR SAVE", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31507"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f109da6fdbebc209a8c8ba3f50125b34fc5bafb1", "fields": {"nom_de_la_commune": "ST PE D ARDET", "libell_d_acheminement": "ST PE D ARDET", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31509"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c7d803cc38353b5450ca3aa5093b75f41d6eaf8", "fields": {"nom_de_la_commune": "ST PLANCARD", "libell_d_acheminement": "ST PLANCARD", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31513"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1011dffc420bec75b513a78226ae71181f418e", "fields": {"nom_de_la_commune": "ST SULPICE SUR LEZE", "libell_d_acheminement": "ST SULPICE SUR LEZE", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31517"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ce2f30f09e58cb07d61cb56a24001cb81df5543", "fields": {"nom_de_la_commune": "SALLES ET PRATVIEL", "libell_d_acheminement": "SALLES ET PRATVIEL", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31524"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1e2ed3ab3b94e104a66ff05929b28657a28e5ea", "fields": {"nom_de_la_commune": "SALLES SUR GARONNE", "libell_d_acheminement": "SALLES SUR GARONNE", "code_postal": "31390", "coordonnees_gps": [43.3057393147, 1.21392004799], "code_commune_insee": "31525"}, "geometry": {"type": "Point", "coordinates": [1.21392004799, 43.3057393147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236954c3fab823e058edfee86cbc6f32e04203a5", "fields": {"nom_de_la_commune": "LA SALVETAT ST GILLES", "libell_d_acheminement": "LA SALVETAT ST GILLES", "code_postal": "31880", "coordonnees_gps": [43.5755374805, 1.26672821688], "code_commune_insee": "31526"}, "geometry": {"type": "Point", "coordinates": [1.26672821688, 43.5755374805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2e0e95f2ef2e764277a973d0750d160bcd56f91", "fields": {"nom_de_la_commune": "SANA", "libell_d_acheminement": "SANA", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31530"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d232abf4c6b04b19f8e118280deef51783e44b33", "fields": {"nom_de_la_commune": "SAUX ET POMAREDE", "libell_d_acheminement": "SAUX ET POMAREDE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31536"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73f91a8eb9fdc3f820dfa53e6b600f9440e6e1d4", "fields": {"nom_de_la_commune": "SEDEILHAC", "libell_d_acheminement": "SEDEILHAC", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31539"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fb59872c4c626c6ef48323f923dfb2fa8ed3173", "fields": {"nom_de_la_commune": "SEGREVILLE", "libell_d_acheminement": "SEGREVILLE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31540"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8fa8bd5bfe37b024df709805205d8ff4838c27e", "fields": {"nom_de_la_commune": "SENGOUAGNET", "libell_d_acheminement": "SENGOUAGNET", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31544"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad2c0fb95b90d223d3c1f6080f07670c7318f4b4", "fields": {"nom_de_la_commune": "TOULOUSE", "libell_d_acheminement": "TOULOUSE", "code_postal": "31200", "coordonnees_gps": [43.5959709582, 1.43229378001], "code_commune_insee": "31555"}, "geometry": {"type": "Point", "coordinates": [1.43229378001, 43.5959709582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba37e3b163273fb06047f9f2c869833e342d35e4", "fields": {"nom_de_la_commune": "TOULOUSE", "libell_d_acheminement": "TOULOUSE", "code_postal": "31400", "coordonnees_gps": [43.5959709582, 1.43229378001], "code_commune_insee": "31555"}, "geometry": {"type": "Point", "coordinates": [1.43229378001, 43.5959709582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b600183fb970213ae79b1583f0eed72a73f7c5f7", "fields": {"nom_de_la_commune": "TOURNEFEUILLE", "libell_d_acheminement": "TOURNEFEUILLE", "code_postal": "31170", "coordonnees_gps": [43.5783807869, 1.33491274731], "code_commune_insee": "31557"}, "geometry": {"type": "Point", "coordinates": [1.33491274731, 43.5783807869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345e2df3fe67442cf1c8dd8cb6cc8731dc1debe4", "fields": {"nom_de_la_commune": "TREBONS DE LUCHON", "libell_d_acheminement": "TREBONS DE LUCHON", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31559"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f659c059e021993db4c6aeeb233b2bc8c397f88", "fields": {"nom_de_la_commune": "TREBONS SUR LA GRASSE", "libell_d_acheminement": "TREBONS SUR LA GRASSE", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31560"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2ea189398845f1e595a899985a1a9f586a9be0", "fields": {"nom_de_la_commune": "VALCABRERE", "libell_d_acheminement": "VALCABRERE", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31564"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386927d8339bf6170bcd7bc18b2b8884f8ff8896", "fields": {"nom_de_la_commune": "VALENTINE", "libell_d_acheminement": "VALENTINE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31565"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56444b395bc0b4a76d32846a234d27e89ad2267d", "fields": {"nom_de_la_commune": "VERFEIL", "libell_d_acheminement": "VERFEIL", "code_postal": "31590", "coordonnees_gps": [43.6511913852, 1.64656678771], "code_commune_insee": "31573"}, "geometry": {"type": "Point", "coordinates": [1.64656678771, 43.6511913852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb87e1fd58cfe89079272afab76571d2c5a10900", "fields": {"nom_de_la_commune": "VIEILLE TOULOUSE", "libell_d_acheminement": "VIEILLE TOULOUSE", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31575"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76162b19f3cbf37a5a9c0e6cbd626e5c0beaff86", "fields": {"nom_de_la_commune": "VILLATE", "libell_d_acheminement": "VILLATE", "code_postal": "31860", "coordonnees_gps": [43.4654456121, 1.39604999042], "code_commune_insee": "31580"}, "geometry": {"type": "Point", "coordinates": [1.39604999042, 43.4654456121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1906ef54df0dea170b09e216d22c45c7662ea1f", "fields": {"nom_de_la_commune": "VILLEFRANCHE DE LAURAGAIS", "libell_d_acheminement": "VILLEFRANCHE DE LAURAGAIS", "code_postal": "31290", "coordonnees_gps": [43.401535599, 1.7281179107], "code_commune_insee": "31582"}, "geometry": {"type": "Point", "coordinates": [1.7281179107, 43.401535599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0771fab6bdf96622ef2cbe92fce4142af7f33f4", "fields": {"nom_de_la_commune": "VILLEMUR SUR TARN", "libell_d_acheminement": "VILLEMUR SUR TARN", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31584"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07de1b06e1e67ee5588bddd2ddc1c5e2bd97b11a", "fields": {"nom_de_la_commune": "VILLENEUVE DE RIVIERE", "libell_d_acheminement": "VILLENEUVE DE RIVIERE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31585"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce521414b988504210369b90e244bc659a5d2de", "fields": {"nom_de_la_commune": "VILLENEUVE LECUSSAN", "libell_d_acheminement": "VILLENEUVE LECUSSAN", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31586"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2071f0235685ed83bda9219ec48d79cf74a2010", "fields": {"nom_de_la_commune": "BINOS", "libell_d_acheminement": "BINOS", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31590"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89ff8808a96034534e27ead7b46555aec5a5e517", "fields": {"nom_de_la_commune": "AURENSAN", "libell_d_acheminement": "AURENSAN", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32017"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a04bf11f240bbc0c1685b0dc9e1912df33d6ba2", "fields": {"nom_de_la_commune": "AYZIEU", "libell_d_acheminement": "AYZIEU", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32025"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7717cca7732db27b64b337d67f3fb9001e716c0e", "fields": {"nom_de_la_commune": "BERAUT", "libell_d_acheminement": "BERAUT", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32044"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c163d9b05b4c88f19862127d8cacbb85d447ae5c", "fields": {"nom_de_la_commune": "BETOUS", "libell_d_acheminement": "BETOUS", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32049"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3eea974ffee7e2a60faa5ce386277ff89c8a954", "fields": {"nom_de_la_commune": "BIVES", "libell_d_acheminement": "BIVES", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32055"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e7fd77683eaace0fc65deb7364b856ed894669", "fields": {"nom_de_la_commune": "BLAZIERT", "libell_d_acheminement": "BLAZIERT", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32057"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d66e891477120dacd619a47b5adac82bd07abc", "fields": {"nom_de_la_commune": "CABAS LOUMASSES", "libell_d_acheminement": "CABAS LOUMASSES", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32067"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e50399ffc9724be9818286be7ff86787a339ea63", "fields": {"nom_de_la_commune": "CALLIAN", "libell_d_acheminement": "CALLIAN", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32072"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b4ad22f23041577dea7078db995e88a650245d6", "fields": {"nom_de_la_commune": "CAMPAGNE D ARMAGNAC", "libell_d_acheminement": "CAMPAGNE D ARMAGNAC", "code_postal": "32800", "coordonnees_gps": [43.8573730546, 0.101689650475], "code_commune_insee": "32073"}, "geometry": {"type": "Point", "coordinates": [0.101689650475, 43.8573730546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ad825820cae639d9ad2707341a64aadaaa37e53", "fields": {"nom_de_la_commune": "CASTELNAU BARBARENS", "libell_d_acheminement": "CASTELNAU BARBARENS", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32076"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58ac4ad6a61701fb75db2f19292a07aa1b0ebc6", "fields": {"nom_de_la_commune": "CASTILLON MASSAS", "libell_d_acheminement": "CASTILLON MASSAS", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32089"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c36a598a9e267058ebc0d8f1c51cb58f17c2ba", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32093"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4e8f46e9086bccb78ded4c2763ffc451ffa9910", "fields": {"nom_de_la_commune": "CAZAUBON", "libell_d_acheminement": "CAZAUBON", "code_postal": "32150", "coordonnees_gps": [43.9190765536, -0.0421545944105], "code_commune_insee": "32096"}, "geometry": {"type": "Point", "coordinates": [-0.0421545944105, 43.9190765536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4775eff9f8ee607cbb7c58cfe08a8861cda578e0", "fields": {"nom_de_la_commune": "CHELAN", "libell_d_acheminement": "CHELAN", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32103"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5386d26f3c68c728eabbaa9a68528e926e5016f3", "fields": {"nom_de_la_commune": "COLOGNE", "libell_d_acheminement": "COLOGNE", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32106"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9ce7958759395cdde3b6e6013f6be0d3ba242d", "fields": {"nom_de_la_commune": "ESPAON", "libell_d_acheminement": "ESPAON", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32124"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "637f18f8add7f544375e6e24cd81c2db189a714c", "fields": {"nom_de_la_commune": "FREGOUVILLE", "libell_d_acheminement": "FREGOUVILLE", "code_postal": "32490", "coordonnees_gps": [43.5909785115, 0.981247393287], "code_commune_insee": "32134"}, "geometry": {"type": "Point", "coordinates": [0.981247393287, 43.5909785115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03b8582658fbed3b1bd3838e2c3d86246eaba982", "fields": {"nom_de_la_commune": "FUSTEROUAU", "libell_d_acheminement": "FUSTEROUAU", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32135"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f24add2a6b34cbbdd86e8b48c57d66c93265a74e", "fields": {"nom_de_la_commune": "GAZAX ET BACCARISSE", "libell_d_acheminement": "GAZAX ET BACCARISSE", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32144"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c7add67a85f405581bd57109fc4348c86d97620", "fields": {"nom_de_la_commune": "IDRAC RESPAILLES", "libell_d_acheminement": "IDRAC RESPAILLES", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32156"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "726e0be8732949e58edcaa0b731a231c3f94d8a8", "fields": {"nom_de_la_commune": "L ISLE ARNE", "libell_d_acheminement": "L ISLE ARNE", "code_postal": "32270", "coordonnees_gps": [43.6691038699, 0.762571232674], "code_commune_insee": "32157"}, "geometry": {"type": "Point", "coordinates": [0.762571232674, 43.6691038699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712a2f6d157512f0f5eb3afa1482a3c732b01e3e", "fields": {"nom_de_la_commune": "JUILLES", "libell_d_acheminement": "JUILLES", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32165"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4550422004b0aa4bea070201832e37d8688b781f", "fields": {"nom_de_la_commune": "LABARTHE", "libell_d_acheminement": "LABARTHE", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32169"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79118a7e77adf24a38ae89f0d93418fe5a9af80", "fields": {"nom_de_la_commune": "LABARTHETE", "libell_d_acheminement": "LABARTHETE", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32170"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "306ed240843d70de16e7cba722cbc9eb54f1e3c3", "fields": {"nom_de_la_commune": "LABASTIDE SAVES", "libell_d_acheminement": "LABASTIDE SAVES", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32171"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d9b19e693ec778a5e948f2a1f3c6abaed0711c0", "fields": {"nom_de_la_commune": "LAGRAULET DU GERS", "libell_d_acheminement": "LAGRAULET DU GERS", "code_postal": "32330", "coordonnees_gps": [43.8809220251, 0.246811473327], "code_commune_insee": "32180"}, "geometry": {"type": "Point", "coordinates": [0.246811473327, 43.8809220251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8d85c8f360b166f317d2c740c7e75798a355194", "fields": {"nom_de_la_commune": "LAMAGUERE", "libell_d_acheminement": "LAMAGUERE", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32186"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e221392dc87261d7b64467c3f79b5866a12412c6", "fields": {"nom_de_la_commune": "LAMAZERE", "libell_d_acheminement": "LAMAZERE", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32187"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11e60473eb300401527dcd97f2079bf17382549a", "fields": {"nom_de_la_commune": "LANNEPAX", "libell_d_acheminement": "LANNEPAX", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32190"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "135828348dddc3879143af5d9ced79e949ab7233", "fields": {"nom_de_la_commune": "LARROQUE SUR L OSSE", "libell_d_acheminement": "LARROQUE SUR L OSSE", "code_postal": "32100", "coordonnees_gps": [43.9542335507, 0.383298754083], "code_commune_insee": "32197"}, "geometry": {"type": "Point", "coordinates": [0.383298754083, 43.9542335507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8362b9bdf478af2cc058904c10dca198e18349d7", "fields": {"nom_de_la_commune": "LASSEUBE PROPRE", "libell_d_acheminement": "LASSEUBE PROPRE", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32201"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "074d28971ad7fcb1f90e3c8d96a66fd41f374dba", "fields": {"nom_de_la_commune": "LAURAET", "libell_d_acheminement": "LAURAET", "code_postal": "32330", "coordonnees_gps": [43.8809220251, 0.246811473327], "code_commune_insee": "32203"}, "geometry": {"type": "Point", "coordinates": [0.246811473327, 43.8809220251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fec9dc578fcbc11ae4b75a9bd34c45c60fb8ae7", "fields": {"nom_de_la_commune": "LAYMONT", "libell_d_acheminement": "LAYMONT", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32206"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "671490c088e7d7d85a8bd8c03993af443dadff49", "fields": {"nom_de_la_commune": "LOMBEZ", "libell_d_acheminement": "LOMBEZ", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32213"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab966af49daa30e2739911be4031893a14fdf5a2", "fields": {"nom_de_la_commune": "LOUBEDAT", "libell_d_acheminement": "LOUBEDAT", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32214"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "726e335bbe6fed74653d830aec1a7827d79dac79", "fields": {"nom_de_la_commune": "LUPPE VIOLLES", "libell_d_acheminement": "LUPPE VIOLLES", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32220"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f71ff2b3c3665fbc578297fff83453eb988d3b45", "fields": {"nom_de_la_commune": "MANCIET", "libell_d_acheminement": "MANCIET", "code_postal": "32370", "coordonnees_gps": [43.8064207893, 0.0369995528597], "code_commune_insee": "32227"}, "geometry": {"type": "Point", "coordinates": [0.0369995528597, 43.8064207893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a0694423d8c9f6bdc4d8544f763689747a29e6", "fields": {"nom_de_la_commune": "MARAVAT", "libell_d_acheminement": "MARAVAT", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32232"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df794f8a31da1412cd330b244d59b71c500b6d76", "fields": {"nom_de_la_commune": "MARCIAC", "libell_d_acheminement": "MARCIAC", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32233"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af7bb644fa1f5b4b003b6cc5bade7ac51109e090", "fields": {"nom_de_la_commune": "MAULEON D ARMAGNAC", "libell_d_acheminement": "MAULEON D ARMAGNAC", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32243"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69f27c96dd8c3f1ec3f18a8d3341aef15a6f4a9d", "fields": {"nom_de_la_commune": "MAULICHERES", "libell_d_acheminement": "MAULICHERES", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32244"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7813a8fb9a29d2e21f6bd6252430a5c5cecff59c", "fields": {"nom_de_la_commune": "MAURENS", "libell_d_acheminement": "MAURENS", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32247"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d473138081298bedae3848abbfb672ba420e4c61", "fields": {"nom_de_la_commune": "MEILHAN", "libell_d_acheminement": "MEILHAN", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32250"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eed00b2ee27241232497eec82e738d475580c59d", "fields": {"nom_de_la_commune": "MIELAN", "libell_d_acheminement": "MIELAN", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32252"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f33517075c062ea97d2077081ba9cdba1f73b48", "fields": {"nom_de_la_commune": "MIRADOUX", "libell_d_acheminement": "MIRADOUX", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32253"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d52c42db12c66ff069e3b050555c6ab3fd6be51d", "fields": {"nom_de_la_commune": "MIREPOIX", "libell_d_acheminement": "MIREPOIX", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32258"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2d8b7fa94425c28282bf63430eb49ba23a8195", "fields": {"nom_de_la_commune": "MONFERRAN PLAVES", "libell_d_acheminement": "MONFERRAN PLAVES", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32267"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b357f7c36c41af244e87ef8a5f7214e3aaa7714", "fields": {"nom_de_la_commune": "CHAUX NEUVE", "libell_d_acheminement": "CHAUX NEUVE", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25142"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb162b3f6a52d883fddf1f5f9383593ad86a0e4d", "fields": {"nom_de_la_commune": "CHEVIGNEY LES VERCEL", "libell_d_acheminement": "CHEVIGNEY LES VERCEL", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25151"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2314faf178292509774d69686e2966dfdabc131d", "fields": {"nom_de_la_commune": "CLERON", "libell_d_acheminement": "CLERON", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25155"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a58fa36338c5118ede5feea278cedf8f95536d0", "fields": {"nom_de_la_commune": "LES COMBES", "libell_d_acheminement": "LES COMBES", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25160"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a2b80e541c307672395cfaa7bf7ec475f012f51", "fields": {"nom_de_la_commune": "COURCELLES LES MONTBELIARD", "libell_d_acheminement": "COURCELLES LES MONTBELIARD", "code_postal": "25420", "coordonnees_gps": [47.4766226069, 6.76728800486], "code_commune_insee": "25170"}, "geometry": {"type": "Point", "coordinates": [6.76728800486, 47.4766226069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f66227844b44c5f8d57bca7f3292a9a85e6dd4cd", "fields": {"nom_de_la_commune": "CUBRIAL", "libell_d_acheminement": "CUBRIAL", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25181"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9594f1679f79db97676c5498772b08ef843932", "fields": {"nom_de_la_commune": "CUSANCE", "libell_d_acheminement": "CUSANCE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25183"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d02c7261bcbe102ca10772125ebe29c4ff0d6e81", "fields": {"nom_de_la_commune": "DAMPIERRE SUR LE DOUBS", "libell_d_acheminement": "DAMPIERRE SUR LE DOUBS", "code_postal": "25420", "coordonnees_gps": [47.4766226069, 6.76728800486], "code_commune_insee": "25191"}, "geometry": {"type": "Point", "coordinates": [6.76728800486, 47.4766226069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31fb6316d0cce657e0b25f71b0fee4cc4cbb46b3", "fields": {"nom_de_la_commune": "DAMPRICHARD", "libell_d_acheminement": "DAMPRICHARD", "code_postal": "25450", "coordonnees_gps": [47.2381821584, 6.87306416563], "code_commune_insee": "25193"}, "geometry": {"type": "Point", "coordinates": [6.87306416563, 47.2381821584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebcaf0c67531e946587c9b2f368f1a18894e3579", "fields": {"nom_de_la_commune": "DANNEMARIE SUR CRETE", "libell_d_acheminement": "DANNEMARIE SUR CRETE", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25195"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e568cdb11e6a5c868ec214142e85600c6cf5c3", "fields": {"nom_de_la_commune": "DOMMARTIN", "libell_d_acheminement": "DOMMARTIN", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25201"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c706f66fa8a09b945090af73ec3b2c04b2521fe9", "fields": {"code_postal": "25480", "code_commune_insee": "25212", "libell_d_acheminement": "ECOLE VALENTIN", "ligne_5": "VALENTIN", "nom_de_la_commune": "ECOLE VALENTIN", "coordonnees_gps": [47.2739749265, 5.97316360482]}, "geometry": {"type": "Point", "coordinates": [5.97316360482, 47.2739749265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f1bd6a15b05ed0059e48f74c71857d4d31ba00", "fields": {"nom_de_la_commune": "EPEUGNEY", "libell_d_acheminement": "EPEUGNEY", "code_postal": "25290", "coordonnees_gps": [47.1021279633, 6.08388420751], "code_commune_insee": "25220"}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c99b175f47f4af26bf16caf3df61ec2d24e6726", "fields": {"code_postal": "25330", "code_commune_insee": "25223", "libell_d_acheminement": "ETERNOZ", "ligne_5": "REFRANCHE", "nom_de_la_commune": "ETERNOZ", "coordonnees_gps": [47.0294541279, 6.08005639292]}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25498bd37c48cfba9fa974aa539dfc9927451a4e", "fields": {"nom_de_la_commune": "ETRAY", "libell_d_acheminement": "ETRAY", "code_postal": "25800", "coordonnees_gps": [47.1494559066, 6.34818353393], "code_commune_insee": "25227"}, "geometry": {"type": "Point", "coordinates": [6.34818353393, 47.1494559066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2963ac8e1d8b924b3a46d4cd7d917256ff90407f", "fields": {"nom_de_la_commune": "ETUPES", "libell_d_acheminement": "ETUPES", "code_postal": "25460", "coordonnees_gps": [47.5060179119, 6.87413361478], "code_commune_insee": "25228"}, "geometry": {"type": "Point", "coordinates": [6.87413361478, 47.5060179119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60f3dc6d2e5a405440da517e4fbc416d7b9e6d1", "fields": {"nom_de_la_commune": "EYSSON", "libell_d_acheminement": "EYSSON", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25231"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "421f1ce15dcee69cf24f1cab81024e2240e42d48", "fields": {"nom_de_la_commune": "FLEUREY", "libell_d_acheminement": "FLEUREY", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25244"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167045b4d1b38e84d5be4dccb0960e51badcf356", "fields": {"nom_de_la_commune": "FONTENOTTE", "libell_d_acheminement": "FONTENOTTE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25249"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c80be9371651f16139757ae6b7b949c831a3d60", "fields": {"nom_de_la_commune": "FOURBANNE", "libell_d_acheminement": "FOURBANNE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25251"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1f37bd24d0208c30a4374e8fbcfdfd9f60d0f2b", "fields": {"nom_de_la_commune": "FRANOIS", "libell_d_acheminement": "FRANOIS", "code_postal": "25770", "coordonnees_gps": [47.2322891241, 5.91617733766], "code_commune_insee": "25258"}, "geometry": {"type": "Point", "coordinates": [5.91617733766, 47.2322891241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3dd03e3e5a3f2b31cae097274188a2f3765581", "fields": {"nom_de_la_commune": "GENEY", "libell_d_acheminement": "GENEY", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25266"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2672bcca00c88e81b05ec060c21fd20bce63b1e", "fields": {"nom_de_la_commune": "GEVRESIN", "libell_d_acheminement": "GEVRESIN", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25270"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "857eeb0c78ac190e10e776efabab7399de30cd81", "fields": {"nom_de_la_commune": "GLAMONDANS", "libell_d_acheminement": "GLAMONDANS", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25273"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b39b9dcee4c734df2bfcf593dce258b10d80a98", "fields": {"code_postal": "25190", "code_commune_insee": "25275", "libell_d_acheminement": "GLERE", "ligne_5": "MONTURSIN", "nom_de_la_commune": "GLERE", "coordonnees_gps": [47.3299526188, 6.81205544169]}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "648252eb1c9fc4afacccf0cf71b9fd32d8a5f954", "fields": {"code_postal": "25190", "code_commune_insee": "25275", "libell_d_acheminement": "GLERE", "ligne_5": "VERNOIS LE FOL", "nom_de_la_commune": "GLERE", "coordonnees_gps": [47.3299526188, 6.81205544169]}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fcbb6fdb25cae3a3b8d9b30a51f7483fc644a76", "fields": {"nom_de_la_commune": "GONDENANS LES MOULINS", "libell_d_acheminement": "GONDENANS LES MOULINS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25277"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e15ef8c42d0682824bbf69cfb37ea74d9f3d17f6", "fields": {"nom_de_la_commune": "GRAND CHARMONT", "libell_d_acheminement": "GRAND CHARMONT", "code_postal": "25200", "coordonnees_gps": [47.5248285421, 6.80015635102], "code_commune_insee": "25284"}, "geometry": {"type": "Point", "coordinates": [6.80015635102, 47.5248285421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b72de8ffb8bebf131d4a54f7aa282e0c64a099e", "fields": {"nom_de_la_commune": "FOURNETS LUISANS", "libell_d_acheminement": "FOURNETS LUISANS", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25288"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7429224e384574d9cb890218649f38e23aa16242", "fields": {"nom_de_la_commune": "LES GRANGETTES", "libell_d_acheminement": "LES GRANGETTES", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25295"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3158eb2e05de133e3245952c72028e461e0940d", "fields": {"nom_de_la_commune": "GROSBOIS", "libell_d_acheminement": "GROSBOIS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25298"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3704137fc5a2ee78ed1c86fd86876764893f6c11", "fields": {"code_postal": "25110", "code_commune_insee": "25313", "libell_d_acheminement": "HYEVRE PAROISSE", "ligne_5": "BOIS LA VILLE", "nom_de_la_commune": "HYEVRE PAROISSE", "coordonnees_gps": [47.3533733684, 6.36786795727]}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de012bed582a46435c9a1cf780ab10f46af06ba", "fields": {"nom_de_la_commune": "L ISLE SUR LE DOUBS", "libell_d_acheminement": "L ISLE SUR LE DOUBS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25315"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36cb9b924db83581024ee88257cd484ab6c7237c", "fields": {"nom_de_la_commune": "JALLERANGE", "libell_d_acheminement": "JALLERANGE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25317"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5d6764b52cb2baba004c021f827e9bdda5892cb", "fields": {"nom_de_la_commune": "VILLERS LE LAC", "libell_d_acheminement": "VILLERS LE LAC", "code_postal": "25130", "coordonnees_gps": [47.0705828779, 6.68960233049], "code_commune_insee": "25321"}, "geometry": {"type": "Point", "coordinates": [6.68960233049, 47.0705828779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08da2de7f19791e67bf41e386ca5153f3fecd5e0", "fields": {"nom_de_la_commune": "LANDRESSE", "libell_d_acheminement": "LANDRESSE", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25325"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148c119189723efe955dee26e914ee60ebe8525d", "fields": {"nom_de_la_commune": "LARNOD", "libell_d_acheminement": "LARNOD", "code_postal": "25720", "coordonnees_gps": [47.1886369614, 5.98434041211], "code_commune_insee": "25328"}, "geometry": {"type": "Point", "coordinates": [5.98434041211, 47.1886369614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd66da79bf5d12b96bf82754b73f770f643c2156", "fields": {"nom_de_la_commune": "LIZINE", "libell_d_acheminement": "LIZINE", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25338"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb72b6a77a3d8f9a5f66ebcd186ae18c065ebc1", "fields": {"nom_de_la_commune": "LOMONT SUR CRETE", "libell_d_acheminement": "LOMONT SUR CRETE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25341"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48eaa25668dbd49f0b480475f5e0fb23c33b0048", "fields": {"nom_de_la_commune": "LONGECHAUX", "libell_d_acheminement": "LONGECHAUX", "code_postal": "25690", "coordonnees_gps": [47.1118189228, 6.43431918233], "code_commune_insee": "25342"}, "geometry": {"type": "Point", "coordinates": [6.43431918233, 47.1118189228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d909575132913bedff77042cdc9d2d52308ce23f", "fields": {"nom_de_la_commune": "LONGEVILLES MONT D OR", "libell_d_acheminement": "LONGEVILLES MONT D OR", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25348"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ec14bee7a895f0f2adb1d308f0efb6786adbd9a", "fields": {"nom_de_la_commune": "MALANS", "libell_d_acheminement": "MALANS", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25359"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec3a3067406c235e9d3954d49150be3fc1769f29", "fields": {"code_postal": "25410", "code_commune_insee": "25374", "libell_d_acheminement": "MERCEY LE GRAND", "ligne_5": "COTTIER", "nom_de_la_commune": "MERCEY LE GRAND", "coordonnees_gps": [47.1860285519, 5.82335931135]}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c0147140bf3ec5fe9ec43360d131efed292cebf", "fields": {"nom_de_la_commune": "MONCEY", "libell_d_acheminement": "MONCEY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25382"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce866c57a1e5dbae603fa272bc62fc26da68d96b", "fields": {"nom_de_la_commune": "MONTFAUCON", "libell_d_acheminement": "MONTFAUCON", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25395"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24dbd55fb6f058ef12432e0bedc9960b64a3a9b4", "fields": {"nom_de_la_commune": "MONTFERRAND LE CHATEAU", "libell_d_acheminement": "MONTFERRAND LE CHATEAU", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25397"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "364df1cdb81b3cbbb646b46b07973e8704195781", "fields": {"nom_de_la_commune": "MONTFLOVIN", "libell_d_acheminement": "MONTFLOVIN", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25398"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7253fdcc0f224d340dc2728c504ea053fc1e6c3c", "fields": {"nom_de_la_commune": "MONTFORT", "libell_d_acheminement": "MONTFORT", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25399"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7adc76f4dc71f7ddc5959360c814053fe8ccdb81", "fields": {"nom_de_la_commune": "MONTIVERNAGE", "libell_d_acheminement": "MONTIVERNAGE", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25401"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b894c1d8b99e2dc5d57c73efe2eca5976ef22051", "fields": {"nom_de_la_commune": "MORRE", "libell_d_acheminement": "MORRE", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25410"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ab40ebd036e45092d41a519406d19dbdf38ebe", "fields": {"nom_de_la_commune": "NANS", "libell_d_acheminement": "NANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25419"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4485000890c4cfe066af0da3f7e43af90a92e7", "fields": {"code_postal": "25580", "code_commune_insee": "25424", "libell_d_acheminement": "LES PREMIERS SAPINS", "ligne_5": "NODS", "nom_de_la_commune": "LES PREMIERS SAPINS", "coordonnees_gps": [47.1244467282, 6.26910894266]}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c55fd45ed413f440f100a82e04d09248239f4c69", "fields": {"nom_de_la_commune": "ORCHAMPS VENNES", "libell_d_acheminement": "ORCHAMPS VENNES", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25432"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d809666c237f2bcee9f2692a6764e8020709507", "fields": {"code_postal": "25120", "code_commune_insee": "25433", "libell_d_acheminement": "ORGEANS BLANCHEFONTAINE", "ligne_5": "BLANCHEFONTAINE", "nom_de_la_commune": "ORGEANS BLANCHEFONTAINE", "coordonnees_gps": [47.2517789005, 6.78722407898]}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e264a64ad3f82aa9eec2c5146afaa7e4f7d0383", "fields": {"nom_de_la_commune": "ORNANS", "libell_d_acheminement": "ORNANS", "code_postal": "25290", "coordonnees_gps": [47.1021279633, 6.08388420751], "code_commune_insee": "25434"}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74c6062a919f3dbc3e415723fef147707082af32", "fields": {"nom_de_la_commune": "OSSE", "libell_d_acheminement": "OSSE", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25437"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f89987270970887c279ac1a81a88eee86701e324", "fields": {"nom_de_la_commune": "OUHANS", "libell_d_acheminement": "OUHANS", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25440"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f26192a1db7f6715f92fe351a24c4eb864e6c303", "fields": {"nom_de_la_commune": "PASSONFONTAINE", "libell_d_acheminement": "PASSONFONTAINE", "code_postal": "25690", "coordonnees_gps": [47.1118189228, 6.43431918233], "code_commune_insee": "25447"}, "geometry": {"type": "Point", "coordinates": [6.43431918233, 47.1118189228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e5a1f1a083b49aa2f6c7f1d2db76744ba7260f3", "fields": {"nom_de_la_commune": "PESSANS", "libell_d_acheminement": "PESSANS", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25450"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecd9e7545c8d522570b5bd95fe9a45c4b723d25f", "fields": {"nom_de_la_commune": "PIREY", "libell_d_acheminement": "PIREY", "code_postal": "25480", "coordonnees_gps": [47.2739749265, 5.97316360482], "code_commune_insee": "25454"}, "geometry": {"type": "Point", "coordinates": [5.97316360482, 47.2739749265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25d33964c92c3b0488e524149d99534f997a2f1", "fields": {"nom_de_la_commune": "PLAIMBOIS DU MIROIR", "libell_d_acheminement": "PLAIMBOIS DU MIROIR", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25456"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a2d507899a00af07458e1f46aa67691ea4fc336", "fields": {"nom_de_la_commune": "LES PLAINS ET GRANDS ESSARTS", "libell_d_acheminement": "LES PLAINS ET GRANDS ESSARTS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25458"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "783d17b6312d4cc4ee23f5b8c88e1975088eb290", "fields": {"code_postal": "25640", "code_commune_insee": "25468", "libell_d_acheminement": "POULIGNEY LUSANS", "ligne_5": "LUSANS", "nom_de_la_commune": "POULIGNEY LUSANS", "coordonnees_gps": [47.3580396548, 6.210623361]}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b5e44efe4b79df3741456ffb3726485d2922291", "fields": {"nom_de_la_commune": "PUESSANS", "libell_d_acheminement": "PUESSANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25472"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4bba983a2626e85ebdde9f2921516abdb22d52", "fields": {"nom_de_la_commune": "PUGEY", "libell_d_acheminement": "PUGEY", "code_postal": "25720", "coordonnees_gps": [47.1886369614, 5.98434041211], "code_commune_insee": "25473"}, "geometry": {"type": "Point", "coordinates": [5.98434041211, 47.1886369614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba2b1361e841a78b51ae4b036c61ef1b5fbf3b85", "fields": {"nom_de_la_commune": "QUINGEY", "libell_d_acheminement": "QUINGEY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25475"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc6156668fd0e976e819197166645d1199e080c", "fields": {"nom_de_la_commune": "RANDEVILLERS", "libell_d_acheminement": "RANDEVILLERS", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25478"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beebe63f1cfb9612bb9c6babba2963554e30971c", "fields": {"nom_de_la_commune": "RAYNANS", "libell_d_acheminement": "RAYNANS", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25481"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ee5e99a4b55ad23712a4bbe972c055a0e2d38f", "fields": {"nom_de_la_commune": "REMONDANS VAIVRE", "libell_d_acheminement": "REMONDANS VAIVRE", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25485"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29b2b42f79681ca4ed83c170dfb53a455aa44483", "fields": {"code_postal": "25160", "code_commune_insee": "25486", "libell_d_acheminement": "REMORAY BOUJEONS", "ligne_5": "BOUJEONS", "nom_de_la_commune": "REMORAY BOUJEONS", "coordonnees_gps": [46.8056943645, 6.28142603625]}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c457695f006d5b58542f355a17d1f16fa27ff5c", "fields": {"nom_de_la_commune": "RENEDALE", "libell_d_acheminement": "RENEDALE", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25487"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd29f3e548a49bbeab507d18a5a9102f044522b5", "fields": {"nom_de_la_commune": "ROCHE LES CLERVAL", "libell_d_acheminement": "ROCHE LES CLERVAL", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25496"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e883362eae03c59af646cb5c20ebfa86a15479", "fields": {"nom_de_la_commune": "RONCHAUX", "libell_d_acheminement": "RONCHAUX", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25500"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a64c28ecd9f22beaaf88e70d92c4fb7fa1aa1db", "fields": {"nom_de_la_commune": "RONDEFONTAINE", "libell_d_acheminement": "RONDEFONTAINE", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25501"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b0573c6b88481213a79380b462fcaabead4ef9", "fields": {"code_postal": "25680", "code_commune_insee": "25505", "libell_d_acheminement": "ROUGEMONT", "ligne_5": "MONTFERNEY", "nom_de_la_commune": "ROUGEMONT", "coordonnees_gps": [47.4550311949, 6.34612081479]}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f424e5f7a4e9684dc29e986fa9e31797994761d", "fields": {"nom_de_la_commune": "ROULANS", "libell_d_acheminement": "ROULANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25508"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1fdd7508c8766e4130ce317115177fb9473af26", "fields": {"nom_de_la_commune": "ST VIT", "libell_d_acheminement": "ST VIT", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25527"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48b3a5d2ee56c6ff8af6b87f18f900a72a58f090", "fields": {"nom_de_la_commune": "SAMSON", "libell_d_acheminement": "SAMSON", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25528"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ba64ac3b2b8e71d25a52653b72d85d1652cdba", "fields": {"nom_de_la_commune": "SANCEY", "libell_d_acheminement": "SANCEY", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25529"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c8c01024e756096b92e6a3e8813f5e147df721", "fields": {"nom_de_la_commune": "SCEY MAISIERES", "libell_d_acheminement": "SCEY MAISIERES", "code_postal": "25290", "coordonnees_gps": [47.1021279633, 6.08388420751], "code_commune_insee": "25537"}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5825bd614dca862c52760753e2972864bfc434", "fields": {"nom_de_la_commune": "SELONCOURT", "libell_d_acheminement": "SELONCOURT", "code_postal": "25230", "coordonnees_gps": [47.458852927, 6.88062444955], "code_commune_insee": "25539"}, "geometry": {"type": "Point", "coordinates": [6.88062444955, 47.458852927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2311d828229a9b47c7eaa2904b6b9fba4388fc80", "fields": {"nom_de_la_commune": "SOCHAUX", "libell_d_acheminement": "SOCHAUX", "code_postal": "25600", "coordonnees_gps": [47.5315026095, 6.85354062275], "code_commune_insee": "25547"}, "geometry": {"type": "Point", "coordinates": [6.85354062275, 47.5315026095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec4bcdcfbf5c006f1004e8cd32fa3255802e6be7", "fields": {"nom_de_la_commune": "LA SOMMETTE", "libell_d_acheminement": "LA SOMMETTE", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25550"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08a9b80bf33a62f7b9023b6f6e70ad5ce61df691", "fields": {"nom_de_la_commune": "SOYE", "libell_d_acheminement": "SOYE", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25553"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8aa49b47431ff451d139ee1c37ac482bff07f40", "fields": {"nom_de_la_commune": "THORAISE", "libell_d_acheminement": "THORAISE", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25561"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cbbdb8f1b8b63152a064d8e21c74ffe9483930b", "fields": {"nom_de_la_commune": "LA TOUR DE SCAY", "libell_d_acheminement": "LA TOUR DE SCAY", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25566"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "231c12a07be2df97241bce6dc72de2c6bdda9e2f", "fields": {"nom_de_la_commune": "TOURNANS", "libell_d_acheminement": "TOURNANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25567"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18a131bbe0b8d0b9be538e8d6ab0ecc637ae3868", "fields": {"nom_de_la_commune": "TREVILLERS", "libell_d_acheminement": "TREVILLERS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25571"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e1efd847629d5d8274f5a7b4735ecfff426fab0", "fields": {"nom_de_la_commune": "VAIRE ARCIER", "libell_d_acheminement": "VAIRE ARCIER", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25575"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ded6c84b1997769a2c23947e488a3f82e3aa14", "fields": {"nom_de_la_commune": "VAIRE LE PETIT", "libell_d_acheminement": "VAIRE LE PETIT", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25576"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8ff3335f7cd62c60d0e3ec3062d04d0ba6e66cf", "fields": {"nom_de_la_commune": "VALLEROY", "libell_d_acheminement": "VALLEROY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25582"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f6464a56d7c641824ab0f125617cba33de0fb7", "fields": {"nom_de_la_commune": "VAUCLUSE", "libell_d_acheminement": "VAUCLUSE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25588"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b3a85d2592d548a20d38ca40e708dc80c5527b", "fields": {"nom_de_la_commune": "VAUCLUSOTTE", "libell_d_acheminement": "VAUCLUSOTTE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25589"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc2f0030de73ff2aeb0745db7642fbe7692ed71c", "fields": {"nom_de_la_commune": "VAUFREY", "libell_d_acheminement": "VAUFREY", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25591"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eedf4e7d9c5c225ed7ee05d586cd9931aee34703", "fields": {"nom_de_la_commune": "VERRIERES DU GROSBOIS", "libell_d_acheminement": "VERRIERES DU GROSBOIS", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25610"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53725016b42d5b5484129c3ead8236e931752ed3", "fields": {"nom_de_la_commune": "VIETHOREY", "libell_d_acheminement": "VIETHOREY", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25613"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1f8f8f226c146b2672bea56e1b98fb9834d039", "fields": {"nom_de_la_commune": "VILLERS CHIEF", "libell_d_acheminement": "VILLERS CHIEF", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25623"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39d14555170812cbf3de16d796d814f45a3c951", "fields": {"nom_de_la_commune": "VILLERS LA COMBE", "libell_d_acheminement": "VILLERS LA COMBE", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25625"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "813873d57224069bcbec12a45b4b1163478e94a7", "fields": {"nom_de_la_commune": "VUILLAFANS", "libell_d_acheminement": "VUILLAFANS", "code_postal": "25840", "coordonnees_gps": [47.0612985157, 6.21263749078], "code_commune_insee": "25633"}, "geometry": {"type": "Point", "coordinates": [6.21263749078, 47.0612985157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41d3aaafd19b2b20d8ca16218c7f5088e6e9aed", "fields": {"code_postal": "26150", "code_commune_insee": "26001", "libell_d_acheminement": "SOLAURE EN DIOIS", "ligne_5": "MOLIERES GLANDAZ", "nom_de_la_commune": "SOLAURE EN DIOIS", "coordonnees_gps": [44.7765586622, 5.35143868083]}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af15bd9617b3492c154a869297426e972f8b402e", "fields": {"nom_de_la_commune": "BERNOS BEAULAC", "libell_d_acheminement": "BERNOS BEAULAC", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33046"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d7c0d008de630f51fac3c82161f33b3b7b57262", "fields": {"nom_de_la_commune": "BERSON", "libell_d_acheminement": "BERSON", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33047"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d36d0351f05d4df2511486311cbcb42a68b9e9", "fields": {"nom_de_la_commune": "BERTHEZ", "libell_d_acheminement": "BERTHEZ", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33048"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c7902e59c040673048c453e326f1461a81e913b", "fields": {"nom_de_la_commune": "BEYCHAC ET CAILLAU", "libell_d_acheminement": "BEYCHAC ET CAILLAU", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33049"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ef9e115ddec8c6e818c0b6abee4ebc90e8406c", "fields": {"nom_de_la_commune": "BIGANOS", "libell_d_acheminement": "BIGANOS", "code_postal": "33380", "coordonnees_gps": [44.6379766887, -0.903316939902], "code_commune_insee": "33051"}, "geometry": {"type": "Point", "coordinates": [-0.903316939902, 44.6379766887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0c2818da8b4bc9c6a2fd530959d985e64789a42", "fields": {"nom_de_la_commune": "BLANQUEFORT", "libell_d_acheminement": "BLANQUEFORT", "code_postal": "33290", "coordonnees_gps": [44.9495870677, -0.618779202684], "code_commune_insee": "33056"}, "geometry": {"type": "Point", "coordinates": [-0.618779202684, 44.9495870677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e21bec08dc15bea6c72d833b824726baf255f9", "fields": {"nom_de_la_commune": "BLESIGNAC", "libell_d_acheminement": "BLESIGNAC", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33059"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33607e571b0ee5c6699416a87e19eca0c9a14fa8", "fields": {"nom_de_la_commune": "BONNETAN", "libell_d_acheminement": "BONNETAN", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33061"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc4c96dfe06f45735d6319eb4fc95b02dd93f02", "fields": {"nom_de_la_commune": "BORDEAUX", "libell_d_acheminement": "BORDEAUX", "code_postal": "33300", "coordonnees_gps": [44.8579384389, -0.573595011059], "code_commune_insee": "33063"}, "geometry": {"type": "Point", "coordinates": [-0.573595011059, 44.8579384389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86e45fda26d5b1a372e8b1f6e759012653a2fa75", "fields": {"nom_de_la_commune": "CABANAC ET VILLAGRAINS", "libell_d_acheminement": "CABANAC ET VILLAGRAINS", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33077"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba09ca3cc5a73bd89fb07d6afb72207ac9b8936", "fields": {"nom_de_la_commune": "CADILLAC EN FRONSADAIS", "libell_d_acheminement": "CADILLAC EN FRONSADAIS", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33082"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11fd885c47867631012f21f9a916c6de3e057dd", "fields": {"nom_de_la_commune": "CAMBLANES ET MEYNAC", "libell_d_acheminement": "CAMBLANES ET MEYNAC", "code_postal": "33360", "coordonnees_gps": [44.7832045247, -0.471864525744], "code_commune_insee": "33085"}, "geometry": {"type": "Point", "coordinates": [-0.471864525744, 44.7832045247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d15c2f697e3e3a3f7cdff1d9506e31ee5e4eea49", "fields": {"nom_de_la_commune": "CAMIRAN", "libell_d_acheminement": "CAMIRAN", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33087"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c62922b0e3bf38c9cb5be246ca123636c28fd90", "fields": {"nom_de_la_commune": "CAPLONG", "libell_d_acheminement": "CAPLONG", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33094"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63804b25052cf029fd3233b01f097fe56838787a", "fields": {"nom_de_la_commune": "CARS", "libell_d_acheminement": "CARS", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33100"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b6ef40edee37090e0137c852e7efe0ecfb5b7ed", "fields": {"nom_de_la_commune": "CARTELEGUE", "libell_d_acheminement": "CARTELEGUE", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33101"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d3389274e29e19280dc3bb8cdf180114ff41630", "fields": {"nom_de_la_commune": "CASSEUIL", "libell_d_acheminement": "CASSEUIL", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33102"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1020e73a228df113ed57fb03c17cb463b85de72", "fields": {"nom_de_la_commune": "CASTELVIEL", "libell_d_acheminement": "CASTELVIEL", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33105"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc7b82663fc5d597d276ce2ee27d2da8fe6208ce", "fields": {"nom_de_la_commune": "CASTILLON DE CASTETS", "libell_d_acheminement": "CASTILLON DE CASTETS", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33107"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e4c1f61406380b38f167494e80d44d51d1fa029", "fields": {"nom_de_la_commune": "CASTILLON LA BATAILLE", "libell_d_acheminement": "CASTILLON LA BATAILLE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33108"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14909ba0c34e586915014178dca166ecb6a3bbd1", "fields": {"nom_de_la_commune": "CAUDROT", "libell_d_acheminement": "CAUDROT", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33111"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf35d091a9685ae08de1c238c8e542410e4f6f87", "fields": {"nom_de_la_commune": "CAUVIGNAC", "libell_d_acheminement": "CAUVIGNAC", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33113"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c1dde23531e7674dc861a81b0aa8b8e77500e71", "fields": {"nom_de_la_commune": "CAVIGNAC", "libell_d_acheminement": "CAVIGNAC", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33114"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b34a27d68f1b13194045ff0f9571503bc42a52b1", "fields": {"nom_de_la_commune": "CAZATS", "libell_d_acheminement": "CAZATS", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33116"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae49548e11a34165da91cae0eab5181f4ee108b0", "fields": {"nom_de_la_commune": "CERONS", "libell_d_acheminement": "CERONS", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33120"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee56c853caf32808cc9960ba340953014cc50d32", "fields": {"nom_de_la_commune": "CEZAC", "libell_d_acheminement": "CEZAC", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33123"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2d2c8336abd24f9899a3be472af2733e384eaff", "fields": {"nom_de_la_commune": "CIVRAC SUR DORDOGNE", "libell_d_acheminement": "CIVRAC SUR DORDOGNE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33127"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be4be3ab83cd65ab37a976284e6fb8ecc016bd6", "fields": {"nom_de_la_commune": "COIRAC", "libell_d_acheminement": "COIRAC", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33131"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3babeba86e03a8fe8f541a2ce0f90d0b9f9acb58", "fields": {"nom_de_la_commune": "COURS DE MONSEGUR", "libell_d_acheminement": "COURS DE MONSEGUR", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33136"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0270fcc0c64c78286f2e93346c07f4eb44bc8f3", "fields": {"nom_de_la_commune": "COURS LES BAINS", "libell_d_acheminement": "COURS LES BAINS", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33137"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b22a69136198ebf7ed6876119e7fee64c5234bdc", "fields": {"nom_de_la_commune": "COUTRAS", "libell_d_acheminement": "COUTRAS", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33138"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7203b9d711a0042967c5145be96eead033df081", "fields": {"nom_de_la_commune": "COUTURES", "libell_d_acheminement": "COUTURES", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33139"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a383e804622187a600e464420757ec21d57a3817", "fields": {"nom_de_la_commune": "DONNEZAC", "libell_d_acheminement": "DONNEZAC", "code_postal": "33860", "coordonnees_gps": [45.2443910952, -0.48598346913], "code_commune_insee": "33151"}, "geometry": {"type": "Point", "coordinates": [-0.48598346913, 45.2443910952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77ea95c5fdc273676fd20524ecd1b44c56dae0c", "fields": {"nom_de_la_commune": "FARGUES", "libell_d_acheminement": "FARGUES", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33164"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f2ff04972f570cfd0bf24518f08cb3d580dd6d6", "fields": {"nom_de_la_commune": "FLAUJAGUES", "libell_d_acheminement": "FLAUJAGUES", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33168"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d72839960cd5717ec92913c0a147d4fc4599544", "fields": {"nom_de_la_commune": "FLOUDES", "libell_d_acheminement": "FLOUDES", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33169"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34281a6975c1bbc0e4da846604b8bb10b0616683", "fields": {"nom_de_la_commune": "FRANCS", "libell_d_acheminement": "FRANCS", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33173"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178542f0ee09dbae364a70471972010acb380526", "fields": {"nom_de_la_commune": "GALGON", "libell_d_acheminement": "GALGON", "code_postal": "33133", "coordonnees_gps": [44.9903309477, -0.276557573057], "code_commune_insee": "33179"}, "geometry": {"type": "Point", "coordinates": [-0.276557573057, 44.9903309477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f40e6a068f34d8ae334562fe3f906910b934655e", "fields": {"nom_de_la_commune": "GENISSAC", "libell_d_acheminement": "GENISSAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33185"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2675ce6002b54673ca17de2dd7c3bd7b29168c5d", "fields": {"nom_de_la_commune": "GRAYAN ET L HOPITAL", "libell_d_acheminement": "GRAYAN ET L HOPITAL", "code_postal": "33590", "coordonnees_gps": [45.4294331606, -1.04372430811], "code_commune_insee": "33193"}, "geometry": {"type": "Point", "coordinates": [-1.04372430811, 45.4294331606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeb89b34a826c8ae3b4c852df27b2cdff95fe5e0", "fields": {"nom_de_la_commune": "GUILLAC", "libell_d_acheminement": "GUILLAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33196"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d459b3f3d1d8377308f46c4dd678a621d444c55", "fields": {"nom_de_la_commune": "GUJAN MESTRAS", "libell_d_acheminement": "GUJAN MESTRAS", "code_postal": "33470", "coordonnees_gps": [44.5836668839, -1.04638835904], "code_commune_insee": "33199"}, "geometry": {"type": "Point", "coordinates": [-1.04638835904, 44.5836668839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34d548ec2548f11b6c11254df55a98e34cfdb095", "fields": {"nom_de_la_commune": "HURE", "libell_d_acheminement": "HURE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33204"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "175830cb1f9449fcebdabc89b4232c12d37e82c7", "fields": {"nom_de_la_commune": "ISLE ST GEORGES", "libell_d_acheminement": "ISLE ST GEORGES", "code_postal": "33640", "coordonnees_gps": [44.6903703564, -0.443613375594], "code_commune_insee": "33206"}, "geometry": {"type": "Point", "coordinates": [-0.443613375594, 44.6903703564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d8a409d24329bafe6a8f3012aad0f072ed842f6", "fields": {"nom_de_la_commune": "LADOS", "libell_d_acheminement": "LADOS", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33216"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18bd128fe696efb8fd0245df03a7ff6cb844d276", "fields": {"nom_de_la_commune": "LALANDE DE POMEROL", "libell_d_acheminement": "LALANDE DE POMEROL", "code_postal": "33500", "coordonnees_gps": [44.9225723992, -0.234534859794], "code_commune_insee": "33222"}, "geometry": {"type": "Point", "coordinates": [-0.234534859794, 44.9225723992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec0ca8ec17d2df1d5290b7874120b4c50a58d55", "fields": {"nom_de_la_commune": "LANGON", "libell_d_acheminement": "LANGON", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33227"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12752208e5b1fa6493b3a989409ad56bc8dc19a", "fields": {"code_postal": "33138", "code_commune_insee": "33229", "libell_d_acheminement": "LANTON", "ligne_5": "TAUSSAT", "nom_de_la_commune": "LANTON", "coordonnees_gps": [44.7747400288, -0.9772534872]}, "geometry": {"type": "Point", "coordinates": [-0.9772534872, 44.7747400288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c34e9077fe185c5c75cebdbb9718ec15d1877625", "fields": {"nom_de_la_commune": "LAROQUE", "libell_d_acheminement": "LAROQUE", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33231"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957a4fb4c1aa0e85c971be0b4eba970c1c7ce3e7", "fields": {"nom_de_la_commune": "LARTIGUE", "libell_d_acheminement": "LARTIGUE", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33232"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb37f1cc1cb6c74463310fea020ea42d694ced2b", "fields": {"nom_de_la_commune": "LAVAZAN", "libell_d_acheminement": "LAVAZAN", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33235"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58b07e9967f198c487fda2f1ee6e8741c9363e79", "fields": {"code_postal": "33950", "code_commune_insee": "33236", "libell_d_acheminement": "LEGE CAP FERRET", "ligne_5": "LE CANON", "nom_de_la_commune": "LEGE CAP FERRET", "coordonnees_gps": [44.7600136809, -1.19365601812]}, "geometry": {"type": "Point", "coordinates": [-1.19365601812, 44.7600136809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c33b6cf1dad338f794b4e8234f758e0da9cd4f", "fields": {"code_postal": "33970", "code_commune_insee": "33236", "libell_d_acheminement": "LEGE CAP FERRET", "ligne_5": "CAP FERRET", "nom_de_la_commune": "LEGE CAP FERRET", "coordonnees_gps": [44.7600136809, -1.19365601812]}, "geometry": {"type": "Point", "coordinates": [-1.19365601812, 44.7600136809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea9c2c7b9ef8ae159abfff4cee16f05e46d3c879", "fields": {"nom_de_la_commune": "LEOGNAN", "libell_d_acheminement": "LEOGNAN", "code_postal": "33850", "coordonnees_gps": [44.7191235414, -0.614773168844], "code_commune_insee": "33238"}, "geometry": {"type": "Point", "coordinates": [-0.614773168844, 44.7191235414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c125f99315a7626f5446207079f5aa1a3142897c", "fields": {"nom_de_la_commune": "LIBOURNE", "libell_d_acheminement": "LIBOURNE", "code_postal": "33500", "coordonnees_gps": [44.9225723992, -0.234534859794], "code_commune_insee": "33243"}, "geometry": {"type": "Point", "coordinates": [-0.234534859794, 44.9225723992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eba43b00f694c1a55ad8306c6bc5d3a887feb8f", "fields": {"nom_de_la_commune": "LIGUEUX", "libell_d_acheminement": "LIGUEUX", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33246"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981a8f03da9a43d35f3745dd6d3feb6e2d334659", "fields": {"nom_de_la_commune": "LISTRAC DE DUREZE", "libell_d_acheminement": "LISTRAC DE DUREZE", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33247"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844d3913591568348275848f69f347249192fe44", "fields": {"nom_de_la_commune": "MARCENAIS", "libell_d_acheminement": "MARCENAIS", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33266"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac910821d568433409438417f62595ecb9e5fb8f", "fields": {"nom_de_la_commune": "MIOS", "libell_d_acheminement": "MIOS", "code_postal": "33380", "coordonnees_gps": [44.6379766887, -0.903316939902], "code_commune_insee": "33284"}, "geometry": {"type": "Point", "coordinates": [-0.903316939902, 44.6379766887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a645a34f4bfffeac789b16268b2d3ed900bd1658", "fields": {"code_postal": "33380", "code_commune_insee": "33284", "libell_d_acheminement": "MIOS", "ligne_5": "CAUDOS", "nom_de_la_commune": "MIOS", "coordonnees_gps": [44.6379766887, -0.903316939902]}, "geometry": {"type": "Point", "coordinates": [-0.903316939902, 44.6379766887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e87ee4faa18a2f12e3f879754029b36288d12d", "fields": {"nom_de_la_commune": "MONTAGNE", "libell_d_acheminement": "MONTAGNE", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33290"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c6dbc1c81421c608983ec85ba2537f2d485758b", "fields": {"nom_de_la_commune": "MONTAGOUDIN", "libell_d_acheminement": "MONTAGOUDIN", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33291"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e71840503e0a12ff3c93d293c68aa789c5a2b37", "fields": {"nom_de_la_commune": "NEUFFONS", "libell_d_acheminement": "NEUFFONS", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33304"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7165459feb9f003243ba424a2bf2d4dd1faf03d5", "fields": {"nom_de_la_commune": "LE NIZAN", "libell_d_acheminement": "LE NIZAN", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33305"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ce30dacb2e674dd7233483ea286c224a39f6f9", "fields": {"nom_de_la_commune": "OMET", "libell_d_acheminement": "OMET", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33308"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d5ab426f94238a79b1fdc77fe6b97cfc9d40c79", "fields": {"nom_de_la_commune": "PESSAC SUR DORDOGNE", "libell_d_acheminement": "PESSAC SUR DORDOGNE", "code_postal": "33890", "coordonnees_gps": [44.8028271638, 0.0747439245275], "code_commune_insee": "33319"}, "geometry": {"type": "Point", "coordinates": [0.0747439245275, 44.8028271638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1df158dc4b6f88bebaf58a69f7ad66083f8aeca", "fields": {"nom_de_la_commune": "LE PIAN SUR GARONNE", "libell_d_acheminement": "LE PIAN SUR GARONNE", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33323"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb833451c22682a1dd5bde7cd84d1a55052d69c", "fields": {"nom_de_la_commune": "PINEUILH", "libell_d_acheminement": "PINEUILH", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33324"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f4bcba31bd5777da007ee0547965a8897e404b7", "fields": {"nom_de_la_commune": "PLASSAC", "libell_d_acheminement": "PLASSAC", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33325"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14ac3699f822482cd894695dc106be43218f9344", "fields": {"nom_de_la_commune": "PUGNAC", "libell_d_acheminement": "PUGNAC", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33341"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8be7a72593df439fa039f14400d1ad83544d804c", "fields": {"nom_de_la_commune": "PUJOLS", "libell_d_acheminement": "PUJOLS", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33344"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20cff93ce252fac7371304a35269cbc816f1b8f9", "fields": {"nom_de_la_commune": "SABLONS", "libell_d_acheminement": "SABLONS", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33362"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35994f5afd62f3b3399f6f9dccfae00f560b16f", "fields": {"nom_de_la_commune": "ST ANDRE DE CUBZAC", "libell_d_acheminement": "ST ANDRE DE CUBZAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33366"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b658e7a6cbb9c9e9b6b84f4480e1d76cb535018", "fields": {"nom_de_la_commune": "ST ANDRE ET APPELLES", "libell_d_acheminement": "ST ANDRE ET APPELLES", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33369"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f594b4141b3aea1169bc8367c2e9056323dff17a", "fields": {"nom_de_la_commune": "ST CIERS SUR GIRONDE", "libell_d_acheminement": "ST CIERS SUR GIRONDE", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33389"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9069c1015ae80b7c4f4909de11b3a939397eacf7", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33390"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b5621d8d551e14705f22b75019e8a8b789d7b2d", "fields": {"nom_de_la_commune": "STE CROIX DU MONT", "libell_d_acheminement": "STE CROIX DU MONT", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33392"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8181f8e610844a1a2819e8075e710a04ffcffaf5", "fields": {"nom_de_la_commune": "STE EULALIE", "libell_d_acheminement": "STE EULALIE", "code_postal": "33560", "coordonnees_gps": [44.9021503344, -0.484694308207], "code_commune_insee": "33397"}, "geometry": {"type": "Point", "coordinates": [-0.484694308207, 44.9021503344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b976e7a06dfc51af8f5b9d6db61a28a60f574b7", "fields": {"nom_de_la_commune": "STE FLORENCE", "libell_d_acheminement": "STE FLORENCE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33401"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42565e7416485d1900664bc54807153c7ad0eabc", "fields": {"nom_de_la_commune": "ST GERMAIN DE GRAVE", "libell_d_acheminement": "ST GERMAIN DE GRAVE", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33411"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1100f0e445ca1d9df82d9d594770c8f03189a9", "fields": {"nom_de_la_commune": "ST HILAIRE DU BOIS", "libell_d_acheminement": "ST HILAIRE DU BOIS", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33419"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06e5e8103f470df9c2bec0c1d3f0a66b022749cf", "fields": {"nom_de_la_commune": "ST JEAN DE BLAIGNAC", "libell_d_acheminement": "ST JEAN DE BLAIGNAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33421"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c190f34e38d729e4d8049a8b3aa8815ee53c03", "fields": {"nom_de_la_commune": "ST JEAN D ILLAC", "libell_d_acheminement": "ST JEAN D ILLAC", "code_postal": "33127", "coordonnees_gps": [44.8025911594, -0.815024099624], "code_commune_insee": "33422"}, "geometry": {"type": "Point", "coordinates": [-0.815024099624, 44.8025911594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fca904c92b83497993796720f8a51bc0873af65", "fields": {"nom_de_la_commune": "ST LEON", "libell_d_acheminement": "ST LEON", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33431"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a8a70e104aaa42f5231ab3c0723115474fc7b33", "fields": {"nom_de_la_commune": "ST MACAIRE", "libell_d_acheminement": "ST MACAIRE", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33435"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a7733a37af528e878d688a3896da0b75bbd0c4d", "fields": {"nom_de_la_commune": "ST MARIENS", "libell_d_acheminement": "ST MARIENS", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33439"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be3cf255dbc265b0cb3f1b8e31720b2f35ac210", "fields": {"nom_de_la_commune": "ST MARTIN DE LAYE", "libell_d_acheminement": "ST MARTIN DE LAYE", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33442"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9eeec23c739d54d81267b3bc5f74300d2edddb1", "fields": {"nom_de_la_commune": "ST MEDARD D EYRANS", "libell_d_acheminement": "ST MEDARD D EYRANS", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33448"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7d548f2545718b89731275b5d7f9eac1ab89d0", "fields": {"nom_de_la_commune": "ST MICHEL DE RIEUFRET", "libell_d_acheminement": "ST MICHEL DE RIEUFRET", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33452"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f4908c111184d20ea0ad3d321e6283080e19e9", "fields": {"nom_de_la_commune": "ST ROMAIN LA VIRVEE", "libell_d_acheminement": "ST ROMAIN LA VIRVEE", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33470"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e857b390a759f265ac0786aac812368cefc3208", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "33250", "coordonnees_gps": [45.1927076344, -0.786704253208], "code_commune_insee": "33471"}, "geometry": {"type": "Point", "coordinates": [-0.786704253208, 45.1927076344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d42bc4f445dec2efa249cd42005260818dafc559", "fields": {"nom_de_la_commune": "ST SAUVEUR DE PUYNORMAND", "libell_d_acheminement": "ST SAUVEUR DE PUYNORMAND", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33472"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2114a3ff7211959786443299e7856ce626830e83", "fields": {"nom_de_la_commune": "ST SELVE", "libell_d_acheminement": "ST SELVE", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33474"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4868e234e53dd644e23b6457a108b54bc8e9cf8b", "fields": {"nom_de_la_commune": "ST SEURIN DE BOURG", "libell_d_acheminement": "ST SEURIN DE BOURG", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33475"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7148b7a156eb36041ab2ff3c79309c7688b07f73", "fields": {"nom_de_la_commune": "ST SEURIN DE CURSAC", "libell_d_acheminement": "ST SEURIN DE CURSAC", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33477"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df77d1f87c57510e14920ab5eeffab521401531", "fields": {"nom_de_la_commune": "STE TERRE", "libell_d_acheminement": "STE TERRE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33485"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6217c7946d331e856fb051b747d13c35405af03", "fields": {"nom_de_la_commune": "ST VIVIEN DE BLAYE", "libell_d_acheminement": "ST VIVIEN DE BLAYE", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33489"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827634a2701089734bbd5a5a48ebd543cda0e98b", "fields": {"nom_de_la_commune": "SALAUNES", "libell_d_acheminement": "SALAUNES", "code_postal": "33160", "coordonnees_gps": [44.9057111601, -0.79310499686], "code_commune_insee": "33494"}, "geometry": {"type": "Point", "coordinates": [-0.79310499686, 44.9057111601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8941f639c2d79763ef34f20ddd6220abbfb77200", "fields": {"nom_de_la_commune": "SAUCATS", "libell_d_acheminement": "SAUCATS", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33501"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7ec0b9d06ab8252c4eb12a9f7d76b845654557", "fields": {"nom_de_la_commune": "SIGALENS", "libell_d_acheminement": "SIGALENS", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33512"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec21e89bd29ac7a47516e46165c3d60362c1057a", "fields": {"nom_de_la_commune": "BESAYES", "libell_d_acheminement": "BESAYES", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26049"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88bec136bbed016c53d7407dedd52355d86c0534", "fields": {"nom_de_la_commune": "BESIGNAN", "libell_d_acheminement": "BESIGNAN", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26050"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c529be5db09e1262d9a2031ddc058ca0da9319e0", "fields": {"nom_de_la_commune": "BEZAUDUN SUR BINE", "libell_d_acheminement": "BEZAUDUN SUR BINE", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26051"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb46e4e435eb340f0015ef65124706fc4911c66", "fields": {"nom_de_la_commune": "BOULC", "libell_d_acheminement": "BOULC", "code_postal": "26410", "coordonnees_gps": [44.6917619163, 5.54713177432], "code_commune_insee": "26055"}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b95ab4070c90e00be326a3f2371dd327859d359", "fields": {"code_postal": "26410", "code_commune_insee": "26055", "libell_d_acheminement": "BOULC", "ligne_5": "RAVEL ET FERRIERS", "nom_de_la_commune": "BOULC", "coordonnees_gps": [44.6917619163, 5.54713177432]}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8859213aa8d71314e7fbe6730a80bebfd9639e96", "fields": {"nom_de_la_commune": "BOURG DE PEAGE", "libell_d_acheminement": "BOURG DE PEAGE", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26057"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a45071d6e3d0d1bad98490bad4d65b256f802212", "fields": {"nom_de_la_commune": "BRETTE", "libell_d_acheminement": "BRETTE", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26062"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "555a2aa13144eb35c963156de0c1cf20c6e084a2", "fields": {"code_postal": "26120", "code_commune_insee": "26064", "libell_d_acheminement": "CHABEUIL", "ligne_5": "PARLANGES", "nom_de_la_commune": "CHABEUIL", "coordonnees_gps": [44.8732903807, 5.03514249262]}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "170878c057d2522889e8192a99232719ab98b381", "fields": {"nom_de_la_commune": "LE CHAFFAL", "libell_d_acheminement": "LE CHAFFAL", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26066"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "169bb065c26e5a0f094995dc6daa9b036edd5139", "fields": {"nom_de_la_commune": "LA CHARCE", "libell_d_acheminement": "LA CHARCE", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26075"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d4f5e31c675813380f2ab185d47075ac3bd7e3a", "fields": {"nom_de_la_commune": "CHAROLS", "libell_d_acheminement": "CHAROLS", "code_postal": "26450", "coordonnees_gps": [44.624531354, 4.94624858412], "code_commune_insee": "26078"}, "geometry": {"type": "Point", "coordinates": [4.94624858412, 44.624531354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b421c00d5f6fffcec604bb47d647f8d2c0d3bc5b", "fields": {"nom_de_la_commune": "CHATEAUNEUF DE BORDETTE", "libell_d_acheminement": "CHATEAUNEUF DE BORDETTE", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26082"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0f2528b81e337db8e09240034e226a77eea5892", "fields": {"nom_de_la_commune": "CHATILLON ST JEAN", "libell_d_acheminement": "CHATILLON ST JEAN", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26087"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e551b262f2d25fae6c3a9fbbd9952c07ec50523", "fields": {"nom_de_la_commune": "CHAUVAC LAUX MONTAUX", "libell_d_acheminement": "CHAUVAC LAUX MONTAUX", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26091"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80dd2aa2991834950ab3f758c621392645454b4a", "fields": {"nom_de_la_commune": "CONDILLAC", "libell_d_acheminement": "CONDILLAC", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26102"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66e1e2918dbf678a00ed2513108fb43a9c867cd7", "fields": {"nom_de_la_commune": "CORNILLON SUR L OULE", "libell_d_acheminement": "CORNILLON SUR L OULE", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26105"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00b3261c1fbff44deaa0b1ad2c998bb92435d4a8", "fields": {"nom_de_la_commune": "LA COUCOURDE", "libell_d_acheminement": "LA COUCOURDE", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26106"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9980dfba52bf9e8b226f6a090c2c130d046baa", "fields": {"nom_de_la_commune": "CREPOL", "libell_d_acheminement": "CREPOL", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26107"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2daf048fa9b1c852ec4337851423fc26ec8d44a", "fields": {"nom_de_la_commune": "CREST", "libell_d_acheminement": "CREST", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26108"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5c6c3f42a9071c2cb48332ad18164e9fba6fbc2", "fields": {"nom_de_la_commune": "DIEULEFIT", "libell_d_acheminement": "DIEULEFIT", "code_postal": "26220", "coordonnees_gps": [44.5059252728, 5.12194208681], "code_commune_insee": "26114"}, "geometry": {"type": "Point", "coordinates": [5.12194208681, 44.5059252728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65caa3426c91b27049cb45d2703c38a50441d6b4", "fields": {"nom_de_la_commune": "ETOILE SUR RHONE", "libell_d_acheminement": "ETOILE SUR RHONE", "code_postal": "26800", "coordonnees_gps": [44.8326704656, 4.89052463788], "code_commune_insee": "26124"}, "geometry": {"type": "Point", "coordinates": [4.89052463788, 44.8326704656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad10536ff97c503f751b63b8a9babdf070fef8c", "fields": {"nom_de_la_commune": "EYROLES", "libell_d_acheminement": "EYROLES", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26130"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed642ac61118de951b0e03684c0722c21bf8e501", "fields": {"nom_de_la_commune": "FAY LE CLOS", "libell_d_acheminement": "FAY LE CLOS", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26133"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9dd2f12b2c579d78ddd2343c2cc556276073c60", "fields": {"nom_de_la_commune": "HAUTERIVES", "libell_d_acheminement": "HAUTERIVES", "code_postal": "26390", "coordonnees_gps": [45.2443633051, 5.0335654091], "code_commune_insee": "26148"}, "geometry": {"type": "Point", "coordinates": [5.0335654091, 45.2443633051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae38afd811b0b6131e024aa4620d49067cd92b06", "fields": {"nom_de_la_commune": "LAPEYROUSE MORNAY", "libell_d_acheminement": "LAPEYROUSE MORNAY", "code_postal": "26210", "coordonnees_gps": [45.2969498397, 4.98492206327], "code_commune_insee": "26155"}, "geometry": {"type": "Point", "coordinates": [4.98492206327, 45.2969498397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71296de07227ce6c2fe00d5a0c511f4ef38da242", "fields": {"nom_de_la_commune": "LAVAL D AIX", "libell_d_acheminement": "LAVAL D AIX", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26159"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e40548aa0176654e1650f9264e09bb4366c01db", "fields": {"nom_de_la_commune": "LAVEYRON", "libell_d_acheminement": "LAVEYRON", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26160"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0733c9fe905a17691cc3034a5e1700f2122d5600", "fields": {"nom_de_la_commune": "LUS LA CROIX HAUTE", "libell_d_acheminement": "LUS LA CROIX HAUTE", "code_postal": "26620", "coordonnees_gps": [44.6826261394, 5.72299637857], "code_commune_insee": "26168"}, "geometry": {"type": "Point", "coordinates": [5.72299637857, 44.6826261394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a725660cba69a7f77f7039a18e9c47065ffef17a", "fields": {"nom_de_la_commune": "MALISSARD", "libell_d_acheminement": "MALISSARD", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26170"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc5a8aec1c4f3fa6d8d995a06cd048c2fdf51f81", "fields": {"nom_de_la_commune": "MARIGNAC EN DIOIS", "libell_d_acheminement": "MARIGNAC EN DIOIS", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26175"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087bd0f13fa1b6134603fcab0812ec611ce1199c", "fields": {"nom_de_la_commune": "MONTCHENU", "libell_d_acheminement": "MONTCHENU", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26194"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e0ac518352c8d6e4ed5ac47755fa35f2a151682", "fields": {"nom_de_la_commune": "MONTCLAR SUR GERVANNE", "libell_d_acheminement": "MONTCLAR SUR GERVANNE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26195"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c443ae4acf049a7e7f4c54c16efa7e6f97b5c025", "fields": {"nom_de_la_commune": "MONTFERRAND LA FARE", "libell_d_acheminement": "MONTFERRAND LA FARE", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26199"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9cdeaf220db2637f15dfbde70bd99a332165d8", "fields": {"nom_de_la_commune": "MONTVENDRE", "libell_d_acheminement": "MONTVENDRE", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26212"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe8449546f1e766c37f56dd7a13984456b36d64", "fields": {"nom_de_la_commune": "LA MOTTE CHALANCON", "libell_d_acheminement": "LA MOTTE CHALANCON", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26215"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a75620bbdc8667992397d48fd6185b50168607", "fields": {"nom_de_la_commune": "LA MOTTE FANJAS", "libell_d_acheminement": "LA MOTTE FANJAS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26217"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d014c840957a775b6934eacb19eaebcadbdde379", "fields": {"nom_de_la_commune": "MOURS ST EUSEBE", "libell_d_acheminement": "MOURS ST EUSEBE", "code_postal": "26540", "coordonnees_gps": [45.0708578935, 5.05953269448], "code_commune_insee": "26218"}, "geometry": {"type": "Point", "coordinates": [5.05953269448, 45.0708578935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0f31867e301785d2e582b014879469046e425d8", "fields": {"nom_de_la_commune": "ORCINAS", "libell_d_acheminement": "ORCINAS", "code_postal": "26220", "coordonnees_gps": [44.5059252728, 5.12194208681], "code_commune_insee": "26222"}, "geometry": {"type": "Point", "coordinates": [5.12194208681, 44.5059252728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeeb2476960bcc5b9656f64d66547f54622d4a2e", "fields": {"nom_de_la_commune": "OURCHES", "libell_d_acheminement": "OURCHES", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26224"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1cd87ee9d07f6d5e6db8b4c7bdce10811b2f3cc", "fields": {"nom_de_la_commune": "PARNANS", "libell_d_acheminement": "PARNANS", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26225"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e47aa96b2a314b7ff9eb6249d255be92e81289a", "fields": {"nom_de_la_commune": "PENNES LE SEC", "libell_d_acheminement": "PENNES LE SEC", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26228"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9d1f8de96edab9bc9541c16995c17c8f67bdfde", "fields": {"nom_de_la_commune": "LA PENNE SUR L OUVEZE", "libell_d_acheminement": "LA PENNE SUR L OUVEZE", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26229"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8b3ecc8fd0eba37548ee2166962213a36027063", "fields": {"nom_de_la_commune": "PEYRUS", "libell_d_acheminement": "PEYRUS", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26232"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50ea5bb239f90f14aae4b98258dd1da42fbf1876", "fields": {"nom_de_la_commune": "PIEGROS LA CLASTRE", "libell_d_acheminement": "PIEGROS LA CLASTRE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26234"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "430c7aac7fe8a6ba332df46036bb8d5365019bc3", "fields": {"nom_de_la_commune": "PLAISIANS", "libell_d_acheminement": "PLAISIANS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26239"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "205a8bf3d56bf81a23327ee71ca38f1d4fecd520", "fields": {"nom_de_la_commune": "PONTAIX", "libell_d_acheminement": "PONTAIX", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26248"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fb186493589e4c2f71319b6c4847a40aa5286c4", "fields": {"nom_de_la_commune": "PROPIAC", "libell_d_acheminement": "PROPIAC", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26256"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40e65ebd3ba06c062a7817981f24ca04e7e9685d", "fields": {"nom_de_la_commune": "PUYGIRON", "libell_d_acheminement": "PUYGIRON", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26257"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a919de58b789e79afddcd84a267c7a811b713e2", "fields": {"nom_de_la_commune": "ROCHEFORT EN VALDAINE", "libell_d_acheminement": "ROCHEFORT EN VALDAINE", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26272"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f23644cf786d672be71b60406a7e6955549c956", "fields": {"code_postal": "26770", "code_commune_insee": "26276", "libell_d_acheminement": "ROCHE ST SECRET BECONNE", "ligne_5": "BECONNE", "nom_de_la_commune": "ROCHE ST SECRET BECONNE", "coordonnees_gps": [44.4552603044, 5.0169388976]}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef02c4cc6dfb5bb842ef633bd45123fae538c51", "fields": {"nom_de_la_commune": "LA ROCHE SUR LE BUIS", "libell_d_acheminement": "LA ROCHE SUR LE BUIS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26278"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1dd4161c418e7033ec3ea987736c77231f0d1d8", "fields": {"nom_de_la_commune": "ROMEYER", "libell_d_acheminement": "ROMEYER", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26282"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "718bbf2b113adc781ae6b6f58466fcb854237b8c", "fields": {"nom_de_la_commune": "SAILLANS", "libell_d_acheminement": "SAILLANS", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26289"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e55258523685d52f6f82cfd577cb8b18ed5a98b", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "26330", "coordonnees_gps": [45.2134239475, 4.96745732699], "code_commune_insee": "26293"}, "geometry": {"type": "Point", "coordinates": [4.96745732699, 45.2134239475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f6ce2c26ed76d340340ddb3eaf447ff11693f0f", "fields": {"nom_de_la_commune": "ST JULIEN EN VERCORS", "libell_d_acheminement": "ST JULIEN EN VERCORS", "code_postal": "26420", "coordonnees_gps": [44.9365927101, 5.42231201851], "code_commune_insee": "26309"}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7051c2be57f2308cd607d15eded4923344aa2dc7", "fields": {"nom_de_la_commune": "ST MARTIN LE COLONEL", "libell_d_acheminement": "ST MARTIN LE COLONEL", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26316"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bba3087c08c5670bfe362e84981543b9b80bf7b4", "fields": {"nom_de_la_commune": "ST VALLIER", "libell_d_acheminement": "ST VALLIER", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26333"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede570be9e5bbda6ff3a82947f75fa4895ce06ea", "fields": {"nom_de_la_commune": "SALETTES", "libell_d_acheminement": "SALETTES", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26334"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d656cf6e5f3ee01c3aacb4d22d6fac61e863ce06", "fields": {"code_postal": "26740", "code_commune_insee": "26339", "libell_d_acheminement": "SAVASSE", "ligne_5": "L HOMME D ARMES", "nom_de_la_commune": "SAVASSE", "coordonnees_gps": [44.6175061627, 4.82925969316]}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e252e0760e49199245073d304d3fd6f55b7e52ee", "fields": {"nom_de_la_commune": "SEDERON", "libell_d_acheminement": "SEDERON", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26340"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb15682114e386238d13cafe15e3520257d91263", "fields": {"nom_de_la_commune": "LES TOURRETTES", "libell_d_acheminement": "LES TOURRETTES", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26353"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e40029ad566e1e7e4cb1007ee13e179b4e72e8", "fields": {"code_postal": "26410", "code_commune_insee": "26354", "libell_d_acheminement": "TRESCHENU CREYERS", "ligne_5": "CREYERS", "nom_de_la_commune": "TRESCHENU CREYERS", "coordonnees_gps": [44.6917619163, 5.54713177432]}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "714460ec06e1d35bfb999dab989f58fc34da1bf3", "fields": {"nom_de_la_commune": "UPIE", "libell_d_acheminement": "UPIE", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26358"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c0e8efc2caba0fdfe7f0b6a3794eb6efb331b57", "fields": {"nom_de_la_commune": "VACHERES EN QUINT", "libell_d_acheminement": "VACHERES EN QUINT", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26359"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d618b993b624d839414ada3147ed015fb77da7b2", "fields": {"nom_de_la_commune": "VAUNAVEYS LA ROCHETTE", "libell_d_acheminement": "VAUNAVEYS LA ROCHETTE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26365"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534156400ad83d968d2a3c43ee6ee0647f2cd49f", "fields": {"code_postal": "26400", "code_commune_insee": "26365", "libell_d_acheminement": "VAUNAVEYS LA ROCHETTE", "ligne_5": "LA ROCHETTE SUR CREST", "nom_de_la_commune": "VAUNAVEYS LA ROCHETTE", "coordonnees_gps": [44.7390283937, 5.06867808375]}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15961b92e59827c4fb26988ee5809a2879cc779e", "fields": {"nom_de_la_commune": "VERCHENY", "libell_d_acheminement": "VERCHENY", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26368"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a3e516ee6a47a716aae78255c1103518e705b4e", "fields": {"nom_de_la_commune": "VERONNE", "libell_d_acheminement": "VERONNE", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26371"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a16607eb67a9d749b8f7f8024fd359c10d92f94e", "fields": {"nom_de_la_commune": "VILLEBOIS LES PINS", "libell_d_acheminement": "VILLEBOIS LES PINS", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "26374"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ffe6af3fb61b1b65c0e9dacf1112cc70e18951", "fields": {"nom_de_la_commune": "VILLEPERDRIX", "libell_d_acheminement": "VILLEPERDRIX", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26376"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e9ed2d36504f303149dd3187ac4ce0e56a1583", "fields": {"nom_de_la_commune": "ANGERVILLE LA CAMPAGNE", "libell_d_acheminement": "ANGERVILLE LA CAMPAGNE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27017"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71d8051139e82e31ea76ac44729b376866090f70", "fields": {"nom_de_la_commune": "ASNIERES", "libell_d_acheminement": "ASNIERES", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27021"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22443febf7074a03ba1fe35fc64f8dd9ad4425b3", "fields": {"code_postal": "27240", "code_commune_insee": "27032", "libell_d_acheminement": "CHAMBOIS", "ligne_5": "THOMER LA SOGNE", "nom_de_la_commune": "CHAMBOIS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e481902e1785388fe603b3e1c228031343c1f40b", "fields": {"nom_de_la_commune": "BALINES", "libell_d_acheminement": "BALINES", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27036"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91e61ff6299f3fb24d26cf23f56a121a643bea08", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "JONQUERETS DE LIVET", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4258a073338f80a8edea47d4326d9973edd55255", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "LANDEPEREUSE", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d058135aae616cb71db38f9097dd93657b8db58f", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "ST AUBIN DES HAYES", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "526539802fe77f07c4c580702a380ee48c9701e4", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "ST AUBIN LE GUICHARD", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402bba2f092afa3c8b646d73563b155de5bd7a6a", "fields": {"nom_de_la_commune": "BEAUMONTEL", "libell_d_acheminement": "BEAUMONTEL", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27050"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a6efdabe8b0bd486c57aeb0c0a0d6c8da2ff42", "fields": {"nom_de_la_commune": "BEAUMONT LE ROGER", "libell_d_acheminement": "BEAUMONT LE ROGER", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27051"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be4f8d8d063332836b01cfef2a2f7fb28625e39", "fields": {"nom_de_la_commune": "BEMECOURT", "libell_d_acheminement": "BEMECOURT", "code_postal": "27160", "coordonnees_gps": [48.8560757973, 0.877611850909], "code_commune_insee": "27054"}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3d1e86f56a5c49cffdec72ba06b758acdbdc1ef", "fields": {"nom_de_la_commune": "BERNIERES SUR SEINE", "libell_d_acheminement": "BERNIERES SUR SEINE", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27058"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9ccc45b39614cdd181489d9108c479385f190f", "fields": {"nom_de_la_commune": "BERVILLE LA CAMPAGNE", "libell_d_acheminement": "BERVILLE LA CAMPAGNE", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27063"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715376c62575fc978d453d2d66728d21ef3281a5", "fields": {"nom_de_la_commune": "BONCOURT", "libell_d_acheminement": "BONCOURT", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27081"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480fb620094b3fddcea5e5b357de9413c98be789", "fields": {"nom_de_la_commune": "FLANCOURT CRESCY EN ROUMOIS", "libell_d_acheminement": "FLANCOURT CRESCY EN ROUMOIS", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27085"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c351006edf83aad44b44bfa7be15c2ad4ad9151a", "fields": {"nom_de_la_commune": "LE BOSC ROGER EN ROUMOIS", "libell_d_acheminement": "LE BOSC ROGER EN ROUMOIS", "code_postal": "27670", "coordonnees_gps": [49.2917091598, 0.924488601867], "code_commune_insee": "27090"}, "geometry": {"type": "Point", "coordinates": [0.924488601867, 49.2917091598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3240dedf51fe1cfa075768a7599ee5337b144173", "fields": {"nom_de_la_commune": "BOSGOUET", "libell_d_acheminement": "BOSGOUET", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27091"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62514156f9e41af8322333445a4e80c5b66d4eee", "fields": {"nom_de_la_commune": "BOSGUERARD DE MARCOUVILLE", "libell_d_acheminement": "BOSGUERARD DE MARCOUVILLE", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27092"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93896a3207e87f4401c94e2fe48cd55c3647f62c", "fields": {"code_postal": "27250", "code_commune_insee": "27096", "libell_d_acheminement": "LES BOTTEREAUX", "ligne_5": "LES FRETILS", "nom_de_la_commune": "LES BOTTEREAUX", "coordonnees_gps": [48.8418982747, 0.70407157024]}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf209bd548947f86e7bdb52b5285bcd99a0c553", "fields": {"code_postal": "27250", "code_commune_insee": "27096", "libell_d_acheminement": "LES BOTTEREAUX", "ligne_5": "VAUX SUR RISLE", "nom_de_la_commune": "LES BOTTEREAUX", "coordonnees_gps": [48.8418982747, 0.70407157024]}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d780d91c20ca8bc70d798465696fcd5ac8702ffc", "fields": {"nom_de_la_commune": "BOUAFLES", "libell_d_acheminement": "BOUAFLES", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27097"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53811f8a9ed2e884cc1952e6a5c478321a61fb01", "fields": {"nom_de_la_commune": "BOUQUELON", "libell_d_acheminement": "BOUQUELON", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27101"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b97c4ccfef970d1cf5d462152437a621743c648", "fields": {"nom_de_la_commune": "BOURG BEAUDOUIN", "libell_d_acheminement": "BOURG BEAUDOUIN", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27104"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af92ef849314aea904cc70d8803567662c7dc7d4", "fields": {"code_postal": "27520", "code_commune_insee": "27105", "libell_d_acheminement": "GRAND BOURGTHEROULDE", "ligne_5": "BOSCHERVILLE", "nom_de_la_commune": "GRAND BOURGTHEROULDE", "coordonnees_gps": [49.2823225842, 0.820810148087]}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abaac7c09bab3d6cfc502a8d60abc7c248790b77", "fields": {"nom_de_la_commune": "BRAY", "libell_d_acheminement": "BRAY", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27109"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74739c294fabef88e7dfd96a256d9d60ae86d96f", "fields": {"nom_de_la_commune": "BRETAGNOLLES", "libell_d_acheminement": "BRETAGNOLLES", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27111"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87616115434e7ab9b83afb61a565d8f8eba17464", "fields": {"nom_de_la_commune": "BRETIGNY", "libell_d_acheminement": "BRETIGNY", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27113"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e492c9f215b86a4ccb05b086f561a6f7bf9e35a4", "fields": {"nom_de_la_commune": "BRIONNE", "libell_d_acheminement": "BRIONNE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27116"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "685acbcbb2318cd5a2f3e83b5cd0da98925d86ec", "fields": {"nom_de_la_commune": "BUEIL", "libell_d_acheminement": "BUEIL", "code_postal": "27730", "coordonnees_gps": [48.932997523, 1.41949136051], "code_commune_insee": "27119"}, "geometry": {"type": "Point", "coordinates": [1.41949136051, 48.932997523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f6f434e7b6ee8a84dcceade8291909072307c5", "fields": {"nom_de_la_commune": "BUREY", "libell_d_acheminement": "BUREY", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27120"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0222f6f01b6f605e2bdf980ac7197853cb7d30ce", "fields": {"nom_de_la_commune": "BAYONS", "libell_d_acheminement": "BAYONS", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04023"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77c2c7a85b716f709a3a7f1b2865835d55ca071e", "fields": {"nom_de_la_commune": "YZEURE", "libell_d_acheminement": "YZEURE", "code_postal": "03400", "coordonnees_gps": [46.5948274865, 3.39131672736], "code_commune_insee": "03321"}, "geometry": {"type": "Point", "coordinates": [3.39131672736, 46.5948274865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f29a14524db9bab32e40f99c9052a31db60106", "fields": {"nom_de_la_commune": "AUTHON", "libell_d_acheminement": "AUTHON", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04016"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a43a33b18b62818d05c15480b53746cea44d95cd", "fields": {"code_postal": "04420", "code_commune_insee": "04155", "libell_d_acheminement": "PRADS HAUTE BLEONE", "ligne_5": "BLEGIERS", "nom_de_la_commune": "PRADS HAUTE BLEONE", "coordonnees_gps": [44.1915370123, 6.39634951994]}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a958271c1ca83dd7c1b4a6ce325926e61cc498", "fields": {"code_postal": "04170", "code_commune_insee": "04136", "libell_d_acheminement": "LA MURE ARGENS", "ligne_5": "ARGENS", "nom_de_la_commune": "LA MURE ARGENS", "coordonnees_gps": [44.0283793714, 6.53951156663]}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2fcd288b5437d6b050bbeff02343da82e568cb8", "fields": {"nom_de_la_commune": "LA PALUD SUR VERDON", "libell_d_acheminement": "LA PALUD SUR VERDON", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04144"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b508ce1a18d4b75653a6f5a0cb8e693c41d24208", "fields": {"nom_de_la_commune": "NIOZELLES", "libell_d_acheminement": "NIOZELLES", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04138"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f01fd2a569fd152c0de65037abfb93d4e16c9b1", "fields": {"nom_de_la_commune": "REILLANNE", "libell_d_acheminement": "REILLANNE", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04160"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64587cc376913d42416a4d5cb89c45c7c76a4e72", "fields": {"nom_de_la_commune": "QUINSON", "libell_d_acheminement": "QUINSON", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04158"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af22906aed15147d4e058c1a65a9ba03e5abe630", "fields": {"nom_de_la_commune": "NIBLES", "libell_d_acheminement": "NIBLES", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04137"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6a52ced8614b8350c234c397c35ea9a949ca25", "fields": {"nom_de_la_commune": "LIMANS", "libell_d_acheminement": "LIMANS", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04104"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f38d7f9554a385417ff7f29ee23d2ce79d50988", "fields": {"nom_de_la_commune": "PIEGUT", "libell_d_acheminement": "PIEGUT", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "04150"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3441f6a0802cfc9b5fc1d82f5ca9c387ca2724", "fields": {"nom_de_la_commune": "MEZEL", "libell_d_acheminement": "MEZEL", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04121"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d41a38a8012d2617f18df708a145414636f8c2ed", "fields": {"code_postal": "04600", "code_commune_insee": "04049", "libell_d_acheminement": "CHATEAU ARNOUX ST AUBAN", "ligne_5": "ST AUBAN", "nom_de_la_commune": "CHATEAU ARNOUX ST AUBAN", "coordonnees_gps": [44.0744156003, 5.97645847949]}, "geometry": {"type": "Point", "coordinates": [5.97645847949, 44.0744156003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a39d5af6b857a6acfd41901f8ee866a8df2de6d", "fields": {"code_postal": "04120", "code_commune_insee": "04039", "libell_d_acheminement": "CASTELLANE", "ligne_5": "CHASTEUIL", "nom_de_la_commune": "CASTELLANE", "coordonnees_gps": [43.8281340441, 6.48115762991]}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "953cd2d2108b0001ecb448d26a853540aadf83b2", "fields": {"code_postal": "04120", "code_commune_insee": "04039", "libell_d_acheminement": "CASTELLANE", "ligne_5": "ROBION", "nom_de_la_commune": "CASTELLANE", "coordonnees_gps": [43.8281340441, 6.48115762991]}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffbef9b58b901e74fbd66044d2425a9cb78158bd", "fields": {"nom_de_la_commune": "LE CASTELLARD MELAN", "libell_d_acheminement": "LE CASTELLARD MELAN", "code_postal": "04380", "coordonnees_gps": [44.1606174491, 6.13108296701], "code_commune_insee": "04040"}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0518bf49731aea344b9d8ad08833a4f4a1142690", "fields": {"nom_de_la_commune": "LE CASTELLET", "libell_d_acheminement": "LE CASTELLET", "code_postal": "04700", "coordonnees_gps": [43.9432267959, 5.96852873761], "code_commune_insee": "04041"}, "geometry": {"type": "Point", "coordinates": [5.96852873761, 43.9432267959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc3b3a8b98f316deb8d20cbf0b3009a343843899", "fields": {"nom_de_la_commune": "CLAMENSANE", "libell_d_acheminement": "CLAMENSANE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04057"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae62869e0b96b1eb0eb8975db6ec6a63628e6280", "fields": {"nom_de_la_commune": "BEAUVEZER", "libell_d_acheminement": "BEAUVEZER", "code_postal": "04370", "coordonnees_gps": [44.1743215148, 6.62460542768], "code_commune_insee": "04025"}, "geometry": {"type": "Point", "coordinates": [6.62460542768, 44.1743215148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7dec3b5002b3d8d367b9e3dcf0f1366222bb884", "fields": {"nom_de_la_commune": "LE CAIRE", "libell_d_acheminement": "LE CAIRE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04037"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "482352cefe874d469e87572907056ffbd7b61ff2", "fields": {"nom_de_la_commune": "CERESTE", "libell_d_acheminement": "CERESTE", "code_postal": "04280", "coordonnees_gps": [43.8506419191, 5.58975004581], "code_commune_insee": "04045"}, "geometry": {"type": "Point", "coordinates": [5.58975004581, 43.8506419191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c3f4275bcd5807bcfb0fecbaefbc176c7bc0b6a", "fields": {"nom_de_la_commune": "CLARET", "libell_d_acheminement": "CLARET", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "04058"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e21794b4bac58f332f108a3faedeffbe981dc76f", "fields": {"nom_de_la_commune": "GREOUX LES BAINS", "libell_d_acheminement": "GREOUX LES BAINS", "code_postal": "04800", "coordonnees_gps": [43.7622916617, 5.91644609387], "code_commune_insee": "04094"}, "geometry": {"type": "Point", "coordinates": [5.91644609387, 43.7622916617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527c60c94a33a9c9bdd18d61f4ec923507cc0762", "fields": {"nom_de_la_commune": "DIGNE LES BAINS", "libell_d_acheminement": "DIGNE LES BAINS", "code_postal": "04000", "coordonnees_gps": [44.1282802436, 6.25179168531], "code_commune_insee": "04070"}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1027dd6d73633d712310710135f6f64c0346d135", "fields": {"nom_de_la_commune": "LE FUGERET", "libell_d_acheminement": "LE FUGERET", "code_postal": "04240", "coordonnees_gps": [43.977813048, 6.67580684745], "code_commune_insee": "04090"}, "geometry": {"type": "Point", "coordinates": [6.67580684745, 43.977813048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7831cf0142a8cf661915a1b15a5ad4dbc5560b2", "fields": {"nom_de_la_commune": "DEMANDOLX", "libell_d_acheminement": "DEMANDOLX", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04069"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "026d6b76b5c389d2d8d0e775c62a78914ff60dc2", "fields": {"nom_de_la_commune": "ESTOUBLON", "libell_d_acheminement": "ESTOUBLON", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04084"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "132539e65b39bee0a2756e21e712bdb2cad1a83f", "fields": {"nom_de_la_commune": "GANAGOBIE", "libell_d_acheminement": "GANAGOBIE", "code_postal": "04310", "coordonnees_gps": [44.0250031317, 5.92272332026], "code_commune_insee": "04091"}, "geometry": {"type": "Point", "coordinates": [5.92272332026, 44.0250031317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71bb1441dbbc1ee2761649d87e47aaa62b69dd97", "fields": {"nom_de_la_commune": "LA GARDE", "libell_d_acheminement": "LA GARDE", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04092"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e997a36082b245a150aee18fd535e1259a2aa402", "fields": {"nom_de_la_commune": "LA JAVIE", "libell_d_acheminement": "LA JAVIE", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04097"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cfa6c31833377801a55ad621b38773bae6b2c38", "fields": {"nom_de_la_commune": "L ESCALE", "libell_d_acheminement": "L ESCALE", "code_postal": "04160", "coordonnees_gps": [44.0832938785, 6.01511256781], "code_commune_insee": "04079"}, "geometry": {"type": "Point", "coordinates": [6.01511256781, 44.0832938785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9aea6a6ac3b4b4563f9a53f19e667e7405aeb6", "fields": {"nom_de_la_commune": "CUREL", "libell_d_acheminement": "CUREL", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04067"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77ed4dac997168ebb19c9e537c4a23a9f17fc1e4", "fields": {"code_postal": "04000", "code_commune_insee": "04167", "libell_d_acheminement": "LA ROBINE SUR GALABRE", "ligne_5": "TANARON", "nom_de_la_commune": "LA ROBINE SUR GALABRE", "coordonnees_gps": [44.1282802436, 6.25179168531]}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3469a4f51303c88b0f4e3bd98273cb9d5b64244", "fields": {"nom_de_la_commune": "ST LAURENT DU VERDON", "libell_d_acheminement": "ST LAURENT DU VERDON", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04186"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f85976a3311f3f804f64a812147381ab7a9afd7", "fields": {"nom_de_la_commune": "STE CROIX DU VERDON", "libell_d_acheminement": "STE CROIX DU VERDON", "code_postal": "04500", "coordonnees_gps": [43.779502795, 6.08235734615], "code_commune_insee": "04176"}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a21b082665ff1914e4a8b1491f0d11a5cc4114", "fields": {"nom_de_la_commune": "HAUTES DUYES", "libell_d_acheminement": "HAUTES DUYES", "code_postal": "04380", "coordonnees_gps": [44.1606174491, 6.13108296701], "code_commune_insee": "04177"}, "geometry": {"type": "Point", "coordinates": [6.13108296701, 44.1606174491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9abd0fc6636c14077fc922a54c8edaa13c88e3c", "fields": {"nom_de_la_commune": "ST BENOIT", "libell_d_acheminement": "ST BENOIT", "code_postal": "04240", "coordonnees_gps": [43.977813048, 6.67580684745], "code_commune_insee": "04174"}, "geometry": {"type": "Point", "coordinates": [6.67580684745, 43.977813048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdd0f2b32174ad7e1b8a55b6bfae471d8f28bfe6", "fields": {"code_postal": "04150", "code_commune_insee": "04208", "libell_d_acheminement": "SIMIANE LA ROTONDE", "ligne_5": "CARNIOL", "nom_de_la_commune": "SIMIANE LA ROTONDE", "coordonnees_gps": [44.0485937813, 5.61131710182]}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c347e84243f585ca992109b3322fb6cd5e12db32", "fields": {"nom_de_la_commune": "ST VINCENT SUR JABRON", "libell_d_acheminement": "ST VINCENT SUR JABRON", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04199"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a3bca576fe9b467376939288b86325a42400897", "fields": {"nom_de_la_commune": "ST MARTIN DE BROMES", "libell_d_acheminement": "ST MARTIN DE BROMES", "code_postal": "04800", "coordonnees_gps": [43.7622916617, 5.91644609387], "code_commune_insee": "04189"}, "geometry": {"type": "Point", "coordinates": [5.91644609387, 43.7622916617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9106606db2468fd8f0f138143efb4ad04a3b458", "fields": {"nom_de_la_commune": "SEYNE", "libell_d_acheminement": "SEYNE LES ALPES", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04205"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23cda1ac9c64a85ec0bc685f081bcd057e69eb7", "fields": {"nom_de_la_commune": "SOLEILHAS", "libell_d_acheminement": "SOLEILHAS", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04210"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6140d238f6a84a2dbd5cb7cdebdaa9a116b44430", "fields": {"nom_de_la_commune": "TARTONNE", "libell_d_acheminement": "TARTONNE", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04214"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7460626f437df31aee414895d063e5a9ead410ba", "fields": {"nom_de_la_commune": "SELONNET", "libell_d_acheminement": "SELONNET", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04203"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2ce4b7acbcbf69eb9d58d49e0d8a42c97121e6", "fields": {"nom_de_la_commune": "ST MAIME", "libell_d_acheminement": "ST MAIME", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04188"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d79ce20337d7cfc903bff90ca3fae6464375a9", "fields": {"nom_de_la_commune": "SAUMANE", "libell_d_acheminement": "SAUMANE", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04201"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8628b27146ff118feac4491ea9a2c3e4e2525d32", "fields": {"nom_de_la_commune": "SAUSSES", "libell_d_acheminement": "SAUSSES", "code_postal": "04320", "coordonnees_gps": [43.9774312961, 6.76983906157], "code_commune_insee": "04202"}, "geometry": {"type": "Point", "coordinates": [6.76983906157, 43.9774312961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00096cbdb4ff72ad46ff2e1ddafb88e283f87d7", "fields": {"code_postal": "05300", "code_commune_insee": "05053", "libell_d_acheminement": "GARDE COLOMBE", "ligne_5": "EYGUIANS", "nom_de_la_commune": "GARDE COLOMBE", "coordonnees_gps": [44.2953436251, 5.81680688288]}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00648ffac78754d2c9b1a5baaba7453403f35671", "fields": {"code_postal": "05300", "code_commune_insee": "05053", "libell_d_acheminement": "GARDE COLOMBE", "ligne_5": "ST GENIS", "nom_de_la_commune": "GARDE COLOMBE", "coordonnees_gps": [44.2953436251, 5.81680688288]}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a96b9be16b26434c281e99ae88fb1661be1bc9", "fields": {"nom_de_la_commune": "LA FARE EN CHAMPSAUR", "libell_d_acheminement": "LA FARE EN CHAMPSAUR", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05054"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50288e803b38a2186862ecc4d046c997e2a28774", "fields": {"nom_de_la_commune": "BARRET SUR MEOUGE", "libell_d_acheminement": "BARRET SUR MEOUGE", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05014"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a0c924ca135a875fe039e0db1c92e3f1451dc7", "fields": {"nom_de_la_commune": "ESPINASSES", "libell_d_acheminement": "ESPINASSES", "code_postal": "05190", "coordonnees_gps": [44.4605179001, 6.21963036357], "code_commune_insee": "05050"}, "geometry": {"type": "Point", "coordinates": [6.21963036357, 44.4605179001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cba4bc47b21692a8d458329d7ce72b9fd54ceb5", "fields": {"nom_de_la_commune": "LA BEAUME", "libell_d_acheminement": "LA BEAUME", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05019"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78763b49ff3e78e0a70d0497de4ee568c65dcb45", "fields": {"nom_de_la_commune": "LE BERSAC", "libell_d_acheminement": "LE BERSAC", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05021"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e763f317284b830ac41689e8c0f1b1c11e0050ff", "fields": {"nom_de_la_commune": "ESPARRON", "libell_d_acheminement": "ESPARRON", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "05049"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "154c3bd77829ca2ae32269e199914c7b990a5899", "fields": {"nom_de_la_commune": "CEILLAC", "libell_d_acheminement": "CEILLAC", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05026"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eecb3ad9489d53f393cb34d37fd53597b856e4e9", "fields": {"nom_de_la_commune": "L EPINE", "libell_d_acheminement": "L EPINE", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05048"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48f9480b98e5ee192234ecb580f864a444d2530", "fields": {"nom_de_la_commune": "ASPRES SUR BUECH", "libell_d_acheminement": "ASPRES SUR BUECH", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05010"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d51b0ea6415872a54acceb3ef4929c2d9cb8b103", "fields": {"nom_de_la_commune": "ASPRES LES CORPS", "libell_d_acheminement": "ASPRES LES CORPS", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05009"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f016206254d7262411401c5f38e37f8c574e5f7e", "fields": {"nom_de_la_commune": "THORAME BASSE", "libell_d_acheminement": "THORAME BASSE", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04218"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2fbd6d31c463314cc735dda980d60fdb1022dab", "fields": {"nom_de_la_commune": "LES THUILES", "libell_d_acheminement": "LES THUILES", "code_postal": "04400", "coordonnees_gps": [44.3554624604, 6.65679459978], "code_commune_insee": "04220"}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2469299fe93f88dd569d6d2317207760fb9d8e1", "fields": {"nom_de_la_commune": "TURRIERS", "libell_d_acheminement": "TURRIERS", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04222"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3bb4833aed7e4cea7a049db60937dc37314e3f7", "fields": {"nom_de_la_commune": "VAUMEILH", "libell_d_acheminement": "VAUMEILH", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04233"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f686f9e19c997c965553e0d0452bc9bb42fc4e83", "fields": {"nom_de_la_commune": "VALBELLE", "libell_d_acheminement": "VALBELLE", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04229"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c56bfa1b095f8cd0e4ee72ee3e804f4c77ef8b", "fields": {"nom_de_la_commune": "VERGONS", "libell_d_acheminement": "VERGONS", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04236"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4477cf93066eee34cb0c9f939c1440f78325b61", "fields": {"nom_de_la_commune": "ARVIEUX", "libell_d_acheminement": "ARVIEUX", "code_postal": "05350", "coordonnees_gps": [44.7398415746, 6.81322835157], "code_commune_insee": "05007"}, "geometry": {"type": "Point", "coordinates": [6.81322835157, 44.7398415746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6287ecf14ea2b8e8c47e481134db6f9704792c78", "fields": {"nom_de_la_commune": "VOLX", "libell_d_acheminement": "VOLX", "code_postal": "04130", "coordonnees_gps": [43.8709997463, 5.83152909097], "code_commune_insee": "04245"}, "geometry": {"type": "Point", "coordinates": [5.83152909097, 43.8709997463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d70a4b4267d7e4fd9f2cd2b6153775f3a6b2912", "fields": {"nom_de_la_commune": "ST MAURICE EN VALGODEMARD", "libell_d_acheminement": "ST MAURICE EN VALGODEMARD", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05152"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "591e799aab5ade55cef733997bd9c38da80f24eb", "fields": {"nom_de_la_commune": "ST JULIEN EN CHAMPSAUR", "libell_d_acheminement": "ST JULIEN EN CHAMPSAUR", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05147"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f8b9269e3903d54594df1227d809862a816e39", "fields": {"nom_de_la_commune": "ST ANDRE DE ROSANS", "libell_d_acheminement": "ST ANDRE DE ROSANS", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05129"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1bc667c01247327bbc98a60bb185b2e7592a47", "fields": {"nom_de_la_commune": "ST CHAFFREY", "libell_d_acheminement": "ST CHAFFREY", "code_postal": "05330", "coordonnees_gps": [44.9346582411, 6.6007961866], "code_commune_insee": "05133"}, "geometry": {"type": "Point", "coordinates": [6.6007961866, 44.9346582411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd5f54afac022d77913ef0ec9b0bc4ecf7b8d25", "fields": {"nom_de_la_commune": "LE DEVOLUY", "libell_d_acheminement": "LE DEVOLUY", "code_postal": "05250", "coordonnees_gps": [44.6849532625, 5.89081686523], "code_commune_insee": "05139"}, "geometry": {"type": "Point", "coordinates": [5.89081686523, 44.6849532625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "640343ff7ea486ec3ef04c34066436ce84ed3d95", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05150"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05ac21a5dad3995c2298de85495f7fb34efe858c", "fields": {"code_postal": "06750", "code_commune_insee": "06003", "libell_d_acheminement": "ANDON", "ligne_5": "THORENC", "nom_de_la_commune": "ANDON", "coordonnees_gps": [43.7770802464, 6.7641665855]}, "geometry": {"type": "Point", "coordinates": [6.7641665855, 43.7770802464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0dd85dc288a3fb98ff13842dff97bc59f381c3", "fields": {"nom_de_la_commune": "LE BAR SUR LOUP", "libell_d_acheminement": "LE BAR SUR LOUP", "code_postal": "06620", "coordonnees_gps": [43.7673356275, 6.94848216496], "code_commune_insee": "06010"}, "geometry": {"type": "Point", "coordinates": [6.94848216496, 43.7673356275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "752dcbee9e97a00bd54c644a79f90705d2868623", "fields": {"nom_de_la_commune": "BREIL SUR ROYA", "libell_d_acheminement": "BREIL SUR ROYA", "code_postal": "06540", "coordonnees_gps": [43.9800223211, 7.52586230957], "code_commune_insee": "06023"}, "geometry": {"type": "Point", "coordinates": [7.52586230957, 43.9800223211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9adde4efc532b4310c87f89c09410f2f7281ec8", "fields": {"nom_de_la_commune": "CAGNES SUR MER", "libell_d_acheminement": "CAGNES SUR MER", "code_postal": "06800", "coordonnees_gps": [43.6717115004, 7.15221251149], "code_commune_insee": "06027"}, "geometry": {"type": "Point", "coordinates": [7.15221251149, 43.6717115004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2569c3359bf4618b286ec9cfe846cc194ccde74", "fields": {"nom_de_la_commune": "ASPREMONT", "libell_d_acheminement": "ASPREMONT", "code_postal": "06790", "coordonnees_gps": [43.7755045851, 7.24457971987], "code_commune_insee": "06006"}, "geometry": {"type": "Point", "coordinates": [7.24457971987, 43.7755045851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "451d2c33c538fa704cfa156924bc24e040549e24", "fields": {"nom_de_la_commune": "AIGLUN", "libell_d_acheminement": "AIGLUN", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06001"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebdf6b8bce890bfa81343672669e01c64372c398", "fields": {"nom_de_la_commune": "AMIRAT", "libell_d_acheminement": "AMIRAT", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06002"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb4fb32ab12e1760a3682e068a81cd02df6846e2", "fields": {"nom_de_la_commune": "CAILLE", "libell_d_acheminement": "CAILLE", "code_postal": "06750", "coordonnees_gps": [43.7770802464, 6.7641665855], "code_commune_insee": "06028"}, "geometry": {"type": "Point", "coordinates": [6.7641665855, 43.7770802464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "777a0f74c915ce493fbab90354bf8e218f3310c7", "fields": {"nom_de_la_commune": "BEUIL", "libell_d_acheminement": "BEUIL", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06016"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88b64979723251a4fb280d529037921a01ae0ab3", "fields": {"code_postal": "06130", "code_commune_insee": "06069", "libell_d_acheminement": "GRASSE", "ligne_5": "LE PLAN DE GRASSE", "nom_de_la_commune": "GRASSE", "coordonnees_gps": [43.6557670284, 6.93183304936]}, "geometry": {"type": "Point", "coordinates": [6.93183304936, 43.6557670284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796fe63f51901c08303ed884c2e9545e76f48d6a", "fields": {"code_postal": "06520", "code_commune_insee": "06069", "libell_d_acheminement": "GRASSE", "ligne_5": "MAGAGNOSC", "nom_de_la_commune": "GRASSE", "coordonnees_gps": [43.6557670284, 6.93183304936]}, "geometry": {"type": "Point", "coordinates": [6.93183304936, 43.6557670284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18507e3f334669956124a97867fc5f35fac3aff3", "fields": {"nom_de_la_commune": "COLLONGUES", "libell_d_acheminement": "COLLONGUES", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06045"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "097551cd0ae9722e9880089dc6e211a92c058469", "fields": {"nom_de_la_commune": "CONSEGUDES", "libell_d_acheminement": "CONSEGUDES", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06047"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb8603b45a8b632c5e09d2f67b788d13e75d1ebe", "fields": {"nom_de_la_commune": "CAP D AIL", "libell_d_acheminement": "CAP D AIL", "code_postal": "06320", "coordonnees_gps": [43.7404520537, 7.39846914834], "code_commune_insee": "06032"}, "geometry": {"type": "Point", "coordinates": [7.39846914834, 43.7404520537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa7b788007fa36db9e2eff97e9da56e7036abcae", "fields": {"nom_de_la_commune": "COLOMARS", "libell_d_acheminement": "COLOMARS", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06046"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed47187a693506fffc6f72b71bbdcff0f5d6ddfe", "fields": {"nom_de_la_commune": "CAUSSOLS", "libell_d_acheminement": "CAUSSOLS", "code_postal": "06460", "coordonnees_gps": [43.715574812, 6.8479951556], "code_commune_insee": "06037"}, "geometry": {"type": "Point", "coordinates": [6.8479951556, 43.715574812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd21365e2d333866917bfbfc04d17434beec9019", "fields": {"nom_de_la_commune": "COURMES", "libell_d_acheminement": "COURMES", "code_postal": "06620", "coordonnees_gps": [43.7673356275, 6.94848216496], "code_commune_insee": "06049"}, "geometry": {"type": "Point", "coordinates": [6.94848216496, 43.7673356275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328f8d8bcc8f22dd690aedb6b6ef09019a96895b", "fields": {"nom_de_la_commune": "DURANUS", "libell_d_acheminement": "DURANUS", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06055"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "075d6482e5907be301c7ae8e0acd942687b4eabe", "fields": {"nom_de_la_commune": "FONTAN", "libell_d_acheminement": "FONTAN", "code_postal": "06540", "coordonnees_gps": [43.9800223211, 7.52586230957], "code_commune_insee": "06062"}, "geometry": {"type": "Point", "coordinates": [7.52586230957, 43.9800223211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb46a48f28717ad14fdc274c8a2a62051874e9c9", "fields": {"nom_de_la_commune": "ST ETIENNE DE FONTBELLON", "libell_d_acheminement": "ST ETIENNE DE FONTBELLON", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07231"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fddf7be53b053d3280e8e4713a6406d66fef6a9", "fields": {"nom_de_la_commune": "ST ANDRE DE CRUZIERES", "libell_d_acheminement": "ST ANDRE DE CRUZIERES", "code_postal": "07460", "coordonnees_gps": [44.343480855, 4.20658690309], "code_commune_insee": "07211"}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc151b21505271722f641827e8b1a2108ea391f", "fields": {"nom_de_la_commune": "ST ALBAN EN MONTAGNE", "libell_d_acheminement": "ST ALBAN EN MONTAGNE", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07206"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97230ef2a9cc52642a03d85dc8ca994559b6e854", "fields": {"nom_de_la_commune": "ST CIRGUES DE PRADES", "libell_d_acheminement": "ST CIRGUES DE PRADES", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07223"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "326f261f8626495da219ad7320297c633731cc3c", "fields": {"nom_de_la_commune": "ROCHECOLOMBE", "libell_d_acheminement": "ROCHECOLOMBE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07190"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f61f405b90259792876ea1f78123cd17618855", "fields": {"nom_de_la_commune": "LA ROCHETTE", "libell_d_acheminement": "LA ROCHETTE", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07195"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5509102227b714efdac72212be5a387b619659", "fields": {"nom_de_la_commune": "ST DESIRAT", "libell_d_acheminement": "ST DESIRAT", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07228"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe39c524edc558292ef809f3caec807d3c18ee3c", "fields": {"nom_de_la_commune": "MONPARDIAC", "libell_d_acheminement": "MONPARDIAC", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32275"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ab5d78925df478af7e093285771003bf6146b9", "fields": {"nom_de_la_commune": "MONTEGUT ARROS", "libell_d_acheminement": "MONTEGUT ARROS", "code_postal": "32730", "coordonnees_gps": [43.4054676887, 0.198171265768], "code_commune_insee": "32283"}, "geometry": {"type": "Point", "coordinates": [0.198171265768, 43.4054676887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4fbf4bfaaf7dc046775707bbe78db8a420fca0", "fields": {"nom_de_la_commune": "MONTEGUT SAVES", "libell_d_acheminement": "MONTEGUT SAVES", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32284"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c567530bd5e9f5394f2d777f1be6f526138bdeb", "fields": {"nom_de_la_commune": "MONTESQUIOU", "libell_d_acheminement": "MONTESQUIOU", "code_postal": "32320", "coordonnees_gps": [43.5972833826, 0.291650072137], "code_commune_insee": "32285"}, "geometry": {"type": "Point", "coordinates": [0.291650072137, 43.5972833826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed5189c9683d715f14e81cf44436407af0a8db5", "fields": {"nom_de_la_commune": "MONTESTRUC SUR GERS", "libell_d_acheminement": "MONTESTRUC SUR GERS", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32286"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73fd5150210fc79899978c045d735eef3212943", "fields": {"nom_de_la_commune": "MONTPEZAT", "libell_d_acheminement": "MONTPEZAT", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32289"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45405e25cd3b9b914fdff59e0bd1d7bfbacecc53", "fields": {"nom_de_la_commune": "MONTREAL", "libell_d_acheminement": "MONTREAL DU GERS", "code_postal": "32250", "coordonnees_gps": [43.956623436, 0.171871761576], "code_commune_insee": "32290"}, "geometry": {"type": "Point", "coordinates": [0.171871761576, 43.956623436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc4d644cea2fbe486117181cd0643c23e4254195", "fields": {"nom_de_la_commune": "NIZAS", "libell_d_acheminement": "NIZAS", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32295"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94ca05e037b0b94a5980f497c0891efa8aa4b3d", "fields": {"nom_de_la_commune": "PAVIE", "libell_d_acheminement": "PAVIE", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32307"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3786154e73f016ae8ccfc718ff4a9b4a9518bdf6", "fields": {"nom_de_la_commune": "PELLEFIGUE", "libell_d_acheminement": "PELLEFIGUE", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32309"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9e9b834aeab3963fa7713a23c40500759f0c5c9", "fields": {"nom_de_la_commune": "PLIEUX", "libell_d_acheminement": "PLIEUX", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32320"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e16faadc08a46bd87eabde924951fc74dd274f1a", "fields": {"nom_de_la_commune": "POLASTRON", "libell_d_acheminement": "POLASTRON", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32321"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9edd0b1d61eec13fb182735eef597e8b124570cf", "fields": {"nom_de_la_commune": "LA ROMIEU", "libell_d_acheminement": "LA ROMIEU", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32345"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "055528815563b09be5367fac8c582cfb63cf78ea", "fields": {"nom_de_la_commune": "ROQUEBRUNE", "libell_d_acheminement": "ROQUEBRUNE", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32346"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f767f78899b40f1abdb27319703533a9f3821e", "fields": {"nom_de_la_commune": "ROQUELAURE ST AUBIN", "libell_d_acheminement": "ROQUELAURE ST AUBIN", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32349"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693f4c636cd70dc391e02a98f518bcc9036a1876", "fields": {"nom_de_la_commune": "ROQUES", "libell_d_acheminement": "ROQUES", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32351"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58156d1e3410d3c5fd61fe78fe499d95d53a8aca", "fields": {"nom_de_la_commune": "SABAZAN", "libell_d_acheminement": "SABAZAN", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32354"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f9a4e49016e01afb8b4afb39c64e518610bce9", "fields": {"nom_de_la_commune": "STE AURENCE CAZAUX", "libell_d_acheminement": "STE AURENCE CAZAUX", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32363"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adcf059e0b672da3dcd6ed7a9d0cf7e0b2d1da7", "fields": {"nom_de_la_commune": "ST BLANCARD", "libell_d_acheminement": "ST BLANCARD", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32365"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "829885de2bb6234282b9e8764a3a092c9e8f9f75", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32377"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12dc9c70b7cc25ae7ff6d704c1e69ade292ab143", "fields": {"nom_de_la_commune": "ST GERMIER", "libell_d_acheminement": "ST GERMIER", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32379"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b026dc974618a4459782e24ac9e15cf2d1c835", "fields": {"nom_de_la_commune": "ST MEZARD", "libell_d_acheminement": "ST MEZARD", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32396"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9854fb7ab574ead0f2313b24686ecb1d0518449a", "fields": {"nom_de_la_commune": "ST MONT", "libell_d_acheminement": "ST MONT", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32398"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01b0d3d2d935112a9d436a83ad41c089c90dcaba", "fields": {"nom_de_la_commune": "ST PIERRE D AUBEZIES", "libell_d_acheminement": "ST PIERRE D AUBEZIES", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32403"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afa6b3a92aef20be04fc47531b7ecc6c25793231", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32405"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff7a2731ae0f5e4ec98576382ebdf8bf53b9ec4", "fields": {"nom_de_la_commune": "SARAMON", "libell_d_acheminement": "SARAMON", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32412"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39a1cc35dfbfeb612c131f705b5d82a034c65e88", "fields": {"nom_de_la_commune": "SAUVETERRE", "libell_d_acheminement": "SAUVETERRE", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32418"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce87615a2efda62f32ef0dd434bddf50e6b3bb31", "fields": {"nom_de_la_commune": "SEGOUFIELLE", "libell_d_acheminement": "SEGOUFIELLE", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32425"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fa206ed62070cad1f19df28340b6dd8784e04dc", "fields": {"nom_de_la_commune": "SEREMPUY", "libell_d_acheminement": "SEREMPUY", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32431"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1820ec24919683ac5a35c34c569dd0eb49a4d3b4", "fields": {"nom_de_la_commune": "TACHOIRES", "libell_d_acheminement": "TACHOIRES", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32438"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1e334442bd54bfe78460251b76c6a5133575ddd", "fields": {"nom_de_la_commune": "TERRAUBE", "libell_d_acheminement": "TERRAUBE", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32442"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4fcc23ff7f6095b745f4f1aaea50698b4134b05", "fields": {"nom_de_la_commune": "TOUGET", "libell_d_acheminement": "TOUGET", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32448"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d4236481b48ef71ba688e6e0f53652025b686e3", "fields": {"nom_de_la_commune": "TRONCENS", "libell_d_acheminement": "TRONCENS", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32455"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91646ea72caf090e3396c70514be16f18ab067d1", "fields": {"nom_de_la_commune": "VILLEFRANCHE", "libell_d_acheminement": "VILLEFRANCHE", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32465"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c808c347a4c60bd4c0142ba62cfa41d5d17b101f", "fields": {"nom_de_la_commune": "VIOZAN", "libell_d_acheminement": "VIOZAN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32466"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc23939c68912e193ceced091d74148a2a4844ee", "fields": {"nom_de_la_commune": "AMBARES ET LAGRAVE", "libell_d_acheminement": "AMBARES ET LAGRAVE", "code_postal": "33440", "coordonnees_gps": [44.9552105783, -0.50282224185], "code_commune_insee": "33003"}, "geometry": {"type": "Point", "coordinates": [-0.50282224185, 44.9552105783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5089d66dfc58a5cc1cd031b82427a1be713c61c", "fields": {"nom_de_la_commune": "AMBES", "libell_d_acheminement": "AMBES", "code_postal": "33810", "coordonnees_gps": [45.0120006102, -0.548920469716], "code_commune_insee": "33004"}, "geometry": {"type": "Point", "coordinates": [-0.548920469716, 45.0120006102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fb678e0aad2541e03a7d1563eeebb4051dab70", "fields": {"nom_de_la_commune": "ARBIS", "libell_d_acheminement": "ARBIS", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33008"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac9cc2d3deb03bfc9d755b71525d94396f99fd7", "fields": {"nom_de_la_commune": "ARCINS", "libell_d_acheminement": "ARCINS", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33010"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b50c03e0ddedb62e0a5fef7fa03097d2d3bde6b9", "fields": {"nom_de_la_commune": "ARTIGUES PRES BORDEAUX", "libell_d_acheminement": "ARTIGUES PRES BORDEAUX", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33013"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90337b80dd60af8f08050e0a40c9f821114c1188", "fields": {"nom_de_la_commune": "AUBIAC", "libell_d_acheminement": "AUBIAC", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33017"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49a60a6f87184519a3ef7a41ab064c7831e0365", "fields": {"nom_de_la_commune": "AUDENGE", "libell_d_acheminement": "AUDENGE", "code_postal": "33980", "coordonnees_gps": [44.7141991312, -0.944070323515], "code_commune_insee": "33019"}, "geometry": {"type": "Point", "coordinates": [-0.944070323515, 44.7141991312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96adf7588a0a4f930422094bacec066175b30e10", "fields": {"nom_de_la_commune": "AURIOLLES", "libell_d_acheminement": "AURIOLLES", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33020"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379d39a913ec4770a13ce3d27b3ad05f6357345a", "fields": {"nom_de_la_commune": "AUROS", "libell_d_acheminement": "AUROS", "code_postal": "33124", "coordonnees_gps": [44.4949299711, -0.111989518099], "code_commune_insee": "33021"}, "geometry": {"type": "Point", "coordinates": [-0.111989518099, 44.4949299711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f65e38ce3e31d3dc9df6b3d72bd443d22aa38a14", "fields": {"nom_de_la_commune": "BARON", "libell_d_acheminement": "BARON", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33028"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9f08ebac24c04717ebe6c79b141d330d690855", "fields": {"nom_de_la_commune": "BASSENS", "libell_d_acheminement": "BASSENS", "code_postal": "33530", "coordonnees_gps": [44.9079628339, -0.525179074019], "code_commune_insee": "33032"}, "geometry": {"type": "Point", "coordinates": [-0.525179074019, 44.9079628339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3bf7b027e8ab2b8868e8d8802f28e57d53c86eb", "fields": {"nom_de_la_commune": "BAYAS", "libell_d_acheminement": "BAYAS", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33034"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10f13957bbeb78fea02c50656acbdf02982da3bc", "fields": {"nom_de_la_commune": "BELIN BELIET", "libell_d_acheminement": "BELIN BELIET", "code_postal": "33830", "coordonnees_gps": [44.48117634, -0.823096035056], "code_commune_insee": "33042"}, "geometry": {"type": "Point", "coordinates": [-0.823096035056, 44.48117634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e650d9f5ac5e49777dba7a5e8f0561989dc3664", "fields": {"nom_de_la_commune": "BELLEBAT", "libell_d_acheminement": "BELLEBAT", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33043"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9e57972d04e2fe1c396eb68c35516e6e7e06e15", "fields": {"nom_de_la_commune": "BELLEFOND", "libell_d_acheminement": "BELLEFOND", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33044"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc9dd34d7c613a09e3d4aa08e0fc6a34e1d2e1b4", "fields": {"nom_de_la_commune": "LES BILLAUX", "libell_d_acheminement": "LES BILLAUX", "code_postal": "33500", "coordonnees_gps": [44.9225723992, -0.234534859794], "code_commune_insee": "33052"}, "geometry": {"type": "Point", "coordinates": [-0.234534859794, 44.9225723992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cae73f909dda34783d53a6f3e87ff524b5bc0ad", "fields": {"nom_de_la_commune": "BORDEAUX", "libell_d_acheminement": "BORDEAUX", "code_postal": "33800", "coordonnees_gps": [44.8579384389, -0.573595011059], "code_commune_insee": "33063"}, "geometry": {"type": "Point", "coordinates": [-0.573595011059, 44.8579384389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f356cea64f4454d78b4ce63e8f23e42d826d110", "fields": {"nom_de_la_commune": "LE BOUSCAT", "libell_d_acheminement": "LE BOUSCAT", "code_postal": "33110", "coordonnees_gps": [44.8659375711, -0.603044809188], "code_commune_insee": "33069"}, "geometry": {"type": "Point", "coordinates": [-0.603044809188, 44.8659375711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e194a52f577e9453a0a03d17397d95d3e723d3", "fields": {"nom_de_la_commune": "CAMBES", "libell_d_acheminement": "CAMBES", "code_postal": "33880", "coordonnees_gps": [44.7419112231, -0.437846181859], "code_commune_insee": "33084"}, "geometry": {"type": "Point", "coordinates": [-0.437846181859, 44.7419112231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a1dec1e2326fafa758bbdc01f9e90a545f0844", "fields": {"nom_de_la_commune": "FRAISSE DES CORBIERES", "libell_d_acheminement": "FRAISSE DES CORBIERES", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11157"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ce52e4cac87690a6c17350fecb11928eeea596d", "fields": {"nom_de_la_commune": "LABASTIDE D ANJOU", "libell_d_acheminement": "LABASTIDE D ANJOU", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11178"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b6fd569983633dcd0d82cec4b8ed76c632fc04", "fields": {"nom_de_la_commune": "FONTIERS CABARDES", "libell_d_acheminement": "FONTIERS CABARDES", "code_postal": "11390", "coordonnees_gps": [43.3925599417, 2.2792029886], "code_commune_insee": "11150"}, "geometry": {"type": "Point", "coordinates": [2.2792029886, 43.3925599417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7713f5a4d341bc3b4017cbeb2f2b40352fb1ac51", "fields": {"nom_de_la_commune": "FOURNES CABARDES", "libell_d_acheminement": "FOURNES CABARDES", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11154"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e09048ecbc1e674a1f48e557c3e207e1fc6f33cb", "fields": {"nom_de_la_commune": "LABASTIDE EN VAL", "libell_d_acheminement": "LABASTIDE EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11179"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aac24d827edcca7e65240c335a78ea620a7ba39", "fields": {"nom_de_la_commune": "GAJA LA SELVE", "libell_d_acheminement": "GAJA LA SELVE", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11159"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "126c42df21634bc38dd0a74092da1e34a8e40de9", "fields": {"nom_de_la_commune": "GOURVIEILLE", "libell_d_acheminement": "GOURVIEILLE", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11166"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a67ceec24353960eb4fefe9546863e4f8db690", "fields": {"nom_de_la_commune": "LASTOURS", "libell_d_acheminement": "LASTOURS", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11194"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "873f3bbfd57af103bb4a16613083ff2ea5613f1e", "fields": {"nom_de_la_commune": "LA PALME", "libell_d_acheminement": "LA PALME", "code_postal": "11480", "coordonnees_gps": [42.9654203801, 2.99489456678], "code_commune_insee": "11188"}, "geometry": {"type": "Point", "coordinates": [2.99489456678, 42.9654203801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df8ee4c309fd0161ffc717ffb18ddfa771103561", "fields": {"nom_de_la_commune": "GRANES", "libell_d_acheminement": "GRANES", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11168"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd510fd44f6ed3565e2c684d625459eeb04a2a4e", "fields": {"nom_de_la_commune": "CONQUES SUR ORBIEL", "libell_d_acheminement": "CONQUES SUR ORBIEL", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11099"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa15da64ba164e45674a40eba54eafb19c6a6f2d", "fields": {"nom_de_la_commune": "ARGENS MINERVOIS", "libell_d_acheminement": "ARGENS MINERVOIS", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11013"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef0dcafb59140bf573034683025629505ced34e", "fields": {"nom_de_la_commune": "CASTELNAU D AUDE", "libell_d_acheminement": "CASTELNAU D AUDE", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11077"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d990c6eb4e72d2b166d3c984e080514f95ea997", "fields": {"nom_de_la_commune": "CAMPLONG D AUDE", "libell_d_acheminement": "CAMPLONG D AUDE", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11064"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f1d5198dfced4f927cc5bcb5e08b98c5459e56c", "fields": {"nom_de_la_commune": "LA CASSAIGNE", "libell_d_acheminement": "LA CASSAIGNE", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11072"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "812ad410bfb3f6a839b6f1545d9d3f5c8710d5af", "fields": {"nom_de_la_commune": "CARCASSONNE", "libell_d_acheminement": "CARCASSONNE", "code_postal": "11000", "coordonnees_gps": [43.2094356992, 2.34683719247], "code_commune_insee": "11069"}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36ad09111f393b9ccb11e1433ad862790d02b0a9", "fields": {"nom_de_la_commune": "CAUDEBRONDE", "libell_d_acheminement": "CAUDEBRONDE", "code_postal": "11390", "coordonnees_gps": [43.3925599417, 2.2792029886], "code_commune_insee": "11079"}, "geometry": {"type": "Point", "coordinates": [2.2792029886, 43.3925599417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de360fd03ac51f23f261e7f0b1f6fb3fbb03e787", "fields": {"nom_de_la_commune": "COUSTOUGE", "libell_d_acheminement": "COUSTOUGE", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11110"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e32326a1b274cc57e6e3552d25110754a53bb06", "fields": {"nom_de_la_commune": "LE CLAT", "libell_d_acheminement": "LE CLAT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11093"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e696ea1302cf4331cad3b1a48d34a4d4e3d34c8d", "fields": {"nom_de_la_commune": "CAMURAC", "libell_d_acheminement": "CAMURAC", "code_postal": "11340", "coordonnees_gps": [42.8370630944, 1.98179772961], "code_commune_insee": "11066"}, "geometry": {"type": "Point", "coordinates": [1.98179772961, 42.8370630944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea6f501997f86c74d5d89e2ef899147c15be51ce", "fields": {"nom_de_la_commune": "EMBRES ET CASTELMAURE", "libell_d_acheminement": "EMBRES ET CASTELMAURE", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11125"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86e6482a8add4800784686a69767d7665bee3f39", "fields": {"nom_de_la_commune": "DURBAN CORBIERES", "libell_d_acheminement": "DURBAN CORBIERES", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11124"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f1d774ec0e174098a89fcd7bf27223f69e7f4d", "fields": {"nom_de_la_commune": "CUXAC D AUDE", "libell_d_acheminement": "CUXAC D AUDE", "code_postal": "11590", "coordonnees_gps": [43.2767571577, 2.97534639195], "code_commune_insee": "11116"}, "geometry": {"type": "Point", "coordinates": [2.97534639195, 43.2767571577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f7ce4695f58b4c28407447001053b3d7829612", "fields": {"nom_de_la_commune": "ESCOULOUBRE", "libell_d_acheminement": "ESCOULOUBRE", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11127"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479d8576edbcae47342dd2f2f76b0fdb75d12221", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY D AUDE", "code_postal": "11560", "coordonnees_gps": [43.2147091577, 3.17586928997], "code_commune_insee": "11145"}, "geometry": {"type": "Point", "coordinates": [3.17586928997, 43.2147091577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70dca613353c3c396056ebe5b9a2e397c9e70756", "fields": {"nom_de_la_commune": "FANJEAUX", "libell_d_acheminement": "FANJEAUX", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11136"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9560507638e329ac77711971929ef40a41339622", "fields": {"nom_de_la_commune": "FABREZAN", "libell_d_acheminement": "FABREZAN", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11132"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1b03761a2e2115fd7b3702374117610cf49f1d", "fields": {"nom_de_la_commune": "DOUZENS", "libell_d_acheminement": "DOUZENS", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11122"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2455412c040c8a814ea28511d7a7f20e6f14924", "fields": {"nom_de_la_commune": "ESCALES", "libell_d_acheminement": "ESCALES", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11126"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a826c8d6399ea4a79b68f10a5ba9765b50972f", "fields": {"nom_de_la_commune": "CUMIES", "libell_d_acheminement": "CUMIES", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11114"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd91e330db5d553708c2aa13031c6d1bf25d732a", "fields": {"nom_de_la_commune": "VERNONVILLIERS", "libell_d_acheminement": "VERNONVILLIERS", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10403"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d883953e31559833f25a77f08de4374bf42498", "fields": {"nom_de_la_commune": "VILLEMEREUIL", "libell_d_acheminement": "VILLEMEREUIL", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10416"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d473f7d918fc02679dae8926e26a9c6e89fff91", "fields": {"nom_de_la_commune": "VAUPOISSON", "libell_d_acheminement": "VAUPOISSON", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10400"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c843ab4786bca72386d02a12cfa9bbb152fbd39d", "fields": {"nom_de_la_commune": "THIEFFRAIN", "libell_d_acheminement": "THIEFFRAIN", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10376"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29631fdbe6861b102f3445a5542430053c663d96", "fields": {"nom_de_la_commune": "SAVIERES", "libell_d_acheminement": "SAVIERES", "code_postal": "10600", "coordonnees_gps": [48.3767482025, 3.98875459714], "code_commune_insee": "10368"}, "geometry": {"type": "Point", "coordinates": [3.98875459714, 48.3767482025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f34cd76f29ba725ed6db974dc3aaa5a912d070", "fields": {"nom_de_la_commune": "ST USAGE", "libell_d_acheminement": "ST USAGE", "code_postal": "10360", "coordonnees_gps": [48.0604806131, 4.60332287539], "code_commune_insee": "10364"}, "geometry": {"type": "Point", "coordinates": [4.60332287539, 48.0604806131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1037a7064e87151e0836b5bd8d8b93d4ba65fc", "fields": {"nom_de_la_commune": "TRANNES", "libell_d_acheminement": "TRANNES", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10384"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7885303d43933da79674a98fc79095f0a259c17b", "fields": {"nom_de_la_commune": "VAILLY", "libell_d_acheminement": "VAILLY", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10391"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fb44188c52093a00c77d618892f6fa5c62deaf2", "fields": {"nom_de_la_commune": "VANLAY", "libell_d_acheminement": "VANLAY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10395"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3bb2355cdd1fcac41037731ea3fbd4cae825dae", "fields": {"nom_de_la_commune": "THIL", "libell_d_acheminement": "THIL", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10377"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f86cf573d9aa28eb3cc6ef3a9633af9eb9286326", "fields": {"nom_de_la_commune": "BUGARACH", "libell_d_acheminement": "BUGARACH", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11055"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "978853ea95986588e18346cd255a88840fbba733", "fields": {"nom_de_la_commune": "BERRIAC", "libell_d_acheminement": "BERRIAC", "code_postal": "11000", "coordonnees_gps": [43.2094356992, 2.34683719247], "code_commune_insee": "11037"}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "412dc80f4e39a98b9c1a7c6af35fcbdf73bdda8c", "fields": {"nom_de_la_commune": "CAHUZAC", "libell_d_acheminement": "CAHUZAC", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11057"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c92b8c122bde41462976dc85f82df75e144d5448", "fields": {"nom_de_la_commune": "ARQUES", "libell_d_acheminement": "ARQUES", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11015"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d01533a5f748df16b735422c301188d95aa67894", "fields": {"nom_de_la_commune": "BELVIS", "libell_d_acheminement": "BELVIS", "code_postal": "11340", "coordonnees_gps": [42.8370630944, 1.98179772961], "code_commune_insee": "11036"}, "geometry": {"type": "Point", "coordinates": [1.98179772961, 42.8370630944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1391ca9770edf6f8be5bc47ddfe633bef11d74f0", "fields": {"nom_de_la_commune": "ARZENS", "libell_d_acheminement": "ARZENS", "code_postal": "11290", "coordonnees_gps": [43.1943746552, 2.18782678941], "code_commune_insee": "11018"}, "geometry": {"type": "Point", "coordinates": [2.18782678941, 43.1943746552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ffb2315fe37fa66e7c1d4e476eeaedb54490e3", "fields": {"nom_de_la_commune": "ALLAN", "libell_d_acheminement": "ALLAN", "code_postal": "26780", "coordonnees_gps": [44.4972299108, 4.7672638827], "code_commune_insee": "26005"}, "geometry": {"type": "Point", "coordinates": [4.7672638827, 44.4972299108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7fa655e0177cd779cec9e19e342f1ad02ed9be3", "fields": {"nom_de_la_commune": "ARPAVON", "libell_d_acheminement": "ARPAVON", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26013"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfde0be1a545030d1273895a346701d792feac23", "fields": {"nom_de_la_commune": "BARCELONNE", "libell_d_acheminement": "BARCELONNE", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26024"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d88c4666d5289e4ba699522b870d3e71b808ad", "fields": {"nom_de_la_commune": "BARNAVE", "libell_d_acheminement": "BARNAVE", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26025"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdf52832f5d58499f11389c96d859467d9d3bb0f", "fields": {"nom_de_la_commune": "BARRET DE LIOURE", "libell_d_acheminement": "BARRET DE LIOURE", "code_postal": "26570", "coordonnees_gps": [44.1743354505, 5.46650063945], "code_commune_insee": "26026"}, "geometry": {"type": "Point", "coordinates": [5.46650063945, 44.1743354505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c6cfd3a68b3bae44f91306045fc8f3f77eeda88", "fields": {"nom_de_la_commune": "BARSAC", "libell_d_acheminement": "BARSAC", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26027"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8099a3a8c7cee7171f112dd301e0e106fe877bbc", "fields": {"nom_de_la_commune": "LA BAUME CORNILLANE", "libell_d_acheminement": "LA BAUME CORNILLANE", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26032"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07ffbe7d092989d22d4e1f79c6d68549d7610310", "fields": {"nom_de_la_commune": "BEAUFORT SUR GERVANNE", "libell_d_acheminement": "BEAUFORT SUR GERVANNE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26035"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e38889c8a1f270aed90eee37d60ef67316cbdb", "fields": {"nom_de_la_commune": "BEAUREGARD BARET", "libell_d_acheminement": "BEAUREGARD BARET", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26039"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7adb3043e7120d7f329ce12e1ea1f5dbbada669", "fields": {"nom_de_la_commune": "BEAURIERES", "libell_d_acheminement": "BEAURIERES", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26040"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e3e8645ca27ab21aa357f834fb7d4a64489f2e", "fields": {"nom_de_la_commune": "BEAUSEMBLANT", "libell_d_acheminement": "BEAUSEMBLANT", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26041"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0829a6b7ff0d56f09af73887d77504f9d7231c2e", "fields": {"nom_de_la_commune": "BOURG LES VALENCE", "libell_d_acheminement": "BOURG LES VALENCE", "code_postal": "26500", "coordonnees_gps": [44.9652676946, 4.89437585369], "code_commune_insee": "26058"}, "geometry": {"type": "Point", "coordinates": [4.89437585369, 44.9652676946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e779ee7645ad3bb3a4f188b931ba0af994f1c324", "fields": {"nom_de_la_commune": "BOUVANTE", "libell_d_acheminement": "BOUVANTE", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26059"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d796b007e491fd24de12a6ab8cb6c77414108ad", "fields": {"nom_de_la_commune": "CHABRILLAN", "libell_d_acheminement": "CHABRILLAN", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26065"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe735172b9521b17536aa286669be78f93a762f", "fields": {"nom_de_la_commune": "CHARMES SUR L HERBASSE", "libell_d_acheminement": "CHARMES SUR L HERBASSE", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26077"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a8d4093c8fbe7dd2cb99811879fb587c81da80", "fields": {"nom_de_la_commune": "CHATEAUNEUF DE GALAURE", "libell_d_acheminement": "CHATEAUNEUF DE GALAURE", "code_postal": "26330", "coordonnees_gps": [45.2134239475, 4.96745732699], "code_commune_insee": "26083"}, "geometry": {"type": "Point", "coordinates": [4.96745732699, 45.2134239475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476c24ed01132df70f30b7b437c8390dacef3b3a", "fields": {"nom_de_la_commune": "CHAUDEBONNE", "libell_d_acheminement": "CHAUDEBONNE", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26089"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b12d78e3ae8cec4fc0632a6e0be99c1d3a4c23", "fields": {"nom_de_la_commune": "LA CHAUDIERE", "libell_d_acheminement": "LA CHAUDIERE", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26090"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81676cec60c7e2ae1b3b7b9fba3cdb98983aebf2", "fields": {"nom_de_la_commune": "CLAVEYSON", "libell_d_acheminement": "CLAVEYSON", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26094"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50ee018e4c68fce615c817d411823ff41f152081", "fields": {"nom_de_la_commune": "CLEON D ANDRAN", "libell_d_acheminement": "CLEON D ANDRAN", "code_postal": "26450", "coordonnees_gps": [44.624531354, 4.94624858412], "code_commune_insee": "26095"}, "geometry": {"type": "Point", "coordinates": [4.94624858412, 44.624531354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bea6fbb2f7f1f6574b766cef569b77efe0539730", "fields": {"nom_de_la_commune": "CONDORCET", "libell_d_acheminement": "CONDORCET", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26103"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "489bff5cac32ab7486b34af70b8dc1af209ce95d", "fields": {"nom_de_la_commune": "CURNIER", "libell_d_acheminement": "CURNIER", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26112"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f7bd906419d9c5f16f6090058b13c55bb7d062", "fields": {"nom_de_la_commune": "DIE", "libell_d_acheminement": "DIE", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26113"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2a00832af22277ea00fdd3c55deab16e5b99e3c", "fields": {"nom_de_la_commune": "DIVAJEU", "libell_d_acheminement": "DIVAJEU", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26115"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4f2b8c88db737c0a8580a325e118feec3f49a4f", "fields": {"code_postal": "26800", "code_commune_insee": "26124", "libell_d_acheminement": "ETOILE SUR RHONE", "ligne_5": "LA PAILLASSE", "nom_de_la_commune": "ETOILE SUR RHONE", "coordonnees_gps": [44.8326704656, 4.89052463788]}, "geometry": {"type": "Point", "coordinates": [4.89052463788, 44.8326704656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f64dcdc810f5ee1eb2896ea91c8a8092b43e8f8", "fields": {"nom_de_la_commune": "FRANCILLON SUR ROUBION", "libell_d_acheminement": "FRANCILLON SUR ROUBION", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26137"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d3ecc4f23b6d3e3a9ca1b5a683d2b30f754b76", "fields": {"nom_de_la_commune": "LA GARDE ADHEMAR", "libell_d_acheminement": "LA GARDE ADHEMAR", "code_postal": "26700", "coordonnees_gps": [44.3718503232, 4.71003849979], "code_commune_insee": "26138"}, "geometry": {"type": "Point", "coordinates": [4.71003849979, 44.3718503232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "170b58521e0fcbc0ffa24d2a94783e199b2c2fa3", "fields": {"nom_de_la_commune": "GENISSIEUX", "libell_d_acheminement": "GENISSIEUX", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26139"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d14d001f47c61a4c5b550e9d72d7a577fe29326", "fields": {"nom_de_la_commune": "GIGORS ET LOZERON", "libell_d_acheminement": "GIGORS ET LOZERON", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26141"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a0d03672f2995ebaa1031de3d6e2c2c4dbdeee7", "fields": {"nom_de_la_commune": "HOSTUN", "libell_d_acheminement": "HOSTUN", "code_postal": "26730", "coordonnees_gps": [45.0482944782, 5.20163673449], "code_commune_insee": "26149"}, "geometry": {"type": "Point", "coordinates": [5.20163673449, 45.0482944782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e12f5c6f1f743ad08538f2e8c6abfc426e8ca87", "fields": {"nom_de_la_commune": "IZON LA BRUISSE", "libell_d_acheminement": "IZON LA BRUISSE", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26150"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe46b0252c58828bb078caa86c11177268d76769", "fields": {"nom_de_la_commune": "LORIOL SUR DROME", "libell_d_acheminement": "LORIOL SUR DROME", "code_postal": "26270", "coordonnees_gps": [44.7168044995, 4.81795152107], "code_commune_insee": "26166"}, "geometry": {"type": "Point", "coordinates": [4.81795152107, 44.7168044995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19646ea455cc0068730ae385018820dad03db1aa", "fields": {"nom_de_la_commune": "MANAS", "libell_d_acheminement": "MANAS", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26171"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c5f0e6d324b9f633e32148848ac19d2c1e84a19", "fields": {"nom_de_la_commune": "MARSAZ", "libell_d_acheminement": "MARSAZ", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26177"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d62d2330bc359dcf7c956a5308d7414b596a29", "fields": {"nom_de_la_commune": "MENGLON", "libell_d_acheminement": "MENGLON", "code_postal": "26410", "coordonnees_gps": [44.6917619163, 5.54713177432], "code_commune_insee": "26178"}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02b9e1e9a0224571793cdbbcc76ff47aa18a84d", "fields": {"nom_de_la_commune": "MERINDOL LES OLIVIERS", "libell_d_acheminement": "MERINDOL LES OLIVIERS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26180"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761cd3712478ad9dd1ac67af25283e51f8cbfe3f", "fields": {"nom_de_la_commune": "MEVOUILLON", "libell_d_acheminement": "MEVOUILLON", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26181"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8de7f2425a85837a9abae0a83e9fc28b44ae5c2", "fields": {"nom_de_la_commune": "MIRABEL ET BLACONS", "libell_d_acheminement": "MIRABEL ET BLACONS", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26183"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2243c68aa6ee7b75ef00557608bc896fec7aa9", "fields": {"nom_de_la_commune": "MIRIBEL", "libell_d_acheminement": "MIRIBEL", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26184"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b4858c0bc15e1cad059de78002b72ad24586b33", "fields": {"nom_de_la_commune": "MONTBRISON SUR LEZ", "libell_d_acheminement": "MONTBRISON SUR LEZ", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26192"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a77cb5f71dcb85b9fc5349131e8450101567eb8", "fields": {"nom_de_la_commune": "MONTBRUN LES BAINS", "libell_d_acheminement": "MONTBRUN LES BAINS", "code_postal": "26570", "coordonnees_gps": [44.1743354505, 5.46650063945], "code_commune_insee": "26193"}, "geometry": {"type": "Point", "coordinates": [5.46650063945, 44.1743354505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12bb9ac8a1a851906223d3773b8c8a6b06ceb130", "fields": {"nom_de_la_commune": "MONTGUERS", "libell_d_acheminement": "MONTGUERS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26201"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527dd27ea59550d78851adae2bed0790045d8257", "fields": {"nom_de_la_commune": "MONTLAUR EN DIOIS", "libell_d_acheminement": "MONTLAUR EN DIOIS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26204"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "539ecf34695fdcd208085b42f46c726405cfad39", "fields": {"nom_de_la_commune": "MONTMIRAL", "libell_d_acheminement": "MONTMIRAL", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26207"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c44c442fceaf4b5df9e8a28020813fe08b97db70", "fields": {"nom_de_la_commune": "LA MOTTE DE GALAURE", "libell_d_acheminement": "LA MOTTE DE GALAURE", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26216"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c88ecc2ed746a4baae171bd0fb90cbeae72d81", "fields": {"nom_de_la_commune": "LE PEGUE", "libell_d_acheminement": "LE PEGUE", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26226"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3df40cdffa746dd8a38e283347d7e784a957d0", "fields": {"nom_de_la_commune": "PELONNE", "libell_d_acheminement": "PELONNE", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26227"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6b8e3b99c816cfb48854a437bf8e018883f741", "fields": {"nom_de_la_commune": "PIEGON", "libell_d_acheminement": "PIEGON", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26233"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f1825d03d3909a0c7bc5f8ab9ecb30241a025d", "fields": {"nom_de_la_commune": "PIERRELATTE", "libell_d_acheminement": "PIERRELATTE", "code_postal": "26700", "coordonnees_gps": [44.3718503232, 4.71003849979], "code_commune_insee": "26235"}, "geometry": {"type": "Point", "coordinates": [4.71003849979, 44.3718503232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66dc97d0bab20d39ae587cdc7aa21c4e32592279", "fields": {"nom_de_la_commune": "LES PILLES", "libell_d_acheminement": "LES PILLES", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26238"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ef5e57c33ca323ffab0bf7a169af0e4038a7ddc", "fields": {"nom_de_la_commune": "LE POET EN PERCIP", "libell_d_acheminement": "LE POET EN PERCIP", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26242"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bd1b8616329788e894eeeb4abce5a0e14dd9685", "fields": {"nom_de_la_commune": "PONET ET ST AUBAN", "libell_d_acheminement": "PONET ET ST AUBAN", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26246"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec8ac0a310f43fb7f7efd391be68e2ac879b44d2", "fields": {"nom_de_la_commune": "PONT DE BARRET", "libell_d_acheminement": "PONT DE BARRET", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26249"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a60615fb44e731831fbb4ea96b3cdbe8f0b26b", "fields": {"nom_de_la_commune": "PONT DE L ISERE", "libell_d_acheminement": "PONT DE L ISERE", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26250"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f29f56fc47913ce49b8fcc2495b734c04aec250b", "fields": {"nom_de_la_commune": "POYOLS", "libell_d_acheminement": "POYOLS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26253"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417ab975e2f5533bc4e1e6049880328dcd720ec1", "fields": {"nom_de_la_commune": "PUY ST MARTIN", "libell_d_acheminement": "PUY ST MARTIN", "code_postal": "26450", "coordonnees_gps": [44.624531354, 4.94624858412], "code_commune_insee": "26258"}, "geometry": {"type": "Point", "coordinates": [4.94624858412, 44.624531354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c4973c8fb62f886a0e571bd3d551665e2ab88cf", "fields": {"nom_de_la_commune": "RATIERES", "libell_d_acheminement": "RATIERES", "code_postal": "26330", "coordonnees_gps": [45.2134239475, 4.96745732699], "code_commune_insee": "26259"}, "geometry": {"type": "Point", "coordinates": [4.96745732699, 45.2134239475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4acfbf43ac8f3697a12b0c79f215fb7895c7cd23", "fields": {"code_postal": "26310", "code_commune_insee": "26262", "libell_d_acheminement": "RECOUBEAU JANSAC", "ligne_5": "JANSAC", "nom_de_la_commune": "RECOUBEAU JANSAC", "coordonnees_gps": [44.5689961906, 5.50488176905]}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84792afcb085cb0e23cb1e874cb78cd450fd2df", "fields": {"nom_de_la_commune": "RIMON ET SAVEL", "libell_d_acheminement": "RIMON ET SAVEL", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26266"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "686c07e20f7bc4ef1e6d60f1f33eab9eeaffe581", "fields": {"nom_de_la_commune": "RIOMS", "libell_d_acheminement": "RIOMS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26267"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b619036b50c3424d4d88b23d0d5d3856dc0867", "fields": {"nom_de_la_commune": "ROCHEFOURCHAT", "libell_d_acheminement": "ROCHEFOURCHAT", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26274"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cca83cf24940588824d09b36e0358a62a667a206", "fields": {"nom_de_la_commune": "ROMANS SUR ISERE", "libell_d_acheminement": "ROMANS SUR ISERE", "code_postal": "26100", "coordonnees_gps": [45.0550040559, 5.03828560506], "code_commune_insee": "26281"}, "geometry": {"type": "Point", "coordinates": [5.03828560506, 45.0550040559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c669ebe15b025eb8e6e29b17ae9f04ddbc76b42e", "fields": {"nom_de_la_commune": "ROUSSET LES VIGNES", "libell_d_acheminement": "ROUSSET LES VIGNES", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26285"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c6bc64044e3c892701be804454eda945e93660b", "fields": {"code_postal": "26420", "code_commune_insee": "26290", "libell_d_acheminement": "ST AGNAN EN VERCORS", "ligne_5": "COL DE ROUSSET", "nom_de_la_commune": "ST AGNAN EN VERCORS", "coordonnees_gps": [44.9365927101, 5.42231201851]}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a62678cf12cb628d18a633152943276ab23f5a", "fields": {"nom_de_la_commune": "ST BARTHELEMY DE VALS", "libell_d_acheminement": "ST BARTHELEMY DE VALS", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26295"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8031d9b697b7483235dff7441a27381b8b6a7561", "fields": {"nom_de_la_commune": "ST BENOIT EN DIOIS", "libell_d_acheminement": "ST BENOIT EN DIOIS", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26296"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c3dc93f6541e7836118f733bd119d17850029ca", "fields": {"nom_de_la_commune": "STE EUPHEMIE SUR OUVEZE", "libell_d_acheminement": "STE EUPHEMIE SUR OUVEZE", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26303"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50c2f3b76a462553b98eff91067f3a01e757443a", "fields": {"nom_de_la_commune": "ST JULIEN EN QUINT", "libell_d_acheminement": "ST JULIEN EN QUINT", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26308"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c53a4f3864034ea5c599ff47b0ab2b641c6edb45", "fields": {"nom_de_la_commune": "ST MARCEL LES SAUZET", "libell_d_acheminement": "ST MARCEL LES SAUZET", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26312"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e57a5163ce280b51e25478374d0584a4e9295834", "fields": {"nom_de_la_commune": "ST MAURICE SUR EYGUES", "libell_d_acheminement": "ST MAURICE SUR EYGUES", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26317"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0474bea9c4ecb9e72f970f493e527f6b4ea509ee", "fields": {"nom_de_la_commune": "ST PAUL LES ROMANS", "libell_d_acheminement": "ST PAUL LES ROMANS", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26323"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25fb7455c0cf4b26ce09b9b77f6d872ebcfd878d", "fields": {"nom_de_la_commune": "ST RAMBERT D ALBON", "libell_d_acheminement": "ST RAMBERT D ALBON", "code_postal": "26140", "coordonnees_gps": [45.2622032163, 4.86699876584], "code_commune_insee": "26325"}, "geometry": {"type": "Point", "coordinates": [4.86699876584, 45.2622032163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e25ca28ffe5092f8b1a1d05eff6926352ed162a", "fields": {"nom_de_la_commune": "ST SAUVEUR EN DIOIS", "libell_d_acheminement": "ST SAUVEUR EN DIOIS", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26328"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f533f9ea3cd57914aaf419dff0246c7982d611", "fields": {"nom_de_la_commune": "ST SAUVEUR GOUVERNET", "libell_d_acheminement": "ST SAUVEUR GOUVERNET", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26329"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3052ebc599d61b4b7ac6381f5f1e62c847f2f13b", "fields": {"nom_de_la_commune": "ST SORLIN EN VALLOIRE", "libell_d_acheminement": "ST SORLIN EN VALLOIRE", "code_postal": "26210", "coordonnees_gps": [45.2969498397, 4.98492206327], "code_commune_insee": "26330"}, "geometry": {"type": "Point", "coordinates": [4.98492206327, 45.2969498397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87be360fe1516aff28583491ef287239c3d13707", "fields": {"nom_de_la_commune": "ST THOMAS EN ROYANS", "libell_d_acheminement": "ST THOMAS EN ROYANS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26331"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "767b8c5e669e1d8e9cdce84d2bc5a389a516952f", "fields": {"nom_de_la_commune": "SALLES SOUS BOIS", "libell_d_acheminement": "SALLES SOUS BOIS", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26335"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373efab9022c05e2e9fa9204232bda8dd9e9c3bf", "fields": {"nom_de_la_commune": "SAULCE SUR RHONE", "libell_d_acheminement": "SAULCE SUR RHONE", "code_postal": "26270", "coordonnees_gps": [44.7168044995, 4.81795152107], "code_commune_insee": "26337"}, "geometry": {"type": "Point", "coordinates": [4.81795152107, 44.7168044995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "860dc492f2a069daf3a0940a96ec0aecc41912b9", "fields": {"nom_de_la_commune": "SERVES SUR RHONE", "libell_d_acheminement": "SERVES SUR RHONE", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26341"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "977117ca8b566d6d7a711d49976c7e6973399c25", "fields": {"nom_de_la_commune": "LA TOUCHE", "libell_d_acheminement": "LA TOUCHE", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26352"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15edaa2ac991043d48c5132cf807b710e3a4aa91", "fields": {"nom_de_la_commune": "TRUINAS", "libell_d_acheminement": "TRUINAS", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26356"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdb9dd7725f38a8b1fb46fe9368bc4323724732f", "fields": {"nom_de_la_commune": "VERCOIRAN", "libell_d_acheminement": "VERCOIRAN", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26370"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd1ab2b363090a9bec63b73f468fd54240b5524", "fields": {"nom_de_la_commune": "VESC", "libell_d_acheminement": "VESC", "code_postal": "26220", "coordonnees_gps": [44.5059252728, 5.12194208681], "code_commune_insee": "26373"}, "geometry": {"type": "Point", "coordinates": [5.12194208681, 44.5059252728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2865f99acb3927d574cef83f11eb408c74f82cff", "fields": {"nom_de_la_commune": "VINSOBRES", "libell_d_acheminement": "VINSOBRES", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26377"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d493e6fa00d8711c550bfc3bb85035e50af0f7fb", "fields": {"code_postal": "27400", "code_commune_insee": "27003", "libell_d_acheminement": "ACQUIGNY", "ligne_5": "LES PLANCHES", "nom_de_la_commune": "ACQUIGNY", "coordonnees_gps": [49.185538027, 1.1391389969]}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2535c21ef41e62b417c414343734426e53e16fae", "fields": {"nom_de_la_commune": "AIGLEVILLE", "libell_d_acheminement": "AIGLEVILLE", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27004"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "908dcb2bd762297a400fe211c5d191f5e45006f9", "fields": {"nom_de_la_commune": "AIZIER", "libell_d_acheminement": "AIZIER", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27006"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "474ddec4d8ae3604b251562b5aa04d5a836c99fb", "fields": {"nom_de_la_commune": "AMFREVILLE ST AMAND", "libell_d_acheminement": "AMFREVILLE ST AMAND", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27011"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b66601ac0d5f9a35af1d0af7ff1229a00468797f", "fields": {"code_postal": "27370", "code_commune_insee": "27011", "libell_d_acheminement": "AMFREVILLE ST AMAND", "ligne_5": "ST AMAND DES HAUTES TERRES", "nom_de_la_commune": "AMFREVILLE ST AMAND", "coordonnees_gps": [49.2357010366, 0.935247048397]}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "875422ac26b85c00e846de6b004d1529ad389718", "fields": {"nom_de_la_commune": "APPEVILLE ANNEBAULT", "libell_d_acheminement": "APPEVILLE ANNEBAULT", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27018"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98ee96696b20d9f23d9025edf9ae2e9f5b9a39ff", "fields": {"nom_de_la_commune": "ARMENTIERES SUR AVRE", "libell_d_acheminement": "ARMENTIERES SUR AVRE", "code_postal": "27820", "coordonnees_gps": [48.6910585643, 0.801324463794], "code_commune_insee": "27019"}, "geometry": {"type": "Point", "coordinates": [0.801324463794, 48.6910585643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "276a48a5aeac6fb7a129341e68c5978da78d7cd8", "fields": {"code_postal": "27600", "code_commune_insee": "27022", "libell_d_acheminement": "LE VAL D HAZEY", "ligne_5": "VIEUX VILLEZ", "nom_de_la_commune": "LE VAL D HAZEY", "coordonnees_gps": [49.1557980805, 1.30618945985]}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02655d92ce139a5184928497d3f67626bd80a9a6", "fields": {"code_postal": "27940", "code_commune_insee": "27022", "libell_d_acheminement": "LE VAL D HAZEY", "ligne_5": "AUBEVOYE", "nom_de_la_commune": "LE VAL D HAZEY", "coordonnees_gps": [49.1799104876, 1.36654248146]}, "geometry": {"type": "Point", "coordinates": [1.36654248146, 49.1799104876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66c55e64995df26338d58a89ee5ef51a97dfd1cb", "fields": {"nom_de_la_commune": "AUTHEUIL AUTHOUILLET", "libell_d_acheminement": "AUTHEUIL AUTHOUILLET", "code_postal": "27490", "coordonnees_gps": [49.1112180044, 1.26339750484], "code_commune_insee": "27025"}, "geometry": {"type": "Point", "coordinates": [1.26339750484, 49.1112180044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf116155eef5a3f598c32cb75f2f6723c0f5f9ac", "fields": {"code_postal": "27490", "code_commune_insee": "27025", "libell_d_acheminement": "AUTHEUIL AUTHOUILLET", "ligne_5": "AUTHOUILLET", "nom_de_la_commune": "AUTHEUIL AUTHOUILLET", "coordonnees_gps": [49.1112180044, 1.26339750484]}, "geometry": {"type": "Point", "coordinates": [1.26339750484, 49.1112180044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "128903b5b78febad8dfd6de858b96dbceb126bb0", "fields": {"nom_de_la_commune": "LES AUTHIEUX", "libell_d_acheminement": "LES AUTHIEUX", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27027"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dc39152430b765b389ef25d01c24d4ff4c5bb85", "fields": {"nom_de_la_commune": "AUTHOU", "libell_d_acheminement": "AUTHOU", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27028"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b8c667d14ada6c3b7bd88d7c10a146cd3c0d8d", "fields": {"nom_de_la_commune": "LES BARILS", "libell_d_acheminement": "LES BARILS", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27038"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8a1934fdaa1ae294c8cbb6efcd43593737629f5", "fields": {"nom_de_la_commune": "BARNEVILLE SUR SEINE", "libell_d_acheminement": "BARNEVILLE SUR SEINE", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27039"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cce29a510819c88edd8d3dc50c7f2ed313e2d5d", "fields": {"nom_de_la_commune": "BARVILLE", "libell_d_acheminement": "BARVILLE", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27042"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "200a7bb8215205ab31d779388f71c97d5614aaa5", "fields": {"nom_de_la_commune": "SOUSSANS", "libell_d_acheminement": "SOUSSANS", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33517"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2751ab2db5b75a3f0e2aec148beae627e43ce95a", "fields": {"nom_de_la_commune": "TAILLECAVAT", "libell_d_acheminement": "TAILLECAVAT", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33520"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d219fadb9fd6222a0ce993c27499fa92ab379e08", "fields": {"nom_de_la_commune": "TARNES", "libell_d_acheminement": "TARNES", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33524"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5462f3d76a636b40772045e2c76833b4c56e08dd", "fields": {"nom_de_la_commune": "TAYAC", "libell_d_acheminement": "TAYAC", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33526"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b55649c873860e7bea25e12e89e9c4917bbfa47b", "fields": {"nom_de_la_commune": "TIZAC DE CURTON", "libell_d_acheminement": "TIZAC DE CURTON", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33531"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c1b5cafc07a76676a51ab717bf4e5d99f3070a", "fields": {"nom_de_la_commune": "LE TOURNE", "libell_d_acheminement": "LE TOURNE", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33534"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f818f67e291587f7cad81e6f186f76fb4c3d3e3", "fields": {"nom_de_la_commune": "TRESSES", "libell_d_acheminement": "TRESSES", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33535"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4775b10a66084c8f964313c492b1fb9918ba46a8", "fields": {"nom_de_la_commune": "VILLENAVE DE RIONS", "libell_d_acheminement": "VILLENAVE DE RIONS", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33549"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8c432f6df83348ccc7ae4f64e1279b075c1250d", "fields": {"nom_de_la_commune": "VILLENEUVE", "libell_d_acheminement": "VILLENEUVE", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33551"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534fcd9b013f6aa8c7eeda88852980779beb42fe", "fields": {"nom_de_la_commune": "ANIANE", "libell_d_acheminement": "ANIANE", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34010"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef58a8c9df666fdc0b530144824c549ab2f21709", "fields": {"nom_de_la_commune": "AUMELAS", "libell_d_acheminement": "AUMELAS", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34016"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4962bcc446cffc84d86c55c8d8dfe77bba976049", "fields": {"nom_de_la_commune": "AUTIGNAC", "libell_d_acheminement": "AUTIGNAC", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34018"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "973d6549f6ea22d5587cbb33950781aa03371500", "fields": {"nom_de_la_commune": "AVENE", "libell_d_acheminement": "AVENE", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34019"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5825b4cbffc902142e34e4eab4ce45c2f22a03bb", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34027"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6a0e0538c6427cc21189c7ec58e5286dd4410b3", "fields": {"nom_de_la_commune": "BRENAS", "libell_d_acheminement": "BRENAS", "code_postal": "34650", "coordonnees_gps": [43.7331097591, 3.20531974015], "code_commune_insee": "34040"}, "geometry": {"type": "Point", "coordinates": [3.20531974015, 43.7331097591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9399969783ebc32063479d1daa1ce23b046e848a", "fields": {"nom_de_la_commune": "BUZIGNARGUES", "libell_d_acheminement": "BUZIGNARGUES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34043"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936400c4d234d73c0f5ece1e16595889c07ede98", "fields": {"nom_de_la_commune": "CAMPAGNE", "libell_d_acheminement": "CAMPAGNE", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34048"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc35fed5e4c95841f714a61c5a9b5ace64a52755", "fields": {"nom_de_la_commune": "CASSAGNOLES", "libell_d_acheminement": "CASSAGNOLES", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34054"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19056e4596a53d06b8f8037c86ce77501041444a", "fields": {"nom_de_la_commune": "CAUSSES ET VEYRAN", "libell_d_acheminement": "CAUSSES ET VEYRAN", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34061"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9a89d2ed9893b709dfae4650f3c95833935dd59", "fields": {"nom_de_la_commune": "CELLES", "libell_d_acheminement": "CELLES", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34072"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47405ecc3537791585d31b3ca2782fe1ef17ecf8", "fields": {"nom_de_la_commune": "COURNIOU", "libell_d_acheminement": "COURNIOU", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34086"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f0449bcb4f380a0f7ed82d753b525596a4d2cec", "fields": {"nom_de_la_commune": "FERRALS LES MONTAGNES", "libell_d_acheminement": "FERRALS LES MONTAGNES", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34098"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4445d64eba6344194953decd2d9d4fd2f0ce57b6", "fields": {"nom_de_la_commune": "FOS", "libell_d_acheminement": "FOS", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34104"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a69e812e2b671b92686bd09031886794557bcbad", "fields": {"nom_de_la_commune": "FRAISSE SUR AGOUT", "libell_d_acheminement": "FRAISSE SUR AGOUT", "code_postal": "34330", "coordonnees_gps": [43.5945013819, 2.75693691265], "code_commune_insee": "34107"}, "geometry": {"type": "Point", "coordinates": [2.75693691265, 43.5945013819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "749709650bf3e78818799fdb9363e49bc29e1c22", "fields": {"nom_de_la_commune": "GANGES", "libell_d_acheminement": "GANGES", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34111"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743de6909d49c1bcb04f964fe856c6fcee2dc25d", "fields": {"nom_de_la_commune": "JACOU", "libell_d_acheminement": "JACOU", "code_postal": "34830", "coordonnees_gps": [43.6624822527, 3.89381826906], "code_commune_insee": "34120"}, "geometry": {"type": "Point", "coordinates": [3.89381826906, 43.6624822527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f6d1a8d3035ebccbfa08e4d86522d462aafdb6", "fields": {"nom_de_la_commune": "LANSARGUES", "libell_d_acheminement": "LANSARGUES", "code_postal": "34130", "coordonnees_gps": [43.6110613982, 4.02001857853], "code_commune_insee": "34127"}, "geometry": {"type": "Point", "coordinates": [4.02001857853, 43.6110613982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f46f5ff3c1794959e6271d2eb031556b5cb8dfc", "fields": {"nom_de_la_commune": "LODEVE", "libell_d_acheminement": "LODEVE", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34142"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36aacc98102353932ffe3b6890ec20c69aa4b8af", "fields": {"nom_de_la_commune": "MAGALAS", "libell_d_acheminement": "MAGALAS", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34147"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9929a32ee1ab2faad91ef76b522c11408680d34", "fields": {"code_postal": "34340", "code_commune_insee": "34150", "libell_d_acheminement": "MARSEILLAN", "ligne_5": "MARSEILLAN PLAGE", "nom_de_la_commune": "MARSEILLAN", "coordonnees_gps": [43.3603485719, 3.54723138046]}, "geometry": {"type": "Point", "coordinates": [3.54723138046, 43.3603485719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af554225877cc61b36f2938e84d309cbe746f619", "fields": {"nom_de_la_commune": "MONTESQUIEU", "libell_d_acheminement": "MONTESQUIEU", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34168"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa3954124c3e6277f13a5d641c6754c19d9fd6d7", "fields": {"nom_de_la_commune": "MOULES ET BAUCELS", "libell_d_acheminement": "MOULES ET BAUCELS", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34174"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dba1588f860da84f2fc30fd3472ff15e7b518dcb", "fields": {"nom_de_la_commune": "MOUREZE", "libell_d_acheminement": "MOUREZE", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34175"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b29b495388d93eed42701173900aab06683eba16", "fields": {"nom_de_la_commune": "MUDAISON", "libell_d_acheminement": "MUDAISON", "code_postal": "34130", "coordonnees_gps": [43.6110613982, 4.02001857853], "code_commune_insee": "34176"}, "geometry": {"type": "Point", "coordinates": [4.02001857853, 43.6110613982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef481f518ffe0eddd477db8af4649f8595116bef", "fields": {"nom_de_la_commune": "MURVIEL LES BEZIERS", "libell_d_acheminement": "MURVIEL LES BEZIERS", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34178"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce112861ace686b683d0af5edf6926a4fa666f55", "fields": {"nom_de_la_commune": "NEBIAN", "libell_d_acheminement": "NEBIAN", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34180"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac70775297e33f8f26a645062329631011015cf", "fields": {"nom_de_la_commune": "NOTRE DAME DE LONDRES", "libell_d_acheminement": "NOTRE DAME DE LONDRES", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34185"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d9b649d6da290e02d730463077494a069f0548", "fields": {"nom_de_la_commune": "OLONZAC", "libell_d_acheminement": "OLONZAC", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34189"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ec8b316a6df095b5bbf47e0b5350029517fa428", "fields": {"nom_de_la_commune": "OUPIA", "libell_d_acheminement": "OUPIA", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34190"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c899ed6474c7817a0cbb6282dbb58186369e37b", "fields": {"nom_de_la_commune": "PEROLS", "libell_d_acheminement": "PEROLS", "code_postal": "34470", "coordonnees_gps": [43.5615092757, 3.95243919427], "code_commune_insee": "34198"}, "geometry": {"type": "Point", "coordinates": [3.95243919427, 43.5615092757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0e141d46f671f01ac1417557ece0d0eb709244", "fields": {"nom_de_la_commune": "PEZENES LES MINES", "libell_d_acheminement": "PEZENES LES MINES", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34200"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3679362144807a3cb635393306960be0209da61d", "fields": {"nom_de_la_commune": "PIGNAN", "libell_d_acheminement": "PIGNAN", "code_postal": "34570", "coordonnees_gps": [43.6245225678, 3.72064518654], "code_commune_insee": "34202"}, "geometry": {"type": "Point", "coordinates": [3.72064518654, 43.6245225678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68a077d56b617a0767fe1bf5d95980868cea7839", "fields": {"nom_de_la_commune": "LES PLANS", "libell_d_acheminement": "LES PLANS", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34205"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6a444adc351239e27418683b54e6ffbc15ccf77", "fields": {"nom_de_la_commune": "LE POUGET", "libell_d_acheminement": "LE POUGET", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34210"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07fa871d76045cc767c8dc646c0bd789ace02037", "fields": {"nom_de_la_commune": "LE PRADAL", "libell_d_acheminement": "LE PRADAL", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34216"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2b93e839700e856c5446d14525bcbf0d0b853c", "fields": {"nom_de_la_commune": "LE PUECH", "libell_d_acheminement": "LE PUECH", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34220"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddabdf4bb3deb0179f6d3f48ad6dff0f9a89a969", "fields": {"nom_de_la_commune": "PUILACHER", "libell_d_acheminement": "PUILACHER", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34222"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd92d06f42e7ba795c8e870c949ea338af9182f", "fields": {"nom_de_la_commune": "LES RIVES", "libell_d_acheminement": "LES RIVES", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34230"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97bb28181566acaf5dd53c57df695edab3bda924", "fields": {"nom_de_la_commune": "ROQUEBRUN", "libell_d_acheminement": "ROQUEBRUN", "code_postal": "34460", "coordonnees_gps": [43.4734338181, 3.02585092661], "code_commune_insee": "34232"}, "geometry": {"type": "Point", "coordinates": [3.02585092661, 43.4734338181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f381b1ca505d85a40f7c59029d337dfc26f5d01c", "fields": {"nom_de_la_commune": "ROUET", "libell_d_acheminement": "LE ROUET", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34236"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71f1d258468e33f7d4e1337dab9f43e88aa50fdc", "fields": {"nom_de_la_commune": "ST AUNES", "libell_d_acheminement": "ST AUNES", "code_postal": "34130", "coordonnees_gps": [43.6110613982, 4.02001857853], "code_commune_insee": "34240"}, "geometry": {"type": "Point", "coordinates": [4.02001857853, 43.6110613982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "561dec7a6fd737219768c2f1d19b24f7b0bc8d05", "fields": {"nom_de_la_commune": "ST CHRISTOL", "libell_d_acheminement": "ST CHRISTOL", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34246"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68fc81d12790ea27a1e62918fada9d8845765645", "fields": {"nom_de_la_commune": "ST CLEMENT DE RIVIERE", "libell_d_acheminement": "ST CLEMENT DE RIVIERE", "code_postal": "34980", "coordonnees_gps": [43.6888847812, 3.79972648771], "code_commune_insee": "34247"}, "geometry": {"type": "Point", "coordinates": [3.79972648771, 43.6888847812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3cd206490d7a9abca54cf203d0d7547c3751ae", "fields": {"nom_de_la_commune": "ST ETIENNE DE GOURGAS", "libell_d_acheminement": "ST ETIENNE DE GOURGAS", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34251"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c943eb4f514e9c6f788112c339abc9a4973d79", "fields": {"nom_de_la_commune": "ST FELIX DE LODEZ", "libell_d_acheminement": "ST FELIX DE LODEZ", "code_postal": "34725", "coordonnees_gps": [43.6689337124, 3.48233667506], "code_commune_insee": "34254"}, "geometry": {"type": "Point", "coordinates": [3.48233667506, 43.6689337124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3a00fffec703ca1390eec8e52eac114ed430aa", "fields": {"nom_de_la_commune": "ST GUILHEM LE DESERT", "libell_d_acheminement": "ST GUILHEM LE DESERT", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34261"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2dda7a86df2a1bb12400e32630da6c28dad8a07", "fields": {"nom_de_la_commune": "ST JEAN DE BUEGES", "libell_d_acheminement": "ST JEAN DE BUEGES", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34264"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ea6e4576274141fc3bf718338cee65c920a61a", "fields": {"nom_de_la_commune": "ST MARTIN DE LONDRES", "libell_d_acheminement": "ST MARTIN DE LONDRES", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34274"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fedb186bcc4cbabb7d558761071918efe0f63f9", "fields": {"nom_de_la_commune": "ST NAZAIRE DE LADAREZ", "libell_d_acheminement": "ST NAZAIRE DE LADAREZ", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34279"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45d5d754728a3805745501d1280101747ab2c200", "fields": {"nom_de_la_commune": "ST SATURNIN DE LUCIAN", "libell_d_acheminement": "ST SATURNIN DE LUCIAN", "code_postal": "34725", "coordonnees_gps": [43.6689337124, 3.48233667506], "code_commune_insee": "34287"}, "geometry": {"type": "Point", "coordinates": [3.48233667506, 43.6689337124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7691bf7df46ab388a8b549ad32f86ae971840bba", "fields": {"nom_de_la_commune": "SERIGNAN", "libell_d_acheminement": "SERIGNAN", "code_postal": "34410", "coordonnees_gps": [43.2791365014, 3.28311467845], "code_commune_insee": "34299"}, "geometry": {"type": "Point", "coordinates": [3.28311467845, 43.2791365014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0912e03a912823a087648a4915db11dd10548003", "fields": {"nom_de_la_commune": "SOUBES", "libell_d_acheminement": "SOUBES", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34304"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d10a9142dae1fe633e1562fee78279524450527d", "fields": {"nom_de_la_commune": "TRESSAN", "libell_d_acheminement": "TRESSAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34313"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c443cfb92b565f30ecec564aaae8fcb98d198e21", "fields": {"nom_de_la_commune": "VENDARGUES", "libell_d_acheminement": "VENDARGUES", "code_postal": "34740", "coordonnees_gps": [43.6606538021, 3.96320236293], "code_commune_insee": "34327"}, "geometry": {"type": "Point", "coordinates": [3.96320236293, 43.6606538021]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1985a5b5b56321b1670cec74cae6104ef960597d", "fields": {"nom_de_la_commune": "VIOLS LE FORT", "libell_d_acheminement": "VIOLS LE FORT", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34343"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f394536674324dbd04f54e5519991d3b1a0ecf", "fields": {"nom_de_la_commune": "ACIGNE", "libell_d_acheminement": "ACIGNE", "code_postal": "35690", "coordonnees_gps": [48.1465947957, -1.51895898717], "code_commune_insee": "35001"}, "geometry": {"type": "Point", "coordinates": [-1.51895898717, 48.1465947957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b95461251d59ae202a48cc6a95eec7be54ea4fe", "fields": {"nom_de_la_commune": "AMANLIS", "libell_d_acheminement": "AMANLIS", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35002"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f01e4c69da76fc18702ac1a170e9333c02895a7", "fields": {"nom_de_la_commune": "ANDOUILLE NEUVILLE", "libell_d_acheminement": "ANDOUILLE NEUVILLE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35003"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f0eecd92efd7d95e926098099d661672d66fda5", "fields": {"nom_de_la_commune": "AUBIGNE", "libell_d_acheminement": "AUBIGNE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35007"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dba8dffb85291572f00f394f4d813a7b0988c756", "fields": {"nom_de_la_commune": "BAULON", "libell_d_acheminement": "BAULON", "code_postal": "35580", "coordonnees_gps": [47.9620542944, -1.8429715247], "code_commune_insee": "35016"}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "670e98c50779bcd22b9bc2dd7e4d0c7e1f7cc5a6", "fields": {"nom_de_la_commune": "BILLE", "libell_d_acheminement": "BILLE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35025"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7263aa5be84a68dd38417909afacf35b20ff4070", "fields": {"nom_de_la_commune": "BLERUAIS", "libell_d_acheminement": "BLERUAIS", "code_postal": "35750", "coordonnees_gps": [48.1126516874, -2.04975015868], "code_commune_insee": "35026"}, "geometry": {"type": "Point", "coordinates": [-2.04975015868, 48.1126516874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da790e5f04ed37105692c31185de76277af221d", "fields": {"nom_de_la_commune": "BOISGERVILLY", "libell_d_acheminement": "BOISGERVILLY", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35027"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "010e5e2244d9b3a8895e92443051d9a2038da96b", "fields": {"nom_de_la_commune": "BONNEMAIN", "libell_d_acheminement": "BONNEMAIN", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35029"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f6411560e3e2dfeb4a6f8079b3b24e81a041621", "fields": {"nom_de_la_commune": "LA BOUEXIERE", "libell_d_acheminement": "LA BOUEXIERE", "code_postal": "35340", "coordonnees_gps": [48.199281564, -1.48595491187], "code_commune_insee": "35031"}, "geometry": {"type": "Point", "coordinates": [-1.48595491187, 48.199281564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8efae91960f641ff729282ea3fdc8b427f4a410", "fields": {"nom_de_la_commune": "BREAL SOUS MONTFORT", "libell_d_acheminement": "BREAL SOUS MONTFORT", "code_postal": "35310", "coordonnees_gps": [48.0615640681, -1.86453604363], "code_commune_insee": "35037"}, "geometry": {"type": "Point", "coordinates": [-1.86453604363, 48.0615640681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417481ae3576624f47cb11aed4c7bfddb7d4d66f", "fields": {"nom_de_la_commune": "BREAL SOUS VITRE", "libell_d_acheminement": "BREAL SOUS VITRE", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35038"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24943ed5da84276716974d3fcd554ea45d6945e5", "fields": {"nom_de_la_commune": "BRETEIL", "libell_d_acheminement": "BRETEIL", "code_postal": "35160", "coordonnees_gps": [48.0975671546, -1.94600681697], "code_commune_insee": "35040"}, "geometry": {"type": "Point", "coordinates": [-1.94600681697, 48.0975671546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ee6d560c07c4cbfb5b86b5ffff071018a37d9a", "fields": {"code_postal": "35170", "code_commune_insee": "35047", "libell_d_acheminement": "BRUZ", "ligne_5": "PONT REAN", "nom_de_la_commune": "BRUZ", "coordonnees_gps": [48.0258206706, -1.74865477283]}, "geometry": {"type": "Point", "coordinates": [-1.74865477283, 48.0258206706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122c972212ab852652f26298fbab1001b0c778ee", "fields": {"nom_de_la_commune": "CAMPEL", "libell_d_acheminement": "CAMPEL", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35048"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2bb9ca1b1e5f400fe7ed96f00a277ff9b9e9c57", "fields": {"nom_de_la_commune": "CHANCE", "libell_d_acheminement": "CHANCE", "code_postal": "35680", "coordonnees_gps": [48.0164142152, -1.29664262346], "code_commune_insee": "35053"}, "geometry": {"type": "Point", "coordinates": [-1.29664262346, 48.0164142152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73b98d0850caf8fce1dc30b147771a25be16213", "fields": {"code_postal": "35360", "code_commune_insee": "35060", "libell_d_acheminement": "LA CHAPELLE DU LOU DU LAC", "ligne_5": "LE LOU DU LAC", "nom_de_la_commune": "LA CHAPELLE DU LOU DU LAC", "coordonnees_gps": [48.2178300809, -2.05491742866]}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8189ea4124b51540af994a19de9eb307c928998", "fields": {"nom_de_la_commune": "LA CHAPELLE ST AUBERT", "libell_d_acheminement": "LA CHAPELLE ST AUBERT", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35063"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0651d260fea051f544497465235e8745aa3acdfa", "fields": {"nom_de_la_commune": "CHASNE SUR ILLET", "libell_d_acheminement": "CHASNE SUR ILLET", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35067"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f104e4b97e4da86ce63f1402d7d0e3990cc26799", "fields": {"code_postal": "35220", "code_commune_insee": "35068", "libell_d_acheminement": "CHATEAUBOURG", "ligne_5": "BROONS SUR VILAINE", "nom_de_la_commune": "CHATEAUBOURG", "coordonnees_gps": [48.1189448859, -1.37446219817]}, "geometry": {"type": "Point", "coordinates": [-1.37446219817, 48.1189448859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6112b0c40cf24cc29ca06ef22c54485bb33ba95", "fields": {"nom_de_la_commune": "CHAVAGNE", "libell_d_acheminement": "CHAVAGNE", "code_postal": "35310", "coordonnees_gps": [48.0615640681, -1.86453604363], "code_commune_insee": "35076"}, "geometry": {"type": "Point", "coordinates": [-1.86453604363, 48.0615640681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ade2308333281d2d4357df00f9832098dfc4e970", "fields": {"nom_de_la_commune": "COGLES", "libell_d_acheminement": "COGLES", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35083"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45a72c06d9ff5c90d4ac84d274ba69f62c207e8d", "fields": {"nom_de_la_commune": "COMBOURTILLE", "libell_d_acheminement": "COMBOURTILLE", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35086"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d68c9ba8ee070976dc90b579cad765b6c9282e", "fields": {"nom_de_la_commune": "LA COUYERE", "libell_d_acheminement": "LA COUYERE", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35089"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de04f194424e2da25922c9b7cbef6458ddda6056", "fields": {"nom_de_la_commune": "DINGE", "libell_d_acheminement": "DINGE", "code_postal": "35440", "coordonnees_gps": [48.3260797926, -1.69262805003], "code_commune_insee": "35094"}, "geometry": {"type": "Point", "coordinates": [-1.69262805003, 48.3260797926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a7a990db84bcad62c6281670c16d4726c993f3e", "fields": {"nom_de_la_commune": "DOMLOUP", "libell_d_acheminement": "DOMLOUP", "code_postal": "35410", "coordonnees_gps": [48.0490244352, -1.51988264041], "code_commune_insee": "35099"}, "geometry": {"type": "Point", "coordinates": [-1.51988264041, 48.0490244352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c571ded096fb0471438523eff3f0f68647e039", "fields": {"nom_de_la_commune": "FEINS", "libell_d_acheminement": "FEINS", "code_postal": "35440", "coordonnees_gps": [48.3260797926, -1.69262805003], "code_commune_insee": "35110"}, "geometry": {"type": "Point", "coordinates": [-1.69262805003, 48.3260797926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f1d9d64c358335740fd8882360a1e1eaf41b869", "fields": {"nom_de_la_commune": "LE FERRE", "libell_d_acheminement": "LE FERRE", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35111"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a36f72040280a35377106dfa54b136616710be4", "fields": {"nom_de_la_commune": "GAHARD", "libell_d_acheminement": "GAHARD", "code_postal": "35490", "coordonnees_gps": [48.3344573886, -1.51403943231], "code_commune_insee": "35118"}, "geometry": {"type": "Point", "coordinates": [-1.51403943231, 48.3344573886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9818c57c1acaf48ed59ac93a54fb074c65437f", "fields": {"nom_de_la_commune": "LA GOUESNIERE", "libell_d_acheminement": "LA GOUESNIERE", "code_postal": "35350", "coordonnees_gps": [48.645566435, -1.90776582617], "code_commune_insee": "35122"}, "geometry": {"type": "Point", "coordinates": [-1.90776582617, 48.645566435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60023d066d902bb40d02fd68a664241bb26aa55b", "fields": {"nom_de_la_commune": "GOVEN", "libell_d_acheminement": "GOVEN", "code_postal": "35580", "coordonnees_gps": [47.9620542944, -1.8429715247], "code_commune_insee": "35123"}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6502e0c520600c860b84c72a54692dc0d64df528", "fields": {"code_postal": "35580", "code_commune_insee": "35126", "libell_d_acheminement": "GUICHEN", "ligne_5": "PONT REAN", "nom_de_la_commune": "GUICHEN", "coordonnees_gps": [47.9620542944, -1.8429715247]}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf8d893afe48ba4dd39ccc32119fe7e621bc9b1", "fields": {"nom_de_la_commune": "L HERMITAGE", "libell_d_acheminement": "L HERMITAGE", "code_postal": "35590", "coordonnees_gps": [48.1446063618, -1.84797555662], "code_commune_insee": "35131"}, "geometry": {"type": "Point", "coordinates": [-1.84797555662, 48.1446063618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4e812035083373fbbb57c16666d361d88bb0822", "fields": {"nom_de_la_commune": "LIEURON", "libell_d_acheminement": "LIEURON", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35151"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9fea0a3d0245985d1d7a4d935d6bd22787ff259", "fields": {"nom_de_la_commune": "LIVRE SUR CHANGEON", "libell_d_acheminement": "LIVRE SUR CHANGEON", "code_postal": "35450", "coordonnees_gps": [48.2058112494, -1.3219232409], "code_commune_insee": "35154"}, "geometry": {"type": "Point", "coordinates": [-1.3219232409, 48.2058112494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49d2caa67ae9e15286153542e5f2dd60f9d98367", "fields": {"code_postal": "27300", "code_commune_insee": "27129", "libell_d_acheminement": "CAORCHES ST NICOLAS", "ligne_5": "ST NICOLAS DU BOSC L ABBE", "nom_de_la_commune": "CAORCHES ST NICOLAS", "coordonnees_gps": [49.1002170392, 0.597556299077]}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d290451e5ef187d1ec305f6a27f158ea6c5ec7af", "fields": {"nom_de_la_commune": "CHAMBLAC", "libell_d_acheminement": "CHAMBLAC", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27138"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e66f4d7410cb63604d0c8ddec425464f4de32e04", "fields": {"nom_de_la_commune": "CHAMPENARD", "libell_d_acheminement": "CHAMPENARD", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27142"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7c9dd5709ad40ab7ab3a80408dc9b35c0ee202", "fields": {"nom_de_la_commune": "CHAMPIGNY LA FUTELAYE", "libell_d_acheminement": "CHAMPIGNY LA FUTELAYE", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27144"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d1e397c00c6f60b74f3d7bd165a0c202e54b39", "fields": {"code_postal": "27160", "code_commune_insee": "27157", "libell_d_acheminement": "MARBOIS", "ligne_5": "LE CHESNE", "nom_de_la_commune": "MARBOIS", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a021244c255aef99270eeae2b721fff1db148426", "fields": {"nom_de_la_commune": "COLLANDRES QUINCARNON", "libell_d_acheminement": "COLLANDRES QUINCARNON", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27162"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7e80bed5ddbb43df42aa727eb7d0d09c2da2901", "fields": {"nom_de_la_commune": "CORNEVILLE SUR RISLE", "libell_d_acheminement": "CORNEVILLE SUR RISLE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27174"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c047c5e8402659ce812c094b8f45cfc79c9913e0", "fields": {"nom_de_la_commune": "COUDRES", "libell_d_acheminement": "COUDRES", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27177"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff2969532c4b375562c4269e861b9f1ea0df8757", "fields": {"nom_de_la_commune": "COURBEPINE", "libell_d_acheminement": "COURBEPINE", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27179"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac35fb6f6ccfdd3f42118833070a2af3750fcf28", "fields": {"code_postal": "27490", "code_commune_insee": "27191", "libell_d_acheminement": "CLEF VALLEE D EURE", "ligne_5": "LA CROIX ST LEUFROY", "nom_de_la_commune": "CLEF VALLEE D EURE", "coordonnees_gps": [49.1112180044, 1.26339750484]}, "geometry": {"type": "Point", "coordinates": [1.26339750484, 49.1112180044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cdcc3edd9cbd9769f5c1bdf250bde45b91cf858", "fields": {"nom_de_la_commune": "CROSVILLE LA VIEILLE", "libell_d_acheminement": "CROSVILLE LA VIEILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27192"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2c3a757fef88d3b506390d7b70c97878cc593d", "fields": {"nom_de_la_commune": "LES DAMPS", "libell_d_acheminement": "LES DAMPS", "code_postal": "27340", "coordonnees_gps": [49.282400174, 1.11419041631], "code_commune_insee": "27196"}, "geometry": {"type": "Point", "coordinates": [1.11419041631, 49.282400174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89f3b038168104625be38e232aa6e07d3b9c73cf", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "LE RONCENAY AUTHENAY", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e6834716512d2ded770773aee0faed2500d4068", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "MANTHELON", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4748569e1afd02153f122698ea5f5b08a5e45180", "fields": {"nom_de_la_commune": "DROISY", "libell_d_acheminement": "DROISY", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27206"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ecabcb3d95e7cfedb1ceb8407597cc67bae7f6e", "fields": {"nom_de_la_commune": "ECAQUELON", "libell_d_acheminement": "ECAQUELON", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27209"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c79e35c27dda5ae4610df8c2ac195a4a536f3b4", "fields": {"nom_de_la_commune": "ECAUVILLE", "libell_d_acheminement": "ECAUVILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27212"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df875caf4c9c8e19d4d54c0e38e3306e952bfaab", "fields": {"code_postal": "27510", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "FONTENAY EN VEXIN", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1509982632, 1.53002426085]}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a833ddfef99e83199ccdedf2fa8b6187658f66dc", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "BUS ST REMY", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ded4524b8ab5f1723fc2523645a25eb618e9e6c7", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "FOURS EN VEXIN", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7dbde3a46870672b59e60be9a02c373e07748b6", "fields": {"nom_de_la_commune": "ETURQUERAYE", "libell_d_acheminement": "ETURQUERAYE", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27228"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d4a1ac838f1c4e38e0756a2879271d3e9f2d55", "fields": {"code_postal": "27000", "code_commune_insee": "27229", "libell_d_acheminement": "EVREUX", "ligne_5": "LA MADELEINE", "nom_de_la_commune": "EVREUX", "coordonnees_gps": [49.0199173611, 1.14145974873]}, "geometry": {"type": "Point", "coordinates": [1.14145974873, 49.0199173611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff97385b1a22ca447c260924237ca641f4260d05", "fields": {"nom_de_la_commune": "FATOUVILLE GRESTAIN", "libell_d_acheminement": "FATOUVILLE GRESTAIN", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27233"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61cf42776ae0602ccc3047c702c17629acb8a229", "fields": {"nom_de_la_commune": "LE FAVRIL", "libell_d_acheminement": "LE FAVRIL", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27237"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f38592fab057995fb0f05a525a352139efb878e", "fields": {"nom_de_la_commune": "FLEURY SUR ANDELLE", "libell_d_acheminement": "FLEURY SUR ANDELLE", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27246"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f7c90665eadfb8825479af139b763aa20e33f4", "fields": {"nom_de_la_commune": "FONTAINE BELLENGER", "libell_d_acheminement": "FONTAINE BELLENGER", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27249"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53cc8a8ecd88da10f8626f5ceec72208152d0b6", "fields": {"nom_de_la_commune": "FONTAINE L ABBE", "libell_d_acheminement": "FONTAINE L ABBE", "code_postal": "27470", "coordonnees_gps": [49.1014259839, 0.700715090149], "code_commune_insee": "27251"}, "geometry": {"type": "Point", "coordinates": [0.700715090149, 49.1014259839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cea41e25ff11873ec5306b66a0b56bf53a8eea6", "fields": {"nom_de_la_commune": "FONTAINE SOUS JOUY", "libell_d_acheminement": "FONTAINE SOUS JOUY", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27254"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a7768acd16b61030026afc081faa798bc0ff64a", "fields": {"nom_de_la_commune": "LE FRESNE", "libell_d_acheminement": "LE FRESNE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27268"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb72f38d6b1d22eef9f6372364993fdd89e0eb0", "fields": {"nom_de_la_commune": "GADENCOURT", "libell_d_acheminement": "GADENCOURT", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27273"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40e28d93d08e1230834356b9cbd6bc3c1f3cf731", "fields": {"nom_de_la_commune": "GAILLON", "libell_d_acheminement": "GAILLON", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27275"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf0f493557bc747dbbb96e716c2ed9c1968cbae", "fields": {"nom_de_la_commune": "GAMACHES EN VEXIN", "libell_d_acheminement": "GAMACHES EN VEXIN", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27276"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba10320c7bcac3fab71f5e8bd65cc9ed4a898925", "fields": {"nom_de_la_commune": "GASNY", "libell_d_acheminement": "GASNY", "code_postal": "27620", "coordonnees_gps": [49.0961129794, 1.56718347503], "code_commune_insee": "27279"}, "geometry": {"type": "Point", "coordinates": [1.56718347503, 49.0961129794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e461cf757a2bd5ad76329888a0b8993ec556ebd", "fields": {"nom_de_la_commune": "GAUDREVILLE LA RIVIERE", "libell_d_acheminement": "GAUDREVILLE LA RIVIERE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27281"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7291cca7cf96faab2dbaf219396cba8fe9d3760", "fields": {"nom_de_la_commune": "GAUVILLE LA CAMPAGNE", "libell_d_acheminement": "GAUVILLE LA CAMPAGNE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27282"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c7878368043006ce2f52347de96bbb6a63c3e57", "fields": {"nom_de_la_commune": "GOURNAY LE GUERIN", "libell_d_acheminement": "GOURNAY LE GUERIN", "code_postal": "27580", "coordonnees_gps": [48.7461126337, 0.787797028241], "code_commune_insee": "27291"}, "geometry": {"type": "Point", "coordinates": [0.787797028241, 48.7461126337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef86a82a9406193b8315de233a442cab618912f2", "fields": {"nom_de_la_commune": "GRAINVILLE", "libell_d_acheminement": "GRAINVILLE", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27294"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c09dfdbb8fbf683f25dc0687a0052e6db3b7305", "fields": {"nom_de_la_commune": "GRANDVILLIERS", "libell_d_acheminement": "GRANDVILLIERS", "code_postal": "27240", "coordonnees_gps": [48.8630175528, 1.06923363449], "code_commune_insee": "27297"}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ccca738eca51ba1feddae73b8340c1e85a03327", "fields": {"nom_de_la_commune": "GROSLEY SUR RISLE", "libell_d_acheminement": "GROSLEY SUR RISLE", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27300"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a0e873fa16f0ec45571a64850954bf59cbe086", "fields": {"nom_de_la_commune": "HARQUENCY", "libell_d_acheminement": "HARQUENCY", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27315"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c3cb34148d172732833f9c7948c4a57f172994", "fields": {"nom_de_la_commune": "LA HAYE AUBREE", "libell_d_acheminement": "LA HAYE AUBREE", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27317"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ebec2ed8aff6876a8c3c4c71eac55baa5f3a13", "fields": {"nom_de_la_commune": "LA HAYE DU THEIL", "libell_d_acheminement": "LA HAYE DU THEIL", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27320"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cdb7965a69997fc4e2c0e65e9dda07168104825", "fields": {"code_postal": "27630", "code_commune_insee": "27331", "libell_d_acheminement": "HEUBECOURT HARICOURT", "ligne_5": "HEUBECOURT", "nom_de_la_commune": "HEUBECOURT HARICOURT", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275e9e414f315ef3da0814c9d4cc3a32913d8153", "fields": {"nom_de_la_commune": "HEUDEBOUVILLE", "libell_d_acheminement": "HEUDEBOUVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27332"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a7ce9b42b6c2d90555a8209c9baa886fae3d58b", "fields": {"nom_de_la_commune": "HEUDREVILLE EN LIEUVIN", "libell_d_acheminement": "HEUDREVILLE EN LIEUVIN", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27334"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ffd958e0a3a5b42299dd4b7806d272364b5ba05", "fields": {"nom_de_la_commune": "HEUQUEVILLE", "libell_d_acheminement": "HEUQUEVILLE", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27337"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90000cdf45c967112d3897d01817521c67062c6e", "fields": {"nom_de_la_commune": "HONDOUVILLE", "libell_d_acheminement": "HONDOUVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27339"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe38725200173642fa4ddad6d5c2e3d3f004bf1f", "fields": {"nom_de_la_commune": "HOUVILLE EN VEXIN", "libell_d_acheminement": "HOUVILLE EN VEXIN", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27346"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1dd9915d8744bfcf1b91e9af8b9c6403f403e34", "fields": {"nom_de_la_commune": "IVILLE", "libell_d_acheminement": "IVILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27354"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44561ce128546d07761ccee3c9d2a10fe113a206", "fields": {"nom_de_la_commune": "LOUYE", "libell_d_acheminement": "LOUYE", "code_postal": "27650", "coordonnees_gps": [48.7821743197, 1.31343473217], "code_commune_insee": "27376"}, "geometry": {"type": "Point", "coordinates": [1.31343473217, 48.7821743197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "597d419e7056fa5dd10c6bb7915243548c4dcb67", "fields": {"nom_de_la_commune": "MANDEVILLE", "libell_d_acheminement": "MANDEVILLE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27382"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da9a940d9fb085f39d1843cc513270c990c403c6", "fields": {"nom_de_la_commune": "MARTAGNY", "libell_d_acheminement": "MARTAGNY", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27392"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab763e6378b043df730978349b6419fed0fb47b2", "fields": {"nom_de_la_commune": "MEREY", "libell_d_acheminement": "MEREY", "code_postal": "27640", "coordonnees_gps": [48.9602482824, 1.4448225375], "code_commune_insee": "27400"}, "geometry": {"type": "Point", "coordinates": [1.4448225375, 48.9602482824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f9d641fdc7e828bacd9bcf496bc78fed8a5118", "fields": {"nom_de_la_commune": "LE MESNIL FUGUET", "libell_d_acheminement": "LE MESNIL FUGUET", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27401"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3501f9a6461c093fb33f622b399d24098e77e16", "fields": {"nom_de_la_commune": "MISEREY", "libell_d_acheminement": "MISEREY", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27410"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "191a18f47c9ca8c8ee4e1b6c95be60116a73de2e", "fields": {"nom_de_la_commune": "MONTFORT SUR RISLE", "libell_d_acheminement": "MONTFORT SUR RISLE", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27413"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a5bc6268066f9533f410cf7c7fabf86e193fb9b", "fields": {"nom_de_la_commune": "MONTREUIL L ARGILLE", "libell_d_acheminement": "MONTREUIL L ARGILLE", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27414"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3097c7b6e0573606ef500ed008ece9950a5af3d3", "fields": {"code_postal": "27390", "code_commune_insee": "27414", "libell_d_acheminement": "MONTREUIL L ARGILLE", "ligne_5": "ST AQUILIN D AUGERONS", "nom_de_la_commune": "MONTREUIL L ARGILLE", "coordonnees_gps": [48.9214064933, 0.481488505214]}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a7e0b390b7746ef105df97e24e1ac883a8ecfe0", "fields": {"code_postal": "27260", "code_commune_insee": "27415", "libell_d_acheminement": "MORAINVILLE JOUVEAUX", "ligne_5": "JOUVEAUX", "nom_de_la_commune": "MORAINVILLE JOUVEAUX", "coordonnees_gps": [49.2428669826, 0.422894250852]}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f240161a5d975b232b267bf707064de721d4a0d", "fields": {"nom_de_la_commune": "MOUETTES", "libell_d_acheminement": "MOUETTES", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27419"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40217b98f1fb40e80ad1691e41946607350ad2cb", "fields": {"nom_de_la_commune": "MUIDS", "libell_d_acheminement": "MUIDS", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27422"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aa45ea56873d4c80e89b696a9cb358d0479b4d9", "fields": {"code_postal": "27250", "code_commune_insee": "27427", "libell_d_acheminement": "NEAUFLES AUVERGNY", "ligne_5": "AUVERGNY", "nom_de_la_commune": "NEAUFLES AUVERGNY", "coordonnees_gps": [48.8418982747, 0.70407157024]}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9105a3640e38e0ba478aded7379ecb040a74e738", "fields": {"code_postal": "27250", "code_commune_insee": "27427", "libell_d_acheminement": "NEAUFLES AUVERGNY", "ligne_5": "NEAUFLES SUR RISLE", "nom_de_la_commune": "NEAUFLES AUVERGNY", "coordonnees_gps": [48.8418982747, 0.70407157024]}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "725a32955bc214740fca39089bc6a3bb3eac701a", "fields": {"nom_de_la_commune": "LA NEUVE GRANGE", "libell_d_acheminement": "LA NEUVE GRANGE", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27430"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96f70f24f4185429f5ea7d1d2d1ca75af4a128b", "fields": {"nom_de_la_commune": "NOJEON EN VEXIN", "libell_d_acheminement": "NOJEON EN VEXIN", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27437"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f01279ef4941d991a4077c8355ed8fe9f4095d", "fields": {"nom_de_la_commune": "NOTRE DAME DE L ISLE", "libell_d_acheminement": "NOTRE DAME DE L ISLE", "code_postal": "27940", "coordonnees_gps": [49.1799104876, 1.36654248146], "code_commune_insee": "27440"}, "geometry": {"type": "Point", "coordinates": [1.36654248146, 49.1799104876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "095e25c249fe274a43914c3fd0d4ad976e1a40b6", "fields": {"nom_de_la_commune": "NOTRE DAME D EPINE", "libell_d_acheminement": "NOTRE DAME D EPINE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27441"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3def8b34e433e35ede699884da06a15d496dfa4", "fields": {"nom_de_la_commune": "PISEUX", "libell_d_acheminement": "PISEUX", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27457"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc35f4fc91f66d54f63a17c7574e2f82b6ce5d77", "fields": {"nom_de_la_commune": "LES PLACES", "libell_d_acheminement": "LES PLACES", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27459"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b025b68aff905260d492dfef746866de05e75f4f", "fields": {"nom_de_la_commune": "LE PLANQUAY", "libell_d_acheminement": "LE PLANQUAY", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27462"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "770a67b78fccd666db32246a67384905096dfd24", "fields": {"nom_de_la_commune": "LA PYLE", "libell_d_acheminement": "LA PYLE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27482"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db017cf1b7eb213c12134fa53c2ffdb8649d737", "fields": {"nom_de_la_commune": "QUATREMARE", "libell_d_acheminement": "QUATREMARE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27483"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7a21935fa7621bb7ff5dbb7a620e84d663f936f", "fields": {"nom_de_la_commune": "QUILLEBEUF SUR SEINE", "libell_d_acheminement": "QUILLEBEUF SUR SEINE", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27485"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55d89e2e950a92cd2b5ad44814dbf2cc75b6d2f2", "fields": {"nom_de_la_commune": "ST AQUILIN DE PACY", "libell_d_acheminement": "ST AQUILIN DE PACY", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27510"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27ed38f3749cc46a2e01075c7ed0ca249d493813", "fields": {"nom_de_la_commune": "ST DENIS LE FERMENT", "libell_d_acheminement": "ST DENIS LE FERMENT", "code_postal": "27140", "coordonnees_gps": [49.3150271215, 1.74471668878], "code_commune_insee": "27533"}, "geometry": {"type": "Point", "coordinates": [1.74471668878, 49.3150271215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e76d83d8cd4eb1af1f08fd1eeabd7c2b22c68e", "fields": {"nom_de_la_commune": "ST DIDIER DES BOIS", "libell_d_acheminement": "ST DIDIER DES BOIS", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27534"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f1d280d1a18b2f6cf3e9f60417981f39198cca", "fields": {"nom_de_la_commune": "ST ELIER", "libell_d_acheminement": "ST ELIER", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27535"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d8b07feda0546ee936a69b44d4d28357e49f00", "fields": {"nom_de_la_commune": "ST ELOI DE FOURQUES", "libell_d_acheminement": "ST ELOI DE FOURQUES", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27536"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc57235bc1d90c3fa7af2cd2fa01260d40eff8ed", "fields": {"nom_de_la_commune": "ST GERMAIN VILLAGE", "libell_d_acheminement": "ST GERMAIN VILLAGE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27549"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "802a98ca09b8226cb50149f2e4447c09fd17fa8c", "fields": {"nom_de_la_commune": "ST GREGOIRE DU VIEVRE", "libell_d_acheminement": "ST GREGOIRE DU VIEVRE", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27550"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdeaba9b31abd42e95b3e7ae6cbd10f794d7994d", "fields": {"nom_de_la_commune": "ST JEAN DE LA LEQUERAYE", "libell_d_acheminement": "ST JEAN DE LA LEQUERAYE", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27551"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5fa572ec50d4968a485b34f78d33bd9ac6f19d", "fields": {"nom_de_la_commune": "ST MACLOU", "libell_d_acheminement": "ST MACLOU", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27561"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904b029a84d68557a95ed4117ad2f54fcc46f6b1", "fields": {"nom_de_la_commune": "ST MARDS DE FRESNE", "libell_d_acheminement": "ST MARDS DE FRESNE", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27564"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34b2686a777a244d5c4bf936c60d4a29987c583c", "fields": {"code_postal": "27160", "code_commune_insee": "27565", "libell_d_acheminement": "LE LESME", "ligne_5": "GUERNANVILLE", "nom_de_la_commune": "LE LESME", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d18f2b309d011e9cd415de1d1d7cd0139336ea", "fields": {"code_postal": "27160", "code_commune_insee": "27565", "libell_d_acheminement": "LE LESME", "ligne_5": "STE MARGUERITE DE L AUTEL", "nom_de_la_commune": "LE LESME", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a1b306b86b19b4f1125e0d4706a25f49c01214", "fields": {"nom_de_la_commune": "CALONGES", "libell_d_acheminement": "CALONGES", "code_postal": "47430", "coordonnees_gps": [44.4038524558, 0.201607662579], "code_commune_insee": "47046"}, "geometry": {"type": "Point", "coordinates": [0.201607662579, 44.4038524558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1bcf1e62ab79eb18b1290dac95d8f91af08c12", "fields": {"nom_de_la_commune": "CASSENEUIL", "libell_d_acheminement": "CASSENEUIL", "code_postal": "47440", "coordonnees_gps": [44.4570555688, 0.630745271337], "code_commune_insee": "47049"}, "geometry": {"type": "Point", "coordinates": [0.630745271337, 44.4570555688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78f9dd1689fdcc973bb4ac6a9381f5c80bc8214a", "fields": {"nom_de_la_commune": "CASSIGNAS", "libell_d_acheminement": "CASSIGNAS", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47050"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a9a671133aa1b527a7f83255011818c6899266", "fields": {"nom_de_la_commune": "CAUBEYRES", "libell_d_acheminement": "CAUBEYRES", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47058"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87b68f8b946f1ddd10ec6fbdc969ba453f0e2d54", "fields": {"nom_de_la_commune": "CUQ", "libell_d_acheminement": "CUQ", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47076"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8cd413109d24ba9825d2821532392528a6d06a4", "fields": {"nom_de_la_commune": "DOUZAINS", "libell_d_acheminement": "DOUZAINS", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47084"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a435ba974423ff368c98b68727525f9c8621741a", "fields": {"nom_de_la_commune": "DURAS", "libell_d_acheminement": "DURAS", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47086"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057ac0b4a332cefcb0865b75987d43f9cc20af35", "fields": {"nom_de_la_commune": "ESTILLAC", "libell_d_acheminement": "ESTILLAC", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47091"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb3b7366be39139cf124a537ea8c6df911c24782", "fields": {"nom_de_la_commune": "FALS", "libell_d_acheminement": "FALS", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47092"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf5fbc59379036125da7c8cfcc45eab8d719492", "fields": {"nom_de_la_commune": "FARGUES SUR OURBISE", "libell_d_acheminement": "FARGUES SUR OURBISE", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47093"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61d57f15bb784c1db998b0dd8e12120a7fd4a84b", "fields": {"nom_de_la_commune": "FUMEL", "libell_d_acheminement": "FUMEL", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47106"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afd6c5951c25633a5b5a64bcd47942d886a3159a", "fields": {"nom_de_la_commune": "GALAPIAN", "libell_d_acheminement": "GALAPIAN", "code_postal": "47190", "coordonnees_gps": [44.302646925, 0.368757601165], "code_commune_insee": "47107"}, "geometry": {"type": "Point", "coordinates": [0.368757601165, 44.302646925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89386ae3b7a3154cf4fac17b0fc51cd30cb435fb", "fields": {"nom_de_la_commune": "GONTAUD DE NOGARET", "libell_d_acheminement": "GONTAUD DE NOGARET", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47110"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a0891e77975235c8f76020a6d3ae44a4af5f62", "fields": {"nom_de_la_commune": "GRATELOUP ST GAYRAND", "libell_d_acheminement": "GRATELOUP ST GAYRAND", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47112"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a3fed769b37c9496828beaa48377be7e91a0c1", "fields": {"code_postal": "47400", "code_commune_insee": "47112", "libell_d_acheminement": "GRATELOUP ST GAYRAND", "ligne_5": "ST GAYRAND", "nom_de_la_commune": "GRATELOUP ST GAYRAND", "coordonnees_gps": [44.4196424813, 0.319074824961]}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f18c688471fab12eed839bb5ad521e8136573b6", "fields": {"nom_de_la_commune": "ST CLAIR", "libell_d_acheminement": "ST CLAIR", "code_postal": "07430", "coordonnees_gps": [45.2574690023, 4.70801492444], "code_commune_insee": "07225"}, "geometry": {"type": "Point", "coordinates": [4.70801492444, 45.2574690023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b294a61ad275f01706a588bdaabe3b395c100d", "fields": {"nom_de_la_commune": "ST SAUVEUR SUR TINEE", "libell_d_acheminement": "ST SAUVEUR SUR TINEE", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06129"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf0d07db2f1960469deb37fd88a6aada111d72e", "fields": {"nom_de_la_commune": "TOUET DE L ESCARENE", "libell_d_acheminement": "TOUET DE L ESCARENE", "code_postal": "06440", "coordonnees_gps": [43.849932937, 7.37396481834], "code_commune_insee": "06142"}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e4d476c4dd8656181fcb9d29613050010c1d89", "fields": {"nom_de_la_commune": "ST VALLIER DE THIEY", "libell_d_acheminement": "ST VALLIER DE THIEY", "code_postal": "06460", "coordonnees_gps": [43.715574812, 6.8479951556], "code_commune_insee": "06130"}, "geometry": {"type": "Point", "coordinates": [6.8479951556, 43.715574812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ef5b4aac0b8cebc8dccbfcccf9e1a0bce630b76", "fields": {"nom_de_la_commune": "ST PAUL DE VENCE", "libell_d_acheminement": "ST PAUL DE VENCE", "code_postal": "06570", "coordonnees_gps": [43.6959078389, 7.12090388438], "code_commune_insee": "06128"}, "geometry": {"type": "Point", "coordinates": [7.12090388438, 43.6959078389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f002fa8166075edabaa3969085779bc1e4666e3", "fields": {"nom_de_la_commune": "TOUET SUR VAR", "libell_d_acheminement": "TOUET SUR VAR", "code_postal": "06710", "coordonnees_gps": [43.9477218616, 7.07933141259], "code_commune_insee": "06143"}, "geometry": {"type": "Point", "coordinates": [7.07933141259, 43.9477218616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcbe63bdccda8cc91ceed1ad5787a60b322306dc", "fields": {"nom_de_la_commune": "SALLAGRIFFON", "libell_d_acheminement": "SALLAGRIFFON", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06131"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5352366119f303c364f54a2abc5841d6bce114db", "fields": {"nom_de_la_commune": "ST ANTONIN", "libell_d_acheminement": "ST ANTONIN", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06115"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2373b440716bcad73029fa85eaf1dc9fb29925", "fields": {"nom_de_la_commune": "ST JEANNET", "libell_d_acheminement": "ST JEANNET", "code_postal": "06640", "coordonnees_gps": [43.7589250938, 7.14075677755], "code_commune_insee": "06122"}, "geometry": {"type": "Point", "coordinates": [7.14075677755, 43.7589250938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd684e7c1d6ed6b8bbd9fc9700e4786cda87b3a9", "fields": {"nom_de_la_commune": "ACCONS", "libell_d_acheminement": "ACCONS", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07001"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "035923d2264000c8a29db7de2bdb46470038ed68", "fields": {"nom_de_la_commune": "VENCE", "libell_d_acheminement": "VENCE", "code_postal": "06140", "coordonnees_gps": [43.7526765774, 7.06029224738], "code_commune_insee": "06157"}, "geometry": {"type": "Point", "coordinates": [7.06029224738, 43.7526765774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "724286d30790a1dc9741b002944bff3c04641fc5", "fields": {"code_postal": "06470", "code_commune_insee": "06094", "libell_d_acheminement": "PEONE", "ligne_5": "VALBERG", "nom_de_la_commune": "PEONE", "coordonnees_gps": [44.1262277999, 6.84545324437]}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abeeb793e28103f684db8cd4b242219fe7afc087", "fields": {"nom_de_la_commune": "LA ROQUE EN PROVENCE", "libell_d_acheminement": "LA ROQUE EN PROVENCE", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06107"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a68412d0f5dc1e3fd0bb31695c67c0ec3453db", "fields": {"nom_de_la_commune": "GREOLIERES", "libell_d_acheminement": "GREOLIERES", "code_postal": "06620", "coordonnees_gps": [43.7673356275, 6.94848216496], "code_commune_insee": "06070"}, "geometry": {"type": "Point", "coordinates": [6.94848216496, 43.7673356275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36c4ee766f9dac353940f0a5f0a5c332201208f0", "fields": {"nom_de_la_commune": "GUILLAUMES", "libell_d_acheminement": "GUILLAUMES", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06071"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd68dd533fae0405744bc0fc7752bd38911a18b9", "fields": {"nom_de_la_commune": "PEYMEINADE", "libell_d_acheminement": "PEYMEINADE", "code_postal": "06530", "coordonnees_gps": [43.6477554708, 6.83535219439], "code_commune_insee": "06095"}, "geometry": {"type": "Point", "coordinates": [6.83535219439, 43.6477554708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a7afd7d89b8aef8f63a1d255a58f24c9cc14d23", "fields": {"nom_de_la_commune": "MALAUSSENE", "libell_d_acheminement": "MALAUSSENE", "code_postal": "06710", "coordonnees_gps": [43.9477218616, 7.07933141259], "code_commune_insee": "06078"}, "geometry": {"type": "Point", "coordinates": [7.07933141259, 43.9477218616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db4b3ae25b0b354a8e142ddbc108ae823e708d1", "fields": {"nom_de_la_commune": "LE MAS", "libell_d_acheminement": "LE MAS", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06081"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab5500329a3a23fd9ce7b9d6e58b3c12a02a1a71", "fields": {"nom_de_la_commune": "MENTON", "libell_d_acheminement": "MENTON", "code_postal": "06500", "coordonnees_gps": [43.8073366872, 7.47793852475], "code_commune_insee": "06083"}, "geometry": {"type": "Point", "coordinates": [7.47793852475, 43.8073366872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f70c571ef45450a553f69a9a5a63c45c7b633a", "fields": {"nom_de_la_commune": "PEILLE", "libell_d_acheminement": "PEILLE", "code_postal": "06440", "coordonnees_gps": [43.849932937, 7.37396481834], "code_commune_insee": "06091"}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da60f0b73930aef6075c82fa56eb8db3112b349e", "fields": {"nom_de_la_commune": "OPIO", "libell_d_acheminement": "OPIO", "code_postal": "06650", "coordonnees_gps": [43.6665802809, 7.00909977966], "code_commune_insee": "06089"}, "geometry": {"type": "Point", "coordinates": [7.00909977966, 43.6665802809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6072bfd04518470f593e302d9c37c31d2fe0ed89", "fields": {"nom_de_la_commune": "BOULIEU LES ANNONAY", "libell_d_acheminement": "BOULIEU LES ANNONAY", "code_postal": "07100", "coordonnees_gps": [45.2521053089, 4.64438732099], "code_commune_insee": "07041"}, "geometry": {"type": "Point", "coordinates": [4.64438732099, 45.2521053089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469be74a6af76f7a43436a6531653b0ea2145b15", "fields": {"nom_de_la_commune": "ARRAS SUR RHONE", "libell_d_acheminement": "ARRAS SUR RHONE", "code_postal": "07370", "coordonnees_gps": [45.1661019066, 4.77535280586], "code_commune_insee": "07015"}, "geometry": {"type": "Point", "coordinates": [4.77535280586, 45.1661019066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96a62be108371280037781a778ffe8fa87c8a807", "fields": {"nom_de_la_commune": "BOURG ST ANDEOL", "libell_d_acheminement": "BOURG ST ANDEOL", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07042"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b36cccbcbfd4ade8aba77e7f05539173bbf1faa5", "fields": {"nom_de_la_commune": "ALBOUSSIERE", "libell_d_acheminement": "ALBOUSSIERE", "code_postal": "07440", "coordonnees_gps": [44.944716427, 4.72650218637], "code_commune_insee": "07007"}, "geometry": {"type": "Point", "coordinates": [4.72650218637, 44.944716427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbd453c673a9c59e7c2e6d215ffa8350282bf61b", "fields": {"nom_de_la_commune": "CHASSIERS", "libell_d_acheminement": "CHASSIERS", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07058"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07580438ad6c45a04d2cf0b134062b4534a4fbd6", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "07460", "coordonnees_gps": [44.343480855, 4.20658690309], "code_commune_insee": "07028"}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf3657bb76506775ffeac757ed504b51156cff1b", "fields": {"nom_de_la_commune": "BALAZUC", "libell_d_acheminement": "BALAZUC", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07023"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d8d2749191b120c73c171e30c8c77d82038694", "fields": {"nom_de_la_commune": "CHANEAC", "libell_d_acheminement": "CHANEAC", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07054"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8746788e126d0e0f988b37f1943c3bdf576ebba", "fields": {"nom_de_la_commune": "CHARNAS", "libell_d_acheminement": "CHARNAS", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07056"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2cfad11b1c5c4756e4444aa3fd30631ff623c0", "fields": {"nom_de_la_commune": "ARCENS", "libell_d_acheminement": "ARCENS", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07012"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3d418bf68e985f2186db1d324f11ff5a6cb0c2b", "fields": {"nom_de_la_commune": "DUNIERE SUR EYRIEUX", "libell_d_acheminement": "DUNIERE SUR EYRIEUX", "code_postal": "07360", "coordonnees_gps": [44.8234366694, 4.65142319942], "code_commune_insee": "07083"}, "geometry": {"type": "Point", "coordinates": [4.65142319942, 44.8234366694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "226903649f7bb57833741b05efbeafa8016a7ceb", "fields": {"nom_de_la_commune": "LE CRESTET", "libell_d_acheminement": "LE CRESTET", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07073"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ce43db5962dfe1954df5ba915b068fd67d23b2d", "fields": {"nom_de_la_commune": "DESAIGNES", "libell_d_acheminement": "DESAIGNES", "code_postal": "07570", "coordonnees_gps": [44.9988716933, 4.49981967346], "code_commune_insee": "07079"}, "geometry": {"type": "Point", "coordinates": [4.49981967346, 44.9988716933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a0c0d809ff279bdd066e611a8220c4e1e7dbc0", "fields": {"nom_de_la_commune": "CHEMINAS", "libell_d_acheminement": "CHEMINAS", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07063"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a4d2b68565db0d300c2e78aa898d4c5b090d05", "fields": {"nom_de_la_commune": "CHAZEAUX", "libell_d_acheminement": "CHAZEAUX", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07062"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43af9993abca35537888792408a235b4b54ebc1a", "fields": {"nom_de_la_commune": "FLAVIAC", "libell_d_acheminement": "FLAVIAC", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07090"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e7b717b56f700d800571d9ee5699df6a4255eb", "fields": {"nom_de_la_commune": "CORNAS", "libell_d_acheminement": "CORNAS", "code_postal": "07130", "coordonnees_gps": [44.9316322296, 4.81226403261], "code_commune_insee": "07070"}, "geometry": {"type": "Point", "coordinates": [4.81226403261, 44.9316322296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d8a6174d7e3f97c60d619c7732c7d0fc47b681", "fields": {"nom_de_la_commune": "FABRAS", "libell_d_acheminement": "FABRAS", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07087"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5987c4ecd53dda18276036a9c91113c5ba6d28b4", "fields": {"nom_de_la_commune": "CRUAS", "libell_d_acheminement": "CRUAS", "code_postal": "07350", "coordonnees_gps": [44.6563301975, 4.7560674147], "code_commune_insee": "07076"}, "geometry": {"type": "Point", "coordinates": [4.7560674147, 44.6563301975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ccb8f0e8b2a897ce362a37cd78cc43aee34c1db", "fields": {"nom_de_la_commune": "GLUN", "libell_d_acheminement": "GLUN", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07097"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d93f5c7c5e02441f157176ffa5c8f7543ee6d14", "fields": {"nom_de_la_commune": "ST MARCEL LES ANNONAY", "libell_d_acheminement": "ST MARCEL LES ANNONAY", "code_postal": "07100", "coordonnees_gps": [45.2521053089, 4.64438732099], "code_commune_insee": "07265"}, "geometry": {"type": "Point", "coordinates": [4.64438732099, 45.2521053089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f9bbd3108d38e0bdacd5111d2e09ed4f74e2e5c", "fields": {"nom_de_la_commune": "ST LAURENT LES BAINS", "libell_d_acheminement": "ST LAURENT LES BAINS", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07262"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522f6aba4af9e7cf0f3f47e6fa7ff4f3d5e90d99", "fields": {"nom_de_la_commune": "ST MARTIN D ARDECHE", "libell_d_acheminement": "ST MARTIN D ARDECHE", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07268"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feec8803e2295346476bbbcd92a0b709ba64bd8c", "fields": {"nom_de_la_commune": "ST JUST D ARDECHE", "libell_d_acheminement": "ST JUST D ARDECHE", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07259"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4118bc1724c4f5e3a67a4b87c94c9fdb521d5e9", "fields": {"nom_de_la_commune": "ST JEAN CHAMBRE", "libell_d_acheminement": "ST JEAN CHAMBRE", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07244"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2b0e97a6b70dc70e3c7f60ce747bfd98c8c4f42", "fields": {"nom_de_la_commune": "ST MARTIAL", "libell_d_acheminement": "ST MARTIAL", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07267"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5254c96debfe99c3ce4b988b644ac6a19c94464d", "fields": {"nom_de_la_commune": "LABASTIDE SUR BESORGUES", "libell_d_acheminement": "LABASTIDE SUR BESORGUES", "code_postal": "07600", "coordonnees_gps": [44.7013043374, 4.34237550127], "code_commune_insee": "07112"}, "geometry": {"type": "Point", "coordinates": [4.34237550127, 44.7013043374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3c31c3f55f4474b9f7e1c76bcbc08e99aa15544", "fields": {"nom_de_la_commune": "LALEVADE D ARDECHE", "libell_d_acheminement": "LALEVADE D ARDECHE", "code_postal": "07380", "coordonnees_gps": [44.6419926535, 4.23684752735], "code_commune_insee": "07127"}, "geometry": {"type": "Point", "coordinates": [4.23684752735, 44.6419926535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb20661ee2d3704efc27f3c34594f85e35ddf390", "fields": {"nom_de_la_commune": "GUILHERAND GRANGES", "libell_d_acheminement": "GUILHERAND GRANGES", "code_postal": "07500", "coordonnees_gps": [44.9303487505, 4.86624054251], "code_commune_insee": "07102"}, "geometry": {"type": "Point", "coordinates": [4.86624054251, 44.9303487505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6e38fbdafaaffcca1ceaac656dfc92767eb7bc", "fields": {"nom_de_la_commune": "LABASTIDE DE VIRAC", "libell_d_acheminement": "LABASTIDE DE VIRAC", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07113"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5368449b3b4bed05bbab91de8ea652d099b02e89", "fields": {"nom_de_la_commune": "LABATIE D ANDAURE", "libell_d_acheminement": "LABATIE D ANDAURE", "code_postal": "07570", "coordonnees_gps": [44.9988716933, 4.49981967346], "code_commune_insee": "07114"}, "geometry": {"type": "Point", "coordinates": [4.49981967346, 44.9988716933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6180970694a558ee2c8c8569892e3f30011441", "fields": {"nom_de_la_commune": "GROSPIERRES", "libell_d_acheminement": "GROSPIERRES", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07101"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb55c39c5f736c278bd576e372dfd59389f3195", "fields": {"nom_de_la_commune": "LABLACHERE", "libell_d_acheminement": "LABLACHERE", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07117"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7df31fe81b3be33271daefbb00076ccd89482b3", "fields": {"nom_de_la_commune": "GRAVIERES", "libell_d_acheminement": "GRAVIERES", "code_postal": "07140", "coordonnees_gps": [44.4499905153, 4.07415395181], "code_commune_insee": "07100"}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a408cf8843d6ca9015a5bff3ec17667d29a07d", "fields": {"nom_de_la_commune": "LABEAUME", "libell_d_acheminement": "LABEAUME", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07115"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbbae5456b38b9e85821003435b42c3f4dd0c12", "fields": {"nom_de_la_commune": "JOYEUSE", "libell_d_acheminement": "JOYEUSE", "code_postal": "07260", "coordonnees_gps": [44.5251874265, 4.14554132522], "code_commune_insee": "07110"}, "geometry": {"type": "Point", "coordinates": [4.14554132522, 44.5251874265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d178f1bf415f92f5de888a8c4a5e6204a23b4cc4", "fields": {"nom_de_la_commune": "ST MICHEL DE CHABRILLANOUX", "libell_d_acheminement": "ST MICHEL DE CHABRILLANOUX", "code_postal": "07360", "coordonnees_gps": [44.8234366694, 4.65142319942], "code_commune_insee": "07278"}, "geometry": {"type": "Point", "coordinates": [4.65142319942, 44.8234366694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0508e10c72d4207019f62e1da6a522d3e7227c", "fields": {"nom_de_la_commune": "ST SAUVEUR DE CRUZIERES", "libell_d_acheminement": "ST SAUVEUR DE CRUZIERES", "code_postal": "07460", "coordonnees_gps": [44.343480855, 4.20658690309], "code_commune_insee": "07294"}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4cc8f332e65613b6bb11d18395e93ae646f98b9", "fields": {"nom_de_la_commune": "ST PIERRE DE COLOMBIER", "libell_d_acheminement": "ST PIERRE DE COLOMBIER", "code_postal": "07450", "coordonnees_gps": [44.7645631689, 4.23610675314], "code_commune_insee": "07282"}, "geometry": {"type": "Point", "coordinates": [4.23610675314, 44.7645631689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956425fafa8d801b65b119c6a03b5af55f29e35e", "fields": {"nom_de_la_commune": "ST VINCENT DE DURFORT", "libell_d_acheminement": "ST VINCENT DE DURFORT", "code_postal": "07360", "coordonnees_gps": [44.8234366694, 4.65142319942], "code_commune_insee": "07303"}, "geometry": {"type": "Point", "coordinates": [4.65142319942, 44.8234366694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c87dbf3150e0b9fcdd67fc8e12595f49521fc6b1", "fields": {"nom_de_la_commune": "ST SAUVEUR DE MONTAGUT", "libell_d_acheminement": "ST SAUVEUR DE MONTAGUT", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07295"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fee3b0d6b55fe48c9d2f91ee6d363fbc5c28b10", "fields": {"nom_de_la_commune": "ST ROMAIN DE LERPS", "libell_d_acheminement": "ST ROMAIN DE LERPS", "code_postal": "07130", "coordonnees_gps": [44.9316322296, 4.81226403261], "code_commune_insee": "07293"}, "geometry": {"type": "Point", "coordinates": [4.81226403261, 44.9316322296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3a88320d72e21a7da113e03d0068d0b3ffadf41", "fields": {"nom_de_la_commune": "ST MAURICE D IBIE", "libell_d_acheminement": "ST MAURICE D IBIE", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07273"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b7de4fda37d02b5e317c76a01c9d8860fd26df0", "fields": {"nom_de_la_commune": "ST MONTAN", "libell_d_acheminement": "ST MONTAN", "code_postal": "07220", "coordonnees_gps": [44.4661661995, 4.63717966246], "code_commune_insee": "07279"}, "geometry": {"type": "Point", "coordinates": [4.63717966246, 44.4661661995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "221c354713d79667be34c7fa6e9b16baba720ba0", "fields": {"nom_de_la_commune": "VANOSC", "libell_d_acheminement": "VANOSC", "code_postal": "07690", "coordonnees_gps": [45.1829664492, 4.50688842941], "code_commune_insee": "07333"}, "geometry": {"type": "Point", "coordinates": [4.50688842941, 45.1829664492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "018423633c55e9c09ce2a2fc795f0da32cc1d42c", "fields": {"code_postal": "08240", "code_commune_insee": "08057", "libell_d_acheminement": "BELLEVILLE ET CHATILLON SUR BAR", "ligne_5": "CHATILLON SUR BAR", "nom_de_la_commune": "BELLEVILLE ET CHATILLON SUR BAR", "coordonnees_gps": [49.4367865299, 4.95899557171]}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e401a20ac5438c10ba68684ae6f7ec727faca432", "fields": {"code_postal": "08290", "code_commune_insee": "08069", "libell_d_acheminement": "BLANCHEFOSSE ET BAY", "ligne_5": "BAY", "nom_de_la_commune": "BLANCHEFOSSE ET BAY", "coordonnees_gps": [49.7819854475, 4.29783858253]}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75143c85f43dd0b20b0a5aee2a5d277e2cbadb3d", "fields": {"nom_de_la_commune": "LE CHATELET SUR SORMONNE", "libell_d_acheminement": "LE CHATELET SUR SORMONNE", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08110"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f995aa31fa1dc6f5659a9b47f29b9901aca66da", "fields": {"nom_de_la_commune": "CHAUMONT PORCIEN", "libell_d_acheminement": "CHAUMONT PORCIEN", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08113"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9ff7783708ac4d106e76b85a40daf98eb56c3b", "fields": {"nom_de_la_commune": "CHALANDRY ELAIRE", "libell_d_acheminement": "CHALANDRY ELAIRE", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08096"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77ba3f07f840440ee575a21f8fdb7307f34bf6d8", "fields": {"nom_de_la_commune": "BOULT AUX BOIS", "libell_d_acheminement": "BOULT AUX BOIS", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08075"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc8cda3bb9b185ff5610ccb9384d9d307b28c35c", "fields": {"nom_de_la_commune": "BOURG FIDELE", "libell_d_acheminement": "BOURG FIDELE", "code_postal": "08230", "coordonnees_gps": [49.9157903394, 4.51147538743], "code_commune_insee": "08078"}, "geometry": {"type": "Point", "coordinates": [4.51147538743, 49.9157903394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bc25d38ac28195fe6059e78dd28bcca48b8ed50", "fields": {"nom_de_la_commune": "LA BESACE", "libell_d_acheminement": "LA BESACE", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08063"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "543e4f5bbf99945757fe38f01c949670e17d5daf", "fields": {"nom_de_la_commune": "CERNION", "libell_d_acheminement": "CERNION", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08094"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f569892128067fe49fd6d4c0d150a339dec9c64", "fields": {"nom_de_la_commune": "BARBY", "libell_d_acheminement": "BARBY", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08048"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f319c61e299ed84bf2c46cf1ff7679eb796cd96c", "fields": {"nom_de_la_commune": "LES PETITES ARMOISES", "libell_d_acheminement": "LES PETITES ARMOISES", "code_postal": "08390", "coordonnees_gps": [49.5311407275, 4.82165471787], "code_commune_insee": "08020"}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b959c3c9aed55dd5b1f9704c860bf21e066c66aa", "fields": {"nom_de_la_commune": "AUVILLERS LES FORGES", "libell_d_acheminement": "AUVILLERS LES FORGES", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08037"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2ccb187b3a9a76024b32eb6c9d4cbbdc2c62fa", "fields": {"nom_de_la_commune": "AUBONCOURT VAUZELLES", "libell_d_acheminement": "AUBONCOURT VAUZELLES", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08027"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e3f003a26c43657a943c9b2e766f07bea5ca5bc", "fields": {"nom_de_la_commune": "VILLEVOCANCE", "libell_d_acheminement": "VILLEVOCANCE", "code_postal": "07690", "coordonnees_gps": [45.1829664492, 4.50688842941], "code_commune_insee": "07342"}, "geometry": {"type": "Point", "coordinates": [4.50688842941, 45.1829664492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70eed23803d5dc784d54270183a1c6127e95c732", "fields": {"nom_de_la_commune": "VAUDEVANT", "libell_d_acheminement": "VAUDEVANT", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07335"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b957a124689d9f812eb02e592f2d2a5a654b675f", "fields": {"nom_de_la_commune": "AIGLEMONT", "libell_d_acheminement": "AIGLEMONT", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08003"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f3adf173dac7e6c524ceb319ff21fd121853891", "fields": {"nom_de_la_commune": "AUFLANCE", "libell_d_acheminement": "AUFLANCE", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08029"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc70f562fd0eb497a09a3cd44373c9642f5c61f", "fields": {"nom_de_la_commune": "VESSEAUX", "libell_d_acheminement": "VESSEAUX", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07339"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f68412485a6405d1d0c6d68a5254425033cedcc", "fields": {"nom_de_la_commune": "AMAGNE", "libell_d_acheminement": "AMAGNE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08008"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05b27fe4faf58789d3db7da67b210446e91a3959", "fields": {"nom_de_la_commune": "VOGUE", "libell_d_acheminement": "VOGUE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07348"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49b318d31f734ba8ce3531ab745bf0d4d7b41d21", "fields": {"code_postal": "08390", "code_commune_insee": "08116", "libell_d_acheminement": "BAIRON ET SES ENVIRONS", "ligne_5": "LE CHESNE", "nom_de_la_commune": "BAIRON ET SES ENVIRONS", "coordonnees_gps": [49.5311407275, 4.82165471787]}, "geometry": {"type": "Point", "coordinates": [4.82165471787, 49.5311407275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad33321b7cff9bb67be9a67c0be6347194c6be9e", "fields": {"code_postal": "08450", "code_commune_insee": "08115", "libell_d_acheminement": "CHEMERY CHEHERY", "ligne_5": "CONNAGE", "nom_de_la_commune": "CHEMERY CHEHERY", "coordonnees_gps": [49.6051172684, 4.92625814673]}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814bb3ab2e4131241074d446aff10d64b766aeb4", "fields": {"code_postal": "08350", "code_commune_insee": "08115", "libell_d_acheminement": "CHEMERY CHEHERY", "ligne_5": "CHEHERY", "nom_de_la_commune": "CHEMERY CHEHERY", "coordonnees_gps": [49.6865527767, 4.88064716793]}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0002fc2eac1af6073acf69d845e37295dd4982", "fields": {"nom_de_la_commune": "CONDE LES HERPY", "libell_d_acheminement": "CONDE LES HERPY", "code_postal": "08360", "coordonnees_gps": [49.5450302072, 4.21650848613], "code_commune_insee": "08126"}, "geometry": {"type": "Point", "coordinates": [4.21650848613, 49.5450302072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19bc7eb2f61699aad68f0be647e304bf610c26f9", "fields": {"nom_de_la_commune": "CLAVY WARBY", "libell_d_acheminement": "CLAVY WARBY", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08124"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8063e7239320467c1debaaeaea2eb121f072f66", "fields": {"code_postal": "08150", "code_commune_insee": "08370", "libell_d_acheminement": "ROUVROY SUR AUDRY", "ligne_5": "SERVION", "nom_de_la_commune": "ROUVROY SUR AUDRY", "coordonnees_gps": [49.8122244724, 4.52545242673]}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c52cdddc90e87bc27c7b291fc851d9f402c2d7fd", "fields": {"code_postal": "08220", "code_commune_insee": "08366", "libell_d_acheminement": "ROCQUIGNY", "ligne_5": "LA HARDOYE", "nom_de_la_commune": "ROCQUIGNY", "coordonnees_gps": [49.6447010155, 4.20764091673]}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce30edd3f8f7557422df73b1040417f377264eb", "fields": {"nom_de_la_commune": "RUBECOURT ET LAMECOURT", "libell_d_acheminement": "RUBECOURT ET LAMECOURT", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08371"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee022c8e0deb78f5c9a2119a58f0e8724213cc55", "fields": {"nom_de_la_commune": "ST ETIENNE A ARNES", "libell_d_acheminement": "ST ETIENNE A ARNES", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08379"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502e7ab5a052174e556b71120025963e3781fb4c", "fields": {"nom_de_la_commune": "ST JEAN AUX BOIS", "libell_d_acheminement": "ST JEAN AUX BOIS", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08382"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d9474d4fba32d57e9187a6062d16e776a151db", "fields": {"nom_de_la_commune": "ST LOUP TERRIER", "libell_d_acheminement": "ST LOUP TERRIER", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08387"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d26650ec3ece4a45489f33e38d571b22203b294", "fields": {"nom_de_la_commune": "ST GERMAINMONT", "libell_d_acheminement": "ST GERMAINMONT", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08381"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3df0539e2908030bb6d2f7b4468e01ec4491d9", "fields": {"nom_de_la_commune": "RIMOGNE", "libell_d_acheminement": "RIMOGNE", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08365"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9aaed00b9c70b8c1036b6b3b6d826baba391b0", "fields": {"nom_de_la_commune": "RETHEL", "libell_d_acheminement": "RETHEL", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08362"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8bed283e18ca6c36ae020d7ede041676be97287", "fields": {"nom_de_la_commune": "VINETS", "libell_d_acheminement": "VINETS", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10436"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f78611ba974896a1502a180d4344e3e2b6eeca0", "fields": {"nom_de_la_commune": "AIROUX", "libell_d_acheminement": "AIROUX", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11002"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57389fc5c1ec8703283474b95e7f9cb82e07ac5", "fields": {"nom_de_la_commune": "AUNAT", "libell_d_acheminement": "AUNAT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11019"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bb6ddfbfe46daaf9341e0b9315d8831b8a64590", "fields": {"nom_de_la_commune": "BRAM", "libell_d_acheminement": "BRAM", "code_postal": "11150", "coordonnees_gps": [43.2498711617, 2.06462165287], "code_commune_insee": "11049"}, "geometry": {"type": "Point", "coordinates": [2.06462165287, 43.2498711617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0031af70a394d34dc7f17b04f145c4bfcd82013d", "fields": {"code_postal": "11000", "code_commune_insee": "11069", "libell_d_acheminement": "CARCASSONNE", "ligne_5": "MONTLEGUN", "nom_de_la_commune": "CARCASSONNE", "coordonnees_gps": [43.2094356992, 2.34683719247]}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dce8e5a61229d69917c5138f8315c49484e30b0", "fields": {"nom_de_la_commune": "BOURISP", "libell_d_acheminement": "BOURISP", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65106"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ada2dfc4d59e365d8c84d1daaac27433f6110545", "fields": {"nom_de_la_commune": "BOURS", "libell_d_acheminement": "BOURS", "code_postal": "65460", "coordonnees_gps": [43.2812999777, 0.0852833295183], "code_commune_insee": "65108"}, "geometry": {"type": "Point", "coordinates": [0.0852833295183, 43.2812999777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d845c90dcf0f7096bd822a9ca4649466805bebce", "fields": {"nom_de_la_commune": "CABANAC", "libell_d_acheminement": "CABANAC", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65115"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5551c2f4d5584db71fcdc244738135eef66ad61", "fields": {"nom_de_la_commune": "CADEILHAN TRACHERE", "libell_d_acheminement": "CADEILHAN TRACHERE", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65117"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155f294ce20b9010f10e3da9af47cb9770577c4b", "fields": {"nom_de_la_commune": "CAMALES", "libell_d_acheminement": "CAMALES", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65121"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1381c93763fa391ef43ae3dc82c8a9e6b3af33c5", "fields": {"nom_de_la_commune": "CAMPAN", "libell_d_acheminement": "CAMPAN", "code_postal": "65710", "coordonnees_gps": [42.9707906298, 0.166937174771], "code_commune_insee": "65123"}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ea7e9f2ffe6274d781465825886e41a7862802", "fields": {"code_postal": "65710", "code_commune_insee": "65123", "libell_d_acheminement": "CAMPAN", "ligne_5": "STE MARIE DE CAMPAN", "nom_de_la_commune": "CAMPAN", "coordonnees_gps": [42.9707906298, 0.166937174771]}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b7f908fbd6760f68893159ac3347e387af2a9e", "fields": {"nom_de_la_commune": "CAUTERETS", "libell_d_acheminement": "CAUTERETS", "code_postal": "65110", "coordonnees_gps": [42.851971691, -0.126897135719], "code_commune_insee": "65138"}, "geometry": {"type": "Point", "coordinates": [-0.126897135719, 42.851971691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb8b8ef2a440b3d06323f3ea64506a85296aba2", "fields": {"nom_de_la_commune": "CAZAUX DEBAT", "libell_d_acheminement": "CAZAUX DEBAT", "code_postal": "65590", "coordonnees_gps": [42.8710607597, 0.412551570718], "code_commune_insee": "65140"}, "geometry": {"type": "Point", "coordinates": [0.412551570718, 42.8710607597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6a8252c5277c828bfc75885dba3ea426ccb916", "fields": {"code_postal": "65240", "code_commune_insee": "65141", "libell_d_acheminement": "CAZAUX FRECHET ANERAN CAMORS", "ligne_5": "ANERAN CAMORS", "nom_de_la_commune": "CAZAUX FRECHET ANERAN CAMORS", "coordonnees_gps": [42.8315711949, 0.385912028349]}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "483d44444008436d2dac1518ecd735cc94594c03", "fields": {"nom_de_la_commune": "CHIS", "libell_d_acheminement": "CHIS", "code_postal": "65800", "coordonnees_gps": [43.2687329702, 0.110735154449], "code_commune_insee": "65146"}, "geometry": {"type": "Point", "coordinates": [0.110735154449, 43.2687329702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d2737809e3190c579d4f2bdd3228d7481edc61", "fields": {"nom_de_la_commune": "DOURS", "libell_d_acheminement": "DOURS", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65156"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d18ccfdc4b8d66580adcc448423ec14f15789e7", "fields": {"nom_de_la_commune": "ENS", "libell_d_acheminement": "ENS", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65157"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae562039b18996076b58283b9b284759a443020b", "fields": {"nom_de_la_commune": "ESCONNETS", "libell_d_acheminement": "ESCONNETS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65162"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945f2656e7f2aa43ea836458c1a17d67b3341bc7", "fields": {"nom_de_la_commune": "ESCOTS", "libell_d_acheminement": "ESCOTS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65163"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88924ee4565439562886381d6f74fe303270e484", "fields": {"nom_de_la_commune": "ESPARROS", "libell_d_acheminement": "ESPARROS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65165"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56d7f90e18c6e160f332a44e6f6eefee35f41ab", "fields": {"nom_de_la_commune": "ESTERRE", "libell_d_acheminement": "ESTERRE", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65173"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2228dde2eb5187e083ff1f38d9aff0ea29f7f0f0", "fields": {"nom_de_la_commune": "FRECHEDE", "libell_d_acheminement": "FRECHEDE", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65178"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45036227bbc7e7da537a7b6199e94d09499fce7a", "fields": {"code_postal": "65120", "code_commune_insee": "65192", "libell_d_acheminement": "GAVARNIE GEDRE", "ligne_5": "GAVARNIE", "nom_de_la_commune": "GAVARNIE GEDRE", "coordonnees_gps": [42.8310164277, 0.0356881047595]}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32e5aa5bc175b9ae699cdc2619df87c62d6df88f", "fields": {"nom_de_la_commune": "GOUDON", "libell_d_acheminement": "GOUDON", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65206"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28294d01a18729d026be7250b586a576a8f8e495", "fields": {"nom_de_la_commune": "GRAILHEN", "libell_d_acheminement": "GRAILHEN", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65208"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bed7e7caf133d54eace74e1bf2d15a8fcd99931f", "fields": {"nom_de_la_commune": "HECHES", "libell_d_acheminement": "HECHES", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65218"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eecc0fe987d2cf5f08ca1fbfca36f1b8369acbbc", "fields": {"nom_de_la_commune": "HOUEYDETS", "libell_d_acheminement": "HOUEYDETS", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65224"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5acce3857d9f99fa3c6772890fb1462efe0216e2", "fields": {"nom_de_la_commune": "HOURC", "libell_d_acheminement": "HOURC", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65225"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "725a6e62063774cb631069836a9b7a68f06d4d4f", "fields": {"nom_de_la_commune": "ILHEU", "libell_d_acheminement": "ILHEU", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65229"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e31376737554c315de3a2fb71b01783d8653f64", "fields": {"nom_de_la_commune": "LABASTIDE", "libell_d_acheminement": "LABASTIDE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65239"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975a21436d64b299f9dc6306900002bfc3258cb6", "fields": {"nom_de_la_commune": "LAFITOLE", "libell_d_acheminement": "LAFITOLE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65243"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dea64e70750992f89ba350e2df8d1866d4b6a0d", "fields": {"nom_de_la_commune": "LAHITTE TOUPIERE", "libell_d_acheminement": "LAHITTE TOUPIERE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65248"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "970fa5f9114c433dfdeca9c90a79154d766ddacd", "fields": {"nom_de_la_commune": "LALANNE TRIE", "libell_d_acheminement": "LALANNE TRIE", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65250"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cdd146ca605f6835e4a47ed363d1d8416b26fea", "fields": {"nom_de_la_commune": "LALOUBERE", "libell_d_acheminement": "LALOUBERE", "code_postal": "65310", "coordonnees_gps": [43.1967929202, 0.0668474057462], "code_commune_insee": "65251"}, "geometry": {"type": "Point", "coordinates": [0.0668474057462, 43.1967929202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26a014ec622801bf979fe58547833a0cbc3e8eaf", "fields": {"nom_de_la_commune": "LAMARQUE RUSTAING", "libell_d_acheminement": "LAMARQUE RUSTAING", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65253"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf638299446fabe5d1f4614ae5f9ff554bf4d52f", "fields": {"nom_de_la_commune": "LARAN", "libell_d_acheminement": "LARAN", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65261"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b548b832d6104fa151d298a28bf1bedb8a2507d", "fields": {"nom_de_la_commune": "LARROQUE", "libell_d_acheminement": "LARROQUE", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65263"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3a012a98cf4ae389caa2a31f156b9351b681c3", "fields": {"nom_de_la_commune": "LASCAZERES", "libell_d_acheminement": "LASCAZERES", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65264"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75333a2a9a212d71559dc70140c41a014a2e6793", "fields": {"nom_de_la_commune": "LASLADES", "libell_d_acheminement": "LASLADES", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65265"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d6b03d86eb20f02f3d6a2919f723135b29b0e96", "fields": {"nom_de_la_commune": "LESCURRY", "libell_d_acheminement": "LESCURRY", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65269"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "362f99cc20ec1cc5678ce2fcff36ff4307a62916", "fields": {"nom_de_la_commune": "MOLERE", "libell_d_acheminement": "MOLERE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65312"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ab76c51d8aecc72378064e632cb59080f8fe4b7", "fields": {"nom_de_la_commune": "MOMERES", "libell_d_acheminement": "MOMERES", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65313"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d03a62f27f78e5ab78f1622a62f348405546af1c", "fields": {"nom_de_la_commune": "MONTOUSSE", "libell_d_acheminement": "MONTOUSSE", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65322"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c749498ef3c697912a8767a7cc31f19422e27dd", "fields": {"nom_de_la_commune": "MOUMOULOUS", "libell_d_acheminement": "MOUMOULOUS", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65325"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1171f9454732ce8f3281723bec0c1a55b6633b0c", "fields": {"nom_de_la_commune": "MUN", "libell_d_acheminement": "MUN", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65326"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d70d5c1766bdfe82550e038a929c21402fb833b7", "fields": {"nom_de_la_commune": "NEUILH", "libell_d_acheminement": "NEUILH", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65328"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d0915925a3addcfb8b0375837d4abd3450fe3cd", "fields": {"nom_de_la_commune": "ODOS", "libell_d_acheminement": "ODOS", "code_postal": "65310", "coordonnees_gps": [43.1967929202, 0.0668474057462], "code_commune_insee": "65331"}, "geometry": {"type": "Point", "coordinates": [0.0668474057462, 43.1967929202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4850430a634deafbbb925769241bbce0bb41a8a7", "fields": {"nom_de_la_commune": "ORINCLES", "libell_d_acheminement": "ORINCLES", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65339"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5915ced8a5583e395abd4fb8f7536dbd24ce7d4b", "fields": {"nom_de_la_commune": "OSMETS", "libell_d_acheminement": "OSMETS", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65342"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e7c71316d6e955aff4a92f74fbf1420e5b6ffe", "fields": {"nom_de_la_commune": "OURDIS COTDOUSSAN", "libell_d_acheminement": "OURDIS COTDOUSSAN", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65348"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b518a3c30165a03af68cebecf763edfd945a71ad", "fields": {"nom_de_la_commune": "OUSTE", "libell_d_acheminement": "OUSTE", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65351"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a09c75e685da560763cef05cf58eabb1942372b", "fields": {"nom_de_la_commune": "OUZOUS", "libell_d_acheminement": "OUZOUS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65352"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992eff7271d16869c0210928fdfb76def0cad1f8", "fields": {"nom_de_la_commune": "PAILHAC", "libell_d_acheminement": "PAILHAC", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65354"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d5d7ca7d9fa7ee84825fa974c140d24b0885bb", "fields": {"nom_de_la_commune": "PEYROUSE", "libell_d_acheminement": "PEYROUSE", "code_postal": "65270", "coordonnees_gps": [43.0865540375, -0.153402154406], "code_commune_insee": "65360"}, "geometry": {"type": "Point", "coordinates": [-0.153402154406, 43.0865540375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0de624f376ac71f23dd485167a8c7dc97d045212", "fields": {"nom_de_la_commune": "PRECHAC", "libell_d_acheminement": "PRECHAC", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65371"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77369cfa1c9eec858455b326a0569b2eb628918", "fields": {"nom_de_la_commune": "RECURT", "libell_d_acheminement": "RECURT", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65376"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14a5943db273aaa5f25e704989083f3bede02dd5", "fields": {"nom_de_la_commune": "REJAUMONT", "libell_d_acheminement": "REJAUMONT", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65377"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bca717f8a71a62931ed5243ef2463db99f522d3", "fields": {"nom_de_la_commune": "SABALOS", "libell_d_acheminement": "SABALOS", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65380"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d42da273ea26145503990da2633fc599b057df", "fields": {"nom_de_la_commune": "SACOUE", "libell_d_acheminement": "SACOUE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65382"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9757fad3c1077f4cff718a68eeaf67c5e34325d", "fields": {"nom_de_la_commune": "ST CREAC", "libell_d_acheminement": "ST CREAC", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65386"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79bf6be0d121527b608d446943cdb7550c5ec93a", "fields": {"nom_de_la_commune": "ST LARY SOULAN", "libell_d_acheminement": "ST LARY SOULAN", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65388"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d7c88be9954bb2a48304e2caed0a545d5b268d", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65391"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a7ca8b52d7c4c080461dcb0c6a6019144dda45d", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65394"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa4d4651b5e7c96d80992512365c669698724d84", "fields": {"nom_de_la_commune": "ST SEVER DE RUSTAN", "libell_d_acheminement": "ST SEVER DE RUSTAN", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65397"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e900726cbf8acedac7353e2ad4081b689537cec", "fields": {"nom_de_la_commune": "SALLES", "libell_d_acheminement": "SALLES", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65400"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9dc44e09c978e3126a807e8fa4f422668b03252", "fields": {"nom_de_la_commune": "SALLES ADOUR", "libell_d_acheminement": "SALLES ADOUR", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65401"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13db26488c07cc0281d6d751127aae47b142efea", "fields": {"nom_de_la_commune": "SARIAC MAGNOAC", "libell_d_acheminement": "SARIAC MAGNOAC", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65404"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2512b28167840cd44e445cc18a1ed8fccebb371f", "fields": {"nom_de_la_commune": "SAUVETERRE", "libell_d_acheminement": "SAUVETERRE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65412"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "000b52edc07ac5da59e920a4c036eeaf9551ecdf", "fields": {"nom_de_la_commune": "SEMEAC", "libell_d_acheminement": "SEMEAC", "code_postal": "65600", "coordonnees_gps": [43.2273906132, 0.117609350526], "code_commune_insee": "65417"}, "geometry": {"type": "Point", "coordinates": [0.117609350526, 43.2273906132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f88f2df2083196f167a4aebea713c5face789e73", "fields": {"nom_de_la_commune": "SOUYEAUX", "libell_d_acheminement": "SOUYEAUX", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65436"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a167b31723964e544c16e896136e1d566257f49a", "fields": {"nom_de_la_commune": "TARASTEIX", "libell_d_acheminement": "TARASTEIX", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65439"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0125bc28810cadb272540253bcfec15846d5af97", "fields": {"nom_de_la_commune": "THEBE", "libell_d_acheminement": "THEBE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65441"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e92195b81c5dbff013a8f313fb071bd861f38ee", "fields": {"nom_de_la_commune": "THERMES MAGNOAC", "libell_d_acheminement": "THERMES MAGNOAC", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65442"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d24d268438b105b44ff76a3ec26fda463aef01a9", "fields": {"nom_de_la_commune": "TOURNAY", "libell_d_acheminement": "TOURNAY", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65447"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea92467e7953cb43d17b971e81766c8aa6cc9603", "fields": {"nom_de_la_commune": "TRAMEZAIGUES", "libell_d_acheminement": "TRAMEZAIGUES", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65450"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c850b775f7490ef249a74207adb5934948086569", "fields": {"nom_de_la_commune": "TRIE SUR BAISE", "libell_d_acheminement": "TRIE SUR BAISE", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65452"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536355c8b4bae09c89015bf8ec1938fdbb272383", "fields": {"nom_de_la_commune": "VIC EN BIGORRE", "libell_d_acheminement": "VIC EN BIGORRE", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65460"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566fad53bf63b19c1e644cb173a9b18fa9ddd610", "fields": {"nom_de_la_commune": "VIEY", "libell_d_acheminement": "VIEY", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65469"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3772823bd9a5924834ba512fe902bfbbb65fffbc", "fields": {"nom_de_la_commune": "LES ANGLES", "libell_d_acheminement": "LES ANGLES", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66004"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab2ee65d23dd073dd13919c9cd8e5e156744c06", "fields": {"nom_de_la_commune": "ARGELES SUR MER", "libell_d_acheminement": "ARGELES SUR MER", "code_postal": "66700", "coordonnees_gps": [42.5348887985, 3.02437222273], "code_commune_insee": "66008"}, "geometry": {"type": "Point", "coordinates": [3.02437222273, 42.5348887985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1453c2d2819041f92f46ad2b6232a5860306a773", "fields": {"code_postal": "66360", "code_commune_insee": "66010", "libell_d_acheminement": "AYGUATEBIA TALAU", "ligne_5": "TALAU", "nom_de_la_commune": "AYGUATEBIA TALAU", "coordonnees_gps": [42.5209354388, 2.25593024652]}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45b11246341fc6ebe64ec0b4452406313a2a45ef", "fields": {"nom_de_la_commune": "BAILLESTAVY", "libell_d_acheminement": "BAILLESTAVY", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66013"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "407a7d69a17ac5ff5a4f8cb6715f3cf50b57a011", "fields": {"nom_de_la_commune": "BOULE D AMONT", "libell_d_acheminement": "BOULE D AMONT", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66022"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c42bd66c6fb526f655b470c67f5085d1f78363eb", "fields": {"nom_de_la_commune": "BROUILLA", "libell_d_acheminement": "BROUILLA", "code_postal": "66620", "coordonnees_gps": [42.5750209747, 2.8946967291], "code_commune_insee": "66026"}, "geometry": {"type": "Point", "coordinates": [2.8946967291, 42.5750209747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6196abb16d7c0ecbca300001c7d4d56ee1f17e16", "fields": {"nom_de_la_commune": "CABESTANY", "libell_d_acheminement": "CABESTANY", "code_postal": "66330", "coordonnees_gps": [42.6790922841, 2.94584272247], "code_commune_insee": "66028"}, "geometry": {"type": "Point", "coordinates": [2.94584272247, 42.6790922841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e5e626ed73447bd2d6169c4981dd163835b81d8", "fields": {"nom_de_la_commune": "CALCE", "libell_d_acheminement": "CALCE", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66030"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f75720efa9bee3a1071d733b864a7d5db4258b4", "fields": {"code_postal": "66140", "code_commune_insee": "66037", "libell_d_acheminement": "CANET EN ROUSSILLON", "ligne_5": "CANET PLAGE", "nom_de_la_commune": "CANET EN ROUSSILLON", "coordonnees_gps": [42.6840532629, 3.01103032321]}, "geometry": {"type": "Point", "coordinates": [3.01103032321, 42.6840532629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf0aad4782b3595a3bd19886865c3ffe956e5a39", "fields": {"nom_de_la_commune": "CASES DE PENE", "libell_d_acheminement": "CASES DE PENE", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66041"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f21306cfc404f5204e2647cb9e187341881a730c", "fields": {"nom_de_la_commune": "CASSAGNES", "libell_d_acheminement": "CASSAGNES", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66042"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e35c4e00a038f383cf5a64de3208d8a1dfa49bcb", "fields": {"nom_de_la_commune": "CASTELNOU", "libell_d_acheminement": "CASTELNOU", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66044"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10e19ef81b829da154fef65a66fec014abde22a", "fields": {"nom_de_la_commune": "CLARA", "libell_d_acheminement": "CLARA", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66051"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3ae57c455bfe10bda37b5792f3678179690c79", "fields": {"nom_de_la_commune": "CONAT", "libell_d_acheminement": "CONAT", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66054"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2b3e3c24a207dd7bb2ad30cbd38c6b90c273f2", "fields": {"nom_de_la_commune": "CORBERE", "libell_d_acheminement": "CORBERE", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66055"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c5abe6e1243c048bf4937e84e747e97d0cfcac", "fields": {"nom_de_la_commune": "CORNEILLA DE CONFLENT", "libell_d_acheminement": "CORNEILLA DE CONFLENT", "code_postal": "66820", "coordonnees_gps": [42.5365726469, 2.40581074719], "code_commune_insee": "66057"}, "geometry": {"type": "Point", "coordinates": [2.40581074719, 42.5365726469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25eea7bf721b7b5a662686823e8d4a7efddab62e", "fields": {"nom_de_la_commune": "CORNEILLA DEL VERCOL", "libell_d_acheminement": "CORNEILLA DEL VERCOL", "code_postal": "66200", "coordonnees_gps": [42.6141104205, 2.96373811685], "code_commune_insee": "66059"}, "geometry": {"type": "Point", "coordinates": [2.96373811685, 42.6141104205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d95c71ed61a7418ee1a9480747eaf3e2bf591c", "fields": {"nom_de_la_commune": "CORSAVY", "libell_d_acheminement": "CORSAVY", "code_postal": "66150", "coordonnees_gps": [42.4639953782, 2.57094475406], "code_commune_insee": "66060"}, "geometry": {"type": "Point", "coordinates": [2.57094475406, 42.4639953782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a387eece91dc6d38da87f3460eaeef798b83f6d", "fields": {"nom_de_la_commune": "COUSTOUGES", "libell_d_acheminement": "COUSTOUGES", "code_postal": "66260", "coordonnees_gps": [42.3859400236, 2.62616972995], "code_commune_insee": "66061"}, "geometry": {"type": "Point", "coordinates": [2.62616972995, 42.3859400236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd382ded0716c15a47edf0f7252b878a277b735e", "fields": {"nom_de_la_commune": "DORRES", "libell_d_acheminement": "DORRES", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66062"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db792b236efc9e6aaa898ba7eb38e154dcc793ed", "fields": {"nom_de_la_commune": "LES CLUSES", "libell_d_acheminement": "LES CLUSES", "code_postal": "66480", "coordonnees_gps": [42.4667287992, 2.83075140133], "code_commune_insee": "66063"}, "geometry": {"type": "Point", "coordinates": [2.83075140133, 42.4667287992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fe8c7e01085425a1683c5c55d0452cc50b06edb", "fields": {"nom_de_la_commune": "LES BAUX STE CROIX", "libell_d_acheminement": "LES BAUX STE CROIX", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27044"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3284ee3171ef22bfdaeefa3fa3a0ed85031b2aba", "fields": {"nom_de_la_commune": "BAZOQUES", "libell_d_acheminement": "BAZOQUES", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27046"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2222ec98d03aa851405d297a865a78e9e611042f", "fields": {"code_postal": "27270", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "LA ROUSSIERE", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0109875811, 0.530997676834]}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "732d3454c6a01c865d4372cb7e8b884bbc0361c5", "fields": {"code_postal": "27330", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "EPINAY", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [48.928948419, 0.685983737995]}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "598a9b1d3bf43a3a1a3e28421e26c9d4cccc8f9f", "fields": {"code_postal": "27330", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "LA BARRE EN OUCHE", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [48.928948419, 0.685983737995]}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65e856d10da233d86c11230d9239a7dfcb0e34e9", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "AJOU", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76fba945762158bf112c8e52b062c4038e71e6c2", "fields": {"nom_de_la_commune": "LE BEC THOMAS", "libell_d_acheminement": "LE BEC THOMAS", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27053"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4564b8b4b4698ec8b0a6ed8bb3227892cddfebc2", "fields": {"nom_de_la_commune": "BERNAY", "libell_d_acheminement": "BERNAY", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27056"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae2862b65dbb089f0fc72aeed87af92262da7940", "fields": {"nom_de_la_commune": "BEZU ST ELOI", "libell_d_acheminement": "BEZU ST ELOI", "code_postal": "27660", "coordonnees_gps": [49.299213116, 1.68011773724], "code_commune_insee": "27067"}, "geometry": {"type": "Point", "coordinates": [1.68011773724, 49.299213116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87743cfc51f484e5ca610fc9b074c1d7f760bbed", "fields": {"nom_de_la_commune": "BOIS ARNAULT", "libell_d_acheminement": "BOIS ARNAULT", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27069"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef05dca20d84fdea6aa8e01166ffcb7c8a157d85", "fields": {"nom_de_la_commune": "BOISNEY", "libell_d_acheminement": "BOISNEY", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27074"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2f6822e04f896523669d3dae507dc8463207a26", "fields": {"nom_de_la_commune": "BOISSY LAMBERVILLE", "libell_d_acheminement": "BOISSY LAMBERVILLE", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27079"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0477bcd68214e3647b7d2b16e92b672c878bf2d1", "fields": {"nom_de_la_commune": "LES BOTTEREAUX", "libell_d_acheminement": "LES BOTTEREAUX", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27096"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20f049db90203eca786617446e9184f362315bee", "fields": {"nom_de_la_commune": "BOUCHEVILLIERS", "libell_d_acheminement": "BOUCHEVILLIERS", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27098"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "171a5eb5a3f4db4da8d608bd4ae3b1d63a13b3d9", "fields": {"code_postal": "27210", "code_commune_insee": "27100", "libell_d_acheminement": "BOULLEVILLE", "ligne_5": "LA LANDE", "nom_de_la_commune": "BOULLEVILLE", "coordonnees_gps": [49.3651599552, 0.371153081403]}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "607e3e5cf3ebc710f95483b1dadbcdbe6757427d", "fields": {"nom_de_la_commune": "BOUQUETOT", "libell_d_acheminement": "BOUQUETOT", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27102"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bac79376aba18ed28aef840581841845af01e8ce", "fields": {"nom_de_la_commune": "BOURNEVILLE STE CROIX", "libell_d_acheminement": "BOURNEVILLE STE CROIX", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27107"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cab0c5a0f618e7e9d6a7e4a9fd5b0761e13ab004", "fields": {"code_postal": "27500", "code_commune_insee": "27107", "libell_d_acheminement": "BOURNEVILLE STE CROIX", "ligne_5": "STE CROIX SUR AIZIER", "nom_de_la_commune": "BOURNEVILLE STE CROIX", "coordonnees_gps": [49.3519408405, 0.530523220775]}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ebfbc70014e6268da9cf00e114f13e908e9b602", "fields": {"nom_de_la_commune": "BOURTH", "libell_d_acheminement": "BOURTH", "code_postal": "27580", "coordonnees_gps": [48.7461126337, 0.787797028241], "code_commune_insee": "27108"}, "geometry": {"type": "Point", "coordinates": [0.787797028241, 48.7461126337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94e80009a3b5ee87eaefc2d279f8c4293e7198e", "fields": {"nom_de_la_commune": "BRETEUIL", "libell_d_acheminement": "BRETEUIL", "code_postal": "27160", "coordonnees_gps": [48.8560757973, 0.877611850909], "code_commune_insee": "27112"}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa8f8de43b7f5bc40b0d0aaed72576bab04ab2c7", "fields": {"code_postal": "27160", "code_commune_insee": "27112", "libell_d_acheminement": "BRETEUIL", "ligne_5": "LA GUEROULDE", "nom_de_la_commune": "BRETEUIL", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a152b22163b6dc0bc525679874fd069366a490", "fields": {"nom_de_la_commune": "BROSVILLE", "libell_d_acheminement": "BROSVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27118"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4a6ac5bbd3cd01a4c7d779443968854bd235f3", "fields": {"nom_de_la_commune": "CAILLOUET ORGEVILLE", "libell_d_acheminement": "CAILLOUET ORGEVILLE", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27123"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942c8ace7e2acab577947335af2636c23de34b50", "fields": {"nom_de_la_commune": "CHAISE DIEU DU THEIL", "libell_d_acheminement": "CHAISE DIEU DU THEIL", "code_postal": "27580", "coordonnees_gps": [48.7461126337, 0.787797028241], "code_commune_insee": "27137"}, "geometry": {"type": "Point", "coordinates": [0.787797028241, 48.7461126337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625ce9e01274aa1bd4cd8eb9fe4fc9a8b75b78eb", "fields": {"nom_de_la_commune": "CHAMBRAY", "libell_d_acheminement": "CHAMBRAY", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27140"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3810539091d0c19f81c17dae34dbef8945e5a629", "fields": {"nom_de_la_commune": "CHAMP DOLENT", "libell_d_acheminement": "CHAMP DOLENT", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27141"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4eff3bf5de7270b1fb989fe57e1a44f1df427dd", "fields": {"nom_de_la_commune": "LA CHAPELLE HARENG", "libell_d_acheminement": "LA CHAPELLE HARENG", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27149"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2e88f239ed3a5cc5ca5fbeaf0f1f9e87944055e", "fields": {"nom_de_la_commune": "CHAVIGNY BAILLEUL", "libell_d_acheminement": "CHAVIGNY BAILLEUL", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27154"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c440e16fca1095c2ac86395fe45bea944ffc503", "fields": {"nom_de_la_commune": "CHENNEBRUN", "libell_d_acheminement": "CHENNEBRUN", "code_postal": "27820", "coordonnees_gps": [48.6910585643, 0.801324463794], "code_commune_insee": "27155"}, "geometry": {"type": "Point", "coordinates": [0.801324463794, 48.6910585643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06937982553cb0c641551969131c24a3e80ee1ca", "fields": {"nom_de_la_commune": "COLLETOT", "libell_d_acheminement": "COLLETOT", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27163"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f96425c46faeac02471cca7f932277d16539d5", "fields": {"nom_de_la_commune": "COMBON", "libell_d_acheminement": "COMBON", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27164"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa99355f8d8bc80d9694de03e30dbed557786bc0", "fields": {"nom_de_la_commune": "CONCHES EN OUCHE", "libell_d_acheminement": "CONCHES EN OUCHE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27165"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b66e3b4b37ef7c4badab261b2f939fcb1935f8d", "fields": {"nom_de_la_commune": "COURDEMANCHE", "libell_d_acheminement": "COURDEMANCHE", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27181"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625c1dc2a8e9b73c894a1641adc2d0c832dcc8d4", "fields": {"nom_de_la_commune": "LA COUTURE BOUSSEY", "libell_d_acheminement": "LA COUTURE BOUSSEY", "code_postal": "27750", "coordonnees_gps": [48.9018917237, 1.39711841747], "code_commune_insee": "27183"}, "geometry": {"type": "Point", "coordinates": [1.39711841747, 48.9018917237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df141824612869eed39d46758b82119c6f6da4f7", "fields": {"nom_de_la_commune": "CRASVILLE", "libell_d_acheminement": "CRASVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27184"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4715a3bb160a90be053d857a610dac07427e69f", "fields": {"nom_de_la_commune": "CRIQUEBEUF LA CAMPAGNE", "libell_d_acheminement": "CRIQUEBEUF LA CAMPAGNE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27187"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70edfc8719a02c199c61ea0987d80631861883fb", "fields": {"nom_de_la_commune": "CROISY SUR EURE", "libell_d_acheminement": "CROISY SUR EURE", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27190"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69bf478b421e7aa9757025d819094ea8dbf26d36", "fields": {"nom_de_la_commune": "CROTH", "libell_d_acheminement": "CROTH", "code_postal": "27530", "coordonnees_gps": [48.8601800798, 1.38794601132], "code_commune_insee": "27193"}, "geometry": {"type": "Point", "coordinates": [1.38794601132, 48.8601800798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1221218b751c3ce7e93bdda44f3460df7e78940", "fields": {"code_postal": "27160", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "CONDE SUR ITON", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc7a03786c957aa1ebd254a8272fb07b4f5d79bb", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "DAMVILLE", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba139841791969fe111b257a0c069c19df27198", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "GOUVILLE", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47d181187e38cfa836bdf26d7b6bf56eb84c9fb3", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "LE SACQ", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a01a06892c090c75fddf4c832fb73cb7e7bc36", "fields": {"nom_de_la_commune": "DANGU", "libell_d_acheminement": "DANGU", "code_postal": "27720", "coordonnees_gps": [49.2458400494, 1.68182274332], "code_commune_insee": "27199"}, "geometry": {"type": "Point", "coordinates": [1.68182274332, 49.2458400494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc50d341ff72ed06a319b81f3d621c8691316754", "fields": {"nom_de_la_commune": "DAUBEUF PRES VATTEVILLE", "libell_d_acheminement": "DAUBEUF PRES VATTEVILLE", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27202"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2988997a8d165555b3aa8268f96aade5a919c79", "fields": {"nom_de_la_commune": "DRUCOURT", "libell_d_acheminement": "DRUCOURT", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27207"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffeee15b695ff51e84149fe17ae02b323f691b33", "fields": {"nom_de_la_commune": "DURANVILLE", "libell_d_acheminement": "DURANVILLE", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27208"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de566a0f75f20f5dc45baea4d4640b06891723a2", "fields": {"code_postal": "27420", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "CANTIERS", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.2104555744, 1.59282946064]}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecd903274e47ff933ab51db263750b73e7e46bd7", "fields": {"code_postal": "27510", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "FORET LA FOLIE", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1509982632, 1.53002426085]}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831f1fd525fc0bd246c7134e713bccd7d420c1d6", "fields": {"code_postal": "27510", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "PANILLEUSE", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1509982632, 1.53002426085]}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "672ad3f64e05a0f3a9f5b53f137fa910c1da56a3", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "CIVIERES", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "440e2be65e0556b20050e7644c94beff8ce189e7", "fields": {"nom_de_la_commune": "EPAIGNES", "libell_d_acheminement": "EPAIGNES", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27218"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "036fb5024e198fd2cbd3c8f3db2f6a5db1ec18c1", "fields": {"nom_de_la_commune": "EPEGARD", "libell_d_acheminement": "EPEGARD", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27219"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e0a93db8c28e981e3417ddc79a749f9b0fc5c0", "fields": {"nom_de_la_commune": "FERRIERES HAUT CLOCHER", "libell_d_acheminement": "FERRIERES HAUT CLOCHER", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27238"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd50e50ba75a0f3c6904bc1536900c0a1a2b83c4", "fields": {"nom_de_la_commune": "FONTAINE LA SORET", "libell_d_acheminement": "FONTAINE LA SORET", "code_postal": "27550", "coordonnees_gps": [49.1415842432, 0.718795364074], "code_commune_insee": "27253"}, "geometry": {"type": "Point", "coordinates": [0.718795364074, 49.1415842432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9ba2feef9a373177e6ecac42b0cf6d07a6d271", "fields": {"nom_de_la_commune": "FOUQUEVILLE", "libell_d_acheminement": "FOUQUEVILLE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27261"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa373e58af546e87273a2148e14e9e313469ecb2", "fields": {"nom_de_la_commune": "FRESNEY", "libell_d_acheminement": "FRESNEY", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27271"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af0690352d2799421befdb85acd455522080b123", "fields": {"nom_de_la_commune": "GLISOLLES", "libell_d_acheminement": "GLISOLLES", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27287"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96d9b78178a1d7465b0f57ca9137a88a999d45f0", "fields": {"nom_de_la_commune": "GRAND CAMP", "libell_d_acheminement": "GRAND CAMP", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27295"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c471ed6e4950f2501bbdde07bbb8ee1c4f755e77", "fields": {"code_postal": "27370", "code_commune_insee": "27302", "libell_d_acheminement": "LE BOSC DU THEIL", "ligne_5": "ST NICOLAS DU BOSC", "nom_de_la_commune": "LE BOSC DU THEIL", "coordonnees_gps": [49.2357010366, 0.935247048397]}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61ef7e6bd1ef1932e81c67864fc2b5dbc49c41a3", "fields": {"nom_de_la_commune": "HACQUEVILLE", "libell_d_acheminement": "HACQUEVILLE", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27310"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da615e75b4b922fb30e30e3078d5005be26c253", "fields": {"nom_de_la_commune": "HARDENCOURT COCHEREL", "libell_d_acheminement": "HARDENCOURT COCHEREL", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27312"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "299d2fd2f615495493de047484ece642e6542cf5", "fields": {"nom_de_la_commune": "LA HARENGERE", "libell_d_acheminement": "LA HARENGERE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27313"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c52f695c3c75b89200a5978f243c1641e69117c5", "fields": {"nom_de_la_commune": "LA HAYE ST SYLVESTRE", "libell_d_acheminement": "LA HAYE ST SYLVESTRE", "code_postal": "27330", "coordonnees_gps": [48.928948419, 0.685983737995], "code_commune_insee": "27323"}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16afc591c19b18aeb903e04501b53ea182e5f6b2", "fields": {"nom_de_la_commune": "HERQUEVILLE", "libell_d_acheminement": "HERQUEVILLE", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27330"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0fd344cc0f373e65b982e78b63979d7c403fb5", "fields": {"nom_de_la_commune": "HEUBECOURT HARICOURT", "libell_d_acheminement": "HEUBECOURT HARICOURT", "code_postal": "27630", "coordonnees_gps": [49.1418584824, 1.58250649278], "code_commune_insee": "27331"}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b05cc9ec15913d8d885c7c4136ab007c20861a8", "fields": {"code_postal": "27630", "code_commune_insee": "27331", "libell_d_acheminement": "HEUBECOURT HARICOURT", "ligne_5": "HARICOURT", "nom_de_la_commune": "HEUBECOURT HARICOURT", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fdb9703cbc58f370d4c49a766f5a572eae31bb", "fields": {"nom_de_la_commune": "HEUDREVILLE SUR EURE", "libell_d_acheminement": "HEUDREVILLE SUR EURE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27335"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1443f9cc64b6a997f7835b6e0086cd36d0f8c56e", "fields": {"nom_de_la_commune": "HONGUEMARE GUENOUVILLE", "libell_d_acheminement": "HONGUEMARE GUENOUVILLE", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27340"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854da86c8ad76ecacc3ee2a8a2308258fe387d9f", "fields": {"nom_de_la_commune": "HOUETTEVILLE", "libell_d_acheminement": "HOUETTEVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27342"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9cffa9fc04e67b075d73187ba6c1d3ad7fb2870", "fields": {"nom_de_la_commune": "LA HOUSSAYE", "libell_d_acheminement": "LA HOUSSAYE", "code_postal": "27410", "coordonnees_gps": [49.0064963225, 0.739265680908], "code_commune_insee": "27345"}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ab54a95e4f8358ebd059fc6a71d6fd697917876", "fields": {"nom_de_la_commune": "ILLEVILLE SUR MONTFORT", "libell_d_acheminement": "ILLEVILLE SUR MONTFORT", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27349"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "895e27ad004bd77558d10933836371c18afb72e4", "fields": {"nom_de_la_commune": "JUMELLES", "libell_d_acheminement": "JUMELLES", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27360"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cac5a9d16881a1a0677ee65745a02ad77a8b7354", "fields": {"nom_de_la_commune": "LAUNAY", "libell_d_acheminement": "LAUNAY", "code_postal": "27470", "coordonnees_gps": [49.1014259839, 0.700715090149], "code_commune_insee": "27364"}, "geometry": {"type": "Point", "coordinates": [0.700715090149, 49.1014259839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9c489ed856d74f5fc05fddb030a8160ec75754", "fields": {"nom_de_la_commune": "LIGNEROLLES", "libell_d_acheminement": "LIGNEROLLES", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27368"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0436f1d0d3c47e31f07a1cfc28cd853da3d0059d", "fields": {"nom_de_la_commune": "LILLY", "libell_d_acheminement": "LILLY", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27369"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9236ab0d317055853cf6d54c1c1e4dd627eccc6b", "fields": {"nom_de_la_commune": "LISORS", "libell_d_acheminement": "LISORS", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27370"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b5bdcd9603a35fb88c64b6a07991c9627ec92a", "fields": {"nom_de_la_commune": "LIVET SUR AUTHOU", "libell_d_acheminement": "LIVET SUR AUTHOU", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27371"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db446e8a5a500388fa8b95eafb3dd9676a52298", "fields": {"nom_de_la_commune": "LONGCHAMPS", "libell_d_acheminement": "LONGCHAMPS", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27372"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c43c774f9a1fc21ee2097261328e256e4ed9839", "fields": {"nom_de_la_commune": "LOUVIERS", "libell_d_acheminement": "LOUVIERS", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27375"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e020bd32025d2284154b9b18ddcc5c3f9dd6b297", "fields": {"nom_de_la_commune": "LA MADELEINE DE NONANCOURT", "libell_d_acheminement": "LA MADELEINE DE NONANCOURT", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27378"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3e05cf57ce3eb2e1d618a6efd395a360c401e63", "fields": {"nom_de_la_commune": "MANDRES", "libell_d_acheminement": "MANDRES", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27383"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be75f543211e0eaec857e97c98c76e10cf89e0e7", "fields": {"nom_de_la_commune": "MANNEVILLE SUR RISLE", "libell_d_acheminement": "MANNEVILLE SUR RISLE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27385"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b99d30c3342a1c3b4ae65ae2abc01aa0509ef0", "fields": {"nom_de_la_commune": "MARCILLY LA CAMPAGNE", "libell_d_acheminement": "MARCILLY LA CAMPAGNE", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27390"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5760a64fe31a865fcbf380ec94f190ed92674e14", "fields": {"nom_de_la_commune": "MENESQUEVILLE", "libell_d_acheminement": "MENESQUEVILLE", "code_postal": "27850", "coordonnees_gps": [49.3580042596, 1.40713015705], "code_commune_insee": "27396"}, "geometry": {"type": "Point", "coordinates": [1.40713015705, 49.3580042596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27ca1ec112b89e21a3853640e31907a75515876", "fields": {"nom_de_la_commune": "MERCEY", "libell_d_acheminement": "MERCEY", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27399"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3077c3b9b04f34324164f288aeee5a55fe6de23b", "fields": {"nom_de_la_commune": "MESNIL ROUSSET", "libell_d_acheminement": "MESNIL ROUSSET", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27404"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "415dd2a7e49b2690a238310054d6f8721481b297", "fields": {"nom_de_la_commune": "MORAINVILLE JOUVEAUX", "libell_d_acheminement": "MORAINVILLE JOUVEAUX", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27415"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea69e2a3398eca6db6b962c135bbbfa7675a04c", "fields": {"code_postal": "27240", "code_commune_insee": "27416", "libell_d_acheminement": "BUIS SUR DAMVILLE", "ligne_5": "BOISSY SUR DAMVILLE", "nom_de_la_commune": "BUIS SUR DAMVILLE", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ad5abd1df207cefe07bc0d83c9323fedf626cd3", "fields": {"nom_de_la_commune": "MORGNY", "libell_d_acheminement": "MORGNY", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27417"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f19c8d27e7f8d414a9de51c815274748f292bb38", "fields": {"nom_de_la_commune": "MOUSSEAUX NEUVILLE", "libell_d_acheminement": "MOUSSEAUX NEUVILLE", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27421"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf6a5eaa2794ece8a7e0039f8f0a29f1306d489", "fields": {"nom_de_la_commune": "MUZY", "libell_d_acheminement": "MUZY", "code_postal": "27650", "coordonnees_gps": [48.7821743197, 1.31343473217], "code_commune_insee": "27423"}, "geometry": {"type": "Point", "coordinates": [1.31343473217, 48.7821743197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "986483d00092e54e95b13db0cc3d1535c8c1008c", "fields": {"nom_de_la_commune": "NASSANDRES", "libell_d_acheminement": "NASSANDRES", "code_postal": "27550", "coordonnees_gps": [49.1415842432, 0.718795364074], "code_commune_insee": "27425"}, "geometry": {"type": "Point", "coordinates": [0.718795364074, 49.1415842432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d70e7e127345f5c39603bf2d00fdf77373232998", "fields": {"nom_de_la_commune": "NEAUFLES ST MARTIN", "libell_d_acheminement": "NEAUFLES ST MARTIN", "code_postal": "27830", "coordonnees_gps": [49.2776034229, 1.72677228781], "code_commune_insee": "27426"}, "geometry": {"type": "Point", "coordinates": [1.72677228781, 49.2776034229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "463bf5736459ce2868a875c76c5ff6c6c66f254a", "fields": {"nom_de_la_commune": "LE NEUBOURG", "libell_d_acheminement": "LE NEUBOURG", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27428"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48b0140aadb2d82718f86fad74d8570c5d1e0076", "fields": {"nom_de_la_commune": "NORMANVILLE", "libell_d_acheminement": "NORMANVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27439"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a618815ccd89f8d19d29c3161986a8759fdedb8a", "fields": {"nom_de_la_commune": "NOYERS", "libell_d_acheminement": "NOYERS", "code_postal": "27720", "coordonnees_gps": [49.2458400494, 1.68182274332], "code_commune_insee": "27445"}, "geometry": {"type": "Point", "coordinates": [1.68182274332, 49.2458400494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44dc5f313df078719d5cedcd2d6c8d66da0f3b66", "fields": {"nom_de_la_commune": "PACY SUR EURE", "libell_d_acheminement": "PACY SUR EURE", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27448"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f196fcfb1f8a0c23cca8b58eecf7e0c52e633cb4", "fields": {"nom_de_la_commune": "PLAINVILLE", "libell_d_acheminement": "PLAINVILLE", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27460"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3fa3d373b2827364738264048704a2a9011ee23", "fields": {"nom_de_la_commune": "LE PLESSIS GROHAN", "libell_d_acheminement": "LE PLESSIS GROHAN", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27464"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285f9ec99eabfd725f0b588c61b01a72b8b88ac7", "fields": {"nom_de_la_commune": "LE PLESSIS STE OPPORTUNE", "libell_d_acheminement": "LE PLESSIS STE OPPORTUNE", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27466"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272c225fdc02084e1e7418466e8ad6fb6a48be62", "fields": {"nom_de_la_commune": "LOUVIGNE DE BAIS", "libell_d_acheminement": "LOUVIGNE DE BAIS", "code_postal": "35680", "coordonnees_gps": [48.0164142152, -1.29664262346], "code_commune_insee": "35161"}, "geometry": {"type": "Point", "coordinates": [-1.29664262346, 48.0164142152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212968686329b44d1790d8e1b11a6a39ba87e67b", "fields": {"nom_de_la_commune": "LUITRE", "libell_d_acheminement": "LUITRE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35163"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c08ca08f23e8f20deb28e45927296d2c23725e13", "fields": {"nom_de_la_commune": "MARCILLE RAOUL", "libell_d_acheminement": "MARCILLE RAOUL", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35164"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a9a9099640947563517c977d4f3fcec7637bbaf", "fields": {"nom_de_la_commune": "MARPIRE", "libell_d_acheminement": "MARPIRE", "code_postal": "35220", "coordonnees_gps": [48.1189448859, -1.37446219817], "code_commune_insee": "35166"}, "geometry": {"type": "Point", "coordinates": [-1.37446219817, 48.1189448859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e44988f9a55a022bb9ddd5c4f95e2718e6d150a", "fields": {"nom_de_la_commune": "GUIPRY MESSAC", "libell_d_acheminement": "GUIPRY MESSAC", "code_postal": "35480", "coordonnees_gps": [47.8244409976, -1.80170067957], "code_commune_insee": "35176"}, "geometry": {"type": "Point", "coordinates": [-1.80170067957, 47.8244409976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d7c58a005dba2335477bb7005a5c099f2e6c41", "fields": {"nom_de_la_commune": "LA MEZIERE", "libell_d_acheminement": "LA MEZIERE", "code_postal": "35520", "coordonnees_gps": [48.2154723883, -1.71567755367], "code_commune_insee": "35177"}, "geometry": {"type": "Point", "coordinates": [-1.71567755367, 48.2154723883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c1c70cfd5b372a07b7a33e96ea9153b041e6f8a", "fields": {"nom_de_la_commune": "MINIAC MORVAN", "libell_d_acheminement": "MINIAC MORVAN", "code_postal": "35540", "coordonnees_gps": [48.5204175583, -1.86964225248], "code_commune_insee": "35179"}, "geometry": {"type": "Point", "coordinates": [-1.86964225248, 48.5204175583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ba1e2ddc60d1c045285b3845332104ed4eb6cc", "fields": {"code_postal": "35540", "code_commune_insee": "35179", "libell_d_acheminement": "MINIAC MORVAN", "ligne_5": "VIEUX BOURG", "nom_de_la_commune": "MINIAC MORVAN", "coordonnees_gps": [48.5204175583, -1.86964225248]}, "geometry": {"type": "Point", "coordinates": [-1.86964225248, 48.5204175583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761dede002fb012e9b818203e6bae02503fee9a3", "fields": {"nom_de_la_commune": "MONDEVERT", "libell_d_acheminement": "MONDEVERT", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35183"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6715e2c2eb804cf7cadf12a9015a60f88bb24de6", "fields": {"nom_de_la_commune": "MONTFORT SUR MEU", "libell_d_acheminement": "MONTFORT SUR MEU", "code_postal": "35160", "coordonnees_gps": [48.0975671546, -1.94600681697], "code_commune_insee": "35188"}, "geometry": {"type": "Point", "coordinates": [-1.94600681697, 48.0975671546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e5aaedf1ed723969faa7763f6b7b08913e13667", "fields": {"nom_de_la_commune": "MOUTIERS", "libell_d_acheminement": "MOUTIERS", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35200"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64994fa1056c4be4c3b8ac0eeaa70470e66485d8", "fields": {"nom_de_la_commune": "NOUVOITOU", "libell_d_acheminement": "NOUVOITOU", "code_postal": "35410", "coordonnees_gps": [48.0490244352, -1.51988264041], "code_commune_insee": "35204"}, "geometry": {"type": "Point", "coordinates": [-1.51988264041, 48.0490244352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82799426637ed3d3c80d130cecb9dd6dc842c86e", "fields": {"nom_de_la_commune": "NOYAL SUR VILAINE", "libell_d_acheminement": "NOYAL SUR VILAINE", "code_postal": "35530", "coordonnees_gps": [48.1023169795, -1.48929089789], "code_commune_insee": "35207"}, "geometry": {"type": "Point", "coordinates": [-1.48929089789, 48.1023169795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e65a520dd43211a629c75d739ce1631a9224083", "fields": {"nom_de_la_commune": "PARCE", "libell_d_acheminement": "PARCE", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35214"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9a8a5ab0bba6e922f8757c33afcd32b285619d8", "fields": {"nom_de_la_commune": "PARIGNE", "libell_d_acheminement": "PARIGNE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35215"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c643976e0759ce3854fa459cbf0eee14cad0b56", "fields": {"code_postal": "35470", "code_commune_insee": "35221", "libell_d_acheminement": "PLECHATEL", "ligne_5": "LE CHATELLIER", "nom_de_la_commune": "PLECHATEL", "coordonnees_gps": [47.8366270433, -1.70588612819]}, "geometry": {"type": "Point", "coordinates": [-1.70588612819, 47.8366270433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "542fa03b1741056313351f44c6b25fdd218c220b", "fields": {"nom_de_la_commune": "PLEINE FOUGERES", "libell_d_acheminement": "PLEINE FOUGERES", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35222"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f76b3ad27963a7de908f87457466755605c19f", "fields": {"nom_de_la_commune": "POCE LES BOIS", "libell_d_acheminement": "POCE LES BOIS", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35229"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a73b3d12dee6bef598765e6cd5d77ec6ce115dba", "fields": {"nom_de_la_commune": "POILLEY", "libell_d_acheminement": "POILLEY", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35230"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4c520f83872dda15bf0dd2d7e484a94a9e24f20", "fields": {"nom_de_la_commune": "POLIGNE", "libell_d_acheminement": "POLIGNE", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35231"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d0dccfa9ec8c0431fd9d6a2a02367f35c7dab8", "fields": {"nom_de_la_commune": "QUEDILLAC", "libell_d_acheminement": "QUEDILLAC", "code_postal": "35290", "coordonnees_gps": [48.1587625255, -2.18370093137], "code_commune_insee": "35234"}, "geometry": {"type": "Point", "coordinates": [-2.18370093137, 48.1587625255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaef09466d78abe5a8cea387acf2c227fdb5b7b6", "fields": {"nom_de_la_commune": "RANNEE", "libell_d_acheminement": "RANNEE", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35235"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4ce129476e147e19175fddc57150879e653b9b9", "fields": {"nom_de_la_commune": "RENNES", "libell_d_acheminement": "RENNES", "code_postal": "35000", "coordonnees_gps": [48.1116364246, -1.6816378334], "code_commune_insee": "35238"}, "geometry": {"type": "Point", "coordinates": [-1.6816378334, 48.1116364246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa1b63ca1b81ff35e487f7db3c2c8fe2402842ae", "fields": {"nom_de_la_commune": "LE RHEU", "libell_d_acheminement": "LE RHEU", "code_postal": "35650", "coordonnees_gps": [48.0975609665, -1.78120048308], "code_commune_insee": "35240"}, "geometry": {"type": "Point", "coordinates": [-1.78120048308, 48.0975609665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59901300c4dfdb666bea914840a4dfe468addf7c", "fields": {"nom_de_la_commune": "ROZ LANDRIEUX", "libell_d_acheminement": "ROZ LANDRIEUX", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35246"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed11129599ee265ff40805c6048cfa24daccf21d", "fields": {"nom_de_la_commune": "SAINS", "libell_d_acheminement": "SAINS", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35248"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa01253d186cab7f3d06b25f0e0dc60aed98f36", "fields": {"nom_de_la_commune": "ST AUBIN DU CORMIER", "libell_d_acheminement": "ST AUBIN DU CORMIER", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35253"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956b15b690570bd153c32c4ccc6fa607b990a429", "fields": {"nom_de_la_commune": "ST BRIAC SUR MER", "libell_d_acheminement": "ST BRIAC SUR MER", "code_postal": "35800", "coordonnees_gps": [48.6199242257, -2.09542699517], "code_commune_insee": "35256"}, "geometry": {"type": "Point", "coordinates": [-2.09542699517, 48.6199242257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "213ffdc0bdc0d8a8692c3f58521cf59e8d352d8b", "fields": {"nom_de_la_commune": "ST ETIENNE EN COGLES", "libell_d_acheminement": "ST ETIENNE EN COGLES", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35267"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a46564a5a1906a9dd3ab641cde049e23cec0c5c2", "fields": {"nom_de_la_commune": "ST GANTON", "libell_d_acheminement": "ST GANTON", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35268"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cee4de4c68eaf9ece12946bc891ff653a61bb75", "fields": {"nom_de_la_commune": "ST GEORGES DE GREHAIGNE", "libell_d_acheminement": "ST GEORGES DE GREHAIGNE", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35270"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d361c94ff5b18e2c66c566f0701c2ac4c0afd769", "fields": {"nom_de_la_commune": "ST GERMAIN DU PINEL", "libell_d_acheminement": "ST GERMAIN DU PINEL", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35272"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "340817a6b74944a1a208b616439060b1858abc9c", "fields": {"nom_de_la_commune": "ST GERMAIN SUR ILLE", "libell_d_acheminement": "ST GERMAIN SUR ILLE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35274"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43ec5fab062b118d9b677a8f4a32e4698e39f499", "fields": {"nom_de_la_commune": "ST GONDRAN", "libell_d_acheminement": "ST GONDRAN", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35276"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de46b837d1dcb1fe765a807fe37b417f263b3d6", "fields": {"nom_de_la_commune": "ST GONLAY", "libell_d_acheminement": "ST GONLAY", "code_postal": "35750", "coordonnees_gps": [48.1126516874, -2.04975015868], "code_commune_insee": "35277"}, "geometry": {"type": "Point", "coordinates": [-2.04975015868, 48.1126516874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b288bd9360f0461bdf43edfad83d8eb969fc43", "fields": {"nom_de_la_commune": "ST GUINOUX", "libell_d_acheminement": "ST GUINOUX", "code_postal": "35430", "coordonnees_gps": [48.5817595804, -1.93661188618], "code_commune_insee": "35279"}, "geometry": {"type": "Point", "coordinates": [-1.93661188618, 48.5817595804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a07de86441ab40ca8713e73b77cd4ff170fdba", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "35550", "coordonnees_gps": [47.7980501725, -1.97145800626], "code_commune_insee": "35285"}, "geometry": {"type": "Point", "coordinates": [-1.97145800626, 47.7980501725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa7aeecc98a1d45411d351ad14193c281da17973", "fields": {"code_postal": "35400", "code_commune_insee": "35288", "libell_d_acheminement": "ST MALO", "ligne_5": "PARAME", "nom_de_la_commune": "ST MALO", "coordonnees_gps": [48.6399039698, -1.9807980796]}, "geometry": {"type": "Point", "coordinates": [-1.9807980796, 48.6399039698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd132ebac7c5e60d80ff52adc66fd098153fa46", "fields": {"nom_de_la_commune": "ST MARCAN", "libell_d_acheminement": "ST MARCAN", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35291"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb7f38538436efa50e8e3e215d8108a2dbcfc412", "fields": {"nom_de_la_commune": "ST SENOUX", "libell_d_acheminement": "ST SENOUX", "code_postal": "35580", "coordonnees_gps": [47.9620542944, -1.8429715247], "code_commune_insee": "35312"}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776f52f6b987aa3ae097a0a2b6fe5a1e5fdab232", "fields": {"nom_de_la_commune": "ST SULIAC", "libell_d_acheminement": "ST SULIAC", "code_postal": "35430", "coordonnees_gps": [48.5817595804, -1.93661188618], "code_commune_insee": "35314"}, "geometry": {"type": "Point", "coordinates": [-1.93661188618, 48.5817595804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715892bf597f8f9ec61046ce9a6cd8d02c43a40e", "fields": {"nom_de_la_commune": "ST SULPICE DES LANDES", "libell_d_acheminement": "ST SULPICE DES LANDES", "code_postal": "35390", "coordonnees_gps": [47.7452832885, -1.72261713686], "code_commune_insee": "35316"}, "geometry": {"type": "Point", "coordinates": [-1.72261713686, 47.7452832885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29af778f1d1c5460bc17254a65a591a7d1464983", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35317"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffad0b80ec48ac2cac5d484ef7ca24b00276390b", "fields": {"nom_de_la_commune": "TAILLIS", "libell_d_acheminement": "TAILLIS", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35330"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff2e9cfa1faa661a5a5c6e546c5371c3e02efb1", "fields": {"nom_de_la_commune": "TEILLAY", "libell_d_acheminement": "TEILLAY", "code_postal": "35620", "coordonnees_gps": [47.8136960211, -1.5585601765], "code_commune_insee": "35332"}, "geometry": {"type": "Point", "coordinates": [-1.5585601765, 47.8136960211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2f7f874b3df89be84f29281b953c099eeb8d5a", "fields": {"nom_de_la_commune": "LE TIERCENT", "libell_d_acheminement": "LE TIERCENT", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35336"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0acc0dc8eba4dcae0af21d2b4382c0d2e3be051", "fields": {"nom_de_la_commune": "TINTENIAC", "libell_d_acheminement": "TINTENIAC", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35337"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24c58727ad8bea339ec0e291f43bc633e366fa00", "fields": {"nom_de_la_commune": "LE VERGER", "libell_d_acheminement": "LE VERGER", "code_postal": "35160", "coordonnees_gps": [48.0975671546, -1.94600681697], "code_commune_insee": "35351"}, "geometry": {"type": "Point", "coordinates": [-1.94600681697, 48.0975671546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53ee9e7127cd73ce12ba6fd6f65cdf8d9d4a2405", "fields": {"nom_de_la_commune": "VERN SUR SEICHE", "libell_d_acheminement": "VERN SUR SEICHE", "code_postal": "35770", "coordonnees_gps": [48.0528724341, -1.60539250036], "code_commune_insee": "35352"}, "geometry": {"type": "Point", "coordinates": [-1.60539250036, 48.0528724341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7824eaa08a39d3666c8091c1b727bbc4e97573c4", "fields": {"nom_de_la_commune": "VEZIN LE COQUET", "libell_d_acheminement": "VEZIN LE COQUET", "code_postal": "35132", "coordonnees_gps": [48.1177261674, -1.74902615874], "code_commune_insee": "35353"}, "geometry": {"type": "Point", "coordinates": [-1.74902615874, 48.1177261674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f851e42dd64911f33cd1304b40bade3fa81d103", "fields": {"nom_de_la_commune": "VIEUX VY SUR COUESNON", "libell_d_acheminement": "VIEUX VY SUR COUESNON", "code_postal": "35490", "coordonnees_gps": [48.3344573886, -1.51403943231], "code_commune_insee": "35355"}, "geometry": {"type": "Point", "coordinates": [-1.51403943231, 48.3344573886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77215b8369d47b32fa99c16bcd948812f7261e72", "fields": {"nom_de_la_commune": "LA VILLE ES NONAIS", "libell_d_acheminement": "LA VILLE ES NONAIS", "code_postal": "35430", "coordonnees_gps": [48.5817595804, -1.93661188618], "code_commune_insee": "35358"}, "geometry": {"type": "Point", "coordinates": [-1.93661188618, 48.5817595804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f08135bbeabf539c8a2dba67bc56acdf8bc69c20", "fields": {"nom_de_la_commune": "ARGENTON SUR CREUSE", "libell_d_acheminement": "ARGENTON SUR CREUSE", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36006"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee22925d021da73d921925608375089cea2e0fc7", "fields": {"nom_de_la_commune": "ARTHON", "libell_d_acheminement": "ARTHON", "code_postal": "36330", "coordonnees_gps": [46.7140693988, 1.6861822855], "code_commune_insee": "36009"}, "geometry": {"type": "Point", "coordinates": [1.6861822855, 46.7140693988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bead8c06c93a7e241aac042ebd2ad53f39235b2f", "fields": {"nom_de_la_commune": "AZAY LE FERRON", "libell_d_acheminement": "AZAY LE FERRON", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36010"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee620effd2beba95bfd542250988d866c73fdcb", "fields": {"nom_de_la_commune": "BAUDRES", "libell_d_acheminement": "BAUDRES", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36013"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f054e3e40cd40bd8abf6b1c3aeeef20665c020", "fields": {"nom_de_la_commune": "BELABRE", "libell_d_acheminement": "BELABRE", "code_postal": "36370", "coordonnees_gps": [46.5287208025, 1.19590340151], "code_commune_insee": "36016"}, "geometry": {"type": "Point", "coordinates": [1.19590340151, 46.5287208025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e16aaed30abc2976348e1579c9773a5a0c09c17", "fields": {"nom_de_la_commune": "LES BORDES", "libell_d_acheminement": "LES BORDES", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36021"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4c6781dd5e9da8503769c4ba1956928f8c90410", "fields": {"nom_de_la_commune": "BOUESSE", "libell_d_acheminement": "BOUESSE", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36022"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "499b82c28e52d77d2c1f4cfd3b34a23aca9ab751", "fields": {"nom_de_la_commune": "BRETAGNE", "libell_d_acheminement": "BRETAGNE", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36024"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b07f42b0fd4822848b60a0f794b38fa767f9b7", "fields": {"nom_de_la_commune": "BRIVES", "libell_d_acheminement": "BRIVES", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36027"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "771aa5bcfbf1fdd875aaa4f7d8231fc2a5a64c5a", "fields": {"nom_de_la_commune": "BUXEUIL", "libell_d_acheminement": "BUXEUIL", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36029"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e34b8f06d63dbaf3c112e825b323eb1d568e37", "fields": {"nom_de_la_commune": "BUXIERES D AILLAC", "libell_d_acheminement": "BUXIERES D AILLAC", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36030"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1bd661c5b789f88442f71b667ed8fa2cfa7097", "fields": {"nom_de_la_commune": "BUZANCAIS", "libell_d_acheminement": "BUZANCAIS", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36031"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69c6334eba30779ad20c1790d2e6dd731899780", "fields": {"nom_de_la_commune": "CHAMPILLET", "libell_d_acheminement": "CHAMPILLET", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36038"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5c7da7a5869e0a93563adea4fc6ef4848d3eba", "fields": {"nom_de_la_commune": "CHASSENEUIL", "libell_d_acheminement": "CHASSENEUIL", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36042"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd5b2e1d77e422440f3c051054c52548386b948b", "fields": {"nom_de_la_commune": "LA CHATRE", "libell_d_acheminement": "LA CHATRE", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36046"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ffc0d3463b6cdf700fd3c183ad72384baf17e9f", "fields": {"nom_de_la_commune": "CHAZELET", "libell_d_acheminement": "CHAZELET", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36049"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5070f948ecf7b88a0fa9f3a37cd328797e211d60", "fields": {"nom_de_la_commune": "CHOUDAY", "libell_d_acheminement": "CHOUDAY", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36052"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d91745be60cb5d9e771c2484f597a3eb36af7bdc", "fields": {"nom_de_la_commune": "CLION", "libell_d_acheminement": "CLION", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36055"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e1a854dd3a690ba396c33d9814c1888a0a2122e", "fields": {"nom_de_la_commune": "CREVANT", "libell_d_acheminement": "CREVANT", "code_postal": "36140", "coordonnees_gps": [46.4665714493, 1.83368688617], "code_commune_insee": "36060"}, "geometry": {"type": "Point", "coordinates": [1.83368688617, 46.4665714493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7194a98c90dc2bde1a8e5cb071c98f48beb43bc3", "fields": {"nom_de_la_commune": "CROZON SUR VAUVRE", "libell_d_acheminement": "CROZON SUR VAUVRE", "code_postal": "36140", "coordonnees_gps": [46.4665714493, 1.83368688617], "code_commune_insee": "36061"}, "geometry": {"type": "Point", "coordinates": [1.83368688617, 46.4665714493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776d0369ba93f85a77edf2d6720f40d9a97afe15", "fields": {"nom_de_la_commune": "DIORS", "libell_d_acheminement": "DIORS", "code_postal": "36130", "coordonnees_gps": [46.8562455965, 1.75263865537], "code_commune_insee": "36064"}, "geometry": {"type": "Point", "coordinates": [1.75263865537, 46.8562455965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "548ae1510ff200dda87a3fa91ad170c7673a420b", "fields": {"nom_de_la_commune": "DIOU", "libell_d_acheminement": "DIOU", "code_postal": "36260", "coordonnees_gps": [47.0476254931, 1.98508496225], "code_commune_insee": "36065"}, "geometry": {"type": "Point", "coordinates": [1.98508496225, 47.0476254931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92662e4daea8ff7639cb2880a7cbde5840f733df", "fields": {"nom_de_la_commune": "ECUEILLE", "libell_d_acheminement": "ECUEILLE", "code_postal": "36240", "coordonnees_gps": [47.0498995034, 1.38071317224], "code_commune_insee": "36069"}, "geometry": {"type": "Point", "coordinates": [1.38071317224, 47.0498995034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f8ca9f4d1bce0098e4c2b3bccf3533110ccab58", "fields": {"nom_de_la_commune": "EGUZON CHANTOME", "libell_d_acheminement": "EGUZON CHANTOME", "code_postal": "36270", "coordonnees_gps": [46.4580307735, 1.55896815313], "code_commune_insee": "36070"}, "geometry": {"type": "Point", "coordinates": [1.55896815313, 46.4580307735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ffb8edde71cf9b363217ecc0272910f356e56c", "fields": {"nom_de_la_commune": "GEHEE", "libell_d_acheminement": "GEHEE", "code_postal": "36240", "coordonnees_gps": [47.0498995034, 1.38071317224], "code_commune_insee": "36082"}, "geometry": {"type": "Point", "coordinates": [1.38071317224, 47.0498995034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5432b2924de8524d4ef49a72624a51d3902c7c37", "fields": {"nom_de_la_commune": "HEUGNES", "libell_d_acheminement": "HEUGNES", "code_postal": "36180", "coordonnees_gps": [47.01148929, 1.41025324339], "code_commune_insee": "36086"}, "geometry": {"type": "Point", "coordinates": [1.41025324339, 47.01148929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2292c29abf5f348f7a53df1099b981b520a3e645", "fields": {"nom_de_la_commune": "JEU LES BOIS", "libell_d_acheminement": "JEU LES BOIS", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36089"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15dd93b67751fa61518c45422983483e05d8ca3b", "fields": {"nom_de_la_commune": "JEU MALOCHES", "libell_d_acheminement": "JEU MALOCHES", "code_postal": "36240", "coordonnees_gps": [47.0498995034, 1.38071317224], "code_commune_insee": "36090"}, "geometry": {"type": "Point", "coordinates": [1.38071317224, 47.0498995034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecfb8186a876ce781d0ca59317dfe7902342f73c", "fields": {"nom_de_la_commune": "LANGE", "libell_d_acheminement": "LANGE", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36092"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb07d50b5ad22f2c82a9d266bfa1ce3430cffa8d", "fields": {"nom_de_la_commune": "LIGNAC", "libell_d_acheminement": "LIGNAC", "code_postal": "36370", "coordonnees_gps": [46.5287208025, 1.19590340151], "code_commune_insee": "36094"}, "geometry": {"type": "Point", "coordinates": [1.19590340151, 46.5287208025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a177f481d63ba995b33bbd02c146d511694486", "fields": {"nom_de_la_commune": "LUANT", "libell_d_acheminement": "LUANT", "code_postal": "36350", "coordonnees_gps": [46.720531376, 1.54304656727], "code_commune_insee": "36101"}, "geometry": {"type": "Point", "coordinates": [1.54304656727, 46.720531376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c8ea61b9822b84bd546bc64211b48a24cc52832", "fields": {"nom_de_la_commune": "LURAIS", "libell_d_acheminement": "LURAIS", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36104"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56f41a3dd55d63a1b36122f09a11fa35abdb4b5", "fields": {"nom_de_la_commune": "LYE", "libell_d_acheminement": "LYE", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36107"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8911661d65d8c886aca4929b0e98f64970ccf11e", "fields": {"nom_de_la_commune": "MIGNY", "libell_d_acheminement": "MIGNY", "code_postal": "36260", "coordonnees_gps": [47.0476254931, 1.98508496225], "code_commune_insee": "36125"}, "geometry": {"type": "Point", "coordinates": [1.98508496225, 47.0476254931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1caf8382085de5fb9313c756a7c782ffab53041", "fields": {"nom_de_la_commune": "MONTIPOURET", "libell_d_acheminement": "MONTIPOURET", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36129"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fb993735e7b471c9075bce1fe8b4f23ee7202bb", "fields": {"nom_de_la_commune": "MOUHET", "libell_d_acheminement": "MOUHET", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36134"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "face6d211f8add716f006fefe7a5e3d60666baac", "fields": {"nom_de_la_commune": "MOULINS SUR CEPHONS", "libell_d_acheminement": "MOULINS SUR CEPHONS", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36135"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e143a2e3b7509ac6f5669bd427e750608f0af7a1", "fields": {"nom_de_la_commune": "PAULNAY", "libell_d_acheminement": "PAULNAY", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36153"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d6dcbf9a5c81245004d3fd2626f913aa6c07ffb", "fields": {"nom_de_la_commune": "BADECON LE PIN", "libell_d_acheminement": "BADECON LE PIN", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36158"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db695a78737d55fe69653f3df4aa0d80986cb225", "fields": {"nom_de_la_commune": "REBOURSIN", "libell_d_acheminement": "REBOURSIN", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36170"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d388cf521655c4b362a4e5dc34cd6e743c89693", "fields": {"nom_de_la_commune": "RUFFEC", "libell_d_acheminement": "RUFFEC", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36176"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a59b0035f4a78082c8dd78704c6b27a62566e9e0", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36181"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b86287272287e0764cd20d0aa43a8cceb6b1744", "fields": {"nom_de_la_commune": "ST CHARTIER", "libell_d_acheminement": "ST CHARTIER", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36184"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0e55b929ad7f3f435668d39dde688fd30acebb9", "fields": {"nom_de_la_commune": "ST FLORENTIN", "libell_d_acheminement": "ST FLORENTIN", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36191"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76ae90842b558e7f2dc717c41fce7fef3b7ee8b", "fields": {"nom_de_la_commune": "ST GENOU", "libell_d_acheminement": "ST GENOU", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36194"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6abdfbf17a1106e3c1e749fbd3d1a6da54f1b408", "fields": {"nom_de_la_commune": "ST GILLES", "libell_d_acheminement": "ST GILLES", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36196"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3480295c361f4ae4d59521a72202d65de45e13c", "fields": {"nom_de_la_commune": "SARZAY", "libell_d_acheminement": "SARZAY", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36210"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38fd91faac18fc04c7c9ec2601c029ec1c7534a2", "fields": {"nom_de_la_commune": "SAULNAY", "libell_d_acheminement": "SAULNAY", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36212"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cd784659d466b4ebd992e88030b75e799403616", "fields": {"nom_de_la_commune": "GUERIN", "libell_d_acheminement": "GUERIN", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47115"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "008bb177a15080cfbbec0e8ab7a5cb959218f62d", "fields": {"nom_de_la_commune": "HOUEILLES", "libell_d_acheminement": "HOUEILLES", "code_postal": "47420", "coordonnees_gps": [44.190114172, 0.0302523935969], "code_commune_insee": "47119"}, "geometry": {"type": "Point", "coordinates": [0.0302523935969, 44.190114172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e009a2b53e6126c6cf332e4b920541c9dbf335", "fields": {"nom_de_la_commune": "LAGRUERE", "libell_d_acheminement": "LAGRUERE", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47130"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c4754fdc805835fbe3638c7d7ed73a2a25ea0e2", "fields": {"nom_de_la_commune": "LAPARADE", "libell_d_acheminement": "LAPARADE", "code_postal": "47260", "coordonnees_gps": [44.4350547547, 0.456381629274], "code_commune_insee": "47135"}, "geometry": {"type": "Point", "coordinates": [0.456381629274, 44.4350547547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c82e840b9f769997aa660ad4a2a82e3821a56748", "fields": {"nom_de_la_commune": "LASSERRE", "libell_d_acheminement": "LASSERRE", "code_postal": "47600", "coordonnees_gps": [44.1055283712, 0.389815997319], "code_commune_insee": "47139"}, "geometry": {"type": "Point", "coordinates": [0.389815997319, 44.1055283712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa4e0c07eeb464760ef099d7f49d3439d07fca8", "fields": {"nom_de_la_commune": "LAUZUN", "libell_d_acheminement": "LAUZUN", "code_postal": "47410", "coordonnees_gps": [44.6188360432, 0.483344290978], "code_commune_insee": "47142"}, "geometry": {"type": "Point", "coordinates": [0.483344290978, 44.6188360432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "507ba150dbfeb2b4ebbda6dc241c882f4ee10dc2", "fields": {"nom_de_la_commune": "LAVARDAC", "libell_d_acheminement": "LAVARDAC", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47143"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfcc2cb66484b2779b7a4f75c98f775378d243f", "fields": {"nom_de_la_commune": "LOUBES BERNAC", "libell_d_acheminement": "LOUBES BERNAC", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47151"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4127e3fe70bb1bf01ba517cf1c5972ac1d687e96", "fields": {"nom_de_la_commune": "MOIRAX", "libell_d_acheminement": "MOIRAX", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47169"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8869b691046758929f0f4e1dd76e50f0046c5bf6", "fields": {"nom_de_la_commune": "MONBAHUS", "libell_d_acheminement": "MONBAHUS", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47170"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7e5963636106432408e5e493aea3dbc7cbe09b6", "fields": {"nom_de_la_commune": "MONBALEN", "libell_d_acheminement": "MONBALEN", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47171"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80a0ff98d8269204462feecd370e8025ff6d7d0b", "fields": {"nom_de_la_commune": "MONTAYRAL", "libell_d_acheminement": "MONTAYRAL", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47185"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dad6c5ff47994176d97b7f743a0119e8ab9921b", "fields": {"nom_de_la_commune": "MONVIEL", "libell_d_acheminement": "MONVIEL", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47192"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd4b7a5158b499dc6c1fcc38b8e06144fdb356e", "fields": {"nom_de_la_commune": "MOUSTIER", "libell_d_acheminement": "MOUSTIER", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47194"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f4d9c0db5e846baab9451b7f0e89170bb6dad72", "fields": {"nom_de_la_commune": "PARRANQUET", "libell_d_acheminement": "PARRANQUET", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47200"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc22d0f59d4b0b4644ff1cbfc133308a1376b687", "fields": {"nom_de_la_commune": "PAULHIAC", "libell_d_acheminement": "PAULHIAC", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47202"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0f19e51eb2833af672ed8c0cd532d5f1dca61c", "fields": {"nom_de_la_commune": "PUYSSERAMPION", "libell_d_acheminement": "PUYSSERAMPION", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47218"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "809caab0c528a75217b6e21b7b1a8ae7b1667033", "fields": {"nom_de_la_commune": "ROQUEFORT", "libell_d_acheminement": "ROQUEFORT", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47225"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee0e3b13fa84fff3151f85c28a3281a132dd972", "fields": {"nom_de_la_commune": "ST ANTOINE DE FICALBA", "libell_d_acheminement": "ST ANTOINE DE FICALBA", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47228"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b596d2040924e628edbf5b401be8f26fbae089df", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47231"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74a90aea723d3d41bee0d416f192935d9d315a91", "fields": {"nom_de_la_commune": "ST CAPRAIS DE LERM", "libell_d_acheminement": "ST CAPRAIS DE LERM", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47234"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f790042dbb95ec6978cdd30dcb9e963c634ec5fc", "fields": {"nom_de_la_commune": "ST COLOMB DE LAUZUN", "libell_d_acheminement": "ST COLOMB DE LAUZUN", "code_postal": "47410", "coordonnees_gps": [44.6188360432, 0.483344290978], "code_commune_insee": "47235"}, "geometry": {"type": "Point", "coordinates": [0.483344290978, 44.6188360432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40a6fbf3d5064dd7ab43f63777c31162db3ebfff", "fields": {"nom_de_la_commune": "STE COLOMBE DE VILLENEUVE", "libell_d_acheminement": "STE COLOMBE DE VILLENEUVE", "code_postal": "47300", "coordonnees_gps": [44.4077673219, 0.711996693355], "code_commune_insee": "47237"}, "geometry": {"type": "Point", "coordinates": [0.711996693355, 44.4077673219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1b5296b87525266b88ae17b6ab6663e87c3f6e8", "fields": {"nom_de_la_commune": "STE GEMME MARTAILLAC", "libell_d_acheminement": "STE GEMME MARTAILLAC", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47244"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5236aea6114095baceb2139e0b9f7dcfaef4ae92", "fields": {"nom_de_la_commune": "ST GERAUD", "libell_d_acheminement": "ST GERAUD", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47245"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "254d945acaf0353513366a3208694ee8a689ad94", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "47130", "coordonnees_gps": [44.2354000817, 0.42312133119], "code_commune_insee": "47249"}, "geometry": {"type": "Point", "coordinates": [0.42312133119, 44.2354000817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896c6eeb66c94f54f1ea1bf4736d9056c5b7368c", "fields": {"nom_de_la_commune": "ST MARTIN DE BEAUVILLE", "libell_d_acheminement": "ST MARTIN DE BEAUVILLE", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47255"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4861dc60d9a1747993972f4076d67496cf180180", "fields": {"nom_de_la_commune": "ST MARTIN DE VILLEREAL", "libell_d_acheminement": "ST MARTIN DE VILLEREAL", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47256"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b2e825ac8f35360fdd33f15275124e01031237", "fields": {"nom_de_la_commune": "ST MARTIN PETIT", "libell_d_acheminement": "ST MARTIN PETIT", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47257"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58925a156012cd6334339e4e05450f642ac956be", "fields": {"nom_de_la_commune": "ST PARDOUX ISAAC", "libell_d_acheminement": "ST PARDOUX ISAAC", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47264"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96567f8452e7af188e82c28aa96aaed482d0df01", "fields": {"nom_de_la_commune": "ST QUENTIN DU DROPT", "libell_d_acheminement": "ST QUENTIN DU DROPT", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47272"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fe08ed71cd4aee2cbefece34c8891a252e595bf", "fields": {"nom_de_la_commune": "ST ROMAIN LE NOBLE", "libell_d_acheminement": "ST ROMAIN LE NOBLE", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47274"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "489caf86af36248c630bfb3a13c4292aff934901", "fields": {"nom_de_la_commune": "ST VINCENT DE LAMONTJOIE", "libell_d_acheminement": "ST VINCENT DE LAMONTJOIE", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47282"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9dc9a2ccd90a5392113b2ecd4133a3d13a23b1", "fields": {"nom_de_la_commune": "SALLES", "libell_d_acheminement": "SALLES", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47284"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d771304cf3921fc3df22fc8be3c640413ce0c088", "fields": {"nom_de_la_commune": "TAILLEBOURG", "libell_d_acheminement": "TAILLEBOURG", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47304"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be38fb0b76fd60d4cc163e5962b75606005fb941", "fields": {"nom_de_la_commune": "TAYRAC", "libell_d_acheminement": "TAYRAC", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47305"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad4be829e643da8f045891bd632596b34c586f0", "fields": {"nom_de_la_commune": "THOUARS SUR GARONNE", "libell_d_acheminement": "THOUARS SUR GARONNE", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47308"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8b693408a05c945c4a7ddba77a39876e9d2baf", "fields": {"nom_de_la_commune": "TOMBEBOEUF", "libell_d_acheminement": "TOMBEBOEUF", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47309"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e0c033772c32c71d92717e49155215dbfff2ffd", "fields": {"nom_de_la_commune": "TOURTRES", "libell_d_acheminement": "TOURTRES", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47313"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5a3fa6c895bed29652438663c91e7861564b85c", "fields": {"nom_de_la_commune": "VIANNE", "libell_d_acheminement": "VIANNE", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47318"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d86473ee6aae84ef079aa3688f7d6930c76e378", "fields": {"nom_de_la_commune": "VILLENEUVE DE DURAS", "libell_d_acheminement": "VILLENEUVE DE DURAS", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47321"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "563761beac72c18f47c756ce7021f900a2db0a23", "fields": {"nom_de_la_commune": "VILLEREAL", "libell_d_acheminement": "VILLEREAL", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47324"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "853793574fac82866e562768fa445724960ddf5b", "fields": {"code_postal": "48200", "code_commune_insee": "48002", "libell_d_acheminement": "ALBARET STE MARIE", "ligne_5": "LA GARDE", "nom_de_la_commune": "ALBARET STE MARIE", "coordonnees_gps": [44.8172105635, 3.26915609563]}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44cf7a3a19b846b878d0625e33b8e1b8ccc3fefc", "fields": {"nom_de_la_commune": "BAGNOLS LES BAINS", "libell_d_acheminement": "BAGNOLS LES BAINS", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48014"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e2c7cc5a518f9f50a0b523851c7df5a6e574bc", "fields": {"nom_de_la_commune": "BANASSAC CANILHAC", "libell_d_acheminement": "BANASSAC CANILHAC", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48017"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2656377eb0cbc31f80810043186566be656f2a8c", "fields": {"nom_de_la_commune": "LES BESSONS", "libell_d_acheminement": "LES BESSONS", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48025"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b14826c9eadfd04a7e5e9e86d97dfb089731036c", "fields": {"nom_de_la_commune": "BLAVIGNAC", "libell_d_acheminement": "BLAVIGNAC", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48026"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "246e9b78101b5eecc9ad7518ea7e2144b1a02fd8", "fields": {"nom_de_la_commune": "LE BUISSON", "libell_d_acheminement": "LE BUISSON", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48032"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d13f25870019ddb5b430bb67427f23ec3efa1c1", "fields": {"code_postal": "48500", "code_commune_insee": "48034", "libell_d_acheminement": "LA CANOURGUE", "ligne_5": "LA CAPELLE", "nom_de_la_commune": "LA CANOURGUE", "coordonnees_gps": [44.3691464127, 3.23194733105]}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43395c47c190041faf08f800f56fa986c27ba5f3", "fields": {"nom_de_la_commune": "CASSAGNAS", "libell_d_acheminement": "CASSAGNAS", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48036"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7168813ff7aaeb2dd93dc06d5e5ff4c8a38cfcd9", "fields": {"nom_de_la_commune": "CHASTEL NOUVEL", "libell_d_acheminement": "CHASTEL NOUVEL", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48042"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb5ef25bec1df84d97da4c89a89eba35f19a7a45", "fields": {"nom_de_la_commune": "CHATEAUNEUF DE RANDON", "libell_d_acheminement": "CHATEAUNEUF DE RANDON", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48043"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf80267325f193fbe512a6c97182df2c46bc206", "fields": {"nom_de_la_commune": "CHEYLARD L EVEQUE", "libell_d_acheminement": "CHEYLARD L EVEQUE", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48048"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7891e26148c96fc997a8ddf9c45253bee921a9e6", "fields": {"code_postal": "48400", "code_commune_insee": "48050", "libell_d_acheminement": "BEDOUES COCURES", "ligne_5": "BEDOUES", "nom_de_la_commune": "BEDOUES COCURES", "coordonnees_gps": [44.2653689577, 3.61246385495]}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab7067f34308bb5759429ec0309ba3e62f1bc16", "fields": {"nom_de_la_commune": "LE COLLET DE DEZE", "libell_d_acheminement": "LE COLLET DE DEZE", "code_postal": "48160", "coordonnees_gps": [44.2409475687, 3.90246721272], "code_commune_insee": "48051"}, "geometry": {"type": "Point", "coordinates": [3.90246721272, 44.2409475687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d563b82974ab0cb8c4413d71684b1a6ad1fcb3d2", "fields": {"code_postal": "48400", "code_commune_insee": "48061", "libell_d_acheminement": "FLORAC TROIS RIVIERES", "ligne_5": "LA SALLE PRUNET", "nom_de_la_commune": "FLORAC TROIS RIVIERES", "coordonnees_gps": [44.2653689577, 3.61246385495]}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "882419805587f9d4a5a16986b62299d0a49304bf", "fields": {"nom_de_la_commune": "GABRIAC", "libell_d_acheminement": "GABRIAC", "code_postal": "48110", "coordonnees_gps": [44.1928198213, 3.72930713182], "code_commune_insee": "48067"}, "geometry": {"type": "Point", "coordinates": [3.72930713182, 44.1928198213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18a0f6c76b73f3d3350a20d45753599ffdd0079c", "fields": {"nom_de_la_commune": "GATUZIERES", "libell_d_acheminement": "GATUZIERES", "code_postal": "48150", "coordonnees_gps": [44.2076020774, 3.4086160478], "code_commune_insee": "48069"}, "geometry": {"type": "Point", "coordinates": [3.4086160478, 44.2076020774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06db45e9e037e1113e014f02622bec4f3a7bb688", "fields": {"nom_de_la_commune": "GRANDVALS", "libell_d_acheminement": "GRANDVALS", "code_postal": "48260", "coordonnees_gps": [44.6612261572, 3.06211569537], "code_commune_insee": "48071"}, "geometry": {"type": "Point", "coordinates": [3.06211569537, 44.6612261572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "525e3803af423776ebf3b36bf548bf401c3b8700", "fields": {"nom_de_la_commune": "HURES LA PARADE", "libell_d_acheminement": "HURES LA PARADE", "code_postal": "48150", "coordonnees_gps": [44.2076020774, 3.4086160478], "code_commune_insee": "48074"}, "geometry": {"type": "Point", "coordinates": [3.4086160478, 44.2076020774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7641057120f249f603e41e1af43c2e807630f0c6", "fields": {"nom_de_la_commune": "LANGOGNE", "libell_d_acheminement": "LANGOGNE", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48080"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c19ade3839b328ba64ec188b490add8c87b715d", "fields": {"nom_de_la_commune": "LAUBERT", "libell_d_acheminement": "LAUBERT", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48082"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb65bbea2f06ee5f67e419569ebb07068f4008c", "fields": {"nom_de_la_commune": "LAVAL ATGER", "libell_d_acheminement": "LAVAL ATGER", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48084"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb6004fe95feb8855391ca8173262019a73a7ba3", "fields": {"nom_de_la_commune": "MARCHASTEL", "libell_d_acheminement": "MARCHASTEL", "code_postal": "48260", "coordonnees_gps": [44.6612261572, 3.06211569537], "code_commune_insee": "48091"}, "geometry": {"type": "Point", "coordinates": [3.06211569537, 44.6612261572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86e73acba862ef3581f67c603458c046a852ad0b", "fields": {"code_postal": "48100", "code_commune_insee": "48099", "libell_d_acheminement": "BOURGS SUR COLAGNE", "ligne_5": "CHIRAC", "nom_de_la_commune": "BOURGS SUR COLAGNE", "coordonnees_gps": [44.5866860441, 3.24770669701]}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49150981d4aa0755eee9d5123600d41917d31177", "fields": {"nom_de_la_commune": "PAULHAC EN MARGERIDE", "libell_d_acheminement": "PAULHAC EN MARGERIDE", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48110"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c7f3a6d41611988f755bc5d8736539f7ccb44aa", "fields": {"code_postal": "48220", "code_commune_insee": "48116", "libell_d_acheminement": "PONT DE MONTVERT SUD MONT LOZERE", "ligne_5": "LE PONT DE MONTVERT", "nom_de_la_commune": "PONT DE MONTVERT SUD MONT LOZERE", "coordonnees_gps": [44.3629471664, 3.81136680024]}, "geometry": {"type": "Point", "coordinates": [3.81136680024, 44.3629471664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1b9c43cf8b31a0e55182fb7be29b03e6f65e06c", "fields": {"nom_de_la_commune": "PREVENCHERES", "libell_d_acheminement": "PREVENCHERES", "code_postal": "48800", "coordonnees_gps": [44.4744037088, 3.906783441], "code_commune_insee": "48119"}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "593b3348808f3110dd43084196a258881027a015", "fields": {"code_postal": "48320", "code_commune_insee": "48122", "libell_d_acheminement": "QUEZAC", "ligne_5": "BLAJOUX", "nom_de_la_commune": "QUEZAC", "coordonnees_gps": [44.3839235672, 3.52688734054]}, "geometry": {"type": "Point", "coordinates": [3.52688734054, 44.3839235672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5800fbee4678c201331abcd8c8346ba91cd348ff", "fields": {"nom_de_la_commune": "RECOULES D AUBRAC", "libell_d_acheminement": "RECOULES D AUBRAC", "code_postal": "48260", "coordonnees_gps": [44.6612261572, 3.06211569537], "code_commune_insee": "48123"}, "geometry": {"type": "Point", "coordinates": [3.06211569537, 44.6612261572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c1d9a3aa4de161db75cce540f85dc5ba98f7f6", "fields": {"nom_de_la_commune": "RIMEIZE", "libell_d_acheminement": "RIMEIZE", "code_postal": "48200", "coordonnees_gps": [44.8172105635, 3.26915609563], "code_commune_insee": "48128"}, "geometry": {"type": "Point", "coordinates": [3.26915609563, 44.8172105635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6000ad3858a5e4ec6436cc54b6b1a50208c44060", "fields": {"nom_de_la_commune": "ROCLES", "libell_d_acheminement": "ROCLES", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48129"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a1bf414fa6f66bd3cec232389edca9c8bf0491f", "fields": {"nom_de_la_commune": "ST BAUZILE", "libell_d_acheminement": "ST BAUZILE", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48137"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b9e3df8b6917fb1128ebd94341ed711e341f436", "fields": {"nom_de_la_commune": "ST BONNET DE MONTAUROUX", "libell_d_acheminement": "ST BONNET DE MONTAUROUX", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48139"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b5417b637c34f072aab6765370bad47b820d961", "fields": {"nom_de_la_commune": "ST ETIENNE DU VALDONNEZ", "libell_d_acheminement": "ST ETIENNE DU VALDONNEZ", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48147"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e30741c48905f26eea2360809f0ffcc29cce60ec", "fields": {"code_postal": "48240", "code_commune_insee": "48152", "libell_d_acheminement": "VENTALON EN CEVENNES", "ligne_5": "ST FREZAL DE VENTALON", "nom_de_la_commune": "VENTALON EN CEVENNES", "coordonnees_gps": [44.2838225075, 3.82458328852]}, "geometry": {"type": "Point", "coordinates": [3.82458328852, 44.2838225075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba2d683a10a413e18b0f552a47d051ad289544d2", "fields": {"nom_de_la_commune": "ST JUERY", "libell_d_acheminement": "ST JUERY", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48161"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dba0fd8b8d807ad7e195ae013d1a579846234a73", "fields": {"nom_de_la_commune": "ST MARTIN DE BOUBAUX", "libell_d_acheminement": "ST MARTIN DE BOUBAUX", "code_postal": "48160", "coordonnees_gps": [44.2409475687, 3.90246721272], "code_commune_insee": "48170"}, "geometry": {"type": "Point", "coordinates": [3.90246721272, 44.2409475687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4dba57f7edf59e889e422c338992796cb11f2dd", "fields": {"nom_de_la_commune": "ST PIERRE DE NOGARET", "libell_d_acheminement": "ST PIERRE DE NOGARET", "code_postal": "48340", "coordonnees_gps": [44.5032026768, 3.13108556015], "code_commune_insee": "48175"}, "geometry": {"type": "Point", "coordinates": [3.13108556015, 44.5032026768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "432d27b8206d6c25bf9a0833f8717f6a40ab56ff", "fields": {"nom_de_la_commune": "ST PRIVAT DU FAU", "libell_d_acheminement": "ST PRIVAT DU FAU", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48179"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58528a619ce7c50829bf55eb2e80db5b702b9cf9", "fields": {"nom_de_la_commune": "ST SAUVEUR DE GINESTOUX", "libell_d_acheminement": "ST SAUVEUR DE GINESTOUX", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48182"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d439d56ee543ef71d480daac67384f23fc32cf10", "fields": {"nom_de_la_commune": "LA TIEULE", "libell_d_acheminement": "LA TIEULE", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48191"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0f24638d69d227d85f6f60f6519f0c345caba73", "fields": {"code_postal": "48800", "code_commune_insee": "48198", "libell_d_acheminement": "VILLEFORT", "ligne_5": "MAS DE LA BARQUE", "nom_de_la_commune": "VILLEFORT", "coordonnees_gps": [44.4744037088, 3.906783441]}, "geometry": {"type": "Point", "coordinates": [3.906783441, 44.4744037088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96c5f4ac8a7d41a2afdece2e3d0958f222524496", "fields": {"nom_de_la_commune": "ALLONNES", "libell_d_acheminement": "ALLONNES", "code_postal": "49650", "coordonnees_gps": [47.3050801952, 0.0400351360047], "code_commune_insee": "49002"}, "geometry": {"type": "Point", "coordinates": [0.0400351360047, 47.3050801952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ed71aa0ce385a7f096d694f81123f5aabd876ce", "fields": {"nom_de_la_commune": "ARMAILLE", "libell_d_acheminement": "ARMAILLE", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49010"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75fc3f1bc373aece9e826742ec84398619480718", "fields": {"code_postal": "49510", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "LA POITEVINIERE", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2126550508, -0.983267587264]}, "geometry": {"type": "Point", "coordinates": [-0.983267587264, 47.2126550508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81ffbb62e6a3d604202934b1c1de820f615ea19e", "fields": {"nom_de_la_commune": "BEAUPREAU EN MAUGES", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "code_postal": "49600", "coordonnees_gps": [47.2158259627, -0.988419647755], "code_commune_insee": "49023"}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9390dc16d314c5da4643f476923e0af70adc9f6", "fields": {"nom_de_la_commune": "BLAISON ST SULPICE", "libell_d_acheminement": "BLAISON ST SULPICE", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49029"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05faebbacf5aee47032674fd0ea6f47d76439e4b", "fields": {"nom_de_la_commune": "BOURG L EVEQUE", "libell_d_acheminement": "BOURG L EVEQUE", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49038"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a71b3b3d6fcfe2fa2e7640fbb92857c785a7757e", "fields": {"nom_de_la_commune": "BREZE", "libell_d_acheminement": "BREZE", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49046"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5168b291692334189decd708d2d7097a6ce074e4", "fields": {"nom_de_la_commune": "BROC", "libell_d_acheminement": "BROC", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49052"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaffa851ce92991e9f22bc0b420ad7150cbb2c9e", "fields": {"nom_de_la_commune": "CHALONNES SOUS LE LUDE", "libell_d_acheminement": "CHALONNES SOUS LE LUDE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49062"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4589efd64d64c129af56e104464601db17dd03e8", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "LA CHAPELLE ROUSSELIN", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0d1a8c2123b401729265d791cb0b4ffc02fefe", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "NEUVY EN MAUGES", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12693076368c3cea24b3eb30ecf05085deb10d4b", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "ST GEORGES DES GARDES", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96bfcaa4bab0878d5946d90ffaa8fc3744b64fe", "fields": {"nom_de_la_commune": "DENEZE SOUS LE LUDE", "libell_d_acheminement": "DENEZE SOUS LE LUDE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49122"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0335ce55bdb4617ed1a0e2413a5f266f456a1d", "fields": {"nom_de_la_commune": "ECOUFLANT", "libell_d_acheminement": "ECOUFLANT", "code_postal": "49000", "coordonnees_gps": [47.4914905977, -0.545029996891], "code_commune_insee": "49129"}, "geometry": {"type": "Point", "coordinates": [-0.545029996891, 47.4914905977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d817519a0ea29a5760d36e6524b72b73a54aa4c4", "fields": {"nom_de_la_commune": "FONTEVRAUD L ABBAYE", "libell_d_acheminement": "FONTEVRAUD L ABBAYE", "code_postal": "49590", "coordonnees_gps": [47.1842709819, 0.0347512370897], "code_commune_insee": "49140"}, "geometry": {"type": "Point", "coordinates": [0.0347512370897, 47.1842709819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6add1704ae8eab96b79b49e922f86182e3b2b4", "fields": {"code_postal": "49320", "code_commune_insee": "49149", "libell_d_acheminement": "GENNES VAL DE LOIRE", "ligne_5": "GREZILLE", "nom_de_la_commune": "GENNES VAL DE LOIRE", "coordonnees_gps": [47.3445084599, -0.383825339756]}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51e378d9f7048594014f0ec384bc69ea24fceee7", "fields": {"nom_de_la_commune": "GENNES VAL DE LOIRE", "libell_d_acheminement": "GENNES VAL DE LOIRE", "code_postal": "49350", "coordonnees_gps": [47.3419898447, -0.231335175854], "code_commune_insee": "49149"}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6d48a39092ae6ae48fb0e9f63267245f00f5015", "fields": {"code_postal": "08270", "code_commune_insee": "08329", "libell_d_acheminement": "NOVION PORCIEN", "ligne_5": "PROVISY", "nom_de_la_commune": "NOVION PORCIEN", "coordonnees_gps": [49.6013662608, 4.45102282302]}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343ebcdc8a0c0d8e1bd7d45c2c36f073a8a9affc", "fields": {"nom_de_la_commune": "LA NEUVILLE LES WASIGNY", "libell_d_acheminement": "LA NEUVILLE LES WASIGNY", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08323"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc05d9dcdc9fc793558c98f60e1aff0ae44554b", "fields": {"nom_de_la_commune": "MAISONCELLE ET VILLERS", "libell_d_acheminement": "MAISONCELLE ET VILLERS", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08268"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b25a4f792ebd05f86a5646e542af4a0a99f2269b", "fields": {"nom_de_la_commune": "MONT ST REMY", "libell_d_acheminement": "MONT ST REMY", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08309"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b222c18f2fa5e8c67b057ff913ada9316dd6ea8", "fields": {"nom_de_la_commune": "MESSINCOURT", "libell_d_acheminement": "MESSINCOURT", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08289"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ebd248ec7229d9245d45dae2085f5a4456a2e06", "fields": {"nom_de_la_commune": "NEUFMANIL", "libell_d_acheminement": "NEUFMANIL", "code_postal": "08700", "coordonnees_gps": [49.8150344171, 4.80706022542], "code_commune_insee": "08316"}, "geometry": {"type": "Point", "coordinates": [4.80706022542, 49.8150344171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c44f8947708c41f6204901815175161f15b461aa", "fields": {"nom_de_la_commune": "NEUFLIZE", "libell_d_acheminement": "NEUFLIZE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08314"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13f03f8374f735f8a98f0621d01dd92264a0a658", "fields": {"nom_de_la_commune": "MACHAULT", "libell_d_acheminement": "MACHAULT", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08264"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee13c1f03baa2d2a2e7b253417916793eeb91943", "fields": {"nom_de_la_commune": "MARGUT", "libell_d_acheminement": "MARGUT", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08276"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04346a3f4c324fe787dfd2c81af5fd16cd25a02b", "fields": {"nom_de_la_commune": "MOGUES", "libell_d_acheminement": "MOGUES", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08291"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc28f6c07eb183d52d4cfc5b468debd35fca7315", "fields": {"nom_de_la_commune": "LANDRES ET ST GEORGES", "libell_d_acheminement": "LANDRES ET ST GEORGES", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08246"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a2f12492bd2de868af1716be8cabe674a923561", "fields": {"nom_de_la_commune": "LES HAUTES RIVIERES", "libell_d_acheminement": "LES HAUTES RIVIERES", "code_postal": "08800", "coordonnees_gps": [49.898909719, 4.79046954849], "code_commune_insee": "08218"}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee2f9809933a16201a2e8335926bbad416780026", "fields": {"nom_de_la_commune": "LEPRON LES VALLEES", "libell_d_acheminement": "LEPRON LES VALLEES", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08251"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23684fab6909fc4a5b258b595eeba33de8669bf4", "fields": {"nom_de_la_commune": "HANNOGNE ST MARTIN", "libell_d_acheminement": "HANNOGNE ST MARTIN", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08209"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c2d9bfaf075afa2ece60f137236cae4e3809755", "fields": {"nom_de_la_commune": "HOULDIZY", "libell_d_acheminement": "HOULDIZY", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08230"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45d7bbadc510381a665994da97a1825166724c6b", "fields": {"nom_de_la_commune": "HIERGES", "libell_d_acheminement": "HIERGES", "code_postal": "08320", "coordonnees_gps": [50.0723012487, 4.74304215812], "code_commune_insee": "08226"}, "geometry": {"type": "Point", "coordinates": [4.74304215812, 50.0723012487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e4a6e8dd2e25e444ded2d075e109a2866ae6b2b", "fields": {"nom_de_la_commune": "LETANNE", "libell_d_acheminement": "LETANNE", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08252"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9bc9ba7c8ab9747931e7db8f194b2cc8cffb2d", "fields": {"nom_de_la_commune": "LALOBBE", "libell_d_acheminement": "LALOBBE", "code_postal": "08460", "coordonnees_gps": [49.7134288186, 4.4616721559], "code_commune_insee": "08243"}, "geometry": {"type": "Point", "coordinates": [4.4616721559, 49.7134288186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb04087ff82b2992387ad67cd743bf784c657d5", "fields": {"nom_de_la_commune": "LIART", "libell_d_acheminement": "LIART", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08254"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14cb4b9a2fe57f003b6e049b27ccb9a6cb28a92c", "fields": {"nom_de_la_commune": "LINAY", "libell_d_acheminement": "LINAY", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08255"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0f64826f6e06833076f3642ee3b0babc4f14e9c", "fields": {"nom_de_la_commune": "FLAIGNES HAVYS", "libell_d_acheminement": "FLAIGNES HAVYS", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08169"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f5ce762973fd33e62b3779b9d0d665a0c928a08", "fields": {"nom_de_la_commune": "GESPUNSART", "libell_d_acheminement": "GESPUNSART", "code_postal": "08700", "coordonnees_gps": [49.8150344171, 4.80706022542], "code_commune_insee": "08188"}, "geometry": {"type": "Point", "coordinates": [4.80706022542, 49.8150344171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03fd4cfb743af52c8d2f7b91c305adb809beb692", "fields": {"nom_de_la_commune": "GUINCOURT", "libell_d_acheminement": "GUINCOURT", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08204"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d5d03e080cb0bc5f0dbd92572fc1a9b36f4cb3", "fields": {"nom_de_la_commune": "HANNAPPES", "libell_d_acheminement": "HANNAPPES", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08208"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc00b314787ec8c5c18e90190d1c22537af47c56", "fields": {"nom_de_la_commune": "GERNELLE", "libell_d_acheminement": "GERNELLE", "code_postal": "08440", "coordonnees_gps": [49.7465336406, 4.81357930291], "code_commune_insee": "08187"}, "geometry": {"type": "Point", "coordinates": [4.81357930291, 49.7465336406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f97f901b7b6dd3c99802679946efe739d4655bf2", "fields": {"nom_de_la_commune": "ECORDAL", "libell_d_acheminement": "ECORDAL", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08151"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b22c1a84f896e6e95d035d3ff44a8939ac5cdf01", "fields": {"nom_de_la_commune": "GIVONNE", "libell_d_acheminement": "GIVONNE", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08191"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99ca561da7f01a28598344b78ec5a5998acee528", "fields": {"nom_de_la_commune": "DRAIZE", "libell_d_acheminement": "DRAIZE", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08146"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c86b8c35842d1635eb98ce34b37c45f303608424", "fields": {"nom_de_la_commune": "GIVRON", "libell_d_acheminement": "GIVRON", "code_postal": "08220", "coordonnees_gps": [49.6447010155, 4.20764091673], "code_commune_insee": "08192"}, "geometry": {"type": "Point", "coordinates": [4.20764091673, 49.6447010155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3744dee3134807a1925eb31165d7f85947d56121", "fields": {"nom_de_la_commune": "GOMONT", "libell_d_acheminement": "GOMONT", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08195"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a541a72a00d22c23d1496394e65e3a9e2c4cd34", "fields": {"nom_de_la_commune": "SAULCES CHAMPENOISES", "libell_d_acheminement": "SAULCES CHAMPENOISES", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08401"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9953f0a2866d05da6e2194e5b879b0858205ded", "fields": {"nom_de_la_commune": "ST PIERRE SUR VENCE", "libell_d_acheminement": "ST PIERRE SUR VENCE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08395"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374b5ed9e31255eb1f2c1b707059f45386c17661", "fields": {"nom_de_la_commune": "SIGNY LE PETIT", "libell_d_acheminement": "SIGNY LE PETIT", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08420"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05359e3030d27829e85087654f696e63554d2e5", "fields": {"nom_de_la_commune": "STE VAUBOURG", "libell_d_acheminement": "STE VAUBOURG", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08398"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f22374c818089ab16b50616f3f659957fa993bc4", "fields": {"nom_de_la_commune": "ST PIERREMONT", "libell_d_acheminement": "ST PIERREMONT", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08394"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e74baa42a07f93fed4c2fe38f33efd1f10c78d", "fields": {"nom_de_la_commune": "SORMONNE", "libell_d_acheminement": "SORMONNE", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08429"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbed3d5538e0eed9b7cfc197d1d359f7475c8222", "fields": {"nom_de_la_commune": "ARRIEN EN BETHMALE", "libell_d_acheminement": "ARRIEN EN BETHMALE", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09017"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5745c017ec07cb7a548083a42097cbe889654d7c", "fields": {"nom_de_la_commune": "BEDEILLE", "libell_d_acheminement": "BEDEILLE", "code_postal": "09230", "coordonnees_gps": [43.097912883, 1.14262799526], "code_commune_insee": "09046"}, "geometry": {"type": "Point", "coordinates": [1.14262799526, 43.097912883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb656271f8afb65b5a42e9807ce61e73d250c98d", "fields": {"nom_de_la_commune": "ARABAUX", "libell_d_acheminement": "ARABAUX", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09013"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76aee7073b781f6d139aaef1e7ac3b245ea53136", "fields": {"nom_de_la_commune": "ARTIGAT", "libell_d_acheminement": "ARTIGAT", "code_postal": "09130", "coordonnees_gps": [43.1552424381, 1.41559693567], "code_commune_insee": "09019"}, "geometry": {"type": "Point", "coordinates": [1.41559693567, 43.1552424381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a41a868b2e249f59572d52b9408087e4260d1d7d", "fields": {"nom_de_la_commune": "ANTRAS", "libell_d_acheminement": "ANTRAS", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09011"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d8f14cade68b6d4830a03a35ba14cba4974847", "fields": {"nom_de_la_commune": "ALLIAT", "libell_d_acheminement": "ALLIAT", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09006"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee908d244e60f0d7371000625387ca78f7bfbfbe", "fields": {"nom_de_la_commune": "ARNAVE", "libell_d_acheminement": "ARNAVE", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09016"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b25e3a190409aad0554a72bf79900c8b71b76ba", "fields": {"nom_de_la_commune": "ALBIES", "libell_d_acheminement": "ALBIES", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09004"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e476b4c39e631c7080789b211f32a4aef3490e", "fields": {"nom_de_la_commune": "APPY", "libell_d_acheminement": "APPY", "code_postal": "09250", "coordonnees_gps": [42.7695518986, 1.76637760482], "code_commune_insee": "09012"}, "geometry": {"type": "Point", "coordinates": [1.76637760482, 42.7695518986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76325c3888ae18aa02d6c7a3b2bc6338366b4d6d", "fields": {"code_postal": "10220", "code_commune_insee": "10019", "libell_d_acheminement": "VAL D AUZON", "ligne_5": "VILLEHARDOUIN", "nom_de_la_commune": "VAL D AUZON", "coordonnees_gps": [48.3496514843, 4.3203044052]}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e24a076916e181ebe931ae01b47f3749ca93102f", "fields": {"nom_de_la_commune": "AVANT LES MARCILLY", "libell_d_acheminement": "AVANT LES MARCILLY", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10020"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b73f0b54feb4ff641f3f64e304cc5dce50a01d5", "fields": {"nom_de_la_commune": "LES BORDES AUMONT", "libell_d_acheminement": "LES BORDES AUMONT", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10049"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc8667f3112e121eb8fa98b92dbde19d1ed47df8", "fields": {"nom_de_la_commune": "BAGNEUX LA FOSSE", "libell_d_acheminement": "BAGNEUX LA FOSSE", "code_postal": "10340", "coordonnees_gps": [47.9929585912, 4.30782302551], "code_commune_insee": "10025"}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88cf8abf427852bf11deb0ad830e7dbd815d4967", "fields": {"nom_de_la_commune": "BOUY LUXEMBOURG", "libell_d_acheminement": "BOUY LUXEMBOURG", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10056"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417c7ffd8133d119a887c2e1ee4493cbe082321a", "fields": {"nom_de_la_commune": "BOURGUIGNONS", "libell_d_acheminement": "BOURGUIGNONS", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10055"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "512e76ef7b40d9f549e85638ea158c8535184257", "fields": {"nom_de_la_commune": "BLIGNICOURT", "libell_d_acheminement": "BLIGNICOURT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10047"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1096fae829f0a93a75f9fcc4d566118b069522b4", "fields": {"nom_de_la_commune": "BLIGNY", "libell_d_acheminement": "BLIGNY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10048"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be0b680682b000237696928e7b98927f94a9991", "fields": {"nom_de_la_commune": "BERNON", "libell_d_acheminement": "BERNON", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10040"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941ab667eab7ef8a02dc2f8dd4f37874a9869ffd", "fields": {"nom_de_la_commune": "AULNAY", "libell_d_acheminement": "AULNAY", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10017"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ada749b13c0382718867b3c736a6853fccb5446", "fields": {"code_postal": "10200", "code_commune_insee": "10113", "libell_d_acheminement": "COUVIGNON", "ligne_5": "VAL PERDU", "nom_de_la_commune": "COUVIGNON", "coordonnees_gps": [48.2425292795, 4.71148061919]}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f53b09e1864962c6a7cd8ff6dfb1a697913daa35", "fields": {"nom_de_la_commune": "LA CHAPELLE ST LUC", "libell_d_acheminement": "LA CHAPELLE ST LUC", "code_postal": "10600", "coordonnees_gps": [48.3767482025, 3.98875459714], "code_commune_insee": "10081"}, "geometry": {"type": "Point", "coordinates": [3.98875459714, 48.3767482025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "711be605d212e3f0b58c6b9b9e268fb1fb656754", "fields": {"nom_de_la_commune": "CHALETTE SUR VOIRE", "libell_d_acheminement": "CHALETTE SUR VOIRE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10073"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bb93e14c379ca1dd58ce118ac4ab739d04514ab", "fields": {"nom_de_la_commune": "CHAMP SUR BARSE", "libell_d_acheminement": "CHAMP SUR BARSE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10078"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea1ca9d59fa7beea003758e2a49e228edaa0f90", "fields": {"nom_de_la_commune": "COURTAOULT", "libell_d_acheminement": "COURTAOULT", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10108"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d10a1003aa9276ca9b9f432bced95b87f0bd44e2", "fields": {"nom_de_la_commune": "COURTERON", "libell_d_acheminement": "COURTERON", "code_postal": "10250", "coordonnees_gps": [48.0053306806, 4.46269020196], "code_commune_insee": "10111"}, "geometry": {"type": "Point", "coordinates": [4.46269020196, 48.0053306806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3b610b7533deeccfa6727b10b971ee37fcce7bc", "fields": {"nom_de_la_commune": "LA CHAISE", "libell_d_acheminement": "LA CHAISE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10072"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e742de62f4c2edde6bf9d6a6870f47dbbdeb2a2", "fields": {"nom_de_la_commune": "CHAOURCE", "libell_d_acheminement": "CHAOURCE", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10080"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9d2ea0dc560c99bc7f7be45de7a8b3ab764f92", "fields": {"nom_de_la_commune": "CHACENAY", "libell_d_acheminement": "CHACENAY", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10071"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e796ea1d94769076d333d8fd16581ef86a6373", "fields": {"nom_de_la_commune": "BRAUX", "libell_d_acheminement": "BRAUX", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10059"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e989a7523bdf5277b91367a34f374364fcda077", "fields": {"nom_de_la_commune": "RABAT LES TROIS SEIGNEURS", "libell_d_acheminement": "RABAT LES TROIS SEIGNEURS", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09241"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452e3cf40169000e34137411607b25d66e53d618", "fields": {"nom_de_la_commune": "SAVIGNAC LES ORMEAUX", "libell_d_acheminement": "SAVIGNAC LES ORMEAUX", "code_postal": "09110", "coordonnees_gps": [42.687868237, 1.86458335672], "code_commune_insee": "09283"}, "geometry": {"type": "Point", "coordinates": [1.86458335672, 42.687868237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2803ee1fc6f601554a8a3f9752960fd38540c0b3", "fields": {"nom_de_la_commune": "ST JEAN DE VERGES", "libell_d_acheminement": "ST JEAN DE VERGES", "code_postal": "09000", "coordonnees_gps": [42.9514815414, 1.58076108382], "code_commune_insee": "09264"}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65d9a84ed8e9a5ab37f1c3b0c40d8d493edfcb3d", "fields": {"nom_de_la_commune": "ST MARTIN D OYDES", "libell_d_acheminement": "ST MARTIN D OYDES", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09270"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1dae52f0202980efb75e04927e99708053409af", "fields": {"nom_de_la_commune": "ROQUEFIXADE", "libell_d_acheminement": "ROQUEFIXADE", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09249"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c54f098ab69084f8eee3103eea7e77844f94d4", "fields": {"nom_de_la_commune": "SAVERDUN", "libell_d_acheminement": "SAVERDUN", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09282"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5997f35b4f2ca3138728c2da6bc7dbf5c1524629", "fields": {"nom_de_la_commune": "ST LARY", "libell_d_acheminement": "ST LARY", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09267"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38388e644e45d2480ed614402142f7621cdec300", "fields": {"nom_de_la_commune": "STE FOI", "libell_d_acheminement": "STE FOI", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09260"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c87ec69740a0601d91ce84bf6cba0b4b209198f8", "fields": {"nom_de_la_commune": "RIMONT", "libell_d_acheminement": "RIMONT", "code_postal": "09420", "coordonnees_gps": [42.9874247202, 1.30308846281], "code_commune_insee": "09246"}, "geometry": {"type": "Point", "coordinates": [1.30308846281, 42.9874247202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47175fc39b7145d07842b76bc9f03aa657965d38", "fields": {"nom_de_la_commune": "SEM", "libell_d_acheminement": "SEM", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09286"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c93d4fffe8b8d98381f35f1407fd75e4be60ad6", "fields": {"nom_de_la_commune": "EGUILLY SOUS BOIS", "libell_d_acheminement": "EGUILLY SOUS BOIS", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10136"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218ecc64d8fe2c90c8e57b3c1785e4b5968effaa", "fields": {"nom_de_la_commune": "DROUPT STE MARIE", "libell_d_acheminement": "DROUPT STE MARIE", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10132"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9169f9e812521daa3ebfbe8be5d1136a37c050", "fields": {"nom_de_la_commune": "DROUPT ST BASLE", "libell_d_acheminement": "DROUPT ST BASLE", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10131"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3578162be9905992193eaf7924f97a9c4831a83", "fields": {"nom_de_la_commune": "DONNEMENT", "libell_d_acheminement": "DONNEMENT", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10128"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa33b355dbe9f22e3d639e8c6a241410059cffe1", "fields": {"nom_de_la_commune": "ECLANCE", "libell_d_acheminement": "ECLANCE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10135"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1906761f482f988feffa03d735838ae190bdee3d", "fields": {"nom_de_la_commune": "DOSCHES", "libell_d_acheminement": "DOSCHES", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10129"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf247934a7b7963c388d94c974b61017eab7b340", "fields": {"code_postal": "10430", "code_commune_insee": "10325", "libell_d_acheminement": "ROSIERES PRES TROYES", "ligne_5": "VIELAINES", "nom_de_la_commune": "ROSIERES PRES TROYES", "coordonnees_gps": [48.2625722664, 4.06313476584]}, "geometry": {"type": "Point", "coordinates": [4.06313476584, 48.2625722664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "481dc63664521ee35326fb97ac01f179b9de31fa", "fields": {"nom_de_la_commune": "PONT STE MARIE", "libell_d_acheminement": "PONT STE MARIE", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10297"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f86e5ed87b9d1595bae3687c108045cdc377d7", "fields": {"nom_de_la_commune": "RILLY STE SYRE", "libell_d_acheminement": "RILLY STE SYRE", "code_postal": "10280", "coordonnees_gps": [48.434575792, 3.91881606144], "code_commune_insee": "10320"}, "geometry": {"type": "Point", "coordinates": [3.91881606144, 48.434575792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e284f5e3df5d35ee24ea6b2d4e1e30363044d147", "fields": {"nom_de_la_commune": "RADONVILLIERS", "libell_d_acheminement": "RADONVILLIERS", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10313"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "382645322f3044087020a0d185f6d5f7158f2b47", "fields": {"nom_de_la_commune": "PETIT MESNIL", "libell_d_acheminement": "PETIT MESNIL", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10286"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f18cf641cb35199baa314464f82bf7f17352085", "fields": {"nom_de_la_commune": "PROVERVILLE", "libell_d_acheminement": "PROVERVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10306"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc88280c2e88eacd2a25343851c4ae80b2c72cb", "fields": {"nom_de_la_commune": "PEL ET DER", "libell_d_acheminement": "PEL ET DER", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10283"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e02eda9348eb9fb371d7e8b6246523639e489c09", "fields": {"nom_de_la_commune": "RONCENAY", "libell_d_acheminement": "RONCENAY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10324"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fbc58de797b058ea087d91542b857306968eba8", "fields": {"nom_de_la_commune": "POLISOT", "libell_d_acheminement": "POLISOT", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10295"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965e3f1421cd0adc9a6dc3269b91990d7ca8916f", "fields": {"nom_de_la_commune": "RHEGES", "libell_d_acheminement": "RHEGES", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10316"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98eeb1f6a56d92e9ed9e1a8ebb48c0279fd8a60f", "fields": {"nom_de_la_commune": "MAIZIERES LA GRANDE PAROISSE", "libell_d_acheminement": "MAIZIERES LA GRANDE PAROISSE", "code_postal": "10510", "coordonnees_gps": [48.4879809815, 3.8003478172], "code_commune_insee": "10220"}, "geometry": {"type": "Point", "coordinates": [3.8003478172, 48.4879809815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4acb6b27715d8dfd28f37fe9187b2ff6ac1e564", "fields": {"nom_de_la_commune": "LA LOGE AUX CHEVRES", "libell_d_acheminement": "LA LOGE AUX CHEVRES", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10200"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ef70fb0c19f0fe3de4cb36a1d4c4f977a3222c", "fields": {"nom_de_la_commune": "MONTCEAUX LES VAUDES", "libell_d_acheminement": "MONTCEAUX LES VAUDES", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10246"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77dae127eea9c5d4e848e148950dc5c0c319c7cc", "fields": {"nom_de_la_commune": "LES LOGES MARGUERON", "libell_d_acheminement": "LES LOGES MARGUERON", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10202"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "421b568543a3fbeb24f8bdea5b0a3ffad51d42a3", "fields": {"nom_de_la_commune": "MARCILLY LE HAYER", "libell_d_acheminement": "MARCILLY LE HAYER", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10223"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957992791e15e8d55c985258d6b9bfd1300f4d15", "fields": {"nom_de_la_commune": "LOCHES SUR OURCE", "libell_d_acheminement": "LOCHES SUR OURCE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10199"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c12ecba5827b6451d3863655e936c9e07f4070", "fields": {"nom_de_la_commune": "LENTILLES", "libell_d_acheminement": "LENTILLES", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10192"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386cba7bc18fb8276a017d2a766407d55e315174", "fields": {"nom_de_la_commune": "MONTGUEUX", "libell_d_acheminement": "MONTGUEUX", "code_postal": "10300", "coordonnees_gps": [48.3017985875, 3.94562270532], "code_commune_insee": "10248"}, "geometry": {"type": "Point", "coordinates": [3.94562270532, 48.3017985875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70fccdedc80e7ef87e5b7f8677d801b7ec51188d", "fields": {"nom_de_la_commune": "LESMONT", "libell_d_acheminement": "LESMONT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10193"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a506d930f3a0459dc76e80aca03d14969c3c2f", "fields": {"nom_de_la_commune": "ERR", "libell_d_acheminement": "ERR", "code_postal": "66800", "coordonnees_gps": [42.4383838343, 2.06806880933], "code_commune_insee": "66067"}, "geometry": {"type": "Point", "coordinates": [2.06806880933, 42.4383838343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6e76246d471f1501f8ec421a60a368fbebdfea", "fields": {"nom_de_la_commune": "ESCARO", "libell_d_acheminement": "ESCARO", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66068"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9a925ddc88763f84a47f30540f244397c826705", "fields": {"nom_de_la_commune": "ESPIRA DE L AGLY", "libell_d_acheminement": "ESPIRA DE L AGLY", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66069"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d05e072d49e1313038eae6a58f14081f2d5061bc", "fields": {"nom_de_la_commune": "ESPIRA DE CONFLENT", "libell_d_acheminement": "ESPIRA DE CONFLENT", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66070"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ea6460231aadece1b852beede294fc93f567e6b", "fields": {"nom_de_la_commune": "EUS", "libell_d_acheminement": "EUS", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66074"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d972ce0c5fd9bdc935f4618140ec3ea639b6e6b8", "fields": {"nom_de_la_commune": "FOURQUES", "libell_d_acheminement": "FOURQUES", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66084"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f230c5860ca52dc22c4f64ef292972be463b1ede", "fields": {"nom_de_la_commune": "LAROQUE DES ALBERES", "libell_d_acheminement": "LAROQUE DES ALBERES", "code_postal": "66740", "coordonnees_gps": [42.5221445036, 2.90707419717], "code_commune_insee": "66093"}, "geometry": {"type": "Point", "coordinates": [2.90707419717, 42.5221445036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e06e089097d94d68e2729da2064cf09e133f2d", "fields": {"nom_de_la_commune": "LLAURO", "libell_d_acheminement": "LLAURO", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66099"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "798a3093ed59f6899e5f45455de16e7383e98b8e", "fields": {"nom_de_la_commune": "MILLAS", "libell_d_acheminement": "MILLAS", "code_postal": "66170", "coordonnees_gps": [42.6894398344, 2.7011687182], "code_commune_insee": "66108"}, "geometry": {"type": "Point", "coordinates": [2.7011687182, 42.6894398344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b2443bb616eaac2c58764c5f349bb5bf726c7c", "fields": {"nom_de_la_commune": "MONTBOLO", "libell_d_acheminement": "MONTBOLO", "code_postal": "66110", "coordonnees_gps": [42.4916633371, 2.63428714842], "code_commune_insee": "66113"}, "geometry": {"type": "Point", "coordinates": [2.63428714842, 42.4916633371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66be4fd8c9a2b465571c27e3b53912c7b11fb2b6", "fields": {"nom_de_la_commune": "MONTFERRER", "libell_d_acheminement": "MONTFERRER", "code_postal": "66150", "coordonnees_gps": [42.4639953782, 2.57094475406], "code_commune_insee": "66116"}, "geometry": {"type": "Point", "coordinates": [2.57094475406, 42.4639953782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b57b817245e3e309e6df50e220d017647a1a2ea1", "fields": {"nom_de_la_commune": "FONT ROMEU ODEILLO VIA", "libell_d_acheminement": "FONT ROMEU ODEILLO VIA", "code_postal": "66120", "coordonnees_gps": [42.5100577993, 2.01893656435], "code_commune_insee": "66124"}, "geometry": {"type": "Point", "coordinates": [2.01893656435, 42.5100577993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da505d3ce77aa63c577176d5aa785dcd9480e0b1", "fields": {"nom_de_la_commune": "PRADES", "libell_d_acheminement": "PRADES", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66149"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e150cee24762656e027ddf02e748e884ed226eb", "fields": {"nom_de_la_commune": "REAL", "libell_d_acheminement": "REAL", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66159"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2960ac96736198baeb5b5b3865a97c8e897ab66a", "fields": {"nom_de_la_commune": "REYNES", "libell_d_acheminement": "REYNES", "code_postal": "66400", "coordonnees_gps": [42.4987556652, 2.71589039576], "code_commune_insee": "66160"}, "geometry": {"type": "Point", "coordinates": [2.71589039576, 42.4987556652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f000bf2646dc346db3418efd786413de110bf6f2", "fields": {"nom_de_la_commune": "RODES", "libell_d_acheminement": "RODES", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66165"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68cf37f8431c3a1f26295ecba2a06a5acdc445bd", "fields": {"nom_de_la_commune": "SAHORRE", "libell_d_acheminement": "SAHORRE", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66166"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df51ae8749617f338ad96478300e14b343aefe2d", "fields": {"nom_de_la_commune": "ST ARNAC", "libell_d_acheminement": "ST ARNAC", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66169"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "708af20e9b720bf3c65c95beb7a530cc1cbb1107", "fields": {"code_postal": "66750", "code_commune_insee": "66171", "libell_d_acheminement": "ST CYPRIEN", "ligne_5": "ST CYPRIEN PLAGE", "nom_de_la_commune": "ST CYPRIEN", "coordonnees_gps": [42.6215443808, 3.01628317328]}, "geometry": {"type": "Point", "coordinates": [3.01628317328, 42.6215443808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4682388322a49be941fe1edcfc0a32e4bc40582", "fields": {"nom_de_la_commune": "ST ESTEVE", "libell_d_acheminement": "ST ESTEVE", "code_postal": "66240", "coordonnees_gps": [42.7153320362, 2.84595060447], "code_commune_insee": "66172"}, "geometry": {"type": "Point", "coordinates": [2.84595060447, 42.7153320362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3da1b26d600b15b9eb9b95b11b2c4201fbf588b", "fields": {"nom_de_la_commune": "ST GENIS DES FONTAINES", "libell_d_acheminement": "ST GENIS DES FONTAINES", "code_postal": "66740", "coordonnees_gps": [42.5221445036, 2.90707419717], "code_commune_insee": "66175"}, "geometry": {"type": "Point", "coordinates": [2.90707419717, 42.5221445036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181bb5aa6572d22d3daf350bc623c4664c4f72af", "fields": {"nom_de_la_commune": "ST JEAN PLA DE CORTS", "libell_d_acheminement": "ST JEAN PLA DE CORTS", "code_postal": "66490", "coordonnees_gps": [42.5223497938, 2.78118948745], "code_commune_insee": "66178"}, "geometry": {"type": "Point", "coordinates": [2.78118948745, 42.5223497938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b2a1c8d4193b8a49fad3bc46c119101e9eae556", "fields": {"nom_de_la_commune": "STE LEOCADIE", "libell_d_acheminement": "STE LEOCADIE", "code_postal": "66800", "coordonnees_gps": [42.4383838343, 2.06806880933], "code_commune_insee": "66181"}, "geometry": {"type": "Point", "coordinates": [2.06806880933, 42.4383838343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7166b80d1676bc127c01aa096801e82ad95ee80b", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE LA MER", "code_postal": "66470", "coordonnees_gps": [42.7263139951, 3.01721940799], "code_commune_insee": "66182"}, "geometry": {"type": "Point", "coordinates": [3.01721940799, 42.7263139951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9a0b292e12ce4066692e1204374924623ba351f", "fields": {"nom_de_la_commune": "ST MARSAL", "libell_d_acheminement": "ST MARSAL", "code_postal": "66110", "coordonnees_gps": [42.4916633371, 2.63428714842], "code_commune_insee": "66183"}, "geometry": {"type": "Point", "coordinates": [2.63428714842, 42.4916633371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207644500f1c172bd8bbb5b3034da77855cc6f1a", "fields": {"nom_de_la_commune": "ST MICHEL DE LLOTES", "libell_d_acheminement": "ST MICHEL DE LLOTES", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66185"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3775bc5a1cad668985accfaae788e0c89680eac4", "fields": {"nom_de_la_commune": "ST NAZAIRE", "libell_d_acheminement": "ST NAZAIRE", "code_postal": "66570", "coordonnees_gps": [42.6622045643, 2.98700685998], "code_commune_insee": "66186"}, "geometry": {"type": "Point", "coordinates": [2.98700685998, 42.6622045643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1369e951fd6a3864195808749c02da518984349", "fields": {"nom_de_la_commune": "SERDINYA", "libell_d_acheminement": "SERDINYA", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66193"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c859e6593fdd4969e56b857184bd0e0f54f8e1f9", "fields": {"nom_de_la_commune": "LE SOLER", "libell_d_acheminement": "LE SOLER", "code_postal": "66270", "coordonnees_gps": [42.6772604386, 2.79440876599], "code_commune_insee": "66195"}, "geometry": {"type": "Point", "coordinates": [2.79440876599, 42.6772604386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fda8299d8df1862679cf19aa7f36c2ed2e531c", "fields": {"nom_de_la_commune": "TARERACH", "libell_d_acheminement": "TARERACH", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66201"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4499efe997615746c92e74874b9b60dbc37ee475", "fields": {"nom_de_la_commune": "THUES ENTRE VALLS", "libell_d_acheminement": "THUES ENTRE VALLS", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66209"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a941c00e37f7dd345f5bc8755da336d3e5767370", "fields": {"nom_de_la_commune": "TORDERES", "libell_d_acheminement": "TORDERES", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66211"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80381ef9cb47a0d76cd46822f3705923665b489", "fields": {"nom_de_la_commune": "TORREILLES", "libell_d_acheminement": "TORREILLES", "code_postal": "66440", "coordonnees_gps": [42.7537997311, 3.00843144299], "code_commune_insee": "66212"}, "geometry": {"type": "Point", "coordinates": [3.00843144299, 42.7537997311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62fd6c963416502ee9274160b9138079ec64f436", "fields": {"nom_de_la_commune": "TREVILLACH", "libell_d_acheminement": "TREVILLACH", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66215"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a49755ce832b1ceb8344b38cd421758676ca1192", "fields": {"nom_de_la_commune": "VILLEFRANCHE DE CONFLENT", "libell_d_acheminement": "VILLEFRANCHE DE CONFLENT", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66223"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa9c5ffbc79889c3c43d2f39a8426b5edcbde7d8", "fields": {"nom_de_la_commune": "LE VIVIER", "libell_d_acheminement": "LE VIVIER", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66234"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "381251ecda3fd63877d683f272d3571dc8f66d58", "fields": {"code_postal": "67310", "code_commune_insee": "67004", "libell_d_acheminement": "SOMMERAU", "ligne_5": "ALLENWILLER", "nom_de_la_commune": "SOMMERAU", "coordonnees_gps": [48.6178840196, 7.42141185001]}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edba5010428638033ffe7063b9b9dc85e9f1dcc0", "fields": {"code_postal": "67440", "code_commune_insee": "67004", "libell_d_acheminement": "SOMMERAU", "ligne_5": "SALENTHAL", "nom_de_la_commune": "SOMMERAU", "coordonnees_gps": [48.685560689, 7.36622848676]}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9b145168db70eea260d0338265e85219bc4743", "fields": {"nom_de_la_commune": "ALTWILLER", "libell_d_acheminement": "ALTWILLER", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67009"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d32bbe8c182e82388c2b5d4220df4f1b3f45c06", "fields": {"nom_de_la_commune": "BAREMBACH", "libell_d_acheminement": "BAREMBACH", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67020"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e56cd026c8c53c041a262456e543429afa48d751", "fields": {"nom_de_la_commune": "BEINHEIM", "libell_d_acheminement": "BEINHEIM", "code_postal": "67930", "coordonnees_gps": [48.8645701824, 8.0807216154], "code_commune_insee": "67025"}, "geometry": {"type": "Point", "coordinates": [8.0807216154, 48.8645701824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19c4ebf9525d5c0c23f19866f029c0c7bfbaecc", "fields": {"nom_de_la_commune": "BELLEFOSSE", "libell_d_acheminement": "BELLEFOSSE", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67026"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acf2ea2f442ec8fec073a28c609fd910ccd1f9bf", "fields": {"nom_de_la_commune": "BERNARDVILLE", "libell_d_acheminement": "BERNARDVILLE", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67032"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a40147d6c599e6633b398a68fd802da14b54b198", "fields": {"nom_de_la_commune": "BETTWILLER", "libell_d_acheminement": "BETTWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67036"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b22e44dc4f575c3cf38771b62e49b8fafd9282c", "fields": {"nom_de_la_commune": "BINDERNHEIM", "libell_d_acheminement": "BINDERNHEIM", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67040"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93018d53e1701e5bcab801b0b4ba31ecd8d464fc", "fields": {"nom_de_la_commune": "BISCHHEIM", "libell_d_acheminement": "BISCHHEIM", "code_postal": "67800", "coordonnees_gps": [48.6226822047, 7.75647923551], "code_commune_insee": "67043"}, "geometry": {"type": "Point", "coordinates": [7.75647923551, 48.6226822047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "491e4e24d16e67835192be0633086105bcc76402", "fields": {"nom_de_la_commune": "BLIENSCHWILLER", "libell_d_acheminement": "BLIENSCHWILLER", "code_postal": "67650", "coordonnees_gps": [48.324457641, 7.42491338071], "code_commune_insee": "67051"}, "geometry": {"type": "Point", "coordinates": [7.42491338071, 48.324457641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f18dc61ff0e48baa5ff36a6d805bc8a1d158f3cc", "fields": {"nom_de_la_commune": "BOOTZHEIM", "libell_d_acheminement": "BOOTZHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67056"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10084eecdd17735c4c378b849e386de4792edbdf", "fields": {"nom_de_la_commune": "BOURG BRUCHE", "libell_d_acheminement": "BOURG BRUCHE", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67059"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633a9f72c2b3fd890ba831c189f40e75a5b41ed8", "fields": {"code_postal": "67330", "code_commune_insee": "67061", "libell_d_acheminement": "BOUXWILLER", "ligne_5": "RIEDHEIM", "nom_de_la_commune": "BOUXWILLER", "coordonnees_gps": [48.8220828424, 7.43331239388]}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc2956c9d16e8084ec19d0b132608d6c27dd98c", "fields": {"nom_de_la_commune": "LA BROQUE", "libell_d_acheminement": "LA BROQUE", "code_postal": "67570", "coordonnees_gps": [48.4582864667, 7.17805256783], "code_commune_insee": "67066"}, "geometry": {"type": "Point", "coordinates": [7.17805256783, 48.4582864667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117a5023e5c19881ac3508c75164ea63369be801", "fields": {"nom_de_la_commune": "BUHL", "libell_d_acheminement": "BUHL", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67069"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c830b122919ee01e0d67cb4271c64ac28a7e4bab", "fields": {"nom_de_la_commune": "COSSWILLER", "libell_d_acheminement": "COSSWILLER", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67077"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbf1c98df63da78b04830d0adbe5409177f8bb18", "fields": {"nom_de_la_commune": "DAHLENHEIM", "libell_d_acheminement": "DAHLENHEIM", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67081"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e43f603eefc8c08744b1fa7629db205e35ff646", "fields": {"code_postal": "67350", "code_commune_insee": "67087", "libell_d_acheminement": "DAUENDORF", "ligne_5": "NEUBOURG", "nom_de_la_commune": "DAUENDORF", "coordonnees_gps": [48.8437239093, 7.60701636897]}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e925e2cd4a62ee4bd04d5ad2c0089ae8a9e7194", "fields": {"nom_de_la_commune": "EBERSHEIM", "libell_d_acheminement": "EBERSHEIM", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67115"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a6aeb3a33a2523f118cff8b54f97962aecb5ff", "fields": {"code_postal": "67710", "code_commune_insee": "67122", "libell_d_acheminement": "WANGENBOURG ENGENTHAL", "ligne_5": "ENGENTHAL", "nom_de_la_commune": "WANGENBOURG ENGENTHAL", "coordonnees_gps": [48.6210040499, 7.30576868446]}, "geometry": {"type": "Point", "coordinates": [7.30576868446, 48.6210040499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f62802b82ab8d2f31336660af6429e6ed1f126ec", "fields": {"nom_de_la_commune": "ERNOLSHEIM LES SAVERNE", "libell_d_acheminement": "ERNOLSHEIM LES SAVERNE", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67129"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb067061f70aafc3becf8fd15f6ff63351704f38", "fields": {"nom_de_la_commune": "ESCHBOURG", "libell_d_acheminement": "ESCHBOURG", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67133"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "858f7fefc5f6c5618a7d5dba60cedfaf7a950423", "fields": {"nom_de_la_commune": "FORSTFELD", "libell_d_acheminement": "FORSTFELD", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67140"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15cf27bf463386dc5d8fdc399c0a8787d1128672", "fields": {"nom_de_la_commune": "FROHMUHL", "libell_d_acheminement": "FROHMUHL", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67148"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7547de122fb790f7c18ce7f02547c5aac2c2b26b", "fields": {"nom_de_la_commune": "GEISPOLSHEIM", "libell_d_acheminement": "GEISPOLSHEIM", "code_postal": "67118", "coordonnees_gps": [48.5147050971, 7.65866735736], "code_commune_insee": "67152"}, "geometry": {"type": "Point", "coordinates": [7.65866735736, 48.5147050971]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bed3e74aecc4e5930c1cac97c47174baffdb301", "fields": {"nom_de_la_commune": "GERSTHEIM", "libell_d_acheminement": "GERSTHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67154"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea30db888ebe1d640d652c9b0869375ebe552829", "fields": {"nom_de_la_commune": "GOTTENHOUSE", "libell_d_acheminement": "GOTTENHOUSE", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67161"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8387fcea335f011c2f91b1c663df0d48337bea4", "fields": {"nom_de_la_commune": "GRENDELBRUCH", "libell_d_acheminement": "GRENDELBRUCH", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67167"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce3156a2be4e4907a48f29343a316b0264f2de4", "fields": {"nom_de_la_commune": "GRESSWILLER", "libell_d_acheminement": "GRESSWILLER", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67168"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "472febe7cda587ddad6e3854330a2bf3c044fe42", "fields": {"nom_de_la_commune": "GRIESHEIM SUR SOUFFEL", "libell_d_acheminement": "GRIESHEIM SUR SOUFFEL", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67173"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e82e177332caec099cf170be6b580cc4656dc0", "fields": {"code_postal": "67110", "code_commune_insee": "67176", "libell_d_acheminement": "GUNDERSHOFFEN", "ligne_5": "SCHIRLENHOF", "nom_de_la_commune": "GUNDERSHOFFEN", "coordonnees_gps": [48.9564241197, 7.64420401079]}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42210054fe91ecb4dc2def20d123082794c93cc0", "fields": {"nom_de_la_commune": "HAEGEN", "libell_d_acheminement": "HAEGEN", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67179"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6952ef33ae250d74b1d47f1175a56a3f5169cfba", "fields": {"code_postal": "67500", "code_commune_insee": "67180", "libell_d_acheminement": "HAGUENAU", "ligne_5": "HARTHOUSE", "nom_de_la_commune": "HAGUENAU", "coordonnees_gps": [48.83252193, 7.82037649522]}, "geometry": {"type": "Point", "coordinates": [7.82037649522, 48.83252193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbef24acbcbd8cb07b4243f05c8b6fb3aa112fc6", "fields": {"nom_de_la_commune": "HANDSCHUHEIM", "libell_d_acheminement": "HANDSCHUHEIM", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67181"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9306751e13c694f894d1fa2daab366a15115db24", "fields": {"nom_de_la_commune": "HEILIGENBERG", "libell_d_acheminement": "HEILIGENBERG", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67188"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca04c2058850a28810c0448b5a004be6f5b26207", "fields": {"nom_de_la_commune": "HILSENHEIM", "libell_d_acheminement": "HILSENHEIM", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67196"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285ce44eda4593761ef04e9f34300cef743856a6", "fields": {"nom_de_la_commune": "HIPSHEIM", "libell_d_acheminement": "HIPSHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67200"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f17411b86b052ead9f77ef4730674b2c3bac7541", "fields": {"code_postal": "67250", "code_commune_insee": "67206", "libell_d_acheminement": "HOFFEN", "ligne_5": "HERMERSWILLER", "nom_de_la_commune": "HOFFEN", "coordonnees_gps": [48.9438844656, 7.88208962387]}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c64b4b488bb61d4d430180ae8a209f926579a54c", "fields": {"nom_de_la_commune": "HOHENGOEFT", "libell_d_acheminement": "HOHENGOEFT", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67208"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8c7332621838766f8c47464e05fbd4586fb944", "fields": {"nom_de_la_commune": "HOHFRANKENHEIM", "libell_d_acheminement": "HOHFRANKENHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67209"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f66feaa0d764c3cc8cc5fedce7f6cf9f07215c2", "fields": {"nom_de_la_commune": "HURTIGHEIM", "libell_d_acheminement": "HURTIGHEIM", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67214"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1651916c30d46d51002de8b6d1c50b8aefe3343e", "fields": {"nom_de_la_commune": "ILLKIRCH GRAFFENSTADEN", "libell_d_acheminement": "ILLKIRCH GRAFFENSTADEN", "code_postal": "67400", "coordonnees_gps": [48.5200121498, 7.73167425411], "code_commune_insee": "67218"}, "geometry": {"type": "Point", "coordinates": [7.73167425411, 48.5200121498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd16da71169de90c58400852d96cc4d02f2b1f12", "fields": {"nom_de_la_commune": "INGENHEIM", "libell_d_acheminement": "INGENHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67220"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8149bdb14cf28941a2715e0510134f84c9427380", "fields": {"nom_de_la_commune": "ISSENHAUSEN", "libell_d_acheminement": "ISSENHAUSEN", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67225"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f48debe49ae0d12f159776c4b687679c5f39d6ef", "fields": {"code_postal": "67370", "code_commune_insee": "67228", "libell_d_acheminement": "NEUGARTHEIM ITTLENHEIM", "ligne_5": "ITTLENHEIM", "nom_de_la_commune": "NEUGARTHEIM ITTLENHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62ab0ab778ff423abaec21722c194e07b8483228", "fields": {"nom_de_la_commune": "KESKASTEL", "libell_d_acheminement": "KESKASTEL", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67234"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20fe852217580f0c27ca04473de5cfddc73f2b19", "fields": {"nom_de_la_commune": "KLEINGOEFT", "libell_d_acheminement": "KLEINGOEFT", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67244"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa5c97cb3b9bac65b2dfa7debdf1f90f031c5d96", "fields": {"nom_de_la_commune": "KOLBSHEIM", "libell_d_acheminement": "KOLBSHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67247"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7cea0f52af772514baa8e9703caedaddb49d2b6", "fields": {"nom_de_la_commune": "LAUTERBOURG", "libell_d_acheminement": "LAUTERBOURG", "code_postal": "67630", "coordonnees_gps": [48.9645506647, 8.14057364298], "code_commune_insee": "67261"}, "geometry": {"type": "Point", "coordinates": [8.14057364298, 48.9645506647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef8e51f1d1d6d89c734b412f716d16a303567c4", "fields": {"nom_de_la_commune": "LEMBACH", "libell_d_acheminement": "LEMBACH", "code_postal": "67510", "coordonnees_gps": [49.0227242639, 7.76839928059], "code_commune_insee": "67263"}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47df387a3fe4c0f37e68e9417ae7173fb6520c7", "fields": {"nom_de_la_commune": "LEUTENHEIM", "libell_d_acheminement": "LEUTENHEIM", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67264"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76b6c1d361ee157454c0944fedb3de7751b428d5", "fields": {"nom_de_la_commune": "LITTENHEIM", "libell_d_acheminement": "LITTENHEIM", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67269"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57c3109955e1dbc737f4726c5b03661a85557274", "fields": {"nom_de_la_commune": "LOBSANN", "libell_d_acheminement": "LOBSANN", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67271"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca1c274af5b67788d6e147305f37623b3b3977e", "fields": {"code_postal": "67220", "code_commune_insee": "67280", "libell_d_acheminement": "MAISONSGOUTTE", "ligne_5": "WAGENBACH", "nom_de_la_commune": "MAISONSGOUTTE", "coordonnees_gps": [48.3397350207, 7.28306516568]}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49acadafd8e1909995fb80157e1bc79f8dde1f2b", "fields": {"nom_de_la_commune": "MEISTRATZHEIM", "libell_d_acheminement": "MEISTRATZHEIM", "code_postal": "67210", "coordonnees_gps": [48.4477372351, 7.50825704753], "code_commune_insee": "67286"}, "geometry": {"type": "Point", "coordinates": [7.50825704753, 48.4477372351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a55e04065df6700b56b461eab8c7adca36715e39", "fields": {"nom_de_la_commune": "MELSHEIM", "libell_d_acheminement": "MELSHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67287"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0759da197eb9ad770e37452a08efad84de168a85", "fields": {"nom_de_la_commune": "MERTZWILLER", "libell_d_acheminement": "MERTZWILLER", "code_postal": "67580", "coordonnees_gps": [48.8787753721, 7.67873675705], "code_commune_insee": "67291"}, "geometry": {"type": "Point", "coordinates": [7.67873675705, 48.8787753721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2340167430543722a76fb8431119f1ffa0a1121b", "fields": {"nom_de_la_commune": "MINVERSHEIM", "libell_d_acheminement": "MINVERSHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67293"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cbfd13632ebc5d07c9d64d668987d83fde81b7e", "fields": {"nom_de_la_commune": "MITTELHAUSBERGEN", "libell_d_acheminement": "MITTELHAUSBERGEN", "code_postal": "67206", "coordonnees_gps": [48.6140224807, 7.69436507656], "code_commune_insee": "67296"}, "geometry": {"type": "Point", "coordinates": [7.69436507656, 48.6140224807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6432447a3ba23428143977dd6999a0ed9a09ae54", "fields": {"nom_de_la_commune": "MITTELSCHAEFFOLSHEIM", "libell_d_acheminement": "MITTELSCHAEFFOLSHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67298"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7391128f27156ac5a4548aa0ca4d28fa52c13cfc", "fields": {"nom_de_la_commune": "MUSSIG", "libell_d_acheminement": "MUSSIG", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67310"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0512f54bcb1b4f44dd10e8b48146b85be9c5463", "fields": {"code_postal": "67600", "code_commune_insee": "67311", "libell_d_acheminement": "MUTTERSHOLTZ", "ligne_5": "EHNWIHR", "nom_de_la_commune": "MUTTERSHOLTZ", "coordonnees_gps": [48.2649373964, 7.48992697623]}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af4cf4b3d5cdc3ffb4a4b15a9e2f7a6bd7651af0", "fields": {"nom_de_la_commune": "NEUHAEUSEL", "libell_d_acheminement": "NEUHAEUSEL", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67319"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e6779ed1dcbe2a1180764c3e1f70da91922ae01", "fields": {"code_postal": "27500", "code_commune_insee": "27467", "libell_d_acheminement": "PONT AUDEMER", "ligne_5": "ST PAUL SUR RISLE", "nom_de_la_commune": "PONT AUDEMER", "coordonnees_gps": [49.3519408405, 0.530523220775]}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf1571aacf0efd2ad509f1ef3feba3f8abf3140", "fields": {"nom_de_la_commune": "PONT AUTHOU", "libell_d_acheminement": "PONT AUTHOU", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27468"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a14efc417b34ed581cbd2f891295c1203f61f53", "fields": {"nom_de_la_commune": "PONT ST PIERRE", "libell_d_acheminement": "PONT ST PIERRE", "code_postal": "27360", "coordonnees_gps": [49.3420863627, 1.28766015944], "code_commune_insee": "27470"}, "geometry": {"type": "Point", "coordinates": [1.28766015944, 49.3420863627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bcc50a9133740d993ceab90da5dda7c7d983918", "fields": {"nom_de_la_commune": "LES PREAUX", "libell_d_acheminement": "LES PREAUX", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27476"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5361b25c74dbc4b9e1fb2594e0508d883b6f54", "fields": {"nom_de_la_commune": "PREY", "libell_d_acheminement": "PREY", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27478"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b6a2a1e52b67a17ebd2c48d65cecf7a717979d", "fields": {"nom_de_la_commune": "QUITTEBEUF", "libell_d_acheminement": "QUITTEBEUF", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27486"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd28ba5a8f8f4ac0f2e74c72c00826b9886e5616", "fields": {"nom_de_la_commune": "REUILLY", "libell_d_acheminement": "REUILLY", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27489"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823901139727bb00cca2fcdf54b80604f12a7d9f", "fields": {"nom_de_la_commune": "RICHEVILLE", "libell_d_acheminement": "RICHEVILLE", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27490"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fad3c1e39d2e18fabb7d5ff0ca2aa01e7d9083", "fields": {"nom_de_la_commune": "ROSAY SUR LIEURE", "libell_d_acheminement": "ROSAY SUR LIEURE", "code_postal": "27790", "coordonnees_gps": [49.3745608553, 1.42880157488], "code_commune_insee": "27496"}, "geometry": {"type": "Point", "coordinates": [1.42880157488, 49.3745608553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd4cc5b856bb3579483c0760cd9a7f69b9c321a2", "fields": {"nom_de_la_commune": "ROUGE PERRIERS", "libell_d_acheminement": "ROUGE PERRIERS", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27498"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1061653067606a8cfbd90f3d2acf711dcf9f64d3", "fields": {"nom_de_la_commune": "ST ANTONIN DE SOMMAIRE", "libell_d_acheminement": "ST ANTONIN DE SOMMAIRE", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27508"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0acc829ddbb5ba673b20cd4c2b070960b06c2de6", "fields": {"nom_de_la_commune": "ST AUBIN D ECROSVILLE", "libell_d_acheminement": "ST AUBIN D ECROSVILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27511"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2884fc707db161c17eed9cc8b1e088b5f5fad460", "fields": {"nom_de_la_commune": "ST BENOIT DES OMBRES", "libell_d_acheminement": "ST BENOIT DES OMBRES", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27520"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2767c2f65c938d8488b00a77f131c93bf8d57f", "fields": {"nom_de_la_commune": "ST CYR DE SALERNE", "libell_d_acheminement": "ST CYR DE SALERNE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27527"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42d39199f6397ce3a9d60cc206c283eee4772f2", "fields": {"nom_de_la_commune": "LE VAUDREUIL", "libell_d_acheminement": "LE VAUDREUIL", "code_postal": "27100", "coordonnees_gps": [49.2628287582, 1.2134503663], "code_commune_insee": "27528"}, "geometry": {"type": "Point", "coordinates": [1.2134503663, 49.2628287582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f26198b6c8e1f513f628c913a3c8a437dc7fa05", "fields": {"nom_de_la_commune": "ST CYR LA CAMPAGNE", "libell_d_acheminement": "ST CYR LA CAMPAGNE", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27529"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f725daf8a5a02912c7b2ba2ce2a1d3554ac4fd", "fields": {"nom_de_la_commune": "ST DENIS DES MONTS", "libell_d_acheminement": "ST DENIS DES MONTS", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27531"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b51f357f8a2c1fe8ad6f30243841dea6bb3822a", "fields": {"nom_de_la_commune": "ST ETIENNE SOUS BAILLEUL", "libell_d_acheminement": "ST ETIENNE SOUS BAILLEUL", "code_postal": "27920", "coordonnees_gps": [49.1220332709, 1.39197763752], "code_commune_insee": "27539"}, "geometry": {"type": "Point", "coordinates": [1.39197763752, 49.1220332709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3af35c1aa6caa380fafd5b14f0ee3c5ff4a4e4f", "fields": {"nom_de_la_commune": "ST LAURENT DU TENCEMENT", "libell_d_acheminement": "ST LAURENT DU TENCEMENT", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27556"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05469252a34bac47c4b871f93f2310468d5eab7c", "fields": {"nom_de_la_commune": "ST LEGER DE ROTES", "libell_d_acheminement": "ST LEGER DE ROTES", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27557"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f85262e3ae10a4ffd8fd06685be539a40f600074", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27562"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3851e198dea9ac05e48d881b3d1becd306dcdc17", "fields": {"code_postal": "27160", "code_commune_insee": "27578", "libell_d_acheminement": "STE MARIE D ATTEZ", "ligne_5": "ST NICOLAS D ATTEZ", "nom_de_la_commune": "STE MARIE D ATTEZ", "coordonnees_gps": [48.8560757973, 0.877611850909]}, "geometry": {"type": "Point", "coordinates": [0.877611850909, 48.8560757973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87becb1a06481786a38267840eba9fa6e4c1ce31", "fields": {"nom_de_la_commune": "ST PIERRE DE SALERNE", "libell_d_acheminement": "ST PIERRE DE SALERNE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27592"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dd66f878c8181795c9bfa91335205a64cd2f165", "fields": {"nom_de_la_commune": "ST PIERRE LA GARENNE", "libell_d_acheminement": "ST PIERRE LA GARENNE", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27599"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cda3f211de19634cc9be230c758eab44afdf204", "fields": {"nom_de_la_commune": "ST SULPICE DE GRIMBOUVILLE", "libell_d_acheminement": "ST SULPICE DE GRIMBOUVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27604"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "754a986c536d072b00e5ad6479045bef12ce7269", "fields": {"nom_de_la_commune": "ST VICTOR SUR AVRE", "libell_d_acheminement": "ST VICTOR SUR AVRE", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27610"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693019430c7d5482750ac131162f9102a6d3a453", "fields": {"nom_de_la_commune": "SUZAY", "libell_d_acheminement": "SUZAY", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27625"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c0dfc8ca9ee7a44e3ffb48913f1bbb2f690a1f6", "fields": {"nom_de_la_commune": "LE THEIL NOLENT", "libell_d_acheminement": "LE THEIL NOLENT", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27627"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1767ff86704429a8405dc31a671d0fc367389ad", "fields": {"nom_de_la_commune": "THIBERVILLE", "libell_d_acheminement": "THIBERVILLE", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27629"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2a9fb56887f41672b15d2bf345488260851377", "fields": {"nom_de_la_commune": "LE TILLEUL LAMBERT", "libell_d_acheminement": "LE TILLEUL LAMBERT", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27641"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af20737681d149dac509e82a7afd9ce2df580762", "fields": {"nom_de_la_commune": "TILLY", "libell_d_acheminement": "TILLY", "code_postal": "27510", "coordonnees_gps": [49.1509982632, 1.53002426085], "code_commune_insee": "27644"}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ca6779aeea275854d5dc9814436a495308f14dd", "fields": {"nom_de_la_commune": "LE TORPT", "libell_d_acheminement": "LE TORPT", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27646"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeeb2c227f25b3a27e7d2ebd648e202b34f9e846", "fields": {"nom_de_la_commune": "TOSNY", "libell_d_acheminement": "TOSNY", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27647"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "451788b6f96d51adb11a7cef3afa37723f649537", "fields": {"nom_de_la_commune": "TOSTES", "libell_d_acheminement": "TOSTES", "code_postal": "27340", "coordonnees_gps": [49.282400174, 1.11419041631], "code_commune_insee": "27648"}, "geometry": {"type": "Point", "coordinates": [1.11419041631, 49.282400174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eece3f472f926dd135ae50d8a74b6e5347a51341", "fields": {"nom_de_la_commune": "TOURNEDOS BOIS HUBERT", "libell_d_acheminement": "TOURNEDOS BOIS HUBERT", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27650"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d67255acb6e879818ff3873cfe9f2ae9cf26a49", "fields": {"nom_de_la_commune": "TOUVILLE", "libell_d_acheminement": "TOUVILLE SUR MONTFORT", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27657"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f4d62800437f23332782494876a2af90f88533", "fields": {"nom_de_la_commune": "LA TRINITE DE THOUBERVILLE", "libell_d_acheminement": "LA TRINITE DE THOUBERVILLE", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27661"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8522a70cd670f91aa6502bc13bf340ae85ad5b", "fields": {"nom_de_la_commune": "LE VAL DAVID", "libell_d_acheminement": "LE VAL DAVID", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27668"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d4596eee5bcebe87182f6b595705df4e727738", "fields": {"nom_de_la_commune": "VATTEVILLE", "libell_d_acheminement": "VATTEVILLE", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27673"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40db76bbc40f0a531f1ea88ddc64cae9bcb4cb1d", "fields": {"nom_de_la_commune": "VIEUX PORT", "libell_d_acheminement": "VIEUX PORT", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27686"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98211ccb32d6c7e3eedfd92aa04ca766e0d14f48", "fields": {"nom_de_la_commune": "SYLVAINS LES MOULINS", "libell_d_acheminement": "SYLVAINS LES MOULINS", "code_postal": "27240", "coordonnees_gps": [48.8630175528, 1.06923363449], "code_commune_insee": "27693"}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97ec5bd3d1d67deb061c00ec82e804a6f5e683e7", "fields": {"nom_de_la_commune": "VILLEZ SOUS BAILLEUL", "libell_d_acheminement": "VILLEZ SOUS BAILLEUL", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27694"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e64c37b2c4fc754d3209a9093322265e71795f1", "fields": {"nom_de_la_commune": "VIRONVAY", "libell_d_acheminement": "VIRONVAY", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27697"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89551698514d77660ba98e5e806c392dd001ebde", "fields": {"nom_de_la_commune": "ABONDANT", "libell_d_acheminement": "ABONDANT", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28001"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8715c3d56442ec849cac3aa7161a65ee02fc5974", "fields": {"nom_de_la_commune": "ALLAINVILLE", "libell_d_acheminement": "ALLAINVILLE", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28003"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208b1c8723f18ba45c805b6c7cae97fb935f15d4", "fields": {"nom_de_la_commune": "ALLUYES", "libell_d_acheminement": "ALLUYES", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28005"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "287171de421f992de7d5e565b5f8e9c21f36b387", "fields": {"nom_de_la_commune": "AUNEAU BLEURY ST SYMPHORIEN", "libell_d_acheminement": "AUNEAU BLEURY ST SYMPHORIEN", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28015"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c746a67c11927a999dd0109db2024a385b53db82", "fields": {"nom_de_la_commune": "BARJOUVILLE", "libell_d_acheminement": "BARJOUVILLE", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28024"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "116de7f5959664a03a64fb0e4833f965e388498d", "fields": {"nom_de_la_commune": "BELHOMERT GUEHOUVILLE", "libell_d_acheminement": "BELHOMERT GUEHOUVILLE", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28033"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f60d65f3a84f6a116491877dfa060e49ff7763", "fields": {"nom_de_la_commune": "BERCHERES LES PIERRES", "libell_d_acheminement": "BERCHERES LES PIERRES", "code_postal": "28630", "coordonnees_gps": [48.3997118484, 1.52168631817], "code_commune_insee": "28035"}, "geometry": {"type": "Point", "coordinates": [1.52168631817, 48.3997118484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c681980ac33ae2f181fd08c7d58e8dc7190880", "fields": {"nom_de_la_commune": "LE BOULLAY THIERRY", "libell_d_acheminement": "LE BOULLAY THIERRY", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28055"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7795694ed7405f1538d8d09dd918479ba6097771", "fields": {"nom_de_la_commune": "BRICONVILLE", "libell_d_acheminement": "BRICONVILLE", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28060"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c6870b1c6dd4651f452fc4ca5a9c2e2f0e83d8", "fields": {"nom_de_la_commune": "CHALLET", "libell_d_acheminement": "CHALLET", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28068"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23f65272591d39dca525083b0d14f7c5cf6f036c", "fields": {"nom_de_la_commune": "CHAMPROND EN PERCHET", "libell_d_acheminement": "CHAMPROND EN PERCHET", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28072"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4dd7fae5cf6383da42dae1a5a5c9b32e6e7842", "fields": {"nom_de_la_commune": "LES CHATELLIERS NOTRE DAME", "libell_d_acheminement": "LES CHATELLIERS NOTRE DAME", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28091"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cab75df64f12b815c2e3182398def9eee25dd61", "fields": {"nom_de_la_commune": "CHUISNES", "libell_d_acheminement": "CHUISNES", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28099"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a44728ead5772722c03e7b8185affd9147ca40e", "fields": {"nom_de_la_commune": "CLEVILLIERS", "libell_d_acheminement": "CLEVILLIERS", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28102"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "313a54de79ff322c9fbc3520eee68c280ffacc3e", "fields": {"nom_de_la_commune": "CONIE MOLITARD", "libell_d_acheminement": "CONIE MOLITARD", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28106"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9b2e2e20669402803680902bb2bccbb4c074e49", "fields": {"code_postal": "28270", "code_commune_insee": "28120", "libell_d_acheminement": "CRUCEY VILLAGES", "ligne_5": "VITRAY SOUS BREZOLLES", "nom_de_la_commune": "CRUCEY VILLAGES", "coordonnees_gps": [48.6934411697, 1.0846058718]}, "geometry": {"type": "Point", "coordinates": [1.0846058718, 48.6934411697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "324d81a38e565433470f856cedcedd41e76168f6", "fields": {"nom_de_la_commune": "DAMBRON", "libell_d_acheminement": "DAMBRON", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28121"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "801c6208d97050ddbb0bab3b18229e6db8e531ac", "fields": {"nom_de_la_commune": "EPEAUTROLLES", "libell_d_acheminement": "EPEAUTROLLES", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28139"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f3b652d0381342eb7fa487af001d10a877d117", "fields": {"nom_de_la_commune": "FAVIERES", "libell_d_acheminement": "FAVIERES", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28147"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f489cee9f5294d4ff479c49a47d855f224c6ed", "fields": {"nom_de_la_commune": "FRESNAY LE COMTE", "libell_d_acheminement": "FRESNAY LE COMTE", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28162"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f69cdedbd7f399253af45a9d8fa93aae4ef761e3", "fields": {"nom_de_la_commune": "FRETIGNY", "libell_d_acheminement": "FRETIGNY", "code_postal": "28480", "coordonnees_gps": [48.2965724313, 1.00898551299], "code_commune_insee": "28165"}, "geometry": {"type": "Point", "coordinates": [1.00898551299, 48.2965724313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2334d144544fb29fc6475b298749cde3a4757b13", "fields": {"nom_de_la_commune": "GARANCIERES EN DROUAIS", "libell_d_acheminement": "GARANCIERES EN DROUAIS", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28170"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bcb0592974700cf83f0121296b9a674e8da16a", "fields": {"nom_de_la_commune": "GERMAINVILLE", "libell_d_acheminement": "GERMAINVILLE", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28178"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6171a32daf4798e4e566107bafa166bf60e16ea2", "fields": {"code_postal": "28310", "code_commune_insee": "28183", "libell_d_acheminement": "GOMMERVILLE", "ligne_5": "GRANDVILLE GAUDREVILLE", "nom_de_la_commune": "GOMMERVILLE", "coordonnees_gps": [48.2536557069, 1.88422826059]}, "geometry": {"type": "Point", "coordinates": [1.88422826059, 48.2536557069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6c0c04e93f76bcecbace82062a8027776e3a79", "fields": {"nom_de_la_commune": "GUAINVILLE", "libell_d_acheminement": "GUAINVILLE", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28187"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63184b9800ad6af2648f4964ca433c00e9ac5d23", "fields": {"nom_de_la_commune": "ILLIERS COMBRAY", "libell_d_acheminement": "ILLIERS COMBRAY", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28196"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb965aacc48e78cebef575e6876f89194beaefc8", "fields": {"nom_de_la_commune": "JOUY", "libell_d_acheminement": "JOUY", "code_postal": "28300", "coordonnees_gps": [48.4964776729, 1.45446147738], "code_commune_insee": "28201"}, "geometry": {"type": "Point", "coordinates": [1.45446147738, 48.4964776729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a3a3e3159a0575d6ef9993ce10497e92dbcda2", "fields": {"nom_de_la_commune": "LAMBLORE", "libell_d_acheminement": "LAMBLORE", "code_postal": "28340", "coordonnees_gps": [48.6383349327, 0.892450865889], "code_commune_insee": "28202"}, "geometry": {"type": "Point", "coordinates": [0.892450865889, 48.6383349327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d328ad019ab5863017af8d3bdf61837ef0c464", "fields": {"nom_de_la_commune": "LANDELLES", "libell_d_acheminement": "LANDELLES", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28203"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc74dd817560c2982ad0a0669bd764f748ef543", "fields": {"nom_de_la_commune": "LANGEY", "libell_d_acheminement": "LANGEY", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28204"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed0124689eef03d19abe5ef946540b83d97311b", "fields": {"nom_de_la_commune": "LOGRON", "libell_d_acheminement": "LOGRON", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28211"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e23f2e54134f76370f9d8298c23f98bbd1d2b69d", "fields": {"nom_de_la_commune": "LOUVILLE LA CHENARD", "libell_d_acheminement": "LOUVILLE LA CHENARD", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28215"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70fc538adedd944044d85dcff0bad2e8e0a02455", "fields": {"nom_de_la_commune": "LUISANT", "libell_d_acheminement": "LUISANT", "code_postal": "28600", "coordonnees_gps": [48.4231291259, 1.46854492401], "code_commune_insee": "28220"}, "geometry": {"type": "Point", "coordinates": [1.46854492401, 48.4231291259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b5d1e3ae924415ea27a9003664893a89adab197", "fields": {"code_postal": "28170", "code_commune_insee": "28226", "libell_d_acheminement": "MAILLEBOIS", "ligne_5": "DAMPIERRE SUR BLEVY", "nom_de_la_commune": "MAILLEBOIS", "coordonnees_gps": [48.596791849, 1.26938526327]}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1783d17520e5c402ce3cb00b78bd071d21f057d8", "fields": {"nom_de_la_commune": "MARGON", "libell_d_acheminement": "MARGON", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28236"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "382017a49d7b179effd8d508d90fb0dbb8563a4c", "fields": {"nom_de_la_commune": "MAROLLES LES BUIS", "libell_d_acheminement": "MAROLLES LES BUIS", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28237"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e10edd58d6ee952e42cbf9128a7714bcf02ce61e", "fields": {"nom_de_la_commune": "LE MEE", "libell_d_acheminement": "LE MEE", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28241"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7731e3e389d59067231095d2caa3a3d9c0f335b", "fields": {"nom_de_la_commune": "MESLAY LE GRENET", "libell_d_acheminement": "MESLAY LE GRENET", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28245"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d480a1a7c916c733adfc7eb87cfbd21d53dba81", "fields": {"nom_de_la_commune": "MESLAY LE VIDAME", "libell_d_acheminement": "MESLAY LE VIDAME", "code_postal": "28360", "coordonnees_gps": [48.3227374254, 1.50670193351], "code_commune_insee": "28246"}, "geometry": {"type": "Point", "coordinates": [1.50670193351, 48.3227374254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9940a063a4b3a553520f4e0805233e7d7cb53229", "fields": {"nom_de_la_commune": "LE MESNIL SIMON", "libell_d_acheminement": "LE MESNIL SIMON", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28247"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caf5000f8e4f62325b2bea86ca3b74bab90b6f7c", "fields": {"nom_de_la_commune": "MITTAINVILLIERS VERIGNY", "libell_d_acheminement": "MITTAINVILLIERS VERIGNY", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28254"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3c514a1c4393db84de92aff91382661d8994b1f", "fields": {"code_postal": "28190", "code_commune_insee": "28254", "libell_d_acheminement": "MITTAINVILLIERS VERIGNY", "ligne_5": "VERIGNY", "nom_de_la_commune": "MITTAINVILLIERS VERIGNY", "coordonnees_gps": [48.4570416765, 1.23084818739]}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecaeb29a63f26a9709a91ff807f0c63d73a11c55", "fields": {"nom_de_la_commune": "MOINVILLE LA JEULIN", "libell_d_acheminement": "MOINVILLE LA JEULIN", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28255"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68aead29c08b104dc264407bdb1c26f07119e91", "fields": {"nom_de_la_commune": "MONTIGNY LE GANNELON", "libell_d_acheminement": "MONTIGNY LE GANNELON", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28262"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d6750be561a5fa4aa27f762614affa5705d6b67", "fields": {"nom_de_la_commune": "MONTIREAU", "libell_d_acheminement": "MONTIREAU", "code_postal": "28240", "coordonnees_gps": [48.4393952501, 1.04658788107], "code_commune_insee": "28264"}, "geometry": {"type": "Point", "coordinates": [1.04658788107, 48.4393952501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "649eac3dabaafba8f1ffb1d711e146b066cfcc85", "fields": {"nom_de_la_commune": "MONTREUIL", "libell_d_acheminement": "MONTREUIL", "code_postal": "28500", "coordonnees_gps": [48.7095762347, 1.36749749983], "code_commune_insee": "28267"}, "geometry": {"type": "Point", "coordinates": [1.36749749983, 48.7095762347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d45380043a36916f04a793f80d444ec2b30f2e", "fields": {"nom_de_la_commune": "MOUTIERS", "libell_d_acheminement": "MOUTIERS", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28274"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b681acb73037980719f9c842ae1f85237d232cff", "fields": {"nom_de_la_commune": "NEUVY EN DUNOIS", "libell_d_acheminement": "NEUVY EN DUNOIS", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28277"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f557490cab1887711ce5ae271cbd529f51e491", "fields": {"nom_de_la_commune": "OLLE", "libell_d_acheminement": "OLLE", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28286"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6eadb05dbd6426c98426e0a631e97ea3ad4acb3", "fields": {"nom_de_la_commune": "OULINS", "libell_d_acheminement": "OULINS", "code_postal": "28260", "coordonnees_gps": [48.8653444981, 1.48463114122], "code_commune_insee": "28293"}, "geometry": {"type": "Point", "coordinates": [1.48463114122, 48.8653444981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0c4240abaf12096f46ab4ab081cba166b8802a2", "fields": {"nom_de_la_commune": "PERONVILLE", "libell_d_acheminement": "PERONVILLE", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28296"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6074213e2049bf74cd68dbcc6c08ce78d5322af", "fields": {"nom_de_la_commune": "PONTGOUIN", "libell_d_acheminement": "PONTGOUIN", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28302"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f578d32139d4b9b48f75f5aa08e90f557e62471", "fields": {"nom_de_la_commune": "POUPRY", "libell_d_acheminement": "POUPRY", "code_postal": "28140", "coordonnees_gps": [48.126624104, 1.68210405162], "code_commune_insee": "28303"}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed8afdee9143b5a4d5b78e0ed22136f8c865113f", "fields": {"nom_de_la_commune": "ST AVIT LES GUESPIERES", "libell_d_acheminement": "ST AVIT LES GUESPIERES", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28326"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "588e88a9eab9b9d8115c3d928e56f10a78a3a957", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28329"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7007f1b179af6a8812d9ed3097c7060e7167f26", "fields": {"nom_de_la_commune": "ST EMAN", "libell_d_acheminement": "ST EMAN", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28336"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9cb1c61663a211b4ea2d3667ee25cb45743d8d1", "fields": {"nom_de_la_commune": "ST HILAIRE SUR YERRE", "libell_d_acheminement": "ST HILAIRE SUR YERRE", "code_postal": "28220", "coordonnees_gps": [48.0092880997, 1.26887774085], "code_commune_insee": "28340"}, "geometry": {"type": "Point", "coordinates": [1.26887774085, 48.0092880997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7379054f3fc51606a84fb46f224cd0a656e82e7", "fields": {"nom_de_la_commune": "SAUZELLES", "libell_d_acheminement": "SAUZELLES", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36213"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b9d2af051b00e7c5d96032b9625005d76b9c47e", "fields": {"nom_de_la_commune": "SOUGE", "libell_d_acheminement": "SOUGE", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36218"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bd7d6418b76338db332f124ebe35bf9b44ca96c", "fields": {"nom_de_la_commune": "LE TRANGER", "libell_d_acheminement": "LE TRANGER", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36225"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "273461edf0d849433d7d1445fc17009a51d8eb3f", "fields": {"nom_de_la_commune": "URCIERS", "libell_d_acheminement": "URCIERS", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36227"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef641ae9874f9890d00e1c8db48998d70f2f0067", "fields": {"code_postal": "36210", "code_commune_insee": "36229", "libell_d_acheminement": "VAL FOUZON", "ligne_5": "VARENNES SUR FOUZON", "nom_de_la_commune": "VAL FOUZON", "coordonnees_gps": [47.1964381478, 1.69756497046]}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f8857fec2b98a5a64c49df12748352707763f5", "fields": {"nom_de_la_commune": "VELLES", "libell_d_acheminement": "VELLES", "code_postal": "36330", "coordonnees_gps": [46.7140693988, 1.6861822855], "code_commune_insee": "36231"}, "geometry": {"type": "Point", "coordinates": [1.6861822855, 46.7140693988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5cf0f9f2b86c75703423b074bfea230a076b05d", "fields": {"nom_de_la_commune": "VEUIL", "libell_d_acheminement": "VEUIL", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36235"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e66bd344f35d28ddb8acdeb94c80c5bbffc087c", "fields": {"nom_de_la_commune": "VIGOULANT", "libell_d_acheminement": "VIGOULANT", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36238"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8432a4b876167a849231ba481f5febdf71d09c", "fields": {"nom_de_la_commune": "VILLIERS", "libell_d_acheminement": "VILLIERS", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36246"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6f0f279cb6d4c400e2f25c735b835df2a12aca8", "fields": {"nom_de_la_commune": "VOUILLON", "libell_d_acheminement": "VOUILLON", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36248"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55cdb16c303c0ca5fe6015f807ba82b97ca931ce", "fields": {"nom_de_la_commune": "AUTRECHE", "libell_d_acheminement": "AUTRECHE", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37009"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0faf80da6425aff9e2547415e3b8b2f13473e9aa", "fields": {"nom_de_la_commune": "AVON LES ROCHES", "libell_d_acheminement": "AVON LES ROCHES", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37012"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534f6594f991428acdc80b335c2edd2dce997766", "fields": {"nom_de_la_commune": "AVRILLE LES PONCEAUX", "libell_d_acheminement": "AVRILLE LES PONCEAUX", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37013"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "478b1429b19c18a2644cf2ff1f2ea21d5d339c19", "fields": {"nom_de_la_commune": "AZAY LE RIDEAU", "libell_d_acheminement": "AZAY LE RIDEAU", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37014"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daccc4d180000db3a9f09e6b6301aa33e2a92fa3", "fields": {"nom_de_la_commune": "BARROU", "libell_d_acheminement": "BARROU", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37019"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f96e31576189341051fbe65b261401baeb888aa8", "fields": {"nom_de_la_commune": "BETZ LE CHATEAU", "libell_d_acheminement": "BETZ LE CHATEAU", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37026"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a87a1f133ce571a26a699032a7b520f45b9a18b", "fields": {"nom_de_la_commune": "BOSSAY SUR CLAISE", "libell_d_acheminement": "BOSSAY SUR CLAISE", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37028"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ceeec8e9ce17179a5a8d9da8d0483da411e315b", "fields": {"nom_de_la_commune": "BOUSSAY", "libell_d_acheminement": "BOUSSAY", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37033"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6591f3bce09083a010d70710b83213efe99f97f1", "fields": {"nom_de_la_commune": "CANDES ST MARTIN", "libell_d_acheminement": "CANDES ST MARTIN", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37042"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d41a268030a1ec62baaf428c8cbf5d0249a63acb", "fields": {"nom_de_la_commune": "CANGEY", "libell_d_acheminement": "CANGEY", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37043"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e26cbdf02faf10b59f4d224f87492e1c8a366ea", "fields": {"nom_de_la_commune": "CERE LA RONDE", "libell_d_acheminement": "CERE LA RONDE", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37046"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd9748c2c0f3ab018724308b0bd1ed98917d1701", "fields": {"nom_de_la_commune": "CHAMBON", "libell_d_acheminement": "CHAMBON", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37048"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5038e63683ecafe2dcd7ab95f5cac056b7be666", "fields": {"nom_de_la_commune": "CHAMBOURG SUR INDRE", "libell_d_acheminement": "CHAMBOURG SUR INDRE", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37049"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "947ec2ff33f8f1e99f27dfe0c7e0bac9b804223e", "fields": {"nom_de_la_commune": "CHANCEAUX SUR CHOISILLE", "libell_d_acheminement": "CHANCEAUX SUR CHOISILLE", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37054"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f63dfdd7774fd7f17d47fef784fb6411dc3c1dd", "fields": {"nom_de_la_commune": "CHANNAY SUR LATHAN", "libell_d_acheminement": "CHANNAY SUR LATHAN", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37055"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e104d0bade6e33983fe7102dfc64b33df61085aa", "fields": {"nom_de_la_commune": "LA CHAPELLE BLANCHE ST MARTIN", "libell_d_acheminement": "LA CHAPELLE BLANCHE ST MARTIN", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37057"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b62614d646d078f06da9ecdb8cabc46583076fd9", "fields": {"nom_de_la_commune": "CHATEAU LA VALLIERE", "libell_d_acheminement": "CHATEAU LA VALLIERE", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37062"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b660e3f487631da5fad0462c0067e6ebb22d7a7", "fields": {"nom_de_la_commune": "CHENONCEAUX", "libell_d_acheminement": "CHENONCEAUX", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37070"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2ff0e8986547b7c47d36c598a5369fb14b7f16", "fields": {"nom_de_la_commune": "CHEZELLES", "libell_d_acheminement": "CHEZELLES", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37071"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64cfb1a7482fef5581591c10f2573e04ea6fc2f0", "fields": {"nom_de_la_commune": "CLERE LES PINS", "libell_d_acheminement": "CLERE LES PINS", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37081"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a690cee335b988847952da483f6d21497d47811", "fields": {"nom_de_la_commune": "CONTINVOIR", "libell_d_acheminement": "CONTINVOIR", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37082"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d247e29cb93b5247478f205c7b1b06d6727d423c", "fields": {"nom_de_la_commune": "CRISSAY SUR MANSE", "libell_d_acheminement": "CRISSAY SUR MANSE", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37090"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "251ad93d59a7945d6489047a2f2012f6a305eaf1", "fields": {"nom_de_la_commune": "CROTELLES", "libell_d_acheminement": "CROTELLES", "code_postal": "37380", "coordonnees_gps": [47.5261492712, 0.803507929992], "code_commune_insee": "37092"}, "geometry": {"type": "Point", "coordinates": [0.803507929992, 47.5261492712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a69882ac5f8707ac1a9aa8d81819f69f7273a0fb", "fields": {"nom_de_la_commune": "DAME MARIE LES BOIS", "libell_d_acheminement": "DAME MARIE LES BOIS", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37095"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b719620a22327fb8cf89fd4d311bab08198acf4", "fields": {"nom_de_la_commune": "FAYE LA VINEUSE", "libell_d_acheminement": "FAYE LA VINEUSE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37105"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fbc6b13170724555a6b1c15dd9187eb3c11ac5f", "fields": {"nom_de_la_commune": "LA FERRIERE", "libell_d_acheminement": "LA FERRIERE", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37106"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e1879aef785b1e701c91c01539bbfea2a4281fb", "fields": {"nom_de_la_commune": "LA GUERCHE", "libell_d_acheminement": "LA GUERCHE", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37114"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb58626811ec4b618e45cbd66ad740c60336935b", "fields": {"nom_de_la_commune": "DESCARTES", "libell_d_acheminement": "DESCARTES", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "37115"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed12b44b5ff0d206d245457ae97551ac10084940", "fields": {"nom_de_la_commune": "HUISMES", "libell_d_acheminement": "HUISMES", "code_postal": "37420", "coordonnees_gps": [47.2193932083, 0.209651167751], "code_commune_insee": "37118"}, "geometry": {"type": "Point", "coordinates": [0.209651167751, 47.2193932083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52fc53774e20480f9428894ab14d57a42b6bd4d", "fields": {"nom_de_la_commune": "LARCAY", "libell_d_acheminement": "LARCAY", "code_postal": "37270", "coordonnees_gps": [47.3461148739, 0.860028356093], "code_commune_insee": "37124"}, "geometry": {"type": "Point", "coordinates": [0.860028356093, 47.3461148739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ea6af21aa59c7c9c404b71977dc20626cda2d2", "fields": {"nom_de_la_commune": "LOCHE SUR INDROIS", "libell_d_acheminement": "LOCHE SUR INDROIS", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37133"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6b027773ac3b1334b2dbe6f60c7a8f640e9983", "fields": {"nom_de_la_commune": "LUZILLE", "libell_d_acheminement": "LUZILLE", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37141"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68bfe2b1053fd1c3cf257182fb8f0d352fa0b9fd", "fields": {"nom_de_la_commune": "METTRAY", "libell_d_acheminement": "METTRAY", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37152"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c52b7963b54cef8b491e076cd4bc9406af881af", "fields": {"nom_de_la_commune": "MONTHODON", "libell_d_acheminement": "MONTHODON", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37155"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e79fb2a70e7720cce8bf2d7a5976adfdce5fd3", "fields": {"nom_de_la_commune": "NOTRE DAME D OE", "libell_d_acheminement": "NOTRE DAME D OE", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37172"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7783aa8ea280e3c4d745301ddf386fbe4244339e", "fields": {"nom_de_la_commune": "NOUANS LES FONTAINES", "libell_d_acheminement": "NOUANS LES FONTAINES", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37173"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1719c4a09e2fa2bc31335fbccb3f79bd5d05c475", "fields": {"nom_de_la_commune": "NOYANT DE TOURAINE", "libell_d_acheminement": "NOYANT DE TOURAINE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37176"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "151f556961f8e80c0344353e7f99faeddf37d0ed", "fields": {"nom_de_la_commune": "PARCAY MESLAY", "libell_d_acheminement": "PARCAY MESLAY", "code_postal": "37210", "coordonnees_gps": [47.4342671644, 0.82289231323], "code_commune_insee": "37179"}, "geometry": {"type": "Point", "coordinates": [0.82289231323, 47.4342671644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f9b34ddd5933ff5a7f024e3cc285f09997b6ce4", "fields": {"nom_de_la_commune": "RICHELIEU", "libell_d_acheminement": "RICHELIEU", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37196"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "678b475b71414985b9232018136b4fcaa0afb92b", "fields": {"nom_de_la_commune": "RILLY SUR VIENNE", "libell_d_acheminement": "RILLY SUR VIENNE", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37199"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8acffdbadc6a7731db0597678a6f1a490191cef1", "fields": {"nom_de_la_commune": "ST BAULD", "libell_d_acheminement": "ST BAULD", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37209"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d47c736e9127077180955cb9f47cbf7c3763931f", "fields": {"nom_de_la_commune": "ST LAURENT DE LIN", "libell_d_acheminement": "ST LAURENT DE LIN", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37223"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7c56eb038f56946f0dab147c9a7092e2285a68", "fields": {"nom_de_la_commune": "ST NICOLAS DE BOURGUEIL", "libell_d_acheminement": "ST NICOLAS DE BOURGUEIL", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37228"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3056ce4c7ee04b47a165417235adf1f6fb9d80", "fields": {"nom_de_la_commune": "ST NICOLAS DES MOTETS", "libell_d_acheminement": "ST NICOLAS DES MOTETS", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37229"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e35b4ae40151008747010e75d313537e2c5e18be", "fields": {"nom_de_la_commune": "ST SENOCH", "libell_d_acheminement": "ST SENOCH", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37238"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a47db32e4632c94ff0cc990619fcd26c5abfa6", "fields": {"nom_de_la_commune": "SAUNAY", "libell_d_acheminement": "SAUNAY", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37240"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c1445b84933297c7e8727c58616535ec6cf2c3", "fields": {"nom_de_la_commune": "SEMBLANCAY", "libell_d_acheminement": "SEMBLANCAY", "code_postal": "37360", "coordonnees_gps": [47.5289315618, 0.576894142963], "code_commune_insee": "37245"}, "geometry": {"type": "Point", "coordinates": [0.576894142963, 47.5289315618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e62b122aeddf182642ca72b8821a75e5e42f5572", "fields": {"nom_de_la_commune": "SOUVIGNE", "libell_d_acheminement": "SOUVIGNE", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37251"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eac47e20bf15b236f0ddad96711b1e797d6fe31", "fields": {"nom_de_la_commune": "SUBLAINES", "libell_d_acheminement": "SUBLAINES", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37253"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98052ee200e9fd24e75622e70723c6d90a94d7cf", "fields": {"nom_de_la_commune": "LA TOUR ST GELIN", "libell_d_acheminement": "LA TOUR ST GELIN", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37260"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b974c388dad9455bb1ca43bc6cb05beda3e9da5e", "fields": {"nom_de_la_commune": "TOURS", "libell_d_acheminement": "TOURS", "code_postal": "37100", "coordonnees_gps": [47.3979724257, 0.696297496341], "code_commune_insee": "37261"}, "geometry": {"type": "Point", "coordinates": [0.696297496341, 47.3979724257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "835f08a6d1a1bb2af7bc3304493a50ae098e712d", "fields": {"nom_de_la_commune": "TOURS", "libell_d_acheminement": "TOURS", "code_postal": "37200", "coordonnees_gps": [47.3979724257, 0.696297496341], "code_commune_insee": "37261"}, "geometry": {"type": "Point", "coordinates": [0.696297496341, 47.3979724257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "794b5310576a358dd33dec3060ca9197d05a8c10", "fields": {"nom_de_la_commune": "TROGUES", "libell_d_acheminement": "TROGUES", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37262"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a89331c5be09072a972634fd5f169e31a6e078d5", "fields": {"nom_de_la_commune": "VEIGNE", "libell_d_acheminement": "VEIGNE", "code_postal": "37250", "coordonnees_gps": [47.2559000067, 0.703996574131], "code_commune_insee": "37266"}, "geometry": {"type": "Point", "coordinates": [0.703996574131, 47.2559000067]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96c57201571b7251f90687cb6e952f766f538c9c", "fields": {"nom_de_la_commune": "VERETZ", "libell_d_acheminement": "VERETZ", "code_postal": "37270", "coordonnees_gps": [47.3461148739, 0.860028356093], "code_commune_insee": "37267"}, "geometry": {"type": "Point", "coordinates": [0.860028356093, 47.3461148739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79f190f6b85d4f8af4d5a3b72cf9f4aa07c12be1", "fields": {"nom_de_la_commune": "VERNOU SUR BRENNE", "libell_d_acheminement": "VERNOU SUR BRENNE", "code_postal": "37210", "coordonnees_gps": [47.4342671644, 0.82289231323], "code_commune_insee": "37270"}, "geometry": {"type": "Point", "coordinates": [0.82289231323, 47.4342671644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b547914df748b60638468c15f1c82bef3cb32090", "fields": {"nom_de_la_commune": "VILLEBOURG", "libell_d_acheminement": "VILLEBOURG", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37274"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db82e2551055bed945e9293a0fa14a310d93d8fd", "fields": {"nom_de_la_commune": "VILLELOIN COULANGE", "libell_d_acheminement": "VILLELOIN COULANGE", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37277"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d26c74685ebd5215eaf9521fed78bf92cba1109a", "fields": {"nom_de_la_commune": "VOUVRAY", "libell_d_acheminement": "VOUVRAY", "code_postal": "37210", "coordonnees_gps": [47.4342671644, 0.82289231323], "code_commune_insee": "37281"}, "geometry": {"type": "Point", "coordinates": [0.82289231323, 47.4342671644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "637110bb931b4f13b06624319f6a30e09c6278d3", "fields": {"nom_de_la_commune": "AGNIN", "libell_d_acheminement": "AGNIN", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38003"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2a0672c5236e1fe01dc424e9278d93623755f7", "fields": {"nom_de_la_commune": "ALLEVARD", "libell_d_acheminement": "ALLEVARD", "code_postal": "38580", "coordonnees_gps": [45.3350666079, 6.10773824742], "code_commune_insee": "38006"}, "geometry": {"type": "Point", "coordinates": [6.10773824742, 45.3350666079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00a7ec0bfd3ef221575f75c53816d307ba40c1ab", "fields": {"code_postal": "38140", "code_commune_insee": "38013", "libell_d_acheminement": "APPRIEU", "ligne_5": "LE RIVIER", "nom_de_la_commune": "APPRIEU", "coordonnees_gps": [45.3572541571, 5.48017908305]}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91eab891fb4847b3048391007aff1be0bf6a61e6", "fields": {"nom_de_la_commune": "BEAUREPAIRE", "libell_d_acheminement": "BEAUREPAIRE", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38034"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4529a42c0156bb864be6276738cb66872a26836a", "fields": {"nom_de_la_commune": "BEAUVOIR EN ROYANS", "libell_d_acheminement": "BEAUVOIR EN ROYANS", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38036"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5fae3d712e6ecc87c9367d5c98cd6e1407625b", "fields": {"nom_de_la_commune": "BIVIERS", "libell_d_acheminement": "BIVIERS", "code_postal": "38330", "coordonnees_gps": [45.246730874, 5.82653141673], "code_commune_insee": "38045"}, "geometry": {"type": "Point", "coordinates": [5.82653141673, 45.246730874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9567cd472c717ad9adc022db6661a9cc5ac2a8b", "fields": {"nom_de_la_commune": "BOSSIEU", "libell_d_acheminement": "BOSSIEU", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38049"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f45cfe80d083952655a4ed419d8cc7a6a97e13a", "fields": {"nom_de_la_commune": "BOUGE CHAMBALUD", "libell_d_acheminement": "BOUGE CHAMBALUD", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38051"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c23c30d6929ea55214ce334000cde80d54fe4adb", "fields": {"nom_de_la_commune": "BRESSIEUX", "libell_d_acheminement": "BRESSIEUX", "code_postal": "38870", "coordonnees_gps": [45.3123965448, 5.28339736788], "code_commune_insee": "38056"}, "geometry": {"type": "Point", "coordinates": [5.28339736788, 45.3123965448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb7f77a689cdebac8b17f9c79a3bfb5f8fe74df4", "fields": {"nom_de_la_commune": "BREZINS", "libell_d_acheminement": "BREZINS", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38058"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb39b27f4793bdf69f8d61f53fba6dfdd655ffec", "fields": {"nom_de_la_commune": "BRIE ET ANGONNES", "libell_d_acheminement": "BRIE ET ANGONNES", "code_postal": "38320", "coordonnees_gps": [45.1372833334, 5.77563920733], "code_commune_insee": "38059"}, "geometry": {"type": "Point", "coordinates": [5.77563920733, 45.1372833334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "826388ba0415551731d2352dc2b70a2ebf4fe47c", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38060"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97cd2f9a58dd5bfc6c84b9ca7bde7773ee8fe88", "fields": {"nom_de_la_commune": "LA BUISSIERE", "libell_d_acheminement": "LA BUISSIERE", "code_postal": "38530", "coordonnees_gps": [45.4375526666, 5.98907840878], "code_commune_insee": "38062"}, "geometry": {"type": "Point", "coordinates": [5.98907840878, 45.4375526666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250d8f75e86f232c2f287f4cf22fd14e3a04246d", "fields": {"nom_de_la_commune": "BURCIN", "libell_d_acheminement": "BURCIN", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38063"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c3b9540a8002e3a9a8ba6333ac0adb38ae6a4f", "fields": {"nom_de_la_commune": "CHANTESSE", "libell_d_acheminement": "CHANTESSE", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38074"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ec01cf4905289bf1839bdba99ccf11010d32cb5", "fields": {"nom_de_la_commune": "CHARANTONNAY", "libell_d_acheminement": "CHARANTONNAY", "code_postal": "38790", "coordonnees_gps": [45.5630185121, 5.09029489838], "code_commune_insee": "38081"}, "geometry": {"type": "Point", "coordinates": [5.09029489838, 45.5630185121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c38a73ea3a10dc80bbaf0abd57b7247404dadc7", "fields": {"nom_de_la_commune": "CHASSELAY", "libell_d_acheminement": "CHASSELAY", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38086"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "567f9974bab359c1d791092a5db790f14604a41a", "fields": {"nom_de_la_commune": "CHASSE SUR RHONE", "libell_d_acheminement": "CHASSE SUR RHONE", "code_postal": "38670", "coordonnees_gps": [45.5794312598, 4.81422598198], "code_commune_insee": "38087"}, "geometry": {"type": "Point", "coordinates": [4.81422598198, 45.5794312598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b01e7beb29c9e44346e1eb1c6efd7d5b9576a9", "fields": {"nom_de_la_commune": "CHAVANOZ", "libell_d_acheminement": "CHAVANOZ", "code_postal": "38230", "coordonnees_gps": [45.7461483574, 5.17160988161], "code_commune_insee": "38097"}, "geometry": {"type": "Point", "coordinates": [5.17160988161, 45.7461483574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b750fdaf4fa117ff11e6507281e0cb2ceab70977", "fields": {"nom_de_la_commune": "CHELIEU", "libell_d_acheminement": "CHELIEU", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38098"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4570df9f2658105a5e3214833ad58abbe6da043c", "fields": {"nom_de_la_commune": "CHORANCHE", "libell_d_acheminement": "CHORANCHE", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38108"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5278db1f6daf7607e5ce1d219e9cf08493868469", "fields": {"nom_de_la_commune": "CLAVANS EN HAUT OISANS", "libell_d_acheminement": "CLAVANS EN HAUT OISANS", "code_postal": "38142", "coordonnees_gps": [45.0896138023, 6.16821943755], "code_commune_insee": "38112"}, "geometry": {"type": "Point", "coordinates": [6.16821943755, 45.0896138023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d40ecb1813923ebf1ababd35391008e95f3f8c", "fields": {"nom_de_la_commune": "COGNET", "libell_d_acheminement": "COGNET", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38116"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9895e9e537ecbf7debc90889680dbbc5e5c4b750", "fields": {"nom_de_la_commune": "LA COMBE DE LANCEY", "libell_d_acheminement": "LA COMBE DE LANCEY", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38120"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c82f640633838db2b43e4538f260c271f707197a", "fields": {"nom_de_la_commune": "COMMELLE", "libell_d_acheminement": "COMMELLE", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38121"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fc763d4db3e13fe2a9b9090cab2b1b122fc848a", "fields": {"nom_de_la_commune": "CORENC", "libell_d_acheminement": "CORENC", "code_postal": "38700", "coordonnees_gps": [45.2521287611, 5.7666044089], "code_commune_insee": "38126"}, "geometry": {"type": "Point", "coordinates": [5.7666044089, 45.2521287611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bae3e57a93b45c1f70d0628906f3bd36d7675910", "fields": {"nom_de_la_commune": "CRACHIER", "libell_d_acheminement": "CRACHIER", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38136"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a184528b0ae259c244dd67d73acdad8824b70039", "fields": {"nom_de_la_commune": "CRAS", "libell_d_acheminement": "CRAS", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38137"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b67b8d313c9ecb323231af0181aebba24276257", "fields": {"nom_de_la_commune": "CULIN", "libell_d_acheminement": "CULIN", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38141"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b6242478ed4251d0e8ad869507604046204f9eb", "fields": {"nom_de_la_commune": "DOMARIN", "libell_d_acheminement": "DOMARIN", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38149"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e685ad477923a1eba3bdefdd323996df51ea04c", "fields": {"nom_de_la_commune": "DOMENE", "libell_d_acheminement": "DOMENE", "code_postal": "38420", "coordonnees_gps": [45.1842766535, 5.88281738166], "code_commune_insee": "38150"}, "geometry": {"type": "Point", "coordinates": [5.88281738166, 45.1842766535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8434a1a8fe326276e7467262761656bcbd224073", "fields": {"code_postal": "49350", "code_commune_insee": "49149", "libell_d_acheminement": "GENNES VAL DE LOIRE", "ligne_5": "CHENEHUTTE TREVES CUNAULT", "nom_de_la_commune": "GENNES VAL DE LOIRE", "coordonnees_gps": [47.3419898447, -0.231335175854]}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0a7492ff09e804bd888d36692ff60ca1f0b1d36", "fields": {"code_postal": "49140", "code_commune_insee": "49163", "libell_d_acheminement": "JARZE VILLAGES", "ligne_5": "BEAUVAU", "nom_de_la_commune": "JARZE VILLAGES", "coordonnees_gps": [47.5412696168, -0.334422657003]}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e28b082823c35f7bc54b5cf591905a298414ea80", "fields": {"nom_de_la_commune": "LEZIGNE", "libell_d_acheminement": "LEZIGNE", "code_postal": "49430", "coordonnees_gps": [47.6620353083, -0.269301702185], "code_commune_insee": "49174"}, "geometry": {"type": "Point", "coordinates": [-0.269301702185, 47.6620353083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14c36e9fb55a2e70ac9512f75e9adf8ccf63a2c6", "fields": {"nom_de_la_commune": "LINIERES BOUTON", "libell_d_acheminement": "LINIERES BOUTON", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49175"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eebcbbe800d8bd29401238db07dc42ccd007f46e", "fields": {"nom_de_la_commune": "LE LION D ANGERS", "libell_d_acheminement": "LE LION D ANGERS", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49176"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed3ae085f416b88cc3e1140eea37294b317391a", "fields": {"nom_de_la_commune": "LONGUE JUMELLES", "libell_d_acheminement": "LONGUE JUMELLES", "code_postal": "49160", "coordonnees_gps": [47.3844683998, -0.0956251907418], "code_commune_insee": "49180"}, "geometry": {"type": "Point", "coordinates": [-0.0956251907418, 47.3844683998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e8ce9614def7e317fca6ed1e569ab1792525bed", "fields": {"nom_de_la_commune": "MEIGNE", "libell_d_acheminement": "MEIGNE", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49198"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c721cea16f5b235f212f2b33eb9740921096c5c8", "fields": {"code_postal": "49770", "code_commune_insee": "49200", "libell_d_acheminement": "LONGUENEE EN ANJOU", "ligne_5": "LA MEIGNANNE", "nom_de_la_commune": "LONGUENEE EN ANJOU", "coordonnees_gps": [47.5603869664, -0.682921091412]}, "geometry": {"type": "Point", "coordinates": [-0.682921091412, 47.5603869664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc06e4bed38ae4b09d2694124a78b8b3cd015106", "fields": {"nom_de_la_commune": "LA MENITRE", "libell_d_acheminement": "LA MENITRE", "code_postal": "49250", "coordonnees_gps": [47.4313983805, -0.244193438131], "code_commune_insee": "49201"}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "044dab5ea9ee5b7bc71a9166ccc9cdb5d7ee23fc", "fields": {"nom_de_la_commune": "MONTREUIL JUIGNE", "libell_d_acheminement": "MONTREUIL JUIGNE", "code_postal": "49460", "coordonnees_gps": [47.5717691196, -0.578911791129], "code_commune_insee": "49214"}, "geometry": {"type": "Point", "coordinates": [-0.578911791129, 47.5717691196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b09ee04c47c486b0f67a032f26c773d0b7e51beb", "fields": {"code_postal": "49110", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "CHAUDRON EN MAUGES", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29ca23bdf97bc31de7381c90d6586614aa66b98", "fields": {"code_postal": "49110", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "ST QUENTIN EN MAUGES", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76425763a16f4f0404f1e98abeb661f4ca796e2d", "fields": {"nom_de_la_commune": "MOULIHERNE", "libell_d_acheminement": "MOULIHERNE", "code_postal": "49390", "coordonnees_gps": [47.4059865072, 0.072262523742], "code_commune_insee": "49221"}, "geometry": {"type": "Point", "coordinates": [0.072262523742, 47.4059865072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4faf03da5d280aae03b6c9bed890aa95253e3f", "fields": {"nom_de_la_commune": "MURS ERIGNE", "libell_d_acheminement": "MURS ERIGNE", "code_postal": "49610", "coordonnees_gps": [47.3759967288, -0.537909548513], "code_commune_insee": "49223"}, "geometry": {"type": "Point", "coordinates": [-0.537909548513, 47.3759967288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e2c1cb2052a8d463da8c47424181c6e2bfed56", "fields": {"nom_de_la_commune": "NOTRE DAME D ALLENCON", "libell_d_acheminement": "NOTRE DAME D ALLENCON", "code_postal": "49380", "coordonnees_gps": [47.275621339, -0.477027666042], "code_commune_insee": "49227"}, "geometry": {"type": "Point", "coordinates": [-0.477027666042, 47.275621339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057a539a9d51949e770fb358920624e4070677b4", "fields": {"nom_de_la_commune": "NYOISEAU", "libell_d_acheminement": "NYOISEAU", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49233"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0172c0778532f617f509048a26cb160dfad10a1d", "fields": {"nom_de_la_commune": "LE PLESSIS GRAMMOIRE", "libell_d_acheminement": "LE PLESSIS GRAMMOIRE", "code_postal": "49124", "coordonnees_gps": [47.4813328465, -0.46591896303], "code_commune_insee": "49241"}, "geometry": {"type": "Point", "coordinates": [-0.46591896303, 47.4813328465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f46db9b48a45dde864151739bab324b0e452d2b5", "fields": {"code_postal": "49110", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "BOTZ EN MAUGES", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeba582fae67b0e35a54ca6257e4e5a857bcee35", "fields": {"code_postal": "49410", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "BEAUSSE", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e612bcd047bd226d8579d68a445946507657bd59", "fields": {"code_postal": "49410", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "LA CHAPELLE ST FLORENT", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44914ff5ddc64b43d751e76b83935456145be3b5", "fields": {"code_postal": "49410", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "LE MESNIL EN VALLEE", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1e10b8984e6b23c3fe56c532dfb858a2f6aaf33", "fields": {"code_postal": "49410", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "ST LAURENT DU MOTTAY", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3c854a227e9cd3b06789d2403770c25994eb36", "fields": {"nom_de_la_commune": "LA PREVIERE", "libell_d_acheminement": "LA PREVIERE", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49250"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f97ba8953a8ed7c20a89d10954ec204a021a1dff", "fields": {"nom_de_la_commune": "LE PUY NOTRE DAME", "libell_d_acheminement": "LE PUY NOTRE DAME", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49253"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091034ec234c10fe99dd04f7fd1596dfc4d2d4b0", "fields": {"nom_de_la_commune": "LES ROSIERS SUR LOIRE", "libell_d_acheminement": "LES ROSIERS SUR LOIRE", "code_postal": "49350", "coordonnees_gps": [47.3419898447, -0.231335175854], "code_commune_insee": "49261"}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09f0d6b59346cab1cfe9cf625625d8f13e18281b", "fields": {"nom_de_la_commune": "ST BARTHELEMY D ANJOU", "libell_d_acheminement": "ST BARTHELEMY D ANJOU", "code_postal": "49124", "coordonnees_gps": [47.4813328465, -0.46591896303], "code_commune_insee": "49267"}, "geometry": {"type": "Point", "coordinates": [-0.46591896303, 47.4813328465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8004297811325b906c1991473b69679180fb6da", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DU BOIS", "libell_d_acheminement": "ST CHRISTOPHE DU BOIS", "code_postal": "49280", "coordonnees_gps": [47.0523447645, -0.911452920256], "code_commune_insee": "49269"}, "geometry": {"type": "Point", "coordinates": [-0.911452920256, 47.0523447645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84708671ae3b492a6ecaad7fd71f69a92ad6bdb2", "fields": {"code_postal": "49710", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "LE LONGERON", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62173afc08fd54788761883a84a6e68fd36fcbae", "fields": {"nom_de_la_commune": "ST MARTIN DU FOUILLOUX", "libell_d_acheminement": "ST MARTIN DU FOUILLOUX", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49306"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6412c3276695893d63f2397c5e68e16c85f5672", "fields": {"code_postal": "49140", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "BAUNE", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.5412696168, -0.334422657003]}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "432f48610bc0bc390480dfc999e5d7590423ff45", "fields": {"nom_de_la_commune": "ST MICHEL ET CHANVEAUX", "libell_d_acheminement": "ST MICHEL ET CHANVEAUX", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49309"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7e5f9d075c658dd718acdfd301d38c344ba9354", "fields": {"nom_de_la_commune": "ST SATURNIN SUR LOIRE", "libell_d_acheminement": "ST SATURNIN SUR LOIRE", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49318"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30d39fe56eab54851ea230d2871e75f45408d466", "fields": {"code_postal": "49400", "code_commune_insee": "49328", "libell_d_acheminement": "SAUMUR", "ligne_5": "BAGNEUX", "nom_de_la_commune": "SAUMUR", "coordonnees_gps": [47.2533599269, -0.096565442499]}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4d707ba8cac3a31e6c16a886f978e61184eb61", "fields": {"nom_de_la_commune": "LA SEGUINIERE", "libell_d_acheminement": "LA SEGUINIERE", "code_postal": "49280", "coordonnees_gps": [47.0523447645, -0.911452920256], "code_commune_insee": "49332"}, "geometry": {"type": "Point", "coordinates": [-0.911452920256, 47.0523447645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "722cce1eb1362d945746660f9a409eeb3be3779a", "fields": {"nom_de_la_commune": "SOUZAY CHAMPIGNY", "libell_d_acheminement": "SOUZAY CHAMPIGNY", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49341"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1397aca9e378bebeeca1d93271016f0edf98373e", "fields": {"code_postal": "49380", "code_commune_insee": "49345", "libell_d_acheminement": "BELLEVIGNE EN LAYON", "ligne_5": "FAVERAYE MACHELLES", "nom_de_la_commune": "BELLEVIGNE EN LAYON", "coordonnees_gps": [47.275621339, -0.477027666042]}, "geometry": {"type": "Point", "coordinates": [-0.477027666042, 47.275621339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60c45a1f45c1dd6cd4ae7d24ee1f6b0ef753d9a", "fields": {"code_postal": "49380", "code_commune_insee": "49345", "libell_d_acheminement": "BELLEVIGNE EN LAYON", "ligne_5": "THOUARCE", "nom_de_la_commune": "BELLEVIGNE EN LAYON", "coordonnees_gps": [47.275621339, -0.477027666042]}, "geometry": {"type": "Point", "coordinates": [-0.477027666042, 47.275621339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a3fdef9ee8c4bef15ff9c13efa01bdae7b8220f", "fields": {"nom_de_la_commune": "LES ULMES", "libell_d_acheminement": "LES ULMES", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49359"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "768fafa3c88c5d9b3ad19fcfda0a016405e9abe6", "fields": {"nom_de_la_commune": "VAUDELNAY", "libell_d_acheminement": "VAUDELNAY", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49364"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fd7401b895f42a9be666e558e76f12c053216a", "fields": {"nom_de_la_commune": "VEZINS", "libell_d_acheminement": "VEZINS", "code_postal": "49340", "coordonnees_gps": [47.1051947253, -0.750368480003], "code_commune_insee": "49371"}, "geometry": {"type": "Point", "coordinates": [-0.750368480003, 47.1051947253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5197833d973aff12679358ce99744fddf75507c6", "fields": {"code_postal": "49310", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "ST HILAIRE DU BOIS", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e24f2369d1fbbeb036bf029bbc28d031305deb", "fields": {"code_postal": "49310", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "VIHIERS", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbe7c9af40d6acd15ef6af7c26997b10fb41f8e6", "fields": {"nom_de_la_commune": "VILLEMOISAN", "libell_d_acheminement": "VILLEMOISAN", "code_postal": "49370", "coordonnees_gps": [47.5234772434, -0.840270654951], "code_commune_insee": "49376"}, "geometry": {"type": "Point", "coordinates": [-0.840270654951, 47.5234772434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74d2c46c7973c390edd8d599fb6d13461b7155d6", "fields": {"nom_de_la_commune": "AIREL", "libell_d_acheminement": "AIREL", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50004"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7da4f2ac2aa6a5cb81ecda6fa82191c87fe47fa0", "fields": {"nom_de_la_commune": "BACILLY", "libell_d_acheminement": "BACILLY", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50027"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "121025bb4f1581e7aeb6a5f4ea9d7163c3815d50", "fields": {"nom_de_la_commune": "BAUDRE", "libell_d_acheminement": "BAUDRE", "code_postal": "50000", "coordonnees_gps": [49.1199688631, -1.08893981029], "code_commune_insee": "50034"}, "geometry": {"type": "Point", "coordinates": [-1.08893981029, 49.1199688631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7db217b94d80371b2e48af7fc79214c7b86199f9", "fields": {"nom_de_la_commune": "BEAUCOUDRAY", "libell_d_acheminement": "BEAUCOUDRAY", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50039"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6609e0ed6dd50a50de8d3c479fa4f583599a1db0", "fields": {"nom_de_la_commune": "BEAUFICEL", "libell_d_acheminement": "BEAUFICEL", "code_postal": "50150", "coordonnees_gps": [48.7316763227, -0.921013476497], "code_commune_insee": "50040"}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1bdf50dd25117edf6dca2ac87e3a330151e6aa", "fields": {"nom_de_la_commune": "BEAUMONT HAGUE", "libell_d_acheminement": "BEAUMONT HAGUE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50041"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c7ad4c36b1f8447337187afead84f985a262ed", "fields": {"nom_de_la_commune": "BELLEFONTAINE", "libell_d_acheminement": "BELLEFONTAINE", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50043"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b5c8af20dd58f3961660e7564fcd15e61789b03", "fields": {"nom_de_la_commune": "BENOITVILLE", "libell_d_acheminement": "BENOITVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50045"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b57d6af090c500056534f28664a12ba4c7e18fe1", "fields": {"nom_de_la_commune": "BEUVRIGNY", "libell_d_acheminement": "BEUVRIGNY", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50050"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f083abd99b565ca1be73c4ae90492925cacd00b7", "fields": {"nom_de_la_commune": "LA BONNEVILLE", "libell_d_acheminement": "LA BONNEVILLE", "code_postal": "50360", "coordonnees_gps": [49.3768356416, -1.41731923499], "code_commune_insee": "50064"}, "geometry": {"type": "Point", "coordinates": [-1.41731923499, 49.3768356416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6201ce74c65c9e7269b5f592df6fad339c690d4", "fields": {"code_postal": "50610", "code_commune_insee": "50066", "libell_d_acheminement": "JULLOUVILLE", "ligne_5": "ST MICHEL DES LOUPS", "nom_de_la_commune": "JULLOUVILLE", "coordonnees_gps": [48.7634707089, -1.52774338084]}, "geometry": {"type": "Point", "coordinates": [-1.52774338084, 48.7634707089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3609d4a1138b130a22257e48f73b182a8ab9c4", "fields": {"nom_de_la_commune": "BOURGUENOLLES", "libell_d_acheminement": "BOURGUENOLLES", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50069"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cd5b626f81ef42a5928eec11da1eef4ef2c7a83", "fields": {"nom_de_la_commune": "BOUTTEVILLE", "libell_d_acheminement": "BOUTTEVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50070"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402e55f2d7431c5e0696dfe89b45a10344f90375", "fields": {"nom_de_la_commune": "BRETTEVILLE", "libell_d_acheminement": "BRETTEVILLE", "code_postal": "50110", "coordonnees_gps": [49.6236287204, -1.56289409844], "code_commune_insee": "50077"}, "geometry": {"type": "Point", "coordinates": [-1.56289409844, 49.6236287204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48df2b5cea6ba1940bbb83b2bb6ed91dc6efbab", "fields": {"nom_de_la_commune": "BREVANDS", "libell_d_acheminement": "BREVANDS", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50080"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "435de619268b19b518f4bf6b697c57fe1c31ae38", "fields": {"code_postal": "50260", "code_commune_insee": "50082", "libell_d_acheminement": "BRICQUEBEC EN COTENTIN", "ligne_5": "QUETTETOT", "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", "coordonnees_gps": [49.4933087231, -1.61334140824]}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30fd64d990f48efdb1f419f6412c36b10ad6048", "fields": {"code_postal": "50260", "code_commune_insee": "50082", "libell_d_acheminement": "BRICQUEBEC EN COTENTIN", "ligne_5": "ST MARTIN LE HEBERT", "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", "coordonnees_gps": [49.4933087231, -1.61334140824]}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6545adb6a9fd5bb2fd6c6e6d7eac46bc439fda8", "fields": {"nom_de_la_commune": "BUAIS LES MONTS", "libell_d_acheminement": "BUAIS LES MONTS", "code_postal": "50640", "coordonnees_gps": [48.5293564364, -0.941843015494], "code_commune_insee": "50090"}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14a086c36fabf365a5b40a1019840c17679fcd01", "fields": {"nom_de_la_commune": "CANISY", "libell_d_acheminement": "CANISY", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50095"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bf73dea5676fe8a1ae1ff251cad4ef6f4d15662", "fields": {"code_postal": "50480", "code_commune_insee": "50099", "libell_d_acheminement": "CARENTAN LES MARAIS", "ligne_5": "HOUESVILLE", "nom_de_la_commune": "CARENTAN LES MARAIS", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb63c0b5313cebfa257d59392d5b24495c1be34d", "fields": {"nom_de_la_commune": "CEAUX", "libell_d_acheminement": "CEAUX", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50108"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a67d73f1a44b1fee6a0a275a2d4c13ed083a8307", "fields": {"code_postal": "50320", "code_commune_insee": "50115", "libell_d_acheminement": "LE GRIPPON", "ligne_5": "LES CHAMBRES", "nom_de_la_commune": "LE GRIPPON", "coordonnees_gps": [48.8090574287, -1.40357564145]}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08af30b95e400948378be2dfe1890acb09806d66", "fields": {"nom_de_la_commune": "CONDE SUR VIRE", "libell_d_acheminement": "CONDE SUR VIRE", "code_postal": "50890", "coordonnees_gps": [49.0542998216, -1.0242338737], "code_commune_insee": "50139"}, "geometry": {"type": "Point", "coordinates": [-1.0242338737, 49.0542998216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f24bacc48233159941398d777f5011befb5d6fed", "fields": {"nom_de_la_commune": "COUTANCES", "libell_d_acheminement": "COUTANCES", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50147"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92da5b59a6c81a049b7d470dda975fb1e1917e29", "fields": {"nom_de_la_commune": "CRASVILLE", "libell_d_acheminement": "CRASVILLE", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50150"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9db15ad74eeeb45e0460076269d44efcf7f91eea", "fields": {"nom_de_la_commune": "CREANCES", "libell_d_acheminement": "CREANCES", "code_postal": "50710", "coordonnees_gps": [49.1994615529, -1.56119809168], "code_commune_insee": "50151"}, "geometry": {"type": "Point", "coordinates": [-1.56119809168, 49.1994615529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8155308441b6f71d0544a7e11e4b74a8713a168b", "fields": {"nom_de_la_commune": "CROLLON", "libell_d_acheminement": "CROLLON", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50155"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2c544b328ab2c39a74dc5dcc7f5aa4d639f4c48", "fields": {"nom_de_la_commune": "CUVES", "libell_d_acheminement": "CUVES", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50158"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee24187261cb58962b0dc77bdb982748a07bb997", "fields": {"code_postal": "50530", "code_commune_insee": "50167", "libell_d_acheminement": "DRAGEY RONTHON", "ligne_5": "RONTHON", "nom_de_la_commune": "DRAGEY RONTHON", "coordonnees_gps": [48.7283863786, -1.45989829146]}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aa13513a4ed427361696151989b196c6592f123", "fields": {"nom_de_la_commune": "DUCEY LES CHERIS", "libell_d_acheminement": "DUCEY LES CHERIS", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50168"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2dc82f214d87933edc1040d12472f11189949bb", "fields": {"nom_de_la_commune": "ECAUSSEVILLE", "libell_d_acheminement": "ECAUSSEVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50169"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90f3277038f82d2bee9d2564e92ad37746f9548", "fields": {"nom_de_la_commune": "EMONDEVILLE", "libell_d_acheminement": "EMONDEVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50172"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1210c0bff90ce0a0ca76a61ce3b7ca399af82192", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50185"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f67ec7b119226f13efa4946361ad7f2adfc5597", "fields": {"nom_de_la_commune": "FLOTTEMANVILLE", "libell_d_acheminement": "FLOTTEMANVILLE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50186"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c519209ac2cc34346dd56c8b31a12e7ea77f22f", "fields": {"nom_de_la_commune": "FONTENAY SUR MER", "libell_d_acheminement": "FONTENAY SUR MER", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50190"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff37eb5019b563ff3a738780e4ac66472bb39c41", "fields": {"nom_de_la_commune": "GEFFOSSES", "libell_d_acheminement": "GEFFOSSES", "code_postal": "50560", "coordonnees_gps": [49.1045282282, -1.56820466944], "code_commune_insee": "50198"}, "geometry": {"type": "Point", "coordinates": [-1.56820466944, 49.1045282282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29bb97d6228cee01f3403e4f2fea3a8f5193ad89", "fields": {"nom_de_la_commune": "LA GOHANNIERE", "libell_d_acheminement": "LA GOHANNIERE", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50206"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70b8d60898b58c254bacba6a7fd20764b487b0cb", "fields": {"code_postal": "50620", "code_commune_insee": "50216", "libell_d_acheminement": "GRAIGNES MESNIL ANGOT", "ligne_5": "LE MESNIL ANGOT", "nom_de_la_commune": "GRAIGNES MESNIL ANGOT", "coordonnees_gps": [49.2231117427, -1.17413821779]}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad2a41e97816ef760382ad18a071fb08b0fe375d", "fields": {"nom_de_la_commune": "GRATOT", "libell_d_acheminement": "GRATOT", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50219"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "004714118cbf69f4c0722499ff7fabb4eee5a2bb", "fields": {"nom_de_la_commune": "HAUTTEVILLE BOCAGE", "libell_d_acheminement": "HAUTTEVILLE BOCAGE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50233"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684a648bf2ca0fe10b664670299b2724a49af98b", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "BOLLEVILLE", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d62c169f20f6bcbbb5350c8d9f8d181b4f71913e", "fields": {"nom_de_la_commune": "HEUGUEVILLE SUR SIENNE", "libell_d_acheminement": "HEUGUEVILLE SUR SIENNE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50243"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4e5996e47227a9cedfe4f8f862ddde942047bdf", "fields": {"nom_de_la_commune": "JUVIGNY LE TERTRE", "libell_d_acheminement": "JUVIGNY LE TERTRE", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50260"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af71a72737553139ce5e48045d960aca5602f560", "fields": {"nom_de_la_commune": "LESSAY", "libell_d_acheminement": "LESSAY", "code_postal": "50430", "coordonnees_gps": [49.238207059, -1.53592999138], "code_commune_insee": "50267"}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f392eaf8a5f75c87b6ab5eb22dc70c4f14816579", "fields": {"nom_de_la_commune": "LINGREVILLE", "libell_d_acheminement": "LINGREVILLE", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50272"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0552043c5735c713ffc9490691ee65b83704eebe", "fields": {"code_postal": "50250", "code_commune_insee": "50273", "libell_d_acheminement": "MONTSENELLE", "ligne_5": "STE SUZANNE EN BAUPTOIS", "nom_de_la_commune": "MONTSENELLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2194f701f9fd707b2f84c0d5565174713c2dba64", "fields": {"nom_de_la_commune": "LE LOREUR", "libell_d_acheminement": "LE LOREUR", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50278"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c0dde072c9c239ae47785ea4c69645f0bab2ff", "fields": {"nom_de_la_commune": "LA LUCERNE D OUTREMER", "libell_d_acheminement": "LA LUCERNE D OUTREMER", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50281"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4934c15588176248f7cd053e5433002927db906d", "fields": {"nom_de_la_commune": "MARGUERAY", "libell_d_acheminement": "MARGUERAY", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50291"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7e70fffbd7f3f16693c8be8b84044e45a3fb652", "fields": {"nom_de_la_commune": "MAUPERTUIS", "libell_d_acheminement": "MAUPERTUIS", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50295"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0c78eb35cf0f112053addce6ee12634cbae7c94", "fields": {"nom_de_la_commune": "LA MEAUFFE", "libell_d_acheminement": "LA MEAUFFE", "code_postal": "50880", "coordonnees_gps": [49.1662165631, -1.12970537087], "code_commune_insee": "50297"}, "geometry": {"type": "Point", "coordinates": [-1.12970537087, 49.1662165631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7b1ca8389b16e65e406b0d8a9c31e6cb23daebb", "fields": {"nom_de_la_commune": "LE MESNIL EURY", "libell_d_acheminement": "LE MESNIL EURY", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50310"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4125b2639bc06448d5ce5780f610e0ef6b412d0e", "fields": {"nom_de_la_commune": "LE MESNIL OZENNE", "libell_d_acheminement": "LE MESNIL OZENNE", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50317"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0105ebfdb405c548262bd182529fc24c20a1628f", "fields": {"nom_de_la_commune": "LE MESNIL ROUXELIN", "libell_d_acheminement": "LE MESNIL ROUXELIN", "code_postal": "50000", "coordonnees_gps": [49.1199688631, -1.08893981029], "code_commune_insee": "50321"}, "geometry": {"type": "Point", "coordinates": [-1.08893981029, 49.1199688631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a8232062abd91c283b7c200aeb6cdb4ebf7fde0", "fields": {"nom_de_la_commune": "LE MESNIL TOVE", "libell_d_acheminement": "LE MESNIL TOVE", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50323"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e47aab3874fead16af27d4c97d771d16349b4785", "fields": {"nom_de_la_commune": "LE MESNIL VENERON", "libell_d_acheminement": "LE MESNIL VENERON", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50324"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f34e731a82b6044f862fd7ea0d7e974e34c4b79", "fields": {"nom_de_la_commune": "LE MESNIL VIGOT", "libell_d_acheminement": "LE MESNIL VIGOT", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50325"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70053ce9a79609551544e48f0acdc4225cb6aa5", "fields": {"nom_de_la_commune": "LEVIGNY", "libell_d_acheminement": "LEVIGNY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10194"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d30f40dbd8913638ee76ed88bea5aa8e590ca4", "fields": {"nom_de_la_commune": "NEUVILLE SUR SEINE", "libell_d_acheminement": "NEUVILLE SUR SEINE", "code_postal": "10250", "coordonnees_gps": [48.0053306806, 4.46269020196], "code_commune_insee": "10262"}, "geometry": {"type": "Point", "coordinates": [4.46269020196, 48.0053306806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99e2b98c18d070c60fa923294f3c778145bf653", "fields": {"nom_de_la_commune": "MONTIER EN L ISLE", "libell_d_acheminement": "MONTIER EN L ISLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10250"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae683ed30abdb1943a2ab6532d46c582d397c6b2", "fields": {"nom_de_la_commune": "NOGENT EN OTHE", "libell_d_acheminement": "NOGENT EN OTHE", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10266"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdb125f999e17c7687905045c1ec5ef38762817a", "fields": {"nom_de_la_commune": "ORIGNY LE SEC", "libell_d_acheminement": "ORIGNY LE SEC", "code_postal": "10510", "coordonnees_gps": [48.4879809815, 3.8003478172], "code_commune_insee": "10271"}, "geometry": {"type": "Point", "coordinates": [3.8003478172, 48.4879809815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6265f0bae562c4a042c84711b57d0d296f0ece0b", "fields": {"nom_de_la_commune": "MORVILLIERS", "libell_d_acheminement": "MORVILLIERS", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10258"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5c977b093d00353773fe9d5242024e1339ded00", "fields": {"nom_de_la_commune": "MONTIERAMEY", "libell_d_acheminement": "MONTIERAMEY", "code_postal": "10270", "coordonnees_gps": [48.2596266125, 4.24959642717], "code_commune_insee": "10249"}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0230afd48f9e6454d508d6760c987dc5609c0eef", "fields": {"nom_de_la_commune": "MONTPOTHIER", "libell_d_acheminement": "MONTPOTHIER", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10254"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "039b933a8451e8ee77c840ef65428a4526b1476c", "fields": {"nom_de_la_commune": "MOREMBERT", "libell_d_acheminement": "MOREMBERT", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10257"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54e91cc5e6c0ab5527dbcca965658f88d77af28", "fields": {"nom_de_la_commune": "PARGUES", "libell_d_acheminement": "PARGUES", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10278"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba7f01e1a139967dcef0534fb95cdf23b862947e", "fields": {"nom_de_la_commune": "ONJON", "libell_d_acheminement": "ONJON", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10270"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58139158765a5c89656d6c217941028f6c046a0", "fields": {"code_postal": "10190", "code_commune_insee": "10142", "libell_d_acheminement": "ESTISSAC", "ligne_5": "THUISY", "nom_de_la_commune": "ESTISSAC", "coordonnees_gps": [48.249510935, 3.83670117751]}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8282b14984571e1181f418d6ccc3c1427409ceec", "fields": {"code_postal": "10150", "code_commune_insee": "10191", "libell_d_acheminement": "LAVAU", "ligne_5": "LA VALLOTE", "nom_de_la_commune": "LAVAU", "coordonnees_gps": [48.3962803897, 4.13703511392]}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5422424fe97e482b894fc8e10c007305a14a7c7", "fields": {"nom_de_la_commune": "JONCREUIL", "libell_d_acheminement": "JONCREUIL", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10180"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c50e58a6b8279797c041ace17405cfeb7c5bb6", "fields": {"nom_de_la_commune": "JAVERNANT", "libell_d_acheminement": "JAVERNANT", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10177"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3473ce53da4667991720e1174371c08795688686", "fields": {"nom_de_la_commune": "HAMPIGNY", "libell_d_acheminement": "HAMPIGNY", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10171"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e69606cbce9d98763766cc707ea7a6d99946a2a", "fields": {"nom_de_la_commune": "FOUCHERES", "libell_d_acheminement": "FOUCHERES", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10158"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "193938dc090b07c37d85979a687e6fbb13c1616b", "fields": {"nom_de_la_commune": "LANTAGES", "libell_d_acheminement": "LANTAGES", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10188"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db7eafbeb069830ce5db8b471ac66fd27b5f67d", "fields": {"nom_de_la_commune": "ESTISSAC", "libell_d_acheminement": "ESTISSAC", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10142"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2503ce8fcecf1cb64861209a4dbb46d470739a0f", "fields": {"nom_de_la_commune": "FRESNAY", "libell_d_acheminement": "FRESNAY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10161"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c6f482ca5f87efe28ac633ffec46b31789f19ec", "fields": {"nom_de_la_commune": "LAGESSE", "libell_d_acheminement": "LAGESSE", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10185"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a9e5bb893041bfd7d74d4a30688cfdd817f4b1a", "fields": {"nom_de_la_commune": "CAUNETTE SUR LAUQUET", "libell_d_acheminement": "CAUNETTE SUR LAUQUET", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11082"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1a4c351729173f14124e7a1c21f380bd597b9d", "fields": {"nom_de_la_commune": "CLERMONT SUR LAUQUET", "libell_d_acheminement": "CLERMONT SUR LAUQUET", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11094"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc200e3aa3e0e2c5fa3bd50f1261b9abaff8d7c9", "fields": {"nom_de_la_commune": "COUFFOULENS", "libell_d_acheminement": "COUFFOULENS", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11102"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b300f9f1834297045d85674a19472b84796a385", "fields": {"nom_de_la_commune": "CAVANAC", "libell_d_acheminement": "CAVANAC", "code_postal": "11570", "coordonnees_gps": [43.1506610986, 2.38289109862], "code_commune_insee": "11085"}, "geometry": {"type": "Point", "coordinates": [2.38289109862, 43.1506610986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62ab65d6d022a14ebd5727a23735970d5d7017eb", "fields": {"nom_de_la_commune": "COUDONS", "libell_d_acheminement": "COUDONS", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11101"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c74a27b81c1fb8a4dd6f963284a30158b91de6", "fields": {"nom_de_la_commune": "LE PONDY", "libell_d_acheminement": "LE PONDY", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18183"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc03efff1ae564d9cd2279756185500121e99549", "fields": {"nom_de_la_commune": "RAYMOND", "libell_d_acheminement": "RAYMOND", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18191"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a4aed737390b2d82b468d6475219a201e33c6c3", "fields": {"nom_de_la_commune": "ST AMAND MONTROND", "libell_d_acheminement": "ST AMAND MONTROND", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18197"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31813ba0b1069f6d5b5107932592b82783b19ffa", "fields": {"nom_de_la_commune": "STE GEMME EN SANCERROIS", "libell_d_acheminement": "STE GEMME EN SANCERROIS", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18208"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b9a480660a6cca9349ee7e888132590584d58ed", "fields": {"nom_de_la_commune": "ST GEORGES SUR LA PREE", "libell_d_acheminement": "ST GEORGES SUR LA PREE", "code_postal": "18100", "coordonnees_gps": [47.2360896302, 2.02349855043], "code_commune_insee": "18210"}, "geometry": {"type": "Point", "coordinates": [2.02349855043, 47.2360896302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09ba7afe93237fd97ea642d648bb883c805abb39", "fields": {"nom_de_la_commune": "STE LUNAISE", "libell_d_acheminement": "STE LUNAISE", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18222"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f24a5c8d66b5dce2f02c2d900de082827580632e", "fields": {"nom_de_la_commune": "ST OUTRILLE", "libell_d_acheminement": "ST OUTRILLE", "code_postal": "18310", "coordonnees_gps": [47.1584535888, 1.87917805896], "code_commune_insee": "18228"}, "geometry": {"type": "Point", "coordinates": [1.87917805896, 47.1584535888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "545848f91a83b48d78158af8495dc5add12fcaa9", "fields": {"nom_de_la_commune": "ST PRIEST LA MARCHE", "libell_d_acheminement": "ST PRIEST LA MARCHE", "code_postal": "18370", "coordonnees_gps": [46.5167318179, 2.22634680986], "code_commune_insee": "18232"}, "geometry": {"type": "Point", "coordinates": [2.22634680986, 46.5167318179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "474b26190a2287e4f4b960e43c291de8831a2d3c", "fields": {"nom_de_la_commune": "SAVIGNY EN SANCERRE", "libell_d_acheminement": "SAVIGNY EN SANCERRE", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18246"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1688bff31810a8ea0e05769149bfffad16b123c3", "fields": {"nom_de_la_commune": "SOYE EN SEPTAINE", "libell_d_acheminement": "SOYE EN SEPTAINE", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18254"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0bff6919e1c5d51d3a3ea09338308532102d721", "fields": {"nom_de_la_commune": "SURY ES BOIS", "libell_d_acheminement": "SURY ES BOIS", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18259"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7747beaa5335685763ca77473655556bb2c7b0a7", "fields": {"nom_de_la_commune": "THAUMIERS", "libell_d_acheminement": "THAUMIERS", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18261"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8965e89036855eb332e4a5bbd6d37bd4557ca552", "fields": {"nom_de_la_commune": "VALLENAY", "libell_d_acheminement": "VALLENAY", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18270"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d5716003f260363a61cf66bdc089172ef6a4e7b", "fields": {"nom_de_la_commune": "VASSELAY", "libell_d_acheminement": "VASSELAY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18271"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155f42d3513d6855228abe7b1ee2e011ee3b78e4", "fields": {"nom_de_la_commune": "VIERZON", "libell_d_acheminement": "VIERZON", "code_postal": "18100", "coordonnees_gps": [47.2360896302, 2.02349855043], "code_commune_insee": "18279"}, "geometry": {"type": "Point", "coordinates": [2.02349855043, 47.2360896302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9dfca17fd179d4d3a63f461097b4c1823792eb", "fields": {"nom_de_la_commune": "VINON", "libell_d_acheminement": "VINON", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18287"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e10c01554cf35ec34b55ac2500370e96a5eaef", "fields": {"nom_de_la_commune": "ALBUSSAC", "libell_d_acheminement": "ALBUSSAC", "code_postal": "19380", "coordonnees_gps": [45.1425705015, 1.85972993392], "code_commune_insee": "19004"}, "geometry": {"type": "Point", "coordinates": [1.85972993392, 45.1425705015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4771bfd14778b4aab1cf8cd45565842fb3478ea", "fields": {"nom_de_la_commune": "ALTILLAC", "libell_d_acheminement": "ALTILLAC", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19007"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00a73c1b656ceacad568a6cc41bccf113ecba97c", "fields": {"nom_de_la_commune": "AMBRUGEAT", "libell_d_acheminement": "AMBRUGEAT", "code_postal": "19250", "coordonnees_gps": [45.5327331418, 2.12561107257], "code_commune_insee": "19008"}, "geometry": {"type": "Point", "coordinates": [2.12561107257, 45.5327331418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3e6fb10feb7fbca97fb73027025177926cbcb3", "fields": {"nom_de_la_commune": "ARNAC POMPADOUR", "libell_d_acheminement": "ARNAC POMPADOUR", "code_postal": "19230", "coordonnees_gps": [45.3932618354, 1.37629346937], "code_commune_insee": "19011"}, "geometry": {"type": "Point", "coordinates": [1.37629346937, 45.3932618354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47a9bc5ff8203fc71dadc9c6a92fce0a92b66ddb", "fields": {"nom_de_la_commune": "BAR", "libell_d_acheminement": "BAR", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19016"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957c1bf25015e3419daf7c7251faa0179648d7f7", "fields": {"nom_de_la_commune": "BASSIGNAC LE HAUT", "libell_d_acheminement": "BASSIGNAC LE HAUT", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19018"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26bd43d2ab582047f2c1e120e02afea8362bab2c", "fields": {"nom_de_la_commune": "BEAULIEU SUR DORDOGNE", "libell_d_acheminement": "BEAULIEU SUR DORDOGNE", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19019"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e4ba1c0512f112241fc476c3cb8e0a5a31d9f1", "fields": {"nom_de_la_commune": "BEYSSENAC", "libell_d_acheminement": "BEYSSENAC", "code_postal": "19230", "coordonnees_gps": [45.3932618354, 1.37629346937], "code_commune_insee": "19025"}, "geometry": {"type": "Point", "coordinates": [1.37629346937, 45.3932618354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bb861496c21cc31cfacd11687318860f0448f9f", "fields": {"nom_de_la_commune": "BONNEFOND", "libell_d_acheminement": "BONNEFOND", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19027"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b49ce659067dcd6fa78ba9ca7482434d671930", "fields": {"nom_de_la_commune": "CHABRIGNAC", "libell_d_acheminement": "CHABRIGNAC", "code_postal": "19350", "coordonnees_gps": [45.323276664, 1.31205893168], "code_commune_insee": "19035"}, "geometry": {"type": "Point", "coordinates": [1.31205893168, 45.323276664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e4a7df8e1119cf4a60665854befcc8f2969b629", "fields": {"nom_de_la_commune": "CHAMPAGNAC LA PRUNE", "libell_d_acheminement": "CHAMPAGNAC LA PRUNE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19040"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b14d6206d4516def8732f4cde3022d5f59ce0c0", "fields": {"nom_de_la_commune": "CHANTEIX", "libell_d_acheminement": "CHANTEIX", "code_postal": "19330", "coordonnees_gps": [45.2774600558, 1.65838820849], "code_commune_insee": "19042"}, "geometry": {"type": "Point", "coordinates": [1.65838820849, 45.2774600558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8af58be2c9ab3755b2d491816c784dac33357d49", "fields": {"nom_de_la_commune": "CHIRAC BELLEVUE", "libell_d_acheminement": "CHIRAC BELLEVUE", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19055"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7569976f1f92cac5bb282f8f31a20d00c6b86225", "fields": {"nom_de_la_commune": "COLLONGES LA ROUGE", "libell_d_acheminement": "COLLONGES LA ROUGE", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19057"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a275678624c3d3e7490f86cf27888c36d8968979", "fields": {"nom_de_la_commune": "CONCEZE", "libell_d_acheminement": "CONCEZE", "code_postal": "19350", "coordonnees_gps": [45.323276664, 1.31205893168], "code_commune_insee": "19059"}, "geometry": {"type": "Point", "coordinates": [1.31205893168, 45.323276664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "464d3fed7b3113aeae22c15ca6d339d4ef3d52a8", "fields": {"nom_de_la_commune": "DARNETS", "libell_d_acheminement": "DARNETS", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19070"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19fae333ae5924211b20aa73e096025c239b8b9b", "fields": {"nom_de_la_commune": "EGLETONS", "libell_d_acheminement": "EGLETONS", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19073"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7766c97bfe7d56e80f07a474b8711a9b48098f33", "fields": {"nom_de_la_commune": "ESTIVALS", "libell_d_acheminement": "ESTIVALS", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19077"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c87a97969232acead765e9fea0451eaa68dd727", "fields": {"nom_de_la_commune": "EYBURIE", "libell_d_acheminement": "EYBURIE", "code_postal": "19140", "coordonnees_gps": [45.4534244824, 1.58484255236], "code_commune_insee": "19079"}, "geometry": {"type": "Point", "coordinates": [1.58484255236, 45.4534244824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60604f15c23068af5594db9864452e5c7477a976", "fields": {"nom_de_la_commune": "GOURDON MURAT", "libell_d_acheminement": "GOURDON MURAT", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19087"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c893016772d145f96d1ea6fb6d9c64632bcbb58", "fields": {"nom_de_la_commune": "GRANDSAIGNE", "libell_d_acheminement": "GRANDSAIGNE", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19088"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2969c324bc62eb69e4832daa73d5c3c8074c434", "fields": {"nom_de_la_commune": "JUILLAC", "libell_d_acheminement": "JUILLAC", "code_postal": "19350", "coordonnees_gps": [45.323276664, 1.31205893168], "code_commune_insee": "19094"}, "geometry": {"type": "Point", "coordinates": [1.31205893168, 45.323276664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc459f0848590b082183e193e6c623571b93477", "fields": {"nom_de_la_commune": "LAGARDE ENVAL", "libell_d_acheminement": "LAGARDE ENVAL", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19098"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2d28ded6064c176f7c26e4e1634be94dcd8c85", "fields": {"nom_de_la_commune": "LAMAZIERE HAUTE", "libell_d_acheminement": "LAMAZIERE HAUTE", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19103"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa260199bd0f1e0aea27e2181505fa887020f57f", "fields": {"nom_de_la_commune": "LANTEUIL", "libell_d_acheminement": "LANTEUIL", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19105"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b376532c1f09d8a04df26528928603d9f00b5f2a", "fields": {"nom_de_la_commune": "MADRANGES", "libell_d_acheminement": "MADRANGES", "code_postal": "19470", "coordonnees_gps": [45.4692753573, 1.7476592385], "code_commune_insee": "19122"}, "geometry": {"type": "Point", "coordinates": [1.7476592385, 45.4692753573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85103725846a15e6d4a89d6064bb9c8b74f99bcf", "fields": {"nom_de_la_commune": "MALEMORT", "libell_d_acheminement": "MALEMORT", "code_postal": "19360", "coordonnees_gps": [45.1545428877, 1.60311872412], "code_commune_insee": "19123"}, "geometry": {"type": "Point", "coordinates": [1.60311872412, 45.1545428877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef8066c060764ed8e75494bdacba02d0c39c09e3", "fields": {"nom_de_la_commune": "MEILHARDS", "libell_d_acheminement": "MEILHARDS", "code_postal": "19510", "coordonnees_gps": [45.5279233251, 1.55841014234], "code_commune_insee": "19131"}, "geometry": {"type": "Point", "coordinates": [1.55841014234, 45.5279233251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95dacaea0ebba091a1051ba99b05a8d0bdedb385", "fields": {"nom_de_la_commune": "MONESTIER PORT DIEU", "libell_d_acheminement": "MONESTIER PORT DIEU", "code_postal": "19110", "coordonnees_gps": [45.4385840854, 2.46492490353], "code_commune_insee": "19142"}, "geometry": {"type": "Point", "coordinates": [2.46492490353, 45.4385840854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff671d9cca101c8478f718af5b1dd983b6728d5", "fields": {"nom_de_la_commune": "ORLIAC DE BAR", "libell_d_acheminement": "ORLIAC DE BAR", "code_postal": "19390", "coordonnees_gps": [45.4299855469, 1.84010426124], "code_commune_insee": "19155"}, "geometry": {"type": "Point", "coordinates": [1.84010426124, 45.4299855469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb1241b8c43e33d1911575a6675d1e14f15b9bd4", "fields": {"nom_de_la_commune": "PALISSE", "libell_d_acheminement": "PALISSE", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19157"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed1c9342bd3ee0137394d60bcd215421f14878b6", "fields": {"nom_de_la_commune": "PIERREFITTE", "libell_d_acheminement": "PIERREFITTE", "code_postal": "19450", "coordonnees_gps": [45.4271584984, 1.69945008096], "code_commune_insee": "19166"}, "geometry": {"type": "Point", "coordinates": [1.69945008096, 45.4271584984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c22e5947cb95cc72eb50ce6fd52ac77daf118820", "fields": {"nom_de_la_commune": "REYGADE", "libell_d_acheminement": "REYGADE", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19171"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec09ccd8a14ef9c29805bf2311c7e63e85b6852", "fields": {"nom_de_la_commune": "RILHAC XAINTRIE", "libell_d_acheminement": "RILHAC XAINTRIE", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19173"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eed1d1376c1238cfbfed46d683a1f9448f1d788", "fields": {"nom_de_la_commune": "ST BAZILE DE MEYSSAC", "libell_d_acheminement": "ST BAZILE DE MEYSSAC", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19184"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90f761e9aedba57010889cdc432bb0f8f44dc63b", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "19700", "coordonnees_gps": [45.365962799, 1.68361128619], "code_commune_insee": "19194"}, "geometry": {"type": "Point", "coordinates": [1.68361128619, 45.365962799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6677ad33dcff6c43cde756f36bc16bb95f1002c", "fields": {"nom_de_la_commune": "ST EXUPERY LES ROCHES", "libell_d_acheminement": "ST EXUPERY LES ROCHES", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19201"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9703b236fe190dd7f662a8342de65ef76cd0f0a3", "fields": {"nom_de_la_commune": "ST GERMAIN LAVOLPS", "libell_d_acheminement": "ST GERMAIN LAVOLPS", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19206"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee19dabed066b0dbdfd039a22517e3b7c159e502", "fields": {"nom_de_la_commune": "ST HILAIRE LES COURBES", "libell_d_acheminement": "ST HILAIRE LES COURBES", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19209"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e28995fc59a09a7042fca9041adc1564f03cf92d", "fields": {"nom_de_la_commune": "ST MEXANT", "libell_d_acheminement": "ST MEXANT", "code_postal": "19330", "coordonnees_gps": [45.2774600558, 1.65838820849], "code_commune_insee": "19227"}, "geometry": {"type": "Point", "coordinates": [1.65838820849, 45.2774600558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b8d6db9219a2670c57cdc6c85f5e8809868ab08", "fields": {"nom_de_la_commune": "ST SALVADOUR", "libell_d_acheminement": "ST SALVADOUR", "code_postal": "19700", "coordonnees_gps": [45.365962799, 1.68361128619], "code_commune_insee": "19240"}, "geometry": {"type": "Point", "coordinates": [1.68361128619, 45.365962799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d4d0ce3810f690b42745146a10240ca483e03e9", "fields": {"nom_de_la_commune": "SALON LA TOUR", "libell_d_acheminement": "SALON LA TOUR", "code_postal": "19510", "coordonnees_gps": [45.5279233251, 1.55841014234], "code_commune_insee": "19250"}, "geometry": {"type": "Point", "coordinates": [1.55841014234, 45.5279233251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ab044dce91d5b54c2279a3f9a9e571c31e01a9", "fields": {"nom_de_la_commune": "SARROUX", "libell_d_acheminement": "SARROUX", "code_postal": "19110", "coordonnees_gps": [45.4385840854, 2.46492490353], "code_commune_insee": "19252"}, "geometry": {"type": "Point", "coordinates": [2.46492490353, 45.4385840854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d586156a646a869639aa372b7dbaa04481ca40", "fields": {"nom_de_la_commune": "USSAC", "libell_d_acheminement": "USSAC", "code_postal": "19270", "coordonnees_gps": [45.2360128901, 1.55194378829], "code_commune_insee": "19274"}, "geometry": {"type": "Point", "coordinates": [1.55194378829, 45.2360128901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "136a1295dd688dd588642d2a31d521318cb9c82e", "fields": {"nom_de_la_commune": "VEGENNES", "libell_d_acheminement": "VEGENNES", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19280"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5102faf29cd732f55ea3518d9a5c8533059b82a8", "fields": {"nom_de_la_commune": "VIAM", "libell_d_acheminement": "VIAM", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19284"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc06370158793a49b1009a859fb86e66575ef18", "fields": {"nom_de_la_commune": "VIGNOLS", "libell_d_acheminement": "VIGNOLS", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19286"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7835f1222092869487bef58213037e2a04646e17", "fields": {"nom_de_la_commune": "AISEREY", "libell_d_acheminement": "AISEREY", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21005"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "010c2411cb18564ebde998406ead5e1b7ac0f7cb", "fields": {"nom_de_la_commune": "ARCENANT", "libell_d_acheminement": "ARCENANT", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21017"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5313b910ae508963a991948314bf7f8d071717", "fields": {"nom_de_la_commune": "ARNAY SOUS VITTEAUX", "libell_d_acheminement": "ARNAY SOUS VITTEAUX", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21024"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91336e64f925d9840b82500b557295b9d6d0dbe5", "fields": {"nom_de_la_commune": "AUBAINE", "libell_d_acheminement": "AUBAINE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21030"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c102a5d35f7695bcff99049cfcce890a6c780946", "fields": {"nom_de_la_commune": "AVELANGES", "libell_d_acheminement": "AVELANGES", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21039"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5013c0da061fee9546a8deafe78ea05cee33a182", "fields": {"nom_de_la_commune": "BALOT", "libell_d_acheminement": "BALOT", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21044"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904b3ad466b75def003f3be7e829b5fd7b287df7", "fields": {"nom_de_la_commune": "BARBIREY SUR OUCHE", "libell_d_acheminement": "BARBIREY SUR OUCHE", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21045"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44fe6077cd8018e2da469d0384f1dafcf3fe80bc", "fields": {"nom_de_la_commune": "BARGES", "libell_d_acheminement": "BARGES", "code_postal": "21910", "coordonnees_gps": [47.1979696302, 5.07760526191], "code_commune_insee": "21048"}, "geometry": {"type": "Point", "coordinates": [5.07760526191, 47.1979696302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bd6bdc95b85aff2c8a3b4b97fa2954682254101", "fields": {"nom_de_la_commune": "BARJON", "libell_d_acheminement": "BARJON", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21049"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9505085ef8023940c307538a86c2cde893862d53", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21052"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d04e55c6f4979ab3bcf85483ee900126425c86a", "fields": {"nom_de_la_commune": "BEAUMONT SUR VINGEANNE", "libell_d_acheminement": "BEAUMONT SUR VINGEANNE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21053"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f16f2c346908da28a971bc52f2d5e526cd2bc4e9", "fields": {"nom_de_la_commune": "NEUVE EGLISE", "libell_d_acheminement": "NEUVE EGLISE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67320"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7cde974477bb42cbe19539ef54a7d0a27aaa097", "fields": {"nom_de_la_commune": "NIEDERNAI", "libell_d_acheminement": "NIEDERNAI", "code_postal": "67210", "coordonnees_gps": [48.4477372351, 7.50825704753], "code_commune_insee": "67329"}, "geometry": {"type": "Point", "coordinates": [7.50825704753, 48.4477372351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5afbe1e47d1794b97cee99f5289bebab047b00f7", "fields": {"code_postal": "67660", "code_commune_insee": "67339", "libell_d_acheminement": "BETSCHDORF", "ligne_5": "KUHLENDORF", "nom_de_la_commune": "BETSCHDORF", "coordonnees_gps": [48.8932955893, 7.92442100196]}, "geometry": {"type": "Point", "coordinates": [7.92442100196, 48.8932955893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01e776d373d30d75c0f4cbfaf3d61c684654c11", "fields": {"nom_de_la_commune": "OBERSOULTZBACH", "libell_d_acheminement": "OBERSOULTZBACH", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67352"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b116db0c11e35c596b6648a71283782b47f91b", "fields": {"nom_de_la_commune": "OHNENHEIM", "libell_d_acheminement": "OHNENHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67360"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c97e7366980226e52270ddfdef73fee13437490b", "fields": {"nom_de_la_commune": "OSTHOUSE", "libell_d_acheminement": "OSTHOUSE", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67364"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6750c02cea00b94c4707d8af2eddcbd94a18659c", "fields": {"code_postal": "67350", "code_commune_insee": "67372", "libell_d_acheminement": "VAL DE MODER", "ligne_5": "PFAFFENHOFFEN", "nom_de_la_commune": "VAL DE MODER", "coordonnees_gps": [48.8437239093, 7.60701636897]}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "517e880e97edfa173f98b3e8a3aac7de4241dfe7", "fields": {"nom_de_la_commune": "PFALZWEYER", "libell_d_acheminement": "PFALZWEYER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67373"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f501c129ba72ee9997f6f27498edfc9b7b0cfbb", "fields": {"nom_de_la_commune": "PLOBSHEIM", "libell_d_acheminement": "PLOBSHEIM", "code_postal": "67115", "coordonnees_gps": [48.4609496057, 7.73518197002], "code_commune_insee": "67378"}, "geometry": {"type": "Point", "coordinates": [7.73518197002, 48.4609496057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "550428f50d27388b882766639c02d6962bc1cde4", "fields": {"nom_de_la_commune": "RATZWILLER", "libell_d_acheminement": "RATZWILLER", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67385"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e968627cbc1247809e540bb8b4279397531f9622", "fields": {"nom_de_la_commune": "REICHSFELD", "libell_d_acheminement": "REICHSFELD", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67387"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d02de1984b77e48124c79fdeace525e402c15ed1", "fields": {"nom_de_la_commune": "RETSCHWILLER", "libell_d_acheminement": "RETSCHWILLER", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67394"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af059c9c172be8148b3a90189569583cf433638", "fields": {"nom_de_la_commune": "RINGENDORF", "libell_d_acheminement": "RINGENDORF", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67403"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d8e2bb6db58f9fcb30aa1eaaf1daaa3bfb60b6", "fields": {"nom_de_la_commune": "ROHRWILLER", "libell_d_acheminement": "ROHRWILLER", "code_postal": "67410", "coordonnees_gps": [48.7592655798, 7.93844896639], "code_commune_insee": "67407"}, "geometry": {"type": "Point", "coordinates": [7.93844896639, 48.7592655798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343f68e1cdeda35ebac9b47ca5e16747252bb567", "fields": {"nom_de_la_commune": "ROSTEIG", "libell_d_acheminement": "ROSTEIG", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67413"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a31c0b9b084d6567fdbcf4d0d1e48e781ef79148", "fields": {"nom_de_la_commune": "ROTTELSHEIM", "libell_d_acheminement": "ROTTELSHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67417"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f961f601ed663cbdf890922ece03138ee996b9f7", "fields": {"nom_de_la_commune": "ROUNTZENHEIM", "libell_d_acheminement": "ROUNTZENHEIM", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67418"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b14218f6321661506e2986d45a9a75cb693e25c", "fields": {"nom_de_la_commune": "ST MARTIN", "libell_d_acheminement": "ST MARTIN", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67426"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef621c74263eb190941003ed0d73f2d8d109b9e", "fields": {"nom_de_la_commune": "ST MAURICE", "libell_d_acheminement": "ST MAURICE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67427"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f51d9547897f2b37972eb8d1a4abc1093316b8b7", "fields": {"code_postal": "67260", "code_commune_insee": "67435", "libell_d_acheminement": "SARREWERDEN", "ligne_5": "BISCHTROFF SUR SARRE", "nom_de_la_commune": "SARREWERDEN", "coordonnees_gps": [48.9452664459, 7.05902340111]}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd848ccef7888d2e0783c438535638e5d490147", "fields": {"code_postal": "67260", "code_commune_insee": "67435", "libell_d_acheminement": "SARREWERDEN", "ligne_5": "ZOLLINGEN", "nom_de_la_commune": "SARREWERDEN", "coordonnees_gps": [48.9452664459, 7.05902340111]}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4545dfc4f4d325fb441b12a460c0d378223ce5f", "fields": {"nom_de_la_commune": "SAVERNE", "libell_d_acheminement": "SAVERNE", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67437"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a7c54b19e71a7fbe2125187c9aa3603ebc1e1e", "fields": {"code_postal": "67700", "code_commune_insee": "67437", "libell_d_acheminement": "SAVERNE", "ligne_5": "ZORNTHAL", "nom_de_la_commune": "SAVERNE", "coordonnees_gps": [48.7358014882, 7.35473600973]}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f46a85888788eae946416fa3cfc23b336971ff", "fields": {"nom_de_la_commune": "SCHARRACHBERGHEIM IRMSTETT", "libell_d_acheminement": "SCHARRACHBERGHEIM IRMSTETT", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67442"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b51747f43045b8c7e15b24344be1c8017d386364", "fields": {"code_postal": "67310", "code_commune_insee": "67442", "libell_d_acheminement": "SCHARRACHBERGHEIM IRMSTETT", "ligne_5": "IRMSTETT", "nom_de_la_commune": "SCHARRACHBERGHEIM IRMSTETT", "coordonnees_gps": [48.6178840196, 7.42141185001]}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a8018017df3d26016385d61a9d5aa7c626cbfb1", "fields": {"nom_de_la_commune": "SCHERWILLER", "libell_d_acheminement": "SCHERWILLER", "code_postal": "67750", "coordonnees_gps": [48.2953571364, 7.41534118393], "code_commune_insee": "67445"}, "geometry": {"type": "Point", "coordinates": [7.41534118393, 48.2953571364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c6c5261cb323ce94ca4bdb8a68c490af2b7bee", "fields": {"nom_de_la_commune": "SCHILLERSDORF", "libell_d_acheminement": "SCHILLERSDORF", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67446"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31e4c0c090e989ff29c42973b0c40dcba2489816", "fields": {"nom_de_la_commune": "SCHIRRHEIN", "libell_d_acheminement": "SCHIRRHEIN", "code_postal": "67240", "coordonnees_gps": [48.7680189809, 7.86094825926], "code_commune_insee": "67449"}, "geometry": {"type": "Point", "coordinates": [7.86094825926, 48.7680189809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d169b20ed15d5e30547b3996313256d534d23790", "fields": {"nom_de_la_commune": "SCHNERSHEIM", "libell_d_acheminement": "SCHNERSHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67452"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dddfbc70ae56fe324fec80f3c538f1340a41009", "fields": {"nom_de_la_commune": "SCHOENAU", "libell_d_acheminement": "SCHOENAU", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67453"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b0cced79bd96754fa5441e169aee4ac7f7657f7", "fields": {"nom_de_la_commune": "SOUFFELWEYERSHEIM", "libell_d_acheminement": "SOUFFELWEYERSHEIM", "code_postal": "67460", "coordonnees_gps": [48.6325071723, 7.74062079006], "code_commune_insee": "67471"}, "geometry": {"type": "Point", "coordinates": [7.74062079006, 48.6325071723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7597c4935ed110eaed039cdbe386300f8d17f22", "fields": {"nom_de_la_commune": "SOUFFLENHEIM", "libell_d_acheminement": "SOUFFLENHEIM", "code_postal": "67620", "coordonnees_gps": [48.8088729378, 7.95624007787], "code_commune_insee": "67472"}, "geometry": {"type": "Point", "coordinates": [7.95624007787, 48.8088729378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e544e1db4ce511d8e90d8afcaae19c95cea040b", "fields": {"nom_de_la_commune": "SOULTZ SOUS FORETS", "libell_d_acheminement": "SOULTZ SOUS FORETS", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67474"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "075743b6587f567ff947d471f7e17b3ac1b21b62", "fields": {"code_postal": "67250", "code_commune_insee": "67474", "libell_d_acheminement": "SOULTZ SOUS FORETS", "ligne_5": "HOHWILLER", "nom_de_la_commune": "SOULTZ SOUS FORETS", "coordonnees_gps": [48.9438844656, 7.88208962387]}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a0627c87c25ab003c7df801f5415fdc34a98ca0", "fields": {"nom_de_la_commune": "SPARSBACH", "libell_d_acheminement": "SPARSBACH", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67475"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "907c8f2e67f8233f8b85ce7b0ef3f4b824a15839", "fields": {"nom_de_la_commune": "STATTMATTEN", "libell_d_acheminement": "STATTMATTEN", "code_postal": "67770", "coordonnees_gps": [48.786400847, 7.99175996988], "code_commune_insee": "67476"}, "geometry": {"type": "Point", "coordinates": [7.99175996988, 48.786400847]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd00751186a0170f963d941bec81185987fe9e72", "fields": {"nom_de_la_commune": "STRASBOURG", "libell_d_acheminement": "STRASBOURG", "code_postal": "67200", "coordonnees_gps": [48.5716222333, 7.76768232804], "code_commune_insee": "67482"}, "geometry": {"type": "Point", "coordinates": [7.76768232804, 48.5716222333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "430ed52aa3207ffa51d5664d11eccbdcdf14d1e2", "fields": {"code_postal": "67370", "code_commune_insee": "67485", "libell_d_acheminement": "STUTZHEIM OFFENHEIM", "ligne_5": "OFFENHEIM", "nom_de_la_commune": "STUTZHEIM OFFENHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a65770d5129716dc4b97dd1671c31fbc997b33", "fields": {"nom_de_la_commune": "THAL MARMOUTIER", "libell_d_acheminement": "THAL MARMOUTIER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67489"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0303c4e50e5375d49f63137cf92753bb9bd0559b", "fields": {"nom_de_la_commune": "TRUCHTERSHEIM", "libell_d_acheminement": "TRUCHTERSHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67495"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3889f88e23bf99c0bc54ca0858e27f3fd543af3", "fields": {"code_postal": "67370", "code_commune_insee": "67495", "libell_d_acheminement": "TRUCHTERSHEIM", "ligne_5": "BEHLENHEIM", "nom_de_la_commune": "TRUCHTERSHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1332fa4876e8a10fd343c57c65bdeb673be0ca", "fields": {"nom_de_la_commune": "VENDENHEIM", "libell_d_acheminement": "VENDENHEIM", "code_postal": "67550", "coordonnees_gps": [48.6731828077, 7.72554052263], "code_commune_insee": "67506"}, "geometry": {"type": "Point", "coordinates": [7.72554052263, 48.6731828077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed6e24d11774934e484761d64fec824767c43155", "fields": {"nom_de_la_commune": "VOLKSBERG", "libell_d_acheminement": "VOLKSBERG", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67509"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93dbf2e1c26b239883dc46f38084cbf056226fce", "fields": {"nom_de_la_commune": "WAHLENHEIM", "libell_d_acheminement": "WAHLENHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67510"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6365e5ac90741abb732541be6dc3b17cee6b0f4", "fields": {"nom_de_la_commune": "WASSELONNE", "libell_d_acheminement": "WASSELONNE", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67520"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98d3b65ed4628b6c4b20cd52c90363ffcb07a599", "fields": {"nom_de_la_commune": "WEYERSHEIM", "libell_d_acheminement": "WEYERSHEIM", "code_postal": "67720", "coordonnees_gps": [48.7056122798, 7.80812947302], "code_commune_insee": "67529"}, "geometry": {"type": "Point", "coordinates": [7.80812947302, 48.7056122798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "634feda1b29c1df1b960fed1f9996bfd48ab94aa", "fields": {"code_postal": "67270", "code_commune_insee": "67530", "libell_d_acheminement": "WICKERSHEIM WILSHAUSEN", "ligne_5": "WILSHAUSEN", "nom_de_la_commune": "WICKERSHEIM WILSHAUSEN", "coordonnees_gps": [48.7485075734, 7.5652768188]}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c548c4744361d1e469604173e8737bf0b6fead0a", "fields": {"nom_de_la_commune": "WILDERSBACH", "libell_d_acheminement": "WILDERSBACH", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67531"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bb983091c43ad0cb04e46daed3fddf971d97f1", "fields": {"nom_de_la_commune": "WILLGOTTHEIM", "libell_d_acheminement": "WILLGOTTHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67532"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1d6f059a52dbc01c25324369bbb2b697e43dff1", "fields": {"nom_de_la_commune": "WILWISHEIM", "libell_d_acheminement": "WILWISHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67534"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41a671eeaa8dd23f265eca1dc3ef5f7c18541be9", "fields": {"code_postal": "67110", "code_commune_insee": "67536", "libell_d_acheminement": "WINDSTEIN", "ligne_5": "JAEGERTHAL", "nom_de_la_commune": "WINDSTEIN", "coordonnees_gps": [48.9564241197, 7.64420401079]}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad673973c7adbb3bdafebfd4fb4bf11e268b1e40", "fields": {"code_postal": "67160", "code_commune_insee": "67544", "libell_d_acheminement": "WISSEMBOURG", "ligne_5": "ALTENSTADT", "nom_de_la_commune": "WISSEMBOURG", "coordonnees_gps": [48.9935225292, 7.97087755177]}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ae2db1270b834dd70686df691882e0d0cba355c", "fields": {"nom_de_la_commune": "WOERTH", "libell_d_acheminement": "WOERTH", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67550"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aefc9b0ce6de89e32e1eed1583627fe61b41ab4", "fields": {"nom_de_la_commune": "WOLFISHEIM", "libell_d_acheminement": "WOLFISHEIM", "code_postal": "67202", "coordonnees_gps": [48.5874318667, 7.66423179027], "code_commune_insee": "67551"}, "geometry": {"type": "Point", "coordinates": [7.66423179027, 48.5874318667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b08a8a32cf1850d345b7ece94ca21140350e22", "fields": {"nom_de_la_commune": "WOLSCHHEIM", "libell_d_acheminement": "WOLSCHHEIM", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67553"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d2c8d4a075303a2ed1b06e9d32a09f2ebe8a76", "fields": {"nom_de_la_commune": "ZINSWILLER", "libell_d_acheminement": "ZINSWILLER", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67558"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f634bfb8ab0e2c8d29a55ca62f6e5dab3e549625", "fields": {"code_postal": "68210", "code_commune_insee": "68018", "libell_d_acheminement": "BALSCHWILLER", "ligne_5": "UEBERKUMEN", "nom_de_la_commune": "BALSCHWILLER", "coordonnees_gps": [47.6465535695, 7.10668724533]}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cca19a856a1e57e85be8e20606c16a51f752c818", "fields": {"nom_de_la_commune": "BATTENHEIM", "libell_d_acheminement": "BATTENHEIM", "code_postal": "68390", "coordonnees_gps": [47.7997453022, 7.41007777982], "code_commune_insee": "68022"}, "geometry": {"type": "Point", "coordinates": [7.41007777982, 47.7997453022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "110a05b9a4fb52dd6d60edd94676a05251a009df", "fields": {"code_postal": "68126", "code_commune_insee": "68026", "libell_d_acheminement": "BENNWIHR MITTELWIHR", "ligne_5": "BENNWIHR GARE", "nom_de_la_commune": "BENNWIHR", "coordonnees_gps": [48.1390641361, 7.34074664228]}, "geometry": {"type": "Point", "coordinates": [7.34074664228, 48.1390641361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4b665978dfff5201fbc0f0f873c15ebe1184eb", "fields": {"nom_de_la_commune": "BETTLACH", "libell_d_acheminement": "BETTLACH", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68034"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f12064e5435f457b59a1abbb595a8eafa98bb1d", "fields": {"nom_de_la_commune": "BOURBACH LE HAUT", "libell_d_acheminement": "BOURBACH LE HAUT", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68046"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9dadadbd54a3da81d2de701bbcf4168f3cc165a", "fields": {"nom_de_la_commune": "BRUNSTATT DIDENHEIM", "libell_d_acheminement": "BRUNSTATT DIDENHEIM", "code_postal": "68350", "coordonnees_gps": [47.7154887071, 7.32709033441], "code_commune_insee": "68056"}, "geometry": {"type": "Point", "coordinates": [7.32709033441, 47.7154887071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6de5efd9c4b366a27925c1afa75641756b0a7a", "fields": {"nom_de_la_commune": "DIETWILLER", "libell_d_acheminement": "DIETWILLER", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68072"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad5f11292c110f2becdc7515184254b90e22a56d", "fields": {"nom_de_la_commune": "DOLLEREN", "libell_d_acheminement": "DOLLEREN", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68073"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dea79fb22426b0b6f0f396f88959bfe8a857401b", "fields": {"nom_de_la_commune": "EGLINGEN", "libell_d_acheminement": "EGLINGEN", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68077"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "563f76f915101d1bc65dca53eab41daf8bfae9f8", "fields": {"nom_de_la_commune": "ESCHBACH AU VAL", "libell_d_acheminement": "ESCHBACH AU VAL", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68083"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a92bb3936d9a298ded64ff52f5efa1201f523c0b", "fields": {"nom_de_la_commune": "FELDBACH", "libell_d_acheminement": "FELDBACH", "code_postal": "68640", "coordonnees_gps": [47.5439826681, 7.33909806987], "code_commune_insee": "68087"}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1942282a88c90ffd0541ddac90c4e71ca3034d5d", "fields": {"nom_de_la_commune": "FELLERING", "libell_d_acheminement": "FELLERING", "code_postal": "68470", "coordonnees_gps": [47.8911637424, 6.97731625336], "code_commune_insee": "68089"}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f09c57d4ccb5508ba2e652944133292a665f4b", "fields": {"nom_de_la_commune": "FRIESEN", "libell_d_acheminement": "FRIESEN", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68098"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df6d2d9562a5fc4c53c9a62d254d4cd241f75479", "fields": {"nom_de_la_commune": "FULLEREN", "libell_d_acheminement": "FULLEREN", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68100"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "926c33f24a5e0e85604670793f7080605546e825", "fields": {"nom_de_la_commune": "GILDWILLER", "libell_d_acheminement": "GILDWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68105"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb8af513139c3316d43f4d1fd0aa5bec1db795e2", "fields": {"nom_de_la_commune": "GUEBERSCHWIHR", "libell_d_acheminement": "GUEBERSCHWIHR", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68111"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "886a1230613df726823c60d910a6022fe893e592", "fields": {"nom_de_la_commune": "GUEWENHEIM", "libell_d_acheminement": "GUEWENHEIM", "code_postal": "68116", "coordonnees_gps": [47.7496633187, 7.09103107073], "code_commune_insee": "68115"}, "geometry": {"type": "Point", "coordinates": [7.09103107073, 47.7496633187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a389933d958edddd92a96c4d07676cdac630589e", "fields": {"nom_de_la_commune": "GUNSBACH", "libell_d_acheminement": "GUNSBACH", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68117"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b66c8b71600db81c7e686ff9905caf08d14fcba", "fields": {"nom_de_la_commune": "HAGENTHAL LE BAS", "libell_d_acheminement": "HAGENTHAL LE BAS", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68120"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97db0fe595ab3d1bd2e0c61677700c8c8ae68edc", "fields": {"nom_de_la_commune": "HARTMANNSWILLER", "libell_d_acheminement": "HARTMANNSWILLER", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68122"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd61b035157081b465accb4c4671cbff315f61fb", "fields": {"nom_de_la_commune": "HEIMERSDORF", "libell_d_acheminement": "HEIMERSDORF", "code_postal": "68560", "coordonnees_gps": [47.5764862918, 7.25411571826], "code_commune_insee": "68128"}, "geometry": {"type": "Point", "coordinates": [7.25411571826, 47.5764862918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ec7748273e1eac93e6a23c4d2d506f4c8719314", "fields": {"nom_de_la_commune": "HETTENSCHLAG", "libell_d_acheminement": "HETTENSCHLAG", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68136"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00235acad284cb13331d8f359c6b670a02e8bf07", "fields": {"nom_de_la_commune": "HUSSEREN LES CHATEAUX", "libell_d_acheminement": "HUSSEREN LES CHATEAUX", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68150"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d187e7e7fff9e33b34a3452a5d8c52b70b2c1fda", "fields": {"nom_de_la_commune": "ILLFURTH", "libell_d_acheminement": "ILLFURTH", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68152"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc1570809c3a39dcda150b0a66c345fe05aad0a", "fields": {"nom_de_la_commune": "ILLZACH", "libell_d_acheminement": "ILLZACH", "code_postal": "68110", "coordonnees_gps": [47.773734571, 7.35942151957], "code_commune_insee": "68154"}, "geometry": {"type": "Point", "coordinates": [7.35942151957, 47.773734571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe87582d9cca09ff24f3382f8da674203725489b", "fields": {"code_postal": "68110", "code_commune_insee": "68154", "libell_d_acheminement": "ILLZACH", "ligne_5": "MODENHEIM", "nom_de_la_commune": "ILLZACH", "coordonnees_gps": [47.773734571, 7.35942151957]}, "geometry": {"type": "Point", "coordinates": [7.35942151957, 47.773734571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5f10056e8491596bf35ccf0e39e14929604e4d", "fields": {"nom_de_la_commune": "JETTINGEN", "libell_d_acheminement": "JETTINGEN", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68158"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "758a8e526bc099ca3b944ddd7dbc2bac1d05aead", "fields": {"nom_de_la_commune": "KATZENTHAL", "libell_d_acheminement": "KATZENTHAL", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68161"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d09e1a2085a55714c116efe50e7c4c60a75ecf0", "fields": {"code_postal": "68240", "code_commune_insee": "68162", "libell_d_acheminement": "KAYSERSBERG VIGNOBLE", "ligne_5": "KIENTZHEIM", "nom_de_la_commune": "KAYSERSBERG VIGNOBLE", "coordonnees_gps": [48.1678355817, 7.21603176483]}, "geometry": {"type": "Point", "coordinates": [7.21603176483, 48.1678355817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea028544ae1104db83e9a4e09c1d5cbfc33ae56", "fields": {"nom_de_la_commune": "KEMBS", "libell_d_acheminement": "KEMBS", "code_postal": "68680", "coordonnees_gps": [47.692052435, 7.4996914336], "code_commune_insee": "68163"}, "geometry": {"type": "Point", "coordinates": [7.4996914336, 47.692052435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a031975023b70675f0c0b5867b9e7eb353a44d", "fields": {"nom_de_la_commune": "KINGERSHEIM", "libell_d_acheminement": "KINGERSHEIM", "code_postal": "68260", "coordonnees_gps": [47.7894503648, 7.32186890284], "code_commune_insee": "68166"}, "geometry": {"type": "Point", "coordinates": [7.32186890284, 47.7894503648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb2c9d36c9b9b965d3efe4423fe3a6bfa245ad8", "fields": {"nom_de_la_commune": "LAPOUTROIE", "libell_d_acheminement": "LAPOUTROIE", "code_postal": "68650", "coordonnees_gps": [48.1617407345, 7.12836272368], "code_commune_insee": "68175"}, "geometry": {"type": "Point", "coordinates": [7.12836272368, 48.1617407345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95a208696124d5c42a391135764f492f16f1fb60", "fields": {"nom_de_la_commune": "LAUTENBACH", "libell_d_acheminement": "LAUTENBACH", "code_postal": "68610", "coordonnees_gps": [47.9413913563, 7.11100776725], "code_commune_insee": "68177"}, "geometry": {"type": "Point", "coordinates": [7.11100776725, 47.9413913563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "994c7c1a9038752458bb2794b7e2eeccf5e735aa", "fields": {"code_postal": "68610", "code_commune_insee": "68177", "libell_d_acheminement": "LAUTENBACH", "ligne_5": "SCHWEIGHOUSE", "nom_de_la_commune": "LAUTENBACH", "coordonnees_gps": [47.9413913563, 7.11100776725]}, "geometry": {"type": "Point", "coordinates": [7.11100776725, 47.9413913563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdc93e25cb0df5e7f1dd07ba669e8d00251cda62", "fields": {"nom_de_la_commune": "LUEMSCHWILLER", "libell_d_acheminement": "LUEMSCHWILLER", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68191"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed46050fa1ca66634871552e71c5d2969c2d2e6", "fields": {"nom_de_la_commune": "LUTTERBACH", "libell_d_acheminement": "LUTTERBACH", "code_postal": "68460", "coordonnees_gps": [47.7609352358, 7.27225594013], "code_commune_insee": "68195"}, "geometry": {"type": "Point", "coordinates": [7.27225594013, 47.7609352358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a241232f3e5c1242ebc8c233af01ab48f6e5c8", "fields": {"nom_de_la_commune": "MERTZEN", "libell_d_acheminement": "MERTZEN", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68202"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de71e221c7a27824246fba2ce26033b9a677ac5d", "fields": {"nom_de_la_commune": "MERXHEIM", "libell_d_acheminement": "MERXHEIM", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68203"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f67eb1526f3efdb76865b25336241b1b7db76b44", "fields": {"nom_de_la_commune": "MICHELBACH LE BAS", "libell_d_acheminement": "MICHELBACH LE BAS", "code_postal": "68730", "coordonnees_gps": [47.5988584111, 7.47970961294], "code_commune_insee": "68207"}, "geometry": {"type": "Point", "coordinates": [7.47970961294, 47.5988584111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afa9eadb57ce6e543d70a355b705de12517513b8", "fields": {"nom_de_la_commune": "MOOSCH", "libell_d_acheminement": "MOOSCH", "code_postal": "68690", "coordonnees_gps": [47.8604403288, 7.04290512633], "code_commune_insee": "68217"}, "geometry": {"type": "Point", "coordinates": [7.04290512633, 47.8604403288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5facb1cbb3c400824db28fba6c8df6bc1c29bc04", "fields": {"code_postal": "68780", "code_commune_insee": "68219", "libell_d_acheminement": "LE HAUT SOULTZBACH", "ligne_5": "MORTZWILLER", "nom_de_la_commune": "LE HAUT SOULTZBACH", "coordonnees_gps": [47.7234740275, 7.06962991753]}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8392a02797d5618eb9975e487cbb5633d214283", "fields": {"nom_de_la_commune": "MUESPACH LE HAUT", "libell_d_acheminement": "MUESPACH LE HAUT", "code_postal": "68640", "coordonnees_gps": [47.5439826681, 7.33909806987], "code_commune_insee": "68222"}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8463a4a5cecc71542f404b2ef2e1fde97bc0636", "fields": {"code_postal": "68200", "code_commune_insee": "68224", "libell_d_acheminement": "MULHOUSE", "ligne_5": "BOURTZWILLER", "nom_de_la_commune": "MULHOUSE", "coordonnees_gps": [47.7494423807, 7.32540160105]}, "geometry": {"type": "Point", "coordinates": [7.32540160105, 47.7494423807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9855bb8d2b0930a86177f4eba460b311cf470b2b", "fields": {"nom_de_la_commune": "MUNSTER", "libell_d_acheminement": "MUNSTER", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68226"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8179e131d4dd06ff694ad0fe1bfb861d0e4237d9", "fields": {"nom_de_la_commune": "ST JEAN PIERRE FIXTE", "libell_d_acheminement": "ST JEAN PIERRE FIXTE", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28342"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80ee01840f30d6dfb190e5212bc2590ccbf545f", "fields": {"nom_de_la_commune": "ST LAURENT LA GATINE", "libell_d_acheminement": "ST LAURENT LA GATINE", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28343"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79d38f119566981affba8aeecbf11c9c24c7fad", "fields": {"nom_de_la_commune": "ST LEGER DES AUBEES", "libell_d_acheminement": "ST LEGER DES AUBEES", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28344"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf0889e6e05cbb2bd2749a3f43ff260c064c2a1", "fields": {"nom_de_la_commune": "ST LUCIEN", "libell_d_acheminement": "ST LUCIEN", "code_postal": "28210", "coordonnees_gps": [48.6496934928, 1.50829757585], "code_commune_insee": "28349"}, "geometry": {"type": "Point", "coordinates": [1.50829757585, 48.6496934928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f1db218e7994bd562b15e6db5de2bab2d86c94", "fields": {"nom_de_la_commune": "ST LUPERCE", "libell_d_acheminement": "ST LUPERCE", "code_postal": "28190", "coordonnees_gps": [48.4570416765, 1.23084818739], "code_commune_insee": "28350"}, "geometry": {"type": "Point", "coordinates": [1.23084818739, 48.4570416765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f84a246def7850c3a7415522a9432305bb6f913", "fields": {"nom_de_la_commune": "ST PELLERIN", "libell_d_acheminement": "ST PELLERIN", "code_postal": "28290", "coordonnees_gps": [48.1141718404, 1.11818420399], "code_commune_insee": "28356"}, "geometry": {"type": "Point", "coordinates": [1.11818420399, 48.1141718404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c6bf746eaf5915896d4df826b5c2eedd7161692", "fields": {"nom_de_la_commune": "ST REMY SUR AVRE", "libell_d_acheminement": "ST REMY SUR AVRE", "code_postal": "28380", "coordonnees_gps": [48.7492338701, 1.23741165273], "code_commune_insee": "28359"}, "geometry": {"type": "Point", "coordinates": [1.23741165273, 48.7492338701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b7cc29c112ef9056a1a75788fe60ca7afed267", "fields": {"nom_de_la_commune": "ST SAUVEUR MARVILLE", "libell_d_acheminement": "ST SAUVEUR MARVILLE", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28360"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c738814ce0a235382245c84f304cbf4472f3975", "fields": {"nom_de_la_commune": "SANTEUIL", "libell_d_acheminement": "SANTEUIL", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28366"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676b4dbf774b08f71159741ec35fbc357fae8079", "fields": {"nom_de_la_commune": "SAUMERAY", "libell_d_acheminement": "SAUMERAY", "code_postal": "28800", "coordonnees_gps": [48.200387276, 1.43363510585], "code_commune_insee": "28370"}, "geometry": {"type": "Point", "coordinates": [1.43363510585, 48.200387276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcff4e9bd54a5772153430761be93b9eff1f2ea0", "fields": {"code_postal": "28250", "code_commune_insee": "28373", "libell_d_acheminement": "SENONCHES", "ligne_5": "LA VILLE AUX NONAINS", "nom_de_la_commune": "SENONCHES", "coordonnees_gps": [48.5729617229, 1.05761026517]}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d963642005faba842e650c254e6e1b377605de", "fields": {"code_postal": "28250", "code_commune_insee": "28373", "libell_d_acheminement": "SENONCHES", "ligne_5": "TARDAIS", "nom_de_la_commune": "SENONCHES", "coordonnees_gps": [48.5729617229, 1.05761026517]}, "geometry": {"type": "Point", "coordinates": [1.05761026517, 48.5729617229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a037c709e59f6cef1ee6dce63c9ec0a50e6268c", "fields": {"nom_de_la_commune": "SERVILLE", "libell_d_acheminement": "SERVILLE", "code_postal": "28410", "coordonnees_gps": [48.777838041, 1.50962562015], "code_commune_insee": "28375"}, "geometry": {"type": "Point", "coordinates": [1.50962562015, 48.777838041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00f3dd30186a7e9159dd33e428afa9f3a2e8c274", "fields": {"nom_de_la_commune": "SOIZE", "libell_d_acheminement": "SOIZE", "code_postal": "28330", "coordonnees_gps": [48.1791864594, 0.910134574853], "code_commune_insee": "28376"}, "geometry": {"type": "Point", "coordinates": [0.910134574853, 48.1791864594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684b80e5027f70e970dd1ea0081568e8dc2057fa", "fields": {"nom_de_la_commune": "TREMBLAY LES VILLAGES", "libell_d_acheminement": "TREMBLAY LES VILLAGES", "code_postal": "28170", "coordonnees_gps": [48.596791849, 1.26938526327], "code_commune_insee": "28393"}, "geometry": {"type": "Point", "coordinates": [1.26938526327, 48.596791849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d96f13709226ccdb50ffe3969a2e16d2f36ff2d6", "fields": {"nom_de_la_commune": "TRIZAY COUTRETOT ST SERGE", "libell_d_acheminement": "TRIZAY COUTRETOT ST SERGE", "code_postal": "28400", "coordonnees_gps": [48.316276782, 0.876002889595], "code_commune_insee": "28395"}, "geometry": {"type": "Point", "coordinates": [0.876002889595, 48.316276782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b923460d91fc7108e5d766d92459e68948f80e6f", "fields": {"code_postal": "28140", "code_commune_insee": "28406", "libell_d_acheminement": "EOLE EN BEAUCE", "ligne_5": "GERMIGNONVILLE", "nom_de_la_commune": "EOLE EN BEAUCE", "coordonnees_gps": [48.126624104, 1.68210405162]}, "geometry": {"type": "Point", "coordinates": [1.68210405162, 48.126624104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd017dd8a82ef081f1184cc118b88c850b172c59", "fields": {"code_postal": "28150", "code_commune_insee": "28406", "libell_d_acheminement": "EOLE EN BEAUCE", "ligne_5": "BAIGNOLET", "nom_de_la_commune": "EOLE EN BEAUCE", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7435e1205db201f9f3dbc648d276096c3913634b", "fields": {"code_postal": "28150", "code_commune_insee": "28406", "libell_d_acheminement": "EOLE EN BEAUCE", "ligne_5": "FAINS LA FOLIE", "nom_de_la_commune": "EOLE EN BEAUCE", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bc2e4eafd7a22bb25531689777d46647e4c1295", "fields": {"nom_de_la_commune": "VIERVILLE", "libell_d_acheminement": "VIERVILLE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28408"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e40e1e3007aa8b7185b33879178bf7e760d878", "fields": {"nom_de_la_commune": "VIEUVICQ", "libell_d_acheminement": "VIEUVICQ", "code_postal": "28120", "coordonnees_gps": [48.327660263, 1.25815968368], "code_commune_insee": "28409"}, "geometry": {"type": "Point", "coordinates": [1.25815968368, 48.327660263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d7cec5836eefc2218cd527eee818cb2f40ba30", "fields": {"nom_de_la_commune": "VILLAMPUY", "libell_d_acheminement": "VILLAMPUY", "code_postal": "28200", "coordonnees_gps": [48.0750607367, 1.3674487976], "code_commune_insee": "28410"}, "geometry": {"type": "Point", "coordinates": [1.3674487976, 48.0750607367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e55851f8cd5087c2f615d2308072bdf96bde0848", "fields": {"nom_de_la_commune": "VILLEAU", "libell_d_acheminement": "VILLEAU", "code_postal": "28150", "coordonnees_gps": [48.2899711985, 1.68359486694], "code_commune_insee": "28412"}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b573e6cebdfeaafc596c9e23e8dd6b7ee76f2d", "fields": {"nom_de_la_commune": "VILLIERS LE MORHIER", "libell_d_acheminement": "VILLIERS LE MORHIER", "code_postal": "28130", "coordonnees_gps": [48.5762358291, 1.58416932741], "code_commune_insee": "28417"}, "geometry": {"type": "Point", "coordinates": [1.58416932741, 48.5762358291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb41d813a5c170eaf94e2ec75c00e3da9473d22", "fields": {"nom_de_la_commune": "VOISE", "libell_d_acheminement": "VOISE", "code_postal": "28700", "coordonnees_gps": [48.4174133692, 1.78775113893], "code_commune_insee": "28421"}, "geometry": {"type": "Point", "coordinates": [1.78775113893, 48.4174133692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aa56af34458733cd113e7ea9fe29a27cf7e3f6a", "fields": {"code_postal": "28150", "code_commune_insee": "28422", "libell_d_acheminement": "LES VILLAGES VOVEENS", "ligne_5": "MONTAINVILLE", "nom_de_la_commune": "LES VILLAGES VOVEENS", "coordonnees_gps": [48.2899711985, 1.68359486694]}, "geometry": {"type": "Point", "coordinates": [1.68359486694, 48.2899711985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e312a9d1d1a11a17db5ffa8af53525aff104466", "fields": {"nom_de_la_commune": "ARGOL", "libell_d_acheminement": "ARGOL", "code_postal": "29560", "coordonnees_gps": [48.2479935749, -4.31271696117], "code_commune_insee": "29001"}, "geometry": {"type": "Point", "coordinates": [-4.31271696117, 48.2479935749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "371771786ed606afa9ce67ffd1d1424896ee0060", "fields": {"nom_de_la_commune": "BENODET", "libell_d_acheminement": "BENODET", "code_postal": "29950", "coordonnees_gps": [47.9011430985, -4.09292071146], "code_commune_insee": "29006"}, "geometry": {"type": "Point", "coordinates": [-4.09292071146, 47.9011430985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3ad817c17a9a0b8e9ad154c1852407fba77dfe", "fields": {"nom_de_la_commune": "BOURG BLANC", "libell_d_acheminement": "BOURG BLANC", "code_postal": "29860", "coordonnees_gps": [48.5072852164, -4.44045299523], "code_commune_insee": "29015"}, "geometry": {"type": "Point", "coordinates": [-4.44045299523, 48.5072852164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33d3a1af3d867ffe2f0682fd6cdac373cd19efa6", "fields": {"nom_de_la_commune": "BRIGNOGAN PLAGE", "libell_d_acheminement": "BRIGNOGAN PLAGE", "code_postal": "29890", "coordonnees_gps": [48.6454148535, -4.34605621713], "code_commune_insee": "29021"}, "geometry": {"type": "Point", "coordinates": [-4.34605621713, 48.6454148535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5266fc0b2be4a0ca9ed797742e990a555cd57c", "fields": {"nom_de_la_commune": "CARANTEC", "libell_d_acheminement": "CARANTEC", "code_postal": "29660", "coordonnees_gps": [48.6546757356, -3.91403159766], "code_commune_insee": "29023"}, "geometry": {"type": "Point", "coordinates": [-3.91403159766, 48.6546757356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c60c245da2a714a9d5c5013c519c1651b73749", "fields": {"nom_de_la_commune": "CLOHARS FOUESNANT", "libell_d_acheminement": "CLOHARS FOUESNANT", "code_postal": "29950", "coordonnees_gps": [47.9011430985, -4.09292071146], "code_commune_insee": "29032"}, "geometry": {"type": "Point", "coordinates": [-4.09292071146, 47.9011430985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2575d89cfd5002d67e193ac3611d986aef6d09ff", "fields": {"nom_de_la_commune": "COMBRIT", "libell_d_acheminement": "COMBRIT", "code_postal": "29120", "coordonnees_gps": [47.8679473907, -4.24180509959], "code_commune_insee": "29037"}, "geometry": {"type": "Point", "coordinates": [-4.24180509959, 47.8679473907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b19f8f754e655a738f67fc0d36ea98fef5954a9", "fields": {"nom_de_la_commune": "DAOULAS", "libell_d_acheminement": "DAOULAS", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29043"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d165f9391a12e4e2e44d9b57ed7d5b873ddd52bc", "fields": {"nom_de_la_commune": "LE DRENNEC", "libell_d_acheminement": "LE DRENNEC", "code_postal": "29860", "coordonnees_gps": [48.5072852164, -4.44045299523], "code_commune_insee": "29047"}, "geometry": {"type": "Point", "coordinates": [-4.44045299523, 48.5072852164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b77be77fa97b2a6c015da904383f2a64da807f", "fields": {"nom_de_la_commune": "ERGUE GABERIC", "libell_d_acheminement": "ERGUE GABERIC", "code_postal": "29500", "coordonnees_gps": [48.0121324679, -4.00796418885], "code_commune_insee": "29051"}, "geometry": {"type": "Point", "coordinates": [-4.00796418885, 48.0121324679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b86045eb1541b6ab707c6ba51a8b76e08a3abf3", "fields": {"nom_de_la_commune": "LA FORET FOUESNANT", "libell_d_acheminement": "LA FORET FOUESNANT", "code_postal": "29940", "coordonnees_gps": [47.9209192878, -3.96779654051], "code_commune_insee": "29057"}, "geometry": {"type": "Point", "coordinates": [-3.96779654051, 47.9209192878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d2ac219e4f48157cc9a7d75cb4896ff9574fb2", "fields": {"nom_de_la_commune": "GOULVEN", "libell_d_acheminement": "GOULVEN", "code_postal": "29890", "coordonnees_gps": [48.6454148535, -4.34605621713], "code_commune_insee": "29064"}, "geometry": {"type": "Point", "coordinates": [-4.34605621713, 48.6454148535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f88e4ab8a03a1bacb228891a93a6f247cfdf83", "fields": {"nom_de_la_commune": "GUENGAT", "libell_d_acheminement": "GUENGAT", "code_postal": "29180", "coordonnees_gps": [48.0793827712, -4.16636878922], "code_commune_insee": "29066"}, "geometry": {"type": "Point", "coordinates": [-4.16636878922, 48.0793827712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54e298e32588424830a786d1cb5b77dd951cd7e", "fields": {"nom_de_la_commune": "GUICLAN", "libell_d_acheminement": "GUICLAN", "code_postal": "29410", "coordonnees_gps": [48.4944200655, -3.89854217], "code_commune_insee": "29068"}, "geometry": {"type": "Point", "coordinates": [-3.89854217, 48.4944200655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed41dd1952860f88ab230ec031df1c1b3702eb65", "fields": {"nom_de_la_commune": "GUILLIGOMARC H", "libell_d_acheminement": "GUILLIGOMARC H", "code_postal": "29300", "coordonnees_gps": [47.8873949652, -3.50770502576], "code_commune_insee": "29071"}, "geometry": {"type": "Point", "coordinates": [-3.50770502576, 47.8873949652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f8fde5033274537c0f4a84020c539cbae01d83e", "fields": {"nom_de_la_commune": "GUIPAVAS", "libell_d_acheminement": "GUIPAVAS", "code_postal": "29490", "coordonnees_gps": [48.4303731707, -4.39660494341], "code_commune_insee": "29075"}, "geometry": {"type": "Point", "coordinates": [-4.39660494341, 48.4303731707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8785925f28e126ebb20982f56a0de90449d2a19", "fields": {"nom_de_la_commune": "HOPITAL CAMFROUT", "libell_d_acheminement": "L HOPITAL CAMFROUT", "code_postal": "29460", "coordonnees_gps": [48.3533859452, -4.19810642706], "code_commune_insee": "29080"}, "geometry": {"type": "Point", "coordinates": [-4.19810642706, 48.3533859452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "993ecd6349091729c3ffc48a495802714cb6a2e7", "fields": {"nom_de_la_commune": "ILE MOLENE", "libell_d_acheminement": "ILE MOLENE", "code_postal": "29259", "coordonnees_gps": [48.3953471284, -4.96008472882], "code_commune_insee": "29084"}, "geometry": {"type": "Point", "coordinates": [-4.96008472882, 48.3953471284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc3c48382791646e0b8748432a2fbd3a4cd63bef", "fields": {"nom_de_la_commune": "KERNILIS", "libell_d_acheminement": "KERNILIS", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29093"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f2cc0e6573abcc67a67fcf91b7281fe208653c", "fields": {"nom_de_la_commune": "LANDEDA", "libell_d_acheminement": "LANDEDA", "code_postal": "29870", "coordonnees_gps": [48.5578339908, -4.54140590584], "code_commune_insee": "29101"}, "geometry": {"type": "Point", "coordinates": [-4.54140590584, 48.5578339908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed415928cd62d9c9be372c698f7f8309f86f712", "fields": {"nom_de_la_commune": "LANDUDEC", "libell_d_acheminement": "LANDUDEC", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29108"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49f4d3b00419c3f57f60a81becd63c4cbe90afc", "fields": {"nom_de_la_commune": "LANILDUT", "libell_d_acheminement": "LANILDUT", "code_postal": "29840", "coordonnees_gps": [48.5120330691, -4.73920454797], "code_commune_insee": "29112"}, "geometry": {"type": "Point", "coordinates": [-4.73920454797, 48.5120330691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f026c2b9e5770d7d49845b2b4d2da3bf9ff099", "fields": {"nom_de_la_commune": "LANNEUFFRET", "libell_d_acheminement": "LANNEUFFRET", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29116"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7418cf5e270666ddfca61493b6e01fc64a94e46", "fields": {"nom_de_la_commune": "LANVEOC", "libell_d_acheminement": "LANVEOC", "code_postal": "29160", "coordonnees_gps": [48.2509456374, -4.48250403015], "code_commune_insee": "29120"}, "geometry": {"type": "Point", "coordinates": [-4.48250403015, 48.2509456374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5883849217193e7dbb095a19b6b0634c7fc23fc4", "fields": {"nom_de_la_commune": "LOC BREVALAIRE", "libell_d_acheminement": "LOC BREVALAIRE", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29126"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "747a46b3ae5507a5f051bf55fdf34dde3a6a00df", "fields": {"nom_de_la_commune": "LOCMARIA BERRIEN", "libell_d_acheminement": "LOCMARIA BERRIEN", "code_postal": "29690", "coordonnees_gps": [48.371179439, -3.78833923671], "code_commune_insee": "29129"}, "geometry": {"type": "Point", "coordinates": [-3.78833923671, 48.371179439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53844a75afffff5978d669b34c6450388089f443", "fields": {"nom_de_la_commune": "CONFORT MEILARS", "libell_d_acheminement": "CONFORT MEILARS", "code_postal": "29790", "coordonnees_gps": [48.0541879472, -4.46870916199], "code_commune_insee": "29145"}, "geometry": {"type": "Point", "coordinates": [-4.46870916199, 48.0541879472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "640cda0ec5061c832fcb9e9124aebbdbabb86b4d", "fields": {"nom_de_la_commune": "MELGVEN", "libell_d_acheminement": "MELGVEN", "code_postal": "29140", "coordonnees_gps": [47.9522669314, -3.84121638089], "code_commune_insee": "29146"}, "geometry": {"type": "Point", "coordinates": [-3.84121638089, 47.9522669314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8d90b24f1aaed93fa129c3a60be6857d7c9be96", "fields": {"nom_de_la_commune": "PENCRAN", "libell_d_acheminement": "PENCRAN", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29156"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cabf6429f80bc4203a3a1bd5a1254dd561412d6", "fields": {"nom_de_la_commune": "PLEYBER CHRIST", "libell_d_acheminement": "PLEYBER CHRIST", "code_postal": "29410", "coordonnees_gps": [48.4944200655, -3.89854217], "code_commune_insee": "29163"}, "geometry": {"type": "Point", "coordinates": [-3.89854217, 48.4944200655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e5ccbbff9974508386bd72ec885e633d2dc6804", "fields": {"nom_de_la_commune": "PLOGONNEC", "libell_d_acheminement": "PLOGONNEC", "code_postal": "29180", "coordonnees_gps": [48.0793827712, -4.16636878922], "code_commune_insee": "29169"}, "geometry": {"type": "Point", "coordinates": [-4.16636878922, 48.0793827712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "219c6f942443afa4d8b3246c8d1af659d75cb010", "fields": {"nom_de_la_commune": "PLONEIS", "libell_d_acheminement": "PLONEIS", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29173"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5284933c6957e3421fe4f7221dc9ec64e61fad9a", "fields": {"nom_de_la_commune": "PLOUDALMEZEAU", "libell_d_acheminement": "PLOUDALMEZEAU", "code_postal": "29830", "coordonnees_gps": [48.5288495464, -4.64332809681], "code_commune_insee": "29178"}, "geometry": {"type": "Point", "coordinates": [-4.64332809681, 48.5288495464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbf623d7fe6e0cfba9cfef581c74f51385ce5343", "fields": {"code_postal": "29830", "code_commune_insee": "29178", "libell_d_acheminement": "PLOUDALMEZEAU", "ligne_5": "PORTSALL", "nom_de_la_commune": "PLOUDALMEZEAU", "coordonnees_gps": [48.5288495464, -4.64332809681]}, "geometry": {"type": "Point", "coordinates": [-4.64332809681, 48.5288495464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b38748eb80c48e8680f2ac56f30987e759be00", "fields": {"nom_de_la_commune": "PLOUGASTEL DAOULAS", "libell_d_acheminement": "PLOUGASTEL DAOULAS", "code_postal": "29470", "coordonnees_gps": [48.3674331518, -4.36175367065], "code_commune_insee": "29189"}, "geometry": {"type": "Point", "coordinates": [-4.36175367065, 48.3674331518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a2b72b85fb87f072990a449570862d6137f568", "fields": {"nom_de_la_commune": "PLOUGOURVEST", "libell_d_acheminement": "PLOUGOURVEST", "code_postal": "29400", "coordonnees_gps": [48.4991644596, -4.09313587809], "code_commune_insee": "29193"}, "geometry": {"type": "Point", "coordinates": [-4.09313587809, 48.4991644596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d9fcd2f00dda367e64165649ac8955895fc86da", "fields": {"nom_de_la_commune": "PLOUGUERNEAU", "libell_d_acheminement": "PLOUGUERNEAU", "code_postal": "29880", "coordonnees_gps": [48.6082093608, -4.46096917427], "code_commune_insee": "29195"}, "geometry": {"type": "Point", "coordinates": [-4.46096917427, 48.6082093608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1bd058ad538590654b14c9a6481b5f681f0d0ce", "fields": {"nom_de_la_commune": "PLOUIGNEAU", "libell_d_acheminement": "PLOUIGNEAU", "code_postal": "29610", "coordonnees_gps": [48.5789578669, -3.7146289967], "code_commune_insee": "29199"}, "geometry": {"type": "Point", "coordinates": [-3.7146289967, 48.5789578669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "939557740e19765d30cb8ba294e8a030e5e63674", "fields": {"nom_de_la_commune": "PLOUNEOUR TREZ", "libell_d_acheminement": "PLOUNEOUR TREZ", "code_postal": "29890", "coordonnees_gps": [48.6454148535, -4.34605621713], "code_commune_insee": "29203"}, "geometry": {"type": "Point", "coordinates": [-4.34605621713, 48.6454148535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0497aa0f74718581bebc8e463d7f00e9bf3e8fc", "fields": {"nom_de_la_commune": "PLOUVIEN", "libell_d_acheminement": "PLOUVIEN", "code_postal": "29860", "coordonnees_gps": [48.5072852164, -4.44045299523], "code_commune_insee": "29209"}, "geometry": {"type": "Point", "coordinates": [-4.44045299523, 48.5072852164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f62c04ba31e0fb8f7677f14c072664f10db93c57", "fields": {"nom_de_la_commune": "PLOVAN", "libell_d_acheminement": "PLOVAN", "code_postal": "29720", "coordonnees_gps": [47.9104464367, -4.30004549098], "code_commune_insee": "29214"}, "geometry": {"type": "Point", "coordinates": [-4.30004549098, 47.9104464367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4106cdd04b7a37fefa29a2b585b91955abaf576", "fields": {"nom_de_la_commune": "PLUGUFFAN", "libell_d_acheminement": "PLUGUFFAN", "code_postal": "29700", "coordonnees_gps": [47.9557228551, -4.17033368764], "code_commune_insee": "29216"}, "geometry": {"type": "Point", "coordinates": [-4.17033368764, 47.9557228551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77e042c8e9979ac5fe00dfc466ceee43d760d895", "fields": {"nom_de_la_commune": "LE PONTHOU", "libell_d_acheminement": "LE PONTHOU", "code_postal": "29650", "coordonnees_gps": [48.5310739903, -3.6118782406], "code_commune_insee": "29219"}, "geometry": {"type": "Point", "coordinates": [-3.6118782406, 48.5310739903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "611832ae513fc474cea7e47a102f92fa27b3d4cc", "fields": {"nom_de_la_commune": "PORT LAUNAY", "libell_d_acheminement": "PORT LAUNAY", "code_postal": "29150", "coordonnees_gps": [48.1891302996, -4.12434734749], "code_commune_insee": "29222"}, "geometry": {"type": "Point", "coordinates": [-4.12434734749, 48.1891302996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26fa2a6f43e5e123bc3a4d2b959d0d8cbf8ac0ae", "fields": {"nom_de_la_commune": "POULDREUZIC", "libell_d_acheminement": "POULDREUZIC", "code_postal": "29710", "coordonnees_gps": [47.9856225237, -4.31109257219], "code_commune_insee": "29225"}, "geometry": {"type": "Point", "coordinates": [-4.31109257219, 47.9856225237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15dcee43ec932f5ac7cd6cf5ee67d1c5080ac3b8", "fields": {"nom_de_la_commune": "QUEMENEVEN", "libell_d_acheminement": "QUEMENEVEN", "code_postal": "29180", "coordonnees_gps": [48.0793827712, -4.16636878922], "code_commune_insee": "29229"}, "geometry": {"type": "Point", "coordinates": [-4.16636878922, 48.0793827712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe4c772f92cd841b8af84af34acaac617e4d1e85", "fields": {"nom_de_la_commune": "ROSPORDEN", "libell_d_acheminement": "ROSPORDEN", "code_postal": "29140", "coordonnees_gps": [47.9522669314, -3.84121638089], "code_commune_insee": "29241"}, "geometry": {"type": "Point", "coordinates": [-3.84121638089, 47.9522669314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10a7c4273a72d5322f9245b5dafe03747ac52acd", "fields": {"code_postal": "29140", "code_commune_insee": "29241", "libell_d_acheminement": "ROSPORDEN", "ligne_5": "KERNEVEL", "nom_de_la_commune": "ROSPORDEN", "coordonnees_gps": [47.9522669314, -3.84121638089]}, "geometry": {"type": "Point", "coordinates": [-3.84121638089, 47.9522669314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f999deea8837a80b5ce3574233b8aea9bc4189", "fields": {"nom_de_la_commune": "ST COULITZ", "libell_d_acheminement": "ST COULITZ", "code_postal": "29150", "coordonnees_gps": [48.1891302996, -4.12434734749], "code_commune_insee": "29243"}, "geometry": {"type": "Point", "coordinates": [-4.12434734749, 48.1891302996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76010a7120be600e07778f136b10aeeada5f91ee", "fields": {"nom_de_la_commune": "ST EVARZEC", "libell_d_acheminement": "ST EVARZEC", "code_postal": "29170", "coordonnees_gps": [47.912618887, -4.02039306441], "code_commune_insee": "29247"}, "geometry": {"type": "Point", "coordinates": [-4.02039306441, 47.912618887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d463dbb922d6c50f477f24e02b5aeab26ac1e39", "fields": {"nom_de_la_commune": "ST HERNIN", "libell_d_acheminement": "ST HERNIN", "code_postal": "29270", "coordonnees_gps": [48.2542377474, -3.60710668308], "code_commune_insee": "29250"}, "geometry": {"type": "Point", "coordinates": [-3.60710668308, 48.2542377474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0997decdce37b4033200386c7df40519f6be1cc", "fields": {"nom_de_la_commune": "ST JEAN DU DOIGT", "libell_d_acheminement": "ST JEAN DU DOIGT", "code_postal": "29630", "coordonnees_gps": [48.6746083543, -3.7940474751], "code_commune_insee": "29251"}, "geometry": {"type": "Point", "coordinates": [-3.7940474751, 48.6746083543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96eb34beacf0012a1cda63f7dcc587802afd0ff4", "fields": {"nom_de_la_commune": "ST MEEN", "libell_d_acheminement": "ST MEEN", "code_postal": "29260", "coordonnees_gps": [48.561367931, -4.32357383593], "code_commune_insee": "29255"}, "geometry": {"type": "Point", "coordinates": [-4.32357383593, 48.561367931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f8b947f97a4de9e6e8ff54ee6986f2b20d95bf", "fields": {"nom_de_la_commune": "ST NIC", "libell_d_acheminement": "ST NIC", "code_postal": "29550", "coordonnees_gps": [48.1687142961, -4.23322522108], "code_commune_insee": "29256"}, "geometry": {"type": "Point", "coordinates": [-4.23322522108, 48.1687142961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643d9d32ad362ef2a73ce361cdc1fb0542a7dac9", "fields": {"nom_de_la_commune": "ST RIVOAL", "libell_d_acheminement": "ST RIVOAL", "code_postal": "29190", "coordonnees_gps": [48.2519856293, -3.95679953662], "code_commune_insee": "29261"}, "geometry": {"type": "Point", "coordinates": [-3.95679953662, 48.2519856293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc31a097a4fe550ec014ba075b035e163636fa99", "fields": {"nom_de_la_commune": "SIZUN", "libell_d_acheminement": "SIZUN", "code_postal": "29450", "coordonnees_gps": [48.3997146924, -4.03661538866], "code_commune_insee": "29277"}, "geometry": {"type": "Point", "coordinates": [-4.03661538866, 48.3997146924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff72ad03980d7bdd47853913e37aebac98b944d", "fields": {"nom_de_la_commune": "TREFFIAGAT", "libell_d_acheminement": "TREFFIAGAT", "code_postal": "29730", "coordonnees_gps": [47.80414483, -4.26610695], "code_commune_insee": "29284"}, "geometry": {"type": "Point", "coordinates": [-4.26610695, 47.80414483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f20eff56646408c8b985e92de0d0d112097137ba", "fields": {"nom_de_la_commune": "TREFLAOUENAN", "libell_d_acheminement": "TREFLAOUENAN", "code_postal": "29440", "coordonnees_gps": [48.5805315546, -4.12744185635], "code_commune_insee": "29285"}, "geometry": {"type": "Point", "coordinates": [-4.12744185635, 48.5805315546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62703e776d56da90c74fce45ee43ba9748d6b469", "fields": {"nom_de_la_commune": "TREFLEZ", "libell_d_acheminement": "TREFLEZ", "code_postal": "29430", "coordonnees_gps": [48.6194750242, -4.20707342526], "code_commune_insee": "29287"}, "geometry": {"type": "Point", "coordinates": [-4.20707342526, 48.6194750242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7805abe721ad14fea267f42c250eb293867474df", "fields": {"nom_de_la_commune": "TREGOUREZ", "libell_d_acheminement": "TREGOUREZ", "code_postal": "29970", "coordonnees_gps": [48.1055063701, -3.87100493419], "code_commune_insee": "29291"}, "geometry": {"type": "Point", "coordinates": [-3.87100493419, 48.1055063701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35b7c0e23f9e75afd9cbe21e638b7fda68bdd503", "fields": {"nom_de_la_commune": "TREGUENNEC", "libell_d_acheminement": "TREGUENNEC", "code_postal": "29720", "coordonnees_gps": [47.9104464367, -4.30004549098], "code_commune_insee": "29292"}, "geometry": {"type": "Point", "coordinates": [-4.30004549098, 47.9104464367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3744e0332c913af50d9bc6ab7a906f92d6a2fca4", "fields": {"nom_de_la_commune": "TREMAOUEZAN", "libell_d_acheminement": "TREMAOUEZAN", "code_postal": "29800", "coordonnees_gps": [48.4525706472, -4.22281449983], "code_commune_insee": "29295"}, "geometry": {"type": "Point", "coordinates": [-4.22281449983, 48.4525706472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67f5dfdf470ffdf38bccfa145829819b30ff9ec8", "fields": {"nom_de_la_commune": "ALES", "libell_d_acheminement": "ALES", "code_postal": "30100", "coordonnees_gps": [44.1254083661, 4.08875764258], "code_commune_insee": "30007"}, "geometry": {"type": "Point", "coordinates": [4.08875764258, 44.1254083661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a1990775e5f684fa448e2f6f61e1261553a550", "fields": {"nom_de_la_commune": "ANDUZE", "libell_d_acheminement": "ANDUZE", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30010"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1482d4c9af84c2bc11fa0d279f9bc59989e5a57", "fields": {"nom_de_la_commune": "ARGILLIERS", "libell_d_acheminement": "ARGILLIERS", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30013"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ea32f1c33cfbd78ffb3f805a1b1820bb3c7bc0", "fields": {"nom_de_la_commune": "ARPHY", "libell_d_acheminement": "ARPHY", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30015"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d5b59e23110cee960bc50717d7b36df716d9e28", "fields": {"nom_de_la_commune": "AUBORD", "libell_d_acheminement": "AUBORD", "code_postal": "30620", "coordonnees_gps": [43.7617443706, 4.28868094098], "code_commune_insee": "30020"}, "geometry": {"type": "Point", "coordinates": [4.28868094098, 43.7617443706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb44802b211769be80a324908e33c87d18197ff", "fields": {"nom_de_la_commune": "AUJAC", "libell_d_acheminement": "AUJAC", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30022"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1cf15df015b590ed142ed241b00a568480a42a", "fields": {"nom_de_la_commune": "AUMESSAS", "libell_d_acheminement": "AUMESSAS", "code_postal": "30770", "coordonnees_gps": [43.9504922652, 3.46315986765], "code_commune_insee": "30025"}, "geometry": {"type": "Point", "coordinates": [3.46315986765, 43.9504922652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "398888e24a8c4c3a2750ef3963ee6d8d2c75ba43", "fields": {"nom_de_la_commune": "AVEZE", "libell_d_acheminement": "AVEZE", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30026"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "955bf3043cb7405971e9284e712b91d5315bdb92", "fields": {"nom_de_la_commune": "BAGARD", "libell_d_acheminement": "BAGARD", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30027"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e05bdd41b7b79c1e7edc6d00d52cb59490849514", "fields": {"nom_de_la_commune": "BARON", "libell_d_acheminement": "BARON", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30030"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d3d7057967fa4ce4eab449e6c525f87476f96d", "fields": {"nom_de_la_commune": "BEAUCAIRE", "libell_d_acheminement": "BEAUCAIRE", "code_postal": "30300", "coordonnees_gps": [43.780193328, 4.58229884673], "code_commune_insee": "30032"}, "geometry": {"type": "Point", "coordinates": [4.58229884673, 43.780193328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7694cced4389ecdd3cc1194157997b5fa84c06e8", "fields": {"nom_de_la_commune": "BEAUVOISIN", "libell_d_acheminement": "BEAUVOISIN", "code_postal": "30640", "coordonnees_gps": [43.6958928961, 4.32221754971], "code_commune_insee": "30033"}, "geometry": {"type": "Point", "coordinates": [4.32221754971, 43.6958928961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c7d3522864369e59a0ce51313efd7396d0c8aca", "fields": {"nom_de_la_commune": "ECHIROLLES", "libell_d_acheminement": "ECHIROLLES", "code_postal": "38130", "coordonnees_gps": [45.1470306485, 5.71547524245], "code_commune_insee": "38151"}, "geometry": {"type": "Point", "coordinates": [5.71547524245, 45.1470306485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "098670ced621c49dba1584e7011b626a7aa6ac71", "fields": {"nom_de_la_commune": "ENTRAIGUES", "libell_d_acheminement": "ENTRAIGUES", "code_postal": "38740", "coordonnees_gps": [44.9085893261, 6.02132611132], "code_commune_insee": "38154"}, "geometry": {"type": "Point", "coordinates": [6.02132611132, 44.9085893261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa565ec3160496688d7b2c63d33ab126a1f87f96", "fields": {"nom_de_la_commune": "LA GARDE", "libell_d_acheminement": "LA GARDE", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38177"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064851771c3ba8d6f8e5812d556ac57f6f5d758c", "fields": {"nom_de_la_commune": "GILLONNAY", "libell_d_acheminement": "GILLONNAY", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38180"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b47acc7fcb11b85d85dcb0372859ccb82f6eaf6", "fields": {"nom_de_la_commune": "LE GRAND LEMPS", "libell_d_acheminement": "LE GRAND LEMPS", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38182"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ef8772a8e401625bd9542af04099340b32ebb2", "fields": {"nom_de_la_commune": "GRENOBLE", "libell_d_acheminement": "GRENOBLE", "code_postal": "38000", "coordonnees_gps": [45.182155682, 5.72079920349], "code_commune_insee": "38185"}, "geometry": {"type": "Point", "coordinates": [5.72079920349, 45.182155682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5942b766faaca2646824958afc6d0b1275b5cbcf", "fields": {"nom_de_la_commune": "HURTIERES", "libell_d_acheminement": "HURTIERES", "code_postal": "38570", "coordonnees_gps": [45.3269943353, 6.00916897234], "code_commune_insee": "38192"}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c32be04a827f1e2e455071130060513a0c137f62", "fields": {"nom_de_la_commune": "JARCIEU", "libell_d_acheminement": "JARCIEU", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38198"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb4f1b7dfd62af689d6c40eec548522581f3b5be", "fields": {"nom_de_la_commune": "JARDIN", "libell_d_acheminement": "JARDIN", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38199"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a83d61903ac67a08060203ae0bd008845e3d46", "fields": {"nom_de_la_commune": "JARRIE", "libell_d_acheminement": "JARRIE", "code_postal": "38560", "coordonnees_gps": [45.0939836913, 5.7392474721], "code_commune_insee": "38200"}, "geometry": {"type": "Point", "coordinates": [5.7392474721, 45.0939836913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92e35af56d20e22411ae08f2a85c40d3903cbc7e", "fields": {"nom_de_la_commune": "LEYRIEU", "libell_d_acheminement": "LEYRIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38210"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60d985721d8c1969e9e6f19604283281d2f99a5", "fields": {"code_postal": "38220", "code_commune_insee": "38212", "libell_d_acheminement": "LIVET ET GAVET", "ligne_5": "LIVET", "nom_de_la_commune": "LIVET ET GAVET", "coordonnees_gps": [45.0661676194, 5.84675560183]}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91906fefea1ab4fd298e082fc185013e20b7ac31", "fields": {"nom_de_la_commune": "MARCOLLIN", "libell_d_acheminement": "MARCOLLIN", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38219"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d467a4363f726adfe613c699b1fb1c64ab388511", "fields": {"nom_de_la_commune": "MARNANS", "libell_d_acheminement": "MARNANS", "code_postal": "38980", "coordonnees_gps": [45.3053476338, 5.21305858038], "code_commune_insee": "38221"}, "geometry": {"type": "Point", "coordinates": [5.21305858038, 45.3053476338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ce0a232047c4a41d56c887967770805e0dcdeb", "fields": {"nom_de_la_commune": "MAUBEC", "libell_d_acheminement": "MAUBEC", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38223"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb5113fe371c877a3c9fc2cb94e2b9511c71a3f", "fields": {"nom_de_la_commune": "MAYRES SAVEL", "libell_d_acheminement": "MAYRES SAVEL", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38224"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c65371fd7f2e0f056d9ff017594a6c9ca99fb45", "fields": {"code_postal": "38880", "code_commune_insee": "38225", "libell_d_acheminement": "AUTRANS MEAUDRE EN VERCORS", "ligne_5": "AUTRANS", "nom_de_la_commune": "AUTRANS MEAUDRE EN VERCORS", "coordonnees_gps": [45.1320619265, 5.52782413596]}, "geometry": {"type": "Point", "coordinates": [5.52782413596, 45.1320619265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4532dc9df70ce93fe3476fd2bee8a9f6e6d2b831", "fields": {"nom_de_la_commune": "MENS", "libell_d_acheminement": "MENS", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38226"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e885cca05007373c0677d11b0aa943286390b1", "fields": {"code_postal": "38710", "code_commune_insee": "38226", "libell_d_acheminement": "MENS", "ligne_5": "ST GENIS", "nom_de_la_commune": "MENS", "coordonnees_gps": [44.7990424398, 5.76552735745]}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a9140557be5d801516b1d60ac1652a686510a0f", "fields": {"nom_de_la_commune": "MEYRIE", "libell_d_acheminement": "MEYRIE", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38230"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf29c4de3b6a340495addb3ab9920310f718e18d", "fields": {"nom_de_la_commune": "MIRIBEL LANCHATRE", "libell_d_acheminement": "MIRIBEL LANCHATRE", "code_postal": "38450", "coordonnees_gps": [45.0222177332, 5.65673982861], "code_commune_insee": "38235"}, "geometry": {"type": "Point", "coordinates": [5.65673982861, 45.0222177332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0ccad9628a1a1e2bcfc6813d5e01ae5e4f94103", "fields": {"nom_de_la_commune": "MONTREVEL", "libell_d_acheminement": "MONTREVEL", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38257"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f58944a3b109f89495ff87cbcee413cd82b4bd", "fields": {"nom_de_la_commune": "MONT ST MARTIN", "libell_d_acheminement": "MONT ST MARTIN", "code_postal": "38120", "coordonnees_gps": [45.2676163279, 5.69623665146], "code_commune_insee": "38258"}, "geometry": {"type": "Point", "coordinates": [5.69623665146, 45.2676163279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cabd78f654e30976e23a8b79b2390f3f0025212a", "fields": {"nom_de_la_commune": "MORESTEL", "libell_d_acheminement": "MORESTEL", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38261"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fa37b831a7982514d6d838a691c4e1c0fd8b44", "fields": {"nom_de_la_commune": "LA MOTTE D AVEILLANS", "libell_d_acheminement": "LA MOTTE D AVEILLANS", "code_postal": "38770", "coordonnees_gps": [44.9592629252, 5.7197167385], "code_commune_insee": "38265"}, "geometry": {"type": "Point", "coordinates": [5.7197167385, 44.9592629252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "966eb10c5110d91760aee511f4701a551c24870c", "fields": {"nom_de_la_commune": "MURINAIS", "libell_d_acheminement": "MURINAIS", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38272"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e342d193395bb288769ec85e71e21272499e53f4", "fields": {"nom_de_la_commune": "NANTES EN RATIER", "libell_d_acheminement": "NANTES EN RATIER", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38273"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ab4d0a5843021fceb19af12904b511b8d83daa", "fields": {"nom_de_la_commune": "NOTRE DAME DE COMMIERS", "libell_d_acheminement": "NOTRE DAME DE COMMIERS", "code_postal": "38450", "coordonnees_gps": [45.0222177332, 5.65673982861], "code_commune_insee": "38277"}, "geometry": {"type": "Point", "coordinates": [5.65673982861, 45.0222177332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbaf2894a98421b8c7ffff6a0e38cf0c621b3e16", "fields": {"nom_de_la_commune": "NOTRE DAME DE MESAGE", "libell_d_acheminement": "NOTRE DAME DE MESAGE", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38279"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bad4847e77638cf9a1d440ceb09c9b05f2eba8e", "fields": {"nom_de_la_commune": "OULLES", "libell_d_acheminement": "OULLES", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38286"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8723667bf3989db795461b6b2b39b3a9baf18da6", "fields": {"nom_de_la_commune": "OYTIER ST OBLAS", "libell_d_acheminement": "OYTIER ST OBLAS", "code_postal": "38780", "coordonnees_gps": [45.5202153457, 4.98494519095], "code_commune_insee": "38288"}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83fcf40e61dbd13165a8e4b648d4dfbb8369005c", "fields": {"nom_de_la_commune": "PANOSSAS", "libell_d_acheminement": "PANOSSAS", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38294"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b606b7a43bedfa22f8c9fd8ef44441a2340e0d5", "fields": {"nom_de_la_commune": "PARMILIEU", "libell_d_acheminement": "PARMILIEU", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38295"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14ba106f3fa963f3b09e8a693d4033277d292419", "fields": {"nom_de_la_commune": "PIERRE CHATEL", "libell_d_acheminement": "PIERRE CHATEL", "code_postal": "38119", "coordonnees_gps": [44.9763278291, 5.79332397715], "code_commune_insee": "38304"}, "geometry": {"type": "Point", "coordinates": [5.79332397715, 44.9763278291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f740d4a5bce301c03fe3fa04041b1df87ecb9c6", "fields": {"nom_de_la_commune": "PONTCHARRA", "libell_d_acheminement": "PONTCHARRA", "code_postal": "38530", "coordonnees_gps": [45.4375526666, 5.98907840878], "code_commune_insee": "38314"}, "geometry": {"type": "Point", "coordinates": [5.98907840878, 45.4375526666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb611ef2af0d9d2da6aed9e5cdee9490adbd4b6", "fields": {"nom_de_la_commune": "PORCIEU AMBLAGNIEU", "libell_d_acheminement": "PORCIEU AMBLAGNIEU", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38320"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5146e3a08cae54db754d18643e5db86e03546a52", "fields": {"nom_de_la_commune": "PREBOIS", "libell_d_acheminement": "PREBOIS", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38321"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c193f3dc2c6a9130d4eac151b684e1bf13a1cef", "fields": {"nom_de_la_commune": "QUAIX EN CHARTREUSE", "libell_d_acheminement": "QUAIX EN CHARTREUSE", "code_postal": "38950", "coordonnees_gps": [45.2439623267, 5.72553344189], "code_commune_insee": "38328"}, "geometry": {"type": "Point", "coordinates": [5.72553344189, 45.2439623267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8360238d7e75563798fee81cde363a60314a3a55", "fields": {"nom_de_la_commune": "REVEL", "libell_d_acheminement": "REVEL", "code_postal": "38420", "coordonnees_gps": [45.1842766535, 5.88281738166], "code_commune_insee": "38334"}, "geometry": {"type": "Point", "coordinates": [5.88281738166, 45.1842766535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aec25a3b918f0227e11f291c1fe501ada783d68", "fields": {"nom_de_la_commune": "REVEL TOURDAN", "libell_d_acheminement": "REVEL TOURDAN", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38335"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87080efddbe48a3c3b67a021b2d188a95535b606", "fields": {"nom_de_la_commune": "ROCHE", "libell_d_acheminement": "ROCHE", "code_postal": "38090", "coordonnees_gps": [45.595478316, 5.15236035491], "code_commune_insee": "38339"}, "geometry": {"type": "Point", "coordinates": [5.15236035491, 45.595478316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb662cfbb46a51bcfa8fb530c42b1711f734dc2", "fields": {"nom_de_la_commune": "ROCHETOIRIN", "libell_d_acheminement": "ROCHETOIRIN", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38341"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2b73e94a4af3ac8dfceca304eaaf80f1221f57", "fields": {"nom_de_la_commune": "ROMAGNIEU", "libell_d_acheminement": "ROMAGNIEU", "code_postal": "38480", "coordonnees_gps": [45.53172228, 5.65443955806], "code_commune_insee": "38343"}, "geometry": {"type": "Point", "coordinates": [5.65443955806, 45.53172228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "331e6b8b2f3860541e20cfd466bb4ab3fde20c16", "fields": {"nom_de_la_commune": "ROYBON", "libell_d_acheminement": "ROYBON", "code_postal": "38940", "coordonnees_gps": [45.2530241738, 5.22613793096], "code_commune_insee": "38347"}, "geometry": {"type": "Point", "coordinates": [5.22613793096, 45.2530241738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68201ce02c5bf356e095d40ef534af9f143a9a8a", "fields": {"nom_de_la_commune": "STE AGNES", "libell_d_acheminement": "STE AGNES", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38350"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc39725552cbab266c2bad6f2a818cc1075bd66e", "fields": {"nom_de_la_commune": "ST ALBAN DE ROCHE", "libell_d_acheminement": "ST ALBAN DE ROCHE", "code_postal": "38080", "coordonnees_gps": [45.6169539729, 5.22284898383], "code_commune_insee": "38352"}, "geometry": {"type": "Point", "coordinates": [5.22284898383, 45.6169539729]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81486b743346b257b4ab52ad3f6cae35b6502b0", "fields": {"nom_de_la_commune": "ST ANDRE LE GAZ", "libell_d_acheminement": "ST ANDRE LE GAZ", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38357"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea47d8a9f148706e7fb16edfa413f39aa3faf6b2", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY DE BEAUREPAIRE", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38363"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf6fcb1c0077744137eceffeee830ec3cf85252d", "fields": {"nom_de_la_commune": "ST BAUDILLE ET PIPET", "libell_d_acheminement": "ST BAUDILLE ET PIPET", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38366"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61b7755606814c56c021957fbc0cf3497744d448", "fields": {"nom_de_la_commune": "ST BLAISE DU BUIS", "libell_d_acheminement": "ST BLAISE DU BUIS", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38368"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ba0645f0a51e53fc8d6ccc398422cdd51717f6", "fields": {"nom_de_la_commune": "ST BONNET DE CHAVAGNE", "libell_d_acheminement": "ST BONNET DE CHAVAGNE", "code_postal": "38840", "coordonnees_gps": [45.102231129, 5.22315153689], "code_commune_insee": "38370"}, "geometry": {"type": "Point", "coordinates": [5.22315153689, 45.102231129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5906c1da98ad5617c1346a6124bb03994a146544", "fields": {"nom_de_la_commune": "ST CLAIR DE LA TOUR", "libell_d_acheminement": "ST CLAIR DE LA TOUR", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38377"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff65141e16174eee3a2313916b6081b3795fbff6", "fields": {"code_postal": "38790", "code_commune_insee": "38389", "libell_d_acheminement": "ST GEORGES D ESPERANCHE", "ligne_5": "COMBE ROUSSE", "nom_de_la_commune": "ST GEORGES D ESPERANCHE", "coordonnees_gps": [45.5630185121, 5.09029489838]}, "geometry": {"type": "Point", "coordinates": [5.09029489838, 45.5630185121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60cb37fdfde195508966cce3206cb70b756caa52", "fields": {"nom_de_la_commune": "ST GUILLAUME", "libell_d_acheminement": "ST GUILLAUME", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38391"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f6e44d03bafc5cd49d96a408a0d2bc8ae0c7f50", "fields": {"nom_de_la_commune": "ST HILAIRE DE LA COTE", "libell_d_acheminement": "ST HILAIRE DE LA COTE", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38393"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33d98ad10b118452d7f1d3c5d40a80c7f40f03bf", "fields": {"nom_de_la_commune": "ST JEAN DE BOURNAY", "libell_d_acheminement": "ST JEAN DE BOURNAY", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38399"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea01b9ce877d0e702e4ca93e4f199bd4425a10d", "fields": {"nom_de_la_commune": "ST JEAN LE VIEUX", "libell_d_acheminement": "ST JEAN LE VIEUX", "code_postal": "38420", "coordonnees_gps": [45.1842766535, 5.88281738166], "code_commune_insee": "38404"}, "geometry": {"type": "Point", "coordinates": [5.88281738166, 45.1842766535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d4afc355b43c68b17ed1b20631c810e1dc9b85e", "fields": {"nom_de_la_commune": "ST LAURENT DU PONT", "libell_d_acheminement": "ST LAURENT DU PONT", "code_postal": "38380", "coordonnees_gps": [45.375484002, 5.78036097359], "code_commune_insee": "38412"}, "geometry": {"type": "Point", "coordinates": [5.78036097359, 45.375484002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feef08b3d1dff2db3d7df84e709a14a6f4e40923", "fields": {"nom_de_la_commune": "ST MARTIN D HERES", "libell_d_acheminement": "ST MARTIN D HERES", "code_postal": "38400", "coordonnees_gps": [45.1753929584, 5.76533745797], "code_commune_insee": "38421"}, "geometry": {"type": "Point", "coordinates": [5.76533745797, 45.1753929584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f9bfd120c256f4cf1587d28dd3ef778172439a", "fields": {"nom_de_la_commune": "ST MARTIN LE VINOUX", "libell_d_acheminement": "ST MARTIN LE VINOUX", "code_postal": "38950", "coordonnees_gps": [45.2439623267, 5.72553344189], "code_commune_insee": "38423"}, "geometry": {"type": "Point", "coordinates": [5.72553344189, 45.2439623267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ba33bd865e709e33d90111b83a15fb8d291c7b", "fields": {"nom_de_la_commune": "ST MAURICE EN TRIEVES", "libell_d_acheminement": "ST MAURICE EN TRIEVES", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38424"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f98e0ad0911d6169b6ab182c216122184d35da4", "fields": {"nom_de_la_commune": "ST MAXIMIN", "libell_d_acheminement": "ST MAXIMIN", "code_postal": "38530", "coordonnees_gps": [45.4375526666, 5.98907840878], "code_commune_insee": "38426"}, "geometry": {"type": "Point", "coordinates": [5.98907840878, 45.4375526666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1c6aa31589c1ea38731fd0ccfd160ed30b1b35d", "fields": {"nom_de_la_commune": "ST PIERRE DE BRESSIEUX", "libell_d_acheminement": "ST PIERRE DE BRESSIEUX", "code_postal": "38870", "coordonnees_gps": [45.3123965448, 5.28339736788], "code_commune_insee": "38440"}, "geometry": {"type": "Point", "coordinates": [5.28339736788, 45.3123965448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce33b8628199960393565158534a43f1c849636", "fields": {"nom_de_la_commune": "ST PIERRE DE MESAGE", "libell_d_acheminement": "ST PIERRE DE MESAGE", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38445"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8cafa734ddc45bbad35941d2630f2b569eb3be5", "fields": {"nom_de_la_commune": "ST ROMAIN DE JALIONAS", "libell_d_acheminement": "ST ROMAIN DE JALIONAS", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38451"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f058447015f7bbc03b54d2d9453a2cbfb151c02b", "fields": {"nom_de_la_commune": "ST SAVIN", "libell_d_acheminement": "ST SAVIN", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38455"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a623a6ea14a03bb32497ec7f94af9bda589e3787", "fields": {"nom_de_la_commune": "SALAISE SUR SANNE", "libell_d_acheminement": "SALAISE SUR SANNE", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38468"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0c441c55c55a9706f3404a36abba913239ecea", "fields": {"code_postal": "38290", "code_commune_insee": "38475", "libell_d_acheminement": "SATOLAS ET BONCE", "ligne_5": "HAUT DE BONCE", "nom_de_la_commune": "SATOLAS ET BONCE", "coordonnees_gps": [45.6634032734, 5.1509887973]}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99068a549582f5c488ed7e43dbfe4419802b1e10", "fields": {"nom_de_la_commune": "SEREZIN DE LA TOUR", "libell_d_acheminement": "SEREZIN DE LA TOUR", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38481"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0334fed4b064cc1c2eeb4203d366881883574b6", "fields": {"nom_de_la_commune": "SERMERIEU", "libell_d_acheminement": "SERMERIEU", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38483"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc4d16dd6e7db3fe3252eb87906b42587b126b72", "fields": {"nom_de_la_commune": "SERPAIZE", "libell_d_acheminement": "SERPAIZE", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38484"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d30589c2e1a4a731ad853f1d6e0b18537e7228c", "fields": {"nom_de_la_commune": "SEYSSINS", "libell_d_acheminement": "SEYSSINS", "code_postal": "38180", "coordonnees_gps": [45.1549187647, 5.67516106421], "code_commune_insee": "38486"}, "geometry": {"type": "Point", "coordinates": [5.67516106421, 45.1549187647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a1c3523b8fe2642e685e082cb5400808b95c73f", "fields": {"nom_de_la_commune": "SIEVOZ", "libell_d_acheminement": "SIEVOZ", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38489"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a4f9b75f1f602359488bf7149f18c47d93db65a", "fields": {"nom_de_la_commune": "TENCIN", "libell_d_acheminement": "TENCIN", "code_postal": "38570", "coordonnees_gps": [45.3269943353, 6.00916897234], "code_commune_insee": "38501"}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5b0bfe74b412d6e861549665a801195b0bdedf", "fields": {"nom_de_la_commune": "LA TERRASSE", "libell_d_acheminement": "LA TERRASSE", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38503"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d86b30a394cf447e9dd31d08eee0ddde106b7ab8", "fields": {"nom_de_la_commune": "THODURE", "libell_d_acheminement": "THODURE", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38505"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b65475748d06fcd35b8bdb17ff011b321c1729ee", "fields": {"nom_de_la_commune": "LA TRONCHE", "libell_d_acheminement": "LA TRONCHE", "code_postal": "38700", "coordonnees_gps": [45.2521287611, 5.7666044089], "code_commune_insee": "38516"}, "geometry": {"type": "Point", "coordinates": [5.7666044089, 45.2521287611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cecb6d116b1d05582158964ce0ae830c03cad521", "fields": {"nom_de_la_commune": "VALBONNAIS", "libell_d_acheminement": "VALBONNAIS", "code_postal": "38740", "coordonnees_gps": [44.9085893261, 6.02132611132], "code_commune_insee": "38518"}, "geometry": {"type": "Point", "coordinates": [6.02132611132, 44.9085893261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d341e98ea052f2bedc6206e2932d0d7791a1b38e", "fields": {"nom_de_la_commune": "VALENCIN", "libell_d_acheminement": "VALENCIN", "code_postal": "38540", "coordonnees_gps": [45.6158247621, 5.03787664057], "code_commune_insee": "38519"}, "geometry": {"type": "Point", "coordinates": [5.03787664057, 45.6158247621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd162297eca6a5352414652a080eeef1f6cfaf7c", "fields": {"nom_de_la_commune": "VERNIOZ", "libell_d_acheminement": "VERNIOZ", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38536"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bed674a2339bd7c78886d1a4fcf0fb703d2988d1", "fields": {"nom_de_la_commune": "LA VERPILLIERE", "libell_d_acheminement": "LA VERPILLIERE", "code_postal": "38290", "coordonnees_gps": [45.6634032734, 5.1509887973], "code_commune_insee": "38537"}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945281b4ad8bbca74f9ff6e8b4a3385620dfeedf", "fields": {"nom_de_la_commune": "VEZERONCE CURTIN", "libell_d_acheminement": "VEZERONCE CURTIN", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38543"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "911d2335331000ecf7be93bb64ce957274bbc995", "fields": {"nom_de_la_commune": "VIENNE", "libell_d_acheminement": "VIENNE", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38544"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a5b4f63990e8a99276b43fca894f6e9d05b7e63", "fields": {"code_postal": "38190", "code_commune_insee": "38547", "libell_d_acheminement": "VILLARD BONNOT", "ligne_5": "LANCEY", "nom_de_la_commune": "VILLARD BONNOT", "coordonnees_gps": [45.2307367976, 5.94776788691]}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc0e4f91448e45f6a6e9edecb9c4bfd9023f87be", "fields": {"nom_de_la_commune": "VILLEMOIRIEU", "libell_d_acheminement": "VILLEMOIRIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38554"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78e0a0f885595b4cae7799dee3defe251c67ea4b", "fields": {"nom_de_la_commune": "VILLENEUVE DE MARC", "libell_d_acheminement": "VILLENEUVE DE MARC", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38555"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b30920ace5558dd351e7ca2cc366ae54a6544299", "fields": {"nom_de_la_commune": "VILLE SOUS ANJOU", "libell_d_acheminement": "VILLE SOUS ANJOU", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38556"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1730967bc23f03b7511d05540a6b941ab301fcd6", "fields": {"nom_de_la_commune": "VIZILLE", "libell_d_acheminement": "VIZILLE", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38562"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b428266e5f390222daa2ec2fb2e2169d5d1afc6c", "fields": {"nom_de_la_commune": "VOISSANT", "libell_d_acheminement": "VOISSANT", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38564"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e08fe6829fa5027e70703989feabea9bad19f9d", "fields": {"nom_de_la_commune": "CHAMROUSSE", "libell_d_acheminement": "CHAMROUSSE", "code_postal": "38410", "coordonnees_gps": [45.1312146211, 5.85219394747], "code_commune_insee": "38567"}, "geometry": {"type": "Point", "coordinates": [5.85219394747, 45.1312146211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d6b6a1491ecc78b362a9dbf09cbe4f13573dc7", "fields": {"code_postal": "39320", "code_commune_insee": "39010", "libell_d_acheminement": "ANDELOT MORVAL", "ligne_5": "MORVAL", "nom_de_la_commune": "ANDELOT MORVAL", "coordonnees_gps": [46.4076971476, 5.45325429562]}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aadb98a2a472aeae41f3d8ea3108f9fc2036bbe", "fields": {"nom_de_la_commune": "ARDON", "libell_d_acheminement": "ARDON", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39015"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bfde80d6067e7c2d810138b38adc4d1b2f3b9ca", "fields": {"nom_de_la_commune": "ARINTHOD", "libell_d_acheminement": "ARINTHOD", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39016"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff9a0fe2cef42cffb0c4923490c0e092f26df9b", "fields": {"nom_de_la_commune": "ARLAY", "libell_d_acheminement": "ARLAY", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39017"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1a6b769beaebd7806e94027fcab28a48562e33", "fields": {"nom_de_la_commune": "LES ARSURES", "libell_d_acheminement": "LES ARSURES", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39019"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e11b1ca9892334cbf368a20311eb0a386038f9", "fields": {"nom_de_la_commune": "ARSURE ARSURETTE", "libell_d_acheminement": "ARSURE ARSURETTE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39020"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4115960b29bd7623ebf10f91b8387bc2a3326500", "fields": {"code_postal": "39570", "code_commune_insee": "39021", "libell_d_acheminement": "LA CHAILLEUSE", "ligne_5": "ST LAURENT LA ROCHE", "nom_de_la_commune": "LA CHAILLEUSE", "coordonnees_gps": [46.65517776, 5.57390144978]}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79062d9090c5d8ccf9cc043b97d081c978f1ed88", "fields": {"nom_de_la_commune": "AUGEA", "libell_d_acheminement": "AUGEA", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39025"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d229686d8813de59f20c2fcf41ac69948f2efaef", "fields": {"nom_de_la_commune": "BALAISEAUX", "libell_d_acheminement": "BALAISEAUX", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39034"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8acb40db521274e0dcf9ee572bb30de71e7622", "fields": {"nom_de_la_commune": "BANS", "libell_d_acheminement": "BANS", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39037"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d85cff477ede00a02357c76e5725eaeb34cc3c7", "fields": {"nom_de_la_commune": "LES MOITIERS D ALLONNE", "libell_d_acheminement": "LES MOITIERS D ALLONNE", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50332"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5251af45491a6c8c66b79e34e66b01c6167790df", "fields": {"nom_de_la_commune": "MONTHUCHON", "libell_d_acheminement": "MONTHUCHON", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50345"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b96aead81a8e257fb52085a32b7ba92a0cf6a148", "fields": {"nom_de_la_commune": "MOYON VILLAGES", "libell_d_acheminement": "MOYON VILLAGES", "code_postal": "50860", "coordonnees_gps": [48.9943738714, -1.13617599319], "code_commune_insee": "50363"}, "geometry": {"type": "Point", "coordinates": [-1.13617599319, 48.9943738714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07369f30f1f88c6ff0f424056b56c21fbed5cb20", "fields": {"code_postal": "50860", "code_commune_insee": "50363", "libell_d_acheminement": "MOYON VILLAGES", "ligne_5": "LE MESNIL OPAC", "nom_de_la_commune": "MOYON VILLAGES", "coordonnees_gps": [48.9943738714, -1.13617599319]}, "geometry": {"type": "Point", "coordinates": [-1.13617599319, 48.9943738714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f0bf0bf36b55aa9191f3b6a222397354d49f50d", "fields": {"nom_de_la_commune": "NEHOU", "libell_d_acheminement": "NEHOU", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50370"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c174bd13ecf928185eca1be252f19b5298820d2", "fields": {"nom_de_la_commune": "NICORPS", "libell_d_acheminement": "NICORPS", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50376"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57241be2a696b8023912b71faa92a0dc4ab5adac", "fields": {"nom_de_la_commune": "OZEVILLE", "libell_d_acheminement": "OZEVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50390"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5465364e5db933f3319692e3b40606220f0f810", "fields": {"code_postal": "50600", "code_commune_insee": "50391", "libell_d_acheminement": "GRANDPARIGNY", "ligne_5": "CHEVREVILLE", "nom_de_la_commune": "GRANDPARIGNY", "coordonnees_gps": [48.5703711319, -1.06754299241]}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "506d71f7e31489745216e6c1784eb620bf087ae5", "fields": {"code_postal": "50600", "code_commune_insee": "50391", "libell_d_acheminement": "GRANDPARIGNY", "ligne_5": "MARTIGNY", "nom_de_la_commune": "GRANDPARIGNY", "coordonnees_gps": [48.5703711319, -1.06754299241]}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e3e7712817e0e907fb5470a4fea598380dd177d", "fields": {"code_postal": "50410", "code_commune_insee": "50393", "libell_d_acheminement": "PERCY EN NORMANDIE", "ligne_5": "LE CHEFRESNE", "nom_de_la_commune": "PERCY EN NORMANDIE", "coordonnees_gps": [48.9223606769, -1.16803884291]}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603f133a94fe61539e495c4fbcdbf5faa9a8d6cf", "fields": {"code_postal": "50250", "code_commune_insee": "50400", "libell_d_acheminement": "PICAUVILLE", "ligne_5": "VINDEFONTAINE", "nom_de_la_commune": "PICAUVILLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "607b4319217eaa605ea87be0410529f16722ab90", "fields": {"nom_de_la_commune": "PIERREVILLE", "libell_d_acheminement": "PIERREVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50401"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5710dc01b5a2f47da91f24fa3979345ccaa9971a", "fields": {"nom_de_la_commune": "QUETTREVILLE SUR SIENNE", "libell_d_acheminement": "QUETTREVILLE SUR SIENNE", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50419"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6779e412b2332b5b42721a97fbf88948c6d26906", "fields": {"nom_de_la_commune": "REFFUVEILLE", "libell_d_acheminement": "REFFUVEILLE", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50428"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "547699026fb7edec912983abcab6c348f692aa24", "fields": {"nom_de_la_commune": "REVILLE", "libell_d_acheminement": "REVILLE", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50433"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "797fee76dcddd44d1f3fafa9b3b3e2fc7674d6d6", "fields": {"nom_de_la_commune": "RONCEY", "libell_d_acheminement": "RONCEY", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50437"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c42c18befdd0bdbc2a7538ef9c15949d7b7fcab7", "fields": {"nom_de_la_commune": "LA RONDE HAYE", "libell_d_acheminement": "LA RONDE HAYE", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50438"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1807f3b29895373ba702ad7fac4e96cc64afcc", "fields": {"nom_de_la_commune": "LE ROZEL", "libell_d_acheminement": "LE ROZEL", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50442"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb6b0a5c48f28331df294f625057a11667d6ef2f", "fields": {"code_postal": "50160", "code_commune_insee": "50444", "libell_d_acheminement": "ST AMAND", "ligne_5": "ST SYMPHORIEN LES BUTTES", "nom_de_la_commune": "ST AMAND", "coordonnees_gps": [49.0498306608, -0.92753197973]}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aec8817c61d6e10bbe5697ef2702c9c99d030f8", "fields": {"nom_de_la_commune": "ST AUBIN DES PREAUX", "libell_d_acheminement": "ST AUBIN DES PREAUX", "code_postal": "50380", "coordonnees_gps": [48.8042249102, -1.53020237954], "code_commune_insee": "50447"}, "geometry": {"type": "Point", "coordinates": [-1.53020237954, 48.8042249102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4b5034b16fb2f80cdaf89ac5eafe68f802819d", "fields": {"nom_de_la_commune": "STE CECILE", "libell_d_acheminement": "STE CECILE", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50453"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd2a6a7f3676a72f614d18dd2048135d9db1dbff", "fields": {"nom_de_la_commune": "ST DENIS LE VETU", "libell_d_acheminement": "ST DENIS LE VETU", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50464"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ef357c93e51d19e39aa2085e170686d884a0d0", "fields": {"nom_de_la_commune": "ST GEORGES D ELLE", "libell_d_acheminement": "ST GEORGES D ELLE", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50473"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b4ec59668a54b15d7c59bb73f3c7e15ff23e7b5", "fields": {"nom_de_la_commune": "ST GERMAIN DE TOURNEBUT", "libell_d_acheminement": "ST GERMAIN DE TOURNEBUT", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50478"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "497e841d37f4f913eec3386fef2fa30697278209", "fields": {"nom_de_la_commune": "ST GERMAIN LE GAILLARD", "libell_d_acheminement": "ST GERMAIN LE GAILLARD", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50480"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f8195f0170a715c15cc3c91df83c2210a72999b", "fields": {"nom_de_la_commune": "ST JEAN LE THOMAS", "libell_d_acheminement": "ST JEAN LE THOMAS", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50496"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee0b9c0a75a5f19c66bd8c19345a15efac30281", "fields": {"nom_de_la_commune": "ST LAURENT DE CUVES", "libell_d_acheminement": "ST LAURENT DE CUVES", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50499"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "430c36dcaeb083d6a008b102767255170ad6c5e9", "fields": {"nom_de_la_commune": "ST LAURENT DE TERREGATTE", "libell_d_acheminement": "ST LAURENT DE TERREGATTE", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50500"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed5e780b336d8ace653443a1bd0e0155810128f", "fields": {"nom_de_la_commune": "ST MALO DE LA LANDE", "libell_d_acheminement": "ST MALO DE LA LANDE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50506"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa23ee6a0d4d3177ab98b4885d18c7d5b38c6c0c", "fields": {"nom_de_la_commune": "ST MARCOUF", "libell_d_acheminement": "ST MARCOUF", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50507"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93df57dc9980cd258eb659177c2c61a8f4081c99", "fields": {"nom_de_la_commune": "ST MARTIN DES CHAMPS", "libell_d_acheminement": "ST MARTIN DES CHAMPS", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50516"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e18a806c805d79a95112a35ad30d90388a9976c8", "fields": {"nom_de_la_commune": "ST MAUR DES BOIS", "libell_d_acheminement": "ST MAUR DES BOIS", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50521"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7ac3281de1c2a92fd1c2372487668e20c85ac49", "fields": {"code_postal": "50480", "code_commune_insee": "50523", "libell_d_acheminement": "STE MERE EGLISE", "ligne_5": "FOUCARVILLE", "nom_de_la_commune": "STE MERE EGLISE", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4771424b1b28383c839e0af2942e40aa888ed7", "fields": {"nom_de_la_commune": "ST MICHEL DE MONTJOIE", "libell_d_acheminement": "ST MICHEL DE MONTJOIE", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50525"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa6c404a55bf8109718f5931068c00d306468fc8", "fields": {"nom_de_la_commune": "ST PAIR SUR MER", "libell_d_acheminement": "ST PAIR SUR MER", "code_postal": "50380", "coordonnees_gps": [48.8042249102, -1.53020237954], "code_commune_insee": "50532"}, "geometry": {"type": "Point", "coordinates": [-1.53020237954, 48.8042249102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db82d41c13361188aee5c2f4fb3925c768e97aa", "fields": {"code_postal": "50870", "code_commune_insee": "50535", "libell_d_acheminement": "LE PARC", "ligne_5": "STE PIENCE", "nom_de_la_commune": "LE PARC", "coordonnees_gps": [48.7458565845, -1.30663914164]}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb80d4b9d3fe29f9fc09601a9a3b538efeb2d72", "fields": {"nom_de_la_commune": "ST PIERRE D ARTHEGLISE", "libell_d_acheminement": "ST PIERRE D ARTHEGLISE", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50536"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f00a38bf1b4da4e6398a5966af8bb1648bea42", "fields": {"nom_de_la_commune": "ST PIERRE DE COUTANCES", "libell_d_acheminement": "ST PIERRE DE COUTANCES", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50537"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ed05e4f4a27ec61aa27b4ac1cecff2c6caa1c16", "fields": {"nom_de_la_commune": "ST QUENTIN SUR LE HOMME", "libell_d_acheminement": "ST QUENTIN SUR LE HOMME", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50543"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2f1628bcecdfc3921db3b7eca3bf05d801d1cd", "fields": {"code_postal": "50750", "code_commune_insee": "50546", "libell_d_acheminement": "BOURGVALLEES", "ligne_5": "ST ROMPHAIRE", "nom_de_la_commune": "BOURGVALLEES", "coordonnees_gps": [49.0496336445, -1.17517736978]}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee0059dd3c91222cbc5ab37d8d9d589d45933e5", "fields": {"nom_de_la_commune": "ST SAUVEUR DE PIERREPONT", "libell_d_acheminement": "ST SAUVEUR DE PIERREPONT", "code_postal": "50250", "coordonnees_gps": [49.3265209402, -1.49249474083], "code_commune_insee": "50548"}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95391796368ce9aaec64b205898677dddbb05335", "fields": {"code_postal": "50500", "code_commune_insee": "50564", "libell_d_acheminement": "TERRE ET MARAIS", "ligne_5": "ST GEORGES DE BOHON", "nom_de_la_commune": "TERRE ET MARAIS", "coordonnees_gps": [49.2869249451, -1.26541021444]}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "233863ff2c45f3731fe1bc4130a8d5e0d06a8b7c", "fields": {"nom_de_la_commune": "SAUSSEY", "libell_d_acheminement": "SAUSSEY", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50568"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "440170a571e776c921b41fe180be1ff1286b812f", "fields": {"nom_de_la_commune": "SIDEVILLE", "libell_d_acheminement": "SIDEVILLE", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50575"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5316841d824f055d0d4e21391e4f475abef74cfe", "fields": {"nom_de_la_commune": "SORTOSVILLE", "libell_d_acheminement": "SORTOSVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50578"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "239620f023eebe100496a89302be5bdc955351cf", "fields": {"code_postal": "50150", "code_commune_insee": "50582", "libell_d_acheminement": "SOURDEVAL", "ligne_5": "VENGEONS", "nom_de_la_commune": "SOURDEVAL", "coordonnees_gps": [48.7316763227, -0.921013476497]}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67e10082bc1ae62e223784b8e6c8fd7620b220d8", "fields": {"nom_de_la_commune": "SOURDEVAL LES BOIS", "libell_d_acheminement": "SOURDEVAL LES BOIS", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50583"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d01dd538473afaab58bc79af6ad428fab5add3a", "fields": {"nom_de_la_commune": "TIREPIED", "libell_d_acheminement": "TIREPIED", "code_postal": "50870", "coordonnees_gps": [48.7458565845, -1.30663914164], "code_commune_insee": "50597"}, "geometry": {"type": "Point", "coordinates": [-1.30663914164, 48.7458565845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca21aed21248298089c1265e8645560f0b6a1a8a", "fields": {"nom_de_la_commune": "TOLLEVAST", "libell_d_acheminement": "TOLLEVAST", "code_postal": "50470", "coordonnees_gps": [49.608906015, -1.62204254981], "code_commune_insee": "50599"}, "geometry": {"type": "Point", "coordinates": [-1.62204254981, 49.608906015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcad10fe7942468091d228157100ad482fa5f6d1", "fields": {"nom_de_la_commune": "TREAUVILLE", "libell_d_acheminement": "TREAUVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50604"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de3b0732262d7a253caa6513f2a24edc0c15acf9", "fields": {"nom_de_la_commune": "TRIBEHOU", "libell_d_acheminement": "TRIBEHOU", "code_postal": "50620", "coordonnees_gps": [49.2231117427, -1.17413821779], "code_commune_insee": "50606"}, "geometry": {"type": "Point", "coordinates": [-1.17413821779, 49.2231117427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e204b898fe55e3c73a73a0cfb1433a760b3dae6", "fields": {"nom_de_la_commune": "URVILLE NACQUEVILLE", "libell_d_acheminement": "URVILLE NACQUEVILLE", "code_postal": "50460", "coordonnees_gps": [49.6466043222, -1.6849502548], "code_commune_insee": "50611"}, "geometry": {"type": "Point", "coordinates": [-1.6849502548, 49.6466043222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67b7f35f32f91108147fc6ded1ecd274a8507eb7", "fields": {"nom_de_la_commune": "VAINS", "libell_d_acheminement": "VAINS", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50612"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44643e406396b90f52a7e7746d1b8ee19f16e4a2", "fields": {"nom_de_la_commune": "LE VAST", "libell_d_acheminement": "LE VAST", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50619"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b378c6249e2ef2546fda941d35136ebe7510b30f", "fields": {"nom_de_la_commune": "VER", "libell_d_acheminement": "VER", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50626"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181a56acd64da8f8c20ed1e0f24dd9fdbadd71aa", "fields": {"code_postal": "03190", "code_commune_insee": "03158", "libell_d_acheminement": "HAUT BOCAGE", "ligne_5": "GIVARLAIS", "nom_de_la_commune": "HAUT BOCAGE", "coordonnees_gps": [46.4826080397, 2.65647600079]}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8700a3511172bdb712cda329758a0f4340c3ea", "fields": {"nom_de_la_commune": "DENEUILLE LES MINES", "libell_d_acheminement": "DENEUILLE LES MINES", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03097"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fe9ec4a8ca07abb63af7e832df426782898a3ab", "fields": {"nom_de_la_commune": "ECHASSIERES", "libell_d_acheminement": "ECHASSIERES", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03108"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c46136237bc636f94c241dbf5aa9e792e29ec51", "fields": {"nom_de_la_commune": "DESERTINES", "libell_d_acheminement": "DESERTINES", "code_postal": "03630", "coordonnees_gps": [46.3568435387, 2.62727394368], "code_commune_insee": "03098"}, "geometry": {"type": "Point", "coordinates": [2.62727394368, 46.3568435387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f458a40f71aadab3803ffa5385c9fa7ec1dd3cbe", "fields": {"nom_de_la_commune": "ESCUROLLES", "libell_d_acheminement": "ESCUROLLES", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03109"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bebd7d7ade9713f2229db53f2f736b8ed5e77bce", "fields": {"nom_de_la_commune": "LIERNOLLES", "libell_d_acheminement": "LIERNOLLES", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03144"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6132f8ccaf3907611e1609bdfe471dcbf26aaa09", "fields": {"nom_de_la_commune": "HAUTERIVE", "libell_d_acheminement": "HAUTERIVE", "code_postal": "03270", "coordonnees_gps": [46.0549562922, 3.49595690849], "code_commune_insee": "03126"}, "geometry": {"type": "Point", "coordinates": [3.49595690849, 46.0549562922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "855a64bb49896423ad1f62d19982e0ee40dce361", "fields": {"nom_de_la_commune": "DOMERAT", "libell_d_acheminement": "DOMERAT", "code_postal": "03410", "coordonnees_gps": [46.3319374821, 2.55481116435], "code_commune_insee": "03101"}, "geometry": {"type": "Point", "coordinates": [2.55481116435, 46.3319374821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab73ef1e035ad489032b3fd6c4acd104dbe39ea2", "fields": {"nom_de_la_commune": "DOYET", "libell_d_acheminement": "DOYET", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03104"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0a0be83d1853aae20aeae38478b6e3b958b390", "fields": {"nom_de_la_commune": "DIOU", "libell_d_acheminement": "DIOU", "code_postal": "03290", "coordonnees_gps": [46.5135121651, 3.68226349341], "code_commune_insee": "03100"}, "geometry": {"type": "Point", "coordinates": [3.68226349341, 46.5135121651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89810a1c12579a059bcd501855a9651878b63e1a", "fields": {"nom_de_la_commune": "LA VILLE AUX BOIS LES DIZY", "libell_d_acheminement": "LA VILLE AUX BOIS LES DIZY", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02802"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "544b9ebe452e2a730c348bd216bd304be0518606", "fields": {"nom_de_la_commune": "VILLENEUVE ST GERMAIN", "libell_d_acheminement": "VILLENEUVE ST GERMAIN", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02805"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "392e51bed3f148d3247c7be5e562c3f363ceb776", "fields": {"nom_de_la_commune": "VILLERS AGRON AIGUIZY", "libell_d_acheminement": "VILLERS AGRON AIGUIZY", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02809"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd0fde8c918f33095436e2feb60c62f20f870f17", "fields": {"nom_de_la_commune": "VERNEUIL SUR SERRE", "libell_d_acheminement": "VERNEUIL SUR SERRE", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02787"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58923113fe5b0c8267685364b98290ce0fa4658a", "fields": {"nom_de_la_commune": "VICHEL NANTEUIL", "libell_d_acheminement": "VICHEL NANTEUIL", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02796"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75909c604b799e4bcb75102ff697ffcb0ad16c9b", "fields": {"nom_de_la_commune": "VIC SUR AISNE", "libell_d_acheminement": "VIC SUR AISNE", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02795"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "531d8327c9a39ce9275e2f2c2e002762fe6c94cd", "fields": {"nom_de_la_commune": "VERSIGNY", "libell_d_acheminement": "VERSIGNY", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02788"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f82b5c80010e10657ef5ec076f0fd38c0c1567b8", "fields": {"nom_de_la_commune": "VERVINS", "libell_d_acheminement": "VERVINS", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02789"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e25136d5bea5cc72425c0aafdf481211c70cd0d8", "fields": {"nom_de_la_commune": "VIERZY", "libell_d_acheminement": "VIERZY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02799"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d8398ea491aaa962c5769b15a7428a355a8cfac", "fields": {"nom_de_la_commune": "VESLUD", "libell_d_acheminement": "VESLUD", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02791"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7258c787553ba1c7578cdf4fec9be1b8f38cd7b3", "fields": {"nom_de_la_commune": "LA VALLEE MULATRE", "libell_d_acheminement": "LA VALLEE MULATRE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02760"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99b201947d626854854a10a7b57d73eb00551e66", "fields": {"nom_de_la_commune": "SONS ET RONCHERES", "libell_d_acheminement": "SONS ET RONCHERES", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02727"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a539af48ab0856f362fac5bc70cc79effa3b8c7", "fields": {"nom_de_la_commune": "TRELOU SUR MARNE", "libell_d_acheminement": "TRELOU SUR MARNE", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02748"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d41a39e49171dce2c1b56ec3078aacf8defea0f2", "fields": {"nom_de_la_commune": "TAILLEFONTAINE", "libell_d_acheminement": "TAILLEFONTAINE", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02734"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd81ff579913d509928efb30872195d23e67379c", "fields": {"nom_de_la_commune": "VENEROLLES", "libell_d_acheminement": "VENEROLLES", "code_postal": "02510", "coordonnees_gps": [49.9800730697, 3.64269846822], "code_commune_insee": "02779"}, "geometry": {"type": "Point", "coordinates": [3.64269846822, 49.9800730697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f182aed80684ebcad5b96bcd8f8089c46edcc584", "fields": {"nom_de_la_commune": "THENELLES", "libell_d_acheminement": "THENELLES", "code_postal": "02390", "coordonnees_gps": [49.8377010181, 3.51039258756], "code_commune_insee": "02741"}, "geometry": {"type": "Point", "coordinates": [3.51039258756, 49.8377010181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646b06bff18999b71a6755e39235ef0cd624ec44", "fields": {"nom_de_la_commune": "VENDHUILE", "libell_d_acheminement": "VENDHUILE", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02776"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f4b9ca464522eb54a463c3f464e554dfc59c2a", "fields": {"nom_de_la_commune": "VENDEUIL", "libell_d_acheminement": "VENDEUIL", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02775"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40285bf7d1f87ccc1206b42d1c657ab2eeca293c", "fields": {"nom_de_la_commune": "VAUXTIN", "libell_d_acheminement": "VAUXTIN", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02773"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4763c6cf7aa73f630e7670360ee1a8611423d96", "fields": {"nom_de_la_commune": "SUZY", "libell_d_acheminement": "SUZY", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02733"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f59dfeed107f0f252e81455d92e6589a8570dcda", "fields": {"nom_de_la_commune": "DENEUILLE LES CHANTELLE", "libell_d_acheminement": "DENEUILLE LES CHANTELLE", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03096"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88bc236695136281ea404ce47b42ee903f0f44d0", "fields": {"nom_de_la_commune": "BOURBON L ARCHAMBAULT", "libell_d_acheminement": "BOURBON L ARCHAMBAULT", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03036"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d57a57556dd531403729fd497a0b47623109a9a", "fields": {"nom_de_la_commune": "CHIRAT L EGLISE", "libell_d_acheminement": "CHIRAT L EGLISE", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03077"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db9fbf73fed5855d855b79908c7b0cf2471c2288", "fields": {"nom_de_la_commune": "LA CHAPELAUDE", "libell_d_acheminement": "LA CHAPELAUDE", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03055"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c3b3b244396c4595d4c1f7b869873dafd6b6352", "fields": {"nom_de_la_commune": "COUTANSOUZE", "libell_d_acheminement": "COUTANSOUZE", "code_postal": "03330", "coordonnees_gps": [46.21070511, 3.02004688789], "code_commune_insee": "03089"}, "geometry": {"type": "Point", "coordinates": [3.02004688789, 46.21070511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1deda49dcc08e68c3eb166fc8cb3712a8fa600ee", "fields": {"nom_de_la_commune": "LA CHAPELLE", "libell_d_acheminement": "LA CHAPELLE", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03056"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18973258bda1bbfb49c13ae2dce90ab64ca5e4f4", "fields": {"nom_de_la_commune": "COULANGES", "libell_d_acheminement": "COULANGES", "code_postal": "03470", "coordonnees_gps": [46.4660182657, 3.79821234181], "code_commune_insee": "03086"}, "geometry": {"type": "Point", "coordinates": [3.79821234181, 46.4660182657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a05a2816b5c0b1a2757cb2fb11236ec1cee238a", "fields": {"nom_de_la_commune": "CHEMILLY", "libell_d_acheminement": "CHEMILLY", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03073"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "547d5b8488cb0df3b420e0bc355204b088dfcfb7", "fields": {"nom_de_la_commune": "CHAPPES", "libell_d_acheminement": "CHAPPES", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03058"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9ae1086824a23cc0c727a8e62fc111dc922601", "fields": {"nom_de_la_commune": "CRECHY", "libell_d_acheminement": "CRECHY", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03091"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe0370cc8cab0db9b5e35d4d2dd7ac3473938c5f", "fields": {"nom_de_la_commune": "SERAUCOURT LE GRAND", "libell_d_acheminement": "SERAUCOURT LE GRAND", "code_postal": "02790", "coordonnees_gps": [49.7805766566, 3.21766127424], "code_commune_insee": "02710"}, "geometry": {"type": "Point", "coordinates": [3.21766127424, 49.7805766566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e95bf50a41b9b8b85ca61698f198fb78fb6a6249", "fields": {"nom_de_la_commune": "ST PAUL AUX BOIS", "libell_d_acheminement": "ST PAUL AUX BOIS", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02686"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "344086606fe312e5d033ed132639a19f03f5c2c5", "fields": {"nom_de_la_commune": "RIBEAUVILLE", "libell_d_acheminement": "RIBEAUVILLE", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02647"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cae65f581d93c8c3280ee2b793da30fdeb71c77", "fields": {"nom_de_la_commune": "SEPTMONTS", "libell_d_acheminement": "SEPTMONTS", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02706"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049f434dd50b59b8e7f1c66e9b3fbe1e486a88f3", "fields": {"nom_de_la_commune": "ST GOBAIN", "libell_d_acheminement": "ST GOBAIN", "code_postal": "02410", "coordonnees_gps": [49.5909068066, 3.39907207955], "code_commune_insee": "02680"}, "geometry": {"type": "Point", "coordinates": [3.39907207955, 49.5909068066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9cbac7b58590229477b7d1c577b95e0242937cd", "fields": {"nom_de_la_commune": "BEZE", "libell_d_acheminement": "BEZE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21071"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33fcfb4bb2a5bdc45632c298bfa86bf3c3de39f", "fields": {"nom_de_la_commune": "BEZOUOTTE", "libell_d_acheminement": "BEZOUOTTE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21072"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83a58ec0dabbc041b70a9a3d9a57bde06b507f0c", "fields": {"nom_de_la_commune": "BLAISY BAS", "libell_d_acheminement": "BLAISY BAS", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21080"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4041268092849d922dade22cd4e87e649a9ebe", "fields": {"nom_de_la_commune": "BLAISY HAUT", "libell_d_acheminement": "BLAISY HAUT", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21081"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37b20e15b0bc09f55805cdb1aafad09a2da5ea8d", "fields": {"nom_de_la_commune": "BONCOURT LE BOIS", "libell_d_acheminement": "BONCOURT LE BOIS", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21088"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63e0ecfc51cde31b464288174d1356422213dc25", "fields": {"nom_de_la_commune": "BOUDREVILLE", "libell_d_acheminement": "BOUDREVILLE", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21090"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53120fbced971cae92228c4abe567de94e8303a0", "fields": {"nom_de_la_commune": "BOUILLAND", "libell_d_acheminement": "BOUILLAND", "code_postal": "21420", "coordonnees_gps": [47.0968171399, 4.80502762881], "code_commune_insee": "21092"}, "geometry": {"type": "Point", "coordinates": [4.80502762881, 47.0968171399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39bdfa3400a0707cbf213acc22589250f98bac45", "fields": {"nom_de_la_commune": "BOUIX", "libell_d_acheminement": "BOUIX", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21093"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de2ad23b063a4865b65af809a79a6a79ad5ee5c", "fields": {"nom_de_la_commune": "BREMUR ET VAUROIS", "libell_d_acheminement": "BREMUR ET VAUROIS", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21104"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54e4bda762f861b26e39669d5ed3c56942b2fcef", "fields": {"nom_de_la_commune": "BRETENIERE", "libell_d_acheminement": "BRETENIERE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21106"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a97e97b6d2abcae09c96f479b41911bd3c85d6b", "fields": {"nom_de_la_commune": "BUFFON", "libell_d_acheminement": "BUFFON", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21114"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c1c2f3c2e04f3707f89522821f206131a2c096", "fields": {"nom_de_la_commune": "LA BUSSIERE SUR OUCHE", "libell_d_acheminement": "LA BUSSIERE SUR OUCHE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21120"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d88ed5703156802074eea869c0624e4996605649", "fields": {"nom_de_la_commune": "BUSSY LA PESLE", "libell_d_acheminement": "BUSSY LA PESLE", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21121"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6179a08ef0635490265746c866384bef51500ce0", "fields": {"nom_de_la_commune": "BUSSY LE GRAND", "libell_d_acheminement": "BUSSY LE GRAND", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21122"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fe2136493e62999bab84495bfd8c83bbe28cae3", "fields": {"nom_de_la_commune": "BUXEROLLES", "libell_d_acheminement": "BUXEROLLES", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21123"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3869c276e71f5275cb4a1272e2e9ef425daaf9e", "fields": {"nom_de_la_commune": "CESSEY SUR TILLE", "libell_d_acheminement": "CESSEY SUR TILLE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21126"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "744937aecd5213364e685befe28d5e791dac8690", "fields": {"nom_de_la_commune": "CHAMPAGNE SUR VINGEANNE", "libell_d_acheminement": "CHAMPAGNE SUR VINGEANNE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21135"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba9d59155f57677a64b36c8d78e38c91beb0853", "fields": {"nom_de_la_commune": "CHAMPAGNY", "libell_d_acheminement": "CHAMPAGNY", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21136"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b20917db0807bc2df016e1f3c365010092f59611", "fields": {"nom_de_la_commune": "CHAMPDOTRE", "libell_d_acheminement": "CHAMPDOTRE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21138"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f152c82b9358f9bc200644660c5034aa287e34c9", "fields": {"nom_de_la_commune": "CHAMPIGNOLLES", "libell_d_acheminement": "CHAMPIGNOLLES", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21140"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66b504729ba3226a0b17fb694db205d5fe0f53b0", "fields": {"nom_de_la_commune": "CHATEAUNEUF", "libell_d_acheminement": "CHATEAUNEUF", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21152"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c99dadc2a04b7f7669cee950eab677c4a1f5d33", "fields": {"nom_de_la_commune": "CHATILLON SUR SEINE", "libell_d_acheminement": "CHATILLON SUR SEINE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21154"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dbf103ae26ced61ce5101f9df370a06ad0c66d8", "fields": {"nom_de_la_commune": "CHAUDENAY LA VILLE", "libell_d_acheminement": "CHAUDENAY LA VILLE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21155"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb0f7df6a3b121655f829ad2da3951629f037dbb", "fields": {"nom_de_la_commune": "CHAUGEY", "libell_d_acheminement": "CHAUGEY", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21157"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2471b935fdc7238666d9f53b7db52d2bd7015673", "fields": {"nom_de_la_commune": "CHEUGE", "libell_d_acheminement": "CHEUGE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21167"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c7ea5b514d17c32fba63337ae83f7b2e953002c", "fields": {"nom_de_la_commune": "CHEVANNAY", "libell_d_acheminement": "CHEVANNAY", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21168"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d5295c5b576c025146df950c947c3fde0e86b4e", "fields": {"nom_de_la_commune": "CIVRY EN MONTAGNE", "libell_d_acheminement": "CIVRY EN MONTAGNE", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21176"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8f122da48c5054cfd86e60eadb6e1d3dae7d89", "fields": {"nom_de_la_commune": "CLEMENCEY", "libell_d_acheminement": "CLEMENCEY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21178"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c53643dab73153b4ca82d56b753e0f9e59dd0f", "fields": {"nom_de_la_commune": "COMBERTAULT", "libell_d_acheminement": "COMBERTAULT", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21185"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c67ffb9af643d498b6453ecaf8987165e9e63e7", "fields": {"nom_de_la_commune": "CORCELLES LES CITEAUX", "libell_d_acheminement": "CORCELLES LES CITEAUX", "code_postal": "21910", "coordonnees_gps": [47.1979696302, 5.07760526191], "code_commune_insee": "21191"}, "geometry": {"type": "Point", "coordinates": [5.07760526191, 47.1979696302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68ea254eaa72fb7bb10328ec986a94a714cf4655", "fields": {"nom_de_la_commune": "COULMIER LE SEC", "libell_d_acheminement": "COULMIER LE SEC", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21201"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35954684a1bb23a1f94dddeb0976f1e7bd50930a", "fields": {"nom_de_la_commune": "COUTERNON", "libell_d_acheminement": "COUTERNON", "code_postal": "21560", "coordonnees_gps": [47.326460883, 5.19639629604], "code_commune_insee": "21209"}, "geometry": {"type": "Point", "coordinates": [5.19639629604, 47.326460883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bea33d56fc59dac62a0c43155a9a090d07cb4024", "fields": {"nom_de_la_commune": "CURLEY", "libell_d_acheminement": "CURLEY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21217"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05cddaed16b7ba2b398d99c76fff9bba419e42c7", "fields": {"nom_de_la_commune": "DAIX", "libell_d_acheminement": "DAIX", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21223"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4d0a428755fd5eeb569873c9218a96b71cb7c59", "fields": {"nom_de_la_commune": "DARCEY", "libell_d_acheminement": "DARCEY", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21226"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576e33aa32dacbc1844a968b920acf1b2cbfdf61", "fields": {"nom_de_la_commune": "ECHANNAY", "libell_d_acheminement": "ECHANNAY", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21238"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2a1f6ce6e5509c097c359b9bc3ca4507a950659", "fields": {"nom_de_la_commune": "ECUTIGNY", "libell_d_acheminement": "ECUTIGNY", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21243"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d8ab664ee218643e728ee1161d7b2f0d426f5e2", "fields": {"nom_de_la_commune": "ESSEY", "libell_d_acheminement": "ESSEY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21251"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3973d75257cf61b5df64eb8fea4cbfb2961fc36c", "fields": {"nom_de_la_commune": "FIXIN", "libell_d_acheminement": "FIXIN", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21265"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1666a7807313224827a9de774ff42dc2e5fa69", "fields": {"nom_de_la_commune": "FLAVIGNEROT", "libell_d_acheminement": "FLAVIGNEROT", "code_postal": "21160", "coordonnees_gps": [47.2786553108, 4.96453888127], "code_commune_insee": "21270"}, "geometry": {"type": "Point", "coordinates": [4.96453888127, 47.2786553108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b7ed985c98174a0999f36dcd82299a8c5ea4bd5", "fields": {"nom_de_la_commune": "FLEE", "libell_d_acheminement": "FLEE", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21272"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "659b2bf4173ad15b74e45e886d173764e12e91a6", "fields": {"nom_de_la_commune": "FONTAINE LES DIJON", "libell_d_acheminement": "FONTAINE LES DIJON", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21278"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "288bebd93e84027b67f394fc4e818a5fee70cf19", "fields": {"nom_de_la_commune": "FONTANGY", "libell_d_acheminement": "FONTANGY", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21280"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14b23292c7d50cec1668cb62b6b05bf7c6632e7", "fields": {"nom_de_la_commune": "FONTENELLE", "libell_d_acheminement": "FONTENELLE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21281"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bf056124dbd5c55d3f6def319261b83c6e77fec", "fields": {"nom_de_la_commune": "FRAIGNOT ET VESVROTTE", "libell_d_acheminement": "FRAIGNOT ET VESVROTTE", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21283"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72d4a140361236f53f694c8fe95cc7067d2a840", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21284"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61923a3ffb37215dea4af2255cea40ba833a3002", "fields": {"nom_de_la_commune": "GEMEAUX", "libell_d_acheminement": "GEMEAUX", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21290"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "420eb15488c44afcf6c4f9a5b162d11a17ef6852", "fields": {"nom_de_la_commune": "GENLIS", "libell_d_acheminement": "GENLIS", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21292"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df68c3ae7f8e4535359ffce4551fe36bf856c1b1", "fields": {"nom_de_la_commune": "GEVREY CHAMBERTIN", "libell_d_acheminement": "GEVREY CHAMBERTIN", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21295"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d8690ef46835939f14603bf277da8fb80a7b37", "fields": {"nom_de_la_commune": "LES GOULLES", "libell_d_acheminement": "LES GOULLES", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21303"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fcd8493f3a801e00f57c414d72e35351c7d4d30", "fields": {"nom_de_la_commune": "GURGY LE CHATEAU", "libell_d_acheminement": "GURGY LE CHATEAU", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21313"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b0218bee215de085506600784ece64faaf337ec", "fields": {"nom_de_la_commune": "JAILLY LES MOULINS", "libell_d_acheminement": "JAILLY LES MOULINS", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21321"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2024e27f5707900bf55be769c623a406df5691ef", "fields": {"nom_de_la_commune": "JALLANGES", "libell_d_acheminement": "JALLANGES", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21322"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22707c186f6c32a3ff9ab8e8b5ca56100daffdbe", "fields": {"nom_de_la_commune": "JEUX LES BARD", "libell_d_acheminement": "JEUX LES BARD", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21324"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bc29ec2ea53befcc74d708233bafbb420309aca", "fields": {"code_postal": "21340", "code_commune_insee": "21327", "libell_d_acheminement": "VAL MONT", "ligne_5": "JOURS EN VAUX", "nom_de_la_commune": "VAL MONT", "coordonnees_gps": [46.9889799591, 4.61638229862]}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee55a294267e33fd93e0deadb8657adf29af3ee0", "fields": {"nom_de_la_commune": "LANTILLY", "libell_d_acheminement": "LANTILLY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21341"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b789dd2452a1dfdef6f76e660484bae04f240ea5", "fields": {"nom_de_la_commune": "LERY", "libell_d_acheminement": "LERY", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21345"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e83aa3955f1b5841aa1ec131a305e7d50227f0f8", "fields": {"nom_de_la_commune": "LEUGLAY", "libell_d_acheminement": "LEUGLAY", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21346"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c19a0d52e09b8676df0c0669100ef13e6a84910", "fields": {"nom_de_la_commune": "LONGECOURT EN PLAINE", "libell_d_acheminement": "LONGECOURT EN PLAINE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21353"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba4b012fed6bb5cb36bb00778d4b0b532c64e41", "fields": {"nom_de_la_commune": "LONGECOURT LES CULETRE", "libell_d_acheminement": "LONGECOURT LES CULETRE", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21354"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93eea2f31920599d2f3c08a769cf006c07e9a921", "fields": {"nom_de_la_commune": "LUSIGNY SUR OUCHE", "libell_d_acheminement": "LUSIGNY SUR OUCHE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21360"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1561b2aad3a42b40577a2e6dd061827ee32f02e", "fields": {"nom_de_la_commune": "MAGNIEN", "libell_d_acheminement": "MAGNIEN", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21363"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b4b5e0933d3934ee4e1979da16201e74921532c", "fields": {"nom_de_la_commune": "MAGNY LES AUBIGNY", "libell_d_acheminement": "MAGNY LES AUBIGNY", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21366"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d22cd29437f90b379dc594d2a006b3905033a28", "fields": {"nom_de_la_commune": "MAGNY MONTARLOT", "libell_d_acheminement": "MAGNY MONTARLOT", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21367"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a5049b0a93fdf0907d8669b062ae47fad78801c", "fields": {"nom_de_la_commune": "MAGNY LES VILLERS", "libell_d_acheminement": "MAGNY LES VILLERS", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21368"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6740d862cfd9d8285b57f29d7ec7348d3e8b8c2", "fields": {"nom_de_la_commune": "MARCHESEUIL", "libell_d_acheminement": "MARCHESEUIL", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21379"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39a5599d20959323a57a0a4a901229379953c27", "fields": {"nom_de_la_commune": "MARCILLY OGNY", "libell_d_acheminement": "MARCILLY OGNY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21382"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa65a668171953a93d29fff576d78322aff30aa4", "fields": {"nom_de_la_commune": "MARLIENS", "libell_d_acheminement": "MARLIENS", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21388"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ae16aaaab087dccbce8d77f1c2c745e2390e810", "fields": {"nom_de_la_commune": "MARSANNAY LA COTE", "libell_d_acheminement": "MARSANNAY LA COTE", "code_postal": "21160", "coordonnees_gps": [47.2786553108, 4.96453888127], "code_commune_insee": "21390"}, "geometry": {"type": "Point", "coordinates": [4.96453888127, 47.2786553108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1393d8906c3dad99c21b2807eb77c3530f716003", "fields": {"nom_de_la_commune": "MARSANNAY LE BOIS", "libell_d_acheminement": "MARSANNAY LE BOIS", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21391"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bf32f3b1f984b9cae26e21f7f7c8b1a28b0110a", "fields": {"nom_de_la_commune": "MASSINGY LES VITTEAUX", "libell_d_acheminement": "MASSINGY LES VITTEAUX", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21395"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe4ed95ea1981be8ea81fd4504c433d9636e5813", "fields": {"nom_de_la_commune": "MAXILLY SUR SAONE", "libell_d_acheminement": "MAXILLY SUR SAONE", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21398"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91bb7ca472da34fc3f9fb328b47d79f597e3c94d", "fields": {"nom_de_la_commune": "LE MEIX", "libell_d_acheminement": "LE MEIX", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21400"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6862413abaf6d4c8c84d547955bb79727aa2d93", "fields": {"nom_de_la_commune": "MEULSON", "libell_d_acheminement": "MEULSON", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21410"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdb8e68d042f4b4948716681c1eb4973c4e6ade1", "fields": {"nom_de_la_commune": "MILLERY", "libell_d_acheminement": "MILLERY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21413"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdf53786cd755bdeb8537c7bab446dac88b5fa5f", "fields": {"nom_de_la_commune": "MOITRON", "libell_d_acheminement": "MOITRON", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21418"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603e712b782817a857895a95d2de9b843615bbec", "fields": {"nom_de_la_commune": "MONTAGNY LES BEAUNE", "libell_d_acheminement": "MONTAGNY LES BEAUNE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21423"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "692a8c0b78670e5838dc818a656db195b700c417", "fields": {"nom_de_la_commune": "MONTLAY EN AUXOIS", "libell_d_acheminement": "MONTLAY EN AUXOIS", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21434"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38cc0d4a9ed0e1a13dfa83430e2c7e2d2712abf6", "fields": {"nom_de_la_commune": "MONTMANCON", "libell_d_acheminement": "MONTMANCON", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21437"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff78dc43c34e5028ce32f52a56110a048bf011e6", "fields": {"nom_de_la_commune": "MOSSON", "libell_d_acheminement": "MOSSON", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21444"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1127e9b4cdac812c2e862518d28d5aa6033d39fc", "fields": {"nom_de_la_commune": "MUSIGNY", "libell_d_acheminement": "MUSIGNY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21447"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eade26132605f31c1e21c231bbbe26f775774aa3", "fields": {"nom_de_la_commune": "NESLE ET MASSOULT", "libell_d_acheminement": "NESLE ET MASSOULT", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21451"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edd9370805064c3273aaa4464bd61fcad3a8b0f9", "fields": {"nom_de_la_commune": "NOIRON SOUS GEVREY", "libell_d_acheminement": "NOIRON SOUS GEVREY", "code_postal": "21910", "coordonnees_gps": [47.1979696302, 5.07760526191], "code_commune_insee": "21458"}, "geometry": {"type": "Point", "coordinates": [5.07760526191, 47.1979696302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3803e6aae1321ff488a3cff3ffc6741540d537a", "fields": {"nom_de_la_commune": "NOLAY", "libell_d_acheminement": "NOLAY", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21461"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a7173b90a51cb58aad78d6f42c52e6dc3d59a91", "fields": {"nom_de_la_commune": "NORMIER", "libell_d_acheminement": "NORMIER", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21463"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb74687811f10f7cdbca69f4593b3efd345c59ce", "fields": {"nom_de_la_commune": "OBTREE", "libell_d_acheminement": "OBTREE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21465"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de03a2f3329be35370fff15b9abb05e8b2d1546e", "fields": {"nom_de_la_commune": "ORAIN", "libell_d_acheminement": "ORAIN", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21468"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465af546128778140d67cc9d9eacdc18689e5c72", "fields": {"nom_de_la_commune": "ORGEUX", "libell_d_acheminement": "ORGEUX", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21469"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6efa88b924bf48698ec764c3aba60419290491", "fields": {"nom_de_la_commune": "PAGNY LE CHATEAU", "libell_d_acheminement": "PAGNY LE CHATEAU", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21475"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bf95032d1f2464c9b7c87bb3665525bbece3038", "fields": {"nom_de_la_commune": "PLANAY", "libell_d_acheminement": "PLANAY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21484"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1699711251a42ccf952e4cb9690258ec8b1305", "fields": {"nom_de_la_commune": "PLOMBIERES LES DIJON", "libell_d_acheminement": "PLOMBIERES LES DIJON", "code_postal": "21370", "coordonnees_gps": [47.3545097127, 4.89318102918], "code_commune_insee": "21485"}, "geometry": {"type": "Point", "coordinates": [4.89318102918, 47.3545097127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee23f37825117333ea6c0cc82eb3a1a94dbc289", "fields": {"nom_de_la_commune": "PLUVAULT", "libell_d_acheminement": "PLUVAULT", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21486"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a85a341815a2aa0b37f9e00b43095ab8e07db13", "fields": {"nom_de_la_commune": "PLUVET", "libell_d_acheminement": "PLUVET", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21487"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0616ee2bc81fe05e1506b5cadac5fa7e565dd924", "fields": {"nom_de_la_commune": "POISEUL LA GRANGE", "libell_d_acheminement": "POISEUL LA GRANGE", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21489"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f56fbf50e3fe712b993942f0269da106806ec5a2", "fields": {"nom_de_la_commune": "POISEUL LES SAULX", "libell_d_acheminement": "POISEUL LES SAULX", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21491"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "725e5c736e117648a5f353ba5d6f41bf75eef64d", "fields": {"nom_de_la_commune": "POUILLY EN AUXOIS", "libell_d_acheminement": "POUILLY EN AUXOIS", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21501"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d5393fc68a99d8459ba6977fbe6aa1c5391724", "fields": {"nom_de_la_commune": "PULIGNY MONTRACHET", "libell_d_acheminement": "PULIGNY MONTRACHET", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21512"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8effa67e5ad3ef18dabcdd013c78c39243a8e20e", "fields": {"nom_de_la_commune": "LA ROCHE EN BRENIL", "libell_d_acheminement": "LA ROCHE EN BRENIL", "code_postal": "21530", "coordonnees_gps": [47.3897025459, 4.14447335078], "code_commune_insee": "21525"}, "geometry": {"type": "Point", "coordinates": [4.14447335078, 47.3897025459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c5d1a468866bd5fb2e341b76ab04730ad45397", "fields": {"nom_de_la_commune": "ROUVRAY", "libell_d_acheminement": "ROUVRAY", "code_postal": "21530", "coordonnees_gps": [47.3897025459, 4.14447335078], "code_commune_insee": "21531"}, "geometry": {"type": "Point", "coordinates": [4.14447335078, 47.3897025459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a59db45347ae9dec5d5c58b95b9ff27f2bb08c", "fields": {"nom_de_la_commune": "STE COLOMBE EN AUXOIS", "libell_d_acheminement": "STE COLOMBE EN AUXOIS", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21544"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3185c4e1d8c13f771751126a3528c38ae85e8d63", "fields": {"nom_de_la_commune": "MURBACH", "libell_d_acheminement": "MURBACH", "code_postal": "68530", "coordonnees_gps": [47.9213082038, 7.15976445089], "code_commune_insee": "68229"}, "geometry": {"type": "Point", "coordinates": [7.15976445089, 47.9213082038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38d8017a821bdaa8584d133eb71c9c6e79c866a5", "fields": {"nom_de_la_commune": "NIEDERENTZEN", "libell_d_acheminement": "NIEDERENTZEN", "code_postal": "68127", "coordonnees_gps": [47.9788629564, 7.39190027996], "code_commune_insee": "68234"}, "geometry": {"type": "Point", "coordinates": [7.39190027996, 47.9788629564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5609eed0391539e944a98399ac392922aa2d31b0", "fields": {"code_postal": "68960", "code_commune_insee": "68240", "libell_d_acheminement": "ILLTAL", "ligne_5": "GRENTZINGEN", "nom_de_la_commune": "ILLTAL", "coordonnees_gps": [47.5717118449, 7.32148674865]}, "geometry": {"type": "Point", "coordinates": [7.32148674865, 47.5717118449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cf613ebeec0e2d2b60c8183f6355ecd5ad310bc", "fields": {"nom_de_la_commune": "OBERLARG", "libell_d_acheminement": "OBERLARG", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68243"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82f9e92609f53a68d623590a1421a2a64a7c8901", "fields": {"nom_de_la_commune": "OSENBACH", "libell_d_acheminement": "OSENBACH", "code_postal": "68570", "coordonnees_gps": [47.9749178852, 7.21383132729], "code_commune_insee": "68251"}, "geometry": {"type": "Point", "coordinates": [7.21383132729, 47.9749178852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93c72751294c900e0a4980fbc41dc50abcf4b464", "fields": {"nom_de_la_commune": "OSTHEIM", "libell_d_acheminement": "OSTHEIM", "code_postal": "68150", "coordonnees_gps": [48.1955023009, 7.29565988494], "code_commune_insee": "68252"}, "geometry": {"type": "Point", "coordinates": [7.29565988494, 48.1955023009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd6f6d9fcb5baad1c26bd8f7b23f557a47396e2", "fields": {"nom_de_la_commune": "PETIT LANDAU", "libell_d_acheminement": "PETIT LANDAU", "code_postal": "68490", "coordonnees_gps": [47.7817852652, 7.50128243869], "code_commune_insee": "68254"}, "geometry": {"type": "Point", "coordinates": [7.50128243869, 47.7817852652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4874b886ae481f7eb863a6db1747aa2f0a64406a", "fields": {"nom_de_la_commune": "RANSPACH", "libell_d_acheminement": "RANSPACH", "code_postal": "68470", "coordonnees_gps": [47.8911637424, 6.97731625336], "code_commune_insee": "68262"}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fb362fb0221ea8c31d067260c2baa494ca3b2a0", "fields": {"nom_de_la_commune": "RETZWILLER", "libell_d_acheminement": "RETZWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68268"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aadc64b5f50199491523853af07f951af30fd48", "fields": {"nom_de_la_commune": "RIBEAUVILLE", "libell_d_acheminement": "RIBEAUVILLE", "code_postal": "68150", "coordonnees_gps": [48.1955023009, 7.29565988494], "code_commune_insee": "68269"}, "geometry": {"type": "Point", "coordinates": [7.29565988494, 48.1955023009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9741305d28658b7277cee700235692a1f73d8f25", "fields": {"nom_de_la_commune": "RODEREN", "libell_d_acheminement": "RODEREN", "code_postal": "68800", "coordonnees_gps": [47.7994545972, 7.09241843411], "code_commune_insee": "68279"}, "geometry": {"type": "Point", "coordinates": [7.09241843411, 47.7994545972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81360c727b08470125c0df6ce3cc3bc5b37728e", "fields": {"nom_de_la_commune": "RORSCHWIHR", "libell_d_acheminement": "RORSCHWIHR", "code_postal": "68590", "coordonnees_gps": [48.2362819475, 7.33191620928], "code_commune_insee": "68285"}, "geometry": {"type": "Point", "coordinates": [7.33191620928, 48.2362819475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58edddc7951427601359592cb389571664ca9079", "fields": {"nom_de_la_commune": "RUEDERBACH", "libell_d_acheminement": "RUEDERBACH", "code_postal": "68560", "coordonnees_gps": [47.5764862918, 7.25411571826], "code_commune_insee": "68288"}, "geometry": {"type": "Point", "coordinates": [7.25411571826, 47.5764862918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15aefd858c9dfc273151546aafbeb167d4b2b837", "fields": {"nom_de_la_commune": "ST AMARIN", "libell_d_acheminement": "ST AMARIN", "code_postal": "68550", "coordonnees_gps": [47.8832667116, 7.03896446399], "code_commune_insee": "68292"}, "geometry": {"type": "Point", "coordinates": [7.03896446399, 47.8832667116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5167866e77e67d04cb30f5d9ad36a895aaf4b236", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "68590", "coordonnees_gps": [48.2362819475, 7.33191620928], "code_commune_insee": "68296"}, "geometry": {"type": "Point", "coordinates": [7.33191620928, 48.2362819475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd58b8585e5124604b57fb0a0ebb7267e1c138b3", "fields": {"nom_de_la_commune": "ST ULRICH", "libell_d_acheminement": "ST ULRICH", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68299"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de69a867785b570b5f18c118e3b5765b758118de", "fields": {"nom_de_la_commune": "SEPPOIS LE HAUT", "libell_d_acheminement": "SEPPOIS LE HAUT", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68306"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179932c9a1aae252b5c948d3321fed8c049b9f51", "fields": {"nom_de_la_commune": "SIERENTZ", "libell_d_acheminement": "SIERENTZ", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68309"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdb2163f8cda55b63c96876ae28effb3a2ef2a41", "fields": {"nom_de_la_commune": "SOPPE LE BAS", "libell_d_acheminement": "SOPPE LE BAS", "code_postal": "68780", "coordonnees_gps": [47.7234740275, 7.06962991753], "code_commune_insee": "68313"}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5baad32679868a5b5691a802878fe0353d878e97", "fields": {"nom_de_la_commune": "SOULTZ HAUT RHIN", "libell_d_acheminement": "SOULTZ HAUT RHIN", "code_postal": "68360", "coordonnees_gps": [47.8825452094, 7.17912076707], "code_commune_insee": "68315"}, "geometry": {"type": "Point", "coordinates": [7.17912076707, 47.8825452094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adae8bec33822ccb124d14677c884dd33f58a6b7", "fields": {"code_postal": "68570", "code_commune_insee": "68318", "libell_d_acheminement": "SOULTZMATT", "ligne_5": "WINTZFELDEN", "nom_de_la_commune": "SOULTZMATT", "coordonnees_gps": [47.9749178852, 7.21383132729]}, "geometry": {"type": "Point", "coordinates": [7.21383132729, 47.9749178852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10f174eb89cdd68f06fcc3f90717788b66bc475", "fields": {"nom_de_la_commune": "STAFFELFELDEN", "libell_d_acheminement": "STAFFELFELDEN", "code_postal": "68850", "coordonnees_gps": [47.8270625679, 7.25276882915], "code_commune_insee": "68321"}, "geometry": {"type": "Point", "coordinates": [7.25276882915, 47.8270625679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ad521d66b1c53e2916565779f52469bf5f88f6e", "fields": {"nom_de_la_commune": "STERNENBERG", "libell_d_acheminement": "STERNENBERG", "code_postal": "68780", "coordonnees_gps": [47.7234740275, 7.06962991753], "code_commune_insee": "68326"}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77a73545f6e3cd2ae47a8d69ee5b35529519e423", "fields": {"nom_de_la_commune": "STETTEN", "libell_d_acheminement": "STETTEN", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68327"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9719359a0570abe7f3c77b8d6a26c4e3ef431caa", "fields": {"nom_de_la_commune": "STRUETH", "libell_d_acheminement": "STRUETH", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68330"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5249662a8b5743c9449c3e5fa9e975749e4a7d85", "fields": {"nom_de_la_commune": "SUNDHOFFEN", "libell_d_acheminement": "SUNDHOFFEN", "code_postal": "68280", "coordonnees_gps": [48.0441812016, 7.43245539363], "code_commune_insee": "68331"}, "geometry": {"type": "Point", "coordinates": [7.43245539363, 48.0441812016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd9850b3e02b65b6db85cd1b0f1a4c004237139a", "fields": {"nom_de_la_commune": "THANNENKIRCH", "libell_d_acheminement": "THANNENKIRCH", "code_postal": "68590", "coordonnees_gps": [48.2362819475, 7.33191620928], "code_commune_insee": "68335"}, "geometry": {"type": "Point", "coordinates": [7.33191620928, 48.2362819475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "738b19a7518679f3d65b0424cb00f039cb931cf5", "fields": {"nom_de_la_commune": "UNGERSHEIM", "libell_d_acheminement": "UNGERSHEIM", "code_postal": "68190", "coordonnees_gps": [47.8612458222, 7.34670995091], "code_commune_insee": "68343"}, "geometry": {"type": "Point", "coordinates": [7.34670995091, 47.8612458222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81347fd1a9fe3af9f29b042f1efeaab1cc1e05bc", "fields": {"nom_de_la_commune": "URSCHENHEIM", "libell_d_acheminement": "URSCHENHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68345"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93a305db3dbe9639add284f8eff515e018db6058", "fields": {"nom_de_la_commune": "VIEUX FERRETTE", "libell_d_acheminement": "VIEUX FERRETTE", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68347"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ad0e8366973ac902574b9c15074cbe10d3225d", "fields": {"nom_de_la_commune": "VOGELGRUN", "libell_d_acheminement": "VOGELGRUN", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68351"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7d837da853d929408f8c8a40e8baa1f182d2ed8", "fields": {"nom_de_la_commune": "VOLGELSHEIM", "libell_d_acheminement": "VOLGELSHEIM", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68352"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "661f46c8019ec452d5a686d28c5b44f52ab31481", "fields": {"nom_de_la_commune": "WALBACH", "libell_d_acheminement": "WALBACH", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68354"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac14d4de2e9511b909a208475a3e1accb9c3dbe1", "fields": {"nom_de_la_commune": "WALHEIM", "libell_d_acheminement": "WALHEIM", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68356"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d15bf471fb99461cee8a7874d7cb5c02d927708", "fields": {"nom_de_la_commune": "WECKOLSHEIM", "libell_d_acheminement": "WECKOLSHEIM", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68360"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5393bb39dc50119120753cec883f9b79fbb8d3f2", "fields": {"nom_de_la_commune": "WERENTZHOUSE", "libell_d_acheminement": "WERENTZHOUSE", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68363"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e050f5aa92a6a71ef4175fe1b583c440a331066e", "fields": {"nom_de_la_commune": "WIHR AU VAL", "libell_d_acheminement": "WIHR AU VAL", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68368"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47a845a7a1ceef7b3087f113a151da62145769fa", "fields": {"nom_de_la_commune": "WINTZENHEIM", "libell_d_acheminement": "WINTZENHEIM", "code_postal": "68920", "coordonnees_gps": [48.0596682305, 7.28277674315], "code_commune_insee": "68374"}, "geometry": {"type": "Point", "coordinates": [7.28277674315, 48.0596682305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057a82a3f98f8b44090998e39e71e880051f00b3", "fields": {"nom_de_la_commune": "WITTENHEIM", "libell_d_acheminement": "WITTENHEIM", "code_postal": "68270", "coordonnees_gps": [47.8139348594, 7.32361311446], "code_commune_insee": "68376"}, "geometry": {"type": "Point", "coordinates": [7.32361311446, 47.8139348594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb61db748625759b2d3fae20b5324db6de483581", "fields": {"nom_de_la_commune": "ZIMMERSHEIM", "libell_d_acheminement": "ZIMMERSHEIM", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68386"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f58549ec8c928ebb265722b85339d0a507f5833", "fields": {"nom_de_la_commune": "AIGUEPERSE", "libell_d_acheminement": "AIGUEPERSE", "code_postal": "69790", "coordonnees_gps": [46.2387836899, 4.44287004502], "code_commune_insee": "69002"}, "geometry": {"type": "Point", "coordinates": [4.44287004502, 46.2387836899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc65ee9cdc0f20ba86e3b74ff912ed75a58cb5b", "fields": {"code_postal": "69550", "code_commune_insee": "69006", "libell_d_acheminement": "AMPLEPUIS", "ligne_5": "ROCHEFORT", "nom_de_la_commune": "AMPLEPUIS", "coordonnees_gps": [45.9921852831, 4.36092903246]}, "geometry": {"type": "Point", "coordinates": [4.36092903246, 45.9921852831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f10f6867a001feff8f295570e0f57f60315fb83d", "fields": {"nom_de_la_commune": "ANSE", "libell_d_acheminement": "ANSE", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69009"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07d5e89b5b42295eb454c6c71b7d9b08c4636813", "fields": {"nom_de_la_commune": "L ARBRESLE", "libell_d_acheminement": "L ARBRESLE", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69010"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d08abd91d04ab1d5d0fa104f8ed6e083294d1b", "fields": {"code_postal": "69690", "code_commune_insee": "69021", "libell_d_acheminement": "BESSENAY", "ligne_5": "LA GIRAUDIERE", "nom_de_la_commune": "BESSENAY", "coordonnees_gps": [45.7650952227, 4.53742435922]}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "128516a49b6631d10b8fff9304794bb78c2ebbf0", "fields": {"code_postal": "69690", "code_commune_insee": "69021", "libell_d_acheminement": "BESSENAY", "ligne_5": "LURCIEUX", "nom_de_la_commune": "BESSENAY", "coordonnees_gps": [45.7650952227, 4.53742435922]}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b88dd7ad120353ffbfebdeb1ae49ea89c7f50a03", "fields": {"code_postal": "69690", "code_commune_insee": "69021", "libell_d_acheminement": "BESSENAY", "ligne_5": "POMERIEUX", "nom_de_la_commune": "BESSENAY", "coordonnees_gps": [45.7650952227, 4.53742435922]}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3446a0e5ef0bbcbb7415baa63884f5d67341dd", "fields": {"nom_de_la_commune": "BLACE", "libell_d_acheminement": "BLACE", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69023"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c07f3934227dba31164d87d6a99a49f857cdc772", "fields": {"code_postal": "69530", "code_commune_insee": "69027", "libell_d_acheminement": "BRIGNAIS", "ligne_5": "SEPT CHEMINS", "nom_de_la_commune": "BRIGNAIS", "coordonnees_gps": [45.6692860968, 4.73618397789]}, "geometry": {"type": "Point", "coordinates": [4.73618397789, 45.6692860968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5434c12b28ddcf190e285e54fa29e7914edaf8", "fields": {"nom_de_la_commune": "BRULLIOLES", "libell_d_acheminement": "BRULLIOLES", "code_postal": "69690", "coordonnees_gps": [45.7650952227, 4.53742435922], "code_commune_insee": "69030"}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f09e743358a4978dc5bf1f51f0637f8a0841ad8", "fields": {"nom_de_la_commune": "CALUIRE ET CUIRE", "libell_d_acheminement": "CALUIRE ET CUIRE", "code_postal": "69300", "coordonnees_gps": [45.7973384596, 4.85199601768], "code_commune_insee": "69034"}, "geometry": {"type": "Point", "coordinates": [4.85199601768, 45.7973384596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f66ced75a079ab29afbd1c499940af5cc926f2f", "fields": {"nom_de_la_commune": "CHARLY", "libell_d_acheminement": "CHARLY", "code_postal": "69390", "coordonnees_gps": [45.6449321892, 4.78398402177], "code_commune_insee": "69046"}, "geometry": {"type": "Point", "coordinates": [4.78398402177, 45.6449321892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05a7bb7d5d78243c587413981718d7b7c698053e", "fields": {"nom_de_la_commune": "CHARNAY", "libell_d_acheminement": "CHARNAY", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69047"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04f39239c752f7d14d899366433f1e3f476b40c7", "fields": {"nom_de_la_commune": "CHAUSSAN", "libell_d_acheminement": "CHAUSSAN", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69051"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2250e5ba1b6bb4cfe0199a0d07000c9cddf843", "fields": {"nom_de_la_commune": "CHESSY", "libell_d_acheminement": "CHESSY", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69056"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1b63d961bda0b4e95ad4fda80097f327c1c5f0d", "fields": {"nom_de_la_commune": "CONDRIEU", "libell_d_acheminement": "CONDRIEU", "code_postal": "69420", "coordonnees_gps": [45.5036780287, 4.73457399039], "code_commune_insee": "69064"}, "geometry": {"type": "Point", "coordinates": [4.73457399039, 45.5036780287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888bae24af2d23885ed59097a1945d90047d6ee1", "fields": {"code_postal": "69240", "code_commune_insee": "69066", "libell_d_acheminement": "COURS", "ligne_5": "PONT TRAMBOUZE", "nom_de_la_commune": "COURS", "coordonnees_gps": [46.068199037, 4.3380922269]}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39d0468a6139136dc404334dfdaa12b74323f682", "fields": {"code_postal": "69470", "code_commune_insee": "69066", "libell_d_acheminement": "COURS", "ligne_5": "THEL", "nom_de_la_commune": "COURS", "coordonnees_gps": [46.1151639398, 4.3657661109]}, "geometry": {"type": "Point", "coordinates": [4.3657661109, 46.1151639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6d755f030ea5e7a24681c0a74fc6534d696251", "fields": {"nom_de_la_commune": "CRAPONNE", "libell_d_acheminement": "CRAPONNE", "code_postal": "69290", "coordonnees_gps": [45.759176161, 4.68473995585], "code_commune_insee": "69069"}, "geometry": {"type": "Point", "coordinates": [4.68473995585, 45.759176161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31d8e60b960851c7b4c3be9e8e24eed1de19792a", "fields": {"nom_de_la_commune": "DARDILLY", "libell_d_acheminement": "DARDILLY", "code_postal": "69570", "coordonnees_gps": [45.8121343221, 4.74664425664], "code_commune_insee": "69072"}, "geometry": {"type": "Point", "coordinates": [4.74664425664, 45.8121343221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c95d3802c043f22b881cdd7b25ec6aa4ec331e6b", "fields": {"nom_de_la_commune": "DIEME", "libell_d_acheminement": "DIEME", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69075"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4a96536f5c9a35b76add528e210db15538f958f", "fields": {"code_postal": "69700", "code_commune_insee": "69080", "libell_d_acheminement": "ECHALAS", "ligne_5": "LA RODIERE", "nom_de_la_commune": "ECHALAS", "coordonnees_gps": [45.5741550977, 4.73818709302]}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35a58e9238371321d83758e2f91d6ae3419011d4", "fields": {"nom_de_la_commune": "EMERINGES", "libell_d_acheminement": "EMERINGES", "code_postal": "69840", "coordonnees_gps": [46.255819041, 4.67514291192], "code_commune_insee": "69082"}, "geometry": {"type": "Point", "coordinates": [4.67514291192, 46.255819041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b3894b14dce9f4b6c52ea3bdb2e2ce76164435", "fields": {"nom_de_la_commune": "FLEURIEU SUR SAONE", "libell_d_acheminement": "FLEURIEU SUR SAONE", "code_postal": "69250", "coordonnees_gps": [45.8691904995, 4.83538598434], "code_commune_insee": "69085"}, "geometry": {"type": "Point", "coordinates": [4.83538598434, 45.8691904995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb8fa52ec5eab89afd9527d0046504cad2c341f", "fields": {"nom_de_la_commune": "GRANDRIS", "libell_d_acheminement": "GRANDRIS", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69093"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930681ba3d71e67f2a48fd08e96195d52c7efc69", "fields": {"nom_de_la_commune": "GREZIEU LE MARCHE", "libell_d_acheminement": "GREZIEU LE MARCHE", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69095"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b182568525aeba4ce16aefe9903eaa2a7f59c92", "fields": {"nom_de_la_commune": "JARNIOUX", "libell_d_acheminement": "JARNIOUX", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69101"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096e1272a5b35a64960238129510c59beac8782b", "fields": {"nom_de_la_commune": "LACENAS", "libell_d_acheminement": "LACENAS", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69105"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "851f063001cfadffc5746ba79ef0312ab51261d6", "fields": {"nom_de_la_commune": "LACHASSAGNE", "libell_d_acheminement": "LACHASSAGNE", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69106"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8221d9ba01cfe8129141944bc5fc39408f482a", "fields": {"nom_de_la_commune": "LIERGUES", "libell_d_acheminement": "LIERGUES", "code_postal": "69400", "coordonnees_gps": [45.9927200348, 4.70137722216], "code_commune_insee": "69114"}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5faf9f91d61c938f76a723eb4b84647ea2bf48f", "fields": {"nom_de_la_commune": "LOZANNE", "libell_d_acheminement": "LOZANNE", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69121"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ce8d8c9abac018e23d61ceb181c1e2c90310c9", "fields": {"nom_de_la_commune": "MARCHAMPT", "libell_d_acheminement": "MARCHAMPT", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69124"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "163a258ce1c58c4122ab0b2dc29c41feea1e65c1", "fields": {"nom_de_la_commune": "MESSIMY", "libell_d_acheminement": "MESSIMY", "code_postal": "69510", "coordonnees_gps": [45.6836936194, 4.64151349794], "code_commune_insee": "69131"}, "geometry": {"type": "Point", "coordinates": [4.64151349794, 45.6836936194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbbbc8d06cfe02f7083ea6026437232d8f961ee9", "fields": {"code_postal": "69700", "code_commune_insee": "69136", "libell_d_acheminement": "MONTAGNY", "ligne_5": "SOURZY", "nom_de_la_commune": "MONTAGNY", "coordonnees_gps": [45.5741550977, 4.73818709302]}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ba5084a7926458d602f2f9c0669d7733a98886", "fields": {"nom_de_la_commune": "MONTROMANT", "libell_d_acheminement": "MONTROMANT", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69138"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae43f4d7f69e195d48e7af60b811382659385484", "fields": {"nom_de_la_commune": "ORLIENAS", "libell_d_acheminement": "ORLIENAS", "code_postal": "69530", "coordonnees_gps": [45.6692860968, 4.73618397789], "code_commune_insee": "69148"}, "geometry": {"type": "Point", "coordinates": [4.73618397789, 45.6692860968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8de09a2b291e0e95226bb4f612d620aff13ca59", "fields": {"nom_de_la_commune": "POMMIERS", "libell_d_acheminement": "POMMIERS", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69156"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e77a9d11058c453ebb738ff90f9be03491ee06", "fields": {"nom_de_la_commune": "PONTCHARRA SUR TURDINE", "libell_d_acheminement": "PONTCHARRA SUR TURDINE", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69157"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c881b680540e97c6780404f33b122c65898096ea", "fields": {"code_postal": "69870", "code_commune_insee": "69160", "libell_d_acheminement": "POULE LES ECHARMEAUX", "ligne_5": "LES ECHARMEAUX", "nom_de_la_commune": "POULE LES ECHARMEAUX", "coordonnees_gps": [46.0726954495, 4.47616279948]}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29da06f5494c50ae0b694761e41a5f5fd582892d", "fields": {"nom_de_la_commune": "PROPIERES", "libell_d_acheminement": "PROPIERES", "code_postal": "69790", "coordonnees_gps": [46.2387836899, 4.44287004502], "code_commune_insee": "69161"}, "geometry": {"type": "Point", "coordinates": [4.44287004502, 46.2387836899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "043f7531d8894d8f105a05aa86825c4bf0202ecb", "fields": {"nom_de_la_commune": "QUINCIE EN BEAUJOLAIS", "libell_d_acheminement": "QUINCIE EN BEAUJOLAIS", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69162"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b83cb5fc9bc869b272ac8783e2dac9269b9714cd", "fields": {"nom_de_la_commune": "QUINCIEUX", "libell_d_acheminement": "QUINCIEUX", "code_postal": "69650", "coordonnees_gps": [45.9066632168, 4.77988649685], "code_commune_insee": "69163"}, "geometry": {"type": "Point", "coordinates": [4.77988649685, 45.9066632168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d9485edc9a110de2296fed4fab11eec9eacf9b", "fields": {"nom_de_la_commune": "REGNIE DURETTE", "libell_d_acheminement": "REGNIE DURETTE", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69165"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e8ebf8035781640a92e4c3c2c8ceabedb11577", "fields": {"code_postal": "69430", "code_commune_insee": "69165", "libell_d_acheminement": "REGNIE DURETTE", "ligne_5": "DURETTE", "nom_de_la_commune": "REGNIE DURETTE", "coordonnees_gps": [46.1511962743, 4.57003815415]}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01f5b2e290493b66c94f867cf6364fbff75e449a", "fields": {"code_postal": "69460", "code_commune_insee": "69172", "libell_d_acheminement": "SALLES ARBUISSONNAS BEAUJOLAIS", "ligne_5": "ARBUISSONNAS", "nom_de_la_commune": "SALLES ARBUISSONNAS EN BEAUJOLAIS", "coordonnees_gps": [46.0598992865, 4.61285199176]}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f31eb6bf558df8dc2fc522f268804c49674efbe8", "fields": {"code_postal": "69440", "code_commune_insee": "69184", "libell_d_acheminement": "STE CATHERINE", "ligne_5": "LA FLACHERE", "nom_de_la_commune": "STE CATHERINE", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c1e8618db820185d45b3bac22b6b6e05d7ccdc", "fields": {"nom_de_la_commune": "ST DIDIER SUR BEAUJEU", "libell_d_acheminement": "ST DIDIER SUR BEAUJEU", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69196"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dec2b7f4dd0df3da8fbfcc2e9d24ac7a8a68784", "fields": {"nom_de_la_commune": "ST FONS", "libell_d_acheminement": "ST FONS", "code_postal": "69190", "coordonnees_gps": [45.7014463321, 4.85044216198], "code_commune_insee": "69199"}, "geometry": {"type": "Point", "coordinates": [4.85044216198, 45.7014463321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e27e09f8ae2d55cdce1a645e1177167d8be265", "fields": {"code_postal": "69210", "code_commune_insee": "69208", "libell_d_acheminement": "ST GERMAIN NUELLES", "ligne_5": "NUELLES", "nom_de_la_commune": "ST GERMAIN NUELLES", "coordonnees_gps": [45.8200332859, 4.61385272872]}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87b9aace0a9238eb64a3d5953e14cbc8d78c0a26", "fields": {"nom_de_la_commune": "ST JACQUES DES ARRETS", "libell_d_acheminement": "ST JACQUES DES ARRETS", "code_postal": "69860", "coordonnees_gps": [46.2400571713, 4.55489493193], "code_commune_insee": "69210"}, "geometry": {"type": "Point", "coordinates": [4.55489493193, 46.2400571713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb935bfd8931bc032183ea65ab6188ed10dda29", "fields": {"nom_de_la_commune": "ST JEAN D ARDIERES", "libell_d_acheminement": "ST JEAN D ARDIERES", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69211"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d3e28764c981fa5b88bd03dee61a7a362a315b7", "fields": {"nom_de_la_commune": "ST JEAN DES VIGNES", "libell_d_acheminement": "ST JEAN DES VIGNES", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69212"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31a2d9c8076e12440fe8a9b798af32fc8f787656", "fields": {"code_postal": "69640", "code_commune_insee": "69215", "libell_d_acheminement": "ST JULIEN", "ligne_5": "LA ROCHE", "nom_de_la_commune": "ST JULIEN", "coordonnees_gps": [45.9971718546, 4.6146387877]}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "816148659ceb372489adda794cfa3500e5ca03e0", "fields": {"nom_de_la_commune": "ST LAURENT DE CHAMOUSSET", "libell_d_acheminement": "ST LAURENT DE CHAMOUSSET", "code_postal": "69930", "coordonnees_gps": [45.7453041401, 4.44630555022], "code_commune_insee": "69220"}, "geometry": {"type": "Point", "coordinates": [4.44630555022, 45.7453041401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2564c4f7f7419767de955bb9679c7946ff53a107", "fields": {"nom_de_la_commune": "ST LAURENT D OINGT", "libell_d_acheminement": "ST LAURENT D OINGT", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69222"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceaa7402a7baddea4d18917e6140d51b42aaba2c", "fields": {"nom_de_la_commune": "ST MAMERT", "libell_d_acheminement": "ST MAMERT", "code_postal": "69860", "coordonnees_gps": [46.2400571713, 4.55489493193], "code_commune_insee": "69224"}, "geometry": {"type": "Point", "coordinates": [4.55489493193, 46.2400571713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6e36911ce725828c9eb4db5778b4bcd80caaf3", "fields": {"nom_de_la_commune": "ST NIZIER D AZERGUES", "libell_d_acheminement": "ST NIZIER D AZERGUES", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69229"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86d89dfbb96f096accbdec7010ae1728aede4607", "fields": {"nom_de_la_commune": "STE PAULE", "libell_d_acheminement": "STE PAULE", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69230"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcf3a33a3fb57436903c4580a064fe6005e45349", "fields": {"nom_de_la_commune": "ST PIERRE LA PALUD", "libell_d_acheminement": "ST PIERRE LA PALUD", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69231"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19520c62009eb179965be420afea964ec095e32", "fields": {"nom_de_la_commune": "ST SORLIN", "libell_d_acheminement": "ST SORLIN", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69237"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b6e4fb4e0422d221e566869fe557dcb58962d53", "fields": {"nom_de_la_commune": "BLANDAS", "libell_d_acheminement": "BLANDAS", "code_postal": "30770", "coordonnees_gps": [43.9504922652, 3.46315986765], "code_commune_insee": "30040"}, "geometry": {"type": "Point", "coordinates": [3.46315986765, 43.9504922652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01dedf70d9e7ef69b97e514625561c59dadb19a9", "fields": {"nom_de_la_commune": "BOISSIERES", "libell_d_acheminement": "BOISSIERES", "code_postal": "30114", "coordonnees_gps": [43.7816107719, 4.23187621337], "code_commune_insee": "30043"}, "geometry": {"type": "Point", "coordinates": [4.23187621337, 43.7816107719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8247981a90f13499c3c65375d3ca5df7ca5494a2", "fields": {"nom_de_la_commune": "BOUILLARGUES", "libell_d_acheminement": "BOUILLARGUES", "code_postal": "30230", "coordonnees_gps": [43.8071223757, 4.43456661825], "code_commune_insee": "30047"}, "geometry": {"type": "Point", "coordinates": [4.43456661825, 43.8071223757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "259bd93459c914eb54d1135c6803c33bdaebddcb", "fields": {"nom_de_la_commune": "BOUQUET", "libell_d_acheminement": "BOUQUET", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30048"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a088b6e8c43ab3ecd44a0ecb23562d5013a8947a", "fields": {"nom_de_la_commune": "LA CAPELLE ET MASMOLENE", "libell_d_acheminement": "LA CAPELLE ET MASMOLENE", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30067"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe6ed73ac7f657e8e6f86d94b5cb7718b25bbc93", "fields": {"nom_de_la_commune": "CARNAS", "libell_d_acheminement": "CARNAS", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30069"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dff492a85052e8586a47b982484905ec2c2252c", "fields": {"nom_de_la_commune": "CARSAN", "libell_d_acheminement": "CARSAN", "code_postal": "30130", "coordonnees_gps": [44.2445980567, 4.61246226346], "code_commune_insee": "30070"}, "geometry": {"type": "Point", "coordinates": [4.61246226346, 44.2445980567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7eabc91dc266bcdecec407534543f71078fa6d6", "fields": {"nom_de_la_commune": "CASTELNAU VALENCE", "libell_d_acheminement": "CASTELNAU VALENCE", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30072"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e75463f98be450ba22e207eab779e63ce3f6e0", "fields": {"nom_de_la_commune": "CAUSSE BEGON", "libell_d_acheminement": "CAUSSE BEGON", "code_postal": "30750", "coordonnees_gps": [44.0925479958, 3.41838052673], "code_commune_insee": "30074"}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d9b7b0a0cdc5ef4980c6cc66b0bb1f2490b736", "fields": {"nom_de_la_commune": "CODOLET", "libell_d_acheminement": "CODOLET", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30084"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69925a874dedd0afe5dce586d3006c52a0b3e982", "fields": {"nom_de_la_commune": "CORBES", "libell_d_acheminement": "CORBES", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30094"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fb2fcc0098cda2ce6da25ff2106f99ca5f7cd3", "fields": {"nom_de_la_commune": "CORCONNE", "libell_d_acheminement": "CORCONNE", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30095"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f08cfbe95a04f926769dcb18460f5435871b8d", "fields": {"nom_de_la_commune": "COURRY", "libell_d_acheminement": "COURRY", "code_postal": "30500", "coordonnees_gps": [44.2403757272, 4.22000771544], "code_commune_insee": "30097"}, "geometry": {"type": "Point", "coordinates": [4.22000771544, 44.2403757272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf893c161bb5e07dfd3ba5647305b586a360f4d", "fields": {"nom_de_la_commune": "DOMAZAN", "libell_d_acheminement": "DOMAZAN", "code_postal": "30390", "coordonnees_gps": [43.9188039715, 4.66026536244], "code_commune_insee": "30103"}, "geometry": {"type": "Point", "coordinates": [4.66026536244, 43.9188039715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "691d9a94d2368760a09f18c91d59deea9c3ee809", "fields": {"nom_de_la_commune": "DOURBIES", "libell_d_acheminement": "DOURBIES", "code_postal": "30750", "coordonnees_gps": [44.0925479958, 3.41838052673], "code_commune_insee": "30105"}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fac46870453cc42b75bbb7a7779b9f60a97b7c8", "fields": {"nom_de_la_commune": "FOISSAC", "libell_d_acheminement": "FOISSAC", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30111"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "409c495ae917732381fd4039bfa1565cf1ffb32d", "fields": {"nom_de_la_commune": "FONTARECHES", "libell_d_acheminement": "FONTARECHES", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30115"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca80f57ff947c871d9d6406d60ed87a4a4aa894e", "fields": {"nom_de_la_commune": "GAILHAN", "libell_d_acheminement": "GAILHAN", "code_postal": "30260", "coordonnees_gps": [43.8844942782, 4.02793368235], "code_commune_insee": "30121"}, "geometry": {"type": "Point", "coordinates": [4.02793368235, 43.8844942782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f79790fde19ffccfde2fb3dfcd99a46fd9224e47", "fields": {"nom_de_la_commune": "GALLARGUES LE MONTUEUX", "libell_d_acheminement": "GALLARGUES LE MONTUEUX", "code_postal": "30660", "coordonnees_gps": [43.716841754, 4.17186706419], "code_commune_insee": "30123"}, "geometry": {"type": "Point", "coordinates": [4.17186706419, 43.716841754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83bd37e2d539442d36728e7682af9582b9a1bb02", "fields": {"nom_de_la_commune": "LE GARN", "libell_d_acheminement": "LE GARN", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30124"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39a63c2586e9d2cab231f0f9d389219be7d3b345", "fields": {"nom_de_la_commune": "GAUJAC", "libell_d_acheminement": "GAUJAC", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30127"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de3e8e38af49b3dd3aef9d8e9ff98671ade24ec", "fields": {"code_postal": "30110", "code_commune_insee": "30132", "libell_d_acheminement": "LA GRAND COMBE", "ligne_5": "LA LEVADE", "nom_de_la_commune": "LA GRAND COMBE", "coordonnees_gps": [44.216874821, 4.00813829551]}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c18fec7631f0bdb51e4ec007de65ff7b21c87f2", "fields": {"nom_de_la_commune": "JUNAS", "libell_d_acheminement": "JUNAS", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30136"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "270bd1494eec8485b9418464ccfa3e793fd5129c", "fields": {"nom_de_la_commune": "LAVAL PRADEL", "libell_d_acheminement": "LAVAL PRADEL", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30142"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1e0f28677a45e9f6bd9589276852c2b40edc981", "fields": {"nom_de_la_commune": "LAVAL ST ROMAN", "libell_d_acheminement": "LAVAL ST ROMAN", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30143"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eda7cfd1124a5711f26a1ed285cb1e6e19a9d819", "fields": {"nom_de_la_commune": "LEDENON", "libell_d_acheminement": "LEDENON", "code_postal": "30210", "coordonnees_gps": [43.9586776259, 4.54354243204], "code_commune_insee": "30145"}, "geometry": {"type": "Point", "coordinates": [4.54354243204, 43.9586776259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4653dd87907748efdbf747da3604bd5893975d", "fields": {"nom_de_la_commune": "LUSSAN", "libell_d_acheminement": "LUSSAN", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30151"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0325ab12f87d6d32a852d9a11432b4a6734e01e9", "fields": {"nom_de_la_commune": "MANDAGOUT", "libell_d_acheminement": "MANDAGOUT", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30154"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fff427b34830feba0559371830bc6546b52a2d5", "fields": {"nom_de_la_commune": "MANDUEL", "libell_d_acheminement": "MANDUEL", "code_postal": "30129", "coordonnees_gps": [43.8162096592, 4.49752945444], "code_commune_insee": "30155"}, "geometry": {"type": "Point", "coordinates": [4.49752945444, 43.8162096592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf2f8a1c8b5f7f08fe0c30657c5083b47f51766d", "fields": {"nom_de_la_commune": "MARS", "libell_d_acheminement": "MARS", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30157"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b849d28947d00fafb05c62a646fd80da4851408", "fields": {"nom_de_la_commune": "MARUEJOLS LES GARDON", "libell_d_acheminement": "MARUEJOLS LES GARDON", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30160"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37e40d54c1e132c403ea64084d5aaa903c50350", "fields": {"nom_de_la_commune": "MOLIERES SUR CEZE", "libell_d_acheminement": "MOLIERES SUR CEZE", "code_postal": "30410", "coordonnees_gps": [44.2684552462, 4.15312879608], "code_commune_insee": "30171"}, "geometry": {"type": "Point", "coordinates": [4.15312879608, 44.2684552462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15c128efb51a512ec5fa9e953589e2f0ed7ba0a", "fields": {"nom_de_la_commune": "MONTFRIN", "libell_d_acheminement": "MONTFRIN", "code_postal": "30490", "coordonnees_gps": [43.8751825691, 4.59187679529], "code_commune_insee": "30179"}, "geometry": {"type": "Point", "coordinates": [4.59187679529, 43.8751825691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f79b3698deb3f0e15d5b784cf90bfb7d36184c0", "fields": {"nom_de_la_commune": "MONTPEZAT", "libell_d_acheminement": "MONTPEZAT", "code_postal": "30730", "coordonnees_gps": [43.8845718462, 4.18952374763], "code_commune_insee": "30182"}, "geometry": {"type": "Point", "coordinates": [4.18952374763, 43.8845718462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52cc053f8db327c0a55ff7fd4df314f2bccc19a4", "fields": {"nom_de_la_commune": "MUS", "libell_d_acheminement": "MUS", "code_postal": "30121", "coordonnees_gps": [43.7368668465, 4.2022674573], "code_commune_insee": "30185"}, "geometry": {"type": "Point", "coordinates": [4.2022674573, 43.7368668465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d14850c9df08db41b3aa091e90ae8160b9f5235a", "fields": {"nom_de_la_commune": "NAGES ET SOLORGUES", "libell_d_acheminement": "NAGES ET SOLORGUES", "code_postal": "30114", "coordonnees_gps": [43.7816107719, 4.23187621337], "code_commune_insee": "30186"}, "geometry": {"type": "Point", "coordinates": [4.23187621337, 43.7816107719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71208c36e152eb66785b7768c54b9122e84d075", "fields": {"nom_de_la_commune": "PEYREMALE", "libell_d_acheminement": "PEYREMALE", "code_postal": "30160", "coordonnees_gps": [44.2982766732, 4.09724420546], "code_commune_insee": "30194"}, "geometry": {"type": "Point", "coordinates": [4.09724420546, 44.2982766732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe533443d18aa95150415b58247b5c24f0071581", "fields": {"nom_de_la_commune": "LES PLANTIERS", "libell_d_acheminement": "LES PLANTIERS", "code_postal": "30122", "coordonnees_gps": [44.1081445505, 3.71317003756], "code_commune_insee": "30198"}, "geometry": {"type": "Point", "coordinates": [3.71317003756, 44.1081445505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d2f49fa3af0467e940133a7834c7b9483ccda09", "fields": {"nom_de_la_commune": "POMMIERS", "libell_d_acheminement": "POMMIERS", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30199"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f75858b2e80ba22b6411cdb1a17f593609484b15", "fields": {"nom_de_la_commune": "PONTEILS ET BRESIS", "libell_d_acheminement": "PONTEILS ET BRESIS", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30201"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "453793f657acf7fb74b77f3c1628d0e43c667cfa", "fields": {"nom_de_la_commune": "PORTES", "libell_d_acheminement": "PORTES", "code_postal": "30530", "coordonnees_gps": [44.2835677648, 3.99804352323], "code_commune_insee": "30203"}, "geometry": {"type": "Point", "coordinates": [3.99804352323, 44.2835677648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ce35c5b7e8510d44cbeb4974c5198975eb0ef1", "fields": {"nom_de_la_commune": "REVENS", "libell_d_acheminement": "REVENS", "code_postal": "30750", "coordonnees_gps": [44.0925479958, 3.41838052673], "code_commune_insee": "30213"}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02c558b9c290dfca9c073db59bf3c4f789d3abc", "fields": {"nom_de_la_commune": "ROGUES", "libell_d_acheminement": "ROGUES", "code_postal": "30120", "coordonnees_gps": [43.9708641102, 3.57903745663], "code_commune_insee": "30219"}, "geometry": {"type": "Point", "coordinates": [3.57903745663, 43.9708641102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b837fbbfea5127b9d7a716b3018027d8cf93f97", "fields": {"nom_de_la_commune": "ROQUEDUR", "libell_d_acheminement": "ROQUEDUR", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30220"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2fe2cf6b68d49b2b5e890d8486858918fb24150", "fields": {"nom_de_la_commune": "STE ANASTASIE", "libell_d_acheminement": "STE ANASTASIE", "code_postal": "30190", "coordonnees_gps": [43.9622420446, 4.27500908477], "code_commune_insee": "30228"}, "geometry": {"type": "Point", "coordinates": [4.27500908477, 43.9622420446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0f5ddbb89a885be511ac7b39db1b3a04a394777", "fields": {"nom_de_la_commune": "ST BENEZET", "libell_d_acheminement": "ST BENEZET", "code_postal": "30350", "coordonnees_gps": [43.9770055475, 4.11008652443], "code_commune_insee": "30234"}, "geometry": {"type": "Point", "coordinates": [4.11008652443, 43.9770055475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2832b4ab42a803ec082e919845abd4db2f630296", "fields": {"nom_de_la_commune": "ST BRESSON", "libell_d_acheminement": "ST BRESSON", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30238"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14141d4d625cd1a7355d32be442111e527841d1e", "fields": {"nom_de_la_commune": "ST CHRISTOL LES ALES", "libell_d_acheminement": "ST CHRISTOL LES ALES", "code_postal": "30380", "coordonnees_gps": [44.0840579112, 4.07627961526], "code_commune_insee": "30243"}, "geometry": {"type": "Point", "coordinates": [4.07627961526, 44.0840579112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea797d8f70bf730395c7d46416b50bb3b3ded4df", "fields": {"nom_de_la_commune": "ST COME ET MARUEJOLS", "libell_d_acheminement": "ST COME ET MARUEJOLS", "code_postal": "30870", "coordonnees_gps": [43.8342757187, 4.20744229546], "code_commune_insee": "30245"}, "geometry": {"type": "Point", "coordinates": [4.20744229546, 43.8342757187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bb0d491fa93a9ec85c2a5b075ff6616dbdc8304", "fields": {"nom_de_la_commune": "ST DIONISY", "libell_d_acheminement": "ST DIONISY", "code_postal": "30980", "coordonnees_gps": [43.8042643595, 4.24666861732], "code_commune_insee": "30249"}, "geometry": {"type": "Point", "coordinates": [4.24666861732, 43.8042643595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "989edb919388579811ae661b223bfec65918cf11", "fields": {"nom_de_la_commune": "ST GERVAIS", "libell_d_acheminement": "ST GERVAIS", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30256"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6831522ccc7452cd91198f4fbf43d487d59f6e58", "fields": {"nom_de_la_commune": "ST JEAN DE VALERISCLE", "libell_d_acheminement": "ST JEAN DE VALERISCLE", "code_postal": "30960", "coordonnees_gps": [44.2386422448, 4.12848944185], "code_commune_insee": "30268"}, "geometry": {"type": "Point", "coordinates": [4.12848944185, 44.2386422448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b304791d2802d4976e3e204c752328da75b66324", "fields": {"nom_de_la_commune": "ST JEAN DU PIN", "libell_d_acheminement": "ST JEAN DU PIN", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30270"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e2d10fb7ffca480bcdbcac1e9d2c3e96139168", "fields": {"nom_de_la_commune": "ST JULIEN DE PEYROLAS", "libell_d_acheminement": "ST JULIEN DE PEYROLAS", "code_postal": "30760", "coordonnees_gps": [44.2886835017, 4.50962076367], "code_commune_insee": "30273"}, "geometry": {"type": "Point", "coordinates": [4.50962076367, 44.2886835017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36efb8da3a407ef81b815652b9e0284bd6804af4", "fields": {"nom_de_la_commune": "ST JULIEN LES ROSIERS", "libell_d_acheminement": "ST JULIEN LES ROSIERS", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30274"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a9f9f52a42e2414f7c6b0bc177622a03bad011", "fields": {"nom_de_la_commune": "ST JUST ET VACQUIERES", "libell_d_acheminement": "ST JUST ET VACQUIERES", "code_postal": "30580", "coordonnees_gps": [44.1345395894, 4.32807251853], "code_commune_insee": "30275"}, "geometry": {"type": "Point", "coordinates": [4.32807251853, 44.1345395894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71481638259c0e5aa7eada9ccb2abc8c1cb4ce65", "fields": {"nom_de_la_commune": "ST LAURENT D AIGOUZE", "libell_d_acheminement": "ST LAURENT D AIGOUZE", "code_postal": "30220", "coordonnees_gps": [43.5627760713, 4.22023448009], "code_commune_insee": "30276"}, "geometry": {"type": "Point", "coordinates": [4.22023448009, 43.5627760713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a12842dc56448c794a031c7fde615e81e4923302", "fields": {"nom_de_la_commune": "ST MAMERT DU GARD", "libell_d_acheminement": "ST MAMERT DU GARD", "code_postal": "30730", "coordonnees_gps": [43.8845718462, 4.18952374763], "code_commune_insee": "30281"}, "geometry": {"type": "Point", "coordinates": [4.18952374763, 43.8845718462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae15067b7ef136d52553604b139cf69e22bc98c", "fields": {"nom_de_la_commune": "ST MAURICE DE CAZEVIEILLE", "libell_d_acheminement": "ST MAURICE DE CAZEVIEILLE", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30285"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84df13917e3122c4aca9e986be97541cd447c058", "fields": {"nom_de_la_commune": "ST MICHEL D EUZET", "libell_d_acheminement": "ST MICHEL D EUZET", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30287"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5863565e83d2cd43345a102731938be5b652b4a0", "fields": {"nom_de_la_commune": "ST NAZAIRE", "libell_d_acheminement": "ST NAZAIRE", "code_postal": "30200", "coordonnees_gps": [44.1738229164, 4.60897329043], "code_commune_insee": "30288"}, "geometry": {"type": "Point", "coordinates": [4.60897329043, 44.1738229164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0de3aab8c80df2002f0cc95e8df23f1d96c27f3", "fields": {"nom_de_la_commune": "ST QUENTIN LA POTERIE", "libell_d_acheminement": "ST QUENTIN LA POTERIE", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30295"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fcb9276f9116019e5ff52230c950248c5d2ed10", "fields": {"nom_de_la_commune": "ST SAUVEUR CAMPRIEU", "libell_d_acheminement": "ST SAUVEUR CAMPRIEU", "code_postal": "30750", "coordonnees_gps": [44.0925479958, 3.41838052673], "code_commune_insee": "30297"}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6890d874d7b0fc038d4959b488a9fb27a08ada86", "fields": {"code_postal": "30750", "code_commune_insee": "30297", "libell_d_acheminement": "ST SAUVEUR CAMPRIEU", "ligne_5": "CAMPRIEU", "nom_de_la_commune": "ST SAUVEUR CAMPRIEU", "coordonnees_gps": [44.0925479958, 3.41838052673]}, "geometry": {"type": "Point", "coordinates": [3.41838052673, 44.0925479958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a214a1b35dbc3ec5d0696adfdd317410c5347fc", "fields": {"nom_de_la_commune": "SALINELLES", "libell_d_acheminement": "SALINELLES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30306"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f711bb1a80b00744ea2bcfe2608e663021f38e63", "fields": {"nom_de_la_commune": "SENECHAS", "libell_d_acheminement": "SENECHAS", "code_postal": "30450", "coordonnees_gps": [44.3723847738, 3.99224222327], "code_commune_insee": "30316"}, "geometry": {"type": "Point", "coordinates": [3.99224222327, 44.3723847738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "736c88e73e6dfc18688b68f58c064afb26191c4a", "fields": {"nom_de_la_commune": "SERVAS", "libell_d_acheminement": "SERVAS", "code_postal": "30340", "coordonnees_gps": [44.1624056275, 4.15386729495], "code_commune_insee": "30318"}, "geometry": {"type": "Point", "coordinates": [4.15386729495, 44.1624056275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53afd10c32b44399f462228a89b49685e2c4fb3f", "fields": {"nom_de_la_commune": "SERVIERS ET LABAUME", "libell_d_acheminement": "SERVIERS ET LABAUME", "code_postal": "30700", "coordonnees_gps": [44.0258416482, 4.41171212043], "code_commune_insee": "30319"}, "geometry": {"type": "Point", "coordinates": [4.41171212043, 44.0258416482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3908a58afbf7eb7ffd10087fbf64cdcfedd49cf2", "fields": {"nom_de_la_commune": "SOMMIERES", "libell_d_acheminement": "SOMMIERES", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30321"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba73db874cba7d253a9ebe08326b89f349db1074", "fields": {"nom_de_la_commune": "SOUSTELLE", "libell_d_acheminement": "SOUSTELLE", "code_postal": "30110", "coordonnees_gps": [44.216874821, 4.00813829551], "code_commune_insee": "30323"}, "geometry": {"type": "Point", "coordinates": [4.00813829551, 44.216874821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f329591ba43491be42c662cb0d873767d5ee6091", "fields": {"nom_de_la_commune": "SUMENE", "libell_d_acheminement": "SUMENE", "code_postal": "30440", "coordonnees_gps": [43.9870513283, 3.7146726024], "code_commune_insee": "30325"}, "geometry": {"type": "Point", "coordinates": [3.7146726024, 43.9870513283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e739dd42fe09b0425a3253ab4243098f1659916", "fields": {"nom_de_la_commune": "THARAUX", "libell_d_acheminement": "THARAUX", "code_postal": "30430", "coordonnees_gps": [44.2639325921, 4.33582586217], "code_commune_insee": "30327"}, "geometry": {"type": "Point", "coordinates": [4.33582586217, 44.2639325921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2384aeb49eac46332535b2e95698610594d9e339", "fields": {"nom_de_la_commune": "THEZIERS", "libell_d_acheminement": "THEZIERS", "code_postal": "30390", "coordonnees_gps": [43.9188039715, 4.66026536244], "code_commune_insee": "30328"}, "geometry": {"type": "Point", "coordinates": [4.66026536244, 43.9188039715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5315fb031e94986e4c9bf74dcc7e6326336ec6", "fields": {"nom_de_la_commune": "TORNAC", "libell_d_acheminement": "TORNAC", "code_postal": "30140", "coordonnees_gps": [44.0718214105, 3.97533949662], "code_commune_insee": "30330"}, "geometry": {"type": "Point", "coordinates": [3.97533949662, 44.0718214105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "642b60282a010fbeb7ef5a3be5d219ba53ffbc1d", "fields": {"nom_de_la_commune": "VABRES", "libell_d_acheminement": "VABRES", "code_postal": "30460", "coordonnees_gps": [44.0515498157, 3.8329499699], "code_commune_insee": "30335"}, "geometry": {"type": "Point", "coordinates": [3.8329499699, 44.0515498157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21996fe6f4eeda7cd9a97aa2a82843a06fbb9736", "fields": {"code_postal": "30600", "code_commune_insee": "30341", "libell_d_acheminement": "VAUVERT", "ligne_5": "MONTCALM", "nom_de_la_commune": "VAUVERT", "coordonnees_gps": [43.6360200976, 4.3019597877]}, "geometry": {"type": "Point", "coordinates": [4.3019597877, 43.6360200976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfe90711856c7ec92b5955b80d384903569fface", "fields": {"nom_de_la_commune": "VEZENOBRES", "libell_d_acheminement": "VEZENOBRES", "code_postal": "30360", "coordonnees_gps": [44.0513052606, 4.1895053141], "code_commune_insee": "30348"}, "geometry": {"type": "Point", "coordinates": [4.1895053141, 44.0513052606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e651c7c3b979c15dbbbe1a4257fe65944bcaa257", "fields": {"nom_de_la_commune": "VILLEVIEILLE", "libell_d_acheminement": "VILLEVIEILLE", "code_postal": "30250", "coordonnees_gps": [43.8069164828, 4.10139165564], "code_commune_insee": "30352"}, "geometry": {"type": "Point", "coordinates": [4.10139165564, 43.8069164828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4415b0574ae99d277ccab8c4424a3cf25c6ee07", "fields": {"nom_de_la_commune": "ST PAUL LES FONTS", "libell_d_acheminement": "ST PAUL LES FONTS", "code_postal": "30330", "coordonnees_gps": [44.1082203538, 4.53343123071], "code_commune_insee": "30355"}, "geometry": {"type": "Point", "coordinates": [4.53343123071, 44.1082203538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "469efeceb0db56c00b3f4f45c5b126a4ad6dcf71", "fields": {"nom_de_la_commune": "AYGUESVIVES", "libell_d_acheminement": "AYGUESVIVES", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31004"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f00782fda050a72dbe0b27db276cf81f7bae80fb", "fields": {"nom_de_la_commune": "ARBAS", "libell_d_acheminement": "ARBAS", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31011"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3ff15a438c05bc21d96b607b18647a1ad56a9a", "fields": {"nom_de_la_commune": "ARDIEGE", "libell_d_acheminement": "ARDIEGE", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31013"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799c90e353b1609589dc187f161f6c21d685142a", "fields": {"nom_de_la_commune": "AURIN", "libell_d_acheminement": "AURIN", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31029"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa6c9c737794e5eccf867d7a249f7bc6c1408df", "fields": {"nom_de_la_commune": "AUSSONNE", "libell_d_acheminement": "AUSSONNE", "code_postal": "31840", "coordonnees_gps": [43.6853114113, 1.33718819111], "code_commune_insee": "31032"}, "geometry": {"type": "Point", "coordinates": [1.33718819111, 43.6853114113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4746439107b70ae4eb07c2c65bcea86b8c1f6d01", "fields": {"nom_de_la_commune": "AUZIELLE", "libell_d_acheminement": "AUZIELLE", "code_postal": "31650", "coordonnees_gps": [43.5547223319, 1.54753565987], "code_commune_insee": "31036"}, "geometry": {"type": "Point", "coordinates": [1.54753565987, 43.5547223319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d6e967b3ef047d6b7af40502d3a44ec0aab5b1", "fields": {"nom_de_la_commune": "BAGIRY", "libell_d_acheminement": "BAGIRY", "code_postal": "31510", "coordonnees_gps": [43.0209543998, 0.643872354578], "code_commune_insee": "31041"}, "geometry": {"type": "Point", "coordinates": [0.643872354578, 43.0209543998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e74888d198a195bc656afa3bae5fea2b1708a5", "fields": {"nom_de_la_commune": "BEAUZELLE", "libell_d_acheminement": "BEAUZELLE", "code_postal": "31700", "coordonnees_gps": [43.6597738568, 1.31989347966], "code_commune_insee": "31056"}, "geometry": {"type": "Point", "coordinates": [1.31989347966, 43.6597738568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236d8c840f4de0862a4465e221352ee6b8b9c2d9", "fields": {"nom_de_la_commune": "BELBERAUD", "libell_d_acheminement": "BELBERAUD", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31057"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94fd64828f24aca352f2275cdfa003ddc68c3acb", "fields": {"nom_de_la_commune": "BELBEZE EN COMMINGES", "libell_d_acheminement": "BELBEZE EN COMMINGES", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31059"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9a810c789475342e9e274949620ebc5e815f8f", "fields": {"nom_de_la_commune": "BILLIERE", "libell_d_acheminement": "BILLIERE", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31068"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efaf397531f32b401a52afaa33fdc4557f5f4c9e", "fields": {"nom_de_la_commune": "BOUSSENS", "libell_d_acheminement": "BOUSSENS", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31084"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3327be6716cffcaaae501034ac658fd75535d166", "fields": {"nom_de_la_commune": "BRAGAYRAC", "libell_d_acheminement": "BRAGAYRAC", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31087"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f29fccd6bca6b1e67bd8049450ef2b7b473ebccd", "fields": {"nom_de_la_commune": "CAMBIAC", "libell_d_acheminement": "CAMBIAC", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31102"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c201a85f6f494f81c3cb3482011815b85034316a", "fields": {"nom_de_la_commune": "CANENS", "libell_d_acheminement": "CANENS", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31103"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "423eb8203c0c272091d2b38b92cb0d759a363e7b", "fields": {"nom_de_la_commune": "CARDEILHAC", "libell_d_acheminement": "CARDEILHAC", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31108"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "276ba4cb165d7b6cad02fdae73bc40871d745247", "fields": {"nom_de_la_commune": "CASTELGINEST", "libell_d_acheminement": "CASTELGINEST", "code_postal": "31780", "coordonnees_gps": [43.6972106027, 1.43522045164], "code_commune_insee": "31116"}, "geometry": {"type": "Point", "coordinates": [1.43522045164, 43.6972106027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5960902b3ceb2cc5a33f847ccc1e48494dab010", "fields": {"nom_de_la_commune": "CASTERA VIGNOLES", "libell_d_acheminement": "CASTERA VIGNOLES", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31121"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5f80675a699476dfced5c31f2bc74f187d32b93", "fields": {"nom_de_la_commune": "CAUBOUS", "libell_d_acheminement": "CAUBOUS", "code_postal": "31110", "coordonnees_gps": [42.78191254, 0.56401037404], "code_commune_insee": "31127"}, "geometry": {"type": "Point", "coordinates": [0.56401037404, 42.78191254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71ee5251b400eb9e3079126e182a4e2c37b8784a", "fields": {"nom_de_la_commune": "CAUJAC", "libell_d_acheminement": "CAUJAC", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31128"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26ed542a38be3b4e37ddf1b43954e764994d813f", "fields": {"nom_de_la_commune": "CAZAUX LAYRISSE", "libell_d_acheminement": "CAZAUX LAYRISSE", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31132"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df54e98ce2d30d61c99a442ee65cb72d8b5469ba", "fields": {"nom_de_la_commune": "BEFFIA", "libell_d_acheminement": "BEFFIA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39045"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccdffacacfea639026e06af3dddb5b5c7a5ee792", "fields": {"nom_de_la_commune": "BELLECOMBE", "libell_d_acheminement": "BELLECOMBE", "code_postal": "39310", "coordonnees_gps": [46.3646047349, 5.94493572712], "code_commune_insee": "39046"}, "geometry": {"type": "Point", "coordinates": [5.94493572712, 46.3646047349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8f43a025f58aaa867ee7cde2eb4ada46d0e0c6f", "fields": {"nom_de_la_commune": "BESAIN", "libell_d_acheminement": "BESAIN", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39050"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caff72a5dd172b8b2174f86554106b919d8a4148", "fields": {"nom_de_la_commune": "BIEF DU FOURG", "libell_d_acheminement": "BIEF DU FOURG", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39053"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015274a154f8529f89fc7027daf3993aa10336f0", "fields": {"nom_de_la_commune": "BOIS D AMONT", "libell_d_acheminement": "BOIS D AMONT", "code_postal": "39220", "coordonnees_gps": [46.4870347389, 6.06467102901], "code_commune_insee": "39059"}, "geometry": {"type": "Point", "coordinates": [6.06467102901, 46.4870347389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609a2603331a226e07ba94501a470378aff5554c", "fields": {"nom_de_la_commune": "LA BRETENIERE", "libell_d_acheminement": "LA BRETENIERE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39076"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92c0a050b886aa23d97c3b790a60bec71efc5eb", "fields": {"nom_de_la_commune": "BRETENIERES", "libell_d_acheminement": "BRETENIERES", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39077"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693f2ac8eb15cebad2a0f562644d6f1f98931ab2", "fields": {"nom_de_la_commune": "BREVANS", "libell_d_acheminement": "BREVANS", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39078"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a426fc403a6ff78c7884fa2c363f41334a1cdb", "fields": {"nom_de_la_commune": "BUVILLY", "libell_d_acheminement": "BUVILLY", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39081"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fadc2ee44a6e03ade2399093301a355490f864c1", "fields": {"code_postal": "39240", "code_commune_insee": "39086", "libell_d_acheminement": "CERNON", "ligne_5": "VIREMONT", "nom_de_la_commune": "CERNON", "coordonnees_gps": [46.3647092141, 5.55936987641]}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1829bd10de4c8b52876af8a0ca702abc599a637", "fields": {"nom_de_la_commune": "CHAINEE DES COUPIS", "libell_d_acheminement": "CHAINEE DES COUPIS", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39090"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eacf3955d619bac9ec8af3aa15e08fd74089475d", "fields": {"nom_de_la_commune": "CHAMBERIA", "libell_d_acheminement": "CHAMBERIA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39092"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68415d5c9345f8f3da5894724b54f6fc93390680", "fields": {"nom_de_la_commune": "CHARNOD", "libell_d_acheminement": "CHARNOD", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39111"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09fad38dbba0c1214e50ee8c4f9b870a80d1ba1d", "fields": {"nom_de_la_commune": "CHATELAY", "libell_d_acheminement": "CHATELAY", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39117"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "649afe17e9375b5d0a1ac0e2a28affd6d0d46fd3", "fields": {"nom_de_la_commune": "LA CHAUMUSSE", "libell_d_acheminement": "LA CHAUMUSSE", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39126"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7453c232b1fc0ba479a16c1cd7f4b46a24ef7c9a", "fields": {"nom_de_la_commune": "CHAUSSIN", "libell_d_acheminement": "CHAUSSIN", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39128"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d26afe650cf0c030ee8cf22c75a671df319b272c", "fields": {"nom_de_la_commune": "LA CHAUX DU DOMBIEF", "libell_d_acheminement": "CHAUX DU DOMBIEF", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39131"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc28b709ada011bc2bbfa805d212a958ce449b0", "fields": {"nom_de_la_commune": "CHILLE", "libell_d_acheminement": "CHILLE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39145"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5ccbdd89fa77b9c2d2d8fa2af394f3c7559b005", "fields": {"nom_de_la_commune": "COURBOUZON", "libell_d_acheminement": "COURBOUZON", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39169"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54bd8b8a7098dd6a8da456c3cf0cba3ff870ffe", "fields": {"code_postal": "39570", "code_commune_insee": "39177", "libell_d_acheminement": "HAUTEROCHE", "ligne_5": "MIREBEL", "nom_de_la_commune": "HAUTEROCHE", "coordonnees_gps": [46.65517776, 5.57390144978]}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45d6455f06a957596df425717735799a74a061a", "fields": {"nom_de_la_commune": "LES CROZETS", "libell_d_acheminement": "LES CROZETS", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39184"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad62076789130edb512307369dea40ba9d385c3", "fields": {"nom_de_la_commune": "CUISIA", "libell_d_acheminement": "CUISIA", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39185"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f52e597439fd5f2be9d59ac7cc9d1904c73617", "fields": {"nom_de_la_commune": "DAMPARIS", "libell_d_acheminement": "DAMPARIS", "code_postal": "39500", "coordonnees_gps": [47.0403701048, 5.40061589404], "code_commune_insee": "39189"}, "geometry": {"type": "Point", "coordinates": [5.40061589404, 47.0403701048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43fdbe549adc391dfaf476fbd355aacd32e72272", "fields": {"code_postal": "39700", "code_commune_insee": "39190", "libell_d_acheminement": "DAMPIERRE", "ligne_5": "CHATEAUNEUF", "nom_de_la_commune": "DAMPIERRE", "coordonnees_gps": [47.1360717956, 5.65800012561]}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ae73df58af764e8f15b5fc928d6812fb4134f9", "fields": {"code_postal": "39100", "code_commune_insee": "39198", "libell_d_acheminement": "DOLE", "ligne_5": "ST YLIE", "nom_de_la_commune": "DOLE", "coordonnees_gps": [47.081657682, 5.47646341998]}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12fa1d096fe70c06bc61664d60998f0035c1cd27", "fields": {"nom_de_la_commune": "DOUCIER", "libell_d_acheminement": "DOUCIER", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39201"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc9fda900482f8fa70818440968f1d3c84927f4", "fields": {"nom_de_la_commune": "DOURNON", "libell_d_acheminement": "DOURNON", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39202"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6acfc09a10b1f9f5377d05004e468bed70a49455", "fields": {"code_postal": "39700", "code_commune_insee": "39205", "libell_d_acheminement": "ECLANS NENON", "ligne_5": "NENON", "nom_de_la_commune": "ECLANS NENON", "coordonnees_gps": [47.1360717956, 5.65800012561]}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a56ab747ec2dbbf5b3bef5a12b6aced740c1036", "fields": {"code_postal": "39160", "code_commune_insee": "39209", "libell_d_acheminement": "VAL D EPY", "ligne_5": "EPY LANERIA", "nom_de_la_commune": "VAL D EPY", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8051a5d17e0d421afc78cbf8afc8d8f19b31a841", "fields": {"nom_de_la_commune": "LES ESSARDS TAIGNEVAUX", "libell_d_acheminement": "LES ESSARDS TAIGNEVAUX", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39211"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f0d8ae7e59dc43de34cf31de77bb3a4e9b6b109", "fields": {"nom_de_la_commune": "ESSERVAL TARTRE", "libell_d_acheminement": "ESSERVAL TARTRE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39214"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af17197d3b88c78da1e78dd412068a9bc41fb3c9", "fields": {"nom_de_la_commune": "ETREPIGNEY", "libell_d_acheminement": "ETREPIGNEY", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39218"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad77640791af61b7a0397d7f188dbc63fa4bb58b", "fields": {"nom_de_la_commune": "FALLETANS", "libell_d_acheminement": "FALLETANS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39220"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0747b0ff8aa38668309d2005f7ebf0e487338445", "fields": {"nom_de_la_commune": "LE FIED", "libell_d_acheminement": "LE FIED", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39225"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83003caf4d67b7406bd4a5036a7dc8687d10b5c0", "fields": {"nom_de_la_commune": "FONTENU", "libell_d_acheminement": "FONTENU", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39230"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a414928f5e0c9a72d036f2d3c4337a3f1c6537d", "fields": {"nom_de_la_commune": "FORT DU PLASNE", "libell_d_acheminement": "FORT DU PLASNE", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39232"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6daf3d208c78e33cbd9ab714695c19def6ca185", "fields": {"nom_de_la_commune": "FRAROZ", "libell_d_acheminement": "FRAROZ", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39237"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb64660d6552fb8eb9240dbc20324e81c85a969", "fields": {"nom_de_la_commune": "GERMIGNEY", "libell_d_acheminement": "GERMIGNEY", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39249"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9edaa942b11beb8a7cac9983628cd9ac19b13144", "fields": {"nom_de_la_commune": "GEVRY", "libell_d_acheminement": "GEVRY", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39252"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d27f4a4da82a656b4355f1555ca87af3848e01e", "fields": {"nom_de_la_commune": "GRANDE RIVIERE", "libell_d_acheminement": "GRANDE RIVIERE", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39258"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41d378796feb977f61a0eb3dd733370db0474c54", "fields": {"nom_de_la_commune": "GRAYE ET CHARNAY", "libell_d_acheminement": "GRAYE ET CHARNAY", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39261"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c984e21d8dfea0bcaa1e4c1d0f78f40d22e6b2", "fields": {"nom_de_la_commune": "GRUSSE", "libell_d_acheminement": "GRUSSE", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39264"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806af930fe46b5078b597557d00ad312c708a9b7", "fields": {"nom_de_la_commune": "LARNAUD", "libell_d_acheminement": "LARNAUD", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39279"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e506aa085a1ab6a172fbe895b943c51b19247054", "fields": {"nom_de_la_commune": "LE LATET", "libell_d_acheminement": "LE LATET", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39281"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab4f7efb69d9cfa690a47f2250cf4248459de8c", "fields": {"nom_de_la_commune": "LAVANCIA EPERCY", "libell_d_acheminement": "LAVANCIA EPERCY", "code_postal": "01590", "coordonnees_gps": [46.3238684456, 5.65548376535], "code_commune_insee": "39283"}, "geometry": {"type": "Point", "coordinates": [5.65548376535, 46.3238684456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "082a2af27f00b11ddcab61db1fd63994939d4f83", "fields": {"code_postal": "39170", "code_commune_insee": "39286", "libell_d_acheminement": "LAVANS LES ST CLAUDE", "ligne_5": "LIZON", "nom_de_la_commune": "LAVANS LES ST CLAUDE", "coordonnees_gps": [46.4122748444, 5.79038088139]}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b1d88cc725a1e0f0ec65e631005636698c703e1", "fields": {"nom_de_la_commune": "LAVANS SUR VALOUSE", "libell_d_acheminement": "LAVANS SUR VALOUSE", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39287"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca23869d8a526d8b7f79afa96d25c02c32106b58", "fields": {"nom_de_la_commune": "LECT", "libell_d_acheminement": "LECT", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39289"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8720a0204e65c153f7c04d4bc521021e23cd7671", "fields": {"nom_de_la_commune": "LENT", "libell_d_acheminement": "LENT", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39292"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ebeb713915b28047ba13af2ad177425338b4afd", "fields": {"nom_de_la_commune": "LESCHERES", "libell_d_acheminement": "LESCHERES", "code_postal": "39170", "coordonnees_gps": [46.4122748444, 5.79038088139], "code_commune_insee": "39293"}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56feb22a7d3eb3d25d29de3094e67076f83a2bd7", "fields": {"nom_de_la_commune": "LOISIA", "libell_d_acheminement": "LOISIA", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39295"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d8e026c0ef11b3f4b5d22287a70fe35f4caeffe", "fields": {"nom_de_la_commune": "LOMBARD", "libell_d_acheminement": "LOMBARD", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39296"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb6e5d8a520ffc8f907e6e5fac1fdbd665cf5746", "fields": {"nom_de_la_commune": "LONS LE SAUNIER", "libell_d_acheminement": "LONS LE SAUNIER", "code_postal": "39000", "coordonnees_gps": [46.6748423385, 5.55797705223], "code_commune_insee": "39300"}, "geometry": {"type": "Point", "coordinates": [5.55797705223, 46.6748423385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d59aeecc94288f5796d0338f1367e0893f094d99", "fields": {"nom_de_la_commune": "LE LOUVEROT", "libell_d_acheminement": "LE LOUVEROT", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39304"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b2e2628a88f3c28916cff8065d0bd37c1f113ab", "fields": {"nom_de_la_commune": "LA LOYE", "libell_d_acheminement": "LA LOYE", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39305"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71158ddc5ff11077f398c161bcc0db43218591ee", "fields": {"nom_de_la_commune": "MARTIGNA", "libell_d_acheminement": "MARTIGNA", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39318"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b7d4499aae89b1b3e4433956cc1b68eb09bcbc0", "fields": {"nom_de_la_commune": "MAYNAL", "libell_d_acheminement": "MAYNAL", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39320"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5606c9b91bc82974496bdb6b52767dddbe7fc5bc", "fields": {"nom_de_la_commune": "MENETRUX EN JOUX", "libell_d_acheminement": "MENETRUX EN JOUX", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39322"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ac3708e9894b86a6ede83779400fe2f7a2b548", "fields": {"code_postal": "39250", "code_commune_insee": "39329", "libell_d_acheminement": "MIEGES", "ligne_5": "MOLPRE", "nom_de_la_commune": "MIEGES", "coordonnees_gps": [46.7774503228, 6.08094337332]}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ffb4079849af8d568d78c675713f5c0b297cb4b", "fields": {"nom_de_la_commune": "MOIRANS EN MONTAGNE", "libell_d_acheminement": "MOIRANS EN MONTAGNE", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39333"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb4f488469dff8cdd9afa56f14e6e91778c3b4f7", "fields": {"nom_de_la_commune": "MOLAIN", "libell_d_acheminement": "MOLAIN", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39336"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2943c7db2631ec2c8b66605731c74869109c49a", "fields": {"nom_de_la_commune": "MOLAY", "libell_d_acheminement": "MOLAY", "code_postal": "39500", "coordonnees_gps": [47.0403701048, 5.40061589404], "code_commune_insee": "39338"}, "geometry": {"type": "Point", "coordinates": [5.40061589404, 47.0403701048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7aa3428401900ae1649e730ed9c8d5352d098e8", "fields": {"nom_de_la_commune": "MONNET LA VILLE", "libell_d_acheminement": "MONNET LA VILLE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39344"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f943561982fcb6c0fbb4bcaa586883eb4dc9a0cb", "fields": {"nom_de_la_commune": "MONNIERES", "libell_d_acheminement": "MONNIERES", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39345"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c129e45be57ad4171867ef1d63050fa1062e952", "fields": {"nom_de_la_commune": "MONTAIGU", "libell_d_acheminement": "MONTAIGU", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39348"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d807b41b7fb933344554ac7fa7588f3ed357638", "fields": {"nom_de_la_commune": "MONTEPLAIN", "libell_d_acheminement": "MONTEPLAIN", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39352"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fa8b6cb91edc67a849d42768fc619a9e404235", "fields": {"nom_de_la_commune": "MONTIGNY LES ARSURES", "libell_d_acheminement": "MONTIGNY LES ARSURES", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39355"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dde25f7462156951d363fc4b18dcd445fca3a19f", "fields": {"nom_de_la_commune": "MONTMOROT", "libell_d_acheminement": "MONTMOROT", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39362"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d76fd0f5f5357774b759965f2d744c16985e4e", "fields": {"nom_de_la_commune": "MORBIER", "libell_d_acheminement": "MORBIER", "code_postal": "39400", "coordonnees_gps": [46.5030859232, 6.02288479651], "code_commune_insee": "39367"}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3c2dddf1a0145c5511a21f2129e53d84f3173af", "fields": {"nom_de_la_commune": "MOUCHARD", "libell_d_acheminement": "MOUCHARD", "code_postal": "39330", "coordonnees_gps": [46.9882126425, 5.81136152584], "code_commune_insee": "39370"}, "geometry": {"type": "Point", "coordinates": [5.81136152584, 46.9882126425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf92809d08397426f8d5d65c56b1c2b28912c720", "fields": {"code_postal": "39160", "code_commune_insee": "39378", "libell_d_acheminement": "LES TROIS CHATEAUX", "ligne_5": "L AUBEPIN", "nom_de_la_commune": "LES TROIS CHATEAUX", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0331e75f9e5f81d24afc00bc35e994fa4f6b43e2", "fields": {"nom_de_la_commune": "NANCE", "libell_d_acheminement": "NANCE", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39379"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ffe00abeac9b6483d8051eb9c4ba8f903d9e1a", "fields": {"nom_de_la_commune": "ORGELET", "libell_d_acheminement": "ORGELET", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39397"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ee1c7796500dc1dd496f6f33f29af524aab4f8", "fields": {"nom_de_la_commune": "OUR", "libell_d_acheminement": "OUR", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39400"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb44e888a94f07dc6d71e9cd8d30133239bfee5f", "fields": {"nom_de_la_commune": "PAGNOZ", "libell_d_acheminement": "PAGNOZ", "code_postal": "39330", "coordonnees_gps": [46.9882126425, 5.81136152584], "code_commune_insee": "39403"}, "geometry": {"type": "Point", "coordinates": [5.81136152584, 46.9882126425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d81fcc541b50f04b1438d353f04563cbc32e429f", "fields": {"nom_de_la_commune": "PARCEY", "libell_d_acheminement": "PARCEY", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39405"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cff571f83981ec75b4f15107cfb93590630183ef", "fields": {"nom_de_la_commune": "PASSENANS", "libell_d_acheminement": "PASSENANS", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39407"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e34f25f6397bfe2616d07210e1d89615fcc769", "fields": {"nom_de_la_commune": "PATORNAY", "libell_d_acheminement": "PATORNAY", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39408"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b66e43d8e36a0fed380c3b54f9bbc2826a13f75", "fields": {"nom_de_la_commune": "LE PETIT MERCEY", "libell_d_acheminement": "LE PETIT MERCEY", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39414"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "def45ea35f40b5ff79354bec8d9f43c4da1bb2bd", "fields": {"nom_de_la_commune": "PETIT NOIR", "libell_d_acheminement": "PETIT NOIR", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39415"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91eb02c3fd5942d66aaf9d82a83cf5462d0036de", "fields": {"nom_de_la_commune": "PILLEMOINE", "libell_d_acheminement": "PILLEMOINE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39419"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e90d01bbd14d7385de9a9be943e5a8045984fc1", "fields": {"code_postal": "39150", "code_commune_insee": "39424", "libell_d_acheminement": "LES PLANCHES EN MONTAGNE", "ligne_5": "LA PERRENA", "nom_de_la_commune": "LES PLANCHES EN MONTAGNE", "coordonnees_gps": [46.5872536631, 5.94328461493]}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e07c01ddb82b9bb8f1bc2ee3311a6af1e4c4c45", "fields": {"nom_de_la_commune": "POINTRE", "libell_d_acheminement": "POINTRE", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39432"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8600221916457d6de41d4fbb51ea31a634d27917", "fields": {"nom_de_la_commune": "PONT D HERY", "libell_d_acheminement": "PONT D HERY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39436"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98889f5e1ddf758faa997f66e5e97e6a8c83dadd", "fields": {"nom_de_la_commune": "PONT DU NAVOY", "libell_d_acheminement": "PONT DU NAVOY", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39437"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91b790937880987ab11826377ef9307b6a8c2755", "fields": {"nom_de_la_commune": "PORT LESNEY", "libell_d_acheminement": "PORT LESNEY", "code_postal": "39330", "coordonnees_gps": [46.9882126425, 5.81136152584], "code_commune_insee": "39439"}, "geometry": {"type": "Point", "coordinates": [5.81136152584, 46.9882126425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "547e8fde042273f82b46ba4d1a1520978466427e", "fields": {"code_postal": "39400", "code_commune_insee": "39441", "libell_d_acheminement": "PREMANON", "ligne_5": "LA DOYE", "nom_de_la_commune": "PREMANON", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e082ad0abe95a30847524fa8f9147f1b14eeb6d", "fields": {"nom_de_la_commune": "PUBLY", "libell_d_acheminement": "PUBLY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39445"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd5c8b5ec0e45af00840c9c6fa7f51ec741ba690", "fields": {"nom_de_la_commune": "RAINANS", "libell_d_acheminement": "RAINANS", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39449"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1eb80aa6f74a5f9d9340d7290ab0a49f5c4a77", "fields": {"nom_de_la_commune": "RECANOZ", "libell_d_acheminement": "RECANOZ", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39454"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd43546205c9827b2b6aa50af10f38615c354476", "fields": {"nom_de_la_commune": "ROGNA", "libell_d_acheminement": "ROGNA", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39463"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37e9f446401ea6480016853307aace0962d0ef60", "fields": {"nom_de_la_commune": "ROSAY", "libell_d_acheminement": "ROSAY", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39466"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e1411b7fd8267a2869124ebe39a91c830d8a5eb", "fields": {"nom_de_la_commune": "ROUFFANGE", "libell_d_acheminement": "ROUFFANGE", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39469"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acc9faba39072105854ef13ef86a735fd68fc585", "fields": {"nom_de_la_commune": "LES ROUSSES", "libell_d_acheminement": "LES ROUSSES", "code_postal": "39400", "coordonnees_gps": [46.5030859232, 6.02288479651], "code_commune_insee": "39470"}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f66d4403b819aad8a6c319d84c69ae22bf757629", "fields": {"nom_de_la_commune": "ST HYMETIERE", "libell_d_acheminement": "ST HYMETIERE", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39483"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6eb1c1a2d09d11b991edfee63b53731b7ae0c2", "fields": {"nom_de_la_commune": "ST JEAN D ETREUX", "libell_d_acheminement": "ST JEAN D ETREUX", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39484"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60b65439ddfbbe8a50ac9eb8195d9e5042bf972", "fields": {"nom_de_la_commune": "ST MAUR", "libell_d_acheminement": "ST MAUR", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39492"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad2a6e4c3b3959f4e82abcd1e4b4213009c0923", "fields": {"nom_de_la_commune": "SALINS LES BAINS", "libell_d_acheminement": "SALINS LES BAINS", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39500"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68956a3cbacf8a93f9a91dcb35efa27fe7c937d2", "fields": {"nom_de_la_commune": "SANTANS", "libell_d_acheminement": "SANTANS", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39502"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62dcccb75b7d73139e43816ed1a1b2c546e064e9", "fields": {"nom_de_la_commune": "SARROGNA", "libell_d_acheminement": "SARROGNA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39504"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a79f5ad44a5d238ab44abfb04a3f085f297379", "fields": {"nom_de_la_commune": "ST GOBERT", "libell_d_acheminement": "ST GOBERT", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02681"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41eba82cc31b6aa4a36dd4c8bed4c797fd00cb2f", "fields": {"nom_de_la_commune": "ST THOMAS", "libell_d_acheminement": "ST THOMAS", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02696"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54f677c168f3bb6022a7f340b9163118c9c311c8", "fields": {"nom_de_la_commune": "SAMOUSSY", "libell_d_acheminement": "SAMOUSSY", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02697"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93c61a7cdef6c07eebcb799d2903fda8b890f3da", "fields": {"nom_de_la_commune": "SOMMERON", "libell_d_acheminement": "SOMMERON", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02725"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e01a6649335b202adb2778fbbd871d37f0ae1b4", "fields": {"nom_de_la_commune": "SERGY", "libell_d_acheminement": "SERGY", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02712"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d02b159371720d58947180980b1ecfcdf589464", "fields": {"nom_de_la_commune": "VILLERS SUR FERE", "libell_d_acheminement": "VILLERS SUR FERE", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02816"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba5f6d4cebaa2fb9de8cdf1c55a7cc421ed128d", "fields": {"nom_de_la_commune": "VILLERS LE SEC", "libell_d_acheminement": "VILLERS LE SEC", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02813"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd59bd3854f24af947ea85fd11d9df9b9b316f28", "fields": {"nom_de_la_commune": "VILLE SAVOYE", "libell_d_acheminement": "VILLE SAVOYE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02817"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4af5c6f6d6b65fa8f6c83d056f34d31ff0bf55", "fields": {"nom_de_la_commune": "VUILLERY", "libell_d_acheminement": "VUILLERY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02829"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa33589774cc264a8f47db53cbb71ccfcd9de561", "fields": {"nom_de_la_commune": "WASSIGNY", "libell_d_acheminement": "WASSIGNY", "code_postal": "02630", "coordonnees_gps": [49.9922293283, 3.57095592896], "code_commune_insee": "02830"}, "geometry": {"type": "Point", "coordinates": [3.57095592896, 49.9922293283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4328c0f5588b098332736448f7c3709543222341", "fields": {"nom_de_la_commune": "AUROUER", "libell_d_acheminement": "AUROUER", "code_postal": "03460", "coordonnees_gps": [46.6591659055, 3.26064885085], "code_commune_insee": "03011"}, "geometry": {"type": "Point", "coordinates": [3.26064885085, 46.6591659055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9288ac1e27e76e5195e29220d9dee142c6884ef5", "fields": {"nom_de_la_commune": "VIVAISE", "libell_d_acheminement": "VIVAISE", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02821"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "358099ddfdb8240419afc370ed02464cb86ab05a", "fields": {"nom_de_la_commune": "BESSON", "libell_d_acheminement": "BESSON", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03026"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8621daad43a423c308ddc39d842ca316ba70c34f", "fields": {"nom_de_la_commune": "BOST", "libell_d_acheminement": "BOST", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03033"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ca39e8cb389d2b558b1e2bc6837fa2b1bc000b", "fields": {"nom_de_la_commune": "BERT", "libell_d_acheminement": "BERT", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03024"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31eba1f1f99f1c3c0d910fed8c44330a625a9856", "fields": {"nom_de_la_commune": "NOYANT D ALLIER", "libell_d_acheminement": "NOYANT D ALLIER", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03202"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "765577049112fa29af215d152d407683afb25f11", "fields": {"nom_de_la_commune": "PARAY LE FRESIL", "libell_d_acheminement": "PARAY LE FRESIL", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03203"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "944649cb6c57183ae90ae5f01f7d5da2cc1664c2", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03208"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b115c472327c0663d96587a3e4740daff4814679", "fields": {"nom_de_la_commune": "NEURE", "libell_d_acheminement": "NEURE", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03198"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "686503680b67d8f3dab9f596affa67dea1030906", "fields": {"code_postal": "04530", "code_commune_insee": "04062", "libell_d_acheminement": "LA CONDAMINE CHATELARD", "ligne_5": "STE ANNE", "nom_de_la_commune": "LA CONDAMINE CHATELARD", "coordonnees_gps": [44.529721781, 6.79644418503]}, "geometry": {"type": "Point", "coordinates": [6.79644418503, 44.529721781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da09efe33061a8fdef58be4b4264dfec8423c5cc", "fields": {"code_postal": "04400", "code_commune_insee": "04073", "libell_d_acheminement": "ENCHASTRAYES", "ligne_5": "LE SAUZE", "nom_de_la_commune": "ENCHASTRAYES", "coordonnees_gps": [44.3554624604, 6.65679459978]}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c59d76ac9086878b32deb74cab44869e54c5a7", "fields": {"code_postal": "04270", "code_commune_insee": "04074", "libell_d_acheminement": "ENTRAGES", "ligne_5": "CHABRIERES", "nom_de_la_commune": "ENTRAGES", "coordonnees_gps": [43.9535232378, 6.23179869809]}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2912ddbcd5030fcad13545826c7875eeb39453cf", "fields": {"nom_de_la_commune": "CHATEAUNEUF VAL ST DONAT", "libell_d_acheminement": "CHATEAUNEUF VAL ST DONAT", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04053"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "022c90b9f55b6f54651a7fc4b0944a78a0432709", "fields": {"nom_de_la_commune": "CHATEAUNEUF MIRAVAIL", "libell_d_acheminement": "CHATEAUNEUF MIRAVAIL", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04051"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e7116a2caa3d7e9c23b35973e11b9c28b9cc7e", "fields": {"nom_de_la_commune": "VAL DE CHALVAGNE", "libell_d_acheminement": "VAL DE CHALVAGNE", "code_postal": "04320", "coordonnees_gps": [43.9774312961, 6.76983906157], "code_commune_insee": "04043"}, "geometry": {"type": "Point", "coordinates": [6.76983906157, 43.9774312961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d393b3c3056f59bab605fd02b2e87fe171b227", "fields": {"nom_de_la_commune": "COLMARS", "libell_d_acheminement": "COLMARS LES ALPES", "code_postal": "04370", "coordonnees_gps": [44.1743215148, 6.62460542768], "code_commune_insee": "04061"}, "geometry": {"type": "Point", "coordinates": [6.62460542768, 44.1743215148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1e44a14c775967e14fc4634e180e0ab288b471", "fields": {"nom_de_la_commune": "ENTREPIERRES", "libell_d_acheminement": "ENTREPIERRES", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04075"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0548a53ddf76f9ee967dfaf84e8dca37270112b8", "fields": {"nom_de_la_commune": "CORBIERES", "libell_d_acheminement": "CORBIERES", "code_postal": "04220", "coordonnees_gps": [43.7711056931, 5.75846047346], "code_commune_insee": "04063"}, "geometry": {"type": "Point", "coordinates": [5.75846047346, 43.7711056931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78e807038dd9c89c48e46f3ad591562012be6f4a", "fields": {"nom_de_la_commune": "ENTRAGES", "libell_d_acheminement": "ENTRAGES", "code_postal": "04000", "coordonnees_gps": [44.1282802436, 6.25179168531], "code_commune_insee": "04074"}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8060e9f2f1376cd7ad956bad81979a00a821ba8", "fields": {"nom_de_la_commune": "ST POURCAIN SUR BESBRE", "libell_d_acheminement": "ST POURCAIN SUR BESBRE", "code_postal": "03290", "coordonnees_gps": [46.5135121651, 3.68226349341], "code_commune_insee": "03253"}, "geometry": {"type": "Point", "coordinates": [3.68226349341, 46.5135121651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03946e7e20a1e88137e0bb2d45da9be0d589186b", "fields": {"nom_de_la_commune": "ST GERAND DE VAUX", "libell_d_acheminement": "ST GERAND DE VAUX", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03234"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "455f16d9da73d409caf88ffebdae03f7eadaf29e", "fields": {"nom_de_la_commune": "ST REMY EN ROLLAT", "libell_d_acheminement": "ST REMY EN ROLLAT", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03258"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55851af9c556899b692c4a23d10e74ce8c5805f0", "fields": {"nom_de_la_commune": "ST ELOY D ALLIER", "libell_d_acheminement": "ST ELOY D ALLIER", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03228"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fdfb782a4b750cf062a4bd65b05bf06c0ff437e", "fields": {"nom_de_la_commune": "ST PIERRE LAVAL", "libell_d_acheminement": "ST PIERRE LAVAL", "code_postal": "42620", "coordonnees_gps": [46.2033046771, 3.79612534085], "code_commune_insee": "03250"}, "geometry": {"type": "Point", "coordinates": [3.79612534085, 46.2033046771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791e2a54aa22eda622b8c3f1ad687b873898ddf8", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03224"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a523103616e97cf476ee735da1294cf1d206bef", "fields": {"nom_de_la_commune": "ST PALAIS", "libell_d_acheminement": "ST PALAIS", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03249"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5749ada177ae01966765eec8853dd02840721062", "fields": {"nom_de_la_commune": "ST YORRE", "libell_d_acheminement": "ST YORRE", "code_postal": "03270", "coordonnees_gps": [46.0549562922, 3.49595690849], "code_commune_insee": "03264"}, "geometry": {"type": "Point", "coordinates": [3.49595690849, 46.0549562922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a98b4203c5e77e4177df45d6347d0ec8c61f3898", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03242"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c505228194df61af641f0b9a9fa2d52b18c3ab15", "fields": {"nom_de_la_commune": "ST LEON", "libell_d_acheminement": "ST LEON", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03240"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0943662dd6892a5bcf2203618a65ba11bf3a960c", "fields": {"code_postal": "04250", "code_commune_insee": "04023", "libell_d_acheminement": "BAYONS", "ligne_5": "REYNIER", "nom_de_la_commune": "BAYONS", "coordonnees_gps": [44.3409779854, 6.11647395481]}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0fae7c4c278b1e1b6d5d493d78b1e36b52f5b97", "fields": {"code_postal": "04250", "code_commune_insee": "04023", "libell_d_acheminement": "BAYONS", "ligne_5": "ASTOIN", "nom_de_la_commune": "BAYONS", "coordonnees_gps": [44.3409779854, 6.11647395481]}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "225fd2c84a2784edb468ff8c5ecbe66a420142e9", "fields": {"nom_de_la_commune": "CASTELLANE", "libell_d_acheminement": "CASTELLANE", "code_postal": "04120", "coordonnees_gps": [43.8281340441, 6.48115762991], "code_commune_insee": "04039"}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6b982176c3f3cd7fdd666e0cf9ab90788cb69f", "fields": {"nom_de_la_commune": "AUBIGNOSC", "libell_d_acheminement": "AUBIGNOSC", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04013"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee88bf65fb24cb4175641a69632d0a5b3d034bb8", "fields": {"nom_de_la_commune": "BARREME", "libell_d_acheminement": "BARREME", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04022"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c406811449cf8102193d96c03220941f18d559df", "fields": {"nom_de_la_commune": "VITRAY", "libell_d_acheminement": "VITRAY", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03318"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd845ba9973c7f6c9f0446982eed6b76d43b158", "fields": {"nom_de_la_commune": "AIGLUN", "libell_d_acheminement": "AIGLUN", "code_postal": "04510", "coordonnees_gps": [44.0399432995, 6.10204866093], "code_commune_insee": "04001"}, "geometry": {"type": "Point", "coordinates": [6.10204866093, 44.0399432995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f1be6e3ee314041994b967f314e787650d4d45f", "fields": {"nom_de_la_commune": "ALLONS", "libell_d_acheminement": "ALLONS", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04005"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8e829cb3dd5ccb3b368673ef03d3bb409559091", "fields": {"nom_de_la_commune": "BARLES", "libell_d_acheminement": "BARLES", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04020"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b4b76cc4ced7559af9302abcdf783752fbe6205", "fields": {"nom_de_la_commune": "AUZET", "libell_d_acheminement": "AUZET", "code_postal": "04140", "coordonnees_gps": [44.3210082805, 6.32902498378], "code_commune_insee": "04017"}, "geometry": {"type": "Point", "coordinates": [6.32902498378, 44.3210082805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca4d25aee981308635633953b814fab21f11196", "fields": {"nom_de_la_commune": "VILLEFRANCHE D ALLIER", "libell_d_acheminement": "VILLEFRANCHE D ALLIER", "code_postal": "03430", "coordonnees_gps": [46.4484596667, 2.84631497595], "code_commune_insee": "03315"}, "geometry": {"type": "Point", "coordinates": [2.84631497595, 46.4484596667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a154812c92c789a933ce475f602598684bcc2cc8", "fields": {"nom_de_la_commune": "TOULON SUR ALLIER", "libell_d_acheminement": "TOULON SUR ALLIER", "code_postal": "03400", "coordonnees_gps": [46.5948274865, 3.39131672736], "code_commune_insee": "03286"}, "geometry": {"type": "Point", "coordinates": [3.39131672736, 46.5948274865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb5b6ce9b33c9419763d3b4b79bc95b114efa9ec", "fields": {"nom_de_la_commune": "TORTEZAIS", "libell_d_acheminement": "TORTEZAIS", "code_postal": "03430", "coordonnees_gps": [46.4484596667, 2.84631497595], "code_commune_insee": "03285"}, "geometry": {"type": "Point", "coordinates": [2.84631497595, 46.4484596667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8aeb5a0c5733e2e8c8d3971cd6a47a908288173", "fields": {"nom_de_la_commune": "VILLEBRET", "libell_d_acheminement": "VILLEBRET", "code_postal": "03310", "coordonnees_gps": [46.276794637, 2.66130166835], "code_commune_insee": "03314"}, "geometry": {"type": "Point", "coordinates": [2.66130166835, 46.276794637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d859dc65a036336c746e27c6921abe0333a147ce", "fields": {"nom_de_la_commune": "LE THEIL", "libell_d_acheminement": "LE THEIL", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03281"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49f1b6cf041621f6e1fbd267af50ed6ef9ec56d2", "fields": {"nom_de_la_commune": "SANSSAT", "libell_d_acheminement": "SANSSAT", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03266"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77b45b4b0c296b1b8429bce9d0711a2a9cb6000f", "fields": {"nom_de_la_commune": "THIONNE", "libell_d_acheminement": "THIONNE", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03284"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27af731d1fbc7dff7429380816ddc8e8fa4affac", "fields": {"nom_de_la_commune": "TREBAN", "libell_d_acheminement": "TREBAN", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03287"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a3506b45eb4d345c87bbd57757640da566027ca", "fields": {"nom_de_la_commune": "VIEURE", "libell_d_acheminement": "VIEURE", "code_postal": "03430", "coordonnees_gps": [46.4484596667, 2.84631497595], "code_commune_insee": "03312"}, "geometry": {"type": "Point", "coordinates": [2.84631497595, 46.4484596667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d04f0aaffce4da97745abdeb40e52929b1c917b7", "fields": {"nom_de_la_commune": "VAUMAS", "libell_d_acheminement": "VAUMAS", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03300"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fefc2530821a20cb3efed61cddf20b097c9329ea", "fields": {"code_postal": "04200", "code_commune_insee": "04145", "libell_d_acheminement": "PEIPIN", "ligne_5": "LES BONS ENFANTS", "nom_de_la_commune": "PEIPIN", "coordonnees_gps": [44.2004441719, 5.9040305038]}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d6add26400d39e60940165a66488dd8d1030fd7", "fields": {"nom_de_la_commune": "LA MOTTE DU CAIRE", "libell_d_acheminement": "LA MOTTE DU CAIRE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04134"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfdb2607e611711e5bc540f9c5a089f83d9cdfd8", "fields": {"nom_de_la_commune": "LES OMERGUES", "libell_d_acheminement": "LES OMERGUES", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04140"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6149f9112e7271b398bbd4d5ba507db2c4d98c", "fields": {"nom_de_la_commune": "MONTLAUX", "libell_d_acheminement": "MONTLAUX", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04130"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "775a68b00518ecbae01014d4f1de960dc402f23b", "fields": {"nom_de_la_commune": "OPPEDETTE", "libell_d_acheminement": "OPPEDETTE", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04142"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536c2412228034a6dc23706501942b8e4fbee9c9", "fields": {"nom_de_la_commune": "ONGLES", "libell_d_acheminement": "ONGLES", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04141"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117563d3539f14ab1504f63786beb7ecf62b560f", "fields": {"code_postal": "04270", "code_commune_insee": "04084", "libell_d_acheminement": "ESTOUBLON", "ligne_5": "TREVANS", "nom_de_la_commune": "ESTOUBLON", "coordonnees_gps": [43.9535232378, 6.23179869809]}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe2dd9242bd6c183d28b9d66ac482a032515779a", "fields": {"nom_de_la_commune": "FAUCON DE BARCELONNETTE", "libell_d_acheminement": "FAUCON DE BARCELONNETTE", "code_postal": "04400", "coordonnees_gps": [44.3554624604, 6.65679459978], "code_commune_insee": "04086"}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c45890a3c2ad59a304df07bbd8ded5dd9abfa640", "fields": {"nom_de_la_commune": "LE LAUZET UBAYE", "libell_d_acheminement": "LE LAUZET UBAYE", "code_postal": "04340", "coordonnees_gps": [44.4048142358, 6.43134796483], "code_commune_insee": "04102"}, "geometry": {"type": "Point", "coordinates": [6.43134796483, 44.4048142358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd7d2c87b698743e607b8b21f51cd47f81dea74", "fields": {"nom_de_la_commune": "ENTREVENNES", "libell_d_acheminement": "ENTREVENNES", "code_postal": "04700", "coordonnees_gps": [43.9432267959, 5.96852873761], "code_commune_insee": "04077"}, "geometry": {"type": "Point", "coordinates": [5.96852873761, 43.9432267959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36306ec137ec5f5b5deaa011cdc3e28682ab52aa", "fields": {"nom_de_la_commune": "FORCALQUIER", "libell_d_acheminement": "FORCALQUIER", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04088"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ec317750a6c36e84bfca7435a98e9bc77b3b716", "fields": {"nom_de_la_commune": "MIRABEAU", "libell_d_acheminement": "MIRABEAU", "code_postal": "04510", "coordonnees_gps": [44.0399432995, 6.10204866093], "code_commune_insee": "04122"}, "geometry": {"type": "Point", "coordinates": [6.10204866093, 44.0399432995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3daf8c5848a9e1576d76ea44ecc9791960fea4d", "fields": {"nom_de_la_commune": "MEAILLES", "libell_d_acheminement": "MEAILLES", "code_postal": "04240", "coordonnees_gps": [43.977813048, 6.67580684745], "code_commune_insee": "04115"}, "geometry": {"type": "Point", "coordinates": [6.67580684745, 43.977813048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e5bca6b12b8725e560156622e3ccea3ce2b2f08", "fields": {"nom_de_la_commune": "MALIJAI", "libell_d_acheminement": "MALIJAI", "code_postal": "04350", "coordonnees_gps": [44.0338981069, 6.05079344905], "code_commune_insee": "04108"}, "geometry": {"type": "Point", "coordinates": [6.05079344905, 44.0338981069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a843fc05c67afa0906632793bc22833afe5feee", "fields": {"nom_de_la_commune": "GIGORS", "libell_d_acheminement": "GIGORS", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04093"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff45809716755ac05ec66c4484af46918b5d1a4", "fields": {"nom_de_la_commune": "LURS", "libell_d_acheminement": "LURS", "code_postal": "04700", "coordonnees_gps": [43.9432267959, 5.96852873761], "code_commune_insee": "04106"}, "geometry": {"type": "Point", "coordinates": [5.96852873761, 43.9432267959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d087b86ddfbe975d975116d938d590d2b9f1d3", "fields": {"code_postal": "04000", "code_commune_insee": "04167", "libell_d_acheminement": "LA ROBINE SUR GALABRE", "ligne_5": "AINAC", "nom_de_la_commune": "LA ROBINE SUR GALABRE", "coordonnees_gps": [44.1282802436, 6.25179168531]}, "geometry": {"type": "Point", "coordinates": [6.25179168531, 44.1282802436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7745f708584cec8e892a6a98b966649d5edc507", "fields": {"nom_de_la_commune": "ST ETIENNE LES ORGUES", "libell_d_acheminement": "ST ETIENNE LES ORGUES", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04178"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64dbe75e3a7ebecb577618d563c48aeca1497639", "fields": {"nom_de_la_commune": "STE CROIX A LAUZE", "libell_d_acheminement": "STE CROIX A LAUZE", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04175"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4652f3fd5d1ff99240d1cb8fc73a48bbada832c5", "fields": {"nom_de_la_commune": "REVEST ST MARTIN", "libell_d_acheminement": "REVEST ST MARTIN", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04164"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3905ba565ec9797ab750999628cb3cc64cb46970", "fields": {"nom_de_la_commune": "REVEST DU BION", "libell_d_acheminement": "REVEST DU BION", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04163"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29eae17a4c0acb6320ba22c4bc747fcdc646f4ab", "fields": {"nom_de_la_commune": "MEOLANS REVEL", "libell_d_acheminement": "MEOLANS REVEL", "code_postal": "04340", "coordonnees_gps": [44.4048142358, 6.43134796483], "code_commune_insee": "04161"}, "geometry": {"type": "Point", "coordinates": [6.43134796483, 44.4048142358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb881c409834bccfb25609aee5ac549ae32a480", "fields": {"nom_de_la_commune": "PUIMICHEL", "libell_d_acheminement": "PUIMICHEL", "code_postal": "04700", "coordonnees_gps": [43.9432267959, 5.96852873761], "code_commune_insee": "04156"}, "geometry": {"type": "Point", "coordinates": [5.96852873761, 43.9432267959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "435a9b2b5548a0b5150133789293192856ce502b", "fields": {"code_postal": "05300", "code_commune_insee": "05053", "libell_d_acheminement": "GARDE COLOMBE", "ligne_5": "LAGRAND", "nom_de_la_commune": "GARDE COLOMBE", "coordonnees_gps": [44.2953436251, 5.81680688288]}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f39585ab020807ae31b57fa7d95bbd7c4f5401fa", "fields": {"code_postal": "05170", "code_commune_insee": "05096", "libell_d_acheminement": "ORCIERES", "ligne_5": "MERLETTE", "nom_de_la_commune": "ORCIERES", "coordonnees_gps": [44.6838701785, 6.34860583609]}, "geometry": {"type": "Point", "coordinates": [6.34860583609, 44.6838701785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a031026f203af22dcf8b241b678f43ba4a779cf", "fields": {"nom_de_la_commune": "LARAGNE MONTEGLIN", "libell_d_acheminement": "LARAGNE MONTEGLIN", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05070"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f6b5caf49d51a0a461426613c0a8a09019b6455", "fields": {"nom_de_la_commune": "FOREST ST JULIEN", "libell_d_acheminement": "FOREST ST JULIEN", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05056"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f178d0643d02ae9cdeb43261c6a9ce4bcb166e", "fields": {"nom_de_la_commune": "LE GLAIZIL", "libell_d_acheminement": "LE GLAIZIL", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05062"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "404fc84ae68c4d94634fcbac7bc255b10bba1ebe", "fields": {"nom_de_la_commune": "MONTBRAND", "libell_d_acheminement": "MONTBRAND", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05080"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6f15f01cf4276628a32329e0c0e39ccb341e59", "fields": {"nom_de_la_commune": "MONTCLUS", "libell_d_acheminement": "MONTCLUS", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05081"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb574b1671f4dcd82fd6f31f954905e8c60c92ee", "fields": {"nom_de_la_commune": "LES ORRES", "libell_d_acheminement": "LES ORRES", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05098"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff38eec6b94c5cd53eee3fe9a2b47c88ea386851", "fields": {"nom_de_la_commune": "LETTRET", "libell_d_acheminement": "LETTRET", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05074"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310884d0fe57f6208f05dc62683e4cd9b4e46137", "fields": {"nom_de_la_commune": "CROTS", "libell_d_acheminement": "CROTS", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05045"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04ecee53378ec6b616b748580e4b4b5b9e67ddf9", "fields": {"code_postal": "05500", "code_commune_insee": "05132", "libell_d_acheminement": "ST BONNET EN CHAMPSAUR", "ligne_5": "LES INFOURNAS", "nom_de_la_commune": "ST BONNET EN CHAMPSAUR", "coordonnees_gps": [44.7016544828, 6.08603823073]}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86b4b91e7125a6b5945dda0ed999a247ee753c9", "fields": {"nom_de_la_commune": "ST BONNET EN CHAMPSAUR", "libell_d_acheminement": "ST BONNET EN CHAMPSAUR", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05132"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33941d49eac1e5fa47913656ee5ec176d0f379b3", "fields": {"nom_de_la_commune": "ST ETIENNE LE LAUS", "libell_d_acheminement": "ST ETIENNE LE LAUS", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05140"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46ea7ecf2c8198c9ef86d5c1e5c76189669d9696", "fields": {"nom_de_la_commune": "PUY ST PIERRE", "libell_d_acheminement": "PUY ST PIERRE", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05109"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6797b1bf988c7faa6b61c73aec19eacc5de3c3c", "fields": {"nom_de_la_commune": "LA PIARRE", "libell_d_acheminement": "LA PIARRE", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05102"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863950567651aebbd7cd286eff96778ebd433940", "fields": {"nom_de_la_commune": "PRUNIERES", "libell_d_acheminement": "PRUNIERES", "code_postal": "05230", "coordonnees_gps": [44.5500776801, 6.2567130171], "code_commune_insee": "05106"}, "geometry": {"type": "Point", "coordinates": [6.2567130171, 44.5500776801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8564c60881784708144056d67327c480012afee7", "fields": {"nom_de_la_commune": "REMOLLON", "libell_d_acheminement": "REMOLLON", "code_postal": "05190", "coordonnees_gps": [44.4605179001, 6.21963036357], "code_commune_insee": "05115"}, "geometry": {"type": "Point", "coordinates": [6.21963036357, 44.4605179001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf5c9aae9a96385e907464489e5ec197f574c3b7", "fields": {"nom_de_la_commune": "RIBEYRET", "libell_d_acheminement": "RIBEYRET", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05117"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416c3519832415a5c02303b1d312577a63635d43", "fields": {"nom_de_la_commune": "STE COLOMBE SUR SEINE", "libell_d_acheminement": "STE COLOMBE SUR SEINE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21545"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bc2aca2ef3c9953cf96263494549f832aad4c1a", "fields": {"nom_de_la_commune": "ST EUPHRONE", "libell_d_acheminement": "ST EUPHRONE", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21547"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "828012e7325ee60fec8095225fbda327187b6419", "fields": {"nom_de_la_commune": "ST JEAN DE LOSNE", "libell_d_acheminement": "ST JEAN DE LOSNE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21554"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e21af06fb8575952348433b3ba6c69b62373ec1", "fields": {"nom_de_la_commune": "ST LEGER TRIEY", "libell_d_acheminement": "ST LEGER TRIEY", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21556"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b49816537820c76d0f501651ea0c12bd05edde", "fields": {"nom_de_la_commune": "STE MARIE LA BLANCHE", "libell_d_acheminement": "STE MARIE LA BLANCHE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21558"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39003c288efac3545889cef3722b7ee56d3a12e5", "fields": {"nom_de_la_commune": "ST PRIX LES ARNAY", "libell_d_acheminement": "ST PRIX LES ARNAY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21567"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b23ea7012c755688515bffd463700fdb0851c3b3", "fields": {"nom_de_la_commune": "ST VICTOR SUR OUCHE", "libell_d_acheminement": "ST VICTOR SUR OUCHE", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21578"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17adeed986b741bd6c3e6b4eaa412c6aebda5e44", "fields": {"nom_de_la_commune": "SALIVES", "libell_d_acheminement": "SALIVES", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21579"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f314bb0be7f48a7afa35444f16276d74f0687110", "fields": {"nom_de_la_commune": "SELONGEY", "libell_d_acheminement": "SELONGEY", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21599"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d82a5eaa7e39cf2e26290c95e178c9af58d80065", "fields": {"nom_de_la_commune": "SENNECEY LES DIJON", "libell_d_acheminement": "SENNECEY LES DIJON", "code_postal": "21800", "coordonnees_gps": [47.2974794618, 5.12130493995], "code_commune_insee": "21605"}, "geometry": {"type": "Point", "coordinates": [5.12130493995, 47.2974794618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a1fc314d2785c40cd95dba6f51882a68e2e3c2", "fields": {"nom_de_la_commune": "SOISSONS SUR NACEY", "libell_d_acheminement": "SOISSONS SUR NACEY", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21610"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1133836c9700da9641e255fe9dfd2c3332ec93", "fields": {"nom_de_la_commune": "SOUHEY", "libell_d_acheminement": "SOUHEY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21612"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aa7ab845f948c0de1220160d43d534141af3da7", "fields": {"nom_de_la_commune": "SPOY", "libell_d_acheminement": "SPOY", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21614"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f27e6d5835e91cdcf8d6f357b58aa31b65bb1d3b", "fields": {"nom_de_la_commune": "TANAY", "libell_d_acheminement": "TANAY", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21619"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d6519701c0e28508ed1c0f25187035eedee77a6", "fields": {"nom_de_la_commune": "TART L ABBAYE", "libell_d_acheminement": "TART L ABBAYE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21621"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76a5e9ef35cd459ba73c0c787cd30a79593815b", "fields": {"nom_de_la_commune": "THOISY LE DESERT", "libell_d_acheminement": "THOISY LE DESERT", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21630"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "734637c0c80fe34b875d810b4802eed6915971e7", "fields": {"nom_de_la_commune": "THURY", "libell_d_acheminement": "THURY", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21636"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41466e5400426458eef14cc34a6cc50ad25fcf94", "fields": {"nom_de_la_commune": "TIL CHATEL", "libell_d_acheminement": "TIL CHATEL", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21638"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8150d3423a58c69cf095f93c58744e8551b4dd2", "fields": {"nom_de_la_commune": "TILLENAY", "libell_d_acheminement": "TILLENAY", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21639"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d7b11f41a4e888711b7bad8c476cedfc113558", "fields": {"nom_de_la_commune": "TRECLUN", "libell_d_acheminement": "TRECLUN", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21643"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7956ab5465d90860d7eb10b6748c5d9c9f70514a", "fields": {"nom_de_la_commune": "UNCEY LE FRANC", "libell_d_acheminement": "UNCEY LE FRANC", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21649"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa820bec83593c49471a422070df0437d1776531", "fields": {"nom_de_la_commune": "VAROIS ET CHAIGNOT", "libell_d_acheminement": "VAROIS ET CHAIGNOT", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21657"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a7a9a91497c4ee65bf700b45dd41f545237244", "fields": {"nom_de_la_commune": "VAUX SAULES", "libell_d_acheminement": "VAUX SAULES", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21659"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa9cb1fce8f1b7ecdb7c808c4690b69e64e26026", "fields": {"nom_de_la_commune": "VERDONNET", "libell_d_acheminement": "VERDONNET", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21664"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "226c30f850cba6d830d3e17b05251469c6c8a272", "fields": {"nom_de_la_commune": "VIANGES", "libell_d_acheminement": "VIANGES", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21675"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e2098aabdb36b61a418b298ea7848695776602", "fields": {"nom_de_la_commune": "VIC DE CHASSENAY", "libell_d_acheminement": "VIC DE CHASSENAY", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21676"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe6e3fc96c3127a3a996f52e4408149ab3f0f602", "fields": {"nom_de_la_commune": "VIC DES PRES", "libell_d_acheminement": "VIC DES PRES", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21677"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9703e12fbd2f63ab1e30ffbcf30499f88533b09b", "fields": {"nom_de_la_commune": "VIELVERGE", "libell_d_acheminement": "VIELVERGE", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21680"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4486bf7820f87aafd1a1493fef9e934cef2b9401", "fields": {"nom_de_la_commune": "VIEUX CHATEAU", "libell_d_acheminement": "VIEUX CHATEAU", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21681"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c0592d55b2b98a6a5e1a811a165a3d16e45ce70", "fields": {"nom_de_la_commune": "VILLEDIEU", "libell_d_acheminement": "VILLEDIEU", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21693"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be095a5052c7ec57f5214b100753921efd4049eb", "fields": {"nom_de_la_commune": "VILLERS PATRAS", "libell_d_acheminement": "VILLERS PATRAS", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21700"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b7aa7b3cfea804d41a8d12204f7b796b7c1b71", "fields": {"nom_de_la_commune": "VILLERS ROTIN", "libell_d_acheminement": "VILLERS ROTIN", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21701"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5891b49d4878e93e97488e8d424cefea3a6cb7e9", "fields": {"nom_de_la_commune": "VILLEY SUR TILLE", "libell_d_acheminement": "VILLEY SUR TILLE", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21702"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23abda2aa616dae0ad14771c472c4ed4f68fd8aa", "fields": {"nom_de_la_commune": "VILLIERS EN MORVAN", "libell_d_acheminement": "VILLIERS EN MORVAN", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21703"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c11b6a4fb5283c87a46c42245fbfb05920827bb7", "fields": {"nom_de_la_commune": "VISERNY", "libell_d_acheminement": "VISERNY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21709"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7744714d13be19911d5774df03ac22a9e92d369d", "fields": {"nom_de_la_commune": "VONGES", "libell_d_acheminement": "VONGES", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21713"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b52924e5089c1e9336e1edc72b246a2cb209efa7", "fields": {"nom_de_la_commune": "BEGARD", "libell_d_acheminement": "BEGARD", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22004"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08ab4a0b2c28e815551d88d619fd1e0bb01dfffc", "fields": {"nom_de_la_commune": "BELLE ISLE EN TERRE", "libell_d_acheminement": "BELLE ISLE EN TERRE", "code_postal": "22810", "coordonnees_gps": [48.5216835739, -3.40784365182], "code_commune_insee": "22005"}, "geometry": {"type": "Point", "coordinates": [-3.40784365182, 48.5216835739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827a33a663d99560b938b94ff69bf7225c42d52c", "fields": {"nom_de_la_commune": "BOQUEHO", "libell_d_acheminement": "BOQUEHO", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22011"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "531f622bd02c79d4a5cb3734e25099313540aec0", "fields": {"nom_de_la_commune": "LA BOUILLIE", "libell_d_acheminement": "LA BOUILLIE", "code_postal": "22240", "coordonnees_gps": [48.6228539052, -2.37843201672], "code_commune_insee": "22012"}, "geometry": {"type": "Point", "coordinates": [-2.37843201672, 48.6228539052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf6750f4ae8fd70ff03aa8eda755458c74cc990c", "fields": {"nom_de_la_commune": "BREHAND", "libell_d_acheminement": "BREHAND", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22015"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bfcc035cee07baa479bc5c4f160d22b965787b7", "fields": {"nom_de_la_commune": "CALLAC", "libell_d_acheminement": "CALLAC DE BRETAGNE", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22025"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab3a9d7d3de30d2db4e3eba376d7445e7097d105", "fields": {"nom_de_la_commune": "CALORGUEN", "libell_d_acheminement": "CALORGUEN", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22026"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb5698aa8acaccaa141646df8a9604601404780", "fields": {"nom_de_la_commune": "CAMLEZ", "libell_d_acheminement": "CAMLEZ", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22028"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15769a2633319fd79feb3d3af140d3388ec3a393", "fields": {"nom_de_la_commune": "CAOUENNEC LANVEZEAC", "libell_d_acheminement": "CAOUENNEC LANVEZEAC", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22030"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0780247749243a0fadb70a3095a8f56fd560955", "fields": {"nom_de_la_commune": "CAULNES", "libell_d_acheminement": "CAULNES", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22032"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eefc9f9feb58cf7bba621ad1505b799bf4f2e63d", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "LANGOURLA", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec3d5eabf724f2ac26e8a2665fdbcd1c132758c9", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "LE GOURAY", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030db981f9a17a7a854a5bb74950898006dea00a", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "PLESSALA", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d62ca464a516a095ee25071353b2207619bbf5d3", "fields": {"nom_de_la_commune": "CORLAY", "libell_d_acheminement": "CORLAY", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22047"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce98fe751c0f3511c6a7873fceee7ac1576b1033", "fields": {"nom_de_la_commune": "EREAC", "libell_d_acheminement": "EREAC", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22053"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "913852123089956a5b5b26192548ad74ab218b12", "fields": {"code_postal": "22520", "code_commune_insee": "22055", "libell_d_acheminement": "BINIC ETABLES SUR MER", "ligne_5": "BINIC", "nom_de_la_commune": "BINIC ETABLES SUR MER", "coordonnees_gps": [48.6253671156, -2.8412181683]}, "geometry": {"type": "Point", "coordinates": [-2.8412181683, 48.6253671156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a5127d17aa332ca8cba88f16ea3632e54eab9da", "fields": {"nom_de_la_commune": "GOUDELIN", "libell_d_acheminement": "GOUDELIN", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22065"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0aef10dd2c7fd4abe5184012616f50c624640da", "fields": {"nom_de_la_commune": "HEMONSTOIR", "libell_d_acheminement": "HEMONSTOIR", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22075"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "600c0f15b7aca8e8edde60693064e0fa141cfdb1", "fields": {"nom_de_la_commune": "HENON", "libell_d_acheminement": "HENON", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22079"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68d88c30bd2ff72ba3b3ccbd8e5836668b17f224", "fields": {"code_postal": "22270", "code_commune_insee": "22084", "libell_d_acheminement": "JUGON LES LACS COMMUNE NOUVELLE", "ligne_5": "DOLO", "nom_de_la_commune": "JUGON LES LACS COMMUNE NOUVELLE", "coordonnees_gps": [48.4388729687, -2.34282802999]}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80765452da5903aa756c3b97d3a68a2aa90282f6", "fields": {"nom_de_la_commune": "KERMARIA SULARD", "libell_d_acheminement": "KERMARIA SULARD", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22090"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b27103f4d3d5a1e6f3815acb06ffc862a39c7d1", "fields": {"code_postal": "22400", "code_commune_insee": "22093", "libell_d_acheminement": "LAMBALLE", "ligne_5": "LA POTERIE", "nom_de_la_commune": "LAMBALLE", "coordonnees_gps": [48.5016489284, -2.50647227729]}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa01cbb787f0aa4d21a942f7d56c6f540c6c14eb", "fields": {"code_postal": "22400", "code_commune_insee": "22093", "libell_d_acheminement": "LAMBALLE", "ligne_5": "MESLIN", "nom_de_la_commune": "LAMBALLE", "coordonnees_gps": [48.5016489284, -2.50647227729]}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d8c6c8eb312cd041bc83a830d6985e2dc89ded8", "fields": {"code_postal": "22400", "code_commune_insee": "22093", "libell_d_acheminement": "LAMBALLE", "ligne_5": "ST AARON", "nom_de_la_commune": "LAMBALLE", "coordonnees_gps": [48.5016489284, -2.50647227729]}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c33b0aac6d7323d6fe99ad4124402554241373", "fields": {"code_postal": "22400", "code_commune_insee": "22093", "libell_d_acheminement": "LAMBALLE", "ligne_5": "TREGOMAR", "nom_de_la_commune": "LAMBALLE", "coordonnees_gps": [48.5016489284, -2.50647227729]}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67b73d1b752e44d1671b515fc19bc32b365a6b40", "fields": {"nom_de_la_commune": "LANCIEUX", "libell_d_acheminement": "LANCIEUX", "code_postal": "22770", "coordonnees_gps": [48.6009740772, -2.14784206483], "code_commune_insee": "22094"}, "geometry": {"type": "Point", "coordinates": [-2.14784206483, 48.6009740772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e56e2ce1bcd9f1a63ace183b2df2522339c9e9d", "fields": {"nom_de_la_commune": "LANGUEDIAS", "libell_d_acheminement": "LANGUEDIAS", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22104"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b60fd472e1ae388966fc4d54d611102638d3d92", "fields": {"nom_de_la_commune": "LANLOUP", "libell_d_acheminement": "LANLOUP", "code_postal": "22580", "coordonnees_gps": [48.6838185781, -2.93369249044], "code_commune_insee": "22109"}, "geometry": {"type": "Point", "coordinates": [-2.93369249044, 48.6838185781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9cc953bb7abddf4372b5ef1bb1c8964bcfd3548", "fields": {"nom_de_la_commune": "LANMERIN", "libell_d_acheminement": "LANMERIN", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22110"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e713414aa6e41ef574eb92f4f3bc04d75d56859", "fields": {"nom_de_la_commune": "LANNION", "libell_d_acheminement": "LANNION", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22113"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c44f9a889126f179b8c35ced94197c9ae9bd6822", "fields": {"code_postal": "22410", "code_commune_insee": "22117", "libell_d_acheminement": "LANTIC", "ligne_5": "NOTRE DAME DE LA COUR", "nom_de_la_commune": "LANTIC", "coordonnees_gps": [48.627965542, -2.88359302537]}, "geometry": {"type": "Point", "coordinates": [-2.88359302537, 48.627965542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b56d022c938ad753bfd280c2a62c1b84677dea8", "fields": {"nom_de_la_commune": "LANVALLAY", "libell_d_acheminement": "LANVALLAY", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22118"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e551cc62d4bd0fa734a6bc2d017a5062ca9dc19", "fields": {"nom_de_la_commune": "LANVOLLON", "libell_d_acheminement": "LANVOLLON", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22121"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa5346a84350eea0d88f9c9a283509a95ced9247", "fields": {"nom_de_la_commune": "LESCOUET GOUAREC", "libell_d_acheminement": "LESCOUET GOUAREC", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22124"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "873c59c293e5937f8199365ecc4c65f77f587c28", "fields": {"nom_de_la_commune": "LEZARDRIEUX", "libell_d_acheminement": "LEZARDRIEUX", "code_postal": "22740", "coordonnees_gps": [48.7862156131, -3.14241829352], "code_commune_insee": "22127"}, "geometry": {"type": "Point", "coordinates": [-3.14241829352, 48.7862156131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f76a5b0f93a0336edb0ca8617b2cb21e42504df", "fields": {"code_postal": "22740", "code_commune_insee": "22127", "libell_d_acheminement": "LEZARDRIEUX", "ligne_5": "KERMOUSTER", "nom_de_la_commune": "LEZARDRIEUX", "coordonnees_gps": [48.7862156131, -3.14241829352]}, "geometry": {"type": "Point", "coordinates": [-3.14241829352, 48.7862156131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc210bc5d9eb355682bfcf401795553da162680f", "fields": {"nom_de_la_commune": "LOCARN", "libell_d_acheminement": "LOCARN", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22128"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c1a5d3ae00c8bb767ed07f701583021f2c20fc", "fields": {"nom_de_la_commune": "LOHUEC", "libell_d_acheminement": "LOHUEC", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22132"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b913c1236a7e542eb843bc9526ddca8cc5d713", "fields": {"nom_de_la_commune": "LOUANNEC", "libell_d_acheminement": "LOUANNEC", "code_postal": "22700", "coordonnees_gps": [48.7941225989, -3.4412963824], "code_commune_insee": "22134"}, "geometry": {"type": "Point", "coordinates": [-3.4412963824, 48.7941225989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "135d6d6537f2874e56034a720ee3f43950c2e7fd", "fields": {"nom_de_la_commune": "MAGOAR", "libell_d_acheminement": "MAGOAR", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22139"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f757a2d20a5165c4fa99656f0bdff6e34d359328", "fields": {"nom_de_la_commune": "LE MERZER", "libell_d_acheminement": "LE MERZER", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22150"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b9d0bcb16561fa2752a87264943567d527037d0", "fields": {"nom_de_la_commune": "MORIEUX", "libell_d_acheminement": "MORIEUX", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22154"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c467a28e9ae76125ab4dc662bc13981f0b0ae69e", "fields": {"nom_de_la_commune": "LE MOUSTOIR", "libell_d_acheminement": "LE MOUSTOIR", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22157"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a75b421a1d762ca3f9782a6092c4c42900d29e3", "fields": {"nom_de_la_commune": "NOYAL", "libell_d_acheminement": "NOYAL", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22160"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc4862d280d3e38da392c49d652871c7315e83e4", "fields": {"nom_de_la_commune": "PLANCOET", "libell_d_acheminement": "PLANCOET", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22172"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "794b00938ecb51b7092d82427e5791055b55c540", "fields": {"code_postal": "22400", "code_commune_insee": "22173", "libell_d_acheminement": "PLANGUENOUAL", "ligne_5": "LA COTENTIN PLANGUENOUAL", "nom_de_la_commune": "PLANGUENOUAL", "coordonnees_gps": [48.5016489284, -2.50647227729]}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35e2dd47311026056aaa27be4954ae2c1877a02c", "fields": {"nom_de_la_commune": "PLEDELIAC", "libell_d_acheminement": "PLEDELIAC", "code_postal": "22270", "coordonnees_gps": [48.4388729687, -2.34282802999], "code_commune_insee": "22175"}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "672ca0cac636497f73393ea0e7ef4094401a5251", "fields": {"nom_de_la_commune": "PLEHEDEL", "libell_d_acheminement": "PLEHEDEL", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22178"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c996016957434b3885d3438546f26b8abffd6f94", "fields": {"code_postal": "22210", "code_commune_insee": "22183", "libell_d_acheminement": "LES MOULINS", "ligne_5": "LA FERRIERE", "nom_de_la_commune": "LES MOULINS", "coordonnees_gps": [48.1328117448, -2.60089281473]}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7fa42a05b61abc195220b5641dc8403e2b352d", "fields": {"code_postal": "22210", "code_commune_insee": "22183", "libell_d_acheminement": "LES MOULINS", "ligne_5": "PLEMET", "nom_de_la_commune": "LES MOULINS", "coordonnees_gps": [48.1328117448, -2.60089281473]}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4073140bafe7d2c86cf9adec90f0fd14bace04a3", "fields": {"nom_de_la_commune": "PLEMY", "libell_d_acheminement": "PLEMY", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22184"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b039245fdffb1f22d01c2830940815b69df78b", "fields": {"nom_de_la_commune": "PLENEE JUGON", "libell_d_acheminement": "PLENEE JUGON", "code_postal": "22640", "coordonnees_gps": [48.3786869246, -2.4244584084], "code_commune_insee": "22185"}, "geometry": {"type": "Point", "coordinates": [-2.4244584084, 48.3786869246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "380163360213c399718d999da644ddb4355e5ba4", "fields": {"code_postal": "22190", "code_commune_insee": "22187", "libell_d_acheminement": "PLERIN", "ligne_5": "LES ROSAIRES", "nom_de_la_commune": "PLERIN", "coordonnees_gps": [48.5437270249, -2.77055983387]}, "geometry": {"type": "Point", "coordinates": [-2.77055983387, 48.5437270249]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00aa7f3bddc66380ed3d496afe423e9c33061d0f", "fields": {"nom_de_la_commune": "PLEUBIAN", "libell_d_acheminement": "PLEUBIAN", "code_postal": "22610", "coordonnees_gps": [48.8387667808, -3.14072269056], "code_commune_insee": "22195"}, "geometry": {"type": "Point", "coordinates": [-3.14072269056, 48.8387667808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa33907182f7e13194265284657564c89696b261", "fields": {"nom_de_la_commune": "PLEUDANIEL", "libell_d_acheminement": "PLEUDANIEL", "code_postal": "22740", "coordonnees_gps": [48.7862156131, -3.14241829352], "code_commune_insee": "22196"}, "geometry": {"type": "Point", "coordinates": [-3.14241829352, 48.7862156131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04225b37852e06cbfe4a5b678ef58c5f32415455", "fields": {"code_postal": "22560", "code_commune_insee": "22198", "libell_d_acheminement": "PLEUMEUR BODOU", "ligne_5": "ILE GRANDE", "nom_de_la_commune": "PLEUMEUR BODOU", "coordonnees_gps": [48.7801847576, -3.53025413579]}, "geometry": {"type": "Point", "coordinates": [-3.53025413579, 48.7801847576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca743ca1394bc0f74c5587119d111842753ff040", "fields": {"nom_de_la_commune": "PLEVIN", "libell_d_acheminement": "PLEVIN", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22202"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7877102475e19d5c36acfa7275e1b03a2b4c33ac", "fields": {"code_postal": "22470", "code_commune_insee": "22214", "libell_d_acheminement": "PLOUEZEC", "ligne_5": "LE QUESTEL", "nom_de_la_commune": "PLOUEZEC", "coordonnees_gps": [48.7387311378, -2.97896349388]}, "geometry": {"type": "Point", "coordinates": [-2.97896349388, 48.7387311378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fae9956856f7167d1cb12567a31058587304430c", "fields": {"nom_de_la_commune": "PLOUGONVER", "libell_d_acheminement": "PLOUGONVER", "code_postal": "22810", "coordonnees_gps": [48.5216835739, -3.40784365182], "code_commune_insee": "22216"}, "geometry": {"type": "Point", "coordinates": [-3.40784365182, 48.5216835739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aa6c25e44b4b6a5a74fb04fcee847a10a61a705", "fields": {"nom_de_la_commune": "PLOUNEVEZ QUINTIN", "libell_d_acheminement": "PLOUNEVEZ QUINTIN", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22229"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95b15190f418a81ae7cbcc29e4d6551d9526561f", "fields": {"nom_de_la_commune": "PLUMAUDAN", "libell_d_acheminement": "PLUMAUDAN", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22239"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c588d16f7b2876ed456580b7fd71b13d5c81c0db", "fields": {"nom_de_la_commune": "PONT MELVEZ", "libell_d_acheminement": "PONT MELVEZ", "code_postal": "22390", "coordonnees_gps": [48.476204135, -3.22431130001], "code_commune_insee": "22249"}, "geometry": {"type": "Point", "coordinates": [-3.22431130001, 48.476204135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f504b86a9de249322b70be9a41b0af4f9b2d20f", "fields": {"code_postal": "22590", "code_commune_insee": "22251", "libell_d_acheminement": "PORDIC", "ligne_5": "TREMELOIR", "nom_de_la_commune": "PORDIC", "coordonnees_gps": [48.5695461938, -2.84144566596]}, "geometry": {"type": "Point", "coordinates": [-2.84144566596, 48.5695461938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6b618b7126445e62222646122ae4726f7d7082", "fields": {"nom_de_la_commune": "LE QUILLIO", "libell_d_acheminement": "LE QUILLIO", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22260"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddb8b19d608b6c79f7aa2c390d406f530b25136a", "fields": {"nom_de_la_commune": "TALUYERS", "libell_d_acheminement": "TALUYERS", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69241"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dfb4d28a0b6696da2759a05c6c47a6b6bb9eb9c", "fields": {"nom_de_la_commune": "TASSIN LA DEMI LUNE", "libell_d_acheminement": "TASSIN LA DEMI LUNE", "code_postal": "69160", "coordonnees_gps": [45.7629979582, 4.75499430189], "code_commune_insee": "69244"}, "geometry": {"type": "Point", "coordinates": [4.75499430189, 45.7629979582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebfa68334139c6ddc6fcd9810bb92d9d6b82ad6", "fields": {"code_postal": "69240", "code_commune_insee": "69248", "libell_d_acheminement": "THIZY LES BOURGS", "ligne_5": "LA CHAPELLE DE MARDORE", "nom_de_la_commune": "THIZY LES BOURGS", "coordonnees_gps": [46.068199037, 4.3380922269]}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e799ab3fdf19ff45415d921bc301bf70703ea97c", "fields": {"nom_de_la_commune": "VAULX EN VELIN", "libell_d_acheminement": "VAULX EN VELIN", "code_postal": "69120", "coordonnees_gps": [45.7859071347, 4.92682507441], "code_commune_insee": "69256"}, "geometry": {"type": "Point", "coordinates": [4.92682507441, 45.7859071347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b1de6b8f76a1599cf85aa4493cf62c595437215", "fields": {"nom_de_la_commune": "VAUX EN BEAUJOLAIS", "libell_d_acheminement": "VAUX EN BEAUJOLAIS", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69257"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b055769d2227175d22d529acab6236feec0120a5", "fields": {"nom_de_la_commune": "VENISSIEUX", "libell_d_acheminement": "VENISSIEUX", "code_postal": "69200", "coordonnees_gps": [45.7040491197, 4.88102892999], "code_commune_insee": "69259"}, "geometry": {"type": "Point", "coordinates": [4.88102892999, 45.7040491197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "562d7b2c56d95ac16da9b78d5aeff00c855e32d8", "fields": {"nom_de_la_commune": "VERNAISON", "libell_d_acheminement": "VERNAISON", "code_postal": "69390", "coordonnees_gps": [45.6449321892, 4.78398402177], "code_commune_insee": "69260"}, "geometry": {"type": "Point", "coordinates": [4.78398402177, 45.6449321892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a17be337fdf4ebd3bd6657d4046ea3440716b570", "fields": {"nom_de_la_commune": "CHASSIEU", "libell_d_acheminement": "CHASSIEU", "code_postal": "69680", "coordonnees_gps": [45.7380935989, 4.96225946451], "code_commune_insee": "69271"}, "geometry": {"type": "Point", "coordinates": [4.96225946451, 45.7380935989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f635c7b12af839f382ce67360fd60678fa2f6a16", "fields": {"nom_de_la_commune": "COLOMBIER SAUGNIEU", "libell_d_acheminement": "COLOMBIER SAUGNIEU", "code_postal": "69124", "coordonnees_gps": [45.7180247923, 5.10320927277], "code_commune_insee": "69299"}, "geometry": {"type": "Point", "coordinates": [5.10320927277, 45.7180247923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc529a0adbb0781de4b9b52bb5457fdfcd8146ce", "fields": {"nom_de_la_commune": "LYON 05", "libell_d_acheminement": "LYON", "code_postal": "69005", "coordonnees_gps": [45.7565908412, 4.80289812145], "code_commune_insee": "69385"}, "geometry": {"type": "Point", "coordinates": [4.80289812145, 45.7565908412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbe04245d2bd275d30bb5d1d7098d8693a2228e2", "fields": {"nom_de_la_commune": "LYON 07", "libell_d_acheminement": "LYON", "code_postal": "69007", "coordonnees_gps": [45.733324111, 4.83731002266], "code_commune_insee": "69387"}, "geometry": {"type": "Point", "coordinates": [4.83731002266, 45.733324111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed2eba8c009639b2a256fcf942e1f333fe1cad5", "fields": {"nom_de_la_commune": "ADELANS ET LE VAL DE BITHAINE", "libell_d_acheminement": "ADELANS ET LE VAL DE BITHAINE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70004"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a6ea050b3f33904347ccdb9ed48ec2aded28fe", "fields": {"nom_de_la_commune": "ALAINCOURT", "libell_d_acheminement": "ALAINCOURT", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70010"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf667fa0661247d8af25d5d49bd2c650c85320dc", "fields": {"nom_de_la_commune": "ANDORNAY", "libell_d_acheminement": "ANDORNAY", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70021"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1d5400e8635a69b1dc6a4235c35979d310693f", "fields": {"nom_de_la_commune": "ANJEUX", "libell_d_acheminement": "ANJEUX", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70023"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7505f32d53f10fa29b37c9bd82b650a1f9514703", "fields": {"nom_de_la_commune": "APREMONT", "libell_d_acheminement": "APREMONT", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70024"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "147952e28b3249c6d58f023fab64b59dcb514779", "fields": {"nom_de_la_commune": "LAURAGUEL", "libell_d_acheminement": "LAURAGUEL", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11197"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4855b267bb558168d92a10ed2c6fc0e368ceea9", "fields": {"nom_de_la_commune": "LIGNAIROLLES", "libell_d_acheminement": "LIGNAIROLLES", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11204"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61ce843fa2e1038f3cd17f8910b10dba22d1144c", "fields": {"nom_de_la_commune": "LIMOUX", "libell_d_acheminement": "LIMOUX", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11206"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3fb79e85a4522df2422c80a256b72649cf98e1", "fields": {"nom_de_la_commune": "MAGRIE", "libell_d_acheminement": "MAGRIE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11211"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd37c0dce50213b6adaa5b31fd83206a5cc3a65", "fields": {"nom_de_la_commune": "MARCORIGNAN", "libell_d_acheminement": "MARCORIGNAN", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11217"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e0b5d794c5f91569d324c54a5825fda39e06df", "fields": {"nom_de_la_commune": "MARSA", "libell_d_acheminement": "MARSA", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11219"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc16e90786b2da35a3efd0321866fd0875c79db", "fields": {"nom_de_la_commune": "MAZEROLLES DU RAZES", "libell_d_acheminement": "MAZEROLLES DU RAZES", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11228"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5375a142e40565fc66182544e4cbe3a870a5539f", "fields": {"nom_de_la_commune": "MAZUBY", "libell_d_acheminement": "MAZUBY", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11229"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69616fb34b6f9e51cb52c2e4633cb2e6bfaa444", "fields": {"nom_de_la_commune": "MIRAVAL CABARDES", "libell_d_acheminement": "MIRAVAL CABARDES", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11232"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e1193b206db8c54b726fb1b09f27b48dbd8f3b", "fields": {"nom_de_la_commune": "MIREVAL LAURAGAIS", "libell_d_acheminement": "MIREVAL LAURAGAIS", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11234"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f1904287d1e3853045c16a51634e14a3ab692a", "fields": {"nom_de_la_commune": "MONTJARDIN", "libell_d_acheminement": "MONTJARDIN", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11249"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328293f195a0bab657b13b32b7cbbc82dd566d4a", "fields": {"nom_de_la_commune": "MONTOLIEU", "libell_d_acheminement": "MONTOLIEU", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11253"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f7294013b3ad63d0baafeca7cb1f72fe917e39b", "fields": {"nom_de_la_commune": "MOUSSAN", "libell_d_acheminement": "MOUSSAN", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11258"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28a1622c1dd0142976487b81a4ac78ecde989e0f", "fields": {"nom_de_la_commune": "MOUX", "libell_d_acheminement": "MOUX", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11261"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "905d3a4ac9a9add0db5d6e4135f78370b48fe4d1", "fields": {"nom_de_la_commune": "PARAZA", "libell_d_acheminement": "PARAZA", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11273"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86640bea0f7df1297938edeac0bf8298f0386678", "fields": {"nom_de_la_commune": "PAZIOLS", "libell_d_acheminement": "PAZIOLS", "code_postal": "11350", "coordonnees_gps": [42.8796650781, 2.66522654176], "code_commune_insee": "11276"}, "geometry": {"type": "Point", "coordinates": [2.66522654176, 42.8796650781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abbb794f7ad1e14b202e10ffc85a5f24a58c80a4", "fields": {"nom_de_la_commune": "PECHARIC ET LE PY", "libell_d_acheminement": "PECHARIC ET LE PY", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11277"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75fea4d32b61779d799c1ef2433581826b1cf06", "fields": {"nom_de_la_commune": "PEYRIAC MINERVOIS", "libell_d_acheminement": "PEYRIAC MINERVOIS", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11286"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5958db74464005b46ad101edf3512d9f29bb0cc", "fields": {"nom_de_la_commune": "PEYROLLES", "libell_d_acheminement": "PEYROLLES", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11287"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79cb759858843064dbcfeed00c7565627ed9877", "fields": {"nom_de_la_commune": "PLAVILLA", "libell_d_acheminement": "PLAVILLA", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11291"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5cccc501f4a4ca2b4242ae8ec8cec0aa1cf0576", "fields": {"nom_de_la_commune": "PORTEL DES CORBIERES", "libell_d_acheminement": "PORTEL DES CORBIERES", "code_postal": "11490", "coordonnees_gps": [43.0518718321, 2.90610520516], "code_commune_insee": "11295"}, "geometry": {"type": "Point", "coordinates": [2.90610520516, 43.0518718321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44eccc2baa8bd6f6cf0e800803fadc44de2958fa", "fields": {"nom_de_la_commune": "PUICHERIC", "libell_d_acheminement": "PUICHERIC", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11301"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e31262658ff9ffb83cd03050f9cc915808c05889", "fields": {"nom_de_la_commune": "PUIVERT", "libell_d_acheminement": "PUIVERT", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11303"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4c92ba4f39b3ee6354682d2c6539dd7892bc283", "fields": {"nom_de_la_commune": "RAISSAC D AUDE", "libell_d_acheminement": "RAISSAC D AUDE", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11307"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6928cb594cee8b0d6a4304a120dd40c809c4221", "fields": {"nom_de_la_commune": "RIEUX MINERVOIS", "libell_d_acheminement": "RIEUX MINERVOIS", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11315"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8203354c919eb4097c22da5c57cefa46347f47f8", "fields": {"nom_de_la_commune": "RIVEL", "libell_d_acheminement": "RIVEL", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11316"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63536b66252d223a3cacf2a224a39c7a646da173", "fields": {"nom_de_la_commune": "ROULLENS", "libell_d_acheminement": "ROULLENS", "code_postal": "11290", "coordonnees_gps": [43.1943746552, 2.18782678941], "code_commune_insee": "11327"}, "geometry": {"type": "Point", "coordinates": [2.18782678941, 43.1943746552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c914f13e2a5af44d069178279a2bde5b588f849f", "fields": {"nom_de_la_commune": "ST AMANS", "libell_d_acheminement": "ST AMANS", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11331"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0816320ce0778ba6d53b9c42c3ef6ccdcc4d4cd", "fields": {"nom_de_la_commune": "STE CAMELLE", "libell_d_acheminement": "STE CAMELLE", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11334"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0d2d4fbb902eaf558d2c1135c273b75de84b24", "fields": {"nom_de_la_commune": "ST COUAT D AUDE", "libell_d_acheminement": "ST COUAT D AUDE", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11337"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba494375a6c327c962e64a3cefc4585639a4f1ff", "fields": {"nom_de_la_commune": "STE EULALIE", "libell_d_acheminement": "STE EULALIE", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11340"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41d5b62e560f9111050ff9a3417ada5011c31053", "fields": {"nom_de_la_commune": "ST FERRIOL", "libell_d_acheminement": "ST FERRIOL", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11341"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290242b36668013709e92330d850efc1dff0c739", "fields": {"nom_de_la_commune": "ST GAUDERIC", "libell_d_acheminement": "ST GAUDERIC", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11343"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ad7de96f6fabdc819adbdbb36991fa4c64c8c9", "fields": {"nom_de_la_commune": "ST JULIEN DE BRIOLA", "libell_d_acheminement": "ST JULIEN DE BRIOLA", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11348"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc719b30f31e4fc5fc82fcb44b531bbe141325f9", "fields": {"nom_de_la_commune": "ST LOUIS ET PARAHOU", "libell_d_acheminement": "ST LOUIS ET PARAHOU", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11352"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118d27901077fd201e2d8e8d240501294c3e1ea6", "fields": {"nom_de_la_commune": "ST MARCEL SUR AUDE", "libell_d_acheminement": "ST MARCEL SUR AUDE", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11353"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77379dd8bed29165d3c1cd0bc6aea5bbaa0ab663", "fields": {"nom_de_la_commune": "ST MARTIN DES PUITS", "libell_d_acheminement": "ST MARTIN DES PUITS", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11354"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f137787a0305bf8bc6722d7e4da191d2d136d42b", "fields": {"nom_de_la_commune": "ST MARTIN LALANDE", "libell_d_acheminement": "ST MARTIN LALANDE", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11356"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c6f5b765c4aaa029bb1ebad3a4da325cdf2abdf", "fields": {"nom_de_la_commune": "ST MARTIN LYS", "libell_d_acheminement": "ST MARTIN LYS", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11358"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67025e93866a99dca712dd068fd1a1b85d9f9cd6", "fields": {"nom_de_la_commune": "SALLELES CABARDES", "libell_d_acheminement": "SALLELES CABARDES", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11368"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999e504b13acfef3da5630014139e7c34e916e20", "fields": {"nom_de_la_commune": "SALLES SUR L HERS", "libell_d_acheminement": "SALLES SUR L HERS", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11371"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139347ca8fa926f689cafc64322b6920f29fc455", "fields": {"nom_de_la_commune": "SALZA", "libell_d_acheminement": "SALZA", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11374"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec93ac56c55f2da46dd5122022738988d8a4a0fb", "fields": {"nom_de_la_commune": "SIGEAN", "libell_d_acheminement": "SIGEAN", "code_postal": "11130", "coordonnees_gps": [43.0395447996, 2.98099575454], "code_commune_insee": "11379"}, "geometry": {"type": "Point", "coordinates": [2.98099575454, 43.0395447996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a9ce25ef155d0208aa197bf1bde5acedce3248", "fields": {"nom_de_la_commune": "SOUGRAIGNE", "libell_d_acheminement": "SOUGRAIGNE", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11381"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ba89423cd7dd726179e04a6795ea08b5693d67", "fields": {"nom_de_la_commune": "TRASSANEL", "libell_d_acheminement": "TRASSANEL", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11395"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c14340394201bcd91b9b1df03f6b984c12d57a24", "fields": {"nom_de_la_commune": "VENTENAC EN MINERVOIS", "libell_d_acheminement": "VENTENAC EN MINERVOIS", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11405"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81721f3b4f918b3e8fa4631ba698d75cddd1b55c", "fields": {"nom_de_la_commune": "VILLANIERE", "libell_d_acheminement": "VILLANIERE", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11411"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206771eec00f723072b1e7bc70a224f1c46055fa", "fields": {"nom_de_la_commune": "VILLAR ST ANSELME", "libell_d_acheminement": "VILLAR ST ANSELME", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11415"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "561e31fb5e9b8f8dcc7830567c4b74240284840b", "fields": {"nom_de_la_commune": "VILLARZEL CABARDES", "libell_d_acheminement": "VILLARZEL CABARDES", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11416"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04344984d9ca8cd5e6c771d126ec662d0c27c46c", "fields": {"nom_de_la_commune": "VILLAUTOU", "libell_d_acheminement": "VILLAUTOU", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11419"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a061a9d941622569763abf9530062759ae31de3", "fields": {"nom_de_la_commune": "VILLEFLOURE", "libell_d_acheminement": "VILLEFLOURE", "code_postal": "11570", "coordonnees_gps": [43.1506610986, 2.38289109862], "code_commune_insee": "11423"}, "geometry": {"type": "Point", "coordinates": [2.38289109862, 43.1506610986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f49fc5e06a3174f9686a169bd9f885fa34a9e230", "fields": {"nom_de_la_commune": "VILLEFORT", "libell_d_acheminement": "VILLEFORT", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11424"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8bbe95f58944ba5caf8781d3b61a4e5233a425e", "fields": {"nom_de_la_commune": "VILLEMAGNE", "libell_d_acheminement": "VILLEMAGNE", "code_postal": "11310", "coordonnees_gps": [43.3722409402, 2.17410983728], "code_commune_insee": "11428"}, "geometry": {"type": "Point", "coordinates": [2.17410983728, 43.3722409402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4344ebc7eaa257eaf9aefb6db2a68c50f08143c1", "fields": {"nom_de_la_commune": "VILLENEUVE LA COMPTAL", "libell_d_acheminement": "VILLENEUVE LA COMPTAL", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11430"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80229ecd630e9f408b1b1b2f7384f35c28ce06f7", "fields": {"nom_de_la_commune": "VILLENEUVE MINERVOIS", "libell_d_acheminement": "VILLENEUVE MINERVOIS", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11433"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ef8cbaeccdb74a98371368ff83afbc11ac1acc", "fields": {"nom_de_la_commune": "VILLEROUGE TERMENES", "libell_d_acheminement": "VILLEROUGE TERMENES", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11435"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1185d4d132f91fd5da62fbf76d2092589b5aa1b", "fields": {"nom_de_la_commune": "VILLESPY", "libell_d_acheminement": "VILLESPY", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11439"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71a07a520068694871e76935a56355206ef5b222", "fields": {"nom_de_la_commune": "VILLETRITOULS", "libell_d_acheminement": "VILLETRITOULS", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11440"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1d38a455b31d527cbcbadbcc240ceecad67347", "fields": {"nom_de_la_commune": "VINASSAN", "libell_d_acheminement": "VINASSAN", "code_postal": "11110", "coordonnees_gps": [43.2267884537, 3.0836448835], "code_commune_insee": "11441"}, "geometry": {"type": "Point", "coordinates": [3.0836448835, 43.2267884537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370a5381c075a6f995e7669eb9d1d5a7acf16bd9", "fields": {"nom_de_la_commune": "ALMONT LES JUNIES", "libell_d_acheminement": "ALMONT LES JUNIES", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12004"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc54e018f43c4bd9a30e1725b9dff91bf61db4d0", "fields": {"nom_de_la_commune": "ANGLARS ST FELIX", "libell_d_acheminement": "ANGLARS ST FELIX", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12008"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a11552c91743e26818ceda6a07d810f271970956", "fields": {"nom_de_la_commune": "AUBIN", "libell_d_acheminement": "AUBIN", "code_postal": "12110", "coordonnees_gps": [44.5334610269, 2.25593564519], "code_commune_insee": "12013"}, "geometry": {"type": "Point", "coordinates": [2.25593564519, 44.5334610269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbeef881e92e483224df61ac8c1b3b159d295a32", "fields": {"code_postal": "12110", "code_commune_insee": "12013", "libell_d_acheminement": "AUBIN", "ligne_5": "COMBES", "nom_de_la_commune": "AUBIN", "coordonnees_gps": [44.5334610269, 2.25593564519]}, "geometry": {"type": "Point", "coordinates": [2.25593564519, 44.5334610269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f304091fed27f313cc756a90fbe55acf3af2a3b", "fields": {"code_postal": "12110", "code_commune_insee": "12013", "libell_d_acheminement": "AUBIN", "ligne_5": "LE GUA", "nom_de_la_commune": "AUBIN", "coordonnees_gps": [44.5334610269, 2.25593564519]}, "geometry": {"type": "Point", "coordinates": [2.25593564519, 44.5334610269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "237c67f314488722e7b25480f9a395795a85b3fe", "fields": {"nom_de_la_commune": "AYSSENES", "libell_d_acheminement": "AYSSENES", "code_postal": "12430", "coordonnees_gps": [44.0864778708, 2.70135704539], "code_commune_insee": "12017"}, "geometry": {"type": "Point", "coordinates": [2.70135704539, 44.0864778708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e590132cf20b780d339da32f807c548563b1b626", "fields": {"nom_de_la_commune": "BALSAC", "libell_d_acheminement": "BALSAC", "code_postal": "12510", "coordonnees_gps": [44.3662936551, 2.48525711851], "code_commune_insee": "12020"}, "geometry": {"type": "Point", "coordinates": [2.48525711851, 44.3662936551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b2819c02573296f2c0e126b09f05b2f89303692", "fields": {"code_postal": "12200", "code_commune_insee": "12021", "libell_d_acheminement": "LE BAS SEGALA", "ligne_5": "ST SALVADOU", "nom_de_la_commune": "LE BAS SEGALA", "coordonnees_gps": [44.334435824, 2.00795550071]}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff734b3a66b511a9fd5d0162ca877375b4c7c403", "fields": {"nom_de_la_commune": "BRANDONNET", "libell_d_acheminement": "BRANDONNET", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12034"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e75027755b4b4d59eb5616f5fd6a611bbc2267fb", "fields": {"nom_de_la_commune": "BRASC", "libell_d_acheminement": "BRASC", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12035"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "881ade14d963e3c291b6a9d18f0cbe0456ab730b", "fields": {"nom_de_la_commune": "CALMELS ET LE VIALA", "libell_d_acheminement": "CALMELS ET LE VIALA", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12042"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b16e117fcd8e8de2b5dc32ea7924b067f6341bc", "fields": {"nom_de_la_commune": "LA CAPELLE BONANCE", "libell_d_acheminement": "LA CAPELLE BONANCE", "code_postal": "12130", "coordonnees_gps": [44.4625155533, 2.98303027843], "code_commune_insee": "12055"}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ddc9640f71968c172f670124c8bfbda819408cd", "fields": {"nom_de_la_commune": "CASTELNAU DE MANDAILLES", "libell_d_acheminement": "CASTELNAU DE MANDAILLES", "code_postal": "12500", "coordonnees_gps": [44.5270610356, 2.81719827673], "code_commune_insee": "12061"}, "geometry": {"type": "Point", "coordinates": [2.81719827673, 44.5270610356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37f7d5a863b0000d9b1546c8886f9a6035bdb26", "fields": {"nom_de_la_commune": "CASTELNAU PEGAYROLS", "libell_d_acheminement": "CASTELNAU PEGAYROLS", "code_postal": "12620", "coordonnees_gps": [44.1639182272, 2.94123371794], "code_commune_insee": "12062"}, "geometry": {"type": "Point", "coordinates": [2.94123371794, 44.1639182272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4496d8fdf8c3a087f5df80d0dbd8b912519da3fd", "fields": {"nom_de_la_commune": "CLAIRVAUX D AVEYRON", "libell_d_acheminement": "CLAIRVAUX D AVEYRON", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12066"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ca3d71b46b7054e1f67c174da87e227226f5073", "fields": {"nom_de_la_commune": "COLOMBIES", "libell_d_acheminement": "COLOMBIES", "code_postal": "12240", "coordonnees_gps": [44.3140270715, 2.24773559855], "code_commune_insee": "12068"}, "geometry": {"type": "Point", "coordinates": [2.24773559855, 44.3140270715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "501a6bae35f20aa9cdafed27fcf06156ca209e23", "fields": {"nom_de_la_commune": "COMBRET", "libell_d_acheminement": "COMBRET", "code_postal": "12370", "coordonnees_gps": [43.8037612905, 2.74262599071], "code_commune_insee": "12069"}, "geometry": {"type": "Point", "coordinates": [2.74262599071, 43.8037612905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0dff26241684e26d4d7f6aaa3ed155a0e10944e", "fields": {"nom_de_la_commune": "CONDOM D AUBRAC", "libell_d_acheminement": "CONDOM D AUBRAC", "code_postal": "12470", "coordonnees_gps": [44.5816447424, 2.9350498797], "code_commune_insee": "12074"}, "geometry": {"type": "Point", "coordinates": [2.9350498797, 44.5816447424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aa5b7893ba69ba8cb4af544140ccbc72021a7b5", "fields": {"nom_de_la_commune": "CONNAC", "libell_d_acheminement": "CONNAC", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12075"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0d164d6b9f27c35eddf97a190ce25c9105c3fb7", "fields": {"nom_de_la_commune": "CONQUES EN ROUERGUE", "libell_d_acheminement": "CONQUES EN ROUERGUE", "code_postal": "12320", "coordonnees_gps": [44.5837975359, 2.46440638377], "code_commune_insee": "12076"}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f6a7fc41970f536c742893eb548cc00ba3bd036", "fields": {"nom_de_la_commune": "CURIERES", "libell_d_acheminement": "CURIERES", "code_postal": "12210", "coordonnees_gps": [44.6915069372, 2.81638954446], "code_commune_insee": "12088"}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68ec18842223a66185ecb5e4f6cc6ff0c19a2ca1", "fields": {"nom_de_la_commune": "DRULHE", "libell_d_acheminement": "DRULHE", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12091"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b314850e8d7b70ce7bf0852e67cb45d326d7afec", "fields": {"nom_de_la_commune": "DURENQUE", "libell_d_acheminement": "DURENQUE", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12092"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a27e28bcfda33cf85e400b87b66907bd3b3b19d9", "fields": {"nom_de_la_commune": "GABRIAC", "libell_d_acheminement": "GABRIAC", "code_postal": "12340", "coordonnees_gps": [44.4656002773, 2.70710459278], "code_commune_insee": "12106"}, "geometry": {"type": "Point", "coordinates": [2.70710459278, 44.4656002773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc4370a39d507da9ca6a90620c4d8c9990da3f48", "fields": {"nom_de_la_commune": "GAILLAC D AVEYRON", "libell_d_acheminement": "GAILLAC D AVEYRON", "code_postal": "12310", "coordonnees_gps": [44.384469335, 2.84476302604], "code_commune_insee": "12107"}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d136028bc31e6f26ab0d3a8a6b01c1091604910", "fields": {"nom_de_la_commune": "CIADOUX", "libell_d_acheminement": "CIADOUX", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31141"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925b78cafc79215469fcca8006484e4b7a54c031", "fields": {"nom_de_la_commune": "CLERMONT LE FORT", "libell_d_acheminement": "CLERMONT LE FORT", "code_postal": "31810", "coordonnees_gps": [43.4392556161, 1.44590848032], "code_commune_insee": "31148"}, "geometry": {"type": "Point", "coordinates": [1.44590848032, 43.4392556161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc45c6fdd8edd7c824a229815bf2834c5ce7e00", "fields": {"nom_de_la_commune": "COULADERE", "libell_d_acheminement": "COULADERE", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31153"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d01b0886e61eca8a5cb54a42e935fde60be74972", "fields": {"nom_de_la_commune": "COX", "libell_d_acheminement": "COX", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31156"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d028ad78ddc6247f879e38d796a0f962ec63cc55", "fields": {"nom_de_la_commune": "EMPEAUX", "libell_d_acheminement": "EMPEAUX", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31166"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02139c6b48d04c4c0e0143a5e3c10d994cab09fd", "fields": {"nom_de_la_commune": "ESPERCE", "libell_d_acheminement": "ESPERCE", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31173"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5032ebe4202326f54399792c2489d26add9f6a60", "fields": {"nom_de_la_commune": "ESTANCARBON", "libell_d_acheminement": "ESTANCARBON", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31175"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff5e656b295118a821ef02fff1ac611c1ab7042b", "fields": {"nom_de_la_commune": "EUP", "libell_d_acheminement": "EUP", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31177"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b02aa9ccebcb5e9a97773bbbca1607a8aa1f2f23", "fields": {"nom_de_la_commune": "FABAS", "libell_d_acheminement": "FABAS", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31178"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b39c5c1bf13c38accd7f176d2dfebaafb590ef", "fields": {"nom_de_la_commune": "FONBEAUZARD", "libell_d_acheminement": "FONBEAUZARD", "code_postal": "31140", "coordonnees_gps": [43.6948428019, 1.45487044416], "code_commune_insee": "31186"}, "geometry": {"type": "Point", "coordinates": [1.45487044416, 43.6948428019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07196b14ce6ea8094369f826f324849013c28265", "fields": {"nom_de_la_commune": "FONTENILLES", "libell_d_acheminement": "FONTENILLES", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31188"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08c702336282886746e9acc517850248c424443b", "fields": {"nom_de_la_commune": "LE FOUSSERET", "libell_d_acheminement": "LE FOUSSERET", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31193"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a42e65eb08b85fc8b232d04bf7ed6d37b869a4b", "fields": {"nom_de_la_commune": "FRONSAC", "libell_d_acheminement": "FRONSAC", "code_postal": "31440", "coordonnees_gps": [42.895421056, 0.722774837437], "code_commune_insee": "31199"}, "geometry": {"type": "Point", "coordinates": [0.722774837437, 42.895421056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e78b785e2d7b7a954b98b00629febdbdd33eb81d", "fields": {"nom_de_la_commune": "GARAC", "libell_d_acheminement": "GARAC", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31209"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1137c2a6ea33ea092e73992fed1fd40e60093a6c", "fields": {"nom_de_la_commune": "GARIDECH", "libell_d_acheminement": "GARIDECH", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31212"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "507b8e2b16be5d223f533286af2af7a4760139e4", "fields": {"nom_de_la_commune": "GRAZAC", "libell_d_acheminement": "GRAZAC", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31231"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6faf705a34934003f59bd286158c4266b4138b5", "fields": {"nom_de_la_commune": "HIS", "libell_d_acheminement": "HIS", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31237"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb0b05da879006de17acb99227093c78da22941", "fields": {"nom_de_la_commune": "JUZES", "libell_d_acheminement": "JUZES", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31243"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e7065748940eb5bb8bbe522c82ceed6a8a0276", "fields": {"nom_de_la_commune": "LABARTHE INARD", "libell_d_acheminement": "LABARTHE INARD", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31246"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47f26488a1ed3eba7561140f176dc495f1b51045", "fields": {"nom_de_la_commune": "LABARTHE RIVIERE", "libell_d_acheminement": "LABARTHE RIVIERE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31247"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d71813ef28222134e3d07d0e9d4c410489eb324", "fields": {"nom_de_la_commune": "LABARTHE SUR LEZE", "libell_d_acheminement": "LABARTHE SUR LEZE", "code_postal": "31860", "coordonnees_gps": [43.4654456121, 1.39604999042], "code_commune_insee": "31248"}, "geometry": {"type": "Point", "coordinates": [1.39604999042, 43.4654456121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db402032530b5f3ab2136605522784e9df743f1a", "fields": {"nom_de_la_commune": "LABASTIDE CLERMONT", "libell_d_acheminement": "LABASTIDE CLERMONT", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31250"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2608c10cf44b9969178378da09fc731c8f6cea47", "fields": {"nom_de_la_commune": "LABASTIDE PAUMES", "libell_d_acheminement": "LABASTIDE PAUMES", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31251"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "209524f67a5b295a09b83ea7a1ffc81fce8d681d", "fields": {"nom_de_la_commune": "LABASTIDE ST SERNIN", "libell_d_acheminement": "LABASTIDE ST SERNIN", "code_postal": "31620", "coordonnees_gps": [43.8087715684, 1.39926623406], "code_commune_insee": "31252"}, "geometry": {"type": "Point", "coordinates": [1.39926623406, 43.8087715684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dddeb5082e550ee52ff6036b0c398b011a0b13f", "fields": {"nom_de_la_commune": "LABRUYERE DORSA", "libell_d_acheminement": "LABRUYERE DORSA", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31256"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "421e3d9ceddc0d9a8c3525bcc49b4d242eed6ea3", "fields": {"nom_de_la_commune": "LAGARDELLE SUR LEZE", "libell_d_acheminement": "LAGARDELLE SUR LEZE", "code_postal": "31870", "coordonnees_gps": [43.3914758658, 1.36906768586], "code_commune_insee": "31263"}, "geometry": {"type": "Point", "coordinates": [1.36906768586, 43.3914758658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d9740d885a9b7b0f2c907a52bed9196fc3b7389", "fields": {"nom_de_la_commune": "LAGRACE DIEU", "libell_d_acheminement": "LAGRACE DIEU", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31264"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "680499f957c93b27dfd53ab3c4496a781446e5ba", "fields": {"nom_de_la_commune": "LAHITERE", "libell_d_acheminement": "LAHITERE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31267"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd169747de6837009bf445bd3ec013acf37593f", "fields": {"nom_de_la_commune": "LALOURET LAFFITEAU", "libell_d_acheminement": "LALOURET LAFFITEAU", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31268"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f954abced8d461dd660674a8e1876c79a90ea06a", "fields": {"nom_de_la_commune": "LANDORTHE", "libell_d_acheminement": "LANDORTHE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31270"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de886013929ee839f3fad5a039fe01c16316574e", "fields": {"nom_de_la_commune": "LARROQUE", "libell_d_acheminement": "LARROQUE", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31276"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5fad744edd22160f59dd43c73a9e65bfd5d6efe", "fields": {"nom_de_la_commune": "LATOUE", "libell_d_acheminement": "LATOUE", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31278"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feea2f778ccb728961693cd63af8b8afcd11f146", "fields": {"nom_de_la_commune": "LESPINASSE", "libell_d_acheminement": "LESPINASSE", "code_postal": "31150", "coordonnees_gps": [43.7088681187, 1.39635626813], "code_commune_insee": "31293"}, "geometry": {"type": "Point", "coordinates": [1.39635626813, 43.7088681187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925d6ecdd7bf9f46bbe9a80f4e33ea6e37caa521", "fields": {"nom_de_la_commune": "LESPITEAU", "libell_d_acheminement": "LESPITEAU", "code_postal": "31160", "coordonnees_gps": [42.9888223575, 0.812886566983], "code_commune_insee": "31294"}, "geometry": {"type": "Point", "coordinates": [0.812886566983, 42.9888223575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a46e6eb93eaa3e0b5814e460d85a1405b16fee91", "fields": {"nom_de_la_commune": "LESPUGUE", "libell_d_acheminement": "LESPUGUE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31295"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe7843f9c612ebff3faf7f874a52619a0e717780", "fields": {"nom_de_la_commune": "LEVIGNAC", "libell_d_acheminement": "LEVIGNAC", "code_postal": "31530", "coordonnees_gps": [43.6738510195, 1.16969293346], "code_commune_insee": "31297"}, "geometry": {"type": "Point", "coordinates": [1.16969293346, 43.6738510195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5855cd736eb1999f9e47e0f53062a7d4f7ea5d", "fields": {"nom_de_la_commune": "LIEOUX", "libell_d_acheminement": "LIEOUX", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31300"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0e0d5f42e5492b57709f074523725e331aa298d", "fields": {"nom_de_la_commune": "LOUDET", "libell_d_acheminement": "LOUDET", "code_postal": "31580", "coordonnees_gps": [43.1698379285, 0.548144792128], "code_commune_insee": "31305"}, "geometry": {"type": "Point", "coordinates": [0.548144792128, 43.1698379285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf1e2c83a9b881d89b287a021a444731335fe36", "fields": {"nom_de_la_commune": "MANCIOUX", "libell_d_acheminement": "MANCIOUX", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31314"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc785f7189c51fe0f26a4e8d73a54455683e9518", "fields": {"nom_de_la_commune": "MARIGNAC LASCLARES", "libell_d_acheminement": "MARIGNAC LASCLARES", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31317"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70c533e2ea2239f147721bcf2437c3c3f46c050", "fields": {"nom_de_la_commune": "MARLIAC", "libell_d_acheminement": "MARLIAC", "code_postal": "31550", "coordonnees_gps": [43.2904004473, 1.51499636485], "code_commune_insee": "31319"}, "geometry": {"type": "Point", "coordinates": [1.51499636485, 43.2904004473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b885f18f024bda11adf21dd337456926cb0c2d1", "fields": {"nom_de_la_commune": "MERVILLA", "libell_d_acheminement": "MERVILLA", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31340"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "910fa41f02469c12f3e13243c26fcd39bcd08766", "fields": {"nom_de_la_commune": "MIREPOIX SUR TARN", "libell_d_acheminement": "MIREPOIX SUR TARN", "code_postal": "31340", "coordonnees_gps": [43.8425556859, 1.50861783129], "code_commune_insee": "31346"}, "geometry": {"type": "Point", "coordinates": [1.50861783129, 43.8425556859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96abadf0aa0002476d9bedfe6a7eace583297333", "fields": {"nom_de_la_commune": "MOLAS", "libell_d_acheminement": "MOLAS", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31347"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36be3f729526f01eba1719307e90c65b96f3ccfb", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "31280", "coordonnees_gps": [43.5930942522, 1.59070902866], "code_commune_insee": "31355"}, "geometry": {"type": "Point", "coordinates": [1.59070902866, 43.5930942522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "124806dac9e4cc4230566d792499c00146ffa4e2", "fields": {"nom_de_la_commune": "MONTASTRUC LA CONSEILLERE", "libell_d_acheminement": "MONTASTRUC LA CONSEILLERE", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31358"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60a5f4e16e9136f777052af7782f944584aacf9a", "fields": {"nom_de_la_commune": "MONTBERAUD", "libell_d_acheminement": "MONTBERAUD", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31362"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ca44dc9699fc06e303c737127ed46ffb6b58409", "fields": {"nom_de_la_commune": "MONTBRUN LAURAGAIS", "libell_d_acheminement": "MONTBRUN LAURAGAIS", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31366"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbfb407d4586b24383fa0f688f07a47e6f32f9b5", "fields": {"nom_de_la_commune": "MONTCLAR DE COMMINGES", "libell_d_acheminement": "MONTCLAR DE COMMINGES", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31367"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59af4928290cfe3d195f78c210341dffa99147b0", "fields": {"nom_de_la_commune": "MONTESQUIEU VOLVESTRE", "libell_d_acheminement": "MONTESQUIEU VOLVESTRE", "code_postal": "31310", "coordonnees_gps": [43.2025563184, 1.23522167145], "code_commune_insee": "31375"}, "geometry": {"type": "Point", "coordinates": [1.23522167145, 43.2025563184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d0ec20b34bfe6d6c32e42090d9c561395c89e0c", "fields": {"nom_de_la_commune": "MONTGAILLARD SUR SAVE", "libell_d_acheminement": "MONTGAILLARD SUR SAVE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31378"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cd4b428bf9d9db7acf46d6ec01fab95ce218bb8", "fields": {"nom_de_la_commune": "MONTOULIEU ST BERNARD", "libell_d_acheminement": "MONTOULIEU ST BERNARD", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31386"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e9c21b1a1a5e83878f197a4df6f8ecf542012f", "fields": {"nom_de_la_commune": "MONTRABE", "libell_d_acheminement": "MONTRABE", "code_postal": "31850", "coordonnees_gps": [43.6433615869, 1.54999438189], "code_commune_insee": "31389"}, "geometry": {"type": "Point", "coordinates": [1.54999438189, 43.6433615869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6255f802abe50e00393d4ebb58c36ab57a899fa6", "fields": {"nom_de_la_commune": "MURET", "libell_d_acheminement": "MURET", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31395"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b0ed829d37b1b2d358330baa9a88b751e524198", "fields": {"nom_de_la_commune": "NAILLOUX", "libell_d_acheminement": "NAILLOUX", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31396"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6490c18d0ee65849976412e59778a9772abcb9", "fields": {"nom_de_la_commune": "NOUEILLES", "libell_d_acheminement": "NOUEILLES", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31401"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a9db239868c26ccee6097955cb65425b7f358b7", "fields": {"nom_de_la_commune": "ODARS", "libell_d_acheminement": "ODARS", "code_postal": "31450", "coordonnees_gps": [43.4581236124, 1.5833540579], "code_commune_insee": "31402"}, "geometry": {"type": "Point", "coordinates": [1.5833540579, 43.4581236124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46d5562a1b780c17436096a9172a23c235b728de", "fields": {"nom_de_la_commune": "ONDES", "libell_d_acheminement": "ONDES", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31403"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04c1e5f6080b1b56bf879f63404d2403a46d18c", "fields": {"nom_de_la_commune": "PECHBUSQUE", "libell_d_acheminement": "PECHBUSQUE", "code_postal": "31320", "coordonnees_gps": [43.5091044255, 1.47457796797], "code_commune_insee": "31411"}, "geometry": {"type": "Point", "coordinates": [1.47457796797, 43.5091044255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a409a366562d68b059d14e1c05af118484426088", "fields": {"nom_de_la_commune": "PEYRISSAS", "libell_d_acheminement": "PEYRISSAS", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31414"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d24009597400c7c3ce9df2fe5e26bda0e2fe1562", "fields": {"nom_de_la_commune": "PEYROUZET", "libell_d_acheminement": "PEYROUZET", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31415"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b6c90de9c32af1c209235c0889b04fdaf3590a8", "fields": {"nom_de_la_commune": "LE PIN MURELET", "libell_d_acheminement": "LE PIN MURELET", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31419"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ff06255cf36ef950831a47d44f062c5c07d687b", "fields": {"nom_de_la_commune": "PINS JUSTARET", "libell_d_acheminement": "PINS JUSTARET", "code_postal": "31860", "coordonnees_gps": [43.4654456121, 1.39604999042], "code_commune_insee": "31421"}, "geometry": {"type": "Point", "coordinates": [1.39604999042, 43.4654456121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c57c05864519aaa89a633ef7fd54114936d9a1d5", "fields": {"nom_de_la_commune": "LE PLAN", "libell_d_acheminement": "LE PLAN", "code_postal": "31220", "coordonnees_gps": [43.2048781331, 1.06590521297], "code_commune_insee": "31425"}, "geometry": {"type": "Point", "coordinates": [1.06590521297, 43.2048781331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af82eb5af2b229c5d78f0dd699c4d592f6927859", "fields": {"nom_de_la_commune": "POUY DE TOUGES", "libell_d_acheminement": "POUY DE TOUGES", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31436"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3eb701cdf3f26e02e53b85b91f32b988eff88a", "fields": {"nom_de_la_commune": "PRESERVILLE", "libell_d_acheminement": "PRESERVILLE", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31439"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c2703761a2bb31cffc9dfcbda8528c5948a0f3", "fields": {"nom_de_la_commune": "PROUPIARY", "libell_d_acheminement": "PROUPIARY", "code_postal": "31360", "coordonnees_gps": [43.1506397958, 0.901962846495], "code_commune_insee": "31440"}, "geometry": {"type": "Point", "coordinates": [0.901962846495, 43.1506397958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6743f33a00968d5192baeae7153b25cff07b3446", "fields": {"nom_de_la_commune": "PUYDANIEL", "libell_d_acheminement": "PUYDANIEL", "code_postal": "31190", "coordonnees_gps": [43.3507140411, 1.45030938384], "code_commune_insee": "31442"}, "geometry": {"type": "Point", "coordinates": [1.45030938384, 43.3507140411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baca79d26471a0d6e6c57f1a8eadfe3ac622f251", "fields": {"nom_de_la_commune": "PUYMAURIN", "libell_d_acheminement": "PUYMAURIN", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31443"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c39bd76e5be79be6475d7f5eaac6679e847c385a", "fields": {"nom_de_la_commune": "PUYSSEGUR", "libell_d_acheminement": "PUYSSEGUR", "code_postal": "31480", "coordonnees_gps": [43.7514588839, 1.05841015432], "code_commune_insee": "31444"}, "geometry": {"type": "Point", "coordinates": [1.05841015432, 43.7514588839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566813871733907c4ba2628c051271ceea476fd3", "fields": {"nom_de_la_commune": "RAMONVILLE ST AGNE", "libell_d_acheminement": "RAMONVILLE ST AGNE", "code_postal": "31520", "coordonnees_gps": [43.5440367892, 1.47752432498], "code_commune_insee": "31446"}, "geometry": {"type": "Point", "coordinates": [1.47752432498, 43.5440367892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0060669565cb1cf0fbaf2aed9ae72ed3b1a0f04e", "fields": {"nom_de_la_commune": "RIEUMES", "libell_d_acheminement": "RIEUMES", "code_postal": "31370", "coordonnees_gps": [43.4033226833, 1.09884102689], "code_commune_insee": "31454"}, "geometry": {"type": "Point", "coordinates": [1.09884102689, 43.4033226833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3316fddcb30f52deb15dd2c14d63d0b2c1a8ca", "fields": {"nom_de_la_commune": "RIOLAS", "libell_d_acheminement": "RIOLAS", "code_postal": "31230", "coordonnees_gps": [43.3503151774, 0.839491393325], "code_commune_insee": "31456"}, "geometry": {"type": "Point", "coordinates": [0.839491393325, 43.3503151774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4696140999ff78de38d35adbd28ee8bac19a5d2c", "fields": {"nom_de_la_commune": "ROQUESERIERE", "libell_d_acheminement": "ROQUESERIERE", "code_postal": "31380", "coordonnees_gps": [43.7313738787, 1.57893148418], "code_commune_insee": "31459"}, "geometry": {"type": "Point", "coordinates": [1.57893148418, 43.7313738787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f45945856a3a038586abb0f41c5d5048850d442", "fields": {"nom_de_la_commune": "ROQUETTES", "libell_d_acheminement": "ROQUETTES", "code_postal": "31120", "coordonnees_gps": [43.5086807596, 1.39534123704], "code_commune_insee": "31460"}, "geometry": {"type": "Point", "coordinates": [1.39534123704, 43.5086807596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "013cc7c5664eebc5e2a8a143e01013a39c2a46c3", "fields": {"nom_de_la_commune": "ST CEZERT", "libell_d_acheminement": "ST CEZERT", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31473"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234bc2fd8a73d0ce8eed20af37f931619235c582", "fields": {"nom_de_la_commune": "ST ELIX LE CHATEAU", "libell_d_acheminement": "ST ELIX LE CHATEAU", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31476"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373faee747c0701417e6216f85a558d1adaeb04c", "fields": {"nom_de_la_commune": "ST ELIX SEGLAN", "libell_d_acheminement": "ST ELIX SEGLAN", "code_postal": "31420", "coordonnees_gps": [43.2381139844, 0.875623449083], "code_commune_insee": "31477"}, "geometry": {"type": "Point", "coordinates": [0.875623449083, 43.2381139844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0eabd6492f3accd559e1ab6106cc1516a36a49e", "fields": {"nom_de_la_commune": "ST GAUDENS", "libell_d_acheminement": "ST GAUDENS", "code_postal": "31800", "coordonnees_gps": [43.1295079792, 0.734244860964], "code_commune_insee": "31483"}, "geometry": {"type": "Point", "coordinates": [0.734244860964, 43.1295079792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16be06a92aa8eb666b131b1de8e3d0b2b98d5243", "fields": {"nom_de_la_commune": "ST GENIES BELLEVUE", "libell_d_acheminement": "ST GENIES BELLEVUE", "code_postal": "31180", "coordonnees_gps": [43.6864958094, 1.52214716429], "code_commune_insee": "31484"}, "geometry": {"type": "Point", "coordinates": [1.52214716429, 43.6864958094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057cbe069c3a38e76e5163bc441621fa98cdc063", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "31410", "coordonnees_gps": [43.3608619219, 1.27641014789], "code_commune_insee": "31486"}, "geometry": {"type": "Point", "coordinates": [1.27641014789, 43.3608619219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fd7b0e82d8b0880a9010ef416c6d56122db071d", "fields": {"nom_de_la_commune": "ST LEON", "libell_d_acheminement": "ST LEON", "code_postal": "31560", "coordonnees_gps": [43.3305600075, 1.62947796077], "code_commune_insee": "31495"}, "geometry": {"type": "Point", "coordinates": [1.62947796077, 43.3305600075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c40530b282f061fffd55dd293f69dd54b2b7b207", "fields": {"nom_de_la_commune": "ST PIERRE DE LAGES", "libell_d_acheminement": "ST PIERRE DE LAGES", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31512"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "003b8c647e109d69db79227dd0755559b24a820c", "fields": {"nom_de_la_commune": "ST THOMAS", "libell_d_acheminement": "ST THOMAS", "code_postal": "31470", "coordonnees_gps": [43.5120887102, 1.15865437582], "code_commune_insee": "31518"}, "geometry": {"type": "Point", "coordinates": [1.15865437582, 43.5120887102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "951499e42638f49eac7fdf2cf4c03b6bff357435", "fields": {"nom_de_la_commune": "SALEICH", "libell_d_acheminement": "SALEICH", "code_postal": "31260", "coordonnees_gps": [43.0780731164, 0.95948991374], "code_commune_insee": "31521"}, "geometry": {"type": "Point", "coordinates": [0.95948991374, 43.0780731164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ed41fa58758829d77bf6f3410a239cf923a8a39", "fields": {"nom_de_la_commune": "LA SALVETAT LAURAGAIS", "libell_d_acheminement": "LA SALVETAT LAURAGAIS", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31527"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "828f9e35fd3f9162d1f1c09b334d5ee0baed2542", "fields": {"nom_de_la_commune": "SARRECAVE", "libell_d_acheminement": "SARRECAVE", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31531"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c2230a1675501d3c087debb15faf32cc3b9bb72", "fields": {"nom_de_la_commune": "SARREMEZAN", "libell_d_acheminement": "SARREMEZAN", "code_postal": "31350", "coordonnees_gps": [43.2617771356, 0.682612296142], "code_commune_insee": "31532"}, "geometry": {"type": "Point", "coordinates": [0.682612296142, 43.2617771356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ebc1c32cdc7c00dccd29e75348d0c244e217ec2", "fields": {"nom_de_la_commune": "SAUSSENS", "libell_d_acheminement": "SAUSSENS", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31534"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ef1575830789c5ae5f754d2c621c0c20b28fdc9", "fields": {"nom_de_la_commune": "SENARENS", "libell_d_acheminement": "SENARENS", "code_postal": "31430", "coordonnees_gps": [43.3073620316, 1.04308340458], "code_commune_insee": "31543"}, "geometry": {"type": "Point", "coordinates": [1.04308340458, 43.3073620316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "466dab4241b28d496a62974a469f20ac8c6f2f4c", "fields": {"nom_de_la_commune": "SEYSSES", "libell_d_acheminement": "SEYSSES", "code_postal": "31600", "coordonnees_gps": [43.4559681357, 1.28494990021], "code_commune_insee": "31547"}, "geometry": {"type": "Point", "coordinates": [1.28494990021, 43.4559681357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30cad0dcc0f1701b7424669b44fffec0edc259e9", "fields": {"nom_de_la_commune": "TARABEL", "libell_d_acheminement": "TARABEL", "code_postal": "31570", "coordonnees_gps": [43.5604439014, 1.65909968108], "code_commune_insee": "31551"}, "geometry": {"type": "Point", "coordinates": [1.65909968108, 43.5604439014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "247bed4d79b770622a10559807f3e375b8d9a49a", "fields": {"nom_de_la_commune": "TOULOUSE", "libell_d_acheminement": "TOULOUSE", "code_postal": "31000", "coordonnees_gps": [43.5959709582, 1.43229378001], "code_commune_insee": "31555"}, "geometry": {"type": "Point", "coordinates": [1.43229378001, 43.5959709582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3be4435b9ca74f7a5d6bbc961d5ce46f78394838", "fields": {"nom_de_la_commune": "TOULOUSE", "libell_d_acheminement": "TOULOUSE", "code_postal": "31100", "coordonnees_gps": [43.5959709582, 1.43229378001], "code_commune_insee": "31555"}, "geometry": {"type": "Point", "coordinates": [1.43229378001, 43.5959709582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54726692299d40c69d5de4e66747f5cd51b16f49", "fields": {"nom_de_la_commune": "LES TOURREILLES", "libell_d_acheminement": "LES TOURREILLES", "code_postal": "31210", "coordonnees_gps": [43.1079907406, 0.585967694271], "code_commune_insee": "31556"}, "geometry": {"type": "Point", "coordinates": [0.585967694271, 43.1079907406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465a882a5758b49172e2fe321f7edf4acd483e6f", "fields": {"nom_de_la_commune": "VAUX", "libell_d_acheminement": "VAUX", "code_postal": "31540", "coordonnees_gps": [43.4596062892, 1.87859164077], "code_commune_insee": "31570"}, "geometry": {"type": "Point", "coordinates": [1.87859164077, 43.4596062892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c7337dc6b8e32e622f7da706875233e984f701b", "fields": {"nom_de_la_commune": "VENDINE", "libell_d_acheminement": "VENDINE", "code_postal": "31460", "coordonnees_gps": [43.5298336726, 1.775181368], "code_commune_insee": "31571"}, "geometry": {"type": "Point", "coordinates": [1.775181368, 43.5298336726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab93a42b6bd3fde981d3042af91d7ae6f07f253", "fields": {"nom_de_la_commune": "LARRA", "libell_d_acheminement": "LARRA", "code_postal": "31330", "coordonnees_gps": [43.7561775259, 1.23418291067], "code_commune_insee": "31592"}, "geometry": {"type": "Point", "coordinates": [1.23418291067, 43.7561775259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a6ad9b56829fdd097b732f3639e5b633e36f6b1", "fields": {"nom_de_la_commune": "ANTRAS", "libell_d_acheminement": "ANTRAS", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32003"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92477866edc7f3eb2ab29a2371bc6556568a7d0", "fields": {"nom_de_la_commune": "ARBLADE LE HAUT", "libell_d_acheminement": "ARBLADE LE HAUT", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32005"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac98a00e1317142372b5e45dfd49153a7469e65", "fields": {"nom_de_la_commune": "SAUGEOT", "libell_d_acheminement": "SAUGEOT", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39505"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d402c47e63af90c47d4abdeb29329ebc6b6a2077", "fields": {"nom_de_la_commune": "SERGENAUX", "libell_d_acheminement": "SERGENAUX", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39511"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9594b9c0ab62cdfb677d4677e30d497b2ea7e2e", "fields": {"code_postal": "39300", "code_commune_insee": "39517", "libell_d_acheminement": "SIROD", "ligne_5": "TREFFAY", "nom_de_la_commune": "SIROD", "coordonnees_gps": [46.7556867768, 5.90281733737]}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "318b99923d197b9a75d75b8bbd4f9cd4663ba8f9", "fields": {"nom_de_la_commune": "SONGESON", "libell_d_acheminement": "SONGESON", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39518"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5623516e919e777a3f91dbad00494389025280", "fields": {"nom_de_la_commune": "TAXENNE", "libell_d_acheminement": "TAXENNE", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39527"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "642c7c3e8a00f082723927abedc13819997b959a", "fields": {"nom_de_la_commune": "THOIRETTE", "libell_d_acheminement": "THOIRETTE", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39530"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c16c1b2342679b916cf884e8eb2384d8903056bb", "fields": {"nom_de_la_commune": "THOIRIA", "libell_d_acheminement": "THOIRIA", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39531"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa5a4afaf4e509d1ea1a90b86efdb9b36af5434", "fields": {"nom_de_la_commune": "TOULOUSE LE CHATEAU", "libell_d_acheminement": "TOULOUSE LE CHATEAU", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39533"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f844708ca85ed855ae03a7244a4ac8dcf4eedb6", "fields": {"nom_de_la_commune": "TOURMONT", "libell_d_acheminement": "TOURMONT", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39535"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "311b9c86609d596b1f256731ceda7b37bafb1991", "fields": {"nom_de_la_commune": "UXELLES", "libell_d_acheminement": "UXELLES", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39538"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38e7912943b6c01d34fb3489aa8423adb3d1761", "fields": {"nom_de_la_commune": "VALEMPOULIERES", "libell_d_acheminement": "VALEMPOULIERES", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39540"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ecd1c755a9f31318a4d22a332992f7de16816d", "fields": {"nom_de_la_commune": "VANNOZ", "libell_d_acheminement": "VANNOZ", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39543"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c8e4324f829261b32365b38ed955dcbc120a7e", "fields": {"nom_de_la_commune": "VEVY", "libell_d_acheminement": "VEVY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39558"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa3c03c20a918d93d042941d573919deaa54be4", "fields": {"nom_de_la_commune": "LA VIEILLE LOYE", "libell_d_acheminement": "LA VIEILLE LOYE", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39559"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91152675aee0aa5d1c611f3472b6634a3407f616", "fields": {"nom_de_la_commune": "VILLENEUVE SOUS PYMONT", "libell_d_acheminement": "VILLENEUVE SOUS PYMONT", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39567"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de28172c6cdccd963b47c3c0f103a8fcfc342637", "fields": {"nom_de_la_commune": "VILLERS LES BOIS", "libell_d_acheminement": "VILLERS LES BOIS", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39570"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b02aa877591b541072ca0bd9d7faf1779565d5f", "fields": {"nom_de_la_commune": "VULVOZ", "libell_d_acheminement": "VULVOZ", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39585"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09145d97813d951e5f1fca8fd44daad1533b87b1", "fields": {"nom_de_la_commune": "ARENGOSSE", "libell_d_acheminement": "ARENGOSSE", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40006"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234266bdc4dc8ebe6da66b764876d3ca0d5d97f0", "fields": {"nom_de_la_commune": "ARGELOUSE", "libell_d_acheminement": "ARGELOUSE", "code_postal": "40430", "coordonnees_gps": [44.2727815793, -0.544550156378], "code_commune_insee": "40008"}, "geometry": {"type": "Point", "coordinates": [-0.544550156378, 44.2727815793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d6bf3b2002307ba1c66467ebaf95307ea2e9c0b", "fields": {"nom_de_la_commune": "ARJUZANX", "libell_d_acheminement": "ARJUZANX", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40009"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e70a8e62f8db2096dab4e1b5eb54b2b9f60e2e5e", "fields": {"nom_de_la_commune": "BASSERCLES", "libell_d_acheminement": "BASSERCLES", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40027"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53bf0807b00874f7b6e0ffd6b46931ea03986df6", "fields": {"nom_de_la_commune": "BATS", "libell_d_acheminement": "BATS", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40029"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aac321880157f3decdee3b9fc0bcf265dd5ec073", "fields": {"nom_de_la_commune": "BENQUET", "libell_d_acheminement": "BENQUET", "code_postal": "40280", "coordonnees_gps": [43.8401834528, -0.518454816406], "code_commune_insee": "40037"}, "geometry": {"type": "Point", "coordinates": [-0.518454816406, 43.8401834528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e3c220752029bbb18930bbf8c6b81c77bcde76c", "fields": {"nom_de_la_commune": "BETBEZER D ARMAGNAC", "libell_d_acheminement": "BETBEZER D ARMAGNAC", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40039"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a15c7b29d28917c8348b821e842a15a8d4c35da", "fields": {"nom_de_la_commune": "BEYLONGUE", "libell_d_acheminement": "BEYLONGUE", "code_postal": "40370", "coordonnees_gps": [43.9279657957, -0.915942648289], "code_commune_insee": "40040"}, "geometry": {"type": "Point", "coordinates": [-0.915942648289, 43.9279657957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684ee726d8615b14c822226539a6b47ffac76d10", "fields": {"code_postal": "40600", "code_commune_insee": "40046", "libell_d_acheminement": "BISCARROSSE", "ligne_5": "BISCARROSSE PLAGE", "nom_de_la_commune": "BISCARROSSE", "coordonnees_gps": [44.4090784689, -1.17737599006]}, "geometry": {"type": "Point", "coordinates": [-1.17737599006, 44.4090784689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30202fa0fc4e1c8d4c4a74847426abd3dc0ed6f4", "fields": {"nom_de_la_commune": "BONNEGARDE", "libell_d_acheminement": "BONNEGARDE", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40047"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d9af167977e25810d8776144f923aea2ab5f25", "fields": {"nom_de_la_commune": "BOUGUE", "libell_d_acheminement": "BOUGUE", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40051"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99c996ed38cbb511a049577199a36acab776d871", "fields": {"nom_de_la_commune": "CACHEN", "libell_d_acheminement": "CACHEN", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40058"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d1307805e82e265cef4db63e3013ab3533aa5b", "fields": {"nom_de_la_commune": "CALLEN", "libell_d_acheminement": "CALLEN", "code_postal": "40430", "coordonnees_gps": [44.2727815793, -0.544550156378], "code_commune_insee": "40060"}, "geometry": {"type": "Point", "coordinates": [-0.544550156378, 44.2727815793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a926bd0fe9f954f768261de6a50e098e877c6345", "fields": {"nom_de_la_commune": "CANDRESSE", "libell_d_acheminement": "CANDRESSE", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40063"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccbe4d9784ba08c7937800a2847c92a02a5d8c00", "fields": {"nom_de_la_commune": "CASSEN", "libell_d_acheminement": "CASSEN", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40068"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c269941d164049b442dda4ae5355b2e1a2e33f79", "fields": {"nom_de_la_commune": "CASTANDET", "libell_d_acheminement": "CASTANDET", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40070"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5aa228d55ee83dedf3893a1a82a0c6028c8e00d", "fields": {"nom_de_la_commune": "CASTELNER", "libell_d_acheminement": "CASTELNER", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40073"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "889c46ea1f0ccd955c5a5162678cfc75cd1c1491", "fields": {"nom_de_la_commune": "CASTETS", "libell_d_acheminement": "CASTETS", "code_postal": "40260", "coordonnees_gps": [43.9187422777, -1.13083737668], "code_commune_insee": "40075"}, "geometry": {"type": "Point", "coordinates": [-1.13083737668, 43.9187422777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f4a794c035943f13b782a3acb854243df094d4a", "fields": {"nom_de_la_commune": "CAUPENNE", "libell_d_acheminement": "CAUPENNE", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40078"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "488bfe7f0b515641b2a601ec49d20539d5782355", "fields": {"nom_de_la_commune": "CERE", "libell_d_acheminement": "CERE", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40081"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1d9c6522cf78e05df3d0414df44f60508463a54", "fields": {"nom_de_la_commune": "DUHORT BACHEN", "libell_d_acheminement": "DUHORT BACHEN", "code_postal": "40800", "coordonnees_gps": [43.6902343376, -0.284055090083], "code_commune_insee": "40091"}, "geometry": {"type": "Point", "coordinates": [-0.284055090083, 43.6902343376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891989620ada17b02c42d71a6d8fa5af4a10c683", "fields": {"nom_de_la_commune": "DUMES", "libell_d_acheminement": "DUMES", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40092"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3cc11883b81e6bb42e782186d8a5defbd9077ce", "fields": {"nom_de_la_commune": "ESCALANS", "libell_d_acheminement": "ESCALANS", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40093"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be1669b2cebee1a61ce84a79994471b6457e51d", "fields": {"nom_de_la_commune": "GARROSSE", "libell_d_acheminement": "GARROSSE", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40107"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "788e89dcf1c3ef0a4e4a883a4e13585552d4d3df", "fields": {"nom_de_la_commune": "GAUJACQ", "libell_d_acheminement": "GAUJACQ", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40109"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4016aa070903ab0018b7826f238d197b89a27cd8", "fields": {"nom_de_la_commune": "GOURBERA", "libell_d_acheminement": "GOURBERA", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40114"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32442230a115fe41195e227f8ecd8f9c606da325", "fields": {"nom_de_la_commune": "GOUTS", "libell_d_acheminement": "GOUTS", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40116"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07cd6cda86e231fc324782198841d46f409e2404", "fields": {"nom_de_la_commune": "LACQUY", "libell_d_acheminement": "LACQUY", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40137"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831f2ce439c0831c16ff1cf23e0fe20d76714c67", "fields": {"nom_de_la_commune": "LOSSE", "libell_d_acheminement": "LOSSE", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40158"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11376b894b3d240bc78415f2958d430085df4af5", "fields": {"nom_de_la_commune": "LUGLON", "libell_d_acheminement": "LUGLON", "code_postal": "40630", "coordonnees_gps": [44.158641182, -0.72802164635], "code_commune_insee": "40165"}, "geometry": {"type": "Point", "coordinates": [-0.72802164635, 44.158641182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f703ea83c03712eb71e100be2691f66351f2f70", "fields": {"nom_de_la_commune": "MAILLERES", "libell_d_acheminement": "MAILLERES", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40170"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85708108e4899b2642ecdf4821f86f164ed89ec2", "fields": {"nom_de_la_commune": "MAUVEZIN D ARMAGNAC", "libell_d_acheminement": "MAUVEZIN D ARMAGNAC", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40176"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4997ef2483531f49536174a2cb64eacfeab4002", "fields": {"nom_de_la_commune": "MIRAMONT SENSACQ", "libell_d_acheminement": "MIRAMONT SENSACQ", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40185"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fd79ad0e1f537c4261deed65ea281c2878332f6", "fields": {"nom_de_la_commune": "MONTGAILLARD", "libell_d_acheminement": "MONTGAILLARD", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40195"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e50949a5f2a08ddf94c7c8f607f5c5ba416c5af5", "fields": {"nom_de_la_commune": "MORCENX", "libell_d_acheminement": "MORCENX", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40197"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20058fdb65ca264435413bb581a5697840ac12ca", "fields": {"nom_de_la_commune": "NASSIET", "libell_d_acheminement": "NASSIET", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40203"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4748dd8bf2e9ea4e2e0a843dd7ef443b0178890", "fields": {"nom_de_la_commune": "NOUSSE", "libell_d_acheminement": "NOUSSE", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40205"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "099e620fb8104ddd2ea5989d24f5b210af0a5be7", "fields": {"nom_de_la_commune": "ONESSE LAHARIE", "libell_d_acheminement": "ONESSE LAHARIE", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40210"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7771c9bb7c3ebc6dbc11c273445f2710a43a8faa", "fields": {"nom_de_la_commune": "ORTHEVIELLE", "libell_d_acheminement": "ORTHEVIELLE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40212"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1b328c9304e863f04f09310131f2f26f85f3a5f", "fields": {"nom_de_la_commune": "OZOURT", "libell_d_acheminement": "OZOURT", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40216"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5d3401ef95e36d6e7a7983640485761565106f1", "fields": {"nom_de_la_commune": "PARLEBOSCQ", "libell_d_acheminement": "PARLEBOSCQ", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40218"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1bcda868afd0d787fbd2527fd3ad34da4bbb72", "fields": {"nom_de_la_commune": "POMAREZ", "libell_d_acheminement": "POMAREZ", "code_postal": "40360", "coordonnees_gps": [43.6226190594, -0.830742350632], "code_commune_insee": "40228"}, "geometry": {"type": "Point", "coordinates": [-0.830742350632, 43.6226190594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6624ec38726d47be8ac215e9537e9a9c376fc6f", "fields": {"nom_de_la_commune": "PONTENX LES FORGES", "libell_d_acheminement": "PONTENX LES FORGES", "code_postal": "40200", "coordonnees_gps": [44.2276964616, -1.18406164586], "code_commune_insee": "40229"}, "geometry": {"type": "Point", "coordinates": [-1.18406164586, 44.2276964616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c85d5052506e0b7c82501a7a7a1f49e23a9080", "fields": {"nom_de_la_commune": "PORT DE LANNE", "libell_d_acheminement": "PORT DE LANNE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40231"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abcfa62f72a1268051ac3d814f7b65d2fe337f0f", "fields": {"nom_de_la_commune": "POUDENX", "libell_d_acheminement": "POUDENX", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40232"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f776f6a3807aebd1f18d747019802fbe726600", "fields": {"nom_de_la_commune": "POUYDESSEAUX", "libell_d_acheminement": "POUYDESSEAUX", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40234"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a186a9ad72bff216da8202d3748e1b9e979e80", "fields": {"nom_de_la_commune": "POYANNE", "libell_d_acheminement": "POYANNE", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40235"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abbbc9f12beb8a12a4c9d8f960081ba84a018810", "fields": {"nom_de_la_commune": "ST AGNET", "libell_d_acheminement": "ST AGNET", "code_postal": "40800", "coordonnees_gps": [43.6902343376, -0.284055090083], "code_commune_insee": "40247"}, "geometry": {"type": "Point", "coordinates": [-0.284055090083, 43.6902343376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff5b5ffe78c612dbec3c3fc588ff57b951aafdf", "fields": {"nom_de_la_commune": "ST GEOURS D AURIBAT", "libell_d_acheminement": "ST GEOURS D AURIBAT", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40260"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d672d7402f7782ed0530b6d52951e46a8a63a55f", "fields": {"nom_de_la_commune": "ST GOR", "libell_d_acheminement": "ST GOR", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40262"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3df4c7748d1abc6103d7f0b5cebab76afb193bb4", "fields": {"nom_de_la_commune": "ST JEAN DE LIER", "libell_d_acheminement": "ST JEAN DE LIER", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40263"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c5be5e76d06d471b47e3804d9529ad0bc19f0cd", "fields": {"nom_de_la_commune": "ST JEAN DE MARSACQ", "libell_d_acheminement": "ST JEAN DE MARSACQ", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40264"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6797724a906a19b544032e8fe9b4e24f57f4df6", "fields": {"nom_de_la_commune": "ST JULIEN D ARMAGNAC", "libell_d_acheminement": "ST JULIEN D ARMAGNAC", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40265"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79f8a72e0a175dbfb9da83515b1f808cab69b98", "fields": {"nom_de_la_commune": "ST LAURENT DE GOSSE", "libell_d_acheminement": "ST LAURENT DE GOSSE", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40268"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fabbea6cfcb739c266ecd872e9acdbd9235bc19c", "fields": {"nom_de_la_commune": "ST LON LES MINES", "libell_d_acheminement": "ST LON LES MINES", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40269"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd0fa177620de46bd5fa837df7858a05bb3c704", "fields": {"nom_de_la_commune": "STE MARIE DE GOSSE", "libell_d_acheminement": "STE MARIE DE GOSSE", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40271"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76d8f0efded3b90666928e186cf7dc625603e46", "fields": {"nom_de_la_commune": "ST MICHEL ESCALUS", "libell_d_acheminement": "ST MICHEL ESCALUS", "code_postal": "40550", "coordonnees_gps": [43.8558812833, -1.27461526847], "code_commune_insee": "40276"}, "geometry": {"type": "Point", "coordinates": [-1.27461526847, 43.8558812833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "728f6a8c73f9fbf863fcc2b2eb92e181cf7886bf", "fields": {"nom_de_la_commune": "ST PAUL EN BORN", "libell_d_acheminement": "ST PAUL EN BORN", "code_postal": "40200", "coordonnees_gps": [44.2276964616, -1.18406164586], "code_commune_insee": "40278"}, "geometry": {"type": "Point", "coordinates": [-1.18406164586, 44.2276964616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ed6b841f0c840ac0bf235347f99ed0f0857fa1", "fields": {"nom_de_la_commune": "ST PERDON", "libell_d_acheminement": "ST PERDON", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40280"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a882523ab8f0818e5387c8d98231fa99c0ad2c", "fields": {"nom_de_la_commune": "SARBAZAN", "libell_d_acheminement": "SARBAZAN", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40288"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4af825a7888562bade1b269489341d6602593c3", "fields": {"nom_de_la_commune": "SARRON", "libell_d_acheminement": "SARRON", "code_postal": "40800", "coordonnees_gps": [43.6902343376, -0.284055090083], "code_commune_insee": "40290"}, "geometry": {"type": "Point", "coordinates": [-0.284055090083, 43.6902343376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8b4214cf2b155f9ef6d83fbd2e348407c3a72cf", "fields": {"nom_de_la_commune": "SAUGNAC ET CAMBRAN", "libell_d_acheminement": "SAUGNAC ET CAMBRAN", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40294"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "156953788004a8f3642d02d8569fd4a329593ea5", "fields": {"nom_de_la_commune": "LE SEN", "libell_d_acheminement": "LE SEN", "code_postal": "40420", "coordonnees_gps": [44.093205309, -0.572816204392], "code_commune_insee": "40297"}, "geometry": {"type": "Point", "coordinates": [-0.572816204392, 44.093205309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13eb63bb1163ec540358133c157f0e5705cd560", "fields": {"nom_de_la_commune": "TOSSE", "libell_d_acheminement": "TOSSE", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40317"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "542cfdb69979b0ad7e55415b96ac8c8c7161cad9", "fields": {"nom_de_la_commune": "UCHACQ ET PARENTIS", "libell_d_acheminement": "UCHACQ ET PARENTIS", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40320"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9add5e36ccee0b9b34f8d387c9f90ef3f22d4dc1", "fields": {"nom_de_la_commune": "VICQ D AURIBAT", "libell_d_acheminement": "VICQ D AURIBAT", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40324"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "320ba0ac5af5863ffb891159ec78b12da0dfecbc", "fields": {"code_postal": "40560", "code_commune_insee": "40326", "libell_d_acheminement": "VIELLE ST GIRONS", "ligne_5": "ST GIRONS", "nom_de_la_commune": "VIELLE ST GIRONS", "coordonnees_gps": [43.9396188358, -1.32531698317]}, "geometry": {"type": "Point", "coordinates": [-1.32531698317, 43.9396188358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8e9285a25d910b40026de25c2e74f1b56371d23", "fields": {"nom_de_la_commune": "BONNEVEAU", "libell_d_acheminement": "BONNEVEAU", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41020"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aec7a0b13049a9c6dc2a082b0be940695a3474d", "fields": {"nom_de_la_commune": "CHAILLES", "libell_d_acheminement": "CHAILLES", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41032"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "661c2eb4dc105d5c19188a354b433d01f92f2900", "fields": {"nom_de_la_commune": "LA CHAPELLE ENCHERIE", "libell_d_acheminement": "LA CHAPELLE ENCHERIE", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41037"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff63845aafdf1f0e83f805123c046f3b2134d8b1", "fields": {"nom_de_la_commune": "CHATRES SUR CHER", "libell_d_acheminement": "CHATRES SUR CHER", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41044"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260f239977e79ed5f77c1d42cad346979decb407", "fields": {"nom_de_la_commune": "CHITENAY", "libell_d_acheminement": "CHITENAY", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41052"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2104ffb8dd37450ff799da91efbbf2f15ca89546", "fields": {"nom_de_la_commune": "CHOUZY SUR CISSE", "libell_d_acheminement": "CHOUZY SUR CISSE", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41055"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43273c9059daaf373dfaa84b997bbf13222deef", "fields": {"nom_de_la_commune": "CONTRES", "libell_d_acheminement": "CONTRES", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41059"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12f6e429370b9041f190b2f8bf3379c10666da18", "fields": {"nom_de_la_commune": "COUR SUR LOIRE", "libell_d_acheminement": "COUR SUR LOIRE", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41069"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9aada768b3567e31c39c1ec0854092b5fe6ef73", "fields": {"nom_de_la_commune": "EPUISAY", "libell_d_acheminement": "EPUISAY", "code_postal": "41360", "coordonnees_gps": [47.8537508655, 0.866594114079], "code_commune_insee": "41078"}, "geometry": {"type": "Point", "coordinates": [0.866594114079, 47.8537508655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "286e467274f569d98072bcb9a0040737307ad813", "fields": {"nom_de_la_commune": "LA FERTE BEAUHARNAIS", "libell_d_acheminement": "LA FERTE BEAUHARNAIS", "code_postal": "41210", "coordonnees_gps": [47.5196740684, 1.85287131674], "code_commune_insee": "41083"}, "geometry": {"type": "Point", "coordinates": [1.85287131674, 47.5196740684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0c774b42cbb5584e6814eac0e620471c05bf723", "fields": {"nom_de_la_commune": "GIEVRES", "libell_d_acheminement": "GIEVRES", "code_postal": "41130", "coordonnees_gps": [47.2869148603, 1.56604401374], "code_commune_insee": "41097"}, "geometry": {"type": "Point", "coordinates": [1.56604401374, 47.2869148603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "042a60ed7dbe76978bc31c9bdbf669ec863405ca", "fields": {"nom_de_la_commune": "HERBAULT", "libell_d_acheminement": "HERBAULT", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41101"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3d1e5f6e74886c744bfac00b345052610226460", "fields": {"nom_de_la_commune": "LAVARDIN", "libell_d_acheminement": "LAVARDIN", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41113"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19add0a6c56de2f4260930f726ff37f34203d883", "fields": {"nom_de_la_commune": "LIGNIERES", "libell_d_acheminement": "LIGNIERES", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41115"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534bc28452aaede6a1810059050f770e6d20673c", "fields": {"nom_de_la_commune": "LUNAY", "libell_d_acheminement": "LUNAY", "code_postal": "41360", "coordonnees_gps": [47.8537508655, 0.866594114079], "code_commune_insee": "41120"}, "geometry": {"type": "Point", "coordinates": [0.866594114079, 47.8537508655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776c3b4ceaad74dadcf765fc1b3a00baa69c1eb8", "fields": {"nom_de_la_commune": "LA MADELEINE VILLEFROUIN", "libell_d_acheminement": "LA MADELEINE VILLEFROUIN", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41121"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e301df21643836e6841da434ae391b7a926e080", "fields": {"nom_de_la_commune": "RISOUL", "libell_d_acheminement": "RISOUL", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05119"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf3830b4f1c171312d598266fa85827b9c94d143", "fields": {"nom_de_la_commune": "ROSANS", "libell_d_acheminement": "ROSANS", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05126"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592d1d2900db186191cf55df3ba211f0b6b94058", "fields": {"code_postal": "04870", "code_commune_insee": "04192", "libell_d_acheminement": "ST MICHEL L OBSERVATOIRE", "ligne_5": "LINCEL", "nom_de_la_commune": "ST MICHEL L OBSERVATOIRE", "coordonnees_gps": [43.9100527166, 5.71951283104]}, "geometry": {"type": "Point", "coordinates": [5.71951283104, 43.9100527166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b841c1df94a1ffef0d472cc18e53a06d29bdd03", "fields": {"code_postal": "04400", "code_commune_insee": "04226", "libell_d_acheminement": "UVERNET FOURS", "ligne_5": "FOURS", "nom_de_la_commune": "UVERNET FOURS", "coordonnees_gps": [44.3554624604, 6.65679459978]}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a2e81cc78247a165170dee807f85056ac5125e", "fields": {"nom_de_la_commune": "ST MICHEL L OBSERVATOIRE", "libell_d_acheminement": "ST MICHEL L OBSERVATOIRE", "code_postal": "04870", "coordonnees_gps": [43.9100527166, 5.71951283104], "code_commune_insee": "04192"}, "geometry": {"type": "Point", "coordinates": [5.71951283104, 43.9100527166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa8f2799a75a2e70643e3fa91daf4162f61097a", "fields": {"nom_de_la_commune": "SIMIANE LA ROTONDE", "libell_d_acheminement": "SIMIANE LA ROTONDE", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04208"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf5b822d27bb8e40eaa6328a266474f600dd2ab", "fields": {"nom_de_la_commune": "ST JULIEN D ASSE", "libell_d_acheminement": "ST JULIEN D ASSE", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04182"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b8cfa2744b01f2d4249578396fb99ff57aa34c", "fields": {"nom_de_la_commune": "ST GENIEZ", "libell_d_acheminement": "ST GENIEZ", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04179"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "949bef1fd233fd442babe8cd186d2d2e29356b75", "fields": {"nom_de_la_commune": "SISTERON", "libell_d_acheminement": "SISTERON", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04209"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb2965ce314dda210b8613c6e300020746ef23da", "fields": {"nom_de_la_commune": "VACHERES", "libell_d_acheminement": "VACHERES", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04227"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13316b6b3e7edbefee032a8b564d4592e65f2fb3", "fields": {"nom_de_la_commune": "SIGOYER", "libell_d_acheminement": "SIGOYER", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04207"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "870e7adae1f41f0b307a65813782458691a8381b", "fields": {"nom_de_la_commune": "SENEZ", "libell_d_acheminement": "SENEZ", "code_postal": "04330", "coordonnees_gps": [43.9661789587, 6.36757828662], "code_commune_insee": "04204"}, "geometry": {"type": "Point", "coordinates": [6.36757828662, 43.9661789587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8c168b8e2da67f2629fe5f8299a16ed9573c123", "fields": {"nom_de_la_commune": "CHATEAUVIEUX", "libell_d_acheminement": "CHATEAUVIEUX", "code_postal": "05000", "coordonnees_gps": [44.5625391818, 6.06869105196], "code_commune_insee": "05037"}, "geometry": {"type": "Point", "coordinates": [6.06869105196, 44.5625391818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ef35c05b957f590fda2fcf654003207a8c5510", "fields": {"nom_de_la_commune": "CHAMPOLEON", "libell_d_acheminement": "CHAMPOLEON", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05032"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de523f9b4a27fe349944b5fb05f14edb76e5628", "fields": {"nom_de_la_commune": "VILLENEUVE", "libell_d_acheminement": "VILLENEUVE", "code_postal": "04180", "coordonnees_gps": [43.8958009832, 5.85755129117], "code_commune_insee": "04242"}, "geometry": {"type": "Point", "coordinates": [5.85755129117, 43.8958009832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2ac7e2ef282706493252878cbc432b2e61d654d", "fields": {"nom_de_la_commune": "ASPREMONT", "libell_d_acheminement": "ASPREMONT", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05008"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609ba66d87ba876bb6d2e22b4ef50e5de3ec5546", "fields": {"nom_de_la_commune": "CHABESTAN", "libell_d_acheminement": "CHABESTAN", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05028"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f4f6bae53f34140a3397af56ac5b2aa8601008", "fields": {"nom_de_la_commune": "AIGUILLES", "libell_d_acheminement": "AIGUILLES", "code_postal": "05470", "coordonnees_gps": [44.7798321514, 6.87506488271], "code_commune_insee": "05003"}, "geometry": {"type": "Point", "coordinates": [6.87506488271, 44.7798321514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db4980cc6ac693a0ffd9d4eb98e763727b66cbde", "fields": {"nom_de_la_commune": "CERVIERES", "libell_d_acheminement": "CERVIERES", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05027"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7e7999554d1c59cd07f5b3819632d97eddfb6d6", "fields": {"nom_de_la_commune": "ANCELLE", "libell_d_acheminement": "ANCELLE", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05004"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a88348996a7db8de719a7595cfb38fac40695e8b", "fields": {"nom_de_la_commune": "CREVOUX", "libell_d_acheminement": "CREVOUX", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05044"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d451528e7844c540c33f415f666e159d39807e5", "fields": {"nom_de_la_commune": "BRUIS", "libell_d_acheminement": "BRUIS", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05024"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87ebaad50c08c9c7c490a6b824a87e3f09272977", "fields": {"code_postal": "05260", "code_commune_insee": "05145", "libell_d_acheminement": "ST JEAN ST NICOLAS", "ligne_5": "LE PONT DU FOSSE", "nom_de_la_commune": "ST JEAN ST NICOLAS", "coordonnees_gps": [44.6914774663, 6.23838338472]}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f6e84a2dc0d5dc428781f690f7e2531f923754a", "fields": {"nom_de_la_commune": "ST MARTIN DE QUEYRIERES", "libell_d_acheminement": "ST MARTIN DE QUEYRIERES", "code_postal": "05120", "coordonnees_gps": [44.8094841001, 6.52475602144], "code_commune_insee": "05151"}, "geometry": {"type": "Point", "coordinates": [6.52475602144, 44.8094841001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80fbe83e32eb174d019f6b865e0f73b520fe5ac2", "fields": {"nom_de_la_commune": "ST LAURENT DU CROS", "libell_d_acheminement": "ST LAURENT DU CROS", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05148"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20f2c26b98db831c545194e204eb79bb854c1770", "fields": {"nom_de_la_commune": "SIGOYER", "libell_d_acheminement": "SIGOYER", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05168"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efe4b7290e79bc83a83dc1edb8a8c4df08b6ede7", "fields": {"nom_de_la_commune": "TANTONVILLE", "libell_d_acheminement": "TANTONVILLE", "code_postal": "54116", "coordonnees_gps": [48.452260444, 6.12393420575], "code_commune_insee": "54513"}, "geometry": {"type": "Point", "coordinates": [6.12393420575, 48.452260444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fa62af28622bb75cbce08c4d812d66114db1773", "fields": {"nom_de_la_commune": "THUMEREVILLE", "libell_d_acheminement": "THUMEREVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54524"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d7608fa08619640a25955cc91bddd7a7a64706", "fields": {"nom_de_la_commune": "TOMBLAINE", "libell_d_acheminement": "TOMBLAINE", "code_postal": "54510", "coordonnees_gps": [48.6692716698, 6.24903144638], "code_commune_insee": "54526"}, "geometry": {"type": "Point", "coordinates": [6.24903144638, 48.6692716698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28b3b515e4d9a4faaa07badf590857814fbaa48e", "fields": {"nom_de_la_commune": "TOUL", "libell_d_acheminement": "TOUL", "code_postal": "54200", "coordonnees_gps": [48.7137861444, 5.87312333064], "code_commune_insee": "54528"}, "geometry": {"type": "Point", "coordinates": [5.87312333064, 48.7137861444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce758486792c213c1e5f6a326868525ae4ab385", "fields": {"nom_de_la_commune": "TRAMONT EMY", "libell_d_acheminement": "TRAMONT EMY", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54529"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8744cad70b7bd1b5a890ce05f768533efcd3e2a5", "fields": {"nom_de_la_commune": "TRONDES", "libell_d_acheminement": "TRONDES", "code_postal": "54570", "coordonnees_gps": [48.6894085675, 5.77714272424], "code_commune_insee": "54534"}, "geometry": {"type": "Point", "coordinates": [5.77714272424, 48.6894085675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c07da5839b4f19c64e2747e2b5391536694c3e5", "fields": {"nom_de_la_commune": "TRONVILLE", "libell_d_acheminement": "TRONVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54535"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c1da9c575e7aca748567aed08ec726a97312d1e", "fields": {"nom_de_la_commune": "VANNES LE CHATEL", "libell_d_acheminement": "VANNES LE CHATEL", "code_postal": "54112", "coordonnees_gps": [48.5703688862, 5.77161023397], "code_commune_insee": "54548"}, "geometry": {"type": "Point", "coordinates": [5.77161023397, 48.5703688862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e306df5ff154648cfef541e1ecfc8cd36bb489f7", "fields": {"nom_de_la_commune": "VAUCOURT", "libell_d_acheminement": "VAUCOURT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54551"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e138ca87e04b73b546a0c3b0875bdf9046fcf114", "fields": {"nom_de_la_commune": "VENEY", "libell_d_acheminement": "VENEY", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54560"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fff41f0bbb07afcbedf151b1b6e42e977f1e3833", "fields": {"nom_de_la_commune": "VENNEZEY", "libell_d_acheminement": "VENNEZEY", "code_postal": "54830", "coordonnees_gps": [48.4697164123, 6.49395418812], "code_commune_insee": "54561"}, "geometry": {"type": "Point", "coordinates": [6.49395418812, 48.4697164123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c258b543d5376643c42c0ccb15bc729e8475fa", "fields": {"nom_de_la_commune": "VERDENAL", "libell_d_acheminement": "VERDENAL", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54562"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "174a70f456620bb63363b2b76c965e517260f4d3", "fields": {"nom_de_la_commune": "VIGNEULLES", "libell_d_acheminement": "VIGNEULLES", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54565"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1827ee6bc80245b83dcbcaeed601b6c4407f33e5", "fields": {"nom_de_la_commune": "VILLE AU MONTOIS", "libell_d_acheminement": "VILLE AU MONTOIS", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54568"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95cd6432183e68d1b237debddda049f1c57837fd", "fields": {"nom_de_la_commune": "VILLE AU VAL", "libell_d_acheminement": "VILLE AU VAL", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54569"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23fdabb89bc3ff79f601e6985284613e2f28b558", "fields": {"nom_de_la_commune": "VILLERS LES MOIVRONS", "libell_d_acheminement": "VILLERS LES MOIVRONS", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54577"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f54a0668c7b57c962e076f7c88b1bb495b99763", "fields": {"code_postal": "54190", "code_commune_insee": "54580", "libell_d_acheminement": "VILLERUPT", "ligne_5": "CANTEBONNE", "nom_de_la_commune": "VILLERUPT", "coordonnees_gps": [49.4525960193, 5.89523270383]}, "geometry": {"type": "Point", "coordinates": [5.89523270383, 49.4525960193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312abf59912e2d12b6de941c8617d40d6a18fe6a", "fields": {"nom_de_la_commune": "VIRECOURT", "libell_d_acheminement": "VIRECOURT", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54585"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82b050624b36e73de657d356eb8851a8168ad73", "fields": {"nom_de_la_commune": "VITERNE", "libell_d_acheminement": "VITERNE", "code_postal": "54123", "coordonnees_gps": [48.5873065395, 6.01353217744], "code_commune_insee": "54586"}, "geometry": {"type": "Point", "coordinates": [6.01353217744, 48.5873065395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6aa59b6d939412b2284ebb34a03ce3ed2aabaa6", "fields": {"code_postal": "54260", "code_commune_insee": "54590", "libell_d_acheminement": "VIVIERS SUR CHIERS", "ligne_5": "BRAUMONT", "nom_de_la_commune": "VIVIERS SUR CHIERS", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dc3f5a0fc54680aec0d7d23951b914a9b2910b8", "fields": {"nom_de_la_commune": "VRONCOURT", "libell_d_acheminement": "VRONCOURT", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54592"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "313694b45cddaf2e896d9eeca68496edb3d5abc0", "fields": {"nom_de_la_commune": "XIROCOURT", "libell_d_acheminement": "XIROCOURT", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54597"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "871e1dcc67255fdc720a63ad741738d8201569d2", "fields": {"nom_de_la_commune": "XOUSSE", "libell_d_acheminement": "XOUSSE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54600"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8a72a2fad5a65e3169b0a3fde5edf6a19938d05", "fields": {"nom_de_la_commune": "ANCERVILLE", "libell_d_acheminement": "ANCERVILLE", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55010"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa1a6b60d862026e9c5d040f7cc24c7798dc053c", "fields": {"code_postal": "55300", "code_commune_insee": "55012", "libell_d_acheminement": "APREMONT LA FORET", "ligne_5": "MARBOTTE", "nom_de_la_commune": "APREMONT LA FORET", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4451d98e478347a5e34ba0204fe91d84dc3f08e1", "fields": {"nom_de_la_commune": "AUBREVILLE", "libell_d_acheminement": "AUBREVILLE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55014"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102d62c01ba1d4beb9ac7730d2f710fc511ddf50", "fields": {"nom_de_la_commune": "BAALON", "libell_d_acheminement": "BAALON", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55025"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdfafd1d9eec5776e84f09d37f8ef309f1548350", "fields": {"nom_de_la_commune": "BEAUFORT EN ARGONNE", "libell_d_acheminement": "BEAUFORT EN ARGONNE", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55037"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "233fbca23d95b2b169fb111d647cbcd760111190", "fields": {"nom_de_la_commune": "BEAULIEU EN ARGONNE", "libell_d_acheminement": "BEAULIEU EN ARGONNE", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55038"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f78a842084181d6530f10e4de4c8e809cc11925", "fields": {"nom_de_la_commune": "BELLEVILLE SUR MEUSE", "libell_d_acheminement": "BELLEVILLE SUR MEUSE", "code_postal": "55430", "coordonnees_gps": [49.1794398183, 5.39278736213], "code_commune_insee": "55043"}, "geometry": {"type": "Point", "coordinates": [5.39278736213, 49.1794398183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e6e9c07c0ed753962568812330c0e6060589dda", "fields": {"nom_de_la_commune": "BELRUPT EN VERDUNOIS", "libell_d_acheminement": "BELRUPT EN VERDUNOIS", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55045"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d797a33f84fabc014107d039f34129f98e3f199", "fields": {"nom_de_la_commune": "BETHELAINVILLE", "libell_d_acheminement": "BETHELAINVILLE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55047"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85d9e203e7e1cbb4803064ee9120cdde6d274bb2", "fields": {"nom_de_la_commune": "BEUREY SUR SAULX", "libell_d_acheminement": "BEUREY SUR SAULX", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55049"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7116b08f176536c0145a4b21ee1536c65c422fe9", "fields": {"nom_de_la_commune": "BIENCOURT SUR ORGE", "libell_d_acheminement": "BIENCOURT SUR ORGE", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55051"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd723907a3d488e3278f45d0a3700f52bbe5d92", "fields": {"nom_de_la_commune": "BONCOURT SUR MEUSE", "libell_d_acheminement": "BONCOURT SUR MEUSE", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55058"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50ee4051823cdbbcddc4110f5d73f465fb413283", "fields": {"nom_de_la_commune": "BOUCONVILLE SUR MADT", "libell_d_acheminement": "BOUCONVILLE SUR MADT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55062"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9af2a655dc7717bfa9013824579e2bd4c53e17d", "fields": {"nom_de_la_commune": "BOVIOLLES", "libell_d_acheminement": "BOVIOLLES", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55067"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f1145a12ab68324571fa31f2460c2d559c6707b", "fields": {"nom_de_la_commune": "BRIEULLES SUR MEUSE", "libell_d_acheminement": "BRIEULLES SUR MEUSE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55078"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2c1cd2441d21f9aab6d78a1096a28f7cb579d9d", "fields": {"nom_de_la_commune": "BRIXEY AUX CHANOINES", "libell_d_acheminement": "BRIXEY AUX CHANOINES", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55080"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9df1be1d47d1f917fc71211fae9e7023e4be718a", "fields": {"nom_de_la_commune": "BURE", "libell_d_acheminement": "BURE", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55087"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adbcf1386f07cdcae3edae38f9a27b8906f20bf0", "fields": {"nom_de_la_commune": "BUREY LA COTE", "libell_d_acheminement": "BUREY LA COTE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55089"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e65544f2338c6647b52b63cf2d443dd1aaa8671", "fields": {"nom_de_la_commune": "CHAMPNEUVILLE", "libell_d_acheminement": "CHAMPNEUVILLE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55099"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "968308a20d8446d24ce312ef9ec60c376d73117e", "fields": {"nom_de_la_commune": "CHAUMONT DEVANT DAMVILLERS", "libell_d_acheminement": "CHAUMONT DEVANT DAMVILLERS", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55107"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ecbad55210b573bcec359dc314ce90c90ff5702", "fields": {"nom_de_la_commune": "CHAUMONT SUR AIRE", "libell_d_acheminement": "CHAUMONT SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55108"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed277320075f50907021615d1f4c3ec370cc8640", "fields": {"nom_de_la_commune": "CLERY LE PETIT", "libell_d_acheminement": "CLERY LE PETIT", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55119"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb7cdf88eadcdb4b9f091d1752d459a94f6a5fea", "fields": {"nom_de_la_commune": "LES HAUTS DE CHEE", "libell_d_acheminement": "LES HAUTS DE CHEE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55123"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e89ef21b5a7945a32db460f355f47c8ff7ae119", "fields": {"nom_de_la_commune": "CONSENVOYE", "libell_d_acheminement": "CONSENVOYE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55124"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3a28b1242789d90a52d65277e838e9f93f2cf5", "fields": {"nom_de_la_commune": "CUISY", "libell_d_acheminement": "CUISY", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55137"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad079de59c9228ccaef948c74fbc4b40d36ce7e", "fields": {"nom_de_la_commune": "DAMLOUP", "libell_d_acheminement": "DAMLOUP", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55143"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "524afbabe0243b816c6299f9ecd854dd44427cef", "fields": {"nom_de_la_commune": "DAMMARIE SUR SAULX", "libell_d_acheminement": "DAMMARIE SUR SAULX", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55144"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98e4273ea14df8d7bb5d4f5cb1ae99b49f4d6da", "fields": {"nom_de_la_commune": "DELOUZE ROSIERES", "libell_d_acheminement": "DELOUZE ROSIERES", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55148"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c048c24a65c1f6dfd44dbdf4c9b128ed82494ba7", "fields": {"nom_de_la_commune": "DIEUE SUR MEUSE", "libell_d_acheminement": "DIEUE SUR MEUSE", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55154"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cdb268100c7332454aa29a51496b7c6719e7c48", "fields": {"nom_de_la_commune": "DOMMARY BARONCOURT", "libell_d_acheminement": "DOMMARY BARONCOURT", "code_postal": "55240", "coordonnees_gps": [49.2813278939, 5.71333245687], "code_commune_insee": "55158"}, "geometry": {"type": "Point", "coordinates": [5.71333245687, 49.2813278939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b5e31cce85f20e8f9a08d5465b8996634c98fd", "fields": {"nom_de_la_commune": "DOMPCEVRIN", "libell_d_acheminement": "DOMPCEVRIN", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55159"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dad1c19e4a2b53389863d9f2f09a88ed06e8c7a", "fields": {"nom_de_la_commune": "DOMPIERRE AUX BOIS", "libell_d_acheminement": "DOMPIERRE AUX BOIS", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55160"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd1540127060829206c535b01fc16cdc11d6c77e", "fields": {"nom_de_la_commune": "DONCOURT AUX TEMPLIERS", "libell_d_acheminement": "DONCOURT AUX TEMPLIERS", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55163"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c65416f43dd93cd988d86097031321b7f7d35b45", "fields": {"nom_de_la_commune": "DUGNY SUR MEUSE", "libell_d_acheminement": "DUGNY SUR MEUSE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55166"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1d1ea150b98eebf76203e5e60b8424eb8e390a8", "fields": {"nom_de_la_commune": "LES EPARGES", "libell_d_acheminement": "LES EPARGES", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55172"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72e5239b9b07f67301b86c13dae40a6c10d1919", "fields": {"nom_de_la_commune": "ERIZE LA BRULEE", "libell_d_acheminement": "ERIZE LA BRULEE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55175"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2d5f27ce7108c0631135990c79d3e2bb04c56cf", "fields": {"nom_de_la_commune": "ETON", "libell_d_acheminement": "ETON", "code_postal": "55240", "coordonnees_gps": [49.2813278939, 5.71333245687], "code_commune_insee": "55182"}, "geometry": {"type": "Point", "coordinates": [5.71333245687, 49.2813278939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ec75e6b0a88094f213dd625529ada6a1e789569", "fields": {"code_postal": "55200", "code_commune_insee": "55184", "libell_d_acheminement": "EUVILLE", "ligne_5": "AULNOIS SOUS VERTUZEY", "nom_de_la_commune": "EUVILLE", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a6f409b357e0e0eae2d5547c94b773da4b75cd", "fields": {"nom_de_la_commune": "FOAMEIX ORNEL", "libell_d_acheminement": "FOAMEIX ORNEL", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55191"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21ba7d3b3694409fb85b6cda1d2e1a3bfa30c66d", "fields": {"code_postal": "55400", "code_commune_insee": "55191", "libell_d_acheminement": "FOAMEIX ORNEL", "ligne_5": "ORNEL", "nom_de_la_commune": "FOAMEIX ORNEL", "coordonnees_gps": [49.1964122747, 5.59749948123]}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed309a0e151b7ebf1bc4bb3f9b804d931a2f7cb1", "fields": {"nom_de_la_commune": "FROMEZEY", "libell_d_acheminement": "FROMEZEY", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55201"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6eccb68402dfea808701df885cc7ae934f54f25", "fields": {"nom_de_la_commune": "GERCOURT ET DRILLANCOURT", "libell_d_acheminement": "GERCOURT ET DRILLANCOURT", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55206"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e93a5fd8f1ee4350c934b0eb50b2eb287587eaa", "fields": {"nom_de_la_commune": "GINCREY", "libell_d_acheminement": "GINCREY", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55211"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7064ed332a2c6162b30b0ecccdb6fb7a42b26d6e", "fields": {"code_postal": "55130", "code_commune_insee": "55215", "libell_d_acheminement": "GONDRECOURT LE CHATEAU", "ligne_5": "LUMEVILLE EN ORNOIS", "nom_de_la_commune": "GONDRECOURT LE CHATEAU", "coordonnees_gps": [48.5182994069, 5.49758126805]}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49eff7e44976cd16c9af9bd9090c76b6d850ca3", "fields": {"nom_de_la_commune": "GOURAINCOURT", "libell_d_acheminement": "GOURAINCOURT", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55216"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d06453779e27ad6f059373c896b8eb082ee519", "fields": {"nom_de_la_commune": "HAIRONVILLE", "libell_d_acheminement": "HAIRONVILLE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55224"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0499fc0621731d7c987ef910b006cda8d2296adf", "fields": {"nom_de_la_commune": "HAN SUR MEUSE", "libell_d_acheminement": "HAN SUR MEUSE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55229"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3c77bdc8908cac90cd28755ed306cfb81e6451c", "fields": {"code_postal": "55300", "code_commune_insee": "55229", "libell_d_acheminement": "HAN SUR MEUSE", "ligne_5": "BRASSEITTE", "nom_de_la_commune": "HAN SUR MEUSE", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5570e2a65ed60c35d6ce3042d51b58a60771faa1", "fields": {"nom_de_la_commune": "HARVILLE", "libell_d_acheminement": "HARVILLE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55232"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e58837488ab2be6a3d57d2832e8f8f6362f6b717", "fields": {"nom_de_la_commune": "HAUDAINVILLE", "libell_d_acheminement": "HAUDAINVILLE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55236"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f527e91e5f9311f7cb648bb904628ae694fa2930", "fields": {"nom_de_la_commune": "HERBEUVILLE", "libell_d_acheminement": "HERBEUVILLE", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55243"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb296fd1bc54ff5ddc9b30b777c5744404d33247", "fields": {"nom_de_la_commune": "RUNAN", "libell_d_acheminement": "RUNAN", "code_postal": "22260", "coordonnees_gps": [48.6934931842, -3.15876407926], "code_commune_insee": "22269"}, "geometry": {"type": "Point", "coordinates": [-3.15876407926, 48.6934931842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ed9f145c91f1fbfb6cfb9e946abe4eaa61f6c91", "fields": {"nom_de_la_commune": "ST ALBAN", "libell_d_acheminement": "ST ALBAN", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22273"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f1cb6b130f5b6942f6d4f9a1735e5a363b3b7a", "fields": {"nom_de_la_commune": "ST BRANDAN", "libell_d_acheminement": "ST BRANDAN", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22277"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "671e85a1b4ae0c37c70a76d56cd1b50bcc30f329", "fields": {"nom_de_la_commune": "ST GILDAS", "libell_d_acheminement": "ST GILDAS", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22291"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e25f7aed2d882ec8bce5d52164ad1f5aa5ed1a", "fields": {"nom_de_la_commune": "ST GILLES LES BOIS", "libell_d_acheminement": "ST GILLES LES BOIS", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22293"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fae5aca2960a7211322eadc061445f8679a4b6a", "fields": {"nom_de_la_commune": "ST GILLES VIEUX MARCHE", "libell_d_acheminement": "ST GILLES VIEUX MARCHE", "code_postal": "22530", "coordonnees_gps": [48.2126596163, -2.96770725479], "code_commune_insee": "22295"}, "geometry": {"type": "Point", "coordinates": [-2.96770725479, 48.2126596163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "738e6add67914bbff613582e200c53fcfcb3e970", "fields": {"nom_de_la_commune": "ST GLEN", "libell_d_acheminement": "ST GLEN", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22296"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb891edf6b61b271548c6e8b656f76fa6045ed0", "fields": {"nom_de_la_commune": "ST JEAN KERDANIEL", "libell_d_acheminement": "ST JEAN KERDANIEL", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22304"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e6e9b986eba5041b055f14664ce8454ee1771f8", "fields": {"nom_de_la_commune": "ST JUDOCE", "libell_d_acheminement": "ST JUDOCE", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22306"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe0808e8a18cb3ab63641e1995392dc86e105c8", "fields": {"nom_de_la_commune": "ST MAUDAN", "libell_d_acheminement": "ST MAUDAN", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22314"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c60191f3971c50d3cf4d7ef29e45616110950a58", "fields": {"nom_de_la_commune": "ST MICHEL DE PLELAN", "libell_d_acheminement": "ST MICHEL DE PLELAN", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22318"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad40abcaa17772b2c3c00f0bc45a6335666b3baa", "fields": {"nom_de_la_commune": "ST QUAY PERROS", "libell_d_acheminement": "ST QUAY PERROS", "code_postal": "22700", "coordonnees_gps": [48.7941225989, -3.4412963824], "code_commune_insee": "22324"}, "geometry": {"type": "Point", "coordinates": [-3.4412963824, 48.7941225989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99fa828346073bf778eba0925efb12d9525fdbfb", "fields": {"nom_de_la_commune": "ST THELO", "libell_d_acheminement": "ST THELO", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22330"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ccf6e06656e7d357aa4f5731134fce5f69a8a1", "fields": {"nom_de_la_commune": "ST VRAN", "libell_d_acheminement": "ST VRAN", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22333"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8357696fb4dd3132b6957ae747e7dfeeee4c1f9", "fields": {"nom_de_la_commune": "TONQUEDEC", "libell_d_acheminement": "TONQUEDEC", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22340"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4233a35901e0ddf057e99e7696c9f2ccc52ace51", "fields": {"nom_de_la_commune": "TREBEURDEN", "libell_d_acheminement": "TREBEURDEN", "code_postal": "22560", "coordonnees_gps": [48.7801847576, -3.53025413579], "code_commune_insee": "22343"}, "geometry": {"type": "Point", "coordinates": [-3.53025413579, 48.7801847576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a68b71e866eb749b67b9c41a7e28be1bd682b0", "fields": {"nom_de_la_commune": "TREBRY", "libell_d_acheminement": "TREBRY", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22345"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d6ccc7b1de66cc52fccbb944d95ede4cdf87917", "fields": {"nom_de_la_commune": "TREFFRIN", "libell_d_acheminement": "TREFFRIN", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22351"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc24deb1899134f695f2b65eb5afe2875f43bd3", "fields": {"nom_de_la_commune": "TREGLAMUS", "libell_d_acheminement": "TREGLAMUS", "code_postal": "22540", "coordonnees_gps": [48.5672822265, -3.30848163045], "code_commune_insee": "22354"}, "geometry": {"type": "Point", "coordinates": [-3.30848163045, 48.5672822265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "565305144c17e4f66a1ed53ea1cfaa00069cd9e6", "fields": {"nom_de_la_commune": "TREGON", "libell_d_acheminement": "TREGON", "code_postal": "22650", "coordonnees_gps": [48.5606353312, -2.1363314846], "code_commune_insee": "22357"}, "geometry": {"type": "Point", "coordinates": [-2.1363314846, 48.5606353312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "741e034fceec02b4294fd0ff59da749c691c01ba", "fields": {"nom_de_la_commune": "AHUN", "libell_d_acheminement": "AHUN", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23001"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7681f88d065bfcddec98e93c1ce2eef9ef5f4040", "fields": {"nom_de_la_commune": "AJAIN", "libell_d_acheminement": "AJAIN", "code_postal": "23380", "coordonnees_gps": [46.2198124266, 1.97076642582], "code_commune_insee": "23002"}, "geometry": {"type": "Point", "coordinates": [1.97076642582, 46.2198124266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11b89ec290a91b2370252dc3e6bd4c94e2b6f362", "fields": {"nom_de_la_commune": "ANZEME", "libell_d_acheminement": "ANZEME", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23004"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54cdb0e437d899ea3dbf567e265356caffb10017", "fields": {"nom_de_la_commune": "AUBUSSON", "libell_d_acheminement": "AUBUSSON", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23008"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "489980e77c25601badda23fd1565cf034b2addc6", "fields": {"nom_de_la_commune": "AURIAT", "libell_d_acheminement": "AURIAT", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23012"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "756b0ddc36e3e827325f071132871ad464831b01", "fields": {"nom_de_la_commune": "AZAT CHATENET", "libell_d_acheminement": "AZAT CHATENET", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23014"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64bf820ba154a339b5a04466abc9e3fdca66582d", "fields": {"nom_de_la_commune": "BETETE", "libell_d_acheminement": "BETETE", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23022"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c3b3f3f63646055a9fe99a38f830f3a96f5b5e1", "fields": {"nom_de_la_commune": "BORD ST GEORGES", "libell_d_acheminement": "BORD ST GEORGES", "code_postal": "23230", "coordonnees_gps": [46.2160065726, 2.24523675556], "code_commune_insee": "23026"}, "geometry": {"type": "Point", "coordinates": [2.24523675556, 46.2160065726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c48b2381b5dff07bfe12e0ffbb87dadff04736", "fields": {"nom_de_la_commune": "BOSMOREAU LES MINES", "libell_d_acheminement": "BOSMOREAU LES MINES", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23027"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb34b93022db1893626dcccc4431a93592564015", "fields": {"nom_de_la_commune": "CHAMBONCHARD", "libell_d_acheminement": "CHAMBONCHARD", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23046"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dac1cb7aece520f69a3c27b2efec97b99b7e950", "fields": {"nom_de_la_commune": "CHAMBORAND", "libell_d_acheminement": "CHAMBORAND", "code_postal": "23240", "coordonnees_gps": [46.1728661103, 1.63437872593], "code_commune_insee": "23047"}, "geometry": {"type": "Point", "coordinates": [1.63437872593, 46.1728661103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e41693e7dc030d6333c455706b52e77514049c1c", "fields": {"nom_de_la_commune": "CHAMPSANGLARD", "libell_d_acheminement": "CHAMPSANGLARD", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23049"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b770c6ba4cb49bd25cc813babcb34ad3d2f21e14", "fields": {"nom_de_la_commune": "CHARD", "libell_d_acheminement": "CHARD", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23053"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f6cba39e41ab62cc5e3fa17a377798db6c9b8fa", "fields": {"nom_de_la_commune": "CHATELARD", "libell_d_acheminement": "CHATELARD", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23055"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e81fd6aa086e6304182698dc7a9e105dcc3911", "fields": {"nom_de_la_commune": "CHATELUS LE MARCHEIX", "libell_d_acheminement": "CHATELUS LE MARCHEIX", "code_postal": "23430", "coordonnees_gps": [45.9881301052, 1.59522254815], "code_commune_insee": "23056"}, "geometry": {"type": "Point", "coordinates": [1.59522254815, 45.9881301052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5309895f10c9e34561bfea65545e6386c68046", "fields": {"nom_de_la_commune": "CHATELUS MALVALEIX", "libell_d_acheminement": "CHATELUS MALVALEIX", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23057"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec230a578aec1ddd93a732826e97e02ee98f9bde", "fields": {"nom_de_la_commune": "LE COMPAS", "libell_d_acheminement": "LE COMPAS", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23066"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05a952116dc9d377cc95a814190741d5395680b7", "fields": {"nom_de_la_commune": "CRESSAT", "libell_d_acheminement": "CRESSAT", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23068"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "381fd09c28a3d8700511907025f32826cea3bfaa", "fields": {"nom_de_la_commune": "CROZE", "libell_d_acheminement": "CROZE", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23071"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3e04df339160daccec9417333f4908ce401e83e", "fields": {"nom_de_la_commune": "DONTREIX", "libell_d_acheminement": "DONTREIX", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23073"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f53a8ce82a4ce027bc0626f93fbbe39cf362e5", "fields": {"nom_de_la_commune": "DUN LE PALESTEL", "libell_d_acheminement": "DUN LE PALESTEL", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23075"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd5ccdd398f6bd64be2c0a5e70e3b629a542e0e", "fields": {"nom_de_la_commune": "EVAUX LES BAINS", "libell_d_acheminement": "EVAUX LES BAINS", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23076"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99673146832c24e0fe493abd71d84b3469114062", "fields": {"nom_de_la_commune": "FAUX MAZURAS", "libell_d_acheminement": "FAUX MAZURAS", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23078"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c308aefa061ee94c35c7f908311dedbbc56986b7", "fields": {"code_postal": "23230", "code_commune_insee": "23093", "libell_d_acheminement": "GOUZON", "ligne_5": "GOUZOUGNAT", "nom_de_la_commune": "GOUZON", "coordonnees_gps": [46.2160065726, 2.24523675556]}, "geometry": {"type": "Point", "coordinates": [2.24523675556, 46.2160065726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf164eac3847fb7aa55aaaafcfb50d9e6718a3b2", "fields": {"code_postal": "23230", "code_commune_insee": "23093", "libell_d_acheminement": "GOUZON", "ligne_5": "LES FORGES", "nom_de_la_commune": "GOUZON", "coordonnees_gps": [46.2160065726, 2.24523675556]}, "geometry": {"type": "Point", "coordinates": [2.24523675556, 46.2160065726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7487a10fff021256daa4a911e8cddec538d3a0a2", "fields": {"nom_de_la_commune": "GUERET", "libell_d_acheminement": "GUERET", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23096"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940b4cce9a612ca0f9333b6421a0a739e0c16cc1", "fields": {"nom_de_la_commune": "ISSOUDUN LETRIEIX", "libell_d_acheminement": "ISSOUDUN LETRIEIX", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23097"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7936d9cdcb194d2e991672d2b679a46fd8525f77", "fields": {"nom_de_la_commune": "JALESCHES", "libell_d_acheminement": "JALESCHES", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23098"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8abff7fc1c8442b05abc56555d9f320fbd0c6ff6", "fields": {"nom_de_la_commune": "JANAILLAT", "libell_d_acheminement": "JANAILLAT", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23099"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1e45fb46b38245fb93fccfc0eb2d7b6b9c81a26", "fields": {"nom_de_la_commune": "JARNAGES", "libell_d_acheminement": "JARNAGES", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23100"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da39ed6f01240667593b80ed6a4ce5afb6ebbf33", "fields": {"nom_de_la_commune": "LAVAVEIX LES MINES", "libell_d_acheminement": "LAVAVEIX LES MINES", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23105"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "780ce7ed2d58015f3efbfb44c903aa294b709c7b", "fields": {"nom_de_la_commune": "MAGNAT L ETRANGE", "libell_d_acheminement": "MAGNAT L ETRANGE", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23115"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d95c782584f67d7d3099270cb8ba0280fdcb9d", "fields": {"nom_de_la_commune": "MOUTIER D AHUN", "libell_d_acheminement": "MOUTIER D AHUN", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23138"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc909eea6426a55954c24c182709f6932dcb0888", "fields": {"nom_de_la_commune": "NEOUX", "libell_d_acheminement": "NEOUX", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23142"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a7cc752662a1d04b08a1dd0922f51d48f51e823", "fields": {"nom_de_la_commune": "NOUHANT", "libell_d_acheminement": "NOUHANT", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23145"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc6b346198f490b79e540c4378ccf60becc9cb6a", "fields": {"nom_de_la_commune": "NOUZEROLLES", "libell_d_acheminement": "NOUZEROLLES", "code_postal": "23360", "coordonnees_gps": [46.4079400107, 1.81197289592], "code_commune_insee": "23147"}, "geometry": {"type": "Point", "coordinates": [1.81197289592, 46.4079400107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9afdec0238fafd4b844d5fa5709b439bcc321c9", "fields": {"code_postal": "23140", "code_commune_insee": "23149", "libell_d_acheminement": "PARSAC RIMONDEIX", "ligne_5": "RIMONDEIX", "nom_de_la_commune": "PARSAC RIMONDEIX", "coordonnees_gps": [46.1904343577, 2.100695358]}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7782548a19775afb3fb8b88dd174bd6234830760", "fields": {"nom_de_la_commune": "POUSSANGES", "libell_d_acheminement": "POUSSANGES", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23158"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b99fc698083737382651394966dfa845ddc10fd7", "fields": {"nom_de_la_commune": "ROUGNAT", "libell_d_acheminement": "ROUGNAT", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23164"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc07cf9db36f322bc9e2107285de83aac09612a6", "fields": {"nom_de_la_commune": "ROYERE DE VASSIVIERE", "libell_d_acheminement": "ROYERE DE VASSIVIERE", "code_postal": "23460", "coordonnees_gps": [45.8611581486, 1.91070196951], "code_commune_insee": "23165"}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd45e81dac97d9053726ff92c00d6ad42609eee2", "fields": {"nom_de_la_commune": "SANNAT", "libell_d_acheminement": "SANNAT", "code_postal": "23110", "coordonnees_gps": [46.1328781913, 2.46103993563], "code_commune_insee": "23167"}, "geometry": {"type": "Point", "coordinates": [2.46103993563, 46.1328781913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1cffcf32ce06b7ad3016feab9c4c136417384d", "fields": {"nom_de_la_commune": "LA SAUNIERE", "libell_d_acheminement": "LA SAUNIERE", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23169"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f6bf4ca6e0effc711bb69496f04ef87669ab16d", "fields": {"nom_de_la_commune": "ST AMAND", "libell_d_acheminement": "ST AMAND", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23180"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "619e8b62c9583eec199f08c8b8cc3e73f85a2aac", "fields": {"nom_de_la_commune": "ST CHABRAIS", "libell_d_acheminement": "ST CHABRAIS", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23185"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af429ffc7db157ab55487fecba9ca5bd8ca0845c", "fields": {"nom_de_la_commune": "ST FIEL", "libell_d_acheminement": "ST FIEL", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23195"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bf19066d157494eb6d1d8965148026b2179d1f6", "fields": {"nom_de_la_commune": "ST FRION", "libell_d_acheminement": "ST FRION", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23196"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f460342ff7f84dd3034831c92c7185f7b242651", "fields": {"nom_de_la_commune": "ST JULIEN LE CHATEL", "libell_d_acheminement": "ST JULIEN LE CHATEL", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23204"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e11a8ca02e64611332c9569d38141119940997be", "fields": {"nom_de_la_commune": "ST MARIEN", "libell_d_acheminement": "ST MARIEN", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23213"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f2c4320883e2b70f06f7bbdc6b571113c963517", "fields": {"nom_de_la_commune": "ST MARTIAL LE VIEUX", "libell_d_acheminement": "ST MARTIAL LE VIEUX", "code_postal": "23100", "coordonnees_gps": [45.7268146987, 2.29618213551], "code_commune_insee": "23215"}, "geometry": {"type": "Point", "coordinates": [2.29618213551, 45.7268146987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4455b9837c555a59e3219c98377664b7b96fb294", "fields": {"nom_de_la_commune": "ST MAURICE LA SOUTERRAINE", "libell_d_acheminement": "ST MAURICE LA SOUTERRAINE", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23219"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "901a1bcb93db23d89b2c9f6eacef4f2ab30f22f8", "fields": {"nom_de_la_commune": "ST MICHEL DE VEISSE", "libell_d_acheminement": "ST MICHEL DE VEISSE", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23222"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fc1acfa2dfcf911d829365b33c0a28f7ff11cea", "fields": {"nom_de_la_commune": "ST PIERRE BELLEVUE", "libell_d_acheminement": "ST PIERRE BELLEVUE", "code_postal": "23460", "coordonnees_gps": [45.8611581486, 1.91070196951], "code_commune_insee": "23232"}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc9ae4378bd5be011c1492aead8467fab17a883f", "fields": {"nom_de_la_commune": "VIGEVILLE", "libell_d_acheminement": "VIGEVILLE", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23262"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8518c1bd4bbc849b6e13ff62fb6479dd43367071", "fields": {"nom_de_la_commune": "LA VILLETELLE", "libell_d_acheminement": "LA VILLETELLE", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23266"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d126d3c8eeefd2f227d87617f71c041a19e9a671", "fields": {"nom_de_la_commune": "ALLAS LES MINES", "libell_d_acheminement": "ALLAS LES MINES", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24006"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be8d40a2cab79030fbdfe7946f604e623156bbb", "fields": {"nom_de_la_commune": "ARCHIGNAC", "libell_d_acheminement": "ARCHIGNAC", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24012"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3400c33c4bdcba6f243636d28134b4aa943789b2", "fields": {"nom_de_la_commune": "AURIAC DU PERIGORD", "libell_d_acheminement": "AURIAC DU PERIGORD", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24018"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efbd57443208de5a55a2ffa04b033c5e82068540", "fields": {"nom_de_la_commune": "BADEFOLS D ANS", "libell_d_acheminement": "BADEFOLS D ANS", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24021"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93acf350661a19cd37004a873c1d08b541885141", "fields": {"code_postal": "24440", "code_commune_insee": "24028", "libell_d_acheminement": "BEAUMONTOIS EN PERIGORD", "ligne_5": "BEAUMONT DU PERIGORD", "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", "coordonnees_gps": [44.7570815244, 0.786200936905]}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa2222275b5fad5b31b7940554c7dfe0e641bdd", "fields": {"nom_de_la_commune": "BEAURONNE", "libell_d_acheminement": "BEAURONNE", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24032"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daf127f0a2292d06b0caa2272c59da694e235a9c", "fields": {"nom_de_la_commune": "BEAUSSAC", "libell_d_acheminement": "BEAUSSAC", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24033"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5402274b50823b69c1f704316a5bf64a131f23bc", "fields": {"code_postal": "24170", "code_commune_insee": "24035", "libell_d_acheminement": "PAYS DE BELVES", "ligne_5": "BELVES", "nom_de_la_commune": "PAYS DE BELVES", "coordonnees_gps": [44.7520136105, 1.04613211786]}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a29fa1f1faf02e1cb9310d9e38d2a4acf467ff", "fields": {"nom_de_la_commune": "BEZENAC", "libell_d_acheminement": "BEZENAC", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24041"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0dade0f624f378e3fb7bb97661c21da096fd23", "fields": {"code_postal": "24750", "code_commune_insee": "24053", "libell_d_acheminement": "BOULAZAC ISLE MANOIRE", "ligne_5": "ATUR", "nom_de_la_commune": "BOULAZAC ISLE MANOIRE", "coordonnees_gps": [45.1801193657, 0.766939907734]}, "geometry": {"type": "Point", "coordinates": [0.766939907734, 45.1801193657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a5704e5f4045f7af79338197c33f1959d9a3ba", "fields": {"nom_de_la_commune": "BOUNIAGUES", "libell_d_acheminement": "BOUNIAGUES", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24054"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b644c24639626770ae4bdf458de8b9c19a04e069", "fields": {"nom_de_la_commune": "BOURGNAC", "libell_d_acheminement": "BOURGNAC", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24059"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297c5b69c7a2e22f3f2fb369eaaf6e3e7f8a6349", "fields": {"nom_de_la_commune": "BOURNIQUEL", "libell_d_acheminement": "BOURNIQUEL", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24060"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c113da1c86e91a93bbffb01565c1fe88476100e", "fields": {"nom_de_la_commune": "BOURROU", "libell_d_acheminement": "BOURROU", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24061"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2b2f864c3e8ca69b9dff9be57d535083dfba713", "fields": {"nom_de_la_commune": "BREUILH", "libell_d_acheminement": "BREUILH", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24065"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97c7f66e7937b4aa8d6f7c6688fcdfeb9de19c5b", "fields": {"code_postal": "24480", "code_commune_insee": "24068", "libell_d_acheminement": "LE BUISSON DE CADOUIN", "ligne_5": "PALEYRAC", "nom_de_la_commune": "LE BUISSON DE CADOUIN", "coordonnees_gps": [44.8133494955, 0.885908136539]}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15878a9584b28f9bd24f640945da5cdf5e56cd3a", "fields": {"nom_de_la_commune": "CARSAC AILLAC", "libell_d_acheminement": "CARSAC AILLAC", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24082"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef5497552cc35f81c7fbf2941db11b936357b42", "fields": {"nom_de_la_commune": "LA CASSAGNE", "libell_d_acheminement": "LA CASSAGNE", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24085"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee523a6ed056a41b5a899953af69fcc51c8c961", "fields": {"nom_de_la_commune": "CAUSE DE CLERANS", "libell_d_acheminement": "CAUSE DE CLERANS", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24088"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3314f0dd98ea57c9e7420fc5818722d714442b", "fields": {"nom_de_la_commune": "CHALAIS", "libell_d_acheminement": "CHALAIS", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24095"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb5eeeb701716bdbb2198b9ef5f26a737d2794d8", "fields": {"nom_de_la_commune": "CHAMPAGNAC DE BELAIR", "libell_d_acheminement": "CHAMPAGNAC DE BELAIR", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24096"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b88028d5bb11d117cfeaaeb57b71029bb15ba40", "fields": {"nom_de_la_commune": "CHAMPAGNE ET FONTAINE", "libell_d_acheminement": "CHAMPAGNE ET FONTAINE", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24097"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22bc46682e03af766d15b0cacdd4b0d7f3f60a4a", "fields": {"nom_de_la_commune": "CHASSAIGNES", "libell_d_acheminement": "CHASSAIGNES", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24114"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "444c0af9fd6f98c48977cb9efc6d2e96aed3e089", "fields": {"nom_de_la_commune": "CHATEAU L EVEQUE", "libell_d_acheminement": "CHATEAU L EVEQUE", "code_postal": "24460", "coordonnees_gps": [45.2956832726, 0.780250609832], "code_commune_insee": "24115"}, "geometry": {"type": "Point", "coordinates": [0.780250609832, 45.2956832726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a9cf369cd034616873bcd2b0fc4704626e08db", "fields": {"nom_de_la_commune": "CHERVAL", "libell_d_acheminement": "CHERVAL", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24119"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab705402b2732355e76fdf3e6d52dec9cda2fa38", "fields": {"nom_de_la_commune": "CORGNAC SUR L ISLE", "libell_d_acheminement": "CORGNAC SUR L ISLE", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24134"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99a432884ab61ee560d0e38d417c1d041841a5e1", "fields": {"nom_de_la_commune": "GRAMOND", "libell_d_acheminement": "GRAMOND", "code_postal": "12160", "coordonnees_gps": [44.2885792415, 2.42910267877], "code_commune_insee": "12113"}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2fed5e77dbcd89e7ce2ba1f77e8e2e9470c0a73", "fields": {"nom_de_la_commune": "LAPANOUSE DE CERNON", "libell_d_acheminement": "LAPANOUSE DE CERNON", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12122"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce5f29aee7b275c8f9800a2de7cb8778c115eee", "fields": {"code_postal": "12450", "code_commune_insee": "12133", "libell_d_acheminement": "LUC LA PRIMAUBE", "ligne_5": "LA PRIMAUBE", "nom_de_la_commune": "LUC LA PRIMAUBE", "coordonnees_gps": [44.2840952345, 2.5725628832]}, "geometry": {"type": "Point", "coordinates": [2.5725628832, 44.2840952345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379fb487ea6d2ca2268186bd0848496e449a4587", "fields": {"nom_de_la_commune": "MALEVILLE", "libell_d_acheminement": "MALEVILLE", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12136"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1840106b04c5e16ba62c6052fd7b864481c49864", "fields": {"nom_de_la_commune": "MANHAC", "libell_d_acheminement": "MANHAC", "code_postal": "12160", "coordonnees_gps": [44.2885792415, 2.42910267877], "code_commune_insee": "12137"}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2e4d6f4d308cedfbba8c320d3c5a91bcac4990", "fields": {"nom_de_la_commune": "MARCILLAC VALLON", "libell_d_acheminement": "MARCILLAC VALLON", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12138"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cdddaf45f27979f8740bafcfcbeba1efe9af60b", "fields": {"nom_de_la_commune": "MARTIEL", "libell_d_acheminement": "MARTIEL", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12140"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83253d790599784692f68a40f3f3c6f7be8c5cf3", "fields": {"nom_de_la_commune": "MAYRAN", "libell_d_acheminement": "MAYRAN", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12142"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97f5f7340af119ca597134c2344e8db7db57bbc8", "fields": {"nom_de_la_commune": "MELAGUES", "libell_d_acheminement": "MELAGUES", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12143"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa8bdf9dd2c3486a6562e4ec9c0f1c19ec25a6f", "fields": {"nom_de_la_commune": "MONTEZIC", "libell_d_acheminement": "MONTEZIC", "code_postal": "12460", "coordonnees_gps": [44.7074104935, 2.68829666871], "code_commune_insee": "12151"}, "geometry": {"type": "Point", "coordinates": [2.68829666871, 44.7074104935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e69021752240c458e098f03d552bc28f14eb0e78", "fields": {"nom_de_la_commune": "MONTJAUX", "libell_d_acheminement": "MONTJAUX", "code_postal": "12490", "coordonnees_gps": [44.0484721644, 2.91997345292], "code_commune_insee": "12153"}, "geometry": {"type": "Point", "coordinates": [2.91997345292, 44.0484721644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703465e4469c54e44fb74cdaafb20a8adf8fcccd", "fields": {"nom_de_la_commune": "FONDAMENTE", "libell_d_acheminement": "FONDAMENTE", "code_postal": "12540", "coordonnees_gps": [43.8787455208, 3.14987374669], "code_commune_insee": "12155"}, "geometry": {"type": "Point", "coordinates": [3.14987374669, 43.8787455208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b3c4fff1734608a91b90c49ec9779b50ba3d39", "fields": {"nom_de_la_commune": "MORLHON LE HAUT", "libell_d_acheminement": "MORLHON LE HAUT", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12159"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c2ccea886ccc2d359c6b7a52092c7251a15328a", "fields": {"nom_de_la_commune": "NAJAC", "libell_d_acheminement": "NAJAC", "code_postal": "12270", "coordonnees_gps": [44.2133464767, 2.02193088766], "code_commune_insee": "12167"}, "geometry": {"type": "Point", "coordinates": [2.02193088766, 44.2133464767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6d21c771e6a1335fcd91d1c96476a3c6b02d4c", "fields": {"nom_de_la_commune": "NAUVIALE", "libell_d_acheminement": "NAUVIALE", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12171"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566dce0b1048840148ede14a2df7e18873830850", "fields": {"nom_de_la_commune": "PONT DE SALARS", "libell_d_acheminement": "PONT DE SALARS", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12185"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "820f5ac1efcf8de1b2f50fc46e38ce3eb614ded6", "fields": {"nom_de_la_commune": "PRADES D AUBRAC", "libell_d_acheminement": "PRADES D AUBRAC", "code_postal": "12470", "coordonnees_gps": [44.5816447424, 2.9350498797], "code_commune_insee": "12187"}, "geometry": {"type": "Point", "coordinates": [2.9350498797, 44.5816447424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bf468a635a69b7fe3b5e726ea1268004c9938a4", "fields": {"nom_de_la_commune": "MOUNES PROHENCOUX", "libell_d_acheminement": "MOUNES PROHENCOUX", "code_postal": "12370", "coordonnees_gps": [43.8037612905, 2.74262599071], "code_commune_insee": "12192"}, "geometry": {"type": "Point", "coordinates": [2.74262599071, 43.8037612905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "498a93dc5e9d57d217645f01ae5895f372331886", "fields": {"nom_de_la_commune": "RODEZ", "libell_d_acheminement": "RODEZ", "code_postal": "12000", "coordonnees_gps": [44.3677869063, 2.531363607], "code_commune_insee": "12202"}, "geometry": {"type": "Point", "coordinates": [2.531363607, 44.3677869063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad602cc1eedc855e8f3f306e433476bb5468818", "fields": {"nom_de_la_commune": "ROQUEFORT SUR SOULZON", "libell_d_acheminement": "ROQUEFORT SUR SOULZON", "code_postal": "12250", "coordonnees_gps": [43.948416094, 3.02271239908], "code_commune_insee": "12203"}, "geometry": {"type": "Point", "coordinates": [3.02271239908, 43.948416094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b98db8f79250dce097401c06c3cd8e6a5d1c14d2", "fields": {"nom_de_la_commune": "LA ROQUE STE MARGUERITE", "libell_d_acheminement": "LA ROQUE STE MARGUERITE", "code_postal": "12100", "coordonnees_gps": [44.0898281066, 3.10621950967], "code_commune_insee": "12204"}, "geometry": {"type": "Point", "coordinates": [3.10621950967, 44.0898281066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80590567ccd5bc0e2480a6a2ac516a1de6b6ff78", "fields": {"nom_de_la_commune": "LA ROUQUETTE", "libell_d_acheminement": "LA ROUQUETTE", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12205"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e758f22746b7e2de3ec5b75af416ed4432643ee", "fields": {"nom_de_la_commune": "ST AFFRIQUE", "libell_d_acheminement": "ST AFFRIQUE", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12208"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dffd1caa4fcb13c8999ee4be26af784f0464d06", "fields": {"nom_de_la_commune": "ST ANDRE DE NAJAC", "libell_d_acheminement": "ST ANDRE DE NAJAC", "code_postal": "12270", "coordonnees_gps": [44.2133464767, 2.02193088766], "code_commune_insee": "12210"}, "geometry": {"type": "Point", "coordinates": [2.02193088766, 44.2133464767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e66e99e15c38cf20df746dbd9b031aa7951d09", "fields": {"nom_de_la_commune": "ST ANDRE DE VEZINES", "libell_d_acheminement": "ST ANDRE DE VEZINES", "code_postal": "12720", "coordonnees_gps": [44.1809861731, 3.25262326426], "code_commune_insee": "12211"}, "geometry": {"type": "Point", "coordinates": [3.25262326426, 44.1809861731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd7d0d02c213bffa494cdad860df5790e8683c79", "fields": {"code_postal": "12470", "code_commune_insee": "12214", "libell_d_acheminement": "ST CHELY D AUBRAC", "ligne_5": "AUBRAC", "nom_de_la_commune": "ST CHELY D AUBRAC", "coordonnees_gps": [44.5816447424, 2.9350498797]}, "geometry": {"type": "Point", "coordinates": [2.9350498797, 44.5816447424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c50b16056657a901aefc84786f371a5dd3d67fb3", "fields": {"code_postal": "12210", "code_commune_insee": "12223", "libell_d_acheminement": "ARGENCES EN AUBRAC", "ligne_5": "LA TERRISSE", "nom_de_la_commune": "ARGENCES EN AUBRAC", "coordonnees_gps": [44.6915069372, 2.81638954446]}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00c7e1a87c34b9ce2e70afda34f77a036b7fc9f", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "12850", "coordonnees_gps": [44.3602453055, 2.59175422847], "code_commune_insee": "12241"}, "geometry": {"type": "Point", "coordinates": [2.59175422847, 44.3602453055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "232fa62b34110f634c0fbbdf5200239ece650b93", "fields": {"nom_de_la_commune": "ST ROME DE TARN", "libell_d_acheminement": "ST ROME DE TARN", "code_postal": "12490", "coordonnees_gps": [44.0484721644, 2.91997345292], "code_commune_insee": "12244"}, "geometry": {"type": "Point", "coordinates": [2.91997345292, 44.0484721644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40bc841e17c0c0aa1356d24a8f8ca3103aeed818", "fields": {"nom_de_la_commune": "ST SATURNIN DE LENNE", "libell_d_acheminement": "ST SATURNIN DE LENNE", "code_postal": "12560", "coordonnees_gps": [44.416656717, 3.07038306451], "code_commune_insee": "12247"}, "geometry": {"type": "Point", "coordinates": [3.07038306451, 44.416656717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb59dffa9acdf3ff1b731375f9c5f9cb38deef54", "fields": {"nom_de_la_commune": "ST SERNIN SUR RANCE", "libell_d_acheminement": "ST SERNIN SUR RANCE", "code_postal": "12380", "coordonnees_gps": [43.8550317909, 2.62086036072], "code_commune_insee": "12248"}, "geometry": {"type": "Point", "coordinates": [2.62086036072, 43.8550317909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536331e12b2349df0f19e082b8641042e2c15787", "fields": {"nom_de_la_commune": "SALMIECH", "libell_d_acheminement": "SALMIECH", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12255"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7decd1cda27fff39d70560f75175b839adfee561", "fields": {"nom_de_la_commune": "SAUJAC", "libell_d_acheminement": "SAUJAC", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12261"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b19633ccb9a5215a2a73e3fbb2c67909a69be771", "fields": {"code_postal": "12150", "code_commune_insee": "12270", "libell_d_acheminement": "SEVERAC D AVEYRON", "ligne_5": "LAVERNHE", "nom_de_la_commune": "SEVERAC D AVEYRON", "coordonnees_gps": [44.2997462266, 3.08943327061]}, "geometry": {"type": "Point", "coordinates": [3.08943327061, 44.2997462266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53dde2d6047b0d829243f4b03727de024120bb79", "fields": {"code_postal": "12150", "code_commune_insee": "12270", "libell_d_acheminement": "SEVERAC D AVEYRON", "ligne_5": "RECOULES PREVINQUIERES", "nom_de_la_commune": "SEVERAC D AVEYRON", "coordonnees_gps": [44.2997462266, 3.08943327061]}, "geometry": {"type": "Point", "coordinates": [3.08943327061, 44.2997462266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7ba5d2797a7690d3ee3e050f568b1112fe53fa", "fields": {"nom_de_la_commune": "SOULAGES BONNEVAL", "libell_d_acheminement": "SOULAGES BONNEVAL", "code_postal": "12210", "coordonnees_gps": [44.6915069372, 2.81638954446], "code_commune_insee": "12273"}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebd090e8a3754a73730732fe13b523e29d905bd4", "fields": {"nom_de_la_commune": "THERONDELS", "libell_d_acheminement": "THERONDELS", "code_postal": "12600", "coordonnees_gps": [44.8341310228, 2.67664580865], "code_commune_insee": "12280"}, "geometry": {"type": "Point", "coordinates": [2.67664580865, 44.8341310228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14db305c601d2d91689a2719d43591f430c39fb4", "fields": {"nom_de_la_commune": "VALADY", "libell_d_acheminement": "VALADY", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12288"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81dd15732a33c83da70cfe0919f97a585b08dd8c", "fields": {"nom_de_la_commune": "LE VIBAL", "libell_d_acheminement": "LE VIBAL", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12297"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45551051955412ad5eeab326c65e347d185b8e1b", "fields": {"nom_de_la_commune": "VILLECOMTAL", "libell_d_acheminement": "VILLECOMTAL", "code_postal": "12580", "coordonnees_gps": [44.5571706547, 2.5811283004], "code_commune_insee": "12298"}, "geometry": {"type": "Point", "coordinates": [2.5811283004, 44.5571706547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6361f23b685854f87188c4fedc14764944ee9875", "fields": {"nom_de_la_commune": "CURAN", "libell_d_acheminement": "CURAN", "code_postal": "12410", "coordonnees_gps": [44.1707018059, 2.80592424455], "code_commune_insee": "12307"}, "geometry": {"type": "Point", "coordinates": [2.80592424455, 44.1707018059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0024c3084d159daa2a5612e1a42efa223ac1cc", "fields": {"code_postal": "13290", "code_commune_insee": "13001", "libell_d_acheminement": "AIX EN PROVENCE", "ligne_5": "LES MILLES", "nom_de_la_commune": "AIX EN PROVENCE", "coordonnees_gps": [43.5360221556, 5.3983786513]}, "geometry": {"type": "Point", "coordinates": [5.3983786513, 43.5360221556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb1a6f4a7156848acfb80f4e3ed7747f9c2e8d50", "fields": {"nom_de_la_commune": "AURONS", "libell_d_acheminement": "AURONS", "code_postal": "13121", "coordonnees_gps": [43.6711825452, 5.14936683898], "code_commune_insee": "13008"}, "geometry": {"type": "Point", "coordinates": [5.14936683898, 43.6711825452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6fbff6f2d8099e80c46c7f42a41643f18abaaf3", "fields": {"nom_de_la_commune": "BEAURECUEIL", "libell_d_acheminement": "BEAURECUEIL", "code_postal": "13100", "coordonnees_gps": [43.5353485115, 5.4345381961], "code_commune_insee": "13012"}, "geometry": {"type": "Point", "coordinates": [5.4345381961, 43.5353485115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2894187d57faaea5574f4b9d557665a47ad6d082", "fields": {"code_postal": "13480", "code_commune_insee": "13019", "libell_d_acheminement": "CABRIES", "ligne_5": "CALAS", "nom_de_la_commune": "CABRIES", "coordonnees_gps": [43.4494933345, 5.34998030889]}, "geometry": {"type": "Point", "coordinates": [5.34998030889, 43.4494933345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82ae88e3d1f9160742b67d73128661dd4bb4ca79", "fields": {"nom_de_la_commune": "CADOLIVE", "libell_d_acheminement": "CADOLIVE", "code_postal": "13950", "coordonnees_gps": [43.3937891441, 5.53246555313], "code_commune_insee": "13020"}, "geometry": {"type": "Point", "coordinates": [5.53246555313, 43.3937891441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3898bd086308fce9938649986519c9152312906c", "fields": {"nom_de_la_commune": "CARRY LE ROUET", "libell_d_acheminement": "CARRY LE ROUET", "code_postal": "13620", "coordonnees_gps": [43.3421734336, 5.15446218306], "code_commune_insee": "13021"}, "geometry": {"type": "Point", "coordinates": [5.15446218306, 43.3421734336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b79dd6343c2829c94f328f9385dc2a09a2b0a9", "fields": {"nom_de_la_commune": "CHARLEVAL", "libell_d_acheminement": "CHARLEVAL", "code_postal": "13350", "coordonnees_gps": [43.7213357582, 5.2455259904], "code_commune_insee": "13024"}, "geometry": {"type": "Point", "coordinates": [5.2455259904, 43.7213357582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "210ca4e11f139315f541dc8af59c3657a76f421a", "fields": {"nom_de_la_commune": "CHATEAUNEUF LE ROUGE", "libell_d_acheminement": "CHATEAUNEUF LE ROUGE", "code_postal": "13790", "coordonnees_gps": [43.466397869, 5.61228660864], "code_commune_insee": "13025"}, "geometry": {"type": "Point", "coordinates": [5.61228660864, 43.466397869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11bc1394a60dfaf94142b3da5eb1d875e02bc381", "fields": {"nom_de_la_commune": "CHATEAURENARD", "libell_d_acheminement": "CHATEAURENARD", "code_postal": "13160", "coordonnees_gps": [43.8819269443, 4.84005453271], "code_commune_insee": "13027"}, "geometry": {"type": "Point", "coordinates": [4.84005453271, 43.8819269443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86f8c7b28a63d813ef6ac867afa2657c37eeaaba", "fields": {"nom_de_la_commune": "FOS SUR MER", "libell_d_acheminement": "FOS SUR MER", "code_postal": "13270", "coordonnees_gps": [43.4556448261, 4.90423792179], "code_commune_insee": "13039"}, "geometry": {"type": "Point", "coordinates": [4.90423792179, 43.4556448261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26ce6eb48569e798c87881b7b01e0a73760b8ac9", "fields": {"nom_de_la_commune": "FUVEAU", "libell_d_acheminement": "FUVEAU", "code_postal": "13710", "coordonnees_gps": [43.4598825054, 5.55318993446], "code_commune_insee": "13040"}, "geometry": {"type": "Point", "coordinates": [5.55318993446, 43.4598825054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3edc9bd471a6597b195c72da11410dee1b7f5280", "fields": {"code_postal": "13118", "code_commune_insee": "13047", "libell_d_acheminement": "ISTRES", "ligne_5": "ENTRESSEN", "nom_de_la_commune": "ISTRES", "coordonnees_gps": [43.5502806959, 4.95074578461]}, "geometry": {"type": "Point", "coordinates": [4.95074578461, 43.5502806959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45d4b3f58deafbd854f790b39c8b42bba695da16", "fields": {"nom_de_la_commune": "ISTRES", "libell_d_acheminement": "ISTRES", "code_postal": "13800", "coordonnees_gps": [43.5502806959, 4.95074578461], "code_commune_insee": "13047"}, "geometry": {"type": "Point", "coordinates": [4.95074578461, 43.5502806959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d63816a5c6be74ad7ca8423680461ad7b5b12c2", "fields": {"nom_de_la_commune": "JOUQUES", "libell_d_acheminement": "JOUQUES", "code_postal": "13490", "coordonnees_gps": [43.6333280619, 5.65650735548], "code_commune_insee": "13048"}, "geometry": {"type": "Point", "coordinates": [5.65650735548, 43.6333280619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0f5a2f1a9b79fd461853b4ab8ac062bbbbeb0a1", "fields": {"nom_de_la_commune": "LANCON PROVENCE", "libell_d_acheminement": "LANCON PROVENCE", "code_postal": "13680", "coordonnees_gps": [43.575814488, 5.15920441157], "code_commune_insee": "13051"}, "geometry": {"type": "Point", "coordinates": [5.15920441157, 43.575814488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9605ff971566a16e8fe011ec8d0a6d4a174e7151", "fields": {"code_postal": "13500", "code_commune_insee": "13056", "libell_d_acheminement": "MARTIGUES", "ligne_5": "CARRO", "nom_de_la_commune": "MARTIGUES", "coordonnees_gps": [43.3799117548, 5.04948307536]}, "geometry": {"type": "Point", "coordinates": [5.04948307536, 43.3799117548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad94f56b66474b3f1ef7cbb898768bb727dd282f", "fields": {"nom_de_la_commune": "MAS BLANC DES ALPILLES", "libell_d_acheminement": "MAS BLANC DES ALPILLES", "code_postal": "13103", "coordonnees_gps": [43.7851447818, 4.737135688], "code_commune_insee": "13057"}, "geometry": {"type": "Point", "coordinates": [4.737135688, 43.7851447818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f6b10c6346bd06ae486910de590c0e00cc1209", "fields": {"nom_de_la_commune": "MAUSSANE LES ALPILLES", "libell_d_acheminement": "MAUSSANE LES ALPILLES", "code_postal": "13520", "coordonnees_gps": [43.7214018039, 4.81156485939], "code_commune_insee": "13058"}, "geometry": {"type": "Point", "coordinates": [4.81156485939, 43.7214018039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75666858bc802dc0f1b8e5127f5045175ecee6b", "fields": {"nom_de_la_commune": "MEYRARGUES", "libell_d_acheminement": "MEYRARGUES", "code_postal": "13650", "coordonnees_gps": [43.6243628028, 5.52285465567], "code_commune_insee": "13059"}, "geometry": {"type": "Point", "coordinates": [5.52285465567, 43.6243628028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf808efb6b00166ff50b8d94f82bbb60ffd0bbb", "fields": {"nom_de_la_commune": "MOLLEGES", "libell_d_acheminement": "MOLLEGES", "code_postal": "13940", "coordonnees_gps": [43.8049851754, 4.94906222782], "code_commune_insee": "13064"}, "geometry": {"type": "Point", "coordinates": [4.94906222782, 43.8049851754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a3296d0e5a53865f932e138a81fd36c8759359", "fields": {"nom_de_la_commune": "ORGON", "libell_d_acheminement": "ORGON", "code_postal": "13660", "coordonnees_gps": [43.7795845538, 5.02373447714], "code_commune_insee": "13067"}, "geometry": {"type": "Point", "coordinates": [5.02373447714, 43.7795845538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "443dc6693b3f7c0f42104920b96e5247b0483aaa", "fields": {"nom_de_la_commune": "PEYPIN", "libell_d_acheminement": "PEYPIN", "code_postal": "13124", "coordonnees_gps": [43.3844605982, 5.57148519798], "code_commune_insee": "13073"}, "geometry": {"type": "Point", "coordinates": [5.57148519798, 43.3844605982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0061531fc27145188b8e65964ca40997a6d751e9", "fields": {"nom_de_la_commune": "PLAN DE CUQUES", "libell_d_acheminement": "PLAN DE CUQUES", "code_postal": "13380", "coordonnees_gps": [43.3664532079, 5.46480861331], "code_commune_insee": "13075"}, "geometry": {"type": "Point", "coordinates": [5.46480861331, 43.3664532079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09cf171434e67e024e0aa6274bd0c0d257f4cb35", "fields": {"nom_de_la_commune": "LE PUY STE REPARADE", "libell_d_acheminement": "LE PUY STE REPARADE", "code_postal": "13610", "coordonnees_gps": [43.6568962818, 5.43309442069], "code_commune_insee": "13080"}, "geometry": {"type": "Point", "coordinates": [5.43309442069, 43.6568962818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9065225fffd673ca6bd0e1cf84c5a385943a34f2", "fields": {"nom_de_la_commune": "ST CANNAT", "libell_d_acheminement": "ST CANNAT", "code_postal": "13760", "coordonnees_gps": [43.6136500201, 5.30707823764], "code_commune_insee": "13091"}, "geometry": {"type": "Point", "coordinates": [5.30707823764, 43.6136500201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6ccf2189c9effcf9e2020ca7681df8cfb228f0", "fields": {"nom_de_la_commune": "ST MARC JAUMEGARDE", "libell_d_acheminement": "ST MARC JAUMEGARDE", "code_postal": "13100", "coordonnees_gps": [43.5353485115, 5.4345381961], "code_commune_insee": "13095"}, "geometry": {"type": "Point", "coordinates": [5.4345381961, 43.5353485115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15477a7ea0513e4dd9f7441d66f618a7463e1864", "fields": {"nom_de_la_commune": "ST REMY DE PROVENCE", "libell_d_acheminement": "ST REMY DE PROVENCE", "code_postal": "13210", "coordonnees_gps": [43.7834120884, 4.85311859996], "code_commune_insee": "13100"}, "geometry": {"type": "Point", "coordinates": [4.85311859996, 43.7834120884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0bf8523d96ca0f078ddd51d98ecc42caf61f37", "fields": {"code_postal": "13700", "code_commune_insee": "13102", "libell_d_acheminement": "ST VICTORET", "ligne_5": "PAS DES LANCIERS", "nom_de_la_commune": "ST VICTORET", "coordonnees_gps": [43.4167055832, 5.21911721754]}, "geometry": {"type": "Point", "coordinates": [5.21911721754, 43.4167055832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b4d1869df062bbd6df266bd2962ffa142dd4b7a", "fields": {"nom_de_la_commune": "SALON DE PROVENCE", "libell_d_acheminement": "SALON DE PROVENCE", "code_postal": "13300", "coordonnees_gps": [43.6464319995, 5.06800446267], "code_commune_insee": "13103"}, "geometry": {"type": "Point", "coordinates": [5.06800446267, 43.6464319995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "229ed1f1ed19887a4b609cc63e9675cbb2376c46", "fields": {"nom_de_la_commune": "VAUVENARGUES", "libell_d_acheminement": "VAUVENARGUES", "code_postal": "13126", "coordonnees_gps": [43.5589408856, 5.61247121631], "code_commune_insee": "13111"}, "geometry": {"type": "Point", "coordinates": [5.61247121631, 43.5589408856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "201988cbcf6edc0ecaf8dfeb3740694c743cc2a7", "fields": {"nom_de_la_commune": "VENELLES", "libell_d_acheminement": "VENELLES", "code_postal": "13770", "coordonnees_gps": [43.5931988527, 5.49081802421], "code_commune_insee": "13113"}, "geometry": {"type": "Point", "coordinates": [5.49081802421, 43.5931988527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa7c52604e40435e1edfdb2a7fa3e9316060509", "fields": {"code_postal": "13122", "code_commune_insee": "13114", "libell_d_acheminement": "VENTABREN", "ligne_5": "LE PIGEONNIER", "nom_de_la_commune": "VENTABREN", "coordonnees_gps": [43.5419817981, 5.30592844079]}, "geometry": {"type": "Point", "coordinates": [5.30592844079, 43.5419817981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2190fa1d3fda825dae0e327f350f78b71c0ed4e", "fields": {"nom_de_la_commune": "MARSEILLE 03", "libell_d_acheminement": "MARSEILLE", "code_postal": "13003", "coordonnees_gps": [43.3118420677, 5.37907684544], "code_commune_insee": "13203"}, "geometry": {"type": "Point", "coordinates": [5.37907684544, 43.3118420677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "651c3d546677d9870a37c8b176acdf883d42b640", "fields": {"nom_de_la_commune": "MARSEILLE 06", "libell_d_acheminement": "MARSEILLE", "code_postal": "13006", "coordonnees_gps": [43.2872106758, 5.38049906486], "code_commune_insee": "13206"}, "geometry": {"type": "Point", "coordinates": [5.38049906486, 43.2872106758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdd22e69b1e894363d9bb4d84fcf9685ac68c242", "fields": {"code_postal": "13008", "code_commune_insee": "13208", "libell_d_acheminement": "MARSEILLE", "ligne_5": "LES GOUDES", "nom_de_la_commune": "MARSEILLE 08", "coordonnees_gps": [43.2388428582, 5.37571442554]}, "geometry": {"type": "Point", "coordinates": [5.37571442554, 43.2388428582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d06a9f7fb047feca7892be52dd151d9df90be97", "fields": {"nom_de_la_commune": "MARSEILLE 09", "libell_d_acheminement": "MARSEILLE", "code_postal": "13009", "coordonnees_gps": [43.2344717573, 5.45254070973], "code_commune_insee": "13209"}, "geometry": {"type": "Point", "coordinates": [5.45254070973, 43.2344717573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ee7e2b921d7ccfbb5f426516ba17c21ccff8ed", "fields": {"code_postal": "13009", "code_commune_insee": "13209", "libell_d_acheminement": "MARSEILLE", "ligne_5": "VAUFREGE", "nom_de_la_commune": "MARSEILLE 09", "coordonnees_gps": [43.2344717573, 5.45254070973]}, "geometry": {"type": "Point", "coordinates": [5.45254070973, 43.2344717573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "088acf7a2d4122654109f485d5703dae1d4efa41", "fields": {"nom_de_la_commune": "MARSEILLE 11", "libell_d_acheminement": "MARSEILLE", "code_postal": "13011", "coordonnees_gps": [43.2885052354, 5.4838251453], "code_commune_insee": "13211"}, "geometry": {"type": "Point", "coordinates": [5.4838251453, 43.2885052354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d33599d7a873a4f63a8a5da3096f6b35c9ffba47", "fields": {"nom_de_la_commune": "ABLON", "libell_d_acheminement": "ABLON", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14001"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd828ed207a779b9ed20ba1feaed1df2f7ac634", "fields": {"code_postal": "14610", "code_commune_insee": "14014", "libell_d_acheminement": "COLOMBY ANGUERNY", "ligne_5": "COLOMBY SUR THAON", "nom_de_la_commune": "COLOMBY ANGUERNY", "coordonnees_gps": [49.2527836333, -0.426386244935]}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "197669e5a8f9aff6c5859a57e2daf7c104e6c53f", "fields": {"nom_de_la_commune": "ARGANCHY", "libell_d_acheminement": "ARGANCHY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14019"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b3c0b7b6f6913e922e92be043b4966e877a6fe", "fields": {"nom_de_la_commune": "AUBIGNY", "libell_d_acheminement": "AUBIGNY", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14025"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f9e9748a1945c5f8b29890e8a366f262b785f2", "fields": {"nom_de_la_commune": "AUDRIEU", "libell_d_acheminement": "AUDRIEU", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14026"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b55b34d5c3cf013b5210b65087ef0c508023c036", "fields": {"nom_de_la_commune": "AUNAY SUR ODON", "libell_d_acheminement": "AUNAY SUR ODON", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14027"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e1de217664dc37c3a87e29fc0c769f42abfdb9", "fields": {"code_postal": "14260", "code_commune_insee": "14037", "libell_d_acheminement": "MALHERBE SUR AJON", "ligne_5": "BANNEVILLE SUR AJON", "nom_de_la_commune": "MALHERBE SUR AJON", "coordonnees_gps": [49.0066968594, -0.682033937829]}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea36be7104a693a9038a1789e2f8bf3b1f27ca2", "fields": {"code_postal": "14260", "code_commune_insee": "14037", "libell_d_acheminement": "MALHERBE SUR AJON", "ligne_5": "ST AGNAN LE MALHERBE", "nom_de_la_commune": "MALHERBE SUR AJON", "coordonnees_gps": [49.0066968594, -0.682033937829]}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a99577715fefdda4eafbf31ce8c2ae6765ec8f6", "fields": {"nom_de_la_commune": "BARNEVILLE LA BERTRAN", "libell_d_acheminement": "BARNEVILLE LA BERTRAN", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14041"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23e739451bcd591234c62be9166a53556c243c21", "fields": {"nom_de_la_commune": "BARON SUR ODON", "libell_d_acheminement": "BARON SUR ODON", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14042"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25a3cce43e136ab82cde7a42dd449a700cbd1a13", "fields": {"nom_de_la_commune": "BAZENVILLE", "libell_d_acheminement": "BAZENVILLE", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14049"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cd8951066c33e80d665206e9ac9dfd7b7d231f4", "fields": {"code_postal": "14260", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "MONTAMY", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [49.0066968594, -0.682033937829]}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a9c03612c020969c3008349f443f1377896739d", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "CAMPEAUX", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f0dd41c6f7f43b457fb1cedf69e5f29aaf3d39", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "LE TOURNEUR", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf97238cc603521a7e134369367c07addc7b136e", "fields": {"nom_de_la_commune": "BERNIERES SUR MER", "libell_d_acheminement": "BERNIERES SUR MER", "code_postal": "14990", "coordonnees_gps": [49.3200140329, -0.417927428656], "code_commune_insee": "14066"}, "geometry": {"type": "Point", "coordinates": [-0.417927428656, 49.3200140329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d35e626a028b3be03caefd322d5dab57a201975", "fields": {"nom_de_la_commune": "BEUVILLERS", "libell_d_acheminement": "BEUVILLERS", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14069"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b870cf1eca0234fafeb8ec517251cef99a13312b", "fields": {"nom_de_la_commune": "BLAINVILLE SUR ORNE", "libell_d_acheminement": "BLAINVILLE SUR ORNE", "code_postal": "14550", "coordonnees_gps": [49.22830054, -0.304829518054], "code_commune_insee": "14076"}, "geometry": {"type": "Point", "coordinates": [-0.304829518054, 49.22830054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f8c959a6985ed316b84b2bb57faaded6603d3ed", "fields": {"nom_de_la_commune": "BONNEMAISON", "libell_d_acheminement": "BONNEMAISON", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14084"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe4bcd7e881ec115a29c906b7996a1b689d83ea3", "fields": {"nom_de_la_commune": "BONNEVILLE SUR TOUQUES", "libell_d_acheminement": "BONNEVILLE SUR TOUQUES", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14086"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "428120d1b01fc11dec9599f82042fdfa1a537bcf", "fields": {"nom_de_la_commune": "BONNOEIL", "libell_d_acheminement": "BONNOEIL", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14087"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c71493c6e2da84aa130a524405c827aafd1051a", "fields": {"nom_de_la_commune": "BOULON", "libell_d_acheminement": "BOULON", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14090"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2eb71785b1d62b4d197d0e29e2e72b8fcdda32", "fields": {"nom_de_la_commune": "AUJAN MOURNEDE", "libell_d_acheminement": "AUJAN MOURNEDE", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32015"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6705365d752fb3067635e11aa45a76cce0a062b9", "fields": {"nom_de_la_commune": "AURIMONT", "libell_d_acheminement": "AURIMONT", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32018"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddbd097ba35690c7ff6c8aeb53321a73cd1f7274", "fields": {"nom_de_la_commune": "AUX AUSSAT", "libell_d_acheminement": "AUX AUSSAT", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32020"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8269ff482716ffd017139bd07dc13baef58f5a8", "fields": {"nom_de_la_commune": "BARS", "libell_d_acheminement": "BARS", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32030"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69504d81792998bc5e6393d922993214a454a00", "fields": {"nom_de_la_commune": "BEAUPUY", "libell_d_acheminement": "BEAUPUY", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32038"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41699231cabe9794a06618d7b0e4af763b0aaf42", "fields": {"nom_de_la_commune": "BERDOUES", "libell_d_acheminement": "BERDOUES", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32045"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569c58f3f3ec30cfe387b452599c3edda7b88e6c", "fields": {"nom_de_la_commune": "BONAS", "libell_d_acheminement": "BONAS", "code_postal": "32410", "coordonnees_gps": [43.8145538611, 0.434864041407], "code_commune_insee": "32059"}, "geometry": {"type": "Point", "coordinates": [0.434864041407, 43.8145538611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fcdd4beb62a9ecd3529271109ab636dcefa6842", "fields": {"code_postal": "32350", "code_commune_insee": "32065", "libell_d_acheminement": "LE BROUILH MONBERT", "ligne_5": "MONBERT", "nom_de_la_commune": "LE BROUILH MONBERT", "coordonnees_gps": [43.6571309769, 0.430675404963]}, "geometry": {"type": "Point", "coordinates": [0.430675404963, 43.6571309769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "849aa3ae2cb31adbbd8ded9aae37a42ba236c7b6", "fields": {"nom_de_la_commune": "CASTELNAVET", "libell_d_acheminement": "CASTELNAVET", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32081"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c74820d93682dcc6d6ec782f751422ff058bb553", "fields": {"nom_de_la_commune": "CASTEX", "libell_d_acheminement": "CASTEX", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32086"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c32be2cf756a87c522d347d9433ccea341b9fd", "fields": {"nom_de_la_commune": "CASTEX D ARMAGNAC", "libell_d_acheminement": "CASTEX D ARMAGNAC", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32087"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779f0537ef02dfdbef4df23f4c1c8ff255e3b865", "fields": {"nom_de_la_commune": "CASTILLON SAVES", "libell_d_acheminement": "CASTILLON SAVES", "code_postal": "32490", "coordonnees_gps": [43.5909785115, 0.981247393287], "code_commune_insee": "32090"}, "geometry": {"type": "Point", "coordinates": [0.981247393287, 43.5909785115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed76f3dc98be8bf82199b94a4332ef916dae0c4a", "fields": {"nom_de_la_commune": "CASTIN", "libell_d_acheminement": "CASTIN", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32091"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da7ce5dc89072e59d09a7592989dc2b53f956f6f", "fields": {"nom_de_la_commune": "CAUPENNE D ARMAGNAC", "libell_d_acheminement": "CAUPENNE D ARMAGNAC", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32094"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc924fc51468fd4823b30509e78485c9eb44ac2", "fields": {"nom_de_la_commune": "CAZAUX VILLECOMTAL", "libell_d_acheminement": "CAZAUX VILLECOMTAL", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32099"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd978c7ded869bb803b901d11db0ca393a7a9220", "fields": {"nom_de_la_commune": "CERAN", "libell_d_acheminement": "CERAN", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32101"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934decacfbd74db1392580189e7d71735a65f58c", "fields": {"nom_de_la_commune": "CLERMONT SAVES", "libell_d_acheminement": "CLERMONT SAVES", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32105"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0739de771dc658be50b877b08c10944a0ff77bfc", "fields": {"nom_de_la_commune": "COURRENSAN", "libell_d_acheminement": "COURRENSAN", "code_postal": "32330", "coordonnees_gps": [43.8809220251, 0.246811473327], "code_commune_insee": "32110"}, "geometry": {"type": "Point", "coordinates": [0.246811473327, 43.8809220251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a172178554fedb75cc4949d29fd3bd1387e8ca60", "fields": {"nom_de_la_commune": "ESCLASSAN LABASTIDE", "libell_d_acheminement": "ESCLASSAN LABASTIDE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32122"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c0dae1cef1c37caccd2a07fed3048f5879836ef", "fields": {"nom_de_la_commune": "ESPAS", "libell_d_acheminement": "ESPAS", "code_postal": "32370", "coordonnees_gps": [43.8064207893, 0.0369995528597], "code_commune_insee": "32125"}, "geometry": {"type": "Point", "coordinates": [0.0369995528597, 43.8064207893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b91b7690a6d6acfc92be13d12ee527c72d967a8", "fields": {"nom_de_la_commune": "ESTAMPES", "libell_d_acheminement": "ESTAMPES", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32126"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9499967d17d3b78b513a55905c068423fd62d386", "fields": {"nom_de_la_commune": "GAUJAN", "libell_d_acheminement": "GAUJAN", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32141"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1279260f0d0e63b81c74c0298255b078a782e94", "fields": {"nom_de_la_commune": "GAVARRET SUR AULOUSTE", "libell_d_acheminement": "GAVARRET SUR AULOUSTE", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32142"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39dc867f89f40033ac9671421e74c7a2ef260f96", "fields": {"nom_de_la_commune": "GEE RIVIERE", "libell_d_acheminement": "GEE RIVIERE", "code_postal": "32720", "coordonnees_gps": [43.7019808503, -0.197015823545], "code_commune_insee": "32145"}, "geometry": {"type": "Point", "coordinates": [-0.197015823545, 43.7019808503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e748eea4620b7b58f75178cc3ce685fcabd6db86", "fields": {"nom_de_la_commune": "GIMBREDE", "libell_d_acheminement": "GIMBREDE", "code_postal": "32340", "coordonnees_gps": [44.0062231995, 0.758360885722], "code_commune_insee": "32146"}, "geometry": {"type": "Point", "coordinates": [0.758360885722, 44.0062231995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "318bc72e972380fd645853ebfad5b3a317dcc389", "fields": {"nom_de_la_commune": "GIMONT", "libell_d_acheminement": "GIMONT", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32147"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f485f9337241d5921d12746cc59f7b5c12cd9ccd", "fields": {"nom_de_la_commune": "GISCARO", "libell_d_acheminement": "GISCARO", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32148"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa9ef8da39af3fd440156c1d61a568cc98669d47", "fields": {"nom_de_la_commune": "HAGET", "libell_d_acheminement": "HAGET", "code_postal": "32730", "coordonnees_gps": [43.4054676887, 0.198171265768], "code_commune_insee": "32152"}, "geometry": {"type": "Point", "coordinates": [0.198171265768, 43.4054676887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eb84740a79c1be542b4b3f00eb3ed307494025a", "fields": {"nom_de_la_commune": "LE HOUGA", "libell_d_acheminement": "LE HOUGA", "code_postal": "32460", "coordonnees_gps": [43.7705722167, -0.178992315741], "code_commune_insee": "32155"}, "geometry": {"type": "Point", "coordinates": [-0.178992315741, 43.7705722167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91cf9d5a359f22a9b859768ac48e6d8e8160e198", "fields": {"nom_de_la_commune": "L ISLE DE NOE", "libell_d_acheminement": "L ISLE DE NOE", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32159"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b545de44302c77f7d763c3650345012915ea9afa", "fields": {"nom_de_la_commune": "L ISLE JOURDAIN", "libell_d_acheminement": "L ISLE JOURDAIN", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32160"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3730898959eac85164fbef5ca7376b029c5d902c", "fields": {"nom_de_la_commune": "JU BELLOC", "libell_d_acheminement": "JU BELLOC", "code_postal": "32160", "coordonnees_gps": [43.604151697, 0.0669444128957], "code_commune_insee": "32163"}, "geometry": {"type": "Point", "coordinates": [0.0669444128957, 43.604151697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a83bc8a0da3b60099031b3842e98bb557b87e5f", "fields": {"nom_de_la_commune": "LABEJAN", "libell_d_acheminement": "LABEJAN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32172"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c373f15fc0f5d4101a49855c8c524e071ef5434", "fields": {"nom_de_la_commune": "LABRIHE", "libell_d_acheminement": "LABRIHE", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32173"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55de51a465810d96c71022506096c4cdcf180cfe", "fields": {"nom_de_la_commune": "LADEVEZE RIVIERE", "libell_d_acheminement": "LADEVEZE RIVIERE", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32174"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edc2244e476deaa6736884d70347d25349714f4b", "fields": {"nom_de_la_commune": "LADEVEZE VILLE", "libell_d_acheminement": "LADEVEZE VILLE", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32175"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "794118a381847c47245b3d1088b198707fab73d9", "fields": {"nom_de_la_commune": "LAGARDERE", "libell_d_acheminement": "LAGARDERE", "code_postal": "32310", "coordonnees_gps": [43.8622031868, 0.391152389409], "code_commune_insee": "32178"}, "geometry": {"type": "Point", "coordinates": [0.391152389409, 43.8622031868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42cd212c9f0c4d547d5776cad4b93e8d36c7d721", "fields": {"nom_de_la_commune": "LALANNE ARQUE", "libell_d_acheminement": "LALANNE ARQUE", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32185"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2493d80d7078149fed0b704edd993d51cfb2a900", "fields": {"nom_de_la_commune": "LAMOTHE GOAS", "libell_d_acheminement": "LAMOTHE GOAS", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32188"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d15bc7bfe60e2d19a34b8b5201b918a3be9bea6f", "fields": {"nom_de_la_commune": "LANNE SOUBIRAN", "libell_d_acheminement": "LANNE SOUBIRAN", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32191"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23c571e27d67dae0d6b48b563b296c3d0454afa5", "fields": {"nom_de_la_commune": "LAUJUZAN", "libell_d_acheminement": "LAUJUZAN", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32202"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49d52bc369f6ad0e89c0792042d24e468c69e48a", "fields": {"nom_de_la_commune": "LEBOULIN", "libell_d_acheminement": "LEBOULIN", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32207"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "613fc8e7056c2736f2e054a70b4f313176ea8db6", "fields": {"nom_de_la_commune": "LECTOURE", "libell_d_acheminement": "LECTOURE", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32208"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03ada5f7c01d63bb46378e067ceca96faa7cd548", "fields": {"nom_de_la_commune": "LIAS", "libell_d_acheminement": "LIAS", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32210"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cad8d1704cf8afef9d6d0854207bc6c0433d997", "fields": {"nom_de_la_commune": "LIAS D ARMAGNAC", "libell_d_acheminement": "LIAS D ARMAGNAC", "code_postal": "32240", "coordonnees_gps": [43.8659312488, -0.143911869454], "code_commune_insee": "32211"}, "geometry": {"type": "Point", "coordinates": [-0.143911869454, 43.8659312488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60e25f7810abe353663021b09870882d4f078a28", "fields": {"nom_de_la_commune": "LOUBERSAN", "libell_d_acheminement": "LOUBERSAN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32215"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a23efea948858fdf8ab484a2ffa120859e6186", "fields": {"nom_de_la_commune": "LOURTIES MONBRUN", "libell_d_acheminement": "LOURTIES MONBRUN", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32216"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4f7c51e021ff14465244d12282c61c5aa664b6f", "fields": {"nom_de_la_commune": "LOUSSOUS DEBAT", "libell_d_acheminement": "LOUSSOUS DEBAT", "code_postal": "32290", "coordonnees_gps": [43.6944718519, 0.110902132358], "code_commune_insee": "32218"}, "geometry": {"type": "Point", "coordinates": [0.110902132358, 43.6944718519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a2f1b60d4a81f7260033e57d1bfe12064fe98cb", "fields": {"nom_de_la_commune": "MARSEILLAN", "libell_d_acheminement": "MARSEILLAN", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32238"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04bd3ef7770c67e946d279a44e760c50fb87a02", "fields": {"nom_de_la_commune": "MARSOLAN", "libell_d_acheminement": "MARSOLAN", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32239"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f674ec24ee1b48e0414a88fe4b25862194b8bc6", "fields": {"nom_de_la_commune": "MAS D AUVIGNON", "libell_d_acheminement": "MAS D AUVIGNON", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32241"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1d61f6711dfcb37bf96f5dfb72240cbf000258", "fields": {"nom_de_la_commune": "MAUMUSSON LAGUIAN", "libell_d_acheminement": "MAUMUSSON LAGUIAN", "code_postal": "32400", "coordonnees_gps": [43.6464235106, -0.124926948172], "code_commune_insee": "32245"}, "geometry": {"type": "Point", "coordinates": [-0.124926948172, 43.6464235106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17bc570e920c03158bd57c0467f8983b3d561ef9", "fields": {"nom_de_la_commune": "MIRAMONT D ASTARAC", "libell_d_acheminement": "MIRAMONT D ASTARAC", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32254"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684e44894097ceca47489ad70c215d7925e9d1f4", "fields": {"nom_de_la_commune": "MONBRUN", "libell_d_acheminement": "MONBRUN", "code_postal": "32600", "coordonnees_gps": [43.6004537198, 1.07815040991], "code_commune_insee": "32262"}, "geometry": {"type": "Point", "coordinates": [1.07815040991, 43.6004537198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede022586c239501a1b8b720ee121c943cf3974b", "fields": {"nom_de_la_commune": "MONCLAR SUR LOSSE", "libell_d_acheminement": "MONCLAR SUR LOSSE", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32265"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a4b74a7be94ed25d12921089dc995148515bf4f", "fields": {"nom_de_la_commune": "MONGAUSY", "libell_d_acheminement": "MONGAUSY", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32270"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfbe3a81fb9a9585b6069ce0f0eca63399b77991", "fields": {"nom_de_la_commune": "MONLAUR BERNET", "libell_d_acheminement": "MONLAUR BERNET", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32272"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "495101b017ef62bfdd7497dfad14426eee19419a", "fields": {"nom_de_la_commune": "MONTEGUT", "libell_d_acheminement": "MONTEGUT", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32282"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ef7c53a1a8be21fcd422254b7692c4b9e9ab51", "fields": {"nom_de_la_commune": "MONTIRON", "libell_d_acheminement": "MONTIRON", "code_postal": "32200", "coordonnees_gps": [43.625184822, 0.882238188374], "code_commune_insee": "32288"}, "geometry": {"type": "Point", "coordinates": [0.882238188374, 43.625184822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f3c62610697443ebb6d8c4e98bf93996c7abd69", "fields": {"nom_de_la_commune": "MOUCHES", "libell_d_acheminement": "MOUCHES", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32293"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5d6328b476a756292be24c39d8aa1a9d9027c9", "fields": {"nom_de_la_commune": "ORBESSAN", "libell_d_acheminement": "ORBESSAN", "code_postal": "32260", "coordonnees_gps": [43.4999610882, 0.608034644011], "code_commune_insee": "32300"}, "geometry": {"type": "Point", "coordinates": [0.608034644011, 43.4999610882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78cb71533e4f8ec5e32e2ea7137508e662db887d", "fields": {"nom_de_la_commune": "PALLANNE", "libell_d_acheminement": "PALLANNE", "code_postal": "32230", "coordonnees_gps": [43.5313710176, 0.169580700883], "code_commune_insee": "32303"}, "geometry": {"type": "Point", "coordinates": [0.169580700883, 43.5313710176]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e45331bb04359c50e43da2400ea07ca10f93e102", "fields": {"nom_de_la_commune": "PESSAN", "libell_d_acheminement": "PESSAN", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32312"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c624bfff99b2b540cbc19c9dd50fe3331f00dcb8", "fields": {"nom_de_la_commune": "PIS", "libell_d_acheminement": "PIS", "code_postal": "32500", "coordonnees_gps": [43.8483936738, 0.640288615778], "code_commune_insee": "32318"}, "geometry": {"type": "Point", "coordinates": [0.640288615778, 43.8483936738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d27d7bbbb952f2c9907440bc36fc7d87ffa6062f", "fields": {"nom_de_la_commune": "PUYSEGUR", "libell_d_acheminement": "PUYSEGUR", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32337"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f66d057fb76991ae97337cb14ed35a33590a6f", "fields": {"nom_de_la_commune": "ROQUEFORT", "libell_d_acheminement": "ROQUEFORT", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32347"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9d038d6328d8ff2a7d68d6b5a4d24d9c92b9c9", "fields": {"nom_de_la_commune": "ROQUELAURE", "libell_d_acheminement": "ROQUELAURE", "code_postal": "32810", "coordonnees_gps": [43.7007990271, 0.621813744966], "code_commune_insee": "32348"}, "geometry": {"type": "Point", "coordinates": [0.621813744966, 43.7007990271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72410c6aea5196f9fe4c475c776bcc02dcdb5d8", "fields": {"nom_de_la_commune": "ST AVIT FRANDAT", "libell_d_acheminement": "ST AVIT FRANDAT", "code_postal": "32700", "coordonnees_gps": [43.9633958924, 0.606892628428], "code_commune_insee": "32364"}, "geometry": {"type": "Point", "coordinates": [0.606892628428, 43.9633958924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b68469b3f629f2391e1543cd49c668eeb39d934d", "fields": {"nom_de_la_commune": "ST BRES", "libell_d_acheminement": "ST BRES", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32366"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "991f5569e418fb152b9fd0b49f965213bd868274", "fields": {"nom_de_la_commune": "STE CHRISTIE", "libell_d_acheminement": "STE CHRISTIE", "code_postal": "32390", "coordonnees_gps": [43.7787263431, 0.621815775371], "code_commune_insee": "32368"}, "geometry": {"type": "Point", "coordinates": [0.621815775371, 43.7787263431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3f9c786143f84cfab5590216145ab6ea7b5b55", "fields": {"nom_de_la_commune": "ST CLAR", "libell_d_acheminement": "ST CLAR", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32370"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "830ba3b98e4f8d253224c4286154425f02904327", "fields": {"nom_de_la_commune": "ST CRICQ", "libell_d_acheminement": "ST CRICQ", "code_postal": "32430", "coordonnees_gps": [43.7068029773, 0.967833869525], "code_commune_insee": "32372"}, "geometry": {"type": "Point", "coordinates": [0.967833869525, 43.7068029773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8585d1cca5b647881f8da6bd547bb7ab3602d205", "fields": {"nom_de_la_commune": "STE DODE", "libell_d_acheminement": "STE DODE", "code_postal": "32170", "coordonnees_gps": [43.4165433262, 0.322064626394], "code_commune_insee": "32373"}, "geometry": {"type": "Point", "coordinates": [0.322064626394, 43.4165433262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cdf43b38e05cb2a0630c4d4c0a694d7d8eafadd", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32376"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "becb5dc258259a103638c51728aba6fadd9dd375", "fields": {"nom_de_la_commune": "ST JEAN LE COMTAL", "libell_d_acheminement": "ST JEAN LE COMTAL", "code_postal": "32550", "coordonnees_gps": [43.5936444553, 0.603407404999], "code_commune_insee": "32381"}, "geometry": {"type": "Point", "coordinates": [0.603407404999, 43.5936444553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af0098c8ebda07683b2b6de1a861a4a1e4afa136", "fields": {"nom_de_la_commune": "ST JEAN POUTGE", "libell_d_acheminement": "ST JEAN POUTGE", "code_postal": "32190", "coordonnees_gps": [43.7476319367, 0.263185282539], "code_commune_insee": "32382"}, "geometry": {"type": "Point", "coordinates": [0.263185282539, 43.7476319367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d09676facfab37ca84e809aea16675321e0164", "fields": {"nom_de_la_commune": "ST LARY", "libell_d_acheminement": "ST LARY", "code_postal": "32360", "coordonnees_gps": [43.7493591162, 0.491121152614], "code_commune_insee": "32384"}, "geometry": {"type": "Point", "coordinates": [0.491121152614, 43.7493591162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32705ec1ccdbfe20aac23990423a4bf61c74cf4b", "fields": {"nom_de_la_commune": "ST LEONARD", "libell_d_acheminement": "ST LEONARD", "code_postal": "32380", "coordonnees_gps": [43.8771128365, 0.804829887513], "code_commune_insee": "32385"}, "geometry": {"type": "Point", "coordinates": [0.804829887513, 43.8771128365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825712c574527721e688dcc35d90fbbf3dee2015", "fields": {"nom_de_la_commune": "ST LIZIER DU PLANTE", "libell_d_acheminement": "ST LIZIER DU PLANTE", "code_postal": "32220", "coordonnees_gps": [43.4455783298, 0.907275068149], "code_commune_insee": "32386"}, "geometry": {"type": "Point", "coordinates": [0.907275068149, 43.4455783298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f994f33a94b669e09423aa97538fad10d5fed39", "fields": {"nom_de_la_commune": "ST MARTIN", "libell_d_acheminement": "ST MARTIN", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32389"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58866bd5d4f7b665dba935d8498bb88c9b537a56", "fields": {"nom_de_la_commune": "ST MARTIN DE GOYNE", "libell_d_acheminement": "ST MARTIN DE GOYNE", "code_postal": "32480", "coordonnees_gps": [44.0093060022, 0.505092942156], "code_commune_insee": "32391"}, "geometry": {"type": "Point", "coordinates": [0.505092942156, 44.0093060022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7cb7ac837cc30ac6575e19a1204df4d2c1b53ca", "fields": {"nom_de_la_commune": "SALLES D ARMAGNAC", "libell_d_acheminement": "SALLES D ARMAGNAC", "code_postal": "32370", "coordonnees_gps": [43.8064207893, 0.0369995528597], "code_commune_insee": "32408"}, "geometry": {"type": "Point", "coordinates": [0.0369995528597, 43.8064207893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad6b0008bbd8ecb8ef8e535a7f4fa3bcc179827", "fields": {"nom_de_la_commune": "SAMATAN", "libell_d_acheminement": "SAMATAN", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32410"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3829c7d5961600eadc1590e021c82ea49516c310", "fields": {"nom_de_la_commune": "SAUVIAC", "libell_d_acheminement": "SAUVIAC", "code_postal": "32300", "coordonnees_gps": [43.478819274, 0.43825644061], "code_commune_insee": "32419"}, "geometry": {"type": "Point", "coordinates": [0.43825644061, 43.478819274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4829ce9a19e8233d7400eba20966401eddb9ff63", "fields": {"nom_de_la_commune": "SAVIGNAC MONA", "libell_d_acheminement": "SAVIGNAC MONA", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32421"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b293d87bdafdf547457d46bca361db8582e6e1", "fields": {"nom_de_la_commune": "SEMEZIES CACHAN", "libell_d_acheminement": "SEMEZIES CACHAN", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32428"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be654d8ab888a05937457b5795fa04ff25c0e04", "fields": {"nom_de_la_commune": "SEYSSES SAVES", "libell_d_acheminement": "SEYSSES SAVES", "code_postal": "32130", "coordonnees_gps": [43.5137089737, 0.947684946526], "code_commune_insee": "32432"}, "geometry": {"type": "Point", "coordinates": [0.947684946526, 43.5137089737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7e7500687652e0059051e7ce1f2585c1d337a51", "fields": {"nom_de_la_commune": "SIMORRE", "libell_d_acheminement": "SIMORRE", "code_postal": "32420", "coordonnees_gps": [43.4319934865, 0.737423131109], "code_commune_insee": "32433"}, "geometry": {"type": "Point", "coordinates": [0.737423131109, 43.4319934865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "668c98d3e2ab100d3719bf6a339acd7075813afa", "fields": {"nom_de_la_commune": "SORBETS", "libell_d_acheminement": "SORBETS", "code_postal": "32110", "coordonnees_gps": [43.7607594505, -0.0566322303434], "code_commune_insee": "32437"}, "geometry": {"type": "Point", "coordinates": [-0.0566322303434, 43.7607594505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d24872c097e7e12e3451137ea2bf03c2917e59", "fields": {"nom_de_la_commune": "TAYBOSC", "libell_d_acheminement": "TAYBOSC", "code_postal": "32120", "coordonnees_gps": [43.7655938079, 0.834645991651], "code_commune_insee": "32441"}, "geometry": {"type": "Point", "coordinates": [0.834645991651, 43.7655938079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f83e1a1d833d84efe0b7e272d8358880e4cc6b6e", "fields": {"nom_de_la_commune": "TIRENT PONTEJAC", "libell_d_acheminement": "TIRENT PONTEJAC", "code_postal": "32450", "coordonnees_gps": [43.5445721394, 0.738352872114], "code_commune_insee": "32447"}, "geometry": {"type": "Point", "coordinates": [0.738352872114, 43.5445721394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "809c2566ba7bd9718b0e46e41efb613badba2c5c", "fields": {"nom_de_la_commune": "AUSSOS", "libell_d_acheminement": "AUSSOS", "code_postal": "32140", "coordonnees_gps": [43.3835203513, 0.590722210107], "code_commune_insee": "32468"}, "geometry": {"type": "Point", "coordinates": [0.590722210107, 43.3835203513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9cdfa0fc13b7d799ab026d8be29725ed2f3055", "fields": {"nom_de_la_commune": "ARBANATS", "libell_d_acheminement": "ARBANATS", "code_postal": "33640", "coordonnees_gps": [44.6903703564, -0.443613375594], "code_commune_insee": "33007"}, "geometry": {"type": "Point", "coordinates": [-0.443613375594, 44.6903703564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e49310d49f8af327e5f38dd41526f63af8d8860c", "fields": {"nom_de_la_commune": "ASQUES", "libell_d_acheminement": "ASQUES", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33016"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4de1a753300859494a62e95366b6eabc37487496", "fields": {"nom_de_la_commune": "AVENSAN", "libell_d_acheminement": "AVENSAN", "code_postal": "33480", "coordonnees_gps": [45.0106483018, -0.859128963466], "code_commune_insee": "33022"}, "geometry": {"type": "Point", "coordinates": [-0.859128963466, 45.0106483018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4931ab424ef83b5e3a422344a0c947c5ef489abf", "fields": {"nom_de_la_commune": "LE BARP", "libell_d_acheminement": "LE BARP", "code_postal": "33114", "coordonnees_gps": [44.6266406222, -0.746925963031], "code_commune_insee": "33029"}, "geometry": {"type": "Point", "coordinates": [-0.746925963031, 44.6266406222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65a2d327053b2056966e2b0bcbd8ccdb56d14442", "fields": {"nom_de_la_commune": "BAURECH", "libell_d_acheminement": "BAURECH", "code_postal": "33880", "coordonnees_gps": [44.7419112231, -0.437846181859], "code_commune_insee": "33033"}, "geometry": {"type": "Point", "coordinates": [-0.437846181859, 44.7419112231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb5ce3ca190bf1cb5c19a2dcb3e4e8e5506f2bda", "fields": {"nom_de_la_commune": "BELVES DE CASTILLON", "libell_d_acheminement": "BELVES DE CASTILLON", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33045"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4992a1465855c83e1b39155a99692a28fab0e890", "fields": {"nom_de_la_commune": "BOMMES", "libell_d_acheminement": "BOMMES", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33060"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d4fa87bc995f78731aba92c6aa6f6586c2511a6", "fields": {"nom_de_la_commune": "BORDEAUX", "libell_d_acheminement": "BORDEAUX", "code_postal": "33100", "coordonnees_gps": [44.8579384389, -0.573595011059], "code_commune_insee": "33063"}, "geometry": {"type": "Point", "coordinates": [-0.573595011059, 44.8579384389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfe54d7b3b4f392427d7a905490824fb53f3ed0e", "fields": {"nom_de_la_commune": "MAREUIL SUR CHER", "libell_d_acheminement": "MAREUIL SUR CHER", "code_postal": "41110", "coordonnees_gps": [47.2568714, 1.34079255884], "code_commune_insee": "41126"}, "geometry": {"type": "Point", "coordinates": [1.34079255884, 47.2568714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee781244c9f9504cc1129b18a780993c8f4b0ffd", "fields": {"nom_de_la_commune": "MAZANGE", "libell_d_acheminement": "MAZANGE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41131"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ada944ea0e9dc185641d6c9fafee5357bed779d", "fields": {"nom_de_la_commune": "MER", "libell_d_acheminement": "MER", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41136"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2a10a05b83c02f8717e68214e3bb67995c4d92", "fields": {"code_postal": "41190", "code_commune_insee": "41142", "libell_d_acheminement": "VALENCISSE", "ligne_5": "MOLINEUF", "nom_de_la_commune": "VALENCISSE", "coordonnees_gps": [47.6158784323, 1.13032503262]}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c22c38c3044434fe8d127834b1d019f5e10290eb", "fields": {"nom_de_la_commune": "MONTHOU SUR BIEVRE", "libell_d_acheminement": "MONTHOU SUR BIEVRE", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41145"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c951be6349dcd2de9fd121faf4632c2dc1400d6", "fields": {"nom_de_la_commune": "LES MONTILS", "libell_d_acheminement": "LES MONTILS", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41147"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a32a858badf4b83abe268d5560e4fe060261ab3", "fields": {"nom_de_la_commune": "MONTOIRE SUR LE LOIR", "libell_d_acheminement": "MONTOIRE SUR LE LOIR", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41149"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb931dad0e9bdd36ca5f6d2a992d75bd65f23633", "fields": {"nom_de_la_commune": "MOREE", "libell_d_acheminement": "MOREE", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41154"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c69eeae367c40ccc4bfdc1404f8b47ae7c24923", "fields": {"nom_de_la_commune": "NAVEIL", "libell_d_acheminement": "NAVEIL", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41158"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8239d8f3119136acd962ae6a407af6b78a14d3ac", "fields": {"nom_de_la_commune": "NEUNG SUR BEUVRON", "libell_d_acheminement": "NEUNG SUR BEUVRON", "code_postal": "41210", "coordonnees_gps": [47.5196740684, 1.85287131674], "code_commune_insee": "41159"}, "geometry": {"type": "Point", "coordinates": [1.85287131674, 47.5196740684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ec13c240ca40291dc7be9332eb11f8dbf0ce6bd", "fields": {"nom_de_la_commune": "NEUVY", "libell_d_acheminement": "NEUVY", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41160"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fff2bc0a004dead737427fb6835a9c8da7de103c", "fields": {"nom_de_la_commune": "ORCAY", "libell_d_acheminement": "ORCAY", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41168"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1088f395ea23d84c0c262ceaaa1ae0616d1e4615", "fields": {"code_postal": "41160", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "LA COLOMBE", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.9130390568, 1.2078402544]}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297dcca42e7a774ce101619fd6c0226fa2549496", "fields": {"nom_de_la_commune": "PIERREFITTE SUR SAULDRE", "libell_d_acheminement": "PIERREFITTE SUR SAULDRE", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41176"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28fbadd00c28067d0e80282e98843e1bc7ccf32", "fields": {"nom_de_la_commune": "PONTLEVOY", "libell_d_acheminement": "PONTLEVOY", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41180"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efbe747d0f7f5642fcca96ae72dc1c9bcfbac2f0", "fields": {"nom_de_la_commune": "PRUNIERS EN SOLOGNE", "libell_d_acheminement": "PRUNIERS EN SOLOGNE", "code_postal": "41200", "coordonnees_gps": [47.3811514911, 1.76608679793], "code_commune_insee": "41185"}, "geometry": {"type": "Point", "coordinates": [1.76608679793, 47.3811514911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af1a9dca936d46a09b8e00e0743b7bcb095b8f78", "fields": {"nom_de_la_commune": "LES ROCHES L EVEQUE", "libell_d_acheminement": "LES ROCHES L EVEQUE", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41192"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dde38eb089869c2e550d304cf0eed727ce2637c4", "fields": {"nom_de_la_commune": "ROUGEOU", "libell_d_acheminement": "ROUGEOU", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41195"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd8bcb351f08cb4f275fd6a01889d6397dc8199f", "fields": {"nom_de_la_commune": "ST AGIL", "libell_d_acheminement": "ST AGIL", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41197"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a90a44abb208aaf2151da5c70028fc4b123222", "fields": {"nom_de_la_commune": "ST AIGNAN", "libell_d_acheminement": "ST AIGNAN", "code_postal": "41110", "coordonnees_gps": [47.2568714, 1.34079255884], "code_commune_insee": "41198"}, "geometry": {"type": "Point", "coordinates": [1.34079255884, 47.2568714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "571be3745613b9b4ce12c5977ea3779fa7835320", "fields": {"nom_de_la_commune": "ST ARNOULT", "libell_d_acheminement": "ST ARNOULT", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41201"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e578421e9173ea316343e089f9dd650de62c6a92", "fields": {"nom_de_la_commune": "ST BOHAIRE", "libell_d_acheminement": "ST BOHAIRE", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41203"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840fa58a65b9c5618b141cfb7825fdbdb1ca03fb", "fields": {"nom_de_la_commune": "ST FIRMIN DES PRES", "libell_d_acheminement": "ST FIRMIN DES PRES", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41209"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dbe7c2dc788d6935ad07278fb3b0b067ac9cc9a", "fields": {"nom_de_la_commune": "ST GEORGES SUR CHER", "libell_d_acheminement": "ST GEORGES SUR CHER", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41211"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2a0df8cda6b99a146a85d2b60daac5c53a0c2bb", "fields": {"nom_de_la_commune": "ST HILAIRE LA GRAVELLE", "libell_d_acheminement": "ST HILAIRE LA GRAVELLE", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41214"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfbeb611bb2d7d04de5d88999e0b0fe17ecb05af", "fields": {"nom_de_la_commune": "ST JEAN FROIDMENTEL", "libell_d_acheminement": "ST JEAN FROIDMENTEL", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41216"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d099ff1e182d784cc7b562402e7509fe939498", "fields": {"nom_de_la_commune": "ST JULIEN DE CHEDON", "libell_d_acheminement": "ST JULIEN DE CHEDON", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41217"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5e74619d52665356e0c4a2dc01fbaa322b6baa4", "fields": {"nom_de_la_commune": "ST LAURENT DES BOIS", "libell_d_acheminement": "ST LAURENT DES BOIS", "code_postal": "41240", "coordonnees_gps": [47.883516552, 1.48678396082], "code_commune_insee": "41219"}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cf088cd4c4595b698eaeed52605eb97953c395c", "fields": {"nom_de_la_commune": "ST LAURENT NOUAN", "libell_d_acheminement": "ST LAURENT NOUAN", "code_postal": "41220", "coordonnees_gps": [47.6522187818, 1.66627730575], "code_commune_insee": "41220"}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0935db6a41c31dec77e7fe6da6646b7b99c345", "fields": {"nom_de_la_commune": "ST LEONARD EN BEAUCE", "libell_d_acheminement": "ST LEONARD EN BEAUCE", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41221"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f136f94add50ed2f080ac412c6cdf95826f53b3a", "fields": {"nom_de_la_commune": "ST SULPICE DE POMMERAY", "libell_d_acheminement": "ST SULPICE DE POMMERAY", "code_postal": "41000", "coordonnees_gps": [47.612940364, 1.32071876619], "code_commune_insee": "41230"}, "geometry": {"type": "Point", "coordinates": [1.32071876619, 47.612940364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ec0cf5ce60d7be692366f2edecdf0647fc50ea", "fields": {"nom_de_la_commune": "SANTENAY", "libell_d_acheminement": "SANTENAY", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41234"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8977ad4c3e4df6a0efdd670769d8f2ff07f91fab", "fields": {"nom_de_la_commune": "SAVIGNY SUR BRAYE", "libell_d_acheminement": "SAVIGNY SUR BRAYE", "code_postal": "41360", "coordonnees_gps": [47.8537508655, 0.866594114079], "code_commune_insee": "41238"}, "geometry": {"type": "Point", "coordinates": [0.866594114079, 47.8537508655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5bf9293d4f90ef461ea32755440e5906e8a9077", "fields": {"nom_de_la_commune": "SERIS", "libell_d_acheminement": "SERIS", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41245"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96ae9c576f852e6f548611a4fca0cf35134394bb", "fields": {"nom_de_la_commune": "SUEVRES", "libell_d_acheminement": "SUEVRES", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41252"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdda890b9fb78d4dee9cf9313d435d6ca5e25f4b", "fields": {"nom_de_la_commune": "TALCY", "libell_d_acheminement": "TALCY", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41253"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715c142dd59582605f228831a8faa5ad32f3c0f7", "fields": {"nom_de_la_commune": "TERNAY", "libell_d_acheminement": "TERNAY", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41255"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b99a1cfb9f8720e6f23baa9eeae8add41296e579", "fields": {"nom_de_la_commune": "THESEE", "libell_d_acheminement": "THESEE", "code_postal": "41140", "coordonnees_gps": [47.3123365965, 1.39525288942], "code_commune_insee": "41258"}, "geometry": {"type": "Point", "coordinates": [1.39525288942, 47.3123365965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aaa12fd7a6ca94700102e6275c25c1ab4bf40ef", "fields": {"nom_de_la_commune": "TOURAILLES", "libell_d_acheminement": "TOURAILLES", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41261"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa6fb099c4714d3621ccace2171dfc63f95f69a", "fields": {"nom_de_la_commune": "TREHET", "libell_d_acheminement": "TREHET", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41263"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3121c9fb7b3f20e5768c7c0e0b3acb166e1582a3", "fields": {"nom_de_la_commune": "VEUVES", "libell_d_acheminement": "VEUVES", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41272"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ae8b63b267c75b28ad9784390038f7dec30c1b4", "fields": {"code_postal": "41290", "code_commune_insee": "41273", "libell_d_acheminement": "VIEVY LE RAYE", "ligne_5": "ECOMAN", "nom_de_la_commune": "VIEVY LE RAYE", "coordonnees_gps": [47.8184890364, 1.28159581607]}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "468732d2a583090a4f79c04578fa78b5f4d12f3d", "fields": {"nom_de_la_commune": "VILLEXANTON", "libell_d_acheminement": "VILLEXANTON", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41292"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42aa914becbf740cdab50b19b244add4071b2102", "fields": {"nom_de_la_commune": "VILLIERSFAUX", "libell_d_acheminement": "VILLIERSFAUX", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41293"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55ea1147eac223fd80801c4013c5aa91106737ec", "fields": {"nom_de_la_commune": "AMBIERLE", "libell_d_acheminement": "AMBIERLE", "code_postal": "42820", "coordonnees_gps": [46.1062687547, 3.89170763654], "code_commune_insee": "42003"}, "geometry": {"type": "Point", "coordinates": [3.89170763654, 46.1062687547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "963f5eb7092b9b7fa1658db2b679b8bfbb18151d", "fields": {"nom_de_la_commune": "BELMONT DE LA LOIRE", "libell_d_acheminement": "BELMONT DE LA LOIRE", "code_postal": "42670", "coordonnees_gps": [46.1669318835, 4.36381176292], "code_commune_insee": "42015"}, "geometry": {"type": "Point", "coordinates": [4.36381176292, 46.1669318835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ef00f1ca0a5693ef80bf17085e473bbd47d0b7b", "fields": {"nom_de_la_commune": "LE BESSAT", "libell_d_acheminement": "LE BESSAT", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42017"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1eab8d970a24607b15cccad3638080af89475f", "fields": {"nom_de_la_commune": "BUSSY ALBIEUX", "libell_d_acheminement": "BUSSY ALBIEUX", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42030"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f167758fe5945e52a1b15168091805407f24d10", "fields": {"nom_de_la_commune": "CALOIRE", "libell_d_acheminement": "CALOIRE", "code_postal": "42240", "coordonnees_gps": [45.4075302894, 4.20833828623], "code_commune_insee": "42031"}, "geometry": {"type": "Point", "coordinates": [4.20833828623, 45.4075302894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c1df84c2fc7c234eff13b47940718e60842991", "fields": {"nom_de_la_commune": "CELLIEU", "libell_d_acheminement": "CELLIEU", "code_postal": "42320", "coordonnees_gps": [45.5245095873, 4.5130578574], "code_commune_insee": "42032"}, "geometry": {"type": "Point", "coordinates": [4.5130578574, 45.5245095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24c3d02d752fa3f8c8130a001a2d6518aa7f72f8", "fields": {"nom_de_la_commune": "CERVIERES", "libell_d_acheminement": "CERVIERES", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42034"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f79ec5a14ecc225ae294814fdb6b27f49d8e5574", "fields": {"nom_de_la_commune": "CHALAIN LE COMTAL", "libell_d_acheminement": "CHALAIN LE COMTAL", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42038"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9ff93e90faea94a73b3341843fd3f721227e880", "fields": {"code_postal": "42920", "code_commune_insee": "42039", "libell_d_acheminement": "CHALMAZEL JEANSAGNIERE", "ligne_5": "JEANSAGNIERE", "nom_de_la_commune": "CHALMAZEL JEANSAGNIERE", "coordonnees_gps": [45.6983422849, 3.82487008798]}, "geometry": {"type": "Point", "coordinates": [3.82487008798, 45.6983422849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f68c186d62fdef228fe3df863b03050cde8c2b5", "fields": {"nom_de_la_commune": "CHAMBLES", "libell_d_acheminement": "CHAMBLES", "code_postal": "42170", "coordonnees_gps": [45.4781366129, 4.24298529227], "code_commune_insee": "42042"}, "geometry": {"type": "Point", "coordinates": [4.24298529227, 45.4781366129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca1c754129285f7e89089396820e0f30eb22a69", "fields": {"nom_de_la_commune": "LE CHAMBON FEUGEROLLES", "libell_d_acheminement": "LE CHAMBON FEUGEROLLES", "code_postal": "42500", "coordonnees_gps": [45.3890773304, 4.33192128841], "code_commune_insee": "42044"}, "geometry": {"type": "Point", "coordinates": [4.33192128841, 45.3890773304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e853f2b65162f2664ce7434caecf69af6d4f237d", "fields": {"nom_de_la_commune": "LA CHAMBONIE", "libell_d_acheminement": "LA CHAMBONIE", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42045"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2540ff25fc5bc5881fe60adb424591de9f5b4fe", "fields": {"nom_de_la_commune": "CHARLIEU", "libell_d_acheminement": "CHARLIEU", "code_postal": "42190", "coordonnees_gps": [46.1512797161, 4.16150779651], "code_commune_insee": "42052"}, "geometry": {"type": "Point", "coordinates": [4.16150779651, 46.1512797161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98a9adf0de794b4c8fadc17fedd4cb5ce0e0057b", "fields": {"nom_de_la_commune": "CHEVRIERES", "libell_d_acheminement": "CHEVRIERES", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42062"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8983b0b3f32b6ef2e79ad6016c76033a5e09eb7f", "fields": {"nom_de_la_commune": "COLOMBIER", "libell_d_acheminement": "COLOMBIER", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42067"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb768267b5b44407d2b78fa574aeb15173b3214", "fields": {"nom_de_la_commune": "LE COTEAU", "libell_d_acheminement": "LE COTEAU", "code_postal": "42120", "coordonnees_gps": [46.0189816241, 4.12010356973], "code_commune_insee": "42071"}, "geometry": {"type": "Point", "coordinates": [4.12010356973, 46.0189816241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93502ac65b935f5566a4504b994c9a98751d53f6", "fields": {"nom_de_la_commune": "LA COTE EN COUZAN", "libell_d_acheminement": "LA COTE EN COUZAN", "code_postal": "42111", "coordonnees_gps": [45.7864146517, 3.85739554907], "code_commune_insee": "42072"}, "geometry": {"type": "Point", "coordinates": [3.85739554907, 45.7864146517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67662f5fb354f1926f1d8e88b0ad32702f23e720", "fields": {"nom_de_la_commune": "CUZIEU", "libell_d_acheminement": "CUZIEU", "code_postal": "42330", "coordonnees_gps": [45.5836134512, 4.32526364645], "code_commune_insee": "42081"}, "geometry": {"type": "Point", "coordinates": [4.32526364645, 45.5836134512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c12999b4dcab9a1aa4ce3890889d3e48ae588c60", "fields": {"nom_de_la_commune": "GRAIX", "libell_d_acheminement": "GRAIX", "code_postal": "42220", "coordonnees_gps": [45.3043061368, 4.54945405511], "code_commune_insee": "42101"}, "geometry": {"type": "Point", "coordinates": [4.54945405511, 45.3043061368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d61e2df95e3a90d17fb7a2a564a2f2f245aac4", "fields": {"nom_de_la_commune": "LA GRAND CROIX", "libell_d_acheminement": "LA GRAND CROIX", "code_postal": "42320", "coordonnees_gps": [45.5245095873, 4.5130578574], "code_commune_insee": "42103"}, "geometry": {"type": "Point", "coordinates": [4.5130578574, 45.5245095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0104fc74418abde3e7c5f6f92a7771b16f77341", "fields": {"nom_de_la_commune": "COUSTAUSSA", "libell_d_acheminement": "COUSTAUSSA", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11109"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17403eb9a60991d334eb2717cb0d787bf2cd073f", "fields": {"nom_de_la_commune": "LA DIGNE D AMONT", "libell_d_acheminement": "LA DIGNE D AMONT", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11119"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "675e85f642e29a5c81484004cddd81bacc060f3c", "fields": {"nom_de_la_commune": "DUILHAC SOUS PEYREPERTUSE", "libell_d_acheminement": "DUILHAC SOUS PEYREPERTUSE", "code_postal": "11350", "coordonnees_gps": [42.8796650781, 2.66522654176], "code_commune_insee": "11123"}, "geometry": {"type": "Point", "coordinates": [2.66522654176, 42.8796650781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a742a6195d6f947c57d5b3d1b6000f622f505216", "fields": {"nom_de_la_commune": "ESPEZEL", "libell_d_acheminement": "ESPEZEL", "code_postal": "11340", "coordonnees_gps": [42.8370630944, 1.98179772961], "code_commune_insee": "11130"}, "geometry": {"type": "Point", "coordinates": [1.98179772961, 42.8370630944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb4d5c8ab23f20cd2834481703d62808ed70e3b0", "fields": {"nom_de_la_commune": "LA FAJOLLE", "libell_d_acheminement": "LA FAJOLLE", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11135"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad17ebd530ca978b98ac0173807d6abe08491259", "fields": {"nom_de_la_commune": "FELINES TERMENES", "libell_d_acheminement": "FELINES TERMENES", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11137"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9564839196bbeeed9669c4cb5fe6e3b47e6669ec", "fields": {"nom_de_la_commune": "FENDEILLE", "libell_d_acheminement": "FENDEILLE", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11138"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c3c17f15daa23af5cef243344ffc156e23949a2", "fields": {"nom_de_la_commune": "FEUILLA", "libell_d_acheminement": "FEUILLA", "code_postal": "11510", "coordonnees_gps": [42.9150508033, 2.94104906509], "code_commune_insee": "11143"}, "geometry": {"type": "Point", "coordinates": [2.94104906509, 42.9150508033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe10e2dea98c3c1e5dc265e69bc64cbe7ce1aa79", "fields": {"nom_de_la_commune": "FITOU", "libell_d_acheminement": "FITOU", "code_postal": "11510", "coordonnees_gps": [42.9150508033, 2.94104906509], "code_commune_insee": "11144"}, "geometry": {"type": "Point", "coordinates": [2.94104906509, 42.9150508033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8880624526450de271302da6cd48a04521c0d2ea", "fields": {"nom_de_la_commune": "LADERN SUR LAUQUET", "libell_d_acheminement": "LADERN SUR LAUQUET", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11183"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eb11c0e39c2d439a7029f7010dc2d5e2c943336", "fields": {"nom_de_la_commune": "LANET", "libell_d_acheminement": "LANET", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11187"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0eb89510ee816b945879f2e905107b63ad05ac0", "fields": {"nom_de_la_commune": "LASSERRE DE PROUILLE", "libell_d_acheminement": "LASSERRE DE PROUILLE", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11193"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca2a2d71d0e1dfe77957a9e5e489f72399b2d13", "fields": {"nom_de_la_commune": "LAURE MINERVOIS", "libell_d_acheminement": "LAURE MINERVOIS", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11198"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40c2bfc29de7cc4cf3a823a590b93fffdc52c44d", "fields": {"nom_de_la_commune": "LAVALETTE", "libell_d_acheminement": "LAVALETTE", "code_postal": "11290", "coordonnees_gps": [43.1943746552, 2.18782678941], "code_commune_insee": "11199"}, "geometry": {"type": "Point", "coordinates": [2.18782678941, 43.1943746552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32cf7f2f5ed3d9442eb2c27d07a86189ada6b900", "fields": {"nom_de_la_commune": "LIMOUSIS", "libell_d_acheminement": "LIMOUSIS", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11205"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a693dedd8d87ab427ca393dadefbae710560e4c9", "fields": {"nom_de_la_commune": "MARQUEIN", "libell_d_acheminement": "MARQUEIN", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11218"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9066a8c87eed1e633f138516a5fbfac3407da100", "fields": {"nom_de_la_commune": "MAYRONNES", "libell_d_acheminement": "MAYRONNES", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11227"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "145bdf1e12a8b85ab656dc19810572574715d6dd", "fields": {"nom_de_la_commune": "MEZERVILLE", "libell_d_acheminement": "MEZERVILLE", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11231"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dfe16d127198f9ad7e12697395d625e9cbb0c1f", "fields": {"nom_de_la_commune": "MIREPEISSET", "libell_d_acheminement": "MIREPEISSET", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11233"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d03ecaa47733f22c8767d840e70db0ca40734c2", "fields": {"nom_de_la_commune": "MOLANDIER", "libell_d_acheminement": "MOLANDIER", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11236"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d556e27e37d0e90094c3c21d5352afc848be741", "fields": {"nom_de_la_commune": "MONTFORT SUR BOULZANE", "libell_d_acheminement": "MONTFORT SUR BOULZANE", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11244"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7916d73a1e29f7d5e684729df4e45892481f202", "fields": {"nom_de_la_commune": "MONTGAILLARD", "libell_d_acheminement": "MONTGAILLARD", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11245"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eb8605863bd50b676fba9dd3f834ba1c8aa11f9", "fields": {"nom_de_la_commune": "MONTIRAT", "libell_d_acheminement": "MONTIRAT", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11248"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7593216735af7da0c839b6137795c77ff11cc5dc", "fields": {"nom_de_la_commune": "MONZE", "libell_d_acheminement": "MONZE", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11257"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93cbed038b1b9f599cabb218c4dc4cbd4718cc98", "fields": {"code_postal": "11100", "code_commune_insee": "11262", "libell_d_acheminement": "NARBONNE", "ligne_5": "NARBONNE PLAGE", "nom_de_la_commune": "NARBONNE", "coordonnees_gps": [43.1614428329, 3.00768633064]}, "geometry": {"type": "Point", "coordinates": [3.00768633064, 43.1614428329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7807eb735baf83bb9602ca42b67fc46096fe9bc7", "fields": {"nom_de_la_commune": "NEBIAS", "libell_d_acheminement": "NEBIAS", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11263"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "295133cfbac66b1869cd2f76b10c5b61a19e53a6", "fields": {"nom_de_la_commune": "ORSANS", "libell_d_acheminement": "ORSANS", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11268"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6fa334799750c74587833a2a9ce5994ec0c42e0", "fields": {"nom_de_la_commune": "PALAIRAC", "libell_d_acheminement": "PALAIRAC", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11271"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a98bce235f2f5328cda27167bf9638455b221518", "fields": {"nom_de_la_commune": "PAYRA SUR L HERS", "libell_d_acheminement": "PAYRA SUR L HERS", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11275"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9bc1b7d7f64fb15e3b080e695ef89fbaf86ae4", "fields": {"nom_de_la_commune": "PEPIEUX", "libell_d_acheminement": "PEPIEUX", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11280"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "903d00f3d0271b243fd979887994b221b390de11", "fields": {"nom_de_la_commune": "PEYRENS", "libell_d_acheminement": "PEYRENS", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11284"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32f52ec1a3679d7553b5d763989a4b6e810283df", "fields": {"nom_de_la_commune": "PIEUSSE", "libell_d_acheminement": "PIEUSSE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11289"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0f4da42d2c790dd0a86c57f20b9354cc7ded7d", "fields": {"nom_de_la_commune": "PLAIGNE", "libell_d_acheminement": "PLAIGNE", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11290"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57b896f2cf700fc9675b2a6b3e8feaa031f4c483", "fields": {"nom_de_la_commune": "RAISSAC SUR LAMPY", "libell_d_acheminement": "RAISSAC SUR LAMPY", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11308"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78918a4f75ae4a96ef7e62faead2dc3f22bfdf3c", "fields": {"nom_de_la_commune": "RENNES LE CHATEAU", "libell_d_acheminement": "RENNES LE CHATEAU", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11309"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef8103c0c0ccc9e2ca8bc954b4accf9a20ec3004", "fields": {"nom_de_la_commune": "ROQUEFERE", "libell_d_acheminement": "ROQUEFERE", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11319"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd36832bc9dadc742627c59a7dc6030e1edb989b", "fields": {"nom_de_la_commune": "HERMEVILLE EN WOEVRE", "libell_d_acheminement": "HERMEVILLE EN WOEVRE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55244"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f508ccc97ab8b60f3a598193e3b1ebe2678468", "fields": {"nom_de_la_commune": "HEUDICOURT SOUS LES COTES", "libell_d_acheminement": "HEUDICOURT SOUS LES COTES", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55245"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0363f63fb48fc3536f3f675cbc4dc6380d3ee009", "fields": {"nom_de_la_commune": "IPPECOURT", "libell_d_acheminement": "IPPECOURT", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55251"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de871f60b6517073b30dbaf6affca19f6a77d5f", "fields": {"nom_de_la_commune": "LES ISLETTES", "libell_d_acheminement": "LES ISLETTES", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55253"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8be6fe12af6fb3b2dea4907bfca5957409e207b2", "fields": {"code_postal": "55220", "code_commune_insee": "55254", "libell_d_acheminement": "LES TROIS DOMAINES", "ligne_5": "RIGNAUCOURT", "nom_de_la_commune": "LES TROIS DOMAINES", "coordonnees_gps": [49.0264953625, 5.30234467263]}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1961661bce199398acc015fb02b0bffe69d9ad71", "fields": {"nom_de_la_commune": "JOUY EN ARGONNE", "libell_d_acheminement": "JOUY EN ARGONNE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55257"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2486d00570a236c697a71cbba62fdb6527cf7921", "fields": {"code_postal": "55200", "code_commune_insee": "55258", "libell_d_acheminement": "GEVILLE", "ligne_5": "CORNIEVILLE", "nom_de_la_commune": "GEVILLE", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f48be06098b707727bd27f1eda72f0a3b76bfdb", "fields": {"nom_de_la_commune": "JULVECOURT", "libell_d_acheminement": "JULVECOURT", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55260"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eddde81b0cec701cdf957e439159573f88c37c9", "fields": {"nom_de_la_commune": "KOEUR LA GRANDE", "libell_d_acheminement": "KOEUR LA GRANDE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55263"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dca0b497ffdda82e5d648c9430e6797614967f46", "fields": {"nom_de_la_commune": "LACHAUSSEE", "libell_d_acheminement": "LACHAUSSEE", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55267"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d948f00490445ef988824fb8588a946f9027914", "fields": {"code_postal": "55210", "code_commune_insee": "55267", "libell_d_acheminement": "LACHAUSSEE", "ligne_5": "HAUMONT LES LACHAUSSEE", "nom_de_la_commune": "LACHAUSSEE", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f8962ce6c3ed9b0bf1c47550db268810f414693", "fields": {"nom_de_la_commune": "LAMORVILLE", "libell_d_acheminement": "LAMORVILLE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55274"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f6d754c9a49c23d3c640d3b0fdb20a69eefd0c0", "fields": {"nom_de_la_commune": "LANEUVILLE AU RUPT", "libell_d_acheminement": "LANEUVILLE AU RUPT", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55278"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6e71509f6ae184a0117bb151e2437b2ad5e4153", "fields": {"nom_de_la_commune": "LAVOYE", "libell_d_acheminement": "LAVOYE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55285"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "056ae764c80cb3ca6b280b156d280ca7a2e19443", "fields": {"nom_de_la_commune": "LIGNY EN BARROIS", "libell_d_acheminement": "LIGNY EN BARROIS", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55291"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62f90d5508388f6de4e88d40f147262e4740c11f", "fields": {"nom_de_la_commune": "LISLE EN BARROIS", "libell_d_acheminement": "LISLE EN BARROIS", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55295"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d1d440b3747e79c8c25d0fb2498bd7254cf4209", "fields": {"nom_de_la_commune": "LOISON", "libell_d_acheminement": "LOISON", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55299"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d71b1276b673ea3afd460ce5fa4b93e0250fd51", "fields": {"nom_de_la_commune": "LONGEVILLE EN BARROIS", "libell_d_acheminement": "LONGEVILLE EN BARROIS", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55302"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf676b07d9d9c8c11c4620592354289f6a916f63", "fields": {"nom_de_la_commune": "LOUVEMONT COTE DU POIVRE", "libell_d_acheminement": "LOUVEMONT COTE DU POIVRE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55307"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60710a461a1bd5f40d7484c1508338b1a8e6c8cc", "fields": {"nom_de_la_commune": "MANGIENNES", "libell_d_acheminement": "MANGIENNES", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55316"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c446e95020319df736026972e198245a1c803460", "fields": {"nom_de_la_commune": "MELIGNY LE GRAND", "libell_d_acheminement": "MELIGNY LE GRAND", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55330"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "464f52e9836130fcc7905ab72c3e76ae3ccb3a1f", "fields": {"nom_de_la_commune": "MENIL AUX BOIS", "libell_d_acheminement": "MENIL AUX BOIS", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55333"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b905c81fa2570c24907df68893ab94e5ff80c0", "fields": {"nom_de_la_commune": "MOGNEVILLE", "libell_d_acheminement": "MOGNEVILLE", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55340"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d9fefebfc617338dfb2c890481efb877f06668a", "fields": {"nom_de_la_commune": "MONT DEVANT SASSEY", "libell_d_acheminement": "MONT DEVANT SASSEY", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55345"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d6882a12977a446a7a437501676344d94a05595", "fields": {"code_postal": "55500", "code_commune_insee": "55358", "libell_d_acheminement": "CHANTERAINE", "ligne_5": "OEY", "nom_de_la_commune": "CHANTERAINE", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a46c1256c9169c297bce790fc085fcb47b7bf0a8", "fields": {"nom_de_la_commune": "MORLEY", "libell_d_acheminement": "MORLEY", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55359"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c11bd20034eb89d8b61372a63e188fcad758f3a", "fields": {"nom_de_la_commune": "MOULAINVILLE", "libell_d_acheminement": "MOULAINVILLE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55361"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e7bfefa0e68a476d305f3f3ba6b1ca22d64223", "fields": {"code_postal": "55000", "code_commune_insee": "55366", "libell_d_acheminement": "VAL D ORNAIN", "ligne_5": "BUSSY LA COTE", "nom_de_la_commune": "VAL D ORNAIN", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc672a76c8c7092e2c6abc07127e496b2849d7d9", "fields": {"nom_de_la_commune": "NAIVES EN BLOIS", "libell_d_acheminement": "NAIVES EN BLOIS", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55368"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a4853ca78ff75c5364b0e8231217c7bb289fc6d", "fields": {"nom_de_la_commune": "NEUVILLY EN ARGONNE", "libell_d_acheminement": "NEUVILLY EN ARGONNE", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55383"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97ab814d1798af0edeb2c6cc7c63e37ed0b5120e", "fields": {"nom_de_la_commune": "NONSARD LAMARCHE", "libell_d_acheminement": "NONSARD LAMARCHE", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55386"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfe77c62c77a98b0ee8beb3679d442c9857f4810", "fields": {"nom_de_la_commune": "NOUILLONPONT", "libell_d_acheminement": "NOUILLONPONT", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55387"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942f872469fd1a79ea9a56b8654db04aefaf70d9", "fields": {"code_postal": "55800", "code_commune_insee": "55388", "libell_d_acheminement": "NOYERS AUZECOURT", "ligne_5": "AUZECOURT", "nom_de_la_commune": "NOYERS AUZECOURT", "coordonnees_gps": [48.8462608898, 4.99668524223]}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c796d914bdf09dba4b70402be66b0205f27d5a", "fields": {"code_postal": "55250", "code_commune_insee": "55389", "libell_d_acheminement": "NUBECOURT", "ligne_5": "FLEURY SUR AIRE", "nom_de_la_commune": "NUBECOURT", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e798dbdda23f62ccd8954cb9eaf06a622ced2fc", "fields": {"nom_de_la_commune": "OLIZY SUR CHIERS", "libell_d_acheminement": "OLIZY SUR CHIERS", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55391"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d550142eeff3f60a4addba78c44bfff2bb8236b5", "fields": {"nom_de_la_commune": "OSCHES", "libell_d_acheminement": "OSCHES", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55395"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c905f27cce5beb559fd2babc6682c1815b0cd6", "fields": {"nom_de_la_commune": "OURCHES SUR MEUSE", "libell_d_acheminement": "OURCHES SUR MEUSE", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55396"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4484411de44c52b786c975a547dcccbb24e7896", "fields": {"nom_de_la_commune": "PAGNY SUR MEUSE", "libell_d_acheminement": "PAGNY SUR MEUSE", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55398"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f3253e5c64c5f76a24a22d614b13bb6bc20b93b", "fields": {"nom_de_la_commune": "PAREID", "libell_d_acheminement": "PAREID", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55399"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d9d7340bfdf9a18731e51323d45c63ed05978e", "fields": {"nom_de_la_commune": "RANZIERES", "libell_d_acheminement": "RANZIERES", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55415"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c8428151db2d2d3e6f47941437edbb48832d60e", "fields": {"nom_de_la_commune": "REGNEVILLE SUR MEUSE", "libell_d_acheminement": "REGNEVILLE SUR MEUSE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55422"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9bc589acae68eb5f15f6795848529a758fd9697", "fields": {"nom_de_la_commune": "ST LAURENT SUR OTHAIN", "libell_d_acheminement": "ST LAURENT SUR OTHAIN", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55461"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d52c3f1373c60bf88f9e70160eea4b7e7b3499fd", "fields": {"nom_de_la_commune": "SAMPIGNY", "libell_d_acheminement": "SAMPIGNY", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55467"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd416bd1e1700bb0449b26c05e63945a761724cb", "fields": {"nom_de_la_commune": "SAULMORY ET VILLEFRANCHE", "libell_d_acheminement": "SAULMORY ET VILLEFRANCHE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55471"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6708c65da379b1969d598a993339faa32cf4e886", "fields": {"nom_de_la_commune": "SAULVAUX", "libell_d_acheminement": "SAULVAUX", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55472"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5882a1f074fed9e4ba0eb28cad4c7ddd595fbfee", "fields": {"nom_de_la_commune": "SAUVOY", "libell_d_acheminement": "SAUVOY", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55475"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7434ca076000af64fabe51bd36906de71eb6fd8", "fields": {"nom_de_la_commune": "SENONCOURT LES MAUJOUY", "libell_d_acheminement": "SENONCOURT LES MAUJOUY", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55482"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f14dc2d455903052d08adf77c35631e72dca545c", "fields": {"nom_de_la_commune": "SEUZEY", "libell_d_acheminement": "SEUZEY", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55487"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1317decd568714c570a2b1a3bffcdc589977c264", "fields": {"nom_de_la_commune": "SILMONT", "libell_d_acheminement": "SILMONT", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55488"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54dd1a8886d7efbedd83414e36f1a16da9f0b331", "fields": {"nom_de_la_commune": "SOMMEILLES", "libell_d_acheminement": "SOMMEILLES", "code_postal": "55800", "coordonnees_gps": [48.8462608898, 4.99668524223], "code_commune_insee": "55493"}, "geometry": {"type": "Point", "coordinates": [4.99668524223, 48.8462608898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad5901531ebd3393211afd8de1e329b9ec4b2b76", "fields": {"nom_de_la_commune": "SOUILLY", "libell_d_acheminement": "SOUILLY", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55498"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bf455bd1c5ff7a1d226f16952705714c5db4975", "fields": {"code_postal": "55230", "code_commune_insee": "55500", "libell_d_acheminement": "SPINCOURT", "ligne_5": "OLLIERES", "nom_de_la_commune": "SPINCOURT", "coordonnees_gps": [49.3403903828, 5.6284923662]}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68283c5d32285d13088112424687c3f16595174", "fields": {"code_postal": "55230", "code_commune_insee": "55500", "libell_d_acheminement": "SPINCOURT", "ligne_5": "RECHICOURT", "nom_de_la_commune": "SPINCOURT", "coordonnees_gps": [49.3403903828, 5.6284923662]}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2692461405cd4b3ad9bb6c9e92a1bc01045966", "fields": {"nom_de_la_commune": "THIERVILLE SUR MEUSE", "libell_d_acheminement": "THIERVILLE SUR MEUSE", "code_postal": "55840", "coordonnees_gps": [49.1720804577, 5.33823408052], "code_commune_insee": "55505"}, "geometry": {"type": "Point", "coordinates": [5.33823408052, 49.1720804577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89ac8f3514f8bb8612b0b67e732322839b9dbcc4", "fields": {"nom_de_la_commune": "TREVERAY", "libell_d_acheminement": "TREVERAY", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55516"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7482a34398a47258343a79e4b214b2dbdd3ff409", "fields": {"nom_de_la_commune": "TRONVILLE EN BARROIS", "libell_d_acheminement": "TRONVILLE EN BARROIS", "code_postal": "55310", "coordonnees_gps": [48.7201703913, 5.27885278256], "code_commune_insee": "55519"}, "geometry": {"type": "Point", "coordinates": [5.27885278256, 48.7201703913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf182bf5a82942b231cefb4a2676e2b4dbf46454", "fields": {"nom_de_la_commune": "VARNEVILLE", "libell_d_acheminement": "VARNEVILLE", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55528"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b16d5b547c15aa4a4ca7b6fa260ed7c85ec60f1", "fields": {"nom_de_la_commune": "VALBOIS", "libell_d_acheminement": "VALBOIS", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55530"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "868f2da765bc87d2eb75387ea9cd3da57eb93c10", "fields": {"nom_de_la_commune": "VAVINCOURT", "libell_d_acheminement": "VAVINCOURT", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55541"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8689fb608d450d2427270272d5b8d099bfdee6d", "fields": {"nom_de_la_commune": "VERY", "libell_d_acheminement": "VERY", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55549"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0558bcd4647733ee2d718a32d2a54bca35eb2480", "fields": {"code_postal": "55210", "code_commune_insee": "55551", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "ligne_5": "CREUE", "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d45076ae882bda38ea3c271690929ab679afaa1c", "fields": {"nom_de_la_commune": "VIGNOT", "libell_d_acheminement": "VIGNOT", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55553"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6458b4dc352cc9330a9ceb287842c72c584003cb", "fields": {"nom_de_la_commune": "VILLERS DEVANT DUN", "libell_d_acheminement": "VILLERS DEVANT DUN", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55561"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f056fc2ae8cb2ff5f8f28b819d429eaefea40160", "fields": {"nom_de_la_commune": "VILLERS SOUS PAREID", "libell_d_acheminement": "VILLERS SOUS PAREID", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55565"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82ddd2748c42755519a464494102db0dfddf753", "fields": {"nom_de_la_commune": "VOID VACON", "libell_d_acheminement": "VOID VACON", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55573"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "804827ff788f35afdd90e0e5bc6bf890bea3c155", "fields": {"nom_de_la_commune": "WARCQ", "libell_d_acheminement": "WARCQ", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55578"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f29e90be17980f35d10227b012c06d1ec854c92", "fields": {"nom_de_la_commune": "WISEPPE", "libell_d_acheminement": "WISEPPE", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55582"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c47d6c02f731df8abdf439fadb4d3b6f4674e77", "fields": {"nom_de_la_commune": "BAUD", "libell_d_acheminement": "BAUD", "code_postal": "56150", "coordonnees_gps": [47.8954786966, -3.01425366823], "code_commune_insee": "56010"}, "geometry": {"type": "Point", "coordinates": [-3.01425366823, 47.8954786966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5835702c885b99d6e962223edccd673b10ff94ff", "fields": {"nom_de_la_commune": "BELZ", "libell_d_acheminement": "BELZ", "code_postal": "56550", "coordonnees_gps": [47.6912476193, -3.11969109738], "code_commune_insee": "56013"}, "geometry": {"type": "Point", "coordinates": [-3.11969109738, 47.6912476193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acd46f0680fc23ee81bd08a1d7e69b9545ce463d", "fields": {"nom_de_la_commune": "BIEUZY", "libell_d_acheminement": "BIEUZY LES EAUX", "code_postal": "56310", "coordonnees_gps": [47.9751607277, -3.12433210411], "code_commune_insee": "56016"}, "geometry": {"type": "Point", "coordinates": [-3.12433210411, 47.9751607277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10995a42a4b79d04b5a9aac2433fcdab106740e1", "fields": {"nom_de_la_commune": "BILLIO", "libell_d_acheminement": "BILLIO", "code_postal": "56420", "coordonnees_gps": [47.8390378246, -2.64768279068], "code_commune_insee": "56019"}, "geometry": {"type": "Point", "coordinates": [-2.64768279068, 47.8390378246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "291e623915797d0a3397e10967859708fee6cd98", "fields": {"nom_de_la_commune": "LE CROISTY", "libell_d_acheminement": "LE CROISTY", "code_postal": "56540", "coordonnees_gps": [48.0574401287, -3.35915181496], "code_commune_insee": "56048"}, "geometry": {"type": "Point", "coordinates": [-3.35915181496, 48.0574401287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e9b0ec38086143b12fa94be05f253fbdd3e95d", "fields": {"nom_de_la_commune": "CRUGUEL", "libell_d_acheminement": "CRUGUEL", "code_postal": "56420", "coordonnees_gps": [47.8390378246, -2.64768279068], "code_commune_insee": "56051"}, "geometry": {"type": "Point", "coordinates": [-2.64768279068, 47.8390378246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c35dd8c77e9b77a46a51c39d321d955f4d86bcc", "fields": {"nom_de_la_commune": "ELVEN", "libell_d_acheminement": "ELVEN", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56053"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1eea65441e955ce066de8a660d0b10b4d8b9111", "fields": {"nom_de_la_commune": "ERDEVEN", "libell_d_acheminement": "ERDEVEN", "code_postal": "56410", "coordonnees_gps": [47.6381835411, -3.15894216242], "code_commune_insee": "56054"}, "geometry": {"type": "Point", "coordinates": [-3.15894216242, 47.6381835411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bbe89b8e5a1dd73dd596d5a7b15a7e12c567507", "fields": {"nom_de_la_commune": "LES FOUGERETS", "libell_d_acheminement": "LES FOUGERETS", "code_postal": "56200", "coordonnees_gps": [47.7586563678, -2.1829238317], "code_commune_insee": "56060"}, "geometry": {"type": "Point", "coordinates": [-2.1829238317, 47.7586563678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbef93f52196f5e11925cea0117e45f0e6bd6c2b", "fields": {"nom_de_la_commune": "GAVRES", "libell_d_acheminement": "GAVRES", "code_postal": "56680", "coordonnees_gps": [47.6926427403, -3.24050091087], "code_commune_insee": "56062"}, "geometry": {"type": "Point", "coordinates": [-3.24050091087, 47.6926427403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb7016082dca1dd498ba907b1c2815a844f36c23", "fields": {"nom_de_la_commune": "GLENAC", "libell_d_acheminement": "GLENAC", "code_postal": "56200", "coordonnees_gps": [47.7586563678, -2.1829238317], "code_commune_insee": "56064"}, "geometry": {"type": "Point", "coordinates": [-2.1829238317, 47.7586563678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ef26bcb7281cda64d925bcfb5ecf931feccc9c9", "fields": {"nom_de_la_commune": "LA GREE ST LAURENT", "libell_d_acheminement": "LA GREE ST LAURENT", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56068"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab57b5fa3b3d74e37b01663d5dd2186f5441e00d", "fields": {"nom_de_la_commune": "GROIX", "libell_d_acheminement": "GROIX", "code_postal": "56590", "coordonnees_gps": [47.6370202465, -3.46482880209], "code_commune_insee": "56069"}, "geometry": {"type": "Point", "coordinates": [-3.46482880209, 47.6370202465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7f9944e34d71381eeca4a4d46d059977f2c88bf", "fields": {"nom_de_la_commune": "ILE D ARZ", "libell_d_acheminement": "ILE D ARZ", "code_postal": "56840", "coordonnees_gps": [47.5911933855, -2.80053287021], "code_commune_insee": "56088"}, "geometry": {"type": "Point", "coordinates": [-2.80053287021, 47.5911933855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39fe4f646149632f9a0f83fda42fae91e537538", "fields": {"nom_de_la_commune": "LANESTER", "libell_d_acheminement": "LANESTER", "code_postal": "56600", "coordonnees_gps": [47.7691727213, -3.32698527026], "code_commune_insee": "56098"}, "geometry": {"type": "Point", "coordinates": [-3.32698527026, 47.7691727213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c44a1aeb0e39b51481128bb721160ba27de3824", "fields": {"nom_de_la_commune": "LANGUIDIC", "libell_d_acheminement": "LANGUIDIC", "code_postal": "56440", "coordonnees_gps": [47.8370193427, -3.1480293668], "code_commune_insee": "56101"}, "geometry": {"type": "Point", "coordinates": [-3.1480293668, 47.8370193427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bdcd943d9a64bc8cbe9fc573b45beb9200a823c", "fields": {"nom_de_la_commune": "LANOUEE", "libell_d_acheminement": "LANOUEE", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56102"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10ffb97440d0b75f3ad6730de5c011f4d5e9547b", "fields": {"nom_de_la_commune": "LANVAUDAN", "libell_d_acheminement": "LANVAUDAN", "code_postal": "56240", "coordonnees_gps": [47.9397902952, -3.31179556396], "code_commune_insee": "56104"}, "geometry": {"type": "Point", "coordinates": [-3.31179556396, 47.9397902952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f599353f5219f65f9933951fb8ff6e687a83b0", "fields": {"nom_de_la_commune": "LANVENEGEN", "libell_d_acheminement": "LANVENEGEN", "code_postal": "56320", "coordonnees_gps": [48.0259259973, -3.47528585034], "code_commune_insee": "56105"}, "geometry": {"type": "Point", "coordinates": [-3.47528585034, 48.0259259973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0360d6da2a1ba7dc1d63f1a4dd6cafe26af8512c", "fields": {"nom_de_la_commune": "LARRE", "libell_d_acheminement": "LARRE", "code_postal": "56230", "coordonnees_gps": [47.6890583485, -2.46488930013], "code_commune_insee": "56108"}, "geometry": {"type": "Point", "coordinates": [-2.46488930013, 47.6890583485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5adacef86363a88942af87f9107bd9792b264d74", "fields": {"nom_de_la_commune": "LAUZACH", "libell_d_acheminement": "LAUZACH", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56109"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "282a9201a4ec6c08e437dddf16edb8cb45688663", "fields": {"nom_de_la_commune": "LIGNOL", "libell_d_acheminement": "LIGNOL", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56110"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c4653cd1d0b70aba587b8f2d361b2d8e3644141", "fields": {"nom_de_la_commune": "LIMERZEL", "libell_d_acheminement": "LIMERZEL", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56111"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f33c3f885470a0c7244ddc28877defb45f533d", "fields": {"nom_de_la_commune": "LOCMARIA GRAND CHAMP", "libell_d_acheminement": "LOCMARIA GRAND CHAMP", "code_postal": "56390", "coordonnees_gps": [47.7748700916, -2.83665488013], "code_commune_insee": "56115"}, "geometry": {"type": "Point", "coordinates": [-2.83665488013, 47.7748700916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee1c9e9ae71c4fbea29dd0d28e31132fa3bf77d", "fields": {"nom_de_la_commune": "LORIENT", "libell_d_acheminement": "LORIENT", "code_postal": "56100", "coordonnees_gps": [47.7501619572, -3.37871159231], "code_commune_insee": "56121"}, "geometry": {"type": "Point", "coordinates": [-3.37871159231, 47.7501619572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee073f82c25dc2bb7c7da418e16c1f4c456a6675", "fields": {"nom_de_la_commune": "MALGUENAC", "libell_d_acheminement": "MALGUENAC", "code_postal": "56300", "coordonnees_gps": [48.0841906584, -2.98247941695], "code_commune_insee": "56125"}, "geometry": {"type": "Point", "coordinates": [-2.98247941695, 48.0841906584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dc8d4ce77d2e210d5df91771065f0b683ddfa3c", "fields": {"nom_de_la_commune": "MAURON", "libell_d_acheminement": "MAURON", "code_postal": "56430", "coordonnees_gps": [48.0681408397, -2.31392904307], "code_commune_insee": "56127"}, "geometry": {"type": "Point", "coordinates": [-2.31392904307, 48.0681408397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "288b630526e6a6f6b143597a299e9eb4e6d385bd", "fields": {"nom_de_la_commune": "MERLEVENEZ", "libell_d_acheminement": "MERLEVENEZ", "code_postal": "56700", "coordonnees_gps": [47.7669954089, -3.24285688708], "code_commune_insee": "56130"}, "geometry": {"type": "Point", "coordinates": [-3.24285688708, 47.7669954089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01af22feecd2b14f984d1580b07e06ca84ebc2a7", "fields": {"nom_de_la_commune": "MISSIRIAC", "libell_d_acheminement": "MISSIRIAC", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56133"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3dd61fa9a9b64528dba3f1a5ad95828fb7fc51", "fields": {"nom_de_la_commune": "MOLAC", "libell_d_acheminement": "MOLAC", "code_postal": "56230", "coordonnees_gps": [47.6890583485, -2.46488930013], "code_commune_insee": "56135"}, "geometry": {"type": "Point", "coordinates": [-2.46488930013, 47.6890583485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96d5268613cc23224db123a511433715d7a0b791", "fields": {"nom_de_la_commune": "MOREAC", "libell_d_acheminement": "MOREAC", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56140"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a018d22fb56e4ede8ef9943d25dee27a4a6a56d0", "fields": {"code_postal": "56500", "code_commune_insee": "56144", "libell_d_acheminement": "EVELLYS", "ligne_5": "MOUSTOIR REMUNGOL", "nom_de_la_commune": "EVELLYS", "coordonnees_gps": [47.9163628401, -2.81404432498]}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5358601e22db8667a05fdd7bcc43bfbfa5faf19", "fields": {"nom_de_la_commune": "NOYAL MUZILLAC", "libell_d_acheminement": "NOYAL MUZILLAC", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56149"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b340b6ac290e553afbebca2b2cd3910030d27c8", "fields": {"nom_de_la_commune": "COULAURES", "libell_d_acheminement": "COULAURES", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24137"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e62d7818a950ef7597b062af1225d17df0fd9180", "fields": {"nom_de_la_commune": "COULOUNIEIX CHAMIERS", "libell_d_acheminement": "COULOUNIEIX CHAMIERS", "code_postal": "24660", "coordonnees_gps": [45.1436833144, 0.700878346896], "code_commune_insee": "24138"}, "geometry": {"type": "Point", "coordinates": [0.700878346896, 45.1436833144]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c842a273aa9daabaf00120bc9bd621edeeb6b40", "fields": {"code_postal": "24220", "code_commune_insee": "24142", "libell_d_acheminement": "COUX ET BIGAROQUE MOUZENS", "ligne_5": "MOUZENS", "nom_de_la_commune": "COUX ET BIGAROQUE MOUZENS", "coordonnees_gps": [44.8620938177, 1.0656904068]}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8998cf2c2540e872c8281feb9616e0cc26468a4", "fields": {"nom_de_la_commune": "CUNEGES", "libell_d_acheminement": "CUNEGES", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24148"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "549b9e195f47610a4d8cbd40f2cf41c8dfe84f68", "fields": {"nom_de_la_commune": "ECHOURGNAC", "libell_d_acheminement": "ECHOURGNAC", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24159"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9d3e3c5d8e1c3fce0d308741c42b314781c335", "fields": {"nom_de_la_commune": "ETOUARS", "libell_d_acheminement": "ETOUARS", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24163"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21dc01cbefbe6d5c5b9d5ab4160c2461b468d551", "fields": {"nom_de_la_commune": "EYVIRAT", "libell_d_acheminement": "EYVIRAT", "code_postal": "24460", "coordonnees_gps": [45.2956832726, 0.780250609832], "code_commune_insee": "24170"}, "geometry": {"type": "Point", "coordinates": [0.780250609832, 45.2956832726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44003b6177fcd50012a8e57ea5f2e1e265123ee4", "fields": {"nom_de_la_commune": "LES FARGES", "libell_d_acheminement": "LES FARGES", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24175"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d699c58309f9db8ece9173284e3f00c811b9e9f3", "fields": {"nom_de_la_commune": "FLAUGEAC", "libell_d_acheminement": "FLAUGEAC", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24181"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6ee2d0cd7fa94249d54c39f31cb30ce034470c", "fields": {"nom_de_la_commune": "LE FLEIX", "libell_d_acheminement": "LE FLEIX", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24182"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d65d9a07177a20b81e14c6ef12d1e7394a9fb9f", "fields": {"nom_de_la_commune": "FOSSEMAGNE", "libell_d_acheminement": "FOSSEMAGNE", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24188"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca42f26d9f51136ffc08d3f9f8adaa4c8937ca8", "fields": {"nom_de_la_commune": "FOUGUEYROLLES", "libell_d_acheminement": "FOUGUEYROLLES", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "24189"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9502b7366848bf9e779bdc20315cf1b8de993fa", "fields": {"nom_de_la_commune": "GRANGES D ANS", "libell_d_acheminement": "GRANGES D ANS", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24202"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b952f9458eefe923bc6842b401dd6c5ec28963a", "fields": {"nom_de_la_commune": "LES GRAULGES", "libell_d_acheminement": "LES GRAULGES", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24203"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eda0ed519136481c55ebd586a488b6725191197a", "fields": {"nom_de_la_commune": "GREZES", "libell_d_acheminement": "GREZES", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24204"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e600502174e14f842df8fd038df1fb000206cf3f", "fields": {"nom_de_la_commune": "HAUTEFAYE", "libell_d_acheminement": "HAUTEFAYE", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24209"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91cdf47f131b7bf5696561fa2cc21a935d939014", "fields": {"nom_de_la_commune": "LARZAC", "libell_d_acheminement": "LARZAC", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24230"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b29c72f9588bd1f98acf40588dd5018073c409e", "fields": {"nom_de_la_commune": "LAVEYSSIERE", "libell_d_acheminement": "LAVEYSSIERE", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24233"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f469a5da6dcc898bb9bb835ca3c456815d3a06f", "fields": {"nom_de_la_commune": "LIORAC SUR LOUYRE", "libell_d_acheminement": "LIORAC SUR LOUYRE", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24242"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f7efa656ced471b775d682e785d90b038722916", "fields": {"nom_de_la_commune": "LOLME", "libell_d_acheminement": "LOLME", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24244"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4394708bb17959f3c0dc919c0322b9bda5c2a61", "fields": {"nom_de_la_commune": "MARNAC", "libell_d_acheminement": "MARNAC", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24254"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99ba4358b6938a3f07ea8d4c3c549db276a22bab", "fields": {"nom_de_la_commune": "MARSALES", "libell_d_acheminement": "MARSALES", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24257"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28ae007a1db8910e5aa6cd030cb08831d3757bc3", "fields": {"nom_de_la_commune": "MAYAC", "libell_d_acheminement": "MAYAC", "code_postal": "24420", "coordonnees_gps": [45.2731695329, 0.891607965929], "code_commune_insee": "24262"}, "geometry": {"type": "Point", "coordinates": [0.891607965929, 45.2731695329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394df309e86d263479a2809de9b04078391b1720", "fields": {"nom_de_la_commune": "MOLIERES", "libell_d_acheminement": "MOLIERES", "code_postal": "24480", "coordonnees_gps": [44.8133494955, 0.885908136539], "code_commune_insee": "24273"}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afafc045d0ff03961e97a7ba4046d07b1ecfe860", "fields": {"nom_de_la_commune": "MONESTIER", "libell_d_acheminement": "MONESTIER", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24276"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ebab78a4527cdd3d6daf993cac544fc8fb74d0f", "fields": {"nom_de_la_commune": "MONMADALES", "libell_d_acheminement": "MONMADALES", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24278"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1860856b1497aeffa3c06a2f78c557bfbd4f307", "fields": {"nom_de_la_commune": "MONTIGNAC", "libell_d_acheminement": "MONTIGNAC", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24291"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5aeb343fd640cbfe0603c800814fe8517ab45c2", "fields": {"nom_de_la_commune": "NABIRAT", "libell_d_acheminement": "NABIRAT", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24300"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6b0c77c86c2a560b8088a333c658f20b377bf6", "fields": {"nom_de_la_commune": "NONTRON", "libell_d_acheminement": "NONTRON", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24311"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "026fcdde5330c8b1d4004b2464aa7400b19b4a26", "fields": {"nom_de_la_commune": "ORLIAGUET", "libell_d_acheminement": "ORLIAGUET", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24314"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4917447f77acac327d9fb3ea60e6defe594ff160", "fields": {"nom_de_la_commune": "PAZAYAC", "libell_d_acheminement": "PAZAYAC", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24321"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6f70bf2a2aac8e777591b27951c33081f088be", "fields": {"nom_de_la_commune": "PEYRILLAC ET MILLAC", "libell_d_acheminement": "PEYRILLAC ET MILLAC", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24325"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e09b4d1c2801f237f97bf7b9e2d24f2db17af8fd", "fields": {"nom_de_la_commune": "PEZULS", "libell_d_acheminement": "PEZULS", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24327"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f56b015e9d873b4bbf55f0ef2b5bb304bef875e9", "fields": {"nom_de_la_commune": "POMPORT", "libell_d_acheminement": "POMPORT", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24331"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10ef3a69fc0b5ffa9ca79ada4c35d40deecf8986", "fields": {"nom_de_la_commune": "PRESSIGNAC VICQ", "libell_d_acheminement": "PRESSIGNAC VICQ", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24338"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3b3ea28aa3ca6e83f90bf0684120b8050cb1cd7", "fields": {"nom_de_la_commune": "QUINSAC", "libell_d_acheminement": "QUINSAC", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24346"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b9fb9885ca80aeede0a0797b0b503d129ed03f2", "fields": {"nom_de_la_commune": "LA ROCHE CHALAIS", "libell_d_acheminement": "LA ROCHE CHALAIS", "code_postal": "24490", "coordonnees_gps": [45.135601927, 0.0544832948908], "code_commune_insee": "24354"}, "geometry": {"type": "Point", "coordinates": [0.0544832948908, 45.135601927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61d265a406623734495334b0d247a850d20a7b47", "fields": {"nom_de_la_commune": "ST AMAND DE VERGT", "libell_d_acheminement": "ST AMAND DE VERGT", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24365"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9b651c85eb123b85c669344865f0f9c267589a5", "fields": {"nom_de_la_commune": "ST ANDRE D ALLAS", "libell_d_acheminement": "ST ANDRE D ALLAS", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24366"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1043b2f8b9e69e50bd49e06ca89761ffe28eef2c", "fields": {"nom_de_la_commune": "ST ANDRE DE DOUBLE", "libell_d_acheminement": "ST ANDRE DE DOUBLE", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24367"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a88d1b96c476815640f93391325e38b3b61db8ae", "fields": {"nom_de_la_commune": "ST ANTOINE CUMOND", "libell_d_acheminement": "ST ANTOINE CUMOND", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24368"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebcf48cc1eb58dfb29e7430ac0bd73783bee6cdd", "fields": {"nom_de_la_commune": "ST AQUILIN", "libell_d_acheminement": "ST AQUILIN", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24371"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42fccc130b7dea7097eebaa607f76c1436b827b", "fields": {"nom_de_la_commune": "ST CHAMASSY", "libell_d_acheminement": "ST CHAMASSY", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24388"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76cf92ccf7b04adb25716de69dcd8badeb6a2876", "fields": {"nom_de_la_commune": "ST FELIX DE BOURDEILLES", "libell_d_acheminement": "ST FELIX DE BOURDEILLES", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24403"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb49faf920322d5650b1bd983a3edf1802e20fa", "fields": {"nom_de_la_commune": "ST FELIX DE REILLAC ET MORTEMART", "libell_d_acheminement": "ST FELIX DE REILLAC ET MORTEMART", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24404"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fea7bad797fe984ae5a4eba01910595b3b076795", "fields": {"nom_de_la_commune": "ST GENIES", "libell_d_acheminement": "ST GENIES", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24412"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ccb1ac6127574ae86eab5eb1f88367272931c19", "fields": {"nom_de_la_commune": "ST JULIEN D EYMET", "libell_d_acheminement": "ST JULIEN D EYMET", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24433"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f15da4a45c86ff7dc68e85a9a5b8b514df0639ed", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24434"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4fd4372c768c5f9cd3226f6c3ca8571a18de794", "fields": {"nom_de_la_commune": "STE MARIE DE CHIGNAC", "libell_d_acheminement": "STE MARIE DE CHIGNAC", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24447"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206e55093e600544c6b4f932b05f01c33005f5b1", "fields": {"nom_de_la_commune": "ST MARTIAL D ARTENSET", "libell_d_acheminement": "ST MARTIAL D ARTENSET", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24449"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17519255171775b1d04f4f17c07c278449182d0d", "fields": {"nom_de_la_commune": "ST MARTIN DE FRESSENGEAS", "libell_d_acheminement": "ST MARTIN DE FRESSENGEAS", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24453"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b55061e7fece795d23f4e708222d11dceb078ef", "fields": {"nom_de_la_commune": "ST MEDARD DE MUSSIDAN", "libell_d_acheminement": "ST MEDARD DE MUSSIDAN", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24462"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "425dbffdcd3526137e1326a2687abeeb386a4ed8", "fields": {"nom_de_la_commune": "STE MONDANE", "libell_d_acheminement": "STE MONDANE", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24470"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c46a5146f0fc05cd45baa7431d0cbe45ed76cb1", "fields": {"nom_de_la_commune": "STE ORSE", "libell_d_acheminement": "STE ORSE", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24473"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7caa85ef4aafae9754b37d60fe98417988eab4f8", "fields": {"nom_de_la_commune": "ST PAUL LIZONNE", "libell_d_acheminement": "ST PAUL LIZONNE", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24482"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2115c8ccbb25292758bd94e23980cca9c3a2ba0b", "fields": {"nom_de_la_commune": "ST PERDOUX", "libell_d_acheminement": "ST PERDOUX", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24483"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0463940f168c30441664fa698ac492ce1cb3c246", "fields": {"nom_de_la_commune": "ST PIERRE DE COLE", "libell_d_acheminement": "ST PIERRE DE COLE", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24485"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33906807ed0b7ef327e6c27ede5507cf8c9c9fa8", "fields": {"nom_de_la_commune": "ST PRIVAT DES PRES", "libell_d_acheminement": "ST PRIVAT DES PRES", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24490"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7f3478aaf39bc82b8809f7f2aeb21bda420f987", "fields": {"nom_de_la_commune": "ST ROMAIN DE MONPAZIER", "libell_d_acheminement": "ST ROMAIN DE MONPAZIER", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24495"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ab935af47a5bf3215ddbbdc54e9a00cdf93704", "fields": {"nom_de_la_commune": "ST SAUD LACOUSSIERE", "libell_d_acheminement": "ST SAUD LACOUSSIERE", "code_postal": "24470", "coordonnees_gps": [45.5151211984, 0.802361572826], "code_commune_insee": "24498"}, "geometry": {"type": "Point", "coordinates": [0.802361572826, 45.5151211984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fda3d2b6e48c5734eafafddd95cf56e6ad8d0489", "fields": {"nom_de_la_commune": "ST SAUVEUR LALANDE", "libell_d_acheminement": "ST SAUVEUR LALANDE", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24500"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "745e87caf9a5127d1903408813b10517dcdba9aa", "fields": {"nom_de_la_commune": "SALAGNAC", "libell_d_acheminement": "SALAGNAC", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24515"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b283dcba367e8c6676005d446377a9cc0095e7f3", "fields": {"code_postal": "24160", "code_commune_insee": "24515", "libell_d_acheminement": "SALAGNAC", "ligne_5": "CLAIRVIVRE", "nom_de_la_commune": "SALAGNAC", "coordonnees_gps": [45.3309222915, 1.08220119704]}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1b25b0ce0d9dde837df62458365e27cf3bcdd42", "fields": {"nom_de_la_commune": "SARLANDE", "libell_d_acheminement": "SARLANDE", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24519"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54f219d5a1d7f579121db6594f22eef2b963be5f", "fields": {"nom_de_la_commune": "SARLAT LA CANEDA", "libell_d_acheminement": "SARLAT LA CANEDA", "code_postal": "24200", "coordonnees_gps": [44.8967974347, 1.21768347065], "code_commune_insee": "24520"}, "geometry": {"type": "Point", "coordinates": [1.21768347065, 44.8967974347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a1edf43ee4445bbafcda97246e6ee008dd068e", "fields": {"nom_de_la_commune": "SAVIGNAC DE MIREMONT", "libell_d_acheminement": "SAVIGNAC DE MIREMONT", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24524"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86bbc7ecd52db761b48a639e389f628ff6ed41c8", "fields": {"nom_de_la_commune": "SCEAU ST ANGEL", "libell_d_acheminement": "SCEAU ST ANGEL", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24528"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b8602b81bb0b951fda1c1e3893a0e387fcf669b", "fields": {"nom_de_la_commune": "SIORAC DE RIBERAC", "libell_d_acheminement": "SIORAC DE RIBERAC", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24537"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96f12e76bf420bf9a3b9654114add9d6c52d3e0", "fields": {"nom_de_la_commune": "TERRASSON LAVILLEDIEU", "libell_d_acheminement": "TERRASSON LAVILLEDIEU", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24547"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcfc0967a8772d68dd21de69341c6b5c90e13ce7", "fields": {"code_postal": "24240", "code_commune_insee": "24549", "libell_d_acheminement": "THENAC", "ligne_5": "MONBOS", "nom_de_la_commune": "THENAC", "coordonnees_gps": [44.7790390603, 0.38999404584]}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce07d1b262c034bb3fdb8252624086a87cdcce55", "fields": {"nom_de_la_commune": "THENON", "libell_d_acheminement": "THENON", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24550"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd436667fc9b3a19fc8a4fb50c6df7887aca4c6e", "fields": {"nom_de_la_commune": "THIVIERS", "libell_d_acheminement": "THIVIERS", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24551"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8599fd1cb4125305e942aaf673cacfa6d22f36", "fields": {"nom_de_la_commune": "TOURTOIRAC", "libell_d_acheminement": "TOURTOIRAC", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24555"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f3da932b02b23d5c5fad4a14609ea1995443502", "fields": {"nom_de_la_commune": "TRELISSAC", "libell_d_acheminement": "TRELISSAC", "code_postal": "24750", "coordonnees_gps": [45.1801193657, 0.766939907734], "code_commune_insee": "24557"}, "geometry": {"type": "Point", "coordinates": [0.766939907734, 45.1801193657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681e678c91d58166e78c444633f1d7a76b0e492a", "fields": {"nom_de_la_commune": "TURSAC", "libell_d_acheminement": "TURSAC", "code_postal": "24620", "coordonnees_gps": [44.9543754146, 1.07528659092], "code_commune_insee": "24559"}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df749b7c8f007f77b6d6e953a9faa8f1edfdba95", "fields": {"nom_de_la_commune": "VALOJOULX", "libell_d_acheminement": "VALOJOULX", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24563"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eb5338b7fcd1162cd8aa28e09e95e194652249c", "fields": {"nom_de_la_commune": "VENDOIRE", "libell_d_acheminement": "VENDOIRE", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24569"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc2380a3b7a0ee16ee056538d7a1b6d1c3142397", "fields": {"nom_de_la_commune": "VERDON", "libell_d_acheminement": "VERDON", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24570"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de21e8858386dfcc835ee86f6f8927957e9dc797", "fields": {"nom_de_la_commune": "VEYRINES DE VERGT", "libell_d_acheminement": "VEYRINES DE VERGT", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24576"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff6abaf7beda39f0ad6b21a20613d15fffa47c1c", "fields": {"nom_de_la_commune": "VILLETOUREIX", "libell_d_acheminement": "VILLETOUREIX", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24586"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea649e150142a872ae51ce975d33093b88250a3", "fields": {"nom_de_la_commune": "ABBANS DESSOUS", "libell_d_acheminement": "ABBANS DESSOUS", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25001"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721e9ee3dab8cfd3c7644a057b3dd06b0cba5b24", "fields": {"nom_de_la_commune": "ABBENANS", "libell_d_acheminement": "ABBENANS", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25003"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc6a512882dfe07178d6823b3aa361631e6a8dd", "fields": {"nom_de_la_commune": "ACCOLANS", "libell_d_acheminement": "ACCOLANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25005"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e1d8ecd02cf725df6b07500eb28ff820148dde9", "fields": {"nom_de_la_commune": "LES ALLIES", "libell_d_acheminement": "LES ALLIES", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25012"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73ce3e89699bc1babb5439222c993eb141ecffff", "fields": {"nom_de_la_commune": "ANTEUIL", "libell_d_acheminement": "ANTEUIL", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25018"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236999bfc660741cb71fdb6d6c59bad191624032", "fields": {"code_postal": "25340", "code_commune_insee": "25018", "libell_d_acheminement": "ANTEUIL", "ligne_5": "GLAINANS", "nom_de_la_commune": "ANTEUIL", "coordonnees_gps": [47.4070964516, 6.49278525821]}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bbb3a6a003f52610b4500a59a41137e17000cb", "fields": {"code_postal": "25340", "code_commune_insee": "25018", "libell_d_acheminement": "ANTEUIL", "ligne_5": "TOURNEDOZ", "nom_de_la_commune": "ANTEUIL", "coordonnees_gps": [47.4070964516, 6.49278525821]}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11740caf2fc7fe584f9a5311f3eac0e037baa4bf", "fields": {"nom_de_la_commune": "AUTECHAUX", "libell_d_acheminement": "AUTECHAUX", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25032"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "356be39cd0e57981597c7764a1742eb0fed2982d", "fields": {"nom_de_la_commune": "AVANNE AVENEY", "libell_d_acheminement": "AVANNE AVENEY", "code_postal": "25720", "coordonnees_gps": [47.1886369614, 5.98434041211], "code_commune_insee": "25036"}, "geometry": {"type": "Point", "coordinates": [5.98434041211, 47.1886369614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ec045c3ce03fa52a4d8fa7cc815cd564e89020", "fields": {"nom_de_la_commune": "LE BARBOUX", "libell_d_acheminement": "LE BARBOUX", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25042"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f225805d28d944dd2c71a5ae0d4b01fd3833c5f", "fields": {"nom_de_la_commune": "BARTHERANS", "libell_d_acheminement": "BARTHERANS", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25044"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcc7d55a2b4f6f7de073931e4908cb18430eb672", "fields": {"code_postal": "25110", "code_commune_insee": "25047", "libell_d_acheminement": "BAUME LES DAMES", "ligne_5": "CHAMPVANS LES BAUME", "nom_de_la_commune": "BAUME LES DAMES", "coordonnees_gps": [47.3533733684, 6.36786795727]}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82ffea9a94153db0cbe1266195a690e4b84f8a14", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25052"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7980af00d9a13cf63a14e678db2f7d207dc8d76c", "fields": {"nom_de_la_commune": "BELVOIR", "libell_d_acheminement": "BELVOIR", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25053"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b574f14a9ea4a93a97b39a824c2a37ddbc6e4ff7", "fields": {"nom_de_la_commune": "BEUTAL", "libell_d_acheminement": "BEUTAL", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25059"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "804c1da4ec1b29fa6ff410f7a20c2368cccbcb7f", "fields": {"nom_de_la_commune": "BLARIANS", "libell_d_acheminement": "BLARIANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25065"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "093945cbf42d9e4761387950b227c76d82a918f3", "fields": {"nom_de_la_commune": "BLUSSANGEAUX", "libell_d_acheminement": "BLUSSANGEAUX", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25066"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd56265d6d889a7702b14b46a05000317ad5417", "fields": {"nom_de_la_commune": "BULLE", "libell_d_acheminement": "BULLE", "code_postal": "25560", "coordonnees_gps": [46.8660725266, 6.16436360021], "code_commune_insee": "25100"}, "geometry": {"type": "Point", "coordinates": [6.16436360021, 46.8660725266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0711312ebaf831e667ed4501ab09f10c47bb3c8d", "fields": {"code_postal": "25170", "code_commune_insee": "25101", "libell_d_acheminement": "BURGILLE", "ligne_5": "CHAZOY", "nom_de_la_commune": "BURGILLE", "coordonnees_gps": [47.2664378485, 5.83042087003]}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1fd57a4f84b37a716df69531889624184822634", "fields": {"nom_de_la_commune": "BURNEVILLERS", "libell_d_acheminement": "BURNEVILLERS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25102"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ba09d47d4f8fa23306ff888342ec126f4a33b5d", "fields": {"nom_de_la_commune": "BOURGEAUVILLE", "libell_d_acheminement": "BOURGEAUVILLE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14091"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3b8e1e157e32fddab13f91093b031678379709c", "fields": {"nom_de_la_commune": "BRETTEVILLE L ORGUEILLEUSE", "libell_d_acheminement": "BRETTEVILLE L ORGUEILLEUSE", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14098"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ce4fea263e399aeda0b7dd2c8357664a22b17d", "fields": {"nom_de_la_commune": "BRETTEVILLE SUR DIVES", "libell_d_acheminement": "BRETTEVILLE SUR DIVES", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14099"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b06ddcb0fac0db4faf29e682e0096bb1bf9e11e", "fields": {"nom_de_la_commune": "LE BREVEDENT", "libell_d_acheminement": "LE BREVEDENT", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14104"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2f9ff10c36c55cbf8035c0152fb8dd1838ecddf", "fields": {"nom_de_la_commune": "BRUCOURT", "libell_d_acheminement": "BRUCOURT", "code_postal": "14160", "coordonnees_gps": [49.26400102, -0.084436900338], "code_commune_insee": "14110"}, "geometry": {"type": "Point", "coordinates": [-0.084436900338, 49.26400102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94243afda16a94a1058d4ed997058c4e18b9e27e", "fields": {"nom_de_la_commune": "CAMBREMER", "libell_d_acheminement": "CAMBREMER", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14126"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "190a2995ac50ad248dc2b679bd8bd1d05ade8823", "fields": {"code_postal": "14340", "code_commune_insee": "14126", "libell_d_acheminement": "CAMBREMER", "ligne_5": "GRANDOUET", "nom_de_la_commune": "CAMBREMER", "coordonnees_gps": [49.1715682628, 0.0767124030123]}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cca6d43e87f7e300c9912d66b007320d3495bc0", "fields": {"nom_de_la_commune": "CAMPIGNY", "libell_d_acheminement": "CAMPIGNY", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14130"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea660d4b6f22bd8a0e6a4a92ec305c63d3ebfacc", "fields": {"nom_de_la_commune": "CARPIQUET", "libell_d_acheminement": "CARPIQUET", "code_postal": "14650", "coordonnees_gps": [49.1865854143, -0.450845526758], "code_commune_insee": "14137"}, "geometry": {"type": "Point", "coordinates": [-0.450845526758, 49.1865854143]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee88aa907e14a3ec15d85eba3e353f2f0946977a", "fields": {"nom_de_la_commune": "CINTHEAUX", "libell_d_acheminement": "CINTHEAUX", "code_postal": "14680", "coordonnees_gps": [49.0558845153, -0.321596506267], "code_commune_insee": "14160"}, "geometry": {"type": "Point", "coordinates": [-0.321596506267, 49.0558845153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece27676ed77a9ad6c3f97164dc5953e8a16ea01", "fields": {"nom_de_la_commune": "CLARBEC", "libell_d_acheminement": "CLARBEC", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14161"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bff877d86b30d7b553be02ff8cc61d515eab0b7", "fields": {"nom_de_la_commune": "COLLEVILLE MONTGOMERY", "libell_d_acheminement": "COLLEVILLE MONTGOMERY", "code_postal": "14880", "coordonnees_gps": [49.2791350084, -0.312303050081], "code_commune_insee": "14166"}, "geometry": {"type": "Point", "coordinates": [-0.312303050081, 49.2791350084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc7b158c4a854cca7c08648dea95605965132cfb", "fields": {"nom_de_la_commune": "COLOMBIERS SUR SEULLES", "libell_d_acheminement": "COLOMBIERS SUR SEULLES", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14169"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f355518dded941621e2828c4500210b54d901f", "fields": {"code_postal": "14770", "code_commune_insee": "14174", "libell_d_acheminement": "CONDE EN NORMANDIE", "ligne_5": "LENAULT", "nom_de_la_commune": "CONDE EN NORMANDIE", "coordonnees_gps": [48.9262068, -0.631065513494]}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0dc2ab8c89e2da77b972151160abab4e4979a8d", "fields": {"nom_de_la_commune": "CONTEVILLE", "libell_d_acheminement": "CONTEVILLE", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14176"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae970350d486642896e8ee502a378c47ab06f126", "fields": {"nom_de_la_commune": "CORDEY", "libell_d_acheminement": "CORDEY", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14180"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "564f12bacc264dab7e6f66823739e0063814a21f", "fields": {"nom_de_la_commune": "COURSEULLES SUR MER", "libell_d_acheminement": "COURSEULLES SUR MER", "code_postal": "14470", "coordonnees_gps": [49.3187007817, -0.465940150296], "code_commune_insee": "14191"}, "geometry": {"type": "Point", "coordinates": [-0.465940150296, 49.3187007817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "252501b724539a8a64fdc051c7b97f9a4c01c71d", "fields": {"nom_de_la_commune": "CREPON", "libell_d_acheminement": "CREPON", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14196"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3b21702f1813c23d477379f72c259f4c4ba1d50", "fields": {"nom_de_la_commune": "CRICQUEVILLE EN BESSIN", "libell_d_acheminement": "CRICQUEVILLE EN BESSIN", "code_postal": "14450", "coordonnees_gps": [49.3773022601, -1.01912663237], "code_commune_insee": "14204"}, "geometry": {"type": "Point", "coordinates": [-1.01912663237, 49.3773022601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f2c071ad8f985aeb2da50726c58d400d39da3ca", "fields": {"nom_de_la_commune": "CROISILLES", "libell_d_acheminement": "CROISILLES", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14207"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a24223570b7ce376ff82eccbdfeef90d6fdabc5d", "fields": {"nom_de_la_commune": "DAMBLAINVILLE", "libell_d_acheminement": "DAMBLAINVILLE", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14216"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f644daf36727892ae30b9c77c2ae6a90b4b5cfdc", "fields": {"nom_de_la_commune": "DANESTAL", "libell_d_acheminement": "DANESTAL", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14218"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cea8c45ddfe80ec0768d5ff804c6f7c54ef22ca", "fields": {"nom_de_la_commune": "DANVOU LA FERRIERE", "libell_d_acheminement": "DANVOU LA FERRIERE", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14219"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e0c991235eba091ec6c1dc7ffd91d39abc95a75", "fields": {"nom_de_la_commune": "DEAUVILLE", "libell_d_acheminement": "DEAUVILLE", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14220"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04fd96ee3744245f8559607e556998026875de60", "fields": {"nom_de_la_commune": "LE DETROIT", "libell_d_acheminement": "LE DETROIT", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14223"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5b79335a2bc398653a04720051600f8ec19d99", "fields": {"nom_de_la_commune": "DEUX JUMEAUX", "libell_d_acheminement": "DEUX JUMEAUX", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14224"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b61c56832fad967301869f572f64460d4332d9", "fields": {"nom_de_la_commune": "DIVES SUR MER", "libell_d_acheminement": "DIVES SUR MER", "code_postal": "14160", "coordonnees_gps": [49.26400102, -0.084436900338], "code_commune_insee": "14225"}, "geometry": {"type": "Point", "coordinates": [-0.084436900338, 49.26400102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d0d3b5d98d38fa065fdae8d74a2048156bc2c8", "fields": {"nom_de_la_commune": "BEAUFOUR DRUVAL", "libell_d_acheminement": "BEAUFOUR DRUVAL", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14231"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "026acab68a21b472a5457dd3e5d30e27e9c45e4d", "fields": {"nom_de_la_commune": "DUCY STE MARGUERITE", "libell_d_acheminement": "DUCY STE MARGUERITE", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14232"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2952601ea21de0c652649ab58047f7f020c0be7", "fields": {"nom_de_la_commune": "ENGLESQUEVILLE EN AUGE", "libell_d_acheminement": "ENGLESQUEVILLE EN AUGE", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14238"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aaa501f335cf80534e4fc77a1b29dd878033ddb", "fields": {"nom_de_la_commune": "EPRON", "libell_d_acheminement": "EPRON", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14242"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5cdf64b9d93b4d730710f5eb0189d9f40495c1", "fields": {"nom_de_la_commune": "EQUEMAUVILLE", "libell_d_acheminement": "EQUEMAUVILLE", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14243"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbea68dec320165caae449124d5cdbf96ff77504", "fields": {"nom_de_la_commune": "ESQUAY NOTRE DAME", "libell_d_acheminement": "ESQUAY NOTRE DAME", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14249"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fef8e65742f74363844bccc0ba69bba0ca793f5", "fields": {"nom_de_la_commune": "ESQUAY SUR SEULLES", "libell_d_acheminement": "ESQUAY SUR SEULLES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14250"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce22725ad523138631e96931253cada4266f1f80", "fields": {"nom_de_la_commune": "FIERVILLE BRAY", "libell_d_acheminement": "FIERVILLE BRAY", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14268"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9faa209780a91b9e50f90e1a50eab176378b6059", "fields": {"code_postal": "14190", "code_commune_insee": "14268", "libell_d_acheminement": "FIERVILLE BRAY", "ligne_5": "BRAY LA CAMPAGNE", "nom_de_la_commune": "FIERVILLE BRAY", "coordonnees_gps": [49.0218805149, -0.23188447049]}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417cb2872b405fc6b768d71a553d09c7a8a31a3b", "fields": {"nom_de_la_commune": "FIRFOL", "libell_d_acheminement": "FIRFOL", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14270"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "001bb00e5dc9e166994e0f3a8c0683687ff9ec28", "fields": {"nom_de_la_commune": "FONTENAY LE MARMION", "libell_d_acheminement": "FONTENAY LE MARMION", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14277"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "131e8e105f0d90511751059ec1c294aff713b747", "fields": {"nom_de_la_commune": "FRESNE LA MERE", "libell_d_acheminement": "FRESNE LA MERE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14289"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "159f368c4f409c28324cf660490f23a04754b3f6", "fields": {"nom_de_la_commune": "GARCELLES SECQUEVILLE", "libell_d_acheminement": "GARCELLES SECQUEVILLE", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14294"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188ff4436b20119753c3950459d133308974cb22", "fields": {"nom_de_la_commune": "GLOS", "libell_d_acheminement": "GLOS", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14303"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d532afa6fbf057edc6e52b9f2be87891b26a1b8", "fields": {"nom_de_la_commune": "GONNEVILLE SUR MER", "libell_d_acheminement": "GONNEVILLE SUR MER", "code_postal": "14510", "coordonnees_gps": [49.291418226, -0.0438772429905], "code_commune_insee": "14305"}, "geometry": {"type": "Point", "coordinates": [-0.0438772429905, 49.291418226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbf7f8d76b6e029197e884bdde02b5ce59eb093e", "fields": {"nom_de_la_commune": "GRANDCHAMP LE CHATEAU", "libell_d_acheminement": "GRANDCHAMP LE CHATEAU", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14313"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85beaf1cb9b8140af4af6a206876a349d3941e25", "fields": {"nom_de_la_commune": "GRANGUES", "libell_d_acheminement": "GRANGUES", "code_postal": "14160", "coordonnees_gps": [49.26400102, -0.084436900338], "code_commune_insee": "14316"}, "geometry": {"type": "Point", "coordinates": [-0.084436900338, 49.26400102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00ae1349352b458ac30c2cf69175f30b4db74cf", "fields": {"nom_de_la_commune": "HERMIVAL LES VAUX", "libell_d_acheminement": "HERMIVAL LES VAUX", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14326"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ac7806164b1648e7ba879f057925ba5996f86b", "fields": {"nom_de_la_commune": "HIEVILLE", "libell_d_acheminement": "HIEVILLE", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14331"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b929f53666b3f99abe02345792bde2ba34d7f9d", "fields": {"code_postal": "14430", "code_commune_insee": "14335", "libell_d_acheminement": "HOTOT EN AUGE", "ligne_5": "BROCOTTES", "nom_de_la_commune": "HOTOT EN AUGE", "coordonnees_gps": [49.2183532057, -0.0305664652154]}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd41076458cdacc82d8324117966f15652b977d9", "fields": {"nom_de_la_commune": "LA HOUBLONNIERE", "libell_d_acheminement": "LA HOUBLONNIERE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14337"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a14e6f3fcd7b9897b0a67b775db407441a44646", "fields": {"nom_de_la_commune": "ISIGNY SUR MER", "libell_d_acheminement": "ISIGNY SUR MER", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14342"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa2c4bf6f1d1f47edc19dcab032a3e9a6faee276", "fields": {"nom_de_la_commune": "LES ISLES BARDEL", "libell_d_acheminement": "LES ISLES BARDEL", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14343"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2b5dceda139142ef5d95272ea8be6bdba261f0", "fields": {"nom_de_la_commune": "JORT", "libell_d_acheminement": "JORT", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14345"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c238bb6bfc2ecf97bea5b3173370b9a305a2c841", "fields": {"nom_de_la_commune": "JUVIGNY SUR SEULLES", "libell_d_acheminement": "JUVIGNY SUR SEULLES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14348"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76fc43fad57a6de6e1e9d921e1210c7cf119e006", "fields": {"nom_de_la_commune": "LAIZE LA VILLE", "libell_d_acheminement": "LAIZE LA VILLE", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14349"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d461c6a3e6c6986d54c548cd5ccd23dc5f1ba14", "fields": {"nom_de_la_commune": "LANDELLES ET COUPIGNY", "libell_d_acheminement": "LANDELLES ET COUPIGNY", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14352"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95a89ef0005b465c89218749de066175dd046a31", "fields": {"code_postal": "14380", "code_commune_insee": "14352", "libell_d_acheminement": "LANDELLES ET COUPIGNY", "ligne_5": "ANNEBECQ", "nom_de_la_commune": "LANDELLES ET COUPIGNY", "coordonnees_gps": [48.8544817922, -1.0273831979]}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2dd8e3ae25a9e0be44c9c2856c174f0b0076a2", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LE MESNIL GERMAIN", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fee52ce11cae1f5de08a0bf7ffa1c2ddb0d6bfe", "fields": {"code_postal": "14290", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "CERQUEUX", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35975ad9ff0e6da84ffea1844bac15aa51efe260", "fields": {"code_postal": "14290", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "MEULLES", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b505b79e174352ae5b64b59bb0a92755893c7353", "fields": {"nom_de_la_commune": "MAISONCELLES PELVEY", "libell_d_acheminement": "MAISONCELLES PELVEY", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14389"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da0615677de59f3ea770fe2fac38a7993cf19928", "fields": {"nom_de_la_commune": "MAISONCELLES SUR AJON", "libell_d_acheminement": "MAISONCELLES SUR AJON", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14390"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f56b4e892d9418d5e89b6d886a8aee58baa86e7b", "fields": {"nom_de_la_commune": "LE MANOIR", "libell_d_acheminement": "LE MANOIR", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14400"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6faa0d3d560987561201393b94e4be184c50149c", "fields": {"nom_de_la_commune": "MANVIEUX", "libell_d_acheminement": "MANVIEUX", "code_postal": "14117", "coordonnees_gps": [49.3341466257, -0.646070140255], "code_commune_insee": "14401"}, "geometry": {"type": "Point", "coordinates": [-0.646070140255, 49.3341466257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179d4e80bd8f70c50ef111e332e36a643ec74b8f", "fields": {"nom_de_la_commune": "MARTAINVILLE", "libell_d_acheminement": "MARTAINVILLE", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14404"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d3ad90c0a57ef5744172810ddbd4fb5a3050a5", "fields": {"nom_de_la_commune": "LE MESNIL ROBERT", "libell_d_acheminement": "LE MESNIL ROBERT", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14424"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0100bef53ffbc606663c021cc1f00607d7402382", "fields": {"nom_de_la_commune": "MEUVAINES", "libell_d_acheminement": "MEUVAINES", "code_postal": "14960", "coordonnees_gps": [49.3273918281, -0.583379928435], "code_commune_insee": "14430"}, "geometry": {"type": "Point", "coordinates": [-0.583379928435, 49.3273918281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2662df738f05768bae7b8085713bc0c27996ade2", "fields": {"nom_de_la_commune": "MEZIDON CANON", "libell_d_acheminement": "MEZIDON CANON", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14431"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af2a6ee51310764289a9b84a65e957fff9696c6", "fields": {"nom_de_la_commune": "MONTEILLE", "libell_d_acheminement": "MONTEILLE", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14444"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5740e1cc8bd94f3a996036dc275f4020239c64d", "fields": {"nom_de_la_commune": "MONTIGNY", "libell_d_acheminement": "MONTIGNY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14446"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb56f778ae0b64f05e81802771054d2ceaffb217", "fields": {"nom_de_la_commune": "MONTVIETTE", "libell_d_acheminement": "MONTVIETTE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14450"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86156b1862e980eacfd9bf682dad011dd89c39d8", "fields": {"nom_de_la_commune": "MORTEAUX COULIBOEUF", "libell_d_acheminement": "MORTEAUX COULIBOEUF", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14452"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75c0d7da192eaf829c6bfccada69c0a163221c3", "fields": {"nom_de_la_commune": "LES MOUTIERS EN AUGE", "libell_d_acheminement": "LES MOUTIERS EN AUGE", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14457"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9375976b5410f47f88c17d9202dab68f74fb9d", "fields": {"nom_de_la_commune": "MUTRECY", "libell_d_acheminement": "MUTRECY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14461"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc5fbe3130151b132cd42a44b379f0d9403ed1d2", "fields": {"nom_de_la_commune": "NEUILLY LA FORET", "libell_d_acheminement": "NEUILLY LA FORET", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14462"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6e9120dc71ac74c5225f73bb335b190de76ae21", "fields": {"nom_de_la_commune": "NOTRE DAME D ESTREES CORBON", "libell_d_acheminement": "NOTRE DAME D ESTREES CORBON", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14474"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d7903c946c62b1cc784973da1699cb59aa45cff", "fields": {"nom_de_la_commune": "OSMANVILLE", "libell_d_acheminement": "OSMANVILLE", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14480"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6865872e9dffbfd9bc3fa4458d44dc8c218cc81", "fields": {"nom_de_la_commune": "OUEZY", "libell_d_acheminement": "OUEZY", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14482"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "997dc67bee5139064310f8aebdfc3facffe0e728", "fields": {"nom_de_la_commune": "OUILLY LE TESSON", "libell_d_acheminement": "OUILLY LE TESSON", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14486"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de5f38d45b69b974d8fda9902bcd1a8bfad2eacf", "fields": {"nom_de_la_commune": "PIERREPONT", "libell_d_acheminement": "PIERREPONT", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14502"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09a7a722757395f77db61c863db575939d9a08b7", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "14590", "coordonnees_gps": [49.1904396509, 0.349344847336], "code_commune_insee": "14504"}, "geometry": {"type": "Point", "coordinates": [0.349344847336, 49.1904396509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cc450641c91f956e357583c70afb628b8cd60b1", "fields": {"nom_de_la_commune": "LA POMMERAYE", "libell_d_acheminement": "LA POMMERAYE", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14510"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04e313849712b870bb1f88fcc67a18effa1bba7d", "fields": {"nom_de_la_commune": "PONT FARCY", "libell_d_acheminement": "PONT FARCY", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14513"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9186d745d174eec0774535327abaaa4f624f5669", "fields": {"nom_de_la_commune": "PORT EN BESSIN HUPPAIN", "libell_d_acheminement": "PORT EN BESSIN HUPPAIN", "code_postal": "14520", "coordonnees_gps": [49.3400701436, -0.771788294928], "code_commune_insee": "14515"}, "geometry": {"type": "Point", "coordinates": [-0.771788294928, 49.3400701436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e85a3041452657ae3d1bbd31d3fcfc0e62fcd4c6", "fields": {"nom_de_la_commune": "RANCHY", "libell_d_acheminement": "RANCHY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14529"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ebd2bbcdc0420752c607e6edbb95cd39667b0ae", "fields": {"nom_de_la_commune": "RAPILLY", "libell_d_acheminement": "RAPILLY", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14531"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25ac5a3196f5aeb2ce566ef71b4dd292140800af", "fields": {"code_postal": "14740", "code_commune_insee": "14543", "libell_d_acheminement": "ROTS", "ligne_5": "LASSON", "nom_de_la_commune": "ROTS", "coordonnees_gps": [49.2134618013, -0.521360272238]}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59bbff55dd1f3bb7bcc5d8727bc0c58160a32b67", "fields": {"nom_de_la_commune": "ROTS", "libell_d_acheminement": "ROTS", "code_postal": "14980", "coordonnees_gps": [49.2061554595, -0.475359842296], "code_commune_insee": "14543"}, "geometry": {"type": "Point", "coordinates": [-0.475359842296, 49.2061554595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae984fda8d2827d5d651a4a70c01630b4ec7e97f", "fields": {"nom_de_la_commune": "RUBERCY", "libell_d_acheminement": "RUBERCY", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14547"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7acbb8c081608f20111b6f83d1e745291367120", "fields": {"nom_de_la_commune": "RUMESNIL", "libell_d_acheminement": "RUMESNIL", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14550"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0be42ae30550e8fa527fb6533a4c71958c30852d", "fields": {"nom_de_la_commune": "RYES", "libell_d_acheminement": "RYES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14552"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e39782e9732cc7e5ea921562178b6fd7d01bf58", "fields": {"nom_de_la_commune": "ST ARNOULT", "libell_d_acheminement": "ST ARNOULT", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14557"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4d6cae04b9d75618d633f4eedb129d6c48257d6", "fields": {"nom_de_la_commune": "ST BENOIT D HEBERTOT", "libell_d_acheminement": "ST BENOIT D HEBERTOT", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14563"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4209fe5e78aa8c4e5a2d7aab7bd6e3a5c9a0f1f6", "fields": {"code_postal": "14290", "code_commune_insee": "14570", "libell_d_acheminement": "VALORBIQUET", "ligne_5": "ST CYR DU RONCERAY", "nom_de_la_commune": "VALORBIQUET", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4670b4ba90520221aea8a1acf6213809aa573db2", "fields": {"code_postal": "14290", "code_commune_insee": "14570", "libell_d_acheminement": "VALORBIQUET", "ligne_5": "TORDOUET", "nom_de_la_commune": "VALORBIQUET", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc08053a0e7ad447867266fad5d979e546d0177", "fields": {"code_postal": "14140", "code_commune_insee": "14576", "libell_d_acheminement": "VAL DE VIE", "ligne_5": "LA BREVIERE", "nom_de_la_commune": "VAL DE VIE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c2d9b7586904d2eabbb2976a763cdf430cd145", "fields": {"nom_de_la_commune": "ST GERMAIN LANGOT", "libell_d_acheminement": "ST GERMAIN LANGOT", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14588"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10ae245562f4e857822ce3d0823f237d05ef0e5", "fields": {"nom_de_la_commune": "STE HONORINE DU FAY", "libell_d_acheminement": "STE HONORINE DU FAY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14592"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc89f56b8f0c92996e543359f4a13d7d8240afdf", "fields": {"nom_de_la_commune": "ST JULIEN SUR CALONNE", "libell_d_acheminement": "ST JULIEN SUR CALONNE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14601"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f2ea96aa974b127fdae5a04067952569c13a88d", "fields": {"nom_de_la_commune": "ST LAMBERT", "libell_d_acheminement": "ST LAMBERT", "code_postal": "14570", "coordonnees_gps": [48.9153171843, -0.506427417582], "code_commune_insee": "14602"}, "geometry": {"type": "Point", "coordinates": [-0.506427417582, 48.9153171843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59df277f2db7b1ead5cd82d58cbe775f3a4cd492", "fields": {"nom_de_la_commune": "ST LOUET SUR SEULLES", "libell_d_acheminement": "ST LOUET SUR SEULLES", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14607"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9513853c21be0541ab80c42b28936967625c5f", "fields": {"nom_de_la_commune": "STE MARGUERITE D ELLE", "libell_d_acheminement": "STE MARGUERITE D ELLE", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14614"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a827405cffbce400d89371113a2677b279fb088a", "fields": {"nom_de_la_commune": "BORDEAUX", "libell_d_acheminement": "BORDEAUX", "code_postal": "33200", "coordonnees_gps": [44.8579384389, -0.573595011059], "code_commune_insee": "33063"}, "geometry": {"type": "Point", "coordinates": [-0.573595011059, 44.8579384389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebf8500855f1e53eb1edcb1c7c5e18e9ca2759e7", "fields": {"nom_de_la_commune": "BOULIAC", "libell_d_acheminement": "BOULIAC", "code_postal": "33270", "coordonnees_gps": [44.8258167302, -0.513262421066], "code_commune_insee": "33065"}, "geometry": {"type": "Point", "coordinates": [-0.513262421066, 44.8258167302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4d49b5516801e191dc14cace6725d0fa111f5bb", "fields": {"nom_de_la_commune": "BRACH", "libell_d_acheminement": "BRACH", "code_postal": "33480", "coordonnees_gps": [45.0106483018, -0.859128963466], "code_commune_insee": "33070"}, "geometry": {"type": "Point", "coordinates": [-0.859128963466, 45.0106483018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92c12488f615d7b2b195fa140832507ed51b205a", "fields": {"nom_de_la_commune": "BUDOS", "libell_d_acheminement": "BUDOS", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33076"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ec26657352b1415fb13baf291a44518aed63bcd", "fields": {"nom_de_la_commune": "CABARA", "libell_d_acheminement": "CABARA", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33078"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0f9a2a2641b73ec6523b601caf47145c2390a9b", "fields": {"nom_de_la_commune": "CADAUJAC", "libell_d_acheminement": "CADAUJAC", "code_postal": "33140", "coordonnees_gps": [44.7623336559, -0.546471923225], "code_commune_insee": "33080"}, "geometry": {"type": "Point", "coordinates": [-0.546471923225, 44.7623336559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c93b35706f58fa86c86e249b9e1eae108e7087aa", "fields": {"nom_de_la_commune": "CADILLAC", "libell_d_acheminement": "CADILLAC", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33081"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1efe8b64efd69a6ec7f46beb4ed18c9f566358d2", "fields": {"nom_de_la_commune": "CAMARSAC", "libell_d_acheminement": "CAMARSAC", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33083"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b64e43e94f5314a33925f3be4a1535db290dcb02", "fields": {"nom_de_la_commune": "CAMPS SUR L ISLE", "libell_d_acheminement": "CAMPS SUR L ISLE", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33088"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51fdaca458551df7b08adbaf4013178c1e991553", "fields": {"nom_de_la_commune": "CANEJAN", "libell_d_acheminement": "CANEJAN", "code_postal": "33610", "coordonnees_gps": [44.7278908774, -0.719193509806], "code_commune_insee": "33090"}, "geometry": {"type": "Point", "coordinates": [-0.719193509806, 44.7278908774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9346e20090cb74145660f5d05a077e68cc8dc140", "fields": {"code_postal": "33121", "code_commune_insee": "33097", "libell_d_acheminement": "CARCANS", "ligne_5": "CARCANS PLAGE", "nom_de_la_commune": "CARCANS", "coordonnees_gps": [45.0848035764, -1.04925222437]}, "geometry": {"type": "Point", "coordinates": [-1.04925222437, 45.0848035764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51fa767fd1efade2c2bce5a6623a97310adb29d0", "fields": {"nom_de_la_commune": "CARDAN", "libell_d_acheminement": "CARDAN", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33098"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea81edd2391892599020f743a0093f9c3261d15", "fields": {"nom_de_la_commune": "CASTELMORON D ALBRET", "libell_d_acheminement": "CASTELMORON D ALBRET", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33103"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db2e65d7196f6909d810abeea498624adcef8f8", "fields": {"nom_de_la_commune": "CASTETS EN DORTHE", "libell_d_acheminement": "CASTETS EN DORTHE", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33106"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c993a94c45c5a0ec496c5467ec0aa8066ed09db0", "fields": {"nom_de_la_commune": "CASTRES GIRONDE", "libell_d_acheminement": "CASTRES GIRONDE", "code_postal": "33640", "coordonnees_gps": [44.6903703564, -0.443613375594], "code_commune_insee": "33109"}, "geometry": {"type": "Point", "coordinates": [-0.443613375594, 44.6903703564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5aae57cdfa01f6b4e58e16afa34b9bbe7ecff08", "fields": {"nom_de_la_commune": "CIVRAC EN MEDOC", "libell_d_acheminement": "CIVRAC EN MEDOC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33128"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c939b3fc658bd429bda39849b1de4667f0c74cc", "fields": {"nom_de_la_commune": "COIMERES", "libell_d_acheminement": "COIMERES", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33130"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2abe9b055c58bca32fb4319adad217484216a193", "fields": {"nom_de_la_commune": "CREON", "libell_d_acheminement": "CREON", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33140"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a686c823f0fe7a4b95f6d41d6e36d2f75a35cfa4", "fields": {"nom_de_la_commune": "CROIGNON", "libell_d_acheminement": "CROIGNON", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33141"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633991c40d19b1d4ad597d89d05d3732dafb8a14", "fields": {"nom_de_la_commune": "CUBNEZAIS", "libell_d_acheminement": "CUBNEZAIS", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33142"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf52b82305995b83348d5adca1d090c1b50b3fe9", "fields": {"nom_de_la_commune": "CUSSAC FORT MEDOC", "libell_d_acheminement": "CUSSAC FORT MEDOC", "code_postal": "33460", "coordonnees_gps": [45.0421124486, -0.686561084632], "code_commune_insee": "33146"}, "geometry": {"type": "Point", "coordinates": [-0.686561084632, 45.0421124486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4860046df92e5486bafad6b9d6b9944e3eab819b", "fields": {"nom_de_la_commune": "DARDENAC", "libell_d_acheminement": "DARDENAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33148"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1ede64bdb2b3965468ea9ab6479fe108fd38fe", "fields": {"nom_de_la_commune": "DOULEZON", "libell_d_acheminement": "DOULEZON", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33153"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a748d956bd0d1014ea5c300a80ad9ccaa5fde922", "fields": {"nom_de_la_commune": "EYSINES", "libell_d_acheminement": "EYSINES", "code_postal": "33320", "coordonnees_gps": [44.8968698852, -0.666404713084], "code_commune_insee": "33162"}, "geometry": {"type": "Point", "coordinates": [-0.666404713084, 44.8968698852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5d841397ebbdad6bde59c76797e0571cec1710", "fields": {"nom_de_la_commune": "LE FIEU", "libell_d_acheminement": "LE FIEU", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33166"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81af80d58e278b5e10a0aac073692eb8500996f6", "fields": {"nom_de_la_commune": "FOURS", "libell_d_acheminement": "FOURS", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33172"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37f38445f3b68a084094a5e126659a4e601b453", "fields": {"nom_de_la_commune": "FRONSAC", "libell_d_acheminement": "FRONSAC", "code_postal": "33126", "coordonnees_gps": [44.9271630379, -0.290628388761], "code_commune_insee": "33174"}, "geometry": {"type": "Point", "coordinates": [-0.290628388761, 44.9271630379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d5927f15e250ee9d7515abd3e971618386291d", "fields": {"nom_de_la_commune": "GABARNAC", "libell_d_acheminement": "GABARNAC", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33176"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe9d0673149f7c786f4b2278ac1e50ba785dc4b9", "fields": {"nom_de_la_commune": "GANS", "libell_d_acheminement": "GANS", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33180"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "742d5376db18610253344162f507527b78d58884", "fields": {"nom_de_la_commune": "GREZILLAC", "libell_d_acheminement": "GREZILLAC", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33194"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02fdfaf0b25333993946202d58d18d681867c470", "fields": {"nom_de_la_commune": "LE HAILLAN", "libell_d_acheminement": "LE HAILLAN", "code_postal": "33185", "coordonnees_gps": [44.8695964659, -0.684381518492], "code_commune_insee": "33200"}, "geometry": {"type": "Point", "coordinates": [-0.684381518492, 44.8695964659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c8f2f0f52e2817e6199831bbe76360f9fa84929", "fields": {"nom_de_la_commune": "ILLATS", "libell_d_acheminement": "ILLATS", "code_postal": "33720", "coordonnees_gps": [44.5870525693, -0.418776559609], "code_commune_insee": "33205"}, "geometry": {"type": "Point", "coordinates": [-0.418776559609, 44.5870525693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a422af14e45370192a7bcc95a4e31fca5ebbca4", "fields": {"nom_de_la_commune": "JUGAZAN", "libell_d_acheminement": "JUGAZAN", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33209"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99687049c498303c8cffe89e5766604445d1c1b9", "fields": {"nom_de_la_commune": "LA BREDE", "libell_d_acheminement": "LA BREDE", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33213"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54c7bacd6d93a555e4ebe0454f21c4e8c20d7245", "fields": {"nom_de_la_commune": "LA LANDE DE FRONSAC", "libell_d_acheminement": "LA LANDE DE FRONSAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33219"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66a3cf3cde9b340f7771294fde9b7d18b5b097e1", "fields": {"nom_de_la_commune": "LANSAC", "libell_d_acheminement": "LANSAC", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33228"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12b10626d4ba09a204a008a0ca2620e0c311345d", "fields": {"nom_de_la_commune": "LAPOUYADE", "libell_d_acheminement": "LAPOUYADE", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33230"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3401bc7eca6e181d6a6444f66721846e0e6c5fab", "fields": {"nom_de_la_commune": "LEOGEATS", "libell_d_acheminement": "LEOGEATS", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33237"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272c154c4a8afea0e6754188a252519496a15773", "fields": {"nom_de_la_commune": "LES LEVES ET THOUMEYRAGUES", "libell_d_acheminement": "LES LEVES ET THOUMEYRAGUES", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33242"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f95f2e2b84f122e1380196afef9c4823594c26", "fields": {"nom_de_la_commune": "LOUCHATS", "libell_d_acheminement": "LOUCHATS", "code_postal": "33125", "coordonnees_gps": [44.5166549136, -0.635075777834], "code_commune_insee": "33251"}, "geometry": {"type": "Point", "coordinates": [-0.635075777834, 44.5166549136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07da5cf2e547ff927f4bc2f96abadfaf4e1355b5", "fields": {"nom_de_la_commune": "LOUPES", "libell_d_acheminement": "LOUPES", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33252"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4063414acdce631f8b12b6bf46ec4071faed963a", "fields": {"nom_de_la_commune": "LUCMAU", "libell_d_acheminement": "LUCMAU", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33255"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e11e8037191778b9609140bf669dffdb6469c2f", "fields": {"nom_de_la_commune": "LUDON MEDOC", "libell_d_acheminement": "LUDON MEDOC", "code_postal": "33290", "coordonnees_gps": [44.9495870677, -0.618779202684], "code_commune_insee": "33256"}, "geometry": {"type": "Point", "coordinates": [-0.618779202684, 44.9495870677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c8c515215055bf6d81001ca400fc170a91535d", "fields": {"nom_de_la_commune": "LUGASSON", "libell_d_acheminement": "LUGASSON", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33258"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "126613fe58855429810ca1d83706e8308500d054", "fields": {"nom_de_la_commune": "MARCILLAC", "libell_d_acheminement": "MARCILLAC", "code_postal": "33860", "coordonnees_gps": [45.2443910952, -0.48598346913], "code_commune_insee": "33267"}, "geometry": {"type": "Point", "coordinates": [-0.48598346913, 45.2443910952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ea913709ec571fd7a8db7cb84ecc63f3282dc01", "fields": {"nom_de_la_commune": "MARSAS", "libell_d_acheminement": "MARSAS", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33272"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eca51f02113fea5813723e28432e9d4eddda752", "fields": {"nom_de_la_commune": "MARTIGNAS SUR JALLE", "libell_d_acheminement": "MARTIGNAS SUR JALLE", "code_postal": "33127", "coordonnees_gps": [44.8025911594, -0.815024099624], "code_commune_insee": "33273"}, "geometry": {"type": "Point", "coordinates": [-0.815024099624, 44.8025911594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f77ffa21d039dba474d06bf4ffcb7d02415d802c", "fields": {"nom_de_la_commune": "MAZERES", "libell_d_acheminement": "MAZERES", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33279"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3e0facc5d8deecf43ce804fdec1c94a13802c8", "fields": {"nom_de_la_commune": "MESTERRIEUX", "libell_d_acheminement": "MESTERRIEUX", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33283"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4560211953340c4a0976e8a27cfc0aadff5cd659", "fields": {"nom_de_la_commune": "MONPRIMBLANC", "libell_d_acheminement": "MONPRIMBLANC", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33288"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92edc17a83b2bac7c3ba437979c3bb4e6081ccfe", "fields": {"nom_de_la_commune": "MOULON", "libell_d_acheminement": "MOULON", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33298"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeda8f2dde73405fe7c355f809774a7054539112", "fields": {"nom_de_la_commune": "MOURENS", "libell_d_acheminement": "MOURENS", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33299"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c805521b4d384f4193a6a523c5aee7dce362f15e", "fields": {"nom_de_la_commune": "NOAILLAN", "libell_d_acheminement": "NOAILLAN", "code_postal": "33730", "coordonnees_gps": [44.4367877198, -0.375967403077], "code_commune_insee": "33307"}, "geometry": {"type": "Point", "coordinates": [-0.375967403077, 44.4367877198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61889a17c93df29bef19f0a14c0284cc3964e5ae", "fields": {"nom_de_la_commune": "PETIT PALAIS ET CORNEMPS", "libell_d_acheminement": "PETIT PALAIS ET CORNEMPS", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33320"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f426b5c7d0dbcd718bcd639697b97a6c4b4d84da", "fields": {"nom_de_la_commune": "POMEROL", "libell_d_acheminement": "POMEROL", "code_postal": "33500", "coordonnees_gps": [44.9225723992, -0.234534859794], "code_commune_insee": "33328"}, "geometry": {"type": "Point", "coordinates": [-0.234534859794, 44.9225723992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01e23500f148771eb6b44c08634da6738f3a495", "fields": {"nom_de_la_commune": "POMPEJAC", "libell_d_acheminement": "POMPEJAC", "code_postal": "33730", "coordonnees_gps": [44.4367877198, -0.375967403077], "code_commune_insee": "33329"}, "geometry": {"type": "Point", "coordinates": [-0.375967403077, 44.4367877198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e9bcb28828c8b456cac0e4adc40106724ba34f", "fields": {"nom_de_la_commune": "PORCHERES", "libell_d_acheminement": "PORCHERES", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33332"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7bc3b3f0da9504fc35bdd98827fb47a2d827395", "fields": {"nom_de_la_commune": "LE POUT", "libell_d_acheminement": "LE POUT", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33335"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b9f8b749d238023aef878c8d1002579af437dc4", "fields": {"nom_de_la_commune": "PRECHAC", "libell_d_acheminement": "PRECHAC", "code_postal": "33730", "coordonnees_gps": [44.4367877198, -0.375967403077], "code_commune_insee": "33336"}, "geometry": {"type": "Point", "coordinates": [-0.375967403077, 44.4367877198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3246b432f2850f1434d289eda29dacc8cc7b1208", "fields": {"nom_de_la_commune": "PRIGNAC EN MEDOC", "libell_d_acheminement": "PRIGNAC EN MEDOC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33338"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a3a9b16e3217c2323c354ec04ef73c1e69867ed", "fields": {"code_postal": "33710", "code_commune_insee": "33341", "libell_d_acheminement": "PUGNAC", "ligne_5": "LAFOSSE", "nom_de_la_commune": "PUGNAC", "coordonnees_gps": [45.0625435802, -0.557284845393]}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b79c785d0f80c504df61eb0f386780f5306008c", "fields": {"nom_de_la_commune": "PUISSEGUIN", "libell_d_acheminement": "PUISSEGUIN", "code_postal": "33570", "coordonnees_gps": [44.952442946, -0.0837974329549], "code_commune_insee": "33342"}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea3b9e523405acc66a741818ecd9274e031cdf1", "fields": {"code_postal": "33570", "code_commune_insee": "33342", "libell_d_acheminement": "PUISSEGUIN", "ligne_5": "MONBADON", "nom_de_la_commune": "PUISSEGUIN", "coordonnees_gps": [44.952442946, -0.0837974329549]}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03621d17385f2f02a139047c179fae1d174598d2", "fields": {"nom_de_la_commune": "QUINSAC", "libell_d_acheminement": "QUINSAC", "code_postal": "33360", "coordonnees_gps": [44.7832045247, -0.471864525744], "code_commune_insee": "33349"}, "geometry": {"type": "Point", "coordinates": [-0.471864525744, 44.7832045247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd7950510ad2a628eba5763ff7526881afe542cc", "fields": {"nom_de_la_commune": "REIGNAC", "libell_d_acheminement": "REIGNAC", "code_postal": "33860", "coordonnees_gps": [45.2443910952, -0.48598346913], "code_commune_insee": "33351"}, "geometry": {"type": "Point", "coordinates": [-0.48598346913, 45.2443910952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f863c17f7ed24008056caa09a1c32d7b541331", "fields": {"nom_de_la_commune": "RIMONS", "libell_d_acheminement": "RIMONS", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33353"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d77ca48ec4dd22d290578a312d7a438eab1cdd4", "fields": {"nom_de_la_commune": "RUCH", "libell_d_acheminement": "RUCH", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33361"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f87c1a9a19117ec084b76bbe88d2d9b6ed60dd3", "fields": {"nom_de_la_commune": "ST AUBIN DE BRANNE", "libell_d_acheminement": "ST AUBIN DE BRANNE", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33375"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3098fa3c8d9e8c7a1e6ffdb9dc95e98f57ced8cf", "fields": {"nom_de_la_commune": "ST AVIT DE SOULEGE", "libell_d_acheminement": "ST AVIT DE SOULEGE", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33377"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "254c7378c906110827cfa2972c83b0c44c853976", "fields": {"nom_de_la_commune": "ST CAPRAIS DE BORDEAUX", "libell_d_acheminement": "ST CAPRAIS DE BORDEAUX", "code_postal": "33880", "coordonnees_gps": [44.7419112231, -0.437846181859], "code_commune_insee": "33381"}, "geometry": {"type": "Point", "coordinates": [-0.437846181859, 44.7419112231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03cdd2c80068b4eaea47fd30f05f21a78ba21354", "fields": {"nom_de_la_commune": "ST CHRISTOLY DE BLAYE", "libell_d_acheminement": "ST CHRISTOLY DE BLAYE", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33382"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e467cf5ca9d380ff0a9d43918c52365f3f6ce8", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DES BARDES", "libell_d_acheminement": "ST CHRISTOPHE DES BARDES", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33384"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19768626da8f6ccb785e021f2357daa3b109ee7", "fields": {"nom_de_la_commune": "ST CIERS DE CANESSE", "libell_d_acheminement": "ST CIERS DE CANESSE", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33388"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbecf9ae4013903c4bc5a8944c8fd534774a7a64", "fields": {"nom_de_la_commune": "ST DENIS DE PILE", "libell_d_acheminement": "ST DENIS DE PILE", "code_postal": "33910", "coordonnees_gps": [45.0105217731, -0.219646911513], "code_commune_insee": "33393"}, "geometry": {"type": "Point", "coordinates": [-0.219646911513, 45.0105217731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c2fb70708ffad3471903ea28afc452ce88342a7", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33404"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7332a5809f0fcebe94c949e63e122741f0cccd6", "fields": {"nom_de_la_commune": "ST GERMAIN DU PUCH", "libell_d_acheminement": "ST GERMAIN DU PUCH", "code_postal": "33750", "coordonnees_gps": [44.8431302489, -0.328317936664], "code_commune_insee": "33413"}, "geometry": {"type": "Point", "coordinates": [-0.328317936664, 44.8431302489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2553a1c4addc00319de1b1ab0a214db152ab97b", "fields": {"nom_de_la_commune": "ST GERVAIS", "libell_d_acheminement": "ST GERVAIS", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33415"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b653cb8286364989129fde1d3a7498b77cd4b42f", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33420"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af4c37e00f64a90a3b256fbb42c0cc7b959f929b", "fields": {"nom_de_la_commune": "ST JULIEN BEYCHEVELLE", "libell_d_acheminement": "ST JULIEN BEYCHEVELLE", "code_postal": "33250", "coordonnees_gps": [45.1927076344, -0.786704253208], "code_commune_insee": "33423"}, "geometry": {"type": "Point", "coordinates": [-0.786704253208, 45.1927076344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5caea7a880c3eee5562fba1787304238bc1d2f87", "fields": {"nom_de_la_commune": "ST LAURENT MEDOC", "libell_d_acheminement": "ST LAURENT MEDOC", "code_postal": "33112", "coordonnees_gps": [45.1404363736, -0.86226243849], "code_commune_insee": "33424"}, "geometry": {"type": "Point", "coordinates": [-0.86226243849, 45.1404363736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbff1aec675efff8dd64a92cb59ae55d9ca42f6a", "fields": {"nom_de_la_commune": "ST LAURENT D ARCE", "libell_d_acheminement": "ST LAURENT D ARCE", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33425"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80471d554d0af532816c1433d4ed78e3c2f100a", "fields": {"nom_de_la_commune": "ST LAURENT DU PLAN", "libell_d_acheminement": "ST LAURENT DU PLAN", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33428"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35773d4f24001e1df7eb6b26c5a1c633de1ad614", "fields": {"nom_de_la_commune": "ST LOUBES", "libell_d_acheminement": "ST LOUBES", "code_postal": "33450", "coordonnees_gps": [44.9120653085, -0.402159133299], "code_commune_insee": "33433"}, "geometry": {"type": "Point", "coordinates": [-0.402159133299, 44.9120653085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96304c437b570b5fb59bd82b678e31bbf194b52a", "fields": {"nom_de_la_commune": "ST MARTIN DE LERM", "libell_d_acheminement": "ST MARTIN DE LERM", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33443"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117196152cd18edcbeb159a34452e856070c7901", "fields": {"nom_de_la_commune": "ST MARTIN DE SESCAS", "libell_d_acheminement": "ST MARTIN DE SESCAS", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33444"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab17bc171f32b4c7bbbe027d32992a0fd5e1409f", "fields": {"nom_de_la_commune": "ST MICHEL DE LAPUJADE", "libell_d_acheminement": "ST MICHEL DE LAPUJADE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33453"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b005b63bf8944d9678bc0a55698756c5b08893a0", "fields": {"nom_de_la_commune": "ST MORILLON", "libell_d_acheminement": "ST MORILLON", "code_postal": "33650", "coordonnees_gps": [44.6443906154, -0.568095074709], "code_commune_insee": "33454"}, "geometry": {"type": "Point", "coordinates": [-0.568095074709, 44.6443906154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72ff29e5c23bd2b907b827e22a99e5ff0c95a61", "fields": {"nom_de_la_commune": "ST PHILIPPE DU SEIGNAL", "libell_d_acheminement": "ST PHILIPPE DU SEIGNAL", "code_postal": "33220", "coordonnees_gps": [44.8116133881, 0.20923854264], "code_commune_insee": "33462"}, "geometry": {"type": "Point", "coordinates": [0.20923854264, 44.8116133881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50b874775de31d9dfc74a96b56bad5a9b63ca441", "fields": {"nom_de_la_commune": "ST PIERRE D AURILLAC", "libell_d_acheminement": "ST PIERRE D AURILLAC", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33463"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c57dc85017db1be9ceddaf0df4c5dfab0d66ef", "fields": {"nom_de_la_commune": "ST SULPICE DE FALEYRENS", "libell_d_acheminement": "ST SULPICE DE FALEYRENS", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33480"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2241c4662959a0c1e9912153b782c766bd6c272", "fields": {"nom_de_la_commune": "ST SULPICE DE GUILLERAGUES", "libell_d_acheminement": "ST SULPICE DE GUILLERAGUES", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33481"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7297ec092d7cc27a6a05be921db8294dab253a31", "fields": {"nom_de_la_commune": "ST SULPICE DE POMMIERS", "libell_d_acheminement": "ST SULPICE DE POMMIERS", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33482"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84a457e5984a80eb035f2509832388089d6a468a", "fields": {"nom_de_la_commune": "ST SULPICE ET CAMEYRAC", "libell_d_acheminement": "ST SULPICE ET CAMEYRAC", "code_postal": "33450", "coordonnees_gps": [44.9120653085, -0.402159133299], "code_commune_insee": "33483"}, "geometry": {"type": "Point", "coordinates": [-0.402159133299, 44.9120653085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "559c941f700cd85392f76698e8f530762c500584", "fields": {"nom_de_la_commune": "ST VIVIEN DE MEDOC", "libell_d_acheminement": "ST VIVIEN DE MEDOC", "code_postal": "33590", "coordonnees_gps": [45.4294331606, -1.04372430811], "code_commune_insee": "33490"}, "geometry": {"type": "Point", "coordinates": [-1.04372430811, 45.4294331606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1824bc6f422b59b5eba84bc8e5e3b5b8c89fb160", "fields": {"nom_de_la_commune": "ST YZANS DE MEDOC", "libell_d_acheminement": "ST YZANS DE MEDOC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33493"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4fe26a40fb96e47602f7c0fac04a8a0680ef205", "fields": {"nom_de_la_commune": "SALLEBOEUF", "libell_d_acheminement": "SALLEBOEUF", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33496"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf14899634474b11508e3bdcd4ef545dbafb9122", "fields": {"nom_de_la_commune": "LES SALLES DE CASTILLON", "libell_d_acheminement": "LES SALLES DE CASTILLON", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33499"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a4fea65ec42405fd4fe38e9be83e08872897f2", "fields": {"nom_de_la_commune": "SAUTERNES", "libell_d_acheminement": "SAUTERNES", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33504"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30002f4463b0af05337b52ebc075185bf02925e8", "fields": {"nom_de_la_commune": "TABANAC", "libell_d_acheminement": "TABANAC", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33518"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2870c6e416bba1a662b15dad9cd15ae1fd471d99", "fields": {"nom_de_la_commune": "TEUILLAC", "libell_d_acheminement": "TEUILLAC", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33530"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b390aeb58df3f3993783fc31aff0641625fa514", "fields": {"nom_de_la_commune": "ROQUETAILLADE", "libell_d_acheminement": "ROQUETAILLADE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11323"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc4150427c2c7f7ce16cd5d3b7d06116b37a409c", "fields": {"nom_de_la_commune": "ROUBIA", "libell_d_acheminement": "ROUBIA", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11324"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "812dc3a9cb340a07c190177ccc076d5bc3d46c97", "fields": {"nom_de_la_commune": "ROUVENAC", "libell_d_acheminement": "ROUVENAC", "code_postal": "11260", "coordonnees_gps": [42.9301295633, 2.17179732489], "code_commune_insee": "11329"}, "geometry": {"type": "Point", "coordinates": [2.17179732489, 42.9301295633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "575956c0cf8bb1c80256e30db2b9c72d78ee8d9c", "fields": {"nom_de_la_commune": "ST JEAN DE BARROU", "libell_d_acheminement": "ST JEAN DE BARROU", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11345"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85beba76470a3d7ce8aa20166e223f4dd0016dc7", "fields": {"nom_de_la_commune": "ST JEAN DE PARACOL", "libell_d_acheminement": "ST JEAN DE PARACOL", "code_postal": "11260", "coordonnees_gps": [42.9301295633, 2.17179732489], "code_commune_insee": "11346"}, "geometry": {"type": "Point", "coordinates": [2.17179732489, 42.9301295633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67cc1082dc66a565546465218afc3d38ee922b8c", "fields": {"nom_de_la_commune": "ST PIERRE DES CHAMPS", "libell_d_acheminement": "ST PIERRE DES CHAMPS", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11363"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce41cf14204237a208398e5c63ea415fda436d7", "fields": {"nom_de_la_commune": "ST SERNIN", "libell_d_acheminement": "ST SERNIN", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11365"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26ad174246ae97c56c7724cad99d53d1120424a", "fields": {"nom_de_la_commune": "STE VALIERE", "libell_d_acheminement": "STE VALIERE", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11366"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "109fbe20e70db9d02e3056bd98ad805ce5219e1b", "fields": {"nom_de_la_commune": "SALLES D AUDE", "libell_d_acheminement": "SALLES D AUDE", "code_postal": "11110", "coordonnees_gps": [43.2267884537, 3.0836448835], "code_commune_insee": "11370"}, "geometry": {"type": "Point", "coordinates": [3.0836448835, 43.2267884537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76b015dead77a3c00511d07f18f24c672dccb724", "fields": {"nom_de_la_commune": "SEIGNALENS", "libell_d_acheminement": "SEIGNALENS", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11375"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5182bf42a27f31495d47ef6d642fb26e872923b0", "fields": {"nom_de_la_commune": "SOUILHANELS", "libell_d_acheminement": "SOUILHANELS", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11382"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "732071bb6e1ed9957f7e54592506a7d839eb9e60", "fields": {"nom_de_la_commune": "TALAIRAN", "libell_d_acheminement": "TALAIRAN", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11386"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f700dc566cb49ae8db722ab49cbb76bdf5e0e6c", "fields": {"nom_de_la_commune": "LA TOURETTE CABARDES", "libell_d_acheminement": "LA TOURETTE CABARDES", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11391"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baaf2e68edbd694a894469e5e842c283d7d5b390", "fields": {"nom_de_la_commune": "TOURREILLES", "libell_d_acheminement": "TOURREILLES", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11394"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aa976ebb344bfceeab62249d8026990513e1e03", "fields": {"nom_de_la_commune": "TRAUSSE", "libell_d_acheminement": "TRAUSSE", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11396"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "562d2299c27d0474d79b8d39905ef19aac1c5fb3", "fields": {"nom_de_la_commune": "TUCHAN", "libell_d_acheminement": "TUCHAN", "code_postal": "11350", "coordonnees_gps": [42.8796650781, 2.66522654176], "code_commune_insee": "11401"}, "geometry": {"type": "Point", "coordinates": [2.66522654176, 42.8796650781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b5be755a28971dcb4ee9460df5caea7f44bb4f", "fields": {"nom_de_la_commune": "VALMIGERE", "libell_d_acheminement": "VALMIGERE", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11402"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b05462a6cd053694ee2ebf4ddfa44117b1bad0", "fields": {"nom_de_la_commune": "VERZEILLE", "libell_d_acheminement": "VERZEILLE", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11408"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc97b7c5f88e71128697db3e2f70134a1b8dfd7", "fields": {"nom_de_la_commune": "VILLALIER", "libell_d_acheminement": "VILLALIER", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11410"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f270d864b2314f99f4a2473e01cf4c0ddb4ac901", "fields": {"nom_de_la_commune": "AGEN D AVEYRON", "libell_d_acheminement": "AGEN D AVEYRON", "code_postal": "12630", "coordonnees_gps": [44.3813386273, 2.71254776972], "code_commune_insee": "12001"}, "geometry": {"type": "Point", "coordinates": [2.71254776972, 44.3813386273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82eb35ed71184dfb251e3dad528073b50d683712", "fields": {"nom_de_la_commune": "ARQUES", "libell_d_acheminement": "ARQUES", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12010"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3844fd0498dae7aa936edb69ab38be0376839e00", "fields": {"nom_de_la_commune": "AURIAC LAGAST", "libell_d_acheminement": "AURIAC LAGAST", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12015"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66b497fd1fab52e8600f48e6296f9154655855fb", "fields": {"nom_de_la_commune": "AUZITS", "libell_d_acheminement": "AUZITS", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12016"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b396dc7c5c49c371cc6c831f9a519aec3860f7c", "fields": {"nom_de_la_commune": "BOUILLAC", "libell_d_acheminement": "BOUILLAC", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12030"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bea58c0c9d88a2316ffec8219023e62f78752b2f", "fields": {"nom_de_la_commune": "BOURNAZEL", "libell_d_acheminement": "BOURNAZEL", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12031"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bef1c0240637aa23fc824db71ddb4a3c42c21c3d", "fields": {"nom_de_la_commune": "BROUSSE LE CHATEAU", "libell_d_acheminement": "BROUSSE LE CHATEAU", "code_postal": "12480", "coordonnees_gps": [43.9974313835, 2.69341373502], "code_commune_insee": "12038"}, "geometry": {"type": "Point", "coordinates": [2.69341373502, 43.9974313835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e46303b5af7c62a2b53781aa5318beec78fd99cf", "fields": {"nom_de_la_commune": "CALMONT", "libell_d_acheminement": "CALMONT", "code_postal": "12450", "coordonnees_gps": [44.2840952345, 2.5725628832], "code_commune_insee": "12043"}, "geometry": {"type": "Point", "coordinates": [2.5725628832, 44.2840952345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74a2b3840965612b4b53ff7596049c2ec59eb45a", "fields": {"nom_de_la_commune": "CAMPAGNAC", "libell_d_acheminement": "CAMPAGNAC", "code_postal": "12560", "coordonnees_gps": [44.416656717, 3.07038306451], "code_commune_insee": "12047"}, "geometry": {"type": "Point", "coordinates": [3.07038306451, 44.416656717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e40b3d6ff5b7f15ed9b2109e97a7685f8241b1c0", "fields": {"nom_de_la_commune": "CAMPOURIEZ", "libell_d_acheminement": "CAMPOURIEZ", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12048"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b151e917d4cf8774b28862f46d45e2ff4e5fb8b", "fields": {"nom_de_la_commune": "CAMPOURIEZ", "libell_d_acheminement": "CAMPOURIEZ", "code_postal": "12460", "coordonnees_gps": [44.7074104935, 2.68829666871], "code_commune_insee": "12048"}, "geometry": {"type": "Point", "coordinates": [2.68829666871, 44.7074104935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c4adccf9accb7bc7faf7c04f82d2db2a5f865a9", "fields": {"nom_de_la_commune": "CAMPUAC", "libell_d_acheminement": "CAMPUAC", "code_postal": "12580", "coordonnees_gps": [44.5571706547, 2.5811283004], "code_commune_insee": "12049"}, "geometry": {"type": "Point", "coordinates": [2.5811283004, 44.5571706547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f9a08412dfc8e0370c2097d6bb2372fd7fd6a9", "fields": {"nom_de_la_commune": "BARAQUEVILLE", "libell_d_acheminement": "BARAQUEVILLE", "code_postal": "12160", "coordonnees_gps": [44.2885792415, 2.42910267877], "code_commune_insee": "12056"}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "222333bd15d7ddd308586343c30c0c7c78880372", "fields": {"code_postal": "12160", "code_commune_insee": "12056", "libell_d_acheminement": "BARAQUEVILLE", "ligne_5": "VORS", "nom_de_la_commune": "BARAQUEVILLE", "coordonnees_gps": [44.2885792415, 2.42910267877]}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbce92f5db318b768ea6d5cc6922af8fcb53b5c3", "fields": {"nom_de_la_commune": "CASTANET", "libell_d_acheminement": "CASTANET", "code_postal": "12240", "coordonnees_gps": [44.3140270715, 2.24773559855], "code_commune_insee": "12059"}, "geometry": {"type": "Point", "coordinates": [2.24773559855, 44.3140270715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e734f674412b74a2db0cb5b63c8402824833cc", "fields": {"nom_de_la_commune": "CASTELMARY", "libell_d_acheminement": "CASTELMARY", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12060"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1aaeb840b6d0ad630ebb252543ff3321f3cae8", "fields": {"nom_de_la_commune": "LE CAYROL", "libell_d_acheminement": "LE CAYROL", "code_postal": "12500", "coordonnees_gps": [44.5270610356, 2.81719827673], "code_commune_insee": "12064"}, "geometry": {"type": "Point", "coordinates": [2.81719827673, 44.5270610356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e86a23ec3e3108c41334cb5957fbe174a14a748", "fields": {"nom_de_la_commune": "COMPOLIBAT", "libell_d_acheminement": "COMPOLIBAT", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12071"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bedd6bbe766646c3d41ab6c4e9b82811ded6839", "fields": {"nom_de_la_commune": "COMPREGNAC", "libell_d_acheminement": "COMPREGNAC", "code_postal": "12100", "coordonnees_gps": [44.0898281066, 3.10621950967], "code_commune_insee": "12072"}, "geometry": {"type": "Point", "coordinates": [3.10621950967, 44.0898281066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaaf332ed61d55499b3eb5cf456edcdfe3c93d68", "fields": {"nom_de_la_commune": "COUPIAC", "libell_d_acheminement": "COUPIAC", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12080"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4f5940798d5f731aa4514bacc676152cce981f", "fields": {"nom_de_la_commune": "CRESPIN", "libell_d_acheminement": "CRESPIN", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12085"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4330786ad56d4a2a69be62c9483d5030f9893871", "fields": {"nom_de_la_commune": "DRUELLE", "libell_d_acheminement": "DRUELLE", "code_postal": "12510", "coordonnees_gps": [44.3662936551, 2.48525711851], "code_commune_insee": "12090"}, "geometry": {"type": "Point", "coordinates": [2.48525711851, 44.3662936551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81de55ff4f33a748cf5ede967eb360235756d48b", "fields": {"nom_de_la_commune": "LE FEL", "libell_d_acheminement": "LE FEL", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12093"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af1f1ee26ea247be801f06ca5bb9a19c7e4bbef2", "fields": {"nom_de_la_commune": "ESPEYRAC", "libell_d_acheminement": "ESPEYRAC", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12097"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5c9f92df9015ae31bf1c01bed6f83e407b9e00", "fields": {"nom_de_la_commune": "FLAVIN", "libell_d_acheminement": "FLAVIN", "code_postal": "12450", "coordonnees_gps": [44.2840952345, 2.5725628832], "code_commune_insee": "12102"}, "geometry": {"type": "Point", "coordinates": [2.5725628832, 44.2840952345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08a582c2b1cd51d9472a4d37718976eba0e90dde", "fields": {"nom_de_la_commune": "FLORENTIN LA CAPELLE", "libell_d_acheminement": "FLORENTIN LA CAPELLE", "code_postal": "12140", "coordonnees_gps": [44.6558037135, 2.58164635516], "code_commune_insee": "12103"}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0338b85a73946bc96b8dd7737783155a0942e739", "fields": {"nom_de_la_commune": "LA FOUILLADE", "libell_d_acheminement": "LA FOUILLADE", "code_postal": "12270", "coordonnees_gps": [44.2133464767, 2.02193088766], "code_commune_insee": "12105"}, "geometry": {"type": "Point", "coordinates": [2.02193088766, 44.2133464767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b32c863d71c48acda1bff9fdc549869a2eb2bb6", "fields": {"nom_de_la_commune": "GOUTRENS", "libell_d_acheminement": "GOUTRENS", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12111"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54a213eec6a19da3dd8bd6b613f3c7614fc45d4c", "fields": {"nom_de_la_commune": "LANUEJOULS", "libell_d_acheminement": "LANUEJOULS", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12121"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0a2fa24cb479e49fa31854da663af3f6edca18f", "fields": {"nom_de_la_commune": "LESCURE JAOUL", "libell_d_acheminement": "LESCURE JAOUL", "code_postal": "12440", "coordonnees_gps": [44.2188237556, 2.19456712254], "code_commune_insee": "12128"}, "geometry": {"type": "Point", "coordinates": [2.19456712254, 44.2188237556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95b0b314c435d014467f04225cb4b4c52df743cb", "fields": {"nom_de_la_commune": "LIVINHAC LE HAUT", "libell_d_acheminement": "LIVINHAC LE HAUT", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12130"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c897a4cacd63f2725d722bf17d79eb495cba8e77", "fields": {"nom_de_la_commune": "MARNHAGUES ET LATOUR", "libell_d_acheminement": "MARNHAGUES ET LATOUR", "code_postal": "12540", "coordonnees_gps": [43.8787455208, 3.14987374669], "code_commune_insee": "12139"}, "geometry": {"type": "Point", "coordinates": [3.14987374669, 43.8787455208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4711ddcff27044b2bd8a5b485006f6315ac1ec6", "fields": {"nom_de_la_commune": "MARTRIN", "libell_d_acheminement": "MARTRIN", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12141"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3077a0370a29a391c7376e5bb4b7e2202a6b466", "fields": {"nom_de_la_commune": "MONTAGNOL", "libell_d_acheminement": "MONTAGNOL", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12147"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc7ca225005c64664af0da9555193b278a5938fc", "fields": {"nom_de_la_commune": "MONTFRANC", "libell_d_acheminement": "MONTFRANC", "code_postal": "12380", "coordonnees_gps": [43.8550317909, 2.62086036072], "code_commune_insee": "12152"}, "geometry": {"type": "Point", "coordinates": [2.62086036072, 43.8550317909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d79d0a78ff1b8c09cc740632c012e3574367f005", "fields": {"nom_de_la_commune": "MONTLAUR", "libell_d_acheminement": "MONTLAUR", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12154"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b6069075551a4fd97d85c673bc67e29c4a3ce7", "fields": {"code_postal": "12630", "code_commune_insee": "12157", "libell_d_acheminement": "MONTROZIER", "ligne_5": "GAGES", "nom_de_la_commune": "MONTROZIER", "coordonnees_gps": [44.3813386273, 2.71254776972]}, "geometry": {"type": "Point", "coordinates": [2.71254776972, 44.3813386273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbbed8c3acb5fae3a6220369a2594787095bfe2e", "fields": {"nom_de_la_commune": "MONTSALES", "libell_d_acheminement": "MONTSALES", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12158"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "463a8156d5a7e038e226e2ce4fdfebbb41ab17c6", "fields": {"nom_de_la_commune": "MOSTUEJOULS", "libell_d_acheminement": "MOSTUEJOULS", "code_postal": "12720", "coordonnees_gps": [44.1809861731, 3.25262326426], "code_commune_insee": "12160"}, "geometry": {"type": "Point", "coordinates": [3.25262326426, 44.1809861731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69fc942df8a6511d555227316aa1e927ef4f917d", "fields": {"nom_de_la_commune": "MOURET", "libell_d_acheminement": "MOURET", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12161"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6234106038e68e934666f5b0c4d38017e14dc847", "fields": {"nom_de_la_commune": "NAUSSAC", "libell_d_acheminement": "NAUSSAC", "code_postal": "12700", "coordonnees_gps": [44.5379394985, 2.08098402024], "code_commune_insee": "12170"}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2625c4c9ff7f313d9971609f01269d25eacd3d", "fields": {"nom_de_la_commune": "OLEMPS", "libell_d_acheminement": "OLEMPS", "code_postal": "12510", "coordonnees_gps": [44.3662936551, 2.48525711851], "code_commune_insee": "12174"}, "geometry": {"type": "Point", "coordinates": [2.48525711851, 44.3662936551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e7766103c733a853828d1d411be526b9c1fb3a4", "fields": {"nom_de_la_commune": "ONET LE CHATEAU", "libell_d_acheminement": "ONET LE CHATEAU", "code_postal": "12850", "coordonnees_gps": [44.3602453055, 2.59175422847], "code_commune_insee": "12176"}, "geometry": {"type": "Point", "coordinates": [2.59175422847, 44.3602453055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c6189120a4945829a3c9adb1a0016c4aa20b95", "fields": {"nom_de_la_commune": "PEYRELEAU", "libell_d_acheminement": "PEYRELEAU", "code_postal": "12720", "coordonnees_gps": [44.1809861731, 3.25262326426], "code_commune_insee": "12180"}, "geometry": {"type": "Point", "coordinates": [3.25262326426, 44.1809861731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de57821fe9b49ff69249a5715ccfae660768b476", "fields": {"nom_de_la_commune": "PEYRUSSE LE ROC", "libell_d_acheminement": "PEYRUSSE LE ROC", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12181"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b007eeb284a24228c3fa1bfc90f303f3857212f7", "fields": {"nom_de_la_commune": "POMAYROLS", "libell_d_acheminement": "POMAYROLS", "code_postal": "12130", "coordonnees_gps": [44.4625155533, 2.98303027843], "code_commune_insee": "12184"}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd2aafde4426e7af70e8b7a316afde4dd26acd0", "fields": {"nom_de_la_commune": "POUSTHOMY", "libell_d_acheminement": "POUSTHOMY", "code_postal": "12380", "coordonnees_gps": [43.8550317909, 2.62086036072], "code_commune_insee": "12186"}, "geometry": {"type": "Point", "coordinates": [2.62086036072, 43.8550317909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f5928570b6d33c83098da7da131320e5917bb8a", "fields": {"nom_de_la_commune": "PRADES SALARS", "libell_d_acheminement": "PRADES SALARS", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12188"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc17489bb26652e4cc8a23323819503ac18e879a", "fields": {"nom_de_la_commune": "PREVINQUIERES", "libell_d_acheminement": "PREVINQUIERES", "code_postal": "12350", "coordonnees_gps": [44.4010803949, 2.15854701364], "code_commune_insee": "12190"}, "geometry": {"type": "Point", "coordinates": [2.15854701364, 44.4010803949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ac25257f0d09ab9b6d5ad04b40bebc420a07b64", "fields": {"nom_de_la_commune": "REQUISTA", "libell_d_acheminement": "REQUISTA", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12197"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca10a49ebafb1914f3a36fcf30c74a456765b091", "fields": {"nom_de_la_commune": "ST AMANS DES COTS", "libell_d_acheminement": "ST AMANS DES COTS", "code_postal": "12460", "coordonnees_gps": [44.7074104935, 2.68829666871], "code_commune_insee": "12209"}, "geometry": {"type": "Point", "coordinates": [2.68829666871, 44.7074104935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c70090133cbc46b51d9f7a10ae8a915f6c2c90", "fields": {"nom_de_la_commune": "ST BEAUZELY", "libell_d_acheminement": "ST BEAUZELY", "code_postal": "12620", "coordonnees_gps": [44.1639182272, 2.94123371794], "code_commune_insee": "12213"}, "geometry": {"type": "Point", "coordinates": [2.94123371794, 44.1639182272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fe885943bb3be5843d1d9bad1ea938512aeeae", "fields": {"nom_de_la_commune": "ST CHRISTOPHE VALLON", "libell_d_acheminement": "ST CHRISTOPHE VALLON", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12215"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95a9cbde114c4a15b22f838eefcaeb601c368d93", "fields": {"nom_de_la_commune": "ST COME D OLT", "libell_d_acheminement": "ST COME D OLT", "code_postal": "12500", "coordonnees_gps": [44.5270610356, 2.81719827673], "code_commune_insee": "12216"}, "geometry": {"type": "Point", "coordinates": [2.81719827673, 44.5270610356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c41259bfde2a34da69c9be96b3223f9500008f8", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12217"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d108c6792b4dd3a345d02382896460c46b2ff5cf", "fields": {"code_postal": "12210", "code_commune_insee": "12223", "libell_d_acheminement": "ARGENCES EN AUBRAC", "ligne_5": "LACALM", "nom_de_la_commune": "ARGENCES EN AUBRAC", "coordonnees_gps": [44.6915069372, 2.81638954446]}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a33a01acb9ad5c1225b572ba22f577f47a1bcbd3", "fields": {"code_postal": "12420", "code_commune_insee": "12223", "libell_d_acheminement": "ARGENCES EN AUBRAC", "ligne_5": "STE GENEVIEVE SUR ARGENCE", "nom_de_la_commune": "ARGENCES EN AUBRAC", "coordonnees_gps": [44.8196484767, 2.78404543455]}, "geometry": {"type": "Point", "coordinates": [2.78404543455, 44.8196484767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93b85479f671e8d88b913c14608b99b254d74904", "fields": {"nom_de_la_commune": "STE JULIETTE SUR VIAUR", "libell_d_acheminement": "STE JULIETTE SUR VIAUR", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12234"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "191c771571cd6b9da1cf50bf1228c885ddc2ac89", "fields": {"nom_de_la_commune": "ST JUST SUR VIAUR", "libell_d_acheminement": "ST JUST SUR VIAUR", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12235"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9aee87f65f0e7ece16d2d8c6cd9d86d1a1ec5a0", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12242"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f536891fedec2a770461a750f89f7e0babf0ce01", "fields": {"nom_de_la_commune": "ST SEVER DU MOUSTIER", "libell_d_acheminement": "ST SEVER DU MOUSTIER", "code_postal": "12370", "coordonnees_gps": [43.8037612905, 2.74262599071], "code_commune_insee": "12249"}, "geometry": {"type": "Point", "coordinates": [2.74262599071, 43.8037612905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7724a082466c22f8f7e3d3c782456e5c9e815b52", "fields": {"code_postal": "12460", "code_commune_insee": "12250", "libell_d_acheminement": "ST SYMPHORIEN DE THENIERES", "ligne_5": "ST GERVAIS", "nom_de_la_commune": "ST SYMPHORIEN DE THENIERES", "coordonnees_gps": [44.7074104935, 2.68829666871]}, "geometry": {"type": "Point", "coordinates": [2.68829666871, 44.7074104935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779467c1259a1ce69657fcfe4dc76dc0b1246f26", "fields": {"nom_de_la_commune": "ST VICTOR ET MELVIEU", "libell_d_acheminement": "ST VICTOR ET MELVIEU", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12251"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6575d43f16d84cc2328acebfc984972eb3716438", "fields": {"nom_de_la_commune": "SAUVETERRE DE ROUERGUE", "libell_d_acheminement": "SAUVETERRE DE ROUERGUE", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12262"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c46071a218db7db015c44e26d8bc720b2efc2a", "fields": {"nom_de_la_commune": "SAVIGNAC", "libell_d_acheminement": "SAVIGNAC", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12263"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80294cc546928306fc56508cf9b1dd3c4da36258", "fields": {"nom_de_la_commune": "SEGUR", "libell_d_acheminement": "SEGUR", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12266"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "663b1972626f3c093547513bcbc7483d5abd7d53", "fields": {"nom_de_la_commune": "SENERGUES", "libell_d_acheminement": "SENERGUES", "code_postal": "12320", "coordonnees_gps": [44.5837975359, 2.46440638377], "code_commune_insee": "12268"}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a56ab3e92cba0d550cef042316241e4ab92a1e53", "fields": {"nom_de_la_commune": "TAURIAC DE CAMARES", "libell_d_acheminement": "TAURIAC DE CAMARES", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12275"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b719daaff3df8b45353c51623fafb09b11b3fa", "fields": {"nom_de_la_commune": "TAURIAC DE NAUCELLE", "libell_d_acheminement": "TAURIAC DE NAUCELLE", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12276"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f30b7fca7ad13b5095b77bb4ddd5a669a229349a", "fields": {"nom_de_la_commune": "TREMOUILLES", "libell_d_acheminement": "TREMOUILLES", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12283"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1ff92084e41551d50ac8b1fe9598d9557c25d5f", "fields": {"code_postal": "12330", "code_commune_insee": "12288", "libell_d_acheminement": "VALADY", "ligne_5": "NUCES", "nom_de_la_commune": "VALADY", "coordonnees_gps": [44.4669223048, 2.48171518474]}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bcda29cad2d082aeddedf864688bf6f1fb743cc", "fields": {"nom_de_la_commune": "VALZERGUES", "libell_d_acheminement": "VALZERGUES", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12289"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925a9deae17c4f760fcf38fbbd229451c0d29302", "fields": {"nom_de_la_commune": "VILLEFRANCHE DE PANAT", "libell_d_acheminement": "VILLEFRANCHE DE PANAT", "code_postal": "12430", "coordonnees_gps": [44.0864778708, 2.70135704539], "code_commune_insee": "12299"}, "geometry": {"type": "Point", "coordinates": [2.70135704539, 44.0864778708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d168887b98a9250f7bbf22539644091af7db270a", "fields": {"nom_de_la_commune": "ALLEINS", "libell_d_acheminement": "ALLEINS", "code_postal": "13980", "coordonnees_gps": [43.7076204697, 5.15079714455], "code_commune_insee": "13003"}, "geometry": {"type": "Point", "coordinates": [5.15079714455, 43.7076204697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "173c919dfb396822ac9ede06eeef9d22bdf84a6a", "fields": {"code_postal": "13123", "code_commune_insee": "13004", "libell_d_acheminement": "ARLES", "ligne_5": "L ALBARON", "nom_de_la_commune": "ARLES", "coordonnees_gps": [43.5467808819, 4.66183385891]}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ca71cde48f2f7c9aed943e5a2e361c918575509", "fields": {"code_postal": "13200", "code_commune_insee": "13004", "libell_d_acheminement": "ARLES", "ligne_5": "LE SAMBUC", "nom_de_la_commune": "ARLES", "coordonnees_gps": [43.5467808819, 4.66183385891]}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbc965af557808556233d594bdd03c955105cbe1", "fields": {"nom_de_la_commune": "AUBAGNE", "libell_d_acheminement": "AUBAGNE", "code_postal": "13400", "coordonnees_gps": [43.2934747963, 5.56322795554], "code_commune_insee": "13005"}, "geometry": {"type": "Point", "coordinates": [5.56322795554, 43.2934747963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91dd549b1bbd5161609c370203a7201a976ee76e", "fields": {"nom_de_la_commune": "LA BARBEN", "libell_d_acheminement": "LA BARBEN", "code_postal": "13330", "coordonnees_gps": [43.6242242571, 5.18902505122], "code_commune_insee": "13009"}, "geometry": {"type": "Point", "coordinates": [5.18902505122, 43.6242242571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b0e5da29f041382974097ce59ba4026b36b0f39", "fields": {"nom_de_la_commune": "BELCODENE", "libell_d_acheminement": "BELCODENE", "code_postal": "13720", "coordonnees_gps": [43.4097271904, 5.60183954858], "code_commune_insee": "13013"}, "geometry": {"type": "Point", "coordinates": [5.60183954858, 43.4097271904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15fc2d01581ea9f1e7e3d3292274713fd7240342", "fields": {"code_postal": "13720", "code_commune_insee": "13016", "libell_d_acheminement": "LA BOUILLADISSE", "ligne_5": "LES BOYERS", "nom_de_la_commune": "LA BOUILLADISSE", "coordonnees_gps": [43.4097271904, 5.60183954858]}, "geometry": {"type": "Point", "coordinates": [5.60183954858, 43.4097271904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4df4ea88accf7e032e5184ff3a1fb9cdb6c75b8", "fields": {"nom_de_la_commune": "CABRIES", "libell_d_acheminement": "CABRIES", "code_postal": "13480", "coordonnees_gps": [43.4494933345, 5.34998030889], "code_commune_insee": "13019"}, "geometry": {"type": "Point", "coordinates": [5.34998030889, 43.4494933345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "515102dabadcab4fe615469394fcec9c18390fd3", "fields": {"nom_de_la_commune": "PEAULE", "libell_d_acheminement": "PEAULE", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56153"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0906ddac920a27edb19a186acf06f94bedd531b9", "fields": {"nom_de_la_commune": "PEILLAC", "libell_d_acheminement": "PEILLAC", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56154"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12cbe3bdb8fb0b216cad4d3f143738d3d6bf309e", "fields": {"nom_de_la_commune": "PLAUDREN", "libell_d_acheminement": "PLAUDREN", "code_postal": "56420", "coordonnees_gps": [47.8390378246, -2.64768279068], "code_commune_insee": "56157"}, "geometry": {"type": "Point", "coordinates": [-2.64768279068, 47.8390378246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48b90caa45fd606fb1dee946ad77ffb10b62d407", "fields": {"nom_de_la_commune": "PLEUCADEUC", "libell_d_acheminement": "PLEUCADEUC", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56159"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e642b919f9ae8efe69cc1847aa0d74281dd435", "fields": {"nom_de_la_commune": "PLEUGRIFFET", "libell_d_acheminement": "PLEUGRIFFET", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56160"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba219745b841a4073e407e2bc8bcfe863132132b", "fields": {"nom_de_la_commune": "PLOUHARNEL", "libell_d_acheminement": "PLOUHARNEL", "code_postal": "56340", "coordonnees_gps": [47.6055540862, -3.08901198541], "code_commune_insee": "56168"}, "geometry": {"type": "Point", "coordinates": [-3.08901198541, 47.6055540862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817f7ff4945b33a1ca5abc4ea4f593e3c234d55f", "fields": {"nom_de_la_commune": "PLOUHINEC", "libell_d_acheminement": "PLOUHINEC", "code_postal": "56680", "coordonnees_gps": [47.6926427403, -3.24050091087], "code_commune_insee": "56169"}, "geometry": {"type": "Point", "coordinates": [-3.24050091087, 47.6926427403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6733d292d301a8463bdfca75cfe27d872eb1417b", "fields": {"nom_de_la_commune": "PLUHERLIN", "libell_d_acheminement": "PLUHERLIN", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56171"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74767fdba9a6eec7663106ab0c38126345fc7187", "fields": {"nom_de_la_commune": "PLUMELEC", "libell_d_acheminement": "PLUMELEC", "code_postal": "56420", "coordonnees_gps": [47.8390378246, -2.64768279068], "code_commune_insee": "56172"}, "geometry": {"type": "Point", "coordinates": [-2.64768279068, 47.8390378246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b76e283fb0af990659acc3017620fdd1b6527e", "fields": {"nom_de_la_commune": "QUIBERON", "libell_d_acheminement": "QUIBERON", "code_postal": "56170", "coordonnees_gps": [47.4440195899, -3.0513582744], "code_commune_insee": "56186"}, "geometry": {"type": "Point", "coordinates": [-3.0513582744, 47.4440195899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba90b7aa5b06bbaf7b6e5d6eaae706aa99c5911", "fields": {"nom_de_la_commune": "RIEUX", "libell_d_acheminement": "RIEUX", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56194"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79f8901661057af513e396c82f01a29da4990ee", "fields": {"code_postal": "56460", "code_commune_insee": "56197", "libell_d_acheminement": "VAL D OUST", "ligne_5": "LE ROC ST ANDRE", "nom_de_la_commune": "VAL D OUST", "coordonnees_gps": [47.8267704974, -2.49804841656]}, "geometry": {"type": "Point", "coordinates": [-2.49804841656, 47.8267704974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc43196b7d6a4ccc2a59b87abe836675c2db62d", "fields": {"nom_de_la_commune": "ROHAN", "libell_d_acheminement": "ROHAN", "code_postal": "56580", "coordonnees_gps": [48.0645686885, -2.7233749534], "code_commune_insee": "56198"}, "geometry": {"type": "Point", "coordinates": [-2.7233749534, 48.0645686885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2b6b4ced9521209d18b30b52d0e309ab62257c", "fields": {"nom_de_la_commune": "ST ARMEL", "libell_d_acheminement": "ST ARMEL", "code_postal": "56450", "coordonnees_gps": [47.5984313167, -2.64319395081], "code_commune_insee": "56205"}, "geometry": {"type": "Point", "coordinates": [-2.64319395081, 47.5984313167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab024fa0080c302936898aec75fefe64c45a2fd", "fields": {"nom_de_la_commune": "ST GERAND", "libell_d_acheminement": "ST GERAND", "code_postal": "56920", "coordonnees_gps": [48.081238115, -2.86082261519], "code_commune_insee": "56213"}, "geometry": {"type": "Point", "coordinates": [-2.86082261519, 48.081238115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4f80ec089c0d9a99213ba85e837c59fcaf9a788", "fields": {"nom_de_la_commune": "ST GILDAS DE RHUYS", "libell_d_acheminement": "ST GILDAS DE RHUYS", "code_postal": "56730", "coordonnees_gps": [47.5125162224, -2.83274759799], "code_commune_insee": "56214"}, "geometry": {"type": "Point", "coordinates": [-2.83274759799, 47.5125162224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb08a002b7f33ae970a7c094c2a16f0f57fb6ee", "fields": {"nom_de_la_commune": "ST GUYOMARD", "libell_d_acheminement": "ST GUYOMARD", "code_postal": "56460", "coordonnees_gps": [47.8267704974, -2.49804841656], "code_commune_insee": "56219"}, "geometry": {"type": "Point", "coordinates": [-2.49804841656, 47.8267704974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945574da3b955f22579807f640a93e9fc9652f51", "fields": {"nom_de_la_commune": "ST JACUT LES PINS", "libell_d_acheminement": "ST JACUT LES PINS", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56221"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17c563f2a51f6d182670e9c6c5caa871ae4ffee6", "fields": {"nom_de_la_commune": "ST MALO DE BEIGNON", "libell_d_acheminement": "ST MALO DE BEIGNON", "code_postal": "56380", "coordonnees_gps": [47.9150020404, -2.16277339517], "code_commune_insee": "56226"}, "geometry": {"type": "Point", "coordinates": [-2.16277339517, 47.9150020404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2afb37654db37e862c5540a79db34b8a4ee1c140", "fields": {"nom_de_la_commune": "SERENT", "libell_d_acheminement": "SERENT", "code_postal": "56460", "coordonnees_gps": [47.8267704974, -2.49804841656], "code_commune_insee": "56244"}, "geometry": {"type": "Point", "coordinates": [-2.49804841656, 47.8267704974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6643f2dec426c633f0bc5ae542502890f42e20d1", "fields": {"nom_de_la_commune": "LE SOURN", "libell_d_acheminement": "LE SOURN", "code_postal": "56300", "coordonnees_gps": [48.0841906584, -2.98247941695], "code_commune_insee": "56246"}, "geometry": {"type": "Point", "coordinates": [-2.98247941695, 48.0841906584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7813231087a7f4b85fef429725fa2242828ea594", "fields": {"nom_de_la_commune": "SULNIAC", "libell_d_acheminement": "SULNIAC", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56247"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aaf9c155260cf2ae7dc2f3ea31d71f5eb8bf75b", "fields": {"nom_de_la_commune": "TAUPONT", "libell_d_acheminement": "TAUPONT", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56249"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "168d2e6f4ed4e64c303e7a6d35f3269e607dfdf1", "fields": {"nom_de_la_commune": "LE TOUR DU PARC", "libell_d_acheminement": "LE TOUR DU PARC", "code_postal": "56370", "coordonnees_gps": [47.524503914, -2.74138748812], "code_commune_insee": "56252"}, "geometry": {"type": "Point", "coordinates": [-2.74138748812, 47.524503914]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92bd162518602ff3d34a948ddd7351561cd2b6ed", "fields": {"nom_de_la_commune": "TREAL", "libell_d_acheminement": "TREAL", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56253"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "639f6d31673b8d759a5138d95d3d1656c62d2ddf", "fields": {"nom_de_la_commune": "ACHAIN", "libell_d_acheminement": "ACHAIN", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57004"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95f84f0948579f3aa0732a06687556b17b798f04", "fields": {"nom_de_la_commune": "ALTRIPPE", "libell_d_acheminement": "ALTRIPPE", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57014"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f500a715a407ba8222cd5f61c71e943f0e0732", "fields": {"nom_de_la_commune": "ANZELING", "libell_d_acheminement": "ANZELING", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57025"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea562356776f987f289dd465a469c19ea941679", "fields": {"nom_de_la_commune": "ARRAINCOURT", "libell_d_acheminement": "ARRAINCOURT", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57027"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b4fe0538b32ccebabd005f3c84118bfa036ffab", "fields": {"nom_de_la_commune": "ARRY", "libell_d_acheminement": "ARRY", "code_postal": "57680", "coordonnees_gps": [49.0358691515, 6.02886300131], "code_commune_insee": "57030"}, "geometry": {"type": "Point", "coordinates": [6.02886300131, 49.0358691515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ad4d40cbc41d9448dc7a04998b8245e4316cf6", "fields": {"nom_de_la_commune": "ARS LAQUENEXY", "libell_d_acheminement": "ARS LAQUENEXY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57031"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbf66f5d707717501f50f11b58a6e5c76dac32b6", "fields": {"nom_de_la_commune": "AY SUR MOSELLE", "libell_d_acheminement": "AY SUR MOSELLE", "code_postal": "57300", "coordonnees_gps": [49.2517615961, 6.19936397452], "code_commune_insee": "57043"}, "geometry": {"type": "Point", "coordinates": [6.19936397452, 49.2517615961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f3fb6e9019dea7099ea8ec67ebc30262dd3b8b", "fields": {"nom_de_la_commune": "BAERENTHAL", "libell_d_acheminement": "BAERENTHAL", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57046"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f08637bab93f084e5fe58a91a6f41bb6fb122053", "fields": {"nom_de_la_commune": "BANNAY", "libell_d_acheminement": "BANNAY", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57048"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a593f01f4ab99cad6fb123260d9d78f57b61bc64", "fields": {"nom_de_la_commune": "BERTRANGE", "libell_d_acheminement": "BERTRANGE", "code_postal": "57310", "coordonnees_gps": [49.2880823973, 6.21031753305], "code_commune_insee": "57067"}, "geometry": {"type": "Point", "coordinates": [6.21031753305, 49.2880823973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89eeec498075b4f68e535e9eb5bb89eee672e5cf", "fields": {"nom_de_la_commune": "BERVILLER EN MOSELLE", "libell_d_acheminement": "BERVILLER EN MOSELLE", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57069"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2c9af2a861c096553d2c6af762328e30ac4c85", "fields": {"nom_de_la_commune": "BETTELAINVILLE", "libell_d_acheminement": "BETTELAINVILLE", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57072"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa3e9aa62ad859769b1f53f35bf6da50eb8dabe", "fields": {"nom_de_la_commune": "BEYREN LES SIERCK", "libell_d_acheminement": "BEYREN LES SIERCK", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57076"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eda830e321a45dbe5cb8c461c621155adbcb47e", "fields": {"nom_de_la_commune": "BIBICHE", "libell_d_acheminement": "BIBICHE", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57079"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dae6a6cdd6e936bdb0cba490d725496deb10c8e9", "fields": {"nom_de_la_commune": "BICKENHOLTZ", "libell_d_acheminement": "BICKENHOLTZ", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57080"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6876dbe9742d62de5a6a7a398529e7dbb37e5c4e", "fields": {"nom_de_la_commune": "BIDING", "libell_d_acheminement": "BIDING", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57082"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c632e101d6023093d0ad565d776684b0410f83", "fields": {"nom_de_la_commune": "BIONCOURT", "libell_d_acheminement": "BIONCOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57084"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aac327fbd80f6dad98a74fa9338ebb5406c4a605", "fields": {"nom_de_la_commune": "BIONVILLE SUR NIED", "libell_d_acheminement": "BIONVILLE SUR NIED", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57085"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a86645bbb17c8d973401ee19016b4a850a9436f", "fields": {"nom_de_la_commune": "BISTROFF", "libell_d_acheminement": "BISTROFF", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57088"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9853ae5a60b59c20a70a431202f7f0f598f858", "fields": {"nom_de_la_commune": "BOUCHEPORN", "libell_d_acheminement": "BOUCHEPORN", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57095"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa489e3dc727080466fbd5b0ba4bf731647244a", "fields": {"nom_de_la_commune": "BOULANGE", "libell_d_acheminement": "BOULANGE", "code_postal": "57655", "coordonnees_gps": [49.3830106002, 5.95219673103], "code_commune_insee": "57096"}, "geometry": {"type": "Point", "coordinates": [5.95219673103, 49.3830106002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2d4b7a0c92e29698e7c182979852c5a00447ee", "fields": {"code_postal": "57220", "code_commune_insee": "57097", "libell_d_acheminement": "BOULAY", "ligne_5": "HALLING LES BOULAY", "nom_de_la_commune": "BOULAY MOSELLE", "coordonnees_gps": [49.1841986175, 6.49591706201]}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc2b7461d6906fdef49ec8a9bf0a2ab6a3545168", "fields": {"nom_de_la_commune": "BOURDONNAY", "libell_d_acheminement": "BOURDONNAY", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57099"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11efdd4f54b5b83da6ed7924ca305529b9d623c6", "fields": {"nom_de_la_commune": "BOUSBACH", "libell_d_acheminement": "BOUSBACH", "code_postal": "57460", "coordonnees_gps": [49.1628216573, 6.95392357742], "code_commune_insee": "57101"}, "geometry": {"type": "Point", "coordinates": [6.95392357742, 49.1628216573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fc6054765d7f0c83b02f21377ff6bc8fb860504", "fields": {"nom_de_la_commune": "BROUCK", "libell_d_acheminement": "BROUCK", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57112"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8d76e57617e077fd8de2d9e5365ace96ab4e56", "fields": {"nom_de_la_commune": "BUCHY", "libell_d_acheminement": "BUCHY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57116"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23d04d0f0af8c1633a9d1abc9b90bcac7bef24f5", "fields": {"nom_de_la_commune": "BUDING", "libell_d_acheminement": "BUDING", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57117"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf1b3c33e9da44b9c9314cdb5899ce6fc72578b3", "fields": {"nom_de_la_commune": "CARLING", "libell_d_acheminement": "CARLING", "code_postal": "57490", "coordonnees_gps": [49.1613905223, 6.7250851185], "code_commune_insee": "57123"}, "geometry": {"type": "Point", "coordinates": [6.7250851185, 49.1613905223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d9cfb66d7c8a6d7eba26fbb0ca04aeb16c7e5b", "fields": {"nom_de_la_commune": "CHAILLY LES ENNERY", "libell_d_acheminement": "CHAILLY LES ENNERY", "code_postal": "57365", "coordonnees_gps": [49.228567016, 6.24894723859], "code_commune_insee": "57125"}, "geometry": {"type": "Point", "coordinates": [6.24894723859, 49.228567016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63639556cdde19d4c5b862511652428b1b5e1ced", "fields": {"nom_de_la_commune": "CHAMBREY", "libell_d_acheminement": "CHAMBREY", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57126"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02fd6d15b189de79d8ece9a54434ffb9def5c22c", "fields": {"code_postal": "57170", "code_commune_insee": "57133", "libell_d_acheminement": "CHATEAU VOUE", "ligne_5": "DEDELING", "nom_de_la_commune": "CHATEAU VOUE", "coordonnees_gps": [48.8272646435, 6.51547813008]}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86bc65c10ba7c48464cd1ee1ae203de84fadda14", "fields": {"nom_de_la_commune": "CHATEL ST GERMAIN", "libell_d_acheminement": "CHATEL ST GERMAIN", "code_postal": "57160", "coordonnees_gps": [49.1183395813, 6.08364219773], "code_commune_insee": "57134"}, "geometry": {"type": "Point", "coordinates": [6.08364219773, 49.1183395813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8942f04d0e742b2d9003d18e1e57d493098c3347", "fields": {"nom_de_la_commune": "CLOUANGE", "libell_d_acheminement": "CLOUANGE", "code_postal": "57185", "coordonnees_gps": [49.2729654121, 6.09323392061], "code_commune_insee": "57143"}, "geometry": {"type": "Point", "coordinates": [6.09323392061, 49.2729654121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fac99d238886d125ff694617140f0357adef3405", "fields": {"nom_de_la_commune": "COCHEREN", "libell_d_acheminement": "COCHEREN", "code_postal": "57800", "coordonnees_gps": [49.1440107234, 6.82296653278], "code_commune_insee": "57144"}, "geometry": {"type": "Point", "coordinates": [6.82296653278, 49.1440107234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd54d789528d3b99e5902b584b090f86cb4009a", "fields": {"nom_de_la_commune": "COINCY", "libell_d_acheminement": "COINCY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57145"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b0218ef2c957eb2b674469dfacd997bd689c99d", "fields": {"nom_de_la_commune": "COLMEN", "libell_d_acheminement": "COLMEN", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57149"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51926ea6644990aaf8b86354b127cc6c28380668", "fields": {"code_postal": "57220", "code_commune_insee": "57150", "libell_d_acheminement": "CONDE NORTHEN", "ligne_5": "LOUTREMANGE", "nom_de_la_commune": "CONDE NORTHEN", "coordonnees_gps": [49.1841986175, 6.49591706201]}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5ac7d00a28b3700ea4d73621311a2a3d098ac5", "fields": {"code_postal": "57530", "code_commune_insee": "57155", "libell_d_acheminement": "COURCELLES CHAUSSY", "ligne_5": "LANDONVILLERS", "nom_de_la_commune": "COURCELLES CHAUSSY", "coordonnees_gps": [49.0970109843, 6.37190964274]}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a7fa2a39ac0bfd429b1bc8014616b931ab20649", "fields": {"nom_de_la_commune": "CREUTZWALD", "libell_d_acheminement": "CREUTZWALD", "code_postal": "57150", "coordonnees_gps": [49.2091971724, 6.68139736306], "code_commune_insee": "57160"}, "geometry": {"type": "Point", "coordinates": [6.68139736306, 49.2091971724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f401159c1e797e5b989fabd7548c650f761d31f8", "fields": {"nom_de_la_commune": "DABO", "libell_d_acheminement": "DABO", "code_postal": "57850", "coordonnees_gps": [48.6473916816, 7.23779474872], "code_commune_insee": "57163"}, "geometry": {"type": "Point", "coordinates": [7.23779474872, 48.6473916816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed20e6bfa47808b57c655e81358e4eaa68997017", "fields": {"nom_de_la_commune": "DIANE CAPELLE", "libell_d_acheminement": "DIANE CAPELLE", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57175"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c780af61f2f11391563a4e9c18583387a5222872", "fields": {"nom_de_la_commune": "DIEBLING", "libell_d_acheminement": "DIEBLING", "code_postal": "57980", "coordonnees_gps": [49.1092636069, 6.94134556596], "code_commune_insee": "57176"}, "geometry": {"type": "Point", "coordinates": [6.94134556596, 49.1092636069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57eadac22066a58a8d75c5c673c48322c7f49dc1", "fields": {"nom_de_la_commune": "EBLANGE", "libell_d_acheminement": "EBLANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57187"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa8baf0d42f53955508ac827d3b4894cff45f4d7", "fields": {"nom_de_la_commune": "ENCHENBERG", "libell_d_acheminement": "ENCHENBERG", "code_postal": "57415", "coordonnees_gps": [49.006798582, 7.31603337104], "code_commune_insee": "57192"}, "geometry": {"type": "Point", "coordinates": [7.31603337104, 49.006798582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9670cae5494555d080965371a2620b4a4a86c07", "fields": {"nom_de_la_commune": "ERCHING", "libell_d_acheminement": "ERCHING", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57196"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7924a3410099f4e1b3c5f2bc81a6e113ccf6e097", "fields": {"nom_de_la_commune": "ETZLING", "libell_d_acheminement": "ETZLING", "code_postal": "57460", "coordonnees_gps": [49.1628216573, 6.95392357742], "code_commune_insee": "57202"}, "geometry": {"type": "Point", "coordinates": [6.95392357742, 49.1628216573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a41dd6d8f4dd1395651c2b0b829fd2eaade7b5", "fields": {"code_postal": "57640", "code_commune_insee": "57204", "libell_d_acheminement": "FAILLY", "ligne_5": "VREMY", "nom_de_la_commune": "FAILLY", "coordonnees_gps": [49.1985854137, 6.30080948256]}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86e26aaf0d1c3f1a88bc613598820633ccf83064", "fields": {"code_postal": "57290", "code_commune_insee": "57206", "libell_d_acheminement": "FAMECK", "ligne_5": "REMELANGE", "nom_de_la_commune": "FAMECK", "coordonnees_gps": [49.3041832839, 6.102475564]}, "geometry": {"type": "Point", "coordinates": [6.102475564, 49.3041832839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f55f6dafbff35906ed5daf2f26a98c843beff13", "fields": {"nom_de_la_commune": "FLEISHEIM", "libell_d_acheminement": "FLEISHEIM", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57216"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "110d2b1b6c80cba3a4042ba2f3b0c8c9662f6ced", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57218"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d3343c1df37d28c80a32a5af24b0fe296e90b8", "fields": {"nom_de_la_commune": "FLEVY", "libell_d_acheminement": "FLEVY", "code_postal": "57365", "coordonnees_gps": [49.228567016, 6.24894723859], "code_commune_insee": "57219"}, "geometry": {"type": "Point", "coordinates": [6.24894723859, 49.228567016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f98503932f6e6991caa3fa344f532f5edb0c8d6a", "fields": {"nom_de_la_commune": "FLORANGE", "libell_d_acheminement": "FLORANGE", "code_postal": "57190", "coordonnees_gps": [49.3279409342, 6.12312387666], "code_commune_insee": "57221"}, "geometry": {"type": "Point", "coordinates": [6.12312387666, 49.3279409342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2bfc8a666f1fe3ecfc862b876026683ca29139d", "fields": {"nom_de_la_commune": "FORBACH", "libell_d_acheminement": "FORBACH", "code_postal": "57600", "coordonnees_gps": [49.1737473048, 6.89495701943], "code_commune_insee": "57227"}, "geometry": {"type": "Point", "coordinates": [6.89495701943, 49.1737473048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c07be974e12a8ef42e3aeba01f97e221691fa0f", "fields": {"code_postal": "57600", "code_commune_insee": "57227", "libell_d_acheminement": "FORBACH", "ligne_5": "MARIENAU", "nom_de_la_commune": "FORBACH", "coordonnees_gps": [49.1737473048, 6.89495701943]}, "geometry": {"type": "Point", "coordinates": [6.89495701943, 49.1737473048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee09b8d1fd460e94aa69f57d47f7cf1b3dd91cc", "fields": {"nom_de_la_commune": "FOVILLE", "libell_d_acheminement": "FOVILLE", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57231"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad57000b171a05634bd1ee45e7a8ea15042b679a", "fields": {"nom_de_la_commune": "FRESNES EN SAULNOIS", "libell_d_acheminement": "FRESNES EN SAULNOIS", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57238"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c326925ba823fa222458e8745b00073e6e4fbab2", "fields": {"nom_de_la_commune": "GOETZENBRUCK", "libell_d_acheminement": "GOETZENBRUCK", "code_postal": "57620", "coordonnees_gps": [48.9917951549, 7.41577190853], "code_commune_insee": "57250"}, "geometry": {"type": "Point", "coordinates": [7.41577190853, 48.9917951549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fb7f680fa847a00e0f0ccd15fb1ed40f466d238", "fields": {"nom_de_la_commune": "GOMELANGE", "libell_d_acheminement": "GOMELANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57252"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69513f0b10c7843c47497b2a8e41fab596153b03", "fields": {"code_postal": "57220", "code_commune_insee": "57252", "libell_d_acheminement": "GOMELANGE", "ligne_5": "GUIRLANGE", "nom_de_la_commune": "GOMELANGE", "coordonnees_gps": [49.1841986175, 6.49591706201]}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019fc61cf894a2bb83e4103f1ca587d632753658", "fields": {"nom_de_la_commune": "GROSTENQUIN", "libell_d_acheminement": "GROSTENQUIN", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57262"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cb7b8488c8b76f95d5b19ba47564f4ba8afa36f", "fields": {"nom_de_la_commune": "GRUNDVILLER", "libell_d_acheminement": "GRUNDVILLER", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57263"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "666bc9c212954dfe5ceb345f201bef15398ce672", "fields": {"nom_de_la_commune": "GUENVILLER", "libell_d_acheminement": "GUENVILLER", "code_postal": "57470", "coordonnees_gps": [49.1215723758, 6.78184199605], "code_commune_insee": "57271"}, "geometry": {"type": "Point", "coordinates": [6.78184199605, 49.1215723758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fb29e60065235de5436d32e55ea6bceee0ada6b", "fields": {"nom_de_la_commune": "GUESSLING HEMERING", "libell_d_acheminement": "GUESSLING HEMERING", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57275"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ec13f04a70f5d0e70648b5655e2d5f4f617feb", "fields": {"nom_de_la_commune": "HALSTROFF", "libell_d_acheminement": "HALSTROFF", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57286"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "329e5256efd79b86f6c0983e074347dd6e3f3935", "fields": {"nom_de_la_commune": "HARAUCOURT SUR SEILLE", "libell_d_acheminement": "HARAUCOURT SUR SEILLE", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57295"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "506f8be9b47a97fab03d09738d024ded515254e1", "fields": {"nom_de_la_commune": "HASELBOURG", "libell_d_acheminement": "HASELBOURG", "code_postal": "57850", "coordonnees_gps": [48.6473916816, 7.23779474872], "code_commune_insee": "57300"}, "geometry": {"type": "Point", "coordinates": [7.23779474872, 48.6473916816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d84d167d217f4016d6fa499d530e80bfab67fc9", "fields": {"nom_de_la_commune": "HAVANGE", "libell_d_acheminement": "HAVANGE", "code_postal": "57650", "coordonnees_gps": [49.3593317292, 5.99165623532], "code_commune_insee": "57305"}, "geometry": {"type": "Point", "coordinates": [5.99165623532, 49.3593317292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57903fe417c7030f1f941f4e1d4f501daf7c713e", "fields": {"nom_de_la_commune": "HAZEMBOURG", "libell_d_acheminement": "HAZEMBOURG", "code_postal": "57430", "coordonnees_gps": [48.9890917181, 6.98173780701], "code_commune_insee": "57308"}, "geometry": {"type": "Point", "coordinates": [6.98173780701, 48.9890917181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30b75c2e3f289b57d096b698ef063ec161de9357", "fields": {"nom_de_la_commune": "HELLIMER", "libell_d_acheminement": "HELLIMER", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57311"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ad94d1884a9cdbe131b07946c605c7dbbcad013", "fields": {"nom_de_la_commune": "HELSTROFF", "libell_d_acheminement": "HELSTROFF", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57312"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6561bb2ce348c7d8ea8e5d8fce9ef707e804be55", "fields": {"nom_de_la_commune": "HEMILLY", "libell_d_acheminement": "HEMILLY", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57313"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59332e1e72a98f4c2896569152853f294847d382", "fields": {"nom_de_la_commune": "HENRIDORFF", "libell_d_acheminement": "HENRIDORFF", "code_postal": "57820", "coordonnees_gps": [48.7214419242, 7.22862669066], "code_commune_insee": "57315"}, "geometry": {"type": "Point", "coordinates": [7.22862669066, 48.7214419242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c14144d2dce42e68fb00d029fa8006b5bfb8a3c0", "fields": {"nom_de_la_commune": "HESTROFF", "libell_d_acheminement": "HESTROFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57322"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2d558bf826a8e17c5bfce2d40c03f7c6ff6c11b", "fields": {"nom_de_la_commune": "HINCKANGE", "libell_d_acheminement": "HINCKANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57326"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee3179e7b3713629f3115428e03ea6e8fe15b0c5", "fields": {"nom_de_la_commune": "HOMMERT", "libell_d_acheminement": "HOMMERT", "code_postal": "57870", "coordonnees_gps": [48.6442661172, 7.16634369748], "code_commune_insee": "57334"}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a436714e1d9703214ac6b655aab8e179226cbba", "fields": {"nom_de_la_commune": "CERNAY L EGLISE", "libell_d_acheminement": "CERNAY L EGLISE", "code_postal": "25120", "coordonnees_gps": [47.2517789005, 6.78722407898], "code_commune_insee": "25108"}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0b63d56adf6aab8dcaf81931f923ee1f05f495", "fields": {"nom_de_la_commune": "CHAMPLIVE", "libell_d_acheminement": "CHAMPLIVE", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25116"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a4c54cb0d75b0ede6c6ee480531eb788067162d", "fields": {"nom_de_la_commune": "CHARNAY", "libell_d_acheminement": "CHARNAY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25126"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d719fd46a56b6ab7cd73b362171835affee7b068", "fields": {"nom_de_la_commune": "CHATEAUVIEUX LES FOSSES", "libell_d_acheminement": "CHATEAUVIEUX LES FOSSES", "code_postal": "25840", "coordonnees_gps": [47.0612985157, 6.21263749078], "code_commune_insee": "25130"}, "geometry": {"type": "Point", "coordinates": [6.21263749078, 47.0612985157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e20f9ba3ad675af1955512ece26df0a6782ae8", "fields": {"nom_de_la_commune": "CHEMAUDIN", "libell_d_acheminement": "CHEMAUDIN", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25147"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e493405ade35034e510d7363c545ee55395bac8", "fields": {"nom_de_la_commune": "CHEVROZ", "libell_d_acheminement": "CHEVROZ", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25153"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74af76f9b530bb098ebb800cd0af93bdf3d059d7", "fields": {"nom_de_la_commune": "CLERVAL", "libell_d_acheminement": "CLERVAL", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25156"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b70ea91238e60b10c921ba99fe3e60af0616ff", "fields": {"nom_de_la_commune": "CORCELLES FERRIERES", "libell_d_acheminement": "CORCELLES FERRIERES", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25162"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da53f1c1b0526bf00f5111701d68fb52130569a2", "fields": {"nom_de_la_commune": "CORCONDRAY", "libell_d_acheminement": "CORCONDRAY", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25164"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be1e3d6e93cd3c42b26e18c3a90388c82c23c08f", "fields": {"nom_de_la_commune": "COURCELLES", "libell_d_acheminement": "COURCELLES", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25171"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e1753e2f93de8378b8ae87a66caa3603480d9a5", "fields": {"nom_de_la_commune": "COURTETAIN ET SALANS", "libell_d_acheminement": "COURTETAIN ET SALANS", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25175"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44235df6a81389d059c6344c14ff7254fd2d14a2", "fields": {"nom_de_la_commune": "CUSE ET ADRISANS", "libell_d_acheminement": "CUSE ET ADRISANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25184"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc07418f8d52b572576ed7f264a44a85c2174e85", "fields": {"code_postal": "25150", "code_commune_insee": "25187", "libell_d_acheminement": "DAMBELIN", "ligne_5": "MAMBOUHANS", "nom_de_la_commune": "DAMBELIN", "coordonnees_gps": [47.3948099665, 6.72943096547]}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b698d9715e37597fcf262918f81ae5d405cdc15f", "fields": {"nom_de_la_commune": "DANNEMARIE", "libell_d_acheminement": "DANNEMARIE", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25194"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e96346797b3be4cfef718c52081272577753796", "fields": {"nom_de_la_commune": "DOUBS", "libell_d_acheminement": "DOUBS", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25204"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8091960c23354a33b889d4e0c981c5c353a02369", "fields": {"nom_de_la_commune": "DURNES", "libell_d_acheminement": "DURNES", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25208"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca8d0208980ac26c1046ccc27453298d3dc00cbe", "fields": {"nom_de_la_commune": "ECHAY", "libell_d_acheminement": "ECHAY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25209"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41107203fef25b82bf9bb57b099cf1551079d70c", "fields": {"nom_de_la_commune": "ECHENANS", "libell_d_acheminement": "ECHENANS", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25210"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2937c9dc828bae93947341e2253785fa6e2a5329", "fields": {"nom_de_la_commune": "ECOLE VALENTIN", "libell_d_acheminement": "ECOLE VALENTIN", "code_postal": "25480", "coordonnees_gps": [47.2739749265, 5.97316360482], "code_commune_insee": "25212"}, "geometry": {"type": "Point", "coordinates": [5.97316360482, 47.2739749265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d33f77ab78d52ba47ec27140478ddc7b85028e", "fields": {"nom_de_la_commune": "ETALANS", "libell_d_acheminement": "ETALANS", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25222"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da5ff2e92bb872fa5392b808b72593c8141b9616", "fields": {"nom_de_la_commune": "FAIMBE", "libell_d_acheminement": "FAIMBE", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25232"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c711b94db44f90b2f8c12cf0257d2d7659f99e31", "fields": {"nom_de_la_commune": "FESCHES LE CHATEL", "libell_d_acheminement": "FESCHES LE CHATEL", "code_postal": "25490", "coordonnees_gps": [47.518340025, 6.90999860346], "code_commune_insee": "25237"}, "geometry": {"type": "Point", "coordinates": [6.90999860346, 47.518340025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e418faba31d000f6ae9d037f8d290b5b346b452c", "fields": {"nom_de_la_commune": "FESSEVILLERS", "libell_d_acheminement": "FESSEVILLERS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25238"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e74b905a79f0686a7271a23227e1327e5ca527be", "fields": {"nom_de_la_commune": "FONTAINE LES CLERVAL", "libell_d_acheminement": "FONTAINE LES CLERVAL", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25246"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9f8bfed8574a124fb44e349f31c2a0e1880812", "fields": {"nom_de_la_commune": "LES FONTENELLES", "libell_d_acheminement": "LES FONTENELLES", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25248"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90fd7021490572f9d4f91a71d42a7beb8123b532", "fields": {"nom_de_la_commune": "FOURG", "libell_d_acheminement": "FOURG", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25253"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ad7ac4b9e44a3e61f730c371396d431ea33268", "fields": {"nom_de_la_commune": "FOURNET BLANCHEROCHE", "libell_d_acheminement": "FOURNET BLANCHEROCHE", "code_postal": "25140", "coordonnees_gps": [47.193428851, 6.81794567647], "code_commune_insee": "25255"}, "geometry": {"type": "Point", "coordinates": [6.81794567647, 47.193428851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf038afa74fc52cf74e32606de54af493c42a5ac", "fields": {"nom_de_la_commune": "FUANS", "libell_d_acheminement": "FUANS", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25262"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db8a26d60ff72bd0c2eec937880ad595e52ef90", "fields": {"nom_de_la_commune": "GONDENANS MONTBY", "libell_d_acheminement": "GONDENANS MONTBY", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25276"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28f378ad58286bef51deb3eb328b9112e9d2ce39", "fields": {"nom_de_la_commune": "GOUX LES DAMBELIN", "libell_d_acheminement": "GOUX LES DAMBELIN", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25281"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11cf93909859582b14b658821b8ebe0331ee5296", "fields": {"nom_de_la_commune": "GOUX LES USIERS", "libell_d_acheminement": "GOUX LES USIERS", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25282"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54217b964af74bc709b9534ff83edb68e0d56a3a", "fields": {"nom_de_la_commune": "GRANDFONTAINE SUR CREUSE", "libell_d_acheminement": "GRANDFONTAINE SUR CREUSE", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25289"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b92fc04adfdf484055282c2420e8e3021d0b433", "fields": {"nom_de_la_commune": "GUYANS DURNES", "libell_d_acheminement": "GUYANS DURNES", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25300"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69f976a18db2d25b50254d09c048a0e6bb98416e", "fields": {"nom_de_la_commune": "GUYANS VENNES", "libell_d_acheminement": "GUYANS VENNES", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25301"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff451ca54c6da7d61e7f6171e11fee4a6e9863cb", "fields": {"nom_de_la_commune": "HYEMONDANS", "libell_d_acheminement": "HYEMONDANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25311"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1573b29dc872069830aa6b705f4092f580adafeb", "fields": {"nom_de_la_commune": "INDEVILLERS", "libell_d_acheminement": "INDEVILLERS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25314"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb89991bd9a51f737d3e690fe127bd659e6fcc27", "fields": {"nom_de_la_commune": "LABERGEMENT DU NAVOIS", "libell_d_acheminement": "LABERGEMENT DU NAVOIS", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25319"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f906dd2394305a0c792294b67530a922a64c68", "fields": {"nom_de_la_commune": "LAIRE", "libell_d_acheminement": "LAIRE", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25322"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b02dc9935c0322cb3ef2eb423846f320512728", "fields": {"nom_de_la_commune": "LAVIRON", "libell_d_acheminement": "LAVIRON", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25333"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef8303bac397e8d0f2ef06e061faa7122fa57f1b", "fields": {"nom_de_la_commune": "LIEBVILLERS", "libell_d_acheminement": "LIEBVILLERS", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25335"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43eb1e320e8f11b805a21680c0024175111d89c1", "fields": {"nom_de_la_commune": "LODS", "libell_d_acheminement": "LODS", "code_postal": "25930", "coordonnees_gps": [47.0501143965, 6.25586783828], "code_commune_insee": "25339"}, "geometry": {"type": "Point", "coordinates": [6.25586783828, 47.0501143965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "525b61f36069f125f42254b51566462490a5f2d2", "fields": {"nom_de_la_commune": "LONGEMAISON", "libell_d_acheminement": "LONGEMAISON", "code_postal": "25690", "coordonnees_gps": [47.1118189228, 6.43431918233], "code_commune_insee": "25343"}, "geometry": {"type": "Point", "coordinates": [6.43431918233, 47.1118189228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee8d1160054d2337d8f1fb80803f283b9e44b69d", "fields": {"nom_de_la_commune": "LUXIOL", "libell_d_acheminement": "LUXIOL", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25354"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ea5992f30a7e6cb2e9f1891048621b49eeed7b", "fields": {"nom_de_la_commune": "MALBUISSON", "libell_d_acheminement": "MALBUISSON", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25361"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fac0de11cdcc7b9944b54ad97c29cf0a364b4a87", "fields": {"nom_de_la_commune": "MALPAS", "libell_d_acheminement": "MALPAS", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25362"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b85dda91f6d17147b6b80703f52926b518ece8f", "fields": {"nom_de_la_commune": "MAZEROLLES LE SALIN", "libell_d_acheminement": "MAZEROLLES LE SALIN", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25371"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b87b360dd224e3447ca6720566142ae7078434c5", "fields": {"nom_de_la_commune": "MEDIERE", "libell_d_acheminement": "MEDIERE", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25372"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "113d6a9dc59a0aeb6c3eed267c3a21f256d92981", "fields": {"nom_de_la_commune": "MEREY VIEILLEY", "libell_d_acheminement": "MEREY VIEILLEY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25376"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7482f935833dd5668b72d86daba48b6afb70279", "fields": {"nom_de_la_commune": "MISEREY SALINES", "libell_d_acheminement": "MISEREY SALINES", "code_postal": "25480", "coordonnees_gps": [47.2739749265, 5.97316360482], "code_commune_insee": "25381"}, "geometry": {"type": "Point", "coordinates": [5.97316360482, 47.2739749265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6546ce4803397f80f85855888092b9e5c2ea8498", "fields": {"code_postal": "25120", "code_commune_insee": "25392", "libell_d_acheminement": "MONT DE VOUGNEY", "ligne_5": "LE FRIOLAIS", "nom_de_la_commune": "MONT DE VOUGNEY", "coordonnees_gps": [47.2517789005, 6.78722407898]}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfa39af1df40ac446ffa47607f0e00bac5d556b1", "fields": {"nom_de_la_commune": "MONTENOIS", "libell_d_acheminement": "MONTENOIS", "code_postal": "25260", "coordonnees_gps": [47.456571306, 6.67036104248], "code_commune_insee": "25394"}, "geometry": {"type": "Point", "coordinates": [6.67036104248, 47.456571306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a6d814b6240eb9e87dc0d751ea264f2f1728e10", "fields": {"nom_de_la_commune": "MORTEAU", "libell_d_acheminement": "MORTEAU", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25411"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04beb78ce094607227501588fa659475e1c1eaca", "fields": {"nom_de_la_commune": "MOUTHE", "libell_d_acheminement": "MOUTHE", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25413"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd26ee0a68c5ef21b5b0f39eb9a9fef51819f951", "fields": {"nom_de_la_commune": "LE MOUTHEROT", "libell_d_acheminement": "LE MOUTHEROT", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25414"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c61e054b3d4e5bd468f5f514af10763cf7ca6a2", "fields": {"nom_de_la_commune": "NAISEY LES GRANGES", "libell_d_acheminement": "NAISEY LES GRANGES", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25417"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db04677edaa229ce7037947c823847dc93d301b", "fields": {"code_postal": "25360", "code_commune_insee": "25417", "libell_d_acheminement": "NAISEY LES GRANGES", "ligne_5": "GRANGES DE VIENNEY", "nom_de_la_commune": "NAISEY LES GRANGES", "coordonnees_gps": [47.2568575507, 6.29111857571]}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "763f44cfc1d211797e6e447bf8b89ef7647887b3", "fields": {"code_postal": "25580", "code_commune_insee": "25424", "libell_d_acheminement": "LES PREMIERS SAPINS", "ligne_5": "CHASNANS", "nom_de_la_commune": "LES PREMIERS SAPINS", "coordonnees_gps": [47.1244467282, 6.26910894266]}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3965285fc56d0380a27c0663a5a9c13e600dd8cb", "fields": {"code_postal": "25580", "code_commune_insee": "25424", "libell_d_acheminement": "LES PREMIERS SAPINS", "ligne_5": "RANTECHAUX", "nom_de_la_commune": "LES PREMIERS SAPINS", "coordonnees_gps": [47.1244467282, 6.26910894266]}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8083428cda808baf12e3e9965d372b587d4a4b5", "fields": {"nom_de_la_commune": "NOEL CERNEUX", "libell_d_acheminement": "NOEL CERNEUX", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25425"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a68d01478a94cf49f7aed505398bd0567ed5db87", "fields": {"nom_de_la_commune": "ORVE", "libell_d_acheminement": "ORVE", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25436"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf006496918d0ea98bc5a08e47c1149e9243256", "fields": {"nom_de_la_commune": "OUVANS", "libell_d_acheminement": "OUVANS", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25441"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dabd46b19529cdcb8ae0d17a5f89c54a92198e4", "fields": {"nom_de_la_commune": "OYE ET PALLET", "libell_d_acheminement": "OYE ET PALLET", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25442"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a108ec4f9cbb00b85375d3b8ca3581d333aec1e5", "fields": {"nom_de_la_commune": "PALANTINE", "libell_d_acheminement": "PALANTINE", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25443"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2786cb3f1977debb70a535aee980aaa7dd263ba7", "fields": {"nom_de_la_commune": "PALISE", "libell_d_acheminement": "PALISE", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25444"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9a3f6de1183412ba1f72589ef81a0e9b31abe7d", "fields": {"nom_de_la_commune": "PLACEY", "libell_d_acheminement": "PLACEY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25455"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5bcef1f7fe7c3adb1882d2685885a8452414255", "fields": {"nom_de_la_commune": "POINTVILLERS", "libell_d_acheminement": "POINTVILLERS", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25460"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2e87034c5baaee1ecc2dd32d66de58c9372ae9", "fields": {"code_postal": "25150", "code_commune_insee": "25463", "libell_d_acheminement": "PONT DE ROIDE VERMONDANS", "ligne_5": "VERMONDANS", "nom_de_la_commune": "PONT DE ROIDE VERMONDANS", "coordonnees_gps": [47.3948099665, 6.72943096547]}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd5687806f0120805c349a872aee1d47e2df912a", "fields": {"nom_de_la_commune": "POUILLEY FRANCAIS", "libell_d_acheminement": "POUILLEY FRANCAIS", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25466"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c91811d393e6ffeb68e374a7782550b072d2cd5", "fields": {"nom_de_la_commune": "POUILLEY LES VIGNES", "libell_d_acheminement": "POUILLEY LES VIGNES", "code_postal": "25115", "coordonnees_gps": [47.2603977173, 5.93606276445], "code_commune_insee": "25467"}, "geometry": {"type": "Point", "coordinates": [5.93606276445, 47.2603977173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f179ff922dd64d9de8642dbd94bb2bd64f35d661", "fields": {"nom_de_la_commune": "LA PRETIERE", "libell_d_acheminement": "LA PRETIERE", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25470"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3397e0cb0f2f6818afaea63e1f51411ebc7585c", "fields": {"nom_de_la_commune": "RANCENAY", "libell_d_acheminement": "RANCENAY", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25477"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77b787da7f88d0fb42ad1c90da6c46ad584ce06b", "fields": {"nom_de_la_commune": "REMORAY BOUJEONS", "libell_d_acheminement": "REMORAY BOUJEONS", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25486"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19df1c8a7ebf657cdaff21db30c587b81991b40b", "fields": {"nom_de_la_commune": "REUGNEY", "libell_d_acheminement": "REUGNEY", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25489"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2eee63e6a3c42e55b08c3eb8f6748d3841569c3", "fields": {"nom_de_la_commune": "RILLANS", "libell_d_acheminement": "RILLANS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25492"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba8270c89bbcfcb7521d372320d4ddafa3b3a41b", "fields": {"nom_de_la_commune": "ROCHEJEAN", "libell_d_acheminement": "ROCHEJEAN", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25494"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a94be6ee8daa95efa582ad1535d21d027aa3f15", "fields": {"nom_de_la_commune": "ROCHES LES BLAMONT", "libell_d_acheminement": "ROCHES LES BLAMONT", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25497"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8662781008eaa37f21c6999a5fc84c8ab0dd396c", "fields": {"nom_de_la_commune": "ROSUREUX", "libell_d_acheminement": "ROSUREUX", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25504"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "785e480d41157ea98ac00c06dbbdbb53c0db2d4e", "fields": {"code_postal": "25680", "code_commune_insee": "25505", "libell_d_acheminement": "ROUGEMONT", "ligne_5": "MORCHAMPS", "nom_de_la_commune": "ROUGEMONT", "coordonnees_gps": [47.4550311949, 6.34612081479]}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72678a3b97e066590fe74a3954cd580969ebd535", "fields": {"nom_de_la_commune": "ROUGEMONTOT", "libell_d_acheminement": "ROUGEMONTOT", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25506"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4874e4ad9719da7b800d198b99c365aa3e3e15", "fields": {"nom_de_la_commune": "ROUHE", "libell_d_acheminement": "ROUHE", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25507"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb5444904ae571bd8f33f7ad1f4ad30494c97797", "fields": {"nom_de_la_commune": "RUREY", "libell_d_acheminement": "RUREY", "code_postal": "25290", "coordonnees_gps": [47.1021279633, 6.08388420751], "code_commune_insee": "25511"}, "geometry": {"type": "Point", "coordinates": [6.08388420751, 47.1021279633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528d1bafb3b4ce5d4c6595afe8a043dd1079ab09", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25515"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91326b72fc8b67239389e754678e54846fa37f36", "fields": {"nom_de_la_commune": "ST JULIEN LES MONTBELIARD", "libell_d_acheminement": "ST JULIEN LES MONTBELIARD", "code_postal": "25550", "coordonnees_gps": [47.5134023516, 6.72872388937], "code_commune_insee": "25521"}, "geometry": {"type": "Point", "coordinates": [6.72872388937, 47.5134023516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843a9ab40cd33b227ceefc7edf1d8e7d4b533565", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "25113", "coordonnees_gps": [47.5018427196, 6.69474080067], "code_commune_insee": "25523"}, "geometry": {"type": "Point", "coordinates": [6.69474080067, 47.5018427196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4abe5f964977f31449a638017350e790c6b21b8a", "fields": {"nom_de_la_commune": "SAULES", "libell_d_acheminement": "SAULES", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25535"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4f0157f5b2ea2e9391352128c8bc01cb5fef35a", "fields": {"nom_de_la_commune": "SEPTFONTAINES", "libell_d_acheminement": "SEPTFONTAINES", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25541"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb069a5146abeb4cde99e4ecd3b7102951e778c8", "fields": {"nom_de_la_commune": "SERRE LES SAPINS", "libell_d_acheminement": "SERRE LES SAPINS", "code_postal": "25770", "coordonnees_gps": [47.2322891241, 5.91617733766], "code_commune_insee": "25542"}, "geometry": {"type": "Point", "coordinates": [5.91617733766, 47.2322891241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56583f9bd0a252c408c1f1aa5a54488bb05bbacc", "fields": {"nom_de_la_commune": "SILLEY AMANCEY", "libell_d_acheminement": "SILLEY AMANCEY", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25545"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "875b0e476cd7006f01c4d34cef46f85865ae16f6", "fields": {"nom_de_la_commune": "SURMONT", "libell_d_acheminement": "SURMONT", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25554"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3cafc51984660cd143d7c257aa853afbd8f0cca", "fields": {"nom_de_la_commune": "THIEBOUHANS", "libell_d_acheminement": "THIEBOUHANS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25559"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "231ebea05f847e4ff48e05824a689c5de37e91ce", "fields": {"nom_de_la_commune": "UZELLE", "libell_d_acheminement": "UZELLE", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25574"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef2f2bf2c7263d8b7c82fbdb8647f0500a498e05", "fields": {"nom_de_la_commune": "VALDAHON", "libell_d_acheminement": "VALDAHON", "code_postal": "25800", "coordonnees_gps": [47.1494559066, 6.34818353393], "code_commune_insee": "25578"}, "geometry": {"type": "Point", "coordinates": [6.34818353393, 47.1494559066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcca42b8bb8b80df8b514b855d050c7642786e1b", "fields": {"nom_de_la_commune": "VALONNE", "libell_d_acheminement": "VALONNE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25583"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "570b8b0d643f985d88e7089a4f2516922c93d401", "fields": {"nom_de_la_commune": "VANDONCOURT", "libell_d_acheminement": "VANDONCOURT", "code_postal": "25230", "coordonnees_gps": [47.458852927, 6.88062444955], "code_commune_insee": "25586"}, "geometry": {"type": "Point", "coordinates": [6.88062444955, 47.458852927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd6fd00f38c3c535cd19c1e520256512fc4c793", "fields": {"nom_de_la_commune": "VAUDRIVILLERS", "libell_d_acheminement": "VAUDRIVILLERS", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25590"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d8e70916c7b90c5859eb3a897634ea410f1c10", "fields": {"nom_de_la_commune": "VAUX LES PRES", "libell_d_acheminement": "VAUX LES PRES", "code_postal": "25770", "coordonnees_gps": [47.2322891241, 5.91617733766], "code_commune_insee": "25593"}, "geometry": {"type": "Point", "coordinates": [5.91617733766, 47.2322891241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f98151f4e7b8809a786d3a03120d98bb4913b64", "fields": {"nom_de_la_commune": "VELLEROT LES BELVOIR", "libell_d_acheminement": "VELLEROT LES BELVOIR", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25595"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d213e90b6f3661e0f00f8718c3b0dfc503bad1c", "fields": {"nom_de_la_commune": "VENNES", "libell_d_acheminement": "VENNES", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25600"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d48ccc3cdf8c3389383baa3affbea3ca8c3dc77", "fields": {"nom_de_la_commune": "VERNIERFONTAINE", "libell_d_acheminement": "VERNIERFONTAINE", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25605"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a45258800c4afe702c274b83db009cac34e5642", "fields": {"nom_de_la_commune": "VILLARS ST GEORGES", "libell_d_acheminement": "VILLARS ST GEORGES", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25616"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15a6b6fac97056cad055317dc5775645ef948f7a", "fields": {"nom_de_la_commune": "ST MARTIN DE FONTENAY", "libell_d_acheminement": "ST MARTIN DE FONTENAY", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14623"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "557e1574c357b86549c909da128579e65adcd259", "fields": {"nom_de_la_commune": "ST MARTIN DE LA LIEUE", "libell_d_acheminement": "ST MARTIN DE LA LIEUE", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14625"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a678f1751f40b9857ea8d575b0db84aef8cc8b", "fields": {"nom_de_la_commune": "ST MARTIN DE MAILLOC", "libell_d_acheminement": "ST MARTIN DE MAILLOC", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14626"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6f4d0e91a5bff7cff4ea08786fda7656340b68", "fields": {"nom_de_la_commune": "ST PIERRE CANIVET", "libell_d_acheminement": "ST PIERRE CANIVET", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14646"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "353eff5276300a4100bf38ce52d0df1ffb270ab9", "fields": {"nom_de_la_commune": "ST PIERRE DES IFS", "libell_d_acheminement": "ST PIERRE DES IFS", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14648"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "101a5a07ac201a9958aba45e1c7f709b55eb63ef", "fields": {"nom_de_la_commune": "ST PIERRE DU MONT", "libell_d_acheminement": "ST PIERRE DU MONT", "code_postal": "14450", "coordonnees_gps": [49.3773022601, -1.01912663237], "code_commune_insee": "14652"}, "geometry": {"type": "Point", "coordinates": [-1.01912663237, 49.3773022601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cee57a679d13468840a92d5d1e8a19af871e2df5", "fields": {"nom_de_la_commune": "ST PIERRE SUR DIVES", "libell_d_acheminement": "ST PIERRE SUR DIVES", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14654"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "800ca25efb184da3da9a6b6cf444a42d7b22e274", "fields": {"nom_de_la_commune": "ST SYLVAIN", "libell_d_acheminement": "ST SYLVAIN", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14659"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d99594999fb18a23ed872d64ee61398067aa3b", "fields": {"nom_de_la_commune": "ST VAAST EN AUGE", "libell_d_acheminement": "ST VAAST EN AUGE", "code_postal": "14640", "coordonnees_gps": [49.3070612081, -0.000385070160039], "code_commune_insee": "14660"}, "geometry": {"type": "Point", "coordinates": [-0.000385070160039, 49.3070612081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba93a4d5510fef24f2d9eaf1297c6b2f5947102b", "fields": {"nom_de_la_commune": "SALLEN", "libell_d_acheminement": "SALLEN", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14664"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a209a3eb3104cec6ceb4515c515d0dcae66dd437", "fields": {"nom_de_la_commune": "SUBLES", "libell_d_acheminement": "SUBLES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14679"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2227633c418142e2599bce142533b9cb57a4cac0", "fields": {"nom_de_la_commune": "SULLY", "libell_d_acheminement": "SULLY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14680"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ddbb519fa7a9a503b1773d4c84a870347875914", "fields": {"nom_de_la_commune": "SURVILLE", "libell_d_acheminement": "SURVILLE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14682"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5af573410eda459fd5b7512281b9c72bd72be6a1", "fields": {"nom_de_la_commune": "THIEVILLE", "libell_d_acheminement": "THIEVILLE", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14688"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51a0db2066ff5567e2fe751bb0800e9177b8102e", "fields": {"nom_de_la_commune": "TORTEVAL QUESNAY", "libell_d_acheminement": "TORTEVAL QUESNAY", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14695"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec60bc3a114f9da4dafc3436e48a23d92b468547", "fields": {"code_postal": "14240", "code_commune_insee": "14695", "libell_d_acheminement": "TORTEVAL QUESNAY", "ligne_5": "QUESNAY GUESNON", "nom_de_la_commune": "TORTEVAL QUESNAY", "coordonnees_gps": [49.1055577852, -0.781481644045]}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "880bf39da302039a4f1b890b4e5ac4f0e646789c", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "LIEURY", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad0a3925855fb4350e341e6993286478d78a393", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "MONTPINCON", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e1206397c0358c8acf1d8b2098ee9cf1c56fc12", "fields": {"nom_de_la_commune": "TOUFFREVILLE", "libell_d_acheminement": "TOUFFREVILLE", "code_postal": "14940", "coordonnees_gps": [49.1833480619, -0.224513518796], "code_commune_insee": "14698"}, "geometry": {"type": "Point", "coordinates": [-0.224513518796, 49.1833480619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d29f02752b3148eee0d95a95be19228bb3631ac2", "fields": {"nom_de_la_commune": "TOURNIERES", "libell_d_acheminement": "TOURNIERES", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14705"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c55b07979b0be948086597af9277edad58baad0", "fields": {"nom_de_la_commune": "TOURVILLE SUR ODON", "libell_d_acheminement": "TOURVILLE SUR ODON", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14707"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dca9971691be19fc3d2056d59e2a06ffe97026b8", "fields": {"nom_de_la_commune": "LE TRONQUAY", "libell_d_acheminement": "LE TRONQUAY", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14714"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712f4298d18b0b1215a2d5118b801f8912904a38", "fields": {"nom_de_la_commune": "TROUVILLE SUR MER", "libell_d_acheminement": "TROUVILLE SUR MER", "code_postal": "14360", "coordonnees_gps": [49.3720315323, 0.101175755838], "code_commune_insee": "14715"}, "geometry": {"type": "Point", "coordinates": [0.101175755838, 49.3720315323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "025f0a5ba0918d2f4a54e6600eacad59a09f78e3", "fields": {"nom_de_la_commune": "USSY", "libell_d_acheminement": "USSY", "code_postal": "14420", "coordonnees_gps": [48.9529350407, -0.254216402592], "code_commune_insee": "14720"}, "geometry": {"type": "Point", "coordinates": [-0.254216402592, 48.9529350407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a8833fb809fe1a6eb2710ce8812035cc24d8857", "fields": {"code_postal": "14350", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "LE DESERT", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0342d8432d20422f0fc755d6e01a8d56dba79e0f", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "LA ROCQUE", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60d5b8adc06eacb39121e594ca63e30828e30f1f", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "LE THEIL BOCAGE", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0920cda11740e82046aa651f946800bd6f2e6201", "fields": {"nom_de_la_commune": "VAUVILLE", "libell_d_acheminement": "VAUVILLE", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14731"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2646a0896fbdfaf5a796e1b39a8f13900247b727", "fields": {"nom_de_la_commune": "VENDES", "libell_d_acheminement": "VENDES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14734"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38fb121b9f4448f822afb3a848e2705dd3380dbb", "fields": {"code_postal": "14170", "code_commune_insee": "14735", "libell_d_acheminement": "VENDEUVRE", "ligne_5": "ESCURES SUR FAVIERES", "nom_de_la_commune": "VENDEUVRE", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce38ba4c35e957d125242aaaf46218b1afa82c5", "fields": {"nom_de_la_commune": "VER SUR MER", "libell_d_acheminement": "VER SUR MER", "code_postal": "14114", "coordonnees_gps": [49.333911866, -0.528087452787], "code_commune_insee": "14739"}, "geometry": {"type": "Point", "coordinates": [-0.528087452787, 49.333911866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01137a846db68ebedbd073693c7e0c03a7e7c4d3", "fields": {"nom_de_la_commune": "LA VESPIERE FRIARDEL", "libell_d_acheminement": "LA VESPIERE FRIARDEL", "code_postal": "14290", "coordonnees_gps": [49.0265084607, 0.343255889354], "code_commune_insee": "14740"}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb774b4243bb211e2aed1c27a4da7db7ac4a2a00", "fields": {"code_postal": "14290", "code_commune_insee": "14740", "libell_d_acheminement": "LA VESPIERE FRIARDEL", "ligne_5": "FRIARDEL", "nom_de_la_commune": "LA VESPIERE FRIARDEL", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07bec870ca6262431d6f9b4c617438921bc3949", "fields": {"nom_de_la_commune": "VIERVILLE SUR MER", "libell_d_acheminement": "VIERVILLE SUR MER", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14745"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52c76c216a4e94ad7a520baca691d9efab050f5c", "fields": {"nom_de_la_commune": "VIEUX", "libell_d_acheminement": "VIEUX", "code_postal": "14930", "coordonnees_gps": [49.1299717664, -0.432158841819], "code_commune_insee": "14747"}, "geometry": {"type": "Point", "coordinates": [-0.432158841819, 49.1299717664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f98e23914dd83adc40ea8fb99cd221079fe1418", "fields": {"nom_de_la_commune": "VILLIERS LE SEC", "libell_d_acheminement": "VILLIERS LE SEC", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14757"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f35374cb4d04185a8b085e6c750d8e042f478dd", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "ROULLOURS", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf29273e433e5ee838275538844ae69e2d4f2c48", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "ST GERMAIN DE TALLEVENDE", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2328620bd49c57c2d7f36b2c2246d3632fdea4cb", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "ST MARTIN DE TALLEVENDE", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96cc020af75d531e8bd617ac1b8d3a3039f867fa", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "TRUTTEMER LE PETIT", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "711cace6a9d759ad5a43e90a3958ad9f3c2911b1", "fields": {"nom_de_la_commune": "VOUILLY", "libell_d_acheminement": "VOUILLY", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14763"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4e1419ab7a2835eeb97bee34756e8449c1eb2e2", "fields": {"nom_de_la_commune": "ANGLARDS DE ST FLOUR", "libell_d_acheminement": "ANGLARDS DE ST FLOUR", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15005"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310133ac52aa8d5a5b15c9f3a9341c23baf8b9b2", "fields": {"nom_de_la_commune": "AUZERS", "libell_d_acheminement": "AUZERS", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15015"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5621961705cfab3675adcf952cf174750868a256", "fields": {"nom_de_la_commune": "ALBEPIERRE BREDONS", "libell_d_acheminement": "ALBEPIERRE BREDONS", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15025"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a50c08693eee93cfaf70927ff8c02b0dea9384c", "fields": {"nom_de_la_commune": "CALVINET", "libell_d_acheminement": "CALVINET", "code_postal": "15340", "coordonnees_gps": [44.6960347495, 2.36319520573], "code_commune_insee": "15027"}, "geometry": {"type": "Point", "coordinates": [2.36319520573, 44.6960347495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a37249095d6f2e99500a1079be99c53fecb880e0", "fields": {"nom_de_la_commune": "CEZENS", "libell_d_acheminement": "CEZENS", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15033"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d3d5ff93d28c6a12481c73c60e1d056d327655", "fields": {"nom_de_la_commune": "CHARMENSAC", "libell_d_acheminement": "CHARMENSAC", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15043"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7dc4a95dd1eb49a8c537cbcbe6702f56838b9e4", "fields": {"nom_de_la_commune": "CHEYLADE", "libell_d_acheminement": "CHEYLADE", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15049"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff3f9a2a9441f24ca92e09c921ce83bddba2b5de", "fields": {"nom_de_la_commune": "CONDAT", "libell_d_acheminement": "CONDAT", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15054"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d6d064e14bf658af3314cce55a4028849525c5e", "fields": {"nom_de_la_commune": "COREN", "libell_d_acheminement": "COREN", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15055"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b852437131e9a8e372c83efdfd5ce9ccd4def1e8", "fields": {"nom_de_la_commune": "CROS DE MONTVERT", "libell_d_acheminement": "CROS DE MONTVERT", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15057"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6653a32fda01ddd14919bff8b1c05a6ef21d6a4f", "fields": {"nom_de_la_commune": "CROS DE RONESQUE", "libell_d_acheminement": "CROS DE RONESQUE", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15058"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23ddca75cdf3c2bd438dc279e3dc9e0baa10ac22", "fields": {"nom_de_la_commune": "FONTANGES", "libell_d_acheminement": "FONTANGES", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15070"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e08e694d8fd2986e44c60acfc1828414fb1e5652", "fields": {"nom_de_la_commune": "GIOU DE MAMOU", "libell_d_acheminement": "GIOU DE MAMOU", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15074"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd63e8b01c9a3e16e88c24705d64f1fd0a4556e", "fields": {"nom_de_la_commune": "JOURSAC", "libell_d_acheminement": "JOURSAC", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15080"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "046c5f87e8861ef83aef368da73564b5475f1502", "fields": {"nom_de_la_commune": "JUSSAC", "libell_d_acheminement": "JUSSAC", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15083"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ce98fd32162c97898549dcf0aaecfaab9d5ee6", "fields": {"nom_de_la_commune": "LAFEUILLADE EN VEZIE", "libell_d_acheminement": "LAFEUILLADE EN VEZIE", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15090"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f1fe900088ba2f4a021adb87ee3e4fb87a3c52", "fields": {"nom_de_la_commune": "LANOBRE", "libell_d_acheminement": "LANOBRE", "code_postal": "15270", "coordonnees_gps": [45.4132624224, 2.59541322331], "code_commune_insee": "15092"}, "geometry": {"type": "Point", "coordinates": [2.59541322331, 45.4132624224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07953006556da23ac6bd9aa0e37f5d5e5100c7a0", "fields": {"nom_de_la_commune": "LAROQUEVIEILLE", "libell_d_acheminement": "LAROQUEVIEILLE", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15095"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9af4b951429bdb93404a43e959332aa167d6414b", "fields": {"nom_de_la_commune": "LAVIGERIE", "libell_d_acheminement": "LAVIGERIE", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15102"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16debf45bec36ef47a060042b2cd017ecd0ed382", "fields": {"nom_de_la_commune": "LEYNHAC", "libell_d_acheminement": "LEYNHAC", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15104"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c16dda600ac1fa0149a1f4be5e29ed742cc575e", "fields": {"code_postal": "15320", "code_commune_insee": "15108", "libell_d_acheminement": "VAL D ARCOMIE", "ligne_5": "FAVEROLLES", "nom_de_la_commune": "VAL D ARCOMIE", "coordonnees_gps": [44.9755512909, 3.25916489345]}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a558bd9b300a7a55edbbf3d9f0c6fe0d17efc41", "fields": {"nom_de_la_commune": "LUGARDE", "libell_d_acheminement": "LUGARDE", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15110"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091c10a7f7ae79aca90ac26dfcafda168e7843a5", "fields": {"nom_de_la_commune": "MASSIAC", "libell_d_acheminement": "MASSIAC", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15119"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24310e135e470f46070ffaeec88bd26f80c45fae", "fields": {"nom_de_la_commune": "MENTIERES", "libell_d_acheminement": "MENTIERES", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15125"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "725ffe65652337d0b55762ac7346508494fce992", "fields": {"nom_de_la_commune": "MONTCHAMP", "libell_d_acheminement": "MONTCHAMP", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15130"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6c1be7a6be32808bff49db1296d0c9ad52668cd", "fields": {"nom_de_la_commune": "MOUSSAGES", "libell_d_acheminement": "MOUSSAGES", "code_postal": "15380", "coordonnees_gps": [45.1901906468, 2.5322900366], "code_commune_insee": "15137"}, "geometry": {"type": "Point", "coordinates": [2.5322900366, 45.1901906468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7010ffc9202cd98d207ca7854882ee863632f899", "fields": {"nom_de_la_commune": "NIEUDAN", "libell_d_acheminement": "NIEUDAN", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15143"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b024af9bb748f0bbd19ebc1ae7746d5742e979", "fields": {"nom_de_la_commune": "ORADOUR", "libell_d_acheminement": "ORADOUR", "code_postal": "15260", "coordonnees_gps": [44.930379785, 2.97483208251], "code_commune_insee": "15145"}, "geometry": {"type": "Point", "coordinates": [2.97483208251, 44.930379785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae798a03cc6b4e6231e83ee860c1a4223dba1067", "fields": {"nom_de_la_commune": "PAULHENC", "libell_d_acheminement": "PAULHENC", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15149"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9239f1f8538c631521bfb3b4ceb718fc3b5db75a", "fields": {"code_postal": "15700", "code_commune_insee": "15153", "libell_d_acheminement": "PLEAUX", "ligne_5": "TOURNIAC", "nom_de_la_commune": "PLEAUX", "coordonnees_gps": [45.1474212799, 2.26638957361]}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43c16074c32412196af4d39d0562166d015da2f7", "fields": {"nom_de_la_commune": "ROUFFIAC", "libell_d_acheminement": "ROUFFIAC", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15165"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ed4f49e038df0715c6cce46e6faa79f2297b4e", "fields": {"nom_de_la_commune": "STE ANASTASIE", "libell_d_acheminement": "STE ANASTASIE", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15171"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e67f5d96612e9303184f77c4286184cf5db7c4d", "fields": {"nom_de_la_commune": "ST BONNET DE CONDAT", "libell_d_acheminement": "ST BONNET DE CONDAT", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15173"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff49a6879eef96284ce565daf3eb51bc17496b1e", "fields": {"nom_de_la_commune": "ST CIRGUES DE JORDANNE", "libell_d_acheminement": "ST CIRGUES DE JORDANNE", "code_postal": "15590", "coordonnees_gps": [45.0490320322, 2.61650882342], "code_commune_insee": "15178"}, "geometry": {"type": "Point", "coordinates": [2.61650882342, 45.0490320322]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4cf5d534671c01143c331a67c303fd4b5f975e5", "fields": {"nom_de_la_commune": "ST ETIENNE DE CARLAT", "libell_d_acheminement": "ST ETIENNE DE CARLAT", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15183"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b58744650c653a6816466cd4ce5fef59f255a316", "fields": {"nom_de_la_commune": "ST ETIENNE DE CHOMEIL", "libell_d_acheminement": "ST ETIENNE DE CHOMEIL", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15185"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21fdc661ede48f641676c138d47b8a40ceb5be7a", "fields": {"nom_de_la_commune": "STE EULALIE", "libell_d_acheminement": "STE EULALIE", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15186"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b68f784688a85e6d08fbdccd1c704180b19ddaf5", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15188"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea367479c089346b0fb94f83bb1879ec4366b59", "fields": {"nom_de_la_commune": "ST GERONS", "libell_d_acheminement": "ST GERONS", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15189"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5dbf148835e0926207cf0f63ea7fc4b1024f30", "fields": {"nom_de_la_commune": "ST PAUL DE SALERS", "libell_d_acheminement": "ST PAUL DE SALERS", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15205"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53dd1c40c3f17217f86e19903e7ae54ea33bf0d2", "fields": {"nom_de_la_commune": "ST REMY DE CHAUDES AIGUES", "libell_d_acheminement": "ST REMY DE CHAUDES AIGUES", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15209"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f85406a658ed698ba3e8f8bc1145407f19ee886a", "fields": {"nom_de_la_commune": "ST SANTIN CANTALES", "libell_d_acheminement": "ST SANTIN CANTALES", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15211"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7d4b6cd8788e6fd00366e181d2192cd87043ea6", "fields": {"nom_de_la_commune": "ST SANTIN DE MAURS", "libell_d_acheminement": "ST SANTIN DE MAURS", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15212"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "239e510ffe796662f26313c55c140bacd7948c67", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15213"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d20bd15116d0433f91bbcbb61efe4b4d0f7129b", "fields": {"nom_de_la_commune": "ST VINCENT DE SALERS", "libell_d_acheminement": "ST VINCENT DE SALERS", "code_postal": "15380", "coordonnees_gps": [45.1901906468, 2.5322900366], "code_commune_insee": "15218"}, "geometry": {"type": "Point", "coordinates": [2.5322900366, 45.1901906468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82da4d4eeb5282cac20c35b515ad442e5dac7cfb", "fields": {"nom_de_la_commune": "SANSAC VEINAZES", "libell_d_acheminement": "SANSAC VEINAZES", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15222"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb49be605ca9c4c80381cb189d8f132be76abfe", "fields": {"nom_de_la_commune": "SEGUR LES VILLAS", "libell_d_acheminement": "SEGUR LES VILLAS", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15225"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c492d62aa5d1051e953b5cd01b0765de0514b88", "fields": {"nom_de_la_commune": "SENEZERGUES", "libell_d_acheminement": "SENEZERGUES", "code_postal": "15340", "coordonnees_gps": [44.6960347495, 2.36319520573], "code_commune_insee": "15226"}, "geometry": {"type": "Point", "coordinates": [2.36319520573, 44.6960347495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290c329634fedc2afca81e4bffad9c47e3a9303b", "fields": {"nom_de_la_commune": "LE TRIOULOU", "libell_d_acheminement": "LE TRIOULOU", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15242"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8645aff3a400bb2a77bd2108ab1c6fe23b14a2a", "fields": {"nom_de_la_commune": "VABRES", "libell_d_acheminement": "VABRES", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15245"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8555cfd8ddcbd2eec47cab22538c0e5c781121d", "fields": {"nom_de_la_commune": "VALJOUZE", "libell_d_acheminement": "VALJOUZE", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15247"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccbcd7a3375d9e8b6dc90035939839af0cf9fa43", "fields": {"nom_de_la_commune": "VALUEJOLS", "libell_d_acheminement": "VALUEJOLS", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15248"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6641b7483e493c517d020482cdd753a1d7e2ffd9", "fields": {"nom_de_la_commune": "VEYRIERES", "libell_d_acheminement": "VEYRIERES", "code_postal": "15350", "coordonnees_gps": [45.360785771, 2.38882162229], "code_commune_insee": "15254"}, "geometry": {"type": "Point", "coordinates": [2.38882162229, 45.360785771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eed60759391042af5d697d05b41d5959a8a41318", "fields": {"nom_de_la_commune": "YDES", "libell_d_acheminement": "YDES", "code_postal": "15210", "coordonnees_gps": [45.3513333268, 2.45227003006], "code_commune_insee": "15265"}, "geometry": {"type": "Point", "coordinates": [2.45227003006, 45.3513333268]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7a2308bf9e23d7a2d3d52805e0994ce336ffe25", "fields": {"nom_de_la_commune": "AIGRE", "libell_d_acheminement": "AIGRE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16005"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7380ae6bd5f9f24ee9c9332ab417bb42924dc006", "fields": {"nom_de_la_commune": "AMBLEVILLE", "libell_d_acheminement": "AMBLEVILLE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16010"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56fc48cc631237c816bb0ea435b36d3ba0fae9a5", "fields": {"nom_de_la_commune": "ANAIS", "libell_d_acheminement": "ANAIS", "code_postal": "16560", "coordonnees_gps": [45.7971229421, 0.228616838557], "code_commune_insee": "16011"}, "geometry": {"type": "Point", "coordinates": [0.228616838557, 45.7971229421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce8e01f1b3b67f408540a8ddaf3ad43d4772125", "fields": {"nom_de_la_commune": "ANGEDUC", "libell_d_acheminement": "ANGEDUC", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16014"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b041d8ce8b91c355d9c5ae14a4306443e7cd4ca0", "fields": {"nom_de_la_commune": "ARS", "libell_d_acheminement": "ARS", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16018"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5777d4979c1e8bc724a67609dec894dec98d51bc", "fields": {"nom_de_la_commune": "TIZAC DE LAPOUYADE", "libell_d_acheminement": "TIZAC DE LAPOUYADE", "code_postal": "33620", "coordonnees_gps": [45.1008048463, -0.357080574095], "code_commune_insee": "33532"}, "geometry": {"type": "Point", "coordinates": [-0.357080574095, 45.1008048463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ba10098aee593d68b33f257a8b5e38dc23195f2", "fields": {"nom_de_la_commune": "VAYRES", "libell_d_acheminement": "VAYRES", "code_postal": "33870", "coordonnees_gps": [44.8909014502, -0.326856220628], "code_commune_insee": "33539"}, "geometry": {"type": "Point", "coordinates": [-0.326856220628, 44.8909014502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3277916ed9d633912d5ed4b3e6cc6d4adb7d9f4", "fields": {"nom_de_la_commune": "VENSAC", "libell_d_acheminement": "VENSAC", "code_postal": "33590", "coordonnees_gps": [45.4294331606, -1.04372430811], "code_commune_insee": "33541"}, "geometry": {"type": "Point", "coordinates": [-1.04372430811, 45.4294331606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfa4b1e2e617aae02a89d10fc0873c7c669c30dd", "fields": {"nom_de_la_commune": "VERTHEUIL", "libell_d_acheminement": "VERTHEUIL", "code_postal": "33180", "coordonnees_gps": [45.262541575, -0.809284319605], "code_commune_insee": "33545"}, "geometry": {"type": "Point", "coordinates": [-0.809284319605, 45.262541575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ace517034292de946e89ac11f9b5ee2739e8d42", "fields": {"nom_de_la_commune": "AGDE", "libell_d_acheminement": "AGDE", "code_postal": "34300", "coordonnees_gps": [43.3094378248, 3.48447174054], "code_commune_insee": "34003"}, "geometry": {"type": "Point", "coordinates": [3.48447174054, 43.3094378248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ebbcb3723842797608223234e576b4832fecbfe", "fields": {"nom_de_la_commune": "AGEL", "libell_d_acheminement": "AGEL", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34004"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "355cb0fb2bb8a213827eb617ba342668b75387c0", "fields": {"nom_de_la_commune": "ALIGNAN DU VENT", "libell_d_acheminement": "ALIGNAN DU VENT", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34009"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba3a78ca53790af273105b8f411721dd3fb4bf42", "fields": {"nom_de_la_commune": "ASSIGNAN", "libell_d_acheminement": "ASSIGNAN", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34015"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f08a796e570399c1c734932390403188861c08", "fields": {"nom_de_la_commune": "BASSAN", "libell_d_acheminement": "BASSAN", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34025"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bfb2bdae4992c17e37071eb662b7b9de07b1358", "fields": {"nom_de_la_commune": "BEAUFORT", "libell_d_acheminement": "BEAUFORT", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34026"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96ef616133b3cfd0af7cb8373f8e6dc95c261f62", "fields": {"nom_de_la_commune": "BELARGA", "libell_d_acheminement": "BELARGA", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34029"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8195be2ae46b6d974983a6a5c2d141120731b1ba", "fields": {"nom_de_la_commune": "BESSAN", "libell_d_acheminement": "BESSAN", "code_postal": "34550", "coordonnees_gps": [43.3573233197, 3.41582676932], "code_commune_insee": "34031"}, "geometry": {"type": "Point", "coordinates": [3.41582676932, 43.3573233197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41097c3446a23002e6463f05396eb4d90440a3d4", "fields": {"nom_de_la_commune": "BOISSERON", "libell_d_acheminement": "BOISSERON", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34033"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd08743286a391e702d14f56b6e918b7b66c57b3", "fields": {"nom_de_la_commune": "BOUJAN SUR LIBRON", "libell_d_acheminement": "BOUJAN SUR LIBRON", "code_postal": "34760", "coordonnees_gps": [43.3796434346, 3.26335863386], "code_commune_insee": "34037"}, "geometry": {"type": "Point", "coordinates": [3.26335863386, 43.3796434346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8704cc59447e3ca574028e2af9869ee3781cdd1c", "fields": {"nom_de_la_commune": "LE BOUSQUET D ORB", "libell_d_acheminement": "LE BOUSQUET D ORB", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34038"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a19ba03fa3ca56927ede5bdc480c081cb06c0d", "fields": {"nom_de_la_commune": "BOUZIGUES", "libell_d_acheminement": "BOUZIGUES", "code_postal": "34140", "coordonnees_gps": [43.4368537431, 3.59942976108], "code_commune_insee": "34039"}, "geometry": {"type": "Point", "coordinates": [3.59942976108, 43.4368537431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cb350363617303ab8bbf04d21870bbead55f16f", "fields": {"nom_de_la_commune": "CABRIERES", "libell_d_acheminement": "CABRIERES", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34045"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6d77e5b5d10c7d552e870a425a35bf6ccdbe35", "fields": {"nom_de_la_commune": "CAMPAGNAN", "libell_d_acheminement": "CAMPAGNAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34047"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9270ce03622e83758920f1bcc18ef245da33bdfc", "fields": {"nom_de_la_commune": "CASTELNAU DE GUERS", "libell_d_acheminement": "CASTELNAU DE GUERS", "code_postal": "34120", "coordonnees_gps": [43.4541786417, 3.425777952], "code_commune_insee": "34056"}, "geometry": {"type": "Point", "coordinates": [3.425777952, 43.4541786417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8d56503ce5dc548d26ce2869c5a93c377c6858", "fields": {"nom_de_la_commune": "CASTRIES", "libell_d_acheminement": "CASTRIES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34058"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d191f606616a21dd13ee211f52a39844008b48c7", "fields": {"nom_de_la_commune": "CAZOULS LES BEZIERS", "libell_d_acheminement": "CAZOULS LES BEZIERS", "code_postal": "34370", "coordonnees_gps": [43.3835173901, 3.09833577984], "code_commune_insee": "34069"}, "geometry": {"type": "Point", "coordinates": [3.09833577984, 43.3835173901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "567dd48ee83eb4f6b60cc7050343f52b78504d84", "fields": {"nom_de_la_commune": "CEBAZAN", "libell_d_acheminement": "CEBAZAN", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34070"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eff1b573380ee96c0c98a9cb5648135d02260bc8", "fields": {"nom_de_la_commune": "CLARET", "libell_d_acheminement": "CLARET", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34078"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e43a43f8b204fb1debc0a7a5f63b9ed03b24209b", "fields": {"nom_de_la_commune": "COMBAILLAUX", "libell_d_acheminement": "COMBAILLAUX", "code_postal": "34980", "coordonnees_gps": [43.6888847812, 3.79972648771], "code_commune_insee": "34082"}, "geometry": {"type": "Point", "coordinates": [3.79972648771, 43.6888847812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30d35a2605e7231df6a18fe53f9040a98d0954d4", "fields": {"nom_de_la_commune": "COMBES", "libell_d_acheminement": "COMBES", "code_postal": "34240", "coordonnees_gps": [43.6002437249, 3.06165252657], "code_commune_insee": "34083"}, "geometry": {"type": "Point", "coordinates": [3.06165252657, 43.6002437249]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c061a17f67013d1a09a841b53e1039cf12bad35a", "fields": {"nom_de_la_commune": "CREISSAN", "libell_d_acheminement": "CREISSAN", "code_postal": "34370", "coordonnees_gps": [43.3835173901, 3.09833577984], "code_commune_insee": "34089"}, "geometry": {"type": "Point", "coordinates": [3.09833577984, 43.3835173901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1c7ca4466991aabb19e39d91e5b110f7522f055", "fields": {"nom_de_la_commune": "CRUZY", "libell_d_acheminement": "CRUZY", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34092"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26735d926d95ceba10c73c96dce2fff601b6e10c", "fields": {"nom_de_la_commune": "DIO ET VALQUIERES", "libell_d_acheminement": "DIO ET VALQUIERES", "code_postal": "34650", "coordonnees_gps": [43.7331097591, 3.20531974015], "code_commune_insee": "34093"}, "geometry": {"type": "Point", "coordinates": [3.20531974015, 43.7331097591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896905fd91808a063dd7cef172e174902f353497", "fields": {"nom_de_la_commune": "FERRIERES LES VERRERIES", "libell_d_acheminement": "FERRIERES LES VERRERIES", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34099"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f42d87dcfbc753180de9a039fcb10e02c6fb1e11", "fields": {"nom_de_la_commune": "FONTES", "libell_d_acheminement": "FONTES", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34103"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1763a60493f96b16b663a021e2b45c6c923cd106", "fields": {"nom_de_la_commune": "FOUZILHON", "libell_d_acheminement": "FOUZILHON", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34105"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b38f070213c3ef778ce8ca6757a1c8de632c238", "fields": {"nom_de_la_commune": "FRONTIGNAN", "libell_d_acheminement": "FRONTIGNAN", "code_postal": "34110", "coordonnees_gps": [43.471821386, 3.77729139459], "code_commune_insee": "34108"}, "geometry": {"type": "Point", "coordinates": [3.77729139459, 43.471821386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790791171fdabd97eb0d862d7b00b1dd9c001198", "fields": {"nom_de_la_commune": "GIGNAC", "libell_d_acheminement": "GIGNAC", "code_postal": "34150", "coordonnees_gps": [43.6986271802, 3.57053761185], "code_commune_insee": "34114"}, "geometry": {"type": "Point", "coordinates": [3.57053761185, 43.6986271802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999a6325d9c84397124fd51f7d154379cd104f87", "fields": {"nom_de_la_commune": "HEREPIAN", "libell_d_acheminement": "HEREPIAN", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34119"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7f724ec4a99204643f4667d782cc362c1d0fd5c", "fields": {"nom_de_la_commune": "JONCELS", "libell_d_acheminement": "JONCELS", "code_postal": "34650", "coordonnees_gps": [43.7331097591, 3.20531974015], "code_commune_insee": "34121"}, "geometry": {"type": "Point", "coordinates": [3.20531974015, 43.7331097591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f767357464b172efc5a384f1288ce358495eba7", "fields": {"nom_de_la_commune": "JONQUIERES", "libell_d_acheminement": "JONQUIERES", "code_postal": "34725", "coordonnees_gps": [43.6689337124, 3.48233667506], "code_commune_insee": "34122"}, "geometry": {"type": "Point", "coordinates": [3.48233667506, 43.6689337124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4733500723820fda0b9bb96fdbb4780e1877502f", "fields": {"nom_de_la_commune": "LACOSTE", "libell_d_acheminement": "LACOSTE", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34124"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a529b4d125dec14074eb6b3e700571db5cf8f3c3", "fields": {"nom_de_la_commune": "LAURENS", "libell_d_acheminement": "LAURENS", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34130"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "986d12a1241759c60023293c632c4cc305ebcb07", "fields": {"nom_de_la_commune": "LAVALETTE", "libell_d_acheminement": "LAVALETTE", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34133"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92c8dc9c01d6f90b8fd1d2f849fd9c078338c652", "fields": {"nom_de_la_commune": "LIEURAN LES BEZIERS", "libell_d_acheminement": "LIEURAN LES BEZIERS", "code_postal": "34290", "coordonnees_gps": [43.4166702321, 3.31469283208], "code_commune_insee": "34139"}, "geometry": {"type": "Point", "coordinates": [3.31469283208, 43.4166702321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "859ecc105f017ff472856922013ffeafbdbcc579", "fields": {"nom_de_la_commune": "LUNAS", "libell_d_acheminement": "LUNAS", "code_postal": "34650", "coordonnees_gps": [43.7331097591, 3.20531974015], "code_commune_insee": "34144"}, "geometry": {"type": "Point", "coordinates": [3.20531974015, 43.7331097591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71e1aa277f405fd29c7e736deedf4093bf64030", "fields": {"nom_de_la_commune": "MARSEILLAN", "libell_d_acheminement": "MARSEILLAN", "code_postal": "34340", "coordonnees_gps": [43.3603485719, 3.54723138046], "code_commune_insee": "34150"}, "geometry": {"type": "Point", "coordinates": [3.54723138046, 43.3603485719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "560de7e83fe8558574e36f19f48b6e7edfa19cdc", "fields": {"nom_de_la_commune": "MARSILLARGUES", "libell_d_acheminement": "MARSILLARGUES", "code_postal": "34590", "coordonnees_gps": [43.6262438972, 4.14804553489], "code_commune_insee": "34151"}, "geometry": {"type": "Point", "coordinates": [4.14804553489, 43.6262438972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d517c56d99126a42c8c00d5a4a1bbcafb1c2f82", "fields": {"nom_de_la_commune": "MAUREILHAN", "libell_d_acheminement": "MAUREILHAN", "code_postal": "34370", "coordonnees_gps": [43.3835173901, 3.09833577984], "code_commune_insee": "34155"}, "geometry": {"type": "Point", "coordinates": [3.09833577984, 43.3835173901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44b832e2b833ebc960a5cb2565ae9cd81dccdefd", "fields": {"nom_de_la_commune": "MIREVAL", "libell_d_acheminement": "MIREVAL", "code_postal": "34110", "coordonnees_gps": [43.471821386, 3.77729139459], "code_commune_insee": "34159"}, "geometry": {"type": "Point", "coordinates": [3.77729139459, 43.471821386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4e56c2fb0695d9b3390342300b2e4ee33251f10", "fields": {"nom_de_la_commune": "MONTAGNAC", "libell_d_acheminement": "MONTAGNAC", "code_postal": "34530", "coordonnees_gps": [43.4730122504, 3.50379748517], "code_commune_insee": "34162"}, "geometry": {"type": "Point", "coordinates": [3.50379748517, 43.4730122504]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9837871e531db2ad34c244dcadff5e4db20e2dc9", "fields": {"nom_de_la_commune": "MONTAUD", "libell_d_acheminement": "MONTAUD", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34164"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7826a3ea6d75c805772b51a50f51726446f47ca4", "fields": {"nom_de_la_commune": "MONTELS", "libell_d_acheminement": "MONTELS", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34167"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9362d55df52d7aa38f48b5bc81221f183bb94391", "fields": {"nom_de_la_commune": "MONTFERRIER SUR LEZ", "libell_d_acheminement": "MONTFERRIER SUR LEZ", "code_postal": "34980", "coordonnees_gps": [43.6888847812, 3.79972648771], "code_commune_insee": "34169"}, "geometry": {"type": "Point", "coordinates": [3.79972648771, 43.6888847812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d16cd0c8f4a125912bcab45493ed4d6dd998d3ad", "fields": {"nom_de_la_commune": "MONTOULIERS", "libell_d_acheminement": "MONTOULIERS", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34170"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b086bb6a12dab05924b3ad0eb9756cb02db569", "fields": {"nom_de_la_commune": "MURLES", "libell_d_acheminement": "MURLES", "code_postal": "34980", "coordonnees_gps": [43.6888847812, 3.79972648771], "code_commune_insee": "34177"}, "geometry": {"type": "Point", "coordinates": [3.79972648771, 43.6888847812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0f9175d1628e497d99c73c8fac5ece4403e0267", "fields": {"nom_de_la_commune": "OLMET ET VILLECUN", "libell_d_acheminement": "OLMET ET VILLECUN", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34188"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24331dd05821ca732e249c41fbd96212af75eedb", "fields": {"nom_de_la_commune": "PARDAILHAN", "libell_d_acheminement": "PARDAILHAN", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34193"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73b59671b0d5e31f00679eaac07ef2874cd5790c", "fields": {"nom_de_la_commune": "PEGAIROLLES DE BUEGES", "libell_d_acheminement": "PEGAIROLLES DE BUEGES", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34195"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a140d05d6acb438f66ca84ed441353e38c4dfc5b", "fields": {"nom_de_la_commune": "PERET", "libell_d_acheminement": "PERET", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34197"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "714d9546185247db6403706c317b52855a3a1e11", "fields": {"nom_de_la_commune": "PIERRERUE", "libell_d_acheminement": "PIERRERUE", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34201"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3132a86fb444deaf4449f97958cd57a6904dfcac", "fields": {"nom_de_la_commune": "PLAISSAN", "libell_d_acheminement": "PLAISSAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34204"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f991d9caf85b8ae8a91ae4208971c809af02cff", "fields": {"nom_de_la_commune": "LE POUJOL SUR ORB", "libell_d_acheminement": "LE POUJOL SUR ORB", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34211"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f21e8729cc962cbdd07c800a63ffec160e5edc", "fields": {"nom_de_la_commune": "PREMIAN", "libell_d_acheminement": "PREMIAN", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34219"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eda49663143a60ef0d21722d5300cfb525f1351", "fields": {"nom_de_la_commune": "PUIMISSON", "libell_d_acheminement": "PUIMISSON", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34223"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1aa16e77f9217334296a14bc2495a3427c0c4f", "fields": {"nom_de_la_commune": "QUARANTE", "libell_d_acheminement": "QUARANTE", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34226"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2966165a1f366b8fd6e4b98f56bff953847dd4", "fields": {"nom_de_la_commune": "RESTINCLIERES", "libell_d_acheminement": "RESTINCLIERES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34227"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "017171c70fdcc61f009e23baff26720cd84452d1", "fields": {"nom_de_la_commune": "RIEUSSEC", "libell_d_acheminement": "RIEUSSEC", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34228"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "437ad36b8abd3c11ef4ee6ff59330536c3b497f7", "fields": {"nom_de_la_commune": "STE CROIX DE QUINTILLARGUES", "libell_d_acheminement": "STE CROIX DE QUINTILLARGUES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34248"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5fd03e1a6f48ced546f4808a76fa59bc8218df2", "fields": {"nom_de_la_commune": "ST FELIX DE L HERAS", "libell_d_acheminement": "ST FELIX DE L HERAS", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34253"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "316bf0e1c988a28a8fabd7ae42ea1bd5f861b331", "fields": {"nom_de_la_commune": "ST GENIES DE VARENSAL", "libell_d_acheminement": "ST GENIES DE VARENSAL", "code_postal": "34610", "coordonnees_gps": [43.6529362037, 2.99617489245], "code_commune_insee": "34257"}, "geometry": {"type": "Point", "coordinates": [2.99617489245, 43.6529362037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a801e0d4a4112027af5df2f96636d865922b201d", "fields": {"nom_de_la_commune": "ST GEORGES D ORQUES", "libell_d_acheminement": "ST GEORGES D ORQUES", "code_postal": "34680", "coordonnees_gps": [43.6166912889, 3.77419887288], "code_commune_insee": "34259"}, "geometry": {"type": "Point", "coordinates": [3.77419887288, 43.6166912889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9baf4da20aa25125b9e4c4f61c3758eca57af37c", "fields": {"nom_de_la_commune": "ST PONS DE THOMIERES", "libell_d_acheminement": "ST PONS DE THOMIERES", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34284"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e6bbf36eb74d81a2c9f00677fd4e651b04792d8", "fields": {"nom_de_la_commune": "ST THIBERY", "libell_d_acheminement": "ST THIBERY", "code_postal": "34630", "coordonnees_gps": [43.3921796928, 3.40013645571], "code_commune_insee": "34289"}, "geometry": {"type": "Point", "coordinates": [3.40013645571, 43.3921796928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6bc855465ed6e3c2305aabf875f141a7f0a5f2f", "fields": {"nom_de_la_commune": "ST VINCENT DE BARBEYRARGUES", "libell_d_acheminement": "ST VINCENT DE BARBEYRARGUES", "code_postal": "34730", "coordonnees_gps": [43.7084709884, 3.86709593283], "code_commune_insee": "34290"}, "geometry": {"type": "Point", "coordinates": [3.86709593283, 43.7084709884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f958f76378e3ad4328562c3724fa773eef01192", "fields": {"nom_de_la_commune": "ST VINCENT D OLARGUES", "libell_d_acheminement": "ST VINCENT D OLARGUES", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34291"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6da7fe870a487742164c96e40e6f9c39f116ddf", "fields": {"nom_de_la_commune": "SAUSSAN", "libell_d_acheminement": "SAUSSAN", "code_postal": "34570", "coordonnees_gps": [43.6245225678, 3.72064518654], "code_commune_insee": "34295"}, "geometry": {"type": "Point", "coordinates": [3.72064518654, 43.6245225678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb2cadcad39d5f16bca36efbf625a588270f485f", "fields": {"nom_de_la_commune": "SAUSSINES", "libell_d_acheminement": "SAUSSINES", "code_postal": "34160", "coordonnees_gps": [43.740816453, 3.99847241557], "code_commune_insee": "34296"}, "geometry": {"type": "Point", "coordinates": [3.99847241557, 43.740816453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06043d11ae3403134e1db4e525f9a351f3694a4", "fields": {"nom_de_la_commune": "SIRAN", "libell_d_acheminement": "SIRAN", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34302"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c500cbd00c9cee34549d4cbc3d9adb19edbf85e0", "fields": {"nom_de_la_commune": "LE SOULIE", "libell_d_acheminement": "LE SOULIE", "code_postal": "34330", "coordonnees_gps": [43.5945013819, 2.75693691265], "code_commune_insee": "34305"}, "geometry": {"type": "Point", "coordinates": [2.75693691265, 43.5945013819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "408748cf45e70455b0aefd7e294ce80fb5fc655f", "fields": {"nom_de_la_commune": "TEYRAN", "libell_d_acheminement": "TEYRAN", "code_postal": "34820", "coordonnees_gps": [43.7090659495, 3.91319760845], "code_commune_insee": "34309"}, "geometry": {"type": "Point", "coordinates": [3.91319760845, 43.7090659495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb35d8bc13732b4c1632d0550e699ecc9f4976cf", "fields": {"nom_de_la_commune": "THEZAN LES BEZIERS", "libell_d_acheminement": "THEZAN LES BEZIERS", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34310"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8007416f2d2fe607bfdde382b81fcdeebae7dd", "fields": {"nom_de_la_commune": "VAILHAN", "libell_d_acheminement": "VAILHAN", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34319"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6afb7e9c7a96eec08405a8dd6e56453397d308e", "fields": {"nom_de_la_commune": "VAILHAUQUES", "libell_d_acheminement": "VAILHAUQUES", "code_postal": "34570", "coordonnees_gps": [43.6245225678, 3.72064518654], "code_commune_insee": "34320"}, "geometry": {"type": "Point", "coordinates": [3.72064518654, 43.6245225678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e09fc76b9cb57da0f493025ed07355580991025e", "fields": {"nom_de_la_commune": "VELIEUX", "libell_d_acheminement": "VELIEUX", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34326"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ad45ad6ff6f55efd7f8b456f8e10864fccc51a", "fields": {"nom_de_la_commune": "VENDEMIAN", "libell_d_acheminement": "VENDEMIAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34328"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b2d74c633255a4897fa258c02da4202fab60bf9", "fields": {"nom_de_la_commune": "VILLENEUVE LES BEZIERS", "libell_d_acheminement": "VILLENEUVE LES BEZIERS", "code_postal": "34420", "coordonnees_gps": [43.3127282598, 3.32015070092], "code_commune_insee": "34336"}, "geometry": {"type": "Point", "coordinates": [3.32015070092, 43.3127282598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d208206e0a8e52feabfb0fd24d07baccef38d87", "fields": {"nom_de_la_commune": "VILLENEUVETTE", "libell_d_acheminement": "VILLENEUVETTE", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34338"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc12c2f132f2abc12375f6742dc4176f6ae2b3d", "fields": {"nom_de_la_commune": "VILLETELLE", "libell_d_acheminement": "VILLETELLE", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34340"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf3267aa76e5410d93a94b3656efa2eadbfdc81f", "fields": {"nom_de_la_commune": "ARGENTRE DU PLESSIS", "libell_d_acheminement": "ARGENTRE DU PLESSIS", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35006"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84df8923a478c295400194d67cbf284b9eec8ae9", "fields": {"nom_de_la_commune": "BAGUER MORVAN", "libell_d_acheminement": "BAGUER MORVAN", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35009"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a3ab56cada014662deb71dd8a33792b13b8d27", "fields": {"nom_de_la_commune": "BAIS", "libell_d_acheminement": "BAIS", "code_postal": "35680", "coordonnees_gps": [48.0164142152, -1.29664262346], "code_commune_insee": "35014"}, "geometry": {"type": "Point", "coordinates": [-1.29664262346, 48.0164142152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d362f637c26accf42d7846485136c3557a5c6821", "fields": {"nom_de_la_commune": "BALAZE", "libell_d_acheminement": "BALAZE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35015"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "067ac9be12d9a72e2fb09825e3e9b393c7fc4501", "fields": {"nom_de_la_commune": "BECHEREL", "libell_d_acheminement": "BECHEREL", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35022"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d671744eda515f4560974e7de1189a33a0629915", "fields": {"nom_de_la_commune": "BOURGBARRE", "libell_d_acheminement": "BOURGBARRE", "code_postal": "35230", "coordonnees_gps": [48.0164430154, -1.6442206032], "code_commune_insee": "35032"}, "geometry": {"type": "Point", "coordinates": [-1.6442206032, 48.0164430154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4799bb3274d449721cd399b2882cae6ac5f5e289", "fields": {"nom_de_la_commune": "BRECE", "libell_d_acheminement": "BRECE", "code_postal": "35530", "coordonnees_gps": [48.1023169795, -1.48929089789], "code_commune_insee": "35039"}, "geometry": {"type": "Point", "coordinates": [-1.48929089789, 48.1023169795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c468b70f51a6c359ba9cbfa38e0f9e51ee8e2e6", "fields": {"nom_de_la_commune": "BRIELLES", "libell_d_acheminement": "BRIELLES", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35042"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5402b05abd0a957f68e661613ad462e3b5b00e24", "fields": {"nom_de_la_commune": "CARDROC", "libell_d_acheminement": "CARDROC", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35050"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0acd0c651461699180494b5f1aed83fb8de223b7", "fields": {"nom_de_la_commune": "LA CHAPELLE BOUEXIC", "libell_d_acheminement": "LA CHAPELLE BOUEXIC", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35057"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e716a0eb2639404fc99a92df9a64ad4040eade0", "fields": {"nom_de_la_commune": "LA CHAPELLE DES FOUGERETZ", "libell_d_acheminement": "LA CHAPELLE DES FOUGERETZ", "code_postal": "35520", "coordonnees_gps": [48.2154723883, -1.71567755367], "code_commune_insee": "35059"}, "geometry": {"type": "Point", "coordinates": [-1.71567755367, 48.2154723883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31f87f2bcc2e42fdd8816602532ff87c1ffb2556", "fields": {"nom_de_la_commune": "LA CHAPELLE DE BRAIN", "libell_d_acheminement": "LA CHAPELLE DE BRAIN", "code_postal": "35660", "coordonnees_gps": [47.7238939745, -1.91661002252], "code_commune_insee": "35064"}, "geometry": {"type": "Point", "coordinates": [-1.91661002252, 47.7238939745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5276ef10b49e29c8308b6a853b6005f36cf198b8", "fields": {"code_postal": "35660", "code_commune_insee": "35064", "libell_d_acheminement": "LA CHAPELLE DE BRAIN", "ligne_5": "BRAIN SUR VILAINE", "nom_de_la_commune": "LA CHAPELLE DE BRAIN", "coordonnees_gps": [47.7238939745, -1.91661002252]}, "geometry": {"type": "Point", "coordinates": [-1.91661002252, 47.7238939745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e215f424518657a6caaa43f477dd6cf224bacbad", "fields": {"nom_de_la_commune": "CHARTRES DE BRETAGNE", "libell_d_acheminement": "CHARTRES DE BRETAGNE", "code_postal": "35131", "coordonnees_gps": [48.0288284104, -1.70152027546], "code_commune_insee": "35066"}, "geometry": {"type": "Point", "coordinates": [-1.70152027546, 48.0288284104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24d78be1d77123a3a5d21f24089bfbec09677852", "fields": {"nom_de_la_commune": "CHATEAUNEUF D ILLE ET VILAINE", "libell_d_acheminement": "CHATEAUNEUF D ILLE ET VILAINE", "code_postal": "35430", "coordonnees_gps": [48.5817595804, -1.93661188618], "code_commune_insee": "35070"}, "geometry": {"type": "Point", "coordinates": [-1.93661188618, 48.5817595804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "565ee177d6aec72713c97216fa946d240fe52264", "fields": {"nom_de_la_commune": "CHATILLON EN VENDELAIS", "libell_d_acheminement": "CHATILLON EN VENDELAIS", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35072"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a4a6f64e7cc5d734d3aec4e72501f63d4f93913", "fields": {"nom_de_la_commune": "CHATEAUNEUF LES MARTIGUES", "libell_d_acheminement": "CHATEAUNEUF LES MARTIGUES", "code_postal": "13220", "coordonnees_gps": [43.3863844311, 5.14761190486], "code_commune_insee": "13026"}, "geometry": {"type": "Point", "coordinates": [5.14761190486, 43.3863844311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e65a28a66e11a7e966e41f8a579a3cea536a5ebf", "fields": {"nom_de_la_commune": "LA CIOTAT", "libell_d_acheminement": "LA CIOTAT", "code_postal": "13600", "coordonnees_gps": [43.2057739447, 5.6225082578], "code_commune_insee": "13028"}, "geometry": {"type": "Point", "coordinates": [5.6225082578, 43.2057739447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f84639cdee5be70d94dde27fae7a8fbfcb8214", "fields": {"nom_de_la_commune": "CORNILLON CONFOUX", "libell_d_acheminement": "CORNILLON CONFOUX", "code_postal": "13250", "coordonnees_gps": [43.5560610417, 5.07443840982], "code_commune_insee": "13029"}, "geometry": {"type": "Point", "coordinates": [5.07443840982, 43.5560610417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33a83040de4ad021d360ae74b12cbe7bfdefbd1c", "fields": {"nom_de_la_commune": "CUGES LES PINS", "libell_d_acheminement": "CUGES LES PINS", "code_postal": "13780", "coordonnees_gps": [43.2875382054, 5.72232171856], "code_commune_insee": "13030"}, "geometry": {"type": "Point", "coordinates": [5.72232171856, 43.2875382054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78bbce54185395551aab76e9320d2451fe629e73", "fields": {"nom_de_la_commune": "EGUILLES", "libell_d_acheminement": "EGUILLES", "code_postal": "13510", "coordonnees_gps": [43.5708421062, 5.32952405027], "code_commune_insee": "13032"}, "geometry": {"type": "Point", "coordinates": [5.32952405027, 43.5708421062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d4e0b82f17fe9efcd9421bf76c3e41ae770015c", "fields": {"code_postal": "13820", "code_commune_insee": "13033", "libell_d_acheminement": "ENSUES LA REDONNE", "ligne_5": "LA REDONNE", "nom_de_la_commune": "ENSUES LA REDONNE", "coordonnees_gps": [43.3537890025, 5.19969508788]}, "geometry": {"type": "Point", "coordinates": [5.19969508788, 43.3537890025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d011ae9e0da731df721f182dcf4c8138e79c2e", "fields": {"nom_de_la_commune": "EYGALIERES", "libell_d_acheminement": "EYGALIERES", "code_postal": "13810", "coordonnees_gps": [43.7619946211, 4.95220471189], "code_commune_insee": "13034"}, "geometry": {"type": "Point", "coordinates": [4.95220471189, 43.7619946211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c26e3fa6c2d2cf3b9ad776eaa00efa46d1d504d5", "fields": {"nom_de_la_commune": "LA FARE LES OLIVIERS", "libell_d_acheminement": "LA FARE LES OLIVIERS", "code_postal": "13580", "coordonnees_gps": [43.5547068884, 5.20233943209], "code_commune_insee": "13037"}, "geometry": {"type": "Point", "coordinates": [5.20233943209, 43.5547068884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "487afb495948f6dd3d3ba58cce4ea88429422d58", "fields": {"nom_de_la_commune": "FONTVIEILLE", "libell_d_acheminement": "FONTVIEILLE", "code_postal": "13990", "coordonnees_gps": [43.7232796075, 4.72247335133], "code_commune_insee": "13038"}, "geometry": {"type": "Point", "coordinates": [4.72247335133, 43.7232796075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47d60f78adadb836e160c8ecdecf47df85525513", "fields": {"code_postal": "13710", "code_commune_insee": "13040", "libell_d_acheminement": "FUVEAU", "ligne_5": "LA BEGUDE", "nom_de_la_commune": "FUVEAU", "coordonnees_gps": [43.4598825054, 5.55318993446]}, "geometry": {"type": "Point", "coordinates": [5.55318993446, 43.4598825054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6df282a62242b6549a81fa484da88083175426", "fields": {"code_postal": "13180", "code_commune_insee": "13043", "libell_d_acheminement": "GIGNAC LA NERTHE", "ligne_5": "LAURE", "nom_de_la_commune": "GIGNAC LA NERTHE", "coordonnees_gps": [43.390482869, 5.22788588973]}, "geometry": {"type": "Point", "coordinates": [5.22788588973, 43.390482869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd20d2b792ec4c72fcbf338c5c8f6f8499d85f7", "fields": {"code_postal": "13117", "code_commune_insee": "13056", "libell_d_acheminement": "MARTIGUES", "ligne_5": "LAVERA", "nom_de_la_commune": "MARTIGUES", "coordonnees_gps": [43.3799117548, 5.04948307536]}, "geometry": {"type": "Point", "coordinates": [5.04948307536, 43.3799117548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "836408f09cde637444a2e15d60ee57f3b237c129", "fields": {"nom_de_la_commune": "MIRAMAS", "libell_d_acheminement": "MIRAMAS", "code_postal": "13140", "coordonnees_gps": [43.5842598006, 5.01416013898], "code_commune_insee": "13063"}, "geometry": {"type": "Point", "coordinates": [5.01416013898, 43.5842598006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e55c368cf03001cc7685b17e19a8370f1ddbdf", "fields": {"code_postal": "13550", "code_commune_insee": "13066", "libell_d_acheminement": "NOVES", "ligne_5": "PALUD DE NOVES", "nom_de_la_commune": "NOVES", "coordonnees_gps": [43.8586962525, 4.89971574687]}, "geometry": {"type": "Point", "coordinates": [4.89971574687, 43.8586962525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "572e16e6d2121482161975d8fe7151049efc30e9", "fields": {"nom_de_la_commune": "PELISSANNE", "libell_d_acheminement": "PELISSANNE", "code_postal": "13330", "coordonnees_gps": [43.6242242571, 5.18902505122], "code_commune_insee": "13069"}, "geometry": {"type": "Point", "coordinates": [5.18902505122, 43.6242242571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d999775839c1e67212bb175d78bac13ce0069eb", "fields": {"nom_de_la_commune": "LA PENNE SUR HUVEAUNE", "libell_d_acheminement": "LA PENNE SUR HUVEAUNE", "code_postal": "13821", "coordonnees_gps": [43.2768119604, 5.51843444856], "code_commune_insee": "13070"}, "geometry": {"type": "Point", "coordinates": [5.51843444856, 43.2768119604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568feb033b9b265b5e5086ee6bb1fc6785276942", "fields": {"code_postal": "13790", "code_commune_insee": "13072", "libell_d_acheminement": "PEYNIER", "ligne_5": "LES MICHELS", "nom_de_la_commune": "PEYNIER", "coordonnees_gps": [43.466397869, 5.61228660864]}, "geometry": {"type": "Point", "coordinates": [5.61228660864, 43.466397869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534f34dc890e4b02cc4f23004a0d4b26d7682aa5", "fields": {"nom_de_la_commune": "ROGNAC", "libell_d_acheminement": "ROGNAC", "code_postal": "13340", "coordonnees_gps": [43.4968931335, 5.23095747699], "code_commune_insee": "13081"}, "geometry": {"type": "Point", "coordinates": [5.23095747699, 43.4968931335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f662935f6b166ccbf01a71a5b0fe78220a20c635", "fields": {"code_postal": "13830", "code_commune_insee": "13085", "libell_d_acheminement": "ROQUEFORT LA BEDOULE", "ligne_5": "ROQUEFORT", "nom_de_la_commune": "ROQUEFORT LA BEDOULE", "coordonnees_gps": [43.2511968677, 5.62904629531]}, "geometry": {"type": "Point", "coordinates": [5.62904629531, 43.2511968677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f29e494f27fe5fab0581d19a6885509174ab4ec", "fields": {"nom_de_la_commune": "ROQUEVAIRE", "libell_d_acheminement": "ROQUEVAIRE", "code_postal": "13360", "coordonnees_gps": [43.3435929565, 5.59815037095], "code_commune_insee": "13086"}, "geometry": {"type": "Point", "coordinates": [5.59815037095, 43.3435929565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c06b8194919616bf227fe814aa4f2cb772249332", "fields": {"nom_de_la_commune": "LE ROVE", "libell_d_acheminement": "LE ROVE", "code_postal": "13740", "coordonnees_gps": [43.3653006845, 5.25320648556], "code_commune_insee": "13088"}, "geometry": {"type": "Point", "coordinates": [5.25320648556, 43.3653006845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19a38278c4fa4e78472b10480319bb85dcacc602", "fields": {"nom_de_la_commune": "SAINTES MARIES DE LA MER", "libell_d_acheminement": "SAINTES MARIES DE LA MER", "code_postal": "13460", "coordonnees_gps": [43.5039741794, 4.46432655177], "code_commune_insee": "13096"}, "geometry": {"type": "Point", "coordinates": [4.46432655177, 43.5039741794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "771b759f7b51dc241437ccfebfe01b4873deab46", "fields": {"nom_de_la_commune": "ST VICTORET", "libell_d_acheminement": "ST VICTORET", "code_postal": "13730", "coordonnees_gps": [43.4141688547, 5.25375444435], "code_commune_insee": "13102"}, "geometry": {"type": "Point", "coordinates": [5.25375444435, 43.4141688547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49b727901d86600ccc83d7d83ee2d455551f87a", "fields": {"nom_de_la_commune": "LE THOLONET", "libell_d_acheminement": "LE THOLONET", "code_postal": "13100", "coordonnees_gps": [43.5353485115, 5.4345381961], "code_commune_insee": "13109"}, "geometry": {"type": "Point", "coordinates": [5.4345381961, 43.5353485115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71556522684593526347ff826743f97c755cea55", "fields": {"nom_de_la_commune": "COUDOUX", "libell_d_acheminement": "COUDOUX", "code_postal": "13111", "coordonnees_gps": [43.5610728388, 5.25444585212], "code_commune_insee": "13118"}, "geometry": {"type": "Point", "coordinates": [5.25444585212, 43.5610728388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd46fc37f6131f9fb526fac49455f731a20876cb", "fields": {"code_postal": "13008", "code_commune_insee": "13208", "libell_d_acheminement": "MARSEILLE", "ligne_5": "CALLELONGUE", "nom_de_la_commune": "MARSEILLE 08", "coordonnees_gps": [43.2388428582, 5.37571442554]}, "geometry": {"type": "Point", "coordinates": [5.37571442554, 43.2388428582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4798b4c8262cc1e27c017cb568a9c69671a0aff7", "fields": {"code_postal": "13013", "code_commune_insee": "13213", "libell_d_acheminement": "MARSEILLE", "ligne_5": "CROIX ROUGE", "nom_de_la_commune": "MARSEILLE 13", "coordonnees_gps": [43.3495227907, 5.43359654239]}, "geometry": {"type": "Point", "coordinates": [5.43359654239, 43.3495227907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274f361c9b4ba09914fc7a4177d612cd30b161b0", "fields": {"nom_de_la_commune": "MARSEILLE 15", "libell_d_acheminement": "MARSEILLE", "code_postal": "13015", "coordonnees_gps": [43.3593730054, 5.36332724232], "code_commune_insee": "13215"}, "geometry": {"type": "Point", "coordinates": [5.36332724232, 43.3593730054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff0c3656c43f88616b0ad318ca0e745ece9ab61", "fields": {"nom_de_la_commune": "ACQUEVILLE", "libell_d_acheminement": "ACQUEVILLE", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14002"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb7213cda31c84df7a636f417b007cac5aa2bafb", "fields": {"nom_de_la_commune": "AMAYE SUR SEULLES", "libell_d_acheminement": "AMAYE SUR SEULLES", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14007"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ee635e987f406e7b682e4c4903a1725d206d37", "fields": {"nom_de_la_commune": "AMFREVILLE", "libell_d_acheminement": "AMFREVILLE", "code_postal": "14860", "coordonnees_gps": [49.2320742988, -0.215810077728], "code_commune_insee": "14009"}, "geometry": {"type": "Point", "coordinates": [-0.215810077728, 49.2320742988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1459e15ed836dfb73dcf9de09dccebb82206232", "fields": {"nom_de_la_commune": "ANCTOVILLE", "libell_d_acheminement": "ANCTOVILLE", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14011"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "016a33036b603b342c803d74d4bfd9a6ec8a9608", "fields": {"code_postal": "14240", "code_commune_insee": "14011", "libell_d_acheminement": "ANCTOVILLE", "ligne_5": "ORBOIS", "nom_de_la_commune": "ANCTOVILLE", "coordonnees_gps": [49.1055577852, -0.781481644045]}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39d53486a7feb0653e4b838bd45fc3f85e533e82", "fields": {"code_postal": "14240", "code_commune_insee": "14011", "libell_d_acheminement": "ANCTOVILLE", "ligne_5": "SERMENTOT", "nom_de_la_commune": "ANCTOVILLE", "coordonnees_gps": [49.1055577852, -0.781481644045]}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6398fea07947758f925278a862d99716c1f59b22", "fields": {"nom_de_la_commune": "COLOMBY ANGUERNY", "libell_d_acheminement": "COLOMBY ANGUERNY", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14014"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38c5c2dd19d1f1ee6d7e64e2a320ccd8c61ddb41", "fields": {"nom_de_la_commune": "ASNIERES EN BESSIN", "libell_d_acheminement": "ASNIERES EN BESSIN", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14023"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f8d8d327258137a228c942417cf12b45f06dedb", "fields": {"nom_de_la_commune": "LES AUTHIEUX SUR CALONNE", "libell_d_acheminement": "LES AUTHIEUX SUR CALONNE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14032"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3464ffabb24e46b59bfd169cd02323514a383e09", "fields": {"nom_de_la_commune": "BALLEROY SUR DROME", "libell_d_acheminement": "BALLEROY SUR DROME", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14035"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "039f912b9c9f1f74e2b59a4c6b9fa9b75402206f", "fields": {"nom_de_la_commune": "BAROU EN AUGE", "libell_d_acheminement": "BAROU EN AUGE", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14043"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f84a5b6bf4a008743cf768ffa72b561531e210a", "fields": {"code_postal": "14860", "code_commune_insee": "14046", "libell_d_acheminement": "BAVENT", "ligne_5": "ROBEHOMME", "nom_de_la_commune": "BAVENT", "coordonnees_gps": [49.2320742988, -0.215810077728]}, "geometry": {"type": "Point", "coordinates": [-0.215810077728, 49.2320742988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4841b715ed6f360994acdd1247fdc595709b22bb", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "BEAULIEU", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4e7df6f2c7ebc9d420e5f21c4e51229ca7d63f", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "CARVILLE", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73e6021ae7a9c5c79540c25ed054291fa5d1035e", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "LA FERRIERE HARANG", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8bcdd68cd2bc0edceeaaec23a6d35cd188a8bca", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "LA GRAVERIE", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3278575c4dcbe43e3c86fb996d2feca3a3d8222b", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "MONTCHAUVET", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799f0b5ed7bce6b4545fffe1318d7ae2a4413869", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "ST DENIS MAISONCELLES", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3202cf9acc58126cfe4bff049bc37d6493aca86f", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "ST MARTIN DES BESACES", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a649bacbd8f30157fd6101bce0c5bf625bc6d92", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "ST PIERRE TARENTAINE", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d589cf77776a6800273f675518ebe5b5b8959eb", "fields": {"nom_de_la_commune": "BERNESQ", "libell_d_acheminement": "BERNESQ", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14063"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af749cdc2316f2ffddfeeb270b7c357e184128f1", "fields": {"code_postal": "14112", "code_commune_insee": "14068", "libell_d_acheminement": "BIEVILLE BEUVILLE", "ligne_5": "BIEVILLE SUR ORNE", "nom_de_la_commune": "BIEVILLE BEUVILLE", "coordonnees_gps": [49.2432109147, -0.336840438637]}, "geometry": {"type": "Point", "coordinates": [-0.336840438637, 49.2432109147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de32db087aa0c782cff087920acc43e07600c6dd", "fields": {"nom_de_la_commune": "BEUVRON EN AUGE", "libell_d_acheminement": "BEUVRON EN AUGE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14070"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12db888f57e060f0ccef3a009e69c50ca09c991a", "fields": {"nom_de_la_commune": "BLAY", "libell_d_acheminement": "BLAY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14078"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89efee42fba3b1d318f4cd947ffa1e78097b630b", "fields": {"nom_de_la_commune": "LE BO", "libell_d_acheminement": "LE BO", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14080"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4cb9aa583500bf485af2574fc9e7fbfd43a52bd", "fields": {"nom_de_la_commune": "BONNEVILLE LA LOUVET", "libell_d_acheminement": "BONNEVILLE LA LOUVET", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14085"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4ea0d9bb3ff995d8deafa427f51534f49f2ad9", "fields": {"nom_de_la_commune": "BOUGY", "libell_d_acheminement": "BOUGY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14089"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fcf44d0f2bc332c5ae0220dee644b84915b4533", "fields": {"nom_de_la_commune": "BREMOY", "libell_d_acheminement": "BREMOY", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14096"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5420250efc10bd0b8639ffd9e289f20b68efd5bb", "fields": {"nom_de_la_commune": "BRETTEVILLE LE RABET", "libell_d_acheminement": "BRETTEVILLE LE RABET", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14097"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eac4e407fd37a4c3db0dfe204b9ee49294f029f", "fields": {"nom_de_la_commune": "LE BREUIL EN AUGE", "libell_d_acheminement": "LE BREUIL EN AUGE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14102"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148b9b63a2064f28d32457954fef3759f6a8e087", "fields": {"nom_de_la_commune": "LE BREUIL EN BESSIN", "libell_d_acheminement": "LE BREUIL EN BESSIN", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14103"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a66ac5bf0d561e8e278af597930d9c03047f2f", "fields": {"nom_de_la_commune": "BREVILLE LES MONTS", "libell_d_acheminement": "BREVILLE LES MONTS", "code_postal": "14860", "coordonnees_gps": [49.2320742988, -0.215810077728], "code_commune_insee": "14106"}, "geometry": {"type": "Point", "coordinates": [-0.215810077728, 49.2320742988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534f1a495f2b2db049acebd28fd41fae708489af", "fields": {"nom_de_la_commune": "BRICQUEVILLE", "libell_d_acheminement": "BRICQUEVILLE", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14107"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f90e8bffca786dfff277954b032282285e8efe60", "fields": {"nom_de_la_commune": "CAEN", "libell_d_acheminement": "CAEN", "code_postal": "14000", "coordonnees_gps": [49.1850251668, -0.370004009634], "code_commune_insee": "14118"}, "geometry": {"type": "Point", "coordinates": [-0.370004009634, 49.1850251668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e0ba5513c205669a83ea94010eeb6fa92aa8f0", "fields": {"nom_de_la_commune": "CAGNY", "libell_d_acheminement": "CAGNY", "code_postal": "14630", "coordonnees_gps": [49.1466089326, -0.248954415466], "code_commune_insee": "14119"}, "geometry": {"type": "Point", "coordinates": [-0.248954415466, 49.1466089326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a8ab766d18b7700039f455d173a9a88eb1b0bc9", "fields": {"nom_de_la_commune": "CAHAGNES", "libell_d_acheminement": "CAHAGNES", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14120"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2625c7d61669480ebfb31befa4efc46213dbec7c", "fields": {"nom_de_la_commune": "LA CAINE", "libell_d_acheminement": "LA CAINE", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14122"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e6ad3f79ea888843e93085024f91fa80eb8eebc", "fields": {"nom_de_la_commune": "CAIRON", "libell_d_acheminement": "CAIRON", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14123"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2062e316ffabf1a46a46190c3c1e5012b4816c", "fields": {"code_postal": "14340", "code_commune_insee": "14126", "libell_d_acheminement": "CAMBREMER", "ligne_5": "ST PAIR DU MONT", "nom_de_la_commune": "CAMBREMER", "coordonnees_gps": [49.1715682628, 0.0767124030123]}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c37ac17ef175177b2be3b870ab34ccb0a10de113", "fields": {"nom_de_la_commune": "CAMPAGNOLLES", "libell_d_acheminement": "CAMPAGNOLLES", "code_postal": "14500", "coordonnees_gps": [48.8626699859, -0.904614638013], "code_commune_insee": "14127"}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ebf362bdb7d1570645ffa701e50a7ab8aca2ff0", "fields": {"nom_de_la_commune": "CANAPVILLE", "libell_d_acheminement": "CANAPVILLE", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14131"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76467a5f0bf51dfb99b89a78a556a770202e86cd", "fields": {"nom_de_la_commune": "CASTILLON", "libell_d_acheminement": "CASTILLON", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14140"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "290b7797c41f4f1a63cc4e706a4c04a789ff89eb", "fields": {"nom_de_la_commune": "CESNY AUX VIGNES", "libell_d_acheminement": "CESNY AUX VIGNES", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14149"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3ce1c0f8fa9c16e5121832344deb5af5735a3a7", "fields": {"nom_de_la_commune": "CHOUAIN", "libell_d_acheminement": "CHOUAIN", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14159"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fe0ea6c9e176e516b3b6af40cfc4361cfceb81c", "fields": {"nom_de_la_commune": "CLECY", "libell_d_acheminement": "CLECY", "code_postal": "14570", "coordonnees_gps": [48.9153171843, -0.506427417582], "code_commune_insee": "14162"}, "geometry": {"type": "Point", "coordinates": [-0.506427417582, 48.9153171843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c78baff98856430604854d92356c2940dfcb364", "fields": {"nom_de_la_commune": "COLOMBIERES", "libell_d_acheminement": "COLOMBIERES", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14168"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1fa61a6f750232631ad9098108c78ae2eccee7a", "fields": {"nom_de_la_commune": "COMBRAY", "libell_d_acheminement": "COMBRAY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14171"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "588e3a1c5830e5529658bfea91d77f09cbd6da3f", "fields": {"nom_de_la_commune": "CORDEBUGLE", "libell_d_acheminement": "CORDEBUGLE", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14179"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4237c415c407fc3da9d5aedcaca5bc3b8289090", "fields": {"nom_de_la_commune": "COULOMBS", "libell_d_acheminement": "COULOMBS", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14186"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "304c430d4aefcd46f57b6e90f9decc983b1e43e8", "fields": {"nom_de_la_commune": "COURTONNE LES DEUX EGLISES", "libell_d_acheminement": "COURTONNE LES DEUX EGLISES", "code_postal": "14290", "coordonnees_gps": [49.0265084607, 0.343255889354], "code_commune_insee": "14194"}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40e0bb12eec6aaa52554b8a3bdeb1a9c1866223c", "fields": {"code_postal": "14290", "code_commune_insee": "14194", "libell_d_acheminement": "COURTONNE LES DEUX EGLISES", "ligne_5": "ST PAUL DE COURTONNE", "nom_de_la_commune": "COURTONNE LES DEUX EGLISES", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c65e55127abfa7572e83471b5d9874339c3dea59", "fields": {"nom_de_la_commune": "CRESSEVEUILLE", "libell_d_acheminement": "CRESSEVEUILLE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14198"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d200a2938fc47f363c30fb6448ad8f42377ae762", "fields": {"nom_de_la_commune": "CRICQUEBOEUF", "libell_d_acheminement": "CRICQUEBOEUF", "code_postal": "14113", "coordonnees_gps": [49.392904808, 0.128649857058], "code_commune_insee": "14202"}, "geometry": {"type": "Point", "coordinates": [0.128649857058, 49.392904808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79c2af515e8719f8d50fc10e2d28a9588e05bd2b", "fields": {"nom_de_la_commune": "CRISTOT", "libell_d_acheminement": "CRISTOT", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14205"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "575af3a690b06e31d117ec9fc90790b2577221a4", "fields": {"nom_de_la_commune": "CROISSANVILLE", "libell_d_acheminement": "CROISSANVILLE", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14208"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff1cea9ad5e98925ed162484b512194242db7c9", "fields": {"nom_de_la_commune": "CULEY LE PATRY", "libell_d_acheminement": "CULEY LE PATRY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14211"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc4228d4aae311cf31fbc6f92b7bc0e77b942d1", "fields": {"nom_de_la_commune": "DONNAY", "libell_d_acheminement": "DONNAY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14226"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2fa66ed7c9a0d3dbd2abcb7843ab5d11c6b74a5", "fields": {"nom_de_la_commune": "DOUVILLE EN AUGE", "libell_d_acheminement": "DOUVILLE EN AUGE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14227"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb36a9342339b94ad1f6d9dc115d280e2e0568c", "fields": {"nom_de_la_commune": "DOUVRES LA DELIVRANDE", "libell_d_acheminement": "DOUVRES LA DELIVRANDE", "code_postal": "14440", "coordonnees_gps": [49.2888987238, -0.397807379835], "code_commune_insee": "14228"}, "geometry": {"type": "Point", "coordinates": [-0.397807379835, 49.2888987238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e432e04238095eeb038b6955b70849ff3182de", "fields": {"nom_de_la_commune": "ELLON", "libell_d_acheminement": "ELLON", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14236"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65997eea53f7ae9dcc09c54f7581cea8c8e9f5ed", "fields": {"nom_de_la_commune": "EMIEVILLE", "libell_d_acheminement": "EMIEVILLE", "code_postal": "14630", "coordonnees_gps": [49.1466089326, -0.248954415466], "code_commune_insee": "14237"}, "geometry": {"type": "Point", "coordinates": [-0.248954415466, 49.1466089326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c47dcdfbcdb8d76a14335f88d9145b69be5e93c", "fields": {"nom_de_la_commune": "ESCOVILLE", "libell_d_acheminement": "ESCOVILLE", "code_postal": "14850", "coordonnees_gps": [49.2097767662, -0.25242248179], "code_commune_insee": "14246"}, "geometry": {"type": "Point", "coordinates": [-0.25242248179, 49.2097767662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49d338b9034add196fd23cf8cb9f049bdb87f8f6", "fields": {"nom_de_la_commune": "ESPINS", "libell_d_acheminement": "ESPINS", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14248"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d830b4fbd2a7da4b90956df6b054543ea16efa93", "fields": {"nom_de_la_commune": "ETREHAM", "libell_d_acheminement": "ETREHAM", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14256"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49876f33629207affc647271528c75b3cc937ab5", "fields": {"nom_de_la_commune": "FLEURY SUR ORNE", "libell_d_acheminement": "FLEURY SUR ORNE", "code_postal": "14123", "coordonnees_gps": [49.1447730282, -0.352071699287], "code_commune_insee": "14271"}, "geometry": {"type": "Point", "coordinates": [-0.352071699287, 49.1447730282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b5fc5e797eb82275b15d4ddf912e232f027e6d", "fields": {"nom_de_la_commune": "LA FOLIE", "libell_d_acheminement": "LA FOLIE", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14272"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f947658a9bdc3d069d6b9401a8ac64921d75024", "fields": {"nom_de_la_commune": "FORMIGNY", "libell_d_acheminement": "FORMIGNY", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14281"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab0c462f561635a6a2091aba5b234453cd296d8", "fields": {"nom_de_la_commune": "LE FOURNET", "libell_d_acheminement": "LE FOURNET", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14285"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb00f0ff0522cdc867693b53ea8acdf1ac8684a3", "fields": {"nom_de_la_commune": "FUMICHON", "libell_d_acheminement": "FUMICHON", "code_postal": "14590", "coordonnees_gps": [49.1904396509, 0.349344847336], "code_commune_insee": "14293"}, "geometry": {"type": "Point", "coordinates": [0.349344847336, 49.1904396509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a12dafb0f1212a43e3288070667f857e6c932edd", "fields": {"nom_de_la_commune": "GONNEVILLE SUR HONFLEUR", "libell_d_acheminement": "GONNEVILLE SUR HONFLEUR", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14304"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6047b75baad1af61a0f2d444dccde1cd2a4a52d6", "fields": {"nom_de_la_commune": "GONNEVILLE EN AUGE", "libell_d_acheminement": "GONNEVILLE EN AUGE", "code_postal": "14810", "coordonnees_gps": [49.2686618031, -0.198460206193], "code_commune_insee": "14306"}, "geometry": {"type": "Point", "coordinates": [-0.198460206193, 49.2686618031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5d2f15733f082c636382cbc94d912766fe42f3", "fields": {"nom_de_la_commune": "HEROUVILLE ST CLAIR", "libell_d_acheminement": "HEROUVILLE ST CLAIR", "code_postal": "14200", "coordonnees_gps": [49.2074415651, -0.330690059361], "code_commune_insee": "14327"}, "geometry": {"type": "Point", "coordinates": [-0.330690059361, 49.2074415651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a8a6a3ba70785b4ac7e7a30e9e574a0d934c093", "fields": {"nom_de_la_commune": "HOSTE", "libell_d_acheminement": "HOSTE", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57337"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94dd2b297753e1d4f4ed68da7138e6604f4ba868", "fields": {"nom_de_la_commune": "INSMING", "libell_d_acheminement": "INSMING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57346"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37c628acba3f6a1c6f6dc6a18352462a7d43e7c9", "fields": {"nom_de_la_commune": "JUVELIZE", "libell_d_acheminement": "JUVELIZE", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57353"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c4e39312f051d4aa0a8a2c18d350a2d6214c550", "fields": {"nom_de_la_commune": "KERPRICH AUX BOIS", "libell_d_acheminement": "KERPRICH AUX BOIS", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57362"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6b8e401a35ce0018d2aa38b0adb8495c2c77c70", "fields": {"nom_de_la_commune": "KLANG", "libell_d_acheminement": "KLANG", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57367"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c862cc8d43df52d8789cb74917bdaafcd69d10e", "fields": {"nom_de_la_commune": "KOENIGSMACKER", "libell_d_acheminement": "KOENIGSMACKER", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57370"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "143232508553c4342ee76f0ca29c305923e8332e", "fields": {"nom_de_la_commune": "LAFRIMBOLLE", "libell_d_acheminement": "LAFRIMBOLLE", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57374"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e907c203da31722dd71086ae337a582ddc9cc566", "fields": {"nom_de_la_commune": "LAGARDE", "libell_d_acheminement": "LAGARDE", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57375"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03fd66cc5b690aad2d64e5dee0d72f396e4074ab", "fields": {"nom_de_la_commune": "LANGUIMBERG", "libell_d_acheminement": "LANGUIMBERG", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57383"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "807f180130382f26b49f6420e577ad2a21e3bd11", "fields": {"nom_de_la_commune": "LAUDREFANG", "libell_d_acheminement": "LAUDREFANG", "code_postal": "57385", "coordonnees_gps": [49.0669027987, 6.64766782853], "code_commune_insee": "57386"}, "geometry": {"type": "Point", "coordinates": [6.64766782853, 49.0669027987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "111cac2ee54c16e642d967fc0eb91c4f5b79cc05", "fields": {"nom_de_la_commune": "LAUNSTROFF", "libell_d_acheminement": "LAUNSTROFF", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57388"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf1b35ff808ddd2b210c2cb34297caeed92496cf", "fields": {"nom_de_la_commune": "LEYVILLER", "libell_d_acheminement": "LEYVILLER", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57398"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c16c8d99217a1f3ed0b8f77da7079c725d0395", "fields": {"nom_de_la_commune": "LIXING LES ROUHLING", "libell_d_acheminement": "LIXING LES ROUHLING", "code_postal": "57520", "coordonnees_gps": [49.1484421064, 7.01208667491], "code_commune_insee": "57408"}, "geometry": {"type": "Point", "coordinates": [7.01208667491, 49.1484421064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49772aba5ee057a1e0b94a23c22a983ec8bb326d", "fields": {"nom_de_la_commune": "LORRY MARDIGNY", "libell_d_acheminement": "LORRY MARDIGNY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57416"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab8b45610eb5f609031607e7a4fba548d38539e6", "fields": {"nom_de_la_commune": "LUTTANGE", "libell_d_acheminement": "LUTTANGE", "code_postal": "57935", "coordonnees_gps": [49.2732839167, 6.29763585202], "code_commune_insee": "57426"}, "geometry": {"type": "Point", "coordinates": [6.29763585202, 49.2732839167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fcf28d576275ed638e50b774b5af1c3a0339cb0", "fields": {"nom_de_la_commune": "LUTZELBOURG", "libell_d_acheminement": "LUTZELBOURG", "code_postal": "57820", "coordonnees_gps": [48.7214419242, 7.22862669066], "code_commune_insee": "57427"}, "geometry": {"type": "Point", "coordinates": [7.22862669066, 48.7214419242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f68249cf2c99d935218536f4d88f991cdb6dcd11", "fields": {"nom_de_la_commune": "MAIZIERES LES VIC", "libell_d_acheminement": "MAIZIERES LES VIC", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57434"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62ed3cf24c80855646945f73868279a373dbed3f", "fields": {"nom_de_la_commune": "MARANGE ZONDRANGE", "libell_d_acheminement": "MARANGE ZONDRANGE", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57444"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6e0ecdda363ad74002bb8d3d871b3954b76d8b1", "fields": {"nom_de_la_commune": "MARIEULLES", "libell_d_acheminement": "MARIEULLES", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57445"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd2aa9f161fd2a73447d40d17226421388322711", "fields": {"nom_de_la_commune": "MARLY", "libell_d_acheminement": "MARLY", "code_postal": "57155", "coordonnees_gps": [49.0661272407, 6.15312126944], "code_commune_insee": "57447"}, "geometry": {"type": "Point", "coordinates": [6.15312126944, 49.0661272407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03a4cf9f4fa63033f8381caffa04c4b04121f72c", "fields": {"nom_de_la_commune": "MECLEUVES", "libell_d_acheminement": "MECLEUVES", "code_postal": "57245", "coordonnees_gps": [49.059836675, 6.25443635669], "code_commune_insee": "57454"}, "geometry": {"type": "Point", "coordinates": [6.25443635669, 49.059836675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72b24c2913ce9663ea9f9309b06bf67ed1e4fb4b", "fields": {"nom_de_la_commune": "MEGANGE", "libell_d_acheminement": "MEGANGE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57455"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78377181053ff25a2b5ae29a480a48d5d2263051", "fields": {"nom_de_la_commune": "METAIRIES ST QUIRIN", "libell_d_acheminement": "METAIRIES ST QUIRIN", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57461"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb4972672ecfa80daa2c461233a5fe80c3ff0914", "fields": {"nom_de_la_commune": "MONTIGNY LES METZ", "libell_d_acheminement": "MONTIGNY LES METZ", "code_postal": "57950", "coordonnees_gps": [49.0957632646, 6.1541387234], "code_commune_insee": "57480"}, "geometry": {"type": "Point", "coordinates": [6.1541387234, 49.0957632646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660614e9423de6e0d6ebe19ccc8a537b049dab8c", "fields": {"nom_de_la_commune": "NEUNKIRCHEN LES BOUZONVILLE", "libell_d_acheminement": "NEUNKIRCHEN LES BOUZONVILLE", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57502"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b0f1f556e7d7369475b4454d4a61104de4750b7", "fields": {"nom_de_la_commune": "NIEDERSTINZEL", "libell_d_acheminement": "NIEDERSTINZEL", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57506"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4028991e1f5663c3fac143a60a55920d6db58b5", "fields": {"nom_de_la_commune": "NIEDERVISSE", "libell_d_acheminement": "NIEDERVISSE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57507"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bae07a238f5c7bc3879d00a145820bd3d9580fd", "fields": {"nom_de_la_commune": "NOUILLY", "libell_d_acheminement": "NOUILLY", "code_postal": "57645", "coordonnees_gps": [49.1294879959, 6.29496207471], "code_commune_insee": "57512"}, "geometry": {"type": "Point", "coordinates": [6.29496207471, 49.1294879959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9caa72797982045bc146af8c6c81058cbf91dfb8", "fields": {"nom_de_la_commune": "OBERVISSE", "libell_d_acheminement": "OBERVISSE", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57519"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc079f6e0dc8420e8fb6ab9fb2228ea6be0f46d4", "fields": {"nom_de_la_commune": "OBRECK", "libell_d_acheminement": "OBRECK", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57520"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7efb737d89a1fd20d349659a34a1cfda887d26e0", "fields": {"nom_de_la_commune": "ORIOCOURT", "libell_d_acheminement": "ORIOCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57525"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00cb84101c38f724f28c9c22cfed22f043517ce7", "fields": {"nom_de_la_commune": "ORNY", "libell_d_acheminement": "ORNY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57527"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "251625d60e9e9efbc611d0121e950116ecca4b0b", "fields": {"nom_de_la_commune": "ORON", "libell_d_acheminement": "ORON", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57528"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0314819136075d71c75110a969a64dfed503cd", "fields": {"nom_de_la_commune": "PANGE", "libell_d_acheminement": "PANGE", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57533"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e256a2d33f975937439eec7b91d88995b34e7e3", "fields": {"nom_de_la_commune": "PETIT TENQUIN", "libell_d_acheminement": "PETIT TENQUIN", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57536"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ec02ea2fdc885eaf245ec5f0984576965c71ac", "fields": {"nom_de_la_commune": "PETITE ROSSELLE", "libell_d_acheminement": "PETITE ROSSELLE", "code_postal": "57540", "coordonnees_gps": [49.2101318401, 6.85879152224], "code_commune_insee": "57537"}, "geometry": {"type": "Point", "coordinates": [6.85879152224, 49.2101318401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40df524b938262a2f6cdfc2871e048fe5b00f2cb", "fields": {"nom_de_la_commune": "PETTONCOURT", "libell_d_acheminement": "PETTONCOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57538"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de9ac72061f8ec3649862088194210efb7b40345", "fields": {"nom_de_la_commune": "PHILIPPSBOURG", "libell_d_acheminement": "PHILIPPSBOURG", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57541"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce76f0e97e06cea4f1b4413620fc01462f82705", "fields": {"code_postal": "57220", "code_commune_insee": "57542", "libell_d_acheminement": "PIBLANGE", "ligne_5": "ST BERNARD", "nom_de_la_commune": "PIBLANGE", "coordonnees_gps": [49.1841986175, 6.49591706201]}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cb66ca81d8ccd65ffe95dc3597171cfed502e98", "fields": {"nom_de_la_commune": "PLESNOIS", "libell_d_acheminement": "PLESNOIS", "code_postal": "57140", "coordonnees_gps": [49.1663107654, 6.13682025903], "code_commune_insee": "57546"}, "geometry": {"type": "Point", "coordinates": [6.13682025903, 49.1663107654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20adb4f4eb7db8c058d4b69ea5825c9b7b1889f1", "fields": {"nom_de_la_commune": "PUTTELANGE LES THIONVILLE", "libell_d_acheminement": "PUTTELANGE LES THIONVILLE", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57557"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45191ad2fa856120b78406b477e4d82b4b620850", "fields": {"nom_de_la_commune": "REMELFING", "libell_d_acheminement": "REMELFING", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57568"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e95e14231cbb530d5d7407808e59a16916c36e9f", "fields": {"nom_de_la_commune": "REMELING", "libell_d_acheminement": "REMELING", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57569"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d9b762ff3752da499a85a373b1ba7caf4c73db8", "fields": {"nom_de_la_commune": "REMERING", "libell_d_acheminement": "REMERING", "code_postal": "57550", "coordonnees_gps": [49.2476019767, 6.63186877327], "code_commune_insee": "57570"}, "geometry": {"type": "Point", "coordinates": [6.63186877327, 49.2476019767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "392c5bc51230c606c11301456ac43fab0d605380", "fields": {"nom_de_la_commune": "RICHEMONT", "libell_d_acheminement": "RICHEMONT", "code_postal": "57270", "coordonnees_gps": [49.2922818773, 6.15848861303], "code_commune_insee": "57582"}, "geometry": {"type": "Point", "coordinates": [6.15848861303, 49.2922818773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71850857818009a82492864499fe662bf2848cfb", "fields": {"nom_de_la_commune": "RIMLING", "libell_d_acheminement": "RIMLING", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57584"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4faaaf60bbfd92a1f3de8953f40ba0c3898a60d5", "fields": {"nom_de_la_commune": "RORBACH LES DIEUZE", "libell_d_acheminement": "RORBACH LES DIEUZE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57595"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e559a790e2e164e66dbfa730ba058b1299c45ee7", "fields": {"nom_de_la_commune": "ROZERIEULLES", "libell_d_acheminement": "ROZERIEULLES", "code_postal": "57160", "coordonnees_gps": [49.1183395813, 6.08364219773], "code_commune_insee": "57601"}, "geometry": {"type": "Point", "coordinates": [6.08364219773, 49.1183395813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed4adaa2d1bc2e7e835d5d2419a5d273f3ad6dd6", "fields": {"nom_de_la_commune": "ST HUBERT", "libell_d_acheminement": "ST HUBERT", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57612"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db6567f904b38faf50b80855b6aa6b10242ee3dc", "fields": {"nom_de_la_commune": "ST JEAN ROHRBACH", "libell_d_acheminement": "ST JEAN ROHRBACH", "code_postal": "57510", "coordonnees_gps": [49.0411738191, 6.9246664425], "code_commune_insee": "57615"}, "geometry": {"type": "Point", "coordinates": [6.9246664425, 49.0411738191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62471ccf6e082f9a77c50ca9860f8f06874228e5", "fields": {"nom_de_la_commune": "SARRALBE", "libell_d_acheminement": "SARRALBE", "code_postal": "57430", "coordonnees_gps": [48.9890917181, 6.98173780701], "code_commune_insee": "57628"}, "geometry": {"type": "Point", "coordinates": [6.98173780701, 48.9890917181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ae5bc62e3e02e8312695e20d19ccb7dac7c3274", "fields": {"nom_de_la_commune": "SARREGUEMINES", "libell_d_acheminement": "SARREGUEMINES", "code_postal": "57200", "coordonnees_gps": [49.1056910456, 7.11772399518], "code_commune_insee": "57631"}, "geometry": {"type": "Point", "coordinates": [7.11772399518, 49.1056910456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91932dcb890dfd248a5b3f292319c939be86e90e", "fields": {"nom_de_la_commune": "SCHALBACH", "libell_d_acheminement": "SCHALBACH", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57635"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71aa4c4d3283dcf8662d7de5909e50fcdf2f4d8", "fields": {"nom_de_la_commune": "SCY CHAZELLES", "libell_d_acheminement": "SCY CHAZELLES", "code_postal": "57160", "coordonnees_gps": [49.1183395813, 6.08364219773], "code_commune_insee": "57642"}, "geometry": {"type": "Point", "coordinates": [6.08364219773, 49.1183395813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b69071e526e1e6c0494c17f623e9fcdcfc9ecf4c", "fields": {"nom_de_la_commune": "SECOURT", "libell_d_acheminement": "SECOURT", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57643"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a75456d9b34cd4c82dccdf5ee4f0f4543e1e036", "fields": {"nom_de_la_commune": "SEMECOURT", "libell_d_acheminement": "SEMECOURT", "code_postal": "57280", "coordonnees_gps": [49.2043430358, 6.15329881164], "code_commune_insee": "57645"}, "geometry": {"type": "Point", "coordinates": [6.15329881164, 49.2043430358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aff23727722fa5056c3e5a57536a53d7c1e16b6", "fields": {"nom_de_la_commune": "SOTZELING", "libell_d_acheminement": "SOTZELING", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57657"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d067809b7098e2d16fedf27bb6a5b1899db560a2", "fields": {"code_postal": "57350", "code_commune_insee": "57659", "libell_d_acheminement": "SPICHEREN", "ligne_5": "LA BREME D OR", "nom_de_la_commune": "SPICHEREN", "coordonnees_gps": [49.2014476423, 6.94907800284]}, "geometry": {"type": "Point", "coordinates": [6.94907800284, 49.2014476423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033690e10139498607e5ab697741ccd374fdefa9", "fields": {"nom_de_la_commune": "STURZELBRONN", "libell_d_acheminement": "STURZELBRONN", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57661"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a516cc9b6e88b3f6492181190818d44724439520", "fields": {"nom_de_la_commune": "SUISSE", "libell_d_acheminement": "SUISSE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57662"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccc5b842aec15dbdd2bee9fab0b54fd39eaac2f9", "fields": {"nom_de_la_commune": "TETERCHEN", "libell_d_acheminement": "TETERCHEN", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57667"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0127985aa82ed5b3d0bf5417026ecad3e0e02439", "fields": {"nom_de_la_commune": "THEDING", "libell_d_acheminement": "THEDING", "code_postal": "57450", "coordonnees_gps": [49.098477693, 6.86570683111], "code_commune_insee": "57669"}, "geometry": {"type": "Point", "coordinates": [6.86570683111, 49.098477693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d7069cfc78578f1141aa32cfca7c0a12c30db3f", "fields": {"code_postal": "57100", "code_commune_insee": "57672", "libell_d_acheminement": "THIONVILLE", "ligne_5": "GARCHE", "nom_de_la_commune": "THIONVILLE", "coordonnees_gps": [49.376778126, 6.13767637123]}, "geometry": {"type": "Point", "coordinates": [6.13767637123, 49.376778126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eacbb2b711da24d6aa96e41bf7876651a6050ff7", "fields": {"code_postal": "57100", "code_commune_insee": "57672", "libell_d_acheminement": "THIONVILLE", "ligne_5": "KOEKING", "nom_de_la_commune": "THIONVILLE", "coordonnees_gps": [49.376778126, 6.13767637123]}, "geometry": {"type": "Point", "coordinates": [6.13767637123, 49.376778126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "068d2a8badf2bba2a0803b87b8a9f4af664fd317", "fields": {"code_postal": "57100", "code_commune_insee": "57672", "libell_d_acheminement": "THIONVILLE", "ligne_5": "OEUTRANGE", "nom_de_la_commune": "THIONVILLE", "coordonnees_gps": [49.376778126, 6.13767637123]}, "geometry": {"type": "Point", "coordinates": [6.13767637123, 49.376778126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "546ac405964b9cec05639e39eb5c4a3caea3e5f1", "fields": {"nom_de_la_commune": "TORCHEVILLE", "libell_d_acheminement": "TORCHEVILLE", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57675"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "783b718687ec3d5100fd160f24f7510c74870ff1", "fields": {"code_postal": "57710", "code_commune_insee": "57678", "libell_d_acheminement": "TRESSANGE", "ligne_5": "BURE", "nom_de_la_commune": "TRESSANGE", "coordonnees_gps": [49.4142056636, 5.96361653857]}, "geometry": {"type": "Point", "coordinates": [5.96361653857, 49.4142056636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827e9009c42c3c9666c4c0998ae79b6b09cab778", "fields": {"nom_de_la_commune": "TROMBORN", "libell_d_acheminement": "TROMBORN", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57681"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a6fdd20907da474ccaccbc88896569950641545", "fields": {"nom_de_la_commune": "TURQUESTEIN BLANCRUPT", "libell_d_acheminement": "TURQUESTEIN BLANCRUPT", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57682"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44ad39beeb0f9b3818e3af0d0b358dc158bf5c3", "fields": {"nom_de_la_commune": "UCKANGE", "libell_d_acheminement": "UCKANGE", "code_postal": "57270", "coordonnees_gps": [49.2922818773, 6.15848861303], "code_commune_insee": "57683"}, "geometry": {"type": "Point", "coordinates": [6.15848861303, 49.2922818773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91398df691928745cde263910865afb6955b25f", "fields": {"nom_de_la_commune": "VALMESTROFF", "libell_d_acheminement": "VALMESTROFF", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57689"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a406422402fefb47e96d561a234b00ecd1d371", "fields": {"nom_de_la_commune": "VANY", "libell_d_acheminement": "VANY", "code_postal": "57070", "coordonnees_gps": [49.1173648724, 6.2035419151], "code_commune_insee": "57694"}, "geometry": {"type": "Point", "coordinates": [6.2035419151, 49.1173648724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f5c4aecf7a35c92fcbf01a6a91724d8c09045c1", "fields": {"nom_de_la_commune": "VATIMONT", "libell_d_acheminement": "VATIMONT", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57698"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1823a15b0a407b66c0ba4d79e1498c1f167751a3", "fields": {"nom_de_la_commune": "VECKERSVILLER", "libell_d_acheminement": "VECKERSVILLER", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57703"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff79646473bc4479568a350090b1ffa6b816653", "fields": {"nom_de_la_commune": "VERNY", "libell_d_acheminement": "VERNY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57708"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a61231bc8b7bb71c000999f93d2c08cd2e6b822", "fields": {"nom_de_la_commune": "VILLERS SUR NIED", "libell_d_acheminement": "VILLERS SUR NIED", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57719"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de0c2c7e7aa353b8ac18207225622c94949afb8", "fields": {"nom_de_la_commune": "VIONVILLE", "libell_d_acheminement": "VIONVILLE", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57722"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c20e626095d70d6ba8d4969146cd7864ae764d5", "fields": {"nom_de_la_commune": "VITRY SUR ORNE", "libell_d_acheminement": "VITRY SUR ORNE", "code_postal": "57185", "coordonnees_gps": [49.2729654121, 6.09323392061], "code_commune_insee": "57724"}, "geometry": {"type": "Point", "coordinates": [6.09323392061, 49.2729654121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8cc8a9c67f594269adf2914eca6b6ca7539c4b8", "fields": {"nom_de_la_commune": "VOLSTROFF", "libell_d_acheminement": "VOLSTROFF", "code_postal": "57940", "coordonnees_gps": [49.3080727824, 6.26745665011], "code_commune_insee": "57733"}, "geometry": {"type": "Point", "coordinates": [6.26745665011, 49.3080727824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06c2a885fd8b6d13f9d8fd67e9bd8d6954dcda71", "fields": {"nom_de_la_commune": "VRY", "libell_d_acheminement": "VRY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57736"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ffa23e06c5915dcc0a6925cf05b56438ce42011", "fields": {"nom_de_la_commune": "XANREY", "libell_d_acheminement": "XANREY", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57754"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417a9171d6f3a5b8422bddb871e0cad484c1ecf0", "fields": {"nom_de_la_commune": "XOCOURT", "libell_d_acheminement": "XOCOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57755"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a94c65aa7319e932ecbf035c16ec1dc8b4da7eaa", "fields": {"nom_de_la_commune": "YUTZ", "libell_d_acheminement": "YUTZ", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57757"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa9c31512e4e934f0d8e9f396a11ee3063367deb", "fields": {"nom_de_la_commune": "ACHUN", "libell_d_acheminement": "ACHUN", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58001"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f78e4d122fcbbef1a657594389f49557ecde1a5b", "fields": {"nom_de_la_commune": "ANTHIEN", "libell_d_acheminement": "ANTHIEN", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58008"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a341865281d66a268767ca2cc78582520390a44", "fields": {"nom_de_la_commune": "ARLEUF", "libell_d_acheminement": "ARLEUF", "code_postal": "58430", "coordonnees_gps": [47.0330840616, 4.00599450154], "code_commune_insee": "58010"}, "geometry": {"type": "Point", "coordinates": [4.00599450154, 47.0330840616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c4177accae18909878b27e0452133948cfe615", "fields": {"nom_de_la_commune": "ARMES", "libell_d_acheminement": "ARMES", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58011"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbacbfb4edfdfa4a298e5f903c598dcde5e8a142", "fields": {"code_postal": "58420", "code_commune_insee": "58026", "libell_d_acheminement": "BEAULIEU", "ligne_5": "DOMPIERRE SUR HERY", "nom_de_la_commune": "BEAULIEU", "coordonnees_gps": [47.256904548, 3.52495199281]}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df4547a5381d5b7f0b157588e20768228f1b74d7", "fields": {"nom_de_la_commune": "BEAUMONT SARDOLLES", "libell_d_acheminement": "BEAUMONT SARDOLLES", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58028"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1acf76d538b1fd80a27c479ed27b9fca41db2a8", "fields": {"nom_de_la_commune": "BICHES", "libell_d_acheminement": "BICHES", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58030"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bd9d08d6b39a3565b9c8a9a847f411a40a9049b", "fields": {"nom_de_la_commune": "BONA", "libell_d_acheminement": "BONA", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58035"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f4d339aa1324bd68dd97d2551bc6d11969587f5", "fields": {"nom_de_la_commune": "BRINAY", "libell_d_acheminement": "BRINAY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58040"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007d8a54c139ead07319f5795aebf24ee1c6cda3", "fields": {"code_postal": "58000", "code_commune_insee": "58051", "libell_d_acheminement": "CHALLUY", "ligne_5": "PLAGNY", "nom_de_la_commune": "CHALLUY", "coordonnees_gps": [46.9644333624, 3.17459118159]}, "geometry": {"type": "Point", "coordinates": [3.17459118159, 46.9644333624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6291fb56878d22c40a1240b933a4438a2210cd2", "fields": {"nom_de_la_commune": "CHAMPALLEMENT", "libell_d_acheminement": "CHAMPALLEMENT", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58052"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "232ec03546afd71ce2db36e246c72cff3faeed3a", "fields": {"code_postal": "58240", "code_commune_insee": "58057", "libell_d_acheminement": "CHANTENAY ST IMBERT", "ligne_5": "ST IMBERT", "nom_de_la_commune": "CHANTENAY ST IMBERT", "coordonnees_gps": [46.7881740405, 3.18476198452]}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4aeca13d961b54652d69f89d11ab6c380778718", "fields": {"nom_de_la_commune": "CHASNAY", "libell_d_acheminement": "CHASNAY", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58061"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aa61b8dfd1e1c47fdd6e254ac536454becda6d1", "fields": {"nom_de_la_commune": "CHATEAU CHINON VILLE", "libell_d_acheminement": "CHATEAU CHINON", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58062"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1e86e14ae661251538fed8c2128f13b298063b9", "fields": {"nom_de_la_commune": "CHAZEUIL", "libell_d_acheminement": "CHAZEUIL", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58070"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8a063f7e0be2e80fe66fb7869e5fd564c58726", "fields": {"nom_de_la_commune": "CHEVENON", "libell_d_acheminement": "CHEVENON", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58072"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca534f4fd31c919b062a28911eda9fdeed66fad8", "fields": {"nom_de_la_commune": "CHIDDES", "libell_d_acheminement": "CHIDDES", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58074"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cbc6e99d6496af6c0670416b3d3700fbad1a2fe", "fields": {"nom_de_la_commune": "VILLARS SOUS DAMPJOUX", "libell_d_acheminement": "VILLARS SOUS DAMPJOUX", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25617"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d02af270f30e92b19ba06c34f38535131a11cd4e", "fields": {"nom_de_la_commune": "VILLARS SOUS ECOT", "libell_d_acheminement": "VILLARS SOUS ECOT", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25618"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360d8e111ba7a97ed4f5dc3c18f10dee44599dd7", "fields": {"nom_de_la_commune": "VILLE DU PONT", "libell_d_acheminement": "VILLE DU PONT", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25620"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40379373b52da16d43e8f2ccdf142ffeb935df44", "fields": {"nom_de_la_commune": "ALBON", "libell_d_acheminement": "ALBON", "code_postal": "26140", "coordonnees_gps": [45.2622032163, 4.86699876584], "code_commune_insee": "26002"}, "geometry": {"type": "Point", "coordinates": [4.86699876584, 45.2622032163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0e413922918f6126b1db505678410441f7c78b8", "fields": {"nom_de_la_commune": "ALIXAN", "libell_d_acheminement": "ALIXAN", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26004"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf9af3b59e6432ddfda2df618341540ec161895", "fields": {"nom_de_la_commune": "ANDANCETTE", "libell_d_acheminement": "ANDANCETTE", "code_postal": "26140", "coordonnees_gps": [45.2622032163, 4.86699876584], "code_commune_insee": "26009"}, "geometry": {"type": "Point", "coordinates": [4.86699876584, 45.2622032163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f361dedbc0fcb7cbea5461894fb1bcf41624a9c1", "fields": {"code_postal": "26140", "code_commune_insee": "26009", "libell_d_acheminement": "ANDANCETTE", "ligne_5": "CREUX DE LA THINE", "nom_de_la_commune": "ANDANCETTE", "coordonnees_gps": [45.2622032163, 4.86699876584]}, "geometry": {"type": "Point", "coordinates": [4.86699876584, 45.2622032163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "292536f5b31c37ca2d87828cdcb2e6d69eb904b2", "fields": {"nom_de_la_commune": "ANNEYRON", "libell_d_acheminement": "ANNEYRON", "code_postal": "26140", "coordonnees_gps": [45.2622032163, 4.86699876584], "code_commune_insee": "26010"}, "geometry": {"type": "Point", "coordinates": [4.86699876584, 45.2622032163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3117be0df5bd9e087e7b4857efc0c75c882e46ce", "fields": {"nom_de_la_commune": "ARTHEMONAY", "libell_d_acheminement": "ARTHEMONAY", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26014"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8abe22a0cf1983421f95dd8c84365a5d09b1bae8", "fields": {"nom_de_la_commune": "AUBRES", "libell_d_acheminement": "AUBRES", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26016"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e239c72fcff90f13ead660cb8eb1077cdfd0ab1e", "fields": {"nom_de_la_commune": "BALLONS", "libell_d_acheminement": "BALLONS", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26022"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47aabe6e2c5e71686e2c33857fe52e01ef3044fa", "fields": {"nom_de_la_commune": "BEAUMONT EN DIOIS", "libell_d_acheminement": "BEAUMONT EN DIOIS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26036"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a663c9e31627a058de6b97b0fc3d80b41411ed03", "fields": {"nom_de_la_commune": "BEAUVALLON", "libell_d_acheminement": "BEAUVALLON", "code_postal": "26800", "coordonnees_gps": [44.8326704656, 4.89052463788], "code_commune_insee": "26042"}, "geometry": {"type": "Point", "coordinates": [4.89052463788, 44.8326704656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a762fb3739eac42d59e8c7d0d783d1b6efd9631", "fields": {"nom_de_la_commune": "BELLEGARDE EN DIOIS", "libell_d_acheminement": "BELLEGARDE EN DIOIS", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26047"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1711483133ca5e2adb13e87895f0fdc0c38ef3", "fields": {"nom_de_la_commune": "BENIVAY OLLON", "libell_d_acheminement": "BENIVAY OLLON", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26048"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07dc79de93cb08d5c23ddcbfa0020d5763e4786e", "fields": {"nom_de_la_commune": "BOUCHET", "libell_d_acheminement": "BOUCHET", "code_postal": "26790", "coordonnees_gps": [44.2888524342, 4.87321368948], "code_commune_insee": "26054"}, "geometry": {"type": "Point", "coordinates": [4.87321368948, 44.2888524342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2b00f1e90160fdf77957d3c9e30550008d22939", "fields": {"nom_de_la_commune": "BOURDEAUX", "libell_d_acheminement": "BOURDEAUX", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26056"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa418c016f24d5b6522a93a48956570128dcac0", "fields": {"nom_de_la_commune": "BOUVIERES", "libell_d_acheminement": "BOUVIERES", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26060"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaa1de0c307969eada5407f3c3de73d4a0cd5aab", "fields": {"nom_de_la_commune": "BREN", "libell_d_acheminement": "BREN", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26061"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9498becb34ef9b2c6a3e7a2c9ad4a6c9a542b6f6", "fields": {"code_postal": "26420", "code_commune_insee": "26074", "libell_d_acheminement": "LA CHAPELLE EN VERCORS", "ligne_5": "LES BARRAQUES EN VERCORS", "nom_de_la_commune": "LA CHAPELLE EN VERCORS", "coordonnees_gps": [44.9365927101, 5.42231201851]}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3cbd34b544613af139fb2e973e2d4e6b4b2b8d9", "fields": {"code_postal": "26300", "code_commune_insee": "26079", "libell_d_acheminement": "CHARPEY", "ligne_5": "ST DIDIER DE CHARPEY", "nom_de_la_commune": "CHARPEY", "coordonnees_gps": [44.9876949669, 5.0803109859]}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba9911d7ea31577f99532b87094a402b1d67383", "fields": {"nom_de_la_commune": "CHATEAUNEUF SUR ISERE", "libell_d_acheminement": "CHATEAUNEUF SUR ISERE", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26084"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c95a7577615a83a2fcc240a06dd0cfd3445190e", "fields": {"nom_de_la_commune": "CHATILLON EN DIOIS", "libell_d_acheminement": "CHATILLON EN DIOIS", "code_postal": "26410", "coordonnees_gps": [44.6917619163, 5.54713177432], "code_commune_insee": "26086"}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7234a7e8e3f215574819734a78001953bedb0d", "fields": {"nom_de_la_commune": "COLONZELLE", "libell_d_acheminement": "COLONZELLE", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26099"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ab77c0bbcf258629919451c22094e2c7b305c1", "fields": {"nom_de_la_commune": "CORNILLAC", "libell_d_acheminement": "CORNILLAC", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26104"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ff77cc3d6abb9302b852d8a508877a8b9c308b", "fields": {"code_postal": "26740", "code_commune_insee": "26106", "libell_d_acheminement": "LA COUCOURDE", "ligne_5": "DERBIERES", "nom_de_la_commune": "LA COUCOURDE", "coordonnees_gps": [44.6175061627, 4.82925969316]}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e77e7e6090ab315de9eb7c491c8291964f658100", "fields": {"nom_de_la_commune": "DONZERE", "libell_d_acheminement": "DONZERE", "code_postal": "26290", "coordonnees_gps": [44.4311529831, 4.71776932264], "code_commune_insee": "26116"}, "geometry": {"type": "Point", "coordinates": [4.71776932264, 44.4311529831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "021b8b88e17a9cc8dd1b48c926e0bd500c46cade", "fields": {"nom_de_la_commune": "EPINOUZE", "libell_d_acheminement": "EPINOUZE", "code_postal": "26210", "coordonnees_gps": [45.2969498397, 4.98492206327], "code_commune_insee": "26118"}, "geometry": {"type": "Point", "coordinates": [4.98492206327, 45.2969498397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1b86c29c528a2d38d7758cc2a25fc9b72c332e", "fields": {"nom_de_la_commune": "EROME", "libell_d_acheminement": "EROME", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26119"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0707dc2762be4cfde92e990d527945976e478ec", "fields": {"nom_de_la_commune": "EURRE", "libell_d_acheminement": "EURRE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26125"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65eb8ba16bf15d13b711862592778369b4fb6244", "fields": {"nom_de_la_commune": "EYGALAYES", "libell_d_acheminement": "EYGALAYES", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26126"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e099c00c653fa0e55524c91483faf79ab6d42e7", "fields": {"nom_de_la_commune": "EYGLUY ESCOULIN", "libell_d_acheminement": "EYGLUY ESCOULIN", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26128"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c46b14f3ca7a572f34b8766f65f03dcfa3dd88", "fields": {"nom_de_la_commune": "FELINES SUR RIMANDOULE", "libell_d_acheminement": "FELINES SUR RIMANDOULE", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26134"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "358c14be8708b57b5a40c22e99053dda4f09d186", "fields": {"code_postal": "26310", "code_commune_insee": "26136", "libell_d_acheminement": "VAL MARAVEL", "ligne_5": "LE PILHON", "nom_de_la_commune": "VAL MARAVEL", "coordonnees_gps": [44.5689961906, 5.50488176905]}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a1c77ab8c86fbd96478867287d84c14a9a2535d", "fields": {"nom_de_la_commune": "GRANE", "libell_d_acheminement": "GRANE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26144"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3c2a1a436606d184fab4813d976467ea60c89d0", "fields": {"nom_de_la_commune": "LES GRANGES GONTARDES", "libell_d_acheminement": "LES GRANGES GONTARDES", "code_postal": "26290", "coordonnees_gps": [44.4311529831, 4.71776932264], "code_commune_insee": "26145"}, "geometry": {"type": "Point", "coordinates": [4.71776932264, 44.4311529831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f19c168b6648e6c5c03c98a0f48dc4e1ca3adbc", "fields": {"nom_de_la_commune": "LARNAGE", "libell_d_acheminement": "LARNAGE", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26156"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f944ec47ddd003c18f200715a7f2fb92b331650", "fields": {"nom_de_la_commune": "LA LAUPIE", "libell_d_acheminement": "LA LAUPIE", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26157"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5219f22c5e4480eede6428ec6d6b65c2e4e6d30", "fields": {"code_postal": "26250", "code_commune_insee": "26165", "libell_d_acheminement": "LIVRON SUR DROME", "ligne_5": "LES PETITS ROBINS", "nom_de_la_commune": "LIVRON SUR DROME", "coordonnees_gps": [44.7874591799, 4.83851475178]}, "geometry": {"type": "Point", "coordinates": [4.83851475178, 44.7874591799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e5c0cf5e99c4b8dd0ccf1537964e3ec3c874789", "fields": {"nom_de_la_commune": "MERCUROL VEAUNES", "libell_d_acheminement": "MERCUROL VEAUNES", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26179"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b47ad11f703a41192858d4bbffef6ce2692224", "fields": {"nom_de_la_commune": "MIRMANDE", "libell_d_acheminement": "MIRMANDE", "code_postal": "26270", "coordonnees_gps": [44.7168044995, 4.81795152107], "code_commune_insee": "26185"}, "geometry": {"type": "Point", "coordinates": [4.81795152107, 44.7168044995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29b2a7495cf17d904d2afdfd293806211fa348d9", "fields": {"nom_de_la_commune": "MONTAULIEU", "libell_d_acheminement": "MONTAULIEU", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26190"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "005070e038cd244599d6128f19251ab41006f9fd", "fields": {"nom_de_la_commune": "MONTELIER", "libell_d_acheminement": "MONTELIER", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26197"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2ea48bf6215b1b7610ac82a8613960b81b02e0", "fields": {"nom_de_la_commune": "MONTELIMAR", "libell_d_acheminement": "MONTELIMAR", "code_postal": "26200", "coordonnees_gps": [44.5548199965, 4.74796911041], "code_commune_insee": "26198"}, "geometry": {"type": "Point", "coordinates": [4.74796911041, 44.5548199965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbed8518ae415343af659aa02c3717b7d862a7b9", "fields": {"nom_de_la_commune": "MONTMEYRAN", "libell_d_acheminement": "MONTMEYRAN", "code_postal": "26120", "coordonnees_gps": [44.8732903807, 5.03514249262], "code_commune_insee": "26206"}, "geometry": {"type": "Point", "coordinates": [5.03514249262, 44.8732903807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a8784c2f37575806013ae1d10a327fed07dcc62", "fields": {"nom_de_la_commune": "MONTSEGUR SUR LAUZON", "libell_d_acheminement": "MONTSEGUR SUR LAUZON", "code_postal": "26130", "coordonnees_gps": [44.3543801752, 4.80463085245], "code_commune_insee": "26211"}, "geometry": {"type": "Point", "coordinates": [4.80463085245, 44.3543801752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebff5eebbab263148e25d1938ddd60bccbb4395d", "fields": {"nom_de_la_commune": "MORAS EN VALLOIRE", "libell_d_acheminement": "MORAS EN VALLOIRE", "code_postal": "26210", "coordonnees_gps": [45.2969498397, 4.98492206327], "code_commune_insee": "26213"}, "geometry": {"type": "Point", "coordinates": [4.98492206327, 45.2969498397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa2f382234428f4406bbf7f743371ab31c2964ca", "fields": {"nom_de_la_commune": "NYONS", "libell_d_acheminement": "NYONS", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26220"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2aa79bc3a47da75db5a7855bd86242c6664b84", "fields": {"nom_de_la_commune": "ORIOL EN ROYANS", "libell_d_acheminement": "ORIOL EN ROYANS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26223"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0dd49538842dbcb6aae66c1ada93541a442212", "fields": {"nom_de_la_commune": "PLAN DE BAIX", "libell_d_acheminement": "PLAN DE BAIX", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26240"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70a40d0e05c408af55addfb75c97872b02f77281", "fields": {"nom_de_la_commune": "LE POET LAVAL", "libell_d_acheminement": "LE POET LAVAL", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26243"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f34624860c7dc412f6f0cf9352e07d5bc09d9f8b", "fields": {"nom_de_la_commune": "PONSAS", "libell_d_acheminement": "PONSAS", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26247"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c98db50307063c4e91b4ebce1bb11f7a8bb43c", "fields": {"nom_de_la_commune": "PORTES LES VALENCE", "libell_d_acheminement": "PORTES LES VALENCE", "code_postal": "26800", "coordonnees_gps": [44.8326704656, 4.89052463788], "code_commune_insee": "26252"}, "geometry": {"type": "Point", "coordinates": [4.89052463788, 44.8326704656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98fc52c987143975c23c7945144b0afbaa29c274", "fields": {"nom_de_la_commune": "PRADELLE", "libell_d_acheminement": "PRADELLE", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26254"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9d2dcd327462209eb771492ac9a84c970bedbf", "fields": {"nom_de_la_commune": "LES PRES", "libell_d_acheminement": "LES PRES", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26255"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0ed28a2fc98187414f8943a24d4648e146b5d3", "fields": {"nom_de_la_commune": "REMUZAT", "libell_d_acheminement": "REMUZAT", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26264"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31a9599c3c98df3733937d71e32126ceaa521ff", "fields": {"nom_de_la_commune": "ROCHEBRUNE", "libell_d_acheminement": "ROCHEBRUNE", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26269"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8adb66483f65c6f0b6d059a53053295f4e3c7c8b", "fields": {"nom_de_la_commune": "ROCHEFORT SAMSON", "libell_d_acheminement": "ROCHEFORT SAMSON", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26273"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5fb7e901053cf7401989f389a990bdfc7aba603", "fields": {"nom_de_la_commune": "ROCHE ST SECRET BECONNE", "libell_d_acheminement": "ROCHE ST SECRET BECONNE", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26276"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c09ea2caefc8ec75640e1541233c966745758e1", "fields": {"nom_de_la_commune": "LA ROCHE SUR GRANE", "libell_d_acheminement": "LA ROCHE SUR GRANE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26277"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250394ec6f89cda9dcd994de029a06b91b82ad97", "fields": {"nom_de_la_commune": "ROYNAC", "libell_d_acheminement": "ROYNAC", "code_postal": "26450", "coordonnees_gps": [44.624531354, 4.94624858412], "code_commune_insee": "26287"}, "geometry": {"type": "Point", "coordinates": [4.94624858412, 44.624531354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60cf0a91f2f4f17fa5e69b60fe02b8a17a32745", "fields": {"nom_de_la_commune": "SAHUNE", "libell_d_acheminement": "SAHUNE", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26288"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca05a91ece75b1ea64b9bd6d828364d989a45800", "fields": {"nom_de_la_commune": "ST AUBAN SUR L OUVEZE", "libell_d_acheminement": "ST AUBAN SUR L OUVEZE", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26292"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fc7683fcc52a1f1fe6d00b343e0b22ccdecf975", "fields": {"nom_de_la_commune": "ST BARDOUX", "libell_d_acheminement": "ST BARDOUX", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26294"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b8e5f370d64e0f2e64ee0040748e005fc681a9", "fields": {"nom_de_la_commune": "ST JEAN EN ROYANS", "libell_d_acheminement": "ST JEAN EN ROYANS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26307"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dfbf28875b8be702575febf6cf66ea4f3f3becf", "fields": {"nom_de_la_commune": "ST MARTIN EN VERCORS", "libell_d_acheminement": "ST MARTIN EN VERCORS", "code_postal": "26420", "coordonnees_gps": [44.9365927101, 5.42231201851], "code_commune_insee": "26315"}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8cd3d8787bfa0c81909f63656b57ce58eec1798", "fields": {"nom_de_la_commune": "ST NAZAIRE EN ROYANS", "libell_d_acheminement": "ST NAZAIRE EN ROYANS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26320"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "183058ca27d66fabbaf8f57b32b0e9735abfd70e", "fields": {"nom_de_la_commune": "ST PANTALEON LES VIGNES", "libell_d_acheminement": "ST PANTALEON LES VIGNES", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26322"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bc250b2b4f277dcf70cd4e0f146f4c791a4a986", "fields": {"nom_de_la_commune": "ST ROMAN", "libell_d_acheminement": "ST ROMAN", "code_postal": "26410", "coordonnees_gps": [44.6917619163, 5.54713177432], "code_commune_insee": "26327"}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80e3aa7f4b24d16a078283ab9b6ffe54a6fa7fa2", "fields": {"nom_de_la_commune": "SAVASSE", "libell_d_acheminement": "SAVASSE", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26339"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dcee7d81d6a36d197a8f1cff297db47856f38f4", "fields": {"nom_de_la_commune": "SOUSPIERRE", "libell_d_acheminement": "SOUSPIERRE", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26343"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63db238e71333d7065b152186484217ee61f2c60", "fields": {"nom_de_la_commune": "SUZE", "libell_d_acheminement": "SUZE", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26346"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da0f1c61ac40258b1445a11ce1c1758091868cf", "fields": {"nom_de_la_commune": "TAIN L HERMITAGE", "libell_d_acheminement": "TAIN L HERMITAGE", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26347"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0608a21bf7794da71d86c4a122af9e8f3f805b3a", "fields": {"nom_de_la_commune": "TERSANNE", "libell_d_acheminement": "TERSANNE", "code_postal": "26390", "coordonnees_gps": [45.2443633051, 5.0335654091], "code_commune_insee": "26349"}, "geometry": {"type": "Point", "coordinates": [5.0335654091, 45.2443633051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c709528bc4b620c22c34505eb4b1afc63c918d0", "fields": {"nom_de_la_commune": "TULETTE", "libell_d_acheminement": "TULETTE", "code_postal": "26790", "coordonnees_gps": [44.2888524342, 4.87321368948], "code_commune_insee": "26357"}, "geometry": {"type": "Point", "coordinates": [4.87321368948, 44.2888524342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05f07f84f610d680fb62867264ffcb6f62643e08", "fields": {"nom_de_la_commune": "VALAURIE", "libell_d_acheminement": "VALAURIE", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26360"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7dac3bcaffec8c1a485a042470bd2b8de81b364", "fields": {"nom_de_la_commune": "VALENCE", "libell_d_acheminement": "VALENCE", "code_postal": "26000", "coordonnees_gps": [44.9223144548, 4.91305108836], "code_commune_insee": "26362"}, "geometry": {"type": "Point", "coordinates": [4.91305108836, 44.9223144548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c1014cb19fd0d121f4cce4de0c216317fa6cb5c", "fields": {"nom_de_la_commune": "VASSIEUX EN VERCORS", "libell_d_acheminement": "VASSIEUX EN VERCORS", "code_postal": "26420", "coordonnees_gps": [44.9365927101, 5.42231201851], "code_commune_insee": "26364"}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22aeebc72000b9e2307623ff93c992ef2458a1c0", "fields": {"nom_de_la_commune": "VILLEFRANCHE LE CHATEAU", "libell_d_acheminement": "VILLEFRANCHE LE CHATEAU", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26375"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "523c9564620a7ccd137145bb10f194777e80636f", "fields": {"nom_de_la_commune": "VOLVENT", "libell_d_acheminement": "VOLVENT", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26378"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97194df95341b5d22ee2891a6e7e50473b7a0595", "fields": {"nom_de_la_commune": "JAILLANS", "libell_d_acheminement": "JAILLANS", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26381"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12675b0239ce6858efd85db6b6442168d52eacf5", "fields": {"nom_de_la_commune": "ST VINCENT LA COMMANDERIE", "libell_d_acheminement": "ST VINCENT LA COMMANDERIE", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26382"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05256559eb4110401c92f823a5d4ffe3b7daaccf", "fields": {"nom_de_la_commune": "ACLOU", "libell_d_acheminement": "ACLOU", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27001"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd3993ac064d17b1aa0302f64c3e5c5c958e44b", "fields": {"nom_de_la_commune": "ACQUIGNY", "libell_d_acheminement": "ACQUIGNY", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27003"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f6fd72787afc6db1da0ada6a5b4d8a41f660e6", "fields": {"nom_de_la_commune": "AMBENAY", "libell_d_acheminement": "AMBENAY", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27009"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbb451f763bd109e36f42afc9226cf9224a9226b", "fields": {"nom_de_la_commune": "ARNIERES SUR ITON", "libell_d_acheminement": "ARNIERES SUR ITON", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27020"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fea332fb480f5ddb8f620cdf516a2b759016d01d", "fields": {"nom_de_la_commune": "AVIRON", "libell_d_acheminement": "AVIRON", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27031"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea1d89b6da96dd5ed966b1935b46eb2666f7e829", "fields": {"nom_de_la_commune": "BARC", "libell_d_acheminement": "BARC", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27037"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4ffc67e272cef31e56c2897296adbc1bb0650e", "fields": {"nom_de_la_commune": "BARQUET", "libell_d_acheminement": "BARQUET", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27040"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5917ae27df137fdc2fb280e0dc1b2aeceb2a1628", "fields": {"nom_de_la_commune": "BEAUFICEL EN LYONS", "libell_d_acheminement": "BEAUFICEL EN LYONS", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27048"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d52cbc6ec6744e43afeb38c35c2bfcbc66587b1e", "fields": {"code_postal": "27330", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "BOSC RENOULT EN OUCHE", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [48.928948419, 0.685983737995]}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c53ab0d357439453078226e6374643b7e4e1ab", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "GOUTTIERES", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f021d5489b18d4f33d2618c12f2368ad506d932", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "GRANCHAIN", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7828aa8be4b9a738c3c536ca61ecf058bea2c3b", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "STE MARGUERITE EN OUCHE", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2919c04ba0937950f6f72f285a9a924acae6012c", "fields": {"nom_de_la_commune": "LE BEC HELLOUIN", "libell_d_acheminement": "LE BEC HELLOUIN", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27052"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c93fdf3013824a89183bc0eedb66b09d0e0b25", "fields": {"nom_de_la_commune": "BERENGEVILLE LA CAMPAGNE", "libell_d_acheminement": "BERENGEVILLE LA CAMPAGNE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27055"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e40bfce861344e43af460e527814ad0adbe00cfb", "fields": {"nom_de_la_commune": "BERNIENVILLE", "libell_d_acheminement": "BERNIENVILLE", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27057"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb874d8735ba57460778c42efa8180240bf21c88", "fields": {"nom_de_la_commune": "BERVILLE EN ROUMOIS", "libell_d_acheminement": "BERVILLE EN ROUMOIS", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27062"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63f7920468667c97f83f11d42f033426eebb80ee", "fields": {"nom_de_la_commune": "BEUZEVILLE", "libell_d_acheminement": "BEUZEVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27065"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d436300b47de1fcd7e8bf36d5f9ccb83475f9532", "fields": {"nom_de_la_commune": "BEZU LA FORET", "libell_d_acheminement": "BEZU LA FORET", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27066"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bd2772a03d8c4e03c99b8b098f9c558f0a3fab5", "fields": {"nom_de_la_commune": "ASNIERES SUR NOUERE", "libell_d_acheminement": "ASNIERES SUR NOUERE", "code_postal": "16290", "coordonnees_gps": [45.681734469, 0.0127639877624], "code_commune_insee": "16019"}, "geometry": {"type": "Point", "coordinates": [0.0127639877624, 45.681734469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5e9bbec29e5a492110849c4dafd3ada82f72eef", "fields": {"nom_de_la_commune": "AUBETERRE SUR DRONNE", "libell_d_acheminement": "AUBETERRE SUR DRONNE", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16020"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2becc953eff54186f7e260d19ac6e0540d6dc34", "fields": {"nom_de_la_commune": "BAIGNES STE RADEGONDE", "libell_d_acheminement": "BAIGNES STE RADEGONDE", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16025"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c0c5af3edd5ea0811b0719c013f7ba0e9ccba2", "fields": {"nom_de_la_commune": "BARDENAC", "libell_d_acheminement": "BARDENAC", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16029"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58461406b22904360aed3d1462a98c3053ae43a1", "fields": {"nom_de_la_commune": "BASSAC", "libell_d_acheminement": "BASSAC", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16032"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb54d5d699c59b59b08f487101cc40c252fe566", "fields": {"nom_de_la_commune": "BERNEUIL", "libell_d_acheminement": "BERNEUIL", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16040"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "733b18cb846407a6bd73584aa8cad70618c88d4e", "fields": {"nom_de_la_commune": "BIRAC", "libell_d_acheminement": "BIRAC", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16045"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e19de2bba0c056197bfcd5bbdcaec23e9d66a0", "fields": {"nom_de_la_commune": "BLANZAGUET ST CYBARD", "libell_d_acheminement": "BLANZAGUET ST CYBARD", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16047"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c38b0fc7af8cf1eec69ddbc7913a2a74a1ea86", "fields": {"nom_de_la_commune": "LE BOUCHAGE", "libell_d_acheminement": "LE BOUCHAGE", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16054"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc13c85bcc34c52cd2b92f0aaf595c7c8cf8f20", "fields": {"nom_de_la_commune": "BRILLAC", "libell_d_acheminement": "BRILLAC", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16065"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e5e3ac5f6e28fd873cc594e9e7a4df88bb44e06", "fields": {"nom_de_la_commune": "CHALAIS", "libell_d_acheminement": "CHALAIS", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16073"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b03220530a7b2f47d2739c7c24b534b9bac582ac", "fields": {"code_postal": "16210", "code_commune_insee": "16073", "libell_d_acheminement": "CHALAIS", "ligne_5": "SERIGNAC", "nom_de_la_commune": "CHALAIS", "coordonnees_gps": [45.2719672367, 0.0511310562847]}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d971eb3f01f09e0c4f069510ecef1b49beff6248", "fields": {"nom_de_la_commune": "CHAMPMILLON", "libell_d_acheminement": "CHAMPMILLON", "code_postal": "16290", "coordonnees_gps": [45.681734469, 0.0127639877624], "code_commune_insee": "16077"}, "geometry": {"type": "Point", "coordinates": [0.0127639877624, 45.681734469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d9f3eb48bbdcce0a331df62da278c6107199d0", "fields": {"nom_de_la_commune": "CHASSORS", "libell_d_acheminement": "CHASSORS", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16088"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2144987db62d1f003ed6b6673feceb76b090c025", "fields": {"nom_de_la_commune": "CHATIGNAC", "libell_d_acheminement": "CHATIGNAC", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16091"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b20240386139e665c0bc4a813a2eb50be715a5db", "fields": {"nom_de_la_commune": "CHERVES CHATELARS", "libell_d_acheminement": "CHERVES CHATELARS", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16096"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a07d1e7c307ff179af3c8bd1ea8cc818dbaa989", "fields": {"nom_de_la_commune": "LA CHEVRERIE", "libell_d_acheminement": "LA CHEVRERIE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16098"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24cf0f380bace4f8efdb81aef12dcfa02d97bdaf", "fields": {"nom_de_la_commune": "CONDEON", "libell_d_acheminement": "CONDEON", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16105"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a399b2e4dea422a58aab9ae2d3e971ee3075b3fe", "fields": {"nom_de_la_commune": "COULGENS", "libell_d_acheminement": "COULGENS", "code_postal": "16560", "coordonnees_gps": [45.7971229421, 0.228616838557], "code_commune_insee": "16107"}, "geometry": {"type": "Point", "coordinates": [0.228616838557, 45.7971229421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "913ebca2a28a1a55d3e111f8df0ea3bef9744e12", "fields": {"nom_de_la_commune": "L HOPITAL SOUS ROCHEFORT", "libell_d_acheminement": "L HOPITAL SOUS ROCHEFORT", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42109"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db3a62dab2a13a1b65faa7d290399784ddc6b86", "fields": {"nom_de_la_commune": "L HORME", "libell_d_acheminement": "L HORME", "code_postal": "42152", "coordonnees_gps": [45.4921206282, 4.54073331878], "code_commune_insee": "42110"}, "geometry": {"type": "Point", "coordinates": [4.54073331878, 45.4921206282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4953385e0b9b461f0763f147713af7e2ff4495", "fields": {"nom_de_la_commune": "JAS", "libell_d_acheminement": "JAS", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42113"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4efd02241b05f7a0c175ac0bbc54dde35701c8e5", "fields": {"nom_de_la_commune": "JURE", "libell_d_acheminement": "JURE", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42116"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c42e33c7599332e2cc4d5f0dea4364abe7b0e999", "fields": {"nom_de_la_commune": "LENTIGNY", "libell_d_acheminement": "LENTIGNY", "code_postal": "42155", "coordonnees_gps": [45.9923375929, 3.9763968216], "code_commune_insee": "42120"}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd63046c6377a9fc66b50c74de71bfc30a1053fa", "fields": {"nom_de_la_commune": "LERIGNEUX", "libell_d_acheminement": "LERIGNEUX", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42121"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ccd097435e8752a5bb62bff0963f96cde72bd30", "fields": {"nom_de_la_commune": "MAIZILLY", "libell_d_acheminement": "MAIZILLY", "code_postal": "42750", "coordonnees_gps": [46.1636009324, 4.23557932675], "code_commune_insee": "42131"}, "geometry": {"type": "Point", "coordinates": [4.23557932675, 46.1636009324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3aee094e60a651439665b628f264320cd275aae", "fields": {"nom_de_la_commune": "MAROLS", "libell_d_acheminement": "MAROLS", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42140"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492619d2c7857b93b8419de46d67dda0c55d01d6", "fields": {"nom_de_la_commune": "MERLE LEIGNEC", "libell_d_acheminement": "MERLE LEIGNEC", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42142"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863eef623a7ce3199b1a468428f5775c566ab4f4", "fields": {"nom_de_la_commune": "MONTARCHER", "libell_d_acheminement": "MONTARCHER", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42146"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ed9ec9546d2ea4f12789490c99a2529f7b8c2d", "fields": {"nom_de_la_commune": "MONTCHAL", "libell_d_acheminement": "MONTCHAL", "code_postal": "42360", "coordonnees_gps": [45.793651332, 4.32907155822], "code_commune_insee": "42148"}, "geometry": {"type": "Point", "coordinates": [4.32907155822, 45.793651332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34cc7e8d1cd3bd70ae875cfd0d5e2ca2906f4908", "fields": {"nom_de_la_commune": "MONTROND LES BAINS", "libell_d_acheminement": "MONTROND LES BAINS", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42149"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "686847bc76f3fe36adb8df8cfb5f6617021efd52", "fields": {"nom_de_la_commune": "NANDAX", "libell_d_acheminement": "NANDAX", "code_postal": "42720", "coordonnees_gps": [46.1272697069, 4.10675684873], "code_commune_insee": "42152"}, "geometry": {"type": "Point", "coordinates": [4.10675684873, 46.1272697069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65b4d0822a6b0480570333d31b49f5447cf625ce", "fields": {"nom_de_la_commune": "NOAILLY", "libell_d_acheminement": "NOAILLY", "code_postal": "42640", "coordonnees_gps": [46.1173312235, 3.98457148265], "code_commune_insee": "42157"}, "geometry": {"type": "Point", "coordinates": [3.98457148265, 46.1173312235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824b7ef58ffede5c3716ccb9c1c744d6f7539917", "fields": {"nom_de_la_commune": "NOLLIEUX", "libell_d_acheminement": "NOLLIEUX", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42160"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db3608961dd35b52eaeefe55bc259e9ed37c4cac", "fields": {"nom_de_la_commune": "PERREUX", "libell_d_acheminement": "PERREUX", "code_postal": "42120", "coordonnees_gps": [46.0189816241, 4.12010356973], "code_commune_insee": "42170"}, "geometry": {"type": "Point", "coordinates": [4.12010356973, 46.0189816241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87284617c8eced0dee9d0e9a0845c6dd1d54cbac", "fields": {"nom_de_la_commune": "POMMIERS", "libell_d_acheminement": "POMMIERS", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42173"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4120caaab5f2acffbd1d6854bc2ded130f691ce", "fields": {"nom_de_la_commune": "PRADINES", "libell_d_acheminement": "PRADINES", "code_postal": "42630", "coordonnees_gps": [46.0004668112, 4.2221699814], "code_commune_insee": "42178"}, "geometry": {"type": "Point", "coordinates": [4.2221699814, 46.0004668112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b22e520c80df879eed21178b9e0516e484c5002", "fields": {"nom_de_la_commune": "PRALONG", "libell_d_acheminement": "PRALONG", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42179"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04336e6fade9a8bd6871af7d42e0d160bbf1edf9", "fields": {"nom_de_la_commune": "LA RICAMARIE", "libell_d_acheminement": "LA RICAMARIE", "code_postal": "42150", "coordonnees_gps": [45.4035201854, 4.3687603491], "code_commune_insee": "42183"}, "geometry": {"type": "Point", "coordinates": [4.3687603491, 45.4035201854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b82b8a1a8209b19af4f027cb17de9eb0c4f46e4c", "fields": {"nom_de_la_commune": "RIVE DE GIER", "libell_d_acheminement": "RIVE DE GIER", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42186"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4352432c50f60f24d927b8a07e5271133247684b", "fields": {"nom_de_la_commune": "ROCHE LA MOLIERE", "libell_d_acheminement": "ROCHE LA MOLIERE", "code_postal": "42230", "coordonnees_gps": [45.4293966387, 4.36873276603], "code_commune_insee": "42189"}, "geometry": {"type": "Point", "coordinates": [4.36873276603, 45.4293966387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ddaa063a7521cd72fe2a921ab8b31793d7213af", "fields": {"nom_de_la_commune": "ST ANDRE D APCHON", "libell_d_acheminement": "ST ANDRE D APCHON", "code_postal": "42370", "coordonnees_gps": [46.0410785697, 3.88579573435], "code_commune_insee": "42199"}, "geometry": {"type": "Point", "coordinates": [3.88579573435, 46.0410785697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6a16e9965239a486984fe79c957451361783cd", "fields": {"code_postal": "42400", "code_commune_insee": "42207", "libell_d_acheminement": "ST CHAMOND", "ligne_5": "ST JULIEN EN JAREZ", "nom_de_la_commune": "ST CHAMOND", "coordonnees_gps": [45.4701877634, 4.50203719758]}, "geometry": {"type": "Point", "coordinates": [4.50203719758, 45.4701877634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e5d740ffaa3c6c14818071759776277e00dabb0", "fields": {"nom_de_la_commune": "ST CYR LES VIGNES", "libell_d_acheminement": "ST CYR LES VIGNES", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42214"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b308c420f9f9ef4c8809adf31bc0be5a48acca6", "fields": {"nom_de_la_commune": "ST DENIS DE CABANNE", "libell_d_acheminement": "ST DENIS DE CABANNE", "code_postal": "42750", "coordonnees_gps": [46.1636009324, 4.23557932675], "code_commune_insee": "42215"}, "geometry": {"type": "Point", "coordinates": [4.23557932675, 46.1636009324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "220ed88cda8f18be15907ac0b3ddc74af595589f", "fields": {"nom_de_la_commune": "ST ETIENNE", "libell_d_acheminement": "ST ETIENNE", "code_postal": "42100", "coordonnees_gps": [45.4301225907, 4.37830062526], "code_commune_insee": "42218"}, "geometry": {"type": "Point", "coordinates": [4.37830062526, 45.4301225907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8c89763fc08e293e477e93b3da20f692378c2f6", "fields": {"nom_de_la_commune": "ST HILAIRE CUSSON LA VALMITTE", "libell_d_acheminement": "ST HILAIRE CUSSON LA VALMITTE", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42235"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9bd77204c2ee1444e68c9266beb86ebcc018e4", "fields": {"nom_de_la_commune": "ST JEAN LA VETRE", "libell_d_acheminement": "ST JEAN LA VETRE", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42238"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11b1e4379e77f8a506ec0eac1a9791b7abf207de", "fields": {"nom_de_la_commune": "ST JULIEN LA VETRE", "libell_d_acheminement": "ST JULIEN LA VETRE", "code_postal": "42440", "coordonnees_gps": [45.8117043689, 3.77271177644], "code_commune_insee": "42245"}, "geometry": {"type": "Point", "coordinates": [3.77271177644, 45.8117043689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee70348c51d1fcc7bdf6ce032b9560acc6765352", "fields": {"nom_de_la_commune": "ST JUST LA PENDUE", "libell_d_acheminement": "ST JUST LA PENDUE", "code_postal": "42540", "coordonnees_gps": [45.8845566287, 4.25261617322], "code_commune_insee": "42249"}, "geometry": {"type": "Point", "coordinates": [4.25261617322, 45.8845566287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f071258d6d371f706e9c18c72df85b82a0b36dd", "fields": {"nom_de_la_commune": "ST LEGER SUR ROANNE", "libell_d_acheminement": "ST LEGER SUR ROANNE", "code_postal": "42155", "coordonnees_gps": [45.9923375929, 3.9763968216], "code_commune_insee": "42253"}, "geometry": {"type": "Point", "coordinates": [3.9763968216, 45.9923375929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ba67a1bf3f66f6c4f2168ca81452c9e484ef7d0", "fields": {"nom_de_la_commune": "ST MARTIN LA SAUVETE", "libell_d_acheminement": "ST MARTIN LA SAUVETE", "code_postal": "42260", "coordonnees_gps": [45.8652813058, 3.98967950475], "code_commune_insee": "42260"}, "geometry": {"type": "Point", "coordinates": [3.98967950475, 45.8652813058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7625b3a1e0150176a824e770e35985d336dcd3", "fields": {"nom_de_la_commune": "ST MARTIN LESTRA", "libell_d_acheminement": "ST MARTIN LESTRA", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42261"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60629f22650589226adbc101af39a6c3135a356d", "fields": {"nom_de_la_commune": "ST PRIEST EN JAREZ", "libell_d_acheminement": "ST PRIEST EN JAREZ", "code_postal": "42270", "coordonnees_gps": [45.4754717201, 4.37315866715], "code_commune_insee": "42275"}, "geometry": {"type": "Point", "coordinates": [4.37315866715, 45.4754717201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d95074fa0fc5ed4414eb07d12ca918cac7bb21", "fields": {"nom_de_la_commune": "ST ROMAIN LES ATHEUX", "libell_d_acheminement": "ST ROMAIN LES ATHEUX", "code_postal": "42660", "coordonnees_gps": [45.3345075212, 4.42730492765], "code_commune_insee": "42286"}, "geometry": {"type": "Point", "coordinates": [4.42730492765, 45.3345075212]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954e069a0419879407522a95909907ac7fef9dc8", "fields": {"nom_de_la_commune": "ST SYMPHORIEN DE LAY", "libell_d_acheminement": "ST SYMPHORIEN DE LAY", "code_postal": "42470", "coordonnees_gps": [45.9509348, 4.21878807509], "code_commune_insee": "42289"}, "geometry": {"type": "Point", "coordinates": [4.21878807509, 45.9509348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac9826366ad6cfdda2549275ce2101420fc0e02a", "fields": {"nom_de_la_commune": "ST THURIN", "libell_d_acheminement": "ST THURIN", "code_postal": "42111", "coordonnees_gps": [45.7864146517, 3.85739554907], "code_commune_insee": "42291"}, "geometry": {"type": "Point", "coordinates": [3.85739554907, 45.7864146517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc95046f3cf56bed0a3d59fbe32453b0d48fffd", "fields": {"nom_de_la_commune": "SALT EN DONZY", "libell_d_acheminement": "SALT EN DONZY", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42296"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7e19d0a3c928043a86de17970f42f058c88ac47", "fields": {"nom_de_la_commune": "LA TALAUDIERE", "libell_d_acheminement": "LA TALAUDIERE", "code_postal": "42350", "coordonnees_gps": [45.4787546836, 4.4240102424], "code_commune_insee": "42305"}, "geometry": {"type": "Point", "coordinates": [4.4240102424, 45.4787546836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68398620a117d2e7400e186d3ce5ed05ac6b2cca", "fields": {"nom_de_la_commune": "TARTARAS", "libell_d_acheminement": "TARTARAS", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42307"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fbbfddeb2ea7986bc2a448b5a2f9d559d54916c", "fields": {"nom_de_la_commune": "TRELINS", "libell_d_acheminement": "TRELINS", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42313"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "008adf067a59f57bd2f2ed056dd072ed78b44cfe", "fields": {"nom_de_la_commune": "USSON EN FOREZ", "libell_d_acheminement": "USSON EN FOREZ", "code_postal": "42550", "coordonnees_gps": [45.3920060669, 3.94898861156], "code_commune_insee": "42318"}, "geometry": {"type": "Point", "coordinates": [3.94898861156, 45.3920060669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a71024f7c9a00986d3e624a9fab9ff73b0b66ba8", "fields": {"nom_de_la_commune": "LA VALLA EN GIER", "libell_d_acheminement": "LA VALLA EN GIER", "code_postal": "42131", "coordonnees_gps": [45.4056333386, 4.52452224355], "code_commune_insee": "42322"}, "geometry": {"type": "Point", "coordinates": [4.52452224355, 45.4056333386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd65c72eaf442d5eb0805309affe9f0bdfbdc782", "fields": {"nom_de_la_commune": "VIRIGNEUX", "libell_d_acheminement": "VIRIGNEUX", "code_postal": "42140", "coordonnees_gps": [45.6127520472, 4.40276527786], "code_commune_insee": "42336"}, "geometry": {"type": "Point", "coordinates": [4.40276527786, 45.6127520472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2859db5107954cca3a5a11bece11815ede28571", "fields": {"nom_de_la_commune": "VIVANS", "libell_d_acheminement": "VIVANS", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42337"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc6f1c6e1482c435c30f99b2d23bec0924a28a3", "fields": {"nom_de_la_commune": "ALLEGRE", "libell_d_acheminement": "ALLEGRE", "code_postal": "43270", "coordonnees_gps": [45.1932424816, 3.70874018432], "code_commune_insee": "43003"}, "geometry": {"type": "Point", "coordinates": [3.70874018432, 45.1932424816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1efc60929948a5a75e9a6f68704ca76346e5f49", "fields": {"nom_de_la_commune": "ARLEMPDES", "libell_d_acheminement": "ARLEMPDES", "code_postal": "43490", "coordonnees_gps": [44.856451175, 3.93428361287], "code_commune_insee": "43008"}, "geometry": {"type": "Point", "coordinates": [3.93428361287, 44.856451175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e5ea217c803422d3988d27de937738eeef696f3", "fields": {"nom_de_la_commune": "BARGES", "libell_d_acheminement": "BARGES", "code_postal": "43340", "coordonnees_gps": [44.842698307, 3.79076623546], "code_commune_insee": "43019"}, "geometry": {"type": "Point", "coordinates": [3.79076623546, 44.842698307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b36cdeb89e6eb79420a296f0fb21ba98522fa0a9", "fields": {"nom_de_la_commune": "BEAUNE SUR ARZON", "libell_d_acheminement": "BEAUNE SUR ARZON", "code_postal": "43500", "coordonnees_gps": [45.3160537957, 3.86626032695], "code_commune_insee": "43023"}, "geometry": {"type": "Point", "coordinates": [3.86626032695, 45.3160537957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ed03f5066d249d987f73813481b788c199e407b", "fields": {"nom_de_la_commune": "BEAUX", "libell_d_acheminement": "BEAUX", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43024"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb4ee3a7800b90ee079e30aef2ffd4b65a400594", "fields": {"nom_de_la_commune": "BEAUZAC", "libell_d_acheminement": "BEAUZAC", "code_postal": "43590", "coordonnees_gps": [45.2570103679, 4.09347567725], "code_commune_insee": "43025"}, "geometry": {"type": "Point", "coordinates": [4.09347567725, 45.2570103679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1803f67160808b0bd3bc742dfc17b7eec9717e02", "fields": {"nom_de_la_commune": "BESSAMOREL", "libell_d_acheminement": "BESSAMOREL", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43028"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af82050dc9be9627f586a92be22689a0a9c0a741", "fields": {"nom_de_la_commune": "LA BESSEYRE ST MARY", "libell_d_acheminement": "LA BESSEYRE ST MARY", "code_postal": "43170", "coordonnees_gps": [44.923264076, 3.50854876026], "code_commune_insee": "43029"}, "geometry": {"type": "Point", "coordinates": [3.50854876026, 44.923264076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1334cf67e4ee946747f4bc467cce8f6f116c2528", "fields": {"nom_de_la_commune": "BLANZAC", "libell_d_acheminement": "BLANZAC", "code_postal": "43350", "coordonnees_gps": [45.1597919947, 3.81524516944], "code_commune_insee": "43030"}, "geometry": {"type": "Point", "coordinates": [3.81524516944, 45.1597919947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d85ac0acf0a772565b98e7342dc456fe67f9485", "fields": {"nom_de_la_commune": "BLAVOZY", "libell_d_acheminement": "BLAVOZY", "code_postal": "43700", "coordonnees_gps": [45.0330729782, 3.94919030628], "code_commune_insee": "43032"}, "geometry": {"type": "Point", "coordinates": [3.94919030628, 45.0330729782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d3dd236a271b78755c770840b9635c518e61f5", "fields": {"nom_de_la_commune": "CEAUX D ALLEGRE", "libell_d_acheminement": "CEAUX D ALLEGRE", "code_postal": "43270", "coordonnees_gps": [45.1932424816, 3.70874018432], "code_commune_insee": "43043"}, "geometry": {"type": "Point", "coordinates": [3.70874018432, 45.1932424816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6eafc33dc7e9198470c2eb6b34546c02cb4ccf1", "fields": {"nom_de_la_commune": "CEYSSAC", "libell_d_acheminement": "CEYSSAC", "code_postal": "43000", "coordonnees_gps": [45.0562801759, 3.86447846564], "code_commune_insee": "43045"}, "geometry": {"type": "Point", "coordinates": [3.86447846564, 45.0562801759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d56eacd4989776e9f426c236645638bd05d5cf", "fields": {"nom_de_la_commune": "CHADRAC", "libell_d_acheminement": "CHADRAC", "code_postal": "43770", "coordonnees_gps": [45.0608353826, 3.9004832835], "code_commune_insee": "43046"}, "geometry": {"type": "Point", "coordinates": [3.9004832835, 45.0608353826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5d99d2b51e57702185dfc7b3b9bcfd3c22d9c09", "fields": {"nom_de_la_commune": "LA CHAPELLE D AUREC", "libell_d_acheminement": "LA CHAPELLE D AUREC", "code_postal": "43120", "coordonnees_gps": [45.2982913973, 4.18798743532], "code_commune_insee": "43058"}, "geometry": {"type": "Point", "coordinates": [4.18798743532, 45.2982913973]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0f7ecffb816a3caebf126f55060daf87759f987", "fields": {"nom_de_la_commune": "LA CHAPELLE GENESTE", "libell_d_acheminement": "LA CHAPELLE GENESTE", "code_postal": "43160", "coordonnees_gps": [45.3021740577, 3.67634903459], "code_commune_insee": "43059"}, "geometry": {"type": "Point", "coordinates": [3.67634903459, 45.3021740577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b91e12f327c028c8f430b86fecee6ab88dace9a8", "fields": {"nom_de_la_commune": "CHASPUZAC", "libell_d_acheminement": "CHASPUZAC", "code_postal": "43320", "coordonnees_gps": [45.0730523495, 3.72818523635], "code_commune_insee": "43062"}, "geometry": {"type": "Point", "coordinates": [3.72818523635, 45.0730523495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb180641ee6cd48c787cd5be8c9cc3067835e121", "fields": {"nom_de_la_commune": "CHILHAC", "libell_d_acheminement": "CHILHAC", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43070"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2c7f81c6454768e5bce0b4e9e455a4bd96851c7", "fields": {"nom_de_la_commune": "LES ESTABLES", "libell_d_acheminement": "LES ESTABLES", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43091"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65d17366425e20eb93af257be17d084829a8e3b9", "fields": {"nom_de_la_commune": "FRUGIERES LE PIN", "libell_d_acheminement": "FRUGIERES LE PIN", "code_postal": "43230", "coordonnees_gps": [45.2101623338, 3.55258468733], "code_commune_insee": "43100"}, "geometry": {"type": "Point", "coordinates": [3.55258468733, 45.2101623338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eebb007891da6e15c31b2a09ae323e7a34316be", "fields": {"nom_de_la_commune": "GRAZAC", "libell_d_acheminement": "GRAZAC", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43102"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8511b27d6eb7e03a90a11b3c84c911c147ed2879", "fields": {"nom_de_la_commune": "LAFARRE", "libell_d_acheminement": "LAFARRE", "code_postal": "43490", "coordonnees_gps": [44.856451175, 3.93428361287], "code_commune_insee": "43109"}, "geometry": {"type": "Point", "coordinates": [3.93428361287, 44.856451175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8189ea7c7abf72ee5afac629c2771fc1c25163a9", "fields": {"nom_de_la_commune": "LANDOS", "libell_d_acheminement": "LANDOS", "code_postal": "43340", "coordonnees_gps": [44.842698307, 3.79076623546], "code_commune_insee": "43111"}, "geometry": {"type": "Point", "coordinates": [3.79076623546, 44.842698307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c2742afb822207221b13d6c355fc10a6d2b95d0", "fields": {"nom_de_la_commune": "LAPTE", "libell_d_acheminement": "LAPTE", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43114"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4390290ca8454325e9f028f1a2a1e9e5cc42f1ef", "fields": {"nom_de_la_commune": "LAVOUTE CHILHAC", "libell_d_acheminement": "LAVOUTE CHILHAC", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43118"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79a16a5fcb8bf01fd9b95c708a6e8c6bb2129177", "fields": {"code_postal": "43300", "code_commune_insee": "43132", "libell_d_acheminement": "MAZEYRAT D ALLIER", "ligne_5": "REILHAC", "nom_de_la_commune": "MAZEYRAT D ALLIER", "coordonnees_gps": [45.0667197349, 3.4902019392]}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c485f25e57bc8827ec1bbecb81334a48e4587c1", "fields": {"nom_de_la_commune": "LE MONASTIER SUR GAZEILLE", "libell_d_acheminement": "LE MONASTIER SUR GAZEILLE", "code_postal": "43150", "coordonnees_gps": [44.9168291354, 4.03393606407], "code_commune_insee": "43135"}, "geometry": {"type": "Point", "coordinates": [4.03393606407, 44.9168291354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "013335c12b3dc2b8a363b9647eed9b7cd4f31a86", "fields": {"nom_de_la_commune": "MONLET", "libell_d_acheminement": "MONLET", "code_postal": "43270", "coordonnees_gps": [45.1932424816, 3.70874018432], "code_commune_insee": "43138"}, "geometry": {"type": "Point", "coordinates": [3.70874018432, 45.1932424816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df9330845905ff79c0e6cecccee1fd955f3be9d", "fields": {"nom_de_la_commune": "PAULHAC", "libell_d_acheminement": "PAULHAC", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43147"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb77244841aed3f75056cca5b20672b9b2d2b75", "fields": {"nom_de_la_commune": "LE PERTUIS", "libell_d_acheminement": "LE PERTUIS", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43150"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "608d0eb53b17ff4b67c00d1282cc734b36189c10", "fields": {"nom_de_la_commune": "PRADES", "libell_d_acheminement": "PRADES", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43155"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ef8a619f701d37bd039b493aaec695a8e473d17", "fields": {"nom_de_la_commune": "QUEYRIERES", "libell_d_acheminement": "QUEYRIERES", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43158"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20710d69ce7992f796ac1b4fd13bce2803d4b2fd", "fields": {"nom_de_la_commune": "ST ANDRE DE CHALENCON", "libell_d_acheminement": "ST ANDRE DE CHALENCON", "code_postal": "43130", "coordonnees_gps": [45.2367556015, 4.006325814], "code_commune_insee": "43166"}, "geometry": {"type": "Point", "coordinates": [4.006325814, 45.2367556015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "667cf58bf1a47dff51e7c850835baa623700d694", "fields": {"nom_de_la_commune": "ST ARCONS D ALLIER", "libell_d_acheminement": "ST ARCONS D ALLIER", "code_postal": "43300", "coordonnees_gps": [45.0667197349, 3.4902019392], "code_commune_insee": "43167"}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6968522d70b2a09dee4b43123fba977aabecdf05", "fields": {"nom_de_la_commune": "ST AUSTREMOINE", "libell_d_acheminement": "ST AUSTREMOINE", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43169"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da54dc9f4cef14386ec36fe932f2677520f90c90", "fields": {"nom_de_la_commune": "ST BEAUZIRE", "libell_d_acheminement": "ST BEAUZIRE", "code_postal": "43100", "coordonnees_gps": [45.2692566544, 3.36500382521], "code_commune_insee": "43170"}, "geometry": {"type": "Point", "coordinates": [3.36500382521, 45.2692566544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73ecdc7c04c0d98a9e68fefc70e7e9e40b3f409", "fields": {"nom_de_la_commune": "CHELUN", "libell_d_acheminement": "CHELUN", "code_postal": "35640", "coordonnees_gps": [47.832577574, -1.30525929111], "code_commune_insee": "35077"}, "geometry": {"type": "Point", "coordinates": [-1.30525929111, 47.832577574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f4da60e88fa9963a5274a45f00092f69db4bec", "fields": {"nom_de_la_commune": "CHEVAIGNE", "libell_d_acheminement": "CHEVAIGNE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35079"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b33f39974f4913a88b1a17a13519b06a3d87cd", "fields": {"nom_de_la_commune": "COESMES", "libell_d_acheminement": "COESMES", "code_postal": "35134", "coordonnees_gps": [47.8649465156, -1.44024199912], "code_commune_insee": "35082"}, "geometry": {"type": "Point", "coordinates": [-1.44024199912, 47.8649465156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9be45c63fa7551a89438b3f397231253673aba86", "fields": {"nom_de_la_commune": "DINARD", "libell_d_acheminement": "DINARD", "code_postal": "35800", "coordonnees_gps": [48.6199242257, -2.09542699517], "code_commune_insee": "35093"}, "geometry": {"type": "Point", "coordinates": [-2.09542699517, 48.6199242257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f3ba499dd8b87faa89e54494c6aa0adc907b959", "fields": {"nom_de_la_commune": "DROUGES", "libell_d_acheminement": "DROUGES", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35102"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdfd70aaf1c231e07b405d94f73613c783a1efda", "fields": {"nom_de_la_commune": "ERBREE", "libell_d_acheminement": "ERBREE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35105"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d4132a1b58e022824e046064c8dd2624edfbc8", "fields": {"nom_de_la_commune": "ESSE", "libell_d_acheminement": "ESSE", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35108"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "542f99871993c3c6cfe96fba898ab7b6db162064", "fields": {"nom_de_la_commune": "LA FONTENELLE", "libell_d_acheminement": "LA FONTENELLE", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35113"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48c70c48055bc59dad1f102b30b2abb57c4321dc", "fields": {"nom_de_la_commune": "LA FRESNAIS", "libell_d_acheminement": "LA FRESNAIS", "code_postal": "35111", "coordonnees_gps": [48.5841192028, -1.83987270474], "code_commune_insee": "35116"}, "geometry": {"type": "Point", "coordinates": [-1.83987270474, 48.5841192028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48407c1b563f4126e839ec7557866dc41c3cd79", "fields": {"nom_de_la_commune": "LA GUERCHE DE BRETAGNE", "libell_d_acheminement": "LA GUERCHE DE BRETAGNE", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35125"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bbee87671716e9122b6850949b127ed7479bb2d", "fields": {"code_postal": "35120", "code_commune_insee": "35132", "libell_d_acheminement": "HIREL", "ligne_5": "VILDE LA MARINE", "nom_de_la_commune": "HIREL", "coordonnees_gps": [48.5420685848, -1.71947746678]}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b46c48eff1743c4c944f782906089f4770b7423", "fields": {"nom_de_la_commune": "LES IFFS", "libell_d_acheminement": "LES IFFS", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35134"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f5eaef18cf58348ca6a9e7aa2537cec2c20346", "fields": {"nom_de_la_commune": "JANZE", "libell_d_acheminement": "JANZE", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35136"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad1778dac66311d7e92ecb6e34cae62722759250", "fields": {"nom_de_la_commune": "LALLEU", "libell_d_acheminement": "LALLEU", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35140"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c776c4f9b9d5e7a51a89e83404aeab514441083", "fields": {"nom_de_la_commune": "LANGAN", "libell_d_acheminement": "LANGAN", "code_postal": "35850", "coordonnees_gps": [48.2249209949, -1.86776064457], "code_commune_insee": "35144"}, "geometry": {"type": "Point", "coordinates": [-1.86776064457, 48.2249209949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2db461fef0b9546da4f51645584b9a148327258", "fields": {"nom_de_la_commune": "LANGON", "libell_d_acheminement": "LANGON", "code_postal": "35660", "coordonnees_gps": [47.7238939745, -1.91661002252], "code_commune_insee": "35145"}, "geometry": {"type": "Point", "coordinates": [-1.91661002252, 47.7238939745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70babab9285f7272a0d027cecb0b00e1b3132d59", "fields": {"nom_de_la_commune": "LANHELIN", "libell_d_acheminement": "LANHELIN", "code_postal": "35720", "coordonnees_gps": [48.4351031296, -1.88770006407], "code_commune_insee": "35147"}, "geometry": {"type": "Point", "coordinates": [-1.88770006407, 48.4351031296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "741678b65bb552f0f5cb2de493c3a84cbf75693d", "fields": {"nom_de_la_commune": "LANRIGAN", "libell_d_acheminement": "LANRIGAN", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35148"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93c4fca1f05b299a7cccca19bffcbca24ce0c4a3", "fields": {"nom_de_la_commune": "LONGAULNAY", "libell_d_acheminement": "LONGAULNAY", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35156"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c157a9c8132346d2d3ca187b6f96e8f7e1e3f916", "fields": {"nom_de_la_commune": "LOURMAIS", "libell_d_acheminement": "LOURMAIS", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35159"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541010a3018c59b63c4ffd9526327f8faf86b457", "fields": {"nom_de_la_commune": "MEILLAC", "libell_d_acheminement": "MEILLAC", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35172"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f9034d11e6cfcb887fb6865c649e513113c6f6", "fields": {"nom_de_la_commune": "MEZIERES SUR COUESNON", "libell_d_acheminement": "MEZIERES SUR COUESNON", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35178"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc3b445c98e38a73f2b444cffd843e580a5a9205", "fields": {"nom_de_la_commune": "MINIAC SOUS BECHEREL", "libell_d_acheminement": "MINIAC SOUS BECHEREL", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35180"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b26fc9c73ee196020a7dfe6c95997094ee79e1", "fields": {"nom_de_la_commune": "LE MINIHIC SUR RANCE", "libell_d_acheminement": "LE MINIHIC SUR RANCE", "code_postal": "35870", "coordonnees_gps": [48.5758952498, -2.01288721642], "code_commune_insee": "35181"}, "geometry": {"type": "Point", "coordinates": [-2.01288721642, 48.5758952498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f26a44994650a78fb4fd652879ad2c68211ee407", "fields": {"nom_de_la_commune": "MONT DOL", "libell_d_acheminement": "MONT DOL", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35186"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ba39706511548e38e99f882eb65bbac77f5a53", "fields": {"nom_de_la_commune": "MONTERFIL", "libell_d_acheminement": "MONTERFIL", "code_postal": "35160", "coordonnees_gps": [48.0975671546, -1.94600681697], "code_commune_insee": "35187"}, "geometry": {"type": "Point", "coordinates": [-1.94600681697, 48.0975671546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348bf1c0961fa0ef66ac35b2516f8e9263e5cccc", "fields": {"nom_de_la_commune": "MONTREUIL SUR ILLE", "libell_d_acheminement": "MONTREUIL SUR ILLE", "code_postal": "35440", "coordonnees_gps": [48.3260797926, -1.69262805003], "code_commune_insee": "35195"}, "geometry": {"type": "Point", "coordinates": [-1.69262805003, 48.3260797926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce819f76daa209196c355b27fce643eb81b19b1", "fields": {"nom_de_la_commune": "MOULINS", "libell_d_acheminement": "MOULINS", "code_postal": "35680", "coordonnees_gps": [48.0164142152, -1.29664262346], "code_commune_insee": "35198"}, "geometry": {"type": "Point", "coordinates": [-1.29664262346, 48.0164142152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e04e6465e38481222967fd00dc03186c88ce2e82", "fields": {"nom_de_la_commune": "MOUSSE", "libell_d_acheminement": "MOUSSE", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35199"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e124bd7129198b7d604922cf4f0fb50132f20cf", "fields": {"nom_de_la_commune": "LA NOE BLANCHE", "libell_d_acheminement": "LA NOE BLANCHE", "code_postal": "35470", "coordonnees_gps": [47.8366270433, -1.70588612819], "code_commune_insee": "35202"}, "geometry": {"type": "Point", "coordinates": [-1.70588612819, 47.8366270433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aaaad27e8b18934c6298cba1fd6504eb01e003c", "fields": {"nom_de_la_commune": "ORGERES", "libell_d_acheminement": "ORGERES", "code_postal": "35230", "coordonnees_gps": [48.0164430154, -1.6442206032], "code_commune_insee": "35208"}, "geometry": {"type": "Point", "coordinates": [-1.6442206032, 48.0164430154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b8d5c26d957179dedcf3ffb35fd97ac4076495", "fields": {"nom_de_la_commune": "PLECHATEL", "libell_d_acheminement": "PLECHATEL", "code_postal": "35470", "coordonnees_gps": [47.8366270433, -1.70588612819], "code_commune_insee": "35221"}, "geometry": {"type": "Point", "coordinates": [-1.70588612819, 47.8366270433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df3fc2e052f42da29c7c3a80828aaa79c4812e6d", "fields": {"nom_de_la_commune": "PRINCE", "libell_d_acheminement": "PRINCE", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35232"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb77a04492a9319c37e9ba334efcf6679722d646", "fields": {"nom_de_la_commune": "RENAC", "libell_d_acheminement": "RENAC", "code_postal": "35660", "coordonnees_gps": [47.7238939745, -1.91661002252], "code_commune_insee": "35237"}, "geometry": {"type": "Point", "coordinates": [-1.91661002252, 47.7238939745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efba25f76b1f3a8785ab995a2f290221a13cc7b8", "fields": {"nom_de_la_commune": "RENNES", "libell_d_acheminement": "RENNES", "code_postal": "35200", "coordonnees_gps": [48.1116364246, -1.6816378334], "code_commune_insee": "35238"}, "geometry": {"type": "Point", "coordinates": [-1.6816378334, 48.1116364246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e1735475e7c8d751a7029b956c7f3eb3c87e900", "fields": {"code_postal": "35650", "code_commune_insee": "35240", "libell_d_acheminement": "LE RHEU", "ligne_5": "MOIGNE", "nom_de_la_commune": "LE RHEU", "coordonnees_gps": [48.0975609665, -1.78120048308]}, "geometry": {"type": "Point", "coordinates": [-1.78120048308, 48.0975609665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37d05361b245cecd2c37936efae24e49b208614e", "fields": {"nom_de_la_commune": "ROMILLE", "libell_d_acheminement": "ROMILLE", "code_postal": "35850", "coordonnees_gps": [48.2249209949, -1.86776064457], "code_commune_insee": "35245"}, "geometry": {"type": "Point", "coordinates": [-1.86776064457, 48.2249209949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d39900151914c07dc6182232b6c8632dd52174", "fields": {"nom_de_la_commune": "ST BRICE EN COGLES", "libell_d_acheminement": "ST BRICE EN COGLES", "code_postal": "35460", "coordonnees_gps": [48.4182189564, -1.388463014], "code_commune_insee": "35257"}, "geometry": {"type": "Point", "coordinates": [-1.388463014, 48.4182189564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9080e2b91f6e7a52876ff5cffa7420d807712bbc", "fields": {"nom_de_la_commune": "ST DIDIER", "libell_d_acheminement": "ST DIDIER", "code_postal": "35220", "coordonnees_gps": [48.1189448859, -1.37446219817], "code_commune_insee": "35264"}, "geometry": {"type": "Point", "coordinates": [-1.37446219817, 48.1189448859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28b5ad8884990449bdc82a38ba981146ada0c09c", "fields": {"nom_de_la_commune": "ST GEORGES DE CHESNE", "libell_d_acheminement": "ST GEORGES DE CHESNE", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35269"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa449bbc7a19d9f106171071b86f12543cd9ca7", "fields": {"nom_de_la_commune": "ST JEAN SUR VILAINE", "libell_d_acheminement": "ST JEAN SUR VILAINE", "code_postal": "35220", "coordonnees_gps": [48.1189448859, -1.37446219817], "code_commune_insee": "35283"}, "geometry": {"type": "Point", "coordinates": [-1.37446219817, 48.1189448859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f03319102c0b3a08c6e6395c304b48c8cc0997b2", "fields": {"nom_de_la_commune": "ST JOUAN DES GUERETS", "libell_d_acheminement": "ST JOUAN DES GUERETS", "code_postal": "35430", "coordonnees_gps": [48.5817595804, -1.93661188618], "code_commune_insee": "35284"}, "geometry": {"type": "Point", "coordinates": [-1.93661188618, 48.5817595804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7563dd4f5149eca200503800210cca0ba52bbd2", "fields": {"nom_de_la_commune": "ST LUNAIRE", "libell_d_acheminement": "ST LUNAIRE", "code_postal": "35800", "coordonnees_gps": [48.6199242257, -2.09542699517], "code_commune_insee": "35287"}, "geometry": {"type": "Point", "coordinates": [-2.09542699517, 48.6199242257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93fab9bb63644b60b4d5a4a5bd3dbaac7020a6e1", "fields": {"nom_de_la_commune": "ST PERAN", "libell_d_acheminement": "ST PERAN", "code_postal": "35380", "coordonnees_gps": [48.0149966641, -2.10718157509], "code_commune_insee": "35305"}, "geometry": {"type": "Point", "coordinates": [-2.10718157509, 48.0149966641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfb59529d8066ed9069487dd9c7f5d1750fcdbac", "fields": {"nom_de_la_commune": "ST PERN", "libell_d_acheminement": "ST PERN", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35307"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5948331ced19cb92bf0961d48d452feeb21ccf1c", "fields": {"nom_de_la_commune": "LA SELLE EN LUITRE", "libell_d_acheminement": "LA SELLE EN LUITRE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35324"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eef24b9185b09c318ac96eeed88307525b64f4ec", "fields": {"nom_de_la_commune": "LA SELLE GUERCHAISE", "libell_d_acheminement": "LA SELLE GUERCHAISE", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35325"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e37d00fcf141548049f8e8f98cf8afb9aaea8f", "fields": {"nom_de_la_commune": "SENS DE BRETAGNE", "libell_d_acheminement": "SENS DE BRETAGNE", "code_postal": "35490", "coordonnees_gps": [48.3344573886, -1.51403943231], "code_commune_insee": "35326"}, "geometry": {"type": "Point", "coordinates": [-1.51403943231, 48.3344573886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17fc735625206a1bd932b1cc0579d89412ae5258", "fields": {"nom_de_la_commune": "SOUGEAL", "libell_d_acheminement": "SOUGEAL", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35329"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61d6a1248b79453f8785afbc313e50c3906864be", "fields": {"nom_de_la_commune": "TREFFENDEL", "libell_d_acheminement": "TREFFENDEL", "code_postal": "35380", "coordonnees_gps": [48.0149966641, -2.10718157509], "code_commune_insee": "35340"}, "geometry": {"type": "Point", "coordinates": [-2.10718157509, 48.0149966641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bdd8545a72de8abecbf20444d961f0a3ca3bca9", "fields": {"nom_de_la_commune": "VENDEL", "libell_d_acheminement": "VENDEL", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35348"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1ed4db4b71e771234352c77ff93ef7fa316e0d1", "fields": {"nom_de_la_commune": "VERGEAL", "libell_d_acheminement": "VERGEAL", "code_postal": "35680", "coordonnees_gps": [48.0164142152, -1.29664262346], "code_commune_insee": "35350"}, "geometry": {"type": "Point", "coordinates": [-1.29664262346, 48.0164142152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c7ad4a90147c2062cf8a8a855fd096f2e8c1a2f", "fields": {"nom_de_la_commune": "ANJOUIN", "libell_d_acheminement": "ANJOUIN", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36004"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dfb724d366584776cb91f1311eed1fa1954eb62", "fields": {"nom_de_la_commune": "ARGY", "libell_d_acheminement": "ARGY", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36007"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcf37295db74e7d3f55240ea748d8c5bb0807f64", "fields": {"nom_de_la_commune": "BOMMIERS", "libell_d_acheminement": "BOMMIERS", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36019"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603477beb5a9e623934c0cd788491ada6369f879", "fields": {"nom_de_la_commune": "LA BUXERETTE", "libell_d_acheminement": "LA BUXERETTE", "code_postal": "36140", "coordonnees_gps": [46.4665714493, 1.83368688617], "code_commune_insee": "36028"}, "geometry": {"type": "Point", "coordinates": [1.83368688617, 46.4665714493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb07efeef51490569fc8f52423bc0aaee83c5f7", "fields": {"nom_de_la_commune": "CELON", "libell_d_acheminement": "CELON", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36033"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7b388733e9f52cd1e157cb5674ed2bf15755083", "fields": {"nom_de_la_commune": "CHABRIS", "libell_d_acheminement": "CHABRIS", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36034"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bdf021114439fd47004417fc5bd601e11ef345d", "fields": {"nom_de_la_commune": "LA CHAPELLE ORTHEMALE", "libell_d_acheminement": "LA CHAPELLE ORTHEMALE", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36040"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdd2e01f22a82f483dabce04d9b4a196f46d9ff6", "fields": {"nom_de_la_commune": "CHATEAUROUX", "libell_d_acheminement": "CHATEAUROUX", "code_postal": "36000", "coordonnees_gps": [46.8030703045, 1.69384402945], "code_commune_insee": "36044"}, "geometry": {"type": "Point", "coordinates": [1.69384402945, 46.8030703045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abfd69c6aa796a8f3a32f3e6a400dc2dd54f8867", "fields": {"nom_de_la_commune": "CHAVIN", "libell_d_acheminement": "CHAVIN", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36048"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c4fad058656449fee039894f20cd65f318da40", "fields": {"code_postal": "36300", "code_commune_insee": "36053", "libell_d_acheminement": "CIRON", "ligne_5": "SCOURY", "nom_de_la_commune": "CIRON", "coordonnees_gps": [46.6565173034, 1.1363634764]}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b68c3188895cb106a4efa0a30c308ea2d374e8", "fields": {"nom_de_la_commune": "CUZION", "libell_d_acheminement": "CUZION", "code_postal": "36190", "coordonnees_gps": [46.4729615786, 1.65897045592], "code_commune_insee": "36062"}, "geometry": {"type": "Point", "coordinates": [1.65897045592, 46.4729615786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cbaecf132e3a6c42054c236695ff1a928439852", "fields": {"nom_de_la_commune": "DEOLS", "libell_d_acheminement": "DEOLS", "code_postal": "36130", "coordonnees_gps": [46.8562455965, 1.75263865537], "code_commune_insee": "36063"}, "geometry": {"type": "Point", "coordinates": [1.75263865537, 46.8562455965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f59216630271d4d434cb9daa79c89ea5070421fd", "fields": {"nom_de_la_commune": "FOUGEROLLES", "libell_d_acheminement": "FOUGEROLLES", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36078"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acebe46748fc7f079fe28a32dd84975e8e67e319", "fields": {"nom_de_la_commune": "FRANCILLON", "libell_d_acheminement": "FRANCILLON", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36079"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72f691b0ffe2fda4500c6bf4216b6a2702c3fd9b", "fields": {"nom_de_la_commune": "FREDILLE", "libell_d_acheminement": "FREDILLE", "code_postal": "36180", "coordonnees_gps": [47.01148929, 1.41025324339], "code_commune_insee": "36080"}, "geometry": {"type": "Point", "coordinates": [1.41025324339, 47.01148929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5db75372ff2199273c9a75885337aae0754c2456", "fields": {"nom_de_la_commune": "ISSOUDUN", "libell_d_acheminement": "ISSOUDUN", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36088"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72bf29fd7fb62d9a3eb8f605a5649ff9534de617", "fields": {"nom_de_la_commune": "LACS", "libell_d_acheminement": "LACS", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36091"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f3582c060ffc087f5b5864722d33411e0cf06c", "fields": {"nom_de_la_commune": "LEVROUX", "libell_d_acheminement": "LEVROUX", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36093"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6bc3a899aea99701abcc347df9320a87c0fb7d9", "fields": {"code_postal": "36110", "code_commune_insee": "36093", "libell_d_acheminement": "LEVROUX", "ligne_5": "ST MARTIN DE LAMPS", "nom_de_la_commune": "LEVROUX", "coordonnees_gps": [46.9845451147, 1.63646999147]}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13269e69b741b4fca9d0cfc84113c499e4134c5", "fields": {"nom_de_la_commune": "LUCAY LE MALE", "libell_d_acheminement": "LUCAY LE MALE", "code_postal": "36360", "coordonnees_gps": [47.137029518, 1.41123831497], "code_commune_insee": "36103"}, "geometry": {"type": "Point", "coordinates": [1.41123831497, 47.137029518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c613654cf6083184bc4447fc371a145fe2c5c9fe", "fields": {"nom_de_la_commune": "MARTIZAY", "libell_d_acheminement": "MARTIZAY", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36113"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e79ba7b59de3d56bef139b080172105a8d2d5ed6", "fields": {"nom_de_la_commune": "MAUVIERES", "libell_d_acheminement": "MAUVIERES", "code_postal": "36370", "coordonnees_gps": [46.5287208025, 1.19590340151], "code_commune_insee": "36114"}, "geometry": {"type": "Point", "coordinates": [1.19590340151, 46.5287208025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6bcec76836304002aff587f8db13e129f2378a3", "fields": {"nom_de_la_commune": "MERS SUR INDRE", "libell_d_acheminement": "MERS SUR INDRE", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36120"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef108c72ba0e8cffd81595c78fe01ba3ca0c7f88", "fields": {"nom_de_la_commune": "LA MOTTE FEUILLY", "libell_d_acheminement": "LA MOTTE FEUILLY", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36132"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6afa9b7fa02fec1b0032c6cbddc51ccb814127", "fields": {"nom_de_la_commune": "MOUHERS", "libell_d_acheminement": "MOUHERS", "code_postal": "36340", "coordonnees_gps": [46.5585963926, 1.71639190639], "code_commune_insee": "36133"}, "geometry": {"type": "Point", "coordinates": [1.71639190639, 46.5585963926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88376b80926a816d318ac8bf07a7501f9fa60386", "fields": {"nom_de_la_commune": "NEONS SUR CREUSE", "libell_d_acheminement": "NEONS SUR CREUSE", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36137"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c792b41f71329af826763178faaccfdbc67ec89", "fields": {"nom_de_la_commune": "NOHANT VIC", "libell_d_acheminement": "NOHANT VIC", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36143"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e2fc0a6e7660ebb13cc52f0f13f4a6ec000ebc", "fields": {"nom_de_la_commune": "ORSENNES", "libell_d_acheminement": "ORSENNES", "code_postal": "36190", "coordonnees_gps": [46.4729615786, 1.65897045592], "code_commune_insee": "36146"}, "geometry": {"type": "Point", "coordinates": [1.65897045592, 46.4729615786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c896ef3ac6fa3f095d472acfa5014f4ef40138", "fields": {"nom_de_la_commune": "OULCHES", "libell_d_acheminement": "OULCHES", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36148"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaa623063ada5f9de9318bc584a1eb2819080a74", "fields": {"nom_de_la_commune": "LE POINCONNET", "libell_d_acheminement": "LE POINCONNET", "code_postal": "36330", "coordonnees_gps": [46.7140693988, 1.6861822855], "code_commune_insee": "36159"}, "geometry": {"type": "Point", "coordinates": [1.6861822855, 46.7140693988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f4918b476ce3bd47dfd4bdb19eb7d06e123749", "fields": {"nom_de_la_commune": "PRISSAC", "libell_d_acheminement": "PRISSAC", "code_postal": "36370", "coordonnees_gps": [46.5287208025, 1.19590340151], "code_commune_insee": "36168"}, "geometry": {"type": "Point", "coordinates": [1.19590340151, 46.5287208025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0214998716ed8abed093a54f0bc8c783b8466675", "fields": {"nom_de_la_commune": "ROSNAY", "libell_d_acheminement": "ROSNAY", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36173"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c319a8f435a61608dde6c8c4a79535d092433acc", "fields": {"nom_de_la_commune": "ROUSSINES", "libell_d_acheminement": "ROUSSINES", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36174"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bffbbcfc69821ca2ca84268bceb9a491bdac8f6", "fields": {"nom_de_la_commune": "ST BENOIT DU SAULT", "libell_d_acheminement": "ST BENOIT DU SAULT", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36182"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0017be819b2840e9bc2bca7347448fb171a3545d", "fields": {"nom_de_la_commune": "ST CHRISTOPHE EN BAZELLE", "libell_d_acheminement": "ST CHRISTOPHE EN BAZELLE", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36185"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896a66bb0ca502535841ea913a2baad49078de2f", "fields": {"nom_de_la_commune": "ST CHRISTOPHE EN BOUCHERIE", "libell_d_acheminement": "ST CHRISTOPHE EN BOUCHERIE", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36186"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a7fe5a826c5cae5c07a66880da9a17e62d56af", "fields": {"nom_de_la_commune": "ST CYRAN DU JAMBOT", "libell_d_acheminement": "ST CYRAN DU JAMBOT", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36188"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6edaae67dcc1e944ae83431158997a0a9fa16f9e", "fields": {"nom_de_la_commune": "STE FAUSTE", "libell_d_acheminement": "STE FAUSTE", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36190"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b46134538b3a3adfa57252f3d779be31838b2160", "fields": {"nom_de_la_commune": "ST GEORGES SUR ARNON", "libell_d_acheminement": "ST GEORGES SUR ARNON", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36195"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "491db87b713fddc38925b58e28f3beb8e5cf2afa", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36203"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "926824148e174a25ea6d40cd3c686a884f794a61", "fields": {"nom_de_la_commune": "ST PIERRE DE LAMPS", "libell_d_acheminement": "ST PIERRE DE LAMPS", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36206"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17e093cc7807ab8d86705420282c8978a55e9842", "fields": {"nom_de_la_commune": "ST VALENTIN", "libell_d_acheminement": "ST VALENTIN", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36209"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13caafb43e3530700b43ac876e41255c69b2d43c", "fields": {"nom_de_la_commune": "SEMBLECAY", "libell_d_acheminement": "SEMBLECAY", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36217"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62c4a82e735b81ba5510b5d6741ea5a43142a5c9", "fields": {"nom_de_la_commune": "TENDU", "libell_d_acheminement": "TENDU", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36219"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b916d4fa07347793f2d5ca77855f6804cdfe7c", "fields": {"nom_de_la_commune": "THEVET ST JULIEN", "libell_d_acheminement": "THEVET ST JULIEN", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36221"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04bee817a7cdb6142db5a04d8280086bc1b80502", "fields": {"nom_de_la_commune": "TOURNON ST MARTIN", "libell_d_acheminement": "TOURNON ST MARTIN", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36224"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9fd6736db338c92656b741354fd48588c6ad26", "fields": {"nom_de_la_commune": "VENDOEUVRES", "libell_d_acheminement": "VENDOEUVRES", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36232"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c6ca9f3db3c3b663a4b2b02466bfdeb3435ec3", "fields": {"nom_de_la_commune": "LA VERNELLE", "libell_d_acheminement": "LA VERNELLE", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36233"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d7f61780c03c6c6949f5fd871f4aa0feb8020c1", "fields": {"nom_de_la_commune": "HEROUVILLETTE", "libell_d_acheminement": "HEROUVILLETTE", "code_postal": "14850", "coordonnees_gps": [49.2097767662, -0.25242248179], "code_commune_insee": "14328"}, "geometry": {"type": "Point", "coordinates": [-0.25242248179, 49.2097767662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da6e0bb15fddf6c11d0e79cac0911fddf6db89a", "fields": {"nom_de_la_commune": "HEULAND", "libell_d_acheminement": "HEULAND", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14329"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d794b51d33a948ac8a61c287be16c477a692593f", "fields": {"nom_de_la_commune": "LA HOGUETTE", "libell_d_acheminement": "LA HOGUETTE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14332"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e637c11a3889117644b0ee5db8754cdc2576ad0e", "fields": {"nom_de_la_commune": "HOULGATE", "libell_d_acheminement": "HOULGATE", "code_postal": "14510", "coordonnees_gps": [49.291418226, -0.0438772429905], "code_commune_insee": "14338"}, "geometry": {"type": "Point", "coordinates": [-0.0438772429905, 49.291418226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad3763e3eed95704409857d7d9b9f1e95cceec8", "fields": {"nom_de_la_commune": "IFS", "libell_d_acheminement": "IFS", "code_postal": "14123", "coordonnees_gps": [49.1447730282, -0.352071699287], "code_commune_insee": "14341"}, "geometry": {"type": "Point", "coordinates": [-0.352071699287, 49.1447730282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "864f7a50f96c538ae66f316f30cfcb16c8dfa925", "fields": {"nom_de_la_commune": "JUAYE MONDAYE", "libell_d_acheminement": "JUAYE MONDAYE", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14346"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2958416de8a96ba2d823ff778b91aee23488d863", "fields": {"nom_de_la_commune": "LANDES SUR AJON", "libell_d_acheminement": "LANDES SUR AJON", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14353"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd870f356a3e3e829a1b3e8e6765399d9456b550", "fields": {"nom_de_la_commune": "LEAUPARTIE", "libell_d_acheminement": "LEAUPARTIE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14358"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "789bcc486530e3978a9d3da400ec525b26f720cf", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "HEURTEVENT", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67cce2e8cf4ffafa564d9d138e6128b0c01502a7", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LA CROUPTE", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e939f972206c250cdb38605c18618f2992129b87", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "ST MARTIN DU MESNIL OURY", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fdd95a854d7c68ae5ed1399cb4f55b237146af6", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "ST MICHEL DE LIVET", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99d8901ade0341af6f1e3dbb68ae3e5749a5b357", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "STE MARGUERITE DES LOGES", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76212b89184136b3708dadff5af3ceafd6cf568d", "fields": {"nom_de_la_commune": "LOUVAGNY", "libell_d_acheminement": "LOUVAGNY", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14381"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c60239ba45c43845a151b169206b96c9a88c62d7", "fields": {"nom_de_la_commune": "LOUVIGNY", "libell_d_acheminement": "LOUVIGNY", "code_postal": "14111", "coordonnees_gps": [49.155534496, -0.397065216787], "code_commune_insee": "14383"}, "geometry": {"type": "Point", "coordinates": [-0.397065216787, 49.155534496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73aa70f40be7bb585fa0cc3989dd2ae0ba03c7b2", "fields": {"nom_de_la_commune": "MAGNY LA CAMPAGNE", "libell_d_acheminement": "MAGNY LA CAMPAGNE", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14386"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a69bb34c221567084d9f3664583374f9aaf0041", "fields": {"nom_de_la_commune": "MAISONS", "libell_d_acheminement": "MAISONS", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14391"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c50e4ef1285efddf6c475d5ec687c33ac0f69b70", "fields": {"nom_de_la_commune": "MALTOT", "libell_d_acheminement": "MALTOT", "code_postal": "14930", "coordonnees_gps": [49.1299717664, -0.432158841819], "code_commune_insee": "14396"}, "geometry": {"type": "Point", "coordinates": [-0.432158841819, 49.1299717664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b05e3e53b75af47bccefb55465294f6abb146f08", "fields": {"nom_de_la_commune": "MANNEVILLE LA PIPARD", "libell_d_acheminement": "MANNEVILLE LA PIPARD", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14399"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dec5af6255cab23a499ddafd1e5e89851006f32", "fields": {"nom_de_la_commune": "MARTIGNY SUR L ANTE", "libell_d_acheminement": "MARTIGNY SUR L ANTE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14405"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1fc4c6a4b7269a0f6a99f5070f006d57b92b83e", "fields": {"nom_de_la_commune": "MATHIEU", "libell_d_acheminement": "MATHIEU", "code_postal": "14920", "coordonnees_gps": [49.2560968807, -0.366356524458], "code_commune_insee": "14407"}, "geometry": {"type": "Point", "coordinates": [-0.366356524458, 49.2560968807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2d16de08dd3666c8c298a1fc1bbe452439a971d", "fields": {"nom_de_la_commune": "LE MESNIL BENOIST", "libell_d_acheminement": "LE MESNIL BENOIST", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14415"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d8381d5030b684486784ceaaeff519e1468f9e", "fields": {"nom_de_la_commune": "LE MESNIL CAUSSOIS", "libell_d_acheminement": "LE MESNIL CAUSSOIS", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14416"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a89119194138de2534a6cb7a933056c005a6717", "fields": {"nom_de_la_commune": "LE MESNIL EUDES", "libell_d_acheminement": "LE MESNIL EUDES", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14419"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efaecfbd1143fcea56219fbfd79a8801f99e5606", "fields": {"nom_de_la_commune": "MITTOIS", "libell_d_acheminement": "MITTOIS", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14433"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14aee8a6cc2841d2abce312b6841870a38764fa1", "fields": {"nom_de_la_commune": "MONDRAINVILLE", "libell_d_acheminement": "MONDRAINVILLE", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14438"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b6831afd90f37bae8500fcd5c29bd5633940e12", "fields": {"nom_de_la_commune": "MONTFIQUET", "libell_d_acheminement": "MONTFIQUET", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14445"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc9945ce5453e9c18b945ff88dbfa687c3233d0f", "fields": {"nom_de_la_commune": "MONTREUIL EN AUGE", "libell_d_acheminement": "MONTREUIL EN AUGE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14448"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe83b7902d8bd83ed8e60f00641b51db2052d46", "fields": {"nom_de_la_commune": "NORREY EN AUGE", "libell_d_acheminement": "NORREY EN AUGE", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14469"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "906b028558dcea9f68b792564acc96b699a9d238", "fields": {"code_postal": "14340", "code_commune_insee": "14474", "libell_d_acheminement": "NOTRE DAME D ESTREES CORBON", "ligne_5": "CORBON", "nom_de_la_commune": "NOTRE DAME D ESTREES CORBON", "coordonnees_gps": [49.1715682628, 0.0767124030123]}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f0871dab1e56c06cc1b84b2c26ba70914eb408", "fields": {"nom_de_la_commune": "OUILLY LE VICOMTE", "libell_d_acheminement": "OUILLY LE VICOMTE", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14487"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7353da9e6b1aae6e8b6d3dd1645b7de801c5a4f", "fields": {"nom_de_la_commune": "OUISTREHAM", "libell_d_acheminement": "OUISTREHAM", "code_postal": "14150", "coordonnees_gps": [49.2749759818, -0.258155881818], "code_commune_insee": "14488"}, "geometry": {"type": "Point", "coordinates": [-0.258155881818, 49.2749759818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3538b5aaf36a3944ee5b5a66b35b1d04d55060", "fields": {"nom_de_la_commune": "PENNEDEPIE", "libell_d_acheminement": "PENNEDEPIE", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14492"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f194c83515a6296322af54330efc9bf3fe9b447a", "fields": {"nom_de_la_commune": "PERCY EN AUGE", "libell_d_acheminement": "PERCY EN AUGE", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14493"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e396dbd7eb1675d837816dc9b66da654ef36f3f2", "fields": {"nom_de_la_commune": "PERIERS SUR LE DAN", "libell_d_acheminement": "PERIERS SUR LE DAN", "code_postal": "14112", "coordonnees_gps": [49.2432109147, -0.336840438637], "code_commune_insee": "14495"}, "geometry": {"type": "Point", "coordinates": [-0.336840438637, 49.2432109147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67952f28f891915a0500ce307d3031ca3f283591", "fields": {"nom_de_la_commune": "PIERREFITTE EN AUGE", "libell_d_acheminement": "PIERREFITTE EN AUGE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14500"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d4b63b811fd3bf1be4ebe8a73b2afc6bb2d1839", "fields": {"nom_de_la_commune": "PIERREFITTE EN CINGLAIS", "libell_d_acheminement": "PIERREFITTE EN CINGLAIS", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14501"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d005e9761c47107fa2be68e1fd25b602149e5a65", "fields": {"nom_de_la_commune": "PLUMETOT", "libell_d_acheminement": "PLUMETOT", "code_postal": "14440", "coordonnees_gps": [49.2888987238, -0.397807379835], "code_commune_insee": "14509"}, "geometry": {"type": "Point", "coordinates": [-0.397807379835, 49.2888987238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92466a0ef41907db51c62d12995ef693bf9094ff", "fields": {"nom_de_la_commune": "PONTECOULANT", "libell_d_acheminement": "PONTECOULANT", "code_postal": "14110", "coordonnees_gps": [48.8603879133, -0.538857121596], "code_commune_insee": "14512"}, "geometry": {"type": "Point", "coordinates": [-0.538857121596, 48.8603879133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4be57c23f35c9c364ce6a73c8623f6b3bba5202", "fields": {"nom_de_la_commune": "POUSSY LA CAMPAGNE", "libell_d_acheminement": "POUSSY LA CAMPAGNE", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14517"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd34272cfaace407a2aa3556fb4f7c2bc795cb8", "fields": {"nom_de_la_commune": "PREAUX BOCAGE", "libell_d_acheminement": "PREAUX BOCAGE", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14519"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ae692e1cb34ac428676f823d6a0bb0a167c43b", "fields": {"nom_de_la_commune": "PUTOT EN AUGE", "libell_d_acheminement": "PUTOT EN AUGE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14524"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04f19b4b64da821cd4f3bc4f4c5f6436166da4c3", "fields": {"nom_de_la_commune": "PUTOT EN BESSIN", "libell_d_acheminement": "PUTOT EN BESSIN", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14525"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c06651452c8617abb8778efd64259fec47a64e", "fields": {"code_postal": "14270", "code_commune_insee": "14527", "libell_d_acheminement": "BIEVILLE QUETIEVILLE", "ligne_5": "BIEVILLE EN AUGE", "nom_de_la_commune": "BIEVILLE QUETIEVILLE", "coordonnees_gps": [49.0749683297, -0.0575716776042]}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "368fceebea0d43bb1504c375acddb78757aef2b6", "fields": {"nom_de_la_commune": "REVIERS", "libell_d_acheminement": "REVIERS", "code_postal": "14470", "coordonnees_gps": [49.3187007817, -0.465940150296], "code_commune_insee": "14535"}, "geometry": {"type": "Point", "coordinates": [-0.465940150296, 49.3187007817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9859fa3789320f08832b8d8857c76bbb8087a9bd", "fields": {"nom_de_la_commune": "ROCQUANCOURT", "libell_d_acheminement": "ROCQUANCOURT", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14538"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed491917d34fb2da99fa9e6c5a853f53e6f9510b", "fields": {"nom_de_la_commune": "LA ROQUE BAIGNARD", "libell_d_acheminement": "LA ROQUE BAIGNARD", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14541"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "428f205acbdde373cae6449434edfad998aa1382", "fields": {"nom_de_la_commune": "ROUVRES", "libell_d_acheminement": "ROUVRES", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14546"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9247e6cd2d706232a79b75d5a7775ba4b4f1e6", "fields": {"nom_de_la_commune": "ST AIGNAN DE CRAMESNIL", "libell_d_acheminement": "ST AIGNAN DE CRAMESNIL", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14554"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a2441891cc69fbc558cfee7a3c3387c3fd3018", "fields": {"code_postal": "14140", "code_commune_insee": "14576", "libell_d_acheminement": "VAL DE VIE", "ligne_5": "STE FOY DE MONTGOMMERY", "nom_de_la_commune": "VAL DE VIE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac500cdebefcf17edad79e87435367e27e8c4cbd", "fields": {"code_postal": "14260", "code_commune_insee": "14579", "libell_d_acheminement": "SEULLINE", "ligne_5": "ST GEORGES D AUNAY", "nom_de_la_commune": "SEULLINE", "coordonnees_gps": [49.0066968594, -0.682033937829]}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8e822a44e3997eb9afdc0c4ea78cbccb857d8aa", "fields": {"code_postal": "14310", "code_commune_insee": "14579", "libell_d_acheminement": "SEULLINE", "ligne_5": "COULVAIN", "nom_de_la_commune": "SEULLINE", "coordonnees_gps": [49.0707040622, -0.648769817397]}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48a274242970c67539ca5fb058d5dd85d7e361f", "fields": {"nom_de_la_commune": "ST GEORGES EN AUGE", "libell_d_acheminement": "ST GEORGES EN AUGE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14580"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94a9f622f43a1a06aafbbc25c8f264cc4b0c8ed", "fields": {"nom_de_la_commune": "ST GERMAIN DU PERT", "libell_d_acheminement": "ST GERMAIN DU PERT", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14586"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57dd8c4a60c78ca704b90120d956139d9be10371", "fields": {"nom_de_la_commune": "ST MANVIEU NORREY", "libell_d_acheminement": "ST MANVIEU NORREY", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14610"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0010169885618fb611a1fa64b1d880017e202e8d", "fields": {"nom_de_la_commune": "STE MARIE OUTRE L EAU", "libell_d_acheminement": "STE MARIE OUTRE L EAU", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14619"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "675ffafabc98c7281e86665f55843dfea7284938", "fields": {"nom_de_la_commune": "ST MARTIN DES ENTREES", "libell_d_acheminement": "ST MARTIN DES ENTREES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14630"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7cef8714c347389f5a655ab66f529bfbbaf9ea3", "fields": {"nom_de_la_commune": "ST OUEN DU MESNIL OGER", "libell_d_acheminement": "ST OUEN DU MESNIL OGER", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14637"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb23500730cdca329660a4c15d4ba0d86769bc1c", "fields": {"nom_de_la_commune": "ST PAUL DU VERNAY", "libell_d_acheminement": "ST PAUL DU VERNAY", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14643"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f06dd8e6296fd12e5ecc2b71984c9623a31c1a8", "fields": {"nom_de_la_commune": "ST PIERRE DU FRESNE", "libell_d_acheminement": "ST PIERRE DU FRESNE", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14650"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49220d37971a40279049bc693db3108e402c35a6", "fields": {"nom_de_la_commune": "ST PIERRE DU JONQUET", "libell_d_acheminement": "ST PIERRE DU JONQUET", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14651"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ceb50e3ea5448432eb5a2b504cfb1d7758ec8a", "fields": {"nom_de_la_commune": "ST VAAST SUR SEULLES", "libell_d_acheminement": "ST VAAST SUR SEULLES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14661"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73b7438903062ff766142643a9a8cf83e620cc5d", "fields": {"nom_de_la_commune": "ST VIGOR LE GRAND", "libell_d_acheminement": "ST VIGOR LE GRAND", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14663"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46dca6b54243693c17ac03b04fd4bc9dad669962", "fields": {"nom_de_la_commune": "SAON", "libell_d_acheminement": "SAON", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14667"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a5031f0a47f4698dc9ebf3a9ee2e0f3da54dc68", "fields": {"nom_de_la_commune": "SASSY", "libell_d_acheminement": "SASSY", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14669"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0710348723164f52a6939efe71f02cc9cc7f25", "fields": {"nom_de_la_commune": "SOUMONT ST QUENTIN", "libell_d_acheminement": "SOUMONT ST QUENTIN", "code_postal": "14420", "coordonnees_gps": [48.9529350407, -0.254216402592], "code_commune_insee": "14678"}, "geometry": {"type": "Point", "coordinates": [-0.254216402592, 48.9529350407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6109af36085a53ae8218b091097ff48fbbc8d273", "fields": {"nom_de_la_commune": "TESSEL", "libell_d_acheminement": "TESSEL", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14684"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167c8fb39ea98f80e488792135bf0877b733e783", "fields": {"nom_de_la_commune": "TILLY LA CAMPAGNE", "libell_d_acheminement": "TILLY LA CAMPAGNE", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14691"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a5701b685cf4084b6d398dbf8f703cde7b6154e", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "AMMEVILLE", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad630385fd8d54b6e6f2d5e0333e81e97f0d36fc", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "NOTRE DAME DE FRESNAY", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4379137a57de6567838830f50198b5c7aea9d5b0", "fields": {"nom_de_la_commune": "TOUQUES", "libell_d_acheminement": "TOUQUES", "code_postal": "14800", "coordonnees_gps": [49.330164101, 0.0981767005903], "code_commune_insee": "14699"}, "geometry": {"type": "Point", "coordinates": [0.0981767005903, 49.330164101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5beeca42b9a57f5ad3c1eb5c3149ab440adf644d", "fields": {"nom_de_la_commune": "TOURNEBU", "libell_d_acheminement": "TOURNEBU", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14703"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c84c0c665d497875bf926b2c6af475d596f30fb0", "fields": {"nom_de_la_commune": "TREPREL", "libell_d_acheminement": "TREPREL", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14710"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aaa8fc000911340b194a8ba749205ad2f549dbc", "fields": {"nom_de_la_commune": "TROIS MONTS", "libell_d_acheminement": "TROIS MONTS", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14713"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3623ee3d08df92be62d02134d9fe2d4ef4de1e03", "fields": {"nom_de_la_commune": "TRUNGY", "libell_d_acheminement": "TRUNGY", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14716"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb4f838be7b38108297e7803fdc0cf2a1735344", "fields": {"code_postal": "14210", "code_commune_insee": "14721", "libell_d_acheminement": "VACOGNES NEUILLY", "ligne_5": "NEUILLY LE MALHERBE", "nom_de_la_commune": "VACOGNES NEUILLY", "coordonnees_gps": [49.1001637748, -0.508327897598]}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73dfccb5f316aa15375da9385db5a0ce9ac3bb2", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "BURCY", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4892ea69c1157e391770029d80047b60f4b8a44", "fields": {"nom_de_la_commune": "VAUCELLES", "libell_d_acheminement": "VAUCELLES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14728"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33ccf16f1df0a89b641eab96ad3f4c03edc498ce", "fields": {"nom_de_la_commune": "VAUX SUR SEULLES", "libell_d_acheminement": "VAUX SUR SEULLES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14733"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a10e80c21df1807758397c7f24b339b50257807", "fields": {"nom_de_la_commune": "VENDEUVRE", "libell_d_acheminement": "VENDEUVRE", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14735"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfc228ce8815448a1d216b587d9233b28d0000b", "fields": {"nom_de_la_commune": "VERSON", "libell_d_acheminement": "VERSON", "code_postal": "14790", "coordonnees_gps": [49.1541386997, -0.466148094743], "code_commune_insee": "14738"}, "geometry": {"type": "Point", "coordinates": [-0.466148094743, 49.1541386997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8629b0d3d4979ede28da8b142ba66a0124fedbf8", "fields": {"nom_de_la_commune": "VICTOT PONTFOL", "libell_d_acheminement": "VICTOT PONTFOL", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14743"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf925b4943732692703a82f98fe3354fd077d41", "fields": {"nom_de_la_commune": "VIENNE EN BESSIN", "libell_d_acheminement": "VIENNE EN BESSIN", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14744"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f9e98b6b3bdf9f47c2df3118070ff55ccc412e7", "fields": {"nom_de_la_commune": "VIGNATS", "libell_d_acheminement": "VIGNATS", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14751"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ea1b23729906f59b7273bc470b14f486c7d95a", "fields": {"nom_de_la_commune": "VILLERS CANIVET", "libell_d_acheminement": "VILLERS CANIVET", "code_postal": "14420", "coordonnees_gps": [48.9529350407, -0.254216402592], "code_commune_insee": "14753"}, "geometry": {"type": "Point", "coordinates": [-0.254216402592, 48.9529350407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1bbc65e8f1af33a5581b7f1c5252bca996b9a7", "fields": {"nom_de_la_commune": "LA VILLETTE", "libell_d_acheminement": "LA VILLETTE", "code_postal": "14570", "coordonnees_gps": [48.9153171843, -0.506427417582], "code_commune_insee": "14756"}, "geometry": {"type": "Point", "coordinates": [-0.506427417582, 48.9153171843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76d3102b51aba49db74752cf6a71c7f844a4b5e", "fields": {"nom_de_la_commune": "VILLY LEZ FALAISE", "libell_d_acheminement": "VILLY LEZ FALAISE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14759"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b21c25e637c3bcea744dcd190cede2d4523fde6e", "fields": {"nom_de_la_commune": "VIMONT", "libell_d_acheminement": "VIMONT", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14761"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "294447609211d151b17f65ad1ee7619d7ec652c4", "fields": {"nom_de_la_commune": "VIRE NORMANDIE", "libell_d_acheminement": "VIRE NORMANDIE", "code_postal": "14500", "coordonnees_gps": [48.8626699859, -0.904614638013], "code_commune_insee": "14762"}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9558136a9f173f9bcd0d52c79a070889230be3a6", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "15270", "coordonnees_gps": [45.4132624224, 2.59541322331], "code_commune_insee": "15020"}, "geometry": {"type": "Point", "coordinates": [2.59541322331, 45.4132624224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05fe1fec2cb6aba00fc79ead50569f360486c1a5", "fields": {"nom_de_la_commune": "BOISSET", "libell_d_acheminement": "BOISSET", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15021"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b0826a016303014ae706afced29cec1468f9577", "fields": {"nom_de_la_commune": "BREZONS", "libell_d_acheminement": "BREZONS", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15026"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8c4087114f30de80e54549c66aad5f33791fc1", "fields": {"nom_de_la_commune": "CAYROLS", "libell_d_acheminement": "CAYROLS", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15030"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1249918a155b8c38441e411bb39d95644b729b61", "fields": {"nom_de_la_commune": "CELOUX", "libell_d_acheminement": "CELOUX", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15032"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f1f85de97c36ca1559bf1ff0b0fc6df886c7ad", "fields": {"nom_de_la_commune": "CHALVIGNAC", "libell_d_acheminement": "CHALVIGNAC", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15036"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0adcda26ccdafec9fe3fb6794e7688652938a47", "fields": {"nom_de_la_commune": "CHAMPS SUR TARENTAINE MARCHAL", "libell_d_acheminement": "CHAMPS SUR TARENTAINE MARCHAL", "code_postal": "15270", "coordonnees_gps": [45.4132624224, 2.59541322331], "code_commune_insee": "15038"}, "geometry": {"type": "Point", "coordinates": [2.59541322331, 45.4132624224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebeb3f8fea214746faf36c0705adfcfd239fde73", "fields": {"nom_de_la_commune": "CHASTEL SUR MURAT", "libell_d_acheminement": "CHASTEL SUR MURAT", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15044"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc87548b93ea742d0a72ace65921f24afc979b5", "fields": {"nom_de_la_commune": "COLLANDRES", "libell_d_acheminement": "COLLANDRES", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15052"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce2223d596e6cb92ddd0ae8553d4da41a06fa13", "fields": {"nom_de_la_commune": "CUSSAC", "libell_d_acheminement": "CUSSAC", "code_postal": "15430", "coordonnees_gps": [45.0110291725, 2.89903675921], "code_commune_insee": "15059"}, "geometry": {"type": "Point", "coordinates": [2.89903675921, 45.0110291725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e431cf055345b4fbc3d333f2082740a12b954b", "fields": {"nom_de_la_commune": "ESPINASSE", "libell_d_acheminement": "ESPINASSE", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15065"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d6ee403dcdd2b812de0bdcc163643f9dda3ef4", "fields": {"nom_de_la_commune": "CIEZ", "libell_d_acheminement": "CIEZ", "code_postal": "58220", "coordonnees_gps": [47.379682807, 3.15630792505], "code_commune_insee": "58077"}, "geometry": {"type": "Point", "coordinates": [3.15630792505, 47.379682807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07eff49bc4db3bd3a78276108b8051ffef829eec", "fields": {"nom_de_la_commune": "CIZELY", "libell_d_acheminement": "CIZELY", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58078"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eb450a9cd5eb8a645d861d0439dc0b0e5162b0c", "fields": {"code_postal": "58500", "code_commune_insee": "58079", "libell_d_acheminement": "CLAMECY", "ligne_5": "MOULOT", "nom_de_la_commune": "CLAMECY", "coordonnees_gps": [47.4641711809, 3.49201148604]}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbdce85dcba687f37ddb56594b4e8a68e51049a6", "fields": {"nom_de_la_commune": "DOMMARTIN", "libell_d_acheminement": "DOMMARTIN", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58099"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8889b6c5c24354d70d739b31da2417efd79a6d07", "fields": {"nom_de_la_commune": "DOMPIERRE SUR NIEVRE", "libell_d_acheminement": "DOMPIERRE SUR NIEVRE", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58101"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cebff628db449716a8ed80ea9280d8dadbb87206", "fields": {"nom_de_la_commune": "DORNECY", "libell_d_acheminement": "DORNECY", "code_postal": "58530", "coordonnees_gps": [47.4363082505, 3.60631182763], "code_commune_insee": "58103"}, "geometry": {"type": "Point", "coordinates": [3.60631182763, 47.4363082505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b90bf296335ef4fc6d4b4eb7bd57272ae2c035ff", "fields": {"nom_de_la_commune": "EPIRY", "libell_d_acheminement": "EPIRY", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58110"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9096ec86425cebe84a6dab32a62938c4d88e2a39", "fields": {"nom_de_la_commune": "GARCHY", "libell_d_acheminement": "GARCHY", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58122"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb93dd91939bb0373cdeadbbb414f48d64246f0a", "fields": {"nom_de_la_commune": "GERMIGNY SUR LOIRE", "libell_d_acheminement": "GERMIGNY SUR LOIRE", "code_postal": "58320", "coordonnees_gps": [47.0887291303, 3.1067226135], "code_commune_insee": "58124"}, "geometry": {"type": "Point", "coordinates": [3.1067226135, 47.0887291303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54c4a1853ce42ebeae712cf054e33d6539c114c1", "fields": {"nom_de_la_commune": "GIMOUILLE", "libell_d_acheminement": "GIMOUILLE", "code_postal": "58470", "coordonnees_gps": [46.9060969897, 3.12154059247], "code_commune_insee": "58126"}, "geometry": {"type": "Point", "coordinates": [3.12154059247, 46.9060969897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8acaab0a01624b4260120069e0112bf2147f7d55", "fields": {"nom_de_la_commune": "GRENOIS", "libell_d_acheminement": "GRENOIS", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58130"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1ec5bdb27670b6fbff6a1c29c6b5a13a607383", "fields": {"nom_de_la_commune": "LAMENAY SUR LOIRE", "libell_d_acheminement": "LAMENAY SUR LOIRE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58137"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d8050bc6ec8b5fd8a1ed948c34cd1fbe2a899e7", "fields": {"nom_de_la_commune": "LAROCHEMILLAY", "libell_d_acheminement": "LAROCHEMILLAY", "code_postal": "58370", "coordonnees_gps": [46.9308516747, 3.9664871714], "code_commune_insee": "58140"}, "geometry": {"type": "Point", "coordinates": [3.9664871714, 46.9308516747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c13c6eeadb9974c4d18ee7df752bf7d001e4e1f", "fields": {"nom_de_la_commune": "LORMES", "libell_d_acheminement": "LORMES", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58145"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c8c25d1edd45c90ea557dc302ec7487d3d63c0f", "fields": {"nom_de_la_commune": "LUTHENAY UXELOUP", "libell_d_acheminement": "LUTHENAY UXELOUP", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58148"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce41f2a30802e4d5883679c6596880849a1f99a7", "fields": {"nom_de_la_commune": "LUZY", "libell_d_acheminement": "LUZY", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58149"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480381c3de63950e6980a5c22e1899f294ab2294", "fields": {"nom_de_la_commune": "MAGNY LORMES", "libell_d_acheminement": "MAGNY LORMES", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58153"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "292cf991658bbc26758f590943ca2d1da79a096b", "fields": {"nom_de_la_commune": "LA MARCHE", "libell_d_acheminement": "LA MARCHE", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58155"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbbd5ede08cec893fcaa11f78a7677b4d3bfa46c", "fields": {"nom_de_la_commune": "MARIGNY L EGLISE", "libell_d_acheminement": "MARIGNY L EGLISE", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58157"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb75b9a20f6aa3e59d30b4be70ccb2fea0b51ad3", "fields": {"nom_de_la_commune": "MARIGNY SUR YONNE", "libell_d_acheminement": "MARIGNY SUR YONNE", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58159"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bf50a8ddb8f1be3318ec33f970e67ba0f7c350c", "fields": {"nom_de_la_commune": "MAUX", "libell_d_acheminement": "MAUX", "code_postal": "58290", "coordonnees_gps": [46.9712229118, 3.77516056611], "code_commune_insee": "58161"}, "geometry": {"type": "Point", "coordinates": [3.77516056611, 46.9712229118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5eeebe70326f6014342513561bd5329e71b46de", "fields": {"nom_de_la_commune": "MONTAMBERT", "libell_d_acheminement": "MONTAMBERT", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58172"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "664f80007a1157c3c5ada530f8f55ab6fa7988fd", "fields": {"nom_de_la_commune": "MONTENOISON", "libell_d_acheminement": "MONTENOISON", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58174"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dc455d685f0b517517ed217afeb3556d3cde13f", "fields": {"nom_de_la_commune": "MONT ET MARRE", "libell_d_acheminement": "MONT ET MARRE", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58175"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a132f06fc09999cb20e77ad0e1f6208430a0f1be", "fields": {"nom_de_la_commune": "MONTIGNY AUX AMOGNES", "libell_d_acheminement": "MONTIGNY AUX AMOGNES", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58176"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44eddadbd2744718e6c4d7a0a9156a1fe0a8bc57", "fields": {"nom_de_la_commune": "MOURON SUR YONNE", "libell_d_acheminement": "MOURON SUR YONNE", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58183"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2c13f2a735c18cee1ae9a8e1491784cbb6cc1e", "fields": {"nom_de_la_commune": "NEUFFONTAINES", "libell_d_acheminement": "NEUFFONTAINES", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58190"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77e86e2cc6e42b8fc7ee1be6fc302cfdd103ff8d", "fields": {"nom_de_la_commune": "NEUVY SUR LOIRE", "libell_d_acheminement": "NEUVY SUR LOIRE", "code_postal": "58450", "coordonnees_gps": [47.5311404118, 2.91887895811], "code_commune_insee": "58193"}, "geometry": {"type": "Point", "coordinates": [2.91887895811, 47.5311404118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63fef2b0c6b6196863534c15a690e5279405da1d", "fields": {"nom_de_la_commune": "NOLAY", "libell_d_acheminement": "NOLAY", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58196"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf85fc4c5f368960422aa61cb71e77318d217682", "fields": {"nom_de_la_commune": "NUARS", "libell_d_acheminement": "NUARS", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58197"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c8990bfad5efca7f5beab8e5640f0944497587a", "fields": {"nom_de_la_commune": "OUROUX EN MORVAN", "libell_d_acheminement": "OUROUX EN MORVAN", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58205"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5527511e92a1b84097ecaf1e593777eff8ab68c7", "fields": {"nom_de_la_commune": "PAZY", "libell_d_acheminement": "PAZY", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58208"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a077eb61b636880d183decd49bffe32289a7927b", "fields": {"nom_de_la_commune": "PERROY", "libell_d_acheminement": "PERROY", "code_postal": "58220", "coordonnees_gps": [47.379682807, 3.15630792505], "code_commune_insee": "58209"}, "geometry": {"type": "Point", "coordinates": [3.15630792505, 47.379682807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b46f4d5f4188aec9975118f6774bc70dfc2a070e", "fields": {"nom_de_la_commune": "POIL", "libell_d_acheminement": "POIL", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58211"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaa68a9c9e7b0a8a22fdb34c7839855ff4a2cb03", "fields": {"nom_de_la_commune": "PREPORCHE", "libell_d_acheminement": "PREPORCHE", "code_postal": "58360", "coordonnees_gps": [46.8973238863, 3.8600072839], "code_commune_insee": "58219"}, "geometry": {"type": "Point", "coordinates": [3.8600072839, 46.8973238863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32fd7c1f2740d6d98c7e1503710a1ab41330f70a", "fields": {"nom_de_la_commune": "SAINCAIZE MEAUCE", "libell_d_acheminement": "SAINCAIZE MEAUCE", "code_postal": "58470", "coordonnees_gps": [46.9060969897, 3.12154059247], "code_commune_insee": "58225"}, "geometry": {"type": "Point", "coordinates": [3.12154059247, 46.9060969897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9fa42dd48b64be666cee89fcab17029a0cd4dd", "fields": {"nom_de_la_commune": "ST ANDRE EN MORVAN", "libell_d_acheminement": "ST ANDRE EN MORVAN", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58229"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a222f457ffe14a5a27f47f0f9928db57bad954e5", "fields": {"nom_de_la_commune": "ST FIRMIN", "libell_d_acheminement": "ST FIRMIN", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58239"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c14eed70ccc3b1dfa1e87bd88d61aee3cbaf2edb", "fields": {"nom_de_la_commune": "ST GRATIEN SAVIGNY", "libell_d_acheminement": "ST GRATIEN SAVIGNY", "code_postal": "58340", "coordonnees_gps": [46.8965884387, 3.63097813462], "code_commune_insee": "58243"}, "geometry": {"type": "Point", "coordinates": [3.63097813462, 46.8965884387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40c01bb8b5f2760b033cd48ac30dd0c75a8f30e8", "fields": {"nom_de_la_commune": "ST MARTIN DU PUY", "libell_d_acheminement": "ST MARTIN DU PUY", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58255"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc295405f1a6de85f97dbb4cd6f46928dcfeb9e6", "fields": {"code_postal": "58490", "code_commune_insee": "58260", "libell_d_acheminement": "ST PARIZE LE CHATEL", "ligne_5": "MOIRY", "nom_de_la_commune": "ST PARIZE LE CHATEL", "coordonnees_gps": [46.8506484753, 3.18474672516]}, "geometry": {"type": "Point", "coordinates": [3.18474672516, 46.8506484753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84152570fff36c3a614e203685831273c63126f4", "fields": {"nom_de_la_commune": "ST PEREUSE", "libell_d_acheminement": "ST PEREUSE", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58262"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fe69dfb0e95249eb6ed34599d0b9a86744c99c3", "fields": {"nom_de_la_commune": "SAIZY", "libell_d_acheminement": "SAIZY", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58271"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85193fce6ef80dd9a4fe52ac5d7220892afbdfa6", "fields": {"nom_de_la_commune": "SARDY LES EPIRY", "libell_d_acheminement": "SARDY LES EPIRY", "code_postal": "58800", "coordonnees_gps": [47.2311902386, 3.70459462001], "code_commune_insee": "58272"}, "geometry": {"type": "Point", "coordinates": [3.70459462001, 47.2311902386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "055d4c33cdd2e5bdcb347969cda7474db74290f3", "fields": {"nom_de_la_commune": "SAVIGNY POIL FOL", "libell_d_acheminement": "SAVIGNY POIL FOL", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58274"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc47d129865afcc320f4b794d9849d552785bc7c", "fields": {"nom_de_la_commune": "ST LOUP GEANGES", "libell_d_acheminement": "ST LOUP GEANGES", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71443"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f471eb93554092f75c1dca2ebf77f38febba2b61", "fields": {"nom_de_la_commune": "ST MARTIN EN GATINOIS", "libell_d_acheminement": "ST MARTIN EN GATINOIS", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71457"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c97ae36ef28047e2fb165726e5e3bab20a4d4d2b", "fields": {"nom_de_la_commune": "ST MAURICE DES CHAMPS", "libell_d_acheminement": "ST MAURICE DES CHAMPS", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71461"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbcf91dba88d89d45ad922c77c69c8643891f5d4", "fields": {"nom_de_la_commune": "ST MICAUD", "libell_d_acheminement": "ST MICAUD", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71465"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d889d280d31ed58a7ece627e445a7951e18e6261", "fields": {"nom_de_la_commune": "ST POINT", "libell_d_acheminement": "ST POINT", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71470"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54b2c95f61aba22ee2d1f07117873eece8d8a499", "fields": {"nom_de_la_commune": "ST PRIX", "libell_d_acheminement": "ST PRIX", "code_postal": "71990", "coordonnees_gps": [46.9426625414, 4.10521172287], "code_commune_insee": "71472"}, "geometry": {"type": "Point", "coordinates": [4.10521172287, 46.9426625414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c759b9dcf9f75e5ffadb15036f268bf975e860b8", "fields": {"nom_de_la_commune": "ST ROMAIN SOUS VERSIGNY", "libell_d_acheminement": "ST ROMAIN SOUS VERSIGNY", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71478"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4186a496951ace897d60380b35f548c0538e9c3", "fields": {"nom_de_la_commune": "ST SYMPHORIEN DE MARMAGNE", "libell_d_acheminement": "ST SYMPHORIEN DE MARMAGNE", "code_postal": "71710", "coordonnees_gps": [46.7997202983, 4.34541340932], "code_commune_insee": "71482"}, "geometry": {"type": "Point", "coordinates": [4.34541340932, 46.7997202983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69948593900274cd079b1e613850eda6cd47794c", "fields": {"nom_de_la_commune": "ST USUGE", "libell_d_acheminement": "ST USUGE", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71484"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28fe52bd40fa90b86d42e4fda118f41926bc97da", "fields": {"nom_de_la_commune": "ST VALLIER", "libell_d_acheminement": "ST VALLIER", "code_postal": "71230", "coordonnees_gps": [46.6235547336, 4.3737497458], "code_commune_insee": "71486"}, "geometry": {"type": "Point", "coordinates": [4.3737497458, 46.6235547336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0ce6fa0228279de0c24a7c8ebcbcf2827ea74e7", "fields": {"nom_de_la_commune": "ST VINCENT EN BRESSE", "libell_d_acheminement": "ST VINCENT EN BRESSE", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71489"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0b352148fadda736b3d0d479479a46fab03cf2", "fields": {"nom_de_la_commune": "SALORNAY SUR GUYE", "libell_d_acheminement": "SALORNAY SUR GUYE", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71495"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "615ab1dc0a620bf5f75615fa193bcf7104476398", "fields": {"nom_de_la_commune": "SAMPIGNY LES MARANGES", "libell_d_acheminement": "SAMPIGNY LES MARANGES", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71496"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e76ad0adfc73e56c09c218cb60d9e9b54d3919a", "fields": {"nom_de_la_commune": "SANCE", "libell_d_acheminement": "SANCE", "code_postal": "71000", "coordonnees_gps": [46.3175504743, 4.81977288125], "code_commune_insee": "71497"}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893403d3d86fb2a90ff11d8dae22a61bc9c19c06", "fields": {"nom_de_la_commune": "SEMUR EN BRIONNAIS", "libell_d_acheminement": "SEMUR EN BRIONNAIS", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71510"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82b417ef79a39ac6c94752970fc0e286c434bfe1", "fields": {"nom_de_la_commune": "SENOZAN", "libell_d_acheminement": "SENOZAN", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71513"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0216d20ea48f785c169a91da65e2d7d549cf438", "fields": {"nom_de_la_commune": "SERCY", "libell_d_acheminement": "SERCY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71515"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "441d87ae07a61163d784a3bdb2db9706dd8b48d7", "fields": {"nom_de_la_commune": "SERLEY", "libell_d_acheminement": "SERLEY", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71516"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18e1c67324738d837c4c85f197a8cba91904547c", "fields": {"nom_de_la_commune": "SERMESSE", "libell_d_acheminement": "SERMESSE", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71517"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d6014ddf528bc6bc205b06f62c88c50ed793fdd", "fields": {"nom_de_la_commune": "SERRIERES", "libell_d_acheminement": "SERRIERES", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71518"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00c9c4fa4458ae10503b536f857bef80ead5a1a", "fields": {"nom_de_la_commune": "SUIN", "libell_d_acheminement": "SUIN", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71529"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fcd2a0c97a367c0dcb0c48e911d599219028d17", "fields": {"nom_de_la_commune": "THUREY", "libell_d_acheminement": "THUREY", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71538"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272df3009b8c8e421ae02b7ae764e82e37128279", "fields": {"nom_de_la_commune": "UXEAU", "libell_d_acheminement": "UXEAU", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71552"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67867b0001e9b1b0caea16408c4e79dca1164ab", "fields": {"nom_de_la_commune": "VAREILLES", "libell_d_acheminement": "VAREILLES", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71553"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abf106b52bf5c82f87af78dd85f78b5d8855e97d", "fields": {"nom_de_la_commune": "VARENNE ST GERMAIN", "libell_d_acheminement": "VARENNE ST GERMAIN", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71557"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1114933d0a5a22ad23998d0527b7a83568d4227", "fields": {"nom_de_la_commune": "VAUBAN", "libell_d_acheminement": "VAUBAN", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71561"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eefc4502c35e33edc25687c6eae0b7d61435c69", "fields": {"nom_de_la_commune": "VAUDEBARRIER", "libell_d_acheminement": "VAUDEBARRIER", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71562"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5192e89723ee865d685fb6ecd8d47373bfb26e83", "fields": {"nom_de_la_commune": "VERSAUGUES", "libell_d_acheminement": "VERSAUGUES", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71573"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "115bcdf50cb7c9cad392d736b9d5eea6982bff39", "fields": {"code_postal": "71260", "code_commune_insee": "71584", "libell_d_acheminement": "VIRE", "ligne_5": "VERIZET", "nom_de_la_commune": "VIRE", "coordonnees_gps": [46.4474927686, 4.81803623959]}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8305f8f7c2c38b07eb9ba7e67659cc3d342658", "fields": {"nom_de_la_commune": "VITRY SUR LOIRE", "libell_d_acheminement": "VITRY SUR LOIRE", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71589"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63d8f640d5c128d7769b10c15693d90967f3de8", "fields": {"nom_de_la_commune": "FLEURVILLE", "libell_d_acheminement": "FLEURVILLE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71591"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67cba3b3746bdda0531d5cdff77b7c799c79312c", "fields": {"nom_de_la_commune": "AILLIERES BEAUVOIR", "libell_d_acheminement": "AILLIERES BEAUVOIR", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72002"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a6f14c1073719989a591c275c69951166c5fb1f", "fields": {"nom_de_la_commune": "ALLONNES", "libell_d_acheminement": "ALLONNES", "code_postal": "72700", "coordonnees_gps": [47.9647519456, 0.124625925124], "code_commune_insee": "72003"}, "geometry": {"type": "Point", "coordinates": [0.124625925124, 47.9647519456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fd30633df23f32b59c04b4bd621bc65705e545", "fields": {"nom_de_la_commune": "AMNE", "libell_d_acheminement": "AMNE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72004"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "673ef617af9540817d833551786e2442c73f1875", "fields": {"nom_de_la_commune": "ASSE LE BOISNE", "libell_d_acheminement": "ASSE LE BOISNE", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72011"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a911e2fa9086961c7eb8b3f0e8b30ef4840dba8", "fields": {"nom_de_la_commune": "LES AULNEAUX", "libell_d_acheminement": "LES AULNEAUX", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72015"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ec7f7a8eaaa9959f4bd784946131244390fbc2", "fields": {"code_postal": "72290", "code_commune_insee": "72023", "libell_d_acheminement": "BALLON ST MARS", "ligne_5": "ST MARS SOUS BALLON", "nom_de_la_commune": "BALLON ST MARS", "coordonnees_gps": [48.1733363685, 0.250385429699]}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0eb915330de08b39926979abc3f4b877219a51b", "fields": {"nom_de_la_commune": "BEILLE", "libell_d_acheminement": "BEILLE", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72031"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c456cb72a9b406f8ecf94fad853bb519c61fec8d", "fields": {"nom_de_la_commune": "BERUS", "libell_d_acheminement": "BERUS", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72034"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46a7256b66903f48b81dd883f668e89a619a68fe", "fields": {"nom_de_la_commune": "LA BOSSE", "libell_d_acheminement": "LA BOSSE", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72040"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa8f6e9a78f3497b788635dcebd8aaa31992201", "fields": {"nom_de_la_commune": "BOULOIRE", "libell_d_acheminement": "BOULOIRE", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72042"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "130a8e4aa6c080e446b1c17b1814ced53ba0c442", "fields": {"nom_de_la_commune": "BOURG LE ROI", "libell_d_acheminement": "BOURG LE ROI", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72043"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dbcaba8f752560d76a367df133e367edd9689c6", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX CHOUX", "libell_d_acheminement": "LA CHAPELLE AUX CHOUX", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72060"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f91a96f914b458b5af073cab499b727d35f43247", "fields": {"nom_de_la_commune": "LA CHAPELLE DU BOIS", "libell_d_acheminement": "LA CHAPELLE DU BOIS", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72062"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f08bf19ba1e237109cbee062348cba7a5353d15", "fields": {"nom_de_la_commune": "LA CHARTRE SUR LE LOIR", "libell_d_acheminement": "LA CHARTRE SUR LE LOIR", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72068"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "998aef3ddc35cfa6037a3081da5e782957ff8a49", "fields": {"nom_de_la_commune": "CHEMIRE EN CHARNIE", "libell_d_acheminement": "CHEMIRE EN CHARNIE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72074"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a459bd8f5889c8c7d37a2eb0a23d30ccc34b926", "fields": {"nom_de_la_commune": "CHEMIRE LE GAUDIN", "libell_d_acheminement": "CHEMIRE LE GAUDIN", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72075"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfbfbc8b68917ac53db76054c6703b1005a11cad", "fields": {"nom_de_la_commune": "CHERREAU", "libell_d_acheminement": "CHERREAU", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72081"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b6b45330e5b4e5eb35015b94dc3e0c9fd066a6", "fields": {"nom_de_la_commune": "COULANS SUR GEE", "libell_d_acheminement": "COULANS SUR GEE", "code_postal": "72550", "coordonnees_gps": [48.0233786527, 0.0301205478964], "code_commune_insee": "72096"}, "geometry": {"type": "Point", "coordinates": [0.0301205478964, 48.0233786527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff901dceb39aab5d1b1b389676170c8e2fb1d52", "fields": {"nom_de_la_commune": "COURGENARD", "libell_d_acheminement": "COURGENARD", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72105"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dee902084bebe6dc237dcfc29c0030f6edbc5cb", "fields": {"nom_de_la_commune": "CRE SUR LOIR", "libell_d_acheminement": "CRE SUR LOIR", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72108"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c5605934c6caa7b0b8610bb93f5220ade3b7c15", "fields": {"nom_de_la_commune": "CRISSE", "libell_d_acheminement": "CRISSE", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72109"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f893eb2bf9343cb9785e606d5f171ee26f525b5c", "fields": {"nom_de_la_commune": "DEGRE", "libell_d_acheminement": "DEGRE", "code_postal": "72550", "coordonnees_gps": [48.0233786527, 0.0301205478964], "code_commune_insee": "72113"}, "geometry": {"type": "Point", "coordinates": [0.0301205478964, 48.0233786527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69e79f7c58491c63920a117bdc9c7481273138c", "fields": {"nom_de_la_commune": "DEHAULT", "libell_d_acheminement": "DEHAULT", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72114"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d65b6ec46a57db8ec1f572b08146416e03f53a0", "fields": {"nom_de_la_commune": "DOLLON", "libell_d_acheminement": "DOLLON", "code_postal": "72390", "coordonnees_gps": [48.0512827227, 0.629748234249], "code_commune_insee": "72118"}, "geometry": {"type": "Point", "coordinates": [0.629748234249, 48.0512827227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f75670d2f34d42a7b4911a34039747d797860d30", "fields": {"nom_de_la_commune": "BOIS NORMAND PRES LYRE", "libell_d_acheminement": "BOIS NORMAND PRES LYRE", "code_postal": "27330", "coordonnees_gps": [48.928948419, 0.685983737995], "code_commune_insee": "27075"}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47f00e11bf84985bdd382b859564acb60e98252", "fields": {"nom_de_la_commune": "LA BOISSIERE", "libell_d_acheminement": "LA BOISSIERE", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27078"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc6b9ce5cfa13c47af996c1646faaec8545eb04f", "fields": {"nom_de_la_commune": "BONNEVILLE APTOT", "libell_d_acheminement": "BONNEVILLE APTOT", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27083"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d47de1a7a3d03eecd3b2f12c6e9b1a7b3fbccce", "fields": {"code_postal": "27310", "code_commune_insee": "27085", "libell_d_acheminement": "FLANCOURT CRESCY EN ROUMOIS", "ligne_5": "EPREVILLE EN ROUMOIS", "nom_de_la_commune": "FLANCOURT CRESCY EN ROUMOIS", "coordonnees_gps": [49.3596105697, 0.832082294949]}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d19bc915d31641e352611629f1753c384ffc881", "fields": {"nom_de_la_commune": "BOSQUENTIN", "libell_d_acheminement": "BOSQUENTIN", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27094"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8c2a9a69d6428a9f48ece47f32bcf57606561eb", "fields": {"nom_de_la_commune": "BOSROBERT", "libell_d_acheminement": "BOSROBERT", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27095"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77556e78b5b8030889ebf89643eae5ff4c9331f", "fields": {"nom_de_la_commune": "LE BOULAY MORIN", "libell_d_acheminement": "LE BOULAY MORIN", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27099"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac53b429844024f42ad35f03a5780b8319ab254d", "fields": {"code_postal": "27520", "code_commune_insee": "27105", "libell_d_acheminement": "GRAND BOURGTHEROULDE", "ligne_5": "BOSC BENARD COMMIN", "nom_de_la_commune": "GRAND BOURGTHEROULDE", "coordonnees_gps": [49.2823225842, 0.820810148087]}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8274ebbd1e19194c878f93faced5e8afef92bd7b", "fields": {"code_postal": "27520", "code_commune_insee": "27105", "libell_d_acheminement": "GRAND BOURGTHEROULDE", "ligne_5": "BOURGTHEROULDE INFREVILLE", "nom_de_la_commune": "GRAND BOURGTHEROULDE", "coordonnees_gps": [49.2823225842, 0.820810148087]}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54d599f8338b1a4616e3ff2710fb7cdf20f7bf8", "fields": {"code_postal": "27520", "code_commune_insee": "27105", "libell_d_acheminement": "GRAND BOURGTHEROULDE", "ligne_5": "THUIT HEBERT", "nom_de_la_commune": "GRAND BOURGTHEROULDE", "coordonnees_gps": [49.2823225842, 0.820810148087]}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64ab494256ccd25b0fa4f666905ddbf795171f2e", "fields": {"nom_de_la_commune": "BRESTOT", "libell_d_acheminement": "BRESTOT", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27110"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d7ee67332f47cac8e5ed51c452431563bcb7fb3", "fields": {"nom_de_la_commune": "BROGLIE", "libell_d_acheminement": "BROGLIE", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27117"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4453f9d47088953c1a009783fa1e424221186f2", "fields": {"nom_de_la_commune": "CAILLY SUR EURE", "libell_d_acheminement": "CAILLY SUR EURE", "code_postal": "27490", "coordonnees_gps": [49.1112180044, 1.26339750484], "code_commune_insee": "27124"}, "geometry": {"type": "Point", "coordinates": [1.26339750484, 49.1112180044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6d9d50f29f4d385444007587d512ddc5cc06075", "fields": {"nom_de_la_commune": "CAORCHES ST NICOLAS", "libell_d_acheminement": "CAORCHES ST NICOLAS", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27129"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f9c9e2dc4973123f29278ae4b36f54e9cbf2fb2", "fields": {"nom_de_la_commune": "CARSIX", "libell_d_acheminement": "CARSIX", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27131"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f791a4ca95cb58671485b265d56fde753414bfa1", "fields": {"nom_de_la_commune": "CESSEVILLE", "libell_d_acheminement": "CESSEVILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27135"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e773a7c377e22abf8cab087ac8e6db8ac50dd4e", "fields": {"nom_de_la_commune": "CHAIGNES", "libell_d_acheminement": "CHAIGNES", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27136"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aacfde52251247f9dee25614039dfe20accde27", "fields": {"code_postal": "27150", "code_commune_insee": "27153", "libell_d_acheminement": "CHAUVINCOURT PROVEMONT", "ligne_5": "PROVEMONT", "nom_de_la_commune": "CHAUVINCOURT PROVEMONT", "coordonnees_gps": [49.3312689444, 1.59419925539]}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2451ea95fcfc7ce55f9b918b5373f97e3402560e", "fields": {"code_postal": "27240", "code_commune_insee": "27157", "libell_d_acheminement": "MARBOIS", "ligne_5": "LES ESSARTS", "nom_de_la_commune": "MARBOIS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bad05bb177b0f620c51fd60e3bc2b074bd289b9", "fields": {"nom_de_la_commune": "CONTEVILLE", "libell_d_acheminement": "CONTEVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27169"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b8956e9ff256eae342b19d5b88e69c3acd24adf", "fields": {"code_postal": "27490", "code_commune_insee": "27191", "libell_d_acheminement": "CLEF VALLEE D EURE", "ligne_5": "FONTAINE HEUDEBOURG", "nom_de_la_commune": "CLEF VALLEE D EURE", "coordonnees_gps": [49.1112180044, 1.26339750484]}, "geometry": {"type": "Point", "coordinates": [1.26339750484, 49.1112180044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7e7792f2ec3385efd3b17ba1a587c33007e72cc", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "LES MINIERES", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bb7ec9631ceae1b9f29daa3466cee4f4fd3296d", "fields": {"nom_de_la_commune": "DAUBEUF LA CAMPAGNE", "libell_d_acheminement": "DAUBEUF LA CAMPAGNE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27201"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "728c743e5aaa822e12de937661cc2ba48344824e", "fields": {"code_postal": "27510", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "GUITRY", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1509982632, 1.53002426085]}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5544e8ece514adb746975286c617aecb2e1a8f72", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "FOURGES", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a868e10ed0f9184f15e5fdcbf967b796af5ac102", "fields": {"nom_de_la_commune": "EPREVILLE PRES LE NEUBOURG", "libell_d_acheminement": "EPREVILLE PRES LE NEUBOURG", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27224"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce873d9bd125a6a56cf422a507a3543023fdc156", "fields": {"nom_de_la_commune": "ETREVILLE", "libell_d_acheminement": "ETREVILLE", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27227"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ebd530bad78e31b50e0b28a5ea63ed52e067fd", "fields": {"nom_de_la_commune": "FARCEAUX", "libell_d_acheminement": "FARCEAUX", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27232"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19953332facf24ae0524f0eac78ca2ebcc8762da", "fields": {"nom_de_la_commune": "FAVEROLLES LA CAMPAGNE", "libell_d_acheminement": "FAVEROLLES LA CAMPAGNE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27235"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bc22f6e684dc817ff392bb7d9300fc97826a062", "fields": {"nom_de_la_commune": "LA FERRIERE SUR RISLE", "libell_d_acheminement": "LA FERRIERE SUR RISLE", "code_postal": "27760", "coordonnees_gps": [48.9782186309, 0.786558992065], "code_commune_insee": "27240"}, "geometry": {"type": "Point", "coordinates": [0.786558992065, 48.9782186309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1afeefc3b74d3355de3478f9750460363dff7923", "fields": {"nom_de_la_commune": "LA FORET DU PARC", "libell_d_acheminement": "LA FORET DU PARC", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27256"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "056d9d5981f9d93f1c443f7d5f3d8a16b79983aa", "fields": {"nom_de_la_commune": "GISORS", "libell_d_acheminement": "GISORS", "code_postal": "27140", "coordonnees_gps": [49.3150271215, 1.74471668878], "code_commune_insee": "27284"}, "geometry": {"type": "Point", "coordinates": [1.74471668878, 49.3150271215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a2f9bf0c543b356d33094a67ad702c7fcac01df", "fields": {"nom_de_la_commune": "GIVERVILLE", "libell_d_acheminement": "GIVERVILLE", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27286"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "669c3c95f1fb9e43220d252a69eb1ae0d872f421", "fields": {"nom_de_la_commune": "GUICHAINVILLE", "libell_d_acheminement": "GUICHAINVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27306"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a85188d30c76c9728f85d46ac18a1ab4adc52b3b", "fields": {"nom_de_la_commune": "HECMANVILLE", "libell_d_acheminement": "HECMANVILLE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27325"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adfc6d07eb71244820c4b822d760daf14a31a1f7", "fields": {"nom_de_la_commune": "HECOURT", "libell_d_acheminement": "HECOURT", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27326"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e116bc91bf07a6cd31e834f9f924a896318a0ca5", "fields": {"nom_de_la_commune": "HENNEZIS", "libell_d_acheminement": "HENNEZIS", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27329"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ac228b0b910c79e0323f232a039419e1905e79d", "fields": {"nom_de_la_commune": "HEUDEBOUVILLE", "libell_d_acheminement": "HEUDEBOUVILLE", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27332"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a7d019e8b4a7ca55ee4389f24d3c1895ebfddb", "fields": {"nom_de_la_commune": "LES HOGUES", "libell_d_acheminement": "LES HOGUES", "code_postal": "27910", "coordonnees_gps": [49.419867111, 1.36959145067], "code_commune_insee": "27338"}, "geometry": {"type": "Point", "coordinates": [1.36959145067, 49.419867111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a29a0c80f63dc6029c2d98676dfde2714725edeb", "fields": {"nom_de_la_commune": "L HOSMES", "libell_d_acheminement": "L HOSMES", "code_postal": "27570", "coordonnees_gps": [48.7688437949, 1.05443864674], "code_commune_insee": "27341"}, "geometry": {"type": "Point", "coordinates": [1.05443864674, 48.7688437949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab14d23775d2a5b3463c6a617ab40e8381d4aed7", "fields": {"nom_de_la_commune": "HOULBEC PRES LE GROS THEIL", "libell_d_acheminement": "HOULBEC PRES LE GROS THEIL", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27344"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7fe8cf4d1660ac7a8d8c824c4406bc4fbff9e79", "fields": {"nom_de_la_commune": "JUIGNETTES", "libell_d_acheminement": "JUIGNETTES", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27359"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb5fd16153c269c54fd5fb7eae13a4cb029b3a5", "fields": {"nom_de_la_commune": "LE LANDIN", "libell_d_acheminement": "LE LANDIN", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27363"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed51456fd2c5027cd42bd0f0713568b448bf81a4", "fields": {"nom_de_la_commune": "LOUVERSEY", "libell_d_acheminement": "LOUVERSEY", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27374"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41dc039cacf0c00e85fd4966eb3f5d04a110f042", "fields": {"nom_de_la_commune": "MALLEVILLE SUR LE BEC", "libell_d_acheminement": "MALLEVILLE SUR LE BEC", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27380"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5367b9e29c81d4c5eb40efaddb8ce1122467e19", "fields": {"nom_de_la_commune": "MALOUY", "libell_d_acheminement": "MALOUY", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27381"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65c2eecb2e69ee77d0dddbb80edac77cd286a090", "fields": {"nom_de_la_commune": "LE MANOIR", "libell_d_acheminement": "LE MANOIR", "code_postal": "27460", "coordonnees_gps": [49.3216784952, 1.17178716844], "code_commune_insee": "27386"}, "geometry": {"type": "Point", "coordinates": [1.17178716844, 49.3216784952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e204c6653bc78ee7fbbedd513e1cfba6eb804b84", "fields": {"nom_de_la_commune": "MARBEUF", "libell_d_acheminement": "MARBEUF", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27389"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b2d7d03d972d18b9c8f5af4a2c253c1220072a7", "fields": {"nom_de_la_commune": "MARTOT", "libell_d_acheminement": "MARTOT", "code_postal": "27340", "coordonnees_gps": [49.282400174, 1.11419041631], "code_commune_insee": "27394"}, "geometry": {"type": "Point", "coordinates": [1.11419041631, 49.282400174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c506c9e579b87bc6a9e1f931b26365c9ee12b562", "fields": {"nom_de_la_commune": "MENNEVAL", "libell_d_acheminement": "MENNEVAL", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27398"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94eaa30f67832bdab6beea00267bbc736c7675d1", "fields": {"nom_de_la_commune": "LE MESNIL HARDRAY", "libell_d_acheminement": "LE MESNIL HARDRAY", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27402"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54e3492abd0707b56ef99100163e875d4e45b838", "fields": {"nom_de_la_commune": "MESNIL SUR L ESTREE", "libell_d_acheminement": "MESNIL SUR L ESTREE", "code_postal": "27650", "coordonnees_gps": [48.7821743197, 1.31343473217], "code_commune_insee": "27406"}, "geometry": {"type": "Point", "coordinates": [1.31343473217, 48.7821743197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9669ea45c469b0f3eb2d98d47ef6e7e7856c4c6", "fields": {"nom_de_la_commune": "MESNIL VERCLIVES", "libell_d_acheminement": "MESNIL VERCLIVES", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27407"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e085fe4024eea524402191ec697edad869f29a2", "fields": {"nom_de_la_commune": "MEZIERES EN VEXIN", "libell_d_acheminement": "MEZIERES EN VEXIN", "code_postal": "27510", "coordonnees_gps": [49.1509982632, 1.53002426085], "code_commune_insee": "27408"}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0776b9e51c75d2c01b3c205ee0495edcf6aac2", "fields": {"nom_de_la_commune": "MONTAURE", "libell_d_acheminement": "MONTAURE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27412"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de305dfe1c5b1809912fa4baf7b456d256418c49", "fields": {"nom_de_la_commune": "NEUILLY", "libell_d_acheminement": "NEUILLY", "code_postal": "27730", "coordonnees_gps": [48.932997523, 1.41949136051], "code_commune_insee": "27429"}, "geometry": {"type": "Point", "coordinates": [1.41949136051, 48.932997523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c5a1f1fbf5cb775981bb3c90749bfe53146e815", "fields": {"nom_de_la_commune": "LA NOE POULAIN", "libell_d_acheminement": "LA NOE POULAIN", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27435"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e824317b994a4c7da37e7272ab5fa29bfc16fb5", "fields": {"nom_de_la_commune": "ORVAUX", "libell_d_acheminement": "ORVAUX", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27447"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7697bd5ec4fbe584286f7b0cf148a773933635b", "fields": {"nom_de_la_commune": "PERRIERS LA CAMPAGNE", "libell_d_acheminement": "PERRIERS LA CAMPAGNE", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27452"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "524fcf193a889223aff7f6177eb23018a74e0413", "fields": {"nom_de_la_commune": "PERRIERS SUR ANDELLE", "libell_d_acheminement": "PERRIERS SUR ANDELLE", "code_postal": "27910", "coordonnees_gps": [49.419867111, 1.36959145067], "code_commune_insee": "27453"}, "geometry": {"type": "Point", "coordinates": [1.36959145067, 49.419867111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d9991da2bb4cb59de7ed00c5f9e9607d2ad60f0", "fields": {"nom_de_la_commune": "PINTERVILLE", "libell_d_acheminement": "PINTERVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27456"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95974551edacf8b61f22686fa2ee9634f7d105ae", "fields": {"nom_de_la_commune": "PLASNES", "libell_d_acheminement": "PLASNES", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27463"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b803e0e40be7455583ac5dbf286d454951318473", "fields": {"nom_de_la_commune": "PONT AUDEMER", "libell_d_acheminement": "PONT AUDEMER", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27467"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0bc4ffe6bf0d54bd242bb2642488b31622c7fec", "fields": {"nom_de_la_commune": "PRESSAGNY L ORGUEILLEUX", "libell_d_acheminement": "PRESSAGNY L ORGUEILLEUX", "code_postal": "27510", "coordonnees_gps": [49.1509982632, 1.53002426085], "code_commune_insee": "27477"}, "geometry": {"type": "Point", "coordinates": [1.53002426085, 49.1509982632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d3bfb9c534b0f7c0374ff4f690aac3104c2615f", "fields": {"nom_de_la_commune": "ROMILLY LA PUTHENAYE", "libell_d_acheminement": "ROMILLY LA PUTHENAYE", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27492"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea9e659af1918f01488d1dc33d81efcec76fc4c6", "fields": {"nom_de_la_commune": "ROMILLY SUR ANDELLE", "libell_d_acheminement": "ROMILLY SUR ANDELLE", "code_postal": "27610", "coordonnees_gps": [49.3347145782, 1.25438565295], "code_commune_insee": "27493"}, "geometry": {"type": "Point", "coordinates": [1.25438565295, 49.3347145782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05c31f6b264460aa881bb83114e3d785795e4059", "fields": {"nom_de_la_commune": "ROUGEMONTIERS", "libell_d_acheminement": "ROUGEMONTIERS", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27497"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41503ab0555b18da2294d200eadff3b392957592", "fields": {"nom_de_la_commune": "ROUVRAY", "libell_d_acheminement": "ROUVRAY", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27501"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6368a3b512199a93324194d92aec1369dcbc16f3", "fields": {"nom_de_la_commune": "SACQUENVILLE", "libell_d_acheminement": "SACQUENVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27504"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c53a4e788bfa7f6aeecca2b31411532f076308", "fields": {"nom_de_la_commune": "ST ANDRE DE L EURE", "libell_d_acheminement": "ST ANDRE DE L EURE", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27507"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e63566be1c60858148477ff090b52b3106d298", "fields": {"nom_de_la_commune": "ST AUBIN DU THENNEY", "libell_d_acheminement": "ST AUBIN DU THENNEY", "code_postal": "27270", "coordonnees_gps": [49.0109875811, 0.530997676834], "code_commune_insee": "27514"}, "geometry": {"type": "Point", "coordinates": [0.530997676834, 49.0109875811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3415fe5a0d8bace94fba0f9a525a160294ff98fd", "fields": {"nom_de_la_commune": "ST AUBIN LE VERTUEUX", "libell_d_acheminement": "ST AUBIN LE VERTUEUX", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27516"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab76bed60ffa3d0716413515179f3e30c6427aa", "fields": {"nom_de_la_commune": "ST CHRISTOPHE SUR CONDE", "libell_d_acheminement": "ST CHRISTOPHE SUR CONDE", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27522"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3330809759e5a5b5685f5b54a585a3eb4e4a0657", "fields": {"nom_de_la_commune": "STE COLOMBE LA COMMANDERIE", "libell_d_acheminement": "STE COLOMBE LA COMMANDERIE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27524"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd8dd223d857e70c9356fd30da186757e1d3431", "fields": {"nom_de_la_commune": "ST DENIS D AUGERONS", "libell_d_acheminement": "ST DENIS D AUGERONS", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27530"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b10eb8e103a3954355ec79640b703c9e13dd2ba", "fields": {"nom_de_la_commune": "ST ETIENNE DU VAUVRAY", "libell_d_acheminement": "ST ETIENNE DU VAUVRAY", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27537"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a6ffec29d3446a601ad07eecb8df96b89efeb7", "fields": {"nom_de_la_commune": "STE GENEVIEVE LES GASNY", "libell_d_acheminement": "STE GENEVIEVE LES GASNY", "code_postal": "27620", "coordonnees_gps": [49.0961129794, 1.56718347503], "code_commune_insee": "27540"}, "geometry": {"type": "Point", "coordinates": [1.56718347503, 49.0961129794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37453fd17acf8730077301791f8cfd39b668a6ac", "fields": {"nom_de_la_commune": "ST GERMAIN DE FRESNEY", "libell_d_acheminement": "ST GERMAIN DE FRESNEY", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27544"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6265d57730db18ce95e749fad03527dd1aaee3c", "fields": {"nom_de_la_commune": "ST GERMAIN LA CAMPAGNE", "libell_d_acheminement": "ST GERMAIN LA CAMPAGNE", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27547"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "078b86cb9305b3dd84552e839e4b998e47a49e90", "fields": {"nom_de_la_commune": "ST GERMAIN SUR AVRE", "libell_d_acheminement": "ST GERMAIN SUR AVRE", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27548"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c52ca8b97fde1ec5e41bdc5956101d26044099cf", "fields": {"nom_de_la_commune": "ST JULIEN DE LA LIEGUE", "libell_d_acheminement": "ST JULIEN DE LA LIEGUE", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27553"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234919d31549fb53a738f1715742d7faadd267c4", "fields": {"nom_de_la_commune": "ST LAURENT DES BOIS", "libell_d_acheminement": "ST LAURENT DES BOIS", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27555"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1b9c60c61940f50a41060a09c49cea6a8552c66", "fields": {"nom_de_la_commune": "ST LEGER DU GENNETEY", "libell_d_acheminement": "ST LEGER DU GENNETEY", "code_postal": "27520", "coordonnees_gps": [49.2823225842, 0.820810148087], "code_commune_insee": "27558"}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925503c80ecd42bd78398843644eb47b917521d1", "fields": {"nom_de_la_commune": "ST LUC", "libell_d_acheminement": "ST LUC", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27560"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c7788487ba9bb0da2d2ef91c2e6e7ade932b616", "fields": {"nom_de_la_commune": "ST MARDS DE BLACARVILLE", "libell_d_acheminement": "ST MARDS DE BLACARVILLE", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27563"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58bbed2359f5676c8673dd0a1249d452d053598", "fields": {"nom_de_la_commune": "COURSAN", "libell_d_acheminement": "COURSAN", "code_postal": "11110", "coordonnees_gps": [43.2267884537, 3.0836448835], "code_commune_insee": "11106"}, "geometry": {"type": "Point", "coordinates": [3.0836448835, 43.2267884537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "decb1b12f33e2040f188c8aec1e67fee42800faa", "fields": {"nom_de_la_commune": "CUXAC CABARDES", "libell_d_acheminement": "CUXAC CABARDES", "code_postal": "11390", "coordonnees_gps": [43.3925599417, 2.2792029886], "code_commune_insee": "11115"}, "geometry": {"type": "Point", "coordinates": [2.2792029886, 43.3925599417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8b7933780eac06725ff17d235f22bffd226d2d7", "fields": {"nom_de_la_commune": "DAVEJEAN", "libell_d_acheminement": "DAVEJEAN", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11117"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "223eeb77a89677074dc8201ec4a37870c2179f68", "fields": {"nom_de_la_commune": "DERNACUEILLETTE", "libell_d_acheminement": "DERNACUEILLETTE", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11118"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b04a77716fa17c4d5fbaa6201ecf89480a22828", "fields": {"code_postal": "11240", "code_commune_insee": "11128", "libell_d_acheminement": "ESCUEILLENS ET ST JUST", "ligne_5": "ST JUST DE BELENGARD", "nom_de_la_commune": "ESCUEILLENS ET ST JUST", "coordonnees_gps": [43.1188469018, 2.06671991119]}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17e98503ef430e070061ed7bfc41e72e03e7a170", "fields": {"nom_de_la_commune": "ESPERAZA", "libell_d_acheminement": "ESPERAZA", "code_postal": "11260", "coordonnees_gps": [42.9301295633, 2.17179732489], "code_commune_insee": "11129"}, "geometry": {"type": "Point", "coordinates": [2.17179732489, 42.9301295633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc926e735d87a97a0a8a828793f7c32ac76e2535", "fields": {"nom_de_la_commune": "FERRALS LES CORBIERES", "libell_d_acheminement": "FERRALS LES CORBIERES", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11140"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfbafb33b6af709f3392d9e6de311e825dc6bc20", "fields": {"code_postal": "11510", "code_commune_insee": "11144", "libell_d_acheminement": "FITOU", "ligne_5": "CABANES DE FITOU", "nom_de_la_commune": "FITOU", "coordonnees_gps": [42.9150508033, 2.94104906509]}, "geometry": {"type": "Point", "coordinates": [2.94104906509, 42.9150508033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83bde82b7df1d63bb0d09aa0461816c831f434b0", "fields": {"code_postal": "11560", "code_commune_insee": "11145", "libell_d_acheminement": "FLEURY D AUDE", "ligne_5": "ST PIERRE LA MER", "nom_de_la_commune": "FLEURY", "coordonnees_gps": [43.2147091577, 3.17586928997]}, "geometry": {"type": "Point", "coordinates": [3.17586928997, 43.2147091577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1b665451921fb8fa13fc6542f7a929c26a7df7c", "fields": {"nom_de_la_commune": "FONTERS DU RAZES", "libell_d_acheminement": "FONTERS DU RAZES", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11149"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674dcf8043bdface9475f7675f6e90751b09242b", "fields": {"nom_de_la_commune": "LA FORCE", "libell_d_acheminement": "LA FORCE", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11153"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2f39a5236cb9ccf35924259f20af91a6332f5df", "fields": {"nom_de_la_commune": "GAJA ET VILLEDIEU", "libell_d_acheminement": "GAJA ET VILLEDIEU", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11158"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d27f96bbbfc91d92015be58bbab0e9bdee72131", "fields": {"nom_de_la_commune": "GINCLA", "libell_d_acheminement": "GINCLA", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11163"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43b6299305612573291173cbda21d01168abb97b", "fields": {"nom_de_la_commune": "GRAMAZIE", "libell_d_acheminement": "GRAMAZIE", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11167"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94cb15d438e4901fcfd031faad3e9dd78ba1f388", "fields": {"nom_de_la_commune": "HOUNOUX", "libell_d_acheminement": "HOUNOUX", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11173"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981413e11b0bc350671c4160fd31c4062c087843", "fields": {"nom_de_la_commune": "ST DIDIER EN VELAY", "libell_d_acheminement": "ST DIDIER EN VELAY", "code_postal": "43140", "coordonnees_gps": [45.3026508928, 4.29061531047], "code_commune_insee": "43177"}, "geometry": {"type": "Point", "coordinates": [4.29061531047, 45.3026508928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e75fef7b67d0b4b4703dd751f062478e87e79130", "fields": {"nom_de_la_commune": "ST ETIENNE LARDEYROL", "libell_d_acheminement": "ST ETIENNE LARDEYROL", "code_postal": "43260", "coordonnees_gps": [45.0368764299, 4.06744003564], "code_commune_insee": "43181"}, "geometry": {"type": "Point", "coordinates": [4.06744003564, 45.0368764299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e023d31d68d1c39b9456e1680017c5aae96a50", "fields": {"nom_de_la_commune": "ST GERON", "libell_d_acheminement": "ST GERON", "code_postal": "43360", "coordonnees_gps": [45.3429722324, 3.30288813488], "code_commune_insee": "43191"}, "geometry": {"type": "Point", "coordinates": [3.30288813488, 45.3429722324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8eb92320a6da4cee78b12167fa1dd167b40426a", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "43390", "coordonnees_gps": [45.377762878, 3.39697021869], "code_commune_insee": "43193"}, "geometry": {"type": "Point", "coordinates": [3.39697021869, 45.377762878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5493daa862315e7f63ef79ccb605e4531841693a", "fields": {"nom_de_la_commune": "ST ILPIZE", "libell_d_acheminement": "ST ILPIZE", "code_postal": "43380", "coordonnees_gps": [45.1585979173, 3.39361965903], "code_commune_insee": "43195"}, "geometry": {"type": "Point", "coordinates": [3.39361965903, 45.1585979173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c442bbdefc9bbcf7b20e61f6cc37637a6d452e", "fields": {"nom_de_la_commune": "ST JEURES", "libell_d_acheminement": "ST JEURES", "code_postal": "43200", "coordonnees_gps": [45.1457592713, 4.14871730761], "code_commune_insee": "43199"}, "geometry": {"type": "Point", "coordinates": [4.14871730761, 45.1457592713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf42bf6648f238049fffb4e352e54c0c8c228c7e", "fields": {"nom_de_la_commune": "ST JUST MALMONT", "libell_d_acheminement": "ST JUST MALMONT", "code_postal": "43240", "coordonnees_gps": [45.3465287299, 4.32231479792], "code_commune_insee": "43205"}, "geometry": {"type": "Point", "coordinates": [4.32231479792, 45.3465287299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68767b79d6a4cc68637fa36a44807997815099be", "fields": {"nom_de_la_commune": "ST VINCENT", "libell_d_acheminement": "ST VINCENT", "code_postal": "43800", "coordonnees_gps": [45.1544894574, 3.94630297006], "code_commune_insee": "43230"}, "geometry": {"type": "Point", "coordinates": [3.94630297006, 45.1544894574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c1f81c1e17c30e1e12587130283756d04c40da", "fields": {"nom_de_la_commune": "SENEUJOLS", "libell_d_acheminement": "SENEUJOLS", "code_postal": "43510", "coordonnees_gps": [44.9244140229, 3.76769965575], "code_commune_insee": "43238"}, "geometry": {"type": "Point", "coordinates": [3.76769965575, 44.9244140229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b884fbe995e2e5820647de05761ab7e7ff60256", "fields": {"code_postal": "43300", "code_commune_insee": "43239", "libell_d_acheminement": "SIAUGUES STE MARIE", "ligne_5": "STE MARIE DES CHAZES", "nom_de_la_commune": "SIAUGUES STE MARIE", "coordonnees_gps": [45.0667197349, 3.4902019392]}, "geometry": {"type": "Point", "coordinates": [3.4902019392, 45.0667197349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bcbc2ce88e6b09ad2500c5a8d2439690a447869", "fields": {"nom_de_la_commune": "TIRANGES", "libell_d_acheminement": "TIRANGES", "code_postal": "43530", "coordonnees_gps": [45.2878487826, 4.01248394629], "code_commune_insee": "43246"}, "geometry": {"type": "Point", "coordinates": [4.01248394629, 45.2878487826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bc131f1f84112d115bd56efb558de01870fda51", "fields": {"nom_de_la_commune": "VALS PRES LE PUY", "libell_d_acheminement": "VALS PRES LE PUY", "code_postal": "43750", "coordonnees_gps": [45.0229150545, 3.8653758811], "code_commune_insee": "43251"}, "geometry": {"type": "Point", "coordinates": [3.8653758811, 45.0229150545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0fe3b3a896f2bccf0fd2f80eec19f1f328acd0", "fields": {"nom_de_la_commune": "VARENNES ST HONORAT", "libell_d_acheminement": "VARENNES ST HONORAT", "code_postal": "43270", "coordonnees_gps": [45.1932424816, 3.70874018432], "code_commune_insee": "43252"}, "geometry": {"type": "Point", "coordinates": [3.70874018432, 45.1932424816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf6b857a9253c53e2a4c1344690d652cbd70aeb", "fields": {"nom_de_la_commune": "ANCENIS", "libell_d_acheminement": "ANCENIS", "code_postal": "44150", "coordonnees_gps": [47.3950525616, -1.14692474643], "code_commune_insee": "44003"}, "geometry": {"type": "Point", "coordinates": [-1.14692474643, 47.3950525616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d396590553860c77d5ac34e4a14026f22d398af", "fields": {"nom_de_la_commune": "ASSERAC", "libell_d_acheminement": "ASSERAC", "code_postal": "44410", "coordonnees_gps": [47.4324776311, -2.33169406972], "code_commune_insee": "44006"}, "geometry": {"type": "Point", "coordinates": [-2.33169406972, 47.4324776311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48898129f754a55bfbce2d733d628cb0f0384298", "fields": {"code_postal": "44410", "code_commune_insee": "44006", "libell_d_acheminement": "ASSERAC", "ligne_5": "PONT D ARMES", "nom_de_la_commune": "ASSERAC", "coordonnees_gps": [47.4324776311, -2.33169406972]}, "geometry": {"type": "Point", "coordinates": [-2.33169406972, 47.4324776311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656ed0393ad4a5fecac218ac503fbed1734ea50e", "fields": {"nom_de_la_commune": "BASSE GOULAINE", "libell_d_acheminement": "BASSE GOULAINE", "code_postal": "44115", "coordonnees_gps": [47.2024487913, -1.43097454176], "code_commune_insee": "44009"}, "geometry": {"type": "Point", "coordinates": [-1.43097454176, 47.2024487913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2527bfa89a8fd3f3c5fe9fe80ba81a4dbef3b740", "fields": {"nom_de_la_commune": "BONNOEUVRE", "libell_d_acheminement": "BONNOEUVRE", "code_postal": "44540", "coordonnees_gps": [47.5525167785, -1.15686679562], "code_commune_insee": "44017"}, "geometry": {"type": "Point", "coordinates": [-1.15686679562, 47.5525167785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6eb415464ade638ad07b78b1c3f60b13d95f03c", "fields": {"code_postal": "44580", "code_commune_insee": "44021", "libell_d_acheminement": "VILLENEUVE EN RETZ", "ligne_5": "ST CYR EN RETZ", "nom_de_la_commune": "VILLENEUVE EN RETZ", "coordonnees_gps": [47.0379472575, -1.92596110196]}, "geometry": {"type": "Point", "coordinates": [-1.92596110196, 47.0379472575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45794a5f046055c06b80a547d85ccf03c0e27867", "fields": {"nom_de_la_commune": "CASSON", "libell_d_acheminement": "CASSON", "code_postal": "44390", "coordonnees_gps": [47.4571485959, -1.52512056844], "code_commune_insee": "44027"}, "geometry": {"type": "Point", "coordinates": [-1.52512056844, 47.4571485959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1334450a84d96a0eeb3eed777c7f7b65f0de1343", "fields": {"nom_de_la_commune": "LA CHEVROLIERE", "libell_d_acheminement": "LA CHEVROLIERE", "code_postal": "44118", "coordonnees_gps": [47.0889695478, -1.59676742494], "code_commune_insee": "44041"}, "geometry": {"type": "Point", "coordinates": [-1.59676742494, 47.0889695478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c0dc3a6c99a15887ad1e5495f256c82947903d", "fields": {"nom_de_la_commune": "CONQUEREUIL", "libell_d_acheminement": "CONQUEREUIL", "code_postal": "44290", "coordonnees_gps": [47.6456298963, -1.81807007019], "code_commune_insee": "44044"}, "geometry": {"type": "Point", "coordinates": [-1.81807007019, 47.6456298963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97eebcea5599086514ccb5f08cd81ed35689422f", "fields": {"nom_de_la_commune": "COUFFE", "libell_d_acheminement": "COUFFE", "code_postal": "44521", "coordonnees_gps": [47.3765719065, -1.28522079399], "code_commune_insee": "44048"}, "geometry": {"type": "Point", "coordinates": [-1.28522079399, 47.3765719065]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "351988219703e1588e59b8131b543e2437965dc3", "fields": {"nom_de_la_commune": "FERCE", "libell_d_acheminement": "FERCE", "code_postal": "44660", "coordonnees_gps": [47.7784822888, -1.45044243144], "code_commune_insee": "44058"}, "geometry": {"type": "Point", "coordinates": [-1.45044243144, 47.7784822888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9efb81a5fc6f20b67f1e8fd97bbf01101a5df9", "fields": {"nom_de_la_commune": "FROSSAY", "libell_d_acheminement": "FROSSAY", "code_postal": "44320", "coordonnees_gps": [47.2108954989, -1.99426015028], "code_commune_insee": "44061"}, "geometry": {"type": "Point", "coordinates": [-1.99426015028, 47.2108954989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6716ed52ae7db9488ea7e65156367c8dee07869", "fields": {"nom_de_la_commune": "GORGES", "libell_d_acheminement": "GORGES", "code_postal": "44190", "coordonnees_gps": [47.0757597302, -1.26309617738], "code_commune_insee": "44064"}, "geometry": {"type": "Point", "coordinates": [-1.26309617738, 47.0757597302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d88f43ce5a89389023e0ac38a7136e43a289fc4", "fields": {"nom_de_la_commune": "GUEMENE PENFAO", "libell_d_acheminement": "GUEMENE PENFAO", "code_postal": "44290", "coordonnees_gps": [47.6456298963, -1.81807007019], "code_commune_insee": "44067"}, "geometry": {"type": "Point", "coordinates": [-1.81807007019, 47.6456298963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e2c7e11ca07068a5dde7347755a62fc0bcf70f", "fields": {"code_postal": "44350", "code_commune_insee": "44069", "libell_d_acheminement": "GUERANDE", "ligne_5": "SAILLE", "nom_de_la_commune": "GUERANDE", "coordonnees_gps": [47.3439577414, -2.41627951573]}, "geometry": {"type": "Point", "coordinates": [-2.41627951573, 47.3439577414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d16fdab2e75a5c2c264c8643bab7211928538fcf", "fields": {"code_postal": "44610", "code_commune_insee": "44074", "libell_d_acheminement": "INDRE", "ligne_5": "HAUTE INDRE", "nom_de_la_commune": "INDRE", "coordonnees_gps": [47.1984071351, -1.67155607359]}, "geometry": {"type": "Point", "coordinates": [-1.67155607359, 47.1984071351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29866f6acb1a4fa49a506ee45700d80c8e8f9b52", "fields": {"nom_de_la_commune": "LAVAU SUR LOIRE", "libell_d_acheminement": "LAVAU SUR LOIRE", "code_postal": "44260", "coordonnees_gps": [47.3429940898, -1.93537477196], "code_commune_insee": "44080"}, "geometry": {"type": "Point", "coordinates": [-1.93537477196, 47.3429940898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9964f14f1bbfc5356bf60beac7b1ec6cc5dbd62", "fields": {"nom_de_la_commune": "LE LOROUX BOTTEREAU", "libell_d_acheminement": "LE LOROUX BOTTEREAU", "code_postal": "44430", "coordonnees_gps": [47.2258283333, -1.29550283149], "code_commune_insee": "44084"}, "geometry": {"type": "Point", "coordinates": [-1.29550283149, 47.2258283333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dc492355bc99890e25afa8e14a983bd13f96f1d", "fields": {"nom_de_la_commune": "MAISDON SUR SEVRE", "libell_d_acheminement": "MAISDON SUR SEVRE", "code_postal": "44690", "coordonnees_gps": [47.1278112688, -1.40123093208], "code_commune_insee": "44088"}, "geometry": {"type": "Point", "coordinates": [-1.40123093208, 47.1278112688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34008ffba6994e6683cf0aa0bca26b18bcec89ba", "fields": {"nom_de_la_commune": "MESANGER", "libell_d_acheminement": "MESANGER", "code_postal": "44522", "coordonnees_gps": [47.4363371088, -1.20212334851], "code_commune_insee": "44096"}, "geometry": {"type": "Point", "coordinates": [-1.20212334851, 47.4363371088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2317757f490093769e3c3f435e80a7bf4d4a8b61", "fields": {"nom_de_la_commune": "MOUAIS", "libell_d_acheminement": "MOUAIS", "code_postal": "44590", "coordonnees_gps": [47.6829911414, -1.60317365389], "code_commune_insee": "44105"}, "geometry": {"type": "Point", "coordinates": [-1.60317365389, 47.6829911414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b189c8ec57f77c1cecbb70a9bbb43c70dc3d1b50", "fields": {"nom_de_la_commune": "LES MOUTIERS EN RETZ", "libell_d_acheminement": "LES MOUTIERS EN RETZ", "code_postal": "44760", "coordonnees_gps": [47.0707006392, -2.00607135756], "code_commune_insee": "44106"}, "geometry": {"type": "Point", "coordinates": [-2.00607135756, 47.0707006392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "308d02c63ebfea8dcfaeae4c26ad6764530ad0f4", "fields": {"nom_de_la_commune": "MOUZILLON", "libell_d_acheminement": "MOUZILLON", "code_postal": "44330", "coordonnees_gps": [47.1650939887, -1.27114440843], "code_commune_insee": "44108"}, "geometry": {"type": "Point", "coordinates": [-1.27114440843, 47.1650939887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4545712627a69c0240837eabf36df0df2079b506", "fields": {"nom_de_la_commune": "OUDON", "libell_d_acheminement": "OUDON", "code_postal": "44521", "coordonnees_gps": [47.3765719065, -1.28522079399], "code_commune_insee": "44115"}, "geometry": {"type": "Point", "coordinates": [-1.28522079399, 47.3765719065]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b811811d4eb93242c68616e699b88844568bf85", "fields": {"nom_de_la_commune": "PETIT AUVERNE", "libell_d_acheminement": "PETIT AUVERNE", "code_postal": "44670", "coordonnees_gps": [47.6418522644, -1.22470955782], "code_commune_insee": "44121"}, "geometry": {"type": "Point", "coordinates": [-1.22470955782, 47.6418522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c262c1b08eeaada4d0ec5c2fd05a9cdac057bf", "fields": {"nom_de_la_commune": "PLESSE", "libell_d_acheminement": "PLESSE", "code_postal": "44630", "coordonnees_gps": [47.5557950636, -1.89023163627], "code_commune_insee": "44128"}, "geometry": {"type": "Point", "coordinates": [-1.89023163627, 47.5557950636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43808dd606bde2b2d808a695809efb30cde9c959", "fields": {"nom_de_la_commune": "PORNIC", "libell_d_acheminement": "PORNIC", "code_postal": "44210", "coordonnees_gps": [47.122206427, -2.05186337229], "code_commune_insee": "44131"}, "geometry": {"type": "Point", "coordinates": [-2.05186337229, 47.122206427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb1d7b204be6f61a1803e9c7f933b76654f47d08", "fields": {"nom_de_la_commune": "PRINQUIAU", "libell_d_acheminement": "PRINQUIAU", "code_postal": "44260", "coordonnees_gps": [47.3429940898, -1.93537477196], "code_commune_insee": "44137"}, "geometry": {"type": "Point", "coordinates": [-1.93537477196, 47.3429940898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dcf72e66e082462fa881d3ce79cddc177275d51", "fields": {"nom_de_la_commune": "REZE", "libell_d_acheminement": "REZE", "code_postal": "44400", "coordonnees_gps": [47.176499243, -1.54979300458], "code_commune_insee": "44143"}, "geometry": {"type": "Point", "coordinates": [-1.54979300458, 47.176499243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0731a1df1dbab4fba6e54406afdd41b654b31942", "fields": {"code_postal": "44250", "code_commune_insee": "44154", "libell_d_acheminement": "ST BREVIN LES PINS", "ligne_5": "ST BREVIN L OCEAN", "nom_de_la_commune": "ST BREVIN LES PINS", "coordonnees_gps": [47.2472409804, -2.15082822089]}, "geometry": {"type": "Point", "coordinates": [-2.15082822089, 47.2472409804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c34555754c83f7212654096cb9652d33307a530", "fields": {"nom_de_la_commune": "ST COLOMBAN", "libell_d_acheminement": "ST COLOMBAN", "code_postal": "44310", "coordonnees_gps": [47.040945415, -1.64161948487], "code_commune_insee": "44155"}, "geometry": {"type": "Point", "coordinates": [-1.64161948487, 47.040945415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3838677624f480b6321529e734ad7bc9905dd865", "fields": {"code_postal": "44650", "code_commune_insee": "44156", "libell_d_acheminement": "CORCOUE SUR LOGNE", "ligne_5": "LA BENATE", "nom_de_la_commune": "CORCOUE SUR LOGNE", "coordonnees_gps": [46.9200173219, -1.61088022271]}, "geometry": {"type": "Point", "coordinates": [-1.61088022271, 46.9200173219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98df0e86815144c66a43f06d2b9ebe877e4f24bf", "fields": {"nom_de_la_commune": "ST FIACRE SUR MAINE", "libell_d_acheminement": "ST FIACRE SUR MAINE", "code_postal": "44690", "coordonnees_gps": [47.1278112688, -1.40123093208], "code_commune_insee": "44159"}, "geometry": {"type": "Point", "coordinates": [-1.40123093208, 47.1278112688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a4e4a85be78e5a7f3af7fd431457c1abcdaacc", "fields": {"nom_de_la_commune": "ST GILDAS DES BOIS", "libell_d_acheminement": "ST GILDAS DES BOIS", "code_postal": "44530", "coordonnees_gps": [47.5092008769, -2.00892310392], "code_commune_insee": "44161"}, "geometry": {"type": "Point", "coordinates": [-2.00892310392, 47.5092008769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d568a255233e66fb0b557b60720890f2b42470a2", "fields": {"nom_de_la_commune": "ST HERBLAIN", "libell_d_acheminement": "ST HERBLAIN", "code_postal": "44800", "coordonnees_gps": [47.2246998246, -1.634454241], "code_commune_insee": "44162"}, "geometry": {"type": "Point", "coordinates": [-1.634454241, 47.2246998246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10a598526e10e08f1603e5bfac2552f3d13f5dda", "fields": {"nom_de_la_commune": "ST LUMINE DE CLISSON", "libell_d_acheminement": "ST LUMINE DE CLISSON", "code_postal": "44190", "coordonnees_gps": [47.0757597302, -1.26309617738], "code_commune_insee": "44173"}, "geometry": {"type": "Point", "coordinates": [-1.26309617738, 47.0757597302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f741db4a6877158e5c9502f9987bd1330214ad02", "fields": {"nom_de_la_commune": "ST MOLF", "libell_d_acheminement": "ST MOLF", "code_postal": "44350", "coordonnees_gps": [47.3439577414, -2.41627951573], "code_commune_insee": "44183"}, "geometry": {"type": "Point", "coordinates": [-2.41627951573, 47.3439577414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "329f373482e58a7c3411facb07f3cb291de1f2d3", "fields": {"code_postal": "44600", "code_commune_insee": "44184", "libell_d_acheminement": "ST NAZAIRE", "ligne_5": "ST MARC SUR MER", "nom_de_la_commune": "ST NAZAIRE", "coordonnees_gps": [47.2802195147, -2.2511094831]}, "geometry": {"type": "Point", "coordinates": [-2.2511094831, 47.2802195147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a4bb07e9a380462e1f008e3638e0f231077e715", "fields": {"nom_de_la_commune": "ST NICOLAS DE REDON", "libell_d_acheminement": "ST NICOLAS DE REDON", "code_postal": "44460", "coordonnees_gps": [47.6181534488, -2.00119847224], "code_commune_insee": "44185"}, "geometry": {"type": "Point", "coordinates": [-2.00119847224, 47.6181534488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "094df63f5488b9dacf64003d20d018a2e5fb8519", "fields": {"nom_de_la_commune": "ST PERE EN RETZ", "libell_d_acheminement": "ST PERE EN RETZ", "code_postal": "44320", "coordonnees_gps": [47.2108954989, -1.99426015028], "code_commune_insee": "44187"}, "geometry": {"type": "Point", "coordinates": [-1.99426015028, 47.2108954989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c10106e8ede3be79c756878f97e7e20796277ba2", "fields": {"nom_de_la_commune": "ST SEBASTIEN SUR LOIRE", "libell_d_acheminement": "ST SEBASTIEN SUR LOIRE", "code_postal": "44230", "coordonnees_gps": [47.2032453046, -1.49980198596], "code_commune_insee": "44190"}, "geometry": {"type": "Point", "coordinates": [-1.49980198596, 47.2032453046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05fbeb4c14f3a1c886c8b7adbc506c9f8a237678", "fields": {"nom_de_la_commune": "ST VIAUD", "libell_d_acheminement": "ST VIAUD", "code_postal": "44320", "coordonnees_gps": [47.2108954989, -1.99426015028], "code_commune_insee": "44192"}, "geometry": {"type": "Point", "coordinates": [-1.99426015028, 47.2108954989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba7876532ef3ce6ac4a8bef1a36bdf7b35bf5851", "fields": {"nom_de_la_commune": "SAUTRON", "libell_d_acheminement": "SAUTRON", "code_postal": "44880", "coordonnees_gps": [47.273046688, -1.68061808645], "code_commune_insee": "44194"}, "geometry": {"type": "Point", "coordinates": [-1.68061808645, 47.273046688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "173233e3a00d11a659ab2a9325f02e3315bd0b32", "fields": {"nom_de_la_commune": "SEVERAC", "libell_d_acheminement": "SEVERAC", "code_postal": "44530", "coordonnees_gps": [47.5092008769, -2.00892310392], "code_commune_insee": "44196"}, "geometry": {"type": "Point", "coordinates": [-2.00892310392, 47.5092008769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c20d738bba4bb577e73784c50e1fea7248d7f7b1", "fields": {"nom_de_la_commune": "LES TOUCHES", "libell_d_acheminement": "LES TOUCHES", "code_postal": "44390", "coordonnees_gps": [47.4571485959, -1.52512056844], "code_commune_insee": "44205"}, "geometry": {"type": "Point", "coordinates": [-1.52512056844, 47.4571485959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baa437e8bb871c4ea9dd7fa41ff5ff09e943a1b1", "fields": {"nom_de_la_commune": "TRANS SUR ERDRE", "libell_d_acheminement": "TRANS SUR ERDRE", "code_postal": "44440", "coordonnees_gps": [47.4983275474, -1.33409165092], "code_commune_insee": "44207"}, "geometry": {"type": "Point", "coordinates": [-1.33409165092, 47.4983275474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04ed0fef63a5deffca36af059b6473816340baa", "fields": {"nom_de_la_commune": "VAY", "libell_d_acheminement": "VAY", "code_postal": "44170", "coordonnees_gps": [47.5721208092, -1.60180297391], "code_commune_insee": "44214"}, "geometry": {"type": "Point", "coordinates": [-1.60180297391, 47.5721208092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c9c6835fd4fe0753dfabd33e1a7ef5aec8fbe31", "fields": {"code_postal": "44360", "code_commune_insee": "44217", "libell_d_acheminement": "VIGNEUX DE BRETAGNE", "ligne_5": "LA PAQUELAIS", "nom_de_la_commune": "VIGNEUX DE BRETAGNE", "coordonnees_gps": [47.2931220587, -1.77460002675]}, "geometry": {"type": "Point", "coordinates": [-1.77460002675, 47.2931220587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e7e7a03798f0e9bec21426f20c80a4e15da986b", "fields": {"nom_de_la_commune": "ASCOUX", "libell_d_acheminement": "ASCOUX", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45010"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4d71b277e206113a703ebe803dfb013b97474b", "fields": {"nom_de_la_commune": "AUTRUY SUR JUINE", "libell_d_acheminement": "AUTRUY SUR JUINE", "code_postal": "45480", "coordonnees_gps": [48.2104328363, 2.06032110325], "code_commune_insee": "45015"}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5e2c8beb13dd7e5be9ce26cbd611852da2f97f", "fields": {"nom_de_la_commune": "AUVILLIERS EN GATINAIS", "libell_d_acheminement": "AUVILLIERS EN GATINAIS", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45017"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df05045a6274f5125d5c49f8f2127d59f1f673d5", "fields": {"nom_de_la_commune": "LE BARDON", "libell_d_acheminement": "LE BARDON", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45020"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0db5229e69f89b589d8aeeb7bbc2a5c7a16fba3", "fields": {"nom_de_la_commune": "BATILLY EN PUISAYE", "libell_d_acheminement": "BATILLY EN PUISAYE", "code_postal": "45420", "coordonnees_gps": [47.6034837022, 2.88243398662], "code_commune_insee": "45023"}, "geometry": {"type": "Point", "coordinates": [2.88243398662, 47.6034837022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58078e314d41c68393527ea192fefbf00932344d", "fields": {"code_postal": "45480", "code_commune_insee": "45025", "libell_d_acheminement": "BAZOCHES LES GALLERANDES", "ligne_5": "IZY", "nom_de_la_commune": "BAZOCHES LES GALLERANDES", "coordonnees_gps": [48.2104328363, 2.06032110325]}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207289480ffc84ea9c5ec60eea0585293b8a0e81", "fields": {"nom_de_la_commune": "BEAUNE LA ROLANDE", "libell_d_acheminement": "BEAUNE LA ROLANDE", "code_postal": "45340", "coordonnees_gps": [48.0647487968, 2.39617529456], "code_commune_insee": "45030"}, "geometry": {"type": "Point", "coordinates": [2.39617529456, 48.0647487968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45219cf1f20cbe227aec764425848a6c13403879", "fields": {"nom_de_la_commune": "BELLEGARDE", "libell_d_acheminement": "BELLEGARDE", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45031"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3266a5b27fde18f7f681601da4459e6020cc22c2", "fields": {"nom_de_la_commune": "BOESSES", "libell_d_acheminement": "BOESSES", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45033"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3acfa1842f8087880cbb8dc8e478363252c4c83", "fields": {"nom_de_la_commune": "BOULAY LES BARRES", "libell_d_acheminement": "BOULAY LES BARRES", "code_postal": "45140", "coordonnees_gps": [47.9387970361, 1.79888602843], "code_commune_insee": "45046"}, "geometry": {"type": "Point", "coordinates": [1.79888602843, 47.9387970361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f289263ea3e115f8abed11a2bfc2efcb751eb14", "fields": {"nom_de_la_commune": "BOYNES", "libell_d_acheminement": "BOYNES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45050"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee8412be8428569c15b5c9afa52c5b4bc02f752", "fields": {"nom_de_la_commune": "BRIARE", "libell_d_acheminement": "BRIARE", "code_postal": "45250", "coordonnees_gps": [47.6666483755, 2.7989341243], "code_commune_insee": "45053"}, "geometry": {"type": "Point", "coordinates": [2.7989341243, 47.6666483755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b556fbc5b27cf0dddb5a565b6e382d8cfb16b4b6", "fields": {"nom_de_la_commune": "BUCY ST LIPHARD", "libell_d_acheminement": "BUCY ST LIPHARD", "code_postal": "45140", "coordonnees_gps": [47.9387970361, 1.79888602843], "code_commune_insee": "45059"}, "geometry": {"type": "Point", "coordinates": [1.79888602843, 47.9387970361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b143d4411742d22710ae673abaa5b1f7ff3efe84", "fields": {"nom_de_la_commune": "LA BUSSIERE", "libell_d_acheminement": "LA BUSSIERE", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45060"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed568e358afe627529fdb7f3aacfb20e52b3a3ef", "fields": {"nom_de_la_commune": "LA CHAPELLE ONZERAIN", "libell_d_acheminement": "LA CHAPELLE ONZERAIN", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45074"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84e9ece29ec4039671c3d01bf4f332c5642da3d", "fields": {"nom_de_la_commune": "CHAPELON", "libell_d_acheminement": "CHAPELON", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45078"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975c35e8c1ea87abfb9350ea8c3ffe4025038965", "fields": {"nom_de_la_commune": "CHATENOY", "libell_d_acheminement": "CHATENOY", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45084"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6757edc47964153e1e80047beb9c718c76fd6ee", "fields": {"nom_de_la_commune": "CHATILLON SUR LOIRE", "libell_d_acheminement": "CHATILLON SUR LOIRE", "code_postal": "45360", "coordonnees_gps": [47.5591036835, 2.69824746137], "code_commune_insee": "45087"}, "geometry": {"type": "Point", "coordinates": [2.69824746137, 47.5591036835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b7b84ff4d169c4691179058dbe2a8ae8529327", "fields": {"nom_de_la_commune": "CHECY", "libell_d_acheminement": "CHECY", "code_postal": "45430", "coordonnees_gps": [47.8949996525, 2.04744187127], "code_commune_insee": "45089"}, "geometry": {"type": "Point", "coordinates": [2.04744187127, 47.8949996525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fca85f725d41ca0575c8fc2724492da3324be66", "fields": {"nom_de_la_commune": "CLERY ST ANDRE", "libell_d_acheminement": "CLERY ST ANDRE", "code_postal": "45370", "coordonnees_gps": [47.7881448232, 1.78614777532], "code_commune_insee": "45098"}, "geometry": {"type": "Point", "coordinates": [1.78614777532, 47.7881448232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915b9f3ef6af1660e260d7eb783cdcbd1a0ee3fe", "fields": {"nom_de_la_commune": "COINCES", "libell_d_acheminement": "COINCES", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45099"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcff7463c2688f22a7e424e02cf151995bee6136", "fields": {"nom_de_la_commune": "COMBREUX", "libell_d_acheminement": "COMBREUX", "code_postal": "45530", "coordonnees_gps": [47.9488737088, 2.29855578175], "code_commune_insee": "45101"}, "geometry": {"type": "Point", "coordinates": [2.29855578175, 47.9488737088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9286f7bd2d8a55078b25d6a427d1476629049c6a", "fields": {"nom_de_la_commune": "CONFLANS SUR LOING", "libell_d_acheminement": "CONFLANS SUR LOING", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45102"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e7e058d27353bd6c6f6febdd36e677ef6fed3a6", "fields": {"nom_de_la_commune": "CORQUILLEROY", "libell_d_acheminement": "CORQUILLEROY", "code_postal": "45120", "coordonnees_gps": [48.0454419877, 2.71939290754], "code_commune_insee": "45104"}, "geometry": {"type": "Point", "coordinates": [2.71939290754, 48.0454419877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a30ba53225a94b86123daa2d7e0c6d15dd689dc2", "fields": {"nom_de_la_commune": "COURCY AUX LOGES", "libell_d_acheminement": "COURCY AUX LOGES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45111"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eb55d1255b21f6b8421ceffcdd8a037ec6904ed", "fields": {"nom_de_la_commune": "CRAVANT", "libell_d_acheminement": "CRAVANT", "code_postal": "45190", "coordonnees_gps": [47.8004436022, 1.60034648518], "code_commune_insee": "45116"}, "geometry": {"type": "Point", "coordinates": [1.60034648518, 47.8004436022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c65e7f2325d5433c46c73652b1ebe5c1c665c40e", "fields": {"nom_de_la_commune": "DESMONTS", "libell_d_acheminement": "DESMONTS", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45124"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c4c09f1c600fba69d77e15d7150ba967081431", "fields": {"nom_de_la_commune": "DIMANCHEVILLE", "libell_d_acheminement": "DIMANCHEVILLE", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45125"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98eedd3e394a3230e42fa034d51e8376c4f3113", "fields": {"nom_de_la_commune": "LA FERTE ST AUBIN", "libell_d_acheminement": "LA FERTE ST AUBIN", "code_postal": "45240", "coordonnees_gps": [47.7166815663, 1.97527540747], "code_commune_insee": "45146"}, "geometry": {"type": "Point", "coordinates": [1.97527540747, 47.7166815663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63675bafcd9fff0a0541803f888329d835cb02dc", "fields": {"nom_de_la_commune": "FREVILLE DU GATINAIS", "libell_d_acheminement": "FREVILLE DU GATINAIS", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45150"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d917dd8afc8386d9ecdabba773af4b72cf849496", "fields": {"nom_de_la_commune": "GERMIGNY DES PRES", "libell_d_acheminement": "GERMIGNY DES PRES", "code_postal": "45110", "coordonnees_gps": [47.8743242491, 2.26314688236], "code_commune_insee": "45153"}, "geometry": {"type": "Point", "coordinates": [2.26314688236, 47.8743242491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c11807de298a0198873e959c0e039c5a9c5757", "fields": {"nom_de_la_commune": "GIDY", "libell_d_acheminement": "GIDY", "code_postal": "45520", "coordonnees_gps": [48.0106833156, 1.86938159284], "code_commune_insee": "45154"}, "geometry": {"type": "Point", "coordinates": [1.86938159284, 48.0106833156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568071dcdccabdc61b7c899a76b09a7d5ba767db", "fields": {"nom_de_la_commune": "GONDREVILLE", "libell_d_acheminement": "GONDREVILLE", "code_postal": "45490", "coordonnees_gps": [48.0833050669, 2.60106881052], "code_commune_insee": "45158"}, "geometry": {"type": "Point", "coordinates": [2.60106881052, 48.0833050669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2822de4ac193654ac31c28754adfe7235bb9b1bd", "fields": {"nom_de_la_commune": "GRISELLES", "libell_d_acheminement": "GRISELLES", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45161"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab91a4a1b9e22a356775d17a404b6c35837466df", "fields": {"nom_de_la_commune": "GUIGNEVILLE", "libell_d_acheminement": "GUIGNEVILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45162"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1f99e9ac7aaff352d87f7ff6f50a73155ce2d73", "fields": {"nom_de_la_commune": "HUETRE", "libell_d_acheminement": "HUETRE", "code_postal": "45520", "coordonnees_gps": [48.0106833156, 1.86938159284], "code_commune_insee": "45166"}, "geometry": {"type": "Point", "coordinates": [1.86938159284, 48.0106833156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b5b03b67cd2661960f7ddeaa7a6c20da6aab319", "fields": {"nom_de_la_commune": "HUISSEAU SUR MAUVES", "libell_d_acheminement": "HUISSEAU SUR MAUVES", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45167"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a5c7f3165d3c8684679b01a0d6a5fabefc045fc", "fields": {"nom_de_la_commune": "INTVILLE LA GUETARD", "libell_d_acheminement": "INTVILLE LA GUETARD", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45170"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31fbee9b7d60a1d28dbfb734ccd23da06c7e0ac2", "fields": {"nom_de_la_commune": "LION EN SULLIAS", "libell_d_acheminement": "LION EN SULLIAS", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45184"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f8a17f8bc5025ca61ceac0856dc587178320789", "fields": {"nom_de_la_commune": "VICQ SUR NAHON", "libell_d_acheminement": "VICQ SUR NAHON", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36237"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c63b2a227c0191764d5c004f7d74c0e82ab91eda", "fields": {"nom_de_la_commune": "VILLEGOUIN", "libell_d_acheminement": "VILLEGOUIN", "code_postal": "36500", "coordonnees_gps": [46.8581926668, 1.40600299208], "code_commune_insee": "36243"}, "geometry": {"type": "Point", "coordinates": [1.40600299208, 46.8581926668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82a2147ef9176d2020d85bfb66ad5ebf4a644f1d", "fields": {"nom_de_la_commune": "ABILLY", "libell_d_acheminement": "ABILLY", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "37001"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb79feee5ab9d3b545234baa7fcd2db6f8dcc906", "fields": {"nom_de_la_commune": "AMBILLOU", "libell_d_acheminement": "AMBILLOU", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37002"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0484ec1c03bd6b284759a6ffdafe25db2a55ef87", "fields": {"nom_de_la_commune": "AMBOISE", "libell_d_acheminement": "AMBOISE", "code_postal": "37400", "coordonnees_gps": [47.3913535441, 0.985132271005], "code_commune_insee": "37003"}, "geometry": {"type": "Point", "coordinates": [0.985132271005, 47.3913535441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef953bbfa1bc64caea0d667883f6a8cf33b7867", "fields": {"nom_de_la_commune": "ANTOGNY LE TILLAC", "libell_d_acheminement": "ANTOGNY LE TILLAC", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37005"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c921a02699ce18ef9104d9cf426e124ae166f16", "fields": {"nom_de_la_commune": "AUZOUER EN TOURAINE", "libell_d_acheminement": "AUZOUER EN TOURAINE", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37010"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73f446c9680401b0f3382f1a3f1e78fe65e762e", "fields": {"nom_de_la_commune": "BEAULIEU LES LOCHES", "libell_d_acheminement": "BEAULIEU LES LOCHES", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37020"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6170a5324b822f7099d072df473e710a00b3162", "fields": {"nom_de_la_commune": "BEAUMONT EN VERON", "libell_d_acheminement": "BEAUMONT EN VERON", "code_postal": "37420", "coordonnees_gps": [47.2193932083, 0.209651167751], "code_commune_insee": "37022"}, "geometry": {"type": "Point", "coordinates": [0.209651167751, 47.2193932083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e41012667af348c37e5d53351e815d3a7125242", "fields": {"nom_de_la_commune": "BEAUMONT VILLAGE", "libell_d_acheminement": "BEAUMONT VILLAGE", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37023"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80002186acf460e8617845d6f9643cb44b79d25d", "fields": {"nom_de_la_commune": "BLERE", "libell_d_acheminement": "BLERE", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37027"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bbcf81fefed0917e9b303e4e485aa92cf62088f", "fields": {"nom_de_la_commune": "LE BOULAY", "libell_d_acheminement": "LE BOULAY", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37030"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afe362da730f8df617e5caa2b5735253fd8178c7", "fields": {"nom_de_la_commune": "BOURGUEIL", "libell_d_acheminement": "BOURGUEIL", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37031"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f858ac5c4f64ef95d7afeb59afbfb377da6b98db", "fields": {"nom_de_la_commune": "BRECHES", "libell_d_acheminement": "BRECHES", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37037"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43930039585370f2b45ed8151e8500344fe2e973", "fields": {"nom_de_la_commune": "BUEIL EN TOURAINE", "libell_d_acheminement": "BUEIL EN TOURAINE", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37041"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b553c705858100b1e2ba401a1ad2dad7690be4d", "fields": {"nom_de_la_commune": "CERELLES", "libell_d_acheminement": "CERELLES", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37047"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50565ddff7ec4000fdc2586ba579e7ce8131f90a", "fields": {"nom_de_la_commune": "CHARENTILLY", "libell_d_acheminement": "CHARENTILLY", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37059"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13429446832153c20688aec0676f8d534b2a436a", "fields": {"nom_de_la_commune": "CHATEAU RENAULT", "libell_d_acheminement": "CHATEAU RENAULT", "code_postal": "37110", "coordonnees_gps": [47.5924450124, 0.89247386979], "code_commune_insee": "37063"}, "geometry": {"type": "Point", "coordinates": [0.89247386979, 47.5924450124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d7d558d1a6f9be0cbbb293e0c7e495eaa475f2c", "fields": {"nom_de_la_commune": "CHOUZE SUR LOIRE", "libell_d_acheminement": "CHOUZE SUR LOIRE", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37074"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30fbcc7ed99a5b20862f61cb35af78d951316390", "fields": {"nom_de_la_commune": "CIGOGNE", "libell_d_acheminement": "CIGOGNE", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37075"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e55a34fe9963355398777cf47622608f3635d5f", "fields": {"nom_de_la_commune": "CIVRAY SUR ESVES", "libell_d_acheminement": "CIVRAY SUR ESVES", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "37080"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "764fd529d0abf5997fdfe112cb012d6582a2ff06", "fields": {"nom_de_la_commune": "COUESMES", "libell_d_acheminement": "COUESMES", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37084"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74a2c24d27d359f7914cc4c3ade793f00db2220d", "fields": {"nom_de_la_commune": "CRAVANT LES COTEAUX", "libell_d_acheminement": "CRAVANT LES COTEAUX", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37089"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f585439f913521d5e6aaed9f3ab61afc1756711", "fields": {"nom_de_la_commune": "DRACHE", "libell_d_acheminement": "DRACHE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37098"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca274effe04d16d470cb5fa4497baa0cd22289dd", "fields": {"nom_de_la_commune": "DRUYE", "libell_d_acheminement": "DRUYE", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37099"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce74709cc5fdec56b868cb124222c56b4bef503", "fields": {"nom_de_la_commune": "EPEIGNE SUR DEME", "libell_d_acheminement": "EPEIGNE SUR DEME", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37101"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5761760b17901b0e6149fcdaae2941e3d7055b9", "fields": {"nom_de_la_commune": "ESVES LE MOUTIER", "libell_d_acheminement": "ESVES LE MOUTIER", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37103"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0215bc6c6f307b24b8928938423f191ffeab2a2b", "fields": {"nom_de_la_commune": "GENILLE", "libell_d_acheminement": "GENILLE", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37111"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10b85df2a4eefaa5e1355f1da933059db7115eb5", "fields": {"nom_de_la_commune": "LE GRAND PRESSIGNY", "libell_d_acheminement": "LE GRAND PRESSIGNY", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37113"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3208ac5f0ae20e58d073aff8353fc9211ee4abc", "fields": {"nom_de_la_commune": "LE LIEGE", "libell_d_acheminement": "LE LIEGE", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37127"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb80931521326374c366d4c77bf7520e261d9119", "fields": {"nom_de_la_commune": "LIGRE", "libell_d_acheminement": "LIGRE", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37129"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dba787bb4eaecc41139463183853ee71656e147", "fields": {"nom_de_la_commune": "LIMERAY", "libell_d_acheminement": "LIMERAY", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37131"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47cff7e71f42a127df368e502db6ca299ab63935", "fields": {"nom_de_la_commune": "LOUANS", "libell_d_acheminement": "LOUANS", "code_postal": "37320", "coordonnees_gps": [47.2468353824, 0.78075583867], "code_commune_insee": "37134"}, "geometry": {"type": "Point", "coordinates": [0.78075583867, 47.2468353824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d2c1a0cfa206eca535ea861befca1c2c495262b", "fields": {"nom_de_la_commune": "LOUESTAULT", "libell_d_acheminement": "LOUESTAULT", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37135"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f31278b0df59a15f2bbc2f94e9a5588267ed22", "fields": {"nom_de_la_commune": "LUZE", "libell_d_acheminement": "LUZE", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37140"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c65978d3f814793de34bf09a027345f44309f3d", "fields": {"nom_de_la_commune": "MARCAY", "libell_d_acheminement": "MARCAY", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37144"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9c229ba726de7d1c964ea0fcf986ba43b4cbbdd", "fields": {"nom_de_la_commune": "MARRAY", "libell_d_acheminement": "MARRAY", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37149"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d924518262a418dc3ecd4ced4abb879c818c5d5", "fields": {"nom_de_la_commune": "MONNAIE", "libell_d_acheminement": "MONNAIE", "code_postal": "37380", "coordonnees_gps": [47.5261492712, 0.803507929992], "code_commune_insee": "37153"}, "geometry": {"type": "Point", "coordinates": [0.803507929992, 47.5261492712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "120d394730f0a93585b606ea2a5deb1dfe4bf251", "fields": {"nom_de_la_commune": "MONTREUIL EN TOURAINE", "libell_d_acheminement": "MONTREUIL EN TOURAINE", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37158"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79270011e3452cae09841a2522065f0415eeebae", "fields": {"nom_de_la_commune": "MOUZAY", "libell_d_acheminement": "MOUZAY", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37162"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "478c7d27386e2230111fdeb7cae8072285afea9c", "fields": {"nom_de_la_commune": "NEUILLY LE BRIGNON", "libell_d_acheminement": "NEUILLY LE BRIGNON", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "37168"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da67168c3cee88be11ad806b78c3f53759deefc1", "fields": {"nom_de_la_commune": "PERRUSSON", "libell_d_acheminement": "PERRUSSON", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37183"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d008a363bb713881fefd81ef1d98cbc00f3bed", "fields": {"nom_de_la_commune": "LE PETIT PRESSIGNY", "libell_d_acheminement": "LE PETIT PRESSIGNY", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37184"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bfd8b410ae2ab6d6c75f0610ca728545c974c9d", "fields": {"nom_de_la_commune": "PREUILLY SUR CLAISE", "libell_d_acheminement": "PREUILLY SUR CLAISE", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37189"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa50517a7e34719f73910da10b8ddb205b3dd8a8", "fields": {"nom_de_la_commune": "RAZINES", "libell_d_acheminement": "RAZINES", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37191"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b58462466bed5abce7f3755be7ddefd6ef032768", "fields": {"nom_de_la_commune": "RILLE", "libell_d_acheminement": "RILLE", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37198"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5821ce31464a074673675fac4aed5dc1734ef9e3", "fields": {"nom_de_la_commune": "RIVARENNES", "libell_d_acheminement": "RIVARENNES", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37200"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5116cdf37f4618e6ccba96e17ed1d6835cff34cb", "fields": {"nom_de_la_commune": "LA ROCHE CLERMAULT", "libell_d_acheminement": "LA ROCHE CLERMAULT", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37202"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2073b99974ad7bdfd7f7a3c2f2e3f36edd0c2315", "fields": {"nom_de_la_commune": "STE CATHERINE DE FIERBOIS", "libell_d_acheminement": "STE CATHERINE DE FIERBOIS", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37212"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4e8220b05b0474b3fcf56ed7c8b1cce8237613", "fields": {"nom_de_la_commune": "ST EPAIN", "libell_d_acheminement": "ST EPAIN", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37216"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f08c2beaf8cd479f885f278232879b42fad04079", "fields": {"nom_de_la_commune": "ST JEAN ST GERMAIN", "libell_d_acheminement": "ST JEAN ST GERMAIN", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37222"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5683467465ec8993f1b22247a1affb6150976a0e", "fields": {"nom_de_la_commune": "ST LAURENT EN GATINES", "libell_d_acheminement": "ST LAURENT EN GATINES", "code_postal": "37380", "coordonnees_gps": [47.5261492712, 0.803507929992], "code_commune_insee": "37224"}, "geometry": {"type": "Point", "coordinates": [0.803507929992, 47.5261492712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbea67b0839ef774b65213fb1f3408d54c61303f", "fields": {"nom_de_la_commune": "ST PATRICE", "libell_d_acheminement": "ST PATRICE", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37232"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d2777b8aef31a21e2995dc7d10d7895fdba4032", "fields": {"nom_de_la_commune": "ST QUENTIN SUR INDROIS", "libell_d_acheminement": "ST QUENTIN SUR INDROIS", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37234"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df9c4ff12911dc5c017613a62cc2f0118d05999", "fields": {"nom_de_la_commune": "SAVIGNE SUR LATHAN", "libell_d_acheminement": "SAVIGNE SUR LATHAN", "code_postal": "37340", "coordonnees_gps": [47.4193437304, 0.31228051431], "code_commune_insee": "37241"}, "geometry": {"type": "Point", "coordinates": [0.31228051431, 47.4193437304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29ba515d87c55a1df63fb35498c9b49d4b4504e9", "fields": {"nom_de_la_commune": "SAVONNIERES", "libell_d_acheminement": "SAVONNIERES", "code_postal": "37510", "coordonnees_gps": [47.3427710301, 0.558059242204], "code_commune_insee": "37243"}, "geometry": {"type": "Point", "coordinates": [0.558059242204, 47.3427710301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dec958d0daba9ce9227687a3605cd45fed9ca3e", "fields": {"nom_de_la_commune": "SENNEVIERES", "libell_d_acheminement": "SENNEVIERES", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37246"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "841b9fdc28248274cfd0bc084fe5f7f1ec24bea3", "fields": {"nom_de_la_commune": "SONZAY", "libell_d_acheminement": "SONZAY", "code_postal": "37360", "coordonnees_gps": [47.5289315618, 0.576894142963], "code_commune_insee": "37249"}, "geometry": {"type": "Point", "coordinates": [0.576894142963, 47.5289315618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b88100c002fc77c3002f5e0faaa09a39d29434", "fields": {"nom_de_la_commune": "THIZAY", "libell_d_acheminement": "THIZAY", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37258"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b378df4f8f81538448d903d76bfd629b0f21df64", "fields": {"nom_de_la_commune": "VILLEDOMAIN", "libell_d_acheminement": "VILLEDOMAIN", "code_postal": "37460", "coordonnees_gps": [47.1615874843, 1.21084178174], "code_commune_insee": "37275"}, "geometry": {"type": "Point", "coordinates": [1.21084178174, 47.1615874843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1243090905ae23aba7e3ce297a0e5cccbbfd7158", "fields": {"nom_de_la_commune": "YZEURES SUR CREUSE", "libell_d_acheminement": "YZEURES SUR CREUSE", "code_postal": "37290", "coordonnees_gps": [46.8377885958, 0.932244721913], "code_commune_insee": "37282"}, "geometry": {"type": "Point", "coordinates": [0.932244721913, 46.8377885958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa371e257407f6bc2f1b37e37388423b4e9337b1", "fields": {"nom_de_la_commune": "LES ABRETS EN DAUPHINE", "libell_d_acheminement": "LES ABRETS EN DAUPHINE", "code_postal": "38490", "coordonnees_gps": [45.5535362276, 5.57026096515], "code_commune_insee": "38001"}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8620a20c140c4a11590d5840ff5a5d70c6b6a42", "fields": {"code_postal": "38490", "code_commune_insee": "38001", "libell_d_acheminement": "LES ABRETS EN DAUPHINE", "ligne_5": "FITILIEU", "nom_de_la_commune": "LES ABRETS EN DAUPHINE", "coordonnees_gps": [45.5535362276, 5.57026096515]}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0405d8008bba3fad7bf2b08bc925adc556d71f62", "fields": {"code_postal": "38490", "code_commune_insee": "38001", "libell_d_acheminement": "LES ABRETS EN DAUPHINE", "ligne_5": "LA BATIE DIVISIN", "nom_de_la_commune": "LES ABRETS EN DAUPHINE", "coordonnees_gps": [45.5535362276, 5.57026096515]}, "geometry": {"type": "Point", "coordinates": [5.57026096515, 45.5535362276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efacaf030dc2b9d47b70a23645933c3556d083eb", "fields": {"code_postal": "38190", "code_commune_insee": "38002", "libell_d_acheminement": "LES ADRETS", "ligne_5": "PRAPOUTEL", "nom_de_la_commune": "LES ADRETS", "coordonnees_gps": [45.2307367976, 5.94776788691]}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c21ad1a42ec7cc848eac211cc68f5e182bb413b6", "fields": {"nom_de_la_commune": "APPRIEU", "libell_d_acheminement": "APPRIEU", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38013"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33975038222647d09aacf80d7b6655f18166b9fe", "fields": {"nom_de_la_commune": "ARZAY", "libell_d_acheminement": "ARZAY", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38016"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "647b6adc5e238ff99364c70e8435ed30c709b46f", "fields": {"nom_de_la_commune": "ASSIEU", "libell_d_acheminement": "ASSIEU", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38017"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8df0387add4b659bc38402b8594bf6b84be77378", "fields": {"nom_de_la_commune": "AUBERIVES EN ROYANS", "libell_d_acheminement": "AUBERIVES EN ROYANS", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38018"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d90b13a2ca4d817c95e945c8419747cff3ce3d1", "fields": {"nom_de_la_commune": "AUBERIVES SUR VAREZE", "libell_d_acheminement": "AUBERIVES SUR VAREZE", "code_postal": "38550", "coordonnees_gps": [45.3884978642, 4.79761924958], "code_commune_insee": "38019"}, "geometry": {"type": "Point", "coordinates": [4.79761924958, 45.3884978642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75663e5faf7b4d5ad3bf4778b0c25183e2b66a12", "fields": {"nom_de_la_commune": "BALBINS", "libell_d_acheminement": "BALBINS", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38025"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9625baf5390725af859bf8f7a7f178a48b7cff3", "fields": {"nom_de_la_commune": "LA BALME LES GROTTES", "libell_d_acheminement": "LA BALME LES GROTTES", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38026"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df58cb54e7b5b79e09816c453e5b7fe3f3b05a2f", "fields": {"nom_de_la_commune": "LA BATIE MONTGASCON", "libell_d_acheminement": "LA BATIE MONTGASCON", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38029"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d244bae1463638e08f485145a7a2bc221a90da1", "fields": {"nom_de_la_commune": "BEAUFIN", "libell_d_acheminement": "BEAUFIN", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38031"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46bb4577c38bb84d2e177f111c22a86d9acde982", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38033"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da9801944f22064bff17f8752fa5035081d4bd9", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38038"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b146c76e566a65533bb12f6e0ad6f61e743eadf", "fields": {"nom_de_la_commune": "BERNIN", "libell_d_acheminement": "BERNIN", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38039"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84f54d9de3e2cf784b9124b56c42b2eeb04016f8", "fields": {"nom_de_la_commune": "BESSE", "libell_d_acheminement": "BESSE", "code_postal": "38142", "coordonnees_gps": [45.0896138023, 6.16821943755], "code_commune_insee": "38040"}, "geometry": {"type": "Point", "coordinates": [6.16821943755, 45.0896138023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1cf64e7da453faf1b9f51131c398e37e77d7741", "fields": {"nom_de_la_commune": "BESSINS", "libell_d_acheminement": "BESSINS", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38041"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2331f93008da87044843bb3da8646f582977025", "fields": {"code_postal": "38300", "code_commune_insee": "38053", "libell_d_acheminement": "BOURGOIN JALLIEU", "ligne_5": "JALLIEU", "nom_de_la_commune": "BOURGOIN JALLIEU", "coordonnees_gps": [45.5640393391, 5.29545357844]}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "439cad5759e3c852158c6bdab627e1d8f8155e70", "fields": {"nom_de_la_commune": "CHABONS", "libell_d_acheminement": "CHABONS", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38065"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e2ce6c1de161b1304056a4c904ad154786be456", "fields": {"code_postal": "38460", "code_commune_insee": "38067", "libell_d_acheminement": "CHAMAGNIEU", "ligne_5": "MIANGES", "nom_de_la_commune": "CHAMAGNIEU", "coordonnees_gps": [45.7153023241, 5.2700142747]}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd7a4ba9997db149edffe7aa636ecb76081d7af", "fields": {"nom_de_la_commune": "CHANTELOUVE", "libell_d_acheminement": "CHANTELOUVE", "code_postal": "38740", "coordonnees_gps": [44.9085893261, 6.02132611132], "code_commune_insee": "38073"}, "geometry": {"type": "Point", "coordinates": [6.02132611132, 44.9085893261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3259da5e0b9d55cbebcfd99f94989c693b3dc9ae", "fields": {"nom_de_la_commune": "CHAPAREILLAN", "libell_d_acheminement": "CHAPAREILLAN", "code_postal": "38530", "coordonnees_gps": [45.4375526666, 5.98907840878], "code_commune_insee": "38075"}, "geometry": {"type": "Point", "coordinates": [5.98907840878, 45.4375526666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2cb49ed7fde40d60357796a022869b2dff0027a", "fields": {"nom_de_la_commune": "LA CHAPELLE DE LA TOUR", "libell_d_acheminement": "LA CHAPELLE DE LA TOUR", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38076"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc5b2918fb5b547f82e14b4d5da42f3c0f8c3c50", "fields": {"nom_de_la_commune": "CHARNECLES", "libell_d_acheminement": "CHARNECLES", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38084"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44179207030bcf1a6d47772078921f9076cbc13", "fields": {"nom_de_la_commune": "CHASSIGNIEU", "libell_d_acheminement": "CHASSIGNIEU", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38089"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e45dc998dac615485f0615a5b7be8b48b2d34c5f", "fields": {"nom_de_la_commune": "CHATELUS", "libell_d_acheminement": "CHATELUS", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38092"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30d6f5c423e921904b4b63bc2ddf0096a4a0cb84", "fields": {"nom_de_la_commune": "CLAIX", "libell_d_acheminement": "CLAIX", "code_postal": "38640", "coordonnees_gps": [45.1227129219, 5.6560033815], "code_commune_insee": "38111"}, "geometry": {"type": "Point", "coordinates": [5.6560033815, 45.1227129219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea98c6325bb0f86b215e05ec9d2eca4208512cd7", "fields": {"nom_de_la_commune": "CLELLES", "libell_d_acheminement": "CLELLES EN TRIEVES", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38113"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6363128aa54c32b382f91fc161059bc2eb8f1ee3", "fields": {"nom_de_la_commune": "COGNIN LES GORGES", "libell_d_acheminement": "COGNIN LES GORGES", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38117"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2297231b554e1346184f0064be56a76c80bfa286", "fields": {"nom_de_la_commune": "COLOMBE", "libell_d_acheminement": "COLOMBE", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38118"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecd7df7a99b5910136b6e6043b82f89f671e88fa", "fields": {"nom_de_la_commune": "CORBELIN", "libell_d_acheminement": "CORBELIN", "code_postal": "38630", "coordonnees_gps": [45.6308900094, 5.56433388526], "code_commune_insee": "38124"}, "geometry": {"type": "Point", "coordinates": [5.56433388526, 45.6308900094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "652f47bcb98c750d5ccc01159d9727f629eb7ad3", "fields": {"nom_de_la_commune": "LES COTES D AREY", "libell_d_acheminement": "LES COTES D AREY", "code_postal": "38138", "coordonnees_gps": [45.4566722537, 4.87975515015], "code_commune_insee": "38131"}, "geometry": {"type": "Point", "coordinates": [4.87975515015, 45.4566722537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14a0d7334fcd8209ff705137a44880633060d8b6", "fields": {"nom_de_la_commune": "LES COTES DE CORPS", "libell_d_acheminement": "LES COTES DE CORPS", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38132"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c330498cd05f579ed2dae95f89a950d0e5f6549e", "fields": {"nom_de_la_commune": "COUBLEVIE", "libell_d_acheminement": "COUBLEVIE", "code_postal": "38500", "coordonnees_gps": [45.3696031703, 5.59866099233], "code_commune_insee": "38133"}, "geometry": {"type": "Point", "coordinates": [5.59866099233, 45.3696031703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c18a0e04fb0ac3eb5a4de7b7dec976ffc7e4c3f", "fields": {"nom_de_la_commune": "CREMIEU", "libell_d_acheminement": "CREMIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38138"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8937eee7bf17571e0b1795d3807890c2fe91628", "fields": {"nom_de_la_commune": "CREYS MEPIEU", "libell_d_acheminement": "CREYS MEPIEU", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38139"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fbc4384967fb55f05607e2e0be1731dbf912821", "fields": {"code_postal": "38510", "code_commune_insee": "38139", "libell_d_acheminement": "CREYS MEPIEU", "ligne_5": "PUSIGNIEU", "nom_de_la_commune": "CREYS MEPIEU", "coordonnees_gps": [45.7026691916, 5.45358290741]}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0c6d8bb6390e3cc8fffc5e26afaf1b59fdfbe76", "fields": {"nom_de_la_commune": "DOISSIN", "libell_d_acheminement": "DOISSIN", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38147"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4469262ce7d163899863e6ffa9fa6cd9d08b97", "fields": {"nom_de_la_commune": "FERRIERES ST MARY", "libell_d_acheminement": "FERRIERES ST MARY", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15069"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8189fc0b0ff67fa914b0286066c8a8a86b2e6833", "fields": {"nom_de_la_commune": "GIRGOLS", "libell_d_acheminement": "GIRGOLS", "code_postal": "15310", "coordonnees_gps": [45.0470485491, 2.40091577072], "code_commune_insee": "15075"}, "geometry": {"type": "Point", "coordinates": [2.40091577072, 45.0470485491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e26c6583d3b95746cd6308221d2bd690393c0af", "fields": {"nom_de_la_commune": "GLENAT", "libell_d_acheminement": "GLENAT", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15076"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d349f3a224abc800a9a4eb77704b6b0ae06710b0", "fields": {"nom_de_la_commune": "GOURDIEGES", "libell_d_acheminement": "GOURDIEGES", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15077"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "577eee1fe6d3337d0f1333ca51430eb6dc40603b", "fields": {"nom_de_la_commune": "JUNHAC", "libell_d_acheminement": "JUNHAC", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15082"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de355aac7ddccea8b8d24870212e7af02c55da2d", "fields": {"nom_de_la_commune": "LACAPELLE BARRES", "libell_d_acheminement": "LACAPELLE BARRES", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15086"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3714265d4df8aff87abad330e21b7450c5f8c3c", "fields": {"nom_de_la_commune": "LADINHAC", "libell_d_acheminement": "LADINHAC", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15089"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b64d9e7fdaacfc1e1b28c82aea62a46605f2eca0", "fields": {"code_postal": "15270", "code_commune_insee": "15092", "libell_d_acheminement": "LANOBRE", "ligne_5": "GRANGES", "nom_de_la_commune": "LANOBRE", "coordonnees_gps": [45.4132624224, 2.59541322331]}, "geometry": {"type": "Point", "coordinates": [2.59541322331, 45.4132624224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda8a1876a3c5093cae6cec74f49ca9529c9dfcc", "fields": {"nom_de_la_commune": "LAVEISSIERE", "libell_d_acheminement": "LAVEISSIERE", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15101"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5d65fedc912f067a8cdbd8ac74148e3752aec98", "fields": {"nom_de_la_commune": "MANDAILLES ST JULIEN", "libell_d_acheminement": "MANDAILLES ST JULIEN", "code_postal": "15590", "coordonnees_gps": [45.0490320322, 2.61650882342], "code_commune_insee": "15113"}, "geometry": {"type": "Point", "coordinates": [2.61650882342, 45.0490320322]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "063e694a36524ae43a7a834c7fe8a23f860a4461", "fields": {"nom_de_la_commune": "MARCENAT", "libell_d_acheminement": "MARCENAT", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15114"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "816a66f461c3010eea8ccf1f49b6c19c57827906", "fields": {"nom_de_la_commune": "MARCOLES", "libell_d_acheminement": "MARCOLES", "code_postal": "15220", "coordonnees_gps": [44.8209308768, 2.34473285638], "code_commune_insee": "15117"}, "geometry": {"type": "Point", "coordinates": [2.34473285638, 44.8209308768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5d1c63af64bf5cd8ed9aa22f46e961415628400", "fields": {"nom_de_la_commune": "MAURS", "libell_d_acheminement": "MAURS", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15122"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc2fe9614473b6e39ca484ef8a7d198f08db0fd", "fields": {"nom_de_la_commune": "MEALLET", "libell_d_acheminement": "MEALLET", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15123"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70bcd115caa0982d9c2f387c376c871a265d7c48", "fields": {"nom_de_la_commune": "MOLEDES", "libell_d_acheminement": "MOLEDES", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15126"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36ffc1a9f605c1a1def0b7ea2ca81d49338824a7", "fields": {"nom_de_la_commune": "LE MONTEIL", "libell_d_acheminement": "LE MONTEIL", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15131"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90522a8de310fe42fc787ae6031e3f5e3c6f1a38", "fields": {"nom_de_la_commune": "OMPS", "libell_d_acheminement": "OMPS", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15144"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78196a8d7064dda602389cc2267a9ddddbec90f9", "fields": {"nom_de_la_commune": "PAILHEROLS", "libell_d_acheminement": "PAILHEROLS", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15146"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5025fd7889926aa6663a126d76c03ed8316682e7", "fields": {"nom_de_la_commune": "PAULHAC", "libell_d_acheminement": "PAULHAC", "code_postal": "15430", "coordonnees_gps": [45.0110291725, 2.89903675921], "code_commune_insee": "15148"}, "geometry": {"type": "Point", "coordinates": [2.89903675921, 45.0110291725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cad3edc7953e30d58043f6ad6196bbf07324084", "fields": {"nom_de_la_commune": "POLMINHAC", "libell_d_acheminement": "POLMINHAC", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15154"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c791c1ef622949c13b03ecb2de3a69b2e8f8f877", "fields": {"nom_de_la_commune": "PRADIERS", "libell_d_acheminement": "PRADIERS", "code_postal": "15160", "coordonnees_gps": [45.252065959, 2.92878213054], "code_commune_insee": "15155"}, "geometry": {"type": "Point", "coordinates": [2.92878213054, 45.252065959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24897faf043bc67942728df8e70d3008de580368", "fields": {"nom_de_la_commune": "RIOM ES MONTAGNES", "libell_d_acheminement": "RIOM ES MONTAGNES", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15162"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64481ecf2e6676a2023f65a19677a428f4d7fa8b", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15180"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9dd58a0a03488e644eac350889a43f69fd9ea8c", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15198"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a39a80b11529491f4d017abc9da6f7a784c19690", "fields": {"nom_de_la_commune": "ST MARY LE PLAIN", "libell_d_acheminement": "ST MARY LE PLAIN", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15203"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a123de07e1759c2bfe0cbafa3f9fd32fa1244a", "fields": {"nom_de_la_commune": "ST PAUL DES LANDES", "libell_d_acheminement": "ST PAUL DES LANDES", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15204"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b051c59e1f04d2b3072fbd3246eb5ccd7fa2c0", "fields": {"nom_de_la_commune": "SANSAC DE MARMIESSE", "libell_d_acheminement": "SANSAC DE MARMIESSE", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15221"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3fd6fa96404f0dbb5292cbb43e971e9cac05abb", "fields": {"nom_de_la_commune": "SERIERS", "libell_d_acheminement": "SERIERS", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15227"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb469bddde41713ad00dc038ffcf320769f3e2b4", "fields": {"nom_de_la_commune": "SOURNIAC", "libell_d_acheminement": "SOURNIAC", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15230"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1abf7a4bcd268af15629d9a4daafee7cf305282c", "fields": {"nom_de_la_commune": "VELZIC", "libell_d_acheminement": "VELZIC", "code_postal": "15590", "coordonnees_gps": [45.0490320322, 2.61650882342], "code_commune_insee": "15252"}, "geometry": {"type": "Point", "coordinates": [2.61650882342, 45.0490320322]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05099623b5569baa2f48f2b2c878ca33ab96aa58", "fields": {"nom_de_la_commune": "VEZAC", "libell_d_acheminement": "VEZAC", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15255"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fdb2d69d6213bde474d74968b5c497481bba305", "fields": {"nom_de_la_commune": "VEZE", "libell_d_acheminement": "VEZE", "code_postal": "15160", "coordonnees_gps": [45.252065959, 2.92878213054], "code_commune_insee": "15256"}, "geometry": {"type": "Point", "coordinates": [2.92878213054, 45.252065959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9508e99befcbf9ad43335fad80d06b774c4c6d25", "fields": {"nom_de_la_commune": "VIEILLESPESSE", "libell_d_acheminement": "VIEILLESPESSE", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15259"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2963c7a03cdf16f33b811663ab74584998399513", "fields": {"nom_de_la_commune": "LE VIGEAN", "libell_d_acheminement": "LE VIGEAN", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15261"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b569a14751b2cc5b7a3c0e5280783590f8ee108", "fields": {"nom_de_la_commune": "BESSE", "libell_d_acheminement": "BESSE", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15269"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8875f88050f4f51a9e001b1de692ba62148a5b34", "fields": {"nom_de_la_commune": "AIGNES ET PUYPEROUX", "libell_d_acheminement": "AIGNES ET PUYPEROUX", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16004"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f11b4828c5b4fac13d397449e42ac7def90a2639", "fields": {"nom_de_la_commune": "AMBERNAC", "libell_d_acheminement": "AMBERNAC", "code_postal": "16490", "coordonnees_gps": [46.0379756155, 0.534996364854], "code_commune_insee": "16009"}, "geometry": {"type": "Point", "coordinates": [0.534996364854, 46.0379756155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eef5feae65cd0244a47b67d5dc45a5732f79f6d4", "fields": {"nom_de_la_commune": "ANGEAC CHAMPAGNE", "libell_d_acheminement": "ANGEAC CHAMPAGNE", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16012"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5252fd7abbd5e5605209b79f827711027ebd3c20", "fields": {"nom_de_la_commune": "ANGEAC CHARENTE", "libell_d_acheminement": "ANGEAC CHARENTE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16013"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974f4e6d0addf88624f15306dcaea88469e97280", "fields": {"nom_de_la_commune": "AUNAC", "libell_d_acheminement": "AUNAC", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16023"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18005d3b8e7a75875d5dcb577b89bf0e8322ccdd", "fields": {"nom_de_la_commune": "AUSSAC VADALLE", "libell_d_acheminement": "AUSSAC VADALLE", "code_postal": "16560", "coordonnees_gps": [45.7971229421, 0.228616838557], "code_commune_insee": "16024"}, "geometry": {"type": "Point", "coordinates": [0.228616838557, 45.7971229421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fceb54d58b214031b866c8e957f1b53faf0b5034", "fields": {"nom_de_la_commune": "BARBEZIEUX ST HILAIRE", "libell_d_acheminement": "BARBEZIEUX ST HILAIRE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16028"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67066bb31c050e91c3f608110e01b599191ef37f", "fields": {"nom_de_la_commune": "BECHERESSE", "libell_d_acheminement": "BECHERESSE", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16036"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf0a7323a4a309aa173d71d0b1cabe6634bc72d3", "fields": {"nom_de_la_commune": "BESSE", "libell_d_acheminement": "BESSE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16042"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f34b8dc28533d2545e8ad5d4c3a10d6a368a622", "fields": {"nom_de_la_commune": "BLANZAC PORCHERESSE", "libell_d_acheminement": "BLANZAC PORCHERESSE", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16046"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adf926a0cfe1a9d85a08d72a1a62087c88e67f9d", "fields": {"nom_de_la_commune": "CHABRAC", "libell_d_acheminement": "CHABRAC", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16071"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3e27d1ea8b83064066cd7a54d82b57a88630402", "fields": {"nom_de_la_commune": "CHADURIE", "libell_d_acheminement": "CHADURIE", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16072"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5c49a8fcbe6d2423c0423de65634de4fa9304cd", "fields": {"code_postal": "16210", "code_commune_insee": "16073", "libell_d_acheminement": "CHALAIS", "ligne_5": "STE MARIE", "nom_de_la_commune": "CHALAIS", "coordonnees_gps": [45.2719672367, 0.0511310562847]}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d5be760fa996cda662cb0130f368332e444ca3", "fields": {"nom_de_la_commune": "CHALLIGNAC", "libell_d_acheminement": "CHALLIGNAC", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16074"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb1e3bdc66f1494dd800d09bb5ac4eeedf986f2", "fields": {"nom_de_la_commune": "CHAMPAGNE VIGNY", "libell_d_acheminement": "CHAMPAGNE VIGNY", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16075"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80326c133e9029b41fca55dc1f0a1c6e1b5030e3", "fields": {"nom_de_la_commune": "LA CHAPELLE", "libell_d_acheminement": "LA CHAPELLE", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16081"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfc52972121a3303fa63b7f530559aa0d5cfd4e3", "fields": {"code_postal": "16320", "code_commune_insee": "16082", "libell_d_acheminement": "BOISNE LA TUDE", "ligne_5": "CHAVENAT", "nom_de_la_commune": "BOISNE LA TUDE", "coordonnees_gps": [45.4895091736, 0.297130161872]}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5cddc37ebdd300d2e092e69cf00c5ff1832024c", "fields": {"nom_de_la_commune": "CHARRAS", "libell_d_acheminement": "CHARRAS", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16084"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8617241f1a3c6c879ee31a5953b55ada3e9a05", "fields": {"nom_de_la_commune": "CHATEAUNEUF SUR CHARENTE", "libell_d_acheminement": "CHATEAUNEUF SUR CHARENTE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16090"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2bd53417ea940016e95b819917ba56f2cfaae57", "fields": {"nom_de_la_commune": "CHAZELLES", "libell_d_acheminement": "CHAZELLES", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16093"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a71d857ba02746b279a8fbe4e72c73d2fd8b13bf", "fields": {"code_postal": "16370", "code_commune_insee": "16097", "libell_d_acheminement": "CHERVES RICHEMONT", "ligne_5": "RICHEMONT", "nom_de_la_commune": "CHERVES RICHEMONT", "coordonnees_gps": [45.7599366195, -0.346092589002]}, "geometry": {"type": "Point", "coordinates": [-0.346092589002, 45.7599366195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ce6442c6022193f027a7c6a4ed230931bf9e3c5", "fields": {"nom_de_la_commune": "CHILLAC", "libell_d_acheminement": "CHILLAC", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16099"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f875c96658022614c4124a3a52971847915ac743", "fields": {"nom_de_la_commune": "COULONGES", "libell_d_acheminement": "COULONGES", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16108"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71326c4dd5b0ddb32df741d56c9e249fcf3e2a0b", "fields": {"nom_de_la_commune": "COURGEAC", "libell_d_acheminement": "COURGEAC", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16111"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a49a13d1e945ab9d272811984022427d6ec02d21", "fields": {"nom_de_la_commune": "COUTURE", "libell_d_acheminement": "COUTURE", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16114"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d714b19560dc75c47d745bc2ba89972be4dabcf", "fields": {"code_postal": "16250", "code_commune_insee": "16115", "libell_d_acheminement": "CRESSAC ST GENIS", "ligne_5": "ST GENIS DE BLANZAC", "nom_de_la_commune": "CRESSAC ST GENIS", "coordonnees_gps": [45.4908805694, 0.0542614769759]}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ae0dfb414f841ce5fd9d4d18699fdf35ffd746", "fields": {"nom_de_la_commune": "CURAC", "libell_d_acheminement": "CURAC", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16117"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6954151f7d70c49a57e75f0e45b3ac154b878496", "fields": {"nom_de_la_commune": "DEVIAT", "libell_d_acheminement": "DEVIAT", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16118"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e7ed2926dbfd668f52787afdeab7d80b49d12f1", "fields": {"nom_de_la_commune": "EDON", "libell_d_acheminement": "EDON", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16125"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "309ad55fd885f193a747541f1b26a060a77a2a8f", "fields": {"nom_de_la_commune": "ETRIAC", "libell_d_acheminement": "ETRIAC", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16133"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8fda3d0bd03f76d7b92e2c7416e1e5601d9a1d2", "fields": {"nom_de_la_commune": "GENSAC LA PALLUE", "libell_d_acheminement": "GENSAC LA PALLUE", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16150"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e57050904b46baefdb403a2ff92e9c1863016cf", "fields": {"nom_de_la_commune": "GENTE", "libell_d_acheminement": "GENTE", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16151"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2208f97f4a39fb988339c5385f1597abcb9f8e45", "fields": {"nom_de_la_commune": "LES GOURS", "libell_d_acheminement": "LES GOURS", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16155"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97229e10ff6b9bb99a53df01238c272ad4330120", "fields": {"nom_de_la_commune": "GOURVILLE", "libell_d_acheminement": "GOURVILLE", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16156"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633c919374af7086e74c178ab0667d10083b65b9", "fields": {"nom_de_la_commune": "GUIZENGEARD", "libell_d_acheminement": "GUIZENGEARD", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16161"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d99a76b71cf9a3e0f83d76d23b3ae0764eecee6", "fields": {"nom_de_la_commune": "JARNAC", "libell_d_acheminement": "JARNAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16167"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d0f216d08731991bce67a094c038d86e51b993", "fields": {"code_postal": "16250", "code_commune_insee": "16175", "libell_d_acheminement": "VAL DES VIGNES", "ligne_5": "AUBEVILLE", "nom_de_la_commune": "VAL DES VIGNES", "coordonnees_gps": [45.4908805694, 0.0542614769759]}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5e5b2057c0e3fe1be50f4e1087b10477d22c044", "fields": {"code_postal": "16250", "code_commune_insee": "16175", "libell_d_acheminement": "VAL DES VIGNES", "ligne_5": "PEREUIL", "nom_de_la_commune": "VAL DES VIGNES", "coordonnees_gps": [45.4908805694, 0.0542614769759]}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fafe9a6e31ae7aca52ded409beaecb6fceaffa28", "fields": {"nom_de_la_commune": "LONGRE", "libell_d_acheminement": "LONGRE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16190"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd2eba0f62d7eae1a0305944749d3e8a88d623e", "fields": {"code_postal": "16100", "code_commune_insee": "16193", "libell_d_acheminement": "LOUZAC ST ANDRE", "ligne_5": "ST ANDRE", "nom_de_la_commune": "LOUZAC ST ANDRE", "coordonnees_gps": [45.6930431054, -0.342281931836]}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccc467007674e3148035e3ffb987dbbe494c06a0", "fields": {"nom_de_la_commune": "LUSSAC", "libell_d_acheminement": "LUSSAC", "code_postal": "16450", "coordonnees_gps": [45.9168932329, 0.460927666406], "code_commune_insee": "16195"}, "geometry": {"type": "Point", "coordinates": [0.460927666406, 45.9168932329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53cc744b76c0e884f6b60fe8222a1fb274fa2a5b", "fields": {"nom_de_la_commune": "MAINZAC", "libell_d_acheminement": "MAINZAC", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16203"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d81734a83d99aa798b0b2ea3b361bda015ef70c", "fields": {"nom_de_la_commune": "MANSLE", "libell_d_acheminement": "MANSLE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16206"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c167c61e9f3fde65357fa219b0d3b6b94bc08db2", "fields": {"nom_de_la_commune": "MARTHON", "libell_d_acheminement": "MARTHON", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16211"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568251e639871fd431086f19274970f728c234e2", "fields": {"nom_de_la_commune": "MAZIERES", "libell_d_acheminement": "MAZIERES", "code_postal": "16270", "coordonnees_gps": [45.8834000837, 0.571194894473], "code_commune_insee": "16214"}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8cdf28fb3f9d075d0631c5e82fa725ce6b26521", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16221"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58a353371544d7236c54a649ca18c35ab5289792", "fields": {"nom_de_la_commune": "MONTEMBOEUF", "libell_d_acheminement": "MONTEMBOEUF", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16225"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f701f9a6d6fbd51fe0462b08d5459f0d60127c", "fields": {"nom_de_la_commune": "MONTROLLET", "libell_d_acheminement": "MONTROLLET", "code_postal": "16420", "coordonnees_gps": [45.9795586086, 0.838157166739], "code_commune_insee": "16231"}, "geometry": {"type": "Point", "coordinates": [0.838157166739, 45.9795586086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c8d1a17d43ef50fa758b8642a320d0e4f0b23b7", "fields": {"nom_de_la_commune": "MOUTON", "libell_d_acheminement": "MOUTON", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16237"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69ba5cea8c331d35610639aa369844c650464866", "fields": {"nom_de_la_commune": "NABINAUD", "libell_d_acheminement": "NABINAUD", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16240"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e77535cd37ab919774000d649600ce08805ce0a3", "fields": {"nom_de_la_commune": "NANCLARS", "libell_d_acheminement": "NANCLARS", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16241"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a647636242de3178705df96e373df3b55fe119", "fields": {"code_postal": "16700", "code_commune_insee": "16242", "libell_d_acheminement": "NANTEUIL EN VALLEE", "ligne_5": "AIZECQ", "nom_de_la_commune": "NANTEUIL EN VALLEE", "coordonnees_gps": [46.0168761938, 0.246377896211]}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efdc5a9379c58265863d10bcaeebd05976ab21dd", "fields": {"code_postal": "16700", "code_commune_insee": "16242", "libell_d_acheminement": "NANTEUIL EN VALLEE", "ligne_5": "MOUTARDON", "nom_de_la_commune": "NANTEUIL EN VALLEE", "coordonnees_gps": [46.0168761938, 0.246377896211]}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b0c0ff31c141a1d2ebc65a6e2447f51862464a", "fields": {"code_postal": "16700", "code_commune_insee": "16242", "libell_d_acheminement": "NANTEUIL EN VALLEE", "ligne_5": "POUGNE", "nom_de_la_commune": "NANTEUIL EN VALLEE", "coordonnees_gps": [46.0168761938, 0.246377896211]}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca9144e4cf579158d72b627b0e5800c825908a5", "fields": {"code_postal": "16700", "code_commune_insee": "16242", "libell_d_acheminement": "NANTEUIL EN VALLEE", "ligne_5": "ST GERVAIS", "nom_de_la_commune": "NANTEUIL EN VALLEE", "coordonnees_gps": [46.0168761938, 0.246377896211]}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c84d1cd99e830e80f43d38e524717d6051beac19", "fields": {"nom_de_la_commune": "NERSAC", "libell_d_acheminement": "NERSAC", "code_postal": "16440", "coordonnees_gps": [45.5763660352, 0.064435228401], "code_commune_insee": "16244"}, "geometry": {"type": "Point", "coordinates": [0.064435228401, 45.5763660352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52259284cc593bd543ef06cc38a9a81707efab93", "fields": {"nom_de_la_commune": "NONAC", "libell_d_acheminement": "NONAC", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16246"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46af9d4be4f6642e2f4da072f777a677fbb97177", "fields": {"nom_de_la_commune": "PRANZAC", "libell_d_acheminement": "PRANZAC", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16269"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e523887ed711dbce3a18331945c71acc1a3ee7ba", "fields": {"nom_de_la_commune": "PUYMOYEN", "libell_d_acheminement": "PUYMOYEN", "code_postal": "16400", "coordonnees_gps": [45.6075102934, 0.129005095086], "code_commune_insee": "16271"}, "geometry": {"type": "Point", "coordinates": [0.129005095086, 45.6075102934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1587f093790d02573d61be411028cc376f581cae", "fields": {"nom_de_la_commune": "RAIX", "libell_d_acheminement": "RAIX", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16273"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038830a6dc2ac8cdf258203f6f0f776d5d8632b6", "fields": {"nom_de_la_commune": "REIGNAC", "libell_d_acheminement": "REIGNAC", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16276"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53055cad100de09e0dccf20d1637df0a2e6a2ee4", "fields": {"code_postal": "16440", "code_commune_insee": "16287", "libell_d_acheminement": "ROULLET ST ESTEPHE", "ligne_5": "ST ESTEPHE", "nom_de_la_commune": "ROULLET ST ESTEPHE", "coordonnees_gps": [45.5763660352, 0.064435228401]}, "geometry": {"type": "Point", "coordinates": [0.064435228401, 45.5763660352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec262952c1eac7b38e0af086eb391c0be029fc0", "fields": {"nom_de_la_commune": "ST AMANT DE MONTMOREAU", "libell_d_acheminement": "ST AMANT DE MONTMOREAU", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16294"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef9d4c115fce3c0526e5ce87f5683e73068fcf26", "fields": {"nom_de_la_commune": "ST AMANT DE BOIXE", "libell_d_acheminement": "ST AMANT DE BOIXE", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16295"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3914504cc7371d2abd9e9cf05279fc81b0243a6", "fields": {"nom_de_la_commune": "ST AMANT DE NOUERE", "libell_d_acheminement": "ST AMANT DE NOUERE", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16298"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94e1ed9a3805afdd4b4abeee6c6e08aa0399c83f", "fields": {"nom_de_la_commune": "DOMFRONT EN CHAMPAGNE", "libell_d_acheminement": "DOMFRONT EN CHAMPAGNE", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72119"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a220f16051052a241cbb230a12c79eaa5de27076", "fields": {"nom_de_la_commune": "DUNEAU", "libell_d_acheminement": "DUNEAU", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72122"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62f9436b11c4166fab7d7f6f4e576cc35c50936c", "fields": {"nom_de_la_commune": "DUREIL", "libell_d_acheminement": "DUREIL", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72123"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b72629d1c68f2d9ec7de220ceba257f899024c3", "fields": {"nom_de_la_commune": "ECOMMOY", "libell_d_acheminement": "ECOMMOY", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72124"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07ad74f89a214b5dcef218b257cd90b95f9ea577", "fields": {"nom_de_la_commune": "EPINEU LE CHEVREUIL", "libell_d_acheminement": "EPINEU LE CHEVREUIL", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72126"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ef9f7579227b0fc91499c2451224fcd79284d0", "fields": {"nom_de_la_commune": "LA FONTAINE ST MARTIN", "libell_d_acheminement": "LA FONTAINE ST MARTIN", "code_postal": "72330", "coordonnees_gps": [47.82608186, 0.101010219107], "code_commune_insee": "72135"}, "geometry": {"type": "Point", "coordinates": [0.101010219107, 47.82608186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a7f1ac9f3066ee5633cf31b6b9f8246593d0c3", "fields": {"nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72137"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "273892920729fe7cbfeb7c5a8cf1b16f506cc765", "fields": {"nom_de_la_commune": "FYE", "libell_d_acheminement": "FYE", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72139"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6057f22de2088b5954c43713eff37b8fbf85f0", "fields": {"nom_de_la_commune": "GESNES LE GANDELIN", "libell_d_acheminement": "GESNES LE GANDELIN", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72141"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b423a9d2c670c1c4b14446579d8dfc64552561a4", "fields": {"nom_de_la_commune": "GRANDCHAMP", "libell_d_acheminement": "GRANDCHAMP", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72142"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a2c5a581e173209573ed4a2f1eea32e7565009", "fields": {"nom_de_la_commune": "LE GRAND LUCE", "libell_d_acheminement": "LE GRAND LUCE", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72143"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fd3145bf9fc2f9c66d89f307bf36a0e97791233", "fields": {"nom_de_la_commune": "GREEZ SUR ROC", "libell_d_acheminement": "GREEZ SUR ROC", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72144"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aecebe8be7224dac7695be7b09e7e80ccb057acd", "fields": {"nom_de_la_commune": "JAUZE", "libell_d_acheminement": "JAUZE", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72148"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94eb4144a386b0e0a75d5d3b16dfdb0cc8e0e48e", "fields": {"nom_de_la_commune": "LAVARE", "libell_d_acheminement": "LAVARE", "code_postal": "72390", "coordonnees_gps": [48.0512827227, 0.629748234249], "code_commune_insee": "72158"}, "geometry": {"type": "Point", "coordinates": [0.629748234249, 48.0512827227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15f26485cdb39a2d181d7359865d5da4f0067427", "fields": {"nom_de_la_commune": "LOMBRON", "libell_d_acheminement": "LOMBRON", "code_postal": "72450", "coordonnees_gps": [48.0737249038, 0.408649166982], "code_commune_insee": "72165"}, "geometry": {"type": "Point", "coordinates": [0.408649166982, 48.0737249038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa94f699b1d86618a494b4a8803a523610dab81", "fields": {"nom_de_la_commune": "LOUPLANDE", "libell_d_acheminement": "LOUPLANDE", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72169"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01e8c3eb1400b6e6c050e76cc8a39167d26ff8c7", "fields": {"nom_de_la_commune": "LOUVIGNY", "libell_d_acheminement": "LOUVIGNY", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72170"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77715dc32350f392b557861ac4a57bc0acf8014f", "fields": {"nom_de_la_commune": "LUCE SOUS BALLON", "libell_d_acheminement": "LUCE SOUS BALLON", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72174"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad04157bd13782bbaf2b4084860a17955ef37b7c", "fields": {"nom_de_la_commune": "LUCHE PRINGE", "libell_d_acheminement": "LUCHE PRINGE", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72175"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8667e87281b6e40f7bf13b2c615684bb1de6c6c2", "fields": {"nom_de_la_commune": "MAISONCELLES", "libell_d_acheminement": "MAISONCELLES", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72178"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d55bbd1600afd4bf760a31a425a267adc88a5764", "fields": {"nom_de_la_commune": "LE MANS", "libell_d_acheminement": "LE MANS", "code_postal": "72000", "coordonnees_gps": [47.9887754636, 0.199888551607], "code_commune_insee": "72181"}, "geometry": {"type": "Point", "coordinates": [0.199888551607, 47.9887754636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b681afe826ba541f9e433523722b583eb218d9cc", "fields": {"nom_de_la_commune": "LE MANS", "libell_d_acheminement": "LE MANS", "code_postal": "72100", "coordonnees_gps": [47.9887754636, 0.199888551607], "code_commune_insee": "72181"}, "geometry": {"type": "Point", "coordinates": [0.199888551607, 47.9887754636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0c2d24605d73beb2d06c2ac1d4aa59353adc9c2", "fields": {"nom_de_la_commune": "MANSIGNE", "libell_d_acheminement": "MANSIGNE", "code_postal": "72510", "coordonnees_gps": [47.7600092063, 0.139219846334], "code_commune_insee": "72182"}, "geometry": {"type": "Point", "coordinates": [0.139219846334, 47.7600092063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1359b1cdd4e4ed93daee858bb69c4fa3caf7b6d3", "fields": {"nom_de_la_commune": "LES MEES", "libell_d_acheminement": "LES MEES", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72192"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e9cd5330faa9d33652473869bb26c1c826347d", "fields": {"code_postal": "72170", "code_commune_insee": "72199", "libell_d_acheminement": "MOITRON SUR SARTHE", "ligne_5": "LE GUE LIAN", "nom_de_la_commune": "MOITRON SUR SARTHE", "coordonnees_gps": [48.2253463465, 0.101974338988]}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b6b1851d1c629de187d57af7da96ff16c94f8d2", "fields": {"nom_de_la_commune": "MONCE EN SAOSNOIS", "libell_d_acheminement": "MONCE EN SAOSNOIS", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72201"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ff6d02a4d5ac3a61df29a090b3757c2c411979", "fields": {"nom_de_la_commune": "MONTAILLE", "libell_d_acheminement": "MONTAILLE", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72204"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1858caa1482aff2e0e24f6cb16f5302a5873ff43", "fields": {"nom_de_la_commune": "MONT ST JEAN", "libell_d_acheminement": "MONT ST JEAN", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72211"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307dbd32199368c2dd26842980ae0dc88acbf41f", "fields": {"nom_de_la_commune": "MULSANNE", "libell_d_acheminement": "MULSANNE", "code_postal": "72230", "coordonnees_gps": [47.913932839, 0.210035627904], "code_commune_insee": "72213"}, "geometry": {"type": "Point", "coordinates": [0.210035627904, 47.913932839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc54ea6561eac8cac86ba0765a97b958fef4cef0", "fields": {"nom_de_la_commune": "NEUFCHATEL EN SAOSNOIS", "libell_d_acheminement": "NEUFCHATEL EN SAOSNOIS", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72215"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "546f3e093e16000c7156fe8958f624c76b6d1be1", "fields": {"nom_de_la_commune": "NUILLE LE JALAIS", "libell_d_acheminement": "NUILLE LE JALAIS", "code_postal": "72370", "coordonnees_gps": [48.0020289464, 0.465705755443], "code_commune_insee": "72224"}, "geometry": {"type": "Point", "coordinates": [0.465705755443, 48.0020289464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f2659ef0380ece94d8a2b81b1448911ed089cac", "fields": {"nom_de_la_commune": "PARCE SUR SARTHE", "libell_d_acheminement": "PARCE SUR SARTHE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72228"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d2b727dcad86e02275ea5d14777dd14a2e321e", "fields": {"nom_de_la_commune": "PARENNES", "libell_d_acheminement": "PARENNES", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72229"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29bb0db6c72a8592f60b06e7e43d93f125f007d7", "fields": {"nom_de_la_commune": "PEZE LE ROBERT", "libell_d_acheminement": "PEZE LE ROBERT", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72234"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5963cf94aab72fd2f7cf5920497c35863295719f", "fields": {"nom_de_la_commune": "POILLE SUR VEGRE", "libell_d_acheminement": "POILLE SUR VEGRE", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72239"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "351b43cfa6439f5879d830ba4a9aba123889b241", "fields": {"nom_de_la_commune": "PONCE SUR LE LOIR", "libell_d_acheminement": "PONCE SUR LE LOIR", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72240"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff4246f846fb7e2e8b8b7fa6efa6e6d3feee3dd", "fields": {"nom_de_la_commune": "PONTVALLAIN", "libell_d_acheminement": "PONTVALLAIN", "code_postal": "72510", "coordonnees_gps": [47.7600092063, 0.139219846334], "code_commune_insee": "72243"}, "geometry": {"type": "Point", "coordinates": [0.139219846334, 47.7600092063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff81bef1e316ad1e467f10f3035675ae9106360e", "fields": {"nom_de_la_commune": "PRUILLE L EGUILLE", "libell_d_acheminement": "PRUILLE L EGUILLE", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72248"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74481237eb01b19243abba54380da5a7cb6f7dcb", "fields": {"nom_de_la_commune": "LA QUINTE", "libell_d_acheminement": "LA QUINTE", "code_postal": "72550", "coordonnees_gps": [48.0233786527, 0.0301205478964], "code_commune_insee": "72249"}, "geometry": {"type": "Point", "coordinates": [0.0301205478964, 48.0233786527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8196a4fb8ccc5c6d9a0ed35b932eb4a0bf38d1eb", "fields": {"nom_de_la_commune": "REQUEIL", "libell_d_acheminement": "REQUEIL", "code_postal": "72510", "coordonnees_gps": [47.7600092063, 0.139219846334], "code_commune_insee": "72252"}, "geometry": {"type": "Point", "coordinates": [0.139219846334, 47.7600092063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02bb57b4e3ea6ded6dfc7453460070c9ab9dff97", "fields": {"nom_de_la_commune": "RUILLE SUR LOIR", "libell_d_acheminement": "RUILLE SUR LOIR", "code_postal": "72340", "coordonnees_gps": [47.7457423394, 0.569955987774], "code_commune_insee": "72262"}, "geometry": {"type": "Point", "coordinates": [0.569955987774, 47.7457423394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d13f216e0a8e2b68de57d2140c3a1133ba30f90", "fields": {"nom_de_la_commune": "SABLE SUR SARTHE", "libell_d_acheminement": "SABLE SUR SARTHE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72264"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b2944e068be0bde8156f380c8618b43f9e36be1", "fields": {"nom_de_la_commune": "ST CALEZ EN SAOSNOIS", "libell_d_acheminement": "ST CALEZ EN SAOSNOIS", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72270"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05ef2c570655c1e1550380a28bf77c6c0bb5b872", "fields": {"nom_de_la_commune": "ST GEORGES DE LA COUEE", "libell_d_acheminement": "ST GEORGES DE LA COUEE", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72279"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f21d03839ffe6b4e81d94575139b87fc0baf3926", "fields": {"nom_de_la_commune": "ST GEORGES LE GAULTIER", "libell_d_acheminement": "ST GEORGES LE GAULTIER", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72282"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea46e7e94bd0896fce7f62273eb942c107137cc8", "fields": {"code_postal": "72130", "code_commune_insee": "72284", "libell_d_acheminement": "ST GERMAIN SUR SARTHE", "ligne_5": "LA HUTTE", "nom_de_la_commune": "ST GERMAIN SUR SARTHE", "coordonnees_gps": [48.309288903, -0.0220228837082]}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18698e7247770b350a2980b58e29d74134864004", "fields": {"nom_de_la_commune": "ST JEAN DU BOIS", "libell_d_acheminement": "ST JEAN DU BOIS", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72293"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f583bec06e08aaeac5e321582f17dad9fd1d3c0a", "fields": {"nom_de_la_commune": "STE OSMANE", "libell_d_acheminement": "STE OSMANE", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72304"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b023ba790dc61b38598072d75e7a7547e7e54a", "fields": {"nom_de_la_commune": "ST PAUL LE GAULTIER", "libell_d_acheminement": "ST PAUL LE GAULTIER", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72309"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acaf284080a01384b8cecd92d76608e0231a8142", "fields": {"nom_de_la_commune": "ST REMY DE SILLE", "libell_d_acheminement": "ST REMY DE SILLE", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72315"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "797699848563655a7904281b837e51a1342c4e60", "fields": {"nom_de_la_commune": "STE SABINE SUR LONGEVE", "libell_d_acheminement": "STE SABINE SUR LONGEVE", "code_postal": "72380", "coordonnees_gps": [48.1389926354, 0.154938405827], "code_commune_insee": "72319"}, "geometry": {"type": "Point", "coordinates": [0.154938405827, 48.1389926354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf3ce99b109c025d170c28f1e17b7c4e3ada4b81", "fields": {"nom_de_la_commune": "SEGRIE", "libell_d_acheminement": "SEGRIE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72332"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "767bb1e6c3c7701daa21da5c8022d0b15694a9c4", "fields": {"nom_de_la_commune": "SOULITRE", "libell_d_acheminement": "SOULITRE", "code_postal": "72370", "coordonnees_gps": [48.0020289464, 0.465705755443], "code_commune_insee": "72341"}, "geometry": {"type": "Point", "coordinates": [0.465705755443, 48.0020289464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6858db11fda9de68fba50987b1ee67b96167d71d", "fields": {"nom_de_la_commune": "TELOCHE", "libell_d_acheminement": "TELOCHE", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72350"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad22c7091344d26270eb06b1493234a3f8a4ebdb", "fields": {"nom_de_la_commune": "TERREHAULT", "libell_d_acheminement": "TERREHAULT", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72352"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9da76a72d3d857a94d85aca607d6724a31d6882a", "fields": {"nom_de_la_commune": "THOIRE SUR DINAN", "libell_d_acheminement": "THOIRE SUR DINAN", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72356"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c1093375a77eac4b6dfc89f445979e437e0dc32", "fields": {"code_postal": "72160", "code_commune_insee": "72363", "libell_d_acheminement": "TUFFE VAL DE LA CHERONNE", "ligne_5": "ST HILAIRE LE LIERRU", "nom_de_la_commune": "TUFFE VAL DE LA CHERONNE", "coordonnees_gps": [48.0815343564, 0.508839517468]}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831277c1c5620c0c8d5e74bd494b32d140321bf4", "fields": {"nom_de_la_commune": "VALENNES", "libell_d_acheminement": "VALENNES", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72366"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0f7cef3de15e1bf618b7d432335d251e45b14ee", "fields": {"nom_de_la_commune": "VALLON SUR GEE", "libell_d_acheminement": "VALLON SUR GEE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72367"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a0f1115879fbc924e5febb93ad5f875ca70050", "fields": {"nom_de_la_commune": "VANCE", "libell_d_acheminement": "VANCE", "code_postal": "72310", "coordonnees_gps": [47.8336361151, 0.691494561054], "code_commune_insee": "72368"}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d86238ff4967bab066c66025e37a2a82bf2b4b5", "fields": {"nom_de_la_commune": "VERNIE", "libell_d_acheminement": "VERNIE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72370"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7745e992ae5031520f1d830ab7db8c2167cfcf07", "fields": {"nom_de_la_commune": "VILLAINES LA GONAIS", "libell_d_acheminement": "VILLAINES LA GONAIS", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72375"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d2ce71db11e18eccaedac71b82f17692bc315e", "fields": {"nom_de_la_commune": "VOIVRES LES LE MANS", "libell_d_acheminement": "VOIVRES LES LE MANS", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72381"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d25c8510d827ff0b3a35e79674fda2db5fa5b6", "fields": {"nom_de_la_commune": "YVRE LE POLIN", "libell_d_acheminement": "YVRE LE POLIN", "code_postal": "72330", "coordonnees_gps": [47.82608186, 0.101010219107], "code_commune_insee": "72385"}, "geometry": {"type": "Point", "coordinates": [0.101010219107, 47.82608186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f297db918f276a632590229605f70abf5e6181", "fields": {"code_postal": "73210", "code_commune_insee": "73006", "libell_d_acheminement": "AIME LA PLAGNE", "ligne_5": "TESSENS", "nom_de_la_commune": "AIME LA PLAGNE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73207a201f482f62d859bfdb388bd23740662631", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "EPERSY", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd3b32838181278972f90e245b861ca3f983ecb", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "ST GIROD", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df2125c752d9c63711c8efb0395ca974bbf25c52", "fields": {"nom_de_la_commune": "ARBIN", "libell_d_acheminement": "ARBIN", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73018"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "962f5bf350460fd263924ee61366ca2a10a5b213", "fields": {"nom_de_la_commune": "ATTIGNAT ONCIN", "libell_d_acheminement": "ATTIGNAT ONCIN", "code_postal": "73610", "coordonnees_gps": [45.5318935553, 5.78373657089], "code_commune_insee": "73022"}, "geometry": {"type": "Point", "coordinates": [5.78373657089, 45.5318935553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47490cddb5601ec7af6f9fe0c4fc1d7d4653a902", "fields": {"nom_de_la_commune": "BARBERAZ", "libell_d_acheminement": "BARBERAZ", "code_postal": "73000", "coordonnees_gps": [45.5704322981, 5.91500462734], "code_commune_insee": "73029"}, "geometry": {"type": "Point", "coordinates": [5.91500462734, 45.5704322981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd906f5322a09cdbd560d5d21d11cada1c63a81", "fields": {"nom_de_la_commune": "BONNEVAL", "libell_d_acheminement": "BONNEVAL", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73046"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0594b2165238ee32c604e8d37e299aabf45a50", "fields": {"nom_de_la_commune": "BONNEVAL SUR ARC", "libell_d_acheminement": "BONNEVAL SUR ARC", "code_postal": "73480", "coordonnees_gps": [45.3065460513, 7.01735410768], "code_commune_insee": "73047"}, "geometry": {"type": "Point", "coordinates": [7.01735410768, 45.3065460513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ceb72b6ae97d098dde4a24676e0998108ae5606", "fields": {"code_postal": "73700", "code_commune_insee": "73054", "libell_d_acheminement": "BOURG ST MAURICE", "ligne_5": "LES ARCS", "nom_de_la_commune": "BOURG ST MAURICE", "coordonnees_gps": [45.6553139344, 6.78435107537]}, "geometry": {"type": "Point", "coordinates": [6.78435107537, 45.6553139344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95ff520a385c08313159dc4ed8fbb8cb3930487", "fields": {"nom_de_la_commune": "BOZEL", "libell_d_acheminement": "BOZEL", "code_postal": "73350", "coordonnees_gps": [45.4506854464, 6.72699335794], "code_commune_insee": "73055"}, "geometry": {"type": "Point", "coordinates": [6.72699335794, 45.4506854464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ba51653bab1dfe19af69d225d28e51280086513", "fields": {"nom_de_la_commune": "LA CHAMBRE", "libell_d_acheminement": "LA CHAMBRE", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73067"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25abbdd69d664e679b9de9eef8900d824fa53c03", "fields": {"nom_de_la_commune": "CHAMOUX SUR GELON", "libell_d_acheminement": "CHAMOUX SUR GELON", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73069"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab217fce5e3b528005d71dc11158a1c3c0b37e9a", "fields": {"nom_de_la_commune": "CHAMPAGNY EN VANOISE", "libell_d_acheminement": "CHAMPAGNY EN VANOISE", "code_postal": "73350", "coordonnees_gps": [45.4506854464, 6.72699335794], "code_commune_insee": "73071"}, "geometry": {"type": "Point", "coordinates": [6.72699335794, 45.4506854464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69dad0a18d42a626307ece06f99429e2b2e37500", "fields": {"nom_de_la_commune": "CHATEAUNEUF", "libell_d_acheminement": "CHATEAUNEUF", "code_postal": "73390", "coordonnees_gps": [45.5327920756, 6.20813610724], "code_commune_insee": "73079"}, "geometry": {"type": "Point", "coordinates": [6.20813610724, 45.5327920756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac96cf7d99b416461390dd0530068982023c6a2d", "fields": {"nom_de_la_commune": "CLERY", "libell_d_acheminement": "CLERY", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73086"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0696ee53d2245302f6f544cd9d92a6c0fe420471", "fields": {"nom_de_la_commune": "COGNIN", "libell_d_acheminement": "COGNIN", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73087"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e91c7fd0c3bb036b3191b9b2322bc6381658631", "fields": {"nom_de_la_commune": "CONJUX", "libell_d_acheminement": "CONJUX", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73091"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "973d392e07caf790389f4e2bceb47a0a3e8ef95c", "fields": {"nom_de_la_commune": "DETRIER", "libell_d_acheminement": "DETRIER", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73099"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d68fbdce827109928a18efc2938bfb7d082c9b8", "fields": {"nom_de_la_commune": "DOMESSIN", "libell_d_acheminement": "DOMESSIN", "code_postal": "73330", "coordonnees_gps": [45.5472960883, 5.6982391716], "code_commune_insee": "73100"}, "geometry": {"type": "Point", "coordinates": [5.6982391716, 45.5472960883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58566abd6516fe66ced459fa0ae675dc160e53f6", "fields": {"nom_de_la_commune": "ECOLE", "libell_d_acheminement": "ECOLE", "code_postal": "73630", "coordonnees_gps": [45.6548339489, 6.17579886846], "code_commune_insee": "73106"}, "geometry": {"type": "Point", "coordinates": [6.17579886846, 45.6548339489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21707da8a706dd11c6629d338b2a38393d62e361", "fields": {"code_postal": "73300", "code_commune_insee": "73116", "libell_d_acheminement": "FONTCOUVERTE LA TOUSSUIRE", "ligne_5": "LA TOUSSUIRE", "nom_de_la_commune": "FONTCOUVERTE LA TOUSSUIRE", "coordonnees_gps": [45.2555418724, 6.33510660794]}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9c5a5b68a18eeadc8cd2ceb86bc3a69449799d", "fields": {"nom_de_la_commune": "FRETERIVE", "libell_d_acheminement": "FRETERIVE", "code_postal": "73250", "coordonnees_gps": [45.5739753959, 6.15768953868], "code_commune_insee": "73120"}, "geometry": {"type": "Point", "coordinates": [6.15768953868, 45.5739753959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef611872829189e33b2e6de381f34b5c573722bc", "fields": {"nom_de_la_commune": "LA GIETTAZ", "libell_d_acheminement": "LA GIETTAZ", "code_postal": "73590", "coordonnees_gps": [45.8256229231, 6.51404796516], "code_commune_insee": "73123"}, "geometry": {"type": "Point", "coordinates": [6.51404796516, 45.8256229231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8831d39b9bfa9376fb5f53b20978ceb3145abbe", "fields": {"nom_de_la_commune": "GILLY SUR ISERE", "libell_d_acheminement": "GILLY SUR ISERE", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73124"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3661ea60589b7a3ab806114746bc4f00e84e97d", "fields": {"nom_de_la_commune": "HAUTECOUR", "libell_d_acheminement": "HAUTECOUR", "code_postal": "73600", "coordonnees_gps": [45.3739609607, 6.53145730027], "code_commune_insee": "73131"}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2429ff8c6f890f676e41c13ecffcdeb02819a1f", "fields": {"nom_de_la_commune": "HERMILLON", "libell_d_acheminement": "HERMILLON", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73135"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84831f55b5eb539549d52e30a8093716098fc38f", "fields": {"nom_de_la_commune": "LAISSAUD", "libell_d_acheminement": "LAISSAUD", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73141"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c6b8295acc230613d9c69587517a920c71b116", "fields": {"nom_de_la_commune": "LANDRY", "libell_d_acheminement": "LANDRY", "code_postal": "73210", "coordonnees_gps": [45.5287564298, 6.7268231289], "code_commune_insee": "73142"}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2238a772ebc6dfcc834b06fdde740f07b57ecfba", "fields": {"nom_de_la_commune": "LANSLEVILLARD", "libell_d_acheminement": "LANSLEVILLARD", "code_postal": "73480", "coordonnees_gps": [45.3065460513, 7.01735410768], "code_commune_insee": "73144"}, "geometry": {"type": "Point", "coordinates": [7.01735410768, 45.3065460513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eb97df4d01df668990f504f9a848ef9ecfcd159", "fields": {"nom_de_la_commune": "LEPIN LE LAC", "libell_d_acheminement": "LEPIN LE LAC", "code_postal": "73610", "coordonnees_gps": [45.5318935553, 5.78373657089], "code_commune_insee": "73145"}, "geometry": {"type": "Point", "coordinates": [5.78373657089, 45.5318935553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abbd654bb37ae6759db4de8bfd015f539d47a6d5", "fields": {"nom_de_la_commune": "MONTAIMONT", "libell_d_acheminement": "MONTAIMONT", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73163"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48ec419e4f5fd988df922198784438aadf5c3f9", "fields": {"nom_de_la_commune": "MONTCEL", "libell_d_acheminement": "MONTCEL", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73164"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74e797a1599f7af2087cf9bb30e8028b928d4c1a", "fields": {"nom_de_la_commune": "MONTRICHER ALBANNE", "libell_d_acheminement": "MONTRICHER ALBANNE", "code_postal": "73870", "coordonnees_gps": [45.2502051457, 6.413281012], "code_commune_insee": "73173"}, "geometry": {"type": "Point", "coordinates": [6.413281012, 45.2502051457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a0cccd4fabc4fd3c5b1871aed30b3ba6c8f8f1", "fields": {"code_postal": "73870", "code_commune_insee": "73173", "libell_d_acheminement": "MONTRICHER ALBANNE", "ligne_5": "LES KARELLIS", "nom_de_la_commune": "MONTRICHER ALBANNE", "coordonnees_gps": [45.2502051457, 6.413281012]}, "geometry": {"type": "Point", "coordinates": [6.413281012, 45.2502051457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7d3094700e5afc87eb6bb9b5fd0571c8a5594e", "fields": {"nom_de_la_commune": "LA MOTTE EN BAUGES", "libell_d_acheminement": "LA MOTTE EN BAUGES", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73178"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b7eb46a4bbb8b34adb62a96ea7eb7939d60b6f8", "fields": {"nom_de_la_commune": "MOUTIERS", "libell_d_acheminement": "MOUTIERS TARENTAISE", "code_postal": "73600", "coordonnees_gps": [45.3739609607, 6.53145730027], "code_commune_insee": "73181"}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a415c8af91e83c17d896169900a7d46acd35666", "fields": {"nom_de_la_commune": "JONQUIERES", "libell_d_acheminement": "JONQUIERES", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11176"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b64c20c3e4502622774208ad1c690a7ede02bc", "fields": {"nom_de_la_commune": "LAURABUC", "libell_d_acheminement": "LAURABUC", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11195"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac15f37f5dd19654a231a16b6ba0014f0fec7cc8", "fields": {"nom_de_la_commune": "LESPINASSIERE", "libell_d_acheminement": "LESPINASSIERE", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11200"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2a0e4a12421c52a827de79f4301a9e02cd3a28", "fields": {"nom_de_la_commune": "LEUC", "libell_d_acheminement": "LEUC", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11201"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2923387d69252ad42aa8f7717aaa9ebbdd9f45b2", "fields": {"code_postal": "11370", "code_commune_insee": "11202", "libell_d_acheminement": "LEUCATE", "ligne_5": "LA FRANQUI", "nom_de_la_commune": "LEUCATE", "coordonnees_gps": [42.8990754596, 3.02622378383]}, "geometry": {"type": "Point", "coordinates": [3.02622378383, 42.8990754596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "220b25e48adb0efc46058d5a370661d62e8ba50d", "fields": {"nom_de_la_commune": "LOUPIA", "libell_d_acheminement": "LOUPIA", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11207"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38b6fb3be92b37e9b6df22c64811a82c15e1d31", "fields": {"nom_de_la_commune": "LA LOUVIERE LAURAGAIS", "libell_d_acheminement": "LA LOUVIERE LAURAGAIS", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11208"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca471dca9ad28967d6929bf6a1835db178c3d14b", "fields": {"nom_de_la_commune": "MALRAS", "libell_d_acheminement": "MALRAS", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11214"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e25d71610b722dd8c87b8109ee4877acc402eab0", "fields": {"nom_de_la_commune": "MARSEILLETTE", "libell_d_acheminement": "MARSEILLETTE", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11220"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97267c61c0cb0d77864b533a849c4666be9e5b54", "fields": {"nom_de_la_commune": "LES MARTYS", "libell_d_acheminement": "LES MARTYS", "code_postal": "11390", "coordonnees_gps": [43.3925599417, 2.2792029886], "code_commune_insee": "11221"}, "geometry": {"type": "Point", "coordinates": [2.2792029886, 43.3925599417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d2dd65d75a1bca9ded252006be30232f66523aa", "fields": {"nom_de_la_commune": "MAS CABARDES", "libell_d_acheminement": "MAS CABARDES", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11222"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c53a822a2a36ba155e69dea620f1a66587532e", "fields": {"nom_de_la_commune": "MASSAC", "libell_d_acheminement": "MASSAC", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11224"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dc5570c499d3b6acc129c22e9e2b271c9d120b8", "fields": {"nom_de_la_commune": "MAS SAINTES PUELLES", "libell_d_acheminement": "MAS SAINTES PUELLES", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11225"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c0635e6555e2168a1e17f4ee07b4e8131a0d873", "fields": {"nom_de_la_commune": "MISSEGRE", "libell_d_acheminement": "MISSEGRE", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11235"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a040a033caa64696047dfbe42be8649153b81aa2", "fields": {"nom_de_la_commune": "MOLLEVILLE", "libell_d_acheminement": "MOLLEVILLE", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11238"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "841bf49165e426b9357fb08a46b1f2c84eab8c5f", "fields": {"nom_de_la_commune": "MONTAURIOL", "libell_d_acheminement": "MONTAURIOL", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11239"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dceaa68caf3c5f3f18bcdf425da036ce99b8c192", "fields": {"nom_de_la_commune": "MONTAZELS", "libell_d_acheminement": "MONTAZELS", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11240"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d1881fe1eb71608c66412542b756dcfd463292b", "fields": {"nom_de_la_commune": "MONTMAUR", "libell_d_acheminement": "MONTMAUR", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11252"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54dc28f8576c949814196ae44057910369d5b235", "fields": {"nom_de_la_commune": "MONTSERET", "libell_d_acheminement": "MONTSERET", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11256"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63450e720af5d328712e4f1787a4b6ad126ac24a", "fields": {"nom_de_la_commune": "MOUSSOULENS", "libell_d_acheminement": "MOUSSOULENS", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11259"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "711877ed9883d4389b7f2465c091c210b3dabd75", "fields": {"nom_de_la_commune": "NARBONNE", "libell_d_acheminement": "NARBONNE", "code_postal": "11100", "coordonnees_gps": [43.1614428329, 3.00768633064], "code_commune_insee": "11262"}, "geometry": {"type": "Point", "coordinates": [3.00768633064, 43.1614428329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02113add6942dbb592613d117d870f9e4600982", "fields": {"nom_de_la_commune": "PAULIGNE", "libell_d_acheminement": "PAULIGNE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11274"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf1b23ad63ee6d55d81fe643e2f4c6c8ed32714", "fields": {"nom_de_la_commune": "PECH LUNA", "libell_d_acheminement": "PECH LUNA", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11278"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5664d6522b41eb8b3c3cc91c6d44121d10692573", "fields": {"nom_de_la_commune": "PEYREFITTE DU RAZES", "libell_d_acheminement": "PEYREFITTE DU RAZES", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11282"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "173ecae4796a17619aa9ad4c5ce68abc24074826", "fields": {"nom_de_la_commune": "LA POMAREDE", "libell_d_acheminement": "LA POMAREDE", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11292"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a43e7b0fcaa05df89f144d0a9798b0f26632da2", "fields": {"nom_de_la_commune": "POMY", "libell_d_acheminement": "POMY", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11294"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28bbcb977f73994a8dd7760f983b099564a12ff4", "fields": {"nom_de_la_commune": "POUZOLS MINERVOIS", "libell_d_acheminement": "POUZOLS MINERVOIS", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11296"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bafa37d82511a4c93442a6aa8d53911eda8f700", "fields": {"nom_de_la_commune": "QUILLAN", "libell_d_acheminement": "QUILLAN", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11304"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ab970eb86d5e54579a940b4bf02a8456093dc2", "fields": {"nom_de_la_commune": "QUINTILLAN", "libell_d_acheminement": "QUINTILLAN", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11305"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9259b907dec3d414782c9c6ced99dd42e954f3dc", "fields": {"nom_de_la_commune": "QUIRBAJOU", "libell_d_acheminement": "QUIRBAJOU", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11306"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f29540e42aeb1b1c2c111c1ae17833059c2bc1bd", "fields": {"nom_de_la_commune": "RICAUD", "libell_d_acheminement": "RICAUD", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11313"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d816bf54d0df8f5547c7a4a7ff339ee1c3ba5793", "fields": {"nom_de_la_commune": "RODOME", "libell_d_acheminement": "RODOME", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11317"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3ad56039bdcbad385400aadd3f5e629d537f2a0", "fields": {"nom_de_la_commune": "ROQUEFORT DES CORBIERES", "libell_d_acheminement": "ROQUEFORT DES CORBIERES", "code_postal": "11540", "coordonnees_gps": [42.9920603035, 2.92996089701], "code_commune_insee": "11322"}, "geometry": {"type": "Point", "coordinates": [2.92996089701, 42.9920603035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81af197c89044ec6e857fd24d4bfdb688eff026a", "fields": {"nom_de_la_commune": "ROUFFIAC D AUDE", "libell_d_acheminement": "ROUFFIAC D AUDE", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11325"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bf31e97d0a1bbaf9a2086562c8254eb1e85dbec", "fields": {"nom_de_la_commune": "ROUFFIAC DES CORBIERES", "libell_d_acheminement": "ROUFFIAC DES CORBIERES", "code_postal": "11350", "coordonnees_gps": [42.8796650781, 2.66522654176], "code_commune_insee": "11326"}, "geometry": {"type": "Point", "coordinates": [2.66522654176, 42.8796650781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "955f283aec273881f73217a148e3d97c4b2ebd6d", "fields": {"nom_de_la_commune": "RUSTIQUES", "libell_d_acheminement": "RUSTIQUES", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11330"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9e2d4a1e7ae8595501218ace816be5a1b76b8e1", "fields": {"nom_de_la_commune": "ST ANDRE DE ROQUELONGUE", "libell_d_acheminement": "ST ANDRE DE ROQUELONGUE", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11332"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edd2b5d0806ae7badd5a0e3ccfd56d62477ef987", "fields": {"nom_de_la_commune": "STE COLOMBE SUR L HERS", "libell_d_acheminement": "STE COLOMBE SUR L HERS", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11336"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "539a354b1e305ac168bf2e577d46c78e945b77e0", "fields": {"nom_de_la_commune": "ST DENIS", "libell_d_acheminement": "ST DENIS", "code_postal": "11310", "coordonnees_gps": [43.3722409402, 2.17410983728], "code_commune_insee": "11339"}, "geometry": {"type": "Point", "coordinates": [2.17410983728, 43.3722409402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c11247b23e1b188e12f00a55e5d9c91b502a4a4", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11344"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7048f54223ff1a6eb32f6c88a60fa7172e11885", "fields": {"nom_de_la_commune": "ST JULIA DE BEC", "libell_d_acheminement": "ST JULIA DE BEC", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11347"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15354b5024ca1d43d51a01a4591a16e3ba62f9dc", "fields": {"nom_de_la_commune": "ST JUST ET LE BEZU", "libell_d_acheminement": "ST JUST ET LE BEZU", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11350"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46260838d7c15f0d97c006cccab31aaa6fadbee1", "fields": {"nom_de_la_commune": "ST MICHEL DE LANES", "libell_d_acheminement": "ST MICHEL DE LANES", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11359"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37cbe91979005e421745b67000b279e9206285d5", "fields": {"nom_de_la_commune": "ST PAULET", "libell_d_acheminement": "ST PAULET", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11362"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e39a7aafe3a910e6a53a40380d0487930ff845", "fields": {"nom_de_la_commune": "ST POLYCARPE", "libell_d_acheminement": "ST POLYCARPE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11364"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d35525a670b4cd9c37fdb28b3dcdae3654f4d194", "fields": {"nom_de_la_commune": "SALLELES D AUDE", "libell_d_acheminement": "SALLELES D AUDE", "code_postal": "11590", "coordonnees_gps": [43.2767571577, 2.97534639195], "code_commune_insee": "11369"}, "geometry": {"type": "Point", "coordinates": [2.97534639195, 43.2767571577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e939353072c32b1c844284925def3f20b8e9f2d9", "fields": {"nom_de_la_commune": "SALSIGNE", "libell_d_acheminement": "SALSIGNE", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11372"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9a14dc41a75ca1ff865b70237dd21848aa74bd", "fields": {"nom_de_la_commune": "LA SERPENT", "libell_d_acheminement": "LA SERPENT", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11376"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f7153a06900c5c336d4455d30592a0f86ce773", "fields": {"nom_de_la_commune": "SERVIES EN VAL", "libell_d_acheminement": "SERVIES EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11378"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80258abe1a2ffd11184f0c67da6e114b4722a4c4", "fields": {"nom_de_la_commune": "SOUILHE", "libell_d_acheminement": "SOUILHE", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11383"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de98438965104dfdc9f61e128b3663e488d21c3b", "fields": {"nom_de_la_commune": "SOULATGE", "libell_d_acheminement": "SOULATGE", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11384"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbe4d82a1c5f2a353e7108d2ac2ccdaf28f2bb5", "fields": {"nom_de_la_commune": "THEZAN DES CORBIERES", "libell_d_acheminement": "THEZAN DES CORBIERES", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11390"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c8ee3fd70842492627a64b34fc48e97cca6c9ff", "fields": {"nom_de_la_commune": "TOURNISSAN", "libell_d_acheminement": "TOURNISSAN", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11392"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f12e1d5cef2011263a4ab627a28a367d7644199", "fields": {"nom_de_la_commune": "VERDUN EN LAURAGAIS", "libell_d_acheminement": "VERDUN EN LAURAGAIS", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11407"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f921c02e4da68cd88fa98b1ddeceb55f27b84d22", "fields": {"nom_de_la_commune": "VIGNEVIEILLE", "libell_d_acheminement": "VIGNEVIEILLE", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11409"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c4d7f9716ad8fcdaa986310ea034fbd796b936e", "fields": {"nom_de_la_commune": "VILLARDONNEL", "libell_d_acheminement": "VILLARDONNEL", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11413"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e63071feb616be4c6f8628214474815e1007d2cf", "fields": {"nom_de_la_commune": "VILLAR EN VAL", "libell_d_acheminement": "VILLAR EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11414"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7a24d8977b307e391a21b9c946828631abd6e52", "fields": {"nom_de_la_commune": "VILLASAVARY", "libell_d_acheminement": "VILLASAVARY", "code_postal": "11150", "coordonnees_gps": [43.2498711617, 2.06462165287], "code_commune_insee": "11418"}, "geometry": {"type": "Point", "coordinates": [2.06462165287, 43.2498711617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37622b03d2c808957d0f1b80dc7647347113c431", "fields": {"nom_de_la_commune": "VILLEDAIGNE", "libell_d_acheminement": "VILLEDAIGNE", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11421"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a02d001604efcb2af73ca2e53774356a597d20", "fields": {"nom_de_la_commune": "VILLEDUBERT", "libell_d_acheminement": "VILLEDUBERT", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11422"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "885344193e1129e4a03a88a37cb99adac8ecfaf5", "fields": {"nom_de_la_commune": "VILLEGAILHENC", "libell_d_acheminement": "VILLEGAILHENC", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11425"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aa44d07b57d69917ad4d3392ccc2e2367f8cc71", "fields": {"nom_de_la_commune": "VILLEGLY", "libell_d_acheminement": "VILLEGLY", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11426"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad272835c5b978da97aa2d2992accb5ad8ca77be", "fields": {"nom_de_la_commune": "VILLELONGUE D AUDE", "libell_d_acheminement": "VILLELONGUE D AUDE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11427"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992b1d50fae7a99b98ca1ef587dca915ee7cfb1e", "fields": {"nom_de_la_commune": "LES ALBRES", "libell_d_acheminement": "LES ALBRES", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12003"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9e4c5bedd009b4cc29799d232c506d3aa99a9a", "fields": {"nom_de_la_commune": "AMBEYRAC", "libell_d_acheminement": "AMBEYRAC", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12007"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e998d697294e517b9d07f85b412e8bd2787454c4", "fields": {"nom_de_la_commune": "ASPRIERES", "libell_d_acheminement": "ASPRIERES", "code_postal": "12700", "coordonnees_gps": [44.5379394985, 2.08098402024], "code_commune_insee": "12012"}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aebea60319f7b5a83ac6a0e2e8b297e7fe96d56", "fields": {"nom_de_la_commune": "BALAGUIER SUR RANCE", "libell_d_acheminement": "BALAGUIER SUR RANCE", "code_postal": "12380", "coordonnees_gps": [43.8550317909, 2.62086036072], "code_commune_insee": "12019"}, "geometry": {"type": "Point", "coordinates": [2.62086036072, 43.8550317909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49c3118b5b59a55d23de4f7d54fa26c952e40a92", "fields": {"code_postal": "12200", "code_commune_insee": "12021", "libell_d_acheminement": "LE BAS SEGALA", "ligne_5": "LA BASTIDE L EVEQUE", "nom_de_la_commune": "LE BAS SEGALA", "coordonnees_gps": [44.334435824, 2.00795550071]}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2a6092fbf2a7ab092f78caa4e4e9f1b6ec61063", "fields": {"nom_de_la_commune": "LA BASTIDE PRADINES", "libell_d_acheminement": "LA BASTIDE PRADINES", "code_postal": "12490", "coordonnees_gps": [44.0484721644, 2.91997345292], "code_commune_insee": "12022"}, "geometry": {"type": "Point", "coordinates": [2.91997345292, 44.0484721644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9594c75888f49898fcce1a1fb762e993a58c3f6d", "fields": {"nom_de_la_commune": "BELCASTEL", "libell_d_acheminement": "BELCASTEL", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12024"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806476bcf93fb78d95d5bc073dd20d7f8231c5f4", "fields": {"nom_de_la_commune": "BOUSSAC", "libell_d_acheminement": "BOUSSAC", "code_postal": "12160", "coordonnees_gps": [44.2885792415, 2.42910267877], "code_commune_insee": "12032"}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2aca04bab71a4c2a92ce25407dd6b5aa8281b47", "fields": {"nom_de_la_commune": "CABANES", "libell_d_acheminement": "CABANES", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12041"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25d77c4d7a1a982715a9065fb0fc736ba462913", "fields": {"nom_de_la_commune": "CAMARES", "libell_d_acheminement": "CAMARES", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12044"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4745c4ed33727351e6f0cb491e7b0fddf5b8b5a0", "fields": {"nom_de_la_commune": "CAMJAC", "libell_d_acheminement": "CAMJAC", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12046"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65dc399b5206421c1854d2bd328e63780f18d9cf", "fields": {"nom_de_la_commune": "CANTOIN", "libell_d_acheminement": "CANTOIN", "code_postal": "12420", "coordonnees_gps": [44.8196484767, 2.78404543455], "code_commune_insee": "12051"}, "geometry": {"type": "Point", "coordinates": [2.78404543455, 44.8196484767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44701d58269b88bf8d8526a5bfb4ec62a8cc56a2", "fields": {"nom_de_la_commune": "CAPDENAC GARE", "libell_d_acheminement": "CAPDENAC GARE", "code_postal": "12700", "coordonnees_gps": [44.5379394985, 2.08098402024], "code_commune_insee": "12052"}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bcd86298fe7f99f72935b2104727d98deeb1070", "fields": {"nom_de_la_commune": "LA CAPELLE BLEYS", "libell_d_acheminement": "LA CAPELLE BLEYS", "code_postal": "12240", "coordonnees_gps": [44.3140270715, 2.24773559855], "code_commune_insee": "12054"}, "geometry": {"type": "Point", "coordinates": [2.24773559855, 44.3140270715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d413c88e15e8ebd1af525479ff554b9dea9ac42", "fields": {"nom_de_la_commune": "CASSUEJOULS", "libell_d_acheminement": "CASSUEJOULS", "code_postal": "12210", "coordonnees_gps": [44.6915069372, 2.81638954446], "code_commune_insee": "12058"}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3aaf55f85b037eea7aa2f1d49d8821b3679fb7", "fields": {"nom_de_la_commune": "LA CAVALERIE", "libell_d_acheminement": "LA CAVALERIE", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12063"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d32f7c4677b966a4b7bb71424a4275f6697fa5", "fields": {"nom_de_la_commune": "CENTRES", "libell_d_acheminement": "CENTRES", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12065"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8df3349712449a7ecf69e163f60ecdd6682c5be8", "fields": {"code_postal": "12320", "code_commune_insee": "12076", "libell_d_acheminement": "CONQUES EN ROUERGUE", "ligne_5": "GRAND VABRE", "nom_de_la_commune": "CONQUES EN ROUERGUE", "coordonnees_gps": [44.5837975359, 2.46440638377]}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac63d291b5bb7d70f9929a5782efdecba6099b7", "fields": {"nom_de_la_commune": "LES COSTES GOZON", "libell_d_acheminement": "LES COSTES GOZON", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12078"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c2d9a33df2cbd4264a6f2e9019357fc43b63b0", "fields": {"nom_de_la_commune": "DECAZEVILLE", "libell_d_acheminement": "DECAZEVILLE", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12089"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "780c7133917472f95e5788323d93a1ffd77ca03e", "fields": {"nom_de_la_commune": "DRUELLE", "libell_d_acheminement": "DRUELLE", "code_postal": "12000", "coordonnees_gps": [44.3677869063, 2.531363607], "code_commune_insee": "12090"}, "geometry": {"type": "Point", "coordinates": [2.531363607, 44.3677869063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10362a5b9b0b06f4e8255f5785b89ad7e6c4e6f5", "fields": {"nom_de_la_commune": "ESCANDOLIERES", "libell_d_acheminement": "ESCANDOLIERES", "code_postal": "12390", "coordonnees_gps": [44.4348428997, 2.31749695196], "code_commune_insee": "12095"}, "geometry": {"type": "Point", "coordinates": [2.31749695196, 44.4348428997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4463b01b49a488ed5b185f8c200c4ad2191a4559", "fields": {"nom_de_la_commune": "LACROIX BARREZ", "libell_d_acheminement": "LACROIX BARREZ", "code_postal": "12600", "coordonnees_gps": [44.8341310228, 2.67664580865], "code_commune_insee": "12118"}, "geometry": {"type": "Point", "coordinates": [2.67664580865, 44.8341310228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb63b7cd3889a70f3f3c734c5e9794f5e26da37", "fields": {"nom_de_la_commune": "LAGUIOLE", "libell_d_acheminement": "LAGUIOLE", "code_postal": "12210", "coordonnees_gps": [44.6915069372, 2.81638954446], "code_commune_insee": "12119"}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd9c2386d397fb25d353c26c07c27726346cc3af", "fields": {"nom_de_la_commune": "LAISSAC SEVERAC L EGLISE", "libell_d_acheminement": "LAISSAC SEVERAC L EGLISE", "code_postal": "12310", "coordonnees_gps": [44.384469335, 2.84476302604], "code_commune_insee": "12120"}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "570cd7987b72c6af4423babc6aa4572012e7a905", "fields": {"nom_de_la_commune": "LASSOUTS", "libell_d_acheminement": "LASSOUTS", "code_postal": "12500", "coordonnees_gps": [44.5270610356, 2.81719827673], "code_commune_insee": "12124"}, "geometry": {"type": "Point", "coordinates": [2.81719827673, 44.5270610356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f58eca4cb3f1ea451d72093f9d7260f9197c9d", "fields": {"nom_de_la_commune": "LUC LA PRIMAUBE", "libell_d_acheminement": "LUC LA PRIMAUBE", "code_postal": "12450", "coordonnees_gps": [44.2840952345, 2.5725628832], "code_commune_insee": "12133"}, "geometry": {"type": "Point", "coordinates": [2.5725628832, 44.2840952345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b92c83aa133aa2e3e860b5c16ab6fd1f36af201", "fields": {"nom_de_la_commune": "LUNAC", "libell_d_acheminement": "LUNAC", "code_postal": "12270", "coordonnees_gps": [44.2133464767, 2.02193088766], "code_commune_insee": "12135"}, "geometry": {"type": "Point", "coordinates": [2.02193088766, 44.2133464767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a036c2f0b57e4118e398fcc503b728fc4538ee9", "fields": {"nom_de_la_commune": "LE MONASTERE", "libell_d_acheminement": "LE MONASTERE", "code_postal": "12000", "coordonnees_gps": [44.3677869063, 2.531363607], "code_commune_insee": "12146"}, "geometry": {"type": "Point", "coordinates": [2.531363607, 44.3677869063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab738011134c24b45544fd7c566d9d97db2092a2", "fields": {"nom_de_la_commune": "MONTBAZENS", "libell_d_acheminement": "MONTBAZENS", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12148"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5736fc4da44989050647513e0af25fbce72d68bf", "fields": {"nom_de_la_commune": "MONTPEYROUX", "libell_d_acheminement": "MONTPEYROUX", "code_postal": "12210", "coordonnees_gps": [44.6915069372, 2.81638954446], "code_commune_insee": "12156"}, "geometry": {"type": "Point", "coordinates": [2.81638954446, 44.6915069372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f20786a34f16079e425bb141809ddc0f5994293", "fields": {"nom_de_la_commune": "MOYRAZES", "libell_d_acheminement": "MOYRAZES", "code_postal": "12160", "coordonnees_gps": [44.2885792415, 2.42910267877], "code_commune_insee": "12162"}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5b9cd0a8381ac631d2cd56775897e18fcb8cec", "fields": {"nom_de_la_commune": "LE NAYRAC", "libell_d_acheminement": "LE NAYRAC", "code_postal": "12190", "coordonnees_gps": [44.5757488453, 2.68710158175], "code_commune_insee": "12172"}, "geometry": {"type": "Point", "coordinates": [2.68710158175, 44.5757488453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d30742575bbaf4100150902a445e2e9304fd3504", "fields": {"nom_de_la_commune": "OLS ET RINHODES", "libell_d_acheminement": "OLS ET RINHODES", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12175"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3691eaa4711be6380e7c9f9a9ca8a948496f1bc", "fields": {"nom_de_la_commune": "PALMAS D AVEYRON", "libell_d_acheminement": "PALMAS D AVEYRON", "code_postal": "12310", "coordonnees_gps": [44.384469335, 2.84476302604], "code_commune_insee": "12177"}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7352ae4e1af9220466b0368e7c674caf12cf8ced", "fields": {"nom_de_la_commune": "PEUX ET COUFFOULEUX", "libell_d_acheminement": "PEUX ET COUFFOULEUX", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12179"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c96dbedf0025bac87e7f756571310612ea47de", "fields": {"nom_de_la_commune": "PLAISANCE", "libell_d_acheminement": "PLAISANCE", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12183"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea6a2f68e481a901b1d6c88d6a90097e3dd39fa", "fields": {"code_postal": "45330", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "COUDRAY", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.2827964198, 2.40158740828]}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca9a71fae7b0b8ac3c5c0bbbd4dbf8717b3c335", "fields": {"code_postal": "45330", "code_commune_insee": "45191", "libell_d_acheminement": "LE MALESHERBOIS", "ligne_5": "MAINVILLIERS", "nom_de_la_commune": "LE MALESHERBOIS", "coordonnees_gps": [48.2827964198, 2.40158740828]}, "geometry": {"type": "Point", "coordinates": [2.40158740828, 48.2827964198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c6945453a3d11819881a531e5ea38a5eb2683ff", "fields": {"nom_de_la_commune": "MAREAU AUX BOIS", "libell_d_acheminement": "MAREAU AUX BOIS", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45195"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24009c82a4e8bb90c5ebdcbef194c8128d291053", "fields": {"nom_de_la_commune": "MARIGNY LES USAGES", "libell_d_acheminement": "MARIGNY LES USAGES", "code_postal": "45760", "coordonnees_gps": [47.9504956092, 2.02989730454], "code_commune_insee": "45197"}, "geometry": {"type": "Point", "coordinates": [2.02989730454, 47.9504956092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83cef3461aa56d633fa457545210fcff39ca63d5", "fields": {"nom_de_la_commune": "MONTBOUY", "libell_d_acheminement": "MONTBOUY", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45210"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be83b40811b674312e6cdf8490d482f5c3950e9", "fields": {"nom_de_la_commune": "MORMANT SUR VERNISSON", "libell_d_acheminement": "MORMANT SUR VERNISSON", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45216"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aedbd2db2bd13b8e44c3a97ae4aad993f83c07f3", "fields": {"nom_de_la_commune": "NESPLOY", "libell_d_acheminement": "NESPLOY", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45223"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb4baca08b9eff87706f1dc62385f4ca838677c", "fields": {"nom_de_la_commune": "OUSSOY EN GATINAIS", "libell_d_acheminement": "OUSSOY EN GATINAIS", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45239"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70cc17e0ba3288123d2f3742997093fb01aa1e1", "fields": {"code_postal": "45480", "code_commune_insee": "45240", "libell_d_acheminement": "OUTARVILLE", "ligne_5": "ST PERAVY EPREUX", "nom_de_la_commune": "OUTARVILLE", "coordonnees_gps": [48.2104328363, 2.06032110325]}, "geometry": {"type": "Point", "coordinates": [2.06032110325, 48.2104328363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9863b83952a3bc01962ba7f7fb2c7c9c7ead6d52", "fields": {"nom_de_la_commune": "OUVROUER LES CHAMPS", "libell_d_acheminement": "OUVROUER LES CHAMPS", "code_postal": "45150", "coordonnees_gps": [47.8403868287, 2.12671311034], "code_commune_insee": "45241"}, "geometry": {"type": "Point", "coordinates": [2.12671311034, 47.8403868287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd1ce95c3ac539a12fc89d4e651a49794e0ca19a", "fields": {"nom_de_la_commune": "PANNECIERES", "libell_d_acheminement": "PANNECIERES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45246"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3e52a0a9558150b69751236ffa9a9f86687492", "fields": {"nom_de_la_commune": "PATAY", "libell_d_acheminement": "PATAY", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45248"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fd055896ed5262fb2951100a3fb9f3d7ef69e4f", "fields": {"nom_de_la_commune": "PITHIVIERS LE VIEIL", "libell_d_acheminement": "PITHIVIERS LE VIEIL", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45253"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60575380a6afb9d2af20581c1076cdd30abeff98", "fields": {"nom_de_la_commune": "POILLY LEZ GIEN", "libell_d_acheminement": "POILLY LEZ GIEN", "code_postal": "45500", "coordonnees_gps": [47.669813444, 2.62052294278], "code_commune_insee": "45254"}, "geometry": {"type": "Point", "coordinates": [2.62052294278, 47.669813444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf037ba5a5c67ded4ac9debddf30a646545908e", "fields": {"nom_de_la_commune": "PRESSIGNY LES PINS", "libell_d_acheminement": "PRESSIGNY LES PINS", "code_postal": "45290", "coordonnees_gps": [47.8346228413, 2.67975778756], "code_commune_insee": "45257"}, "geometry": {"type": "Point", "coordinates": [2.67975778756, 47.8346228413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d6cff46cec731d597605a614b58377bba2dcd7", "fields": {"nom_de_la_commune": "PUISEAUX", "libell_d_acheminement": "PUISEAUX", "code_postal": "45390", "coordonnees_gps": [48.1960479378, 2.43683004462], "code_commune_insee": "45258"}, "geometry": {"type": "Point", "coordinates": [2.43683004462, 48.1960479378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b582d32bd125f457abfa7d197355656c7f8159f", "fields": {"nom_de_la_commune": "REBRECHIEN", "libell_d_acheminement": "REBRECHIEN", "code_postal": "45470", "coordonnees_gps": [47.9894256341, 2.08205266737], "code_commune_insee": "45261"}, "geometry": {"type": "Point", "coordinates": [2.08205266737, 47.9894256341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f49e4ad60efde91c607b9d24923a5e1a0319f9", "fields": {"nom_de_la_commune": "ROUVRES ST JEAN", "libell_d_acheminement": "ROUVRES ST JEAN", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45263"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0351b670f39faa7fe03975d2286040dae08405e8", "fields": {"nom_de_la_commune": "RUAN", "libell_d_acheminement": "RUAN", "code_postal": "45410", "coordonnees_gps": [48.0813211933, 1.88378056007], "code_commune_insee": "45266"}, "geometry": {"type": "Point", "coordinates": [1.88378056007, 48.0813211933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e04740083465e7e2bf40797a14bbd1e2925caf0a", "fields": {"nom_de_la_commune": "ST AIGNAN LE JAILLARD", "libell_d_acheminement": "ST AIGNAN LE JAILLARD", "code_postal": "45600", "coordonnees_gps": [47.7248279742, 2.37123638142], "code_commune_insee": "45268"}, "geometry": {"type": "Point", "coordinates": [2.37123638142, 47.7248279742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de214726496f88114b6a4cb0831640353513a479", "fields": {"nom_de_la_commune": "ST AY", "libell_d_acheminement": "ST AY", "code_postal": "45130", "coordonnees_gps": [47.8998652647, 1.6507129188], "code_commune_insee": "45269"}, "geometry": {"type": "Point", "coordinates": [1.6507129188, 47.8998652647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea40b8b1fe8ff005141e65e95987a4190d0b2b7", "fields": {"nom_de_la_commune": "ST FIRMIN SUR LOIRE", "libell_d_acheminement": "ST FIRMIN SUR LOIRE", "code_postal": "45360", "coordonnees_gps": [47.5591036835, 2.69824746137], "code_commune_insee": "45276"}, "geometry": {"type": "Point", "coordinates": [2.69824746137, 47.5591036835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92dabba444a5cc5f145a362a6c90f96cf7e3d8e", "fields": {"nom_de_la_commune": "STE GENEVIEVE DES BOIS", "libell_d_acheminement": "STE GENEVIEVE DES BOIS", "code_postal": "45230", "coordonnees_gps": [47.8080760606, 2.86273192034], "code_commune_insee": "45278"}, "geometry": {"type": "Point", "coordinates": [2.86273192034, 47.8080760606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3628f09f1058e46c8b333a9957e3e009e4ccd7a5", "fields": {"nom_de_la_commune": "ST MARTIN D ABBAT", "libell_d_acheminement": "ST MARTIN D ABBAT", "code_postal": "45110", "coordonnees_gps": [47.8743242491, 2.26314688236], "code_commune_insee": "45290"}, "geometry": {"type": "Point", "coordinates": [2.26314688236, 47.8743242491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7da897e0b62bcdecd8f731087549a71572f05df", "fields": {"nom_de_la_commune": "SEICHEBRIERES", "libell_d_acheminement": "SEICHEBRIERES", "code_postal": "45530", "coordonnees_gps": [47.9488737088, 2.29855578175], "code_commune_insee": "45305"}, "geometry": {"type": "Point", "coordinates": [2.29855578175, 47.9488737088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc504bdd2b0202356423ada681d050d32433647a", "fields": {"nom_de_la_commune": "LA SELLE EN HERMOY", "libell_d_acheminement": "LA SELLE EN HERMOY", "code_postal": "45210", "coordonnees_gps": [48.0887848026, 2.86578598407], "code_commune_insee": "45306"}, "geometry": {"type": "Point", "coordinates": [2.86578598407, 48.0887848026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66b73bdc673e321831d99db0c25ed2575ca274a1", "fields": {"nom_de_la_commune": "SERMAISES", "libell_d_acheminement": "SERMAISES", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45310"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "629582c742127d994958d4fc62548f2bd3857ab4", "fields": {"nom_de_la_commune": "SOLTERRE", "libell_d_acheminement": "SOLTERRE", "code_postal": "45700", "coordonnees_gps": [47.9535204862, 2.6968652899], "code_commune_insee": "45312"}, "geometry": {"type": "Point", "coordinates": [2.6968652899, 47.9535204862]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c156375eaeab9e8780420c4928cb7d72d866cc", "fields": {"nom_de_la_commune": "SULLY LA CHAPELLE", "libell_d_acheminement": "SULLY LA CHAPELLE", "code_postal": "45450", "coordonnees_gps": [47.9620977232, 2.17370967023], "code_commune_insee": "45314"}, "geometry": {"type": "Point", "coordinates": [2.17370967023, 47.9620977232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca5cd17e4593bbdd58709b0cb2923b4883dd4cd0", "fields": {"nom_de_la_commune": "SURY AUX BOIS", "libell_d_acheminement": "SURY AUX BOIS", "code_postal": "45530", "coordonnees_gps": [47.9488737088, 2.29855578175], "code_commune_insee": "45316"}, "geometry": {"type": "Point", "coordinates": [2.29855578175, 47.9488737088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b62790f05d03058bad8c9a8ff53d311da82563", "fields": {"nom_de_la_commune": "TIVERNON", "libell_d_acheminement": "TIVERNON", "code_postal": "45170", "coordonnees_gps": [48.0809443986, 2.05747366676], "code_commune_insee": "45325"}, "geometry": {"type": "Point", "coordinates": [2.05747366676, 48.0809443986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc90419ab3ac28cb0d3d80dce20f1544817ebd41", "fields": {"nom_de_la_commune": "TOURNOISIS", "libell_d_acheminement": "TOURNOISIS", "code_postal": "45310", "coordonnees_gps": [48.0141699593, 1.6696840611], "code_commune_insee": "45326"}, "geometry": {"type": "Point", "coordinates": [1.6696840611, 48.0141699593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd41185a88fc5c1fa2f0fdfb34ff8b490c0fb6b", "fields": {"nom_de_la_commune": "TRINAY", "libell_d_acheminement": "TRINAY", "code_postal": "45410", "coordonnees_gps": [48.0813211933, 1.88378056007], "code_commune_insee": "45330"}, "geometry": {"type": "Point", "coordinates": [1.88378056007, 48.0813211933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d5d8e6e5177266c46e0ccdd7677aa54b7087ec0", "fields": {"nom_de_la_commune": "VENNECY", "libell_d_acheminement": "VENNECY", "code_postal": "45760", "coordonnees_gps": [47.9504956092, 2.02989730454], "code_commune_insee": "45333"}, "geometry": {"type": "Point", "coordinates": [2.02989730454, 47.9504956092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c088a76457c96ca649892683620c32cafe0466f2", "fields": {"nom_de_la_commune": "VIEILLES MAISONS SUR JOUDRY", "libell_d_acheminement": "VIEILLES MAISONS SUR JOUDRY", "code_postal": "45260", "coordonnees_gps": [47.8858062716, 2.51389256145], "code_commune_insee": "45334"}, "geometry": {"type": "Point", "coordinates": [2.51389256145, 47.8858062716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67bf595dcdf373975bbf9ec824f0cdd176ed29b", "fields": {"nom_de_la_commune": "VILLEMOUTIERS", "libell_d_acheminement": "VILLEMOUTIERS", "code_postal": "45270", "coordonnees_gps": [47.9909280993, 2.48335113975], "code_commune_insee": "45339"}, "geometry": {"type": "Point", "coordinates": [2.48335113975, 47.9909280993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312598742d453fe2d3c45f2ee4cbed0340f477d0", "fields": {"nom_de_la_commune": "VRIGNY", "libell_d_acheminement": "VRIGNY", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45347"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c61327033cbca076541bc626ee14bac9244674ed", "fields": {"nom_de_la_commune": "YEVRE LA VILLE", "libell_d_acheminement": "YEVRE LA VILLE", "code_postal": "45300", "coordonnees_gps": [48.1872746027, 2.25373917421], "code_commune_insee": "45348"}, "geometry": {"type": "Point", "coordinates": [2.25373917421, 48.1872746027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c6a76a17503b706dcb2deaf8644563696ef6d1", "fields": {"nom_de_la_commune": "ANGLARS", "libell_d_acheminement": "ANGLARS", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46004"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f44024b773fd495d77ee3f61b36cfe1ce78ec55e", "fields": {"nom_de_la_commune": "BACH", "libell_d_acheminement": "BACH", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46013"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a345630e2a7e4915b27309218debdc66c5f6a5b2", "fields": {"nom_de_la_commune": "BAGAT EN QUERCY", "libell_d_acheminement": "BAGAT EN QUERCY", "code_postal": "46800", "coordonnees_gps": [44.3585211768, 1.21527135512], "code_commune_insee": "46014"}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f4128e64d59183788b8ffd961ff71b98bd08fa", "fields": {"nom_de_la_commune": "BELMONT BRETENOUX", "libell_d_acheminement": "BELMONT BRETENOUX", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46024"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d284eda09f471b82c754fb5df655456cc5cd77f6", "fields": {"nom_de_la_commune": "BETAILLE", "libell_d_acheminement": "BETAILLE", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46028"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90aa03f1c29f56529e7e1adab419cb2e921b0abc", "fields": {"nom_de_la_commune": "BRETENOUX", "libell_d_acheminement": "BRETENOUX", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46038"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb53cfd048a2eab0bd36049ac4337834fb15ee8", "fields": {"nom_de_la_commune": "BRENGUES", "libell_d_acheminement": "BRENGUES", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46039"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dc95fbb51b45cffc3d55298d81619219c00f77d", "fields": {"nom_de_la_commune": "CAILLAC", "libell_d_acheminement": "CAILLAC", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46044"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97c685583b64c44b4f37be9518cfb5f5add6d812", "fields": {"nom_de_la_commune": "CAMBAYRAC", "libell_d_acheminement": "CAMBAYRAC", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46050"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efaab7feeb645e8e3ad88a5c77544e603543bf2", "fields": {"nom_de_la_commune": "CAPDENAC", "libell_d_acheminement": "CAPDENAC", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46055"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09fa35a34ca76535f7bd72cf65ab51e53e51dbc9", "fields": {"nom_de_la_commune": "CARAYAC", "libell_d_acheminement": "CARAYAC", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46056"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc33790145e7d9258f82d14fc38d70ac23f6f2a", "fields": {"nom_de_la_commune": "CARDAILLAC", "libell_d_acheminement": "CARDAILLAC", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46057"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "284c688c6c639094891be938620f5c99222c34da", "fields": {"nom_de_la_commune": "CIEURAC", "libell_d_acheminement": "CIEURAC", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46070"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c6fd85370664b86a1aaa10bda48a6afddfb8fc", "fields": {"nom_de_la_commune": "CRAYSSAC", "libell_d_acheminement": "CRAYSSAC", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46080"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9356da8500e104433b47ab956be8b3fb2f44fe70", "fields": {"nom_de_la_commune": "DOUELLE", "libell_d_acheminement": "DOUELLE", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46088"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3d1c4350a0723f931f6a5a4a56a23b7730f31f", "fields": {"nom_de_la_commune": "DURAVEL", "libell_d_acheminement": "DURAVEL", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46089"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c86eb16e6aa8d4e19f430dd276add36870ac3b", "fields": {"nom_de_la_commune": "ESPERE", "libell_d_acheminement": "ESPERE", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46095"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "575abdeac0265d6e2bc8adf7b0122d3a6554c0b7", "fields": {"nom_de_la_commune": "ESTAL", "libell_d_acheminement": "ESTAL", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46097"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a3472deca080aa423342a44f9190f625c810fbf", "fields": {"nom_de_la_commune": "FLAUJAC POUJOLS", "libell_d_acheminement": "FLAUJAC POUJOLS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46105"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "829b18e50022c0a8bd63cfc3eaef18aa03bf5cbd", "fields": {"nom_de_la_commune": "FLORESSAS", "libell_d_acheminement": "FLORESSAS", "code_postal": "46700", "coordonnees_gps": [44.4982429609, 1.08720546775], "code_commune_insee": "46107"}, "geometry": {"type": "Point", "coordinates": [1.08720546775, 44.4982429609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51cf6a2f41af879bc7b7cd2b00381ac82e2486e0", "fields": {"nom_de_la_commune": "FONTANES", "libell_d_acheminement": "FONTANES", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46109"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030440fe55c929ec97479723ffd759b9ad0548fd", "fields": {"nom_de_la_commune": "GIGNAC", "libell_d_acheminement": "GIGNAC", "code_postal": "46600", "coordonnees_gps": [44.9553915789, 1.56930926768], "code_commune_insee": "46118"}, "geometry": {"type": "Point", "coordinates": [1.56930926768, 44.9553915789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "857750216bbbee3cfcf4f0d7067e598a7507e0a7", "fields": {"nom_de_la_commune": "GIGOUZAC", "libell_d_acheminement": "GIGOUZAC", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46119"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da66856032f5ee8e06e2b81464e8fda1f6b9076b", "fields": {"nom_de_la_commune": "GINTRAC", "libell_d_acheminement": "GINTRAC", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46122"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b666ad04a00f46b4e0782372b03d6f1eb1fa6e", "fields": {"nom_de_la_commune": "GOURDON", "libell_d_acheminement": "GOURDON", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46127"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f936bd60038bcbca1f84890339c0363ad0f93c", "fields": {"nom_de_la_commune": "LABASTIDE DU VERT", "libell_d_acheminement": "LABASTIDE DU VERT", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46136"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb7da76ccc2a6518ed099ebabed4bb4421f463b7", "fields": {"code_postal": "46240", "code_commune_insee": "46138", "libell_d_acheminement": "COEUR DE CAUSSE", "ligne_5": "BEAUMAT", "nom_de_la_commune": "COEUR DE CAUSSE", "coordonnees_gps": [44.6554006937, 1.59713194799]}, "geometry": {"type": "Point", "coordinates": [1.59713194799, 44.6554006937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e867e925c8ef5e68c6620a1a9e6e5c34daec43", "fields": {"nom_de_la_commune": "LAGARDELLE", "libell_d_acheminement": "LAGARDELLE", "code_postal": "46220", "coordonnees_gps": [44.5097292644, 1.18339970147], "code_commune_insee": "46147"}, "geometry": {"type": "Point", "coordinates": [1.18339970147, 44.5097292644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c031fff97652083587d0e46a261d4f5ef79516d3", "fields": {"nom_de_la_commune": "LAVERGNE", "libell_d_acheminement": "LAVERGNE", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46165"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1003a7aa37e2ff96c5fc31c8e3698b4b23b41b01", "fields": {"nom_de_la_commune": "LHOSPITALET", "libell_d_acheminement": "LHOSPITALET", "code_postal": "46170", "coordonnees_gps": [44.2978599733, 1.37150326445], "code_commune_insee": "46172"}, "geometry": {"type": "Point", "coordinates": [1.37150326445, 44.2978599733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34c1fc3e470b415785b0c11864c4af5d2055cbe2", "fields": {"nom_de_la_commune": "LISSAC ET MOURET", "libell_d_acheminement": "LISSAC ET MOURET", "code_postal": "46100", "coordonnees_gps": [44.6196578758, 1.99907921588], "code_commune_insee": "46175"}, "geometry": {"type": "Point", "coordinates": [1.99907921588, 44.6196578758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac859a40201effd9894bdf26ff17bf1097671dda", "fields": {"nom_de_la_commune": "LIVERNON", "libell_d_acheminement": "LIVERNON", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46176"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8c776c1cc82f0ece134f5aa22bbd15cc0eab07d", "fields": {"nom_de_la_commune": "LOUBRESSAC", "libell_d_acheminement": "LOUBRESSAC", "code_postal": "46130", "coordonnees_gps": [44.9082108731, 1.84936992994], "code_commune_insee": "46177"}, "geometry": {"type": "Point", "coordinates": [1.84936992994, 44.9082108731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df89f3eeea6917cae2f3287785fbc9356d39f25a", "fields": {"nom_de_la_commune": "LUZECH", "libell_d_acheminement": "LUZECH", "code_postal": "46140", "coordonnees_gps": [44.4587405582, 1.2656539493], "code_commune_insee": "46182"}, "geometry": {"type": "Point", "coordinates": [1.2656539493, 44.4587405582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0641d766e36878b20c1f333be8e6d4cceaaedaf", "fields": {"nom_de_la_commune": "MAYRINHAC LENTOUR", "libell_d_acheminement": "MAYRINHAC LENTOUR", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46189"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ddce0072b696df727b3966f55dee270ec4a9e61", "fields": {"nom_de_la_commune": "MEYRONNE", "libell_d_acheminement": "MEYRONNE", "code_postal": "46200", "coordonnees_gps": [44.8875694704, 1.50529381889], "code_commune_insee": "46192"}, "geometry": {"type": "Point", "coordinates": [1.50529381889, 44.8875694704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "055bddeaf7de29b2b3b8b9a6aad2df76a95f0ccc", "fields": {"nom_de_la_commune": "MILHAC", "libell_d_acheminement": "MILHAC", "code_postal": "46300", "coordonnees_gps": [44.7441887507, 1.41110343039], "code_commune_insee": "46194"}, "geometry": {"type": "Point", "coordinates": [1.41110343039, 44.7441887507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82718722bb2108d02ed3e176b10932abd6f90a57", "fields": {"nom_de_la_commune": "MONTAMEL", "libell_d_acheminement": "MONTAMEL", "code_postal": "46310", "coordonnees_gps": [44.6394802041, 1.42656797195], "code_commune_insee": "46196"}, "geometry": {"type": "Point", "coordinates": [1.42656797195, 44.6394802041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a87c674659567780fe5bc3326cd0e9fd3c9ef2ff", "fields": {"nom_de_la_commune": "LE MONTAT", "libell_d_acheminement": "LE MONTAT", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46197"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fe1de95d477afcf220b95b2262c18b66946819d", "fields": {"nom_de_la_commune": "MONTBRUN", "libell_d_acheminement": "MONTBRUN", "code_postal": "46160", "coordonnees_gps": [44.5163420235, 1.82953577079], "code_commune_insee": "46198"}, "geometry": {"type": "Point", "coordinates": [1.82953577079, 44.5163420235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c50788eba2a091f53d7e956ccf7c98f51e8aa51f", "fields": {"nom_de_la_commune": "MONTCLERA", "libell_d_acheminement": "MONTCLERA", "code_postal": "46250", "coordonnees_gps": [44.6154509921, 1.19691401291], "code_commune_insee": "46200"}, "geometry": {"type": "Point", "coordinates": [1.19691401291, 44.6154509921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab5a9a05c698124289b1b573a70eb793e47cca6", "fields": {"code_postal": "46800", "code_commune_insee": "46201", "libell_d_acheminement": "MONTCUQ EN QUERCY BLANC", "ligne_5": "BELMONTET", "nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", "coordonnees_gps": [44.3585211768, 1.21527135512]}, "geometry": {"type": "Point", "coordinates": [1.21527135512, 44.3585211768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a510ba55a922700c9fcc8c00ba1fadecf9c0576e", "fields": {"nom_de_la_commune": "ORNIAC", "libell_d_acheminement": "ORNIAC", "code_postal": "46330", "coordonnees_gps": [44.503969424, 1.67446493402], "code_commune_insee": "46212"}, "geometry": {"type": "Point", "coordinates": [1.67446493402, 44.503969424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25a1f26b2766262e1be9c3ea672d8040bc1c7104", "fields": {"nom_de_la_commune": "PADIRAC", "libell_d_acheminement": "PADIRAC", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46213"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7407726e6a5f68476c1e154226b33087c50b52f", "fields": {"nom_de_la_commune": "PRAYSSAC", "libell_d_acheminement": "PRAYSSAC", "code_postal": "46220", "coordonnees_gps": [44.5097292644, 1.18339970147], "code_commune_insee": "46225"}, "geometry": {"type": "Point", "coordinates": [1.18339970147, 44.5097292644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "841ec2673700e6a2d545a0b6cfbdbe3cc18a2763", "fields": {"nom_de_la_commune": "PUYJOURDES", "libell_d_acheminement": "PUYJOURDES", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46230"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d978033e77ba69bef7c833e49c377d15b3eea5c1", "fields": {"nom_de_la_commune": "LES QUATRE ROUTES DU LOT", "libell_d_acheminement": "LES QUATRE ROUTES DU LOT", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46232"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da909c4fe9f77623be2600f62cd55537b5f89602", "fields": {"nom_de_la_commune": "REYREVIGNES", "libell_d_acheminement": "REYREVIGNES", "code_postal": "46320", "coordonnees_gps": [44.6447012942, 1.81435342065], "code_commune_insee": "46237"}, "geometry": {"type": "Point", "coordinates": [1.81435342065, 44.6447012942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6138100bdb45383617c6e1a01ccb7e4ea02e14aa", "fields": {"nom_de_la_commune": "ROCAMADOUR", "libell_d_acheminement": "ROCAMADOUR", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46240"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12bc01fea97d8d99f75e0962f43e0ece00f8865b", "fields": {"nom_de_la_commune": "ST BRESSOU", "libell_d_acheminement": "ST BRESSOU", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46249"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0671a1c02a36bd7fcc1bc2ea76ce7783e63e8023", "fields": {"code_postal": "46360", "code_commune_insee": "46252", "libell_d_acheminement": "LES PECHS DU VERS", "ligne_5": "ST CERNIN", "nom_de_la_commune": "LES PECHS DU VERS", "coordonnees_gps": [44.5788373248, 1.59698113973]}, "geometry": {"type": "Point", "coordinates": [1.59698113973, 44.5788373248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "673ed3b04e6e050b082ec870ee22ea1331d14671", "fields": {"nom_de_la_commune": "ST JEAN MIRABEL", "libell_d_acheminement": "ST JEAN MIRABEL", "code_postal": "46270", "coordonnees_gps": [44.6473088307, 2.13298082635], "code_commune_insee": "46272"}, "geometry": {"type": "Point", "coordinates": [2.13298082635, 44.6473088307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d6564f561ad3a7fc2202aec3b86d0d46cbaa53", "fields": {"nom_de_la_commune": "ST MEDARD DE PRESQUE", "libell_d_acheminement": "ST MEDARD DE PRESQUE", "code_postal": "46400", "coordonnees_gps": [44.8464393282, 1.9088704855], "code_commune_insee": "46281"}, "geometry": {"type": "Point", "coordinates": [1.9088704855, 44.8464393282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c44a4f451a17fc468fa9aad97b5a203c9e8bf91", "fields": {"nom_de_la_commune": "ST MICHEL DE BANNIERES", "libell_d_acheminement": "ST MICHEL DE BANNIERES", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46283"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61391fb4434da54dcefee68fd53c26ada1ef83f5", "fields": {"nom_de_la_commune": "THEDIRAC", "libell_d_acheminement": "THEDIRAC", "code_postal": "46150", "coordonnees_gps": [44.5548817391, 1.32888523161], "code_commune_insee": "46316"}, "geometry": {"type": "Point", "coordinates": [1.32888523161, 44.5548817391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31f97ea36d5a6756322e3e3c51a1fee734f4605e", "fields": {"nom_de_la_commune": "THEGRA", "libell_d_acheminement": "THEGRA", "code_postal": "46500", "coordonnees_gps": [44.7803374405, 1.69650074579], "code_commune_insee": "46317"}, "geometry": {"type": "Point", "coordinates": [1.69650074579, 44.7803374405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa32d8feaac18bc58b3dc54a6be7d765641f4fa5", "fields": {"nom_de_la_commune": "THEMINES", "libell_d_acheminement": "THEMINES", "code_postal": "46120", "coordonnees_gps": [44.7466376911, 1.91531197179], "code_commune_insee": "46318"}, "geometry": {"type": "Point", "coordinates": [1.91531197179, 44.7466376911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a727b77a78db0b46ecbd756593fd79907549896f", "fields": {"nom_de_la_commune": "TRESPOUX RASSIELS", "libell_d_acheminement": "TRESPOUX RASSIELS", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46322"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a0a0361e2791d0a764d357e5b84b3ec0bd667b2", "fields": {"nom_de_la_commune": "VALROUFIE", "libell_d_acheminement": "VALROUFIE", "code_postal": "46090", "coordonnees_gps": [44.4541569045, 1.46509252908], "code_commune_insee": "46327"}, "geometry": {"type": "Point", "coordinates": [1.46509252908, 44.4541569045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de2e9145bf8059815daf19e26590270f70cd424b", "fields": {"nom_de_la_commune": "VAYLATS", "libell_d_acheminement": "VAYLATS", "code_postal": "46230", "coordonnees_gps": [44.3311926222, 1.57367645875], "code_commune_insee": "46329"}, "geometry": {"type": "Point", "coordinates": [1.57367645875, 44.3311926222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d1ff7315ca7dbd077866a2409aef992c334505", "fields": {"nom_de_la_commune": "VAYRAC", "libell_d_acheminement": "VAYRAC", "code_postal": "46110", "coordonnees_gps": [44.9555371471, 1.6903236129], "code_commune_insee": "46330"}, "geometry": {"type": "Point", "coordinates": [1.6903236129, 44.9555371471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ee003f6bc2500921384475e7db8423e2ace5702", "fields": {"nom_de_la_commune": "VIDAILLAC", "libell_d_acheminement": "VIDAILLAC", "code_postal": "46260", "coordonnees_gps": [44.3818501086, 1.77024800045], "code_commune_insee": "46333"}, "geometry": {"type": "Point", "coordinates": [1.77024800045, 44.3818501086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8825065b95a97f1c058dddaaf2272d37f564c813", "fields": {"nom_de_la_commune": "ESTRABLIN", "libell_d_acheminement": "ESTRABLIN", "code_postal": "38780", "coordonnees_gps": [45.5202153457, 4.98494519095], "code_commune_insee": "38157"}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9655b6e867e7c74ed5a4e56d28992088a3c2335", "fields": {"nom_de_la_commune": "EYDOCHE", "libell_d_acheminement": "EYDOCHE", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38159"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddb6453c182d096697968f6c14aa966ba5e94172", "fields": {"nom_de_la_commune": "LA FERRIERE", "libell_d_acheminement": "LA FERRIERE", "code_postal": "38580", "coordonnees_gps": [45.3350666079, 6.10773824742], "code_commune_insee": "38163"}, "geometry": {"type": "Point", "coordinates": [6.10773824742, 45.3350666079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d6260d1325561b77993b6c6eea6e8c5ee069d7", "fields": {"code_postal": "38580", "code_commune_insee": "38163", "libell_d_acheminement": "LA FERRIERE", "ligne_5": "LE PLEYNET", "nom_de_la_commune": "LA FERRIERE", "coordonnees_gps": [45.3350666079, 6.10773824742]}, "geometry": {"type": "Point", "coordinates": [6.10773824742, 45.3350666079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "775b2c7c45bfc14e6572b857cf9b80c2cca57af6", "fields": {"nom_de_la_commune": "FONTANIL CORNILLON", "libell_d_acheminement": "FONTANIL CORNILLON", "code_postal": "38120", "coordonnees_gps": [45.2676163279, 5.69623665146], "code_commune_insee": "38170"}, "geometry": {"type": "Point", "coordinates": [5.69623665146, 45.2676163279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c89f558514edcdffafb9e26153829920c9367e", "fields": {"nom_de_la_commune": "HERBEYS", "libell_d_acheminement": "HERBEYS", "code_postal": "38320", "coordonnees_gps": [45.1372833334, 5.77563920733], "code_commune_insee": "38188"}, "geometry": {"type": "Point", "coordinates": [5.77563920733, 45.1372833334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f32795841dcfcc8dfbcf880f2d6fe2914af5e04", "fields": {"nom_de_la_commune": "LANS EN VERCORS", "libell_d_acheminement": "LANS EN VERCORS", "code_postal": "38250", "coordonnees_gps": [45.0702412058, 5.55481376045], "code_commune_insee": "38205"}, "geometry": {"type": "Point", "coordinates": [5.55481376045, 45.0702412058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b22b25cbba6ac20fca4e86fa49368fb963cf4c78", "fields": {"nom_de_la_commune": "LUZINAY", "libell_d_acheminement": "LUZINAY", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38215"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf0324b29b75f865d1dce8088f4bc53f0d3c1d7", "fields": {"nom_de_la_commune": "MALLEVAL EN VERCORS", "libell_d_acheminement": "MALLEVAL EN VERCORS", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38216"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41d236de5b4af23b79eabd88b64bf242624449f", "fields": {"nom_de_la_commune": "MARCIEU", "libell_d_acheminement": "MARCIEU", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38217"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319e08112f741d2e0276600fbbdea144d0db0c8b", "fields": {"nom_de_la_commune": "MASSIEU", "libell_d_acheminement": "MASSIEU", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38222"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24d465bda7628da278d945db01c1e6efa0fa96e1", "fields": {"nom_de_la_commune": "AUTRANS MEAUDRE EN VERCORS", "libell_d_acheminement": "AUTRANS MEAUDRE EN VERCORS", "code_postal": "38112", "coordonnees_gps": [45.1320619265, 5.52782413596], "code_commune_insee": "38225"}, "geometry": {"type": "Point", "coordinates": [5.52782413596, 45.1320619265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef63eb87432bdffb5f965bf5656e1933eec79bae", "fields": {"nom_de_la_commune": "MOISSIEU SUR DOLON", "libell_d_acheminement": "MOISSIEU SUR DOLON", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38240"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42f63d93c34aab1df44502c61aa6d22ca1206c50", "fields": {"nom_de_la_commune": "MONESTIER D AMBEL", "libell_d_acheminement": "MONESTIER D AMBEL", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38241"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80286121c748f5ae8920e4d7f3670151c49c0450", "fields": {"nom_de_la_commune": "MONESTIER DE CLERMONT", "libell_d_acheminement": "MONESTIER DE CLERMONT", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38242"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2f5bfbb97b9c0460d77919c2850044abe9ef970", "fields": {"nom_de_la_commune": "MONSTEROUX MILIEU", "libell_d_acheminement": "MONSTEROUX MILIEU", "code_postal": "38122", "coordonnees_gps": [45.4359368128, 4.99798252687], "code_commune_insee": "38244"}, "geometry": {"type": "Point", "coordinates": [4.99798252687, 45.4359368128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4de7e72ba7f384a8f59911235f748da12b91fe4", "fields": {"nom_de_la_commune": "MONTALIEU VERCIEU", "libell_d_acheminement": "MONTALIEU VERCIEU", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38247"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7708476cd8be527adf28638a163f31ca4e5473cf", "fields": {"nom_de_la_commune": "MONTCHABOUD", "libell_d_acheminement": "MONTCHABOUD", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38252"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd85e1414fda09f221b507258a115d60965f4526", "fields": {"nom_de_la_commune": "SERRE NERPOL", "libell_d_acheminement": "SERRE NERPOL", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38275"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e753e1974cf4a63d830ecff516cdf2649dc39682", "fields": {"nom_de_la_commune": "ORIS EN RATTIER", "libell_d_acheminement": "ORIS EN RATTIER", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38283"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6cc138f901680fc977eeef3c5e31d839aa3d885", "fields": {"nom_de_la_commune": "OYEU", "libell_d_acheminement": "OYEU", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38287"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23556ed18f36eaa6d8fd2cdd7ddf59c47ecdbad5", "fields": {"nom_de_la_commune": "PACT", "libell_d_acheminement": "PACT", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38290"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04640dfa8eb6b93bbe84453691e6b905ddd8b10", "fields": {"nom_de_la_commune": "PANISSAGE", "libell_d_acheminement": "PANISSAGE", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38293"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52995b787952b735ab7d02e0744badf3e705381c", "fields": {"nom_de_la_commune": "PENOL", "libell_d_acheminement": "PENOL", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38300"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c79cd284ad2e4822623ce3d6aad6ffd082952738", "fields": {"nom_de_la_commune": "PLAN", "libell_d_acheminement": "PLAN", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38308"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1356ac314f700f02d5103d0d10e2d7467c8d1ff9", "fields": {"nom_de_la_commune": "LE PONT DE CLAIX", "libell_d_acheminement": "LE PONT DE CLAIX", "code_postal": "38800", "coordonnees_gps": [45.1176440456, 5.71273169882], "code_commune_insee": "38317"}, "geometry": {"type": "Point", "coordinates": [5.71273169882, 45.1176440456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a6ec522170d0a8d76570eccc85122430230140a", "fields": {"nom_de_la_commune": "PONT EVEQUE", "libell_d_acheminement": "PONT EVEQUE", "code_postal": "38780", "coordonnees_gps": [45.5202153457, 4.98494519095], "code_commune_insee": "38318"}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c884a5e3d777652ba31c8eb0784b9054b475b047", "fields": {"nom_de_la_commune": "PRESLES", "libell_d_acheminement": "PRESLES", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38322"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fe29fc817726ee385109e759fc638c859eefc2d", "fields": {"nom_de_la_commune": "RIVES", "libell_d_acheminement": "RIVES SUR FURE", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38337"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8942791a45ef8fc2a8a990727504379296d174a9", "fields": {"code_postal": "38090", "code_commune_insee": "38339", "libell_d_acheminement": "ROCHE", "ligne_5": "BOIS DE ROCHE", "nom_de_la_commune": "ROCHE", "coordonnees_gps": [45.595478316, 5.15236035491]}, "geometry": {"type": "Point", "coordinates": [5.15236035491, 45.595478316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9cd918150850f600d1202fb2e2bfb4d68aa8db1", "fields": {"nom_de_la_commune": "RUY", "libell_d_acheminement": "RUY", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38348"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5ea592a27b95cc6df20a4abad16d00ff7debc2", "fields": {"code_postal": "38300", "code_commune_insee": "38348", "libell_d_acheminement": "RUY", "ligne_5": "MONTCEAU", "nom_de_la_commune": "RUY", "coordonnees_gps": [45.5640393391, 5.29545357844]}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4170aae70b5fe7755a968c2d88a91dea144435c", "fields": {"nom_de_la_commune": "ST AGNIN SUR BION", "libell_d_acheminement": "ST AGNIN SUR BION", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38351"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04f4b93fd906eb5d6115f8fd76ff9332d937cccf", "fields": {"nom_de_la_commune": "ST ALBAN DU RHONE", "libell_d_acheminement": "ST ALBAN DU RHONE", "code_postal": "38370", "coordonnees_gps": [45.436858951, 4.78033179088], "code_commune_insee": "38353"}, "geometry": {"type": "Point", "coordinates": [4.78033179088, 45.436858951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24d00ab1a796cfb6606ce3a3ef8519f01f382461", "fields": {"nom_de_la_commune": "STE ANNE SUR GERVONDE", "libell_d_acheminement": "STE ANNE SUR GERVONDE", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38358"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae67e7d60c48a6118afb90c455612b956b9530d3", "fields": {"nom_de_la_commune": "ST BARTHELEMY DE SECHILIENNE", "libell_d_acheminement": "ST BARTHELEMY DE SECHILIENNE", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38364"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "609115294876c93613e88535f000f1e802c689f7", "fields": {"nom_de_la_commune": "ST CHRISTOPHE SUR GUIERS", "libell_d_acheminement": "ST CHRISTOPHE SUR GUIERS", "code_postal": "38380", "coordonnees_gps": [45.375484002, 5.78036097359], "code_commune_insee": "38376"}, "geometry": {"type": "Point", "coordinates": [5.78036097359, 45.375484002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25a6aab8ea3a0a98bd5faeec8a6c762c7004f251", "fields": {"nom_de_la_commune": "ST EGREVE", "libell_d_acheminement": "ST EGREVE", "code_postal": "38120", "coordonnees_gps": [45.2676163279, 5.69623665146], "code_commune_insee": "38382"}, "geometry": {"type": "Point", "coordinates": [5.69623665146, 45.2676163279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2315939a8d1ec6f124040d285ab0769e04f65c25", "fields": {"nom_de_la_commune": "ST ETIENNE DE ST GEOIRS", "libell_d_acheminement": "ST ETIENNE DE ST GEOIRS", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38384"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff034a7b4bb4ebe49194e2fee5ef87e410205875", "fields": {"nom_de_la_commune": "ST GEOIRS", "libell_d_acheminement": "ST GEOIRS", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38387"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8e2b637e2bd27817558edafe31a5b03daff950", "fields": {"nom_de_la_commune": "ST HILAIRE DE BRENS", "libell_d_acheminement": "ST HILAIRE DE BRENS", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38392"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86a4f2c33ecb91aa1aada873ad43ce1bb191a5b", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38395"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b2175494d4656d387f868e6313e4dc8ce4da90", "fields": {"nom_de_la_commune": "ST HONORE", "libell_d_acheminement": "ST HONORE", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38396"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6f742cd5a2ba02a925976771f88c9dc684fa5c", "fields": {"nom_de_la_commune": "ST ISMIER", "libell_d_acheminement": "ST ISMIER", "code_postal": "38330", "coordonnees_gps": [45.246730874, 5.82653141673], "code_commune_insee": "38397"}, "geometry": {"type": "Point", "coordinates": [5.82653141673, 45.246730874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d51a0f5a5528c892a02a37a34bcc536a16543a48", "fields": {"nom_de_la_commune": "ST JEAN DE MOIRANS", "libell_d_acheminement": "ST JEAN DE MOIRANS", "code_postal": "38430", "coordonnees_gps": [45.3230969594, 5.56811777038], "code_commune_insee": "38400"}, "geometry": {"type": "Point", "coordinates": [5.56811777038, 45.3230969594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eade7865ec6a25acbf430328e774a310c6ef0539", "fields": {"nom_de_la_commune": "ST JEAN DE SOUDAIN", "libell_d_acheminement": "ST JEAN DE SOUDAIN", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38401"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "085fdcae325cdeda09a9e7f4ff63926b6404ad73", "fields": {"nom_de_la_commune": "ST JOSEPH DE RIVIERE", "libell_d_acheminement": "ST JOSEPH DE RIVIERE", "code_postal": "38134", "coordonnees_gps": [45.3576664534, 5.68172750392], "code_commune_insee": "38405"}, "geometry": {"type": "Point", "coordinates": [5.68172750392, 45.3576664534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8410489fb04f4fd555b67387ce8886f2e7586a44", "fields": {"nom_de_la_commune": "ST JUST DE CLAIX", "libell_d_acheminement": "ST JUST DE CLAIX", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38409"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecae3a2f1e6570679ca81f96b65bbdb33f7de7d5", "fields": {"nom_de_la_commune": "ST MARCELLIN", "libell_d_acheminement": "ST MARCELLIN", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38416"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd79aed17f3ff362a4f9f8f9f9c7d150bc7e0c5", "fields": {"nom_de_la_commune": "STE MARIE D ALLOIX", "libell_d_acheminement": "STE MARIE D ALLOIX", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38417"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24551e6cf9949194f2a9af7a213be9e5cd0a9cec", "fields": {"nom_de_la_commune": "ST MARTIN D URIAGE", "libell_d_acheminement": "ST MARTIN D URIAGE", "code_postal": "38410", "coordonnees_gps": [45.1312146211, 5.85219394747], "code_commune_insee": "38422"}, "geometry": {"type": "Point", "coordinates": [5.85219394747, 45.1312146211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f869e70468f4d7a30994bf46df4b08ecc3857441", "fields": {"nom_de_la_commune": "ST MICHEL DE ST GEOIRS", "libell_d_acheminement": "ST MICHEL DE ST GEOIRS", "code_postal": "38590", "coordonnees_gps": [45.3269585534, 5.36350054141], "code_commune_insee": "38427"}, "geometry": {"type": "Point", "coordinates": [5.36350054141, 45.3269585534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c66b41e85cd3e537ae78d9cb3f2fc85ebefcb0", "fields": {"nom_de_la_commune": "ST NIZIER DU MOUCHEROTTE", "libell_d_acheminement": "ST NIZIER DU MOUCHEROTTE", "code_postal": "38250", "coordonnees_gps": [45.0702412058, 5.55481376045], "code_commune_insee": "38433"}, "geometry": {"type": "Point", "coordinates": [5.55481376045, 45.0702412058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a482b98e7d64b9748af1f44192a31f2dc49ea2", "fields": {"nom_de_la_commune": "ST PAUL D IZEAUX", "libell_d_acheminement": "ST PAUL D IZEAUX", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38437"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4addd355201702fe5240f9c1b058c4d91dd951f", "fields": {"code_postal": "38570", "code_commune_insee": "38439", "libell_d_acheminement": "CRETS EN BELLEDONNE", "ligne_5": "MORETEL DE MAILLES", "nom_de_la_commune": "CRETS EN BELLEDONNE", "coordonnees_gps": [45.3269943353, 6.00916897234]}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b11aa61b4f4c86a266d8b2066c40ab0d4aaece1", "fields": {"nom_de_la_commune": "ST PIERRE DE CHARTREUSE", "libell_d_acheminement": "ST PIERRE DE CHARTREUSE", "code_postal": "38380", "coordonnees_gps": [45.375484002, 5.78036097359], "code_commune_insee": "38442"}, "geometry": {"type": "Point", "coordinates": [5.78036097359, 45.375484002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2439e4102c16a2028df926b42421bc457addf2b1", "fields": {"nom_de_la_commune": "ST PIERRE DE CHERENNES", "libell_d_acheminement": "ST PIERRE DE CHERENNES", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38443"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1f72ecb0af4e3dbe6e1c2c9c522e7b8c5d92d21", "fields": {"nom_de_la_commune": "ST QUENTIN FALLAVIER", "libell_d_acheminement": "ST QUENTIN FALLAVIER", "code_postal": "38070", "coordonnees_gps": [45.6394572079, 5.10879262464], "code_commune_insee": "38449"}, "geometry": {"type": "Point", "coordinates": [5.10879262464, 45.6394572079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc18c88925f322c2e34ae9f981a84edd0822565", "fields": {"code_postal": "38070", "code_commune_insee": "38449", "libell_d_acheminement": "ST QUENTIN FALLAVIER", "ligne_5": "FALLAVIER", "nom_de_la_commune": "ST QUENTIN FALLAVIER", "coordonnees_gps": [45.6394572079, 5.10879262464]}, "geometry": {"type": "Point", "coordinates": [5.10879262464, 45.6394572079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992a2c77dd599fd90ebb671d049b10b821438bb3", "fields": {"nom_de_la_commune": "ST ROMAIN DE SURIEU", "libell_d_acheminement": "ST ROMAIN DE SURIEU", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38452"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e915aadbbf4c5e208dbe1b4d103eae6cdcb48cff", "fields": {"nom_de_la_commune": "ST SEBASTIEN", "libell_d_acheminement": "ST SEBASTIEN", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38456"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04acc009bb58929ffb798da99a5e0466adc0704", "fields": {"nom_de_la_commune": "ST SIMEON DE BRESSIEUX", "libell_d_acheminement": "ST SIMEON DE BRESSIEUX", "code_postal": "38870", "coordonnees_gps": [45.3123965448, 5.28339736788], "code_commune_insee": "38457"}, "geometry": {"type": "Point", "coordinates": [5.28339736788, 45.3123965448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e901a22afa672b10de1a46e5fa5b4285163b543c", "fields": {"nom_de_la_commune": "ST SORLIN DE MORESTEL", "libell_d_acheminement": "ST SORLIN DE MORESTEL", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38458"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d97267c27fc9b2b34a06c98123c8732e09907b9", "fields": {"nom_de_la_commune": "ST VICTOR DE CESSIEU", "libell_d_acheminement": "ST VICTOR DE CESSIEU", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38464"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53dd992a4e099fe6c196ee6ffa1c651358b152d0", "fields": {"nom_de_la_commune": "SALAGNON", "libell_d_acheminement": "SALAGNON", "code_postal": "38890", "coordonnees_gps": [45.6399503357, 5.38104923329], "code_commune_insee": "38467"}, "geometry": {"type": "Point", "coordinates": [5.38104923329, 45.6399503357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "229329cfc12ff855728cb410eb50990157f57f2e", "fields": {"nom_de_la_commune": "LA SALETTE FALLAVAUX", "libell_d_acheminement": "LA SALETTE FALLAVAUX", "code_postal": "38970", "coordonnees_gps": [44.8108265458, 5.92291890548], "code_commune_insee": "38469"}, "geometry": {"type": "Point", "coordinates": [5.92291890548, 44.8108265458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b474c9ad78d80a57c10a4b1c48b7ac9996d2622", "fields": {"nom_de_la_commune": "SARDIEU", "libell_d_acheminement": "SARDIEU", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38473"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c00bb0fbb76a775654a9295d06a253550024ce6c", "fields": {"nom_de_la_commune": "SATOLAS ET BONCE", "libell_d_acheminement": "SATOLAS ET BONCE", "code_postal": "38290", "coordonnees_gps": [45.6634032734, 5.1509887973], "code_commune_insee": "38475"}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bcdc632048fb10a8f82c58a128215e44a01562a", "fields": {"nom_de_la_commune": "SEPTEME", "libell_d_acheminement": "SEPTEME", "code_postal": "38780", "coordonnees_gps": [45.5202153457, 4.98494519095], "code_commune_insee": "38480"}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e0ef9c8bd29cf35c9606d2bf1c897212b29fe02", "fields": {"nom_de_la_commune": "SEYSSUEL", "libell_d_acheminement": "SEYSSUEL", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38487"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d33ae9f6b53bb640df14d0fc99141a18af2e5a", "fields": {"nom_de_la_commune": "SONNAY", "libell_d_acheminement": "SONNAY", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38496"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7dbaa246edb4d27ed1b7de83ff59988f4bf46e5", "fields": {"nom_de_la_commune": "SOUSVILLE", "libell_d_acheminement": "SOUSVILLE", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38497"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177e706e95b65f041520f966febf51281606bb14", "fields": {"code_postal": "38230", "code_commune_insee": "38507", "libell_d_acheminement": "TIGNIEU JAMEYZIEU", "ligne_5": "JAMEYZIEU", "nom_de_la_commune": "TIGNIEU JAMEYZIEU", "coordonnees_gps": [45.7461483574, 5.17160988161]}, "geometry": {"type": "Point", "coordinates": [5.17160988161, 45.7461483574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c74cf37b47a37cf5d62890a003b0d4683b8107", "fields": {"nom_de_la_commune": "TORCHEFELON", "libell_d_acheminement": "TORCHEFELON", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38508"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1ff6e2a43ad7a2317aad0f5a4844d2292da56fb", "fields": {"nom_de_la_commune": "LE TOUVET", "libell_d_acheminement": "LE TOUVET", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38511"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e2bafb9750fe53f7693be41d61abe3a0931619", "fields": {"nom_de_la_commune": "TULLINS", "libell_d_acheminement": "TULLINS", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38517"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c0d376d8e167c56e24027ffabe01a2d4ba43cf", "fields": {"nom_de_la_commune": "VARACIEUX", "libell_d_acheminement": "VARACIEUX", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38523"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d23dea91f256009b7570c9106a4ac98795d2b84c", "fields": {"nom_de_la_commune": "VARCES ALLIERES ET RISSET", "libell_d_acheminement": "VARCES ALLIERES ET RISSET", "code_postal": "38760", "coordonnees_gps": [45.0790840767, 5.65520915705], "code_commune_insee": "38524"}, "geometry": {"type": "Point", "coordinates": [5.65520915705, 45.0790840767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178bfcfc215a81e856c42f90d757e4cf4480e5f2", "fields": {"code_postal": "38410", "code_commune_insee": "38529", "libell_d_acheminement": "VAULNAVEYS LE HAUT", "ligne_5": "URIAGE", "nom_de_la_commune": "VAULNAVEYS LE HAUT", "coordonnees_gps": [45.1312146211, 5.85219394747]}, "geometry": {"type": "Point", "coordinates": [5.85219394747, 45.1312146211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12003451e0b7ec904bba1fc00a0d6f538fe45768", "fields": {"nom_de_la_commune": "VENOSC", "libell_d_acheminement": "VENOSC", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38534"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a28f74597dff7265590a3942cb4ea3fc204117b7", "fields": {"nom_de_la_commune": "VERTRIEU", "libell_d_acheminement": "VERTRIEU", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38539"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bc3d025d9ee2d6b805c6a239d953e7617f602a0", "fields": {"code_postal": "38510", "code_commune_insee": "38543", "libell_d_acheminement": "VEZERONCE CURTIN", "ligne_5": "CURTIN", "nom_de_la_commune": "VEZERONCE CURTIN", "coordonnees_gps": [45.7026691916, 5.45358290741]}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a118192ddbdd87058a2e506b2cdf07acaf72a68f", "fields": {"code_postal": "38190", "code_commune_insee": "38547", "libell_d_acheminement": "VILLARD BONNOT", "ligne_5": "BRIGNOUD", "nom_de_la_commune": "VILLARD BONNOT", "coordonnees_gps": [45.2307367976, 5.94776788691]}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a206ab9fcff171af508c336c6841ceae7b99c25d", "fields": {"nom_de_la_commune": "VILLARD DE LANS", "libell_d_acheminement": "VILLARD DE LANS", "code_postal": "38250", "coordonnees_gps": [45.0702412058, 5.55481376045], "code_commune_insee": "38548"}, "geometry": {"type": "Point", "coordinates": [5.55481376045, 45.0702412058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a41d1160bfeab33ae9df3ba897701e6f38baf78", "fields": {"code_postal": "38280", "code_commune_insee": "38557", "libell_d_acheminement": "VILLETTE D ANTHON", "ligne_5": "ASNIERES", "nom_de_la_commune": "VILLETTE D ANTHON", "coordonnees_gps": [45.7761558636, 5.11926140068]}, "geometry": {"type": "Point", "coordinates": [5.11926140068, 45.7761558636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d520d653e2e02f583966bef6ee67238aad7f7a42", "fields": {"nom_de_la_commune": "VINAY", "libell_d_acheminement": "VINAY", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38559"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe371d4338ba2f80cbb9abcf16a2c93fcb3c529", "fields": {"nom_de_la_commune": "VOIRON", "libell_d_acheminement": "VOIRON", "code_postal": "38500", "coordonnees_gps": [45.3696031703, 5.59866099233], "code_commune_insee": "38563"}, "geometry": {"type": "Point", "coordinates": [5.59866099233, 45.3696031703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9df9d4ae83e01ae0b78eab7b72557ca579cc9f7c", "fields": {"nom_de_la_commune": "AMANGE", "libell_d_acheminement": "AMANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39008"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b62014612af1679c60becaf8d24b2fb0a235e037", "fields": {"nom_de_la_commune": "ANDELOT EN MONTAGNE", "libell_d_acheminement": "ANDELOT EN MONTAGNE", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39009"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60c0ab40310b6315416bb8668daed309924ba907", "fields": {"code_postal": "39210", "code_commune_insee": "39017", "libell_d_acheminement": "ARLAY", "ligne_5": "ST GERMAIN LES ARLAY", "nom_de_la_commune": "ARLAY", "coordonnees_gps": [46.742636609, 5.62862510157]}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58a76fe58f405ea8f1a03dac343647528a6b0960", "fields": {"nom_de_la_commune": "AUDELANGE", "libell_d_acheminement": "AUDELANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39024"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfb71f0461d011169e43e161c3e78f19cabafaf", "fields": {"nom_de_la_commune": "LA BARRE", "libell_d_acheminement": "LA BARRE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39039"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6bb8fa591ed64f715fec4f40331fd2bf6f93600", "fields": {"nom_de_la_commune": "BARRETAINE", "libell_d_acheminement": "BARRETAINE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39040"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3205a04ca56e7bb9b9d7637c2fc050fcaebedf9c", "fields": {"nom_de_la_commune": "BELLEFONTAINE", "libell_d_acheminement": "BELLEFONTAINE", "code_postal": "39400", "coordonnees_gps": [46.5030859232, 6.02288479651], "code_commune_insee": "39047"}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69e7281e8dcf32244107d26b860a9e26b0c3bdd", "fields": {"code_postal": "39800", "code_commune_insee": "39049", "libell_d_acheminement": "BERSAILLIN", "ligne_5": "LE BOUCHAUD", "nom_de_la_commune": "BERSAILLIN", "coordonnees_gps": [46.840381623, 5.68546108472]}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64bc7aa91bd48291adf364918a42a5f4208dee4c", "fields": {"nom_de_la_commune": "BIARNE", "libell_d_acheminement": "BIARNE", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39051"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "315f304f3882db4d714c091c4b39287f02a1dd0e", "fields": {"nom_de_la_commune": "BIEFMORIN", "libell_d_acheminement": "BIEFMORIN", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39054"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca2dce9b89c11f43493d97e6d1f89f281ab112f2", "fields": {"nom_de_la_commune": "LA BOISSIERE", "libell_d_acheminement": "LA BOISSIERE", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39062"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e8c98c6eb75033cfc34b73a37311eb149b0178", "fields": {"nom_de_la_commune": "BOURG DE SIROD", "libell_d_acheminement": "BOURG DE SIROD", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39070"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cac81b737f917eb80a035dc98c0dad05caf9777", "fields": {"nom_de_la_commune": "BRACON", "libell_d_acheminement": "BRACON", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39072"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a095312b35b49f6181b78ec714c9e63bd000bc7", "fields": {"nom_de_la_commune": "ST BRICE", "libell_d_acheminement": "ST BRICE", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16304"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f0eed7a6e592264deef5df331562ce6ab20ad6b", "fields": {"nom_de_la_commune": "ST CIERS SUR BONNIEURE", "libell_d_acheminement": "ST CIERS SUR BONNIEURE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16307"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aab88e0f5affbbbd386ba542508da872aad76d4", "fields": {"nom_de_la_commune": "ST COUTANT", "libell_d_acheminement": "ST COUTANT", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16310"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98b5cdabeee3988ed528c5ee7632170ee595282", "fields": {"nom_de_la_commune": "ST GENIS D HIERSAC", "libell_d_acheminement": "ST GENIS D HIERSAC", "code_postal": "16570", "coordonnees_gps": [45.7496501678, 0.052973066949], "code_commune_insee": "16320"}, "geometry": {"type": "Point", "coordinates": [0.052973066949, 45.7496501678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f38e4c28ecbabbf5e197c74c64299edc77c8c0cc", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16332"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99746048391d2c3ec4683959624dfd5ddb83ba7e", "fields": {"code_postal": "16170", "code_commune_insee": "16339", "libell_d_acheminement": "AUGE ST MEDARD", "ligne_5": "ST MEDARD", "nom_de_la_commune": "AUGE ST MEDARD", "coordonnees_gps": [45.7890325838, -0.0524231030464]}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcd60f9f020192e3e07237b11e4f57204e075074", "fields": {"nom_de_la_commune": "ST PALAIS DU NE", "libell_d_acheminement": "ST PALAIS DU NE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16342"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f80e5f2fedeca0fed788783d3d623e4f01f4574b", "fields": {"nom_de_la_commune": "ST QUENTIN DE CHALAIS", "libell_d_acheminement": "ST QUENTIN DE CHALAIS", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16346"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5894f4d769978d4542101fac848cd09b84555e6a", "fields": {"nom_de_la_commune": "STE SEVERE", "libell_d_acheminement": "STE SEVERE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16349"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2954eef33688af84e12dddadad4c43dfee0d78f2", "fields": {"nom_de_la_commune": "ST SEVERIN", "libell_d_acheminement": "ST SEVERIN", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16350"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9f48eb35751c80b1239cc41098f8b71eb5859a", "fields": {"nom_de_la_commune": "STE SOULINE", "libell_d_acheminement": "STE SOULINE", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16354"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab56d4781af2e4de3b4f3885c5afae3e6ccde468", "fields": {"nom_de_la_commune": "ST SULPICE DE COGNAC", "libell_d_acheminement": "ST SULPICE DE COGNAC", "code_postal": "16370", "coordonnees_gps": [45.7599366195, -0.346092589002], "code_commune_insee": "16355"}, "geometry": {"type": "Point", "coordinates": [-0.346092589002, 45.7599366195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b10f3024e7ad5355c4f7079c706ca5ed07df0db", "fields": {"nom_de_la_commune": "SEGONZAC", "libell_d_acheminement": "SEGONZAC", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16366"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61713b4bd60c3184a79af54cd32c8ea36e6b64ec", "fields": {"nom_de_la_commune": "TOUVRE", "libell_d_acheminement": "TOUVRE", "code_postal": "16600", "coordonnees_gps": [45.6754215966, 0.266312411242], "code_commune_insee": "16385"}, "geometry": {"type": "Point", "coordinates": [0.266312411242, 45.6754215966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c08149d2db5aa5477d3396e0d0e7084de00fba", "fields": {"nom_de_la_commune": "VARS", "libell_d_acheminement": "VARS", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16393"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fc8fddcec9b31162117905ac3779a54e9436e83", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16399"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd120a65fb22428564d1c1b786518e706e5b828", "fields": {"nom_de_la_commune": "VOEUIL ET GIGET", "libell_d_acheminement": "VOEUIL ET GIGET", "code_postal": "16400", "coordonnees_gps": [45.6075102934, 0.129005095086], "code_commune_insee": "16418"}, "geometry": {"type": "Point", "coordinates": [0.129005095086, 45.6075102934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01e281ff4fc3505d064eb022bc20438b831e1d14", "fields": {"nom_de_la_commune": "VOUHARTE", "libell_d_acheminement": "VOUHARTE", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16419"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f5b5a4c7ddd6379cf743489569bde8d482f4d56", "fields": {"nom_de_la_commune": "ANDILLY", "libell_d_acheminement": "ANDILLY", "code_postal": "17230", "coordonnees_gps": [46.286014889, -1.01509211949], "code_commune_insee": "17008"}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0ba926506ea5607d5a13f5a9d749920a7059b04", "fields": {"code_postal": "17400", "code_commune_insee": "17013", "libell_d_acheminement": "ANTEZANT LA CHAPELLE", "ligne_5": "LA CHAPELLE BATON", "nom_de_la_commune": "ANTEZANT LA CHAPELLE", "coordonnees_gps": [45.947220271, -0.4881385622]}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20a7a32d69370110fda6560e955d59e6b7152dbc", "fields": {"nom_de_la_commune": "ARCES", "libell_d_acheminement": "ARCES", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17015"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb292b3bffec1173ce225e87aa948fbff8eeee19", "fields": {"nom_de_la_commune": "ARDILLIERES", "libell_d_acheminement": "ARDILLIERES", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17018"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb10ba321cde8cc7f8deed67aaadd60a10fd190", "fields": {"nom_de_la_commune": "ARS EN RE", "libell_d_acheminement": "ARS EN RE", "code_postal": "17590", "coordonnees_gps": [46.2211665478, -1.52366655829], "code_commune_insee": "17019"}, "geometry": {"type": "Point", "coordinates": [-1.52366655829, 46.2211665478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f25fd47e6e9b7079b1af49a26ca881e5ce71936", "fields": {"nom_de_la_commune": "ARVERT", "libell_d_acheminement": "ARVERT", "code_postal": "17530", "coordonnees_gps": [45.7468740893, -1.12373181076], "code_commune_insee": "17021"}, "geometry": {"type": "Point", "coordinates": [-1.12373181076, 45.7468740893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79eb42f0d3839c29416a8432e0b7b58c4b19ab0c", "fields": {"nom_de_la_commune": "AVY", "libell_d_acheminement": "AVY", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17027"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb0a36691e1868286ed51031d804e5973679b1d7", "fields": {"nom_de_la_commune": "BALLANS", "libell_d_acheminement": "BALLANS", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17031"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "257d6a03a3a32053277e07e38820e2e331a223b1", "fields": {"nom_de_la_commune": "BARZAN", "libell_d_acheminement": "BARZAN", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17034"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c838bc22dfff5ae52636170d5ec09634a5d8a481", "fields": {"nom_de_la_commune": "BEAUGEAY", "libell_d_acheminement": "BEAUGEAY", "code_postal": "17620", "coordonnees_gps": [45.8464645946, -0.95771650444], "code_commune_insee": "17036"}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cecae4e5b9921c8c0363ee902bdb580db83b69c8", "fields": {"nom_de_la_commune": "BERCLOUX", "libell_d_acheminement": "BERCLOUX", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17042"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3dd4c45010f61339166523711434f76856f6002", "fields": {"code_postal": "17330", "code_commune_insee": "17043", "libell_d_acheminement": "BERNAY ST MARTIN", "ligne_5": "ST MARTIN DE LA COUDRE", "nom_de_la_commune": "BERNAY ST MARTIN", "coordonnees_gps": [46.0720131414, -0.537761612813]}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee53b30973e532340f24a0cc502376c97910534", "fields": {"nom_de_la_commune": "BERNEUIL", "libell_d_acheminement": "BERNEUIL", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17044"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d39dcaddbf152ad84e7e0a977a926eb18a7a86", "fields": {"nom_de_la_commune": "BIGNAY", "libell_d_acheminement": "BIGNAY", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17046"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04dab78da1285a8eec3db77289f9895a7df8ba82", "fields": {"nom_de_la_commune": "BORESSE ET MARTRON", "libell_d_acheminement": "BORESSE ET MARTRON", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17054"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f4152f1152df5aa273ea1749bc4ed46c36d47c8", "fields": {"nom_de_la_commune": "BREUIL LA REORTE", "libell_d_acheminement": "BREUIL LA REORTE", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17063"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c6af96a5d9a4f7cd13890a0b3c173602109a74", "fields": {"nom_de_la_commune": "BRIE SOUS MATHA", "libell_d_acheminement": "BRIE SOUS MATHA", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17067"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f107ce2dd4d153219e6324106e68766581a9dd54", "fields": {"nom_de_la_commune": "BURIE", "libell_d_acheminement": "BURIE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17072"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6254e83e76a560e7ebaf088fc61e8ed3308aca9", "fields": {"nom_de_la_commune": "BUSSAC FORET", "libell_d_acheminement": "BUSSAC FORET", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17074"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edbab73c81c68d52bfedcfd04e3778f45766c4da", "fields": {"nom_de_la_commune": "CHADENAC", "libell_d_acheminement": "CHADENAC", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17078"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1236be7ffe149a0288d7aabc9fdb51bc6be42b43", "fields": {"nom_de_la_commune": "CHAMOUILLAC", "libell_d_acheminement": "CHAMOUILLAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17081"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4336a3ed40ad71d55510db95ed29fc153d5879a", "fields": {"nom_de_la_commune": "CHAMPDOLENT", "libell_d_acheminement": "CHAMPDOLENT", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17085"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "095bb90fe1e1415781cbfcba9abcdd82afcaf11c", "fields": {"nom_de_la_commune": "CHANIERS", "libell_d_acheminement": "CHANIERS", "code_postal": "17610", "coordonnees_gps": [45.7221951578, -0.496240625744], "code_commune_insee": "17086"}, "geometry": {"type": "Point", "coordinates": [-0.496240625744, 45.7221951578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7755ffcd5ce001bc6037f2925849327ea73cd722", "fields": {"nom_de_la_commune": "CHANTEMERLE SUR LA SOIE", "libell_d_acheminement": "CHANTEMERLE SUR LA SOIE", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17087"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d58cef9d64d77b68e61940689d102c7e3d2b0e71", "fields": {"nom_de_la_commune": "LA CHAPELLE DES POTS", "libell_d_acheminement": "LA CHAPELLE DES POTS", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17089"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140943f2c1ada4a76258ef09ecafbf8c3fa7bbdb", "fields": {"nom_de_la_commune": "CHARRON", "libell_d_acheminement": "CHARRON", "code_postal": "17230", "coordonnees_gps": [46.286014889, -1.01509211949], "code_commune_insee": "17091"}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5f6b6c3ecb89e2ff1f532e78fb54b909ddf46a", "fields": {"nom_de_la_commune": "CHATELAILLON PLAGE", "libell_d_acheminement": "CHATELAILLON PLAGE", "code_postal": "17340", "coordonnees_gps": [46.0464260547, -1.04444906455], "code_commune_insee": "17094"}, "geometry": {"type": "Point", "coordinates": [-1.04444906455, 46.0464260547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99f7528276e714c5b950c610cdb6e1ee123328fc", "fields": {"nom_de_la_commune": "LA COUARDE SUR MER", "libell_d_acheminement": "LA COUARDE SUR MER", "code_postal": "17670", "coordonnees_gps": [46.2015077019, -1.43667293665], "code_commune_insee": "17121"}, "geometry": {"type": "Point", "coordinates": [-1.43667293665, 46.2015077019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3ca86e838e7ffa181f0427a03d61088bd1bedb5", "fields": {"nom_de_la_commune": "COURCELLES", "libell_d_acheminement": "COURCELLES", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17125"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7275a90f66d68525f3f6bf8a962d4a277faa9dd", "fields": {"nom_de_la_commune": "COURCERAC", "libell_d_acheminement": "COURCERAC", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17126"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "927e934447c368ff92b2b50ec47aa097f251a460", "fields": {"nom_de_la_commune": "COURPIGNAC", "libell_d_acheminement": "COURPIGNAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17129"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c301180249e0be6094c7e2568a45abf22bc4274", "fields": {"nom_de_la_commune": "CRAMCHABAN", "libell_d_acheminement": "CRAMCHABAN", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17132"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cc0b64434b7f5de0d76124eee820864468d5594", "fields": {"nom_de_la_commune": "DAMPIERRE SUR BOUTONNE", "libell_d_acheminement": "DAMPIERRE SUR BOUTONNE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17138"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c76835154bba703a8510a07988bb59abbac437a", "fields": {"nom_de_la_commune": "DOMPIERRE SUR CHARENTE", "libell_d_acheminement": "DOMPIERRE SUR CHARENTE", "code_postal": "17610", "coordonnees_gps": [45.7221951578, -0.496240625744], "code_commune_insee": "17141"}, "geometry": {"type": "Point", "coordinates": [-0.496240625744, 45.7221951578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fdeae111ea63fb1e2c7e62b1c3a3b697605bdd2", "fields": {"nom_de_la_commune": "ECHILLAIS", "libell_d_acheminement": "ECHILLAIS", "code_postal": "17620", "coordonnees_gps": [45.8464645946, -0.95771650444], "code_commune_insee": "17146"}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd62c01054c54eb8830ffaea16dd4e333e41770", "fields": {"nom_de_la_commune": "LA FLOTTE", "libell_d_acheminement": "LA FLOTTE", "code_postal": "17630", "coordonnees_gps": [46.1793340347, -1.32137333806], "code_commune_insee": "17161"}, "geometry": {"type": "Point", "coordinates": [-1.32137333806, 46.1793340347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "442a95dec05a1fc4df659d781d33e63a31f49b36", "fields": {"code_postal": "17290", "code_commune_insee": "17166", "libell_d_acheminement": "FORGES", "ligne_5": "PUYDROUARD", "nom_de_la_commune": "FORGES", "coordonnees_gps": [46.0811400523, -0.91821720861]}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3540c32ffd313afa326f0b2f8fde02c29ac2a52", "fields": {"nom_de_la_commune": "LE FOUILLOUX", "libell_d_acheminement": "LE FOUILLOUX", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17167"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d04bf81f64b52f63d18979088b2db6d7cccdf564", "fields": {"nom_de_la_commune": "LES GONDS", "libell_d_acheminement": "LES GONDS", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17179"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "968ca2c952ec20cbfb5dadb11fa9943e2c13c219", "fields": {"nom_de_la_commune": "GRANDJEAN", "libell_d_acheminement": "GRANDJEAN", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17181"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f78da836b365e1430b96ffa7e846f0cd579e5a0d", "fields": {"nom_de_la_commune": "LA GRIPPERIE ST SYMPHORIEN", "libell_d_acheminement": "LA GRIPPERIE ST SYMPHORIEN", "code_postal": "17620", "coordonnees_gps": [45.8464645946, -0.95771650444], "code_commune_insee": "17184"}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6849bc928129346ae9dd2c8f2ac8e1851695e989", "fields": {"nom_de_la_commune": "LE GUE D ALLERE", "libell_d_acheminement": "LE GUE D ALLERE", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17186"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad49d3a242f19813952cf0583caa5f0abf65979", "fields": {"nom_de_la_commune": "LA JARRIE", "libell_d_acheminement": "LA JARRIE", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17194"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4dc86b64825c3ef8f17da484eeff3191bbc8f1f", "fields": {"nom_de_la_commune": "LA JARRIE AUDOUIN", "libell_d_acheminement": "LA JARRIE AUDOUIN", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17195"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b1a7da258dd934f6b84f80c7f73de3fcaf38dd", "fields": {"nom_de_la_commune": "JONZAC", "libell_d_acheminement": "JONZAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17197"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f5534c47ebb28af30384dc6967af70aa3af8a28", "fields": {"nom_de_la_commune": "JUICQ", "libell_d_acheminement": "JUICQ", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17198"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "555090e319a47daeb69b695797f4a26093c074fc", "fields": {"nom_de_la_commune": "LA LAIGNE", "libell_d_acheminement": "LA LAIGNE", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17201"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5a323c7e305c844eff31f403a898d9b3f596e0", "fields": {"nom_de_la_commune": "LEOVILLE", "libell_d_acheminement": "LEOVILLE", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17204"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed3d32ef5bd574068348cd79fd7d021eed974ec6", "fields": {"nom_de_la_commune": "LOIRE LES MARAIS", "libell_d_acheminement": "LOIRE LES MARAIS", "code_postal": "17870", "coordonnees_gps": [45.997423768, -0.952432247798], "code_commune_insee": "17205"}, "geometry": {"type": "Point", "coordinates": [-0.952432247798, 45.997423768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2ac7b39b5eb5d79bf5160237f8572d2f3b9d499", "fields": {"nom_de_la_commune": "LORIGNAC", "libell_d_acheminement": "LORIGNAC", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17210"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d6015dd15818822dec92aee057042add05d63ae", "fields": {"nom_de_la_commune": "LOULAY", "libell_d_acheminement": "LOULAY", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17211"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a75771b6e82664e9cb6c341e0dac29986acce049", "fields": {"nom_de_la_commune": "LOUZIGNAC", "libell_d_acheminement": "LOUZIGNAC", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17212"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f474ec46f4ea1392316b501f83b017d8701c4eaf", "fields": {"nom_de_la_commune": "MARENNES", "libell_d_acheminement": "MARENNES", "code_postal": "17320", "coordonnees_gps": [45.8153693416, -1.06418747186], "code_commune_insee": "17219"}, "geometry": {"type": "Point", "coordinates": [-1.06418747186, 45.8153693416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb72affd4ac760fdffb595ce8b1a6826bbd4ce3", "fields": {"nom_de_la_commune": "MASSAC", "libell_d_acheminement": "MASSAC", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17223"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f59d9458efee0eba6da36789b63d4745e82e6c7", "fields": {"nom_de_la_commune": "MATHA", "libell_d_acheminement": "MATHA", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17224"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "559265a715c54679a36f536f884bcc57ed31af5d", "fields": {"nom_de_la_commune": "MEDIS", "libell_d_acheminement": "MEDIS", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17228"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274d084112bad7024bf973c6fa2910d8186318d9", "fields": {"nom_de_la_commune": "MESCHERS SUR GIRONDE", "libell_d_acheminement": "MESCHERS SUR GIRONDE", "code_postal": "17132", "coordonnees_gps": [45.5729919786, -0.94783085679], "code_commune_insee": "17230"}, "geometry": {"type": "Point", "coordinates": [-0.94783085679, 45.5729919786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b4cee3df8a6b728f93325ce72b8c3152cef36dc", "fields": {"nom_de_la_commune": "MEURSAC", "libell_d_acheminement": "MEURSAC", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17232"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08373c8c33fb4963921192a7d9e3b45ff5548aa8", "fields": {"nom_de_la_commune": "MOEZE", "libell_d_acheminement": "MOEZE", "code_postal": "17780", "coordonnees_gps": [45.9139828968, -1.03532159537], "code_commune_insee": "17237"}, "geometry": {"type": "Point", "coordinates": [-1.03532159537, 45.9139828968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1d6ad4566706121edc619420c3bf8b682dd6e25", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17239"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0336537e609ed409b0bbb3cfeb00256e6f172284", "fields": {"code_postal": "17130", "code_commune_insee": "17240", "libell_d_acheminement": "MONTENDRE", "ligne_5": "CHARDES", "nom_de_la_commune": "MONTENDRE", "coordonnees_gps": [45.3143331813, -0.405621594016]}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b080e9e48cc57b723815f959c7d01310d7899647", "fields": {"nom_de_la_commune": "MORAGNE", "libell_d_acheminement": "MORAGNE", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17246"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca40e697437dce7dbd6fce6d0694325a82823a2a", "fields": {"nom_de_la_commune": "MURON", "libell_d_acheminement": "MURON", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17253"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5a31969bae0ff6b321b6428c38fa894454cdc9", "fields": {"nom_de_la_commune": "NANTILLE", "libell_d_acheminement": "NANTILLE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17256"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "162e0c9f3954d34f2b3efd96a4b55a90eb27a980", "fields": {"nom_de_la_commune": "NEUILLAC", "libell_d_acheminement": "NEUILLAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17258"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3aa12bfaeb1e9520414d25585f04360b28129ed", "fields": {"nom_de_la_commune": "NEUVICQ", "libell_d_acheminement": "NEUVICQ", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17260"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55dce21cb16d684bdc3b55015c88ff802bb55d88", "fields": {"nom_de_la_commune": "NEUVICQ LE CHATEAU", "libell_d_acheminement": "NEUVICQ LE CHATEAU", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17261"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da762d8419c0eeebea774a2e79161e2e5053649d", "fields": {"nom_de_la_commune": "LES NOUILLERS", "libell_d_acheminement": "LES NOUILLERS", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17266"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272ea0a904ce51b95628c781a26ed073e1ed422b", "fields": {"nom_de_la_commune": "PERE", "libell_d_acheminement": "PERE", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17272"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b57422672fa5d0aaefdf5f37d8767bfa1494f9b", "fields": {"nom_de_la_commune": "PERIGNY", "libell_d_acheminement": "PERIGNY", "code_postal": "17180", "coordonnees_gps": [46.1578203899, -1.08917010815], "code_commune_insee": "17274"}, "geometry": {"type": "Point", "coordinates": [-1.08917010815, 46.1578203899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ac5a4e448a9743abbd6a8170551c999fe6a168f", "fields": {"nom_de_la_commune": "POMMIERS MOULONS", "libell_d_acheminement": "POMMIERS MOULONS", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17282"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "852797b11b889117a6855341a8e4f9cda20ed516", "fields": {"nom_de_la_commune": "POUILLAC", "libell_d_acheminement": "POUILLAC", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17287"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90b4ce9c4e4fe887559a7f0af743a32b9311b496", "fields": {"code_postal": "17500", "code_commune_insee": "17295", "libell_d_acheminement": "REAUX SUR TREFLE", "ligne_5": "ST MAURICE DE TAVERNOLE", "nom_de_la_commune": "REAUX SUR TREFLE", "coordonnees_gps": [45.4259589472, -0.405217175017]}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b629f4d7db69ff9c0dab34d267e67e4af285507c", "fields": {"nom_de_la_commune": "ROCHEFORT", "libell_d_acheminement": "ROCHEFORT", "code_postal": "17300", "coordonnees_gps": [45.9492956651, -0.975348891655], "code_commune_insee": "17299"}, "geometry": {"type": "Point", "coordinates": [-0.975348891655, 45.9492956651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "748371fb333db7bdfd39d6d5eea4aac92d5988e3", "fields": {"code_postal": "17000", "code_commune_insee": "17300", "libell_d_acheminement": "LA ROCHELLE", "ligne_5": "VILLENEUVE LES SALINES", "nom_de_la_commune": "LA ROCHELLE", "coordonnees_gps": [46.1620724166, -1.17485679534]}, "geometry": {"type": "Point", "coordinates": [-1.17485679534, 46.1620724166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7eace2f14504458c8934eae49ae8ece52adfe44", "fields": {"nom_de_la_commune": "ROMAZIERES", "libell_d_acheminement": "ROMAZIERES", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17301"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "665d024acd89a04c1329fe8e7968b00d4ae6c3f4", "fields": {"nom_de_la_commune": "ROMEGOUX", "libell_d_acheminement": "ROMEGOUX", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17302"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e8a21f96d817f74efd7507f257f735789e146c", "fields": {"nom_de_la_commune": "ROUFFIAC", "libell_d_acheminement": "ROUFFIAC", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17304"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f7bd4fafbf0b315d00c3d942e9fd338bdbdb9b0", "fields": {"nom_de_la_commune": "ROYAN", "libell_d_acheminement": "ROYAN", "code_postal": "17200", "coordonnees_gps": [45.6547105842, -1.01223918175], "code_commune_insee": "17306"}, "geometry": {"type": "Point", "coordinates": [-1.01223918175, 45.6547105842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5cb290dd12a6e6f2e11bbb8e41777c0c4bf54b", "fields": {"nom_de_la_commune": "SABLONCEAUX", "libell_d_acheminement": "SABLONCEAUX", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17307"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dd03c4eb35fd0e92a458d057ffa0a18e2eae4b6", "fields": {"nom_de_la_commune": "ST FELIX", "libell_d_acheminement": "ST FELIX", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17327"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df1f2d4a02d145420c4538ba352ccc7c9bd62145", "fields": {"nom_de_la_commune": "ST GEORGES DE DIDONNE", "libell_d_acheminement": "ST GEORGES DE DIDONNE", "code_postal": "17110", "coordonnees_gps": [45.6041837257, -0.980093700371], "code_commune_insee": "17333"}, "geometry": {"type": "Point", "coordinates": [-0.980093700371, 45.6041837257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc23eb636d10e30776e7dbb780e13d244b43a90a", "fields": {"code_postal": "73260", "code_commune_insee": "73187", "libell_d_acheminement": "LA LECHERE", "ligne_5": "CELLIERS", "nom_de_la_commune": "LA LECHERE", "coordonnees_gps": [45.5172397456, 6.46368709326]}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a09e2b2397ba3f20e25302c5800284808e23833b", "fields": {"nom_de_la_commune": "LE NOYER", "libell_d_acheminement": "LE NOYER", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73192"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca72a0eee27f0516964957015b49570bacf57d8", "fields": {"nom_de_la_commune": "PEISEY NANCROIX", "libell_d_acheminement": "PEISEY NANCROIX", "code_postal": "73210", "coordonnees_gps": [45.5287564298, 6.7268231289], "code_commune_insee": "73197"}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e804b757e6720a8417fc6c786b2c60b7e2ad429a", "fields": {"nom_de_la_commune": "LA PERRIERE", "libell_d_acheminement": "LA PERRIERE", "code_postal": "73120", "coordonnees_gps": [45.3952559904, 6.63957315218], "code_commune_insee": "73198"}, "geometry": {"type": "Point", "coordinates": [6.63957315218, 45.3952559904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d294fc748be550a4599a2fc82907f44c302c106d", "fields": {"nom_de_la_commune": "ROCHEFORT", "libell_d_acheminement": "ROCHEFORT", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73214"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df197a2e469ed8a661b65aac89afd9f5505975c3", "fields": {"nom_de_la_commune": "RUFFIEUX", "libell_d_acheminement": "RUFFIEUX", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73218"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42347f13aef43314e665be7d2f717ec3f384e49a", "fields": {"nom_de_la_commune": "ST BALDOPH", "libell_d_acheminement": "ST BALDOPH", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73225"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04e8311b135738543b14e3354f4113ab016ba853", "fields": {"nom_de_la_commune": "ST BERON", "libell_d_acheminement": "ST BERON", "code_postal": "73520", "coordonnees_gps": [45.516425766, 5.73063906773], "code_commune_insee": "73226"}, "geometry": {"type": "Point", "coordinates": [5.73063906773, 45.516425766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3af190a4b666e5cc154d65a6a2f43f32c0379c1", "fields": {"nom_de_la_commune": "ST CASSIN", "libell_d_acheminement": "ST CASSIN", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73228"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f5597e270eaac0a44b447592794b730dd08331", "fields": {"nom_de_la_commune": "ST FRANC", "libell_d_acheminement": "ST FRANC", "code_postal": "73360", "coordonnees_gps": [45.4669972667, 5.76456264233], "code_commune_insee": "73233"}, "geometry": {"type": "Point", "coordinates": [5.76456264233, 45.4669972667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26e4623776c69637b448a6d360ee0907ebc5ad59", "fields": {"nom_de_la_commune": "ST FRANCOIS DE SALES", "libell_d_acheminement": "ST FRANCOIS DE SALES", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73234"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e797511b8976d60ce31c63191738df5e26733e8b", "fields": {"nom_de_la_commune": "ST GENIX SUR GUIERS", "libell_d_acheminement": "ST GENIX SUR GUIERS", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73236"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e199d1c793ea24dcff9444b73ab3870cb6e85c8e", "fields": {"nom_de_la_commune": "ST JEAN DE MAURIENNE", "libell_d_acheminement": "ST JEAN DE MAURIENNE", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73248"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc30b3b1487a8f592c8327cb9110e0fc9582b53f", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "73600", "coordonnees_gps": [45.3739609607, 6.53145730027], "code_commune_insee": "73253"}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa67a3bc6245069aac7bc606d0f5493dd3dc1007", "fields": {"nom_de_la_commune": "STE MARIE D ALVEY", "libell_d_acheminement": "STE MARIE D ALVEY", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73254"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79879374cdb3f164c7085f805de0178e1d35686a", "fields": {"code_postal": "73440", "code_commune_insee": "73257", "libell_d_acheminement": "LES BELLEVILLE", "ligne_5": "LES MENUIRES", "nom_de_la_commune": "LES BELLEVILLE", "coordonnees_gps": [45.3533056918, 6.49727541624]}, "geometry": {"type": "Point", "coordinates": [6.49727541624, 45.3533056918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f126ff25881ba58c28d949f312c3a8b46612b6b", "fields": {"code_postal": "73440", "code_commune_insee": "73257", "libell_d_acheminement": "LES BELLEVILLE", "ligne_5": "VAL THORENS", "nom_de_la_commune": "LES BELLEVILLE", "coordonnees_gps": [45.3533056918, 6.49727541624]}, "geometry": {"type": "Point", "coordinates": [6.49727541624, 45.3533056918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da84ce24fd0acd1315b2bd0d217178f9e399d829", "fields": {"nom_de_la_commune": "ST MARTIN SUR LA CHAMBRE", "libell_d_acheminement": "ST MARTIN SUR LA CHAMBRE", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73259"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61bb9e6b28b3e9acc996d8fc4e864827a7a51260", "fields": {"code_postal": "73140", "code_commune_insee": "73261", "libell_d_acheminement": "ST MICHEL DE MAURIENNE", "ligne_5": "THYL", "nom_de_la_commune": "ST MICHEL DE MAURIENNE", "coordonnees_gps": [45.2191220888, 6.52414175582]}, "geometry": {"type": "Point", "coordinates": [6.52414175582, 45.2191220888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff3bdaba673919b6c1a73ba87572c4ab2484891", "fields": {"nom_de_la_commune": "ST OURS", "libell_d_acheminement": "ST OURS", "code_postal": "73410", "coordonnees_gps": [45.773124755, 5.93479737577], "code_commune_insee": "73265"}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f79e1b259441594ce4178ed408680ba84adb52a", "fields": {"nom_de_la_commune": "ST PIERRE D ALVEY", "libell_d_acheminement": "ST PIERRE D ALVEY", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73271"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a97573a84d104883520541aa6eb97b47b87e21f1", "fields": {"nom_de_la_commune": "ST PIERRE DE CURTILLE", "libell_d_acheminement": "ST PIERRE DE CURTILLE", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73273"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2731468367d50f927a708dc65982e3ae83c97aae", "fields": {"nom_de_la_commune": "ST PIERRE D ENTREMONT", "libell_d_acheminement": "ST PIERRE D ENTREMONT", "code_postal": "73670", "coordonnees_gps": [45.4459970452, 5.88302688379], "code_commune_insee": "73274"}, "geometry": {"type": "Point", "coordinates": [5.88302688379, 45.4459970452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc2fd8ba0627eb528a3e40d9e1e8876db77e369", "fields": {"nom_de_la_commune": "TERMIGNON", "libell_d_acheminement": "TERMIGNON", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73290"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13811e860cf4bafa10964464f2bd8e5ef46cee87", "fields": {"nom_de_la_commune": "THENESOL", "libell_d_acheminement": "THENESOL", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73292"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa7b39d16aef258860f5195ea21ef8a54e9292f", "fields": {"nom_de_la_commune": "TIGNES", "libell_d_acheminement": "TIGNES", "code_postal": "73320", "coordonnees_gps": [45.4813899436, 6.93622536177], "code_commune_insee": "73296"}, "geometry": {"type": "Point", "coordinates": [6.93622536177, 45.4813899436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bd823ff9c3ee6eb334a13509917a5140fbdd460", "fields": {"nom_de_la_commune": "TOURNON", "libell_d_acheminement": "TOURNON", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73297"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00cab4e7617c58b878b827a7bd8eeff7fe1b3f74", "fields": {"nom_de_la_commune": "VERTHEMEX", "libell_d_acheminement": "VERTHEMEX", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73313"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af074bf1aa8f23d6bb314ae5b46023554ee6d1e4", "fields": {"nom_de_la_commune": "VILLAREMBERT", "libell_d_acheminement": "VILLAREMBERT", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73318"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f7c72fd5ad160bd9c3fb3db1d439ec34ac2f2e9", "fields": {"nom_de_la_commune": "VIVIERS DU LAC", "libell_d_acheminement": "VIVIERS DU LAC", "code_postal": "73420", "coordonnees_gps": [45.6466626086, 5.92320814146], "code_commune_insee": "73328"}, "geometry": {"type": "Point", "coordinates": [5.92320814146, 45.6466626086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824c6a18d08d2b6e6a511a02eb863cb9f29223aa", "fields": {"nom_de_la_commune": "ALLEVES", "libell_d_acheminement": "ALLEVES", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74004"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "281fe738e251f90f9ae8298313c7e6f0a39ad909", "fields": {"code_postal": "74300", "code_commune_insee": "74014", "libell_d_acheminement": "ARACHES LA FRASSE", "ligne_5": "LA FRASSE", "nom_de_la_commune": "ARACHES LA FRASSE", "coordonnees_gps": [46.0342131745, 6.61842009953]}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eb9661d335daa914b32a72e29438d03bc2de38f", "fields": {"nom_de_la_commune": "LE BOUCHET", "libell_d_acheminement": "LE BOUCHET MONT CHARVIN", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74045"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a973cee0335d93c3ce0b6ffd55b14b9a5741bcca", "fields": {"nom_de_la_commune": "CHAMPANGES", "libell_d_acheminement": "CHAMPANGES", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74057"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0029644b3f61d29fd0dd6eb582491824f7690b", "fields": {"nom_de_la_commune": "LA CHAPELLE D ABONDANCE", "libell_d_acheminement": "LA CHAPELLE D ABONDANCE", "code_postal": "74360", "coordonnees_gps": [46.2907146867, 6.73957320561], "code_commune_insee": "74058"}, "geometry": {"type": "Point", "coordinates": [6.73957320561, 46.2907146867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f492f1e1c80533ff594655202707772e1be5bbe", "fields": {"nom_de_la_commune": "LA CHAPELLE ST MAURICE", "libell_d_acheminement": "LA CHAPELLE ST MAURICE", "code_postal": "74410", "coordonnees_gps": [45.8038828434, 6.16031679135], "code_commune_insee": "74060"}, "geometry": {"type": "Point", "coordinates": [6.16031679135, 45.8038828434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0cb82ed4e5b6114a992d9f7a8b52f70fa63d5d", "fields": {"nom_de_la_commune": "CHAPEIRY", "libell_d_acheminement": "CHAPEIRY", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74061"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a872c272a016c2bd7f338a1375de54ef1f651413", "fields": {"nom_de_la_commune": "CHAVANNAZ", "libell_d_acheminement": "CHAVANNAZ", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74066"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ae9774048b9fb2628290bf0a928723e92e9897", "fields": {"nom_de_la_commune": "CHENEX", "libell_d_acheminement": "CHENEX", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74069"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "447464b05e1cc8b5a11c9f78a09d82b0fe186149", "fields": {"nom_de_la_commune": "CHEVENOZ", "libell_d_acheminement": "CHEVENOZ", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74073"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b622383f29977c0364d2ff9d41282ff2132d182", "fields": {"nom_de_la_commune": "CLERMONT", "libell_d_acheminement": "CLERMONT", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74078"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42454b122c8000fcff0a4ce4484c829a2687b894", "fields": {"nom_de_la_commune": "LES CLEFS", "libell_d_acheminement": "LES CLEFS", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74079"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62c0530d88eaff39436544651641e3306cbc1aab", "fields": {"nom_de_la_commune": "LA CLUSAZ", "libell_d_acheminement": "LA CLUSAZ", "code_postal": "74220", "coordonnees_gps": [45.9004131087, 6.4604843221], "code_commune_insee": "74080"}, "geometry": {"type": "Point", "coordinates": [6.4604843221, 45.9004131087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce47fe68b10c2e5c28d3e5d95574e8e277038dc4", "fields": {"nom_de_la_commune": "CLUSES", "libell_d_acheminement": "CLUSES", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74081"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41cbe3cc2e6e61f7a18df92c69f704293585f136", "fields": {"nom_de_la_commune": "COLLONGES SOUS SALEVE", "libell_d_acheminement": "COLLONGES SOUS SALEVE", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74082"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8961518b3c7096cbdf258dec08e650463fdf82f2", "fields": {"nom_de_la_commune": "CONTAMINE SUR ARVE", "libell_d_acheminement": "CONTAMINE SUR ARVE", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74087"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bfae50c659b79e18933c682382b784eccd20b3b", "fields": {"nom_de_la_commune": "LA COTE D ARBROZ", "libell_d_acheminement": "LA COTE D ARBROZ", "code_postal": "74110", "coordonnees_gps": [46.1857834768, 6.72082435354], "code_commune_insee": "74091"}, "geometry": {"type": "Point", "coordinates": [6.72082435354, 46.1857834768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7754fb79b8a3ddbb6c87cc79a4f293e5dde06eee", "fields": {"nom_de_la_commune": "CRAN GEVRIER", "libell_d_acheminement": "CRAN GEVRIER", "code_postal": "74960", "coordonnees_gps": [45.9084676642, 6.09877501469], "code_commune_insee": "74093"}, "geometry": {"type": "Point", "coordinates": [6.09877501469, 45.9084676642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6f1a1cb8b7942269cf03dd6b50be3d2eb2e886", "fields": {"nom_de_la_commune": "DEMI QUARTIER", "libell_d_acheminement": "DEMI QUARTIER", "code_postal": "74120", "coordonnees_gps": [45.8402620408, 6.61210896924], "code_commune_insee": "74099"}, "geometry": {"type": "Point", "coordinates": [6.61210896924, 45.8402620408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f0f33905b18b001cf1dab08fe93eaab9c8d92fa", "fields": {"nom_de_la_commune": "ESSERT ROMAND", "libell_d_acheminement": "ESSERT ROMAND", "code_postal": "74110", "coordonnees_gps": [46.1857834768, 6.72082435354], "code_commune_insee": "74114"}, "geometry": {"type": "Point", "coordinates": [6.72082435354, 46.1857834768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9ef066d9010a471ec1ab3da99c5427398eb29f3", "fields": {"nom_de_la_commune": "FAUCIGNY", "libell_d_acheminement": "FAUCIGNY", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74122"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d708e9d2f09e8b77aad70b5dd7bd88abc8da2f0", "fields": {"nom_de_la_commune": "FAVERGES SEYTHENEX", "libell_d_acheminement": "FAVERGES SEYTHENEX", "code_postal": "74210", "coordonnees_gps": [45.7728684273, 6.25852210813], "code_commune_insee": "74123"}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aa083931f86aa019aac7ca28612c51e6ba87b44", "fields": {"nom_de_la_commune": "FILLINGES", "libell_d_acheminement": "FILLINGES", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74128"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dbf9c4489533f7ff760e5b205f3fe872180ec78", "fields": {"nom_de_la_commune": "FRANGY", "libell_d_acheminement": "FRANGY", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74131"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c9c2158892e9b328abf0a7935424d3bffe5492", "fields": {"nom_de_la_commune": "HERY SUR ALBY", "libell_d_acheminement": "HERY SUR ALBY", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74142"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac97b4bab84d58a0f78a8a4b0146a36dd5035cc1", "fields": {"nom_de_la_commune": "JONZIER EPAGNY", "libell_d_acheminement": "JONZIER EPAGNY", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74144"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9da56edf914acfa8b3e63f07254375dddd4948", "fields": {"nom_de_la_commune": "LARRINGES", "libell_d_acheminement": "LARRINGES", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74146"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df05ce007ffd2dd4ca930831d62e34ade02ad5ff", "fields": {"nom_de_la_commune": "LYAUD", "libell_d_acheminement": "LYAUD", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74157"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d427b789f15be87d2b9b7c7f536c0314c19884f5", "fields": {"code_postal": "74210", "code_commune_insee": "74167", "libell_d_acheminement": "VAL DE CHAISE", "ligne_5": "CONS STE COLOMBE", "nom_de_la_commune": "VAL DE CHAISE", "coordonnees_gps": [45.7728684273, 6.25852210813]}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2c86a739dd4a3058ac6e2217ae691bbffc81a2e", "fields": {"nom_de_la_commune": "MARLIOZ", "libell_d_acheminement": "MARLIOZ", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74168"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757fdc915157ddb7297d472034a7b370bfb514c4", "fields": {"nom_de_la_commune": "MEILLERIE", "libell_d_acheminement": "MEILLERIE", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74175"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "364caf51c1dbeb4d61d9f4f7897391dc7eb8895c", "fields": {"nom_de_la_commune": "MENTHONNEX EN BORNES", "libell_d_acheminement": "MENTHONNEX EN BORNES", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74177"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1bf9627b6c7766125b66c8fc8282731bf15a28d", "fields": {"nom_de_la_commune": "MIEUSSY", "libell_d_acheminement": "MIEUSSY", "code_postal": "74440", "coordonnees_gps": [46.1230411459, 6.600455476], "code_commune_insee": "74183"}, "geometry": {"type": "Point", "coordinates": [6.600455476, 46.1230411459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16009d38127d24b881028b7c303e621e41fd17e6", "fields": {"nom_de_la_commune": "MONTAGNY LES LANCHES", "libell_d_acheminement": "MONTAGNY LES LANCHES", "code_postal": "74600", "coordonnees_gps": [45.8556562518, 6.080880357], "code_commune_insee": "74186"}, "geometry": {"type": "Point", "coordinates": [6.080880357, 45.8556562518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45ed1a3afed5b4099dffddfa11c839709230fe2a", "fields": {"nom_de_la_commune": "MONTRIOND", "libell_d_acheminement": "MONTRIOND", "code_postal": "74110", "coordonnees_gps": [46.1857834768, 6.72082435354], "code_commune_insee": "74188"}, "geometry": {"type": "Point", "coordinates": [6.72082435354, 46.1857834768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c659a9c513d9e0cfcfccb06dc209a4348a404b", "fields": {"code_postal": "74110", "code_commune_insee": "74191", "libell_d_acheminement": "MORZINE", "ligne_5": "AVORIAZ", "nom_de_la_commune": "MORZINE", "coordonnees_gps": [46.1857834768, 6.72082435354]}, "geometry": {"type": "Point", "coordinates": [6.72082435354, 46.1857834768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f06d60e617f746285e0a0cc63e6b508c36efa5a", "fields": {"nom_de_la_commune": "NEUVECELLE", "libell_d_acheminement": "NEUVECELLE", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74200"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5607787e3edbf422a07306a64cb933b91b4b7652", "fields": {"nom_de_la_commune": "PRAZ SUR ARLY", "libell_d_acheminement": "PRAZ SUR ARLY", "code_postal": "74120", "coordonnees_gps": [45.8402620408, 6.61210896924], "code_commune_insee": "74215"}, "geometry": {"type": "Point", "coordinates": [6.61210896924, 45.8402620408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2360a69952c37597f17583284b7038fa1cff9b", "fields": {"nom_de_la_commune": "PRESILLY", "libell_d_acheminement": "PRESILLY", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74216"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "119dfb9d1b9498c62b4fdfaf76cdab2939297c18", "fields": {"code_postal": "74370", "code_commune_insee": "74217", "libell_d_acheminement": "PRINGY", "ligne_5": "FERRIERES", "nom_de_la_commune": "PRINGY", "coordonnees_gps": [45.9600301741, 6.15863714117]}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a0357750df611c50a94f102eabe63175700550f", "fields": {"code_postal": "74500", "code_commune_insee": "74218", "libell_d_acheminement": "PUBLIER", "ligne_5": "AMPHION LES BAINS", "nom_de_la_commune": "PUBLIER", "coordonnees_gps": [46.3698657211, 6.65530659545]}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f96cb4341a957b35902f25fc9db6378ac314f51c", "fields": {"nom_de_la_commune": "RUMILLY", "libell_d_acheminement": "RUMILLY", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74225"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f92ea731c67e375fcb2a4a4762af70f11c79baa1", "fields": {"nom_de_la_commune": "ST GERMAIN SUR RHONE", "libell_d_acheminement": "ST GERMAIN SUR RHONE", "code_postal": "74910", "coordonnees_gps": [46.0064819819, 5.83834131113], "code_commune_insee": "74235"}, "geometry": {"type": "Point", "coordinates": [5.83834131113, 46.0064819819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824d117039eb533382a1bfbcde25cfc86a85bd8c", "fields": {"nom_de_la_commune": "ST SYLVESTRE", "libell_d_acheminement": "ST SYLVESTRE", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74254"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad3e8a7ccee60ff98fb8ef3bd39bf2843f66b15", "fields": {"nom_de_la_commune": "SALES", "libell_d_acheminement": "SALES", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74255"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa074638d80b7611b04ff7f912244d7aaf71a587", "fields": {"nom_de_la_commune": "SALLANCHES", "libell_d_acheminement": "SALLANCHES", "code_postal": "74700", "coordonnees_gps": [45.935449139, 6.60325360691], "code_commune_insee": "74256"}, "geometry": {"type": "Point", "coordinates": [6.60325360691, 45.935449139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27e1c74a83b373b38c962ff31dc3454f758a534", "fields": {"nom_de_la_commune": "SALLENOVES", "libell_d_acheminement": "SALLENOVES", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74257"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31023e26241c2fbce271504f67afcd12ef835f00", "fields": {"nom_de_la_commune": "SAXEL", "libell_d_acheminement": "SAXEL", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74261"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7df0fd1a1f4af335979b229eba9681ab0a3985d6", "fields": {"code_postal": "74600", "code_commune_insee": "74268", "libell_d_acheminement": "SEYNOD", "ligne_5": "VIEUGY", "nom_de_la_commune": "SEYNOD", "coordonnees_gps": [45.8556562518, 6.080880357]}, "geometry": {"type": "Point", "coordinates": [6.080880357, 45.8556562518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "909a3a9bea039dc45323c77eb7be6246eda75b01", "fields": {"nom_de_la_commune": "SEYTROUX", "libell_d_acheminement": "SEYTROUX", "code_postal": "74430", "coordonnees_gps": [46.2473273724, 6.63608245857], "code_commune_insee": "74271"}, "geometry": {"type": "Point", "coordinates": [6.63608245857, 46.2473273724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30adec35684c9ae78067d6d2a968237e0d6412d8", "fields": {"code_postal": "74150", "code_commune_insee": "74274", "libell_d_acheminement": "VAL DE FIER", "ligne_5": "ST ANDRE VAL DE FIER", "nom_de_la_commune": "VAL DE FIER", "coordonnees_gps": [45.8869887295, 5.94373659019]}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02de0c2912929ff45b63ed1c387ed3315d760afd", "fields": {"nom_de_la_commune": "THORENS GLIERES", "libell_d_acheminement": "THORENS GLIERES", "code_postal": "74570", "coordonnees_gps": [46.0031081004, 6.25063227534], "code_commune_insee": "74282"}, "geometry": {"type": "Point", "coordinates": [6.25063227534, 46.0031081004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "300becad418f7c9e8b9f6dbf421297b883e7971c", "fields": {"nom_de_la_commune": "VALLEIRY", "libell_d_acheminement": "VALLEIRY", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74288"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b94625535dd465e4b9639f392b2232618a5e730c", "fields": {"nom_de_la_commune": "VALLIERES", "libell_d_acheminement": "VALLIERES", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74289"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8a74d2b8bdb76a82d77d7b722913c30d29285df", "fields": {"nom_de_la_commune": "LA VERNAZ", "libell_d_acheminement": "LA VERNAZ", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74295"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57df77268f51104a7c9d0213b7a4f023a3dc07b9", "fields": {"nom_de_la_commune": "VERSONNEX", "libell_d_acheminement": "VERSONNEX", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74297"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d2fd21f5f950ba5ec234ed4b6dfa86b1ea47303", "fields": {"nom_de_la_commune": "VINZIER", "libell_d_acheminement": "VINZIER", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74308"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5d4e1e8c91525de45a6a69b456bdd01db4a4fa9", "fields": {"nom_de_la_commune": "VOVRAY EN BORNES", "libell_d_acheminement": "VOVRAY EN BORNES", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74313"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f24690bd1de532fa8821de530897423ea361ed", "fields": {"nom_de_la_commune": "PARIS 11", "libell_d_acheminement": "PARIS", "code_postal": "75011", "coordonnees_gps": [48.8593266337, 2.37986086805], "code_commune_insee": "75111"}, "geometry": {"type": "Point", "coordinates": [2.37986086805, 48.8593266337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aa8634ad30f3409cfb2a33d066768b4b6dabf08", "fields": {"nom_de_la_commune": "PARIS 12", "libell_d_acheminement": "PARIS", "code_postal": "75012", "coordonnees_gps": [48.8347421662, 2.42053665524], "code_commune_insee": "75112"}, "geometry": {"type": "Point", "coordinates": [2.42053665524, 48.8347421662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73b238da9209f08d32376627e427adccdcc0c27", "fields": {"nom_de_la_commune": "PARIS 15", "libell_d_acheminement": "PARIS", "code_postal": "75015", "coordonnees_gps": [48.8401714342, 2.29321693746], "code_commune_insee": "75115"}, "geometry": {"type": "Point", "coordinates": [2.29321693746, 48.8401714342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb939158c39a76fc4dab26de9bf67bee4788513a", "fields": {"nom_de_la_commune": "AMFREVILLE LA MI VOIE", "libell_d_acheminement": "AMFREVILLE LA MI VOIE", "code_postal": "76920", "coordonnees_gps": [49.404350421, 1.12446742024], "code_commune_insee": "76005"}, "geometry": {"type": "Point", "coordinates": [1.12446742024, 49.404350421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96033674ec9c7bbd5ff14720bec98fd10de19176", "fields": {"nom_de_la_commune": "AMFREVILLE LES CHAMPS", "libell_d_acheminement": "AMFREVILLE LES CHAMPS", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76006"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9076090dc10229ea2c6b40a1c9321ab46b6b17", "fields": {"nom_de_la_commune": "ANCOURT", "libell_d_acheminement": "ANCOURT", "code_postal": "76370", "coordonnees_gps": [49.9195191713, 1.14251674665], "code_commune_insee": "76008"}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21b858bef4678eaf35394be57605458976ae52c0", "fields": {"nom_de_la_commune": "ANGERVILLE BAILLEUL", "libell_d_acheminement": "ANGERVILLE BAILLEUL", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76012"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "904d9d46f25a970cd0521e6fecd2070bad6e0bfa", "fields": {"nom_de_la_commune": "ANGERVILLE LA MARTEL", "libell_d_acheminement": "ANGERVILLE LA MARTEL", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76013"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a188caa919808524de181372099466526d547c59", "fields": {"nom_de_la_commune": "ANGERVILLE L ORCHER", "libell_d_acheminement": "ANGERVILLE L ORCHER", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76014"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e672f527ef1d359944c2d45012f3527627eb772d", "fields": {"nom_de_la_commune": "ANNOUVILLE VILMESNIL", "libell_d_acheminement": "ANNOUVILLE VILMESNIL", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76021"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f685aa918c30046864930e65daa38cc8247dc1", "fields": {"nom_de_la_commune": "ARQUES LA BATAILLE", "libell_d_acheminement": "ARQUES LA BATAILLE", "code_postal": "76880", "coordonnees_gps": [49.8769596625, 1.14064902475], "code_commune_insee": "76026"}, "geometry": {"type": "Point", "coordinates": [1.14064902475, 49.8769596625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4074ba7f2863381fdc059d87fb8957d6e9054e0", "fields": {"nom_de_la_commune": "AUBEGUIMONT", "libell_d_acheminement": "AUBEGUIMONT", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76028"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bed1c7283b3a295020d007ff31d3edc127ac11c", "fields": {"nom_de_la_commune": "QUINS", "libell_d_acheminement": "QUINS", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12194"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "732b758be18fb6b43b2a95b63cd5779a06de80e7", "fields": {"nom_de_la_commune": "RIEUPEYROUX", "libell_d_acheminement": "RIEUPEYROUX", "code_postal": "12240", "coordonnees_gps": [44.3140270715, 2.24773559855], "code_commune_insee": "12198"}, "geometry": {"type": "Point", "coordinates": [2.24773559855, 44.3140270715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73e138cd98ba883d69f57e3e69c553a01adfc39c", "fields": {"nom_de_la_commune": "RIVIERE SUR TARN", "libell_d_acheminement": "RIVIERE SUR TARN", "code_postal": "12640", "coordonnees_gps": [44.1929221049, 3.13986623915], "code_commune_insee": "12200"}, "geometry": {"type": "Point", "coordinates": [3.13986623915, 44.1929221049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb2c4e1ed997a743c69484fdef7642034c6005d", "fields": {"code_postal": "12640", "code_commune_insee": "12200", "libell_d_acheminement": "RIVIERE SUR TARN", "ligne_5": "BOYNE", "nom_de_la_commune": "RIVIERE SUR TARN", "coordonnees_gps": [44.1929221049, 3.13986623915]}, "geometry": {"type": "Point", "coordinates": [3.13986623915, 44.1929221049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12633d3c4283c551c21d7a800dcec18c1b5636f9", "fields": {"nom_de_la_commune": "RODELLE", "libell_d_acheminement": "RODELLE", "code_postal": "12340", "coordonnees_gps": [44.4656002773, 2.70710459278], "code_commune_insee": "12201"}, "geometry": {"type": "Point", "coordinates": [2.70710459278, 44.4656002773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04368b2f25cddf8d623df50e6842f8c93424055", "fields": {"nom_de_la_commune": "ST CHELY D AUBRAC", "libell_d_acheminement": "ST CHELY D AUBRAC", "code_postal": "12470", "coordonnees_gps": [44.5816447424, 2.9350498797], "code_commune_insee": "12214"}, "geometry": {"type": "Point", "coordinates": [2.9350498797, 44.5816447424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "716b1a8d2379ecc8ffaa76bfb3e791d67a123a2d", "fields": {"code_postal": "12420", "code_commune_insee": "12223", "libell_d_acheminement": "ARGENCES EN AUBRAC", "ligne_5": "GRAISSAC", "nom_de_la_commune": "ARGENCES EN AUBRAC", "coordonnees_gps": [44.8196484767, 2.78404543455]}, "geometry": {"type": "Point", "coordinates": [2.78404543455, 44.8196484767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b243387092a832d7878e7692aba3f882dc52ca", "fields": {"nom_de_la_commune": "ST GENIEZ D OLT ET D AUBRAC", "libell_d_acheminement": "ST GENIEZ D OLT ET D AUBRAC", "code_postal": "12130", "coordonnees_gps": [44.4625155533, 2.98303027843], "code_commune_insee": "12224"}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57adbe5b4933262d65387972fa55d8cb7b0476e0", "fields": {"code_postal": "12130", "code_commune_insee": "12224", "libell_d_acheminement": "ST GENIEZ D OLT ET D AUBRAC", "ligne_5": "AURELLE VERLAC", "nom_de_la_commune": "ST GENIEZ D OLT ET D AUBRAC", "coordonnees_gps": [44.4625155533, 2.98303027843]}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c04f10f39655029978ea5a99b3fa9bade0593827", "fields": {"nom_de_la_commune": "ST IZAIRE", "libell_d_acheminement": "ST IZAIRE", "code_postal": "12480", "coordonnees_gps": [43.9974313835, 2.69341373502], "code_commune_insee": "12228"}, "geometry": {"type": "Point", "coordinates": [2.69341373502, 43.9974313835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f0f28c7750bf3326e0b1a6268d0670771f21981", "fields": {"nom_de_la_commune": "ST JEAN D ALCAPIES", "libell_d_acheminement": "ST JEAN D ALCAPIES", "code_postal": "12250", "coordonnees_gps": [43.948416094, 3.02271239908], "code_commune_insee": "12229"}, "geometry": {"type": "Point", "coordinates": [3.02271239908, 43.948416094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ee9a465716502d3ed02dc57787a983c0802de3b", "fields": {"nom_de_la_commune": "ST JEAN ET ST PAUL", "libell_d_acheminement": "ST JEAN ET ST PAUL", "code_postal": "12250", "coordonnees_gps": [43.948416094, 3.02271239908], "code_commune_insee": "12232"}, "geometry": {"type": "Point", "coordinates": [3.02271239908, 43.948416094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2bda726397345a12f553e3a6a85b0cdd9b6292", "fields": {"nom_de_la_commune": "ST LAURENT D OLT", "libell_d_acheminement": "ST LAURENT D OLT", "code_postal": "12560", "coordonnees_gps": [44.416656717, 3.07038306451], "code_commune_insee": "12237"}, "geometry": {"type": "Point", "coordinates": [3.07038306451, 44.416656717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "412e6f29b7b2ba046c9d23b5f4c8726a6ee53e94", "fields": {"nom_de_la_commune": "ST LEONS", "libell_d_acheminement": "ST LEONS", "code_postal": "12780", "coordonnees_gps": [44.2546805214, 2.94192655254], "code_commune_insee": "12238"}, "geometry": {"type": "Point", "coordinates": [2.94192655254, 44.2546805214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38273e67b7de0fbc2cd2a0998137398523afa51f", "fields": {"nom_de_la_commune": "ST MARTIN DE LENNE", "libell_d_acheminement": "ST MARTIN DE LENNE", "code_postal": "12130", "coordonnees_gps": [44.4625155533, 2.98303027843], "code_commune_insee": "12239"}, "geometry": {"type": "Point", "coordinates": [2.98303027843, 44.4625155533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dbc310984fc4ace3108f26512eabec7cebe9c6f", "fields": {"nom_de_la_commune": "ST ROME DE CERNON", "libell_d_acheminement": "ST ROME DE CERNON", "code_postal": "12490", "coordonnees_gps": [44.0484721644, 2.91997345292], "code_commune_insee": "12243"}, "geometry": {"type": "Point", "coordinates": [2.91997345292, 44.0484721644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36bf9faa18808ea7729bcc78deb5038bb4ac6910", "fields": {"nom_de_la_commune": "ST SANTIN", "libell_d_acheminement": "ST SANTIN", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12246"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d840bc59073b797408e039316bc835b184d18ed5", "fields": {"nom_de_la_commune": "ST SYMPHORIEN DE THENIERES", "libell_d_acheminement": "ST SYMPHORIEN DE THENIERES", "code_postal": "12460", "coordonnees_gps": [44.7074104935, 2.68829666871], "code_commune_insee": "12250"}, "geometry": {"type": "Point", "coordinates": [2.68829666871, 44.7074104935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d97d9a944fc41f5b1f283b30bbba5bf2c5d56e0", "fields": {"code_postal": "12400", "code_commune_insee": "12251", "libell_d_acheminement": "ST VICTOR ET MELVIEU", "ligne_5": "MELVIEU", "nom_de_la_commune": "ST VICTOR ET MELVIEU", "coordonnees_gps": [43.9345919276, 2.84832995912]}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "376ff6e1a6906cfe6efb4233f6c8c0b4615862e1", "fields": {"nom_de_la_commune": "CAUSSE ET DIEGE", "libell_d_acheminement": "CAUSSE ET DIEGE", "code_postal": "12700", "coordonnees_gps": [44.5379394985, 2.08098402024], "code_commune_insee": "12257"}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dcc32bd8665a0ca743d702b8b4de02332405b67", "fields": {"code_postal": "12700", "code_commune_insee": "12257", "libell_d_acheminement": "CAUSSE ET DIEGE", "ligne_5": "GELLE", "nom_de_la_commune": "CAUSSE ET DIEGE", "coordonnees_gps": [44.5379394985, 2.08098402024]}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb106adaad924ad925034422b1acc9f3e603feda", "fields": {"nom_de_la_commune": "SEVERAC D AVEYRON", "libell_d_acheminement": "SEVERAC D AVEYRON", "code_postal": "12150", "coordonnees_gps": [44.2997462266, 3.08943327061], "code_commune_insee": "12270"}, "geometry": {"type": "Point", "coordinates": [3.08943327061, 44.2997462266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba76a10718db89f2604830989cbfdba33161cd15", "fields": {"code_postal": "12150", "code_commune_insee": "12270", "libell_d_acheminement": "SEVERAC D AVEYRON", "ligne_5": "BUZEINS", "nom_de_la_commune": "SEVERAC D AVEYRON", "coordonnees_gps": [44.2997462266, 3.08943327061]}, "geometry": {"type": "Point", "coordinates": [3.08943327061, 44.2997462266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd5a9472de3eece476fdbc2a14d6968bb23b789", "fields": {"code_postal": "12150", "code_commune_insee": "12270", "libell_d_acheminement": "SEVERAC D AVEYRON", "ligne_5": "LAPANOUSE", "nom_de_la_commune": "SEVERAC D AVEYRON", "coordonnees_gps": [44.2997462266, 3.08943327061]}, "geometry": {"type": "Point", "coordinates": [3.08943327061, 44.2997462266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aadeae9c15bbeadda6b081e26812466303e6d4d", "fields": {"nom_de_la_commune": "TOULONJAC", "libell_d_acheminement": "TOULONJAC", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12281"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bc79ceada7fb9bc1ce013a52ede831ac4888606", "fields": {"nom_de_la_commune": "VABRES L ABBAYE", "libell_d_acheminement": "VABRES L ABBAYE", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12286"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e7dffe3cba0f5ffc44eb6c7d92aafe1700c22b", "fields": {"nom_de_la_commune": "VAILHOURLES", "libell_d_acheminement": "VAILHOURLES", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12287"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1432c37a623402b2e3a341180658baca42eb37f0", "fields": {"nom_de_la_commune": "VAUREILLES", "libell_d_acheminement": "VAUREILLES", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12290"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d44cd9286cb1499ea4fec2980c38fca78026bcc2", "fields": {"nom_de_la_commune": "VERSOLS ET LAPEYRE", "libell_d_acheminement": "VERSOLS ET LAPEYRE", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12292"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecab1b09309a8f10bb46d16c12c8e8eb07c409b6", "fields": {"nom_de_la_commune": "VIALA DU TARN", "libell_d_acheminement": "VIALA DU TARN", "code_postal": "12490", "coordonnees_gps": [44.0484721644, 2.91997345292], "code_commune_insee": "12296"}, "geometry": {"type": "Point", "coordinates": [2.91997345292, 44.0484721644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981bf57c95e169853e038aa394c7a58b572640e1", "fields": {"code_postal": "13080", "code_commune_insee": "13001", "libell_d_acheminement": "AIX EN PROVENCE", "ligne_5": "LUYNES", "nom_de_la_commune": "AIX EN PROVENCE", "coordonnees_gps": [43.5360221556, 5.3983786513]}, "geometry": {"type": "Point", "coordinates": [5.3983786513, 43.5360221556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73210bd16579604db3621f49477d056a07d8d4a3", "fields": {"nom_de_la_commune": "AIX EN PROVENCE", "libell_d_acheminement": "AIX EN PROVENCE", "code_postal": "13100", "coordonnees_gps": [43.5353485115, 5.4345381961], "code_commune_insee": "13001"}, "geometry": {"type": "Point", "coordinates": [5.4345381961, 43.5353485115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df4325a54b6205a3fb35a86facb6dc6c9d3db38", "fields": {"nom_de_la_commune": "ALLAUCH", "libell_d_acheminement": "ALLAUCH", "code_postal": "13190", "coordonnees_gps": [43.3533311875, 5.51159330997], "code_commune_insee": "13002"}, "geometry": {"type": "Point", "coordinates": [5.51159330997, 43.3533311875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e24ab5034120da46def67f5c3b1f61ee419b5d", "fields": {"code_postal": "13190", "code_commune_insee": "13002", "libell_d_acheminement": "ALLAUCH", "ligne_5": "LE LOGIS NEUF", "nom_de_la_commune": "ALLAUCH", "coordonnees_gps": [43.3533311875, 5.51159330997]}, "geometry": {"type": "Point", "coordinates": [5.51159330997, 43.3533311875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41ae0209273c7aa697cd6086e6964405e9064275", "fields": {"code_postal": "13980", "code_commune_insee": "13003", "libell_d_acheminement": "ALLEINS", "ligne_5": "LE BASTIDON", "nom_de_la_commune": "ALLEINS", "coordonnees_gps": [43.7076204697, 5.15079714455]}, "geometry": {"type": "Point", "coordinates": [5.15079714455, 43.7076204697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032c6133499a061fadf28c4ae7bbe1d833a6d2f4", "fields": {"code_postal": "13104", "code_commune_insee": "13004", "libell_d_acheminement": "ARLES", "ligne_5": "MAS THIBERT", "nom_de_la_commune": "ARLES", "coordonnees_gps": [43.5467808819, 4.66183385891]}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a92f93fa897d97e2a4c3da469ddd7b81c53a4de", "fields": {"code_postal": "13280", "code_commune_insee": "13004", "libell_d_acheminement": "ARLES", "ligne_5": "RAPHELE LES ARLES", "nom_de_la_commune": "ARLES", "coordonnees_gps": [43.5467808819, 4.66183385891]}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b0bf0e68a39f077652b2748a4b2906cc229cf33", "fields": {"nom_de_la_commune": "AUREILLE", "libell_d_acheminement": "AUREILLE", "code_postal": "13930", "coordonnees_gps": [43.6995718217, 4.94515042516], "code_commune_insee": "13006"}, "geometry": {"type": "Point", "coordinates": [4.94515042516, 43.6995718217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5725c48813169245017cea5505b8ae7e7f7dbc0d", "fields": {"nom_de_la_commune": "AURIOL", "libell_d_acheminement": "AURIOL", "code_postal": "13390", "coordonnees_gps": [43.3606572769, 5.65855124178], "code_commune_insee": "13007"}, "geometry": {"type": "Point", "coordinates": [5.65855124178, 43.3606572769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b7fa344fe9ab913b13bdd0cd808aa3dc3b12cf8", "fields": {"nom_de_la_commune": "LES BAUX DE PROVENCE", "libell_d_acheminement": "LES BAUX DE PROVENCE", "code_postal": "13520", "coordonnees_gps": [43.7214018039, 4.81156485939], "code_commune_insee": "13011"}, "geometry": {"type": "Point", "coordinates": [4.81156485939, 43.7214018039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4255bfa27ae8eece2e09d3029aafa68d9f01142a", "fields": {"code_postal": "13720", "code_commune_insee": "13016", "libell_d_acheminement": "LA BOUILLADISSE", "ligne_5": "LES GORGUETTES", "nom_de_la_commune": "LA BOUILLADISSE", "coordonnees_gps": [43.4097271904, 5.60183954858]}, "geometry": {"type": "Point", "coordinates": [5.60183954858, 43.4097271904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769ef2e90f595f6bbd3305950016894699a3ef27", "fields": {"nom_de_la_commune": "CASSIS", "libell_d_acheminement": "CASSIS", "code_postal": "13260", "coordonnees_gps": [43.2234471201, 5.55039406046], "code_commune_insee": "13022"}, "geometry": {"type": "Point", "coordinates": [5.55039406046, 43.2234471201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c744c35f9dce61041ee7f5b66ddd5ca87fc65eac", "fields": {"code_postal": "13220", "code_commune_insee": "13026", "libell_d_acheminement": "CHATEAUNEUF LES MARTIGUES", "ligne_5": "LA MEDE", "nom_de_la_commune": "CHATEAUNEUF LES MARTIGUES", "coordonnees_gps": [43.3863844311, 5.14761190486]}, "geometry": {"type": "Point", "coordinates": [5.14761190486, 43.3863844311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c3c2744978570ac13a76f50cb82a13b6ef2bc2", "fields": {"nom_de_la_commune": "LA DESTROUSSE", "libell_d_acheminement": "LA DESTROUSSE", "code_postal": "13112", "coordonnees_gps": [43.3765379105, 5.5982047561], "code_commune_insee": "13031"}, "geometry": {"type": "Point", "coordinates": [5.5982047561, 43.3765379105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d19c218238851b3ec2f36dc34e3372c94fc450f", "fields": {"nom_de_la_commune": "GARDANNE", "libell_d_acheminement": "GARDANNE", "code_postal": "13120", "coordonnees_gps": [43.4527470657, 5.47999296124], "code_commune_insee": "13041"}, "geometry": {"type": "Point", "coordinates": [5.47999296124, 43.4527470657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe4e1b469160951d59222c86de7118f7b6ab6d2", "fields": {"nom_de_la_commune": "LAMBESC", "libell_d_acheminement": "LAMBESC", "code_postal": "13410", "coordonnees_gps": [43.6617671034, 5.25220573455], "code_commune_insee": "13050"}, "geometry": {"type": "Point", "coordinates": [5.25220573455, 43.6617671034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb17e5a6a8433cb0d3a1426efe5ff6dc1fd2b83a", "fields": {"nom_de_la_commune": "MAILLANE", "libell_d_acheminement": "MAILLANE", "code_postal": "13910", "coordonnees_gps": [43.8234960522, 4.78499491371], "code_commune_insee": "13052"}, "geometry": {"type": "Point", "coordinates": [4.78499491371, 43.8234960522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f03c68492a564b89f0288f1da94d1f41522649", "fields": {"nom_de_la_commune": "MARTIGUES", "libell_d_acheminement": "MARTIGUES", "code_postal": "13500", "coordonnees_gps": [43.3799117548, 5.04948307536], "code_commune_insee": "13056"}, "geometry": {"type": "Point", "coordinates": [5.04948307536, 43.3799117548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47f72b5562b3089f6480e4da2e7d59e5b7c3aab", "fields": {"code_postal": "13500", "code_commune_insee": "13056", "libell_d_acheminement": "MARTIGUES", "ligne_5": "LA COURONNE CARRO", "nom_de_la_commune": "MARTIGUES", "coordonnees_gps": [43.3799117548, 5.04948307536]}, "geometry": {"type": "Point", "coordinates": [5.04948307536, 43.3799117548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff75b19e626322c629c007550705f3c3a7464c6b", "fields": {"nom_de_la_commune": "MOURIES", "libell_d_acheminement": "MOURIES", "code_postal": "13890", "coordonnees_gps": [43.7008425521, 4.89071425436], "code_commune_insee": "13065"}, "geometry": {"type": "Point", "coordinates": [4.89071425436, 43.7008425521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db433da39169a78cb87bbbdc1720d54be3575a54", "fields": {"code_postal": "13170", "code_commune_insee": "13071", "libell_d_acheminement": "LES PENNES MIRABEAU", "ligne_5": "LA GAVOTTE", "nom_de_la_commune": "LES PENNES MIRABEAU", "coordonnees_gps": [43.4029905656, 5.31524145388]}, "geometry": {"type": "Point", "coordinates": [5.31524145388, 43.4029905656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cb2c1e1190b8c5815ea8b3bd6cedd114be6fd18", "fields": {"nom_de_la_commune": "PEYROLLES EN PROVENCE", "libell_d_acheminement": "PEYROLLES EN PROVENCE", "code_postal": "13860", "coordonnees_gps": [43.6284523412, 5.57670538575], "code_commune_insee": "13074"}, "geometry": {"type": "Point", "coordinates": [5.57670538575, 43.6284523412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60e4aea13cc89c1d21c639b2efd3603e22dbb1d7", "fields": {"nom_de_la_commune": "PLAN D ORGON", "libell_d_acheminement": "PLAN D ORGON", "code_postal": "13750", "coordonnees_gps": [43.8181633441, 5.00269454327], "code_commune_insee": "13076"}, "geometry": {"type": "Point", "coordinates": [5.00269454327, 43.8181633441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc002c5a7aa5ae6e21d2900be137bcff2c6d661", "fields": {"nom_de_la_commune": "PORT DE BOUC", "libell_d_acheminement": "PORT DE BOUC", "code_postal": "13110", "coordonnees_gps": [43.4229700953, 4.9921852229], "code_commune_insee": "13077"}, "geometry": {"type": "Point", "coordinates": [4.9921852229, 43.4229700953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2e0cd95cefcf5e282d4295ed694824de9731686", "fields": {"nom_de_la_commune": "PUYLOUBIER", "libell_d_acheminement": "PUYLOUBIER", "code_postal": "13114", "coordonnees_gps": [43.5188199408, 5.67773327716], "code_commune_insee": "13079"}, "geometry": {"type": "Point", "coordinates": [5.67773327716, 43.5188199408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbcbd74836f62e46ea943a361a0051cadbac86bf", "fields": {"code_postal": "13114", "code_commune_insee": "13079", "libell_d_acheminement": "PUYLOUBIER", "ligne_5": "LE BASTIDON", "nom_de_la_commune": "PUYLOUBIER", "coordonnees_gps": [43.5188199408, 5.67773327716]}, "geometry": {"type": "Point", "coordinates": [5.67773327716, 43.5188199408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0c9d4cda0b661274aca27ab85a3dd29d2ee002", "fields": {"nom_de_la_commune": "ROGNES", "libell_d_acheminement": "ROGNES", "code_postal": "13840", "coordonnees_gps": [43.6649387952, 5.35167076528], "code_commune_insee": "13082"}, "geometry": {"type": "Point", "coordinates": [5.35167076528, 43.6649387952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9074ed5663e7e274a1d5bd81d6becf16c5d193ab", "fields": {"nom_de_la_commune": "ROGNONAS", "libell_d_acheminement": "ROGNONAS", "code_postal": "13870", "coordonnees_gps": [43.8999714169, 4.79896042063], "code_commune_insee": "13083"}, "geometry": {"type": "Point", "coordinates": [4.79896042063, 43.8999714169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4663913e627f668fae3fb5dec5a1133422386b77", "fields": {"code_postal": "13360", "code_commune_insee": "13086", "libell_d_acheminement": "ROQUEVAIRE", "ligne_5": "LA BEGUDE", "nom_de_la_commune": "ROQUEVAIRE", "coordonnees_gps": [43.3435929565, 5.59815037095]}, "geometry": {"type": "Point", "coordinates": [5.59815037095, 43.3435929565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44665e802884afc8272ea45afbf72ef30381253", "fields": {"nom_de_la_commune": "ROUSSET", "libell_d_acheminement": "ROUSSET", "code_postal": "13790", "coordonnees_gps": [43.466397869, 5.61228660864], "code_commune_insee": "13087"}, "geometry": {"type": "Point", "coordinates": [5.61228660864, 43.466397869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7642be5a4d5737fa510bed1fd556262374d3ac2a", "fields": {"nom_de_la_commune": "ST CHAMAS", "libell_d_acheminement": "ST CHAMAS", "code_postal": "13250", "coordonnees_gps": [43.5560610417, 5.07443840982], "code_commune_insee": "13092"}, "geometry": {"type": "Point", "coordinates": [5.07443840982, 43.5560610417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df9e69e828272a1c843c59f276801a4d0b9e2b9", "fields": {"nom_de_la_commune": "ST MITRE LES REMPARTS", "libell_d_acheminement": "ST MITRE LES REMPARTS", "code_postal": "13920", "coordonnees_gps": [43.4552198835, 5.01538799425], "code_commune_insee": "13098"}, "geometry": {"type": "Point", "coordinates": [5.01538799425, 43.4552198835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942d7c13bc4fda223c134a50e44d825b4250a85a", "fields": {"nom_de_la_commune": "TARASCON", "libell_d_acheminement": "TARASCON", "code_postal": "13150", "coordonnees_gps": [43.811635575, 4.68697564727], "code_commune_insee": "13108"}, "geometry": {"type": "Point", "coordinates": [4.68697564727, 43.811635575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2bf2c6e4526e9993f82a85a038cdf5ef026fb6a", "fields": {"nom_de_la_commune": "VERNEGUES", "libell_d_acheminement": "VERNEGUES", "code_postal": "13116", "coordonnees_gps": [43.6844416811, 5.18849655038], "code_commune_insee": "13115"}, "geometry": {"type": "Point", "coordinates": [5.18849655038, 43.6844416811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f79c54996b015cb95b69fb7d71ac0577132b1e9b", "fields": {"nom_de_la_commune": "VERQUIERES", "libell_d_acheminement": "VERQUIERES", "code_postal": "13670", "coordonnees_gps": [43.8324998868, 4.94392199564], "code_commune_insee": "13116"}, "geometry": {"type": "Point", "coordinates": [4.94392199564, 43.8324998868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d666173d7efd9b5b3baa3db2aea4d72b9f6b08e", "fields": {"nom_de_la_commune": "VITROLLES", "libell_d_acheminement": "VITROLLES", "code_postal": "13127", "coordonnees_gps": [43.4499704668, 5.26330452767], "code_commune_insee": "13117"}, "geometry": {"type": "Point", "coordinates": [5.26330452767, 43.4499704668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f690de1b08503649cdf053f062e5c8979e8903", "fields": {"nom_de_la_commune": "CARNOUX EN PROVENCE", "libell_d_acheminement": "CARNOUX EN PROVENCE", "code_postal": "13470", "coordonnees_gps": [43.2588037747, 5.56602474735], "code_commune_insee": "13119"}, "geometry": {"type": "Point", "coordinates": [5.56602474735, 43.2588037747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a695b9e089e15842f74ff9c3b7d267e5abb87eb", "fields": {"nom_de_la_commune": "MARSEILLE 01", "libell_d_acheminement": "MARSEILLE", "code_postal": "13001", "coordonnees_gps": [43.299995472, 5.38294677678], "code_commune_insee": "13201"}, "geometry": {"type": "Point", "coordinates": [5.38294677678, 43.299995472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c6d7223ac9e0c8c8316881bac95e0f8d3e5ad0e", "fields": {"nom_de_la_commune": "MARSEILLE 07", "libell_d_acheminement": "MARSEILLE", "code_postal": "13007", "coordonnees_gps": [43.2803351496, 5.34204553112], "code_commune_insee": "13207"}, "geometry": {"type": "Point", "coordinates": [5.34204553112, 43.2803351496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e52462e47fcd8b822df394202798cefde4f26b6", "fields": {"nom_de_la_commune": "MARSEILLE 08", "libell_d_acheminement": "MARSEILLE", "code_postal": "13008", "coordonnees_gps": [43.2388428582, 5.37571442554], "code_commune_insee": "13208"}, "geometry": {"type": "Point", "coordinates": [5.37571442554, 43.2388428582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1832cdf3b5d82317e8553da5c7a6f5e3e55e80f0", "fields": {"code_postal": "13013", "code_commune_insee": "13213", "libell_d_acheminement": "MARSEILLE", "ligne_5": "LA BATARELLE", "nom_de_la_commune": "MARSEILLE 13", "coordonnees_gps": [43.3495227907, 5.43359654239]}, "geometry": {"type": "Point", "coordinates": [5.43359654239, 43.3495227907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d729ccc547053ee64ba36f1cd71db55bb4e7be3", "fields": {"code_postal": "13013", "code_commune_insee": "13213", "libell_d_acheminement": "MARSEILLE", "ligne_5": "LES OLIVES", "nom_de_la_commune": "MARSEILLE 13", "coordonnees_gps": [43.3495227907, 5.43359654239]}, "geometry": {"type": "Point", "coordinates": [5.43359654239, 43.3495227907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bea2f2b86a741e8f3412eee354854b4bfa1f7406", "fields": {"nom_de_la_commune": "MARSEILLE 16", "libell_d_acheminement": "MARSEILLE", "code_postal": "13016", "coordonnees_gps": [43.3653397513, 5.31284148855], "code_commune_insee": "13216"}, "geometry": {"type": "Point", "coordinates": [5.31284148855, 43.3653397513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4ff68ad16ffc7360e1c2ec8968f15d06239432", "fields": {"code_postal": "14240", "code_commune_insee": "14011", "libell_d_acheminement": "ANCTOVILLE", "ligne_5": "FEUGUEROLLES SUR SEULLES", "nom_de_la_commune": "ANCTOVILLE", "coordonnees_gps": [49.1055577852, -0.781481644045]}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "784b372d5ece01cc46ab2327a47aadda736bce45", "fields": {"nom_de_la_commune": "ANGOVILLE", "libell_d_acheminement": "ANGOVILLE", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14013"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a7a3e0bebe6a22bf45d6070ec29de5904126f7a", "fields": {"nom_de_la_commune": "ANISY", "libell_d_acheminement": "ANISY", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14015"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b157f629a55cc33805f10337fb234093a4b6604c", "fields": {"nom_de_la_commune": "ARROMANCHES LES BAINS", "libell_d_acheminement": "ARROMANCHES LES BAINS", "code_postal": "14117", "coordonnees_gps": [49.3341466257, -0.646070140255], "code_commune_insee": "14021"}, "geometry": {"type": "Point", "coordinates": [-0.646070140255, 49.3341466257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b702d552f174833b47328f06d06b95b19a74678", "fields": {"nom_de_la_commune": "ASNELLES", "libell_d_acheminement": "ASNELLES", "code_postal": "14960", "coordonnees_gps": [49.3273918281, -0.583379928435], "code_commune_insee": "14022"}, "geometry": {"type": "Point", "coordinates": [-0.583379928435, 49.3273918281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08eb1d4750d8a6c5d5d81728b8bf174d6dda931b", "fields": {"nom_de_la_commune": "AUTHIE", "libell_d_acheminement": "AUTHIE", "code_postal": "14280", "coordonnees_gps": [49.2095685958, -0.412342557701], "code_commune_insee": "14030"}, "geometry": {"type": "Point", "coordinates": [-0.412342557701, 49.2095685958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "053b230a60274ec99a56d1da9e8801ddb6e5949c", "fields": {"nom_de_la_commune": "AUVILLARS", "libell_d_acheminement": "AUVILLARS", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14033"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80aeb9707ca29427206555b6b087c6a5471b92e3", "fields": {"nom_de_la_commune": "BANVILLE", "libell_d_acheminement": "BANVILLE", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14038"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d4857d8a85157801ff8bd7eb55db38b8f2fbbf", "fields": {"nom_de_la_commune": "BARBERY", "libell_d_acheminement": "BARBERY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14039"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e69f9c17fbc944b9ad787784acc88c83b0ef9a", "fields": {"nom_de_la_commune": "BEAUMAIS", "libell_d_acheminement": "BEAUMAIS", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14053"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d386c008c8a8cf00cfad185069fbd3ec6210ad", "fields": {"nom_de_la_commune": "BENERVILLE SUR MER", "libell_d_acheminement": "BENERVILLE SUR MER", "code_postal": "14910", "coordonnees_gps": [49.3272172956, 0.0371935485536], "code_commune_insee": "14059"}, "geometry": {"type": "Point", "coordinates": [0.0371935485536, 49.3272172956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c92b334018cc5c4fdc2b01a76817fa3699a0ad2e", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "ETOUVY", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8940b9f7c7714f418265281b8ef11ddb1bc4196", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "LE RECULEY", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "584aea27b209e484119eedd9cc757d2a3f6560fd", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "MALLOUE", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f69c6e0ccd2afd12ab09458998674761d72369e7", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "MONT BERTRAND", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89812665c349e1b173f44a1c43c8f59bad1f709b", "fields": {"nom_de_la_commune": "BENY SUR MER", "libell_d_acheminement": "BENY SUR MER", "code_postal": "14440", "coordonnees_gps": [49.2888987238, -0.397807379835], "code_commune_insee": "14062"}, "geometry": {"type": "Point", "coordinates": [-0.397807379835, 49.2888987238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0e97e083877bb949525ac378fe69ec4c11bc7c", "fields": {"nom_de_la_commune": "BERNIERES D AILLY", "libell_d_acheminement": "BERNIERES D AILLY", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14064"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e247177d0166b49accc186f5744acc4bbc0a80a8", "fields": {"nom_de_la_commune": "BIEVILLE BEUVILLE", "libell_d_acheminement": "BIEVILLE BEUVILLE", "code_postal": "14112", "coordonnees_gps": [49.2432109147, -0.336840438637], "code_commune_insee": "14068"}, "geometry": {"type": "Point", "coordinates": [-0.336840438637, 49.2432109147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250d6dbb0513ea82e290587baaa544ba7cfeb9d8", "fields": {"nom_de_la_commune": "BILLY", "libell_d_acheminement": "BILLY", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14074"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad371eaaf1eeb8fa9d6b426ebe9818a1c0c9297", "fields": {"nom_de_la_commune": "BLONVILLE SUR MER", "libell_d_acheminement": "BLONVILLE SUR MER", "code_postal": "14910", "coordonnees_gps": [49.3272172956, 0.0371935485536], "code_commune_insee": "14079"}, "geometry": {"type": "Point", "coordinates": [0.0371935485536, 49.3272172956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa71e8fd9198ebc28e2e68046a199f0baadf9022", "fields": {"nom_de_la_commune": "LA BOISSIERE", "libell_d_acheminement": "LA BOISSIERE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14082"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbd4e61ef148ae5e5b2f3c5feda4905ea2e16b8a", "fields": {"nom_de_la_commune": "BONNEBOSQ", "libell_d_acheminement": "BONNEBOSQ", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14083"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3be59fefaf16cb5254d101c38591b86dc80572", "fields": {"nom_de_la_commune": "BRETTEVILLE SUR ODON", "libell_d_acheminement": "BRETTEVILLE SUR ODON", "code_postal": "14760", "coordonnees_gps": [49.173261435, -0.421656892743], "code_commune_insee": "14101"}, "geometry": {"type": "Point", "coordinates": [-0.421656892743, 49.173261435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385293d14250f3e32dcf3d612b5ce8e8fb75e87b", "fields": {"nom_de_la_commune": "BROUAY", "libell_d_acheminement": "BROUAY", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14109"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d267b170ab3fdb45b3f4ecca90a6f73bc6597672", "fields": {"nom_de_la_commune": "CABOURG", "libell_d_acheminement": "CABOURG", "code_postal": "14390", "coordonnees_gps": [49.2648004396, -0.14376856722], "code_commune_insee": "14117"}, "geometry": {"type": "Point", "coordinates": [-0.14376856722, 49.2648004396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "486f74cdea8dc78701f555339968535fb3ad86ba", "fields": {"nom_de_la_commune": "CAHAGNOLLES", "libell_d_acheminement": "CAHAGNOLLES", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14121"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f936c98151a422a60c6413ecdbdf4fcd572449e3", "fields": {"nom_de_la_commune": "CAMPANDRE VALCONGRAIN", "libell_d_acheminement": "CAMPANDRE VALCONGRAIN", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14128"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379ea02e6d6b8c9260afda2f10a16ba270537629", "fields": {"nom_de_la_commune": "ANZEX", "libell_d_acheminement": "ANZEX", "code_postal": "47700", "coordonnees_gps": [44.2984772037, 0.076626543263], "code_commune_insee": "47012"}, "geometry": {"type": "Point", "coordinates": [0.076626543263, 44.2984772037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "719b52da930da107c40ba865ebc187b88447b242", "fields": {"nom_de_la_commune": "ARMILLAC", "libell_d_acheminement": "ARMILLAC", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47014"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d55abccdb7ea578263df888c1e153ee2828f7d0d", "fields": {"nom_de_la_commune": "AURIAC SUR DROPT", "libell_d_acheminement": "AURIAC SUR DROPT", "code_postal": "47120", "coordonnees_gps": [44.6787040938, 0.232542665376], "code_commune_insee": "47018"}, "geometry": {"type": "Point", "coordinates": [0.232542665376, 44.6787040938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb7cb921ba3e273c8f2b98a923081a768fecd33", "fields": {"nom_de_la_commune": "BAZENS", "libell_d_acheminement": "BAZENS", "code_postal": "47130", "coordonnees_gps": [44.2354000817, 0.42312133119], "code_commune_insee": "47022"}, "geometry": {"type": "Point", "coordinates": [0.42312133119, 44.2354000817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c978eb09e63430caf4161d5a0fc4b7b749f35d2e", "fields": {"nom_de_la_commune": "BOURGOUGNAGUE", "libell_d_acheminement": "BOURGOUGNAGUE", "code_postal": "47410", "coordonnees_gps": [44.6188360432, 0.483344290978], "code_commune_insee": "47035"}, "geometry": {"type": "Point", "coordinates": [0.483344290978, 44.6188360432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3abbebf319f88d10e6461ce8db5a7f6175411a0", "fields": {"nom_de_la_commune": "BOURRAN", "libell_d_acheminement": "BOURRAN", "code_postal": "47320", "coordonnees_gps": [44.3563868406, 0.403122345242], "code_commune_insee": "47038"}, "geometry": {"type": "Point", "coordinates": [0.403122345242, 44.3563868406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6edabfc139f8b34ad1e5bdab58dc3f5579799bb4", "fields": {"nom_de_la_commune": "BUZET SUR BAISE", "libell_d_acheminement": "BUZET SUR BAISE", "code_postal": "47160", "coordonnees_gps": [44.2891390598, 0.260143174442], "code_commune_insee": "47043"}, "geometry": {"type": "Point", "coordinates": [0.260143174442, 44.2891390598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9faf04aff53527ea3a1f1d1a98b9674f10ca1d51", "fields": {"nom_de_la_commune": "CAMBES", "libell_d_acheminement": "CAMBES", "code_postal": "47350", "coordonnees_gps": [44.5399074197, 0.305282987207], "code_commune_insee": "47047"}, "geometry": {"type": "Point", "coordinates": [0.305282987207, 44.5399074197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd790ccc7b67bcb252c984f25d53579a897c3885", "fields": {"nom_de_la_commune": "CASTILLONNES", "libell_d_acheminement": "CASTILLONNES", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47057"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e947c0b7cadc10c868282684378948f615f2160", "fields": {"nom_de_la_commune": "CLERMONT DESSOUS", "libell_d_acheminement": "CLERMONT DESSOUS", "code_postal": "47130", "coordonnees_gps": [44.2354000817, 0.42312133119], "code_commune_insee": "47066"}, "geometry": {"type": "Point", "coordinates": [0.42312133119, 44.2354000817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf58f5efc3663cea260549633f27132eaf1af681", "fields": {"nom_de_la_commune": "CLERMONT SOUBIRAN", "libell_d_acheminement": "CLERMONT SOUBIRAN", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47067"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc103aa6424b4728c0690f17ea2cff0d649702e", "fields": {"nom_de_la_commune": "COURBIAC", "libell_d_acheminement": "COURBIAC", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47072"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a8bfc55d1af6a00557bfb9ec845f054464a2144", "fields": {"nom_de_la_commune": "COUTHURES SUR GARONNE", "libell_d_acheminement": "COUTHURES SUR GARONNE", "code_postal": "47180", "coordonnees_gps": [44.53392476, 0.0738446304303], "code_commune_insee": "47074"}, "geometry": {"type": "Point", "coordinates": [0.0738446304303, 44.53392476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e06a2b4b2d6687115c9309221fcaaf98ed0656e5", "fields": {"nom_de_la_commune": "DAUSSE", "libell_d_acheminement": "DAUSSE", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47079"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92efc729a7573fd74344b2045bbf9ce20b0f586d", "fields": {"nom_de_la_commune": "DEVILLAC", "libell_d_acheminement": "DEVILLAC", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47080"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ac777ff79b67ebdf21cbcb4f01ceb2340754e4", "fields": {"nom_de_la_commune": "DOUDRAC", "libell_d_acheminement": "DOUDRAC", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47083"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a05e065b4b8ae8b571fb55ad073d8ac74d74b00f", "fields": {"nom_de_la_commune": "FAUGUEROLLES", "libell_d_acheminement": "FAUGUEROLLES", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47094"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bcd027de56ffa1dd226d4b82c4911c194ed1a9c", "fields": {"nom_de_la_commune": "FEUGAROLLES", "libell_d_acheminement": "FEUGAROLLES", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47097"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b884756e215ca354a5755f67daeff29679d6999a", "fields": {"nom_de_la_commune": "HAUTEFAGE LA TOUR", "libell_d_acheminement": "HAUTEFAGE LA TOUR", "code_postal": "47340", "coordonnees_gps": [44.3000005392, 0.742705393945], "code_commune_insee": "47117"}, "geometry": {"type": "Point", "coordinates": [0.742705393945, 44.3000005392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd7af03f21b768f01f4aa75aac577319aa8f4cf", "fields": {"nom_de_la_commune": "LABASTIDE CASTEL AMOUROUX", "libell_d_acheminement": "LABASTIDE CASTEL AMOUROUX", "code_postal": "47250", "coordonnees_gps": [44.4065628537, 0.0843609403433], "code_commune_insee": "47121"}, "geometry": {"type": "Point", "coordinates": [0.0843609403433, 44.4065628537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27b01b989c95d149db2de21deefcf223149e631e", "fields": {"nom_de_la_commune": "LAVERGNE", "libell_d_acheminement": "LAVERGNE", "code_postal": "47800", "coordonnees_gps": [44.5994650169, 0.378392455175], "code_commune_insee": "47144"}, "geometry": {"type": "Point", "coordinates": [0.378392455175, 44.5994650169]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d090020039c6aa63254b8ef6a25776c914552d6", "fields": {"nom_de_la_commune": "LONGUEVILLE", "libell_d_acheminement": "LONGUEVILLE", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47150"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7cc71114d1bc40cf4ea6e7d676a1756e5753b53", "fields": {"nom_de_la_commune": "MADAILLAN", "libell_d_acheminement": "MADAILLAN", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47155"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3242b8d13e69da322b7264f3946d124ce7706f", "fields": {"nom_de_la_commune": "MARCELLUS", "libell_d_acheminement": "MARCELLUS", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47156"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806b945cb798f34b5194bb30c7999d3a470adc20", "fields": {"nom_de_la_commune": "MASQUIERES", "libell_d_acheminement": "MASQUIERES", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47160"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ae445dfd70f7121c7cf99191d64a2e2e03e1dd", "fields": {"nom_de_la_commune": "MASSELS", "libell_d_acheminement": "MASSELS", "code_postal": "47140", "coordonnees_gps": [44.3849440918, 0.844250854266], "code_commune_insee": "47161"}, "geometry": {"type": "Point", "coordinates": [0.844250854266, 44.3849440918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "883bc654d36136688c38110214b8f66ed1920d2e", "fields": {"nom_de_la_commune": "MAUVEZIN SUR GUPIE", "libell_d_acheminement": "MAUVEZIN SUR GUPIE", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47163"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e10026c4992adcc87b96402b77b584f5fd29f3b", "fields": {"nom_de_la_commune": "MONCLAR", "libell_d_acheminement": "MONCLAR", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47173"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb15bf0877da9860361595919a882418880485f", "fields": {"nom_de_la_commune": "MONFLANQUIN", "libell_d_acheminement": "MONFLANQUIN", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47175"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6df1ee115ecd663e567da7f73cfefde6b0fcb2c", "fields": {"nom_de_la_commune": "MONTAURIOL", "libell_d_acheminement": "MONTAURIOL", "code_postal": "47330", "coordonnees_gps": [44.6508577785, 0.592392772922], "code_commune_insee": "47183"}, "geometry": {"type": "Point", "coordinates": [0.592392772922, 44.6508577785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce01d11f278b962abb3048973558bafacde8c576", "fields": {"nom_de_la_commune": "MONTESQUIEU", "libell_d_acheminement": "MONTESQUIEU", "code_postal": "47130", "coordonnees_gps": [44.2354000817, 0.42312133119], "code_commune_insee": "47186"}, "geometry": {"type": "Point", "coordinates": [0.42312133119, 44.2354000817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe6f5de78e89b3ae9ca3a452a72b7615affab780", "fields": {"nom_de_la_commune": "MONTPOUILLAN", "libell_d_acheminement": "MONTPOUILLAN", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47191"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71deee6fbe699258032aa8064f6ce8c40f98f4ee", "fields": {"nom_de_la_commune": "MOULINET", "libell_d_acheminement": "MOULINET", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47193"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff4e93b1b660a27eb5e0c367a3953911c9209c0", "fields": {"nom_de_la_commune": "NICOLE", "libell_d_acheminement": "NICOLE", "code_postal": "47190", "coordonnees_gps": [44.302646925, 0.368757601165], "code_commune_insee": "47196"}, "geometry": {"type": "Point", "coordinates": [0.368757601165, 44.302646925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd2c5403b19d49b8ae586b24790a0f02881cbcc", "fields": {"nom_de_la_commune": "LE PASSAGE", "libell_d_acheminement": "LE PASSAGE", "code_postal": "47520", "coordonnees_gps": [44.1935053326, 0.594202120584], "code_commune_insee": "47201"}, "geometry": {"type": "Point", "coordinates": [0.594202120584, 44.1935053326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33e9ac5f1b3981776be238a840914762a40ee5e7", "fields": {"nom_de_la_commune": "PUYMIROL", "libell_d_acheminement": "PUYMIROL", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47217"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3301c1a092c47eabde32ba9c6d5857b8327e4087", "fields": {"nom_de_la_commune": "RAYET", "libell_d_acheminement": "RAYET", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47219"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a24cf45e568a7623bacb5bc6c359a2f0dbb44975", "fields": {"nom_de_la_commune": "REAUP LISSE", "libell_d_acheminement": "REAUP LISSE", "code_postal": "47170", "coordonnees_gps": [44.0578455097, 0.199141887722], "code_commune_insee": "47221"}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05c1531bdd385c29b548a4b7f4084803c1e0e5a3", "fields": {"nom_de_la_commune": "ST ETIENNE DE FOUGERES", "libell_d_acheminement": "ST ETIENNE DE FOUGERES", "code_postal": "47380", "coordonnees_gps": [44.4800576934, 0.508511955035], "code_commune_insee": "47239"}, "geometry": {"type": "Point", "coordinates": [0.508511955035, 44.4800576934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f43c404ec6a18a24ea4b46af280926e368e65f79", "fields": {"nom_de_la_commune": "ST ETIENNE DE VILLEREAL", "libell_d_acheminement": "ST ETIENNE DE VILLEREAL", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47240"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b4c0c8eea4cda86729905bac98090440ab163c6", "fields": {"nom_de_la_commune": "ST EUTROPE DE BORN", "libell_d_acheminement": "ST EUTROPE DE BORN", "code_postal": "47210", "coordonnees_gps": [44.6267516583, 0.738433104132], "code_commune_insee": "47241"}, "geometry": {"type": "Point", "coordinates": [0.738433104132, 44.6267516583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a69c9578802b5f16ed594da3b8387fa1c85a157", "fields": {"nom_de_la_commune": "ST FRONT SUR LEMANCE", "libell_d_acheminement": "ST FRONT SUR LEMANCE", "code_postal": "47500", "coordonnees_gps": [44.5448210477, 0.973499530614], "code_commune_insee": "47242"}, "geometry": {"type": "Point", "coordinates": [0.973499530614, 44.5448210477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23125aaf3bb7cef72787f134bbdb579e66dbf4cb", "fields": {"nom_de_la_commune": "ST JEAN DE THURAC", "libell_d_acheminement": "ST JEAN DE THURAC", "code_postal": "47270", "coordonnees_gps": [44.1899408479, 0.817384486687], "code_commune_insee": "47248"}, "geometry": {"type": "Point", "coordinates": [0.817384486687, 44.1899408479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af73c5bfd736aa5a9d302bfb2de06802041d1ada", "fields": {"nom_de_la_commune": "STE LIVRADE SUR LOT", "libell_d_acheminement": "STE LIVRADE SUR LOT", "code_postal": "47110", "coordonnees_gps": [44.383733234, 0.585627133864], "code_commune_insee": "47252"}, "geometry": {"type": "Point", "coordinates": [0.585627133864, 44.383733234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfd9edc0e6d307bc15c579dedaf6d38f936c805d", "fields": {"nom_de_la_commune": "STE MARTHE", "libell_d_acheminement": "STE MARTHE", "code_postal": "47430", "coordonnees_gps": [44.4038524558, 0.201607662579], "code_commune_insee": "47253"}, "geometry": {"type": "Point", "coordinates": [0.201607662579, 44.4038524558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0356460b409c945fce50d2b23d1f2aae284c0655", "fields": {"nom_de_la_commune": "ST MAURICE DE LESTAPEL", "libell_d_acheminement": "ST MAURICE DE LESTAPEL", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47259"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "759db1476d57b682f2569b2851cd8ee93a95250f", "fields": {"nom_de_la_commune": "ST PARDOUX DU BREUIL", "libell_d_acheminement": "ST PARDOUX DU BREUIL", "code_postal": "47200", "coordonnees_gps": [44.4962199558, 0.173898451147], "code_commune_insee": "47263"}, "geometry": {"type": "Point", "coordinates": [0.173898451147, 44.4962199558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c758527501dcb03c3e0f2870b03c3677519d2d49", "fields": {"nom_de_la_commune": "ST PASTOUR", "libell_d_acheminement": "ST PASTOUR", "code_postal": "47290", "coordonnees_gps": [44.5380811408, 0.604531975145], "code_commune_insee": "47265"}, "geometry": {"type": "Point", "coordinates": [0.604531975145, 44.5380811408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93696d4a1c9f9efdc88bc548234e2238038781e5", "fields": {"nom_de_la_commune": "ST SALVY", "libell_d_acheminement": "ST SALVY", "code_postal": "47360", "coordonnees_gps": [44.3072742203, 0.542096401156], "code_commune_insee": "47275"}, "geometry": {"type": "Point", "coordinates": [0.542096401156, 44.3072742203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0abe15a96222123320f8c380512608725b1ca0f", "fields": {"nom_de_la_commune": "SAUVETERRE ST DENIS", "libell_d_acheminement": "SAUVETERRE ST DENIS", "code_postal": "47220", "coordonnees_gps": [44.0949043382, 0.692685242444], "code_commune_insee": "47293"}, "geometry": {"type": "Point", "coordinates": [0.692685242444, 44.0949043382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6016b3062f11d24c07e639202754e07f7c7a1e79", "fields": {"nom_de_la_commune": "SAVIGNAC SUR LEYZE", "libell_d_acheminement": "SAVIGNAC SUR LEYZE", "code_postal": "47150", "coordonnees_gps": [44.530509168, 0.81820267706], "code_commune_insee": "47295"}, "geometry": {"type": "Point", "coordinates": [0.81820267706, 44.530509168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "976ac895650abc981df1c846c7ea11a8175a24fc", "fields": {"nom_de_la_commune": "SEGALAS", "libell_d_acheminement": "SEGALAS", "code_postal": "47410", "coordonnees_gps": [44.6188360432, 0.483344290978], "code_commune_insee": "47296"}, "geometry": {"type": "Point", "coordinates": [0.483344290978, 44.6188360432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a65c78db104a6c8ed507e1260fe72f6d45b7566", "fields": {"nom_de_la_commune": "SENESTIS", "libell_d_acheminement": "SENESTIS", "code_postal": "47430", "coordonnees_gps": [44.4038524558, 0.201607662579], "code_commune_insee": "47298"}, "geometry": {"type": "Point", "coordinates": [0.201607662579, 44.4038524558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "021d9410630108113ae6a304a718d842f46470d9", "fields": {"nom_de_la_commune": "SERIGNAC SUR GARONNE", "libell_d_acheminement": "SERIGNAC SUR GARONNE", "code_postal": "47310", "coordonnees_gps": [44.1399851082, 0.538495270953], "code_commune_insee": "47300"}, "geometry": {"type": "Point", "coordinates": [0.538495270953, 44.1399851082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "938603906c869745efbc000fd038b4898f33e832", "fields": {"code_postal": "47170", "code_commune_insee": "47302", "libell_d_acheminement": "SOS", "ligne_5": "GUEYZE", "nom_de_la_commune": "SOS", "coordonnees_gps": [44.0578455097, 0.199141887722]}, "geometry": {"type": "Point", "coordinates": [0.199141887722, 44.0578455097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "659d6b03d0c0f4acd9a1947186692a8249f43e6b", "fields": {"nom_de_la_commune": "THEZAC", "libell_d_acheminement": "THEZAC", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47307"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9fa9c7734e73f4fe810e4bd90a6c2f7a6ddf45f", "fields": {"nom_de_la_commune": "TOURNON D AGENAIS", "libell_d_acheminement": "TOURNON D AGENAIS", "code_postal": "47370", "coordonnees_gps": [44.4072774794, 0.980770701463], "code_commune_insee": "47312"}, "geometry": {"type": "Point", "coordinates": [0.980770701463, 44.4072774794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa97b2b03a72ecb11fc19df84188ae0173831a8", "fields": {"nom_de_la_commune": "VARES", "libell_d_acheminement": "VARES", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47316"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daa2b6ac1b6ea25ad68a5946edc2f0b013582646", "fields": {"nom_de_la_commune": "VILLETON", "libell_d_acheminement": "VILLETON", "code_postal": "47400", "coordonnees_gps": [44.4196424813, 0.319074824961], "code_commune_insee": "47325"}, "geometry": {"type": "Point", "coordinates": [0.319074824961, 44.4196424813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e56bca2adf65cee4b88eb13e4a3adf95dab58fd", "fields": {"nom_de_la_commune": "XAINTRAILLES", "libell_d_acheminement": "XAINTRAILLES", "code_postal": "47230", "coordonnees_gps": [44.1923170438, 0.280502881227], "code_commune_insee": "47327"}, "geometry": {"type": "Point", "coordinates": [0.280502881227, 44.1923170438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee90f5b3bcfe691cde4c8d67716d260ef8369278", "fields": {"nom_de_la_commune": "ARZENC DE RANDON", "libell_d_acheminement": "ARZENC DE RANDON", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48008"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24746dde03391dd72e498c2b7322c07c9b8ac59e", "fields": {"code_postal": "48500", "code_commune_insee": "48017", "libell_d_acheminement": "BANASSAC CANILHAC", "ligne_5": "CANILHAC", "nom_de_la_commune": "BANASSAC CANILHAC", "coordonnees_gps": [44.3691464127, 3.23194733105]}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0002ba3d8915c798500d314ddac3e4a767d59a42", "fields": {"nom_de_la_commune": "BRENOUX", "libell_d_acheminement": "BRENOUX", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48030"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f67ed3294938b8067e81b026c274020d76d721f4", "fields": {"code_postal": "48310", "code_commune_insee": "48031", "libell_d_acheminement": "BRION", "ligne_5": "LA CHALDETTE", "nom_de_la_commune": "BRION", "coordonnees_gps": [44.7970712517, 3.12612873999]}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3efcc37cade2f5873cac1fa1640034ada6653a", "fields": {"nom_de_la_commune": "LA CANOURGUE", "libell_d_acheminement": "LA CANOURGUE", "code_postal": "48500", "coordonnees_gps": [44.3691464127, 3.23194733105], "code_commune_insee": "48034"}, "geometry": {"type": "Point", "coordinates": [3.23194733105, 44.3691464127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54483b42a081f3ed7aaadc8165def5af61ee313c", "fields": {"nom_de_la_commune": "CHADENET", "libell_d_acheminement": "CHADENET", "code_postal": "48190", "coordonnees_gps": [44.4946985771, 3.71510703535], "code_commune_insee": "48037"}, "geometry": {"type": "Point", "coordinates": [3.71510703535, 44.4946985771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71eb85846cb01cc0dabed57c37952cff41aa24cf", "fields": {"nom_de_la_commune": "CHASSERADES", "libell_d_acheminement": "CHASSERADES", "code_postal": "48250", "coordonnees_gps": [44.58724186, 3.85437402799], "code_commune_insee": "48040"}, "geometry": {"type": "Point", "coordinates": [3.85437402799, 44.58724186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f047e801ed2fe87f2a180c4de7b13d1fd1fb51f3", "fields": {"nom_de_la_commune": "BEDOUES COCURES", "libell_d_acheminement": "BEDOUES COCURES", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48050"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33adabe39bf20644eeceb617a0a571ae4e01954e", "fields": {"nom_de_la_commune": "FOURNELS", "libell_d_acheminement": "FOURNELS", "code_postal": "48310", "coordonnees_gps": [44.7970712517, 3.12612873999], "code_commune_insee": "48064"}, "geometry": {"type": "Point", "coordinates": [3.12612873999, 44.7970712517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f098725a434eb8f2e0428c0d737321c57324dd0", "fields": {"nom_de_la_commune": "LACHAMP", "libell_d_acheminement": "LACHAMP", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48078"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6151a69ac185667b8a1d41a162cd7ca2c0632ba3", "fields": {"nom_de_la_commune": "LES LAUBIES", "libell_d_acheminement": "LES LAUBIES", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48083"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "426f6ec0aa52a3fca3ee595148e8977710d77a90", "fields": {"nom_de_la_commune": "LA MALENE", "libell_d_acheminement": "LA MALENE", "code_postal": "48210", "coordonnees_gps": [44.3288695962, 3.39194126982], "code_commune_insee": "48088"}, "geometry": {"type": "Point", "coordinates": [3.39194126982, 44.3288695962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe69bf1874da39a421635db24b15393fce5c040", "fields": {"nom_de_la_commune": "LE MALZIEU FORAIN", "libell_d_acheminement": "LE MALZIEU FORAIN", "code_postal": "48140", "coordonnees_gps": [44.8984064959, 3.35583127197], "code_commune_insee": "48089"}, "geometry": {"type": "Point", "coordinates": [3.35583127197, 44.8984064959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d055888002d8688d8862f8610a911c17f951fd8", "fields": {"nom_de_la_commune": "MEYRUEIS", "libell_d_acheminement": "MEYRUEIS", "code_postal": "48150", "coordonnees_gps": [44.2076020774, 3.4086160478], "code_commune_insee": "48096"}, "geometry": {"type": "Point", "coordinates": [3.4086160478, 44.2076020774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae523aa021bdb8e87df57aa8376e2c5bd90fc158", "fields": {"code_postal": "48100", "code_commune_insee": "48099", "libell_d_acheminement": "BOURGS SUR COLAGNE", "ligne_5": "LE MONASTIER PIN MORIES", "nom_de_la_commune": "BOURGS SUR COLAGNE", "coordonnees_gps": [44.5866860441, 3.24770669701]}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1233d0468a837bbea5539d3587bd4beb97ba67c8", "fields": {"nom_de_la_commune": "MONTBEL", "libell_d_acheminement": "MONTBEL", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48100"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45a406b0e8cced911da68c9d0d1c65f87c90b56b", "fields": {"nom_de_la_commune": "NASBINALS", "libell_d_acheminement": "NASBINALS", "code_postal": "48260", "coordonnees_gps": [44.6612261572, 3.06211569537], "code_commune_insee": "48104"}, "geometry": {"type": "Point", "coordinates": [3.06211569537, 44.6612261572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9add34e40813dec846ff716c57e912095da43d6c", "fields": {"nom_de_la_commune": "NAUSSAC FONTANES", "libell_d_acheminement": "NAUSSAC FONTANES", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48105"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9381be6fe97f665bde799ae99ad41424e5006c41", "fields": {"nom_de_la_commune": "PALHERS", "libell_d_acheminement": "PALHERS", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48107"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4afbe8e380e03e0028d115a7de3bf8d9a40571e1", "fields": {"nom_de_la_commune": "PELOUSE", "libell_d_acheminement": "PELOUSE", "code_postal": "48000", "coordonnees_gps": [44.5167083556, 3.51736145419], "code_commune_insee": "48111"}, "geometry": {"type": "Point", "coordinates": [3.51736145419, 44.5167083556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6026055e7f7a508a647c027651bce79d743bd405", "fields": {"nom_de_la_commune": "PIERREFICHE", "libell_d_acheminement": "PIERREFICHE", "code_postal": "48300", "coordonnees_gps": [44.6949172347, 3.79841314883], "code_commune_insee": "48112"}, "geometry": {"type": "Point", "coordinates": [3.79841314883, 44.6949172347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53fc79cbd74f5180854743d19a9908e8d39e3ecc", "fields": {"nom_de_la_commune": "LE POMPIDOU", "libell_d_acheminement": "LE POMPIDOU", "code_postal": "48110", "coordonnees_gps": [44.1928198213, 3.72930713182], "code_commune_insee": "48115"}, "geometry": {"type": "Point", "coordinates": [3.72930713182, 44.1928198213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a2a3addca0e6bff4b4b16aedf3e1cff8c8fe65a", "fields": {"code_postal": "48220", "code_commune_insee": "48116", "libell_d_acheminement": "PONT DE MONTVERT SUD MONT LOZERE", "ligne_5": "FRAISSINET DE LOZERE", "nom_de_la_commune": "PONT DE MONTVERT SUD MONT LOZERE", "coordonnees_gps": [44.3629471664, 3.81136680024]}, "geometry": {"type": "Point", "coordinates": [3.81136680024, 44.3629471664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be801264a21e15a4eb49a7c6552b3441c9b8f8c3", "fields": {"nom_de_la_commune": "PRINSUEJOLS", "libell_d_acheminement": "PRINSUEJOLS", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48120"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36175d94f24911e419ff32e6bbf00f22bdc91a6d", "fields": {"nom_de_la_commune": "RIBENNES", "libell_d_acheminement": "RIBENNES", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48126"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "407781c6b605ce00af25b89f525508fabb4efc0d", "fields": {"nom_de_la_commune": "ROUSSES", "libell_d_acheminement": "ROUSSES", "code_postal": "48400", "coordonnees_gps": [44.2653689577, 3.61246385495], "code_commune_insee": "48130"}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbeea9ac415c53e5f8214db374fec1dfc323e31c", "fields": {"nom_de_la_commune": "ST ANDRE DE LANCIZE", "libell_d_acheminement": "ST ANDRE DE LANCIZE", "code_postal": "48240", "coordonnees_gps": [44.2838225075, 3.82458328852], "code_commune_insee": "48136"}, "geometry": {"type": "Point", "coordinates": [3.82458328852, 44.2838225075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f7b86dee4d48f819e9981773d83d0a403f7223c", "fields": {"nom_de_la_commune": "ST BONNET DE CHIRAC", "libell_d_acheminement": "ST BONNET DE CHIRAC", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48138"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a622e0f2b8f0c368b7d3de06e42818309e5e684", "fields": {"nom_de_la_commune": "STE CROIX VALLEE FRANCAISE", "libell_d_acheminement": "STE CROIX VALLEE FRANCAISE", "code_postal": "48110", "coordonnees_gps": [44.1928198213, 3.72930713182], "code_commune_insee": "48144"}, "geometry": {"type": "Point", "coordinates": [3.72930713182, 44.1928198213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00c60cf9eca99f7a9bdc54aec20aa111d2e2723a", "fields": {"code_postal": "48210", "code_commune_insee": "48146", "libell_d_acheminement": "STE ENIMIE", "ligne_5": "PRADES", "nom_de_la_commune": "STE ENIMIE", "coordonnees_gps": [44.3288695962, 3.39194126982]}, "geometry": {"type": "Point", "coordinates": [3.39194126982, 44.3288695962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7c629288804be1d535136b5c5d992553f7945e8", "fields": {"nom_de_la_commune": "ST ETIENNE VALLEE FRANCAISE", "libell_d_acheminement": "ST ETIENNE VALLEE FRANCAISE", "code_postal": "48330", "coordonnees_gps": [44.1717142135, 3.8564054126], "code_commune_insee": "48148"}, "geometry": {"type": "Point", "coordinates": [3.8564054126, 44.1717142135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06feb0daf4e7c537ba4f4a48ef2eb7c0a43dcd3a", "fields": {"nom_de_la_commune": "ST FREZAL D ALBUGES", "libell_d_acheminement": "ST FREZAL D ALBUGES", "code_postal": "48170", "coordonnees_gps": [44.6436577464, 3.68047058212], "code_commune_insee": "48151"}, "geometry": {"type": "Point", "coordinates": [3.68047058212, 44.6436577464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c8b10d8f5605d52a0889179dd648cb0fbd79b1", "fields": {"code_postal": "48160", "code_commune_insee": "48152", "libell_d_acheminement": "VENTALON EN CEVENNES", "ligne_5": "ST ANDEOL DE CLERGUEMORT", "nom_de_la_commune": "VENTALON EN CEVENNES", "coordonnees_gps": [44.2409475687, 3.90246721272]}, "geometry": {"type": "Point", "coordinates": [3.90246721272, 44.2409475687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca06f245434fe29543fcd966f631c56bc129efd9", "fields": {"nom_de_la_commune": "ST GERMAIN DE CALBERTE", "libell_d_acheminement": "ST GERMAIN DE CALBERTE", "code_postal": "48370", "coordonnees_gps": [44.2217314781, 3.81022131996], "code_commune_insee": "48155"}, "geometry": {"type": "Point", "coordinates": [3.81022131996, 44.2217314781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264efd89d8a6bf1b97d7e6b61084945a0829ab5f", "fields": {"code_postal": "48400", "code_commune_insee": "48162", "libell_d_acheminement": "CANS ET CEVENNES", "ligne_5": "ST JULIEN D ARPAON", "nom_de_la_commune": "CANS ET CEVENNES", "coordonnees_gps": [44.2653689577, 3.61246385495]}, "geometry": {"type": "Point", "coordinates": [3.61246385495, 44.2653689577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f27da357dec8a71b49d859dc219ab8a2938fa2", "fields": {"nom_de_la_commune": "ST LEGER DE PEYRE", "libell_d_acheminement": "ST LEGER DE PEYRE", "code_postal": "48100", "coordonnees_gps": [44.5866860441, 3.24770669701], "code_commune_insee": "48168"}, "geometry": {"type": "Point", "coordinates": [3.24770669701, 44.5866860441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32a834920d39c6e74d63d1089e61662fdeb5f15b", "fields": {"nom_de_la_commune": "ST PAUL LE FROID", "libell_d_acheminement": "ST PAUL LE FROID", "code_postal": "48600", "coordonnees_gps": [44.7870474778, 3.63511389212], "code_commune_insee": "48174"}, "geometry": {"type": "Point", "coordinates": [3.63511389212, 44.7870474778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "284738c04e67605844de5a521355cf2b663f71f1", "fields": {"nom_de_la_commune": "ST PIERRE DES TRIPIERS", "libell_d_acheminement": "ST PIERRE DES TRIPIERS", "code_postal": "48150", "coordonnees_gps": [44.2076020774, 3.4086160478], "code_commune_insee": "48176"}, "geometry": {"type": "Point", "coordinates": [3.4086160478, 44.2076020774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "405ea35086ddf3e295303c5086eab0fcf2d528f4", "fields": {"nom_de_la_commune": "LES SALELLES", "libell_d_acheminement": "LES SALELLES", "code_postal": "48230", "coordonnees_gps": [44.4596098281, 3.3408753793], "code_commune_insee": "48185"}, "geometry": {"type": "Point", "coordinates": [3.3408753793, 44.4596098281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "066e68cd58297455f10f9784038021dbb2b61be0", "fields": {"nom_de_la_commune": "LES VIGNES", "libell_d_acheminement": "LES VIGNES", "code_postal": "48210", "coordonnees_gps": [44.3288695962, 3.39194126982], "code_commune_insee": "48195"}, "geometry": {"type": "Point", "coordinates": [3.39194126982, 44.3288695962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e656c31f11a74826d9d31842254d09a3a1fd3e57", "fields": {"nom_de_la_commune": "BRIOD", "libell_d_acheminement": "BRIOD", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39079"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe503c804ad16889707c7d7ddcf61fbbd2d52d58", "fields": {"nom_de_la_commune": "CENSEAU", "libell_d_acheminement": "CENSEAU", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39083"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f09d3c37a04c43a304d11713acdf9f32afad20af", "fields": {"nom_de_la_commune": "CERNON", "libell_d_acheminement": "CERNON", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39086"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9608e5b5fe74d58a005560fd45ef8f5cc103491", "fields": {"nom_de_la_commune": "CESANCEY", "libell_d_acheminement": "CESANCEY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39088"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e0c9edde2e1d5439b81a94a10e83696471d6f4", "fields": {"nom_de_la_commune": "LES CHALESMES", "libell_d_acheminement": "LES CHALESMES", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39091"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f43867bd667d83b0a80714ea31892a79ead7185", "fields": {"nom_de_la_commune": "CHAMPAGNEY", "libell_d_acheminement": "CHAMPAGNEY", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39096"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73b29926d3c9e566de67ae4e1b544eb37f2375e", "fields": {"nom_de_la_commune": "CHAMPAGNOLE", "libell_d_acheminement": "CHAMPAGNOLE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39097"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27484e5a06e3d5d4b2aa8bfbcc253255716640db", "fields": {"nom_de_la_commune": "CHAMPVANS", "libell_d_acheminement": "CHAMPVANS", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39101"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b12ea9e541a7c1f0bea1a856588c6dd9b7af773a", "fields": {"nom_de_la_commune": "CHARCHILLA", "libell_d_acheminement": "CHARCHILLA", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39106"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c542b43ba6254448137e317bb1f098cf9282f91f", "fields": {"nom_de_la_commune": "CHARENCY", "libell_d_acheminement": "CHARENCY", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39108"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1870d847df9c1268e5a6b592e0163ea07c6b77", "fields": {"nom_de_la_commune": "CHATEAU CHALON", "libell_d_acheminement": "CHATEAU CHALON", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39114"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58bc97cb5c0b28b11c8b01c0a9f0175a4d8807a7", "fields": {"nom_de_la_commune": "LE CHATELEY", "libell_d_acheminement": "LE CHATELEY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39119"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c80c222c7e161f21518d14534f7822c8e1ece1a1", "fields": {"nom_de_la_commune": "CHATILLON", "libell_d_acheminement": "CHATILLON", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39122"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ea1d44db93ab9f9befb263d2f8577dbcd66a90", "fields": {"nom_de_la_commune": "CHAUX DES CROTENAY", "libell_d_acheminement": "CHAUX DES CROTENAY", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39129"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c0da4117c329219a00206658f8e1c01f9b43cf", "fields": {"nom_de_la_commune": "LA CHAUX EN BRESSE", "libell_d_acheminement": "LA CHAUX EN BRESSE", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39132"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778b0ef96fecf14af3581cfcaa295eddf56ec71b", "fields": {"nom_de_la_commune": "CHEMENOT", "libell_d_acheminement": "CHEMENOT", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39136"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14c7fa78a2ab00c498315dcb304535bf0daa26b9", "fields": {"nom_de_la_commune": "CHEVROTAINE", "libell_d_acheminement": "CHEVROTAINE", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39143"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57a740b217ab0d9f3ee220b34c24a580464e067", "fields": {"nom_de_la_commune": "CHOUX", "libell_d_acheminement": "CHOUX", "code_postal": "39370", "coordonnees_gps": [46.2916662197, 5.82108544834], "code_commune_insee": "39151"}, "geometry": {"type": "Point", "coordinates": [5.82108544834, 46.2916662197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "517832b4c7334c2c8c02ac35f3a0da5eda10f193", "fields": {"nom_de_la_commune": "CONDES", "libell_d_acheminement": "CONDES", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39163"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9349fcb3b4cc03450c364c1ace6d96eb21fac5", "fields": {"nom_de_la_commune": "COSGES", "libell_d_acheminement": "COSGES", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39167"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c04164b8b644ec9b06c6c4ab511175016c37426e", "fields": {"nom_de_la_commune": "COURBETTE", "libell_d_acheminement": "COURBETTE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39168"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5588801fd0b45eb209d2ee79e46f22acd2769552", "fields": {"nom_de_la_commune": "COUSANCE", "libell_d_acheminement": "COUSANCE", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39173"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b968b1eb71283178224f63293e5f684a1d958425", "fields": {"nom_de_la_commune": "COYRIERE", "libell_d_acheminement": "COYRIERE", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39174"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25795bd6c7f0b8ae4472b16bb4d5422148a06948", "fields": {"nom_de_la_commune": "CRANS", "libell_d_acheminement": "CRANS", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39178"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8f6c0f21fc073d40d357d45c7b8c8f285c952e", "fields": {"nom_de_la_commune": "CRENANS", "libell_d_acheminement": "CRENANS", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39179"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bbdf76eff19ba6c9f3e1d487a94cd3167d8e1da", "fields": {"nom_de_la_commune": "DARBONNAY", "libell_d_acheminement": "DARBONNAY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39191"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25c53a242bd854072ef73d1a423c3fba6dc0b5e", "fields": {"nom_de_la_commune": "DENEZIERES", "libell_d_acheminement": "DENEZIERES", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39192"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f604635f3fdf274cec4b144241971bbb4b4d95d", "fields": {"nom_de_la_commune": "DESNES", "libell_d_acheminement": "DESNES", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39194"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1380d511da5799020672b275ba063a99fe52f015", "fields": {"nom_de_la_commune": "ECLANS NENON", "libell_d_acheminement": "ECLANS NENON", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39205"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7355b24eb79d81cee3fc51abf2fb31058975975", "fields": {"nom_de_la_commune": "ECLEUX", "libell_d_acheminement": "ECLEUX", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39206"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf3cc4cee83bd51a8a391c4cb91d2f38ed2aadb", "fields": {"code_postal": "39160", "code_commune_insee": "39209", "libell_d_acheminement": "VAL D EPY", "ligne_5": "NANTEY", "nom_de_la_commune": "VAL D EPY", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eafc599ef6a23bf61c5e7b058d37dc97a1ef52ca", "fields": {"code_postal": "39160", "code_commune_insee": "39209", "libell_d_acheminement": "VAL D EPY", "ligne_5": "POISOUX", "nom_de_la_commune": "VAL D EPY", "coordonnees_gps": [46.4292456485, 5.37253592274]}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76c380d1a5fc25e384c24cce3e2ea45032c6adaa", "fields": {"code_postal": "39320", "code_commune_insee": "39209", "libell_d_acheminement": "VAL D EPY", "ligne_5": "FLORENTIA", "nom_de_la_commune": "VAL D EPY", "coordonnees_gps": [46.4076971476, 5.45325429562]}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35220f34e2e80f5f4a91558e61fdfc2b6b44999e", "fields": {"code_postal": "39130", "code_commune_insee": "39216", "libell_d_acheminement": "ETIVAL", "ligne_5": "LES RONCHAUX", "nom_de_la_commune": "ETIVAL", "coordonnees_gps": [46.5974008072, 5.7778821985]}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61584a4a10a910f295ab1fe599cc507bf77b7fb6", "fields": {"nom_de_la_commune": "EVANS", "libell_d_acheminement": "EVANS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39219"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e4cce58a9424ff56535397e4bdc2d44d4e69e66", "fields": {"nom_de_la_commune": "LA FAVIERE", "libell_d_acheminement": "LA FAVIERE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39221"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c080901b630d4fe380d9a94068a6efcfc1ee310f", "fields": {"nom_de_la_commune": "FETIGNY", "libell_d_acheminement": "FETIGNY", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39224"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "443a574c43f373945216e72e100cdec9829a2391", "fields": {"nom_de_la_commune": "FONCINE LE BAS", "libell_d_acheminement": "FONCINE LE BAS", "code_postal": "39520", "coordonnees_gps": [46.6331027337, 6.0291112084], "code_commune_insee": "39227"}, "geometry": {"type": "Point", "coordinates": [6.0291112084, 46.6331027337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2acefdd5dab902ec44d402d61ad76d9f8dcc1d24", "fields": {"nom_de_la_commune": "FRAISANS", "libell_d_acheminement": "FRAISANS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39235"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "798c5e620c45ac31e8c84ad1937ff7618b296be9", "fields": {"nom_de_la_commune": "FRASNE LES MEULIERES", "libell_d_acheminement": "FRASNE LES MEULIERES", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39238"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2bc40ed48aa48f298cda3d1a8a78e5d6a8edd8", "fields": {"nom_de_la_commune": "LE FRASNOIS", "libell_d_acheminement": "LE FRASNOIS", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39240"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a66dde4bf9bff2220ffba8d9956b1bb3e0c0510e", "fields": {"nom_de_la_commune": "GENOD", "libell_d_acheminement": "GENOD", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39247"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff47434d2cf2b996ddd4ef17e95b12a237c8db55", "fields": {"nom_de_la_commune": "LAINS", "libell_d_acheminement": "LAINS", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39273"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6952a4668b292b07f9475b7cbc7ec00c06ba9cc6", "fields": {"nom_de_la_commune": "LE LARDERET", "libell_d_acheminement": "LE LARDERET", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39277"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a6f56f310c93760380047935edb10f4017a051", "fields": {"nom_de_la_commune": "LARRIVOIRE", "libell_d_acheminement": "LARRIVOIRE", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39280"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2c3da5d0e1eae64be06e4aa3a95faa5d869b7e5", "fields": {"code_postal": "39170", "code_commune_insee": "39286", "libell_d_acheminement": "LAVANS LES ST CLAUDE", "ligne_5": "PONTHOUX", "nom_de_la_commune": "LAVANS LES ST CLAUDE", "coordonnees_gps": [46.4122748444, 5.79038088139]}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02192bc49dbbcfe47988c12249420d8153bfe1ec", "fields": {"nom_de_la_commune": "LONGWY SUR LE DOUBS", "libell_d_acheminement": "LONGWY SUR LE DOUBS", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39299"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14cf32fe5874c95f51fe64875b1bbd750b6cf5c1", "fields": {"nom_de_la_commune": "MACORNAY", "libell_d_acheminement": "MACORNAY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39306"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c88e0ddf7e574cc7deb06bc84a46740f1c5bfb0", "fields": {"nom_de_la_commune": "MALANGE", "libell_d_acheminement": "MALANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39308"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "092f62daa8f75a7c72d7485c40c34903598962af", "fields": {"nom_de_la_commune": "MALLEREY", "libell_d_acheminement": "MALLEREY", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39309"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46dde8e9fcef59811c8bfd8699514aeeec79f7e5", "fields": {"nom_de_la_commune": "MARIGNA SUR VALOUSE", "libell_d_acheminement": "MARIGNA SUR VALOUSE", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39312"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf51824708c18517a6961a93a9ca8f15ca8a713", "fields": {"nom_de_la_commune": "MESSIA SUR SORNE", "libell_d_acheminement": "MESSIA SUR SORNE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39327"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27c2c5294b2b6b183c3f0eabbc9c8951433fc5b", "fields": {"code_postal": "39250", "code_commune_insee": "39331", "libell_d_acheminement": "MIGNOVILLARD", "ligne_5": "FROIDEFONTAINE", "nom_de_la_commune": "MIGNOVILLARD", "coordonnees_gps": [46.7774503228, 6.08094337332]}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d9ffeb01dc0dbfcb05acb34a7a81b6f9d8258f", "fields": {"nom_de_la_commune": "MOLAMBOZ", "libell_d_acheminement": "MOLAMBOZ", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39337"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5bc577edc98dcccee15ba8864e16e980544fb12", "fields": {"nom_de_la_commune": "MOLINGES", "libell_d_acheminement": "MOLINGES", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39339"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ffa23e6affece57e88c0e7fb54213f9c96246e8", "fields": {"nom_de_la_commune": "LES MOLUNES", "libell_d_acheminement": "LES MOLUNES", "code_postal": "39310", "coordonnees_gps": [46.3646047349, 5.94493572712], "code_commune_insee": "39341"}, "geometry": {"type": "Point", "coordinates": [5.94493572712, 46.3646047349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7686886fc00308d6426f33c9a99a325dbc5d716", "fields": {"nom_de_la_commune": "MONTAIN", "libell_d_acheminement": "MONTAIN", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39349"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d82bb200d66bc6efd550b387d52610112f9e3d65", "fields": {"nom_de_la_commune": "MONTHOLIER", "libell_d_acheminement": "MONTHOLIER", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39354"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f95fa6a8661f87c06f4f2920df19c2239a297aa", "fields": {"nom_de_la_commune": "MONTROND", "libell_d_acheminement": "MONTROND", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39364"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d2faeed5b41d950b1f363aae99dfaaaa0e6bdfe", "fields": {"nom_de_la_commune": "MONT SUR MONNET", "libell_d_acheminement": "MONT SUR MONNET", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39366"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c54d8db40b5f8029defef799f92c57ece1fa29", "fields": {"code_postal": "39400", "code_commune_insee": "39368", "libell_d_acheminement": "HAUTS DE BIENNE", "ligne_5": "LA MOUILLE", "nom_de_la_commune": "HAUTS DE BIENNE", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6792f954977d278c43f21592fe843703cad09b", "fields": {"nom_de_la_commune": "LES MOUSSIERES", "libell_d_acheminement": "LES MOUSSIERES", "code_postal": "39310", "coordonnees_gps": [46.3646047349, 5.94493572712], "code_commune_insee": "39373"}, "geometry": {"type": "Point", "coordinates": [5.94493572712, 46.3646047349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fc84eb0659c2f15896d8254a94a8252b6327ba9", "fields": {"nom_de_la_commune": "MOUTOUX", "libell_d_acheminement": "MOUTOUX", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39376"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdb76fe9642fac1d96b041e86f3a0ec479b5a3af", "fields": {"nom_de_la_commune": "NEY", "libell_d_acheminement": "NEY", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39389"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "648d172d3f0a98bd619a22c1537f3e9a9d35f441", "fields": {"nom_de_la_commune": "ORCHAMPS", "libell_d_acheminement": "ORCHAMPS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39396"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d577ea1feb6b6d45c5389f9fdbd72a7d32523051", "fields": {"nom_de_la_commune": "OUGNEY", "libell_d_acheminement": "OUGNEY", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39398"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c0d022027ea4481ff4ddc88cdbd1fec5fd06de4", "fields": {"nom_de_la_commune": "PICARREAU", "libell_d_acheminement": "PICARREAU", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39418"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b372af09a314c15abdbeaa942508bf5ff1a97191", "fields": {"nom_de_la_commune": "PLAISIA", "libell_d_acheminement": "PLAISIA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39423"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4de2b838f1d3a78247e418b3d6a8eaef62091721", "fields": {"nom_de_la_commune": "LES PLANCHES EN MONTAGNE", "libell_d_acheminement": "LES PLANCHES EN MONTAGNE", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39424"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fefe8b8ff638dfa9c9314c9c044a7e3ea303322d", "fields": {"nom_de_la_commune": "PONT DE POITTE", "libell_d_acheminement": "PONT DE POITTE", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39435"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87bfc8fd2017b89461bdde862b887b511ba18af7", "fields": {"code_postal": "39110", "code_commune_insee": "39436", "libell_d_acheminement": "PONT D HERY", "ligne_5": "MOUTAINE", "nom_de_la_commune": "PONT D HERY", "coordonnees_gps": [46.9201409369, 5.90413463996]}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d9b81e5ddc7fb5eb7399ec30b6a552bdb3988d", "fields": {"nom_de_la_commune": "QUINTIGNY", "libell_d_acheminement": "QUINTIGNY", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39447"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1708911da7394d9667aee33e43b8d3abd010e1e7", "fields": {"nom_de_la_commune": "RAHON", "libell_d_acheminement": "RAHON", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39448"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0b9917a5484daec191f493d54d7c17faddb8ba4", "fields": {"code_postal": "39220", "code_commune_insee": "39470", "libell_d_acheminement": "LES ROUSSES", "ligne_5": "LA CURE", "nom_de_la_commune": "LES ROUSSES", "coordonnees_gps": [46.4870347389, 6.06467102901]}, "geometry": {"type": "Point", "coordinates": [6.06467102901, 46.4870347389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cad663b9183e44eb17445aa791d67604262151c", "fields": {"code_postal": "39400", "code_commune_insee": "39470", "libell_d_acheminement": "LES ROUSSES", "ligne_5": "LES RIVIERES", "nom_de_la_commune": "LES ROUSSES", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2944299f53ff5125a438dac2c912c8d6825a2a0", "fields": {"nom_de_la_commune": "RUFFEY SUR SEILLE", "libell_d_acheminement": "RUFFEY SUR SEILLE", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39471"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "663a2091999d4cc751d7c74f0e821bfe2dd9ff10", "fields": {"nom_de_la_commune": "ST AMOUR", "libell_d_acheminement": "ST AMOUR", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39475"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86f293e964335bd30cccb81ed50b1b28a9c37650", "fields": {"code_postal": "39200", "code_commune_insee": "39478", "libell_d_acheminement": "ST CLAUDE", "ligne_5": "CINQUETRAL", "nom_de_la_commune": "ST CLAUDE", "coordonnees_gps": [46.412034572, 5.87063091649]}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe177abc39f5c3d9f29530ce642011ef023d2dc3", "fields": {"code_postal": "39200", "code_commune_insee": "39478", "libell_d_acheminement": "ST CLAUDE", "ligne_5": "VALFIN LES ST CLAUDE", "nom_de_la_commune": "ST CLAUDE", "coordonnees_gps": [46.412034572, 5.87063091649]}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f4479d55c51700867b721ea39616552c8b17151", "fields": {"code_postal": "39600", "code_commune_insee": "39479", "libell_d_acheminement": "ST CYR MONTMALIN", "ligne_5": "MONTMALIN", "nom_de_la_commune": "ST CYR MONTMALIN", "coordonnees_gps": [46.9334374908, 5.75807141934]}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1836a439d62880f7567500c26d510d640e917f3e", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39485"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aaabc1f3702c92bbafa0b176f41882452fd6b4b", "fields": {"nom_de_la_commune": "SAMPANS", "libell_d_acheminement": "SAMPANS", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39501"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f974a8f4c62764dd5b9b2b1e0de6d33566c5b8", "fields": {"nom_de_la_commune": "SAPOIS", "libell_d_acheminement": "SAPOIS", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39503"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee54196c43eb3c46a996425b1f700ba0f76ec6f9", "fields": {"code_postal": "39270", "code_commune_insee": "39504", "libell_d_acheminement": "SARROGNA", "ligne_5": "MARANGEA", "nom_de_la_commune": "SARROGNA", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "530c50adb1512332190f20073259b8aa0a96a596", "fields": {"code_postal": "39270", "code_commune_insee": "39504", "libell_d_acheminement": "SARROGNA", "ligne_5": "NERMIER", "nom_de_la_commune": "SARROGNA", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dac12b8520aa42cc22604405ee686d862e27456", "fields": {"nom_de_la_commune": "SOUCIA", "libell_d_acheminement": "SOUCIA", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39519"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b7143b906fd300e28379d64f9b1e38cc633b19a", "fields": {"nom_de_la_commune": "TASSENIERES", "libell_d_acheminement": "TASSENIERES", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39525"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "898e2022d785bd97693b8a1cc3dfe772873c9e00", "fields": {"nom_de_la_commune": "THERVAY", "libell_d_acheminement": "THERVAY", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39528"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b55bf6d617ad02e4e50e1062708a2c7d3a3c99", "fields": {"nom_de_la_commune": "THESY", "libell_d_acheminement": "THESY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39529"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5acd66460783449033c6842d999b9fafb66354", "fields": {"nom_de_la_commune": "THOISSIA", "libell_d_acheminement": "THOISSIA", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39532"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f953f0978e423ae8cace75af4cee8dc29d76b6", "fields": {"nom_de_la_commune": "TRENAL", "libell_d_acheminement": "TRENAL", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39537"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "629a76b538671095af301b3983d932544d10ee85", "fields": {"nom_de_la_commune": "VAUDREY", "libell_d_acheminement": "VAUDREY", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39546"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5af60efe21d85696d3533e2762d12b2ce1ad7a56", "fields": {"nom_de_la_commune": "VERCIA", "libell_d_acheminement": "VERCIA", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39549"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0a03a1792fc84f67945edea14713a6abd6ed1c", "fields": {"nom_de_la_commune": "VERIA", "libell_d_acheminement": "VERIA", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39551"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91a5e4d2780b83eecfb52fba958b79b8166e6d8a", "fields": {"nom_de_la_commune": "VERS SOUS SELLIERES", "libell_d_acheminement": "VERS SOUS SELLIERES", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39555"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d753a8e1dc1e5772a53d7099711cd12585713635", "fields": {"nom_de_la_commune": "VILLARDS D HERIA", "libell_d_acheminement": "VILLARDS D HERIA", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39561"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1090231d842b7f11aee07352d9baf19b3527517", "fields": {"code_postal": "39150", "code_commune_insee": "39562", "libell_d_acheminement": "VILLARD SUR BIENNE", "ligne_5": "LES CROZATS", "nom_de_la_commune": "VILLARD SUR BIENNE", "coordonnees_gps": [46.5872536631, 5.94328461493]}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb116033983049c234bb0da151341d90f173aa74", "fields": {"nom_de_la_commune": "VILLERS ROBERT", "libell_d_acheminement": "VILLERS ROBERT", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39571"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d850670c8faa3176d094f24273d0d91fe333a8", "fields": {"nom_de_la_commune": "VINCENT FROIDEVILLE", "libell_d_acheminement": "VINCENT FROIDEVILLE", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39577"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69d68b4aacf07233052b188e56b8004fa3e1a83", "fields": {"nom_de_la_commune": "VOITEUR", "libell_d_acheminement": "VOITEUR", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39582"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3313a862e572be6159802dba9bff162c856b3b1", "fields": {"nom_de_la_commune": "ST GEORGES DES AGOUTS", "libell_d_acheminement": "ST GEORGES DES AGOUTS", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17335"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e6a735efb8e182c58270d734ad7331a155ea2c", "fields": {"nom_de_la_commune": "ST GERMAIN DE VIBRAC", "libell_d_acheminement": "ST GERMAIN DE VIBRAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17341"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f57d1e43c29858d34aabf9a4b6cd61bb323ff9f", "fields": {"nom_de_la_commune": "ST GREGOIRE D ARDENNES", "libell_d_acheminement": "ST GREGOIRE D ARDENNES", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17343"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c48bfa732306a7d31f85c07b587669bda0a99454", "fields": {"nom_de_la_commune": "ST HILAIRE DU BOIS", "libell_d_acheminement": "ST HILAIRE DU BOIS", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17345"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd5e57485d4f1fed539654535ee476c90cdd054", "fields": {"nom_de_la_commune": "ST JEAN DE LIVERSAY", "libell_d_acheminement": "ST JEAN DE LIVERSAY", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17349"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ac9bdd688b21a4725f973a0bf437b3a1459417a", "fields": {"nom_de_la_commune": "ST LAURENT DE LA BARRIERE", "libell_d_acheminement": "ST LAURENT DE LA BARRIERE", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17352"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15020f582e4224fe93b09fbad033db93fa6966c3", "fields": {"nom_de_la_commune": "ST LAURENT DE LA PREE", "libell_d_acheminement": "ST LAURENT DE LA PREE", "code_postal": "17450", "coordonnees_gps": [45.9868352342, -1.03911420802], "code_commune_insee": "17353"}, "geometry": {"type": "Point", "coordinates": [-1.03911420802, 45.9868352342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbc4d6429dc70651a3ec22bceefa44916a704df9", "fields": {"nom_de_la_commune": "ST MARD", "libell_d_acheminement": "ST MARD", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17359"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51c2e932b59be7598f85a33db7b6cfce819a6f7a", "fields": {"nom_de_la_commune": "ST MARTIAL SUR NE", "libell_d_acheminement": "ST MARTIAL SUR NE", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17364"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbeac34130be307eb0fd97d086fcd40f1b53727b", "fields": {"nom_de_la_commune": "ST MARTIN DE COUX", "libell_d_acheminement": "ST MARTIN DE COUX", "code_postal": "17360", "coordonnees_gps": [45.1692213805, -0.0733315684265], "code_commune_insee": "17366"}, "geometry": {"type": "Point", "coordinates": [-0.0733315684265, 45.1692213805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9758b6b6c065b6e8d0d3cdf0e39caae284651990", "fields": {"nom_de_la_commune": "ST MARTIN DE JUILLERS", "libell_d_acheminement": "ST MARTIN DE JUILLERS", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17367"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36de509b37d4814f9ae41d2e12c22d8eba70e24a", "fields": {"nom_de_la_commune": "ST MARTIN DE RE", "libell_d_acheminement": "ST MARTIN DE RE", "code_postal": "17410", "coordonnees_gps": [46.1993348422, -1.36709040482], "code_commune_insee": "17369"}, "geometry": {"type": "Point", "coordinates": [-1.36709040482, 46.1993348422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c02185a5380479239ac9fc15c951f5b937e24ce", "fields": {"nom_de_la_commune": "STE MEME", "libell_d_acheminement": "STE MEME", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17374"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f583f1fb36505e47fff42c658af307feb3c5224", "fields": {"nom_de_la_commune": "ST OUEN LA THENE", "libell_d_acheminement": "ST OUEN LA THENE", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17377"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9550c6c72f848e9e96e3de0a62b992b3a656ef87", "fields": {"nom_de_la_commune": "ST PARDOULT", "libell_d_acheminement": "ST PARDOULT", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17381"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52086788f65dd62c92f678b7133eda93e5f6bfca", "fields": {"nom_de_la_commune": "ST PIERRE DE JUILLERS", "libell_d_acheminement": "ST PIERRE DE JUILLERS", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17383"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c4c59e79ba8fc20fc17663ff45ef7e9451df09", "fields": {"nom_de_la_commune": "ST PIERRE D OLERON", "libell_d_acheminement": "ST PIERRE D OLERON", "code_postal": "17310", "coordonnees_gps": [45.9395914955, -1.30493678454], "code_commune_insee": "17385"}, "geometry": {"type": "Point", "coordinates": [-1.30493678454, 45.9395914955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26592fdb88b6f8f7b63a4c252c2e2fd743b6cd8e", "fields": {"nom_de_la_commune": "ST PORCHAIRE", "libell_d_acheminement": "ST PORCHAIRE", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17387"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb37b02785f4ea1e5c3553b1f5b682db09a38b3", "fields": {"nom_de_la_commune": "ST SAUVEUR D AUNIS", "libell_d_acheminement": "ST SAUVEUR D AUNIS", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17396"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33d083531cda8858fbff0a4e6d87309f072cc7f", "fields": {"nom_de_la_commune": "ST VAIZE", "libell_d_acheminement": "ST VAIZE", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17412"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b243a890523ae7fbdf164a48e980bd36e027808", "fields": {"nom_de_la_commune": "ST VIVIEN", "libell_d_acheminement": "ST VIVIEN", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17413"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46943fb130887fc9a66668c34f13ee70b8c1cdf6", "fields": {"nom_de_la_commune": "THAIRE", "libell_d_acheminement": "THAIRE", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17443"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adcfe2371aca109781d96cf84da67a45d3af7dd", "fields": {"nom_de_la_commune": "THORS", "libell_d_acheminement": "THORS", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17446"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a8789c0501006bf2a59703e9763a7baa3a76df3", "fields": {"nom_de_la_commune": "TONNAY CHARENTE", "libell_d_acheminement": "TONNAY CHARENTE", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17449"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1daf4b2d056adebbf7c2ba3ff5331b7750a72fb", "fields": {"nom_de_la_commune": "TORXE", "libell_d_acheminement": "TORXE", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17450"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da0c8c09e41d6ae0e73b27cd6041bc986edcecf", "fields": {"code_postal": "17130", "code_commune_insee": "17454", "libell_d_acheminement": "TUGERAS ST MAURICE", "ligne_5": "ST MAURICE DE LAURENCANNE", "nom_de_la_commune": "TUGERAS ST MAURICE", "coordonnees_gps": [45.3143331813, -0.405621594016]}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fbd2c0c5093845895925bbbca5809c77f2f6cb2", "fields": {"nom_de_la_commune": "VERVANT", "libell_d_acheminement": "VERVANT", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17467"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac94edef09154177c7ca17a8f019f63720aad0d0", "fields": {"nom_de_la_commune": "VILLEDOUX", "libell_d_acheminement": "VILLEDOUX", "code_postal": "17230", "coordonnees_gps": [46.286014889, -1.01509211949], "code_commune_insee": "17472"}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2492064381ddae7d8414b6d6ecec65dab697f1", "fields": {"nom_de_la_commune": "ALLOGNY", "libell_d_acheminement": "ALLOGNY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18004"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b8da27f5f2c035ac7e6cdb1fd9660d42c578cd", "fields": {"nom_de_la_commune": "ANNOIX", "libell_d_acheminement": "ANNOIX", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18006"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d322f80e7763d0f5504645f549d70ed89ae5c7", "fields": {"nom_de_la_commune": "ARCOMPS", "libell_d_acheminement": "ARCOMPS", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18009"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61449b5917147393872c239c74915a58459ba821", "fields": {"code_postal": "18200", "code_commune_insee": "18009", "libell_d_acheminement": "ARCOMPS", "ligne_5": "FOSSE NOUVELLE", "nom_de_la_commune": "ARCOMPS", "coordonnees_gps": [46.7360453328, 2.4965207851]}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a7ff694489f67adf38655f8fd13cb6a2d677815", "fields": {"nom_de_la_commune": "ARPHEUILLES", "libell_d_acheminement": "ARPHEUILLES", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18013"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cf01dcd7cf6abe0304533b0e1e0d4e1fcf56730", "fields": {"nom_de_la_commune": "AZY", "libell_d_acheminement": "AZY", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18019"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcda1cf6e4cb170adda54669841edc55fe7947dd", "fields": {"nom_de_la_commune": "BESSAIS LE FROMENTAL", "libell_d_acheminement": "BESSAIS LE FROMENTAL", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18029"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e1dca35c3b75c5d3bc0cfba247f44d50b3b9b88", "fields": {"nom_de_la_commune": "BOUZAIS", "libell_d_acheminement": "BOUZAIS", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18034"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e68abab394a64984ac903c2abf4219dbcac1a6ed", "fields": {"nom_de_la_commune": "BRUERE ALLICHAMPS", "libell_d_acheminement": "BRUERE ALLICHAMPS", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18038"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c10e71d602247e5b940f934efc5599bb6432b39c", "fields": {"nom_de_la_commune": "LA CHAPELLE D ANGILLON", "libell_d_acheminement": "LA CHAPELLE D ANGILLON", "code_postal": "18380", "coordonnees_gps": [47.3630668749, 2.41288125218], "code_commune_insee": "18047"}, "geometry": {"type": "Point", "coordinates": [2.41288125218, 47.3630668749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791b96855cb423e5e2a77874d1d0318a810416ee", "fields": {"nom_de_la_commune": "CHARENTONNAY", "libell_d_acheminement": "CHARENTONNAY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18053"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "591d405942c916bc6755808343aef2bcedbed35e", "fields": {"nom_de_la_commune": "CHARLY", "libell_d_acheminement": "CHARLY", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18054"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d95c55e4126f363cd102ef89d0ab78a78075c583", "fields": {"nom_de_la_commune": "LE CHATELET", "libell_d_acheminement": "LE CHATELET", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18059"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce6a1a41dee97a7726733b95f8ccaf60226ac6d", "fields": {"nom_de_la_commune": "CHAUMONT", "libell_d_acheminement": "CHAUMONT", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18060"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64b9782d4ca9a9a3766a2dab764ecfe488a52056", "fields": {"nom_de_la_commune": "CLEMONT", "libell_d_acheminement": "CLEMONT", "code_postal": "18410", "coordonnees_gps": [47.5588785401, 2.35799352242], "code_commune_insee": "18067"}, "geometry": {"type": "Point", "coordinates": [2.35799352242, 47.5588785401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52cb0a1304add96b233bc6e6a017b90ec97c363a", "fields": {"nom_de_la_commune": "COUARGUES", "libell_d_acheminement": "COUARGUES", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18074"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4641192463de5c19ff7d93bdcd060c11e69db94", "fields": {"nom_de_la_commune": "COURS LES BARRES", "libell_d_acheminement": "COURS LES BARRES", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18075"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ada9fd2e2c5e112c6d1c2820d91f80bd1a27f7a3", "fields": {"nom_de_la_commune": "DAMPIERRE EN GRACAY", "libell_d_acheminement": "DAMPIERRE EN GRACAY", "code_postal": "18310", "coordonnees_gps": [47.1584535888, 1.87917805896], "code_commune_insee": "18085"}, "geometry": {"type": "Point", "coordinates": [1.87917805896, 47.1584535888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80eca25b2714d85bd92ed69751c809be074197e4", "fields": {"nom_de_la_commune": "GRON", "libell_d_acheminement": "GRON", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18105"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da9d3b5eb2b3922a7463d6c69f21943f5abf9e62", "fields": {"nom_de_la_commune": "LA GROUTTE", "libell_d_acheminement": "LA GROUTTE", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18107"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb164275a864026e3078cf976b218ad1a9779d8", "fields": {"nom_de_la_commune": "IVOY LE PRE", "libell_d_acheminement": "IVOY LE PRE", "code_postal": "18380", "coordonnees_gps": [47.3630668749, 2.41288125218], "code_commune_insee": "18115"}, "geometry": {"type": "Point", "coordinates": [2.41288125218, 47.3630668749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ca7faa4a9026fa7106b5713b75cb2769c202056", "fields": {"nom_de_la_commune": "JARS", "libell_d_acheminement": "JARS", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18117"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53beed2859caeea4244fffdd79008103e7ea35c6", "fields": {"nom_de_la_commune": "JOUET SUR L AUBOIS", "libell_d_acheminement": "JOUET SUR L AUBOIS", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18118"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d67976b8edb8d6bb498ff37f2392d95921293a76", "fields": {"nom_de_la_commune": "LAZENAY", "libell_d_acheminement": "LAZENAY", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18124"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d84ab1db3ccb2b22ee20c212fde6448167a58ba", "fields": {"nom_de_la_commune": "MASSAY", "libell_d_acheminement": "MASSAY", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18140"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6b037dea41cdb6b8a00679393bfa4c397adbfb", "fields": {"nom_de_la_commune": "MEILLANT", "libell_d_acheminement": "MEILLANT", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18142"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "003b3073ca35c2624cc8f49bdd740105b0f449fa", "fields": {"nom_de_la_commune": "MENETOU SALON", "libell_d_acheminement": "MENETOU SALON", "code_postal": "18510", "coordonnees_gps": [47.241985668, 2.49068531235], "code_commune_insee": "18145"}, "geometry": {"type": "Point", "coordinates": [2.49068531235, 47.241985668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f204fe37803079a6b0291d40eddb17c6d6bd360", "fields": {"nom_de_la_commune": "MENETREOL SOUS SANCERRE", "libell_d_acheminement": "MENETREOL SOUS SANCERRE", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18146"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0150937f53a05faf96f62a5d4fc68228e68737b", "fields": {"nom_de_la_commune": "MERY SUR CHER", "libell_d_acheminement": "MERY SUR CHER", "code_postal": "18100", "coordonnees_gps": [47.2360896302, 2.02349855043], "code_commune_insee": "18150"}, "geometry": {"type": "Point", "coordinates": [2.02349855043, 47.2360896302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5da08f1354e7f3090cd8434b485d3152ed55a00", "fields": {"nom_de_la_commune": "MORNAY BERRY", "libell_d_acheminement": "MORNAY BERRY", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18154"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "520b0fd0fd136476b9c981c10e8ec83802e4485d", "fields": {"nom_de_la_commune": "NEUILLY EN DUN", "libell_d_acheminement": "NEUILLY EN DUN", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18161"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2d8361f414036d24c8b3a934d3f5463c9f976d1", "fields": {"nom_de_la_commune": "NEUILLY EN SANCERRE", "libell_d_acheminement": "NEUILLY EN SANCERRE", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18162"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823185d5ce339acaba7fd3d76e0e5e8fe3dec5f4", "fields": {"nom_de_la_commune": "PARNAY", "libell_d_acheminement": "PARNAY", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18177"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3afe3843dafaed20f846c2a63c0ba0119a029fbb", "fields": {"nom_de_la_commune": "PIGNY", "libell_d_acheminement": "PIGNY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18179"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13ff25dd4603461a680852d3d03cb8d429fdea1", "fields": {"nom_de_la_commune": "PLAIMPIED GIVAUDINS", "libell_d_acheminement": "PLAIMPIED GIVAUDINS", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18180"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d90defa7e11d2578b7b9e9ada8ebb451df327b", "fields": {"nom_de_la_commune": "PRECY", "libell_d_acheminement": "PRECY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18184"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b60c26f79aff9e149350e7cd7c093f4d8c708b", "fields": {"nom_de_la_commune": "PRESLY", "libell_d_acheminement": "PRESLY", "code_postal": "18380", "coordonnees_gps": [47.3630668749, 2.41288125218], "code_commune_insee": "18185"}, "geometry": {"type": "Point", "coordinates": [2.41288125218, 47.3630668749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956a5fef335684188109847686d03f27b803628c", "fields": {"nom_de_la_commune": "QUANTILLY", "libell_d_acheminement": "QUANTILLY", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18189"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28b6a6d772bf689a72e2a9bc3c47a2589f0e31a4", "fields": {"nom_de_la_commune": "ST FLORENT SUR CHER", "libell_d_acheminement": "ST FLORENT SUR CHER", "code_postal": "18400", "coordonnees_gps": [46.9642447985, 2.24452322455], "code_commune_insee": "18207"}, "geometry": {"type": "Point", "coordinates": [2.24452322455, 46.9642447985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "493545a0646dc4f6ca7bf7e172ea9d16f57d2347", "fields": {"nom_de_la_commune": "ST GERMAIN DU PUY", "libell_d_acheminement": "ST GERMAIN DU PUY", "code_postal": "18390", "coordonnees_gps": [47.0877811378, 2.52674457802], "code_commune_insee": "18213"}, "geometry": {"type": "Point", "coordinates": [2.52674457802, 47.0877811378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30d6da245bbae93848999c3f0ec98f6ac3404e36", "fields": {"nom_de_la_commune": "ST HILAIRE DE GONDILLY", "libell_d_acheminement": "ST HILAIRE DE GONDILLY", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18215"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb159d3d4bcf88c05c8665cb816d7985a7ca225d", "fields": {"code_postal": "18350", "code_commune_insee": "18215", "libell_d_acheminement": "ST HILAIRE DE GONDILLY", "ligne_5": "ENTROIS", "nom_de_la_commune": "ST HILAIRE DE GONDILLY", "coordonnees_gps": [46.951233561, 2.80144382232]}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a50725cc285c17a5e8170e30bcb5e2fde653e60", "fields": {"nom_de_la_commune": "ST HILAIRE EN LIGNIERES", "libell_d_acheminement": "ST HILAIRE EN LIGNIERES", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18216"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521c8544a4e381450651a2bab3584549220a45d4", "fields": {"nom_de_la_commune": "ST LAURENT", "libell_d_acheminement": "ST LAURENT", "code_postal": "18330", "coordonnees_gps": [47.3185099523, 2.20935359445], "code_commune_insee": "18219"}, "geometry": {"type": "Point", "coordinates": [2.20935359445, 47.3185099523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d047bfe3537df93c84f218fc872ad08476de3a", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18236"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46fbfa99075d28075e01007d86dcb848760ce5bc", "fields": {"nom_de_la_commune": "SANCERRE", "libell_d_acheminement": "SANCERRE", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18241"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cca944c8eb2fe662d943fa5a9e3efce08a91ef1f", "fields": {"nom_de_la_commune": "SAVIGNY EN SEPTAINE", "libell_d_acheminement": "SAVIGNY EN SEPTAINE", "code_postal": "18390", "coordonnees_gps": [47.0877811378, 2.52674457802], "code_commune_insee": "18247"}, "geometry": {"type": "Point", "coordinates": [2.52674457802, 47.0877811378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96623a4775ab561d4005e65e1e805e0a5392c113", "fields": {"nom_de_la_commune": "SOULANGIS", "libell_d_acheminement": "SOULANGIS", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18253"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b66ab7cc9909e861d04cf2fc298c8d565b062f", "fields": {"nom_de_la_commune": "TENDRON", "libell_d_acheminement": "TENDRON", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18260"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5363541de6e1bfc4335c84d533b79052e7539080", "fields": {"nom_de_la_commune": "TOUCHAY", "libell_d_acheminement": "TOUCHAY", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18266"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "478c112ed56c972c18887f5da4c41947a5edc38a", "fields": {"code_postal": "18190", "code_commune_insee": "18270", "libell_d_acheminement": "VALLENAY", "ligne_5": "BIGNY VALLENAY", "nom_de_la_commune": "VALLENAY", "coordonnees_gps": [46.8350681426, 2.36022988221]}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc1237d6cbe9f0f873730de2f9e4db0a953171f", "fields": {"nom_de_la_commune": "VEAUGUES", "libell_d_acheminement": "VEAUGUES", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18272"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1503548a87b5eb89fb69777357e5e4d8c34cebd", "fields": {"nom_de_la_commune": "VERNAIS", "libell_d_acheminement": "VERNAIS", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18276"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3034af95ccec0860c5055cd98fd5672c0070e94e", "fields": {"nom_de_la_commune": "VIGNOUX SOUS LES AIX", "libell_d_acheminement": "VIGNOUX SOUS LES AIX", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18280"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffbebdf6a309ea9c9666b1db418ed48d25d0b913", "fields": {"nom_de_la_commune": "VILLEQUIERS", "libell_d_acheminement": "VILLEQUIERS", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18286"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30556a197c26597fb77a67b044d0e788b3deb758", "fields": {"nom_de_la_commune": "VOUZERON", "libell_d_acheminement": "VOUZERON", "code_postal": "18330", "coordonnees_gps": [47.3185099523, 2.20935359445], "code_commune_insee": "18290"}, "geometry": {"type": "Point", "coordinates": [2.20935359445, 47.3185099523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf76cd11b9fe366f59856edec89cdd76596037e9", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "19390", "coordonnees_gps": [45.4299855469, 1.84010426124], "code_commune_insee": "19020"}, "geometry": {"type": "Point", "coordinates": [1.84010426124, 45.4299855469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aef32a2d73b62abf8c95f60c8c349664ef33b5f", "fields": {"nom_de_la_commune": "BRIVEZAC", "libell_d_acheminement": "BRIVEZAC", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19032"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eda1b98db46e2e48b96931091c445a2ae70c8930", "fields": {"nom_de_la_commune": "BUGEAT", "libell_d_acheminement": "BUGEAT", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19033"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1092113d573b8185db5eb0a1032853f76d31dcc4", "fields": {"nom_de_la_commune": "CHAMBERET", "libell_d_acheminement": "CHAMBERET", "code_postal": "19370", "coordonnees_gps": [45.5888302854, 1.72130640352], "code_commune_insee": "19036"}, "geometry": {"type": "Point", "coordinates": [1.72130640352, 45.5888302854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8beca841538ddb9abef43def134d2a55f47a0c4c", "fields": {"nom_de_la_commune": "CHAMEYRAT", "libell_d_acheminement": "CHAMEYRAT", "code_postal": "19330", "coordonnees_gps": [45.2774600558, 1.65838820849], "code_commune_insee": "19038"}, "geometry": {"type": "Point", "coordinates": [1.65838820849, 45.2774600558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f421d4fbbb4c8f90957cd485a67165075baaefff", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX SAINTS", "libell_d_acheminement": "LA CHAPELLE AUX SAINTS", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19044"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206ee0223ec1c0ee9cdf123e7ffcef5a20f45f85", "fields": {"nom_de_la_commune": "CHAPELLE SPINASSE", "libell_d_acheminement": "CHAPELLE SPINASSE", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19046"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "836a2a2f1c6c59ff86839e1fa10815b1dcb1837a", "fields": {"nom_de_la_commune": "CLERGOUX", "libell_d_acheminement": "CLERGOUX", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19056"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba01a84ccf277f65b76f6f8e272eade74d522065", "fields": {"nom_de_la_commune": "COMBRESSOL", "libell_d_acheminement": "COMBRESSOL", "code_postal": "19250", "coordonnees_gps": [45.5327331418, 2.12561107257], "code_commune_insee": "19058"}, "geometry": {"type": "Point", "coordinates": [2.12561107257, 45.5327331418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0ca0cc04741f4b565e11c035aeaa28a4135047", "fields": {"nom_de_la_commune": "CORREZE", "libell_d_acheminement": "CORREZE", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19062"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de79bbf1bb43a64bb349ab2cf8cf7078548e2919", "fields": {"nom_de_la_commune": "DAMPNIAT", "libell_d_acheminement": "DAMPNIAT", "code_postal": "19360", "coordonnees_gps": [45.1545428877, 1.60311872412], "code_commune_insee": "19068"}, "geometry": {"type": "Point", "coordinates": [1.60311872412, 45.1545428877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc28f4dfaf4abbbf92278200cfccc288764494a9", "fields": {"nom_de_la_commune": "DAVIGNAC", "libell_d_acheminement": "DAVIGNAC", "code_postal": "19250", "coordonnees_gps": [45.5327331418, 2.12561107257], "code_commune_insee": "19071"}, "geometry": {"type": "Point", "coordinates": [2.12561107257, 45.5327331418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea047e81c14a063f9efe52b10f5807455f87802", "fields": {"nom_de_la_commune": "L EGLISE AUX BOIS", "libell_d_acheminement": "L EGLISE AUX BOIS", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19074"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e37f2dbd81a5c57efc114e7016811727b54df5", "fields": {"nom_de_la_commune": "ESPARTIGNAC", "libell_d_acheminement": "ESPARTIGNAC", "code_postal": "19140", "coordonnees_gps": [45.4534244824, 1.58484255236], "code_commune_insee": "19076"}, "geometry": {"type": "Point", "coordinates": [1.58484255236, 45.4534244824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03288ff49690cf1bdffe3f5473f79d1ec40bd4f9", "fields": {"nom_de_la_commune": "EYREIN", "libell_d_acheminement": "EYREIN", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19081"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c063bfc2a15761d83192701a2c135e097728c99", "fields": {"nom_de_la_commune": "GUMOND", "libell_d_acheminement": "GUMOND", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19090"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22de82dc7179a7122d5256063328c5f03e309d25", "fields": {"nom_de_la_commune": "AUZOUVILLE SUR RY", "libell_d_acheminement": "AUZOUVILLE SUR RY", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76046"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48b714321c8e0eb12be13aa6ce6ecd41a612002", "fields": {"nom_de_la_commune": "AUZOUVILLE SUR SAANE", "libell_d_acheminement": "AUZOUVILLE SUR SAANE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76047"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dac1da47a27ac8b2297186c973ed5454064f934", "fields": {"nom_de_la_commune": "BAILLOLET", "libell_d_acheminement": "BAILLOLET", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76053"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9ace61b5290233a5a24ae26b3b68ee84c31f0b", "fields": {"nom_de_la_commune": "BAONS LE COMTE", "libell_d_acheminement": "BAONS LE COMTE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76055"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abd7fe233884aba480e2efe5cafdd216ffc96125", "fields": {"nom_de_la_commune": "BEAUBEC LA ROSIERE", "libell_d_acheminement": "BEAUBEC LA ROSIERE", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76060"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f91060421b9391763a2034a015ac5811f9a3a6", "fields": {"nom_de_la_commune": "BEAUREPAIRE", "libell_d_acheminement": "BEAUREPAIRE", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76064"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd4092d46cb594b207753ddfce4a7645eb39a8c", "fields": {"nom_de_la_commune": "BEAUSSAULT", "libell_d_acheminement": "BEAUSSAULT", "code_postal": "76870", "coordonnees_gps": [49.670350783, 1.60614437004], "code_commune_insee": "76065"}, "geometry": {"type": "Point", "coordinates": [1.60614437004, 49.670350783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8d94f88b5beb34c06ef1f8520f15491cb22258d", "fields": {"nom_de_la_commune": "BEC DE MORTAGNE", "libell_d_acheminement": "BEC DE MORTAGNE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76068"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e94b0d30cb1197cf79f63730169726bf5d7d9de", "fields": {"nom_de_la_commune": "BENARVILLE", "libell_d_acheminement": "BENARVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76076"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2adb1e8f98da6b9442e43ad074296605b2d67da5", "fields": {"nom_de_la_commune": "BENOUVILLE", "libell_d_acheminement": "BENOUVILLE", "code_postal": "76790", "coordonnees_gps": [49.697742168, 0.254535671829], "code_commune_insee": "76079"}, "geometry": {"type": "Point", "coordinates": [0.254535671829, 49.697742168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ee9e69046ae3005b326255f718d488feef96c87", "fields": {"nom_de_la_commune": "BERVILLE SUR SEINE", "libell_d_acheminement": "BERVILLE SUR SEINE", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76088"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f2c4b1f9b899829ca842ac812f6eb1b693a5b4", "fields": {"nom_de_la_commune": "BIVILLE LA BAIGNARDE", "libell_d_acheminement": "BIVILLE LA BAIGNARDE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76096"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "185147c3499c0668bbd8aec0e3f7c2d5f720ecfa", "fields": {"nom_de_la_commune": "BIVILLE LA RIVIERE", "libell_d_acheminement": "BIVILLE LA RIVIERE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76097"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ebf7492971ba5b8950c9db221e2fea3c09753aa", "fields": {"nom_de_la_commune": "BLACQUEVILLE", "libell_d_acheminement": "BLACQUEVILLE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76099"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f588243d4193d8f5376ad0f518f1512f39323bc", "fields": {"nom_de_la_commune": "BONSECOURS", "libell_d_acheminement": "BONSECOURS", "code_postal": "76240", "coordonnees_gps": [49.4050423755, 1.13866977273], "code_commune_insee": "76103"}, "geometry": {"type": "Point", "coordinates": [1.13866977273, 49.4050423755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a97bc529ff4312805ef027e307f7a463e27d44", "fields": {"nom_de_la_commune": "BOIS D ENNEBOURG", "libell_d_acheminement": "BOIS D ENNEBOURG", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76106"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8bdab97226e43a436628d7d14c118e80a912399", "fields": {"nom_de_la_commune": "BOIS HEROULT", "libell_d_acheminement": "BOIS HEROULT", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76109"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a2cdbc546ccb2636f24b1f5148124889f7d0131", "fields": {"nom_de_la_commune": "BOIS HIMONT", "libell_d_acheminement": "BOIS HIMONT", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76110"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a50249cf5e146f2c8cbcb48efb4a3fb42cd40279", "fields": {"nom_de_la_commune": "BORDEAUX ST CLAIR", "libell_d_acheminement": "BORDEAUX ST CLAIR", "code_postal": "76790", "coordonnees_gps": [49.697742168, 0.254535671829], "code_commune_insee": "76117"}, "geometry": {"type": "Point", "coordinates": [0.254535671829, 49.697742168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a714220da65b7524ade2600504d771c8bfd606", "fields": {"nom_de_la_commune": "BOSVILLE", "libell_d_acheminement": "BOSVILLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76128"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e72be9674b98aa4c6f91106dc8d498465655c916", "fields": {"nom_de_la_commune": "LE BOURG DUN", "libell_d_acheminement": "LE BOURG DUN", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76133"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e274b7dd22d36a8d2f22a0dbb7e513e17eb66f54", "fields": {"nom_de_la_commune": "BRACHY", "libell_d_acheminement": "BRACHY", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76136"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b3330ae168ade64160437264d1b1a0c78b1b5e6", "fields": {"nom_de_la_commune": "BUCHY", "libell_d_acheminement": "BUCHY", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76146"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e7c333e587550f1f235553ac401b3f4cc43c19", "fields": {"nom_de_la_commune": "BURES EN BRAY", "libell_d_acheminement": "BURES EN BRAY", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76148"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2617066193b741490ca297fb26b40bf1ad557220", "fields": {"nom_de_la_commune": "CANEHAN", "libell_d_acheminement": "CANEHAN", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76155"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa96441551f8ef70a5ad99d8428aec36b15e2227", "fields": {"nom_de_la_commune": "CARVILLE LA FOLLETIERE", "libell_d_acheminement": "CARVILLE LA FOLLETIERE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76160"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12bb5e21f81d656c62b51e070d52437791aa1082", "fields": {"nom_de_la_commune": "CARVILLE POT DE FER", "libell_d_acheminement": "CARVILLE POT DE FER", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76161"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d99f1305defba3f37fcf4ac260cf80ce9ba7daf", "fields": {"nom_de_la_commune": "LE CATELIER", "libell_d_acheminement": "LE CATELIER", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76162"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b47e5a3797faf3a8cbb8b142e5432232fc498fe3", "fields": {"nom_de_la_commune": "CATENAY", "libell_d_acheminement": "CATENAY", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76163"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ae91d9b1b31195ff788096f469196bd8a76404", "fields": {"nom_de_la_commune": "CAUVILLE SUR MER", "libell_d_acheminement": "CAUVILLE SUR MER", "code_postal": "76930", "coordonnees_gps": [49.5712629659, 0.127046049266], "code_commune_insee": "76167"}, "geometry": {"type": "Point", "coordinates": [0.127046049266, 49.5712629659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645310ee9238c3a25bd42455cc059b3b94ea9837", "fields": {"nom_de_la_commune": "LA CHAPELLE DU BOURGAY", "libell_d_acheminement": "LA CHAPELLE DU BOURGAY", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76170"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7063a107c9f28a4701974899407c290104153ca", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR DUN", "libell_d_acheminement": "LA CHAPELLE SUR DUN", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76172"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a04e98b8c0787dc00be45646d76ae4398a5fe59", "fields": {"nom_de_la_commune": "CLAIS", "libell_d_acheminement": "CLAIS", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76175"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9a9879520f744bc488374c2b7cad3a2717eef5c", "fields": {"nom_de_la_commune": "CLEVILLE", "libell_d_acheminement": "CLEVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76181"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "789ef43adee113d8597d90e9730adbc3b406f5a2", "fields": {"nom_de_la_commune": "CRIQUETOT LE MAUCONDUIT", "libell_d_acheminement": "CRIQUETOT LE MAUCONDUIT", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76195"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03cbd9b48c2b2caa8c241f26aa6ea8e3277097e", "fields": {"nom_de_la_commune": "CRIQUETOT SUR LONGUEVILLE", "libell_d_acheminement": "CRIQUETOT SUR LONGUEVILLE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76197"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a332f2e33b2aed694f47ae26fd09dcee7d8b26d", "fields": {"nom_de_la_commune": "CROIXDALLE", "libell_d_acheminement": "CROIXDALLE", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76202"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b033cd860b1125e50adcf99db1e9006a7caa358", "fields": {"nom_de_la_commune": "DAMPIERRE EN BRAY", "libell_d_acheminement": "DAMPIERRE EN BRAY", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76209"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf4264bd9f3f776c4ba02c9c8d5b4e4c7ab54ab", "fields": {"nom_de_la_commune": "DARNETAL", "libell_d_acheminement": "DARNETAL", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76212"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e8cce3ac7d62cd1d3a47ed9b32f8b5c75a213a", "fields": {"nom_de_la_commune": "DOUVREND", "libell_d_acheminement": "DOUVREND", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76220"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1c5b1f7c73361944a780a08f9c43c051bdacab", "fields": {"nom_de_la_commune": "DUCLAIR", "libell_d_acheminement": "DUCLAIR", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76222"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806104c81095c0b876a6b21c812543dcfc50059b", "fields": {"nom_de_la_commune": "ECRETTEVILLE LES BAONS", "libell_d_acheminement": "ECRETTEVILLE LES BAONS", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76225"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "728c26eb3a4b5d6b1788a0c100b507aa135388db", "fields": {"nom_de_la_commune": "ELETOT", "libell_d_acheminement": "ELETOT", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76232"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06c55035f487d9d65a2ecf5b7bff1f4e535d837", "fields": {"nom_de_la_commune": "ENVRONVILLE", "libell_d_acheminement": "ENVRONVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76236"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fe447cb12d03b87fd1705b6fe26b7795c868d53", "fields": {"nom_de_la_commune": "EPINAY SUR DUCLAIR", "libell_d_acheminement": "EPINAY SUR DUCLAIR", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76237"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7842942ecf367bbcae5084588a755d8831b1c0a", "fields": {"nom_de_la_commune": "EPRETOT", "libell_d_acheminement": "EPRETOT", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76239"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9389a01cb51e4063fd31122f4792e9784e677cb1", "fields": {"nom_de_la_commune": "ESLETTES", "libell_d_acheminement": "ESLETTES", "code_postal": "76710", "coordonnees_gps": [49.5480184569, 1.08802152672], "code_commune_insee": "76245"}, "geometry": {"type": "Point", "coordinates": [1.08802152672, 49.5480184569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fceeaeb6f15b20f6bc35625ca6434668ffe74343", "fields": {"nom_de_la_commune": "EU", "libell_d_acheminement": "EU", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76255"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde42ab30d99a304ca019fcd608b3a585c206dfa", "fields": {"nom_de_la_commune": "FESQUES", "libell_d_acheminement": "FESQUES", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76262"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f4c98d2bf6c2fbd76c6cc554b3738fc1adf4fda", "fields": {"nom_de_la_commune": "LA FEUILLIE", "libell_d_acheminement": "LA FEUILLIE", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76263"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "357c36940698301e2db9c04e35292c17f5eed7d6", "fields": {"nom_de_la_commune": "FONGUEUSEMARE", "libell_d_acheminement": "FONGUEUSEMARE", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76268"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae43ac2b80bc71b9e5baa67639964a6f39e82c1e", "fields": {"code_postal": "76190", "code_commune_insee": "76289", "libell_d_acheminement": "ST MARTIN DE L IF", "ligne_5": "BETTEVILLE", "nom_de_la_commune": "ST MARTIN DE L IF", "coordonnees_gps": [49.6137220579, 0.75005615397]}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9896da1c8618f8ddbc4d74a1b9066a26e9ab925", "fields": {"nom_de_la_commune": "GANZEVILLE", "libell_d_acheminement": "GANZEVILLE", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76298"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c0e9303fdd45fa4768ceba0dcc8b02a6ac1ce28", "fields": {"nom_de_la_commune": "GERVILLE", "libell_d_acheminement": "GERVILLE", "code_postal": "76790", "coordonnees_gps": [49.697742168, 0.254535671829], "code_commune_insee": "76300"}, "geometry": {"type": "Point", "coordinates": [0.254535671829, 49.697742168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d89444171807e2f3d82c18d1149de4718c22cdb", "fields": {"nom_de_la_commune": "GONNEVILLE SUR SCIE", "libell_d_acheminement": "GONNEVILLE SUR SCIE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76308"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47ef311c93789411a7314fa063e58a17f5a93ae3", "fields": {"nom_de_la_commune": "GOUPILLIERES", "libell_d_acheminement": "GOUPILLIERES", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76311"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2fec74f205311f717e9adfd7a99648e879835c0", "fields": {"nom_de_la_commune": "GRAINVILLE SUR RY", "libell_d_acheminement": "GRAINVILLE SUR RY", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76316"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1ab46ef20f54649987612981dd2d45e57eda9b8", "fields": {"nom_de_la_commune": "LE GRAND QUEVILLY", "libell_d_acheminement": "LE GRAND QUEVILLY", "code_postal": "76120", "coordonnees_gps": [49.40932157, 1.03989474856], "code_commune_insee": "76322"}, "geometry": {"type": "Point", "coordinates": [1.03989474856, 49.40932157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e120bdc7c5da58b8d5d69546555afe9e9410dc61", "fields": {"nom_de_la_commune": "GRAVAL", "libell_d_acheminement": "GRAVAL", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76323"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "664616803dbe4ed214b0c0e1fb899cb978998dac", "fields": {"nom_de_la_commune": "GRUGNY", "libell_d_acheminement": "GRUGNY", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76331"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5617051c49e85c1b8ea67776b6527299180c769c", "fields": {"nom_de_la_commune": "GRUMESNIL", "libell_d_acheminement": "GRUMESNIL", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76332"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f604846534561aef2b8a7669a48ce44f4b6c8d63", "fields": {"nom_de_la_commune": "LA HALLOTIERE", "libell_d_acheminement": "LA HALLOTIERE", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76338"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ebbbbd6614ab59b38928943d880a07357b3057", "fields": {"nom_de_la_commune": "HARCANVILLE", "libell_d_acheminement": "HARCANVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76340"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dedee93797f3d6dff526c95041853b6303fd752", "fields": {"nom_de_la_commune": "HARFLEUR", "libell_d_acheminement": "HARFLEUR", "code_postal": "76700", "coordonnees_gps": [49.4973035255, 0.236903290282], "code_commune_insee": "76341"}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa46c81af53ce6d623162798f6917c6a587ef69c", "fields": {"nom_de_la_commune": "HAUDRICOURT", "libell_d_acheminement": "HAUDRICOURT", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76344"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0f284a731db392e5dac4c8645651cab48a787cb", "fields": {"nom_de_la_commune": "HAUTOT LE VATOIS", "libell_d_acheminement": "HAUTOT LE VATOIS", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76347"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb3bc84bfeffc455ab1adc9e07cb7ebe9b010e3e", "fields": {"nom_de_la_commune": "HERMEVILLE", "libell_d_acheminement": "HERMEVILLE", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76357"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b312644fc7e7e7b6f74a4ec000db1f1c38c8175", "fields": {"nom_de_la_commune": "HEUGLEVILLE SUR SCIE", "libell_d_acheminement": "HEUGLEVILLE SUR SCIE", "code_postal": "76720", "coordonnees_gps": [49.7264566235, 1.11846457377], "code_commune_insee": "76360"}, "geometry": {"type": "Point", "coordinates": [1.11846457377, 49.7264566235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a3bbdab59aaed56c801a07a06587a78fe332c47", "fields": {"nom_de_la_commune": "HODENG HODENGER", "libell_d_acheminement": "HODENG HODENGER", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76364"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72c0d599d2d3b37b676b1c612b2243466d19e9a", "fields": {"nom_de_la_commune": "LE HOULME", "libell_d_acheminement": "LE HOULME", "code_postal": "76770", "coordonnees_gps": [49.5108089037, 1.07268488267], "code_commune_insee": "76366"}, "geometry": {"type": "Point", "coordinates": [1.07268488267, 49.5108089037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "487341193857d845e3d35dcecf85cd371488aff3", "fields": {"nom_de_la_commune": "ILLOIS", "libell_d_acheminement": "ILLOIS", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76372"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a126034502bc9258f34d8ddf3ddcd6d711ee31", "fields": {"nom_de_la_commune": "LAMBERVILLE", "libell_d_acheminement": "LAMBERVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76379"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b2a057856c844c18a988587397c9553bdf36d0", "fields": {"nom_de_la_commune": "LESTANVILLE", "libell_d_acheminement": "LESTANVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76383"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de0eaebbeb93bea5e5cadf0c852dbccf248e6bc", "fields": {"nom_de_la_commune": "LINTOT", "libell_d_acheminement": "LINTOT", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76388"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "597612809e41981b9d2744bdd1c573d97af2d431", "fields": {"nom_de_la_commune": "LES LOGES", "libell_d_acheminement": "LES LOGES", "code_postal": "76790", "coordonnees_gps": [49.697742168, 0.254535671829], "code_commune_insee": "76390"}, "geometry": {"type": "Point", "coordinates": [0.254535671829, 49.697742168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d3170e59d78d17396daa4d842d225aace19534", "fields": {"nom_de_la_commune": "LONGUEIL", "libell_d_acheminement": "LONGUEIL", "code_postal": "76860", "coordonnees_gps": [49.8805230118, 0.952829289971], "code_commune_insee": "76395"}, "geometry": {"type": "Point", "coordinates": [0.952829289971, 49.8805230118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29e8157b0c0c6939f2f3c16f7b6f74f74d39ed46", "fields": {"code_postal": "76940", "code_commune_insee": "76401", "libell_d_acheminement": "ARELAUNE EN SEINE", "ligne_5": "ST NICOLAS DE BLIQUETUIT", "nom_de_la_commune": "ARELAUNE EN SEINE", "coordonnees_gps": [49.4548266435, 0.725950851811]}, "geometry": {"type": "Point", "coordinates": [0.725950851811, 49.4548266435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "decd2117f7cf4240d054308c25435e5f41b715a4", "fields": {"nom_de_la_commune": "MALAUNAY", "libell_d_acheminement": "MALAUNAY", "code_postal": "76770", "coordonnees_gps": [49.5108089037, 1.07268488267], "code_commune_insee": "76402"}, "geometry": {"type": "Point", "coordinates": [1.07268488267, 49.5108089037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2d7b0c84e04c6cbd60cf5d9ba5f9d03af5ee731", "fields": {"code_postal": "76150", "code_commune_insee": "76410", "libell_d_acheminement": "MAROMME", "ligne_5": "LA MAINE", "nom_de_la_commune": "MAROMME", "coordonnees_gps": [49.4875793097, 1.0078796915]}, "geometry": {"type": "Point", "coordinates": [1.0078796915, 49.4875793097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d2ad5896eb75f5b000ebeba555436d1e3379886", "fields": {"nom_de_la_commune": "MARTAINVILLE EPREVILLE", "libell_d_acheminement": "MARTAINVILLE EPREVILLE", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76412"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1ba653d97da6d2619bbdd2ad0ec65a758ffd431", "fields": {"nom_de_la_commune": "MELAMARE", "libell_d_acheminement": "MELAMARE", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76421"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc146dfbdfdaa83997f24c11f7fbae8a9e114d4c", "fields": {"nom_de_la_commune": "MESANGUEVILLE", "libell_d_acheminement": "MESANGUEVILLE", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76426"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad395cb433045ff10f33be2320c656625c08905b", "fields": {"nom_de_la_commune": "MESNIL MAUGER", "libell_d_acheminement": "MESNIL MAUGER", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76432"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26296654ce83589aaee680ded598a706b2ba5234", "fields": {"nom_de_la_commune": "MESNIL RAOUL", "libell_d_acheminement": "MESNIL RAOUL", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76434"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8baf863c5d6e6d14bd273fca116804b192924cbd", "fields": {"nom_de_la_commune": "LE MESNIL SOUS JUMIEGES", "libell_d_acheminement": "LE MESNIL SOUS JUMIEGES", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76436"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0524ffe8a12f3fbe4f331d8b1c566a18008a6981", "fields": {"nom_de_la_commune": "MONCHY SUR EU", "libell_d_acheminement": "MONCHY SUR EU", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76442"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57b8a00cb808e481a42cee6d87b43d76767fb6be", "fields": {"nom_de_la_commune": "MONTIVILLIERS", "libell_d_acheminement": "MONTIVILLIERS", "code_postal": "76290", "coordonnees_gps": [49.5514571259, 0.184758051625], "code_commune_insee": "76447"}, "geometry": {"type": "Point", "coordinates": [0.184758051625, 49.5514571259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5b36b73785bc035b8d9b5cc52f0dcfe04316f9", "fields": {"nom_de_la_commune": "MONTVILLE", "libell_d_acheminement": "MONTVILLE", "code_postal": "76710", "coordonnees_gps": [49.5480184569, 1.08802152672], "code_commune_insee": "76452"}, "geometry": {"type": "Point", "coordinates": [1.08802152672, 49.5480184569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8757f5c7f47eb12f12943ad8276cc11c8be10a8d", "fields": {"nom_de_la_commune": "MORGNY LA POMMERAYE", "libell_d_acheminement": "MORGNY LA POMMERAYE", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76453"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efb8be666106859a106dc69620600fd099169e6", "fields": {"nom_de_la_commune": "MORTEMER", "libell_d_acheminement": "MORTEMER", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76454"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1a73cdf39d6c55459187dd3fd9aca332aa08c6a", "fields": {"nom_de_la_commune": "NOTRE DAME D ALIERMONT", "libell_d_acheminement": "NOTRE DAME D ALIERMONT", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76472"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5118e00f72e775ee7abae068393dda14878631", "fields": {"code_postal": "76170", "code_commune_insee": "76476", "libell_d_acheminement": "PORT JEROME SUR SEINE", "ligne_5": "TOUFFREVILLE LA CABLE", "nom_de_la_commune": "PORT JEROME SUR SEINE", "coordonnees_gps": [49.5137047652, 0.527687035677]}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7521bf41c93e10018c1c9f055830e53132511fa0", "fields": {"code_postal": "76170", "code_commune_insee": "76476", "libell_d_acheminement": "PORT JEROME SUR SEINE", "ligne_5": "TRIQUERVILLE", "nom_de_la_commune": "PORT JEROME SUR SEINE", "coordonnees_gps": [49.5137047652, 0.527687035677]}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e0aa80f21f5175bc0c66c64ae93d2318334cf92", "fields": {"nom_de_la_commune": "ORIVAL", "libell_d_acheminement": "ORIVAL", "code_postal": "76500", "coordonnees_gps": [49.3087517455, 0.955689730263], "code_commune_insee": "76486"}, "geometry": {"type": "Point", "coordinates": [0.955689730263, 49.3087517455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9d3ed7992889b4aa907ddc0f151ac70bfbc18f", "fields": {"nom_de_la_commune": "OSMOY ST VALERY", "libell_d_acheminement": "OSMOY ST VALERY", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76487"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbbbee53941a471df50f0a0f63164d42ab57b5b4", "fields": {"nom_de_la_commune": "POMMEREVAL", "libell_d_acheminement": "POMMEREVAL", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76506"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8ecf0de05b85e4b043421bfca60e753d55bf78", "fields": {"nom_de_la_commune": "PUISENVAL", "libell_d_acheminement": "PUISENVAL", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76512"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "217debafda661c5d4ffc6c69e5be73fd88158186", "fields": {"nom_de_la_commune": "QUIBERVILLE", "libell_d_acheminement": "QUIBERVILLE", "code_postal": "76860", "coordonnees_gps": [49.8805230118, 0.952829289971], "code_commune_insee": "76515"}, "geometry": {"type": "Point", "coordinates": [0.952829289971, 49.8805230118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d86b7898e291a8615426cd5cefa05f581e3dc2d", "fields": {"nom_de_la_commune": "QUIEVRECOURT", "libell_d_acheminement": "QUIEVRECOURT", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76516"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b63afe7c0da3795d7eafb3f0cdc05729de0f2cd3", "fields": {"nom_de_la_commune": "REBETS", "libell_d_acheminement": "REBETS", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76521"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d844a03986a2323a0499bb31a345d80d0b886e33", "fields": {"nom_de_la_commune": "CANCHY", "libell_d_acheminement": "CANCHY", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14132"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98cdb8872d780aa5f88d3271ed5e89be4c86578b", "fields": {"nom_de_la_commune": "CARCAGNY", "libell_d_acheminement": "CARCAGNY", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14135"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7559fa72544dbd709b23748412255462161bb3e5", "fields": {"nom_de_la_commune": "CARTIGNY L EPINAY", "libell_d_acheminement": "CARTIGNY L EPINAY", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14138"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264937d4e04c62aa03ae3e221e5d36119c6cef17", "fields": {"nom_de_la_commune": "CERNAY", "libell_d_acheminement": "CERNAY", "code_postal": "14290", "coordonnees_gps": [49.0265084607, 0.343255889354], "code_commune_insee": "14147"}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2acd71b4bae76f289bb20051efcdbc1d1ca8f221", "fields": {"nom_de_la_commune": "CHEUX", "libell_d_acheminement": "CHEUX", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14157"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f69490f4105684dba5d49781eb8a21f82b36aa", "fields": {"nom_de_la_commune": "COLLEVILLE SUR MER", "libell_d_acheminement": "COLLEVILLE SUR MER", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14165"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e79cf7c4782e6b6265628574383bbb85044cc387", "fields": {"nom_de_la_commune": "COLOMBELLES", "libell_d_acheminement": "COLOMBELLES", "code_postal": "14460", "coordonnees_gps": [49.1981545161, -0.294952330301], "code_commune_insee": "14167"}, "geometry": {"type": "Point", "coordinates": [-0.294952330301, 49.1981545161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da368b9596dc5d5a4290344e439f7aa8d5f41916", "fields": {"code_postal": "14110", "code_commune_insee": "14174", "libell_d_acheminement": "CONDE EN NORMANDIE", "ligne_5": "PROUSSY", "nom_de_la_commune": "CONDE EN NORMANDIE", "coordonnees_gps": [48.8603879133, -0.538857121596]}, "geometry": {"type": "Point", "coordinates": [-0.538857121596, 48.8603879133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831daa15a5446853bead9714418ba5664ba73455", "fields": {"nom_de_la_commune": "CORMELLES LE ROYAL", "libell_d_acheminement": "CORMELLES LE ROYAL", "code_postal": "14123", "coordonnees_gps": [49.1447730282, -0.352071699287], "code_commune_insee": "14181"}, "geometry": {"type": "Point", "coordinates": [-0.352071699287, 49.1447730282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8825e3d89c7cba4abc0829a0e1a50caf71a89cfa", "fields": {"nom_de_la_commune": "COSSESSEVILLE", "libell_d_acheminement": "COSSESSEVILLE", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14183"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a796f1fba83f33e56c63edf3a1b092063ada1fc8", "fields": {"nom_de_la_commune": "COUDRAY RABUT", "libell_d_acheminement": "COUDRAY RABUT", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14185"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8122dca53e968ad3777360218c3c141c97326ed1", "fields": {"nom_de_la_commune": "COURSON", "libell_d_acheminement": "COURSON", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14192"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7bbf85c41d547eca455c29934bd10d2b095bc61", "fields": {"nom_de_la_commune": "COURVAUDON", "libell_d_acheminement": "COURVAUDON", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14195"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7515ac2ea74b970dc8646847cfa080915b7277e", "fields": {"nom_de_la_commune": "CREVECOEUR EN AUGE", "libell_d_acheminement": "CREVECOEUR EN AUGE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14201"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23a48ab1c9c922f496133bcc6a621b074bad74f1", "fields": {"nom_de_la_commune": "CUSSY", "libell_d_acheminement": "CUSSY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14214"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67a0536c780f1bae0d4af924226f67d25ff1cd5", "fields": {"nom_de_la_commune": "ECRAMMEVILLE", "libell_d_acheminement": "ECRAMMEVILLE", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14235"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4d058a9c8aa161ff804e15a9d779c9279c51d7", "fields": {"nom_de_la_commune": "EPINAY SUR ODON", "libell_d_acheminement": "EPINAY SUR ODON", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14241"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25543ff3796a5f1383b352ebc27e4f6c376e7bde", "fields": {"nom_de_la_commune": "ESTREES LA CAMPAGNE", "libell_d_acheminement": "ESTREES LA CAMPAGNE", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14252"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7611acb1e1d131ea0971727f3ed710485ab9845", "fields": {"nom_de_la_commune": "FALAISE", "libell_d_acheminement": "FALAISE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14258"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa66f5c804949655b604eb049775189ce7f1f727", "fields": {"nom_de_la_commune": "FAUGUERNON", "libell_d_acheminement": "FAUGUERNON", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14260"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965651bf09c47851cf332b7ee0bb23fd2992929d", "fields": {"nom_de_la_commune": "FEUGUEROLLES BULLY", "libell_d_acheminement": "FEUGUEROLLES BULLY", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14266"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3260c09f8ab67638628cd839b5c6a69fd6aa85e", "fields": {"nom_de_la_commune": "LA FOLLETIERE ABENON", "libell_d_acheminement": "LA FOLLETIERE ABENON", "code_postal": "14290", "coordonnees_gps": [49.0265084607, 0.343255889354], "code_commune_insee": "14273"}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4df809c21baffd4bbf98a983b34822496366b2e", "fields": {"nom_de_la_commune": "FOULOGNES", "libell_d_acheminement": "FOULOGNES", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14282"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39cab7d69115ebe8f0d0b090d46ef0293beb98d5", "fields": {"nom_de_la_commune": "FOURCHES", "libell_d_acheminement": "FOURCHES", "code_postal": "14620", "coordonnees_gps": [48.9036116787, -0.0519512119893], "code_commune_insee": "14283"}, "geometry": {"type": "Point", "coordinates": [-0.0519512119893, 48.9036116787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94df0a45d27693f2ef362240aa4e03f5ba8f2b4b", "fields": {"nom_de_la_commune": "FRENOUVILLE", "libell_d_acheminement": "FRENOUVILLE", "code_postal": "14630", "coordonnees_gps": [49.1466089326, -0.248954415466], "code_commune_insee": "14287"}, "geometry": {"type": "Point", "coordinates": [-0.248954415466, 49.1466089326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5708e3aa5b50b7199a4420c943da0aca3ebf50ee", "fields": {"nom_de_la_commune": "LE FRESNE CAMILLY", "libell_d_acheminement": "LE FRESNE CAMILLY", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14288"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "429a85b2600621a827ba99239e88b81c56b24d14", "fields": {"nom_de_la_commune": "GAVRUS", "libell_d_acheminement": "GAVRUS", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14297"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60dfe0ec5f7c93264ba05c07b5d7a79797df8fe2", "fields": {"nom_de_la_commune": "GOUPILLIERES", "libell_d_acheminement": "GOUPILLIERES", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14307"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8284dbdca5f98096c94690d2b6a6cd0d8814cfa7", "fields": {"nom_de_la_commune": "GRANDCAMP MAISY", "libell_d_acheminement": "GRANDCAMP MAISY", "code_postal": "14450", "coordonnees_gps": [49.3773022601, -1.01912663237], "code_commune_insee": "14312"}, "geometry": {"type": "Point", "coordinates": [-1.01912663237, 49.3773022601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f26209397dfaf770f8dd4f42882ef557fdafd7", "fields": {"nom_de_la_commune": "GRIMBOSQ", "libell_d_acheminement": "GRIMBOSQ", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14320"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769dab11b7ce5e413740c6ffa2f74628fceb53d4", "fields": {"nom_de_la_commune": "HERMANVILLE SUR MER", "libell_d_acheminement": "HERMANVILLE SUR MER", "code_postal": "14880", "coordonnees_gps": [49.2791350084, -0.312303050081], "code_commune_insee": "14325"}, "geometry": {"type": "Point", "coordinates": [-0.312303050081, 49.2791350084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cb908985c3b7ae15b2e9bc269f923461e1d89d", "fields": {"nom_de_la_commune": "HONFLEUR", "libell_d_acheminement": "HONFLEUR", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14333"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca2962733cf25bcc0e396d0b4896f3669200b49", "fields": {"nom_de_la_commune": "L HOTELLERIE", "libell_d_acheminement": "L HOTELLERIE", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14334"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36ef3a676d1d55f34526accb3acb4ca5cde5be9", "fields": {"nom_de_la_commune": "HOTOT EN AUGE", "libell_d_acheminement": "HOTOT EN AUGE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14335"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67dd8f0d125bb558491aa6f7bf3e8856e1842697", "fields": {"nom_de_la_commune": "JANVILLE", "libell_d_acheminement": "JANVILLE", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14344"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd8caa79af7b0bca6bb0341bcd77df7cfef64ec4", "fields": {"nom_de_la_commune": "LANGRUNE SUR MER", "libell_d_acheminement": "LANGRUNE SUR MER", "code_postal": "14830", "coordonnees_gps": [49.3126227875, -0.378465555981], "code_commune_insee": "14354"}, "geometry": {"type": "Point", "coordinates": [-0.378465555981, 49.3126227875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c27586975e9c4f520707f699df3be7b4db3f932d", "fields": {"nom_de_la_commune": "LASSY", "libell_d_acheminement": "LASSY", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14357"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40def82b0d6362b17e868680f3129844848ce543", "fields": {"nom_de_la_commune": "LECAUDE", "libell_d_acheminement": "LECAUDE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14359"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8263a4c34abb5da800e56807a510d24d90fbfa23", "fields": {"nom_de_la_commune": "LION SUR MER", "libell_d_acheminement": "LION SUR MER", "code_postal": "14780", "coordonnees_gps": [49.3009660724, -0.333699780071], "code_commune_insee": "14365"}, "geometry": {"type": "Point", "coordinates": [-0.333699780071, 49.3009660724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7c1486558f5939fca70c68a6d69531e3369738d", "fields": {"nom_de_la_commune": "LISIEUX", "libell_d_acheminement": "LISIEUX", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14366"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a861d447bd9ead6b839b22fc4129c40fe9290138", "fields": {"nom_de_la_commune": "LISON", "libell_d_acheminement": "LISON", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14367"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af6c9aa183b0c543f6c6c7fb15577645d044778d", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "BELLOU", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f2ce90fd4f76694b4c718ad137fb6cf965924e3", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LES AUTELS ST BAZILE", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a3f927163ad1f908b8a9926eef9fb7f21a428f7", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LES MOUTIERS HUBERT", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4a672581713b9e689327cd1c90dc80d8fafbd3", "fields": {"code_postal": "14290", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "FAMILLY", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca582d2faa5b3acb80186db8420a6ce8027e673", "fields": {"nom_de_la_commune": "LOUCELLES", "libell_d_acheminement": "LOUCELLES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14380"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2e7872edfe2285671a4b3ae9db4c32dd9f086f9", "fields": {"nom_de_la_commune": "LOUVIERES", "libell_d_acheminement": "LOUVIERES", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14382"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7612dd490548ec4db3002c884b815329c000569d", "fields": {"nom_de_la_commune": "MAIZET", "libell_d_acheminement": "MAIZET", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14393"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b0499b8b92e02e462cbcc5c44fffcee26576b4e", "fields": {"nom_de_la_commune": "LE MESNIL MAUGER", "libell_d_acheminement": "LE MESNIL MAUGER", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14422"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac237460b69e5672cbff95b859ac3c70bccf6408", "fields": {"code_postal": "14270", "code_commune_insee": "14422", "libell_d_acheminement": "LE MESNIL MAUGER", "ligne_5": "STE MARIE AUX ANGLAIS", "nom_de_la_commune": "LE MESNIL MAUGER", "coordonnees_gps": [49.0749683297, -0.0575716776042]}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c2c2bc4bea50a9a3697bc20f000cff72cc2125", "fields": {"nom_de_la_commune": "MONTS EN BESSIN", "libell_d_acheminement": "MONTS EN BESSIN", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14449"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534130f51a2d63cd2f6a01a68e47cf4b4fb42f32", "fields": {"nom_de_la_commune": "MOUEN", "libell_d_acheminement": "MOUEN", "code_postal": "14790", "coordonnees_gps": [49.1541386997, -0.466148094743], "code_commune_insee": "14454"}, "geometry": {"type": "Point", "coordinates": [-0.466148094743, 49.1541386997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc234d7e549b2a9d2354177a2e240fb2c7e5bc57", "fields": {"nom_de_la_commune": "NOROLLES", "libell_d_acheminement": "NOROLLES", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14466"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36be03bb07b9ec5a5b53d45e92980221b3a98f44", "fields": {"nom_de_la_commune": "NORON L ABBAYE", "libell_d_acheminement": "NORON L ABBAYE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14467"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0693aeb0d4726722b1e162ae9265dd7cbde6efab", "fields": {"nom_de_la_commune": "OLENDON", "libell_d_acheminement": "OLENDON", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14476"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e505c4a42fcebd23acfda2fec983b6a7615b4ead", "fields": {"nom_de_la_commune": "ONDEFONTAINE", "libell_d_acheminement": "ONDEFONTAINE", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14477"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad9635aa9ae7f1de245c749b505c44aca44d968", "fields": {"nom_de_la_commune": "ORBEC", "libell_d_acheminement": "ORBEC", "code_postal": "14290", "coordonnees_gps": [49.0265084607, 0.343255889354], "code_commune_insee": "14478"}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ad3d866de46f2b4345f37f06bed3401fb9f285", "fields": {"nom_de_la_commune": "OUFFIERES", "libell_d_acheminement": "OUFFIERES", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14483"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b37a16b90848e1d0d655dff5094134a947744f42", "fields": {"nom_de_la_commune": "OUILLY DU HOULEY", "libell_d_acheminement": "OUILLY DU HOULEY", "code_postal": "14590", "coordonnees_gps": [49.1904396509, 0.349344847336], "code_commune_insee": "14484"}, "geometry": {"type": "Point", "coordinates": [0.349344847336, 49.1904396509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fce2edd57d31395e86c9b75a46b4b8261aca0f0", "fields": {"nom_de_la_commune": "PARFOURU SUR ODON", "libell_d_acheminement": "PARFOURU SUR ODON", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14491"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cf6243bf7803a3826f97c9d8d4b45d52bd65a00", "fields": {"nom_de_la_commune": "PERRIERES", "libell_d_acheminement": "PERRIERES", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14497"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a88215625b47641816b9ab96790090f1fac13ebd", "fields": {"nom_de_la_commune": "PERTHEVILLE NERS", "libell_d_acheminement": "PERTHEVILLE NERS", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14498"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "def67d89adc23157a2634b44cad0b6cab45f0f85", "fields": {"nom_de_la_commune": "PLANQUERY", "libell_d_acheminement": "PLANQUERY", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14506"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "832ea55b8399f2116bd53342bf261f98d1cf138e", "fields": {"nom_de_la_commune": "LE PLESSIS GRIMOULT", "libell_d_acheminement": "LE PLESSIS GRIMOULT", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14508"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47236d829b6b2c9a1adc7eebc8a012b32e11555a", "fields": {"code_postal": "14520", "code_commune_insee": "14515", "libell_d_acheminement": "PORT EN BESSIN HUPPAIN", "ligne_5": "HUPPAIN", "nom_de_la_commune": "PORT EN BESSIN HUPPAIN", "coordonnees_gps": [49.3400701436, -0.771788294928]}, "geometry": {"type": "Point", "coordinates": [-0.771788294928, 49.3400701436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60fa9eb984dc0ac40eba09f97039ca18b17f2e17", "fields": {"nom_de_la_commune": "POTIGNY", "libell_d_acheminement": "POTIGNY", "code_postal": "14420", "coordonnees_gps": [48.9529350407, -0.254216402592], "code_commune_insee": "14516"}, "geometry": {"type": "Point", "coordinates": [-0.254216402592, 48.9529350407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6689d883958ae94f7fb4ed792282d09eae2c1bca", "fields": {"nom_de_la_commune": "BIEVILLE QUETIEVILLE", "libell_d_acheminement": "BIEVILLE QUETIEVILLE", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14527"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1f1041c86d7c45be3fa94c1de2388f3c31c91c", "fields": {"nom_de_la_commune": "QUETTEVILLE", "libell_d_acheminement": "QUETTEVILLE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14528"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cffd1af1ccc9c439ac0156f3004f67e9bd6b66f1", "fields": {"nom_de_la_commune": "LA RIVIERE ST SAUVEUR", "libell_d_acheminement": "LA RIVIERE ST SAUVEUR", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14536"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ae8518ddd413b3cd57dedc886f085e9d873e49d", "fields": {"nom_de_la_commune": "ST ANDRE D HEBERTOT", "libell_d_acheminement": "ST ANDRE D HEBERTOT", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14555"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "670f384193da1fb264ec8f894b07ee56cd8374e5", "fields": {"nom_de_la_commune": "ST COME DE FRESNE", "libell_d_acheminement": "ST COME DE FRESNE", "code_postal": "14960", "coordonnees_gps": [49.3273918281, -0.583379928435], "code_commune_insee": "14565"}, "geometry": {"type": "Point", "coordinates": [-0.583379928435, 49.3273918281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe467955bfab746cff3dffb42c4282c4e7b9e3d", "fields": {"nom_de_la_commune": "ST ETIENNE LA THILLAYE", "libell_d_acheminement": "ST ETIENNE LA THILLAYE", "code_postal": "14950", "coordonnees_gps": [49.2830960197, 0.0921245287823], "code_commune_insee": "14575"}, "geometry": {"type": "Point", "coordinates": [0.0921245287823, 49.2830960197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd4994dc942745f078ae9fea4b4c4d26dd628ca2", "fields": {"code_postal": "14140", "code_commune_insee": "14576", "libell_d_acheminement": "VAL DE VIE", "ligne_5": "LA CHAPELLE HAUTE GRUE", "nom_de_la_commune": "VAL DE VIE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc8688652bba78ea013e40d4548c5a105f1b7cd", "fields": {"nom_de_la_commune": "ST GERMAIN DE LIVET", "libell_d_acheminement": "ST GERMAIN DE LIVET", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14582"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82552ed2642dd934063e27d91bf16c56e7429d28", "fields": {"nom_de_la_commune": "ST GERMAIN LE VASSON", "libell_d_acheminement": "ST GERMAIN LE VASSON", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14589"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d759b856832eca6feee8f64a2991e2b005e44b3", "fields": {"nom_de_la_commune": "ST LAURENT DU MONT", "libell_d_acheminement": "ST LAURENT DU MONT", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14604"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d70b7e3291783e9cac5dec0721424e0ede760a", "fields": {"nom_de_la_commune": "ST LAURENT SUR MER", "libell_d_acheminement": "ST LAURENT SUR MER", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14605"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd116cfe9ff247ee275e93634708ddff62b07f6", "fields": {"nom_de_la_commune": "ST LOUP HORS", "libell_d_acheminement": "ST LOUP HORS", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14609"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc351a6488cf2f3c1d0848d052995b03b9ce835", "fields": {"nom_de_la_commune": "ST MARCOUF", "libell_d_acheminement": "ST MARCOUF", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14613"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5315dae92cd05350a55ebb49a8f65a18b074fe4a", "fields": {"nom_de_la_commune": "ST OUEN LE PIN", "libell_d_acheminement": "ST OUEN LE PIN", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14639"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00698e7dbe6490c64cde8d6004c6748f9e90f20", "fields": {"nom_de_la_commune": "ST PAIR", "libell_d_acheminement": "ST PAIR", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14640"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6ad761e5bffeaa727fda29a73bba4def1b1cb4", "fields": {"nom_de_la_commune": "ST PIERRE AZIF", "libell_d_acheminement": "ST PIERRE AZIF", "code_postal": "14950", "coordonnees_gps": [49.2830960197, 0.0921245287823], "code_commune_insee": "14645"}, "geometry": {"type": "Point", "coordinates": [0.0921245287823, 49.2830960197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030d610d1f6ef5f316026cd2ee8fa97f0762f02e", "fields": {"nom_de_la_commune": "ST SEVER CALVADOS", "libell_d_acheminement": "ST SEVER CALVADOS", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14658"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b22ca7ce57b134bfbb5613ec053c97f4f90b65", "fields": {"nom_de_la_commune": "ST VIGOR DES MEZERETS", "libell_d_acheminement": "ST VIGOR DES MEZERETS", "code_postal": "14770", "coordonnees_gps": [48.9262068, -0.631065513494], "code_commune_insee": "14662"}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cf3311fc3a410c1a2d42dee97135adc9b6d98b9", "fields": {"nom_de_la_commune": "SANNERVILLE", "libell_d_acheminement": "SANNERVILLE", "code_postal": "14940", "coordonnees_gps": [49.1833480619, -0.224513518796], "code_commune_insee": "14666"}, "geometry": {"type": "Point", "coordinates": [-0.224513518796, 49.1833480619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccddb5c6a1f959cfb9a8e4dbbee87da8be29069d", "fields": {"nom_de_la_commune": "SAONNET", "libell_d_acheminement": "SAONNET", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14668"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca5e7fe8068ed48e9240f78d6b17335963bc7737", "fields": {"nom_de_la_commune": "SURRAIN", "libell_d_acheminement": "SURRAIN", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14681"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b5e634808bdb416b34a7420c139c2f1a97458bc", "fields": {"nom_de_la_commune": "THAON", "libell_d_acheminement": "THAON", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14685"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eeff6f081cad8aae9d794f884cd8e3e0500acdb", "fields": {"nom_de_la_commune": "LE THEIL EN AUGE", "libell_d_acheminement": "LE THEIL EN AUGE", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14687"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a1ba1e1341de523c15bccc45a703fcab70cd2f", "fields": {"code_postal": "14220", "code_commune_insee": "14689", "libell_d_acheminement": "LE HOM", "ligne_5": "CURCY SUR ORNE", "nom_de_la_commune": "LE HOM", "coordonnees_gps": [48.9913936572, -0.409929998013]}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c70b3ff3dcf8a3b6f6c13d1264e0acd5b6efb23f", "fields": {"nom_de_la_commune": "TIERCEVILLE", "libell_d_acheminement": "TIERCEVILLE", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14690"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec39b46d58db2bf5966cdb374810eb197d33ecf3", "fields": {"nom_de_la_commune": "L OUDON", "libell_d_acheminement": "L OUDON", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14697"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e0dcd78de6f1654d1d6edb0abda03dfc8cfd5df", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "BERVILLE", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9071b5e641a1d8ad0b3b49b317240f491aadf251", "fields": {"nom_de_la_commune": "TRACY BOCAGE", "libell_d_acheminement": "TRACY BOCAGE", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14708"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37e5892e757024267ba8cc0f7f97eb4d67d9444", "fields": {"nom_de_la_commune": "LA VACQUERIE", "libell_d_acheminement": "LA VACQUERIE", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14722"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da56b383192ad53bc9bea1a028d99022f5efd67", "fields": {"nom_de_la_commune": "VARAVILLE", "libell_d_acheminement": "VARAVILLE", "code_postal": "14390", "coordonnees_gps": [49.2648004396, -0.14376856722], "code_commune_insee": "14724"}, "geometry": {"type": "Point", "coordinates": [-0.14376856722, 49.2648004396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "874599555eb781e3d0aa24ac610c010db4f7cc6b", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "VASSY", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14359213d5451951ccbcd2db7191a1c6e9970440", "fields": {"nom_de_la_commune": "VAUDELOGES", "libell_d_acheminement": "VAUDELOGES", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14729"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d94272e740072ae21c84b12476101742bcc98c", "fields": {"nom_de_la_commune": "VAUX SUR AURE", "libell_d_acheminement": "VAUX SUR AURE", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14732"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8773a9cfca6408fefb487c8c381fe3bf35d2e13e", "fields": {"code_postal": "14170", "code_commune_insee": "14735", "libell_d_acheminement": "VENDEUVRE", "ligne_5": "GRISY", "nom_de_la_commune": "VENDEUVRE", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27383bdabd3887fcf4c49c72c4b168706bd60ae1", "fields": {"nom_de_la_commune": "LA VILLEDIEU", "libell_d_acheminement": "LA VILLEDIEU", "code_postal": "48700", "coordonnees_gps": [44.6860773912, 3.45618967995], "code_commune_insee": "48197"}, "geometry": {"type": "Point", "coordinates": [3.45618967995, 44.6860773912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a2a11e30df04b89ff807b366f21176fd82b50e7", "fields": {"nom_de_la_commune": "LES ALLEUDS", "libell_d_acheminement": "LES ALLEUDS", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49001"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1584cb989b956301dc436b9d434c86e2ab3b98ce", "fields": {"code_postal": "49700", "code_commune_insee": "49003", "libell_d_acheminement": "TUFFALUN", "ligne_5": "LOUERRE", "nom_de_la_commune": "TUFFALUN", "coordonnees_gps": [47.2078633163, -0.289977588534]}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f75c2fbfd8cec090e2add4a68a52ac1b9bae8d6", "fields": {"nom_de_la_commune": "ANTOIGNE", "libell_d_acheminement": "ANTOIGNE", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49009"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "503def5363ea9921706c4d969ccbf46a9b05a660", "fields": {"nom_de_la_commune": "ARTANNES SUR THOUET", "libell_d_acheminement": "ARTANNES SUR THOUET", "code_postal": "49260", "coordonnees_gps": [47.1403136814, -0.132740231974], "code_commune_insee": "49011"}, "geometry": {"type": "Point", "coordinates": [-0.132740231974, 47.1403136814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf132e3b8f68468093c02c33259aa39a76541c5c", "fields": {"nom_de_la_commune": "AUBIGNE SUR LAYON", "libell_d_acheminement": "AUBIGNE SUR LAYON", "code_postal": "49540", "coordonnees_gps": [47.1719461736, -0.518340326258], "code_commune_insee": "49012"}, "geometry": {"type": "Point", "coordinates": [-0.518340326258, 47.1719461736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9641432c8ea7bc2b084188215c08a3188351825", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "CHEVIRE LE ROUGE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f23d27037666cae42cbf404bad0474347ddc964", "fields": {"nom_de_la_commune": "ST CYR SUR LOIRE", "libell_d_acheminement": "ST CYR SUR LOIRE", "code_postal": "37540", "coordonnees_gps": [47.4183017245, 0.658102652653], "code_commune_insee": "37214"}, "geometry": {"type": "Point", "coordinates": [0.658102652653, 47.4183017245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7de16d9c626d56e30794eaa6cfef2d73f5c94f9", "fields": {"nom_de_la_commune": "ST MARTIN LE BEAU", "libell_d_acheminement": "ST MARTIN LE BEAU", "code_postal": "37270", "coordonnees_gps": [47.3461148739, 0.860028356093], "code_commune_insee": "37225"}, "geometry": {"type": "Point", "coordinates": [0.860028356093, 47.3461148739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd60adc2b597f7fa53c17e3f3d9a938f474a09c8", "fields": {"nom_de_la_commune": "ST ROCH", "libell_d_acheminement": "ST ROCH", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37237"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddd1769e71f1da2c61ac7acfbe36e126f4c22a86", "fields": {"nom_de_la_commune": "SAVIGNY EN VERON", "libell_d_acheminement": "SAVIGNY EN VERON", "code_postal": "37420", "coordonnees_gps": [47.2193932083, 0.209651167751], "code_commune_insee": "37242"}, "geometry": {"type": "Point", "coordinates": [0.209651167751, 47.2193932083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fc6924a01e5e3f177a354c19699095fe66311b8", "fields": {"nom_de_la_commune": "SAZILLY", "libell_d_acheminement": "SAZILLY", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37244"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c79964747c7043c265e4b152e04bbae4e03471cd", "fields": {"nom_de_la_commune": "SEUILLY", "libell_d_acheminement": "SEUILLY", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37248"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfc92d661544c191994d45b1c8e0dfe5300305b", "fields": {"nom_de_la_commune": "SOUVIGNY DE TOURAINE", "libell_d_acheminement": "SOUVIGNY DE TOURAINE", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37252"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a8a4e74c098889cb2be0a9a03fc08a4e13dd1a7", "fields": {"nom_de_la_commune": "THENEUIL", "libell_d_acheminement": "THENEUIL", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37256"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d400d12034e01171619766f4ed8c7532cbeb67e3", "fields": {"nom_de_la_commune": "TRUYES", "libell_d_acheminement": "TRUYES", "code_postal": "37320", "coordonnees_gps": [47.2468353824, 0.78075583867], "code_commune_insee": "37263"}, "geometry": {"type": "Point", "coordinates": [0.78075583867, 47.2468353824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deb2f08d18f05e0baa3dcdcc66e3813b3073d324", "fields": {"nom_de_la_commune": "VALLERES", "libell_d_acheminement": "VALLERES", "code_postal": "37190", "coordonnees_gps": [47.2506947251, 0.473147095817], "code_commune_insee": "37264"}, "geometry": {"type": "Point", "coordinates": [0.473147095817, 47.2506947251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78f18078e6117bcfd94558220f3c32871512e8aa", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37265"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d84736e35f24d15912bae4cbf90a00dab023a03", "fields": {"nom_de_la_commune": "VERNEUIL LE CHATEAU", "libell_d_acheminement": "VERNEUIL LE CHATEAU", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37268"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2830b07b86f28befa050fd16503517854da2a28", "fields": {"nom_de_la_commune": "VERNEUIL SUR INDRE", "libell_d_acheminement": "VERNEUIL SUR INDRE", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37269"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e367ff56a9e5f4c0961d2fcd94c4ffab4a1edf7", "fields": {"nom_de_la_commune": "VILLANDRY", "libell_d_acheminement": "VILLANDRY", "code_postal": "37510", "coordonnees_gps": [47.3427710301, 0.558059242204], "code_commune_insee": "37272"}, "geometry": {"type": "Point", "coordinates": [0.558059242204, 47.3427710301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c76901f00271959a4eed20558ab3199f0571ed31", "fields": {"nom_de_la_commune": "L ALBENC", "libell_d_acheminement": "L ALBENC", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38004"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "662c2d72405c6d7092e7339ba7dd97c2ab15acd5", "fields": {"nom_de_la_commune": "ANTHON", "libell_d_acheminement": "ANTHON", "code_postal": "38280", "coordonnees_gps": [45.7761558636, 5.11926140068], "code_commune_insee": "38011"}, "geometry": {"type": "Point", "coordinates": [5.11926140068, 45.7761558636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10d1d6b09557f027af9ec47579f468beb8de5b19", "fields": {"nom_de_la_commune": "ARANDON", "libell_d_acheminement": "ARANDON", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38014"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23e273edddfaf2c03d9e11a48647cfd5c1b60a18", "fields": {"nom_de_la_commune": "AURIS", "libell_d_acheminement": "AURIS", "code_postal": "38142", "coordonnees_gps": [45.0896138023, 6.16821943755], "code_commune_insee": "38020"}, "geometry": {"type": "Point", "coordinates": [6.16821943755, 45.0896138023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ec06bfa0fde5061ed1827c8341a9c48f96d0ffb", "fields": {"code_postal": "38630", "code_commune_insee": "38022", "libell_d_acheminement": "LES AVENIERES VEYRINS THUELLIN", "ligne_5": "VEYRINS THUELLIN", "nom_de_la_commune": "LES AVENIERES VEYRINS THUELLIN", "coordonnees_gps": [45.6308900094, 5.56433388526]}, "geometry": {"type": "Point", "coordinates": [5.56433388526, 45.6308900094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0947294cdaef9d7bb37450ed855ce58f5d389538", "fields": {"nom_de_la_commune": "BEAUFORT", "libell_d_acheminement": "BEAUFORT", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38032"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e8f1d9deff6d444640d9088f1b5a6d819e3688c", "fields": {"nom_de_la_commune": "BEAUVOIR DE MARC", "libell_d_acheminement": "BEAUVOIR DE MARC", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38035"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999d938a437e47ec54a6777fc005b983abed534f", "fields": {"nom_de_la_commune": "BELLEGARDE POUSSIEU", "libell_d_acheminement": "BELLEGARDE POUSSIEU", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38037"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60b7367fd54cf63c958502b00c2d3aa610ad633", "fields": {"nom_de_la_commune": "BLANDIN", "libell_d_acheminement": "BLANDIN", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38047"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d85a1f4f7739bdae96e39916e3992b35b2ed915c", "fields": {"nom_de_la_commune": "LE BOUCHAGE", "libell_d_acheminement": "LE BOUCHAGE", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38050"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27521562e275758e6cf32889d6ea767d9d3f3275", "fields": {"nom_de_la_commune": "BOURGOIN JALLIEU", "libell_d_acheminement": "BOURGOIN JALLIEU", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38053"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b588867cbfcaa3cbf1361816d4960dae05e189e7", "fields": {"nom_de_la_commune": "BOUVESSE QUIRIEU", "libell_d_acheminement": "BOUVESSE QUIRIEU", "code_postal": "38390", "coordonnees_gps": [45.8230922038, 5.37490015594], "code_commune_insee": "38054"}, "geometry": {"type": "Point", "coordinates": [5.37490015594, 45.8230922038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8607a2dcb8e43a7a3dbb3ed339354ebd85b03aa9", "fields": {"nom_de_la_commune": "BRESSON", "libell_d_acheminement": "BRESSON", "code_postal": "38320", "coordonnees_gps": [45.1372833334, 5.77563920733], "code_commune_insee": "38057"}, "geometry": {"type": "Point", "coordinates": [5.77563920733, 45.1372833334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e1c69fb201572fafe8f8987f307ee4a192ee436", "fields": {"nom_de_la_commune": "LA BUISSE", "libell_d_acheminement": "LA BUISSE", "code_postal": "38500", "coordonnees_gps": [45.3696031703, 5.59866099233], "code_commune_insee": "38061"}, "geometry": {"type": "Point", "coordinates": [5.59866099233, 45.3696031703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53d05dfa3c23631d1bc01ca204656e4916c6973", "fields": {"nom_de_la_commune": "CHAMPIER", "libell_d_acheminement": "CHAMPIER", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38069"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27935becce747969e68592cddf62d19b17476184", "fields": {"nom_de_la_commune": "CHAMP SUR DRAC", "libell_d_acheminement": "CHAMP SUR DRAC", "code_postal": "38560", "coordonnees_gps": [45.0939836913, 5.7392474721], "code_commune_insee": "38071"}, "geometry": {"type": "Point", "coordinates": [5.7392474721, 45.0939836913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0feb0a720e6ef26e00962a610eeecd83735047e9", "fields": {"nom_de_la_commune": "CHANAS", "libell_d_acheminement": "CHANAS", "code_postal": "38150", "coordonnees_gps": [45.365722983, 4.86829817735], "code_commune_insee": "38072"}, "geometry": {"type": "Point", "coordinates": [4.86829817735, 45.365722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3106381fc6a05b4e730b0e82d6c5e9366cbffe11", "fields": {"nom_de_la_commune": "LA CHAPELLE DU BARD", "libell_d_acheminement": "LA CHAPELLE DU BARD", "code_postal": "38580", "coordonnees_gps": [45.3350666079, 6.10773824742], "code_commune_insee": "38078"}, "geometry": {"type": "Point", "coordinates": [6.10773824742, 45.3350666079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f065bf5935f658f4d8b504397803bcd0c3f14ff", "fields": {"nom_de_la_commune": "CHATEAUVILAIN", "libell_d_acheminement": "CHATEAUVILAIN", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38091"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "627dd2eb95656c319f275b272d8b1c2713353887", "fields": {"nom_de_la_commune": "LE CHEYLAS", "libell_d_acheminement": "LE CHEYLAS", "code_postal": "38570", "coordonnees_gps": [45.3269943353, 6.00916897234], "code_commune_insee": "38100"}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02efcfebdc00274461a5e7b0fe9cd17fa0758f3a", "fields": {"nom_de_la_commune": "CHEZENEUVE", "libell_d_acheminement": "CHEZENEUVE", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38102"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40c30699e5bcdd0562ed2a03d0227edfc949ab8d", "fields": {"nom_de_la_commune": "CHIRENS", "libell_d_acheminement": "CHIRENS", "code_postal": "38850", "coordonnees_gps": [45.4410466118, 5.5471440592], "code_commune_insee": "38105"}, "geometry": {"type": "Point", "coordinates": [5.5471440592, 45.4410466118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97093cd513711d96383ef0d385984c377c66dda9", "fields": {"nom_de_la_commune": "CHOLONGE", "libell_d_acheminement": "CHOLONGE", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38106"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117de063d86daccdff37a897d589a74e6efc536a", "fields": {"nom_de_la_commune": "CORNILLON EN TRIEVES", "libell_d_acheminement": "CORNILLON EN TRIEVES", "code_postal": "38710", "coordonnees_gps": [44.7990424398, 5.76552735745], "code_commune_insee": "38127"}, "geometry": {"type": "Point", "coordinates": [5.76552735745, 44.7990424398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de4a93218952fcffc0ce7eedf26fa474cf991318", "fields": {"nom_de_la_commune": "CORRENCON EN VERCORS", "libell_d_acheminement": "CORRENCON EN VERCORS", "code_postal": "38250", "coordonnees_gps": [45.0702412058, 5.55481376045], "code_commune_insee": "38129"}, "geometry": {"type": "Point", "coordinates": [5.55481376045, 45.0702412058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a122a867ec0d6a84ccb6fa55acd53b8e5fbad8", "fields": {"nom_de_la_commune": "DIEMOZ", "libell_d_acheminement": "DIEMOZ", "code_postal": "38790", "coordonnees_gps": [45.5630185121, 5.09029489838], "code_commune_insee": "38144"}, "geometry": {"type": "Point", "coordinates": [5.09029489838, 45.5630185121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be082d59079c3befae3d4329b46bea5feff0ad69", "fields": {"nom_de_la_commune": "ENTRE DEUX GUIERS", "libell_d_acheminement": "ENTRE DEUX GUIERS", "code_postal": "38380", "coordonnees_gps": [45.375484002, 5.78036097359], "code_commune_insee": "38155"}, "geometry": {"type": "Point", "coordinates": [5.78036097359, 45.375484002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43547f32a0dc9b0bff229e9847678b1185e3fcf4", "fields": {"nom_de_la_commune": "LES EPARRES", "libell_d_acheminement": "LES EPARRES", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38156"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5ec3a07d7128e143625294bf765fcf7370faef", "fields": {"nom_de_la_commune": "EYZIN PINET", "libell_d_acheminement": "EYZIN PINET", "code_postal": "38780", "coordonnees_gps": [45.5202153457, 4.98494519095], "code_commune_insee": "38160"}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7558085e818d867da21220eac99b58ba27844efd", "fields": {"nom_de_la_commune": "FONTAINE", "libell_d_acheminement": "FONTAINE", "code_postal": "38600", "coordonnees_gps": [45.1929899154, 5.67742947105], "code_commune_insee": "38169"}, "geometry": {"type": "Point", "coordinates": [5.67742947105, 45.1929899154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af359c11071f95950279f750f13a7c96eed57551", "fields": {"nom_de_la_commune": "GRESSE EN VERCORS", "libell_d_acheminement": "GRESSE EN VERCORS", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38186"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce53b200a47f8d810a1533943620ac3f362435a2", "fields": {"nom_de_la_commune": "LE GUA", "libell_d_acheminement": "LE GUA", "code_postal": "38450", "coordonnees_gps": [45.0222177332, 5.65673982861], "code_commune_insee": "38187"}, "geometry": {"type": "Point", "coordinates": [5.65673982861, 45.0222177332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3768a335ff5c80c475c44daba7b968c6b5b7d5de", "fields": {"nom_de_la_commune": "HIERES SUR AMBY", "libell_d_acheminement": "HIERES SUR AMBY", "code_postal": "38118", "coordonnees_gps": [45.7906226846, 5.32480499353], "code_commune_insee": "38190"}, "geometry": {"type": "Point", "coordinates": [5.32480499353, 45.7906226846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54dfdeebad1bde99a45255ecf763fcca7ab5877b", "fields": {"nom_de_la_commune": "HUEZ", "libell_d_acheminement": "HUEZ", "code_postal": "38750", "coordonnees_gps": [45.0970333607, 6.08483184334], "code_commune_insee": "38191"}, "geometry": {"type": "Point", "coordinates": [6.08483184334, 45.0970333607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de581bdaa5bd84c37d884e2799463696f32e1d6", "fields": {"nom_de_la_commune": "JANNEYRIAS", "libell_d_acheminement": "JANNEYRIAS", "code_postal": "38280", "coordonnees_gps": [45.7761558636, 5.11926140068], "code_commune_insee": "38197"}, "geometry": {"type": "Point", "coordinates": [5.11926140068, 45.7761558636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50f590a9a6fe4f81a86f0cf56cef44d61255fda0", "fields": {"nom_de_la_commune": "LAVALDENS", "libell_d_acheminement": "LAVALDENS", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38207"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38886687103fda4c9d47461d576b6a391a2c0ba", "fields": {"nom_de_la_commune": "LENTIOL", "libell_d_acheminement": "LENTIOL", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38209"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a747879652084c9616fb943a2351bd989883c123", "fields": {"code_postal": "38220", "code_commune_insee": "38212", "libell_d_acheminement": "LIVET ET GAVET", "ligne_5": "GAVET", "nom_de_la_commune": "LIVET ET GAVET", "coordonnees_gps": [45.0661676194, 5.84675560183]}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91e30cadb958f25b7ad6f55909b2956509a884b7", "fields": {"nom_de_la_commune": "LONGECHENAL", "libell_d_acheminement": "LONGECHENAL", "code_postal": "38690", "coordonnees_gps": [45.4430244705, 5.40174143466], "code_commune_insee": "38213"}, "geometry": {"type": "Point", "coordinates": [5.40174143466, 45.4430244705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea81496c240369ecf405f7df85fa15307f96e22c", "fields": {"nom_de_la_commune": "MARCILLOLES", "libell_d_acheminement": "MARCILLOLES", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38218"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6de71f0f1e10b5d115d4b89c79ecb2a49a3067", "fields": {"nom_de_la_commune": "MEYLAN", "libell_d_acheminement": "MEYLAN", "code_postal": "38240", "coordonnees_gps": [45.212269792, 5.78440632442], "code_commune_insee": "38229"}, "geometry": {"type": "Point", "coordinates": [5.78440632442, 45.212269792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1582b5bea2d3ee0ea4aa740a0537770b702e4404", "fields": {"nom_de_la_commune": "LE MONESTIER DU PERCY", "libell_d_acheminement": "LE MONESTIER DU PERCY", "code_postal": "38930", "coordonnees_gps": [44.7970572886, 5.60384382707], "code_commune_insee": "38243"}, "geometry": {"type": "Point", "coordinates": [5.60384382707, 44.7970572886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57eac97d60918788ce1de07765a16b067757d4f3", "fields": {"nom_de_la_commune": "MONTAUD", "libell_d_acheminement": "MONTAUD", "code_postal": "38210", "coordonnees_gps": [45.270292441, 5.50879408313], "code_commune_insee": "38248"}, "geometry": {"type": "Point", "coordinates": [5.50879408313, 45.270292441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1428bf9532cc2304b1d3c181c2cb0a6f1fa53dfd", "fields": {"code_postal": "38860", "code_commune_insee": "38253", "libell_d_acheminement": "MONT DE LANS", "ligne_5": "L ALPE DE MONT DE LANS", "nom_de_la_commune": "MONT DE LANS", "coordonnees_gps": [44.994660373, 6.12322203081]}, "geometry": {"type": "Point", "coordinates": [6.12322203081, 44.994660373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848ac323fad7ef2a496ca874e5fb93737e83d6fc", "fields": {"nom_de_la_commune": "MONTSEVEROUX", "libell_d_acheminement": "MONTSEVEROUX", "code_postal": "38122", "coordonnees_gps": [45.4359368128, 4.99798252687], "code_commune_insee": "38259"}, "geometry": {"type": "Point", "coordinates": [4.99798252687, 45.4359368128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7fe548f353e96ec618993c089356d2115514392", "fields": {"nom_de_la_commune": "LA MORTE", "libell_d_acheminement": "LA MORTE", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38264"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6904ae1c6fe25b8caf90276c473108a3b911b784", "fields": {"nom_de_la_commune": "LA MOTTE ST MARTIN", "libell_d_acheminement": "LA MOTTE ST MARTIN", "code_postal": "38770", "coordonnees_gps": [44.9592629252, 5.7197167385], "code_commune_insee": "38266"}, "geometry": {"type": "Point", "coordinates": [5.7197167385, 44.9592629252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c507b094bba2012dc4b803a4ea13c4314ea2d6f", "fields": {"nom_de_la_commune": "NANTOIN", "libell_d_acheminement": "NANTOIN", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38274"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5540bdd33981e7c36f0a343136982316f4e785d", "fields": {"nom_de_la_commune": "NOTRE DAME DE L OSIER", "libell_d_acheminement": "NOTRE DAME DE L OSIER", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38278"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52045e07c7d8cbe2bfdba9dd15d71a47a63bb82d", "fields": {"nom_de_la_commune": "NOYAREY", "libell_d_acheminement": "NOYAREY", "code_postal": "38360", "coordonnees_gps": [45.2140316159, 5.62374044814], "code_commune_insee": "38281"}, "geometry": {"type": "Point", "coordinates": [5.62374044814, 45.2140316159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72dc8900e3756d4e09a466c846eab16f73cbc555", "fields": {"nom_de_la_commune": "OPTEVOZ", "libell_d_acheminement": "OPTEVOZ", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38282"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8fc853fec21f2ebdc919ba52c674e0278069533", "fields": {"nom_de_la_commune": "ORNACIEUX", "libell_d_acheminement": "ORNACIEUX", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38284"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "705ed3f99decebacffc4eaaf46309243fa7e55e8", "fields": {"nom_de_la_commune": "PISIEU", "libell_d_acheminement": "PISIEU", "code_postal": "38270", "coordonnees_gps": [45.3625667042, 5.0339864847], "code_commune_insee": "38307"}, "geometry": {"type": "Point", "coordinates": [5.0339864847, 45.3625667042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af3a8c78ba1ca74f618d72ff0eb5541db61409c5", "fields": {"nom_de_la_commune": "POISAT", "libell_d_acheminement": "POISAT", "code_postal": "38320", "coordonnees_gps": [45.1372833334, 5.77563920733], "code_commune_insee": "38309"}, "geometry": {"type": "Point", "coordinates": [5.77563920733, 45.1372833334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be87e734429227ea1229a05ddc0712c79541cfb9", "fields": {"nom_de_la_commune": "POMMIER DE BEAUREPAIRE", "libell_d_acheminement": "POMMIER DE BEAUREPAIRE", "code_postal": "38260", "coordonnees_gps": [45.3939399436, 5.22119790232], "code_commune_insee": "38311"}, "geometry": {"type": "Point", "coordinates": [5.22119790232, 45.3939399436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "225584f4b42bc46720d12c455ac7de0de629d451", "fields": {"nom_de_la_commune": "POMMIERS LA PLACETTE", "libell_d_acheminement": "POMMIERS LA PLACETTE", "code_postal": "38340", "coordonnees_gps": [45.3011036045, 5.65576728481], "code_commune_insee": "38312"}, "geometry": {"type": "Point", "coordinates": [5.65576728481, 45.3011036045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a06934feb485daf2e46a6f733ddd48e1341139", "fields": {"nom_de_la_commune": "LE PONT DE BEAUVOISIN", "libell_d_acheminement": "LE PONT DE BEAUVOISIN", "code_postal": "38480", "coordonnees_gps": [45.53172228, 5.65443955806], "code_commune_insee": "38315"}, "geometry": {"type": "Point", "coordinates": [5.65443955806, 45.53172228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b818dfd0f047bd88aa9b25fb940952bc57ae73c", "fields": {"nom_de_la_commune": "PONT EN ROYANS", "libell_d_acheminement": "PONT EN ROYANS", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38319"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "175c1c20f4116f22db7c13c57aa10edc7dc28545", "fields": {"nom_de_la_commune": "PROVEYSIEUX", "libell_d_acheminement": "PROVEYSIEUX", "code_postal": "38120", "coordonnees_gps": [45.2676163279, 5.69623665146], "code_commune_insee": "38325"}, "geometry": {"type": "Point", "coordinates": [5.69623665146, 45.2676163279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aeaf8425c102e92f37a7f324dc6ed714ab7192a", "fields": {"nom_de_la_commune": "PRUNIERES", "libell_d_acheminement": "PRUNIERES", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38326"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbfde2a9f4343511b593951371a0784d051b59a2", "fields": {"nom_de_la_commune": "REAUMONT", "libell_d_acheminement": "REAUMONT", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38331"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b22a7e952a627279536c2b7bc89a19a4dcdbb28", "fields": {"nom_de_la_commune": "RENAGE", "libell_d_acheminement": "RENAGE", "code_postal": "38140", "coordonnees_gps": [45.3572541571, 5.48017908305], "code_commune_insee": "38332"}, "geometry": {"type": "Point", "coordinates": [5.48017908305, 45.3572541571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843139436abb3195cfc89c8420959bd6662eb885", "fields": {"nom_de_la_commune": "RENCUREL", "libell_d_acheminement": "RENCUREL", "code_postal": "38680", "coordonnees_gps": [45.0897926423, 5.39861612387], "code_commune_insee": "38333"}, "geometry": {"type": "Point", "coordinates": [5.39861612387, 45.0897926423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38508b4820de132f01dd1d0480f6d6c5b570bdd", "fields": {"nom_de_la_commune": "REVENTIN VAUGRIS", "libell_d_acheminement": "REVENTIN VAUGRIS", "code_postal": "38121", "coordonnees_gps": [45.4752927217, 4.83249057524], "code_commune_insee": "38336"}, "geometry": {"type": "Point", "coordinates": [4.83249057524, 45.4752927217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d966d0aaa64f394b866a383413daa80752ea3015", "fields": {"nom_de_la_commune": "ROISSARD", "libell_d_acheminement": "ROISSARD", "code_postal": "38650", "coordonnees_gps": [44.9183811559, 5.57808877293], "code_commune_insee": "38342"}, "geometry": {"type": "Point", "coordinates": [5.57808877293, 44.9183811559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbc95ca2b684925d3c77b4d8d1b268064d78ee94", "fields": {"nom_de_la_commune": "SABLONS", "libell_d_acheminement": "SABLONS", "code_postal": "38550", "coordonnees_gps": [45.3884978642, 4.79761924958], "code_commune_insee": "38349"}, "geometry": {"type": "Point", "coordinates": [4.79761924958, 45.3884978642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ecbe01516fe5b0ab0cc1a077fee335960878cc", "fields": {"nom_de_la_commune": "ST APPOLINARD", "libell_d_acheminement": "ST APPOLINARD", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38360"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84204c81549b135609e6f328e1f738b1b7b78c33", "fields": {"nom_de_la_commune": "ST BUEIL", "libell_d_acheminement": "ST BUEIL", "code_postal": "38620", "coordonnees_gps": [45.4612301331, 5.6299128185], "code_commune_insee": "38372"}, "geometry": {"type": "Point", "coordinates": [5.6299128185, 45.4612301331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05864958e31c242c5056c51cc4f3186ce5cd70b6", "fields": {"nom_de_la_commune": "ST CASSIEN", "libell_d_acheminement": "ST CASSIEN", "code_postal": "38500", "coordonnees_gps": [45.3696031703, 5.59866099233], "code_commune_insee": "38373"}, "geometry": {"type": "Point", "coordinates": [5.59866099233, 45.3696031703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f911fd70bd7b99e50d72b1c9da9de890b628ad3b", "fields": {"nom_de_la_commune": "ST CLAIR DU RHONE", "libell_d_acheminement": "ST CLAIR DU RHONE", "code_postal": "38370", "coordonnees_gps": [45.436858951, 4.78033179088], "code_commune_insee": "38378"}, "geometry": {"type": "Point", "coordinates": [4.78033179088, 45.436858951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30bdc838a89287730c06fe3e4d82b9e4854cdcbb", "fields": {"nom_de_la_commune": "ST DIDIER DE LA TOUR", "libell_d_acheminement": "ST DIDIER DE LA TOUR", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38381"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3eada3bf0e8029e315f9338393886e859b95c1c", "fields": {"nom_de_la_commune": "ST GERVAIS", "libell_d_acheminement": "ST GERVAIS", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38390"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1303d8cccd0d2e456f5a0352ff9c5331ca5f6ee9", "fields": {"nom_de_la_commune": "ST HILAIRE DU ROSIER", "libell_d_acheminement": "ST HILAIRE DU ROSIER", "code_postal": "38840", "coordonnees_gps": [45.102231129, 5.22315153689], "code_commune_insee": "38394"}, "geometry": {"type": "Point", "coordinates": [5.22315153689, 45.102231129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b166e59be24f26d193af87509010dbda32482056", "fields": {"nom_de_la_commune": "ST JEAN DE VAULX", "libell_d_acheminement": "ST JEAN DE VAULX", "code_postal": "38220", "coordonnees_gps": [45.0661676194, 5.84675560183], "code_commune_insee": "38402"}, "geometry": {"type": "Point", "coordinates": [5.84675560183, 45.0661676194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7225d02a1f2cd282916b39dbc9cf86af125042", "fields": {"nom_de_la_commune": "ST JULIEN DE RAZ", "libell_d_acheminement": "ST JULIEN DE RAZ", "code_postal": "38134", "coordonnees_gps": [45.3576664534, 5.68172750392], "code_commune_insee": "38407"}, "geometry": {"type": "Point", "coordinates": [5.68172750392, 45.3576664534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e14c78c3f73e69e6cf0392330efdce85a8158f", "fields": {"nom_de_la_commune": "ST LATTIER", "libell_d_acheminement": "ST LATTIER", "code_postal": "38840", "coordonnees_gps": [45.102231129, 5.22315153689], "code_commune_insee": "38410"}, "geometry": {"type": "Point", "coordinates": [5.22315153689, 45.102231129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d6eb44cfab91e99457d7c01411296e33322395b", "fields": {"nom_de_la_commune": "ST MARTIN DE VAULSERRE", "libell_d_acheminement": "ST MARTIN DE VAULSERRE", "code_postal": "38480", "coordonnees_gps": [45.53172228, 5.65443955806], "code_commune_insee": "38420"}, "geometry": {"type": "Point", "coordinates": [5.65443955806, 45.53172228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87b1c35ec800a8ef230a076ea327ee361f1b9618", "fields": {"nom_de_la_commune": "ST NICOLAS DE MACHERIN", "libell_d_acheminement": "ST NICOLAS DE MACHERIN", "code_postal": "38500", "coordonnees_gps": [45.3696031703, 5.59866099233], "code_commune_insee": "38432"}, "geometry": {"type": "Point", "coordinates": [5.59866099233, 45.3696031703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d7e9b6f0f6c7594f98ba2ea21a275c4918c3bc4", "fields": {"nom_de_la_commune": "ST PANCRASSE", "libell_d_acheminement": "ST PANCRASSE", "code_postal": "38660", "coordonnees_gps": [45.3559962424, 5.91818408671], "code_commune_insee": "38435"}, "geometry": {"type": "Point", "coordinates": [5.91818408671, 45.3559962424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "139560d8fd0ea0bdfc1d6bdf5d0a76c56278c25f", "fields": {"nom_de_la_commune": "VOSBLES", "libell_d_acheminement": "VOSBLES", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39583"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bdc8632e57610153d3b001dd42f09fa2ce61c1d", "fields": {"nom_de_la_commune": "ARESCHES", "libell_d_acheminement": "ARESCHES", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39586"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3625c35ea7ba6ec1c6e84a6e534c7d521c541b23", "fields": {"nom_de_la_commune": "AMOU", "libell_d_acheminement": "AMOU", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40002"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0db758299d270b2759deab92ccf65501e2698a88", "fields": {"nom_de_la_commune": "ARSAGUE", "libell_d_acheminement": "ARSAGUE", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40011"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "494a0ca2f1990890ff9592b8223a057d526314be", "fields": {"nom_de_la_commune": "ARUE", "libell_d_acheminement": "ARUE", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40014"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efe11ed5e0aabc1450509a28acd40434f1172d8a", "fields": {"nom_de_la_commune": "AUDON", "libell_d_acheminement": "AUDON", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40018"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6556a27f9081ba81222d88111ed59f39ae7eb331", "fields": {"nom_de_la_commune": "AZUR", "libell_d_acheminement": "AZUR", "code_postal": "40140", "coordonnees_gps": [43.7629098488, -1.27641282315], "code_commune_insee": "40021"}, "geometry": {"type": "Point", "coordinates": [-1.27641282315, 43.7629098488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7fe6ed161d3b950a73263347116c22e1c3d9b4e", "fields": {"nom_de_la_commune": "BELHADE", "libell_d_acheminement": "BELHADE", "code_postal": "40410", "coordonnees_gps": [44.3533102389, -0.785997047975], "code_commune_insee": "40032"}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee00b31651904d3de63d1ff2d2ef0a9d5601ac95", "fields": {"nom_de_la_commune": "BIARROTTE", "libell_d_acheminement": "BIARROTTE", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40042"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "454350541e75e5c5a115309efe5d33d952446fd9", "fields": {"nom_de_la_commune": "BORDERES ET LAMENSANS", "libell_d_acheminement": "BORDERES ET LAMENSANS", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40049"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d248d73fcbf983d6f2ec346a98d619ff9a20224f", "fields": {"nom_de_la_commune": "BRASSEMPOUY", "libell_d_acheminement": "BRASSEMPOUY", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40054"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "948f712806760c0d42a3550efa016de94d6a0954", "fields": {"nom_de_la_commune": "CAGNOTTE", "libell_d_acheminement": "CAGNOTTE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40059"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3036afc003116e6ee844bd1c36a565f2c72e4844", "fields": {"nom_de_la_commune": "CARCARES STE CROIX", "libell_d_acheminement": "CARCARES STE CROIX", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40066"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1359f93f646f15871b6d6ab369111c13635d237", "fields": {"nom_de_la_commune": "CARCEN PONSON", "libell_d_acheminement": "CARCEN PONSON", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40067"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e70ebaf9c23a62cf752048d3767ee7159878c5", "fields": {"nom_de_la_commune": "CAUNEILLE", "libell_d_acheminement": "CAUNEILLE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40077"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14fe9f593e3bec7df4cd5a0da9a4973144d51200", "fields": {"nom_de_la_commune": "CAZERES SUR L ADOUR", "libell_d_acheminement": "CAZERES SUR L ADOUR", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40080"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ae550f012d3e036d4d6852a9f6f9bd6f6677a45", "fields": {"nom_de_la_commune": "COUDURES", "libell_d_acheminement": "COUDURES", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40086"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0001323810b98feb2576949914e10ea044c47428", "fields": {"nom_de_la_commune": "ESTIBEAUX", "libell_d_acheminement": "ESTIBEAUX", "code_postal": "40290", "coordonnees_gps": [43.5792705087, -0.916165533976], "code_commune_insee": "40095"}, "geometry": {"type": "Point", "coordinates": [-0.916165533976, 43.5792705087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03b27b7ab3cacaf6b62a4586d987ae67c0ad59d8", "fields": {"nom_de_la_commune": "ESTIGARDE", "libell_d_acheminement": "ESTIGARDE", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40096"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cbaae1ba2c23582eb94676096837887d2423f9e", "fields": {"nom_de_la_commune": "GARREY", "libell_d_acheminement": "GARREY", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40106"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca056a43d95117c6d1cf63d9f0ee1266dd412aa", "fields": {"nom_de_la_commune": "GASTES", "libell_d_acheminement": "GASTES", "code_postal": "40160", "coordonnees_gps": [44.3463280206, -1.04252210773], "code_commune_insee": "40108"}, "geometry": {"type": "Point", "coordinates": [-1.04252210773, 44.3463280206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799e2a33b802de9c5249a70dfd13fdee72e47513", "fields": {"nom_de_la_commune": "GELOUX", "libell_d_acheminement": "GELOUX", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40111"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a47f89f1ca335d530e371f969ca54b6e04f3d5", "fields": {"nom_de_la_commune": "GOOS", "libell_d_acheminement": "GOOS", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40113"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bd2dcac249c7afe2871ec546ba6f158f5b8e816", "fields": {"nom_de_la_commune": "GOUSSE", "libell_d_acheminement": "GOUSSE", "code_postal": "40465", "coordonnees_gps": [43.8185485328, -0.958961434744], "code_commune_insee": "40115"}, "geometry": {"type": "Point", "coordinates": [-0.958961434744, 43.8185485328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40c7b6a85577b9d283630d5322a3c016d9f5ff7e", "fields": {"nom_de_la_commune": "GRENADE SUR L ADOUR", "libell_d_acheminement": "GRENADE SUR L ADOUR", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40117"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c62991f8fe9af1f7f461d62007a0c1e11c8fc7", "fields": {"nom_de_la_commune": "HEUGAS", "libell_d_acheminement": "HEUGAS", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40125"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2cec379749d0a6b00fb9c33953a83e7a14c27f8", "fields": {"nom_de_la_commune": "HINX", "libell_d_acheminement": "HINX", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40126"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b6cb1940439a68ab07ebbf1c94bc7bd08836824", "fields": {"nom_de_la_commune": "JOSSE", "libell_d_acheminement": "JOSSE", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40129"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e838bb20ec0f700f0cdf5de7d8c4a40736e36cdf", "fields": {"nom_de_la_commune": "LABATUT", "libell_d_acheminement": "LABATUT", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40132"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bdf13e7ac7509c0f60d577a04d08c8f5ab7756f", "fields": {"nom_de_la_commune": "LABOUHEYRE", "libell_d_acheminement": "LABOUHEYRE", "code_postal": "40210", "coordonnees_gps": [44.186401376, -0.94336239865], "code_commune_insee": "40134"}, "geometry": {"type": "Point", "coordinates": [-0.94336239865, 44.186401376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3bc8bd7c2510fbe5efcb10159b7465b5e29430", "fields": {"nom_de_la_commune": "LEON", "libell_d_acheminement": "LEON", "code_postal": "40550", "coordonnees_gps": [43.8558812833, -1.27461526847], "code_commune_insee": "40150"}, "geometry": {"type": "Point", "coordinates": [-1.27461526847, 43.8558812833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "043b4ed12c4feb621dfce843bd9be0db82da1744", "fields": {"nom_de_la_commune": "LINXE", "libell_d_acheminement": "LINXE", "code_postal": "40260", "coordonnees_gps": [43.9187422777, -1.13083737668], "code_commune_insee": "40155"}, "geometry": {"type": "Point", "coordinates": [-1.13083737668, 43.9187422777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e8e18ef137cb4258d684704f87d55986e836a34", "fields": {"nom_de_la_commune": "LIPOSTHEY", "libell_d_acheminement": "LIPOSTHEY", "code_postal": "40410", "coordonnees_gps": [44.3533102389, -0.785997047975], "code_commune_insee": "40156"}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a1688921503e35522664203a2c499fc697a998", "fields": {"nom_de_la_commune": "LUBBON", "libell_d_acheminement": "LUBBON", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40161"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeab37debd8ae60c45db2d6fcebaaa30f9065ab2", "fields": {"nom_de_la_commune": "MAGESCQ", "libell_d_acheminement": "MAGESCQ", "code_postal": "40140", "coordonnees_gps": [43.7629098488, -1.27641282315], "code_commune_insee": "40168"}, "geometry": {"type": "Point", "coordinates": [-1.27641282315, 43.7629098488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dabdd37d7b380ceb02bb6d59d1da7deab5d03a0", "fields": {"nom_de_la_commune": "MANO", "libell_d_acheminement": "MANO", "code_postal": "40410", "coordonnees_gps": [44.3533102389, -0.785997047975], "code_commune_insee": "40171"}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4dd46d7d614c25fcb2824967245a92fa0319ad9", "fields": {"nom_de_la_commune": "MANT", "libell_d_acheminement": "MANT", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40172"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eb75e2eb57511b51f8d26f41a6345deed502a4b", "fields": {"nom_de_la_commune": "MARPAPS", "libell_d_acheminement": "MARPAPS", "code_postal": "40330", "coordonnees_gps": [43.6032492608, -0.734363847904], "code_commune_insee": "40173"}, "geometry": {"type": "Point", "coordinates": [-0.734363847904, 43.6032492608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60af2cbd108eac396742c51a2acc5ac04a5c5b2f", "fields": {"nom_de_la_commune": "MAZEROLLES", "libell_d_acheminement": "MAZEROLLES", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40178"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f58ee04d9d76d40189fdb3ee2cbace56c55839a6", "fields": {"nom_de_la_commune": "MOLIETS ET MAA", "libell_d_acheminement": "MOLIETS ET MAA", "code_postal": "40660", "coordonnees_gps": [43.8329015635, -1.36219281408], "code_commune_insee": "40187"}, "geometry": {"type": "Point", "coordinates": [-1.36219281408, 43.8329015635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f346546f6e6a376be2b97252d831299ffb37f2b", "fields": {"nom_de_la_commune": "MONSEGUR", "libell_d_acheminement": "MONSEGUR", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40190"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba7fdfd4e1d597ca47ce310c539a9aeacfc3ad20", "fields": {"nom_de_la_commune": "MONTSOUE", "libell_d_acheminement": "MONTSOUE", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40196"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b7ec03ec9e0c437bbec7a4ec1480d1287bd0d0c", "fields": {"nom_de_la_commune": "MUGRON", "libell_d_acheminement": "MUGRON", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40201"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa49560ce15440e9de50ba674d2a92fbad3e1ea2", "fields": {"nom_de_la_commune": "NARROSSE", "libell_d_acheminement": "NARROSSE", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40202"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b59722126b7b2ca95c88380953cefae8d97944", "fields": {"nom_de_la_commune": "PAYROS CAZAUTETS", "libell_d_acheminement": "PAYROS CAZAUTETS", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40219"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b62839186583ad12243016835767b92ecd523ec", "fields": {"nom_de_la_commune": "PHILONDENX", "libell_d_acheminement": "PHILONDENX", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40225"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c76c34c9ae8a6d3533dff86d58d6a068aff8ca23", "fields": {"nom_de_la_commune": "PONTONX SUR L ADOUR", "libell_d_acheminement": "PONTONX SUR L ADOUR", "code_postal": "40465", "coordonnees_gps": [43.8185485328, -0.958961434744], "code_commune_insee": "40230"}, "geometry": {"type": "Point", "coordinates": [-0.958961434744, 43.8185485328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "687971ba57a5f54035d16c9d2b06d31bf99348c2", "fields": {"nom_de_la_commune": "PRECHACQ LES BAINS", "libell_d_acheminement": "PRECHACQ LES BAINS", "code_postal": "40465", "coordonnees_gps": [43.8185485328, -0.958961434744], "code_commune_insee": "40237"}, "geometry": {"type": "Point", "coordinates": [-0.958961434744, 43.8185485328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0c27464542ec0faae5cdfa860482a14de730bc", "fields": {"nom_de_la_commune": "PUYOL CAZALET", "libell_d_acheminement": "PUYOL CAZALET", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40239"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a31c1cd27753ddb13c483f4e4db976c598b3739", "fields": {"nom_de_la_commune": "ST CRICQ CHALOSSE", "libell_d_acheminement": "ST CRICQ CHALOSSE", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40253"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d478b973328d2cf2b27992082aff9702041e8a4a", "fields": {"nom_de_la_commune": "ST CRICQ DU GAVE", "libell_d_acheminement": "ST CRICQ DU GAVE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40254"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2c6a13957a8eb87c6fe8998adfb7a63f027b430", "fields": {"nom_de_la_commune": "ST CRICQ VILLENEUVE", "libell_d_acheminement": "ST CRICQ VILLENEUVE", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40255"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c59890784780e01239cbf549807a1aa645fbda", "fields": {"nom_de_la_commune": "ST GEIN", "libell_d_acheminement": "ST GEIN", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40259"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15a162b73eff814e5c21890cf3e1be5ca274b736", "fields": {"nom_de_la_commune": "ST GEOURS DE MAREMNE", "libell_d_acheminement": "ST GEOURS DE MAREMNE", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40261"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "503db5276dc28c86419a851051462683b3bf483b", "fields": {"nom_de_la_commune": "ST JUSTIN", "libell_d_acheminement": "ST JUSTIN", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40267"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcd57fea292033b99e4adfa8a5b23ebea53ef903", "fields": {"nom_de_la_commune": "ST MARTIN DE SEIGNANX", "libell_d_acheminement": "ST MARTIN DE SEIGNANX", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40273"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e56418e1aa62c9fdd1cc7ee32d21f37649894d", "fields": {"nom_de_la_commune": "ST MARTIN D ONEY", "libell_d_acheminement": "ST MARTIN D ONEY", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40274"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf86544e32e3d6f59aed16d787d2a9cf17770fa1", "fields": {"nom_de_la_commune": "ST PAUL LES DAX", "libell_d_acheminement": "ST PAUL LES DAX", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40279"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b6e1af503b61dd4616e5c54c13b545d6838340", "fields": {"nom_de_la_commune": "ST SEVER", "libell_d_acheminement": "ST SEVER", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40282"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5c244820864798edf10117e1ba6f032d27ab2ee", "fields": {"nom_de_la_commune": "SAMADET", "libell_d_acheminement": "SAMADET", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40286"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "697e630bee8cd7231e92abe68e3f15d0d13fdec4", "fields": {"nom_de_la_commune": "SINDERES", "libell_d_acheminement": "SINDERES", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40302"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4ceeead18df683d819e6148942e270a51973955", "fields": {"nom_de_la_commune": "TRENSACQ", "libell_d_acheminement": "TRENSACQ", "code_postal": "40630", "coordonnees_gps": [44.158641182, -0.72802164635], "code_commune_insee": "40319"}, "geometry": {"type": "Point", "coordinates": [-0.72802164635, 44.158641182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18dbd70b02478e7baa5ef5bf303b32c923aa3e13", "fields": {"nom_de_la_commune": "URGONS", "libell_d_acheminement": "URGONS", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40321"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3799808c48ce967eba4883b795c2b15cd1f66ad7", "fields": {"nom_de_la_commune": "VERT", "libell_d_acheminement": "VERT", "code_postal": "40420", "coordonnees_gps": [44.093205309, -0.572816204392], "code_commune_insee": "40323"}, "geometry": {"type": "Point", "coordinates": [-0.572816204392, 44.093205309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85039b830c155976c80cd0a46008b8857999925f", "fields": {"nom_de_la_commune": "VIELLE ST GIRONS", "libell_d_acheminement": "VIELLE ST GIRONS", "code_postal": "40560", "coordonnees_gps": [43.9396188358, -1.32531698317], "code_commune_insee": "40326"}, "geometry": {"type": "Point", "coordinates": [-1.32531698317, 43.9396188358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cc7e61c19594ff881bbb09d46aa57757f08d1f9", "fields": {"nom_de_la_commune": "VIEUX BOUCAU LES BAINS", "libell_d_acheminement": "VIEUX BOUCAU LES BAINS", "code_postal": "40480", "coordonnees_gps": [43.7875634884, -1.396724511], "code_commune_insee": "40328"}, "geometry": {"type": "Point", "coordinates": [-1.396724511, 43.7875634884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b13b4c56fae456f233d429e2c7736b892f2cc2c", "fields": {"nom_de_la_commune": "VILLENAVE", "libell_d_acheminement": "VILLENAVE", "code_postal": "40110", "coordonnees_gps": [44.0292859591, -0.886711370847], "code_commune_insee": "40330"}, "geometry": {"type": "Point", "coordinates": [-0.886711370847, 44.0292859591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3139cf39f007e47e960df283e031aee77238c048", "fields": {"nom_de_la_commune": "VILLENEUVE DE MARSAN", "libell_d_acheminement": "VILLENEUVE DE MARSAN", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40331"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ebd042df4df6ef20d21f6820d7e7784ac9d7111", "fields": {"nom_de_la_commune": "AMBLOY", "libell_d_acheminement": "AMBLOY", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41001"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afea4943270b54e40ee4fc18fa15c1ad200618f3", "fields": {"nom_de_la_commune": "ANGE", "libell_d_acheminement": "ANGE", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41002"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f77f01a99f653ddf511cdb687ad0c2c131af7820", "fields": {"nom_de_la_commune": "AREINES", "libell_d_acheminement": "AREINES", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41003"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1f91513a0a2c9cd01c90a7eb57900e2e402570a", "fields": {"nom_de_la_commune": "BAIGNEAUX", "libell_d_acheminement": "BAIGNEAUX", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41011"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c7871f80fcaf245f3af59d8bf00d9d3fe98205", "fields": {"nom_de_la_commune": "BILLY", "libell_d_acheminement": "BILLY", "code_postal": "41130", "coordonnees_gps": [47.2869148603, 1.56604401374], "code_commune_insee": "41016"}, "geometry": {"type": "Point", "coordinates": [1.56604401374, 47.2869148603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f55aea331530e0816a896cefbf2b22ebad5a5a", "fields": {"nom_de_la_commune": "BOISSEAU", "libell_d_acheminement": "BOISSEAU", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41019"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8300e1fbcdd6aba1d2f178cfdbffae04a5c81d9", "fields": {"nom_de_la_commune": "CELLE", "libell_d_acheminement": "CELLE", "code_postal": "41360", "coordonnees_gps": [47.8537508655, 0.866594114079], "code_commune_insee": "41030"}, "geometry": {"type": "Point", "coordinates": [0.866594114079, 47.8537508655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c567f7657bb3ff8d8976364f8c92100cab2599ca", "fields": {"nom_de_la_commune": "LA CHAPELLE ST MARTIN EN PLAINE", "libell_d_acheminement": "LA CHAPELLE ST MARTIN EN PLAINE", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41039"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64ad4bfbe62e2419b6a7ea44223c32e2f892114c", "fields": {"nom_de_la_commune": "CHAUMONT SUR LOIRE", "libell_d_acheminement": "CHAUMONT SUR LOIRE", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41045"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eede4bfa97ddc5b8cb1f5b6c502a84bcb29e5d05", "fields": {"nom_de_la_commune": "CHOUSSY", "libell_d_acheminement": "CHOUSSY", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41054"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76cc6cbe1fdcd2ee2853aef32ab541a7e00d380", "fields": {"nom_de_la_commune": "CORMENON", "libell_d_acheminement": "CORMENON", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41060"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "327a447f6880f7cc3c143b94abe58279996550f6", "fields": {"nom_de_la_commune": "COUFFY", "libell_d_acheminement": "COUFFY", "code_postal": "41110", "coordonnees_gps": [47.2568714, 1.34079255884], "code_commune_insee": "41063"}, "geometry": {"type": "Point", "coordinates": [1.34079255884, 47.2568714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63b5ebda4ef2911cf6dd01709243ca1c019e6dc8", "fields": {"nom_de_la_commune": "COULOMMIERS LA TOUR", "libell_d_acheminement": "COULOMMIERS LA TOUR", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41065"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e35d0a61f8c8882aafd8034f2669a8bb485e01a8", "fields": {"nom_de_la_commune": "DHUIZON", "libell_d_acheminement": "DHUIZON", "code_postal": "41220", "coordonnees_gps": [47.6522187818, 1.66627730575], "code_commune_insee": "41074"}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4269dda4678393550aafad7d63a9b08e469ad1e2", "fields": {"nom_de_la_commune": "EPIAIS", "libell_d_acheminement": "EPIAIS", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41077"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1dcc91e802ef7c21d1a7a9cac73cddb8769510", "fields": {"nom_de_la_commune": "FAVEROLLES SUR CHER", "libell_d_acheminement": "FAVEROLLES SUR CHER", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41080"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1739242c039fcfa8b3ad7f2f10874634def0b0fb", "fields": {"nom_de_la_commune": "FEINGS", "libell_d_acheminement": "FEINGS", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41082"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbc9f7c48eb2100c275aee8a8d8333fee496cb0b", "fields": {"nom_de_la_commune": "FONTAINE LES COTEAUX", "libell_d_acheminement": "FONTAINE LES COTEAUX", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41087"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cee167ff07c4bb18fca19ee97e3708cef66c76c1", "fields": {"nom_de_la_commune": "GY EN SOLOGNE", "libell_d_acheminement": "GY EN SOLOGNE", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41099"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "777f60b16301364d2e50fbbc813faefe2b66a3a2", "fields": {"nom_de_la_commune": "LORGES", "libell_d_acheminement": "LORGES", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41119"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a28fe030a641202c6b5665eb0dd2db387f8545f", "fields": {"nom_de_la_commune": "MARCHENOIR", "libell_d_acheminement": "MARCHENOIR", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41123"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f33e41b77dc0cd97c4169b13f2163a2826422027", "fields": {"nom_de_la_commune": "MARCILLY EN GAULT", "libell_d_acheminement": "MARCILLY EN GAULT", "code_postal": "41210", "coordonnees_gps": [47.5196740684, 1.85287131674], "code_commune_insee": "41125"}, "geometry": {"type": "Point", "coordinates": [1.85287131674, 47.5196740684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d66ddeec758bd133e6ee4a1f03324667428bb4d", "fields": {"nom_de_la_commune": "LA MAROLLE EN SOLOGNE", "libell_d_acheminement": "LA MAROLLE EN SOLOGNE", "code_postal": "41210", "coordonnees_gps": [47.5196740684, 1.85287131674], "code_commune_insee": "41127"}, "geometry": {"type": "Point", "coordinates": [1.85287131674, 47.5196740684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969f6985cf71abd70647e11f0f8596c4cb6f3361", "fields": {"nom_de_la_commune": "MESLAND", "libell_d_acheminement": "MESLAND", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41137"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4873807ef68c148e850aaac962eaf519d990621", "fields": {"nom_de_la_commune": "MESLAY", "libell_d_acheminement": "MESLAY", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41138"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b72b58f288f3fc916d1fc8dee40b3fa1d94447", "fields": {"nom_de_la_commune": "MILLANCAY", "libell_d_acheminement": "MILLANCAY", "code_postal": "41200", "coordonnees_gps": [47.3811514911, 1.76608679793], "code_commune_insee": "41140"}, "geometry": {"type": "Point", "coordinates": [1.76608679793, 47.3811514911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "976bdaab8e91e66b7fbdf56d95f2dabc00645727", "fields": {"nom_de_la_commune": "MOISY", "libell_d_acheminement": "MOISY", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41141"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed3deecc5f16c4fc340c04c9f54ee6f7bf2ba975", "fields": {"nom_de_la_commune": "MONTHOU SUR CHER", "libell_d_acheminement": "MONTHOU SUR CHER", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41146"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90605ca0ffa4b7aa6a43a0eb6ab6c68cca52adf9", "fields": {"nom_de_la_commune": "MONTLIVAULT", "libell_d_acheminement": "MONTLIVAULT", "code_postal": "41350", "coordonnees_gps": [47.5967187787, 1.41738581826], "code_commune_insee": "41148"}, "geometry": {"type": "Point", "coordinates": [1.41738581826, 47.5967187787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9472d681d6f137e8910d6e0f4f4475c6f66bb1e", "fields": {"nom_de_la_commune": "OUCQUES", "libell_d_acheminement": "OUCQUES", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41171"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b3731a92df318807b833003d6f3178b632e0bb", "fields": {"nom_de_la_commune": "OUZOUER LE DOYEN", "libell_d_acheminement": "OUZOUER LE DOYEN", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41172"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9776f1673a6d4d26ecb0e298d71959045fe70af", "fields": {"code_postal": "41240", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "VERDES", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.883516552, 1.48678396082]}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f15bfd63a18d5f0cee451547992d1e5436371c", "fields": {"nom_de_la_commune": "HAUTEFAGE", "libell_d_acheminement": "HAUTEFAGE", "code_postal": "19400", "coordonnees_gps": [45.0883560028, 1.92575532209], "code_commune_insee": "19091"}, "geometry": {"type": "Point", "coordinates": [1.92575532209, 45.0883560028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641384629d2f6d52c213b244f36e0eb6b8d9fe48", "fields": {"nom_de_la_commune": "LAGRAULIERE", "libell_d_acheminement": "LAGRAULIERE", "code_postal": "19700", "coordonnees_gps": [45.365962799, 1.68361128619], "code_commune_insee": "19100"}, "geometry": {"type": "Point", "coordinates": [1.68361128619, 45.365962799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4ceba397abc1a60f36df2805f96e8b92ab7178", "fields": {"nom_de_la_commune": "LAGUENNE", "libell_d_acheminement": "LAGUENNE", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19101"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e837ffb3cdbbfe6b3799563274592a14d2e9160", "fields": {"nom_de_la_commune": "LARCHE", "libell_d_acheminement": "LARCHE", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19107"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad89f245eff3cfa486b69e744064954d9c8e626", "fields": {"nom_de_la_commune": "LATRONCHE", "libell_d_acheminement": "LATRONCHE", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19110"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4e69275a7a76d54e40d7b9f2ad3e48de5bd4417", "fields": {"nom_de_la_commune": "LESTARDS", "libell_d_acheminement": "LESTARDS", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19112"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c4c75dfaf7bad2c518b8379fd0a506cb2c1f81", "fields": {"nom_de_la_commune": "LIGNEYRAC", "libell_d_acheminement": "LIGNEYRAC", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19115"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "618e451873542b0f20228344d52d1953d0ec027e", "fields": {"nom_de_la_commune": "LOSTANGES", "libell_d_acheminement": "LOSTANGES", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19119"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7aa46b76c2a97aea5485401fcce60c188c98977", "fields": {"nom_de_la_commune": "MARCILLAC LA CROZE", "libell_d_acheminement": "MARCILLAC LA CROZE", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19126"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70754f7434a9c5a05937085c2b0310611c1b8d01", "fields": {"nom_de_la_commune": "MARC LA TOUR", "libell_d_acheminement": "MARC LA TOUR", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19127"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9aedd549b2fe3c0d710adc32ac6f47aaf7184bd", "fields": {"nom_de_la_commune": "MASSERET", "libell_d_acheminement": "MASSERET", "code_postal": "19510", "coordonnees_gps": [45.5279233251, 1.55841014234], "code_commune_insee": "19129"}, "geometry": {"type": "Point", "coordinates": [1.55841014234, 45.5279233251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11ee276e7b5982cefc53067a042651d550fd3518", "fields": {"nom_de_la_commune": "MERLINES", "libell_d_acheminement": "MERLINES", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19134"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceca038514d99cf7ff0a1f5f8cff669664640dc1", "fields": {"nom_de_la_commune": "MILLEVACHES", "libell_d_acheminement": "MILLEVACHES", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19139"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274138359f09975392049bab36b504f9d1d32a44", "fields": {"nom_de_la_commune": "NAVES", "libell_d_acheminement": "NAVES", "code_postal": "19460", "coordonnees_gps": [45.3151145699, 1.7504787703], "code_commune_insee": "19146"}, "geometry": {"type": "Point", "coordinates": [1.7504787703, 45.3151145699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "852e9c80bda1f80782f6596345fb104661a5900c", "fields": {"nom_de_la_commune": "NEUVIC", "libell_d_acheminement": "NEUVIC", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19148"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbb23b3774fff9cc841e160debfc17b2f69d92c8", "fields": {"nom_de_la_commune": "PERPEZAC LE BLANC", "libell_d_acheminement": "PERPEZAC LE BLANC", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19161"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b4258c1c562f75e9d9b7c53c5fb38ce1bb77215", "fields": {"nom_de_la_commune": "PEYRISSAC", "libell_d_acheminement": "PEYRISSAC", "code_postal": "19260", "coordonnees_gps": [45.5242684959, 1.78346555124], "code_commune_insee": "19165"}, "geometry": {"type": "Point", "coordinates": [1.78346555124, 45.5242684959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c884c1259235c69d457cb57402dcc24ae345d4ce", "fields": {"nom_de_la_commune": "CONFOLENT PORT DIEU", "libell_d_acheminement": "CONFOLENT PORT DIEU", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19167"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e93a252851c2f8100f0c23413c711a33441d3c", "fields": {"nom_de_la_commune": "RILHAC TREIGNAC", "libell_d_acheminement": "RILHAC TREIGNAC", "code_postal": "19260", "coordonnees_gps": [45.5242684959, 1.78346555124], "code_commune_insee": "19172"}, "geometry": {"type": "Point", "coordinates": [1.78346555124, 45.5242684959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3fdae89514d59ff069312d482d927d8d92c5df3", "fields": {"nom_de_la_commune": "SADROC", "libell_d_acheminement": "SADROC", "code_postal": "19270", "coordonnees_gps": [45.2360128901, 1.55194378829], "code_commune_insee": "19178"}, "geometry": {"type": "Point", "coordinates": [1.55194378829, 45.2360128901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da3755fa94b65acdd5f719afb73232bc583f6eea", "fields": {"nom_de_la_commune": "ST ANGEL", "libell_d_acheminement": "ST ANGEL", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19180"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20f52460171b0fdf3ed439ad0efd3a72ded6ec9c", "fields": {"nom_de_la_commune": "ST BAZILE DE LA ROCHE", "libell_d_acheminement": "ST BAZILE DE LA ROCHE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19183"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78f09997ba3dac1c2740a41e9fe8d4287730346d", "fields": {"nom_de_la_commune": "ST BONNET LA RIVIERE", "libell_d_acheminement": "ST BONNET LA RIVIERE", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19187"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67192872bd9570a2c0995e74e35a877affc2c1f5", "fields": {"nom_de_la_commune": "ST BONNET LES TOURS DE MERLE", "libell_d_acheminement": "ST BONNET LES TOURS DE MERLE", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19189"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f97f616213da1033a402c3fa52139c1f4030a72", "fields": {"nom_de_la_commune": "ST ETIENNE AUX CLOS", "libell_d_acheminement": "ST ETIENNE AUX CLOS", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19199"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0274e30abcef8cb5536d6d70c22420889fa98b", "fields": {"nom_de_la_commune": "ST GENIEZ O MERLE", "libell_d_acheminement": "ST GENIEZ O MERLE", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19205"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ddb697497721397ee8db64a5c0214392f31d63", "fields": {"nom_de_la_commune": "ST PARDOUX LE VIEUX", "libell_d_acheminement": "ST PARDOUX LE VIEUX", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19233"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "054c890163253cd5bca94f93904cda7f32d9431a", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19238"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1039687056f2f157021eb4f73183d2220db4c495", "fields": {"nom_de_la_commune": "ST SORNIN LAVOLPS", "libell_d_acheminement": "ST SORNIN LAVOLPS", "code_postal": "19230", "coordonnees_gps": [45.3932618354, 1.37629346937], "code_commune_insee": "19243"}, "geometry": {"type": "Point", "coordinates": [1.37629346937, 45.3932618354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29107aa2ed316e0a774479439a98e246e0c95e67", "fields": {"nom_de_la_commune": "ST YRIEIX LE DEJALAT", "libell_d_acheminement": "ST YRIEIX LE DEJALAT", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19249"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5974b93e52c22a4b5343b7fadb80b3e7f7d1aec", "fields": {"nom_de_la_commune": "SARRAN", "libell_d_acheminement": "SARRAN", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19251"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2614d62405f6558c77e5d8df60aa2c6ba0c7d8ba", "fields": {"nom_de_la_commune": "SEGONZAC", "libell_d_acheminement": "SEGONZAC", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19253"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7960ce30599b94c259bf046428acc9908d41435b", "fields": {"nom_de_la_commune": "SEGUR LE CHATEAU", "libell_d_acheminement": "SEGUR LE CHATEAU", "code_postal": "19230", "coordonnees_gps": [45.3932618354, 1.37629346937], "code_commune_insee": "19254"}, "geometry": {"type": "Point", "coordinates": [1.37629346937, 45.3932618354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c453625278959756b87a9491b4ce4e3fab24de1", "fields": {"nom_de_la_commune": "SEILHAC", "libell_d_acheminement": "SEILHAC", "code_postal": "19700", "coordonnees_gps": [45.365962799, 1.68361128619], "code_commune_insee": "19255"}, "geometry": {"type": "Point", "coordinates": [1.68361128619, 45.365962799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e1d47a0b26543996eb7bb95a256c4a7dc39965a", "fields": {"nom_de_la_commune": "SIONIAC", "libell_d_acheminement": "SIONIAC", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19260"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29853e03201e55504d785689e7718f45ead402a1", "fields": {"nom_de_la_commune": "SORNAC", "libell_d_acheminement": "SORNAC", "code_postal": "19290", "coordonnees_gps": [45.6738535555, 2.14113651337], "code_commune_insee": "19261"}, "geometry": {"type": "Point", "coordinates": [2.14113651337, 45.6738535555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf32504b46ef1befa23d383bfd72afcdcb79e6a", "fields": {"nom_de_la_commune": "SOURSAC", "libell_d_acheminement": "SOURSAC", "code_postal": "19550", "coordonnees_gps": [45.2859653325, 2.15926332347], "code_commune_insee": "19264"}, "geometry": {"type": "Point", "coordinates": [2.15926332347, 45.2859653325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a9a34cdb7a5239442dea86d478d62bd5fbbe1fc", "fields": {"nom_de_la_commune": "TUDEILS", "libell_d_acheminement": "TUDEILS", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19271"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b1b3235ec5dbee518ee9cf7a416c5fec340d68d", "fields": {"nom_de_la_commune": "VARETZ", "libell_d_acheminement": "VARETZ", "code_postal": "19240", "coordonnees_gps": [45.2278338531, 1.45884900159], "code_commune_insee": "19278"}, "geometry": {"type": "Point", "coordinates": [1.45884900159, 45.2278338531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fc42e6699d220d7669f15e4a4cd35d34da4f24e", "fields": {"nom_de_la_commune": "ARCEAU", "libell_d_acheminement": "ARCEAU", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21016"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe364f40f61bda217c53af1bffab3bee28b1f058", "fields": {"nom_de_la_commune": "ATHEE", "libell_d_acheminement": "ATHEE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21028"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2b7083753d40d9084fe8e80574ddae388d5c18c", "fields": {"nom_de_la_commune": "AUXANT", "libell_d_acheminement": "AUXANT", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21036"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a640360096d872ab05cf1d460fe94bc37d8805d", "fields": {"nom_de_la_commune": "AUXEY DURESSES", "libell_d_acheminement": "AUXEY DURESSES", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21037"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5293f74ad43b80fdabb027f7bf074337f95eb309", "fields": {"nom_de_la_commune": "AUXONNE", "libell_d_acheminement": "AUXONNE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21038"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a9b135fb8dbb03ad2f96652f5a08ab1bf83d17", "fields": {"nom_de_la_commune": "AVOSNES", "libell_d_acheminement": "AVOSNES", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21040"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4740b6eb8c9b5140d931ed9bd9f4bccb842e3b8a", "fields": {"nom_de_la_commune": "BARD LES EPOISSES", "libell_d_acheminement": "BARD LES EPOISSES", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21047"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9394928ae59d5cc7c1e474ecf411b46c5a11316", "fields": {"nom_de_la_commune": "BEIRE LE FORT", "libell_d_acheminement": "BEIRE LE FORT", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21057"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4f71670e244fe3b3a393a97d942005fd9fe811d", "fields": {"nom_de_la_commune": "BELLEFOND", "libell_d_acheminement": "BELLEFOND", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21059"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbab7eda5df763bc5d47ee1fa4dc35931932e2ab", "fields": {"nom_de_la_commune": "BELLENOT SOUS POUILLY", "libell_d_acheminement": "BELLENOT SOUS POUILLY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21062"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c010e4e0034780d8a964168ed44be07024ff4285", "fields": {"nom_de_la_commune": "BENOISEY", "libell_d_acheminement": "BENOISEY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21064"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc75d769839bb75887a892c2c001c9ee251ab24a", "fields": {"nom_de_la_commune": "BESSEY LA COUR", "libell_d_acheminement": "BESSEY LA COUR", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21066"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "500180f15ef6fa11d46008be67dee92ff9a52ba8", "fields": {"nom_de_la_commune": "BEVY", "libell_d_acheminement": "BEVY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21070"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b9b7471b5625478285440e4856a86a77dd65a3", "fields": {"nom_de_la_commune": "BILLEY", "libell_d_acheminement": "BILLEY", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21074"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4db8ef6252b05b19f9bc98d86f760e2e0060c6", "fields": {"code_postal": "21690", "code_commune_insee": "21084", "libell_d_acheminement": "SOURCE SEINE", "ligne_5": "ST GERMAIN SOURCE SEINE", "nom_de_la_commune": "SOURCE SEINE", "coordonnees_gps": [47.4529535112, 4.67833071213]}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9264305f42392622afb120d0a5b9bf7a72cc95bd", "fields": {"nom_de_la_commune": "BOURBERAIN", "libell_d_acheminement": "BOURBERAIN", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21094"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0431e5d8734339dda85969fdbe32fc6fa96cd3e7", "fields": {"nom_de_la_commune": "BOUX SOUS SALMAISE", "libell_d_acheminement": "BOUX SOUS SALMAISE", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21098"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "948d4de754bb66aa6ffabce94e5619d5165ba9eb", "fields": {"nom_de_la_commune": "BOUZE LES BEAUNE", "libell_d_acheminement": "BOUZE LES BEAUNE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21099"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f23b17d3860b5bf8f81357c2114551fb7e3858", "fields": {"nom_de_la_commune": "BRAUX", "libell_d_acheminement": "BRAUX", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21101"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90135bd1caca3d17b1f99955bb926fa995809fda", "fields": {"nom_de_la_commune": "BRION SUR OURCE", "libell_d_acheminement": "BRION SUR OURCE BELAN", "code_postal": "21570", "coordonnees_gps": [47.9722434237, 4.63863087175], "code_commune_insee": "21109"}, "geometry": {"type": "Point", "coordinates": [4.63863087175, 47.9722434237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de017afccf788af5d1144c4dfd52dadb73cb6a70", "fields": {"nom_de_la_commune": "BROCHON", "libell_d_acheminement": "BROCHON", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21110"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec067bf2eae0fa9a60341aaee001e66f1c74b9b", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21119"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3177029b9748aeb13b9c86a8ab67fb83d3720253", "fields": {"nom_de_la_commune": "CHAIGNAY", "libell_d_acheminement": "CHAIGNAY", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21127"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5643e19d399ce7f953d6d6d8fb1f860e6bc467ea", "fields": {"nom_de_la_commune": "CHAMBAIN", "libell_d_acheminement": "CHAMBAIN", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21129"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52609d49d8544188b0c9a8e927fccaae94b1c0a2", "fields": {"nom_de_la_commune": "CHAMBOEUF", "libell_d_acheminement": "CHAMBOEUF", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21132"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7398e5d4e1e1a12cf33a139c22dce8e4584ef72", "fields": {"nom_de_la_commune": "CHAMESSON", "libell_d_acheminement": "CHAMESSON", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21134"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1afbdda805b5acb7951a9afbd991c1ef1651a706", "fields": {"nom_de_la_commune": "CHAMPEAU EN MORVAN", "libell_d_acheminement": "CHAMPEAU EN MORVAN", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21139"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f77c302d57b85cba1c33959ffa5126581887100c", "fields": {"nom_de_la_commune": "CHANCEAUX", "libell_d_acheminement": "CHANCEAUX", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21142"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44576ad603353355147e9d07dae13e49da83da8b", "fields": {"nom_de_la_commune": "CHANNAY", "libell_d_acheminement": "CHANNAY", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21143"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc42caeadde068cee4246c73ccaaafa4625d1a1d", "fields": {"nom_de_la_commune": "CHARMES", "libell_d_acheminement": "CHARMES", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21146"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb719eb84c482b4e040360e7184acb8223a7234", "fields": {"nom_de_la_commune": "CHARREY SUR SAONE", "libell_d_acheminement": "CHARREY SUR SAONE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21148"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b820869e535e4871261fdee3e94d57d19f8e12", "fields": {"nom_de_la_commune": "CHAZEUIL", "libell_d_acheminement": "CHAZEUIL", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21163"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60186eae7e3083698ad1e398c3066e4b151c501", "fields": {"nom_de_la_commune": "CHAZILLY", "libell_d_acheminement": "CHAZILLY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21164"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01e7e89ced0e5533129b21e92c5c7979c8020c22", "fields": {"nom_de_la_commune": "CLAMEREY", "libell_d_acheminement": "CLAMEREY", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21177"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be29e767e9bf50960f42bbf2b78c353deb333e1", "fields": {"nom_de_la_commune": "COLLONGES LES BEVY", "libell_d_acheminement": "COLLONGES LES BEVY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21182"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d7d1ae41c8d9dc36ec0eb83bdc62cfcacb9ed11", "fields": {"nom_de_la_commune": "COLOMBIER", "libell_d_acheminement": "COLOMBIER", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21184"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a5d9e9f69f01865f1283f531bceb209e78a45a3", "fields": {"nom_de_la_commune": "COMMARIN", "libell_d_acheminement": "COMMARIN", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21187"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2613ce2b89d49c081fb878258874f3d10b72b059", "fields": {"nom_de_la_commune": "CORCELLES LES MONTS", "libell_d_acheminement": "CORCELLES LES MONTS", "code_postal": "21160", "coordonnees_gps": [47.2786553108, 4.96453888127], "code_commune_insee": "21192"}, "geometry": {"type": "Point", "coordinates": [4.96453888127, 47.2786553108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec31fc2d7b6c17eec31ad204b839a90395304f30", "fields": {"nom_de_la_commune": "COURCELLES LES SEMUR", "libell_d_acheminement": "COURCELLES LES SEMUR", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21205"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a0be980439466ff66101e9d6ed06c10c86a61f7", "fields": {"nom_de_la_commune": "CRUGEY", "libell_d_acheminement": "CRUGEY", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21214"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef3a3f27243305478a154663295846e52c60e92", "fields": {"nom_de_la_commune": "CULETRE", "libell_d_acheminement": "CULETRE", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21216"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "619af70f1d84fd0a99ac1b5a97b576acb549323e", "fields": {"nom_de_la_commune": "DETAIN ET BRUANT", "libell_d_acheminement": "DETAIN ET BRUANT", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21228"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de365ef036311c34e856c4f4bc98137866bfe887", "fields": {"nom_de_la_commune": "DUESME", "libell_d_acheminement": "DUESME", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21235"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "731524d83f0956248e49836b98aa167cdaed7952", "fields": {"nom_de_la_commune": "EBATY", "libell_d_acheminement": "EBATY", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21236"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5130659cac63c67f6a0c2724b3012d0060ab5efa", "fields": {"nom_de_la_commune": "ESBARRES", "libell_d_acheminement": "ESBARRES", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21249"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "284e26d1787b8b642d58e37a4b1b92b8b000c763", "fields": {"nom_de_la_commune": "ESSAROIS", "libell_d_acheminement": "ESSAROIS", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21250"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854c590a246d7c912eef7f1672cd7fcc3a367799", "fields": {"nom_de_la_commune": "FAUVERNEY", "libell_d_acheminement": "FAUVERNEY", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21261"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf45bad8efe8cfb1e60d9d71f155596ff07c1340", "fields": {"nom_de_la_commune": "FONTAINE FRANCAISE", "libell_d_acheminement": "FONTAINE FRANCAISE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21277"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f65d1f61f3534711a90ff1081f202f83a8ea37b", "fields": {"nom_de_la_commune": "FUSSEY", "libell_d_acheminement": "FUSSEY", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21289"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8758a316162628837302b509ad72ddae50104b6", "fields": {"nom_de_la_commune": "GERGUEIL", "libell_d_acheminement": "GERGUEIL", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21293"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea758c6da5a7f3b1ca4a23b6eef92ad2465f5d72", "fields": {"nom_de_la_commune": "GERLAND", "libell_d_acheminement": "GERLAND", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21294"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42929b5d3e421540abe4c101ebdc5b42c721f438", "fields": {"nom_de_la_commune": "GEVROLLES", "libell_d_acheminement": "GEVROLLES", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21296"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0f0512815dbf2557e02391b5086b5b5792cffcf", "fields": {"nom_de_la_commune": "GISSEY SUR OUCHE", "libell_d_acheminement": "GISSEY SUR OUCHE", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21300"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a9e70dce4f89d73c3c8cdfd31af4e808486988a", "fields": {"nom_de_la_commune": "GOMMEVILLE", "libell_d_acheminement": "GOMMEVILLE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21302"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b001d540d7d4d69541d5c86c12ffaa642295052f", "fields": {"nom_de_la_commune": "GRIGNON", "libell_d_acheminement": "GRIGNON", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21308"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "792d774cfbd5d4de87e9e68e90efb4abf0494101", "fields": {"nom_de_la_commune": "GROSBOIS EN MONTAGNE", "libell_d_acheminement": "GROSBOIS EN MONTAGNE", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21310"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4432abcb5a3c2978ab3b7c5469c0c13754fe50", "fields": {"nom_de_la_commune": "GROSBOIS LES TICHEY", "libell_d_acheminement": "GROSBOIS LES TICHEY", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21311"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7684cce5403d5ec327097179fd464f5b125344d8", "fields": {"nom_de_la_commune": "GURGY LA VILLE", "libell_d_acheminement": "GURGY LA VILLE", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21312"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fff3bb3105c00451a7b849e0f7a9456ab9771d6b", "fields": {"nom_de_la_commune": "HEUILLEY SUR SAONE", "libell_d_acheminement": "HEUILLEY SUR SAONE", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21316"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7bedb90070e5e989f0bbf261b90c3a0237d14af", "fields": {"nom_de_la_commune": "LABERGEMENT LES AUXONNE", "libell_d_acheminement": "LABERGEMENT LES AUXONNE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21331"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "289c11b8ce9f8672934ef79149c72a9dca4a322d", "fields": {"nom_de_la_commune": "LIGNEROLLES", "libell_d_acheminement": "LIGNEROLLES", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21350"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7335af39f958c1e6a9181efc2c8f6a5dfaa3b459", "fields": {"nom_de_la_commune": "LA REMUEE", "libell_d_acheminement": "LA REMUEE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76522"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8bbcd3f0ad8c37ffe7c2a9218a9e3fa7861dd10", "fields": {"nom_de_la_commune": "RIEUX", "libell_d_acheminement": "RIEUX", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76528"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eaf1192b81f8a1cfcb2d49b9d19f7dc22c95b1e", "fields": {"nom_de_la_commune": "RIVILLE", "libell_d_acheminement": "RIVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76529"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a914a6d6171cf2cd25f39f1275c4bf1dde16479d", "fields": {"nom_de_la_commune": "ROGERVILLE", "libell_d_acheminement": "ROGERVILLE", "code_postal": "76700", "coordonnees_gps": [49.4973035255, 0.236903290282], "code_commune_insee": "76533"}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ad0d5cafd910c2485790a00ccc439b962afaf73", "fields": {"nom_de_la_commune": "ROSAY", "libell_d_acheminement": "ROSAY", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76538"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75c281b6e9efc77df70c78b6d0ec10455813f91", "fields": {"nom_de_la_commune": "ROUMARE", "libell_d_acheminement": "ROUMARE", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76541"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51df0552bb3cb6b10eded63654ecf814e5070acd", "fields": {"nom_de_la_commune": "ROUVILLE", "libell_d_acheminement": "ROUVILLE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76543"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cd854962efeb2764bbbe348bc23399ac615291e", "fields": {"nom_de_la_commune": "LA RUE ST PIERRE", "libell_d_acheminement": "LA RUE ST PIERRE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76547"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d30ac67b42d5842bfd66225681fc0896373ad946", "fields": {"nom_de_la_commune": "STE ADRESSE", "libell_d_acheminement": "STE ADRESSE", "code_postal": "76310", "coordonnees_gps": [49.5104290594, 0.0781692610368], "code_commune_insee": "76552"}, "geometry": {"type": "Point", "coordinates": [0.0781692610368, 49.5104290594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d8092a1c1a21acc761fc209a74e99a93ea9363", "fields": {"nom_de_la_commune": "ST AIGNAN SUR RY", "libell_d_acheminement": "ST AIGNAN SUR RY", "code_postal": "76116", "coordonnees_gps": [49.4774300897, 1.31326170065], "code_commune_insee": "76554"}, "geometry": {"type": "Point", "coordinates": [1.31326170065, 49.4774300897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a8e4e93537144fa06b39b57deb2c70eef42095", "fields": {"nom_de_la_commune": "ST ANTOINE LA FORET", "libell_d_acheminement": "ST ANTOINE LA FORET", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76556"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f101d5b692ce4fc55d3d0464d49cb4456307a6c", "fields": {"nom_de_la_commune": "ST CRESPIN", "libell_d_acheminement": "ST CRESPIN", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76570"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72d688f15c22c360366d775d7a07624377092338", "fields": {"nom_de_la_commune": "ST EUSTACHE LA FORET", "libell_d_acheminement": "ST EUSTACHE LA FORET", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76576"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25059bd5b1679c19ffbc0803fdf10a1c0e165bb6", "fields": {"nom_de_la_commune": "ST JACQUES D ALIERMONT", "libell_d_acheminement": "ST JACQUES D ALIERMONT", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76590"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25c892fff1fbfe7398fbd86f226bbd5d8613ad12", "fields": {"nom_de_la_commune": "ST JOUIN BRUNEVAL", "libell_d_acheminement": "ST JOUIN BRUNEVAL", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76595"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee8f8032cf4d4098ad6fdc6cf6ad9320a824362", "fields": {"nom_de_la_commune": "ST LAURENT DE BREVEDENT", "libell_d_acheminement": "ST LAURENT DE BREVEDENT", "code_postal": "76700", "coordonnees_gps": [49.4973035255, 0.236903290282], "code_commune_insee": "76596"}, "geometry": {"type": "Point", "coordinates": [0.236903290282, 49.4973035255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4074bc67279ce881e80035bb6b988eb0f9dc48fc", "fields": {"nom_de_la_commune": "STE MARGUERITE SUR DUCLAIR", "libell_d_acheminement": "STE MARGUERITE SUR DUCLAIR", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76608"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d66cadd6690ea1782a9c8ccf7f040d26de6a08", "fields": {"code_postal": "76370", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "ST MARTIN EN CAMPAGNE", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9195191713, 1.14251674665]}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98aca3ab004144dc62732d14a85d94df505b7ad0", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "BRUNVILLE", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51a1d1cd4ef2e8f007715b57c019ab0254a07b5", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "GLICOURT", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e96dff41052f2792418647c1cf84dbb925c478", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "GOUCHAUPRE", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ea3b9f80b38071789326b0669b00da3872d3a3", "fields": {"nom_de_la_commune": "ST MICHEL D HALESCOURT", "libell_d_acheminement": "ST MICHEL D HALESCOURT", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76623"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0437c20baca8d6cf20f8026a3f7c71446e690fad", "fields": {"nom_de_la_commune": "ST NICOLAS DE LA TAILLE", "libell_d_acheminement": "ST NICOLAS DE LA TAILLE", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76627"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "682056e62d9c879b500fb84f143760f1226fe2c2", "fields": {"nom_de_la_commune": "ST OUEN LE MAUGER", "libell_d_acheminement": "ST OUEN LE MAUGER", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76629"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc165e6118d653992de78eeed7087234a9337b95", "fields": {"nom_de_la_commune": "ST PIERRE EN VAL", "libell_d_acheminement": "ST PIERRE EN VAL", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76638"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e00394e932003a04d9503d233c811c429d399a7", "fields": {"nom_de_la_commune": "ST PIERRE LES ELBEUF", "libell_d_acheminement": "ST PIERRE LES ELBEUF", "code_postal": "76320", "coordonnees_gps": [49.2796174465, 1.0395659245], "code_commune_insee": "76640"}, "geometry": {"type": "Point", "coordinates": [1.0395659245, 49.2796174465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "488243b99204e2495a6b1b393c85470da9646392", "fields": {"nom_de_la_commune": "ST ROMAIN DE COLBOSC", "libell_d_acheminement": "ST ROMAIN DE COLBOSC", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76647"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "397af1ef0dfefd7f05d6aa25b0bc47f9750ef608", "fields": {"nom_de_la_commune": "ST VAAST DU VAL", "libell_d_acheminement": "ST VAAST DU VAL", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76654"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86ba47003d2acf767a62d1a6a5f14fd40cb67fe", "fields": {"nom_de_la_commune": "ST VICTOR L ABBAYE", "libell_d_acheminement": "ST VICTOR L ABBAYE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76656"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "334be782acd349d0469099a41e5bfaea36a2e03d", "fields": {"nom_de_la_commune": "ST VIGOR D YMONVILLE", "libell_d_acheminement": "ST VIGOR D YMONVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76657"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "690f1297f43cd529c65375f3d495824fe605bb0f", "fields": {"nom_de_la_commune": "SAUSSAY", "libell_d_acheminement": "SAUSSAY", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76668"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76740bfa04b11552d48d266dd1eb22468e05e889", "fields": {"nom_de_la_commune": "SAUSSEUZEMARE EN CAUX", "libell_d_acheminement": "SAUSSEUZEMARE EN CAUX", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76669"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05465fc171584cd95b1b86c0c2b4fd4c24804774", "fields": {"nom_de_la_commune": "LE THIL RIBERPRE", "libell_d_acheminement": "LE THIL RIBERPRE", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76691"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41315b8a88e6803a47d5b9950c9310dd1c28322c", "fields": {"nom_de_la_commune": "TORCY LE GRAND", "libell_d_acheminement": "TORCY LE GRAND", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76697"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4342e26070dea0738c50a75840810ec8a34878fd", "fields": {"nom_de_la_commune": "TOUFFREVILLE SUR EU", "libell_d_acheminement": "TOUFFREVILLE SUR EU", "code_postal": "76910", "coordonnees_gps": [50.002581149, 1.30116674877], "code_commune_insee": "76703"}, "geometry": {"type": "Point", "coordinates": [1.30116674877, 50.002581149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a65f3ceabf76fecee59d9e55506f59a55518b4ba", "fields": {"nom_de_la_commune": "TOURVILLE LES IFS", "libell_d_acheminement": "TOURVILLE LES IFS", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76706"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80320580a831bf9a2f633302c1ec85de9c66ce17", "fields": {"nom_de_la_commune": "LE TREPORT", "libell_d_acheminement": "LE TREPORT", "code_postal": "76470", "coordonnees_gps": [50.053047753, 1.37179917603], "code_commune_insee": "76711"}, "geometry": {"type": "Point", "coordinates": [1.37179917603, 50.053047753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "701b60551d0d2eb66db19e9cde725e7d50840480", "fields": {"nom_de_la_commune": "LA TRINITE DU MONT", "libell_d_acheminement": "LA TRINITE DU MONT", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76712"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a382a2637eb754392b4b177af3c4164b2c9e791", "fields": {"nom_de_la_commune": "VALLIQUERVILLE", "libell_d_acheminement": "VALLIQUERVILLE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76718"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a88c6c862721180f1154151a67a14ac7a91b5c1", "fields": {"nom_de_la_commune": "VATTEVILLE LA RUE", "libell_d_acheminement": "VATTEVILLE LA RUE", "code_postal": "76940", "coordonnees_gps": [49.4548266435, 0.725950851811], "code_commune_insee": "76727"}, "geometry": {"type": "Point", "coordinates": [0.725950851811, 49.4548266435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd41f5e66961bb916d549e61bd8e0cc1ecee566f", "fields": {"nom_de_la_commune": "VEAUVILLE LES BAONS", "libell_d_acheminement": "VEAUVILLE LES BAONS", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76729"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ad338ee924bc6257a29a98a27b499c999bab25", "fields": {"nom_de_la_commune": "VEULES LES ROSES", "libell_d_acheminement": "VEULES LES ROSES", "code_postal": "76980", "coordonnees_gps": [49.8665948016, 0.785579468309], "code_commune_insee": "76735"}, "geometry": {"type": "Point", "coordinates": [0.785579468309, 49.8665948016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fbd4281f75c13b4cd6c145c40d910ee8b3bc52e", "fields": {"nom_de_la_commune": "VIBEUF", "libell_d_acheminement": "VIBEUF", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76737"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dae917864f87b268f077bcbee178d9fc01a3225", "fields": {"nom_de_la_commune": "VIEUX ROUEN SUR BRESLE", "libell_d_acheminement": "VIEUX ROUEN SUR BRESLE", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76739"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241a4f4cf5ed0728f5499cfc31cc7eede66bd25c", "fields": {"nom_de_la_commune": "VILLY SUR YERES", "libell_d_acheminement": "VILLY SUR YERES", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76745"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dc68ad8c6414bef816d868d855d688e9ad2f4ca", "fields": {"nom_de_la_commune": "VIRVILLE", "libell_d_acheminement": "VIRVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76747"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "247d9e37ad7d78f0a3fdcbddf077ebd988de8678", "fields": {"nom_de_la_commune": "YEBLERON", "libell_d_acheminement": "YEBLERON", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76751"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4ea1a842f3c860d1536bb84305dba272f5d2720", "fields": {"nom_de_la_commune": "YPREVILLE BIVILLE", "libell_d_acheminement": "YPREVILLE BIVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76755"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c13cf70eb5c490be1cd0a2aa7314843b6cd7a612", "fields": {"nom_de_la_commune": "YQUEBEUF", "libell_d_acheminement": "YQUEBEUF", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76756"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e7e9f5a85b2f11742d9426d9d433462c36f6d2e", "fields": {"nom_de_la_commune": "YVECRIQUE", "libell_d_acheminement": "YVECRIQUE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76757"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8e5136fa6f78dc2a8e79d83e874f5d22d75dcab", "fields": {"nom_de_la_commune": "ANNET SUR MARNE", "libell_d_acheminement": "ANNET SUR MARNE", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77005"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "097292eee381fae781e75b15917f696aa164fd78", "fields": {"nom_de_la_commune": "AUGERS EN BRIE", "libell_d_acheminement": "AUGERS EN BRIE", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77012"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ae7a60da572137b163148d704ebe39d322adcec", "fields": {"nom_de_la_commune": "AULNOY", "libell_d_acheminement": "AULNOY", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77013"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2cc2eab3932d2e23af0c091786908bd2a52e49", "fields": {"nom_de_la_commune": "BABY", "libell_d_acheminement": "BABY", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77015"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb2d53d486a9cc624c1bd915bbec7ab26afe0a5", "fields": {"nom_de_la_commune": "BAGNEAUX SUR LOING", "libell_d_acheminement": "BAGNEAUX SUR LOING", "code_postal": "77167", "coordonnees_gps": [48.2322771865, 2.71472288232], "code_commune_insee": "77016"}, "geometry": {"type": "Point", "coordinates": [2.71472288232, 48.2322771865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "760d21e2b12a24fd626400a83104d850efd48799", "fields": {"nom_de_la_commune": "MOREILLES", "libell_d_acheminement": "MOREILLES", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85149"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8929be64031b77d63c19090bc09da5846a69f51", "fields": {"nom_de_la_commune": "MOUILLERON LE CAPTIF", "libell_d_acheminement": "MOUILLERON LE CAPTIF", "code_postal": "85000", "coordonnees_gps": [46.6755378751, -1.41824284991], "code_commune_insee": "85155"}, "geometry": {"type": "Point", "coordinates": [-1.41824284991, 46.6755378751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34df9276062ab64b9086dac1d39158565002ab9f", "fields": {"nom_de_la_commune": "NALLIERS", "libell_d_acheminement": "NALLIERS", "code_postal": "85370", "coordonnees_gps": [46.4559323698, -0.995832045807], "code_commune_insee": "85159"}, "geometry": {"type": "Point", "coordinates": [-0.995832045807, 46.4559323698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb71e1c557dae72b43924382f220c35b6858d038", "fields": {"nom_de_la_commune": "PETOSSE", "libell_d_acheminement": "PETOSSE", "code_postal": "85570", "coordonnees_gps": [46.5155310965, -0.917757791759], "code_commune_insee": "85174"}, "geometry": {"type": "Point", "coordinates": [-0.917757791759, 46.5155310965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d8621a0d8a71951c6cf8668c5727c19b650596", "fields": {"nom_de_la_commune": "POIROUX", "libell_d_acheminement": "POIROUX", "code_postal": "85440", "coordonnees_gps": [46.491465438, -1.58784266413], "code_commune_insee": "85179"}, "geometry": {"type": "Point", "coordinates": [-1.58784266413, 46.491465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6e80be05e5270795c4374556e5cd6e5d8de95d1", "fields": {"nom_de_la_commune": "POUZAUGES", "libell_d_acheminement": "POUZAUGES", "code_postal": "85700", "coordonnees_gps": [46.7673763224, -0.80165823115], "code_commune_insee": "85182"}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84e2da1cb2c2c9c580708532347b4e69b7e89473", "fields": {"nom_de_la_commune": "LA REORTHE", "libell_d_acheminement": "LA REORTHE", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85188"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b1d83a375870594ba36e7f4d31793fc42024b8", "fields": {"nom_de_la_commune": "LES SABLES D OLONNE", "libell_d_acheminement": "LES SABLES D OLONNE", "code_postal": "85100", "coordonnees_gps": [46.5007435544, -1.79267767146], "code_commune_insee": "85194"}, "geometry": {"type": "Point", "coordinates": [-1.79267767146, 46.5007435544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "421861f4ee6d0cf218f4ba3243dc33e04a1fa55a", "fields": {"nom_de_la_commune": "ST ANDRE GOULE D OIE", "libell_d_acheminement": "ST ANDRE GOULE D OIE", "code_postal": "85250", "coordonnees_gps": [46.8659519068, -1.19415705359], "code_commune_insee": "85196"}, "geometry": {"type": "Point", "coordinates": [-1.19415705359, 46.8659519068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "617ef46d7e0e25a39e2ae6ae34f2eb04f0804691", "fields": {"code_postal": "85260", "code_commune_insee": "85197", "libell_d_acheminement": "MONTREVERD", "ligne_5": "MORMAISON", "nom_de_la_commune": "MONTREVERD", "coordonnees_gps": [46.8968914818, -1.35853673733]}, "geometry": {"type": "Point", "coordinates": [-1.35853673733, 46.8968914818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cee8f0e12a9de4756a5583320c1eeadcd69c6b27", "fields": {"nom_de_la_commune": "ST AVAUGOURD DES LANDES", "libell_d_acheminement": "ST AVAUGOURD DES LANDES", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85200"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f577295aef23a0b6b21572da2db823f83fe4818c", "fields": {"code_postal": "85310", "code_commune_insee": "85213", "libell_d_acheminement": "RIVES DE L YON", "ligne_5": "CHAILLE SOUS LES ORMEAUX", "nom_de_la_commune": "RIVES DE L YON", "coordonnees_gps": [46.6268805827, -1.33228683205]}, "geometry": {"type": "Point", "coordinates": [-1.33228683205, 46.6268805827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c427d465f1ee8f203f042bc95070cfef4dec45", "fields": {"nom_de_la_commune": "ST FULGENT", "libell_d_acheminement": "ST FULGENT", "code_postal": "85250", "coordonnees_gps": [46.8659519068, -1.19415705359], "code_commune_insee": "85215"}, "geometry": {"type": "Point", "coordinates": [-1.19415705359, 46.8659519068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a0e33664aa1b2ea60c5a50aaa9c904e04894ae6", "fields": {"nom_de_la_commune": "ST GEORGES DE MONTAIGU", "libell_d_acheminement": "ST GEORGES DE MONTAIGU", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85217"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efe2bfe7e7b0a921334e50b3bc9345435db23884", "fields": {"nom_de_la_commune": "STE HERMINE", "libell_d_acheminement": "STE HERMINE", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85223"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c2bb39b89f48713108b8f62fb8654fbe9e8f379", "fields": {"nom_de_la_commune": "ST HILAIRE DE LOULAY", "libell_d_acheminement": "ST HILAIRE DE LOULAY", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85224"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2864b10258893617affb1adc412ce24b5ec0485", "fields": {"nom_de_la_commune": "ST HILAIRE DES LOGES", "libell_d_acheminement": "ST HILAIRE DES LOGES", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85227"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b04139396bec59af70ef4547669612a6494da9", "fields": {"nom_de_la_commune": "ST JULIEN DES LANDES", "libell_d_acheminement": "ST JULIEN DES LANDES", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85236"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "369fcb756b311c26918635e3aa7bade50352c546", "fields": {"nom_de_la_commune": "ST MALO DU BOIS", "libell_d_acheminement": "ST MALO DU BOIS", "code_postal": "85590", "coordonnees_gps": [46.9002620451, -0.893697595044], "code_commune_insee": "85240"}, "geometry": {"type": "Point", "coordinates": [-0.893697595044, 46.9002620451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51da6c346aa5364c0b986f32f716de78d1fe41b1", "fields": {"nom_de_la_commune": "BREM SUR MER", "libell_d_acheminement": "BREM SUR MER", "code_postal": "85470", "coordonnees_gps": [46.62852373, -1.84475847528], "code_commune_insee": "85243"}, "geometry": {"type": "Point", "coordinates": [-1.84475847528, 46.62852373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60dc9d5efc4ef0dc8616826f97514a13d1037c36", "fields": {"nom_de_la_commune": "ST MARTIN DE FRAIGNEAU", "libell_d_acheminement": "ST MARTIN DE FRAIGNEAU", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85244"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76dc4520eb34bcf77e37c8e82d407eb29a9c76c", "fields": {"nom_de_la_commune": "ST MARTIN DES FONTAINES", "libell_d_acheminement": "ST MARTIN DES FONTAINES", "code_postal": "85570", "coordonnees_gps": [46.5155310965, -0.917757791759], "code_commune_insee": "85245"}, "geometry": {"type": "Point", "coordinates": [-0.917757791759, 46.5155310965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffd5c3a76c6878c81cd6c3057234c962dde0f1f6", "fields": {"nom_de_la_commune": "ST MARTIN DES NOYERS", "libell_d_acheminement": "ST MARTIN DES NOYERS", "code_postal": "85140", "coordonnees_gps": [46.7759741039, -1.24043269403], "code_commune_insee": "85246"}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7ce8e88d9d30f9f33dc92e5a1a101247ca0d17", "fields": {"nom_de_la_commune": "ST MARTIN DES TILLEULS", "libell_d_acheminement": "ST MARTIN DES TILLEULS", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85247"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602a836b067c4391de5e25ee66ea26ccc5a3f365", "fields": {"nom_de_la_commune": "ST MAURICE LE GIRARD", "libell_d_acheminement": "ST MAURICE LE GIRARD", "code_postal": "85390", "coordonnees_gps": [46.6728627352, -0.866891813869], "code_commune_insee": "85252"}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42739c02ca8ac1cc946bb067f3e62e16d54b3acc", "fields": {"nom_de_la_commune": "ST MICHEL EN L HERM", "libell_d_acheminement": "ST MICHEL EN L HERM", "code_postal": "85580", "coordonnees_gps": [46.3690753878, -1.25485668311], "code_commune_insee": "85255"}, "geometry": {"type": "Point", "coordinates": [-1.25485668311, 46.3690753878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c838a63d6f0efc0cd82393ef8b0598b0b54d77", "fields": {"nom_de_la_commune": "ST PAUL MONT PENIT", "libell_d_acheminement": "ST PAUL MONT PENIT", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85260"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "737196a38132fc936b2b76d0b478a27dd5a87375", "fields": {"nom_de_la_commune": "ST PIERRE LE VIEUX", "libell_d_acheminement": "ST PIERRE LE VIEUX", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85265"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b5872ec93844e7d0fd6318a4f46825e7d3e0c8e", "fields": {"nom_de_la_commune": "ST PROUANT", "libell_d_acheminement": "ST PROUANT", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85266"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60bff44dd1270af9e24bd6ac72612bb0999568f", "fields": {"nom_de_la_commune": "ST VINCENT SUR GRAON", "libell_d_acheminement": "ST VINCENT SUR GRAON", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85277"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fff2d34254bed4a0a97709df137dcf31101cfde", "fields": {"nom_de_la_commune": "ST VINCENT SUR JARD", "libell_d_acheminement": "ST VINCENT SUR JARD", "code_postal": "85520", "coordonnees_gps": [46.4271885, -1.57623760346], "code_commune_insee": "85278"}, "geometry": {"type": "Point", "coordinates": [-1.57623760346, 46.4271885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "432cc0d83ca68671c64ad4c363db90e2cad25197", "fields": {"nom_de_la_commune": "SOULLANS", "libell_d_acheminement": "SOULLANS", "code_postal": "85300", "coordonnees_gps": [46.8368087633, -1.89265677262], "code_commune_insee": "85284"}, "geometry": {"type": "Point", "coordinates": [-1.89265677262, 46.8368087633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d27b9cf2e51fde47abd23d0be0197516e4c5fad", "fields": {"nom_de_la_commune": "LE TABLIER", "libell_d_acheminement": "LE TABLIER", "code_postal": "85310", "coordonnees_gps": [46.6268805827, -1.33228683205], "code_commune_insee": "85285"}, "geometry": {"type": "Point", "coordinates": [-1.33228683205, 46.6268805827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fae0df132c672d17a6c86365a432b8ff6ebc27ec", "fields": {"nom_de_la_commune": "TRIAIZE", "libell_d_acheminement": "TRIAIZE", "code_postal": "85580", "coordonnees_gps": [46.3690753878, -1.25485668311], "code_commune_insee": "85297"}, "geometry": {"type": "Point", "coordinates": [-1.25485668311, 46.3690753878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e50a5d61190573574e05e6643f32b7dc198436", "fields": {"nom_de_la_commune": "VENANSAULT", "libell_d_acheminement": "VENANSAULT", "code_postal": "85190", "coordonnees_gps": [46.7206565452, -1.60345832347], "code_commune_insee": "85300"}, "geometry": {"type": "Point", "coordinates": [-1.60345832347, 46.7206565452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "145bc0eea0559e39e845b2fa73ee3ac24ee26840", "fields": {"nom_de_la_commune": "ANTRAN", "libell_d_acheminement": "ANTRAN", "code_postal": "86100", "coordonnees_gps": [46.825162468, 0.575853305257], "code_commune_insee": "86007"}, "geometry": {"type": "Point", "coordinates": [0.575853305257, 46.825162468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7ca7637f30beba25e0f48116cf179c27474256", "fields": {"nom_de_la_commune": "ASNIERES SUR BLOUR", "libell_d_acheminement": "ASNIERES SUR BLOUR", "code_postal": "86430", "coordonnees_gps": [46.2180968835, 0.782184483066], "code_commune_insee": "86011"}, "geometry": {"type": "Point", "coordinates": [0.782184483066, 46.2180968835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d5bed32b3b4a8e5016bef7643d8e8f5b67b1ced", "fields": {"nom_de_la_commune": "BERTHEGON", "libell_d_acheminement": "BERTHEGON", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86023"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "093123e5ad26b5897e13f20cafe8fcbc6db63a11", "fields": {"nom_de_la_commune": "BERUGES", "libell_d_acheminement": "BERUGES", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86024"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1702f94771ee9d53b1c1abb829be2f7b03326b2f", "fields": {"nom_de_la_commune": "BEUXES", "libell_d_acheminement": "BEUXES", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86026"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efa2b6959f7f62bed45cce22565ccc00f4bdd9a", "fields": {"nom_de_la_commune": "BLANZAY", "libell_d_acheminement": "BLANZAY", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86029"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c363f024cd1e8c65db36a6c0946be9b74c581bf2", "fields": {"nom_de_la_commune": "BLASLAY", "libell_d_acheminement": "BLASLAY", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86030"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a659854cb8a0d0374001280f055fa2277059d311", "fields": {"nom_de_la_commune": "BONNES", "libell_d_acheminement": "BONNES", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86031"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c1a260961d4eb448cc6d8befac278ba6c35e2d3", "fields": {"nom_de_la_commune": "BOURESSE", "libell_d_acheminement": "BOURESSE", "code_postal": "86410", "coordonnees_gps": [46.402745465, 0.573301169614], "code_commune_insee": "86034"}, "geometry": {"type": "Point", "coordinates": [0.573301169614, 46.402745465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a39a177badd1784a4c809eb66fd3cc29aca08ad", "fields": {"nom_de_la_commune": "BOURG ARCHAMBAULT", "libell_d_acheminement": "BOURG ARCHAMBAULT", "code_postal": "86390", "coordonnees_gps": [46.3309224625, 0.955276450825], "code_commune_insee": "86035"}, "geometry": {"type": "Point", "coordinates": [0.955276450825, 46.3309224625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208e55aa8ceaa671a2aaf8fbb05e4ba1961c1c8f", "fields": {"nom_de_la_commune": "VERSAINVILLE", "libell_d_acheminement": "VERSAINVILLE", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14737"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d74d37636888110ca790109a34d6d9be1921556", "fields": {"nom_de_la_commune": "VIEUX FUME", "libell_d_acheminement": "VIEUX FUME", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14749"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f790261e72d784bfbd8cf78322351e1245b8377", "fields": {"nom_de_la_commune": "VIEUX PONT EN AUGE", "libell_d_acheminement": "VIEUX PONT EN AUGE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14750"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45df077c4f2c4872e2bb5b37942dcbba62f91150", "fields": {"nom_de_la_commune": "VILLERS SUR MER", "libell_d_acheminement": "VILLERS SUR MER", "code_postal": "14640", "coordonnees_gps": [49.3070612081, -0.000385070160039], "code_commune_insee": "14754"}, "geometry": {"type": "Point", "coordinates": [-0.000385070160039, 49.3070612081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1ce795c91a67ee33b124248dab5a1375bd2411d", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "COULONCES", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf00ffb370f0616ea0f423355c57c3f4d67ac2a4", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "LA LANDE VAUMONT", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95676c9e6cd36d27df6e1b9f7add6a1c4c57fe1d", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "MAISONCELLES LA JOURDAN", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc20060769c11ec3df3707ff7111df3e7e3274b", "fields": {"code_postal": "14500", "code_commune_insee": "14762", "libell_d_acheminement": "VIRE NORMANDIE", "ligne_5": "TRUTTEMER LE GRAND", "nom_de_la_commune": "VIRE NORMANDIE", "coordonnees_gps": [48.8626699859, -0.904614638013]}, "geometry": {"type": "Point", "coordinates": [-0.904614638013, 48.8626699859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b3f0fcab88f7101168719f25d8d9de80082f2bb", "fields": {"nom_de_la_commune": "ALLY", "libell_d_acheminement": "ALLY", "code_postal": "15700", "coordonnees_gps": [45.1474212799, 2.26638957361], "code_commune_insee": "15003"}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "070732fc051b987ac76dafc7da76ac6f703fe4c1", "fields": {"code_postal": "15700", "code_commune_insee": "15003", "libell_d_acheminement": "ALLY", "ligne_5": "DRIGNAC", "nom_de_la_commune": "ALLY", "coordonnees_gps": [45.1474212799, 2.26638957361]}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb44451ed1039dd38e65bbf8ac6865048409b152", "fields": {"nom_de_la_commune": "ANTERRIEUX", "libell_d_acheminement": "ANTERRIEUX", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15007"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd2e8fd1e1cf591ee6523b1eff08a3ff2683b4ab", "fields": {"nom_de_la_commune": "ARPAJON SUR CERE", "libell_d_acheminement": "ARPAJON SUR CERE", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15012"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46bd00dfc2758af86df31d6edc4fde3d37e7bc6a", "fields": {"nom_de_la_commune": "AURIAC L EGLISE", "libell_d_acheminement": "AURIAC L EGLISE", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15013"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77afd5ab4400df74f9e7f79b69ae795066e6f1ac", "fields": {"nom_de_la_commune": "CASSANIOUZE", "libell_d_acheminement": "CASSANIOUZE", "code_postal": "15340", "coordonnees_gps": [44.6960347495, 2.36319520573], "code_commune_insee": "15029"}, "geometry": {"type": "Point", "coordinates": [2.36319520573, 44.6960347495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2415fcd63dbf0ceaba7246cd6a8138b40234fcf4", "fields": {"nom_de_la_commune": "CELLES", "libell_d_acheminement": "CELLES", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15031"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f13bd6de54f6f57e44f66249c50a8fb94ba4bd75", "fields": {"nom_de_la_commune": "CHAMPAGNAC", "libell_d_acheminement": "CHAMPAGNAC", "code_postal": "15350", "coordonnees_gps": [45.360785771, 2.38882162229], "code_commune_insee": "15037"}, "geometry": {"type": "Point", "coordinates": [2.38882162229, 45.360785771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7997fa0c04c388ff3f2da6e314db365e13f094e8", "fields": {"nom_de_la_commune": "CHANTERELLE", "libell_d_acheminement": "CHANTERELLE", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15040"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f9c5c2315736bd0d675fa5b1f01559011cf972", "fields": {"nom_de_la_commune": "LA CHAPELLE LAURENT", "libell_d_acheminement": "LA CHAPELLE LAURENT", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15042"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67ab202c6e4781132a15bcd3848c7119e62b3743", "fields": {"nom_de_la_commune": "CLAVIERES", "libell_d_acheminement": "CLAVIERES", "code_postal": "15320", "coordonnees_gps": [44.9755512909, 3.25916489345], "code_commune_insee": "15051"}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e82f3959144738ba3fbe5ca42ae395784bfc045", "fields": {"nom_de_la_commune": "COLTINES", "libell_d_acheminement": "COLTINES", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15053"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc173ffecc32dadaf76e821cefb41906199fce38", "fields": {"nom_de_la_commune": "CRANDELLES", "libell_d_acheminement": "CRANDELLES", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15056"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad1517a63ea71724bb5278d7efc08cefd4d9678", "fields": {"nom_de_la_commune": "DEUX VERGES", "libell_d_acheminement": "DEUX VERGES", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15060"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7a19f658ee8ea3390f3380177aafabd82b4e3f", "fields": {"nom_de_la_commune": "LE FAU", "libell_d_acheminement": "LE FAU", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15067"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b500b6b1c2d067fd2688b90273aabe60c80a3e80", "fields": {"nom_de_la_commune": "FREIX ANGLARDS", "libell_d_acheminement": "FREIX ANGLARDS", "code_postal": "15310", "coordonnees_gps": [45.0470485491, 2.40091577072], "code_commune_insee": "15072"}, "geometry": {"type": "Point", "coordinates": [2.40091577072, 45.0470485491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d5cdaed246d9a3c7eafeb5219966db95f4cf06", "fields": {"nom_de_la_commune": "JALEYRAC", "libell_d_acheminement": "JALEYRAC", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15079"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "678fd0491938502a33b11d2270b140c17eaf4dcf", "fields": {"nom_de_la_commune": "LANDEYRAT", "libell_d_acheminement": "LANDEYRAT", "code_postal": "15160", "coordonnees_gps": [45.252065959, 2.92878213054], "code_commune_insee": "15091"}, "geometry": {"type": "Point", "coordinates": [2.92878213054, 45.252065959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b3747e6c1887a729c631ceb5643dbf85a6c6cb0", "fields": {"nom_de_la_commune": "LAROQUEBROU", "libell_d_acheminement": "LAROQUEBROU", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15094"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f61105849ff56d96369b47d1d9acf8a0009622", "fields": {"nom_de_la_commune": "LAVEISSENET", "libell_d_acheminement": "LAVEISSENET", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15100"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59cae1f378f064b1b8302e8a2f630782682c6cff", "fields": {"code_postal": "15300", "code_commune_insee": "15101", "libell_d_acheminement": "LAVEISSIERE", "ligne_5": "LE LIORAN", "nom_de_la_commune": "LAVEISSIERE", "coordonnees_gps": [45.1198274459, 2.83644430028]}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b972811d97499ea06f1738f65862c1eb9d5b940", "fields": {"code_postal": "15300", "code_commune_insee": "15101", "libell_d_acheminement": "LAVEISSIERE", "ligne_5": "SUPER LIORAN", "nom_de_la_commune": "LAVEISSIERE", "coordonnees_gps": [45.1198274459, 2.83644430028]}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6883b679d24f8de92ec0353f9ab06475da89142a", "fields": {"nom_de_la_commune": "LEYVAUX", "libell_d_acheminement": "LEYVAUX", "code_postal": "43450", "coordonnees_gps": [45.3173196372, 3.16251134562], "code_commune_insee": "15105"}, "geometry": {"type": "Point", "coordinates": [3.16251134562, 45.3173196372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "428e17a1e29d8b43a01b0b4e4bdbbe5580f21599", "fields": {"nom_de_la_commune": "LORCIERES", "libell_d_acheminement": "LORCIERES", "code_postal": "15320", "coordonnees_gps": [44.9755512909, 3.25916489345], "code_commune_insee": "15107"}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dba24b9c6edd559e5406ce44ec64747b4cfe9d5", "fields": {"code_postal": "15320", "code_commune_insee": "15108", "libell_d_acheminement": "VAL D ARCOMIE", "ligne_5": "LOUBARESSE", "nom_de_la_commune": "VAL D ARCOMIE", "coordonnees_gps": [44.9755512909, 3.25916489345]}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d40882109bb60ac1c5c88b3b117a1a5bd2ca3fb", "fields": {"code_postal": "15590", "code_commune_insee": "15113", "libell_d_acheminement": "MANDAILLES ST JULIEN", "ligne_5": "ST JULIEN DE JORDANNE", "nom_de_la_commune": "MANDAILLES ST JULIEN", "coordonnees_gps": [45.0490320322, 2.61650882342]}, "geometry": {"type": "Point", "coordinates": [2.61650882342, 45.0490320322]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d62bd56680db516fbdfc93b1f6878c2518a9ff8", "fields": {"nom_de_la_commune": "MOLOMPIZE", "libell_d_acheminement": "MOLOMPIZE", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15127"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "124f04456b3f2af7230434e12a4d8c08064d092c", "fields": {"nom_de_la_commune": "MONTSALVY", "libell_d_acheminement": "MONTSALVY", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15134"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b851f43b24e631fa56a39035a3f32b579c430579", "fields": {"nom_de_la_commune": "NAUCELLES", "libell_d_acheminement": "NAUCELLES", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15140"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03cd963cc82f1cecc989b87200b91e5fbe3fc1c7", "fields": {"nom_de_la_commune": "NEUSSARGUES MOISSAC", "libell_d_acheminement": "NEUSSARGUES MOISSAC", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15141"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c27f3a2147fc8b0ca8dd44961520c837ed3fd48", "fields": {"nom_de_la_commune": "NEUVEGLISE", "libell_d_acheminement": "NEUVEGLISE", "code_postal": "15260", "coordonnees_gps": [44.930379785, 2.97483208251], "code_commune_insee": "15142"}, "geometry": {"type": "Point", "coordinates": [2.97483208251, 44.930379785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc3b9f9341993e28441992584ce9dc7487bdca62", "fields": {"code_postal": "15700", "code_commune_insee": "15153", "libell_d_acheminement": "PLEAUX", "ligne_5": "ST CHRISTOPHE LES GORGES", "nom_de_la_commune": "PLEAUX", "coordonnees_gps": [45.1474212799, 2.26638957361]}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd6b8580c6ca45034214662d5d89c119f76dc373", "fields": {"nom_de_la_commune": "PRUNET", "libell_d_acheminement": "PRUNET", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15156"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf2316aef867206c669a9da70349c0903caad49", "fields": {"nom_de_la_commune": "RAGEADE", "libell_d_acheminement": "RAGEADE", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15158"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "820021151e6946b48f85fb393a2e1a40a627ea11", "fields": {"nom_de_la_commune": "RAULHAC", "libell_d_acheminement": "RAULHAC", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15159"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0da878cb245a2d7dfaa49c5fe4b402e7241a3f4", "fields": {"nom_de_la_commune": "REILHAC", "libell_d_acheminement": "REILHAC", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15160"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a2a1c260ac29423bd1364b6033fffcaea1c58b", "fields": {"nom_de_la_commune": "SAIGNES", "libell_d_acheminement": "SAIGNES", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15169"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc96e8dbaf068108604f183b4291fdf6544ddbae", "fields": {"nom_de_la_commune": "ST ANTOINE", "libell_d_acheminement": "ST ANTOINE", "code_postal": "15220", "coordonnees_gps": [44.8209308768, 2.34473285638], "code_commune_insee": "15172"}, "geometry": {"type": "Point", "coordinates": [2.34473285638, 44.8209308768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb13c53dd5c755c585dfd94061d159966f0bbaaa", "fields": {"nom_de_la_commune": "ST CHAMANT", "libell_d_acheminement": "ST CHAMANT", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15176"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c17d53a9a55fbc4db7bc537d8dcbb4e7c9e8670", "fields": {"code_postal": "15600", "code_commune_insee": "15181", "libell_d_acheminement": "ST CONSTANT FOURNOULES", "ligne_5": "FOURNOULES", "nom_de_la_commune": "ST CONSTANT FOURNOULES", "coordonnees_gps": [44.7318470612, 2.22537453682]}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77cf9145051d542aa898843b1fa186a61a1256b3", "fields": {"nom_de_la_commune": "ST ETIENNE DE MAURS", "libell_d_acheminement": "ST ETIENNE DE MAURS", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15184"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05ed300dbc2e29a25a41d9be3a6df3a981753550", "fields": {"nom_de_la_commune": "ST MARTIN SOUS VIGOUROUX", "libell_d_acheminement": "ST MARTIN SOUS VIGOUROUX", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15201"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e46c7f2f87f2c28472307f4d275b03327e39cf56", "fields": {"nom_de_la_commune": "ST PROJET DE SALERS", "libell_d_acheminement": "ST PROJET DE SALERS", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15208"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afbca1037ab31514f09b6a4faadeca2a155bb6bd", "fields": {"nom_de_la_commune": "ST URCIZE", "libell_d_acheminement": "ST URCIZE", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15216"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a65f17d1c203c6a4a974be3b17e0d6bd6857ef3", "fields": {"nom_de_la_commune": "SALERS", "libell_d_acheminement": "SALERS", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15219"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11304ef9827f0fa18b976aaf1dd5b62f1e31a20d", "fields": {"nom_de_la_commune": "SALINS", "libell_d_acheminement": "SALINS", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15220"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93e1e47bf601f4eae152915e97ae6a544f28c2ac", "fields": {"nom_de_la_commune": "SAUVAT", "libell_d_acheminement": "SAUVAT", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15223"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e67731d0ca23cea57e0f914fd49d5eff22d4daa", "fields": {"nom_de_la_commune": "LA SEGALASSIERE", "libell_d_acheminement": "LA SEGALASSIERE", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15224"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6669ca9dd536c48e61a858fc38328b8858af5a28", "fields": {"nom_de_la_commune": "SIRAN", "libell_d_acheminement": "SIRAN", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15228"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40aee880dffdb3a8725ca7e338ac0986cce664d1", "fields": {"nom_de_la_commune": "TANAVELLE", "libell_d_acheminement": "TANAVELLE", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15232"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7d262e4a25e9815ae5a746704e21aebe74dccc", "fields": {"nom_de_la_commune": "TEISSIERES LES BOULIES", "libell_d_acheminement": "TEISSIERES LES BOULIES", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15234"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a9f4b22df49e817b020b0e653eeb36bbad0a6ed", "fields": {"nom_de_la_commune": "LES TERNES", "libell_d_acheminement": "LES TERNES", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15235"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25f73bcc403ff09fbaf3705d42aa8e0d7389243d", "fields": {"nom_de_la_commune": "VALETTE", "libell_d_acheminement": "VALETTE", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15246"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f23859d85eb8ddf9c98589061f32a13c3bff4a62", "fields": {"nom_de_la_commune": "VERNOLS", "libell_d_acheminement": "VERNOLS", "code_postal": "15160", "coordonnees_gps": [45.252065959, 2.92878213054], "code_commune_insee": "15253"}, "geometry": {"type": "Point", "coordinates": [2.92878213054, 45.252065959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bf23c88610cc1f9a4d19f3c210edc7f0cafad9f", "fields": {"nom_de_la_commune": "VIEILLEVIE", "libell_d_acheminement": "VIEILLEVIE", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15260"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ade5a0e98173b9d803b91c318a8f455787992f0", "fields": {"nom_de_la_commune": "YOLET", "libell_d_acheminement": "YOLET", "code_postal": "15130", "coordonnees_gps": [44.8791705563, 2.49073265119], "code_commune_insee": "15266"}, "geometry": {"type": "Point", "coordinates": [2.49073265119, 44.8791705563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57f58f53008da6fe6b6b868ec9063dd7d49b0738", "fields": {"nom_de_la_commune": "YTRAC", "libell_d_acheminement": "YTRAC", "code_postal": "15000", "coordonnees_gps": [44.9195092273, 2.3987245584], "code_commune_insee": "15267"}, "geometry": {"type": "Point", "coordinates": [2.3987245584, 44.9195092273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff5abbe173d1ad810f1e5008573a8945c15fb0a", "fields": {"nom_de_la_commune": "LES ADJOTS", "libell_d_acheminement": "LES ADJOTS", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16002"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e20456de4b355360819f6e6e9e9610f711508f46", "fields": {"nom_de_la_commune": "ALLOUE", "libell_d_acheminement": "ALLOUE", "code_postal": "16490", "coordonnees_gps": [46.0379756155, 0.534996364854], "code_commune_insee": "16007"}, "geometry": {"type": "Point", "coordinates": [0.534996364854, 46.0379756155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80c77369769e0620fd9e701f369f937a35d2780a", "fields": {"nom_de_la_commune": "BARBEZIERES", "libell_d_acheminement": "BARBEZIERES", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16027"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f4c2a8ec6d44161cbafeccaf1783c3ed0e726e", "fields": {"nom_de_la_commune": "BERNAC", "libell_d_acheminement": "BERNAC", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16039"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00ed053efba02d0fbf6549abcc75172be8c7f41c", "fields": {"nom_de_la_commune": "BESSAC", "libell_d_acheminement": "BESSAC", "code_postal": "16250", "coordonnees_gps": [45.4908805694, 0.0542614769759], "code_commune_insee": "16041"}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d136b4964e2fce2f12e02d18974ea2a207f470ab", "fields": {"nom_de_la_commune": "BOISBRETEAU", "libell_d_acheminement": "BOISBRETEAU", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16048"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934c12ea731c78da0799322980487b83f578cb84", "fields": {"nom_de_la_commune": "BOUEX", "libell_d_acheminement": "BOUEX", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16055"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f76d097eb639c17121da6972b4647858b57c9e63", "fields": {"nom_de_la_commune": "BRETTES", "libell_d_acheminement": "BRETTES", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16059"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a0c00de9e0bcdcbf9bae604f23024c69a0bc7e4", "fields": {"nom_de_la_commune": "BREVILLE", "libell_d_acheminement": "BREVILLE", "code_postal": "16370", "coordonnees_gps": [45.7599366195, -0.346092589002], "code_commune_insee": "16060"}, "geometry": {"type": "Point", "coordinates": [-0.346092589002, 45.7599366195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae9f0625fe81ca98fb68bdaa5de8a91e358a0fc", "fields": {"nom_de_la_commune": "BRIGUEUIL", "libell_d_acheminement": "BRIGUEUIL", "code_postal": "16420", "coordonnees_gps": [45.9795586086, 0.838157166739], "code_commune_insee": "16064"}, "geometry": {"type": "Point", "coordinates": [0.838157166739, 45.9795586086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ccd4841d5285c58a50972bb114084f2207ae262", "fields": {"nom_de_la_commune": "CELLETTES", "libell_d_acheminement": "CELLETTES", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16069"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3483a7fba6c9e94b6fa54bd6e92284e541d8e7fb", "fields": {"nom_de_la_commune": "CHAMPAGNE MOUTON", "libell_d_acheminement": "CHAMPAGNE MOUTON", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16076"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a39ee0f5e3308255245079db5b99d3662edf67e", "fields": {"nom_de_la_commune": "CHAMPNIERS", "libell_d_acheminement": "CHAMPNIERS", "code_postal": "16430", "coordonnees_gps": [45.7168170917, 0.172931779313], "code_commune_insee": "16078"}, "geometry": {"type": "Point", "coordinates": [0.172931779313, 45.7168170917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20606b94fe55210a43a4faeeb15ea47c569c378c", "fields": {"nom_de_la_commune": "CHARME", "libell_d_acheminement": "CHARME", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16083"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5877d9f2276f3905133b7c41f8632764c10669b1", "fields": {"nom_de_la_commune": "COURLAC", "libell_d_acheminement": "COURLAC", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16112"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec888cc1ce5c6085c15f886898954487b738333a", "fields": {"nom_de_la_commune": "DOUZAT", "libell_d_acheminement": "DOUZAT", "code_postal": "16290", "coordonnees_gps": [45.681734469, 0.0127639877624], "code_commune_insee": "16121"}, "geometry": {"type": "Point", "coordinates": [0.0127639877624, 45.681734469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b20462efecc7e2c41189ea0aaf849c02e65fb18b", "fields": {"nom_de_la_commune": "EBREON", "libell_d_acheminement": "EBREON", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16122"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b52030d65313017152ea055c05f9988d38f1b58", "fields": {"nom_de_la_commune": "EMPURE", "libell_d_acheminement": "EMPURE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16127"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f525143e51a07ec8e36e6a159eb91dc7d893f63", "fields": {"nom_de_la_commune": "ESSE", "libell_d_acheminement": "ESSE", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16131"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a868be5eac945c75b148a072083012486a5e221a", "fields": {"nom_de_la_commune": "FONTCLAIREAU", "libell_d_acheminement": "FONTCLAIREAU", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16140"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce9db3d3d5b3cb8858302fc4707593bada96a38", "fields": {"nom_de_la_commune": "GENAC BIGNAC", "libell_d_acheminement": "GENAC BIGNAC", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16148"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16dd31732f706a166a52cdcc276da49bed1194c7", "fields": {"nom_de_la_commune": "GIMEUX", "libell_d_acheminement": "GIMEUX", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16152"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdcb9211cbf54f0f3a6ca45ac4491d542afed42d", "fields": {"nom_de_la_commune": "JUILLE", "libell_d_acheminement": "JUILLE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16173"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ffc78d9e9d88224cc23f67a5a97ecb06b3f9615", "fields": {"nom_de_la_commune": "JULIENNE", "libell_d_acheminement": "JULIENNE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16174"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa8c4d1db452b06e107a81b000a6432d30d648df", "fields": {"code_postal": "16250", "code_commune_insee": "16175", "libell_d_acheminement": "VAL DES VIGNES", "ligne_5": "MAINFONDS", "nom_de_la_commune": "VAL DES VIGNES", "coordonnees_gps": [45.4908805694, 0.0542614769759]}, "geometry": {"type": "Point", "coordinates": [0.0542614769759, 45.4908805694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8433e46f513f3e6fc1ff08b1c2b9b64ce20610be", "fields": {"nom_de_la_commune": "LADIVILLE", "libell_d_acheminement": "LADIVILLE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16177"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae917484a89d2059943e73839d3d45a153ed415c", "fields": {"nom_de_la_commune": "LE LINDOIS", "libell_d_acheminement": "LE LINDOIS", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16188"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "868ac015db02d2e0962978c7c3fcf650f05f53ce", "fields": {"nom_de_la_commune": "ROUMAZIERES LOUBERT", "libell_d_acheminement": "ROUMAZIERES LOUBERT", "code_postal": "16270", "coordonnees_gps": [45.8834000837, 0.571194894473], "code_commune_insee": "16192"}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31bfb45680948442cf199f2630c868c223840785", "fields": {"nom_de_la_commune": "MAGNAC LAVALETTE VILLARS", "libell_d_acheminement": "MAGNAC LAVALETTE VILLARS", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16198"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf05ad735445a55cd72c943167e2b99e7f93771", "fields": {"nom_de_la_commune": "MAREUIL", "libell_d_acheminement": "MAREUIL", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16208"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8361300870d28451775011ddf9e48f82b858be59", "fields": {"nom_de_la_commune": "MAZEROLLES", "libell_d_acheminement": "MAZEROLLES", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16213"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b7aed8d84a7e17b0202637cdf06d4ca9d298f5", "fields": {"nom_de_la_commune": "MEDILLAC", "libell_d_acheminement": "MEDILLAC", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16215"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b342b1f565a7e0f5ffe462f437c8ca246dd78c2e", "fields": {"nom_de_la_commune": "MONTBRON", "libell_d_acheminement": "MONTBRON", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16223"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f465363fe11239f7712fd336a95f5c6595be1b7", "fields": {"nom_de_la_commune": "MONTIGNAC LE COQ", "libell_d_acheminement": "MONTIGNAC LE COQ", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16227"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e6e48792ca985f14881f2b3ab370f4f417e22c1", "fields": {"nom_de_la_commune": "MORNAC", "libell_d_acheminement": "MORNAC", "code_postal": "16600", "coordonnees_gps": [45.6754215966, 0.266312411242], "code_commune_insee": "16232"}, "geometry": {"type": "Point", "coordinates": [0.266312411242, 45.6754215966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25b4f20dda13aefbc8df39deb896cfce5d76a1a5", "fields": {"nom_de_la_commune": "ST PIERRE DE MEAROZ", "libell_d_acheminement": "ST PIERRE DE MEAROZ", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38444"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bab2ab3ff7d8201101eec3401073ebf7977867a", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "38160", "coordonnees_gps": [45.1571232612, 5.3036381799], "code_commune_insee": "38454"}, "geometry": {"type": "Point", "coordinates": [5.3036381799, 45.1571232612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd7ec4d3997884a8d2e33fd8a3f35f7106a7313", "fields": {"nom_de_la_commune": "ST SORLIN DE VIENNE", "libell_d_acheminement": "ST SORLIN DE VIENNE", "code_postal": "38200", "coordonnees_gps": [45.5475448288, 4.90630608526], "code_commune_insee": "38459"}, "geometry": {"type": "Point", "coordinates": [4.90630608526, 45.5475448288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0678612537554117f5be5e5945af8e96ac9d1d74", "fields": {"nom_de_la_commune": "ST THEOFFREY", "libell_d_acheminement": "ST THEOFFREY", "code_postal": "38119", "coordonnees_gps": [44.9763278291, 5.79332397715], "code_commune_insee": "38462"}, "geometry": {"type": "Point", "coordinates": [5.79332397715, 44.9763278291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9b5dc8d1c1d7b1737a3fa3d9ee1739894c18ca2", "fields": {"nom_de_la_commune": "ST VICTOR DE MORESTEL", "libell_d_acheminement": "ST VICTOR DE MORESTEL", "code_postal": "38510", "coordonnees_gps": [45.7026691916, 5.45358290741], "code_commune_insee": "38465"}, "geometry": {"type": "Point", "coordinates": [5.45358290741, 45.7026691916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1db217e526e116722f73726c45ec578d3ba11c6d", "fields": {"nom_de_la_commune": "SARCENAS", "libell_d_acheminement": "SARCENAS", "code_postal": "38700", "coordonnees_gps": [45.2521287611, 5.7666044089], "code_commune_insee": "38472"}, "geometry": {"type": "Point", "coordinates": [5.7666044089, 45.2521287611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b30ddc2f10feb060d72f700952c3de82bcbb3d", "fields": {"nom_de_la_commune": "SASSENAGE", "libell_d_acheminement": "SASSENAGE", "code_postal": "38360", "coordonnees_gps": [45.2140316159, 5.62374044814], "code_commune_insee": "38474"}, "geometry": {"type": "Point", "coordinates": [5.62374044814, 45.2140316159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb7b20a90fa6f6e6f80ec6c763d95f106953b1be", "fields": {"code_postal": "38290", "code_commune_insee": "38475", "libell_d_acheminement": "SATOLAS ET BONCE", "ligne_5": "BAS DE BONCE", "nom_de_la_commune": "SATOLAS ET BONCE", "coordonnees_gps": [45.6634032734, 5.1509887973]}, "geometry": {"type": "Point", "coordinates": [5.1509887973, 45.6634032734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecf5ee6371d3a4a976034c2f21daba0bd8aae6a9", "fields": {"nom_de_la_commune": "SAVAS MEPIN", "libell_d_acheminement": "SAVAS MEPIN", "code_postal": "38440", "coordonnees_gps": [45.4922410559, 5.13495115035], "code_commune_insee": "38476"}, "geometry": {"type": "Point", "coordinates": [5.13495115035, 45.4922410559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d92f111ab33452029799965b90c756252461c4", "fields": {"code_postal": "38780", "code_commune_insee": "38480", "libell_d_acheminement": "SEPTEME", "ligne_5": "SOUS COTE", "nom_de_la_commune": "SEPTEME", "coordonnees_gps": [45.5202153457, 4.98494519095]}, "geometry": {"type": "Point", "coordinates": [4.98494519095, 45.5202153457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e1d47a42a32c08addc13e456e6122bc659074b8", "fields": {"nom_de_la_commune": "SICCIEU ST JULIEN ET CARISIEU", "libell_d_acheminement": "SICCIEU ST JULIEN ET CARISIEU", "code_postal": "38460", "coordonnees_gps": [45.7153023241, 5.2700142747], "code_commune_insee": "38488"}, "geometry": {"type": "Point", "coordinates": [5.2700142747, 45.7153023241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9608d9a0abfc25d9ffc366c3657923c1359728de", "fields": {"nom_de_la_commune": "SUCCIEU", "libell_d_acheminement": "SUCCIEU", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38498"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab5b0532784a239dac1633dad52cb7919d8f7f50", "fields": {"nom_de_la_commune": "SUSVILLE", "libell_d_acheminement": "SUSVILLE", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38499"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29bb7dc0e3c9208287ccc8283ac8b5c5de23ae9c", "fields": {"nom_de_la_commune": "THEYS", "libell_d_acheminement": "THEYS", "code_postal": "38570", "coordonnees_gps": [45.3269943353, 6.00916897234], "code_commune_insee": "38504"}, "geometry": {"type": "Point", "coordinates": [6.00916897234, 45.3269943353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fc0639dfda94795c0148c9569c040722f50072c", "fields": {"nom_de_la_commune": "LA TOUR DU PIN", "libell_d_acheminement": "LA TOUR DU PIN", "code_postal": "38110", "coordonnees_gps": [45.5699784131, 5.45289291303], "code_commune_insee": "38509"}, "geometry": {"type": "Point", "coordinates": [5.45289291303, 45.5699784131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9210fe1e0369eea9626854006fc7097348bc7e", "fields": {"nom_de_la_commune": "TRAMOLE", "libell_d_acheminement": "TRAMOLE", "code_postal": "38300", "coordonnees_gps": [45.5640393391, 5.29545357844], "code_commune_insee": "38512"}, "geometry": {"type": "Point", "coordinates": [5.29545357844, 45.5640393391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "448c874cf5900787ca81a621da1bfebfc654d8b2", "fields": {"nom_de_la_commune": "VALENCOGNE", "libell_d_acheminement": "VALENCOGNE", "code_postal": "38730", "coordonnees_gps": [45.4867547373, 5.48232036724], "code_commune_insee": "38520"}, "geometry": {"type": "Point", "coordinates": [5.48232036724, 45.4867547373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ba7b9dc1ab9aaeec735edc6be3a45f569aad8cd", "fields": {"nom_de_la_commune": "LA VALETTE", "libell_d_acheminement": "LA VALETTE", "code_postal": "38350", "coordonnees_gps": [44.9382346863, 5.8349163639], "code_commune_insee": "38521"}, "geometry": {"type": "Point", "coordinates": [5.8349163639, 44.9382346863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28a0cc8bf51fea0c43f00a6bfd167330304a04d4", "fields": {"nom_de_la_commune": "VATILIEU", "libell_d_acheminement": "VATILIEU", "code_postal": "38470", "coordonnees_gps": [45.2139370444, 5.41220612601], "code_commune_insee": "38526"}, "geometry": {"type": "Point", "coordinates": [5.41220612601, 45.2139370444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e388db6ed098636255d8e7f86b27f13dc87c282", "fields": {"nom_de_la_commune": "LE VERSOUD", "libell_d_acheminement": "LE VERSOUD", "code_postal": "38420", "coordonnees_gps": [45.1842766535, 5.88281738166], "code_commune_insee": "38538"}, "geometry": {"type": "Point", "coordinates": [5.88281738166, 45.1842766535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa17c4ab329c4dabbc8912da33ec685208025e65", "fields": {"nom_de_la_commune": "VIF", "libell_d_acheminement": "VIF", "code_postal": "38450", "coordonnees_gps": [45.0222177332, 5.65673982861], "code_commune_insee": "38545"}, "geometry": {"type": "Point", "coordinates": [5.65673982861, 45.0222177332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cfaa6f0e5cb12942588e564831a290d38987e85", "fields": {"nom_de_la_commune": "VILLARD BONNOT", "libell_d_acheminement": "VILLARD BONNOT", "code_postal": "38190", "coordonnees_gps": [45.2307367976, 5.94776788691], "code_commune_insee": "38547"}, "geometry": {"type": "Point", "coordinates": [5.94776788691, 45.2307367976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b96a0b850dd4f5e83ce0520ea4ab15aafbb635", "fields": {"nom_de_la_commune": "VILLARD NOTRE DAME", "libell_d_acheminement": "VILLARD NOTRE DAME", "code_postal": "38520", "coordonnees_gps": [44.9681265011, 6.1573562304], "code_commune_insee": "38549"}, "geometry": {"type": "Point", "coordinates": [6.1573562304, 44.9681265011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09401dcc41d8d5939b5a26bebf99ba4d22e59dba", "fields": {"nom_de_la_commune": "VILLEFONTAINE", "libell_d_acheminement": "VILLEFONTAINE", "code_postal": "38090", "coordonnees_gps": [45.595478316, 5.15236035491], "code_commune_insee": "38553"}, "geometry": {"type": "Point", "coordinates": [5.15236035491, 45.595478316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f642c81c4da2e18867546b87660c2240343d7a", "fields": {"code_postal": "38280", "code_commune_insee": "38557", "libell_d_acheminement": "VILLETTE D ANTHON", "ligne_5": "MONS", "nom_de_la_commune": "VILLETTE D ANTHON", "coordonnees_gps": [45.7761558636, 5.11926140068]}, "geometry": {"type": "Point", "coordinates": [5.11926140068, 45.7761558636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce516237870528744bdeea4f78fdf5f40e13b9da", "fields": {"nom_de_la_commune": "ABERGEMENT LA RONCE", "libell_d_acheminement": "ABERGEMENT LA RONCE", "code_postal": "39500", "coordonnees_gps": [47.0403701048, 5.40061589404], "code_commune_insee": "39001"}, "geometry": {"type": "Point", "coordinates": [5.40061589404, 47.0403701048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e129cb6037d273e01c3303eb71e82c7327789ba", "fields": {"nom_de_la_commune": "ABERGEMENT LE GRAND", "libell_d_acheminement": "ABERGEMENT LE GRAND", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39002"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d090e414c7129989fa5dbd6df3d96cce1709e3", "fields": {"nom_de_la_commune": "ABERGEMENT LE PETIT", "libell_d_acheminement": "ABERGEMENT LE PETIT", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39003"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61bf8891e993f74c51a20422cef78227a7c10e4b", "fields": {"nom_de_la_commune": "ABERGEMENT LES THESY", "libell_d_acheminement": "ABERGEMENT LES THESY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39004"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2278a6f9ee6bb8bbbf2dd35a9cf86c79c4af932", "fields": {"nom_de_la_commune": "AIGLEPIERRE", "libell_d_acheminement": "AIGLEPIERRE", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39006"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe3f440342f6a15381a7a3f188881e104b1145c1", "fields": {"nom_de_la_commune": "ARCHELANGE", "libell_d_acheminement": "ARCHELANGE", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39014"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb1ede3001a50a42251d9bcfc731e89277a1b4c1", "fields": {"nom_de_la_commune": "AROMAS", "libell_d_acheminement": "AROMAS", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39018"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08502db20e645045bec1c0a9b281a9250afe7cea", "fields": {"code_postal": "39240", "code_commune_insee": "39018", "libell_d_acheminement": "AROMAS", "ligne_5": "CEFFIA", "nom_de_la_commune": "AROMAS", "coordonnees_gps": [46.3647092141, 5.55936987641]}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c84d3860e4342377011631f94eb640457a5467", "fields": {"code_postal": "39270", "code_commune_insee": "39021", "libell_d_acheminement": "LA CHAILLEUSE", "ligne_5": "ESSIA", "nom_de_la_commune": "LA CHAILLEUSE", "coordonnees_gps": [46.513600058, 5.5833242392]}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0257ddc0977c40c447ef68439e0e8e6d5c8df5", "fields": {"nom_de_la_commune": "ASNANS BEAUVOISIN", "libell_d_acheminement": "ASNANS BEAUVOISIN", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39022"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f885f607f6ce24a1bbadeba40a4ce462f71de61", "fields": {"code_postal": "39120", "code_commune_insee": "39022", "libell_d_acheminement": "ASNANS BEAUVOISIN", "ligne_5": "BEAUVOISIN", "nom_de_la_commune": "ASNANS BEAUVOISIN", "coordonnees_gps": [46.9509063875, 5.4122957378]}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2173c096a09bc01576410110448e46fbf6efc6a7", "fields": {"nom_de_la_commune": "AUGISEY", "libell_d_acheminement": "AUGISEY", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39027"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baea2a1ace3e9dfb23836908bf4deb37eea90cab", "fields": {"nom_de_la_commune": "AUTHUME", "libell_d_acheminement": "AUTHUME", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39030"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfed3da3f478ddadf59177018805795144f03088", "fields": {"nom_de_la_commune": "AVIGNON LES ST CLAUDE", "libell_d_acheminement": "AVIGNON LES ST CLAUDE", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39032"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9cc7067c173a0790e5c16bcbdfad90e05d3a4b", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39048"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf343cee94d7678f71f0e40a304ad8de8618d154", "fields": {"code_postal": "39800", "code_commune_insee": "39049", "libell_d_acheminement": "BERSAILLIN", "ligne_5": "LE VISENEY", "nom_de_la_commune": "BERSAILLIN", "coordonnees_gps": [46.840381623, 5.68546108472]}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153641d36e20162bcda12b8c491572a89c66a3b1", "fields": {"nom_de_la_commune": "BLOIS SUR SEILLE", "libell_d_acheminement": "BLOIS SUR SEILLE", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39057"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53f89e2ea19b22a777e7620cb6dc5d0eb81ba82", "fields": {"nom_de_la_commune": "BOURCIA", "libell_d_acheminement": "BOURCIA", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39069"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2819933137c13b1494348da5ec9a7979dc120581", "fields": {"nom_de_la_commune": "BRAINANS", "libell_d_acheminement": "BRAINANS", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39073"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206642e7db21aa4ae8737ea0208d5fb732aeae5f", "fields": {"nom_de_la_commune": "BRANS", "libell_d_acheminement": "BRANS", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39074"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dce8b7fa8f25d15ac88c8a26bd3455a4793d0ac", "fields": {"nom_de_la_commune": "BROISSIA", "libell_d_acheminement": "BROISSIA", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39080"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0fa8b6b723d8a0c475e10170ff57b7395c8ed83", "fields": {"nom_de_la_commune": "CHAMOLE", "libell_d_acheminement": "CHAMOLE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39094"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e828b7110c5b2d8e76170fda49499c264a3e675", "fields": {"nom_de_la_commune": "CHAMPDIVERS", "libell_d_acheminement": "CHAMPDIVERS", "code_postal": "39500", "coordonnees_gps": [47.0403701048, 5.40061589404], "code_commune_insee": "39099"}, "geometry": {"type": "Point", "coordinates": [5.40061589404, 47.0403701048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b96ef8d1d2a3c6d8b5e3b4709f259404a520adf", "fields": {"nom_de_la_commune": "CHAPELLE VOLAND", "libell_d_acheminement": "CHAPELLE VOLAND", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39104"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e41c33061e7195ef7f4119a589f6bd0376eba7", "fields": {"nom_de_la_commune": "CHAPOIS", "libell_d_acheminement": "CHAPOIS", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39105"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f949229243638824c8e5906065d248f950104761", "fields": {"nom_de_la_commune": "CHAREZIER", "libell_d_acheminement": "CHAREZIER", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39109"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a675c275dc27bb6e2996da2ad9d4cafbce0617", "fields": {"nom_de_la_commune": "CHATEAU DES PRES", "libell_d_acheminement": "CHATEAU DES PRES", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39115"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5b0a1fea5c119812bbebf995e1c83b596b622ca", "fields": {"nom_de_la_commune": "CHATELNEUF", "libell_d_acheminement": "CHATELNEUF", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39120"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca6725e72de261057937137f6b58e1d8b66b3d32", "fields": {"code_postal": "39150", "code_commune_insee": "39130", "libell_d_acheminement": "NANCHEZ", "ligne_5": "CHAUX DES PRES", "nom_de_la_commune": "NANCHEZ", "coordonnees_gps": [46.5872536631, 5.94328461493]}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a842c07afa2cb502d465882ac4eefc5b2f10cd1", "fields": {"nom_de_la_commune": "CHAUX CHAMPAGNY", "libell_d_acheminement": "CHAUX CHAMPAGNY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39133"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c484ba77a509a8a386f5cf070238ece79659b1", "fields": {"nom_de_la_commune": "CHAVERIA", "libell_d_acheminement": "CHAVERIA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39134"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7348e495254881b09b3c8b29cb2c4a627897e992", "fields": {"nom_de_la_commune": "CHEMIN", "libell_d_acheminement": "CHEMIN", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39138"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82f2910c6c601c4e3567c33b9294b5d113088e1", "fields": {"nom_de_la_commune": "CHENE SEC", "libell_d_acheminement": "CHENE SEC", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39140"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2406e0075ee6eecb1f71bd857ab0eb3c8bbdf6e8", "fields": {"nom_de_la_commune": "CHILLY LE VIGNOBLE", "libell_d_acheminement": "CHILLY LE VIGNOBLE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39146"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c01dd7759751aef12bc822763c568a7240e1687", "fields": {"nom_de_la_commune": "CHISSERIA", "libell_d_acheminement": "CHISSERIA", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39148"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c15ba96b79663af5ea23788683d7da9e9a84db94", "fields": {"nom_de_la_commune": "CHISSEY SUR LOUE", "libell_d_acheminement": "CHISSEY SUR LOUE", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39149"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce9e6ed092e0ba795d5a42421924025019341b10", "fields": {"nom_de_la_commune": "CHOISEY", "libell_d_acheminement": "CHOISEY", "code_postal": "39100", "coordonnees_gps": [47.081657682, 5.47646341998], "code_commune_insee": "39150"}, "geometry": {"type": "Point", "coordinates": [5.47646341998, 47.081657682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "899b3dc03f629d437dc3552af1bc3ba4ac71be2e", "fields": {"nom_de_la_commune": "COLONNE", "libell_d_acheminement": "COLONNE", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39159"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53241bf05f153ed90bd38931018cb91a41c233b8", "fields": {"nom_de_la_commune": "CONDAMINE", "libell_d_acheminement": "CONDAMINE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39162"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7805d70d572e355e4430ac1b4b29c408c327ec12", "fields": {"nom_de_la_commune": "CORNOD", "libell_d_acheminement": "CORNOD", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39166"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abfdbc71444f9d1f5131d0b939294091ff4f55fb", "fields": {"nom_de_la_commune": "COURLAOUX", "libell_d_acheminement": "COURLAOUX", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39171"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd7e4ca98330ac3974fa19ea5d9fb4da918a0611", "fields": {"nom_de_la_commune": "COYRON", "libell_d_acheminement": "COYRON", "code_postal": "39260", "coordonnees_gps": [46.4403663302, 5.71909726645], "code_commune_insee": "39175"}, "geometry": {"type": "Point", "coordinates": [5.71909726645, 46.4403663302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a62e72c6c6a0cada19eadc5ce48b767a3c13bc0", "fields": {"nom_de_la_commune": "CRAMANS", "libell_d_acheminement": "CRAMANS", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39176"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7252b77e1a0194c3b84ab718e0cdf8ddd3da4f3d", "fields": {"code_postal": "39210", "code_commune_insee": "39177", "libell_d_acheminement": "HAUTEROCHE", "ligne_5": "GRANGES SUR BAUME", "nom_de_la_commune": "HAUTEROCHE", "coordonnees_gps": [46.742636609, 5.62862510157]}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d671b5982afa87af1d67fb4e4ba90ccbfffb5d0", "fields": {"nom_de_la_commune": "CROTENAY", "libell_d_acheminement": "CROTENAY", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39183"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c20ea7069680c718dacb8557046b18ed7ea5edb", "fields": {"nom_de_la_commune": "DESSIA", "libell_d_acheminement": "DESSIA", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39195"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7138c8725b8dd1c8c1ab73a45852c6c37f547328", "fields": {"nom_de_la_commune": "DIGNA", "libell_d_acheminement": "DIGNA", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39197"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c53bd4c162c28cb296c8a0fb237a9fb8c65002db", "fields": {"nom_de_la_commune": "DOMPIERRE SUR MONT", "libell_d_acheminement": "DOMPIERRE SUR MONT", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39200"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6572839356f2bdc6514153158846b4ec1f1867", "fields": {"nom_de_la_commune": "VAL D EPY", "libell_d_acheminement": "VAL D EPY", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39209"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f58624429a0c6314c759bc5494d5831f67bc11b", "fields": {"nom_de_la_commune": "FONCINE LE HAUT", "libell_d_acheminement": "FONCINE LE HAUT", "code_postal": "39460", "coordonnees_gps": [46.659334192, 6.06165972209], "code_commune_insee": "39228"}, "geometry": {"type": "Point", "coordinates": [6.06165972209, 46.659334192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5e28c8bb21c3a105bfb6258131ee08e51cbd1a", "fields": {"nom_de_la_commune": "FONTAINEBRUX", "libell_d_acheminement": "FONTAINEBRUX", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39229"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10225f8867d2db9cfda9c4466192a975ba0353f1", "fields": {"nom_de_la_commune": "LA FRASNEE", "libell_d_acheminement": "LA FRASNEE", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39239"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5031e2a158af39c0b1998cc8c2970fdf3d90f11", "fields": {"nom_de_la_commune": "FREBUANS", "libell_d_acheminement": "FREBUANS", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39241"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca5a1bcb4dd6f310961edd81a1fcf86e131a950", "fields": {"nom_de_la_commune": "GREDISANS", "libell_d_acheminement": "GREDISANS", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39262"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81cc9eec675c2904e229a1cfa04946857ad01668", "fields": {"nom_de_la_commune": "IVORY", "libell_d_acheminement": "IVORY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39267"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4840bb9d231978f4daef98644133219da830f40", "fields": {"nom_de_la_commune": "IVREY", "libell_d_acheminement": "IVREY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39268"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f5f09e39d2a33191507d2e94b98e8225605cce", "fields": {"nom_de_la_commune": "JEURRE", "libell_d_acheminement": "JEURRE", "code_postal": "39360", "coordonnees_gps": [46.3283618111, 5.74430714891], "code_commune_insee": "39269"}, "geometry": {"type": "Point", "coordinates": [5.74430714891, 46.3283618111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83d114bf05ed92be1f2152357fc5a285b6e3c436", "fields": {"nom_de_la_commune": "LAJOUX", "libell_d_acheminement": "LAJOUX", "code_postal": "01410", "coordonnees_gps": [46.2796643227, 5.91198359476], "code_commune_insee": "39274"}, "geometry": {"type": "Point", "coordinates": [5.91198359476, 46.2796643227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dfa99f7722c9b713a2cde010369e880e9500d95", "fields": {"nom_de_la_commune": "LAJOUX", "libell_d_acheminement": "LAJOUX", "code_postal": "39310", "coordonnees_gps": [46.3646047349, 5.94493572712], "code_commune_insee": "39274"}, "geometry": {"type": "Point", "coordinates": [5.94493572712, 46.3646047349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e18bce10cec246e3940ddbcbcbdddb87c47973b", "fields": {"nom_de_la_commune": "LAVANGEOT", "libell_d_acheminement": "LAVANGEOT", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39284"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6046a1582599ef963b752bdcf6125a83b1a24569", "fields": {"nom_de_la_commune": "LEMUY", "libell_d_acheminement": "LEMUY", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39291"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b3d4a3abcd94a61d7e66d02b4ade6d42a692ab2", "fields": {"nom_de_la_commune": "LONGCHAUMOIS", "libell_d_acheminement": "LONGCHAUMOIS", "code_postal": "39400", "coordonnees_gps": [46.5030859232, 6.02288479651], "code_commune_insee": "39297"}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd6b71dc2b7cceaaebd8a96badc9f8043d41d0f", "fields": {"nom_de_la_commune": "LA MARRE", "libell_d_acheminement": "LA MARRE", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39317"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7d26df4e45ab8d06860d2c45df9c17080c9b9de", "fields": {"nom_de_la_commune": "MERONA", "libell_d_acheminement": "MERONA", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39324"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b316b00fd93751effbdf0cc7c181361b1c43e79a", "fields": {"nom_de_la_commune": "MESNAY", "libell_d_acheminement": "MESNAY", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39325"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca09bb589779028c69aa37871e37595a877a4657", "fields": {"nom_de_la_commune": "MOIRON", "libell_d_acheminement": "MOIRON", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39334"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6da2aa6a459256e8e670f9c8e5719c782bb2f2d", "fields": {"nom_de_la_commune": "MOISSEY", "libell_d_acheminement": "MOISSEY", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39335"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0425b4bb0b44e4bf0e062b61ff6ab997c37d4852", "fields": {"nom_de_la_commune": "MONTAGNA LE RECONDUIT", "libell_d_acheminement": "MONTAGNA LE RECONDUIT", "code_postal": "39160", "coordonnees_gps": [46.4292456485, 5.37253592274], "code_commune_insee": "39346"}, "geometry": {"type": "Point", "coordinates": [5.37253592274, 46.4292456485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f19a5bab477833e906a33bb985d613935b4f956e", "fields": {"nom_de_la_commune": "MONTFLEUR", "libell_d_acheminement": "MONTFLEUR", "code_postal": "39320", "coordonnees_gps": [46.4076971476, 5.45325429562], "code_commune_insee": "39353"}, "geometry": {"type": "Point", "coordinates": [5.45325429562, 46.4076971476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ea85531d7e7cb7b29e2b3ce4cfd7a06cf1f149", "fields": {"nom_de_la_commune": "MONTMARLON", "libell_d_acheminement": "MONTMARLON", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39359"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99cfd8bdb7f97b8cb914ec9be7fddda786b31dd9", "fields": {"code_postal": "39400", "code_commune_insee": "39368", "libell_d_acheminement": "HAUTS DE BIENNE", "ligne_5": "LEZAT", "nom_de_la_commune": "HAUTS DE BIENNE", "coordonnees_gps": [46.5030859232, 6.02288479651]}, "geometry": {"type": "Point", "coordinates": [6.02288479651, 46.5030859232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4fc1bed3a2e97caed6caf67d82903a740e7a736", "fields": {"nom_de_la_commune": "MOURNANS CHARBONNY", "libell_d_acheminement": "MOURNANS CHARBONNY", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39372"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc05f66884b0f3322b37a061aba8c43afba00948", "fields": {"nom_de_la_commune": "MOUTONNE", "libell_d_acheminement": "MOUTONNE", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39375"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ffdb2a55a7d1f290f2ef7de1f02e2215c219f18", "fields": {"nom_de_la_commune": "MUTIGNEY", "libell_d_acheminement": "MUTIGNEY", "code_postal": "39290", "coordonnees_gps": [47.2159380749, 5.52780674218], "code_commune_insee": "39377"}, "geometry": {"type": "Point", "coordinates": [5.52780674218, 47.2159380749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66de77e8c3ae3dee9f51a026de00404ed864f0c8", "fields": {"nom_de_la_commune": "LES NANS", "libell_d_acheminement": "LES NANS", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39381"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b8a112885b63de329c67373db155d862396bab", "fields": {"nom_de_la_commune": "LE PLESSIS DORIN", "libell_d_acheminement": "LE PLESSIS DORIN", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41177"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de32ffeef6197372cb541e03996c894af85d674d", "fields": {"nom_de_la_commune": "POUILLE", "libell_d_acheminement": "POUILLE", "code_postal": "41110", "coordonnees_gps": [47.2568714, 1.34079255884], "code_commune_insee": "41181"}, "geometry": {"type": "Point", "coordinates": [1.34079255884, 47.2568714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d7f2ce979aecd1fad69a004cf48ea528e41a0a", "fields": {"nom_de_la_commune": "PRUNAY CASSEREAU", "libell_d_acheminement": "PRUNAY CASSEREAU", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41184"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32ed3073baf2a5855fa1527bd458dd3bf6410b6a", "fields": {"nom_de_la_commune": "RENAY", "libell_d_acheminement": "RENAY", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41187"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a07b9efdd7493073b79c684c5bec5b7522654b4a", "fields": {"nom_de_la_commune": "ROCHES", "libell_d_acheminement": "ROCHES", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41191"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb6020c0bb540a3ca9c828c61e96d33ae8da09c3", "fields": {"nom_de_la_commune": "RUAN SUR EGVONNE", "libell_d_acheminement": "RUAN SUR EGVONNE", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41196"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4bcecf04b5b6ee4454650cd405ed8986933505e", "fields": {"nom_de_la_commune": "ST AMAND LONGPRE", "libell_d_acheminement": "ST AMAND LONGPRE", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41199"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8905d39e766ba3231a1be03985d8b914d6a85872", "fields": {"nom_de_la_commune": "ARCHES", "libell_d_acheminement": "ARCHES", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15010"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95458710d1a472dbcee8d7c5cee3cd793f8d786e", "fields": {"nom_de_la_commune": "AURILLAC", "libell_d_acheminement": "AURILLAC", "code_postal": "15000", "coordonnees_gps": [44.9195092273, 2.3987245584], "code_commune_insee": "15014"}, "geometry": {"type": "Point", "coordinates": [2.3987245584, 44.9195092273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdc3223383a0dab9483e4a43906c51a2557e88f5", "fields": {"nom_de_la_commune": "BARRIAC LES BOSQUETS", "libell_d_acheminement": "BARRIAC LES BOSQUETS", "code_postal": "15700", "coordonnees_gps": [45.1474212799, 2.26638957361], "code_commune_insee": "15018"}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82e73643340fdc54043d61c88de34ccf761b718c", "fields": {"nom_de_la_commune": "BONNAC", "libell_d_acheminement": "BONNAC", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15022"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c4495929e3cd59eea89868422a77a13000c9a6e", "fields": {"nom_de_la_commune": "BRAGEAC", "libell_d_acheminement": "BRAGEAC", "code_postal": "15700", "coordonnees_gps": [45.1474212799, 2.26638957361], "code_commune_insee": "15024"}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "844a69212f08eedeada34c87b9010f39b6468005", "fields": {"nom_de_la_commune": "CHALIERS", "libell_d_acheminement": "CHALIERS", "code_postal": "15320", "coordonnees_gps": [44.9755512909, 3.25916489345], "code_commune_insee": "15034"}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e7c9ebc4a316b6966fd9290141c890c2ee5206", "fields": {"code_postal": "15270", "code_commune_insee": "15038", "libell_d_acheminement": "CHAMPS SUR TARENTAINE MARCHAL", "ligne_5": "MARCHAL", "nom_de_la_commune": "CHAMPS SUR TARENTAINE MARCHAL", "coordonnees_gps": [45.4132624224, 2.59541322331]}, "geometry": {"type": "Point", "coordinates": [2.59541322331, 45.4132624224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "706fd3b52ecd5b8660cb92e3ed202f5dbae41b18", "fields": {"nom_de_la_commune": "LA CHAPELLE D ALAGNON", "libell_d_acheminement": "LA CHAPELLE D ALAGNON", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15041"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d13b1d776188f3b2e7d8e1ffb1db684336676c", "fields": {"nom_de_la_commune": "CHAVAGNAC", "libell_d_acheminement": "CHAVAGNAC", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15047"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39070bb0345e0e648dbe7b845d6ad9d887f86c3f", "fields": {"nom_de_la_commune": "CHAZELLES", "libell_d_acheminement": "CHAZELLES", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15048"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "716d7f0fa20719256a27ba5e2e5593cb24cf4cf4", "fields": {"nom_de_la_commune": "ESCORAILLES", "libell_d_acheminement": "ESCORAILLES", "code_postal": "15700", "coordonnees_gps": [45.1474212799, 2.26638957361], "code_commune_insee": "15064"}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c75aae414f76a4c9429f759bc62162a5465f14d8", "fields": {"nom_de_la_commune": "LE FALGOUX", "libell_d_acheminement": "LE FALGOUX", "code_postal": "15380", "coordonnees_gps": [45.1901906468, 2.5322900366], "code_commune_insee": "15066"}, "geometry": {"type": "Point", "coordinates": [2.5322900366, 45.1901906468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5d12efeeb680bb93104a6354d2a571ff9efc31", "fields": {"nom_de_la_commune": "JABRUN", "libell_d_acheminement": "JABRUN", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15078"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d061261d5623d20993ac09e24017b0241ae9e33b", "fields": {"nom_de_la_commune": "LABESSERETTE", "libell_d_acheminement": "LABESSERETTE", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15084"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73f9ff11884f4e6dbd29abf80960893972865016", "fields": {"nom_de_la_commune": "LACAPELLE DEL FRAISSE", "libell_d_acheminement": "LACAPELLE DEL FRAISSE", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15087"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ca3dc41ebda931cd30fa732649ba1fd694846c", "fields": {"nom_de_la_commune": "LACAPELLE VIESCAMP", "libell_d_acheminement": "LACAPELLE VIESCAMP", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15088"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "204d388b4531dfdef8f34a4b68cda118ad2e0f15", "fields": {"nom_de_la_commune": "LASCELLE", "libell_d_acheminement": "LASCELLE MANDAILLES", "code_postal": "15590", "coordonnees_gps": [45.0490320322, 2.61650882342], "code_commune_insee": "15096"}, "geometry": {"type": "Point", "coordinates": [2.61650882342, 45.0490320322]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1296f1ebf92e068f275787717fbe11628aba67d0", "fields": {"nom_de_la_commune": "LASTIC", "libell_d_acheminement": "LASTIC", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15097"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c2e984b1998d2b74bef36fcdaca9a8b4c81c785", "fields": {"nom_de_la_commune": "LAVASTRIE", "libell_d_acheminement": "LAVASTRIE", "code_postal": "15260", "coordonnees_gps": [44.930379785, 2.97483208251], "code_commune_insee": "15099"}, "geometry": {"type": "Point", "coordinates": [2.97483208251, 44.930379785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86b714e0843cfe47cee928fc898805fc35161f0b", "fields": {"nom_de_la_commune": "LEUCAMP", "libell_d_acheminement": "LEUCAMP", "code_postal": "15120", "coordonnees_gps": [44.7320894244, 2.47797007542], "code_commune_insee": "15103"}, "geometry": {"type": "Point", "coordinates": [2.47797007542, 44.7320894244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb26ef2bf573ccbc82b3743f18a26f9c827e655", "fields": {"nom_de_la_commune": "LIEUTADES", "libell_d_acheminement": "LIEUTADES", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15106"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a22b8f1d7f8263299665d101637a5335eaaeea4b", "fields": {"code_postal": "15320", "code_commune_insee": "15108", "libell_d_acheminement": "VAL D ARCOMIE", "ligne_5": "BOURNONCLES", "nom_de_la_commune": "VAL D ARCOMIE", "coordonnees_gps": [44.9755512909, 3.25916489345]}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64662a12a5c6f92732301a64380b8ba2e328052", "fields": {"code_postal": "15320", "code_commune_insee": "15108", "libell_d_acheminement": "VAL D ARCOMIE", "ligne_5": "ST MARC", "nom_de_la_commune": "VAL D ARCOMIE", "coordonnees_gps": [44.9755512909, 3.25916489345]}, "geometry": {"type": "Point", "coordinates": [3.25916489345, 44.9755512909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1610325edfc71bcde557e26a258c4eff3b8aea", "fields": {"nom_de_la_commune": "MADIC", "libell_d_acheminement": "MADIC", "code_postal": "15210", "coordonnees_gps": [45.3513333268, 2.45227003006], "code_commune_insee": "15111"}, "geometry": {"type": "Point", "coordinates": [2.45227003006, 45.3513333268]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2263ee545351aa3907aca1265285da3d672052b8", "fields": {"nom_de_la_commune": "MARCHASTEL", "libell_d_acheminement": "MARCHASTEL", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15116"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4050763b77aab136aa35758ed966696a7909dfdb", "fields": {"nom_de_la_commune": "MAURIAC", "libell_d_acheminement": "MAURIAC", "code_postal": "15200", "coordonnees_gps": [45.2469502438, 2.33762275739], "code_commune_insee": "15120"}, "geometry": {"type": "Point", "coordinates": [2.33762275739, 45.2469502438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e166fe5391a80b2b8f64881710626d48bf93af44", "fields": {"nom_de_la_commune": "MENET", "libell_d_acheminement": "MENET", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15124"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c881d5b7659915f18ec6166a5386820d59c707c", "fields": {"nom_de_la_commune": "LA MONSELIE", "libell_d_acheminement": "LA MONSELIE", "code_postal": "15240", "coordonnees_gps": [45.3190218955, 2.49287425953], "code_commune_insee": "15128"}, "geometry": {"type": "Point", "coordinates": [2.49287425953, 45.3190218955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cc7f79a71106a63d5db1507d6cdebb65f504e4f", "fields": {"nom_de_la_commune": "MONTGRELEIX", "libell_d_acheminement": "MONTGRELEIX", "code_postal": "15190", "coordonnees_gps": [45.3180974777, 2.79879193329], "code_commune_insee": "15132"}, "geometry": {"type": "Point", "coordinates": [2.79879193329, 45.3180974777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b781b96dfcf4fa16aa6ebfe15cea6866c53cd4", "fields": {"nom_de_la_commune": "MONTMURAT", "libell_d_acheminement": "MONTMURAT", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15133"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9fc0b7fa449a7d9100c2c30d8867e35e5696b29", "fields": {"nom_de_la_commune": "MONTVERT", "libell_d_acheminement": "MONTVERT", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15135"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4128dfca3e51aed65e6d3c129e3c3cf552d61321", "fields": {"nom_de_la_commune": "PIERREFORT", "libell_d_acheminement": "PIERREFORT", "code_postal": "15230", "coordonnees_gps": [44.9549425633, 2.81230207909], "code_commune_insee": "15152"}, "geometry": {"type": "Point", "coordinates": [2.81230207909, 44.9549425633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0755681a55a7297ebc0ee74b93bcbf41ae69a0aa", "fields": {"nom_de_la_commune": "PLEAUX", "libell_d_acheminement": "PLEAUX", "code_postal": "15700", "coordonnees_gps": [45.1474212799, 2.26638957361], "code_commune_insee": "15153"}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576c1a8dc5cb4e6fa2d2556718a58b3a8e24b619", "fields": {"code_postal": "15700", "code_commune_insee": "15153", "libell_d_acheminement": "PLEAUX", "ligne_5": "LOUPIAC", "nom_de_la_commune": "PLEAUX", "coordonnees_gps": [45.1474212799, 2.26638957361]}, "geometry": {"type": "Point", "coordinates": [2.26638957361, 45.1474212799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5dd549e750acd68ba8919a8db5943107c73bfd", "fields": {"nom_de_la_commune": "REZENTIERES", "libell_d_acheminement": "REZENTIERES", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15161"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f8684f7432e583539eee6eab562a75e3c4e40dd", "fields": {"nom_de_la_commune": "ROANNES ST MARY", "libell_d_acheminement": "ROANNES ST MARY", "code_postal": "15220", "coordonnees_gps": [44.8209308768, 2.34473285638], "code_commune_insee": "15163"}, "geometry": {"type": "Point", "coordinates": [2.34473285638, 44.8209308768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d72bd027b157b9d7704fc85a5cfa1f959158a1d", "fields": {"nom_de_la_commune": "ROFFIAC", "libell_d_acheminement": "ROFFIAC", "code_postal": "15100", "coordonnees_gps": [45.0331283869, 3.1188217924], "code_commune_insee": "15164"}, "geometry": {"type": "Point", "coordinates": [3.1188217924, 45.0331283869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c3e6a9b1ae2597a39f216378a907597b846f255", "fields": {"nom_de_la_commune": "ROUMEGOUX", "libell_d_acheminement": "ROUMEGOUX", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15166"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b5d3eaac486b79e5be79ff8fdb715868af3bb6", "fields": {"nom_de_la_commune": "ROUZIERS", "libell_d_acheminement": "ROUZIERS", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15167"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0304b7d4641da0fb11f7eaa84e3f97f8b1d19d03", "fields": {"nom_de_la_commune": "ST BONNET DE SALERS", "libell_d_acheminement": "ST BONNET DE SALERS", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15174"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd97e60a2a4144c62f1e8d823714af318ed00b9b", "fields": {"nom_de_la_commune": "ST CIRGUES DE MALBERT", "libell_d_acheminement": "ST CIRGUES DE MALBERT", "code_postal": "15140", "coordonnees_gps": [45.1182699241, 2.47506456811], "code_commune_insee": "15179"}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af983a660316d863cdf759d40e04ea9820286c9", "fields": {"nom_de_la_commune": "ST CONSTANT FOURNOULES", "libell_d_acheminement": "ST CONSTANT FOURNOULES", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15181"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1e746f7920777e49ebc03c99bfcdec749cb8ee8", "fields": {"nom_de_la_commune": "ST ETIENNE CANTALES", "libell_d_acheminement": "ST ETIENNE CANTALES", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15182"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1557a255d8292c9327dc2545ed693c48d9087950", "fields": {"nom_de_la_commune": "ST JACQUES DES BLATS", "libell_d_acheminement": "ST JACQUES DES BLATS", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15192"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1d3e7330ab8242b1019cd7a93d73d73dd0d5de", "fields": {"nom_de_la_commune": "ST JULIEN DE TOURSAC", "libell_d_acheminement": "ST JULIEN DE TOURSAC", "code_postal": "15600", "coordonnees_gps": [44.7318470612, 2.22537453682], "code_commune_insee": "15194"}, "geometry": {"type": "Point", "coordinates": [2.22537453682, 44.7318470612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c725d051726cb9125230896ab5ddc2eebe238f5", "fields": {"nom_de_la_commune": "ST MAMET LA SALVETAT", "libell_d_acheminement": "ST MAMET LA SALVETAT", "code_postal": "15220", "coordonnees_gps": [44.8209308768, 2.34473285638], "code_commune_insee": "15196"}, "geometry": {"type": "Point", "coordinates": [2.34473285638, 44.8209308768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "207d1c9b6e7f5c379cc4ecb545d7d5d6f4c4c2b7", "fields": {"nom_de_la_commune": "ST MARTIAL", "libell_d_acheminement": "ST MARTIAL", "code_postal": "15110", "coordonnees_gps": [44.8097655947, 2.98800839206], "code_commune_insee": "15199"}, "geometry": {"type": "Point", "coordinates": [2.98800839206, 44.8097655947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1363a00f0da394e05bf052411a120044ad9f204f", "fields": {"code_postal": "15140", "code_commune_insee": "15202", "libell_d_acheminement": "ST MARTIN VALMEROUX", "ligne_5": "ST REMY DE SALERS", "nom_de_la_commune": "ST MARTIN VALMEROUX", "coordonnees_gps": [45.1182699241, 2.47506456811]}, "geometry": {"type": "Point", "coordinates": [2.47506456811, 45.1182699241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed6f9c4994948e7e133828143f7f6b963ba3982f", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "15350", "coordonnees_gps": [45.360785771, 2.38882162229], "code_commune_insee": "15206"}, "geometry": {"type": "Point", "coordinates": [2.38882162229, 45.360785771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac33a0e4db170065d10026da67c621e10ba08da", "fields": {"nom_de_la_commune": "ST PONCY", "libell_d_acheminement": "ST PONCY", "code_postal": "15500", "coordonnees_gps": [45.1978770192, 3.16534368935], "code_commune_insee": "15207"}, "geometry": {"type": "Point", "coordinates": [3.16534368935, 45.1978770192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c1015a5d9c8f7bf4ce7124f5bbc87845d6486ac", "fields": {"nom_de_la_commune": "ST VICTOR", "libell_d_acheminement": "ST VICTOR", "code_postal": "15150", "coordonnees_gps": [44.9867545423, 2.19192867808], "code_commune_insee": "15217"}, "geometry": {"type": "Point", "coordinates": [2.19192867808, 44.9867545423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb84ae93a3400d82b2f9fde0060abd2160039547", "fields": {"nom_de_la_commune": "TALIZAT", "libell_d_acheminement": "TALIZAT", "code_postal": "15170", "coordonnees_gps": [45.1501301275, 3.01356620883], "code_commune_insee": "15231"}, "geometry": {"type": "Point", "coordinates": [3.01356620883, 45.1501301275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6301d498b126010ac9138ddcb8163d71deb8e61", "fields": {"nom_de_la_commune": "TEISSIERES DE CORNET", "libell_d_acheminement": "TEISSIERES DE CORNET", "code_postal": "15250", "coordonnees_gps": [44.9842780771, 2.39985714548], "code_commune_insee": "15233"}, "geometry": {"type": "Point", "coordinates": [2.39985714548, 44.9842780771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb8fd8e73fcf546e022e8b7c6b576d947596de7c", "fields": {"nom_de_la_commune": "THIEZAC", "libell_d_acheminement": "THIEZAC", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15236"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f58abcfa5e8040c87eb1f95de37ce0d50967b2b", "fields": {"nom_de_la_commune": "TOURNEMIRE", "libell_d_acheminement": "TOURNEMIRE", "code_postal": "15310", "coordonnees_gps": [45.0470485491, 2.40091577072], "code_commune_insee": "15238"}, "geometry": {"type": "Point", "coordinates": [2.40091577072, 45.0470485491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dde7f23b6c6feb3ea98d054951019cc8281f110", "fields": {"nom_de_la_commune": "TREMOUILLE", "libell_d_acheminement": "TREMOUILLE", "code_postal": "15270", "coordonnees_gps": [45.4132624224, 2.59541322331], "code_commune_insee": "15240"}, "geometry": {"type": "Point", "coordinates": [2.59541322331, 45.4132624224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a181d4a286bf08ed210ecfdfe592c61583802bcb", "fields": {"nom_de_la_commune": "TRIZAC", "libell_d_acheminement": "TRIZAC", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15243"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2764a0a0323a2c43d29774ff55caf7ffc8b74ba1", "fields": {"nom_de_la_commune": "USSEL", "libell_d_acheminement": "USSEL", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15244"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb751e64f6fc27bd435990927e7fe6ac0c92d002", "fields": {"nom_de_la_commune": "LE VAULMIER", "libell_d_acheminement": "LE VAULMIER", "code_postal": "15380", "coordonnees_gps": [45.1901906468, 2.5322900366], "code_commune_insee": "15249"}, "geometry": {"type": "Point", "coordinates": [2.5322900366, 45.1901906468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6858f5811fd28a7a1eb38c797067c0429551b9d", "fields": {"nom_de_la_commune": "VIC SUR CERE", "libell_d_acheminement": "VIC SUR CERE", "code_postal": "15800", "coordonnees_gps": [44.9795584262, 2.65717036183], "code_commune_insee": "15258"}, "geometry": {"type": "Point", "coordinates": [2.65717036183, 44.9795584262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d15d50045819dba4ffc9a5b704f41880114ffee8", "fields": {"nom_de_la_commune": "VIRARGUES", "libell_d_acheminement": "VIRARGUES", "code_postal": "15300", "coordonnees_gps": [45.1198274459, 2.83644430028], "code_commune_insee": "15263"}, "geometry": {"type": "Point", "coordinates": [2.83644430028, 45.1198274459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684c1d94ca12f6833eb237ea9223fd3470425fa4", "fields": {"nom_de_la_commune": "VITRAC", "libell_d_acheminement": "VITRAC", "code_postal": "15220", "coordonnees_gps": [44.8209308768, 2.34473285638], "code_commune_insee": "15264"}, "geometry": {"type": "Point", "coordinates": [2.34473285638, 44.8209308768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21d92cd8d9eb1a43927d01b6fe22d4945880f1cd", "fields": {"nom_de_la_commune": "LE ROUGET PERS", "libell_d_acheminement": "LE ROUGET PERS", "code_postal": "15290", "coordonnees_gps": [44.8596655037, 2.18395827378], "code_commune_insee": "15268"}, "geometry": {"type": "Point", "coordinates": [2.18395827378, 44.8596655037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9911365025d2a6d8b3b124c70b603321e2fb81c", "fields": {"nom_de_la_commune": "ANSAC SUR VIENNE", "libell_d_acheminement": "ANSAC SUR VIENNE", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16016"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1b430131113f079beb26136046287bd2cd860a", "fields": {"code_postal": "16300", "code_commune_insee": "16028", "libell_d_acheminement": "BARBEZIEUX ST HILAIRE", "ligne_5": "ST HILAIRE", "nom_de_la_commune": "BARBEZIEUX ST HILAIRE", "coordonnees_gps": [45.4825627066, -0.162479147759]}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f903f5bfdd5960d978bec7c56132e4a490bb88c9", "fields": {"nom_de_la_commune": "BARRET", "libell_d_acheminement": "BARRET", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16030"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa04b9eb14f8427f1ca5e3ed64f7c10e7882d02b", "fields": {"nom_de_la_commune": "BARRO", "libell_d_acheminement": "BARRO", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16031"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6d9dda537efde59409013b17deba8bb61a8746a", "fields": {"nom_de_la_commune": "BAYERS", "libell_d_acheminement": "BAYERS", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16033"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b38a813d455f743d52a49dba4b0c07c2183cc61", "fields": {"nom_de_la_commune": "BAZAC", "libell_d_acheminement": "BAZAC", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16034"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d4a40a8f13cf87896453f0602bc139cd86d36c6", "fields": {"nom_de_la_commune": "BELLON", "libell_d_acheminement": "BELLON", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16037"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2c3d56315d706ec5247642a882c409895fa344a", "fields": {"nom_de_la_commune": "BENEST", "libell_d_acheminement": "BENEST", "code_postal": "16350", "coordonnees_gps": [46.0026796131, 0.417821103599], "code_commune_insee": "16038"}, "geometry": {"type": "Point", "coordinates": [0.417821103599, 46.0026796131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb2a37f2e2368c1a50ec3965db959a6693c2ffe3", "fields": {"nom_de_la_commune": "BONNES", "libell_d_acheminement": "BONNES", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16049"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a83556c280007479cbc703b5ccb3d650a4504f9c", "fields": {"nom_de_la_commune": "BOURG CHARENTE", "libell_d_acheminement": "BOURG CHARENTE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16056"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6d95159aca01ed3af1334be1866240bd6c84a77", "fields": {"nom_de_la_commune": "BOUTEVILLE", "libell_d_acheminement": "BOUTEVILLE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16057"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c3c5a884e52217d87cfc2d6d01b814a41f44d80", "fields": {"nom_de_la_commune": "BOUTIERS ST TROJAN", "libell_d_acheminement": "BOUTIERS ST TROJAN", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16058"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70fb7b18eac0372afe835c88ac03e65152b14aa4", "fields": {"nom_de_la_commune": "BRIE", "libell_d_acheminement": "BRIE", "code_postal": "16590", "coordonnees_gps": [45.7342044858, 0.26604076185], "code_commune_insee": "16061"}, "geometry": {"type": "Point", "coordinates": [0.26604076185, 45.7342044858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88c9e37e5a2a35ef7fbd515774704b82645f9ae7", "fields": {"nom_de_la_commune": "BRIE SOUS CHALAIS", "libell_d_acheminement": "BRIE SOUS CHALAIS", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16063"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3cb20d5950cf0ed939ff0584617fed66af555c0", "fields": {"nom_de_la_commune": "BROSSAC", "libell_d_acheminement": "BROSSAC", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16066"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ac8319c81aee498b46ae9765481b4a904cedb8b", "fields": {"nom_de_la_commune": "CHABANAIS", "libell_d_acheminement": "CHABANAIS", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16070"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4474803ef72bc2cf8e261f2848a58a3cac22a645", "fields": {"code_postal": "16320", "code_commune_insee": "16082", "libell_d_acheminement": "BOISNE LA TUDE", "ligne_5": "JUILLAGUET", "nom_de_la_commune": "BOISNE LA TUDE", "coordonnees_gps": [45.4895091736, 0.297130161872]}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a604b873f063adcbddbf718eed488c4e713b5d", "fields": {"nom_de_la_commune": "CHASSENON", "libell_d_acheminement": "CHASSENON", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16086"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d615599186a4750ecf0ce864a27cdbab9ef58eaa", "fields": {"nom_de_la_commune": "CHATEAUBERNARD", "libell_d_acheminement": "CHATEAUBERNARD", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16089"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37852f25c221da70db819d30f9c464abae89a7f6", "fields": {"nom_de_la_commune": "CHENON", "libell_d_acheminement": "CHENON", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16095"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9da52d4b8477f28ab8d9c6d5e8e6e1f3e3269423", "fields": {"nom_de_la_commune": "COGNAC", "libell_d_acheminement": "COGNAC", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16102"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5731fdc0437e91c101a9813b5a8313035f0cd0", "fields": {"nom_de_la_commune": "COMBIERS", "libell_d_acheminement": "COMBIERS", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16103"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a58b02f348a21f6cb2cddf64a4a6f5145ec3a64", "fields": {"nom_de_la_commune": "CONFOLENS", "libell_d_acheminement": "CONFOLENS", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16106"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e932012cf4233ffe33debed01d97bd6ab1d7b317", "fields": {"nom_de_la_commune": "COURCOME", "libell_d_acheminement": "COURCOME", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16110"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "781a966fae39880337bd98615af578802ee4641c", "fields": {"nom_de_la_commune": "LA COURONNE", "libell_d_acheminement": "LA COURONNE", "code_postal": "16400", "coordonnees_gps": [45.6075102934, 0.129005095086], "code_commune_insee": "16113"}, "geometry": {"type": "Point", "coordinates": [0.129005095086, 45.6075102934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92b851678c2c87c44d9717773129c95688feae6c", "fields": {"nom_de_la_commune": "CRITEUIL LA MAGDELEINE", "libell_d_acheminement": "CRITEUIL LA MAGDELEINE", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16116"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9198d3b79ea55795a0edd478a3e64c0fc10986be", "fields": {"nom_de_la_commune": "EPENEDE", "libell_d_acheminement": "EPENEDE", "code_postal": "16490", "coordonnees_gps": [46.0379756155, 0.534996364854], "code_commune_insee": "16128"}, "geometry": {"type": "Point", "coordinates": [0.534996364854, 46.0379756155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c020bac77970e6fba3a117bc9563ed8e2cb4ca87", "fields": {"nom_de_la_commune": "ERAVILLE", "libell_d_acheminement": "ERAVILLE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16129"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ef77825989f3c39f968cc6f6e83fe37e08f378f", "fields": {"nom_de_la_commune": "LES ESSARDS", "libell_d_acheminement": "LES ESSARDS", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16130"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936ead6c180707e82e27daef76146cf9a844491d", "fields": {"nom_de_la_commune": "EXIDEUIL", "libell_d_acheminement": "EXIDEUIL", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16134"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157e10e6b4a0c1bd58bd96bec2126387dcb9b58f", "fields": {"nom_de_la_commune": "LONGVIC", "libell_d_acheminement": "LONGVIC", "code_postal": "21600", "coordonnees_gps": [47.2634836316, 5.06260029514], "code_commune_insee": "21355"}, "geometry": {"type": "Point", "coordinates": [5.06260029514, 47.2634836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a9debb7ee2c1e8e20f8181abce6e743a9ad0dd", "fields": {"nom_de_la_commune": "LOSNE", "libell_d_acheminement": "LOSNE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21356"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c05ea3aa893e32cf784387dc11d2f7f28d0e780", "fields": {"nom_de_la_commune": "MAGNY LA VILLE", "libell_d_acheminement": "MAGNY LA VILLE", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21365"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d43969cd52faacf6ad6b3ed6be5c44b0c59691", "fields": {"nom_de_la_commune": "MALIGNY", "libell_d_acheminement": "MALIGNY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21374"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f8423eee2b64c8fde5a72ac0324cb0557f215d5", "fields": {"nom_de_la_commune": "MANLAY", "libell_d_acheminement": "MANLAY", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21375"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "309db9383a8f8b09b5f75d24155f5da1878c8605", "fields": {"nom_de_la_commune": "MARANDEUIL", "libell_d_acheminement": "MARANDEUIL", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21376"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c54e4befb5480ba5d5125a03fff388486975ef", "fields": {"nom_de_la_commune": "MARCILLY SUR TILLE", "libell_d_acheminement": "MARCILLY SUR TILLE", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21383"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1beaa191cf610531be5d40f9195950c98fd74e6", "fields": {"nom_de_la_commune": "MAREY LES FUSSEY", "libell_d_acheminement": "MAREY LES FUSSEY", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21384"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1758c037a704ab21877bfa71c787db42d16cb63e", "fields": {"nom_de_la_commune": "MAREY SUR TILLE", "libell_d_acheminement": "MAREY SUR TILLE", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21385"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "464d4958bddc8c9b77ee8f4886f535a74cd356a9", "fields": {"nom_de_la_commune": "MARIGNY LE CAHOUET", "libell_d_acheminement": "MARIGNY LE CAHOUET", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21386"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "852012781a1647c8ac340a61f72d2832c3363c7e", "fields": {"nom_de_la_commune": "MAVILLY MANDELOT", "libell_d_acheminement": "MAVILLY MANDELOT", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21397"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aacebf239c82c6eb2fba8596cda2b94df6dd16f6", "fields": {"nom_de_la_commune": "MENESSAIRE", "libell_d_acheminement": "MENESSAIRE", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21403"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f2f6ff1ed0515961000858fc69eaeab4f17a240", "fields": {"nom_de_la_commune": "MESMONT", "libell_d_acheminement": "MESMONT", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21406"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78ed7695bb031904fa81b64bd465764867a7287a", "fields": {"nom_de_la_commune": "MESSIGNY ET VANTOUX", "libell_d_acheminement": "MESSIGNY ET VANTOUX", "code_postal": "21380", "coordonnees_gps": [47.4355367845, 5.01535981996], "code_commune_insee": "21408"}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1c7874dcfeb07705f2f6735be4f6b18ae21f4ae", "fields": {"nom_de_la_commune": "MEURSAULT", "libell_d_acheminement": "MEURSAULT", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21412"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7d6dae2e315edd99aa1505765ae43beeb77de41", "fields": {"nom_de_la_commune": "MOLINOT", "libell_d_acheminement": "MOLINOT", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21420"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "717909de37c5c4174594e27360041881ff74135c", "fields": {"nom_de_la_commune": "MONTHELIE", "libell_d_acheminement": "MONTHELIE", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21428"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aed8beecf4de2f84b2101bf528e9ca3e69a1d19", "fields": {"nom_de_la_commune": "MONTIGNY SUR ARMANCON", "libell_d_acheminement": "MONTIGNY SUR ARMANCON", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21431"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dedca9d34a7a73134ca35771cb9667994cff732", "fields": {"nom_de_la_commune": "MONTIGNY SUR AUBE", "libell_d_acheminement": "MONTIGNY SUR AUBE", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21432"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dfc46e3516028fa61a3fe658f97b04d585052da", "fields": {"nom_de_la_commune": "MONT ST JEAN", "libell_d_acheminement": "MONT ST JEAN", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21441"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdfb47bb6af487073564150f099377e031dc1099", "fields": {"nom_de_la_commune": "MOUTIERS ST JEAN", "libell_d_acheminement": "MOUTIERS ST JEAN", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21446"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2099842e99156142bb8daf971e20421ce5b22153", "fields": {"nom_de_la_commune": "NAN SOUS THIL", "libell_d_acheminement": "NAN SOUS THIL", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21449"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3a16d2018c8d98014b168e4e0f39e0c134e3605", "fields": {"nom_de_la_commune": "NANTOUX", "libell_d_acheminement": "NANTOUX", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21450"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7191d30df4e252cb7631dd236b12903977be9bd", "fields": {"nom_de_la_commune": "NEUILLY LES DIJON", "libell_d_acheminement": "NEUILLY LES DIJON", "code_postal": "21800", "coordonnees_gps": [47.2974794618, 5.12130493995], "code_commune_insee": "21452"}, "geometry": {"type": "Point", "coordinates": [5.12130493995, 47.2974794618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13d9437d31e39c494bf9d62197d05696528466ce", "fields": {"nom_de_la_commune": "NOIDAN", "libell_d_acheminement": "NOIDAN", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21457"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df5ed58461c528d93823729268b257ac0177f9e4", "fields": {"nom_de_la_commune": "OIGNY", "libell_d_acheminement": "OIGNY", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21466"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87f28d096a0303e4f756d281b11cd60525e8457c", "fields": {"nom_de_la_commune": "OISILLY", "libell_d_acheminement": "OISILLY", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21467"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d90ddda716ed02d811674f024a100813c5564b4f", "fields": {"nom_de_la_commune": "ORIGNY", "libell_d_acheminement": "ORIGNY", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21470"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5eb0d3a5b9555dc303ce6a40693ab97d68984d9", "fields": {"nom_de_la_commune": "ORVILLE", "libell_d_acheminement": "ORVILLE", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21472"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66660107640adcf0275497f36679fb64e96c59c0", "fields": {"nom_de_la_commune": "OUGES", "libell_d_acheminement": "OUGES", "code_postal": "21600", "coordonnees_gps": [47.2634836316, 5.06260029514], "code_commune_insee": "21473"}, "geometry": {"type": "Point", "coordinates": [5.06260029514, 47.2634836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c29e8315203ffe4d65544b311f53d513c219960", "fields": {"nom_de_la_commune": "PAGNY LA VILLE", "libell_d_acheminement": "PAGNY LA VILLE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21474"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a18e4ec335baeff15daf8e3c4695891b90151302", "fields": {"nom_de_la_commune": "PAINBLANC", "libell_d_acheminement": "PAINBLANC", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21476"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ad9d35ce1c11981946d72151bebddc187a14df", "fields": {"nom_de_la_commune": "POINCON LES LARREY", "libell_d_acheminement": "POINCON LES LARREY", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21488"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07a77516f3231482e9905ab6565024262768be96", "fields": {"nom_de_la_commune": "PONCEY LES ATHEE", "libell_d_acheminement": "PONCEY LES ATHEE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21493"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca95c9c3776f87b5ec11f89fc40612901524161d", "fields": {"nom_de_la_commune": "PONCEY SUR L IGNON", "libell_d_acheminement": "PONCEY SUR L IGNON", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21494"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c6184e1727bd881a915406e6420b5f5f3114495", "fields": {"nom_de_la_commune": "PONT", "libell_d_acheminement": "PONT", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21495"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64ecc36a3f47de0f4af446b34ce110437a6a3d71", "fields": {"nom_de_la_commune": "POUILLY SUR VINGEANNE", "libell_d_acheminement": "POUILLY SUR VINGEANNE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21503"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a7fb85d2cf60a75ceb1371a4e547adc722f4b71", "fields": {"code_postal": "21700", "code_commune_insee": "21506", "libell_d_acheminement": "PREMEAUX PRISSEY", "ligne_5": "PRISSEY", "nom_de_la_commune": "PREMEAUX PRISSEY", "coordonnees_gps": [47.1116693022, 4.97977918311]}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8f5758b1439a980c056ab39ba011a7b315a201d", "fields": {"nom_de_la_commune": "RECEY SUR OURCE", "libell_d_acheminement": "RECEY SUR OURCE", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21519"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "680a88cb89658e611f5cd41d335ce669f3c5a554", "fields": {"nom_de_la_commune": "REMILLY SUR TILLE", "libell_d_acheminement": "REMILLY SUR TILLE", "code_postal": "21560", "coordonnees_gps": [47.326460883, 5.19639629604], "code_commune_insee": "21521"}, "geometry": {"type": "Point", "coordinates": [5.19639629604, 47.326460883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790ddc0d11f1423d8fcddccd9c954ff73371e233", "fields": {"nom_de_la_commune": "RENEVE", "libell_d_acheminement": "RENEVE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21522"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54f0747f88c17ed90218e5395c95d92fb6772ff", "fields": {"nom_de_la_commune": "REULLE VERGY", "libell_d_acheminement": "REULLE VERGY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21523"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b43be08b96637ca71afd9eeb730ccc69077a05e7", "fields": {"nom_de_la_commune": "ROCHEFORT SUR BREVON", "libell_d_acheminement": "ROCHEFORT SUR BREVON", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21526"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5414f3f1dc0c4f7196a4b950c14dd8b8741af5a", "fields": {"nom_de_la_commune": "ROUVRES SOUS MEILLY", "libell_d_acheminement": "ROUVRES SOUS MEILLY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21533"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "145e7fc089fee39c891ebee6abb6d3be581cb5fc", "fields": {"nom_de_la_commune": "RUFFEY LES BEAUNE", "libell_d_acheminement": "RUFFEY LES BEAUNE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21534"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8cd2e844e9acda270c2d3e640702b5e3f0ca656", "fields": {"nom_de_la_commune": "ST ANDEUX", "libell_d_acheminement": "ST ANDEUX", "code_postal": "21530", "coordonnees_gps": [47.3897025459, 4.14447335078], "code_commune_insee": "21538"}, "geometry": {"type": "Point", "coordinates": [4.14447335078, 47.3897025459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66cc59b3c2609fbb2825e2e28872b326a6197601", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21541"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f12160eb3ba9b28eba61e214e299ccc2a992e5c", "fields": {"nom_de_la_commune": "ST DIDIER", "libell_d_acheminement": "ST DIDIER", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21546"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fda0e9dd32d8faf7986fcaac4c8b4914a9c67665", "fields": {"nom_de_la_commune": "ST GERMAIN LE ROCHEUX", "libell_d_acheminement": "ST GERMAIN LE ROCHEUX", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21549"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c3de92bafb19ba238ad0929d3b3b59244c7846", "fields": {"nom_de_la_commune": "ST GERMAIN LES SENAILLY", "libell_d_acheminement": "ST GERMAIN LES SENAILLY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21550"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72723d6c3522b8c7da85053e04d2ff0167237933", "fields": {"nom_de_la_commune": "STE MARIE SUR OUCHE", "libell_d_acheminement": "STE MARIE SUR OUCHE", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21559"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb84e2d76d0d46733b47a307d943756f46121cb", "fields": {"nom_de_la_commune": "ST SEINE L ABBAYE", "libell_d_acheminement": "ST SEINE L ABBAYE", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21573"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eed522dd321a770f1dafe6a76600756566f002f", "fields": {"nom_de_la_commune": "ST SEINE SUR VINGEANNE", "libell_d_acheminement": "ST SEINE SUR VINGEANNE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21574"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c78f2de8686d732a73feead9da963fc624d31306", "fields": {"nom_de_la_commune": "ST SYMPHORIEN SUR SAONE", "libell_d_acheminement": "ST SYMPHORIEN SUR SAONE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21575"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f95dca87b01371041ffd98709e601494a60be3", "fields": {"nom_de_la_commune": "ST USAGE", "libell_d_acheminement": "ST USAGE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21577"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6101746329a0d3f0844b15668d7e562b5ff7b593", "fields": {"nom_de_la_commune": "SANTENAY", "libell_d_acheminement": "SANTENAY", "code_postal": "21590", "coordonnees_gps": [46.9172633393, 4.69386113985], "code_commune_insee": "21582"}, "geometry": {"type": "Point", "coordinates": [4.69386113985, 46.9172633393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbb1910ffd2ecf52059e725c5a02c7d8988805a3", "fields": {"nom_de_la_commune": "SAULIEU", "libell_d_acheminement": "SAULIEU", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21584"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be6b93e01b86a6a5a5728211d87dee1ebf5d64dd", "fields": {"nom_de_la_commune": "SAULON LA RUE", "libell_d_acheminement": "SAULON LA RUE", "code_postal": "21910", "coordonnees_gps": [47.1979696302, 5.07760526191], "code_commune_insee": "21586"}, "geometry": {"type": "Point", "coordinates": [5.07760526191, 47.1979696302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b42db2590e7edaa0c16786b177d67605f6a2906", "fields": {"nom_de_la_commune": "SAVIGNY SOUS MALAIN", "libell_d_acheminement": "SAVIGNY SOUS MALAIN", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21592"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8854034f925e3d2988ab5d6ec5cfa77f44db143b", "fields": {"nom_de_la_commune": "SAVOLLES", "libell_d_acheminement": "SAVOLLES", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21595"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a305dc7f509730a605afb345ad6471b27e9660", "fields": {"nom_de_la_commune": "SEMAREY", "libell_d_acheminement": "SEMAREY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21600"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4be33875745c0c17ee48de941692c3b154a0b1e", "fields": {"nom_de_la_commune": "SEMOND", "libell_d_acheminement": "SEMOND", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21602"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7efa5762eb4c775764c3f1a5dd3987fede840135", "fields": {"nom_de_la_commune": "SINCEY LES ROUVRAY", "libell_d_acheminement": "SINCEY LES ROUVRAY", "code_postal": "21530", "coordonnees_gps": [47.3897025459, 4.14447335078], "code_commune_insee": "21608"}, "geometry": {"type": "Point", "coordinates": [4.14447335078, 47.3897025459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d41a1bd48e823ec1954dbf52415828b81e4b54c3", "fields": {"nom_de_la_commune": "TAILLY", "libell_d_acheminement": "TAILLY", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21616"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fbe3d81ebe504908f6d613ca37f349d3473b08f", "fields": {"nom_de_la_commune": "TALMAY", "libell_d_acheminement": "TALMAY", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21618"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a2f56caad4821670153213307ba96629b09d41", "fields": {"nom_de_la_commune": "TARSUL", "libell_d_acheminement": "TARSUL", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21620"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1b34d8451a7f59be14df70685033ac9ed8763a", "fields": {"nom_de_la_commune": "THOIRES", "libell_d_acheminement": "THOIRES", "code_postal": "21570", "coordonnees_gps": [47.9722434237, 4.63863087175], "code_commune_insee": "21628"}, "geometry": {"type": "Point", "coordinates": [4.63863087175, 47.9722434237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd0c756b074b0e3efa2ffec60c4cc0c268da5f4f", "fields": {"nom_de_la_commune": "THOISY LA BERCHERE", "libell_d_acheminement": "THOISY LA BERCHERE", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21629"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2794e98acb9b036e4bd6672902c85ab694171800", "fields": {"nom_de_la_commune": "THOMIREY", "libell_d_acheminement": "THOMIREY", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21631"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6637a2711e97599b069427d2775938f6c4e2c4c1", "fields": {"nom_de_la_commune": "THOREY EN PLAINE", "libell_d_acheminement": "THOREY EN PLAINE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21632"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6a5b2b4136bc91dba36f8c424082568e2f65393", "fields": {"nom_de_la_commune": "THOREY SOUS CHARNY", "libell_d_acheminement": "THOREY SOUS CHARNY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21633"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d025d2b7634daaf7d73a9bb3440d6ab08b1ed78f", "fields": {"nom_de_la_commune": "THOREY SUR OUCHE", "libell_d_acheminement": "THOREY SUR OUCHE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21634"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b244607cbabb11591a3f36b451f1e3a83d242e9", "fields": {"nom_de_la_commune": "TICHEY", "libell_d_acheminement": "TICHEY", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21637"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb27d74fd84aa5abcd79b9f0ca4894ce28648761", "fields": {"nom_de_la_commune": "TOUTRY", "libell_d_acheminement": "TOUTRY", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21642"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb42b0a35c29b667e4f55809b06d8d8ab621530", "fields": {"nom_de_la_commune": "TROUHAUT", "libell_d_acheminement": "TROUHAUT", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21646"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05587abf74a092b18c9544b543dc373d1869fb03", "fields": {"nom_de_la_commune": "VAL SUZON", "libell_d_acheminement": "VAL SUZON", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21651"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe1a27a0156ae38ec7abc8153c85d6632dcc49c", "fields": {"nom_de_la_commune": "VANVEY", "libell_d_acheminement": "VANVEY", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21655"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4904e19b34d6883c138beead508abefbcde1cdf", "fields": {"nom_de_la_commune": "VAUCHIGNON", "libell_d_acheminement": "VAUCHIGNON", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21658"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91310a110da5e6fccfcf9dd06582514b11b5e761", "fields": {"nom_de_la_commune": "VEILLY", "libell_d_acheminement": "VEILLY", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21660"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce89573a748ef00b574c784e3c02cfc826aa10b2", "fields": {"nom_de_la_commune": "VELOGNY", "libell_d_acheminement": "VELOGNY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21662"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5863495e70dca6bf42d6772fc1a2971b2e390a1c", "fields": {"nom_de_la_commune": "VERNOIS LES VESVRES", "libell_d_acheminement": "VERNOIS LES VESVRES", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21665"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45a1aa3a96a13e284ade18a9146a8a8d6853e7f", "fields": {"nom_de_la_commune": "VEUVEY SUR OUCHE", "libell_d_acheminement": "VEUVEY SUR OUCHE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21673"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5cb439ed8611b5aae3c01338d205b4e3d7d8b02", "fields": {"nom_de_la_commune": "VIEVIGNE", "libell_d_acheminement": "VIEVIGNE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21682"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79be0714c512bf6c547013792072c6ccfd4f92ef", "fields": {"nom_de_la_commune": "VIEVY", "libell_d_acheminement": "VIEVY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21683"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3ea19e79ee2ab80a85c4601b82001354ff86fdd", "fields": {"nom_de_la_commune": "VIGNOLES", "libell_d_acheminement": "VIGNOLES", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21684"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7800f95dc7fdb0914d2a946994fe0ae2bd187b74", "fields": {"nom_de_la_commune": "VILLARS ET VILLENOTTE", "libell_d_acheminement": "VILLARS ET VILLENOTTE", "code_postal": "21140", "coordonnees_gps": [47.48453871, 4.33729444801], "code_commune_insee": "21689"}, "geometry": {"type": "Point", "coordinates": [4.33729444801, 47.48453871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "962c119aa2f1020033c137e640ef9c331ae1731d", "fields": {"nom_de_la_commune": "VILLECOMTE", "libell_d_acheminement": "VILLECOMTE", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21692"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bdb38bf669c51e633f44e2b2505740677aaf1b5", "fields": {"nom_de_la_commune": "VILLIERS LE DUC", "libell_d_acheminement": "VILLIERS LE DUC", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21704"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa76ebeb13bf9ba07f3d5d474ae4f31107a6fa6c", "fields": {"nom_de_la_commune": "VILLY EN AUXOIS", "libell_d_acheminement": "VILLY EN AUXOIS", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21707"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "731342f3e6171b83570b67bd9c7a6a172f652a60", "fields": {"nom_de_la_commune": "VITTEAUX", "libell_d_acheminement": "VITTEAUX", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21710"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35c8921813835cb5b444757ae0bb3880d75aac51", "fields": {"nom_de_la_commune": "VOLNAY", "libell_d_acheminement": "VOLNAY", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21712"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c880013008a4f8a79842d92b6fc8963c6b7406e", "fields": {"nom_de_la_commune": "VOUDENAY", "libell_d_acheminement": "VOUDENAY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21715"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74a1a49b1e8b401d620b886942c1afbefe28ccaf", "fields": {"nom_de_la_commune": "VOULAINES LES TEMPLIERS", "libell_d_acheminement": "VOULAINES LES TEMPLIERS", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21717"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182ac0bbfa15f4b1c741977920f5c480aa7a8b2e", "fields": {"code_postal": "22810", "code_commune_insee": "22005", "libell_d_acheminement": "BELLE ISLE EN TERRE", "ligne_5": "LOCMARIA", "nom_de_la_commune": "BELLE ISLE EN TERRE", "coordonnees_gps": [48.5216835739, -3.40784365182]}, "geometry": {"type": "Point", "coordinates": [-3.40784365182, 48.5216835739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afa5d8133c49f40392e4c5ed915ec07a7b1d5ecb", "fields": {"nom_de_la_commune": "BOURBRIAC", "libell_d_acheminement": "BOURBRIAC", "code_postal": "22390", "coordonnees_gps": [48.476204135, -3.22431130001], "code_commune_insee": "22013"}, "geometry": {"type": "Point", "coordinates": [-3.22431130001, 48.476204135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc5cd456089708ab153bb24030abdd68fbbcd8c", "fields": {"nom_de_la_commune": "ILE DE BREHAT", "libell_d_acheminement": "ILE DE BREHAT", "code_postal": "22870", "coordonnees_gps": [48.8509128879, -3.00148933967], "code_commune_insee": "22016"}, "geometry": {"type": "Point", "coordinates": [-3.00148933967, 48.8509128879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c5b3daba26a30330dd3738a631fccac39941c66", "fields": {"nom_de_la_commune": "BRELIDY", "libell_d_acheminement": "BRELIDY", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22018"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "042117a4e3ced5aaa9f306589eb00b5fb0383f4a", "fields": {"code_postal": "22300", "code_commune_insee": "22030", "libell_d_acheminement": "CAOUENNEC LANVEZEAC", "ligne_5": "LANVEZEAC", "nom_de_la_commune": "CAOUENNEC LANVEZEAC", "coordonnees_gps": [48.7115988979, -3.46942340449]}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "549bb410f5be09408dc028e2f255fa6419d26732", "fields": {"nom_de_la_commune": "CARNOET", "libell_d_acheminement": "CARNOET", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22031"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "100b9cc2560a1925a2a2037f172dff5901598a14", "fields": {"nom_de_la_commune": "COATASCORN", "libell_d_acheminement": "COATASCORN", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22041"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65a9324611413d1baea62c761ce66b13c7cbbc3c", "fields": {"nom_de_la_commune": "BOURNAND", "libell_d_acheminement": "BOURNAND", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86036"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658777acaa0d5c151ebf817245856d760e88cbb8", "fields": {"nom_de_la_commune": "LA BUSSIERE", "libell_d_acheminement": "LA BUSSIERE", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86040"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f603a1d2f9b569a6b3e909228c540feacbc63710", "fields": {"nom_de_la_commune": "BUXEROLLES", "libell_d_acheminement": "BUXEROLLES", "code_postal": "86180", "coordonnees_gps": [46.6051296937, 0.369452058547], "code_commune_insee": "86041"}, "geometry": {"type": "Point", "coordinates": [0.369452058547, 46.6051296937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7bce545bd8b1832391fe18d494974df56872111", "fields": {"nom_de_la_commune": "CEAUX EN COUHE", "libell_d_acheminement": "CEAUX EN COUHE", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86043"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6acc5f88633d5a3d58ac4c6e0a3455fe0d76b78", "fields": {"nom_de_la_commune": "CHAPELLE VIVIERS", "libell_d_acheminement": "CHAPELLE VIVIERS", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86059"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48769a3a4d282f84d5567831a2a858fd175674d4", "fields": {"nom_de_la_commune": "CHATAIN", "libell_d_acheminement": "CHATAIN", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86063"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fb6eabcb96066557b3b5ba1b492520fea934046", "fields": {"nom_de_la_commune": "CHATEAU GARNIER", "libell_d_acheminement": "CHATEAU GARNIER", "code_postal": "86350", "coordonnees_gps": [46.260748514, 0.50964665142], "code_commune_insee": "86064"}, "geometry": {"type": "Point", "coordinates": [0.50964665142, 46.260748514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f69eccdb0febaae6db3565a58f4e4b89e0fe084a", "fields": {"nom_de_la_commune": "CHAUVIGNY", "libell_d_acheminement": "CHAUVIGNY", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86070"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312cb5e90feb409d4a300fcd43df8027a1cfac15", "fields": {"nom_de_la_commune": "CHIRE EN MONTREUIL", "libell_d_acheminement": "CHIRE EN MONTREUIL", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86074"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff3e02a31fe6adecd24d58336d5296fe1e895517", "fields": {"nom_de_la_commune": "CIVAUX", "libell_d_acheminement": "CIVAUX", "code_postal": "86320", "coordonnees_gps": [46.3927181385, 0.726435061295], "code_commune_insee": "86077"}, "geometry": {"type": "Point", "coordinates": [0.726435061295, 46.3927181385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24fa73463f27eed15302ae348e406ecc9849fec6", "fields": {"nom_de_la_commune": "CLOUE", "libell_d_acheminement": "CLOUE", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86080"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54ef3f1fe043c1607dfedc8477d061191bc017d3", "fields": {"nom_de_la_commune": "COUSSAY LES BOIS", "libell_d_acheminement": "COUSSAY LES BOIS", "code_postal": "86270", "coordonnees_gps": [46.8121314624, 0.753430834935], "code_commune_insee": "86086"}, "geometry": {"type": "Point", "coordinates": [0.753430834935, 46.8121314624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "615a645d3b496be659e75780980f08c223eb5fa8", "fields": {"nom_de_la_commune": "CROUTELLE", "libell_d_acheminement": "CROUTELLE", "code_postal": "86240", "coordonnees_gps": [46.5120250661, 0.298942746534], "code_commune_insee": "86088"}, "geometry": {"type": "Point", "coordinates": [0.298942746534, 46.5120250661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde2a04fa32f96a56dda2467b2019ba6bdb8b35a", "fields": {"nom_de_la_commune": "CURZAY SUR VONNE", "libell_d_acheminement": "CURZAY SUR VONNE", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86091"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe71268591abd1aa7ac5bcd568dd71b38c4aa22a", "fields": {"nom_de_la_commune": "DISSAY", "libell_d_acheminement": "DISSAY", "code_postal": "86130", "coordonnees_gps": [46.6873283536, 0.421965737169], "code_commune_insee": "86095"}, "geometry": {"type": "Point", "coordinates": [0.421965737169, 46.6873283536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5174991afab029302363525a10db5646ceb585d9", "fields": {"nom_de_la_commune": "HAIMS", "libell_d_acheminement": "HAIMS", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86110"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e32781d292984afada2d428c3ef8e6468c4f8b6a", "fields": {"nom_de_la_commune": "JAZENEUIL", "libell_d_acheminement": "JAZENEUIL", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86116"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "378bc2784556461c070be3e6b0a0219d60f5ab65", "fields": {"nom_de_la_commune": "JOURNET", "libell_d_acheminement": "JOURNET", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86118"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "842dfb0738b80896e36d915520a94dfad61b3d34", "fields": {"nom_de_la_commune": "LESIGNY", "libell_d_acheminement": "LESIGNY", "code_postal": "86270", "coordonnees_gps": [46.8121314624, 0.753430834935], "code_commune_insee": "86129"}, "geometry": {"type": "Point", "coordinates": [0.753430834935, 46.8121314624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2c7d2cef31c8b7f100dcbaafcc2303dfea72263", "fields": {"nom_de_la_commune": "LUSSAC LES CHATEAUX", "libell_d_acheminement": "LUSSAC LES CHATEAUX", "code_postal": "86320", "coordonnees_gps": [46.3927181385, 0.726435061295], "code_commune_insee": "86140"}, "geometry": {"type": "Point", "coordinates": [0.726435061295, 46.3927181385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae4f7f2af315c62036df6de8118fe4e67fc63547", "fields": {"nom_de_la_commune": "MARCAY", "libell_d_acheminement": "MARCAY", "code_postal": "86370", "coordonnees_gps": [46.4325277487, 0.249386615442], "code_commune_insee": "86145"}, "geometry": {"type": "Point", "coordinates": [0.249386615442, 46.4325277487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85a2684a875a2634b01a559d13292f8720232246", "fields": {"nom_de_la_commune": "MARIGNY CHEMEREAU", "libell_d_acheminement": "MARIGNY CHEMEREAU", "code_postal": "86370", "coordonnees_gps": [46.4325277487, 0.249386615442], "code_commune_insee": "86147"}, "geometry": {"type": "Point", "coordinates": [0.249386615442, 46.4325277487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be1f725a110c3e2aa5af7acd9916317b20596c0", "fields": {"nom_de_la_commune": "MOUTERRE SUR BLOURDE", "libell_d_acheminement": "MOUTERRE SUR BLOURDE", "code_postal": "86430", "coordonnees_gps": [46.2180968835, 0.782184483066], "code_commune_insee": "86172"}, "geometry": {"type": "Point", "coordinates": [0.782184483066, 46.2180968835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84989020067a1dc1825a8ce51951785f9f1b8290", "fields": {"nom_de_la_commune": "NEUVILLE DE POITOU", "libell_d_acheminement": "NEUVILLE DE POITOU", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86177"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f1d0d85b1643f2e298e208dd136610d67404b2", "fields": {"nom_de_la_commune": "OYRE", "libell_d_acheminement": "OYRE", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86186"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87f5034eb00742f923bf21ad67b344d216a9176a", "fields": {"nom_de_la_commune": "PINDRAY", "libell_d_acheminement": "PINDRAY", "code_postal": "86500", "coordonnees_gps": [46.4016637433, 0.859768107385], "code_commune_insee": "86191"}, "geometry": {"type": "Point", "coordinates": [0.859768107385, 46.4016637433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e6f19edbc7fe16b0088cbb23ce2392488bec740", "fields": {"nom_de_la_commune": "PLAISANCE", "libell_d_acheminement": "PLAISANCE", "code_postal": "86500", "coordonnees_gps": [46.4016637433, 0.859768107385], "code_commune_insee": "86192"}, "geometry": {"type": "Point", "coordinates": [0.859768107385, 46.4016637433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e0936280ef45a2d825c1f226bda05b54f46538", "fields": {"nom_de_la_commune": "PORT DE PILES", "libell_d_acheminement": "PORT DE PILES", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86195"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08005bd5d224930a1d4a0b6784c4789ce06b3848", "fields": {"nom_de_la_commune": "POUANT", "libell_d_acheminement": "POUANT", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86197"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eebb5b35053a88afbb5b1cdf6c8a42ca8fd42ab", "fields": {"nom_de_la_commune": "POUILLE", "libell_d_acheminement": "POUILLE", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86198"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4db345e0bfa9ffcb01b8cf965e246731c99ece9", "fields": {"nom_de_la_commune": "QUEAUX", "libell_d_acheminement": "QUEAUX", "code_postal": "86150", "coordonnees_gps": [46.2498879507, 0.661977427311], "code_commune_insee": "86203"}, "geometry": {"type": "Point", "coordinates": [0.661977427311, 46.2498879507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29f4e43d5e7a9e38880d88886eba4d34ece93286", "fields": {"nom_de_la_commune": "LA ROCHE POSAY", "libell_d_acheminement": "LA ROCHE POSAY", "code_postal": "86270", "coordonnees_gps": [46.8121314624, 0.753430834935], "code_commune_insee": "86207"}, "geometry": {"type": "Point", "coordinates": [0.753430834935, 46.8121314624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff4e94e8db66574939b0820fc42e0748803f3f0c", "fields": {"nom_de_la_commune": "ST GERVAIS LES TROIS CLOCHERS", "libell_d_acheminement": "ST GERVAIS LES TROIS CLOCHERS", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86224"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987eeb1878a82e3ac86217c1dca832930c0aa8f0", "fields": {"nom_de_la_commune": "VALDIVIENNE", "libell_d_acheminement": "VALDIVIENNE", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86233"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0273f488dc862a38158016922f8abe8dac35ce2d", "fields": {"code_postal": "86300", "code_commune_insee": "86233", "libell_d_acheminement": "VALDIVIENNE", "ligne_5": "SALLES EN TOULON", "nom_de_la_commune": "VALDIVIENNE", "coordonnees_gps": [46.547665049, 0.687527272819]}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b361b99a8dee22883cd25e021eadb5964fa007c1", "fields": {"nom_de_la_commune": "ST MARTIN L ARS", "libell_d_acheminement": "ST MARTIN L ARS", "code_postal": "86350", "coordonnees_gps": [46.260748514, 0.50964665142], "code_commune_insee": "86234"}, "geometry": {"type": "Point", "coordinates": [0.50964665142, 46.260748514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b3f6af9d6df99a0ee058f58b9b89d5a87ee9d1e", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86239"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9283fb18754c4121517d59cf77cb0f40f0442980", "fields": {"nom_de_la_commune": "ST REMY SUR CREUSE", "libell_d_acheminement": "ST REMY SUR CREUSE", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86241"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e9b1bd57a27afd8de24501191d6956ec0d6a9a", "fields": {"nom_de_la_commune": "ST SAVIN", "libell_d_acheminement": "ST SAVIN", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86246"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "281b1eb11d612f45b99ae070199bcdded751db88", "fields": {"nom_de_la_commune": "SAIRES", "libell_d_acheminement": "SAIRES", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86249"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31839877d7c4fac413af15902c705e72b2382a19", "fields": {"nom_de_la_commune": "SAVIGNY SOUS FAYE", "libell_d_acheminement": "SAVIGNY SOUS FAYE", "code_postal": "86140", "coordonnees_gps": [46.8283265591, 0.330477268884], "code_commune_insee": "86257"}, "geometry": {"type": "Point", "coordinates": [0.330477268884, 46.8283265591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "100bc8ded8184336d64dfd3bdf5ac571f5db1cd5", "fields": {"nom_de_la_commune": "SERIGNY", "libell_d_acheminement": "SERIGNY", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86260"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6fcf275c5e63524cb70245268bb85e466b295c0", "fields": {"nom_de_la_commune": "SILLARS", "libell_d_acheminement": "SILLARS", "code_postal": "86320", "coordonnees_gps": [46.3927181385, 0.726435061295], "code_commune_insee": "86262"}, "geometry": {"type": "Point", "coordinates": [0.726435061295, 46.3927181385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c51527c65ee5f7ea3235b23f74eeca57108f2d8e", "fields": {"nom_de_la_commune": "TERCE", "libell_d_acheminement": "TERCE", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86268"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a1b290dd06523722a01a9bf2bf85d780b87f94", "fields": {"nom_de_la_commune": "LA TRIMOUILLE", "libell_d_acheminement": "LA TRIMOUILLE", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86273"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8339dbd366b92a608ab89a7e9174500c276c7fb6", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "86410", "coordonnees_gps": [46.402745465, 0.573301169614], "code_commune_insee": "86285"}, "geometry": {"type": "Point", "coordinates": [0.573301169614, 46.402745465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cfc3eca169f727bae5ad100e6a0ade82ec46d6f", "fields": {"nom_de_la_commune": "VERRUE", "libell_d_acheminement": "VERRUE", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86286"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc48062dd56221fe5a323d5ee34c790c58d389ec", "fields": {"nom_de_la_commune": "LE VIGEANT", "libell_d_acheminement": "LE VIGEANT", "code_postal": "86150", "coordonnees_gps": [46.2498879507, 0.661977427311], "code_commune_insee": "86289"}, "geometry": {"type": "Point", "coordinates": [0.661977427311, 46.2498879507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab104068c5446ae846bccc9a06f5307e9d5ba0aa", "fields": {"nom_de_la_commune": "LA VILLEDIEU DU CLAIN", "libell_d_acheminement": "LA VILLEDIEU DU CLAIN", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86290"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218582501cef274be10f0920079f2b8a6f6e698e", "fields": {"nom_de_la_commune": "VILLIERS", "libell_d_acheminement": "VILLIERS", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86292"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "323d4df5544cdec812ad3540c0e3b259788f805c", "fields": {"nom_de_la_commune": "VOUILLE", "libell_d_acheminement": "VOUILLE", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86294"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "920b084dc8358dd62793d268e4826b80e949bc52", "fields": {"code_postal": "86580", "code_commune_insee": "86297", "libell_d_acheminement": "VOUNEUIL SOUS BIARD", "ligne_5": "POUZIOUX LA JARRIE", "nom_de_la_commune": "VOUNEUIL SOUS BIARD", "coordonnees_gps": [46.580240949, 0.276027039382]}, "geometry": {"type": "Point", "coordinates": [0.276027039382, 46.580240949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e05f25b5734b97e3f925dc968267cc4f3edfcad7", "fields": {"nom_de_la_commune": "AMBAZAC", "libell_d_acheminement": "AMBAZAC", "code_postal": "87240", "coordonnees_gps": [45.9667893099, 1.40820306332], "code_commune_insee": "87002"}, "geometry": {"type": "Point", "coordinates": [1.40820306332, 45.9667893099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d5182b8755b8a34a0adfb8fd341c424e542714b", "fields": {"nom_de_la_commune": "BEAUMONT DU LAC", "libell_d_acheminement": "BEAUMONT DU LAC", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87009"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48c77f027429336291f9779e2a8525fcf6d47aa", "fields": {"nom_de_la_commune": "BELLAC", "libell_d_acheminement": "BELLAC", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87011"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f737706a30289eea0cbe5f236ce48ffda89cfc4", "fields": {"nom_de_la_commune": "BERSAC SUR RIVALIER", "libell_d_acheminement": "BERSAC SUR RIVALIER", "code_postal": "87370", "coordonnees_gps": [46.0621632693, 1.46879838783], "code_commune_insee": "87013"}, "geometry": {"type": "Point", "coordinates": [1.46879838783, 46.0621632693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e215f7ce7a01d1c886ba3f185793646909ea51a", "fields": {"nom_de_la_commune": "BURGNAC", "libell_d_acheminement": "BURGNAC", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87025"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6748545f71455da188f98dbc817037e3be25a6d", "fields": {"nom_de_la_commune": "BUSSIERE GALANT", "libell_d_acheminement": "BUSSIERE GALANT", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87027"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "718a775729ccf3fde90e1fda35087c294a3ab2b0", "fields": {"code_postal": "87230", "code_commune_insee": "87027", "libell_d_acheminement": "BUSSIERE GALANT", "ligne_5": "ST NICOLAS COURBEFY", "nom_de_la_commune": "BUSSIERE GALANT", "coordonnees_gps": [45.6620838392, 1.01085910015]}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad02e750c387c99a656d7f5bd2f37ea8396625d7", "fields": {"nom_de_la_commune": "CHAILLAC SUR VIENNE", "libell_d_acheminement": "CHAILLAC SUR VIENNE", "code_postal": "87200", "coordonnees_gps": [45.8915461784, 0.908243597507], "code_commune_insee": "87030"}, "geometry": {"type": "Point", "coordinates": [0.908243597507, 45.8915461784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6651afe7ff4a005e0932ea719dde5bc3db4af8", "fields": {"nom_de_la_commune": "LE CHALARD", "libell_d_acheminement": "LE CHALARD", "code_postal": "87500", "coordonnees_gps": [45.5304259487, 1.21634245482], "code_commune_insee": "87031"}, "geometry": {"type": "Point", "coordinates": [1.21634245482, 45.5304259487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85a2862d8f00fc7b1c05a0bfcac4ca8390d9a6f8", "fields": {"nom_de_la_commune": "CHATEAUPONSAC", "libell_d_acheminement": "CHATEAUPONSAC", "code_postal": "87290", "coordonnees_gps": [46.1497841077, 1.2728577587], "code_commune_insee": "87041"}, "geometry": {"type": "Point", "coordinates": [1.2728577587, 46.1497841077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3948f4e8f19732d5c9024a70c71337ed3eaa9563", "fields": {"nom_de_la_commune": "CHEISSOUX", "libell_d_acheminement": "CHEISSOUX", "code_postal": "87460", "coordonnees_gps": [45.8082304662, 1.65843592046], "code_commune_insee": "87043"}, "geometry": {"type": "Point", "coordinates": [1.65843592046, 45.8082304662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07ac862f40dfb243e8aba0f4f5ba0aa3125c7ca0", "fields": {"nom_de_la_commune": "CHERONNAC", "libell_d_acheminement": "CHERONNAC", "code_postal": "87600", "coordonnees_gps": [45.7931752464, 0.809506668159], "code_commune_insee": "87044"}, "geometry": {"type": "Point", "coordinates": [0.809506668159, 45.7931752464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99bfa3e5abc23afe263f889fc83a8b4ec4774af4", "fields": {"nom_de_la_commune": "CONDAT SUR VIENNE", "libell_d_acheminement": "CONDAT SUR VIENNE", "code_postal": "87920", "coordonnees_gps": [45.7832078836, 1.24019450522], "code_commune_insee": "87048"}, "geometry": {"type": "Point", "coordinates": [1.24019450522, 45.7832078836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "788c45b072882fd39eadbb7ff76793097bf65ebc", "fields": {"nom_de_la_commune": "LA CROISILLE SUR BRIANCE", "libell_d_acheminement": "LA CROISILLE SUR BRIANCE", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87051"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c0698f9c26ec3f67a527fb37b2132cd1e2778c", "fields": {"nom_de_la_commune": "DINSAC", "libell_d_acheminement": "DINSAC", "code_postal": "87210", "coordonnees_gps": [46.2183955334, 1.04069984873], "code_commune_insee": "87056"}, "geometry": {"type": "Point", "coordinates": [1.04069984873, 46.2183955334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29818ea3c0ca6e5568c61146985c12957181c0ce", "fields": {"nom_de_la_commune": "GAJOUBERT", "libell_d_acheminement": "GAJOUBERT", "code_postal": "87330", "coordonnees_gps": [46.112617356, 0.896746440713], "code_commune_insee": "87069"}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ff453d9661fa7c389f3cc997f530a364fbfb3b3", "fields": {"nom_de_la_commune": "LA GENEYTOUSE", "libell_d_acheminement": "LA GENEYTOUSE", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87070"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f49f38cf025080e2584f8220ca1915eb933f8a", "fields": {"nom_de_la_commune": "GLANGES", "libell_d_acheminement": "GLANGES", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87072"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "857aa8ca38d9b3e97896d157b9b48433f361305b", "fields": {"nom_de_la_commune": "ISLE", "libell_d_acheminement": "ISLE", "code_postal": "87170", "coordonnees_gps": [45.8039403646, 1.19507537349], "code_commune_insee": "87075"}, "geometry": {"type": "Point", "coordinates": [1.19507537349, 45.8039403646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "325ef2d15665f5654c4aff68bfbff927dfe18cdc", "fields": {"nom_de_la_commune": "JOURGNAC", "libell_d_acheminement": "JOURGNAC", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87081"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "738fd027b7e87776dba7d4911f6dd6d1387e4b2a", "fields": {"nom_de_la_commune": "LIMOGES", "libell_d_acheminement": "LIMOGES", "code_postal": "87000", "coordonnees_gps": [45.8544056025, 1.24905166141], "code_commune_insee": "87085"}, "geometry": {"type": "Point", "coordinates": [1.24905166141, 45.8544056025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0005438e23ec41e8ea1fd51cb5e6387921b18e8d", "fields": {"nom_de_la_commune": "LIMOGES", "libell_d_acheminement": "LIMOGES", "code_postal": "87100", "coordonnees_gps": [45.8544056025, 1.24905166141], "code_commune_insee": "87085"}, "geometry": {"type": "Point", "coordinates": [1.24905166141, 45.8544056025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f878a25d7870eab7ef02b108514172f32a9c773c", "fields": {"nom_de_la_commune": "MAILHAC SUR BENAIZE", "libell_d_acheminement": "MAILHAC SUR BENAIZE", "code_postal": "87160", "coordonnees_gps": [46.3147995575, 1.35815432469], "code_commune_insee": "87090"}, "geometry": {"type": "Point", "coordinates": [1.35815432469, 46.3147995575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a7f12d3788b47d014f284121d564127b700e5b", "fields": {"nom_de_la_commune": "MARVAL", "libell_d_acheminement": "MARVAL", "code_postal": "87440", "coordonnees_gps": [45.6750304013, 0.76861145842], "code_commune_insee": "87092"}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "063a5217ca032b9744f5add437f77b399f61d458", "fields": {"nom_de_la_commune": "MASLEON", "libell_d_acheminement": "MASLEON", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87093"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7e62271e323bf7873436fbbc0f8f9f7170eb96e", "fields": {"nom_de_la_commune": "MEUZAC", "libell_d_acheminement": "MEUZAC", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87095"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83bfd80c0f59ee3b39fbd982b479822773240c85", "fields": {"nom_de_la_commune": "NEDDE", "libell_d_acheminement": "NEDDE", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87104"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "841149e547d42dff96a2bb3a28e44d4e7267d22d", "fields": {"nom_de_la_commune": "NEUVIC ENTIER", "libell_d_acheminement": "NEUVIC ENTIER", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87105"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39faa245ded448ef4c414b66eec43a509c55c584", "fields": {"nom_de_la_commune": "ORADOUR ST GENEST", "libell_d_acheminement": "ORADOUR ST GENEST", "code_postal": "87210", "coordonnees_gps": [46.2183955334, 1.04069984873], "code_commune_insee": "87109"}, "geometry": {"type": "Point", "coordinates": [1.04069984873, 46.2183955334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93d528192104d6497af66053611dd6c9f3256f46", "fields": {"nom_de_la_commune": "ORADOUR SUR VAYRES", "libell_d_acheminement": "ORADOUR SUR VAYRES", "code_postal": "87150", "coordonnees_gps": [45.7143690122, 0.872435194134], "code_commune_insee": "87111"}, "geometry": {"type": "Point", "coordinates": [0.872435194134, 45.7143690122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "990f3a706163c932b821ed48be3d75a82a552210", "fields": {"nom_de_la_commune": "PAGEAS", "libell_d_acheminement": "PAGEAS", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87112"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a7a2ccee5bb1dc15bdd2acd42170c90e5287b3", "fields": {"nom_de_la_commune": "PENSOL", "libell_d_acheminement": "PENSOL", "code_postal": "87440", "coordonnees_gps": [45.6750304013, 0.76861145842], "code_commune_insee": "87115"}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721d549ee77013abc109c0beaf01cdce97cb4e66", "fields": {"nom_de_la_commune": "PEYRAT DE BELLAC", "libell_d_acheminement": "PEYRAT DE BELLAC", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87116"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8dc4e18134727fdff09774fc3bb2196a31d7950", "fields": {"nom_de_la_commune": "PEYRAT LE CHATEAU", "libell_d_acheminement": "PEYRAT LE CHATEAU", "code_postal": "87470", "coordonnees_gps": [45.8082040567, 1.78200096341], "code_commune_insee": "87117"}, "geometry": {"type": "Point", "coordinates": [1.78200096341, 45.8082040567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9892f81ce993579b4fdb08359dad66c51b88af5a", "fields": {"nom_de_la_commune": "PEYRILHAC", "libell_d_acheminement": "PEYRILHAC", "code_postal": "87510", "coordonnees_gps": [45.9426175012, 1.15649856905], "code_commune_insee": "87118"}, "geometry": {"type": "Point", "coordinates": [1.15649856905, 45.9426175012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a850de031bae714532863d3a6aae393a81e47bad", "fields": {"nom_de_la_commune": "RILHAC RANCON", "libell_d_acheminement": "RILHAC RANCON", "code_postal": "87570", "coordonnees_gps": [45.9072626235, 1.33259631745], "code_commune_insee": "87125"}, "geometry": {"type": "Point", "coordinates": [1.33259631745, 45.9072626235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e53b7c87b01c587262dc08e7856d29aae687bcc", "fields": {"nom_de_la_commune": "ST AMAND MAGNAZEIX", "libell_d_acheminement": "ST AMAND MAGNAZEIX", "code_postal": "87290", "coordonnees_gps": [46.1497841077, 1.2728577587], "code_commune_insee": "87133"}, "geometry": {"type": "Point", "coordinates": [1.2728577587, 46.1497841077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea8776ce45926676ce4432da4cac3d0c9334d692", "fields": {"nom_de_la_commune": "ST BAZILE", "libell_d_acheminement": "ST BAZILE", "code_postal": "87150", "coordonnees_gps": [45.7143690122, 0.872435194134], "code_commune_insee": "87137"}, "geometry": {"type": "Point", "coordinates": [0.872435194134, 45.7143690122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283bff29f16904bfdfa49c18fa0f802076dc220e", "fields": {"nom_de_la_commune": "ST CYR", "libell_d_acheminement": "ST CYR", "code_postal": "87310", "coordonnees_gps": [45.7951998863, 0.972217367577], "code_commune_insee": "87141"}, "geometry": {"type": "Point", "coordinates": [0.972217367577, 45.7951998863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ead945678f39579c3c97d8f56a7bbd32f465154", "fields": {"nom_de_la_commune": "ST JUNIEN", "libell_d_acheminement": "ST JUNIEN", "code_postal": "87200", "coordonnees_gps": [45.8915461784, 0.908243597507], "code_commune_insee": "87154"}, "geometry": {"type": "Point", "coordinates": [0.908243597507, 45.8915461784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c57fdfbfd760430d60438bf49607c21381bc093", "fields": {"nom_de_la_commune": "ST LAURENT LES EGLISES", "libell_d_acheminement": "ST LAURENT LES EGLISES", "code_postal": "87240", "coordonnees_gps": [45.9667893099, 1.40820306332], "code_commune_insee": "87157"}, "geometry": {"type": "Point", "coordinates": [1.40820306332, 45.9667893099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9d08fd0f91aa153b0090773e1176f1ee7d3dbc", "fields": {"nom_de_la_commune": "ST LEONARD DE NOBLAT", "libell_d_acheminement": "ST LEONARD DE NOBLAT", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87161"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d193963bafbb7781021b7d068a921a6a328f33b", "fields": {"nom_de_la_commune": "ST MARTIN LE MAULT", "libell_d_acheminement": "ST MARTIN LE MAULT", "code_postal": "87360", "coordonnees_gps": [46.3220927277, 1.12131601301], "code_commune_insee": "87165"}, "geometry": {"type": "Point", "coordinates": [1.12131601301, 46.3220927277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb79984e04efef89732d941d1827ae90ef1a357c", "fields": {"nom_de_la_commune": "ST OUEN SUR GARTEMPE", "libell_d_acheminement": "ST OUEN SUR GARTEMPE", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87172"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9596e549725815f905b1ecde90a9da517bfabbb", "fields": {"nom_de_la_commune": "ST VICTURNIEN", "libell_d_acheminement": "ST VICTURNIEN", "code_postal": "87420", "coordonnees_gps": [45.8770915845, 1.02789715577], "code_commune_insee": "87185"}, "geometry": {"type": "Point", "coordinates": [1.02789715577, 45.8770915845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "754e173031c2298473ae13c7a51f12167a77b84b", "fields": {"nom_de_la_commune": "LES SALLES LAVAUGUYON", "libell_d_acheminement": "LES SALLES LAVAUGUYON", "code_postal": "87440", "coordonnees_gps": [45.6750304013, 0.76861145842], "code_commune_insee": "87189"}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4352bbf854272b3b4489d1a77c980442ed56dd0", "fields": {"nom_de_la_commune": "SOLIGNAC", "libell_d_acheminement": "SOLIGNAC", "code_postal": "87110", "coordonnees_gps": [45.746684922, 1.26292425158], "code_commune_insee": "87192"}, "geometry": {"type": "Point", "coordinates": [1.26292425158, 45.746684922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08de599948d57f74d682d725f4f1517afcfd7a46", "fields": {"nom_de_la_commune": "AHEVILLE", "libell_d_acheminement": "AHEVILLE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88002"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f8dc184ad406af036c533993ec693d486fc3ca", "fields": {"nom_de_la_commune": "MOSNAC", "libell_d_acheminement": "MOSNAC", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16233"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8298eccf6aada4b9ecd9c3069747d028704b07c3", "fields": {"code_postal": "16700", "code_commune_insee": "16242", "libell_d_acheminement": "NANTEUIL EN VALLEE", "ligne_5": "MESSEUX", "nom_de_la_commune": "NANTEUIL EN VALLEE", "coordonnees_gps": [46.0168761938, 0.246377896211]}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a728f7edee90031c1ca3f94909aeb3a66e16ac87", "fields": {"nom_de_la_commune": "NONAVILLE", "libell_d_acheminement": "NONAVILLE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16247"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f18186e48bfdafabec02bf51fca7efd87792561c", "fields": {"nom_de_la_commune": "ORGEDEUIL", "libell_d_acheminement": "ORGEDEUIL", "code_postal": "16220", "coordonnees_gps": [45.6792233734, 0.507971273327], "code_commune_insee": "16250"}, "geometry": {"type": "Point", "coordinates": [0.507971273327, 45.6792233734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62ddfb1e4b2d7d9b1cf52eca05a217bae94ab70c", "fields": {"nom_de_la_commune": "POURSAC", "libell_d_acheminement": "POURSAC", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16268"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55675fd82215ddddca83ec5ed58b6f74f79d2391", "fields": {"nom_de_la_commune": "ROUILLAC", "libell_d_acheminement": "ROUILLAC", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16286"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e894e8b1b4ef7cc66743d420fb7332c0fb92d52c", "fields": {"nom_de_la_commune": "ROULLET ST ESTEPHE", "libell_d_acheminement": "ROULLET ST ESTEPHE", "code_postal": "16440", "coordonnees_gps": [45.5763660352, 0.064435228401], "code_commune_insee": "16287"}, "geometry": {"type": "Point", "coordinates": [0.064435228401, 45.5763660352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f6d0f2a443c992f1ca9bc957abe22833954c43", "fields": {"nom_de_la_commune": "ROUSSINES", "libell_d_acheminement": "ROUSSINES", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16289"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70863f1ce1c3a6ae4556827cb46c42bab8b583eb", "fields": {"nom_de_la_commune": "ST ADJUTORY", "libell_d_acheminement": "ST ADJUTORY", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16293"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44de0ae4624f6558b1229f43e4de1cc0f000168e", "fields": {"nom_de_la_commune": "ST AMANT DE BONNIEURE", "libell_d_acheminement": "ST AMANT DE BONNIEURE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16296"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c9d5123cea37eeec66c741ca9bbf4a78228c21", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16309"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c3ffdf09c17f8154f198fc388aed93dfeddc5db", "fields": {"nom_de_la_commune": "ST EUTROPE", "libell_d_acheminement": "ST EUTROPE", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16314"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a0aebdce3b06c8031efc660f44f3f9c45aa5537", "fields": {"nom_de_la_commune": "ST GROUX", "libell_d_acheminement": "ST GROUX", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16326"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "487c0b796dbc5b716b694c8dedee2c95412b452c", "fields": {"nom_de_la_commune": "ST LAURENT DE CERIS", "libell_d_acheminement": "ST LAURENT DE CERIS", "code_postal": "16450", "coordonnees_gps": [45.9168932329, 0.460927666406], "code_commune_insee": "16329"}, "geometry": {"type": "Point", "coordinates": [0.460927666406, 45.9168932329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7743423818209e116c4e7cd63f644caa38bcee35", "fields": {"nom_de_la_commune": "ST LAURENT DE COGNAC", "libell_d_acheminement": "ST LAURENT DE COGNAC", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16330"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b2bbacd4e968f44d0eb01c9f9f1fff663b820ed", "fields": {"nom_de_la_commune": "ST LAURENT DES COMBES", "libell_d_acheminement": "ST LAURENT DES COMBES", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16331"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6eff19804c6c0a380ef77ddd91857b9ab62e45", "fields": {"nom_de_la_commune": "ST MARTIN DU CLOCHER", "libell_d_acheminement": "ST MARTIN DU CLOCHER", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16335"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b754725357d8dbe325b5fb3a61548b273463f29f", "fields": {"nom_de_la_commune": "ST SULPICE DE RUFFEC", "libell_d_acheminement": "ST SULPICE DE RUFFEC", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16356"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbd63cfb87ebe40e7f41b56baaf794fc51d1a8c7", "fields": {"nom_de_la_commune": "ST YRIEIX SUR CHARENTE", "libell_d_acheminement": "ST YRIEIX SUR CHARENTE", "code_postal": "16710", "coordonnees_gps": [45.6816336723, 0.12857222199], "code_commune_insee": "16358"}, "geometry": {"type": "Point", "coordinates": [0.12857222199, 45.6816336723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae905dacc0659e5f293eb3ff2ef3a42890315d60", "fields": {"nom_de_la_commune": "SAULGOND", "libell_d_acheminement": "SAULGOND", "code_postal": "16420", "coordonnees_gps": [45.9795586086, 0.838157166739], "code_commune_insee": "16363"}, "geometry": {"type": "Point", "coordinates": [0.838157166739, 45.9795586086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eeb6d67e58048db9fa17e57c9088d67e5894be0", "fields": {"nom_de_la_commune": "SERS", "libell_d_acheminement": "SERS", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16368"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e758763e33fdda07039e5cd8177469b9be83ce17", "fields": {"nom_de_la_commune": "SOUVIGNE", "libell_d_acheminement": "SOUVIGNE", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16373"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14c2fcfb54a7b302ea7d32d667549e013b852b51", "fields": {"nom_de_la_commune": "TRIAC LAUTRAIT", "libell_d_acheminement": "TRIAC LAUTRAIT", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16387"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ace95a725b6de8bd6316a2023b55a84a79b3dc6", "fields": {"code_postal": "16200", "code_commune_insee": "16387", "libell_d_acheminement": "TRIAC LAUTRAIT", "ligne_5": "LANTIN", "nom_de_la_commune": "TRIAC LAUTRAIT", "coordonnees_gps": [45.7157731046, -0.184252292746]}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9612ce5b26245da53a6719e90bb96b394b3256", "fields": {"nom_de_la_commune": "VALENCE", "libell_d_acheminement": "VALENCE", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16392"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312fef48cda4c27f3ee20eb6c0a1c5726f76363f", "fields": {"nom_de_la_commune": "VERVANT", "libell_d_acheminement": "VERVANT", "code_postal": "16330", "coordonnees_gps": [45.7922870364, 0.122865249397], "code_commune_insee": "16401"}, "geometry": {"type": "Point", "coordinates": [0.122865249397, 45.7922870364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7996dc18c2dfef96c56be6c50b1115c4560e0ca1", "fields": {"nom_de_la_commune": "VILLEGATS", "libell_d_acheminement": "VILLEGATS", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16410"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c976f193e251ad56f37ab15da46ffb71c91a0127", "fields": {"nom_de_la_commune": "VILLIERS LE ROUX", "libell_d_acheminement": "VILLIERS LE ROUX", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16413"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9197278a1d0301723de0b82c5f2a2793a859052", "fields": {"nom_de_la_commune": "VITRAC ST VINCENT", "libell_d_acheminement": "VITRAC ST VINCENT", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16416"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c323d6f544a3930fe85c330ca36e3f45133ce2e", "fields": {"nom_de_la_commune": "YVIERS", "libell_d_acheminement": "YVIERS", "code_postal": "16210", "coordonnees_gps": [45.2719672367, 0.0511310562847], "code_commune_insee": "16424"}, "geometry": {"type": "Point", "coordinates": [0.0511310562847, 45.2719672367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3792c355732540473aad46ba2cbe3a7a70ae615", "fields": {"nom_de_la_commune": "AIGREFEUILLE D AUNIS", "libell_d_acheminement": "AIGREFEUILLE D AUNIS", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17003"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8e99cd5366c316216c1205c7b66f8ebffb9017e", "fields": {"nom_de_la_commune": "ANGLIERS", "libell_d_acheminement": "ANGLIERS", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17009"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2277ea039e560a7e4117f3074c2d7c4ce924c934", "fields": {"nom_de_la_commune": "ANGOULINS", "libell_d_acheminement": "ANGOULINS", "code_postal": "17690", "coordonnees_gps": [46.1067999964, -1.10569913628], "code_commune_insee": "17010"}, "geometry": {"type": "Point", "coordinates": [-1.10569913628, 46.1067999964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f26ff9170a62b5795cba1be6249b8751290ff2", "fields": {"nom_de_la_commune": "ANNEZAY", "libell_d_acheminement": "ANNEZAY", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17012"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b907ebce0c9b6e619145678353b0ff369fdc38ba", "fields": {"nom_de_la_commune": "ANTEZANT LA CHAPELLE", "libell_d_acheminement": "ANTEZANT LA CHAPELLE", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17013"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caec9b6395631876c8718f78b684be4865aab0e2", "fields": {"nom_de_la_commune": "ARCHINGEAY", "libell_d_acheminement": "ARCHINGEAY", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17017"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5154c206832595a79691060a70e7a6d3e4116cc4", "fields": {"code_postal": "17770", "code_commune_insee": "17025", "libell_d_acheminement": "AUMAGNE", "ligne_5": "CHAGNON", "nom_de_la_commune": "AUMAGNE", "coordonnees_gps": [45.8271073503, -0.466918444884]}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bef6b49a46aa453d85916700124fac66eb0cb34d", "fields": {"nom_de_la_commune": "BEDENAC", "libell_d_acheminement": "BEDENAC", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17038"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e70e5b74b74c4cf4df27c5f4ce18af5ab2943a97", "fields": {"nom_de_la_commune": "BENON", "libell_d_acheminement": "BENON", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17041"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b82ea644ca341f480fc0ee3fc7bf4dd4eaa9179c", "fields": {"nom_de_la_commune": "BERNAY ST MARTIN", "libell_d_acheminement": "BERNAY ST MARTIN", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17043"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37aca8fb64bcbc14811633080ca4c0bc0c116db0", "fields": {"nom_de_la_commune": "BOURGNEUF", "libell_d_acheminement": "BOURGNEUF", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17059"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1dcd9f40fcadd58a733b280e7abc35c9d2948c", "fields": {"nom_de_la_commune": "BRIE SOUS ARCHIAC", "libell_d_acheminement": "BRIE SOUS ARCHIAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17066"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb1b939fc53cf7234beffa2220f8649ee809813", "fields": {"nom_de_la_commune": "BRIE SOUS MORTAGNE", "libell_d_acheminement": "BRIE SOUS MORTAGNE", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17068"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e3210111d170a8e1d3d2f26f25a3498f189da6", "fields": {"nom_de_la_commune": "BRIZAMBOURG", "libell_d_acheminement": "BRIZAMBOURG", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17070"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce40c55d54f404c9ea336bacb2916eec5bdcfae", "fields": {"nom_de_la_commune": "LA BROUSSE", "libell_d_acheminement": "LA BROUSSE", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17071"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "393c8d766405bcdb7ba2282dc7ced2a07ab023f6", "fields": {"nom_de_la_commune": "BUSSAC SUR CHARENTE", "libell_d_acheminement": "BUSSAC SUR CHARENTE", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17073"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f959cb98bec4c25d05052aa2299f8ca70f389e6", "fields": {"nom_de_la_commune": "CHAMPAGNAC", "libell_d_acheminement": "CHAMPAGNAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17082"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba61c4c77900d113872176e14193580ed83a412", "fields": {"nom_de_la_commune": "CHAMPAGNE", "libell_d_acheminement": "CHAMPAGNE", "code_postal": "17620", "coordonnees_gps": [45.8464645946, -0.95771650444], "code_commune_insee": "17083"}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece6f96b23138ec6021e7437bd6f2793ae059d8b", "fields": {"code_postal": "17230", "code_commune_insee": "17091", "libell_d_acheminement": "CHARRON", "ligne_5": "BOURG CHAPON", "nom_de_la_commune": "CHARRON", "coordonnees_gps": [46.286014889, -1.01509211949]}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8809606d103b7d6e5f56cd5d0daf58e765abf97c", "fields": {"nom_de_la_commune": "CHARTUZAC", "libell_d_acheminement": "CHARTUZAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17092"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7c71e6f7159fd3d0992ab9cf0d8d643052dbe0", "fields": {"nom_de_la_commune": "CHATENET", "libell_d_acheminement": "CHATENET", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17095"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660c12d9d81ea2ff45ad8ed96311762db7f452cb", "fields": {"nom_de_la_commune": "CHAUNAC", "libell_d_acheminement": "CHAUNAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17096"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ae1afaab1abcac3862a59eee3e1d8b682d1136", "fields": {"nom_de_la_commune": "CHERAC", "libell_d_acheminement": "CHERAC", "code_postal": "17610", "coordonnees_gps": [45.7221951578, -0.496240625744], "code_commune_insee": "17100"}, "geometry": {"type": "Point", "coordinates": [-0.496240625744, 45.7221951578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba49a3f502f324d9cfd22aa01129474056368bd", "fields": {"nom_de_la_commune": "CHERBONNIERES", "libell_d_acheminement": "CHERBONNIERES", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17101"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccfdd333edc434281981cbbde7fa46a6081e35cf", "fields": {"nom_de_la_commune": "CHIVES", "libell_d_acheminement": "CHIVES", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17105"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c56745343f189fa88b78c17a5fb0b186f2f0748", "fields": {"nom_de_la_commune": "CORIGNAC", "libell_d_acheminement": "CORIGNAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17118"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "376274b2d72d0b7ae8ec75a3ce6fce3d9bcf3009", "fields": {"nom_de_la_commune": "COURCOURY", "libell_d_acheminement": "COURCOURY", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17128"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d23581338b063bae8cff412a80b453e80f439ba", "fields": {"nom_de_la_commune": "LA CROIX COMTESSE", "libell_d_acheminement": "LA CROIX COMTESSE", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17137"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d5488a5b29590dd39bd8abc3685d8e5dba99679", "fields": {"nom_de_la_commune": "DOMPIERRE SUR MER", "libell_d_acheminement": "DOMPIERRE SUR MER", "code_postal": "17139", "coordonnees_gps": [46.1839503995, -1.06844117713], "code_commune_insee": "17142"}, "geometry": {"type": "Point", "coordinates": [-1.06844117713, 46.1839503995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a533a50889eebbba91a822b4779e67da798a6967", "fields": {"nom_de_la_commune": "LE DOUHET", "libell_d_acheminement": "LE DOUHET", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17143"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f04d5cae9b327cb823f50fc433f843de61273ba", "fields": {"nom_de_la_commune": "ECHEBRUNE", "libell_d_acheminement": "ECHEBRUNE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17145"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d86ef86d759b22e16f9b46e8dc0b7290b753b9f", "fields": {"nom_de_la_commune": "ECURAT", "libell_d_acheminement": "ECURAT", "code_postal": "17810", "coordonnees_gps": [45.7618866866, -0.717102907714], "code_commune_insee": "17148"}, "geometry": {"type": "Point", "coordinates": [-0.717102907714, 45.7618866866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbdf3925ef8abadc3a5375730b1435cd7002bcca", "fields": {"nom_de_la_commune": "EPARGNES", "libell_d_acheminement": "EPARGNES", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17152"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974f47833fc81966698c6f9f3205a9c6e2089147", "fields": {"nom_de_la_commune": "FONTAINES D OZILLAC", "libell_d_acheminement": "FONTAINES D OZILLAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17163"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef68555d29a987cc109156f91a932f665e6cfa4", "fields": {"nom_de_la_commune": "FORGES", "libell_d_acheminement": "FORGES", "code_postal": "17290", "coordonnees_gps": [46.0811400523, -0.91821720861], "code_commune_insee": "17166"}, "geometry": {"type": "Point", "coordinates": [-0.91821720861, 46.0811400523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2984210682795a3a89bd8a533b12bfb75a000326", "fields": {"nom_de_la_commune": "GIBOURNE", "libell_d_acheminement": "GIBOURNE", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17176"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef64cbe8f0ef169e2d83d86ac50c22860a861d4f", "fields": {"nom_de_la_commune": "HAIMPS", "libell_d_acheminement": "HAIMPS", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17188"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a981c71184d147cce154e2924ecf5120ae72e3f", "fields": {"nom_de_la_commune": "HIERS BROUAGE", "libell_d_acheminement": "HIERS BROUAGE", "code_postal": "17320", "coordonnees_gps": [45.8153693416, -1.06418747186], "code_commune_insee": "17189"}, "geometry": {"type": "Point", "coordinates": [-1.06418747186, 45.8153693416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b56e4cddb5ff89d11cba36a33cd6f2653a1731b", "fields": {"nom_de_la_commune": "LOIX", "libell_d_acheminement": "LOIX", "code_postal": "17111", "coordonnees_gps": [46.2211333939, -1.44505934454], "code_commune_insee": "17207"}, "geometry": {"type": "Point", "coordinates": [-1.44505934454, 46.2211333939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2991c6bc0a656f238699397c257504908e0073e", "fields": {"nom_de_la_commune": "LUSSAC", "libell_d_acheminement": "LUSSAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17215"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "635a92e979f7361b2ca0b5ec717b659df745b2d9", "fields": {"nom_de_la_commune": "MARANS", "libell_d_acheminement": "MARANS", "code_postal": "17230", "coordonnees_gps": [46.286014889, -1.01509211949], "code_commune_insee": "17218"}, "geometry": {"type": "Point", "coordinates": [-1.01509211949, 46.286014889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305ef634dc1684bcc6e40d83cf1cd1687e28c227", "fields": {"nom_de_la_commune": "MARIGNAC", "libell_d_acheminement": "MARIGNAC", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17220"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78404ad70390f811ae9475915ce75a88401dbc68", "fields": {"nom_de_la_commune": "MAZERAY", "libell_d_acheminement": "MAZERAY", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17226"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d936039d98f3bd326a84c386cc688f0900f0fc0a", "fields": {"nom_de_la_commune": "MERIGNAC", "libell_d_acheminement": "MERIGNAC", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17229"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ca7a6205ec4c81efcabdaada186e0c418b8a35f", "fields": {"nom_de_la_commune": "MIGRE", "libell_d_acheminement": "MIGRE", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17234"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c001cc688e487d60623b24db3fac7eb765ce33a4", "fields": {"nom_de_la_commune": "MIRAMBEAU", "libell_d_acheminement": "MIRAMBEAU", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17236"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f00b42fc177345e34e96b498c7674600053de695", "fields": {"nom_de_la_commune": "MONTENDRE", "libell_d_acheminement": "MONTENDRE", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17240"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab0344fe64961e69f5d349f31cb04cd4a63c8480", "fields": {"nom_de_la_commune": "MONTLIEU LA GARDE", "libell_d_acheminement": "MONTLIEU LA GARDE", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17243"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86e769002bf572690f5bdc6156168023c642df2e", "fields": {"nom_de_la_commune": "LE MUNG", "libell_d_acheminement": "LE MUNG", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17252"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310326a6c9499ce4daf4e0805a9b142730e133e5", "fields": {"code_postal": "17137", "code_commune_insee": "17264", "libell_d_acheminement": "NIEUL SUR MER", "ligne_5": "LAUZIERES", "nom_de_la_commune": "NIEUL SUR MER", "coordonnees_gps": [46.2222024122, -1.1457029757]}, "geometry": {"type": "Point", "coordinates": [-1.1457029757, 46.2222024122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7b653702f95ac899f60c8b0a1636ad0d0f7c4b7", "fields": {"nom_de_la_commune": "NIEULLE SUR SEUDRE", "libell_d_acheminement": "NIEULLE SUR SEUDRE", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17265"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4df842c65d7e4048cbdad45f299c7aabfef61ab", "fields": {"nom_de_la_commune": "PERIGNAC", "libell_d_acheminement": "PERIGNAC", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17273"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "364dc3e7b927170184678b3fb25ac74c747fed1a", "fields": {"nom_de_la_commune": "PLASSAY", "libell_d_acheminement": "PLASSAY", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17280"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69ec1a9ddfa0665b53353d9ce19d17d968fe0c3f", "fields": {"nom_de_la_commune": "POLIGNAC", "libell_d_acheminement": "POLIGNAC", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17281"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c3aa88cf3647e1a2b8e28c02a15c4d7dd02c93", "fields": {"nom_de_la_commune": "PONS", "libell_d_acheminement": "PONS", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17283"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef95002e1f00dfb4f63b8891ba3aa4e3504621e4", "fields": {"nom_de_la_commune": "POURSAY GARNAUD", "libell_d_acheminement": "POURSAY GARNAUD", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17288"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "017c53b820daf0211727f8e115e39008a3f9a9e8", "fields": {"nom_de_la_commune": "PRIGNAC", "libell_d_acheminement": "PRIGNAC", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17290"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aa090f20c8990a72b02af40d7c03882c271f357", "fields": {"nom_de_la_commune": "PUILBOREAU", "libell_d_acheminement": "PUILBOREAU", "code_postal": "17138", "coordonnees_gps": [46.202457274, -1.09989389578], "code_commune_insee": "17291"}, "geometry": {"type": "Point", "coordinates": [-1.09989389578, 46.202457274]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb257343943424aaa88bf03dc7185e5f8d9a7912", "fields": {"nom_de_la_commune": "PUY DU LAC", "libell_d_acheminement": "PUY DU LAC", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17292"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0b166448a38601e593ade8d195d9492d8094336", "fields": {"nom_de_la_commune": "RETAUD", "libell_d_acheminement": "RETAUD", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17296"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abcf46bfd41280051b8bb89fa1fa59e1f1b7df39", "fields": {"nom_de_la_commune": "ST CLEMENT DES BALEINES", "libell_d_acheminement": "ST CLEMENT DES BALEINES", "code_postal": "17590", "coordonnees_gps": [46.2211665478, -1.52366655829], "code_commune_insee": "17318"}, "geometry": {"type": "Point", "coordinates": [-1.52366655829, 46.2211665478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b3964775a9195c7472e42f5b2b04f0e30588e69", "fields": {"code_postal": "17590", "code_commune_insee": "17318", "libell_d_acheminement": "ST CLEMENT DES BALEINES", "ligne_5": "LE GILLIEUX", "nom_de_la_commune": "ST CLEMENT DES BALEINES", "coordonnees_gps": [46.2211665478, -1.52366655829]}, "geometry": {"type": "Point", "coordinates": [-1.52366655829, 46.2211665478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e9dd545042176f96c8aa656fa9f394ed43723fd", "fields": {"nom_de_la_commune": "ST COUTANT LE GRAND", "libell_d_acheminement": "ST COUTANT LE GRAND", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17320"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd53f20709d48583b538821e2c40561ec247b256", "fields": {"nom_de_la_commune": "ST GEORGES DE LONGUEPIERRE", "libell_d_acheminement": "ST GEORGES DE LONGUEPIERRE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17334"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12da621768b7ca0a256fd954aa0c418c05f991fe", "fields": {"code_postal": "17190", "code_commune_insee": "17337", "libell_d_acheminement": "ST GEORGES D OLERON", "ligne_5": "BOYARDVILLE", "nom_de_la_commune": "ST GEORGES D OLERON", "coordonnees_gps": [45.9760434465, -1.32419340484]}, "geometry": {"type": "Point", "coordinates": [-1.32419340484, 45.9760434465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b04968070579f2fcad706d3ef89c0a1e3aab0d8", "fields": {"nom_de_la_commune": "ST GEORGES DU BOIS", "libell_d_acheminement": "ST GEORGES DU BOIS", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17338"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff4e57856842fa28e4e627f9fda36633902a863", "fields": {"nom_de_la_commune": "ST GERMAIN DE LUSIGNAN", "libell_d_acheminement": "ST GERMAIN DE LUSIGNAN", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17339"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d145f58d1707a482c81a811518dde08d74b4f14", "fields": {"nom_de_la_commune": "ST JUST LUZAC", "libell_d_acheminement": "ST JUST LUZAC", "code_postal": "17320", "coordonnees_gps": [45.8153693416, -1.06418747186], "code_commune_insee": "17351"}, "geometry": {"type": "Point", "coordinates": [-1.06418747186, 45.8153693416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf5479412dfc4f397802b8d6b4073e52da6af3e", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17354"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35eeae666d2335c37d64752ebfcdbdcd70366f87", "fields": {"nom_de_la_commune": "ST MARTIN D ARY", "libell_d_acheminement": "ST MARTIN D ARY", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17365"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0f96cc71df91aa69a0e1a6bab9af606b73f48a6", "fields": {"nom_de_la_commune": "NOGNA", "libell_d_acheminement": "NOGNA", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39390"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3ebba05d81af823bf9a91b25393071c64703ea", "fields": {"nom_de_la_commune": "ORBAGNA", "libell_d_acheminement": "ORBAGNA", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39395"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360ad1a0d85bdb86d1f9c994233b18325d9c9208", "fields": {"nom_de_la_commune": "OUNANS", "libell_d_acheminement": "OUNANS", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39399"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ca1f390504e0f9e42539ce96d48b35241d94e4", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39421"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6efb6977351028efcee04b4acd004c5d435bc284", "fields": {"nom_de_la_commune": "PLASNE", "libell_d_acheminement": "PLASNE", "code_postal": "39210", "coordonnees_gps": [46.742636609, 5.62862510157], "code_commune_insee": "39426"}, "geometry": {"type": "Point", "coordinates": [5.62862510157, 46.742636609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75c95893c239f600f1d840423491255a291cfac1", "fields": {"nom_de_la_commune": "PLENISE", "libell_d_acheminement": "PLENISE", "code_postal": "39250", "coordonnees_gps": [46.7774503228, 6.08094337332], "code_commune_insee": "39427"}, "geometry": {"type": "Point", "coordinates": [6.08094337332, 46.7774503228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52dc1e5ae81fbbcbe04cad554af1ec13106dc45d", "fields": {"nom_de_la_commune": "POIDS DE FIOLE", "libell_d_acheminement": "POIDS DE FIOLE", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39431"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfd6321e1be2155a9bb265ca7ba3de0bba869e85", "fields": {"code_postal": "39110", "code_commune_insee": "39436", "libell_d_acheminement": "PONT D HERY", "ligne_5": "FONTENY", "nom_de_la_commune": "PONT D HERY", "coordonnees_gps": [46.9201409369, 5.90413463996]}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "774b50260d6c2781fae432680832eb013b4e1ac2", "fields": {"nom_de_la_commune": "PRATZ", "libell_d_acheminement": "PRATZ", "code_postal": "39170", "coordonnees_gps": [46.4122748444, 5.79038088139], "code_commune_insee": "39440"}, "geometry": {"type": "Point", "coordinates": [5.79038088139, 46.4122748444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba3561ad1840dcba139740d8d78dcc8d45c9d5e", "fields": {"nom_de_la_commune": "RANCHOT", "libell_d_acheminement": "RANCHOT", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39451"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a72d8ffa647d646976336ca082b3da8d6bf7e892", "fields": {"nom_de_la_commune": "RANS", "libell_d_acheminement": "RANS", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39452"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cba1e536ec5116562440587af6dd0868b14576f", "fields": {"nom_de_la_commune": "REITHOUSE", "libell_d_acheminement": "REITHOUSE", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39455"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "206e42cffdbc9496ea175b41ac874d2ffd384007", "fields": {"nom_de_la_commune": "RELANS", "libell_d_acheminement": "RELANS", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39456"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43b3abae57514a41091b6f4792906041a73d06e", "fields": {"nom_de_la_commune": "ROCHEFORT SUR NENON", "libell_d_acheminement": "ROCHEFORT SUR NENON", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39462"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf27bc4c6bc9b64d1f900ca11b8f9812bb1f571", "fields": {"nom_de_la_commune": "ROMAIN", "libell_d_acheminement": "ROMAIN", "code_postal": "39350", "coordonnees_gps": [47.2211466345, 5.68498382998], "code_commune_insee": "39464"}, "geometry": {"type": "Point", "coordinates": [5.68498382998, 47.2211466345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "000965f1d40e16d18dd5cd6ddab8e8f16b653538", "fields": {"nom_de_la_commune": "ROMANGE", "libell_d_acheminement": "ROMANGE", "code_postal": "39700", "coordonnees_gps": [47.1360717956, 5.65800012561], "code_commune_insee": "39465"}, "geometry": {"type": "Point", "coordinates": [5.65800012561, 47.1360717956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21fba844b65d2ced2b5c831257960f79be67b404", "fields": {"nom_de_la_commune": "ROTALIER", "libell_d_acheminement": "ROTALIER", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39467"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e98c1cd4ed0f75658b30439141d44b1259f0a2e2", "fields": {"nom_de_la_commune": "SAFFLOZ", "libell_d_acheminement": "SAFFLOZ", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39473"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "315126d17be2cbaa7598d7a526c0da851bc9a96a", "fields": {"nom_de_la_commune": "STE AGNES", "libell_d_acheminement": "STE AGNES", "code_postal": "39190", "coordonnees_gps": [46.56355629, 5.42980820978], "code_commune_insee": "39474"}, "geometry": {"type": "Point", "coordinates": [5.42980820978, 46.56355629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d617f0435a5d6d85a87a3ee334d18b31080b0cda", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "39410", "coordonnees_gps": [47.0386263121, 5.33402730171], "code_commune_insee": "39476"}, "geometry": {"type": "Point", "coordinates": [5.33402730171, 47.0386263121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d2ef6ec0a098f3e52155f5684cebaf99d0d3693", "fields": {"nom_de_la_commune": "ST BARAING", "libell_d_acheminement": "ST BARAING", "code_postal": "39120", "coordonnees_gps": [46.9509063875, 5.4122957378], "code_commune_insee": "39477"}, "geometry": {"type": "Point", "coordinates": [5.4122957378, 46.9509063875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b1f5476f11bdca2b014b470fa8967573270c35", "fields": {"nom_de_la_commune": "ST CLAUDE", "libell_d_acheminement": "ST CLAUDE", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39478"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f33587f8d5675742f60d0fcce99357d84256c0c4", "fields": {"code_postal": "39200", "code_commune_insee": "39478", "libell_d_acheminement": "ST CLAUDE", "ligne_5": "CHAUMONT", "nom_de_la_commune": "ST CLAUDE", "coordonnees_gps": [46.412034572, 5.87063091649]}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58c8051f27a52a3ae0cfe3f258da7b41e65d51c", "fields": {"nom_de_la_commune": "ST GERMAIN EN MONTAGNE", "libell_d_acheminement": "ST GERMAIN EN MONTAGNE", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39481"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b874b8e7ddc3c40328a045b7bd545c3ac22b6cc", "fields": {"nom_de_la_commune": "ST LAURENT EN GRANDVAUX", "libell_d_acheminement": "ST LAURENT EN GRANDVAUX", "code_postal": "39150", "coordonnees_gps": [46.5872536631, 5.94328461493], "code_commune_insee": "39487"}, "geometry": {"type": "Point", "coordinates": [5.94328461493, 46.5872536631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0de7bce0e1313ca94309098cdf172018b08fb811", "fields": {"nom_de_la_commune": "ST LOTHAIN", "libell_d_acheminement": "ST LOTHAIN", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39489"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97861107ab990237d9b68c14784f88dc057b6feb", "fields": {"nom_de_la_commune": "ST MAURICE CRILLAT", "libell_d_acheminement": "ST MAURICE CRILLAT", "code_postal": "39130", "coordonnees_gps": [46.5974008072, 5.7778821985], "code_commune_insee": "39493"}, "geometry": {"type": "Point", "coordinates": [5.7778821985, 46.5974008072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e84b15b0ab821516f134a8dc7f180508017978", "fields": {"nom_de_la_commune": "ST THIEBAUD", "libell_d_acheminement": "ST THIEBAUD", "code_postal": "39110", "coordonnees_gps": [46.9201409369, 5.90413463996], "code_commune_insee": "39495"}, "geometry": {"type": "Point", "coordinates": [5.90413463996, 46.9201409369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16bd3ed0c914e4962527cef170112ac4d9e004c2", "fields": {"nom_de_la_commune": "SELLIERES", "libell_d_acheminement": "SELLIERES", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39508"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "132d06b2f5bad5d7d5e77e8a356bcaf5743a3f08", "fields": {"nom_de_la_commune": "SOUVANS", "libell_d_acheminement": "SOUVANS", "code_postal": "39380", "coordonnees_gps": [47.0180766082, 5.63976779772], "code_commune_insee": "39520"}, "geometry": {"type": "Point", "coordinates": [5.63976779772, 47.0180766082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e391378b82be61ab8b72e32995206be1277a3c13", "fields": {"nom_de_la_commune": "TAVAUX", "libell_d_acheminement": "TAVAUX", "code_postal": "39500", "coordonnees_gps": [47.0403701048, 5.40061589404], "code_commune_insee": "39526"}, "geometry": {"type": "Point", "coordinates": [5.40061589404, 47.0403701048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dabb7280b04571cd2a5a6472808f110073262203", "fields": {"nom_de_la_commune": "LA TOUR DU MEIX", "libell_d_acheminement": "LA TOUR DU MEIX", "code_postal": "39270", "coordonnees_gps": [46.513600058, 5.5833242392], "code_commune_insee": "39534"}, "geometry": {"type": "Point", "coordinates": [5.5833242392, 46.513600058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bebef8cd2d515e32c81ab556db94c5b80eedcdee", "fields": {"nom_de_la_commune": "VADANS", "libell_d_acheminement": "VADANS", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39539"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5d39abb90911ae5cfa4a690d9134e53cec5235", "fields": {"nom_de_la_commune": "LE VAUDIOUX", "libell_d_acheminement": "LE VAUDIOUX", "code_postal": "39300", "coordonnees_gps": [46.7556867768, 5.90281733737], "code_commune_insee": "39545"}, "geometry": {"type": "Point", "coordinates": [5.90281733737, 46.7556867768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee97f34862f12a0b4f66dc469c8db4e68f601dc1", "fields": {"nom_de_la_commune": "VERNANTOIS", "libell_d_acheminement": "VERNANTOIS", "code_postal": "39570", "coordonnees_gps": [46.65517776, 5.57390144978], "code_commune_insee": "39552"}, "geometry": {"type": "Point", "coordinates": [5.57390144978, 46.65517776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74bd881fba313aa2da55f2161fb6e221fd1bd7d5", "fields": {"nom_de_la_commune": "VILLARD SUR BIENNE", "libell_d_acheminement": "VILLARD SUR BIENNE", "code_postal": "39200", "coordonnees_gps": [46.412034572, 5.87063091649], "code_commune_insee": "39562"}, "geometry": {"type": "Point", "coordinates": [5.87063091649, 46.412034572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e58b028848ca70c23f670be7dcc3f04c5b99e0a9", "fields": {"nom_de_la_commune": "VILLENEUVE D AVAL", "libell_d_acheminement": "VILLENEUVE D AVAL", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39565"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeaa320f2b98bbbe834eed749b1b24ddf00a519a", "fields": {"nom_de_la_commune": "VILLENEUVE LES CHARNOD", "libell_d_acheminement": "VILLENEUVE LES CHARNOD", "code_postal": "39240", "coordonnees_gps": [46.3647092141, 5.55936987641], "code_commune_insee": "39566"}, "geometry": {"type": "Point", "coordinates": [5.55936987641, 46.3647092141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b70124bd2814f3500d114e4985da12843b7178", "fields": {"nom_de_la_commune": "VILLERS FARLAY", "libell_d_acheminement": "VILLERS FARLAY", "code_postal": "39600", "coordonnees_gps": [46.9334374908, 5.75807141934], "code_commune_insee": "39569"}, "geometry": {"type": "Point", "coordinates": [5.75807141934, 46.9334374908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0faa762283b15ef20fecd08c5ed6a9a41d91dace", "fields": {"nom_de_la_commune": "VILLERS LES BOIS", "libell_d_acheminement": "VILLERS LES BOIS", "code_postal": "39800", "coordonnees_gps": [46.840381623, 5.68546108472], "code_commune_insee": "39570"}, "geometry": {"type": "Point", "coordinates": [5.68546108472, 46.840381623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a12c157377a63e6179ef76a632a3cd2a72ad992d", "fields": {"nom_de_la_commune": "VILLEVIEUX", "libell_d_acheminement": "VILLEVIEUX", "code_postal": "39140", "coordonnees_gps": [46.7587878563, 5.43938502725], "code_commune_insee": "39574"}, "geometry": {"type": "Point", "coordinates": [5.43938502725, 46.7587878563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e5b7057f33235e3656f1bca995ec9c50601baf0", "fields": {"nom_de_la_commune": "LE VILLEY", "libell_d_acheminement": "LE VILLEY", "code_postal": "39230", "coordonnees_gps": [46.8351760526, 5.52787683557], "code_commune_insee": "39575"}, "geometry": {"type": "Point", "coordinates": [5.52787683557, 46.8351760526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bd14f49b4d4c48926a06a80d77d14e70f44ac17", "fields": {"nom_de_la_commune": "ARTASSENX", "libell_d_acheminement": "ARTASSENX", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40012"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f20b2a5f547c1a2356044d768db9a012ba2c053", "fields": {"nom_de_la_commune": "BAIGTS", "libell_d_acheminement": "BAIGTS", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40023"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2db31c6186030aaa2e2c050a6d765a2499a7ca53", "fields": {"nom_de_la_commune": "BANOS", "libell_d_acheminement": "BANOS", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40024"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ec828cf546111db9e90d2d8064db2074db48274", "fields": {"nom_de_la_commune": "BAUDIGNAN", "libell_d_acheminement": "BAUDIGNAN", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40030"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6a471241b84ba0eeda9efa269a66a2d346e1f8b", "fields": {"nom_de_la_commune": "BELIS", "libell_d_acheminement": "BELIS", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40033"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ca31ce090c945abcf7945c1506839875e7203a", "fields": {"nom_de_la_commune": "BELUS", "libell_d_acheminement": "BELUS", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40034"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1542cddeb85086312542078fc6dbc50ab0b957c", "fields": {"nom_de_la_commune": "BENESSE LES DAX", "libell_d_acheminement": "BENESSE LES DAX", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40035"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e62e4ff519390302a432526f3f69d309ae4d55", "fields": {"nom_de_la_commune": "BENESSE MAREMNE", "libell_d_acheminement": "BENESSE MAREMNE", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40036"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0555273a252ee7152102a75ab69a4a3611911595", "fields": {"nom_de_la_commune": "BIAS", "libell_d_acheminement": "BIAS", "code_postal": "40170", "coordonnees_gps": [44.0581997047, -1.21339037658], "code_commune_insee": "40043"}, "geometry": {"type": "Point", "coordinates": [-1.21339037658, 44.0581997047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97cac7f7f84768e4626291eeab6c50793be14e05", "fields": {"nom_de_la_commune": "BUANES", "libell_d_acheminement": "BUANES", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40057"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117346359b519cebf94fc532c9693ead550896e5", "fields": {"nom_de_la_commune": "CANENX ET REAUT", "libell_d_acheminement": "CANENX ET REAUT", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40064"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a4a60f03cda569290e6de42613b8191ebec5104", "fields": {"nom_de_la_commune": "CASTAIGNOS SOUSLENS", "libell_d_acheminement": "CASTAIGNOS SOUSLENS", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40069"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dc6f57e07397f51975b0286195bba1a9b36b01d", "fields": {"nom_de_la_commune": "CLASSUN", "libell_d_acheminement": "CLASSUN", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40082"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216c854d27296e37775e910e00ada368ae5db8a2", "fields": {"nom_de_la_commune": "CLERMONT", "libell_d_acheminement": "CLERMONT", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40084"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16e684cdfb4de96324c05be6a1328c78d60fe484", "fields": {"nom_de_la_commune": "CREON D ARMAGNAC", "libell_d_acheminement": "CREON D ARMAGNAC", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40087"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0eae6286f844db3b90b9e8e88f73dbf463eda14", "fields": {"nom_de_la_commune": "EUGENIE LES BAINS", "libell_d_acheminement": "EUGENIE LES BAINS", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40097"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ee4522aced68564f363b5d67b7ac666819681a0", "fields": {"nom_de_la_commune": "EYRES MONCUBE", "libell_d_acheminement": "EYRES MONCUBE", "code_postal": "40500", "coordonnees_gps": [43.7482690127, -0.55557337698], "code_commune_insee": "40098"}, "geometry": {"type": "Point", "coordinates": [-0.55557337698, 43.7482690127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c69c58d7a8e481f5fafde131e18924161382d4", "fields": {"nom_de_la_commune": "LE FRECHE", "libell_d_acheminement": "LE FRECHE", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40100"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f3ff802c00252ef729399af0f95dd5bd29790b1", "fields": {"nom_de_la_commune": "GAILLERES", "libell_d_acheminement": "GAILLERES", "code_postal": "40090", "coordonnees_gps": [43.9330733573, -0.526576956114], "code_commune_insee": "40103"}, "geometry": {"type": "Point", "coordinates": [-0.526576956114, 43.9330733573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d59c8f2a2913cafc4713e805306f9611927350", "fields": {"nom_de_la_commune": "HABAS", "libell_d_acheminement": "HABAS", "code_postal": "40290", "coordonnees_gps": [43.5792705087, -0.916165533976], "code_commune_insee": "40118"}, "geometry": {"type": "Point", "coordinates": [-0.916165533976, 43.5792705087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b8398a1f52542cacd3bee3d80a8968da8a70c67", "fields": {"nom_de_la_commune": "HERM", "libell_d_acheminement": "HERM", "code_postal": "40990", "coordonnees_gps": [43.7691479541, -1.07410585262], "code_commune_insee": "40123"}, "geometry": {"type": "Point", "coordinates": [-1.07410585262, 43.7691479541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ba1fa3c2c7428df378bf5b18398b36cd4ef9cf", "fields": {"nom_de_la_commune": "HERRE", "libell_d_acheminement": "HERRE", "code_postal": "40310", "coordonnees_gps": [44.0239290925, 0.0326491343129], "code_commune_insee": "40124"}, "geometry": {"type": "Point", "coordinates": [0.0326491343129, 44.0239290925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8c0a82293055e0b3fff854266440f3a4399d58", "fields": {"nom_de_la_commune": "LABASTIDE CHALOSSE", "libell_d_acheminement": "LABASTIDE CHALOSSE", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40130"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcf0e9db8cfca05124425e64f4aae7573f575205", "fields": {"nom_de_la_commune": "LABASTIDE D ARMAGNAC", "libell_d_acheminement": "LABASTIDE D ARMAGNAC", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40131"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecfcf8123394f5aaafd2ec77655dce9494bd2896", "fields": {"nom_de_la_commune": "LABRIT", "libell_d_acheminement": "LABRIT", "code_postal": "40420", "coordonnees_gps": [44.093205309, -0.572816204392], "code_commune_insee": "40135"}, "geometry": {"type": "Point", "coordinates": [-0.572816204392, 44.093205309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d84e66f47645ce4bc593d56280882bb75c264b0b", "fields": {"nom_de_la_commune": "LACRABE", "libell_d_acheminement": "LACRABE", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40138"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983e956e2a0a005c2b12f1fe21d84e945c54ae4b", "fields": {"nom_de_la_commune": "LAGRANGE", "libell_d_acheminement": "LAGRANGE", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40140"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0006fa782f93c7bf60d37b7c1d3feffd4c053761", "fields": {"nom_de_la_commune": "LAHOSSE", "libell_d_acheminement": "LAHOSSE", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40141"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e15ad862d42fe10b549b945ccc6b4e0d2cddb68", "fields": {"nom_de_la_commune": "LAMOTHE", "libell_d_acheminement": "LAMOTHE", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40143"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "099343e302fa8f5e83ac836e9c9f2b265cbcad37", "fields": {"nom_de_la_commune": "LATRILLE", "libell_d_acheminement": "LATRILLE", "code_postal": "40800", "coordonnees_gps": [43.6902343376, -0.284055090083], "code_commune_insee": "40146"}, "geometry": {"type": "Point", "coordinates": [-0.284055090083, 43.6902343376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b05d74b1fba57f104d959d57edbab85f442f6bde", "fields": {"nom_de_la_commune": "LAURET", "libell_d_acheminement": "LAURET", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40148"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73e5f3939a673bb36a3ead02c9b6f850f6f0506", "fields": {"nom_de_la_commune": "LENCOUACQ", "libell_d_acheminement": "LENCOUACQ", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40149"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef15fb9fe5c3fe3ab2da2ad9d5174dfb51a19d46", "fields": {"nom_de_la_commune": "LESGOR", "libell_d_acheminement": "LESGOR", "code_postal": "40400", "coordonnees_gps": [43.8530294312, -0.790542809591], "code_commune_insee": "40151"}, "geometry": {"type": "Point", "coordinates": [-0.790542809591, 43.8530294312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08cdcaef2ac972fe983c65679db7b2d4be15af62", "fields": {"nom_de_la_commune": "LESPERON", "libell_d_acheminement": "LESPERON", "code_postal": "40260", "coordonnees_gps": [43.9187422777, -1.13083737668], "code_commune_insee": "40152"}, "geometry": {"type": "Point", "coordinates": [-1.13083737668, 43.9187422777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab51e44ff8b36271cf85337434e6164a38a79db1", "fields": {"nom_de_la_commune": "LOUER", "libell_d_acheminement": "LOUER", "code_postal": "40380", "coordonnees_gps": [43.7281744628, -0.847303230981], "code_commune_insee": "40159"}, "geometry": {"type": "Point", "coordinates": [-0.847303230981, 43.7281744628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9458b7448d9de35f5613647fb5934604f4351a07", "fields": {"nom_de_la_commune": "LOURQUEN", "libell_d_acheminement": "LOURQUEN", "code_postal": "40250", "coordonnees_gps": [43.7487921391, -0.720184883876], "code_commune_insee": "40160"}, "geometry": {"type": "Point", "coordinates": [-0.720184883876, 43.7487921391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cb289e33b639ccab1ccf18ce4ba1994c0195e4d", "fields": {"nom_de_la_commune": "RETJONS", "libell_d_acheminement": "RETJONS", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40164"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8f74991c3c913945c2964d3bb61e6b0a936ddb", "fields": {"nom_de_la_commune": "LUXEY", "libell_d_acheminement": "LUXEY", "code_postal": "40430", "coordonnees_gps": [44.2727815793, -0.544550156378], "code_commune_insee": "40167"}, "geometry": {"type": "Point", "coordinates": [-0.544550156378, 44.2727815793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d1e121dd40a6e2d3c5cfef8271df74abc96601", "fields": {"nom_de_la_commune": "MAILLAS", "libell_d_acheminement": "MAILLAS", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40169"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "078ed093ff5c95f06ffe151df9521a6d3f08da4a", "fields": {"nom_de_la_commune": "MAURIES", "libell_d_acheminement": "MAURIES", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40174"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39cc933525d4424af2e0ecdd46c7cd0092f991a6", "fields": {"nom_de_la_commune": "MESSANGES", "libell_d_acheminement": "MESSANGES", "code_postal": "40660", "coordonnees_gps": [43.8329015635, -1.36219281408], "code_commune_insee": "40181"}, "geometry": {"type": "Point", "coordinates": [-1.36219281408, 43.8329015635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f95328352f84981c9354ec8f0a77c9bd7560b01d", "fields": {"nom_de_la_commune": "MEZOS", "libell_d_acheminement": "MEZOS", "code_postal": "40170", "coordonnees_gps": [44.0581997047, -1.21339037658], "code_commune_insee": "40182"}, "geometry": {"type": "Point", "coordinates": [-1.21339037658, 44.0581997047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3702e5e1ca47dc4d78f1b47664ccaf132bd9f640", "fields": {"nom_de_la_commune": "MIMIZAN", "libell_d_acheminement": "MIMIZAN", "code_postal": "40200", "coordonnees_gps": [44.2276964616, -1.18406164586], "code_commune_insee": "40184"}, "geometry": {"type": "Point", "coordinates": [-1.18406164586, 44.2276964616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1040a4352da155f15ad660c3d314d8de8cc6c7bb", "fields": {"nom_de_la_commune": "MISSON", "libell_d_acheminement": "MISSON", "code_postal": "40290", "coordonnees_gps": [43.5792705087, -0.916165533976], "code_commune_insee": "40186"}, "geometry": {"type": "Point", "coordinates": [-0.916165533976, 43.5792705087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b270ed48820f0474fe5666491310df291d45eb0", "fields": {"nom_de_la_commune": "MONT DE MARSAN", "libell_d_acheminement": "MONT DE MARSAN", "code_postal": "40000", "coordonnees_gps": [43.8995565919, -0.490387056517], "code_commune_insee": "40192"}, "geometry": {"type": "Point", "coordinates": [-0.490387056517, 43.8995565919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed7236bdd8293c5016b290b208b4b2834bdc0c81", "fields": {"nom_de_la_commune": "MOUSCARDES", "libell_d_acheminement": "MOUSCARDES", "code_postal": "40290", "coordonnees_gps": [43.5792705087, -0.916165533976], "code_commune_insee": "40199"}, "geometry": {"type": "Point", "coordinates": [-0.916165533976, 43.5792705087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69069981ec49bd7d7b05b9e32cbb8b06b4045284", "fields": {"nom_de_la_commune": "OEYREGAVE", "libell_d_acheminement": "OEYREGAVE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40206"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ea898a019224976903aa0bce2494702f6bfc85b", "fields": {"nom_de_la_commune": "OEYRELUY", "libell_d_acheminement": "OEYRELUY", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40207"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f39b3b24d46ec5db2a905ff5aa62134e1d48c9", "fields": {"nom_de_la_commune": "ORX", "libell_d_acheminement": "ORX", "code_postal": "40230", "coordonnees_gps": [43.6512519918, -1.29308323457], "code_commune_insee": "40213"}, "geometry": {"type": "Point", "coordinates": [-1.29308323457, 43.6512519918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6709aac5339df51d9c098cbe4ca0a00a9aca9b8d", "fields": {"nom_de_la_commune": "OSSAGES", "libell_d_acheminement": "OSSAGES", "code_postal": "40290", "coordonnees_gps": [43.5792705087, -0.916165533976], "code_commune_insee": "40214"}, "geometry": {"type": "Point", "coordinates": [-0.916165533976, 43.5792705087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7532fb09a6a4be8f0bafbc3f3329baa09488df7", "fields": {"nom_de_la_commune": "PEY", "libell_d_acheminement": "PEY", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40222"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1197bd1aef4cd43133ea6ac079107c23d9d88605", "fields": {"nom_de_la_commune": "PEYRE", "libell_d_acheminement": "PEYRE", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40223"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2e07c5fbc3a32398f3d4c8fef700c0a6371e4b2", "fields": {"nom_de_la_commune": "PISSOS", "libell_d_acheminement": "PISSOS", "code_postal": "40410", "coordonnees_gps": [44.3533102389, -0.785997047975], "code_commune_insee": "40227"}, "geometry": {"type": "Point", "coordinates": [-0.785997047975, 44.3533102389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b75f323bf5c4eeb3ea431c98cb22566ad920501", "fields": {"nom_de_la_commune": "PUJO LE PLAN", "libell_d_acheminement": "PUJO LE PLAN", "code_postal": "40190", "coordonnees_gps": [43.871288496, -0.280067708778], "code_commune_insee": "40238"}, "geometry": {"type": "Point", "coordinates": [-0.280067708778, 43.871288496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d9bfe84f6ec0f5d3114dec739fbb7f0b2c32e7f", "fields": {"nom_de_la_commune": "RION DES LANDES", "libell_d_acheminement": "RION DES LANDES", "code_postal": "40370", "coordonnees_gps": [43.9279657957, -0.915942648289], "code_commune_insee": "40243"}, "geometry": {"type": "Point", "coordinates": [-0.915942648289, 43.9279657957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57bc72035d3c3fdf0df13f480c1477be7088362b", "fields": {"nom_de_la_commune": "RIVIERE SAAS ET GOURBY", "libell_d_acheminement": "RIVIERE SAAS ET GOURBY", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40244"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "192a5d07d8293fe934c87051bac2f3003991add7", "fields": {"nom_de_la_commune": "ROQUEFORT", "libell_d_acheminement": "ROQUEFORT", "code_postal": "40120", "coordonnees_gps": [44.1059545469, -0.308573992692], "code_commune_insee": "40245"}, "geometry": {"type": "Point", "coordinates": [-0.308573992692, 44.1059545469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef2e89381b2040c3f9c6821404eeb9b12a8c6e07", "fields": {"nom_de_la_commune": "ST LOUBOUER", "libell_d_acheminement": "ST LOUBOUER", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40270"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae07c7785cf0e33152fd0d5fa49ba6571a7d1597", "fields": {"nom_de_la_commune": "FLEURAC", "libell_d_acheminement": "FLEURAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16139"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e9685db4f02ac0c61422c045fee224b1bd45988", "fields": {"nom_de_la_commune": "GARAT", "libell_d_acheminement": "GARAT", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16146"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54e3566eec0f8d80a60938b3b78f0c6205c82c8", "fields": {"nom_de_la_commune": "GARDES LE PONTAROUX", "libell_d_acheminement": "GARDES LE PONTAROUX", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16147"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be949b47f0e4f1e5f3f8298f5e4787aadc63df48", "fields": {"nom_de_la_commune": "HIERSAC", "libell_d_acheminement": "HIERSAC", "code_postal": "16290", "coordonnees_gps": [45.681734469, 0.0127639877624], "code_commune_insee": "16163"}, "geometry": {"type": "Point", "coordinates": [0.0127639877624, 45.681734469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4881e92b1288c34df4db0bfbcea744339fbb7f", "fields": {"nom_de_la_commune": "JUIGNAC", "libell_d_acheminement": "JUIGNAC", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16170"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa8204d838483d934d6d7245f2cdfec58c0793e9", "fields": {"nom_de_la_commune": "LAPRADE", "libell_d_acheminement": "LAPRADE", "code_postal": "16390", "coordonnees_gps": [45.3007895174, 0.19770289463], "code_commune_insee": "16180"}, "geometry": {"type": "Point", "coordinates": [0.19770289463, 45.3007895174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39cc3b02f13a57dbf4c3c42c1535bf1a3902e40", "fields": {"nom_de_la_commune": "LESTERPS", "libell_d_acheminement": "LESTERPS", "code_postal": "16420", "coordonnees_gps": [45.9795586086, 0.838157166739], "code_commune_insee": "16182"}, "geometry": {"type": "Point", "coordinates": [0.838157166739, 45.9795586086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3098d020f413043411a268fa8495da22d596f69c", "fields": {"nom_de_la_commune": "LINARS", "libell_d_acheminement": "LINARS", "code_postal": "16730", "coordonnees_gps": [45.6636626896, 0.0767104525338], "code_commune_insee": "16187"}, "geometry": {"type": "Point", "coordinates": [0.0767104525338, 45.6636626896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "953044c28e17a2b662cfb814820405594e2dda80", "fields": {"nom_de_la_commune": "LONDIGNY", "libell_d_acheminement": "LONDIGNY", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16189"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "200c6cc4bdfe538e8b08548e34204270c9d8b5da", "fields": {"nom_de_la_commune": "LONNES", "libell_d_acheminement": "LONNES", "code_postal": "16230", "coordonnees_gps": [45.8751948402, 0.196573119721], "code_commune_insee": "16191"}, "geometry": {"type": "Point", "coordinates": [0.196573119721, 45.8751948402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f22a4c27f95c522102503a1118fa88a8c31475b", "fields": {"code_postal": "16270", "code_commune_insee": "16192", "libell_d_acheminement": "ROUMAZIERES LOUBERT", "ligne_5": "ROUMAZIERES", "nom_de_la_commune": "ROUMAZIERES LOUBERT", "coordonnees_gps": [45.8834000837, 0.571194894473]}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a32f007c2fc47a1a907636f15ecebb812a959d00", "fields": {"nom_de_la_commune": "MAINXE", "libell_d_acheminement": "MAINXE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16202"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d71b6fa4568835d60e23c1a3a8540bfc26e27aa1", "fields": {"nom_de_la_commune": "MERIGNAC", "libell_d_acheminement": "MERIGNAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16216"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e10699de136ca75182cd3dcf951545f93a7434d", "fields": {"nom_de_la_commune": "MERPINS", "libell_d_acheminement": "MERPINS", "code_postal": "16100", "coordonnees_gps": [45.6930431054, -0.342281931836], "code_commune_insee": "16217"}, "geometry": {"type": "Point", "coordinates": [-0.342281931836, 45.6930431054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea9f05e1537e417ac52b0e2682f048f61805f30", "fields": {"nom_de_la_commune": "LES METAIRIES", "libell_d_acheminement": "LES METAIRIES", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16220"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cabd6538478037144379c19b4c980c8387a37884", "fields": {"nom_de_la_commune": "MONTBOYER", "libell_d_acheminement": "MONTBOYER", "code_postal": "16620", "coordonnees_gps": [45.3315117142, 0.0695852872209], "code_commune_insee": "16222"}, "geometry": {"type": "Point", "coordinates": [0.0695852872209, 45.3315117142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d62e8e101edb1880cc6f127aa371b810ed07eb58", "fields": {"code_postal": "16300", "code_commune_insee": "16224", "libell_d_acheminement": "MONTMERAC", "ligne_5": "LAMERAC", "nom_de_la_commune": "MONTMERAC", "coordonnees_gps": [45.4825627066, -0.162479147759]}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7578016f2ea31d87e7e15ef1ba42ffbc77d0e4c2", "fields": {"code_postal": "16300", "code_commune_insee": "16224", "libell_d_acheminement": "MONTMERAC", "ligne_5": "MONTCHAUDE", "nom_de_la_commune": "MONTMERAC", "coordonnees_gps": [45.4825627066, -0.162479147759]}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4a391c2cf20f804b60ae902a610188b5fc7f314", "fields": {"nom_de_la_commune": "MONTJEAN", "libell_d_acheminement": "MONTJEAN", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16229"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5022476b24b10ac9865c27c90e0dd6d6d56a892", "fields": {"nom_de_la_commune": "MOULIDARS", "libell_d_acheminement": "MOULIDARS", "code_postal": "16290", "coordonnees_gps": [45.681734469, 0.0127639877624], "code_commune_insee": "16234"}, "geometry": {"type": "Point", "coordinates": [0.0127639877624, 45.681734469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7bcf427fa31e5dd56a24cc0f3c560505080749", "fields": {"nom_de_la_commune": "MOUTONNEAU", "libell_d_acheminement": "MOUTONNEAU", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16238"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "903338a977e9499a19d549cade56901a65369978", "fields": {"nom_de_la_commune": "NANTEUIL EN VALLEE", "libell_d_acheminement": "NANTEUIL EN VALLEE", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16242"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712fd3090adbb779dfab164312c840900659acb8", "fields": {"nom_de_la_commune": "ORADOUR", "libell_d_acheminement": "ORADOUR", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16248"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "039af9c8d3bf06e6d9869f8ba28f397597955518", "fields": {"nom_de_la_commune": "ORADOUR FANAIS", "libell_d_acheminement": "ORADOUR FANAIS", "code_postal": "16500", "coordonnees_gps": [46.0339142008, 0.700300422302], "code_commune_insee": "16249"}, "geometry": {"type": "Point", "coordinates": [0.700300422302, 46.0339142008]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d4388c3f8dbd234af8c43c35de0419afef8d4ff", "fields": {"nom_de_la_commune": "PASSIRAC", "libell_d_acheminement": "PASSIRAC", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16256"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4097e219ced21e99e2625b7e53b9f0081247f9e9", "fields": {"nom_de_la_commune": "LA PERUSE", "libell_d_acheminement": "LA PERUSE", "code_postal": "16270", "coordonnees_gps": [45.8834000837, 0.571194894473], "code_commune_insee": "16259"}, "geometry": {"type": "Point", "coordinates": [0.571194894473, 45.8834000837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c890485406baa9d145af75733d23204f0dfefe40", "fields": {"nom_de_la_commune": "POULLIGNAC", "libell_d_acheminement": "POULLIGNAC", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16267"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de4ff238dbac4bd26c34473bffe762e6fb7dad9", "fields": {"nom_de_la_commune": "PRESSIGNAC", "libell_d_acheminement": "PRESSIGNAC", "code_postal": "16150", "coordonnees_gps": [45.8762096643, 0.725825447], "code_commune_insee": "16270"}, "geometry": {"type": "Point", "coordinates": [0.725825447, 45.8762096643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f32df95d76320b96f2d6141430dc51936eea8f21", "fields": {"nom_de_la_commune": "RANVILLE BREUILLAUD", "libell_d_acheminement": "RANVILLE BREUILLAUD", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16275"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc499d5516a6ddecc4df2cc18fa74d3337e8bfc", "fields": {"nom_de_la_commune": "REPARSAC", "libell_d_acheminement": "REPARSAC", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16277"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d2a769afe74366250440c624027ca0e89bf617", "fields": {"nom_de_la_commune": "RIVIERES", "libell_d_acheminement": "RIVIERES", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16280"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97c2ebe85c20a060cbec9ee208617dbf6726351c", "fields": {"nom_de_la_commune": "RONSENAC", "libell_d_acheminement": "RONSENAC", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16283"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a6c884d0beb0db6e684420c45b5f05e0f1b3746", "fields": {"code_postal": "16170", "code_commune_insee": "16286", "libell_d_acheminement": "ROUILLAC", "ligne_5": "PLAIZAC", "nom_de_la_commune": "ROUILLAC", "coordonnees_gps": [45.7890325838, -0.0524231030464]}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e99b6a3550c33c42c6ff9d64e4f676251bed679c", "fields": {"nom_de_la_commune": "RUFFEC", "libell_d_acheminement": "RUFFEC", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16292"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f833c59bf3f8811087d646a3f0add06d2cfe6cf", "fields": {"nom_de_la_commune": "GRAVES ST AMANT", "libell_d_acheminement": "GRAVES ST AMANT", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16297"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03222171fd621a8848ab1eaac1ee266b951a758f", "fields": {"nom_de_la_commune": "ST BONNET", "libell_d_acheminement": "ST BONNET", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16303"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ec0eef856526b6f8518d82692c78c81c0f7c65", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "16420", "coordonnees_gps": [45.9795586086, 0.838157166739], "code_commune_insee": "16306"}, "geometry": {"type": "Point", "coordinates": [0.838157166739, 45.9795586086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de3a209de12a1d8e6ae52993c85bbb969babc904", "fields": {"nom_de_la_commune": "ST CYBARDEAUX", "libell_d_acheminement": "ST CYBARDEAUX", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16312"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07a40574bad7ab24366d7c64199a9346b97a79a0", "fields": {"nom_de_la_commune": "ST FORT SUR LE NE", "libell_d_acheminement": "ST FORT SUR LE NE", "code_postal": "16130", "coordonnees_gps": [45.6120386685, -0.269770541353], "code_commune_insee": "16316"}, "geometry": {"type": "Point", "coordinates": [-0.269770541353, 45.6120386685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1a840bdaadb3e41e50b17f881db305cbec0cee1", "fields": {"nom_de_la_commune": "ST FRONT", "libell_d_acheminement": "ST FRONT", "code_postal": "16460", "coordonnees_gps": [45.9115644706, 0.269844042651], "code_commune_insee": "16318"}, "geometry": {"type": "Point", "coordinates": [0.269844042651, 45.9115644706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "045db47f48be69ff8af1929401633bae10c1b89d", "fields": {"nom_de_la_commune": "ST GERMAIN DE MONTBRON", "libell_d_acheminement": "ST GERMAIN DE MONTBRON", "code_postal": "16380", "coordonnees_gps": [45.5978234157, 0.425282636474], "code_commune_insee": "16323"}, "geometry": {"type": "Point", "coordinates": [0.425282636474, 45.5978234157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddb2623aea0106b7a37ef73a5b71761995e50553", "fields": {"nom_de_la_commune": "AUGE ST MEDARD", "libell_d_acheminement": "AUGE ST MEDARD", "code_postal": "16170", "coordonnees_gps": [45.7890325838, -0.0524231030464], "code_commune_insee": "16339"}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f0e58e61a6ff8714f94d96511ed9761691f9098", "fields": {"code_postal": "16170", "code_commune_insee": "16339", "libell_d_acheminement": "AUGE ST MEDARD", "ligne_5": "AUGE", "nom_de_la_commune": "AUGE ST MEDARD", "coordonnees_gps": [45.7890325838, -0.0524231030464]}, "geometry": {"type": "Point", "coordinates": [-0.0524231030464, 45.7890325838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3532fb9d781c72fc4a5e545cc151516bd92fb6d8", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "16470", "coordonnees_gps": [45.6395721277, 0.110227068021], "code_commune_insee": "16341"}, "geometry": {"type": "Point", "coordinates": [0.110227068021, 45.6395721277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19cf59c332e442e0f530e300a988ba367f34cbb3", "fields": {"nom_de_la_commune": "ST SIMON", "libell_d_acheminement": "ST SIMON", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16352"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e71f69b3f277350c832b715ee7b8efb0bc2db753", "fields": {"nom_de_la_commune": "ST VALLIER", "libell_d_acheminement": "ST VALLIER", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16357"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3dad8953a12983e54c65a7c483e11c58434795", "fields": {"nom_de_la_commune": "SALLES DE VILLEFAGNAN", "libell_d_acheminement": "SALLES DE VILLEFAGNAN", "code_postal": "16700", "coordonnees_gps": [46.0168761938, 0.246377896211], "code_commune_insee": "16361"}, "geometry": {"type": "Point", "coordinates": [0.246377896211, 46.0168761938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064d2d5e7302f6369b29289754fd19d986a062df", "fields": {"nom_de_la_commune": "SALLES LAVALETTE", "libell_d_acheminement": "SALLES LAVALETTE", "code_postal": "16190", "coordonnees_gps": [45.3950891717, 0.123283135588], "code_commune_insee": "16362"}, "geometry": {"type": "Point", "coordinates": [0.123283135588, 45.3950891717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21de88623e1f4b13506e15cbb4205f62ab91894c", "fields": {"nom_de_la_commune": "SAUVAGNAC", "libell_d_acheminement": "SAUVAGNAC", "code_postal": "16310", "coordonnees_gps": [45.7776101174, 0.580262251026], "code_commune_insee": "16364"}, "geometry": {"type": "Point", "coordinates": [0.580262251026, 45.7776101174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1f495c906e297783f3355ffaf13e2ed5f2504b", "fields": {"nom_de_la_commune": "SAUVIGNAC", "libell_d_acheminement": "SAUVIGNAC", "code_postal": "16480", "coordonnees_gps": [45.3370544203, -0.0749476623622], "code_commune_insee": "16365"}, "geometry": {"type": "Point", "coordinates": [-0.0749476623622, 45.3370544203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1388395bdcc03cf2095782435d8699449daa86c4", "fields": {"nom_de_la_commune": "SIGOGNE", "libell_d_acheminement": "SIGOGNE", "code_postal": "16200", "coordonnees_gps": [45.7157731046, -0.184252292746], "code_commune_insee": "16369"}, "geometry": {"type": "Point", "coordinates": [-0.184252292746, 45.7157731046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31f848e130df6af148728aedde63a7c83c8c0a9a", "fields": {"nom_de_la_commune": "SOYAUX", "libell_d_acheminement": "SOYAUX", "code_postal": "16800", "coordonnees_gps": [45.6393006522, 0.206735846336], "code_commune_insee": "16374"}, "geometry": {"type": "Point", "coordinates": [0.206735846336, 45.6393006522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d93676ea63121eb8e92a155afdbc5f34444b1724", "fields": {"nom_de_la_commune": "TAPONNAT FLEURIGNAC", "libell_d_acheminement": "TAPONNAT FLEURIGNAC", "code_postal": "16110", "coordonnees_gps": [45.7400969845, 0.377716541879], "code_commune_insee": "16379"}, "geometry": {"type": "Point", "coordinates": [0.377716541879, 45.7400969845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02957a5dc0ae08c973ee56d076fca11c08efc8e", "fields": {"nom_de_la_commune": "THEIL RABIER", "libell_d_acheminement": "THEIL RABIER", "code_postal": "16240", "coordonnees_gps": [46.0204608634, 0.0623105228243], "code_commune_insee": "16381"}, "geometry": {"type": "Point", "coordinates": [0.0623105228243, 46.0204608634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b8c839a87c1f816e7b4801561c2a011661cbd9", "fields": {"nom_de_la_commune": "TOURRIERS", "libell_d_acheminement": "TOURRIERS", "code_postal": "16560", "coordonnees_gps": [45.7971229421, 0.228616838557], "code_commune_insee": "16383"}, "geometry": {"type": "Point", "coordinates": [0.228616838557, 45.7971229421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c48b1cdc11e85ea587ff4d91d4b21b31e0d6ec7f", "fields": {"nom_de_la_commune": "TOUVERAC", "libell_d_acheminement": "TOUVERAC", "code_postal": "16360", "coordonnees_gps": [45.3787388898, -0.201226302053], "code_commune_insee": "16384"}, "geometry": {"type": "Point", "coordinates": [-0.201226302053, 45.3787388898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a02d2f44d781f242ce2971dccd166450713995", "fields": {"nom_de_la_commune": "TROIS PALIS", "libell_d_acheminement": "TROIS PALIS", "code_postal": "16730", "coordonnees_gps": [45.6636626896, 0.0767104525338], "code_commune_insee": "16388"}, "geometry": {"type": "Point", "coordinates": [0.0767104525338, 45.6636626896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d6086566b7de56c4999a5c8e5f161815e250914", "fields": {"nom_de_la_commune": "TUSSON", "libell_d_acheminement": "TUSSON", "code_postal": "16140", "coordonnees_gps": [45.909751558, 0.0012445152135], "code_commune_insee": "16390"}, "geometry": {"type": "Point", "coordinates": [0.0012445152135, 45.909751558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8133c56a4e45adcd33e851cbeefe45aa89870f4d", "fields": {"nom_de_la_commune": "VAUX LAVALETTE", "libell_d_acheminement": "VAUX LAVALETTE", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16394"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd4258c62ed1082e4b8c53a7b0e4a9834ae1b605", "fields": {"nom_de_la_commune": "VIGNOLLES", "libell_d_acheminement": "VIGNOLLES", "code_postal": "16300", "coordonnees_gps": [45.4825627066, -0.162479147759], "code_commune_insee": "16405"}, "geometry": {"type": "Point", "coordinates": [-0.162479147759, 45.4825627066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8b7db4c051f6f709c7d3ca47b0ced9c53490806", "fields": {"nom_de_la_commune": "VILLEBOIS LAVALETTE", "libell_d_acheminement": "VILLEBOIS LAVALETTE", "code_postal": "16320", "coordonnees_gps": [45.4895091736, 0.297130161872], "code_commune_insee": "16408"}, "geometry": {"type": "Point", "coordinates": [0.297130161872, 45.4895091736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa57880c2af48cef57f00448a4a6de42c23e5e1", "fields": {"nom_de_la_commune": "VINDELLE", "libell_d_acheminement": "VINDELLE", "code_postal": "16430", "coordonnees_gps": [45.7168170917, 0.172931779313], "code_commune_insee": "16415"}, "geometry": {"type": "Point", "coordinates": [0.172931779313, 45.7168170917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a643f85b8dad84b92fc94b6cc01c115401310d0e", "fields": {"nom_de_la_commune": "VIVILLE", "libell_d_acheminement": "VIVILLE", "code_postal": "16120", "coordonnees_gps": [45.5885415594, -0.0877285349114], "code_commune_insee": "16417"}, "geometry": {"type": "Point", "coordinates": [-0.0877285349114, 45.5885415594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b73a933631f7cce627bac26dd50bcbd77effcf00", "fields": {"nom_de_la_commune": "VOUZAN", "libell_d_acheminement": "VOUZAN", "code_postal": "16410", "coordonnees_gps": [45.5802617631, 0.262465806188], "code_commune_insee": "16422"}, "geometry": {"type": "Point", "coordinates": [0.262465806188, 45.5802617631]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc5b89e31054d499882295bf13e441679c4d795", "fields": {"nom_de_la_commune": "ILE D AIX", "libell_d_acheminement": "ILE D AIX", "code_postal": "17123", "coordonnees_gps": [46.0185702951, -1.16933710138], "code_commune_insee": "17004"}, "geometry": {"type": "Point", "coordinates": [-1.16933710138, 46.0185702951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ae57b6c386fea32ec55d30aa4c496bab99d83c", "fields": {"nom_de_la_commune": "ALLAS BOCAGE", "libell_d_acheminement": "ALLAS BOCAGE", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17005"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf9f5c37f346c308e11ef2f7679305afeb5d94bd", "fields": {"nom_de_la_commune": "ANAIS", "libell_d_acheminement": "ANAIS", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17007"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbbfe33523caab83469a9857037c55225b00989b", "fields": {"nom_de_la_commune": "ARTHENAC", "libell_d_acheminement": "ARTHENAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17020"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b122aa6881f2871a462cc8575b6026556601b0", "fields": {"nom_de_la_commune": "AUMAGNE", "libell_d_acheminement": "AUMAGNE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17025"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58dce8f4c97028a9d75b98b8f8ca306a716baeff", "fields": {"nom_de_la_commune": "AUTHON EBEON", "libell_d_acheminement": "AUTHON EBEON", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17026"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a87fa577e935da31b3d84e1a7b544046f5a9393", "fields": {"code_postal": "17770", "code_commune_insee": "17026", "libell_d_acheminement": "AUTHON EBEON", "ligne_5": "EBEON", "nom_de_la_commune": "AUTHON EBEON", "coordonnees_gps": [45.8271073503, -0.466918444884]}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b52d0a4e67dc9d7ab29f7ae3f2962e431b1cdb9f", "fields": {"nom_de_la_commune": "AYTRE", "libell_d_acheminement": "AYTRE", "code_postal": "17440", "coordonnees_gps": [46.1344639343, -1.11333325523], "code_commune_insee": "17028"}, "geometry": {"type": "Point", "coordinates": [-1.11333325523, 46.1344639343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e77687643f974a7d5ec6d59bc0951cd2daf640", "fields": {"nom_de_la_commune": "BAGNIZEAU", "libell_d_acheminement": "BAGNIZEAU", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17029"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab7f0cddac851650c65d72aa7f982ff483873587", "fields": {"nom_de_la_commune": "LA BARDE", "libell_d_acheminement": "LA BARDE", "code_postal": "17360", "coordonnees_gps": [45.1692213805, -0.0733315684265], "code_commune_insee": "17033"}, "geometry": {"type": "Point", "coordinates": [-0.0733315684265, 45.1692213805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d98b040e4f4ae4f08c6393be763cbb5bc3388353", "fields": {"nom_de_la_commune": "BAZAUGES", "libell_d_acheminement": "BAZAUGES", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17035"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98273c35718d079211449477c6f0c1fa5a0f891a", "fields": {"nom_de_la_commune": "BELLUIRE", "libell_d_acheminement": "BELLUIRE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17039"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db9cb71993bf2116187b219c9d30793439834252", "fields": {"nom_de_la_commune": "BIRON", "libell_d_acheminement": "BIRON", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17047"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61eddd42ca8abab6f1df6592ccf66f9df6bb847e", "fields": {"nom_de_la_commune": "BLANZAY SUR BOUTONNE", "libell_d_acheminement": "BLANZAY SUR BOUTONNE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17049"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "078a719a6699ecd4fe2b94ced1e4a9c0d7efa33a", "fields": {"nom_de_la_commune": "BORDS", "libell_d_acheminement": "BORDS", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17053"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afffc7c7fdecc5e4e9355014f5bdac1b67966e8e", "fields": {"nom_de_la_commune": "BOUHET", "libell_d_acheminement": "BOUHET", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17057"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a89f118e9e015e7fae919a8f85bb5d5351ed071e", "fields": {"nom_de_la_commune": "BRAN", "libell_d_acheminement": "BRAN", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17061"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64975b8d3441afb620503e3379de7bdb2535529d", "fields": {"nom_de_la_commune": "BREUIL MAGNE", "libell_d_acheminement": "BREUIL MAGNE", "code_postal": "17870", "coordonnees_gps": [45.997423768, -0.952432247798], "code_commune_insee": "17065"}, "geometry": {"type": "Point", "coordinates": [-0.952432247798, 45.997423768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43964d1268b3a158e8dc6d326a95a4cf9942088c", "fields": {"nom_de_la_commune": "CELLES", "libell_d_acheminement": "CELLES", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17076"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ee4b69c8a21acb25d102478c7642fee1a90f19", "fields": {"nom_de_la_commune": "CERCOUX", "libell_d_acheminement": "CERCOUX", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17077"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36fcddb4cf80e57287a7ccde7852b7bb57d7a617", "fields": {"nom_de_la_commune": "CHAMPAGNOLLES", "libell_d_acheminement": "CHAMPAGNOLLES", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17084"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6968ddc09ceea8ad72122a247b31864a4e0a8c0", "fields": {"nom_de_la_commune": "LE CHATEAU D OLERON", "libell_d_acheminement": "LE CHATEAU D OLERON", "code_postal": "17480", "coordonnees_gps": [45.8814200371, -1.21657707924], "code_commune_insee": "17093"}, "geometry": {"type": "Point", "coordinates": [-1.21657707924, 45.8814200371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275f9037d7c2c2848c4534698818fe8b8b33ee95", "fields": {"nom_de_la_commune": "CHERVETTES", "libell_d_acheminement": "CHERVETTES", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17103"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97f1480b6a1ba6d3e58248f88cbbfda6e8e1565a", "fields": {"nom_de_la_commune": "CLAM", "libell_d_acheminement": "CLAM", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17108"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac5d3863babdc150184e33654fce7764cad621a", "fields": {"nom_de_la_commune": "CLAVETTE", "libell_d_acheminement": "CLAVETTE", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17109"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7609fccdafe3f720206b4d19b1b0165dcbf099d", "fields": {"nom_de_la_commune": "CONTRE", "libell_d_acheminement": "CONTRE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17117"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49880e6c3aea80e566f342e78941ba401c9ef311", "fields": {"nom_de_la_commune": "COURCON", "libell_d_acheminement": "COURCON", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17127"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4cabf6d5fb1ccae8e3e76cf4111e826b6bf677c", "fields": {"nom_de_la_commune": "CRESSE", "libell_d_acheminement": "CRESSE", "code_postal": "17160", "coordonnees_gps": [45.8684835521, -0.297038681294], "code_commune_insee": "17135"}, "geometry": {"type": "Point", "coordinates": [-0.297038681294, 45.8684835521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8827364ba91c9fb5af6f04ee3d45101db598ee12", "fields": {"nom_de_la_commune": "DOEUIL SUR LE MIGNON", "libell_d_acheminement": "DOEUIL SUR LE MIGNON", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17139"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab6c1995919ad882894713cbf363f8bd3e63abd", "fields": {"nom_de_la_commune": "LES EGLISES D ARGENTEUIL", "libell_d_acheminement": "LES EGLISES D ARGENTEUIL", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17150"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "129dcc0637c6dbce8def0eaf0de04e9435d54c8b", "fields": {"nom_de_la_commune": "ESNANDES", "libell_d_acheminement": "ESNANDES", "code_postal": "17137", "coordonnees_gps": [46.2222024122, -1.1457029757], "code_commune_insee": "17153"}, "geometry": {"type": "Point", "coordinates": [-1.1457029757, 46.2222024122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "136f6858ac7874e70892d39747c99ffd4465f8ed", "fields": {"nom_de_la_commune": "FERRIERES", "libell_d_acheminement": "FERRIERES", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17158"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1cb0a9674f9a017d326ec2a6feb7a34012d9e9", "fields": {"nom_de_la_commune": "FLOIRAC", "libell_d_acheminement": "FLOIRAC", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17160"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fcbc55792f0a40fe1a9813fa0ff238f1aaf6566", "fields": {"nom_de_la_commune": "LA FREDIERE", "libell_d_acheminement": "LA FREDIERE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17169"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eceac78577e1c89bcda15a5ed87cb5f0b4a026a", "fields": {"nom_de_la_commune": "GERMIGNAC", "libell_d_acheminement": "GERMIGNAC", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17175"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2ef911b8994431b6962d8b704e62afbffb7a715", "fields": {"nom_de_la_commune": "GIVREZAC", "libell_d_acheminement": "GIVREZAC", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17178"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09a5714b5fea121224cf98810e5437838496ed9f", "fields": {"nom_de_la_commune": "COATREVEN", "libell_d_acheminement": "COATREVEN", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22042"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80f954ecb06a4f8cbb8c9631d092d317764e7b12", "fields": {"nom_de_la_commune": "COETMIEUX", "libell_d_acheminement": "COETMIEUX", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22044"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b279d7c992bff580ca36902ca26225a312941f80", "fields": {"nom_de_la_commune": "DINAN", "libell_d_acheminement": "DINAN", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22050"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38baf96cbddf3d17da01b87b2e8a5459fb333ed1", "fields": {"nom_de_la_commune": "DUAULT", "libell_d_acheminement": "DUAULT", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22052"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f8c4c6ddd8261dda843c97737737d1d443acd1", "fields": {"code_postal": "22430", "code_commune_insee": "22054", "libell_d_acheminement": "ERQUY", "ligne_5": "LES HOPITAUX", "nom_de_la_commune": "ERQUY", "coordonnees_gps": [48.6189302635, -2.45852814283]}, "geometry": {"type": "Point", "coordinates": [-2.45852814283, 48.6189302635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a67c6a4595dc420868b117c9f91489eceb1d340", "fields": {"nom_de_la_commune": "LE FOEIL", "libell_d_acheminement": "LE FOEIL", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22059"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2c54d3eb6077737a1f937a19ce27a6792275bbb", "fields": {"nom_de_la_commune": "GOUAREC", "libell_d_acheminement": "GOUAREC", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22064"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a95e1e7a76fbfe7bd9cdacf167dde64719baed2f", "fields": {"nom_de_la_commune": "GRACE UZEL", "libell_d_acheminement": "GRACE UZEL", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22068"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5930db318a20c0232264a90911023e558b8638ec", "fields": {"nom_de_la_commune": "LE HAUT CORLAY", "libell_d_acheminement": "LE HAUT CORLAY", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22074"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5887243b2d870b26092dee161e57541efcbc0ae3", "fields": {"nom_de_la_commune": "HENANBIHEN", "libell_d_acheminement": "HENANBIHEN", "code_postal": "22550", "coordonnees_gps": [48.570915647, -2.33432479795], "code_commune_insee": "22076"}, "geometry": {"type": "Point", "coordinates": [-2.33432479795, 48.570915647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c160dadd0be7519cb93ba254c7ad249dd638f6e", "fields": {"nom_de_la_commune": "HENANSAL", "libell_d_acheminement": "HENANSAL", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22077"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9740cd804464b271839cf16d40c3f9da065432ab", "fields": {"nom_de_la_commune": "LE HINGLE", "libell_d_acheminement": "LE HINGLE", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22082"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "322b7278f4d1c63a724a4e9e34b40ad77b69d85b", "fields": {"code_postal": "22270", "code_commune_insee": "22084", "libell_d_acheminement": "JUGON LES LACS COMMUNE NOUVELLE", "ligne_5": "LESCOUET JUGON", "nom_de_la_commune": "JUGON LES LACS COMMUNE NOUVELLE", "coordonnees_gps": [48.4388729687, -2.34282802999]}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfdf6276f3abcc5679f97b3fe799d3bad4e7d8ac", "fields": {"nom_de_la_commune": "KERBORS", "libell_d_acheminement": "KERBORS", "code_postal": "22610", "coordonnees_gps": [48.8387667808, -3.14072269056], "code_commune_insee": "22085"}, "geometry": {"type": "Point", "coordinates": [-3.14072269056, 48.8387667808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1edfb989926b443d032c265143d92bcb6a4ffdb8", "fields": {"nom_de_la_commune": "KERPERT", "libell_d_acheminement": "KERPERT", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22092"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d9c8dbcab691033ee8c90b07128936126aca4d", "fields": {"code_postal": "22400", "code_commune_insee": "22093", "libell_d_acheminement": "LAMBALLE", "ligne_5": "MAROUE", "nom_de_la_commune": "LAMBALLE", "coordonnees_gps": [48.5016489284, -2.50647227729]}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "742694c7f1c7fa52a1fa7feae53a6baaf5db65a2", "fields": {"nom_de_la_commune": "LANISCAT", "libell_d_acheminement": "LANISCAT", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22107"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0ea9c31a55eeb1101dfe21f29b9302ca8c1dff1", "fields": {"nom_de_la_commune": "LANRIVAIN", "libell_d_acheminement": "LANRIVAIN", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22115"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b0eff5be2aeb15c90448848d29f6b8b5ca35759", "fields": {"code_postal": "22100", "code_commune_insee": "22118", "libell_d_acheminement": "LANVALLAY", "ligne_5": "TRESSAINT", "nom_de_la_commune": "LANVALLAY", "coordonnees_gps": [48.4429392522, -2.05375025215]}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310d0933c1a7d6293d54a0ce6abf32de499063b4", "fields": {"nom_de_la_commune": "LOUARGAT", "libell_d_acheminement": "LOUARGAT", "code_postal": "22540", "coordonnees_gps": [48.5672822265, -3.30848163045], "code_commune_insee": "22135"}, "geometry": {"type": "Point", "coordinates": [-3.30848163045, 48.5672822265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15eb12ec02d3314bf703ac0bc0c9f571128ce636", "fields": {"code_postal": "22540", "code_commune_insee": "22135", "libell_d_acheminement": "LOUARGAT", "ligne_5": "ST ELOI", "nom_de_la_commune": "LOUARGAT", "coordonnees_gps": [48.5672822265, -3.30848163045]}, "geometry": {"type": "Point", "coordinates": [-3.30848163045, 48.5672822265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86ab339a3591c68bf243cc8e9ff8bd735e24e377", "fields": {"nom_de_la_commune": "LOUDEAC", "libell_d_acheminement": "LOUDEAC", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22136"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2303e679b8b0781f01ff9f8e17de6ae58425eb1", "fields": {"nom_de_la_commune": "MAEL PESTIVIEN", "libell_d_acheminement": "MAEL PESTIVIEN", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22138"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9281e062d250b0e0984d323d77b9d51d6203f960", "fields": {"nom_de_la_commune": "PAULE", "libell_d_acheminement": "PAULE", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22163"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2449ee95d7b9eff95cac7552fe13cb77667bdbba", "fields": {"code_postal": "22540", "code_commune_insee": "22164", "libell_d_acheminement": "PEDERNEC", "ligne_5": "LE QUINQUIS", "nom_de_la_commune": "PEDERNEC", "coordonnees_gps": [48.5672822265, -3.30848163045]}, "geometry": {"type": "Point", "coordinates": [-3.30848163045, 48.5672822265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0033a3074cb9aff35f2b120179e06b36cb6ebeb", "fields": {"code_postal": "22710", "code_commune_insee": "22166", "libell_d_acheminement": "PENVENAN", "ligne_5": "BUGUELES", "nom_de_la_commune": "PENVENAN", "coordonnees_gps": [48.815824264, -3.30211967596]}, "geometry": {"type": "Point", "coordinates": [-3.30211967596, 48.815824264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6a11c290b0093d5b5d594d0ace4570482d2cd17", "fields": {"nom_de_la_commune": "PERRET", "libell_d_acheminement": "PERRET", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22167"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbe1183b6f38d53cf445a7b0d476481bc0eeec89", "fields": {"code_postal": "22700", "code_commune_insee": "22168", "libell_d_acheminement": "PERROS GUIREC", "ligne_5": "LA CLARTE", "nom_de_la_commune": "PERROS GUIREC", "coordonnees_gps": [48.7941225989, -3.4412963824]}, "geometry": {"type": "Point", "coordinates": [-3.4412963824, 48.7941225989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b477f2a7a34ef9bd8ad43fa134f3723bd204f4b4", "fields": {"nom_de_la_commune": "PLELAN LE PETIT", "libell_d_acheminement": "PLELAN LE PETIT", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22180"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28b9d4358ed53265153d6b865b65d98c239cad5f", "fields": {"nom_de_la_commune": "PLELAUFF", "libell_d_acheminement": "PLELAUFF", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22181"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a61082bde73427529c3541c327b32931717bfa31", "fields": {"nom_de_la_commune": "PLELO", "libell_d_acheminement": "PLELO", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22182"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66937793452f59d60d5324906ba83bb17f8974c9", "fields": {"code_postal": "22190", "code_commune_insee": "22187", "libell_d_acheminement": "PLERIN", "ligne_5": "ST LAURENT DE LA MER", "nom_de_la_commune": "PLERIN", "coordonnees_gps": [48.5437270249, -2.77055983387]}, "geometry": {"type": "Point", "coordinates": [-2.77055983387, 48.5437270249]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8390a8d1483235d74476a36fc579fea01f6e0605", "fields": {"nom_de_la_commune": "PLESIDY", "libell_d_acheminement": "PLESIDY", "code_postal": "22720", "coordonnees_gps": [48.4508738956, -3.09490021902], "code_commune_insee": "22189"}, "geometry": {"type": "Point", "coordinates": [-3.09490021902, 48.4508738956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5e520bb680bed74101c40d19b5b9b3230e07eac", "fields": {"code_postal": "22490", "code_commune_insee": "22190", "libell_d_acheminement": "PLESLIN TRIGAVOU", "ligne_5": "TRIGAVOU", "nom_de_la_commune": "PLESLIN TRIGAVOU", "coordonnees_gps": [48.5318949869, -2.03987229623]}, "geometry": {"type": "Point", "coordinates": [-2.03987229623, 48.5318949869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46d3546e4222fd01472ef9fb997e86b057c3b18b", "fields": {"nom_de_la_commune": "PLESTIN LES GREVES", "libell_d_acheminement": "PLESTIN LES GREVES", "code_postal": "22310", "coordonnees_gps": [48.6314281059, -3.60402882378], "code_commune_insee": "22194"}, "geometry": {"type": "Point", "coordinates": [-3.60402882378, 48.6314281059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26caf9056fdfd440b3808fdcba132350f48b95c1", "fields": {"nom_de_la_commune": "PLEUMEUR BODOU", "libell_d_acheminement": "PLEUMEUR BODOU", "code_postal": "22560", "coordonnees_gps": [48.7801847576, -3.53025413579], "code_commune_insee": "22198"}, "geometry": {"type": "Point", "coordinates": [-3.53025413579, 48.7801847576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da0a14fe9e9c76b445fe1509289503b49c357fdc", "fields": {"nom_de_la_commune": "PLEVEN", "libell_d_acheminement": "PLEVEN", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22200"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e29cd351bcec662edd2378ea568ab1fee5ae400", "fields": {"code_postal": "22150", "code_commune_insee": "22203", "libell_d_acheminement": "PLOEUC L HERMITAGE", "ligne_5": "L HERMITAGE LORGE", "nom_de_la_commune": "PLOEUC L HERMITAGE", "coordonnees_gps": [48.3345820629, -2.7121618919]}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c511bfc957e10d9642fe9c9eeb2c5d6cbb1a774", "fields": {"nom_de_la_commune": "PLOUASNE", "libell_d_acheminement": "PLOUASNE", "code_postal": "22830", "coordonnees_gps": [48.3117069746, -2.00817684583], "code_commune_insee": "22208"}, "geometry": {"type": "Point", "coordinates": [-2.00817684583, 48.3117069746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35c05458b9336e468a27716b82ab46af6bdac6c", "fields": {"code_postal": "22620", "code_commune_insee": "22210", "libell_d_acheminement": "PLOUBAZLANEC", "ligne_5": "LOGUIVY DE LA MER", "nom_de_la_commune": "PLOUBAZLANEC", "coordonnees_gps": [48.8054371509, -3.04487100542]}, "geometry": {"type": "Point", "coordinates": [-3.04487100542, 48.8054371509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f108b62741744336749e73702e401651bf96b23e", "fields": {"nom_de_la_commune": "PLOUEC DU TRIEUX", "libell_d_acheminement": "PLOUEC DU TRIEUX", "code_postal": "22260", "coordonnees_gps": [48.6934931842, -3.15876407926], "code_commune_insee": "22212"}, "geometry": {"type": "Point", "coordinates": [-3.15876407926, 48.6934931842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf54888a9201d0a73e6650af32409c7f78e77c5", "fields": {"nom_de_la_commune": "PLOUGRAS", "libell_d_acheminement": "PLOUGRAS", "code_postal": "22780", "coordonnees_gps": [48.5213777811, -3.52574815356], "code_commune_insee": "22217"}, "geometry": {"type": "Point", "coordinates": [-3.52574815356, 48.5213777811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67b432f4ac9b2bad2624c535f2da7dd14d8d17b7", "fields": {"nom_de_la_commune": "PLOUGRESCANT", "libell_d_acheminement": "PLOUGRESCANT", "code_postal": "22820", "coordonnees_gps": [48.8392172818, -3.24081832109], "code_commune_insee": "22218"}, "geometry": {"type": "Point", "coordinates": [-3.24081832109, 48.8392172818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d99f6e4b3b7df3ee16f5bab90b8fd5eb0b2aecb", "fields": {"nom_de_la_commune": "PLOUGUERNEVEL", "libell_d_acheminement": "PLOUGUERNEVEL", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22220"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7bff75e5f38ca95632ad5ae943764de9d7b9667", "fields": {"nom_de_la_commune": "PLOUGUIEL", "libell_d_acheminement": "PLOUGUIEL", "code_postal": "22220", "coordonnees_gps": [48.7897014791, -3.23704501723], "code_commune_insee": "22221"}, "geometry": {"type": "Point", "coordinates": [-3.23704501723, 48.7897014791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f28b3bda62e41d7750a2c6a09d29da915906ba", "fields": {"nom_de_la_commune": "PLOULEC H", "libell_d_acheminement": "PLOULEC H", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22224"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c42b07b5bdf7951b0edd76fcdb75a3d15f0a6be", "fields": {"code_postal": "22300", "code_commune_insee": "22224", "libell_d_acheminement": "PLOULEC H", "ligne_5": "LE YAUDET", "nom_de_la_commune": "PLOULEC H", "coordonnees_gps": [48.7115988979, -3.46942340449]}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064b8975941c229c0f73f6c92c2601330ce19fd8", "fields": {"nom_de_la_commune": "PLUDUNO", "libell_d_acheminement": "PLUDUNO", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22237"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67dac2f535a90ada3785b90f30e0ba2cbe56592a", "fields": {"nom_de_la_commune": "PLUFUR", "libell_d_acheminement": "PLUFUR", "code_postal": "22310", "coordonnees_gps": [48.6314281059, -3.60402882378], "code_commune_insee": "22238"}, "geometry": {"type": "Point", "coordinates": [-3.60402882378, 48.6314281059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d41edc92e7425bba192f310a162089b68af105f7", "fields": {"nom_de_la_commune": "PLUMAUGAT", "libell_d_acheminement": "PLUMAUGAT", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22240"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbe7001caeea1e8be681a086cc0c5460ceac1a60", "fields": {"nom_de_la_commune": "PLUMIEUX", "libell_d_acheminement": "PLUMIEUX", "code_postal": "22210", "coordonnees_gps": [48.1328117448, -2.60089281473], "code_commune_insee": "22241"}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44030d156a832e476c22753fd64e44fb929f32d4", "fields": {"nom_de_la_commune": "POMMERIT LE VICOMTE", "libell_d_acheminement": "POMMERIT LE VICOMTE", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22248"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3298fc3e0e76f9560b3e7b34d0fc7f46b8af4da5", "fields": {"nom_de_la_commune": "QUINTIN", "libell_d_acheminement": "QUINTIN", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22262"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc7c391c0ce92dde0e6a0acae2bdcca190de9452", "fields": {"nom_de_la_commune": "RUCA", "libell_d_acheminement": "RUCA", "code_postal": "22550", "coordonnees_gps": [48.570915647, -2.33432479795], "code_commune_insee": "22268"}, "geometry": {"type": "Point", "coordinates": [-2.33432479795, 48.570915647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63b5bcf4d89a0c8fae197632dbb19937f7062f5a", "fields": {"nom_de_la_commune": "ST BARNABE", "libell_d_acheminement": "ST BARNABE", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22275"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fac4cfd22e406b2e097da487fb63a00355239861", "fields": {"nom_de_la_commune": "ST BIHY", "libell_d_acheminement": "ST BIHY", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22276"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d72f50391e85be9ddc7ad79709e5dfe87b5920", "fields": {"nom_de_la_commune": "ST ETIENNE DU GUE DE L ISLE", "libell_d_acheminement": "ST ETIENNE DU GUE DE L ISLE", "code_postal": "22210", "coordonnees_gps": [48.1328117448, -2.60089281473], "code_commune_insee": "22288"}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4432a50604bbbcf4c5553b8c02936d8aed7baabf", "fields": {"nom_de_la_commune": "ST JUVAT", "libell_d_acheminement": "ST JUVAT", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22308"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a0da716166d0c558a59b0440c9001766164a777", "fields": {"nom_de_la_commune": "ST LORMEL", "libell_d_acheminement": "ST LORMEL", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22311"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc96e0632eaabb64f7b403d63a78cd43318cb42", "fields": {"nom_de_la_commune": "ST QUAY PORTRIEUX", "libell_d_acheminement": "ST QUAY PORTRIEUX", "code_postal": "22410", "coordonnees_gps": [48.627965542, -2.88359302537], "code_commune_insee": "22325"}, "geometry": {"type": "Point", "coordinates": [-2.88359302537, 48.627965542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "604fb574094b56f2619fa0ea044b323937b2fe30", "fields": {"nom_de_la_commune": "ST SERVAIS", "libell_d_acheminement": "ST SERVAIS", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22328"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2256cc1bc765af75a02f5a3f6bfa750218ecac6b", "fields": {"nom_de_la_commune": "ST IGEAUX", "libell_d_acheminement": "ST IGEAUX", "code_postal": "22570", "coordonnees_gps": [48.2161998339, -3.15677922658], "code_commune_insee": "22334"}, "geometry": {"type": "Point", "coordinates": [-3.15677922658, 48.2161998339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b7cb681d87f147a616185dd55f3c06ebcdd63ec", "fields": {"nom_de_la_commune": "TADEN", "libell_d_acheminement": "TADEN", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22339"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f37130c3169f77b5f169f0026ce9775e0d42770", "fields": {"code_postal": "22300", "code_commune_insee": "22349", "libell_d_acheminement": "TREDREZ LOCQUEMEAU", "ligne_5": "LOCQUEMEAU", "nom_de_la_commune": "TREDREZ LOCQUEMEAU", "coordonnees_gps": [48.7115988979, -3.46942340449]}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "953efd5e11042daf8ebb6b45333bd47b34f1e2a4", "fields": {"nom_de_la_commune": "TREGROM", "libell_d_acheminement": "TREGROM", "code_postal": "22420", "coordonnees_gps": [48.6137512705, -3.47149497332], "code_commune_insee": "22359"}, "geometry": {"type": "Point", "coordinates": [-3.47149497332, 48.6137512705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dd8577216871dab29d84dffb39d0fb955d32bb2", "fields": {"code_postal": "22950", "code_commune_insee": "22360", "libell_d_acheminement": "TREGUEUX", "ligne_5": "CREAC H TREGUEUX", "nom_de_la_commune": "TREGUEUX", "coordonnees_gps": [48.480585356, -2.74472433795]}, "geometry": {"type": "Point", "coordinates": [-2.74472433795, 48.480585356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0223a6e28092c0f7ac9714146680d35ffbc2c6c9", "fields": {"nom_de_la_commune": "TREMARGAT", "libell_d_acheminement": "TREMARGAT", "code_postal": "22110", "coordonnees_gps": [48.2418797133, -3.31058083], "code_commune_insee": "22365"}, "geometry": {"type": "Point", "coordinates": [-3.31058083, 48.2418797133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61f1867f406c25f1ced888f4efb9f03d6aa24091", "fields": {"nom_de_la_commune": "TREMEREUC", "libell_d_acheminement": "TREMEREUC", "code_postal": "22490", "coordonnees_gps": [48.5318949869, -2.03987229623], "code_commune_insee": "22368"}, "geometry": {"type": "Point", "coordinates": [-2.03987229623, 48.5318949869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02579da99d4d5467858f35eead8b4a5f90dfd823", "fields": {"nom_de_la_commune": "TREMOREL", "libell_d_acheminement": "TREMOREL", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22371"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6a5a67e4fe072e8338eeaa6e4b3d219209abda", "fields": {"nom_de_la_commune": "TREMUSON", "libell_d_acheminement": "TREMUSON", "code_postal": "22440", "coordonnees_gps": [48.4956130543, -2.82108365648], "code_commune_insee": "22372"}, "geometry": {"type": "Point", "coordinates": [-2.82108365648, 48.4956130543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d11c388d83b40ab388feaee2fd35c402cd22a61e", "fields": {"nom_de_la_commune": "TREVEREC", "libell_d_acheminement": "TREVEREC", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22378"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f74ffdb6e451b27dc5f2f3d7869db1cc29b688", "fields": {"nom_de_la_commune": "TREVRON", "libell_d_acheminement": "TREVRON", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22380"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e9e05389db1be6c0aa645c4dfe8a87064b4dec", "fields": {"nom_de_la_commune": "ARRENES", "libell_d_acheminement": "ARRENES", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23006"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6911e2322326aac2c1805c87266d8cad3401b46", "fields": {"nom_de_la_commune": "AUGERES", "libell_d_acheminement": "AUGERES", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23010"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "048185e5052eb65129035a74b828c3283c338182", "fields": {"nom_de_la_commune": "BASVILLE", "libell_d_acheminement": "BASVILLE", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23017"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91c9b7093694d4a072581657b107165a6942eac5", "fields": {"nom_de_la_commune": "LE BOURG D HEM", "libell_d_acheminement": "LE BOURG D HEM", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23029"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab5712ae3badc8d0223232330cdccbed4b2e3a62", "fields": {"nom_de_la_commune": "BOUSSAC", "libell_d_acheminement": "BOUSSAC", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23031"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e7d772e4a05ba91085c811523ef280d1f981966", "fields": {"nom_de_la_commune": "CHAMPAGNAT", "libell_d_acheminement": "CHAMPAGNAT", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23048"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522995da30377bc13e9dabd2b0d52b1ce016ecdc", "fields": {"nom_de_la_commune": "LA CHAPELLE BALOUE", "libell_d_acheminement": "LA CHAPELLE BALOUE", "code_postal": "23160", "coordonnees_gps": [46.3627698496, 1.53929968478], "code_commune_insee": "23050"}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aa12cbb483767264be49eeee056932bcf5c5357", "fields": {"nom_de_la_commune": "LE CHAUCHET", "libell_d_acheminement": "LE CHAUCHET", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23058"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c157169784df9ab26511dc5a56019cc1d7f6d6a8", "fields": {"nom_de_la_commune": "CHENIERS", "libell_d_acheminement": "CHENIERS", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23062"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bfeb54aaa9c9f08296f1bd64cde5d659af9224", "fields": {"nom_de_la_commune": "LA COURTINE", "libell_d_acheminement": "LA COURTINE", "code_postal": "23100", "coordonnees_gps": [45.7268146987, 2.29618213551], "code_commune_insee": "23067"}, "geometry": {"type": "Point", "coordinates": [2.29618213551, 45.7268146987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed71a93dcbc5b8d70d6e0d76b11b71621c51c678", "fields": {"nom_de_la_commune": "CROCQ", "libell_d_acheminement": "CROCQ", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23069"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c2106cc9a6c8fa9b8a0ae3ff5e2313d4b1442e", "fields": {"nom_de_la_commune": "DOMEYROT", "libell_d_acheminement": "DOMEYROT", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23072"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ad921b27c99171d8068060e1199ceef719c0f10", "fields": {"nom_de_la_commune": "FAUX LA MONTAGNE", "libell_d_acheminement": "FAUX LA MONTAGNE", "code_postal": "23340", "coordonnees_gps": [45.7675202312, 1.97700019659], "code_commune_insee": "23077"}, "geometry": {"type": "Point", "coordinates": [1.97700019659, 45.7675202312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc90d44e243ce590ab310a4419e220c64aea6502", "fields": {"nom_de_la_commune": "FENIERS", "libell_d_acheminement": "FENIERS", "code_postal": "23100", "coordonnees_gps": [45.7268146987, 2.29618213551], "code_commune_insee": "23080"}, "geometry": {"type": "Point", "coordinates": [2.29618213551, 45.7268146987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e4fda80400b70095353a9358ad677646ce649e0", "fields": {"nom_de_la_commune": "FLAYAT", "libell_d_acheminement": "FLAYAT", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23081"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d7359d45ef1ad1d755bf1b42549f4767a5a8d30", "fields": {"nom_de_la_commune": "FLEURAT", "libell_d_acheminement": "FLEURAT", "code_postal": "23320", "coordonnees_gps": [46.2024027743, 1.74389390315], "code_commune_insee": "23082"}, "geometry": {"type": "Point", "coordinates": [1.74389390315, 46.2024027743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d23ad17291b22881ec8aad2b0ddb5af19fe105", "fields": {"nom_de_la_commune": "LA FORET DU TEMPLE", "libell_d_acheminement": "LA FORET DU TEMPLE", "code_postal": "23360", "coordonnees_gps": [46.4079400107, 1.81197289592], "code_commune_insee": "23084"}, "geometry": {"type": "Point", "coordinates": [1.81197289592, 46.4079400107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7273a975340a5f6db96d0b8e66b50eaaa547a98a", "fields": {"nom_de_la_commune": "FRESSELINES", "libell_d_acheminement": "FRESSELINES", "code_postal": "23450", "coordonnees_gps": [46.3780749476, 1.6990945184], "code_commune_insee": "23087"}, "geometry": {"type": "Point", "coordinates": [1.6990945184, 46.3780749476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ff2f0c3d7c19de552a7e945210b8a59c4e67ee", "fields": {"nom_de_la_commune": "GENOUILLAC", "libell_d_acheminement": "GENOUILLAC", "code_postal": "23350", "coordonnees_gps": [46.3822619833, 2.00190110842], "code_commune_insee": "23089"}, "geometry": {"type": "Point", "coordinates": [2.00190110842, 46.3822619833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610a96327efa31a162477718f369a8d21a46e6fe", "fields": {"code_postal": "23340", "code_commune_insee": "23090", "libell_d_acheminement": "GENTIOUX PIGEROLLES", "ligne_5": "PIGEROLLES", "nom_de_la_commune": "GENTIOUX PIGEROLLES", "coordonnees_gps": [45.7675202312, 1.97700019659]}, "geometry": {"type": "Point", "coordinates": [1.97700019659, 45.7675202312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2b8f0d221cf6687355efe58662be3d69f380c8", "fields": {"nom_de_la_commune": "GOUZON", "libell_d_acheminement": "GOUZON", "code_postal": "23230", "coordonnees_gps": [46.2160065726, 2.24523675556], "code_commune_insee": "23093"}, "geometry": {"type": "Point", "coordinates": [2.24523675556, 46.2160065726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3522edee593ad358a1bd08957b52180d79a9150", "fields": {"nom_de_la_commune": "LADAPEYRE", "libell_d_acheminement": "LADAPEYRE", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23102"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88930f92e0d4a0e26a786ccca89cfdd1d41432b1", "fields": {"nom_de_la_commune": "LEPINAS", "libell_d_acheminement": "LEPINAS", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23107"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51df351d26fef5975b0b43c603481f77b7d58f73", "fields": {"nom_de_la_commune": "LOURDOUEIX ST PIERRE", "libell_d_acheminement": "LOURDOUEIX ST PIERRE", "code_postal": "23360", "coordonnees_gps": [46.4079400107, 1.81197289592], "code_commune_insee": "23112"}, "geometry": {"type": "Point", "coordinates": [1.81197289592, 46.4079400107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ca0b5642181ecba222b0b6e1567123406662bdd", "fields": {"code_postal": "23360", "code_commune_insee": "23112", "libell_d_acheminement": "LOURDOUEIX ST PIERRE", "ligne_5": "LIGNAUD", "nom_de_la_commune": "LOURDOUEIX ST PIERRE", "coordonnees_gps": [46.4079400107, 1.81197289592]}, "geometry": {"type": "Point", "coordinates": [1.81197289592, 46.4079400107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f04b6afb825ceffb26ee99eeb8d13c2290a9421", "fields": {"nom_de_la_commune": "LUPERSAT", "libell_d_acheminement": "LUPERSAT", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23113"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a702d903b2e2a42b12fcd763c0d537c537ce08a0", "fields": {"nom_de_la_commune": "MAUTES", "libell_d_acheminement": "MAUTES", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23127"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d501ff0221a2f01b007563f0643a104d2991394e", "fields": {"nom_de_la_commune": "MAZEIRAT", "libell_d_acheminement": "MAZEIRAT", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23128"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf2c47574292a126aed8548aacebf0ae309825a", "fields": {"nom_de_la_commune": "ARCHETTES", "libell_d_acheminement": "ARCHETTES", "code_postal": "88380", "coordonnees_gps": [48.1218845084, 6.52949097702], "code_commune_insee": "88012"}, "geometry": {"type": "Point", "coordinates": [6.52949097702, 48.1218845084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85a8d5b79c3fe0f9eff7d2d37ff4d3ae377500f", "fields": {"nom_de_la_commune": "BAINVILLE AUX SAULES", "libell_d_acheminement": "BAINVILLE AUX SAULES", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88030"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f8db1ca5a04f7135b35c5a1085300df565f2c56", "fields": {"nom_de_la_commune": "BAZOILLES ET MENIL", "libell_d_acheminement": "BAZOILLES ET MENIL", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88043"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b5f8d15d0ee7a78c04558f076641d6c848aa9f1", "fields": {"nom_de_la_commune": "BEGNECOURT", "libell_d_acheminement": "BEGNECOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88047"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0375603c72d562ef82c0d35e7e45cab9b5d6da6", "fields": {"nom_de_la_commune": "BELMONT SUR VAIR", "libell_d_acheminement": "BELMONT SUR VAIR", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88051"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef092628ff99f78e29747280673fff2d9e4c37b8", "fields": {"nom_de_la_commune": "BIECOURT", "libell_d_acheminement": "BIECOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88058"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd8c007e195d805aecd39b8f59967a5c8c0bc45c", "fields": {"nom_de_la_commune": "BLEMEREY", "libell_d_acheminement": "BLEMEREY", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88060"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d8ae4591ef9d581dcd5eab91ec28600102ce76a", "fields": {"nom_de_la_commune": "BOUZEMONT", "libell_d_acheminement": "BOUZEMONT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88071"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b0de037bd3251c3b8dc431dde116b3dd6ca94c", "fields": {"nom_de_la_commune": "CERTILLEUX", "libell_d_acheminement": "CERTILLEUX", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88083"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f49157bc60fc0f35fa71ed9b5503d22d0e58bb1b", "fields": {"nom_de_la_commune": "CHANTRAINE", "libell_d_acheminement": "CHANTRAINE", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88087"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a05454a7f8cb7f2aff4915da1559633fc5b6e466", "fields": {"nom_de_la_commune": "CHARMOIS DEVANT BRUYERES", "libell_d_acheminement": "CHARMOIS DEVANT BRUYERES", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88091"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "debc2322091013b09f6e348039eb5bcfa2c39d06", "fields": {"nom_de_la_commune": "CHAUMOUSEY", "libell_d_acheminement": "CHAUMOUSEY", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88098"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc10c6d61572fe8ce9f20909d14db5cad883055", "fields": {"nom_de_la_commune": "CIRCOURT SUR MOUZON", "libell_d_acheminement": "CIRCOURT SUR MOUZON", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88104"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49e0c79137c707db94ff7a2b393a45b7af6084f", "fields": {"nom_de_la_commune": "BAN SUR MEURTHE CLEFCY", "libell_d_acheminement": "BAN SUR MEURTHE CLEFCY", "code_postal": "88230", "coordonnees_gps": [48.1335194001, 7.00987852729], "code_commune_insee": "88106"}, "geometry": {"type": "Point", "coordinates": [7.00987852729, 48.1335194001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f82e440cc95d3b3c12f530948352cf23e55e0c8a", "fields": {"nom_de_la_commune": "CLEZENTAINE", "libell_d_acheminement": "CLEZENTAINE", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88110"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71be302df9cf180dbee85fc36d591b90ac2c86a9", "fields": {"nom_de_la_commune": "COINCHES", "libell_d_acheminement": "COINCHES", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88111"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b0bb1f6eb89ac8de5ce0280c44bd2478819c262", "fields": {"nom_de_la_commune": "CORNIMONT", "libell_d_acheminement": "CORNIMONT", "code_postal": "88310", "coordonnees_gps": [47.9567015163, 6.87250847131], "code_commune_insee": "88116"}, "geometry": {"type": "Point", "coordinates": [6.87250847131, 47.9567015163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44259d4777ca56994f0d950073c2f1d0489697d0", "fields": {"nom_de_la_commune": "COURCELLES SOUS CHATENOIS", "libell_d_acheminement": "COURCELLES SOUS CHATENOIS", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88117"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adabac45429f9f849b16227f8a2a748f1e769fe7", "fields": {"nom_de_la_commune": "DAMAS ET BETTEGNEY", "libell_d_acheminement": "DAMAS ET BETTEGNEY", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88122"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f760356ccdddf7eca66251ae5a2e9e1a8af5d03a", "fields": {"nom_de_la_commune": "DARNEY AUX CHENES", "libell_d_acheminement": "DARNEY AUX CHENES", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88125"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ea00cbd134a1851c8a02f51a3ac43cbc5a07db", "fields": {"nom_de_la_commune": "DERBAMONT", "libell_d_acheminement": "DERBAMONT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88129"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9640550b17b7039d6be0aacb959173823a260c39", "fields": {"nom_de_la_commune": "DESTORD", "libell_d_acheminement": "DESTORD", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88130"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26cf2f8715a39c6c497cf60abdfa08d47ed352ab", "fields": {"nom_de_la_commune": "DEYVILLERS", "libell_d_acheminement": "DEYVILLERS", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88132"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd50cf131b6d91ff97b4239e1a3eb21b65d208c7", "fields": {"nom_de_la_commune": "DOMEVRE SOUS MONTFORT", "libell_d_acheminement": "DOMEVRE SOUS MONTFORT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88144"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63531a9355dbdeeb51f54cda58ad66753642839e", "fields": {"nom_de_la_commune": "DOMJULIEN", "libell_d_acheminement": "DOMJULIEN", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88146"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1dcf7db8280332470ec3d3a84750b79b753560", "fields": {"nom_de_la_commune": "DOMMARTIN AUX BOIS", "libell_d_acheminement": "DOMMARTIN AUX BOIS", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88147"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1967bd17c91cd9409d75fee166d9650010b3caec", "fields": {"nom_de_la_commune": "FERDRUPT", "libell_d_acheminement": "FERDRUPT", "code_postal": "88360", "coordonnees_gps": [47.9275982656, 6.67734911799], "code_commune_insee": "88170"}, "geometry": {"type": "Point", "coordinates": [6.67734911799, 47.9275982656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660c199f5dc679c4c0104c248e408381926aef67", "fields": {"nom_de_la_commune": "LA FORGE", "libell_d_acheminement": "LA FORGE", "code_postal": "88530", "coordonnees_gps": [48.0852406406, 6.73632940481], "code_commune_insee": "88177"}, "geometry": {"type": "Point", "coordinates": [6.73632940481, 48.0852406406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd04f9dd1c25876341cd08d3f4910a6645eea947", "fields": {"nom_de_la_commune": "FRAIN", "libell_d_acheminement": "FRAIN", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88180"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd62346cfe7439e10c34a3af97b0852133b8d4d1", "fields": {"nom_de_la_commune": "FREBECOURT", "libell_d_acheminement": "FREBECOURT", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88183"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8b950bf1d68aa987ff321c619c378f286e18b95", "fields": {"nom_de_la_commune": "FRENELLE LA PETITE", "libell_d_acheminement": "FRENELLE LA PETITE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88186"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a98ac15d2eceac13b335d006517df25b5f5860d0", "fields": {"nom_de_la_commune": "FRIZON", "libell_d_acheminement": "FRIZON", "code_postal": "88440", "coordonnees_gps": [48.2939351767, 6.36082179338], "code_commune_insee": "88190"}, "geometry": {"type": "Point", "coordinates": [6.36082179338, 48.2939351767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "561390b88f7847dc9aa0dec136820f6abb100e18", "fields": {"nom_de_la_commune": "GIRECOURT SUR DURBION", "libell_d_acheminement": "GIRECOURT SUR DURBION", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88203"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58cb6c910dba7c38d9968e7575df3270279787a9", "fields": {"nom_de_la_commune": "LA GRANDE FOSSE", "libell_d_acheminement": "LA GRANDE FOSSE", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88213"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3598d75998baec42f4de0e86b7b73275332f63", "fields": {"nom_de_la_commune": "GRANDRUPT DE BAINS", "libell_d_acheminement": "GRANDRUPT DE BAINS", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88214"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b72854a4e98379e70c9e957908dde11da0b6ffc", "fields": {"nom_de_la_commune": "GREUX", "libell_d_acheminement": "GREUX", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88219"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d478f267085a9e0cb74aeb8fa23ebbc332b6d6", "fields": {"nom_de_la_commune": "GUGNECOURT", "libell_d_acheminement": "GUGNECOURT", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88222"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a97a3931b8693e35e969068df2344cf1b23f6e", "fields": {"code_postal": "88300", "code_commune_insee": "88227", "libell_d_acheminement": "HAGNEVILLE ET RONCOURT", "ligne_5": "RONCOURT", "nom_de_la_commune": "HAGNEVILLE ET RONCOURT", "coordonnees_gps": [48.3526627725, 5.74997889486]}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "116604ac74348eae086fb7d111b3530dcd816e88", "fields": {"nom_de_la_commune": "HARCHECHAMP", "libell_d_acheminement": "HARCHECHAMP", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88229"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70bb9fae521f5690c5b7cf44ea036ebf550476df", "fields": {"nom_de_la_commune": "HARMONVILLE", "libell_d_acheminement": "HARMONVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88232"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8515005a6d9e6ed635916468be561463280ec960", "fields": {"nom_de_la_commune": "LA HAYE", "libell_d_acheminement": "LA HAYE", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88236"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e1772c8149c38909e727cead5d511e4ff69f95", "fields": {"nom_de_la_commune": "HENNEZEL", "libell_d_acheminement": "HENNEZEL", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88238"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e16415fda8a67bf3fe5bc8c4d16cf9539b075619", "fields": {"nom_de_la_commune": "HERPELMONT", "libell_d_acheminement": "HERPELMONT", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88240"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ad70bc63c85d795d43e8c441b8f78713ce649f6", "fields": {"nom_de_la_commune": "HOUECOURT", "libell_d_acheminement": "HOUECOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88241"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65531e1e243c94f07eed8070ccdcf838cfb4bd37", "fields": {"nom_de_la_commune": "ISCHES", "libell_d_acheminement": "ISCHES", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88248"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a929a07db1659261a851a8b65281b0532d399ace", "fields": {"nom_de_la_commune": "LAVELINE DU HOUX", "libell_d_acheminement": "LAVELINE DU HOUX", "code_postal": "88640", "coordonnees_gps": [48.1317016087, 6.78306883061], "code_commune_insee": "88263"}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef093e6aecfceb9a627320a07ce34417c1f76992", "fields": {"nom_de_la_commune": "LESSEUX", "libell_d_acheminement": "LESSEUX", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88268"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e38ac8e99aa87b94a91e7a4196d5fa5653f329d4", "fields": {"nom_de_la_commune": "LIRONCOURT", "libell_d_acheminement": "LIRONCOURT", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88272"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f48a38ca1a046e136b61864c54d9af932a8049e", "fields": {"nom_de_la_commune": "LUVIGNY", "libell_d_acheminement": "LUVIGNY", "code_postal": "88110", "coordonnees_gps": [48.4500564784, 6.97091495001], "code_commune_insee": "88277"}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032ce38812c5b333144fc0fdcb632e723c8706a9", "fields": {"nom_de_la_commune": "MADONNE ET LAMEREY", "libell_d_acheminement": "MADONNE ET LAMEREY", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88281"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64127e1b9cc029972e1b91787ca755248c09d1b9", "fields": {"nom_de_la_commune": "MAREY", "libell_d_acheminement": "MAREY", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88287"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc47515259ee706bcad541b6ab2693ca19ce7e0", "fields": {"nom_de_la_commune": "MATTAINCOURT", "libell_d_acheminement": "MATTAINCOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88292"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f3534abb5f4c769b072021ad6238fcb3fea1d6c", "fields": {"nom_de_la_commune": "MAXEY SUR MEUSE", "libell_d_acheminement": "MAXEY SUR MEUSE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88293"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25a7ecdfc3b4da19942bb71cc741d15e7f87ce9", "fields": {"nom_de_la_commune": "MAZELEY", "libell_d_acheminement": "MAZELEY", "code_postal": "88150", "coordonnees_gps": [48.2558226475, 6.42027850113], "code_commune_insee": "88294"}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c73a2dda61d586e4023ba635c13197c2236117fa", "fields": {"nom_de_la_commune": "MENIL SUR BELVITTE", "libell_d_acheminement": "MENIL SUR BELVITTE", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88301"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ed6caa12fd42358658f10b09d99f533ee78005e", "fields": {"nom_de_la_commune": "MONT LES LAMARCHE", "libell_d_acheminement": "MONT LES LAMARCHE", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88307"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d7dffa74ad00a1d4632b4641a67465e4a6055e5", "fields": {"nom_de_la_commune": "MONTHUREUX LE SEC", "libell_d_acheminement": "MONTHUREUX LE SEC", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88309"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6d572d994801a28e4735ea7d0d9e06c6665c5b9", "fields": {"nom_de_la_commune": "MONTMOTIER", "libell_d_acheminement": "MONTMOTIER", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88311"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac387eb3a09d175eadf9cdcd785e381afb78a5ba", "fields": {"nom_de_la_commune": "MORIZECOURT", "libell_d_acheminement": "MORIZECOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88314"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40cfab563558534d78a6a520912b9a06f0f772da", "fields": {"nom_de_la_commune": "NEUFCHATEAU", "libell_d_acheminement": "NEUFCHATEAU", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88321"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b59d2ef8e9ff3088a30aa3f976b85d72c9307f2", "fields": {"code_postal": "88600", "code_commune_insee": "88322", "libell_d_acheminement": "LA NEUVEVILLE DEVANT LEPANGES", "ligne_5": "ST JEAN DU MARCHE", "nom_de_la_commune": "LA NEUVEVILLE DEVANT LEPANGES", "coordonnees_gps": [48.2228084318, 6.69811489698]}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7283ecba1c5613f3311537b35913424fea9d432b", "fields": {"nom_de_la_commune": "NOSSONCOURT", "libell_d_acheminement": "NOSSONCOURT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88333"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a26505c74abb00c170efdf5a6ef9fa887a56336", "fields": {"nom_de_la_commune": "PAIR ET GRANDRUPT", "libell_d_acheminement": "PAIR ET GRANDRUPT", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88341"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75bc79b603bc54b81f2a66b239c787b9d6ed0e7d", "fields": {"nom_de_la_commune": "PAREY SOUS MONTFORT", "libell_d_acheminement": "PAREY SOUS MONTFORT", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88343"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974ba2e3683a1916d06bccdda2d9fd232ec4de8f", "fields": {"nom_de_la_commune": "LA PETITE FOSSE", "libell_d_acheminement": "LA PETITE FOSSE", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88345"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd2cf57aa478cac56e83cc4c818bf0c87a33645", "fields": {"nom_de_la_commune": "PLEUVEZAIN", "libell_d_acheminement": "PLEUVEZAIN", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88350"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e772885b41cfa9f3f45e12430a01ec0cbd09d7", "fields": {"nom_de_la_commune": "PONT LES BONFAYS", "libell_d_acheminement": "PONT LES BONFAYS", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88353"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d41732cc142f3d782ce51747f7c6fd282ca9464", "fields": {"nom_de_la_commune": "PONT SUR MADON", "libell_d_acheminement": "PONT SUR MADON", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88354"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34bf78ede6929542dba31dd04667176d05bc2297", "fields": {"nom_de_la_commune": "LES POULIERES", "libell_d_acheminement": "LES POULIERES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88356"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78ce4e9a0ac182d8c66b59f63a7c7667915f3e7a", "fields": {"nom_de_la_commune": "PROVENCHERES LES DARNEY", "libell_d_acheminement": "PROVENCHERES LES DARNEY", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88360"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "081d5bf06f9687a382146fb9b0821e735163afba", "fields": {"nom_de_la_commune": "PUZIEUX", "libell_d_acheminement": "PUZIEUX", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88364"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374a1f77119a80a9c72454bbd3ed9bea3e3e0a68", "fields": {"nom_de_la_commune": "RAINVILLE", "libell_d_acheminement": "RAINVILLE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88366"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310d7f517c71746253e0d057481d21580dfa1056", "fields": {"nom_de_la_commune": "RAON SUR PLAINE", "libell_d_acheminement": "RAON SUR PLAINE", "code_postal": "88110", "coordonnees_gps": [48.4500564784, 6.97091495001], "code_commune_insee": "88373"}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb6a6631de9ea214f1696add2ffc8146eafb2b3", "fields": {"nom_de_la_commune": "RAPEY", "libell_d_acheminement": "RAPEY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88374"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0485bc5959fbfbdc0b9fec855247eb71918bd4c0", "fields": {"nom_de_la_commune": "RAVES", "libell_d_acheminement": "RAVES", "code_postal": "88520", "coordonnees_gps": [48.2317545938, 7.08210366402], "code_commune_insee": "88375"}, "geometry": {"type": "Point", "coordinates": [7.08210366402, 48.2317545938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c3d3fc9a47d2de48a6bb6ea8e3ceb2a6ebdd1d", "fields": {"nom_de_la_commune": "REGNEVELLE", "libell_d_acheminement": "REGNEVELLE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88377"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "280c5fb64c6865be0471e6f1dc4637bff8e33908", "fields": {"nom_de_la_commune": "REGNEY", "libell_d_acheminement": "REGNEY", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88378"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e9153231244cebd1091d551fce0eb303518d6a", "fields": {"nom_de_la_commune": "RUPPES", "libell_d_acheminement": "RUPPES", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88407"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e96d11f161067c74ad928a78b8cf7a2c634baa9b", "fields": {"nom_de_la_commune": "STE MARGUERITE", "libell_d_acheminement": "STE MARGUERITE", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88424"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88c76e9827c7579669f7574105b22d4a298d13cb", "fields": {"nom_de_la_commune": "ST MICHEL SUR MEURTHE", "libell_d_acheminement": "ST MICHEL SUR MEURTHE", "code_postal": "88470", "coordonnees_gps": [48.3159931003, 6.84826816273], "code_commune_insee": "88428"}, "geometry": {"type": "Point", "coordinates": [6.84826816273, 48.3159931003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17cd613bf20242cefb66ab22969fc68ffb244173", "fields": {"nom_de_la_commune": "ST PIERREMONT", "libell_d_acheminement": "ST PIERREMONT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88432"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af8c79603b4fae11cb0a8fb57852c1438261a16e", "fields": {"nom_de_la_commune": "SONCOURT", "libell_d_acheminement": "SONCOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88459"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d8a840d99165d30c7a8fd56f303c22771a6ae61", "fields": {"nom_de_la_commune": "TAINTRUX", "libell_d_acheminement": "TAINTRUX", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88463"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f18ee0090ab3136d9f7d0cb74a9ac071673f4543", "fields": {"nom_de_la_commune": "TENDON", "libell_d_acheminement": "TENDON", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88464"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "986205c0c38dac5b26510b4bff12490a363cfd64", "fields": {"code_postal": "88150", "code_commune_insee": "88465", "libell_d_acheminement": "CAPAVENIR VOSGES", "ligne_5": "THAON LES VOSGES", "nom_de_la_commune": "CAPAVENIR VOSGES", "coordonnees_gps": [48.2558226475, 6.42027850113]}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16122962a6b6ad93de550487e7a0d283287e2106", "fields": {"nom_de_la_commune": "LE THOLY", "libell_d_acheminement": "LE THOLY", "code_postal": "88530", "coordonnees_gps": [48.0852406406, 6.73632940481], "code_commune_insee": "88470"}, "geometry": {"type": "Point", "coordinates": [6.73632940481, 48.0852406406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a47728539981a65bb19e42892001d5811832a7e", "fields": {"nom_de_la_commune": "TOTAINVILLE", "libell_d_acheminement": "TOTAINVILLE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88476"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26b7476c90f3a94b13494f47644ca1ee7a503c8c", "fields": {"nom_de_la_commune": "UBEXY", "libell_d_acheminement": "UBEXY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88480"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b11c83e02053ee1bd0ae2aa71b8c0e66126db16", "fields": {"nom_de_la_commune": "LA VACHERESSE ET LA ROUILLIE", "libell_d_acheminement": "LA VACHERESSE ET LA ROUILLIE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88485"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76f48b2dc7951326f125d93f69acec04f7251897", "fields": {"nom_de_la_commune": "VERVEZELLE", "libell_d_acheminement": "VERVEZELLE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88502"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9bcd8c2edc098979a711173d6054547aa648897", "fields": {"nom_de_la_commune": "VEXAINCOURT", "libell_d_acheminement": "VEXAINCOURT", "code_postal": "88110", "coordonnees_gps": [48.4500564784, 6.97091495001], "code_commune_insee": "88503"}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90451a3a3223d99fe246da02e78c7f0d22597260", "fields": {"nom_de_la_commune": "VIENVILLE", "libell_d_acheminement": "VIENVILLE", "code_postal": "88430", "coordonnees_gps": [48.1658357174, 6.87708921795], "code_commune_insee": "88505"}, "geometry": {"type": "Point", "coordinates": [6.87708921795, 48.1658357174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476a9ff150a903c1f00c1fc5cce4b6d4a4a4609d", "fields": {"nom_de_la_commune": "VIMENIL", "libell_d_acheminement": "VIMENIL", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88512"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91f207caab94d1dbaf98b549de88d011ca03435", "fields": {"nom_de_la_commune": "LES VOIVRES", "libell_d_acheminement": "LES VOIVRES", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88520"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c91a4d05bdedf3ca649e23eb2148700a980177", "fields": {"nom_de_la_commune": "WISEMBACH", "libell_d_acheminement": "WISEMBACH", "code_postal": "88520", "coordonnees_gps": [48.2317545938, 7.08210366402], "code_commune_insee": "88526"}, "geometry": {"type": "Point", "coordinates": [7.08210366402, 48.2317545938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d56c0609ac0acfdab59375b74f402da55ff8391", "fields": {"nom_de_la_commune": "XARONVAL", "libell_d_acheminement": "XARONVAL", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88529"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b91eafdd1e106bc20d53fde63cf014c1d3c8e1", "fields": {"nom_de_la_commune": "AIGREMONT", "libell_d_acheminement": "AIGREMONT", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89002"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa047802e45d6c419c7ac43c4a3c5a249515a26e", "fields": {"nom_de_la_commune": "AILLANT SUR THOLON", "libell_d_acheminement": "AILLANT SUR THOLON", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89003"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4da6236a9fc48459d17060c418b99e0b7519a65", "fields": {"nom_de_la_commune": "ANGELY", "libell_d_acheminement": "ANGELY", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89008"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47855a6aa57b03378a4aa90c5de8b7a15a8c44bd", "fields": {"code_postal": "89320", "code_commune_insee": "89014", "libell_d_acheminement": "ARCES DILO", "ligne_5": "DILO", "nom_de_la_commune": "ARCES DILO", "coordonnees_gps": [48.1363744746, 3.52794249897]}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a74b729062dcae01a680b696d7c40df11e4abba", "fields": {"nom_de_la_commune": "ST PALAIS DE NEGRIGNAC", "libell_d_acheminement": "ST PALAIS DE NEGRIGNAC", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17378"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd5cbe46e918c8fbb6d681f751c2b6c6d4c669b", "fields": {"code_postal": "17310", "code_commune_insee": "17385", "libell_d_acheminement": "ST PIERRE D OLERON", "ligne_5": "LA COTINIERE", "nom_de_la_commune": "ST PIERRE D OLERON", "coordonnees_gps": [45.9395914955, -1.30493678454]}, "geometry": {"type": "Point", "coordinates": [-1.30493678454, 45.9395914955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c7b0ec0db06ad133118e3bf6561d7c7fbc5c25", "fields": {"nom_de_la_commune": "ST PIERRE DU PALAIS", "libell_d_acheminement": "ST PIERRE DU PALAIS", "code_postal": "17270", "coordonnees_gps": [45.1883468077, -0.18337853706], "code_commune_insee": "17386"}, "geometry": {"type": "Point", "coordinates": [-0.18337853706, 45.1883468077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18a1ec1d99f71f300df36d775690adacc435998d", "fields": {"nom_de_la_commune": "ST SAUVANT", "libell_d_acheminement": "ST SAUVANT", "code_postal": "17610", "coordonnees_gps": [45.7221951578, -0.496240625744], "code_commune_insee": "17395"}, "geometry": {"type": "Point", "coordinates": [-0.496240625744, 45.7221951578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b5f441272c94accc627ed79edbd8752e851fef", "fields": {"code_postal": "17350", "code_commune_insee": "17397", "libell_d_acheminement": "ST SAVINIEN", "ligne_5": "COULONGE SUR CHARENTE", "nom_de_la_commune": "ST SAVINIEN", "coordonnees_gps": [45.8646141177, -0.657370480976]}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4df23483aa3684d683771dcb9e65cd92c3a1ce", "fields": {"nom_de_la_commune": "ST SEURIN DE PALENNE", "libell_d_acheminement": "ST SEURIN DE PALENNE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17398"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd284caba1601bafa94aa725a08d009f910bcd72", "fields": {"nom_de_la_commune": "SAINTES", "libell_d_acheminement": "SAINTES", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17415"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0dfa2c57e2dc6a96e423eee9d3677c6262868c2", "fields": {"nom_de_la_commune": "SALIGNAC SUR CHARENTE", "libell_d_acheminement": "SALIGNAC SUR CHARENTE", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17418"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bda8f43ca2bc2d022c2565688f1abf1fe03a7ce", "fields": {"nom_de_la_commune": "SEIGNE", "libell_d_acheminement": "SEIGNE", "code_postal": "17510", "coordonnees_gps": [45.976280265, -0.189185757738], "code_commune_insee": "17422"}, "geometry": {"type": "Point", "coordinates": [-0.189185757738, 45.976280265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c40e2b8dd9fd76284b52ae3bcaba360f2b1547", "fields": {"nom_de_la_commune": "SOUMERAS", "libell_d_acheminement": "SOUMERAS", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17432"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a587bf9e2a69849d216f7b123bb487ce5aa8c479", "fields": {"nom_de_la_commune": "TALMONT SUR GIRONDE", "libell_d_acheminement": "TALMONT SUR GIRONDE", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17437"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5848fd9b0b6895894a01203326194c1f84a881b3", "fields": {"nom_de_la_commune": "TANZAC", "libell_d_acheminement": "TANZAC", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17438"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "483655b19fb6960f4e9705dbfe254caade7859e8", "fields": {"nom_de_la_commune": "TAUGON", "libell_d_acheminement": "TAUGON", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17439"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e774e174f431f2b97a6ab33da8fb607d5a2a55a9", "fields": {"nom_de_la_commune": "TESSON", "libell_d_acheminement": "TESSON", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17441"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d1e3861b820b5559674e642d9216a5396a7271b", "fields": {"nom_de_la_commune": "THAIMS", "libell_d_acheminement": "THAIMS", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17442"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "354dfd543055e122a9535bd4f32f2689ec45b012", "fields": {"nom_de_la_commune": "THENAC", "libell_d_acheminement": "THENAC", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17444"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3456a80dbac4a357333edec375210c3f0a39f664", "fields": {"nom_de_la_commune": "TONNAY BOUTONNE", "libell_d_acheminement": "TONNAY BOUTONNE", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17448"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be358e96a2cee03ce0159f828125d94e6a1370ca", "fields": {"nom_de_la_commune": "TUGERAS ST MAURICE", "libell_d_acheminement": "TUGERAS ST MAURICE", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17454"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0511244000066ff8176ca1adea9ce8bebb17dd33", "fields": {"nom_de_la_commune": "VENERAND", "libell_d_acheminement": "VENERAND", "code_postal": "17100", "coordonnees_gps": [45.7574364763, -0.604288078697], "code_commune_insee": "17462"}, "geometry": {"type": "Point", "coordinates": [-0.604288078697, 45.7574364763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07ce21dd8eb59cc6243659e06031e265587173fc", "fields": {"nom_de_la_commune": "VERGNE", "libell_d_acheminement": "VERGNE", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17464"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e422128f4462604414181891835151a46c26bfd5", "fields": {"nom_de_la_commune": "VERINES", "libell_d_acheminement": "VERINES", "code_postal": "17540", "coordonnees_gps": [46.199560479, -0.910791459937], "code_commune_insee": "17466"}, "geometry": {"type": "Point", "coordinates": [-0.910791459937, 46.199560479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "677ec8c8d01936cfb5e703bc1378a58b8967a424", "fields": {"nom_de_la_commune": "LA VILLEDIEU", "libell_d_acheminement": "LA VILLEDIEU", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17471"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ecac2d012399d5b5857cfa43593eaa9f6238455", "fields": {"nom_de_la_commune": "VILLEMORIN", "libell_d_acheminement": "VILLEMORIN", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17473"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf37ccb5f1c8ccf2ec32b64bfcd1786e35ae2187", "fields": {"code_postal": "17330", "code_commune_insee": "17474", "libell_d_acheminement": "VILLENEUVE LA COMTESSE", "ligne_5": "VILLENOUVELLE", "nom_de_la_commune": "VILLENEUVE LA COMTESSE", "coordonnees_gps": [46.0720131414, -0.537761612813]}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2f26dd731c35ed9de3e0bb431eea15ea18fea4", "fields": {"nom_de_la_commune": "VIROLLET", "libell_d_acheminement": "VIROLLET", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17479"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7c72893a870fc16783922776900aecc2167796", "fields": {"nom_de_la_commune": "VOUHE", "libell_d_acheminement": "VOUHE", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17482"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8a53f797168e98253d2b152f6eb1fa6e42ef833", "fields": {"nom_de_la_commune": "PORT DES BARQUES", "libell_d_acheminement": "PORT DES BARQUES", "code_postal": "17730", "coordonnees_gps": [45.9419121802, -1.07339342344], "code_commune_insee": "17484"}, "geometry": {"type": "Point", "coordinates": [-1.07339342344, 45.9419121802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e50eb6ca1096f5169d8070884f171eaf256928f5", "fields": {"nom_de_la_commune": "LA BREE LES BAINS", "libell_d_acheminement": "LA BREE LES BAINS", "code_postal": "17840", "coordonnees_gps": [46.0079537352, -1.35107498739], "code_commune_insee": "17486"}, "geometry": {"type": "Point", "coordinates": [-1.35107498739, 46.0079537352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa5f35c784ce93892f4c8d6457009b4366003ed", "fields": {"nom_de_la_commune": "ALLOUIS", "libell_d_acheminement": "ALLOUIS", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18005"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd9b1e92c5628e0fc3508bd50cd1a1acaea9efd7", "fields": {"nom_de_la_commune": "APREMONT SUR ALLIER", "libell_d_acheminement": "APREMONT SUR ALLIER", "code_postal": "18150", "coordonnees_gps": [46.9399476242, 2.96880212388], "code_commune_insee": "18007"}, "geometry": {"type": "Point", "coordinates": [2.96880212388, 46.9399476242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118f7c6955c0e900119f5d61d86c96da3eaa5f33", "fields": {"nom_de_la_commune": "AUBIGNY SUR NERE", "libell_d_acheminement": "AUBIGNY SUR NERE", "code_postal": "18700", "coordonnees_gps": [47.4727480114, 2.39384218551], "code_commune_insee": "18015"}, "geometry": {"type": "Point", "coordinates": [2.39384218551, 47.4727480114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fae3730ab3e40d12fd99fbbe5502abd4ee4aa1", "fields": {"nom_de_la_commune": "BEDDES", "libell_d_acheminement": "BEDDES", "code_postal": "18370", "coordonnees_gps": [46.5167318179, 2.22634680986], "code_commune_insee": "18024"}, "geometry": {"type": "Point", "coordinates": [2.22634680986, 46.5167318179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92b3ec82bc98bfbd2dd95ed16fadff24ce545437", "fields": {"nom_de_la_commune": "BENGY SUR CRAON", "libell_d_acheminement": "BENGY SUR CRAON", "code_postal": "18520", "coordonnees_gps": [47.0138708859, 2.70198329329], "code_commune_insee": "18027"}, "geometry": {"type": "Point", "coordinates": [2.70198329329, 47.0138708859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c5d90608beea190f8db0e93455960cc742ef282", "fields": {"nom_de_la_commune": "BLET", "libell_d_acheminement": "BLET", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18031"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "597c00e44f17710613be5d0de8ee135f3d8003cb", "fields": {"nom_de_la_commune": "BOURGES", "libell_d_acheminement": "BOURGES", "code_postal": "18000", "coordonnees_gps": [47.0747448585, 2.40489595766], "code_commune_insee": "18033"}, "geometry": {"type": "Point", "coordinates": [2.40489595766, 47.0747448585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76930624b7558b9a977930f10cca8bb977689621", "fields": {"nom_de_la_commune": "BRINAY", "libell_d_acheminement": "BRINAY", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18036"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4666cef8bd3664d5e37b04717067c790e2971a0", "fields": {"nom_de_la_commune": "BRINON SUR SAULDRE", "libell_d_acheminement": "BRINON SUR SAULDRE", "code_postal": "18410", "coordonnees_gps": [47.5588785401, 2.35799352242], "code_commune_insee": "18037"}, "geometry": {"type": "Point", "coordinates": [2.35799352242, 47.5588785401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "973738553f1928968b73e3af764e568f34933ff6", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTLINARD", "libell_d_acheminement": "LA CHAPELLE MONTLINARD", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18049"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8af2d20514b3add10fec3966e1ae9dcd3b1274d7", "fields": {"nom_de_la_commune": "CHAROST", "libell_d_acheminement": "CHAROST", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18055"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42021c4ee47ef0e81c9abb7bd00708f16a4eae27", "fields": {"nom_de_la_commune": "CHASSY", "libell_d_acheminement": "CHASSY", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18056"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "744d64801f97e8457a74121a5049429a66d351ac", "fields": {"nom_de_la_commune": "CHATEAUMEILLANT", "libell_d_acheminement": "CHATEAUMEILLANT", "code_postal": "18370", "coordonnees_gps": [46.5167318179, 2.22634680986], "code_commune_insee": "18057"}, "geometry": {"type": "Point", "coordinates": [2.22634680986, 46.5167318179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2baf8c62109818660f41c10ec190bdde9c8ce64", "fields": {"nom_de_la_commune": "LE CHAUTAY", "libell_d_acheminement": "LE CHAUTAY", "code_postal": "18150", "coordonnees_gps": [46.9399476242, 2.96880212388], "code_commune_insee": "18062"}, "geometry": {"type": "Point", "coordinates": [2.96880212388, 46.9399476242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d16a285c8e780a4d2f3d71e8aee006872481c8e", "fields": {"nom_de_la_commune": "CONTRES", "libell_d_acheminement": "CONTRES", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18071"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824ba888a9285302996420355a190ae1f3af6e88", "fields": {"nom_de_la_commune": "CORNUSSE", "libell_d_acheminement": "CORNUSSE", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18072"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6791f408734f5799763939532dc146479ba51797", "fields": {"nom_de_la_commune": "CROISY", "libell_d_acheminement": "CROISY", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18080"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf816f7355491daf686daaa0b55988ba2a5226f", "fields": {"nom_de_la_commune": "EPINEUIL LE FLEURIEL", "libell_d_acheminement": "EPINEUIL LE FLEURIEL", "code_postal": "18360", "coordonnees_gps": [46.5847135273, 2.49730367441], "code_commune_insee": "18089"}, "geometry": {"type": "Point", "coordinates": [2.49730367441, 46.5847135273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff955d8f6dcc8f9e9bc842b65cf006a6d6ec4c1b", "fields": {"nom_de_la_commune": "GARDEFORT", "libell_d_acheminement": "GARDEFORT", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18098"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b697d848656085c4c6ee5e94b6d1b6224c5661cb", "fields": {"nom_de_la_commune": "GRACAY", "libell_d_acheminement": "GRACAY", "code_postal": "18310", "coordonnees_gps": [47.1584535888, 1.87917805896], "code_commune_insee": "18103"}, "geometry": {"type": "Point", "coordinates": [1.87917805896, 47.1584535888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82bd4532940074eaa0f4a091408aef3a44b0a2d9", "fields": {"nom_de_la_commune": "GROSSOUVRE", "libell_d_acheminement": "GROSSOUVRE", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18106"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2594966b921229f9aadea1faf2c5c2576e6f517", "fields": {"nom_de_la_commune": "IGNOL", "libell_d_acheminement": "IGNOL", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18113"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2858603e8ce5f3a3c02b9e662280f9d850e85f29", "fields": {"nom_de_la_commune": "JUSSY LE CHAUDRIER", "libell_d_acheminement": "JUSSY LE CHAUDRIER", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18120"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33e762897135432e1b9ea281f8f997aafef03cd6", "fields": {"nom_de_la_commune": "LIGNIERES", "libell_d_acheminement": "LIGNIERES", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18127"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b50d14ce78ce9696dff0e528d36fd0dba29a674f", "fields": {"nom_de_la_commune": "LOYE SUR ARNON", "libell_d_acheminement": "LOYE SUR ARNON", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18130"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3335679a3dbafe794247a2950b9d0544dea6f43", "fields": {"nom_de_la_commune": "LUGNY CHAMPAGNE", "libell_d_acheminement": "LUGNY CHAMPAGNE", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18132"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdba54cce67e0ad6e98c7c969157014a791ab48b", "fields": {"nom_de_la_commune": "MARCAIS", "libell_d_acheminement": "MARCAIS", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18136"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d13f14cca507b0e739afedf970980e001d0346", "fields": {"nom_de_la_commune": "MARSEILLES LES AUBIGNY", "libell_d_acheminement": "MARSEILLES LES AUBIGNY", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18139"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d62aee77cb53c25f1a25608c0739ca778890f91", "fields": {"nom_de_la_commune": "MEHUN SUR YEVRE", "libell_d_acheminement": "MEHUN SUR YEVRE", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18141"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66a894c6d35cffa8291aabad241a266f36420d81", "fields": {"nom_de_la_commune": "MENETOU COUTURE", "libell_d_acheminement": "MENETOU COUTURE", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18143"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18bec633a734b4468b9560e7103bda931b276d3", "fields": {"nom_de_la_commune": "MENETREOL SUR SAULDRE", "libell_d_acheminement": "MENETREOL SUR SAULDRE", "code_postal": "18700", "coordonnees_gps": [47.4727480114, 2.39384218551], "code_commune_insee": "18147"}, "geometry": {"type": "Point", "coordinates": [2.39384218551, 47.4727480114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41382ad2cc55f5badf06c0212c0756343a11a1a6", "fields": {"nom_de_la_commune": "MONTLOUIS", "libell_d_acheminement": "MONTLOUIS", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18152"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4575fe0a62106d97bc6e69992c3b442d0728be10", "fields": {"nom_de_la_commune": "MORTHOMIERS", "libell_d_acheminement": "MORTHOMIERS", "code_postal": "18570", "coordonnees_gps": [47.029164221, 2.32252100709], "code_commune_insee": "18157"}, "geometry": {"type": "Point", "coordinates": [2.32252100709, 47.029164221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cc2c3aceb66b58f858accc21c3c5e74e03de39f", "fields": {"nom_de_la_commune": "NANCAY", "libell_d_acheminement": "NANCAY", "code_postal": "18330", "coordonnees_gps": [47.3185099523, 2.20935359445], "code_commune_insee": "18159"}, "geometry": {"type": "Point", "coordinates": [2.20935359445, 47.3185099523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81a4e37ec58e82f915bcf01c3133274caa4cb361", "fields": {"nom_de_la_commune": "NEUVY DEUX CLOCHERS", "libell_d_acheminement": "NEUVY DEUX CLOCHERS", "code_postal": "18250", "coordonnees_gps": [47.2853063841, 2.61901537398], "code_commune_insee": "18163"}, "geometry": {"type": "Point", "coordinates": [2.61901537398, 47.2853063841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60346188bed078e90614aa908f6f8e0630558a1e", "fields": {"nom_de_la_commune": "LE NOYER", "libell_d_acheminement": "LE NOYER", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18168"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6090dfdcae2d480502a0e81a4185c5e5c02c3d52", "fields": {"nom_de_la_commune": "OUROUER LES BOURDELINS", "libell_d_acheminement": "OUROUER LES BOURDELINS", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18175"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2118a1206c5ae7bab917abdfb13baaf77b013dd2", "fields": {"code_postal": "10180", "code_commune_insee": "10349", "libell_d_acheminement": "ST LYE", "ligne_5": "BARBEREY AUX MOINES", "nom_de_la_commune": "ST LYE", "coordonnees_gps": [48.3538390298, 4.00019128511]}, "geometry": {"type": "Point", "coordinates": [4.00019128511, 48.3538390298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e187ee1139f78aff208435f0699d96adcbf3b4db", "fields": {"nom_de_la_commune": "ST LEGER SOUS BRIENNE", "libell_d_acheminement": "ST LEGER SOUS BRIENNE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10345"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d806cf52fbbb617cccf9dee2a8247e4fb2daebe", "fields": {"nom_de_la_commune": "ST BENOIST SUR VANNE", "libell_d_acheminement": "ST BENOIST SUR VANNE", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10335"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b693c5fcc0b919361d6e8f2f948599b830ed110c", "fields": {"nom_de_la_commune": "ST BENOIT SUR SEINE", "libell_d_acheminement": "ST BENOIT SUR SEINE", "code_postal": "10180", "coordonnees_gps": [48.3538390298, 4.00019128511], "code_commune_insee": "10336"}, "geometry": {"type": "Point", "coordinates": [4.00019128511, 48.3538390298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a5659f7f38c9c249a79d53098c59b1f8c472725", "fields": {"nom_de_la_commune": "SOULAINES DHUYS", "libell_d_acheminement": "SOULAINES DHUYS", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10372"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca5c88d464d32bc2a9886a2ff56116171da659b3", "fields": {"nom_de_la_commune": "ROUILLY ST LOUP", "libell_d_acheminement": "ROUILLY ST LOUP", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10329"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "544b443958eb108e82bd6e6a557e9cb5ee0b0a6e", "fields": {"nom_de_la_commune": "STE SAVINE", "libell_d_acheminement": "STE SAVINE", "code_postal": "10300", "coordonnees_gps": [48.3017985875, 3.94562270532], "code_commune_insee": "10362"}, "geometry": {"type": "Point", "coordinates": [3.94562270532, 48.3017985875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58b994a13ad02bc4cb8c0a7d3891093574c0e973", "fields": {"nom_de_la_commune": "ST FLAVY", "libell_d_acheminement": "ST FLAVY", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10339"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "892bf1040fac6cac132fac5034cd4e11a7cc12ad", "fields": {"nom_de_la_commune": "SAULCY", "libell_d_acheminement": "SAULCY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10366"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476476ed2e2d55e171b76c86fa0e400e4a92966e", "fields": {"nom_de_la_commune": "SPOY", "libell_d_acheminement": "SPOY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10374"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7142ec3f3acf22f6c3b5c4e3961e83cbbb548d1d", "fields": {"nom_de_la_commune": "LA VILLENEUVE AU CHENE", "libell_d_acheminement": "LA VILLENEUVE AU CHENE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10423"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348e42ababefc04a925846ec6c766db849fa0e29", "fields": {"nom_de_la_commune": "BELVIANES ET CAVIRAC", "libell_d_acheminement": "BELVIANES ET CAVIRAC", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11035"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83cc65bdd4da10a45901f016d7b8ef434e1f2bd7", "fields": {"nom_de_la_commune": "BELFORT SUR REBENTY", "libell_d_acheminement": "BELFORT SUR REBENTY", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11031"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d8b3fb0a10bff7b6d4122f2da826d0901f673c7", "fields": {"nom_de_la_commune": "BESSEDE DE SAULT", "libell_d_acheminement": "BESSEDE DE SAULT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11038"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d68b41fd0e93728a3d6a32577029b1ce8c65d4", "fields": {"nom_de_la_commune": "ARQUETTES EN VAL", "libell_d_acheminement": "ARQUETTES EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11016"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e73fec80db7a66bdc5162118f703a2e9063252", "fields": {"nom_de_la_commune": "AIGUES VIVES", "libell_d_acheminement": "AIGUES VIVES", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11001"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee258de84db9d7e0bead7eac3f230572d9be342b", "fields": {"nom_de_la_commune": "BELFLOU", "libell_d_acheminement": "BELFLOU", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11030"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c994f48e38cc3b2ee7d2df4dd63b0d0293356b7", "fields": {"nom_de_la_commune": "AURIAC", "libell_d_acheminement": "AURIAC", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11020"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18758ce466534f78fdf486fdbd0f194ed1ebbf1e", "fields": {"nom_de_la_commune": "ARAGON", "libell_d_acheminement": "ARAGON", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11011"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d155dae2d3b6d058faed52c6103a275d0c44ddae", "fields": {"nom_de_la_commune": "VOUE", "libell_d_acheminement": "VOUE", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10442"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8add32e701368ac69ecf710441cb95f224ff0aa", "fields": {"nom_de_la_commune": "VILLENEUVE AU CHEMIN", "libell_d_acheminement": "VILLENEUVE AU CHEMIN", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10422"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b782a2470ff60b61d8879164aa4df63707686bee", "fields": {"nom_de_la_commune": "VILLEMOIRON EN OTHE", "libell_d_acheminement": "VILLEMOIRON EN OTHE", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10417"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "120282e574a79c503291ffc0a4d651144e4afe83", "fields": {"nom_de_la_commune": "VALLENTIGNY", "libell_d_acheminement": "VALLENTIGNY", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10393"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49264ae613fb35ddc216c78ea4a7f10ab18a9f3", "fields": {"nom_de_la_commune": "VAUCHASSIS", "libell_d_acheminement": "VAUCHASSIS", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10396"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e755ee075ab76b14576b7081f76305da50244b", "fields": {"nom_de_la_commune": "VERRICOURT", "libell_d_acheminement": "VERRICOURT", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10405"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "161e829dad2dad0bcdf2ee0a8ee3f2dd64fe9681", "fields": {"nom_de_la_commune": "VALLIERES", "libell_d_acheminement": "VALLIERES", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10394"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca157cc4f5f4d049d495b562b70f444a298554ad", "fields": {"nom_de_la_commune": "VILLADIN", "libell_d_acheminement": "VILLADIN", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10410"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c483046a15d01bdf787aac3644401b991b44bb31", "fields": {"nom_de_la_commune": "VAUCOGNE", "libell_d_acheminement": "VAUCOGNE", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10398"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140dda7ddbea9ada61f8207cd36720512edd629f", "fields": {"nom_de_la_commune": "TRAINEL", "libell_d_acheminement": "TRAINEL", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10382"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a63513af6435558e882f9f5017b63fdbaca9c9d9", "fields": {"nom_de_la_commune": "TURGY", "libell_d_acheminement": "TURGY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10388"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805ee5fd283e5607de42935db7b5671130bb32f4", "fields": {"nom_de_la_commune": "OBERSTEINBACH", "libell_d_acheminement": "OBERSTEINBACH", "code_postal": "67510", "coordonnees_gps": [49.0227242639, 7.76839928059], "code_commune_insee": "67353"}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc00ca4bdcc6c8638df59230b3dddfc7d78be5c0", "fields": {"nom_de_la_commune": "OFFENDORF", "libell_d_acheminement": "OFFENDORF", "code_postal": "67850", "coordonnees_gps": [48.7239519575, 7.9191715322], "code_commune_insee": "67356"}, "geometry": {"type": "Point", "coordinates": [7.9191715322, 48.7239519575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd371326d185e73f7936b4b191797558c2e12a49", "fields": {"nom_de_la_commune": "OFFWILLER", "libell_d_acheminement": "OFFWILLER", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67358"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f96947427dff5d55d4ba24ba3a7fc5c9f7f61e5", "fields": {"nom_de_la_commune": "OHLUNGEN", "libell_d_acheminement": "OHLUNGEN", "code_postal": "67590", "coordonnees_gps": [48.811939028, 7.71713029127], "code_commune_insee": "67359"}, "geometry": {"type": "Point", "coordinates": [7.71713029127, 48.811939028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bdc3159001b93674b80e80bc6c381d139900d86", "fields": {"nom_de_la_commune": "OTTERSTHAL", "libell_d_acheminement": "OTTERSTHAL", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67366"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49c79e62352aba7b35eb8c6ab101744f9bf80d07", "fields": {"nom_de_la_commune": "ST MARTIN DE HINX", "libell_d_acheminement": "ST MARTIN DE HINX", "code_postal": "40390", "coordonnees_gps": [43.5480174741, -1.31735652925], "code_commune_insee": "40272"}, "geometry": {"type": "Point", "coordinates": [-1.31735652925, 43.5480174741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54ab6b3dc52aede27cceadf27e9e02d437a9be7", "fields": {"nom_de_la_commune": "ST MAURICE SUR ADOUR", "libell_d_acheminement": "ST MAURICE SUR ADOUR", "code_postal": "40270", "coordonnees_gps": [43.778303713, -0.356614490828], "code_commune_insee": "40275"}, "geometry": {"type": "Point", "coordinates": [-0.356614490828, 43.778303713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af39b1e626937b0c325893a1b383390e32cc06a9", "fields": {"nom_de_la_commune": "SANGUINET", "libell_d_acheminement": "SANGUINET", "code_postal": "40460", "coordonnees_gps": [44.4779199683, -1.06448797901], "code_commune_insee": "40287"}, "geometry": {"type": "Point", "coordinates": [-1.06448797901, 44.4779199683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2c04e9f4c1f70e767a22bb16efcaee5554e37b2", "fields": {"nom_de_la_commune": "SERRES GASTON", "libell_d_acheminement": "SERRES GASTON", "code_postal": "40700", "coordonnees_gps": [43.6284704452, -0.593663357831], "code_commune_insee": "40298"}, "geometry": {"type": "Point", "coordinates": [-0.593663357831, 43.6284704452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8bd284afbd3ea1163249f376009dfd00085b3a7", "fields": {"nom_de_la_commune": "SEYRESSE", "libell_d_acheminement": "SEYRESSE", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40300"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1cc14794eb845b4296a216236de06f5ae797aca", "fields": {"nom_de_la_commune": "SOORTS HOSSEGOR", "libell_d_acheminement": "SOORTS HOSSEGOR", "code_postal": "40150", "coordonnees_gps": [43.6643756035, -1.39445931936], "code_commune_insee": "40304"}, "geometry": {"type": "Point", "coordinates": [-1.39445931936, 43.6643756035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f629927a1a097cd8ee095daebbbc98747a8efc", "fields": {"nom_de_la_commune": "SORBETS", "libell_d_acheminement": "SORBETS", "code_postal": "40320", "coordonnees_gps": [43.6361966874, -0.398205389368], "code_commune_insee": "40305"}, "geometry": {"type": "Point", "coordinates": [-0.398205389368, 43.6361966874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d96398ae92f83655988b471bf385480692a2043d", "fields": {"nom_de_la_commune": "SORDE L ABBAYE", "libell_d_acheminement": "SORDE L ABBAYE", "code_postal": "40300", "coordonnees_gps": [43.5733522216, -1.11025729076], "code_commune_insee": "40306"}, "geometry": {"type": "Point", "coordinates": [-1.11025729076, 43.5733522216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2141ae858007a87af15e5e8c3680d86547d80388", "fields": {"nom_de_la_commune": "SORE", "libell_d_acheminement": "SORE", "code_postal": "40430", "coordonnees_gps": [44.2727815793, -0.544550156378], "code_commune_insee": "40307"}, "geometry": {"type": "Point", "coordinates": [-0.544550156378, 44.2727815793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ec47dc867565f09e61ddac53981dbe837de77a5", "fields": {"nom_de_la_commune": "SORT EN CHALOSSE", "libell_d_acheminement": "SORT EN CHALOSSE", "code_postal": "40180", "coordonnees_gps": [43.6807574822, -1.03205217033], "code_commune_insee": "40308"}, "geometry": {"type": "Point", "coordinates": [-1.03205217033, 43.6807574822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "330a5dad65ff60f90ec6e3fb129dc5ae0960a960", "fields": {"code_postal": "40560", "code_commune_insee": "40326", "libell_d_acheminement": "VIELLE ST GIRONS", "ligne_5": "ST GIRONS PLAGE", "nom_de_la_commune": "VIELLE ST GIRONS", "coordonnees_gps": [43.9396188358, -1.32531698317]}, "geometry": {"type": "Point", "coordinates": [-1.32531698317, 43.9396188358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62a0ba5476432b3fd422819c0a3f935a20109d67", "fields": {"nom_de_la_commune": "VIELLE SOUBIRAN", "libell_d_acheminement": "VIELLE SOUBIRAN", "code_postal": "40240", "coordonnees_gps": [44.039693105, -0.124217127832], "code_commune_insee": "40327"}, "geometry": {"type": "Point", "coordinates": [-0.124217127832, 44.039693105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66fa03ec25341fbddb7f727bdc55f2954dac0861", "fields": {"nom_de_la_commune": "AZE", "libell_d_acheminement": "AZE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41010"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e629ba1f78af1dac3a87f4e93aa1fd3a79312dde", "fields": {"nom_de_la_commune": "BAILLOU", "libell_d_acheminement": "BAILLOU", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41012"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beef60f283bf5ed801033c555052e4a49cbba0d8", "fields": {"nom_de_la_commune": "BINAS", "libell_d_acheminement": "BINAS", "code_postal": "41240", "coordonnees_gps": [47.883516552, 1.48678396082], "code_commune_insee": "41017"}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177158211dfc16c1c9475ba7b89f3da092ad9725", "fields": {"nom_de_la_commune": "BOUFFRY", "libell_d_acheminement": "BOUFFRY", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41022"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8628c202af2f898b0b3ea6f1bc4d1bd2ffcdf629", "fields": {"nom_de_la_commune": "BOURSAY", "libell_d_acheminement": "BOURSAY", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41024"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49f7942908ca322c70a63ecbeebe5a3a0c5edf7", "fields": {"nom_de_la_commune": "BRIOU", "libell_d_acheminement": "BRIOU", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41027"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62bef8a6062b1139e2c87d99fba20312b3b61aa5", "fields": {"nom_de_la_commune": "CANDE SUR BEUVRON", "libell_d_acheminement": "CANDE SUR BEUVRON", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41029"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551f9b24d1907e8138ca95fa57968d560ab3d456", "fields": {"nom_de_la_commune": "CHAMBON SUR CISSE", "libell_d_acheminement": "CHAMBON SUR CISSE", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41033"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465494b438bf6a644caff139e3986eccfdb35688", "fields": {"nom_de_la_commune": "LA CHAPELLE VICOMTESSE", "libell_d_acheminement": "LA CHAPELLE VICOMTESSE", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41041"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2f076fc8d6163f6f8f62c8c232132bfdc0f4a4", "fields": {"nom_de_la_commune": "LA CHAUSSEE ST VICTOR", "libell_d_acheminement": "LA CHAUSSEE ST VICTOR", "code_postal": "41260", "coordonnees_gps": [47.6111029317, 1.35770492094], "code_commune_insee": "41047"}, "geometry": {"type": "Point", "coordinates": [1.35770492094, 47.6111029317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "464d4921563b59b0e52997b46da6bacd5785be06", "fields": {"nom_de_la_commune": "CHAUVIGNY DU PERCHE", "libell_d_acheminement": "CHAUVIGNY DU PERCHE", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41048"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bac8510e03fa97914afc254f4910057ad7c3cfa", "fields": {"nom_de_la_commune": "CHEVERNY", "libell_d_acheminement": "CHEVERNY", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41050"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "117c7b9385c01db94fa162a414a8e14ec49b2f29", "fields": {"nom_de_la_commune": "COUDDES", "libell_d_acheminement": "COUDDES", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41062"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7567c55844cbe16dfa03deb835ea91cebae2a4ac", "fields": {"nom_de_la_commune": "COUR CHEVERNY", "libell_d_acheminement": "COUR CHEVERNY", "code_postal": "41700", "coordonnees_gps": [47.4202641099, 1.43957807464], "code_commune_insee": "41067"}, "geometry": {"type": "Point", "coordinates": [1.43957807464, 47.4202641099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc9ca9d7558ce5fcf0e0fb9fd05733a715b2201", "fields": {"nom_de_la_commune": "COURMEMIN", "libell_d_acheminement": "COURMEMIN", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41068"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2731e361cab3b7151d97897c449f75753f68ee8f", "fields": {"nom_de_la_commune": "CROUY SUR COSSON", "libell_d_acheminement": "CROUY SUR COSSON", "code_postal": "41220", "coordonnees_gps": [47.6522187818, 1.66627730575], "code_commune_insee": "41071"}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0f89e21d41469c17e76f2363d8c7e5df4343ebc", "fields": {"nom_de_la_commune": "DANZE", "libell_d_acheminement": "DANZE", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41073"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fe209e6fbceefcadc0d7f6dc0463be838ce93d4", "fields": {"nom_de_la_commune": "DROUE", "libell_d_acheminement": "DROUE", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41075"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28fc2c2ebd57798da38ef0254c63a603e5e5a9e9", "fields": {"nom_de_la_commune": "FAYE", "libell_d_acheminement": "FAYE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41081"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845bd60b6cc18c0818f205003408d943bf46244f", "fields": {"nom_de_la_commune": "LA FERTE ST CYR", "libell_d_acheminement": "LA FERTE ST CYR", "code_postal": "41220", "coordonnees_gps": [47.6522187818, 1.66627730575], "code_commune_insee": "41085"}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37dedba94601db1669b92d1e6befd55b68a0e5a6", "fields": {"nom_de_la_commune": "FORTAN", "libell_d_acheminement": "FORTAN", "code_postal": "41360", "coordonnees_gps": [47.8537508655, 0.866594114079], "code_commune_insee": "41090"}, "geometry": {"type": "Point", "coordinates": [0.866594114079, 47.8537508655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0ea1f70bf2a1cef3d93baa582b61433447793f9", "fields": {"nom_de_la_commune": "FRETEVAL", "libell_d_acheminement": "FRETEVAL", "code_postal": "41160", "coordonnees_gps": [47.9130390568, 1.2078402544], "code_commune_insee": "41095"}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f563a2322605218ee14ddc59396756875aacae0", "fields": {"nom_de_la_commune": "LE GAULT PERCHE", "libell_d_acheminement": "LE GAULT PERCHE", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41096"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a635ba40c8168bc68dfaaa048ce5fc995cbcaa7a", "fields": {"nom_de_la_commune": "HOUSSAY", "libell_d_acheminement": "HOUSSAY", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41102"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f9865a54107bbf2c327c2195df2a1a6a78725d", "fields": {"nom_de_la_commune": "JOSNES", "libell_d_acheminement": "JOSNES", "code_postal": "41370", "coordonnees_gps": [47.8058301637, 1.43534986188], "code_commune_insee": "41105"}, "geometry": {"type": "Point", "coordinates": [1.43534986188, 47.8058301637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb5cadf04ec80afd6eba62d703584bca32d41de", "fields": {"nom_de_la_commune": "LANGON", "libell_d_acheminement": "LANGON", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41110"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef3ca242df824d82f4f72896de1dd1be363dda7", "fields": {"nom_de_la_commune": "LASSAY SUR CROISNE", "libell_d_acheminement": "LASSAY SUR CROISNE", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41112"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fa34ce9c50e88d718791ac3d3166ed9ccd8a2f6", "fields": {"nom_de_la_commune": "LISLE", "libell_d_acheminement": "LISLE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41116"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4be90284b662f7abd6f5bc2ff6fa53aace84c4cb", "fields": {"nom_de_la_commune": "MARAY", "libell_d_acheminement": "MARAY", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41122"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21ca69829bbbf910d69223d4470d8a4fb21fc6fb", "fields": {"nom_de_la_commune": "MARCILLY EN BEAUCE", "libell_d_acheminement": "MARCILLY EN BEAUCE", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41124"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64592e08a0970b67f7640163d3091dda607aa88", "fields": {"nom_de_la_commune": "MEHERS", "libell_d_acheminement": "MEHERS", "code_postal": "41140", "coordonnees_gps": [47.3123365965, 1.39525288942], "code_commune_insee": "41132"}, "geometry": {"type": "Point", "coordinates": [1.39525288942, 47.3123365965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a8b16aa1888244f2355b5ed7b7df81475641bf", "fields": {"nom_de_la_commune": "MONTEAUX", "libell_d_acheminement": "MONTEAUX", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41144"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbcf65643e864a2659595e7f47e7ebb5b683e51b", "fields": {"code_postal": "41800", "code_commune_insee": "41149", "libell_d_acheminement": "MONTOIRE SUR LE LOIR", "ligne_5": "ST QUENTIN LES TROO", "nom_de_la_commune": "MONTOIRE SUR LE LOIR", "coordonnees_gps": [47.7461003393, 0.784594265215]}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab84cf534393f798a96820973edd49a354c91d28", "fields": {"nom_de_la_commune": "MONT PRES CHAMBORD", "libell_d_acheminement": "MONT PRES CHAMBORD", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41150"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65fc4c70d2a2060e10d79a5a6a5f6633d59ca132", "fields": {"nom_de_la_commune": "MONTRICHARD VAL DE CHER", "libell_d_acheminement": "MONTRICHARD VAL DE CHER", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41151"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1345e4528c60ce3e6ddf4d8338e71e20f93b45c0", "fields": {"nom_de_la_commune": "MONTRIEUX EN SOLOGNE", "libell_d_acheminement": "MONTRIEUX EN SOLOGNE", "code_postal": "41210", "coordonnees_gps": [47.5196740684, 1.85287131674], "code_commune_insee": "41152"}, "geometry": {"type": "Point", "coordinates": [1.85287131674, 47.5196740684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "213fe7f2f5b92a5ae21df7ed4ded161dea437860", "fields": {"nom_de_la_commune": "MONTROUVEAU", "libell_d_acheminement": "MONTROUVEAU", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41153"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac5ce0f489fe76ab88de23dd453f0956ee8b87e", "fields": {"nom_de_la_commune": "MUIDES SUR LOIRE", "libell_d_acheminement": "MUIDES SUR LOIRE", "code_postal": "41500", "coordonnees_gps": [47.71251709, 1.45455660372], "code_commune_insee": "41155"}, "geometry": {"type": "Point", "coordinates": [1.45455660372, 47.71251709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b8f635e9b3d3b6c2391276be9b18ac55d9cd883", "fields": {"nom_de_la_commune": "NOYERS SUR CHER", "libell_d_acheminement": "NOYERS SUR CHER", "code_postal": "41140", "coordonnees_gps": [47.3123365965, 1.39525288942], "code_commune_insee": "41164"}, "geometry": {"type": "Point", "coordinates": [1.39525288942, 47.3123365965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7d4023412b859e3c6ce7b14f93aac9dca31a8b2", "fields": {"nom_de_la_commune": "OIGNY", "libell_d_acheminement": "OIGNY", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41165"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77c9e327f1256fa6303a0eddfd277a67103cfb4b", "fields": {"nom_de_la_commune": "OUCHAMPS", "libell_d_acheminement": "OUCHAMPS", "code_postal": "41120", "coordonnees_gps": [47.4832533202, 1.32493018279], "code_commune_insee": "41170"}, "geometry": {"type": "Point", "coordinates": [1.32493018279, 47.4832533202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b55b54e67b0229b36ac236215685750cc872b1f", "fields": {"code_postal": "41160", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "SEMERVILLE", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.9130390568, 1.2078402544]}, "geometry": {"type": "Point", "coordinates": [1.2078402544, 47.9130390568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee81de051eee9bab751546f733d72d06977220f", "fields": {"code_postal": "41240", "code_commune_insee": "41173", "libell_d_acheminement": "BEAUCE LA ROMAINE", "ligne_5": "MEMBROLLES", "nom_de_la_commune": "BEAUCE LA ROMAINE", "coordonnees_gps": [47.883516552, 1.48678396082]}, "geometry": {"type": "Point", "coordinates": [1.48678396082, 47.883516552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d26195f297372c3148bd912cedfe86fb761d08fe", "fields": {"nom_de_la_commune": "PEZOU", "libell_d_acheminement": "PEZOU", "code_postal": "41100", "coordonnees_gps": [47.7958875456, 1.08517010385], "code_commune_insee": "41175"}, "geometry": {"type": "Point", "coordinates": [1.08517010385, 47.7958875456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1cc585c68d864c8b6e275837d3952fef9a0e501", "fields": {"nom_de_la_commune": "LE POISLAY", "libell_d_acheminement": "LE POISLAY", "code_postal": "41270", "coordonnees_gps": [48.017522344, 1.05846733873], "code_commune_insee": "41179"}, "geometry": {"type": "Point", "coordinates": [1.05846733873, 48.017522344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f885ba8cffcb9194b775bee586d0817edcaa2a", "fields": {"nom_de_la_commune": "PRAY", "libell_d_acheminement": "PRAY", "code_postal": "41190", "coordonnees_gps": [47.6158784323, 1.13032503262], "code_commune_insee": "41182"}, "geometry": {"type": "Point", "coordinates": [1.13032503262, 47.6158784323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07db3b9e6c1d96af17d04aa8fb0a7fd55241d8ec", "fields": {"nom_de_la_commune": "RHODON", "libell_d_acheminement": "RHODON", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41188"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e957e100f764db29aec7e24c1504be33807e3b46", "fields": {"nom_de_la_commune": "RILLY SUR LOIRE", "libell_d_acheminement": "RILLY SUR LOIRE", "code_postal": "41150", "coordonnees_gps": [47.5039093884, 1.16734391368], "code_commune_insee": "41189"}, "geometry": {"type": "Point", "coordinates": [1.16734391368, 47.5039093884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67d568de3d421892c167e19c28e775d40cabb582", "fields": {"nom_de_la_commune": "ROMORANTIN LANTHENAY", "libell_d_acheminement": "ROMORANTIN LANTHENAY", "code_postal": "41200", "coordonnees_gps": [47.3811514911, 1.76608679793], "code_commune_insee": "41194"}, "geometry": {"type": "Point", "coordinates": [1.76608679793, 47.3811514911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebf549e3538f4efa702fe1845950517217f58ab8", "fields": {"nom_de_la_commune": "ST GOURGON", "libell_d_acheminement": "ST GOURGON", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41213"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2bd9a45c9159162b4cc3429c9520758560de79", "fields": {"nom_de_la_commune": "ST JACQUES DES GUERETS", "libell_d_acheminement": "ST JACQUES DES GUERETS", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41215"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b401464ece37e45b3e4f723ef8f6cd0b6f88a6b", "fields": {"nom_de_la_commune": "ST JULIEN SUR CHER", "libell_d_acheminement": "ST JULIEN SUR CHER", "code_postal": "41320", "coordonnees_gps": [47.2792706552, 1.85475144956], "code_commune_insee": "41218"}, "geometry": {"type": "Point", "coordinates": [1.85475144956, 47.2792706552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "923dcc81f94d11b1ef0e498d283fd6156ad3d2a9", "fields": {"nom_de_la_commune": "ST MARC DU COR", "libell_d_acheminement": "ST MARC DU COR", "code_postal": "41170", "coordonnees_gps": [48.001846481, 0.898958173077], "code_commune_insee": "41224"}, "geometry": {"type": "Point", "coordinates": [0.898958173077, 48.001846481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534dd7296e5892442eb30707eb9f6b827479bfc2", "fields": {"nom_de_la_commune": "ST ROMAIN SUR CHER", "libell_d_acheminement": "ST ROMAIN SUR CHER", "code_postal": "41140", "coordonnees_gps": [47.3123365965, 1.39525288942], "code_commune_insee": "41229"}, "geometry": {"type": "Point", "coordinates": [1.39525288942, 47.3123365965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fca2104fb7b9ac2d6b3c63579faf486a2d5df136", "fields": {"nom_de_la_commune": "ST VIATRE", "libell_d_acheminement": "ST VIATRE", "code_postal": "41210", "coordonnees_gps": [47.5196740684, 1.85287131674], "code_commune_insee": "41231"}, "geometry": {"type": "Point", "coordinates": [1.85287131674, 47.5196740684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efaf4c8f6aaae16b4ba3836d97e0db1832874602", "fields": {"nom_de_la_commune": "SELLES ST DENIS", "libell_d_acheminement": "SELLES ST DENIS", "code_postal": "41300", "coordonnees_gps": [47.412001138, 2.06132670992], "code_commune_insee": "41241"}, "geometry": {"type": "Point", "coordinates": [2.06132670992, 47.412001138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6c55e8a62edf35661b9e8f7843d7bde2306087", "fields": {"nom_de_la_commune": "SELLES SUR CHER", "libell_d_acheminement": "SELLES SUR CHER", "code_postal": "41130", "coordonnees_gps": [47.2869148603, 1.56604401374], "code_commune_insee": "41242"}, "geometry": {"type": "Point", "coordinates": [1.56604401374, 47.2869148603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "301e470784f183dded664c2b7c7657989fbd23f8", "fields": {"nom_de_la_commune": "SOUGE", "libell_d_acheminement": "SOUGE", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41250"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8ca1177e10115da5972b38466d943cff99cadd6", "fields": {"nom_de_la_commune": "SOUVIGNY EN SOLOGNE", "libell_d_acheminement": "SOUVIGNY EN SOLOGNE", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41251"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33d461d2b207b1266cadb4714322d15c80c8817b", "fields": {"nom_de_la_commune": "THOURY", "libell_d_acheminement": "THOURY", "code_postal": "41220", "coordonnees_gps": [47.6522187818, 1.66627730575], "code_commune_insee": "41260"}, "geometry": {"type": "Point", "coordinates": [1.66627730575, 47.6522187818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a56e9a984fbab284c89b69728a7861c289e1a6a", "fields": {"nom_de_la_commune": "TOUR EN SOLOGNE", "libell_d_acheminement": "TOUR EN SOLOGNE", "code_postal": "41250", "coordonnees_gps": [47.5556380546, 1.54040646396], "code_commune_insee": "41262"}, "geometry": {"type": "Point", "coordinates": [1.54040646396, 47.5556380546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3187516ccae220e974bc6691558067b8c3aa62eb", "fields": {"nom_de_la_commune": "VALLIERES LES GRANDES", "libell_d_acheminement": "VALLIERES LES GRANDES", "code_postal": "41400", "coordonnees_gps": [47.3654199665, 1.20385620984], "code_commune_insee": "41267"}, "geometry": {"type": "Point", "coordinates": [1.20385620984, 47.3654199665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5a952a102a8bcd4b7612404b083748ef743a5d", "fields": {"nom_de_la_commune": "VEILLEINS", "libell_d_acheminement": "VEILLEINS", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41268"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e332c985a229360174caae8932f540a3df7d038", "fields": {"nom_de_la_commune": "VERNOU EN SOLOGNE", "libell_d_acheminement": "VERNOU EN SOLOGNE", "code_postal": "41230", "coordonnees_gps": [47.4244466652, 1.62575869616], "code_commune_insee": "41271"}, "geometry": {"type": "Point", "coordinates": [1.62575869616, 47.4244466652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e06f2ffacce202bffbfbcf11efb34644835ff6", "fields": {"code_postal": "41290", "code_commune_insee": "41273", "libell_d_acheminement": "VIEVY LE RAYE", "ligne_5": "LA BOSSE", "nom_de_la_commune": "VIEVY LE RAYE", "coordonnees_gps": [47.8184890364, 1.28159581607]}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0a3691d120a78209ce3f995757556df8372d5b", "fields": {"nom_de_la_commune": "VILLECHAUVE", "libell_d_acheminement": "VILLECHAUVE", "code_postal": "41310", "coordonnees_gps": [47.6757270019, 0.971700529212], "code_commune_insee": "41278"}, "geometry": {"type": "Point", "coordinates": [0.971700529212, 47.6757270019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54fc35e70fb8b4855983db55312b634437cae71", "fields": {"nom_de_la_commune": "VILLEDIEU LE CHATEAU", "libell_d_acheminement": "VILLEDIEU LE CHATEAU", "code_postal": "41800", "coordonnees_gps": [47.7461003393, 0.784594265215], "code_commune_insee": "41279"}, "geometry": {"type": "Point", "coordinates": [0.784594265215, 47.7461003393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b1f79d5d2a04747c73af42dbd018cf3e01d7a14", "fields": {"nom_de_la_commune": "VILLEFRANCOEUR", "libell_d_acheminement": "VILLEFRANCOEUR", "code_postal": "41330", "coordonnees_gps": [47.6799237115, 1.2614576403], "code_commune_insee": "41281"}, "geometry": {"type": "Point", "coordinates": [1.2614576403, 47.6799237115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d97af15412759f79134b924786c550377313485d", "fields": {"nom_de_la_commune": "VILLENEUVE FROUVILLE", "libell_d_acheminement": "VILLENEUVE FROUVILLE", "code_postal": "41290", "coordonnees_gps": [47.8184890364, 1.28159581607], "code_commune_insee": "41284"}, "geometry": {"type": "Point", "coordinates": [1.28159581607, 47.8184890364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd23cf42586ee3de01c34cb5b3be539bdcd94df8", "fields": {"nom_de_la_commune": "VILLERBON", "libell_d_acheminement": "VILLERBON", "code_postal": "41000", "coordonnees_gps": [47.612940364, 1.32071876619], "code_commune_insee": "41288"}, "geometry": {"type": "Point", "coordinates": [1.32071876619, 47.612940364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c3e1f9503701f80f159df33e3a386b00a5ed84", "fields": {"nom_de_la_commune": "VOUZON", "libell_d_acheminement": "VOUZON", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41296"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f049a33518e6b17f0921e130f47b01c4ec67ef33", "fields": {"nom_de_la_commune": "YVOY LE MARRON", "libell_d_acheminement": "YVOY LE MARRON", "code_postal": "41600", "coordonnees_gps": [47.6083531496, 2.01315963831], "code_commune_insee": "41297"}, "geometry": {"type": "Point", "coordinates": [2.01315963831, 47.6083531496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f036fecd45439ce440c004c086dd2b81437beb57", "fields": {"nom_de_la_commune": "ARCINGES", "libell_d_acheminement": "ARCINGES", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42007"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e392edba96b447a00ec98a537d84097801e0005a", "fields": {"nom_de_la_commune": "BOEN SUR LIGNON", "libell_d_acheminement": "BOEN SUR LIGNON", "code_postal": "42130", "coordonnees_gps": [45.7452665398, 4.00810157042], "code_commune_insee": "42019"}, "geometry": {"type": "Point", "coordinates": [4.00810157042, 45.7452665398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5574e3d22c6f3cf34077c6e7b9950af39b15f3b6", "fields": {"nom_de_la_commune": "BOISSET LES MONTROND", "libell_d_acheminement": "BOISSET LES MONTROND", "code_postal": "42210", "coordonnees_gps": [45.6418287448, 4.25055312034], "code_commune_insee": "42020"}, "geometry": {"type": "Point", "coordinates": [4.25055312034, 45.6418287448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63398739d655c6244202e47f36eea9cddb81fce", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "42510", "coordonnees_gps": [45.8327642613, 4.18646349405], "code_commune_insee": "42029"}, "geometry": {"type": "Point", "coordinates": [4.18646349405, 45.8327642613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793d431583985d41f4469a928cde9da652f98a82", "fields": {"nom_de_la_commune": "CHAGNON", "libell_d_acheminement": "CHAGNON", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42036"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "943b5f95b47a279c4b240ab83ec07c27d7c3c2e9", "fields": {"nom_de_la_commune": "CHALAIN D UZORE", "libell_d_acheminement": "CHALAIN D UZORE", "code_postal": "42600", "coordonnees_gps": [45.6194255891, 4.06119351589], "code_commune_insee": "42037"}, "geometry": {"type": "Point", "coordinates": [4.06119351589, 45.6194255891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e75cd532459c409438490b5f4a03d911e79c9cb1", "fields": {"nom_de_la_commune": "CHAMPOLY", "libell_d_acheminement": "CHAMPOLY", "code_postal": "42430", "coordonnees_gps": [45.9093143858, 3.85016888854], "code_commune_insee": "42047"}, "geometry": {"type": "Point", "coordinates": [3.85016888854, 45.9093143858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6cbfc5a7bc674085cfd0a2f7f6205fb9eff265c", "fields": {"nom_de_la_commune": "CHANDON", "libell_d_acheminement": "CHANDON", "code_postal": "42190", "coordonnees_gps": [46.1512797161, 4.16150779651], "code_commune_insee": "42048"}, "geometry": {"type": "Point", "coordinates": [4.16150779651, 46.1512797161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7a48e416d3f8bf874f2b188b7e0467727021f1", "fields": {"nom_de_la_commune": "CHANGY", "libell_d_acheminement": "CHANGY", "code_postal": "42310", "coordonnees_gps": [46.1822910916, 3.87177141543], "code_commune_insee": "42049"}, "geometry": {"type": "Point", "coordinates": [3.87177141543, 46.1822910916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fff0c18d14d93d31244c9fe66ea6b15c87f8ed71", "fields": {"nom_de_la_commune": "LA CHAPELLE EN LAFAYE", "libell_d_acheminement": "LA CHAPELLE EN LAFAYE", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42050"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "391aef0cd26569ca6caaca5d261ef26f097c6ace", "fields": {"nom_de_la_commune": "CHATEAUNEUF", "libell_d_acheminement": "CHATEAUNEUF", "code_postal": "42800", "coordonnees_gps": [45.5337245551, 4.60104990812], "code_commune_insee": "42053"}, "geometry": {"type": "Point", "coordinates": [4.60104990812, 45.5337245551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "158709c02cb730bdaa9b94a9d6d5aea66eeae8bf", "fields": {"nom_de_la_commune": "CHAVANAY", "libell_d_acheminement": "CHAVANAY", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42056"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21071efdb471404998dc0c051d73e7b08fdc640d", "fields": {"nom_de_la_commune": "CHENEREILLES", "libell_d_acheminement": "CHENEREILLES", "code_postal": "42560", "coordonnees_gps": [45.5094498806, 4.04337401381], "code_commune_insee": "42060"}, "geometry": {"type": "Point", "coordinates": [4.04337401381, 45.5094498806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a05512e3ae86942bdcd88db9cba34301e2cb292", "fields": {"nom_de_la_commune": "CHIRASSIMONT", "libell_d_acheminement": "CHIRASSIMONT", "code_postal": "42114", "coordonnees_gps": [45.9115558204, 4.30459179806], "code_commune_insee": "42063"}, "geometry": {"type": "Point", "coordinates": [4.30459179806, 45.9115558204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4f1d2a0dd9bab8700f87d28abec3c02ebdc39c", "fields": {"nom_de_la_commune": "CHUYER", "libell_d_acheminement": "CHUYER", "code_postal": "42410", "coordonnees_gps": [45.4391960576, 4.69147346638], "code_commune_insee": "42064"}, "geometry": {"type": "Point", "coordinates": [4.69147346638, 45.4391960576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edce94a4cdea2df759f6148b3d678cd122e32508", "fields": {"nom_de_la_commune": "COMMELLE VERNAY", "libell_d_acheminement": "COMMELLE VERNAY", "code_postal": "42120", "coordonnees_gps": [46.0189816241, 4.12010356973], "code_commune_insee": "42069"}, "geometry": {"type": "Point", "coordinates": [4.12010356973, 46.0189816241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b2c1f21617722571aab7c3b393a33078b5d08cb", "fields": {"nom_de_la_commune": "LA GREVE SUR MIGNON", "libell_d_acheminement": "LA GREVE SUR MIGNON", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17182"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "010dce4e079a31f306b1fc20019c5d09b96472e7", "fields": {"nom_de_la_commune": "GREZAC", "libell_d_acheminement": "GREZAC", "code_postal": "17120", "coordonnees_gps": [45.5623777961, -0.825286762085], "code_commune_insee": "17183"}, "geometry": {"type": "Point", "coordinates": [-0.825286762085, 45.5623777961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e97d1233cfd752325053344470e94a67f9f373", "fields": {"nom_de_la_commune": "LE GUA", "libell_d_acheminement": "LE GUA", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17185"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9043478e728d5ce774401705e5f1dae232c3aa16", "fields": {"nom_de_la_commune": "L HOUMEAU", "libell_d_acheminement": "L HOUMEAU", "code_postal": "17137", "coordonnees_gps": [46.2222024122, -1.1457029757], "code_commune_insee": "17190"}, "geometry": {"type": "Point", "coordinates": [-1.1457029757, 46.2222024122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a974aaeff752b38f20f33285119097c7abf4491", "fields": {"nom_de_la_commune": "LA JARD", "libell_d_acheminement": "LA JARD", "code_postal": "17460", "coordonnees_gps": [45.6644254171, -0.66083977724], "code_commune_insee": "17191"}, "geometry": {"type": "Point", "coordinates": [-0.66083977724, 45.6644254171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19057b51c51a0cbb99bd3b6b3f163477b8a7cb21", "fields": {"nom_de_la_commune": "JARNAC CHAMPAGNE", "libell_d_acheminement": "JARNAC CHAMPAGNE", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17192"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dccd5ec30e90c7c4aa2e7ff0ac47168c12b973ef", "fields": {"nom_de_la_commune": "JUSSAS", "libell_d_acheminement": "JUSSAS", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17199"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "035d27495e79c3f71487d884e582e3d6e8a0a6bf", "fields": {"nom_de_la_commune": "LANDES", "libell_d_acheminement": "LANDES", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17202"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b5a4241576393fa2c5c767887491a663eec1528", "fields": {"nom_de_la_commune": "LUCHAT", "libell_d_acheminement": "LUCHAT", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17214"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca2245d559adc881f8a9a0029a734dcb3e5e3dc", "fields": {"nom_de_la_commune": "MACQUEVILLE", "libell_d_acheminement": "MACQUEVILLE", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17217"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbc9e63fcc5d468b66eafccbecc3c82110910d91", "fields": {"nom_de_la_commune": "MAZEROLLES", "libell_d_acheminement": "MAZEROLLES", "code_postal": "17800", "coordonnees_gps": [45.5958670812, -0.50452675731], "code_commune_insee": "17227"}, "geometry": {"type": "Point", "coordinates": [-0.50452675731, 45.5958670812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30820adbbf792d23b95c08b7d314d4180c04c779", "fields": {"nom_de_la_commune": "MESSAC", "libell_d_acheminement": "MESSAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17231"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fee6960efb61e6baf7a0a7a69712d101c76ca36", "fields": {"nom_de_la_commune": "MONTROY", "libell_d_acheminement": "MONTROY", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17245"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42c2a6f13b3366b21b81375f7a2ad78f82e34ff", "fields": {"nom_de_la_commune": "NEULLES", "libell_d_acheminement": "NEULLES", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17259"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42651ec188f9aae70fbe2c4e3ac4ac501b0f334e", "fields": {"nom_de_la_commune": "NUAILLE SUR BOUTONNE", "libell_d_acheminement": "NUAILLE SUR BOUTONNE", "code_postal": "17470", "coordonnees_gps": [46.0200499858, -0.337018455128], "code_commune_insee": "17268"}, "geometry": {"type": "Point", "coordinates": [-0.337018455128, 46.0200499858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9a77e8a603b890c5311c378ffebe43b3847ef62", "fields": {"nom_de_la_commune": "LE PIN", "libell_d_acheminement": "LE PIN", "code_postal": "17210", "coordonnees_gps": [45.2420879746, -0.290555313781], "code_commune_insee": "17276"}, "geometry": {"type": "Point", "coordinates": [-0.290555313781, 45.2420879746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe768a8807b13308a3bc2846fb632971ed409d3d", "fields": {"nom_de_la_commune": "PLASSAC", "libell_d_acheminement": "PLASSAC", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17279"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a005ac3b7cbabac2a0ed9ec89d54aad2ee1161f", "fields": {"code_postal": "17130", "code_commune_insee": "17282", "libell_d_acheminement": "POMMIERS MOULONS", "ligne_5": "MOULONS", "nom_de_la_commune": "POMMIERS MOULONS", "coordonnees_gps": [45.3143331813, -0.405621594016]}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "042005bec47e69e54481a4bd0bb03619b6b1b9e6", "fields": {"nom_de_la_commune": "PONT L ABBE D ARNOULT", "libell_d_acheminement": "PONT L ABBE D ARNOULT", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17284"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cafe93abaca9bff537035cccb4eafe39048139f", "fields": {"nom_de_la_commune": "REAUX SUR TREFLE", "libell_d_acheminement": "REAUX SUR TREFLE", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17295"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5df5a0a2433bf5f56a5bd9728d06426474d5be5", "fields": {"code_postal": "17500", "code_commune_insee": "17295", "libell_d_acheminement": "REAUX SUR TREFLE", "ligne_5": "MOINGS", "nom_de_la_commune": "REAUX SUR TREFLE", "coordonnees_gps": [45.4259589472, -0.405217175017]}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da7c9eebf47e5d09868f76de090b389f689636a5", "fields": {"nom_de_la_commune": "LA RONDE", "libell_d_acheminement": "LA RONDE", "code_postal": "17170", "coordonnees_gps": [46.2523332894, -0.811945004128], "code_commune_insee": "17303"}, "geometry": {"type": "Point", "coordinates": [-0.811945004128, 46.2523332894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53fbfbc88c1397ac09ba963bfbb807efc68c705f", "fields": {"nom_de_la_commune": "ROUFFIGNAC", "libell_d_acheminement": "ROUFFIGNAC", "code_postal": "17130", "coordonnees_gps": [45.3143331813, -0.405621594016], "code_commune_insee": "17305"}, "geometry": {"type": "Point", "coordinates": [-0.405621594016, 45.3143331813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d7a7aa3422a1dbe1bac91c918c8c11120dce6b", "fields": {"nom_de_la_commune": "ST AIGULIN", "libell_d_acheminement": "ST AIGULIN", "code_postal": "17360", "coordonnees_gps": [45.1692213805, -0.0733315684265], "code_commune_insee": "17309"}, "geometry": {"type": "Point", "coordinates": [-0.0733315684265, 45.1692213805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7d02041c23a47e94df82099b33e6d1832456ee", "fields": {"nom_de_la_commune": "ST BONNET SUR GIRONDE", "libell_d_acheminement": "ST BONNET SUR GIRONDE", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17312"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98fbf16cadbda956e228ea54d91fa50c49781e8b", "fields": {"nom_de_la_commune": "ST CESAIRE", "libell_d_acheminement": "ST CESAIRE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17314"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1d27ae98ae49c7dc3257b4265b2da61a952fad3", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17315"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5378652b8b7372b64cb67c4578000713c333856", "fields": {"nom_de_la_commune": "ST CIERS DU TAILLON", "libell_d_acheminement": "ST CIERS DU TAILLON", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17317"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3ee8faa64d8ada69e04b1f7d5ce684e4aba8181", "fields": {"nom_de_la_commune": "ST DIZANT DU GUA", "libell_d_acheminement": "ST DIZANT DU GUA", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17325"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f72351b5a163285d411532627b264c6e47fae6e", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17330"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a35b181759fe6e87f758280642cf2bc4cc9fdf59", "fields": {"code_postal": "17240", "code_commune_insee": "17332", "libell_d_acheminement": "ST GEORGES ANTIGNAC", "ligne_5": "ANTIGNAC", "nom_de_la_commune": "ST GEORGES ANTIGNAC", "coordonnees_gps": [45.4692153488, -0.625972195864]}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a997fbdc3d41a7aa5673541f8b35c6b7a1ba41e7", "fields": {"code_postal": "17190", "code_commune_insee": "17337", "libell_d_acheminement": "ST GEORGES D OLERON", "ligne_5": "DOMINO", "nom_de_la_commune": "ST GEORGES D OLERON", "coordonnees_gps": [45.9760434465, -1.32419340484]}, "geometry": {"type": "Point", "coordinates": [-1.32419340484, 45.9760434465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9cf51467f494b1ef7abd50079656a5e4a5846c", "fields": {"nom_de_la_commune": "ST GERMAIN DE MARENCENNES", "libell_d_acheminement": "ST GERMAIN DE MARENCENNES", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17340"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c377eef7732130936af7dc72944dd17b2068a68", "fields": {"nom_de_la_commune": "ST HIPPOLYTE", "libell_d_acheminement": "ST HIPPOLYTE", "code_postal": "17430", "coordonnees_gps": [45.9651781323, -0.834725041832], "code_commune_insee": "17346"}, "geometry": {"type": "Point", "coordinates": [-0.834725041832, 45.9651781323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f56ed11590980b5add5aa5f12f5f7472577bc10", "fields": {"nom_de_la_commune": "ST JEAN D ANGLE", "libell_d_acheminement": "ST JEAN D ANGLE", "code_postal": "17620", "coordonnees_gps": [45.8464645946, -0.95771650444], "code_commune_insee": "17348"}, "geometry": {"type": "Point", "coordinates": [-0.95771650444, 45.8464645946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "892f5a7feda694581965fcfa1c8355f08d7cf6e0", "fields": {"nom_de_la_commune": "ST JULIEN DE L ESCAP", "libell_d_acheminement": "ST JULIEN DE L ESCAP", "code_postal": "17400", "coordonnees_gps": [45.947220271, -0.4881385622], "code_commune_insee": "17350"}, "geometry": {"type": "Point", "coordinates": [-0.4881385622, 45.947220271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a9474c01ebfc3b36a3cd6521f3b45f1251c2a8", "fields": {"nom_de_la_commune": "STE LHEURINE", "libell_d_acheminement": "STE LHEURINE", "code_postal": "17520", "coordonnees_gps": [45.5124153157, -0.33659310314], "code_commune_insee": "17355"}, "geometry": {"type": "Point", "coordinates": [-0.33659310314, 45.5124153157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e030c67d888c39703327620bb48bf7904eba3ca", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "17380", "coordonnees_gps": [45.9787686302, -0.680153672786], "code_commune_insee": "17356"}, "geometry": {"type": "Point", "coordinates": [-0.680153672786, 45.9787686302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "757dc426b82ede3a11344a8acb381e86389f202a", "fields": {"nom_de_la_commune": "ST MARTIAL DE VITATERNE", "libell_d_acheminement": "ST MARTIAL DE VITATERNE", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17363"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c83d0cf03dfb61c23b7f51a8df2a49ff3b05f00", "fields": {"nom_de_la_commune": "ST MEDARD D AUNIS", "libell_d_acheminement": "ST MEDARD D AUNIS", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17373"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aa58aa2ec9a917948062363478708417bfdae42", "fields": {"nom_de_la_commune": "ST PALAIS SUR MER", "libell_d_acheminement": "ST PALAIS SUR MER", "code_postal": "17420", "coordonnees_gps": [45.6577191552, -1.10207482154], "code_commune_insee": "17380"}, "geometry": {"type": "Point", "coordinates": [-1.10207482154, 45.6577191552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39574a3c92c0d65403ef15e1c02e5f4350cc14c1", "fields": {"code_postal": "17420", "code_commune_insee": "17380", "libell_d_acheminement": "ST PALAIS SUR MER", "ligne_5": "COURLAY SUR MER", "nom_de_la_commune": "ST PALAIS SUR MER", "coordonnees_gps": [45.6577191552, -1.10207482154]}, "geometry": {"type": "Point", "coordinates": [-1.10207482154, 45.6577191552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6951edc17ce1b8f39c6fd8100fb8b6bd143bf7", "fields": {"nom_de_la_commune": "ST PIERRE D AMILLY", "libell_d_acheminement": "ST PIERRE D AMILLY", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17382"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96017015a22dc0a801e11aae58ca398a9ae4ac3e", "fields": {"nom_de_la_commune": "ST PIERRE DE L ISLE", "libell_d_acheminement": "ST PIERRE DE L ISLE", "code_postal": "17330", "coordonnees_gps": [46.0720131414, -0.537761612813], "code_commune_insee": "17384"}, "geometry": {"type": "Point", "coordinates": [-0.537761612813, 46.0720131414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7a1a9a28c561ac884bdfabeedba286ddaf731b7", "fields": {"nom_de_la_commune": "STE RAMEE", "libell_d_acheminement": "STE RAMEE", "code_postal": "17240", "coordonnees_gps": [45.4692153488, -0.625972195864], "code_commune_insee": "17390"}, "geometry": {"type": "Point", "coordinates": [-0.625972195864, 45.4692153488]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c26edacded27afcf9751cb1cb03c0bcc16ca143", "fields": {"nom_de_la_commune": "ST ROMAIN DE BENET", "libell_d_acheminement": "ST ROMAIN DE BENET", "code_postal": "17600", "coordonnees_gps": [45.705565498, -0.899811574663], "code_commune_insee": "17393"}, "geometry": {"type": "Point", "coordinates": [-0.899811574663, 45.705565498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305ba571dcd4557c23622819676fc53e41461db9", "fields": {"nom_de_la_commune": "ST SATURNIN DU BOIS", "libell_d_acheminement": "ST SATURNIN DU BOIS", "code_postal": "17700", "coordonnees_gps": [46.1163770552, -0.726851455037], "code_commune_insee": "17394"}, "geometry": {"type": "Point", "coordinates": [-0.726851455037, 46.1163770552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb0f3df8f11875e476045cf0dc51cf743050caa9", "fields": {"nom_de_la_commune": "ST SAVINIEN", "libell_d_acheminement": "ST SAVINIEN", "code_postal": "17350", "coordonnees_gps": [45.8646141177, -0.657370480976], "code_commune_insee": "17397"}, "geometry": {"type": "Point", "coordinates": [-0.657370480976, 45.8646141177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52d761127e46eacc01027be61c392e4e16dba26", "fields": {"nom_de_la_commune": "ST SIMON DE PELLOUAILLE", "libell_d_acheminement": "ST SIMON DE PELLOUAILLE", "code_postal": "17260", "coordonnees_gps": [45.5823629121, -0.693973129072], "code_commune_insee": "17404"}, "geometry": {"type": "Point", "coordinates": [-0.693973129072, 45.5823629121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db65c3e4a54b5b91dab6333379e86dfb8da050b", "fields": {"nom_de_la_commune": "ST SORLIN DE CONAC", "libell_d_acheminement": "ST SORLIN DE CONAC", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17405"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91847aefee3db561f6bc405ab37ee968de5bee17", "fields": {"nom_de_la_commune": "STE SOULLE", "libell_d_acheminement": "STE SOULLE", "code_postal": "17220", "coordonnees_gps": [46.1421522644, -1.01138171467], "code_commune_insee": "17407"}, "geometry": {"type": "Point", "coordinates": [-1.01138171467, 46.1421522644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c81c56b3188c83ca8fe3e2cc3b3fa745a90db92", "fields": {"nom_de_la_commune": "ST SULPICE D ARNOULT", "libell_d_acheminement": "ST SULPICE D ARNOULT", "code_postal": "17250", "coordonnees_gps": [45.8269638695, -0.827951062976], "code_commune_insee": "17408"}, "geometry": {"type": "Point", "coordinates": [-0.827951062976, 45.8269638695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da436b5fba40bb5c190162cd22f646bc365b284d", "fields": {"nom_de_la_commune": "ST SULPICE DE ROYAN", "libell_d_acheminement": "ST SULPICE DE ROYAN", "code_postal": "17200", "coordonnees_gps": [45.6547105842, -1.01223918175], "code_commune_insee": "17409"}, "geometry": {"type": "Point", "coordinates": [-1.01223918175, 45.6547105842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a86849b3abacc35f8a23a4c0e1d9753e0d1ca9f9", "fields": {"nom_de_la_commune": "ST THOMAS DE CONAC", "libell_d_acheminement": "ST THOMAS DE CONAC", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17410"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ccdcb77ce7556fc8a77554897b8fe9fcbec1493", "fields": {"nom_de_la_commune": "ST TROJAN LES BAINS", "libell_d_acheminement": "ST TROJAN LES BAINS", "code_postal": "17370", "coordonnees_gps": [45.8397665492, -1.23126758244], "code_commune_insee": "17411"}, "geometry": {"type": "Point", "coordinates": [-1.23126758244, 45.8397665492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57c6eff419a1fa9a078b503a4ff2eddb4f01d83f", "fields": {"nom_de_la_commune": "SEMOUSSAC", "libell_d_acheminement": "SEMOUSSAC", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17424"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe03ce4a100db2b8a9e2b380bdd83eb17b24665b", "fields": {"nom_de_la_commune": "LE SEURE", "libell_d_acheminement": "LE SEURE", "code_postal": "17770", "coordonnees_gps": [45.8271073503, -0.466918444884], "code_commune_insee": "17426"}, "geometry": {"type": "Point", "coordinates": [-0.466918444884, 45.8271073503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae253d3d624ed44c26a6d7a74943914d1da1d0a3", "fields": {"nom_de_la_commune": "SIECQ", "libell_d_acheminement": "SIECQ", "code_postal": "17490", "coordonnees_gps": [45.8560464609, -0.180023393448], "code_commune_insee": "17427"}, "geometry": {"type": "Point", "coordinates": [-0.180023393448, 45.8560464609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eba2c90c73da5876f00438078288ffb60fa64147", "fields": {"nom_de_la_commune": "SOUBISE", "libell_d_acheminement": "SOUBISE", "code_postal": "17780", "coordonnees_gps": [45.9139828968, -1.03532159537], "code_commune_insee": "17429"}, "geometry": {"type": "Point", "coordinates": [-1.03532159537, 45.9139828968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96149196fd591c1648435488e7f81ee3c1d07c01", "fields": {"nom_de_la_commune": "SOUBRAN", "libell_d_acheminement": "SOUBRAN", "code_postal": "17150", "coordonnees_gps": [45.37045546, -0.599761986367], "code_commune_insee": "17430"}, "geometry": {"type": "Point", "coordinates": [-0.599761986367, 45.37045546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "103902b379a1d4dd533c07e07a22df5de2cb54ba", "fields": {"nom_de_la_commune": "VANZAC", "libell_d_acheminement": "VANZAC", "code_postal": "17500", "coordonnees_gps": [45.4259589472, -0.405217175017], "code_commune_insee": "17458"}, "geometry": {"type": "Point", "coordinates": [-0.405217175017, 45.4259589472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a641e55f483cc1e2c1a29c6b7e978b7c3c5bf8b", "fields": {"nom_de_la_commune": "VERGEROUX", "libell_d_acheminement": "VERGEROUX", "code_postal": "17300", "coordonnees_gps": [45.9492956651, -0.975348891655], "code_commune_insee": "17463"}, "geometry": {"type": "Point", "coordinates": [-0.975348891655, 45.9492956651]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27655273bc9336d8829970cff00e8742dcbaf2a2", "fields": {"code_postal": "17340", "code_commune_insee": "17483", "libell_d_acheminement": "YVES", "ligne_5": "LES BOUCHOLEURS", "nom_de_la_commune": "YVES", "coordonnees_gps": [46.0464260547, -1.04444906455]}, "geometry": {"type": "Point", "coordinates": [-1.04444906455, 46.0464260547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d935e6d326844c63631b26d637c7d4adf23159", "fields": {"nom_de_la_commune": "ARCAY", "libell_d_acheminement": "ARCAY", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18008"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "189e9e4a3fcdb487f9453bec73b4521a2a528564", "fields": {"nom_de_la_commune": "ARDENAIS", "libell_d_acheminement": "ARDENAIS", "code_postal": "18170", "coordonnees_gps": [46.6712468897, 2.29977579349], "code_commune_insee": "18010"}, "geometry": {"type": "Point", "coordinates": [2.29977579349, 46.6712468897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7fd5f0a994d929d5d41e015060e02d1091dbe24", "fields": {"nom_de_la_commune": "ARGENT SUR SAULDRE", "libell_d_acheminement": "ARGENT SUR SAULDRE", "code_postal": "18410", "coordonnees_gps": [47.5588785401, 2.35799352242], "code_commune_insee": "18011"}, "geometry": {"type": "Point", "coordinates": [2.35799352242, 47.5588785401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f6fd96598808c4db3c357d40954ee4492af076", "fields": {"nom_de_la_commune": "AUBINGES", "libell_d_acheminement": "AUBINGES", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18016"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6b6c70681db45d682b08f7efb1c612933fa20a", "fields": {"nom_de_la_commune": "AUGY SUR AUBOIS", "libell_d_acheminement": "AUGY SUR AUBOIS", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18017"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fca4682dcb3f0f26a43c7c168891359cb3f28b80", "fields": {"nom_de_la_commune": "AVORD", "libell_d_acheminement": "AVORD", "code_postal": "18520", "coordonnees_gps": [47.0138708859, 2.70198329329], "code_commune_insee": "18018"}, "geometry": {"type": "Point", "coordinates": [2.70198329329, 47.0138708859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1d1d022ed2237b4fbf18b362fc691eb50ccf86d", "fields": {"nom_de_la_commune": "BARLIEU", "libell_d_acheminement": "BARLIEU", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18022"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a786f7a6a11a40c14afe0302edf2d88e8ef2f890", "fields": {"nom_de_la_commune": "BAUGY", "libell_d_acheminement": "BAUGY", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18023"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bb9a29c9482bb13ebe47143260e5922db9648a0", "fields": {"nom_de_la_commune": "BELLEVILLE SUR LOIRE", "libell_d_acheminement": "BELLEVILLE SUR LOIRE", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18026"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cfb93c619ce040383df06c47ed8d3b7ca62395d", "fields": {"nom_de_la_commune": "BUE", "libell_d_acheminement": "BUE", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18039"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed11def52f69ec6443d5cf3ce0e198bb83e93d6f", "fields": {"nom_de_la_commune": "LA CELLE CONDE", "libell_d_acheminement": "LA CELLE CONDE", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18043"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdc56ada25b434f3df4dc1d098a286ea5713d544", "fields": {"nom_de_la_commune": "CERBOIS", "libell_d_acheminement": "CERBOIS", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18044"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc8e1748143bc02816a58a1f73c74866d9130741", "fields": {"nom_de_la_commune": "CHALIVOY MILON", "libell_d_acheminement": "CHALIVOY MILON", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18045"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "474c3178f5513287cc49ec36e2c3fd9bbbac84c6", "fields": {"nom_de_la_commune": "CHARENTON DU CHER", "libell_d_acheminement": "CHARENTON DU CHER", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18052"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c28ca8996ef27ef31c95d7d04d2d2051f4e6df89", "fields": {"code_postal": "18800", "code_commune_insee": "18056", "libell_d_acheminement": "CHASSY", "ligne_5": "DEJOINTES", "nom_de_la_commune": "CHASSY", "coordonnees_gps": [47.0880340091, 2.73431909926]}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0c006cbfb4d1940dd2fed2004f1e78f88e6b674", "fields": {"nom_de_la_commune": "CHATEAUNEUF SUR CHER", "libell_d_acheminement": "CHATEAUNEUF SUR CHER", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18058"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9d901c8fa956b3de3a52b479f12e9a7586254d", "fields": {"nom_de_la_commune": "CHERY", "libell_d_acheminement": "CHERY", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18064"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fea4f624e2ec1b9b195032a0a30cf4dc25fcc30e", "fields": {"nom_de_la_commune": "CHEZAL BENOIT", "libell_d_acheminement": "CHEZAL BENOIT", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18065"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71265bbc9e1850de7c2753a29d242499d7291bbf", "fields": {"nom_de_la_commune": "COUY", "libell_d_acheminement": "COUY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18077"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd153e272f776087b025a1f73d6fafd888b8a884", "fields": {"nom_de_la_commune": "DREVANT", "libell_d_acheminement": "DREVANT", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18086"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb75ada1482319585702de43aa1ae4a416308dbf", "fields": {"nom_de_la_commune": "ENNORDRES", "libell_d_acheminement": "ENNORDRES", "code_postal": "18380", "coordonnees_gps": [47.3630668749, 2.41288125218], "code_commune_insee": "18088"}, "geometry": {"type": "Point", "coordinates": [2.41288125218, 47.3630668749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ac93f085940dd926f3b46dfa1d4d8cdefcda86", "fields": {"nom_de_la_commune": "FARGES ALLICHAMPS", "libell_d_acheminement": "FARGES ALLICHAMPS", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18091"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e5c17a5fcb478d9ba9b4511bdd7f77ce2c9a381", "fields": {"nom_de_la_commune": "FLAVIGNY", "libell_d_acheminement": "FLAVIGNY", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18095"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbdee1789e143ce8a1126a3bb5077a9d7dca208c", "fields": {"nom_de_la_commune": "GENOUILLY", "libell_d_acheminement": "GENOUILLY", "code_postal": "18310", "coordonnees_gps": [47.1584535888, 1.87917805896], "code_commune_insee": "18100"}, "geometry": {"type": "Point", "coordinates": [1.87917805896, 47.1584535888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a70873b70949ec6188dc97df6a040b6efa97fa", "fields": {"nom_de_la_commune": "GERMIGNY L EXEMPT", "libell_d_acheminement": "GERMIGNY L EXEMPT", "code_postal": "18150", "coordonnees_gps": [46.9399476242, 2.96880212388], "code_commune_insee": "18101"}, "geometry": {"type": "Point", "coordinates": [2.96880212388, 46.9399476242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9dfeddb044b2c9438872894202c8f019b599a2", "fields": {"nom_de_la_commune": "HERRY", "libell_d_acheminement": "HERRY", "code_postal": "18140", "coordonnees_gps": [47.1578556208, 2.89768462006], "code_commune_insee": "18110"}, "geometry": {"type": "Point", "coordinates": [2.89768462006, 47.1578556208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8fa46e9bab85ec9e59e31900c4ffc5e3ac3862a", "fields": {"nom_de_la_commune": "INEUIL", "libell_d_acheminement": "INEUIL", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18114"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e19cf034b6b5320b5627523c1a4e358b77da687", "fields": {"nom_de_la_commune": "JALOGNES", "libell_d_acheminement": "JALOGNES", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18116"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0792f94d7a7f91ae697e7ccb04d5d11168ac171c", "fields": {"nom_de_la_commune": "JUSSY CHAMPAGNE", "libell_d_acheminement": "JUSSY CHAMPAGNE", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18119"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684e31d34aac6fc03ef2d40167374b83e3d8bc88", "fields": {"nom_de_la_commune": "LANTAN", "libell_d_acheminement": "LANTAN", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18121"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54357da7971aff7e45e9463ada04e826680d1364", "fields": {"nom_de_la_commune": "LAPAN", "libell_d_acheminement": "LAPAN", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18122"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31bead41b355d07da9773c0a2254c5491077d61d", "fields": {"nom_de_la_commune": "LEVET", "libell_d_acheminement": "LEVET", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18126"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b669104ab79536365da206eb4242fdf60a96c18f", "fields": {"nom_de_la_commune": "LIMEUX", "libell_d_acheminement": "LIMEUX", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18128"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ffbfbb2d3aef5307eaba43bdb06149ba9645d96", "fields": {"nom_de_la_commune": "LUNERY", "libell_d_acheminement": "LUNERY", "code_postal": "18400", "coordonnees_gps": [46.9642447985, 2.24452322455], "code_commune_insee": "18133"}, "geometry": {"type": "Point", "coordinates": [2.24452322455, 46.9642447985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03916f4c224b658ba0a613325ca56f2b6d21993b", "fields": {"nom_de_la_commune": "MAREUIL SUR ARNON", "libell_d_acheminement": "MAREUIL SUR ARNON", "code_postal": "18290", "coordonnees_gps": [46.9675017851, 2.14841732679], "code_commune_insee": "18137"}, "geometry": {"type": "Point", "coordinates": [2.14841732679, 46.9675017851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb18ed436887da1057e8700b17b85ab703e349e", "fields": {"nom_de_la_commune": "MARMAGNE", "libell_d_acheminement": "MARMAGNE", "code_postal": "18500", "coordonnees_gps": [47.1389100473, 2.2339215011], "code_commune_insee": "18138"}, "geometry": {"type": "Point", "coordinates": [2.2339215011, 47.1389100473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebd09a79546af12a42c0789826ad2bace860389b", "fields": {"nom_de_la_commune": "MENETOU RATEL", "libell_d_acheminement": "MENETOU RATEL", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18144"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82876a8b4d270a2be8f6df728e4d6604d6ed5530", "fields": {"nom_de_la_commune": "MEASNES", "libell_d_acheminement": "MEASNES", "code_postal": "23360", "coordonnees_gps": [46.4079400107, 1.81197289592], "code_commune_insee": "23130"}, "geometry": {"type": "Point", "coordinates": [1.81197289592, 46.4079400107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ae43a06b21c42c7bdbefe4ba2d6efb20f3c454", "fields": {"nom_de_la_commune": "MONTBOUCHER", "libell_d_acheminement": "MONTBOUCHER", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23133"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a92d2ce51ee82c69d4c5bf3267eeaf32b1455559", "fields": {"nom_de_la_commune": "NAILLAT", "libell_d_acheminement": "NAILLAT", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23141"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "718952ccf8181fe3f8343cfd220ce71e85475d5f", "fields": {"nom_de_la_commune": "NOUZERINES", "libell_d_acheminement": "NOUZERINES", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23146"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8615c87e188176b6b6d63fec1070ed329d191392", "fields": {"nom_de_la_commune": "NOUZIERS", "libell_d_acheminement": "NOUZIERS", "code_postal": "23350", "coordonnees_gps": [46.3822619833, 2.00190110842], "code_commune_insee": "23148"}, "geometry": {"type": "Point", "coordinates": [2.00190110842, 46.3822619833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be9f35305383d16a39666d7225d72a40b79e622", "fields": {"nom_de_la_commune": "PEYRABOUT", "libell_d_acheminement": "PEYRABOUT", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23150"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad943a91c6a4806b581a66c7bf4947e004c672a7", "fields": {"nom_de_la_commune": "PONTCHARRAUD", "libell_d_acheminement": "PONTCHARRAUD", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23156"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec91270e2a48df9f4f98cbc9e60ac28b1384201", "fields": {"nom_de_la_commune": "SAGNAT", "libell_d_acheminement": "SAGNAT", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23166"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16f2809ca0f08b5574c5f420ec940376edc22dcc", "fields": {"nom_de_la_commune": "SAVENNES", "libell_d_acheminement": "SAVENNES", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23170"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "920f308206226d6dd14bbe6ce68c5e0b4279c648", "fields": {"nom_de_la_commune": "LA SERRE BUSSIERE VIEILLE", "libell_d_acheminement": "LA SERRE BUSSIERE VIEILLE", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23172"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33cd2615cc6016142cd6d4bae5ec658912a2e203", "fields": {"nom_de_la_commune": "SOUMANS", "libell_d_acheminement": "SOUMANS", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23174"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "482f173886db3eaa2a92ae7e43084039c6a05360", "fields": {"nom_de_la_commune": "SOUS PARSAT", "libell_d_acheminement": "SOUS PARSAT", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23175"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad2207d517298f142c01e1246efe366af60f30af", "fields": {"nom_de_la_commune": "LA SOUTERRAINE", "libell_d_acheminement": "LA SOUTERRAINE", "code_postal": "23300", "coordonnees_gps": [46.2460007526, 1.49623466309], "code_commune_insee": "23176"}, "geometry": {"type": "Point", "coordinates": [1.49623466309, 46.2460007526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a90676aa9da4cceb83bcd8d1073e14db520a873d", "fields": {"nom_de_la_commune": "ST AGNANT PRES CROCQ", "libell_d_acheminement": "ST AGNANT PRES CROCQ", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23178"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "426d80ef4f19875d3781906f6d18c8ed1ee7b7b4", "fields": {"nom_de_la_commune": "ST DIZIER LA TOUR", "libell_d_acheminement": "ST DIZIER LA TOUR", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23187"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "324dfef5923f9bba607e1a7b752eefd82b03cbb4", "fields": {"nom_de_la_commune": "ST DIZIER LES DOMAINES", "libell_d_acheminement": "ST DIZIER LES DOMAINES", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23188"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2502aa930a9b2f032d0e8efa78cfce827309441e", "fields": {"nom_de_la_commune": "ST DIZIER LEYRENNE", "libell_d_acheminement": "ST DIZIER LEYRENNE", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23189"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00a2cbf603d1dc4a7a6110ff2c3ae237eef709aa", "fields": {"nom_de_la_commune": "ST DOMET", "libell_d_acheminement": "ST DOMET", "code_postal": "23190", "coordonnees_gps": [45.9976380958, 2.32904018438], "code_commune_insee": "23190"}, "geometry": {"type": "Point", "coordinates": [2.32904018438, 45.9976380958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7627e1c754dddaad209302327218a71c536aa481", "fields": {"nom_de_la_commune": "ST ETIENNE DE FURSAC", "libell_d_acheminement": "ST ETIENNE DE FURSAC", "code_postal": "23290", "coordonnees_gps": [46.1460504091, 1.51372481085], "code_commune_insee": "23192"}, "geometry": {"type": "Point", "coordinates": [1.51372481085, 46.1460504091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7663245a3f65db2f86187b98b2afe165b27d615", "fields": {"nom_de_la_commune": "ST GOUSSAUD", "libell_d_acheminement": "ST GOUSSAUD", "code_postal": "23430", "coordonnees_gps": [45.9881301052, 1.59522254815], "code_commune_insee": "23200"}, "geometry": {"type": "Point", "coordinates": [1.59522254815, 45.9881301052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ae7b171badd8ee384f531342f08ac29f760383", "fields": {"nom_de_la_commune": "ST JUNIEN LA BREGERE", "libell_d_acheminement": "ST JUNIEN LA BREGERE", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23205"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c842621b7574c6e3cbd7b8ea8b3d1fbe91c41883", "fields": {"nom_de_la_commune": "ST LEGER LE GUERETOIS", "libell_d_acheminement": "ST LEGER LE GUERETOIS", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23208"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73cc3c166e6c11461bb4dad6b5ffa45927296d08", "fields": {"nom_de_la_commune": "ST MAIXANT", "libell_d_acheminement": "ST MAIXANT", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23210"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad6b8051f3387dd8a162e9d000d9f91b1439e5b", "fields": {"nom_de_la_commune": "ST MARC A LOUBAUD", "libell_d_acheminement": "ST MARC A LOUBAUD", "code_postal": "23460", "coordonnees_gps": [45.8611581486, 1.91070196951], "code_commune_insee": "23212"}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ad32696ffe3bc715bbf07454d25adb6760115c", "fields": {"nom_de_la_commune": "ST PARDOUX D ARNET", "libell_d_acheminement": "ST PARDOUX D ARNET", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23226"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f312e879a351640793700f3c7c66b3ffed159811", "fields": {"nom_de_la_commune": "ST PIERRE CHERIGNAT", "libell_d_acheminement": "ST PIERRE CHERIGNAT", "code_postal": "23430", "coordonnees_gps": [45.9881301052, 1.59522254815], "code_commune_insee": "23230"}, "geometry": {"type": "Point", "coordinates": [1.59522254815, 45.9881301052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d67c4c0870261a07f27d3e110db79b887ba12c28", "fields": {"code_postal": "23460", "code_commune_insee": "23232", "libell_d_acheminement": "ST PIERRE BELLEVUE", "ligne_5": "LE COMPEIX", "nom_de_la_commune": "ST PIERRE BELLEVUE", "coordonnees_gps": [45.8611581486, 1.91070196951]}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae9df1bf96a2c933efebfae166ddba136cf5673b", "fields": {"nom_de_la_commune": "ST PIERRE LE BOST", "libell_d_acheminement": "ST PIERRE LE BOST", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23233"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb6c9e86dd1134231cba673f4c3d9b9306b02bc", "fields": {"nom_de_la_commune": "ST SEBASTIEN", "libell_d_acheminement": "ST SEBASTIEN", "code_postal": "23160", "coordonnees_gps": [46.3627698496, 1.53929968478], "code_commune_insee": "23239"}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eb4e7a459d2e5c58fea0634e9bd6df648f40e4e", "fields": {"nom_de_la_commune": "ST SILVAIN MONTAIGUT", "libell_d_acheminement": "ST SILVAIN MONTAIGUT", "code_postal": "23320", "coordonnees_gps": [46.2024027743, 1.74389390315], "code_commune_insee": "23242"}, "geometry": {"type": "Point", "coordinates": [1.74389390315, 46.2024027743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0964843572a23ded777f93614141e9ddd2b9e47", "fields": {"nom_de_la_commune": "ST SILVAIN SOUS TOULX", "libell_d_acheminement": "ST SILVAIN SOUS TOULX", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23243"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13827760cb95adfe0e2c0bea81264f29fa6e926b", "fields": {"nom_de_la_commune": "ST SULPICE LES CHAMPS", "libell_d_acheminement": "ST SULPICE LES CHAMPS", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23246"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6214c5e69b62da44c7a0dfd82c6430a9fceb486", "fields": {"nom_de_la_commune": "ST VAURY", "libell_d_acheminement": "ST VAURY", "code_postal": "23320", "coordonnees_gps": [46.2024027743, 1.74389390315], "code_commune_insee": "23247"}, "geometry": {"type": "Point", "coordinates": [1.74389390315, 46.2024027743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "596cfe99ab971145d3a021cb9f2a61ed513b66e4", "fields": {"nom_de_la_commune": "ST VICTOR EN MARCHE", "libell_d_acheminement": "ST VICTOR EN MARCHE", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23248"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db9992247fbede365bab6ac8e1a7824ae8cff224", "fields": {"nom_de_la_commune": "ST YRIEIX LES BOIS", "libell_d_acheminement": "ST YRIEIX LES BOIS", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23250"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18e80942ab705868edee6438c7381e7f032f7513", "fields": {"nom_de_la_commune": "TARDES", "libell_d_acheminement": "TARDES", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23251"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "644ab8465aee43d4debf14a08ec6fd0c906ab99e", "fields": {"nom_de_la_commune": "VIDAILLAT", "libell_d_acheminement": "VIDAILLAT", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23260"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78651f34ced75fbfbc4f228b4fa3e1ae2cf743d3", "fields": {"nom_de_la_commune": "LA VILLEDIEU", "libell_d_acheminement": "LA VILLEDIEU", "code_postal": "23340", "coordonnees_gps": [45.7675202312, 1.97700019659], "code_commune_insee": "23264"}, "geometry": {"type": "Point", "coordinates": [1.97700019659, 45.7675202312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eb74878a12532f578ee6109d7217758fde9ca87", "fields": {"nom_de_la_commune": "ANGOISSE", "libell_d_acheminement": "ANGOISSE", "code_postal": "24270", "coordonnees_gps": [45.4018222485, 1.18007367307], "code_commune_insee": "24008"}, "geometry": {"type": "Point", "coordinates": [1.18007367307, 45.4018222485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "712e80a3ca1a01cde9c1b683b763a4e4e8a3b060", "fields": {"nom_de_la_commune": "AUGIGNAC", "libell_d_acheminement": "AUGIGNAC", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24016"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b07a62d8d5fd05893a0c4ff36b5e6d305319ec3", "fields": {"nom_de_la_commune": "LA BACHELLERIE", "libell_d_acheminement": "LA BACHELLERIE", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24020"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "527be6f5a93f93f27f9ff58ec09aaf51add42fd9", "fields": {"nom_de_la_commune": "BARS", "libell_d_acheminement": "BARS", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24025"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b8aca28edc2a70f75ddf4fbb2810546df65ea42", "fields": {"nom_de_la_commune": "BAYAC", "libell_d_acheminement": "BAYAC", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24027"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3d0264a67d980c5fdf34797bd4008357f8825f", "fields": {"code_postal": "24440", "code_commune_insee": "24028", "libell_d_acheminement": "BEAUMONTOIS EN PERIGORD", "ligne_5": "BORN DE CHAMPS", "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", "coordonnees_gps": [44.7570815244, 0.786200936905]}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9310680408504c4ec0fa1e9e239f0dc187b9cf7", "fields": {"code_postal": "24440", "code_commune_insee": "24028", "libell_d_acheminement": "BEAUMONTOIS EN PERIGORD", "ligne_5": "STE SABINE BORN", "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", "coordonnees_gps": [44.7570815244, 0.786200936905]}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dba62af29b7fda7fbf30a48f7fd0a5111bdf4e8", "fields": {"nom_de_la_commune": "BONNEVILLE ET ST AVIT DE FUMADIERES", "libell_d_acheminement": "BONNEVILLE ST AVIT DE FUMADIERES", "code_postal": "24230", "coordonnees_gps": [44.8666408802, 0.0912589036949], "code_commune_insee": "24048"}, "geometry": {"type": "Point", "coordinates": [0.0912589036949, 44.8666408802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e12af7cc7579d1927f50d71e33f8bc072c248ffc", "fields": {"nom_de_la_commune": "BOURDEILLES", "libell_d_acheminement": "BOURDEILLES", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24055"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2700409bd25253ea804a6c182a3943435f8168d9", "fields": {"nom_de_la_commune": "BOURG DES MAISONS", "libell_d_acheminement": "BOURG DES MAISONS", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24057"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ee3ab011e5cee8c3eea133c95e804f7f7aeeaf", "fields": {"nom_de_la_commune": "BOURG DU BOST", "libell_d_acheminement": "BOURG DU BOST", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24058"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed53728ceb9bf1bb29464902324ceaf93ea63107", "fields": {"nom_de_la_commune": "BOUZIC", "libell_d_acheminement": "BOUZIC", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24063"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f52ed522d0c44fa822326b02a11aced1aec69f4c", "fields": {"nom_de_la_commune": "CALES", "libell_d_acheminement": "CALES", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24073"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c37ce1bd6f9832172e53456abdc466b4267c77c5", "fields": {"nom_de_la_commune": "CAMPAGNE", "libell_d_acheminement": "CAMPAGNE", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24076"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76909c4956ec8bdedf0f71c6bfe0317022911a86", "fields": {"nom_de_la_commune": "CARLUX", "libell_d_acheminement": "CARLUX", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24081"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b48e24bb2e56f339934d97ef28a81d8f2246561", "fields": {"nom_de_la_commune": "CARVES", "libell_d_acheminement": "CARVES", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24084"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbce89891c2eac84003830e986e8558d5c91532e", "fields": {"nom_de_la_commune": "CASTELNAUD LA CHAPELLE", "libell_d_acheminement": "CASTELNAUD LA CHAPELLE", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24086"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f749ab9d819b5cf69b46785518ed98bf74cf7a0", "fields": {"nom_de_la_commune": "CASTELS", "libell_d_acheminement": "CASTELS", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24087"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6f315b65124c8551edbd885e6dd676d85d2a4a", "fields": {"nom_de_la_commune": "CELLES", "libell_d_acheminement": "CELLES", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24090"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8b64f07b5dfc3dcca4b0ca45a025759aa9d60dc", "fields": {"nom_de_la_commune": "CENAC ET ST JULIEN", "libell_d_acheminement": "CENAC ET ST JULIEN", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24091"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc73747a7f3e3e208a6365fe554d8b055a9cb4e1", "fields": {"nom_de_la_commune": "LE CHANGE", "libell_d_acheminement": "LE CHANGE", "code_postal": "24640", "coordonnees_gps": [45.228517812, 0.964656350856], "code_commune_insee": "24103"}, "geometry": {"type": "Point", "coordinates": [0.964656350856, 45.228517812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2115babb9eb0e6111c939e9b1e0b2b33fcefade", "fields": {"nom_de_la_commune": "LA CHAPELLE AUBAREIL", "libell_d_acheminement": "LA CHAPELLE AUBAREIL", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24106"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b96bee32c4ed87ec06e089e1f974cdb07da544e2", "fields": {"nom_de_la_commune": "CLERMONT DE BEAUREGARD", "libell_d_acheminement": "CLERMONT DE BEAUREGARD", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24123"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55551cd0709302223ae0991d8f0dafb42aaa4d00", "fields": {"nom_de_la_commune": "CONDAT SUR VEZERE", "libell_d_acheminement": "CONDAT SUR VEZERE", "code_postal": "24570", "coordonnees_gps": [45.1179534965, 1.2304363146], "code_commune_insee": "24130"}, "geometry": {"type": "Point", "coordinates": [1.2304363146, 45.1179534965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "650f6804458fceb7471815ea65e9a2629c9f5c83", "fields": {"nom_de_la_commune": "COUBJOURS", "libell_d_acheminement": "COUBJOURS", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24136"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5b1cc7956553ee954470b220f49548f6ec5665f", "fields": {"nom_de_la_commune": "COUZE ET ST FRONT", "libell_d_acheminement": "COUZE ET ST FRONT", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24143"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b16a148bfd400a98df0ccd4d9f5abe32dfeb3d2", "fields": {"nom_de_la_commune": "DAGLAN", "libell_d_acheminement": "DAGLAN", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24150"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3273eb6495047162f7f23d1b3879f2750a05a582", "fields": {"code_postal": "24560", "code_commune_insee": "24168", "libell_d_acheminement": "PLAISANCE", "ligne_5": "MANDACOU", "nom_de_la_commune": "PLAISANCE", "coordonnees_gps": [44.7422356439, 0.603161629803]}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "135f8a6372d60027355487a62ad00b4a420296a0", "fields": {"nom_de_la_commune": "LES EYZIES DE TAYAC SIREUIL", "libell_d_acheminement": "LES EYZIES DE TAYAC SIREUIL", "code_postal": "24620", "coordonnees_gps": [44.9543754146, 1.07528659092], "code_commune_insee": "24172"}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0173150c2ab6f5b94d32fda7a727895659f6bf20", "fields": {"code_postal": "24620", "code_commune_insee": "24172", "libell_d_acheminement": "LES EYZIES DE TAYAC SIREUIL", "ligne_5": "SIREUIL", "nom_de_la_commune": "LES EYZIES DE TAYAC SIREUIL", "coordonnees_gps": [44.9543754146, 1.07528659092]}, "geometry": {"type": "Point", "coordinates": [1.07528659092, 44.9543754146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5433dd4105dd3f158e681343b4da6d71d901fc02", "fields": {"nom_de_la_commune": "FANLAC", "libell_d_acheminement": "FANLAC", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24174"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476fc9b494f2b8f8909a230f778909c082d2cb9f", "fields": {"nom_de_la_commune": "FESTALEMPS", "libell_d_acheminement": "FESTALEMPS", "code_postal": "24410", "coordonnees_gps": [45.1753160251, 0.189361331723], "code_commune_insee": "24178"}, "geometry": {"type": "Point", "coordinates": [0.189361331723, 45.1753160251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68daf4bdec5519e748d9949e743c31a8cdd13f5f", "fields": {"nom_de_la_commune": "LA FEUILLADE", "libell_d_acheminement": "LA FEUILLADE", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24179"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236299d290d9f0c389717bd010facf55e1167d1b", "fields": {"nom_de_la_commune": "FONROQUE", "libell_d_acheminement": "FONROQUE", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24186"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bedc45bafc5080cc0a97b7e630c4544c573a8ac5", "fields": {"nom_de_la_commune": "GARDONNE", "libell_d_acheminement": "GARDONNE", "code_postal": "24680", "coordonnees_gps": [44.8327905083, 0.37087813465], "code_commune_insee": "24194"}, "geometry": {"type": "Point", "coordinates": [0.37087813465, 44.8327905083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f61c6ec47c36885622877bc5948a584db024254", "fields": {"nom_de_la_commune": "LA GONTERIE BOULOUNEIX", "libell_d_acheminement": "LA GONTERIE BOULOUNEIX", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24198"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd52af036b8459c461d00ac5ced9f78f673ac15", "fields": {"nom_de_la_commune": "ISSAC", "libell_d_acheminement": "ISSAC", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24211"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d682bc58cae9e2f60f9f79ae68e185cd64b4702", "fields": {"nom_de_la_commune": "JOURNIAC", "libell_d_acheminement": "JOURNIAC", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24217"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "600a983823ef1d78f26b88067cf24d012abe8f6c", "fields": {"nom_de_la_commune": "JUMILHAC LE GRAND", "libell_d_acheminement": "JUMILHAC LE GRAND", "code_postal": "24630", "coordonnees_gps": [45.5052399015, 1.08073517571], "code_commune_insee": "24218"}, "geometry": {"type": "Point", "coordinates": [1.08073517571, 45.5052399015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4411ed4bd6ed95f09869201fd57d50213ede86f9", "fields": {"nom_de_la_commune": "LA FORCE", "libell_d_acheminement": "LA FORCE", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24222"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3e89747c76c13ea9789dea35c6600a799d0770a", "fields": {"nom_de_la_commune": "LANQUAIS", "libell_d_acheminement": "LANQUAIS", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24228"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58446b513abf4632dfbdca5e115208fb2f16d5f6", "fields": {"nom_de_la_commune": "LE LARDIN ST LAZARE", "libell_d_acheminement": "LE LARDIN ST LAZARE", "code_postal": "24570", "coordonnees_gps": [45.1179534965, 1.2304363146], "code_commune_insee": "24229"}, "geometry": {"type": "Point", "coordinates": [1.2304363146, 45.1179534965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aadda779da49bec0749ad91de1ed2bd2b13591c", "fields": {"nom_de_la_commune": "LAVALADE", "libell_d_acheminement": "LAVALADE", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24231"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe72f6bf50f29698da7758f746216bb85f199c9d", "fields": {"nom_de_la_commune": "LIMEYRAT", "libell_d_acheminement": "LIMEYRAT", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24241"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14644456581d23c19a1f323f5e7e35026881751d", "fields": {"nom_de_la_commune": "MAREUIL", "libell_d_acheminement": "MAREUIL", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24253"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9cab74a78f025c3400d64a096e49ddb2bed3fa3", "fields": {"nom_de_la_commune": "MAUZAC ET GRAND CASTANG", "libell_d_acheminement": "MAUZAC ET GRAND CASTANG", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24260"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcd4a927a76e03c8142047699ad014672e0b1f91", "fields": {"nom_de_la_commune": "MIALET", "libell_d_acheminement": "MIALET", "code_postal": "24450", "coordonnees_gps": [45.5667064353, 0.957966162426], "code_commune_insee": "24269"}, "geometry": {"type": "Point", "coordinates": [0.957966162426, 45.5667064353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4c72de15276f19527b4a539d4008fd26ef0f773", "fields": {"nom_de_la_commune": "MONPAZIER", "libell_d_acheminement": "MONPAZIER", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24280"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845d223722570e872268fba3cc78d9ba018ac3bf", "fields": {"nom_de_la_commune": "MONSAC", "libell_d_acheminement": "MONSAC", "code_postal": "24440", "coordonnees_gps": [44.7570815244, 0.786200936905], "code_commune_insee": "24281"}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3343efc1b4fe878c2914d06998eb95e0eb7b968e", "fields": {"nom_de_la_commune": "MONSAGUEL", "libell_d_acheminement": "MONSAGUEL", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24282"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcf12109950cea395475e77cbc5371463405dffd", "fields": {"nom_de_la_commune": "MONSEC", "libell_d_acheminement": "MONSEC", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24283"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "279363bc91bf2d52b0336141c95aa155b4aaf0a9", "fields": {"nom_de_la_commune": "MONTAGNAC D AUBEROCHE", "libell_d_acheminement": "MONTAGNAC D AUBEROCHE", "code_postal": "24210", "coordonnees_gps": [45.1555713763, 1.05687292378], "code_commune_insee": "24284"}, "geometry": {"type": "Point", "coordinates": [1.05687292378, 45.1555713763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bcc469810c2aea40a03d8e7b7394ec0fe9374d8", "fields": {"nom_de_la_commune": "MONTAGRIER", "libell_d_acheminement": "MONTAGRIER", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24286"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d837d0f17d9422917e550cd6aecea135e881fb50", "fields": {"nom_de_la_commune": "MONTREM", "libell_d_acheminement": "MONTREM", "code_postal": "24110", "coordonnees_gps": [45.130001405, 0.541482020518], "code_commune_insee": "24295"}, "geometry": {"type": "Point", "coordinates": [0.541482020518, 45.130001405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b553f100bbf02522238c74bb8797c352a5c50c3", "fields": {"nom_de_la_commune": "MUSSIDAN", "libell_d_acheminement": "MUSSIDAN", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24299"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cff35a149e4818a320a127004cead55125c9a4aa", "fields": {"nom_de_la_commune": "NOTRE DAME DE SANILHAC", "libell_d_acheminement": "NOTRE DAME DE SANILHAC", "code_postal": "24660", "coordonnees_gps": [45.1436833144, 0.700878346896], "code_commune_insee": "24312"}, "geometry": {"type": "Point", "coordinates": [0.700878346896, 45.1436833144]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba524b7284b9433c792adb570e8d451b07cc117", "fields": {"nom_de_la_commune": "PAULIN", "libell_d_acheminement": "PAULIN", "code_postal": "24590", "coordonnees_gps": [44.9880935818, 1.33262817991], "code_commune_insee": "24317"}, "geometry": {"type": "Point", "coordinates": [1.33262817991, 44.9880935818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0be75f14bb46eb2e708f5702de87d33dbb380d6", "fields": {"nom_de_la_commune": "PAUNAT", "libell_d_acheminement": "PAUNAT", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24318"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e800ca12192f94ff2e226094a4f3406aa3e3e3f6", "fields": {"nom_de_la_commune": "PETIT BERSAC", "libell_d_acheminement": "PETIT BERSAC", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24323"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2204771a59135741f3816fe21452838ad742897", "fields": {"nom_de_la_commune": "PONTOURS", "libell_d_acheminement": "PONTOURS", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24334"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "686098b0645fcf29986d64bd339be896af165da2", "fields": {"nom_de_la_commune": "PREYSSAC D EXCIDEUIL", "libell_d_acheminement": "PREYSSAC D EXCIDEUIL", "code_postal": "24160", "coordonnees_gps": [45.3309222915, 1.08220119704], "code_commune_insee": "24339"}, "geometry": {"type": "Point", "coordinates": [1.08220119704, 45.3309222915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646fb21d537895e161ad82b56f41f2fdade28a52", "fields": {"nom_de_la_commune": "RAMPIEUX", "libell_d_acheminement": "RAMPIEUX", "code_postal": "24440", "coordonnees_gps": [44.7570815244, 0.786200936905], "code_commune_insee": "24347"}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d74c6f6c1c51793d965d84104617b42a3b304218", "fields": {"nom_de_la_commune": "ARMEAU", "libell_d_acheminement": "ARMEAU", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89018"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1e946148a1f89fece129e7d6496917b6d5f2e70", "fields": {"nom_de_la_commune": "ASQUINS", "libell_d_acheminement": "ASQUINS", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89021"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da8a4f54bf97d0f98ad73e37fc4bd2af66536f98", "fields": {"nom_de_la_commune": "AUGY", "libell_d_acheminement": "AUGY", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89023"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eecd7b95b2f4989e16c0fa1a5c9a9dab70dad211", "fields": {"nom_de_la_commune": "BEUGNON", "libell_d_acheminement": "BEUGNON", "code_postal": "89570", "coordonnees_gps": [48.0650523517, 3.77308517186], "code_commune_insee": "89041"}, "geometry": {"type": "Point", "coordinates": [3.77308517186, 48.0650523517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e6c4d3957f06b67dd39c367dc4089fcb717831", "fields": {"nom_de_la_commune": "BLANNAY", "libell_d_acheminement": "BLANNAY", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89044"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3513bb79f05f047575e650b2b7a765ed50e43134", "fields": {"nom_de_la_commune": "BONNARD", "libell_d_acheminement": "BONNARD", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89050"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eed6d5ac59bb1ccd1132e19aabcfe319ee1ae34c", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89058"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f85a8f498902b3cc28b8146967f547bd508aa7f8", "fields": {"nom_de_la_commune": "BUTTEAUX", "libell_d_acheminement": "BUTTEAUX", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89061"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02873dbaa192d230319ca0c4697bfbb1d6762035", "fields": {"nom_de_la_commune": "CARISEY", "libell_d_acheminement": "CARISEY", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89062"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a0806bf500e62932d1e1d8bf1b8a6a3e1312f8", "fields": {"nom_de_la_commune": "LA CELLE ST CYR", "libell_d_acheminement": "LA CELLE ST CYR", "code_postal": "89116", "coordonnees_gps": [47.9697320355, 3.23051623218], "code_commune_insee": "89063"}, "geometry": {"type": "Point", "coordinates": [3.23051623218, 47.9697320355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66e92df92faf76c871b3cb4220c45dfbcb17ffbd", "fields": {"nom_de_la_commune": "CEZY", "libell_d_acheminement": "CEZY", "code_postal": "89410", "coordonnees_gps": [47.9724194151, 3.31445831227], "code_commune_insee": "89067"}, "geometry": {"type": "Point", "coordinates": [3.31445831227, 47.9724194151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ade4c5df0f239770802c71ac6994ff3997b66170", "fields": {"nom_de_la_commune": "CHAMPVALLON", "libell_d_acheminement": "CHAMPVALLON", "code_postal": "89710", "coordonnees_gps": [47.9188469839, 3.34212763493], "code_commune_insee": "89078"}, "geometry": {"type": "Point", "coordinates": [3.34212763493, 47.9188469839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd04c1f5f5853b8c4b38a861ec114db56696541e", "fields": {"nom_de_la_commune": "CHARBUY", "libell_d_acheminement": "CHARBUY", "code_postal": "89113", "coordonnees_gps": [47.8595932276, 3.45642824955], "code_commune_insee": "89083"}, "geometry": {"type": "Point", "coordinates": [3.45642824955, 47.8595932276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70735aecc3776521c62ec640cc4a8f13e5bd41f1", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "ST DENIS SUR OUANNE", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58a8c0e8961aa79034c25a2425bfcf35710db449", "fields": {"nom_de_la_commune": "CHASTELLUX SUR CURE", "libell_d_acheminement": "CHASTELLUX SUR CURE", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89089"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00117d24ac9121f4ba48013ac14d6a5198f80743", "fields": {"nom_de_la_commune": "CHAUMOT", "libell_d_acheminement": "CHAUMOT", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89094"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a4942d01f87d0fd634fefd6e8decc4ca34aa941", "fields": {"nom_de_la_commune": "CHEMILLY SUR YONNE", "libell_d_acheminement": "CHEMILLY SUR YONNE", "code_postal": "89250", "coordonnees_gps": [47.9169771664, 3.59359231918], "code_commune_insee": "89096"}, "geometry": {"type": "Point", "coordinates": [3.59359231918, 47.9169771664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1019dcfd0418b1e0877afbc87e27456fb2a47484", "fields": {"nom_de_la_commune": "CHENEY", "libell_d_acheminement": "CHENEY", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89098"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7291aa4b5b3d769e902a60afad2abfbb760bc29c", "fields": {"nom_de_la_commune": "CHICHERY", "libell_d_acheminement": "CHICHERY", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89105"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3baef85cb9fe6e96616b8195bebde47f39606675", "fields": {"nom_de_la_commune": "CHITRY", "libell_d_acheminement": "CHITRY", "code_postal": "89530", "coordonnees_gps": [47.7489653756, 3.67103097653], "code_commune_insee": "89108"}, "geometry": {"type": "Point", "coordinates": [3.67103097653, 47.7489653756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d9da8264a5986a0dc4785434968abb2597a4ea", "fields": {"nom_de_la_commune": "CISERY", "libell_d_acheminement": "CISERY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89109"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdac8c194a737cdf485477c151f3f89e6d942ab7", "fields": {"nom_de_la_commune": "COLLEMIERS", "libell_d_acheminement": "COLLEMIERS", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89113"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b899568c70b592114c0ec2d407e070a484d1e225", "fields": {"nom_de_la_commune": "COULANGERON", "libell_d_acheminement": "COULANGERON", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89117"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a28dfc34034fcee24edd805a7b9cfb5e86526e6", "fields": {"nom_de_la_commune": "CRAVANT", "libell_d_acheminement": "CRAVANT", "code_postal": "89460", "coordonnees_gps": [47.6637745179, 3.68045501565], "code_commune_insee": "89130"}, "geometry": {"type": "Point", "coordinates": [3.68045501565, 47.6637745179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5961c80e934b8fddf22ad1d39d4acc299839a946", "fields": {"nom_de_la_commune": "DOMECY SUR LE VAULT", "libell_d_acheminement": "DOMECY SUR LE VAULT", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89146"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5ed6e58c6afc081bccb438275277e086c82d4be", "fields": {"nom_de_la_commune": "ESCOLIVES STE CAMILLE", "libell_d_acheminement": "ESCOLIVES STE CAMILLE", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89155"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc63fb71332bb7d13eafb79579581a1663351936", "fields": {"nom_de_la_commune": "FOISSY SUR VANNE", "libell_d_acheminement": "FOISSY SUR VANNE", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89171"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9455b9c3fe2eaadbbd60362e8ce60758f27974", "fields": {"nom_de_la_commune": "FONTENAY SOUS FOURONNES", "libell_d_acheminement": "FONTENAY SOUS FOURONNES", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89177"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cda18527d3cb0e0cb3d05743fb84ae6a2da73549", "fields": {"nom_de_la_commune": "FONTENOY", "libell_d_acheminement": "FONTENOY", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89179"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b4e60ddc4fee655a88554381eb283153181129", "fields": {"code_postal": "89110", "code_commune_insee": "89196", "libell_d_acheminement": "VALRAVILLON", "ligne_5": "LADUZ", "nom_de_la_commune": "VALRAVILLON", "coordonnees_gps": [47.8527025116, 3.31027533122]}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a44a8758d251905049e59fc8abc96be626f17c5a", "fields": {"code_postal": "89113", "code_commune_insee": "89196", "libell_d_acheminement": "VALRAVILLON", "ligne_5": "GUERCHY", "nom_de_la_commune": "VALRAVILLON", "coordonnees_gps": [47.8595932276, 3.45642824955]}, "geometry": {"type": "Point", "coordinates": [3.45642824955, 47.8595932276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40055b67a84569878e61603fe29849d545ff82c1", "fields": {"code_postal": "89113", "code_commune_insee": "89196", "libell_d_acheminement": "VALRAVILLON", "ligne_5": "NEUILLY", "nom_de_la_commune": "VALRAVILLON", "coordonnees_gps": [47.8595932276, 3.45642824955]}, "geometry": {"type": "Point", "coordinates": [3.45642824955, 47.8595932276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45d4ab6fc2f4656020a4b540a30df71d6876c247", "fields": {"nom_de_la_commune": "HAUTERIVE", "libell_d_acheminement": "HAUTERIVE", "code_postal": "89250", "coordonnees_gps": [47.9169771664, 3.59359231918], "code_commune_insee": "89200"}, "geometry": {"type": "Point", "coordinates": [3.59359231918, 47.9169771664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce61f00b6b1deb584005f0550da065caa12d9cc9", "fields": {"nom_de_la_commune": "JOUY", "libell_d_acheminement": "JOUY", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89209"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6342a695f55d60d068e6a27296cee78c71b9b7e8", "fields": {"nom_de_la_commune": "LAINSECQ", "libell_d_acheminement": "LAINSECQ", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89216"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29157cf83626145c90c9d353fb3f41d4158f46d2", "fields": {"nom_de_la_commune": "LALANDE", "libell_d_acheminement": "LALANDE", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89217"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c686922df4d9b0b5a2b41c6561cfb43f46a64015", "fields": {"nom_de_la_commune": "LAROCHE ST CYDROINE", "libell_d_acheminement": "LAROCHE ST CYDROINE", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89218"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae4fd457cbf043261783e3a4bf3e25ae0598b914", "fields": {"nom_de_la_commune": "LASSON", "libell_d_acheminement": "LASSON", "code_postal": "89570", "coordonnees_gps": [48.0650523517, 3.77308517186], "code_commune_insee": "89219"}, "geometry": {"type": "Point", "coordinates": [3.77308517186, 48.0650523517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b52e3c95f08027b0491e3726d1696e033611894e", "fields": {"nom_de_la_commune": "LEUGNY", "libell_d_acheminement": "LEUGNY", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89221"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb7c3bafe387c80007fb21374eb490f276c98bd9", "fields": {"nom_de_la_commune": "LUCY SUR CURE", "libell_d_acheminement": "LUCY SUR CURE", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89233"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d050e8565d206dac26fb39cf4d06f81c8353d2e", "fields": {"nom_de_la_commune": "MAGNY", "libell_d_acheminement": "MAGNY", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89235"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37e88b3e425c9bc04ba3bccf4134ad5d0aeb26af", "fields": {"nom_de_la_commune": "MALIGNY", "libell_d_acheminement": "MALIGNY", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89242"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e31bd3cc1f50cc92e73c11dbb9f74c24f50a952d", "fields": {"code_postal": "89440", "code_commune_insee": "89246", "libell_d_acheminement": "MASSANGIS", "ligne_5": "CIVRY SUR SEREIN", "nom_de_la_commune": "MASSANGIS", "coordonnees_gps": [47.6035566151, 3.94438817513]}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83175aa40188da9f9ba800244d586c873b366a4d", "fields": {"nom_de_la_commune": "MERRY SEC", "libell_d_acheminement": "MERRY SEC", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89252"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9ecc7bdef86fed951c01262953c47010f45b118", "fields": {"nom_de_la_commune": "MERRY SUR YONNE", "libell_d_acheminement": "MERRY SUR YONNE", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89253"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1832030e22c82b0b2386ece1269e21c3cabcf40e", "fields": {"nom_de_la_commune": "MOLESMES", "libell_d_acheminement": "MOLESMES", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89260"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41815fb65c24264cb983406f59ff08b7a92df52b", "fields": {"nom_de_la_commune": "MOUFFY", "libell_d_acheminement": "MOUFFY", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89270"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae5afb74496230822285475069f815cac19e9444", "fields": {"nom_de_la_commune": "NEUVY SAUTOUR", "libell_d_acheminement": "NEUVY SAUTOUR", "code_postal": "89570", "coordonnees_gps": [48.0650523517, 3.77308517186], "code_commune_insee": "89276"}, "geometry": {"type": "Point", "coordinates": [3.77308517186, 48.0650523517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d53afaa78d9a66630b9be1337598b2feb06d93e", "fields": {"nom_de_la_commune": "ORMOY", "libell_d_acheminement": "ORMOY", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89282"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3b8a5f74fd8e7c92f51dde37ac3a753b90396e3", "fields": {"nom_de_la_commune": "PAROY SUR THOLON", "libell_d_acheminement": "PAROY SUR THOLON", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89289"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9613015352ad81911485c44728951415d19009b", "fields": {"nom_de_la_commune": "PIFFONDS", "libell_d_acheminement": "PIFFONDS", "code_postal": "89330", "coordonnees_gps": [48.032264148, 3.20612795948], "code_commune_insee": "89298"}, "geometry": {"type": "Point", "coordinates": [3.20612795948, 48.032264148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "614337b6b403e695fd29c8f86c8e22305f771f31", "fields": {"nom_de_la_commune": "PIMELLES", "libell_d_acheminement": "PIMELLES", "code_postal": "89740", "coordonnees_gps": [47.8818432243, 4.21631025532], "code_commune_insee": "89299"}, "geometry": {"type": "Point", "coordinates": [4.21631025532, 47.8818432243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f99b538945458393c4d560473210fe6db1f2ce2e", "fields": {"nom_de_la_commune": "POILLY SUR THOLON", "libell_d_acheminement": "POILLY SUR THOLON", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89304"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb63cef0317e03f577f22fb8952a271193287b17", "fields": {"nom_de_la_commune": "PONTAUBERT", "libell_d_acheminement": "PONTAUBERT", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89306"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b027a0daf84e897f353c24d82d19e282108c3cc0", "fields": {"nom_de_la_commune": "PONT SUR VANNE", "libell_d_acheminement": "PONT SUR VANNE", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89308"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2f6631c2b4aa00de0c6c5963ab61c5b968b0a3c", "fields": {"nom_de_la_commune": "PONT SUR YONNE", "libell_d_acheminement": "PONT SUR YONNE", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89309"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc00c5ad891becc476cc2306da3157e77f8fc12b", "fields": {"nom_de_la_commune": "PROVENCY", "libell_d_acheminement": "PROVENCY", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89316"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10fa764c086ea921da664f586d9168cf132f21f2", "fields": {"nom_de_la_commune": "QUARRE LES TOMBES", "libell_d_acheminement": "QUARRE LES TOMBES", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89318"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5633aaea6124213ce12aecc0c6e7bc76279ca003", "fields": {"nom_de_la_commune": "ROUVRAY", "libell_d_acheminement": "ROUVRAY", "code_postal": "89230", "coordonnees_gps": [47.8736260465, 3.68278303348], "code_commune_insee": "89328"}, "geometry": {"type": "Point", "coordinates": [3.68278303348, 47.8736260465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c8446ff4f51eb675ef0caa847ce235884df263", "fields": {"nom_de_la_commune": "ST AGNAN", "libell_d_acheminement": "ST AGNAN", "code_postal": "89340", "coordonnees_gps": [48.3152294161, 3.08931043068], "code_commune_insee": "89332"}, "geometry": {"type": "Point", "coordinates": [3.08931043068, 48.3152294161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaab22a295c3678590f3b3af473fb706a33a95a0", "fields": {"nom_de_la_commune": "ST DENIS LES SENS", "libell_d_acheminement": "ST DENIS LES SENS", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89342"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03663cc64cc4d158d198ee3802b6d533705690f7", "fields": {"nom_de_la_commune": "ST FLORENTIN", "libell_d_acheminement": "ST FLORENTIN", "code_postal": "89600", "coordonnees_gps": [47.9775250716, 3.71821754522], "code_commune_insee": "89345"}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6498203faeab7b5e4a497ef8c1df6ed0abe96cde", "fields": {"nom_de_la_commune": "ST JULIEN DU SAULT", "libell_d_acheminement": "ST JULIEN DU SAULT", "code_postal": "89330", "coordonnees_gps": [48.032264148, 3.20612795948], "code_commune_insee": "89348"}, "geometry": {"type": "Point", "coordinates": [3.20612795948, 48.032264148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a812d7b3c53f2291bb15b703539224c968d55f44", "fields": {"nom_de_la_commune": "ST LEGER VAUBAN", "libell_d_acheminement": "ST LEGER VAUBAN", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89349"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "027cf0e21da2e661fdb8d218964d40c2fc0f25ba", "fields": {"nom_de_la_commune": "ST MARTIN DU TERTRE", "libell_d_acheminement": "ST MARTIN DU TERTRE", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89354"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50020b8f0c407c03c076d8ed1677d3dcbb4c5ab2", "fields": {"nom_de_la_commune": "ST MAURICE AUX RICHES HOMMES", "libell_d_acheminement": "ST MAURICE AUX RICHES HOMMES", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89359"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59c80e288decada22124c9005ddbbfe26a610265", "fields": {"nom_de_la_commune": "ST PERE", "libell_d_acheminement": "ST PERE", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89364"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592f42b5fbd6473b550d915d511f7bb2c7cc7c06", "fields": {"nom_de_la_commune": "SALIGNY", "libell_d_acheminement": "SALIGNY", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89373"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00daf4409a8a98f818b28c4455e726c8d3960609", "fields": {"nom_de_la_commune": "SANTIGNY", "libell_d_acheminement": "SANTIGNY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89375"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc5b8079843a9db5814d82b00330ebea1248e566", "fields": {"nom_de_la_commune": "SARRY", "libell_d_acheminement": "SARRY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89376"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "826a1a6a894f6e7235cb01e8ec39efcd74fc39eb", "fields": {"nom_de_la_commune": "SAUVIGNY LE BEUREAL", "libell_d_acheminement": "SAUVIGNY LE BEUREAL", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89377"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0908f91e35103d34d18ab507fc84a7faffdad40", "fields": {"nom_de_la_commune": "SENNEVOY LE BAS", "libell_d_acheminement": "SENNEVOY LE BAS", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89385"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90b1d7392b5f9df0f75bcccbb7555034f0878785", "fields": {"nom_de_la_commune": "SERBONNES", "libell_d_acheminement": "SERBONNES", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89390"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a32489bb5390c4f9553a7cd50d3021a4b013895d", "fields": {"nom_de_la_commune": "SOUMAINTRAIN", "libell_d_acheminement": "SOUMAINTRAIN", "code_postal": "89570", "coordonnees_gps": [48.0650523517, 3.77308517186], "code_commune_insee": "89402"}, "geometry": {"type": "Point", "coordinates": [3.77308517186, 48.0650523517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d462b070c20d9417881fadacafca39a8c542170", "fields": {"nom_de_la_commune": "STIGNY", "libell_d_acheminement": "STIGNY", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89403"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d02e62a249a44e803a1cd16ccb17c3550a756d67", "fields": {"nom_de_la_commune": "THURY", "libell_d_acheminement": "THURY", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89416"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43aa911d31eba087566cab2cd11d0286fb34ddc6", "fields": {"nom_de_la_commune": "TONNERRE", "libell_d_acheminement": "TONNERRE", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89418"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4488af3e359e94fcdf032142bd703ec31ded08ff", "fields": {"nom_de_la_commune": "TOUCY", "libell_d_acheminement": "TOUCY", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89419"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8728515c50fe89d3cd9c7e7b35764810d330c4a", "fields": {"nom_de_la_commune": "TRONCHOY", "libell_d_acheminement": "TRONCHOY", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89423"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8172d0b04937d9a7c52e216f741fbe17922a9689", "fields": {"nom_de_la_commune": "VAL DE MERCY", "libell_d_acheminement": "VAL DE MERCY", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89426"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56637ac734e5ee1fb68694cc78c27c04d1635eab", "fields": {"code_postal": "89600", "code_commune_insee": "89439", "libell_d_acheminement": "VERGIGNY", "ligne_5": "BOUILLY", "nom_de_la_commune": "VERGIGNY", "coordonnees_gps": [47.9775250716, 3.71821754522]}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93ce51f532504c71eb61f139c57817ea17aea005", "fields": {"code_postal": "89270", "code_commune_insee": "89441", "libell_d_acheminement": "VERMENTON", "ligne_5": "SACY", "nom_de_la_commune": "VERMENTON", "coordonnees_gps": [47.6119078009, 3.74587483538]}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da6b9092d70bf7612842cb2a7e519e6e8e6d3cbe", "fields": {"nom_de_la_commune": "VIGNES", "libell_d_acheminement": "VIGNES", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89448"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d064118f4fdd9bbc037099a9cfebdf14df9fe27a", "fields": {"nom_de_la_commune": "VILLEBLEVIN", "libell_d_acheminement": "VILLEBLEVIN", "code_postal": "89340", "coordonnees_gps": [48.3152294161, 3.08931043068], "code_commune_insee": "89449"}, "geometry": {"type": "Point", "coordinates": [3.08931043068, 48.3152294161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27ddff66a2094543b8ddce660bc46c1a8df878b3", "fields": {"nom_de_la_commune": "VILLEBOUGIS", "libell_d_acheminement": "VILLEBOUGIS", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89450"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f19ecb4a68b61c5c86216e9514d0a3ed1e2bea", "fields": {"nom_de_la_commune": "VILLECHETIVE", "libell_d_acheminement": "VILLECHETIVE", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89451"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0486d5a1a436693aaeea48784678ea122412dd", "fields": {"nom_de_la_commune": "VILLEFARGEAU", "libell_d_acheminement": "VILLEFARGEAU", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89453"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "705a1bcee9e227ab69d0e2cae5063e112d1e3cb0", "fields": {"nom_de_la_commune": "VILLENEUVE LA DONDAGRE", "libell_d_acheminement": "VILLENEUVE LA DONDAGRE", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89459"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ec41dee92cfd402b1a503a52834234a97466299", "fields": {"nom_de_la_commune": "VILLENEUVE LA GUYARD", "libell_d_acheminement": "VILLENEUVE LA GUYARD", "code_postal": "89340", "coordonnees_gps": [48.3152294161, 3.08931043068], "code_commune_insee": "89460"}, "geometry": {"type": "Point", "coordinates": [3.08931043068, 48.3152294161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f01467a0fa9527b6bb951b95f7e5884d0b9a9d3", "fields": {"nom_de_la_commune": "VILLENEUVE LES GENETS", "libell_d_acheminement": "VILLENEUVE LES GENETS", "code_postal": "89350", "coordonnees_gps": [47.7773444304, 3.09490527015], "code_commune_insee": "89462"}, "geometry": {"type": "Point", "coordinates": [3.09490527015, 47.7773444304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f84767aa6864e75816ab38de422412ad233fde", "fields": {"nom_de_la_commune": "VILLENEUVE SUR YONNE", "libell_d_acheminement": "VILLENEUVE SUR YONNE", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89464"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfc6b5db998c4a5fc2ec58a7485d567fd161d601", "fields": {"nom_de_la_commune": "VILLEVALLIER", "libell_d_acheminement": "VILLEVALLIER", "code_postal": "89330", "coordonnees_gps": [48.032264148, 3.20612795948], "code_commune_insee": "89468"}, "geometry": {"type": "Point", "coordinates": [3.20612795948, 48.032264148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95dc552907d598ba70862c46049a5752dd68a887", "fields": {"code_postal": "89260", "code_commune_insee": "89469", "libell_d_acheminement": "PERCENEIGE", "ligne_5": "PLESSIS DU MEE", "nom_de_la_commune": "PERCENEIGE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb61bd23bb11e206dea7ebbb93a8800c8e3f353a", "fields": {"code_postal": "89260", "code_commune_insee": "89469", "libell_d_acheminement": "PERCENEIGE", "ligne_5": "SOGNES", "nom_de_la_commune": "PERCENEIGE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cad3d578eb34a826b0decbf530fd1fd4cbe70321", "fields": {"nom_de_la_commune": "VILLIERS SUR THOLON", "libell_d_acheminement": "VILLIERS SUR THOLON", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89473"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1132deae24393804d2bfec9ca5e74356ccdb325f", "fields": {"nom_de_la_commune": "VILLY", "libell_d_acheminement": "VILLY", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89477"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "378655efd90368a1a0fa2fa3653181b254653e3c", "fields": {"nom_de_la_commune": "VIVIERS", "libell_d_acheminement": "VIVIERS", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89482"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "661daf405d1ccb463884bb8bdd8b7e9087889f4a", "fields": {"nom_de_la_commune": "YROUERRE", "libell_d_acheminement": "YROUERRE", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89486"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87166117564aed17c0ddbdff26d13d725286c9ac", "fields": {"nom_de_la_commune": "AUXELLES HAUT", "libell_d_acheminement": "AUXELLES HAUT", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90006"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acfad541fc27f57fe0a28ef76d57f47c47b1f2b0", "fields": {"nom_de_la_commune": "BORON", "libell_d_acheminement": "BORON", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90014"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ec9ce50edb2db163649851895e4d9a1e45f208", "fields": {"nom_de_la_commune": "OTTWILLER", "libell_d_acheminement": "OTTWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67369"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aefd8dee9b085ab0abb5ea7467a6b06f425e231", "fields": {"nom_de_la_commune": "PETERSBACH", "libell_d_acheminement": "PETERSBACH", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67370"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1353fa55daecf7855b01fcc0c7dc745e1fc4797", "fields": {"nom_de_la_commune": "PRINTZHEIM", "libell_d_acheminement": "PRINTZHEIM", "code_postal": "67490", "coordonnees_gps": [48.7504133614, 7.47251563059], "code_commune_insee": "67380"}, "geometry": {"type": "Point", "coordinates": [7.47251563059, 48.7504133614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b89dc15bc949b8e3968f297cec4a5ce9de5221b8", "fields": {"nom_de_la_commune": "RANRUPT", "libell_d_acheminement": "RANRUPT", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67384"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a0f1ba05455c18078e724663db3d4603707f50", "fields": {"nom_de_la_commune": "REUTENBOURG", "libell_d_acheminement": "REUTENBOURG", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67395"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d03c9997bfecd30839a35602617f0a31b1c25ecf", "fields": {"nom_de_la_commune": "RITTERSHOFFEN", "libell_d_acheminement": "RITTERSHOFFEN", "code_postal": "67690", "coordonnees_gps": [48.893568383, 7.99177649059], "code_commune_insee": "67404"}, "geometry": {"type": "Point", "coordinates": [7.99177649059, 48.893568383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30c8c77129c65f5eb60c950e8b24207ec4ade2b", "fields": {"nom_de_la_commune": "ROESCHWOOG", "libell_d_acheminement": "ROESCHWOOG", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67405"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d56e0b02c8cccc3dd08ff7bdbd9cd1774660878", "fields": {"nom_de_la_commune": "ROSHEIM", "libell_d_acheminement": "ROSHEIM", "code_postal": "67560", "coordonnees_gps": [48.4928593453, 7.41301977896], "code_commune_insee": "67411"}, "geometry": {"type": "Point", "coordinates": [7.41301977896, 48.4928593453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ff098442638fb94b246555e7c0e55bc7a2e8765", "fields": {"code_postal": "67130", "code_commune_insee": "67420", "libell_d_acheminement": "RUSS", "ligne_5": "SCHWARZBACH", "nom_de_la_commune": "RUSS", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12544527a1c59ac1bc874747ab1e512579f7d069", "fields": {"code_postal": "67130", "code_commune_insee": "67420", "libell_d_acheminement": "RUSS", "ligne_5": "STEINBACH", "nom_de_la_commune": "RUSS", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb2a71be52f37d4c27072ce0f2dd75737e80018", "fields": {"nom_de_la_commune": "ST BLAISE LA ROCHE", "libell_d_acheminement": "ST BLAISE LA ROCHE", "code_postal": "67420", "coordonnees_gps": [48.3874894068, 7.1481297444], "code_commune_insee": "67424"}, "geometry": {"type": "Point", "coordinates": [7.1481297444, 48.3874894068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f89a207d4052eaf79cacb92bc799f8e8b571325c", "fields": {"nom_de_la_commune": "ST JEAN SAVERNE", "libell_d_acheminement": "ST JEAN SAVERNE", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67425"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d462b3ca6bdf77f21c63b22b254124364e7437ae", "fields": {"nom_de_la_commune": "SCHAEFFERSHEIM", "libell_d_acheminement": "SCHAEFFERSHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67438"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41bf6b444fa30b13c0f302e0f6b7b3f6045091bd", "fields": {"nom_de_la_commune": "SCHAFFHOUSE SUR ZORN", "libell_d_acheminement": "SCHAFFHOUSE SUR ZORN", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67439"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bd8629668e38817edd87b2ff8db3e7eeedf0cff", "fields": {"nom_de_la_commune": "SCHEIBENHARD", "libell_d_acheminement": "SCHEIBENHARD", "code_postal": "67630", "coordonnees_gps": [48.9645506647, 8.14057364298], "code_commune_insee": "67443"}, "geometry": {"type": "Point", "coordinates": [8.14057364298, 48.9645506647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad83c3e14c37fe74fed305c8833942a3bb4fb09", "fields": {"nom_de_la_commune": "SCHLEITHAL", "libell_d_acheminement": "SCHLEITHAL", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67451"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3409e670b8361c38ef208beae4613443d0a1bbd", "fields": {"nom_de_la_commune": "SCHOENBOURG", "libell_d_acheminement": "SCHOENBOURG", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67454"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c850c6d4470c0a1a0410f14375e9e9505f8d5b35", "fields": {"nom_de_la_commune": "SCHWEIGHOUSE SUR MODER", "libell_d_acheminement": "SCHWEIGHOUSE SUR MODER", "code_postal": "67590", "coordonnees_gps": [48.811939028, 7.71713029127], "code_commune_insee": "67458"}, "geometry": {"type": "Point", "coordinates": [7.71713029127, 48.811939028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ab3ab58fe489bc156600478ad79103d233a3b1", "fields": {"nom_de_la_commune": "SOLBACH", "libell_d_acheminement": "SOLBACH", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67470"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc4e6d23ae2a1e1f5f65ed77f9dc811fae2c84c", "fields": {"nom_de_la_commune": "STEINBOURG", "libell_d_acheminement": "STEINBOURG", "code_postal": "67790", "coordonnees_gps": [48.7643439424, 7.4141890121], "code_commune_insee": "67478"}, "geometry": {"type": "Point", "coordinates": [7.4141890121, 48.7643439424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4da496af38adfa252aa1b9db95be088ff647778", "fields": {"nom_de_la_commune": "STRASBOURG", "libell_d_acheminement": "STRASBOURG", "code_postal": "67000", "coordonnees_gps": [48.5716222333, 7.76768232804], "code_commune_insee": "67482"}, "geometry": {"type": "Point", "coordinates": [7.76768232804, 48.5716222333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218da8502702ea40a2cdb00a4b0ad970baf3e60e", "fields": {"nom_de_la_commune": "THAL DRULINGEN", "libell_d_acheminement": "THAL DRULINGEN", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67488"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6223226a2f422ee5d28e910424a300148b965504", "fields": {"nom_de_la_commune": "TRAENHEIM", "libell_d_acheminement": "TRAENHEIM", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67492"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "219a5c78176014b10626b1b7da92909fbdb57440", "fields": {"nom_de_la_commune": "UHLWILLER", "libell_d_acheminement": "UHLWILLER", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67497"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1023624501a951e3bef4297bc8481100e7d9a656", "fields": {"nom_de_la_commune": "WALDOLWISHEIM", "libell_d_acheminement": "WALDOLWISHEIM", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67515"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "317d6cf5edc9d005c00e28e3bee06ac3565164cd", "fields": {"nom_de_la_commune": "WANGEN", "libell_d_acheminement": "WANGEN", "code_postal": "67520", "coordonnees_gps": [48.6254584332, 7.49951145108], "code_commune_insee": "67517"}, "geometry": {"type": "Point", "coordinates": [7.49951145108, 48.6254584332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98a663bf15008aee3427146755e5c94bd3081ba", "fields": {"nom_de_la_commune": "WESTHOFFEN", "libell_d_acheminement": "WESTHOFFEN", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67525"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c8db9615d9b788fb0a9055299ceeded66bb0f05", "fields": {"nom_de_la_commune": "WINDSTEIN", "libell_d_acheminement": "WINDSTEIN", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67536"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10e007689dd4fb8e205b0c28ef0aae725e6e27f2", "fields": {"nom_de_la_commune": "WINGEN", "libell_d_acheminement": "WINGEN", "code_postal": "67510", "coordonnees_gps": [49.0227242639, 7.76839928059], "code_commune_insee": "67537"}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a95edfa2f26d544be5069d55652c616feffb009", "fields": {"code_postal": "67510", "code_commune_insee": "67537", "libell_d_acheminement": "WINGEN", "ligne_5": "PETIT WINGEN", "nom_de_la_commune": "WINGEN", "coordonnees_gps": [49.0227242639, 7.76839928059]}, "geometry": {"type": "Point", "coordinates": [7.76839928059, 49.0227242639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2ad14eb2d02fd18baca103b8c260f09ecf6a98c", "fields": {"code_postal": "67170", "code_commune_insee": "67539", "libell_d_acheminement": "WINGERSHEIM LES QUATRE BANS", "ligne_5": "MITTELHAUSEN", "nom_de_la_commune": "WINGERSHEIM LES QUATRE BANS", "coordonnees_gps": [48.7372742925, 7.70176270666]}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd92e5d9a9417cd7b46e318523c29ce5c9d6bce", "fields": {"code_postal": "67130", "code_commune_insee": "67543", "libell_d_acheminement": "WISCHES", "ligne_5": "NETZENBACH", "nom_de_la_commune": "WISCHES", "coordonnees_gps": [48.4803602353, 7.21016561348]}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ed0c25f126cd15c9d9dda8f2c3b7a325da9d05", "fields": {"nom_de_la_commune": "WITTERNHEIM", "libell_d_acheminement": "WITTERNHEIM", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67545"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22db32af13376ab68a2612fcaa0fe0e30c9fbcd8", "fields": {"nom_de_la_commune": "WITTERSHEIM", "libell_d_acheminement": "WITTERSHEIM", "code_postal": "67670", "coordonnees_gps": [48.7613693186, 7.64473130495], "code_commune_insee": "67546"}, "geometry": {"type": "Point", "coordinates": [7.64473130495, 48.7613693186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73eaf7cca42761f7175db7d76490caa034bf5deb", "fields": {"nom_de_la_commune": "ZEINHEIM", "libell_d_acheminement": "ZEINHEIM", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67556"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcccdaddfef75e708830c64d753c0f98e40d3f44", "fields": {"nom_de_la_commune": "ALGOLSHEIM", "libell_d_acheminement": "ALGOLSHEIM", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68001"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9655c142ea1c5ec3580626e958ff62ab9e7995e7", "fields": {"nom_de_la_commune": "ASPACH LE BAS", "libell_d_acheminement": "ASPACH LE BAS", "code_postal": "68700", "coordonnees_gps": [47.8077826523, 7.1623079719], "code_commune_insee": "68011"}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73cedc0e3cc13227e996b314882872671133e2db", "fields": {"nom_de_la_commune": "ASPACH MICHELBACH", "libell_d_acheminement": "ASPACH MICHELBACH", "code_postal": "68700", "coordonnees_gps": [47.8077826523, 7.1623079719], "code_commune_insee": "68012"}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fb56c774d085ac5057ea3d62e1af731a10896a2", "fields": {"code_postal": "68700", "code_commune_insee": "68012", "libell_d_acheminement": "ASPACH MICHELBACH", "ligne_5": "MICHELBACH", "nom_de_la_commune": "ASPACH MICHELBACH", "coordonnees_gps": [47.8077826523, 7.1623079719]}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2fa1813bce82f2b0458229598c2ebaef358335", "fields": {"nom_de_la_commune": "AUBURE", "libell_d_acheminement": "AUBURE", "code_postal": "68150", "coordonnees_gps": [48.1955023009, 7.29565988494], "code_commune_insee": "68014"}, "geometry": {"type": "Point", "coordinates": [7.29565988494, 48.1955023009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30453dfc6e1d3449a2e0f280de915f6e2ce469ae", "fields": {"nom_de_la_commune": "BERRWILLER", "libell_d_acheminement": "BERRWILLER", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68032"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e97cbb629a2b21f4d8c3e1ba94054b5ee54600e", "fields": {"nom_de_la_commune": "BIESHEIM", "libell_d_acheminement": "BIESHEIM", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68036"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1464997d0ba2cf532c276ff2a6d0d5133ac1dc68", "fields": {"nom_de_la_commune": "BISCHWIHR", "libell_d_acheminement": "BISCHWIHR", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68038"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c6e8ccda4d170537b5a4a05b061c95bb23d390b", "fields": {"nom_de_la_commune": "BISEL", "libell_d_acheminement": "BISEL", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68039"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a4c85edf1b75f7b66317946393f71b0325b8cd", "fields": {"nom_de_la_commune": "BOURBACH LE BAS", "libell_d_acheminement": "BOURBACH LE BAS", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68045"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a96a1604821152c3a0d6820f02aa0cea0ef8c85", "fields": {"nom_de_la_commune": "BRECHAUMONT", "libell_d_acheminement": "BRECHAUMONT", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68050"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2e235de0ac42eaecd14b18ad7e1be12483a5d6", "fields": {"nom_de_la_commune": "BRINCKHEIM", "libell_d_acheminement": "BRINCKHEIM", "code_postal": "68870", "coordonnees_gps": [47.6331033531, 7.48190833837], "code_commune_insee": "68054"}, "geometry": {"type": "Point", "coordinates": [7.48190833837, 47.6331033531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44e89c86b5cc695a768ca3647bf9364e64f10427", "fields": {"nom_de_la_commune": "BUHL", "libell_d_acheminement": "BUHL", "code_postal": "68530", "coordonnees_gps": [47.9213082038, 7.15976445089], "code_commune_insee": "68058"}, "geometry": {"type": "Point", "coordinates": [7.15976445089, 47.9213082038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bcbd63880cdb58d2efb071e182d68f2f1a9fd80", "fields": {"nom_de_la_commune": "BURNHAUPT LE BAS", "libell_d_acheminement": "BURNHAUPT LE BAS", "code_postal": "68520", "coordonnees_gps": [47.7328574448, 7.15152670714], "code_commune_insee": "68059"}, "geometry": {"type": "Point", "coordinates": [7.15152670714, 47.7328574448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a1db6595eb8054c2c94f766c7fd39a0038840d", "fields": {"nom_de_la_commune": "BUSCHWILLER", "libell_d_acheminement": "BUSCHWILLER", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68061"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95575ce3862e3a836060cfc6ab9a0ce2c0612ed2", "fields": {"nom_de_la_commune": "CARSPACH", "libell_d_acheminement": "CARSPACH", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68062"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a5f2da7db184ea3123d6008399d844a5983720f", "fields": {"nom_de_la_commune": "ST BERNARD", "libell_d_acheminement": "ST BERNARD", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68081"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34de8d60be62ba5786817e5fec56f3f6cadd6fe4", "fields": {"nom_de_la_commune": "FELDKIRCH", "libell_d_acheminement": "FELDKIRCH", "code_postal": "68540", "coordonnees_gps": [47.8545137602, 7.25864777821], "code_commune_insee": "68088"}, "geometry": {"type": "Point", "coordinates": [7.25864777821, 47.8545137602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93118a59ca47b9865a70e1ac841d4999f1248734", "fields": {"nom_de_la_commune": "FISLIS", "libell_d_acheminement": "FISLIS", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68092"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b82b0862dcab6c84d49f40e63ce8a3cbb180a9c7", "fields": {"nom_de_la_commune": "FLAXLANDEN", "libell_d_acheminement": "FLAXLANDEN", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68093"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d95fc999ce3e612a988c803a918f51b7b6e326e0", "fields": {"nom_de_la_commune": "FOLGENSBOURG", "libell_d_acheminement": "FOLGENSBOURG", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68094"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d878715e5f31f10fc577f5e411ca3914b0f337", "fields": {"nom_de_la_commune": "FRANKEN", "libell_d_acheminement": "FRANKEN", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68096"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7038ba3d09cdf86e4b97d2d68e0dfaab6e32aceb", "fields": {"nom_de_la_commune": "GUEBWILLER", "libell_d_acheminement": "GUEBWILLER", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68112"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec50a123f989bef5fa3dc8a8aa3d75ea4d347c68", "fields": {"nom_de_la_commune": "GUEMAR", "libell_d_acheminement": "GUEMAR", "code_postal": "68970", "coordonnees_gps": [48.1892811938, 7.42820187148], "code_commune_insee": "68113"}, "geometry": {"type": "Point", "coordinates": [7.42820187148, 48.1892811938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "903b6392b43e943b3a6969890df40307e1f861ed", "fields": {"nom_de_la_commune": "GUNDOLSHEIM", "libell_d_acheminement": "GUNDOLSHEIM", "code_postal": "68250", "coordonnees_gps": [47.9666931593, 7.27589610767], "code_commune_insee": "68116"}, "geometry": {"type": "Point", "coordinates": [7.27589610767, 47.9666931593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e196c20d6f6176e93295c1c6779208096375a150", "fields": {"nom_de_la_commune": "HABSHEIM", "libell_d_acheminement": "HABSHEIM", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68118"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "560709fe50be1755f1c74abba9ae915321c69f85", "fields": {"nom_de_la_commune": "HAGENBACH", "libell_d_acheminement": "HAGENBACH", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68119"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "decc686bcc23b05c9727a940fcf6d2864878c416", "fields": {"nom_de_la_commune": "HATTSTATT", "libell_d_acheminement": "HATTSTATT", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68123"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6428ff683bdb08ff6647357bf6ce7a1dea344060", "fields": {"nom_de_la_commune": "HEITEREN", "libell_d_acheminement": "HEITEREN", "code_postal": "68600", "coordonnees_gps": [47.9979879124, 7.5293497349], "code_commune_insee": "68130"}, "geometry": {"type": "Point", "coordinates": [7.5293497349, 47.9979879124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97dc0cf83860a6b4f85fc97138a90f42cc2fc1b0", "fields": {"nom_de_la_commune": "HEIWILLER", "libell_d_acheminement": "HEIWILLER", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68131"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19792b9b10caa70e4e8965ed6d958a91a1e68a88", "fields": {"nom_de_la_commune": "HELFRANTZKIRCH", "libell_d_acheminement": "HELFRANTZKIRCH", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68132"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8ff6e32a44449e2a65b057a83ad3a35914e2fa", "fields": {"nom_de_la_commune": "HINDLINGEN", "libell_d_acheminement": "HINDLINGEN", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68137"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abf981dc946927bf2da14d1637639cc31ef1b265", "fields": {"nom_de_la_commune": "HIRSINGUE", "libell_d_acheminement": "HIRSINGUE", "code_postal": "68560", "coordonnees_gps": [47.5764862918, 7.25411571826], "code_commune_insee": "68138"}, "geometry": {"type": "Point", "coordinates": [7.25411571826, 47.5764862918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "918524201cd59f3e5fca29bf403738f38514bbb0", "fields": {"nom_de_la_commune": "HIRTZBACH", "libell_d_acheminement": "HIRTZBACH", "code_postal": "68118", "coordonnees_gps": [47.5908691291, 7.20858159411], "code_commune_insee": "68139"}, "geometry": {"type": "Point", "coordinates": [7.20858159411, 47.5908691291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2da44fd0458fc57c5b7199c8642affa71b74d721", "fields": {"nom_de_la_commune": "HUNINGUE", "libell_d_acheminement": "HUNINGUE", "code_postal": "68330", "coordonnees_gps": [47.5891444048, 7.58037007257], "code_commune_insee": "68149"}, "geometry": {"type": "Point", "coordinates": [7.58037007257, 47.5891444048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721c324a3507feea09d5cb7f86a1007d06b4b624", "fields": {"nom_de_la_commune": "HUSSEREN WESSERLING", "libell_d_acheminement": "HUSSEREN WESSERLING", "code_postal": "68470", "coordonnees_gps": [47.8911637424, 6.97731625336], "code_commune_insee": "68151"}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aea8c083f04948b7cd8b5b610d9dfcfe5758db3", "fields": {"nom_de_la_commune": "ILLHAEUSERN", "libell_d_acheminement": "ILLHAEUSERN", "code_postal": "68970", "coordonnees_gps": [48.1892811938, 7.42820187148], "code_commune_insee": "68153"}, "geometry": {"type": "Point", "coordinates": [7.42820187148, 48.1892811938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470de80f80d4b617107490534b31abd7eca7be31", "fields": {"nom_de_la_commune": "INGERSHEIM", "libell_d_acheminement": "INGERSHEIM", "code_postal": "68040", "coordonnees_gps": [48.1012258852, 7.31090196932], "code_commune_insee": "68155"}, "geometry": {"type": "Point", "coordinates": [7.31090196932, 48.1012258852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faaf14603f2b4204e8e2880d281e74bccecf219d", "fields": {"nom_de_la_commune": "KAYSERSBERG VIGNOBLE", "libell_d_acheminement": "KAYSERSBERG VIGNOBLE", "code_postal": "68240", "coordonnees_gps": [48.1678355817, 7.21603176483], "code_commune_insee": "68162"}, "geometry": {"type": "Point", "coordinates": [7.21603176483, 48.1678355817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3df2857b568f0fb35cf787cb22048f5f211be3bc", "fields": {"nom_de_la_commune": "KIRCHBERG", "libell_d_acheminement": "KIRCHBERG", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68167"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ca4fd43d141b6426cad198042621f50520ed69", "fields": {"nom_de_la_commune": "KRUTH", "libell_d_acheminement": "KRUTH", "code_postal": "68820", "coordonnees_gps": [47.9620965361, 6.96343945607], "code_commune_insee": "68171"}, "geometry": {"type": "Point", "coordinates": [6.96343945607, 47.9620965361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7961ccd969daeb1af9efe1238f854b2aa30c35", "fields": {"code_postal": "68610", "code_commune_insee": "68178", "libell_d_acheminement": "LAUTENBACHZELL", "ligne_5": "SENGERN", "nom_de_la_commune": "LAUTENBACHZELL", "coordonnees_gps": [47.9413913563, 7.11100776725]}, "geometry": {"type": "Point", "coordinates": [7.11100776725, 47.9413913563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77fb34d6b54360ae6ade01f837ca35621e920ae3", "fields": {"nom_de_la_commune": "LAUW", "libell_d_acheminement": "LAUW", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68179"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d21b16f3ed1cafab0f7df3ced158bab7ca363d5f", "fields": {"nom_de_la_commune": "LEVONCOURT", "libell_d_acheminement": "LEVONCOURT", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68181"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d6e266e2263f8af84719b7e7b94c02566bb946b", "fields": {"nom_de_la_commune": "LEYMEN", "libell_d_acheminement": "LEYMEN", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68182"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863a58365716a6504aee7b64dbcc4212364098e2", "fields": {"nom_de_la_commune": "LIGSDORF", "libell_d_acheminement": "LIGSDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68186"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bd387629c06adab57e3e9f2e29d587d9f72a7ce", "fields": {"nom_de_la_commune": "LINTHAL", "libell_d_acheminement": "LINTHAL", "code_postal": "68610", "coordonnees_gps": [47.9413913563, 7.11100776725], "code_commune_insee": "68188"}, "geometry": {"type": "Point", "coordinates": [7.11100776725, 47.9413913563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27aa9354e88e84c90f31c4fa801cf49ce9f8d48c", "fields": {"nom_de_la_commune": "MAGSTATT LE BAS", "libell_d_acheminement": "MAGSTATT LE BAS", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68197"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "920d26634022991bf9a921a4c2976f5a94ac392d", "fields": {"nom_de_la_commune": "MAGSTATT LE HAUT", "libell_d_acheminement": "MAGSTATT LE HAUT", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68198"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54bf85a6fd945133d5429b670625b1724827d5c5", "fields": {"nom_de_la_commune": "MANSPACH", "libell_d_acheminement": "MANSPACH", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68200"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee89404de12da9cac14b4845e7bc3cea68fb8693", "fields": {"nom_de_la_commune": "MASEVAUX NIEDERBRUCK", "libell_d_acheminement": "MASEVAUX NIEDERBRUCK", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68201"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179cb9d9597d427a5c9e41d7634acd25f7a02ca5", "fields": {"nom_de_la_commune": "MEYENHEIM", "libell_d_acheminement": "MEYENHEIM", "code_postal": "68890", "coordonnees_gps": [47.9000897431, 7.37306716667], "code_commune_insee": "68205"}, "geometry": {"type": "Point", "coordinates": [7.37306716667, 47.9000897431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "120c8c3eaa071ccdf34421b393b002b28ee35c2b", "fields": {"nom_de_la_commune": "MOOSLARGUE", "libell_d_acheminement": "MOOSLARGUE", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68216"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "081550ef39d26bb10bbe1ad5659a18a37bd496d1", "fields": {"code_postal": "68780", "code_commune_insee": "68219", "libell_d_acheminement": "LE HAUT SOULTZBACH", "ligne_5": "SOPPE LE HAUT", "nom_de_la_commune": "LE HAUT SOULTZBACH", "coordonnees_gps": [47.7234740275, 7.06962991753]}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79678f6e8efba683a05dbcf4effe8f3f79082b40", "fields": {"nom_de_la_commune": "MULHOUSE", "libell_d_acheminement": "MULHOUSE", "code_postal": "68100", "coordonnees_gps": [47.7494423807, 7.32540160105], "code_commune_insee": "68224"}, "geometry": {"type": "Point", "coordinates": [7.32540160105, 47.7494423807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7775fd78c8faae00cd25a17fa74c8c748c4837d4", "fields": {"nom_de_la_commune": "MUNTZENHEIM", "libell_d_acheminement": "MUNTZENHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68227"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4af82716e1eef58664fd111481a6bea8843e917e", "fields": {"nom_de_la_commune": "MUNWILLER", "libell_d_acheminement": "MUNWILLER", "code_postal": "68250", "coordonnees_gps": [47.9666931593, 7.27589610767], "code_commune_insee": "68228"}, "geometry": {"type": "Point", "coordinates": [7.27589610767, 47.9666931593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b808d55be3d66a9f1e64b8699506ae483b76763", "fields": {"nom_de_la_commune": "NAMBSHEIM", "libell_d_acheminement": "NAMBSHEIM", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68230"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc0ed23e103d3da66c025b22b6558d7b0ba6c85", "fields": {"nom_de_la_commune": "OBERENTZEN", "libell_d_acheminement": "OBERENTZEN", "code_postal": "68127", "coordonnees_gps": [47.9788629564, 7.39190027996], "code_commune_insee": "68241"}, "geometry": {"type": "Point", "coordinates": [7.39190027996, 47.9788629564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dee06c7882cb6b4c0c0db539157f1b246aa7eec", "fields": {"nom_de_la_commune": "ORBEY", "libell_d_acheminement": "ORBEY", "code_postal": "68370", "coordonnees_gps": [48.1152669785, 7.13528480248], "code_commune_insee": "68249"}, "geometry": {"type": "Point", "coordinates": [7.13528480248, 48.1152669785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6047ae08907111c351bed4c38c39738355cc3b7", "fields": {"nom_de_la_commune": "ORSCHWIHR", "libell_d_acheminement": "ORSCHWIHR", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68250"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f44b2f408b82ecfb47a844ad694134170f41778", "fields": {"nom_de_la_commune": "PFAFFENHEIM", "libell_d_acheminement": "PFAFFENHEIM", "code_postal": "68250", "coordonnees_gps": [47.9666931593, 7.27589610767], "code_commune_insee": "68255"}, "geometry": {"type": "Point", "coordinates": [7.27589610767, 47.9666931593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2b502e445970a47e763d2653a5788825d31093", "fields": {"nom_de_la_commune": "PFASTATT", "libell_d_acheminement": "PFASTATT", "code_postal": "68120", "coordonnees_gps": [47.7768307965, 7.2881348904], "code_commune_insee": "68256"}, "geometry": {"type": "Point", "coordinates": [7.2881348904, 47.7768307965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b9f9b4208f808351ca68c87edf36c4c91b2fa5", "fields": {"nom_de_la_commune": "PULVERSHEIM", "libell_d_acheminement": "PULVERSHEIM", "code_postal": "68840", "coordonnees_gps": [47.8416797177, 7.29887323727], "code_commune_insee": "68258"}, "geometry": {"type": "Point", "coordinates": [7.29887323727, 47.8416797177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01f918e3a39d9183501a731dc5d615c954db2fb", "fields": {"nom_de_la_commune": "RANSPACH LE BAS", "libell_d_acheminement": "RANSPACH LE BAS", "code_postal": "68730", "coordonnees_gps": [47.5988584111, 7.47970961294], "code_commune_insee": "68263"}, "geometry": {"type": "Point", "coordinates": [7.47970961294, 47.5988584111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a3be261fe7b3d22676fdff3f1dffb23350ac5da", "fields": {"nom_de_la_commune": "COTTANCE", "libell_d_acheminement": "COTTANCE", "code_postal": "42360", "coordonnees_gps": [45.793651332, 4.32907155822], "code_commune_insee": "42073"}, "geometry": {"type": "Point", "coordinates": [4.32907155822, 45.793651332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6539c303a6588116e6dc6c4907d3d39b717cde87", "fields": {"nom_de_la_commune": "CROIZET SUR GAND", "libell_d_acheminement": "CROIZET SUR GAND", "code_postal": "42540", "coordonnees_gps": [45.8845566287, 4.25261617322], "code_commune_insee": "42077"}, "geometry": {"type": "Point", "coordinates": [4.25261617322, 45.8845566287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a363f586913a72ab77babd479d53305567366898", "fields": {"nom_de_la_commune": "EPERCIEUX ST PAUL", "libell_d_acheminement": "EPERCIEUX ST PAUL", "code_postal": "42110", "coordonnees_gps": [45.7464290309, 4.22053432957], "code_commune_insee": "42088"}, "geometry": {"type": "Point", "coordinates": [4.22053432957, 45.7464290309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "380d6049ec2bfb43a0cb51ceaf6a011b13db038c", "fields": {"nom_de_la_commune": "ESTIVAREILLES", "libell_d_acheminement": "ESTIVAREILLES", "code_postal": "42380", "coordonnees_gps": [45.4185466317, 4.07292965621], "code_commune_insee": "42091"}, "geometry": {"type": "Point", "coordinates": [4.07292965621, 45.4185466317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55b8f6dd6b59335f74a51a8ceba309fb0fe115d7", "fields": {"nom_de_la_commune": "FIRMINY", "libell_d_acheminement": "FIRMINY", "code_postal": "42700", "coordonnees_gps": [45.3787938421, 4.28860986848], "code_commune_insee": "42095"}, "geometry": {"type": "Point", "coordinates": [4.28860986848, 45.3787938421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c7cbcbd1c69a98459c4065f9ce3c7b30ba4474", "fields": {"nom_de_la_commune": "LA GRESLE", "libell_d_acheminement": "LA GRESLE", "code_postal": "42460", "coordonnees_gps": [46.0939983063, 4.24843204854], "code_commune_insee": "42104"}, "geometry": {"type": "Point", "coordinates": [4.24843204854, 46.0939983063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e28a7895b4777e8d59cb9e9982d8c594fbdf18d8", "fields": {"nom_de_la_commune": "SICHAMPS", "libell_d_acheminement": "SICHAMPS", "code_postal": "58700", "coordonnees_gps": [47.1910220307, 3.33230093223], "code_commune_insee": "58279"}, "geometry": {"type": "Point", "coordinates": [3.33230093223, 47.1910220307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0062c0d530025c7e4c9b17351644f15f5ac17bf", "fields": {"nom_de_la_commune": "TAMNAY EN BAZOIS", "libell_d_acheminement": "TAMNAY EN BAZOIS", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58285"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e561620d0c7cd86774942223972afbaf98eed76", "fields": {"nom_de_la_commune": "TEIGNY", "libell_d_acheminement": "TEIGNY", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58288"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fab2ab2c023aebc8b22b37433d2f263eb0fdb5eb", "fields": {"nom_de_la_commune": "THAIX", "libell_d_acheminement": "THAIX", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58290"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b10e194f182a7b413765da5a9870f62d5f0b2fd4", "fields": {"nom_de_la_commune": "THIANGES", "libell_d_acheminement": "THIANGES", "code_postal": "58260", "coordonnees_gps": [46.9023530657, 3.46382245029], "code_commune_insee": "58291"}, "geometry": {"type": "Point", "coordinates": [3.46382245029, 46.9023530657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "385478fb43c5667c2f81cf06d47df7e7238b6b96", "fields": {"nom_de_la_commune": "VARENNES VAUZELLES", "libell_d_acheminement": "VARENNES VAUZELLES", "code_postal": "58640", "coordonnees_gps": [47.036954747, 3.14362608015], "code_commune_insee": "58303"}, "geometry": {"type": "Point", "coordinates": [3.14362608015, 47.036954747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2574a86f188b87df6f2ccce99b96f4f3f31f629", "fields": {"nom_de_la_commune": "VIELMANAY", "libell_d_acheminement": "VIELMANAY", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58307"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26616a1f7ac9246fe9948eb134254cc93ce3c52d", "fields": {"nom_de_la_commune": "AMFROIPRET", "libell_d_acheminement": "AMFROIPRET", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59006"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60c8e369ed991a5a508a89005814be02335fc50c", "fields": {"nom_de_la_commune": "ANHIERS", "libell_d_acheminement": "ANHIERS", "code_postal": "59194", "coordonnees_gps": [50.4161128378, 3.14174159912], "code_commune_insee": "59007"}, "geometry": {"type": "Point", "coordinates": [3.14174159912, 50.4161128378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e08e50a3055f25a08ab933803624860105cb14b", "fields": {"nom_de_la_commune": "VILLENEUVE D ASCQ", "libell_d_acheminement": "VILLENEUVE D ASCQ", "code_postal": "59491", "coordonnees_gps": [50.6323253006, 3.15291340611], "code_commune_insee": "59009"}, "geometry": {"type": "Point", "coordinates": [3.15291340611, 50.6323253006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42f0f8c66650bde94373e8bd298ca509d2352095", "fields": {"nom_de_la_commune": "ANNOEULLIN", "libell_d_acheminement": "ANNOEULLIN", "code_postal": "59112", "coordonnees_gps": [50.524811889, 2.93444929776], "code_commune_insee": "59011"}, "geometry": {"type": "Point", "coordinates": [2.93444929776, 50.524811889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e412afa8fc4c0d366f3c71c13e307e289726ec89", "fields": {"nom_de_la_commune": "ANSTAING", "libell_d_acheminement": "ANSTAING", "code_postal": "59152", "coordonnees_gps": [50.6050937717, 3.2043944478], "code_commune_insee": "59013"}, "geometry": {"type": "Point", "coordinates": [3.2043944478, 50.6050937717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd82dc90e0895c7143b0fbe4a9e80176ccf44316", "fields": {"nom_de_la_commune": "ARLEUX", "libell_d_acheminement": "ARLEUX", "code_postal": "59151", "coordonnees_gps": [50.2865158745, 3.11140042003], "code_commune_insee": "59015"}, "geometry": {"type": "Point", "coordinates": [3.11140042003, 50.2865158745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f5a86bcf045b06c77ba33e648a75bf2240565cf", "fields": {"nom_de_la_commune": "ATTICHES", "libell_d_acheminement": "ATTICHES", "code_postal": "59551", "coordonnees_gps": [50.5114163439, 3.06811658517], "code_commune_insee": "59022"}, "geometry": {"type": "Point", "coordinates": [3.06811658517, 50.5114163439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4490c196c9903ae412ac2e20a3b83ed936a48cc1", "fields": {"nom_de_la_commune": "AUBERS", "libell_d_acheminement": "AUBERS", "code_postal": "59249", "coordonnees_gps": [50.6028600602, 2.83634213579], "code_commune_insee": "59025"}, "geometry": {"type": "Point", "coordinates": [2.83634213579, 50.6028600602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f10cd8f0eae1770700d9d654b510f376559ade", "fields": {"nom_de_la_commune": "AUBIGNY AU BAC", "libell_d_acheminement": "AUBIGNY AU BAC", "code_postal": "59265", "coordonnees_gps": [50.2606708685, 3.16534687395], "code_commune_insee": "59026"}, "geometry": {"type": "Point", "coordinates": [3.16534687395, 50.2606708685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26cb2a39008437b607c92fec397d78d16b4551cd", "fields": {"nom_de_la_commune": "AVESNELLES", "libell_d_acheminement": "AVESNELLES", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59035"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4989153fe06cf529d5d4031fbcf80eb6e1b760c", "fields": {"nom_de_la_commune": "BACHANT", "libell_d_acheminement": "BACHANT", "code_postal": "59138", "coordonnees_gps": [50.2338166677, 3.85860343752], "code_commune_insee": "59041"}, "geometry": {"type": "Point", "coordinates": [3.85860343752, 50.2338166677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2829675899b4114e8582c84c3e9980994ca18456", "fields": {"code_postal": "59270", "code_commune_insee": "59043", "libell_d_acheminement": "BAILLEUL", "ligne_5": "MONT NOIR", "nom_de_la_commune": "BAILLEUL", "coordonnees_gps": [50.744872534, 2.69409590473]}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9b339a735e29feb259c19140aa2b93612fef1a", "fields": {"nom_de_la_commune": "BAVAY", "libell_d_acheminement": "BAVAY", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59053"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a41859ff454bc3f10219ddbed368f88ea5deafe7", "fields": {"nom_de_la_commune": "BETTIGNIES", "libell_d_acheminement": "BETTIGNIES", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59076"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b71b0bbd657af17bd3165a26ceb0e8bbbbbaac4", "fields": {"nom_de_la_commune": "BIERNE", "libell_d_acheminement": "BIERNE", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59082"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa83865b27369d244aab91ca19f7b74cb50e3091", "fields": {"nom_de_la_commune": "BOESEGHEM", "libell_d_acheminement": "BOESEGHEM", "code_postal": "59189", "coordonnees_gps": [50.6676916499, 2.47249399478], "code_commune_insee": "59087"}, "geometry": {"type": "Point", "coordinates": [2.47249399478, 50.6676916499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01adfe37927bc9ce93f5830bcebcb83008c8530d", "fields": {"nom_de_la_commune": "BOIS GRENIER", "libell_d_acheminement": "BOIS GRENIER", "code_postal": "59280", "coordonnees_gps": [50.6683510107, 2.87630050545], "code_commune_insee": "59088"}, "geometry": {"type": "Point", "coordinates": [2.87630050545, 50.6683510107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0f0166383bc8bc86da208f99f6a809f21be532", "fields": {"nom_de_la_commune": "BOULOGNE SUR HELPE", "libell_d_acheminement": "BOULOGNE SUR HELPE", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59093"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c82ae91aa927cc7320c6523dd0e976b516281f36", "fields": {"nom_de_la_commune": "BOURSIES", "libell_d_acheminement": "BOURSIES", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59097"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca433a38574ffafd62de15acacfebaf39c59e4bc", "fields": {"nom_de_la_commune": "BOUSIES", "libell_d_acheminement": "BOUSIES", "code_postal": "59222", "coordonnees_gps": [50.1472445748, 3.59180512772], "code_commune_insee": "59099"}, "geometry": {"type": "Point", "coordinates": [3.59180512772, 50.1472445748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c402c37d1108c51d158ad12bf4ecb9bbee36c10b", "fields": {"nom_de_la_commune": "BOUSIGNIES", "libell_d_acheminement": "BOUSIGNIES", "code_postal": "59178", "coordonnees_gps": [50.4208694129, 3.3753580668], "code_commune_insee": "59100"}, "geometry": {"type": "Point", "coordinates": [3.3753580668, 50.4208694129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad8c14bff02e17e2e17c3dc02cf886d2cf508f5", "fields": {"nom_de_la_commune": "BROUCKERQUE", "libell_d_acheminement": "BROUCKERQUE", "code_postal": "59630", "coordonnees_gps": [50.9241353596, 2.23327395744], "code_commune_insee": "59110"}, "geometry": {"type": "Point", "coordinates": [2.23327395744, 50.9241353596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "516c42173169967a1aa0e9e5f7560e5b3f27604e", "fields": {"nom_de_la_commune": "BROXEELE", "libell_d_acheminement": "BROXEELE", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59111"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45e5153fc0fdcceb49173a6259e2f36049e9ed8", "fields": {"code_postal": "59400", "code_commune_insee": "59122", "libell_d_acheminement": "CAMBRAI", "ligne_5": "MORENCHIES", "nom_de_la_commune": "CAMBRAI", "coordonnees_gps": [50.1533767412, 3.19681716574]}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fec9bb9579089a71db87634dae9631e75588c5", "fields": {"nom_de_la_commune": "CAMPHIN EN PEVELE", "libell_d_acheminement": "CAMPHIN EN PEVELE", "code_postal": "59780", "coordonnees_gps": [50.6106542416, 3.2436665711], "code_commune_insee": "59124"}, "geometry": {"type": "Point", "coordinates": [3.2436665711, 50.6106542416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab39c986eda028c41c1c8a8944c7c81c6397960", "fields": {"nom_de_la_commune": "CAPPELLE EN PEVELE", "libell_d_acheminement": "CAPPELLE EN PEVELE", "code_postal": "59242", "coordonnees_gps": [50.5245553237, 3.18527549865], "code_commune_insee": "59129"}, "geometry": {"type": "Point", "coordinates": [3.18527549865, 50.5245553237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3fcee5cd1099f56effdd23680180bf10e0110a7", "fields": {"nom_de_la_commune": "CARNIERES", "libell_d_acheminement": "CARNIERES", "code_postal": "59217", "coordonnees_gps": [50.1561970919, 3.35840082194], "code_commune_insee": "59132"}, "geometry": {"type": "Point", "coordinates": [3.35840082194, 50.1561970919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d2774c187a5704f1c1bfdbc849a9d595d6306f", "fields": {"nom_de_la_commune": "LE CATEAU CAMBRESIS", "libell_d_acheminement": "LE CATEAU CAMBRESIS", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59136"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5094f2f8e9a3c117c33764c601808fa5e9a77d", "fields": {"nom_de_la_commune": "CAUROIR", "libell_d_acheminement": "CAUROIR", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59141"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8565f203b9ab12929aba5beeaf57b35c6ffe947e", "fields": {"nom_de_la_commune": "LA CHAPELLE D ARMENTIERES", "libell_d_acheminement": "LA CHAPELLE D ARMENTIERES", "code_postal": "59930", "coordonnees_gps": [50.6658483202, 2.89526444812], "code_commune_insee": "59143"}, "geometry": {"type": "Point", "coordinates": [2.89526444812, 50.6658483202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4cdd84439c25363a1cb942cb4a8771598735e19", "fields": {"nom_de_la_commune": "CHERENG", "libell_d_acheminement": "CHERENG", "code_postal": "59152", "coordonnees_gps": [50.6050937717, 3.2043944478], "code_commune_insee": "59146"}, "geometry": {"type": "Point", "coordinates": [3.2043944478, 50.6050937717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2bf86b55e08cd7e92622615caadd1d635803ac", "fields": {"nom_de_la_commune": "CHOISIES", "libell_d_acheminement": "CHOISIES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59147"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992eac83ac62b1b53187641bff0a1fc5217aa596", "fields": {"nom_de_la_commune": "CONDE SUR L ESCAUT", "libell_d_acheminement": "CONDE SUR L ESCAUT", "code_postal": "59163", "coordonnees_gps": [50.4613685751, 3.61604638041], "code_commune_insee": "59153"}, "geometry": {"type": "Point", "coordinates": [3.61604638041, 50.4613685751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cea878b141f4c2309eb68678cc4a4ce02cfa55f", "fields": {"nom_de_la_commune": "COUSOLRE", "libell_d_acheminement": "COUSOLRE", "code_postal": "59149", "coordonnees_gps": [50.2443056992, 4.15095520104], "code_commune_insee": "59157"}, "geometry": {"type": "Point", "coordinates": [4.15095520104, 50.2443056992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e6dc4f1c5c211b5508fad523801f2b456c78b1", "fields": {"nom_de_la_commune": "COUTICHES", "libell_d_acheminement": "COUTICHES", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59158"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db1621dfc237aa6e31bd2cb281f559267335f55d", "fields": {"nom_de_la_commune": "CROIX", "libell_d_acheminement": "CROIX", "code_postal": "59170", "coordonnees_gps": [50.6738575684, 3.15497190967], "code_commune_insee": "59163"}, "geometry": {"type": "Point", "coordinates": [3.15497190967, 50.6738575684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8151053b1cd0d90ffdc91ec427fb22f1597d7692", "fields": {"nom_de_la_commune": "CROIX CALUYAU", "libell_d_acheminement": "CROIX CALUYAU", "code_postal": "59222", "coordonnees_gps": [50.1472445748, 3.59180512772], "code_commune_insee": "59164"}, "geometry": {"type": "Point", "coordinates": [3.59180512772, 50.1472445748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02aac7175a9cbafc27c77bae2a8da7a32e6e5d49", "fields": {"nom_de_la_commune": "DEULEMONT", "libell_d_acheminement": "DEULEMONT", "code_postal": "59890", "coordonnees_gps": [50.7190929543, 2.99204569056], "code_commune_insee": "59173"}, "geometry": {"type": "Point", "coordinates": [2.99204569056, 50.7190929543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f3d493ef760ba3a091fdee94c1ce3d186febc86", "fields": {"nom_de_la_commune": "DOMPIERRE SUR HELPE", "libell_d_acheminement": "DOMPIERRE SUR HELPE", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59177"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36c1b4bfca43b9d5ba6224c2eab45f82f2e6e6b3", "fields": {"nom_de_la_commune": "DOUCHY LES MINES", "libell_d_acheminement": "DOUCHY LES MINES", "code_postal": "59282", "coordonnees_gps": [50.2922712188, 3.38676423014], "code_commune_insee": "59179"}, "geometry": {"type": "Point", "coordinates": [3.38676423014, 50.2922712188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b0a819a91e017aff163f5c28390270ca203f495", "fields": {"code_postal": "59430", "code_commune_insee": "59183", "libell_d_acheminement": "DUNKERQUE", "ligne_5": "ST POL SUR MER", "nom_de_la_commune": "DUNKERQUE", "coordonnees_gps": [51.0306940868, 2.33760634]}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2327396ebedf2992367e0c0a20b1d18d3dd22109", "fields": {"nom_de_la_commune": "EECKE", "libell_d_acheminement": "EECKE", "code_postal": "59114", "coordonnees_gps": [50.8038796466, 2.57811297783], "code_commune_insee": "59189"}, "geometry": {"type": "Point", "coordinates": [2.57811297783, 50.8038796466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a7614aec82e6db720672cce4642fea20ca3cc1f", "fields": {"nom_de_la_commune": "EMMERIN", "libell_d_acheminement": "EMMERIN", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59193"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "043d4fd646bfa19659dc1d777e9732d536bd7841", "fields": {"nom_de_la_commune": "ERINGHEM", "libell_d_acheminement": "ERINGHEM", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59200"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e09706e58e3024ddc6ced1b199eb57a3662ea9c", "fields": {"nom_de_la_commune": "ESCAUTPONT", "libell_d_acheminement": "ESCAUTPONT", "code_postal": "59278", "coordonnees_gps": [50.4241815246, 3.55318997832], "code_commune_insee": "59207"}, "geometry": {"type": "Point", "coordinates": [3.55318997832, 50.4241815246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d32e763de36e1f423576240cd601b69b8661a189", "fields": {"nom_de_la_commune": "ESQUELBECQ", "libell_d_acheminement": "ESQUELBECQ", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59210"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b587aee542a0e6e5d905871b164b8d54cc4cf459", "fields": {"nom_de_la_commune": "FAMARS", "libell_d_acheminement": "FAMARS", "code_postal": "59300", "coordonnees_gps": [50.3420089884, 3.52240338554], "code_commune_insee": "59221"}, "geometry": {"type": "Point", "coordinates": [3.52240338554, 50.3420089884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "830853ffbadf0804fa6a431fe28058dedb1bf8fc", "fields": {"nom_de_la_commune": "FAUMONT", "libell_d_acheminement": "FAUMONT", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59222"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "742cfefa63b4c0a65cd9d6ed4fcc84bd17269ebb", "fields": {"nom_de_la_commune": "LE FAVRIL", "libell_d_acheminement": "LE FAVRIL", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59223"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9c020316ac3ed08e1aceb03bcaabc4173015cb1", "fields": {"nom_de_la_commune": "FEIGNIES", "libell_d_acheminement": "FEIGNIES", "code_postal": "59750", "coordonnees_gps": [50.2946256893, 3.9087235949], "code_commune_insee": "59225"}, "geometry": {"type": "Point", "coordinates": [3.9087235949, 50.2946256893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a8874acc676fedd6f053b3f726c8b9e28d8a98", "fields": {"code_postal": "59750", "code_commune_insee": "59225", "libell_d_acheminement": "FEIGNIES", "ligne_5": "DOUZIES FEIGNIES", "nom_de_la_commune": "FEIGNIES", "coordonnees_gps": [50.2946256893, 3.9087235949]}, "geometry": {"type": "Point", "coordinates": [3.9087235949, 50.2946256893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "820c93a373aa035e864b1be79a8ce8a346d4ed2e", "fields": {"nom_de_la_commune": "FELLERIES", "libell_d_acheminement": "FELLERIES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59226"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d1a4de9519cebb62344d09a86a0fb6faffc7b2", "fields": {"nom_de_la_commune": "FLAUMONT WAUDRECHIES", "libell_d_acheminement": "FLAUMONT WAUDRECHIES", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59233"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ed9c11e3ed5b08f8f8e51f4ef7cd9a3b30f9cc", "fields": {"nom_de_la_commune": "FLERS EN ESCREBIEUX", "libell_d_acheminement": "FLERS EN ESCREBIEUX", "code_postal": "59128", "coordonnees_gps": [50.4015294936, 3.05071987726], "code_commune_insee": "59234"}, "geometry": {"type": "Point", "coordinates": [3.05071987726, 50.4015294936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be55e216ee4f06ec884c6971b3cbc00fd59b863d", "fields": {"nom_de_la_commune": "FLETRE", "libell_d_acheminement": "FLETRE", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59237"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5cb0c22e855651f0dfe02cb5e23cee649ba543f", "fields": {"nom_de_la_commune": "FOREST SUR MARQUE", "libell_d_acheminement": "FOREST SUR MARQUE", "code_postal": "59510", "coordonnees_gps": [50.6531377734, 3.19228219738], "code_commune_insee": "59247"}, "geometry": {"type": "Point", "coordinates": [3.19228219738, 50.6531377734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c171328dbeba5b2b37a0447657214d971e6d98", "fields": {"nom_de_la_commune": "FOURNES EN WEPPES", "libell_d_acheminement": "FOURNES EN WEPPES", "code_postal": "59134", "coordonnees_gps": [50.592822459, 2.88189663466], "code_commune_insee": "59250"}, "geometry": {"type": "Point", "coordinates": [2.88189663466, 50.592822459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8273c16054965de429062e046713be665010111a", "fields": {"nom_de_la_commune": "FRESSAIN", "libell_d_acheminement": "FRESSAIN", "code_postal": "59234", "coordonnees_gps": [50.2968410353, 3.19491530905], "code_commune_insee": "59254"}, "geometry": {"type": "Point", "coordinates": [3.19491530905, 50.2968410353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e061d88a7eff377044985bf9314b43387bde28", "fields": {"nom_de_la_commune": "FRESSIES", "libell_d_acheminement": "FRESSIES", "code_postal": "59268", "coordonnees_gps": [50.2255437815, 3.19481961843], "code_commune_insee": "59255"}, "geometry": {"type": "Point", "coordinates": [3.19481961843, 50.2255437815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0787dac33b179a898ba6682d77ef9337c0a044ed", "fields": {"nom_de_la_commune": "GHYVELDE", "libell_d_acheminement": "GHYVELDE", "code_postal": "59254", "coordonnees_gps": [51.0489395206, 2.51310280891], "code_commune_insee": "59260"}, "geometry": {"type": "Point", "coordinates": [2.51310280891, 51.0489395206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb0321adc9b80313e647bf84ad0d9b90e48b7a2", "fields": {"nom_de_la_commune": "GOEULZIN", "libell_d_acheminement": "GOEULZIN", "code_postal": "59169", "coordonnees_gps": [50.3188008385, 3.12364772716], "code_commune_insee": "59263"}, "geometry": {"type": "Point", "coordinates": [3.12364772716, 50.3188008385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d40e56291bf98b2ec33c2eca7b6aaccc260364a6", "fields": {"nom_de_la_commune": "LA GORGUE", "libell_d_acheminement": "LA GORGUE", "code_postal": "59253", "coordonnees_gps": [50.6312139913, 2.73914884324], "code_commune_insee": "59268"}, "geometry": {"type": "Point", "coordinates": [2.73914884324, 50.6312139913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f09cce4ed35cdb449b88369a4a1f8d1ee2465f4", "fields": {"nom_de_la_commune": "GOUZEAUCOURT", "libell_d_acheminement": "GOUZEAUCOURT", "code_postal": "59231", "coordonnees_gps": [50.065671657, 3.13135649355], "code_commune_insee": "59269"}, "geometry": {"type": "Point", "coordinates": [3.13135649355, 50.065671657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02409c2ead1529a9b3e2ecdcad833b5b21d9f22b", "fields": {"nom_de_la_commune": "GUESNAIN", "libell_d_acheminement": "GUESNAIN", "code_postal": "59287", "coordonnees_gps": [50.3426420903, 3.15765827403], "code_commune_insee": "59276"}, "geometry": {"type": "Point", "coordinates": [3.15765827403, 50.3426420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8486bd870e1f5474da3a31c5348b71897fc93b94", "fields": {"nom_de_la_commune": "GUSSIGNIES", "libell_d_acheminement": "GUSSIGNIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59277"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a20c462ba088697af57348ee638caaf4f5b3795", "fields": {"nom_de_la_commune": "HALLENNES LEZ HAUBOURDIN", "libell_d_acheminement": "HALLENNES LEZ HAUBOURDIN", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59278"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "647e073a62380fc7d35d7a19cd8a5ee45ba8c542", "fields": {"nom_de_la_commune": "HAUBOURDIN", "libell_d_acheminement": "HAUBOURDIN", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59286"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87212ba13381f3355ed9dea6914f99cf0ad81dfd", "fields": {"nom_de_la_commune": "HAUCOURT EN CAMBRESIS", "libell_d_acheminement": "HAUCOURT EN CAMBRESIS", "code_postal": "59191", "coordonnees_gps": [50.1001907619, 3.36864533682], "code_commune_insee": "59287"}, "geometry": {"type": "Point", "coordinates": [3.36864533682, 50.1001907619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "534b5b680ff8f81def0d86ae0a019579eda4484f", "fields": {"nom_de_la_commune": "HECQ", "libell_d_acheminement": "HECQ", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59296"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cf24f1fca42ac295123a3512945c64ff4589d61", "fields": {"nom_de_la_commune": "HERRIN", "libell_d_acheminement": "HERRIN", "code_postal": "59147", "coordonnees_gps": [50.5444177471, 2.98104516318], "code_commune_insee": "59304"}, "geometry": {"type": "Point", "coordinates": [2.98104516318, 50.5444177471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2063e1486a72b5a7c2ee6cf60a5d7d2e670218c7", "fields": {"nom_de_la_commune": "HESTRUD", "libell_d_acheminement": "HESTRUD", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59306"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fadaa31919c0d516f545ab652475ae432125e1e", "fields": {"nom_de_la_commune": "HONNECOURT SUR ESCAUT", "libell_d_acheminement": "HONNECOURT SUR ESCAUT", "code_postal": "59266", "coordonnees_gps": [50.0472384043, 3.20499874057], "code_commune_insee": "59312"}, "geometry": {"type": "Point", "coordinates": [3.20499874057, 50.0472384043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8583cb0245572edb9a081e2059179873f096b893", "fields": {"nom_de_la_commune": "JOLIMETZ", "libell_d_acheminement": "JOLIMETZ", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59325"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900a7d7ba4d21caa66e3441ca7cc19f9cd6a82f5", "fields": {"nom_de_la_commune": "LAMBRES LEZ DOUAI", "libell_d_acheminement": "LAMBRES LEZ DOUAI", "code_postal": "59552", "coordonnees_gps": [50.3521392693, 3.05547051543], "code_commune_insee": "59329"}, "geometry": {"type": "Point", "coordinates": [3.05547051543, 50.3521392693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7418a6eb89f9e573c18e722e2403a4462281ba", "fields": {"nom_de_la_commune": "LANDAS", "libell_d_acheminement": "LANDAS", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59330"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38fde403505c83f88535004d241326abaaa83912", "fields": {"nom_de_la_commune": "LEDRINGHEM", "libell_d_acheminement": "LEDRINGHEM", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59338"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a975470980c3cc4f81397b8ddd7c539b6e132bf4", "fields": {"nom_de_la_commune": "LESDAIN", "libell_d_acheminement": "LESDAIN", "code_postal": "59258", "coordonnees_gps": [50.0777482818, 3.25663233924], "code_commune_insee": "59341"}, "geometry": {"type": "Point", "coordinates": [3.25663233924, 50.0777482818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d8acdb49fd14bffd124b9fefdad92fe50c83a2", "fields": {"nom_de_la_commune": "LEZ FONTAINE", "libell_d_acheminement": "LEZ FONTAINE", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59342"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8406fed97f678241e179c9c1b8349aef9ed7e93e", "fields": {"nom_de_la_commune": "LOCQUIGNOL", "libell_d_acheminement": "LOCQUIGNOL", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59353"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d9fd0fe09258610dd6af823390f880fc354b76e", "fields": {"nom_de_la_commune": "LYNDE", "libell_d_acheminement": "LYNDE", "code_postal": "59173", "coordonnees_gps": [50.7167343875, 2.40817332289], "code_commune_insee": "59366"}, "geometry": {"type": "Point", "coordinates": [2.40817332289, 50.7167343875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2dc434d306c8a8892165f49aa7b00d24ce9549a", "fields": {"nom_de_la_commune": "LE MAISNIL", "libell_d_acheminement": "LE MAISNIL", "code_postal": "59134", "coordonnees_gps": [50.592822459, 2.88189663466], "code_commune_insee": "59371"}, "geometry": {"type": "Point", "coordinates": [2.88189663466, 50.592822459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167842873a18a9b29210bec073d74b5a056b239d", "fields": {"nom_de_la_commune": "MARCQ EN OSTREVENT", "libell_d_acheminement": "MARCQ EN OSTREVENT", "code_postal": "59252", "coordonnees_gps": [50.2842668858, 3.25374088253], "code_commune_insee": "59379"}, "geometry": {"type": "Point", "coordinates": [3.25374088253, 50.2842668858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bbc9e7ec69f92992ff292a1cc8366aeead64aad", "fields": {"nom_de_la_commune": "MARLY", "libell_d_acheminement": "MARLY", "code_postal": "59770", "coordonnees_gps": [50.3453173952, 3.54884560677], "code_commune_insee": "59383"}, "geometry": {"type": "Point", "coordinates": [3.54884560677, 50.3453173952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb90fb6fbecdedae5c6c9f0fda5e8c53585258cc", "fields": {"nom_de_la_commune": "MARQUILLIES", "libell_d_acheminement": "MARQUILLIES", "code_postal": "59274", "coordonnees_gps": [50.5510293561, 2.86946965317], "code_commune_insee": "59388"}, "geometry": {"type": "Point", "coordinates": [2.86946965317, 50.5510293561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0ebc2f6f5a70b32536bb2d24d019a1733d0968", "fields": {"code_postal": "59600", "code_commune_insee": "59392", "libell_d_acheminement": "MAUBEUGE", "ligne_5": "DOUZIES", "nom_de_la_commune": "MAUBEUGE", "coordonnees_gps": [50.3120023096, 3.98953050481]}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d5c55627d4b56bc92b7d132873546e3471049c4", "fields": {"nom_de_la_commune": "MAULDE", "libell_d_acheminement": "MAULDE", "code_postal": "59158", "coordonnees_gps": [50.504294197, 3.46542876217], "code_commune_insee": "59393"}, "geometry": {"type": "Point", "coordinates": [3.46542876217, 50.504294197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69af79e2c3e7aa08b4ed23d107653e0199277b51", "fields": {"nom_de_la_commune": "MAZINGHIEN", "libell_d_acheminement": "MAZINGHIEN", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59395"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ff1eb874b8659471e5857a2d34ce3c848c0952", "fields": {"nom_de_la_commune": "MOROGUES", "libell_d_acheminement": "MOROGUES", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18156"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "079a936faae0c94df9de69a002bd1dab3837836f", "fields": {"nom_de_la_commune": "MOULINS SUR YEVRE", "libell_d_acheminement": "MOULINS SUR YEVRE", "code_postal": "18390", "coordonnees_gps": [47.0877811378, 2.52674457802], "code_commune_insee": "18158"}, "geometry": {"type": "Point", "coordinates": [2.52674457802, 47.0877811378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faef6942c72f4a3b49752522e554d336f5968ef5", "fields": {"nom_de_la_commune": "NERONDES", "libell_d_acheminement": "NERONDES", "code_postal": "18350", "coordonnees_gps": [46.951233561, 2.80144382232], "code_commune_insee": "18160"}, "geometry": {"type": "Point", "coordinates": [2.80144382232, 46.951233561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "754fc76f29f80714278d80e6b389db3e1f29376a", "fields": {"nom_de_la_commune": "NEUVY LE BARROIS", "libell_d_acheminement": "NEUVY LE BARROIS", "code_postal": "18600", "coordonnees_gps": [46.8298350037, 2.89719825417], "code_commune_insee": "18164"}, "geometry": {"type": "Point", "coordinates": [2.89719825417, 46.8298350037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03b3e56a5baab5f0603847f83cfbc01883a2cf6a", "fields": {"nom_de_la_commune": "NOHANT EN GRACAY", "libell_d_acheminement": "NOHANT EN GRACAY", "code_postal": "18310", "coordonnees_gps": [47.1584535888, 1.87917805896], "code_commune_insee": "18167"}, "geometry": {"type": "Point", "coordinates": [1.87917805896, 47.1584535888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c70c64399ab157b8b7a1ff92ef8ff375596ce1e", "fields": {"nom_de_la_commune": "NOZIERES", "libell_d_acheminement": "NOZIERES", "code_postal": "18200", "coordonnees_gps": [46.7360453328, 2.4965207851], "code_commune_insee": "18169"}, "geometry": {"type": "Point", "coordinates": [2.4965207851, 46.7360453328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3047a90fd0ae1b7b5800c3a415a53cf4a03a44a8", "fields": {"nom_de_la_commune": "OSMERY", "libell_d_acheminement": "OSMERY", "code_postal": "18130", "coordonnees_gps": [46.9116919444, 2.60183010888], "code_commune_insee": "18173"}, "geometry": {"type": "Point", "coordinates": [2.60183010888, 46.9116919444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3477a19b3a61b29d80c0d6c63704171e1514e8be", "fields": {"nom_de_la_commune": "OSMOY", "libell_d_acheminement": "OSMOY", "code_postal": "18390", "coordonnees_gps": [47.0877811378, 2.52674457802], "code_commune_insee": "18174"}, "geometry": {"type": "Point", "coordinates": [2.52674457802, 47.0877811378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4e474f063fd57bbc356454b9e51ee06d4730f28", "fields": {"nom_de_la_commune": "PARASSY", "libell_d_acheminement": "PARASSY", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18176"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863429610354e4f28de1bbd2b2c2b37b657f0660", "fields": {"nom_de_la_commune": "PREUILLY", "libell_d_acheminement": "PREUILLY", "code_postal": "18120", "coordonnees_gps": [47.1275937105, 2.07360022072], "code_commune_insee": "18186"}, "geometry": {"type": "Point", "coordinates": [2.07360022072, 47.1275937105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a112dcd324f044426e2ffe0f089a0090829e5b", "fields": {"nom_de_la_commune": "PREVERANGES", "libell_d_acheminement": "PREVERANGES", "code_postal": "18370", "coordonnees_gps": [46.5167318179, 2.22634680986], "code_commune_insee": "18187"}, "geometry": {"type": "Point", "coordinates": [2.22634680986, 46.5167318179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80c1af1bfef87fd6c7f27ebc0f9e936488d59621", "fields": {"nom_de_la_commune": "REIGNY", "libell_d_acheminement": "REIGNY", "code_postal": "18270", "coordonnees_gps": [46.5558646891, 2.33204574523], "code_commune_insee": "18192"}, "geometry": {"type": "Point", "coordinates": [2.33204574523, 46.5558646891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c600cf0bd69669f470d542a629619555f191fcd9", "fields": {"nom_de_la_commune": "RIANS", "libell_d_acheminement": "RIANS", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18194"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cfd57d2163f940500af1e127ad51ff2db9aafc2", "fields": {"nom_de_la_commune": "ST GEORGES SUR MOULON", "libell_d_acheminement": "ST GEORGES SUR MOULON", "code_postal": "18110", "coordonnees_gps": [47.2024946612, 2.3767703983], "code_commune_insee": "18211"}, "geometry": {"type": "Point", "coordinates": [2.3767703983, 47.2024946612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9dd89559a6c8550df0479ce53bfe19785db756", "fields": {"nom_de_la_commune": "ST GERMAIN DES BOIS", "libell_d_acheminement": "ST GERMAIN DES BOIS", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18212"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602c68e093727e5c3ee5fb95858582b39127da94", "fields": {"nom_de_la_commune": "ST HILAIRE DE COURT", "libell_d_acheminement": "ST HILAIRE DE COURT", "code_postal": "18100", "coordonnees_gps": [47.2360896302, 2.02349855043], "code_commune_insee": "18214"}, "geometry": {"type": "Point", "coordinates": [2.02349855043, 47.2360896302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59502514662ba2e8dbbdebea0b35e2b1968f7d11", "fields": {"nom_de_la_commune": "ST JEANVRIN", "libell_d_acheminement": "ST JEANVRIN", "code_postal": "18370", "coordonnees_gps": [46.5167318179, 2.22634680986], "code_commune_insee": "18217"}, "geometry": {"type": "Point", "coordinates": [2.22634680986, 46.5167318179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1ee006b7100486c3c3b3523863bf18073bb7bf9", "fields": {"nom_de_la_commune": "ST MAUR", "libell_d_acheminement": "ST MAUR", "code_postal": "18270", "coordonnees_gps": [46.5558646891, 2.33204574523], "code_commune_insee": "18225"}, "geometry": {"type": "Point", "coordinates": [2.33204574523, 46.5558646891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "496028846c51657a2eb723f133828024bc2de287", "fields": {"nom_de_la_commune": "STE SOLANGE", "libell_d_acheminement": "STE SOLANGE", "code_postal": "18220", "coordonnees_gps": [47.1889776723, 2.59920542671], "code_commune_insee": "18235"}, "geometry": {"type": "Point", "coordinates": [2.59920542671, 47.1889776723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "011756b048443b8c91799a3f9baf48fc08ca7ebb", "fields": {"nom_de_la_commune": "SALIGNY LE VIF", "libell_d_acheminement": "SALIGNY LE VIF", "code_postal": "18800", "coordonnees_gps": [47.0880340091, 2.73431909926], "code_commune_insee": "18239"}, "geometry": {"type": "Point", "coordinates": [2.73431909926, 47.0880340091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee1c77176b69cc0ab1f3e687c2ac09edc3a33c0c", "fields": {"nom_de_la_commune": "SANTRANGES", "libell_d_acheminement": "SANTRANGES", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18243"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310017e75a4375dac5f3e8883bc106c653de06f6", "fields": {"nom_de_la_commune": "LE SUBDRAY", "libell_d_acheminement": "LE SUBDRAY", "code_postal": "18570", "coordonnees_gps": [47.029164221, 2.32252100709], "code_commune_insee": "18255"}, "geometry": {"type": "Point", "coordinates": [2.32252100709, 47.029164221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf09f72f4b527d91d12b2aadc3a35e192d0b077d", "fields": {"nom_de_la_commune": "SUBLIGNY", "libell_d_acheminement": "SUBLIGNY", "code_postal": "18260", "coordonnees_gps": [47.4318366819, 2.6580126772], "code_commune_insee": "18256"}, "geometry": {"type": "Point", "coordinates": [2.6580126772, 47.4318366819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31d263fc92482015ee02e444ce70a4f0a967801", "fields": {"nom_de_la_commune": "SURY PRES LERE", "libell_d_acheminement": "SURY PRES LERE", "code_postal": "18240", "coordonnees_gps": [47.4579442272, 2.82959178593], "code_commune_insee": "18257"}, "geometry": {"type": "Point", "coordinates": [2.82959178593, 47.4579442272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d64e632de750a9a58a05c0ac8a06202d10e89551", "fields": {"nom_de_la_commune": "SURY EN VAUX", "libell_d_acheminement": "SURY EN VAUX", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18258"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13630497b29e32ae6844584b079107cbf46b47c4", "fields": {"nom_de_la_commune": "THENIOUX", "libell_d_acheminement": "THENIOUX", "code_postal": "18100", "coordonnees_gps": [47.2360896302, 2.02349855043], "code_commune_insee": "18263"}, "geometry": {"type": "Point", "coordinates": [2.02349855043, 47.2360896302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656cb72582290de0e1310423639eec8eedf3e026", "fields": {"nom_de_la_commune": "TORTERON", "libell_d_acheminement": "TORTERON", "code_postal": "18320", "coordonnees_gps": [47.0397481555, 2.97460344303], "code_commune_insee": "18265"}, "geometry": {"type": "Point", "coordinates": [2.97460344303, 47.0397481555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab62436d83ef6567202b5f31bfd3e3a525097080", "fields": {"nom_de_la_commune": "VENESMES", "libell_d_acheminement": "VENESMES", "code_postal": "18190", "coordonnees_gps": [46.8350681426, 2.36022988221], "code_commune_insee": "18273"}, "geometry": {"type": "Point", "coordinates": [2.36022988221, 46.8350681426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa79490ab6b62078a8dffabb8b048e3256743e6a", "fields": {"nom_de_la_commune": "VERDIGNY", "libell_d_acheminement": "VERDIGNY", "code_postal": "18300", "coordonnees_gps": [47.3015810802, 2.80875350715], "code_commune_insee": "18274"}, "geometry": {"type": "Point", "coordinates": [2.80875350715, 47.3015810802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e38faa99dafd3963c3afed0b5105c1a6718413f", "fields": {"nom_de_la_commune": "VERNEUIL", "libell_d_acheminement": "VERNEUIL", "code_postal": "18210", "coordonnees_gps": [46.7613048179, 2.66766427155], "code_commune_insee": "18277"}, "geometry": {"type": "Point", "coordinates": [2.66766427155, 46.7613048179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69246de24734e81b9134ddf5abbef0a48397fa9", "fields": {"nom_de_la_commune": "VILLECELIN", "libell_d_acheminement": "VILLECELIN", "code_postal": "18160", "coordonnees_gps": [46.7848183367, 2.18066134847], "code_commune_insee": "18283"}, "geometry": {"type": "Point", "coordinates": [2.18066134847, 46.7848183367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a362b63b229f940db0011943ba44068d57d45d", "fields": {"nom_de_la_commune": "VILLENEUVE SUR CHER", "libell_d_acheminement": "VILLENEUVE SUR CHER", "code_postal": "18400", "coordonnees_gps": [46.9642447985, 2.24452322455], "code_commune_insee": "18285"}, "geometry": {"type": "Point", "coordinates": [2.24452322455, 46.9642447985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3de9b2f126fe54ac1df774d6528dbd65ad86f747", "fields": {"nom_de_la_commune": "VORLY", "libell_d_acheminement": "VORLY", "code_postal": "18340", "coordonnees_gps": [46.9637676332, 2.44079876335], "code_commune_insee": "18288"}, "geometry": {"type": "Point", "coordinates": [2.44079876335, 46.9637676332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64134a37a635399d9271c53b4e3292522c0b8467", "fields": {"nom_de_la_commune": "ALLEYRAT", "libell_d_acheminement": "ALLEYRAT", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19006"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ff7a23563ef48155a8cad4f25ddba43792f8633", "fields": {"nom_de_la_commune": "ARGENTAT", "libell_d_acheminement": "ARGENTAT", "code_postal": "19400", "coordonnees_gps": [45.0883560028, 1.92575532209], "code_commune_insee": "19010"}, "geometry": {"type": "Point", "coordinates": [1.92575532209, 45.0883560028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c7b20ff6b3ca075a27e73dff6caac6b51c9d54d", "fields": {"nom_de_la_commune": "AYEN", "libell_d_acheminement": "AYEN", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19015"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a94f577b77b56670c04f70157e18a5f7578e926e", "fields": {"nom_de_la_commune": "BRANCEILLES", "libell_d_acheminement": "BRANCEILLES", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19029"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be0125388f1aaa1fef4b442548cdfa22a13690e6", "fields": {"nom_de_la_commune": "BRIGNAC LA PLAINE", "libell_d_acheminement": "BRIGNAC LA PLAINE", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19030"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8101b68f09c457f1d22f6851edb802a0956740e6", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX BROCS", "libell_d_acheminement": "LA CHAPELLE AUX BROCS", "code_postal": "19360", "coordonnees_gps": [45.1545428877, 1.60311872412], "code_commune_insee": "19043"}, "geometry": {"type": "Point", "coordinates": [1.60311872412, 45.1545428877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a54fd79d166c9b88163d3a228811a3be48c504b", "fields": {"nom_de_la_commune": "LA CHAPELLE ST GERAUD", "libell_d_acheminement": "LA CHAPELLE ST GERAUD", "code_postal": "19430", "coordonnees_gps": [45.0199120867, 1.9968720483], "code_commune_insee": "19045"}, "geometry": {"type": "Point", "coordinates": [1.9968720483, 45.0199120867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46aece595ef99dcbe46fc6172a7b9445b7a4b73c", "fields": {"nom_de_la_commune": "CHARTRIER FERRIERE", "libell_d_acheminement": "CHARTRIER FERRIERE", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19047"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693319158a4d4e5be503e6640b472cf10e51efb7", "fields": {"nom_de_la_commune": "CHAVEROCHE", "libell_d_acheminement": "CHAVEROCHE", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19053"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ffac1baa6043f84558aef2a4565b3349b2975a7", "fields": {"nom_de_la_commune": "CHENAILLER MASCHEIX", "libell_d_acheminement": "CHENAILLER MASCHEIX", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19054"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3698bac88701ea0b5dc98d5f61ed5a1541f2357", "fields": {"nom_de_la_commune": "COSNAC", "libell_d_acheminement": "COSNAC", "code_postal": "19360", "coordonnees_gps": [45.1545428877, 1.60311872412], "code_commune_insee": "19063"}, "geometry": {"type": "Point", "coordinates": [1.60311872412, 45.1545428877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1932904e79ec9e8dc20170201b7c662781d135", "fields": {"nom_de_la_commune": "COUFFY SUR SARSONNE", "libell_d_acheminement": "COUFFY SUR SARSONNE", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19064"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db1302f55c23a65f357ae7df4767eb68c6e8ca15", "fields": {"nom_de_la_commune": "ESPAGNAC", "libell_d_acheminement": "ESPAGNAC", "code_postal": "19150", "coordonnees_gps": [45.2304304383, 1.8355551231], "code_commune_insee": "19075"}, "geometry": {"type": "Point", "coordinates": [1.8355551231, 45.2304304383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f705d2c532fa554d55c5800f45dd01c86087b148", "fields": {"nom_de_la_commune": "ESTIVAUX", "libell_d_acheminement": "ESTIVAUX", "code_postal": "19410", "coordonnees_gps": [45.3468885239, 1.51457035634], "code_commune_insee": "19078"}, "geometry": {"type": "Point", "coordinates": [1.51457035634, 45.3468885239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed4092f25dd26b6bf5410d6a0a35e081b69a97dd", "fields": {"nom_de_la_commune": "FEYT", "libell_d_acheminement": "FEYT", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19083"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c155bef8c3551787d6f22a46fef0f81419d9be1", "fields": {"nom_de_la_commune": "JUGEALS NAZARETH", "libell_d_acheminement": "JUGEALS NAZARETH", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19093"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45ca8ce78ad96c0009d27e93d9fd4dad3ba6bf30", "fields": {"nom_de_la_commune": "LAPLEAU", "libell_d_acheminement": "LAPLEAU", "code_postal": "19550", "coordonnees_gps": [45.2859653325, 2.15926332347], "code_commune_insee": "19106"}, "geometry": {"type": "Point", "coordinates": [2.15926332347, 45.2859653325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63e030b0598b46a1d2547e16a467b996c44f3733", "fields": {"nom_de_la_commune": "LIGINIAC", "libell_d_acheminement": "LIGINIAC", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19113"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "627ea5b426aa913e3f20bd3c5b2356e68d5698a2", "fields": {"nom_de_la_commune": "LIOURDRES", "libell_d_acheminement": "LIOURDRES", "code_postal": "19120", "coordonnees_gps": [44.9959517395, 1.80798267651], "code_commune_insee": "19116"}, "geometry": {"type": "Point", "coordinates": [1.80798267651, 44.9959517395]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e88d41f2f64c734e00e9d4b8cf9e155156547d1b", "fields": {"nom_de_la_commune": "LISSAC SUR COUZE", "libell_d_acheminement": "LISSAC SUR COUZE", "code_postal": "19600", "coordonnees_gps": [45.0904793907, 1.45970422251], "code_commune_insee": "19117"}, "geometry": {"type": "Point", "coordinates": [1.45970422251, 45.0904793907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "564f2bd23e78b89d26ca4bb684db9190fce4f565", "fields": {"nom_de_la_commune": "LOUIGNAC", "libell_d_acheminement": "LOUIGNAC", "code_postal": "19310", "coordonnees_gps": [45.2237215638, 1.31442514199], "code_commune_insee": "19120"}, "geometry": {"type": "Point", "coordinates": [1.31442514199, 45.2237215638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f41a1e994bb3228bb24c73a34eb943dbd661df5", "fields": {"nom_de_la_commune": "MARGERIDES", "libell_d_acheminement": "MARGERIDES", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19128"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03ae09ec8b704020ff4d979550b17da71884510f", "fields": {"nom_de_la_commune": "MENOIRE", "libell_d_acheminement": "MENOIRE", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19132"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c76c9d7cdab5a42ac7cdefa47e2789190cc680", "fields": {"nom_de_la_commune": "MEYMAC", "libell_d_acheminement": "MEYMAC", "code_postal": "19250", "coordonnees_gps": [45.5327331418, 2.12561107257], "code_commune_insee": "19136"}, "geometry": {"type": "Point", "coordinates": [2.12561107257, 45.5327331418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72db77759ffb65e216da29aef681e323f13bc2d2", "fields": {"nom_de_la_commune": "MEYSSAC", "libell_d_acheminement": "MEYSSAC", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19138"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "722633762a97ab83225c92d7d28b70d3af0e06ef", "fields": {"nom_de_la_commune": "MONESTIER MERLINES", "libell_d_acheminement": "MONESTIER MERLINES", "code_postal": "19340", "coordonnees_gps": [45.6718313952, 2.43065538451], "code_commune_insee": "19141"}, "geometry": {"type": "Point", "coordinates": [2.43065538451, 45.6718313952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da2e4b21bb682617e30f05e221fdb1075ac5fde6", "fields": {"nom_de_la_commune": "NEUVILLE", "libell_d_acheminement": "NEUVILLE", "code_postal": "19380", "coordonnees_gps": [45.1425705015, 1.85972993392], "code_commune_insee": "19149"}, "geometry": {"type": "Point", "coordinates": [1.85972993392, 45.1425705015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42bd9fb0376d593c2e80b2b35df83c1d5f23f2e", "fields": {"nom_de_la_commune": "NOAILHAC", "libell_d_acheminement": "NOAILHAC", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19150"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cefe1c89e48c37af7809bbfc984ad87596a429b3", "fields": {"nom_de_la_commune": "ORGNAC SUR VEZERE", "libell_d_acheminement": "ORGNAC SUR VEZERE", "code_postal": "19410", "coordonnees_gps": [45.3468885239, 1.51457035634], "code_commune_insee": "19154"}, "geometry": {"type": "Point", "coordinates": [1.51457035634, 45.3468885239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08bb95c879ae8920dbdbfc5196b6893149e2474b", "fields": {"nom_de_la_commune": "PALAZINGES", "libell_d_acheminement": "PALAZINGES", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19156"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d408d4877e92de5d8e3a4a6164d549368de4418", "fields": {"nom_de_la_commune": "PERET BEL AIR", "libell_d_acheminement": "PERET BEL AIR", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19159"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7dda0944211b4ed88e80c9f00fed52198fb5ea", "fields": {"nom_de_la_commune": "PEROLS SUR VEZERE", "libell_d_acheminement": "PEROLS SUR VEZERE", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19160"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f640b4b1fe04f243ba7a8a2ba9b8a28376c63da1", "fields": {"nom_de_la_commune": "ROSIERS DE JUILLAC", "libell_d_acheminement": "ROSIERS DE JUILLAC", "code_postal": "19350", "coordonnees_gps": [45.323276664, 1.31205893168], "code_commune_insee": "19177"}, "geometry": {"type": "Point", "coordinates": [1.31205893168, 45.323276664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c432dd1d11373e43f46c38edbae6ce8225a4b0", "fields": {"nom_de_la_commune": "ST AUGUSTIN", "libell_d_acheminement": "ST AUGUSTIN", "code_postal": "19390", "coordonnees_gps": [45.4299855469, 1.84010426124], "code_commune_insee": "19181"}, "geometry": {"type": "Point", "coordinates": [1.84010426124, 45.4299855469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b4a3e54f166942e800a3bffd3de8959e544580d", "fields": {"nom_de_la_commune": "ST CIRGUES LA LOUTRE", "libell_d_acheminement": "ST CIRGUES LA LOUTRE", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19193"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baea23c5d3dcc464d8b4c72d16d3ad4791af8c04", "fields": {"nom_de_la_commune": "ST ETIENNE LA GENESTE", "libell_d_acheminement": "ST ETIENNE LA GENESTE", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19200"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad48688501da8b8a47985a0f1b409481043fcf19", "fields": {"nom_de_la_commune": "ST GERMAIN LES VERGNES", "libell_d_acheminement": "ST GERMAIN LES VERGNES", "code_postal": "19330", "coordonnees_gps": [45.2774600558, 1.65838820849], "code_commune_insee": "19207"}, "geometry": {"type": "Point", "coordinates": [1.65838820849, 45.2774600558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38fa8201b2a9ea4a4c7a977decd2672a91582091", "fields": {"nom_de_la_commune": "ST HILAIRE PEYROUX", "libell_d_acheminement": "ST HILAIRE PEYROUX", "code_postal": "19560", "coordonnees_gps": [45.2125739554, 1.64194849457], "code_commune_insee": "19211"}, "geometry": {"type": "Point", "coordinates": [1.64194849457, 45.2125739554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "276d7ff751933683d6ec24623e58315abbef092f", "fields": {"nom_de_la_commune": "ST HILAIRE TAURIEUX", "libell_d_acheminement": "ST HILAIRE TAURIEUX", "code_postal": "19400", "coordonnees_gps": [45.0883560028, 1.92575532209], "code_commune_insee": "19212"}, "geometry": {"type": "Point", "coordinates": [1.92575532209, 45.0883560028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57024d949680bb84a35264b2c0aff782cf234d77", "fields": {"nom_de_la_commune": "ST JULIEN MAUMONT", "libell_d_acheminement": "ST JULIEN MAUMONT", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19217"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2055836bb6c804e0c5da14e11293b4b890cd44df", "fields": {"nom_de_la_commune": "STE MARIE LAPANOUZE", "libell_d_acheminement": "STE MARIE LAPANOUZE", "code_postal": "19160", "coordonnees_gps": [45.3827261719, 2.25902706895], "code_commune_insee": "19219"}, "geometry": {"type": "Point", "coordinates": [2.25902706895, 45.3827261719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f68b4dbfc26e4198ca6431e36e77d8f98b2c623", "fields": {"nom_de_la_commune": "ST MERD LES OUSSINES", "libell_d_acheminement": "ST MERD LES OUSSINES", "code_postal": "19170", "coordonnees_gps": [45.6008515398, 1.9309576213], "code_commune_insee": "19226"}, "geometry": {"type": "Point", "coordinates": [1.9309576213, 45.6008515398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9b1a3f30601bc4eaa5587bdf397392ee62e0ada", "fields": {"nom_de_la_commune": "ST PARDOUX LA CROISILLE", "libell_d_acheminement": "ST PARDOUX LA CROISILLE", "code_postal": "19320", "coordonnees_gps": [45.2413997705, 2.01019725147], "code_commune_insee": "19231"}, "geometry": {"type": "Point", "coordinates": [2.01019725147, 45.2413997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "718d197d3ad8c7225baf2caa6c22bab1cb41c950", "fields": {"nom_de_la_commune": "ST SOLVE", "libell_d_acheminement": "ST SOLVE", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19242"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b1e2889e135143615a3bc0463f63aa339aaba9", "fields": {"nom_de_la_commune": "ST YBARD", "libell_d_acheminement": "ST YBARD", "code_postal": "19140", "coordonnees_gps": [45.4534244824, 1.58484255236], "code_commune_insee": "19248"}, "geometry": {"type": "Point", "coordinates": [1.58484255236, 45.4534244824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74623bef24315f2eb877c8b5b8023629cd682f3c", "fields": {"nom_de_la_commune": "SERILHAC", "libell_d_acheminement": "SERILHAC", "code_postal": "19190", "coordonnees_gps": [45.1312393255, 1.71004487972], "code_commune_insee": "19257"}, "geometry": {"type": "Point", "coordinates": [1.71004487972, 45.1312393255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "265974e9df2ff4bd80d76d85dff13200523a45e4", "fields": {"nom_de_la_commune": "SERVIERES LE CHATEAU", "libell_d_acheminement": "SERVIERES LE CHATEAU", "code_postal": "19220", "coordonnees_gps": [45.1481438616, 2.10593396188], "code_commune_insee": "19258"}, "geometry": {"type": "Point", "coordinates": [2.10593396188, 45.1481438616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e223e154e3c9b5dd532e1dd8d29d6b45bcc32ae1", "fields": {"nom_de_la_commune": "SOUDEILLES", "libell_d_acheminement": "SOUDEILLES", "code_postal": "19300", "coordonnees_gps": [45.4146621596, 2.029923541], "code_commune_insee": "19263"}, "geometry": {"type": "Point", "coordinates": [2.029923541, 45.4146621596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7085127ce0b9fd1b10c02c973e5ec6ccba2824d6", "fields": {"nom_de_la_commune": "THALAMY", "libell_d_acheminement": "THALAMY", "code_postal": "19200", "coordonnees_gps": [45.541954447, 2.3447608402], "code_commune_insee": "19266"}, "geometry": {"type": "Point", "coordinates": [2.3447608402, 45.541954447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817e091957203444721b56652a7d3051b7f8be8b", "fields": {"nom_de_la_commune": "TROCHE", "libell_d_acheminement": "TROCHE", "code_postal": "19230", "coordonnees_gps": [45.3932618354, 1.37629346937], "code_commune_insee": "19270"}, "geometry": {"type": "Point", "coordinates": [1.37629346937, 45.3932618354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d61df8095dc1e7c02684b768a32f5a5640685549", "fields": {"nom_de_la_commune": "TURENNE", "libell_d_acheminement": "TURENNE", "code_postal": "19500", "coordonnees_gps": [45.0557481825, 1.6593939272], "code_commune_insee": "19273"}, "geometry": {"type": "Point", "coordinates": [1.6593939272, 45.0557481825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633bf2779ffb1971b2c2847ad4aa07bdce2f5918", "fields": {"nom_de_la_commune": "VARS SUR ROSEIX", "libell_d_acheminement": "VARS SUR ROSEIX", "code_postal": "19130", "coordonnees_gps": [45.2878730869, 1.39711270492], "code_commune_insee": "19279"}, "geometry": {"type": "Point", "coordinates": [1.39711270492, 45.2878730869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08559cec571c6caf11adcd1b984763347a3175f4", "fields": {"nom_de_la_commune": "VITRAC SUR MONTANE", "libell_d_acheminement": "VITRAC SUR MONTANE", "code_postal": "19800", "coordonnees_gps": [45.3544918125, 1.89101051588], "code_commune_insee": "19287"}, "geometry": {"type": "Point", "coordinates": [1.89101051588, 45.3544918125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ae57a77c912a45493fd1e788ced7c471532bb5", "fields": {"nom_de_la_commune": "AHUY", "libell_d_acheminement": "AHUY", "code_postal": "21121", "coordonnees_gps": [47.3937419254, 4.95519023386], "code_commune_insee": "21003"}, "geometry": {"type": "Point", "coordinates": [4.95519023386, 47.3937419254]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e4a4ef158ed9d5d1be8cf12a97d9073bbcd8cc8", "fields": {"nom_de_la_commune": "AIGNAY LE DUC", "libell_d_acheminement": "AIGNAY LE DUC", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21004"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7541a9e0316a17af4f3dcf45ec8d30e25f774c67", "fields": {"nom_de_la_commune": "ALOXE CORTON", "libell_d_acheminement": "ALOXE CORTON", "code_postal": "21420", "coordonnees_gps": [47.0968171399, 4.80502762881], "code_commune_insee": "21010"}, "geometry": {"type": "Point", "coordinates": [4.80502762881, 47.0968171399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14700daf4f4119c1b815687434890a92291a70d7", "fields": {"nom_de_la_commune": "AMPILLY LES BORDES", "libell_d_acheminement": "AMPILLY LES BORDES", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21011"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80559b0a83a0dbc8061e075ce15b564452cb8882", "fields": {"nom_de_la_commune": "ARCEY", "libell_d_acheminement": "ARCEY", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21018"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78078366c00380b006239614b5bad66cda1344a2", "fields": {"nom_de_la_commune": "ARCONCEY", "libell_d_acheminement": "ARCONCEY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21020"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78c7c215ed72106a1889499ee73d42d3e9e61b6b", "fields": {"nom_de_la_commune": "ARC SUR TILLE", "libell_d_acheminement": "ARC SUR TILLE", "code_postal": "21560", "coordonnees_gps": [47.326460883, 5.19639629604], "code_commune_insee": "21021"}, "geometry": {"type": "Point", "coordinates": [5.19639629604, 47.326460883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ceb17833fb832847264faab584e19ce289d994", "fields": {"nom_de_la_commune": "ARGILLY", "libell_d_acheminement": "ARGILLY", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21022"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827beb954b4e2bddd9229d0a688c4a0e0d277f0c", "fields": {"nom_de_la_commune": "ARNAY LE DUC", "libell_d_acheminement": "ARNAY LE DUC", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21023"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25ff630c52675fc2c4af6198548eaca486897c52", "fields": {"nom_de_la_commune": "ASNIERES EN MONTAGNE", "libell_d_acheminement": "ASNIERES EN MONTAGNE", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21026"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24948d52499af5b122a11aa274dceba8405795c", "fields": {"nom_de_la_commune": "ATHIE", "libell_d_acheminement": "ATHIE", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21029"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3fa6b697033e61fe074288488a6a47b36c11b99", "fields": {"nom_de_la_commune": "AUBIGNY EN PLAINE", "libell_d_acheminement": "AUBIGNY EN PLAINE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21031"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999c7428b61b58a9c434fcf0e98498269b1dc3c5", "fields": {"nom_de_la_commune": "AVOT", "libell_d_acheminement": "AVOT", "code_postal": "21580", "coordonnees_gps": [47.6313040317, 4.97754059731], "code_commune_insee": "21041"}, "geometry": {"type": "Point", "coordinates": [4.97754059731, 47.6313040317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c93e9dcfa589019d3fef0f75bf1a89cfb2082b6a", "fields": {"nom_de_la_commune": "BAGNOT", "libell_d_acheminement": "BAGNOT", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21042"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84096b094f409f72e6b4dcb550b140b208f384ca", "fields": {"nom_de_la_commune": "RIBERAC", "libell_d_acheminement": "RIBERAC", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24352"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e61d79bede4a000147ef5cf4cdd4038063d6dc0", "fields": {"code_postal": "24580", "code_commune_insee": "24356", "libell_d_acheminement": "ROUFFIGNAC ST CERNIN DE REILHAC", "ligne_5": "ST CERNIN DE REILLAC", "nom_de_la_commune": "ROUFFIGNAC ST CERNIN DE REILHAC", "coordonnees_gps": [45.0387588745, 0.994420883545]}, "geometry": {"type": "Point", "coordinates": [0.994420883545, 45.0387588745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050f2ecd6bb7833c8f40fff5086dd36034f091e9", "fields": {"nom_de_la_commune": "ROUFFIGNAC DE SIGOULES", "libell_d_acheminement": "ROUFFIGNAC DE SIGOULES", "code_postal": "24240", "coordonnees_gps": [44.7790390603, 0.38999404584], "code_commune_insee": "24357"}, "geometry": {"type": "Point", "coordinates": [0.38999404584, 44.7790390603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88a722218edba1de3bbfc971906c0bd684dd954f", "fields": {"nom_de_la_commune": "ST ANTOINE D AUBEROCHE", "libell_d_acheminement": "ST ANTOINE D AUBEROCHE", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24369"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d39af676322ef38a4212639314fe4a1d883aeab", "fields": {"nom_de_la_commune": "ST AUBIN DE CADELECH", "libell_d_acheminement": "ST AUBIN DE CADELECH", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24373"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb4c7dd14651fbc4eb448125aaaa8533ad6c1371", "fields": {"nom_de_la_commune": "ST CAPRAISE D EYMET", "libell_d_acheminement": "ST CAPRAISE D EYMET", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24383"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4229818ce3b57cb62d9dcc7fd114026b89b05b33", "fields": {"nom_de_la_commune": "ST CYBRANET", "libell_d_acheminement": "ST CYBRANET", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24395"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "babd60eb4088fb69b811295fcbd4264b182fd1d1", "fields": {"nom_de_la_commune": "STE FOY DE BELVES", "libell_d_acheminement": "STE FOY DE BELVES", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24406"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcca379432d9a0c2d9888f40e3dfbb0a3e29c457", "fields": {"nom_de_la_commune": "STE FOY DE LONGAS", "libell_d_acheminement": "STE FOY DE LONGAS", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24407"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c906d54010eac6d7e43e627b7f3d2bca73760586", "fields": {"nom_de_la_commune": "ST FRONT SUR NIZONNE", "libell_d_acheminement": "ST FRONT SUR NIZONNE", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24411"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13adcdded0c8db008a73d875b84951c77c354b4e", "fields": {"nom_de_la_commune": "ST GERMAIN DU SALEMBRE", "libell_d_acheminement": "ST GERMAIN DU SALEMBRE", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24418"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0793c5ec8fb2917e8f0c0dda36f1f1106c574ce", "fields": {"nom_de_la_commune": "ST GERMAIN ET MONS", "libell_d_acheminement": "ST GERMAIN ET MONS", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24419"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf1932da6cc6094a6047bb14aecc5eb170be7f8", "fields": {"nom_de_la_commune": "ST GEYRAC", "libell_d_acheminement": "ST GEYRAC", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24421"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e769ff6f478c53d8a78be9e7cccd246b590f760b", "fields": {"nom_de_la_commune": "ST HILAIRE D ESTISSAC", "libell_d_acheminement": "ST HILAIRE D ESTISSAC", "code_postal": "24140", "coordonnees_gps": [44.9758683047, 0.548738079815], "code_commune_insee": "24422"}, "geometry": {"type": "Point", "coordinates": [0.548738079815, 44.9758683047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "626c685b7eacce7ad1778dbafcf9a95c1e247b57", "fields": {"nom_de_la_commune": "ST JORY DE CHALAIS", "libell_d_acheminement": "ST JORY DE CHALAIS", "code_postal": "24800", "coordonnees_gps": [45.4311945762, 0.925493888326], "code_commune_insee": "24428"}, "geometry": {"type": "Point", "coordinates": [0.925493888326, 45.4311945762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba416ae71863ab0842321aca927f2158ebd642cc", "fields": {"nom_de_la_commune": "ST MARCEL DU PERIGORD", "libell_d_acheminement": "ST MARCEL DU PERIGORD", "code_postal": "24510", "coordonnees_gps": [44.9191872389, 0.791972354919], "code_commune_insee": "24445"}, "geometry": {"type": "Point", "coordinates": [0.791972354919, 44.9191872389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b4abb1ea10d74269cdd43a2c759e44e97c2306", "fields": {"nom_de_la_commune": "ST MARTIAL DE NABIRAT", "libell_d_acheminement": "ST MARTIAL DE NABIRAT", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24450"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25284604d483f917f0bd1c1b7ccc7e07c3c0922", "fields": {"nom_de_la_commune": "ST MAIME DE PEREYROL", "libell_d_acheminement": "ST MAIME DE PEREYROL", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24459"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cae6c3e223cc4486ea170c40356c2406b08a935", "fields": {"nom_de_la_commune": "ST MICHEL DE VILLADEIX", "libell_d_acheminement": "ST MICHEL DE VILLADEIX", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24468"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b02c53ccd1742479bd57acd61d3df87c7ee7344", "fields": {"nom_de_la_commune": "ST PANTALY D ANS", "libell_d_acheminement": "ST PANTALY D ANS", "code_postal": "24640", "coordonnees_gps": [45.228517812, 0.964656350856], "code_commune_insee": "24475"}, "geometry": {"type": "Point", "coordinates": [0.964656350856, 45.228517812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3af9d489285d2c696215be85647991f2f8277794", "fields": {"nom_de_la_commune": "ST PIERRE DE CHIGNAC", "libell_d_acheminement": "ST PIERRE DE CHIGNAC", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24484"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140b55ec3d2946de3f2aac90d8dd274f335b34d8", "fields": {"nom_de_la_commune": "ST PIERRE DE FRUGIE", "libell_d_acheminement": "ST PIERRE DE FRUGIE", "code_postal": "24450", "coordonnees_gps": [45.5667064353, 0.957966162426], "code_commune_insee": "24486"}, "geometry": {"type": "Point", "coordinates": [0.957966162426, 45.5667064353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b44a01eac16d877d66cafc37c78955fc943738ad", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "24700", "coordonnees_gps": [45.0218364958, 0.161447919972], "code_commune_insee": "24494"}, "geometry": {"type": "Point", "coordinates": [0.161447919972, 45.0218364958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce802c842869bbbd7baadf72230e8117dfc815b6", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "24520", "coordonnees_gps": [44.8599142189, 0.59682022839], "code_commune_insee": "24499"}, "geometry": {"type": "Point", "coordinates": [0.59682022839, 44.8599142189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c5345caad9757d6e71bf34f4254d4d84a354ae", "fields": {"nom_de_la_commune": "ST SEVERIN D ESTISSAC", "libell_d_acheminement": "ST SEVERIN D ESTISSAC", "code_postal": "24190", "coordonnees_gps": [45.1225626453, 0.415497339089], "code_commune_insee": "24502"}, "geometry": {"type": "Point", "coordinates": [0.415497339089, 45.1225626453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbb382442aa145de35d77ba6688ac0d57fc4439e", "fields": {"nom_de_la_commune": "ST VICTOR", "libell_d_acheminement": "ST VICTOR", "code_postal": "24350", "coordonnees_gps": [45.2571179645, 0.530263240315], "code_commune_insee": "24508"}, "geometry": {"type": "Point", "coordinates": [0.530263240315, 45.2571179645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b58e10c1e0779bc8a4ea65841bff785fe329b96", "fields": {"nom_de_la_commune": "SALLES DE BELVES", "libell_d_acheminement": "SALLES DE BELVES", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24517"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2303017319b444571313b69f213e71a40206f47", "fields": {"nom_de_la_commune": "SALON", "libell_d_acheminement": "SALON", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24518"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e53d39375630f24f6361df311dc9733c8e3428", "fields": {"nom_de_la_commune": "SERGEAC", "libell_d_acheminement": "SERGEAC", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24531"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e56305372703db2ea43409df57a06f16ebe87807", "fields": {"nom_de_la_commune": "SERRES ET MONTGUYARD", "libell_d_acheminement": "SERRES ET MONTGUYARD", "code_postal": "24500", "coordonnees_gps": [44.6978122496, 0.436540472033], "code_commune_insee": "24532"}, "geometry": {"type": "Point", "coordinates": [0.436540472033, 44.6978122496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eda7c07483d88309d495a75acf4a7e7410a325cc", "fields": {"code_postal": "24460", "code_commune_insee": "24540", "libell_d_acheminement": "SORGES ET LIGUEUX EN PERIGORD", "ligne_5": "LIGUEUX", "nom_de_la_commune": "SORGES ET LIGUEUX EN PERIGORD", "coordonnees_gps": [45.2956832726, 0.780250609832]}, "geometry": {"type": "Point", "coordinates": [0.780250609832, 45.2956832726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ee2d44b7eeba4230ab34bca651c48ac49fb7d25", "fields": {"nom_de_la_commune": "SOUDAT", "libell_d_acheminement": "SOUDAT", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24541"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89dac5eb12bc1e43e49dd3a7f33bc4dc54c0da46", "fields": {"nom_de_la_commune": "VALEUIL", "libell_d_acheminement": "VALEUIL", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24561"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a06e8e5cc32b371d1641cfca55801fdf3f9686", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24566"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9224b85477fccb6e79f537a07ae915016f1715bb", "fields": {"nom_de_la_commune": "VEYRIGNAC", "libell_d_acheminement": "VEYRIGNAC", "code_postal": "24370", "coordonnees_gps": [44.8749611046, 1.35267750907], "code_commune_insee": "24574"}, "geometry": {"type": "Point", "coordinates": [1.35267750907, 44.8749611046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2f4abbbc503a7cc1df8908a380d566628090e11", "fields": {"nom_de_la_commune": "VEYRINES DE DOMME", "libell_d_acheminement": "VEYRINES DE DOMME", "code_postal": "24250", "coordonnees_gps": [44.774302218, 1.21332262796], "code_commune_insee": "24575"}, "geometry": {"type": "Point", "coordinates": [1.21332262796, 44.774302218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7183d392c9ef4d9c949eded75968717d2f1476a", "fields": {"nom_de_la_commune": "VEZAC", "libell_d_acheminement": "VEZAC", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24577"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e8d43f31e6c9f45ea9d1615e2febfaf017e1005", "fields": {"nom_de_la_commune": "VIEUX MAREUIL", "libell_d_acheminement": "VIEUX MAREUIL", "code_postal": "24340", "coordonnees_gps": [45.4527668085, 0.495716304858], "code_commune_insee": "24579"}, "geometry": {"type": "Point", "coordinates": [0.495716304858, 45.4527668085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc2067777c4930cb2537c801fa185cedc89b02c", "fields": {"nom_de_la_commune": "VILLARS", "libell_d_acheminement": "VILLARS", "code_postal": "24530", "coordonnees_gps": [45.4035871234, 0.722063725485], "code_commune_insee": "24582"}, "geometry": {"type": "Point", "coordinates": [0.722063725485, 45.4035871234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edeee4ef675a5630d0b19f03fdf98baf02ada7c8", "fields": {"nom_de_la_commune": "ABBANS DESSUS", "libell_d_acheminement": "ABBANS DESSUS", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25002"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfeaa24391cdc7682a706656836f84983aefce29", "fields": {"nom_de_la_commune": "AISSEY", "libell_d_acheminement": "AISSEY", "code_postal": "25360", "coordonnees_gps": [47.2568575507, 6.29111857571], "code_commune_insee": "25009"}, "geometry": {"type": "Point", "coordinates": [6.29111857571, 47.2568575507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffcf3f8977af19c0f74cd4a53aa33ce92a471322", "fields": {"nom_de_la_commune": "APPENANS", "libell_d_acheminement": "APPENANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25019"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ebb6c3dc347cd41b47a89091ce8a2242dd0c2c", "fields": {"nom_de_la_commune": "AUDEUX", "libell_d_acheminement": "AUDEUX", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25030"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ed640337c65328417cf08de1f6b043ec560d122", "fields": {"nom_de_la_commune": "LES AUXONS", "libell_d_acheminement": "LES AUXONS", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25035"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3e2ea4cfaab7470405c2294a26753b5b56842e2", "fields": {"code_postal": "25870", "code_commune_insee": "25035", "libell_d_acheminement": "LES AUXONS", "ligne_5": "AUXON DESSOUS", "nom_de_la_commune": "LES AUXONS", "coordonnees_gps": [47.3323567525, 6.03683480624]}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825430c8a794ca139333f7ada4464fcdd3716ab2", "fields": {"nom_de_la_commune": "BART", "libell_d_acheminement": "BART", "code_postal": "25420", "coordonnees_gps": [47.4766226069, 6.76728800486], "code_commune_insee": "25043"}, "geometry": {"type": "Point", "coordinates": [6.76728800486, 47.4766226069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e527b31e402fd4a87339908e2f30813604de69c5", "fields": {"nom_de_la_commune": "BATTENANS LES MINES", "libell_d_acheminement": "BATTENANS LES MINES", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25045"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d6830346357cefb675838bc61a249fb5b922d4", "fields": {"nom_de_la_commune": "BLUSSANS", "libell_d_acheminement": "BLUSSANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25067"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf042be87b6b4c317e4dfcc317dd9ff403cb307c", "fields": {"nom_de_la_commune": "BONDEVAL", "libell_d_acheminement": "BONDEVAL", "code_postal": "25230", "coordonnees_gps": [47.458852927, 6.88062444955], "code_commune_insee": "25071"}, "geometry": {"type": "Point", "coordinates": [6.88062444955, 47.458852927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6276f0721a3284db5fd3083b2b6d6141a65411", "fields": {"nom_de_la_commune": "BRECONCHAUX", "libell_d_acheminement": "BRECONCHAUX", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25088"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61e748ef9edf52facfa5477292fd5b6b48a1b338", "fields": {"nom_de_la_commune": "BREMONDANS", "libell_d_acheminement": "BREMONDANS", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25089"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebabf15357a8c7d2c33ff323f02125a78fd15c0b", "fields": {"nom_de_la_commune": "BREY ET MAISON DU BOIS", "libell_d_acheminement": "BREY ET MAISON DU BOIS", "code_postal": "25240", "coordonnees_gps": [46.6706684626, 6.1692288203], "code_commune_insee": "25096"}, "geometry": {"type": "Point", "coordinates": [6.1692288203, 46.6706684626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "442b9e5e6e3917913c19cbdb3887ee815b207b52", "fields": {"nom_de_la_commune": "BY", "libell_d_acheminement": "BY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25104"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e99c434a047f55096adc3098b634ef7b80256d5", "fields": {"nom_de_la_commune": "CESSEY", "libell_d_acheminement": "CESSEY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25109"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f6f37cc21a966fcca08d675f4b6cac6a8af3439", "fields": {"nom_de_la_commune": "CHAMESOL", "libell_d_acheminement": "CHAMESOL", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25114"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eafb495e54b487de672912c2412da6e6dda58fd", "fields": {"nom_de_la_commune": "CHAMPAGNEY", "libell_d_acheminement": "CHAMPAGNEY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25115"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c83baa9b95662a769bf14c0d87fd6528202c81f7", "fields": {"nom_de_la_commune": "CHAMPVANS LES MOULINS", "libell_d_acheminement": "CHAMPVANS LES MOULINS", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25119"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6c2d69d6369ba682af3c5bb92863557fe4edf1f", "fields": {"nom_de_la_commune": "CHAPELLE D HUIN", "libell_d_acheminement": "CHAPELLE D HUIN", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25122"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "084d64d3e8098b75859ffe13f528a5bde4d9a6cb", "fields": {"nom_de_la_commune": "CHARMAUVILLERS", "libell_d_acheminement": "CHARMAUVILLERS", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25124"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a9ddb5040919e3c0cc41a626634be32b5b59b7", "fields": {"nom_de_la_commune": "LA CHAUX", "libell_d_acheminement": "LA CHAUX", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25139"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cf7c30047b81a16713e42111653428847d8c96c", "fields": {"nom_de_la_commune": "CHAZOT", "libell_d_acheminement": "CHAZOT", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25145"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c470616ff1eb06f6a392855eb026f792c83a2ed", "fields": {"nom_de_la_commune": "CHEVIGNEY SUR L OGNON", "libell_d_acheminement": "CHEVIGNEY SUR L OGNON", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25150"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8a7e6a170543867a3a842ef84a235eb2b25e29", "fields": {"nom_de_la_commune": "CHOUZELOT", "libell_d_acheminement": "CHOUZELOT", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25154"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be36b404ecd03b4a5594ab12a044ffc6a77504b5", "fields": {"nom_de_la_commune": "CROSEY LE GRAND", "libell_d_acheminement": "CROSEY LE GRAND", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25177"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88bb4f85c9421487bb49e8e1fe9342d9755e8301", "fields": {"nom_de_la_commune": "CROUZET MIGETTE", "libell_d_acheminement": "CROUZET MIGETTE", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25180"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f5a7013d3beac9276e62272908f66ee7e1c3a66", "fields": {"nom_de_la_commune": "CUBRY", "libell_d_acheminement": "CUBRY", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25182"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "340c7a2e8680136a7aff7e2e9d66e391fbdf6f6e", "fields": {"nom_de_la_commune": "CUSSEY SUR LISON", "libell_d_acheminement": "CUSSEY SUR LISON", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25185"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "505fceab1fe57a2a6a156b45a10e8b6a4f0864b8", "fields": {"nom_de_la_commune": "CUSSEY SUR L OGNON", "libell_d_acheminement": "CUSSEY SUR L OGNON", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25186"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "350ab308d87fb5db9ca2aeb00084f1b757b2671e", "fields": {"nom_de_la_commune": "DAMBELIN", "libell_d_acheminement": "DAMBELIN", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25187"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc9f9c366dde78aeb3590fb99eb4d4f8563fcf8b", "fields": {"nom_de_la_commune": "DAMPIERRE LES BOIS", "libell_d_acheminement": "DAMPIERRE LES BOIS", "code_postal": "25490", "coordonnees_gps": [47.518340025, 6.90999860346], "code_commune_insee": "25190"}, "geometry": {"type": "Point", "coordinates": [6.90999860346, 47.518340025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ff10d534865cc7579d32e657d392373a3608e1", "fields": {"nom_de_la_commune": "DELUZ", "libell_d_acheminement": "DELUZ", "code_postal": "25960", "coordonnees_gps": [47.2973840074, 6.1928999339], "code_commune_insee": "25197"}, "geometry": {"type": "Point", "coordinates": [6.1928999339, 47.2973840074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3658456670deea6288744b43b69d18f7b56789a3", "fields": {"nom_de_la_commune": "DEVECEY", "libell_d_acheminement": "DEVECEY", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25200"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3485b5213417a391953d12b9f430d09699820a9c", "fields": {"nom_de_la_commune": "DOMPREL", "libell_d_acheminement": "DOMPREL", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25203"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "016571663d67f045f8a0b34ee8c764f6c11c84d0", "fields": {"nom_de_la_commune": "ECHEVANNES", "libell_d_acheminement": "ECHEVANNES", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25211"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f7166b6e38c942396659b852e72a3414db012c", "fields": {"nom_de_la_commune": "ECURCEY", "libell_d_acheminement": "ECURCEY", "code_postal": "25150", "coordonnees_gps": [47.3948099665, 6.72943096547], "code_commune_insee": "25216"}, "geometry": {"type": "Point", "coordinates": [6.72943096547, 47.3948099665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e767093f3c0a0a82ccfd02401c3375eba5740e1", "fields": {"nom_de_la_commune": "EPENOY", "libell_d_acheminement": "EPENOY", "code_postal": "25800", "coordonnees_gps": [47.1494559066, 6.34818353393], "code_commune_insee": "25219"}, "geometry": {"type": "Point", "coordinates": [6.34818353393, 47.1494559066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e39c55241d0535c07e771a115b2c84d458c54d", "fields": {"code_postal": "25330", "code_commune_insee": "25223", "libell_d_acheminement": "ETERNOZ", "ligne_5": "ALAISE", "nom_de_la_commune": "ETERNOZ", "coordonnees_gps": [47.0294541279, 6.08005639292]}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c3f951c60ded200fb6d66cfb46ca1d3c4ce6221", "fields": {"nom_de_la_commune": "EVILLERS", "libell_d_acheminement": "EVILLERS", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25229"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d08307b7f63b1e71675994949058d5ab332300f", "fields": {"nom_de_la_commune": "FALLERANS", "libell_d_acheminement": "FALLERANS", "code_postal": "25580", "coordonnees_gps": [47.1244467282, 6.26910894266], "code_commune_insee": "25233"}, "geometry": {"type": "Point", "coordinates": [6.26910894266, 47.1244467282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74465a47d7e49bc8b8fc586c0d679def1dcbd025", "fields": {"nom_de_la_commune": "FERRIERES LE LAC", "libell_d_acheminement": "FERRIERES LE LAC", "code_postal": "25470", "coordonnees_gps": [47.2892156314, 6.92614012475], "code_commune_insee": "25234"}, "geometry": {"type": "Point", "coordinates": [6.92614012475, 47.2892156314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bffde53d8f2515b18df7999c434d0a26995289f0", "fields": {"nom_de_la_commune": "FERRIERES LES BOIS", "libell_d_acheminement": "FERRIERES LES BOIS", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25235"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f4d62696b7d682ccf4592845c5f9e8ffe45651", "fields": {"nom_de_la_commune": "FEULE", "libell_d_acheminement": "FEULE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25239"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9608eab0ea1a86b0cf56cb2fe821d24a3f25214", "fields": {"nom_de_la_commune": "LES FINS", "libell_d_acheminement": "LES FINS", "code_postal": "25500", "coordonnees_gps": [47.0643984957, 6.61022999847], "code_commune_insee": "25240"}, "geometry": {"type": "Point", "coordinates": [6.61022999847, 47.0643984957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d5fa73d78fa5411b5f94dd8e31bbdd72e7b1304", "fields": {"nom_de_la_commune": "FOUCHERANS", "libell_d_acheminement": "FOUCHERANS", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25250"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d255350371b6c1a651aaa480aee213e34975bde", "fields": {"nom_de_la_commune": "LES FOURGS", "libell_d_acheminement": "LES FOURGS", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25254"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4317514e012097bc71f8b6ad23eb239e2b54bbc0", "fields": {"nom_de_la_commune": "FRAMBOUHANS", "libell_d_acheminement": "FRAMBOUHANS", "code_postal": "25140", "coordonnees_gps": [47.193428851, 6.81794567647], "code_commune_insee": "25256"}, "geometry": {"type": "Point", "coordinates": [6.81794567647, 47.193428851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9843fcda71cfc9de78b397ddf198c68b6c6dba0a", "fields": {"nom_de_la_commune": "GENNES", "libell_d_acheminement": "GENNES", "code_postal": "25660", "coordonnees_gps": [47.1989608697, 6.07740011363], "code_commune_insee": "25267"}, "geometry": {"type": "Point", "coordinates": [6.07740011363, 47.1989608697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b580f92e9fd3dafc7ef41ac0e8d1b35693f6e13a", "fields": {"nom_de_la_commune": "GLERE", "libell_d_acheminement": "GLERE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25275"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c846a03f7dcb1c3a1d4bc2a85bfaf9ffa1b6cb0", "fields": {"nom_de_la_commune": "GOUHELANS", "libell_d_acheminement": "GOUHELANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25279"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13298398214ba4be15ab6b1e91e700843477e7ac", "fields": {"nom_de_la_commune": "GOUX SOUS LANDET", "libell_d_acheminement": "GOUX SOUS LANDET", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25283"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59b69d173494932f28e441e1c07a690e93ac179b", "fields": {"code_postal": "25390", "code_commune_insee": "25288", "libell_d_acheminement": "FOURNETS LUISANS", "ligne_5": "LUISANS", "nom_de_la_commune": "FOURNETS LUISANS", "coordonnees_gps": [47.1343270529, 6.53620847764]}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b6c998c4aac21f88af2d627a714fa2da4842bb2", "fields": {"nom_de_la_commune": "LA GRANGE", "libell_d_acheminement": "LA GRANGE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25290"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebce36314124c315bcd5eacaefa57ced687a7fd9", "fields": {"nom_de_la_commune": "GRANGES NARBOZ", "libell_d_acheminement": "GRANGES NARBOZ", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25293"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b35c44c191145c5d613fc80acf3505fc46f46a10", "fields": {"nom_de_la_commune": "LE GRATTERIS", "libell_d_acheminement": "LE GRATTERIS", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25297"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e63ebd00ed3fb23f584e48f826e8e801f84499", "fields": {"nom_de_la_commune": "GUILLON LES BAINS", "libell_d_acheminement": "GUILLON LES BAINS", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25299"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20a1742798906c93b6ef28b04ce06e1fc3938ccf", "fields": {"nom_de_la_commune": "HAUTERIVE LA FRESSE", "libell_d_acheminement": "HAUTERIVE LA FRESSE", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25303"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de5fcd8d5d7d5b4dd534df82b5ea0435415bccd", "fields": {"nom_de_la_commune": "HERIMONCOURT", "libell_d_acheminement": "HERIMONCOURT", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25304"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c78150fc17175b63da210288bb5755cddae77f6", "fields": {"nom_de_la_commune": "L HOPITAL DU GROSBOIS", "libell_d_acheminement": "L HOPITAL DU GROSBOIS", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25305"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c95c1b632b90de7529054f14e5a5b7c2defae954", "fields": {"nom_de_la_commune": "L HOPITAL ST LIEFFROY", "libell_d_acheminement": "L HOPITAL ST LIEFFROY", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25306"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f832779adeb7a6ee31c47a93a7b86fe642521b8d", "fields": {"nom_de_la_commune": "HYEVRE MAGNY", "libell_d_acheminement": "HYEVRE MAGNY", "code_postal": "25110", "coordonnees_gps": [47.3533733684, 6.36786795727], "code_commune_insee": "25312"}, "geometry": {"type": "Point", "coordinates": [6.36786795727, 47.3533733684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07ab1549ae36468abdad80de3b730fc6f58fda50", "fields": {"nom_de_la_commune": "BREBOTTE", "libell_d_acheminement": "BREBOTTE", "code_postal": "90140", "coordonnees_gps": [47.5713832567, 6.93555749389], "code_commune_insee": "90018"}, "geometry": {"type": "Point", "coordinates": [6.93555749389, 47.5713832567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e178b17502e5ef5c505fa9785427aeae9155b18", "fields": {"nom_de_la_commune": "CHATENOIS LES FORGES", "libell_d_acheminement": "CHATENOIS LES FORGES", "code_postal": "90700", "coordonnees_gps": [47.558771629, 6.83344122988], "code_commune_insee": "90022"}, "geometry": {"type": "Point", "coordinates": [6.83344122988, 47.558771629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519913ee1b29c74b36cbf4547b330336f9a3cf4b", "fields": {"nom_de_la_commune": "CRAVANCHE", "libell_d_acheminement": "CRAVANCHE", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90029"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0c4ae304387b3d3b8b79eaec0d4cb488cca58d9", "fields": {"nom_de_la_commune": "CROIX", "libell_d_acheminement": "CROIX", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90030"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4da2d7eec17fe29b6ac97cb2ca287ef0db130537", "fields": {"nom_de_la_commune": "CUNELIERES", "libell_d_acheminement": "CUNELIERES", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90031"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db1ce91cfa7081526c80e2db44eac08b246787c7", "fields": {"nom_de_la_commune": "DANJOUTIN", "libell_d_acheminement": "DANJOUTIN", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90032"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec877de28f3817bcf3e0481b17380af5a0453b63", "fields": {"nom_de_la_commune": "DELLE", "libell_d_acheminement": "DELLE", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90033"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc06722da4cb8e9cb1394dd04d0f62ca22155dc", "fields": {"nom_de_la_commune": "DENNEY", "libell_d_acheminement": "DENNEY", "code_postal": "90160", "coordonnees_gps": [47.6449615689, 6.92104396254], "code_commune_insee": "90034"}, "geometry": {"type": "Point", "coordinates": [6.92104396254, 47.6449615689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0059d1521a391a456d1aea7c0d72aa15abe3f1e", "fields": {"nom_de_la_commune": "EVETTE SALBERT", "libell_d_acheminement": "EVETTE SALBERT", "code_postal": "90350", "coordonnees_gps": [47.6724055836, 6.79689520982], "code_commune_insee": "90042"}, "geometry": {"type": "Point", "coordinates": [6.79689520982, 47.6724055836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3291d607c9f3d5bc777d2ce9fd3b54bc92a7c52d", "fields": {"nom_de_la_commune": "FELON", "libell_d_acheminement": "FELON", "code_postal": "90110", "coordonnees_gps": [47.7312446096, 6.96557108211], "code_commune_insee": "90044"}, "geometry": {"type": "Point", "coordinates": [6.96557108211, 47.7312446096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18a2e117dea385c0b3c8714de532244abb2bced", "fields": {"nom_de_la_commune": "FONTENELLE", "libell_d_acheminement": "FONTENELLE", "code_postal": "90340", "coordonnees_gps": [47.6213054353, 6.94143825655], "code_commune_insee": "90048"}, "geometry": {"type": "Point", "coordinates": [6.94143825655, 47.6213054353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0e4ae1fccd20f00aa10e634aff7e7402c644948", "fields": {"nom_de_la_commune": "LACHAPELLE SOUS ROUGEMONT", "libell_d_acheminement": "LACHAPELLE SOUS ROUGEMONT", "code_postal": "90360", "coordonnees_gps": [47.7176330768, 7.01311046997], "code_commune_insee": "90058"}, "geometry": {"type": "Point", "coordinates": [7.01311046997, 47.7176330768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a3d511c3ee52fbedf7d120351f0f217bd5ce18", "fields": {"nom_de_la_commune": "MONTREUX CHATEAU", "libell_d_acheminement": "MONTREUX CHATEAU", "code_postal": "90130", "coordonnees_gps": [47.605567769, 6.99078617872], "code_commune_insee": "90071"}, "geometry": {"type": "Point", "coordinates": [6.99078617872, 47.605567769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4faef3062367e6136f1e8edf966fe43664b74d", "fields": {"nom_de_la_commune": "PETITEFONTAINE", "libell_d_acheminement": "PETITEFONTAINE", "code_postal": "90360", "coordonnees_gps": [47.7176330768, 7.01311046997], "code_commune_insee": "90078"}, "geometry": {"type": "Point", "coordinates": [7.01311046997, 47.7176330768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ad7f5f91adc6e1a1c3069d003197bad1c47194", "fields": {"nom_de_la_commune": "REPPE", "libell_d_acheminement": "REPPE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90084"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f761de2a3f62a5a5f12afdd22058b8fd0286d5db", "fields": {"nom_de_la_commune": "ROMAGNY SOUS ROUGEMONT", "libell_d_acheminement": "ROMAGNY SOUS ROUGEMONT", "code_postal": "90110", "coordonnees_gps": [47.7312446096, 6.96557108211], "code_commune_insee": "90086"}, "geometry": {"type": "Point", "coordinates": [6.96557108211, 47.7312446096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec5db504e1af7de0259f7b9f7438447b6eb78e83", "fields": {"nom_de_la_commune": "ROUGEGOUTTE", "libell_d_acheminement": "ROUGEGOUTTE", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90088"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce99326439c70ae443c72aa7a3b510e8546de86a", "fields": {"nom_de_la_commune": "VALDOIE", "libell_d_acheminement": "VALDOIE", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90099"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c902d5df3ce96f6208bb1b89c979e4d6856000f", "fields": {"nom_de_la_commune": "ARPAJON", "libell_d_acheminement": "ARPAJON", "code_postal": "91290", "coordonnees_gps": [48.5844568763, 2.25774325874], "code_commune_insee": "91021"}, "geometry": {"type": "Point", "coordinates": [2.25774325874, 48.5844568763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e948f94e49947f780be9003555bb00ee33d63f51", "fields": {"nom_de_la_commune": "BOIS HERPIN", "libell_d_acheminement": "BOIS HERPIN", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91075"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36b99e6205b02790d79cfe4b1d70416a0d61fbb4", "fields": {"nom_de_la_commune": "BOISSY LE CUTTE", "libell_d_acheminement": "BOISSY LE CUTTE", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91080"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e04b350f2f6fa16a53ef8d807b4c9a3c487d39", "fields": {"nom_de_la_commune": "BONDOUFLE", "libell_d_acheminement": "BONDOUFLE", "code_postal": "91070", "coordonnees_gps": [48.6140963234, 2.38013275618], "code_commune_insee": "91086"}, "geometry": {"type": "Point", "coordinates": [2.38013275618, 48.6140963234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87da1e84f858008de161ae743128ede1fc71700e", "fields": {"nom_de_la_commune": "BOUSSY ST ANTOINE", "libell_d_acheminement": "BOUSSY ST ANTOINE", "code_postal": "91800", "coordonnees_gps": [48.6944519423, 2.51253975836], "code_commune_insee": "91097"}, "geometry": {"type": "Point", "coordinates": [2.51253975836, 48.6944519423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc5a8404c954437713fbcf0fe86fac28bad3742", "fields": {"nom_de_la_commune": "BRIERES LES SCELLES", "libell_d_acheminement": "BRIERES LES SCELLES", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91109"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15ae350fd2c2157c7c862ee84dc31e36b8fce637", "fields": {"nom_de_la_commune": "BURES SUR YVETTE", "libell_d_acheminement": "BURES SUR YVETTE", "code_postal": "91440", "coordonnees_gps": [48.6930082592, 2.15803236368], "code_commune_insee": "91122"}, "geometry": {"type": "Point", "coordinates": [2.15803236368, 48.6930082592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f76b573c518274dede05f652590e9da301f50a2", "fields": {"code_postal": "91440", "code_commune_insee": "91122", "libell_d_acheminement": "BURES SUR YVETTE", "ligne_5": "MONTJAY", "nom_de_la_commune": "BURES SUR YVETTE", "coordonnees_gps": [48.6930082592, 2.15803236368]}, "geometry": {"type": "Point", "coordinates": [2.15803236368, 48.6930082592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39eeaa0b1f0bb5ff262bf47cf17df57520eddf0", "fields": {"nom_de_la_commune": "CHILLY MAZARIN", "libell_d_acheminement": "CHILLY MAZARIN", "code_postal": "91380", "coordonnees_gps": [48.7073972153, 2.311761729], "code_commune_insee": "91161"}, "geometry": {"type": "Point", "coordinates": [2.311761729, 48.7073972153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "982ab5abf6a08fc9d996c9e60ff512ebf5c76424", "fields": {"nom_de_la_commune": "CORBEIL ESSONNES", "libell_d_acheminement": "CORBEIL ESSONNES", "code_postal": "91100", "coordonnees_gps": [48.598553411, 2.4642298382], "code_commune_insee": "91174"}, "geometry": {"type": "Point", "coordinates": [2.4642298382, 48.598553411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20b6f8fd8bc5d44fd7fc1937ce2f045189e32878", "fields": {"code_postal": "91830", "code_commune_insee": "91179", "libell_d_acheminement": "LE COUDRAY MONTCEAUX", "ligne_5": "LE PLESSIS CHENET", "nom_de_la_commune": "LE COUDRAY MONTCEAUX", "coordonnees_gps": [48.5482208788, 2.48758633681]}, "geometry": {"type": "Point", "coordinates": [2.48758633681, 48.5482208788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12414cf987c79047822e31a8a33c0cf8968a685c", "fields": {"nom_de_la_commune": "COURDIMANCHE SUR ESSONNE", "libell_d_acheminement": "COURDIMANCHE SUR ESSONNE", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91184"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4dc5de8f1ac2ab66c3effca51a5e82e233bd37c", "fields": {"nom_de_la_commune": "DANNEMOIS", "libell_d_acheminement": "DANNEMOIS", "code_postal": "91490", "coordonnees_gps": [48.4186455247, 2.46228788074], "code_commune_insee": "91195"}, "geometry": {"type": "Point", "coordinates": [2.46228788074, 48.4186455247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf53911322f79203514b8d775f2e807c815fe97", "fields": {"nom_de_la_commune": "DRAVEIL", "libell_d_acheminement": "DRAVEIL", "code_postal": "91210", "coordonnees_gps": [48.677993062, 2.42118499004], "code_commune_insee": "91201"}, "geometry": {"type": "Point", "coordinates": [2.42118499004, 48.677993062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d2de554a95405bde81db6ffecdc9237eba66da1", "fields": {"code_postal": "91210", "code_commune_insee": "91201", "libell_d_acheminement": "DRAVEIL", "ligne_5": "MAINVILLE", "nom_de_la_commune": "DRAVEIL", "coordonnees_gps": [48.677993062, 2.42118499004]}, "geometry": {"type": "Point", "coordinates": [2.42118499004, 48.677993062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b535e25f8c339f44435ec801d89c82f9211c0cb", "fields": {"nom_de_la_commune": "ECHARCON", "libell_d_acheminement": "ECHARCON", "code_postal": "91540", "coordonnees_gps": [48.5608303581, 2.41959099954], "code_commune_insee": "91204"}, "geometry": {"type": "Point", "coordinates": [2.41959099954, 48.5608303581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe33067d1e7ae87f98eec1d471f4d716dae4b96a", "fields": {"nom_de_la_commune": "FONTENAY LE VICOMTE", "libell_d_acheminement": "FONTENAY LE VICOMTE", "code_postal": "91540", "coordonnees_gps": [48.5608303581, 2.41959099954], "code_commune_insee": "91244"}, "geometry": {"type": "Point", "coordinates": [2.41959099954, 48.5608303581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08c8a84c6030ec43757014ec4eee1db20844b57f", "fields": {"nom_de_la_commune": "ITTEVILLE", "libell_d_acheminement": "ITTEVILLE", "code_postal": "91760", "coordonnees_gps": [48.5146150874, 2.34402793795], "code_commune_insee": "91315"}, "geometry": {"type": "Point", "coordinates": [2.34402793795, 48.5146150874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf02b22fc880beeae2057286972d06305fb7f2a1", "fields": {"nom_de_la_commune": "JANVRY", "libell_d_acheminement": "JANVRY", "code_postal": "91640", "coordonnees_gps": [48.6224133727, 2.14125590005], "code_commune_insee": "91319"}, "geometry": {"type": "Point", "coordinates": [2.14125590005, 48.6224133727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd55d617ee26e7bdd54b1cab3f84092262c5013", "fields": {"nom_de_la_commune": "LIMOURS", "libell_d_acheminement": "LIMOURS", "code_postal": "91470", "coordonnees_gps": [48.6369515369, 2.06831882052], "code_commune_insee": "91338"}, "geometry": {"type": "Point", "coordinates": [2.06831882052, 48.6369515369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541d4d696e258a1cee66e2532a6bd8b8ec6f37b4", "fields": {"code_postal": "91160", "code_commune_insee": "91345", "libell_d_acheminement": "LONGJUMEAU", "ligne_5": "BALIZY", "nom_de_la_commune": "LONGJUMEAU", "coordonnees_gps": [48.6879154099, 2.28155441875]}, "geometry": {"type": "Point", "coordinates": [2.28155441875, 48.6879154099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2e3ecb00c7f3971ba312d401429b5fe634e6e6", "fields": {"nom_de_la_commune": "MEREVILLE", "libell_d_acheminement": "MEREVILLE", "code_postal": "91660", "coordonnees_gps": [48.3164697421, 2.08354530112], "code_commune_insee": "91390"}, "geometry": {"type": "Point", "coordinates": [2.08354530112, 48.3164697421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f910a8d0954fbe3f546cfd00bafb70e98f99ff2", "fields": {"nom_de_la_commune": "MORIGNY CHAMPIGNY", "libell_d_acheminement": "MORIGNY CHAMPIGNY", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91433"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c198405a17fdc152a305b4a5f63147f1ee35c19", "fields": {"nom_de_la_commune": "OLLAINVILLE", "libell_d_acheminement": "OLLAINVILLE", "code_postal": "91340", "coordonnees_gps": [48.6059418434, 2.21857687683], "code_commune_insee": "91461"}, "geometry": {"type": "Point", "coordinates": [2.21857687683, 48.6059418434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a51e7282a4966c1831eacae50b9898b7e519025d", "fields": {"nom_de_la_commune": "ORVEAU", "libell_d_acheminement": "ORVEAU", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91473"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2587ef5c8fbde8862ab833d0b8b847f6c43a12b", "fields": {"code_postal": "94390", "code_commune_insee": "91479", "libell_d_acheminement": "PARAY VIEILLE POSTE", "ligne_5": "ORLY AEROGARE", "nom_de_la_commune": "PARAY VIEILLE POSTE", "coordonnees_gps": [48.7243019764, 2.36018622898]}, "geometry": {"type": "Point", "coordinates": [2.36018622898, 48.7243019764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2e0583ce39fcfe6bc0cc44d03dfc9551fe39f11", "fields": {"nom_de_la_commune": "PRUNAY SUR ESSONNE", "libell_d_acheminement": "PRUNAY SUR ESSONNE", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91507"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da542b07c7611f5c77479862cd553d06d6a0eb4", "fields": {"nom_de_la_commune": "PUISELET LE MARAIS", "libell_d_acheminement": "PUISELET LE MARAIS", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91508"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9bc37ca7b75bfa3dfa53d54176411f999389a54", "fields": {"nom_de_la_commune": "RIS ORANGIS", "libell_d_acheminement": "RIS ORANGIS", "code_postal": "91130", "coordonnees_gps": [48.645695033, 2.40878195835], "code_commune_insee": "91521"}, "geometry": {"type": "Point", "coordinates": [2.40878195835, 48.645695033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ab753fb268dccaec352937a2958f856d701982", "fields": {"nom_de_la_commune": "ROINVILLE", "libell_d_acheminement": "ROINVILLE", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91525"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23fbb61e25daeb86fe43ff2eccd16df458195fca", "fields": {"code_postal": "91190", "code_commune_insee": "91538", "libell_d_acheminement": "ST AUBIN", "ligne_5": "VILLERAS", "nom_de_la_commune": "ST AUBIN", "coordonnees_gps": [48.709665031, 2.12766544978]}, "geometry": {"type": "Point", "coordinates": [2.12766544978, 48.709665031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc4360944b9974f031d19431204c4f3893ea8488", "fields": {"nom_de_la_commune": "ST HILAIRE", "libell_d_acheminement": "ST HILAIRE", "code_postal": "91780", "coordonnees_gps": [48.4201119171, 2.04444826512], "code_commune_insee": "91556"}, "geometry": {"type": "Point", "coordinates": [2.04444826512, 48.4201119171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "630821d2690a601b0407ae48a0d370a98a257dce", "fields": {"nom_de_la_commune": "ST JEAN DE BEAUREGARD", "libell_d_acheminement": "ST JEAN DE BEAUREGARD", "code_postal": "91940", "coordonnees_gps": [48.6746009432, 2.16779886217], "code_commune_insee": "91560"}, "geometry": {"type": "Point", "coordinates": [2.16779886217, 48.6746009432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f5dbe57ae1049f6a43e50ae0b42958e7ea5cd4", "fields": {"nom_de_la_commune": "ST PIERRE DU PERRAY", "libell_d_acheminement": "ST PIERRE DU PERRAY", "code_postal": "91280", "coordonnees_gps": [48.6057166854, 2.51721713178], "code_commune_insee": "91573"}, "geometry": {"type": "Point", "coordinates": [2.51721713178, 48.6057166854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "662a02b32e7977e3a8534bcb70f6db65b0678cec", "fields": {"nom_de_la_commune": "CONGERVILLE THIONVILLE", "libell_d_acheminement": "CONGERVILLE THIONVILLE", "code_postal": "91740", "coordonnees_gps": [48.3700823354, 2.00542911555], "code_commune_insee": "91613"}, "geometry": {"type": "Point", "coordinates": [2.00542911555, 48.3700823354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a947a0ffd3cd8d1c09ece8198be37d0108c64d", "fields": {"nom_de_la_commune": "LE VAL ST GERMAIN", "libell_d_acheminement": "LE VAL ST GERMAIN", "code_postal": "91530", "coordonnees_gps": [48.5543371976, 2.10205368335], "code_commune_insee": "91630"}, "geometry": {"type": "Point", "coordinates": [2.10205368335, 48.5543371976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f233448e01f4bd1b439925a0737de8a8c7902af", "fields": {"nom_de_la_commune": "VAYRES SUR ESSONNE", "libell_d_acheminement": "VAYRES SUR ESSONNE", "code_postal": "91820", "coordonnees_gps": [48.4347578682, 2.37891668976], "code_commune_insee": "91639"}, "geometry": {"type": "Point", "coordinates": [2.37891668976, 48.4347578682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30902d3e6a610051bcbf4ecfb4155280df778916", "fields": {"nom_de_la_commune": "VILLABE", "libell_d_acheminement": "VILLABE", "code_postal": "91100", "coordonnees_gps": [48.598553411, 2.4642298382], "code_commune_insee": "91659"}, "geometry": {"type": "Point", "coordinates": [2.4642298382, 48.598553411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa1054642a48885da72d88249571f3080e1912d5", "fields": {"nom_de_la_commune": "YERRES", "libell_d_acheminement": "YERRES", "code_postal": "91330", "coordonnees_gps": [48.7164530971, 2.4933117108], "code_commune_insee": "91691"}, "geometry": {"type": "Point", "coordinates": [2.4933117108, 48.7164530971]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b8a598f3187ce2160e8f4af118df021c046b02", "fields": {"nom_de_la_commune": "CLAMART", "libell_d_acheminement": "CLAMART", "code_postal": "92140", "coordonnees_gps": [48.7967176819, 2.25385173895], "code_commune_insee": "92023"}, "geometry": {"type": "Point", "coordinates": [2.25385173895, 48.7967176819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d09b3f5c221dc74b31f13f12790d485d73055ff9", "fields": {"nom_de_la_commune": "SERMAGES", "libell_d_acheminement": "SERMAGES", "code_postal": "58290", "coordonnees_gps": [46.9712229118, 3.77516056611], "code_commune_insee": "58277"}, "geometry": {"type": "Point", "coordinates": [3.77516056611, 46.9712229118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9536ee073a3255c64938fa1f85bc229917f552b1", "fields": {"nom_de_la_commune": "SUILLY LA TOUR", "libell_d_acheminement": "SUILLY LA TOUR", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58281"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d2527bbd6fee981ba2368f1fb73147df18b31d2", "fields": {"nom_de_la_commune": "TAZILLY", "libell_d_acheminement": "TAZILLY", "code_postal": "58170", "coordonnees_gps": [46.817642004, 3.95555292729], "code_commune_insee": "58287"}, "geometry": {"type": "Point", "coordinates": [3.95555292729, 46.817642004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a34760bd43ac22bf204d6c2f9d48330e4d2e4f", "fields": {"nom_de_la_commune": "TROIS VEVRES", "libell_d_acheminement": "TROIS VEVRES", "code_postal": "58260", "coordonnees_gps": [46.9023530657, 3.46382245029], "code_commune_insee": "58297"}, "geometry": {"type": "Point", "coordinates": [3.46382245029, 46.9023530657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65acf11b421d04719f698e1676eda487df20df12", "fields": {"nom_de_la_commune": "TRUCY L ORGUEILLEUX", "libell_d_acheminement": "TRUCY L ORGUEILLEUX", "code_postal": "58460", "coordonnees_gps": [47.436143333, 3.39666081915], "code_commune_insee": "58299"}, "geometry": {"type": "Point", "coordinates": [3.39666081915, 47.436143333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59ba152ab177df29eace1ca01f3616a891013eda", "fields": {"nom_de_la_commune": "VANDENESSE", "libell_d_acheminement": "VANDENESSE", "code_postal": "58290", "coordonnees_gps": [46.9712229118, 3.77516056611], "code_commune_insee": "58301"}, "geometry": {"type": "Point", "coordinates": [3.77516056611, 46.9712229118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7506ff4f748a2058bb876300425f49ea1f623c7b", "fields": {"nom_de_la_commune": "VAUCLAIX", "libell_d_acheminement": "VAUCLAIX", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58305"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c133158395f4e7ec176b88cfc4d8f8a2dc17c97", "fields": {"nom_de_la_commune": "VILLIERS LE SEC", "libell_d_acheminement": "VILLIERS LE SEC", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58310"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402b6d4e9a332855a7820f64162c781c73b36026", "fields": {"nom_de_la_commune": "VILLIERS SUR YONNE", "libell_d_acheminement": "VILLIERS SUR YONNE", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58312"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "722eddfb3ca32cb022c594dcbdc2d4ff0157f41b", "fields": {"nom_de_la_commune": "VITRY LACHE", "libell_d_acheminement": "VITRY LACHE", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58313"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a855a4f0fb9a0f4f5b48ebccbe2737abb38ae51", "fields": {"nom_de_la_commune": "ANICHE", "libell_d_acheminement": "ANICHE", "code_postal": "59580", "coordonnees_gps": [50.322452087, 3.25533634496], "code_commune_insee": "59008"}, "geometry": {"type": "Point", "coordinates": [3.25533634496, 50.322452087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f1f9c9443b6055d73d844d81121df71cf68b05e", "fields": {"nom_de_la_commune": "VILLENEUVE D ASCQ", "libell_d_acheminement": "VILLENEUVE D ASCQ", "code_postal": "59650", "coordonnees_gps": [50.6323253006, 3.15291340611], "code_commune_insee": "59009"}, "geometry": {"type": "Point", "coordinates": [3.15291340611, 50.6323253006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c09cea3760fd9bc03af1229d92b8c04a4e90ff65", "fields": {"nom_de_la_commune": "ANZIN", "libell_d_acheminement": "ANZIN", "code_postal": "59410", "coordonnees_gps": [50.3751838237, 3.51087057943], "code_commune_insee": "59014"}, "geometry": {"type": "Point", "coordinates": [3.51087057943, 50.3751838237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "966745c54e036b16ae5e72bed00525bc1064931f", "fields": {"nom_de_la_commune": "ARMBOUTS CAPPEL", "libell_d_acheminement": "ARMBOUTS CAPPEL", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59016"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8733aed880b0e3194aef473b1aa7e2ab6af0066a", "fields": {"nom_de_la_commune": "AUBENCHEUL AU BAC", "libell_d_acheminement": "AUBENCHEUL AU BAC", "code_postal": "59265", "coordonnees_gps": [50.2606708685, 3.16534687395], "code_commune_insee": "59023"}, "geometry": {"type": "Point", "coordinates": [3.16534687395, 50.2606708685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c63bde570cb02e86b51817ea1edf5c105abfb23", "fields": {"nom_de_la_commune": "AUBERCHICOURT", "libell_d_acheminement": "AUBERCHICOURT", "code_postal": "59165", "coordonnees_gps": [50.330006531, 3.22790879686], "code_commune_insee": "59024"}, "geometry": {"type": "Point", "coordinates": [3.22790879686, 50.330006531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b3b542d9184fc87e804e59eae41aefb6dc6b6f6", "fields": {"nom_de_la_commune": "AULNOYE AYMERIES", "libell_d_acheminement": "AULNOYE AYMERIES", "code_postal": "59620", "coordonnees_gps": [50.1872040884, 3.853225186], "code_commune_insee": "59033"}, "geometry": {"type": "Point", "coordinates": [3.853225186, 50.1872040884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a4cd97db62c8b8bc78f9922a1deb5267772ad97", "fields": {"nom_de_la_commune": "AWOINGT", "libell_d_acheminement": "AWOINGT", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59039"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a6e7389b367f0dfb9c3cdcb23ff9721126c7024", "fields": {"nom_de_la_commune": "BANTEUX", "libell_d_acheminement": "BANTEUX", "code_postal": "59266", "coordonnees_gps": [50.0472384043, 3.20499874057], "code_commune_insee": "59047"}, "geometry": {"type": "Point", "coordinates": [3.20499874057, 50.0472384043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70a5d91757ad23a4843c5cd31402e7b747e1e13", "fields": {"nom_de_la_commune": "BEAUCAMPS LIGNY", "libell_d_acheminement": "BEAUCAMPS LIGNY", "code_postal": "59134", "coordonnees_gps": [50.592822459, 2.88189663466], "code_commune_insee": "59056"}, "geometry": {"type": "Point", "coordinates": [2.88189663466, 50.592822459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d53d9b0a1c034c2e3a5bffae9b634d5d079c48e3", "fields": {"nom_de_la_commune": "BEAUMONT EN CAMBRESIS", "libell_d_acheminement": "BEAUMONT EN CAMBRESIS", "code_postal": "59540", "coordonnees_gps": [50.1250979725, 3.43223199835], "code_commune_insee": "59059"}, "geometry": {"type": "Point", "coordinates": [3.43223199835, 50.1250979725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ece71cf04caa686902d1a543b2c5643f8adac89", "fields": {"nom_de_la_commune": "BEAURAIN", "libell_d_acheminement": "BEAURAIN", "code_postal": "59730", "coordonnees_gps": [50.1806606643, 3.51245734771], "code_commune_insee": "59060"}, "geometry": {"type": "Point", "coordinates": [3.51245734771, 50.1806606643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b358336526ae2bcec29bc19b53f424aaa224db", "fields": {"nom_de_la_commune": "BEAUREPAIRE SUR SAMBRE", "libell_d_acheminement": "BEAUREPAIRE SUR SAMBRE", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59061"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867bb20668b4eaddb9d335935750b4b265401f13", "fields": {"nom_de_la_commune": "BERELLES", "libell_d_acheminement": "BERELLES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59066"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c47ae09de20386a74c5873ed84e8ef791d57578", "fields": {"nom_de_la_commune": "BERMERAIN", "libell_d_acheminement": "BERMERAIN", "code_postal": "59213", "coordonnees_gps": [50.2475337981, 3.52978047064], "code_commune_insee": "59069"}, "geometry": {"type": "Point", "coordinates": [3.52978047064, 50.2475337981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16344a14a37388dd0ee75129ebd9eaa873de20f7", "fields": {"nom_de_la_commune": "BERMERIES", "libell_d_acheminement": "BERMERIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59070"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6709d88d3d1292f47018d47e7afb5791c0c45cb4", "fields": {"nom_de_la_commune": "BEUVRY LA FORET", "libell_d_acheminement": "BEUVRY LA FORET", "code_postal": "59310", "coordonnees_gps": [50.4756550668, 3.24690119502], "code_commune_insee": "59080"}, "geometry": {"type": "Point", "coordinates": [3.24690119502, 50.4756550668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b4698eadddc481862fb56f76d9c54d11c84a115", "fields": {"nom_de_la_commune": "BRUILLE LEZ MARCHIENNES", "libell_d_acheminement": "BRUILLE LEZ MARCHIENNES", "code_postal": "59490", "coordonnees_gps": [50.3590143857, 3.26743195481], "code_commune_insee": "59113"}, "geometry": {"type": "Point", "coordinates": [3.26743195481, 50.3590143857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b12556f0965a25e1f23e618e5e71a42a4130990", "fields": {"nom_de_la_commune": "BRUILLE ST AMAND", "libell_d_acheminement": "BRUILLE ST AMAND", "code_postal": "59199", "coordonnees_gps": [50.4740272864, 3.52059057701], "code_commune_insee": "59114"}, "geometry": {"type": "Point", "coordinates": [3.52059057701, 50.4740272864]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed554f95793475a279c2663529b367436983815d", "fields": {"nom_de_la_commune": "CAMPHIN EN CAREMBAULT", "libell_d_acheminement": "CAMPHIN EN CAREMBAULT", "code_postal": "59133", "coordonnees_gps": [50.5122341221, 3.00761898471], "code_commune_insee": "59123"}, "geometry": {"type": "Point", "coordinates": [3.00761898471, 50.5122341221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328b262ade2a6841d8118457f4256342cc3a6d05", "fields": {"nom_de_la_commune": "CANTAING SUR ESCAUT", "libell_d_acheminement": "CANTAING SUR ESCAUT", "code_postal": "59267", "coordonnees_gps": [50.14197399, 3.16014006865], "code_commune_insee": "59125"}, "geometry": {"type": "Point", "coordinates": [3.16014006865, 50.14197399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da3a5ff7344d0b8b852db513a9d0c3bd66f7b27", "fields": {"nom_de_la_commune": "CAPPELLE LA GRANDE", "libell_d_acheminement": "CAPPELLE LA GRANDE", "code_postal": "59180", "coordonnees_gps": [50.9961987515, 2.36937134629], "code_commune_insee": "59131"}, "geometry": {"type": "Point", "coordinates": [2.36937134629, 50.9961987515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2481975200b20e5fef9000a96a95f79ba55ffdfa", "fields": {"nom_de_la_commune": "CATILLON SUR SAMBRE", "libell_d_acheminement": "CATILLON SUR SAMBRE", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59137"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285dd68d366f645b7f226c68d2602c3fe2a716de", "fields": {"code_postal": "59540", "code_commune_insee": "59139", "libell_d_acheminement": "CAUDRY", "ligne_5": "AUDENCOURT", "nom_de_la_commune": "CAUDRY", "coordonnees_gps": [50.1250979725, 3.43223199835]}, "geometry": {"type": "Point", "coordinates": [3.43223199835, 50.1250979725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386430e66a553615b4d11419275eea73de076232", "fields": {"nom_de_la_commune": "COBRIEUX", "libell_d_acheminement": "COBRIEUX", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59150"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31346b1e6defa019ffebf1153cb289ff60aa44b3", "fields": {"nom_de_la_commune": "COUDEKERQUE BRANCHE", "libell_d_acheminement": "COUDEKERQUE BRANCHE", "code_postal": "59210", "coordonnees_gps": [51.0182528801, 2.39561804985], "code_commune_insee": "59155"}, "geometry": {"type": "Point", "coordinates": [2.39561804985, 51.0182528801]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5eaf3dc9e4bafcadfad0ad4a07cd4f30cdbdcc4", "fields": {"nom_de_la_commune": "CREVECOEUR SUR L ESCAUT", "libell_d_acheminement": "CREVECOEUR SUR L ESCAUT", "code_postal": "59258", "coordonnees_gps": [50.0777482818, 3.25663233924], "code_commune_insee": "59161"}, "geometry": {"type": "Point", "coordinates": [3.25663233924, 50.0777482818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af929bcf85307943b82d3012635106106bfedc60", "fields": {"nom_de_la_commune": "CROCHTE", "libell_d_acheminement": "CROCHTE", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59162"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ad5576f29e4f374ece6d7e030d3dca2529136bb", "fields": {"nom_de_la_commune": "CUINCY", "libell_d_acheminement": "CUINCY", "code_postal": "59553", "coordonnees_gps": [50.3821215945, 3.02404153046], "code_commune_insee": "59165"}, "geometry": {"type": "Point", "coordinates": [3.02404153046, 50.3821215945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "357b55beb1ccf816b551594bc085b5ffa54fbce0", "fields": {"nom_de_la_commune": "DEHERIES", "libell_d_acheminement": "DEHERIES", "code_postal": "59127", "coordonnees_gps": [50.0669008118, 3.33260202285], "code_commune_insee": "59171"}, "geometry": {"type": "Point", "coordinates": [3.33260202285, 50.0669008118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c16b18f6a6b78a5bfb91f6fce8ab58d0bc8335", "fields": {"code_postal": "59500", "code_commune_insee": "59178", "libell_d_acheminement": "DOUAI", "ligne_5": "FRAIS MARAIS", "nom_de_la_commune": "DOUAI", "coordonnees_gps": [50.382032933, 3.09129729986]}, "geometry": {"type": "Point", "coordinates": [3.09129729986, 50.382032933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29478816f01042ee60254bd6aa681b640398905c", "fields": {"nom_de_la_commune": "LE DOULIEU", "libell_d_acheminement": "LE DOULIEU", "code_postal": "59940", "coordonnees_gps": [50.6663981785, 2.70159427049], "code_commune_insee": "59180"}, "geometry": {"type": "Point", "coordinates": [2.70159427049, 50.6663981785]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a62bd41fd196123f93019dc84fde155807e4857b", "fields": {"nom_de_la_commune": "RANTZWILLER", "libell_d_acheminement": "RANTZWILLER", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68265"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15622baadc2fcc407c2edd6211ed33e48d14fc30", "fields": {"nom_de_la_commune": "REININGUE", "libell_d_acheminement": "REININGUE", "code_postal": "68950", "coordonnees_gps": [47.7551167473, 7.22009499349], "code_commune_insee": "68267"}, "geometry": {"type": "Point", "coordinates": [7.22009499349, 47.7551167473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4296b11df6c58911bc64d6320740ee5cda730c23", "fields": {"nom_de_la_commune": "RIMBACH PRES MASEVAUX", "libell_d_acheminement": "RIMBACH PRES MASEVAUX", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68275"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2df1cf0e9f41a2ffc3c1b9a01fd2766bb55cca1", "fields": {"nom_de_la_commune": "RIXHEIM", "libell_d_acheminement": "RIXHEIM", "code_postal": "68170", "coordonnees_gps": [47.7496210375, 7.40714177659], "code_commune_insee": "68278"}, "geometry": {"type": "Point", "coordinates": [7.40714177659, 47.7496210375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a580bdaf5cf0754a11cefdaafc5a000dbb83c20", "fields": {"nom_de_la_commune": "ROPPENTZWILLER", "libell_d_acheminement": "ROPPENTZWILLER", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68284"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e0abe8a8ceca98364974466084537168bb3f5c4", "fields": {"nom_de_la_commune": "STE MARIE AUX MINES", "libell_d_acheminement": "STE MARIE AUX MINES", "code_postal": "68160", "coordonnees_gps": [48.2436580194, 7.18389066901], "code_commune_insee": "68298"}, "geometry": {"type": "Point", "coordinates": [7.18389066901, 48.2436580194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2c31e28f30db1ed4d3300aa849c99fbc783b73e", "fields": {"nom_de_la_commune": "SEPPOIS LE BAS", "libell_d_acheminement": "SEPPOIS LE BAS", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68305"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84409de07ab2fd0e1519fe6490f01706a004263b", "fields": {"nom_de_la_commune": "SOULTZMATT", "libell_d_acheminement": "SOULTZMATT", "code_postal": "68570", "coordonnees_gps": [47.9749178852, 7.21383132729], "code_commune_insee": "68318"}, "geometry": {"type": "Point", "coordinates": [7.21383132729, 47.9749178852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ca96a0d3705deb7f9b3120a9f20735a187e561a", "fields": {"nom_de_la_commune": "STEINBRUNN LE BAS", "libell_d_acheminement": "STEINBRUNN LE BAS", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68323"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17c32fe4c4c1d6e2224c64eff127ade0b6af6cd0", "fields": {"nom_de_la_commune": "STEINSOULTZ", "libell_d_acheminement": "STEINSOULTZ", "code_postal": "68640", "coordonnees_gps": [47.5439826681, 7.33909806987], "code_commune_insee": "68325"}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a72c15a3e68d1f6e920abf4b5804da69069271", "fields": {"nom_de_la_commune": "STORCKENSOHN", "libell_d_acheminement": "STORCKENSOHN", "code_postal": "68470", "coordonnees_gps": [47.8911637424, 6.97731625336], "code_commune_insee": "68328"}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea314f202439c6963a1bb6cc39a8e650bb0cdfc", "fields": {"nom_de_la_commune": "STOSSWIHR", "libell_d_acheminement": "STOSSWIHR", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68329"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d625f5f88302387b2bbfa937d8041c742ea8fc75", "fields": {"nom_de_la_commune": "TURCKHEIM", "libell_d_acheminement": "TURCKHEIM", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68338"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be551aeb90288b589a94194f0efca11cc5bdd0e9", "fields": {"nom_de_la_commune": "UEBERSTRASS", "libell_d_acheminement": "UEBERSTRASS", "code_postal": "68580", "coordonnees_gps": [47.5481438325, 7.17349023322], "code_commune_insee": "68340"}, "geometry": {"type": "Point", "coordinates": [7.17349023322, 47.5481438325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3a487bb46c6d6a31edc9f2eebf2cc833bf9c10c", "fields": {"nom_de_la_commune": "WAHLBACH", "libell_d_acheminement": "WAHLBACH", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68353"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd89d12bd4f6ff24ac040e3c82c9decb7cc6d548", "fields": {"nom_de_la_commune": "WALDIGHOFEN", "libell_d_acheminement": "WALDIGHOFEN", "code_postal": "68640", "coordonnees_gps": [47.5439826681, 7.33909806987], "code_commune_insee": "68355"}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ab5df931587a4e11007564f367ef3db2e09f60d", "fields": {"nom_de_la_commune": "WALTENHEIM", "libell_d_acheminement": "WALTENHEIM", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68357"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b2f6fc40cdd9a00db6fc21a98d336b4dcc47fa0", "fields": {"nom_de_la_commune": "WEGSCHEID", "libell_d_acheminement": "WEGSCHEID", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68361"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbaa0e4c118527b3e7d89c7af6196e69f1743f31", "fields": {"nom_de_la_commune": "WESTHALTEN", "libell_d_acheminement": "WESTHALTEN", "code_postal": "68250", "coordonnees_gps": [47.9666931593, 7.27589610767], "code_commune_insee": "68364"}, "geometry": {"type": "Point", "coordinates": [7.27589610767, 47.9666931593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0df18a59d573791eb3e49302e540199eae8ec45", "fields": {"nom_de_la_commune": "WICKERSCHWIHR", "libell_d_acheminement": "WICKERSCHWIHR", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68366"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84da476674e0659105d562b78dc78ce5a307fa6a", "fields": {"nom_de_la_commune": "WIDENSOLEN", "libell_d_acheminement": "WIDENSOLEN", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68367"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61e1b9e525c10ab4fc959e795fa4205897ef9cb6", "fields": {"nom_de_la_commune": "WILDENSTEIN", "libell_d_acheminement": "WILDENSTEIN", "code_postal": "68820", "coordonnees_gps": [47.9620965361, 6.96343945607], "code_commune_insee": "68370"}, "geometry": {"type": "Point", "coordinates": [6.96343945607, 47.9620965361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7224e868a1941cfdb2f080d2cbbb5f115cde670", "fields": {"nom_de_la_commune": "WILLER", "libell_d_acheminement": "WILLER", "code_postal": "68960", "coordonnees_gps": [47.5717118449, 7.32148674865], "code_commune_insee": "68371"}, "geometry": {"type": "Point", "coordinates": [7.32148674865, 47.5717118449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b44f8214ee7c3debe504b3f055ebe473df84ab", "fields": {"nom_de_la_commune": "AFFOUX", "libell_d_acheminement": "AFFOUX", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69001"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8dbfd18a9022c8c76c8400c2535e48fbac59546", "fields": {"nom_de_la_commune": "LES ARDILLATS", "libell_d_acheminement": "LES ARDILLATS", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69012"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0527af255581178101c40c4f0030a4e27fd9dd9f", "fields": {"nom_de_la_commune": "BAGNOLS", "libell_d_acheminement": "BAGNOLS", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69017"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f2e183a7733d6700b9f4b8216154523e86f325", "fields": {"code_postal": "69430", "code_commune_insee": "69018", "libell_d_acheminement": "BEAUJEU", "ligne_5": "LE MOLARD", "nom_de_la_commune": "BEAUJEU", "coordonnees_gps": [46.1511962743, 4.57003815415]}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ff81bc735084e3521d685dd7f4c30849487d549", "fields": {"nom_de_la_commune": "LE BREUIL", "libell_d_acheminement": "LE BREUIL", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69026"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb1339c8588b5adcf47d063b8378d1e0d8604bf", "fields": {"nom_de_la_commune": "BRINDAS", "libell_d_acheminement": "BRINDAS", "code_postal": "69126", "coordonnees_gps": [45.7205048437, 4.70327696534], "code_commune_insee": "69028"}, "geometry": {"type": "Point", "coordinates": [4.70327696534, 45.7205048437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aa6dab29f6896f2f69f3b3fb62162168b91e3b7", "fields": {"nom_de_la_commune": "BRON", "libell_d_acheminement": "BRON", "code_postal": "69500", "coordonnees_gps": [45.7346457421, 4.91141333381], "code_commune_insee": "69029"}, "geometry": {"type": "Point", "coordinates": [4.91141333381, 45.7346457421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e684f50d69f98e7686a995cb918ceef04012f195", "fields": {"nom_de_la_commune": "BRUSSIEU", "libell_d_acheminement": "BRUSSIEU", "code_postal": "69690", "coordonnees_gps": [45.7650952227, 4.53742435922], "code_commune_insee": "69031"}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34bdce0046bfd04d11b58789eb76975582c440f7", "fields": {"nom_de_la_commune": "BULLY", "libell_d_acheminement": "BULLY", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69032"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4010066a8688f7c1d0afced28ca5f43f57dd464b", "fields": {"nom_de_la_commune": "CAILLOUX SUR FONTAINES", "libell_d_acheminement": "CAILLOUX SUR FONTAINES", "code_postal": "69270", "coordonnees_gps": [45.8483845362, 4.85660481546], "code_commune_insee": "69033"}, "geometry": {"type": "Point", "coordinates": [4.85660481546, 45.8483845362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3394e012278a9bfc16f72a41f31c3ed58607c9d1", "fields": {"nom_de_la_commune": "CENVES", "libell_d_acheminement": "CENVES", "code_postal": "69840", "coordonnees_gps": [46.255819041, 4.67514291192], "code_commune_insee": "69035"}, "geometry": {"type": "Point", "coordinates": [4.67514291192, 46.255819041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9feb33d8909c4acf462e60d41adec8706dd97bc", "fields": {"nom_de_la_commune": "CHAMBOST ALLIERES", "libell_d_acheminement": "CHAMBOST ALLIERES", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69037"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca46582a46baa3f58a255454d6b95b4270ff5e7", "fields": {"nom_de_la_commune": "CHAMPAGNE AU MONT D OR", "libell_d_acheminement": "CHAMPAGNE AU MONT D OR", "code_postal": "69410", "coordonnees_gps": [45.7982711813, 4.7865623795], "code_commune_insee": "69040"}, "geometry": {"type": "Point", "coordinates": [4.7865623795, 45.7982711813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1114adbc8c43ca3406b7c32a71753e679b1477c2", "fields": {"nom_de_la_commune": "CHASSAGNY", "libell_d_acheminement": "CHASSAGNY", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69048"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8983fd0fdbd0f2a797484004e4cbae548069a61a", "fields": {"nom_de_la_commune": "CHAZAY D AZERGUES", "libell_d_acheminement": "CHAZAY D AZERGUES", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69052"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d6a8a05d700f135c724086c98e7f490066b3c13", "fields": {"nom_de_la_commune": "CHENAS", "libell_d_acheminement": "CHENAS", "code_postal": "69840", "coordonnees_gps": [46.255819041, 4.67514291192], "code_commune_insee": "69053"}, "geometry": {"type": "Point", "coordinates": [4.67514291192, 46.255819041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f69ef8282855648a75c407196747fe01ca75d01", "fields": {"nom_de_la_commune": "CHENELETTE", "libell_d_acheminement": "CHENELETTE", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69054"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674fb1efa676d0a37fa02324a5edd3db1cdb8cbc", "fields": {"nom_de_la_commune": "CLAVEISOLLES", "libell_d_acheminement": "CLAVEISOLLES", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69060"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0145bc2b7abbb520a8b0bd0233e9c2c19c9fe9c7", "fields": {"nom_de_la_commune": "COURZIEU", "libell_d_acheminement": "COURZIEU", "code_postal": "69690", "coordonnees_gps": [45.7650952227, 4.53742435922], "code_commune_insee": "69067"}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ead175151d4c9313d69ac9b8df6525d0748617f", "fields": {"nom_de_la_commune": "COUZON AU MONT D OR", "libell_d_acheminement": "COUZON AU MONT D OR", "code_postal": "69270", "coordonnees_gps": [45.8483845362, 4.85660481546], "code_commune_insee": "69068"}, "geometry": {"type": "Point", "coordinates": [4.85660481546, 45.8483845362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef484e2f4698bd5a4a7717e074b823feda5701bc", "fields": {"nom_de_la_commune": "CURIS AU MONT D OR", "libell_d_acheminement": "CURIS AU MONT D OR", "code_postal": "69250", "coordonnees_gps": [45.8691904995, 4.83538598434], "code_commune_insee": "69071"}, "geometry": {"type": "Point", "coordinates": [4.83538598434, 45.8691904995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1673f1a38a6d85f99a990f7feafd501e4e167e6", "fields": {"nom_de_la_commune": "DOMMARTIN", "libell_d_acheminement": "DOMMARTIN", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69076"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbe00eadeca1beeed7a51143f4bbc005c6c58130", "fields": {"nom_de_la_commune": "DRACE", "libell_d_acheminement": "DRACE", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69077"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81666d743dd14c4ee49c1367bc7abc47b25e49c", "fields": {"nom_de_la_commune": "ECHALAS", "libell_d_acheminement": "ECHALAS", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69080"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27f1edc0f9abb978c9b8c669dbc04ca17244e716", "fields": {"nom_de_la_commune": "FLEURIEUX SUR L ARBRESLE", "libell_d_acheminement": "FLEURIEUX SUR L ARBRESLE", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69086"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b414f882bb0b6637754d9fc7be855bd60144ff", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "69340", "coordonnees_gps": [45.7373345831, 4.75568378052], "code_commune_insee": "69089"}, "geometry": {"type": "Point", "coordinates": [4.75568378052, 45.7373345831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b31d43658358ca2e2a3f23a90c4ee2b06b29f3", "fields": {"nom_de_la_commune": "GRIGNY", "libell_d_acheminement": "GRIGNY", "code_postal": "69520", "coordonnees_gps": [45.6083167424, 4.78671247905], "code_commune_insee": "69096"}, "geometry": {"type": "Point", "coordinates": [4.78671247905, 45.6083167424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6f89bc34683e531300ded2fc1ecd9ee95a2c12", "fields": {"nom_de_la_commune": "IRIGNY", "libell_d_acheminement": "IRIGNY", "code_postal": "69540", "coordonnees_gps": [45.6747732887, 4.81732510509], "code_commune_insee": "69100"}, "geometry": {"type": "Point", "coordinates": [4.81732510509, 45.6747732887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a33ea454a8c17c6a93e357be2ae717f256a5d744", "fields": {"nom_de_la_commune": "LANCIE", "libell_d_acheminement": "LANCIE", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69108"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f52b267e7bca6eccf91449c49b7640bb121e4924", "fields": {"nom_de_la_commune": "LARAJASSE", "libell_d_acheminement": "LARAJASSE", "code_postal": "69590", "coordonnees_gps": [45.6217485802, 4.48906764505], "code_commune_insee": "69110"}, "geometry": {"type": "Point", "coordinates": [4.48906764505, 45.6217485802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a0874ad8907e5c128d804c9dc31661a917979a", "fields": {"code_postal": "69400", "code_commune_insee": "69114", "libell_d_acheminement": "LIERGUES", "ligne_5": "LA COMBE", "nom_de_la_commune": "LIERGUES", "coordonnees_gps": [45.9927200348, 4.70137722216]}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cc58ba40314cb764a0192856ba045e27ef15deb", "fields": {"nom_de_la_commune": "LIMAS", "libell_d_acheminement": "LIMAS", "code_postal": "69400", "coordonnees_gps": [45.9927200348, 4.70137722216], "code_commune_insee": "69115"}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1af124ead811a3f12ffa4fd392ffd400b2485fad", "fields": {"nom_de_la_commune": "LONGESSAIGNE", "libell_d_acheminement": "LONGESSAIGNE", "code_postal": "69770", "coordonnees_gps": [45.7948653503, 4.42430458336], "code_commune_insee": "69120"}, "geometry": {"type": "Point", "coordinates": [4.42430458336, 45.7948653503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b685cd4aea2e3b3a5e885664d2dedf7066d21b33", "fields": {"nom_de_la_commune": "MONTROTTIER", "libell_d_acheminement": "MONTROTTIER", "code_postal": "69770", "coordonnees_gps": [45.7948653503, 4.42430458336], "code_commune_insee": "69139"}, "geometry": {"type": "Point", "coordinates": [4.42430458336, 45.7948653503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df2cdb77f5e8e00c196f3365aaae645c57386e4", "fields": {"nom_de_la_commune": "ODENAS", "libell_d_acheminement": "ODENAS", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69145"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb6bb8828b9d8520a12dc654fc395c36440c1bcb", "fields": {"nom_de_la_commune": "LES OLMES", "libell_d_acheminement": "LES OLMES", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69147"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9e2318c5c3772638474eecb7ef432021c66bf3", "fields": {"code_postal": "69530", "code_commune_insee": "69148", "libell_d_acheminement": "ORLIENAS", "ligne_5": "LE BOULARD", "nom_de_la_commune": "ORLIENAS", "coordonnees_gps": [45.6692860968, 4.73618397789]}, "geometry": {"type": "Point", "coordinates": [4.73618397789, 45.6692860968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e26b8d3e17b0d4bdcb32e4e153ec0bcb6b3f150", "fields": {"nom_de_la_commune": "OUROUX", "libell_d_acheminement": "OUROUX", "code_postal": "69860", "coordonnees_gps": [46.2400571713, 4.55489493193], "code_commune_insee": "69150"}, "geometry": {"type": "Point", "coordinates": [4.55489493193, 46.2400571713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7599c17d8c07e4c5e5bd119e82420bf7215c8343", "fields": {"nom_de_la_commune": "LE PERREON", "libell_d_acheminement": "LE PERREON", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69151"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bdb28807509b751dd369898033a94c78d4b2bfc", "fields": {"code_postal": "69650", "code_commune_insee": "69163", "libell_d_acheminement": "QUINCIEUX", "ligne_5": "VEISSIEUX", "nom_de_la_commune": "QUINCIEUX", "coordonnees_gps": [45.9066632168, 4.77988649685]}, "geometry": {"type": "Point", "coordinates": [4.77988649685, 45.9066632168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57c5b807bb7a967a88dc69db23d50e5b7b903d7b", "fields": {"nom_de_la_commune": "ROCHETAILLEE SUR SAONE", "libell_d_acheminement": "ROCHETAILLEE SUR SAONE", "code_postal": "69270", "coordonnees_gps": [45.8483845362, 4.85660481546], "code_commune_insee": "69168"}, "geometry": {"type": "Point", "coordinates": [4.85660481546, 45.8483845362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79113a0f2f4b13bfe226639f856edb21d9e754e5", "fields": {"nom_de_la_commune": "RONNO", "libell_d_acheminement": "RONNO", "code_postal": "69550", "coordonnees_gps": [45.9921852831, 4.36092903246], "code_commune_insee": "69169"}, "geometry": {"type": "Point", "coordinates": [4.36092903246, 45.9921852831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854e620ef2df74c54895e81e9fcf7d9cf6948384", "fields": {"nom_de_la_commune": "SAIN BEL", "libell_d_acheminement": "SAIN BEL", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69171"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac0bbbf05c150bad624bf962ca89a97177b89c78", "fields": {"nom_de_la_commune": "SOURCIEUX LES MINES", "libell_d_acheminement": "SOURCIEUX LES MINES", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69177"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bce84ab0f81196004c58b9ff64d31339eeaf946", "fields": {"nom_de_la_commune": "ST ANDEOL LE CHATEAU", "libell_d_acheminement": "ST ANDEOL LE CHATEAU", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69179"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7ea151f7a3286e432e4d8a01d999301e5828c79", "fields": {"nom_de_la_commune": "ST ANDRE LA COTE", "libell_d_acheminement": "ST ANDRE LA COTE", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69180"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a64cb04b77f89a4bdee3f476ad16e0dbfbb319f", "fields": {"nom_de_la_commune": "STE CATHERINE", "libell_d_acheminement": "STE CATHERINE", "code_postal": "69440", "coordonnees_gps": [45.6116921757, 4.63961242602], "code_commune_insee": "69184"}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c263a85384069b62daf221d83e9d339b9c8ffd0", "fields": {"code_postal": "69440", "code_commune_insee": "69184", "libell_d_acheminement": "STE CATHERINE", "ligne_5": "BARROT", "nom_de_la_commune": "STE CATHERINE", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319b95977841c359ff7cf1ec6d02ca42c3474d87", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "69860", "coordonnees_gps": [46.2400571713, 4.55489493193], "code_commune_insee": "69185"}, "geometry": {"type": "Point", "coordinates": [4.55489493193, 46.2400571713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "177e760e2f2daf7aea702b7ab4d0306ee027d70c", "fields": {"nom_de_la_commune": "ST CLEMENT DE VERS", "libell_d_acheminement": "ST CLEMENT DE VERS", "code_postal": "69790", "coordonnees_gps": [46.2387836899, 4.44287004502], "code_commune_insee": "69186"}, "geometry": {"type": "Point", "coordinates": [4.44287004502, 46.2387836899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61168d9c99a4e68f47e2a2839b7579d5ea82bdeb", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "69560", "coordonnees_gps": [45.5296436366, 4.83023010495], "code_commune_insee": "69189"}, "geometry": {"type": "Point", "coordinates": [4.83023010495, 45.5296436366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6314e4994967cd08792090c19446d7d5f74a21", "fields": {"nom_de_la_commune": "ST CYR SUR LE RHONE", "libell_d_acheminement": "ST CYR SUR LE RHONE", "code_postal": "69560", "coordonnees_gps": [45.5296436366, 4.83023010495], "code_commune_insee": "69193"}, "geometry": {"type": "Point", "coordinates": [4.83023010495, 45.5296436366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9ecaef777d5323cd43fd97ae59862ab8ed86e6", "fields": {"nom_de_la_commune": "ST GENIS LES OLLIERES", "libell_d_acheminement": "ST GENIS LES OLLIERES", "code_postal": "69290", "coordonnees_gps": [45.759176161, 4.68473995585], "code_commune_insee": "69205"}, "geometry": {"type": "Point", "coordinates": [4.68473995585, 45.759176161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad67f6e806334b1bf225ce43db6dfa7f77e1f962", "fields": {"nom_de_la_commune": "ST GERMAIN AU MONT D OR", "libell_d_acheminement": "ST GERMAIN AU MONT D OR", "code_postal": "69650", "coordonnees_gps": [45.9066632168, 4.77988649685], "code_commune_insee": "69207"}, "geometry": {"type": "Point", "coordinates": [4.77988649685, 45.9066632168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fdaccaa3c56ad7fd0153d09fff629d014253d4a", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69215"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb656f14e53407ccef9d1ffb78cef36d0f3eb24", "fields": {"nom_de_la_commune": "ST MARCEL L ECLAIRE", "libell_d_acheminement": "ST MARCEL L ECLAIRE", "code_postal": "69170", "coordonnees_gps": [45.9115117845, 4.41315955372], "code_commune_insee": "69225"}, "geometry": {"type": "Point", "coordinates": [4.41315955372, 45.9115117845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb5b8a339e9ab94bb380f7453ba73dd5cf64939c", "fields": {"code_postal": "69850", "code_commune_insee": "69227", "libell_d_acheminement": "ST MARTIN EN HAUT", "ligne_5": "ROCHEFORT", "nom_de_la_commune": "ST MARTIN EN HAUT", "coordonnees_gps": [45.6632329556, 4.55020035776]}, "geometry": {"type": "Point", "coordinates": [4.55020035776, 45.6632329556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1df8217ef2f177e88f74cb20567a3bf0892c96a1", "fields": {"nom_de_la_commune": "ST ROMAIN AU MONT D OR", "libell_d_acheminement": "ST ROMAIN AU MONT D OR", "code_postal": "69270", "coordonnees_gps": [45.8483845362, 4.85660481546], "code_commune_insee": "69233"}, "geometry": {"type": "Point", "coordinates": [4.85660481546, 45.8483845362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c025d7cb09fcac5e3802d1940ae93c5e4f9e8bc", "fields": {"nom_de_la_commune": "ST ROMAIN EN GAL", "libell_d_acheminement": "ST ROMAIN EN GAL", "code_postal": "69560", "coordonnees_gps": [45.5296436366, 4.83023010495], "code_commune_insee": "69235"}, "geometry": {"type": "Point", "coordinates": [4.83023010495, 45.5296436366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "274a9499cb6cb838244a8be1c698f2dcd195c363", "fields": {"nom_de_la_commune": "ST VERAND", "libell_d_acheminement": "ST VERAND", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69239"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74177a35f8b3e768f1842f100d59d4e64f0c7324", "fields": {"nom_de_la_commune": "TAPONAS", "libell_d_acheminement": "TAPONAS", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69242"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdc8b36bede35a1bd87c7d1f77eeafdd345569f9", "fields": {"nom_de_la_commune": "THURINS", "libell_d_acheminement": "THURINS", "code_postal": "69510", "coordonnees_gps": [45.6836936194, 4.64151349794], "code_commune_insee": "69249"}, "geometry": {"type": "Point", "coordinates": [4.64151349794, 45.6836936194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2707af92e550c1f720ef09900ee081f116f936", "fields": {"nom_de_la_commune": "LA TOUR DE SALVAGNY", "libell_d_acheminement": "LA TOUR DE SALVAGNY", "code_postal": "69890", "coordonnees_gps": [45.8097134421, 4.71196164213], "code_commune_insee": "69250"}, "geometry": {"type": "Point", "coordinates": [4.71196164213, 45.8097134421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e375a5546289b4729a163bdd6a5fdb644dce1bf6", "fields": {"nom_de_la_commune": "VILLIE MORGON", "libell_d_acheminement": "VILLIE MORGON", "code_postal": "69910", "coordonnees_gps": [46.1593907338, 4.67166639897], "code_commune_insee": "69267"}, "geometry": {"type": "Point", "coordinates": [4.67166639897, 46.1593907338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "705b1bafef7c9a1692a26be7e2437325a5a5cf89", "fields": {"nom_de_la_commune": "VOURLES", "libell_d_acheminement": "VOURLES", "code_postal": "69390", "coordonnees_gps": [45.6449321892, 4.78398402177], "code_commune_insee": "69268"}, "geometry": {"type": "Point", "coordinates": [4.78398402177, 45.6449321892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b7cd3e9c07cfada420644f9b130a8966ce2f12f", "fields": {"nom_de_la_commune": "GENAY", "libell_d_acheminement": "GENAY", "code_postal": "69730", "coordonnees_gps": [45.8983689584, 4.83774935928], "code_commune_insee": "69278"}, "geometry": {"type": "Point", "coordinates": [4.83774935928, 45.8983689584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620d1468a143e0640b4e8afa3f53e1c958a16fc9", "fields": {"nom_de_la_commune": "JONAGE", "libell_d_acheminement": "JONAGE", "code_postal": "69330", "coordonnees_gps": [45.7776752532, 5.03757503614], "code_commune_insee": "69279"}, "geometry": {"type": "Point", "coordinates": [5.03757503614, 45.7776752532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3cd877f23991cb5fd7494cca193a51b6454ada7", "fields": {"nom_de_la_commune": "MEYZIEU", "libell_d_acheminement": "MEYZIEU", "code_postal": "69330", "coordonnees_gps": [45.7776752532, 5.03757503614], "code_commune_insee": "69282"}, "geometry": {"type": "Point", "coordinates": [5.03757503614, 45.7776752532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576b0df41f3329947e6b7e5b1a9dff4e6d67ad06", "fields": {"nom_de_la_commune": "MONTANAY", "libell_d_acheminement": "MONTANAY", "code_postal": "69250", "coordonnees_gps": [45.8691904995, 4.83538598434], "code_commune_insee": "69284"}, "geometry": {"type": "Point", "coordinates": [4.83538598434, 45.8691904995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d61d41e6ff618525b1a17056e3520348c219c0", "fields": {"nom_de_la_commune": "RILLIEUX LA PAPE", "libell_d_acheminement": "RILLIEUX LA PAPE", "code_postal": "69140", "coordonnees_gps": [45.8205814087, 4.8985536958], "code_commune_insee": "69286"}, "geometry": {"type": "Point", "coordinates": [4.8985536958, 45.8205814087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2067617eb0b7a8323c93a505f1156171d1684011", "fields": {"nom_de_la_commune": "SIMANDRES", "libell_d_acheminement": "SIMANDRES", "code_postal": "69360", "coordonnees_gps": [45.6220752838, 4.84615821285], "code_commune_insee": "69295"}, "geometry": {"type": "Point", "coordinates": [4.84615821285, 45.6220752838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cab3221a285ac7fd3d78df879ce80cbc6bdc1c38", "fields": {"nom_de_la_commune": "LYON 03", "libell_d_acheminement": "LYON", "code_postal": "69003", "coordonnees_gps": [45.7534327031, 4.86924413945], "code_commune_insee": "69383"}, "geometry": {"type": "Point", "coordinates": [4.86924413945, 45.7534327031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98cad0f7064a0cf6b1aa107af276125711f294e", "fields": {"nom_de_la_commune": "ABONCOURT GESINCOURT", "libell_d_acheminement": "ABONCOURT GESINCOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70002"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bab217e76cc3b7012965afbea99c173fe17b0ee", "fields": {"nom_de_la_commune": "AILLONCOURT", "libell_d_acheminement": "AILLONCOURT", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70007"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d52673938e4491559c67bc9cce684140756b0b", "fields": {"nom_de_la_commune": "AISEY ET RICHECOURT", "libell_d_acheminement": "AISEY ET RICHECOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70009"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896f7f57ab9c546bf49296565f1d918e73a3e56e", "fields": {"nom_de_la_commune": "AMBIEVILLERS", "libell_d_acheminement": "AMBIEVILLERS", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70013"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e2b19a067b999153b45db4e339bdf33ff19c89d", "fields": {"nom_de_la_commune": "AMONCOURT", "libell_d_acheminement": "AMONCOURT", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70015"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "977e44420a40d934ca2ff00d93866d818756c9bb", "fields": {"nom_de_la_commune": "MILLAM", "libell_d_acheminement": "MILLAM", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59402"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f197844c991b91fa39546d72b8525da65275f15", "fields": {"nom_de_la_commune": "MONCHEAUX", "libell_d_acheminement": "MONCHEAUX", "code_postal": "59283", "coordonnees_gps": [50.4428439273, 3.0985365481], "code_commune_insee": "59408"}, "geometry": {"type": "Point", "coordinates": [3.0985365481, 50.4428439273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc5ce2c7f07f090562dac36036a435bcd76eb7f7", "fields": {"nom_de_la_commune": "LA NEUVILLE", "libell_d_acheminement": "LA NEUVILLE", "code_postal": "59239", "coordonnees_gps": [50.4822908809, 3.06005458434], "code_commune_insee": "59427"}, "geometry": {"type": "Point", "coordinates": [3.06005458434, 50.4822908809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a394873353e6a7feaf8b7d7f1479bce0641b49", "fields": {"nom_de_la_commune": "NIERGNIES", "libell_d_acheminement": "NIERGNIES", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59432"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6df9651eb199415be846b434ff8d9924c5a22b0", "fields": {"nom_de_la_commune": "NIVELLE", "libell_d_acheminement": "NIVELLE", "code_postal": "59230", "coordonnees_gps": [50.4489515034, 3.43065651887], "code_commune_insee": "59434"}, "geometry": {"type": "Point", "coordinates": [3.43065651887, 50.4489515034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f9f36b3f3678786c6d484a7b1c0366053db9e2", "fields": {"nom_de_la_commune": "NOORDPEENE", "libell_d_acheminement": "NOORDPEENE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59436"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb6dbb1a15c41b015865db7ab6807c4380af01fa", "fields": {"nom_de_la_commune": "NOYELLES SUR SAMBRE", "libell_d_acheminement": "NOYELLES SUR SAMBRE", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59439"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05a8f488142e1fc535b1cff4323656726ef061ce", "fields": {"nom_de_la_commune": "PERENCHIES", "libell_d_acheminement": "PERENCHIES", "code_postal": "59840", "coordonnees_gps": [50.6641115451, 2.96705892746], "code_commune_insee": "59457"}, "geometry": {"type": "Point", "coordinates": [2.96705892746, 50.6641115451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9ef7df55d7d5551d633deaee9da6176a083faf4", "fields": {"nom_de_la_commune": "POTELLE", "libell_d_acheminement": "POTELLE", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59468"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "224d41e3226ac9f510fb989c09ba476004501a31", "fields": {"code_postal": "59840", "code_commune_insee": "59470", "libell_d_acheminement": "PREMESQUES", "ligne_5": "MONT DE PREMESQUES", "nom_de_la_commune": "PREMESQUES", "coordonnees_gps": [50.6641115451, 2.96705892746]}, "geometry": {"type": "Point", "coordinates": [2.96705892746, 50.6641115451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e2ab03d3c90110242fab3b75c48acf7c35d056", "fields": {"nom_de_la_commune": "PRESEAU", "libell_d_acheminement": "PRESEAU", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59471"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b944ff735cbceb2784722799407f4582684153e1", "fields": {"nom_de_la_commune": "PREUX AU SART", "libell_d_acheminement": "PREUX AU SART", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59473"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19165390e66c0e206bf2b8f758526f6d8904596a", "fields": {"nom_de_la_commune": "PROUVY", "libell_d_acheminement": "PROUVY", "code_postal": "59121", "coordonnees_gps": [50.3179624806, 3.43822520712], "code_commune_insee": "59475"}, "geometry": {"type": "Point", "coordinates": [3.43822520712, 50.3179624806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f3727dcb234b64019bb4f5fa3be50967261a44", "fields": {"nom_de_la_commune": "RAIMBEAUCOURT", "libell_d_acheminement": "RAIMBEAUCOURT", "code_postal": "59283", "coordonnees_gps": [50.4428439273, 3.0985365481], "code_commune_insee": "59489"}, "geometry": {"type": "Point", "coordinates": [3.0985365481, 50.4428439273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9059c663a7c5f55033e1e89ea8669f1e64efa042", "fields": {"nom_de_la_commune": "RONCQ", "libell_d_acheminement": "RONCQ", "code_postal": "59223", "coordonnees_gps": [50.7470750929, 3.11795880142], "code_commune_insee": "59508"}, "geometry": {"type": "Point", "coordinates": [3.11795880142, 50.7470750929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd48774eac2a5a7ea6057ee6dbcad1c19a359b1d", "fields": {"nom_de_la_commune": "ROSULT", "libell_d_acheminement": "ROSULT", "code_postal": "59230", "coordonnees_gps": [50.4489515034, 3.43065651887], "code_commune_insee": "59511"}, "geometry": {"type": "Point", "coordinates": [3.43065651887, 50.4489515034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94aae11a277a339990c863873cf7bd86e6f80dc7", "fields": {"nom_de_la_commune": "RUESNES", "libell_d_acheminement": "RUESNES", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59518"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914a3e05b1bd6dc26847657c649797e033ce6fb6", "fields": {"nom_de_la_commune": "RUMEGIES", "libell_d_acheminement": "RUMEGIES", "code_postal": "59226", "coordonnees_gps": [50.480222772, 3.38511026562], "code_commune_insee": "59519"}, "geometry": {"type": "Point", "coordinates": [3.38511026562, 50.480222772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f681ae0d55f6a7591ea14bcd652271b961c97afa", "fields": {"nom_de_la_commune": "ST HILAIRE LEZ CAMBRAI", "libell_d_acheminement": "ST HILAIRE LEZ CAMBRAI", "code_postal": "59292", "coordonnees_gps": [50.1809987528, 3.41776654843], "code_commune_insee": "59533"}, "geometry": {"type": "Point", "coordinates": [3.41776654843, 50.1809987528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38e907c8bd8b98b23a5b90566d61645f3ba1a5cd", "fields": {"nom_de_la_commune": "ST PIERRE BROUCK", "libell_d_acheminement": "ST PIERRE BROUCK", "code_postal": "59630", "coordonnees_gps": [50.9241353596, 2.23327395744], "code_commune_insee": "59539"}, "geometry": {"type": "Point", "coordinates": [2.23327395744, 50.9241353596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f412e36788c1bee3acb754083c60361215e26d7", "fields": {"nom_de_la_commune": "SALESCHES", "libell_d_acheminement": "SALESCHES", "code_postal": "59218", "coordonnees_gps": [50.188036681, 3.59383349158], "code_commune_insee": "59549"}, "geometry": {"type": "Point", "coordinates": [3.59383349158, 50.188036681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8fe47f78636348fd9da3a91fba2cecdbfcd0361", "fields": {"nom_de_la_commune": "SALOME", "libell_d_acheminement": "SALOME", "code_postal": "59496", "coordonnees_gps": [50.5368972316, 2.84563657471], "code_commune_insee": "59550"}, "geometry": {"type": "Point", "coordinates": [2.84563657471, 50.5368972316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74d52c9b9834f59ad010ed598c1c2e30edeab6e4", "fields": {"nom_de_la_commune": "SAULZOIR", "libell_d_acheminement": "SAULZOIR", "code_postal": "59227", "coordonnees_gps": [50.2500185431, 3.45009234347], "code_commune_insee": "59558"}, "geometry": {"type": "Point", "coordinates": [3.45009234347, 50.2500185431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2af97de1a3dd599dee814cb47af10fa1c02dd952", "fields": {"nom_de_la_commune": "SOMAIN", "libell_d_acheminement": "SOMAIN", "code_postal": "59490", "coordonnees_gps": [50.3590143857, 3.26743195481], "code_commune_insee": "59574"}, "geometry": {"type": "Point", "coordinates": [3.26743195481, 50.3590143857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5c30c4ba166de6542d59b4b3cff6136eb3b9ae", "fields": {"nom_de_la_commune": "STEENVOORDE", "libell_d_acheminement": "STEENVOORDE", "code_postal": "59114", "coordonnees_gps": [50.8038796466, 2.57811297783], "code_commune_insee": "59580"}, "geometry": {"type": "Point", "coordinates": [2.57811297783, 50.8038796466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "330e166d866fb69c470fe22288b4b2c510cd2bb5", "fields": {"nom_de_la_commune": "TEMPLEUVE EN PEVELE", "libell_d_acheminement": "TEMPLEUVE EN PEVELE", "code_postal": "59242", "coordonnees_gps": [50.5245553237, 3.18527549865], "code_commune_insee": "59586"}, "geometry": {"type": "Point", "coordinates": [3.18527549865, 50.5245553237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f17d6a32989ca5ae52cb966c658c485e7637fc2f", "fields": {"nom_de_la_commune": "VERTAIN", "libell_d_acheminement": "VERTAIN", "code_postal": "59730", "coordonnees_gps": [50.1806606643, 3.51245734771], "code_commune_insee": "59612"}, "geometry": {"type": "Point", "coordinates": [3.51245734771, 50.1806606643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de7f52eb126529684adc3397bdefde0bb4eab145", "fields": {"nom_de_la_commune": "VICQ", "libell_d_acheminement": "VICQ", "code_postal": "59970", "coordonnees_gps": [50.4323433177, 3.57545124255], "code_commune_insee": "59613"}, "geometry": {"type": "Point", "coordinates": [3.57545124255, 50.4323433177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4cc9653cd65a116f92fbd5fa907a8c17577a4f9", "fields": {"nom_de_la_commune": "VRED", "libell_d_acheminement": "VRED", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59629"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c866c2170abaebb410cec74bb5dabfc8403515c5", "fields": {"nom_de_la_commune": "WALLON CAPPEL", "libell_d_acheminement": "WALLON CAPPEL", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59634"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0710ffe6df062d15d5f8597a984d5137b2616ef", "fields": {"nom_de_la_commune": "WAMBAIX", "libell_d_acheminement": "WAMBAIX", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59635"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6be4386879ac7ef9152ab9a1d5e9abeef39d1ddb", "fields": {"nom_de_la_commune": "WAMBRECHIES", "libell_d_acheminement": "WAMBRECHIES", "code_postal": "59118", "coordonnees_gps": [50.6955049755, 3.04758137438], "code_commune_insee": "59636"}, "geometry": {"type": "Point", "coordinates": [3.04758137438, 50.6955049755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5f8f3caf69dc54937637363e7334d0c1e1c0af", "fields": {"nom_de_la_commune": "WATTEN", "libell_d_acheminement": "WATTEN", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59647"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e13c9517d0bb32049a46e2f4fbe09e72576630e", "fields": {"nom_de_la_commune": "WERVICQ SUD", "libell_d_acheminement": "WERVICQ SUD", "code_postal": "59117", "coordonnees_gps": [50.7611699069, 3.05057612291], "code_commune_insee": "59656"}, "geometry": {"type": "Point", "coordinates": [3.05057612291, 50.7611699069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc06732820c50d65997090b623eb3e79d8269364", "fields": {"nom_de_la_commune": "WICRES", "libell_d_acheminement": "WICRES", "code_postal": "59134", "coordonnees_gps": [50.592822459, 2.88189663466], "code_commune_insee": "59658"}, "geometry": {"type": "Point", "coordinates": [2.88189663466, 50.592822459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f54a7407e51e45726ee3c000130730416ddc5d2", "fields": {"nom_de_la_commune": "WULVERDINGHE", "libell_d_acheminement": "WULVERDINGHE", "code_postal": "59143", "coordonnees_gps": [50.8266931368, 2.25619459073], "code_commune_insee": "59664"}, "geometry": {"type": "Point", "coordinates": [2.25619459073, 50.8266931368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b25e523ee141fbe2afaf4d63c47b20dc07e3c6cb", "fields": {"nom_de_la_commune": "ACHY", "libell_d_acheminement": "ACHY", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60004"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d6eed405c25bac5905e35657d4c84a8ba64017", "fields": {"nom_de_la_commune": "LES AGEUX", "libell_d_acheminement": "LES AGEUX", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60006"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "359cb926ff843e94c0f6fa233c98b77f9b7ca31b", "fields": {"nom_de_la_commune": "ANSACQ", "libell_d_acheminement": "ANSACQ", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60016"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a25036a9bdebbe85547db013e1c0dcbdb120672e", "fields": {"nom_de_la_commune": "ANSAUVILLERS", "libell_d_acheminement": "ANSAUVILLERS", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60017"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c7ee45ca45caf6e5ebcb2bbc0bec0c81176bbac", "fields": {"nom_de_la_commune": "APPILLY", "libell_d_acheminement": "APPILLY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60021"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "079f7cb027bfb0ba6465db9f4307db22ab3163f0", "fields": {"nom_de_la_commune": "APREMONT", "libell_d_acheminement": "APREMONT", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60022"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c029f8acbb091717b4aca9cec2ae41252c57c321", "fields": {"nom_de_la_commune": "ARSY", "libell_d_acheminement": "ARSY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60024"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31194ff8623f7a96eaa6ead7c6cced8edda19f58", "fields": {"nom_de_la_commune": "AUCHY LA MONTAGNE", "libell_d_acheminement": "AUCHY LA MONTAGNE", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60026"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212f1c85b520b09484ff60b57741c569e9d3f92e", "fields": {"nom_de_la_commune": "AUTEUIL", "libell_d_acheminement": "AUTEUIL", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60030"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aac63df35872cf1d42323900285cf566320ca13c", "fields": {"nom_de_la_commune": "AVILLY ST LEONARD", "libell_d_acheminement": "AVILLY ST LEONARD", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60033"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c24a72afcb9b05885d9f2efdf6b55f092216a049", "fields": {"nom_de_la_commune": "AVRICOURT", "libell_d_acheminement": "AVRICOURT", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60035"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "078035ce914e996f861e95dcc3d5021c982deef5", "fields": {"nom_de_la_commune": "BAILLEUL SUR THERAIN", "libell_d_acheminement": "BAILLEUL SUR THERAIN", "code_postal": "60930", "coordonnees_gps": [49.3849304239, 2.23102446472], "code_commune_insee": "60041"}, "geometry": {"type": "Point", "coordinates": [2.23102446472, 49.3849304239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9738fbd8a2a4895ebfc897d4fd7f68b148c9883", "fields": {"nom_de_la_commune": "BARGNY", "libell_d_acheminement": "BARGNY", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60046"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32fd9193e294fd83bd652a3e2528cd28712d452a", "fields": {"nom_de_la_commune": "BARON", "libell_d_acheminement": "BARON", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60047"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b62332e2e16974cb1afccc39473a501c0f147d", "fields": {"nom_de_la_commune": "BAZANCOURT", "libell_d_acheminement": "BAZANCOURT", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60049"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a80ac617fb21f859b611332bff69825cac3100", "fields": {"nom_de_la_commune": "BEAUVAIS", "libell_d_acheminement": "BEAUVAIS", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60057"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d4a2c93f1072565091d3ce567e05fc76cd86b91", "fields": {"nom_de_la_commune": "BERLANCOURT", "libell_d_acheminement": "BERLANCOURT", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60062"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e97880b5079a391e3f56979adeb888dd643b7ab5", "fields": {"nom_de_la_commune": "BITRY", "libell_d_acheminement": "BITRY", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60072"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7c3da818d2346174eada5a637327590948a769", "fields": {"nom_de_la_commune": "BONVILLERS", "libell_d_acheminement": "BONVILLERS", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60085"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27ee927da231fc9f0309782445f5b16c4bbb144b", "fields": {"nom_de_la_commune": "BORAN SUR OISE", "libell_d_acheminement": "BORAN SUR OISE", "code_postal": "60820", "coordonnees_gps": [49.175670181, 2.35110636224], "code_commune_insee": "60086"}, "geometry": {"type": "Point", "coordinates": [2.35110636224, 49.175670181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0080ed8b675b18048bcf1c26319ac8e3db3e5d08", "fields": {"nom_de_la_commune": "BOREST", "libell_d_acheminement": "BOREST", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60087"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492b9570cf8439dc6151dbdaaf83017fee5b929d", "fields": {"code_postal": "60540", "code_commune_insee": "60088", "libell_d_acheminement": "BORNEL", "ligne_5": "ANSERVILLE", "nom_de_la_commune": "BORNEL", "coordonnees_gps": [49.1970454016, 2.20454103263]}, "geometry": {"type": "Point", "coordinates": [2.20454103263, 49.1970454016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4771015c564e0384473e8174c5ba3479665f34f6", "fields": {"code_postal": "60540", "code_commune_insee": "60088", "libell_d_acheminement": "BORNEL", "ligne_5": "FOSSEUSE", "nom_de_la_commune": "BORNEL", "coordonnees_gps": [49.1970454016, 2.20454103263]}, "geometry": {"type": "Point", "coordinates": [2.20454103263, 49.1970454016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a618b96aaa5035387a28d7a7bb28a2d260252294", "fields": {"nom_de_la_commune": "BOUBIERS", "libell_d_acheminement": "BOUBIERS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60089"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "737d0ecd5cbb20fe2e85856b351740cfd5572e46", "fields": {"nom_de_la_commune": "BOURSONNE", "libell_d_acheminement": "BOURSONNE", "code_postal": "60141", "coordonnees_gps": [49.1992405168, 3.02501632067], "code_commune_insee": "60094"}, "geometry": {"type": "Point", "coordinates": [3.02501632067, 49.1992405168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a8ee842a559d58f8daac05d6fcf834a080f59b", "fields": {"nom_de_la_commune": "BRAISNES SUR ARONDE", "libell_d_acheminement": "BRAISNES SUR ARONDE", "code_postal": "60113", "coordonnees_gps": [49.468392159, 2.74988902801], "code_commune_insee": "60099"}, "geometry": {"type": "Point", "coordinates": [2.74988902801, 49.468392159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c916ac6dc567edc4c357ed1106ebe5fb35b049fe", "fields": {"nom_de_la_commune": "BRIOT", "libell_d_acheminement": "BRIOT", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60108"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ba2db6f5b6599532f974556a125ff50e4bce07", "fields": {"nom_de_la_commune": "BURY", "libell_d_acheminement": "BURY", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60116"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5e1919429597086f669cb322abd4543f0dea65", "fields": {"nom_de_la_commune": "CAISNES", "libell_d_acheminement": "CAISNES", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60118"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7774bec7649a257f51b9bbf6439849be93920307", "fields": {"nom_de_la_commune": "CAMPEAUX", "libell_d_acheminement": "CAMPEAUX", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60122"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9495b786e8127ab724cb9f9f865ddad1109c1b25", "fields": {"nom_de_la_commune": "CAMPREMY", "libell_d_acheminement": "CAMPREMY", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60123"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c01962f7dad0c3f91e2d002fd9b735e6d4c253b", "fields": {"nom_de_la_commune": "CANNY SUR MATZ", "libell_d_acheminement": "CANNY SUR MATZ", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60127"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969446a2ffdec6a1faeeb3ba933c669e6d132e00", "fields": {"nom_de_la_commune": "CATENOY", "libell_d_acheminement": "CATENOY", "code_postal": "60840", "coordonnees_gps": [49.3800366036, 2.49101738028], "code_commune_insee": "60130"}, "geometry": {"type": "Point", "coordinates": [2.49101738028, 49.3800366036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb4be816383e60cd0f21a1d0ecbbd4a2f1209ea", "fields": {"nom_de_la_commune": "CATHEUX", "libell_d_acheminement": "CATHEUX", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60131"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65859504f97133aa3ad18f72a5a3d15fb45a8c8c", "fields": {"nom_de_la_commune": "CHAMBLY", "libell_d_acheminement": "CHAMBLY", "code_postal": "60230", "coordonnees_gps": [49.1718983919, 2.24616345056], "code_commune_insee": "60139"}, "geometry": {"type": "Point", "coordinates": [2.24616345056, 49.1718983919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62d0e730ba8ecc34e1f007df4317fdbb6c48e703", "fields": {"nom_de_la_commune": "CLERMONT", "libell_d_acheminement": "CLERMONT", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60157"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58dc3c5cccff4b62f8b86a49c47dd585f22621dc", "fields": {"nom_de_la_commune": "COIVREL", "libell_d_acheminement": "COIVREL", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60158"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "154cef09a61f55ac4c54de2bda76ff64f6059107", "fields": {"nom_de_la_commune": "CONCHY LES POTS", "libell_d_acheminement": "CONCHY LES POTS", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60160"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ddb1cb99837e2a4e0b9985d2cd4d37674b440a", "fields": {"nom_de_la_commune": "COURTEUIL", "libell_d_acheminement": "COURTEUIL", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60170"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce095ef80e0a9f4cdb14970d89e0b131c92598e9", "fields": {"nom_de_la_commune": "CREPY EN VALOIS", "libell_d_acheminement": "CREPY EN VALOIS", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60176"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa665c3ea69cc312ef9d4de63a4a7631d4df551", "fields": {"nom_de_la_commune": "CREVECOEUR LE PETIT", "libell_d_acheminement": "CREVECOEUR LE PETIT", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60179"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81fc0f48d361f375a6ae128853177569a0bef53c", "fields": {"nom_de_la_commune": "CRILLON", "libell_d_acheminement": "CRILLON", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60180"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f18b1165eedab97b3531a82b4dc29db71de2835", "fields": {"nom_de_la_commune": "CUVERGNON", "libell_d_acheminement": "CUVERGNON", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60190"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c33f5c2632f1d0fe41d4d0b1ecbd43fe8e3abb", "fields": {"nom_de_la_commune": "CUY", "libell_d_acheminement": "CUY", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60192"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5636eaafad4829733c1400f9036b1dc81c999427", "fields": {"nom_de_la_commune": "DAMERAUCOURT", "libell_d_acheminement": "DAMERAUCOURT", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60193"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d23086389e9e5f6389bf00be56f2a41a53a8b33d", "fields": {"nom_de_la_commune": "DOMELIERS", "libell_d_acheminement": "DOMELIERS", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60199"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf63e73ebe7aef94955c06de9dca5dd2df50e201", "fields": {"nom_de_la_commune": "ENENCOURT LEAGE", "libell_d_acheminement": "ENENCOURT LEAGE", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60208"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87ce1dde1f52a337eddc5fb4518bc0afef6e8251", "fields": {"nom_de_la_commune": "ENENCOURT LE SEC", "libell_d_acheminement": "ENENCOURT LE SEC", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60209"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2caabc387dd3f19e5a3cba7be2a5e923a9fc2b61", "fields": {"nom_de_la_commune": "ERMENONVILLE", "libell_d_acheminement": "ERMENONVILLE", "code_postal": "60950", "coordonnees_gps": [49.1189792735, 2.6960856018], "code_commune_insee": "60213"}, "geometry": {"type": "Point", "coordinates": [2.6960856018, 49.1189792735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79c8e930811ddc3fd158b13461806aaad57e03a7", "fields": {"nom_de_la_commune": "ERNEMONT BOUTAVENT", "libell_d_acheminement": "ERNEMONT BOUTAVENT", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60214"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39f81b4a0cc561c2d6b621664c00b618e2e5c6d5", "fields": {"nom_de_la_commune": "ESCAMES", "libell_d_acheminement": "ESCAMES", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60217"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f55b246d493326bb4a92e68f7998d37b56e0341", "fields": {"nom_de_la_commune": "ESTREES ST DENIS", "libell_d_acheminement": "ESTREES ST DENIS", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60223"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b9a29429e13b588d1812f378d6292e6018e0c4", "fields": {"nom_de_la_commune": "LE FAY ST QUENTIN", "libell_d_acheminement": "LE FAY ST QUENTIN", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60230"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c7b11e141508136f6c2b65dd6abe2c3a71e872", "fields": {"nom_de_la_commune": "FERRIERES", "libell_d_acheminement": "FERRIERES", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60232"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319d2be577a26d4b0874fbbb2f00413613d98829", "fields": {"nom_de_la_commune": "FLECHY", "libell_d_acheminement": "FLECHY", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60237"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843111be7dba9cac935819841b32e0367ecb1426", "fields": {"nom_de_la_commune": "FONTAINE ST LUCIEN", "libell_d_acheminement": "FONTAINE ST LUCIEN", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60243"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f10c01cd01d20fd9c3a3b423a3687f4be37531", "fields": {"nom_de_la_commune": "FONTENAY TORCY", "libell_d_acheminement": "FONTENAY TORCY", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60244"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9924a92ddabade6a774410892ab814de6fb87b", "fields": {"nom_de_la_commune": "FRANCIERES", "libell_d_acheminement": "FRANCIERES", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60254"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42bed240af2a23037973f7555e1ee84fc163e98b", "fields": {"nom_de_la_commune": "FRESNEAUX MONTCHEVREUIL", "libell_d_acheminement": "FRESNEAUX MONTCHEVREUIL", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60256"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd79c910bb08adc538a764466873af439e1b7e25", "fields": {"nom_de_la_commune": "FRESNE LEGUILLON", "libell_d_acheminement": "FRESNE LEGUILLON", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60257"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8789be6162f20034d0e8301ef3ef3c8da3200507", "fields": {"nom_de_la_commune": "FRESNOY LE LUAT", "libell_d_acheminement": "FRESNOY LE LUAT", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60261"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "198262a8fdb07639625be6417b30d7e6100c5d67", "fields": {"nom_de_la_commune": "GLAIGNES", "libell_d_acheminement": "GLAIGNES", "code_postal": "60129", "coordonnees_gps": [49.2970523686, 2.864136269], "code_commune_insee": "60274"}, "geometry": {"type": "Point", "coordinates": [2.864136269, 49.2970523686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2b4681b64ce27c18c9182aade09181e1b5c181c", "fields": {"nom_de_la_commune": "GODENVILLERS", "libell_d_acheminement": "GODENVILLERS", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60276"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "555df21ed83835190cfc2da8ad02911684ba864a", "fields": {"nom_de_la_commune": "GOINCOURT", "libell_d_acheminement": "GOINCOURT", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60277"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2af09a3e129503e4dac4debea387894a3133b819", "fields": {"nom_de_la_commune": "BARD LE REGULIER", "libell_d_acheminement": "BARD LE REGULIER", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21046"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76341ebf2addcd437d90dc055900367fac7a15a", "fields": {"nom_de_la_commune": "BEAUNOTTE", "libell_d_acheminement": "BEAUNOTTE", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21055"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "991a6861cd63d84853f14a12f794ff16ff6950c1", "fields": {"nom_de_la_commune": "BELAN SUR OURCE", "libell_d_acheminement": "BELAN SUR OURCE", "code_postal": "21570", "coordonnees_gps": [47.9722434237, 4.63863087175], "code_commune_insee": "21058"}, "geometry": {"type": "Point", "coordinates": [4.63863087175, 47.9722434237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35926b9c8d98381d2649066e04b47337093e1b7", "fields": {"nom_de_la_commune": "BILLY LES CHANCEAUX", "libell_d_acheminement": "BILLY LES CHANCEAUX", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21075"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9d2015855ecff726fbfe012da46a0bf24c8f2c", "fields": {"nom_de_la_commune": "BISSEY LA PIERRE", "libell_d_acheminement": "BISSEY LA PIERRE", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21078"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91c86aac656fd60d056b5dbf67cb23dbeee5bcd", "fields": {"nom_de_la_commune": "BLANCEY", "libell_d_acheminement": "BLANCEY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21082"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "505fab07f7ac5c98eab226305ff60981888767c3", "fields": {"nom_de_la_commune": "BLANOT", "libell_d_acheminement": "BLANOT", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21083"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c4449d930a038989189326d451b8ec3f7aa6fa", "fields": {"nom_de_la_commune": "SOURCE SEINE", "libell_d_acheminement": "SOURCE SEINE", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21084"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64a7d79f3b1852ca4d4e232f021c833669bbf365", "fields": {"nom_de_la_commune": "BLIGNY SUR OUCHE", "libell_d_acheminement": "BLIGNY SUR OUCHE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21087"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2904c35702ad72d5c645b90560e1b4a4486b4b97", "fields": {"nom_de_la_commune": "BONNENCONTRE", "libell_d_acheminement": "BONNENCONTRE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21089"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41b33f25198ebb4d1ea60262773025ca48e8425c", "fields": {"nom_de_la_commune": "BOUHEY", "libell_d_acheminement": "BOUHEY", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21091"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc2248ae83c9f137b5201c7a863dee417b52d2c7", "fields": {"nom_de_la_commune": "BOUSSELANGE", "libell_d_acheminement": "BOUSSELANGE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21095"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32b2916253029f8853a36bb7980fa648dafbe486", "fields": {"nom_de_la_commune": "BRAIN", "libell_d_acheminement": "BRAIN", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21100"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e13ad1189c3bf92a7a6cfd1e359467cc130b61", "fields": {"nom_de_la_commune": "BRESSEY SUR TILLE", "libell_d_acheminement": "BRESSEY SUR TILLE", "code_postal": "21560", "coordonnees_gps": [47.326460883, 5.19639629604], "code_commune_insee": "21105"}, "geometry": {"type": "Point", "coordinates": [5.19639629604, 47.326460883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "304f2591df515686b6fb7bc45195becded69bb87", "fields": {"nom_de_la_commune": "BROGNON", "libell_d_acheminement": "BROGNON", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21111"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417903fe95d04429a83589cd5e01cc803f87ccad", "fields": {"nom_de_la_commune": "CERILLY", "libell_d_acheminement": "CERILLY", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21125"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776d19070c97d1ed489b944588255e0ba3569ce2", "fields": {"nom_de_la_commune": "CHASSAGNE MONTRACHET", "libell_d_acheminement": "CHASSAGNE MONTRACHET", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21150"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f4c38d1253d8a4fead1ca40df9ea62f08c3d1f2", "fields": {"nom_de_la_commune": "CHASSEY", "libell_d_acheminement": "CHASSEY", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21151"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee1b87a1b2c1d210172460fd5981822be21e392", "fields": {"code_postal": "21610", "code_commune_insee": "21158", "libell_d_acheminement": "CHAUME ET COURCHAMP", "ligne_5": "COURCHAMP", "nom_de_la_commune": "CHAUME ET COURCHAMP", "coordonnees_gps": [47.5437721668, 5.38811246138]}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f3fc6d851ddad77f5220804475f1977ad6cc65a", "fields": {"nom_de_la_commune": "CHAUME LES BAIGNEUX", "libell_d_acheminement": "CHAUME LES BAIGNEUX", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21160"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16887961cada8246fa08e874ef355ff512637160", "fields": {"nom_de_la_commune": "CHAUMONT LE BOIS", "libell_d_acheminement": "CHAUMONT LE BOIS", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21161"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e5f76c585ee4e95f35b6e8626578b42759c5870", "fields": {"nom_de_la_commune": "CHEMIN D AISEY", "libell_d_acheminement": "CHEMIN D AISEY", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21165"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "841337ef1009dc9f2db64d3f742be0cce9cfc077", "fields": {"nom_de_la_commune": "CHEVANNES", "libell_d_acheminement": "CHEVANNES", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21169"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0fa2f49b332d02d67f0d5c599c3c17286babbcd", "fields": {"nom_de_la_commune": "CHEVIGNY ST SAUVEUR", "libell_d_acheminement": "CHEVIGNY ST SAUVEUR", "code_postal": "21800", "coordonnees_gps": [47.2974794618, 5.12130493995], "code_commune_insee": "21171"}, "geometry": {"type": "Point", "coordinates": [5.12130493995, 47.2974794618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48635503c3e6f2fc9b660dba40196dd94f7077b", "fields": {"nom_de_la_commune": "CLENAY", "libell_d_acheminement": "CLENAY", "code_postal": "21490", "coordonnees_gps": [47.3917821033, 5.11642671411], "code_commune_insee": "21179"}, "geometry": {"type": "Point", "coordinates": [5.11642671411, 47.3917821033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36b0b0e3dad270c7ac0edd1704fd9a80572fbc42", "fields": {"nom_de_la_commune": "CLERY", "libell_d_acheminement": "CLERY", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21180"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a75989dd5b3fa7fde44241509dcc3fb3e2b24ffb", "fields": {"nom_de_la_commune": "CLOMOT", "libell_d_acheminement": "CLOMOT", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21181"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9f5b45ba0049083d243b09ded55418cd468990", "fields": {"nom_de_la_commune": "COLLONGES LES PREMIERES", "libell_d_acheminement": "COLLONGES LES PREMIERES", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21183"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c227dda9f157a12c2de17e944c931b44f5ee3286", "fields": {"nom_de_la_commune": "COMBLANCHIEN", "libell_d_acheminement": "COMBLANCHIEN", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21186"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cf5a31aa8118379b71d275e7bdac1d4d1ee2320", "fields": {"nom_de_la_commune": "CORCELLES LES ARTS", "libell_d_acheminement": "CORCELLES LES ARTS", "code_postal": "21190", "coordonnees_gps": [46.9857397581, 4.75418799653], "code_commune_insee": "21190"}, "geometry": {"type": "Point", "coordinates": [4.75418799653, 46.9857397581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b72ad7601c21bbb37fbdd9fe51d5bd1ca45d6f5", "fields": {"nom_de_la_commune": "CORPOYER LA CHAPELLE", "libell_d_acheminement": "CORPOYER LA CHAPELLE", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21197"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f78f2f1e5f453c641047339676d341af64c82d22", "fields": {"nom_de_la_commune": "COURBAN", "libell_d_acheminement": "COURBAN", "code_postal": "21520", "coordonnees_gps": [47.9216725313, 4.78666721906], "code_commune_insee": "21202"}, "geometry": {"type": "Point", "coordinates": [4.78666721906, 47.9216725313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "023b4efc87a17f147be1204c280af58d79097c6a", "fields": {"nom_de_la_commune": "CRECEY SUR TILLE", "libell_d_acheminement": "CRECEY SUR TILLE", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21211"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ecdfe068a5bcb936fbff96569522e303126c67", "fields": {"nom_de_la_commune": "CRIMOLOIS", "libell_d_acheminement": "CRIMOLOIS", "code_postal": "21800", "coordonnees_gps": [47.2974794618, 5.12130493995], "code_commune_insee": "21213"}, "geometry": {"type": "Point", "coordinates": [5.12130493995, 47.2974794618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ebe1ee92a2a7fe45bdceec3aa6f560d0bf7e974", "fields": {"nom_de_la_commune": "CURTIL VERGY", "libell_d_acheminement": "CURTIL VERGY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21219"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c6f3c2a48eb75d508421025a392871c593bd160", "fields": {"nom_de_la_commune": "CUSSY LA COLONNE", "libell_d_acheminement": "CUSSY LA COLONNE", "code_postal": "21360", "coordonnees_gps": [47.1309824329, 4.67458672388], "code_commune_insee": "21221"}, "geometry": {"type": "Point", "coordinates": [4.67458672388, 47.1309824329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9000fd010253ee908eab3844e898a960fdf86102", "fields": {"nom_de_la_commune": "DAMPIERRE ET FLEE", "libell_d_acheminement": "DAMPIERRE ET FLEE", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21225"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b63327a830475dd6f26aa9d59e0ebeb8b1edd9ec", "fields": {"nom_de_la_commune": "DRAMBON", "libell_d_acheminement": "DRAMBON", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21233"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "060212ecf51e9cb3cf3053651eb441e12243cb2a", "fields": {"nom_de_la_commune": "ECHEVANNES", "libell_d_acheminement": "ECHEVANNES", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21240"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32a099da3447d37a2ecc98d0c7f3553ec6667ab2", "fields": {"nom_de_la_commune": "ECHEVRONNE", "libell_d_acheminement": "ECHEVRONNE", "code_postal": "21420", "coordonnees_gps": [47.0968171399, 4.80502762881], "code_commune_insee": "21241"}, "geometry": {"type": "Point", "coordinates": [4.80502762881, 47.0968171399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "239bc2f84bd394b7020d3dd61a9ad736b8b5254a", "fields": {"nom_de_la_commune": "ECHIGEY", "libell_d_acheminement": "ECHIGEY", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21242"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b59fee46c682432f104ba8ef3743dc9b2b6b2c", "fields": {"nom_de_la_commune": "EGUILLY", "libell_d_acheminement": "EGUILLY", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21244"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2520211e3da441dc5e37b2f87e27f239f9af14c9", "fields": {"nom_de_la_commune": "EPOISSES", "libell_d_acheminement": "EPOISSES", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21247"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "032e4bf5f5c6570224f7ff86a6f39a841a82cbba", "fields": {"nom_de_la_commune": "ETALANTE", "libell_d_acheminement": "ETALANTE", "code_postal": "21510", "coordonnees_gps": [47.6697660444, 4.74962895966], "code_commune_insee": "21253"}, "geometry": {"type": "Point", "coordinates": [4.74962895966, 47.6697660444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94bd40684cbdb903e97cff607b17fb0f5c48fc55", "fields": {"nom_de_la_commune": "ETEVAUX", "libell_d_acheminement": "ETEVAUX", "code_postal": "21270", "coordonnees_gps": [47.3192103403, 5.39812598656], "code_commune_insee": "21256"}, "geometry": {"type": "Point", "coordinates": [5.39812598656, 47.3192103403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c24ce75e844a2dbf389461648622d29629fd881", "fields": {"nom_de_la_commune": "ETROCHEY", "libell_d_acheminement": "ETROCHEY", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21258"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45c68574d66bf1ff9bdb37d070371000ac86b6b", "fields": {"nom_de_la_commune": "FAIN LES MOUTIERS", "libell_d_acheminement": "FAIN LES MOUTIERS", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21260"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5875a4ef4dcfd8c1c280c5f1e20c0cad9ea4862b", "fields": {"nom_de_la_commune": "FLAMMERANS", "libell_d_acheminement": "FLAMMERANS", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21269"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e203cd0bd2943ef17b0b8ec19a323400926b04a7", "fields": {"nom_de_la_commune": "FLAVIGNY SUR OZERAIN", "libell_d_acheminement": "FLAVIGNY SUR OZERAIN", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21271"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cc8d0022420e9f8e545d9fe8e0d58770b47a8f3", "fields": {"nom_de_la_commune": "FLEUREY SUR OUCHE", "libell_d_acheminement": "FLEUREY SUR OUCHE", "code_postal": "21410", "coordonnees_gps": [47.2781985678, 4.79910147091], "code_commune_insee": "21273"}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aabbf6c8c1af75de19594bf507e9336236ae4860", "fields": {"nom_de_la_commune": "FONTAINES EN DUESMOIS", "libell_d_acheminement": "FONTAINES EN DUESMOIS", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21276"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e502621bcc31285becd6fb7367b68571f79fae", "fields": {"nom_de_la_commune": "FORLEANS", "libell_d_acheminement": "FORLEANS", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21282"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05afaa2de2ad3c47910f0a9584ca26ee40341a7e", "fields": {"nom_de_la_commune": "FRENOIS", "libell_d_acheminement": "FRENOIS", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21286"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20530f05bc9e2b911e44974ad0aa74f8e73b7557", "fields": {"nom_de_la_commune": "GISSEY SOUS FLAVIGNY", "libell_d_acheminement": "GISSEY SOUS FLAVIGNY", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21299"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e3a2dd66e67aee5c63fdabfd0ee31e205a30ab", "fields": {"nom_de_la_commune": "GLANON", "libell_d_acheminement": "GLANON", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21301"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1a8b62ae5380a8722f8eda32100e4920fe2f09", "fields": {"nom_de_la_commune": "GRISELLES", "libell_d_acheminement": "GRISELLES", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21309"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b210ed35a5d8e050ab83c0a98580dc1d30f6d740", "fields": {"nom_de_la_commune": "IS SUR TILLE", "libell_d_acheminement": "IS SUR TILLE", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21317"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2b86051f23e1df011029c39f6d8f3ec0cc252b2", "fields": {"nom_de_la_commune": "IZEURE", "libell_d_acheminement": "IZEURE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21319"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef2dd5c3768221a73c215f47445b9099cc19904e", "fields": {"nom_de_la_commune": "JOUEY", "libell_d_acheminement": "JOUEY", "code_postal": "21230", "coordonnees_gps": [47.1177971588, 4.48056622149], "code_commune_insee": "21325"}, "geometry": {"type": "Point", "coordinates": [4.48056622149, 47.1177971588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7abd93a56455e1ff2e70d99efe602f320bfd34c1", "fields": {"code_postal": "21340", "code_commune_insee": "21327", "libell_d_acheminement": "VAL MONT", "ligne_5": "IVRY EN MONTAGNE", "nom_de_la_commune": "VAL MONT", "coordonnees_gps": [46.9889799591, 4.61638229862]}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0158ed0ffe5ea5cdb956a8f3e5acdb7558d98bf7", "fields": {"nom_de_la_commune": "LABERGEMENT FOIGNEY", "libell_d_acheminement": "LABERGEMENT FOIGNEY", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21330"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "583f4e16dbab5bf38887fc08c68231563abd1225", "fields": {"nom_de_la_commune": "LACOUR D ARCENAY", "libell_d_acheminement": "LACOUR D ARCENAY", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21335"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "471b6e0bc9848a38d5be1650501705d056c7a790", "fields": {"nom_de_la_commune": "LAPERRIERE SUR SAONE", "libell_d_acheminement": "LAPERRIERE SUR SAONE", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21342"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33ee255c8b0f587f73cc86adea8f83c5b369d95d", "fields": {"nom_de_la_commune": "MACONGE", "libell_d_acheminement": "MACONGE", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21362"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e5f58db06e915dd039d876ae446e7b94369d720", "fields": {"nom_de_la_commune": "MAGNY SUR TILLE", "libell_d_acheminement": "MAGNY SUR TILLE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21370"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cea4985289e20faaeb10eb7044de1df18eec631", "fields": {"nom_de_la_commune": "MARCENAY", "libell_d_acheminement": "MARCENAY", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21378"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9879552345149c47727e3fa5b656f81bb40ef54", "fields": {"nom_de_la_commune": "MARIGNY LES REULLEE", "libell_d_acheminement": "MARIGNY LES REULLEE", "code_postal": "21200", "coordonnees_gps": [47.0092507244, 4.88350689515], "code_commune_insee": "21387"}, "geometry": {"type": "Point", "coordinates": [4.88350689515, 47.0092507244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78563cb5098faa6e8495dc736c863dca98812944", "fields": {"nom_de_la_commune": "MARMAGNE", "libell_d_acheminement": "MARMAGNE", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21389"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f22cdfa0b99f7a93b07dddca0c2c6e4d1320162e", "fields": {"nom_de_la_commune": "MARTROIS", "libell_d_acheminement": "MARTROIS", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21392"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2b574797cbcbd3f8fbd52c0e8d2ecf6e26aa8a5", "fields": {"nom_de_la_commune": "MASSINGY", "libell_d_acheminement": "MASSINGY", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21393"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55d98fe30dec8d6fcedaccc8b5590f9b322aab41", "fields": {"nom_de_la_commune": "MEILLY SUR ROUVRES", "libell_d_acheminement": "MEILLY SUR ROUVRES", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21399"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3827128e17edb14ecb2dcd1d0f0c674ed3a0ea76", "fields": {"code_postal": "21380", "code_commune_insee": "21408", "libell_d_acheminement": "MESSIGNY ET VANTOUX", "ligne_5": "VANTOUX LES DIJON", "nom_de_la_commune": "MESSIGNY ET VANTOUX", "coordonnees_gps": [47.4355367845, 5.01535981996]}, "geometry": {"type": "Point", "coordinates": [5.01535981996, 47.4355367845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dea8e86efea93eda2c040581872b55f7d2b19eb9", "fields": {"nom_de_la_commune": "MEUILLEY", "libell_d_acheminement": "MEUILLEY", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21409"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab304ac4ea029d08312d9b6de84e9d53454539c9", "fields": {"nom_de_la_commune": "MISSERY", "libell_d_acheminement": "MISSERY", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21417"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a52679c6a75ac1506beec78534369579b8f8d86", "fields": {"nom_de_la_commune": "MOLPHEY", "libell_d_acheminement": "MOLPHEY", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21422"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1efc9cba3add820814ae36da9f98aa2ceadfcc2e", "fields": {"nom_de_la_commune": "MONTBARD", "libell_d_acheminement": "MONTBARD", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21425"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0708c75e0d8413aceee52f401bcd24e73660231d", "fields": {"nom_de_la_commune": "MONTBERTHAULT", "libell_d_acheminement": "MONTBERTHAULT", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21426"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab926e20b8732260b603a7a9a7cd754d973d7532", "fields": {"nom_de_la_commune": "MONTIGNY MONTFORT", "libell_d_acheminement": "MONTIGNY MONTFORT", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21429"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec74c78c9e060cf667ac3e3cd2733fc182175d2", "fields": {"nom_de_la_commune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE", "libell_d_acheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", "code_postal": "21610", "coordonnees_gps": [47.5437721668, 5.38811246138], "code_commune_insee": "21433"}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f3861e1ca60e8a1bc5f306952f8b6869a35ac89", "fields": {"code_postal": "21610", "code_commune_insee": "21433", "libell_d_acheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", "ligne_5": "LA VILLENEUVE SUR VINGEANNE", "nom_de_la_commune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE", "coordonnees_gps": [47.5437721668, 5.38811246138]}, "geometry": {"type": "Point", "coordinates": [5.38811246138, 47.5437721668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c5b23ec04ebd0ac82ff72c48a0a18dee3daa04", "fields": {"nom_de_la_commune": "MONTOILLOT", "libell_d_acheminement": "MONTOILLOT", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21439"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9121e9d7b2bf3cba75034e12c27702d87bc4029", "fields": {"nom_de_la_commune": "MONTOT", "libell_d_acheminement": "MONTOT", "code_postal": "21170", "coordonnees_gps": [47.1012770585, 5.25971305248], "code_commune_insee": "21440"}, "geometry": {"type": "Point", "coordinates": [5.25971305248, 47.1012770585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9d3056a8b42e843cda2ac716da1e051ec66e920", "fields": {"nom_de_la_commune": "MOREY ST DENIS", "libell_d_acheminement": "MOREY ST DENIS", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21442"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b8f9cfe0a6300d4894c3fb04b2c56d3983c4560", "fields": {"nom_de_la_commune": "NOD SUR SEINE", "libell_d_acheminement": "NOD SUR SEINE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21455"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11eadbd0cb3c2e09d99a3ea9cb89d66ba8cc1d03", "fields": {"nom_de_la_commune": "NOGENT LES MONTBARD", "libell_d_acheminement": "NOGENT LES MONTBARD", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21456"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1396b314b63773b64705458b3a5f282239011b29", "fields": {"nom_de_la_commune": "NUITS ST GEORGES", "libell_d_acheminement": "NUITS ST GEORGES", "code_postal": "21700", "coordonnees_gps": [47.1116693022, 4.97977918311], "code_commune_insee": "21464"}, "geometry": {"type": "Point", "coordinates": [4.97977918311, 47.1116693022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b900ff7841f40a8320dd902bd1c2e84bed914a4", "fields": {"nom_de_la_commune": "PELLEREY", "libell_d_acheminement": "PELLEREY", "code_postal": "21440", "coordonnees_gps": [47.484174596, 4.80545736594], "code_commune_insee": "21479"}, "geometry": {"type": "Point", "coordinates": [4.80545736594, 47.484174596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2e93188641b3f99e60b8a417c3926915cedece", "fields": {"nom_de_la_commune": "PERNAND VERGELESSES", "libell_d_acheminement": "PERNAND VERGELESSES", "code_postal": "21420", "coordonnees_gps": [47.0968171399, 4.80502762881], "code_commune_insee": "21480"}, "geometry": {"type": "Point", "coordinates": [4.80502762881, 47.0968171399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "389f04094068beb7c1b4685a16ea8ac1c3626bcb", "fields": {"nom_de_la_commune": "PERRIGNY LES DIJON", "libell_d_acheminement": "PERRIGNY LES DIJON", "code_postal": "21160", "coordonnees_gps": [47.2786553108, 4.96453888127], "code_commune_insee": "21481"}, "geometry": {"type": "Point", "coordinates": [4.96453888127, 47.2786553108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0075526884e01e9ec18603612e1a726b90aeec4", "fields": {"nom_de_la_commune": "PICHANGES", "libell_d_acheminement": "PICHANGES", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21483"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53f2f74e1ad1adfce2b115860218960403230cf4", "fields": {"nom_de_la_commune": "PRENOIS", "libell_d_acheminement": "PRENOIS", "code_postal": "21370", "coordonnees_gps": [47.3545097127, 4.89318102918], "code_commune_insee": "21508"}, "geometry": {"type": "Point", "coordinates": [4.89318102918, 47.3545097127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79cc5e192b6e81bb556000093669582ef6f1901", "fields": {"nom_de_la_commune": "QUEMIGNY POISOT", "libell_d_acheminement": "QUEMIGNY POISOT", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21513"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7373d8130deea4b927f3e605ceaff4022508ad25", "fields": {"nom_de_la_commune": "QUETIGNY", "libell_d_acheminement": "QUETIGNY", "code_postal": "21800", "coordonnees_gps": [47.2974794618, 5.12130493995], "code_commune_insee": "21515"}, "geometry": {"type": "Point", "coordinates": [5.12130493995, 47.2974794618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "662b35793a69761f6d6589d9178d2f19bfec0219", "fields": {"nom_de_la_commune": "RIEL LES EAUX", "libell_d_acheminement": "RIEL LES EAUX", "code_postal": "21570", "coordonnees_gps": [47.9722434237, 4.63863087175], "code_commune_insee": "21524"}, "geometry": {"type": "Point", "coordinates": [4.63863087175, 47.9722434237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb58c72fa60823bd030b17193a6752e8f52da6f8", "fields": {"nom_de_la_commune": "LA ROCHEPOT", "libell_d_acheminement": "LA ROCHEPOT", "code_postal": "21340", "coordonnees_gps": [46.9889799591, 4.61638229862], "code_commune_insee": "21527"}, "geometry": {"type": "Point", "coordinates": [4.61638229862, 46.9889799591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b33c4e412e9f22d535c4e9f6b05c2117627393", "fields": {"nom_de_la_commune": "LA ROCHE VANNEAU", "libell_d_acheminement": "LA ROCHE VANNEAU", "code_postal": "21150", "coordonnees_gps": [47.5309324126, 4.52615532844], "code_commune_insee": "21528"}, "geometry": {"type": "Point", "coordinates": [4.52615532844, 47.5309324126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "218fc995d3db7264193ad727b3d8f465cf6fdfe3", "fields": {"nom_de_la_commune": "ROILLY", "libell_d_acheminement": "ROILLY", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21529"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8e43a86614a6ddc93569642af97a0ec6b19fead", "fields": {"nom_de_la_commune": "ROUGEMONT", "libell_d_acheminement": "ROUGEMONT", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21530"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fad73ddc07d0a68dbbef998cba1c65f0e0baf87", "fields": {"nom_de_la_commune": "ROUVRES EN PLAINE", "libell_d_acheminement": "ROUVRES EN PLAINE", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21532"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb35a991ae7fe8ad839e686bfafd385b20c934a7", "fields": {"nom_de_la_commune": "ST ANTHOT", "libell_d_acheminement": "ST ANTHOT", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21539"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd5ba3fd7d0230aea433e1b7b7f32d088bde5830", "fields": {"code_postal": "25160", "code_commune_insee": "25320", "libell_d_acheminement": "LABERGEMENT STE MARIE", "ligne_5": "GRANGES STE MARIE", "nom_de_la_commune": "LABERGEMENT STE MARIE", "coordonnees_gps": [46.8056943645, 6.28142603625]}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e0a5a057bee627880913bb2b4cc721902b973a3", "fields": {"nom_de_la_commune": "LANTENNE VERTIERE", "libell_d_acheminement": "LANTENNE VERTIERE", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25326"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "514c33e1af0b19091a6b94d40fea1e365eb85248", "fields": {"nom_de_la_commune": "LAVANS QUINGEY", "libell_d_acheminement": "LAVANS QUINGEY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25330"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cca853ef26d387ada25e9642d3a0d5cbe374a265", "fields": {"nom_de_la_commune": "LAVERNAY", "libell_d_acheminement": "LAVERNAY", "code_postal": "25170", "coordonnees_gps": [47.2664378485, 5.83042087003], "code_commune_insee": "25332"}, "geometry": {"type": "Point", "coordinates": [5.83042087003, 47.2664378485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e92db5e04755ae65485b3a64fb9d37b0794527d5", "fields": {"nom_de_la_commune": "LA LONGEVILLE", "libell_d_acheminement": "LA LONGEVILLE", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25347"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc9363ae3eb04a0d0db99a4565fcb91e18c84e4", "fields": {"nom_de_la_commune": "LORAY", "libell_d_acheminement": "LORAY", "code_postal": "25390", "coordonnees_gps": [47.1343270529, 6.53620847764], "code_commune_insee": "25349"}, "geometry": {"type": "Point", "coordinates": [6.53620847764, 47.1343270529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2707f55f6862aab58f8dfdd7a5e65d476810bcb3", "fields": {"nom_de_la_commune": "MAICHE", "libell_d_acheminement": "MAICHE", "code_postal": "25120", "coordonnees_gps": [47.2517789005, 6.78722407898], "code_commune_insee": "25356"}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fce786ddc7eb9be1bb2021e090f28083fd44361a", "fields": {"nom_de_la_commune": "MAMIROLLE", "libell_d_acheminement": "MAMIROLLE", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25364"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1cd08dc03fb7e362e299d721e84046a42cad161", "fields": {"nom_de_la_commune": "MANCENANS", "libell_d_acheminement": "MANCENANS", "code_postal": "25250", "coordonnees_gps": [47.4567947325, 6.57616290514], "code_commune_insee": "25365"}, "geometry": {"type": "Point", "coordinates": [6.57616290514, 47.4567947325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d29da113a92bfa48fb2d12e9b0326cd06d6f8fc2", "fields": {"nom_de_la_commune": "LE MEMONT", "libell_d_acheminement": "LE MEMONT", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25373"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a020835e2544ce53c1ed3bc46ec07cfb4f1529fd", "fields": {"nom_de_la_commune": "MESANDANS", "libell_d_acheminement": "MESANDANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25377"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5915d9808fbcb9beccb978570904b9717fef9aea", "fields": {"nom_de_la_commune": "MESLIERES", "libell_d_acheminement": "MESLIERES", "code_postal": "25310", "coordonnees_gps": [47.402768368, 6.87562810437], "code_commune_insee": "25378"}, "geometry": {"type": "Point", "coordinates": [6.87562810437, 47.402768368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d4d18e74cf894e220f6d3e38f0968c9f1986bbb", "fields": {"nom_de_la_commune": "MONTBENOIT", "libell_d_acheminement": "MONTBENOIT", "code_postal": "25650", "coordonnees_gps": [47.0093520385, 6.45599520386], "code_commune_insee": "25390"}, "geometry": {"type": "Point", "coordinates": [6.45599520386, 47.0093520385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "959df8a7b33a8d4098757ce2d4548e9f2955bf8a", "fields": {"nom_de_la_commune": "MONT DE VOUGNEY", "libell_d_acheminement": "MONT DE VOUGNEY", "code_postal": "25120", "coordonnees_gps": [47.2517789005, 6.78722407898], "code_commune_insee": "25392"}, "geometry": {"type": "Point", "coordinates": [6.78722407898, 47.2517789005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71b24783b7e312221aecd48461a55834d42e8997", "fields": {"nom_de_la_commune": "MONTGESOYE", "libell_d_acheminement": "MONTGESOYE", "code_postal": "25111", "coordonnees_gps": [47.0882417813, 6.19256236303], "code_commune_insee": "25400"}, "geometry": {"type": "Point", "coordinates": [6.19256236303, 47.0882417813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed2758f18c06c6f92bbe728b0f4cb33651e8df2", "fields": {"nom_de_la_commune": "MONTMAHOUX", "libell_d_acheminement": "MONTMAHOUX", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25404"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73eda3086f198c74ffb4a8a4390c7e49a48aafe", "fields": {"nom_de_la_commune": "MONTPERREUX", "libell_d_acheminement": "MONTPERREUX", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25405"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e59b23137132e8290763307ed007ff4665e240a3", "fields": {"nom_de_la_commune": "MONTUSSAINT", "libell_d_acheminement": "MONTUSSAINT", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25408"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc69013ba647cf85e7fd77acc52e65a67d121fd9", "fields": {"nom_de_la_commune": "MOUTHIER HAUTE PIERRE", "libell_d_acheminement": "MOUTHIER HAUTE PIERRE", "code_postal": "25920", "coordonnees_gps": [47.0343690776, 6.27573267444], "code_commune_insee": "25415"}, "geometry": {"type": "Point", "coordinates": [6.27573267444, 47.0343690776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ce59f78feacec9802fa58198fcb1cd39d1a98c6", "fields": {"nom_de_la_commune": "NANS SOUS STE ANNE", "libell_d_acheminement": "NANS SOUS STE ANNE", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25420"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e79deaa969b0b9657e4bab3cf5f484e6ff022666", "fields": {"nom_de_la_commune": "NOIREFONTAINE", "libell_d_acheminement": "NOIREFONTAINE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25426"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f41d1e1b6290fe67250f55bc93b55583d1ad8c4", "fields": {"nom_de_la_commune": "NOMMAY", "libell_d_acheminement": "NOMMAY", "code_postal": "25600", "coordonnees_gps": [47.5315026095, 6.85354062275], "code_commune_insee": "25428"}, "geometry": {"type": "Point", "coordinates": [6.85354062275, 47.5315026095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f384a5a7e39c9404fbfe00a5d298285f89e7cade", "fields": {"nom_de_la_commune": "OLLANS", "libell_d_acheminement": "OLLANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25430"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e81d2cecea5ca9861ddeb309cc524decb4fd254f", "fields": {"nom_de_la_commune": "ORSANS", "libell_d_acheminement": "ORSANS", "code_postal": "25530", "coordonnees_gps": [47.2220639162, 6.40850731631], "code_commune_insee": "25435"}, "geometry": {"type": "Point", "coordinates": [6.40850731631, 47.2220639162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1bb4ce3dbd6c042d9660ae7338bce801165d929", "fields": {"nom_de_la_commune": "PAROY", "libell_d_acheminement": "PAROY", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25445"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea1f5e39a10050b9615e509644202a5615a6d454", "fields": {"nom_de_la_commune": "PIERREFONTAINE LES VARANS", "libell_d_acheminement": "PIERREFONTAINE LES VARANS", "code_postal": "25510", "coordonnees_gps": [47.2224794337, 6.52128950586], "code_commune_insee": "25453"}, "geometry": {"type": "Point", "coordinates": [6.52128950586, 47.2224794337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336bf19fcd51aaf30c9be2d8d4aa673492ed026b", "fields": {"nom_de_la_commune": "POMPIERRE SUR DOUBS", "libell_d_acheminement": "POMPIERRE SUR DOUBS", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25461"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea2509250c881a2ef1f39ce7522a70e5a411da64", "fields": {"nom_de_la_commune": "PONTARLIER", "libell_d_acheminement": "PONTARLIER", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25462"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5aa7998e19cb68f08d66e961a390b1e57591219", "fields": {"nom_de_la_commune": "PROVENCHERE", "libell_d_acheminement": "PROVENCHERE", "code_postal": "25380", "coordonnees_gps": [47.2514656671, 6.66193856736], "code_commune_insee": "25471"}, "geometry": {"type": "Point", "coordinates": [6.66193856736, 47.2514656671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1218c370af4152a9e3f081df25c9b46af8b13b5a", "fields": {"nom_de_la_commune": "RAHON", "libell_d_acheminement": "RAHON", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25476"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05ed282c2f068d7f434527da3bdd490f0814a9b8", "fields": {"nom_de_la_commune": "RENNES SUR LOUE", "libell_d_acheminement": "RENNES SUR LOUE", "code_postal": "25440", "coordonnees_gps": [47.0721583091, 5.8981664934], "code_commune_insee": "25488"}, "geometry": {"type": "Point", "coordinates": [5.8981664934, 47.0721583091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f71bc4b4316b8c0f882c4a9e1d28a393504e25d0", "fields": {"nom_de_la_commune": "ROCHE LEZ BEAUPRE", "libell_d_acheminement": "ROCHE LEZ BEAUPRE", "code_postal": "25220", "coordonnees_gps": [47.2829032238, 6.12157333697], "code_commune_insee": "25495"}, "geometry": {"type": "Point", "coordinates": [6.12157333697, 47.2829032238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9081c5b1fb4ba6966d51489b2c35ea4432e3dce", "fields": {"nom_de_la_commune": "ROMAIN", "libell_d_acheminement": "ROMAIN", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25499"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845e0ee63125fa32b19b83287eca933fb65ad5ce", "fields": {"nom_de_la_commune": "ROSIERES SUR BARBECHE", "libell_d_acheminement": "ROSIERES SUR BARBECHE", "code_postal": "25190", "coordonnees_gps": [47.3299526188, 6.81205544169], "code_commune_insee": "25503"}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffa9b034eb44b6694f5fa1af93130b7b525ca5f0", "fields": {"code_postal": "25680", "code_commune_insee": "25505", "libell_d_acheminement": "ROUGEMONT", "ligne_5": "CHAZELOT", "nom_de_la_commune": "ROUGEMONT", "coordonnees_gps": [47.4550311949, 6.34612081479]}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f93e720963d53d8b9150ce43651e6dc9e8200398", "fields": {"nom_de_la_commune": "LE RUSSEY", "libell_d_acheminement": "LE RUSSEY", "code_postal": "25210", "coordonnees_gps": [47.1647409101, 6.70896109845], "code_commune_insee": "25512"}, "geometry": {"type": "Point", "coordinates": [6.70896109845, 47.1647409101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6efcab02e1526e98417215a364a0f1a1ce6f9b6b", "fields": {"nom_de_la_commune": "STE ANNE", "libell_d_acheminement": "STE ANNE", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25513"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae50a21e66057ce15b4e3a43a845687405d836df", "fields": {"nom_de_la_commune": "ST ANTOINE", "libell_d_acheminement": "ST ANTOINE", "code_postal": "25370", "coordonnees_gps": [46.7616434428, 6.35855038214], "code_commune_insee": "25514"}, "geometry": {"type": "Point", "coordinates": [6.35855038214, 46.7616434428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da9364ca784a88643328c6f2f797dc2af8dc5ea7", "fields": {"nom_de_la_commune": "ST GEORGES ARMONT", "libell_d_acheminement": "ST GEORGES ARMONT", "code_postal": "25340", "coordonnees_gps": [47.4070964516, 6.49278525821], "code_commune_insee": "25516"}, "geometry": {"type": "Point", "coordinates": [6.49278525821, 47.4070964516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3088fa6cc84f2dd799a56d25735aa20ac3cbf055", "fields": {"nom_de_la_commune": "ST GORGON MAIN", "libell_d_acheminement": "ST GORGON MAIN", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25517"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90f730ee2519b09a7ec7dcc3ed6326fe56e9eeec", "fields": {"code_postal": "25190", "code_commune_insee": "25519", "libell_d_acheminement": "ST HIPPOLYTE", "ligne_5": "MOUILLEVILLERS", "nom_de_la_commune": "ST HIPPOLYTE", "coordonnees_gps": [47.3299526188, 6.81205544169]}, "geometry": {"type": "Point", "coordinates": [6.81205544169, 47.3299526188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8e5c0f19f26359b11bc43bde65b93eca0a19b7", "fields": {"nom_de_la_commune": "ST POINT LAC", "libell_d_acheminement": "ST POINT LAC", "code_postal": "25160", "coordonnees_gps": [46.8056943645, 6.28142603625], "code_commune_insee": "25525"}, "geometry": {"type": "Point", "coordinates": [6.28142603625, 46.8056943645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2322734a58667970562f227a83802afe68163748", "fields": {"code_postal": "25430", "code_commune_insee": "25529", "libell_d_acheminement": "SANCEY", "ligne_5": "SANCEY LE LONG", "nom_de_la_commune": "SANCEY", "coordonnees_gps": [47.3146994609, 6.55846338064]}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674780445f2a16cbbac628e5d5e9541c4ba5a766", "fields": {"nom_de_la_commune": "SARAZ", "libell_d_acheminement": "SARAZ", "code_postal": "25330", "coordonnees_gps": [47.0294541279, 6.08005639292], "code_commune_insee": "25533"}, "geometry": {"type": "Point", "coordinates": [6.08005639292, 47.0294541279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cdc9664ee2b52270f511c9e6819fabbba410822", "fields": {"nom_de_la_commune": "SOMBACOUR", "libell_d_acheminement": "SOMBACOUR", "code_postal": "25520", "coordonnees_gps": [47.0025891265, 6.31005239013], "code_commune_insee": "25549"}, "geometry": {"type": "Point", "coordinates": [6.31005239013, 47.0025891265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca9382fcbcf8d64faeda26fcee044868b81b314", "fields": {"nom_de_la_commune": "TARCENAY", "libell_d_acheminement": "TARCENAY", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25558"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891a1784b7d938264b86c543f84eacd3ab46a8cf", "fields": {"nom_de_la_commune": "TORPES", "libell_d_acheminement": "TORPES", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25564"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2cbe7f159c921676f8b7799db58ef614dbdd58", "fields": {"nom_de_la_commune": "TRESSANDANS", "libell_d_acheminement": "TRESSANDANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25570"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a9decdcecc6c154e90024700d7fa98e4d1d008e", "fields": {"nom_de_la_commune": "TROUVANS", "libell_d_acheminement": "TROUVANS", "code_postal": "25680", "coordonnees_gps": [47.4550311949, 6.34612081479], "code_commune_insee": "25572"}, "geometry": {"type": "Point", "coordinates": [6.34612081479, 47.4550311949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54a31db24396c26a23407b3c13c1af1c2d7d2142", "fields": {"nom_de_la_commune": "VALENTIGNEY", "libell_d_acheminement": "VALENTIGNEY", "code_postal": "25700", "coordonnees_gps": [47.450787456, 6.79182503855], "code_commune_insee": "25580"}, "geometry": {"type": "Point", "coordinates": [6.79182503855, 47.450787456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22a3c1bac94ddc0c3e75ec6e1ff3fb9025f9d1d2", "fields": {"nom_de_la_commune": "VELESMES ESSARTS", "libell_d_acheminement": "VELESMES ESSARTS", "code_postal": "25410", "coordonnees_gps": [47.1860285519, 5.82335931135], "code_commune_insee": "25594"}, "geometry": {"type": "Point", "coordinates": [5.82335931135, 47.1860285519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f35cf1683a8b14f48c9ace5f203b37ccc44cc325", "fields": {"nom_de_la_commune": "VELLEVANS", "libell_d_acheminement": "VELLEVANS", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25597"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f66851b183e5caf19260de225edc72d1573b384f", "fields": {"nom_de_la_commune": "VENISE", "libell_d_acheminement": "VENISE", "code_postal": "25870", "coordonnees_gps": [47.3323567525, 6.03683480624], "code_commune_insee": "25598"}, "geometry": {"type": "Point", "coordinates": [6.03683480624, 47.3323567525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2db72361e41a750081dd707e76f9b581ca8179", "fields": {"nom_de_la_commune": "VENNANS", "libell_d_acheminement": "VENNANS", "code_postal": "25640", "coordonnees_gps": [47.3580396548, 6.210623361], "code_commune_insee": "25599"}, "geometry": {"type": "Point", "coordinates": [6.210623361, 47.3580396548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91686654846b9f45b439df830158a870e74f27ff", "fields": {"nom_de_la_commune": "VERNOIS LES BELVOIR", "libell_d_acheminement": "VERNOIS LES BELVOIR", "code_postal": "25430", "coordonnees_gps": [47.3146994609, 6.55846338064], "code_commune_insee": "25607"}, "geometry": {"type": "Point", "coordinates": [6.55846338064, 47.3146994609]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a79ccc93710872045fdb4e5b7c33c019174d6fc", "fields": {"nom_de_la_commune": "VERRIERES DE JOUX", "libell_d_acheminement": "VERRIERES DE JOUX", "code_postal": "25300", "coordonnees_gps": [46.9029774848, 6.36411018856], "code_commune_insee": "25609"}, "geometry": {"type": "Point", "coordinates": [6.36411018856, 46.9029774848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5b2e4923d59879511be7194dedb9f83618c0edb", "fields": {"nom_de_la_commune": "VIEUX CHARMONT", "libell_d_acheminement": "VIEUX CHARMONT", "code_postal": "25600", "coordonnees_gps": [47.5315026095, 6.85354062275], "code_commune_insee": "25614"}, "geometry": {"type": "Point", "coordinates": [6.85354062275, 47.5315026095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14db0d4f69d36551e282fc45090f118661467405", "fields": {"nom_de_la_commune": "VILLENEUVE D AMONT", "libell_d_acheminement": "VILLENEUVE D AMONT", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25621"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa03540424cdedfc8d166d6b5dcdb03eec7fc65", "fields": {"nom_de_la_commune": "VILLERS SOUS CHALAMONT", "libell_d_acheminement": "VILLERS SOUS CHALAMONT", "code_postal": "25270", "coordonnees_gps": [46.9453479853, 6.08965158553], "code_commune_insee": "25627"}, "geometry": {"type": "Point", "coordinates": [6.08965158553, 46.9453479853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7919f1186f0ac8495694733d142fa83979a204df", "fields": {"nom_de_la_commune": "VILLERS SOUS MONTROND", "libell_d_acheminement": "VILLERS SOUS MONTROND", "code_postal": "25620", "coordonnees_gps": [47.1496172493, 6.14926775628], "code_commune_insee": "25628"}, "geometry": {"type": "Point", "coordinates": [6.14926775628, 47.1496172493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb604f4988bd7c68cbb611bcd75c1ac843c3a113", "fields": {"nom_de_la_commune": "VORGES LES PINS", "libell_d_acheminement": "VORGES LES PINS", "code_postal": "25320", "coordonnees_gps": [47.1648681759, 5.89642830353], "code_commune_insee": "25631"}, "geometry": {"type": "Point", "coordinates": [5.89642830353, 47.1648681759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4d034604e9ee0d9767ac8b97957e2b49c994f2e", "fields": {"nom_de_la_commune": "ALLEX", "libell_d_acheminement": "ALLEX", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26006"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6fe62f1f7c542dd473b2317d0de4d8448d15b5", "fields": {"nom_de_la_commune": "AUCELON", "libell_d_acheminement": "AUCELON", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26017"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "995ad9b72b796c2a76998c3d95d4e292005f6e28", "fields": {"nom_de_la_commune": "AULAN", "libell_d_acheminement": "AULAN", "code_postal": "26570", "coordonnees_gps": [44.1743354505, 5.46650063945], "code_commune_insee": "26018"}, "geometry": {"type": "Point", "coordinates": [5.46650063945, 44.1743354505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ce5895118369d4cadacc5c98b11dc9c1407d19", "fields": {"nom_de_la_commune": "AUTICHAMP", "libell_d_acheminement": "AUTICHAMP", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26021"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0c1feccdaea925b4812966f9f17e1b16576e82d", "fields": {"nom_de_la_commune": "LA BATIE ROLLAND", "libell_d_acheminement": "LA BATIE ROLLAND", "code_postal": "26160", "coordonnees_gps": [44.5516764079, 4.94649446383], "code_commune_insee": "26031"}, "geometry": {"type": "Point", "coordinates": [4.94649446383, 44.5516764079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd04fe2270c28f793981bf4139c7de9f67c0f0ec", "fields": {"nom_de_la_commune": "BEAUMONT MONTEUX", "libell_d_acheminement": "BEAUMONT MONTEUX", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26038"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13df3332ae07a049ea10a9dda374fc232ca29c40", "fields": {"code_postal": "26410", "code_commune_insee": "26055", "libell_d_acheminement": "BOULC", "ligne_5": "BONNEVAL EN DIOIS", "nom_de_la_commune": "BOULC", "coordonnees_gps": [44.6917619163, 5.54713177432]}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb8141a7af519e218e48396ae0e4b04e53eff79", "fields": {"nom_de_la_commune": "CHALANCON", "libell_d_acheminement": "CHALANCON", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26067"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeaea14712ea13ccaf9b8d9aabe650e7e2686911", "fields": {"nom_de_la_commune": "LE CHALON", "libell_d_acheminement": "LE CHALON", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26068"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f4e3d69ccf815b56aae1902a4c92b5b2e031e8", "fields": {"nom_de_la_commune": "CHAMALOC", "libell_d_acheminement": "CHAMALOC", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26069"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42a15e9e257c8c51babf5eaa618632c2c630d223", "fields": {"nom_de_la_commune": "CHANOS CURSON", "libell_d_acheminement": "CHANOS CURSON", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26071"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9133a43eba26140b2373444d142766fadba169e1", "fields": {"nom_de_la_commune": "CHARPEY", "libell_d_acheminement": "CHARPEY", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26079"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7765fdd5cea3229f0aaa0fea2809b2ab48d104", "fields": {"nom_de_la_commune": "CHASTEL ARNAUD", "libell_d_acheminement": "CHASTEL ARNAUD", "code_postal": "26340", "coordonnees_gps": [44.6445170035, 5.26348118536], "code_commune_insee": "26080"}, "geometry": {"type": "Point", "coordinates": [5.26348118536, 44.6445170035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840861b0b939c14f5043b472a5d8ec8495010e31", "fields": {"nom_de_la_commune": "CHATEAUNEUF DU RHONE", "libell_d_acheminement": "CHATEAUNEUF DU RHONE", "code_postal": "26780", "coordonnees_gps": [44.4972299108, 4.7672638827], "code_commune_insee": "26085"}, "geometry": {"type": "Point", "coordinates": [4.7672638827, 44.4972299108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39eed859bc87f9dab26eaf3f86e44778fc47759e", "fields": {"nom_de_la_commune": "CHATUZANGE LE GOUBET", "libell_d_acheminement": "CHATUZANGE LE GOUBET", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26088"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "760c9f2656856d90017309bbf11f3fdfb7608de0", "fields": {"code_postal": "26300", "code_commune_insee": "26088", "libell_d_acheminement": "CHATUZANGE LE GOUBET", "ligne_5": "PIZANCON", "nom_de_la_commune": "CHATUZANGE LE GOUBET", "coordonnees_gps": [44.9876949669, 5.0803109859]}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc322c245e09af1974142383bef6c16ba36059d4", "fields": {"code_postal": "26510", "code_commune_insee": "26091", "libell_d_acheminement": "CHAUVAC LAUX MONTAUX", "ligne_5": "LAUX MONTAUX", "nom_de_la_commune": "CHAUVAC LAUX MONTAUX", "coordonnees_gps": [44.3964498388, 5.38709638398]}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bcb4f02e551676524468e258fb663b7d8094443", "fields": {"nom_de_la_commune": "COMPS", "libell_d_acheminement": "COMPS", "code_postal": "26220", "coordonnees_gps": [44.5059252728, 5.12194208681], "code_commune_insee": "26101"}, "geometry": {"type": "Point", "coordinates": [5.12194208681, 44.5059252728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea0d9886913da0a82671598c253a76e484f8911", "fields": {"nom_de_la_commune": "CROZES HERMITAGE", "libell_d_acheminement": "CROZES HERMITAGE", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26110"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4518dafdf62433222030a841670bc492ccfe0c7b", "fields": {"nom_de_la_commune": "ECHEVIS", "libell_d_acheminement": "ECHEVIS", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26117"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0444dc4ba21083ae3ad1f5cf66f77a3c1720bdb3", "fields": {"nom_de_la_commune": "EYMEUX", "libell_d_acheminement": "EYMEUX", "code_postal": "26730", "coordonnees_gps": [45.0482944782, 5.20163673449], "code_commune_insee": "26129"}, "geometry": {"type": "Point", "coordinates": [5.20163673449, 45.0482944782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eb9cf78e70b587b56bdaf0e6abd7856030fe3da", "fields": {"nom_de_la_commune": "FERRASSIERES", "libell_d_acheminement": "FERRASSIERES", "code_postal": "26570", "coordonnees_gps": [44.1743354505, 5.46650063945], "code_commune_insee": "26135"}, "geometry": {"type": "Point", "coordinates": [5.46650063945, 44.1743354505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dadb5e501bcba33c6bda68a79ff009c8cd5a6059", "fields": {"code_postal": "26310", "code_commune_insee": "26136", "libell_d_acheminement": "VAL MARAVEL", "ligne_5": "LA BATIE CREMEZIN", "nom_de_la_commune": "VAL MARAVEL", "coordonnees_gps": [44.5689961906, 5.50488176905]}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77dff9aaeff191793eb55d674ab76dd69b55157", "fields": {"nom_de_la_commune": "GLANDAGE", "libell_d_acheminement": "GLANDAGE", "code_postal": "26410", "coordonnees_gps": [44.6917619163, 5.54713177432], "code_commune_insee": "26142"}, "geometry": {"type": "Point", "coordinates": [5.54713177432, 44.6917619163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1db599af5e648980d97ce4cf1a04b2548de9eee7", "fields": {"nom_de_la_commune": "LE GRAND SERRE", "libell_d_acheminement": "LE GRAND SERRE", "code_postal": "26530", "coordonnees_gps": [45.2627729683, 5.1022578725], "code_commune_insee": "26143"}, "geometry": {"type": "Point", "coordinates": [5.1022578725, 45.2627729683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfd8276de2ffabe392d0cb7130e8c9c332fca51", "fields": {"nom_de_la_commune": "GRIGNAN", "libell_d_acheminement": "GRIGNAN", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26146"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59f0dd44f6ded400d2164aa20625e9b14d81c690", "fields": {"nom_de_la_commune": "GUMIANE", "libell_d_acheminement": "GUMIANE", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26147"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c17f700f3f96d77a94849842f16edd12ca42509d", "fields": {"nom_de_la_commune": "LACHAU", "libell_d_acheminement": "LACHAU", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26154"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42cca761eb59582a1fe5ff2f45a5fb12b6da4cfa", "fields": {"nom_de_la_commune": "LEMPS", "libell_d_acheminement": "LEMPS", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26161"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d17512628fd5fdc97cd557f637290fe31655397a", "fields": {"nom_de_la_commune": "LEONCEL", "libell_d_acheminement": "LEONCEL", "code_postal": "26190", "coordonnees_gps": [44.9669941445, 5.28273235477], "code_commune_insee": "26163"}, "geometry": {"type": "Point", "coordinates": [5.28273235477, 44.9669941445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e286376fbe6a89af68adc978e7407d9cb7053a76", "fields": {"nom_de_la_commune": "LESCHES EN DIOIS", "libell_d_acheminement": "LESCHES EN DIOIS", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26164"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd8e68c83ecc192f3cabf9061ba7b54b390375eb", "fields": {"nom_de_la_commune": "LIVRON SUR DROME", "libell_d_acheminement": "LIVRON SUR DROME", "code_postal": "26250", "coordonnees_gps": [44.7874591799, 4.83851475178], "code_commune_insee": "26165"}, "geometry": {"type": "Point", "coordinates": [4.83851475178, 44.7874591799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a021f7c521d4d02b9b5ef1427954329e3fb38c", "fields": {"nom_de_la_commune": "MANTHES", "libell_d_acheminement": "MANTHES", "code_postal": "26210", "coordonnees_gps": [45.2969498397, 4.98492206327], "code_commune_insee": "26172"}, "geometry": {"type": "Point", "coordinates": [4.98492206327, 45.2969498397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0713d6e469a36f5fd056cbc082eb6df29872e748", "fields": {"nom_de_la_commune": "MARCHES", "libell_d_acheminement": "MARCHES", "code_postal": "26300", "coordonnees_gps": [44.9876949669, 5.0803109859], "code_commune_insee": "26173"}, "geometry": {"type": "Point", "coordinates": [5.0803109859, 44.9876949669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c9397e6db886bbc9dcad74a4a0253a11a478e9", "fields": {"nom_de_la_commune": "MARGES", "libell_d_acheminement": "MARGES", "code_postal": "26260", "coordonnees_gps": [45.1244840575, 4.98179124848], "code_commune_insee": "26174"}, "geometry": {"type": "Point", "coordinates": [4.98179124848, 45.1244840575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8611d7dae89a687db941916be92077785b3bb5da", "fields": {"nom_de_la_commune": "MARSANNE", "libell_d_acheminement": "MARSANNE", "code_postal": "26740", "coordonnees_gps": [44.6175061627, 4.82925969316], "code_commune_insee": "26176"}, "geometry": {"type": "Point", "coordinates": [4.82925969316, 44.6175061627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54363b869dc692faf9073188e886ebb4ff8f7ef", "fields": {"nom_de_la_commune": "MIRABEL AUX BARONNIES", "libell_d_acheminement": "MIRABEL AUX BARONNIES", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26182"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23c03f0360c6686ff8fcf98e9e3ea02cc00318c3", "fields": {"nom_de_la_commune": "MISCON", "libell_d_acheminement": "MISCON", "code_postal": "26310", "coordonnees_gps": [44.5689961906, 5.50488176905], "code_commune_insee": "26186"}, "geometry": {"type": "Point", "coordinates": [5.50488176905, 44.5689961906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417e1aebbebac99fddd85deec36154458f0ab110", "fields": {"nom_de_la_commune": "MONTELEGER", "libell_d_acheminement": "MONTELEGER", "code_postal": "26760", "coordonnees_gps": [44.8676636246, 4.93984005309], "code_commune_insee": "26196"}, "geometry": {"type": "Point", "coordinates": [4.93984005309, 44.8676636246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348dfdf70276ac1548e1168601a40faf71025cc8", "fields": {"nom_de_la_commune": "DUNKERQUE", "libell_d_acheminement": "DUNKERQUE", "code_postal": "59140", "coordonnees_gps": [51.0306940868, 2.33760634], "code_commune_insee": "59183"}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bbef5c4333ae9c7cab669653120a7989edd92ca", "fields": {"nom_de_la_commune": "DUNKERQUE", "libell_d_acheminement": "DUNKERQUE", "code_postal": "59640", "coordonnees_gps": [51.0306940868, 2.33760634], "code_commune_insee": "59183"}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb1ca44401eae09b191bfa406d1b3a6a9568fda6", "fields": {"code_postal": "59640", "code_commune_insee": "59183", "libell_d_acheminement": "DUNKERQUE", "ligne_5": "PETITE SYNTHE", "nom_de_la_commune": "DUNKERQUE", "coordonnees_gps": [51.0306940868, 2.33760634]}, "geometry": {"type": "Point", "coordinates": [2.33760634, 51.0306940868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0524887817e9e367a00b758f25bb2e0a6de2ff63", "fields": {"nom_de_la_commune": "ECAILLON", "libell_d_acheminement": "ECAILLON", "code_postal": "59176", "coordonnees_gps": [50.3439205555, 3.20295217014], "code_commune_insee": "59185"}, "geometry": {"type": "Point", "coordinates": [3.20295217014, 50.3439205555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "832632ca87527e3aceb6a784e958a0ef7337f0f3", "fields": {"nom_de_la_commune": "ECCLES", "libell_d_acheminement": "ECCLES", "code_postal": "59740", "coordonnees_gps": [50.1606436469, 4.08629021934], "code_commune_insee": "59186"}, "geometry": {"type": "Point", "coordinates": [4.08629021934, 50.1606436469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c74b29925e319388bec2b3ec465c5174cc5d0e", "fields": {"nom_de_la_commune": "ENGLEFONTAINE", "libell_d_acheminement": "ENGLEFONTAINE", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59194"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de29ac8d025e7907cadde85af61bedf298a7f98", "fields": {"nom_de_la_commune": "ENGLOS", "libell_d_acheminement": "ENGLOS", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59195"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c146e90f254f93afe6aae4c0ead5823c0722f69", "fields": {"nom_de_la_commune": "ENNETIERES EN WEPPES", "libell_d_acheminement": "ENNETIERES EN WEPPES", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59196"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348279234b56cdcc8331f6f448ebcc8f7a2593e0", "fields": {"nom_de_la_commune": "ERCHIN", "libell_d_acheminement": "ERCHIN", "code_postal": "59169", "coordonnees_gps": [50.3188008385, 3.12364772716], "code_commune_insee": "59199"}, "geometry": {"type": "Point", "coordinates": [3.12364772716, 50.3188008385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ddfc2bf239061a0287ea8c0de1ae789fead3b0", "fields": {"nom_de_la_commune": "ERRE", "libell_d_acheminement": "ERRE", "code_postal": "59171", "coordonnees_gps": [50.3694204804, 3.33834111863], "code_commune_insee": "59203"}, "geometry": {"type": "Point", "coordinates": [3.33834111863, 50.3694204804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e34645310de21b65cf68f56074e8420342048407", "fields": {"nom_de_la_commune": "ESCAUDAIN", "libell_d_acheminement": "ESCAUDAIN", "code_postal": "59124", "coordonnees_gps": [50.3337837416, 3.34122519611], "code_commune_insee": "59205"}, "geometry": {"type": "Point", "coordinates": [3.34122519611, 50.3337837416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dde2b19c5de0c6195719788e392b271e72baa6c", "fields": {"nom_de_la_commune": "ESQUERCHIN", "libell_d_acheminement": "ESQUERCHIN", "code_postal": "59553", "coordonnees_gps": [50.3821215945, 3.02404153046], "code_commune_insee": "59211"}, "geometry": {"type": "Point", "coordinates": [3.02404153046, 50.3821215945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8d0603af37fa7a30347e97062f011584046b55", "fields": {"nom_de_la_commune": "ESTREES", "libell_d_acheminement": "ESTREES", "code_postal": "59151", "coordonnees_gps": [50.2865158745, 3.11140042003], "code_commune_insee": "59214"}, "geometry": {"type": "Point", "coordinates": [3.11140042003, 50.2865158745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4203279f1411dae516146a636248e05e274f80fc", "fields": {"nom_de_la_commune": "ETH", "libell_d_acheminement": "ETH", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59217"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be672ed7db41cb7b70d9ed30a73f22564bec1e8", "fields": {"nom_de_la_commune": "FECHAIN", "libell_d_acheminement": "FECHAIN", "code_postal": "59247", "coordonnees_gps": [50.2609478069, 3.2199473962], "code_commune_insee": "59224"}, "geometry": {"type": "Point", "coordinates": [3.2199473962, 50.2609478069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "882cb8de02ce5f9ad4a7e08f395d372075607482", "fields": {"nom_de_la_commune": "FENAIN", "libell_d_acheminement": "FENAIN", "code_postal": "59179", "coordonnees_gps": [50.3673176665, 3.30029992694], "code_commune_insee": "59227"}, "geometry": {"type": "Point", "coordinates": [3.30029992694, 50.3673176665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f741d080e2fcbd098eca441052cbd9e895eecf0c", "fields": {"nom_de_la_commune": "FERRIERE LA GRANDE", "libell_d_acheminement": "FERRIERE LA GRANDE", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59230"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "421d16dafe5c439273440c127995c7de946ef1d2", "fields": {"nom_de_la_commune": "FERRIERE LA PETITE", "libell_d_acheminement": "FERRIERE LA PETITE", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59231"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c652b5693218099e8c2ac47e2a5f1edf9714e6e", "fields": {"nom_de_la_commune": "FLESQUIERES", "libell_d_acheminement": "FLESQUIERES", "code_postal": "59267", "coordonnees_gps": [50.14197399, 3.16014006865], "code_commune_insee": "59236"}, "geometry": {"type": "Point", "coordinates": [3.16014006865, 50.14197399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d5ef8f82ab9abd3cbd650c7a001cf18720247b0", "fields": {"nom_de_la_commune": "FLOYON", "libell_d_acheminement": "FLOYON", "code_postal": "59219", "coordonnees_gps": [50.0518032549, 3.92131798693], "code_commune_insee": "59241"}, "geometry": {"type": "Point", "coordinates": [3.92131798693, 50.0518032549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a446e87370e8133e82b296e2af6d08aaa36f6e", "fields": {"nom_de_la_commune": "FOURMIES", "libell_d_acheminement": "FOURMIES", "code_postal": "59610", "coordonnees_gps": [50.0219945971, 4.04376753743], "code_commune_insee": "59249"}, "geometry": {"type": "Point", "coordinates": [4.04376753743, 50.0219945971]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537fe46fb837e67ffdaa4320e717573708892af2", "fields": {"nom_de_la_commune": "GENECH", "libell_d_acheminement": "GENECH", "code_postal": "59242", "coordonnees_gps": [50.5245553237, 3.18527549865], "code_commune_insee": "59258"}, "geometry": {"type": "Point", "coordinates": [3.18527549865, 50.5245553237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64963d82dc485c1b33d500de33968864da27491b", "fields": {"nom_de_la_commune": "GOGNIES CHAUSSEE", "libell_d_acheminement": "GOGNIES CHAUSSEE", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59264"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1b031e641c1359554a2ab2e33eb467906a4c43", "fields": {"nom_de_la_commune": "GRUSON", "libell_d_acheminement": "GRUSON", "code_postal": "59152", "coordonnees_gps": [50.6050937717, 3.2043944478], "code_commune_insee": "59275"}, "geometry": {"type": "Point", "coordinates": [3.2043944478, 50.6050937717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb72fd191afaea0eb83b14c58793c4234e1c737b", "fields": {"nom_de_la_commune": "HALLUIN", "libell_d_acheminement": "HALLUIN", "code_postal": "59250", "coordonnees_gps": [50.7748561237, 3.12664134814], "code_commune_insee": "59279"}, "geometry": {"type": "Point", "coordinates": [3.12664134814, 50.7748561237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2978ff332680ef0fbacbe49ac717bdc7bdda5f", "fields": {"nom_de_la_commune": "HAULCHIN", "libell_d_acheminement": "HAULCHIN", "code_postal": "59121", "coordonnees_gps": [50.3179624806, 3.43822520712], "code_commune_insee": "59288"}, "geometry": {"type": "Point", "coordinates": [3.43822520712, 50.3179624806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d67da01a6ef67c7aa85bb0ef33fc7e2a2be10506", "fields": {"nom_de_la_commune": "HEM LENGLET", "libell_d_acheminement": "HEM LENGLET", "code_postal": "59247", "coordonnees_gps": [50.2609478069, 3.2199473962], "code_commune_insee": "59300"}, "geometry": {"type": "Point", "coordinates": [3.2199473962, 50.2609478069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a57d5d0bc7e2e4a1a093ec0db3599d7e801fcd22", "fields": {"nom_de_la_commune": "HERZEELE", "libell_d_acheminement": "HERZEELE", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59305"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f31966d389a97e0e36c4bca34edf167fecbc77fa", "fields": {"nom_de_la_commune": "HORNAING", "libell_d_acheminement": "HORNAING", "code_postal": "59171", "coordonnees_gps": [50.3694204804, 3.33834111863], "code_commune_insee": "59314"}, "geometry": {"type": "Point", "coordinates": [3.33834111863, 50.3694204804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45065aabc050c6c8e02bde02b82fd847978dc7a4", "fields": {"nom_de_la_commune": "HOUDAIN LEZ BAVAY", "libell_d_acheminement": "HOUDAIN LEZ BAVAY", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59315"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981713c842cfc4992ca17036772be863f6584913", "fields": {"nom_de_la_commune": "HOYMILLE", "libell_d_acheminement": "HOYMILLE", "code_postal": "59492", "coordonnees_gps": [50.9731202124, 2.45595476593], "code_commune_insee": "59319"}, "geometry": {"type": "Point", "coordinates": [2.45595476593, 50.9731202124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf20b40bf6d4a11950d6297595442afeb672c88", "fields": {"nom_de_la_commune": "ILLIES", "libell_d_acheminement": "ILLIES", "code_postal": "59480", "coordonnees_gps": [50.5558128425, 2.82300533087], "code_commune_insee": "59320"}, "geometry": {"type": "Point", "coordinates": [2.82300533087, 50.5558128425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7658510da01390eff0a5c135f77d784e55e5165b", "fields": {"nom_de_la_commune": "IWUY", "libell_d_acheminement": "IWUY", "code_postal": "59141", "coordonnees_gps": [50.2278844933, 3.31468451895], "code_commune_insee": "59322"}, "geometry": {"type": "Point", "coordinates": [3.31468451895, 50.2278844933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dda92e696850703f94501bf3c071b4b504c46f8", "fields": {"nom_de_la_commune": "JENLAIN", "libell_d_acheminement": "JENLAIN", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59323"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e204d5c3ad9097911da3c68ec9662724c9ce68", "fields": {"nom_de_la_commune": "LANNOY", "libell_d_acheminement": "LANNOY", "code_postal": "59390", "coordonnees_gps": [50.657732592, 3.22516990677], "code_commune_insee": "59332"}, "geometry": {"type": "Point", "coordinates": [3.22516990677, 50.657732592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c0b3a5ccef459b8dc76778bc14ce15aba5ef583", "fields": {"nom_de_la_commune": "LAUWIN PLANQUE", "libell_d_acheminement": "LAUWIN PLANQUE", "code_postal": "59553", "coordonnees_gps": [50.3821215945, 3.02404153046], "code_commune_insee": "59334"}, "geometry": {"type": "Point", "coordinates": [3.02404153046, 50.3821215945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a6db9c38d3c7f147969d4965e273e352829423", "fields": {"nom_de_la_commune": "LESQUIN", "libell_d_acheminement": "LESQUIN", "code_postal": "59810", "coordonnees_gps": [50.589824451, 3.11249692688], "code_commune_insee": "59343"}, "geometry": {"type": "Point", "coordinates": [3.11249692688, 50.589824451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f7185d2e7f2f4038d67703c16bd93da94fc2a0", "fields": {"nom_de_la_commune": "LEVAL", "libell_d_acheminement": "LEVAL", "code_postal": "59620", "coordonnees_gps": [50.1872040884, 3.853225186], "code_commune_insee": "59344"}, "geometry": {"type": "Point", "coordinates": [3.853225186, 50.1872040884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e98dcbb245501cc218ebd4ede58a46212e671e", "fields": {"nom_de_la_commune": "LIEU ST AMAND", "libell_d_acheminement": "LIEU ST AMAND", "code_postal": "59111", "coordonnees_gps": [50.2733776483, 3.31798741017], "code_commune_insee": "59348"}, "geometry": {"type": "Point", "coordinates": [3.31798741017, 50.2733776483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "375c6dbe3d42d8183be0bcf0c466f52622506627", "fields": {"nom_de_la_commune": "LOURCHES", "libell_d_acheminement": "LOURCHES", "code_postal": "59156", "coordonnees_gps": [50.3112742663, 3.35786360934], "code_commune_insee": "59361"}, "geometry": {"type": "Point", "coordinates": [3.35786360934, 50.3112742663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b2f7296261d1b983bb5ae0a4f2b2059141a4558", "fields": {"nom_de_la_commune": "LOUVIL", "libell_d_acheminement": "LOUVIL", "code_postal": "59830", "coordonnees_gps": [50.5603924878, 3.23305636879], "code_commune_insee": "59364"}, "geometry": {"type": "Point", "coordinates": [3.23305636879, 50.5603924878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3caca3154c7aab9bac9d40f58c82ff357b250c6", "fields": {"nom_de_la_commune": "LOUVROIL", "libell_d_acheminement": "LOUVROIL", "code_postal": "59720", "coordonnees_gps": [50.2582944612, 3.95362771167], "code_commune_insee": "59365"}, "geometry": {"type": "Point", "coordinates": [3.95362771167, 50.2582944612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb53e0f3f707cc62f7d3d5f18c7f0c69bf0db452", "fields": {"nom_de_la_commune": "MARBAIX", "libell_d_acheminement": "MARBAIX", "code_postal": "59440", "coordonnees_gps": [50.1317369611, 3.92319762263], "code_commune_insee": "59374"}, "geometry": {"type": "Point", "coordinates": [3.92319762263, 50.1317369611]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12cf553b93ae65f317366b0a67fe1fdfb767a593", "fields": {"nom_de_la_commune": "MAROILLES", "libell_d_acheminement": "MAROILLES", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59384"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff1aeab91ba290b48713d7e0a290f501c6f31ea", "fields": {"nom_de_la_commune": "MARPENT", "libell_d_acheminement": "MARPENT", "code_postal": "59164", "coordonnees_gps": [50.2907082338, 4.07704109923], "code_commune_insee": "59385"}, "geometry": {"type": "Point", "coordinates": [4.07704109923, 50.2907082338]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c0cf662afec97ef3d9f111a79081ca82cdfedc0", "fields": {"nom_de_la_commune": "MASNIERES", "libell_d_acheminement": "MASNIERES", "code_postal": "59241", "coordonnees_gps": [50.1048543757, 3.20159625651], "code_commune_insee": "59389"}, "geometry": {"type": "Point", "coordinates": [3.20159625651, 50.1048543757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "613370d0d7a3ae14ca1b56dd2afc6edccf180e5f", "fields": {"nom_de_la_commune": "MASTAING", "libell_d_acheminement": "MASTAING", "code_postal": "59172", "coordonnees_gps": [50.3090205997, 3.30898360738], "code_commune_insee": "59391"}, "geometry": {"type": "Point", "coordinates": [3.30898360738, 50.3090205997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4544824920c1a659667ca5d87059a4c645dd8030", "fields": {"nom_de_la_commune": "MAUBEUGE", "libell_d_acheminement": "MAUBEUGE", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59392"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b1dfc39e822b82b1655ccf8b173800d7c3d3d8", "fields": {"nom_de_la_commune": "MECQUIGNIES", "libell_d_acheminement": "MECQUIGNIES", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59396"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cda4993f41e3c9ad1b98eed177a9e39c24b7c80", "fields": {"nom_de_la_commune": "MOEUVRES", "libell_d_acheminement": "MOEUVRES", "code_postal": "59400", "coordonnees_gps": [50.1533767412, 3.19681716574], "code_commune_insee": "59405"}, "geometry": {"type": "Point", "coordinates": [3.19681716574, 50.1533767412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522ba5a7269ef5841f3b8c4829d7b82280b08963", "fields": {"nom_de_la_commune": "MONCEAU ST WAAST", "libell_d_acheminement": "MONCEAU ST WAAST", "code_postal": "59620", "coordonnees_gps": [50.1872040884, 3.853225186], "code_commune_insee": "59406"}, "geometry": {"type": "Point", "coordinates": [3.853225186, 50.1872040884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c0e1fc71fc0e4a0661e9a06c26a6c2dc2eee1c", "fields": {"nom_de_la_commune": "MOUSTIER EN FAGNE", "libell_d_acheminement": "MOUSTIER EN FAGNE", "code_postal": "59132", "coordonnees_gps": [50.0748231353, 4.13810260699], "code_commune_insee": "59420"}, "geometry": {"type": "Point", "coordinates": [4.13810260699, 50.0748231353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd909941f95540e79f84f304c925fa549a2201cb", "fields": {"nom_de_la_commune": "NAVES", "libell_d_acheminement": "NAVES", "code_postal": "59161", "coordonnees_gps": [50.1987116728, 3.28713967931], "code_commune_insee": "59422"}, "geometry": {"type": "Point", "coordinates": [3.28713967931, 50.1987116728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3462c03ec1c3a4af697d5622964806eb05cb7d88", "fields": {"nom_de_la_commune": "NEUVILLE EN FERRAIN", "libell_d_acheminement": "NEUVILLE EN FERRAIN", "code_postal": "59960", "coordonnees_gps": [50.7531316756, 3.1593674762], "code_commune_insee": "59426"}, "geometry": {"type": "Point", "coordinates": [3.1593674762, 50.7531316756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b3415a0396789eff573f0efdefd957416f7103", "fields": {"nom_de_la_commune": "NEUVILLE ST REMY", "libell_d_acheminement": "NEUVILLE ST REMY", "code_postal": "59554", "coordonnees_gps": [50.1997132829, 3.19825969693], "code_commune_insee": "59428"}, "geometry": {"type": "Point", "coordinates": [3.19825969693, 50.1997132829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cde4d4ef59e8a1b71ce671a337bb11b379b22abc", "fields": {"nom_de_la_commune": "NEUVILLE SUR ESCAUT", "libell_d_acheminement": "NEUVILLE SUR ESCAUT", "code_postal": "59293", "coordonnees_gps": [50.290457369, 3.35088715056], "code_commune_insee": "59429"}, "geometry": {"type": "Point", "coordinates": [3.35088715056, 50.290457369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d19edf420d5204b36b245d10afaaff3dfd779467", "fields": {"nom_de_la_commune": "OBRECHIES", "libell_d_acheminement": "OBRECHIES", "code_postal": "59680", "coordonnees_gps": [50.2405018484, 4.03857324044], "code_commune_insee": "59442"}, "geometry": {"type": "Point", "coordinates": [4.03857324044, 50.2405018484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f99459fb08fa6fab9634a6e7a80f751c60aec5f", "fields": {"nom_de_la_commune": "OCHTEZEELE", "libell_d_acheminement": "OCHTEZEELE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59443"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b3be8d8478c45cfa864e1f4b658ebac447f4523", "fields": {"nom_de_la_commune": "OISY", "libell_d_acheminement": "OISY", "code_postal": "59195", "coordonnees_gps": [50.3552982371, 3.44360395869], "code_commune_insee": "59446"}, "geometry": {"type": "Point", "coordinates": [3.44360395869, 50.3552982371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1811e4902501646182cc06e422e9b644b5e50948", "fields": {"nom_de_la_commune": "ORS", "libell_d_acheminement": "ORS", "code_postal": "59360", "coordonnees_gps": [50.0869230183, 3.58161803685], "code_commune_insee": "59450"}, "geometry": {"type": "Point", "coordinates": [3.58161803685, 50.0869230183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7182d8ebb6b9565779af4894f114d01ac093fb7a", "fields": {"nom_de_la_commune": "PAILLENCOURT", "libell_d_acheminement": "PAILLENCOURT", "code_postal": "59295", "coordonnees_gps": [50.2473645343, 3.27148479456], "code_commune_insee": "59455"}, "geometry": {"type": "Point", "coordinates": [3.27148479456, 50.2473645343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f1809551d0c9b35969ee536d949d6d585fe8bc0", "fields": {"nom_de_la_commune": "PRADELLES", "libell_d_acheminement": "PRADELLES", "code_postal": "59190", "coordonnees_gps": [50.716080125, 2.53498842642], "code_commune_insee": "59469"}, "geometry": {"type": "Point", "coordinates": [2.53498842642, 50.716080125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cace1a52e70ffb562a9e41f40b29f176ad0e9baa", "fields": {"nom_de_la_commune": "PREUX AU BOIS", "libell_d_acheminement": "PREUX AU BOIS", "code_postal": "59288", "coordonnees_gps": [50.1648610983, 3.65523511962], "code_commune_insee": "59472"}, "geometry": {"type": "Point", "coordinates": [3.65523511962, 50.1648610983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91fcdf38dacc825a7ea977dd1dfb78a565ab5dba", "fields": {"nom_de_la_commune": "PRISCHES", "libell_d_acheminement": "PRISCHES", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59474"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ebe855bea119757d06302673f79cd639f89cbe", "fields": {"nom_de_la_commune": "PROVIN", "libell_d_acheminement": "PROVIN", "code_postal": "59185", "coordonnees_gps": [50.5136397804, 2.91107802772], "code_commune_insee": "59477"}, "geometry": {"type": "Point", "coordinates": [2.91107802772, 50.5136397804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a89ab1cf77db5c33ec92355916d820d49e49513", "fields": {"nom_de_la_commune": "QUERENAING", "libell_d_acheminement": "QUERENAING", "code_postal": "59269", "coordonnees_gps": [50.2865936592, 3.53807571429], "code_commune_insee": "59480"}, "geometry": {"type": "Point", "coordinates": [3.53807571429, 50.2865936592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "358188aa81948b7b32fc2c9cb1a4f86c5cd3bf42", "fields": {"nom_de_la_commune": "LE QUESNOY", "libell_d_acheminement": "LE QUESNOY", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59481"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de7b14d9faa4c946cda96318528efb95cb035266", "fields": {"nom_de_la_commune": "QUESNOY SUR DEULE", "libell_d_acheminement": "QUESNOY SUR DEULE", "code_postal": "59890", "coordonnees_gps": [50.7190929543, 2.99204569056], "code_commune_insee": "59482"}, "geometry": {"type": "Point", "coordinates": [2.99204569056, 50.7190929543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9110fc3593f325e7cf4d3c8f9ffd67c964664e12", "fields": {"nom_de_la_commune": "RADINGHEM EN WEPPES", "libell_d_acheminement": "RADINGHEM EN WEPPES", "code_postal": "59320", "coordonnees_gps": [50.6203764996, 2.95124210777], "code_commune_insee": "59487"}, "geometry": {"type": "Point", "coordinates": [2.95124210777, 50.6203764996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c2f72a4b8b2828a5796ee8520fb8ec178f8710a", "fields": {"nom_de_la_commune": "RAILLENCOURT STE OLLE", "libell_d_acheminement": "RAILLENCOURT STE OLLE", "code_postal": "59554", "coordonnees_gps": [50.1997132829, 3.19825969693], "code_commune_insee": "59488"}, "geometry": {"type": "Point", "coordinates": [3.19825969693, 50.1997132829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab309dca907644c28bf1dafb6b1b7597e3344abc", "fields": {"nom_de_la_commune": "RAINSARS", "libell_d_acheminement": "RAINSARS", "code_postal": "59177", "coordonnees_gps": [50.0919119818, 4.0256341447], "code_commune_insee": "59490"}, "geometry": {"type": "Point", "coordinates": [4.0256341447, 50.0919119818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "024dbba82bc9d985137bf7f64391e55eaa25e538", "fields": {"nom_de_la_commune": "RAMOUSIES", "libell_d_acheminement": "RAMOUSIES", "code_postal": "59177", "coordonnees_gps": [50.0919119818, 4.0256341447], "code_commune_insee": "59493"}, "geometry": {"type": "Point", "coordinates": [4.0256341447, 50.0919119818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e7df2cb1c3e2b8f2608191dbb79ac5ea640971", "fields": {"nom_de_la_commune": "RAUCOURT AU BOIS", "libell_d_acheminement": "RAUCOURT AU BOIS", "code_postal": "59530", "coordonnees_gps": [50.223224015, 3.68515855463], "code_commune_insee": "59494"}, "geometry": {"type": "Point", "coordinates": [3.68515855463, 50.223224015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f0f55126483c0845bda897ce7e0e7e5524ead03", "fields": {"nom_de_la_commune": "ROBERSART", "libell_d_acheminement": "ROBERSART", "code_postal": "59550", "coordonnees_gps": [50.1132581815, 3.73954277118], "code_commune_insee": "59503"}, "geometry": {"type": "Point", "coordinates": [3.73954277118, 50.1132581815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe16c0f1f07ccc1cc06f78ba67e5f8f2fe5c178", "fields": {"nom_de_la_commune": "ROMBIES ET MARCHIPONT", "libell_d_acheminement": "ROMBIES ET MARCHIPONT", "code_postal": "59990", "coordonnees_gps": [50.3347646366, 3.60960847975], "code_commune_insee": "59505"}, "geometry": {"type": "Point", "coordinates": [3.60960847975, 50.3347646366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08515060b00d4cb27f48e99c9030358e019bed33", "fields": {"nom_de_la_commune": "ROMERIES", "libell_d_acheminement": "ROMERIES", "code_postal": "59730", "coordonnees_gps": [50.1806606643, 3.51245734771], "code_commune_insee": "59506"}, "geometry": {"type": "Point", "coordinates": [3.51245734771, 50.1806606643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8cbefd106f3878ae621fdf924d403219b6a3e2b", "fields": {"nom_de_la_commune": "ST GEORGES SUR L AA", "libell_d_acheminement": "ST GEORGES SUR L AA", "code_postal": "59820", "coordonnees_gps": [50.98845491, 2.14774710721], "code_commune_insee": "59532"}, "geometry": {"type": "Point", "coordinates": [2.14774710721, 50.98845491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a1a64dfedfe674dbfd46159e9f53942bf50a058", "fields": {"nom_de_la_commune": "ST MARTIN SUR ECAILLON", "libell_d_acheminement": "ST MARTIN SUR ECAILLON", "code_postal": "59213", "coordonnees_gps": [50.2475337981, 3.52978047064], "code_commune_insee": "59537"}, "geometry": {"type": "Point", "coordinates": [3.52978047064, 50.2475337981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e84846726cec049749d6c24ed08831bf0174dfc", "fields": {"nom_de_la_commune": "ST REMY DU NORD", "libell_d_acheminement": "ST REMY DU NORD", "code_postal": "59330", "coordonnees_gps": [50.2276174189, 3.92870278259], "code_commune_insee": "59543"}, "geometry": {"type": "Point", "coordinates": [3.92870278259, 50.2276174189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a39713bbaf7a998da9a9b3343e665995b5b5552", "fields": {"nom_de_la_commune": "ST SAULVE", "libell_d_acheminement": "ST SAULVE", "code_postal": "59880", "coordonnees_gps": [50.3751640424, 3.56650612222], "code_commune_insee": "59544"}, "geometry": {"type": "Point", "coordinates": [3.56650612222, 50.3751640424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa7dbdc916e77a7700bc0fdc446dbfa776f1777b", "fields": {"nom_de_la_commune": "SANCOURT", "libell_d_acheminement": "SANCOURT", "code_postal": "59268", "coordonnees_gps": [50.2255437815, 3.19481961843], "code_commune_insee": "59552"}, "geometry": {"type": "Point", "coordinates": [3.19481961843, 50.2255437815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a392a070f777ba02a059e03f695bbc8034595ecd", "fields": {"nom_de_la_commune": "SECLIN", "libell_d_acheminement": "SECLIN", "code_postal": "59113", "coordonnees_gps": [50.5467570223, 3.03452224851], "code_commune_insee": "59560"}, "geometry": {"type": "Point", "coordinates": [3.03452224851, 50.5467570223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65363cb3405216fa5204c35354890fca5906a0a2", "fields": {"nom_de_la_commune": "LA SENTINELLE", "libell_d_acheminement": "LA SENTINELLE", "code_postal": "59174", "coordonnees_gps": [50.3488891853, 3.47519285702], "code_commune_insee": "59564"}, "geometry": {"type": "Point", "coordinates": [3.47519285702, 50.3488891853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6424de62f9b7aa3e9963168d40df005c6fc2514", "fields": {"nom_de_la_commune": "SOCX", "libell_d_acheminement": "SOCX", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59570"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "896038721f0fde8163542f2b2f9ddd9965e816a6", "fields": {"nom_de_la_commune": "SOMMAING", "libell_d_acheminement": "SOMMAING", "code_postal": "59213", "coordonnees_gps": [50.2475337981, 3.52978047064], "code_commune_insee": "59575"}, "geometry": {"type": "Point", "coordinates": [3.52978047064, 50.2475337981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fccd7d117e8723b8ad4dfe5c03ed5420d4215a64", "fields": {"nom_de_la_commune": "STEENBECQUE", "libell_d_acheminement": "STEENBECQUE", "code_postal": "59189", "coordonnees_gps": [50.6676916499, 2.47249399478], "code_commune_insee": "59578"}, "geometry": {"type": "Point", "coordinates": [2.47249399478, 50.6676916499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e3e222e7cf70734ab596c430271d972eda48d8", "fields": {"nom_de_la_commune": "STRAZEELE", "libell_d_acheminement": "STRAZEELE", "code_postal": "59270", "coordonnees_gps": [50.744872534, 2.69409590473], "code_commune_insee": "59582"}, "geometry": {"type": "Point", "coordinates": [2.69409590473, 50.744872534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846440bbc83210892c2d5176cc9573f9ae509c3c", "fields": {"nom_de_la_commune": "TAISNIERES SUR HON", "libell_d_acheminement": "TAISNIERES SUR HON", "code_postal": "59570", "coordonnees_gps": [50.3076854397, 3.80843098031], "code_commune_insee": "59584"}, "geometry": {"type": "Point", "coordinates": [3.80843098031, 50.3076854397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f51a1492c519c2bf9fed61f20401f5e701cebe82", "fields": {"nom_de_la_commune": "TERDEGHEM", "libell_d_acheminement": "TERDEGHEM", "code_postal": "59114", "coordonnees_gps": [50.8038796466, 2.57811297783], "code_commune_insee": "59587"}, "geometry": {"type": "Point", "coordinates": [2.57811297783, 50.8038796466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b670876c4b9d39ab80343cc6cd031be30d9a3e", "fields": {"code_postal": "59380", "code_commune_insee": "59588", "libell_d_acheminement": "TETEGHEM COUDEKERQUE VILLAGE", "ligne_5": "COUDEKERQUE VILLAGE", "nom_de_la_commune": "TETEGHEM COUDEKERQUE VILLAGE", "coordonnees_gps": [50.9638309272, 2.43403587067]}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b1337023a881cac29467dc9c4ea4499ac35a13a", "fields": {"nom_de_la_commune": "THUMERIES", "libell_d_acheminement": "THUMERIES", "code_postal": "59239", "coordonnees_gps": [50.4822908809, 3.06005458434], "code_commune_insee": "59592"}, "geometry": {"type": "Point", "coordinates": [3.06005458434, 50.4822908809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e0196d296f2f6aad24a72f433db27fb3d01cad7", "fields": {"nom_de_la_commune": "THUN L EVEQUE", "libell_d_acheminement": "THUN L EVEQUE", "code_postal": "59141", "coordonnees_gps": [50.2278844933, 3.31468451895], "code_commune_insee": "59593"}, "geometry": {"type": "Point", "coordinates": [3.31468451895, 50.2278844933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93e35d339ebc6008ac630cafe1d50666d74140eb", "fields": {"nom_de_la_commune": "TILLOY LEZ MARCHIENNES", "libell_d_acheminement": "TILLOY LEZ MARCHIENNES", "code_postal": "59870", "coordonnees_gps": [50.4111764156, 3.27356961496], "code_commune_insee": "59596"}, "geometry": {"type": "Point", "coordinates": [3.27356961496, 50.4111764156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4765a40f6209c198a018434bed82810358329af", "fields": {"nom_de_la_commune": "TOURCOING", "libell_d_acheminement": "TOURCOING", "code_postal": "59200", "coordonnees_gps": [50.7261026624, 3.15984468995], "code_commune_insee": "59599"}, "geometry": {"type": "Point", "coordinates": [3.15984468995, 50.7261026624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99cfd6548fd2db17340031048e2791290698e607", "fields": {"nom_de_la_commune": "UXEM", "libell_d_acheminement": "UXEM", "code_postal": "59229", "coordonnees_gps": [51.0183217327, 2.46486695201], "code_commune_insee": "59605"}, "geometry": {"type": "Point", "coordinates": [2.46486695201, 51.0183217327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05bb8486b3d353dec0030395904f024daa969eb", "fields": {"nom_de_la_commune": "VENDEVILLE", "libell_d_acheminement": "VENDEVILLE", "code_postal": "59175", "coordonnees_gps": [50.5711630173, 3.06780468809], "code_commune_insee": "59609"}, "geometry": {"type": "Point", "coordinates": [3.06780468809, 50.5711630173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da44667d14471f0977f05eaff3d007baed78a633", "fields": {"nom_de_la_commune": "VERLINGHEM", "libell_d_acheminement": "VERLINGHEM", "code_postal": "59237", "coordonnees_gps": [50.682527052, 3.00082043063], "code_commune_insee": "59611"}, "geometry": {"type": "Point", "coordinates": [3.00082043063, 50.682527052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82ca1400a8971f559568aac06a71ed6e26e0e035", "fields": {"nom_de_la_commune": "VIEUX RENG", "libell_d_acheminement": "VIEUX RENG", "code_postal": "59600", "coordonnees_gps": [50.3120023096, 3.98953050481], "code_commune_insee": "59618"}, "geometry": {"type": "Point", "coordinates": [3.98953050481, 50.3120023096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e69a552e1e20d33d24434aa4fd686112975b32f", "fields": {"nom_de_la_commune": "VILLERS EN CAUCHIES", "libell_d_acheminement": "VILLERS EN CAUCHIES", "code_postal": "59188", "coordonnees_gps": [50.2124042637, 3.41180746227], "code_commune_insee": "59622"}, "geometry": {"type": "Point", "coordinates": [3.41180746227, 50.2124042637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f79e1ff3f6db9ecfb8c1e831ae85f07cc1f0538b", "fields": {"nom_de_la_commune": "WAHAGNIES", "libell_d_acheminement": "WAHAGNIES", "code_postal": "59261", "coordonnees_gps": [50.4845027228, 3.02972071236], "code_commune_insee": "59630"}, "geometry": {"type": "Point", "coordinates": [3.02972071236, 50.4845027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4804cc243165e6eaa22dc1bf8ebef68e599254a0", "fields": {"nom_de_la_commune": "AMONT ET EFFRENEY", "libell_d_acheminement": "AMONT ET EFFRENEY", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70016"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da4669eccd9512597e77d674e0ca93f7f1fbe14", "fields": {"nom_de_la_commune": "ARBECEY", "libell_d_acheminement": "ARBECEY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70025"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e7b15e3707115b998547a307abff1711a70f3f3", "fields": {"nom_de_la_commune": "ARC LES GRAY", "libell_d_acheminement": "ARC LES GRAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70026"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a90214371b3c78c44474a8c4e3826a6f639afe85", "fields": {"nom_de_la_commune": "ARGILLIERES", "libell_d_acheminement": "ARGILLIERES", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70027"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ace62122927d052dd5708845fcd90c0b275425f", "fields": {"nom_de_la_commune": "ARPENANS", "libell_d_acheminement": "ARPENANS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70029"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae69b9f779714bbef8ad041ef85ae1e678036e6f", "fields": {"code_postal": "70110", "code_commune_insee": "70031", "libell_d_acheminement": "ATHESANS ETROITEFONTAINE", "ligne_5": "ETROITEFONTAINE", "nom_de_la_commune": "ATHESANS ETROITEFONTAINE", "coordonnees_gps": [47.5606005441, 6.44969851367]}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "045e8c4fd68ce86314fb7fff79247596de3796ac", "fields": {"nom_de_la_commune": "BARD LES PESMES", "libell_d_acheminement": "BARD LES PESMES", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70048"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdfa0b5d68907d64ff88a2dc749d6de609acd0a5", "fields": {"nom_de_la_commune": "BATTRANS", "libell_d_acheminement": "BATTRANS", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70054"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94b8b8b7fd03fa46db04c6d262d00a68a3e2371d", "fields": {"nom_de_la_commune": "BAUDONCOURT", "libell_d_acheminement": "BAUDONCOURT", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70055"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c81729752d1f66aefe03fe5e740a73ab2ec581b", "fields": {"nom_de_la_commune": "BETONCOURT ST PANCRAS", "libell_d_acheminement": "BETONCOURT ST PANCRAS", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70069"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc5093b21a5659e02c17ae476bfbc2111420f60", "fields": {"nom_de_la_commune": "BETONCOURT SUR MANCE", "libell_d_acheminement": "BETONCOURT SUR MANCE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70070"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2ee0f6fa7ea74bae5c6fb82babcede28a4e0759", "fields": {"nom_de_la_commune": "BOUHANS LES MONTBOZON", "libell_d_acheminement": "BOUHANS LES MONTBOZON", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70082"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ab901c0db905ead754f10c827691a24898cb2b", "fields": {"nom_de_la_commune": "BOULT", "libell_d_acheminement": "BOULT", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70085"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd0e58d0fd69e7e410f666d92bbcae54f1e0b22", "fields": {"nom_de_la_commune": "BOURSIERES", "libell_d_acheminement": "BOURSIERES", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70090"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c380e8697040bc6c887e98175f6c02400c488e8c", "fields": {"nom_de_la_commune": "BOUSSERAUCOURT", "libell_d_acheminement": "BOUSSERAUCOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70091"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83fba4fdc6ecf415bc247df7e1942a77cf5718d1", "fields": {"nom_de_la_commune": "BREUCHOTTE", "libell_d_acheminement": "BREUCHOTTE", "code_postal": "70280", "coordonnees_gps": [47.8584720576, 6.48683952427], "code_commune_insee": "70094"}, "geometry": {"type": "Point", "coordinates": [6.48683952427, 47.8584720576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f607b0a124e9bedc6b7e6c01046208455c3a2c", "fields": {"nom_de_la_commune": "BROTTE LES LUXEUIL", "libell_d_acheminement": "BROTTE LES LUXEUIL", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70098"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15950b58f00e6a8277bebdf0fdb144505fd29f87", "fields": {"nom_de_la_commune": "CENANS", "libell_d_acheminement": "CENANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70113"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28a0c55b914003f67457af18c4c6f8fbf2654bec", "fields": {"nom_de_la_commune": "CERRE LES NOROY", "libell_d_acheminement": "CERRE LES NOROY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70115"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8ce9640bb6c1afb4c53a57b05331316ff291eb3", "fields": {"nom_de_la_commune": "CHAMPAGNEY", "libell_d_acheminement": "CHAMPAGNEY", "code_postal": "70290", "coordonnees_gps": [47.7309841125, 6.72677134274], "code_commune_insee": "70120"}, "geometry": {"type": "Point", "coordinates": [6.72677134274, 47.7309841125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "289a94612dc94b84f22d3bb0d63482452c464aeb", "fields": {"nom_de_la_commune": "CHAMPLITTE", "libell_d_acheminement": "CHAMPLITTE", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70122"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5623d3952e6bf0b8da3c38b3bf765a453e14cd09", "fields": {"code_postal": "70600", "code_commune_insee": "70122", "libell_d_acheminement": "CHAMPLITTE", "ligne_5": "LEFFOND", "nom_de_la_commune": "CHAMPLITTE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253520827d119beb5243a2a434725222ca4b4a1a", "fields": {"code_postal": "70600", "code_commune_insee": "70122", "libell_d_acheminement": "CHAMPLITTE", "ligne_5": "NEUVELLE LES CHAMPLITTE", "nom_de_la_commune": "CHAMPLITTE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05148ffcee159a54dbabb0e150c1c0c13a670bc4", "fields": {"nom_de_la_commune": "CHAMPTONNAY", "libell_d_acheminement": "CHAMPTONNAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70124"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ea08b6780f3b2eac882d46158d8e4827d43b6a8", "fields": {"nom_de_la_commune": "CHAMPVANS", "libell_d_acheminement": "CHAMPVANS", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70125"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46c9cfc4f18315a7d7d2cf576a89a72f223314c3", "fields": {"nom_de_la_commune": "LA CHAPELLE LES LUXEUIL", "libell_d_acheminement": "LA CHAPELLE LES LUXEUIL", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70128"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9729b88f0ecf1813a2c103e53803cba3d0cc8e69", "fields": {"nom_de_la_commune": "CHATENEY", "libell_d_acheminement": "CHATENEY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70140"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e2ec67058cbc6a20e3958fe55de8386f5c9e80e", "fields": {"nom_de_la_commune": "CHAUVIREY LE CHATEL", "libell_d_acheminement": "CHAUVIREY LE CHATEL", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70143"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1945e1bbd57a0a08f496fe92b4333c130193326", "fields": {"nom_de_la_commune": "CHAUVIREY LE VIEIL", "libell_d_acheminement": "CHAUVIREY LE VIEIL", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70144"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eed08b588e23a334140481aeb9fb5c4c6a0d0984", "fields": {"nom_de_la_commune": "CHEVIGNEY", "libell_d_acheminement": "CHEVIGNEY", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70151"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e7c3b9c4434c1d51ce29076bafcac1d592b76a", "fields": {"nom_de_la_commune": "CHOYE", "libell_d_acheminement": "CHOYE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70152"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f34226970e9e0713fd6eb370749df1fb32e134c", "fields": {"nom_de_la_commune": "CINTREY", "libell_d_acheminement": "CINTREY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70153"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2764909f3546749271f40115bc6ec67aaa8e5f9a", "fields": {"nom_de_la_commune": "COISEVAUX", "libell_d_acheminement": "COISEVAUX", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70160"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d9acb196dad93c6fb92896cb9cdc9b34b8a3fc", "fields": {"nom_de_la_commune": "CONFLANDEY", "libell_d_acheminement": "CONFLANDEY", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70167"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9384fec17abb39b989568606f4a71b8021a43079", "fields": {"nom_de_la_commune": "CORBENAY", "libell_d_acheminement": "CORBENAY", "code_postal": "70320", "coordonnees_gps": [47.9247841994, 6.33509809591], "code_commune_insee": "70171"}, "geometry": {"type": "Point", "coordinates": [6.33509809591, 47.9247841994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0907c9bb223db723fe2489b23c5a18f5eb0fb832", "fields": {"nom_de_la_commune": "LA CORBIERE", "libell_d_acheminement": "LA CORBIERE", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70172"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec67aa7ea075dd54c60922a2101631197cffe1fb", "fields": {"nom_de_la_commune": "CORDONNET", "libell_d_acheminement": "CORDONNET", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70174"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5660da928b3a958d31278efe9bcb97b73df59508", "fields": {"nom_de_la_commune": "COULEVON", "libell_d_acheminement": "COULEVON", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70179"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d808d74e1efad6ad6a569bf213ffc182685bd597", "fields": {"nom_de_la_commune": "COURTESOULT ET GATEY", "libell_d_acheminement": "COURTESOULT ET GATEY", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70183"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f3fc02d6f3f4187818df453c88028a46d1e990b", "fields": {"nom_de_la_commune": "LA CREUSE", "libell_d_acheminement": "LA CREUSE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70186"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "282c88b97bcea273d3d0511ebb416875f263c369", "fields": {"nom_de_la_commune": "CREVENEY", "libell_d_acheminement": "CREVENEY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70188"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7309b088c351e9e60a365bbc8be3d51425fe919e", "fields": {"nom_de_la_commune": "CULT", "libell_d_acheminement": "CULT", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70193"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33346c61520d4965489badb0f48b052b52b3122b", "fields": {"nom_de_la_commune": "DAMPIERRE SUR LINOTTE", "libell_d_acheminement": "DAMPIERRE SUR LINOTTE", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70197"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67fa97790bf039cbafc34e82b3ad2c78ef12d3c3", "fields": {"code_postal": "70230", "code_commune_insee": "70197", "libell_d_acheminement": "DAMPIERRE SUR LINOTTE", "ligne_5": "TREVEY", "nom_de_la_commune": "DAMPIERRE SUR LINOTTE", "coordonnees_gps": [47.4966875875, 6.24277918181]}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4fa44ac2f79082dcb7e904310288e2271b7af33", "fields": {"nom_de_la_commune": "DAMPIERRE SUR SALON", "libell_d_acheminement": "DAMPIERRE SUR SALON", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70198"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af0a076a71e9c27005a0dab8b5995597ca9a4399", "fields": {"nom_de_la_commune": "DEMANGEVELLE", "libell_d_acheminement": "DEMANGEVELLE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70202"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68dbd1fc77141ce3200726a385c5b03c4088ff08", "fields": {"nom_de_la_commune": "ECHENOZ LA MELINE", "libell_d_acheminement": "ECHENOZ LA MELINE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70207"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc342817e42785c34d11c1404e7eb076bf76730f", "fields": {"nom_de_la_commune": "ECHENOZ LE SEC", "libell_d_acheminement": "ECHENOZ LE SEC", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70208"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff6a7f3406fe52a230c2cd473c67a36a993c8e6a", "fields": {"nom_de_la_commune": "EQUEVILLEY", "libell_d_acheminement": "EQUEVILLEY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70214"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc6053d66f04eed0a50c36bc6652247e20e25ca", "fields": {"nom_de_la_commune": "ESMOULIERES", "libell_d_acheminement": "ESMOULIERES", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70217"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67b62a6d58284008cebdc51cc80e5b74ac18121", "fields": {"nom_de_la_commune": "ETRELLES ET LA MONTBLEUSE", "libell_d_acheminement": "ETRELLES ET LA MONTBLEUSE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70222"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3a3b44742c03fd8f7abb660a211205f0d109043", "fields": {"nom_de_la_commune": "FAVERNEY", "libell_d_acheminement": "FAVERNEY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70228"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce762e322c977c0334edf426ca8e621e684c4f65", "fields": {"nom_de_la_commune": "FEDRY", "libell_d_acheminement": "FEDRY", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70230"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e8c851b5b9cd23d323aad52b91e80821771d4a0", "fields": {"nom_de_la_commune": "FERRIERES LES RAY", "libell_d_acheminement": "FERRIERES LES RAY", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70231"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa5703229a3548d4aa1893e44e3ad831bc02ef1c", "fields": {"nom_de_la_commune": "LES FESSEY", "libell_d_acheminement": "LES FESSEY", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70233"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c7111755402bb056c17330df6fa36c5c34adf9b", "fields": {"nom_de_la_commune": "FONTENOIS LES MONTBOZON", "libell_d_acheminement": "FONTENOIS LES MONTBOZON", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70243"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37cc697a1f22714eab79658cbf20d9f7c82c9363", "fields": {"code_postal": "70600", "code_commune_insee": "70247", "libell_d_acheminement": "FOUVENT ST ANDOCHE", "ligne_5": "FOUVENT LE BAS", "nom_de_la_commune": "FOUVENT ST ANDOCHE", "coordonnees_gps": [47.6194548362, 5.54979434525]}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "765dd78edb79ffe7681622e4483e4cb0a8f7541f", "fields": {"nom_de_la_commune": "FRANCOURT", "libell_d_acheminement": "FRANCOURT", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70251"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4927d79e740ea164369305936f2019474ef67cd6", "fields": {"nom_de_la_commune": "GOUHENANS", "libell_d_acheminement": "GOUHENANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70271"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf97b8017b2da7fefd447294c9938269f1f1ad9", "fields": {"nom_de_la_commune": "GRAY LA VILLE", "libell_d_acheminement": "GRAY LA VILLE", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70280"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "773bcc90de3e94f504c0bfec1327ac0b6fe746fb", "fields": {"nom_de_la_commune": "HAUT DU THEM CHATEAU LAMBERT", "libell_d_acheminement": "HAUT DU THEM CHATEAU LAMBERT", "code_postal": "70440", "coordonnees_gps": [47.8263854039, 6.71661809603], "code_commune_insee": "70283"}, "geometry": {"type": "Point", "coordinates": [6.71661809603, 47.8263854039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba241e333e2d3834fd7f5cfc994c86f922bb524", "fields": {"nom_de_la_commune": "HAUTEVELLE", "libell_d_acheminement": "HAUTEVELLE", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70284"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc9474c60c182deff94e7f667f63b4e0fa557d79", "fields": {"nom_de_la_commune": "IGNY", "libell_d_acheminement": "IGNY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70289"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "493668b9d44f6d3777ed86a49f7c002d40ac5641", "fields": {"nom_de_la_commune": "JASNEY", "libell_d_acheminement": "JASNEY", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70290"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0fdbe31bc9268171d10a52b7cad6198950532e", "fields": {"code_postal": "70500", "code_commune_insee": "70292", "libell_d_acheminement": "JUSSEY", "ligne_5": "NOROY LES JUSSEY", "nom_de_la_commune": "JUSSEY", "coordonnees_gps": [47.8418489668, 5.8916124162]}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1ef125b0798eeab04f9428827ad1a38703d6538", "fields": {"nom_de_la_commune": "LINEXERT", "libell_d_acheminement": "LINEXERT", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70304"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a254cb75ba6306a8bc06c94a5e002e74b12645", "fields": {"nom_de_la_commune": "LOMONT", "libell_d_acheminement": "LOMONT", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70306"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17cf6b23bc3aff62145bd5e0c79e105aac84e772", "fields": {"nom_de_la_commune": "LA LONGINE", "libell_d_acheminement": "LA LONGINE", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70308"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5405fe1ebe4367412644b33e1b9224adb8a1e304", "fields": {"nom_de_la_commune": "LOULANS VERCHAMP", "libell_d_acheminement": "LOULANS VERCHAMP", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70309"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86b83665bdf9276624415cabc2bf82d4560111fa", "fields": {"nom_de_la_commune": "LUZE", "libell_d_acheminement": "LUZE", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70312"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ee2af87beab39ed836cdfaa3c8eef3296ac0cb", "fields": {"nom_de_la_commune": "MAGNY DANIGON", "libell_d_acheminement": "MAGNY DANIGON", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70318"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcad35b69a534c419dcf0e9b5bc6354c6ed53f0f", "fields": {"nom_de_la_commune": "MAILLERONCOURT CHARETTE", "libell_d_acheminement": "MAILLERONCOURT CHARETTE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70322"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8daedddda11635c71b3dbeaa762c6e45306370e", "fields": {"nom_de_la_commune": "MAILLERONCOURT ST PANCRAS", "libell_d_acheminement": "MAILLERONCOURT ST PANCRAS", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70323"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e83a124fdc73cb9083ba222f2ca982d033a92c", "fields": {"nom_de_la_commune": "MAIZIERES", "libell_d_acheminement": "MAIZIERES", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70325"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8299394e4e31f701ad7ec766f30f1252c9aff84e", "fields": {"nom_de_la_commune": "MELISEY", "libell_d_acheminement": "MELISEY", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70339"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af5e3f9047c91a49bca6fa920dae72b5c0b64a59", "fields": {"nom_de_la_commune": "MENOUX", "libell_d_acheminement": "MENOUX", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70341"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8e830dd12f2cc1c8eb3812c1f47a2349d3358ef", "fields": {"nom_de_la_commune": "MERSUAY", "libell_d_acheminement": "MERSUAY", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70343"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5507e09973a208163f25276535a11ebe0d25633f", "fields": {"nom_de_la_commune": "MOFFANS ET VACHERESSE", "libell_d_acheminement": "MOFFANS ET VACHERESSE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70348"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f61c77c707605c2d3255824f000f26d4beaf81d", "fields": {"nom_de_la_commune": "MOIMAY", "libell_d_acheminement": "MOIMAY", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70349"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cef59d1009e088cb802bf6c681525fd520e5d239", "fields": {"nom_de_la_commune": "MONTUREUX LES BAULAY", "libell_d_acheminement": "MONTUREUX LES BAULAY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70372"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb0b65366624669c655ac5a2caf59a04265b98b", "fields": {"nom_de_la_commune": "NANTILLY", "libell_d_acheminement": "NANTILLY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70376"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f67b2b8f4d2fc44ccce68c306bd458746e177700", "fields": {"nom_de_la_commune": "NEUVELLE LES LA CHARITE", "libell_d_acheminement": "NEUVELLE LES LA CHARITE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70384"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c84608d7edd432136521ab7a8a84c8a197b2fcd6", "fields": {"nom_de_la_commune": "LA NEUVELLE LES SCEY", "libell_d_acheminement": "LA NEUVELLE LES SCEY", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70386"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18c788ae3b2a21e9dffd3c41612603c96337f40b", "fields": {"nom_de_la_commune": "NOIDANS LES VESOUL", "libell_d_acheminement": "NOIDANS LES VESOUL", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70388"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83b3b551240a9ad5a2e6aeb852e74ea7aead91ad", "fields": {"nom_de_la_commune": "OPPENANS", "libell_d_acheminement": "OPPENANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70395"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd5a515961e26a08486414c6cfe5a0be03c37b1f", "fields": {"nom_de_la_commune": "ORMOICHE", "libell_d_acheminement": "ORMOICHE", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70398"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae2000ddf0255e89087c91229c1e7fc4b6154214", "fields": {"nom_de_la_commune": "PALANTE", "libell_d_acheminement": "PALANTE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70403"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ada525e5815f749f311737bc757e7aa408ce12", "fields": {"nom_de_la_commune": "PERCEY LE GRAND", "libell_d_acheminement": "PERCEY LE GRAND", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70406"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0325b877494aa0f4478dd0b91644a0ccb11e54f2", "fields": {"nom_de_la_commune": "PESMES", "libell_d_acheminement": "PESMES", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70408"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e82350245a69f7e783400bf0df85f00c6f8d33a", "fields": {"nom_de_la_commune": "PLAINEMONT", "libell_d_acheminement": "PLAINEMONT", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70412"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47a7f806f1d1bd494735b0ff0371e04150f0ec86", "fields": {"nom_de_la_commune": "PLANCHER BAS", "libell_d_acheminement": "PLANCHER BAS", "code_postal": "70290", "coordonnees_gps": [47.7309841125, 6.72677134274], "code_commune_insee": "70413"}, "geometry": {"type": "Point", "coordinates": [6.72677134274, 47.7309841125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "916e63c038ff7ead3e211415deaf0d53253eaaad", "fields": {"nom_de_la_commune": "PONT DU BOIS", "libell_d_acheminement": "PONT DU BOIS", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70419"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "069bda3dbee4aebffef792292a2b1c9b228a5ad0", "fields": {"nom_de_la_commune": "POYANS", "libell_d_acheminement": "POYANS", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70422"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d923aaa16a7c6ee5dcb4c15b4a68050115e6ec3d", "fields": {"nom_de_la_commune": "LA PROISELIERE ET LANGLE", "libell_d_acheminement": "LA PROISELIERE ET LANGLE", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70425"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c2229bff36c47947b1a0de9c40baff85dc48f9c", "fields": {"nom_de_la_commune": "PURGEROT", "libell_d_acheminement": "PURGEROT", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70427"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656bfe9688b0c56647f9ea43be1dbfb3a137e344", "fields": {"nom_de_la_commune": "QUENOCHE", "libell_d_acheminement": "QUENOCHE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70431"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad4831eba97785bd1c8857ffa2f80188d9391ebe", "fields": {"nom_de_la_commune": "LA GRANDE RESIE", "libell_d_acheminement": "LA GRANDE RESIE", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70443"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09e56e1cec52a5519f5748170119d48726117883", "fields": {"nom_de_la_commune": "ROCHE ET RAUCOURT", "libell_d_acheminement": "ROCHE ET RAUCOURT", "code_postal": "70180", "coordonnees_gps": [47.5818626565, 5.68358406763], "code_commune_insee": "70448"}, "geometry": {"type": "Point", "coordinates": [5.68358406763, 47.5818626565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae99f5baeb2138db1d05e403c7af09f75f71abed", "fields": {"nom_de_la_commune": "ST BRESSON", "libell_d_acheminement": "ST BRESSON", "code_postal": "70280", "coordonnees_gps": [47.8584720576, 6.48683952427], "code_commune_insee": "70460"}, "geometry": {"type": "Point", "coordinates": [6.48683952427, 47.8584720576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e07c9ff4f7af67025169eb3c8e72c2ca98de3fc", "fields": {"nom_de_la_commune": "ST BROING", "libell_d_acheminement": "ST BROING", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70461"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1dcc4ba28ee37568cebb39c433fbb79a7bf928a", "fields": {"nom_de_la_commune": "GOLANCOURT", "libell_d_acheminement": "GOLANCOURT", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60278"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddf4ef29bae3f0c7a854a1156cad7ace780d14ca", "fields": {"nom_de_la_commune": "GOURNAY SUR ARONDE", "libell_d_acheminement": "GOURNAY SUR ARONDE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60281"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cb7bfb51e8af55376378c194b8f411e35fcc55d", "fields": {"nom_de_la_commune": "GRANDFRESNOY", "libell_d_acheminement": "GRANDFRESNOY", "code_postal": "60680", "coordonnees_gps": [49.3855713236, 2.69284171004], "code_commune_insee": "60284"}, "geometry": {"type": "Point", "coordinates": [2.69284171004, 49.3855713236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac56211203a16686641523fa93cd72dca96f672f", "fields": {"nom_de_la_commune": "GRANDRU", "libell_d_acheminement": "GRANDRU", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60287"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "921080c396bf9d7aba5bf8fff3e239d786656176", "fields": {"nom_de_la_commune": "HALLOY", "libell_d_acheminement": "HALLOY", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60295"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a8ac5b182500fe7b31149f590cc27637987ff5b", "fields": {"nom_de_la_commune": "HANVOILE", "libell_d_acheminement": "HANVOILE", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60298"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c7210a9a69e78dc08ebc59290c9ed9cf345071", "fields": {"nom_de_la_commune": "HAUCOURT", "libell_d_acheminement": "HAUCOURT", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60301"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bbb1bdc4895d4d55e80e04e571c01648576fffd", "fields": {"nom_de_la_commune": "HAUDIVILLERS", "libell_d_acheminement": "HAUDIVILLERS", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60302"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "386b666c38007db916ec9e5e4b7a23b497118351", "fields": {"nom_de_la_commune": "HEILLES", "libell_d_acheminement": "HEILLES", "code_postal": "60250", "coordonnees_gps": [49.3233722877, 2.32362880315], "code_commune_insee": "60307"}, "geometry": {"type": "Point", "coordinates": [2.32362880315, 49.3233722877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "356f0583359082fb42aa09db76efea03669e8723", "fields": {"nom_de_la_commune": "HODENC EN BRAY", "libell_d_acheminement": "HODENC EN BRAY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60315"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ccc7213b731d1e337b3138c04a5f2444b334c07", "fields": {"nom_de_la_commune": "JAULZY", "libell_d_acheminement": "JAULZY", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60324"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70bd90cbdcf0b007756f8cadd5f5e17d90729015", "fields": {"nom_de_la_commune": "JOUY SOUS THELLE", "libell_d_acheminement": "JOUY SOUS THELLE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60327"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d0030bb0cea05e3a4d9b152feaca1980d0451c", "fields": {"nom_de_la_commune": "LABERLIERE", "libell_d_acheminement": "LABERLIERE", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60329"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6fafb367461183f42bcebe2d8d59748ed778cbc", "fields": {"nom_de_la_commune": "LAGNY LE SEC", "libell_d_acheminement": "LAGNY LE SEC", "code_postal": "60330", "coordonnees_gps": [49.0926155982, 2.75103506879], "code_commune_insee": "60341"}, "geometry": {"type": "Point", "coordinates": [2.75103506879, 49.0926155982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e34223221c62ac3d16ed7ed4caf456e55a22644e", "fields": {"nom_de_la_commune": "LALANDE EN SON", "libell_d_acheminement": "LALANDE EN SON", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60343"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36289b772e9222b4018846f266793afd19ad3471", "fields": {"nom_de_la_commune": "LALANDELLE", "libell_d_acheminement": "LALANDELLE", "code_postal": "60850", "coordonnees_gps": [49.4183231211, 1.8058971314], "code_commune_insee": "60344"}, "geometry": {"type": "Point", "coordinates": [1.8058971314, 49.4183231211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1b8c4bda2ff49de2722db509381dd10c51b8d1e", "fields": {"nom_de_la_commune": "LEGLANTIERS", "libell_d_acheminement": "LEGLANTIERS", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60357"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ebe2a79c94b49376a5c8feefb91dd9d995a005c", "fields": {"nom_de_la_commune": "LIANCOURT ST PIERRE", "libell_d_acheminement": "LIANCOURT ST PIERRE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60361"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a55d02328ce04d9d4ca4bc1123ea457316dd41f", "fields": {"nom_de_la_commune": "MAREST SUR MATZ", "libell_d_acheminement": "MAREST SUR MATZ", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60378"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f627115d008a7e5f9ef67829bc7e92ce5ecf88", "fields": {"nom_de_la_commune": "MAREUIL SUR OURCQ", "libell_d_acheminement": "MAREUIL SUR OURCQ", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60380"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9b2252532289cea5f58ae6329ab53db3085a85f", "fields": {"nom_de_la_commune": "MARGNY LES COMPIEGNE", "libell_d_acheminement": "MARGNY LES COMPIEGNE", "code_postal": "60280", "coordonnees_gps": [49.4313650855, 2.80849357717], "code_commune_insee": "60382"}, "geometry": {"type": "Point", "coordinates": [2.80849357717, 49.4313650855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ade555141e3a729868afa243b28e9172a99148b", "fields": {"nom_de_la_commune": "MARGNY SUR MATZ", "libell_d_acheminement": "MARGNY SUR MATZ", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60383"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5340ec0a77885916b4f08e0ac39e6e3d893ed3b6", "fields": {"nom_de_la_commune": "MERU", "libell_d_acheminement": "MERU", "code_postal": "60110", "coordonnees_gps": [49.232969162, 2.13061952998], "code_commune_insee": "60395"}, "geometry": {"type": "Point", "coordinates": [2.13061952998, 49.232969162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ffbf75e4e798a40a1d6aa79ac05b44d932347ce", "fields": {"nom_de_la_commune": "LE MESNIL CONTEVILLE", "libell_d_acheminement": "LE MESNIL CONTEVILLE", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60397"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a04ec257035374ef5c0a2928661475a8be0ad66", "fields": {"nom_de_la_commune": "MILLY SUR THERAIN", "libell_d_acheminement": "MILLY SUR THERAIN", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60403"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8601c4eace8006d6632e8afe46d923ac73b559f9", "fields": {"nom_de_la_commune": "MONCEAUX", "libell_d_acheminement": "MONCEAUX", "code_postal": "60940", "coordonnees_gps": [49.322780883, 2.53673238341], "code_commune_insee": "60406"}, "geometry": {"type": "Point", "coordinates": [2.53673238341, 49.322780883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "619f8a06e0329bf254b5603a421c7114e40ffe7d", "fields": {"nom_de_la_commune": "MONCHY HUMIERES", "libell_d_acheminement": "MONCHY HUMIERES", "code_postal": "60113", "coordonnees_gps": [49.468392159, 2.74988902801], "code_commune_insee": "60408"}, "geometry": {"type": "Point", "coordinates": [2.74988902801, 49.468392159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824d42da2418f05bb491277eba241abedd37b7e6", "fields": {"nom_de_la_commune": "MONDESCOURT", "libell_d_acheminement": "MONDESCOURT", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60410"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5db78fabafa0166da0dedd1fd22ab217c6c0f1b9", "fields": {"nom_de_la_commune": "MONTATAIRE", "libell_d_acheminement": "MONTATAIRE", "code_postal": "60160", "coordonnees_gps": [49.2602503231, 2.43049140584], "code_commune_insee": "60414"}, "geometry": {"type": "Point", "coordinates": [2.43049140584, 49.2602503231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0249a3c323c1c3b73188f68de63d816e3adeb69", "fields": {"nom_de_la_commune": "MORLINCOURT", "libell_d_acheminement": "MORLINCOURT", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60431"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a20580de6b3b7325a622f7e827c9d1a8f928641c", "fields": {"nom_de_la_commune": "MORTEFONTAINE EN THELLE", "libell_d_acheminement": "MORTEFONTAINE EN THELLE", "code_postal": "60570", "coordonnees_gps": [49.2740563361, 2.16701620037], "code_commune_insee": "60433"}, "geometry": {"type": "Point", "coordinates": [2.16701620037, 49.2740563361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "919b281ed636cc8f8660c06ebf51a9a2c3e10bd9", "fields": {"nom_de_la_commune": "MUIDORGE", "libell_d_acheminement": "MUIDORGE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60442"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65193dccf9698c1d101bb892f531abdd9bf62cf9", "fields": {"nom_de_la_commune": "NAMPCEL", "libell_d_acheminement": "NAMPCEL", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60445"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11a85b2cff882f79d04041482e2e0fb51526437", "fields": {"nom_de_la_commune": "NANTEUIL LE HAUDOUIN", "libell_d_acheminement": "NANTEUIL LE HAUDOUIN", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60446"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "706d42dd859d416b808c52c17c95d977e1367a32", "fields": {"nom_de_la_commune": "NEUILLY EN THELLE", "libell_d_acheminement": "NEUILLY EN THELLE", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60450"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "070ac02700014f76dfd2d54097ac9b58caa74509", "fields": {"nom_de_la_commune": "NOVILLERS", "libell_d_acheminement": "NOVILLERS", "code_postal": "60730", "coordonnees_gps": [49.2849598013, 2.24410446166], "code_commune_insee": "60469"}, "geometry": {"type": "Point", "coordinates": [2.24410446166, 49.2849598013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8f34d1558361dc9925515f3d0472f760cf0f19b", "fields": {"nom_de_la_commune": "OGNON", "libell_d_acheminement": "OGNON", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60475"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e93f0a025a160012c389b17fdbad7a65f30360", "fields": {"nom_de_la_commune": "OROER", "libell_d_acheminement": "OROER", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60480"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f11fdcee83348a92e32ca105545c64b0b60e0b8", "fields": {"nom_de_la_commune": "PARNES", "libell_d_acheminement": "PARNES", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60487"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4550e60101eca79d8414ef7bba30537f5ca8ebd5", "fields": {"nom_de_la_commune": "PIERREFITTE EN BEAUVAISIS", "libell_d_acheminement": "PIERREFITTE EN BEAUVAISIS", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60490"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75bc56bb00f6a2ed25adec481aa3ac5104e47fa9", "fields": {"nom_de_la_commune": "LE PLESSIER SUR ST JUST", "libell_d_acheminement": "LE PLESSIER SUR ST JUST", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60498"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61c0071b9c5009e46c11108d585fec8dd74236c1", "fields": {"nom_de_la_commune": "LE PLESSIS BELLEVILLE", "libell_d_acheminement": "LE PLESSIS BELLEVILLE", "code_postal": "60330", "coordonnees_gps": [49.0926155982, 2.75103506879], "code_commune_insee": "60500"}, "geometry": {"type": "Point", "coordinates": [2.75103506879, 49.0926155982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df3e178604236a95801c789f1841f341c9d856b4", "fields": {"nom_de_la_commune": "PONCHON", "libell_d_acheminement": "PONCHON", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60504"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c024ce52f51e7fea71c6c6d8b84a50b5dbd5fd2", "fields": {"nom_de_la_commune": "PONT L EVEQUE", "libell_d_acheminement": "PONT L EVEQUE", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60506"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99de93ffa11dd678bf7b2a2dda4e54d5ba96048f", "fields": {"nom_de_la_commune": "PRECY SUR OISE", "libell_d_acheminement": "PRECY SUR OISE", "code_postal": "60460", "coordonnees_gps": [49.2147031001, 2.35428386438], "code_commune_insee": "60513"}, "geometry": {"type": "Point", "coordinates": [2.35428386438, 49.2147031001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae2ab67c9bd534adbfd21b07e8bd7d8cc5620380", "fields": {"nom_de_la_commune": "PREVILLERS", "libell_d_acheminement": "PREVILLERS", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60514"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c06285fbdfecc771bca19cc9e85aabf09b5685f9", "fields": {"nom_de_la_commune": "RESSONS L ABBAYE", "libell_d_acheminement": "RESSONS L ABBAYE", "code_postal": "60790", "coordonnees_gps": [49.2852248633, 2.06991456979], "code_commune_insee": "60532"}, "geometry": {"type": "Point", "coordinates": [2.06991456979, 49.2852248633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf6eafb4082ec10a9a4dca75159658ec84a3366f", "fields": {"nom_de_la_commune": "RETHONDES", "libell_d_acheminement": "RETHONDES", "code_postal": "60153", "coordonnees_gps": [49.4286489851, 2.94512781411], "code_commune_insee": "60534"}, "geometry": {"type": "Point", "coordinates": [2.94512781411, 49.4286489851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf80086bcc84ed41247973d7c69d57bd67ba7ac1", "fields": {"nom_de_la_commune": "ST AUBIN SOUS ERQUERY", "libell_d_acheminement": "ST AUBIN SOUS ERQUERY", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60568"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "025767e905d1c01bebc8fb2151dabd094be02693", "fields": {"nom_de_la_commune": "ST CREPIN AUX BOIS", "libell_d_acheminement": "ST CREPIN AUX BOIS", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60569"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "271fc466b82a9718506fb9e88b8846c681b47036", "fields": {"nom_de_la_commune": "STE EUSOYE", "libell_d_acheminement": "STE EUSOYE", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60573"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0a08e6dfd4efefc87fcc3e07de8793b538683c", "fields": {"nom_de_la_commune": "ST MAXIMIN", "libell_d_acheminement": "ST MAXIMIN", "code_postal": "60740", "coordonnees_gps": [49.2238838207, 2.45915508591], "code_commune_insee": "60589"}, "geometry": {"type": "Point", "coordinates": [2.45915508591, 49.2238838207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f01c4e5808dd8c9107b0ba467be80a7dbdd6eb7", "fields": {"nom_de_la_commune": "ST PIERRE LES BITRY", "libell_d_acheminement": "ST PIERRE LES BITRY", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60593"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566609bba6ac00974bcd8d748ff5d5d53c0b73b3", "fields": {"nom_de_la_commune": "ST SAMSON LA POTERIE", "libell_d_acheminement": "ST SAMSON LA POTERIE", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60596"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "636cebe79416f81ba459b8fe45cc17bb9d661e44", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "60320", "coordonnees_gps": [49.2987381345, 2.79474571672], "code_commune_insee": "60597"}, "geometry": {"type": "Point", "coordinates": [2.79474571672, 49.2987381345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658bce178d34fe64e2d935dcf71b251a8754eab3", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60598"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edd2ec9f4c281ed915ef6100e9c85fafe2cb9842", "fields": {"nom_de_la_commune": "ST VAAST LES MELLO", "libell_d_acheminement": "ST VAAST LES MELLO", "code_postal": "60660", "coordonnees_gps": [49.2665303301, 2.368580624], "code_commune_insee": "60601"}, "geometry": {"type": "Point", "coordinates": [2.368580624, 49.2665303301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8c6d794abf14e6e9a35d80737b859690f9547ed", "fields": {"nom_de_la_commune": "LE SAULCHOY", "libell_d_acheminement": "LE SAULCHOY", "code_postal": "60360", "coordonnees_gps": [49.6178916656, 2.09525706644], "code_commune_insee": "60608"}, "geometry": {"type": "Point", "coordinates": [2.09525706644, 49.6178916656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b15fd1c01f016dbe9d59881e3fffdbacf8366351", "fields": {"nom_de_la_commune": "SAVIGNIES", "libell_d_acheminement": "SAVIGNIES", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60609"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11beeec462f7361d015127b6005eaab160c64641", "fields": {"nom_de_la_commune": "SERANS", "libell_d_acheminement": "SERANS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60614"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1dea39fe629ecbf58155ed639cbaa0d3b85b83", "fields": {"nom_de_la_commune": "SOLENTE", "libell_d_acheminement": "SOLENTE", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60621"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18e9a2734d0b3da25d310f7229be82375032d36", "fields": {"nom_de_la_commune": "SONGEONS", "libell_d_acheminement": "SONGEONS", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60623"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfaaf112fea2f7694a7f5a67d119c40bacaa6f98", "fields": {"nom_de_la_commune": "THERDONNE", "libell_d_acheminement": "THERDONNE", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60628"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d987f84e3bdd8a90c0c6493bdd1a54145987905", "fields": {"nom_de_la_commune": "THIBIVILLERS", "libell_d_acheminement": "THIBIVILLERS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60630"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc208a0a183053f9c63366904b2fde620487931", "fields": {"nom_de_la_commune": "THIEUX", "libell_d_acheminement": "THIEUX", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60634"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2741f19aa1716001b35ff3dc6293bfedd072a047", "fields": {"nom_de_la_commune": "THURY EN VALOIS", "libell_d_acheminement": "THURY EN VALOIS", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60637"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ebe648dcce05b19553a9d92b9d8513f3d156468", "fields": {"nom_de_la_commune": "TRACY LE MONT", "libell_d_acheminement": "TRACY LE MONT", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60641"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a69264a86c4e636b54cc4d205456e545e4d38c4", "fields": {"code_postal": "60170", "code_commune_insee": "60641", "libell_d_acheminement": "TRACY LE MONT", "ligne_5": "OLLENCOURT", "nom_de_la_commune": "TRACY LE MONT", "coordonnees_gps": [49.4914347292, 2.97702281469]}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c207ec41f2a4364c7c7b8f6c8537bce735aa4f8", "fields": {"nom_de_la_commune": "TRICOT", "libell_d_acheminement": "TRICOT", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60643"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a67a6f94d3afabbde548c7e0cf23a1abde9d5e39", "fields": {"nom_de_la_commune": "TRIE LA VILLE", "libell_d_acheminement": "TRIE LA VILLE", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60645"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5f6874e88bda825970d0b6cc96152a9db588cba", "fields": {"nom_de_la_commune": "TROUSSENCOURT", "libell_d_acheminement": "TROUSSENCOURT", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60648"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea9f5f9e72030efb4529b6a85ad7cd9d94d68837", "fields": {"nom_de_la_commune": "VALDAMPIERRE", "libell_d_acheminement": "VALDAMPIERRE", "code_postal": "60790", "coordonnees_gps": [49.2852248633, 2.06991456979], "code_commune_insee": "60652"}, "geometry": {"type": "Point", "coordinates": [2.06991456979, 49.2852248633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2374652f176fc1727d9c41cca5b9ccf197e94ef5", "fields": {"nom_de_la_commune": "VELENNES", "libell_d_acheminement": "VELENNES", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60663"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c153af275f22607f591f0a2a8a53b96fe505d14a", "fields": {"nom_de_la_commune": "VENETTE", "libell_d_acheminement": "VENETTE", "code_postal": "60280", "coordonnees_gps": [49.4313650855, 2.80849357717], "code_commune_insee": "60665"}, "geometry": {"type": "Point", "coordinates": [2.80849357717, 49.4313650855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a93094704dcc9c8e0ec38653f7784c46be06f27a", "fields": {"nom_de_la_commune": "VER SUR LAUNETTE", "libell_d_acheminement": "VER SUR LAUNETTE", "code_postal": "60950", "coordonnees_gps": [49.1189792735, 2.6960856018], "code_commune_insee": "60666"}, "geometry": {"type": "Point", "coordinates": [2.6960856018, 49.1189792735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21aea4c8f80cd681d7606d40f9d2cd5acf4cedac", "fields": {"nom_de_la_commune": "VIGNEMONT", "libell_d_acheminement": "VIGNEMONT", "code_postal": "60162", "coordonnees_gps": [49.4989023316, 2.74608596543], "code_commune_insee": "60675"}, "geometry": {"type": "Point", "coordinates": [2.74608596543, 49.4989023316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd38aca90ab054ab59a0168706a87a569d98a1d", "fields": {"nom_de_la_commune": "VILLEMBRAY", "libell_d_acheminement": "VILLEMBRAY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60677"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61e8d1e44d19bf10f4a7539d73180aae7a7fe066", "fields": {"nom_de_la_commune": "VILLERS ST FRAMBOURG", "libell_d_acheminement": "VILLERS ST FRAMBOURG", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60682"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74f60e1214364f2a28edeb0b65d55e9bafaed111", "fields": {"nom_de_la_commune": "VILLERS VICOMTE", "libell_d_acheminement": "VILLERS VICOMTE", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60692"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d5d2049cdf4d68bf6c851924e7c4abeffc0cdb1", "fields": {"nom_de_la_commune": "VILLESELVE", "libell_d_acheminement": "VILLESELVE", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60693"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3267ccefb64e1438c868a75588ca6e2c2f6cee8c", "fields": {"nom_de_la_commune": "VINEUIL ST FIRMIN", "libell_d_acheminement": "VINEUIL ST FIRMIN", "code_postal": "60500", "coordonnees_gps": [49.1857324224, 2.48739707813], "code_commune_insee": "60695"}, "geometry": {"type": "Point", "coordinates": [2.48739707813, 49.1857324224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5ca80033b5ecb4d52af05c79a507296f92d73e5", "fields": {"nom_de_la_commune": "AUX MARAIS", "libell_d_acheminement": "AUX MARAIS", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60703"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96efe1a9efa176bb22ddbc6b3d7c05c0064c585f", "fields": {"nom_de_la_commune": "APPENAI SOUS BELLEME", "libell_d_acheminement": "APPENAI SOUS BELLEME", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61005"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e73b3bcfbaf97c5c50b59d1cf1d2d237ecd46f42", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "LES TOURAILLES", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05c03db664467200e657bc16634803658a82ab97", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "SEGRIE FONTAINE", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "048611ec54a7d8bc15c9b1169cd40172a9041841", "fields": {"nom_de_la_commune": "AUBE", "libell_d_acheminement": "AUBE", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61008"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0a1225f9cd0392e6fcdfe6642e3a291b90562c", "fields": {"nom_de_la_commune": "AUBRY EN EXMES", "libell_d_acheminement": "AUBRY EN EXMES", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61009"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d897754dc273f8ef374fe30f70adba6a6dfb272", "fields": {"nom_de_la_commune": "AUBUSSON", "libell_d_acheminement": "AUBUSSON", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61011"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ea585fe886fca5735d2fdce81696d27aa5f669b", "fields": {"nom_de_la_commune": "AUNOU LE FAUCON", "libell_d_acheminement": "AUNOU LE FAUCON", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61014"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "395a047989acbd1df911afe1bac57d798c7dced3", "fields": {"nom_de_la_commune": "BANVOU", "libell_d_acheminement": "BANVOU", "code_postal": "61450", "coordonnees_gps": [48.6630002344, -0.54676985736], "code_commune_insee": "61024"}, "geometry": {"type": "Point", "coordinates": [-0.54676985736, 48.6630002344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6736ce48f25d256f83a465a870ec5c00ee8527a4", "fields": {"nom_de_la_commune": "BELLAVILLIERS", "libell_d_acheminement": "BELLAVILLIERS", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61037"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "828055a1e441e2db329208e51463810fb73e2b96", "fields": {"nom_de_la_commune": "BELLEME", "libell_d_acheminement": "BELLEME", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61038"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4236280dc4273365044f9f773bd77304796c2fd2", "fields": {"nom_de_la_commune": "BONSMOULINS", "libell_d_acheminement": "BONSMOULINS", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61053"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f503058cdefa625754693463ba5799a98d16c8d1", "fields": {"nom_de_la_commune": "LE BOSC RENOULT", "libell_d_acheminement": "LE BOSC RENOULT", "code_postal": "61470", "coordonnees_gps": [48.9094876471, 0.356722862934], "code_commune_insee": "61054"}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "362a652b2ce6b10b68e3c2025349379bece93571", "fields": {"nom_de_la_commune": "CARROUGES", "libell_d_acheminement": "CARROUGES", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61074"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f483a9e469c2e026c3be96e7d7771312ce595f81", "fields": {"nom_de_la_commune": "CHAHAINS", "libell_d_acheminement": "CHAHAINS", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61080"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49e8635ee4328ab1f862f39ec2285cdca836c8f", "fields": {"nom_de_la_commune": "LE CHALANGE", "libell_d_acheminement": "LE CHALANGE", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61082"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f50f2a1c86f6e18dd1fe41a587c4195bd468f3", "fields": {"nom_de_la_commune": "CHAMPEAUX SUR SARTHE", "libell_d_acheminement": "CHAMPEAUX SUR SARTHE", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61087"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a7850184de74a529182e5857abdf2fc33e94b24", "fields": {"nom_de_la_commune": "CHAMP HAUT", "libell_d_acheminement": "CHAMP HAUT", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61088"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61194c6bc6abb387d63643c1e2ba9e9f832b2a23", "fields": {"nom_de_la_commune": "LE CHATELLIER", "libell_d_acheminement": "LE CHATELLIER", "code_postal": "61450", "coordonnees_gps": [48.6630002344, -0.54676985736], "code_commune_insee": "61102"}, "geometry": {"type": "Point", "coordinates": [-0.54676985736, 48.6630002344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4853e4a616e55a1c7bca317053107d61a4833cd1", "fields": {"nom_de_la_commune": "ST BROING LES MOINES", "libell_d_acheminement": "ST BROING LES MOINES", "code_postal": "21290", "coordonnees_gps": [47.7771591309, 4.86629964866], "code_commune_insee": "21543"}, "geometry": {"type": "Point", "coordinates": [4.86629964866, 47.7771591309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb4472cbe8992b0effcef9c6d801eecdb3c0187c", "fields": {"nom_de_la_commune": "ST HELIER", "libell_d_acheminement": "ST HELIER", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21552"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "698e796d92ab6bc94d800808fa0203492b8a3026", "fields": {"code_postal": "21410", "code_commune_insee": "21559", "libell_d_acheminement": "STE MARIE SUR OUCHE", "ligne_5": "PONT DE PANY", "nom_de_la_commune": "STE MARIE SUR OUCHE", "coordonnees_gps": [47.2781985678, 4.79910147091]}, "geometry": {"type": "Point", "coordinates": [4.79910147091, 47.2781985678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0aaa35bb96fb253e68bd42508ac799207654f00", "fields": {"nom_de_la_commune": "ST MARTIN DE LA MER", "libell_d_acheminement": "ST MARTIN DE LA MER", "code_postal": "21210", "coordonnees_gps": [47.2948283399, 4.25130551986], "code_commune_insee": "21560"}, "geometry": {"type": "Point", "coordinates": [4.25130551986, 47.2948283399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a56e149a3402c3a69ce650ad3fec665e9616bd8", "fields": {"nom_de_la_commune": "ST MESMIN", "libell_d_acheminement": "ST MESMIN", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21563"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d4df155881c742ff8c3de3265e8629fe971504", "fields": {"nom_de_la_commune": "ST SEINE EN BACHE", "libell_d_acheminement": "ST SEINE EN BACHE", "code_postal": "21130", "coordonnees_gps": [47.1834770055, 5.37331909182], "code_commune_insee": "21572"}, "geometry": {"type": "Point", "coordinates": [5.37331909182, 47.1834770055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c96112f575ccb14c15b1278c4bc6cc0a7336f22", "fields": {"nom_de_la_commune": "SALMAISE", "libell_d_acheminement": "SALMAISE", "code_postal": "21690", "coordonnees_gps": [47.4529535112, 4.67833071213], "code_commune_insee": "21580"}, "geometry": {"type": "Point", "coordinates": [4.67833071213, 47.4529535112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9728e65ea2bae16e822e5f48e1a8eb78347fcc6b", "fields": {"nom_de_la_commune": "SAVIGNY LES BEAUNE", "libell_d_acheminement": "SAVIGNY LES BEAUNE", "code_postal": "21420", "coordonnees_gps": [47.0968171399, 4.80502762881], "code_commune_insee": "21590"}, "geometry": {"type": "Point", "coordinates": [4.80502762881, 47.0968171399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65236d881eabef36339ab3418a0e6f539e19987d", "fields": {"nom_de_la_commune": "SAVILLY", "libell_d_acheminement": "SAVILLY", "code_postal": "21430", "coordonnees_gps": [47.1707376827, 4.30105737278], "code_commune_insee": "21593"}, "geometry": {"type": "Point", "coordinates": [4.30105737278, 47.1707376827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d565363b45a0b49613f82228efab52bcc372224", "fields": {"nom_de_la_commune": "SAVOUGES", "libell_d_acheminement": "SAVOUGES", "code_postal": "21910", "coordonnees_gps": [47.1979696302, 5.07760526191], "code_commune_insee": "21596"}, "geometry": {"type": "Point", "coordinates": [5.07760526191, 47.1979696302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0293fd5d8d801566717fac814fc7946760212a", "fields": {"nom_de_la_commune": "SEGROIS", "libell_d_acheminement": "SEGROIS", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21597"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb702a5f20107accc98fff56d64f7b0bceac324e", "fields": {"nom_de_la_commune": "SEMEZANGES", "libell_d_acheminement": "SEMEZANGES", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21601"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8517a0757dc3daa927bbab0df3487e53f951f908", "fields": {"nom_de_la_commune": "SENAILLY", "libell_d_acheminement": "SENAILLY", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21604"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff09a23c1cd2edd75b4fbeacdd5aae7e7153e01a", "fields": {"nom_de_la_commune": "SEURRE", "libell_d_acheminement": "SEURRE", "code_postal": "21250", "coordonnees_gps": [47.02963123, 5.13269072796], "code_commune_insee": "21607"}, "geometry": {"type": "Point", "coordinates": [5.13269072796, 47.02963123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0efe6f1c157158cef9acb952143bb286cc578d09", "fields": {"nom_de_la_commune": "TART LE BAS", "libell_d_acheminement": "TART LE BAS", "code_postal": "21110", "coordonnees_gps": [47.2252649283, 5.20147793877], "code_commune_insee": "21622"}, "geometry": {"type": "Point", "coordinates": [5.20147793877, 47.2252649283]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ab327eed6a8393339af7bf31e702553d8d804b", "fields": {"nom_de_la_commune": "THOSTE", "libell_d_acheminement": "THOSTE", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21635"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a94dada27400fcb1a0f249b02f7442eb31ac0e5", "fields": {"nom_de_la_commune": "TORCY ET POULIGNY", "libell_d_acheminement": "TORCY ET POULIGNY", "code_postal": "21460", "coordonnees_gps": [47.4940261955, 4.19113909206], "code_commune_insee": "21640"}, "geometry": {"type": "Point", "coordinates": [4.19113909206, 47.4940261955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "807b69772b73afc0703e8730030e22358f5b67de", "fields": {"nom_de_la_commune": "TOUILLON", "libell_d_acheminement": "TOUILLON", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21641"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f67dd83c647ef9fbfbfbeef6177c2e22000a0290", "fields": {"nom_de_la_commune": "TROCHERES", "libell_d_acheminement": "TROCHERES", "code_postal": "21310", "coordonnees_gps": [47.4135276704, 5.30378437113], "code_commune_insee": "21644"}, "geometry": {"type": "Point", "coordinates": [5.30378437113, 47.4135276704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1092c42592f62065b62109198ec2d6a6c6bb05", "fields": {"nom_de_la_commune": "TURCEY", "libell_d_acheminement": "TURCEY", "code_postal": "21540", "coordonnees_gps": [47.3349321244, 4.69502718372], "code_commune_insee": "21648"}, "geometry": {"type": "Point", "coordinates": [4.69502718372, 47.3349321244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2706ffe50f7b4366c82329015b93b09bc9bcbfbe", "fields": {"nom_de_la_commune": "URCY", "libell_d_acheminement": "URCY", "code_postal": "21220", "coordonnees_gps": [47.2087168441, 4.90170197138], "code_commune_insee": "21650"}, "geometry": {"type": "Point", "coordinates": [4.90170197138, 47.2087168441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f141052673c1e64c08ab5a8ef6b9b34d9d5c6b43", "fields": {"nom_de_la_commune": "VANDENESSE EN AUXOIS", "libell_d_acheminement": "VANDENESSE EN AUXOIS", "code_postal": "21320", "coordonnees_gps": [47.2482878105, 4.52453849504], "code_commune_insee": "21652"}, "geometry": {"type": "Point", "coordinates": [4.52453849504, 47.2482878105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f3a0e098c9871888e7f22f27d0ee1210dc3fdc0", "fields": {"nom_de_la_commune": "VANNAIRE", "libell_d_acheminement": "VANNAIRE", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21653"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e78f69c848d520043438bc1adf1ee51599e1f72", "fields": {"nom_de_la_commune": "VERNOT", "libell_d_acheminement": "VERNOT", "code_postal": "21120", "coordonnees_gps": [47.5246077916, 5.06638520589], "code_commune_insee": "21666"}, "geometry": {"type": "Point", "coordinates": [5.06638520589, 47.5246077916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a135f56722a1ed55597a672b59add6d5ba25fc86", "fields": {"nom_de_la_commune": "VERONNES", "libell_d_acheminement": "VERONNES", "code_postal": "21260", "coordonnees_gps": [47.5891653686, 5.22743421512], "code_commune_insee": "21667"}, "geometry": {"type": "Point", "coordinates": [5.22743421512, 47.5891653686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfc58fbc0c89de81b588718d35466138c75e4bb2", "fields": {"nom_de_la_commune": "VERTAULT", "libell_d_acheminement": "VERTAULT", "code_postal": "21330", "coordonnees_gps": [47.8578129541, 4.38580271008], "code_commune_insee": "21671"}, "geometry": {"type": "Point", "coordinates": [4.38580271008, 47.8578129541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "483695b8d6b8436b5b40f188807ae75045189eae", "fields": {"nom_de_la_commune": "VIC SOUS THIL", "libell_d_acheminement": "VIC SOUS THIL", "code_postal": "21390", "coordonnees_gps": [47.3861852885, 4.34360697094], "code_commune_insee": "21678"}, "geometry": {"type": "Point", "coordinates": [4.34360697094, 47.3861852885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07effad8968a8f35191662610fbb9e559a0e5661", "fields": {"nom_de_la_commune": "VILLAINES EN DUESMOIS", "libell_d_acheminement": "VILLAINES EN DUESMOIS", "code_postal": "21450", "coordonnees_gps": [47.6254766519, 4.61551483547], "code_commune_insee": "21685"}, "geometry": {"type": "Point", "coordinates": [4.61551483547, 47.6254766519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25dcd6d0568614c41ffe9216c1c80efe55f447de", "fields": {"nom_de_la_commune": "VILLAINES LES PREVOTES", "libell_d_acheminement": "VILLAINES LES PREVOTES", "code_postal": "21500", "coordonnees_gps": [47.6439282902, 4.34417525455], "code_commune_insee": "21686"}, "geometry": {"type": "Point", "coordinates": [4.34417525455, 47.6439282902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "764897ede53ad27ac1bbee26dcc1070c0c9f0bf2", "fields": {"nom_de_la_commune": "VILLEFERRY", "libell_d_acheminement": "VILLEFERRY", "code_postal": "21350", "coordonnees_gps": [47.3845616355, 4.53627636917], "code_commune_insee": "21694"}, "geometry": {"type": "Point", "coordinates": [4.53627636917, 47.3845616355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68d22a6b4093e0d06c5910040184bcd8cf1332e", "fields": {"nom_de_la_commune": "VIX", "libell_d_acheminement": "VIX", "code_postal": "21400", "coordonnees_gps": [47.8293511991, 4.58938834331], "code_commune_insee": "21711"}, "geometry": {"type": "Point", "coordinates": [4.58938834331, 47.8293511991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dd827e6412b1ad3a62ccc81f27c2f7dbda1e909", "fields": {"nom_de_la_commune": "VOUGEOT", "libell_d_acheminement": "VOUGEOT", "code_postal": "21640", "coordonnees_gps": [47.1699047121, 4.99001555579], "code_commune_insee": "21716"}, "geometry": {"type": "Point", "coordinates": [4.99001555579, 47.1699047121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c20ee479bff83e509b90621809ee34f10773cab", "fields": {"code_postal": "22140", "code_commune_insee": "22004", "libell_d_acheminement": "BEGARD", "ligne_5": "BOTLEZAN", "nom_de_la_commune": "BEGARD", "coordonnees_gps": [48.6535314003, -3.30873251878]}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af33e57cc407af1e13dad2da7afe895af09d2f8f", "fields": {"code_postal": "22140", "code_commune_insee": "22004", "libell_d_acheminement": "BEGARD", "ligne_5": "TREZELAN", "nom_de_la_commune": "BEGARD", "coordonnees_gps": [48.6535314003, -3.30873251878]}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d27aeea4756fb20bea5dda932bb0acf57dcc28ff", "fields": {"nom_de_la_commune": "BRINGOLO", "libell_d_acheminement": "BRINGOLO", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22019"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35d33a24c6b4997cc6937344e9a71a3dd63793f", "fields": {"nom_de_la_commune": "BROONS", "libell_d_acheminement": "BROONS", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22020"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b200f2eeb69143117babaf7134ae9d17d0748f", "fields": {"nom_de_la_commune": "BRUSVILY", "libell_d_acheminement": "BRUSVILY", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22021"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d4081552b05625c637abaf0a9a690aafd92a948", "fields": {"nom_de_la_commune": "CALANHEL", "libell_d_acheminement": "CALANHEL", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22024"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9441b477f48f8eb6ee12745f4ea8e51d2cd1d348", "fields": {"nom_de_la_commune": "LE CAMBOUT", "libell_d_acheminement": "LE CAMBOUT", "code_postal": "22210", "coordonnees_gps": [48.1328117448, -2.60089281473], "code_commune_insee": "22027"}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ffcd0c8a84711c2ecd9350b854471173b183c8c", "fields": {"nom_de_la_commune": "CAVAN", "libell_d_acheminement": "CAVAN", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22034"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8f41ab644df0efc776fcb844c36660d013762ca", "fields": {"nom_de_la_commune": "LA CHAPELLE BLANCHE", "libell_d_acheminement": "LA CHAPELLE BLANCHE", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22036"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba1e1a49869c46b8b466b86750f9b960d4cce0b6", "fields": {"nom_de_la_commune": "LA CHAPELLE NEUVE", "libell_d_acheminement": "LA CHAPELLE NEUVE", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22037"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "736f40e2b006d2915e007bebab18324b55c7a81e", "fields": {"nom_de_la_commune": "CHATELAUDREN", "libell_d_acheminement": "CHATELAUDREN", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22038"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c5b35136352af0a1e68d1104da2049a597cac7f", "fields": {"nom_de_la_commune": "LA CHEZE", "libell_d_acheminement": "LA CHEZE", "code_postal": "22210", "coordonnees_gps": [48.1328117448, -2.60089281473], "code_commune_insee": "22039"}, "geometry": {"type": "Point", "coordinates": [-2.60089281473, 48.1328117448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dcf4f5685fb692c465f5734c02b0a44efd156a0", "fields": {"nom_de_la_commune": "COHINIAC", "libell_d_acheminement": "COHINIAC", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22045"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44dfc82cff21ee84b5df196441a1dfd2ec3470b1", "fields": {"code_postal": "22330", "code_commune_insee": "22046", "libell_d_acheminement": "LE MENE", "ligne_5": "ST GOUENO", "nom_de_la_commune": "LE MENE", "coordonnees_gps": [48.2940419885, -2.52352704227]}, "geometry": {"type": "Point", "coordinates": [-2.52352704227, 48.2940419885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "203da63233a2ac0c0742ab2295a5c97278555222", "fields": {"nom_de_la_commune": "EVRAN", "libell_d_acheminement": "EVRAN", "code_postal": "22630", "coordonnees_gps": [48.3801998567, -1.9978649758], "code_commune_insee": "22056"}, "geometry": {"type": "Point", "coordinates": [-1.9978649758, 48.3801998567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32ca994404c8e223ab8a7bcfb97a5f053db60690", "fields": {"nom_de_la_commune": "GAUSSON", "libell_d_acheminement": "GAUSSON", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22060"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b9d974edc4e461b64a8c73d2b31821b9beef2b", "fields": {"nom_de_la_commune": "GRACES", "libell_d_acheminement": "GRACES", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22067"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9a1fb96325da799b4c5e7617197aca4efd81cee", "fields": {"nom_de_la_commune": "GUENROC", "libell_d_acheminement": "GUENROC", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22069"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f90de784b0ccd1380262361de159ff8268f2c74", "fields": {"nom_de_la_commune": "GUITTE", "libell_d_acheminement": "GUITTE", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22071"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "688951cbb59f125062fec1dbd03b09adb0755b39", "fields": {"nom_de_la_commune": "GURUNHUEL", "libell_d_acheminement": "GURUNHUEL", "code_postal": "22390", "coordonnees_gps": [48.476204135, -3.22431130001], "code_commune_insee": "22072"}, "geometry": {"type": "Point", "coordinates": [-3.22431130001, 48.476204135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5317fb1d74279c31f6364ac8e2fbbf552c3c1bd0", "fields": {"nom_de_la_commune": "LA HARMOYE", "libell_d_acheminement": "LA HARMOYE", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22073"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51f2ad809dc15a5cd0f56972be3d020a2e7cd2f", "fields": {"nom_de_la_commune": "HENGOAT", "libell_d_acheminement": "HENGOAT", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22078"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "951417cae51f31ece4f2ccca8c5d6fefae8181f4", "fields": {"code_postal": "22120", "code_commune_insee": "22081", "libell_d_acheminement": "HILLION", "ligne_5": "ST RENE HILLION", "nom_de_la_commune": "HILLION", "coordonnees_gps": [48.462144605, -2.65332605915]}, "geometry": {"type": "Point", "coordinates": [-2.65332605915, 48.462144605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3da4fe102dd16a48b26373095a52a7eb6f79487", "fields": {"nom_de_la_commune": "ILLIFAUT", "libell_d_acheminement": "ILLIFAUT", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22083"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74020b1882cc9c224864d6c4f01b9de73bf0bda", "fields": {"nom_de_la_commune": "JUGON LES LACS COMMUNE NOUVELLE", "libell_d_acheminement": "JUGON LES LACS COMMUNE NOUVELLE", "code_postal": "22270", "coordonnees_gps": [48.4388729687, -2.34282802999], "code_commune_insee": "22084"}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89fb612ce71bedb083fc04aaaf72eb2a95eda826", "fields": {"code_postal": "22270", "code_commune_insee": "22084", "libell_d_acheminement": "JUGON LES LACS COMMUNE NOUVELLE", "ligne_5": "ST IGNEUC", "nom_de_la_commune": "JUGON LES LACS COMMUNE NOUVELLE", "coordonnees_gps": [48.4388729687, -2.34282802999]}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab34655088aafe5a6698a6b0fd2e99abfe5f74b0", "fields": {"nom_de_la_commune": "LAMBALLE", "libell_d_acheminement": "LAMBALLE", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22093"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e08c40feac3664f7652ee489fcfd72a5ad17736a", "fields": {"nom_de_la_commune": "LANGAST", "libell_d_acheminement": "LANGAST", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22100"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b131556bf7b45293175252221e8b23714aa3267", "fields": {"nom_de_la_commune": "LANGUENAN", "libell_d_acheminement": "LANGUENAN", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22105"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5809bcf87f172ab0c81fa57d5f4d71fda66409a4", "fields": {"code_postal": "22360", "code_commune_insee": "22106", "libell_d_acheminement": "LANGUEUX", "ligne_5": "LES GREVES LANGUEUX", "nom_de_la_commune": "LANGUEUX", "coordonnees_gps": [48.5000567544, -2.71042685567]}, "geometry": {"type": "Point", "coordinates": [-2.71042685567, 48.5000567544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5f4f6d6e3c800bfc96ddc3f7924207f8c6d77c", "fields": {"nom_de_la_commune": "LANNEBERT", "libell_d_acheminement": "LANNEBERT", "code_postal": "22290", "coordonnees_gps": [48.6429086341, -3.01242249984], "code_commune_insee": "22112"}, "geometry": {"type": "Point", "coordinates": [-3.01242249984, 48.6429086341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb1755680199bc9eab8598501c2bb0151d8e1c20", "fields": {"nom_de_la_commune": "LANRELAS", "libell_d_acheminement": "LANRELAS", "code_postal": "22250", "coordonnees_gps": [48.29465079, -2.28295699224], "code_commune_insee": "22114"}, "geometry": {"type": "Point", "coordinates": [-2.28295699224, 48.29465079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817d54c8a9886a638579c2a585370a261e60b327", "fields": {"nom_de_la_commune": "LE LESLAY", "libell_d_acheminement": "LE LESLAY", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22126"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "130562448193274d18f8e7b7833f6b0d38f6243a", "fields": {"nom_de_la_commune": "LOC ENVEL", "libell_d_acheminement": "LOC ENVEL", "code_postal": "22810", "coordonnees_gps": [48.5216835739, -3.40784365182], "code_commune_insee": "22129"}, "geometry": {"type": "Point", "coordinates": [-3.40784365182, 48.5216835739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7377b4163878700eeb2cd343bbdb3ba556097d79", "fields": {"nom_de_la_commune": "LOSCOUET SUR MEU", "libell_d_acheminement": "LOSCOUET SUR MEU", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22133"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab253210e7334d99ac1660a5e7b33ebc8370254c", "fields": {"nom_de_la_commune": "MEGRIT", "libell_d_acheminement": "MEGRIT", "code_postal": "22270", "coordonnees_gps": [48.4388729687, -2.34282802999], "code_commune_insee": "22145"}, "geometry": {"type": "Point", "coordinates": [-2.34282802999, 48.4388729687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e91f42ffdd91c40010bbb88c20c2a0998d89f5f6", "fields": {"nom_de_la_commune": "PABU", "libell_d_acheminement": "PABU", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22161"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b7948d9cfc4154a2cb6beb8c6a0db52cf6e0273", "fields": {"nom_de_la_commune": "PENGUILY", "libell_d_acheminement": "PENGUILY", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22165"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbe7207f11375ee90ee260cd79c0d8ec646ac20e", "fields": {"nom_de_la_commune": "PENVENAN", "libell_d_acheminement": "PENVENAN", "code_postal": "22710", "coordonnees_gps": [48.815824264, -3.30211967596], "code_commune_insee": "22166"}, "geometry": {"type": "Point", "coordinates": [-3.30211967596, 48.815824264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa0d50904dcaaba497bed3d92ce83ae8454146c7", "fields": {"nom_de_la_commune": "PLAINE HAUTE", "libell_d_acheminement": "PLAINE HAUTE", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22170"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "496278336577a201ce251a642f112423aeaadec0", "fields": {"nom_de_la_commune": "PLANGUENOUAL", "libell_d_acheminement": "PLANGUENOUAL", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22173"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3c380fb93a38c3d94666330c0c04c535d334be6", "fields": {"nom_de_la_commune": "FREHEL", "libell_d_acheminement": "FREHEL", "code_postal": "22240", "coordonnees_gps": [48.6228539052, -2.37843201672], "code_commune_insee": "22179"}, "geometry": {"type": "Point", "coordinates": [-2.37843201672, 48.6228539052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43acd1083cc64de816fd02f56480fed6e097281a", "fields": {"code_postal": "22240", "code_commune_insee": "22179", "libell_d_acheminement": "FREHEL", "ligne_5": "LA CARQUOIS", "nom_de_la_commune": "FREHEL", "coordonnees_gps": [48.6228539052, -2.37843201672]}, "geometry": {"type": "Point", "coordinates": [-2.37843201672, 48.6228539052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da0390fb551672284277eb1c659c2be2b7e2c95", "fields": {"nom_de_la_commune": "PLENEUF VAL ANDRE", "libell_d_acheminement": "PLENEUF VAL ANDRE", "code_postal": "22370", "coordonnees_gps": [48.5838806672, -2.52922353223], "code_commune_insee": "22186"}, "geometry": {"type": "Point", "coordinates": [-2.52922353223, 48.5838806672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "830bd8b8b72f3372ba2f97e5f01f6db3b5db4cca", "fields": {"nom_de_la_commune": "PLERIN", "libell_d_acheminement": "PLERIN", "code_postal": "22190", "coordonnees_gps": [48.5437270249, -2.77055983387], "code_commune_insee": "22187"}, "geometry": {"type": "Point", "coordinates": [-2.77055983387, 48.5437270249]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d530178a9a505c52e624505693a6743a607c820e", "fields": {"nom_de_la_commune": "PLERNEUF", "libell_d_acheminement": "PLERNEUF", "code_postal": "22170", "coordonnees_gps": [48.5200598595, -2.97473935214], "code_commune_insee": "22188"}, "geometry": {"type": "Point", "coordinates": [-2.97473935214, 48.5200598595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cf5409743109df2fe69da29b3d94286a3d87a8", "fields": {"nom_de_la_commune": "PLESLIN TRIGAVOU", "libell_d_acheminement": "PLESLIN TRIGAVOU", "code_postal": "22490", "coordonnees_gps": [48.5318949869, -2.03987229623], "code_commune_insee": "22190"}, "geometry": {"type": "Point", "coordinates": [-2.03987229623, 48.5318949869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10a3c7feb8d698908b26b31a8e2b585a15ef3909", "fields": {"code_postal": "22310", "code_commune_insee": "22194", "libell_d_acheminement": "PLESTIN LES GREVES", "ligne_5": "ST EFFLAM", "nom_de_la_commune": "PLESTIN LES GREVES", "coordonnees_gps": [48.6314281059, -3.60402882378]}, "geometry": {"type": "Point", "coordinates": [-3.60402882378, 48.6314281059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58b2bee9df3e5278d8712ddca9e9d2a61eda55cf", "fields": {"code_postal": "22560", "code_commune_insee": "22198", "libell_d_acheminement": "PLEUMEUR BODOU", "ligne_5": "LANDRELLEC", "nom_de_la_commune": "PLEUMEUR BODOU", "coordonnees_gps": [48.7801847576, -3.53025413579]}, "geometry": {"type": "Point", "coordinates": [-3.53025413579, 48.7801847576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da034ff1d8f7cb96de3d8703429758c4916f5d0", "fields": {"nom_de_la_commune": "PLEUMEUR GAUTIER", "libell_d_acheminement": "PLEUMEUR GAUTIER", "code_postal": "22740", "coordonnees_gps": [48.7862156131, -3.14241829352], "code_commune_insee": "22199"}, "geometry": {"type": "Point", "coordinates": [-3.14241829352, 48.7862156131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b59a878a7d28b24265c7a6b7b54e369f798557b8", "fields": {"nom_de_la_commune": "PLEVENON", "libell_d_acheminement": "PLEVENON", "code_postal": "22240", "coordonnees_gps": [48.6228539052, -2.37843201672], "code_commune_insee": "22201"}, "geometry": {"type": "Point", "coordinates": [-2.37843201672, 48.6228539052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fb84d8c08db2e4dbe9683e8270bbc4ddddb3b8d", "fields": {"nom_de_la_commune": "PLOEUC L HERMITAGE", "libell_d_acheminement": "PLOEUC L HERMITAGE", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22203"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf074cbd23033518b043925671ed944ff6a6c118", "fields": {"nom_de_la_commune": "PLOEZAL", "libell_d_acheminement": "PLOEZAL", "code_postal": "22260", "coordonnees_gps": [48.6934931842, -3.15876407926], "code_commune_insee": "22204"}, "geometry": {"type": "Point", "coordinates": [-3.15876407926, 48.6934931842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9cbdcec411f8c05f3a0c41394b6483e37b01f1f", "fields": {"nom_de_la_commune": "PLOREC SUR ARGUENON", "libell_d_acheminement": "PLOREC SUR ARGUENON", "code_postal": "22130", "coordonnees_gps": [48.5018114443, -2.22650086557], "code_commune_insee": "22205"}, "geometry": {"type": "Point", "coordinates": [-2.22650086557, 48.5018114443]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be362222040dcfa55370707395224c9c3e594a9", "fields": {"nom_de_la_commune": "PLOUBAZLANEC", "libell_d_acheminement": "PLOUBAZLANEC", "code_postal": "22620", "coordonnees_gps": [48.8054371509, -3.04487100542], "code_commune_insee": "22210"}, "geometry": {"type": "Point", "coordinates": [-3.04487100542, 48.8054371509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9474cb1d317e9767d5a9c24a8f5c478823841da0", "fields": {"nom_de_la_commune": "PLOUEZEC", "libell_d_acheminement": "PLOUEZEC", "code_postal": "22470", "coordonnees_gps": [48.7387311378, -2.97896349388], "code_commune_insee": "22214"}, "geometry": {"type": "Point", "coordinates": [-2.97896349388, 48.7387311378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7bd35b9b06fae4e48ff3ebf5cb34a8419931a82", "fields": {"nom_de_la_commune": "PLOUFRAGAN", "libell_d_acheminement": "PLOUFRAGAN", "code_postal": "22440", "coordonnees_gps": [48.4956130543, -2.82108365648], "code_commune_insee": "22215"}, "geometry": {"type": "Point", "coordinates": [-2.82108365648, 48.4956130543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c926bff2da835afa382ceb38826edff4ea9899b", "fields": {"code_postal": "22440", "code_commune_insee": "22215", "libell_d_acheminement": "PLOUFRAGAN", "ligne_5": "LES CROIX", "nom_de_la_commune": "PLOUFRAGAN", "coordonnees_gps": [48.4956130543, -2.82108365648]}, "geometry": {"type": "Point", "coordinates": [-2.82108365648, 48.4956130543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "269e75768e23a2ca574832d3c3c37e581bb3b2a9", "fields": {"nom_de_la_commune": "PLOUGUENAST", "libell_d_acheminement": "PLOUGUENAST", "code_postal": "22150", "coordonnees_gps": [48.3345820629, -2.7121618919], "code_commune_insee": "22219"}, "geometry": {"type": "Point", "coordinates": [-2.7121618919, 48.3345820629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769490de48294f0733ecb10368069563fc32534c", "fields": {"nom_de_la_commune": "PLOURIVO", "libell_d_acheminement": "PLOURIVO", "code_postal": "22860", "coordonnees_gps": [48.7413548455, -3.09260877353], "code_commune_insee": "22233"}, "geometry": {"type": "Point", "coordinates": [-3.09260877353, 48.7413548455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d89398d4b36b39a9139ec03d2af3b463c7eed1b", "fields": {"nom_de_la_commune": "PLUSQUELLEC", "libell_d_acheminement": "PLUSQUELLEC", "code_postal": "22160", "coordonnees_gps": [48.4067691027, -3.43390570871], "code_commune_insee": "22243"}, "geometry": {"type": "Point", "coordinates": [-3.43390570871, 48.4067691027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cb94c450055dad492da8d16213c9823e6453570", "fields": {"nom_de_la_commune": "PLUSSULIEN", "libell_d_acheminement": "PLUSSULIEN", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22244"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a46c1a58bfb4bd86c3da2888cdb50734e9a7528", "fields": {"nom_de_la_commune": "PONTRIEUX", "libell_d_acheminement": "PONTRIEUX", "code_postal": "22260", "coordonnees_gps": [48.6934931842, -3.15876407926], "code_commune_insee": "22250"}, "geometry": {"type": "Point", "coordinates": [-3.15876407926, 48.6934931842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d98ab329a97fef47fbd924509c996b2352935873", "fields": {"nom_de_la_commune": "PORDIC", "libell_d_acheminement": "PORDIC", "code_postal": "22590", "coordonnees_gps": [48.5695461938, -2.84144566596], "code_commune_insee": "22251"}, "geometry": {"type": "Point", "coordinates": [-2.84144566596, 48.5695461938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df3900c8f905b0c014838fd4e1787b5072e2542e", "fields": {"nom_de_la_commune": "PRAT", "libell_d_acheminement": "PRAT", "code_postal": "22140", "coordonnees_gps": [48.6535314003, -3.30873251878], "code_commune_insee": "22254"}, "geometry": {"type": "Point", "coordinates": [-3.30873251878, 48.6535314003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "194db698ac8ab9ad98cbafa05b5abe73d7ee1b8e", "fields": {"nom_de_la_commune": "QUEMPERVEN", "libell_d_acheminement": "QUEMPERVEN", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22257"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f537a8f6be39d19e6c22211da9aad142c8fb97d", "fields": {"code_postal": "22120", "code_commune_insee": "22258", "libell_d_acheminement": "QUESSOY", "ligne_5": "L HOPITAL", "nom_de_la_commune": "QUESSOY", "coordonnees_gps": [48.462144605, -2.65332605915]}, "geometry": {"type": "Point", "coordinates": [-2.65332605915, 48.462144605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272641983cdefbf56604e9aa77344585e371b9b0", "fields": {"nom_de_la_commune": "QUINTENIC", "libell_d_acheminement": "QUINTENIC", "code_postal": "22400", "coordonnees_gps": [48.5016489284, -2.50647227729], "code_commune_insee": "22261"}, "geometry": {"type": "Point", "coordinates": [-2.50647227729, 48.5016489284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d002d721ada01a4833afde8b42fbe37dc3a114e", "fields": {"nom_de_la_commune": "MONTFROC", "libell_d_acheminement": "MONTFROC", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26200"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ad59038ac4bda8eda9683096c8beeb9d2f3828", "fields": {"nom_de_la_commune": "MONTJOUX", "libell_d_acheminement": "MONTJOUX", "code_postal": "26220", "coordonnees_gps": [44.5059252728, 5.12194208681], "code_commune_insee": "26202"}, "geometry": {"type": "Point", "coordinates": [5.12194208681, 44.5059252728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7afd5953df19c54121ee263b7fe0d656f00aa65b", "fields": {"nom_de_la_commune": "MONTMAUR EN DIOIS", "libell_d_acheminement": "MONTMAUR EN DIOIS", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26205"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db747b3ffd903b0f52a6aea84243abb50b1881a", "fields": {"nom_de_la_commune": "MONTOISON", "libell_d_acheminement": "MONTOISON", "code_postal": "26800", "coordonnees_gps": [44.8326704656, 4.89052463788], "code_commune_insee": "26208"}, "geometry": {"type": "Point", "coordinates": [4.89052463788, 44.8326704656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "372c874c31dda9e3f95a9ef43ab0298444466a16", "fields": {"nom_de_la_commune": "MONTRIGAUD", "libell_d_acheminement": "MONTRIGAUD", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26210"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10104060e3c34bf83769b79b78da91edc92955a2", "fields": {"nom_de_la_commune": "MORNANS", "libell_d_acheminement": "MORNANS", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26214"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b663482c90eca4f4cf040e310fb3d91d1c0b0c17", "fields": {"nom_de_la_commune": "MUREILS", "libell_d_acheminement": "MUREILS", "code_postal": "26240", "coordonnees_gps": [45.1864570601, 4.87999044295], "code_commune_insee": "26219"}, "geometry": {"type": "Point", "coordinates": [4.87999044295, 45.1864570601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58adee51758e5fb733f7c25725ba8ca5b324d4e0", "fields": {"nom_de_la_commune": "PEYRINS", "libell_d_acheminement": "PEYRINS", "code_postal": "26380", "coordonnees_gps": [45.1000761768, 5.04599201889], "code_commune_insee": "26231"}, "geometry": {"type": "Point", "coordinates": [5.04599201889, 45.1000761768]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d129aea6f3d02ff01bd4543c4fbfd02dd0db3305", "fields": {"nom_de_la_commune": "PIERRELONGUE", "libell_d_acheminement": "PIERRELONGUE", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26236"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6063786409417d989d0f9644c9cbd90f74c321a0", "fields": {"nom_de_la_commune": "LE POET CELARD", "libell_d_acheminement": "LE POET CELARD", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26241"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f52383120573ec563a99cb5c8de704c682bce662", "fields": {"nom_de_la_commune": "POMMEROL", "libell_d_acheminement": "POMMEROL", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26245"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb55fa42c8a738abf9546046b174234f687ae4d6", "fields": {"nom_de_la_commune": "REAUVILLE", "libell_d_acheminement": "REAUVILLE", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26261"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51ce602fd7ff18139598e06fb141f47578410455", "fields": {"nom_de_la_commune": "LA ROCHETTE DU BUIS", "libell_d_acheminement": "LA ROCHETTE DU BUIS", "code_postal": "26170", "coordonnees_gps": [44.2693824424, 5.33633077285], "code_commune_insee": "26279"}, "geometry": {"type": "Point", "coordinates": [5.33633077285, 44.2693824424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cfd1b5ef3e368b1d78bf00aea32407eb87e5f5c", "fields": {"nom_de_la_commune": "ROTTIER", "libell_d_acheminement": "ROTTIER", "code_postal": "26470", "coordonnees_gps": [44.510537589, 5.37807695992], "code_commune_insee": "26283"}, "geometry": {"type": "Point", "coordinates": [5.37807695992, 44.510537589]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "276c7ac5f777c9611aeac13c01c33a7f59373cc8", "fields": {"nom_de_la_commune": "ROUSSAS", "libell_d_acheminement": "ROUSSAS", "code_postal": "26230", "coordonnees_gps": [44.4372271698, 4.86109412178], "code_commune_insee": "26284"}, "geometry": {"type": "Point", "coordinates": [4.86109412178, 44.4372271698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f0c8290861f86e008bffd48ab0557295ebb6d02", "fields": {"nom_de_la_commune": "ST AGNAN EN VERCORS", "libell_d_acheminement": "ST AGNAN EN VERCORS", "code_postal": "26420", "coordonnees_gps": [44.9365927101, 5.42231201851], "code_commune_insee": "26290"}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "849259f1a28572abfc8d1e68397bb1ad4d9858a5", "fields": {"code_postal": "26420", "code_commune_insee": "26290", "libell_d_acheminement": "ST AGNAN EN VERCORS", "ligne_5": "ROUSSET EN VERCORS", "nom_de_la_commune": "ST AGNAN EN VERCORS", "coordonnees_gps": [44.9365927101, 5.42231201851]}, "geometry": {"type": "Point", "coordinates": [5.42231201851, 44.9365927101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a1eaff39a4a78e49c7c2a22b39b9d133bf40311", "fields": {"nom_de_la_commune": "ST ANDEOL", "libell_d_acheminement": "ST ANDEOL", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26291"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e6b0dee660614e41dd574b0d2e076cd201126f", "fields": {"nom_de_la_commune": "ST BONNET DE VALCLERIEUX", "libell_d_acheminement": "ST BONNET DE VALCLERIEUX", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26297"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4c19f3e54ee9058fcf786bfff4ad5a0c0340b5b", "fields": {"nom_de_la_commune": "STE CROIX", "libell_d_acheminement": "STE CROIX", "code_postal": "26150", "coordonnees_gps": [44.7765586622, 5.35143868083], "code_commune_insee": "26299"}, "geometry": {"type": "Point", "coordinates": [5.35143868083, 44.7765586622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76757379aeb281911b9d01e991bebb6cb7cc1339", "fields": {"nom_de_la_commune": "ST LAURENT D ONAY", "libell_d_acheminement": "ST LAURENT D ONAY", "code_postal": "26350", "coordonnees_gps": [45.1997135429, 5.09973966534], "code_commune_insee": "26310"}, "geometry": {"type": "Point", "coordinates": [5.09973966534, 45.1997135429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d254365d03a8ca207c95227072be74e6e7bde035", "fields": {"nom_de_la_commune": "ST MARCEL LES VALENCE", "libell_d_acheminement": "ST MARCEL LES VALENCE", "code_postal": "26320", "coordonnees_gps": [44.972353462, 4.95110624516], "code_commune_insee": "26313"}, "geometry": {"type": "Point", "coordinates": [4.95110624516, 44.972353462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c6011bc1bc703e3d66a66607ec577a6507f0c89", "fields": {"nom_de_la_commune": "ST MAY", "libell_d_acheminement": "ST MAY", "code_postal": "26510", "coordonnees_gps": [44.3964498388, 5.38709638398], "code_commune_insee": "26318"}, "geometry": {"type": "Point", "coordinates": [5.38709638398, 44.3964498388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66262b5f81f3bf67508f67fe9c2bf38b570e7a49", "fields": {"nom_de_la_commune": "ST PAUL TROIS CHATEAUX", "libell_d_acheminement": "ST PAUL TROIS CHATEAUX", "code_postal": "26130", "coordonnees_gps": [44.3543801752, 4.80463085245], "code_commune_insee": "26324"}, "geometry": {"type": "Point", "coordinates": [4.80463085245, 44.3543801752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f4259f315d16cca25a2160899c1776fc1b7b489", "fields": {"code_postal": "26270", "code_commune_insee": "26337", "libell_d_acheminement": "SAULCE SUR RHONE", "ligne_5": "LES REYS DE SAULCE", "nom_de_la_commune": "SAULCE SUR RHONE", "coordonnees_gps": [44.7168044995, 4.81795152107]}, "geometry": {"type": "Point", "coordinates": [4.81795152107, 44.7168044995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1c3149703a1001554ed3b17458aecbe24bdcc8", "fields": {"nom_de_la_commune": "SOLERIEUX", "libell_d_acheminement": "SOLERIEUX", "code_postal": "26130", "coordonnees_gps": [44.3543801752, 4.80463085245], "code_commune_insee": "26342"}, "geometry": {"type": "Point", "coordinates": [4.80463085245, 44.3543801752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3968a4266aad196e7827ae2947123fb8819969", "fields": {"nom_de_la_commune": "SOYANS", "libell_d_acheminement": "SOYANS", "code_postal": "26400", "coordonnees_gps": [44.7390283937, 5.06867808375], "code_commune_insee": "26344"}, "geometry": {"type": "Point", "coordinates": [5.06867808375, 44.7390283937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccbe15acf0c2ca4d1c818e9ae8ac85fd856f9f36", "fields": {"nom_de_la_commune": "SUZE LA ROUSSE", "libell_d_acheminement": "SUZE LA ROUSSE", "code_postal": "26790", "coordonnees_gps": [44.2888524342, 4.87321368948], "code_commune_insee": "26345"}, "geometry": {"type": "Point", "coordinates": [4.87321368948, 44.2888524342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcd90459885a55af65a1b2fe8f4cb5aee0daa4e4", "fields": {"nom_de_la_commune": "TAULIGNAN", "libell_d_acheminement": "TAULIGNAN", "code_postal": "26770", "coordonnees_gps": [44.4552603044, 5.0169388976], "code_commune_insee": "26348"}, "geometry": {"type": "Point", "coordinates": [5.0169388976, 44.4552603044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f7fd21f199087961a0a1615f6d18f9a42795e8", "fields": {"nom_de_la_commune": "LES TONILS", "libell_d_acheminement": "LES TONILS", "code_postal": "26460", "coordonnees_gps": [44.5751064728, 5.16903743125], "code_commune_insee": "26351"}, "geometry": {"type": "Point", "coordinates": [5.16903743125, 44.5751064728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f93906f713a71912a21135ada024c8ab1562a874", "fields": {"nom_de_la_commune": "TRIORS", "libell_d_acheminement": "TRIORS", "code_postal": "26750", "coordonnees_gps": [45.1158462426, 5.13160742688], "code_commune_insee": "26355"}, "geometry": {"type": "Point", "coordinates": [5.13160742688, 45.1158462426]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25a98ce9a0bae14c599b79e2e20e1662b422a89c", "fields": {"nom_de_la_commune": "VENTEROL", "libell_d_acheminement": "VENTEROL", "code_postal": "26110", "coordonnees_gps": [44.368677107, 5.19227726266], "code_commune_insee": "26367"}, "geometry": {"type": "Point", "coordinates": [5.19227726266, 44.368677107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba33dc316a2e4e3dcbd05b2ae1c6ef949f221f50", "fields": {"nom_de_la_commune": "VERS SUR MEOUGE", "libell_d_acheminement": "VERS SUR MEOUGE", "code_postal": "26560", "coordonnees_gps": [44.231597824, 5.58201092767], "code_commune_insee": "26372"}, "geometry": {"type": "Point", "coordinates": [5.58201092767, 44.231597824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52a3c0ca4ac73e99a53c9280c335a3c774c00254", "fields": {"nom_de_la_commune": "GERVANS", "libell_d_acheminement": "GERVANS", "code_postal": "26600", "coordonnees_gps": [45.0726066557, 4.88253360628], "code_commune_insee": "26380"}, "geometry": {"type": "Point", "coordinates": [4.88253360628, 45.0726066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07475ffce15bb751b7a476236b596cccf351f717", "fields": {"nom_de_la_commune": "ALIZAY", "libell_d_acheminement": "ALIZAY", "code_postal": "27460", "coordonnees_gps": [49.3216784952, 1.17178716844], "code_commune_insee": "27008"}, "geometry": {"type": "Point", "coordinates": [1.17178716844, 49.3216784952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb36d64c2a5e2fa71a3b560098707d75306d0e5", "fields": {"nom_de_la_commune": "AMFREVILLE LES CHAMPS", "libell_d_acheminement": "AMFREVILLE LES CHAMPS", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27012"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23ac12d13447d6ff155c7d54ea3bd1ad7ae2e14d", "fields": {"nom_de_la_commune": "AMFREVILLE SOUS LES MONTS", "libell_d_acheminement": "AMFREVILLE SOUS LES MONTS", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27013"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c7e3aa5afc9f90462c0165645425cd90933461", "fields": {"nom_de_la_commune": "ANDE", "libell_d_acheminement": "ANDE", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27015"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74bb265d5bf2b8b12bb80a499a19b6a9d7d0b589", "fields": {"nom_de_la_commune": "AULNAY SUR ITON", "libell_d_acheminement": "AULNAY SUR ITON", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27023"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68cfd1ae09f907412215101bf58811137ce353c4", "fields": {"nom_de_la_commune": "AUTHEVERNES", "libell_d_acheminement": "AUTHEVERNES", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27026"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac1989c929984601a5be457b7769cde7de133e34", "fields": {"code_postal": "27240", "code_commune_insee": "27032", "libell_d_acheminement": "CHAMBOIS", "ligne_5": "CORNEUIL", "nom_de_la_commune": "CHAMBOIS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6591b0ec0bde9d65f71371971cdcf3949a30fc0", "fields": {"nom_de_la_commune": "BACQUEPUIS", "libell_d_acheminement": "BACQUEPUIS", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27033"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff59fad05772b0ad1ffa044f3c522dca62c51633", "fields": {"code_postal": "27330", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "ST PIERRE DU MESNIL", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [48.928948419, 0.685983737995]}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04acdaadb3e1a2409feebf1363fbed808931fd2e", "fields": {"code_postal": "27410", "code_commune_insee": "27049", "libell_d_acheminement": "MESNIL EN OUCHE", "ligne_5": "BEAUMESNIL", "nom_de_la_commune": "MESNIL EN OUCHE", "coordonnees_gps": [49.0064963225, 0.739265680908]}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88db6eb639afc068490b75e3461ee603887da006", "fields": {"nom_de_la_commune": "LE BOIS HELLAIN", "libell_d_acheminement": "LE BOIS HELLAIN", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27071"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015b74f25928f0ae0d239475d19ee2cc675249b4", "fields": {"nom_de_la_commune": "BOIS JEROME ST OUEN", "libell_d_acheminement": "BOIS JEROME ST OUEN", "code_postal": "27620", "coordonnees_gps": [49.0961129794, 1.56718347503], "code_commune_insee": "27072"}, "geometry": {"type": "Point", "coordinates": [1.56718347503, 49.0961129794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fabb63d955b4245feeca54c12aac1dd9c68762cc", "fields": {"code_postal": "27520", "code_commune_insee": "27105", "libell_d_acheminement": "GRAND BOURGTHEROULDE", "ligne_5": "INFREVILLE", "nom_de_la_commune": "GRAND BOURGTHEROULDE", "coordonnees_gps": [49.2823225842, 0.820810148087]}, "geometry": {"type": "Point", "coordinates": [0.820810148087, 49.2823225842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b768e653214ab77bc9bc58c47922e9f467981962", "fields": {"nom_de_la_commune": "BOURNAINVILLE FAVEROLLES", "libell_d_acheminement": "BOURNAINVILLE FAVEROLLES", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27106"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c6f35ac7a35f754566adef88e9f0e627328be18", "fields": {"nom_de_la_commune": "BREUX SUR AVRE", "libell_d_acheminement": "BREUX SUR AVRE", "code_postal": "27570", "coordonnees_gps": [48.7688437949, 1.05443864674], "code_commune_insee": "27115"}, "geometry": {"type": "Point", "coordinates": [1.05443864674, 48.7688437949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1fd7d9635ec683ca953941cd65ef82da531d469", "fields": {"nom_de_la_commune": "CALLEVILLE", "libell_d_acheminement": "CALLEVILLE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27125"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aaab87735dfc123ad1ebe261ffe64260d2e0ce1", "fields": {"nom_de_la_commune": "CAMPIGNY", "libell_d_acheminement": "CAMPIGNY", "code_postal": "27500", "coordonnees_gps": [49.3519408405, 0.530523220775], "code_commune_insee": "27126"}, "geometry": {"type": "Point", "coordinates": [0.530523220775, 49.3519408405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2192d8a6e4669e36ed17c70ad19ec581bb21aa1f", "fields": {"nom_de_la_commune": "CANAPPEVILLE", "libell_d_acheminement": "CANAPPEVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27127"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b826e655ec6c20ebec472005ed33475da6a75bd8", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "27310", "coordonnees_gps": [49.3596105697, 0.832082294949], "code_commune_insee": "27133"}, "geometry": {"type": "Point", "coordinates": [0.832082294949, 49.3596105697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50742294867b8e3c7666479600e4895ffae6f5aa", "fields": {"nom_de_la_commune": "CAUVERVILLE EN ROUMOIS", "libell_d_acheminement": "CAUVERVILLE EN ROUMOIS", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27134"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a250f4edf0d0ae29fbf8716b1e645e346f530a6", "fields": {"nom_de_la_commune": "CHAMPIGNOLLES", "libell_d_acheminement": "CHAMPIGNOLLES", "code_postal": "27330", "coordonnees_gps": [48.928948419, 0.685983737995], "code_commune_insee": "27143"}, "geometry": {"type": "Point", "coordinates": [0.685983737995, 48.928948419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ec80ede799f3cbd1d2b44a5ea9c5f3aaea3fdd8", "fields": {"nom_de_la_commune": "LA CHAPELLE BAYVEL", "libell_d_acheminement": "LA CHAPELLE BAYVEL", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27146"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4327287b91c430e03501751597f0c14cbde9567c", "fields": {"nom_de_la_commune": "LA CHAPELLE DU BOIS DES FAULX", "libell_d_acheminement": "LA CHAPELLE DU BOIS DES FAULX", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27147"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d214887f3c0afb79e3ee3188b5298c53abfcdd8e", "fields": {"nom_de_la_commune": "LA CHAPELLE REANVILLE", "libell_d_acheminement": "LA CHAPELLE REANVILLE", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27150"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d88fb3e85a261a61d1c6658f14dd9be1e0980016", "fields": {"nom_de_la_commune": "CHARLEVAL", "libell_d_acheminement": "CHARLEVAL", "code_postal": "27380", "coordonnees_gps": [49.3497670752, 1.33067943849], "code_commune_insee": "27151"}, "geometry": {"type": "Point", "coordinates": [1.33067943849, 49.3497670752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4bd7beb22e6086c8ff492df0cd0f743378d2f4e", "fields": {"nom_de_la_commune": "CLAVILLE", "libell_d_acheminement": "CLAVILLE", "code_postal": "27180", "coordonnees_gps": [49.004838327, 1.06473236057], "code_commune_insee": "27161"}, "geometry": {"type": "Point", "coordinates": [1.06473236057, 49.004838327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acfd3d05a61c4d8bc22632d6cca4841e9b68e70b", "fields": {"nom_de_la_commune": "CONDE SUR RISLE", "libell_d_acheminement": "CONDE SUR RISLE", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27167"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3c352df4472ed81c0f3a259cc00d9e2772c51ab", "fields": {"nom_de_la_commune": "CONNELLES", "libell_d_acheminement": "CONNELLES", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27168"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ad0c61df37f5f1e411c980cc005fecb33053cb", "fields": {"nom_de_la_commune": "CORMEILLES", "libell_d_acheminement": "CORMEILLES", "code_postal": "27260", "coordonnees_gps": [49.2428669826, 0.422894250852], "code_commune_insee": "27170"}, "geometry": {"type": "Point", "coordinates": [0.422894250852, 49.2428669826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d28ab0d5eabd6d53e67d76b166eabacfe7a17b2b", "fields": {"nom_de_la_commune": "CORNY", "libell_d_acheminement": "CORNY", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27175"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba197701efd41beb56b646ed675859c4561ab3b", "fields": {"nom_de_la_commune": "COURCELLES SUR SEINE", "libell_d_acheminement": "COURCELLES SUR SEINE", "code_postal": "27940", "coordonnees_gps": [49.1799104876, 1.36654248146], "code_commune_insee": "27180"}, "geometry": {"type": "Point", "coordinates": [1.36654248146, 49.1799104876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cda97e104e1d9467daef64439c4084cb66a2e40", "fields": {"nom_de_la_commune": "COURTEILLES", "libell_d_acheminement": "COURTEILLES", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27182"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53d253e49316fa44116c0353130511b48764e532", "fields": {"nom_de_la_commune": "CUVERVILLE", "libell_d_acheminement": "CUVERVILLE", "code_postal": "27700", "coordonnees_gps": [49.2404224596, 1.41519245214], "code_commune_insee": "27194"}, "geometry": {"type": "Point", "coordinates": [1.41519245214, 49.2404224596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3c98fd16581bb36e17bca21c97fb432ab246b0", "fields": {"code_postal": "27240", "code_commune_insee": "27198", "libell_d_acheminement": "MESNILS SUR ITON", "ligne_5": "LE RONCENAY", "nom_de_la_commune": "MESNILS SUR ITON", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e38d2bd617670ba3ab0d87e0e7c56e4933aea3a8", "fields": {"nom_de_la_commune": "DARDEZ", "libell_d_acheminement": "DARDEZ", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27200"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00d19dc071585b31893573f978f935db66b8a1d", "fields": {"code_postal": "27420", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "CAHAIGNES", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.2104555744, 1.59282946064]}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "347becd8a4e449d5c306000f75376e113dbde154", "fields": {"code_postal": "27630", "code_commune_insee": "27213", "libell_d_acheminement": "VEXIN SUR EPTE", "ligne_5": "ECOS", "nom_de_la_commune": "VEXIN SUR EPTE", "coordonnees_gps": [49.1418584824, 1.58250649278]}, "geometry": {"type": "Point", "coordinates": [1.58250649278, 49.1418584824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ad404d37e1f3c3e3e6cf206a626571f6ee46fde", "fields": {"nom_de_la_commune": "EMALLEVILLE", "libell_d_acheminement": "EMALLEVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27216"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68be1e0bc1247c6758fbbdaffc29b6a8d770f67b", "fields": {"nom_de_la_commune": "EZY SUR EURE", "libell_d_acheminement": "EZY SUR EURE", "code_postal": "27530", "coordonnees_gps": [48.8601800798, 1.38794601132], "code_commune_insee": "27230"}, "geometry": {"type": "Point", "coordinates": [1.38794601132, 48.8601800798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a5f0dab2222a6c9c8e5cffdcf3e1e77f453214", "fields": {"nom_de_la_commune": "FAINS", "libell_d_acheminement": "FAINS", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27231"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f620dd9730f6cb4c2bcc129315dd4884cd63ff8", "fields": {"nom_de_la_commune": "LE FIDELAIRE", "libell_d_acheminement": "LE FIDELAIRE", "code_postal": "27190", "coordonnees_gps": [48.9728279845, 0.92112768815], "code_commune_insee": "27242"}, "geometry": {"type": "Point", "coordinates": [0.92112768815, 48.9728279845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e042b2fcec3ad548702e444afde1ba3922d89a7", "fields": {"nom_de_la_commune": "FOLLEVILLE", "libell_d_acheminement": "FOLLEVILLE", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27248"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcaf0e1f05af0bcb40befac377b53bb64ef245ca", "fields": {"nom_de_la_commune": "FORT MOVILLE", "libell_d_acheminement": "FORT MOVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27258"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44b13bde5c45b6e6fb4ec70c1b23ab0a55e1ffe5", "fields": {"nom_de_la_commune": "FOULBEC", "libell_d_acheminement": "FOULBEC", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27260"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50a86315d32dbb4c817c7d76daefff99a61188cb", "fields": {"nom_de_la_commune": "FRANQUEVILLE", "libell_d_acheminement": "FRANQUEVILLE", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27266"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f47cbec56b146a12bd98541acb16c2be7c5658", "fields": {"nom_de_la_commune": "FRENEUSE SUR RISLE", "libell_d_acheminement": "FRENEUSE SUR RISLE", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27267"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46761e2f00edf62706185d5a394ef90c7beceb00", "fields": {"nom_de_la_commune": "GAILLARDBOIS CRESSENVILLE", "libell_d_acheminement": "GAILLARDBOIS CRESSENVILLE", "code_postal": "27440", "coordonnees_gps": [49.3274969839, 1.42156603584], "code_commune_insee": "27274"}, "geometry": {"type": "Point", "coordinates": [1.42156603584, 49.3274969839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660cbf15144a53aa68761d9887767898fa498105", "fields": {"code_postal": "27220", "code_commune_insee": "27277", "libell_d_acheminement": "LA BARONNIE", "ligne_5": "QUESSIGNY", "nom_de_la_commune": "LA BARONNIE", "coordonnees_gps": [48.9045809856, 1.2729790086]}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1efdcbac7fa3bc1d93dd753b9e4f2d56966e69df", "fields": {"nom_de_la_commune": "GAUCIEL", "libell_d_acheminement": "GAUCIEL", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27280"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d976f35a1d3717594d09b1c68086bba61c2493c2", "fields": {"nom_de_la_commune": "GIVERNY", "libell_d_acheminement": "GIVERNY", "code_postal": "27620", "coordonnees_gps": [49.0961129794, 1.56718347503], "code_commune_insee": "27285"}, "geometry": {"type": "Point", "coordinates": [1.56718347503, 49.0961129794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "946fdeb232745b55a85d70e2d743f7bc783cf677", "fields": {"nom_de_la_commune": "GLOS SUR RISLE", "libell_d_acheminement": "GLOS SUR RISLE", "code_postal": "27290", "coordonnees_gps": [49.2879617156, 0.683487888831], "code_commune_insee": "27288"}, "geometry": {"type": "Point", "coordinates": [0.683487888831, 49.2879617156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03674c74d9f6728d1ee3053042f87e6397ec4e31", "fields": {"nom_de_la_commune": "GOUPILLIERES", "libell_d_acheminement": "GOUPILLIERES", "code_postal": "27170", "coordonnees_gps": [49.0700248766, 0.816796831144], "code_commune_insee": "27290"}, "geometry": {"type": "Point", "coordinates": [0.816796831144, 49.0700248766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c1217cf2f1fa091de0924c5f29ed29c2ea321cc", "fields": {"code_postal": "27240", "code_commune_insee": "27297", "libell_d_acheminement": "GRANDVILLIERS", "ligne_5": "HELLENVILLIERS", "nom_de_la_commune": "GRANDVILLIERS", "coordonnees_gps": [48.8630175528, 1.06923363449]}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3d736cb69b522aca865399945e128b757a9cd8", "fields": {"nom_de_la_commune": "GRAVERON SEMERVILLE", "libell_d_acheminement": "GRAVERON SEMERVILLE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27298"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a1b5d2346043649624c38d14c94cee49af2e1e", "fields": {"nom_de_la_commune": "GUERNY", "libell_d_acheminement": "GUERNY", "code_postal": "27720", "coordonnees_gps": [49.2458400494, 1.68182274332], "code_commune_insee": "27304"}, "geometry": {"type": "Point", "coordinates": [1.68182274332, 49.2458400494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd18e2c57d926c2566df9a181ed196716f524f16", "fields": {"nom_de_la_commune": "L HABIT", "libell_d_acheminement": "L HABIT", "code_postal": "27220", "coordonnees_gps": [48.9045809856, 1.2729790086], "code_commune_insee": "27309"}, "geometry": {"type": "Point", "coordinates": [1.2729790086, 48.9045809856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae38bbda5b83d4cbaf96725f932d804453e4f53c", "fields": {"nom_de_la_commune": "HARCOURT", "libell_d_acheminement": "HARCOURT", "code_postal": "27800", "coordonnees_gps": [49.194381522, 0.709155160567], "code_commune_insee": "27311"}, "geometry": {"type": "Point", "coordinates": [0.709155160567, 49.194381522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ade9a57ba5ae50ca9411cde946a4134c3b933035", "fields": {"nom_de_la_commune": "LA HAYE DE ROUTOT", "libell_d_acheminement": "LA HAYE DE ROUTOT", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27319"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33850baf960c6a269eec512056470d010cb61a23", "fields": {"nom_de_la_commune": "HECTOMARE", "libell_d_acheminement": "HECTOMARE", "code_postal": "27110", "coordonnees_gps": [49.1473622429, 0.957999559793], "code_commune_insee": "27327"}, "geometry": {"type": "Point", "coordinates": [0.957999559793, 49.1473622429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0ab451b1d1c91435cd5a180e31db583645726a", "fields": {"nom_de_la_commune": "LA HEUNIERE", "libell_d_acheminement": "LA HEUNIERE", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27336"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea9af11d633f9a4c96b5337f94c0083b6768742", "fields": {"nom_de_la_commune": "HUEST", "libell_d_acheminement": "HUEST", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27347"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae676b223c24653f849316404d37af898f41a2f9", "fields": {"nom_de_la_commune": "INCARVILLE", "libell_d_acheminement": "INCARVILLE", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27351"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b911867a4fa3f11102509bb11185ce687392d22", "fields": {"nom_de_la_commune": "IRREVILLE", "libell_d_acheminement": "IRREVILLE", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27353"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d091ae683e5636ef7fd201db840bb099523f8e1", "fields": {"nom_de_la_commune": "LA LANDE ST LEGER", "libell_d_acheminement": "LA LANDE ST LEGER", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27361"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2340828ec45b1ecef4b2ce390466e4a079a5648d", "fields": {"nom_de_la_commune": "LERY", "libell_d_acheminement": "LERY", "code_postal": "27690", "coordonnees_gps": [49.2875079068, 1.19484259841], "code_commune_insee": "27365"}, "geometry": {"type": "Point", "coordinates": [1.19484259841, 49.2875079068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89aba2f0a68485c55e56ef62585907d139ad848a", "fields": {"nom_de_la_commune": "LYONS LA FORET", "libell_d_acheminement": "LYONS LA FORET", "code_postal": "27480", "coordonnees_gps": [49.4118840236, 1.51253592715], "code_commune_insee": "27377"}, "geometry": {"type": "Point", "coordinates": [1.51253592715, 49.4118840236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abf0ba17e616e61dacadb1bd3d8ca6151fca8f50", "fields": {"nom_de_la_commune": "WALINCOURT SELVIGNY", "libell_d_acheminement": "WALINCOURT SELVIGNY", "code_postal": "59127", "coordonnees_gps": [50.0669008118, 3.33260202285], "code_commune_insee": "59631"}, "geometry": {"type": "Point", "coordinates": [3.33260202285, 50.0669008118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd1a4d691dbc219df43b8fc21287e6a3145b6845", "fields": {"code_postal": "59135", "code_commune_insee": "59632", "libell_d_acheminement": "WALLERS", "ligne_5": "ARENBERG", "nom_de_la_commune": "WALLERS", "coordonnees_gps": [50.3789593982, 3.39834366175]}, "geometry": {"type": "Point", "coordinates": [3.39834366175, 50.3789593982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76aa8975700c875b848fd4cf28d8c3a1993e834", "fields": {"nom_de_la_commune": "WARGNIES LE GRAND", "libell_d_acheminement": "WARGNIES LE GRAND", "code_postal": "59144", "coordonnees_gps": [50.2906575579, 3.68467219435], "code_commune_insee": "59639"}, "geometry": {"type": "Point", "coordinates": [3.68467219435, 50.2906575579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef9461ee13e57ee2a853c38195199c17a9d5f8a9", "fields": {"nom_de_la_commune": "WARHEM", "libell_d_acheminement": "WARHEM", "code_postal": "59380", "coordonnees_gps": [50.9638309272, 2.43403587067], "code_commune_insee": "59641"}, "geometry": {"type": "Point", "coordinates": [2.43403587067, 50.9638309272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6981295e545718baa88c2a87eec68696ab9c509", "fields": {"nom_de_la_commune": "WARNETON", "libell_d_acheminement": "WARNETON", "code_postal": "59560", "coordonnees_gps": [50.7487126349, 3.00528149313], "code_commune_insee": "59643"}, "geometry": {"type": "Point", "coordinates": [3.00528149313, 50.7487126349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9206d212421fd7b57aa9755cb1391667fdd65e0", "fields": {"nom_de_la_commune": "WASQUEHAL", "libell_d_acheminement": "WASQUEHAL", "code_postal": "59290", "coordonnees_gps": [50.6754695389, 3.12791085358], "code_commune_insee": "59646"}, "geometry": {"type": "Point", "coordinates": [3.12791085358, 50.6754695389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d06a812e25fee152e6321f1342f5da95c429694", "fields": {"nom_de_la_commune": "WATTIGNIES", "libell_d_acheminement": "WATTIGNIES", "code_postal": "59139", "coordonnees_gps": [50.5828466691, 3.03623136309], "code_commune_insee": "59648"}, "geometry": {"type": "Point", "coordinates": [3.03623136309, 50.5828466691]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d956edf033ee35064c2a5cfbf66011fdc8652a46", "fields": {"nom_de_la_commune": "WATTRELOS", "libell_d_acheminement": "WATTRELOS", "code_postal": "59150", "coordonnees_gps": [50.7054867072, 3.21637731319], "code_commune_insee": "59650"}, "geometry": {"type": "Point", "coordinates": [3.21637731319, 50.7054867072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f88f330768f2dc2023db397aa72c1e5fcf00aed1", "fields": {"nom_de_la_commune": "WAVRIN", "libell_d_acheminement": "WAVRIN", "code_postal": "59136", "coordonnees_gps": [50.5721804568, 2.93301420675], "code_commune_insee": "59653"}, "geometry": {"type": "Point", "coordinates": [2.93301420675, 50.5721804568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7c90cd9932965f757262dfbb2ca025ada36188d", "fields": {"nom_de_la_commune": "WIGNEHIES", "libell_d_acheminement": "WIGNEHIES", "code_postal": "59212", "coordonnees_gps": [50.0124583549, 4.0070087606], "code_commune_insee": "59659"}, "geometry": {"type": "Point", "coordinates": [4.0070087606, 50.0124583549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ddc3c7acf129ee020b8fa0382df249a6fa04b73", "fields": {"nom_de_la_commune": "WORMHOUT", "libell_d_acheminement": "WORMHOUT", "code_postal": "59470", "coordonnees_gps": [50.8771639883, 2.42740619864], "code_commune_insee": "59663"}, "geometry": {"type": "Point", "coordinates": [2.42740619864, 50.8771639883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5434742e94fd208ad8775dbcc6d93fd23a919b", "fields": {"nom_de_la_commune": "ZUYTPEENE", "libell_d_acheminement": "ZUYTPEENE", "code_postal": "59670", "coordonnees_gps": [50.8083185635, 2.46483503328], "code_commune_insee": "59669"}, "geometry": {"type": "Point", "coordinates": [2.46483503328, 50.8083185635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "037b73327e15b031d3e4d971c78c746ac65fdffd", "fields": {"nom_de_la_commune": "ABANCOURT", "libell_d_acheminement": "ABANCOURT", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60001"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e30e4ebc13e00e865cc52737cceac09a45f8cd3c", "fields": {"nom_de_la_commune": "AGNETZ", "libell_d_acheminement": "AGNETZ", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60007"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "962bdd915b1dbafaf8a0fe4eda43cbc1b752acc4", "fields": {"nom_de_la_commune": "ARMANCOURT", "libell_d_acheminement": "ARMANCOURT", "code_postal": "60880", "coordonnees_gps": [49.3809036755, 2.75739000766], "code_commune_insee": "60023"}, "geometry": {"type": "Point", "coordinates": [2.75739000766, 49.3809036755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3e46d9cf27fcd7102728f630760342433b39ddb", "fields": {"nom_de_la_commune": "AUMONT EN HALATTE", "libell_d_acheminement": "AUMONT EN HALATTE", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60028"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b8b7ee258a7d314e741621acccc7c087c66218", "fields": {"nom_de_la_commune": "AUTHEUIL EN VALOIS", "libell_d_acheminement": "AUTHEUIL EN VALOIS", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60031"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f09e019dd0fd276b63aa366808fc882745e18ff", "fields": {"nom_de_la_commune": "AUTRECHES", "libell_d_acheminement": "AUTRECHES", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60032"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aedea3047dcf6ff7e8bf2cfb7ebb5243a5a08bc5", "fields": {"nom_de_la_commune": "AVRECHY", "libell_d_acheminement": "AVRECHY", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60034"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ae367bdcc53b2b921716744ae772141d080588b", "fields": {"nom_de_la_commune": "BACHIVILLERS", "libell_d_acheminement": "BACHIVILLERS", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60038"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b52470f5cd66f7a2c8486614b7a2ff79c22ba8", "fields": {"nom_de_la_commune": "BACOUEL", "libell_d_acheminement": "BACOUEL", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60039"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a626f98e4130c53341bf2966cae4b30e3be83d8", "fields": {"nom_de_la_commune": "BARBERY", "libell_d_acheminement": "BARBERY", "code_postal": "60810", "coordonnees_gps": [49.242567617, 2.68745664915], "code_commune_insee": "60045"}, "geometry": {"type": "Point", "coordinates": [2.68745664915, 49.242567617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5792d2039cb7be5c2fe59db5763e604291b5120a", "fields": {"nom_de_la_commune": "BAUGY", "libell_d_acheminement": "BAUGY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60048"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d79166c4a40e3df7b62d7e14fe1553f6ac16253", "fields": {"nom_de_la_commune": "BEAUREPAIRE", "libell_d_acheminement": "BEAUREPAIRE", "code_postal": "60700", "coordonnees_gps": [49.3126437844, 2.60059059773], "code_commune_insee": "60056"}, "geometry": {"type": "Point", "coordinates": [2.60059059773, 49.3126437844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30fc328b2fc8c17554f6fb8fd845fea2d3927795", "fields": {"nom_de_la_commune": "BELLE EGLISE", "libell_d_acheminement": "BELLE EGLISE", "code_postal": "60540", "coordonnees_gps": [49.1970454016, 2.20454103263], "code_commune_insee": "60060"}, "geometry": {"type": "Point", "coordinates": [2.20454103263, 49.1970454016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1978ba91d4bcf59d5f745bee465a6db04d1da4a6", "fields": {"nom_de_la_commune": "BERNEUIL EN BRAY", "libell_d_acheminement": "BERNEUIL EN BRAY", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60063"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9013645f1fb35d0a057f4cadaa1a6227dcdac4d3", "fields": {"nom_de_la_commune": "BERNEUIL SUR AISNE", "libell_d_acheminement": "BERNEUIL SUR AISNE", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60064"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c955f731ba1d31aa03dffb5ed6894b0974271f1a", "fields": {"nom_de_la_commune": "BONNEUIL LES EAUX", "libell_d_acheminement": "BONNEUIL LES EAUX", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60082"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb4c53bbdba7d4926e11a5ad3f2845045eefce83", "fields": {"nom_de_la_commune": "BONNIERES", "libell_d_acheminement": "BONNIERES", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60084"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14dbe7e5cfd606dc401dbc1a9dbc6a30d21c3b00", "fields": {"nom_de_la_commune": "BOULOGNE LA GRASSE", "libell_d_acheminement": "BOULOGNE LA GRASSE", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60093"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d82aced08ecbc9cf00e5ee8b5c65e14038ea2da", "fields": {"nom_de_la_commune": "BRENOUILLE", "libell_d_acheminement": "BRENOUILLE", "code_postal": "60870", "coordonnees_gps": [49.2979695646, 2.51851013647], "code_commune_insee": "60102"}, "geometry": {"type": "Point", "coordinates": [2.51851013647, 49.2979695646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d4fc58b30320d7928a28d2ab225ecce89aa251c", "fields": {"nom_de_la_commune": "BUICOURT", "libell_d_acheminement": "BUICOURT", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60114"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faef56a645a5f7c3663d3a3522b56c16273327ed", "fields": {"nom_de_la_commune": "CAMBRONNE LES CLERMONT", "libell_d_acheminement": "CAMBRONNE LES CLERMONT", "code_postal": "60290", "coordonnees_gps": [49.3208581304, 2.42249383706], "code_commune_insee": "60120"}, "geometry": {"type": "Point", "coordinates": [2.42249383706, 49.3208581304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb70ced54f8ad2abdf61259c0673895ecdd71ee0", "fields": {"nom_de_la_commune": "CAMPAGNE", "libell_d_acheminement": "CAMPAGNE", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60121"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4e37f4fb27fdb6def5518a8f108838e78005dbc", "fields": {"nom_de_la_commune": "CAUFFRY", "libell_d_acheminement": "CAUFFRY", "code_postal": "60290", "coordonnees_gps": [49.3208581304, 2.42249383706], "code_commune_insee": "60134"}, "geometry": {"type": "Point", "coordinates": [2.42249383706, 49.3208581304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a2f7e58bb537eabd2d4f8ad6e40d2185ab95864", "fields": {"nom_de_la_commune": "CAUVIGNY", "libell_d_acheminement": "CAUVIGNY", "code_postal": "60730", "coordonnees_gps": [49.2849598013, 2.24410446166], "code_commune_insee": "60135"}, "geometry": {"type": "Point", "coordinates": [2.24410446166, 49.2849598013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f840046355344e1bccc14ddad9e9a183517a87f", "fields": {"nom_de_la_commune": "CEMPUIS", "libell_d_acheminement": "CEMPUIS", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60136"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68d7826d7f8d4d98ac80bf69ed32c4b151c89b5", "fields": {"nom_de_la_commune": "CHANTILLY", "libell_d_acheminement": "CHANTILLY", "code_postal": "60500", "coordonnees_gps": [49.1857324224, 2.48739707813], "code_commune_insee": "60141"}, "geometry": {"type": "Point", "coordinates": [2.48739707813, 49.1857324224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779a74d737e57201befe4e019a21380356c361fa", "fields": {"nom_de_la_commune": "CHEVINCOURT", "libell_d_acheminement": "CHEVINCOURT", "code_postal": "60150", "coordonnees_gps": [49.4815431132, 2.85458399413], "code_commune_insee": "60147"}, "geometry": {"type": "Point", "coordinates": [2.85458399413, 49.4815431132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5579d6f4d56104f3c9c6f5854e8300c96b038457", "fields": {"nom_de_la_commune": "CLAIROIX", "libell_d_acheminement": "CLAIROIX", "code_postal": "60280", "coordonnees_gps": [49.4313650855, 2.80849357717], "code_commune_insee": "60156"}, "geometry": {"type": "Point", "coordinates": [2.80849357717, 49.4313650855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8645998e7b2f0370efffe8186f402cea2c82286e", "fields": {"nom_de_la_commune": "COURCELLES EPAYELLES", "libell_d_acheminement": "COURCELLES EPAYELLES", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60168"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a665a482b36be82d50c74ac82fa1b3a75edf1b8c", "fields": {"nom_de_la_commune": "CROUY EN THELLE", "libell_d_acheminement": "CROUY EN THELLE", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60185"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c51006e6e560b41cf67be42a0bcf209e506a95c", "fields": {"nom_de_la_commune": "DARGIES", "libell_d_acheminement": "DARGIES", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60194"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b66505f191b621e368626b80d44d232d384084bc", "fields": {"nom_de_la_commune": "ELINCOURT STE MARGUERITE", "libell_d_acheminement": "ELINCOURT STE MARGUERITE", "code_postal": "60157", "coordonnees_gps": [49.5314159909, 2.82743399592], "code_commune_insee": "60206"}, "geometry": {"type": "Point", "coordinates": [2.82743399592, 49.5314159909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5092967ef30f4b4fa68b280bab944c88fbc9f419", "fields": {"nom_de_la_commune": "EMEVILLE", "libell_d_acheminement": "EMEVILLE", "code_postal": "60123", "coordonnees_gps": [49.2803594207, 2.98767047499], "code_commune_insee": "60207"}, "geometry": {"type": "Point", "coordinates": [2.98767047499, 49.2803594207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f5cf035248f406e3551e72907a02380e5a85468", "fields": {"nom_de_la_commune": "ERQUINVILLERS", "libell_d_acheminement": "ERQUINVILLERS", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60216"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6baf95bcbde3bdb85a859de8bfab4bff3c3047c4", "fields": {"nom_de_la_commune": "ESSUILES", "libell_d_acheminement": "ESSUILES", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60222"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee40ee96097a6ee8bc9d0b1abb9e87d57f8b919", "fields": {"nom_de_la_commune": "ETAVIGNY", "libell_d_acheminement": "ETAVIGNY", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60224"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "663ffab706e87f828963dbaee3a7599af5e9700a", "fields": {"nom_de_la_commune": "EVE", "libell_d_acheminement": "EVE", "code_postal": "60330", "coordonnees_gps": [49.0926155982, 2.75103506879], "code_commune_insee": "60226"}, "geometry": {"type": "Point", "coordinates": [2.75103506879, 49.0926155982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1d72625af416a9a1933a6a09fd9dd0ff415fb5", "fields": {"nom_de_la_commune": "FLAVACOURT", "libell_d_acheminement": "FLAVACOURT", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60235"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5bd270840d0f676f70baaee0ed91e76c0f86b17", "fields": {"nom_de_la_commune": "FONTAINE CHAALIS", "libell_d_acheminement": "FONTAINE CHAALIS", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60241"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aae129fb83a161d40746bc878416f228f592db5", "fields": {"nom_de_la_commune": "FONTAINE LAVAGANNE", "libell_d_acheminement": "FONTAINE LAVAGANNE", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60242"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17961249f770dd07a21a13667b613ad28324899e", "fields": {"nom_de_la_commune": "FOUQUEROLLES", "libell_d_acheminement": "FOUQUEROLLES", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60251"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c70d79f5ebac67a34c86f23e5f4154e5f3b6a269", "fields": {"nom_de_la_commune": "FRANCASTEL", "libell_d_acheminement": "FRANCASTEL", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60253"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c66471e85fd07dc999f1c2773707e82836958de", "fields": {"nom_de_la_commune": "FRENICHES", "libell_d_acheminement": "FRENICHES", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60255"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db208297b32d5631383696d1dd7332ffd57f21ec", "fields": {"nom_de_la_commune": "FRESNOY LA RIVIERE", "libell_d_acheminement": "FRESNOY LA RIVIERE", "code_postal": "60127", "coordonnees_gps": [49.3037551422, 2.92944456621], "code_commune_insee": "60260"}, "geometry": {"type": "Point", "coordinates": [2.92944456621, 49.3037551422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4962fff637bfef0811a7564fe44c8a007db7e3a9", "fields": {"nom_de_la_commune": "FROCOURT", "libell_d_acheminement": "FROCOURT", "code_postal": "60000", "coordonnees_gps": [49.4271955038, 2.08477380746], "code_commune_insee": "60264"}, "geometry": {"type": "Point", "coordinates": [2.08477380746, 49.4271955038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8a0148d99bfc9ffb467edd4fd5161a2f46563b", "fields": {"nom_de_la_commune": "FROISSY", "libell_d_acheminement": "FROISSY", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60265"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e05cf61a7d4156a8bf97a150c7e6d2cd42804d4", "fields": {"nom_de_la_commune": "GENVRY", "libell_d_acheminement": "GENVRY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60270"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df253b3c12c0213e7a876e04b9970a8f35a14510", "fields": {"nom_de_la_commune": "GERBEROY", "libell_d_acheminement": "GERBEROY", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60271"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37feddf25a2ffc48e40a893b403fbf6400c1c719", "fields": {"nom_de_la_commune": "GONDREVILLE", "libell_d_acheminement": "GONDREVILLE", "code_postal": "60117", "coordonnees_gps": [49.2419560642, 2.9827380143], "code_commune_insee": "60279"}, "geometry": {"type": "Point", "coordinates": [2.9827380143, 49.2419560642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56d0cfe9e6b48ff6e8c746cdb60fb9a1a3cdfb28", "fields": {"nom_de_la_commune": "GOUVIEUX", "libell_d_acheminement": "GOUVIEUX", "code_postal": "60270", "coordonnees_gps": [49.1893342399, 2.42064865725], "code_commune_insee": "60282"}, "geometry": {"type": "Point", "coordinates": [2.42064865725, 49.1893342399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a431157a89799277e69862aab490e90800ce0d44", "fields": {"nom_de_la_commune": "GUISCARD", "libell_d_acheminement": "GUISCARD", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60291"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd87152a535c6070964f01c2e12fa07b725e52de", "fields": {"nom_de_la_commune": "GURY", "libell_d_acheminement": "GURY", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60292"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad7d7953d2e68a3ee5f6c5bbb7931d4ecd7d6940", "fields": {"nom_de_la_commune": "HADANCOURT LE HAUT CLOCHER", "libell_d_acheminement": "HADANCOURT LE HAUT CLOCHER", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60293"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faf1c4421ed183b2f4b7948f68215ac8e1407a8e", "fields": {"nom_de_la_commune": "LE HAMEL", "libell_d_acheminement": "LE HAMEL", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60297"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "347d22583d198079a461957d75d7feac750d3b41", "fields": {"nom_de_la_commune": "HAUTBOS", "libell_d_acheminement": "HAUTBOS", "code_postal": "60210", "coordonnees_gps": [49.6663772871, 1.94666817033], "code_commune_insee": "60303"}, "geometry": {"type": "Point", "coordinates": [1.94666817033, 49.6663772871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc565a2d0a1a3baada5488b77dc2d867b247c205", "fields": {"nom_de_la_commune": "HAUTEFONTAINE", "libell_d_acheminement": "HAUTEFONTAINE", "code_postal": "60350", "coordonnees_gps": [49.3928570871, 3.00399957005], "code_commune_insee": "60305"}, "geometry": {"type": "Point", "coordinates": [3.00399957005, 49.3928570871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8698fa4669b9f7e296df0bd06a84e1d8bbaa0b72", "fields": {"nom_de_la_commune": "HECOURT", "libell_d_acheminement": "HECOURT", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60306"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c00bf48d433c922eb3b0d52a6bef0231708740a", "fields": {"nom_de_la_commune": "HOUDANCOURT", "libell_d_acheminement": "HOUDANCOURT", "code_postal": "60710", "coordonnees_gps": [49.343381616, 2.66813985407], "code_commune_insee": "60318"}, "geometry": {"type": "Point", "coordinates": [2.66813985407, 49.343381616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43153efc17f59f6bf702818133a2b36eefa7b84f", "fields": {"nom_de_la_commune": "IVRY LE TEMPLE", "libell_d_acheminement": "IVRY LE TEMPLE", "code_postal": "60173", "coordonnees_gps": [49.232278412, 2.02986222365], "code_commune_insee": "60321"}, "geometry": {"type": "Point", "coordinates": [2.02986222365, 49.232278412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26be86ed65ba336fbba97f0693a154c94d5d398f", "fields": {"nom_de_la_commune": "JONQUIERES", "libell_d_acheminement": "JONQUIERES", "code_postal": "60680", "coordonnees_gps": [49.3855713236, 2.69284171004], "code_commune_insee": "60326"}, "geometry": {"type": "Point", "coordinates": [2.69284171004, 49.3855713236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "420b1469bb8d47711aa7015c3819c99b45586be2", "fields": {"nom_de_la_commune": "LACHELLE", "libell_d_acheminement": "LACHELLE", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60337"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef3f7232d71063e470a3d567c9bb7dd7dfc1549", "fields": {"nom_de_la_commune": "LACROIX ST OUEN", "libell_d_acheminement": "LACROIX ST OUEN", "code_postal": "60610", "coordonnees_gps": [49.3555662347, 2.79523425007], "code_commune_insee": "60338"}, "geometry": {"type": "Point", "coordinates": [2.79523425007, 49.3555662347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf5305c1f2e10b3588958b659bd4cade844b68cc", "fields": {"nom_de_la_commune": "LASSIGNY", "libell_d_acheminement": "LASSIGNY", "code_postal": "60310", "coordonnees_gps": [49.6133988825, 2.85955425081], "code_commune_insee": "60350"}, "geometry": {"type": "Point", "coordinates": [2.85955425081, 49.6133988825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f852a1691ba9e20ebf6816577eafb81ed71206", "fields": {"nom_de_la_commune": "LHERAULE", "libell_d_acheminement": "LHERAULE", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60359"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e802fb26509bd97733ce79897f8688179de9cb4", "fields": {"nom_de_la_commune": "LIBERMONT", "libell_d_acheminement": "LIBERMONT", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60362"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d3e486e5136df3fda891864e35672924b6edd36", "fields": {"nom_de_la_commune": "LIERVILLE", "libell_d_acheminement": "LIERVILLE", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60363"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0a6dcf8dc1611ecc950747364b8a09160869e8", "fields": {"nom_de_la_commune": "LIEUVILLERS", "libell_d_acheminement": "LIEUVILLERS", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60364"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d3a3e8fef709260f087c75fc35474eda487a275", "fields": {"nom_de_la_commune": "LORMAISON", "libell_d_acheminement": "LORMAISON", "code_postal": "60110", "coordonnees_gps": [49.232969162, 2.13061952998], "code_commune_insee": "60370"}, "geometry": {"type": "Point", "coordinates": [2.13061952998, 49.232969162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecbcaa646daa8dce6be2a7a1dc4c914a8964557e", "fields": {"nom_de_la_commune": "MAIMBEVILLE", "libell_d_acheminement": "MAIMBEVILLE", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60375"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03c91e203a9a9216fe1188c3a0108c4b9b73169", "fields": {"nom_de_la_commune": "MAISONCELLE ST PIERRE", "libell_d_acheminement": "MAISONCELLE ST PIERRE", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60376"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe449339460b02318c072822b253ff45d07d2edc", "fields": {"nom_de_la_commune": "MARSEILLE EN BEAUVAISIS", "libell_d_acheminement": "MARSEILLE EN BEAUVAISIS", "code_postal": "60690", "coordonnees_gps": [49.5767544168, 1.96574584182], "code_commune_insee": "60387"}, "geometry": {"type": "Point", "coordinates": [1.96574584182, 49.5767544168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7cdaa1d35da44488e35932aae7fdc894a3b8505", "fields": {"nom_de_la_commune": "MELLO", "libell_d_acheminement": "MELLO", "code_postal": "60660", "coordonnees_gps": [49.2665303301, 2.368580624], "code_commune_insee": "60393"}, "geometry": {"type": "Point", "coordinates": [2.368580624, 49.2665303301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a4d4b06047c85a050e5a204268c62e140582755", "fields": {"nom_de_la_commune": "LE MESNIL SUR BULLES", "libell_d_acheminement": "LE MESNIL SUR BULLES", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60400"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a76f3a6fd2bbc8c72c9acf4acb2675ecc15bd6d6", "fields": {"nom_de_la_commune": "MOLIENS", "libell_d_acheminement": "MOLIENS", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60405"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d6c8aba57f627d7a458f659a72786d9c80f575", "fields": {"nom_de_la_commune": "MONTJAVOULT", "libell_d_acheminement": "MONTJAVOULT", "code_postal": "60240", "coordonnees_gps": [49.2430055349, 1.88749117657], "code_commune_insee": "60420"}, "geometry": {"type": "Point", "coordinates": [1.88749117657, 49.2430055349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b2dbd38ec1c4d44a5c6ad7f2a066159d4d75a8", "fields": {"nom_de_la_commune": "MONTLOGNON", "libell_d_acheminement": "MONTLOGNON", "code_postal": "60300", "coordonnees_gps": [49.1906530506, 2.62507513923], "code_commune_insee": "60422"}, "geometry": {"type": "Point", "coordinates": [2.62507513923, 49.1906530506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e7196949fc2ad913ce432205aa7a49943ed449", "fields": {"nom_de_la_commune": "MONTS", "libell_d_acheminement": "MONTS", "code_postal": "60119", "coordonnees_gps": [49.2082498189, 2.02680448523], "code_commune_insee": "60427"}, "geometry": {"type": "Point", "coordinates": [2.02680448523, 49.2082498189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e086b5e7832b222e89b5d858495f88631bd3e1a", "fields": {"nom_de_la_commune": "LE MONT ST ADRIEN", "libell_d_acheminement": "LE MONT ST ADRIEN", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60428"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75966ae9365eb4f125c8790c79906652c6e17b10", "fields": {"nom_de_la_commune": "MORANGLES", "libell_d_acheminement": "MORANGLES", "code_postal": "60530", "coordonnees_gps": [49.216636402, 2.27999837361], "code_commune_insee": "60429"}, "geometry": {"type": "Point", "coordinates": [2.27999837361, 49.216636402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04fa6449abd7427c977598578dc08f44cea8f55d", "fields": {"nom_de_la_commune": "MORTEMER", "libell_d_acheminement": "MORTEMER", "code_postal": "60490", "coordonnees_gps": [49.556415146, 2.73149689766], "code_commune_insee": "60434"}, "geometry": {"type": "Point", "coordinates": [2.73149689766, 49.556415146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54fae0b6f200200b3e3576475fcd9853608d158e", "fields": {"nom_de_la_commune": "MORY MONTCRUX", "libell_d_acheminement": "MORY MONTCRUX", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60436"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ead08bbc7882b3f115a3f4a6adc27ceadacab91e", "fields": {"nom_de_la_commune": "MUIRANCOURT", "libell_d_acheminement": "MUIRANCOURT", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60443"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3f14df4cb499b58748aeca62df9fcaae676348", "fields": {"nom_de_la_commune": "NEUFCHELLES", "libell_d_acheminement": "NEUFCHELLES", "code_postal": "60890", "coordonnees_gps": [49.150402351, 3.06617121499], "code_commune_insee": "60448"}, "geometry": {"type": "Point", "coordinates": [3.06617121499, 49.150402351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a911c16a817c907c2cdf5f801fb9238c8925ebaa", "fields": {"nom_de_la_commune": "NEUILLY SOUS CLERMONT", "libell_d_acheminement": "NEUILLY SOUS CLERMONT", "code_postal": "60290", "coordonnees_gps": [49.3208581304, 2.42249383706], "code_commune_insee": "60451"}, "geometry": {"type": "Point", "coordinates": [2.42249383706, 49.3208581304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f2452401783c6e45bc0b39b1ab73ae6a10b47f", "fields": {"nom_de_la_commune": "LA NEUVILLE D AUMONT", "libell_d_acheminement": "LA NEUVILLE D AUMONT", "code_postal": "60790", "coordonnees_gps": [49.2852248633, 2.06991456979], "code_commune_insee": "60453"}, "geometry": {"type": "Point", "coordinates": [2.06991456979, 49.2852248633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77592f61a3c33f7c713e95bfcb9d8a697f59645d", "fields": {"nom_de_la_commune": "LA NEUVILLE EN HEZ", "libell_d_acheminement": "LA NEUVILLE EN HEZ", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60454"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f4de175cc1882fdeee0a6c7124da4eed4b6f3e", "fields": {"nom_de_la_commune": "LA NEUVILLE ROY", "libell_d_acheminement": "LA NEUVILLE ROY", "code_postal": "60190", "coordonnees_gps": [49.4441474919, 2.63402054798], "code_commune_insee": "60456"}, "geometry": {"type": "Point", "coordinates": [2.63402054798, 49.4441474919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9b18fe23cb67d17b67de926b9af9a2e217ab78", "fields": {"nom_de_la_commune": "LA NEUVILLE VAULT", "libell_d_acheminement": "LA NEUVILLE VAULT", "code_postal": "60112", "coordonnees_gps": [49.5062949705, 2.00745335083], "code_commune_insee": "60460"}, "geometry": {"type": "Point", "coordinates": [2.00745335083, 49.5062949705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e1bdf11026d7c8c7c2fdfea4e3e44acc857dd0", "fields": {"nom_de_la_commune": "ST GERMAIN", "libell_d_acheminement": "ST GERMAIN", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70464"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec19848e21fd179d604ae628021b18f067087f2", "fields": {"code_postal": "70100", "code_commune_insee": "70466", "libell_d_acheminement": "ST LOUP NANTOUARD", "ligne_5": "NANTOUARD", "nom_de_la_commune": "ST LOUP NANTOUARD", "coordonnees_gps": [47.4450284828, 5.5835389303]}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16560a753c3030f89ed3b237216468bbff41b3dd", "fields": {"nom_de_la_commune": "STE REINE", "libell_d_acheminement": "STE REINE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70471"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "704825c812303748fed5a0ceb51b373eac7a02ad", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70474"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ced65b6fb9ba897a1e203353a6ed997b2e2f71", "fields": {"nom_de_la_commune": "SAULX", "libell_d_acheminement": "SAULX", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70478"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b1a36d7a94e37ffcf7df9faf7f55dbb104bd76", "fields": {"nom_de_la_commune": "SAUVIGNEY LES GRAY", "libell_d_acheminement": "SAUVIGNEY LES GRAY", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70479"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d59125d2113d555ab5354b69bb78ec7cc8cad154", "fields": {"nom_de_la_commune": "SCYE", "libell_d_acheminement": "SCYE", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70483"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3dbbeeb56fbf1e27c5887ef6bd23aafafaf2af5", "fields": {"nom_de_la_commune": "SERVIGNEY", "libell_d_acheminement": "SERVIGNEY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70490"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981b58fa5347810ec7b3e44d82eeea8aeae103f5", "fields": {"nom_de_la_commune": "SEVEUX", "libell_d_acheminement": "SEVEUX", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70491"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e84c8a789bd80061c77f7f8e1e6250e9be87b2", "fields": {"nom_de_la_commune": "VALLEROIS LE BOIS", "libell_d_acheminement": "VALLEROIS LE BOIS", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70516"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "401b0c225fcd7da474ccc5d1a5d26127d40bf9a8", "fields": {"nom_de_la_commune": "VARS", "libell_d_acheminement": "VARS", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70523"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ffc4e337b765c6c0bac26df0064785da4719805", "fields": {"code_postal": "70100", "code_commune_insee": "70528", "libell_d_acheminement": "VELESMES ECHEVANNE", "ligne_5": "ECHEVANNE", "nom_de_la_commune": "VELESMES ECHEVANNE", "coordonnees_gps": [47.4450284828, 5.5835389303]}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3fe86e1087a6c855059d123dc7e4cde0ab2d270", "fields": {"nom_de_la_commune": "VELLEFRIE", "libell_d_acheminement": "VELLEFRIE", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70534"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b682df4fdd692b72a0a0123f23d02e52c9dca698", "fields": {"nom_de_la_commune": "VELLEMINFROY", "libell_d_acheminement": "VELLEMINFROY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70537"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36e9acae3a695f6d3837ebd4354150b69852b773", "fields": {"nom_de_la_commune": "VELLEMOZ", "libell_d_acheminement": "VELLEMOZ", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70538"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "908bf01fc8b8c1aa791038c626f9eb6444b32f26", "fields": {"nom_de_la_commune": "VESOUL", "libell_d_acheminement": "VESOUL", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70550"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd8fc12ade612fcceec108dbbef3e6a02d7a45dc", "fields": {"nom_de_la_commune": "VILLAFANS", "libell_d_acheminement": "VILLAFANS", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70552"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "800cb97b0c29cf8deff79829bec3e4378964c815", "fields": {"nom_de_la_commune": "VILLERS LA VILLE", "libell_d_acheminement": "VILLERS LA VILLE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70562"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba6eeb16a2f60fb4f56dbadd0acc5a93506172c", "fields": {"nom_de_la_commune": "LA VOIVRE", "libell_d_acheminement": "LA VOIVRE", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70573"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b24e3d4a00210fe7fdf715361d304a32f41ea52", "fields": {"nom_de_la_commune": "VY LES FILAIN", "libell_d_acheminement": "VY LES FILAIN", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70583"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ccbfef11a6c8442d1407f4f9c395e3eace977f", "fields": {"nom_de_la_commune": "L ABERGEMENT DE CUISERY", "libell_d_acheminement": "L ABERGEMENT DE CUISERY", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71001"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33a7d7d17c02e1a527265afed3776571b6cb741", "fields": {"nom_de_la_commune": "ALLEREY SUR SAONE", "libell_d_acheminement": "ALLEREY SUR SAONE", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71003"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d8d07be1d26284de998bdd9c29efa792804ed8", "fields": {"nom_de_la_commune": "AMANZE", "libell_d_acheminement": "AMANZE", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71006"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ca42c8562100b6bef8a2fadca5cbe94e3124c9", "fields": {"nom_de_la_commune": "AMEUGNY", "libell_d_acheminement": "AMEUGNY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71007"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20d6cc36cea5ad5ef0983c5589a5f642ed491172", "fields": {"nom_de_la_commune": "ANGLURE SOUS DUN", "libell_d_acheminement": "ANGLURE SOUS DUN", "code_postal": "71170", "coordonnees_gps": [46.2126023592, 4.32086009768], "code_commune_insee": "71008"}, "geometry": {"type": "Point", "coordinates": [4.32086009768, 46.2126023592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57b422cd28dcfbb8849a88eaa54947a7a2a55ae6", "fields": {"nom_de_la_commune": "ANOST", "libell_d_acheminement": "ANOST", "code_postal": "71550", "coordonnees_gps": [47.0673836602, 4.11662023514], "code_commune_insee": "71009"}, "geometry": {"type": "Point", "coordinates": [4.11662023514, 47.0673836602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188b0c3e3a102495fc27d1b837883d2cd3b952cd", "fields": {"nom_de_la_commune": "ANTULLY", "libell_d_acheminement": "ANTULLY", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71010"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0bfaf5dea992dfa790e15f2ef598b5340362671", "fields": {"nom_de_la_commune": "BEAUMONT SUR GROSNE", "libell_d_acheminement": "BEAUMONT SUR GROSNE", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71026"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "033292b680ab1fbc11c21aa06c7e16bb92e53cb2", "fields": {"nom_de_la_commune": "BEY", "libell_d_acheminement": "BEY", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71033"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc501bfcbcb54738b92f3d0ceb6566133f196e06", "fields": {"nom_de_la_commune": "LES BIZOTS", "libell_d_acheminement": "LES BIZOTS", "code_postal": "71710", "coordonnees_gps": [46.7997202983, 4.34541340932], "code_commune_insee": "71038"}, "geometry": {"type": "Point", "coordinates": [4.34541340932, 46.7997202983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81945f79273ee510cfaa9c30b7414b375fd4bfb1", "fields": {"nom_de_la_commune": "LA BOULAYE", "libell_d_acheminement": "LA BOULAYE", "code_postal": "71320", "coordonnees_gps": [46.7260133574, 4.12915841297], "code_commune_insee": "71046"}, "geometry": {"type": "Point", "coordinates": [4.12915841297, 46.7260133574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b028177c666700a68a500c3897a60074d46f0ae4", "fields": {"nom_de_la_commune": "BRESSE SUR GROSNE", "libell_d_acheminement": "BRESSE SUR GROSNE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71058"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1e50df5d8a2451c2f368b98b87e4d37bace75f", "fields": {"nom_de_la_commune": "LE BREUIL", "libell_d_acheminement": "LE BREUIL", "code_postal": "71670", "coordonnees_gps": [46.8253378412, 4.49167816237], "code_commune_insee": "71059"}, "geometry": {"type": "Point", "coordinates": [4.49167816237, 46.8253378412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d930d16404cfa7df323b1eddf9d28b88d823eebb", "fields": {"nom_de_la_commune": "BROYE", "libell_d_acheminement": "BROYE", "code_postal": "71190", "coordonnees_gps": [46.8468031748, 4.20350547336], "code_commune_insee": "71063"}, "geometry": {"type": "Point", "coordinates": [4.20350547336, 46.8468031748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2fd150ae3bf039b96967647ba1c55fd0320bd8f", "fields": {"nom_de_la_commune": "CERSOT", "libell_d_acheminement": "CERSOT", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71072"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8586f1ea4b2e66d3b8a6addf5da9b90929390a9b", "fields": {"nom_de_la_commune": "CHAGNY", "libell_d_acheminement": "CHAGNY", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71073"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02471d75be51ba636640aa8065db948a987dd5ee", "fields": {"nom_de_la_commune": "CHALON SUR SAONE", "libell_d_acheminement": "CHALON SUR SAONE", "code_postal": "71100", "coordonnees_gps": [46.753921991, 4.82932300465], "code_commune_insee": "71076"}, "geometry": {"type": "Point", "coordinates": [4.82932300465, 46.753921991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03d0b781e178f79f3f3944cfb5fcd60c8beed2d6", "fields": {"nom_de_la_commune": "CHAMPFORGEUIL", "libell_d_acheminement": "CHAMPFORGEUIL", "code_postal": "71530", "coordonnees_gps": [46.8388869017, 4.87612871845], "code_commune_insee": "71081"}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82fe71ef108605719d3adafa0fd90eb2603a4d0f", "fields": {"nom_de_la_commune": "LA CHAPELLE AU MANS", "libell_d_acheminement": "LA CHAPELLE AU MANS", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71088"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94897f88eb5e1cece28759d4177ad8d2e6632838", "fields": {"nom_de_la_commune": "LA CHAPELLE DE BRAGNY", "libell_d_acheminement": "LA CHAPELLE DE BRAGNY", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71089"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f42a49b441ea0a8ded7f8033bffb7d38e40ce52", "fields": {"code_postal": "71570", "code_commune_insee": "71090", "libell_d_acheminement": "LA CHAPELLE DE GUINCHAY", "ligne_5": "LA CHAPELLE PONTANEVAUX", "nom_de_la_commune": "LA CHAPELLE DE GUINCHAY", "coordonnees_gps": [46.2281804382, 4.74594921623]}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e3477057bbef05958dc35dc5972b162b5b901c9", "fields": {"nom_de_la_commune": "LA CHAPELLE DU MONT DE FRANCE", "libell_d_acheminement": "LA CHAPELLE DU MONT DE FRANCE", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71091"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087012ed2374b97735ae183da7e9d57aefbdab62", "fields": {"nom_de_la_commune": "CHARETTE VARENNES", "libell_d_acheminement": "CHARETTE VARENNES", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71101"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c832acc67e595340caf9d5c11972bf0d80c7bdb", "fields": {"nom_de_la_commune": "CHASSIGNY SOUS DUN", "libell_d_acheminement": "CHASSIGNY SOUS DUN", "code_postal": "71170", "coordonnees_gps": [46.2126023592, 4.32086009768], "code_commune_insee": "71110"}, "geometry": {"type": "Point", "coordinates": [4.32086009768, 46.2126023592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c1bfca406c6204896addd6adff0e556e68fff36", "fields": {"nom_de_la_commune": "CHATEAU", "libell_d_acheminement": "CHATEAU", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71112"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867cd18a13498348d6596bc085b1392c3e6736d7", "fields": {"nom_de_la_commune": "CHEILLY LES MARANGES", "libell_d_acheminement": "CHEILLY LES MARANGES", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71122"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522d0ece3df9a4a539d04e888d3d0ba553bb4dc4", "fields": {"nom_de_la_commune": "COLLONGE EN CHAROLLAIS", "libell_d_acheminement": "COLLONGE EN CHAROLLAIS", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71139"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1358983d8ebc6e03556d6b0ebbf847b8b397f8f", "fields": {"nom_de_la_commune": "COLLONGE LA MADELEINE", "libell_d_acheminement": "COLLONGE LA MADELEINE", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71140"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a36e167f85721115728cdd45e6633ca78ade6328", "fields": {"nom_de_la_commune": "CORMATIN", "libell_d_acheminement": "CORMATIN", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71145"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c0835f3c3e2f9de034760f915a8c143ad3fb561", "fields": {"nom_de_la_commune": "CORTAMBERT", "libell_d_acheminement": "CORTAMBERT", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71146"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7e355c85a8cdaa6427d4b99e8926fe53aa80e2f", "fields": {"nom_de_la_commune": "COUBLANC", "libell_d_acheminement": "COUBLANC", "code_postal": "71170", "coordonnees_gps": [46.2126023592, 4.32086009768], "code_commune_insee": "71148"}, "geometry": {"type": "Point", "coordinates": [4.32086009768, 46.2126023592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44121b7acdc62dba63656df933455f64944457f0", "fields": {"nom_de_la_commune": "CRISSEY", "libell_d_acheminement": "CRISSEY", "code_postal": "71530", "coordonnees_gps": [46.8388869017, 4.87612871845], "code_commune_insee": "71154"}, "geometry": {"type": "Point", "coordinates": [4.87612871845, 46.8388869017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a36b17d6a7aea3611a414d1c6fd6a9c2357e705", "fields": {"nom_de_la_commune": "CURTIL SOUS BURNAND", "libell_d_acheminement": "CURTIL SOUS BURNAND", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71164"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8944bc9feac4b73174315347b2a546abfffa0e7", "fields": {"nom_de_la_commune": "DEVROUZE", "libell_d_acheminement": "DEVROUZE", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71173"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d200c14026e19efd65a329eb0fd6892d5016cff", "fields": {"nom_de_la_commune": "DIGOIN", "libell_d_acheminement": "DIGOIN", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71176"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3d83c2e36c908641578fad3171407651e710ab", "fields": {"nom_de_la_commune": "ESSERTENNE", "libell_d_acheminement": "ESSERTENNE", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71191"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7dc5c63bba518382d4b96e57e5b85d6060969a6", "fields": {"nom_de_la_commune": "FONTAINES", "libell_d_acheminement": "FONTAINES", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71202"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "255a3516b4b99fd7ffd1967277828a0a5ec6c4ac", "fields": {"nom_de_la_commune": "FRETTERANS", "libell_d_acheminement": "FRETTERANS", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71207"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7da4a35b1876ef54b46c91870540b47a5d9d47e5", "fields": {"nom_de_la_commune": "GENELARD", "libell_d_acheminement": "GENELARD", "code_postal": "71420", "coordonnees_gps": [46.6127433229, 4.21711079033], "code_commune_insee": "71212"}, "geometry": {"type": "Point", "coordinates": [4.21711079033, 46.6127433229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e38b85380101c1eb59901955e58ce0a923b645d", "fields": {"nom_de_la_commune": "LA GENETE", "libell_d_acheminement": "LA GENETE", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71213"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a29bf1f2047c1a1be36b3d070986c6f7c80aee", "fields": {"nom_de_la_commune": "GIBLES", "libell_d_acheminement": "GIBLES", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71218"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe4af43d4904128912de84d8565b950219d00241", "fields": {"nom_de_la_commune": "LA GRANDE VERRIERE", "libell_d_acheminement": "LA GRANDE VERRIERE", "code_postal": "71990", "coordonnees_gps": [46.9426625414, 4.10521172287], "code_commune_insee": "71223"}, "geometry": {"type": "Point", "coordinates": [4.10521172287, 46.9426625414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fae726d5abf1d0c1349ead4d0524d24e758219d9", "fields": {"nom_de_la_commune": "GRURY", "libell_d_acheminement": "GRURY", "code_postal": "71760", "coordonnees_gps": [46.6998808869, 3.94523218405], "code_commune_insee": "71227"}, "geometry": {"type": "Point", "coordinates": [3.94523218405, 46.6998808869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "081cbd463d067adcd2deb3a5e9ce95d13ba0bb63", "fields": {"nom_de_la_commune": "GUEUGNON", "libell_d_acheminement": "GUEUGNON", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71230"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "348441602aee2babe06adcad52649e8c5d1ca43b", "fields": {"nom_de_la_commune": "L HOPITAL LE MERCIER", "libell_d_acheminement": "L HOPITAL LE MERCIER", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71233"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f30ebf09e9e4f0f4aac54e8a93dbfbe5f20f121c", "fields": {"nom_de_la_commune": "JONCY", "libell_d_acheminement": "JONCY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71242"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bda7f26812c34baaf0d0e67cc8bb6fd3fa857f2e", "fields": {"nom_de_la_commune": "LAIVES", "libell_d_acheminement": "LAIVES", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71249"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdce81bdc580b6f32142c099275e01127cecd5ab", "fields": {"nom_de_la_commune": "LAIZE", "libell_d_acheminement": "LAIZE", "code_postal": "71870", "coordonnees_gps": [46.3631972842, 4.80026769579], "code_commune_insee": "71250"}, "geometry": {"type": "Point", "coordinates": [4.80026769579, 46.3631972842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a2de839b22f2da30882e25b44ffa3d14153e790", "fields": {"nom_de_la_commune": "LESME", "libell_d_acheminement": "LESME", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71255"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681550e916a7fd802b17cd36dd72213425695321", "fields": {"nom_de_la_commune": "LESSARD EN BRESSE", "libell_d_acheminement": "LESSARD EN BRESSE", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71256"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7576b0d3f42ecb5a2f21beeb4537cbb5e83351d1", "fields": {"nom_de_la_commune": "LOISY", "libell_d_acheminement": "LOISY", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71261"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "664621aad04490dfd041ae93da123006d08e0516", "fields": {"nom_de_la_commune": "LONGEPIERRE", "libell_d_acheminement": "LONGEPIERRE", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71262"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d201c2771298bacbdb68e1df8b1ed8471bba4c1", "fields": {"nom_de_la_commune": "LOURNAND", "libell_d_acheminement": "LOURNAND", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71264"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4778d3e390a5844878fd7f1f85db65e0892af6cd", "fields": {"nom_de_la_commune": "LUCENAY L EVEQUE", "libell_d_acheminement": "LUCENAY L EVEQUE", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71266"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff035d6321d62464d3d892c49c9f049ee6cec729", "fields": {"nom_de_la_commune": "MACON", "libell_d_acheminement": "MACON", "code_postal": "71000", "coordonnees_gps": [46.3175504743, 4.81977288125], "code_commune_insee": "71270"}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3185ba4270505b2f21121a6eebc4b454fb9cdace", "fields": {"code_postal": "71000", "code_commune_insee": "71270", "libell_d_acheminement": "MACON", "ligne_5": "SENNECE LES MACON", "nom_de_la_commune": "MACON", "coordonnees_gps": [46.3175504743, 4.81977288125]}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f517af6f643686a7806e5a00283782f7c3b49b81", "fields": {"nom_de_la_commune": "MALAY", "libell_d_acheminement": "MALAY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71272"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36012b1bf6b865fe4b490805c92588555298d5d", "fields": {"nom_de_la_commune": "MARCILLY LA GUEURCE", "libell_d_acheminement": "MARCILLY LA GUEURCE", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71276"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c469cb5349616aa8fe6bc2f7649fd562783d937a", "fields": {"nom_de_la_commune": "MARIGNY", "libell_d_acheminement": "MARIGNY", "code_postal": "71300", "coordonnees_gps": [46.6732150919, 4.39767167499], "code_commune_insee": "71278"}, "geometry": {"type": "Point", "coordinates": [4.39767167499, 46.6732150919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4f3fc8d7de05c09e0342b3694241654dbf324e", "fields": {"code_postal": "71220", "code_commune_insee": "71279", "libell_d_acheminement": "LE ROUSSET MARIZY", "ligne_5": "LE ROUSSET", "nom_de_la_commune": "LE ROUSSET MARIZY", "coordonnees_gps": [46.4917423764, 4.43217403494]}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73fe48c8eacb6bef83737f8a24f7508335890384", "fields": {"nom_de_la_commune": "MENETREUIL", "libell_d_acheminement": "MENETREUIL", "code_postal": "71470", "coordonnees_gps": [46.5407527997, 5.13778374719], "code_commune_insee": "71293"}, "geometry": {"type": "Point", "coordinates": [5.13778374719, 46.5407527997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45344818e058529ffd4758a256201c1086c048a2", "fields": {"nom_de_la_commune": "MERCUREY", "libell_d_acheminement": "MERCUREY", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71294"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31721406c78afd0253c2b0b2679a7a41ef1292bd", "fields": {"nom_de_la_commune": "MILLY LAMARTINE", "libell_d_acheminement": "MILLY LAMARTINE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71299"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0160ebcec157461f5abb8c8b4fd7d0ab5ec890a", "fields": {"nom_de_la_commune": "MONTCOY", "libell_d_acheminement": "MONTCOY", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71312"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a336a0b9bb6d794a2fde03f8f0b72b16ddce4b0", "fields": {"nom_de_la_commune": "MOREY", "libell_d_acheminement": "MOREY", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71321"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da02aeda5959b1279d46f4807aebbe0af506284a", "fields": {"nom_de_la_commune": "NOCHIZE", "libell_d_acheminement": "NOCHIZE", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71331"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aabd8c843ed19e1121fa682277cc13ce80c209f", "fields": {"nom_de_la_commune": "OUROUX SOUS LE BOIS STE MARIE", "libell_d_acheminement": "OUROUX SOUS LE BOIS STE MARIE", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71335"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d28539d71a1b11610ec62986049a15cbbca9d1a", "fields": {"nom_de_la_commune": "PALLEAU", "libell_d_acheminement": "PALLEAU", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71341"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af90f3480fc65e423478654849074a547f9da5d6", "fields": {"nom_de_la_commune": "PERONNE", "libell_d_acheminement": "PERONNE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71345"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48aef70803a34a275cc86b1c9a3a268607124fae", "fields": {"nom_de_la_commune": "PERRIGNY SUR LOIRE", "libell_d_acheminement": "PERRIGNY SUR LOIRE", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71348"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6715f45402d8bdf8a4fc9a4a5e4a376e17593661", "fields": {"nom_de_la_commune": "LE PLANOIS", "libell_d_acheminement": "LE PLANOIS", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71352"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a03843ee93dbbb68e8e8177ce941ae45f760b62", "fields": {"nom_de_la_commune": "PLOTTES", "libell_d_acheminement": "PLOTTES", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71353"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778fa14f372c27b8c1b394dd233c1a2b690db6cc", "fields": {"nom_de_la_commune": "RANCY", "libell_d_acheminement": "RANCY", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71365"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82846fd087d27a0e4258ec81f263facc6f16c6bc", "fields": {"nom_de_la_commune": "REMIGNY", "libell_d_acheminement": "REMIGNY", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71369"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add35aa1fa1758d8a8ef122cb372c0b873706ad9", "fields": {"nom_de_la_commune": "ROMANECHE THORINS", "libell_d_acheminement": "ROMANECHE THORINS", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71372"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd5fb556218e2cccda0f8d50926d431a342c6f3", "fields": {"nom_de_la_commune": "ROMENAY", "libell_d_acheminement": "ROMENAY", "code_postal": "71470", "coordonnees_gps": [46.5407527997, 5.13778374719], "code_commune_insee": "71373"}, "geometry": {"type": "Point", "coordinates": [5.13778374719, 46.5407527997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dcd3c9a5158236c334de83d4c6fec99889595e3", "fields": {"nom_de_la_commune": "RULLY", "libell_d_acheminement": "RULLY", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71378"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18dd762b99c12ecb986275600c796b67557eae58", "fields": {"nom_de_la_commune": "SAGY", "libell_d_acheminement": "SAGY", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71379"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152f5002384794cf0fff27fe2835168634d5c41e", "fields": {"nom_de_la_commune": "SAILLENARD", "libell_d_acheminement": "SAILLENARD", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71380"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b9903c849afaf2764f41f3ba8e9279bb109f50f", "fields": {"nom_de_la_commune": "ST AGNAN", "libell_d_acheminement": "ST AGNAN", "code_postal": "71160", "coordonnees_gps": [46.5259433972, 3.94371544939], "code_commune_insee": "71382"}, "geometry": {"type": "Point", "coordinates": [3.94371544939, 46.5259433972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ddad9d1c4e0d0377232653b59f9de4a4b5fcdf", "fields": {"nom_de_la_commune": "COLOMBIERS", "libell_d_acheminement": "COLOMBIERS", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61111"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bbc15509711a1e99757fec1a3d3007874861616", "fields": {"nom_de_la_commune": "CONDE SUR SARTHE", "libell_d_acheminement": "CONDE SUR SARTHE", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61117"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dac659be424b7d4bb89100a713d39669621eac17", "fields": {"nom_de_la_commune": "COUDEHARD", "libell_d_acheminement": "COUDEHARD", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61120"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba79004f4ae8361c110806a38bdba51c75f755d", "fields": {"nom_de_la_commune": "DAMIGNY", "libell_d_acheminement": "DAMIGNY", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61143"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "851f132c5ba748e8c06fc4baa64d76a30cc8a483", "fields": {"code_postal": "61700", "code_commune_insee": "61145", "libell_d_acheminement": "DOMFRONT EN POIRAIE", "ligne_5": "ROUELLE", "nom_de_la_commune": "DOMFRONT EN POIRAIE", "coordonnees_gps": [48.6167127072, -0.618978701151]}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b8c914859faa7fbb8bac5524b2d767742ef1977", "fields": {"nom_de_la_commune": "DOMPIERRE", "libell_d_acheminement": "DOMPIERRE", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61146"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb1fbb0c708f956b4657d045d483927053b16cbc", "fields": {"nom_de_la_commune": "DURCET", "libell_d_acheminement": "DURCET", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61148"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e060fcccf708bcd68cf94cc882b13d8942ae1302", "fields": {"nom_de_la_commune": "ECHAUFFOUR", "libell_d_acheminement": "ECHAUFFOUR", "code_postal": "61370", "coordonnees_gps": [48.7195586978, 0.414844883776], "code_commune_insee": "61150"}, "geometry": {"type": "Point", "coordinates": [0.414844883776, 48.7195586978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34fe7b38897da048274479cba6e8ce8cf16dfb71", "fields": {"nom_de_la_commune": "ECOUCHE LES VALLEES", "libell_d_acheminement": "ECOUCHE LES VALLEES", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61153"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7cf2af12deeb08ae2e4bb2a41f546cc2bf0ba43", "fields": {"nom_de_la_commune": "EXMES", "libell_d_acheminement": "EXMES", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61157"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "955f3adc889543ddbc77b559d64a4784d0405376", "fields": {"nom_de_la_commune": "FAY", "libell_d_acheminement": "FAY", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61159"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31f8b27903b8d1a76e397bcba7ddeed612fa9ac2", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "GAUVILLE", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddf2f652354dc8a3beaa82ee77edecf67fdcaa01", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "ST NICOLAS DES LAITIERS", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6835dcdffd842ba4d5aa0d4af772dfb631868422", "fields": {"nom_de_la_commune": "FRANCHEVILLE", "libell_d_acheminement": "FRANCHEVILLE", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61176"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1ed02afb917f7cc67f1544e919761e4c792928f", "fields": {"nom_de_la_commune": "LA GONFRIERE", "libell_d_acheminement": "LA GONFRIERE", "code_postal": "61550", "coordonnees_gps": [48.7987924766, 0.488599977728], "code_commune_insee": "61193"}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4d108b584d873d1fd5a274de112e0bf1b7b8b1", "fields": {"nom_de_la_commune": "GOULET", "libell_d_acheminement": "GOULET", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61194"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f70755bd28f7d580b8089825da3ccd867d7e5b", "fields": {"nom_de_la_commune": "GUEPREI", "libell_d_acheminement": "GUEPREI", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61197"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "586b207207a57a049ea82f52fe9f8edfafe6cf52", "fields": {"nom_de_la_commune": "HABLOVILLE", "libell_d_acheminement": "HABLOVILLE", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61199"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ad96f656b2f1f041b003a0095317865d0642c7", "fields": {"nom_de_la_commune": "IRAI", "libell_d_acheminement": "IRAI", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61208"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c6c41fba7fa223e2d8fb41cc33fd973f1883434", "fields": {"nom_de_la_commune": "JOUE DU BOIS", "libell_d_acheminement": "JOUE DU BOIS", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61209"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394cb435885edcabd5516fc25c1abfc2625e9b73", "fields": {"code_postal": "61330", "code_commune_insee": "61211", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "ligne_5": "LORE", "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "coordonnees_gps": [48.5202783735, -0.60354646707]}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd0f0c57be9b0ecc547bf70cc0420778d87af718", "fields": {"nom_de_la_commune": "JUVIGNY SUR ORNE", "libell_d_acheminement": "JUVIGNY SUR ORNE", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61212"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24f9a9f74c08870e4d3886dd23fe721ed265482f", "fields": {"nom_de_la_commune": "LALACELLE", "libell_d_acheminement": "LALACELLE", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61213"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59079b6ef8c22e81a2e8a44a5e8536ee3d2d6d2c", "fields": {"nom_de_la_commune": "LANDISACQ", "libell_d_acheminement": "LANDISACQ", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61222"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9949de94206e840f60ddfc3903dcae1df60cd015", "fields": {"nom_de_la_commune": "LIVAIE", "libell_d_acheminement": "LIVAIE", "code_postal": "61420", "coordonnees_gps": [48.4829812527, -0.0377038824512], "code_commune_insee": "61228"}, "geometry": {"type": "Point", "coordinates": [-0.0377038824512, 48.4829812527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a15ed2550716b4a82180bf74351bb22115584be", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "LA LANDE SUR EURE", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9892a54023bf22764421ff9e04c0394001a3762", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "MARCHAINVILLE", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cb0fe926e97b6b7c08cb43a53de0e6bf9b37a61", "fields": {"nom_de_la_commune": "LOUGE SUR MAIRE", "libell_d_acheminement": "LOUGE SUR MAIRE", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61237"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "613f23cec9b80fdb0ade4e8961a8233ac6bac44d", "fields": {"nom_de_la_commune": "MARCHEMAISONS", "libell_d_acheminement": "MARCHEMAISONS", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61251"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a1b75d4d6e65bb7dbd8fffec41ee653c478cb9", "fields": {"nom_de_la_commune": "MEHOUDIN", "libell_d_acheminement": "MEHOUDIN", "code_postal": "61410", "coordonnees_gps": [48.5523953273, -0.396121387013], "code_commune_insee": "61257"}, "geometry": {"type": "Point", "coordinates": [-0.396121387013, 48.5523953273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6358e3d7b5a0d517d573cb492dbdc35fb5751613", "fields": {"nom_de_la_commune": "LE MENIL BROUT", "libell_d_acheminement": "LE MENIL BROUT", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61261"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc371de8c50345862af7abfb27b4eddf185cb0f6", "fields": {"nom_de_la_commune": "LE MENIL CIBOULT", "libell_d_acheminement": "LE MENIL CIBOULT", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61262"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4afd7dc65a598d9e69300016936e5d0b0abf42a", "fields": {"nom_de_la_commune": "MENIL GONDOUIN", "libell_d_acheminement": "MENIL GONDOUIN", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61265"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67452f78e953a841806fbac1bd323b90bbb87a10", "fields": {"nom_de_la_commune": "MONTGAROULT", "libell_d_acheminement": "MONTGAROULT", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61285"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e868cfd240789fd037f963f145ac32abc374357f", "fields": {"nom_de_la_commune": "MONTILLY SUR NOIREAU", "libell_d_acheminement": "MONTILLY SUR NOIREAU", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61287"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b702587ee0613684f7d7889c824b6b37546d4810", "fields": {"nom_de_la_commune": "MONT ORMEL", "libell_d_acheminement": "MONT ORMEL", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61289"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be41db7300da3023d4180627f000576e3ad21fa7", "fields": {"nom_de_la_commune": "MOUTIERS AU PERCHE", "libell_d_acheminement": "MOUTIERS AU PERCHE", "code_postal": "61110", "coordonnees_gps": [48.440685995, 0.83185325454], "code_commune_insee": "61300"}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "922652b2ae1cb5d1a02c544a07f003902939a1f8", "fields": {"nom_de_la_commune": "NEUILLY LE BISSON", "libell_d_acheminement": "NEUILLY LE BISSON", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61304"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b9a8db31b918c399fefc77856eb064d3622ce41", "fields": {"code_postal": "61340", "code_commune_insee": "61309", "libell_d_acheminement": "PERCHE EN NOCE", "ligne_5": "COLONARD CORUBERT", "nom_de_la_commune": "PERCHE EN NOCE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f14a5b00c968ba9101371318dafa02ac59e52b", "fields": {"code_postal": "61340", "code_commune_insee": "61309", "libell_d_acheminement": "PERCHE EN NOCE", "ligne_5": "ST AUBIN DES GROIS", "nom_de_la_commune": "PERCHE EN NOCE", "coordonnees_gps": [48.372155968, 0.719847889248]}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465a38def8d22d9bb768f23fca4505a0b8733f71", "fields": {"nom_de_la_commune": "PARFONDEVAL", "libell_d_acheminement": "PARFONDEVAL", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61322"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f19aef5e1a1e42d7e434827cc9e3e34965c4430", "fields": {"nom_de_la_commune": "LE PIN AU HARAS", "libell_d_acheminement": "LE PIN AU HARAS", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61328"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5bc35af8e7e0bf80ecdca5a90f857f560635e1", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "LA FRESNAYE AU SAUVAGE", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8381e5b258b099571537f7dcbb6c3b7508ee603", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "LES ROTOURS", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0c732e54bef20806cbb514bb9496fc7b5423e5e", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "RABODANGES", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4798902cef853c5a4c4f76b2723dd46d3f34d1", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "ST AUBERT SUR ORNE", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "103484ed7f756453b617779fb66cf499f3ba0995", "fields": {"nom_de_la_commune": "REVEILLON", "libell_d_acheminement": "REVEILLON", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61348"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ae5fabda57beb36da9a1540098f9840eba3da51", "fields": {"nom_de_la_commune": "RI", "libell_d_acheminement": "RI", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61349"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df82c0ab9ddcc229132ed0011311bdc1ca88715c", "fields": {"nom_de_la_commune": "ROIVILLE", "libell_d_acheminement": "ROIVILLE", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61351"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee3dbaaf462ac4620fe5ecd38156ebfbda0362d", "fields": {"nom_de_la_commune": "ST CENERI LE GEREI", "libell_d_acheminement": "ST CENERI LE GEREI", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61372"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af25d6318bc36391918c5a554362c0ed5074b3c8", "fields": {"nom_de_la_commune": "STE CERONNE LES MORTAGNE", "libell_d_acheminement": "STE CERONNE LES MORTAGNE", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61373"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "314f4108422e361d537ae8da3c286839553f58f6", "fields": {"code_postal": "61570", "code_commune_insee": "61375", "libell_d_acheminement": "BOISCHAMPRE", "ligne_5": "ST LOYER DES CHAMPS", "nom_de_la_commune": "BOISCHAMPRE", "coordonnees_gps": [48.6574688891, 0.0273677647898]}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d23a4c11942e6758a3dc347287dc05ad9f245439", "fields": {"nom_de_la_commune": "ST FRAIMBAULT", "libell_d_acheminement": "ST FRAIMBAULT", "code_postal": "61350", "coordonnees_gps": [48.5245489295, -0.754028854445], "code_commune_insee": "61387"}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01b34a0c4c4f5d7041fd56cc734a596083b2f381", "fields": {"nom_de_la_commune": "ST GERMAIN LE VIEUX", "libell_d_acheminement": "ST GERMAIN LE VIEUX", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61398"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27fe1ea3f70f01e29f9d300d5c6c1d8f32295fa6", "fields": {"nom_de_la_commune": "STE HONORINE LA CHARDONNE", "libell_d_acheminement": "STE HONORINE LA CHARDONNE", "code_postal": "61430", "coordonnees_gps": [48.8220175154, -0.472614628167], "code_commune_insee": "61407"}, "geometry": {"type": "Point", "coordinates": [-0.472614628167, 48.8220175154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0c84f38197f8b1064fdd1ece416df25f6f8077", "fields": {"nom_de_la_commune": "ST LAMBERT SUR DIVE", "libell_d_acheminement": "ST LAMBERT SUR DIVE", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61413"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19fc1c09c34e38f3c87b5d1afc9b7ffcd9289e77", "fields": {"nom_de_la_commune": "ST NICOLAS DE SOMMAIRE", "libell_d_acheminement": "ST NICOLAS DE SOMMAIRE", "code_postal": "61550", "coordonnees_gps": [48.7987924766, 0.488599977728], "code_commune_insee": "61435"}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f85c96daca2b92e33b9fde4e173a59569ca7f11f", "fields": {"nom_de_la_commune": "ST OUEN LE BRISOULT", "libell_d_acheminement": "ST OUEN LE BRISOULT", "code_postal": "61410", "coordonnees_gps": [48.5523953273, -0.396121387013], "code_commune_insee": "61439"}, "geometry": {"type": "Point", "coordinates": [-0.396121387013, 48.5523953273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d307b1d51c1d9c5338a93e06f4bc36483505b6c1", "fields": {"nom_de_la_commune": "ST PIERRE DES LOGES", "libell_d_acheminement": "ST PIERRE DES LOGES", "code_postal": "61370", "coordonnees_gps": [48.7195586978, 0.414844883776], "code_commune_insee": "61446"}, "geometry": {"type": "Point", "coordinates": [0.414844883776, 48.7195586978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4bf66b32583ee4ba879174aff8760603e9efa3", "fields": {"nom_de_la_commune": "ST PIERRE LA BRUYERE", "libell_d_acheminement": "ST PIERRE LA BRUYERE", "code_postal": "61340", "coordonnees_gps": [48.372155968, 0.719847889248], "code_commune_insee": "61448"}, "geometry": {"type": "Point", "coordinates": [0.719847889248, 48.372155968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47015fcfd12cb7872ac9dcfd7834b17f03a04ab1", "fields": {"nom_de_la_commune": "ST QUENTIN DE BLAVOU", "libell_d_acheminement": "ST QUENTIN DE BLAVOU", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61450"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58e58e5b264563f15c40d0e4808d308c6aed1b36", "fields": {"nom_de_la_commune": "ST SAUVEUR DE CARROUGES", "libell_d_acheminement": "ST SAUVEUR DE CARROUGES", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61453"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbc52be8c9b0d323d70d7e350d090da8e3be2096", "fields": {"nom_de_la_commune": "ST SULPICE SUR RISLE", "libell_d_acheminement": "ST SULPICE SUR RISLE", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61456"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1490e30609f95f5ab1dac09cf024912ef2c1d9a7", "fields": {"nom_de_la_commune": "ST SYMPHORIEN DES BRUYERES", "libell_d_acheminement": "ST SYMPHORIEN DES BRUYERES", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61457"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2847be84d243764bc2e6aab00b0cc1f5a4946d0", "fields": {"code_postal": "61600", "code_commune_insee": "61463", "libell_d_acheminement": "LES MONTS D ANDAINE", "ligne_5": "LA SAUVAGERE", "nom_de_la_commune": "LES MONTS D ANDAINE", "coordonnees_gps": [48.5956941307, -0.336692342986]}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72a1c4c1601d9e9c845e8497092300637577b29", "fields": {"nom_de_la_commune": "SEMALLE", "libell_d_acheminement": "SEMALLE", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61467"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af159240f65ad1b635a751251d7469f59b6aee1e", "fields": {"nom_de_la_commune": "SILLY EN GOUFFERN", "libell_d_acheminement": "SILLY EN GOUFFERN", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61474"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a70dba97c2e13f2299e488e68cb3b1f42a2e996", "fields": {"nom_de_la_commune": "TANQUES", "libell_d_acheminement": "TANQUES", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61479"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69c9de93a5d1d87f2aa67f68b448d0e0aa9ecc9", "fields": {"nom_de_la_commune": "TELLIERES LE PLESSIS", "libell_d_acheminement": "TELLIERES LE PLESSIS", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61481"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6eddb7b558bea37bd99dcf60d66c25f220e72d5", "fields": {"code_postal": "61600", "code_commune_insee": "61483", "libell_d_acheminement": "BAGNOLES DE L ORNE NORMANDIE", "ligne_5": "ST MICHEL DES ANDAINES", "nom_de_la_commune": "BAGNOLES DE L ORNE NORMANDIE", "coordonnees_gps": [48.5956941307, -0.336692342986]}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bebb51665857abd9db855d27cd5d38618e4c48a", "fields": {"code_postal": "61260", "code_commune_insee": "61484", "libell_d_acheminement": "VAL AU PERCHE", "ligne_5": "L HERMITIERE", "nom_de_la_commune": "VAL AU PERCHE", "coordonnees_gps": [48.2308054852, 0.743916298767]}, "geometry": {"type": "Point", "coordinates": [0.743916298767, 48.2308054852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b61e109fbe1a2cd0692936cf14f3c35ebee5af2", "fields": {"code_postal": "61800", "code_commune_insee": "61486", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "ligne_5": "ST JEAN DES BOIS", "nom_de_la_commune": "TINCHEBRAY BOCAGE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70809667ade969617a30208d7dbd5987bdcebc29", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "LA POTERIE AU PERCHE", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6bd20fe7dfd12a90dfa1770f64791f45c99d391", "fields": {"nom_de_la_commune": "TREMONT", "libell_d_acheminement": "TREMONT", "code_postal": "61390", "coordonnees_gps": [48.6344611985, 0.334647224183], "code_commune_insee": "61492"}, "geometry": {"type": "Point", "coordinates": [0.334647224183, 48.6344611985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3b42785e8380e51e1821646bdca538e81d51dc", "fields": {"nom_de_la_commune": "LES VENTES DE BOURSE", "libell_d_acheminement": "LES VENTES DE BOURSE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61499"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c523a603e551d0bda4aba42c30d6f668dda02919", "fields": {"nom_de_la_commune": "VILLEBADIN", "libell_d_acheminement": "VILLEBADIN", "code_postal": "61310", "coordonnees_gps": [48.7674422988, 0.143051627091], "code_commune_insee": "61504"}, "geometry": {"type": "Point", "coordinates": [0.143051627091, 48.7674422988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b4395e4ab442668778a6d5779573245335eca5f", "fields": {"nom_de_la_commune": "LES YVETEAUX", "libell_d_acheminement": "LES YVETEAUX", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61512"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9504ad0daca0bfb91e462c823d14ff77020a5e0", "fields": {"nom_de_la_commune": "ACHIET LE GRAND", "libell_d_acheminement": "ACHIET LE GRAND", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62005"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c635d932da84f5d88b13a9282dd7db635e613f0", "fields": {"nom_de_la_commune": "ACHIET LE PETIT", "libell_d_acheminement": "ACHIET LE PETIT", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62006"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1804ee4de960e1f9cc26215b6b12c3e53af7e4", "fields": {"nom_de_la_commune": "AIRE SUR LA LYS", "libell_d_acheminement": "AIRE SUR LA LYS", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62014"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96f5d6178b13141bf9ced47c29b8d257f8f01850", "fields": {"nom_de_la_commune": "ALEMBON", "libell_d_acheminement": "ALEMBON", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62020"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2f2e37dd4fca5082b4a9045db07ad8d0037bbf2", "fields": {"nom_de_la_commune": "ALQUINES", "libell_d_acheminement": "ALQUINES", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62024"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "046c5e8a319e4f817970f3368fd0b754b44e2903", "fields": {"nom_de_la_commune": "AMBRINES", "libell_d_acheminement": "AMBRINES", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62027"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15eb4b4eb1b6c210b071f9db6b9d3493e5810507", "fields": {"nom_de_la_commune": "ANVIN", "libell_d_acheminement": "ANVIN", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62036"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81d5c7609ea18b92edcd28e6b1fa5ff9e4482b79", "fields": {"nom_de_la_commune": "AUBROMETZ", "libell_d_acheminement": "AUBROMETZ", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62047"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e5ee98c49e535f5c9d9d58a124287c6bc424c7", "fields": {"nom_de_la_commune": "AUCHY LES HESDIN", "libell_d_acheminement": "AUCHY LES HESDIN", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62050"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1818085263a5e101b8bf5e16fd717d8bf0803527", "fields": {"nom_de_la_commune": "AUDREHEM", "libell_d_acheminement": "AUDREHEM", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62055"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26aea855b1bd69e431a4301a5e21d908421cb689", "fields": {"nom_de_la_commune": "AUDRUICQ", "libell_d_acheminement": "AUDRUICQ", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62057"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd518682448b7f8bdcc8422a5ac5d8d976159416", "fields": {"nom_de_la_commune": "AUTINGUES", "libell_d_acheminement": "AUTINGUES", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62059"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b330973ac32871de983eec79741eb416350ab4a4", "fields": {"nom_de_la_commune": "AUXI LE CHATEAU", "libell_d_acheminement": "AUXI LE CHATEAU", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62060"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b01bf8b41a67914941a8a0906fe83db51a31058b", "fields": {"nom_de_la_commune": "AVESNES LES BAPAUME", "libell_d_acheminement": "AVESNES LES BAPAUME", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62064"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af5763f4ade1f7a896f688b412f3a8a455737617", "fields": {"nom_de_la_commune": "BANCOURT", "libell_d_acheminement": "BANCOURT", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62079"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec06bf08a288c280dabb98aa399af6b99aaae4f", "fields": {"nom_de_la_commune": "BARLY", "libell_d_acheminement": "BARLY", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62084"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64bd8a8e60a07be6c87922618549db8eedeb606f", "fields": {"nom_de_la_commune": "BEAUFORT BLAVINCOURT", "libell_d_acheminement": "BEAUFORT BLAVINCOURT", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62092"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fc9406887863c792206a67850581790945d626f", "fields": {"nom_de_la_commune": "BERCK", "libell_d_acheminement": "BERCK", "code_postal": "62600", "coordonnees_gps": [50.4040908663, 1.59052675041], "code_commune_insee": "62108"}, "geometry": {"type": "Point", "coordinates": [1.59052675041, 50.4040908663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "510267c839295d5831ec856a7c189c66b9e0c5a6", "fields": {"nom_de_la_commune": "BEUGNATRE", "libell_d_acheminement": "BEUGNATRE", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62121"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97a4d939c9138b2942067fcea8c4732e7f0e95d3", "fields": {"nom_de_la_commune": "BEUSSENT", "libell_d_acheminement": "BEUSSENT", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62123"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f49b8db5dcee7225df65e2b8af97070cebfe733", "fields": {"nom_de_la_commune": "BEUVRY", "libell_d_acheminement": "BEUVRY", "code_postal": "62660", "coordonnees_gps": [50.5326329449, 2.69116438955], "code_commune_insee": "62126"}, "geometry": {"type": "Point", "coordinates": [2.69116438955, 50.5326329449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b7312726de1d586514f947a6ef8e3eec002a7fe", "fields": {"nom_de_la_commune": "BEZINGHEM", "libell_d_acheminement": "BEZINGHEM", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62127"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bed3b03187fa372ebfb3ccd3d26855ad5ff38a0", "fields": {"nom_de_la_commune": "BILLY MONTIGNY", "libell_d_acheminement": "BILLY MONTIGNY", "code_postal": "62420", "coordonnees_gps": [50.4155258883, 2.90728719443], "code_commune_insee": "62133"}, "geometry": {"type": "Point", "coordinates": [2.90728719443, 50.4155258883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6acfe36d6a3f763bca4b36942656b16ee7944733", "fields": {"nom_de_la_commune": "LA ROCHE DERRIEN", "libell_d_acheminement": "LA ROCHE DERRIEN", "code_postal": "22450", "coordonnees_gps": [48.7461443002, -3.2926403172], "code_commune_insee": "22264"}, "geometry": {"type": "Point", "coordinates": [-3.2926403172, 48.7461443002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "947dc87cba4785ac3bcb43ef65d6d38207935ec2", "fields": {"nom_de_la_commune": "ROSPEZ", "libell_d_acheminement": "ROSPEZ", "code_postal": "22300", "coordonnees_gps": [48.7115988979, -3.46942340449], "code_commune_insee": "22265"}, "geometry": {"type": "Point", "coordinates": [-3.46942340449, 48.7115988979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7445d402ecbafd5a42415afc1bfbcd04815139e5", "fields": {"nom_de_la_commune": "ST ADRIEN", "libell_d_acheminement": "ST ADRIEN", "code_postal": "22390", "coordonnees_gps": [48.476204135, -3.22431130001], "code_commune_insee": "22271"}, "geometry": {"type": "Point", "coordinates": [-3.22431130001, 48.476204135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e69dda85a0bec6dc863ee040236f8c40a71db528", "fields": {"nom_de_la_commune": "ST CARADEC", "libell_d_acheminement": "ST CARADEC", "code_postal": "22600", "coordonnees_gps": [48.1856100159, -2.76218367249], "code_commune_insee": "22279"}, "geometry": {"type": "Point", "coordinates": [-2.76218367249, 48.1856100159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd8963610cb0e207ed34b7a021d745964273927", "fields": {"nom_de_la_commune": "ST CARNE", "libell_d_acheminement": "ST CARNE", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22280"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b121e50361aef36ecc6212856e94091d8d3296c5", "fields": {"nom_de_la_commune": "ST DONAN", "libell_d_acheminement": "ST DONAN", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22287"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ebefc70b40e0088b486755cdc4d21156e2fccec", "fields": {"nom_de_la_commune": "ST LAUNEUC", "libell_d_acheminement": "ST LAUNEUC", "code_postal": "22230", "coordonnees_gps": [48.1982754989, -2.39412713175], "code_commune_insee": "22309"}, "geometry": {"type": "Point", "coordinates": [-2.39412713175, 48.1982754989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36616cbdd6eaff53ba2ba975060c70dd933b1e0c", "fields": {"nom_de_la_commune": "ST MADEN", "libell_d_acheminement": "ST MADEN", "code_postal": "22350", "coordonnees_gps": [48.3195777912, -2.14060003318], "code_commune_insee": "22312"}, "geometry": {"type": "Point", "coordinates": [-2.14060003318, 48.3195777912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba0eb2c1581f34e7493d5e3efbf622546362963", "fields": {"nom_de_la_commune": "ST MARTIN DES PRES", "libell_d_acheminement": "ST MARTIN DES PRES", "code_postal": "22320", "coordonnees_gps": [48.3058069578, -3.00861415665], "code_commune_insee": "22313"}, "geometry": {"type": "Point", "coordinates": [-3.00861415665, 48.3058069578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca14b8128feca94e565def22193d4db7514062c6", "fields": {"nom_de_la_commune": "ST MAUDEZ", "libell_d_acheminement": "ST MAUDEZ", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22315"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e12ff5e2479493a4712c27d22573f333914371d7", "fields": {"nom_de_la_commune": "ST NICOLAS DU PELEM", "libell_d_acheminement": "ST NICOLAS DU PELEM", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22321"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79c39f59f81659abc33306420eb42fb31ee3425b", "fields": {"nom_de_la_commune": "ST POTAN", "libell_d_acheminement": "ST POTAN", "code_postal": "22550", "coordonnees_gps": [48.570915647, -2.33432479795], "code_commune_insee": "22323"}, "geometry": {"type": "Point", "coordinates": [-2.33432479795, 48.570915647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a71d34cc574c46995738c414543de47221da082", "fields": {"code_postal": "22410", "code_commune_insee": "22325", "libell_d_acheminement": "ST QUAY PORTRIEUX", "ligne_5": "KERTUGAL", "nom_de_la_commune": "ST QUAY PORTRIEUX", "coordonnees_gps": [48.627965542, -2.88359302537]}, "geometry": {"type": "Point", "coordinates": [-2.88359302537, 48.627965542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "259a07304d136e80c7d76cb52f470d042f68472a", "fields": {"nom_de_la_commune": "ST SAMSON SUR RANCE", "libell_d_acheminement": "ST SAMSON SUR RANCE", "code_postal": "22100", "coordonnees_gps": [48.4429392522, -2.05375025215], "code_commune_insee": "22327"}, "geometry": {"type": "Point", "coordinates": [-2.05375025215, 48.4429392522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03f0536ab354f662acf934dabb7a986bfa719ef8", "fields": {"nom_de_la_commune": "STE TREPHINE", "libell_d_acheminement": "STE TREPHINE", "code_postal": "22480", "coordonnees_gps": [48.3587433062, -3.16333823836], "code_commune_insee": "22331"}, "geometry": {"type": "Point", "coordinates": [-3.16333823836, 48.3587433062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0ffa0c1ffd3211f9e44bf420bb4d81b198e3d8f", "fields": {"nom_de_la_commune": "ST TRIMOEL", "libell_d_acheminement": "ST TRIMOEL", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22332"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af8f361697a9443ec16ca5b4c71c503db25795ba", "fields": {"nom_de_la_commune": "TREBEDAN", "libell_d_acheminement": "TREBEDAN", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22342"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da89966c0a28e65264da5f304dec8534f72194b", "fields": {"nom_de_la_commune": "TREDANIEL", "libell_d_acheminement": "TREDANIEL", "code_postal": "22510", "coordonnees_gps": [48.3662829996, -2.56162019259], "code_commune_insee": "22346"}, "geometry": {"type": "Point", "coordinates": [-2.56162019259, 48.3662829996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3014a0465c8cbb806580d17c43f74ab34bff40", "fields": {"nom_de_la_commune": "TREGOMEUR", "libell_d_acheminement": "TREGOMEUR", "code_postal": "22590", "coordonnees_gps": [48.5695461938, -2.84144566596], "code_commune_insee": "22356"}, "geometry": {"type": "Point", "coordinates": [-2.84144566596, 48.5695461938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1058357d233e5ee372f6976d54530c887c2c99ab", "fields": {"nom_de_la_commune": "TREGONNEAU", "libell_d_acheminement": "TREGONNEAU", "code_postal": "22200", "coordonnees_gps": [48.5849264415, -3.14728309077], "code_commune_insee": "22358"}, "geometry": {"type": "Point", "coordinates": [-3.14728309077, 48.5849264415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e2e5b0b6b38f11ddcbd3950194cc08716995d3", "fields": {"nom_de_la_commune": "TREOGAN", "libell_d_acheminement": "TREOGAN", "code_postal": "22340", "coordonnees_gps": [48.272134183, -3.46045279747], "code_commune_insee": "22373"}, "geometry": {"type": "Point", "coordinates": [-3.46045279747, 48.272134183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53cd37054526faa81730c337216f554d7ca6160b", "fields": {"nom_de_la_commune": "TREVENEUC", "libell_d_acheminement": "TREVENEUC", "code_postal": "22410", "coordonnees_gps": [48.627965542, -2.88359302537], "code_commune_insee": "22377"}, "geometry": {"type": "Point", "coordinates": [-2.88359302537, 48.627965542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f7927da8f1a09bdd716fc546f06a0c81ed6f28b", "fields": {"nom_de_la_commune": "TREVOU TREGUIGNEC", "libell_d_acheminement": "TREVOU TREGUIGNEC", "code_postal": "22660", "coordonnees_gps": [48.8064531549, -3.35769639754], "code_commune_insee": "22379"}, "geometry": {"type": "Point", "coordinates": [-3.35769639754, 48.8064531549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c196b5982683f96a036e69ea3785219dd990e7f8", "fields": {"nom_de_la_commune": "UZEL", "libell_d_acheminement": "UZEL PRES L OUST", "code_postal": "22460", "coordonnees_gps": [48.2721083039, -2.86850543102], "code_commune_insee": "22384"}, "geometry": {"type": "Point", "coordinates": [-2.86850543102, 48.2721083039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70722a4b296ae0d56f5342471395f3d7739426aa", "fields": {"nom_de_la_commune": "LA VICOMTE SUR RANCE", "libell_d_acheminement": "LA VICOMTE SUR RANCE", "code_postal": "22690", "coordonnees_gps": [48.5060687899, -1.94808964301], "code_commune_insee": "22385"}, "geometry": {"type": "Point", "coordinates": [-1.94808964301, 48.5060687899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d36683a89f5697d988cd27e075d5b177f03d75d3", "fields": {"nom_de_la_commune": "LE VIEUX BOURG", "libell_d_acheminement": "LE VIEUX BOURG", "code_postal": "22800", "coordonnees_gps": [48.4126334748, -2.92534245766], "code_commune_insee": "22386"}, "geometry": {"type": "Point", "coordinates": [-2.92534245766, 48.4126334748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f5e611ff417927279a55343bf9984bad7ea81c", "fields": {"nom_de_la_commune": "LE VIEUX MARCHE", "libell_d_acheminement": "LE VIEUX MARCHE", "code_postal": "22420", "coordonnees_gps": [48.6137512705, -3.47149497332], "code_commune_insee": "22387"}, "geometry": {"type": "Point", "coordinates": [-3.47149497332, 48.6137512705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55dcded8054ff1d117aaf71f833e3eda3c69bd73", "fields": {"nom_de_la_commune": "VILDE GUINGALAN", "libell_d_acheminement": "VILDE GUINGALAN", "code_postal": "22980", "coordonnees_gps": [48.4277019302, -2.20139420516], "code_commune_insee": "22388"}, "geometry": {"type": "Point", "coordinates": [-2.20139420516, 48.4277019302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e092e9e1417f4db0e2b14874de73ea020563d809", "fields": {"nom_de_la_commune": "YFFINIAC", "libell_d_acheminement": "YFFINIAC", "code_postal": "22120", "coordonnees_gps": [48.462144605, -2.65332605915], "code_commune_insee": "22389"}, "geometry": {"type": "Point", "coordinates": [-2.65332605915, 48.462144605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30646664ea037f624126e2c5f03e9eb8011223c7", "fields": {"nom_de_la_commune": "YVIAS", "libell_d_acheminement": "YVIAS", "code_postal": "22930", "coordonnees_gps": [48.71485028, -3.04670770942], "code_commune_insee": "22390"}, "geometry": {"type": "Point", "coordinates": [-3.04670770942, 48.71485028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "559d75f173f971afa13f38f179c0fa57c6f77979", "fields": {"nom_de_la_commune": "ARFEUILLE CHATAIN", "libell_d_acheminement": "ARFEUILLE CHATAIN", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23005"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91e3c2c3c2981eea4a6340e1d111049e24937423", "fields": {"nom_de_la_commune": "ARS", "libell_d_acheminement": "ARS", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23007"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a29ba7525904bcaaa328fd67529af2383af692", "fields": {"nom_de_la_commune": "AUGE", "libell_d_acheminement": "AUGE", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23009"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9d0c377fa29751195a40f8690878e2b2c9b975", "fields": {"nom_de_la_commune": "AUZANCES", "libell_d_acheminement": "AUZANCES", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23013"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "271e8d249a716938e8ce6b3ecf7d57a108a78150", "fields": {"nom_de_la_commune": "BAZELAT", "libell_d_acheminement": "BAZELAT", "code_postal": "23160", "coordonnees_gps": [46.3627698496, 1.53929968478], "code_commune_insee": "23018"}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5403bbdd6669d3eb78cdf176f4e2d3f6f391ac6", "fields": {"nom_de_la_commune": "BENEVENT L ABBAYE", "libell_d_acheminement": "BENEVENT L ABBAYE", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23021"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46ac5f8603a1f236814a789824ba102dd2a123a3", "fields": {"nom_de_la_commune": "BLESSAC", "libell_d_acheminement": "BLESSAC", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23024"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "794136ecf9d386bb0308491daa04bd60d53bcd80", "fields": {"nom_de_la_commune": "BONNAT", "libell_d_acheminement": "BONNAT", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23025"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f288548adce002695add6a2ea25c31319e95f9", "fields": {"nom_de_la_commune": "LA BRIONNE", "libell_d_acheminement": "LA BRIONNE", "code_postal": "23000", "coordonnees_gps": [46.1633783939, 1.86168687145], "code_commune_insee": "23033"}, "geometry": {"type": "Point", "coordinates": [1.86168687145, 46.1633783939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3160a898233c0e175a5adaf82468c364bc0c1c38", "fields": {"nom_de_la_commune": "BUDELIERE", "libell_d_acheminement": "BUDELIERE", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23035"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bce0c0ac3784f4cae6d43d58cc9c30598af13f2", "fields": {"nom_de_la_commune": "BUSSIERE DUNOISE", "libell_d_acheminement": "BUSSIERE DUNOISE", "code_postal": "23320", "coordonnees_gps": [46.2024027743, 1.74389390315], "code_commune_insee": "23036"}, "geometry": {"type": "Point", "coordinates": [1.74389390315, 46.2024027743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bf2809b2c51ffadb2477932d729dbd4dc786cb5", "fields": {"nom_de_la_commune": "BUSSIERE NOUVELLE", "libell_d_acheminement": "BUSSIERE NOUVELLE", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23037"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2135211d59626a8344ac21f729def5b0253364e", "fields": {"nom_de_la_commune": "CEYROUX", "libell_d_acheminement": "CEYROUX", "code_postal": "23210", "coordonnees_gps": [46.0848375029, 1.64225209039], "code_commune_insee": "23042"}, "geometry": {"type": "Point", "coordinates": [1.64225209039, 46.0848375029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b04c1f8ada400c1b7f3b32b0ee0e925ecfcd17d", "fields": {"nom_de_la_commune": "CHAMBERAUD", "libell_d_acheminement": "CHAMBERAUD", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23043"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b0c70221a16267eaf776d8c5db5cb1c78b63a4", "fields": {"nom_de_la_commune": "CHARRON", "libell_d_acheminement": "CHARRON", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23054"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641d67da7a44bd17f3c4075f7f5978e075b1d2e5", "fields": {"nom_de_la_commune": "LA CHAUSSADE", "libell_d_acheminement": "LA CHAUSSADE", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23059"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76aff0d34d6341d4c0098cdeee488e2d822e523", "fields": {"nom_de_la_commune": "CLUGNAT", "libell_d_acheminement": "CLUGNAT", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23064"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3ce80372fd03328dd54177db95da72702513692", "fields": {"nom_de_la_commune": "CROZANT", "libell_d_acheminement": "CROZANT", "code_postal": "23160", "coordonnees_gps": [46.3627698496, 1.53929968478], "code_commune_insee": "23070"}, "geometry": {"type": "Point", "coordinates": [1.53929968478, 46.3627698496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69fb40ef676c9f8dc0564eec859648332677b578", "fields": {"nom_de_la_commune": "FRANSECHES", "libell_d_acheminement": "FRANSECHES", "code_postal": "23480", "coordonnees_gps": [46.0036093159, 2.04019258932], "code_commune_insee": "23086"}, "geometry": {"type": "Point", "coordinates": [2.04019258932, 46.0036093159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a46990564981d42e9ce1981e3dbbeb2408ba057b", "fields": {"nom_de_la_commune": "GIOUX", "libell_d_acheminement": "GIOUX", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23091"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc3225e5922c9826e6cb2818b9d7b7eebaf2f23", "fields": {"nom_de_la_commune": "MALVAL", "libell_d_acheminement": "MALVAL", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23121"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4400b1db63bddddc093012a33012eb6c529ce94d", "fields": {"nom_de_la_commune": "MANSAT LA COURRIERE", "libell_d_acheminement": "MANSAT LA COURRIERE", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23122"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcbef79edc104d9376c5521754390d548d026926", "fields": {"nom_de_la_commune": "LES MARS", "libell_d_acheminement": "LES MARS", "code_postal": "23700", "coordonnees_gps": [46.0140598991, 2.48026072858], "code_commune_insee": "23123"}, "geometry": {"type": "Point", "coordinates": [2.48026072858, 46.0140598991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d6f0b2be127ea3ed75bcb9750ea75911d8f36e", "fields": {"nom_de_la_commune": "LA MAZIERE AUX BONS HOMMES", "libell_d_acheminement": "MAZIERE AUX BONS HOMMES", "code_postal": "23260", "coordonnees_gps": [45.8336505959, 2.34933393664], "code_commune_insee": "23129"}, "geometry": {"type": "Point", "coordinates": [2.34933393664, 45.8336505959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7794253fe90909acc090e01c3ea8e3b97fb59a29", "fields": {"nom_de_la_commune": "LE MONTEIL AU VICOMTE", "libell_d_acheminement": "LE MONTEIL AU VICOMTE", "code_postal": "23460", "coordonnees_gps": [45.8611581486, 1.91070196951], "code_commune_insee": "23134"}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d42cc186f0ae98a2f3d347af0e52c5c979a2ff", "fields": {"nom_de_la_commune": "MORTROUX", "libell_d_acheminement": "MORTROUX", "code_postal": "23220", "coordonnees_gps": [46.3347181771, 1.89021674738], "code_commune_insee": "23136"}, "geometry": {"type": "Point", "coordinates": [1.89021674738, 46.3347181771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa671916c2d94f9fbf2c08c1c95ff83e0a41297", "fields": {"nom_de_la_commune": "PARSAC RIMONDEIX", "libell_d_acheminement": "PARSAC RIMONDEIX", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23149"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf7fa1d4bfd7722a8f138512aafe679fdd37933", "fields": {"nom_de_la_commune": "PEYRAT LA NONIERE", "libell_d_acheminement": "PEYRAT LA NONIERE", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23151"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa67cf58927dbc3adc37d1e3caec383d34c0975f", "fields": {"nom_de_la_commune": "PIONNAT", "libell_d_acheminement": "PIONNAT", "code_postal": "23140", "coordonnees_gps": [46.1904343577, 2.100695358], "code_commune_insee": "23154"}, "geometry": {"type": "Point", "coordinates": [2.100695358, 46.1904343577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4579b43bc98364c07b96d0e60b3a5c3bfb153b4", "fields": {"nom_de_la_commune": "ROCHES", "libell_d_acheminement": "ROCHES", "code_postal": "23270", "coordonnees_gps": [46.2997188404, 2.06167202349], "code_commune_insee": "23162"}, "geometry": {"type": "Point", "coordinates": [2.06167202349, 46.2997188404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56bee6231b2e3ba60b5e7f98869f5c19305a8bd3", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "23130", "coordonnees_gps": [46.1028113673, 2.22603035079], "code_commune_insee": "23209"}, "geometry": {"type": "Point", "coordinates": [2.22603035079, 46.1028113673]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "744b7fe58bfbc09e5d98d77e246c4c08d5d3a79b", "fields": {"nom_de_la_commune": "ST MARTIAL LE MONT", "libell_d_acheminement": "ST MARTIAL LE MONT", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23214"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac886d8496f187eba780ad9f3b5208c6c19ab234", "fields": {"nom_de_la_commune": "ST MARTIN CHATEAU", "libell_d_acheminement": "ST MARTIN CHATEAU", "code_postal": "23460", "coordonnees_gps": [45.8611581486, 1.91070196951], "code_commune_insee": "23216"}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "352848902a0b2516c5dbb94e2a422d87b9c0c2c3", "fields": {"code_postal": "23430", "code_commune_insee": "23217", "libell_d_acheminement": "ST MARTIN STE CATHERINE", "ligne_5": "LE THEIL", "nom_de_la_commune": "ST MARTIN STE CATHERINE", "coordonnees_gps": [45.9881301052, 1.59522254815]}, "geometry": {"type": "Point", "coordinates": [1.59522254815, 45.9881301052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83348459c0e9e8452e6c8472e83e6477f4abdcf2", "fields": {"nom_de_la_commune": "ST MOREIL", "libell_d_acheminement": "ST MOREIL", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23223"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1dfd6f848ef742ba06f5ca5dd84bdeb9a2a4374", "fields": {"nom_de_la_commune": "ST PARDOUX MORTEROLLES", "libell_d_acheminement": "ST PARDOUX MORTEROLLES", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23227"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73fc7f5df684d55efa84abdcab439b184877f81f", "fields": {"nom_de_la_commune": "ST PARDOUX LE NEUF", "libell_d_acheminement": "ST PARDOUX LE NEUF", "code_postal": "23200", "coordonnees_gps": [45.9607828765, 2.18895520996], "code_commune_insee": "23228"}, "geometry": {"type": "Point", "coordinates": [2.18895520996, 45.9607828765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a46fe1da0eb12481f5bd5b87188ea298ce466a41", "fields": {"nom_de_la_commune": "ST PARDOUX LES CARDS", "libell_d_acheminement": "ST PARDOUX LES CARDS", "code_postal": "23150", "coordonnees_gps": [46.0848780644, 2.01743909893], "code_commune_insee": "23229"}, "geometry": {"type": "Point", "coordinates": [2.01743909893, 46.0848780644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b51fb53c969cf6f7b042cf705908590a5f9839", "fields": {"nom_de_la_commune": "ST PIERRE DE FURSAC", "libell_d_acheminement": "ST PIERRE DE FURSAC", "code_postal": "23290", "coordonnees_gps": [46.1460504091, 1.51372481085], "code_commune_insee": "23231"}, "geometry": {"type": "Point", "coordinates": [1.51372481085, 46.1460504091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "763adf14f74b8b8216db723ace9f693ee673acaf", "fields": {"nom_de_la_commune": "ST PRIEST PALUS", "libell_d_acheminement": "ST PRIEST PALUS", "code_postal": "23400", "coordonnees_gps": [45.9354415937, 1.72588691482], "code_commune_insee": "23237"}, "geometry": {"type": "Point", "coordinates": [1.72588691482, 45.9354415937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1960dae17805dbf212fced1266ed57f30f71f81", "fields": {"nom_de_la_commune": "ST QUENTIN LA CHABANNE", "libell_d_acheminement": "ST QUENTIN LA CHABANNE", "code_postal": "23500", "coordonnees_gps": [45.8339183183, 2.15875798092], "code_commune_insee": "23238"}, "geometry": {"type": "Point", "coordinates": [2.15875798092, 45.8339183183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5176d1fd4d53747e70c7afc2514177c9dc82dced", "fields": {"nom_de_la_commune": "ST SILVAIN BAS LE ROC", "libell_d_acheminement": "ST SILVAIN BAS LE ROC", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23240"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7172e79c4174d2b6fe2860c5fec9299a24d5e7aa", "fields": {"nom_de_la_commune": "ST YRIEIX LA MONTAGNE", "libell_d_acheminement": "ST YRIEIX LA MONTAGNE", "code_postal": "23460", "coordonnees_gps": [45.8611581486, 1.91070196951], "code_commune_insee": "23249"}, "geometry": {"type": "Point", "coordinates": [1.91070196951, 45.8611581486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a47412fdc0ca98fcfe5e671214f107920d1725", "fields": {"nom_de_la_commune": "THAURON", "libell_d_acheminement": "THAURON", "code_postal": "23250", "coordonnees_gps": [46.0033713203, 1.87117921604], "code_commune_insee": "23253"}, "geometry": {"type": "Point", "coordinates": [1.87117921604, 46.0033713203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f290406678f8320dac03cd5b2e6aee88c753f1", "fields": {"nom_de_la_commune": "TOULX STE CROIX", "libell_d_acheminement": "TOULX STE CROIX", "code_postal": "23600", "coordonnees_gps": [46.3477631424, 2.22507795929], "code_commune_insee": "23254"}, "geometry": {"type": "Point", "coordinates": [2.22507795929, 46.3477631424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c7ac02fe702f55e239f0420f909ad2fd30fad65", "fields": {"nom_de_la_commune": "VERNEIGES", "libell_d_acheminement": "VERNEIGES", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23259"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "405bef280bc81016c54c85498eeeb70eb6ad5288", "fields": {"nom_de_la_commune": "VIERSAT", "libell_d_acheminement": "VIERSAT", "code_postal": "23170", "coordonnees_gps": [46.2178561951, 2.39023734647], "code_commune_insee": "23261"}, "geometry": {"type": "Point", "coordinates": [2.39023734647, 46.2178561951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "447daf92a4744c13606feb8a17d51c78885b4738", "fields": {"nom_de_la_commune": "VILLARD", "libell_d_acheminement": "VILLARD", "code_postal": "23800", "coordonnees_gps": [46.3044120361, 1.68205422912], "code_commune_insee": "23263"}, "geometry": {"type": "Point", "coordinates": [1.68205422912, 46.3044120361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b49064bf858e958837d4b0f8941e345d7c5b9815", "fields": {"nom_de_la_commune": "ABJAT SUR BANDIAT", "libell_d_acheminement": "ABJAT SUR BANDIAT", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24001"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a45650bb6992f87178d07d18904ebb6e7f80d38", "fields": {"nom_de_la_commune": "ANNESSE ET BEAULIEU", "libell_d_acheminement": "ANNESSE ET BEAULIEU", "code_postal": "24430", "coordonnees_gps": [45.1552585356, 0.627698357906], "code_commune_insee": "24010"}, "geometry": {"type": "Point", "coordinates": [0.627698357906, 45.1552585356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b43cef03558397cf2d55e6f9ded3f35bcdc7618c", "fields": {"nom_de_la_commune": "AUBAS", "libell_d_acheminement": "AUBAS", "code_postal": "24290", "coordonnees_gps": [45.0532972377, 1.1586306829], "code_commune_insee": "24014"}, "geometry": {"type": "Point", "coordinates": [1.1586306829, 45.0532972377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc15e8f0a0be8533c3ffb77a8c553f6732b91542", "fields": {"nom_de_la_commune": "AUDRIX", "libell_d_acheminement": "AUDRIX", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24015"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff04d3a8fca8378784266f00e5e9342c336c4577", "fields": {"nom_de_la_commune": "BANEUIL", "libell_d_acheminement": "BANEUIL", "code_postal": "24150", "coordonnees_gps": [44.8499844626, 0.730354146465], "code_commune_insee": "24023"}, "geometry": {"type": "Point", "coordinates": [0.730354146465, 44.8499844626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df5f3d9cd60f29851f956e0b2f73b5f830a9af28", "fields": {"nom_de_la_commune": "BARDOU", "libell_d_acheminement": "BARDOU", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24024"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0892232e44c0fac7347d74fb8943fb3b3b5c2b7e", "fields": {"code_postal": "24440", "code_commune_insee": "24028", "libell_d_acheminement": "BEAUMONTOIS EN PERIGORD", "ligne_5": "NOJALS ET CLOTTE", "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", "coordonnees_gps": [44.7570815244, 0.786200936905]}, "geometry": {"type": "Point", "coordinates": [0.786200936905, 44.7570815244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e4affd25d52d148497c78ada3b26f7394fd3ad", "fields": {"code_postal": "24170", "code_commune_insee": "24035", "libell_d_acheminement": "PAYS DE BELVES", "ligne_5": "FONGALOP", "nom_de_la_commune": "PAYS DE BELVES", "coordonnees_gps": [44.7520136105, 1.04613211786]}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97051a09ea017e85fa53a8be03086d831648df91", "fields": {"nom_de_la_commune": "BERTRIC BUREE", "libell_d_acheminement": "BERTRIC BUREE", "code_postal": "24320", "coordonnees_gps": [45.3701841655, 0.369368345584], "code_commune_insee": "24038"}, "geometry": {"type": "Point", "coordinates": [0.369368345584, 45.3701841655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8aff1350b9b9c88c139d0e5966fd9ac942630c6", "fields": {"nom_de_la_commune": "LA BOISSIERE D ANS", "libell_d_acheminement": "LA BOISSIERE D ANS", "code_postal": "24640", "coordonnees_gps": [45.228517812, 0.964656350856], "code_commune_insee": "24047"}, "geometry": {"type": "Point", "coordinates": [0.964656350856, 45.228517812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f179bd7f170774f3bc670b004da11dc46388ad34", "fields": {"nom_de_la_commune": "BOSSET", "libell_d_acheminement": "BOSSET", "code_postal": "24130", "coordonnees_gps": [44.9031230297, 0.344590140329], "code_commune_insee": "24051"}, "geometry": {"type": "Point", "coordinates": [0.344590140329, 44.9031230297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c83041f302ca339e84f07948e64e9e34c4e8c948", "fields": {"nom_de_la_commune": "BOUILLAC", "libell_d_acheminement": "BOUILLAC", "code_postal": "24480", "coordonnees_gps": [44.8133494955, 0.885908136539], "code_commune_insee": "24052"}, "geometry": {"type": "Point", "coordinates": [0.885908136539, 44.8133494955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01abb026469b2b9c56d2cd31a70444cb5b649ff2", "fields": {"nom_de_la_commune": "BRANTOME EN PERIGORD", "libell_d_acheminement": "BRANTOME EN PERIGORD", "code_postal": "24310", "coordonnees_gps": [45.3490445975, 0.614627469237], "code_commune_insee": "24064"}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f461b773ae345778f7dc67b33d8b3c2ae28c2de9", "fields": {"code_postal": "24310", "code_commune_insee": "24064", "libell_d_acheminement": "BRANTOME EN PERIGORD", "ligne_5": "ST JULIEN DE BOURDEILLES", "nom_de_la_commune": "BRANTOME EN PERIGORD", "coordonnees_gps": [45.3490445975, 0.614627469237]}, "geometry": {"type": "Point", "coordinates": [0.614627469237, 45.3490445975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "236cebc76befb3d0abd94e12f14a4d9dc6837e2f", "fields": {"nom_de_la_commune": "LE BUGUE", "libell_d_acheminement": "LE BUGUE", "code_postal": "24260", "coordonnees_gps": [44.9453097952, 0.921132326472], "code_commune_insee": "24067"}, "geometry": {"type": "Point", "coordinates": [0.921132326472, 44.9453097952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ef264f43a1c775e07ca26237d55cee37a06b77a", "fields": {"nom_de_la_commune": "BUSSIERE BADIL", "libell_d_acheminement": "BUSSIERE BADIL", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24071"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b2422066146966a9ae6ea6e821023106e49f770", "fields": {"nom_de_la_commune": "CAPDROT", "libell_d_acheminement": "CAPDROT", "code_postal": "24540", "coordonnees_gps": [44.678438827, 0.899675879539], "code_commune_insee": "24080"}, "geometry": {"type": "Point", "coordinates": [0.899675879539, 44.678438827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a8495f10c72ca9af6be1f6dc67a61faac1fe326", "fields": {"nom_de_la_commune": "CARSAC DE GURSON", "libell_d_acheminement": "CARSAC DE GURSON", "code_postal": "24610", "coordonnees_gps": [44.9374172162, 0.100217545195], "code_commune_insee": "24083"}, "geometry": {"type": "Point", "coordinates": [0.100217545195, 44.9374172162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a91459984621a9c8ebb2fd369950c3b91fc5bca0", "fields": {"nom_de_la_commune": "CHALAGNAC", "libell_d_acheminement": "CHALAGNAC", "code_postal": "24380", "coordonnees_gps": [45.0320385201, 0.735708739436], "code_commune_insee": "24094"}, "geometry": {"type": "Point", "coordinates": [0.735708739436, 45.0320385201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be4b1d7056ebe4e601d0958d3ea7c01374776565", "fields": {"nom_de_la_commune": "CHAMPCEVINEL", "libell_d_acheminement": "CHAMPCEVINEL", "code_postal": "24750", "coordonnees_gps": [45.1801193657, 0.766939907734], "code_commune_insee": "24098"}, "geometry": {"type": "Point", "coordinates": [0.766939907734, 45.1801193657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6452cc74208069c8837484105e4d271607a65af", "fields": {"nom_de_la_commune": "CHAMPNIERS ET REILHAC", "libell_d_acheminement": "CHAMPNIERS ET REILHAC", "code_postal": "24360", "coordonnees_gps": [45.6403534029, 0.649615228701], "code_commune_insee": "24100"}, "geometry": {"type": "Point", "coordinates": [0.649615228701, 45.6403534029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31cc04bfeab883d9796cc02a3f202f44b36216ab", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTMOREAU", "libell_d_acheminement": "LA CHAPELLE MONTMOREAU", "code_postal": "24300", "coordonnees_gps": [45.5368592505, 0.644182618939], "code_commune_insee": "24111"}, "geometry": {"type": "Point", "coordinates": [0.644182618939, 45.5368592505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888829819e76ad6ff11a5f00ca2ea292899f1aa2", "fields": {"nom_de_la_commune": "MAINNEVILLE", "libell_d_acheminement": "MAINNEVILLE", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27379"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf11d473c1bca26bd95b08e9ad9d50cb5be75fb5", "fields": {"nom_de_la_commune": "MANNEVILLE LA RAOULT", "libell_d_acheminement": "MANNEVILLE LA RAOULT", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27384"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa28f727d3b7059a48f2927f07921ed80376a9a4", "fields": {"nom_de_la_commune": "MARCILLY SUR EURE", "libell_d_acheminement": "MARCILLY SUR EURE", "code_postal": "27810", "coordonnees_gps": [48.821209934, 1.33322644002], "code_commune_insee": "27391"}, "geometry": {"type": "Point", "coordinates": [1.33322644002, 48.821209934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff4171a458b36c29397e9e2409f559d12abc5a5", "fields": {"nom_de_la_commune": "MARTAINVILLE", "libell_d_acheminement": "MARTAINVILLE", "code_postal": "27210", "coordonnees_gps": [49.3651599552, 0.371153081403], "code_commune_insee": "27393"}, "geometry": {"type": "Point", "coordinates": [0.371153081403, 49.3651599552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4c3ad36800e5c29f9c73741f7f59b9c1bd5d08e", "fields": {"nom_de_la_commune": "MELICOURT", "libell_d_acheminement": "MELICOURT", "code_postal": "27390", "coordonnees_gps": [48.9214064933, 0.481488505214], "code_commune_insee": "27395"}, "geometry": {"type": "Point", "coordinates": [0.481488505214, 48.9214064933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc999abca86ade58a14b70e728737b9298ff700", "fields": {"nom_de_la_commune": "MENILLES", "libell_d_acheminement": "MENILLES", "code_postal": "27120", "coordonnees_gps": [49.0197588771, 1.35524872453], "code_commune_insee": "27397"}, "geometry": {"type": "Point", "coordinates": [1.35524872453, 49.0197588771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "832287bbb79ea6f1d8d372fb7cd47ce025c0fbc8", "fields": {"nom_de_la_commune": "LE MESNIL JOURDAIN", "libell_d_acheminement": "LE MESNIL JOURDAIN", "code_postal": "27400", "coordonnees_gps": [49.185538027, 1.1391389969], "code_commune_insee": "27403"}, "geometry": {"type": "Point", "coordinates": [1.1391389969, 49.185538027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3fc0d15e7ec5b89f41a52d3c5da2fabca2354eb", "fields": {"nom_de_la_commune": "MESNIL SOUS VIENNE", "libell_d_acheminement": "MESNIL SOUS VIENNE", "code_postal": "27150", "coordonnees_gps": [49.3312689444, 1.59419925539], "code_commune_insee": "27405"}, "geometry": {"type": "Point", "coordinates": [1.59419925539, 49.3312689444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9d6a949248de92bed1933e4e27be73b0d19790", "fields": {"nom_de_la_commune": "MOISVILLE", "libell_d_acheminement": "MOISVILLE", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27411"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd1451d813d0c179ea69832ab7bacc805141fcb", "fields": {"nom_de_la_commune": "BUIS SUR DAMVILLE", "libell_d_acheminement": "BUIS SUR DAMVILLE", "code_postal": "27240", "coordonnees_gps": [48.8630175528, 1.06923363449], "code_commune_insee": "27416"}, "geometry": {"type": "Point", "coordinates": [1.06923363449, 48.8630175528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5986da3c022832f9349aa73e56622b4263313381", "fields": {"nom_de_la_commune": "MOUFLAINES", "libell_d_acheminement": "MOUFLAINES", "code_postal": "27420", "coordonnees_gps": [49.2104555744, 1.59282946064], "code_commune_insee": "27420"}, "geometry": {"type": "Point", "coordinates": [1.59282946064, 49.2104555744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7501091835c3683fab0a50472c8d0aaa11787e3f", "fields": {"nom_de_la_commune": "NEAUFLES AUVERGNY", "libell_d_acheminement": "NEAUFLES AUVERGNY", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27427"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df4619b5a2070595b6482631e7c407795b8f0d5", "fields": {"nom_de_la_commune": "NOARDS", "libell_d_acheminement": "NOARDS", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27434"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e57128f5a77bbdcc735c827b0786f1a8133cfb80", "fields": {"nom_de_la_commune": "NONANCOURT", "libell_d_acheminement": "NONANCOURT", "code_postal": "27320", "coordonnees_gps": [48.803702003, 1.19395665858], "code_commune_insee": "27438"}, "geometry": {"type": "Point", "coordinates": [1.19395665858, 48.803702003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699bc4e2a8a2ee859eea36adab8ca2c9d03e9c9e", "fields": {"nom_de_la_commune": "LE NOYER EN OUCHE", "libell_d_acheminement": "LE NOYER EN OUCHE", "code_postal": "27410", "coordonnees_gps": [49.0064963225, 0.739265680908], "code_commune_insee": "27444"}, "geometry": {"type": "Point", "coordinates": [0.739265680908, 49.0064963225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0edb0210e18fd7abb3ca52277ffbf52b7d81917f", "fields": {"nom_de_la_commune": "PIENCOURT", "libell_d_acheminement": "PIENCOURT", "code_postal": "27230", "coordonnees_gps": [49.1267066474, 0.462557937493], "code_commune_insee": "27455"}, "geometry": {"type": "Point", "coordinates": [0.462557937493, 49.1267066474]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36651713586610a23bbf6c12ece9489705fe2b87", "fields": {"nom_de_la_commune": "PORTE JOIE", "libell_d_acheminement": "PORTE JOIE", "code_postal": "27430", "coordonnees_gps": [49.2436385648, 1.27500108423], "code_commune_insee": "27471"}, "geometry": {"type": "Point", "coordinates": [1.27500108423, 49.2436385648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c87958cda177eb005b5bcb6d31810ea587e75a1d", "fields": {"nom_de_la_commune": "PORT MORT", "libell_d_acheminement": "PORT MORT", "code_postal": "27940", "coordonnees_gps": [49.1799104876, 1.36654248146], "code_commune_insee": "27473"}, "geometry": {"type": "Point", "coordinates": [1.36654248146, 49.1799104876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96550d8dc36af36e5eed0c79283d136ea1f01f65", "fields": {"nom_de_la_commune": "LA POTERIE MATHIEU", "libell_d_acheminement": "LA POTERIE MATHIEU", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27475"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b06de859cc3c4d7191c84c8e35c29e652d4044", "fields": {"nom_de_la_commune": "PULLAY", "libell_d_acheminement": "PULLAY", "code_postal": "27130", "coordonnees_gps": [48.7416976745, 0.908654179954], "code_commune_insee": "27481"}, "geometry": {"type": "Point", "coordinates": [0.908654179954, 48.7416976745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c19fdafa9ea26f61cdbc7d83d10a0021b77bce", "fields": {"nom_de_la_commune": "ROUTOT", "libell_d_acheminement": "ROUTOT", "code_postal": "27350", "coordonnees_gps": [49.3762845951, 0.704252322111], "code_commune_insee": "27500"}, "geometry": {"type": "Point", "coordinates": [0.704252322111, 49.3762845951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e3583079d50a6de01691843a69eeb9de30955f", "fields": {"nom_de_la_commune": "RUGLES", "libell_d_acheminement": "RUGLES", "code_postal": "27250", "coordonnees_gps": [48.8418982747, 0.70407157024], "code_commune_insee": "27502"}, "geometry": {"type": "Point", "coordinates": [0.70407157024, 48.8418982747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07055899d2e2be42610674759de643d64d2dfddb", "fields": {"nom_de_la_commune": "ST AUBIN SUR GAILLON", "libell_d_acheminement": "ST AUBIN SUR GAILLON", "code_postal": "27600", "coordonnees_gps": [49.1557980805, 1.30618945985], "code_commune_insee": "27517"}, "geometry": {"type": "Point", "coordinates": [1.30618945985, 49.1557980805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beddcb21df7f03cdaebde64aa17c393798b5493a", "fields": {"nom_de_la_commune": "ST AUBIN SUR QUILLEBEUF", "libell_d_acheminement": "ST AUBIN SUR QUILLEBEUF", "code_postal": "27680", "coordonnees_gps": [49.4325270069, 0.498906831944], "code_commune_insee": "27518"}, "geometry": {"type": "Point", "coordinates": [0.498906831944, 49.4325270069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5d559a85a87002d759d29904d1ac0d8e0cbd92a", "fields": {"nom_de_la_commune": "ST CHRISTOPHE SUR AVRE", "libell_d_acheminement": "ST CHRISTOPHE SUR AVRE", "code_postal": "27820", "coordonnees_gps": [48.6910585643, 0.801324463794], "code_commune_insee": "27521"}, "geometry": {"type": "Point", "coordinates": [0.801324463794, 48.6910585643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec9f3ace97069dc046f363c059293c1372b40608", "fields": {"nom_de_la_commune": "ST CLAIR D ARCEY", "libell_d_acheminement": "ST CLAIR D ARCEY", "code_postal": "27300", "coordonnees_gps": [49.1002170392, 0.597556299077], "code_commune_insee": "27523"}, "geometry": {"type": "Point", "coordinates": [0.597556299077, 49.1002170392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59c18e4683794fcbc207be54ffdbb1a58f78fe88", "fields": {"nom_de_la_commune": "STE COLOMBE PRES VERNON", "libell_d_acheminement": "STE COLOMBE PRES VERNON", "code_postal": "27950", "coordonnees_gps": [49.0939868057, 1.40527205161], "code_commune_insee": "27525"}, "geometry": {"type": "Point", "coordinates": [1.40527205161, 49.0939868057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e742b5c7c05cf4bcf2bfa9f3337cb21b78494752", "fields": {"code_postal": "27140", "code_commune_insee": "27533", "libell_d_acheminement": "ST DENIS LE FERMENT", "ligne_5": "ST PAER", "nom_de_la_commune": "ST DENIS LE FERMENT", "coordonnees_gps": [49.3150271215, 1.74471668878]}, "geometry": {"type": "Point", "coordinates": [1.74471668878, 49.3150271215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60babe5aade7d45a9eebcb9b554111d02c8799b6", "fields": {"nom_de_la_commune": "ST GEORGES DU MESNIL", "libell_d_acheminement": "ST GEORGES DU MESNIL", "code_postal": "27560", "coordonnees_gps": [49.2341277633, 0.525587390857], "code_commune_insee": "27541"}, "geometry": {"type": "Point", "coordinates": [0.525587390857, 49.2341277633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bd306b2eadd39eafcf7b8ddd5d1e70bc8008ff8", "fields": {"nom_de_la_commune": "ST GEORGES DU VIEVRE", "libell_d_acheminement": "ST GEORGES DU VIEVRE", "code_postal": "27450", "coordonnees_gps": [49.2621998831, 0.589575970015], "code_commune_insee": "27542"}, "geometry": {"type": "Point", "coordinates": [0.589575970015, 49.2621998831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59b13fd8dcc0adf3637a4fbb60730256b376b176", "fields": {"nom_de_la_commune": "ST GEORGES MOTEL", "libell_d_acheminement": "ST GEORGES MOTEL", "code_postal": "27710", "coordonnees_gps": [48.7915664803, 1.35974945164], "code_commune_insee": "27543"}, "geometry": {"type": "Point", "coordinates": [1.35974945164, 48.7915664803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ca25c75423e659f866c56bca2174a2d2101813", "fields": {"nom_de_la_commune": "ST GERMAIN DE PASQUIER", "libell_d_acheminement": "ST GERMAIN DE PASQUIER", "code_postal": "27370", "coordonnees_gps": [49.2357010366, 0.935247048397], "code_commune_insee": "27545"}, "geometry": {"type": "Point", "coordinates": [0.935247048397, 49.2357010366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "955796dcd3f93cc93312941f9dc066d6152fce7f", "fields": {"nom_de_la_commune": "ST GERMAIN DES ANGLES", "libell_d_acheminement": "ST GERMAIN DES ANGLES", "code_postal": "27930", "coordonnees_gps": [49.0499172873, 1.17473094072], "code_commune_insee": "27546"}, "geometry": {"type": "Point", "coordinates": [1.17473094072, 49.0499172873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c51da24fe342e74ed0fc4692640dada4e2834f", "fields": {"code_postal": "10410", "code_commune_insee": "10412", "libell_d_acheminement": "VILLECHETIF", "ligne_5": "BELLEY", "nom_de_la_commune": "VILLECHETIF", "coordonnees_gps": [48.2983334554, 4.15487406021]}, "geometry": {"type": "Point", "coordinates": [4.15487406021, 48.2983334554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c77b792b436764c43bcbbab59274451d26e1d071", "fields": {"nom_de_la_commune": "LA VILLENEUVE AU CHATELOT", "libell_d_acheminement": "LA VILLENEUVE AU CHATELOT", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10421"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd1a5afa93192fd1b566c2a078a510c8a84f104d", "fields": {"nom_de_la_commune": "VENDEUVRE SUR BARSE", "libell_d_acheminement": "VENDEUVRE SUR BARSE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10401"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a093d6d4c548a7834e937810ab52eb5130f913cd", "fields": {"nom_de_la_commune": "VILLIERS HERBISSE", "libell_d_acheminement": "VILLIERS HERBISSE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10430"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45120226741ff109dd555f4397b9bff209af4798", "fields": {"nom_de_la_commune": "LA VENDUE MIGNOT", "libell_d_acheminement": "LA VENDUE MIGNOT", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10402"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "334f7ec90cf115ce5ec857212d461db8dd7ff533", "fields": {"nom_de_la_commune": "VAUCHONVILLIERS", "libell_d_acheminement": "VAUCHONVILLIERS", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10397"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "867c6f07bde778995480bc82b983cc5696aaaf62", "fields": {"nom_de_la_commune": "VILLE SUR ARCE", "libell_d_acheminement": "VILLE SUR ARCE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10427"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d41ff03caf51fddb9df57782432f0f3ec76891d", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "10390", "coordonnees_gps": [48.2168971056, 4.18018933938], "code_commune_insee": "10406"}, "geometry": {"type": "Point", "coordinates": [4.18018933938, 48.2168971056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27d02887c276ea3a00fb23a400082d7cba342c55", "fields": {"nom_de_la_commune": "VILLELOUP", "libell_d_acheminement": "VILLELOUP", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10414"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b3d55a39f289005d2be2f67394d1df2019c676", "fields": {"nom_de_la_commune": "VILLACERF", "libell_d_acheminement": "VILLACERF", "code_postal": "10600", "coordonnees_gps": [48.3767482025, 3.98875459714], "code_commune_insee": "10409"}, "geometry": {"type": "Point", "coordinates": [3.98875459714, 48.3767482025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77d32e8a65ece43f6d8936c2106b219b72bf0796", "fields": {"nom_de_la_commune": "CAMPAGNE SUR AUDE", "libell_d_acheminement": "CAMPAGNE SUR AUDE", "code_postal": "11260", "coordonnees_gps": [42.9301295633, 2.17179732489], "code_commune_insee": "11063"}, "geometry": {"type": "Point", "coordinates": [2.17179732489, 42.9301295633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb9866bf8c2d68d293ba103c12debdec2d7ebe16", "fields": {"nom_de_la_commune": "BELVEZE DU RAZES", "libell_d_acheminement": "BELVEZE DU RAZES", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11034"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a773d3cb5be6d701f73eaf737eb0a471c8ecb4ea", "fields": {"nom_de_la_commune": "BELCASTEL ET BUC", "libell_d_acheminement": "BELCASTEL ET BUC", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11029"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aa89e65f56d09d03fc53571a707b2713cbcd29e", "fields": {"nom_de_la_commune": "BIZE MINERVOIS", "libell_d_acheminement": "BIZE MINERVOIS", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11041"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633eaa5134c081d49e4f1429710a212384a80ce9", "fields": {"nom_de_la_commune": "BOUILHONNAC", "libell_d_acheminement": "BOUILHONNAC", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11043"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc310d88b468aec20149809de26a626c86f7b32", "fields": {"nom_de_la_commune": "LES CASSES", "libell_d_acheminement": "LES CASSES", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11074"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98b220230b5d3db3df08048ea87c18c8b5091e57", "fields": {"nom_de_la_commune": "LA BEZOLE", "libell_d_acheminement": "LA BEZOLE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11039"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfab08ce77c20b6559af8182a5b85d3e4585f0af", "fields": {"nom_de_la_commune": "BOURIEGE", "libell_d_acheminement": "BOURIEGE", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11045"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d05d52c2bca49bef6ada1c164ed3070035b9d9", "fields": {"nom_de_la_commune": "CAILHAU", "libell_d_acheminement": "CAILHAU", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11058"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2302ba104671119c1bfa9f2bf1ad4190b2a96430", "fields": {"nom_de_la_commune": "BLOMAC", "libell_d_acheminement": "BLOMAC", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11042"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de61e9ab7d781d0f2d986fbd8c0581d9b7b6c01", "fields": {"nom_de_la_commune": "VILLIERS LE BOIS", "libell_d_acheminement": "VILLIERS LE BOIS", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10431"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5427e78c37253559e6f5755adba7a780607d0ffa", "fields": {"nom_de_la_commune": "ALBIERES", "libell_d_acheminement": "ALBIERES", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11007"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fadcdd0a4711332f74d3c28454657f9bed41da4c", "fields": {"nom_de_la_commune": "ARTIGUES", "libell_d_acheminement": "ARTIGUES", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11017"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cbc1d678251633b1ceb53282cd270e25aea760d", "fields": {"nom_de_la_commune": "BELCAIRE", "libell_d_acheminement": "BELCAIRE", "code_postal": "11340", "coordonnees_gps": [42.8370630944, 1.98179772961], "code_commune_insee": "11028"}, "geometry": {"type": "Point", "coordinates": [1.98179772961, 42.8370630944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b44a742f0acf48ef5fa79b5c322fdd20e8c722", "fields": {"nom_de_la_commune": "VULAINES", "libell_d_acheminement": "VULAINES", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10444"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c41b4de1925f644ca6f86592536d9c54c8f02cc", "fields": {"nom_de_la_commune": "BARBAIRA", "libell_d_acheminement": "BARBAIRA", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11027"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9333ceb898eb1c02fb602cb40871c98781fdfe62", "fields": {"nom_de_la_commune": "ARMISSAN", "libell_d_acheminement": "ARMISSAN", "code_postal": "11110", "coordonnees_gps": [43.2267884537, 3.0836448835], "code_commune_insee": "11014"}, "geometry": {"type": "Point", "coordinates": [3.0836448835, 43.2267884537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10884ba653c11e92731c7ce8e3a989b416f4c668", "fields": {"nom_de_la_commune": "ALAIRAC", "libell_d_acheminement": "ALAIRAC", "code_postal": "11290", "coordonnees_gps": [43.1943746552, 2.18782678941], "code_commune_insee": "11005"}, "geometry": {"type": "Point", "coordinates": [2.18782678941, 43.1943746552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42bdf1cc0eccadf4f41e6a2401865a26fb1b5878", "fields": {"nom_de_la_commune": "BADENS", "libell_d_acheminement": "BADENS", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11023"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "389ad829b86a336bac427e1a2f7cb70d852122cd", "fields": {"nom_de_la_commune": "ALBAS", "libell_d_acheminement": "ALBAS", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11006"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78237362dc120fd089587837fdf8b7888b887765", "fields": {"code_postal": "11230", "code_commune_insee": "11080", "libell_d_acheminement": "VAL DE LAMBRONNE", "ligne_5": "CAUDEVAL", "nom_de_la_commune": "VAL DE LAMBRONNE", "coordonnees_gps": [42.9737220665, 2.02689573941]}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3268d8adde87e38108becc6e121aa184cac9ae4f", "fields": {"nom_de_la_commune": "CAUNETTES EN VAL", "libell_d_acheminement": "CAUNETTES EN VAL", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11083"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80cbe98e31a9257d9dd38649c076b4587ba26ac", "fields": {"nom_de_la_commune": "CAUNES MINERVOIS", "libell_d_acheminement": "CAUNES MINERVOIS", "code_postal": "11160", "coordonnees_gps": [43.3459989767, 2.52081672381], "code_commune_insee": "11081"}, "geometry": {"type": "Point", "coordinates": [2.52081672381, 43.3459989767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b68cdcadcdcc788a831be81b0a91570bcd8f2e91", "fields": {"nom_de_la_commune": "CAZALRENOUX", "libell_d_acheminement": "CAZALRENOUX", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11087"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa2d0c570f7e9a416bfde9e5c8bc5371fa519cf8", "fields": {"nom_de_la_commune": "COUNOZOULS", "libell_d_acheminement": "COUNOZOULS", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11104"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcc4d499ddb8b63ebfc489e3218eecbc874a5ea9", "fields": {"nom_de_la_commune": "CASTELRENG", "libell_d_acheminement": "CASTELRENG", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11078"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "929ec11ea91ede6d37aad5612bb2ef544dcf6e48", "fields": {"nom_de_la_commune": "COUIZA", "libell_d_acheminement": "COUIZA", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11103"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "828a26d1fb81daa6e6c9dc1a64d63710fc9a1dbf", "fields": {"nom_de_la_commune": "ST NICOLAS LA CHAPELLE", "libell_d_acheminement": "ST NICOLAS LA CHAPELLE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10355"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3233748cf325670a820598a73aef50fca07bf346", "fields": {"nom_de_la_commune": "VALLANT ST GEORGES", "libell_d_acheminement": "VALLANT ST GEORGES", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10392"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "029d7876cf9d1e129dc77735d0a9d2e3c81367c9", "fields": {"nom_de_la_commune": "TORCY LE GRAND", "libell_d_acheminement": "TORCY LE GRAND", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10379"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ae3fbc0d49c66292e1220339a70c4e2591a2b7", "fields": {"nom_de_la_commune": "TORCY LE PETIT", "libell_d_acheminement": "TORCY LE PETIT", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10380"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0da99db7197473af02735031972ec0aadfcfa18", "fields": {"nom_de_la_commune": "THENNELIERES", "libell_d_acheminement": "THENNELIERES", "code_postal": "10410", "coordonnees_gps": [48.2983334554, 4.15487406021], "code_commune_insee": "10375"}, "geometry": {"type": "Point", "coordinates": [4.15487406021, 48.2983334554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d398f440da58ebe020e3b0057e91383aeb71eee", "fields": {"nom_de_la_commune": "LA SAULSOTTE", "libell_d_acheminement": "LA SAULSOTTE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10367"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afe2d6a21d9254fc198269c64395841a5cdcf9f3", "fields": {"nom_de_la_commune": "UNIENVILLE", "libell_d_acheminement": "UNIENVILLE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10389"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e47d876fb2edf008fdea0ee4af0ade799981454", "fields": {"nom_de_la_commune": "TRANCAULT", "libell_d_acheminement": "TRANCAULT", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10383"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f8a3b81d5d5b66cd3a3dfb4bb803db6e29dc5d9", "fields": {"nom_de_la_commune": "SOMMEVAL", "libell_d_acheminement": "SOMMEVAL", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10371"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87fb92f26624d657c1dc5f4ef39279e5700193d7", "fields": {"nom_de_la_commune": "TROYES", "libell_d_acheminement": "TROYES", "code_postal": "10000", "coordonnees_gps": [48.2968524808, 4.07809709011], "code_commune_insee": "10387"}, "geometry": {"type": "Point", "coordinates": [4.07809709011, 48.2968524808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3999a2252601887619c3ef0294e281a0d7679e6", "fields": {"nom_de_la_commune": "MORTAGNE SUR SEVRE", "libell_d_acheminement": "MORTAGNE SUR SEVRE", "code_postal": "85290", "coordonnees_gps": [46.9743066713, -0.927121761367], "code_commune_insee": "85151"}, "geometry": {"type": "Point", "coordinates": [-0.927121761367, 46.9743066713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72d0132da5537249abc1ca844619c932133a5212", "fields": {"code_postal": "85390", "code_commune_insee": "85154", "libell_d_acheminement": "MOUILLERON ST GERMAIN", "ligne_5": "ST GERMAIN L AIGUILLER", "nom_de_la_commune": "MOUILLERON ST GERMAIN", "coordonnees_gps": [46.6728627352, -0.866891813869]}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1919638d76425770d3b626cda5a728a8c7abf3f7", "fields": {"nom_de_la_commune": "MOUZEUIL ST MARTIN", "libell_d_acheminement": "MOUZEUIL ST MARTIN", "code_postal": "85370", "coordonnees_gps": [46.4559323698, -0.995832045807], "code_commune_insee": "85158"}, "geometry": {"type": "Point", "coordinates": [-0.995832045807, 46.4559323698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36c719b3f49e4ce6da81747bc72f6469e63c1370", "fields": {"nom_de_la_commune": "NIEUL LE DOLENT", "libell_d_acheminement": "NIEUL LE DOLENT", "code_postal": "85430", "coordonnees_gps": [46.5767007042, -1.4774062897], "code_commune_insee": "85161"}, "geometry": {"type": "Point", "coordinates": [-1.4774062897, 46.5767007042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf814ca1dc7cb8ee5c4d4d31da750f60a5289e0", "fields": {"nom_de_la_commune": "NIEUL SUR L AUTISE", "libell_d_acheminement": "NIEUL SUR L AUTISE", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85162"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "436db47a535c043a732b2479f744a803896ad620", "fields": {"nom_de_la_commune": "NOIRMOUTIER EN L ILE", "libell_d_acheminement": "NOIRMOUTIER EN L ILE", "code_postal": "85330", "coordonnees_gps": [47.0086741668, -2.26232713424], "code_commune_insee": "85163"}, "geometry": {"type": "Point", "coordinates": [-2.26232713424, 47.0086741668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f72b19432149ce80e02504043b8595d92407c2c", "fields": {"nom_de_la_commune": "NOTRE DAME DE MONTS", "libell_d_acheminement": "NOTRE DAME DE MONTS", "code_postal": "85690", "coordonnees_gps": [46.8421036933, -2.10953351067], "code_commune_insee": "85164"}, "geometry": {"type": "Point", "coordinates": [-2.10953351067, 46.8421036933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77bfd88225789de9ca719ad3f622b4ed03664776", "fields": {"nom_de_la_commune": "PISSOTTE", "libell_d_acheminement": "PISSOTTE", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85176"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc3013cbcfde188127108a8b6d27395a1826a1c1", "fields": {"nom_de_la_commune": "REAUMUR", "libell_d_acheminement": "REAUMUR", "code_postal": "85700", "coordonnees_gps": [46.7673763224, -0.80165823115], "code_commune_insee": "85187"}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bbb64792fa0c5926f9e79e01f8db1628f334dc4", "fields": {"nom_de_la_commune": "NOTRE DAME DE RIEZ", "libell_d_acheminement": "NOTRE DAME DE RIEZ", "code_postal": "85270", "coordonnees_gps": [46.7457643278, -1.94773887876], "code_commune_insee": "85189"}, "geometry": {"type": "Point", "coordinates": [-1.94773887876, 46.7457643278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e537d77836d4ecc40d98acbd308a890ed181d22", "fields": {"nom_de_la_commune": "LA ROCHE SUR YON", "libell_d_acheminement": "LA ROCHE SUR YON", "code_postal": "85000", "coordonnees_gps": [46.6755378751, -1.41824284991], "code_commune_insee": "85191"}, "geometry": {"type": "Point", "coordinates": [-1.41824284991, 46.6755378751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db6b231e759aecd994e9830a643c4072d1d5b546", "fields": {"nom_de_la_commune": "ROCHETREJOUX", "libell_d_acheminement": "ROCHETREJOUX", "code_postal": "85510", "coordonnees_gps": [46.7872179072, -0.944338069578], "code_commune_insee": "85192"}, "geometry": {"type": "Point", "coordinates": [-0.944338069578, 46.7872179072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20389d8e997880d3ddc2791111fb975fe864937d", "fields": {"nom_de_la_commune": "ROSNAY", "libell_d_acheminement": "ROSNAY", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85193"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "266e9e00cede1c279cfc8e7d6148003cec2c6b68", "fields": {"nom_de_la_commune": "ST AUBIN LA PLAINE", "libell_d_acheminement": "ST AUBIN LA PLAINE", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85199"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca64faf6f72e2171ee7e283ec97e36de27616572", "fields": {"nom_de_la_commune": "ST DENIS LA CHEVASSE", "libell_d_acheminement": "ST DENIS LA CHEVASSE", "code_postal": "85170", "coordonnees_gps": [46.803170613, -1.45953412091], "code_commune_insee": "85208"}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6bee1765509896671a6580aa203c5708ef6550a", "fields": {"nom_de_la_commune": "ST ETIENNE DE BRILLOUET", "libell_d_acheminement": "ST ETIENNE DE BRILLOUET", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85209"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25f2bfe19f0888b9706e3b9845e25eae92959a7", "fields": {"code_postal": "85310", "code_commune_insee": "85213", "libell_d_acheminement": "RIVES DE L YON", "ligne_5": "ST FLORENT DES BOIS", "nom_de_la_commune": "RIVES DE L YON", "coordonnees_gps": [46.6268805827, -1.33228683205]}, "geometry": {"type": "Point", "coordinates": [-1.33228683205, 46.6268805827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d90f7503117921856b4e6cad91d802af8fca3a9", "fields": {"nom_de_la_commune": "STE FOY", "libell_d_acheminement": "STE FOY", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85214"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c19b77eb9028af25faddb0c25c7b5ac55a341fd6", "fields": {"nom_de_la_commune": "ST HILAIRE DE RIEZ", "libell_d_acheminement": "ST HILAIRE DE RIEZ", "code_postal": "85270", "coordonnees_gps": [46.7457643278, -1.94773887876], "code_commune_insee": "85226"}, "geometry": {"type": "Point", "coordinates": [-1.94773887876, 46.7457643278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dd1c7baedce989f9f967e5e8107dadd70648b50", "fields": {"nom_de_la_commune": "ST HILAIRE LE VOUHIS", "libell_d_acheminement": "ST HILAIRE LE VOUHIS", "code_postal": "85480", "coordonnees_gps": [46.6439879981, -1.18432139846], "code_commune_insee": "85232"}, "geometry": {"type": "Point", "coordinates": [-1.18432139846, 46.6439879981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06bdea24fd2a438e36ebad1d2f5509f813f017d2", "fields": {"nom_de_la_commune": "NOYERS ST MARTIN", "libell_d_acheminement": "NOYERS ST MARTIN", "code_postal": "60480", "coordonnees_gps": [49.5501193764, 2.22856678007], "code_commune_insee": "60470"}, "geometry": {"type": "Point", "coordinates": [2.22856678007, 49.5501193764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a286011b5ea295b66e0025f52e14d6ffad6ff17", "fields": {"nom_de_la_commune": "NOYON", "libell_d_acheminement": "NOYON", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60471"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58b127ea55b50aa9b497230d939a3422dc1d2a3", "fields": {"nom_de_la_commune": "ORROUY", "libell_d_acheminement": "ORROUY", "code_postal": "60129", "coordonnees_gps": [49.2970523686, 2.864136269], "code_commune_insee": "60481"}, "geometry": {"type": "Point", "coordinates": [2.864136269, 49.2970523686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ebaa128162632af0a77f31941f7836696d71489", "fields": {"nom_de_la_commune": "PAILLART", "libell_d_acheminement": "PAILLART", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60486"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83436c76aab089af4a8c2581fc6b9bd392572906", "fields": {"nom_de_la_commune": "PEROY LES GOMBRIES", "libell_d_acheminement": "PEROY LES GOMBRIES", "code_postal": "60440", "coordonnees_gps": [49.1416287858, 2.83287708561], "code_commune_insee": "60489"}, "geometry": {"type": "Point", "coordinates": [2.83287708561, 49.1416287858]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f5822ae6f75f28440702a4fe36f09e72f50f035", "fields": {"nom_de_la_commune": "PLAINVAL", "libell_d_acheminement": "PLAINVAL", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60495"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a125f9f41fa173e3e3025774a2e7d150413c0c", "fields": {"nom_de_la_commune": "PONTARME", "libell_d_acheminement": "PONTARME", "code_postal": "60520", "coordonnees_gps": [49.1470921709, 2.55054405119], "code_commune_insee": "60505"}, "geometry": {"type": "Point", "coordinates": [2.55054405119, 49.1470921709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a997a573c9c716774addb57717de99f95d6f9f7", "fields": {"nom_de_la_commune": "PONTOISE LES NOYON", "libell_d_acheminement": "PONTOISE LES NOYON", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60507"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40c931ffb942024954c52492eb9b6194c34764f5", "fields": {"nom_de_la_commune": "PORCHEUX", "libell_d_acheminement": "PORCHEUX", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60510"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b26b587aa12cc726c2e5d7e16b23715720f404", "fields": {"nom_de_la_commune": "PUISEUX LE HAUBERGER", "libell_d_acheminement": "PUISEUX LE HAUBERGER", "code_postal": "60540", "coordonnees_gps": [49.1970454016, 2.20454103263], "code_commune_insee": "60517"}, "geometry": {"type": "Point", "coordinates": [2.20454103263, 49.1970454016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2598e9138cd5539a2332e44ceaadeaab9e84300", "fields": {"nom_de_la_commune": "QUESMY", "libell_d_acheminement": "QUESMY", "code_postal": "60640", "coordonnees_gps": [49.6645543182, 3.0328474827], "code_commune_insee": "60519"}, "geometry": {"type": "Point", "coordinates": [3.0328474827, 49.6645543182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8fd05f8194c41eec77c3f933e39299899da1528", "fields": {"nom_de_la_commune": "REEZ FOSSE MARTIN", "libell_d_acheminement": "REEZ FOSSE MARTIN", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60527"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f09c12d5bf855499a58a67e2c18ea47b17022539", "fields": {"nom_de_la_commune": "REMECOURT", "libell_d_acheminement": "REMECOURT", "code_postal": "60600", "coordonnees_gps": [49.4052306567, 2.4291636513], "code_commune_insee": "60529"}, "geometry": {"type": "Point", "coordinates": [2.4291636513, 49.4052306567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0e5ad6a2957bc5216ef904a0ae372933cb2552", "fields": {"nom_de_la_commune": "RIBECOURT DRESLINCOURT", "libell_d_acheminement": "RIBECOURT DRESLINCOURT", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60537"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ffca424758db5538e74aae663791fc69660765b", "fields": {"nom_de_la_commune": "RIEUX", "libell_d_acheminement": "RIEUX", "code_postal": "60870", "coordonnees_gps": [49.2979695646, 2.51851013647], "code_commune_insee": "60539"}, "geometry": {"type": "Point", "coordinates": [2.51851013647, 49.2979695646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb7283f7925a90a39b1c8faf1da788795c5babd", "fields": {"nom_de_la_commune": "ROBERVAL", "libell_d_acheminement": "ROBERVAL", "code_postal": "60410", "coordonnees_gps": [49.2959209598, 2.7176751302], "code_commune_insee": "60541"}, "geometry": {"type": "Point", "coordinates": [2.7176751302, 49.2959209598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900d7c010d0da19a4fe69d089ccd1b8a5a74861e", "fields": {"nom_de_la_commune": "ROMESCAMPS", "libell_d_acheminement": "ROMESCAMPS", "code_postal": "60220", "coordonnees_gps": [49.6701380861, 1.7732703631], "code_commune_insee": "60545"}, "geometry": {"type": "Point", "coordinates": [1.7732703631, 49.6701380861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3ed199ee513bfd4cd7572967ecd34628d26beb", "fields": {"nom_de_la_commune": "ROSOY", "libell_d_acheminement": "ROSOY", "code_postal": "60140", "coordonnees_gps": [49.3368593358, 2.481661192], "code_commune_insee": "60547"}, "geometry": {"type": "Point", "coordinates": [2.481661192, 49.3368593358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be3431ad56261108a25cc16c892284133449ee3", "fields": {"nom_de_la_commune": "ROUVILLE", "libell_d_acheminement": "ROUVILLE", "code_postal": "60800", "coordonnees_gps": [49.2264878438, 2.85069781136], "code_commune_insee": "60552"}, "geometry": {"type": "Point", "coordinates": [2.85069781136, 49.2264878438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59e3ecf445d2fc580e4163753757af6349b1f7ee", "fields": {"nom_de_la_commune": "ROUVROY LES MERLES", "libell_d_acheminement": "ROUVROY LES MERLES", "code_postal": "60120", "coordonnees_gps": [49.635051878, 2.30289549748], "code_commune_insee": "60555"}, "geometry": {"type": "Point", "coordinates": [2.30289549748, 49.635051878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7074dc44516163c2b6450e5c02727b18bb7501c", "fields": {"nom_de_la_commune": "LA RUE ST PIERRE", "libell_d_acheminement": "LA RUE ST PIERRE", "code_postal": "60510", "coordonnees_gps": [49.4379741166, 2.24664384318], "code_commune_insee": "60559"}, "geometry": {"type": "Point", "coordinates": [2.24664384318, 49.4379741166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d4720adc3e91804d54a8d5b2d9e6a3675523592", "fields": {"nom_de_la_commune": "SAINS MORAINVILLERS", "libell_d_acheminement": "SAINS MORAINVILLERS", "code_postal": "60420", "coordonnees_gps": [49.5636453234, 2.55051414767], "code_commune_insee": "60564"}, "geometry": {"type": "Point", "coordinates": [2.55051414767, 49.5636453234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c22a86002d2ad50750a87369653e5c7fb1139874", "fields": {"code_postal": "60650", "code_commune_insee": "60567", "libell_d_acheminement": "ST AUBIN EN BRAY", "ligne_5": "LES FONTAINETTES", "nom_de_la_commune": "ST AUBIN EN BRAY", "coordonnees_gps": [49.4573599665, 1.89834324471]}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4574f0e9ce7a22cd0c956471839a1ee6f4930d59", "fields": {"nom_de_la_commune": "STE GENEVIEVE", "libell_d_acheminement": "STE GENEVIEVE", "code_postal": "60730", "coordonnees_gps": [49.2849598013, 2.24410446166], "code_commune_insee": "60575"}, "geometry": {"type": "Point", "coordinates": [2.24410446166, 49.2849598013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c451f8cae41bf69aae91fc99de90755fd6a3fb8", "fields": {"nom_de_la_commune": "ST JUST EN CHAUSSEE", "libell_d_acheminement": "ST JUST EN CHAUSSEE", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60581"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f73bce4f0277e23651bd3dd1e5cca8969e56c6", "fields": {"nom_de_la_commune": "SENANTES", "libell_d_acheminement": "SENANTES", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60611"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82c8ff110618d582431b81c7672c449506a64e1e", "fields": {"nom_de_la_commune": "SERIFONTAINE", "libell_d_acheminement": "SERIFONTAINE", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60616"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac64b5944569ff77991b2d18d1271ef18edc08f7", "fields": {"nom_de_la_commune": "SERMAIZE", "libell_d_acheminement": "SERMAIZE", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60617"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "993bea592b60493c4c895d358ba7c03e8e61c68a", "fields": {"nom_de_la_commune": "SUZOY", "libell_d_acheminement": "SUZOY", "code_postal": "60400", "coordonnees_gps": [49.570596222, 3.03778174468], "code_commune_insee": "60625"}, "geometry": {"type": "Point", "coordinates": [3.03778174468, 49.570596222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f68055bfa3080689a51f2d9ca715cf93ba6cd91", "fields": {"nom_de_la_commune": "THIVERNY", "libell_d_acheminement": "THIVERNY", "code_postal": "60160", "coordonnees_gps": [49.2602503231, 2.43049140584], "code_commune_insee": "60635"}, "geometry": {"type": "Point", "coordinates": [2.43049140584, 49.2602503231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec337319b16fbce206d30126ca4d81bf26530a71", "fields": {"nom_de_la_commune": "TRACY LE VAL", "libell_d_acheminement": "TRACY LE VAL", "code_postal": "60170", "coordonnees_gps": [49.4914347292, 2.97702281469], "code_commune_insee": "60642"}, "geometry": {"type": "Point", "coordinates": [2.97702281469, 49.4914347292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b93dfc1b476e7d0ab2354cf14a607fceb200b777", "fields": {"nom_de_la_commune": "TROUSSURES", "libell_d_acheminement": "TROUSSURES", "code_postal": "60390", "coordonnees_gps": [49.3553181632, 2.00571499045], "code_commune_insee": "60649"}, "geometry": {"type": "Point", "coordinates": [2.00571499045, 49.3553181632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8203a5d730cdc9a6f7829e64be4869bf468af49e", "fields": {"nom_de_la_commune": "VAUCIENNES", "libell_d_acheminement": "VAUCIENNES", "code_postal": "60117", "coordonnees_gps": [49.2419560642, 2.9827380143], "code_commune_insee": "60658"}, "geometry": {"type": "Point", "coordinates": [2.9827380143, 49.2419560642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e73e714e47aa74a8630473a82e1b0cca31bcd80", "fields": {"nom_de_la_commune": "VERDERONNE", "libell_d_acheminement": "VERDERONNE", "code_postal": "60140", "coordonnees_gps": [49.3368593358, 2.481661192], "code_commune_insee": "60669"}, "geometry": {"type": "Point", "coordinates": [2.481661192, 49.3368593358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc51863e95e76d5cfee9ff42e94dd392659ec0f", "fields": {"nom_de_la_commune": "VILLERS ST BARTHELEMY", "libell_d_acheminement": "VILLERS ST BARTHELEMY", "code_postal": "60650", "coordonnees_gps": [49.4573599665, 1.89834324471], "code_commune_insee": "60681"}, "geometry": {"type": "Point", "coordinates": [1.89834324471, 49.4573599665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33bab8044d5a59cb5f0cff05930c4f07269f173d", "fields": {"nom_de_la_commune": "VILLERS ST GENEST", "libell_d_acheminement": "VILLERS ST GENEST", "code_postal": "60620", "coordonnees_gps": [49.1331052887, 2.95794757109], "code_commune_insee": "60683"}, "geometry": {"type": "Point", "coordinates": [2.95794757109, 49.1331052887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d64ae61dd311e90c720389c0bb63cc1cf9a787", "fields": {"nom_de_la_commune": "VILLERS SUR TRIE", "libell_d_acheminement": "VILLERS SUR TRIE", "code_postal": "60590", "coordonnees_gps": [49.3415342068, 1.82400755251], "code_commune_insee": "60690"}, "geometry": {"type": "Point", "coordinates": [1.82400755251, 49.3415342068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49231d978be7584d9552eb0f920f4f78b0a9037c", "fields": {"nom_de_la_commune": "VILLERS VERMONT", "libell_d_acheminement": "VILLERS VERMONT", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60691"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6668925fd5ca6ed71a4637412323e1149ddfa1d", "fields": {"nom_de_la_commune": "WAMBEZ", "libell_d_acheminement": "WAMBEZ", "code_postal": "60380", "coordonnees_gps": [49.5631280585, 1.8175486529], "code_commune_insee": "60699"}, "geometry": {"type": "Point", "coordinates": [1.8175486529, 49.5631280585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d887ed82ec19d738873d73d2e96cec6918e3a75", "fields": {"nom_de_la_commune": "WARLUIS", "libell_d_acheminement": "WARLUIS", "code_postal": "60430", "coordonnees_gps": [49.3440863782, 2.15878982649], "code_commune_insee": "60700"}, "geometry": {"type": "Point", "coordinates": [2.15878982649, 49.3440863782]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e96378a181d6f683af5d0d4f3d08d4ed06fbe41", "fields": {"nom_de_la_commune": "WAVIGNIES", "libell_d_acheminement": "WAVIGNIES", "code_postal": "60130", "coordonnees_gps": [49.4932409346, 2.41854119778], "code_commune_insee": "60701"}, "geometry": {"type": "Point", "coordinates": [2.41854119778, 49.4932409346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f04677291e87850e9d7fddb73762eaac26ba8a42", "fields": {"code_postal": "61100", "code_commune_insee": "61007", "libell_d_acheminement": "ATHIS VAL DE ROUVRE", "ligne_5": "BREEL", "nom_de_la_commune": "ATHIS VAL DE ROUVRE", "coordonnees_gps": [48.7672025982, -0.554045579271]}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd11ebfc51f91b9f9c06df6d1b09a5f568cdcfcf", "fields": {"nom_de_la_commune": "AUBRY LE PANTHOU", "libell_d_acheminement": "AUBRY LE PANTHOU", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61010"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adcfa442f8cd960422a655b3e0d112b808806456", "fields": {"nom_de_la_commune": "AVERNES ST GOURGON", "libell_d_acheminement": "AVERNES ST GOURGON", "code_postal": "61470", "coordonnees_gps": [48.9094876471, 0.356722862934], "code_commune_insee": "61018"}, "geometry": {"type": "Point", "coordinates": [0.356722862934, 48.9094876471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1742a68394a1a8be6202bbc5e84be7d503a06cab", "fields": {"nom_de_la_commune": "BAZOCHES AU HOULME", "libell_d_acheminement": "BAZOCHES AU HOULME", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61028"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eb4fd622e36d72e5043943d087748661ad95db2", "fields": {"nom_de_la_commune": "LA BAZOQUE", "libell_d_acheminement": "LA BAZOQUE", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61030"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "785916d769d1bfc70d410607d8741f185090f7ea", "fields": {"code_postal": "61110", "code_commune_insee": "61050", "libell_d_acheminement": "COUR MAUGIS SUR HUISNE", "ligne_5": "ST MAURICE SUR HUISNE", "nom_de_la_commune": "COUR MAUGIS SUR HUISNE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f842a9183f983fcda0cae137b26c14d6cba56a2b", "fields": {"nom_de_la_commune": "BRIOUZE", "libell_d_acheminement": "BRIOUZE", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61063"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8400dd47057662b6eb95f8e6f1fe12b3ec7320c", "fields": {"code_postal": "61240", "code_commune_insee": "61081", "libell_d_acheminement": "CHAILLOUE", "ligne_5": "MARMOUILLE", "nom_de_la_commune": "CHAILLOUE", "coordonnees_gps": [48.7021245415, 0.261946034098]}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7465bd436266c2bc138d7abc077036587d7442e", "fields": {"code_postal": "61500", "code_commune_insee": "61081", "libell_d_acheminement": "CHAILLOUE", "ligne_5": "NEUVILLE PRES SEES", "nom_de_la_commune": "CHAILLOUE", "coordonnees_gps": [48.5847584341, 0.153667553772]}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8002a45ee0c3803274f19b43fcbc0061183913c0", "fields": {"nom_de_la_commune": "CHAMPCERIE", "libell_d_acheminement": "CHAMPCERIE", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61084"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e54e46fe391f1f8c71b374cbf8081dfa01dcd3", "fields": {"nom_de_la_commune": "LE CHAMP DE LA PIERRE", "libell_d_acheminement": "LE CHAMP DE LA PIERRE", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61085"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bdadf2f29c8a7fb8ee8b3f22d80815b15870871", "fields": {"code_postal": "61140", "code_commune_insee": "61096", "libell_d_acheminement": "RIVES D ANDAINE", "ligne_5": "LA CHAPELLE D ANDAINE", "nom_de_la_commune": "RIVES D ANDAINE", "coordonnees_gps": [48.5525924741, -0.471509032545]}, "geometry": {"type": "Point", "coordinates": [-0.471509032545, 48.5525924741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47c5ec09a53242f6464e2a74767a18e4d5cc72aa", "fields": {"nom_de_la_commune": "LE CHATEAU D ALMENECHES", "libell_d_acheminement": "LE CHATEAU D ALMENECHES", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61101"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e8ba4d7dd6f4cee20f0dd7248d844326d2fae2d", "fields": {"nom_de_la_commune": "CHAUMONT", "libell_d_acheminement": "CHAUMONT", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61103"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f380fed9a6ede0d7b6e3dcd8deda1f29ed15fd", "fields": {"code_postal": "61110", "code_commune_insee": "61116", "libell_d_acheminement": "SABLONS SUR HUISNE", "ligne_5": "CONDEAU", "nom_de_la_commune": "SABLONS SUR HUISNE", "coordonnees_gps": [48.440685995, 0.83185325454]}, "geometry": {"type": "Point", "coordinates": [0.83185325454, 48.440685995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492f8a52cb64df266b6b9f1c6afece8539672c6e", "fields": {"nom_de_la_commune": "CORBON", "libell_d_acheminement": "CORBON", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61118"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "508b998632305a485b0e6a13d8b640d1abf50a6c", "fields": {"nom_de_la_commune": "COULONCES", "libell_d_acheminement": "COULONCES", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61123"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3150d4391dbafe30fe77ad3a20012b3142776247", "fields": {"nom_de_la_commune": "COURGEOUT", "libell_d_acheminement": "COURGEOUT", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61130"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9af5fa211fd76ee7426f6e63fe93f5111f3dba", "fields": {"nom_de_la_commune": "CRAMENIL", "libell_d_acheminement": "CRAMENIL", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61137"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a437dec292cf1d97d8d46d4f85322e69c3facfd0", "fields": {"nom_de_la_commune": "DOMFRONT EN POIRAIE", "libell_d_acheminement": "DOMFRONT EN POIRAIE", "code_postal": "61700", "coordonnees_gps": [48.6167127072, -0.618978701151], "code_commune_insee": "61145"}, "geometry": {"type": "Point", "coordinates": [-0.618978701151, 48.6167127072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e14df6ee808d7f730d41286c6b3a52c7304caed4", "fields": {"code_postal": "61150", "code_commune_insee": "61153", "libell_d_acheminement": "ECOUCHE LES VALLEES", "ligne_5": "LOUCE", "nom_de_la_commune": "ECOUCHE LES VALLEES", "coordonnees_gps": [48.689271735, -0.160878678155]}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4add890975ec4d0d4fbdbfbe922582c86703bc6f", "fields": {"code_postal": "61150", "code_commune_insee": "61153", "libell_d_acheminement": "ECOUCHE LES VALLEES", "ligne_5": "SERANS", "nom_de_la_commune": "ECOUCHE LES VALLEES", "coordonnees_gps": [48.689271735, -0.160878678155]}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d89d5428645aa5395fb2432a63f337e6adee4117", "fields": {"nom_de_la_commune": "EPERRAIS", "libell_d_acheminement": "EPERRAIS", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61154"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb14be7cb4b7ac8a07d76aba7490d92fcb5a703a", "fields": {"nom_de_la_commune": "FEINGS", "libell_d_acheminement": "FEINGS", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61160"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbc4815e27800f7f040e74e04348f90f12ab5659", "fields": {"code_postal": "61550", "code_commune_insee": "61167", "libell_d_acheminement": "LA FERTE EN OUCHE", "ligne_5": "COUVAINS", "nom_de_la_commune": "LA FERTE EN OUCHE", "coordonnees_gps": [48.7987924766, 0.488599977728]}, "geometry": {"type": "Point", "coordinates": [0.488599977728, 48.7987924766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c08e357ccbaba946b901d400288872f97b2fafb7", "fields": {"code_postal": "61410", "code_commune_insee": "61168", "libell_d_acheminement": "LA FERTE MACE", "ligne_5": "ANTOIGNY", "nom_de_la_commune": "LA FERTE MACE", "coordonnees_gps": [48.5523953273, -0.396121387013]}, "geometry": {"type": "Point", "coordinates": [-0.396121387013, 48.5523953273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b6adf6fa2147ca9dda4a7abc6ef392d5776938", "fields": {"nom_de_la_commune": "LA GENEVRAIE", "libell_d_acheminement": "LA GENEVRAIE", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61188"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2828b022ce60423563817b1c3a951b9a563168d0", "fields": {"nom_de_la_commune": "GIEL COURTEILLES", "libell_d_acheminement": "GIEL COURTEILLES", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61189"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0639dc301b40173894072b322b09e67e663cf21", "fields": {"nom_de_la_commune": "JOUE DU PLAIN", "libell_d_acheminement": "JOUE DU PLAIN", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61210"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3f411745da9dbc8017dba91b5994a86db0b60a", "fields": {"nom_de_la_commune": "JUVIGNY VAL D ANDAINE", "libell_d_acheminement": "JUVIGNY VAL D ANDAINE", "code_postal": "61140", "coordonnees_gps": [48.5525924741, -0.471509032545], "code_commune_insee": "61211"}, "geometry": {"type": "Point", "coordinates": [-0.471509032545, 48.5525924741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbe71d0761e82aee6de789cdfbff7c66e8aeed3d", "fields": {"nom_de_la_commune": "L AIGLE", "libell_d_acheminement": "L AIGLE", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61214"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55e291333d3f3f793d21f6a5b990823d5992fecd", "fields": {"nom_de_la_commune": "LA LANDE DE LOUGE", "libell_d_acheminement": "LA LANDE DE LOUGE", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61217"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0ae5e16b8a7900c4a0d9e74624dbb20084ef49f", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "MONCEAUX AU PERCHE", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "135f5cf60a636b00768f851f7a3d1f63b29dc712", "fields": {"code_postal": "61290", "code_commune_insee": "61230", "libell_d_acheminement": "LONGNY LES VILLAGES", "ligne_5": "MOULICENT", "nom_de_la_commune": "LONGNY LES VILLAGES", "coordonnees_gps": [48.5268185363, 0.799843312026]}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13337fa3d3b726dd4e8d22f266e865029e95e6a9", "fields": {"nom_de_la_commune": "LE MAGE", "libell_d_acheminement": "LE MAGE", "code_postal": "61290", "coordonnees_gps": [48.5268185363, 0.799843312026], "code_commune_insee": "61242"}, "geometry": {"type": "Point", "coordinates": [0.799843312026, 48.5268185363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbf1a989fdb5233d60acb101d90d816c1b6e236e", "fields": {"nom_de_la_commune": "MENIL FROGER", "libell_d_acheminement": "MENIL FROGER", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61264"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb3a7c4bd2dc6110740b53ec162c17ded9cf0b7", "fields": {"nom_de_la_commune": "LE MENIL GUYON", "libell_d_acheminement": "LE MENIL GUYON", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61266"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "326c30cc2e0712061fb7d20b94ec86e94779b0eb", "fields": {"nom_de_la_commune": "MENIL HUBERT EN EXMES", "libell_d_acheminement": "MENIL HUBERT EN EXMES", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61268"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "445e4bf05c1d7223fb5e5c3893446a11a1fe071f", "fields": {"nom_de_la_commune": "LE MENIL VICOMTE", "libell_d_acheminement": "LE MENIL VICOMTE", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61272"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d6239ee7ecc214355fda42b2bc527c18628b8e", "fields": {"nom_de_la_commune": "LE MERLERAULT", "libell_d_acheminement": "LE MERLERAULT", "code_postal": "61240", "coordonnees_gps": [48.7021245415, 0.261946034098], "code_commune_insee": "61275"}, "geometry": {"type": "Point", "coordinates": [0.261946034098, 48.7021245415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5fd408f7adc273ecc2a71444ba0b59dfa98d957", "fields": {"nom_de_la_commune": "MONTMERREI", "libell_d_acheminement": "MONTMERREI", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61288"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c81fd46626e0683e89136c8abe65c69c815321a", "fields": {"nom_de_la_commune": "MONTSECRET CLAIREFOUGERE", "libell_d_acheminement": "MONTSECRET CLAIREFOUGERE", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61292"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "079224de0395e0f6c67d77e5a55cf22253e93682", "fields": {"nom_de_la_commune": "MORTREE", "libell_d_acheminement": "MORTREE", "code_postal": "61570", "coordonnees_gps": [48.6574688891, 0.0273677647898], "code_commune_insee": "61294"}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25eb0da189f4ce89277a27d267dd7d3618b27aa", "fields": {"nom_de_la_commune": "MOULINS LA MARCHE", "libell_d_acheminement": "MOULINS LA MARCHE", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61297"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11f864265f911354e9782da270137c7c352e19ca", "fields": {"nom_de_la_commune": "MOULINS SUR ORNE", "libell_d_acheminement": "MOULINS SUR ORNE", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61298"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d6e570e34b0f8a4f2fba1f9e95d6d39b611c4bd", "fields": {"nom_de_la_commune": "MOUSSONVILLIERS", "libell_d_acheminement": "MOUSSONVILLIERS", "code_postal": "61190", "coordonnees_gps": [48.6388542331, 0.724411642307], "code_commune_insee": "61299"}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c430c02948b13b9589dc860161aee11a7b005e1", "fields": {"nom_de_la_commune": "OMMEEL", "libell_d_acheminement": "OMMEEL", "code_postal": "61160", "coordonnees_gps": [48.8349522654, 0.0329751548696], "code_commune_insee": "61315"}, "geometry": {"type": "Point", "coordinates": [0.0329751548696, 48.8349522654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4750ceaff3a907e3c8ff6a877f48b104e0e2d2f", "fields": {"nom_de_la_commune": "LA PERRIERE", "libell_d_acheminement": "LA PERRIERE", "code_postal": "61360", "coordonnees_gps": [48.4241783634, 0.439705052972], "code_commune_insee": "61325"}, "geometry": {"type": "Point", "coordinates": [0.439705052972, 48.4241783634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7046f5a46cadd79c94eae1a7570460a1f03fd352", "fields": {"nom_de_la_commune": "LE PIN LA GARENNE", "libell_d_acheminement": "LE PIN LA GARENNE", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61329"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4953912f9f9b93cb755948b45f3af349fffc24d", "fields": {"nom_de_la_commune": "POINTEL", "libell_d_acheminement": "POINTEL", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61332"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "792996e0b1b8be65e57cf84c9e4e9be6bfa763b1", "fields": {"nom_de_la_commune": "PONTCHARDON", "libell_d_acheminement": "PONTCHARDON", "code_postal": "61120", "coordonnees_gps": [48.8979629292, 0.218290083963], "code_commune_insee": "61333"}, "geometry": {"type": "Point", "coordinates": [0.218290083963, 48.8979629292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e9ecd6a2d81cf5cada913ff55b1a315706cce3", "fields": {"nom_de_la_commune": "POUVRAI", "libell_d_acheminement": "POUVRAI", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61336"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a5a0bbabcdb5a4bf300443c0fcb92279dcc47e", "fields": {"code_postal": "61210", "code_commune_insee": "61339", "libell_d_acheminement": "PUTANGES LE LAC", "ligne_5": "CHENEDOUIT", "nom_de_la_commune": "PUTANGES LE LAC", "coordonnees_gps": [48.7855684657, -0.252751523402]}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7b1f4674ca170d521c379f572ba60aa12734094", "fields": {"nom_de_la_commune": "RAI", "libell_d_acheminement": "RAI", "code_postal": "61270", "coordonnees_gps": [48.7128046725, 0.565898485852], "code_commune_insee": "61342"}, "geometry": {"type": "Point", "coordinates": [0.565898485852, 48.7128046725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8adc6af1f200abf9f1921d92ea7f928429ace2c3", "fields": {"nom_de_la_commune": "RESENLIEU", "libell_d_acheminement": "RESENLIEU", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61347"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4ac78bb591aa481d1b1c2ecfdc39da2cf7927be", "fields": {"nom_de_la_commune": "ROUPERROUX", "libell_d_acheminement": "ROUPERROUX", "code_postal": "61320", "coordonnees_gps": [48.5604345646, -0.127275298699], "code_commune_insee": "61357"}, "geometry": {"type": "Point", "coordinates": [-0.127275298699, 48.5604345646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb330b13f4c79b5f9ef1b2026032cba7faa7eac", "fields": {"nom_de_la_commune": "SAI", "libell_d_acheminement": "SAI", "code_postal": "61200", "coordonnees_gps": [48.7402057264, -0.0318411062573], "code_commune_insee": "61358"}, "geometry": {"type": "Point", "coordinates": [-0.0318411062573, 48.7402057264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9f8958e6bf3e990d558c81adf22fe4aca79c2d8", "fields": {"nom_de_la_commune": "ST ANDRE DE BRIOUZE", "libell_d_acheminement": "ST ANDRE DE BRIOUZE", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61361"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d43a32a61c16277146accc1eddceebbf9f880ff6", "fields": {"nom_de_la_commune": "ST AQUILIN DE CORBION", "libell_d_acheminement": "ST AQUILIN DE CORBION", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61363"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de3a6bd3bfe5a1004f12cc9f9955fcb87567857b", "fields": {"nom_de_la_commune": "ST AUBIN EN CHAROLLAIS", "libell_d_acheminement": "ST AUBIN EN CHAROLLAIS", "code_postal": "71430", "coordonnees_gps": [46.5278181999, 4.19290320019], "code_commune_insee": "71388"}, "geometry": {"type": "Point", "coordinates": [4.19290320019, 46.5278181999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a5a4232a42a6d7c58279a79791bd05f7c347554", "fields": {"nom_de_la_commune": "ST BERAIN SUR DHEUNE", "libell_d_acheminement": "ST BERAIN SUR DHEUNE", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71391"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56814bdd2c1e155180e315d54113dc72e25bd01c", "fields": {"nom_de_la_commune": "ST BOIL", "libell_d_acheminement": "ST BOIL", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71392"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28941257e7f0de0a0db1542ec74fc9d0ae925fab", "fields": {"nom_de_la_commune": "ST BONNET DE JOUX", "libell_d_acheminement": "ST BONNET DE JOUX", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71394"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11ac9542c00446c2cf49a5864619394c7b9db771", "fields": {"nom_de_la_commune": "ST EMILAND", "libell_d_acheminement": "ST EMILAND", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71409"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a190c52590fec4cbc6cfea59573b5dd4e2030bf3", "fields": {"nom_de_la_commune": "STE FOY", "libell_d_acheminement": "STE FOY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71415"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbf35202d74d0808ac1b5c00d9faebf4d9f18c31", "fields": {"nom_de_la_commune": "ST GENGOUX DE SCISSE", "libell_d_acheminement": "ST GENGOUX DE SCISSE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71416"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25129120c697e066c6e4efd986d6c1a2627a224c", "fields": {"nom_de_la_commune": "ST GERMAIN DU PLAIN", "libell_d_acheminement": "ST GERMAIN DU PLAIN", "code_postal": "71370", "coordonnees_gps": [46.7126638071, 5.00193850124], "code_commune_insee": "71420"}, "geometry": {"type": "Point", "coordinates": [5.00193850124, 46.7126638071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66066481ade571e3b61967e1671bbdb33eeea867", "fields": {"nom_de_la_commune": "ST GILLES", "libell_d_acheminement": "ST GILLES", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71425"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41766480a738b51a82d4d8e2d00a045c542635fa", "fields": {"nom_de_la_commune": "STE HELENE", "libell_d_acheminement": "STE HELENE", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71426"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90cd44081c18f051f0c7ce833c546881183861ce", "fields": {"nom_de_la_commune": "ST IGNY DE ROCHE", "libell_d_acheminement": "ST IGNY DE ROCHE", "code_postal": "71170", "coordonnees_gps": [46.2126023592, 4.32086009768], "code_commune_insee": "71428"}, "geometry": {"type": "Point", "coordinates": [4.32086009768, 46.2126023592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4966d760f8999094979c9facbf05d19a8a33072c", "fields": {"nom_de_la_commune": "ST JEAN DE TREZY", "libell_d_acheminement": "ST JEAN DE TREZY", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71431"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89c5848cd5878b16aa221f0d4e17aad39e66e7d2", "fields": {"nom_de_la_commune": "ST JULIEN SUR DHEUNE", "libell_d_acheminement": "ST JULIEN SUR DHEUNE", "code_postal": "71210", "coordonnees_gps": [46.7455963584, 4.48062710036], "code_commune_insee": "71435"}, "geometry": {"type": "Point", "coordinates": [4.48062710036, 46.7455963584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e9991ec668ddd5cac4ccc5741a19c5c4b9cec43", "fields": {"nom_de_la_commune": "ST LEGER LES PARAY", "libell_d_acheminement": "ST LEGER LES PARAY", "code_postal": "71600", "coordonnees_gps": [46.4281559429, 4.10161949628], "code_commune_insee": "71439"}, "geometry": {"type": "Point", "coordinates": [4.10161949628, 46.4281559429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57206e4d2a69bf8fa15c7bead2f1faa6e7d85a46", "fields": {"nom_de_la_commune": "ST LEGER SOUS LA BUSSIERE", "libell_d_acheminement": "ST LEGER SOUS LA BUSSIERE", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71441"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93d79f5b2839b3537fe1eb73744afea3367c2e09", "fields": {"nom_de_la_commune": "MAZIERES EN GATINE", "libell_d_acheminement": "MAZIERES EN GATINE", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79172"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2594f78b95dbc5e401c6d13e13f96fc91f2aaf50", "fields": {"nom_de_la_commune": "MESSE", "libell_d_acheminement": "MESSE", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79177"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63c7b2411f8b40d048f1600945bb1a6d43bb8f8", "fields": {"nom_de_la_commune": "MONTRAVERS", "libell_d_acheminement": "MONTRAVERS", "code_postal": "79140", "coordonnees_gps": [46.8536328396, -0.662287760231], "code_commune_insee": "79183"}, "geometry": {"type": "Point", "coordinates": [-0.662287760231, 46.8536328396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e153fdc6c00b79218a0b87a31c3e719df3708f0", "fields": {"nom_de_la_commune": "OIRON", "libell_d_acheminement": "OIRON", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79196"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8492981d09cec45f184c830e1a73c5912d3a81d", "fields": {"nom_de_la_commune": "PRAHECQ", "libell_d_acheminement": "PRAHECQ", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79216"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3186ffdad70bcbe9bee41624987d3b1857672dc5", "fields": {"nom_de_la_commune": "PRAILLES", "libell_d_acheminement": "PRAILLES", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79217"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a6d88c0528ddd4e36cfe35abbe61f2edc14c66", "fields": {"nom_de_la_commune": "PRESSIGNY", "libell_d_acheminement": "PRESSIGNY", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79218"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8d5adc3568ef1ee0795e4595d24976ceaf78fd0", "fields": {"nom_de_la_commune": "LE RETAIL", "libell_d_acheminement": "LE RETAIL", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79226"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f8b5c01e66833dfe18490270de54f9516fcb9c", "fields": {"nom_de_la_commune": "ST AMAND SUR SEVRE", "libell_d_acheminement": "ST AMAND SUR SEVRE", "code_postal": "79700", "coordonnees_gps": [46.9364849279, -0.753058283039], "code_commune_insee": "79235"}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b149962f36219073373e754585bd9beab006f176", "fields": {"nom_de_la_commune": "ST CHRISTOPHE SUR ROC", "libell_d_acheminement": "ST CHRISTOPHE SUR ROC", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79241"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17866ad3a911b6bec316c42494b68db1883e2615", "fields": {"nom_de_la_commune": "ST HILAIRE LA PALUD", "libell_d_acheminement": "ST HILAIRE LA PALUD", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79257"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9302eee6ac532f4db8c7aa31ad761679703c42d0", "fields": {"nom_de_la_commune": "ST LIN", "libell_d_acheminement": "ST LIN", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79267"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a8d6cc3196138b7e66bebe465aec8fb59d648f6", "fields": {"nom_de_la_commune": "STE NEOMAYE", "libell_d_acheminement": "STE NEOMAYE", "code_postal": "79260", "coordonnees_gps": [46.3656690304, -0.291882204635], "code_commune_insee": "79283"}, "geometry": {"type": "Point", "coordinates": [-0.291882204635, 46.3656690304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c54fffd263b90ced8f874815a77f9403ef8148d", "fields": {"nom_de_la_commune": "ST POMPAIN", "libell_d_acheminement": "ST POMPAIN", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79290"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bac7612b726dfd44d47e248d06b4e2094531eb5b", "fields": {"nom_de_la_commune": "ST ROMANS LES MELLE", "libell_d_acheminement": "ST ROMANS LES MELLE", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79295"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7124b37ade24f4ed518ee899bf7dc027e35e7928", "fields": {"nom_de_la_commune": "THORIGNE", "libell_d_acheminement": "THORIGNE", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79327"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a27c84828502810ec4da2d5dc4c40ad08d26ca", "fields": {"nom_de_la_commune": "VALLANS", "libell_d_acheminement": "VALLANS", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79335"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c09e743a8d66b1cfd8045915a05d3d0de568915", "fields": {"nom_de_la_commune": "LE VERT", "libell_d_acheminement": "LE VERT", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79346"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a0761f9a63abedca7289335b9e9f7bb19f2047d", "fields": {"nom_de_la_commune": "VIENNAY", "libell_d_acheminement": "VIENNAY", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79347"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b0bf6da6ec34985b379dad64e80758c7b1bc9b1", "fields": {"nom_de_la_commune": "VOUILLE", "libell_d_acheminement": "VOUILLE", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79355"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b342ad5bcc3eb2cf55754887779daec173eaf70", "fields": {"code_postal": "80270", "code_commune_insee": "80013", "libell_d_acheminement": "AIRAINES", "ligne_5": "DREUIL HAMEL", "nom_de_la_commune": "AIRAINES", "coordonnees_gps": [49.948357214, 1.92858154161]}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b382f1851d6028c382a96a06f2d835832542329", "fields": {"nom_de_la_commune": "AIZECOURT LE BAS", "libell_d_acheminement": "AIZECOURT LE BAS", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80014"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6914b54811ac1cd7d5c9e8168beba3de7c00b53f", "fields": {"nom_de_la_commune": "ANDECHY", "libell_d_acheminement": "ANDECHY", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80023"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67a85e07f80c67cb5afe24c07f3164a76615f0f", "fields": {"nom_de_la_commune": "ARREST", "libell_d_acheminement": "ARREST", "code_postal": "80820", "coordonnees_gps": [50.1288563572, 1.61878440078], "code_commune_insee": "80029"}, "geometry": {"type": "Point", "coordinates": [1.61878440078, 50.1288563572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c5be0556f2396581267d8fdfdfc9526c04055a", "fields": {"nom_de_la_commune": "ASSAINVILLERS", "libell_d_acheminement": "ASSAINVILLERS", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80032"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e45fda9cbd7ef5f7fb9311589fc2d805a5da59", "fields": {"nom_de_la_commune": "AUCHONVILLERS", "libell_d_acheminement": "AUCHONVILLERS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80038"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6229f8b61c2e563afbc91c483fb9afd4ba76756f", "fields": {"nom_de_la_commune": "AUMATRE", "libell_d_acheminement": "AUMATRE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80040"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370d9cbeec32a63ac8391fec26e707028ea7e428", "fields": {"nom_de_la_commune": "AUMONT", "libell_d_acheminement": "AUMONT", "code_postal": "80640", "coordonnees_gps": [49.8459420737, 1.9103382201], "code_commune_insee": "80041"}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65229228d1ab52da320a4f35efa6ede9b0f39b8b", "fields": {"nom_de_la_commune": "AUTHIEULE", "libell_d_acheminement": "AUTHIEULE", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80044"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de747d98dec97d774f8ec6839140d7a14d8f259", "fields": {"nom_de_la_commune": "AVELUY", "libell_d_acheminement": "AVELUY", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80047"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa4aeabc7ff4cda2a0ce237d7d7a76d1ba112f2", "fields": {"nom_de_la_commune": "BAIZIEUX", "libell_d_acheminement": "BAIZIEUX", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80052"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "972e935d8c3801dfb4205c3845f96b47fe2cc944", "fields": {"nom_de_la_commune": "BARLY", "libell_d_acheminement": "BARLY", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80055"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4a8ae76b6420aa1e488e5e0b55aaf4807e62086", "fields": {"nom_de_la_commune": "BEAUCAMPS LE JEUNE", "libell_d_acheminement": "BEAUCAMPS LE JEUNE", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80061"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70f5c42193a80b681caa5c03690b5922fcf18ebf", "fields": {"nom_de_la_commune": "BEAUCAMPS LE VIEUX", "libell_d_acheminement": "BEAUCAMPS LE VIEUX", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80062"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c711f3fdb84eded37b34875d883cfabe37f90ca4", "fields": {"nom_de_la_commune": "BEAUMETZ", "libell_d_acheminement": "BEAUMETZ", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80068"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39cb2b72444342394b49afb8b030d8d34cbce365", "fields": {"nom_de_la_commune": "BEAUMONT HAMEL", "libell_d_acheminement": "BEAUMONT HAMEL", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80069"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f67940bd38908f9ade675cc4f54ba3f5d3d96fc1", "fields": {"nom_de_la_commune": "BEAUQUESNE", "libell_d_acheminement": "BEAUQUESNE", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80070"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84f7b2d093ce2131998f18d82612f76710c89ed1", "fields": {"nom_de_la_commune": "BELLOY EN SANTERRE", "libell_d_acheminement": "BELLOY EN SANTERRE", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80080"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69318a85a94dafed7b73abdd4de23a98aba06d50", "fields": {"nom_de_la_commune": "BERNATRE", "libell_d_acheminement": "BERNATRE", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80085"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e69f465ff4ffde49db9f934f7d5a447f49714550", "fields": {"nom_de_la_commune": "BERNAY EN PONTHIEU", "libell_d_acheminement": "BERNAY EN PONTHIEU", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80087"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de8eff802d3603e4757a286f4df1f836871a8b35", "fields": {"nom_de_la_commune": "BERNEUIL", "libell_d_acheminement": "BERNEUIL", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80089"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caf02a39a7749c372e2ee2de57b80dd908df8711", "fields": {"nom_de_la_commune": "BERTEAUCOURT LES DAMES", "libell_d_acheminement": "BERTEAUCOURT LES DAMES", "code_postal": "80850", "coordonnees_gps": [50.0418153803, 2.15803970037], "code_commune_insee": "80093"}, "geometry": {"type": "Point", "coordinates": [2.15803970037, 50.0418153803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b97a574cbec34a28829479382241ec51ab8d734", "fields": {"nom_de_la_commune": "BIENCOURT", "libell_d_acheminement": "BIENCOURT", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80104"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f41642b8afc063aff99a28bec03acf4b072bf4e7", "fields": {"nom_de_la_commune": "BLANGY SOUS POIX", "libell_d_acheminement": "BLANGY SOUS POIX", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80106"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1908a8cae5916a85a112c14bfb344a07e3033cf6", "fields": {"nom_de_la_commune": "BOSQUEL", "libell_d_acheminement": "LE BOSQUEL", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80114"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f8fa80492ca953425532fa14c333f45442deab", "fields": {"nom_de_la_commune": "BOUCHOIR", "libell_d_acheminement": "BOUCHOIR", "code_postal": "80910", "coordonnees_gps": [49.7367812704, 2.64925549457], "code_commune_insee": "80116"}, "geometry": {"type": "Point", "coordinates": [2.64925549457, 49.7367812704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb04ad02068029370bbfc6f63be38f92b00c9a5", "fields": {"nom_de_la_commune": "BOUILLANCOURT LA BATAILLE", "libell_d_acheminement": "BOUILLANCOURT LA BATAILLE", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80121"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f60f2bcef808402bc329e71d0723acaff298b5f0", "fields": {"nom_de_la_commune": "BOURSEVILLE", "libell_d_acheminement": "BOURSEVILLE", "code_postal": "80130", "coordonnees_gps": [50.0912781795, 1.52364516053], "code_commune_insee": "80124"}, "geometry": {"type": "Point", "coordinates": [1.52364516053, 50.0912781795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f9dba7d9a62ac71ce473efd8392b1083cc38451", "fields": {"nom_de_la_commune": "BOUTTENCOURT", "libell_d_acheminement": "BOUTTENCOURT", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80126"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e08be64157f1b6319f70190331d2b1bea84b2c75", "fields": {"nom_de_la_commune": "BOVELLES", "libell_d_acheminement": "BOVELLES", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80130"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182f8857aa3aa5a33e7e12306a36f26792fcdb61", "fields": {"nom_de_la_commune": "BRACHES", "libell_d_acheminement": "BRACHES", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80132"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d44c80a23e8da05d1dd8f4fd1dc5d7d436a7eae6", "fields": {"nom_de_la_commune": "BRAILLY CORNEHOTTE", "libell_d_acheminement": "BRAILLY CORNEHOTTE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80133"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7efa12737b0feb9d51b7efb70d4f6171d802ba3a", "fields": {"nom_de_la_commune": "BRESLE", "libell_d_acheminement": "BRESLE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80138"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b066561abe6b9a1d1f38ab0ccb9a355197a0bb29", "fields": {"nom_de_la_commune": "BUIGNY LES GAMACHES", "libell_d_acheminement": "BUIGNY LES GAMACHES", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80148"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a6ef12f6a21c1ded8051ff422e52d0e05d6992", "fields": {"nom_de_la_commune": "CHAMPIEN", "libell_d_acheminement": "CHAMPIEN", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80185"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37900da5fe7b0942d7eb83750d9c0b5f68a21f54", "fields": {"nom_de_la_commune": "CHIRMONT", "libell_d_acheminement": "CHIRMONT", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80193"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d978d9df62c342ef16f02739d842e56038cf7467", "fields": {"nom_de_la_commune": "CONTEVILLE", "libell_d_acheminement": "CONTEVILLE", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80208"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "106ecbd016ba3e478f266426c479dad66ea68b30", "fields": {"code_postal": "80160", "code_commune_insee": "80211", "libell_d_acheminement": "CONTY", "ligne_5": "WAILLY", "nom_de_la_commune": "CONTY", "coordonnees_gps": [49.7511512754, 2.16207996445]}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b934aeec63f1016488e543c3af680afb798bd4", "fields": {"nom_de_la_commune": "COULONVILLERS", "libell_d_acheminement": "COULONVILLERS", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80215"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b91885df3b469b7fc0808ea0ee590175f59cfe15", "fields": {"nom_de_la_commune": "COURCELETTE", "libell_d_acheminement": "COURCELETTE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80216"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e058c30481c55a136640901895712eb498f165", "fields": {"nom_de_la_commune": "CREMERY", "libell_d_acheminement": "CREMERY", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80223"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2571cfe2bee2f0a968146d4f92c5c1773b01f57a", "fields": {"nom_de_la_commune": "CROIXRAULT", "libell_d_acheminement": "CROIXRAULT", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80227"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b4e3148e0246e6b2ff1abdcd7f3e04f1c39df4", "fields": {"nom_de_la_commune": "LE CROTOY", "libell_d_acheminement": "LE CROTOY", "code_postal": "80550", "coordonnees_gps": [50.2437299743, 1.62353460676], "code_commune_insee": "80228"}, "geometry": {"type": "Point", "coordinates": [1.62353460676, 50.2437299743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b86024816b0a76a5e8ab06afe1e3fc6b41ba1734", "fields": {"nom_de_la_commune": "CURCHY", "libell_d_acheminement": "CURCHY", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80230"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521d1643392f0230af71fbc76d3f89984df54995", "fields": {"nom_de_la_commune": "DANCOURT POPINCOURT", "libell_d_acheminement": "DANCOURT POPINCOURT", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80233"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c1b8c79a240e8eb17909d2503fea0e465251f1b", "fields": {"nom_de_la_commune": "DOMART SUR LA LUCE", "libell_d_acheminement": "DOMART SUR LA LUCE", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80242"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba523ddea2ae200e16f956b995b611628c8a4d8", "fields": {"nom_de_la_commune": "DOMINOIS", "libell_d_acheminement": "DOMINOIS", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80244"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d160b78527ac248f74b37f0fb0b7f93032c94137", "fields": {"code_postal": "80370", "code_commune_insee": "80245", "libell_d_acheminement": "DOMLEGER LONGVILLERS", "ligne_5": "LONGVILLERS", "nom_de_la_commune": "DOMLEGER LONGVILLERS", "coordonnees_gps": [50.1625147057, 2.13483617177]}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20125bd599209e99b20e1cdede046549d446abf5", "fields": {"nom_de_la_commune": "DOMMARTIN", "libell_d_acheminement": "DOMMARTIN", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80246"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e36a5a94d7de37732b5d568579d7a92ceb79a12", "fields": {"nom_de_la_commune": "DOMPIERRE BECQUINCOURT", "libell_d_acheminement": "DOMPIERRE BECQUINCOURT", "code_postal": "80980", "coordonnees_gps": [49.9103283385, 2.8063979071], "code_commune_insee": "80247"}, "geometry": {"type": "Point", "coordinates": [2.8063979071, 49.9103283385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26652f77c32a03f16f1cddc9eae3ae0e3868d6c7", "fields": {"nom_de_la_commune": "DOMQUEUR", "libell_d_acheminement": "DOMQUEUR", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80249"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f936e22799dc0617b01f0500011a8d7e1670329d", "fields": {"nom_de_la_commune": "DOULLENS", "libell_d_acheminement": "DOULLENS", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80253"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ebee7f114e630c366b1f54b18a24a27cacc8237", "fields": {"nom_de_la_commune": "DURY", "libell_d_acheminement": "DURY", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80261"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "771084ab92758d160d9e1d259e147b75b9c097c1", "fields": {"nom_de_la_commune": "ENNEMAIN", "libell_d_acheminement": "ENNEMAIN", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80267"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f11e8d3bf4f8744175e87f7a06a4966ac908ce78", "fields": {"nom_de_la_commune": "EPAGNE EPAGNETTE", "libell_d_acheminement": "EPAGNE EPAGNETTE", "code_postal": "80580", "coordonnees_gps": [50.0580760392, 1.88626484435], "code_commune_insee": "80268"}, "geometry": {"type": "Point", "coordinates": [1.88626484435, 50.0580760392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd5dff06e2af072402ae6104881513bdbc40e1b", "fields": {"nom_de_la_commune": "EPLESSIER", "libell_d_acheminement": "EPLESSIER", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80273"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee5d1371eef4e6fb2afa008cfadeea59aed6336a", "fields": {"code_postal": "80290", "code_commune_insee": "80276", "libell_d_acheminement": "EQUENNES ERAMECOURT", "ligne_5": "ERAMECOURT", "nom_de_la_commune": "EQUENNES ERAMECOURT", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f0840bcca3a60a330a7eb81eb220d36dd6e2b90", "fields": {"nom_de_la_commune": "ERCHES", "libell_d_acheminement": "ERCHES", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80278"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a7ab2e912477c6b01361569da30a0d53d8717b3", "fields": {"nom_de_la_commune": "ERCHEU", "libell_d_acheminement": "ERCHEU", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80279"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0168daeec8b3a051710e51a36e4f4b7159f2a97e", "fields": {"nom_de_la_commune": "ESTREES SUR NOYE", "libell_d_acheminement": "ESTREES SUR NOYE", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80291"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe082dce3ff8607f80d39323cea47fd91c5714be", "fields": {"nom_de_la_commune": "L ETOILE", "libell_d_acheminement": "L ETOILE", "code_postal": "80830", "coordonnees_gps": [50.031200876, 2.0339484859], "code_commune_insee": "80296"}, "geometry": {"type": "Point", "coordinates": [2.0339484859, 50.031200876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acd9c830116be90af00385d2ee7b5c781e01f68e", "fields": {"nom_de_la_commune": "FAMECHON", "libell_d_acheminement": "FAMECHON", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80301"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "748a26fa1c2ac484ba81b7badb3bc3025380933c", "fields": {"nom_de_la_commune": "FAVEROLLES", "libell_d_acheminement": "FAVEROLLES", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80302"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc37e542fb725cb9e9bdcdd1e1dd127ce8a9fead", "fields": {"nom_de_la_commune": "FAY", "libell_d_acheminement": "FAY", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80304"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aee8cbdaea02b41c181885dc625bacaac1d6c33", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80317"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c22b694ce437b02122d9fda66971ceb85c01c8", "fields": {"code_postal": "62270", "code_commune_insee": "62137", "libell_d_acheminement": "BLANGERVAL BLANGERMONT", "ligne_5": "BLANGERMONT", "nom_de_la_commune": "BLANGERVAL BLANGERMONT", "coordonnees_gps": [50.280518399, 2.28550384111]}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9dd6eca681760404a967115a7099c5b34f47aae", "fields": {"nom_de_la_commune": "BLESSY", "libell_d_acheminement": "BLESSY", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62141"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97db835edbe5e8ca6babcbf2570bd5c884e05a97", "fields": {"nom_de_la_commune": "BLINGEL", "libell_d_acheminement": "BLINGEL", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62142"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2c1b500e0e157a49d5b4410e6924f04c4862fc", "fields": {"nom_de_la_commune": "BOULOGNE SUR MER", "libell_d_acheminement": "BOULOGNE SUR MER", "code_postal": "62200", "coordonnees_gps": [50.7270796705, 1.60612338396], "code_commune_insee": "62160"}, "geometry": {"type": "Point", "coordinates": [1.60612338396, 50.7270796705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8561edf7de3c76ecde37c3508973840de96caa0", "fields": {"nom_de_la_commune": "BOURS", "libell_d_acheminement": "BOURS", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62166"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6608ebd345df1d0c539d54d9e76ae06281331cb8", "fields": {"nom_de_la_commune": "BOYAVAL", "libell_d_acheminement": "BOYAVAL", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62171"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea2957a1e73084223081c9cf61a2b56a0d9458f", "fields": {"nom_de_la_commune": "BRUAY LA BUISSIERE", "libell_d_acheminement": "BRUAY LA BUISSIERE", "code_postal": "62700", "coordonnees_gps": [50.489902932, 2.55175766281], "code_commune_insee": "62178"}, "geometry": {"type": "Point", "coordinates": [2.55175766281, 50.489902932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc072a47faf2ace88bc366403ae9ae76a11de94c", "fields": {"nom_de_la_commune": "BRIAS", "libell_d_acheminement": "BRIAS", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62180"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65ee196b2e53f0367b95beffd61059c484496c2e", "fields": {"nom_de_la_commune": "BUCQUOY", "libell_d_acheminement": "BUCQUOY", "code_postal": "62116", "coordonnees_gps": [50.1489493894, 2.70436913467], "code_commune_insee": "62181"}, "geometry": {"type": "Point", "coordinates": [2.70436913467, 50.1489493894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e092a512b3fc9308747757bb60816ea11ba80c6", "fields": {"nom_de_la_commune": "BUIRE AU BOIS", "libell_d_acheminement": "BUIRE AU BOIS", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62182"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b97de1a4b365073bee322deec10d2fd545d3152", "fields": {"nom_de_la_commune": "BUIRE LE SEC", "libell_d_acheminement": "BUIRE LE SEC", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62183"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c3f8268aea35b7d1079ad92080289dcb090781", "fields": {"nom_de_la_commune": "BURBURE", "libell_d_acheminement": "BURBURE", "code_postal": "62151", "coordonnees_gps": [50.5325826972, 2.4623535235], "code_commune_insee": "62188"}, "geometry": {"type": "Point", "coordinates": [2.4623535235, 50.5325826972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9988a5565bea763e6700119593016920b772eaf0", "fields": {"nom_de_la_commune": "BUSNES", "libell_d_acheminement": "BUSNES", "code_postal": "62350", "coordonnees_gps": [50.6043469321, 2.56021109887], "code_commune_insee": "62190"}, "geometry": {"type": "Point", "coordinates": [2.56021109887, 50.6043469321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b3e4129a9fdf17647db84a68d6e008b8120ec6", "fields": {"nom_de_la_commune": "CAGNICOURT", "libell_d_acheminement": "CAGNICOURT", "code_postal": "62182", "coordonnees_gps": [50.2102987642, 2.97666168153], "code_commune_insee": "62192"}, "geometry": {"type": "Point", "coordinates": [2.97666168153, 50.2102987642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fc6f258f1fad509792840eb5ae833948533baa7", "fields": {"nom_de_la_commune": "CAMBLAIN CHATELAIN", "libell_d_acheminement": "CAMBLAIN CHATELAIN", "code_postal": "62470", "coordonnees_gps": [50.4810470816, 2.46209198935], "code_commune_insee": "62197"}, "geometry": {"type": "Point", "coordinates": [2.46209198935, 50.4810470816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f922cc0c75ed3c5929099f40425d02581909a2cb", "fields": {"nom_de_la_commune": "CAMPAGNE LES WARDRECQUES", "libell_d_acheminement": "CAMPAGNE LES WARDRECQUES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62205"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee95a7c8519eec039fd5ecb426ab7773f937d6f", "fields": {"nom_de_la_commune": "LA CAUCHIE", "libell_d_acheminement": "LA CAUCHIE", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62216"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26e80d0920a1d71ae1ce6141d3c26433e91a6e7", "fields": {"nom_de_la_commune": "CHERIENNES", "libell_d_acheminement": "CHERIENNES", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62222"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cbb010dbbc1c7619db72855d32cfa037973de8e", "fields": {"nom_de_la_commune": "CLERQUES", "libell_d_acheminement": "CLERQUES", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62228"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "122e40241d9615c14bc50498e63bb30ea06b6887", "fields": {"nom_de_la_commune": "CLETY", "libell_d_acheminement": "CLETY", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62229"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2bc0f2e7342208901ab50ef0a51004d9303e6a6", "fields": {"nom_de_la_commune": "COLEMBERT", "libell_d_acheminement": "COLEMBERT", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62230"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04ae41e9fdd694b097c8fe2415ec1ff6ed0687c", "fields": {"nom_de_la_commune": "CONDETTE", "libell_d_acheminement": "CONDETTE", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62235"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a6bfab7e1d0463cfd8ce945cb6bddf46bbd6c6", "fields": {"nom_de_la_commune": "CONTEVILLE EN TERNOIS", "libell_d_acheminement": "CONTEVILLE EN TERNOIS", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62238"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f448a5a7f7e33d6651e7334aa56646a68ad1804a", "fields": {"nom_de_la_commune": "COUIN", "libell_d_acheminement": "COUIN", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62242"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31bae49fe3774b43489642080b34b48b41f59bf1", "fields": {"nom_de_la_commune": "COUPELLE NEUVE", "libell_d_acheminement": "COUPELLE NEUVE", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62246"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97bc48960130569ceea6fc548bef1573bce89c70", "fields": {"nom_de_la_commune": "CREMAREST", "libell_d_acheminement": "CREMAREST", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62255"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ccbb775635a537035c976f3253ae89232906db3", "fields": {"nom_de_la_commune": "CREPY", "libell_d_acheminement": "CREPY", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62256"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064c99c9615f34d45fb0934f6870d4fc00e1742b", "fields": {"nom_de_la_commune": "CROISETTE", "libell_d_acheminement": "CROISETTE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62258"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33cf4ee331555a90facb15288507ed066bcce45c", "fields": {"nom_de_la_commune": "CROISILLES", "libell_d_acheminement": "CROISILLES", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62259"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8408f2938a2df6be4084708eaf1d178f98e8016", "fields": {"nom_de_la_commune": "CUCQ", "libell_d_acheminement": "CUCQ", "code_postal": "62780", "coordonnees_gps": [50.4862400419, 1.61385342585], "code_commune_insee": "62261"}, "geometry": {"type": "Point", "coordinates": [1.61385342585, 50.4862400419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8fa41faa8fe200cf26efbb6fcd12b8f9857eb41", "fields": {"nom_de_la_commune": "DANNES", "libell_d_acheminement": "DANNES", "code_postal": "62187", "coordonnees_gps": [50.5928633889, 1.60606481038], "code_commune_insee": "62264"}, "geometry": {"type": "Point", "coordinates": [1.60606481038, 50.5928633889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03320d9a797bcf7d51ee5c897983cf047bd2598d", "fields": {"nom_de_la_commune": "DIVION", "libell_d_acheminement": "DIVION", "code_postal": "62460", "coordonnees_gps": [50.4531419324, 2.47496250173], "code_commune_insee": "62270"}, "geometry": {"type": "Point", "coordinates": [2.47496250173, 50.4531419324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebc211c4f77325b4bcc983a19d685c5030b48e48", "fields": {"nom_de_la_commune": "DOHEM", "libell_d_acheminement": "DOHEM", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62271"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb35ef1c77741bc0a4301e161b1da6f6f195ad14", "fields": {"nom_de_la_commune": "DOURGES", "libell_d_acheminement": "DOURGES", "code_postal": "62119", "coordonnees_gps": [50.4390932019, 2.9865949211], "code_commune_insee": "62274"}, "geometry": {"type": "Point", "coordinates": [2.9865949211, 50.4390932019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c41ed332b47262ca41955afe225983827c07aafa", "fields": {"nom_de_la_commune": "ECLIMEUX", "libell_d_acheminement": "ECLIMEUX", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62282"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d3dabedc5fd46820b7d7afa70c276a7aff9c18d", "fields": {"nom_de_la_commune": "ECQUEDECQUES", "libell_d_acheminement": "ECQUEDECQUES", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62286"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f80b3eb5a4f714db344c4a49a3929c9809423c", "fields": {"nom_de_la_commune": "ECURIE", "libell_d_acheminement": "ECURIE", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62290"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f73671e784ddcda34d5f34bc2b63bbc6492392cd", "fields": {"nom_de_la_commune": "EPERLECQUES", "libell_d_acheminement": "EPERLECQUES", "code_postal": "62910", "coordonnees_gps": [50.7991488939, 2.16031831269], "code_commune_insee": "62297"}, "geometry": {"type": "Point", "coordinates": [2.16031831269, 50.7991488939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "873ecb629b431a317f988e300581dc1e67277fa0", "fields": {"nom_de_la_commune": "EQUIHEN PLAGE", "libell_d_acheminement": "EQUIHEN PLAGE", "code_postal": "62224", "coordonnees_gps": [50.6790166663, 1.57648739719], "code_commune_insee": "62300"}, "geometry": {"type": "Point", "coordinates": [1.57648739719, 50.6790166663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11cd6a43ab812d3f2f44e30a8ae151f451cdd330", "fields": {"nom_de_la_commune": "ERVILLERS", "libell_d_acheminement": "ERVILLERS", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62306"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c82cd28b4d20a03fd93dadb913f41eb12ebe48", "fields": {"nom_de_la_commune": "ETRUN", "libell_d_acheminement": "ETRUN", "code_postal": "62161", "coordonnees_gps": [50.3152704012, 2.69028460141], "code_commune_insee": "62320"}, "geometry": {"type": "Point", "coordinates": [2.69028460141, 50.3152704012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b994119c033ca1d51c8ed07d21abe0b6853ad9e0", "fields": {"nom_de_la_commune": "FAMECHON", "libell_d_acheminement": "FAMECHON", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62322"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99a689a3477e402a80363597585122bd7f8f9d32", "fields": {"nom_de_la_commune": "FAVREUIL", "libell_d_acheminement": "FAVREUIL", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62326"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "040d9d0775150f9f83a358b6dc4795d95cf02cbc", "fields": {"nom_de_la_commune": "FEBVIN PALFART", "libell_d_acheminement": "FEBVIN PALFART", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62327"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "161df3f0cd0d4daa267576c03b634ca79cc29218", "fields": {"nom_de_la_commune": "FESTUBERT", "libell_d_acheminement": "FESTUBERT", "code_postal": "62149", "coordonnees_gps": [50.526774017, 2.73934770262], "code_commune_insee": "62330"}, "geometry": {"type": "Point", "coordinates": [2.73934770262, 50.526774017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6324a3e577c6e74df49def9d1179acc10d074e", "fields": {"nom_de_la_commune": "FICHEUX", "libell_d_acheminement": "FICHEUX", "code_postal": "62173", "coordonnees_gps": [50.2219083528, 2.6997796891], "code_commune_insee": "62332"}, "geometry": {"type": "Point", "coordinates": [2.6997796891, 50.2219083528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e18092b004a9e6a169abdc39c0a1c36e2cc80c", "fields": {"nom_de_la_commune": "FRAMECOURT", "libell_d_acheminement": "FRAMECOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62352"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7385877af0d88da1f444b707e1135caf74cb826e", "fields": {"nom_de_la_commune": "FRETHUN", "libell_d_acheminement": "FRETHUN", "code_postal": "62185", "coordonnees_gps": [50.9031968827, 1.82269226345], "code_commune_insee": "62360"}, "geometry": {"type": "Point", "coordinates": [1.82269226345, 50.9031968827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8f5b38755fccea7aacfd3179ee289dcd190677c", "fields": {"nom_de_la_commune": "GOMMECOURT", "libell_d_acheminement": "GOMMECOURT", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62375"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0cc3e4182d56690f66d8f9b2833e353d7d6426", "fields": {"nom_de_la_commune": "GOUVES", "libell_d_acheminement": "GOUVES", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62378"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "482a9b98bc57d2fcf56e0b696074946929eb0013", "fields": {"nom_de_la_commune": "GOUY ST ANDRE", "libell_d_acheminement": "GOUY ST ANDRE", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62382"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3410298430b97eedb785f41b15360b3048ef60c", "fields": {"nom_de_la_commune": "GOUY SOUS BELLONNE", "libell_d_acheminement": "GOUY SOUS BELLONNE", "code_postal": "62112", "coordonnees_gps": [50.3205971806, 3.05553687028], "code_commune_insee": "62383"}, "geometry": {"type": "Point", "coordinates": [3.05553687028, 50.3205971806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba0d2859df148c0043b66c8796e873e7a8a2d248", "fields": {"nom_de_la_commune": "GROFFLIERS", "libell_d_acheminement": "GROFFLIERS", "code_postal": "62600", "coordonnees_gps": [50.4040908663, 1.59052675041], "code_commune_insee": "62390"}, "geometry": {"type": "Point", "coordinates": [1.59052675041, 50.4040908663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef207779a094db2637bb7ca51e4520446a805f40", "fields": {"nom_de_la_commune": "HABARCQ", "libell_d_acheminement": "HABARCQ", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62399"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "197b6490549a6fa309837e678ba4fa9e9e130222", "fields": {"nom_de_la_commune": "HAISNES", "libell_d_acheminement": "HAISNES", "code_postal": "62138", "coordonnees_gps": [50.5179062037, 2.8111923561], "code_commune_insee": "62401"}, "geometry": {"type": "Point", "coordinates": [2.8111923561, 50.5179062037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2052c8850cf0a8159fccb54355b3e4f6a20aa280", "fields": {"nom_de_la_commune": "HAMBLAIN LES PRES", "libell_d_acheminement": "HAMBLAIN LES PRES", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62405"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba596e91119fae3ac3f94a6169cfc8ae7f806d1", "fields": {"nom_de_la_commune": "HARNES", "libell_d_acheminement": "HARNES", "code_postal": "62440", "coordonnees_gps": [50.4521433616, 2.90362398538], "code_commune_insee": "62413"}, "geometry": {"type": "Point", "coordinates": [2.90362398538, 50.4521433616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480d9c7215a73f70d384a906264bf091c7463276", "fields": {"nom_de_la_commune": "HAUTEVILLE", "libell_d_acheminement": "HAUTEVILLE", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62418"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8e57aa6452741b04b90938959ff38db005ae85c", "fields": {"nom_de_la_commune": "HENU", "libell_d_acheminement": "HENU", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62430"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58006391c91d9b8b44f6ffc63686129f9597a146", "fields": {"nom_de_la_commune": "HERBINGHEN", "libell_d_acheminement": "HERBINGHEN", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62432"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82acb287564fabefd2bd7fee758f35c101889b8", "fields": {"nom_de_la_commune": "LA HERLIERE", "libell_d_acheminement": "LA HERLIERE", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62434"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adda5d684bcfa509bf1f38fa227a4707b25ebbbe", "fields": {"nom_de_la_commune": "HESTRUS", "libell_d_acheminement": "HESTRUS", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62450"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2800fb86e04856106501503dce2d371a032959a6", "fields": {"nom_de_la_commune": "HEZECQUES", "libell_d_acheminement": "HEZECQUES", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62453"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d0bd119924784cce19b3d7cf5664998fc00ff2a", "fields": {"nom_de_la_commune": "HOULLE", "libell_d_acheminement": "HOULLE", "code_postal": "62910", "coordonnees_gps": [50.7991488939, 2.16031831269], "code_commune_insee": "62458"}, "geometry": {"type": "Point", "coordinates": [2.16031831269, 50.7991488939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502e79c846e7c15b91b98edf3030355af9e3447f", "fields": {"nom_de_la_commune": "LACRES", "libell_d_acheminement": "LACRES", "code_postal": "62830", "coordonnees_gps": [50.6277708204, 1.75051028436], "code_commune_insee": "62483"}, "geometry": {"type": "Point", "coordinates": [1.75051028436, 50.6277708204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9015d848914b4fcc42d5e75aaf9e1fec037039dc", "fields": {"nom_de_la_commune": "LEBIEZ", "libell_d_acheminement": "LEBIEZ", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62492"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cfc34de374e79a3e604dd64cefa36c825f51435", "fields": {"nom_de_la_commune": "LECHELLE", "libell_d_acheminement": "LECHELLE", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62494"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad678a287a0ed58e6498c72aecf40d92bfcbc628", "fields": {"nom_de_la_commune": "LESTREM", "libell_d_acheminement": "LESTREM", "code_postal": "62136", "coordonnees_gps": [50.5923913171, 2.70776740353], "code_commune_insee": "62502"}, "geometry": {"type": "Point", "coordinates": [2.70776740353, 50.5923913171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e3d965c56dd371ca87fdc3bd2f1bc6c2e4c9a9a", "fields": {"nom_de_la_commune": "LEUBRINGHEN", "libell_d_acheminement": "LEUBRINGHEN", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62503"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77204388b2b6d2ad404243d2f63d7d882bb55529", "fields": {"nom_de_la_commune": "LIGNY LES AIRE", "libell_d_acheminement": "LIGNY LES AIRE", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62512"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d79c7ed52257732785107a53fc5c33b0c476766d", "fields": {"nom_de_la_commune": "LILLERS", "libell_d_acheminement": "LILLERS", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62516"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1c99c832daeda82b14049fc7ff32f87c2e59ba", "fields": {"nom_de_la_commune": "LA LOGE", "libell_d_acheminement": "LA LOGE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62521"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4ba3dc2c180870fe7e4eaf06f98d2f959e6be6f", "fields": {"nom_de_la_commune": "LA MADELAINE SOUS MONTREUIL", "libell_d_acheminement": "LA MADELAINE SOUS MONTREUIL", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62535"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "433047eeda61a3f0225fc21ba83df6f31bbf3b95", "fields": {"nom_de_la_commune": "MAGNICOURT EN COMTE", "libell_d_acheminement": "MAGNICOURT EN COMTE", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62536"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e0ec3b27de2695efe9acd6e561850a02c22cd8a", "fields": {"nom_de_la_commune": "MARCONNE", "libell_d_acheminement": "MARCONNE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62549"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0241d69f6e2fdd1d81dbce08c4f8c34a89971346", "fields": {"nom_de_la_commune": "MARESQUEL ECQUEMICOURT", "libell_d_acheminement": "MARESQUEL ECQUEMICOURT", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62552"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ecf283500f298f0f5fcf1549221b28ccbd0070", "fields": {"nom_de_la_commune": "MARLES LES MINES", "libell_d_acheminement": "MARLES LES MINES", "code_postal": "62540", "coordonnees_gps": [50.5065870429, 2.50257888939], "code_commune_insee": "62555"}, "geometry": {"type": "Point", "coordinates": [2.50257888939, 50.5065870429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0521685fb6f334f01ca99eddf2d396e23d0fc794", "fields": {"nom_de_la_commune": "MARTINPUICH", "libell_d_acheminement": "MARTINPUICH", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62561"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7f1696d4099f871663f98b89e4e29c1a1485bef", "fields": {"nom_de_la_commune": "MATRINGHEM", "libell_d_acheminement": "MATRINGHEM", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62562"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a8aa9a97b4c85cae73e400b4ec71d358c7e35f2", "fields": {"nom_de_la_commune": "MONCHY AU BOIS", "libell_d_acheminement": "MONCHY AU BOIS", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62579"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58dcb9c899922a4d18f75ee2d96abc2b0cf7587d", "fields": {"nom_de_la_commune": "MONDICOURT", "libell_d_acheminement": "MONDICOURT", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62583"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98af04f555fbc27392f1e2bcc482636fe0519f80", "fields": {"nom_de_la_commune": "MONTENESCOURT", "libell_d_acheminement": "MONTENESCOURT", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62586"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df7b839d02979bd43b0aceec5a8572d10e1cd787", "fields": {"nom_de_la_commune": "NEUVILLE ST VAAST", "libell_d_acheminement": "NEUVILLE ST VAAST", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62609"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abc731c571effc1d42460526f4f31de814aa44cc", "fields": {"nom_de_la_commune": "NIELLES LES BLEQUIN", "libell_d_acheminement": "NIELLES LES BLEQUIN", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62613"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6028298b7d0553fd0996795756e513840c7ac24f", "fields": {"nom_de_la_commune": "NORDAUSQUES", "libell_d_acheminement": "NORDAUSQUES", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62618"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b239a58d436c1a07d7acdb44a028162b772f02b", "fields": {"nom_de_la_commune": "OBLINGHEM", "libell_d_acheminement": "OBLINGHEM", "code_postal": "62920", "coordonnees_gps": [50.5563250564, 2.56747944823], "code_commune_insee": "62632"}, "geometry": {"type": "Point", "coordinates": [2.56747944823, 50.5563250564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0502ec41d83d9fddeaafc6f888f1073f22bef39b", "fields": {"nom_de_la_commune": "PENIN", "libell_d_acheminement": "PENIN", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62651"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad3f2e2096c77864a14b68886a2651aa0c40138", "fields": {"nom_de_la_commune": "PERNES", "libell_d_acheminement": "PERNES", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62652"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be71fa2c43a483045546c23827b970d320492668", "fields": {"nom_de_la_commune": "POLINCOVE", "libell_d_acheminement": "POLINCOVE", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62662"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "195ff2fb8c238039f01e5fa72f45775335efe6c0", "fields": {"nom_de_la_commune": "POMMERA", "libell_d_acheminement": "POMMERA", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62663"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2743d946805dae68fb1acccb75a160c0995893d4", "fields": {"nom_de_la_commune": "PONT A VENDIN", "libell_d_acheminement": "PONT A VENDIN", "code_postal": "62880", "coordonnees_gps": [50.470091244, 2.86997706713], "code_commune_insee": "62666"}, "geometry": {"type": "Point", "coordinates": [2.86997706713, 50.470091244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92fbb154ad9849293e9dbe0dcdfbd652c579aad2", "fields": {"nom_de_la_commune": "QUESQUES", "libell_d_acheminement": "QUESQUES", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62678"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df76d981f0aa6d9ea892f58b3d6ad5cca4db2318", "fields": {"nom_de_la_commune": "RAMECOURT", "libell_d_acheminement": "RAMECOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62686"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625e00173bbd289cde06907de818f4edb0f4f392", "fields": {"nom_de_la_commune": "REBREUVE RANCHICOURT", "libell_d_acheminement": "REBREUVE RANCHICOURT", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62693"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f291fd60c6c360c3bc19ef79d93990eba64273c7", "fields": {"nom_de_la_commune": "RECLINGHEM", "libell_d_acheminement": "RECLINGHEM", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62696"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bac05d3f3981a19dba1a62cfe07be933bfc5dc2", "fields": {"nom_de_la_commune": "RIENCOURT LES BAPAUME", "libell_d_acheminement": "RIENCOURT LES BAPAUME", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62708"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d0af2e1523bf52365368e24329ee3a483e84d0c", "fields": {"nom_de_la_commune": "RINXENT", "libell_d_acheminement": "RINXENT", "code_postal": "62720", "coordonnees_gps": [50.7869009798, 1.75735193267], "code_commune_insee": "62711"}, "geometry": {"type": "Point", "coordinates": [1.75735193267, 50.7869009798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f1f44452dc0fde55d50e9fad12e688a092961fc", "fields": {"nom_de_la_commune": "ROEUX", "libell_d_acheminement": "ROEUX", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62718"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f4eb234b63e54835d21167eb13bb97bea1ae9d", "fields": {"nom_de_la_commune": "ROLLANCOURT", "libell_d_acheminement": "ROLLANCOURT", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62719"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c48f90975dc4361f05baade4f9a37d2ea47f5d7", "fields": {"nom_de_la_commune": "RUMILLY", "libell_d_acheminement": "RUMILLY", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62729"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56370d100a10d57d52107ba231336be06835029c", "fields": {"nom_de_la_commune": "LA CHAPELLE ST JEAN", "libell_d_acheminement": "LA CHAPELLE ST JEAN", "code_postal": "24390", "coordonnees_gps": [45.2509345375, 1.14488795107], "code_commune_insee": "24113"}, "geometry": {"type": "Point", "coordinates": [1.14488795107, 45.2509345375]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cd7509940357474175e86c3c4007859aeca1942", "fields": {"nom_de_la_commune": "CHAVAGNAC", "libell_d_acheminement": "CHAVAGNAC", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24117"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3969c94d176f220ab08f2a0ea4d69fb7308e9856", "fields": {"nom_de_la_commune": "CHOURGNAC", "libell_d_acheminement": "CHOURGNAC", "code_postal": "24640", "coordonnees_gps": [45.228517812, 0.964656350856], "code_commune_insee": "24121"}, "geometry": {"type": "Point", "coordinates": [0.964656350856, 45.228517812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba7d7eee9e46c47ae0e40e1ce0c5d6c636583209", "fields": {"nom_de_la_commune": "CLADECH", "libell_d_acheminement": "CLADECH", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24122"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a11a791980503697f86088c1a241df492206367", "fields": {"nom_de_la_commune": "COMBERANCHE ET EPELUCHE", "libell_d_acheminement": "COMBERANCHE ET EPELUCHE", "code_postal": "24600", "coordonnees_gps": [45.2430062508, 0.340235655948], "code_commune_insee": "24128"}, "geometry": {"type": "Point", "coordinates": [0.340235655948, 45.2430062508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0540e3960b890d0c2f1bc0a02cd3067d0560a84d", "fields": {"nom_de_la_commune": "CONNE DE LABARDE", "libell_d_acheminement": "CONNE DE LABARDE", "code_postal": "24560", "coordonnees_gps": [44.7422356439, 0.603161629803], "code_commune_insee": "24132"}, "geometry": {"type": "Point", "coordinates": [0.603161629803, 44.7422356439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90295013abe3f4c9dab8c9e94f49ab652fe33949", "fields": {"nom_de_la_commune": "CORNILLE", "libell_d_acheminement": "CORNILLE", "code_postal": "24750", "coordonnees_gps": [45.1801193657, 0.766939907734], "code_commune_insee": "24135"}, "geometry": {"type": "Point", "coordinates": [0.766939907734, 45.1801193657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e84d8ee26c5ea488978583555518ac35980b8ce", "fields": {"nom_de_la_commune": "COUX ET BIGAROQUE MOUZENS", "libell_d_acheminement": "COUX ET BIGAROQUE MOUZENS", "code_postal": "24220", "coordonnees_gps": [44.8620938177, 1.0656904068], "code_commune_insee": "24142"}, "geometry": {"type": "Point", "coordinates": [1.0656904068, 44.8620938177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2ba536ea3854fe71c70e7995d9507630066de36", "fields": {"nom_de_la_commune": "DOISSAT", "libell_d_acheminement": "DOISSAT", "code_postal": "24170", "coordonnees_gps": [44.7520136105, 1.04613211786], "code_commune_insee": "24151"}, "geometry": {"type": "Point", "coordinates": [1.04613211786, 44.7520136105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9790dbdc083eb3f443acb5a2c10eb5d135a94e8", "fields": {"nom_de_la_commune": "LA DORNAC", "libell_d_acheminement": "LA DORNAC", "code_postal": "24120", "coordonnees_gps": [45.1193509638, 1.29790684611], "code_commune_insee": "24153"}, "geometry": {"type": "Point", "coordinates": [1.29790684611, 45.1193509638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1464e8277ec48c005b09c26c54c8020beb73814", "fields": {"nom_de_la_commune": "EGLISE NEUVE D ISSAC", "libell_d_acheminement": "EGLISE NEUVE D ISSAC", "code_postal": "24400", "coordonnees_gps": [45.0344018011, 0.344368623615], "code_commune_insee": "24161"}, "geometry": {"type": "Point", "coordinates": [0.344368623615, 45.0344018011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "191c70ba0b8c6dfdac2b003c402888e1ad623c1d", "fields": {"nom_de_la_commune": "EYLIAC", "libell_d_acheminement": "EYLIAC", "code_postal": "24330", "coordonnees_gps": [45.1284574814, 0.869348647957], "code_commune_insee": "24166"}, "geometry": {"type": "Point", "coordinates": [0.869348647957, 45.1284574814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d610e293c038dcc620034aa7698a5fe3ebd1bea7", "fields": {"nom_de_la_commune": "COURTAULY", "libell_d_acheminement": "COURTAULY", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11107"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45632b3e60aa5e3277f9ef418742326f915d4d8a", "fields": {"nom_de_la_commune": "LA COURTETE", "libell_d_acheminement": "LA COURTETE", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11108"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "062cd31d4e3d7bd1746b14d8d9084bc16e211837", "fields": {"nom_de_la_commune": "LA DIGNE D AVAL", "libell_d_acheminement": "LA DIGNE D AVAL", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11120"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6471e5fef7deab80af408391d1b7d0672d0bca6d", "fields": {"nom_de_la_commune": "ESCUEILLENS ET ST JUST", "libell_d_acheminement": "ESCUEILLENS ET ST JUST", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11128"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f944649ceb3037b5c84c340dd22ef592a427b923", "fields": {"nom_de_la_commune": "FA", "libell_d_acheminement": "FA", "code_postal": "11260", "coordonnees_gps": [42.9301295633, 2.17179732489], "code_commune_insee": "11131"}, "geometry": {"type": "Point", "coordinates": [2.17179732489, 42.9301295633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5b739c3aa3a48123d78d2dc426363a11889501", "fields": {"nom_de_la_commune": "FAJAC LA RELENQUE", "libell_d_acheminement": "FAJAC LA RELENQUE", "code_postal": "11410", "coordonnees_gps": [43.2886413576, 1.80135110188], "code_commune_insee": "11134"}, "geometry": {"type": "Point", "coordinates": [1.80135110188, 43.2886413576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f87abf662ecd71f6a5742b21ef3c20c1c1613ed6", "fields": {"nom_de_la_commune": "FENOUILLET DU RAZES", "libell_d_acheminement": "FENOUILLET DU RAZES", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11139"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31e5796d06cffba27f7c12341bc39c95d43a6a84", "fields": {"nom_de_la_commune": "FERRAN", "libell_d_acheminement": "FERRAN", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11141"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b57b879c2bac849b8023973d7fa231f18cae3d", "fields": {"nom_de_la_commune": "FLOURE", "libell_d_acheminement": "FLOURE", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11146"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef701a9d0ea3347b551f9f6a8b9de9a39cd8cac5", "fields": {"nom_de_la_commune": "FONTIES D AUDE", "libell_d_acheminement": "FONTIES D AUDE", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11151"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68ab2b9d20d8c07b83a40e88085845dfa8812129", "fields": {"nom_de_la_commune": "FOURTOU", "libell_d_acheminement": "FOURTOU", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11155"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05596596a6d72b8ec71e0ce7f3fa0fdce4307078", "fields": {"nom_de_la_commune": "FRAISSE CABARDES", "libell_d_acheminement": "FRAISSE CABARDES", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11156"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "524a603ce91da16916c6ef658c3e77101c9cb8c6", "fields": {"nom_de_la_commune": "GARDIE", "libell_d_acheminement": "GARDIE", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11161"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0b3ffb2905c033f5bbebae946a49eb0e8d666b", "fields": {"nom_de_la_commune": "GINOLES", "libell_d_acheminement": "GINOLES", "code_postal": "11500", "coordonnees_gps": [42.8642681542, 2.2143101342], "code_commune_insee": "11165"}, "geometry": {"type": "Point", "coordinates": [2.2143101342, 42.8642681542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a89cca5bcdc6cea809548665cb4cbd1c113850", "fields": {"code_postal": "11430", "code_commune_insee": "11170", "libell_d_acheminement": "GRUISSAN", "ligne_5": "GRUISSAN PLAGE", "nom_de_la_commune": "GRUISSAN", "coordonnees_gps": [43.1033671547, 3.08203415117]}, "geometry": {"type": "Point", "coordinates": [3.08203415117, 43.1033671547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd86586dff0c8d8da4f800e1c2728e80b17bc41a", "fields": {"nom_de_la_commune": "LES ILHES", "libell_d_acheminement": "LES ILHES", "code_postal": "11380", "coordonnees_gps": [43.3945963595, 2.38722889335], "code_commune_insee": "11174"}, "geometry": {"type": "Point", "coordinates": [2.38722889335, 43.3945963595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb2f829776148074661f8f2ac670ceae3225cb4a", "fields": {"nom_de_la_commune": "LABECEDE LAURAGAIS", "libell_d_acheminement": "LABECEDE LAURAGAIS", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11181"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0a14d114e866668070bad56bbce0ef8caec9d4", "fields": {"nom_de_la_commune": "LAFAGE", "libell_d_acheminement": "LAFAGE", "code_postal": "11420", "coordonnees_gps": [43.2067830751, 1.79388571157], "code_commune_insee": "11184"}, "geometry": {"type": "Point", "coordinates": [1.79388571157, 43.2067830751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c80eaaf8d185d1f7d6aa4b7ecaf6f5fe747f0349", "fields": {"nom_de_la_commune": "LAIRIERE", "libell_d_acheminement": "LAIRIERE", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11186"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05cb7e41314f457d5ecd8dd6e2a84ba393549f1b", "fields": {"nom_de_la_commune": "LAROQUE DE FA", "libell_d_acheminement": "LAROQUE DE FA", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11191"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab22cd2a36397ce5d4eca5d18c61357327243e58", "fields": {"nom_de_la_commune": "LEZIGNAN CORBIERES", "libell_d_acheminement": "LEZIGNAN CORBIERES", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11203"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d84cc0d3bff19fb5e156331ed0ea4813653098", "fields": {"nom_de_la_commune": "LUC SUR AUDE", "libell_d_acheminement": "LUC SUR AUDE", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11209"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5912977e84ebdd33ced1600dbd785aa173426eb", "fields": {"nom_de_la_commune": "LUC SUR ORBIEU", "libell_d_acheminement": "LUC SUR ORBIEU", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11210"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7c244fc4a1692ee88e40606cc6f0bf261152611", "fields": {"nom_de_la_commune": "MAISONS", "libell_d_acheminement": "MAISONS", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11213"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "623d4bee18c5fffc1a1c616352c39d5a8feacc06", "fields": {"nom_de_la_commune": "MALVES EN MINERVOIS", "libell_d_acheminement": "MALVES EN MINERVOIS", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11215"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94485cd946958c2d2c6b49f558c575fca46dbbc2", "fields": {"nom_de_la_commune": "MALVIES", "libell_d_acheminement": "MALVIES", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11216"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a636a317d012c2fdba11dd193c9137bae628891a", "fields": {"nom_de_la_commune": "MAS DES COURS", "libell_d_acheminement": "MAS DES COURS", "code_postal": "11570", "coordonnees_gps": [43.1506610986, 2.38289109862], "code_commune_insee": "11223"}, "geometry": {"type": "Point", "coordinates": [2.38289109862, 43.1506610986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "820c998396f18904b9739d56ef9d91b2654e0603", "fields": {"nom_de_la_commune": "MONTFERRAND", "libell_d_acheminement": "MONTFERRAND", "code_postal": "11320", "coordonnees_gps": [43.3837467528, 1.85528043392], "code_commune_insee": "11243"}, "geometry": {"type": "Point", "coordinates": [1.85528043392, 43.3837467528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68405029233fd976cb8aa00f686777fa3b7c796", "fields": {"nom_de_la_commune": "MONTJOI", "libell_d_acheminement": "MONTJOI", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11250"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "286cd54888c04ee4fbd668ef4fb69ec626183b9a", "fields": {"nom_de_la_commune": "MONTREAL", "libell_d_acheminement": "MONTREAL", "code_postal": "11290", "coordonnees_gps": [43.1943746552, 2.18782678941], "code_commune_insee": "11254"}, "geometry": {"type": "Point", "coordinates": [2.18782678941, 43.1943746552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1f620f840592cf5a957a0d6fe6a6b370a521d8", "fields": {"nom_de_la_commune": "NIORT DE SAULT", "libell_d_acheminement": "NIORT DE SAULT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11265"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6dd4359bb4858a1888c3649e2a1948f5eef79b4", "fields": {"nom_de_la_commune": "PORT LA NOUVELLE", "libell_d_acheminement": "PORT LA NOUVELLE", "code_postal": "11210", "coordonnees_gps": [43.0214983978, 3.03796386295], "code_commune_insee": "11266"}, "geometry": {"type": "Point", "coordinates": [3.03796386295, 43.0214983978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5f9d8dc0f1657317c8d729331cbaff8d66c59f3", "fields": {"nom_de_la_commune": "ORNAISONS", "libell_d_acheminement": "ORNAISONS", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11267"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65e6ff37e731ddea9e1baeb15f2578e27e820dbe", "fields": {"nom_de_la_commune": "OUVEILLAN", "libell_d_acheminement": "OUVEILLAN", "code_postal": "11590", "coordonnees_gps": [43.2767571577, 2.97534639195], "code_commune_insee": "11269"}, "geometry": {"type": "Point", "coordinates": [2.97534639195, 43.2767571577]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c017b1f446c26937a17f66033112112692c2f8a8", "fields": {"nom_de_la_commune": "PALAJA", "libell_d_acheminement": "PALAJA", "code_postal": "11570", "coordonnees_gps": [43.1506610986, 2.38289109862], "code_commune_insee": "11272"}, "geometry": {"type": "Point", "coordinates": [2.38289109862, 43.1506610986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c883bce7019e9f9c274881f7174ef56d2e7ca5a1", "fields": {"nom_de_la_commune": "PEXIORA", "libell_d_acheminement": "PEXIORA", "code_postal": "11150", "coordonnees_gps": [43.2498711617, 2.06462165287], "code_commune_insee": "11281"}, "geometry": {"type": "Point", "coordinates": [2.06462165287, 43.2498711617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75791eb44f48aadfa06cf9871625a165d779d8e7", "fields": {"nom_de_la_commune": "PUGINIER", "libell_d_acheminement": "PUGINIER", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11300"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c9b4161bd84686a7a644ab82988e34660e58d08", "fields": {"nom_de_la_commune": "PUILAURENS", "libell_d_acheminement": "PUILAURENS", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11302"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c26a4897c762cefaa3de02f55e6f394354c82f", "fields": {"nom_de_la_commune": "RENNES LES BAINS", "libell_d_acheminement": "RENNES LES BAINS", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11310"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7576963c1437b0124708835fd45d7005e121608f", "fields": {"nom_de_la_commune": "RIBAUTE", "libell_d_acheminement": "RIBAUTE", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11311"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d7ae43f71e6aa5d160e8ad3fc90b774e1361f04", "fields": {"nom_de_la_commune": "RIBOUISSE", "libell_d_acheminement": "RIBOUISSE", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11312"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d46e55e7b4360fa7f7b7c3f5eb3cc5dcc33e87ae", "fields": {"nom_de_la_commune": "ROUTIER", "libell_d_acheminement": "ROUTIER", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11328"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "536f4c0e07a26c8970f09380f6aa9e29a4f564f0", "fields": {"nom_de_la_commune": "ST BENOIT", "libell_d_acheminement": "ST BENOIT", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11333"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1403148457ea85cacefb10cfce4d982bca2b3197", "fields": {"nom_de_la_commune": "ST FRICHOUX", "libell_d_acheminement": "ST FRICHOUX", "code_postal": "11800", "coordonnees_gps": [43.2182954878, 2.49172141797], "code_commune_insee": "11342"}, "geometry": {"type": "Point", "coordinates": [2.49172141797, 43.2182954878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1a577b0680bf07ba5c99555eb8686ea6bedfd0", "fields": {"nom_de_la_commune": "ST MARTIN DE VILLEREGLAN", "libell_d_acheminement": "ST MARTIN DE VILLEREGLAN", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11355"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "898794976687c59c162b0ddfcbdc6fb35f07c64f", "fields": {"nom_de_la_commune": "ST MARTIN LE VIEIL", "libell_d_acheminement": "ST MARTIN LE VIEIL", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11357"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc3ec14887ead20efc280699d94e964545f6619a", "fields": {"nom_de_la_commune": "ST NAZAIRE D AUDE", "libell_d_acheminement": "ST NAZAIRE D AUDE", "code_postal": "11120", "coordonnees_gps": [43.2793720392, 2.88392060651], "code_commune_insee": "11360"}, "geometry": {"type": "Point", "coordinates": [2.88392060651, 43.2793720392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fcf5fa6f8f6988773efb042d2a82dfbdd60d572", "fields": {"nom_de_la_commune": "SALVEZINES", "libell_d_acheminement": "SALVEZINES", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11373"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4904a73f4e1fc74cdc2b4ae72ba08e6a0cbb44bc", "fields": {"nom_de_la_commune": "SERRES", "libell_d_acheminement": "SERRES", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11377"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "383bf4579a5918e8a72bf547446666bfb4cbc395", "fields": {"nom_de_la_commune": "SONNAC SUR L HERS", "libell_d_acheminement": "SONNAC SUR L HERS", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11380"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f7aedd9ab2afb54ceda9352d9741968dcbf777", "fields": {"nom_de_la_commune": "TAURIZE", "libell_d_acheminement": "TAURIZE", "code_postal": "11220", "coordonnees_gps": [43.0809470716, 2.59145854442], "code_commune_insee": "11387"}, "geometry": {"type": "Point", "coordinates": [2.59145854442, 43.0809470716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2c2f62ab7e1719d1ac5f87282fc171b87d1c0b", "fields": {"nom_de_la_commune": "TERMES", "libell_d_acheminement": "TERMES", "code_postal": "11330", "coordonnees_gps": [42.9592043622, 2.54502712372], "code_commune_insee": "11388"}, "geometry": {"type": "Point", "coordinates": [2.54502712372, 42.9592043622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43af5f80cb1ba5d8d51a123143e123c31bf9caba", "fields": {"nom_de_la_commune": "TERROLES", "libell_d_acheminement": "TERROLES", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11389"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89cd008b9974ea9ea772e99684e64b8201877f6b", "fields": {"nom_de_la_commune": "TOUROUZELLE", "libell_d_acheminement": "TOUROUZELLE", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11393"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "502796b0a88945c3c0978738093405220b0d6338", "fields": {"nom_de_la_commune": "TREILLES", "libell_d_acheminement": "TREILLES", "code_postal": "11510", "coordonnees_gps": [42.9150508033, 2.94104906509], "code_commune_insee": "11398"}, "geometry": {"type": "Point", "coordinates": [2.94104906509, 42.9150508033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67a232955fc31151cb3b9e968b421001bb1f3a9", "fields": {"nom_de_la_commune": "TREVILLE", "libell_d_acheminement": "TREVILLE", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11399"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5539aa39a5ec4cbefea2780624cba43db0940c", "fields": {"nom_de_la_commune": "VENTENAC CABARDES", "libell_d_acheminement": "VENTENAC CABARDES", "code_postal": "11610", "coordonnees_gps": [43.2600787186, 2.30202617457], "code_commune_insee": "11404"}, "geometry": {"type": "Point", "coordinates": [2.30202617457, 43.2600787186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2617c8e0500acaf7a930b571f838b346fa850ca5", "fields": {"nom_de_la_commune": "VERAZA", "libell_d_acheminement": "VERAZA", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11406"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d47bfda688c6bc80009e247ceee892e3de32f9e", "fields": {"nom_de_la_commune": "VILLEBAZY", "libell_d_acheminement": "VILLEBAZY", "code_postal": "11250", "coordonnees_gps": [43.0946347739, 2.34321262347], "code_commune_insee": "11420"}, "geometry": {"type": "Point", "coordinates": [2.34321262347, 43.0946347739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e01e18aea940752c0b0295946aa86ac126cf2e16", "fields": {"nom_de_la_commune": "VILLESEQUE DES CORBIERES", "libell_d_acheminement": "VILLESEQUE DES CORBIERES", "code_postal": "11360", "coordonnees_gps": [42.9848553966, 2.7967793394], "code_commune_insee": "11436"}, "geometry": {"type": "Point", "coordinates": [2.7967793394, 42.9848553966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "015f7a29e61d911b55cf2b2eb7a895af085c7832", "fields": {"nom_de_la_commune": "VILLESEQUELANDE", "libell_d_acheminement": "VILLESEQUELANDE", "code_postal": "11170", "coordonnees_gps": [43.2815047945, 2.19442534937], "code_commune_insee": "11437"}, "geometry": {"type": "Point", "coordinates": [2.19442534937, 43.2815047945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2155d3bec26379d2bb0d8fb758494a679708e5ae", "fields": {"nom_de_la_commune": "VILLESISCLE", "libell_d_acheminement": "VILLESISCLE", "code_postal": "11150", "coordonnees_gps": [43.2498711617, 2.06462165287], "code_commune_insee": "11438"}, "geometry": {"type": "Point", "coordinates": [2.06462165287, 43.2498711617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd0bc56fc9143792128c86ff9522c4f5686b8ebf", "fields": {"nom_de_la_commune": "ALRANCE", "libell_d_acheminement": "ALRANCE", "code_postal": "12430", "coordonnees_gps": [44.0864778708, 2.70135704539], "code_commune_insee": "12006"}, "geometry": {"type": "Point", "coordinates": [2.70135704539, 44.0864778708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825932a9d1dfca704b122a3c98bdeb821438b936", "fields": {"nom_de_la_commune": "ARNAC SUR DOURDOU", "libell_d_acheminement": "ARNAC SUR DOURDOU", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12009"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bab69b2438e5e5fbd2f86c81331921e7e9621248", "fields": {"nom_de_la_commune": "ARVIEU", "libell_d_acheminement": "ARVIEU", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12011"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7c19446bc7cb5b5fd9dab813ccee1985e84c04", "fields": {"code_postal": "12240", "code_commune_insee": "12021", "libell_d_acheminement": "LE BAS SEGALA", "ligne_5": "VABRE TIZAC", "nom_de_la_commune": "LE BAS SEGALA", "coordonnees_gps": [44.3140270715, 2.24773559855]}, "geometry": {"type": "Point", "coordinates": [2.24773559855, 44.3140270715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8bf668a8a33bba1d4fe5338a5bd1fded9c9a6c9", "fields": {"nom_de_la_commune": "BERTHOLENE", "libell_d_acheminement": "BERTHOLENE", "code_postal": "12310", "coordonnees_gps": [44.384469335, 2.84476302604], "code_commune_insee": "12026"}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e067858ebd811970a4f88b85d452e8cfb98b741f", "fields": {"nom_de_la_commune": "BESSUEJOULS", "libell_d_acheminement": "BESSUEJOULS", "code_postal": "12500", "coordonnees_gps": [44.5270610356, 2.81719827673], "code_commune_insee": "12027"}, "geometry": {"type": "Point", "coordinates": [2.81719827673, 44.5270610356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9112f5ae8a37cbe3f166b5375edd104fc758b9d7", "fields": {"nom_de_la_commune": "BOISSE PENCHOT", "libell_d_acheminement": "BOISSE PENCHOT", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12028"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b3cb570383b6d27d7bbc23ec5f241763903a1f", "fields": {"nom_de_la_commune": "BOZOULS", "libell_d_acheminement": "BOZOULS", "code_postal": "12340", "coordonnees_gps": [44.4656002773, 2.70710459278], "code_commune_insee": "12033"}, "geometry": {"type": "Point", "coordinates": [2.70710459278, 44.4656002773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf8b2edf04939a1ddea9e3ad7cac696c1c398b6", "fields": {"nom_de_la_commune": "BRUSQUE", "libell_d_acheminement": "BRUSQUE", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12039"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ff0d52ffdb94cc69f0f00c451100405817aac7a", "fields": {"nom_de_la_commune": "CAMBOULAZET", "libell_d_acheminement": "CAMBOULAZET", "code_postal": "12160", "coordonnees_gps": [44.2885792415, 2.42910267877], "code_commune_insee": "12045"}, "geometry": {"type": "Point", "coordinates": [2.42910267877, 44.2885792415]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12b17e1d6282ab906ae2e6b359fbba3192d28ba6", "fields": {"code_postal": "12140", "code_commune_insee": "12048", "libell_d_acheminement": "CAMPOURIEZ", "ligne_5": "BANHARS", "nom_de_la_commune": "CAMPOURIEZ", "coordonnees_gps": [44.6558037135, 2.58164635516]}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d878a96ff829c14830568b893cad0e77837c67d", "fields": {"nom_de_la_commune": "CANET DE SALARS", "libell_d_acheminement": "CANET DE SALARS", "code_postal": "12290", "coordonnees_gps": [44.2738891396, 2.76077181811], "code_commune_insee": "12050"}, "geometry": {"type": "Point", "coordinates": [2.76077181811, 44.2738891396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3105391c3665f51387e92c3ca6c781f1155670d", "fields": {"nom_de_la_commune": "CASSAGNES BEGONHES", "libell_d_acheminement": "CASSAGNES BEGONHES", "code_postal": "12120", "coordonnees_gps": [44.1738899788, 2.54748951823], "code_commune_insee": "12057"}, "geometry": {"type": "Point", "coordinates": [2.54748951823, 44.1738899788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c57ca2a88013328adc45439f513f8ab763e7e6", "fields": {"nom_de_la_commune": "COMPEYRE", "libell_d_acheminement": "COMPEYRE", "code_postal": "12520", "coordonnees_gps": [44.1968259654, 3.06387030498], "code_commune_insee": "12070"}, "geometry": {"type": "Point", "coordinates": [3.06387030498, 44.1968259654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b47de23e5ac41aaa2503943ca89a84fd4e7a135", "fields": {"nom_de_la_commune": "CORNUS", "libell_d_acheminement": "CORNUS", "code_postal": "12540", "coordonnees_gps": [43.8787455208, 3.14987374669], "code_commune_insee": "12077"}, "geometry": {"type": "Point", "coordinates": [3.14987374669, 43.8787455208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00915ce7d3ac1f0504102dec937e8a33c37388d", "fields": {"nom_de_la_commune": "COUBISOU", "libell_d_acheminement": "COUBISOU", "code_postal": "12190", "coordonnees_gps": [44.5757488453, 2.68710158175], "code_commune_insee": "12079"}, "geometry": {"type": "Point", "coordinates": [2.68710158175, 44.5757488453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a0240f0ccf6a813bb0b0832faf7a7347e90821", "fields": {"nom_de_la_commune": "LA COUVERTOIRADE", "libell_d_acheminement": "LA COUVERTOIRADE", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12082"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4639cefc83afd6d6a6e928e676cda7e5f6dd26ad", "fields": {"nom_de_la_commune": "CRANSAC", "libell_d_acheminement": "CRANSAC", "code_postal": "12110", "coordonnees_gps": [44.5334610269, 2.25593564519], "code_commune_insee": "12083"}, "geometry": {"type": "Point", "coordinates": [2.25593564519, 44.5334610269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee29c9f452375293e94cb283fc7dd8140ea9230", "fields": {"nom_de_la_commune": "LA CRESSE", "libell_d_acheminement": "LA CRESSE", "code_postal": "12640", "coordonnees_gps": [44.1929221049, 3.13986623915], "code_commune_insee": "12086"}, "geometry": {"type": "Point", "coordinates": [3.13986623915, 44.1929221049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e73d7867870be08fbac0b40341e5c1c1e647d4bf", "fields": {"code_postal": "12000", "code_commune_insee": "12090", "libell_d_acheminement": "DRUELLE", "ligne_5": "AMPIAC", "nom_de_la_commune": "DRUELLE", "coordonnees_gps": [44.3677869063, 2.531363607]}, "geometry": {"type": "Point", "coordinates": [2.531363607, 44.3677869063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e919d1f01a45d097c98410db03b4a394d031b158", "fields": {"nom_de_la_commune": "ESPALION", "libell_d_acheminement": "ESPALION", "code_postal": "12500", "coordonnees_gps": [44.5270610356, 2.81719827673], "code_commune_insee": "12096"}, "geometry": {"type": "Point", "coordinates": [2.81719827673, 44.5270610356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a241ff893509dfa2488ac63e0329f131ab5b7ec", "fields": {"nom_de_la_commune": "ESTAING", "libell_d_acheminement": "ESTAING", "code_postal": "12190", "coordonnees_gps": [44.5757488453, 2.68710158175], "code_commune_insee": "12098"}, "geometry": {"type": "Point", "coordinates": [2.68710158175, 44.5757488453]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d233b81e8d4b3c7171ca5242f550532cf429262", "fields": {"nom_de_la_commune": "FLAGNAC", "libell_d_acheminement": "FLAGNAC", "code_postal": "12300", "coordonnees_gps": [44.5947922935, 2.27515362111], "code_commune_insee": "12101"}, "geometry": {"type": "Point", "coordinates": [2.27515362111, 44.5947922935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43203882bc61d95fb743d81c5021792a7c88e768", "fields": {"nom_de_la_commune": "FOISSAC", "libell_d_acheminement": "FOISSAC", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12104"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57604ef3c5199eaf96b3b9a1cf2020ae8e5b38c3", "fields": {"nom_de_la_commune": "L HOSPITALET DU LARZAC", "libell_d_acheminement": "L HOSPITALET DU LARZAC", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12115"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bc8104efa8762dec992e419ee759725a739fec", "fields": {"nom_de_la_commune": "HUPARLAC", "libell_d_acheminement": "HUPARLAC", "code_postal": "12460", "coordonnees_gps": [44.7074104935, 2.68829666871], "code_commune_insee": "12116"}, "geometry": {"type": "Point", "coordinates": [2.68829666871, 44.7074104935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0a9b4cab24512fdda4d7069f2fc863f3cd17998", "fields": {"nom_de_la_commune": "ST JUIRE CHAMPGILLON", "libell_d_acheminement": "ST JUIRE CHAMPGILLON", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85235"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b2ead44eac38f4c9a9f07a1d439e3bc676ab6f", "fields": {"nom_de_la_commune": "ST PAUL EN PAREDS", "libell_d_acheminement": "ST PAUL EN PAREDS", "code_postal": "85500", "coordonnees_gps": [46.8741028574, -1.03230822267], "code_commune_insee": "85259"}, "geometry": {"type": "Point", "coordinates": [-1.03230822267, 46.8741028574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e835f680634abd284960e94f9d6f0b3cb646f6d9", "fields": {"nom_de_la_commune": "STE PEXINE", "libell_d_acheminement": "STE PEXINE", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85261"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc145183cfbfd603f67c06fbbd2f7b724637e232", "fields": {"nom_de_la_commune": "ST URBAIN", "libell_d_acheminement": "ST URBAIN", "code_postal": "85230", "coordonnees_gps": [46.9369632993, -2.01322224177], "code_commune_insee": "85273"}, "geometry": {"type": "Point", "coordinates": [-2.01322224177, 46.9369632993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80705582db5ab8cfe45f3915c57cb4e0ea916a25", "fields": {"nom_de_la_commune": "ST VINCENT STERLANGES", "libell_d_acheminement": "ST VINCENT STERLANGES", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85276"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07378a1b1399ddd5a2a4ff6037697b569eafc0c8", "fields": {"nom_de_la_commune": "SALLERTAINE", "libell_d_acheminement": "SALLERTAINE", "code_postal": "85300", "coordonnees_gps": [46.8368087633, -1.89265677262], "code_commune_insee": "85280"}, "geometry": {"type": "Point", "coordinates": [-1.89265677262, 46.8368087633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbab6e0cc03fa8e6694f96898e7de95a2a7ca26e", "fields": {"nom_de_la_commune": "TALLUD STE GEMME", "libell_d_acheminement": "TALLUD STE GEMME", "code_postal": "85390", "coordonnees_gps": [46.6728627352, -0.866891813869], "code_commune_insee": "85287"}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f2ef8e44245a739140eb5c09026def01968a978", "fields": {"nom_de_la_commune": "THIRE", "libell_d_acheminement": "THIRE", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85290"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "672df6ddc0bc402ea63dabf8bed9bb8053c54a6e", "fields": {"nom_de_la_commune": "THOUARSAIS BOUILDROUX", "libell_d_acheminement": "THOUARSAIS BOUILDROUX", "code_postal": "85410", "coordonnees_gps": [46.5977381891, -0.875564546454], "code_commune_insee": "85292"}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85fd5dc09de1eab2b8a21574f7796e383a556a62", "fields": {"nom_de_la_commune": "TIFFAUGES", "libell_d_acheminement": "TIFFAUGES", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85293"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d62918d365f130f3d403d62353c349845b4552", "fields": {"nom_de_la_commune": "VELLUIRE", "libell_d_acheminement": "VELLUIRE", "code_postal": "85770", "coordonnees_gps": [46.3688776738, -0.891505234043], "code_commune_insee": "85299"}, "geometry": {"type": "Point", "coordinates": [-0.891505234043, 46.3688776738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1845946e9930de3a289b388a76e33494dd7b7f81", "fields": {"nom_de_la_commune": "LA VERRIE", "libell_d_acheminement": "LA VERRIE", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85302"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "729a4956eb1ca96bcfc4c182a71acc5b2a490814", "fields": {"nom_de_la_commune": "VOUVANT", "libell_d_acheminement": "VOUVANT", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85305"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e06912f0fec76744d295091a89cee3b16344f73", "fields": {"nom_de_la_commune": "ARCAY", "libell_d_acheminement": "ARCAY", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86008"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21ecb8e9dc98c8da4632ee1ba2e8b2a896074baf", "fields": {"nom_de_la_commune": "ASLONNES", "libell_d_acheminement": "ASLONNES", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86010"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "389f29ee255945d6331b37e8678d4072f1e6a7cd", "fields": {"nom_de_la_commune": "ASNOIS", "libell_d_acheminement": "ASNOIS", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86012"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48dddfc288e4ca6bedfabee318e3ec4a14ad1228", "fields": {"nom_de_la_commune": "AULNAY", "libell_d_acheminement": "AULNAY", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86013"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9284b3f7a5c1f2632c0c13e17397fc0b88aa3a3", "fields": {"nom_de_la_commune": "AVAILLES EN CHATELLERAULT", "libell_d_acheminement": "AVAILLES EN CHATELLERAULT", "code_postal": "86530", "coordonnees_gps": [46.7647730786, 0.524858476534], "code_commune_insee": "86014"}, "geometry": {"type": "Point", "coordinates": [0.524858476534, 46.7647730786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d24a2444d18cbaaec7b16e007a0bf752e900310", "fields": {"nom_de_la_commune": "AVAILLES LIMOUZINE", "libell_d_acheminement": "AVAILLES LIMOUZINE", "code_postal": "86460", "coordonnees_gps": [46.1382827455, 0.581140891207], "code_commune_insee": "86015"}, "geometry": {"type": "Point", "coordinates": [0.581140891207, 46.1382827455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e7806bf992268e98e039e8da75a795412d62a2", "fields": {"nom_de_la_commune": "BELLEFONDS", "libell_d_acheminement": "BELLEFONDS", "code_postal": "86210", "coordonnees_gps": [46.684748794, 0.605467438883], "code_commune_insee": "86020"}, "geometry": {"type": "Point", "coordinates": [0.605467438883, 46.684748794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92305febf6a628464c3b2ffc109ac01021692d63", "fields": {"nom_de_la_commune": "CELLE LEVESCAULT", "libell_d_acheminement": "CELLE LEVESCAULT", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86045"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "344601426b427328f370ce80035ad6e985b8bbc5", "fields": {"nom_de_la_commune": "CHABOURNAY", "libell_d_acheminement": "CHABOURNAY", "code_postal": "86380", "coordonnees_gps": [46.7375179238, 0.3291987023], "code_commune_insee": "86048"}, "geometry": {"type": "Point", "coordinates": [0.3291987023, 46.7375179238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60e14e3e1e54803100c8e4dcb142d853b49071c9", "fields": {"nom_de_la_commune": "CHALANDRAY", "libell_d_acheminement": "CHALANDRAY", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86050"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a65c557097e5df36caa00c3fb04f0f00a21737f3", "fields": {"nom_de_la_commune": "CHAMPNIERS", "libell_d_acheminement": "CHAMPNIERS", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86054"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6398e4444b4158331b5677b9830da49b71c5ff0c", "fields": {"nom_de_la_commune": "LA CHAPELLE BATON", "libell_d_acheminement": "LA CHAPELLE BATON", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86055"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a210f8eebac1df5979ffded592a4b26aef434b", "fields": {"nom_de_la_commune": "CHATEAU LARCHER", "libell_d_acheminement": "CHATEAU LARCHER", "code_postal": "86370", "coordonnees_gps": [46.4325277487, 0.249386615442], "code_commune_insee": "86065"}, "geometry": {"type": "Point", "coordinates": [0.249386615442, 46.4325277487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492d8d7660847631ae3db6935dfe834e734318fb", "fields": {"code_postal": "86100", "code_commune_insee": "86066", "libell_d_acheminement": "CHATELLERAULT", "ligne_5": "TARGE", "nom_de_la_commune": "CHATELLERAULT", "coordonnees_gps": [46.825162468, 0.575853305257]}, "geometry": {"type": "Point", "coordinates": [0.575853305257, 46.825162468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faaa1892e0634b06687abc7772b9c6a7304cb5dd", "fields": {"nom_de_la_commune": "CHATILLON", "libell_d_acheminement": "CHATILLON", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86067"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90d82b6a22b9e040e26babea63704848b4da6060", "fields": {"nom_de_la_commune": "CISSE", "libell_d_acheminement": "CISSE", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86076"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4abd13cda3ebf2b9950ec63a081da9cd083bfbbb", "fields": {"nom_de_la_commune": "LA ROCHE RIGAULT", "libell_d_acheminement": "LA ROCHE RIGAULT", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86079"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dcf82b22f5c1a8281afb955878be3afa105b410", "fields": {"nom_de_la_commune": "COLOMBIERS", "libell_d_acheminement": "COLOMBIERS", "code_postal": "86490", "coordonnees_gps": [46.761526271, 0.437525425166], "code_commune_insee": "86081"}, "geometry": {"type": "Point", "coordinates": [0.437525425166, 46.761526271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc4aee43b7a5868c9504f2a72612c5b51556c72c", "fields": {"nom_de_la_commune": "COUSSAY", "libell_d_acheminement": "COUSSAY", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86085"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57dcc63f0125ac7d10ef47777d04f9ed4694f824", "fields": {"nom_de_la_commune": "CUHON", "libell_d_acheminement": "CUHON", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86089"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98c8833f4d0cb87fd65500522e286e314958dfa9", "fields": {"nom_de_la_commune": "GENOUILLE", "libell_d_acheminement": "GENOUILLE", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86104"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "996b985870cd177679f6b7d01f78e9b853b54b5f", "fields": {"code_postal": "86110", "code_commune_insee": "86108", "libell_d_acheminement": "LA GRIMAUDIERE", "ligne_5": "VERGER SUR DIVE", "nom_de_la_commune": "LA GRIMAUDIERE", "coordonnees_gps": [46.7882401034, 0.151168939144]}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb007eac6708892c43df5c0ba705c187410a5009", "fields": {"code_postal": "86330", "code_commune_insee": "86108", "libell_d_acheminement": "LA GRIMAUDIERE", "ligne_5": "NOTRE DAME D OR", "nom_de_la_commune": "LA GRIMAUDIERE", "coordonnees_gps": [46.8727701949, 0.0622118082158]}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "474d53e58944d328aef6fc842e5ca5dc3a686875", "fields": {"nom_de_la_commune": "ITEUIL", "libell_d_acheminement": "ITEUIL", "code_postal": "86240", "coordonnees_gps": [46.5120250661, 0.298942746534], "code_commune_insee": "86113"}, "geometry": {"type": "Point", "coordinates": [0.298942746534, 46.5120250661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "935be368317a4c0dc2bc8847d9ba21b63f7013b1", "fields": {"nom_de_la_commune": "JARDRES", "libell_d_acheminement": "JARDRES", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86114"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee3a054d876cee67b920bee4435d64ef2dd95ab", "fields": {"nom_de_la_commune": "JAUNAY CLAN", "libell_d_acheminement": "JAUNAY CLAN", "code_postal": "86130", "coordonnees_gps": [46.6873283536, 0.421965737169], "code_commune_insee": "86115"}, "geometry": {"type": "Point", "coordinates": [0.421965737169, 46.6873283536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac0a32796bc387d1900d7451f369e46ca8f4e40f", "fields": {"nom_de_la_commune": "JOUSSE", "libell_d_acheminement": "JOUSSE", "code_postal": "86350", "coordonnees_gps": [46.260748514, 0.50964665142], "code_commune_insee": "86119"}, "geometry": {"type": "Point", "coordinates": [0.50964665142, 46.260748514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81eeb11d2fa457e1543bf792ccd46415959c5573", "fields": {"nom_de_la_commune": "LATHUS ST REMY", "libell_d_acheminement": "LATHUS ST REMY", "code_postal": "86390", "coordonnees_gps": [46.3309224625, 0.955276450825], "code_commune_insee": "86120"}, "geometry": {"type": "Point", "coordinates": [0.955276450825, 46.3309224625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30e3635cb1d54d748bdafc85ea90dc792bfe0a6", "fields": {"nom_de_la_commune": "LEIGNE SUR USSEAU", "libell_d_acheminement": "LEIGNE SUR USSEAU", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86127"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "942f379fd7cd33c0990743e68342b893d89fb2ab", "fields": {"nom_de_la_commune": "LEUGNY", "libell_d_acheminement": "LEUGNY", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86130"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afa3e43398386308e8dc2311b70592c75938077d", "fields": {"nom_de_la_commune": "MAGNE", "libell_d_acheminement": "MAGNE", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86141"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe922441d01686f3be435f49db622869011ab3e7", "fields": {"nom_de_la_commune": "MAIRE", "libell_d_acheminement": "MAIRE", "code_postal": "86270", "coordonnees_gps": [46.8121314624, 0.753430834935], "code_commune_insee": "86143"}, "geometry": {"type": "Point", "coordinates": [0.753430834935, 46.8121314624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "280eef38d60dc3e56f3a5e93806a4c214c8f65e8", "fields": {"nom_de_la_commune": "MAISONNEUVE", "libell_d_acheminement": "MAISONNEUVE", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86144"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebbd5d7a33ce91099fed40f4720860f9ca5c5c7", "fields": {"nom_de_la_commune": "MASSOGNES", "libell_d_acheminement": "MASSOGNES", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86150"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c64f946cac13e1eda26ae480916f59210b0dbb0c", "fields": {"nom_de_la_commune": "MAZEROLLES", "libell_d_acheminement": "MAZEROLLES", "code_postal": "86320", "coordonnees_gps": [46.3927181385, 0.726435061295], "code_commune_insee": "86153"}, "geometry": {"type": "Point", "coordinates": [0.726435061295, 46.3927181385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff21c8e687b54980c32f2f965d48d502403c2639", "fields": {"nom_de_la_commune": "MAZEUIL", "libell_d_acheminement": "MAZEUIL", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86154"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0570d6cc9fd2b77507384fbabea7e3108e4a868", "fields": {"nom_de_la_commune": "MESSEME", "libell_d_acheminement": "MESSEME", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86156"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59c94316e1eedd5d2a20eef777da5bd74f1bb811", "fields": {"nom_de_la_commune": "MILLAC", "libell_d_acheminement": "MILLAC", "code_postal": "86150", "coordonnees_gps": [46.2498879507, 0.661977427311], "code_commune_insee": "86159"}, "geometry": {"type": "Point", "coordinates": [0.661977427311, 46.2498879507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25920acde4523f546326af54d40ffdeaf2e0d83b", "fields": {"nom_de_la_commune": "MONTREUIL BONNIN", "libell_d_acheminement": "MONTREUIL BONNIN", "code_postal": "86470", "coordonnees_gps": [46.5459680342, 0.0877138894846], "code_commune_insee": "86166"}, "geometry": {"type": "Point", "coordinates": [0.0877138894846, 46.5459680342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10822eaa43cafbededff0dd8bc7f8c81d5ec1f13", "fields": {"nom_de_la_commune": "MOUTERRE SILLY", "libell_d_acheminement": "MOUTERRE SILLY", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86173"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a86f19ac0ffc3a22194771b276fde1854912f97", "fields": {"nom_de_la_commune": "NAINTRE", "libell_d_acheminement": "NAINTRE", "code_postal": "86530", "coordonnees_gps": [46.7647730786, 0.524858476534], "code_commune_insee": "86174"}, "geometry": {"type": "Point", "coordinates": [0.524858476534, 46.7647730786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f858b54965f8257d8c3467a9c488ccd9c3ee3b47", "fields": {"nom_de_la_commune": "NALLIERS", "libell_d_acheminement": "NALLIERS", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86175"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e97610cf8a6feb535cafb5182c53575111c85d92", "fields": {"nom_de_la_commune": "ORCHES", "libell_d_acheminement": "ORCHES", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86182"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa1efd0829533d7c56642db09ef9e7b22180b9a4", "fields": {"nom_de_la_commune": "OUZILLY", "libell_d_acheminement": "OUZILLY", "code_postal": "86380", "coordonnees_gps": [46.7375179238, 0.3291987023], "code_commune_insee": "86184"}, "geometry": {"type": "Point", "coordinates": [0.3291987023, 46.7375179238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c11c5765a6158003e83d069b93b1d14f9f44600f", "fields": {"nom_de_la_commune": "PAIZAY LE SEC", "libell_d_acheminement": "PAIZAY LE SEC", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86187"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed017f4348e853f3df4f2c64ae526983153eafd7", "fields": {"nom_de_la_commune": "PAYROUX", "libell_d_acheminement": "PAYROUX", "code_postal": "86350", "coordonnees_gps": [46.260748514, 0.50964665142], "code_commune_insee": "86189"}, "geometry": {"type": "Point", "coordinates": [0.50964665142, 46.260748514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db842393cae8e915eb69687b49dd148e38f0fb22", "fields": {"nom_de_la_commune": "RANTON", "libell_d_acheminement": "RANTON", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86205"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0eff092bff4f7100980e691dd1af9cab1519bad", "fields": {"nom_de_la_commune": "ROCHES PREMARIE ANDILLE", "libell_d_acheminement": "ROCHES PREMARIE ANDILLE", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86209"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04c549fdf06961198188f80bcb9f9fd743a9ec6b", "fields": {"nom_de_la_commune": "ROIFFE", "libell_d_acheminement": "ROIFFE", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86210"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb9051b1f16895b3385db20d6befdae3b95b6cd", "fields": {"nom_de_la_commune": "ROMAGNE", "libell_d_acheminement": "ROMAGNE", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86211"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37e5dd710dd837c2383fe708c41c9a68333c8d13", "fields": {"nom_de_la_commune": "ST BENOIT", "libell_d_acheminement": "ST BENOIT", "code_postal": "86280", "coordonnees_gps": [46.5484819543, 0.353353502502], "code_commune_insee": "86214"}, "geometry": {"type": "Point", "coordinates": [0.353353502502, 46.5484819543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f9356d1ae6034f452f20cff95f65c2731ef2323", "fields": {"nom_de_la_commune": "ST CLAIR", "libell_d_acheminement": "ST CLAIR", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86218"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b600dcf9c8f53735e9f3dadbdd2b43697cb6b4d", "fields": {"nom_de_la_commune": "ST CYR", "libell_d_acheminement": "ST CYR", "code_postal": "86130", "coordonnees_gps": [46.6873283536, 0.421965737169], "code_commune_insee": "86219"}, "geometry": {"type": "Point", "coordinates": [0.421965737169, 46.6873283536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15e18e6283abd9bcd1ebbf6563e2cf219f27364e", "fields": {"nom_de_la_commune": "ST GAUDENT", "libell_d_acheminement": "ST GAUDENT", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86220"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152fa267075414cbcb3bf5ee11a7f32bd8c063be", "fields": {"nom_de_la_commune": "ST GEORGES LES BAILLARGEAUX", "libell_d_acheminement": "ST GEORGES LES BAILLARGEAUX", "code_postal": "86130", "coordonnees_gps": [46.6873283536, 0.421965737169], "code_commune_insee": "86222"}, "geometry": {"type": "Point", "coordinates": [0.421965737169, 46.6873283536]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "086056a70b1c02eb1651f82a03b48f1d54c831f7", "fields": {"nom_de_la_commune": "ST JEAN DE SAUVES", "libell_d_acheminement": "ST JEAN DE SAUVES", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86225"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0326fb29cf5da992f982bd6d572ea917488a5c51", "fields": {"nom_de_la_commune": "ST PIERRE DE MAILLE", "libell_d_acheminement": "ST PIERRE DE MAILLE", "code_postal": "86260", "coordonnees_gps": [46.6858016329, 0.823387045612], "code_commune_insee": "86236"}, "geometry": {"type": "Point", "coordinates": [0.823387045612, 46.6858016329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ee6516bb0324066f0957b425e5149d3c181658", "fields": {"nom_de_la_commune": "ST PIERRE D EXIDEUIL", "libell_d_acheminement": "ST PIERRE D EXIDEUIL", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86237"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "742ab781ae17e85ba53c9f4924714162de4ee6f9", "fields": {"nom_de_la_commune": "SAMMARCOLLES", "libell_d_acheminement": "SAMMARCOLLES", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86252"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "439ff51caa543fd9f92671f224fde345cbc35e7f", "fields": {"nom_de_la_commune": "USSON DU POITOU", "libell_d_acheminement": "USSON DU POITOU", "code_postal": "86350", "coordonnees_gps": [46.260748514, 0.50964665142], "code_commune_insee": "86276"}, "geometry": {"type": "Point", "coordinates": [0.50964665142, 46.260748514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a426f4321e0ce0502baa383b875c54d66b8e4c4", "fields": {"nom_de_la_commune": "VELLECHES", "libell_d_acheminement": "VELLECHES", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86280"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "510f895feead607f6e0e0cd39deb62b6c10f290d", "fields": {"nom_de_la_commune": "VOULON", "libell_d_acheminement": "VOULON", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86296"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791310938f8e1f00410f36ad990ab499dc654c44", "fields": {"nom_de_la_commune": "VOUNEUIL SOUS BIARD", "libell_d_acheminement": "VOUNEUIL SOUS BIARD", "code_postal": "86580", "coordonnees_gps": [46.580240949, 0.276027039382], "code_commune_insee": "86297"}, "geometry": {"type": "Point", "coordinates": [0.276027039382, 46.580240949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acb15a54172cee4f1c6ef04ff63aeb0464f83efe", "fields": {"nom_de_la_commune": "VOUNEUIL SUR VIENNE", "libell_d_acheminement": "VOUNEUIL SUR VIENNE", "code_postal": "86210", "coordonnees_gps": [46.684748794, 0.605467438883], "code_commune_insee": "86298"}, "geometry": {"type": "Point", "coordinates": [0.605467438883, 46.684748794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af845579837626876e4d7ece59c38f882fb47d8c", "fields": {"nom_de_la_commune": "AIXE SUR VIENNE", "libell_d_acheminement": "AIXE SUR VIENNE", "code_postal": "87700", "coordonnees_gps": [45.7952355445, 1.1142799872], "code_commune_insee": "87001"}, "geometry": {"type": "Point", "coordinates": [1.1142799872, 45.7952355445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ef6bc9b10ab39287cd8f1f099ec4b0cf9f72f1f", "fields": {"nom_de_la_commune": "AUGNE", "libell_d_acheminement": "AUGNE", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87004"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd2c34531ec91b80e97b8fb393826cb2444e8ec", "fields": {"nom_de_la_commune": "AZAT LE RIS", "libell_d_acheminement": "AZAT LE RIS", "code_postal": "87360", "coordonnees_gps": [46.3220927277, 1.12131601301], "code_commune_insee": "87006"}, "geometry": {"type": "Point", "coordinates": [1.12131601301, 46.3220927277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ceb6af857b2b6540f73a03a5b56d44032b1d02", "fields": {"nom_de_la_commune": "BEYNAC", "libell_d_acheminement": "BEYNAC", "code_postal": "87700", "coordonnees_gps": [45.7952355445, 1.1142799872], "code_commune_insee": "87015"}, "geometry": {"type": "Point", "coordinates": [1.1142799872, 45.7952355445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1f6d11ad3cdd0035b989afcfbacab49442e674c", "fields": {"nom_de_la_commune": "BOSMIE L AIGUILLE", "libell_d_acheminement": "BOSMIE L AIGUILLE", "code_postal": "87110", "coordonnees_gps": [45.746684922, 1.26292425158], "code_commune_insee": "87021"}, "geometry": {"type": "Point", "coordinates": [1.26292425158, 45.746684922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e20463262348986ea05c994d60b1251e30024b0d", "fields": {"nom_de_la_commune": "LE BUIS", "libell_d_acheminement": "LE BUIS", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87023"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46aabd52675e497c08a454d156072eb0b6737403", "fields": {"nom_de_la_commune": "BUJALEUF", "libell_d_acheminement": "BUJALEUF", "code_postal": "87460", "coordonnees_gps": [45.8082304662, 1.65843592046], "code_commune_insee": "87024"}, "geometry": {"type": "Point", "coordinates": [1.65843592046, 45.8082304662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5707d06d65486c84d26377bae4ee4113afb517d7", "fields": {"nom_de_la_commune": "LES CARS", "libell_d_acheminement": "LES CARS", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87029"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f527b11a211a5c1c07ece9c036f86d99133e69", "fields": {"nom_de_la_commune": "CHAMPSAC", "libell_d_acheminement": "CHAMPSAC", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87036"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58492c0199eb63f5d7d07f3742bfe87b365d2167", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTBRANDEIX", "libell_d_acheminement": "LA CHAPELLE MONTBRANDEIX", "code_postal": "87440", "coordonnees_gps": [45.6750304013, 0.76861145842], "code_commune_insee": "87037"}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bda64bc69d6afea51b7a3c4482f5e9a22a9bf308", "fields": {"nom_de_la_commune": "LE CHATENET EN DOGNON", "libell_d_acheminement": "LE CHATENET EN DOGNON", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87042"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f37e0557e46e8031bbf84bf7c5f5d7d64310f55f", "fields": {"nom_de_la_commune": "COMPREIGNAC", "libell_d_acheminement": "COMPREIGNAC", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87047"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36865e0e599d87fad7d40ca64e39f1447467cb3c", "fields": {"nom_de_la_commune": "LA CROIX SUR GARTEMPE", "libell_d_acheminement": "LA CROIX SUR GARTEMPE", "code_postal": "87210", "coordonnees_gps": [46.2183955334, 1.04069984873], "code_commune_insee": "87052"}, "geometry": {"type": "Point", "coordinates": [1.04069984873, 46.2183955334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f20b85108e5b18451c629ebdb33d1e7374aba2", "fields": {"nom_de_la_commune": "DOMPS", "libell_d_acheminement": "DOMPS", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87058"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a25783767aae381125624eea2b335ece57d748", "fields": {"nom_de_la_commune": "LE DORAT", "libell_d_acheminement": "LE DORAT", "code_postal": "87210", "coordonnees_gps": [46.2183955334, 1.04069984873], "code_commune_insee": "87059"}, "geometry": {"type": "Point", "coordinates": [1.04069984873, 46.2183955334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e7be3bfde37a7407ca7d275291356d1f8f4e92b", "fields": {"nom_de_la_commune": "EYBOULEUF", "libell_d_acheminement": "EYBOULEUF", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87062"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c279813f142bbbe54f315e2cd1b715f9867126c", "fields": {"nom_de_la_commune": "EYJEAUX", "libell_d_acheminement": "EYJEAUX", "code_postal": "87220", "coordonnees_gps": [45.7856210567, 1.35360552581], "code_commune_insee": "87063"}, "geometry": {"type": "Point", "coordinates": [1.35360552581, 45.7856210567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5f5cef1a5cec125d9eaf108bdc091e282c815c6", "fields": {"nom_de_la_commune": "LADIGNAC LE LONG", "libell_d_acheminement": "LADIGNAC LE LONG", "code_postal": "87500", "coordonnees_gps": [45.5304259487, 1.21634245482], "code_commune_insee": "87082"}, "geometry": {"type": "Point", "coordinates": [1.21634245482, 45.5304259487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66ffa4635ce57a3a0da8c78943c36884726dd1b4", "fields": {"nom_de_la_commune": "LUSSAC LES EGLISES", "libell_d_acheminement": "LUSSAC LES EGLISES", "code_postal": "87360", "coordonnees_gps": [46.3220927277, 1.12131601301], "code_commune_insee": "87087"}, "geometry": {"type": "Point", "coordinates": [1.12131601301, 46.3220927277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ebc85ecb3d3616fb9e0e3f7c4ac12acdb4079a", "fields": {"nom_de_la_commune": "MONTROL SENARD", "libell_d_acheminement": "MONTROL SENARD", "code_postal": "87330", "coordonnees_gps": [46.112617356, 0.896746440713], "code_commune_insee": "87100"}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c864701d6809e850d6b1ea4849ceeb448f2beaa", "fields": {"nom_de_la_commune": "MORTEMART", "libell_d_acheminement": "MORTEMART", "code_postal": "87330", "coordonnees_gps": [46.112617356, 0.896746440713], "code_commune_insee": "87101"}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693f7d4b82a78fa96331a27a8e5093f77caf88c2", "fields": {"nom_de_la_commune": "LE PALAIS SUR VIENNE", "libell_d_acheminement": "LE PALAIS SUR VIENNE", "code_postal": "87410", "coordonnees_gps": [45.8735475592, 1.3247561842], "code_commune_insee": "87113"}, "geometry": {"type": "Point", "coordinates": [1.3247561842, 45.8735475592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fe6da2c509328ae45e879f15dd051b8e4b36108", "fields": {"nom_de_la_commune": "PANAZOL", "libell_d_acheminement": "PANAZOL", "code_postal": "87350", "coordonnees_gps": [45.8410585352, 1.32364784585], "code_commune_insee": "87114"}, "geometry": {"type": "Point", "coordinates": [1.32364784585, 45.8410585352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd565fb47310b54ddb0a221ee06b1061694e5f89", "fields": {"code_postal": "61570", "code_commune_insee": "61375", "libell_d_acheminement": "BOISCHAMPRE", "ligne_5": "VRIGNY", "nom_de_la_commune": "BOISCHAMPRE", "coordonnees_gps": [48.6574688891, 0.0273677647898]}, "geometry": {"type": "Point", "coordinates": [0.0273677647898, 48.6574688891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c3eb21fec7be7f8754a442c85fc47b24de0503e", "fields": {"nom_de_la_commune": "ST DENIS SUR SARTHON", "libell_d_acheminement": "ST DENIS SUR SARTHON", "code_postal": "61420", "coordonnees_gps": [48.4829812527, -0.0377038824512], "code_commune_insee": "61382"}, "geometry": {"type": "Point", "coordinates": [-0.0377038824512, 48.4829812527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "110eab863dfab8197c746b5689fe245c07bb20d6", "fields": {"nom_de_la_commune": "ST GEORGES DES GROSEILLERS", "libell_d_acheminement": "ST GEORGES DES GROSEILLERS", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61391"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e0bd065847b146b785ca2f7f98edd1ef42ec11b", "fields": {"nom_de_la_commune": "ST HILAIRE LA GERARD", "libell_d_acheminement": "ST HILAIRE LA GERARD", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61403"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04f1494cec2551256632ade07f24a98ef7ecd5b4", "fields": {"nom_de_la_commune": "ST HILAIRE LE CHATEL", "libell_d_acheminement": "ST HILAIRE LE CHATEL", "code_postal": "61400", "coordonnees_gps": [48.4945116635, 0.586458131238], "code_commune_insee": "61404"}, "geometry": {"type": "Point", "coordinates": [0.586458131238, 48.4945116635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "244e86d42d3f6a9e3138bf835c147125d38268c9", "fields": {"nom_de_la_commune": "STE HONORINE LA GUILLAUME", "libell_d_acheminement": "STE HONORINE LA GUILLAUME", "code_postal": "61210", "coordonnees_gps": [48.7855684657, -0.252751523402], "code_commune_insee": "61408"}, "geometry": {"type": "Point", "coordinates": [-0.252751523402, 48.7855684657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e63597c9f257357d8ac342b79c192c6e779ad4c", "fields": {"nom_de_la_commune": "ST MARS D EGRENNE", "libell_d_acheminement": "ST MARS D EGRENNE", "code_postal": "61350", "coordonnees_gps": [48.5245489295, -0.754028854445], "code_commune_insee": "61421"}, "geometry": {"type": "Point", "coordinates": [-0.754028854445, 48.5245489295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87f640ad53680ebefc184943ea61b9bdb918fa9b", "fields": {"nom_de_la_commune": "ST MARTIN DU VIEUX BELLEME", "libell_d_acheminement": "ST MARTIN DU VIEUX BELLEME", "code_postal": "61130", "coordonnees_gps": [48.3285954203, 0.552655257465], "code_commune_insee": "61426"}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa049422084299d191d1527cd625361cccac47ca", "fields": {"nom_de_la_commune": "STE OPPORTUNE", "libell_d_acheminement": "STE OPPORTUNE", "code_postal": "61100", "coordonnees_gps": [48.7672025982, -0.554045579271], "code_commune_insee": "61436"}, "geometry": {"type": "Point", "coordinates": [-0.554045579271, 48.7672025982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffa83c11e841dd7cb790a2f01d12619e31962c43", "fields": {"nom_de_la_commune": "ST OUEN DE SECHEROUVRE", "libell_d_acheminement": "ST OUEN DE SECHEROUVRE", "code_postal": "61560", "coordonnees_gps": [48.5537454503, 0.466186712804], "code_commune_insee": "61438"}, "geometry": {"type": "Point", "coordinates": [0.466186712804, 48.5537454503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6ac207ba9a048e83453da069d88bebce2feac6", "fields": {"nom_de_la_commune": "ST OUEN SUR ITON", "libell_d_acheminement": "ST OUEN SUR ITON", "code_postal": "61300", "coordonnees_gps": [48.7504901636, 0.660134784459], "code_commune_insee": "61440"}, "geometry": {"type": "Point", "coordinates": [0.660134784459, 48.7504901636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f18420e4a84a9e3ea2724b70b6734e12dd79338", "fields": {"nom_de_la_commune": "ST PIERRE D ENTREMONT", "libell_d_acheminement": "ST PIERRE D ENTREMONT", "code_postal": "61800", "coordonnees_gps": [48.7506646521, -0.721947401211], "code_commune_insee": "61445"}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41c122b2cad7baa0abe264d96f78b74d9a275bb6", "fields": {"nom_de_la_commune": "ST PIERRE DU REGARD", "libell_d_acheminement": "ST PIERRE DU REGARD", "code_postal": "61790", "coordonnees_gps": [48.8337910977, -0.541339755548], "code_commune_insee": "61447"}, "geometry": {"type": "Point", "coordinates": [-0.541339755548, 48.8337910977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c129f66135380b1fbea0cc2154b1e5051b47aff", "fields": {"nom_de_la_commune": "STE SCOLASSE SUR SARTHE", "libell_d_acheminement": "STE SCOLASSE SUR SARTHE", "code_postal": "61170", "coordonnees_gps": [48.5356113416, 0.35155128449], "code_commune_insee": "61454"}, "geometry": {"type": "Point", "coordinates": [0.35155128449, 48.5356113416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5999a6ad9088ea77639ffd8515e52792acd0339", "fields": {"nom_de_la_commune": "SAIRES LA VERRERIE", "libell_d_acheminement": "SAIRES LA VERRERIE", "code_postal": "61220", "coordonnees_gps": [48.6912403001, -0.398336415364], "code_commune_insee": "61459"}, "geometry": {"type": "Point", "coordinates": [-0.398336415364, 48.6912403001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6631e3988f943646f02a843263b8d2d443f7b8e", "fields": {"code_postal": "61600", "code_commune_insee": "61463", "libell_d_acheminement": "LES MONTS D ANDAINE", "ligne_5": "ST MAURICE DU DESERT", "nom_de_la_commune": "LES MONTS D ANDAINE", "coordonnees_gps": [48.5956941307, -0.336692342986]}, "geometry": {"type": "Point", "coordinates": [-0.336692342986, 48.5956941307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58dbe43e48e92ea127aeb8b77aa7283d30ee20e5", "fields": {"nom_de_la_commune": "SEVRAI", "libell_d_acheminement": "SEVRAI", "code_postal": "61150", "coordonnees_gps": [48.689271735, -0.160878678155], "code_commune_insee": "61473"}, "geometry": {"type": "Point", "coordinates": [-0.160878678155, 48.689271735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2055485dab53060e737ffbb6d901d35b76fa4da0", "fields": {"nom_de_la_commune": "SOLIGNY LA TRAPPE", "libell_d_acheminement": "SOLIGNY LA TRAPPE", "code_postal": "61380", "coordonnees_gps": [48.6465591263, 0.503213042824], "code_commune_insee": "61475"}, "geometry": {"type": "Point", "coordinates": [0.503213042824, 48.6465591263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85bdcaaed8eb30c405335f0d41b29009784ad6a0", "fields": {"nom_de_la_commune": "TANVILLE", "libell_d_acheminement": "TANVILLE", "code_postal": "61500", "coordonnees_gps": [48.5847584341, 0.153667553772], "code_commune_insee": "61480"}, "geometry": {"type": "Point", "coordinates": [0.153667553772, 48.5847584341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd6dfce20211bab6b972270ded8cf7ebdec60e5", "fields": {"nom_de_la_commune": "TESSE FROULAY", "libell_d_acheminement": "TESSE FROULAY", "code_postal": "61410", "coordonnees_gps": [48.5523953273, -0.396121387013], "code_commune_insee": "61482"}, "geometry": {"type": "Point", "coordinates": [-0.396121387013, 48.5523953273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a60da1e420a7365cc17b304ab9f487944cef0eb", "fields": {"code_postal": "61130", "code_commune_insee": "61484", "libell_d_acheminement": "VAL AU PERCHE", "ligne_5": "GEMAGES", "nom_de_la_commune": "VAL AU PERCHE", "coordonnees_gps": [48.3285954203, 0.552655257465]}, "geometry": {"type": "Point", "coordinates": [0.552655257465, 48.3285954203]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "940f30d7081d2a42642196f755cbda209775bff4", "fields": {"code_postal": "61800", "code_commune_insee": "61486", "libell_d_acheminement": "TINCHEBRAY BOCAGE", "ligne_5": "LARCHAMP", "nom_de_la_commune": "TINCHEBRAY BOCAGE", "coordonnees_gps": [48.7506646521, -0.721947401211]}, "geometry": {"type": "Point", "coordinates": [-0.721947401211, 48.7506646521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ba33aa9606b38ae774e6a8562b078359148339", "fields": {"nom_de_la_commune": "TORCHAMP", "libell_d_acheminement": "TORCHAMP", "code_postal": "61330", "coordonnees_gps": [48.5202783735, -0.60354646707], "code_commune_insee": "61487"}, "geometry": {"type": "Point", "coordinates": [-0.60354646707, 48.5202783735]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ad9a8fba287e0fb56f271e72d5b5a21a6dcf3a", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "AUTHEUIL", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3e7a3c80abd1b0878eb969ba47dfe12f7f488d", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "BIVILLIERS", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "900c11f5d6bd5f178e1f0987b94c7c6110218319", "fields": {"code_postal": "61190", "code_commune_insee": "61491", "libell_d_acheminement": "TOUROUVRE AU PERCHE", "ligne_5": "LIGNEROLLES", "nom_de_la_commune": "TOUROUVRE AU PERCHE", "coordonnees_gps": [48.6388542331, 0.724411642307]}, "geometry": {"type": "Point", "coordinates": [0.724411642307, 48.6388542331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b804011a6ebfc96dc140dccb29372ac562d8f178", "fields": {"nom_de_la_commune": "LA TRINITE DES LAITIERS", "libell_d_acheminement": "LA TRINITE DES LAITIERS", "code_postal": "61230", "coordonnees_gps": [48.8021737548, 0.315026116316], "code_commune_insee": "61493"}, "geometry": {"type": "Point", "coordinates": [0.315026116316, 48.8021737548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f91c02a358a41430f9a190f16bc17f416dd439f7", "fields": {"nom_de_la_commune": "VALFRAMBERT", "libell_d_acheminement": "VALFRAMBERT", "code_postal": "61250", "coordonnees_gps": [48.4708532437, 0.079807061748], "code_commune_insee": "61497"}, "geometry": {"type": "Point", "coordinates": [0.079807061748, 48.4708532437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "463b017e6ef18807d5e06fa6ac2d152aba81065a", "fields": {"nom_de_la_commune": "AFFRINGUES", "libell_d_acheminement": "AFFRINGUES", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62010"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76a3ba2b5dbade3010eca7262eb5274d3b504962", "fields": {"nom_de_la_commune": "AGNIERES", "libell_d_acheminement": "AGNIERES", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62012"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b4aa8752e5e23c71d6277de40583fbed7e7d8e7", "fields": {"nom_de_la_commune": "AGNY", "libell_d_acheminement": "AGNY", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62013"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e9e50532f0fb60ba0a2bc65678820bfe3df36d", "fields": {"nom_de_la_commune": "AIRON NOTRE DAME", "libell_d_acheminement": "AIRON NOTRE DAME", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62015"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29f40da79df0e31dd910a5cd7188fa301aafb53", "fields": {"nom_de_la_commune": "AIX NOULETTE", "libell_d_acheminement": "AIX NOULETTE", "code_postal": "62160", "coordonnees_gps": [50.434305501, 2.71988094941], "code_commune_insee": "62019"}, "geometry": {"type": "Point", "coordinates": [2.71988094941, 50.434305501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2c5e258e8bb6a73a2bfdcf101f2543f51bad4fa", "fields": {"nom_de_la_commune": "AMES", "libell_d_acheminement": "AMES", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62028"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84bedeaa9f205d3fcbe1a148ebc0b78d0f93539", "fields": {"nom_de_la_commune": "ANDRES", "libell_d_acheminement": "ANDRES", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62031"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f28a44f1dba3ebfc1e98f83f66b97ed3c9cea820", "fields": {"nom_de_la_commune": "ARDRES", "libell_d_acheminement": "ARDRES", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62038"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94da5020000f8a501d8a54733fdd4153c5f464f6", "fields": {"code_postal": "62610", "code_commune_insee": "62038", "libell_d_acheminement": "ARDRES", "ligne_5": "PONT D ARDRES", "nom_de_la_commune": "ARDRES", "coordonnees_gps": [50.8468659582, 1.97558955191]}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46ddb1f2237666086bd23993cc70e05e29215bf6", "fields": {"nom_de_la_commune": "ARRAS", "libell_d_acheminement": "ARRAS", "code_postal": "62000", "coordonnees_gps": [50.2836206213, 2.74077726899], "code_commune_insee": "62041"}, "geometry": {"type": "Point", "coordinates": [2.74077726899, 50.2836206213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eefb73c349699ed22881e7f03fc1eace5591290b", "fields": {"nom_de_la_commune": "LES ATTAQUES", "libell_d_acheminement": "LES ATTAQUES", "code_postal": "62730", "coordonnees_gps": [50.9324891449, 1.94466017116], "code_commune_insee": "62043"}, "geometry": {"type": "Point", "coordinates": [1.94466017116, 50.9324891449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d7e2abdb3bd1a66acf89203ed1fbcc2f6e81c4f", "fields": {"nom_de_la_commune": "ATTIN", "libell_d_acheminement": "ATTIN", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62044"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc04f1643b6f2146b93da4ea262d0157c13fd8a2", "fields": {"nom_de_la_commune": "AUCHY LES MINES", "libell_d_acheminement": "AUCHY LES MINES", "code_postal": "62138", "coordonnees_gps": [50.5179062037, 2.8111923561], "code_commune_insee": "62051"}, "geometry": {"type": "Point", "coordinates": [2.8111923561, 50.5179062037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f535ae0ff3224e04cbfffee0b4f6318c0326ffa8", "fields": {"nom_de_la_commune": "AUDINGHEN", "libell_d_acheminement": "AUDINGHEN", "code_postal": "62179", "coordonnees_gps": [50.8769884551, 1.66495996056], "code_commune_insee": "62054"}, "geometry": {"type": "Point", "coordinates": [1.66495996056, 50.8769884551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eab4deb4f94acf40c695a143dba56bc09d98241", "fields": {"nom_de_la_commune": "AUDRESSELLES", "libell_d_acheminement": "AUDRESSELLES", "code_postal": "62164", "coordonnees_gps": [50.8206720031, 1.61493156182], "code_commune_insee": "62056"}, "geometry": {"type": "Point", "coordinates": [1.61493156182, 50.8206720031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d0fa0e24a6a4cfa4e78ab9586717c31e9ec8c3", "fields": {"nom_de_la_commune": "AVION", "libell_d_acheminement": "AVION", "code_postal": "62210", "coordonnees_gps": [50.4040022162, 2.8267043766], "code_commune_insee": "62065"}, "geometry": {"type": "Point", "coordinates": [2.8267043766, 50.4040022162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4c9461bc35fc6de2fbd77b53ede9aa53d345469", "fields": {"nom_de_la_commune": "AVROULT", "libell_d_acheminement": "AVROULT", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62067"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38233d52ab7a098244ac21ae00255249419139b9", "fields": {"nom_de_la_commune": "BAILLEULVAL", "libell_d_acheminement": "BAILLEULVAL", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62074"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ddad6fa64b1695dd92f458a46f5af1ca5b864db", "fields": {"nom_de_la_commune": "BAINCTHUN", "libell_d_acheminement": "BAINCTHUN", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62075"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb6b36ddd824f495a96204b84b30224359760e78", "fields": {"nom_de_la_commune": "BAJUS", "libell_d_acheminement": "BAJUS", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62077"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b23c7368c9df2eec7343a8d5f7ae8ac5bedcd075", "fields": {"nom_de_la_commune": "BALINGHEM", "libell_d_acheminement": "BALINGHEM", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62078"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "feab3dc0d6b8382d12b4da3d6ea6101c57b77d89", "fields": {"nom_de_la_commune": "BAVINCOURT", "libell_d_acheminement": "BAVINCOURT", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62086"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea9227bc6ab48bbee481f63cf99c544cd6ba22b6", "fields": {"nom_de_la_commune": "BEAUDRICOURT", "libell_d_acheminement": "BEAUDRICOURT", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62091"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c34768b8791e828065b57412be9760e7705520a0", "fields": {"nom_de_la_commune": "BEAUMERIE ST MARTIN", "libell_d_acheminement": "BEAUMERIE ST MARTIN", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62094"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af7e24b1799a8bd47a90e093c87256e289620cb6", "fields": {"nom_de_la_commune": "BELLONNE", "libell_d_acheminement": "BELLONNE", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62106"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b899ddbdae57d03b07768944852702bcd715edc4", "fields": {"nom_de_la_commune": "BERNEVILLE", "libell_d_acheminement": "BERNEVILLE", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62115"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90e30144469bbe77a790de74da82a4cc4835823", "fields": {"nom_de_la_commune": "BLENDECQUES", "libell_d_acheminement": "BLENDECQUES", "code_postal": "62575", "coordonnees_gps": [50.7082994019, 2.28233236739], "code_commune_insee": "62139"}, "geometry": {"type": "Point", "coordinates": [2.28233236739, 50.7082994019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ceaf6a029ccd0c70e2e04b0a6f44e0aba75a5c", "fields": {"nom_de_la_commune": "BLEQUIN", "libell_d_acheminement": "BLEQUIN", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62140"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1384ace5c887c97f05a2a8f98eebeab9fa4dfb4", "fields": {"nom_de_la_commune": "BOIS BERNARD", "libell_d_acheminement": "BOIS BERNARD", "code_postal": "62320", "coordonnees_gps": [50.389396968, 2.90853721163], "code_commune_insee": "62148"}, "geometry": {"type": "Point", "coordinates": [2.90853721163, 50.389396968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "427fe768bdf2cc1602b453dfa29eea004365ec36", "fields": {"nom_de_la_commune": "BOISJEAN", "libell_d_acheminement": "BOISJEAN", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62150"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4604ff3c065b21a17f07e99fa6f735d41598a56", "fields": {"nom_de_la_commune": "BOISLEUX ST MARC", "libell_d_acheminement": "BOISLEUX ST MARC", "code_postal": "62175", "coordonnees_gps": [50.2052015663, 2.76287210363], "code_commune_insee": "62152"}, "geometry": {"type": "Point", "coordinates": [2.76287210363, 50.2052015663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b647e61a1da0289054632e3ed12b9ffdcfcba165", "fields": {"nom_de_la_commune": "BONNINGUES LES CALAIS", "libell_d_acheminement": "BONNINGUES LES CALAIS", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62156"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a51d68631aa9677629bd6a3091de8df1e09686f5", "fields": {"nom_de_la_commune": "BOUQUEHAULT", "libell_d_acheminement": "BOUQUEHAULT", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62161"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a76bc17158d31cbb467abac44e08ac4aaa13017", "fields": {"nom_de_la_commune": "CALONNE SUR LA LYS", "libell_d_acheminement": "CALONNE SUR LA LYS", "code_postal": "62350", "coordonnees_gps": [50.6043469321, 2.56021109887], "code_commune_insee": "62195"}, "geometry": {"type": "Point", "coordinates": [2.56021109887, 50.6043469321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04d322010770599c42ff8d66b670b2879482c935", "fields": {"nom_de_la_commune": "CAMPAGNE LES BOULONNAIS", "libell_d_acheminement": "CAMPAGNE LES BOULONNAIS", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62202"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9e36af440fef775a52de55ab5bcb28f9e61b853", "fields": {"nom_de_la_commune": "CAMPIGNEULLES LES PETITES", "libell_d_acheminement": "CAMPIGNEULLES LES PETITES", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62207"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac5590cd8887d3bf48ceaece3a08282043224140", "fields": {"nom_de_la_commune": "CANLERS", "libell_d_acheminement": "CANLERS", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62209"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaa7615340acf85afa3b43e3cc4e5f20bf3df570", "fields": {"nom_de_la_commune": "CAPELLE FERMONT", "libell_d_acheminement": "CAPELLE FERMONT", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62211"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63881f887b2dc44eb619ecc47bbab8c3d31966c", "fields": {"nom_de_la_commune": "CAPELLE LES HESDIN", "libell_d_acheminement": "CAPELLE LES HESDIN", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62212"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e3757057603577c93d4115959c2fe2899e68be", "fields": {"nom_de_la_commune": "CAUCOURT", "libell_d_acheminement": "CAUCOURT", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62218"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1d41a7a03005e0aa3748c597fd0d3e7cd4181c", "fields": {"nom_de_la_commune": "CHOCQUES", "libell_d_acheminement": "CHOCQUES", "code_postal": "62920", "coordonnees_gps": [50.5563250564, 2.56747944823], "code_commune_insee": "62224"}, "geometry": {"type": "Point", "coordinates": [2.56747944823, 50.5563250564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df8f9aa3fa82ad5ded1144d507493142224c80b4", "fields": {"nom_de_la_commune": "CONCHIL LE TEMPLE", "libell_d_acheminement": "CONCHIL LE TEMPLE", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62233"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f60418478d29972fc2d577a480726092f68b7b78", "fields": {"nom_de_la_commune": "CORMONT", "libell_d_acheminement": "CORMONT", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62241"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd87d0251661fe5f016c884571afb685a5b73e5", "fields": {"nom_de_la_commune": "LA COUTURE", "libell_d_acheminement": "LA COUTURE", "code_postal": "62136", "coordonnees_gps": [50.5923913171, 2.70776740353], "code_commune_insee": "62252"}, "geometry": {"type": "Point", "coordinates": [2.70776740353, 50.5923913171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c42db66eafa8ff06d8ee0c9b750f7d4d5ff27eb", "fields": {"nom_de_la_commune": "COUTURELLE", "libell_d_acheminement": "COUTURELLE", "code_postal": "62158", "coordonnees_gps": [50.2103213159, 2.53947447725], "code_commune_insee": "62253"}, "geometry": {"type": "Point", "coordinates": [2.53947447725, 50.2103213159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2bb3291f7f36095ad0eb35c3f8d6faaa39e04b2", "fields": {"nom_de_la_commune": "CUINCHY", "libell_d_acheminement": "CUINCHY", "code_postal": "62149", "coordonnees_gps": [50.526774017, 2.73934770262], "code_commune_insee": "62262"}, "geometry": {"type": "Point", "coordinates": [2.73934770262, 50.526774017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93cbb935936b2c2e1208e60d9defbebaedd3830d", "fields": {"nom_de_la_commune": "DAINVILLE", "libell_d_acheminement": "DAINVILLE", "code_postal": "62000", "coordonnees_gps": [50.2836206213, 2.74077726899], "code_commune_insee": "62263"}, "geometry": {"type": "Point", "coordinates": [2.74077726899, 50.2836206213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c11bc5ce6267a9cc8719eff88d90a679fe2fec", "fields": {"nom_de_la_commune": "DESVRES", "libell_d_acheminement": "DESVRES", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62268"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f550ca10a472eb50f90b6a7ae7fa8124defb4dae", "fields": {"nom_de_la_commune": "ECOUST ST MEIN", "libell_d_acheminement": "ECOUST ST MEIN", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62285"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cfba238e3d5de9397edf350b8f332c4810e524b", "fields": {"nom_de_la_commune": "ECUIRES", "libell_d_acheminement": "ECUIRES", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62289"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "466e71707c49709b51cdbfd8a4961cb29af958c3", "fields": {"nom_de_la_commune": "ELEU DIT LEAUWETTE", "libell_d_acheminement": "ELEU DIT LEAUWETTE", "code_postal": "62300", "coordonnees_gps": [50.435564897, 2.82028472263], "code_commune_insee": "62291"}, "geometry": {"type": "Point", "coordinates": [2.82028472263, 50.435564897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c8a9f74332e73ddaff3e405088e926d6047175a", "fields": {"nom_de_la_commune": "ENQUIN LES MINES", "libell_d_acheminement": "ENQUIN LES MINES", "code_postal": "62145", "coordonnees_gps": [50.5958443707, 2.29512440043], "code_commune_insee": "62295"}, "geometry": {"type": "Point", "coordinates": [2.29512440043, 50.5958443707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4310d50936896baadf1a72b22fc86ef2be5d34f6", "fields": {"nom_de_la_commune": "EPINOY", "libell_d_acheminement": "EPINOY", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62298"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb637f4ed19a53350dd64e93146c0804e1fd0cb", "fields": {"nom_de_la_commune": "EPS", "libell_d_acheminement": "EPS", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62299"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93514d02e8b470973da37a1b99cd0da96c532e36", "fields": {"nom_de_la_commune": "ERGNY", "libell_d_acheminement": "ERGNY", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62302"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86651f9790b17fa8766bcda88223dce835fc4ad5", "fields": {"nom_de_la_commune": "ERNY ST JULIEN", "libell_d_acheminement": "ERNY ST JULIEN", "code_postal": "62960", "coordonnees_gps": [50.5540064964, 2.2740661156], "code_commune_insee": "62304"}, "geometry": {"type": "Point", "coordinates": [2.2740661156, 50.5540064964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79556504bef4f7841061ac6a86c50d1442b62bd8", "fields": {"nom_de_la_commune": "ESCALLES", "libell_d_acheminement": "ESCALLES", "code_postal": "62179", "coordonnees_gps": [50.8769884551, 1.66495996056], "code_commune_insee": "62307"}, "geometry": {"type": "Point", "coordinates": [1.66495996056, 50.8769884551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ad3b4d1a3a92210e81ebbf7a27077253314a75d", "fields": {"nom_de_la_commune": "ESTREE BLANCHE", "libell_d_acheminement": "ESTREE BLANCHE", "code_postal": "62145", "coordonnees_gps": [50.5958443707, 2.29512440043], "code_commune_insee": "62313"}, "geometry": {"type": "Point", "coordinates": [2.29512440043, 50.5958443707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f73bd0e9a09460f9cb003042fd35341fe88935", "fields": {"nom_de_la_commune": "ESTREE CAUCHY", "libell_d_acheminement": "ESTREE CAUCHY", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62314"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b728bfb40e9ee4cfcbf2bfbb51e5981d734a7ff", "fields": {"nom_de_la_commune": "ETAING", "libell_d_acheminement": "ETAING", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62317"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bfbe05cf6ca672d1453f4053fb2d69e32284b72", "fields": {"nom_de_la_commune": "ETAPLES", "libell_d_acheminement": "ETAPLES", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62318"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7a8888413566ea113f12377665f46a1c73abc2a", "fields": {"nom_de_la_commune": "ETERPIGNY", "libell_d_acheminement": "ETERPIGNY", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62319"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b52fa31105e0bf9b065c7d061f44ddd57574b87", "fields": {"nom_de_la_commune": "FERFAY", "libell_d_acheminement": "FERFAY", "code_postal": "62260", "coordonnees_gps": [50.5172886108, 2.43294785801], "code_commune_insee": "62328"}, "geometry": {"type": "Point", "coordinates": [2.43294785801, 50.5172886108]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38a1d0da71f54057b4d599ad998b4e1bf61343fd", "fields": {"nom_de_la_commune": "FEUCHY", "libell_d_acheminement": "FEUCHY", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62331"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2510522afd1dd609ce7ac0a5d71f81840b141443", "fields": {"nom_de_la_commune": "FLEURY", "libell_d_acheminement": "FLEURY", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62339"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9df948f2eb9e3e0e9e1ee329dc1472f020e7a9", "fields": {"nom_de_la_commune": "FONTAINE LES HERMANS", "libell_d_acheminement": "FONTAINE LES HERMANS", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62344"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95608152835eb12c406c3849e3ad02527b48cd8f", "fields": {"nom_de_la_commune": "FORTEL EN ARTOIS", "libell_d_acheminement": "FORTEL EN ARTOIS", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62346"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a89836a170cf68384fe10992f4f42028825c40d", "fields": {"nom_de_la_commune": "FREMICOURT", "libell_d_acheminement": "FREMICOURT", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62353"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64849081c2083f13ffe51d496ffb2420ca86fa71", "fields": {"nom_de_la_commune": "FRENCQ", "libell_d_acheminement": "FRENCQ", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62354"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba2a93d060cf1e7a8e0b8c504359a2e8b3791cf", "fields": {"nom_de_la_commune": "FRESNICOURT LE DOLMEN", "libell_d_acheminement": "FRESNICOURT LE DOLMEN", "code_postal": "62150", "coordonnees_gps": [50.4256106344, 2.54741516512], "code_commune_insee": "62356"}, "geometry": {"type": "Point", "coordinates": [2.54741516512, 50.4256106344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eea5e0fca3f15a3d69edf23d92c9b5c18d22990c", "fields": {"nom_de_la_commune": "FRESNOY", "libell_d_acheminement": "FRESNOY", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62357"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3bf39719be29d0808f3cf01ec2e4d4cb6b6b3f5", "fields": {"nom_de_la_commune": "FRUGES", "libell_d_acheminement": "FRUGES", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62364"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6768a649dbad28afc008e6e777069f7192534b", "fields": {"nom_de_la_commune": "FOLIES", "libell_d_acheminement": "FOLIES", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80320"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60979ea2047beac689b319d271d39ba68e07fbe", "fields": {"nom_de_la_commune": "FORCEVILLE EN VIMEU", "libell_d_acheminement": "FORCEVILLE EN VIMEU", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80330"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6159ca7163916bea226e649bf43a098e026def62", "fields": {"nom_de_la_commune": "FOUCAUCOURT EN SANTERRE", "libell_d_acheminement": "FOUCAUCOURT EN SANTERRE", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80335"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0397d337ee0522cbb102ffdd0c605b94241e407", "fields": {"nom_de_la_commune": "FOUCAUCOURT HORS NESLE", "libell_d_acheminement": "FOUCAUCOURT HORS NESLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80336"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "829c8e7cb3ca73723438cac9e137955afa9fc315", "fields": {"nom_de_la_commune": "FRANVILLERS", "libell_d_acheminement": "FRANVILLERS", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80350"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9e09ef63ffb948f88c270db7d683a58429ec6ea", "fields": {"nom_de_la_commune": "FREMONTIERS", "libell_d_acheminement": "FREMONTIERS", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80352"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c67d0a9967135802ecc53a4fe1fcc303eed49fa", "fields": {"code_postal": "80370", "code_commune_insee": "80369", "libell_d_acheminement": "FROHEN SUR AUTHIE", "ligne_5": "FROHEN LE PETIT", "nom_de_la_commune": "FROHEN SUR AUTHIE", "coordonnees_gps": [50.1625147057, 2.13483617177]}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e360dee1fdd3dd2e40d0ceda542de36e9ebbf242", "fields": {"nom_de_la_commune": "GOYENCOURT", "libell_d_acheminement": "GOYENCOURT", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80383"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e5bb5f46729529a083b8659bc2bdd705756273f", "fields": {"nom_de_la_commune": "GRIVILLERS", "libell_d_acheminement": "GRIVILLERS", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80391"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "556e3d34ffa9974a5a453785bdbf7bcde5f969bf", "fields": {"nom_de_la_commune": "GUYENCOURT SUR NOYE", "libell_d_acheminement": "GUYENCOURT SUR NOYE", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80403"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff445baffda81d01db366c0b17a46e4b6230b540", "fields": {"nom_de_la_commune": "GUYENCOURT SAULCOURT", "libell_d_acheminement": "GUYENCOURT SAULCOURT", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80404"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7adbd9af86e7c3d43de640ca6e1ff422156bf960", "fields": {"nom_de_la_commune": "HAILLES", "libell_d_acheminement": "HAILLES", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80405"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dcd3cdd334b2339cc24ef0962ceb5533807fe2b", "fields": {"code_postal": "80490", "code_commune_insee": "80406", "libell_d_acheminement": "HALLENCOURT", "ligne_5": "HOCQUINCOURT", "nom_de_la_commune": "HALLENCOURT", "coordonnees_gps": [50.003393471, 1.8509393607]}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abdfe06ee7213357a3511949442e06cb3da68e38", "fields": {"code_postal": "80490", "code_commune_insee": "80406", "libell_d_acheminement": "HALLENCOURT", "ligne_5": "WANEL", "nom_de_la_commune": "HALLENCOURT", "coordonnees_gps": [50.003393471, 1.8509393607]}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c72334535ab728f0e9aac57c63366f44258238f5", "fields": {"nom_de_la_commune": "HAMELET", "libell_d_acheminement": "HAMELET", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80412"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32e4f8d77a62d9f3802f35b04d97e0acf8e81702", "fields": {"nom_de_la_commune": "HANGEST EN SANTERRE", "libell_d_acheminement": "HANGEST EN SANTERRE", "code_postal": "80134", "coordonnees_gps": [49.7517203901, 2.60164856889], "code_commune_insee": "80415"}, "geometry": {"type": "Point", "coordinates": [2.60164856889, 49.7517203901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863989a179b622959fb9533e4535b4d9cffad693", "fields": {"nom_de_la_commune": "HANGEST SUR SOMME", "libell_d_acheminement": "HANGEST SUR SOMME", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80416"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12bfa20d933cb66905711833a29f054acc4ea870", "fields": {"nom_de_la_commune": "HATTENCOURT", "libell_d_acheminement": "HATTENCOURT", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80421"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d42856951ef9ccb20cd2754339bf4be33acc12e", "fields": {"nom_de_la_commune": "HAUTVILLERS OUVILLE", "libell_d_acheminement": "HAUTVILLERS OUVILLE", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80422"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9042c57e2d25cd360b9e24d5dd2917a71ce1c9e1", "fields": {"nom_de_la_commune": "HEDAUVILLE", "libell_d_acheminement": "HEDAUVILLE", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80425"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a10b242ab1f0f81fe017e66823af22d5fc3835", "fields": {"nom_de_la_commune": "HEUZECOURT", "libell_d_acheminement": "HEUZECOURT", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80439"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b965d6e8a5015df19f9df4cc1528cfed3b443c4e", "fields": {"nom_de_la_commune": "HIERMONT", "libell_d_acheminement": "HIERMONT", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80440"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f41250026cfe515f7881a5b3a3f41d5258ab039b", "fields": {"nom_de_la_commune": "HOMBLEUX", "libell_d_acheminement": "HOMBLEUX", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80442"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a378009c9986653e4d6da73abfd429d331f4938a", "fields": {"code_postal": "80430", "code_commune_insee": "80456", "libell_d_acheminement": "LAFRESGUIMONT ST MARTIN", "ligne_5": "MONTMARQUET", "nom_de_la_commune": "LAFRESGUIMONT ST MARTIN", "coordonnees_gps": [49.8385398523, 1.78216116421]}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "477480f0218cc3572fe9d372b1a48500c2143087", "fields": {"nom_de_la_commune": "LAHOUSSOYE", "libell_d_acheminement": "LAHOUSSOYE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80458"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78303ba1fe17371eb00b8632c57fd47bb3a6ec57", "fields": {"nom_de_la_commune": "LAMOTTE BREBIERE", "libell_d_acheminement": "LAMOTTE BREBIERE", "code_postal": "80450", "coordonnees_gps": [49.8997826029, 2.37137484278], "code_commune_insee": "80461"}, "geometry": {"type": "Point", "coordinates": [2.37137484278, 49.8997826029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b527b1e0924ae55c377010d83ae2eaedfc4fd7b", "fields": {"nom_de_la_commune": "LIGNIERES CHATELAIN", "libell_d_acheminement": "LIGNIERES CHATELAIN", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80479"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0647f5f81cddfb93e82850a46d8484df1be6117", "fields": {"nom_de_la_commune": "LIGNIERES EN VIMEU", "libell_d_acheminement": "LIGNIERES EN VIMEU", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80480"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "100f7cb33da44842b4fa766f64ca42ca6ea8e8bc", "fields": {"nom_de_la_commune": "LIHONS", "libell_d_acheminement": "LIHONS", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80481"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "052205a7975f0ade84eaf031f0770f32a9effe7f", "fields": {"nom_de_la_commune": "LIMEUX", "libell_d_acheminement": "LIMEUX", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80482"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c178e46e01546e53d0652310a819f94a472291c0", "fields": {"nom_de_la_commune": "LIOMER", "libell_d_acheminement": "LIOMER", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80484"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328ef7587d1f50f10baa73d8bf216325bfc4affb", "fields": {"nom_de_la_commune": "LONGAVESNES", "libell_d_acheminement": "LONGAVESNES", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80487"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a229758e7b910b15402c0209eaf9beacc322ed37", "fields": {"nom_de_la_commune": "LONGUEVILLETTE", "libell_d_acheminement": "LONGUEVILLETTE", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80491"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37c3aa2a82470a02ddc8f41a64e3c2c0b7254dcb", "fields": {"nom_de_la_commune": "MAISNIERES", "libell_d_acheminement": "MAISNIERES", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80500"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbf4612062750cb383436471f62e7c651cd17dee", "fields": {"nom_de_la_commune": "MAISON ROLAND", "libell_d_acheminement": "MAISON ROLAND", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80502"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a07fd6df2bac0edc88e066b673ec36c098cd3644", "fields": {"nom_de_la_commune": "MALPART", "libell_d_acheminement": "MALPART", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80504"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3dfb5db8c5c56fe8dd6d904d2500aa23f277cfc", "fields": {"nom_de_la_commune": "MARQUAIX", "libell_d_acheminement": "MARQUAIX", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80516"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "756d36233cc006457760a9734f7e6b05b240ca2f", "fields": {"nom_de_la_commune": "LE MEILLARD", "libell_d_acheminement": "LE MEILLARD", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80526"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1388542e1b991ee6080fdf7c8be9b0abfefc521", "fields": {"nom_de_la_commune": "MEREAUCOURT", "libell_d_acheminement": "MEREAUCOURT", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80528"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3032bc9563a8648811519cf6376762546d28e5bf", "fields": {"nom_de_la_commune": "MESNIL DOMQUEUR", "libell_d_acheminement": "MESNIL DOMQUEUR", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80537"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "545d5b36303e358a3deb9a714ab4fac96e229737", "fields": {"nom_de_la_commune": "MESNIL ST NICAISE", "libell_d_acheminement": "MESNIL ST NICAISE", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80542"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "883d7291b9e92f03c4b658c95aabdf9ea20a9035", "fields": {"nom_de_la_commune": "METIGNY", "libell_d_acheminement": "METIGNY", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80543"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305880567c3925fc31b7d120f52e4374aafceb60", "fields": {"nom_de_la_commune": "MEZIERES EN SANTERRE", "libell_d_acheminement": "MEZIERES EN SANTERRE", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80545"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef62a33fd7833ecf00e871aabc2b262dc13fe9db", "fields": {"nom_de_la_commune": "MIANNAY", "libell_d_acheminement": "MIANNAY", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80546"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da586022a249639963d3ce25ab7b386ec29125d", "fields": {"nom_de_la_commune": "MILLENCOURT", "libell_d_acheminement": "MILLENCOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80547"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a23a6f363e9b1c4c87e1227a45f86b06407426", "fields": {"nom_de_la_commune": "MIRVAUX", "libell_d_acheminement": "MIRVAUX", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80550"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bfe31bc0bcf486bd16c9c6aa1bceafbcf8f7ea7", "fields": {"nom_de_la_commune": "MISERY", "libell_d_acheminement": "MISERY", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80551"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c01a5664030eb110948935c24f2939e6ad3a9cc", "fields": {"nom_de_la_commune": "MOISLAINS", "libell_d_acheminement": "MOISLAINS", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80552"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b1fafc1440ff89949a4e56a72865e9f300b5f8", "fields": {"nom_de_la_commune": "ESTREES MONS", "libell_d_acheminement": "ESTREES MONS", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80557"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c851b2d4d423b4882640efa18485e2e70c50a777", "fields": {"nom_de_la_commune": "MONTONVILLERS", "libell_d_acheminement": "MONTONVILLERS", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80565"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5159578481ed802a37afbd14e019c5051bd14fa2", "fields": {"nom_de_la_commune": "MORCHAIN", "libell_d_acheminement": "MORCHAIN", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80568"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db5a207df44c910caf35d25b82ecb4a1a8e8dd16", "fields": {"nom_de_la_commune": "MORLANCOURT", "libell_d_acheminement": "MORLANCOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80572"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0d79f1eeac4d76c36f8e4b9a9fe9fa967b4b62c", "fields": {"nom_de_la_commune": "MOYENNEVILLE", "libell_d_acheminement": "MOYENNEVILLE", "code_postal": "80870", "coordonnees_gps": [50.0653042148, 1.7446378135], "code_commune_insee": "80578"}, "geometry": {"type": "Point", "coordinates": [1.7446378135, 50.0653042148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "734e1e0b000ab072fc0cb9a3e689107bef26f0df", "fields": {"nom_de_la_commune": "NEUFMOULIN", "libell_d_acheminement": "NEUFMOULIN", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80588"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44e981dc10d598ffaae2aeeff176bc2708fcf466", "fields": {"nom_de_la_commune": "NEUILLY LE DIEN", "libell_d_acheminement": "NEUILLY LE DIEN", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80589"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3edd6656046b70c04ec096e59e1ea07c02f12d6e", "fields": {"nom_de_la_commune": "LA NEUVILLE LES BRAY", "libell_d_acheminement": "LA NEUVILLE LES BRAY", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80593"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "189bd60d32ed89749478488d6f96653294d59b6a", "fields": {"nom_de_la_commune": "OCHANCOURT", "libell_d_acheminement": "OCHANCOURT", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80603"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21297b1b42a3db728362a555c0edc301507b5936", "fields": {"nom_de_la_commune": "OFFIGNIES", "libell_d_acheminement": "OFFIGNIES", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80604"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d6388561e01d19815f91f358b54113b50fcc2f", "fields": {"nom_de_la_commune": "OISEMONT", "libell_d_acheminement": "OISEMONT", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80606"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a60b12bca175c9e35cc477b91db1c4cba59f584", "fields": {"nom_de_la_commune": "PARVILLERS LE QUESNOY", "libell_d_acheminement": "PARVILLERS LE QUESNOY", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80617"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4472f6475b8bd8560db22acba34d80fc964112b2", "fields": {"nom_de_la_commune": "PERONNE", "libell_d_acheminement": "PERONNE", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80620"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e85a3ff5955d958094b2a79ed8439ea9370c3b24", "fields": {"nom_de_la_commune": "PERTAIN", "libell_d_acheminement": "PERTAIN", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80621"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ede9d9e49c73c6914a565cf1cefbed65d44e39c", "fields": {"code_postal": "80290", "code_commune_insee": "80630", "libell_d_acheminement": "POIX DE PICARDIE", "ligne_5": "LAHAYE ST ROMAIN", "nom_de_la_commune": "POIX DE PICARDIE", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c808c3786126d6f991aa01f05543f95a05e30e", "fields": {"nom_de_la_commune": "PONCHES ESTRUVAL", "libell_d_acheminement": "PONCHES ESTRUVAL", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80631"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5870eaa89965bf621337a4d0cad194e89fa3df1", "fields": {"nom_de_la_commune": "PROUVILLE", "libell_d_acheminement": "PROUVILLE", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80642"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29bfc560483c5f7f60292c117c1706439465a13e", "fields": {"nom_de_la_commune": "PUCHEVILLERS", "libell_d_acheminement": "PUCHEVILLERS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80645"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470688f233adfe72e04b2ee757b6112ddea4e62a", "fields": {"nom_de_la_commune": "PUNCHY", "libell_d_acheminement": "PUNCHY", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80646"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d633ad9385952df6f0a10b4115c139fc7a4382", "fields": {"nom_de_la_commune": "PUZEAUX", "libell_d_acheminement": "PUZEAUX", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80647"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954884db5e4c3dfa36de05ae1b01a69e99aef511", "fields": {"nom_de_la_commune": "QUEND", "libell_d_acheminement": "QUEND", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80649"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e836051a59b9ee7bf1d29b104670bf3c2c75277", "fields": {"nom_de_la_commune": "LE QUESNEL", "libell_d_acheminement": "LE QUESNEL", "code_postal": "80118", "coordonnees_gps": [49.7819533501, 2.62380899671], "code_commune_insee": "80652"}, "geometry": {"type": "Point", "coordinates": [2.62380899671, 49.7819533501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "756aa56d2e9999b2639875ad2348bf21e5490cc8", "fields": {"nom_de_la_commune": "QUIRY LE SEC", "libell_d_acheminement": "QUIRY LE SEC", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80657"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0ce7b0575a24efb0c32ae83740419935a486da", "fields": {"nom_de_la_commune": "RAMBURES", "libell_d_acheminement": "RAMBURES", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80663"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0adb8d34f26384696bf3ded743bbfc9edfd496cb", "fields": {"nom_de_la_commune": "REMAISNIL", "libell_d_acheminement": "REMAISNIL", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80666"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51c1e8d323e98e4689db1dd59b44b034a63b4b70", "fields": {"nom_de_la_commune": "REVELLES", "libell_d_acheminement": "REVELLES", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80670"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de24f7fd1734e38081dd040496ca6e871a4105d", "fields": {"nom_de_la_commune": "ROIGLISE", "libell_d_acheminement": "ROIGLISE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80676"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f87897d1acdfd67e227233e670639cdb1f27516", "fields": {"nom_de_la_commune": "ROLLOT", "libell_d_acheminement": "ROLLOT", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80678"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7d05729b7239242e01c6e5246d5bff6f853fb79", "fields": {"nom_de_la_commune": "ROUVREL", "libell_d_acheminement": "ROUVREL", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80681"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e425099f3868609169bfac3adbb83bb82066a3a", "fields": {"nom_de_la_commune": "RUBESCOURT", "libell_d_acheminement": "RUBESCOURT", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80687"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ef8d964d919f2c31e9d9d611f7841e5d73fc7c", "fields": {"nom_de_la_commune": "ST LEGER LES DOMART", "libell_d_acheminement": "ST LEGER LES DOMART", "code_postal": "80780", "coordonnees_gps": [50.0561016061, 2.14043752851], "code_commune_insee": "80706"}, "geometry": {"type": "Point", "coordinates": [2.14043752851, 50.0561016061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e45dc391e9c08e6230a21b6ae48b8de8d14f0ec2", "fields": {"nom_de_la_commune": "ST LEGER SUR BRESLE", "libell_d_acheminement": "ST LEGER SUR BRESLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80707"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b2bfee771b67ff5318830b5749bf994f52ce0ff", "fields": {"nom_de_la_commune": "ST SAUFLIEU", "libell_d_acheminement": "ST SAUFLIEU", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80717"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e916f2920dbdd11d45eba762c1858ee6452bc006", "fields": {"nom_de_la_commune": "SALOUEL", "libell_d_acheminement": "SALOUEL", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80725"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57359ea105052e9eb28d9573b866478cbde072a", "fields": {"nom_de_la_commune": "SAUVILLERS MONGIVAL", "libell_d_acheminement": "SAUVILLERS MONGIVAL", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80729"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b6455365aeec06af44e7f8901081e4a40a8425", "fields": {"nom_de_la_commune": "SENARPONT", "libell_d_acheminement": "SENARPONT", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80732"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa88486c89c8bd0e60d6f7890147907587ce49b", "fields": {"nom_de_la_commune": "TALMAS", "libell_d_acheminement": "TALMAS", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80746"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0fc139c7b5105817c593211a7775814c563813f", "fields": {"nom_de_la_commune": "TEMPLEUX LE GUERARD", "libell_d_acheminement": "TEMPLEUX LE GUERARD", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80748"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "748473c711f6dbebadbfffac4299ef8443a5643c", "fields": {"nom_de_la_commune": "TERRAMESNIL", "libell_d_acheminement": "TERRAMESNIL", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80749"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cdbdb17f6835a4c12221d49a28cabdff6eb8e53", "fields": {"nom_de_la_commune": "THOIX", "libell_d_acheminement": "THOIX", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80757"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb8760446c5b4e4230ce2530c4905dd5359e7dd9", "fields": {"nom_de_la_commune": "TILLOLOY", "libell_d_acheminement": "TILLOLOY", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80759"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e20c236b3302fd06f3bda488e9ac605b319a86", "fields": {"nom_de_la_commune": "VAUDRICOURT", "libell_d_acheminement": "VAUDRICOURT", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80780"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9f583c2f5d83d13853be44e9093ce493ecd865", "fields": {"nom_de_la_commune": "VAUX EN AMIENOIS", "libell_d_acheminement": "VAUX EN AMIENOIS", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80782"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc14fa4f53dcd639e44b5164e3eb5b73a0a5d715", "fields": {"nom_de_la_commune": "VAUX MARQUENNEVILLE", "libell_d_acheminement": "VAUX MARQUENNEVILLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80783"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c14273ae8bbeefacb853d33226476c1ffb53dda7", "fields": {"nom_de_la_commune": "VELENNES", "libell_d_acheminement": "VELENNES", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80786"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26753a4e32f0c8d688370bcf81be9ca26f80ea91", "fields": {"nom_de_la_commune": "VERCOURT", "libell_d_acheminement": "VERCOURT", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80787"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a022e8e7a2ff140f46b116a297424823bb934a75", "fields": {"nom_de_la_commune": "VILLE LE MARCLET", "libell_d_acheminement": "VILLE LE MARCLET", "code_postal": "80420", "coordonnees_gps": [50.0231078641, 2.0845688682], "code_commune_insee": "80795"}, "geometry": {"type": "Point", "coordinates": [2.0845688682, 50.0231078641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c548300608ddb47933b548e941ee92cc04ad857b", "fields": {"nom_de_la_commune": "VILLEROY", "libell_d_acheminement": "VILLEROY", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80796"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "116bf13310a439238d62c489e1ca1739e91f8ca9", "fields": {"nom_de_la_commune": "VILLERS FAUCON", "libell_d_acheminement": "VILLERS FAUCON", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80802"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79c98ff4d9f7f7209228e25f65fd443d08ce9b5", "fields": {"nom_de_la_commune": "VRAIGNES EN VERMANDOIS", "libell_d_acheminement": "VRAIGNES EN VERMANDOIS", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80812"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70e6a6411b44fd46326df7dba9bc8cd69e0abd20", "fields": {"nom_de_la_commune": "VRAIGNES LES HORNOY", "libell_d_acheminement": "VRAIGNES LES HORNOY", "code_postal": "80640", "coordonnees_gps": [49.8459420737, 1.9103382201], "code_commune_insee": "80813"}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "324e8a3e8142589cd039924fbb3c36914f65eef1", "fields": {"nom_de_la_commune": "WARVILLERS", "libell_d_acheminement": "WARVILLERS", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80823"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18005083177747e3ae63f7a5f0fe76594c133914", "fields": {"nom_de_la_commune": "SAILLY LABOURSE", "libell_d_acheminement": "SAILLY LABOURSE", "code_postal": "62113", "coordonnees_gps": [50.498906195, 2.68600111131], "code_commune_insee": "62735"}, "geometry": {"type": "Point", "coordinates": [2.68600111131, 50.498906195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7b80aacb15134dbe9185abc06916c49bb472750", "fields": {"nom_de_la_commune": "STE AUSTREBERTHE", "libell_d_acheminement": "STE AUSTREBERTHE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62743"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "392bc7a6a277b0074b80297124d52872387e98ba", "fields": {"nom_de_la_commune": "ST FOLQUIN", "libell_d_acheminement": "ST FOLQUIN", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62748"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a8e83a1e4979de65ed3371d6aac818b0143d6a1", "fields": {"nom_de_la_commune": "ST HILAIRE COTTES", "libell_d_acheminement": "ST HILAIRE COTTES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62750"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeed5ee36d7389479dd214128b0ca8118d772ccb", "fields": {"nom_de_la_commune": "ST MICHEL SOUS BOIS", "libell_d_acheminement": "ST MICHEL SOUS BOIS", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62762"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c43c79038b06c2fc0cbb2cecf246f02dbd18c27", "fields": {"nom_de_la_commune": "SALPERWICK", "libell_d_acheminement": "SALPERWICK", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62772"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d09ce7929963fb00c438ce21992fe1d769f2b851", "fields": {"code_postal": "62231", "code_commune_insee": "62774", "libell_d_acheminement": "SANGATTE", "ligne_5": "BLERIOT", "nom_de_la_commune": "SANGATTE", "coordonnees_gps": [50.929758247, 1.77843645708]}, "geometry": {"type": "Point", "coordinates": [1.77843645708, 50.929758247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78d82c6bef5df9ebbe45cf7484bbb786ba6b1ac9", "fields": {"nom_de_la_commune": "SARS LE BOIS", "libell_d_acheminement": "SARS LE BOIS", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62778"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c2d417462bb234b0260c7c3cbd2964ed13d9c57", "fields": {"nom_de_la_commune": "SAVY BERLETTE", "libell_d_acheminement": "SAVY BERLETTE", "code_postal": "62690", "coordonnees_gps": [50.3542191468, 2.57464330494], "code_commune_insee": "62785"}, "geometry": {"type": "Point", "coordinates": [2.57464330494, 50.3542191468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9802f262147c02c57e1ff3a75b5a373232482251", "fields": {"nom_de_la_commune": "SEMPY", "libell_d_acheminement": "SEMPY", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62787"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ce0ba13490c49f646582c734ec488e67cc6fe9a", "fields": {"nom_de_la_commune": "SERVINS", "libell_d_acheminement": "SERVINS", "code_postal": "62530", "coordonnees_gps": [50.4280976053, 2.64237906213], "code_commune_insee": "62793"}, "geometry": {"type": "Point", "coordinates": [2.64237906213, 50.4280976053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79dcdbb44a9578593d89d19ad831b6c5260b0068", "fields": {"nom_de_la_commune": "SIBIVILLE", "libell_d_acheminement": "SIBIVILLE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62795"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36552680130d22711f7251366a87d81c71d8d82d", "fields": {"nom_de_la_commune": "SIMENCOURT", "libell_d_acheminement": "SIMENCOURT", "code_postal": "62123", "coordonnees_gps": [50.2552331079, 2.62677592391], "code_commune_insee": "62796"}, "geometry": {"type": "Point", "coordinates": [2.62677592391, 50.2552331079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ae8770f27342eaa440f83e36e5ad1f33ec90e1", "fields": {"nom_de_la_commune": "SOUCHEZ", "libell_d_acheminement": "SOUCHEZ", "code_postal": "62153", "coordonnees_gps": [50.3936626748, 2.71627583927], "code_commune_insee": "62801"}, "geometry": {"type": "Point", "coordinates": [2.71627583927, 50.3936626748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cefd41f8ff59debfc7a4f2fb9edb7bf58c8dc65", "fields": {"nom_de_la_commune": "TORTEFONTAINE", "libell_d_acheminement": "TORTEFONTAINE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62824"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb3e4a06cfacc8478b82623c4c0ef7079f0a7881", "fields": {"nom_de_la_commune": "LE TOUQUET PARIS PLAGE", "libell_d_acheminement": "LE TOUQUET PARIS PLAGE", "code_postal": "62520", "coordonnees_gps": [50.5084197494, 1.59889500697], "code_commune_insee": "62826"}, "geometry": {"type": "Point", "coordinates": [1.59889500697, 50.5084197494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941ef31411f83bc87958c111e5f24fbd1b56daf4", "fields": {"nom_de_la_commune": "TRAMECOURT", "libell_d_acheminement": "TRAMECOURT", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62828"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8128142486793095b8f578dc411ee25086b2406", "fields": {"nom_de_la_commune": "TRESCAULT", "libell_d_acheminement": "TRESCAULT", "code_postal": "62147", "coordonnees_gps": [50.1126051547, 3.07159688], "code_commune_insee": "62830"}, "geometry": {"type": "Point", "coordinates": [3.07159688, 50.1126051547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2434c221680b5e85fe01799420df69f59bc5b7de", "fields": {"nom_de_la_commune": "VAUDRICOURT", "libell_d_acheminement": "VAUDRICOURT", "code_postal": "62131", "coordonnees_gps": [50.4979995318, 2.63240823084], "code_commune_insee": "62836"}, "geometry": {"type": "Point", "coordinates": [2.63240823084, 50.4979995318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "623dd5513403f18d43e9ee747a08aba1258097f5", "fields": {"nom_de_la_commune": "VAUDRINGHEM", "libell_d_acheminement": "VAUDRINGHEM", "code_postal": "62380", "coordonnees_gps": [50.6840669393, 2.07902625888], "code_commune_insee": "62837"}, "geometry": {"type": "Point", "coordinates": [2.07902625888, 50.6840669393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4b7962afc800c970755e6d237261e1b5efd9975", "fields": {"nom_de_la_commune": "VAULX", "libell_d_acheminement": "VAULX", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62838"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "486d2ba1b7b7bd1a854fd39cd93ace0c373f733c", "fields": {"nom_de_la_commune": "VAULX VRAUCOURT", "libell_d_acheminement": "VAULX VRAUCOURT", "code_postal": "62159", "coordonnees_gps": [50.1507346874, 2.907151936], "code_commune_insee": "62839"}, "geometry": {"type": "Point", "coordinates": [2.907151936, 50.1507346874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd8dc130b8264f87ec1f9c2d8ddae5ffd33edf2", "fields": {"nom_de_la_commune": "VELU", "libell_d_acheminement": "VELU", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62840"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c6112485fe6e956f15488ae923239a6909e2c7", "fields": {"nom_de_la_commune": "VERCHOCQ", "libell_d_acheminement": "VERCHOCQ", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62844"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e533d5882e34a3b3d0480f0e901aaaf50d8a790", "fields": {"nom_de_la_commune": "VIEIL HESDIN", "libell_d_acheminement": "VIEIL HESDIN", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62850"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28438bf463044428bb782ca6736999c5e7c8d9a6", "fields": {"nom_de_la_commune": "VIMY", "libell_d_acheminement": "VIMY", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62861"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6c00b19ab9608552a6db091b66560b79c9ca69", "fields": {"nom_de_la_commune": "VIS EN ARTOIS", "libell_d_acheminement": "VIS EN ARTOIS", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62864"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22953db1db1d408cd58b31b9a73a5bc48901a65a", "fields": {"nom_de_la_commune": "WAIL", "libell_d_acheminement": "WAIL", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62868"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f7a8b63e7ff1c508447ba4829e172c844ea5522", "fields": {"nom_de_la_commune": "WAMBERCOURT", "libell_d_acheminement": "WAMBERCOURT", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62871"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33291c9fd157858023cb341353af7381d59f24e1", "fields": {"nom_de_la_commune": "WARLENCOURT EAUCOURT", "libell_d_acheminement": "WARLENCOURT EAUCOURT", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62876"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9514b948ad22096f059168c5eeff79d85e04c9c0", "fields": {"nom_de_la_commune": "WIDEHEM", "libell_d_acheminement": "WIDEHEM", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62887"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "083ba4a4105cd55bf83d543d4b673f9fd0fbc398", "fields": {"nom_de_la_commune": "WIMEREUX", "libell_d_acheminement": "WIMEREUX", "code_postal": "62930", "coordonnees_gps": [50.7788872346, 1.61402387119], "code_commune_insee": "62893"}, "geometry": {"type": "Point", "coordinates": [1.61402387119, 50.7788872346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36ea1454f51614873fac7c3c7154a824875c923e", "fields": {"nom_de_la_commune": "WINGLES", "libell_d_acheminement": "WINGLES", "code_postal": "62410", "coordonnees_gps": [50.4882510126, 2.84772935438], "code_commune_insee": "62895"}, "geometry": {"type": "Point", "coordinates": [2.84772935438, 50.4882510126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af61c243cf425f93395bdc131cc6ee1bf9372cde", "fields": {"nom_de_la_commune": "WISQUES", "libell_d_acheminement": "WISQUES", "code_postal": "62219", "coordonnees_gps": [50.7332429452, 2.228444485], "code_commune_insee": "62898"}, "geometry": {"type": "Point", "coordinates": [2.228444485, 50.7332429452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18ebd46a5d1eb1091ee25122ebbc7249e4ea8424", "fields": {"nom_de_la_commune": "ZUDAUSQUES", "libell_d_acheminement": "ZUDAUSQUES", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62905"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45d4addc6795cbaa6e14c62d421f5f3938b21f6", "fields": {"nom_de_la_commune": "LIBERCOURT", "libell_d_acheminement": "LIBERCOURT", "code_postal": "62820", "coordonnees_gps": [50.482454263, 2.99989827101], "code_commune_insee": "62907"}, "geometry": {"type": "Point", "coordinates": [2.99989827101, 50.482454263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "069bd25f95d878733b6c222adff723a161403872", "fields": {"nom_de_la_commune": "YTRES", "libell_d_acheminement": "YTRES", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62909"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d289b39e3530679c1975d7b69885a91d31c2ad", "fields": {"nom_de_la_commune": "AMBERT", "libell_d_acheminement": "AMBERT", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63003"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dcfa0149842a405d91dc06f793c36bd6d9e42d0", "fields": {"nom_de_la_commune": "AUBUSSON D AUVERGNE", "libell_d_acheminement": "AUBUSSON D AUVERGNE", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63015"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b50080598ddceea279634d04527efe0817eeffd4", "fields": {"nom_de_la_commune": "AUGNAT", "libell_d_acheminement": "AUGNAT", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63017"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf8eac597e832f95216e1b4480f8941e03975941", "fields": {"nom_de_la_commune": "AURIERES", "libell_d_acheminement": "AURIERES", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63020"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "036ddf99a279f2af8ebf22c8e0e7d2b17cd0c990", "fields": {"nom_de_la_commune": "AUZAT LA COMBELLE", "libell_d_acheminement": "AUZAT LA COMBELLE", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63022"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d5c2feb95eea63677e3309f36e20081788a12f0", "fields": {"nom_de_la_commune": "AUZELLES", "libell_d_acheminement": "AUZELLES", "code_postal": "63590", "coordonnees_gps": [45.630246547, 3.56815456434], "code_commune_insee": "63023"}, "geometry": {"type": "Point", "coordinates": [3.56815456434, 45.630246547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f15e3676f9bbdaec4e4f8ea3148f78e0b6b0fcd4", "fields": {"nom_de_la_commune": "BEAULIEU", "libell_d_acheminement": "BEAULIEU", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63031"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4bf44d9e85d2a0e8a469520e3244598b02d73a6", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "63110", "coordonnees_gps": [45.749937753, 3.08737208074], "code_commune_insee": "63032"}, "geometry": {"type": "Point", "coordinates": [3.08737208074, 45.749937753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769dcee90beb5d08a08119a839e5ed95aac3a071", "fields": {"nom_de_la_commune": "BEAUREGARD VENDON", "libell_d_acheminement": "BEAUREGARD VENDON", "code_postal": "63460", "coordonnees_gps": [45.9934157614, 3.09875798916], "code_commune_insee": "63035"}, "geometry": {"type": "Point", "coordinates": [3.09875798916, 45.9934157614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd29a2b69f3cfa1bb121b05f21760b021cf43c25", "fields": {"nom_de_la_commune": "BERGONNE", "libell_d_acheminement": "BERGONNE", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63036"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db8a1c16cd59d3d90b32a3a290dfd64c2fab97c6", "fields": {"nom_de_la_commune": "BERTIGNAT", "libell_d_acheminement": "BERTIGNAT", "code_postal": "63480", "coordonnees_gps": [45.6534695475, 3.7067918054], "code_commune_insee": "63037"}, "geometry": {"type": "Point", "coordinates": [3.7067918054, 45.6534695475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eed51faadec614a7a4c49fcb25d34dc186f642e", "fields": {"code_postal": "63610", "code_commune_insee": "63038", "libell_d_acheminement": "BESSE ET ST ANASTAISE", "ligne_5": "ST ANASTAISE", "nom_de_la_commune": "BESSE ET ST ANASTAISE", "coordonnees_gps": [45.477068899, 2.93237565554]}, "geometry": {"type": "Point", "coordinates": [2.93237565554, 45.477068899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845f76c189a57710a6d3a95b0b53f02ca57e9467", "fields": {"nom_de_la_commune": "BLOT L EGLISE", "libell_d_acheminement": "BLOT L EGLISE", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63043"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "763361c68105f25ba1fa71a928fa6048c044baef", "fields": {"nom_de_la_commune": "BONGHEAT", "libell_d_acheminement": "BONGHEAT", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63044"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba1984f33137c5fd0dd8be7a012b0732e65f6d67", "fields": {"nom_de_la_commune": "BOUDES", "libell_d_acheminement": "BOUDES", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63046"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3125098963f8bc6904766d929f27733b23f1a4a4", "fields": {"nom_de_la_commune": "LE BROC", "libell_d_acheminement": "LE BROC", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63054"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e2a544e78a0fa7159bb9834f8c945473c4934b6", "fields": {"nom_de_la_commune": "BULHON", "libell_d_acheminement": "BULHON", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63058"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87525ebc1cb5005ac22eca617158d9a9245b8a07", "fields": {"nom_de_la_commune": "CEILLOUX", "libell_d_acheminement": "CEILLOUX", "code_postal": "63520", "coordonnees_gps": [45.6791396863, 3.48140635939], "code_commune_insee": "63065"}, "geometry": {"type": "Point", "coordinates": [3.48140635939, 45.6791396863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "369f8b9a3bf7b9a626a45e76fef28631c0dac9a2", "fields": {"nom_de_la_commune": "CHALUS", "libell_d_acheminement": "CHALUS", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63074"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7387123e186847240e4daadd4a40c9726d8b087", "fields": {"nom_de_la_commune": "CHAMBON SUR DOLORE", "libell_d_acheminement": "CHAMBON SUR DOLORE", "code_postal": "63980", "coordonnees_gps": [45.5203885139, 3.57234672112], "code_commune_insee": "63076"}, "geometry": {"type": "Point", "coordinates": [3.57234672112, 45.5203885139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cb8b7336c8b6f79c0033dee1322f0558f0abcb9", "fields": {"nom_de_la_commune": "CHAMEANE", "libell_d_acheminement": "CHAMEANE", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63078"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86144f469e639db48f40ac38d07ff9b29bc8b00e", "fields": {"nom_de_la_commune": "CLERLANDE", "libell_d_acheminement": "CLERLANDE", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63112"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e7962212c27be6eeb5eba39769d4a964229433", "fields": {"nom_de_la_commune": "COLLANGES", "libell_d_acheminement": "COLLANGES", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63114"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "062cc2c04089e0d50b873ae524b7b45341880ad9", "fields": {"nom_de_la_commune": "COURPIERE", "libell_d_acheminement": "COURPIERE", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63125"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0dbd71fbb280a2eacd2f5c5cdc1199afd81fcf", "fields": {"nom_de_la_commune": "DORAT", "libell_d_acheminement": "DORAT", "code_postal": "63300", "coordonnees_gps": [45.8543527446, 3.53248495668], "code_commune_insee": "63138"}, "geometry": {"type": "Point", "coordinates": [3.53248495668, 45.8543527446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd7f46ac88b092acdd87b5b53494b128411f3932", "fields": {"nom_de_la_commune": "EFFIAT", "libell_d_acheminement": "EFFIAT", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63143"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeeb73dec1856c52d549977b9efe29e4023fdce7", "fields": {"nom_de_la_commune": "ESPINCHAL", "libell_d_acheminement": "ESPINCHAL", "code_postal": "63850", "coordonnees_gps": [45.4132189945, 2.81236528132], "code_commune_insee": "63153"}, "geometry": {"type": "Point", "coordinates": [2.81236528132, 45.4132189945]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641f64a5fed7b17b1c14fc80cdfec1f9ec3e7aec", "fields": {"nom_de_la_commune": "FAYET LE CHATEAU", "libell_d_acheminement": "FAYET LE CHATEAU", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63157"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86689e93fdac6ef67c77dd35783d9e26f8075520", "fields": {"code_postal": "63500", "code_commune_insee": "63160", "libell_d_acheminement": "AULHAT FLAT", "ligne_5": "AULHAT ST PRIVAT", "nom_de_la_commune": "AULHAT FLAT", "coordonnees_gps": [45.5449375451, 3.24769750903]}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e8d8e0283ef33b1f68805ca3a068ef90a45c88", "fields": {"nom_de_la_commune": "GERZAT", "libell_d_acheminement": "GERZAT", "code_postal": "63360", "coordonnees_gps": [45.840831165, 3.18231829254], "code_commune_insee": "63164"}, "geometry": {"type": "Point", "coordinates": [3.18231829254, 45.840831165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbf71e5de364e741fe82da0aa1122ff80937abee", "fields": {"nom_de_la_commune": "GIGNAT", "libell_d_acheminement": "GIGNAT", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63166"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51f2e09e5875d759cc605208ff02ca44cff899e", "fields": {"nom_de_la_commune": "GLAINE MONTAIGUT", "libell_d_acheminement": "GLAINE MONTAIGUT", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63168"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf53f1660dbc05420cb79792ceadb045377dfb42", "fields": {"nom_de_la_commune": "LA GOUTELLE", "libell_d_acheminement": "LA GOUTELLE", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63170"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e4b92d4675d5ad681badb1088b6b0f112b21655", "fields": {"nom_de_la_commune": "GRANDRIF", "libell_d_acheminement": "GRANDRIF", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63173"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d8efa976860e07b14d6b0882331261153ca13b4", "fields": {"nom_de_la_commune": "HEUME L EGLISE", "libell_d_acheminement": "HEUME L EGLISE", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63176"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cadf73128fa8e56a04fa82a38df4988e7c923db", "fields": {"nom_de_la_commune": "ISSOIRE", "libell_d_acheminement": "ISSOIRE", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63178"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d52064c3e097e1db52006c2fa9dd410472d8804", "fields": {"nom_de_la_commune": "LABESSETTE", "libell_d_acheminement": "LABESSETTE", "code_postal": "63690", "coordonnees_gps": [45.555010149, 2.58536882047], "code_commune_insee": "63183"}, "geometry": {"type": "Point", "coordinates": [2.58536882047, 45.555010149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80e05b993d84ed723046a8ebe926507becf61f1", "fields": {"nom_de_la_commune": "LUZILLAT", "libell_d_acheminement": "LUZILLAT", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63201"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fbba0a931e8bec76e5712a954fec3f737c4a76c", "fields": {"nom_de_la_commune": "MALINTRAT", "libell_d_acheminement": "MALINTRAT", "code_postal": "63510", "coordonnees_gps": [45.804716466, 3.18423558419], "code_commune_insee": "63204"}, "geometry": {"type": "Point", "coordinates": [3.18423558419, 45.804716466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1e271f0ff446ffa0fd85c0e13ae2a86fc029c9", "fields": {"nom_de_la_commune": "MANGLIEU", "libell_d_acheminement": "MANGLIEU", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63205"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2352ef125e4a63f719f38bcbe9be4c0a17c9bda2", "fields": {"nom_de_la_commune": "MARSAC EN LIVRADOIS", "libell_d_acheminement": "MARSAC EN LIVRADOIS", "code_postal": "63940", "coordonnees_gps": [45.4804569563, 3.72156526348], "code_commune_insee": "63211"}, "geometry": {"type": "Point", "coordinates": [3.72156526348, 45.4804569563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "088324131e26ac7d3eff017c194e0f21ae65a078", "fields": {"nom_de_la_commune": "LES MARTRES D ARTIERE", "libell_d_acheminement": "LES MARTRES D ARTIERE", "code_postal": "63430", "coordonnees_gps": [45.8112884273, 3.24859330717], "code_commune_insee": "63213"}, "geometry": {"type": "Point", "coordinates": [3.24859330717, 45.8112884273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca4134dfa0a116459dd12e8edfcc2d3b260c882c", "fields": {"nom_de_la_commune": "MARTRES SUR MORGE", "libell_d_acheminement": "MARTRES SUR MORGE", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63215"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d62ec01f72656041f1f179a2b87ec547bdf733c", "fields": {"nom_de_la_commune": "MAYRES", "libell_d_acheminement": "MAYRES", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63218"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c89618faa19643e4fa8c79b2b52fb2e72566f1", "fields": {"nom_de_la_commune": "MEDEYROLLES", "libell_d_acheminement": "MEDEYROLLES", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63221"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc800ef85201fc57e15616cf0dbe2ed8a419837", "fields": {"nom_de_la_commune": "MENETROL", "libell_d_acheminement": "MENETROL", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63224"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e90fc8fd05271c3f16672a3a4f080bbfa19c86", "fields": {"code_postal": "63200", "code_commune_insee": "63244", "libell_d_acheminement": "CHAMBARON SUR MORGE", "ligne_5": "LA MOUTADE", "nom_de_la_commune": "CHAMBARON SUR MORGE", "coordonnees_gps": [45.9059997705, 3.12295819611]}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92319200743fb26b4660497b0606c02b9f07d529", "fields": {"nom_de_la_commune": "MUROL", "libell_d_acheminement": "MUROL", "code_postal": "63790", "coordonnees_gps": [45.562829077, 2.89483440684], "code_commune_insee": "63247"}, "geometry": {"type": "Point", "coordinates": [2.89483440684, 45.562829077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7f55ea15882ae6f81195aff6dc9f38450485385", "fields": {"nom_de_la_commune": "ORCINES", "libell_d_acheminement": "ORCINES", "code_postal": "63870", "coordonnees_gps": [45.7870876563, 2.99756004933], "code_commune_insee": "63263"}, "geometry": {"type": "Point", "coordinates": [2.99756004933, 45.7870876563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a230db1fd94fe77c3d42a09c20279b8a5164b79", "fields": {"nom_de_la_commune": "ORLEAT", "libell_d_acheminement": "ORLEAT", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63265"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6a01bf9bfd38ee0615d0ef4a6444de3ba0d4d96", "fields": {"nom_de_la_commune": "PALLADUC", "libell_d_acheminement": "PALLADUC", "code_postal": "63550", "coordonnees_gps": [45.9228930521, 3.6102507473], "code_commune_insee": "63267"}, "geometry": {"type": "Point", "coordinates": [3.6102507473, 45.9228930521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb048603b53302c03225dc440a2bc2156a2f6f4", "fields": {"nom_de_la_commune": "PERPEZAT", "libell_d_acheminement": "PERPEZAT", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63274"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99baadcfa628918f57ccbb62620f54e286c4664", "fields": {"code_postal": "63920", "code_commune_insee": "63276", "libell_d_acheminement": "PESCHADOIRES", "ligne_5": "PONT DE DORE", "nom_de_la_commune": "PESCHADOIRES", "coordonnees_gps": [45.8268662803, 3.48096267622]}, "geometry": {"type": "Point", "coordinates": [3.48096267622, 45.8268662803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b0ac091277abc14db10400d37fc6decb0f43371", "fields": {"nom_de_la_commune": "PESSAT VILLENEUVE", "libell_d_acheminement": "PESSAT VILLENEUVE", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63278"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ec42bfb0906c7e032f8b4cbd04874829da1965", "fields": {"nom_de_la_commune": "PIGNOLS", "libell_d_acheminement": "PIGNOLS", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63280"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6a5cc9993b8404d9067021b0061da2d899712f", "fields": {"nom_de_la_commune": "PULVERIERES", "libell_d_acheminement": "PULVERIERES", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63290"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48f7ff694cc32886b06331dda4dabd3b17c5ebcf", "fields": {"nom_de_la_commune": "RAVEL", "libell_d_acheminement": "RAVEL", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63296"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b678c2ea2466bb97278cf49e991d3af7d30f4b3", "fields": {"nom_de_la_commune": "REIGNAT", "libell_d_acheminement": "REIGNAT", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63297"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37efe65c4f4520aab523c83b8193ea3d3b288cf8", "fields": {"nom_de_la_commune": "ROMAGNAT", "libell_d_acheminement": "ROMAGNAT", "code_postal": "63540", "coordonnees_gps": [45.7208123303, 3.08837340823], "code_commune_insee": "63307"}, "geometry": {"type": "Point", "coordinates": [3.08837340823, 45.7208123303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efca9fa955bbdb5046a40a41078cde3665113740", "fields": {"nom_de_la_commune": "STE AGATHE", "libell_d_acheminement": "STE AGATHE", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63310"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e072a044bbb687c33b88184db59922ae11325a31", "fields": {"nom_de_la_commune": "ST AMANT ROCHE SAVINE", "libell_d_acheminement": "ST AMANT ROCHE SAVINE", "code_postal": "63890", "coordonnees_gps": [45.5726810009, 3.61894402093], "code_commune_insee": "63314"}, "geometry": {"type": "Point", "coordinates": [3.61894402093, 45.5726810009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cd9c710498aa196c49992cb52e3ca0dd3ba3288", "fields": {"nom_de_la_commune": "ST ANTHEME", "libell_d_acheminement": "ST ANTHEME", "code_postal": "63660", "coordonnees_gps": [45.5294414829, 3.9086743951], "code_commune_insee": "63319"}, "geometry": {"type": "Point", "coordinates": [3.9086743951, 45.5294414829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e3d839ea9e46621ccf2e069b6a94e8ce17b2ce", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63320"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce287ea6ba7bcf592ab36ea6a308dde6a2201e1", "fields": {"code_postal": "12310", "code_commune_insee": "12120", "libell_d_acheminement": "LAISSAC SEVERAC L EGLISE", "ligne_5": "SEVERAC L EGLISE", "nom_de_la_commune": "LAISSAC SEVERAC L EGLISE", "coordonnees_gps": [44.384469335, 2.84476302604]}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddb0daf3d79b5dbb0d0bf0137bbb559d3c29ee37", "fields": {"nom_de_la_commune": "LAVAL ROQUECEZIERE", "libell_d_acheminement": "LAVAL ROQUECEZIERE", "code_postal": "12380", "coordonnees_gps": [43.8550317909, 2.62086036072], "code_commune_insee": "12125"}, "geometry": {"type": "Point", "coordinates": [2.62086036072, 43.8550317909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656776c8bc2edd67c7c29ee357cb81d76811c38a", "fields": {"nom_de_la_commune": "LA LOUBIERE", "libell_d_acheminement": "LA LOUBIERE", "code_postal": "12740", "coordonnees_gps": [44.4071370966, 2.63127194747], "code_commune_insee": "12131"}, "geometry": {"type": "Point", "coordinates": [2.63127194747, 44.4071370966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "511d205c1e88d94909ad3a690da3ee628ea82cb0", "fields": {"nom_de_la_commune": "LUGAN", "libell_d_acheminement": "LUGAN", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12134"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0454a2d381fd7a11c5b1dad5258aefe6fc63441c", "fields": {"nom_de_la_commune": "MONTEILS", "libell_d_acheminement": "MONTEILS", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12150"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab66581ee0962612e305d02a5ccd06191ee7eae", "fields": {"nom_de_la_commune": "MURASSON", "libell_d_acheminement": "MURASSON", "code_postal": "12370", "coordonnees_gps": [43.8037612905, 2.74262599071], "code_commune_insee": "12163"}, "geometry": {"type": "Point", "coordinates": [2.74262599071, 43.8037612905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e08a18e257dc41d17bc9cff1230db4abc5c09d9", "fields": {"nom_de_la_commune": "MUR DE BARREZ", "libell_d_acheminement": "MUR DE BARREZ", "code_postal": "12600", "coordonnees_gps": [44.8341310228, 2.67664580865], "code_commune_insee": "12164"}, "geometry": {"type": "Point", "coordinates": [2.67664580865, 44.8341310228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bcd6a37fbf3f8d586215d44a1b4027a27a0e42c", "fields": {"nom_de_la_commune": "MURET LE CHATEAU", "libell_d_acheminement": "MURET LE CHATEAU", "code_postal": "12330", "coordonnees_gps": [44.4669223048, 2.48171518474], "code_commune_insee": "12165"}, "geometry": {"type": "Point", "coordinates": [2.48171518474, 44.4669223048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6757776fb56cded08b79a6e86bbf19fe48c2f45a", "fields": {"nom_de_la_commune": "NANT", "libell_d_acheminement": "NANT", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12168"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44577e19773c5b6e2615dcd759d2c4c1d3def7aa", "fields": {"nom_de_la_commune": "NAUCELLE", "libell_d_acheminement": "NAUCELLE", "code_postal": "12800", "coordonnees_gps": [44.1851158215, 2.33730989448], "code_commune_insee": "12169"}, "geometry": {"type": "Point", "coordinates": [2.33730989448, 44.1851158215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88afb63127fc9a33ded6079aad73216c6de195fe", "fields": {"nom_de_la_commune": "ONET LE CHATEAU", "libell_d_acheminement": "ONET LE CHATEAU", "code_postal": "12000", "coordonnees_gps": [44.3677869063, 2.531363607], "code_commune_insee": "12176"}, "geometry": {"type": "Point", "coordinates": [2.531363607, 44.3677869063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d96d4ca3608c8fc51e8797a6fd925355a1b6ad7", "fields": {"code_postal": "12310", "code_commune_insee": "12177", "libell_d_acheminement": "PALMAS D AVEYRON", "ligne_5": "COUSSERGUES", "nom_de_la_commune": "PALMAS D AVEYRON", "coordonnees_gps": [44.384469335, 2.84476302604]}, "geometry": {"type": "Point", "coordinates": [2.84476302604, 44.384469335]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "895c03ccb479550ec8d6b2e53470e76d103f8bf6", "fields": {"nom_de_la_commune": "PRADINAS", "libell_d_acheminement": "PRADINAS", "code_postal": "12240", "coordonnees_gps": [44.3140270715, 2.24773559855], "code_commune_insee": "12189"}, "geometry": {"type": "Point", "coordinates": [2.24773559855, 44.3140270715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec73901cae5b3c7df7d123e881768c7660f1ce30", "fields": {"nom_de_la_commune": "PRUINES", "libell_d_acheminement": "PRUINES", "code_postal": "12320", "coordonnees_gps": [44.5837975359, 2.46440638377], "code_commune_insee": "12193"}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1a9dde37f60448870c120bf8543fc6c41f15f16", "fields": {"nom_de_la_commune": "REBOURGUIL", "libell_d_acheminement": "REBOURGUIL", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12195"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a8c55cb4674eb83e5f5a88ce4b0e40f724249c", "fields": {"nom_de_la_commune": "ROUSSENNAC", "libell_d_acheminement": "ROUSSENNAC", "code_postal": "12220", "coordonnees_gps": [44.4874742078, 2.20156153334], "code_commune_insee": "12206"}, "geometry": {"type": "Point", "coordinates": [2.20156153334, 44.4874742078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d41c282cc04d2295123b5931cd5d36fb31b5c7", "fields": {"nom_de_la_commune": "ST FELIX DE LUNEL", "libell_d_acheminement": "ST FELIX DE LUNEL", "code_postal": "12320", "coordonnees_gps": [44.5837975359, 2.46440638377], "code_commune_insee": "12221"}, "geometry": {"type": "Point", "coordinates": [2.46440638377, 44.5837975359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80699483b6e13ad114ef081c19030f1898cbca1", "fields": {"nom_de_la_commune": "ST FELIX DE SORGUES", "libell_d_acheminement": "ST FELIX DE SORGUES", "code_postal": "12400", "coordonnees_gps": [43.9345919276, 2.84832995912], "code_commune_insee": "12222"}, "geometry": {"type": "Point", "coordinates": [2.84832995912, 43.9345919276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b450e22e9d058a494ca4c284bc05c0d9efc605b", "fields": {"code_postal": "12420", "code_commune_insee": "12223", "libell_d_acheminement": "ARGENCES EN AUBRAC", "ligne_5": "VITRAC EN VIADENE", "nom_de_la_commune": "ARGENCES EN AUBRAC", "coordonnees_gps": [44.8196484767, 2.78404543455]}, "geometry": {"type": "Point", "coordinates": [2.78404543455, 44.8196484767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "557cba868941628daa5c0d8dc14397343d2c40b6", "fields": {"code_postal": "12140", "code_commune_insee": "12226", "libell_d_acheminement": "ST HIPPOLYTE", "ligne_5": "PONS", "nom_de_la_commune": "ST HIPPOLYTE", "coordonnees_gps": [44.6558037135, 2.58164635516]}, "geometry": {"type": "Point", "coordinates": [2.58164635516, 44.6558037135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60d5c6c79cad7a758279001e08be3477f92c4ce8", "fields": {"nom_de_la_commune": "ST JEAN DU BRUEL", "libell_d_acheminement": "ST JEAN DU BRUEL", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12231"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c5b087c40bd3d59447749c7d29cc18d83ce3f37", "fields": {"nom_de_la_commune": "ST JUERY", "libell_d_acheminement": "ST JUERY", "code_postal": "12550", "coordonnees_gps": [43.9452392779, 2.61731670514], "code_commune_insee": "12233"}, "geometry": {"type": "Point", "coordinates": [2.61731670514, 43.9452392779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a0d0cd9764a5dba1e051bbc764d8de33584d34", "fields": {"nom_de_la_commune": "SALLES COURBATIES", "libell_d_acheminement": "SALLES COURBATIES", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12252"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e0e0d105d51e335798c1660a7ab0a5b5fd2823", "fields": {"nom_de_la_commune": "SALLES CURAN", "libell_d_acheminement": "SALLES CURAN", "code_postal": "12410", "coordonnees_gps": [44.1707018059, 2.80592424455], "code_commune_insee": "12253"}, "geometry": {"type": "Point", "coordinates": [2.80592424455, 44.1707018059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a868c6c328c3e5c44ef37aa13d3574c1d99ab1f3", "fields": {"nom_de_la_commune": "SALVAGNAC CAJARC", "libell_d_acheminement": "SALVAGNAC CAJARC", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12256"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f3c5485f7fc1d5a3a02b595a124d9133e974b72", "fields": {"code_postal": "12700", "code_commune_insee": "12257", "libell_d_acheminement": "CAUSSE ET DIEGE", "ligne_5": "LOUPIAC", "nom_de_la_commune": "CAUSSE ET DIEGE", "coordonnees_gps": [44.5379394985, 2.08098402024]}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09dcfd4921c245970c01c4b07055c388959d5017", "fields": {"nom_de_la_commune": "LA SALVETAT PEYRALES", "libell_d_acheminement": "LA SALVETAT PEYRALES", "code_postal": "12440", "coordonnees_gps": [44.2188237556, 2.19456712254], "code_commune_insee": "12258"}, "geometry": {"type": "Point", "coordinates": [2.19456712254, 44.2188237556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ae24fc311f76c20e4355cb9d4c777430c5a9543", "fields": {"nom_de_la_commune": "SANVENSA", "libell_d_acheminement": "SANVENSA", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12259"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769a99a6879de0a4a904e533f298496c824a282f", "fields": {"nom_de_la_commune": "SAUCLIERES", "libell_d_acheminement": "SAUCLIERES", "code_postal": "12230", "coordonnees_gps": [43.9902158825, 3.26114811927], "code_commune_insee": "12260"}, "geometry": {"type": "Point", "coordinates": [3.26114811927, 43.9902158825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b3ddc9f42a49f516cf8f47bee2be594e4da569", "fields": {"nom_de_la_commune": "LA SELVE", "libell_d_acheminement": "LA SELVE", "code_postal": "12170", "coordonnees_gps": [44.0745006665, 2.51889903328], "code_commune_insee": "12267"}, "geometry": {"type": "Point", "coordinates": [2.51889903328, 44.0745006665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb837f3fd313e8e4ec2e500d9f69a95255438fb0", "fields": {"nom_de_la_commune": "LA SERRE", "libell_d_acheminement": "LA SERRE", "code_postal": "12380", "coordonnees_gps": [43.8550317909, 2.62086036072], "code_commune_insee": "12269"}, "geometry": {"type": "Point", "coordinates": [2.62086036072, 43.8550317909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbdcdebf17cd7833dbfed01c06ae31749b251f97", "fields": {"nom_de_la_commune": "SONNAC", "libell_d_acheminement": "SONNAC", "code_postal": "12700", "coordonnees_gps": [44.5379394985, 2.08098402024], "code_commune_insee": "12272"}, "geometry": {"type": "Point", "coordinates": [2.08098402024, 44.5379394985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2867d0076fb16437051cf5e3903a24284ed153b6", "fields": {"nom_de_la_commune": "SYLVANES", "libell_d_acheminement": "SYLVANES", "code_postal": "12360", "coordonnees_gps": [43.7904240706, 2.95795996186], "code_commune_insee": "12274"}, "geometry": {"type": "Point", "coordinates": [2.95795996186, 43.7904240706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e5aa05347436947f9b4f63a8f560715a6d72b7", "fields": {"nom_de_la_commune": "TOURNEMIRE", "libell_d_acheminement": "TOURNEMIRE", "code_postal": "12250", "coordonnees_gps": [43.948416094, 3.02271239908], "code_commune_insee": "12282"}, "geometry": {"type": "Point", "coordinates": [3.02271239908, 43.948416094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a974fa139b93741cc390197de57c8941e9a4ebd0", "fields": {"nom_de_la_commune": "LE TRUEL", "libell_d_acheminement": "LE TRUEL", "code_postal": "12430", "coordonnees_gps": [44.0864778708, 2.70135704539], "code_commune_insee": "12284"}, "geometry": {"type": "Point", "coordinates": [2.70135704539, 44.0864778708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c564754eeb08022456a5310a3163737974eb470", "fields": {"nom_de_la_commune": "VEZINS DE LEVEZOU", "libell_d_acheminement": "VEZINS DE LEVEZOU", "code_postal": "12780", "coordonnees_gps": [44.2546805214, 2.94192655254], "code_commune_insee": "12294"}, "geometry": {"type": "Point", "coordinates": [2.94192655254, 44.2546805214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6c2187c63d0d1783d551e8c29957d01c875c38", "fields": {"nom_de_la_commune": "VILLEFRANCHE DE ROUERGUE", "libell_d_acheminement": "VILLEFRANCHE DE ROUERGUE", "code_postal": "12200", "coordonnees_gps": [44.334435824, 2.00795550071], "code_commune_insee": "12300"}, "geometry": {"type": "Point", "coordinates": [2.00795550071, 44.334435824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63d19faef34691502c1dac81e89a95d5ecff024d", "fields": {"nom_de_la_commune": "VILLENEUVE", "libell_d_acheminement": "VILLENEUVE", "code_postal": "12260", "coordonnees_gps": [44.458873555, 1.98297177766], "code_commune_insee": "12301"}, "geometry": {"type": "Point", "coordinates": [1.98297177766, 44.458873555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e8414eb2f9a89f61389db46d47cfe4d152adc1", "fields": {"nom_de_la_commune": "VIVIEZ", "libell_d_acheminement": "VIVIEZ", "code_postal": "12110", "coordonnees_gps": [44.5334610269, 2.25593564519], "code_commune_insee": "12305"}, "geometry": {"type": "Point", "coordinates": [2.25593564519, 44.5334610269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f92be1fdfdf51c439a9ce89897252c53ccc09368", "fields": {"nom_de_la_commune": "AIX EN PROVENCE", "libell_d_acheminement": "AIX EN PROVENCE", "code_postal": "13090", "coordonnees_gps": [43.5360221556, 5.3983786513], "code_commune_insee": "13001"}, "geometry": {"type": "Point", "coordinates": [5.3983786513, 43.5360221556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e91e670f812a0d52df9e3ae0661e125aa70d716a", "fields": {"code_postal": "13100", "code_commune_insee": "13001", "libell_d_acheminement": "AIX EN PROVENCE", "ligne_5": "LA DURANNE", "nom_de_la_commune": "AIX EN PROVENCE", "coordonnees_gps": [43.5353485115, 5.4345381961]}, "geometry": {"type": "Point", "coordinates": [5.4345381961, 43.5353485115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "656bbd5b6ec5ee484ed240555599130803c17d18", "fields": {"nom_de_la_commune": "ARLES", "libell_d_acheminement": "ARLES", "code_postal": "13200", "coordonnees_gps": [43.5467808819, 4.66183385891], "code_commune_insee": "13004"}, "geometry": {"type": "Point", "coordinates": [4.66183385891, 43.5467808819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64076dbcc2e6a1fe25dabc9bf40d9468e80ae46b", "fields": {"code_postal": "13400", "code_commune_insee": "13005", "libell_d_acheminement": "AUBAGNE", "ligne_5": "CHARREL", "nom_de_la_commune": "AUBAGNE", "coordonnees_gps": [43.2934747963, 5.56322795554]}, "geometry": {"type": "Point", "coordinates": [5.56322795554, 43.2934747963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb302b97d2d563b8df93551ab82eb24365f368b9", "fields": {"code_postal": "13720", "code_commune_insee": "13013", "libell_d_acheminement": "BELCODENE", "ligne_5": "LA POMME", "nom_de_la_commune": "BELCODENE", "coordonnees_gps": [43.4097271904, 5.60183954858]}, "geometry": {"type": "Point", "coordinates": [5.60183954858, 43.4097271904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e835c362ee9f407e5b02d2acada068bc8fa072bf", "fields": {"nom_de_la_commune": "LA BOUILLADISSE", "libell_d_acheminement": "LA BOUILLADISSE", "code_postal": "13720", "coordonnees_gps": [43.4097271904, 5.60183954858], "code_commune_insee": "13016"}, "geometry": {"type": "Point", "coordinates": [5.60183954858, 43.4097271904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4d089f9f912e233181f4b8d8b7fbe0dd037696", "fields": {"code_postal": "13720", "code_commune_insee": "13016", "libell_d_acheminement": "LA BOUILLADISSE", "ligne_5": "LE PIGEONNIER", "nom_de_la_commune": "LA BOUILLADISSE", "coordonnees_gps": [43.4097271904, 5.60183954858]}, "geometry": {"type": "Point", "coordinates": [5.60183954858, 43.4097271904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23fcf84b0bb1aaf5734deeea1b69de26a27669d1", "fields": {"nom_de_la_commune": "BOULBON", "libell_d_acheminement": "BOULBON", "code_postal": "13150", "coordonnees_gps": [43.811635575, 4.68697564727], "code_commune_insee": "13017"}, "geometry": {"type": "Point", "coordinates": [4.68697564727, 43.811635575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8db19b3b4980faa667f9c55ea525c42cba1d7649", "fields": {"code_postal": "13620", "code_commune_insee": "13021", "libell_d_acheminement": "CARRY LE ROUET", "ligne_5": "LE ROUET", "nom_de_la_commune": "CARRY LE ROUET", "coordonnees_gps": [43.3421734336, 5.15446218306]}, "geometry": {"type": "Point", "coordinates": [5.15446218306, 43.3421734336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "584c4f36089b942f559d161f30afce6c04c18b37", "fields": {"code_postal": "13710", "code_commune_insee": "13040", "libell_d_acheminement": "FUVEAU", "ligne_5": "LA BARQUE", "nom_de_la_commune": "FUVEAU", "coordonnees_gps": [43.4598825054, 5.55318993446]}, "geometry": {"type": "Point", "coordinates": [5.55318993446, 43.4598825054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6895553bcf9943921e74700d022be4339141fe3", "fields": {"code_postal": "13120", "code_commune_insee": "13041", "libell_d_acheminement": "GARDANNE", "ligne_5": "NOTRE DAME", "nom_de_la_commune": "GARDANNE", "coordonnees_gps": [43.4527470657, 5.47999296124]}, "geometry": {"type": "Point", "coordinates": [5.47999296124, 43.4527470657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dcfe3a6c423cbeec9110cb3367dc27c2d581a23", "fields": {"nom_de_la_commune": "GRANS", "libell_d_acheminement": "GRANS", "code_postal": "13450", "coordonnees_gps": [43.6143725097, 5.04547175454], "code_commune_insee": "13044"}, "geometry": {"type": "Point", "coordinates": [5.04547175454, 43.6143725097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb8faa481bf82f6bdbdcc5bc3638a86021d6fb0", "fields": {"nom_de_la_commune": "LAMANON", "libell_d_acheminement": "LAMANON", "code_postal": "13113", "coordonnees_gps": [43.7049222904, 5.08876899348], "code_commune_insee": "13049"}, "geometry": {"type": "Point", "coordinates": [5.08876899348, 43.7049222904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dae6d879f4f71d5fa9bf414656571b8f95a11daf", "fields": {"nom_de_la_commune": "MALLEMORT", "libell_d_acheminement": "MALLEMORT", "code_postal": "13370", "coordonnees_gps": [43.7285521313, 5.18352622599], "code_commune_insee": "13053"}, "geometry": {"type": "Point", "coordinates": [5.18352622599, 43.7285521313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e22a5456e40e3eb57cc0f1919562eec0be7f5fb3", "fields": {"code_postal": "13370", "code_commune_insee": "13053", "libell_d_acheminement": "MALLEMORT", "ligne_5": "NOTRE DAME", "nom_de_la_commune": "MALLEMORT", "coordonnees_gps": [43.7285521313, 5.18352622599]}, "geometry": {"type": "Point", "coordinates": [5.18352622599, 43.7285521313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1270543553f45dbb05b38f6bdf888fc7a1332b66", "fields": {"nom_de_la_commune": "MARIGNANE", "libell_d_acheminement": "MARIGNANE", "code_postal": "13700", "coordonnees_gps": [43.4167055832, 5.21911721754], "code_commune_insee": "13054"}, "geometry": {"type": "Point", "coordinates": [5.21911721754, 43.4167055832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34be5ddbecb0c806d2421fb9caa75242596e9437", "fields": {"code_postal": "13500", "code_commune_insee": "13056", "libell_d_acheminement": "MARTIGUES", "ligne_5": "CROIX STE", "nom_de_la_commune": "MARTIGUES", "coordonnees_gps": [43.3799117548, 5.04948307536]}, "geometry": {"type": "Point", "coordinates": [5.04948307536, 43.3799117548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fe9cd07788034b6a00d7316d39a1f657739c320", "fields": {"nom_de_la_commune": "MEYREUIL", "libell_d_acheminement": "MEYREUIL", "code_postal": "13590", "coordonnees_gps": [43.4909664317, 5.50034131197], "code_commune_insee": "13060"}, "geometry": {"type": "Point", "coordinates": [5.50034131197, 43.4909664317]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a23aff676e35421ea5034f253b9f9d5a8af94e9", "fields": {"nom_de_la_commune": "NOVES", "libell_d_acheminement": "NOVES", "code_postal": "13550", "coordonnees_gps": [43.8586962525, 4.89971574687], "code_commune_insee": "13066"}, "geometry": {"type": "Point", "coordinates": [4.89971574687, 43.8586962525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f2d5c465e76783701dd37dd4c0be954f4caed4c", "fields": {"nom_de_la_commune": "PARADOU", "libell_d_acheminement": "PARADOU", "code_postal": "13520", "coordonnees_gps": [43.7214018039, 4.81156485939], "code_commune_insee": "13068"}, "geometry": {"type": "Point", "coordinates": [4.81156485939, 43.7214018039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c968030086cd1d5cc21aa831e9f33a2ba95de948", "fields": {"code_postal": "13821", "code_commune_insee": "13070", "libell_d_acheminement": "LA PENNE SUR HUVEAUNE", "ligne_5": "BASTIDONNE", "nom_de_la_commune": "LA PENNE SUR HUVEAUNE", "coordonnees_gps": [43.2768119604, 5.51843444856]}, "geometry": {"type": "Point", "coordinates": [5.51843444856, 43.2768119604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f1a210af4f0dae0fd8f88111eac6a8ae2d6cb8e", "fields": {"nom_de_la_commune": "LES PENNES MIRABEAU", "libell_d_acheminement": "LES PENNES MIRABEAU", "code_postal": "13170", "coordonnees_gps": [43.4029905656, 5.31524145388], "code_commune_insee": "13071"}, "geometry": {"type": "Point", "coordinates": [5.31524145388, 43.4029905656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf2976e64f308147461fc87962a9806a031e084d", "fields": {"code_postal": "13170", "code_commune_insee": "13071", "libell_d_acheminement": "LES PENNES MIRABEAU", "ligne_5": "LES CADENEAUX", "nom_de_la_commune": "LES PENNES MIRABEAU", "coordonnees_gps": [43.4029905656, 5.31524145388]}, "geometry": {"type": "Point", "coordinates": [5.31524145388, 43.4029905656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "075cede74b85e5d46f6b313bf0368f8fc0f21736", "fields": {"code_postal": "13360", "code_commune_insee": "13086", "libell_d_acheminement": "ROQUEVAIRE", "ligne_5": "PONT DE L ETOILE", "nom_de_la_commune": "ROQUEVAIRE", "coordonnees_gps": [43.3435929565, 5.59815037095]}, "geometry": {"type": "Point", "coordinates": [5.59815037095, 43.3435929565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d6837cf36ebeb15ff119c5f96e1f9ce099dc6c9", "fields": {"code_postal": "13740", "code_commune_insee": "13088", "libell_d_acheminement": "LE ROVE", "ligne_5": "LE PIGEONNIER", "nom_de_la_commune": "LE ROVE", "coordonnees_gps": [43.3653006845, 5.25320648556]}, "geometry": {"type": "Point", "coordinates": [5.25320648556, 43.3653006845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a2b478c628d54ccf4fc9d894edfb11057eb7f11", "fields": {"nom_de_la_commune": "ST ANDIOL", "libell_d_acheminement": "ST ANDIOL", "code_postal": "13670", "coordonnees_gps": [43.8324998868, 4.94392199564], "code_commune_insee": "13089"}, "geometry": {"type": "Point", "coordinates": [4.94392199564, 43.8324998868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51088a2ae6653ab44d156cde9bbc8895a3e2f5de", "fields": {"nom_de_la_commune": "ST ANTONIN SUR BAYON", "libell_d_acheminement": "ST ANTONIN SUR BAYON", "code_postal": "13100", "coordonnees_gps": [43.5353485115, 5.4345381961], "code_commune_insee": "13090"}, "geometry": {"type": "Point", "coordinates": [5.4345381961, 43.5353485115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd688dfc0489a0d4229611e2d3ce4b92c63e8526", "fields": {"nom_de_la_commune": "ST ESTEVE JANSON", "libell_d_acheminement": "ST ESTEVE JANSON", "code_postal": "13610", "coordonnees_gps": [43.6568962818, 5.43309442069], "code_commune_insee": "13093"}, "geometry": {"type": "Point", "coordinates": [5.43309442069, 43.6568962818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "113582b01b2c8e7c3cdf085f176fd2bcfd6673b9", "fields": {"nom_de_la_commune": "ST ETIENNE DU GRES", "libell_d_acheminement": "ST ETIENNE DU GRES", "code_postal": "13103", "coordonnees_gps": [43.7851447818, 4.737135688], "code_commune_insee": "13094"}, "geometry": {"type": "Point", "coordinates": [4.737135688, 43.7851447818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9ae28946a588d545f8ecf8b0c072750dab590e", "fields": {"nom_de_la_commune": "ST PAUL LES DURANCE", "libell_d_acheminement": "ST PAUL LES DURANCE", "code_postal": "13115", "coordonnees_gps": [43.6852706669, 5.75342735818], "code_commune_insee": "13099"}, "geometry": {"type": "Point", "coordinates": [5.75342735818, 43.6852706669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a49c202af60fb41305750f165364a73d0fd3a1e4", "fields": {"nom_de_la_commune": "ST SAVOURNIN", "libell_d_acheminement": "ST SAVOURNIN", "code_postal": "13119", "coordonnees_gps": [43.4053290056, 5.53123626453], "code_commune_insee": "13101"}, "geometry": {"type": "Point", "coordinates": [5.53123626453, 43.4053290056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208d4bc65dba048365a2786466a19ec710e3aaf8", "fields": {"nom_de_la_commune": "SENAS", "libell_d_acheminement": "SENAS", "code_postal": "13560", "coordonnees_gps": [43.744715475, 5.08661568402], "code_commune_insee": "13105"}, "geometry": {"type": "Point", "coordinates": [5.08661568402, 43.744715475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a469bd8f1f897196286cb6e20fb9c8b1e4b58cb9", "fields": {"nom_de_la_commune": "SEPTEMES LES VALLONS", "libell_d_acheminement": "SEPTEMES LES VALLONS", "code_postal": "13240", "coordonnees_gps": [43.3934308591, 5.38108138209], "code_commune_insee": "13106"}, "geometry": {"type": "Point", "coordinates": [5.38108138209, 43.3934308591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8686ef6ee499069f10ed27311d30058af8e11ef", "fields": {"code_postal": "13240", "code_commune_insee": "13106", "libell_d_acheminement": "SEPTEMES LES VALLONS", "ligne_5": "LA ROUGIERE", "nom_de_la_commune": "SEPTEMES LES VALLONS", "coordonnees_gps": [43.3934308591, 5.38108138209]}, "geometry": {"type": "Point", "coordinates": [5.38108138209, 43.3934308591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "866d5094fe05a625995c0eb135b4e5faf73259e1", "fields": {"nom_de_la_commune": "VELAUX", "libell_d_acheminement": "VELAUX", "code_postal": "13880", "coordonnees_gps": [43.5238343825, 5.24907547075], "code_commune_insee": "13112"}, "geometry": {"type": "Point", "coordinates": [5.24907547075, 43.5238343825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae130a85e760e8fae42113a408c0cbb92297a74", "fields": {"nom_de_la_commune": "VENTABREN", "libell_d_acheminement": "VENTABREN", "code_postal": "13122", "coordonnees_gps": [43.5419817981, 5.30592844079], "code_commune_insee": "13114"}, "geometry": {"type": "Point", "coordinates": [5.30592844079, 43.5419817981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234588785b7ee8ba354ebbd55863fb7a2d6f29c3", "fields": {"nom_de_la_commune": "MARSEILLE 04", "libell_d_acheminement": "MARSEILLE", "code_postal": "13004", "coordonnees_gps": [43.306734414, 5.4008326497], "code_commune_insee": "13204"}, "geometry": {"type": "Point", "coordinates": [5.4008326497, 43.306734414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89ce610e36bb8bc4562cd341e3c9a4acf6685625", "fields": {"nom_de_la_commune": "MARSEILLE 10", "libell_d_acheminement": "MARSEILLE", "code_postal": "13010", "coordonnees_gps": [43.2754608324, 5.42717354435], "code_commune_insee": "13210"}, "geometry": {"type": "Point", "coordinates": [5.42717354435, 43.2754608324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7b7a6f39a2ec8b0136b9be156021c6e1c62cf79", "fields": {"code_postal": "13013", "code_commune_insee": "13213", "libell_d_acheminement": "MARSEILLE", "ligne_5": "CHATEAU GOMBERT", "nom_de_la_commune": "MARSEILLE 13", "coordonnees_gps": [43.3495227907, 5.43359654239]}, "geometry": {"type": "Point", "coordinates": [5.43359654239, 43.3495227907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de3a4b726311caf9e890f3381ab4e5fd5396a9c", "fields": {"code_postal": "13013", "code_commune_insee": "13213", "libell_d_acheminement": "MARSEILLE", "ligne_5": "ST MITRE", "nom_de_la_commune": "MARSEILLE 13", "coordonnees_gps": [43.3495227907, 5.43359654239]}, "geometry": {"type": "Point", "coordinates": [5.43359654239, 43.3495227907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ac1ca9aa7cfd18f4da48e977d8e6c4966ebe00", "fields": {"nom_de_la_commune": "MARSEILLE 14", "libell_d_acheminement": "MARSEILLE", "code_postal": "13014", "coordonnees_gps": [43.3450777877, 5.39342814099], "code_commune_insee": "13214"}, "geometry": {"type": "Point", "coordinates": [5.39342814099, 43.3450777877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d54d019f615e2a8b1329cae9f2a249333408257c", "fields": {"code_postal": "13016", "code_commune_insee": "13216", "libell_d_acheminement": "MARSEILLE", "ligne_5": "L ESTAQUE", "nom_de_la_commune": "MARSEILLE 16", "coordonnees_gps": [43.3653397513, 5.31284148855]}, "geometry": {"type": "Point", "coordinates": [5.31284148855, 43.3653397513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2443a8167f8ec486b2766871e16ace168e5ce3aa", "fields": {"nom_de_la_commune": "AGY", "libell_d_acheminement": "AGY", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14003"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d2ff60fef03c4e22aea132354549ae920c8ba9", "fields": {"nom_de_la_commune": "AIGNERVILLE", "libell_d_acheminement": "AIGNERVILLE", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14004"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58a041687449292342f494a73350304dd966841", "fields": {"nom_de_la_commune": "AMBLIE", "libell_d_acheminement": "AMBLIE", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14008"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ad160a99f8c2a84d815ff9ee57d2a7a8137144", "fields": {"nom_de_la_commune": "ANGERVILLE", "libell_d_acheminement": "ANGERVILLE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14012"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd655312399d490bd592007382a28cb6c6f55b9", "fields": {"nom_de_la_commune": "ARGENCES", "libell_d_acheminement": "ARGENCES", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14020"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a53b7923ae1646df5923e100cb96860441a1b66", "fields": {"nom_de_la_commune": "AUBERVILLE", "libell_d_acheminement": "AUBERVILLE", "code_postal": "14640", "coordonnees_gps": [49.3070612081, -0.000385070160039], "code_commune_insee": "14024"}, "geometry": {"type": "Point", "coordinates": [-0.000385070160039, 49.3070612081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b3bdc582a1086cda655926c5c96cdd264c16e2", "fields": {"code_postal": "14490", "code_commune_insee": "14035", "libell_d_acheminement": "BALLEROY SUR DROME", "ligne_5": "VAUBADON", "nom_de_la_commune": "BALLEROY SUR DROME", "coordonnees_gps": [49.1880103756, -0.822491149883]}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d3a09a3c1080ce284697c9cb13f98e0b7e4588", "fields": {"nom_de_la_commune": "BARBEVILLE", "libell_d_acheminement": "BARBEVILLE", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14040"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8cff539dfb9a4b175ad0a869b54d8310047f9db", "fields": {"nom_de_la_commune": "BAVENT", "libell_d_acheminement": "BAVENT", "code_postal": "14860", "coordonnees_gps": [49.2320742988, -0.215810077728], "code_commune_insee": "14046"}, "geometry": {"type": "Point", "coordinates": [-0.215810077728, 49.2320742988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae8779af78df9024a180aac94dec720ef5bcc35", "fields": {"nom_de_la_commune": "LA BAZOQUE", "libell_d_acheminement": "LA BAZOQUE", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14050"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "615b0500e5d77591dd0a6705032df47041658146", "fields": {"nom_de_la_commune": "BAUQUAY", "libell_d_acheminement": "BAUQUAY", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14056"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0592f580a59453345814f7d98c4c8051b7d4615", "fields": {"nom_de_la_commune": "BENOUVILLE", "libell_d_acheminement": "BENOUVILLE", "code_postal": "14970", "coordonnees_gps": [49.2501319411, -0.286272697586], "code_commune_insee": "14060"}, "geometry": {"type": "Point", "coordinates": [-0.286272697586, 49.2501319411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82451750df54f29baae81dd8ad22d073d76024b0", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "LA FERRIERE AU DOYEN", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6cc1f9f668c47998b9b1f18d326f07939960443", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "LE BENY BOCAGE", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840037ccfd62adaaa17f02423ccdac39846660a5", "fields": {"code_postal": "14350", "code_commune_insee": "14061", "libell_d_acheminement": "SOULEUVRE EN BOCAGE", "ligne_5": "ST MARTIN DON", "nom_de_la_commune": "SOULEUVRE EN BOCAGE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc54afd0e71153478c7da876794200ee1ead41f7", "fields": {"nom_de_la_commune": "BISSIERES", "libell_d_acheminement": "BISSIERES", "code_postal": "14370", "coordonnees_gps": [49.1190784398, -0.159512854419], "code_commune_insee": "14075"}, "geometry": {"type": "Point", "coordinates": [-0.159512854419, 49.1190784398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "812d48d5a991e27a66ed8cc9f8a5ad7b0ac6671a", "fields": {"nom_de_la_commune": "BLANGY LE CHATEAU", "libell_d_acheminement": "BLANGY LE CHATEAU", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14077"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e8657314dac134c886974007014062876aafdc9", "fields": {"nom_de_la_commune": "BONS TASSILLY", "libell_d_acheminement": "BONS TASSILLY", "code_postal": "14420", "coordonnees_gps": [48.9529350407, -0.254216402592], "code_commune_insee": "14088"}, "geometry": {"type": "Point", "coordinates": [-0.254216402592, 48.9529350407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1787f946ea68fa9b431256283d65bd647bb0f0c", "fields": {"nom_de_la_commune": "BOURGUEBUS", "libell_d_acheminement": "BOURGUEBUS", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14092"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c710821ff7159d8dcbbd4c971b0a29be576a15b", "fields": {"nom_de_la_commune": "RANCON", "libell_d_acheminement": "RANCON", "code_postal": "87290", "coordonnees_gps": [46.1497841077, 1.2728577587], "code_commune_insee": "87121"}, "geometry": {"type": "Point", "coordinates": [1.2728577587, 46.1497841077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e18b7f2a63978ff51a2d1a84f68a6092fda1a7e", "fields": {"nom_de_la_commune": "RILHAC LASTOURS", "libell_d_acheminement": "RILHAC LASTOURS", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87124"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e2fc5c8de789e39b24fcc69e01d66b4bf59e2b", "fields": {"nom_de_la_commune": "ST BARBANT", "libell_d_acheminement": "ST BARBANT", "code_postal": "87330", "coordonnees_gps": [46.112617356, 0.896746440713], "code_commune_insee": "87136"}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dab82f694c251e19b4531e7994aa0df4caf09b89", "fields": {"nom_de_la_commune": "ST HILAIRE LA TREILLE", "libell_d_acheminement": "ST HILAIRE LA TREILLE", "code_postal": "87190", "coordonnees_gps": [46.235451221, 1.21744505876], "code_commune_insee": "87149"}, "geometry": {"type": "Point", "coordinates": [1.21744505876, 46.235451221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2327e736d6cda0a562104e0ea1ee79ca353e224", "fields": {"nom_de_la_commune": "ST HILAIRE LES PLACES", "libell_d_acheminement": "ST HILAIRE LES PLACES", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87150"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77b3daf1fbfdb2a8c972b6e2b837c25d55dabf8e", "fields": {"nom_de_la_commune": "ST LEGER LA MONTAGNE", "libell_d_acheminement": "ST LEGER LA MONTAGNE", "code_postal": "87340", "coordonnees_gps": [46.0084101721, 1.47236687338], "code_commune_insee": "87159"}, "geometry": {"type": "Point", "coordinates": [1.47236687338, 46.0084101721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d3ea6b4e6572442becd2b8dcc670929f6e66667", "fields": {"nom_de_la_commune": "ST SULPICE LAURIERE", "libell_d_acheminement": "ST SULPICE LAURIERE", "code_postal": "87370", "coordonnees_gps": [46.0621632693, 1.46879838783], "code_commune_insee": "87181"}, "geometry": {"type": "Point", "coordinates": [1.46879838783, 46.0621632693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1b074387a142d7cc5357bbb2c6d71cf380de7fe", "fields": {"nom_de_la_commune": "ST SYLVESTRE", "libell_d_acheminement": "ST SYLVESTRE", "code_postal": "87240", "coordonnees_gps": [45.9667893099, 1.40820306332], "code_commune_insee": "87183"}, "geometry": {"type": "Point", "coordinates": [1.40820306332, 45.9667893099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0f449b7a59bb2f4645da0e7d40c4e830a016b23", "fields": {"nom_de_la_commune": "THOURON", "libell_d_acheminement": "THOURON", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87197"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd1e3ad019621cd5bd8fc9158241eea00f9244d7", "fields": {"nom_de_la_commune": "VAYRES", "libell_d_acheminement": "VAYRES", "code_postal": "87600", "coordonnees_gps": [45.7931752464, 0.809506668159], "code_commune_insee": "87199"}, "geometry": {"type": "Point", "coordinates": [0.809506668159, 45.7931752464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2707fa2a91274bc4aa75d0c11e7a17f2c5a7885b", "fields": {"nom_de_la_commune": "VERNEUIL SUR VIENNE", "libell_d_acheminement": "VERNEUIL SUR VIENNE", "code_postal": "87430", "coordonnees_gps": [45.8505671289, 1.12901059149], "code_commune_insee": "87201"}, "geometry": {"type": "Point", "coordinates": [1.12901059149, 45.8505671289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf48146b5c3773e40c1956841f31b562592d05c", "fields": {"nom_de_la_commune": "VILLEFAVARD", "libell_d_acheminement": "VILLEFAVARD", "code_postal": "87190", "coordonnees_gps": [46.235451221, 1.21744505876], "code_commune_insee": "87206"}, "geometry": {"type": "Point", "coordinates": [1.21744505876, 46.235451221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b16b56b3892face7b29a635c9cc463ff0b41a92", "fields": {"nom_de_la_commune": "ALLARMONT", "libell_d_acheminement": "ALLARMONT", "code_postal": "88110", "coordonnees_gps": [48.4500564784, 6.97091495001], "code_commune_insee": "88005"}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "719d32084efa2cfd78908794c3982d10cbb976ce", "fields": {"nom_de_la_commune": "AMEUVELLE", "libell_d_acheminement": "AMEUVELLE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88007"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "963f2a110bfa6eb09e9c226501d29a5062c5291f", "fields": {"nom_de_la_commune": "AUTIGNY LA TOUR", "libell_d_acheminement": "AUTIGNY LA TOUR", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88019"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9231fe43c372a5635a347c20b3a295ac016228cb", "fields": {"nom_de_la_commune": "AVILLERS", "libell_d_acheminement": "AVILLERS", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88023"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "189f0d2e61df5fa584e4867940264ae0fcc256d2", "fields": {"nom_de_la_commune": "AYDOILLES", "libell_d_acheminement": "AYDOILLES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88026"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd5fe8d7f19d809d8ee4f165ac53d8f0c4eafd1d", "fields": {"nom_de_la_commune": "BADMENIL AUX BOIS", "libell_d_acheminement": "BADMENIL AUX BOIS", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88027"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e43d30a0922a6a0d2990719e38ca844425acbb8e", "fields": {"nom_de_la_commune": "BAN DE LAVELINE", "libell_d_acheminement": "BAN DE LAVELINE", "code_postal": "88520", "coordonnees_gps": [48.2317545938, 7.08210366402], "code_commune_insee": "88032"}, "geometry": {"type": "Point", "coordinates": [7.08210366402, 48.2317545938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f24298ac643c4f927ee2fa798978fe8984f2a01b", "fields": {"nom_de_la_commune": "BASSE SUR LE RUPT", "libell_d_acheminement": "BASSE SUR LE RUPT", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88037"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4804111e45a74f436d80d95ca8fd668f8b37cc6", "fields": {"nom_de_la_commune": "BAYECOURT", "libell_d_acheminement": "BAYECOURT", "code_postal": "88150", "coordonnees_gps": [48.2558226475, 6.42027850113], "code_commune_insee": "88040"}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da424011179b4ca062eca7fc28bf6b337dbbfff2", "fields": {"nom_de_la_commune": "BAZOILLES SUR MEUSE", "libell_d_acheminement": "BAZOILLES SUR MEUSE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88044"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c10f0670bf08cbc08eb7c241247316a49d1d604", "fields": {"nom_de_la_commune": "BELMONT LES DARNEY", "libell_d_acheminement": "BELMONT LES DARNEY", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88049"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbbf051dae58b1076180c3df94a87dab4e53a6d0", "fields": {"nom_de_la_commune": "BERTRIMOUTIER", "libell_d_acheminement": "BERTRIMOUTIER", "code_postal": "88520", "coordonnees_gps": [48.2317545938, 7.08210366402], "code_commune_insee": "88054"}, "geometry": {"type": "Point", "coordinates": [7.08210366402, 48.2317545938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f5fc2de2b9712ae86b88b2ab27daea20f814b9f", "fields": {"nom_de_la_commune": "BETTONCOURT", "libell_d_acheminement": "BETTONCOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88056"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86878f3e0dd8145815174c4ac0c1c88be4e521de", "fields": {"nom_de_la_commune": "BOCQUEGNEY", "libell_d_acheminement": "BOCQUEGNEY", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88063"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25ca015b14832379b584be104c38da41d0853b7e", "fields": {"nom_de_la_commune": "LA BOURGONCE", "libell_d_acheminement": "LA BOURGONCE", "code_postal": "88470", "coordonnees_gps": [48.3159931003, 6.84826816273], "code_commune_insee": "88068"}, "geometry": {"type": "Point", "coordinates": [6.84826816273, 48.3159931003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a50c4a78ab86a7542f625454368dd51f69394fe4", "fields": {"nom_de_la_commune": "BOUXIERES AUX BOIS", "libell_d_acheminement": "BOUXIERES AUX BOIS", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88069"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a8da5ab49fd01101c875ae0689b9018a59c106f", "fields": {"nom_de_la_commune": "BROUVELIEURES", "libell_d_acheminement": "BROUVELIEURES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88076"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fa6a6d4b1b26ebebd56cfee6cbbbe4dbd9767ca", "fields": {"nom_de_la_commune": "CHAMPDRAY", "libell_d_acheminement": "CHAMPDRAY", "code_postal": "88640", "coordonnees_gps": [48.1317016087, 6.78306883061], "code_commune_insee": "88085"}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "130646e56dece74b7981a56990e992f7b790d847", "fields": {"code_postal": "88240", "code_commune_insee": "88088", "libell_d_acheminement": "LA CHAPELLE AUX BOIS", "ligne_5": "GREMIFONTAINE", "nom_de_la_commune": "LA CHAPELLE AUX BOIS", "coordonnees_gps": [48.007182961, 6.25362129699]}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167319594f5798bda191bfbecbf03763b4b0fae4", "fields": {"nom_de_la_commune": "CHARMOIS L ORGUEILLEUX", "libell_d_acheminement": "CHARMOIS L ORGUEILLEUX", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88092"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a11a398971ee6cc8541e504279a016c468aeaeb", "fields": {"nom_de_la_commune": "CHATILLON SUR SAONE", "libell_d_acheminement": "CHATILLON SUR SAONE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88096"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6bd447689d38bbc97e02495cca605edb7f0c132", "fields": {"nom_de_la_commune": "CHAUFFECOURT", "libell_d_acheminement": "CHAUFFECOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88097"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56078b6b7ae87042fd4c81d0b2a9acd34c53f9e7", "fields": {"code_postal": "88230", "code_commune_insee": "88106", "libell_d_acheminement": "BAN SUR MEURTHE CLEFCY", "ligne_5": "BAN SUR MEURTHE", "nom_de_la_commune": "BAN SUR MEURTHE CLEFCY", "coordonnees_gps": [48.1335194001, 7.00987852729]}, "geometry": {"type": "Point", "coordinates": [7.00987852729, 48.1335194001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3287785386f16851c291caf11f9c72724b55c87b", "fields": {"nom_de_la_commune": "LE CLERJUS", "libell_d_acheminement": "LE CLERJUS", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88108"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80566eea200abc21981588e878e6f78e7b53ffb3", "fields": {"nom_de_la_commune": "CONTREXEVILLE", "libell_d_acheminement": "CONTREXEVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88114"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eff4561876bbc1744b641293521662f880d0c0d", "fields": {"nom_de_la_commune": "DEINVILLERS", "libell_d_acheminement": "DEINVILLERS", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88127"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d517ade9b9c7fec16cc514e9aee52d65bec526cd", "fields": {"nom_de_la_commune": "DOCELLES", "libell_d_acheminement": "DOCELLES", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88135"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d83c01fa83f920ada258c98508bbcad390b691e", "fields": {"nom_de_la_commune": "DOMMARTIN LES REMIREMONT", "libell_d_acheminement": "DOMMARTIN LES REMIREMONT", "code_postal": "88200", "coordonnees_gps": [48.0187075371, 6.60603974178], "code_commune_insee": "88148"}, "geometry": {"type": "Point", "coordinates": [6.60603974178, 48.0187075371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "debd6ffb6670555a96d14207a27609d9f30c03cd", "fields": {"nom_de_la_commune": "DOMPAIRE", "libell_d_acheminement": "DOMPAIRE", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88151"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14189b380e62cfa438990319b6d098e03aa67a99", "fields": {"nom_de_la_commune": "DOMREMY LA PUCELLE", "libell_d_acheminement": "DOMREMY LA PUCELLE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88154"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d877d1c462f399dbab123b50c0bc8a97f441277", "fields": {"nom_de_la_commune": "ETIVAL CLAIREFONTAINE", "libell_d_acheminement": "ETIVAL CLAIREFONTAINE", "code_postal": "88480", "coordonnees_gps": [48.3578241534, 6.83459479111], "code_commune_insee": "88165"}, "geometry": {"type": "Point", "coordinates": [6.83459479111, 48.3578241534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "878d855ad06f580126abaee6d4ce9a966ae95b88", "fields": {"nom_de_la_commune": "FAYS", "libell_d_acheminement": "FAYS", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88169"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c1f813810c411d4e8f6127fb1ce633a3cb717d", "fields": {"code_postal": "88240", "code_commune_insee": "88176", "libell_d_acheminement": "FONTENOY LE CHATEAU", "ligne_5": "LE MAGNY", "nom_de_la_commune": "FONTENOY LE CHATEAU", "coordonnees_gps": [48.007182961, 6.25362129699]}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3fb02a75cda36df8395acc900db6187d9301c85", "fields": {"nom_de_la_commune": "FRAIZE", "libell_d_acheminement": "FRAIZE", "code_postal": "88230", "coordonnees_gps": [48.1335194001, 7.00987852729], "code_commune_insee": "88181"}, "geometry": {"type": "Point", "coordinates": [7.00987852729, 48.1335194001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f5c8832fac2676aa39150342524df9e11b127a6", "fields": {"nom_de_la_commune": "GELVECOURT ET ADOMPT", "libell_d_acheminement": "GELVECOURT ET ADOMPT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88192"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa69df516427f193a2e4b867f640ea3a894127d9", "fields": {"nom_de_la_commune": "GEMAINGOUTTE", "libell_d_acheminement": "GEMAINGOUTTE", "code_postal": "88520", "coordonnees_gps": [48.2317545938, 7.08210366402], "code_commune_insee": "88193"}, "geometry": {"type": "Point", "coordinates": [7.08210366402, 48.2317545938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22baf82da33fb2691748ffeefb38fa3694c7c1af", "fields": {"nom_de_la_commune": "GERARDMER", "libell_d_acheminement": "GERARDMER", "code_postal": "88400", "coordonnees_gps": [48.0708964326, 6.88124451872], "code_commune_insee": "88196"}, "geometry": {"type": "Point", "coordinates": [6.88124451872, 48.0708964326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a2f75aea2ebc87c50f6a2fab2ed640f0f43558", "fields": {"nom_de_la_commune": "GIRANCOURT", "libell_d_acheminement": "GIRANCOURT", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88201"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eaa6543f0450a9a01b5da4e53c9cd94c9bb75df", "fields": {"nom_de_la_commune": "GIRCOURT LES VIEVILLE", "libell_d_acheminement": "GIRCOURT LES VIEVILLE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88202"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9929b1065eb0bcf5110f9d32209eb8a31114f226", "fields": {"nom_de_la_commune": "GODONCOURT", "libell_d_acheminement": "GODONCOURT", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88208"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0bf5b1a23cd1f68ab8b6c0dfae8ab5fe891b607", "fields": {"nom_de_la_commune": "GORHEY", "libell_d_acheminement": "GORHEY", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88210"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9a10a0c583adf7e84f1ae4d65b8bed7557c6e9e", "fields": {"nom_de_la_commune": "GRANDRUPT", "libell_d_acheminement": "GRANDRUPT", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88215"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7d79e25afd3ceb3f7d94778ec56c7f829192ec0", "fields": {"nom_de_la_commune": "GUGNEY AUX AULX", "libell_d_acheminement": "GUGNEY AUX AULX", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88223"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc1e8e3b13206dadd7a36b01de4f9fe88227606", "fields": {"nom_de_la_commune": "HADOL", "libell_d_acheminement": "HADOL", "code_postal": "88220", "coordonnees_gps": [48.0725237155, 6.41958186786], "code_commune_insee": "88225"}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d06a697bb00896cecfa9fdc29c3e8a7e48762bd", "fields": {"nom_de_la_commune": "IGNEY", "libell_d_acheminement": "IGNEY", "code_postal": "88150", "coordonnees_gps": [48.2558226475, 6.42027850113], "code_commune_insee": "88247"}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e02f4f301317febf15df0a6c759777a8ecf6d9c", "fields": {"nom_de_la_commune": "JARMENIL", "libell_d_acheminement": "JARMENIL", "code_postal": "88550", "coordonnees_gps": [48.1006109096, 6.57246220257], "code_commune_insee": "88250"}, "geometry": {"type": "Point", "coordinates": [6.57246220257, 48.1006109096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182b275fcd06b66ebffa7a6262fa64d2c2c06c7f", "fields": {"nom_de_la_commune": "JUBAINVILLE", "libell_d_acheminement": "JUBAINVILLE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88255"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13b64bded0834615795a03ef24b6249f41384196", "fields": {"nom_de_la_commune": "JUSSARUPT", "libell_d_acheminement": "JUSSARUPT", "code_postal": "88640", "coordonnees_gps": [48.1317016087, 6.78306883061], "code_commune_insee": "88256"}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5b8d210a9ca7e46e768438232a50f8003b6427e", "fields": {"nom_de_la_commune": "JUVAINCOURT", "libell_d_acheminement": "JUVAINCOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88257"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48e041176901d73875aef98417a350f6fd3474eb", "fields": {"nom_de_la_commune": "LAMARCHE", "libell_d_acheminement": "LAMARCHE", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88258"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f2e97e611dbb2686b0f4279d3889f7bd7c75fd7", "fields": {"nom_de_la_commune": "LAVAL SUR VOLOGNE", "libell_d_acheminement": "LAVAL SUR VOLOGNE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88261"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216cd9ebbc5d21417d5e85ad214597c4f2dbe515", "fields": {"nom_de_la_commune": "LEPANGES SUR VOLOGNE", "libell_d_acheminement": "LEPANGES SUR VOLOGNE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88266"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1527ac330dce88762919c72dc14684d2d9b263", "fields": {"nom_de_la_commune": "LIFFOL LE GRAND", "libell_d_acheminement": "LIFFOL LE GRAND", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88270"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0665e8a01fa1ef0614d9ccc676a47990fd0e44f8", "fields": {"nom_de_la_commune": "LONGCHAMP", "libell_d_acheminement": "LONGCHAMP", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88273"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45968d5c4080d16d3f805617c5c53fa02cd6c553", "fields": {"nom_de_la_commune": "MADECOURT", "libell_d_acheminement": "MADECOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88279"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ca768b8a8302d8371cb93738bbc66cbc421245", "fields": {"nom_de_la_commune": "MALAINCOURT", "libell_d_acheminement": "MALAINCOURT", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88283"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c0ff67a7a74d680a8d813341e78c3ca731db167", "fields": {"nom_de_la_commune": "MARTIGNY LES BAINS", "libell_d_acheminement": "MARTIGNY LES BAINS", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88289"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6411967389ead27b2d15d5c37e8be42c8234d57b", "fields": {"nom_de_la_commune": "MARTIGNY LES GERBONVAUX", "libell_d_acheminement": "MARTIGNY LES GERBONVAUX", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88290"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e61d831c8362b2ab4c9ab7e6964b76b60f61ef", "fields": {"nom_de_la_commune": "MEDONVILLE", "libell_d_acheminement": "MEDONVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88296"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "291fa3a28f76fe88996104c3be02b8828aca956b", "fields": {"nom_de_la_commune": "MENARMONT", "libell_d_acheminement": "MENARMONT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88298"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f05d24197cd6caa4ec866672ae677e3dededf1", "fields": {"nom_de_la_commune": "MORELMAISON", "libell_d_acheminement": "MORELMAISON", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88312"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "581128f4f046cfbf17aef10b726dde80b1e9ca24", "fields": {"nom_de_la_commune": "NAYEMONT LES FOSSES", "libell_d_acheminement": "NAYEMONT LES FOSSES", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88320"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d78c3372579abfb1589c80425ced6889a99413b", "fields": {"nom_de_la_commune": "LA NEUVEVILLE DEVANT LEPANGES", "libell_d_acheminement": "LA NEUVEVILLE DEVANT LEPANGES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88322"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d5b5ccb8bc1024a184b676d992ef1556cea753d", "fields": {"nom_de_la_commune": "LA NEUVEVILLE SOUS CHATENOIS", "libell_d_acheminement": "LA NEUVEVILLE SOUS CHATENOIS", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88324"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ad3ba8b6ba8472cdef7dfb665778f523666a720", "fields": {"nom_de_la_commune": "NEUVILLERS SUR FAVE", "libell_d_acheminement": "NEUVILLERS SUR FAVE", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88326"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea26f45fcc20a8e07a3d4d079eb1d6971af54c3", "fields": {"nom_de_la_commune": "NONVILLE", "libell_d_acheminement": "NONVILLE", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88330"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57a30ae5b53ef6d43ef619ff7474b67012857f8", "fields": {"nom_de_la_commune": "NORROY", "libell_d_acheminement": "NORROY", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88332"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "959c2d2f2bb4cd875bab7568590dcf6f90d78f66", "fields": {"nom_de_la_commune": "OFFROICOURT", "libell_d_acheminement": "OFFROICOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88335"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe88b6472c05663b9689c5527c765a245f6be3a", "fields": {"nom_de_la_commune": "PADOUX", "libell_d_acheminement": "PADOUX", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88340"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92a47c0f62ba4678338aa4e109d0bbf20bdea4b", "fields": {"nom_de_la_commune": "PIERREFITTE", "libell_d_acheminement": "PIERREFITTE", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88347"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769a1f9637ad6221fb7bfc68bb05c108e5a6fc16", "fields": {"nom_de_la_commune": "PIERREPONT SUR L ARENTELE", "libell_d_acheminement": "PIERREPONT SUR L ARENTELE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88348"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "657ece7892841b92620367dc4632962a0e808053", "fields": {"nom_de_la_commune": "PLAINFAING", "libell_d_acheminement": "PLAINFAING", "code_postal": "88230", "coordonnees_gps": [48.1335194001, 7.00987852729], "code_commune_insee": "88349"}, "geometry": {"type": "Point", "coordinates": [7.00987852729, 48.1335194001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b4889ab36a314d1a4513a81d64216f83e9bd8b", "fields": {"nom_de_la_commune": "PORTIEUX", "libell_d_acheminement": "PORTIEUX", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88355"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab33d84b2f76d8140a0bf4e36b2d3e9e114cf95a", "fields": {"nom_de_la_commune": "LE PUID", "libell_d_acheminement": "LE PUID", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88362"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fb7495dda7452bba84bf337d94de373cfcc8483", "fields": {"nom_de_la_commune": "RAMBERVILLERS", "libell_d_acheminement": "RAMBERVILLERS", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88367"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36466b2b355908f7686104251cee83bb8ad43154", "fields": {"nom_de_la_commune": "RAMECOURT", "libell_d_acheminement": "RAMECOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88368"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ca1a9f8a7bcdd2af78914ae558170f2e2dc51d4", "fields": {"nom_de_la_commune": "RAMONCHAMP", "libell_d_acheminement": "RAMONCHAMP", "code_postal": "88160", "coordonnees_gps": [47.8910254018, 6.78612164116], "code_commune_insee": "88369"}, "geometry": {"type": "Point", "coordinates": [6.78612164116, 47.8910254018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77da9e361a3b91d7794b9852fd3e07e6acf357a8", "fields": {"nom_de_la_commune": "RAON AUX BOIS", "libell_d_acheminement": "RAON AUX BOIS", "code_postal": "88220", "coordonnees_gps": [48.0725237155, 6.41958186786], "code_commune_insee": "88371"}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b18a665bb7cbd73d71787333138dff10f62dd745", "fields": {"nom_de_la_commune": "REHAUPAL", "libell_d_acheminement": "REHAUPAL", "code_postal": "88640", "coordonnees_gps": [48.1317016087, 6.78306883061], "code_commune_insee": "88380"}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94cb4c4a5dbd44e54908e72c811710cf4c7d3324", "fields": {"nom_de_la_commune": "RELANGES", "libell_d_acheminement": "RELANGES", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88381"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6f35d80c8ba7f9016ffa6bd44244a8ca1a01771", "fields": {"nom_de_la_commune": "REMOVILLE", "libell_d_acheminement": "REMOVILLE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88387"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f67269da3f019174762cb562c38e08e0a65f69b", "fields": {"nom_de_la_commune": "REPEL", "libell_d_acheminement": "REPEL", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88389"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2e3e63e4776a6a80fb20b3efc47a4d1b6b213a", "fields": {"nom_de_la_commune": "ROCHESSON", "libell_d_acheminement": "ROCHESSON", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88391"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0583c85b15060fcf252a4b05428442363d4e204b", "fields": {"nom_de_la_commune": "ROLLAINVILLE", "libell_d_acheminement": "ROLLAINVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88393"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "834a8c87abad553f93d606813f06e3562a077478", "fields": {"nom_de_la_commune": "ROMAIN AUX BOIS", "libell_d_acheminement": "ROMAIN AUX BOIS", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88394"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d864f252822503a021ee30ef8436aed0dd3daf", "fields": {"nom_de_la_commune": "LE ROULIER", "libell_d_acheminement": "LE ROULIER", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88399"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6632962f554575d5d73e5d939a70ef66dd13ada9", "fields": {"nom_de_la_commune": "ROUVRES EN XAINTOIS", "libell_d_acheminement": "ROUVRES EN XAINTOIS", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88400"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d483ecddba401b245da2f5964a90c3b7262756b8", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88421"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db123c5a43981ca2aa6ad7359b3008900faa93b0", "fields": {"nom_de_la_commune": "GALAMETZ", "libell_d_acheminement": "GALAMETZ", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62365"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61139c9a33fc4722b38ed5451adf0075556f5481", "fields": {"nom_de_la_commune": "GAVRELLE", "libell_d_acheminement": "GAVRELLE", "code_postal": "62580", "coordonnees_gps": [50.3570066557, 2.83019770274], "code_commune_insee": "62369"}, "geometry": {"type": "Point", "coordinates": [2.83019770274, 50.3570066557]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0244d69ef8ab506075d21eded085c909f2a67e5c", "fields": {"nom_de_la_commune": "GONNEHEM", "libell_d_acheminement": "GONNEHEM", "code_postal": "62920", "coordonnees_gps": [50.5563250564, 2.56747944823], "code_commune_insee": "62376"}, "geometry": {"type": "Point", "coordinates": [2.56747944823, 50.5563250564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b124307200512bfbbc2bea0e3fd6a1a32116ca3", "fields": {"nom_de_la_commune": "GRAND RULLECOURT", "libell_d_acheminement": "GRAND RULLECOURT", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62385"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df462a61c84e9f9e00ef32fbbc41bb566c00e7e5", "fields": {"nom_de_la_commune": "GUISY", "libell_d_acheminement": "GUISY", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62398"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b6c895176b8e5c3b378db8e2a91af306262da0d", "fields": {"nom_de_la_commune": "HALLOY", "libell_d_acheminement": "HALLOY", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "62404"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fa69014e13cc04b008d8d320588ca4326ad1127", "fields": {"nom_de_la_commune": "HAM EN ARTOIS", "libell_d_acheminement": "HAM EN ARTOIS", "code_postal": "62190", "coordonnees_gps": [50.5605461627, 2.45255498866], "code_commune_insee": "62407"}, "geometry": {"type": "Point", "coordinates": [2.45255498866, 50.5605461627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f000b7516c732fca028d5ef8ce79189ef8d2e40", "fields": {"nom_de_la_commune": "HAMES BOUCRES", "libell_d_acheminement": "HAMES BOUCRES", "code_postal": "62340", "coordonnees_gps": [50.8632639291, 1.85585116959], "code_commune_insee": "62408"}, "geometry": {"type": "Point", "coordinates": [1.85585116959, 50.8632639291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bf0735af30b19ea3ae04f1dee6668e337bde600", "fields": {"nom_de_la_commune": "HANNESCAMPS", "libell_d_acheminement": "HANNESCAMPS", "code_postal": "62111", "coordonnees_gps": [50.1496190496, 2.62164459995], "code_commune_insee": "62409"}, "geometry": {"type": "Point", "coordinates": [2.62164459995, 50.1496190496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74836afb8516acb49cd9005531508116d40d63cd", "fields": {"nom_de_la_commune": "HARAVESNES", "libell_d_acheminement": "HARAVESNES", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62411"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f98923b7b8697fce62f2af728fcfafb0bf70f400", "fields": {"nom_de_la_commune": "HARDINGHEN", "libell_d_acheminement": "HARDINGHEN", "code_postal": "62132", "coordonnees_gps": [50.8069626714, 1.83185894738], "code_commune_insee": "62412"}, "geometry": {"type": "Point", "coordinates": [1.83185894738, 50.8069626714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09ca21c396b3356879aafb1bca2ee496a18dba13", "fields": {"nom_de_la_commune": "HAUCOURT", "libell_d_acheminement": "HAUCOURT", "code_postal": "62156", "coordonnees_gps": [50.2550063922, 2.96811789013], "code_commune_insee": "62414"}, "geometry": {"type": "Point", "coordinates": [2.96811789013, 50.2550063922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0c2ed38445e2046b594063d5a3649664f7caab1", "fields": {"nom_de_la_commune": "HAUT LOQUIN", "libell_d_acheminement": "HAUT LOQUIN", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62419"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbaa1f941235b8ce324020873f0e79392bca2ce6", "fields": {"nom_de_la_commune": "HELFAUT", "libell_d_acheminement": "HELFAUT", "code_postal": "62570", "coordonnees_gps": [50.6952364342, 2.22748596722], "code_commune_insee": "62423"}, "geometry": {"type": "Point", "coordinates": [2.22748596722, 50.6952364342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed448c7ab1d232dbd6d2fad68aeb0191483faa86", "fields": {"nom_de_la_commune": "HENDECOURT LES CAGNICOURT", "libell_d_acheminement": "HENDECOURT LES CAGNICOURT", "code_postal": "62182", "coordonnees_gps": [50.2102987642, 2.97666168153], "code_commune_insee": "62424"}, "geometry": {"type": "Point", "coordinates": [2.97666168153, 50.2102987642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f4789ca173a13e25ed1c38c6b0a3e44221221de", "fields": {"nom_de_la_commune": "HENDECOURT LES RANSART", "libell_d_acheminement": "HENDECOURT LES RANSART", "code_postal": "62175", "coordonnees_gps": [50.2052015663, 2.76287210363], "code_commune_insee": "62425"}, "geometry": {"type": "Point", "coordinates": [2.76287210363, 50.2052015663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8ae99d698fcf60aebccefcdfd614510e876778", "fields": {"nom_de_la_commune": "HENIN SUR COJEUL", "libell_d_acheminement": "HENIN SUR COJEUL", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62428"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db2b9f9c132cb6fbc4686360338da19b691c24c9", "fields": {"nom_de_la_commune": "HERBELLES", "libell_d_acheminement": "HERBELLES", "code_postal": "62129", "coordonnees_gps": [50.6463145648, 2.25326814344], "code_commune_insee": "62431"}, "geometry": {"type": "Point", "coordinates": [2.25326814344, 50.6463145648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8628a8ee91e97139717ace5209deb6d571b12c43", "fields": {"nom_de_la_commune": "HERLINCOURT", "libell_d_acheminement": "HERLINCOURT", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62435"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51cc3b6b80183a01bc7cdcc9fb462f32339e45c", "fields": {"nom_de_la_commune": "HERVELINGHEN", "libell_d_acheminement": "HERVELINGHEN", "code_postal": "62179", "coordonnees_gps": [50.8769884551, 1.66495996056], "code_commune_insee": "62444"}, "geometry": {"type": "Point", "coordinates": [1.66495996056, 50.8769884551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "132877d4ebd7b2c97d9d5c22bfc7f55ff1863551", "fields": {"nom_de_la_commune": "HESDIN L ABBE", "libell_d_acheminement": "HESDIN L ABBE", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62448"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d65c5e5094982dbe87f6a42068b23a2b8d681621", "fields": {"nom_de_la_commune": "HINGES", "libell_d_acheminement": "HINGES", "code_postal": "62232", "coordonnees_gps": [50.5485643749, 2.61912647325], "code_commune_insee": "62454"}, "geometry": {"type": "Point", "coordinates": [2.61912647325, 50.5485643749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9fe0acbfb19d566a3f269357df782ecec5fe4be", "fields": {"nom_de_la_commune": "HUBERSENT", "libell_d_acheminement": "HUBERSENT", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62460"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd1463c1bc649f5621eb75f1b257456843a4844", "fields": {"nom_de_la_commune": "HUBY ST LEU", "libell_d_acheminement": "HUBY ST LEU", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62461"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8f460bd12d2bbb054edd6025ffd9ad19e4c03eb", "fields": {"nom_de_la_commune": "INCOURT", "libell_d_acheminement": "INCOURT", "code_postal": "62770", "coordonnees_gps": [50.3762730099, 2.12926905925], "code_commune_insee": "62470"}, "geometry": {"type": "Point", "coordinates": [2.12926905925, 50.3762730099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba4344c597a6917057133294e22f8ceafeb35ba3", "fields": {"nom_de_la_commune": "INXENT", "libell_d_acheminement": "INXENT", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62472"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f0781189d0de71420b765fe37dc9a395787476", "fields": {"code_postal": "62330", "code_commune_insee": "62473", "libell_d_acheminement": "ISBERGUES", "ligne_5": "BERGUETTE", "nom_de_la_commune": "ISBERGUES", "coordonnees_gps": [50.61399538, 2.46439960248]}, "geometry": {"type": "Point", "coordinates": [2.46439960248, 50.61399538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a67c52f71d5a6eaa6047b3bf1e6db18b55154090", "fields": {"nom_de_la_commune": "ISQUES", "libell_d_acheminement": "ISQUES", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62474"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53203941cf7ae47517cde187e161995b75314a7e", "fields": {"nom_de_la_commune": "JOURNY", "libell_d_acheminement": "JOURNY", "code_postal": "62850", "coordonnees_gps": [50.7615729003, 1.9320675612], "code_commune_insee": "62478"}, "geometry": {"type": "Point", "coordinates": [1.9320675612, 50.7615729003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f882604d5dc876ce1c6cffc82ab58d4685f9fb9", "fields": {"nom_de_la_commune": "LABEUVRIERE", "libell_d_acheminement": "LABEUVRIERE", "code_postal": "62122", "coordonnees_gps": [50.5202151266, 2.54882320561], "code_commune_insee": "62479"}, "geometry": {"type": "Point", "coordinates": [2.54882320561, 50.5202151266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14b69e7766c436c77315341584d75ea480347c6d", "fields": {"nom_de_la_commune": "LABOURSE", "libell_d_acheminement": "LABOURSE", "code_postal": "62113", "coordonnees_gps": [50.498906195, 2.68600111131], "code_commune_insee": "62480"}, "geometry": {"type": "Point", "coordinates": [2.68600111131, 50.498906195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1479a4568da36a451b774cb2a5b846d8fbb4374", "fields": {"nom_de_la_commune": "LAGNICOURT MARCEL", "libell_d_acheminement": "LAGNICOURT MARCEL", "code_postal": "62159", "coordonnees_gps": [50.1507346874, 2.907151936], "code_commune_insee": "62484"}, "geometry": {"type": "Point", "coordinates": [2.907151936, 50.1507346874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbc5314d6f8ef90084dbe075690ee7393e2ad381", "fields": {"nom_de_la_commune": "LAMBRES", "libell_d_acheminement": "LAMBRES", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62486"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c7c4f595472264044169636031c2025bf512fc8", "fields": {"nom_de_la_commune": "LANDRETHUN LE NORD", "libell_d_acheminement": "LANDRETHUN LE NORD", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62487"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a251558d3923549e1558085988a76d18429093b", "fields": {"nom_de_la_commune": "LANDRETHUN LES ARDRES", "libell_d_acheminement": "LANDRETHUN LES ARDRES", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62488"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce2bcfdcf13b3e7c4db080180eb689880f50d53f", "fields": {"nom_de_la_commune": "LAPUGNOY", "libell_d_acheminement": "LAPUGNOY", "code_postal": "62122", "coordonnees_gps": [50.5202151266, 2.54882320561], "code_commune_insee": "62489"}, "geometry": {"type": "Point", "coordinates": [2.54882320561, 50.5202151266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f5447bfccdf479fcae46e2ae7888e00d4606f98", "fields": {"nom_de_la_commune": "LEFAUX", "libell_d_acheminement": "LEFAUX", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62496"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b3f604d860992b92cec6e25f25042537a1e1fcc", "fields": {"nom_de_la_commune": "LEPINE", "libell_d_acheminement": "LEPINE", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62499"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83c189e6e88ea7ca10aae182de2b1669c1ef99c5", "fields": {"nom_de_la_commune": "LESPINOY", "libell_d_acheminement": "LESPINOY", "code_postal": "62990", "coordonnees_gps": [50.4534083281, 1.93866647411], "code_commune_insee": "62501"}, "geometry": {"type": "Point", "coordinates": [1.93866647411, 50.4534083281]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbcff647184071c7050826ec0fb10198bf7abecb", "fields": {"nom_de_la_commune": "LEULINGHEN BERNES", "libell_d_acheminement": "LEULINGHEN BERNES", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62505"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f69e7376af69aaa582b3ba8d39378eedbef98d", "fields": {"nom_de_la_commune": "LIGNY ST FLOCHEL", "libell_d_acheminement": "LIGNY ST FLOCHEL", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62514"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9358523d0ac5ab6a60d5994bda0966d12c6153e", "fields": {"nom_de_la_commune": "LONGFOSSE", "libell_d_acheminement": "LONGFOSSE", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62524"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e65581786533b62b5e4b9868c41949a7a4a77a3e", "fields": {"nom_de_la_commune": "LORGIES", "libell_d_acheminement": "LORGIES", "code_postal": "62840", "coordonnees_gps": [50.6197278432, 2.7991107386], "code_commune_insee": "62529"}, "geometry": {"type": "Point", "coordinates": [2.7991107386, 50.6197278432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8fc305ddb50b56c2a913ae45d4b8d23c7fb1c4e", "fields": {"nom_de_la_commune": "LOTTINGHEN", "libell_d_acheminement": "LOTTINGHEN", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62530"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1e4551837b598e6bd9b43c64d029bc8146740c4", "fields": {"nom_de_la_commune": "LOZINGHEM", "libell_d_acheminement": "LOZINGHEM", "code_postal": "62540", "coordonnees_gps": [50.5065870429, 2.50257888939], "code_commune_insee": "62532"}, "geometry": {"type": "Point", "coordinates": [2.50257888939, 50.5065870429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f2b28ee845aeca29aebc6114e476792c8b02f6", "fields": {"nom_de_la_commune": "MAGNICOURT SUR CANCHE", "libell_d_acheminement": "MAGNICOURT SUR CANCHE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62537"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6163776497e054f679ac8c367dadcc24808b598e", "fields": {"nom_de_la_commune": "MAMETZ", "libell_d_acheminement": "MAMETZ", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62543"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a92f4285ab8028a219d01618ed3b829ffc63be27", "fields": {"nom_de_la_commune": "MANIN", "libell_d_acheminement": "MANIN", "code_postal": "62810", "coordonnees_gps": [50.2642412507, 2.47811380644], "code_commune_insee": "62544"}, "geometry": {"type": "Point", "coordinates": [2.47811380644, 50.2642412507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe93ab897e3a058c478b30db7b0eb8201f086be9", "fields": {"nom_de_la_commune": "MANINGHEN HENNE", "libell_d_acheminement": "MANINGHEN HENNE", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62546"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e7eb3a03c00f867619edc03152300c4b6bb407", "fields": {"nom_de_la_commune": "MARANT", "libell_d_acheminement": "MARANT", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62547"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9f10cbcc60b8e0ac2938b873694d55a300ce1ab", "fields": {"nom_de_la_commune": "MAZINGARBE", "libell_d_acheminement": "MAZINGARBE", "code_postal": "62670", "coordonnees_gps": [50.4684801165, 2.7243616205], "code_commune_insee": "62563"}, "geometry": {"type": "Point", "coordinates": [2.7243616205, 50.4684801165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff5df8a2e932b394f6cd873c1e8bad20b4d71fe3", "fields": {"nom_de_la_commune": "MERCATEL", "libell_d_acheminement": "MERCATEL", "code_postal": "62217", "coordonnees_gps": [50.2562136643, 2.77775828348], "code_commune_insee": "62568"}, "geometry": {"type": "Point", "coordinates": [2.77775828348, 50.2562136643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07cab24455fcad8f796085b2f8678fbf0a9fcf83", "fields": {"nom_de_la_commune": "MERCK ST LIEVIN", "libell_d_acheminement": "MERCK ST LIEVIN", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62569"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ce593001a5be4c9898b85ae2cb32c37cd24ea7", "fields": {"nom_de_la_commune": "MERICOURT", "libell_d_acheminement": "MERICOURT", "code_postal": "62680", "coordonnees_gps": [50.3988010681, 2.86767401948], "code_commune_insee": "62570"}, "geometry": {"type": "Point", "coordinates": [2.86767401948, 50.3988010681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c680e18dca1139216dc4c3504231ca1637e455c4", "fields": {"nom_de_la_commune": "MONTCAVREL", "libell_d_acheminement": "MONTCAVREL", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62585"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bece0071ba51ac332ddd8f428bce284ef45bac74", "fields": {"nom_de_la_commune": "MONT ST ELOI", "libell_d_acheminement": "MONT ST ELOI", "code_postal": "62144", "coordonnees_gps": [50.3578850683, 2.67826739933], "code_commune_insee": "62589"}, "geometry": {"type": "Point", "coordinates": [2.67826739933, 50.3578850683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a814a7ef8630c5d4d3eff7348ec6d16ef038b28", "fields": {"nom_de_la_commune": "MORCHIES", "libell_d_acheminement": "MORCHIES", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62591"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "febee72450fb4276f9ebd54dc16d26c7585e1967", "fields": {"nom_de_la_commune": "MOYENNEVILLE", "libell_d_acheminement": "MOYENNEVILLE", "code_postal": "62121", "coordonnees_gps": [50.1522979585, 2.79305913272], "code_commune_insee": "62597"}, "geometry": {"type": "Point", "coordinates": [2.79305913272, 50.1522979585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a02aef1838a2d45527b1d8360d35da295718f101", "fields": {"nom_de_la_commune": "MUNCQ NIEURLET", "libell_d_acheminement": "MUNCQ NIEURLET", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62598"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b70a654772c1e0a7861b4527678b2e1509f24958", "fields": {"nom_de_la_commune": "NEDON", "libell_d_acheminement": "NEDON", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62600"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03ac3b21c37ac5ebe10ef6ba33b69e97ea0bd2a4", "fields": {"code_postal": "62152", "code_commune_insee": "62604", "libell_d_acheminement": "NEUFCHATEL HARDELOT", "ligne_5": "HARDELOT PLAGE", "nom_de_la_commune": "NEUFCHATEL HARDELOT", "coordonnees_gps": [50.6179006282, 1.6259917167]}, "geometry": {"type": "Point", "coordinates": [1.6259917167, 50.6179006282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930e95f5dedc29fc709383cbc930d23f34efaf65", "fields": {"nom_de_la_commune": "NOEUX LES AUXI", "libell_d_acheminement": "NOEUX LES AUXI", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62616"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d8238b28dd5577917b16f3b85e851c4537073a4", "fields": {"nom_de_la_commune": "NOEUX LES MINES", "libell_d_acheminement": "NOEUX LES MINES", "code_postal": "62290", "coordonnees_gps": [50.4750238177, 2.66234838111], "code_commune_insee": "62617"}, "geometry": {"type": "Point", "coordinates": [2.66234838111, 50.4750238177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5743feb1569b7a42c0448ba38b13abddb0851b21", "fields": {"nom_de_la_commune": "NOREUIL", "libell_d_acheminement": "NOREUIL", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62619"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7e27eac88d3a73920e23a7f897cf245cd43b8b5", "fields": {"nom_de_la_commune": "NOYELLES SOUS BELLONNE", "libell_d_acheminement": "NOYELLES SOUS BELLONNE", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62627"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bc3cc91249c39137deb957f33d3144ae33e2e9", "fields": {"nom_de_la_commune": "NUNCQ HAUTECOTE", "libell_d_acheminement": "NUNCQ HAUTECOTE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62631"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b4c50a3e21b36f7d0a5d6e5723dad0752c52a5", "fields": {"nom_de_la_commune": "OFFRETHUN", "libell_d_acheminement": "OFFRETHUN", "code_postal": "62250", "coordonnees_gps": [50.8301227206, 1.71031160578], "code_commune_insee": "62636"}, "geometry": {"type": "Point", "coordinates": [1.71031160578, 50.8301227206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5faea0e657155fdbdc5e2025bf4687c55fe3241", "fields": {"nom_de_la_commune": "OURTON", "libell_d_acheminement": "OURTON", "code_postal": "62460", "coordonnees_gps": [50.4531419324, 2.47496250173], "code_commune_insee": "62642"}, "geometry": {"type": "Point", "coordinates": [2.47496250173, 50.4531419324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "601d50df604377e504cb84cc3e67e357e7586cc0", "fields": {"nom_de_la_commune": "PARENTY", "libell_d_acheminement": "PARENTY", "code_postal": "62650", "coordonnees_gps": [50.5711633824, 1.91803290071], "code_commune_insee": "62648"}, "geometry": {"type": "Point", "coordinates": [1.91803290071, 50.5711633824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1713329d3ae942ba71047c993d0413ef9856909f", "fields": {"nom_de_la_commune": "PELVES", "libell_d_acheminement": "PELVES", "code_postal": "62118", "coordonnees_gps": [50.2944140321, 2.91149588255], "code_commune_insee": "62650"}, "geometry": {"type": "Point", "coordinates": [2.91149588255, 50.2944140321]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2a14624e1f23ba4d8da5249a3a703a0b11b5ba", "fields": {"code_postal": "62140", "code_commune_insee": "62661", "libell_d_acheminement": "BOUIN PLUMOISON", "ligne_5": "BOUIN", "nom_de_la_commune": "BOUIN PLUMOISON", "coordonnees_gps": [50.3629507199, 2.0044166227]}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a26b11630df16febdda78cf881b5adbec5d66bb", "fields": {"nom_de_la_commune": "PREDEFIN", "libell_d_acheminement": "PREDEFIN", "code_postal": "62134", "coordonnees_gps": [50.4734812037, 2.257159432], "code_commune_insee": "62668"}, "geometry": {"type": "Point", "coordinates": [2.257159432, 50.4734812037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "133b7ed497c9a109389c6147c073cbf009511b93", "fields": {"nom_de_la_commune": "PRESSY", "libell_d_acheminement": "PRESSY", "code_postal": "62550", "coordonnees_gps": [50.4768441876, 2.37889355322], "code_commune_insee": "62669"}, "geometry": {"type": "Point", "coordinates": [2.37889355322, 50.4768441876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95708efd93cfc74f68f70737faf9fa1d64271fc0", "fields": {"nom_de_la_commune": "QUOEUX HAUT MAINIL", "libell_d_acheminement": "QUOEUX HAUT MAINIL", "code_postal": "62390", "coordonnees_gps": [50.2560013525, 2.12580845781], "code_commune_insee": "62683"}, "geometry": {"type": "Point", "coordinates": [2.12580845781, 50.2560013525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff29c996f5dca0d103b1117e3061dcd507205a9c", "fields": {"nom_de_la_commune": "RACQUINGHEM", "libell_d_acheminement": "RACQUINGHEM", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62684"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ab184b410c0dad6fadf2bffbf5020a3a5f68dd0", "fields": {"nom_de_la_commune": "RADINGHEM", "libell_d_acheminement": "RADINGHEM", "code_postal": "62310", "coordonnees_gps": [50.5025485472, 2.11522289162], "code_commune_insee": "62685"}, "geometry": {"type": "Point", "coordinates": [2.11522289162, 50.5025485472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4c8a67d4a48ed4bb151782b3ef5048b1fe828e", "fields": {"nom_de_la_commune": "RAYE SUR AUTHIE", "libell_d_acheminement": "RAYE SUR AUTHIE", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62690"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7887acf15a082888164ea48f20ec6ee2a772b1c5", "fields": {"nom_de_la_commune": "REBREUVIETTE", "libell_d_acheminement": "REBREUVIETTE", "code_postal": "62270", "coordonnees_gps": [50.280518399, 2.28550384111], "code_commune_insee": "62695"}, "geometry": {"type": "Point", "coordinates": [2.28550384111, 50.280518399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b171d0ee935a1a2c34445760fed97a3bb870710d", "fields": {"nom_de_la_commune": "RECQUES SUR HEM", "libell_d_acheminement": "RECQUES SUR HEM", "code_postal": "62890", "coordonnees_gps": [50.7978193475, 2.05396583461], "code_commune_insee": "62699"}, "geometry": {"type": "Point", "coordinates": [2.05396583461, 50.7978193475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06b92741eeb2668b24543c5e7dee178f458db5d7", "fields": {"nom_de_la_commune": "RELY", "libell_d_acheminement": "RELY", "code_postal": "62120", "coordonnees_gps": [50.6358470101, 2.3677470535], "code_commune_insee": "62701"}, "geometry": {"type": "Point", "coordinates": [2.3677470535, 50.6358470101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f7bc968ccb222de451bc0e70da96fd9f18092be", "fields": {"nom_de_la_commune": "RETY", "libell_d_acheminement": "RETY", "code_postal": "62720", "coordonnees_gps": [50.7869009798, 1.75735193267], "code_commune_insee": "62705"}, "geometry": {"type": "Point", "coordinates": [1.75735193267, 50.7869009798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b68c45c544d42961a863ad65b96aff221b648d8", "fields": {"nom_de_la_commune": "RODELINGHEM", "libell_d_acheminement": "RODELINGHEM", "code_postal": "62610", "coordonnees_gps": [50.8468659582, 1.97558955191], "code_commune_insee": "62716"}, "geometry": {"type": "Point", "coordinates": [1.97558955191, 50.8468659582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19628bdf92fca37ef7b17fb93c078ebe979c0884", "fields": {"nom_de_la_commune": "ROUSSENT", "libell_d_acheminement": "ROUSSENT", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62723"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "782eaecf4d060fa1fc85fc0e00a519e1404d4775", "fields": {"nom_de_la_commune": "RUMINGHEM", "libell_d_acheminement": "RUMINGHEM", "code_postal": "62370", "coordonnees_gps": [50.8958847925, 2.08144992086], "code_commune_insee": "62730"}, "geometry": {"type": "Point", "coordinates": [2.08144992086, 50.8958847925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4393348b2bb9faa428575ce000d0339e70d09524", "fields": {"nom_de_la_commune": "RUYAULCOURT", "libell_d_acheminement": "RUYAULCOURT", "code_postal": "62124", "coordonnees_gps": [50.0912869006, 2.98262448984], "code_commune_insee": "62731"}, "geometry": {"type": "Point", "coordinates": [2.98262448984, 50.0912869006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab1436cc899f5601ccdf62602298f73c7aa4b05f", "fields": {"nom_de_la_commune": "SAILLY EN OSTREVENT", "libell_d_acheminement": "SAILLY EN OSTREVENT", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62734"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fea6a75e16e7f70b2c3cbd7085c5c47071f406c", "fields": {"nom_de_la_commune": "SAILLY SUR LA LYS", "libell_d_acheminement": "SAILLY SUR LA LYS", "code_postal": "62840", "coordonnees_gps": [50.6197278432, 2.7991107386], "code_commune_insee": "62736"}, "geometry": {"type": "Point", "coordinates": [2.7991107386, 50.6197278432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb8d6980624d7924f81859029d818eaed0229f9", "fields": {"nom_de_la_commune": "SAINS LES MARQUION", "libell_d_acheminement": "SAINS LES MARQUION", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62739"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4735219384319145ef46d8d3517e61bacf219ab7", "fields": {"nom_de_la_commune": "ST JOSSE", "libell_d_acheminement": "ST JOSSE", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62752"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4295c3e6925ed07e3e8dcb01ea5168103d1389f", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62754"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7fe38429c7cc944e893dcd53d5e8c574c2921be", "fields": {"nom_de_la_commune": "ST MARTIN SUR COJEUL", "libell_d_acheminement": "ST MARTIN SUR COJEUL", "code_postal": "62128", "coordonnees_gps": [50.210604597, 2.87847709385], "code_commune_insee": "62761"}, "geometry": {"type": "Point", "coordinates": [2.87847709385, 50.210604597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5887028a9e0bc8e1ff1c88309541813aeeec46a", "fields": {"nom_de_la_commune": "ST MICHEL SUR TERNOISE", "libell_d_acheminement": "ST MICHEL SUR TERNOISE", "code_postal": "62130", "coordonnees_gps": [50.3776719695, 2.31040804677], "code_commune_insee": "62763"}, "geometry": {"type": "Point", "coordinates": [2.31040804677, 50.3776719695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c9efc8f03d9a26ccf187a1359fa127ca88c3597", "fields": {"nom_de_la_commune": "ST NICOLAS", "libell_d_acheminement": "ST NICOLAS", "code_postal": "62223", "coordonnees_gps": [50.31205981, 2.79681352284], "code_commune_insee": "62764"}, "geometry": {"type": "Point", "coordinates": [2.79681352284, 50.31205981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dde01478415071e5b51cce72944971d4c6fd35f", "fields": {"nom_de_la_commune": "ST OMER CAPELLE", "libell_d_acheminement": "ST OMER CAPELLE", "code_postal": "62162", "coordonnees_gps": [50.937258857, 2.08448464494], "code_commune_insee": "62766"}, "geometry": {"type": "Point", "coordinates": [2.08448464494, 50.937258857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b6564e9d391999e7f5815ddcc936245797fc9aa", "fields": {"nom_de_la_commune": "SALLAUMINES", "libell_d_acheminement": "SALLAUMINES", "code_postal": "62430", "coordonnees_gps": [50.4204114482, 2.86115477018], "code_commune_insee": "62771"}, "geometry": {"type": "Point", "coordinates": [2.86115477018, 50.4204114482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e351a8ba454be03e550935bef86ab2ca477c1d76", "fields": {"nom_de_la_commune": "LE SARS", "libell_d_acheminement": "LE SARS", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62777"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fd209e4d01ad3e75a4082df0eca16af8252b5a9", "fields": {"nom_de_la_commune": "SAUCHY LESTREE", "libell_d_acheminement": "SAUCHY LESTREE", "code_postal": "62860", "coordonnees_gps": [50.2130694092, 3.07384820873], "code_commune_insee": "62781"}, "geometry": {"type": "Point", "coordinates": [3.07384820873, 50.2130694092]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "beb9a7356180c0cdb468550c8ddbf4235ab36639", "fields": {"nom_de_la_commune": "SAULCHOY", "libell_d_acheminement": "SAULCHOY", "code_postal": "62870", "coordonnees_gps": [50.3761921604, 1.85359321961], "code_commune_insee": "62783"}, "geometry": {"type": "Point", "coordinates": [1.85359321961, 50.3761921604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2b51f0d322204ba98869976df626bd26d45f67", "fields": {"nom_de_la_commune": "SELLES", "libell_d_acheminement": "SELLES", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62786"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4f07c7161fb00181f306daa1e6f19fc46bf8b70", "fields": {"nom_de_la_commune": "SENLECQUES", "libell_d_acheminement": "SENLECQUES", "code_postal": "62240", "coordonnees_gps": [50.6791586942, 1.86161910061], "code_commune_insee": "62789"}, "geometry": {"type": "Point", "coordinates": [1.86161910061, 50.6791586942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dedcb73b22bb6717d4926b6e361cfa480ebf9f49", "fields": {"nom_de_la_commune": "WOIGNARUE", "libell_d_acheminement": "WOIGNARUE", "code_postal": "80460", "coordonnees_gps": [50.0980567949, 1.47472776699], "code_commune_insee": "80826"}, "geometry": {"type": "Point", "coordinates": [1.47472776699, 50.0980567949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0dc307c309c298037bbd4cc2bd950236dcb41c9", "fields": {"nom_de_la_commune": "Y", "libell_d_acheminement": "Y", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80829"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a892a7dcb04054ddae84fa91da07d8fadcd3fe", "fields": {"nom_de_la_commune": "YVRENCHEUX", "libell_d_acheminement": "YVRENCHEUX", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80833"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "948950b03e84a47037442c9c0fdd2da5721349ad", "fields": {"nom_de_la_commune": "YZEUX", "libell_d_acheminement": "YZEUX", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80835"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bcc2995e457973c69972d46d6307540f8d168b9", "fields": {"nom_de_la_commune": "YONVAL", "libell_d_acheminement": "YONVAL", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80836"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6bdfb35cd7bbe7513a9cf62fc4e424a80f1d6b6", "fields": {"nom_de_la_commune": "ALMAYRAC", "libell_d_acheminement": "ALMAYRAC", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81008"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84596897944eedf11272913e72403ea12a00da3f", "fields": {"nom_de_la_commune": "ARTHES", "libell_d_acheminement": "ARTHES", "code_postal": "81160", "coordonnees_gps": [43.9525794482, 2.22487127822], "code_commune_insee": "81018"}, "geometry": {"type": "Point", "coordinates": [2.22487127822, 43.9525794482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c00924635f8a31ab23fda557a8197827be1a41ac", "fields": {"nom_de_la_commune": "BELLESERRE", "libell_d_acheminement": "BELLESERRE", "code_postal": "81540", "coordonnees_gps": [43.443120414, 2.07821163286], "code_commune_insee": "81027"}, "geometry": {"type": "Point", "coordinates": [2.07821163286, 43.443120414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "729795b9f8cb16c73e20570583d14e2f2be01ce8", "fields": {"nom_de_la_commune": "BOURNAZEL", "libell_d_acheminement": "BOURNAZEL", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81035"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c9cadadf7bd4137ce4222f883f8b7cbf5564885", "fields": {"nom_de_la_commune": "BRIATEXTE", "libell_d_acheminement": "BRIATEXTE", "code_postal": "81390", "coordonnees_gps": [43.7576771475, 1.89892940194], "code_commune_insee": "81039"}, "geometry": {"type": "Point", "coordinates": [1.89892940194, 43.7576771475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5c5ace7fda3f543f57009d6dd79dbaf60c638e", "fields": {"nom_de_la_commune": "BURLATS", "libell_d_acheminement": "BURLATS", "code_postal": "81100", "coordonnees_gps": [43.6219968606, 2.25901530016], "code_commune_insee": "81042"}, "geometry": {"type": "Point", "coordinates": [2.25901530016, 43.6219968606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5fedb578931d7362690d37b2369de4f1156d0e0", "fields": {"nom_de_la_commune": "CABANES", "libell_d_acheminement": "CABANES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81044"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f83069b9c2425a6e5b9a3154a3f29c3571d54bf", "fields": {"nom_de_la_commune": "CADIX", "libell_d_acheminement": "CADIX", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81047"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bc62c6b90ee7ead29c87d16a331fbce9ae17f0e", "fields": {"nom_de_la_commune": "CAMBON LES LAVAUR", "libell_d_acheminement": "CAMBON LES LAVAUR", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81050"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21956c70f2230fa96213ddb06181fc2dd4233271", "fields": {"code_postal": "81260", "code_commune_insee": "81062", "libell_d_acheminement": "FONTRIEU", "ligne_5": "FERRIERES", "nom_de_la_commune": "FONTRIEU", "coordonnees_gps": [43.6113142668, 2.53318559265]}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b6f80e80bae20ef63f42834f4fbec02f1e3388", "fields": {"nom_de_la_commune": "CASTELNAU DE LEVIS", "libell_d_acheminement": "CASTELNAU DE LEVIS", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81063"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7912ed73299510af5512eeea373e99b08ae9e4a0", "fields": {"nom_de_la_commune": "CASTRES", "libell_d_acheminement": "CASTRES", "code_postal": "81100", "coordonnees_gps": [43.6219968606, 2.25901530016], "code_commune_insee": "81065"}, "geometry": {"type": "Point", "coordinates": [2.25901530016, 43.6219968606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05c7070875cc12b3b306b2018bdd96667af68c5", "fields": {"nom_de_la_commune": "COMBEFA", "libell_d_acheminement": "COMBEFA", "code_postal": "81640", "coordonnees_gps": [44.0838977271, 2.06928881361], "code_commune_insee": "81068"}, "geometry": {"type": "Point", "coordinates": [2.06928881361, 44.0838977271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "928ffef54f206246210fa8499e22ee827607100f", "fields": {"nom_de_la_commune": "CUNAC", "libell_d_acheminement": "CUNAC", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81074"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88b2a27febdbba13ac715d5760b5b4c5c68210c1", "fields": {"nom_de_la_commune": "CUQ TOULZA", "libell_d_acheminement": "CUQ TOULZA", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81076"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c875150850872022276453d57c2b53ea6367b8", "fields": {"nom_de_la_commune": "ESCOUSSENS", "libell_d_acheminement": "ESCOUSSENS", "code_postal": "81290", "coordonnees_gps": [43.5116005076, 2.23924261943], "code_commune_insee": "81084"}, "geometry": {"type": "Point", "coordinates": [2.23924261943, 43.5116005076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af309a3dd155b7f5311779dd0b6cc6b7d730c06b", "fields": {"nom_de_la_commune": "ESPERAUSSES", "libell_d_acheminement": "ESPERAUSSES", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81086"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a745d1f704fa23879e308a4ec93954c298d12e98", "fields": {"nom_de_la_commune": "FRAISSINES", "libell_d_acheminement": "FRAISSINES", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81094"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a8bef83a1e8514deac596f561883edd800420e", "fields": {"nom_de_la_commune": "FRAUSSEILLES", "libell_d_acheminement": "FRAUSSEILLES", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81095"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8995c7a7ca5a6fb0d5836c1024aaebe2f3ff639e", "fields": {"nom_de_la_commune": "GIJOUNET", "libell_d_acheminement": "GIJOUNET", "code_postal": "81530", "coordonnees_gps": [43.7712371341, 2.57768572319], "code_commune_insee": "81103"}, "geometry": {"type": "Point", "coordinates": [2.57768572319, 43.7712371341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b91d9d9122001c25961d53138b786f0ba50fc8", "fields": {"nom_de_la_commune": "JONQUIERES", "libell_d_acheminement": "JONQUIERES", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81109"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ef25e275f91c2ec9da2dc81f12bf662bf0a72d6", "fields": {"nom_de_la_commune": "LABARTHE BLEYS", "libell_d_acheminement": "LABARTHE BLEYS", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81111"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb44aa37ff90dff6a29aec8be6dc9e647093d6bf", "fields": {"nom_de_la_commune": "LABASTIDE ST GEORGES", "libell_d_acheminement": "LABASTIDE ST GEORGES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81116"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "146e144c9a0f1ca7d325af85e4d0f9c74310d04e", "fields": {"nom_de_la_commune": "LABRUGUIERE", "libell_d_acheminement": "LABRUGUIERE", "code_postal": "81290", "coordonnees_gps": [43.5116005076, 2.23924261943], "code_commune_insee": "81120"}, "geometry": {"type": "Point", "coordinates": [2.23924261943, 43.5116005076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658e08e2810998a19d540118b94725ccd8abea63", "fields": {"code_postal": "81220", "code_commune_insee": "81132", "libell_d_acheminement": "GUITALENS L ALBAREDE", "ligne_5": "GUITALENS", "nom_de_la_commune": "GUITALENS L ALBAREDE", "coordonnees_gps": [43.6536851734, 1.97477530689]}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ff6f9cf0c031892c68c022adb09d08f9a24349e", "fields": {"nom_de_la_commune": "LAMILLARIE", "libell_d_acheminement": "LAMILLARIE", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81133"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cb7cc178be9691716848960128050e988e65e32", "fields": {"nom_de_la_commune": "LAPARROUQUIAL", "libell_d_acheminement": "LAPARROUQUIAL", "code_postal": "81640", "coordonnees_gps": [44.0838977271, 2.06928881361], "code_commune_insee": "81135"}, "geometry": {"type": "Point", "coordinates": [2.06928881361, 44.0838977271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e4b830c5d33e9388f5a0ba9573ce633f61ac1ec", "fields": {"nom_de_la_commune": "LARROQUE", "libell_d_acheminement": "LARROQUE", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81136"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6625152d3bd72d6c908b692e0612bf02f7b396ae", "fields": {"nom_de_la_commune": "LOUPIAC", "libell_d_acheminement": "LOUPIAC", "code_postal": "81800", "coordonnees_gps": [43.8337179111, 1.69697473698], "code_commune_insee": "81149"}, "geometry": {"type": "Point", "coordinates": [1.69697473698, 43.8337179111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74252a9da8fd4cfcb48395b405dd2c3f0910f062", "fields": {"nom_de_la_commune": "LUGAN", "libell_d_acheminement": "LUGAN", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81150"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d025bacf8d444c5c68c7195741b63f7dc0ca3246", "fields": {"nom_de_la_commune": "MAGRIN", "libell_d_acheminement": "MAGRIN", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81151"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b3b8128b490e9b2a69e186e717fb0eec5a53d4e", "fields": {"nom_de_la_commune": "MARNAVES", "libell_d_acheminement": "MARNAVES", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81154"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f5e3f8af3339900f6da4ac0576f05ca3edf551", "fields": {"nom_de_la_commune": "MARZENS", "libell_d_acheminement": "MARZENS", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81157"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e6ebfe1bb68baae392103e3700880706f330753", "fields": {"nom_de_la_commune": "MASSALS", "libell_d_acheminement": "MASSALS", "code_postal": "81250", "coordonnees_gps": [43.8730410539, 2.47494660719], "code_commune_insee": "81161"}, "geometry": {"type": "Point", "coordinates": [2.47494660719, 43.8730410539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fdf642b620ab9234560ed72b478c6819d62310c", "fields": {"nom_de_la_commune": "MAURENS SCOPONT", "libell_d_acheminement": "MAURENS SCOPONT", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81162"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adce10e871513b067ab6f610f80223b133c0e697", "fields": {"nom_de_la_commune": "MONTREDON LABESSONNIE", "libell_d_acheminement": "MONTREDON LABESSONNIE", "code_postal": "81360", "coordonnees_gps": [43.7318763376, 2.32676924299], "code_commune_insee": "81182"}, "geometry": {"type": "Point", "coordinates": [2.32676924299, 43.7318763376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d5f42cce2a42758831794a86ee18983f2734510", "fields": {"nom_de_la_commune": "NAVES", "libell_d_acheminement": "NAVES", "code_postal": "81710", "coordonnees_gps": [43.5760032199, 2.19080149351], "code_commune_insee": "81195"}, "geometry": {"type": "Point", "coordinates": [2.19080149351, 43.5760032199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee999db4c2c1982f164501bc456bb499a520647", "fields": {"nom_de_la_commune": "NOAILHAC", "libell_d_acheminement": "NOAILHAC", "code_postal": "81490", "coordonnees_gps": [43.5859681102, 2.3789399334], "code_commune_insee": "81196"}, "geometry": {"type": "Point", "coordinates": [2.3789399334, 43.5859681102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b68ac8b0ba8182110cb97bbb04cbcca8a14f7a", "fields": {"nom_de_la_commune": "NOAILLES", "libell_d_acheminement": "NOAILLES", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81197"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75992fe7d615bb755cb1f37d0f65aa422eb46f0", "fields": {"nom_de_la_commune": "PARISOT", "libell_d_acheminement": "PARISOT", "code_postal": "81310", "coordonnees_gps": [43.8652051061, 1.81061411386], "code_commune_insee": "81202"}, "geometry": {"type": "Point", "coordinates": [1.81061411386, 43.8652051061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c727d2a882ceb5328fc6fd1f162c9a2858df286", "fields": {"nom_de_la_commune": "PECHAUDIER", "libell_d_acheminement": "PECHAUDIER", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81205"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78c6e99dff8971e7992a5bd9348a29807aa210c4", "fields": {"nom_de_la_commune": "PEYREGOUX", "libell_d_acheminement": "PEYREGOUX", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81207"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4037fa7bbb246b5ba5df0a6f63dd9d7760960483", "fields": {"nom_de_la_commune": "PUYBEGON", "libell_d_acheminement": "PUYBEGON", "code_postal": "81390", "coordonnees_gps": [43.7576771475, 1.89892940194], "code_commune_insee": "81215"}, "geometry": {"type": "Point", "coordinates": [1.89892940194, 43.7576771475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da5a740aae3669284684a518040214a4a95aed7", "fields": {"nom_de_la_commune": "PUYCALVEL", "libell_d_acheminement": "PUYCALVEL", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81216"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "113d39ac4794895f3772e3bd9dc9ee97498b0fa5", "fields": {"nom_de_la_commune": "PUYGOUZON", "libell_d_acheminement": "PUYGOUZON", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81218"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04e3a970d44fd46b3782e0894fafa108675a354e", "fields": {"nom_de_la_commune": "REALMONT", "libell_d_acheminement": "REALMONT", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81222"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "484c39e24da61b4c26b323eff543fe0f3860ff2b", "fields": {"nom_de_la_commune": "LE RIOLS", "libell_d_acheminement": "LE RIOLS", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81224"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb98e778529544b2ed22bb3841c0830869a19b6b", "fields": {"nom_de_la_commune": "ST AFFRIQUE LES MONTAGNES", "libell_d_acheminement": "ST AFFRIQUE LES MONTAGNES", "code_postal": "81290", "coordonnees_gps": [43.5116005076, 2.23924261943], "code_commune_insee": "81235"}, "geometry": {"type": "Point", "coordinates": [2.23924261943, 43.5116005076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c2d284246d8ca6ab809e01e69a615f1f1753897", "fields": {"nom_de_la_commune": "ST AMANS SOULT", "libell_d_acheminement": "ST AMANS SOULT", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81238"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0589a76eaf5f857d1febed4caf4d63a1d9698b", "fields": {"nom_de_la_commune": "ST AMANS VALTORET", "libell_d_acheminement": "ST AMANS VALTORET", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81239"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1769cc2aa233add1b3e39fa231ca7133fa084d43", "fields": {"nom_de_la_commune": "ST ANDRE", "libell_d_acheminement": "ST ANDRE", "code_postal": "81250", "coordonnees_gps": [43.8730410539, 2.47494660719], "code_commune_insee": "81240"}, "geometry": {"type": "Point", "coordinates": [2.47494660719, 43.8730410539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f0a0af34f79e22d5927f045a95fbfaefb27253", "fields": {"nom_de_la_commune": "ST ANTONIN DE LACALM", "libell_d_acheminement": "ST ANTONIN DE LACALM", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81241"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21cda503051e8f2ea96819e548fb3c1a9414cdfd", "fields": {"nom_de_la_commune": "ST AVIT", "libell_d_acheminement": "ST AVIT", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81242"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c201072626c38241b4618a3867bd6577656a3b2", "fields": {"nom_de_la_commune": "ST BEAUZILE", "libell_d_acheminement": "ST BEAUZILE", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81243"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33de14b655c6f5df907c36cd6312e3837dd76b38", "fields": {"nom_de_la_commune": "STE CECILE DU CAYROU", "libell_d_acheminement": "STE CECILE DU CAYROU", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81246"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62fc9472cb854987054a7914e2e49730385b730e", "fields": {"nom_de_la_commune": "ST GENEST DE CONTEST", "libell_d_acheminement": "ST GENEST DE CONTEST", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81250"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac341efe4625909429a6ba3e558339ec747cbf02", "fields": {"nom_de_la_commune": "ST LIEUX LAFENASSE", "libell_d_acheminement": "ST LIEUX LAFENASSE", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81260"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "715098e1e3ebc53a50d2a24f370039883295fb0c", "fields": {"nom_de_la_commune": "ST MARTIN LAGUEPIE", "libell_d_acheminement": "ST MARTIN LAGUEPIE", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81263"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c69c1f5dbb3976b08be944af93215e43b2f53ef1", "fields": {"nom_de_la_commune": "ST SERNIN LES LAVAUR", "libell_d_acheminement": "ST SERNIN LES LAVAUR", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81270"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a9c25b257d0bcaa60193e7b93ad51efb73a83b", "fields": {"nom_de_la_commune": "SALIES", "libell_d_acheminement": "SALIES", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81274"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2af7136f0862c38e47585d152739cfbb4bc00270", "fields": {"nom_de_la_commune": "SALVAGNAC", "libell_d_acheminement": "SALVAGNAC", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81276"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a77d159265afc9025f2b6aeebf38dcc1c5ebdd6f", "fields": {"nom_de_la_commune": "SAUSSENAC", "libell_d_acheminement": "SAUSSENAC", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81277"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631a814e206d1cdf17f77cc016005b3432dce50e", "fields": {"nom_de_la_commune": "SEMALENS", "libell_d_acheminement": "SEMALENS", "code_postal": "81570", "coordonnees_gps": [43.6265358099, 2.11305991393], "code_commune_insee": "81281"}, "geometry": {"type": "Point", "coordinates": [2.11305991393, 43.6265358099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82ca7771762471dcc4d1712852774adbe51759c8", "fields": {"nom_de_la_commune": "SERENAC", "libell_d_acheminement": "SERENAC", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81285"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8bbc54651c28197c5764900708fa62b0f1b8dc", "fields": {"nom_de_la_commune": "SOUAL", "libell_d_acheminement": "SOUAL", "code_postal": "81580", "coordonnees_gps": [43.5600042132, 2.12607706604], "code_commune_insee": "81289"}, "geometry": {"type": "Point", "coordinates": [2.12607706604, 43.5600042132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17ef5e6da1b8c87b746d8e4e13fc0f0e0f4402f7", "fields": {"nom_de_la_commune": "TERSSAC", "libell_d_acheminement": "TERSSAC", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81297"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb0c0c67ff46a0a059e4cc0de933e9a5966db521", "fields": {"nom_de_la_commune": "TEULAT", "libell_d_acheminement": "TEULAT", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81298"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d045759938dac7f0c8827733b664a0e6021e4797", "fields": {"nom_de_la_commune": "TONNAC", "libell_d_acheminement": "TONNAC", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81300"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c681e8a74845274ba7c66ac6f4b5ae92a88c4916", "fields": {"nom_de_la_commune": "TREBAS", "libell_d_acheminement": "TREBAS", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81303"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efee9ce5898fbe121c9ff42734538b65afa61bb7", "fields": {"nom_de_la_commune": "VAOUR", "libell_d_acheminement": "VAOUR", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81309"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c10d50f431e48b27807b184293881c864cb2f91", "fields": {"nom_de_la_commune": "VIEUX", "libell_d_acheminement": "VIEUX", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81316"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaccfe8c95b26e186ea27617349834e5fa9a7b32", "fields": {"nom_de_la_commune": "LE VINTROU", "libell_d_acheminement": "LE VINTROU", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81321"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72d274e3113cbe07c622f6e68c06afe163fa856a", "fields": {"nom_de_la_commune": "VIRAC", "libell_d_acheminement": "VIRAC", "code_postal": "81640", "coordonnees_gps": [44.0838977271, 2.06928881361], "code_commune_insee": "81322"}, "geometry": {"type": "Point", "coordinates": [2.06928881361, 44.0838977271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05275368c82cd8960f79f356e976da9cb5374ebc", "fields": {"nom_de_la_commune": "VIVIERS LES LAVAUR", "libell_d_acheminement": "VIVIERS LES LAVAUR", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81324"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72adf7b085b19be43b3a63db0edba25d44741141", "fields": {"nom_de_la_commune": "VIVIERS LES MONTAGNES", "libell_d_acheminement": "VIVIERS LES MONTAGNES", "code_postal": "81290", "coordonnees_gps": [43.5116005076, 2.23924261943], "code_commune_insee": "81325"}, "geometry": {"type": "Point", "coordinates": [2.23924261943, 43.5116005076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c46a0e3a07469496ed02978df86428aca2381994", "fields": {"nom_de_la_commune": "ALBEFEUILLE LAGARDE", "libell_d_acheminement": "ALBEFEUILLE LAGARDE", "code_postal": "82290", "coordonnees_gps": [44.0394500882, 1.24886608887], "code_commune_insee": "82001"}, "geometry": {"type": "Point", "coordinates": [1.24886608887, 44.0394500882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0945362d2f6c1469769a7b8e7df53180cb4e67d", "fields": {"nom_de_la_commune": "ALBIAS", "libell_d_acheminement": "ALBIAS", "code_postal": "82350", "coordonnees_gps": [44.0817329128, 1.44840775268], "code_commune_insee": "82002"}, "geometry": {"type": "Point", "coordinates": [1.44840775268, 44.0817329128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "330013871665b6271bf5f091aa84b3886df0ec7d", "fields": {"nom_de_la_commune": "AUTY", "libell_d_acheminement": "AUTY", "code_postal": "82220", "coordonnees_gps": [44.1884297921, 1.33875921921], "code_commune_insee": "82007"}, "geometry": {"type": "Point", "coordinates": [1.33875921921, 44.1884297921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "775540826da06a98afef78c928ac3eadc57d5308", "fields": {"nom_de_la_commune": "BARDIGUES", "libell_d_acheminement": "BARDIGUES", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82010"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba2d2683d242c27915aff3d59fe4491d688b383", "fields": {"nom_de_la_commune": "BARRY D ISLEMADE", "libell_d_acheminement": "BARRY D ISLEMADE", "code_postal": "82290", "coordonnees_gps": [44.0394500882, 1.24886608887], "code_commune_insee": "82011"}, "geometry": {"type": "Point", "coordinates": [1.24886608887, 44.0394500882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ef899b47eb586fbdb81af2bc360adfb85be67c8", "fields": {"nom_de_la_commune": "BEAUPUY", "libell_d_acheminement": "BEAUPUY", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82014"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "191055703d76a66bb6db0789c640d189ae2b67a2", "fields": {"nom_de_la_commune": "BELBEZE EN LOMAGNE", "libell_d_acheminement": "BELBEZE EN LOMAGNE", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82015"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10f3e9bbe5134a43c053c8f7a1b485bc2b24d732", "fields": {"nom_de_la_commune": "BOUDOU", "libell_d_acheminement": "BOUDOU", "code_postal": "82200", "coordonnees_gps": [44.130658243, 1.07974419868], "code_commune_insee": "82019"}, "geometry": {"type": "Point", "coordinates": [1.07974419868, 44.130658243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43c4a3bc7e0002238e0769f7e15f90421dd58730", "fields": {"nom_de_la_commune": "BOUILLAC", "libell_d_acheminement": "BOUILLAC", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82020"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a61de9d217e468c21be2a1114f7d4459f353487f", "fields": {"nom_de_la_commune": "BRUNIQUEL", "libell_d_acheminement": "BRUNIQUEL", "code_postal": "82800", "coordonnees_gps": [44.0611709641, 1.58586539756], "code_commune_insee": "82026"}, "geometry": {"type": "Point", "coordinates": [1.58586539756, 44.0611709641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c1f4f9aef1d4ba310865e0339b06a8095dc99c2", "fields": {"nom_de_la_commune": "CASTANET", "libell_d_acheminement": "CASTANET", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82029"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4808201a600dd0b8d9ef074bf3b9d84882f5c4ff", "fields": {"nom_de_la_commune": "CORDES TOLOSANNES", "libell_d_acheminement": "CORDES TOLOSANNES", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82045"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf05b055b5f7c0bc613bad831f50a0e51404029", "fields": {"nom_de_la_commune": "COUTURES", "libell_d_acheminement": "COUTURES", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82046"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f704592d838f89d51633c10035b9f32f155f8c48", "fields": {"nom_de_la_commune": "CUMONT", "libell_d_acheminement": "CUMONT", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82047"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f5a75e891fe408984b1146989b163937b046772", "fields": {"nom_de_la_commune": "ESCAZEAUX", "libell_d_acheminement": "ESCAZEAUX", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82053"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7533e34c29c26bccc801095388ae7d90500be47", "fields": {"nom_de_la_commune": "FABAS", "libell_d_acheminement": "FABAS", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82057"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2e383019d37612acb1e3927b2670d81cf02db6", "fields": {"nom_de_la_commune": "GASQUES", "libell_d_acheminement": "GASQUES", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82065"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2f0b0e7670885dec166473522c8ec6c9e39aeca", "fields": {"nom_de_la_commune": "GRAMONT", "libell_d_acheminement": "GRAMONT", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82074"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6da9c0ad05f3028a1b6e4bcda37706a759a2e8", "fields": {"nom_de_la_commune": "LABASTIDE ST PIERRE", "libell_d_acheminement": "LABASTIDE ST PIERRE", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82079"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ea7d75e85970c0ed775e0f190fa333ef7aefc6", "fields": {"nom_de_la_commune": "LABOURGADE", "libell_d_acheminement": "LABOURGADE", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82081"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "891eba725ea83165c28adb3b20b7b818bf0a6c31", "fields": {"nom_de_la_commune": "ST BONNET PRES ORCIVAL", "libell_d_acheminement": "ST BONNET PRES ORCIVAL", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63326"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d7d67c9fdd2c3c05f98c5c2805bf5fbca2cb0a", "fields": {"nom_de_la_commune": "ST BONNET PRES RIOM", "libell_d_acheminement": "ST BONNET PRES RIOM", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63327"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf3f29f95576d21736f2092b8805a83822893bd5", "fields": {"nom_de_la_commune": "STE CATHERINE", "libell_d_acheminement": "STE CATHERINE", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63328"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09240352fe8fa2ccc9f2b6e709908ed1bef830e7", "fields": {"nom_de_la_commune": "ST DIERY", "libell_d_acheminement": "ST DIERY", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63335"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a36574f26d8ab2d15e95ad1640d1e4087cc8fd9", "fields": {"nom_de_la_commune": "ST ELOY LA GLACIERE", "libell_d_acheminement": "ST ELOY LA GLACIERE", "code_postal": "63890", "coordonnees_gps": [45.5726810009, 3.61894402093], "code_commune_insee": "63337"}, "geometry": {"type": "Point", "coordinates": [3.61894402093, 45.5726810009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f47a4e03ef3ead27ffce7edc0bec0391bc4727d", "fields": {"nom_de_la_commune": "ST ETIENNE DES CHAMPS", "libell_d_acheminement": "ST ETIENNE DES CHAMPS", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63339"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3f8f7a11f6fedb5ddb30803d56ad084b5a2b33", "fields": {"nom_de_la_commune": "ST ETIENNE SUR USSON", "libell_d_acheminement": "ST ETIENNE SUR USSON", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63340"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb411451fe8bc7f45b973395679b860d761aea16", "fields": {"nom_de_la_commune": "ST FERREOL DES COTES", "libell_d_acheminement": "ST FERREOL DES COTES", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63341"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e6c35b4ffd32a99332cd17fac7e4ec6a03cf2cb", "fields": {"nom_de_la_commune": "ST GAL SUR SIOULE", "libell_d_acheminement": "ST GAL SUR SIOULE", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63344"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "907c828dbd0b8989eb8026efd0f37f15d01f39f3", "fields": {"nom_de_la_commune": "ST GENES CHAMPANELLE", "libell_d_acheminement": "ST GENES CHAMPANELLE", "code_postal": "63122", "coordonnees_gps": [45.7250562511, 3.00944108289], "code_commune_insee": "63345"}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b834477f43ca012ca4b4ca97daeca5723a160d0f", "fields": {"code_postal": "63122", "code_commune_insee": "63345", "libell_d_acheminement": "ST GENES CHAMPANELLE", "ligne_5": "BERZET", "nom_de_la_commune": "ST GENES CHAMPANELLE", "coordonnees_gps": [45.7250562511, 3.00944108289]}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68ca786c5d4fdc5e933e8823239ab22290ec9182", "fields": {"code_postal": "63122", "code_commune_insee": "63345", "libell_d_acheminement": "ST GENES CHAMPANELLE", "ligne_5": "THEIX", "nom_de_la_commune": "ST GENES CHAMPANELLE", "coordonnees_gps": [45.7250562511, 3.00944108289]}, "geometry": {"type": "Point", "coordinates": [3.00944108289, 45.7250562511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4838a4d743cef678e93f291f5fd9c61ed6949d83", "fields": {"nom_de_la_commune": "ST GENES LA TOURETTE", "libell_d_acheminement": "ST GENES LA TOURETTE", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63348"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ff7a2ae51f1ba0588a409edc432776e862d576", "fields": {"nom_de_la_commune": "ST GERMAIN PRES HERMENT", "libell_d_acheminement": "ST GERMAIN PRES HERMENT", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63351"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b50d9d6dc85558fb3e1d254dae744ba98a838a9e", "fields": {"nom_de_la_commune": "ST GERMAIN L HERM", "libell_d_acheminement": "ST GERMAIN L HERM", "code_postal": "63630", "coordonnees_gps": [45.4483235592, 3.57454227406], "code_commune_insee": "63353"}, "geometry": {"type": "Point", "coordinates": [3.57454227406, 45.4483235592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec0dd975054baa65957ef43af5e5ba200822d09c", "fields": {"nom_de_la_commune": "ST HILAIRE LES MONGES", "libell_d_acheminement": "ST HILAIRE LES MONGES", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63359"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00f826be30e67df79d17c2dd426ca0a02200ab8", "fields": {"nom_de_la_commune": "ST JULIEN PUY LAVEZE", "libell_d_acheminement": "ST JULIEN PUY LAVEZE", "code_postal": "63820", "coordonnees_gps": [45.6766706035, 2.68432018586], "code_commune_insee": "63370"}, "geometry": {"type": "Point", "coordinates": [2.68432018586, 45.6766706035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4445e1cfca2d3b652d0c7eeccea53515a9e60f7", "fields": {"nom_de_la_commune": "ST LAURE", "libell_d_acheminement": "ST LAURE", "code_postal": "63350", "coordonnees_gps": [45.9054085179, 3.36176229865], "code_commune_insee": "63372"}, "geometry": {"type": "Point", "coordinates": [3.36176229865, 45.9054085179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e0c4fba4721e6e00f884bde7c7b78faa3245c3", "fields": {"nom_de_la_commune": "ST MARTIN D OLLIERES", "libell_d_acheminement": "ST MARTIN D OLLIERES", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63376"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fa96fe01206a36f3c711d2f764f1e8e2d0f85f1", "fields": {"nom_de_la_commune": "ST MAURICE", "libell_d_acheminement": "ST MAURICE", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63378"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b50f852879446ad086db8ecafda109303be2a30", "fields": {"nom_de_la_commune": "ST PIERRE COLAMINE", "libell_d_acheminement": "ST PIERRE COLAMINE", "code_postal": "63610", "coordonnees_gps": [45.477068899, 2.93237565554], "code_commune_insee": "63383"}, "geometry": {"type": "Point", "coordinates": [2.93237565554, 45.477068899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbb61bef207b04dc2aefb3cfbbed6d2d29df337e", "fields": {"nom_de_la_commune": "ST QUINTIN SUR SIOULE", "libell_d_acheminement": "ST QUINTIN SUR SIOULE", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63390"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96f66691e22b81070d9ff9fe394950c3f5b25d2", "fields": {"nom_de_la_commune": "ST REMY DE BLOT", "libell_d_acheminement": "ST REMY DE BLOT", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63391"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77831bfb127b08406e93458b9a2d9a0064cd6b36", "fields": {"nom_de_la_commune": "ST SULPICE", "libell_d_acheminement": "ST SULPICE", "code_postal": "63760", "coordonnees_gps": [45.6646500323, 2.57820074575], "code_commune_insee": "63399"}, "geometry": {"type": "Point", "coordinates": [2.57820074575, 45.6646500323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e044c95203f0d06df79b78fa97d25fb2037a17a", "fields": {"nom_de_la_commune": "ST VINCENT", "libell_d_acheminement": "ST VINCENT", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63403"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eddc2271d42329a2956d1527fae619ca6fbff45", "fields": {"nom_de_la_commune": "SALLEDES", "libell_d_acheminement": "SALLEDES", "code_postal": "63270", "coordonnees_gps": [45.6408260002, 3.30100691361], "code_commune_insee": "63405"}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9851e520545c4e0e6916937bf1ce0743092aedf8", "fields": {"nom_de_la_commune": "TRALAIGUES", "libell_d_acheminement": "TRALAIGUES", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63436"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70cc41f03ee0eb99574fd4de8edb167ddad25c6f", "fields": {"nom_de_la_commune": "USSON", "libell_d_acheminement": "USSON", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63439"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a47d328c5f21448eac98c525af669eac6e59c2e", "fields": {"nom_de_la_commune": "VERRIERES", "libell_d_acheminement": "VERRIERES", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63452"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b6f4f14a08e3dcc8150c14d820800b35e3a2d3c", "fields": {"nom_de_la_commune": "VILLENEUVE", "libell_d_acheminement": "VILLENEUVE", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63458"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3549b4c2f34985a29d78ca28e99bea0b320ad36f", "fields": {"nom_de_la_commune": "VIRLET", "libell_d_acheminement": "VIRLET", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63462"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b1999bc7f382159ae3a211132bb03be32047f43", "fields": {"nom_de_la_commune": "VOINGT", "libell_d_acheminement": "VOINGT", "code_postal": "63620", "coordonnees_gps": [45.8124173701, 2.47211906548], "code_commune_insee": "63467"}, "geometry": {"type": "Point", "coordinates": [2.47211906548, 45.8124173701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825ae3ef19628402ee5d574b213b378ee5b7ed64", "fields": {"nom_de_la_commune": "VOLLORE VILLE", "libell_d_acheminement": "VOLLORE VILLE", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63469"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc54a96214cd11de47f2d9e79d8d663245028fcb", "fields": {"nom_de_la_commune": "YSSAC LA TOURETTE", "libell_d_acheminement": "YSSAC LA TOURETTE", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63473"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88b97c81bd0ab751d3d6c3b4a0a3224e7c84a923", "fields": {"nom_de_la_commune": "AAST", "libell_d_acheminement": "AAST", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64001"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a55bf2c4805fee26b1485cdf05e04f8a3ab19856", "fields": {"nom_de_la_commune": "AINHARP", "libell_d_acheminement": "AINHARP", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64012"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbf5d372124eb3857c26e83fd59869b467f4f771", "fields": {"nom_de_la_commune": "AINHOA", "libell_d_acheminement": "AINHOA", "code_postal": "64250", "coordonnees_gps": [43.3249246789, -1.42953644285], "code_commune_insee": "64014"}, "geometry": {"type": "Point", "coordinates": [-1.42953644285, 43.3249246789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b4125011622ebe8da6fac4d8ede64a2f3d4c4b0", "fields": {"nom_de_la_commune": "ALDUDES", "libell_d_acheminement": "ALDUDES", "code_postal": "64430", "coordonnees_gps": [43.1256104701, -1.37703506654], "code_commune_insee": "64016"}, "geometry": {"type": "Point", "coordinates": [-1.37703506654, 43.1256104701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da69db61800901a80eadb222968b6ee11c6fd095", "fields": {"nom_de_la_commune": "ANGLET", "libell_d_acheminement": "ANGLET", "code_postal": "64600", "coordonnees_gps": [43.491205564, -1.51578772334], "code_commune_insee": "64024"}, "geometry": {"type": "Point", "coordinates": [-1.51578772334, 43.491205564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28b611c19423d150f4a87cdc43279a2a9e112965", "fields": {"nom_de_la_commune": "ARANCOU", "libell_d_acheminement": "ARANCOU", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64031"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1771c3e74e9fcfbe684303c354c2e91c9a6983c6", "fields": {"nom_de_la_commune": "ARAUX", "libell_d_acheminement": "ARAUX", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64033"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64b9d1b53699c04fce1dd6e87cdb8bc780e50981", "fields": {"nom_de_la_commune": "ARBUS", "libell_d_acheminement": "ARBUS", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64037"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74f7e571aa44518220f022d5f6120779c0a9449", "fields": {"nom_de_la_commune": "AREN", "libell_d_acheminement": "AREN", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64039"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00b2120ebd617fa23903b32515dff3bd7592c701", "fields": {"nom_de_la_commune": "ARESSY", "libell_d_acheminement": "ARESSY", "code_postal": "64320", "coordonnees_gps": [43.2929999605, -0.293556943502], "code_commune_insee": "64041"}, "geometry": {"type": "Point", "coordinates": [-0.293556943502, 43.2929999605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c8b3b6562d07e2e54592a741fdd79d9583a962", "fields": {"nom_de_la_commune": "ARGELOS", "libell_d_acheminement": "ARGELOS", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64043"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b95670ecd8f1a257864bc16c2b070bb56251797", "fields": {"nom_de_la_commune": "ARMENDARITS", "libell_d_acheminement": "ARMENDARITS", "code_postal": "64640", "coordonnees_gps": [43.2945597226, -1.18265900805], "code_commune_insee": "64046"}, "geometry": {"type": "Point", "coordinates": [-1.18265900805, 43.2945597226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9157d7756869d9292734fd8600c6e57d89e617a1", "fields": {"nom_de_la_commune": "ARROS DE NAY", "libell_d_acheminement": "ARROS DE NAY", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64054"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5410c8932ea2c5df7861994a888287b36099a2f2", "fields": {"nom_de_la_commune": "ARROSES", "libell_d_acheminement": "ARROSES", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64056"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c88d037849377fccaeded1282726ac69dbc82247", "fields": {"nom_de_la_commune": "ARTIGUELOUVE", "libell_d_acheminement": "ARTIGUELOUVE", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64060"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "094ed8fa1671897b90a343ca22d55984e94801b7", "fields": {"nom_de_la_commune": "ARTIX", "libell_d_acheminement": "ARTIX", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64061"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7519027635f86cfa4ca3a545d52ae175b5edae2d", "fields": {"nom_de_la_commune": "ASTIS", "libell_d_acheminement": "ASTIS", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64070"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30f1ed1c29b442331763359994954fa9a5e11e0a", "fields": {"nom_de_la_commune": "AUBOUS", "libell_d_acheminement": "AUBOUS", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64074"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b6bc893b566ce42d16fed13974ea3eb4aad836", "fields": {"nom_de_la_commune": "AUGA", "libell_d_acheminement": "AUGA", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64077"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc1565485da18aafa84a0edaed14ecd656349ab", "fields": {"nom_de_la_commune": "AYDIUS", "libell_d_acheminement": "AYDIUS", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64085"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0d1f33a3e71a46167185a45a6523fbd5426511", "fields": {"nom_de_la_commune": "BARDOS", "libell_d_acheminement": "BARDOS", "code_postal": "64520", "coordonnees_gps": [43.4828017234, -1.16861389886], "code_commune_insee": "64094"}, "geometry": {"type": "Point", "coordinates": [-1.16861389886, 43.4828017234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cfe2ce535b08524ae294dbc60d819c1808d8ffc", "fields": {"nom_de_la_commune": "BARINQUE", "libell_d_acheminement": "BARINQUE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64095"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afae4346aff27cfc408515253b662ba7f6ffdf84", "fields": {"nom_de_la_commune": "BARRAUTE CAMU", "libell_d_acheminement": "BARRAUTE CAMU", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64096"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e41f975f53c0c3060a3529b5725b6e3379dd3b0", "fields": {"nom_de_la_commune": "BASSILLON VAUZE", "libell_d_acheminement": "BASSILLON VAUZE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64098"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88b62d55999b87ae4b565f442595fdf380577e3b", "fields": {"nom_de_la_commune": "BERGOUEY VIELLENAVE", "libell_d_acheminement": "BERGOUEY VIELLENAVE", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64113"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7647218c5c000cbe4dda4b3491b8db7c7c42067", "fields": {"code_postal": "64270", "code_commune_insee": "64113", "libell_d_acheminement": "BERGOUEY VIELLENAVE", "ligne_5": "VIELLENAVE SUR BIDOUZE", "nom_de_la_commune": "BERGOUEY VIELLENAVE", "coordonnees_gps": [43.4771574964, -0.961010238203]}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d6d949a7cbce791b911debfd60dbb96759667c0", "fields": {"nom_de_la_commune": "BIDACHE", "libell_d_acheminement": "BIDACHE", "code_postal": "64520", "coordonnees_gps": [43.4828017234, -1.16861389886], "code_commune_insee": "64123"}, "geometry": {"type": "Point", "coordinates": [-1.16861389886, 43.4828017234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dea6896336ee4b9ccf11445d1ee50e446a97692", "fields": {"nom_de_la_commune": "BIELLE", "libell_d_acheminement": "BIELLE", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64127"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0affb68d9fd452deed175b6ad8dac692daf41761", "fields": {"nom_de_la_commune": "BIZANOS", "libell_d_acheminement": "BIZANOS", "code_postal": "64320", "coordonnees_gps": [43.2929999605, -0.293556943502], "code_commune_insee": "64132"}, "geometry": {"type": "Point", "coordinates": [-0.293556943502, 43.2929999605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f9013ca8c5ffd225c0d18eddbab02cdc034f5ea", "fields": {"nom_de_la_commune": "BORDES", "libell_d_acheminement": "BORDES", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64138"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4151bf7da444b89746b88dfbe94f70ecca234c91", "fields": {"nom_de_la_commune": "BUNUS", "libell_d_acheminement": "BUNUS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64150"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc8d17226f73371b0256299a285309d18769115", "fields": {"nom_de_la_commune": "BUSSUNARITS SARRASQUETTE", "libell_d_acheminement": "BUSSUNARITS SARRASQUETTE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64154"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b773326b53444b64d23b19f3ae8d3f588469f0", "fields": {"nom_de_la_commune": "BUZY", "libell_d_acheminement": "BUZY", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64157"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8f13e00e8340a7f984b7352372df5286bb250d", "fields": {"nom_de_la_commune": "CAMBO LES BAINS", "libell_d_acheminement": "CAMBO LES BAINS", "code_postal": "64250", "coordonnees_gps": [43.3249246789, -1.42953644285], "code_commune_insee": "64160"}, "geometry": {"type": "Point", "coordinates": [-1.42953644285, 43.3249246789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "599f84e6ce89c97473f971c0c6b81a99d4587ea8", "fields": {"nom_de_la_commune": "CARRESSE CASSABER", "libell_d_acheminement": "CARRESSE CASSABER", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64168"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558a915d7db4999081608b4c22065bf836454167", "fields": {"code_postal": "64270", "code_commune_insee": "64168", "libell_d_acheminement": "CARRESSE CASSABER", "ligne_5": "CASSABER", "nom_de_la_commune": "CARRESSE CASSABER", "coordonnees_gps": [43.4771574964, -0.961010238203]}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a7117b56cb355a932ed18e0827bcfeab6c64b51", "fields": {"nom_de_la_commune": "CASTILLON D ARTHEZ", "libell_d_acheminement": "CASTILLON D ARTHEZ", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64181"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f20a949dcf4c27232f8bd18947d523eb8f80a6", "fields": {"nom_de_la_commune": "CHARRE", "libell_d_acheminement": "CHARRE", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64186"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1b2d15c50c2b462a28d74b88849dba405d9cfd", "fields": {"nom_de_la_commune": "CHARRITTE DE BAS", "libell_d_acheminement": "CHARRITTE DE BAS", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64187"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2721c83260b0f51b8130188ff898374dea501677", "fields": {"nom_de_la_commune": "CHERAUTE", "libell_d_acheminement": "CHERAUTE", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64188"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46f8b6d324fb5f34a7120cbd3796a0e95e0590b4", "fields": {"nom_de_la_commune": "COSLEDAA LUBE BOAST", "libell_d_acheminement": "COSLEDAA LUBE BOAST", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64194"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038258b09f7c6aa8bd67fdbe3122273cc7c9e1ed", "fields": {"nom_de_la_commune": "COUBLUCQ", "libell_d_acheminement": "COUBLUCQ", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64195"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9011f0462b21ba7ea5a62ec549883d3f493c03f1", "fields": {"nom_de_la_commune": "DENGUIN", "libell_d_acheminement": "DENGUIN", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64198"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae938ae3c16ac68139ac78bbc3553d90ece20aae", "fields": {"nom_de_la_commune": "EAUX BONNES", "libell_d_acheminement": "EAUX BONNES", "code_postal": "64440", "coordonnees_gps": [42.9183295476, -0.395850195838], "code_commune_insee": "64204"}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f983504eec94b293ac2930ea14625426c23a1fd9", "fields": {"code_postal": "64440", "code_commune_insee": "64204", "libell_d_acheminement": "EAUX BONNES", "ligne_5": "GOURETTE", "nom_de_la_commune": "EAUX BONNES", "coordonnees_gps": [42.9183295476, -0.395850195838]}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dba4051cb9bb155b60f662b50e7ffda28f072a88", "fields": {"nom_de_la_commune": "ESCOT", "libell_d_acheminement": "ESCOT", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64206"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6718de73e97418552b6f550d34200febfcdc476e", "fields": {"nom_de_la_commune": "ESCOUT", "libell_d_acheminement": "ESCOUT", "code_postal": "64870", "coordonnees_gps": [43.1859088919, -0.54370425822], "code_commune_insee": "64209"}, "geometry": {"type": "Point", "coordinates": [-0.54370425822, 43.1859088919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4024ab06661c4deaaeaecc0d6957e5968dcccde9", "fields": {"nom_de_la_commune": "ESPIUTE", "libell_d_acheminement": "ESPIUTE", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64215"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "077b1718634895001e1dd6c79affaa492855429d", "fields": {"nom_de_la_commune": "ESTERENCUBY", "libell_d_acheminement": "ESTERENCUBY", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64218"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893237a20ccce69f2314a71424fea9cb09eae0bd", "fields": {"nom_de_la_commune": "ESTOS", "libell_d_acheminement": "ESTOS", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64220"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c29b942c2f21f18772b768f89865d110aa44e33a", "fields": {"nom_de_la_commune": "GARLIN", "libell_d_acheminement": "GARLIN", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64233"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5fe9f439320592d34bccee3755aca1c5ccc4c7d", "fields": {"nom_de_la_commune": "GESTAS", "libell_d_acheminement": "GESTAS", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64242"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0cbaeec373bbb389d7f837a0e4b53f6a9949501", "fields": {"nom_de_la_commune": "GEUS D OLORON", "libell_d_acheminement": "GEUS D OLORON", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64244"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "379af3f8f38b4da2ad6c63e98934ca605d886f42", "fields": {"nom_de_la_commune": "GOTEIN LIBARRENX", "libell_d_acheminement": "GOTEIN LIBARRENX", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64247"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a125cb663ad703cce20ac7e62b33212475ba5bab", "fields": {"nom_de_la_commune": "GUINARTHE PARENTIES", "libell_d_acheminement": "GUINARTHE PARENTIES", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64251"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5d2c88f2073d285b434ace890ce29292fd51213", "fields": {"nom_de_la_commune": "GURMENCON", "libell_d_acheminement": "GURMENCON", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64252"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48f54e4c2ab4fa661f0e4db494c9c7e386a6f7e", "fields": {"nom_de_la_commune": "HASPARREN", "libell_d_acheminement": "HASPARREN", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64256"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d774f8a3f55da09a6f6775c3c10bcd9a85c8560c", "fields": {"nom_de_la_commune": "HAUT DE BOSDARROS", "libell_d_acheminement": "HAUT DE BOSDARROS", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64257"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "648ff59cf27d6cb09dfeaaf76083881df1d5fb63", "fields": {"nom_de_la_commune": "L HOPITAL D ORION", "libell_d_acheminement": "L HOPITAL D ORION", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64263"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17153d54efc5f4ea52cf3ceadd0aa99a83852ad9", "fields": {"nom_de_la_commune": "HOSTA", "libell_d_acheminement": "HOSTA", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64265"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ec6449f5066820d84fa5af6a4ad201a5b319d3f", "fields": {"nom_de_la_commune": "IDRON", "libell_d_acheminement": "IDRON", "code_postal": "64320", "coordonnees_gps": [43.2929999605, -0.293556943502], "code_commune_insee": "64269"}, "geometry": {"type": "Point", "coordinates": [-0.293556943502, 43.2929999605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1848051efe11d7275dfa8cb97bbfe850275a4872", "fields": {"nom_de_la_commune": "LABEYRIE", "libell_d_acheminement": "LABEYRIE", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64295"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "523284770eb69600d4f32b372d8fe9c790c0840c", "fields": {"nom_de_la_commune": "LACARRE", "libell_d_acheminement": "LACARRE", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64297"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38d831ea6b40aae2cdf3cc55f69c4058ca0919ad", "fields": {"nom_de_la_commune": "LACARRY ARHAN CHARRITTE DE HAUT", "libell_d_acheminement": "LACARRY ARHAN CHARRITTE DE HAUT", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64298"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84d75428a0334818662d2def7a70172ba0db246f", "fields": {"nom_de_la_commune": "LAGOS", "libell_d_acheminement": "LAGOS", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64302"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e808c1826bd27068bd23dac7564acd2fa422e79c", "fields": {"nom_de_la_commune": "LAMAYOU", "libell_d_acheminement": "LAMAYOU", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64309"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7a6cb98d701542c6f8bb7fc0672547fa65b179a", "fields": {"nom_de_la_commune": "BRETTEVILLE SUR LAIZE", "libell_d_acheminement": "BRETTEVILLE SUR LAIZE", "code_postal": "14680", "coordonnees_gps": [49.0558845153, -0.321596506267], "code_commune_insee": "14100"}, "geometry": {"type": "Point", "coordinates": [-0.321596506267, 49.0558845153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a245a218b82ff57fe69b92d8c93191650aed3c53", "fields": {"nom_de_la_commune": "BUCEELS", "libell_d_acheminement": "BUCEELS", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14111"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "931b0d20c717af86df298a785bbfd7fe532cdecd", "fields": {"nom_de_la_commune": "LE BU SUR ROUVRES", "libell_d_acheminement": "LE BU SUR ROUVRES", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14116"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2da81282c9fda43c15b0c77fc1a887481e844dd", "fields": {"nom_de_la_commune": "CHAMP DU BOULT", "libell_d_acheminement": "CHAMP DU BOULT", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14151"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd5c6daa6f53c7249aa50a93e8451b8e92d4d6ce", "fields": {"nom_de_la_commune": "CONDE SUR IFS", "libell_d_acheminement": "CONDE SUR IFS", "code_postal": "14270", "coordonnees_gps": [49.0749683297, -0.0575716776042], "code_commune_insee": "14173"}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f64bc2690143946950b965741d6d6f15c21c8c", "fields": {"nom_de_la_commune": "CONDE EN NORMANDIE", "libell_d_acheminement": "CONDE EN NORMANDIE", "code_postal": "14110", "coordonnees_gps": [48.8603879133, -0.538857121596], "code_commune_insee": "14174"}, "geometry": {"type": "Point", "coordinates": [-0.538857121596, 48.8603879133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3633c3cf984014269f5305dce84d20f8d7f9ac46", "fields": {"code_postal": "14770", "code_commune_insee": "14174", "libell_d_acheminement": "CONDE EN NORMANDIE", "ligne_5": "ST PIERRE LA VIEILLE", "nom_de_la_commune": "CONDE EN NORMANDIE", "coordonnees_gps": [48.9262068, -0.631065513494]}, "geometry": {"type": "Point", "coordinates": [-0.631065513494, 48.9262068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c3bbd818b385c1798bb70661d86fc3cd186466", "fields": {"nom_de_la_commune": "CONDE SUR SEULLES", "libell_d_acheminement": "CONDE SUR SEULLES", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14175"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ceed2dff0d95210b794576b8a444b651570f3c", "fields": {"nom_de_la_commune": "COUPESARTE", "libell_d_acheminement": "COUPESARTE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14189"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f5010315dc8dd5d459e279bd086b2b16ea33e1a", "fields": {"nom_de_la_commune": "COURCY", "libell_d_acheminement": "COURCY", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14190"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "298c537a90e8c720f7d740c94da595472bf1f2fd", "fields": {"nom_de_la_commune": "CRESSERONS", "libell_d_acheminement": "CRESSERONS", "code_postal": "14440", "coordonnees_gps": [49.2888987238, -0.397807379835], "code_commune_insee": "14197"}, "geometry": {"type": "Point", "coordinates": [-0.397807379835, 49.2888987238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87af3086c2e7be9026125a5ad765bc0e338e5bf0", "fields": {"code_postal": "14440", "code_commune_insee": "14228", "libell_d_acheminement": "DOUVRES LA DELIVRANDE", "ligne_5": "TAILLEVILLE", "nom_de_la_commune": "DOUVRES LA DELIVRANDE", "coordonnees_gps": [49.2888987238, -0.397807379835]}, "geometry": {"type": "Point", "coordinates": [-0.397807379835, 49.2888987238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da048e3d0fcd503098309b2adbedcb82b850fd0f", "fields": {"nom_de_la_commune": "DRUBEC", "libell_d_acheminement": "DRUBEC", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14230"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93dad497193b27f37f947cc524d833b3d175d75c", "fields": {"nom_de_la_commune": "EVRECY", "libell_d_acheminement": "EVRECY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14257"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca62c9641b766c60c0cec71f47ec14afa0bff9d9", "fields": {"code_postal": "14320", "code_commune_insee": "14266", "libell_d_acheminement": "FEUGUEROLLES BULLY", "ligne_5": "BULLY", "nom_de_la_commune": "FEUGUEROLLES BULLY", "coordonnees_gps": [49.1013108668, -0.374113026429]}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa5df61c1f0906332bb3e4ff3768bd92a78eaef5", "fields": {"nom_de_la_commune": "FIERVILLE LES PARCS", "libell_d_acheminement": "FIERVILLE LES PARCS", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14269"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25ac2ec47e8d694b860b19f241cb2b795a1d0ed", "fields": {"nom_de_la_commune": "FONTAINE ETOUPEFOUR", "libell_d_acheminement": "FONTAINE ETOUPEFOUR", "code_postal": "14790", "coordonnees_gps": [49.1541386997, -0.466148094743], "code_commune_insee": "14274"}, "geometry": {"type": "Point", "coordinates": [-0.466148094743, 49.1541386997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c06d086ed15c265c37c42f49a256a02085a0553", "fields": {"nom_de_la_commune": "FONTAINE HENRY", "libell_d_acheminement": "FONTAINE HENRY", "code_postal": "14610", "coordonnees_gps": [49.2527836333, -0.426386244935], "code_commune_insee": "14275"}, "geometry": {"type": "Point", "coordinates": [-0.426386244935, 49.2527836333]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a508c93695e5f852fdc64d244407deec7fb5b8c", "fields": {"nom_de_la_commune": "FONTENAY LE PESNEL", "libell_d_acheminement": "FONTENAY LE PESNEL", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14278"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d13fed37708d1451c108d56a2d1b7236bd7dc86", "fields": {"nom_de_la_commune": "FONTENERMONT", "libell_d_acheminement": "FONTENERMONT", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14279"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f7da4764bfaf0c973778e69d3327447386dc2ee", "fields": {"nom_de_la_commune": "FORMENTIN", "libell_d_acheminement": "FORMENTIN", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14280"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "376322bca32a01a3f2e0c41b2598696b04b0d9ac", "fields": {"nom_de_la_commune": "FOURNEVILLE", "libell_d_acheminement": "FOURNEVILLE", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14286"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b047f0e3ac9c1730d8a3f4e721ca90e331665a", "fields": {"nom_de_la_commune": "GEFOSSE FONTENAY", "libell_d_acheminement": "GEFOSSE FONTENAY", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14298"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4696f9e5276f93ffe43f247716238481fb81ea3", "fields": {"nom_de_la_commune": "GENNEVILLE", "libell_d_acheminement": "GENNEVILLE", "code_postal": "14600", "coordonnees_gps": [49.3903552153, 0.241678986745], "code_commune_insee": "14299"}, "geometry": {"type": "Point", "coordinates": [0.241678986745, 49.3903552153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7956b60f35317fcf5f55ca7d2568d44190d368b", "fields": {"nom_de_la_commune": "GERROTS", "libell_d_acheminement": "GERROTS", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14300"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3db0e5ba7bf76c7d6980dd7eeeb58c0e0b831cce", "fields": {"nom_de_la_commune": "GOUSTRANVILLE", "libell_d_acheminement": "GOUSTRANVILLE", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14308"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90c9a7b704c26f8956bddf613ddc673dce8af8c7", "fields": {"nom_de_la_commune": "GRAINVILLE LANGANNERIE", "libell_d_acheminement": "GRAINVILLE LANGANNERIE", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14310"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45483cb49b4cd64e50a8f74ff5fd436cf6a9e228", "fields": {"nom_de_la_commune": "GRAYE SUR MER", "libell_d_acheminement": "GRAYE SUR MER", "code_postal": "14470", "coordonnees_gps": [49.3187007817, -0.465940150296], "code_commune_insee": "14318"}, "geometry": {"type": "Point", "coordinates": [-0.465940150296, 49.3187007817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25111f3d1805d3e92f2890fd3c311ff1e937107", "fields": {"nom_de_la_commune": "GRENTHEVILLE", "libell_d_acheminement": "GRENTHEVILLE", "code_postal": "14540", "coordonnees_gps": [49.1052988528, -0.282744263635], "code_commune_insee": "14319"}, "geometry": {"type": "Point", "coordinates": [-0.282744263635, 49.1052988528]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d0ed817533a12c25d7a20239780612df497845", "fields": {"nom_de_la_commune": "GUERON", "libell_d_acheminement": "GUERON", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14322"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b829a3a691ebb26e2d9b71610505caa6c3251863", "fields": {"nom_de_la_commune": "HOTTOT LES BAGUES", "libell_d_acheminement": "HOTTOT LES BAGUES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14336"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccced55c96b25b52e08123709f6b878440823ec2", "fields": {"nom_de_la_commune": "LA LANDE SUR DROME", "libell_d_acheminement": "LA LANDE SUR DROME", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14350"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4aabfc6822f0b7c5da640fcc3ac690172237dff", "fields": {"nom_de_la_commune": "LEFFARD", "libell_d_acheminement": "LEFFARD", "code_postal": "14700", "coordonnees_gps": [48.8884175702, -0.214432827919], "code_commune_insee": "14360"}, "geometry": {"type": "Point", "coordinates": [-0.214432827919, 48.8884175702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b1003668f5134ae45af70c73d4737ecd438a21", "fields": {"nom_de_la_commune": "LINGEVRES", "libell_d_acheminement": "LINGEVRES", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14364"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25f347996a8a12bcaf4cf80c4da79a5319fbd21e", "fields": {"nom_de_la_commune": "LISORES", "libell_d_acheminement": "LISORES", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14368"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "637fee7543af057d55127fba68c32162f362afb6", "fields": {"nom_de_la_commune": "LITTEAU", "libell_d_acheminement": "LITTEAU", "code_postal": "14490", "coordonnees_gps": [49.1880103756, -0.822491149883], "code_commune_insee": "14369"}, "geometry": {"type": "Point", "coordinates": [-0.822491149883, 49.1880103756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4bc6ddcfae6be729e89d05fd3f27095431b2ff5", "fields": {"nom_de_la_commune": "LE MOLAY LITTRY", "libell_d_acheminement": "LE MOLAY LITTRY", "code_postal": "14330", "coordonnees_gps": [49.2420322509, -0.955592852997], "code_commune_insee": "14370"}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06617501c0eaed80cc22e64d9640bd8ea4363024", "fields": {"code_postal": "14330", "code_commune_insee": "14370", "libell_d_acheminement": "LE MOLAY LITTRY", "ligne_5": "LE MOLAY", "nom_de_la_commune": "LE MOLAY LITTRY", "coordonnees_gps": [49.2420322509, -0.955592852997]}, "geometry": {"type": "Point", "coordinates": [-0.955592852997, 49.2420322509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9d51aa7ab76f9b513d0b7e859ef7f34d16558b", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "AUQUAINVILLE", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1abe15ac82ad0b65072506749eda84d1561ee0", "fields": {"code_postal": "14140", "code_commune_insee": "14371", "libell_d_acheminement": "LIVAROT PAYS D AUGE", "ligne_5": "LE MESNIL BACLEY", "nom_de_la_commune": "LIVAROT PAYS D AUGE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "556a30b1fc2e09ead6bac1a46a3834dc1fad6975", "fields": {"code_postal": "14240", "code_commune_insee": "14372", "libell_d_acheminement": "LIVRY", "ligne_5": "PARFOURU L ECLIN", "nom_de_la_commune": "LIVRY", "coordonnees_gps": [49.1055577852, -0.781481644045]}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d04a7d9332970f27baa268d1170c1616dbff31f8", "fields": {"nom_de_la_commune": "LE LOCHEUR", "libell_d_acheminement": "LE LOCHEUR", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14373"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9def64c33586eb83d83c708f30ef875ae4c76e2a", "fields": {"nom_de_la_commune": "LES LOGES", "libell_d_acheminement": "LES LOGES", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14374"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ad3d8f6443febe0eba138c1bf8b2d7005feee22", "fields": {"nom_de_la_commune": "LONGRAYE", "libell_d_acheminement": "LONGRAYE", "code_postal": "14250", "coordonnees_gps": [49.183022328, -0.634791853067], "code_commune_insee": "14376"}, "geometry": {"type": "Point", "coordinates": [-0.634791853067, 49.183022328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c8e947a4ab73cfc48a67bf4f20498bfa53ccd5", "fields": {"nom_de_la_commune": "LONGUES SUR MER", "libell_d_acheminement": "LONGUES SUR MER", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14377"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793022c0f027252d46d02202846768dd6cbe4cb7", "fields": {"nom_de_la_commune": "LONGVILLERS", "libell_d_acheminement": "LONGVILLERS", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14379"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cfe880596fe655016e09fee57f9a46574028e05", "fields": {"nom_de_la_commune": "LUC SUR MER", "libell_d_acheminement": "LUC SUR MER", "code_postal": "14530", "coordonnees_gps": [49.3082565079, -0.357388258877], "code_commune_insee": "14384"}, "geometry": {"type": "Point", "coordinates": [-0.357388258877, 49.3082565079]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8d35b8963d94a6f9f35518859d97e3066b7e8e8", "fields": {"nom_de_la_commune": "MANDEVILLE EN BESSIN", "libell_d_acheminement": "MANDEVILLE EN BESSIN", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14397"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c54247a1bd686b71f88eb982446ff261c2deaa8", "fields": {"nom_de_la_commune": "MAROLLES", "libell_d_acheminement": "MAROLLES", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14403"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "689c57abda98153c3579aca2826193b52b7937c7", "fields": {"nom_de_la_commune": "MAY SUR ORNE", "libell_d_acheminement": "MAY SUR ORNE", "code_postal": "14320", "coordonnees_gps": [49.1013108668, -0.374113026429], "code_commune_insee": "14408"}, "geometry": {"type": "Point", "coordinates": [-0.374113026429, 49.1013108668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9ada457bebc1a3097e3fb76a87b78b782eb737", "fields": {"nom_de_la_commune": "MERVILLE FRANCEVILLE PLAGE", "libell_d_acheminement": "MERVILLE FRANCEVILLE PLAGE", "code_postal": "14810", "coordonnees_gps": [49.2686618031, -0.198460206193], "code_commune_insee": "14409"}, "geometry": {"type": "Point", "coordinates": [-0.198460206193, 49.2686618031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49d3bce92da1dccbf0e4bf0e27c9c3fe4bc44edb", "fields": {"nom_de_la_commune": "LE MESNIL AUZOUF", "libell_d_acheminement": "LE MESNIL AUZOUF", "code_postal": "14260", "coordonnees_gps": [49.0066968594, -0.682033937829], "code_commune_insee": "14413"}, "geometry": {"type": "Point", "coordinates": [-0.682033937829, 49.0066968594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521a7a1037b433b7020d3e8f89da40a2bc091cb2", "fields": {"nom_de_la_commune": "LE MESNIL GUILLAUME", "libell_d_acheminement": "LE MESNIL GUILLAUME", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14421"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297d705be139eb8043c66e345b0976fa06e19fa1", "fields": {"code_postal": "14270", "code_commune_insee": "14422", "libell_d_acheminement": "LE MESNIL MAUGER", "ligne_5": "ECAJEUL", "nom_de_la_commune": "LE MESNIL MAUGER", "coordonnees_gps": [49.0749683297, -0.0575716776042]}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1957048c46976531807844ec4e2b2f4fc52d1e91", "fields": {"code_postal": "14270", "code_commune_insee": "14422", "libell_d_acheminement": "LE MESNIL MAUGER", "ligne_5": "ST CRESPIN", "nom_de_la_commune": "LE MESNIL MAUGER", "coordonnees_gps": [49.0749683297, -0.0575716776042]}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d330be8bc76124be1077b1513d1967ed795ac011", "fields": {"nom_de_la_commune": "LE MESNIL PATRY", "libell_d_acheminement": "LE MESNIL PATRY", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14423"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc38c923d8f1e08a1f1739d17b3b8fbc60c6f4df", "fields": {"nom_de_la_commune": "LE MESNIL SUR BLANGY", "libell_d_acheminement": "LE MESNIL SUR BLANGY", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14426"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa87ce79a646517302e638ac34b36f33fd6689df", "fields": {"nom_de_la_commune": "LE MESNIL VILLEMENT", "libell_d_acheminement": "LE MESNIL VILLEMENT", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14427"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a19040e53bd63467bf05304d39c378781bf95ef2", "fields": {"nom_de_la_commune": "MONCEAUX EN BESSIN", "libell_d_acheminement": "MONCEAUX EN BESSIN", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14436"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3afa0ac67205765b816aca5765f9f35064fc1771", "fields": {"nom_de_la_commune": "MONDEVILLE", "libell_d_acheminement": "MONDEVILLE", "code_postal": "14120", "coordonnees_gps": [49.1694748325, -0.311210729633], "code_commune_insee": "14437"}, "geometry": {"type": "Point", "coordinates": [-0.311210729633, 49.1694748325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a48014d2f53f8cc8248f215abaea0e35fe38e98", "fields": {"nom_de_la_commune": "LES MOUTIERS EN CINGLAIS", "libell_d_acheminement": "LES MOUTIERS EN CINGLAIS", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14458"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80bcdce04d5f98210971e171ab7f9ffef923a7b2", "fields": {"nom_de_la_commune": "MOYAUX", "libell_d_acheminement": "MOYAUX", "code_postal": "14590", "coordonnees_gps": [49.1904396509, 0.349344847336], "code_commune_insee": "14460"}, "geometry": {"type": "Point", "coordinates": [0.349344847336, 49.1904396509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba41c32540420febce1f3b22cb0aadc456475676", "fields": {"nom_de_la_commune": "NOTRE DAME DE LIVAYE", "libell_d_acheminement": "NOTRE DAME DE LIVAYE", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14473"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4fa056dd20979b7409d476e1764b254ac0d31a6", "fields": {"nom_de_la_commune": "LES OUBEAUX", "libell_d_acheminement": "LES OUBEAUX", "code_postal": "14230", "coordonnees_gps": [49.3176758888, -1.05497360925], "code_commune_insee": "14481"}, "geometry": {"type": "Point", "coordinates": [-1.05497360925, 49.3176758888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd78346367467f108f11d81eb4e51de336b35e8", "fields": {"nom_de_la_commune": "OUVILLE LA BIEN TOURNEE", "libell_d_acheminement": "OUVILLE LA BIEN TOURNEE", "code_postal": "14170", "coordonnees_gps": [48.9808309881, -0.0400174122505], "code_commune_insee": "14489"}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "457c40af592e0f4f595bc8d891bdd8e9e22ced59", "fields": {"nom_de_la_commune": "PERIERS EN AUGE", "libell_d_acheminement": "PERIERS EN AUGE", "code_postal": "14160", "coordonnees_gps": [49.26400102, -0.084436900338], "code_commune_insee": "14494"}, "geometry": {"type": "Point", "coordinates": [-0.084436900338, 49.26400102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1454e8b5f15b292e4a75850f1183735ab63c104e", "fields": {"nom_de_la_commune": "PETIVILLE", "libell_d_acheminement": "PETIVILLE", "code_postal": "14390", "coordonnees_gps": [49.2648004396, -0.14376856722], "code_commune_insee": "14499"}, "geometry": {"type": "Point", "coordinates": [-0.14376856722, 49.2648004396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5f73aca0b1c41fbe156ae522757c4f33175ae4f", "fields": {"nom_de_la_commune": "PLACY", "libell_d_acheminement": "PLACY", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14505"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85978095c84d75b0bb15b6a3013cc9ff1293de7b", "fields": {"code_postal": "14380", "code_commune_insee": "14513", "libell_d_acheminement": "PONT FARCY", "ligne_5": "PLEINES OEUVRES", "nom_de_la_commune": "PONT FARCY", "coordonnees_gps": [48.8544817922, -1.0273831979]}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e92f3ce4cd941153ad69892b22dcba9ea4f3f36", "fields": {"nom_de_la_commune": "PRETREVILLE", "libell_d_acheminement": "PRETREVILLE", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14522"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b3e5942aba6b0ad0e714b37dd739a8ae939c7d8", "fields": {"code_postal": "14270", "code_commune_insee": "14527", "libell_d_acheminement": "BIEVILLE QUETIEVILLE", "ligne_5": "QUETIEVILLE", "nom_de_la_commune": "BIEVILLE QUETIEVILLE", "coordonnees_gps": [49.0749683297, -0.0575716776042]}, "geometry": {"type": "Point", "coordinates": [-0.0575716776042, 49.0749683297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05c903ccd083643c9b0ac008c218e821d2dbdd6e", "fields": {"nom_de_la_commune": "ROCQUES", "libell_d_acheminement": "ROCQUES", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14540"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e22df047d68e1b1ab98b9c9d1ba51d6c317380c", "fields": {"nom_de_la_commune": "ROSEL", "libell_d_acheminement": "ROSEL", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14542"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add97e0f9543bb9f6418e72a0d7bc38a6d781385", "fields": {"nom_de_la_commune": "ST AUBIN D ARQUENAY", "libell_d_acheminement": "ST AUBIN D ARQUENAY", "code_postal": "14970", "coordonnees_gps": [49.2501319411, -0.286272697586], "code_commune_insee": "14558"}, "geometry": {"type": "Point", "coordinates": [-0.286272697586, 49.2501319411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01e7b5ae50ed4c844c1298343e87d7e96d63ff63", "fields": {"nom_de_la_commune": "ST AUBIN DES BOIS", "libell_d_acheminement": "ST AUBIN DES BOIS", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14559"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3fbc13a59fd19b606f74baf4a56c09164b31c48", "fields": {"nom_de_la_commune": "ST AUBIN SUR MER", "libell_d_acheminement": "ST AUBIN SUR MER", "code_postal": "14750", "coordonnees_gps": [49.3223243841, -0.392133421312], "code_commune_insee": "14562"}, "geometry": {"type": "Point", "coordinates": [-0.392133421312, 49.3223243841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a12e739593b4c4418f4f0bc238f982afb14dd1", "fields": {"nom_de_la_commune": "STE CROIX GRAND TONNE", "libell_d_acheminement": "STE CROIX GRAND TONNE", "code_postal": "14740", "coordonnees_gps": [49.2134618013, -0.521360272238], "code_commune_insee": "14568"}, "geometry": {"type": "Point", "coordinates": [-0.521360272238, 49.2134618013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153517723610fcccc9b099626dfd962cfd1dfcb3", "fields": {"nom_de_la_commune": "STE CROIX SUR MER", "libell_d_acheminement": "STE CROIX SUR MER", "code_postal": "14480", "coordonnees_gps": [49.2805777127, -0.533333491955], "code_commune_insee": "14569"}, "geometry": {"type": "Point", "coordinates": [-0.533333491955, 49.2805777127]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a095f1053a11f17bab4116fc9d93038efd509b88", "fields": {"code_postal": "14290", "code_commune_insee": "14570", "libell_d_acheminement": "VALORBIQUET", "ligne_5": "ST PIERRE DE MAILLOC", "nom_de_la_commune": "VALORBIQUET", "coordonnees_gps": [49.0265084607, 0.343255889354]}, "geometry": {"type": "Point", "coordinates": [0.343255889354, 49.0265084607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e516c1508acf274789f2c2c020f69b3f8af99516", "fields": {"nom_de_la_commune": "ST DENIS DE MAILLOC", "libell_d_acheminement": "ST DENIS DE MAILLOC", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14571"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0ec75fb198f4a82ebf9a27ce893d1fffe91f9c9", "fields": {"nom_de_la_commune": "ST DESIR", "libell_d_acheminement": "ST DESIR", "code_postal": "14100", "coordonnees_gps": [49.1310255033, 0.259106150918], "code_commune_insee": "14574"}, "geometry": {"type": "Point", "coordinates": [0.259106150918, 49.1310255033]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ac7f24c27b95b4e7d356d8534bb9fa333503bd8", "fields": {"code_postal": "14140", "code_commune_insee": "14576", "libell_d_acheminement": "VAL DE VIE", "ligne_5": "ST GERMAIN DE MONTGOMMERY", "nom_de_la_commune": "VAL DE VIE", "coordonnees_gps": [49.0354632921, 0.127071984738]}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b972815494fd42f5e002f520a4bdeb12baaec4fe", "fields": {"nom_de_la_commune": "ST GATIEN DES BOIS", "libell_d_acheminement": "ST GATIEN DES BOIS", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14578"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcf377f3fb2b09d60ad83f9dc212b2829465a3f0", "fields": {"nom_de_la_commune": "ST GERMAIN D ECTOT", "libell_d_acheminement": "ST GERMAIN D ECTOT", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14581"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6d9c4d4b5e7affdde7a8778bb1416278e966c4", "fields": {"nom_de_la_commune": "ST GERMAIN LA BLANCHE HERBE", "libell_d_acheminement": "ST GERMAIN LA BLANCHE HERBE", "code_postal": "14280", "coordonnees_gps": [49.2095685958, -0.412342557701], "code_commune_insee": "14587"}, "geometry": {"type": "Point", "coordinates": [-0.412342557701, 49.2095685958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c86fdb2648a5d5956ffb99e2d582e5d10fcc46", "fields": {"nom_de_la_commune": "STE HONORINE DE DUCY", "libell_d_acheminement": "STE HONORINE DE DUCY", "code_postal": "14240", "coordonnees_gps": [49.1055577852, -0.781481644045], "code_commune_insee": "14590"}, "geometry": {"type": "Point", "coordinates": [-0.781481644045, 49.1055577852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72ef737060c5301fd3c109308b25438f42663457", "fields": {"nom_de_la_commune": "ST HYMER", "libell_d_acheminement": "ST HYMER", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14593"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb9ff3d20c79939dc4fcdbdd5d41e4ce2a8aa4e0", "fields": {"nom_de_la_commune": "ST JEAN DES ESSARTIERS", "libell_d_acheminement": "ST JEAN DES ESSARTIERS", "code_postal": "14350", "coordonnees_gps": [48.9220153608, -0.733098585986], "code_commune_insee": "14596"}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae58793129ba10bdd52533d6a7bfdbc61ea2528e", "fields": {"nom_de_la_commune": "ST JOUIN", "libell_d_acheminement": "ST JOUIN", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14598"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "371adbaf97b409369056b2e37efc073ee8dd770a", "fields": {"nom_de_la_commune": "ST JULIEN LE FAUCON", "libell_d_acheminement": "ST JULIEN LE FAUCON", "code_postal": "14140", "coordonnees_gps": [49.0354632921, 0.127071984738], "code_commune_insee": "14600"}, "geometry": {"type": "Point", "coordinates": [0.127071984738, 49.0354632921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de75ed4b1cc6fdc5fcf5f62ebe61ddf8c2680094", "fields": {"nom_de_la_commune": "ST LEGER DUBOSQ", "libell_d_acheminement": "ST LEGER DUBOSQ", "code_postal": "14430", "coordonnees_gps": [49.2183532057, -0.0305664652154], "code_commune_insee": "14606"}, "geometry": {"type": "Point", "coordinates": [-0.0305664652154, 49.2183532057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24a4a0c53c7d9a809c14cba9f2cd8622c83c1ea3", "fields": {"nom_de_la_commune": "ST LOUP DE FRIBOIS", "libell_d_acheminement": "ST LOUP DE FRIBOIS", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14608"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c9cad7b9feac6f69ffbf5f2dce0e650177f8ba2", "fields": {"nom_de_la_commune": "ST MANVIEU BOCAGE", "libell_d_acheminement": "ST MANVIEU BOCAGE", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14611"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8df932fbfce8f9023c3a4d157bd65a252bb10c5", "fields": {"nom_de_la_commune": "ST MARTIN DE BLAGNY", "libell_d_acheminement": "ST MARTIN DE BLAGNY", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14622"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0a78c7b1c4058ad4dbdaa21028269433c9189d", "fields": {"nom_de_la_commune": "ST OMER", "libell_d_acheminement": "ST OMER", "code_postal": "14220", "coordonnees_gps": [48.9913936572, -0.409929998013], "code_commune_insee": "14635"}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f43daee001b88cf169204daff2d91136814fd7a5", "fields": {"nom_de_la_commune": "ST PHILBERT DES CHAMPS", "libell_d_acheminement": "ST PHILBERT DES CHAMPS", "code_postal": "14130", "coordonnees_gps": [49.281975342, 0.22870196514], "code_commune_insee": "14644"}, "geometry": {"type": "Point", "coordinates": [0.22870196514, 49.281975342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bd51836a3c86b0bb80c8bdabf02f8c4b151f062", "fields": {"nom_de_la_commune": "SALLENELLES", "libell_d_acheminement": "SALLENELLES", "code_postal": "14121", "coordonnees_gps": [49.2637868191, -0.232980863928], "code_commune_insee": "14665"}, "geometry": {"type": "Point", "coordinates": [-0.232980863928, 49.2637868191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981d1eeb56a7312e53c2c2b9b478c1fe1b258b29", "fields": {"nom_de_la_commune": "SEPT FRERES", "libell_d_acheminement": "SEPT FRERES", "code_postal": "14380", "coordonnees_gps": [48.8544817922, -1.0273831979], "code_commune_insee": "14671"}, "geometry": {"type": "Point", "coordinates": [-1.0273831979, 48.8544817922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43397c14536ad5f675936022af27a0500ce3c422", "fields": {"nom_de_la_commune": "SOMMERVIEU", "libell_d_acheminement": "SOMMERVIEU", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14676"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "714dfa874de1ed2d92671c801df378c0f1ee3c02", "fields": {"code_postal": "14220", "code_commune_insee": "14689", "libell_d_acheminement": "LE HOM", "ligne_5": "CAUMONT SUR ORNE", "nom_de_la_commune": "LE HOM", "coordonnees_gps": [48.9913936572, -0.409929998013]}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ff1ec7285aae9e83c4c6650040991e00cbc9d3", "fields": {"nom_de_la_commune": "ST MAURICE SUR MORTAGNE", "libell_d_acheminement": "ST MAURICE SUR MORTAGNE", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88425"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0824e4a02207ed01608fdfb1c24748228a77c13f", "fields": {"nom_de_la_commune": "ST NABORD", "libell_d_acheminement": "ST NABORD", "code_postal": "88200", "coordonnees_gps": [48.0187075371, 6.60603974178], "code_commune_insee": "88429"}, "geometry": {"type": "Point", "coordinates": [6.60603974178, 48.0187075371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0152ba2e4568e81ca73b24a7c22cbde2bbb83a25", "fields": {"nom_de_la_commune": "ST STAIL", "libell_d_acheminement": "ST STAIL", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88436"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b997386f034b06558265715c8f2cd90b08239f40", "fields": {"nom_de_la_commune": "ST VALLIER", "libell_d_acheminement": "ST VALLIER", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88437"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12822078b44dbe0d96e09340e54a5c40ee2ace6", "fields": {"nom_de_la_commune": "LA SALLE", "libell_d_acheminement": "LA SALLE", "code_postal": "88470", "coordonnees_gps": [48.3159931003, 6.84826816273], "code_commune_insee": "88438"}, "geometry": {"type": "Point", "coordinates": [6.84826816273, 48.3159931003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c02d0170eb66df892d2769f66b1d327136ccd633", "fields": {"nom_de_la_commune": "SANCHEY", "libell_d_acheminement": "SANCHEY", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88439"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc34924e227ce74832c994108d33195635e6ddc4", "fields": {"nom_de_la_commune": "SANS VALLOIS", "libell_d_acheminement": "SANS VALLOIS", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88441"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b4cd8ffe7addf639c33031ce757781ccc48f73", "fields": {"nom_de_la_commune": "SAPOIS", "libell_d_acheminement": "SAPOIS", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88442"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e67dcd31964d4b31688d110c03c2095ad31fa12d", "fields": {"nom_de_la_commune": "LE SAULCY", "libell_d_acheminement": "LE SAULCY", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88444"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4c28a24b43efbedee54aeb324e4041020795fa", "fields": {"nom_de_la_commune": "SENONES", "libell_d_acheminement": "SENONES", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88451"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1177074a164a6576d72be3c55fe46e1548b90342", "fields": {"nom_de_la_commune": "SERAUMONT", "libell_d_acheminement": "SERAUMONT", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88453"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce56f3ad097e334ab574763e52f71467c1783e1", "fields": {"nom_de_la_commune": "SERCOEUR", "libell_d_acheminement": "SERCOEUR", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88454"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a8909b6c47b15071934c4fd5baa8c9a04b6df1", "fields": {"code_postal": "88150", "code_commune_insee": "88465", "libell_d_acheminement": "CAPAVENIR VOSGES", "ligne_5": "GIRMONT", "nom_de_la_commune": "CAPAVENIR VOSGES", "coordonnees_gps": [48.2558226475, 6.42027850113]}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf30c2a6c68f44117e6b11479fed8a800b06716", "fields": {"code_postal": "88150", "code_commune_insee": "88465", "libell_d_acheminement": "CAPAVENIR VOSGES", "ligne_5": "ONCOURT", "nom_de_la_commune": "CAPAVENIR VOSGES", "coordonnees_gps": [48.2558226475, 6.42027850113]}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c45bfa44e5079d16ed48d34b0f4b00dbdbf6cba", "fields": {"nom_de_la_commune": "URIMENIL", "libell_d_acheminement": "URIMENIL", "code_postal": "88220", "coordonnees_gps": [48.0725237155, 6.41958186786], "code_commune_insee": "88481"}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d6f18088c123d788a5652c8f641514e24f7d7ca", "fields": {"nom_de_la_commune": "VECOUX", "libell_d_acheminement": "VECOUX", "code_postal": "88200", "coordonnees_gps": [48.0187075371, 6.60603974178], "code_commune_insee": "88498"}, "geometry": {"type": "Point", "coordinates": [6.60603974178, 48.0187075371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9f9a70eef77573b1c51106a72299b57807b1808", "fields": {"nom_de_la_commune": "VELOTTE ET TATIGNECOURT", "libell_d_acheminement": "VELOTTE ET TATIGNECOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88499"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a792ac27456e21ab96c4cd52f702d2cdbc7caf7", "fields": {"nom_de_la_commune": "VILLERS", "libell_d_acheminement": "VILLERS", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88507"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25e54ac09eefbe0ae9b3025aa35f7165370c5522", "fields": {"nom_de_la_commune": "VINCEY", "libell_d_acheminement": "VINCEY", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88513"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c8bd7200146875e9dc46c5341135bae67a44c2", "fields": {"nom_de_la_commune": "VOUXEY", "libell_d_acheminement": "VOUXEY", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88523"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf5cc1d511fb3e83d3185cc0a3dfbec51f417e26", "fields": {"nom_de_la_commune": "XERTIGNY", "libell_d_acheminement": "XERTIGNY", "code_postal": "88220", "coordonnees_gps": [48.0725237155, 6.41958186786], "code_commune_insee": "88530"}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "869582f0601c02b96858ce3000f82fc636c69358", "fields": {"code_postal": "88220", "code_commune_insee": "88530", "libell_d_acheminement": "XERTIGNY", "ligne_5": "AMEREY", "nom_de_la_commune": "XERTIGNY", "coordonnees_gps": [48.0725237155, 6.41958186786]}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6963097e8caed44c8519bfd98b31a7193af14cf5", "fields": {"nom_de_la_commune": "XONRUPT LONGEMER", "libell_d_acheminement": "XONRUPT LONGEMER", "code_postal": "88400", "coordonnees_gps": [48.0708964326, 6.88124451872], "code_commune_insee": "88531"}, "geometry": {"type": "Point", "coordinates": [6.88124451872, 48.0708964326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "065696fea406a0cf379eb8ffcb58a92e49e21951", "fields": {"nom_de_la_commune": "AISY SUR ARMANCON", "libell_d_acheminement": "AISY SUR ARMANCON", "code_postal": "89390", "coordonnees_gps": [47.70341613, 4.2240121649], "code_commune_insee": "89004"}, "geometry": {"type": "Point", "coordinates": [4.2240121649, 47.70341613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f57065d1fbbbd1c99158fece10dbf62c9227ebc", "fields": {"code_postal": "89160", "code_commune_insee": "89005", "libell_d_acheminement": "ANCY LE FRANC", "ligne_5": "CUSY", "nom_de_la_commune": "ANCY LE FRANC", "coordonnees_gps": [47.7772262093, 4.15865365255]}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b9e2ac07dc17b810c29a5071157095d1356c34", "fields": {"nom_de_la_commune": "ANNAY SUR SEREIN", "libell_d_acheminement": "ANNAY SUR SEREIN", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89010"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b94b1078ac8e4ca7e37993b569b4b6a678783fc", "fields": {"nom_de_la_commune": "ARCES DILO", "libell_d_acheminement": "ARCES DILO", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89014"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a05cb6ff68e79391504c6d1dd2746e291295ae", "fields": {"nom_de_la_commune": "ARCY SUR CURE", "libell_d_acheminement": "ARCY SUR CURE", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89015"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68a96995addabeeee560ca51e5416f929e1c4520", "fields": {"nom_de_la_commune": "ATHIE", "libell_d_acheminement": "ATHIE", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89022"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af1879259b7d69c39ff91889a3d72f9584fe4ac6", "fields": {"nom_de_la_commune": "BERNOUIL", "libell_d_acheminement": "BERNOUIL", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89038"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ed49d2d49df182081c918add10fcba018c5270", "fields": {"nom_de_la_commune": "BLACY", "libell_d_acheminement": "BLACY", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89043"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "076ecb0138f5043f91f2770d997973332228d7ac", "fields": {"nom_de_la_commune": "BLEIGNY LE CARREAU", "libell_d_acheminement": "BLEIGNY LE CARREAU", "code_postal": "89230", "coordonnees_gps": [47.8736260465, 3.68278303348], "code_commune_insee": "89045"}, "geometry": {"type": "Point", "coordinates": [3.68278303348, 47.8736260465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a18d75213ec84f695b14670249d26d83a987fc89", "fields": {"nom_de_la_commune": "BLENEAU", "libell_d_acheminement": "BLENEAU", "code_postal": "89220", "coordonnees_gps": [47.7194478698, 2.95753192292], "code_commune_insee": "89046"}, "geometry": {"type": "Point", "coordinates": [2.95753192292, 47.7194478698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94151060e48b8a4763208e3cfa51e05a9d5808f", "fields": {"nom_de_la_commune": "BRANNAY", "libell_d_acheminement": "BRANNAY", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89054"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "755f4135bfb4206cebaad8ca3440862b8d005644", "fields": {"code_postal": "89210", "code_commune_insee": "89055", "libell_d_acheminement": "BRIENON SUR ARMANCON", "ligne_5": "BLIGNY EN OTHE", "nom_de_la_commune": "BRIENON SUR ARMANCON", "coordonnees_gps": [48.0402670235, 3.63057166674]}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5875b7090b105e07d426f1937c97de169fca1c4", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89056"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61ab5a4ba731fedb282d2cb5ce237437fd7696f9", "fields": {"nom_de_la_commune": "BROSSES", "libell_d_acheminement": "BROSSES", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89057"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c55c59b26a836da3a09d62aa9a1a13ead60e698", "fields": {"nom_de_la_commune": "BUSSY LE REPOS", "libell_d_acheminement": "BUSSY LE REPOS", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89060"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80aaff9509baa09d552cfce40a6979863756280f", "fields": {"nom_de_la_commune": "CERISIERS", "libell_d_acheminement": "CERISIERS", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89066"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1912ab764ec04ef68fc55771830bd53c7e14b25a", "fields": {"nom_de_la_commune": "CHAILLEY", "libell_d_acheminement": "CHAILLEY", "code_postal": "89770", "coordonnees_gps": [48.1187207961, 3.6979482675], "code_commune_insee": "89069"}, "geometry": {"type": "Point", "coordinates": [3.6979482675, 48.1187207961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776cbc39ca956940147af213558f5c806e055761", "fields": {"code_postal": "89350", "code_commune_insee": "89073", "libell_d_acheminement": "CHAMPIGNELLES", "ligne_5": "LOUESME", "nom_de_la_commune": "CHAMPIGNELLES", "coordonnees_gps": [47.7773444304, 3.09490527015]}, "geometry": {"type": "Point", "coordinates": [3.09490527015, 47.7773444304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3547033f68e47c618ae72ef1e3c4506e72d80750", "fields": {"nom_de_la_commune": "CHAMPLAY", "libell_d_acheminement": "CHAMPLAY", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89075"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58150f3bbd7fa60f22b83ef2dd88664ba04fdb1f", "fields": {"nom_de_la_commune": "CHAMPLOST", "libell_d_acheminement": "CHAMPLOST", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89076"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6372866448b1d8e13ed90e923c9c2ceb90eb899c", "fields": {"nom_de_la_commune": "CHAMPS SUR YONNE", "libell_d_acheminement": "CHAMPS SUR YONNE", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89077"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69a33a14fea60743ffae661e4a948b76226c9433", "fields": {"nom_de_la_commune": "CHARNY OREE DE PUISAYE", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "code_postal": "89120", "coordonnees_gps": [47.8865953277, 3.09899057886], "code_commune_insee": "89086"}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44df8bac22e44eed8a650c4cf42d8ad686712ae0", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "DICY", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c740969b78aaf5dcffcab6b0a2dfb409f7a41651", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "PERREUX", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6df116a88e5d1bbf857b87983c669f8bd3ee7a1e", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "PRUNOY", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "334074254aea042ac6a076bf5e28a43540f7e7f1", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "ST MARTIN SUR OUANNE", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab1b9fe71d9d793c96f4a32de70bb573a8b2591a", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "VILLEFRANCHE", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4fe8a75552f737770997e961e769f4375e35836", "fields": {"nom_de_la_commune": "CHATEL CENSOIR", "libell_d_acheminement": "CHATEL CENSOIR", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89091"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9f2fac01b334718d0bc0ed3a1878cfa3a8526ae", "fields": {"nom_de_la_commune": "CHENY", "libell_d_acheminement": "CHENY", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89099"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "906af5de9c7bbfff501bac3a0a80ed5fd40a43a4", "fields": {"nom_de_la_commune": "CHEU", "libell_d_acheminement": "CHEU", "code_postal": "89600", "coordonnees_gps": [47.9775250716, 3.71821754522], "code_commune_insee": "89101"}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b776e14bc1a8393c8c4003c64ceb2f0ac8783df4", "fields": {"nom_de_la_commune": "CHEVANNES", "libell_d_acheminement": "CHEVANNES", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89102"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79910707340238255fc5cd3149b18bc25769c98e", "fields": {"nom_de_la_commune": "COLLAN", "libell_d_acheminement": "COLLAN", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89112"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cba648dc3990e8e1b4f841495133f342f102f66", "fields": {"nom_de_la_commune": "COMPIGNY", "libell_d_acheminement": "COMPIGNY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89115"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e21cef3221b3333c2a62708353b63f3b2d02da3", "fields": {"nom_de_la_commune": "COUTARNOUX", "libell_d_acheminement": "COUTARNOUX", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89128"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e254fce67645e7c5da5921a85453168e6a143c44", "fields": {"nom_de_la_commune": "CUSSY LES FORGES", "libell_d_acheminement": "CUSSY LES FORGES", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89134"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af293be3a0cca120981fa85294d6f1f094510a28", "fields": {"nom_de_la_commune": "DANNEMOINE", "libell_d_acheminement": "DANNEMOINE", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89137"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5c2ca1d58488b33c3666c4bfcc37dcc6f10818", "fields": {"nom_de_la_commune": "DOMATS", "libell_d_acheminement": "DOMATS", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89144"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "266411724b2d0e35d377db9783da9fe6b9fc534d", "fields": {"nom_de_la_commune": "DRACY", "libell_d_acheminement": "DRACY", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89147"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28ae69730e024d32b3230db0a5b7ac4ec84b9989", "fields": {"nom_de_la_commune": "EPINEAU LES VOVES", "libell_d_acheminement": "EPINEAU LES VOVES", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89152"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec1810b2181140653f15ae50f49ea7869e20d5f", "fields": {"nom_de_la_commune": "EVRY", "libell_d_acheminement": "EVRY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89162"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06c205be996681f478ba4db4853845239f0251c", "fields": {"nom_de_la_commune": "FLEURY LA VALLEE", "libell_d_acheminement": "FLEURY LA VALLEE", "code_postal": "89113", "coordonnees_gps": [47.8595932276, 3.45642824955], "code_commune_insee": "89167"}, "geometry": {"type": "Point", "coordinates": [3.45642824955, 47.8595932276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17963ab3cb85b627a18739789b566bef55029095", "fields": {"nom_de_la_commune": "FLOGNY LA CHAPELLE", "libell_d_acheminement": "FLOGNY LA CHAPELLE", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89169"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fd87fe3e0498e34ce2a4ced2c5417e65d9bd96f", "fields": {"nom_de_la_commune": "FULVY", "libell_d_acheminement": "FULVY", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89184"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b27ffbac4bb5d9b6f534de09a0bfaba0e5940bee", "fields": {"nom_de_la_commune": "GRIMAULT", "libell_d_acheminement": "GRIMAULT", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89194"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fab4b1ba9a192d0049658769d6af16840483b916", "fields": {"code_postal": "89113", "code_commune_insee": "89196", "libell_d_acheminement": "VALRAVILLON", "ligne_5": "VILLEMER", "nom_de_la_commune": "VALRAVILLON", "coordonnees_gps": [47.8595932276, 3.45642824955]}, "geometry": {"type": "Point", "coordinates": [3.45642824955, 47.8595932276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d51ef2fec412826c49124443ee1801aca8abf130", "fields": {"nom_de_la_commune": "HERY", "libell_d_acheminement": "HERY", "code_postal": "89550", "coordonnees_gps": [47.8971752309, 3.63705032561], "code_commune_insee": "89201"}, "geometry": {"type": "Point", "coordinates": [3.63705032561, 47.8971752309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a7f6475086ee9a04d4940457d81aac37e049f6", "fields": {"nom_de_la_commune": "ISLAND", "libell_d_acheminement": "ISLAND", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89203"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819cc8ef33268e4ac9593b6bd18dd15bfa1b40ca", "fields": {"nom_de_la_commune": "L ISLE SUR SEREIN", "libell_d_acheminement": "L ISLE SUR SEREIN", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89204"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10ccbae266d19c55cd650096af627df5c5bcbb3e", "fields": {"nom_de_la_commune": "JULLY", "libell_d_acheminement": "JULLY", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89210"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "545eee9506b027bb87eee131dba19e5c54360894", "fields": {"nom_de_la_commune": "LEZINNES", "libell_d_acheminement": "LEZINNES", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89223"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb6fdc7ae97807724f83335a5d91898acdfcf44", "fields": {"nom_de_la_commune": "LUCY LE BOIS", "libell_d_acheminement": "LUCY LE BOIS", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89232"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05881107300964dfef65dd0acd02e425a8160ab9", "fields": {"nom_de_la_commune": "MAILLOT", "libell_d_acheminement": "MAILLOT", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89236"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1599ff0b114cd124b54b48c8a5d333d0b1835967", "fields": {"nom_de_la_commune": "MALAY LE GRAND", "libell_d_acheminement": "MALAY LE GRAND", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89239"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ededed1017707722a2da97e1599aeb650623b373", "fields": {"nom_de_la_commune": "MONTACHER VILLEGARDIN", "libell_d_acheminement": "MONTACHER VILLEGARDIN", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89264"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49a45238d0df9bc875cd0af8dfc10fa0024b06a", "fields": {"nom_de_la_commune": "MONTILLOT", "libell_d_acheminement": "MONTILLOT", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89266"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102a5e875b1cb7dbb0bcacf5283d1adaec32d9cc", "fields": {"nom_de_la_commune": "NAILLY", "libell_d_acheminement": "NAILLY", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89274"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee0d7d3667c8705c026fefa600f931e4b677621a", "fields": {"code_postal": "89560", "code_commune_insee": "89283", "libell_d_acheminement": "OUANNE", "ligne_5": "CHASTENAY", "nom_de_la_commune": "OUANNE", "coordonnees_gps": [47.6134740976, 3.44560767581]}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ab52b1de9a6c3d484d3a0816133ee8e9aae3107", "fields": {"nom_de_la_commune": "PACY SUR ARMANCON", "libell_d_acheminement": "PACY SUR ARMANCON", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89284"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bd539fd6e5275a2a14384e339b7c8b46c4cef48", "fields": {"nom_de_la_commune": "PARLY", "libell_d_acheminement": "PARLY", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89286"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79553f7f1ccb179ae2327b6c58450a2ee5727d9", "fields": {"nom_de_la_commune": "PASSY", "libell_d_acheminement": "PASSY", "code_postal": "89510", "coordonnees_gps": [48.1263967669, 3.31137297054], "code_commune_insee": "89291"}, "geometry": {"type": "Point", "coordinates": [3.31137297054, 48.1263967669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "597d242851e764c7710d9518693cf0ac1ed87d67", "fields": {"nom_de_la_commune": "PONTIGNY", "libell_d_acheminement": "PONTIGNY", "code_postal": "89230", "coordonnees_gps": [47.8736260465, 3.68278303348], "code_commune_insee": "89307"}, "geometry": {"type": "Point", "coordinates": [3.68278303348, 47.8736260465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19451330ce90b6997e9ba2ba4a9935f3a591c5bd", "fields": {"nom_de_la_commune": "PRECY LE SEC", "libell_d_acheminement": "PRECY LE SEC", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89312"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f45384a82096bcc6158dbedd68b4b52b985e77b0", "fields": {"nom_de_la_commune": "QUINCEROT", "libell_d_acheminement": "QUINCEROT", "code_postal": "89740", "coordonnees_gps": [47.8818432243, 4.21631025532], "code_commune_insee": "89320"}, "geometry": {"type": "Point", "coordinates": [4.21631025532, 47.8818432243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "938600179384d789a5ad8a953fbbe332f8cc8d66", "fields": {"nom_de_la_commune": "RUGNY", "libell_d_acheminement": "RUGNY", "code_postal": "89430", "coordonnees_gps": [47.8807711106, 4.10354187275], "code_commune_insee": "89329"}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8241c70cc35af5e1aa958aff478d5b776e9a34b3", "fields": {"nom_de_la_commune": "ST CYR LES COLONS", "libell_d_acheminement": "ST CYR LES COLONS", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89341"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0718ecb337d1a9f699953722160d634c193c47", "fields": {"nom_de_la_commune": "ST GERMAIN DES CHAMPS", "libell_d_acheminement": "ST GERMAIN DES CHAMPS", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89347"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1115709bbdb16d10bb21b852bf1d861dd180a44d", "fields": {"nom_de_la_commune": "SAMBOURG", "libell_d_acheminement": "SAMBOURG", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89374"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8d64baedf38daf251b4df8d0f19643b52a1b8c2", "fields": {"nom_de_la_commune": "SERGINES", "libell_d_acheminement": "SERGINES", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89391"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c8a6ea938e6d7e871cf7b6a26f881f7beb5f21", "fields": {"nom_de_la_commune": "SOUGERES EN PUISAYE", "libell_d_acheminement": "SOUGERES EN PUISAYE", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89400"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b473d47e11ccc92f759fb1020023a5514aae3d04", "fields": {"code_postal": "89430", "code_commune_insee": "89407", "libell_d_acheminement": "TANLAY", "ligne_5": "COMMISSEY", "nom_de_la_commune": "TANLAY", "coordonnees_gps": [47.8807711106, 4.10354187275]}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b4c31c020a47ecf86d4c948d9ca6c9676750909", "fields": {"code_postal": "89190", "code_commune_insee": "89411", "libell_d_acheminement": "LES VALLEES DE LA VANNE", "ligne_5": "CHIGY", "nom_de_la_commune": "LES VALLEES DE LA VANNE", "coordonnees_gps": [48.2459686813, 3.51900151946]}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c02b7ab26ce8f2e94d57b9cfc226998e774d621", "fields": {"code_postal": "89260", "code_commune_insee": "89414", "libell_d_acheminement": "THORIGNY SUR OREUSE", "ligne_5": "FLEURIGNY", "nom_de_la_commune": "THORIGNY SUR OREUSE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ed0742476e0d1423a96d3782865b25fef8185e5", "fields": {"code_postal": "89520", "code_commune_insee": "89420", "libell_d_acheminement": "TREIGNY", "ligne_5": "PERREUSE", "nom_de_la_commune": "TREIGNY", "coordonnees_gps": [47.5878935462, 3.24481774824]}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676ee7b1440676a38c48bb0138d99c1e4b1ae1dc", "fields": {"nom_de_la_commune": "TREVILLY", "libell_d_acheminement": "TREVILLY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89421"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03699946aec384f22668f099cffdf9880f82d38d", "fields": {"nom_de_la_commune": "VALLAN", "libell_d_acheminement": "VALLAN", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89427"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dbc095d93ae783c2f34c737c1d64b5b8d2ce44b", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "89144", "coordonnees_gps": [47.9141574217, 3.77517476311], "code_commune_insee": "89430"}, "geometry": {"type": "Point", "coordinates": [3.77517476311, 47.9141574217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e31ab283defbe28afdae4a90cc38ed73d55ad989", "fields": {"nom_de_la_commune": "VERMENTON", "libell_d_acheminement": "VERMENTON", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89441"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6fef36161afb4a0b1506ff58be19fecad189bed", "fields": {"nom_de_la_commune": "SORRUS", "libell_d_acheminement": "SORRUS", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62799"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4220281699a3be7980d59c5be0d5c5536f8d9b2e", "fields": {"nom_de_la_commune": "THIEMBRONNE", "libell_d_acheminement": "THIEMBRONNE", "code_postal": "62560", "coordonnees_gps": [50.5970604267, 2.09973187161], "code_commune_insee": "62812"}, "geometry": {"type": "Point", "coordinates": [2.09973187161, 50.5970604267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d3e570120bb098fa9421c9f5d2220a9ab032bb", "fields": {"nom_de_la_commune": "TILQUES", "libell_d_acheminement": "TILQUES", "code_postal": "62500", "coordonnees_gps": [50.7591830774, 2.23290877714], "code_commune_insee": "62819"}, "geometry": {"type": "Point", "coordinates": [2.23290877714, 50.7591830774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe77308a056e1cc5e40137ac1e2ee6beac5ceeb4", "fields": {"nom_de_la_commune": "TINCQUES", "libell_d_acheminement": "TINCQUES", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62820"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb9a826311e299a3ab1a6dedaa287c782d4bdaa", "fields": {"nom_de_la_commune": "LE TRANSLOY", "libell_d_acheminement": "LE TRANSLOY", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62829"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b66831dea3309bc74a1727f7b6dbcdf820f03927", "fields": {"nom_de_la_commune": "TUBERSENT", "libell_d_acheminement": "TUBERSENT", "code_postal": "62630", "coordonnees_gps": [50.551120902, 1.69769005391], "code_commune_insee": "62832"}, "geometry": {"type": "Point", "coordinates": [1.69769005391, 50.551120902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c18706f0e96681c2844b4a3b785297bae9aadc1c", "fields": {"nom_de_la_commune": "VACQUERIETTE ERQUIERES", "libell_d_acheminement": "VACQUERIETTE ERQUIERES", "code_postal": "62140", "coordonnees_gps": [50.3629507199, 2.0044166227], "code_commune_insee": "62834"}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76d6d619c8c0ac4de6ad244cebd31ffa585eaa0b", "fields": {"code_postal": "62140", "code_commune_insee": "62834", "libell_d_acheminement": "VACQUERIETTE ERQUIERES", "ligne_5": "ERQUIERES", "nom_de_la_commune": "VACQUERIETTE ERQUIERES", "coordonnees_gps": [50.3629507199, 2.0044166227]}, "geometry": {"type": "Point", "coordinates": [2.0044166227, 50.3629507199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e9a029f38b572400ff6809f090cfd234cbe968a", "fields": {"nom_de_la_commune": "VERMELLES", "libell_d_acheminement": "VERMELLES", "code_postal": "62980", "coordonnees_gps": [50.4874081361, 2.75177824999], "code_commune_insee": "62846"}, "geometry": {"type": "Point", "coordinates": [2.75177824999, 50.4874081361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b3860af7f4b96f18d89ee0daae1e4281bc7a09", "fields": {"nom_de_la_commune": "VERQUIGNEUL", "libell_d_acheminement": "VERQUIGNEUL", "code_postal": "62113", "coordonnees_gps": [50.498906195, 2.68600111131], "code_commune_insee": "62847"}, "geometry": {"type": "Point", "coordinates": [2.68600111131, 50.498906195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39c6914fd0bf8a2f12ebd132f250aeb1d31de43", "fields": {"nom_de_la_commune": "VIEILLE CHAPELLE", "libell_d_acheminement": "VIEILLE CHAPELLE", "code_postal": "62136", "coordonnees_gps": [50.5923913171, 2.70776740353], "code_commune_insee": "62851"}, "geometry": {"type": "Point", "coordinates": [2.70776740353, 50.5923913171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d7d5414c14d1b5f6e8a7496fe78306733d48c8c", "fields": {"nom_de_la_commune": "VILLERS AU FLOS", "libell_d_acheminement": "VILLERS AU FLOS", "code_postal": "62450", "coordonnees_gps": [50.0846726891, 2.85210399081], "code_commune_insee": "62855"}, "geometry": {"type": "Point", "coordinates": [2.85210399081, 50.0846726891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99ac482e3f81b7aab8979bda48a8f122c7ff4643", "fields": {"nom_de_la_commune": "VILLERS LES CAGNICOURT", "libell_d_acheminement": "VILLERS LES CAGNICOURT", "code_postal": "62182", "coordonnees_gps": [50.2102987642, 2.97666168153], "code_commune_insee": "62858"}, "geometry": {"type": "Point", "coordinates": [2.97666168153, 50.2102987642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66cce639bbcc81f870d56b5bb60f680bd68cdd03", "fields": {"nom_de_la_commune": "VILLERS SIR SIMON", "libell_d_acheminement": "VILLERS SIR SIMON", "code_postal": "62127", "coordonnees_gps": [50.3596931707, 2.46257771772], "code_commune_insee": "62860"}, "geometry": {"type": "Point", "coordinates": [2.46257771772, 50.3596931707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "730282245f1f08d24bc9cb7624abf68b979b739d", "fields": {"nom_de_la_commune": "VIOLAINES", "libell_d_acheminement": "VIOLAINES", "code_postal": "62138", "coordonnees_gps": [50.5179062037, 2.8111923561], "code_commune_insee": "62863"}, "geometry": {"type": "Point", "coordinates": [2.8111923561, 50.5179062037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08e7158b73cf703a27a42a2f5665e051e6405a1d", "fields": {"nom_de_la_commune": "VITRY EN ARTOIS", "libell_d_acheminement": "VITRY EN ARTOIS", "code_postal": "62490", "coordonnees_gps": [50.3300093513, 2.97995115221], "code_commune_insee": "62865"}, "geometry": {"type": "Point", "coordinates": [2.97995115221, 50.3300093513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4520b0fb532fabda68f704dfd618037a70f52ed5", "fields": {"nom_de_la_commune": "WABEN", "libell_d_acheminement": "WABEN", "code_postal": "62180", "coordonnees_gps": [50.3891048525, 1.66885337688], "code_commune_insee": "62866"}, "geometry": {"type": "Point", "coordinates": [1.66885337688, 50.3891048525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4deccfd626fa7c99c05e512c26676b7376745254", "fields": {"nom_de_la_commune": "WAILLY BEAUCAMP", "libell_d_acheminement": "WAILLY BEAUCAMP", "code_postal": "62170", "coordonnees_gps": [50.4710403377, 1.76751001891], "code_commune_insee": "62870"}, "geometry": {"type": "Point", "coordinates": [1.76751001891, 50.4710403377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7284ecfa24523b920e708b8b498f03f92cd7015a", "fields": {"nom_de_la_commune": "LE WAST", "libell_d_acheminement": "LE WAST", "code_postal": "62142", "coordonnees_gps": [50.736720429, 1.81483558385], "code_commune_insee": "62880"}, "geometry": {"type": "Point", "coordinates": [1.81483558385, 50.736720429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f72b4b6acb880c3f37b73599e14a669a4c620949", "fields": {"nom_de_la_commune": "WIERRE EFFROY", "libell_d_acheminement": "WIERRE EFFROY", "code_postal": "62720", "coordonnees_gps": [50.7869009798, 1.75735193267], "code_commune_insee": "62889"}, "geometry": {"type": "Point", "coordinates": [1.75735193267, 50.7869009798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17a0e61b5d9cbf742c76d4b00901ba0019f38f48", "fields": {"nom_de_la_commune": "WIMILLE", "libell_d_acheminement": "WIMILLE", "code_postal": "62126", "coordonnees_gps": [50.7597525083, 1.66237719631], "code_commune_insee": "62894"}, "geometry": {"type": "Point", "coordinates": [1.66237719631, 50.7597525083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c0b396d2fd3a082c8c56096b5de3d3ad87eb36", "fields": {"nom_de_la_commune": "LA CAPELLE LES BOULOGNE", "libell_d_acheminement": "LA CAPELLE LES BOULOGNE", "code_postal": "62360", "coordonnees_gps": [50.6825479214, 1.6682942512], "code_commune_insee": "62908"}, "geometry": {"type": "Point", "coordinates": [1.6682942512, 50.6825479214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29db44714453fe3a47e203840a90078d4ecbc295", "fields": {"nom_de_la_commune": "AIGUEPERSE", "libell_d_acheminement": "AIGUEPERSE", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63001"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe65b78ad10fb9848ef67d378efe5bc198d22e7f", "fields": {"nom_de_la_commune": "AUBIAT", "libell_d_acheminement": "AUBIAT", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63013"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80bd2f113c5c01dd1deb739d2f4588e5901091ce", "fields": {"code_postal": "63570", "code_commune_insee": "63022", "libell_d_acheminement": "AUZAT LA COMBELLE", "ligne_5": "LA COMBELLE", "nom_de_la_commune": "AUZAT LA COMBELLE", "coordonnees_gps": [45.4492336759, 3.34157709163]}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d2ea2e893bb0e8f293dbb50887736ac5292345", "fields": {"nom_de_la_commune": "AYDAT", "libell_d_acheminement": "AYDAT", "code_postal": "63970", "coordonnees_gps": [45.653938341, 2.95129100684], "code_commune_insee": "63026"}, "geometry": {"type": "Point", "coordinates": [2.95129100684, 45.653938341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "688ff046bae3936bf970ed60faf7d4704c8120c2", "fields": {"nom_de_la_commune": "BAFFIE", "libell_d_acheminement": "BAFFIE", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63027"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a206093a8b04d7b66db9d68cf63ba4730e6da311", "fields": {"nom_de_la_commune": "BAS ET LEZAT", "libell_d_acheminement": "BAS ET LEZAT", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63030"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ccf09cc47eeaaf088e7f293aeb855fcc7d54ae5", "fields": {"nom_de_la_commune": "BEAUREGARD L EVEQUE", "libell_d_acheminement": "BEAUREGARD L EVEQUE", "code_postal": "63116", "coordonnees_gps": [45.8139604916, 3.29847801241], "code_commune_insee": "63034"}, "geometry": {"type": "Point", "coordinates": [3.29847801241, 45.8139604916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f890a51ebcbf9fa68de5953c0a963206aa2c45cb", "fields": {"nom_de_la_commune": "LE BREUIL SUR COUZE", "libell_d_acheminement": "LE BREUIL SUR COUZE", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63052"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0123d5437b2de7947e7c1295d4f091101c77707", "fields": {"nom_de_la_commune": "CEBAZAT", "libell_d_acheminement": "CEBAZAT", "code_postal": "63118", "coordonnees_gps": [45.8320179431, 3.10746856841], "code_commune_insee": "63063"}, "geometry": {"type": "Point", "coordinates": [3.10746856841, 45.8320179431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21511918f5676e2cec3f717d4cbc04e2bb34e179", "fields": {"nom_de_la_commune": "CHAMPAGNAT LE JEUNE", "libell_d_acheminement": "CHAMPAGNAT LE JEUNE", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63079"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efd85e64fd3cd5617e9014ec8abe32c918ba910", "fields": {"nom_de_la_commune": "CHAMPETIERES", "libell_d_acheminement": "CHAMPETIERES", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63081"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7521f8aa9ff47fbf9a443b73d71f0ee0c56c3fbf", "fields": {"nom_de_la_commune": "CHAMPS", "libell_d_acheminement": "CHAMPS", "code_postal": "63440", "coordonnees_gps": [46.0656430258, 3.00641222387], "code_commune_insee": "63082"}, "geometry": {"type": "Point", "coordinates": [3.00641222387, 46.0656430258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31a9938ff7100d100446d9073a1e3b140431576b", "fields": {"nom_de_la_commune": "CHANONAT", "libell_d_acheminement": "CHANONAT", "code_postal": "63450", "coordonnees_gps": [45.6587829954, 3.08325812572], "code_commune_insee": "63084"}, "geometry": {"type": "Point", "coordinates": [3.08325812572, 45.6587829954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5722e3fb7f337f743b3edbaaf4f704860fe4802e", "fields": {"nom_de_la_commune": "CHARBONNIER LES MINES", "libell_d_acheminement": "CHARBONNIER LES MINES", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63091"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6947b17bb18732a18773bb11184de2ff0d5ab1f6", "fields": {"code_postal": "63410", "code_commune_insee": "63092", "libell_d_acheminement": "CHARBONNIERES LES VARENNES", "ligne_5": "PAUGNAT", "nom_de_la_commune": "CHARBONNIERES LES VARENNES", "coordonnees_gps": [45.9529948229, 2.96821882159]}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf1492d03e284b6be9bea308cd9993295485e208", "fields": {"nom_de_la_commune": "CHARBONNIERES LES VIEILLES", "libell_d_acheminement": "CHARBONNIERES LES VIEILLES", "code_postal": "63410", "coordonnees_gps": [45.9529948229, 2.96821882159], "code_commune_insee": "63093"}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4da3b5e4bda63782edf4593f04ccd822abb61b1c", "fields": {"nom_de_la_commune": "LE CHEIX", "libell_d_acheminement": "LE CHEIX", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63108"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fcf37b88d215d1bd3dda8d538b9abf92bf17402", "fields": {"nom_de_la_commune": "CISTERNES LA FORET", "libell_d_acheminement": "CISTERNES LA FORET", "code_postal": "63740", "coordonnees_gps": [45.781044639, 2.74706737615], "code_commune_insee": "63110"}, "geometry": {"type": "Point", "coordinates": [2.74706737615, 45.781044639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b32698de32cb4168d160d5d81e21796cdd948b5d", "fields": {"nom_de_la_commune": "CONDAT LES MONTBOISSIER", "libell_d_acheminement": "CONDAT LES MONTBOISSIER", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63119"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f386943661acb6e93a4becf7a15d588f4606c039", "fields": {"nom_de_la_commune": "CRESTE", "libell_d_acheminement": "CRESTE", "code_postal": "63320", "coordonnees_gps": [45.5536207313, 3.08709444267], "code_commune_insee": "63127"}, "geometry": {"type": "Point", "coordinates": [3.08709444267, 45.5536207313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba37eae5bca9af595c14d9e94546130586bfdede", "fields": {"nom_de_la_commune": "DORE L EGLISE", "libell_d_acheminement": "DORE L EGLISE", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63139"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91adf2243b5143f2e2848d0d63505c4518fa48e2", "fields": {"nom_de_la_commune": "EGLISENEUVE DES LIARDS", "libell_d_acheminement": "EGLISENEUVE DES LIARDS", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63145"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9392eede1b4853f2b022c25bb30c2d4cd1bc03c", "fields": {"nom_de_la_commune": "EGLISENEUVE PRES BILLOM", "libell_d_acheminement": "EGLISENEUVE PRES BILLOM", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63146"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfc6e4c6c2b3bfbdeb2d6e11d358f99d447288e", "fields": {"nom_de_la_commune": "AULHAT FLAT", "libell_d_acheminement": "AULHAT FLAT", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63160"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d63563a98a36e902ba802a72e8ae9f113b34d72", "fields": {"nom_de_la_commune": "LA FORIE", "libell_d_acheminement": "LA FORIE", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63161"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b234cf8ef0706b24929e1dc4a40d2743000955a", "fields": {"nom_de_la_commune": "GELLES", "libell_d_acheminement": "GELLES", "code_postal": "63740", "coordonnees_gps": [45.781044639, 2.74706737615], "code_commune_insee": "63163"}, "geometry": {"type": "Point", "coordinates": [2.74706737615, 45.781044639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e07c8c63cca7bbc829a6258feb2eab11dfee3a8", "fields": {"nom_de_la_commune": "HERMENT", "libell_d_acheminement": "HERMENT", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63175"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6912e17c38133bf3dbb97c0baddbedf10bec41b", "fields": {"nom_de_la_commune": "JUMEAUX", "libell_d_acheminement": "JUMEAUX", "code_postal": "63570", "coordonnees_gps": [45.4492336759, 3.34157709163], "code_commune_insee": "63182"}, "geometry": {"type": "Point", "coordinates": [3.34157709163, 45.4492336759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa358073cdbb5eb51156ae561b3836b607b4589b", "fields": {"nom_de_la_commune": "LACHAUX", "libell_d_acheminement": "LACHAUX", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63184"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3497cccf60cb38b6be46ff673d04461bf61afc", "fields": {"nom_de_la_commune": "LAPEYROUSE", "libell_d_acheminement": "LAPEYROUSE", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63187"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519ef7a015683d916f5466f5a64e64236e708c9c", "fields": {"nom_de_la_commune": "LA TOUR D AUVERGNE", "libell_d_acheminement": "LA TOUR D AUVERGNE", "code_postal": "63680", "coordonnees_gps": [45.5115697686, 2.72357891601], "code_commune_insee": "63192"}, "geometry": {"type": "Point", "coordinates": [2.72357891601, 45.5115697686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab2b3e0a7144524ada8a13e477292a5d852c9f6", "fields": {"nom_de_la_commune": "LOUBEYRAT", "libell_d_acheminement": "LOUBEYRAT", "code_postal": "63410", "coordonnees_gps": [45.9529948229, 2.96821882159], "code_commune_insee": "63198"}, "geometry": {"type": "Point", "coordinates": [2.96821882159, 45.9529948229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2e1b3df4c16808ae81411dc2bc9dda5bd87c80", "fields": {"nom_de_la_commune": "MARAT", "libell_d_acheminement": "MARAT", "code_postal": "63480", "coordonnees_gps": [45.6534695475, 3.7067918054], "code_commune_insee": "63207"}, "geometry": {"type": "Point", "coordinates": [3.7067918054, 45.6534695475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3051de728dd28528cce88b694d0015c27349eb8a", "fields": {"nom_de_la_commune": "MARSAT", "libell_d_acheminement": "MARSAT", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63212"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fb99c3a2a28378d11e788fe0490129d6b3f9cdc", "fields": {"nom_de_la_commune": "MENAT", "libell_d_acheminement": "MENAT", "code_postal": "63560", "coordonnees_gps": [46.1157064497, 2.88410173513], "code_commune_insee": "63223"}, "geometry": {"type": "Point", "coordinates": [2.88410173513, 46.1157064497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "977b4519780ec1e2b13e4b3da864e356414f551b", "fields": {"nom_de_la_commune": "MESSEIX", "libell_d_acheminement": "MESSEIX", "code_postal": "63750", "coordonnees_gps": [45.6027201086, 2.52290102161], "code_commune_insee": "63225"}, "geometry": {"type": "Point", "coordinates": [2.52290102161, 45.6027201086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d0501b775300e79e8094bbb5f504b58b08645a", "fields": {"code_postal": "63750", "code_commune_insee": "63225", "libell_d_acheminement": "MESSEIX", "ligne_5": "BOGROS", "nom_de_la_commune": "MESSEIX", "coordonnees_gps": [45.6027201086, 2.52290102161]}, "geometry": {"type": "Point", "coordinates": [2.52290102161, 45.6027201086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576f2c1155eb39c4e4df17e90f213df563c2ea1e", "fields": {"nom_de_la_commune": "MIREFLEURS", "libell_d_acheminement": "MIREFLEURS", "code_postal": "63730", "coordonnees_gps": [45.6563565096, 3.18143690291], "code_commune_insee": "63227"}, "geometry": {"type": "Point", "coordinates": [3.18143690291, 45.6563565096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ab140acb136a739c5a48018fe3a0f1b85d95b6", "fields": {"nom_de_la_commune": "LE MONESTIER", "libell_d_acheminement": "LE MONESTIER", "code_postal": "63890", "coordonnees_gps": [45.5726810009, 3.61894402093], "code_commune_insee": "63230"}, "geometry": {"type": "Point", "coordinates": [3.61894402093, 45.5726810009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2e9ac432dac39bf1fb63b81795db899aa2b9ab9", "fields": {"nom_de_la_commune": "MONTEL DE GELAT", "libell_d_acheminement": "MONTEL DE GELAT", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63237"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fa938a422b16edf7148bf0fbd2875821b777b54", "fields": {"nom_de_la_commune": "MOUREUILLE", "libell_d_acheminement": "MOUREUILLE", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63243"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8d592b441d0b037cdd5258314153eb514631e23", "fields": {"nom_de_la_commune": "MOZAC", "libell_d_acheminement": "MOZAC", "code_postal": "63200", "coordonnees_gps": [45.9059997705, 3.12295819611], "code_commune_insee": "63245"}, "geometry": {"type": "Point", "coordinates": [3.12295819611, 45.9059997705]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98d29dab8047a980369551c584cdbab77bda6ec3", "fields": {"nom_de_la_commune": "NEUVILLE", "libell_d_acheminement": "NEUVILLE", "code_postal": "63160", "coordonnees_gps": [45.7170649925, 3.36945150555], "code_commune_insee": "63252"}, "geometry": {"type": "Point", "coordinates": [3.36945150555, 45.7170649925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58623cd8779250d82a6d634d16df039dc987d24c", "fields": {"nom_de_la_commune": "OLLIERGUES", "libell_d_acheminement": "OLLIERGUES", "code_postal": "63880", "coordonnees_gps": [45.7022203315, 3.68151290757], "code_commune_insee": "63258"}, "geometry": {"type": "Point", "coordinates": [3.68151290757, 45.7022203315]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e670a1d75ab0bd2da16fbf2fce162e6de1d6405", "fields": {"nom_de_la_commune": "PERRIER", "libell_d_acheminement": "PERRIER", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63275"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bfeaa94f79a0d0c4db850d70ea3f61f05c8d163", "fields": {"nom_de_la_commune": "PESCHADOIRES", "libell_d_acheminement": "PESCHADOIRES", "code_postal": "63920", "coordonnees_gps": [45.8268662803, 3.48096267622], "code_commune_insee": "63276"}, "geometry": {"type": "Point", "coordinates": [3.48096267622, 45.8268662803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d465f7162a5fac14d288646e215f2391232c50d", "fields": {"nom_de_la_commune": "PESLIERES", "libell_d_acheminement": "PESLIERES", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63277"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "009518999add2947fbadb78e2aacdcad362c154a", "fields": {"nom_de_la_commune": "PIONSAT", "libell_d_acheminement": "PIONSAT", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63281"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb4d5f1ba73dfd66b380a9d94f90a23d20d5957", "fields": {"nom_de_la_commune": "LES PRADEAUX", "libell_d_acheminement": "LES PRADEAUX", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63287"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7545b471853592727c91509149b523b63c49f8b", "fields": {"nom_de_la_commune": "PRONDINES", "libell_d_acheminement": "PRONDINES", "code_postal": "63470", "coordonnees_gps": [45.7561405495, 2.60141855583], "code_commune_insee": "63289"}, "geometry": {"type": "Point", "coordinates": [2.60141855583, 45.7561405495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1eb97b58064459d4b5087dcecfc421a3b3873998", "fields": {"nom_de_la_commune": "RIS", "libell_d_acheminement": "RIS", "code_postal": "63290", "coordonnees_gps": [45.9654435883, 3.51792709718], "code_commune_insee": "63301"}, "geometry": {"type": "Point", "coordinates": [3.51792709718, 45.9654435883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d6b83d105c14116156879f48cc535e5e8b75890", "fields": {"nom_de_la_commune": "ROCHEFORT MONTAGNE", "libell_d_acheminement": "ROCHEFORT MONTAGNE", "code_postal": "63210", "coordonnees_gps": [45.7042185166, 2.84691568777], "code_commune_insee": "63305"}, "geometry": {"type": "Point", "coordinates": [2.84691568777, 45.7042185166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50523804b79fb25e2301b489ae2e9dd41d44b58e", "fields": {"nom_de_la_commune": "SAILLANT", "libell_d_acheminement": "SAILLANT", "code_postal": "63840", "coordonnees_gps": [45.4285937621, 3.88182928163], "code_commune_insee": "63309"}, "geometry": {"type": "Point", "coordinates": [3.88182928163, 45.4285937621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b368ab4bac4d04d24e3926db55c9f6a9a0be1ec1", "fields": {"nom_de_la_commune": "ST BABEL", "libell_d_acheminement": "ST BABEL", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63321"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8a7f289ac3187612a59414fbc4d1eaf044043a5", "fields": {"nom_de_la_commune": "STE CHRISTINE", "libell_d_acheminement": "STE CHRISTINE", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63329"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9a6c207684fc97b851f349ccb85d01a6e72517", "fields": {"nom_de_la_commune": "ST DONAT", "libell_d_acheminement": "ST DONAT", "code_postal": "63680", "coordonnees_gps": [45.5115697686, 2.72357891601], "code_commune_insee": "63336"}, "geometry": {"type": "Point", "coordinates": [2.72357891601, 45.5115697686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c2a339d76c14a79f47853ef0b2d112018c60c59", "fields": {"nom_de_la_commune": "ST GEORGES SUR ALLIER", "libell_d_acheminement": "ST GEORGES SUR ALLIER", "code_postal": "63800", "coordonnees_gps": [45.7314255981, 3.21711000607], "code_commune_insee": "63350"}, "geometry": {"type": "Point", "coordinates": [3.21711000607, 45.7314255981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f163853b4f25b4ff1caec004814b2b2a7a906cf", "fields": {"nom_de_la_commune": "ST GERVAIS SOUS MEYMONT", "libell_d_acheminement": "ST GERVAIS SOUS MEYMONT", "code_postal": "63880", "coordonnees_gps": [45.7022203315, 3.68151290757], "code_commune_insee": "63355"}, "geometry": {"type": "Point", "coordinates": [3.68151290757, 45.7022203315]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a86934c57b1398e2d0f98271ef1d8f0077dcb924", "fields": {"nom_de_la_commune": "ST GERVAZY", "libell_d_acheminement": "ST GERVAZY", "code_postal": "63340", "coordonnees_gps": [45.450400978, 3.19686495404], "code_commune_insee": "63356"}, "geometry": {"type": "Point", "coordinates": [3.19686495404, 45.450400978]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c53f1fa13c901c71b0cc79d1d35422c2d2236c60", "fields": {"nom_de_la_commune": "ST JACQUES D AMBUR", "libell_d_acheminement": "ST JACQUES D AMBUR", "code_postal": "63230", "coordonnees_gps": [45.8467690491, 2.84450342305], "code_commune_insee": "63363"}, "geometry": {"type": "Point", "coordinates": [2.84450342305, 45.8467690491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc8aa58c1c3072bc7ac6a8b081991bdf28d531b", "fields": {"nom_de_la_commune": "ST JEAN EN VAL", "libell_d_acheminement": "ST JEAN EN VAL", "code_postal": "63490", "coordonnees_gps": [45.5676913246, 3.41766076426], "code_commune_insee": "63366"}, "geometry": {"type": "Point", "coordinates": [3.41766076426, 45.5676913246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb13766a58c5ff13751ca5268436280678079599", "fields": {"nom_de_la_commune": "ST JUST", "libell_d_acheminement": "ST JUST", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63371"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c054d61d32f7a752d4ff8754691b51c88fd12ea", "fields": {"nom_de_la_commune": "ST MARTIN DES OLMES", "libell_d_acheminement": "ST MARTIN DES OLMES", "code_postal": "63600", "coordonnees_gps": [45.5398311687, 3.77518680082], "code_commune_insee": "63374"}, "geometry": {"type": "Point", "coordinates": [3.77518680082, 45.5398311687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ac756f00146cdeb15682050916524f47e862cd", "fields": {"nom_de_la_commune": "ST PIERRE LA BOURLHONNE", "libell_d_acheminement": "ST PIERRE LA BOURLHONNE", "code_postal": "63480", "coordonnees_gps": [45.6534695475, 3.7067918054], "code_commune_insee": "63384"}, "geometry": {"type": "Point", "coordinates": [3.7067918054, 45.6534695475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72cf2bc72187c154abc3a396bd31f3f401a79a2d", "fields": {"nom_de_la_commune": "ST PRIEST BRAMEFANT", "libell_d_acheminement": "ST PRIEST BRAMEFANT", "code_postal": "63310", "coordonnees_gps": [46.0104230061, 3.36316816844], "code_commune_insee": "63387"}, "geometry": {"type": "Point", "coordinates": [3.36316816844, 46.0104230061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb60043b1a8e00b0a3d38d211c07d9bb11f2a33f", "fields": {"nom_de_la_commune": "ST ROMAIN", "libell_d_acheminement": "ST ROMAIN", "code_postal": "63660", "coordonnees_gps": [45.5294414829, 3.9086743951], "code_commune_insee": "63394"}, "geometry": {"type": "Point", "coordinates": [3.9086743951, 45.5294414829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77a6d8d0d268627c6b89cab3e01f2530d5ee81e2", "fields": {"nom_de_la_commune": "ST SAUVEUR LA SAGNE", "libell_d_acheminement": "ST SAUVEUR LA SAGNE", "code_postal": "63220", "coordonnees_gps": [45.4034964419, 3.70923207053], "code_commune_insee": "63398"}, "geometry": {"type": "Point", "coordinates": [3.70923207053, 45.4034964419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "495365ab2ea6dfe57ff1462261d48bee1ead7e35", "fields": {"nom_de_la_commune": "SAULZET LE FROID", "libell_d_acheminement": "SAULZET LE FROID", "code_postal": "63970", "coordonnees_gps": [45.653938341, 2.95129100684], "code_commune_insee": "63407"}, "geometry": {"type": "Point", "coordinates": [2.95129100684, 45.653938341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e9ecc286c8aece2c0b02a34da92588e64a4f6f", "fields": {"nom_de_la_commune": "SAURET BESSERVE", "libell_d_acheminement": "SAURET BESSERVE", "code_postal": "63390", "coordonnees_gps": [46.0373720502, 2.80705948896], "code_commune_insee": "63408"}, "geometry": {"type": "Point", "coordinates": [2.80705948896, 46.0373720502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c6fa064886db916064301c702fcb334ce2efd4", "fields": {"nom_de_la_commune": "SAUVIAT", "libell_d_acheminement": "SAUVIAT", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63414"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4d8bae0d7c4bd168bbc8ae04230b3151e52f6c", "fields": {"nom_de_la_commune": "SAYAT", "libell_d_acheminement": "SAYAT", "code_postal": "63530", "coordonnees_gps": [45.855002413, 3.02081571111], "code_commune_insee": "63417"}, "geometry": {"type": "Point", "coordinates": [3.02081571111, 45.855002413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e35591d5ea8f9e6b8335a386bda9f15b647b20a", "fields": {"nom_de_la_commune": "SERMENTIZON", "libell_d_acheminement": "SERMENTIZON", "code_postal": "63120", "coordonnees_gps": [45.7736104259, 3.58137615687], "code_commune_insee": "63418"}, "geometry": {"type": "Point", "coordinates": [3.58137615687, 45.7736104259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3930d2db9c94d61915c09d492b2a1164817b882e", "fields": {"nom_de_la_commune": "SERVANT", "libell_d_acheminement": "SERVANT", "code_postal": "63560", "coordonnees_gps": [46.1157064497, 2.88410173513], "code_commune_insee": "63419"}, "geometry": {"type": "Point", "coordinates": [2.88410173513, 46.1157064497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a2c0ad17c7385f65fd71aa9abd484247d0f0a2e", "fields": {"nom_de_la_commune": "SEYCHALLES", "libell_d_acheminement": "SEYCHALLES", "code_postal": "63190", "coordonnees_gps": [45.817780708, 3.399916409], "code_commune_insee": "63420"}, "geometry": {"type": "Point", "coordinates": [3.399916409, 45.817780708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18159f4f15399f9a2be357f10929988e4378c07", "fields": {"nom_de_la_commune": "SOLIGNAT", "libell_d_acheminement": "SOLIGNAT", "code_postal": "63500", "coordonnees_gps": [45.5449375451, 3.24769750903], "code_commune_insee": "63422"}, "geometry": {"type": "Point", "coordinates": [3.24769750903, 45.5449375451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68e5d5702d40b886a9a8fc4a9dafae673870743c", "fields": {"nom_de_la_commune": "THURET", "libell_d_acheminement": "THURET", "code_postal": "63260", "coordonnees_gps": [46.0185019732, 3.21337186417], "code_commune_insee": "63432"}, "geometry": {"type": "Point", "coordinates": [3.21337186417, 46.0185019732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9861fe6108f9469dedc9098b86fc225ebbb70d0d", "fields": {"nom_de_la_commune": "VARENNES SUR MORGE", "libell_d_acheminement": "VARENNES SUR MORGE", "code_postal": "63720", "coordonnees_gps": [45.9061380457, 3.2350170341], "code_commune_insee": "63443"}, "geometry": {"type": "Point", "coordinates": [3.2350170341, 45.9061380457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac05af34c5478906f5b39daafe251965b2ae5e0", "fields": {"nom_de_la_commune": "VERGHEAS", "libell_d_acheminement": "VERGHEAS", "code_postal": "63330", "coordonnees_gps": [46.0971333548, 2.66280010852], "code_commune_insee": "63447"}, "geometry": {"type": "Point", "coordinates": [2.66280010852, 46.0971333548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e19df8b90cc26c53997476ac1206f9c9fad5b06b", "fields": {"nom_de_la_commune": "LAMAGISTERE", "libell_d_acheminement": "LAMAGISTERE", "code_postal": "82360", "coordonnees_gps": [44.132053256, 0.820730203951], "code_commune_insee": "82089"}, "geometry": {"type": "Point", "coordinates": [0.820730203951, 44.132053256]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c285b1efa29fbccea02e091e678011c207bdacce", "fields": {"nom_de_la_commune": "LAUZERTE", "libell_d_acheminement": "LAUZERTE", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82094"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec47f9cbe146f1118a044f81162841782ae3d51f", "fields": {"nom_de_la_commune": "LAVIT", "libell_d_acheminement": "LAVIT", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82097"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f483ead41efc9270ea16bf9e09a6592d7e2bdba7", "fields": {"nom_de_la_commune": "MOLIERES", "libell_d_acheminement": "MOLIERES", "code_postal": "82220", "coordonnees_gps": [44.1884297921, 1.33875921921], "code_commune_insee": "82113"}, "geometry": {"type": "Point", "coordinates": [1.33875921921, 44.1884297921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dc01153711aa8589353c6bc05861a218663e32c", "fields": {"nom_de_la_commune": "MONTAUBAN", "libell_d_acheminement": "MONTAUBAN", "code_postal": "82000", "coordonnees_gps": [44.0224789981, 1.36379301211], "code_commune_insee": "82121"}, "geometry": {"type": "Point", "coordinates": [1.36379301211, 44.0224789981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d84608e0c7cb2386be70c45cdeb1e256b9688186", "fields": {"nom_de_la_commune": "MONTECH", "libell_d_acheminement": "MONTECH", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82125"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd1e6de10f400fef643e7600fe6f66f1f82db57a", "fields": {"nom_de_la_commune": "MONTEILS", "libell_d_acheminement": "MONTEILS", "code_postal": "82300", "coordonnees_gps": [44.1565353923, 1.5436793185], "code_commune_insee": "82126"}, "geometry": {"type": "Point", "coordinates": [1.5436793185, 44.1565353923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a650acd345c8b2ce7b26272662f2e1cff1162e46", "fields": {"nom_de_la_commune": "MONTFERMIER", "libell_d_acheminement": "MONTFERMIER", "code_postal": "82270", "coordonnees_gps": [44.2279601929, 1.48359927772], "code_commune_insee": "82128"}, "geometry": {"type": "Point", "coordinates": [1.48359927772, 44.2279601929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2043505db7e7a255395bf16e613f381dd87e8908", "fields": {"nom_de_la_commune": "MONTJOI", "libell_d_acheminement": "MONTJOI", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82130"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea2e10e9877e7c7f005a7b23a7ce7ec28af9a7c", "fields": {"nom_de_la_commune": "ST ARROUMEX", "libell_d_acheminement": "ST ARROUMEX", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82156"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d593991ba75923f1bc6d0a430e603375f322b878", "fields": {"nom_de_la_commune": "ST CIRQ", "libell_d_acheminement": "ST CIRQ", "code_postal": "82300", "coordonnees_gps": [44.1565353923, 1.5436793185], "code_commune_insee": "82159"}, "geometry": {"type": "Point", "coordinates": [1.5436793185, 44.1565353923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53b874b0091e28e4673f650c994f14a1cf606922", "fields": {"nom_de_la_commune": "ST NAZAIRE DE VALENTANE", "libell_d_acheminement": "ST NAZAIRE DE VALENTANE", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82168"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0f2d2e36125710bf68a605ae19eb938b5eea35b", "fields": {"nom_de_la_commune": "LA SALVETAT BELMONTET", "libell_d_acheminement": "LA SALVETAT BELMONTET", "code_postal": "82230", "coordonnees_gps": [43.9774227851, 1.52946541503], "code_commune_insee": "82176"}, "geometry": {"type": "Point", "coordinates": [1.52946541503, 43.9774227851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6ce63ef3131040193c8153e03dd6f2a8ead42b", "fields": {"nom_de_la_commune": "SAUVETERRE", "libell_d_acheminement": "SAUVETERRE", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82177"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ad345258a0fdd9e6dbd5d1946a99e1858aa04f", "fields": {"nom_de_la_commune": "VERLHAC TESCOU", "libell_d_acheminement": "VERLHAC TESCOU", "code_postal": "82230", "coordonnees_gps": [43.9774227851, 1.52946541503], "code_commune_insee": "82192"}, "geometry": {"type": "Point", "coordinates": [1.52946541503, 43.9774227851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b416edab37e374d3260f936cf55d70c9f477e681", "fields": {"nom_de_la_commune": "VILLEMADE", "libell_d_acheminement": "VILLEMADE", "code_postal": "82130", "coordonnees_gps": [44.118372906, 1.29866187228], "code_commune_insee": "82195"}, "geometry": {"type": "Point", "coordinates": [1.29866187228, 44.118372906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a60b9824d459de91e6e7cb2058a0072d857530c8", "fields": {"nom_de_la_commune": "AIGUINES", "libell_d_acheminement": "AIGUINES", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83002"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7455deac066ab5765a6b4ad5793443cfed2177f0", "fields": {"nom_de_la_commune": "BELGENTIER", "libell_d_acheminement": "BELGENTIER", "code_postal": "83210", "coordonnees_gps": [43.2011646228, 6.01550347803], "code_commune_insee": "83017"}, "geometry": {"type": "Point", "coordinates": [6.01550347803, 43.2011646228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9d4e802315c40c202e57346e80ce100476be3b", "fields": {"nom_de_la_commune": "BRAS", "libell_d_acheminement": "BRAS", "code_postal": "83149", "coordonnees_gps": [43.4702120942, 5.95862515969], "code_commune_insee": "83021"}, "geometry": {"type": "Point", "coordinates": [5.95862515969, 43.4702120942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "711297c6917aca3ef294d1b4eb5fc2926be9e804", "fields": {"nom_de_la_commune": "BRENON", "libell_d_acheminement": "BRENON", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83022"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c99f6dc8fedb73e7b691918a8af88425dec3c233", "fields": {"nom_de_la_commune": "LA CADIERE D AZUR", "libell_d_acheminement": "LA CADIERE D AZUR", "code_postal": "83740", "coordonnees_gps": [43.203243315, 5.72523158524], "code_commune_insee": "83027"}, "geometry": {"type": "Point", "coordinates": [5.72523158524, 43.203243315]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eacf3084b3f83109eb7e02b381f9b6d4ae163e1", "fields": {"code_postal": "83740", "code_commune_insee": "83027", "libell_d_acheminement": "LA CADIERE D AZUR", "ligne_5": "GRAND MOULIN", "nom_de_la_commune": "LA CADIERE D AZUR", "coordonnees_gps": [43.203243315, 5.72523158524]}, "geometry": {"type": "Point", "coordinates": [5.72523158524, 43.203243315]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6a712ab7edb55a426f2bba73bd1e209ad21f32a", "fields": {"nom_de_la_commune": "CAMPS LA SOURCE", "libell_d_acheminement": "CAMPS LA SOURCE", "code_postal": "83170", "coordonnees_gps": [43.3988588214, 6.01212360255], "code_commune_insee": "83030"}, "geometry": {"type": "Point", "coordinates": [6.01212360255, 43.3988588214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48af1abc01956a257f96f2c644713b9a7b1cb75a", "fields": {"code_postal": "83330", "code_commune_insee": "83035", "libell_d_acheminement": "LE CASTELLET", "ligne_5": "LA BEGUDE", "nom_de_la_commune": "LE CASTELLET", "coordonnees_gps": [43.2073445411, 5.81845184293]}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3793a5dab921f540ddcabd2cb55e3ea1e2395358", "fields": {"nom_de_la_commune": "CORRENS", "libell_d_acheminement": "CORRENS", "code_postal": "83570", "coordonnees_gps": [43.4971017432, 6.15115955062], "code_commune_insee": "83045"}, "geometry": {"type": "Point", "coordinates": [6.15115955062, 43.4971017432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4799398211509239949a0a258dd8edf4380f78a5", "fields": {"code_postal": "83260", "code_commune_insee": "83047", "libell_d_acheminement": "LA CRAU", "ligne_5": "LA MOUTONNE", "nom_de_la_commune": "LA CRAU", "coordonnees_gps": [43.1635844264, 6.09277944177]}, "geometry": {"type": "Point", "coordinates": [6.09277944177, 43.1635844264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c52ef3c091a668ea03a4dba701b0583b1b27233a", "fields": {"nom_de_la_commune": "CUERS", "libell_d_acheminement": "CUERS", "code_postal": "83390", "coordonnees_gps": [43.2473941525, 6.13306231898], "code_commune_insee": "83049"}, "geometry": {"type": "Point", "coordinates": [6.13306231898, 43.2473941525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac0e75f27cd24d437d5ebc650bf9b5a845384b1", "fields": {"nom_de_la_commune": "ESPARRON", "libell_d_acheminement": "ESPARRON", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83052"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b58add65da2a95a365dc2e2238d113f0037d74", "fields": {"nom_de_la_commune": "FLASSANS SUR ISSOLE", "libell_d_acheminement": "FLASSANS SUR ISSOLE", "code_postal": "83340", "coordonnees_gps": [43.3884986728, 6.30143999122], "code_commune_insee": "83057"}, "geometry": {"type": "Point", "coordinates": [6.30143999122, 43.3884986728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa0e2fa9b43151373b8f3198e0bcd8c604f695b2", "fields": {"code_postal": "83370", "code_commune_insee": "83061", "libell_d_acheminement": "FREJUS", "ligne_5": "ST AYGULF", "nom_de_la_commune": "FREJUS", "coordonnees_gps": [43.4719896788, 6.76389239034]}, "geometry": {"type": "Point", "coordinates": [6.76389239034, 43.4719896788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fc66bfd2beee776f53843e216887cff8ed49383", "fields": {"nom_de_la_commune": "GAREOULT", "libell_d_acheminement": "GAREOULT", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83064"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937a78d101f3e35c7336f24884fcb3ecd819ccb7", "fields": {"code_postal": "83310", "code_commune_insee": "83068", "libell_d_acheminement": "GRIMAUD", "ligne_5": "PORT GRIMAUD", "nom_de_la_commune": "GRIMAUD", "coordonnees_gps": [43.248161575, 6.50847082602]}, "geometry": {"type": "Point", "coordinates": [6.50847082602, 43.248161575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df9e671de9de6f2530c1375223f1bf6a389d420c", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "PORQUEROLLES", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccc70d079d35c8a79f6c449b99d73a4798f8eb69", "fields": {"nom_de_la_commune": "LE LAVANDOU", "libell_d_acheminement": "LE LAVANDOU", "code_postal": "83980", "coordonnees_gps": [43.1659795447, 6.41263579843], "code_commune_insee": "83070"}, "geometry": {"type": "Point", "coordinates": [6.41263579843, 43.1659795447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b251233553f5187bf42f7c8dd3a60f89a48e260c", "fields": {"code_postal": "83980", "code_commune_insee": "83070", "libell_d_acheminement": "LE LAVANDOU", "ligne_5": "CAVALIERE", "nom_de_la_commune": "LE LAVANDOU", "coordonnees_gps": [43.1659795447, 6.41263579843]}, "geometry": {"type": "Point", "coordinates": [6.41263579843, 43.1659795447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99d9b240f9a511d5fc4a24a45708210e32bc5e30", "fields": {"nom_de_la_commune": "LORGUES", "libell_d_acheminement": "LORGUES", "code_postal": "83510", "coordonnees_gps": [43.4882924341, 6.34408995292], "code_commune_insee": "83072"}, "geometry": {"type": "Point", "coordinates": [6.34408995292, 43.4882924341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "648874ce72e41a0480351992b82ce7c6a2b051f3", "fields": {"nom_de_la_commune": "LA MOLE", "libell_d_acheminement": "LA MOLE", "code_postal": "83310", "coordonnees_gps": [43.248161575, 6.50847082602], "code_commune_insee": "83079"}, "geometry": {"type": "Point", "coordinates": [6.50847082602, 43.248161575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0026c7f5639607e833ade34d80f3fc9b8a693db7", "fields": {"nom_de_la_commune": "MONTFORT SUR ARGENS", "libell_d_acheminement": "MONTFORT SUR ARGENS", "code_postal": "83570", "coordonnees_gps": [43.4971017432, 6.15115955062], "code_commune_insee": "83083"}, "geometry": {"type": "Point", "coordinates": [6.15115955062, 43.4971017432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a64c397e3d1a33239a759e1e7c758302cabc3840", "fields": {"nom_de_la_commune": "NANS LES PINS", "libell_d_acheminement": "NANS LES PINS", "code_postal": "83860", "coordonnees_gps": [43.3789768743, 5.78461565848], "code_commune_insee": "83087"}, "geometry": {"type": "Point", "coordinates": [5.78461565848, 43.3789768743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daccdb893608d99aaae103b52a7a576577e514f6", "fields": {"nom_de_la_commune": "LE PLAN DE LA TOUR", "libell_d_acheminement": "LE PLAN DE LA TOUR", "code_postal": "83120", "coordonnees_gps": [43.3509505991, 6.59102562058], "code_commune_insee": "83094"}, "geometry": {"type": "Point", "coordinates": [6.59102562058, 43.3509505991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2990c912c00c928393c466a18e66dd4c0aacb29c", "fields": {"nom_de_la_commune": "POURRIERES", "libell_d_acheminement": "POURRIERES", "code_postal": "83910", "coordonnees_gps": [43.4938263679, 5.74734324634], "code_commune_insee": "83097"}, "geometry": {"type": "Point", "coordinates": [5.74734324634, 43.4938263679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7a093f74a0a2798bd739929c845423e0f33a455", "fields": {"nom_de_la_commune": "LA ROQUEBRUSSANNE", "libell_d_acheminement": "LA ROQUEBRUSSANNE", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83108"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a28c0b92100c84d39331677c378593ef666c8a3b", "fields": {"nom_de_la_commune": "ROUGIERS", "libell_d_acheminement": "ROUGIERS", "code_postal": "83170", "coordonnees_gps": [43.3988588214, 6.01212360255], "code_commune_insee": "83110"}, "geometry": {"type": "Point", "coordinates": [6.01212360255, 43.3988588214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925ee4f5654e0200dfe6c53d1bae2297935ec769", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83113"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f198e8baf2fb73c494f2ab365b8996f065bf9da2", "fields": {"nom_de_la_commune": "ST MARTIN DE PALLIERES", "libell_d_acheminement": "ST MARTIN DE PALLIERES", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83114"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "397bcf6de41f12ec3dc3ba51020ca7b95e6f3773", "fields": {"nom_de_la_commune": "ST MAXIMIN LA STE BAUME", "libell_d_acheminement": "ST MAXIMIN LA STE BAUME", "code_postal": "83470", "coordonnees_gps": [43.479442652, 5.84137337799], "code_commune_insee": "83116"}, "geometry": {"type": "Point", "coordinates": [5.84137337799, 43.479442652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e53c97ef58e2f1f51ab3453970df5b82f025d0bd", "fields": {"code_postal": "83530", "code_commune_insee": "83118", "libell_d_acheminement": "ST RAPHAEL", "ligne_5": "AGAY", "nom_de_la_commune": "ST RAPHAEL", "coordonnees_gps": [43.4577463744, 6.84776131018]}, "geometry": {"type": "Point", "coordinates": [6.84776131018, 43.4577463744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf9af76adf8da7cdb22d57d0ebe9bade24f5a8d", "fields": {"code_postal": "83530", "code_commune_insee": "83118", "libell_d_acheminement": "ST RAPHAEL", "ligne_5": "ANTHEOR", "nom_de_la_commune": "ST RAPHAEL", "coordonnees_gps": [43.4577463744, 6.84776131018]}, "geometry": {"type": "Point", "coordinates": [6.84776131018, 43.4577463744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4efa98340835251ff23fc11aa217d2424d918d9", "fields": {"code_postal": "83530", "code_commune_insee": "83118", "libell_d_acheminement": "ST RAPHAEL", "ligne_5": "LE DRAMONT", "nom_de_la_commune": "ST RAPHAEL", "coordonnees_gps": [43.4577463744, 6.84776131018]}, "geometry": {"type": "Point", "coordinates": [6.84776131018, 43.4577463744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed37054bd8533f507b78a4835080c1899d4ff9e4", "fields": {"nom_de_la_commune": "ST TROPEZ", "libell_d_acheminement": "ST TROPEZ", "code_postal": "83990", "coordonnees_gps": [43.262061662, 6.66341629782], "code_commune_insee": "83119"}, "geometry": {"type": "Point", "coordinates": [6.66341629782, 43.262061662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5131b608a028cb2edfe30d446fd71722fb1ed71a", "fields": {"nom_de_la_commune": "LES SALLES SUR VERDON", "libell_d_acheminement": "LES SALLES SUR VERDON", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83122"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7585d7cddc83d346cb1f628c985d3a91fd6e79f1", "fields": {"nom_de_la_commune": "SEILLANS", "libell_d_acheminement": "SEILLANS", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83124"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecfc0dbaa91da74f56c6c1e2534eeff741dd4fb5", "fields": {"nom_de_la_commune": "TAVERNES", "libell_d_acheminement": "TAVERNES", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83135"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f93a9abaf5be3acb60a41d15c72213c36a793f", "fields": {"nom_de_la_commune": "TOULON", "libell_d_acheminement": "TOULON", "code_postal": "83100", "coordonnees_gps": [43.1364016655, 5.93275623187], "code_commune_insee": "83137"}, "geometry": {"type": "Point", "coordinates": [5.93275623187, 43.1364016655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4742ac5b7b5c7a062e7ad497c86b98d3344b213", "fields": {"nom_de_la_commune": "TRIGANCE", "libell_d_acheminement": "TRIGANCE", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83142"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0e8e134b77244432f0a7bff32b634b6d2ee4560", "fields": {"nom_de_la_commune": "LA VALETTE DU VAR", "libell_d_acheminement": "LA VALETTE DU VAR", "code_postal": "83160", "coordonnees_gps": [43.1503741057, 5.99203927405], "code_commune_insee": "83144"}, "geometry": {"type": "Point", "coordinates": [5.99203927405, 43.1503741057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55d743a50b48648c06b5a7001c2114e320c08a16", "fields": {"nom_de_la_commune": "VERIGNON", "libell_d_acheminement": "VERIGNON", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83147"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840129c963fcb39654b79d338a6707036ba9ad96", "fields": {"nom_de_la_commune": "VILLECROZE", "libell_d_acheminement": "VILLECROZE", "code_postal": "83690", "coordonnees_gps": [43.5714577926, 6.24944372254], "code_commune_insee": "83149"}, "geometry": {"type": "Point", "coordinates": [6.24944372254, 43.5714577926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1de2e01d53ddd7100221f6dbbf7402bd56593ec2", "fields": {"nom_de_la_commune": "VINON SUR VERDON", "libell_d_acheminement": "VINON SUR VERDON", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83150"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975326d5f4adb1afe1109349d3d62f4b8545540c", "fields": {"nom_de_la_commune": "ANSOUIS", "libell_d_acheminement": "ANSOUIS", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84002"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9291ef0c2cc87dc72a13be7b10d0ba694c6bac60", "fields": {"nom_de_la_commune": "AURIBEAU", "libell_d_acheminement": "AURIBEAU", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84006"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5812d67ebdde811c7b550402424007e5b8e1972c", "fields": {"nom_de_la_commune": "LE BARROUX", "libell_d_acheminement": "LE BARROUX", "code_postal": "84330", "coordonnees_gps": [44.1247384898, 5.10713671288], "code_commune_insee": "84008"}, "geometry": {"type": "Point", "coordinates": [5.10713671288, 44.1247384898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "286d23f0b7ac2a15801bbae1e0b74da17d64d6f0", "fields": {"nom_de_la_commune": "LA BASTIDE DES JOURDANS", "libell_d_acheminement": "LA BASTIDE DES JOURDANS", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84009"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fb38a975003560299c92928831a8eced9ad4f7b", "fields": {"nom_de_la_commune": "LE BEAUCET", "libell_d_acheminement": "LE BEAUCET", "code_postal": "84210", "coordonnees_gps": [43.9898251077, 5.08841952046], "code_commune_insee": "84011"}, "geometry": {"type": "Point", "coordinates": [5.08841952046, 43.9898251077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e239f387718f893eb80f4d580f59509a6f65e744", "fields": {"nom_de_la_commune": "BEAUMES DE VENISE", "libell_d_acheminement": "BEAUMES DE VENISE", "code_postal": "84190", "coordonnees_gps": [44.1503927193, 5.02329856851], "code_commune_insee": "84012"}, "geometry": {"type": "Point", "coordinates": [5.02329856851, 44.1503927193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee8d1324a894ae7fb4663206e4b5b1944bf255e", "fields": {"nom_de_la_commune": "BEDARRIDES", "libell_d_acheminement": "BEDARRIDES", "code_postal": "84370", "coordonnees_gps": [44.0478483452, 4.90802122589], "code_commune_insee": "84016"}, "geometry": {"type": "Point", "coordinates": [4.90802122589, 44.0478483452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b352608dbddb3165ec20378d94d48206cc7c6d00", "fields": {"nom_de_la_commune": "BOLLENE", "libell_d_acheminement": "BOLLENE", "code_postal": "84500", "coordonnees_gps": [44.2880934622, 4.75230417944], "code_commune_insee": "84019"}, "geometry": {"type": "Point", "coordinates": [4.75230417944, 44.2880934622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81174adfa83239f7bc5322aab8a2279b099119b4", "fields": {"nom_de_la_commune": "BUOUX", "libell_d_acheminement": "BUOUX", "code_postal": "84480", "coordonnees_gps": [43.8257511419, 5.32106039419], "code_commune_insee": "84023"}, "geometry": {"type": "Point", "coordinates": [5.32106039419, 43.8257511419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1edbe3385bc255b796af7061366282ba61176658", "fields": {"nom_de_la_commune": "CABRIERES D AIGUES", "libell_d_acheminement": "CABRIERES D AIGUES", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84024"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d15c77bc75822d01cb6f24cff2a5cf6aecf0227e", "fields": {"nom_de_la_commune": "CRILLON LE BRAVE", "libell_d_acheminement": "CRILLON LE BRAVE", "code_postal": "84410", "coordonnees_gps": [44.1291997766, 5.23454879295], "code_commune_insee": "84041"}, "geometry": {"type": "Point", "coordinates": [5.23454879295, 44.1291997766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f46eb8f028cc81800925441654ea002d270a17", "fields": {"nom_de_la_commune": "ENTRAIGUES SUR LA SORGUE", "libell_d_acheminement": "ENTRAIGUES SUR LA SORGUE", "code_postal": "84320", "coordonnees_gps": [43.9953137505, 4.93275749544], "code_commune_insee": "84043"}, "geometry": {"type": "Point", "coordinates": [4.93275749544, 43.9953137505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241b264fc28891e3a115e2e6fe645638b442ec55", "fields": {"nom_de_la_commune": "GARGAS", "libell_d_acheminement": "GARGAS", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84047"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "580291ba5ccb81876ec4c53979f6672171a1a142", "fields": {"nom_de_la_commune": "GIGONDAS", "libell_d_acheminement": "GIGONDAS", "code_postal": "84190", "coordonnees_gps": [44.1503927193, 5.02329856851], "code_commune_insee": "84049"}, "geometry": {"type": "Point", "coordinates": [5.02329856851, 44.1503927193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec3af7e6a9b5c5ad7e247039bee87d556159d00", "fields": {"nom_de_la_commune": "GORDES", "libell_d_acheminement": "GORDES", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84050"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e60016e5088bfb6f3fe8e3ded4a823e8a1ac5d82", "fields": {"nom_de_la_commune": "LACOSTE", "libell_d_acheminement": "LACOSTE", "code_postal": "84480", "coordonnees_gps": [43.8257511419, 5.32106039419], "code_commune_insee": "84058"}, "geometry": {"type": "Point", "coordinates": [5.32106039419, 43.8257511419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e035380a60fa1c1b19021fbd6dc431855601d1f", "fields": {"nom_de_la_commune": "LAMOTTE DU RHONE", "libell_d_acheminement": "LAMOTTE DU RHONE", "code_postal": "84840", "coordonnees_gps": [44.2940948566, 4.67799884767], "code_commune_insee": "84063"}, "geometry": {"type": "Point", "coordinates": [4.67799884767, 44.2940948566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcf1b0c9871f5811e35e6ebb669071e093ca9c37", "fields": {"nom_de_la_commune": "LORIOL DU COMTAT", "libell_d_acheminement": "LORIOL DU COMTAT", "code_postal": "84870", "coordonnees_gps": [44.0756390255, 5.00469197027], "code_commune_insee": "84067"}, "geometry": {"type": "Point", "coordinates": [5.00469197027, 44.0756390255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dde5e73c02fa27612c4e79ca1a3464c5c8b7ef8", "fields": {"nom_de_la_commune": "LOURMARIN", "libell_d_acheminement": "LOURMARIN", "code_postal": "84160", "coordonnees_gps": [43.7635953762, 5.39771217975], "code_commune_insee": "84068"}, "geometry": {"type": "Point", "coordinates": [5.39771217975, 43.7635953762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81892929b29c17704d6fb289b40c65224c1c7661", "fields": {"nom_de_la_commune": "MORIERES LES AVIGNON", "libell_d_acheminement": "MORIERES LES AVIGNON", "code_postal": "84310", "coordonnees_gps": [43.9330682755, 4.90891793096], "code_commune_insee": "84081"}, "geometry": {"type": "Point", "coordinates": [4.90891793096, 43.9330682755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eacc29846effd690b2aa2936a0f91f33dbbe3274", "fields": {"nom_de_la_commune": "MORMOIRON", "libell_d_acheminement": "MORMOIRON", "code_postal": "84570", "coordonnees_gps": [44.041156223, 5.23123539059], "code_commune_insee": "84082"}, "geometry": {"type": "Point", "coordinates": [5.23123539059, 44.041156223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07a0d87265e6f5d63d3ce5c586fcadcf74b77610", "fields": {"nom_de_la_commune": "PUGET", "libell_d_acheminement": "PUGET", "code_postal": "84360", "coordonnees_gps": [43.7644472633, 5.24997704663], "code_commune_insee": "84093"}, "geometry": {"type": "Point", "coordinates": [5.24997704663, 43.7644472633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf20a9462510c4a8a3f24b4e48bedeec5328c0bc", "fields": {"nom_de_la_commune": "PUYMERAS", "libell_d_acheminement": "PUYMERAS", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84094"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0fd1996b84d84fad5626a430ccd25fcca67604b", "fields": {"nom_de_la_commune": "ROUSSILLON", "libell_d_acheminement": "ROUSSILLON", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84102"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f47d9e193f5829b7f44881a70abf6cea1e6c0e0", "fields": {"nom_de_la_commune": "ST CHRISTOL", "libell_d_acheminement": "ST CHRISTOL", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84107"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d94a11f4910f09606a0798bf62495c9f9cbc618b", "fields": {"nom_de_la_commune": "ST LEGER DU VENTOUX", "libell_d_acheminement": "ST LEGER DU VENTOUX", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84110"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27047268f32b56fa568d25e3e2a67f9302eaedec", "fields": {"nom_de_la_commune": "ST PANTALEON", "libell_d_acheminement": "ST PANTALEON", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84114"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c70d7fa8fadd5b77c474ca05e11cca6824b29af", "fields": {"nom_de_la_commune": "ST ROMAIN EN VIENNOIS", "libell_d_acheminement": "ST ROMAIN EN VIENNOIS", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84116"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dd8f3e28ee0d260d7e3b5d34145534bdaa28474", "fields": {"nom_de_la_commune": "ST ROMAN DE MALEGARDE", "libell_d_acheminement": "ST ROMAN DE MALEGARDE", "code_postal": "84290", "coordonnees_gps": [44.2363120458, 4.9094119857], "code_commune_insee": "84117"}, "geometry": {"type": "Point", "coordinates": [4.9094119857, 44.2363120458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0559b6c6bb8e6749f8ac455e50cb28923f90c57", "fields": {"nom_de_la_commune": "ST SATURNIN LES AVIGNON", "libell_d_acheminement": "ST SATURNIN LES AVIGNON", "code_postal": "84450", "coordonnees_gps": [43.9589146165, 4.94209052734], "code_commune_insee": "84119"}, "geometry": {"type": "Point", "coordinates": [4.94209052734, 43.9589146165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b0cf790aa4d214d043e02a1777de401df29d0a", "fields": {"nom_de_la_commune": "SARRIANS", "libell_d_acheminement": "SARRIANS", "code_postal": "84260", "coordonnees_gps": [44.099151311, 4.9571276482], "code_commune_insee": "84122"}, "geometry": {"type": "Point", "coordinates": [4.9571276482, 44.099151311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d298dedd7a458b2b97b747810197ec363bdce9ef", "fields": {"nom_de_la_commune": "SAVOILLAN", "libell_d_acheminement": "SAVOILLAN", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84125"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5672a01401d67d1699a7554b6f334030c683371e", "fields": {"nom_de_la_commune": "SIVERGUES", "libell_d_acheminement": "SIVERGUES", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84128"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f39ac15f31961d886aa1618337282277bc4640c", "fields": {"nom_de_la_commune": "SORGUES", "libell_d_acheminement": "SORGUES", "code_postal": "84700", "coordonnees_gps": [44.0151425855, 4.86635397957], "code_commune_insee": "84129"}, "geometry": {"type": "Point", "coordinates": [4.86635397957, 44.0151425855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d250df1b453ad8bc0c3b9dc5962a303cf53ef2bf", "fields": {"nom_de_la_commune": "SUZETTE", "libell_d_acheminement": "SUZETTE", "code_postal": "84190", "coordonnees_gps": [44.1503927193, 5.02329856851], "code_commune_insee": "84130"}, "geometry": {"type": "Point", "coordinates": [5.02329856851, 44.1503927193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8866524fc85798dba734a8d7a6c1207b046d75e", "fields": {"nom_de_la_commune": "LE THOR", "libell_d_acheminement": "LE THOR", "code_postal": "84250", "coordonnees_gps": [43.9283090586, 4.99319338111], "code_commune_insee": "84132"}, "geometry": {"type": "Point", "coordinates": [4.99319338111, 43.9283090586]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acf038ba2ad21dfbaeea379f7dd206ea44795f33", "fields": {"nom_de_la_commune": "VAISON LA ROMAINE", "libell_d_acheminement": "VAISON LA ROMAINE", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84137"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6a2dada8921583270af5b1eedf7d22f25f3b700", "fields": {"nom_de_la_commune": "VELLERON", "libell_d_acheminement": "VELLERON", "code_postal": "84740", "coordonnees_gps": [43.9615212553, 5.02670917405], "code_commune_insee": "84142"}, "geometry": {"type": "Point", "coordinates": [5.02670917405, 43.9615212553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89cf8969ee616913a95b5195aa472b321efa0168", "fields": {"nom_de_la_commune": "VILLEDIEU", "libell_d_acheminement": "VILLEDIEU", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84146"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8d1eb2a11c448aa9881c8e5039a45cfb8257a14", "fields": {"nom_de_la_commune": "VILLES SUR AUZON", "libell_d_acheminement": "VILLES SUR AUZON", "code_postal": "84570", "coordonnees_gps": [44.041156223, 5.23123539059], "code_commune_insee": "84148"}, "geometry": {"type": "Point", "coordinates": [5.23123539059, 44.041156223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc006424289011e4bbcbaab9a72b5fb63af1facd", "fields": {"nom_de_la_commune": "ANTIGNY", "libell_d_acheminement": "ANTIGNY", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85005"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07e4a2063a15241ee995f2f30dc20fc0bdbe5754", "fields": {"nom_de_la_commune": "LANNE EN BARETOUS", "libell_d_acheminement": "LANNE EN BARETOUS", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64310"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cffe4ca7f3a9e3c8746f9a4011a6adc28f2fe4ed", "fields": {"nom_de_la_commune": "LARCEVEAU ARROS CIBITS", "libell_d_acheminement": "LARCEVEAU ARROS CIBITS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64314"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d0e7a51dc1e39c4561bb2405b5ba529298ac0b6", "fields": {"nom_de_la_commune": "LARRESSORE", "libell_d_acheminement": "LARRESSORE", "code_postal": "64480", "coordonnees_gps": [43.3959215702, -1.45000012935], "code_commune_insee": "64317"}, "geometry": {"type": "Point", "coordinates": [-1.45000012935, 43.3959215702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57419aa721601cdc5d53066265ffffe6499e57b6", "fields": {"code_postal": "64440", "code_commune_insee": "64320", "libell_d_acheminement": "LARUNS", "ligne_5": "GABAS", "nom_de_la_commune": "LARUNS", "coordonnees_gps": [42.9183295476, -0.395850195838]}, "geometry": {"type": "Point", "coordinates": [-0.395850195838, 42.9183295476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c8ac7925e60c4ddeb372c37b2146399d5b5f635", "fields": {"nom_de_la_commune": "LECUMBERRY", "libell_d_acheminement": "LECUMBERRY", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64327"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b8c9cd2cc060a4bd9dd12dd1f05592a0ed8118", "fields": {"nom_de_la_commune": "LEDEUIX", "libell_d_acheminement": "LEDEUIX", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64328"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "824a7a3402200b117dbba5e73a5d7e9de025d30d", "fields": {"nom_de_la_commune": "LESCAR", "libell_d_acheminement": "LESCAR", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64335"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23b235bf6c97f637192ca7fed065d85ed7bc4e47", "fields": {"nom_de_la_commune": "LESPOURCY", "libell_d_acheminement": "LESPOURCY", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64338"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efb59c9ba1c70c66bf3330e339b496fad6b81613", "fields": {"nom_de_la_commune": "LIVRON", "libell_d_acheminement": "LIVRON", "code_postal": "64530", "coordonnees_gps": [43.2249813189, -0.0930410318434], "code_commune_insee": "64344"}, "geometry": {"type": "Point", "coordinates": [-0.0930410318434, 43.2249813189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956b34b317800e3765b500aa5e9f9ef0a649f202", "fields": {"nom_de_la_commune": "LOHITZUN OYHERCQ", "libell_d_acheminement": "LOHITZUN OYHERCQ", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64345"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86006720153750f0b2b5734debc9479b76c83b25", "fields": {"nom_de_la_commune": "LOMBIA", "libell_d_acheminement": "LOMBIA", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64346"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da4fef6787313f859fd2f40ac1c5a7b5c338fd6a", "fields": {"nom_de_la_commune": "LONCON", "libell_d_acheminement": "LONCON", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64347"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d392ce7c11c93ac9b480d2a4da2d79a66aee429c", "fields": {"nom_de_la_commune": "LUCQ DE BEARN", "libell_d_acheminement": "LUCQ DE BEARN", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64359"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df8a7e1c546e4936ba13a55ebe67826fd03c3a0b", "fields": {"nom_de_la_commune": "LUSSAGNET LUSSON", "libell_d_acheminement": "LUSSAGNET LUSSON", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64361"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a814b35b88abb7df32afeb026467074ce85b14b2", "fields": {"nom_de_la_commune": "LYS", "libell_d_acheminement": "LYS", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64363"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c8b1b04f100d8fa08d42dd3aac8f8345c8f08a", "fields": {"nom_de_la_commune": "MASCARAAS HARON", "libell_d_acheminement": "MASCARAAS HARON", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64366"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee4590f3b40845c4ba2a037e8efc18cf220d05f3", "fields": {"nom_de_la_commune": "MAURE", "libell_d_acheminement": "MAURE", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64372"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e17ce68a0ce5ae6b0ecb1d2e3d23a78157e05c95", "fields": {"nom_de_la_commune": "MEILLON", "libell_d_acheminement": "MEILLON", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64376"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "540f88753e3df4299b454ed5213bcede0a3f22ec", "fields": {"nom_de_la_commune": "MENDITTE", "libell_d_acheminement": "MENDITTE", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64378"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13086f0a2f6111ec179ec37a6bee3faea948fa0", "fields": {"nom_de_la_commune": "MONCAYOLLE LARRORY MENDIBIEU", "libell_d_acheminement": "MONCAYOLLE LARRORY MENDIBIEU", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64391"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1748d6dc8bee4c19d22145a9c941941f1e4febb", "fields": {"nom_de_la_commune": "MONPEZAT", "libell_d_acheminement": "MONPEZAT", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64394"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70acf81c78d3574aed78630bca321d1a3c08fce3", "fields": {"nom_de_la_commune": "MONT", "libell_d_acheminement": "MONT", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64396"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275664a4ca0bb03b955fba87571dcc65d5c3db05", "fields": {"nom_de_la_commune": "MONTANER", "libell_d_acheminement": "MONTANER", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64398"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558b725ec6fb9aff6f44c714ea183f57af91cc39", "fields": {"nom_de_la_commune": "MONTARDON", "libell_d_acheminement": "MONTARDON", "code_postal": "64121", "coordonnees_gps": [43.3744840703, -0.360649842096], "code_commune_insee": "64399"}, "geometry": {"type": "Point", "coordinates": [-0.360649842096, 43.3744840703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5084cb3560b7600fa0757c102647bc6fc8e207a", "fields": {"nom_de_la_commune": "MOUHOUS", "libell_d_acheminement": "MOUHOUS", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64408"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe88df2609ddf267dcd777cf8d3f5c287dce879a", "fields": {"nom_de_la_commune": "OGENNE CAMPTORT", "libell_d_acheminement": "OGENNE CAMPTORT", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64420"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed281d5d9ef1234836a8c0d62965ac362ee070d2", "fields": {"nom_de_la_commune": "ORTHEZ", "libell_d_acheminement": "ORTHEZ", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64430"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "423ee93ada1b79a27db504e446fc3358d01a6c9c", "fields": {"nom_de_la_commune": "OSSE EN ASPE", "libell_d_acheminement": "OSSE EN ASPE", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64433"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ba39be6fa2806190207d1840fbd02b663c3d1a", "fields": {"nom_de_la_commune": "OSSENX", "libell_d_acheminement": "OSSENX", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64434"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "494c6e15db84b3a1500c6c3c030a52e57c57dc35", "fields": {"nom_de_la_commune": "OSSERAIN RIVAREYTE", "libell_d_acheminement": "OSSERAIN RIVAREYTE", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64435"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8821c547d1c278fb59196fc5a9a4954484bb55", "fields": {"nom_de_la_commune": "PEYRELONGUE ABOS", "libell_d_acheminement": "PEYRELONGUE ABOS", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64446"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7300cfade23613a3fdceacb27e5ed3069deea1a8", "fields": {"nom_de_la_commune": "PONSON DEBAT POUTS", "libell_d_acheminement": "PONSON DEBAT POUTS", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64451"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70127043c32e6ae9710fde047de84697e416b22a", "fields": {"nom_de_la_commune": "POULIACQ", "libell_d_acheminement": "POULIACQ", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64456"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81709c23d783ca23c4937d0411a911782df3b7c6", "fields": {"nom_de_la_commune": "POURSIUGUES BOUCOUE", "libell_d_acheminement": "POURSIUGUES BOUCOUE", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64457"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da64907fd1a8e5d5928304d2444085fefad34fac", "fields": {"nom_de_la_commune": "PRECHACQ NAVARRENX", "libell_d_acheminement": "PRECHACQ NAVARRENX", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64459"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea6b88c4894f4accb5662ef40cb9caa74f884015", "fields": {"nom_de_la_commune": "PUYOO", "libell_d_acheminement": "PUYOO", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64461"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6fc21baa13fc66cdd8340687014d71c644152e1", "fields": {"nom_de_la_commune": "RAMOUS", "libell_d_acheminement": "RAMOUS", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64462"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "262fc78175aa9eed0d3f1e278487d2a8dfb46020", "fields": {"nom_de_la_commune": "ST ABIT", "libell_d_acheminement": "ST ABIT", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64469"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d50c457d0f6c6fa8b6a6e2ac3a21694745dabbcf", "fields": {"nom_de_la_commune": "ST ESTEBEN", "libell_d_acheminement": "ST ESTEBEN", "code_postal": "64640", "coordonnees_gps": [43.2945597226, -1.18265900805], "code_commune_insee": "64476"}, "geometry": {"type": "Point", "coordinates": [-1.18265900805, 43.2945597226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aefece655d140431422adc49a9064753c21c28af", "fields": {"nom_de_la_commune": "ST JUST IBARRE", "libell_d_acheminement": "ST JUST IBARRE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64487"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "810be7c9ed87876aa6c2df0394643ad6e51f3841", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64491"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1bb12a17d125188684cce65b12261bcf9528bad", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64492"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bbd7f9539133e8aa5b0ec674ab4e2ab021f1a44", "fields": {"nom_de_la_commune": "SALLESPISSE", "libell_d_acheminement": "SALLESPISSE", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64501"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76579f9a581dddcea868db4d7551e3a6f8e8d184", "fields": {"nom_de_la_commune": "SAMES", "libell_d_acheminement": "SAMES", "code_postal": "64520", "coordonnees_gps": [43.4828017234, -1.16861389886], "code_commune_insee": "64502"}, "geometry": {"type": "Point", "coordinates": [-1.16861389886, 43.4828017234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f33ff607b0ab258468650423afb45f6523420996", "fields": {"nom_de_la_commune": "SAUCEDE", "libell_d_acheminement": "SAUCEDE", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64508"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336ab032d9a266887ff35a00d97536e49096d033", "fields": {"nom_de_la_commune": "SEBY", "libell_d_acheminement": "SEBY", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64514"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c86a5c2cb0b9952c3f33809b82206ee253f7918", "fields": {"nom_de_la_commune": "SEDZE MAUBECQ", "libell_d_acheminement": "SEDZE MAUBECQ", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64515"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1280fe3d6f750c0a2c042e1d9ced3aceefc825c7", "fields": {"nom_de_la_commune": "SEVIGNACQ", "libell_d_acheminement": "SEVIGNACQ", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64523"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f93f4bdd7d04bd7686c5e2ce13d22765abc7ffe", "fields": {"nom_de_la_commune": "SUSMIOU", "libell_d_acheminement": "SUSMIOU", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64530"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a6306ecc8b822f1d608ad28f77ccd785cdb1c5", "fields": {"nom_de_la_commune": "TARON SADIRAC VIELLENAVE", "libell_d_acheminement": "TARON SADIRAC VIELLENAVE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64534"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fc65d3cd7420d72c92bfbc37561042d85008ebe", "fields": {"nom_de_la_commune": "THEZE", "libell_d_acheminement": "THEZE", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64536"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e0f19ba780fc25c831e7e2e78381f5bc1da91a", "fields": {"nom_de_la_commune": "URDES", "libell_d_acheminement": "URDES", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64541"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ef91d0bd3728c41e8dbb708fb493199a35266d", "fields": {"nom_de_la_commune": "USTARITZ", "libell_d_acheminement": "USTARITZ", "code_postal": "64480", "coordonnees_gps": [43.3959215702, -1.45000012935], "code_commune_insee": "64547"}, "geometry": {"type": "Point", "coordinates": [-1.45000012935, 43.3959215702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84c1c7133c3a297259eeafabd1f7b245df459542", "fields": {"nom_de_la_commune": "UZOS", "libell_d_acheminement": "UZOS", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64550"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7043db70cd712c0b5d535a17bcd568838585029", "fields": {"nom_de_la_commune": "VERDETS", "libell_d_acheminement": "VERDETS", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64551"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e202c5dccb95c28d308d33d41fdb1f27fd22736", "fields": {"nom_de_la_commune": "VILLEFRANQUE", "libell_d_acheminement": "VILLEFRANQUE", "code_postal": "64990", "coordonnees_gps": [43.4632822407, -1.40781223333], "code_commune_insee": "64558"}, "geometry": {"type": "Point", "coordinates": [-1.40781223333, 43.4632822407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "688fd8211597ddccc718938abdbce30b04f7ccb1", "fields": {"nom_de_la_commune": "VIVEN", "libell_d_acheminement": "VIVEN", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64560"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "249820eb8b9a75e8bda42967ffb52748c0f6991d", "fields": {"nom_de_la_commune": "ADAST", "libell_d_acheminement": "ADAST", "code_postal": "65260", "coordonnees_gps": [42.9464075776, -0.0299417216939], "code_commune_insee": "65001"}, "geometry": {"type": "Point", "coordinates": [-0.0299417216939, 42.9464075776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b16133e04125f39a07f79cdfee298552d2526a89", "fields": {"nom_de_la_commune": "ADE", "libell_d_acheminement": "ADE", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65002"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d58e1ba5ab5217fbf5a843728a18a9bdd84f737", "fields": {"nom_de_la_commune": "ARAGNOUET", "libell_d_acheminement": "ARAGNOUET", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65017"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "979f77e8f9ae3bb9690f0f398e34a0419591617e", "fields": {"nom_de_la_commune": "ARREAU", "libell_d_acheminement": "ARREAU", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65031"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcef50b7eb93a5fe00572633ceca98729d91ee94", "fields": {"nom_de_la_commune": "AUREILHAN", "libell_d_acheminement": "AUREILHAN", "code_postal": "65800", "coordonnees_gps": [43.2687329702, 0.110735154449], "code_commune_insee": "65047"}, "geometry": {"type": "Point", "coordinates": [0.110735154449, 43.2687329702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ad75e6239a96b3b30297cdaa13066d9cf6ec541", "fields": {"nom_de_la_commune": "AVERAN", "libell_d_acheminement": "AVERAN", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65052"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8184a9e26c44df69af96e96a41b92e8972d1f4a8", "fields": {"nom_de_la_commune": "AVEUX", "libell_d_acheminement": "AVEUX", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65053"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65168d543473e5f7c6ca816923a4baf58e02e244", "fields": {"code_postal": "65130", "code_commune_insee": "65054", "libell_d_acheminement": "AVEZAC PRAT LAHITTE", "ligne_5": "LAHITTE", "nom_de_la_commune": "AVEZAC PRAT LAHITTE", "coordonnees_gps": [43.0681030312, 0.291772301589]}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d8422a0df8ad163baf72cd8aeb407785e6d117e", "fields": {"nom_de_la_commune": "BARBACHEN", "libell_d_acheminement": "BARBACHEN", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65061"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a705976a967b38fb9f095ed0a69448403880a59a", "fields": {"nom_de_la_commune": "BARLEST", "libell_d_acheminement": "BARLEST", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65065"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6abf1d7b788ea558062a5ac388fd203f365a67f9", "fields": {"nom_de_la_commune": "BARTHE", "libell_d_acheminement": "BARTHE", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65068"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954a8689762a3221ec3ddc24fead196b6e215547", "fields": {"nom_de_la_commune": "BARTRES", "libell_d_acheminement": "BARTRES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65070"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cffc0af6c7453fdc80578e515863b76f881f68d4", "fields": {"nom_de_la_commune": "BERBERUST LIAS", "libell_d_acheminement": "BERBERUST LIAS", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65082"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a4a1dd563b684912442ef1f2a92ada1a6d0349a", "fields": {"nom_de_la_commune": "BERNAC DEBAT", "libell_d_acheminement": "BERNAC DEBAT", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65083"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a086ef970f3fd0bf237a3f97d0ebeffcace464f", "fields": {"nom_de_la_commune": "BERNADETS DEBAT", "libell_d_acheminement": "BERNADETS DEBAT", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65085"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17c680cd1d3ccd7a081c94d11dac819d1fc33b6b", "fields": {"nom_de_la_commune": "BERNADETS DESSUS", "libell_d_acheminement": "BERNADETS DESSUS", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65086"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17e8d006bbe41757ff70da78a617fa83d06be0de", "fields": {"nom_de_la_commune": "BONNEMAZON", "libell_d_acheminement": "BONNEMAZON", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65096"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed72b9b9ed93c9a9b4a4bc0a91c3ea4005c6a2b1", "fields": {"nom_de_la_commune": "ST LEONARD", "libell_d_acheminement": "ST LEONARD", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51493"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "143a104f4acd693bbcc7ea526f4c79f7a715a8da", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51495"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e768e0f57ef5bde40cb23e6f4bf22b4c7d6d20d2", "fields": {"nom_de_la_commune": "ST LUMIER EN CHAMPAGNE", "libell_d_acheminement": "ST LUMIER EN CHAMPAGNE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51496"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "131989a6bca5bb0ffafc800d58400338df560db5", "fields": {"nom_de_la_commune": "ST MARTIN L HEUREUX", "libell_d_acheminement": "ST MARTIN L HEUREUX", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51503"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8401f796f38ff411daa88b7fc378b1809952a98", "fields": {"nom_de_la_commune": "STE MENEHOULD", "libell_d_acheminement": "STE MENEHOULD", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51507"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74fd92b18ec29306ccef667ad22d24a29218fda", "fields": {"nom_de_la_commune": "ST QUENTIN LES MARAIS", "libell_d_acheminement": "ST QUENTIN LES MARAIS", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51510"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e378edfba5d78f4bf44d2da2f8c0fcc4f730b557", "fields": {"nom_de_la_commune": "ST SOUPLET SUR PY", "libell_d_acheminement": "ST SOUPLET SUR PY", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51517"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae69735e8a03ff84063a1a90565613f03cf36647", "fields": {"nom_de_la_commune": "ST THIERRY", "libell_d_acheminement": "ST THIERRY", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51518"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d3e88793469d660a0f37935c2ddb4ea3ab68557", "fields": {"nom_de_la_commune": "ST THOMAS EN ARGONNE", "libell_d_acheminement": "ST THOMAS EN ARGONNE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51519"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "210f7e34d52da516dc6414b9c16299e9b6793423", "fields": {"nom_de_la_commune": "SARCY", "libell_d_acheminement": "SARCY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51523"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7435bda004af13e3d62efc94987200888104e664", "fields": {"nom_de_la_commune": "SIVRY ANTE", "libell_d_acheminement": "SIVRY ANTE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51537"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360f68e6b3485bfbd2c0854efb37e12616a928ff", "fields": {"nom_de_la_commune": "SOMMEPY TAHURE", "libell_d_acheminement": "SOMMEPY TAHURE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51544"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac219e29ebc4c043c2d30504ed4ceecc1e2e1390", "fields": {"nom_de_la_commune": "SOMME SUIPPE", "libell_d_acheminement": "SOMME SUIPPE", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51546"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07019aba2a51183b22688c5bcbfbfe93193b3db7", "fields": {"nom_de_la_commune": "SUIPPES", "libell_d_acheminement": "SUIPPES", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51559"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ada5f299c7e7a936034c23db5e218f93d50de9d", "fields": {"nom_de_la_commune": "THAAS", "libell_d_acheminement": "THAAS", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51565"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "334beb21f068be4e668fa779e31f8d8d1bfea8ba", "fields": {"nom_de_la_commune": "VATRY", "libell_d_acheminement": "VATRY", "code_postal": "51320", "coordonnees_gps": [48.7267171427, 4.30396433776], "code_commune_insee": "51595"}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbecac12e9f09e9040c63b548ef34d5d4fd66f50", "fields": {"nom_de_la_commune": "VAUCIENNES", "libell_d_acheminement": "VAUCIENNES", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51597"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d966028a1cebd5ace1601569d96567f92e1f94", "fields": {"nom_de_la_commune": "VAUDEMANGE", "libell_d_acheminement": "VAUDEMANGE", "code_postal": "51380", "coordonnees_gps": [49.1185203616, 4.19712264591], "code_commune_insee": "51599"}, "geometry": {"type": "Point", "coordinates": [4.19712264591, 49.1185203616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6287840d860d87dcbec92ca957c4b4598d301d2f", "fields": {"code_postal": "51130", "code_commune_insee": "51611", "libell_d_acheminement": "VERT TOULON", "ligne_5": "TOULON LA MONTAGNE", "nom_de_la_commune": "VERT TOULON", "coordonnees_gps": [48.8827840053, 4.0351549525]}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ca9903093428dedcb27fb64fcbe53b37c67980", "fields": {"nom_de_la_commune": "VERZENAY", "libell_d_acheminement": "VERZENAY", "code_postal": "51360", "coordonnees_gps": [49.1885177288, 4.19782075204], "code_commune_insee": "51613"}, "geometry": {"type": "Point", "coordinates": [4.19782075204, 49.1885177288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0e0ccafc433fde4e462a79ec392349b17d2df7c", "fields": {"nom_de_la_commune": "VESIGNEUL SUR MARNE", "libell_d_acheminement": "VESIGNEUL SUR MARNE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51616"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88e19f79d37b4058b8a7c2113907c99d0c2593d8", "fields": {"nom_de_la_commune": "LA VILLE SOUS ORBAIS", "libell_d_acheminement": "LA VILLE SOUS ORBAIS", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51639"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68dc2a9734816ed61adc824e51fec5d3fa04fa06", "fields": {"nom_de_la_commune": "VOILEMONT", "libell_d_acheminement": "VOILEMONT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51650"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b8c2df603f4034196b3eadf77d91d4762ae2794", "fields": {"nom_de_la_commune": "VOUZY", "libell_d_acheminement": "VOUZY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51655"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44d537e2d605eff61f0b79c6d1800d00631d9acc", "fields": {"nom_de_la_commune": "VROIL", "libell_d_acheminement": "VROIL", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51658"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7567f5449d9bd307b8f1f62a233fb7564f1374e6", "fields": {"nom_de_la_commune": "MAGENTA", "libell_d_acheminement": "MAGENTA", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51663"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5715e445fe456cbf96bc6841b13c2bf9407a055", "fields": {"code_postal": "14220", "code_commune_insee": "14689", "libell_d_acheminement": "LE HOM", "ligne_5": "HAMARS", "nom_de_la_commune": "LE HOM", "coordonnees_gps": [48.9913936572, -0.409929998013]}, "geometry": {"type": "Point", "coordinates": [-0.409929998013, 48.9913936572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157cee8d94634687aed7d1774eed52359bf88957", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "ECOTS", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4307890b515645a1e4154c63065f171964b9e25a", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "GARNETOT", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e470560a51cabc7cede6749114f69fa7cf1e5dc5", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "GRANDMESNIL", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aee7a1fae42fbb8ef85c8d6ba9729f866841ba69", "fields": {"code_postal": "14170", "code_commune_insee": "14697", "libell_d_acheminement": "L OUDON", "ligne_5": "TOTES", "nom_de_la_commune": "L OUDON", "coordonnees_gps": [48.9808309881, -0.0400174122505]}, "geometry": {"type": "Point", "coordinates": [-0.0400174122505, 48.9808309881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3da85a82d1778a796ee8760e6df1335b872b0814", "fields": {"nom_de_la_commune": "TOUR EN BESSIN", "libell_d_acheminement": "TOUR EN BESSIN", "code_postal": "14400", "coordonnees_gps": [49.2815631038, -0.715433077365], "code_commune_insee": "14700"}, "geometry": {"type": "Point", "coordinates": [-0.715433077365, 49.2815631038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05447a61e0fd9c4d2bde01eaa518dd03fc8f5258", "fields": {"nom_de_la_commune": "TOURNAY SUR ODON", "libell_d_acheminement": "TOURNAY SUR ODON", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14702"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82f4cf596e5b7557a63fd194f26ea30943a170c5", "fields": {"nom_de_la_commune": "TREVIERES", "libell_d_acheminement": "TREVIERES", "code_postal": "14710", "coordonnees_gps": [49.3170637907, -0.915262890017], "code_commune_insee": "14711"}, "geometry": {"type": "Point", "coordinates": [-0.915262890017, 49.3170637907]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff8ebf067e0e80bbc572cd6703f918ad5c7162e6", "fields": {"nom_de_la_commune": "TROARN", "libell_d_acheminement": "TROARN", "code_postal": "14670", "coordonnees_gps": [49.1818769935, -0.152819265624], "code_commune_insee": "14712"}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf143dfec5bb3582a158b19a0e423b6ac88171a3", "fields": {"code_postal": "14670", "code_commune_insee": "14712", "libell_d_acheminement": "TROARN", "ligne_5": "BURES SUR DIVES", "nom_de_la_commune": "TROARN", "coordonnees_gps": [49.1818769935, -0.152819265624]}, "geometry": {"type": "Point", "coordinates": [-0.152819265624, 49.1818769935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b218b17c34b88e35a10e06a660192f78a4ccd147", "fields": {"nom_de_la_commune": "URVILLE", "libell_d_acheminement": "URVILLE", "code_postal": "14190", "coordonnees_gps": [49.0218805149, -0.23188447049], "code_commune_insee": "14719"}, "geometry": {"type": "Point", "coordinates": [-0.23188447049, 49.0218805149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07f01f54a88092857e75b095b131c0923d28815f", "fields": {"nom_de_la_commune": "VACOGNES NEUILLY", "libell_d_acheminement": "VACOGNES NEUILLY", "code_postal": "14210", "coordonnees_gps": [49.1001637748, -0.508327897598], "code_commune_insee": "14721"}, "geometry": {"type": "Point", "coordinates": [-0.508327897598, 49.1001637748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ab2d5a8356d234c7c22f905e3c1a3102de75f13", "fields": {"nom_de_la_commune": "VALSEME", "libell_d_acheminement": "VALSEME", "code_postal": "14340", "coordonnees_gps": [49.1715682628, 0.0767124030123], "code_commune_insee": "14723"}, "geometry": {"type": "Point", "coordinates": [0.0767124030123, 49.1715682628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60bf1aa333c1bce7fe7910f394160dfc8f556635", "fields": {"code_postal": "14350", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "ST CHARLES DE PERCY", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.9220153608, -0.733098585986]}, "geometry": {"type": "Point", "coordinates": [-0.733098585986, 48.9220153608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21acc5cd879065ed551e4af33c351cdcb4fc1b46", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "BERNIERES LE PATRY", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19d8e7c2652287141d9f214ac763193cc6837182", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "CHENEDOLLE", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfe3de8bfdf404cab90816a654e02e2d874e029d", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "ESTRY", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdc8767aeb88dee1ffc2195b45b3a23002b4e95c", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "PIERRES", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "410db598036e69ac6a6ff2486c0b254b0d32a547", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "RULLY", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55662e2cca7d27318c96c38ad2705150dffd599e", "fields": {"code_postal": "14410", "code_commune_insee": "14726", "libell_d_acheminement": "VALDALLIERE", "ligne_5": "VIESSOIX", "nom_de_la_commune": "VALDALLIERE", "coordonnees_gps": [48.8634454431, -0.658385969562]}, "geometry": {"type": "Point", "coordinates": [-0.658385969562, 48.8634454431]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec02097366e449f09dcbbd39d38d077ff929bb2e", "fields": {"nom_de_la_commune": "VILLERS BOCAGE", "libell_d_acheminement": "VILLERS BOCAGE", "code_postal": "14310", "coordonnees_gps": [49.0707040622, -0.648769817397], "code_commune_insee": "14752"}, "geometry": {"type": "Point", "coordinates": [-0.648769817397, 49.0707040622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f984e579905bc339d4b4e51b99d2b2cc7c9fe0", "fields": {"nom_de_la_commune": "PONT D OUILLY", "libell_d_acheminement": "PONT D OUILLY", "code_postal": "14690", "coordonnees_gps": [48.881705184, -0.38339181296], "code_commune_insee": "14764"}, "geometry": {"type": "Point", "coordinates": [-0.38339181296, 48.881705184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15a99a9c53e45486143b55ea81f4771536582ee8", "fields": {"nom_de_la_commune": "ANGLARDS DE SALERS", "libell_d_acheminement": "ANGLARDS DE SALERS", "code_postal": "15380", "coordonnees_gps": [45.1901906468, 2.5322900366], "code_commune_insee": "15006"}, "geometry": {"type": "Point", "coordinates": [2.5322900366, 45.1901906468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1dc8c7dd285f8c37f7ef928ea0538133ebcfe92", "fields": {"nom_de_la_commune": "APCHON", "libell_d_acheminement": "APCHON", "code_postal": "15400", "coordonnees_gps": [45.2494220056, 2.64495164445], "code_commune_insee": "15009"}, "geometry": {"type": "Point", "coordinates": [2.64495164445, 45.2494220056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6e09fd8737d3186f639cf08f5504ec2cb975b9", "fields": {"code_postal": "10370", "code_commune_insee": "10420", "libell_d_acheminement": "VILLENAUXE LA GRANDE", "ligne_5": "DIVAL", "nom_de_la_commune": "VILLENAUXE LA GRANDE", "coordonnees_gps": [48.5945073105, 3.54815302668]}, "geometry": {"type": "Point", "coordinates": [3.54815302668, 48.5945073105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df172742fbe82a8a335c1a7d910ad7d310781c2d", "fields": {"nom_de_la_commune": "VILLY LE MARECHAL", "libell_d_acheminement": "VILLY LE MARECHAL", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10435"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "411d578a84ab7761d7309a2086ce177116252b79", "fields": {"nom_de_la_commune": "YEVRES LE PETIT", "libell_d_acheminement": "YEVRES LE PETIT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10445"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c78352bd1fd5ea7805f6de622e09aa49677ecfa", "fields": {"nom_de_la_commune": "ALET LES BAINS", "libell_d_acheminement": "ALET LES BAINS", "code_postal": "11580", "coordonnees_gps": [43.0019735527, 2.32970366921], "code_commune_insee": "11008"}, "geometry": {"type": "Point", "coordinates": [2.32970366921, 43.0019735527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92fc878cf4bdb33d19d53a41392400417fb8aeb8", "fields": {"nom_de_la_commune": "VILLEMOYENNE", "libell_d_acheminement": "VILLEMOYENNE", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10419"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc14baeff7090fe9f08b78298c23e22432549716", "fields": {"nom_de_la_commune": "VILLEMORIEN", "libell_d_acheminement": "VILLEMORIEN", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10418"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854aa2300332f06509206edcf2ce295a090e7d81", "fields": {"nom_de_la_commune": "VILLECHETIF", "libell_d_acheminement": "VILLECHETIF", "code_postal": "10410", "coordonnees_gps": [48.2983334554, 4.15487406021], "code_commune_insee": "10412"}, "geometry": {"type": "Point", "coordinates": [4.15487406021, 48.2983334554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43d5cc80a1d7ef1c4116bba88ff33da820d8a64", "fields": {"nom_de_la_commune": "ANTUGNAC", "libell_d_acheminement": "ANTUGNAC", "code_postal": "11190", "coordonnees_gps": [42.9166610889, 2.34707884311], "code_commune_insee": "11010"}, "geometry": {"type": "Point", "coordinates": [2.34707884311, 42.9166610889]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4437b3fb69afaada593f407cfab27f177cf24beb", "fields": {"nom_de_la_commune": "VOIGNY", "libell_d_acheminement": "VOIGNY", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10440"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f6588b983ee5a75fd2edec65dcc9a50297208d", "fields": {"nom_de_la_commune": "AXAT", "libell_d_acheminement": "AXAT", "code_postal": "11140", "coordonnees_gps": [42.7657925357, 2.16672255446], "code_commune_insee": "11021"}, "geometry": {"type": "Point", "coordinates": [2.16672255446, 42.7657925357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07f0fd3965e298fa7b4679801224b2bc317458e2", "fields": {"code_postal": "10270", "code_commune_insee": "10245", "libell_d_acheminement": "MONTAULIN", "ligne_5": "DAUDES", "nom_de_la_commune": "MONTAULIN", "coordonnees_gps": [48.2596266125, 4.24959642717]}, "geometry": {"type": "Point", "coordinates": [4.24959642717, 48.2596266125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f53e5785fbbef28aa22b17221888c3ca9f02d96e", "fields": {"nom_de_la_commune": "MONTMORENCY BEAUFORT", "libell_d_acheminement": "MONTMORENCY BEAUFORT", "code_postal": "10330", "coordonnees_gps": [48.5139476266, 4.53465022681], "code_commune_insee": "10253"}, "geometry": {"type": "Point", "coordinates": [4.53465022681, 48.5139476266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a0a555e5ccb4e7e19012a3ccf6c7b6ea16c1266", "fields": {"nom_de_la_commune": "MONTMARTIN LE HAUT", "libell_d_acheminement": "MONTMARTIN LE HAUT", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10252"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216646dcbf47313f36679288b62cc7537c966223", "fields": {"nom_de_la_commune": "POUAN LES VALLEES", "libell_d_acheminement": "POUAN LES VALLEES", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10299"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a9998ab073591a27a992c57cab3ed931a2124c3", "fields": {"nom_de_la_commune": "PLAINES ST LANGE", "libell_d_acheminement": "PLAINES ST LANGE", "code_postal": "10250", "coordonnees_gps": [48.0053306806, 4.46269020196], "code_commune_insee": "10288"}, "geometry": {"type": "Point", "coordinates": [4.46269020196, 48.0053306806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e21a5821bde604f7f0d5d72c69723b07b5617915", "fields": {"nom_de_la_commune": "PLESSIS BARBUISE", "libell_d_acheminement": "PLESSIS BARBUISE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10291"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce4e62c2a4899bdfe478186b11aa4a9ebb0122fc", "fields": {"nom_de_la_commune": "PAISY COSDON", "libell_d_acheminement": "PAISY COSDON", "code_postal": "10160", "coordonnees_gps": [48.1889637587, 3.74338839008], "code_commune_insee": "10276"}, "geometry": {"type": "Point", "coordinates": [3.74338839008, 48.1889637587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa0a2d3699de72014b24f6e7c1bee9be46eef86", "fields": {"nom_de_la_commune": "ORTILLON", "libell_d_acheminement": "ORTILLON", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10273"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2555f01f6db633623330ec2416b7cb29cf4a847b", "fields": {"nom_de_la_commune": "MONTFEY", "libell_d_acheminement": "MONTFEY", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10247"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcd2df16770c4dea517c6ad86e7ba148cef7d151", "fields": {"nom_de_la_commune": "PAYNS", "libell_d_acheminement": "PAYNS", "code_postal": "10600", "coordonnees_gps": [48.3767482025, 3.98875459714], "code_commune_insee": "10282"}, "geometry": {"type": "Point", "coordinates": [3.98875459714, 48.3767482025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b198e85bc444a4c3e6dd5e20af210fd85122e238", "fields": {"code_postal": "11000", "code_commune_insee": "11069", "libell_d_acheminement": "CARCASSONNE", "ligne_5": "MONTREDON", "nom_de_la_commune": "CARCASSONNE", "coordonnees_gps": [43.2094356992, 2.34683719247]}, "geometry": {"type": "Point", "coordinates": [2.34683719247, 43.2094356992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b639e0124abda98c9a2d9457a09029e4849a01d4", "fields": {"nom_de_la_commune": "BROUSSES ET VILLARET", "libell_d_acheminement": "BROUSSES ET VILLARET", "code_postal": "11390", "coordonnees_gps": [43.3925599417, 2.2792029886], "code_commune_insee": "11052"}, "geometry": {"type": "Point", "coordinates": [2.2792029886, 43.3925599417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb9cc0b26e267641ccce3709bf08a30ad7ad1531", "fields": {"nom_de_la_commune": "BELLEGARDE DU RAZES", "libell_d_acheminement": "BELLEGARDE DU RAZES", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11032"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1dd2662f1f0694d024c03e8e8339f36a2ec2a24", "fields": {"nom_de_la_commune": "LES BRUNELS", "libell_d_acheminement": "LES BRUNELS", "code_postal": "11400", "coordonnees_gps": [43.3333084343, 1.97819883163], "code_commune_insee": "11054"}, "geometry": {"type": "Point", "coordinates": [1.97819883163, 43.3333084343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "426387efad852d6e4e7c2dc15e0f7ecbdf839119", "fields": {"nom_de_la_commune": "CAMBIEURE", "libell_d_acheminement": "CAMBIEURE", "code_postal": "11240", "coordonnees_gps": [43.1188469018, 2.06671991119], "code_commune_insee": "11061"}, "geometry": {"type": "Point", "coordinates": [2.06671991119, 43.1188469018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "732ea2d46aa4392ee79234a563ca6f3374ec0278", "fields": {"nom_de_la_commune": "BREZILHAC", "libell_d_acheminement": "BREZILHAC", "code_postal": "11270", "coordonnees_gps": [43.1822151687, 1.96656505821], "code_commune_insee": "11051"}, "geometry": {"type": "Point", "coordinates": [1.96656505821, 43.1822151687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a6eaf28347ea600eb3afe930e474399beab8f1b", "fields": {"nom_de_la_commune": "BAGNOLES", "libell_d_acheminement": "BAGNOLES", "code_postal": "11600", "coordonnees_gps": [43.3064314328, 2.37487622077], "code_commune_insee": "11025"}, "geometry": {"type": "Point", "coordinates": [2.37487622077, 43.3064314328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d0e90fb7d56fc0c245569a25a66c98608299c6", "fields": {"nom_de_la_commune": "CAPENDU", "libell_d_acheminement": "CAPENDU", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11068"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "265dca9d43089b561f39d13ccb614af4a5cf95c7", "fields": {"nom_de_la_commune": "AZILLE", "libell_d_acheminement": "AZILLE", "code_postal": "11700", "coordonnees_gps": [43.2164263433, 2.63518086038], "code_commune_insee": "11022"}, "geometry": {"type": "Point", "coordinates": [2.63518086038, 43.2164263433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98cb07e6fa3b4bbe56bd5dbadf46927546a1a662", "fields": {"nom_de_la_commune": "BAGES", "libell_d_acheminement": "BAGES", "code_postal": "11100", "coordonnees_gps": [43.1614428329, 3.00768633064], "code_commune_insee": "11024"}, "geometry": {"type": "Point", "coordinates": [3.00768633064, 43.1614428329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1e1046abee39143875de47711a85514e9179a7e", "fields": {"nom_de_la_commune": "ST HILAIRE SOUS ROMILLY", "libell_d_acheminement": "ST HILAIRE SOUS ROMILLY", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10341"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18494f865c50a1d4bcf48510cd1b2c1fcb7ee413", "fields": {"nom_de_la_commune": "ST LEGER PRES TROYES", "libell_d_acheminement": "ST LEGER PRES TROYES", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10344"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1049c9a1f6ccd8ed42043564ab03c0fcc8fc52e6", "fields": {"nom_de_la_commune": "ROSIERES PRES TROYES", "libell_d_acheminement": "ROSIERES PRES TROYES", "code_postal": "10430", "coordonnees_gps": [48.2625722664, 4.06313476584], "code_commune_insee": "10325"}, "geometry": {"type": "Point", "coordinates": [4.06313476584, 48.2625722664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6f062fef8c9a74011249093afc738a1143f0b05", "fields": {"nom_de_la_commune": "RIGNY LA NONNEUSE", "libell_d_acheminement": "RIGNY LA NONNEUSE", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10318"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cb2e8b62dfd28c63bdd8b7abf30ec92bcf28506", "fields": {"nom_de_la_commune": "PRUNAY BELLEVILLE", "libell_d_acheminement": "PRUNAY BELLEVILLE", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10308"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d931fa739d623dd789d2dabf25afcf8dd71f213d", "fields": {"nom_de_la_commune": "LES RICEYS", "libell_d_acheminement": "LES RICEYS", "code_postal": "10340", "coordonnees_gps": [47.9929585912, 4.30782302551], "code_commune_insee": "10317"}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9909b9c137459dd8cb4852e252a1c8c6274ee6f", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10334"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a225295a0bf6f64f1e5a7f9da3affa0b324e9493", "fields": {"nom_de_la_commune": "RUVIGNY", "libell_d_acheminement": "RUVIGNY", "code_postal": "10410", "coordonnees_gps": [48.2983334554, 4.15487406021], "code_commune_insee": "10332"}, "geometry": {"type": "Point", "coordinates": [4.15487406021, 48.2983334554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030ce332d840dd28d57e4dd5ec95e0f6109c9c8a", "fields": {"nom_de_la_commune": "RANCES", "libell_d_acheminement": "RANCES", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10315"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c7f536b0265077f9fe0c7dfd62785eebc930369", "fields": {"nom_de_la_commune": "POUGY", "libell_d_acheminement": "POUGY", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10300"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "740a56825924e94a869cd790d54fcea9a50b9f6a", "fields": {"nom_de_la_commune": "ST REMY SOUS BARBUISE", "libell_d_acheminement": "ST REMY SOUS BARBUISE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10361"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c4e5898bd23476fa7ae782c98402afad72a6e9c", "fields": {"nom_de_la_commune": "ST PARRES LES VAUDES", "libell_d_acheminement": "ST PARRES LES VAUDES", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10358"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61dc32a1034b5f007b959e6a877d407faab7a864", "fields": {"nom_de_la_commune": "ST LOUP DE BUFFIGNY", "libell_d_acheminement": "ST LOUP DE BUFFIGNY", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10347"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7b5d633e51bf479032db286ac4e3f277ca65178", "fields": {"nom_de_la_commune": "TORVILLIERS", "libell_d_acheminement": "TORVILLIERS", "code_postal": "10440", "coordonnees_gps": [48.277445493, 3.98700536658], "code_commune_insee": "10381"}, "geometry": {"type": "Point", "coordinates": [3.98700536658, 48.277445493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78221738dbc870da9096b149f3c8a4b2970ce7c2", "fields": {"nom_de_la_commune": "ST MESMIN", "libell_d_acheminement": "ST MESMIN", "code_postal": "10280", "coordonnees_gps": [48.434575792, 3.91881606144], "code_commune_insee": "10353"}, "geometry": {"type": "Point", "coordinates": [3.91881606144, 48.434575792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a12d9f3b370727ddafdef76428a32f26eb69ad", "fields": {"nom_de_la_commune": "URVILLE", "libell_d_acheminement": "URVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10390"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a4cb797dc23fcdea347e085c278eabd5d748b4a", "fields": {"nom_de_la_commune": "SEMOINE", "libell_d_acheminement": "SEMOINE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10369"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974382520cc31e1a328c9f7edebe94892d8a0178", "fields": {"nom_de_la_commune": "TROUANS", "libell_d_acheminement": "TROUANS", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10386"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccd5b910c2a252846134f592c32693e13e02c56a", "fields": {"nom_de_la_commune": "ST LYE", "libell_d_acheminement": "ST LYE", "code_postal": "10180", "coordonnees_gps": [48.3538390298, 4.00019128511], "code_commune_insee": "10349"}, "geometry": {"type": "Point", "coordinates": [4.00019128511, 48.3538390298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f81f5b53b4f40171ac519085342a8ee192b7e77", "fields": {"nom_de_la_commune": "VAUDES", "libell_d_acheminement": "VAUDES", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10399"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d663ed9bf53ad3a2bedd5fd05d894238e3a89a82", "fields": {"nom_de_la_commune": "LIGNOL LE CHATEAU", "libell_d_acheminement": "LIGNOL LE CHATEAU", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10197"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "165db0d87104b615b402bcd8a300d5873f29cf8b", "fields": {"nom_de_la_commune": "LA LOGE POMBLIN", "libell_d_acheminement": "LA LOGE POMBLIN", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10201"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6efe9d9d69ff08af792d5e05c094d6932dac40", "fields": {"nom_de_la_commune": "LANDREVILLE", "libell_d_acheminement": "LANDREVILLE", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10187"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6383ab96f8167201ff052e4fe92569de96854802", "fields": {"nom_de_la_commune": "LASSICOURT", "libell_d_acheminement": "LASSICOURT", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10189"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfbcfed99ba6ca294cf4c41684085607a9108d4b", "fields": {"nom_de_la_commune": "JAUCOURT", "libell_d_acheminement": "JAUCOURT", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10176"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c53df4ce0c6b4c2c3475e17be18548b9b3fe16d6", "fields": {"nom_de_la_commune": "HERBISSE", "libell_d_acheminement": "HERBISSE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10172"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "196dc98d1aa358ea2b32629895e8e284c4b5a12d", "fields": {"nom_de_la_commune": "JUVANZE", "libell_d_acheminement": "JUVANZE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10183"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a9896fb1ad8eb7aedbf77bc0664019ec6e69b1", "fields": {"nom_de_la_commune": "JEUGNY", "libell_d_acheminement": "JEUGNY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10179"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0173acb97057b99c805398bf6e3f45a29ced59a", "fields": {"nom_de_la_commune": "LAVAU", "libell_d_acheminement": "LAVAU", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10191"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "187dde2da5649c877d11a59b2fc9340cd7de6aee", "fields": {"nom_de_la_commune": "LIREY", "libell_d_acheminement": "LIREY", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10198"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76f081b000037318269de206c3c20f7386caa7ac", "fields": {"code_postal": "11230", "code_commune_insee": "11080", "libell_d_acheminement": "VAL DE LAMBRONNE", "ligne_5": "GUEYTES ET LABASTIDE", "nom_de_la_commune": "VAL DE LAMBRONNE", "coordonnees_gps": [42.9737220665, 2.02689573941]}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e6139067313e37570bd3ac09753af53a4cc2ca", "fields": {"nom_de_la_commune": "CONILHAC CORBIERES", "libell_d_acheminement": "CONILHAC CORBIERES", "code_postal": "11200", "coordonnees_gps": [43.1662010238, 2.78892059953], "code_commune_insee": "11098"}, "geometry": {"type": "Point", "coordinates": [2.78892059953, 43.1662010238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9af9894339aeacab13db2ef35cbd5215f7bc3f4d", "fields": {"nom_de_la_commune": "COURNANEL", "libell_d_acheminement": "COURNANEL", "code_postal": "11300", "coordonnees_gps": [43.0486403902, 2.18021479284], "code_commune_insee": "11105"}, "geometry": {"type": "Point", "coordinates": [2.18021479284, 43.0486403902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed3bfc1c1bf23ab63c9f65fb73f159dbd23ac5d6", "fields": {"nom_de_la_commune": "CHALABRE", "libell_d_acheminement": "CHALABRE", "code_postal": "11230", "coordonnees_gps": [42.9737220665, 2.02689573941], "code_commune_insee": "11091"}, "geometry": {"type": "Point", "coordinates": [2.02689573941, 42.9737220665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dade549021da19d14410d826d1ceb584ee203e34", "fields": {"nom_de_la_commune": "LONGUEVILLE SUR AUBE", "libell_d_acheminement": "LONGUEVILLE SUR AUBE", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10207"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b4deaadfa794ef49aa5114141634ede54833ea", "fields": {"nom_de_la_commune": "MARIGNY LE CHATEL", "libell_d_acheminement": "MARIGNY LE CHATEL", "code_postal": "10350", "coordonnees_gps": [48.3775314816, 3.79587488372], "code_commune_insee": "10224"}, "geometry": {"type": "Point", "coordinates": [3.79587488372, 48.3775314816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06fb4cf89574b30a127fd4a3b8e87bf3344fb97d", "fields": {"nom_de_la_commune": "MARNAY SUR SEINE", "libell_d_acheminement": "MARNAY SUR SEINE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10225"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54d7c302a2923be119f372669ae5fd0c58c5388", "fields": {"nom_de_la_commune": "MERY SUR SEINE", "libell_d_acheminement": "MERY SUR SEINE", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10233"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cd45a030d25eb512981e39160da108ab9c9e86f", "fields": {"nom_de_la_commune": "METZ ROBERT", "libell_d_acheminement": "METZ ROBERT", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10241"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a1098410a8613ada774bff3dea6e7a26bc846eb", "fields": {"nom_de_la_commune": "MEURVILLE", "libell_d_acheminement": "MEURVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10242"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbfde562f2a0b9831f0f9fb6c48bbc79e8c3e4fd", "fields": {"nom_de_la_commune": "LONGSOLS", "libell_d_acheminement": "LONGSOLS", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10206"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0afe063ad86fc34d212b177fe15ee0ea561429bf", "fields": {"nom_de_la_commune": "MAUPAS", "libell_d_acheminement": "MAUPAS", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10229"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d770e9d471db10a452c8e9bf92fd1288df2c2baa", "fields": {"nom_de_la_commune": "MESSON", "libell_d_acheminement": "MESSON", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10240"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aec1916e98b834c9fedb881494d5f25e3c0269a", "fields": {"nom_de_la_commune": "MACEY", "libell_d_acheminement": "MACEY", "code_postal": "10300", "coordonnees_gps": [48.3017985875, 3.94562270532], "code_commune_insee": "10211"}, "geometry": {"type": "Point", "coordinates": [3.94562270532, 48.3017985875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ecdea76596a9388b9206dc01e9ddc682852248e", "fields": {"nom_de_la_commune": "LA MOTHE ACHARD", "libell_d_acheminement": "LA MOTHE ACHARD", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85152"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c322cae47a7169a7691de8f45387a9e3c9a5c405", "fields": {"nom_de_la_commune": "MOUILLERON ST GERMAIN", "libell_d_acheminement": "MOUILLERON ST GERMAIN", "code_postal": "85390", "coordonnees_gps": [46.6728627352, -0.866891813869], "code_commune_insee": "85154"}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ccae890d9e28f73f2bdc7fcc91ff1dd943f73a", "fields": {"nom_de_la_commune": "VEZINNES", "libell_d_acheminement": "VEZINNES", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89447"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5acf42b67a5a7ecdcb4c39cd84040e6b8835fa23", "fields": {"nom_de_la_commune": "VILLEMANOCHE", "libell_d_acheminement": "VILLEMANOCHE", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89456"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba7d566dcbbbd0ceccb39535746b7ed2bd48b4cc", "fields": {"nom_de_la_commune": "VILLEROY", "libell_d_acheminement": "VILLEROY", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89466"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343b4e3d89b267334991f8ec2cc7aab9519afe0c", "fields": {"nom_de_la_commune": "VILLETHIERRY", "libell_d_acheminement": "VILLETHIERRY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89467"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3036587d4f22b8735997294e2baa71f274e5b813", "fields": {"code_postal": "89260", "code_commune_insee": "89469", "libell_d_acheminement": "PERCENEIGE", "ligne_5": "VERTILLY", "nom_de_la_commune": "PERCENEIGE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92e5fc3f4a0a8f76f05c5f1c582f1fe766878c67", "fields": {"nom_de_la_commune": "BERMONT", "libell_d_acheminement": "BERMONT", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90011"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77668e5002092238808e9907838914a8a6338d0f", "fields": {"nom_de_la_commune": "BETHONVILLIERS", "libell_d_acheminement": "BETHONVILLIERS", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90013"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28e9bcdedff3c12448f704254cb8f8cafac65d79", "fields": {"nom_de_la_commune": "CHAVANATTE", "libell_d_acheminement": "CHAVANATTE", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90024"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fde7c5ad6255e4e88868b8ed705dfcd47aadfec4", "fields": {"nom_de_la_commune": "ELOIE", "libell_d_acheminement": "ELOIE", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90037"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a56287a36236e49256ef820bebf9cfb321b099", "fields": {"nom_de_la_commune": "FRAIS", "libell_d_acheminement": "FRAIS", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90050"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a3e627ca5bf39e655a46a6ce0d18b9ca202e3fb", "fields": {"nom_de_la_commune": "FROIDEFONTAINE", "libell_d_acheminement": "FROIDEFONTAINE", "code_postal": "90140", "coordonnees_gps": [47.5713832567, 6.93555749389], "code_commune_insee": "90051"}, "geometry": {"type": "Point", "coordinates": [6.93555749389, 47.5713832567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c1e9a0ed71f16bb7c8251a72853982abdbf365f", "fields": {"nom_de_la_commune": "GIROMAGNY", "libell_d_acheminement": "GIROMAGNY", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90052"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5a275773d590b2b82a8ff3126bd4cb6534ef7bc", "fields": {"nom_de_la_commune": "LAGRANGE", "libell_d_acheminement": "LAGRANGE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90060"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65e83e6c25c7a824a439152eab8ed14c596ce053", "fields": {"nom_de_la_commune": "LEVAL", "libell_d_acheminement": "LEVAL", "code_postal": "90110", "coordonnees_gps": [47.7312446096, 6.96557108211], "code_commune_insee": "90066"}, "geometry": {"type": "Point", "coordinates": [6.96557108211, 47.7312446096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "898a0e7e538b55d68109cb06a1314b5ed0558453", "fields": {"nom_de_la_commune": "NOVILLARD", "libell_d_acheminement": "NOVILLARD", "code_postal": "90340", "coordonnees_gps": [47.6213054353, 6.94143825655], "code_commune_insee": "90074"}, "geometry": {"type": "Point", "coordinates": [6.94143825655, 47.6213054353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0334c88ca0458a4bed7682083b5ff5430dea2c9f", "fields": {"nom_de_la_commune": "OFFEMONT", "libell_d_acheminement": "OFFEMONT", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90075"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d990028caad076afd72235302ede79ecf4dcb0d", "fields": {"nom_de_la_commune": "PETITMAGNY", "libell_d_acheminement": "PETITMAGNY", "code_postal": "90170", "coordonnees_gps": [47.7266319105, 6.91618940907], "code_commune_insee": "90079"}, "geometry": {"type": "Point", "coordinates": [6.91618940907, 47.7266319105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "546139c7c422bf7cfb585af433ce9b45ba27b722", "fields": {"nom_de_la_commune": "PHAFFANS", "libell_d_acheminement": "PHAFFANS", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90080"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70c9b5a9d8af51722a13e38774da52e654d614c4", "fields": {"nom_de_la_commune": "ROPPE", "libell_d_acheminement": "ROPPE", "code_postal": "90380", "coordonnees_gps": [47.6788699997, 6.91110068518], "code_commune_insee": "90087"}, "geometry": {"type": "Point", "coordinates": [6.91110068518, 47.6788699997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c76e39ca678147e7a7e48ac3316b6314333c2ffe", "fields": {"nom_de_la_commune": "ROUGEMONT LE CHATEAU", "libell_d_acheminement": "ROUGEMONT LE CHATEAU", "code_postal": "90110", "coordonnees_gps": [47.7312446096, 6.96557108211], "code_commune_insee": "90089"}, "geometry": {"type": "Point", "coordinates": [6.96557108211, 47.7312446096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb63bfdf143ed8ed3715827ca4bd4c470012368b", "fields": {"nom_de_la_commune": "SERMAMAGNY", "libell_d_acheminement": "SERMAMAGNY", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90093"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc706d2332faba0c2fbf0dae61178dd795cd3068", "fields": {"nom_de_la_commune": "SEVENANS", "libell_d_acheminement": "SEVENANS", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90094"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d94475ef911758af23c8b2d82f316ff8ec841c8", "fields": {"nom_de_la_commune": "URCEREY", "libell_d_acheminement": "URCEREY", "code_postal": "90800", "coordonnees_gps": [47.6081948089, 6.81416858312], "code_commune_insee": "90098"}, "geometry": {"type": "Point", "coordinates": [6.81416858312, 47.6081948089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d410126e8ba1f712082809d547050c27c7c1f9d", "fields": {"nom_de_la_commune": "ABBEVILLE LA RIVIERE", "libell_d_acheminement": "ABBEVILLE LA RIVIERE", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91001"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "859ddb31e9150fd8e6759195b9dd16fb8db424d7", "fields": {"nom_de_la_commune": "ANGERVILLIERS", "libell_d_acheminement": "ANGERVILLIERS", "code_postal": "91470", "coordonnees_gps": [48.6369515369, 2.06831882052], "code_commune_insee": "91017"}, "geometry": {"type": "Point", "coordinates": [2.06831882052, 48.6369515369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0272ac1d91e642c318aed61a2f603f98a2270213", "fields": {"nom_de_la_commune": "AVRAINVILLE", "libell_d_acheminement": "AVRAINVILLE", "code_postal": "91630", "coordonnees_gps": [48.560156386, 2.2827757217], "code_commune_insee": "91041"}, "geometry": {"type": "Point", "coordinates": [2.2827757217, 48.560156386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf88a13230dd176f8dc5fa5d5b0edc86b64f490f", "fields": {"nom_de_la_commune": "BOUTERVILLIERS", "libell_d_acheminement": "BOUTERVILLIERS", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91098"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ee6c55ca73cfeda7f722287bd75ca7a2e283d46", "fields": {"nom_de_la_commune": "BRETIGNY SUR ORGE", "libell_d_acheminement": "BRETIGNY SUR ORGE", "code_postal": "91220", "coordonnees_gps": [48.6039242304, 2.3152152775], "code_commune_insee": "91103"}, "geometry": {"type": "Point", "coordinates": [2.3152152775, 48.6039242304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb77079f1200e759db17d10aa5fd330b6d24847", "fields": {"nom_de_la_commune": "CHALO ST MARS", "libell_d_acheminement": "CHALO ST MARS", "code_postal": "91780", "coordonnees_gps": [48.4201119171, 2.04444826512], "code_commune_insee": "91130"}, "geometry": {"type": "Point", "coordinates": [2.04444826512, 48.4201119171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "225513c364ffe98d01a798359f371e7075dcc1ef", "fields": {"nom_de_la_commune": "CHEVANNES", "libell_d_acheminement": "CHEVANNES", "code_postal": "91750", "coordonnees_gps": [48.5147670198, 2.45459432239], "code_commune_insee": "91159"}, "geometry": {"type": "Point", "coordinates": [2.45459432239, 48.5147670198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f175e76fcf30d23cdd42603e224947bb2f1c9e0", "fields": {"nom_de_la_commune": "LE COUDRAY MONTCEAUX", "libell_d_acheminement": "LE COUDRAY MONTCEAUX", "code_postal": "91830", "coordonnees_gps": [48.5482208788, 2.48758633681], "code_commune_insee": "91179"}, "geometry": {"type": "Point", "coordinates": [2.48758633681, 48.5482208788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57517ebffad49a1a3cbe11a5fa9c49c89d08032", "fields": {"nom_de_la_commune": "COURCOURONNES", "libell_d_acheminement": "COURCOURONNES", "code_postal": "91080", "coordonnees_gps": [48.6218955408, 2.41247245997], "code_commune_insee": "91182"}, "geometry": {"type": "Point", "coordinates": [2.41247245997, 48.6218955408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6050aca11f78c25ef7a4adcc9d89c83d5380d25", "fields": {"nom_de_la_commune": "CROSNE", "libell_d_acheminement": "CROSNE", "code_postal": "91560", "coordonnees_gps": [48.7201603122, 2.46256788969], "code_commune_insee": "91191"}, "geometry": {"type": "Point", "coordinates": [2.46256788969, 48.7201603122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5cdf294d39fd0c292639efcf22f7f53f7391f2d", "fields": {"nom_de_la_commune": "ETIOLLES", "libell_d_acheminement": "ETIOLLES", "code_postal": "91450", "coordonnees_gps": [48.6546477863, 2.47449221609], "code_commune_insee": "91225"}, "geometry": {"type": "Point", "coordinates": [2.47449221609, 48.6546477863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "185e74aa8e6808bded5bcca5870b5654e03291fb", "fields": {"nom_de_la_commune": "EVRY", "libell_d_acheminement": "EVRY", "code_postal": "91000", "coordonnees_gps": [48.6292552888, 2.44052205012], "code_commune_insee": "91228"}, "geometry": {"type": "Point", "coordinates": [2.44052205012, 48.6292552888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e14df18907b5364bdca77ab348462855ff00a46c", "fields": {"nom_de_la_commune": "GOMETZ LE CHATEL", "libell_d_acheminement": "GOMETZ LE CHATEL", "code_postal": "91940", "coordonnees_gps": [48.6746009432, 2.16779886217], "code_commune_insee": "91275"}, "geometry": {"type": "Point", "coordinates": [2.16779886217, 48.6746009432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bd849c0ad34f59d870ba42ef3bbf37d435040a1", "fields": {"nom_de_la_commune": "LES GRANGES LE ROI", "libell_d_acheminement": "LES GRANGES LE ROI", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91284"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dfffa58f88ecee40d4d515536d94333139bbf1a", "fields": {"nom_de_la_commune": "GUIBEVILLE", "libell_d_acheminement": "GUIBEVILLE", "code_postal": "91630", "coordonnees_gps": [48.560156386, 2.2827757217], "code_commune_insee": "91292"}, "geometry": {"type": "Point", "coordinates": [2.2827757217, 48.560156386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "982871244d88ac8746e30e09e2f5e7d1021ee0a1", "fields": {"nom_de_la_commune": "LARDY", "libell_d_acheminement": "LARDY", "code_postal": "91510", "coordonnees_gps": [48.5117436099, 2.26036943723], "code_commune_insee": "91330"}, "geometry": {"type": "Point", "coordinates": [2.26036943723, 48.5117436099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e438db14f9aa6328d1fa8d10a0af576f5de460f", "fields": {"nom_de_la_commune": "LEUVILLE SUR ORGE", "libell_d_acheminement": "LEUVILLE SUR ORGE", "code_postal": "91310", "coordonnees_gps": [48.6316590424, 2.26650021218], "code_commune_insee": "91333"}, "geometry": {"type": "Point", "coordinates": [2.26650021218, 48.6316590424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50f20d43dd905c0b703b120008bcdf46a95e2ea3", "fields": {"nom_de_la_commune": "MARCOUSSIS", "libell_d_acheminement": "MARCOUSSIS", "code_postal": "91460", "coordonnees_gps": [48.6460859736, 2.2061891096], "code_commune_insee": "91363"}, "geometry": {"type": "Point", "coordinates": [2.2061891096, 48.6460859736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f7c4c1a264852577ad122f1080d9299b8de38f", "fields": {"nom_de_la_commune": "MEROBERT", "libell_d_acheminement": "MEROBERT", "code_postal": "91780", "coordonnees_gps": [48.4201119171, 2.04444826512], "code_commune_insee": "91393"}, "geometry": {"type": "Point", "coordinates": [2.04444826512, 48.4201119171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c539c20eebdedee1ee412714b564f24f2c8939", "fields": {"nom_de_la_commune": "LES MOLIERES", "libell_d_acheminement": "LES MOLIERES", "code_postal": "91470", "coordonnees_gps": [48.6369515369, 2.06831882052], "code_commune_insee": "91411"}, "geometry": {"type": "Point", "coordinates": [2.06831882052, 48.6369515369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ae12051b57ad67d312ccfbded0385674145543a", "fields": {"nom_de_la_commune": "MORSANG SUR ORGE", "libell_d_acheminement": "MORSANG SUR ORGE", "code_postal": "91390", "coordonnees_gps": [48.6562305326, 2.35134021542], "code_commune_insee": "91434"}, "geometry": {"type": "Point", "coordinates": [2.35134021542, 48.6562305326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc511e311fd5bde9f6fd0f3e0b0764666715f53", "fields": {"nom_de_la_commune": "ONCY SUR ECOLE", "libell_d_acheminement": "ONCY SUR ECOLE", "code_postal": "91490", "coordonnees_gps": [48.4186455247, 2.46228788074], "code_commune_insee": "91463"}, "geometry": {"type": "Point", "coordinates": [2.46228788074, 48.4186455247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9b6c7ded0575307e86ff00a8253ef6f121131e7", "fields": {"nom_de_la_commune": "ORSAY", "libell_d_acheminement": "ORSAY", "code_postal": "91400", "coordonnees_gps": [48.7079533558, 2.15419618195], "code_commune_insee": "91471"}, "geometry": {"type": "Point", "coordinates": [2.15419618195, 48.7079533558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeff21d8d127f40d4a2d910114cb94db9d4ce5af", "fields": {"code_postal": "91400", "code_commune_insee": "91471", "libell_d_acheminement": "ORSAY", "ligne_5": "ORSIGNY", "nom_de_la_commune": "ORSAY", "coordonnees_gps": [48.7079533558, 2.15419618195]}, "geometry": {"type": "Point", "coordinates": [2.15419618195, 48.7079533558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed86fb84af04906e5a1abbaf5eb4ca81aa98e1e", "fields": {"nom_de_la_commune": "RICHARVILLE", "libell_d_acheminement": "RICHARVILLE", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91519"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f912751f2a566e267b193ab26ea6cdeb64cad1e", "fields": {"nom_de_la_commune": "ST CYR LA RIVIERE", "libell_d_acheminement": "ST CYR LA RIVIERE", "code_postal": "91690", "coordonnees_gps": [48.3609334789, 2.12492559974], "code_commune_insee": "91544"}, "geometry": {"type": "Point", "coordinates": [2.12492559974, 48.3609334789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fac5b68104edec6c258b9f7f51c316ef577b073", "fields": {"nom_de_la_commune": "ST GERMAIN LES ARPAJON", "libell_d_acheminement": "ST GERMAIN LES ARPAJON", "code_postal": "91180", "coordonnees_gps": [48.5987466717, 2.26387037566], "code_commune_insee": "91552"}, "geometry": {"type": "Point", "coordinates": [2.26387037566, 48.5987466717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55b5c9342540a7689cdbccdfc77b509db341e194", "fields": {"nom_de_la_commune": "ST MICHEL SUR ORGE", "libell_d_acheminement": "ST MICHEL SUR ORGE", "code_postal": "91240", "coordonnees_gps": [48.632621365, 2.31165782908], "code_commune_insee": "91570"}, "geometry": {"type": "Point", "coordinates": [2.31165782908, 48.632621365]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f92a9a15c43888319d9505a4699949aaf4b827a", "fields": {"nom_de_la_commune": "SAINTRY SUR SEINE", "libell_d_acheminement": "SAINTRY SUR SEINE", "code_postal": "91250", "coordonnees_gps": [48.6186905603, 2.50655101918], "code_commune_insee": "91577"}, "geometry": {"type": "Point", "coordinates": [2.50655101918, 48.6186905603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c21d4c558bf5e4cd1ac661d3b34e0ff19fc1380", "fields": {"nom_de_la_commune": "SOISY SUR ECOLE", "libell_d_acheminement": "SOISY SUR ECOLE", "code_postal": "91840", "coordonnees_gps": [48.4785443532, 2.48152885944], "code_commune_insee": "91599"}, "geometry": {"type": "Point", "coordinates": [2.48152885944, 48.4785443532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b1171f72b0076d69dbc933b46d6ae2121693973", "fields": {"nom_de_la_commune": "VERT LE GRAND", "libell_d_acheminement": "VERT LE GRAND", "code_postal": "91810", "coordonnees_gps": [48.5839284064, 2.36727037813], "code_commune_insee": "91648"}, "geometry": {"type": "Point", "coordinates": [2.36727037813, 48.5839284064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8952717f23db123f372f327302b586c2fe90244a", "fields": {"nom_de_la_commune": "VERT LE PETIT", "libell_d_acheminement": "VERT LE PETIT", "code_postal": "91710", "coordonnees_gps": [48.5525868763, 2.36598245863], "code_commune_insee": "91649"}, "geometry": {"type": "Point", "coordinates": [2.36598245863, 48.5525868763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88cae89ddc8408631cbd1e891f9779e21aba3951", "fields": {"nom_de_la_commune": "VILLECONIN", "libell_d_acheminement": "VILLECONIN", "code_postal": "91580", "coordonnees_gps": [48.493877819, 2.18164362927], "code_commune_insee": "91662"}, "geometry": {"type": "Point", "coordinates": [2.18164362927, 48.493877819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec860165d35c939e951c28a3cbd39ecb111ca85", "fields": {"nom_de_la_commune": "VILLEJUST", "libell_d_acheminement": "VILLEJUST", "code_postal": "91140", "coordonnees_gps": [48.6888194138, 2.23030867411], "code_commune_insee": "91666"}, "geometry": {"type": "Point", "coordinates": [2.23030867411, 48.6888194138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e92ba4315123128a97f750f220508fa1fc6a4e2", "fields": {"nom_de_la_commune": "LES ULIS", "libell_d_acheminement": "LES ULIS", "code_postal": "91940", "coordonnees_gps": [48.6746009432, 2.16779886217], "code_commune_insee": "91692"}, "geometry": {"type": "Point", "coordinates": [2.16779886217, 48.6746009432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "864ef5afa13bdd762da68177ea6f88a24ed5a90c", "fields": {"nom_de_la_commune": "ANTONY", "libell_d_acheminement": "ANTONY", "code_postal": "92160", "coordonnees_gps": [48.7498937997, 2.29904436066], "code_commune_insee": "92002"}, "geometry": {"type": "Point", "coordinates": [2.29904436066, 48.7498937997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7070beae69edad1902b7688c7728d36d0a14dc4e", "fields": {"nom_de_la_commune": "BAGNEUX", "libell_d_acheminement": "BAGNEUX", "code_postal": "92220", "coordonnees_gps": [48.7988494711, 2.30977111957], "code_commune_insee": "92007"}, "geometry": {"type": "Point", "coordinates": [2.30977111957, 48.7988494711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bdaa9d785e5ea21a5df92d9bc6bc266fee89c95", "fields": {"code_postal": "92290", "code_commune_insee": "92019", "libell_d_acheminement": "CHATENAY MALABRY", "ligne_5": "LA BUTTE ROUGE", "nom_de_la_commune": "CHATENAY MALABRY", "coordonnees_gps": [48.7683241133, 2.26382535631]}, "geometry": {"type": "Point", "coordinates": [2.26382535631, 48.7683241133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d565d5441b0a8c94623bb0c3845adb4cf7272231", "fields": {"nom_de_la_commune": "CHAVILLE", "libell_d_acheminement": "CHAVILLE", "code_postal": "92370", "coordonnees_gps": [48.8072497774, 2.1917994859], "code_commune_insee": "92022"}, "geometry": {"type": "Point", "coordinates": [2.1917994859, 48.8072497774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54c36f79a4154901e0f22e08b1394f2aa03e3fe", "fields": {"nom_de_la_commune": "BAILLY ROMAINVILLIERS", "libell_d_acheminement": "BAILLY ROMAINVILLIERS", "code_postal": "77700", "coordonnees_gps": [48.8632419628, 2.79709040394], "code_commune_insee": "77018"}, "geometry": {"type": "Point", "coordinates": [2.79709040394, 48.8632419628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e7a37006ec4ec4813edf58010f28fc9179d6c9b", "fields": {"nom_de_la_commune": "BALLOY", "libell_d_acheminement": "BALLOY", "code_postal": "77118", "coordonnees_gps": [48.3962434685, 3.16889442918], "code_commune_insee": "77019"}, "geometry": {"type": "Point", "coordinates": [3.16889442918, 48.3962434685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df95c2b87aacee75ec60896533e78c944cea9fcd", "fields": {"nom_de_la_commune": "BARBIZON", "libell_d_acheminement": "BARBIZON", "code_postal": "77630", "coordonnees_gps": [48.4243787367, 2.57257810234], "code_commune_insee": "77022"}, "geometry": {"type": "Point", "coordinates": [2.57257810234, 48.4243787367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cb00c69cdb6a2e6959ebbd4e973c97bb6ba5290", "fields": {"nom_de_la_commune": "BEAUTHEIL", "libell_d_acheminement": "BEAUTHEIL", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77028"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0804034a50eb409eeac6f4edb332ec24f2909a1b", "fields": {"nom_de_la_commune": "BEZALLES", "libell_d_acheminement": "BEZALLES", "code_postal": "77970", "coordonnees_gps": [48.6629667533, 3.14093688522], "code_commune_insee": "77033"}, "geometry": {"type": "Point", "coordinates": [3.14093688522, 48.6629667533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e931f0747312f22df366ea58ed51e8eaf100f23", "fields": {"nom_de_la_commune": "BOISSISE LE ROI", "libell_d_acheminement": "BOISSISE LE ROI", "code_postal": "77310", "coordonnees_gps": [48.5292083362, 2.53978127085], "code_commune_insee": "77040"}, "geometry": {"type": "Point", "coordinates": [2.53978127085, 48.5292083362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e3d4476d43b9e0b4559cfa3c3f02ddee81c229", "fields": {"nom_de_la_commune": "BOISSY AUX CAILLES", "libell_d_acheminement": "BOISSY AUX CAILLES", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77041"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9e3f453e1367d2f1cc6de428b3bdd19747beb0", "fields": {"nom_de_la_commune": "BOISSY LE CHATEL", "libell_d_acheminement": "BOISSY LE CHATEL", "code_postal": "77169", "coordonnees_gps": [48.8249765475, 3.16311202199], "code_commune_insee": "77042"}, "geometry": {"type": "Point", "coordinates": [3.16311202199, 48.8249765475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6595dcb239827a9dee3437590ba453041385dcda", "fields": {"nom_de_la_commune": "BOMBON", "libell_d_acheminement": "BOMBON", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77044"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de4ce91a81b4739cea1b43cc6e431a9d6c07447", "fields": {"nom_de_la_commune": "BOUTIGNY", "libell_d_acheminement": "BOUTIGNY", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77049"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b49dd7de00b6f6a622cbffe226fc7c3c83a3024", "fields": {"nom_de_la_commune": "BRIE COMTE ROBERT", "libell_d_acheminement": "BRIE COMTE ROBERT", "code_postal": "77170", "coordonnees_gps": [48.6935707994, 2.63183347569], "code_commune_insee": "77053"}, "geometry": {"type": "Point", "coordinates": [2.63183347569, 48.6935707994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cc9153b6d8e3a4f4cf52c3c8e9c4694bcb30a6d", "fields": {"code_postal": "77600", "code_commune_insee": "77059", "libell_d_acheminement": "BUSSY ST MARTIN", "ligne_5": "RENTILLY", "nom_de_la_commune": "BUSSY ST MARTIN", "coordonnees_gps": [48.8361794738, 2.73226890342]}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "168745cc7579faae19a3f9bc46adff149efdeff8", "fields": {"nom_de_la_commune": "CESSON", "libell_d_acheminement": "CESSON", "code_postal": "77240", "coordonnees_gps": [48.5645874906, 2.60004351705], "code_commune_insee": "77067"}, "geometry": {"type": "Point", "coordinates": [2.60004351705, 48.5645874906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3d8734534c22fd42394cb33407e26847849e3d9", "fields": {"nom_de_la_commune": "CHAINTREAUX", "libell_d_acheminement": "CHAINTREAUX", "code_postal": "77460", "coordonnees_gps": [48.1889258767, 2.77893143311], "code_commune_insee": "77071"}, "geometry": {"type": "Point", "coordinates": [2.77893143311, 48.1889258767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8189d0473ab6a8c8dec77e96376197fc31d8d303", "fields": {"nom_de_la_commune": "CHAMPCENEST", "libell_d_acheminement": "CHAMPCENEST", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77080"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27279c264ffae52fa386d39e14b2201bf5707543", "fields": {"nom_de_la_commune": "CHAMPS SUR MARNE", "libell_d_acheminement": "CHAMPS SUR MARNE", "code_postal": "77420", "coordonnees_gps": [48.8481383447, 2.59602539852], "code_commune_insee": "77083"}, "geometry": {"type": "Point", "coordinates": [2.59602539852, 48.8481383447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "231ffa8cae6f94efa6fa19aae26fa409a2442279", "fields": {"code_postal": "77320", "code_commune_insee": "77093", "libell_d_acheminement": "LA CHAPELLE MOUTILS", "ligne_5": "MOUTILS", "nom_de_la_commune": "LA CHAPELLE MOUTILS", "coordonnees_gps": [48.7632652303, 3.31883214084]}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4be9bc782257f75fec5567e623bfa97e67b2d238", "fields": {"nom_de_la_commune": "CHARNY", "libell_d_acheminement": "CHARNY", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77095"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b9466f350637123ec8c7ca744f2ac9fe0eb145f", "fields": {"nom_de_la_commune": "CHATEAUBLEAU", "libell_d_acheminement": "CHATEAUBLEAU", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77098"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24a079347e71a16769fcf47c4344560381c4948", "fields": {"nom_de_la_commune": "CHATEAU LANDON", "libell_d_acheminement": "CHATEAU LANDON", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77099"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff1fed85eb53c80ddc470e3e8bd6aa3f5a4b32d", "fields": {"nom_de_la_commune": "CHELLES", "libell_d_acheminement": "CHELLES", "code_postal": "77500", "coordonnees_gps": [48.8836002438, 2.59608427563], "code_commune_insee": "77108"}, "geometry": {"type": "Point", "coordinates": [2.59608427563, 48.8836002438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d826e7181454b863f1878aab1bab66feb82f5f6f", "fields": {"nom_de_la_commune": "CHEVRY EN SEREINE", "libell_d_acheminement": "CHEVRY EN SEREINE", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77115"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cf3f37efcfa7b04b6f2436589e2cc1e13995db6", "fields": {"nom_de_la_commune": "CONCHES SUR GONDOIRE", "libell_d_acheminement": "CONCHES SUR GONDOIRE", "code_postal": "77600", "coordonnees_gps": [48.8361794738, 2.73226890342], "code_commune_insee": "77124"}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0883a27ad0be1831d1de0ae6f7e3eb1d7d915ffe", "fields": {"nom_de_la_commune": "COUPVRAY", "libell_d_acheminement": "COUPVRAY", "code_postal": "77700", "coordonnees_gps": [48.8632419628, 2.79709040394], "code_commune_insee": "77132"}, "geometry": {"type": "Point", "coordinates": [2.79709040394, 48.8632419628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed6547da1dd33ed608900c0bd5185124ac20a02", "fields": {"nom_de_la_commune": "CRECY LA CHAPELLE", "libell_d_acheminement": "CRECY LA CHAPELLE", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77142"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c484184431c5e9e323fda91129e7adb60ed4bb3", "fields": {"nom_de_la_commune": "CREVECOEUR EN BRIE", "libell_d_acheminement": "CREVECOEUR EN BRIE", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77144"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71bc4b79b17e23ed50bd3a5d95e4643ebc26c9e9", "fields": {"nom_de_la_commune": "CUISY", "libell_d_acheminement": "CUISY", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77150"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1d1d939ae10c289bd9817f857b31b8d6e38441e", "fields": {"nom_de_la_commune": "DAGNY", "libell_d_acheminement": "DAGNY", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77151"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a853b842485c42c6f5bbc78ed6681db38a109905", "fields": {"nom_de_la_commune": "DAMPMART", "libell_d_acheminement": "DAMPMART", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77155"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee16d15f6821f54fa6dc07e3344abfdf76143194", "fields": {"nom_de_la_commune": "DHUISY", "libell_d_acheminement": "DHUISY", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77157"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74dfaf7dd02ccf22f4bed1ac3f1188096c203bc7", "fields": {"nom_de_la_commune": "DOUE", "libell_d_acheminement": "DOUE", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77162"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d77fa7304117075233021ba4af79c5f25fccf4e", "fields": {"nom_de_la_commune": "EGREVILLE", "libell_d_acheminement": "EGREVILLE", "code_postal": "77620", "coordonnees_gps": [48.1721615922, 2.86730865487], "code_commune_insee": "77168"}, "geometry": {"type": "Point", "coordinates": [2.86730865487, 48.1721615922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bc3f17a3a4ade73a882efe0c87992962c7eec16", "fields": {"nom_de_la_commune": "ESBLY", "libell_d_acheminement": "ESBLY", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77171"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d935148a5275c30db8a7641174404ab0048df96", "fields": {"nom_de_la_commune": "FAVIERES", "libell_d_acheminement": "FAVIERES", "code_postal": "77220", "coordonnees_gps": [48.7441435085, 2.75833565592], "code_commune_insee": "77177"}, "geometry": {"type": "Point", "coordinates": [2.75833565592, 48.7441435085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "721b5d323e3238fc7841598dc21ed22be37d3e32", "fields": {"nom_de_la_commune": "FONTAINEBLEAU", "libell_d_acheminement": "FONTAINEBLEAU", "code_postal": "77300", "coordonnees_gps": [48.406592674, 2.68078145585], "code_commune_insee": "77186"}, "geometry": {"type": "Point", "coordinates": [2.68078145585, 48.406592674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ad372f88106b9415b0c44e40b28755d9824dc6", "fields": {"nom_de_la_commune": "FONTENAY TRESIGNY", "libell_d_acheminement": "FONTENAY TRESIGNY", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77192"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc59e9a823f618fb850f9ea43aa85c96c095ce7", "fields": {"nom_de_la_commune": "FORFRY", "libell_d_acheminement": "FORFRY", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77193"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21a75d22f2e97c1148937649b2fe8960caacfee1", "fields": {"nom_de_la_commune": "FOUJU", "libell_d_acheminement": "FOUJU", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77195"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8fbf9e381358b0cd9b7f020d63d5daf4143ca28", "fields": {"nom_de_la_commune": "VERNET LA VARENNE", "libell_d_acheminement": "VERNET LA VARENNE", "code_postal": "63580", "coordonnees_gps": [45.4754194091, 3.44446470636], "code_commune_insee": "63448"}, "geometry": {"type": "Point", "coordinates": [3.44446470636, 45.4754194091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2cd935d531bb3c38f9cf6b6a68a28bde3e87686", "fields": {"nom_de_la_commune": "VEYRE MONTON", "libell_d_acheminement": "VEYRE MONTON", "code_postal": "63960", "coordonnees_gps": [45.6733479209, 3.16361558337], "code_commune_insee": "63455"}, "geometry": {"type": "Point", "coordinates": [3.16361558337, 45.6733479209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a52970a2bf6d4d9cfdc42fb9d3068bbc058144", "fields": {"code_postal": "63270", "code_commune_insee": "63457", "libell_d_acheminement": "VIC LE COMTE", "ligne_5": "LONGUES", "nom_de_la_commune": "VIC LE COMTE", "coordonnees_gps": [45.6408260002, 3.30100691361]}, "geometry": {"type": "Point", "coordinates": [3.30100691361, 45.6408260002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58be119b236730e48b9b941c72d1d909885f70d3", "fields": {"nom_de_la_commune": "VILLOSANGES", "libell_d_acheminement": "VILLOSANGES", "code_postal": "63380", "coordonnees_gps": [45.8787287136, 2.62207258462], "code_commune_insee": "63460"}, "geometry": {"type": "Point", "coordinates": [2.62207258462, 45.8787287136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffec80514e94f102e0a85f3303a16fdc7ab3d597", "fields": {"nom_de_la_commune": "VOLVIC", "libell_d_acheminement": "VOLVIC", "code_postal": "63530", "coordonnees_gps": [45.855002413, 3.02081571111], "code_commune_insee": "63470"}, "geometry": {"type": "Point", "coordinates": [3.02081571111, 45.855002413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aacf9e0e21a3934b145b6ff20fda1bef9fbcc49", "fields": {"nom_de_la_commune": "YOUX", "libell_d_acheminement": "YOUX", "code_postal": "63700", "coordonnees_gps": [46.1865575466, 2.8334076893], "code_commune_insee": "63471"}, "geometry": {"type": "Point", "coordinates": [2.8334076893, 46.1865575466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5269e8a680950338380f0acf0e6077e42a226bf", "fields": {"nom_de_la_commune": "ABERE", "libell_d_acheminement": "ABERE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64002"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b70e7e7d7da9fb5d667440365b99ecfccaf61c6", "fields": {"nom_de_la_commune": "ABITAIN", "libell_d_acheminement": "ABITAIN", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64004"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff6af8e3a9abf87b64ebe05d0f6ac395a23338e8", "fields": {"nom_de_la_commune": "ACCOUS", "libell_d_acheminement": "ACCOUS", "code_postal": "64490", "coordonnees_gps": [42.9480307677, -0.596909627017], "code_commune_insee": "64006"}, "geometry": {"type": "Point", "coordinates": [-0.596909627017, 42.9480307677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823852d6b06d535871e61cbed7447f9b05e8d92c", "fields": {"nom_de_la_commune": "AHAXE ALCIETTE BASCASSAN", "libell_d_acheminement": "AHAXE ALCIETTE BASCASSAN", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64008"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27321c2b3c5e1c608e2c548cf6b2032e7fb140bb", "fields": {"nom_de_la_commune": "ANGAIS", "libell_d_acheminement": "ANGAIS", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64023"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa78d132feddda836310c3282e15c5c609799e08", "fields": {"nom_de_la_commune": "ARAMITS", "libell_d_acheminement": "ARAMITS", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64029"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1f1e965ec65d3a193942d52f841e55d25e622cf", "fields": {"nom_de_la_commune": "ARNOS", "libell_d_acheminement": "ARNOS", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64048"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a103f77b63a90bbf83e549c13c3ba1fda7fc997f", "fields": {"code_postal": "64120", "code_commune_insee": "64049", "libell_d_acheminement": "AROUE ITHOROTS OLHAIBY", "ligne_5": "ITHOROTS OLHAIBY", "nom_de_la_commune": "AROUE ITHOROTS OLHAIBY", "coordonnees_gps": [43.3050617762, -1.05477457972]}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c762cd8a26384f97aa3522e8ffcad34326164a4", "fields": {"nom_de_la_commune": "ASCARAT", "libell_d_acheminement": "ASCARAT", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64066"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92b9708c393e29bc65863ab8c48d802d0e815120", "fields": {"nom_de_la_commune": "ASSON", "libell_d_acheminement": "ASSON", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64068"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41833b8ce54428f7c348d059ef7fbeb7affdd760", "fields": {"nom_de_la_commune": "AURIAC", "libell_d_acheminement": "AURIAC", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64078"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9830372b3ca4bada378cb2e38a32b2e16c6cd62", "fields": {"nom_de_la_commune": "AUSSURUCQ", "libell_d_acheminement": "AUSSURUCQ", "code_postal": "64130", "coordonnees_gps": [43.2026932583, -0.893255791642], "code_commune_insee": "64081"}, "geometry": {"type": "Point", "coordinates": [-0.893255791642, 43.2026932583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f95a4fdd99edbe477eda7128dd0ec62100b41afe", "fields": {"nom_de_la_commune": "AYDIE", "libell_d_acheminement": "AYDIE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64084"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dcffe55d954c51990d2e0c400529350ed953c7a", "fields": {"nom_de_la_commune": "BAUDREIX", "libell_d_acheminement": "BAUDREIX", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64101"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c8f43d318c41f959a29a447750b1c04314e1ba2", "fields": {"nom_de_la_commune": "BELLOCQ", "libell_d_acheminement": "BELLOCQ", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64108"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9cbf273e453abb1f0676eb14753e2ad2698713", "fields": {"nom_de_la_commune": "BENTAYOU SEREE", "libell_d_acheminement": "BENTAYOU SEREE", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64111"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "257ac5bb466726a7ffdaa29eb7a286e8b40a332d", "fields": {"nom_de_la_commune": "BERENX", "libell_d_acheminement": "BERENX", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64112"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "833d0d6552c63fdd6294500d0df3b80865ba43e2", "fields": {"nom_de_la_commune": "BEUSTE", "libell_d_acheminement": "BEUSTE", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64119"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51cde456227c77b784a65403812654973949c386", "fields": {"nom_de_la_commune": "BIDART", "libell_d_acheminement": "BIDART", "code_postal": "64210", "coordonnees_gps": [43.4226559085, -1.56911488604], "code_commune_insee": "64125"}, "geometry": {"type": "Point", "coordinates": [-1.56911488604, 43.4226559085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53dbbb56c0b643d044d6b2dc8935270d4cdc5b12", "fields": {"nom_de_la_commune": "BOEIL BEZING", "libell_d_acheminement": "BOEIL BEZING", "code_postal": "64510", "coordonnees_gps": [43.245640797, -0.282424726752], "code_commune_insee": "64133"}, "geometry": {"type": "Point", "coordinates": [-0.282424726752, 43.245640797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de6555aa7172ca60dedfa5dcbe6cc75247af6b3", "fields": {"nom_de_la_commune": "BORDERES", "libell_d_acheminement": "BORDERES", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64137"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "000ed3072e46456e601d35b63d2b6becb16ed7e0", "fields": {"nom_de_la_commune": "BOUCAU", "libell_d_acheminement": "BOUCAU", "code_postal": "64340", "coordonnees_gps": [43.5253761707, -1.47965220654], "code_commune_insee": "64140"}, "geometry": {"type": "Point", "coordinates": [-1.47965220654, 43.5253761707]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f07da4524d3da6b4d32eea90c1d635887dbdec", "fields": {"nom_de_la_commune": "BOUEILH BOUEILHO LASQUE", "libell_d_acheminement": "BOUEILH BOUEILHO LASQUE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64141"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d6a303f0219f9a196feceb1075a50c26a4535fe", "fields": {"nom_de_la_commune": "BRISCOUS", "libell_d_acheminement": "BRISCOUS", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64147"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66f930f1832d32b2140c9ff4bbf6fc9828b23756", "fields": {"code_postal": "64800", "code_commune_insee": "64148", "libell_d_acheminement": "BRUGES CAPBIS MIFAGET", "ligne_5": "MIFAGET", "nom_de_la_commune": "BRUGES CAPBIS MIFAGET", "coordonnees_gps": [43.1416716993, -0.242876303099]}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a6a27450f0716260a87fa59bee05dbae626fb6", "fields": {"nom_de_la_commune": "CABIDOS", "libell_d_acheminement": "CABIDOS", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64158"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd8288e08252c41ce6e0d9a2e9bd3d2798463c8b", "fields": {"nom_de_la_commune": "CAME", "libell_d_acheminement": "CAME", "code_postal": "64520", "coordonnees_gps": [43.4828017234, -1.16861389886], "code_commune_insee": "64161"}, "geometry": {"type": "Point", "coordinates": [-1.16861389886, 43.4828017234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9b0bffc80221591815351a75860c176cfa801cc", "fields": {"nom_de_la_commune": "CAMOU CIHIGUE", "libell_d_acheminement": "CAMOU CIHIGUE", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64162"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e864f46c62c0bab6bed8509a97169532f7719c6c", "fields": {"nom_de_la_commune": "CARO", "libell_d_acheminement": "CARO", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64166"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc8d9aa15fac32648a0cbdefffc35819881d49a0", "fields": {"nom_de_la_commune": "CASTAGNEDE", "libell_d_acheminement": "CASTAGNEDE", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64170"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0fa8a49bc57790b053f65b4ffc894dd6f871586", "fields": {"nom_de_la_commune": "CASTEIDE CANDAU", "libell_d_acheminement": "CASTEIDE CANDAU", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64172"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dc313d669bcb1d069bb2234bdcf3227dbf89ac7", "fields": {"nom_de_la_commune": "CASTET", "libell_d_acheminement": "CASTET", "code_postal": "64260", "coordonnees_gps": [43.0837174382, -0.405880242828], "code_commune_insee": "64175"}, "geometry": {"type": "Point", "coordinates": [-0.405880242828, 43.0837174382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da72eead2b86d7e1fc8b9208c3e15cb41853f3bd", "fields": {"nom_de_la_commune": "CASTETBON", "libell_d_acheminement": "CASTETBON", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64176"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90c596ea962186344c190d168a49f535f685a4d3", "fields": {"nom_de_la_commune": "CASTILLON DE LEMBEYE", "libell_d_acheminement": "CASTILLON DE LEMBEYE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64182"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "644e905b896ab4aeab478261f9615fa2571154c8", "fields": {"nom_de_la_commune": "DIUSSE", "libell_d_acheminement": "DIUSSE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64199"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "106a85ff846286c06f29e6a32f83003362ce268c", "fields": {"nom_de_la_commune": "DOAZON", "libell_d_acheminement": "DOAZON", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64200"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610620489c672cbd897986b989601ab125a73a1a", "fields": {"nom_de_la_commune": "DOMEZAIN BERRAUTE", "libell_d_acheminement": "DOMEZAIN BERRAUTE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64202"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f399d6f5d4b083f9f2568e0c4f878bf0e8ee558", "fields": {"nom_de_la_commune": "ESCOS", "libell_d_acheminement": "ESCOS", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64205"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a68b679408ab281b933a8b781d6ea9ead1bf3b25", "fields": {"nom_de_la_commune": "ESPECHEDE", "libell_d_acheminement": "ESPECHEDE", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64212"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbe4ae337d3ee9442aa2e422f51f2b99ac828121", "fields": {"nom_de_la_commune": "ESQUIULE", "libell_d_acheminement": "ESQUIULE", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64217"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0145111c22ad8154f8280e4ca54d8d9ad07d9a8a", "fields": {"nom_de_la_commune": "ETCHARRY", "libell_d_acheminement": "ETCHARRY", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64221"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75916d1b7c6b6d98c1da48819eed54ad55c68461", "fields": {"nom_de_la_commune": "ETCHEBAR", "libell_d_acheminement": "ETCHEBAR", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64222"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8de73fd6bb75348a59a2d5b4a6fff3a2676727f9", "fields": {"nom_de_la_commune": "EYSUS", "libell_d_acheminement": "EYSUS", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64224"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f998947ff86b7467da37463eace034c9910ca08", "fields": {"nom_de_la_commune": "GARLEDE MONDEBAT", "libell_d_acheminement": "GARLEDE MONDEBAT", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64232"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5abc0f82821bff49a688f9dba07600698fb4e12", "fields": {"nom_de_la_commune": "GAROS", "libell_d_acheminement": "GAROS", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64234"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bfa7cd0bd606f95991882541d60e1a4993139e6", "fields": {"nom_de_la_commune": "GARRIS", "libell_d_acheminement": "GARRIS", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64235"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e24b8b743a504caeab42951854dff0e4ea85db40", "fields": {"nom_de_la_commune": "GEUS D ARZACQ", "libell_d_acheminement": "GEUS D ARZACQ", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64243"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea763556a556d200782187a05101713f836fe736", "fields": {"nom_de_la_commune": "HAUX", "libell_d_acheminement": "HAUX", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64258"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "641c0d734e5fded167bcb108dd3b2567015f3a08", "fields": {"nom_de_la_commune": "HELETTE", "libell_d_acheminement": "HELETTE", "code_postal": "64640", "coordonnees_gps": [43.2945597226, -1.18265900805], "code_commune_insee": "64259"}, "geometry": {"type": "Point", "coordinates": [-1.18265900805, 43.2945597226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0197e033f442387406550bde1e2c48e7888dcaf", "fields": {"nom_de_la_commune": "IRISSARRY", "libell_d_acheminement": "IRISSARRY", "code_postal": "64780", "coordonnees_gps": [43.2518666668, -1.28852003798], "code_commune_insee": "64273"}, "geometry": {"type": "Point", "coordinates": [-1.28852003798, 43.2518666668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ce9911f53d034f433e0044d3641b0cd0cd53b36", "fields": {"nom_de_la_commune": "JATXOU", "libell_d_acheminement": "JATXOU", "code_postal": "64480", "coordonnees_gps": [43.3959215702, -1.45000012935], "code_commune_insee": "64282"}, "geometry": {"type": "Point", "coordinates": [-1.45000012935, 43.3959215702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c5d2859406f8931ddce074c69c89620c8dc408", "fields": {"nom_de_la_commune": "JAXU", "libell_d_acheminement": "JAXU", "code_postal": "64220", "coordonnees_gps": [43.1182252068, -1.17987845599], "code_commune_insee": "64283"}, "geometry": {"type": "Point", "coordinates": [-1.17987845599, 43.1182252068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d68c16555c02dfd2651056aba09f558b21c6f7", "fields": {"nom_de_la_commune": "JUXUE", "libell_d_acheminement": "JUXUE", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64285"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "161ad2181e5448392ee560a814655c601247e131", "fields": {"nom_de_la_commune": "LABETS BISCAY", "libell_d_acheminement": "LABETS BISCAY", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64294"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a5de37a48a9857fa23dd6001eab6c3d6377e49b", "fields": {"nom_de_la_commune": "LACADEE", "libell_d_acheminement": "LACADEE", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64296"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03c2b6f0f0bf94a4564add5316ff7144b1b526ba", "fields": {"nom_de_la_commune": "LACQ", "libell_d_acheminement": "LACQ", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64300"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f13567867b2c7fc356983b4984af0e76777df52", "fields": {"nom_de_la_commune": "LAHONTAN", "libell_d_acheminement": "LAHONTAN", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64305"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6971d519b7f1dba56c47f69a61c9c57e60445a7", "fields": {"nom_de_la_commune": "LALONGUE", "libell_d_acheminement": "LALONGUE", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64307"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd884a671ad349aa7118da33641c5c78cb62f67", "fields": {"nom_de_la_commune": "LEME", "libell_d_acheminement": "LEME", "code_postal": "64450", "coordonnees_gps": [43.4588812635, -0.341362068764], "code_commune_insee": "64332"}, "geometry": {"type": "Point", "coordinates": [-0.341362068764, 43.4588812635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c777c4bc33487bfa637c478e78774d6f1c7c78", "fields": {"nom_de_la_commune": "LESTELLE BETHARRAM", "libell_d_acheminement": "LESTELLE BETHARRAM", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64339"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c671bef0be81ece010e1426ed3e90e79cad52477", "fields": {"nom_de_la_commune": "LICHANS SUNHAR", "libell_d_acheminement": "LICHANS SUNHAR", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64340"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e573b5605659ed21bf16396f846e31f511263979", "fields": {"nom_de_la_commune": "LONS", "libell_d_acheminement": "LONS", "code_postal": "64140", "coordonnees_gps": [43.3167166391, -0.399067270289], "code_commune_insee": "64348"}, "geometry": {"type": "Point", "coordinates": [-0.399067270289, 43.3167166391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae95c11e24a3d9db8704675f42db89667096700e", "fields": {"nom_de_la_commune": "LOUBIENG", "libell_d_acheminement": "LOUBIENG", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64349"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c38626b970141c0ad940af804991c79c816294f", "fields": {"nom_de_la_commune": "LOURDIOS ICHERE", "libell_d_acheminement": "LOURDIOS ICHERE", "code_postal": "64570", "coordonnees_gps": [43.0758381302, -0.725122462628], "code_commune_insee": "64351"}, "geometry": {"type": "Point", "coordinates": [-0.725122462628, 43.0758381302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab8d1edeb30987b423783024c42547e6e479d01", "fields": {"nom_de_la_commune": "MACAYE", "libell_d_acheminement": "MACAYE", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64364"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0127f8be0af23d888650991854642bec8feebb5f", "fields": {"nom_de_la_commune": "MALAUSSANNE", "libell_d_acheminement": "MALAUSSANNE", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64365"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c40383c1f46007ba153a997a084c90fea05fe6bf", "fields": {"nom_de_la_commune": "MASLACQ", "libell_d_acheminement": "MASLACQ", "code_postal": "64300", "coordonnees_gps": [43.4859974267, -0.75266936644], "code_commune_insee": "64367"}, "geometry": {"type": "Point", "coordinates": [-0.75266936644, 43.4859974267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b67d9710afab7762e82de424841565dc8537944f", "fields": {"nom_de_la_commune": "MAUCOR", "libell_d_acheminement": "MAUCOR", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64370"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc74461247f6c1f39ebb84899435ca6eb0bb499c", "fields": {"nom_de_la_commune": "MENDIONDE", "libell_d_acheminement": "MENDIONDE", "code_postal": "64240", "coordonnees_gps": [43.3989779826, -1.29221963003], "code_commune_insee": "64377"}, "geometry": {"type": "Point", "coordinates": [-1.29221963003, 43.3989779826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c294e321d7f26fdd8c2744ccaf9d3fe2c6b39560", "fields": {"nom_de_la_commune": "MESPLEDE", "libell_d_acheminement": "MESPLEDE", "code_postal": "64370", "coordonnees_gps": [43.4860703804, -0.580425369823], "code_commune_insee": "64382"}, "geometry": {"type": "Point", "coordinates": [-0.580425369823, 43.4860703804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f23266b2f99cd5a28b53838df5b67c04268eba0", "fields": {"nom_de_la_commune": "MONCLA", "libell_d_acheminement": "MONCLA", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64392"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49c57ece41009f03d9552b1abd08a22a9c3a9088", "fields": {"nom_de_la_commune": "MONEIN", "libell_d_acheminement": "MONEIN", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64393"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6303d4db060594055cbd52fe55713493c4964c25", "fields": {"nom_de_la_commune": "MONTAUT", "libell_d_acheminement": "MONTAUT", "code_postal": "64800", "coordonnees_gps": [43.1416716993, -0.242876303099], "code_commune_insee": "64400"}, "geometry": {"type": "Point", "coordinates": [-0.242876303099, 43.1416716993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8c178a6a458a7c59f48e4f9f3efb8fe286b6789", "fields": {"nom_de_la_commune": "MONT DISSE", "libell_d_acheminement": "MONT DISSE", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64401"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ea43603575fc07873ee72d5c8f1ee4d580e557", "fields": {"nom_de_la_commune": "MOUMOUR", "libell_d_acheminement": "MOUMOUR", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64409"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad566f60f5886dc5361786af3dc7563bf14f380", "fields": {"nom_de_la_commune": "NAVARRENX", "libell_d_acheminement": "NAVARRENX", "code_postal": "64190", "coordonnees_gps": [43.3303304572, -0.787383810475], "code_commune_insee": "64416"}, "geometry": {"type": "Point", "coordinates": [-0.787383810475, 43.3303304572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9dd2e34937fb83ad894649bd2171eea230b4cff", "fields": {"nom_de_la_commune": "NOGUERES", "libell_d_acheminement": "NOGUERES", "code_postal": "64150", "coordonnees_gps": [43.3738643161, -0.656609609505], "code_commune_insee": "64418"}, "geometry": {"type": "Point", "coordinates": [-0.656609609505, 43.3738643161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "addadf4b08a95872c0f3681e1e8704cd45f111cc", "fields": {"nom_de_la_commune": "ORSANCO", "libell_d_acheminement": "ORSANCO", "code_postal": "64120", "coordonnees_gps": [43.3050617762, -1.05477457972], "code_commune_insee": "64429"}, "geometry": {"type": "Point", "coordinates": [-1.05477457972, 43.3050617762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416da94a4f2637946b75a7471e1858223ad47765", "fields": {"nom_de_la_commune": "OSSAS SUHARE", "libell_d_acheminement": "OSSAS SUHARE", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64432"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfc07e9c95182e3e3476de80d20faf895e682f3a", "fields": {"nom_de_la_commune": "PAU", "libell_d_acheminement": "PAU", "code_postal": "64000", "coordonnees_gps": [43.3202428022, -0.349730360793], "code_commune_insee": "64445"}, "geometry": {"type": "Point", "coordinates": [-0.349730360793, 43.3202428022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "393a959ce6bdd13b6e655b623cbd0114d4336a8b", "fields": {"nom_de_la_commune": "PONSON DESSUS", "libell_d_acheminement": "PONSON DESSUS", "code_postal": "64460", "coordonnees_gps": [43.3625245098, -0.0459145851164], "code_commune_insee": "64452"}, "geometry": {"type": "Point", "coordinates": [-0.0459145851164, 43.3625245098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab6dcb8109b204b541d623246fd0556c0e2a6ed", "fields": {"nom_de_la_commune": "RIBARROUY", "libell_d_acheminement": "RIBARROUY", "code_postal": "64330", "coordonnees_gps": [43.5418563695, -0.226283256585], "code_commune_insee": "64464"}, "geometry": {"type": "Point", "coordinates": [-0.226283256585, 43.5418563695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f8950fc67a035b4f6540a32730695fee7d58ef", "fields": {"nom_de_la_commune": "RIUPEYROUS", "libell_d_acheminement": "RIUPEYROUS", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64465"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd95a97bd1dea54700ca0ea92f1688ddf5ac8956", "fields": {"nom_de_la_commune": "ST ARMOU", "libell_d_acheminement": "ST ARMOU", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64470"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a4a994066139f35c4fe4847c20e3f0d6a292252", "fields": {"nom_de_la_commune": "ST DOS", "libell_d_acheminement": "ST DOS", "code_postal": "64270", "coordonnees_gps": [43.4771574964, -0.961010238203], "code_commune_insee": "64474"}, "geometry": {"type": "Point", "coordinates": [-0.961010238203, 43.4771574964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5b73b85e1ad1982af9d412edfbb4944f8d0108b", "fields": {"nom_de_la_commune": "STE ENGRACE", "libell_d_acheminement": "STE ENGRACE", "code_postal": "64560", "coordonnees_gps": [43.0084914097, -0.920619929244], "code_commune_insee": "64475"}, "geometry": {"type": "Point", "coordinates": [-0.920619929244, 43.0084914097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02f62d06c1135892af43eb1fc49fc01dfd4e1f7d", "fields": {"nom_de_la_commune": "ST ETIENNE DE BAIGORRY", "libell_d_acheminement": "ST ETIENNE DE BAIGORRY", "code_postal": "64430", "coordonnees_gps": [43.1256104701, -1.37703506654], "code_commune_insee": "64477"}, "geometry": {"type": "Point", "coordinates": [-1.37703506654, 43.1256104701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08ed26dedc412289d9524601aa2c483c2b6733f4", "fields": {"nom_de_la_commune": "ST FAUST", "libell_d_acheminement": "ST FAUST", "code_postal": "64110", "coordonnees_gps": [43.2679285123, -0.398459859363], "code_commune_insee": "64478"}, "geometry": {"type": "Point", "coordinates": [-0.398459859363, 43.2679285123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eaac144de39edb8e42b7a847fd18193dbe2cbae", "fields": {"nom_de_la_commune": "ST GLADIE ARRIVE MUNEIN", "libell_d_acheminement": "ST GLADIE ARRIVE MUNEIN", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64480"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df6a4ea98e1428fee330034acde6166df91fc81a", "fields": {"nom_de_la_commune": "WISSEMBOURG", "libell_d_acheminement": "WISSEMBOURG", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67544"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd688e7ddb63f10197645406e56f71957a841a22", "fields": {"nom_de_la_commune": "WOLFSKIRCHEN", "libell_d_acheminement": "WOLFSKIRCHEN", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67552"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a0a83df0ee3b659931aeca6d435cd7342a5492f", "fields": {"nom_de_la_commune": "WOLXHEIM", "libell_d_acheminement": "WOLXHEIM", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67554"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e99b057f91dd63cc985d061465370e5a47fff313", "fields": {"code_postal": "67120", "code_commune_insee": "67554", "libell_d_acheminement": "WOLXHEIM", "ligne_5": "CANAL", "nom_de_la_commune": "WOLXHEIM", "coordonnees_gps": [48.5435292829, 7.5327846629]}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e86c9a714766d8f581f7877965699ac0082b08e", "fields": {"nom_de_la_commune": "ZEHNACKER", "libell_d_acheminement": "ZEHNACKER", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67555"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b612af38aa2756d5953c467a0cdb06a41db5bb52", "fields": {"nom_de_la_commune": "LE BERNARD", "libell_d_acheminement": "LE BERNARD", "code_postal": "85560", "coordonnees_gps": [46.4255552518, -1.46169851004], "code_commune_insee": "85022"}, "geometry": {"type": "Point", "coordinates": [-1.46169851004, 46.4255552518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a06597a30355be86ed4fd7312ad91da43e0b8e4", "fields": {"nom_de_la_commune": "BOIS DE CENE", "libell_d_acheminement": "BOIS DE CENE", "code_postal": "85710", "coordonnees_gps": [46.9181711816, -1.86435198125], "code_commune_insee": "85024"}, "geometry": {"type": "Point", "coordinates": [-1.86435198125, 46.9181711816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "271c694f0760ff9cdf6f4a25fe9715083a9d1bfc", "fields": {"nom_de_la_commune": "LE BOUPERE", "libell_d_acheminement": "LE BOUPERE", "code_postal": "85510", "coordonnees_gps": [46.7872179072, -0.944338069578], "code_commune_insee": "85031"}, "geometry": {"type": "Point", "coordinates": [-0.944338069578, 46.7872179072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70fb91a97d14ef9eab160be64edf14eb590f5d17", "fields": {"nom_de_la_commune": "BRETIGNOLLES SUR MER", "libell_d_acheminement": "BRETIGNOLLES SUR MER", "code_postal": "85470", "coordonnees_gps": [46.62852373, -1.84475847528], "code_commune_insee": "85035"}, "geometry": {"type": "Point", "coordinates": [-1.84475847528, 46.62852373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd9d7c90e488cc2bf7f2a1f150bc8ca5345593f", "fields": {"nom_de_la_commune": "BREUIL BARRET", "libell_d_acheminement": "BREUIL BARRET", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85037"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6c9dd65ec22fe0fdd38ef63a8ab61b4bfda3339", "fields": {"nom_de_la_commune": "LA CHAIZE LE VICOMTE", "libell_d_acheminement": "LA CHAIZE LE VICOMTE", "code_postal": "85310", "coordonnees_gps": [46.6268805827, -1.33228683205], "code_commune_insee": "85046"}, "geometry": {"type": "Point", "coordinates": [-1.33228683205, 46.6268805827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0ee9763f6d6509f2a4de10a5235323f706f25a", "fields": {"nom_de_la_commune": "CHANTONNAY", "libell_d_acheminement": "CHANTONNAY", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85051"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4c1a02dc3ca43593e62e9f75b2b3a82ffdfa3da", "fields": {"nom_de_la_commune": "LA CHAPELLE ACHARD", "libell_d_acheminement": "LA CHAPELLE ACHARD", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85052"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05b177572b568c7898f4cde3776e4ffac9fb2f1", "fields": {"nom_de_la_commune": "LA CHAPELLE PALLUAU", "libell_d_acheminement": "LA CHAPELLE PALLUAU", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85055"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac628824a1f4529a5af9314ff55dbd65ea90e31", "fields": {"nom_de_la_commune": "DAMVIX", "libell_d_acheminement": "DAMVIX", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85078"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b770e54e366f752aac65d7260e5cbc74faabfe", "fields": {"code_postal": "85200", "code_commune_insee": "85080", "libell_d_acheminement": "DOIX LES FONTAINES", "ligne_5": "FONTAINES", "nom_de_la_commune": "DOIX LES FONTAINES", "coordonnees_gps": [46.4730274645, -0.80431270427]}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d25dfa3ed9aae434230b55b2623eaa5f8418d8d7", "fields": {"nom_de_la_commune": "L EPINE", "libell_d_acheminement": "L EPINE", "code_postal": "85740", "coordonnees_gps": [46.984336613, -2.26328394297], "code_commune_insee": "85083"}, "geometry": {"type": "Point", "coordinates": [-2.26328394297, 46.984336613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00b5f1c1bc581e2267a447cd8565ab64d839e158", "fields": {"code_postal": "85140", "code_commune_insee": "85084", "libell_d_acheminement": "ESSARTS EN BOCAGE", "ligne_5": "BOULOGNE", "nom_de_la_commune": "ESSARTS EN BOCAGE", "coordonnees_gps": [46.7759741039, -1.24043269403]}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb99f6b6a674cbaf649fd4b2995fc494c8b81d9b", "fields": {"code_postal": "85140", "code_commune_insee": "85084", "libell_d_acheminement": "ESSARTS EN BOCAGE", "ligne_5": "L OIE", "nom_de_la_commune": "ESSARTS EN BOCAGE", "coordonnees_gps": [46.7759741039, -1.24043269403]}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31eada4ae4288c1ac2249304f356baae0443b117", "fields": {"code_postal": "85140", "code_commune_insee": "85084", "libell_d_acheminement": "ESSARTS EN BOCAGE", "ligne_5": "LES ESSARTS", "nom_de_la_commune": "ESSARTS EN BOCAGE", "coordonnees_gps": [46.7759741039, -1.24043269403]}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "203499b447083220c1c196e7e898d98e613f79bd", "fields": {"code_postal": "85140", "code_commune_insee": "85084", "libell_d_acheminement": "ESSARTS EN BOCAGE", "ligne_5": "STE FLORENCE", "nom_de_la_commune": "ESSARTS EN BOCAGE", "coordonnees_gps": [46.7759741039, -1.24043269403]}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05222e40e380186902bc50e735577c02ad406e61", "fields": {"code_postal": "85700", "code_commune_insee": "85090", "libell_d_acheminement": "SEVREMONT", "ligne_5": "ST MICHEL MONT MERCURE", "nom_de_la_commune": "SEVREMONT", "coordonnees_gps": [46.7673763224, -0.80165823115]}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b25ec7b2c378a506132df1eb1b6b1f264ec88d", "fields": {"nom_de_la_commune": "FOUGERE", "libell_d_acheminement": "FOUGERE", "code_postal": "85480", "coordonnees_gps": [46.6439879981, -1.18432139846], "code_commune_insee": "85093"}, "geometry": {"type": "Point", "coordinates": [-1.18432139846, 46.6439879981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8160254aa4db6b5f07fff2cbfbfc9e0c59546147", "fields": {"nom_de_la_commune": "LA GAUBRETIERE", "libell_d_acheminement": "LA GAUBRETIERE", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85097"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "035a32c30862120eaae8244b19065ec4eb1d0818", "fields": {"nom_de_la_commune": "LA GENETOUZE", "libell_d_acheminement": "LA GENETOUZE", "code_postal": "85190", "coordonnees_gps": [46.7206565452, -1.60345832347], "code_commune_insee": "85098"}, "geometry": {"type": "Point", "coordinates": [-1.60345832347, 46.7206565452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fba27deed31380252c700f6da7343c502e8a771", "fields": {"nom_de_la_commune": "LE GIVRE", "libell_d_acheminement": "LE GIVRE", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85101"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c0f5ee9236f361c6b11b7e9ea47178d3196914", "fields": {"nom_de_la_commune": "GRAND LANDES", "libell_d_acheminement": "GRAND LANDES", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85102"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6217e8e68227025007942e06ebadf9cc543c061f", "fields": {"nom_de_la_commune": "JARD SUR MER", "libell_d_acheminement": "JARD SUR MER", "code_postal": "85520", "coordonnees_gps": [46.4271885, -1.57623760346], "code_commune_insee": "85114"}, "geometry": {"type": "Point", "coordinates": [-1.57623760346, 46.4271885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f0b163166947aa3347ef042594831c3fa6c5a1", "fields": {"nom_de_la_commune": "LANDEVIEILLE", "libell_d_acheminement": "LANDEVIEILLE", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85120"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9b061387460877055d0ed60fb38502ebd3e0de", "fields": {"nom_de_la_commune": "LIEZ", "libell_d_acheminement": "LIEZ", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85123"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04aaa79dacdf28858657fcd55177be58cb03bf4a", "fields": {"nom_de_la_commune": "LOGE FOUGEREUSE", "libell_d_acheminement": "LOGE FOUGEREUSE", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85125"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddfcf6ce7ed9bd9ac6246d72adafcb2f58c06ecc", "fields": {"nom_de_la_commune": "LONGEVILLE SUR MER", "libell_d_acheminement": "LONGEVILLE SUR MER", "code_postal": "85560", "coordonnees_gps": [46.4255552518, -1.46169851004], "code_commune_insee": "85127"}, "geometry": {"type": "Point", "coordinates": [-1.46169851004, 46.4255552518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32308c6d1b4937fa6aed21547bbfa78791f1e380", "fields": {"nom_de_la_commune": "MACHE", "libell_d_acheminement": "MACHE", "code_postal": "85190", "coordonnees_gps": [46.7206565452, -1.60345832347], "code_commune_insee": "85130"}, "geometry": {"type": "Point", "coordinates": [-1.60345832347, 46.7206565452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c77dc69df797a276a031ec33d3c43bf46d48ac0", "fields": {"nom_de_la_commune": "LA MERLATIERE", "libell_d_acheminement": "LA MERLATIERE", "code_postal": "85140", "coordonnees_gps": [46.7759741039, -1.24043269403], "code_commune_insee": "85142"}, "geometry": {"type": "Point", "coordinates": [-1.24043269403, 46.7759741039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c45081fbd75856e331d6866ffb9f848096b425a", "fields": {"nom_de_la_commune": "MONTAIGU", "libell_d_acheminement": "MONTAIGU", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85146"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c72537f35b1861a4a267a9bb63355e8d511157", "fields": {"nom_de_la_commune": "MONTOURNAIS", "libell_d_acheminement": "MONTOURNAIS", "code_postal": "85700", "coordonnees_gps": [46.7673763224, -0.80165823115], "code_commune_insee": "85147"}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "856c031d8b242462a4e304940e14021db50a7fc2", "fields": {"nom_de_la_commune": "MOUTIERS SUR LE LAY", "libell_d_acheminement": "MOUTIERS SUR LE LAY", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85157"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cc19b09be247dbb5b73fc3f9f8c4d8ee2f36ec0", "fields": {"nom_de_la_commune": "NESMY", "libell_d_acheminement": "NESMY", "code_postal": "85310", "coordonnees_gps": [46.6268805827, -1.33228683205], "code_commune_insee": "85160"}, "geometry": {"type": "Point", "coordinates": [-1.33228683205, 46.6268805827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "948789cafe302ece3987956de9619c94ef8a439f", "fields": {"nom_de_la_commune": "L ORBRIE", "libell_d_acheminement": "L ORBRIE", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85167"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95afbb2f2b00b332e2461680a8d2b2dbc92365ba", "fields": {"nom_de_la_commune": "LE POIRE SUR VELLUIRE", "libell_d_acheminement": "LE POIRE SUR VELLUIRE", "code_postal": "85770", "coordonnees_gps": [46.3688776738, -0.891505234043], "code_commune_insee": "85177"}, "geometry": {"type": "Point", "coordinates": [-0.891505234043, 46.3688776738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb9a35c6ba66ec8583944c8e42e3d6273918f72", "fields": {"nom_de_la_commune": "LE POIRE SUR VIE", "libell_d_acheminement": "LE POIRE SUR VIE", "code_postal": "85170", "coordonnees_gps": [46.803170613, -1.45953412091], "code_commune_insee": "85178"}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7fe2228d86651e5d4e66f705ae170fbe3eb8cd3", "fields": {"nom_de_la_commune": "ST BENOIST SUR MER", "libell_d_acheminement": "ST BENOIST SUR MER", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85201"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b461268c8a576edf22e925187878d5cccf4213", "fields": {"nom_de_la_commune": "STE CECILE", "libell_d_acheminement": "STE CECILE", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85202"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50e58898a351bb2c4173dea8a7bba655d2061caf", "fields": {"nom_de_la_commune": "ST CYR DES GATS", "libell_d_acheminement": "ST CYR DES GATS", "code_postal": "85410", "coordonnees_gps": [46.5977381891, -0.875564546454], "code_commune_insee": "85205"}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cbbcbdd5a79bc6225f32c23818865f146298415", "fields": {"nom_de_la_commune": "ST DENIS DU PAYRE", "libell_d_acheminement": "ST DENIS DU PAYRE", "code_postal": "85580", "coordonnees_gps": [46.3690753878, -1.25485668311], "code_commune_insee": "85207"}, "geometry": {"type": "Point", "coordinates": [-1.25485668311, 46.3690753878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4701a0e775f94049b1fa0f933c7f0bf07072346b", "fields": {"nom_de_la_commune": "STE FLAIVE DES LOUPS", "libell_d_acheminement": "STE FLAIVE DES LOUPS", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85211"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6769a4d5e21647ad2733de8048905f9a3064e57", "fields": {"nom_de_la_commune": "ST GERVAIS", "libell_d_acheminement": "ST GERVAIS", "code_postal": "85230", "coordonnees_gps": [46.9369632993, -2.01322224177], "code_commune_insee": "85221"}, "geometry": {"type": "Point", "coordinates": [-2.01322224177, 46.9369632993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63feb9868ba4e1e8d387530fce24ca6619db7011", "fields": {"nom_de_la_commune": "ST GILLES CROIX DE VIE", "libell_d_acheminement": "ST GILLES CROIX DE VIE", "code_postal": "85800", "coordonnees_gps": [46.6993264019, -1.89528926065], "code_commune_insee": "85222"}, "geometry": {"type": "Point", "coordinates": [-1.89528926065, 46.6993264019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8c1e7cb865dc9f768a3487ae5ccafda2781b8c8", "fields": {"code_postal": "85270", "code_commune_insee": "85226", "libell_d_acheminement": "ST HILAIRE DE RIEZ", "ligne_5": "SION SUR L OCEAN", "nom_de_la_commune": "ST HILAIRE DE RIEZ", "coordonnees_gps": [46.7457643278, -1.94773887876]}, "geometry": {"type": "Point", "coordinates": [-1.94773887876, 46.7457643278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b51a0e411b24794f88138e06c8041bfa237b15", "fields": {"nom_de_la_commune": "ST HILAIRE DE VOUST", "libell_d_acheminement": "ST HILAIRE DE VOUST", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85229"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c5122f6ede34f36e82700fd81db9176c8b6aed", "fields": {"nom_de_la_commune": "ST MARS LA REORTHE", "libell_d_acheminement": "ST MARS LA REORTHE", "code_postal": "85590", "coordonnees_gps": [46.9002620451, -0.893697595044], "code_commune_insee": "85242"}, "geometry": {"type": "Point", "coordinates": [-0.893697595044, 46.9002620451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c0330f11b5aa3ae311cb39149f65376653baba3", "fields": {"nom_de_la_commune": "ST MARTIN LARS EN STE HERMINE", "libell_d_acheminement": "ST MARTIN LARS EN STE HERMINE", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85248"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "354976227b3befc76da9504d26e8b313be5eeee2", "fields": {"nom_de_la_commune": "ST MATHURIN", "libell_d_acheminement": "ST MATHURIN", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85250"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7240235076a67950915bb517e1ec3df401126d0", "fields": {"nom_de_la_commune": "ST MAURICE DES NOUES", "libell_d_acheminement": "ST MAURICE DES NOUES", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85251"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d659f6344f4031a28aa1aaa945668677b9ae076", "fields": {"code_postal": "85540", "code_commune_insee": "85277", "libell_d_acheminement": "ST VINCENT SUR GRAON", "ligne_5": "ST SORNIN", "nom_de_la_commune": "ST VINCENT SUR GRAON", "coordonnees_gps": [46.4859713546, -1.38206083046]}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f5bd0aac9c22468c4f9426a841db49e50a7182e", "fields": {"nom_de_la_commune": "SERIGNE", "libell_d_acheminement": "SERIGNE", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85281"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce261a98b8fcd956e413524019a27405965085d", "fields": {"nom_de_la_commune": "LA TAILLEE", "libell_d_acheminement": "LA TAILLEE", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85286"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d3ac370542640db000399d1a1346db1068db879", "fields": {"nom_de_la_commune": "LA TARDIERE", "libell_d_acheminement": "LA TARDIERE", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85289"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f50f6ebed8659fd0b0ca9755b413e53f602bfd", "fields": {"nom_de_la_commune": "THORIGNY", "libell_d_acheminement": "THORIGNY", "code_postal": "85480", "coordonnees_gps": [46.6439879981, -1.18432139846], "code_commune_insee": "85291"}, "geometry": {"type": "Point", "coordinates": [-1.18432139846, 46.6439879981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa524b6e808581bf9e80655830e209291dd5d4d1", "fields": {"nom_de_la_commune": "TREIZE VENTS", "libell_d_acheminement": "TREIZE VENTS", "code_postal": "85590", "coordonnees_gps": [46.9002620451, -0.893697595044], "code_commune_insee": "85296"}, "geometry": {"type": "Point", "coordinates": [-0.893697595044, 46.9002620451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "512e0a9abd5a8fbd70d595cca9244078753aec60", "fields": {"nom_de_la_commune": "VAIRE", "libell_d_acheminement": "VAIRE", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85298"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "273b6c12f8e0af436efa1f0af12a8febf49b9e16", "fields": {"nom_de_la_commune": "VENDRENNES", "libell_d_acheminement": "VENDRENNES", "code_postal": "85250", "coordonnees_gps": [46.8659519068, -1.19415705359], "code_commune_insee": "85301"}, "geometry": {"type": "Point", "coordinates": [-1.19415705359, 46.8659519068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90d5cc8cea462e8d70d5777ab5b6d68eae30b3f7", "fields": {"nom_de_la_commune": "VIX", "libell_d_acheminement": "VIX", "code_postal": "85770", "coordonnees_gps": [46.3688776738, -0.891505234043], "code_commune_insee": "85303"}, "geometry": {"type": "Point", "coordinates": [-0.891505234043, 46.3688776738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74709275e9a4c8bcf170aa84d4cd8f05be1c9068", "fields": {"nom_de_la_commune": "AMBERRE", "libell_d_acheminement": "AMBERRE", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86002"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1db27e5b0bdd1fb9042c1a23761282bb1c751b1", "fields": {"nom_de_la_commune": "ANGLES SUR L ANGLIN", "libell_d_acheminement": "ANGLES SUR L ANGLIN", "code_postal": "86260", "coordonnees_gps": [46.6858016329, 0.823387045612], "code_commune_insee": "86004"}, "geometry": {"type": "Point", "coordinates": [0.823387045612, 46.6858016329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6b549872ddebbff23fca8ed422c6a6828fc5b4e", "fields": {"nom_de_la_commune": "ANGLIERS", "libell_d_acheminement": "ANGLIERS", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86005"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c593bf9919699c589c2346ddf771443dda6312", "fields": {"nom_de_la_commune": "ARCHIGNY", "libell_d_acheminement": "ARCHIGNY", "code_postal": "86210", "coordonnees_gps": [46.684748794, 0.605467438883], "code_commune_insee": "86009"}, "geometry": {"type": "Point", "coordinates": [0.605467438883, 46.684748794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f80817516345eefa569eb50eed228765d4cb7496", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "86490", "coordonnees_gps": [46.761526271, 0.437525425166], "code_commune_insee": "86019"}, "geometry": {"type": "Point", "coordinates": [0.437525425166, 46.761526271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6c35b6e52f2e8a564d1cad2a7f17c15c825cbf9", "fields": {"nom_de_la_commune": "BENASSAY", "libell_d_acheminement": "BENASSAY", "code_postal": "86470", "coordonnees_gps": [46.5459680342, 0.0877138894846], "code_commune_insee": "86021"}, "geometry": {"type": "Point", "coordinates": [0.0877138894846, 46.5459680342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b63917db7c8b7e3fcc6270ddb52a2374eb2d0b2", "fields": {"nom_de_la_commune": "BIARD", "libell_d_acheminement": "BIARD", "code_postal": "86580", "coordonnees_gps": [46.580240949, 0.276027039382], "code_commune_insee": "86027"}, "geometry": {"type": "Point", "coordinates": [0.276027039382, 46.580240949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e58f172c24bc602efa27e64f38692c80dcb3363", "fields": {"nom_de_la_commune": "CENON SUR VIENNE", "libell_d_acheminement": "CENON SUR VIENNE", "code_postal": "86530", "coordonnees_gps": [46.7647730786, 0.524858476534], "code_commune_insee": "86046"}, "geometry": {"type": "Point", "coordinates": [0.524858476534, 46.7647730786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e414f662e0b4925500c05dd8408418589f0355", "fields": {"nom_de_la_commune": "CERNAY", "libell_d_acheminement": "CERNAY", "code_postal": "86140", "coordonnees_gps": [46.8283265591, 0.330477268884], "code_commune_insee": "86047"}, "geometry": {"type": "Point", "coordinates": [0.330477268884, 46.8283265591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df374792dabf7f205574cf364a6040f470800a81", "fields": {"nom_de_la_commune": "CHAMPAGNE ST HILAIRE", "libell_d_acheminement": "CHAMPAGNE ST HILAIRE", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86052"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15019adaa3e9f39b3c8eb2636c3209164dc14aba", "fields": {"nom_de_la_commune": "LA CHAPELLE MOULIERE", "libell_d_acheminement": "LA CHAPELLE MOULIERE", "code_postal": "86210", "coordonnees_gps": [46.684748794, 0.605467438883], "code_commune_insee": "86058"}, "geometry": {"type": "Point", "coordinates": [0.605467438883, 46.684748794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68e1ea99e0cfa1dcda9b6e4ec406c4532634349a", "fields": {"nom_de_la_commune": "CHENEVELLES", "libell_d_acheminement": "CHENEVELLES", "code_postal": "86450", "coordonnees_gps": [46.7433398222, 0.710148242539], "code_commune_insee": "86072"}, "geometry": {"type": "Point", "coordinates": [0.710148242539, 46.7433398222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71489c83f669b537c637bd2c299bc49766d09344", "fields": {"nom_de_la_commune": "CRAON", "libell_d_acheminement": "CRAON", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86087"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e2acc4fd69ae10ca66d168eecf5a55df7c331cc", "fields": {"nom_de_la_commune": "CURCAY SUR DIVE", "libell_d_acheminement": "CURCAY SUR DIVE", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86090"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df89aa8a443f027538b2db614e189dd7bb96ebe", "fields": {"nom_de_la_commune": "FLEURE", "libell_d_acheminement": "FLEURE", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86099"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d6f50110fe8f0d133a299095412c410ce70c1e5", "fields": {"nom_de_la_commune": "GIZAY", "libell_d_acheminement": "GIZAY", "code_postal": "86340", "coordonnees_gps": [46.4622005788, 0.430372599517], "code_commune_insee": "86105"}, "geometry": {"type": "Point", "coordinates": [0.430372599517, 46.4622005788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40570f400ec4d4f4d7553e18e4a19bc10e764b4e", "fields": {"nom_de_la_commune": "GOUEX", "libell_d_acheminement": "GOUEX", "code_postal": "86320", "coordonnees_gps": [46.3927181385, 0.726435061295], "code_commune_insee": "86107"}, "geometry": {"type": "Point", "coordinates": [0.726435061295, 46.3927181385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff395801f87d570a6e333c844169516c446a365e", "fields": {"nom_de_la_commune": "LA GRIMAUDIERE", "libell_d_acheminement": "LA GRIMAUDIERE", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86108"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "062c1e9979143d8ff8f922c905d60699fb26d0d2", "fields": {"nom_de_la_commune": "GUESNES", "libell_d_acheminement": "GUESNES", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86109"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dbafd654ebe0c0bcf1d6b9724ca586cf97714ed", "fields": {"nom_de_la_commune": "L ISLE JOURDAIN", "libell_d_acheminement": "L ISLE JOURDAIN", "code_postal": "86150", "coordonnees_gps": [46.2498879507, 0.661977427311], "code_commune_insee": "86112"}, "geometry": {"type": "Point", "coordinates": [0.661977427311, 46.2498879507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23ad0983132f8a845435cf270a10b12e7b2fe2c2", "fields": {"nom_de_la_commune": "LAVAUSSEAU", "libell_d_acheminement": "LAVAUSSEAU", "code_postal": "86470", "coordonnees_gps": [46.5459680342, 0.0877138894846], "code_commune_insee": "86123"}, "geometry": {"type": "Point", "coordinates": [0.0877138894846, 46.5459680342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af22b29b47dbbd427957bc24eb696e63294ce715", "fields": {"nom_de_la_commune": "LEIGNE LES BOIS", "libell_d_acheminement": "LEIGNE LES BOIS", "code_postal": "86450", "coordonnees_gps": [46.7433398222, 0.710148242539], "code_commune_insee": "86125"}, "geometry": {"type": "Point", "coordinates": [0.710148242539, 46.7433398222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f198d39d9988ffb81cd983474dd32fb08d0faf59", "fields": {"nom_de_la_commune": "LHOMMAIZE", "libell_d_acheminement": "LHOMMAIZE", "code_postal": "86410", "coordonnees_gps": [46.402745465, 0.573301169614], "code_commune_insee": "86131"}, "geometry": {"type": "Point", "coordinates": [0.573301169614, 46.402745465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ba610da87b6e5353014d8545ff09c03945db479", "fields": {"nom_de_la_commune": "LIGLET", "libell_d_acheminement": "LIGLET", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86132"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "806b6559b8f2eed2067d0630f19440697ae7f426", "fields": {"nom_de_la_commune": "LINAZAY", "libell_d_acheminement": "LINAZAY", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86134"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d266f41522814fd7d4f1d3756ce18c82f8ef1ac7", "fields": {"nom_de_la_commune": "LINIERS", "libell_d_acheminement": "LINIERS", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86135"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "799de9d204a4e27ac58b1e037cd354bb27560992", "fields": {"nom_de_la_commune": "LUCHAPT", "libell_d_acheminement": "LUCHAPT", "code_postal": "86430", "coordonnees_gps": [46.2180968835, 0.782184483066], "code_commune_insee": "86138"}, "geometry": {"type": "Point", "coordinates": [0.782184483066, 46.2180968835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac59fa94b78bb662097623d44128075937c5085", "fields": {"nom_de_la_commune": "MAILLE", "libell_d_acheminement": "MAILLE", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86142"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "685f231f15487122f227d2ad6ed835855c7f49ec", "fields": {"nom_de_la_commune": "MARNAY", "libell_d_acheminement": "MARNAY", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86148"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe9c981382c461efca1201f714c98fbac89aa71a", "fields": {"nom_de_la_commune": "MARTAIZE", "libell_d_acheminement": "MARTAIZE", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86149"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fcdfff7d3ab784e5ba53471490538a46f10574b", "fields": {"code_postal": "86330", "code_commune_insee": "86161", "libell_d_acheminement": "MONCONTOUR", "ligne_5": "MESSAIS", "nom_de_la_commune": "MONCONTOUR", "coordonnees_gps": [46.8727701949, 0.0622118082158]}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb032052586b706d9ac2394858067c61e0da53a", "fields": {"code_postal": "86330", "code_commune_insee": "86161", "libell_d_acheminement": "MONCONTOUR", "ligne_5": "OUZILLY VIGNOLLES", "nom_de_la_commune": "MONCONTOUR", "coordonnees_gps": [46.8727701949, 0.0622118082158]}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "598d1cb82bb2a4dd9f4079186618e9056325a76c", "fields": {"code_postal": "86330", "code_commune_insee": "86161", "libell_d_acheminement": "MONCONTOUR", "ligne_5": "ST CHARTRES", "nom_de_la_commune": "MONCONTOUR", "coordonnees_gps": [46.8727701949, 0.0622118082158]}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6849b17417669887edd6899374259a26b4d3fdd3", "fields": {"nom_de_la_commune": "MONDION", "libell_d_acheminement": "MONDION", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86162"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69558a0dd51b8f68fa6cb6fa202a39e4f7a883d7", "fields": {"nom_de_la_commune": "MONTMORILLON", "libell_d_acheminement": "MONTMORILLON", "code_postal": "86500", "coordonnees_gps": [46.4016637433, 0.859768107385], "code_commune_insee": "86165"}, "geometry": {"type": "Point", "coordinates": [0.859768107385, 46.4016637433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c6065f7ee3c91b6026833c75704b9ea66f33490", "fields": {"nom_de_la_commune": "MORTON", "libell_d_acheminement": "MORTON", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86169"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d167eb2d07c89ffa98afde547332ce4464f3e85f", "fields": {"nom_de_la_commune": "MOUSSAC", "libell_d_acheminement": "MOUSSAC", "code_postal": "86150", "coordonnees_gps": [46.2498879507, 0.661977427311], "code_commune_insee": "86171"}, "geometry": {"type": "Point", "coordinates": [0.661977427311, 46.2498879507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ea6844ec91a53cc0440de0e3922aac367ebbf8", "fields": {"nom_de_la_commune": "NERIGNAC", "libell_d_acheminement": "NERIGNAC", "code_postal": "86150", "coordonnees_gps": [46.2498879507, 0.661977427311], "code_commune_insee": "86176"}, "geometry": {"type": "Point", "coordinates": [0.661977427311, 46.2498879507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ab5136c39d75af41599ecc43b9d04e134950e23", "fields": {"nom_de_la_commune": "NUEIL SOUS FAYE", "libell_d_acheminement": "NUEIL SOUS FAYE", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86181"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a1f765dc9e1732096b75ec0780f5ad11134acd0", "fields": {"nom_de_la_commune": "PAYRE", "libell_d_acheminement": "PAYRE", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86188"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b33f65d46d3c0b64220a1c4f12fbbc984f60eba1", "fields": {"nom_de_la_commune": "PERSAC", "libell_d_acheminement": "PERSAC", "code_postal": "86320", "coordonnees_gps": [46.3927181385, 0.726435061295], "code_commune_insee": "86190"}, "geometry": {"type": "Point", "coordinates": [0.726435061295, 46.3927181385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fc5b17765531b599ff6bad4df6d1bdfd458ce93", "fields": {"nom_de_la_commune": "POITIERS", "libell_d_acheminement": "POITIERS", "code_postal": "86000", "coordonnees_gps": [46.5833929687, 0.359226445482], "code_commune_insee": "86194"}, "geometry": {"type": "Point", "coordinates": [0.359226445482, 46.5833929687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb217a8d4dfc44febe23093d96291f2fba9910ca", "fields": {"nom_de_la_commune": "AILLIANVILLE", "libell_d_acheminement": "AILLIANVILLE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52003"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4cdf83d1c46f439aa626070b9e301f1054b07d6", "fields": {"nom_de_la_commune": "ALLICHAMPS", "libell_d_acheminement": "ALLICHAMPS", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52006"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6241f20799b2d3c5f0c1a166a16b1354d3911e42", "fields": {"code_postal": "52700", "code_commune_insee": "52008", "libell_d_acheminement": "ANDELOT BLANCHEVILLE", "ligne_5": "BLANCHEVILLE", "nom_de_la_commune": "ANDELOT BLANCHEVILLE", "coordonnees_gps": [48.2458514312, 5.38109938015]}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c30b9c57b3436aab8c93678cfd2178510008e8b7", "fields": {"nom_de_la_commune": "ANROSEY", "libell_d_acheminement": "ANROSEY", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52013"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5cf5c359f2ff28428337e76194b3aaf16d6e359", "fields": {"nom_de_la_commune": "ARBIGNY SOUS VARENNES", "libell_d_acheminement": "ARBIGNY SOUS VARENNES", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52015"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "437df0c7860a39febeda2c249e78ad26fd2981a5", "fields": {"nom_de_la_commune": "ARNANCOURT", "libell_d_acheminement": "ARNANCOURT", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52019"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33818b702485760918a9b67b58bb7d492c69bd27", "fields": {"nom_de_la_commune": "AUTIGNY LE GRAND", "libell_d_acheminement": "AUTIGNY LE GRAND", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52029"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f232457697b6c329e7d23696f07dcb3459e4367b", "fields": {"nom_de_la_commune": "AVRECOURT", "libell_d_acheminement": "AVRECOURT", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52033"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c23954229668e968ca561124aa8b44864a3924f0", "fields": {"nom_de_la_commune": "BEAUCHEMIN", "libell_d_acheminement": "BEAUCHEMIN", "code_postal": "52260", "coordonnees_gps": [47.9429449859, 5.2580157459], "code_commune_insee": "52042"}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f68942b3b1dc45c30b086a4e2be392c003d2c101", "fields": {"nom_de_la_commune": "BELMONT", "libell_d_acheminement": "BELMONT", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52043"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a896946e9f9d0a1459fdaba1d08d7c1df79f8d35", "fields": {"nom_de_la_commune": "ROCHES BETTAINCOURT", "libell_d_acheminement": "ROCHES BETTAINCOURT", "code_postal": "52270", "coordonnees_gps": [48.329589946, 5.25765158251], "code_commune_insee": "52044"}, "geometry": {"type": "Point", "coordinates": [5.25765158251, 48.329589946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2388b413aff3754d6ba2607cf9b24da7d8ba80a9", "fields": {"code_postal": "52340", "code_commune_insee": "52050", "libell_d_acheminement": "BIESLES", "ligne_5": "LE PUITS DES MEZES", "nom_de_la_commune": "BIESLES", "coordonnees_gps": [48.1142571752, 5.32025976914]}, "geometry": {"type": "Point", "coordinates": [5.32025976914, 48.1142571752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a69ec92af295431f4b435286dfb55f04ed73f60f", "fields": {"nom_de_la_commune": "BLESSONVILLE", "libell_d_acheminement": "BLESSONVILLE", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52056"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92037053dfc079fd56642d22f306f9417e9bdeb5", "fields": {"nom_de_la_commune": "BLUMERAY", "libell_d_acheminement": "BLUMERAY", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52057"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc7da047caaa5fefb677e4778eb04065e1702539", "fields": {"nom_de_la_commune": "BOURBONNE LES BAINS", "libell_d_acheminement": "BOURBONNE LES BAINS", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52060"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25b635e3497e481beafa89e41bfc4c24bd4aaada", "fields": {"nom_de_la_commune": "BOURMONT", "libell_d_acheminement": "BOURMONT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52064"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bc3496ac26b47129ff99893a9e91d7cb20f4450", "fields": {"code_postal": "52150", "code_commune_insee": "52064", "libell_d_acheminement": "BOURMONT", "ligne_5": "GONAINCOURT", "nom_de_la_commune": "BOURMONT", "coordonnees_gps": [48.1917177947, 5.60510608882]}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0908ea19af8912764f5df9d97d63c2716c5a5833", "fields": {"nom_de_la_commune": "BREUVANNES EN BASSIGNY", "libell_d_acheminement": "BREUVANNES EN BASSIGNY", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52074"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c86ec663b37b565100a365189a31f2d899d621f", "fields": {"nom_de_la_commune": "BRIAUCOURT", "libell_d_acheminement": "BRIAUCOURT", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52075"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8d85d56aa95b29265f663fbce9f317b8a7f946a", "fields": {"nom_de_la_commune": "BUGNIERES", "libell_d_acheminement": "BUGNIERES", "code_postal": "52210", "coordonnees_gps": [47.9325249173, 5.04140809229], "code_commune_insee": "52082"}, "geometry": {"type": "Point", "coordinates": [5.04140809229, 47.9325249173]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac51478af6dd6402dc4b600d0a972270af7c4c9f", "fields": {"code_postal": "52500", "code_commune_insee": "52083", "libell_d_acheminement": "CHAMPSEVRAINE", "ligne_5": "BUSSIERES LES BELMONT", "nom_de_la_commune": "CHAMPSEVRAINE", "coordonnees_gps": [47.7590950974, 5.58361312095]}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "802837687dd1e2833befcc0fc79a65a639aa7c35", "fields": {"nom_de_la_commune": "CELSOY", "libell_d_acheminement": "CELSOY", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52090"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30adffd2f54364f10e99ea6c8bb058d37cd582c2", "fields": {"nom_de_la_commune": "CERISIERES", "libell_d_acheminement": "CERISIERES", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52091"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad914bffa6b42de0670cf7e9376e93e57a808610", "fields": {"nom_de_la_commune": "VALS DES TILLES", "libell_d_acheminement": "VALS DES TILLES", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52094"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96a0f1b75b27c32268b37ea0bde5058716fa71d3", "fields": {"code_postal": "52160", "code_commune_insee": "52094", "libell_d_acheminement": "VALS DES TILLES", "ligne_5": "LAMARGELLE AUX BOIS", "nom_de_la_commune": "VALS DES TILLES", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b9305b3c23a5a33d164f9804af87bbb1f9675af", "fields": {"code_postal": "52160", "code_commune_insee": "52094", "libell_d_acheminement": "VALS DES TILLES", "ligne_5": "MUSSEAU", "nom_de_la_commune": "VALS DES TILLES", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6132b8d27d33a381c3a8646560ce6fa8ced551e", "fields": {"code_postal": "52160", "code_commune_insee": "52094", "libell_d_acheminement": "VALS DES TILLES", "ligne_5": "VILLEMORON", "nom_de_la_commune": "VALS DES TILLES", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dbc71ab0044cb4fd27b2df01cd1ac027f533b9e", "fields": {"nom_de_la_commune": "CHARMES EN L ANGLE", "libell_d_acheminement": "CHARMES EN L ANGLE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52109"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13a11356a2e270edfc6703bb8e8b41a86c381f99", "fields": {"nom_de_la_commune": "CHATENAY MACHERON", "libell_d_acheminement": "CHATENAY MACHERON", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52115"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934ed3381610c18f2b47e8aff6d80ac705400330", "fields": {"nom_de_la_commune": "CHAMARANDES CHOIGNES", "libell_d_acheminement": "CHAMARANDES CHOIGNES", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52125"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7071a987c89cf7be1a8033a1ac59bb65ecf6890", "fields": {"nom_de_la_commune": "CIRFONTAINES EN ORNOIS", "libell_d_acheminement": "CIRFONTAINES EN ORNOIS", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52131"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06792fba19898a6d64a323bbfe132d2d7d23fadd", "fields": {"nom_de_la_commune": "COLMIER LE BAS", "libell_d_acheminement": "COLMIER LE BAS", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52137"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ba80b4e5959b81b7b90396fb1e8b7a6a9ce02fa", "fields": {"nom_de_la_commune": "COLMIER LE HAUT", "libell_d_acheminement": "COLMIER LE HAUT", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52138"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7b45b0318833489ff47779b8591e8b6475f69b", "fields": {"code_postal": "52330", "code_commune_insee": "52140", "libell_d_acheminement": "COLOMBEY LES DEUX EGLISES", "ligne_5": "LAVILLENEUVE AUX FRESNES", "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", "coordonnees_gps": [48.2048643897, 4.94792776969]}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbaf70979c51d717ded130070ad2b66b5d435c78", "fields": {"nom_de_la_commune": "CONDES", "libell_d_acheminement": "CONDES", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52141"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f878651019d92ea132bdbfff88c5a466a1f029f", "fields": {"nom_de_la_commune": "COUBLANC", "libell_d_acheminement": "COUBLANC", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52145"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d8daa1975e01eff7430707407fd1884ba750b6a", "fields": {"nom_de_la_commune": "COURCELLES SUR BLAISE", "libell_d_acheminement": "COURCELLES SUR BLAISE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52149"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c10847a556ce77b492db1529abb6886cafdfb36", "fields": {"nom_de_la_commune": "CUVES", "libell_d_acheminement": "CUVES", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52159"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8804564c27658760170010bf1e966f3a2d8383e", "fields": {"nom_de_la_commune": "DAMPIERRE", "libell_d_acheminement": "DAMPIERRE", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52163"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a38fafd0734f022263aef5dc3ae5f1f626fce6", "fields": {"nom_de_la_commune": "DOMBLAIN", "libell_d_acheminement": "DOMBLAIN", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52169"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18d02f45351e67546beca6e38cac18d255e27540", "fields": {"nom_de_la_commune": "DOMMARTIN LE ST PERE", "libell_d_acheminement": "DOMMARTIN LE ST PERE", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52172"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f723e9fbc4c4bfee1f5e0cbaea912a86445dde9c", "fields": {"nom_de_la_commune": "DOULEVANT LE CHATEAU", "libell_d_acheminement": "DOULEVANT LE CHATEAU", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52178"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de2c01dc492a61dc2de41c3f0876b288f074773", "fields": {"nom_de_la_commune": "ECHENAY", "libell_d_acheminement": "ECHENAY", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52181"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33ba48d9c2f1f906285e0e68f196b475bd20f686", "fields": {"nom_de_la_commune": "ECLARON BRAUCOURT STE LIVIERE", "libell_d_acheminement": "ECLARON BRAUCOURT STE LIVIERE", "code_postal": "52290", "coordonnees_gps": [48.5761520145, 4.85527369999], "code_commune_insee": "52182"}, "geometry": {"type": "Point", "coordinates": [4.85527369999, 48.5761520145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "800c7f7389275ee3872b87b1db12d23c2ea3cba2", "fields": {"code_postal": "52190", "code_commune_insee": "52189", "libell_d_acheminement": "LE VAL D ESNOMS", "ligne_5": "COURCELLES VAL D ESNOMS", "nom_de_la_commune": "LE VAL D ESNOMS", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c35bde9862c1c0faa2237b84c8f39596bcdc2cf1", "fields": {"nom_de_la_commune": "ESNOUVEAUX", "libell_d_acheminement": "ESNOUVEAUX", "code_postal": "52340", "coordonnees_gps": [48.1142571752, 5.32025976914], "code_commune_insee": "52190"}, "geometry": {"type": "Point", "coordinates": [5.32025976914, 48.1142571752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1641eb4602d7d5e04cdd47937c962859a2d4c3f1", "fields": {"code_postal": "52410", "code_commune_insee": "52194", "libell_d_acheminement": "EURVILLE BIENVILLE", "ligne_5": "BIENVILLE", "nom_de_la_commune": "EURVILLE BIENVILLE", "coordonnees_gps": [48.5892998637, 5.03091312346]}, "geometry": {"type": "Point", "coordinates": [5.03091312346, 48.5892998637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48b57463052a57c61d0a165b35b995486532fd67", "fields": {"nom_de_la_commune": "FAVEROLLES", "libell_d_acheminement": "FAVEROLLES", "code_postal": "52260", "coordonnees_gps": [47.9429449859, 5.2580157459], "code_commune_insee": "52196"}, "geometry": {"type": "Point", "coordinates": [5.2580157459, 47.9429449859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8af6f6231c8e47aeb989d757859a72cac6c14c82", "fields": {"nom_de_la_commune": "FLAMMERECOURT", "libell_d_acheminement": "FLAMMERECOURT", "code_postal": "52110", "coordonnees_gps": [48.3635578917, 4.93134168199], "code_commune_insee": "52201"}, "geometry": {"type": "Point", "coordinates": [4.93134168199, 48.3635578917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862f11fbc5d68eba83cad3acdc8c7f212b5cea44", "fields": {"code_postal": "52000", "code_commune_insee": "52205", "libell_d_acheminement": "FOULAIN", "ligne_5": "CRENAY", "nom_de_la_commune": "FOULAIN", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7073ef0dfc6f218313309384ea39d094aed16254", "fields": {"nom_de_la_commune": "FRESNES SUR APANCE", "libell_d_acheminement": "FRESNES SUR APANCE", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52208"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d95e847a39e09bdf39bb944993058996e667e4de", "fields": {"nom_de_la_commune": "FRONCLES", "libell_d_acheminement": "FRONCLES", "code_postal": "52320", "coordonnees_gps": [48.287832359, 5.09541662675], "code_commune_insee": "52211"}, "geometry": {"type": "Point", "coordinates": [5.09541662675, 48.287832359]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8c502ebeeb91c978a14292cda5a804b40c31941", "fields": {"nom_de_la_commune": "GERMISAY", "libell_d_acheminement": "GERMISAY", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52219"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c76d04b310f710a67c519bc3b5bde466e956dc", "fields": {"nom_de_la_commune": "GONCOURT", "libell_d_acheminement": "GONCOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52225"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51c51d57716629b543481b67efd5971c88c95c2", "fields": {"nom_de_la_commune": "GUINDRECOURT SUR BLAISE", "libell_d_acheminement": "GUINDRECOURT SUR BLAISE", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52232"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73d2f11fc3930f81128021ce58b033c9663aed66", "fields": {"nom_de_la_commune": "GUYONVELLE", "libell_d_acheminement": "GUYONVELLE", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52233"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1abb3f6f6f6a95316fdb64102a43e639cc6d4f06", "fields": {"nom_de_la_commune": "HACOURT", "libell_d_acheminement": "HACOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52234"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f53e676cb17ea41faf771092aeb63550d2b2704", "fields": {"nom_de_la_commune": "HARREVILLE LES CHANTEURS", "libell_d_acheminement": "HARREVILLE LES CHANTEURS", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52237"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a4a472db7854aab5928645bc6a71b42225a5de6", "fields": {"nom_de_la_commune": "HAUTE AMANCE", "libell_d_acheminement": "HAUTE AMANCE", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52242"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f02086dc1f8d8087d589180b9927c9f1716466", "fields": {"code_postal": "52600", "code_commune_insee": "52242", "libell_d_acheminement": "HAUTE AMANCE", "ligne_5": "MONTLANDON", "nom_de_la_commune": "HAUTE AMANCE", "coordonnees_gps": [47.7926178231, 5.43469720671]}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e8104ccdbbce4550e174f3ee27e0d8d0b05446a", "fields": {"nom_de_la_commune": "HUMBERVILLE", "libell_d_acheminement": "HUMBERVILLE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52245"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d86b1d49725bd798d82a15ad7d9a3a7933a32b33", "fields": {"code_postal": "52000", "code_commune_insee": "52251", "libell_d_acheminement": "JONCHERY", "ligne_5": "LAHARMAND", "nom_de_la_commune": "JONCHERY", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2342351986e41227ac637c2fabce6739f911c8f3", "fields": {"nom_de_la_commune": "LACHAPELLE EN BLAISY", "libell_d_acheminement": "LACHAPELLE EN BLAISY", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52254"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d75a1c2018a1931d9ded04d144da279d300d8c6", "fields": {"nom_de_la_commune": "LANEUVELLE", "libell_d_acheminement": "LANEUVELLE", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52264"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13880b0f02b8921160924dc6227d6fc682072e1b", "fields": {"code_postal": "52170", "code_commune_insee": "52265", "libell_d_acheminement": "BAYARD SUR MARNE", "ligne_5": "LANEUVILLE A BAYARD", "nom_de_la_commune": "BAYARD SUR MARNE", "coordonnees_gps": [48.5434791123, 5.11650934546]}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c1e689385a1b63a4ecb0ba7a76e7b768e78551f", "fields": {"nom_de_la_commune": "LARIVIERE ARNONCOURT", "libell_d_acheminement": "LARIVIERE ARNONCOURT", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52273"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b176babbc866b11125dc476776740c5cd0adbe8c", "fields": {"code_postal": "52400", "code_commune_insee": "52273", "libell_d_acheminement": "LARIVIERE ARNONCOURT", "ligne_5": "ARNONCOURT SUR APANCE", "nom_de_la_commune": "LARIVIERE ARNONCOURT", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdf04ce0c4f2ad25e1e5540cbc5560cfc3502524", "fields": {"code_postal": "52120", "code_commune_insee": "52274", "libell_d_acheminement": "LATRECEY ORMOY SUR AUBE", "ligne_5": "ORMOY SUR AUBE", "nom_de_la_commune": "LATRECEY ORMOY SUR AUBE", "coordonnees_gps": [48.0490446156, 4.88638529419]}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deb3a734860d43de5ee8a74a2408ae73e8297c7f", "fields": {"nom_de_la_commune": "LECEY", "libell_d_acheminement": "LECEY", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52280"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69f08426b262ec1caba42edf92e9ffd47711cb05", "fields": {"nom_de_la_commune": "LEURVILLE", "libell_d_acheminement": "LEURVILLE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52286"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "933568a2a0dd93af9226bf88094b62da84a9ab0d", "fields": {"code_postal": "52230", "code_commune_insee": "52288", "libell_d_acheminement": "LEZEVILLE", "ligne_5": "LANEUVILLE AU BOIS", "nom_de_la_commune": "LEZEVILLE", "coordonnees_gps": [48.4233848371, 5.31749003055]}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8cde8bb8fdd46c41a95fe08a8b5ff7f738edc64", "fields": {"nom_de_la_commune": "LIFFOL LE PETIT", "libell_d_acheminement": "LIFFOL LE PETIT", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52289"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d74d9b02b027dab647e81a6fd9bcc68683b5b4cf", "fields": {"nom_de_la_commune": "LOUVEMONT", "libell_d_acheminement": "LOUVEMONT", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52294"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2b6242a2a914c12a6415b543b80cd6e7c1a4a8", "fields": {"nom_de_la_commune": "MANOIS", "libell_d_acheminement": "MANOIS", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52306"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f214d8d61e3b992dcf5a8baf735f98263af9c4", "fields": {"nom_de_la_commune": "MAREILLES", "libell_d_acheminement": "MAREILLES", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52313"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bac36d2cc4a7303655a9fb093c065140d06b528", "fields": {"nom_de_la_commune": "MELAY", "libell_d_acheminement": "MELAY", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52318"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab5606f40692e623855ac14f12d720acaaafad1e", "fields": {"nom_de_la_commune": "MOESLAINS", "libell_d_acheminement": "MOESLAINS", "code_postal": "52100", "coordonnees_gps": [48.6465589409, 4.91218675887], "code_commune_insee": "52327"}, "geometry": {"type": "Point", "coordinates": [4.91218675887, 48.6465589409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6115bce8fcad27241dcc07a0dd08bb4ef8c0b049", "fields": {"code_postal": "52220", "code_commune_insee": "52331", "libell_d_acheminement": "LA PORTE DU DER", "ligne_5": "ROBERT MAGNY", "nom_de_la_commune": "LA PORTE DU DER", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "320b2c1787dddcb7c8d7d006b712d989651c744e", "fields": {"code_postal": "52140", "code_commune_insee": "52332", "libell_d_acheminement": "VAL DE MEUSE", "ligne_5": "RECOURT", "nom_de_la_commune": "VAL DE MEUSE", "coordonnees_gps": [47.9980544198, 5.51712697387]}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d008f24a4be7a9573ffebaca5aa07d47b2fefe93", "fields": {"nom_de_la_commune": "MONTOT SUR ROGNON", "libell_d_acheminement": "MONTOT SUR ROGNON", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52335"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0cb8b81f56ff0c6aacf07cb193dcd736fbcfe15", "fields": {"nom_de_la_commune": "MOUILLERON", "libell_d_acheminement": "MOUILLERON", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52344"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77478041ba040261839a4f8c7c04a52c63eb780f", "fields": {"nom_de_la_commune": "NARCY", "libell_d_acheminement": "NARCY", "code_postal": "52170", "coordonnees_gps": [48.5434791123, 5.11650934546], "code_commune_insee": "52347"}, "geometry": {"type": "Point", "coordinates": [5.11650934546, 48.5434791123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69c8b0193ebd025e0beb5719071df1187c2e6e0f", "fields": {"nom_de_la_commune": "NEUILLY SUR SUIZE", "libell_d_acheminement": "NEUILLY SUR SUIZE", "code_postal": "52000", "coordonnees_gps": [48.0957359337, 5.13646133401], "code_commune_insee": "52349"}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208f38d0dbd034140547a572e7f9aa5a4df4b390", "fields": {"nom_de_la_commune": "NEUVELLE LES VOISEY", "libell_d_acheminement": "NEUVELLE LES VOISEY", "code_postal": "52400", "coordonnees_gps": [47.9435382189, 5.71676869059], "code_commune_insee": "52350"}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3de2b6543518a65abfdf1a983c0777f3e6052f0e", "fields": {"nom_de_la_commune": "NOIDANT LE ROCHEUX", "libell_d_acheminement": "NOIDANT LE ROCHEUX", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52355"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b919c417ad9955ef99804d2359432872cfc8534a", "fields": {"nom_de_la_commune": "ORBIGNY AU MONT", "libell_d_acheminement": "ORBIGNY AU MONT", "code_postal": "52360", "coordonnees_gps": [47.9125415495, 5.45916596771], "code_commune_insee": "52362"}, "geometry": {"type": "Point", "coordinates": [5.45916596771, 47.9125415495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e539903c55d405b039acee3a39c9cef4ddfe475", "fields": {"nom_de_la_commune": "ORGES", "libell_d_acheminement": "ORGES", "code_postal": "52120", "coordonnees_gps": [48.0490446156, 4.88638529419], "code_commune_insee": "52365"}, "geometry": {"type": "Point", "coordinates": [4.88638529419, 48.0490446156]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5808b01c1374ea4c30b7878c343a359168aa2a1c", "fields": {"nom_de_la_commune": "PANSEY", "libell_d_acheminement": "PANSEY", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52376"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84edce6a885d378c5b942f466ad0ca54d21a525", "fields": {"code_postal": "52400", "code_commune_insee": "52377", "libell_d_acheminement": "PARNOY EN BASSIGNY", "ligne_5": "FRESNOY EN BASSIGNY", "nom_de_la_commune": "PARNOY EN BASSIGNY", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cf1caf93b3ca92afd8249ada14a1621417cacad", "fields": {"code_postal": "52400", "code_commune_insee": "52377", "libell_d_acheminement": "PARNOY EN BASSIGNY", "ligne_5": "PARNOT", "nom_de_la_commune": "PARNOY EN BASSIGNY", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34f24ae383c4010be19c82ec9a2561ea9b1e9147", "fields": {"nom_de_la_commune": "PERROGNEY LES FONTAINES", "libell_d_acheminement": "PERROGNEY LES FONTAINES", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52384"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fd63f04457ab70613169a98a64caa23031c571c", "fields": {"code_postal": "52160", "code_commune_insee": "52384", "libell_d_acheminement": "PERROGNEY LES FONTAINES", "ligne_5": "PIERREFONTAINES", "nom_de_la_commune": "PERROGNEY LES FONTAINES", "coordonnees_gps": [47.7671949193, 5.06657816053]}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1952aa402cc136143e546fdbbfdc12a396c78e5", "fields": {"nom_de_la_commune": "PERRUSSE", "libell_d_acheminement": "PERRUSSE", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52385"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "722159c1d5b491d82027d4b0ab72e7af2e483c14", "fields": {"nom_de_la_commune": "POINSON LES FAYL", "libell_d_acheminement": "POINSON LES FAYL", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52394"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8065c3b616bb140ac5fe0c20c3c3d35af9684bdd", "fields": {"nom_de_la_commune": "POINSON LES GRANCEY", "libell_d_acheminement": "POINSON LES GRANCEY", "code_postal": "52160", "coordonnees_gps": [47.7671949193, 5.06657816053], "code_commune_insee": "52395"}, "geometry": {"type": "Point", "coordinates": [5.06657816053, 47.7671949193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87c8285bc901af194ca71fadc04128824aa593e9", "fields": {"nom_de_la_commune": "POINSON LES NOGENT", "libell_d_acheminement": "POINSON LES NOGENT", "code_postal": "52800", "coordonnees_gps": [48.0321546961, 5.30922833367], "code_commune_insee": "52396"}, "geometry": {"type": "Point", "coordinates": [5.30922833367, 48.0321546961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79af6a9eb05516775a4a436fb3db64402d2840d", "fields": {"nom_de_la_commune": "POISSONS", "libell_d_acheminement": "POISSONS", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52398"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6650cf203c316df4882cd955c17a4e24cf664825", "fields": {"code_postal": "52400", "code_commune_insee": "52400", "libell_d_acheminement": "LE CHATELET SUR MEUSE", "ligne_5": "BEAUCHARMOY", "nom_de_la_commune": "LE CHATELET SUR MEUSE", "coordonnees_gps": [47.9435382189, 5.71676869059]}, "geometry": {"type": "Point", "coordinates": [5.71676869059, 47.9435382189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c23d376b0627ac75a4a2367099f36fef920efff", "fields": {"code_postal": "52220", "code_commune_insee": "52411", "libell_d_acheminement": "RIVES DERVOISES", "ligne_5": "LOUZE", "nom_de_la_commune": "RIVES DERVOISES", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d5cfe0b88d90167917d78743e85d1dc77b98fea", "fields": {"nom_de_la_commune": "RIVIERES LE BOIS", "libell_d_acheminement": "RIVIERES LE BOIS", "code_postal": "52600", "coordonnees_gps": [47.7926178231, 5.43469720671], "code_commune_insee": "52424"}, "geometry": {"type": "Point", "coordinates": [5.43469720671, 47.7926178231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a16b9f2e5e116173e7488509ce3270a89cd5fc7", "fields": {"nom_de_la_commune": "OLONNE SUR MER", "libell_d_acheminement": "OLONNE SUR MER", "code_postal": "85340", "coordonnees_gps": [46.5499182477, -1.78394732739], "code_commune_insee": "85166"}, "geometry": {"type": "Point", "coordinates": [-1.78394732739, 46.5499182477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b57fc6cf13a3d640af2e36ca81ae3aa4d8a6224f", "fields": {"nom_de_la_commune": "OULMES", "libell_d_acheminement": "OULMES", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85168"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b3cd556b389028663fb3602676d94aba90ab0a0", "fields": {"nom_de_la_commune": "LE PERRIER", "libell_d_acheminement": "LE PERRIER", "code_postal": "85300", "coordonnees_gps": [46.8368087633, -1.89265677262], "code_commune_insee": "85172"}, "geometry": {"type": "Point", "coordinates": [-1.89265677262, 46.8368087633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d07d501bee8767d1f6dd733996fd4439999ad6f1", "fields": {"nom_de_la_commune": "POUILLE", "libell_d_acheminement": "POUILLE", "code_postal": "85570", "coordonnees_gps": [46.5155310965, -0.917757791759], "code_commune_insee": "85181"}, "geometry": {"type": "Point", "coordinates": [-0.917757791759, 46.5155310965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4e9b22a968288f8847bc83d92e4317db82c005b", "fields": {"nom_de_la_commune": "ROCHESERVIERE", "libell_d_acheminement": "ROCHESERVIERE", "code_postal": "85620", "coordonnees_gps": [46.9264110478, -1.50081644431], "code_commune_insee": "85190"}, "geometry": {"type": "Point", "coordinates": [-1.50081644431, 46.9264110478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cac52f142f1b17bd2c9cb13020f9d70f992f0c8", "fields": {"code_postal": "85260", "code_commune_insee": "85197", "libell_d_acheminement": "MONTREVERD", "ligne_5": "ST ANDRE TREIZE VOIES", "nom_de_la_commune": "MONTREVERD", "coordonnees_gps": [46.8968914818, -1.35853673733]}, "geometry": {"type": "Point", "coordinates": [-1.35853673733, 46.8968914818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fc63a2cf217bc75e7b28ddb8a631220a72f457b", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DU LIGNERON", "libell_d_acheminement": "ST CHRISTOPHE DU LIGNERON", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85204"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a920a513a9fee2e7de6876dd0c1bc978151b359", "fields": {"nom_de_la_commune": "ST CYR EN TALMONDAIS", "libell_d_acheminement": "ST CYR EN TALMONDAIS", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85206"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0afb22e0835e74c251b1b9cc99f6f9505e5fec0d", "fields": {"nom_de_la_commune": "STE GEMME LA PLAINE", "libell_d_acheminement": "STE GEMME LA PLAINE", "code_postal": "85400", "coordonnees_gps": [46.4597818652, -1.17474717028], "code_commune_insee": "85216"}, "geometry": {"type": "Point", "coordinates": [-1.17474717028, 46.4597818652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0620a4a735584d336561f202a1821f2736f08bd2", "fields": {"nom_de_la_commune": "ST JEAN DE BEUGNE", "libell_d_acheminement": "ST JEAN DE BEUGNE", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85233"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fdf84183ba0f57e177af8bc778cd557a0ec5152", "fields": {"nom_de_la_commune": "ST JEAN DE MONTS", "libell_d_acheminement": "ST JEAN DE MONTS", "code_postal": "85160", "coordonnees_gps": [46.8019325968, -2.04782983324], "code_commune_insee": "85234"}, "geometry": {"type": "Point", "coordinates": [-2.04782983324, 46.8019325968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "693e44e4baa9dea2be1a67ac11fd885b6dfaa19c", "fields": {"nom_de_la_commune": "ST LAURENT DE LA SALLE", "libell_d_acheminement": "ST LAURENT DE LA SALLE", "code_postal": "85410", "coordonnees_gps": [46.5977381891, -0.875564546454], "code_commune_insee": "85237"}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a0783bdbb27015f37a64ee1e2f3350411dd3b6", "fields": {"nom_de_la_commune": "ST MAIXENT SUR VIE", "libell_d_acheminement": "ST MAIXENT SUR VIE", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85239"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791e077d85b405a537cacef3dead1f9ad246f788", "fields": {"nom_de_la_commune": "ST MESMIN", "libell_d_acheminement": "ST MESMIN", "code_postal": "85700", "coordonnees_gps": [46.7673763224, -0.80165823115], "code_commune_insee": "85254"}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592047e0fe2474b953c333ef5f149847412ae1b5", "fields": {"nom_de_la_commune": "ST PIERRE DU CHEMIN", "libell_d_acheminement": "ST PIERRE DU CHEMIN", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85264"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dd88925217c60e3b47cd0459579a63ff43f1a57", "fields": {"nom_de_la_commune": "ST VALERIEN", "libell_d_acheminement": "ST VALERIEN", "code_postal": "85570", "coordonnees_gps": [46.5155310965, -0.917757791759], "code_commune_insee": "85274"}, "geometry": {"type": "Point", "coordinates": [-0.917757791759, 46.5155310965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd95d124dfda65df74f9925377f3e800085da6db", "fields": {"nom_de_la_commune": "TALMONT ST HILAIRE", "libell_d_acheminement": "TALMONT ST HILAIRE", "code_postal": "85440", "coordonnees_gps": [46.491465438, -1.58784266413], "code_commune_insee": "85288"}, "geometry": {"type": "Point", "coordinates": [-1.58784266413, 46.491465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba2665cfe933478327792ea3fed3e28c954a8a0", "fields": {"code_postal": "85440", "code_commune_insee": "85288", "libell_d_acheminement": "TALMONT ST HILAIRE", "ligne_5": "ST HILAIRE DE TALMONT", "nom_de_la_commune": "TALMONT ST HILAIRE", "coordonnees_gps": [46.491465438, -1.58784266413]}, "geometry": {"type": "Point", "coordinates": [-1.58784266413, 46.491465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "414275ca6a804f7459bcb29ebcddde2f751afa78", "fields": {"nom_de_la_commune": "LA TRANCHE SUR MER", "libell_d_acheminement": "LA TRANCHE SUR MER", "code_postal": "85360", "coordonnees_gps": [46.3564248378, -1.43105723636], "code_commune_insee": "85294"}, "geometry": {"type": "Point", "coordinates": [-1.43105723636, 46.3564248378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "300bb9ad922578598e74d435a5aff129beceb3c5", "fields": {"nom_de_la_commune": "TREIZE SEPTIERS", "libell_d_acheminement": "TREIZE SEPTIERS", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85295"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63c9cf07a5acc6b5cef49a840dd63882d203f866", "fields": {"nom_de_la_commune": "LA FAUTE SUR MER", "libell_d_acheminement": "LA FAUTE SUR MER", "code_postal": "85460", "coordonnees_gps": [46.3131819817, -1.28712096962], "code_commune_insee": "85307"}, "geometry": {"type": "Point", "coordinates": [-1.28712096962, 46.3131819817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38a191136160d2dbf6206d09571b84f84d5a07e", "fields": {"nom_de_la_commune": "ANCHE", "libell_d_acheminement": "ANCHE", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86003"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9962117c75bc5ba89da2679a57849223afad771f", "fields": {"nom_de_la_commune": "AYRON", "libell_d_acheminement": "AYRON", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86017"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9be6b029a91dd571c3aa1b2248dd05c84c2cb50", "fields": {"nom_de_la_commune": "BERRIE", "libell_d_acheminement": "BERRIE", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86022"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9de030613e498a7c8a82c175f27cbe74e752b5", "fields": {"nom_de_la_commune": "BETHINES", "libell_d_acheminement": "BETHINES", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86025"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7656ed63e413747a97e9d476fb0a492cd38ca479", "fields": {"nom_de_la_commune": "BIGNOUX", "libell_d_acheminement": "BIGNOUX", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86028"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac65ca1d4a92de48e58ad23eaa91ebeb74ae42b3", "fields": {"nom_de_la_commune": "BUXEUIL", "libell_d_acheminement": "BUXEUIL", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "86042"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c513b3689883be2d4f25208302583c1adf9e79ad", "fields": {"nom_de_la_commune": "CHALAIS", "libell_d_acheminement": "CHALAIS", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86049"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3331404e73aebb3412e462afca15af3b45479cdb", "fields": {"nom_de_la_commune": "LA CHAPELLE MONTREUIL", "libell_d_acheminement": "LA CHAPELLE MONTREUIL", "code_postal": "86470", "coordonnees_gps": [46.5459680342, 0.0877138894846], "code_commune_insee": "86056"}, "geometry": {"type": "Point", "coordinates": [0.0877138894846, 46.5459680342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea5c27534b91bc5b5e99ebe100183d2a67aa70e4", "fields": {"nom_de_la_commune": "CHARRAIS", "libell_d_acheminement": "CHARRAIS", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86060"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4866c9bff4e9cb408b11344e627858e1b26d139", "fields": {"nom_de_la_commune": "CHAUNAY", "libell_d_acheminement": "CHAUNAY", "code_postal": "86510", "coordonnees_gps": [46.2231732444, 0.176181727921], "code_commune_insee": "86068"}, "geometry": {"type": "Point", "coordinates": [0.176181727921, 46.2231732444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eef3d334ce4eaa6e677c075507ee8bc02ed8b06", "fields": {"nom_de_la_commune": "LA CHAUSSEE", "libell_d_acheminement": "LA CHAUSSEE", "code_postal": "86330", "coordonnees_gps": [46.8727701949, 0.0622118082158], "code_commune_insee": "86069"}, "geometry": {"type": "Point", "coordinates": [0.0622118082158, 46.8727701949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b570977cb0ea5a89724ffcab41c899b1f168de27", "fields": {"nom_de_la_commune": "CHENECHE", "libell_d_acheminement": "CHENECHE", "code_postal": "86380", "coordonnees_gps": [46.7375179238, 0.3291987023], "code_commune_insee": "86071"}, "geometry": {"type": "Point", "coordinates": [0.3291987023, 46.7375179238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f524f137700e45fe9e88a321498cefdab8e27a9", "fields": {"nom_de_la_commune": "CHOUPPES", "libell_d_acheminement": "CHOUPPES", "code_postal": "86110", "coordonnees_gps": [46.7882401034, 0.151168939144], "code_commune_insee": "86075"}, "geometry": {"type": "Point", "coordinates": [0.151168939144, 46.7882401034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fac2d5969f2bcbc730aaf7c4462c90427b5a5525", "fields": {"nom_de_la_commune": "CIVRAY", "libell_d_acheminement": "CIVRAY", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86078"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c3f985b0dbd435e38a8a2baf36a9f2dfd4df05", "fields": {"code_postal": "86200", "code_commune_insee": "86079", "libell_d_acheminement": "LA ROCHE RIGAULT", "ligne_5": "LE BOUCHET", "nom_de_la_commune": "LA ROCHE RIGAULT", "coordonnees_gps": [46.998807994, 0.139457341652]}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed68ed1e8c3db3ee82e987153e1f86b8244b4d9b", "fields": {"nom_de_la_commune": "COUHE", "libell_d_acheminement": "COUHE", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86082"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dda34a50b17a39a88ccb8a63968c71acfc2c0e2", "fields": {"nom_de_la_commune": "DANGE ST ROMAIN", "libell_d_acheminement": "DANGE ST ROMAIN", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86092"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a99aa2146f960bf7524759a4c1628a18d769377", "fields": {"nom_de_la_commune": "DIENNE", "libell_d_acheminement": "DIENNE", "code_postal": "86410", "coordonnees_gps": [46.402745465, 0.573301169614], "code_commune_insee": "86094"}, "geometry": {"type": "Point", "coordinates": [0.573301169614, 46.402745465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18e9e84b8e62f858de45b4953bb66e8ec04a6d8d", "fields": {"nom_de_la_commune": "DOUSSAY", "libell_d_acheminement": "DOUSSAY", "code_postal": "86140", "coordonnees_gps": [46.8283265591, 0.330477268884], "code_commune_insee": "86096"}, "geometry": {"type": "Point", "coordinates": [0.330477268884, 46.8283265591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cb95d7f3a6ba8c86ef4f6ce4b18b473aa21494a", "fields": {"nom_de_la_commune": "LA FERRIERE AIROUX", "libell_d_acheminement": "LA FERRIERE AIROUX", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86097"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55eb89a4d3544ece8f2c5b9e6e1a284559a3d134", "fields": {"nom_de_la_commune": "FLEIX", "libell_d_acheminement": "FLEIX", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86098"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186109e98c08b130470768227849f763c7148c45", "fields": {"nom_de_la_commune": "FONTAINE LE COMTE", "libell_d_acheminement": "FONTAINE LE COMTE", "code_postal": "86240", "coordonnees_gps": [46.5120250661, 0.298942746534], "code_commune_insee": "86100"}, "geometry": {"type": "Point", "coordinates": [0.298942746534, 46.5120250661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56e516cb74a7f44547f83271619ec951d491b99", "fields": {"nom_de_la_commune": "FROZES", "libell_d_acheminement": "FROZES", "code_postal": "86190", "coordonnees_gps": [46.6225090612, 0.122295078468], "code_commune_insee": "86102"}, "geometry": {"type": "Point", "coordinates": [0.122295078468, 46.6225090612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ea71f3f65e3263b71b70f85354cec9cf468587", "fields": {"nom_de_la_commune": "GENCAY", "libell_d_acheminement": "GENCAY", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86103"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "005ff55edc18e365f1475fc39d5d13df61bf26c8", "fields": {"code_postal": "86390", "code_commune_insee": "86120", "libell_d_acheminement": "LATHUS ST REMY", "ligne_5": "ST REMY EN MONTMORILLON", "nom_de_la_commune": "LATHUS ST REMY", "coordonnees_gps": [46.3309224625, 0.955276450825]}, "geometry": {"type": "Point", "coordinates": [0.955276450825, 46.3309224625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e277d3e63a0657434130bbb013b4744ad5d2a08", "fields": {"nom_de_la_commune": "LAUTHIERS", "libell_d_acheminement": "LAUTHIERS", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86122"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f2fa51105847577237f5b27f5fe2a20eaf2ef7", "fields": {"nom_de_la_commune": "LEIGNES SUR FONTAINE", "libell_d_acheminement": "LEIGNES SUR FONTAINE", "code_postal": "86300", "coordonnees_gps": [46.547665049, 0.687527272819], "code_commune_insee": "86126"}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d8157aee76a98ba8ec7327733bfb22d803db072", "fields": {"nom_de_la_commune": "LIZANT", "libell_d_acheminement": "LIZANT", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86136"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31a131c2ec9f49dd363715c31591175bab57e8a1", "fields": {"nom_de_la_commune": "LUSIGNAN", "libell_d_acheminement": "LUSIGNAN", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86139"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca1cc16863215395ef3fe46e4bcfce43fbadd4cf", "fields": {"nom_de_la_commune": "MAULAY", "libell_d_acheminement": "MAULAY", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86151"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf03bfaf50e2147406e7e625d94e5b85022d79d0", "fields": {"nom_de_la_commune": "MIGNALOUX BEAUVOIR", "libell_d_acheminement": "MIGNALOUX BEAUVOIR", "code_postal": "86550", "coordonnees_gps": [46.5486117797, 0.416122295546], "code_commune_insee": "86157"}, "geometry": {"type": "Point", "coordinates": [0.416122295546, 46.5486117797]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90cb42a3adca637bb1001fe386feb4254f474af7", "fields": {"nom_de_la_commune": "MIGNE AUXANCES", "libell_d_acheminement": "MIGNE AUXANCES", "code_postal": "86440", "coordonnees_gps": [46.6318288413, 0.305162426468], "code_commune_insee": "86158"}, "geometry": {"type": "Point", "coordinates": [0.305162426468, 46.6318288413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae46d089e4a9f8723a476595f687fa75f279a803", "fields": {"nom_de_la_commune": "MONTHOIRON", "libell_d_acheminement": "MONTHOIRON", "code_postal": "86210", "coordonnees_gps": [46.684748794, 0.605467438883], "code_commune_insee": "86164"}, "geometry": {"type": "Point", "coordinates": [0.605467438883, 46.684748794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31c542b6322eb1bc00f33f6fc5556ba7fff96ece", "fields": {"nom_de_la_commune": "MOULISMES", "libell_d_acheminement": "MOULISMES", "code_postal": "86500", "coordonnees_gps": [46.4016637433, 0.859768107385], "code_commune_insee": "86170"}, "geometry": {"type": "Point", "coordinates": [0.859768107385, 46.4016637433]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3352caca15ae9532baf6330377dde4d1cc2a6b20", "fields": {"nom_de_la_commune": "PRESSAC", "libell_d_acheminement": "PRESSAC", "code_postal": "86460", "coordonnees_gps": [46.1382827455, 0.581140891207], "code_commune_insee": "86200"}, "geometry": {"type": "Point", "coordinates": [0.581140891207, 46.1382827455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e57af3d57e5d72334e5517546a14555adb19d8fd", "fields": {"nom_de_la_commune": "LE ROCHEREAU", "libell_d_acheminement": "LE ROCHEREAU", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86208"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "090e77311cdb6acf9278954d251ce1de832b6b25", "fields": {"nom_de_la_commune": "ST GENEST D AMBIERE", "libell_d_acheminement": "ST GENEST D AMBIERE", "code_postal": "86140", "coordonnees_gps": [46.8283265591, 0.330477268884], "code_commune_insee": "86221"}, "geometry": {"type": "Point", "coordinates": [0.330477268884, 46.8283265591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a90d7093b863efdebbdea56e89ad311effee87", "fields": {"nom_de_la_commune": "ST LEGER DE MONTBRILLAIS", "libell_d_acheminement": "ST LEGER DE MONTBRILLAIS", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86229"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f06d24ff3cd00a585bf54b02ec74b0830e12a7", "fields": {"nom_de_la_commune": "ST MACOUX", "libell_d_acheminement": "ST MACOUX", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86231"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181fb7030e27089380193ba1cb4f7ef10d21994f", "fields": {"code_postal": "86300", "code_commune_insee": "86233", "libell_d_acheminement": "VALDIVIENNE", "ligne_5": "MORTHEMER", "nom_de_la_commune": "VALDIVIENNE", "coordonnees_gps": [46.547665049, 0.687527272819]}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bf32dac918ae4bf3785e800a2d39ee3e571540d", "fields": {"nom_de_la_commune": "ST MAURICE LA CLOUERE", "libell_d_acheminement": "ST MAURICE LA CLOUERE", "code_postal": "86160", "coordonnees_gps": [46.3481384958, 0.384541960559], "code_commune_insee": "86235"}, "geometry": {"type": "Point", "coordinates": [0.384541960559, 46.3481384958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77db4bd37e7b76a398d9d01afa8b7fe44e931507", "fields": {"nom_de_la_commune": "ST ROMAIN", "libell_d_acheminement": "ST ROMAIN", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86242"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1f1b09dcfe440d1d5af69cd425f9b239bde091d", "fields": {"nom_de_la_commune": "ST SAUVANT", "libell_d_acheminement": "ST SAUVANT", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86244"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4768d38edc144d3989f19d1d8236d980464c88ab", "fields": {"nom_de_la_commune": "SENILLE ST SAUVEUR", "libell_d_acheminement": "SENILLE ST SAUVEUR", "code_postal": "86100", "coordonnees_gps": [46.825162468, 0.575853305257], "code_commune_insee": "86245"}, "geometry": {"type": "Point", "coordinates": [0.575853305257, 46.825162468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aa4442b5e21fbdb15781f319a9d954152971e36", "fields": {"nom_de_la_commune": "SAVIGNY LEVESCAULT", "libell_d_acheminement": "SAVIGNY LEVESCAULT", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86256"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de529fc4d0f18cd8b2aeec8ebe14619d05a9448", "fields": {"nom_de_la_commune": "SMARVES", "libell_d_acheminement": "SMARVES", "code_postal": "86240", "coordonnees_gps": [46.5120250661, 0.298942746534], "code_commune_insee": "86263"}, "geometry": {"type": "Point", "coordinates": [0.298942746534, 46.5120250661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87cffe51b8743e7dada48cc5b789b1a7e8647e6e", "fields": {"nom_de_la_commune": "SOSSAIS", "libell_d_acheminement": "SOSSAIS", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86265"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d1a1eb610df0d20617dda8d76ceea63149527a", "fields": {"nom_de_la_commune": "VAUX", "libell_d_acheminement": "VAUX", "code_postal": "86700", "coordonnees_gps": [46.305594158, 0.245644796441], "code_commune_insee": "86278"}, "geometry": {"type": "Point", "coordinates": [0.245644796441, 46.305594158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23e673ba23eb85ef49cf4b9d01c3c358312ed53f", "fields": {"nom_de_la_commune": "VEZIERES", "libell_d_acheminement": "VEZIERES", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86287"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0d98f572d379347c2ef265840e3a2e504a00c85", "fields": {"nom_de_la_commune": "VILLEMORT", "libell_d_acheminement": "VILLEMORT", "code_postal": "86310", "coordonnees_gps": [46.5634568615, 0.886651288682], "code_commune_insee": "86291"}, "geometry": {"type": "Point", "coordinates": [0.886651288682, 46.5634568615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5195e517d47c99c2e6e84d061edf9a3ea392991a", "fields": {"nom_de_la_commune": "YVERSAY", "libell_d_acheminement": "YVERSAY", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86300"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18c5cdbeda8337879dbf10b9513382ef513439c7", "fields": {"nom_de_la_commune": "LES BILLANGES", "libell_d_acheminement": "LES BILLANGES", "code_postal": "87340", "coordonnees_gps": [46.0084101721, 1.47236687338], "code_commune_insee": "87016"}, "geometry": {"type": "Point", "coordinates": [1.47236687338, 46.0084101721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6814e092ef545b43b69a2ac014b9765f5ec67b68", "fields": {"nom_de_la_commune": "BLANZAC", "libell_d_acheminement": "BLANZAC", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87017"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73b868e40d7dea023e4310cf7ca77a90bbe903f3", "fields": {"nom_de_la_commune": "CHALUS", "libell_d_acheminement": "CHALUS", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87032"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a22aa659939ba1729dd4bdcdc48c759ca7cbcb8e", "fields": {"nom_de_la_commune": "CHAMPAGNAC LA RIVIERE", "libell_d_acheminement": "CHAMPAGNAC LA RIVIERE", "code_postal": "87150", "coordonnees_gps": [45.7143690122, 0.872435194134], "code_commune_insee": "87034"}, "geometry": {"type": "Point", "coordinates": [0.872435194134, 45.7143690122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb11d37a5d3b190cf838644665cd474e16b4f329", "fields": {"nom_de_la_commune": "CHAMPNETERY", "libell_d_acheminement": "CHAMPNETERY", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87035"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b9eeddd032d746961783c9faba83d6eefb5eb84", "fields": {"nom_de_la_commune": "CHAPTELAT", "libell_d_acheminement": "CHAPTELAT", "code_postal": "87270", "coordonnees_gps": [45.913437896, 1.25203520749], "code_commune_insee": "87038"}, "geometry": {"type": "Point", "coordinates": [1.25203520749, 45.913437896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6962354b5ba5221da4600bd505a47c0e5c2974c", "fields": {"nom_de_la_commune": "CHATEAUNEUF LA FORET", "libell_d_acheminement": "CHATEAUNEUF LA FORET", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87040"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa072a710e392a36eeebc2ff87d8c8c2d6e210a", "fields": {"nom_de_la_commune": "COUZEIX", "libell_d_acheminement": "COUZEIX", "code_postal": "87270", "coordonnees_gps": [45.913437896, 1.25203520749], "code_commune_insee": "87050"}, "geometry": {"type": "Point", "coordinates": [1.25203520749, 45.913437896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5486a6ac95811e88c8b24ced74b234190554abe4", "fields": {"nom_de_la_commune": "DOMPIERRE LES EGLISES", "libell_d_acheminement": "DOMPIERRE LES EGLISES", "code_postal": "87190", "coordonnees_gps": [46.235451221, 1.21744505876], "code_commune_insee": "87057"}, "geometry": {"type": "Point", "coordinates": [1.21744505876, 46.235451221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ead04addd2ce51155860ce58fee55b62e5c9c728", "fields": {"nom_de_la_commune": "FOLLES", "libell_d_acheminement": "FOLLES", "code_postal": "87250", "coordonnees_gps": [46.1128095458, 1.3801487434], "code_commune_insee": "87067"}, "geometry": {"type": "Point", "coordinates": [1.3801487434, 46.1128095458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd70764d0b6af5bf7f242c7f06578216edbc04ff", "fields": {"nom_de_la_commune": "GLANDON", "libell_d_acheminement": "GLANDON", "code_postal": "87500", "coordonnees_gps": [45.5304259487, 1.21634245482], "code_commune_insee": "87071"}, "geometry": {"type": "Point", "coordinates": [1.21634245482, 45.5304259487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe0354be5064acdcfa8bb0004fe5d608b6737bac", "fields": {"nom_de_la_commune": "GORRE", "libell_d_acheminement": "GORRE", "code_postal": "87310", "coordonnees_gps": [45.7951998863, 0.972217367577], "code_commune_insee": "87073"}, "geometry": {"type": "Point", "coordinates": [0.972217367577, 45.7951998863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d517bb53ffdbbba114144c67ba19df785656f3f9", "fields": {"nom_de_la_commune": "JAVERDAT", "libell_d_acheminement": "JAVERDAT", "code_postal": "87520", "coordonnees_gps": [45.945423937, 1.03102505904], "code_commune_insee": "87078"}, "geometry": {"type": "Point", "coordinates": [1.03102505904, 45.945423937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd8c887eb4d8f868d809abaeb3af6fd184efef5e", "fields": {"nom_de_la_commune": "LAURIERE", "libell_d_acheminement": "LAURIERE", "code_postal": "87370", "coordonnees_gps": [46.0621632693, 1.46879838783], "code_commune_insee": "87083"}, "geometry": {"type": "Point", "coordinates": [1.46879838783, 46.0621632693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8650dce1bf45cf58b66db788adcbc18c2efa748d", "fields": {"code_postal": "87280", "code_commune_insee": "87085", "libell_d_acheminement": "LIMOGES", "ligne_5": "BEAUNE LES MINES", "nom_de_la_commune": "LIMOGES", "coordonnees_gps": [45.8544056025, 1.24905166141]}, "geometry": {"type": "Point", "coordinates": [1.24905166141, 45.8544056025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f21a92e14de3d4c6a67c03579c132952b7f9c51", "fields": {"nom_de_la_commune": "MAISONNAIS SUR TARDOIRE", "libell_d_acheminement": "MAISONNAIS SUR TARDOIRE", "code_postal": "87440", "coordonnees_gps": [45.6750304013, 0.76861145842], "code_commune_insee": "87091"}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71d1a60ae7f364bf7c1e0a8d05a7cd9f887c082", "fields": {"nom_de_la_commune": "MEILHAC", "libell_d_acheminement": "MEILHAC", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87094"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db3f9cadf8888a58b4a1508e918b11886a246443", "fields": {"code_postal": "87330", "code_commune_insee": "87097", "libell_d_acheminement": "VAL D ISSOIRE", "ligne_5": "BUSSIERE BOFFY", "nom_de_la_commune": "VAL D ISSOIRE", "coordonnees_gps": [46.112617356, 0.896746440713]}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c07b41dc5b9258d5a89aa7ab5009aa2afd428e74", "fields": {"nom_de_la_commune": "MOISSANNES", "libell_d_acheminement": "MOISSANNES", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87099"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c599ec876c3da31e8600e13ef0d4cef12ca612ba", "fields": {"nom_de_la_commune": "NANTIAT", "libell_d_acheminement": "NANTIAT", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87103"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5e652ccf3957fcd8237fa78804d6ef247af48a0", "fields": {"nom_de_la_commune": "NEXON", "libell_d_acheminement": "NEXON", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87106"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97c3837efd5f97f2d284329a9123e27b96e346c8", "fields": {"nom_de_la_commune": "SAILLAT SUR VIENNE", "libell_d_acheminement": "SAILLAT SUR VIENNE", "code_postal": "87720", "coordonnees_gps": [45.8711560101, 0.833669136561], "code_commune_insee": "87131"}, "geometry": {"type": "Point", "coordinates": [0.833669136561, 45.8711560101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf72cd9c0652ef9f5311aaad3dc41231664f6dad", "fields": {"nom_de_la_commune": "ST AMAND LE PETIT", "libell_d_acheminement": "ST AMAND LE PETIT", "code_postal": "87120", "coordonnees_gps": [45.7222859172, 1.77753194572], "code_commune_insee": "87132"}, "geometry": {"type": "Point", "coordinates": [1.77753194572, 45.7222859172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8df56bafab59ae5bfae59ff9e23682fa58fc9d7e", "fields": {"nom_de_la_commune": "ST AUVENT", "libell_d_acheminement": "ST AUVENT", "code_postal": "87310", "coordonnees_gps": [45.7951998863, 0.972217367577], "code_commune_insee": "87135"}, "geometry": {"type": "Point", "coordinates": [0.972217367577, 45.7951998863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3ab1f9479824bbd82c3c1689eb305e2eff61c89", "fields": {"nom_de_la_commune": "ST BONNET BRIANCE", "libell_d_acheminement": "ST BONNET BRIANCE", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87138"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09730a9647e2acda3711ae7f50220ad5f7c4750c", "fields": {"nom_de_la_commune": "ST BRICE SUR VIENNE", "libell_d_acheminement": "ST BRICE SUR VIENNE", "code_postal": "87200", "coordonnees_gps": [45.8915461784, 0.908243597507], "code_commune_insee": "87140"}, "geometry": {"type": "Point", "coordinates": [0.908243597507, 45.8915461784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0ec30922099bb59155b8ccf016926b50cb815dd", "fields": {"nom_de_la_commune": "ST GENEST SUR ROSELLE", "libell_d_acheminement": "ST GENEST SUR ROSELLE", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87144"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dee5e4519e84c7add761094116ffce79fd7d19d0", "fields": {"nom_de_la_commune": "ST GILLES LES FORETS", "libell_d_acheminement": "ST GILLES LES FORETS", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87147"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b87734cd3b94237294cc263307e5b4efd70c899d", "fields": {"nom_de_la_commune": "FRESNES SUR MARNE", "libell_d_acheminement": "FRESNES SUR MARNE", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77196"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37221ced4eecbe0beb8f00f377c183bf5049b42b", "fields": {"nom_de_la_commune": "GRESSY", "libell_d_acheminement": "GRESSY", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77214"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "690588b12fc945c732da6df963469c21556c8def", "fields": {"nom_de_la_commune": "GUERCHEVILLE", "libell_d_acheminement": "GUERCHEVILLE", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77220"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d24435976ea8f089d42a45f00f7bfa74c47e894d", "fields": {"nom_de_la_commune": "HAUTEFEUILLE", "libell_d_acheminement": "HAUTEFEUILLE", "code_postal": "77515", "coordonnees_gps": [48.791262965, 2.99641701486], "code_commune_insee": "77224"}, "geometry": {"type": "Point", "coordinates": [2.99641701486, 48.791262965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "440aed007564ebdd6a61c9eba3132646343cae08", "fields": {"nom_de_la_commune": "LA HOUSSAYE EN BRIE", "libell_d_acheminement": "LA HOUSSAYE EN BRIE", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77229"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1f38b5c67b90dc4ae0bfde6800dff504711760", "fields": {"nom_de_la_commune": "ICHY", "libell_d_acheminement": "ICHY", "code_postal": "77890", "coordonnees_gps": [48.1786433192, 2.5341392437], "code_commune_insee": "77230"}, "geometry": {"type": "Point", "coordinates": [2.5341392437, 48.1786433192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e72fe9cd5f51a87551d9e8bf6c90be3139d9eb7b", "fields": {"nom_de_la_commune": "ISLES LES MELDEUSES", "libell_d_acheminement": "ISLES LES MELDEUSES", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77231"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4b00eefddbc75dc5931bc92e380326e7d055074", "fields": {"nom_de_la_commune": "JAULNES", "libell_d_acheminement": "JAULNES", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77236"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6dc9a9f3c85d91ee53ed70f3cdc0e1bca77afe9", "fields": {"nom_de_la_commune": "JOUY SUR MORIN", "libell_d_acheminement": "JOUY SUR MORIN", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77240"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ea4a1712807552befb31a594fe67003ff7afb8", "fields": {"nom_de_la_commune": "LAGNY SUR MARNE", "libell_d_acheminement": "LAGNY SUR MARNE", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77243"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5afb63390b19bcb29a09b77378417ef75b1f0372", "fields": {"nom_de_la_commune": "LAVAL EN BRIE", "libell_d_acheminement": "LAVAL EN BRIE", "code_postal": "77148", "coordonnees_gps": [48.4464731085, 2.99106042028], "code_commune_insee": "77245"}, "geometry": {"type": "Point", "coordinates": [2.99106042028, 48.4464731085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35398f0296b512d1ecf34e6ef6e18cdaef273885", "fields": {"nom_de_la_commune": "LEUDON EN BRIE", "libell_d_acheminement": "LEUDON EN BRIE", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77250"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35f20b7938aa2d56f450738a191d481fe96cd035", "fields": {"nom_de_la_commune": "LONGPERRIER", "libell_d_acheminement": "LONGPERRIER", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77259"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e81c0e48a7ea17df86df29b96e3c102d03965df", "fields": {"code_postal": "77560", "code_commune_insee": "77262", "libell_d_acheminement": "LOUAN VILLEGRUIS FONTAINE", "ligne_5": "FONTAINE SOUS MONTAIGUILLON", "nom_de_la_commune": "LOUAN VILLEGRUIS FONTAINE", "coordonnees_gps": [48.6366559441, 3.38263980516]}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1337f17bd39b703894a214fa4f97304fe87ae0a", "fields": {"code_postal": "77560", "code_commune_insee": "77262", "libell_d_acheminement": "LOUAN VILLEGRUIS FONTAINE", "ligne_5": "VILLEGRUIS", "nom_de_la_commune": "LOUAN VILLEGRUIS FONTAINE", "coordonnees_gps": [48.6366559441, 3.38263980516]}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92cc0b973639dd01833b4dbe2bd945a4495bd094", "fields": {"nom_de_la_commune": "MAISONCELLES EN GATINAIS", "libell_d_acheminement": "MAISONCELLES EN GATINAIS", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77271"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7126d2bed9aafb6c895f8791c506ed3c8f35b0e", "fields": {"nom_de_la_commune": "MARCHEMORET", "libell_d_acheminement": "MARCHEMORET", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77273"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2020afdd7560d7ad0a77283091311cd0cde61f25", "fields": {"nom_de_la_commune": "MAROLLES EN BRIE", "libell_d_acheminement": "MAROLLES EN BRIE", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77278"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d68b76dd5c7a10576962673e90911eaf1378986b", "fields": {"nom_de_la_commune": "MAUREGARD", "libell_d_acheminement": "MAUREGARD", "code_postal": "77990", "coordonnees_gps": [49.0218852255, 2.58516406928], "code_commune_insee": "77282"}, "geometry": {"type": "Point", "coordinates": [2.58516406928, 49.0218852255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d55d266bfcd73cd3c4195b4a01abe9f104b213", "fields": {"nom_de_la_commune": "LE MESNIL AMELOT", "libell_d_acheminement": "LE MESNIL AMELOT", "code_postal": "77990", "coordonnees_gps": [49.0218852255, 2.58516406928], "code_commune_insee": "77291"}, "geometry": {"type": "Point", "coordinates": [2.58516406928, 49.0218852255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d107468296f8e43bdb629f6eb947f2b3ae1c919", "fields": {"nom_de_la_commune": "MITRY MORY", "libell_d_acheminement": "MITRY MORY", "code_postal": "77290", "coordonnees_gps": [48.979596619, 2.61891087151], "code_commune_insee": "77294"}, "geometry": {"type": "Point", "coordinates": [2.61891087151, 48.979596619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d1f00ce42b9808e98a925bca8f4cb36d6a1283", "fields": {"nom_de_la_commune": "MONDREVILLE", "libell_d_acheminement": "MONDREVILLE", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77297"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d8aad9be70c38599a2e5f43f5b43a8cd9eba80", "fields": {"nom_de_la_commune": "MONTIGNY LENCOUP", "libell_d_acheminement": "MONTIGNY LENCOUP", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77311"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f40d937ff15375464b503a700a3c954df95c35c5", "fields": {"code_postal": "77250", "code_commune_insee": "77316", "libell_d_acheminement": "MORET LOING ET ORVANNE", "ligne_5": "EPISY", "nom_de_la_commune": "MORET LOING ET ORVANNE", "coordonnees_gps": [48.3334508388, 2.82847916513]}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad832791dc817fbecd1bec28cfb346a80e0aa3a7", "fields": {"code_postal": "77250", "code_commune_insee": "77316", "libell_d_acheminement": "MORET LOING ET ORVANNE", "ligne_5": "MONTARLOT", "nom_de_la_commune": "MORET LOING ET ORVANNE", "coordonnees_gps": [48.3334508388, 2.82847916513]}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3389f2a3b6b2d5678cf12f3a66cfd874b07e4c2", "fields": {"nom_de_la_commune": "MORMANT", "libell_d_acheminement": "MORMANT", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77317"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad6d66ca9301e1c89b178e9bc61303e68853d751", "fields": {"nom_de_la_commune": "MORTERY", "libell_d_acheminement": "MORTERY", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77319"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6bf752fc73a8924270877f285da715e323dd645", "fields": {"nom_de_la_commune": "MOUROUX", "libell_d_acheminement": "MOUROUX", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77320"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d2bd3fd17e017efb5c5653be654edb89e51b91", "fields": {"nom_de_la_commune": "MOUY SUR SEINE", "libell_d_acheminement": "MOUY SUR SEINE", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77325"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3890cdf41f77bf95b80e806defcad9cf4348081", "fields": {"nom_de_la_commune": "NANTOUILLET", "libell_d_acheminement": "NANTOUILLET", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77332"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be03274cbee175382fe91da3aae52764f9995dd", "fields": {"nom_de_la_commune": "CHAUCONIN NEUFMONTIERS", "libell_d_acheminement": "CHAUCONIN NEUFMONTIERS", "code_postal": "77124", "coordonnees_gps": [48.9687525452, 2.84384652509], "code_commune_insee": "77335"}, "geometry": {"type": "Point", "coordinates": [2.84384652509, 48.9687525452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b896b6176485a522ca132461a6769b7425de9959", "fields": {"nom_de_la_commune": "NOISIEL", "libell_d_acheminement": "NOISIEL", "code_postal": "77186", "coordonnees_gps": [48.8464272863, 2.61915509749], "code_commune_insee": "77337"}, "geometry": {"type": "Point", "coordinates": [2.61915509749, 48.8464272863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3beb207ac984e101979d4d11962c3944de7f5ac8", "fields": {"nom_de_la_commune": "LES ORMES SUR VOULZIE", "libell_d_acheminement": "LES ORMES SUR VOULZIE", "code_postal": "77134", "coordonnees_gps": [48.4594107059, 3.22513517687], "code_commune_insee": "77347"}, "geometry": {"type": "Point", "coordinates": [3.22513517687, 48.4594107059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40bd5abeea5811ddda9e69075873da9b4e99a300", "fields": {"nom_de_la_commune": "OZOUER LE VOULGIS", "libell_d_acheminement": "OZOUER LE VOULGIS", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77352"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d74af9a0996fbf2231b721f986656f5d0691e9c2", "fields": {"nom_de_la_commune": "PAROY", "libell_d_acheminement": "PAROY", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77355"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b13d9f465eb74b0bf41fc32ae25f3dfd9dcb3bc9", "fields": {"nom_de_la_commune": "PENCHARD", "libell_d_acheminement": "PENCHARD", "code_postal": "77124", "coordonnees_gps": [48.9687525452, 2.84384652509], "code_commune_insee": "77358"}, "geometry": {"type": "Point", "coordinates": [2.84384652509, 48.9687525452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38fe3cee0641001f4e8020390ef7f72d9815067c", "fields": {"nom_de_la_commune": "PEZARCHES", "libell_d_acheminement": "PEZARCHES", "code_postal": "77131", "coordonnees_gps": [48.7378222694, 3.01127649042], "code_commune_insee": "77360"}, "geometry": {"type": "Point", "coordinates": [3.01127649042, 48.7378222694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29395686944ddfa75e82671943874b2bb2d45a37", "fields": {"nom_de_la_commune": "LE PLESSIS AUX BOIS", "libell_d_acheminement": "LE PLESSIS AUX BOIS", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77364"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f2dce6668c2a7a71edd4743147b913b3dda0fac", "fields": {"nom_de_la_commune": "LE PLESSIS FEU AUSSOUX", "libell_d_acheminement": "LE PLESSIS FEU AUSSOUX", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77365"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a5c88872a15e59d019d4c794070faf7cd3aac88", "fields": {"nom_de_la_commune": "LE PLESSIS L EVEQUE", "libell_d_acheminement": "LE PLESSIS L EVEQUE", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77366"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b8a0649101332fde238037ba1e1587e2f3d8294", "fields": {"nom_de_la_commune": "POIGNY", "libell_d_acheminement": "POIGNY", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77368"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05965d16dd63895b03be1e78456c62d3a546de18", "fields": {"nom_de_la_commune": "POMPONNE", "libell_d_acheminement": "POMPONNE", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77372"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b5655d44502a1ddc3d6f18dcbe17603d1df7b18", "fields": {"nom_de_la_commune": "PRINGY", "libell_d_acheminement": "PRINGY", "code_postal": "77310", "coordonnees_gps": [48.5292083362, 2.53978127085], "code_commune_insee": "77378"}, "geometry": {"type": "Point", "coordinates": [2.53978127085, 48.5292083362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb8b67e50dec4725da5d47cb7ce299e824b5587b", "fields": {"nom_de_la_commune": "PUISIEUX", "libell_d_acheminement": "PUISIEUX", "code_postal": "77139", "coordonnees_gps": [49.0542002868, 2.91324246435], "code_commune_insee": "77380"}, "geometry": {"type": "Point", "coordinates": [2.91324246435, 49.0542002868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e08a91300dc048b474a22a50bcc1b314b4af84", "fields": {"nom_de_la_commune": "ROUVRES", "libell_d_acheminement": "ROUVRES", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77392"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ef67c68a17e72e52c9f32e6ba62bc44c53d3cdd", "fields": {"nom_de_la_commune": "SAACY SUR MARNE", "libell_d_acheminement": "SAACY SUR MARNE", "code_postal": "77730", "coordonnees_gps": [48.9602103424, 3.21952971251], "code_commune_insee": "77397"}, "geometry": {"type": "Point", "coordinates": [3.21952971251, 48.9602103424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f93c11428e7504fb019fe853c69de96a6ac1f517", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77404"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d319fa43fee1764e82f03da8dcd1dda9f97b497b", "fields": {"nom_de_la_commune": "ST FARGEAU PONTHIERRY", "libell_d_acheminement": "ST FARGEAU PONTHIERRY", "code_postal": "77310", "coordonnees_gps": [48.5292083362, 2.53978127085], "code_commune_insee": "77407"}, "geometry": {"type": "Point", "coordinates": [2.53978127085, 48.5292083362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cfbb1d5778ff1d45b7c29dad166a0c2e38f6213", "fields": {"nom_de_la_commune": "ST MARD", "libell_d_acheminement": "ST MARD", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77420"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2febf0ce23702737615972ee863185424ab5f467", "fields": {"nom_de_la_commune": "ST MARS VIEUX MAISONS", "libell_d_acheminement": "ST MARS VIEUX MAISONS", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77421"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d079779cde6996ae1aae09a95f888d6d6a3e2f65", "fields": {"nom_de_la_commune": "SALINS", "libell_d_acheminement": "SALINS", "code_postal": "77148", "coordonnees_gps": [48.4464731085, 2.99106042028], "code_commune_insee": "77439"}, "geometry": {"type": "Point", "coordinates": [2.99106042028, 48.4464731085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0067f032b5e8bdc3b76224fd8041bd30fa90c78e", "fields": {"nom_de_la_commune": "SAMMERON", "libell_d_acheminement": "SAMMERON", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77440"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa2070b63a103cb88d80deffbf02e5e89c479fc", "fields": {"nom_de_la_commune": "SANCY", "libell_d_acheminement": "SANCY", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77443"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab07824ddf28fc226eabbafa848c4b26acd5e93", "fields": {"nom_de_la_commune": "SOLERS", "libell_d_acheminement": "SOLERS", "code_postal": "77111", "coordonnees_gps": [48.6502963027, 2.71437354828], "code_commune_insee": "77457"}, "geometry": {"type": "Point", "coordinates": [2.71437354828, 48.6502963027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1cabd3f87f34a775290b2d87efea3aa2574c92", "fields": {"nom_de_la_commune": "THOURY FEROTTES", "libell_d_acheminement": "THOURY FEROTTES", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77465"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70a16fa2152c669f9f6bb3c8885badd1fd322a53", "fields": {"nom_de_la_commune": "TORCY", "libell_d_acheminement": "TORCY", "code_postal": "77200", "coordonnees_gps": [48.8536259253, 2.65078543729], "code_commune_insee": "77468"}, "geometry": {"type": "Point", "coordinates": [2.65078543729, 48.8536259253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c5aa95e6943ea9f577cb5c7b9c3803e1f960f12", "fields": {"nom_de_la_commune": "TOUQUIN", "libell_d_acheminement": "TOUQUIN", "code_postal": "77131", "coordonnees_gps": [48.7378222694, 3.01127649042], "code_commune_insee": "77469"}, "geometry": {"type": "Point", "coordinates": [3.01127649042, 48.7378222694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050ba9e09c722b1eb479bc8486ad97a452b5f751", "fields": {"nom_de_la_commune": "TOURNAN EN BRIE", "libell_d_acheminement": "TOURNAN EN BRIE", "code_postal": "77220", "coordonnees_gps": [48.7441435085, 2.75833565592], "code_commune_insee": "77470"}, "geometry": {"type": "Point", "coordinates": [2.75833565592, 48.7441435085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a221400360d1d0faa00003dba3284bee298fad1f", "fields": {"nom_de_la_commune": "TOUSSON", "libell_d_acheminement": "TOUSSON", "code_postal": "77123", "coordonnees_gps": [48.3612793646, 2.50123990973], "code_commune_insee": "77471"}, "geometry": {"type": "Point", "coordinates": [2.50123990973, 48.3612793646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e621666e48f1b9f57824359713224405e2238a8", "fields": {"nom_de_la_commune": "USSY SUR MARNE", "libell_d_acheminement": "USSY SUR MARNE", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77478"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5471da12aa2283b932f9e18c5fde2f51b1bf5236", "fields": {"nom_de_la_commune": "VANVILLE", "libell_d_acheminement": "VANVILLE", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77481"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76507a9d3037ad419932128b24c59145f64630c2", "fields": {"nom_de_la_commune": "VAUX SUR LUNAIN", "libell_d_acheminement": "VAUX SUR LUNAIN", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77489"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82099da71213fb26a090e2a6665275f8d8e2a1c6", "fields": {"nom_de_la_commune": "VERNOU LA CELLE SUR SEINE", "libell_d_acheminement": "VERNOU LA CELLE SUR SEINE", "code_postal": "77670", "coordonnees_gps": [48.4047875044, 2.85078204772], "code_commune_insee": "77494"}, "geometry": {"type": "Point", "coordinates": [2.85078204772, 48.4047875044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "061d27c1dcde57ad7390e4e4473514a742d1e318", "fields": {"nom_de_la_commune": "VILLENEUVE SOUS DAMMARTIN", "libell_d_acheminement": "VILLENEUVE SOUS DAMMARTIN", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77511"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a81098378b93cbdf507268973d55ffa2f939e063", "fields": {"nom_de_la_commune": "VILLIERS SUR SEINE", "libell_d_acheminement": "VILLIERS SUR SEINE", "code_postal": "77114", "coordonnees_gps": [48.4693763813, 3.34027903986], "code_commune_insee": "77522"}, "geometry": {"type": "Point", "coordinates": [3.34027903986, 48.4693763813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13ff951f3f2858c4ec6a829ec05fc849877993e", "fields": {"nom_de_la_commune": "VINANTES", "libell_d_acheminement": "VINANTES", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77525"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699049ea15f879d6a778ad7561075ba145c1b289", "fields": {"nom_de_la_commune": "ADAINVILLE", "libell_d_acheminement": "ADAINVILLE", "code_postal": "78113", "coordonnees_gps": [48.7269719682, 1.6475078387], "code_commune_insee": "78006"}, "geometry": {"type": "Point", "coordinates": [1.6475078387, 48.7269719682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "172c91d0b049fe2f474be6894276e3c96191e731", "fields": {"nom_de_la_commune": "ANDRESY", "libell_d_acheminement": "ANDRESY", "code_postal": "78570", "coordonnees_gps": [48.9796109181, 2.04393218537], "code_commune_insee": "78015"}, "geometry": {"type": "Point", "coordinates": [2.04393218537, 48.9796109181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb29ddd7e7ac199698bedcd51ec1fc1d1cbbd58", "fields": {"nom_de_la_commune": "ARNOUVILLE LES MANTES", "libell_d_acheminement": "ARNOUVILLE LES MANTES", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78020"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19e04aeca7127909fc377a9ee7587c79bd331794", "fields": {"nom_de_la_commune": "BAZOCHES SUR GUYONNE", "libell_d_acheminement": "BAZOCHES SUR GUYONNE", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78050"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfa0c4033c0e3133f4973eb5b78af3d8fb70842", "fields": {"nom_de_la_commune": "BOINVILLE EN MANTOIS", "libell_d_acheminement": "BOINVILLE EN MANTOIS", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78070"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe82a482035547e4cb7ffe003b9198a033510c5", "fields": {"nom_de_la_commune": "BOINVILLE LE GAILLARD", "libell_d_acheminement": "BOINVILLE LE GAILLARD", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78071"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f36bd6d99ebc571f8eaf0f6b465145bd4624fb9", "fields": {"nom_de_la_commune": "BOISSETS", "libell_d_acheminement": "BOISSETS", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78076"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee1656029c9e1c4b75f2e3df192e9f1f88a7f307", "fields": {"nom_de_la_commune": "BOURDONNE", "libell_d_acheminement": "BOURDONNE", "code_postal": "78113", "coordonnees_gps": [48.7269719682, 1.6475078387], "code_commune_insee": "78096"}, "geometry": {"type": "Point", "coordinates": [1.6475078387, 48.7269719682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be9d04b878941f6fd3451f2cddd64cfe3b7f6223", "fields": {"nom_de_la_commune": "LES BREVIAIRES", "libell_d_acheminement": "LES BREVIAIRES", "code_postal": "78610", "coordonnees_gps": [48.7133396179, 1.81485270271], "code_commune_insee": "78108"}, "geometry": {"type": "Point", "coordinates": [1.81485270271, 48.7133396179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03b78c41f272b87959e2de1b95d0d3139c8a8650", "fields": {"nom_de_la_commune": "BUC", "libell_d_acheminement": "BUC", "code_postal": "78530", "coordonnees_gps": [48.7726273347, 2.12495794932], "code_commune_insee": "78117"}, "geometry": {"type": "Point", "coordinates": [2.12495794932, 48.7726273347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "532386d2f0fd677006427d1f85318264924c124b", "fields": {"nom_de_la_commune": "BUCHELAY", "libell_d_acheminement": "BUCHELAY", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78118"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae516ee3f47f02372768be56ae1f088cba1f9e9f", "fields": {"nom_de_la_commune": "BULLION", "libell_d_acheminement": "BULLION", "code_postal": "78830", "coordonnees_gps": [48.6221711105, 1.99864954313], "code_commune_insee": "78120"}, "geometry": {"type": "Point", "coordinates": [1.99864954313, 48.6221711105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "583c31a17c39af689ad6514f37e032041c11a6d1", "fields": {"nom_de_la_commune": "CARRIERES SUR SEINE", "libell_d_acheminement": "CARRIERES SUR SEINE", "code_postal": "78420", "coordonnees_gps": [48.911760159, 2.17840498304], "code_commune_insee": "78124"}, "geometry": {"type": "Point", "coordinates": [2.17840498304, 48.911760159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bf9adf1b017d089c54fa9297fab86995dbd6e2b", "fields": {"nom_de_la_commune": "CHANTELOUP LES VIGNES", "libell_d_acheminement": "CHANTELOUP LES VIGNES", "code_postal": "78570", "coordonnees_gps": [48.9796109181, 2.04393218537], "code_commune_insee": "78138"}, "geometry": {"type": "Point", "coordinates": [2.04393218537, 48.9796109181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64d2fedd38a584da78c7274467099d7be94ccf9", "fields": {"nom_de_la_commune": "CHAPET", "libell_d_acheminement": "CHAPET", "code_postal": "78130", "coordonnees_gps": [48.9830853894, 1.92106334899], "code_commune_insee": "78140"}, "geometry": {"type": "Point", "coordinates": [1.92106334899, 48.9830853894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64a35417c8ac137ac9ad3b5d9f5dcd56d619bf06", "fields": {"code_postal": "78150", "code_commune_insee": "78158", "libell_d_acheminement": "LE CHESNAY", "ligne_5": "PARLY", "nom_de_la_commune": "LE CHESNAY", "coordonnees_gps": [48.8291874065, 2.12052828501]}, "geometry": {"type": "Point", "coordinates": [2.12052828501, 48.8291874065]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a5f7cb98efe073a48072178e8a5864da716f7e2", "fields": {"nom_de_la_commune": "CONDE SUR VESGRE", "libell_d_acheminement": "CONDE SUR VESGRE", "code_postal": "78113", "coordonnees_gps": [48.7269719682, 1.6475078387], "code_commune_insee": "78171"}, "geometry": {"type": "Point", "coordinates": [1.6475078387, 48.7269719682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "936c23a7a898bbce6ee0465f58d2ca94a0bffe74", "fields": {"nom_de_la_commune": "EPONE", "libell_d_acheminement": "EPONE", "code_postal": "78680", "coordonnees_gps": [48.9479879015, 1.81338517582], "code_commune_insee": "78217"}, "geometry": {"type": "Point", "coordinates": [1.81338517582, 48.9479879015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6325214d585ab687404a96f2191d5924edf2ca59", "fields": {"nom_de_la_commune": "L ETANG LA VILLE", "libell_d_acheminement": "L ETANG LA VILLE", "code_postal": "78620", "coordonnees_gps": [48.8670748647, 2.06001000731], "code_commune_insee": "78224"}, "geometry": {"type": "Point", "coordinates": [2.06001000731, 48.8670748647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a367fc004edfa9138964878e24792ee5d57ef9c1", "fields": {"nom_de_la_commune": "LA FALAISE", "libell_d_acheminement": "LA FALAISE", "code_postal": "78410", "coordonnees_gps": [48.9601241693, 1.86465256885], "code_commune_insee": "78230"}, "geometry": {"type": "Point", "coordinates": [1.86465256885, 48.9601241693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb84d82ac8f48190e9ae9d8b0d89680104fc176", "fields": {"nom_de_la_commune": "FOLLAINVILLE DENNEMONT", "libell_d_acheminement": "FOLLAINVILLE DENNEMONT", "code_postal": "78520", "coordonnees_gps": [49.019152235, 1.69317391224], "code_commune_insee": "78239"}, "geometry": {"type": "Point", "coordinates": [1.69317391224, 49.019152235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d45b505590376fab559484495d4e17d509fcfef4", "fields": {"nom_de_la_commune": "FONTENAY LE FLEURY", "libell_d_acheminement": "FONTENAY LE FLEURY", "code_postal": "78330", "coordonnees_gps": [48.8176233654, 2.04685945275], "code_commune_insee": "78242"}, "geometry": {"type": "Point", "coordinates": [2.04685945275, 48.8176233654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f088406cbfe3160325345bb0bee39feb7ec3269b", "fields": {"nom_de_la_commune": "FONTENAY MAUVOISIN", "libell_d_acheminement": "FONTENAY MAUVOISIN", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78245"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569b4cec076e9830e6da8ecc2e8bb32e46c731b2", "fields": {"nom_de_la_commune": "FOURQUEUX", "libell_d_acheminement": "FOURQUEUX", "code_postal": "78112", "coordonnees_gps": [48.8852120834, 2.05407503005], "code_commune_insee": "78251"}, "geometry": {"type": "Point", "coordinates": [2.05407503005, 48.8852120834]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dcb23c2131dbacf283ce2f2a287eedce6ea5591", "fields": {"nom_de_la_commune": "GRANDCHAMP", "libell_d_acheminement": "GRANDCHAMP", "code_postal": "78113", "coordonnees_gps": [48.7269719682, 1.6475078387], "code_commune_insee": "78283"}, "geometry": {"type": "Point", "coordinates": [1.6475078387, 48.7269719682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cd48e9e0a15dfa69e4e06c4c6e4958f28da5755", "fields": {"code_postal": "78280", "code_commune_insee": "78297", "libell_d_acheminement": "GUYANCOURT", "ligne_5": "BOUVIERS", "nom_de_la_commune": "GUYANCOURT", "coordonnees_gps": [48.7729816592, 2.07605378449]}, "geometry": {"type": "Point", "coordinates": [2.07605378449, 48.7729816592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc5df3a600b7e959decd95b5f8131bfa7e63284", "fields": {"nom_de_la_commune": "HARDRICOURT", "libell_d_acheminement": "HARDRICOURT", "code_postal": "78250", "coordonnees_gps": [49.017629668, 1.88919336875], "code_commune_insee": "78299"}, "geometry": {"type": "Point", "coordinates": [1.88919336875, 49.017629668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ea8df63dca9d936747f549a709257f9dda1e59f", "fields": {"nom_de_la_commune": "HERMERAY", "libell_d_acheminement": "HERMERAY", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78307"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56f4a7f0d97c9e47a7e8f8b45ae3875143525227", "fields": {"nom_de_la_commune": "LIMETZ VILLEZ", "libell_d_acheminement": "LIMETZ VILLEZ", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78337"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de427fa3fb83ad906b3d7d5c2fe5c177356c17d6", "fields": {"nom_de_la_commune": "LONGNES", "libell_d_acheminement": "LONGNES", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78346"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "928c2f64ebeaa92467c67916c1a84a0cb4261f5c", "fields": {"nom_de_la_commune": "LOUVECIENNES", "libell_d_acheminement": "LOUVECIENNES", "code_postal": "78430", "coordonnees_gps": [48.8588744837, 2.1134161115], "code_commune_insee": "78350"}, "geometry": {"type": "Point", "coordinates": [2.1134161115, 48.8588744837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f24a726fb5472a9d3608edb432609c5188af19a", "fields": {"nom_de_la_commune": "MAGNY LES HAMEAUX", "libell_d_acheminement": "MAGNY LES HAMEAUX", "code_postal": "78114", "coordonnees_gps": [48.7411308441, 2.05157793037], "code_commune_insee": "78356"}, "geometry": {"type": "Point", "coordinates": [2.05157793037, 48.7411308441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cfb0c98e03e2e4521a47022f15ea36a7616dd97", "fields": {"nom_de_la_commune": "MAREIL MARLY", "libell_d_acheminement": "MAREIL MARLY", "code_postal": "78750", "coordonnees_gps": [48.881418905, 2.07698099175], "code_commune_insee": "78367"}, "geometry": {"type": "Point", "coordinates": [2.07698099175, 48.881418905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bf135e3cd89930591c2fc758cb55d08140f8848", "fields": {"nom_de_la_commune": "MARLY LE ROI", "libell_d_acheminement": "MARLY LE ROI", "code_postal": "78160", "coordonnees_gps": [48.8656792122, 2.09169348981], "code_commune_insee": "78372"}, "geometry": {"type": "Point", "coordinates": [2.09169348981, 48.8656792122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd027a1ce299857b264189b980547ba83b7f6e2a", "fields": {"nom_de_la_commune": "ZELLWILLER", "libell_d_acheminement": "ZELLWILLER", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67557"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adb484926adf001b2aa8823da33c0e820ecd1dd8", "fields": {"nom_de_la_commune": "ALTKIRCH", "libell_d_acheminement": "ALTKIRCH", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68004"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a125d598ff1a6c2c41f931235dd7487e354c4a", "fields": {"nom_de_la_commune": "AMMERTZWILLER", "libell_d_acheminement": "AMMERTZWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68006"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f08b4767603f79b9d5a776b33cf73346e49ad3", "fields": {"nom_de_la_commune": "BANTZENHEIM", "libell_d_acheminement": "BANTZENHEIM", "code_postal": "68490", "coordonnees_gps": [47.7817852652, 7.50128243869], "code_commune_insee": "68020"}, "geometry": {"type": "Point", "coordinates": [7.50128243869, 47.7817852652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af3f71a584aad6df861ccc3b4f56bd54ac8817d3", "fields": {"code_postal": "68870", "code_commune_insee": "68021", "libell_d_acheminement": "BARTENHEIM", "ligne_5": "BARTENHEIM LA CHAUSSEE", "nom_de_la_commune": "BARTENHEIM", "coordonnees_gps": [47.6331033531, 7.48190833837]}, "geometry": {"type": "Point", "coordinates": [7.48190833837, 47.6331033531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34add3bd2c359aad38253e7b3fcb10628f3041b3", "fields": {"nom_de_la_commune": "BENDORF", "libell_d_acheminement": "BENDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68025"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1a2f9f2cea11b46af9e604c184bdf570e4531a9", "fields": {"nom_de_la_commune": "BERENTZWILLER", "libell_d_acheminement": "BERENTZWILLER", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68027"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3788babd4c5d5f756ccc1bbc9096273558b4f54b", "fields": {"nom_de_la_commune": "BERGHEIM", "libell_d_acheminement": "BERGHEIM", "code_postal": "68750", "coordonnees_gps": [48.2121629249, 7.35914600863], "code_commune_insee": "68028"}, "geometry": {"type": "Point", "coordinates": [7.35914600863, 48.2121629249]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10f1e1f0826aaaea3729a0a2c8ed942d320958c8", "fields": {"nom_de_la_commune": "BETTENDORF", "libell_d_acheminement": "BETTENDORF", "code_postal": "68560", "coordonnees_gps": [47.5764862918, 7.25411571826], "code_commune_insee": "68033"}, "geometry": {"type": "Point", "coordinates": [7.25411571826, 47.5764862918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a06d2738899f13ac50539127d18024e33c5b3fb5", "fields": {"nom_de_la_commune": "BILTZHEIM", "libell_d_acheminement": "BILTZHEIM", "code_postal": "68127", "coordonnees_gps": [47.9788629564, 7.39190027996], "code_commune_insee": "68037"}, "geometry": {"type": "Point", "coordinates": [7.39190027996, 47.9788629564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264a12defff2afff4b4015bec521387ae9e8b7e4", "fields": {"nom_de_la_commune": "BLOTZHEIM", "libell_d_acheminement": "BLOTZHEIM", "code_postal": "68730", "coordonnees_gps": [47.5988584111, 7.47970961294], "code_commune_insee": "68042"}, "geometry": {"type": "Point", "coordinates": [7.47970961294, 47.5988584111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62c46dcdd8afab945932c3db35f2c867cdea3d79", "fields": {"nom_de_la_commune": "BOUXWILLER", "libell_d_acheminement": "BOUXWILLER", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68049"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "329fbfce92f630237681afe72c5a6fcecab0cd0a", "fields": {"nom_de_la_commune": "BRETTEN", "libell_d_acheminement": "BRETTEN", "code_postal": "68780", "coordonnees_gps": [47.7234740275, 7.06962991753], "code_commune_insee": "68052"}, "geometry": {"type": "Point", "coordinates": [7.06962991753, 47.7234740275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "324b301f62f2f2c234950d5067f24ed37ebfb162", "fields": {"code_postal": "68350", "code_commune_insee": "68056", "libell_d_acheminement": "BRUNSTATT DIDENHEIM", "ligne_5": "DIDENHEIM", "nom_de_la_commune": "BRUNSTATT DIDENHEIM", "coordonnees_gps": [47.7154887071, 7.32709033441]}, "geometry": {"type": "Point", "coordinates": [7.32709033441, 47.7154887071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69a1dc9892209442474c52f5ab0305ed7603f09a", "fields": {"nom_de_la_commune": "COLMAR", "libell_d_acheminement": "COLMAR", "code_postal": "68000", "coordonnees_gps": [48.1102094696, 7.38500410192], "code_commune_insee": "68066"}, "geometry": {"type": "Point", "coordinates": [7.38500410192, 48.1102094696]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d59a423fddac476a071fa478b097d963a7f9e6b6", "fields": {"nom_de_la_commune": "DURLINSDORF", "libell_d_acheminement": "DURLINSDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68074"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06a8025de7d73e8db0fbb005c284409d0193f1d0", "fields": {"nom_de_la_commune": "EGUISHEIM", "libell_d_acheminement": "EGUISHEIM", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68078"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4249afc3db9a802e151ee9c43c4b3a6e5c9c27ea", "fields": {"code_postal": "68720", "code_commune_insee": "68081", "libell_d_acheminement": "ST BERNARD", "ligne_5": "BRINIGHOFFEN", "nom_de_la_commune": "ST BERNARD", "coordonnees_gps": [47.6783162124, 7.26238056079]}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63febd7b08a338d6f1fa9ab0ddaaf4a8591d4406", "fields": {"nom_de_la_commune": "ENSISHEIM", "libell_d_acheminement": "ENSISHEIM", "code_postal": "68190", "coordonnees_gps": [47.8612458222, 7.34670995091], "code_commune_insee": "68082"}, "geometry": {"type": "Point", "coordinates": [7.34670995091, 47.8612458222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ad798c75de4780b5a6788d7c98a8ecfb6aa9ee8", "fields": {"nom_de_la_commune": "FALKWILLER", "libell_d_acheminement": "FALKWILLER", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68086"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54489439ab5123ff1cc6c082d1a961d32a7326bc", "fields": {"code_postal": "68470", "code_commune_insee": "68089", "libell_d_acheminement": "FELLERING", "ligne_5": "WESSERLING", "nom_de_la_commune": "FELLERING", "coordonnees_gps": [47.8911637424, 6.97731625336]}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27275202b5917955c613867585b49c466e05774a", "fields": {"nom_de_la_commune": "FESSENHEIM", "libell_d_acheminement": "FESSENHEIM", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68091"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f309a7dc185d1297d958dde89f8ef2aecc0e68c", "fields": {"nom_de_la_commune": "GALFINGUE", "libell_d_acheminement": "GALFINGUE", "code_postal": "68990", "coordonnees_gps": [47.7183120808, 7.22050382985], "code_commune_insee": "68101"}, "geometry": {"type": "Point", "coordinates": [7.22050382985, 47.7183120808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84b007ec0b0f767c73adb1a6359049d41f329d2d", "fields": {"nom_de_la_commune": "GRIESBACH AU VAL", "libell_d_acheminement": "GRIESBACH AU VAL", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68109"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83bc010b9854e3a84e6c3b30d541ae53e1104b9e", "fields": {"nom_de_la_commune": "GRUSSENHEIM", "libell_d_acheminement": "GRUSSENHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68110"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f75dc008aacc409fec322fb54fd7c21ab5a3bc8", "fields": {"nom_de_la_commune": "HAUSGAUEN", "libell_d_acheminement": "HAUSGAUEN", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68124"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "add213c0a34e0c4d8da86a4abfb925fcad50a118", "fields": {"nom_de_la_commune": "HECKEN", "libell_d_acheminement": "HECKEN", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68125"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ea4950811132285373535313b07643089171339", "fields": {"nom_de_la_commune": "HEGENHEIM", "libell_d_acheminement": "HEGENHEIM", "code_postal": "68220", "coordonnees_gps": [47.544372951, 7.47237986146], "code_commune_insee": "68126"}, "geometry": {"type": "Point", "coordinates": [7.47237986146, 47.544372951]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa547d708c0f7fa3e75604c6440935dabd614d0a", "fields": {"nom_de_la_commune": "HEIMSBRUNN", "libell_d_acheminement": "HEIMSBRUNN", "code_postal": "68990", "coordonnees_gps": [47.7183120808, 7.22050382985], "code_commune_insee": "68129"}, "geometry": {"type": "Point", "coordinates": [7.22050382985, 47.7183120808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4864c110b171dea9968a5fb2e41e788bf933291", "fields": {"nom_de_la_commune": "HERRLISHEIM PRES COLMAR", "libell_d_acheminement": "HERRLISHEIM PRES COLMAR", "code_postal": "68420", "coordonnees_gps": [48.0226024485, 7.28861003282], "code_commune_insee": "68134"}, "geometry": {"type": "Point", "coordinates": [7.28861003282, 48.0226024485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e5249c9f6548dd9436096a9f3117f17378aa447", "fields": {"nom_de_la_commune": "HOHROD", "libell_d_acheminement": "HOHROD", "code_postal": "68140", "coordonnees_gps": [48.0538665247, 7.10605963311], "code_commune_insee": "68142"}, "geometry": {"type": "Point", "coordinates": [7.10605963311, 48.0538665247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d4d69565a88011821ea0892874dc564283c303", "fields": {"nom_de_la_commune": "HORBOURG WIHR", "libell_d_acheminement": "HORBOURG WIHR", "code_postal": "68180", "coordonnees_gps": [48.0830630727, 7.40347360738], "code_commune_insee": "68145"}, "geometry": {"type": "Point", "coordinates": [7.40347360738, 48.0830630727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff4291d137108a43b928904f0952b5eee29880f", "fields": {"nom_de_la_commune": "HUNAWIHR", "libell_d_acheminement": "HUNAWIHR", "code_postal": "68150", "coordonnees_gps": [48.1955023009, 7.29565988494], "code_commune_insee": "68147"}, "geometry": {"type": "Point", "coordinates": [7.29565988494, 48.1955023009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ef4d6f8bb356b5fbfd9b43968d6f7aa63465e2c", "fields": {"nom_de_la_commune": "JEBSHEIM", "libell_d_acheminement": "JEBSHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68157"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c26359176120096a817c8798dfae28c235c60492", "fields": {"nom_de_la_commune": "KOETZINGUE", "libell_d_acheminement": "KOETZINGUE", "code_postal": "68510", "coordonnees_gps": [47.6428334795, 7.42612174961], "code_commune_insee": "68170"}, "geometry": {"type": "Point", "coordinates": [7.42612174961, 47.6428334795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "172b473470e709e32e935401708afb9b70cb28b4", "fields": {"nom_de_la_commune": "KUNHEIM", "libell_d_acheminement": "KUNHEIM", "code_postal": "68320", "coordonnees_gps": [48.0998914946, 7.49472150161], "code_commune_insee": "68172"}, "geometry": {"type": "Point", "coordinates": [7.49472150161, 48.0998914946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7948e9587a52ecc33bacd8caab69fb03f7762a5a", "fields": {"nom_de_la_commune": "VALDIEU LUTRAN", "libell_d_acheminement": "VALDIEU LUTRAN", "code_postal": "68210", "coordonnees_gps": [47.6465535695, 7.10668724533], "code_commune_insee": "68192"}, "geometry": {"type": "Point", "coordinates": [7.10668724533, 47.6465535695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "258cfee07dbcc7cc3b7b612f798c12532e9dfe90", "fields": {"nom_de_la_commune": "LUTTER", "libell_d_acheminement": "LUTTER", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68194"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a5c8d1055227a873f82e4b403db7ee16d16b065", "fields": {"nom_de_la_commune": "MOLLAU", "libell_d_acheminement": "MOLLAU", "code_postal": "68470", "coordonnees_gps": [47.8911637424, 6.97731625336], "code_commune_insee": "68213"}, "geometry": {"type": "Point", "coordinates": [6.97731625336, 47.8911637424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83d87c5124d91bd370ea4191bdcfdc2258d5040a", "fields": {"code_postal": "68640", "code_commune_insee": "68221", "libell_d_acheminement": "MUESPACH", "ligne_5": "MOYEN MUESPACH", "nom_de_la_commune": "MUESPACH", "coordonnees_gps": [47.5439826681, 7.33909806987]}, "geometry": {"type": "Point", "coordinates": [7.33909806987, 47.5439826681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b23663ad3f7679ed72ff0281c805b9ced47ea3e2", "fields": {"nom_de_la_commune": "MULHOUSE", "libell_d_acheminement": "MULHOUSE", "code_postal": "68200", "coordonnees_gps": [47.7494423807, 7.32540160105], "code_commune_insee": "68224"}, "geometry": {"type": "Point", "coordinates": [7.32540160105, 47.7494423807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b1d8892a24de21adbe5bc56370c3ad54f8b03a0", "fields": {"code_postal": "68200", "code_commune_insee": "68224", "libell_d_acheminement": "MULHOUSE", "ligne_5": "DORNACH", "nom_de_la_commune": "MULHOUSE", "coordonnees_gps": [47.7494423807, 7.32540160105]}, "geometry": {"type": "Point", "coordinates": [7.32540160105, 47.7494423807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcb1c09fde544e6ea78a0f631c3aaa57d86f777f", "fields": {"nom_de_la_commune": "NIEDERMORSCHWIHR", "libell_d_acheminement": "NIEDERMORSCHWIHR", "code_postal": "68230", "coordonnees_gps": [48.0590764135, 7.21669806114], "code_commune_insee": "68237"}, "geometry": {"type": "Point", "coordinates": [7.21669806114, 48.0590764135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5945670a1a1d020b318eee91f29adcdbaec8e3f", "fields": {"nom_de_la_commune": "OBERBRUCK", "libell_d_acheminement": "OBERBRUCK", "code_postal": "68290", "coordonnees_gps": [47.799453165, 6.9576762067], "code_commune_insee": "68239"}, "geometry": {"type": "Point", "coordinates": [6.9576762067, 47.799453165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965e9c95a652d4117f6b05d88fad2f38a452bc02", "fields": {"nom_de_la_commune": "OLTINGUE", "libell_d_acheminement": "OLTINGUE", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68248"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1771cb40102ff7655f0b11bda699ca1339daa8c9", "fields": {"nom_de_la_commune": "RAEDERSHEIM", "libell_d_acheminement": "RAEDERSHEIM", "code_postal": "68190", "coordonnees_gps": [47.8612458222, 7.34670995091], "code_commune_insee": "68260"}, "geometry": {"type": "Point", "coordinates": [7.34670995091, 47.8612458222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f4a6d1ea226840abbee55d5be44ceb42bcf408c", "fields": {"nom_de_la_commune": "RIMBACHZELL", "libell_d_acheminement": "RIMBACHZELL", "code_postal": "68500", "coordonnees_gps": [47.8970279545, 7.22386767783], "code_commune_insee": "68276"}, "geometry": {"type": "Point", "coordinates": [7.22386767783, 47.8970279545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "890d6895e0c9b44c0c0a0dc9a2b24c33891507ce", "fields": {"nom_de_la_commune": "ROMBACH LE FRANC", "libell_d_acheminement": "ROMBACH LE FRANC", "code_postal": "68660", "coordonnees_gps": [48.2830260075, 7.25621728255], "code_commune_insee": "68283"}, "geometry": {"type": "Point", "coordinates": [7.25621728255, 48.2830260075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e28211fc8f055cced5761ac45ca1abfce5aaf17", "fields": {"nom_de_la_commune": "ROUFFACH", "libell_d_acheminement": "ROUFFACH", "code_postal": "68250", "coordonnees_gps": [47.9666931593, 7.27589610767], "code_commune_insee": "68287"}, "geometry": {"type": "Point", "coordinates": [7.27589610767, 47.9666931593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a51038ae31457e30e22c602419ace8ac8177dde", "fields": {"nom_de_la_commune": "RUMERSHEIM LE HAUT", "libell_d_acheminement": "RUMERSHEIM LE HAUT", "code_postal": "68740", "coordonnees_gps": [47.8952251032, 7.49649106631], "code_commune_insee": "68291"}, "geometry": {"type": "Point", "coordinates": [7.49649106631, 47.8952251032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c84d89166a1a40cbaff15c28bc07442986d977", "fields": {"code_postal": "68300", "code_commune_insee": "68297", "libell_d_acheminement": "ST LOUIS", "ligne_5": "BOURGFELDEN", "nom_de_la_commune": "ST LOUIS", "coordonnees_gps": [47.6023175125, 7.54024522111]}, "geometry": {"type": "Point", "coordinates": [7.54024522111, 47.6023175125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56698c55d68f3e666f9ead5e3505d1b87750c7f7", "fields": {"code_postal": "68160", "code_commune_insee": "68298", "libell_d_acheminement": "STE MARIE AUX MINES", "ligne_5": "ECHERY", "nom_de_la_commune": "STE MARIE AUX MINES", "coordonnees_gps": [48.2436580194, 7.18389066901]}, "geometry": {"type": "Point", "coordinates": [7.18389066901, 48.2436580194]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ed33323102b00a796dc046131fc65eda773824", "fields": {"nom_de_la_commune": "SCHLIERBACH", "libell_d_acheminement": "SCHLIERBACH", "code_postal": "68440", "coordonnees_gps": [47.695927931, 7.39848767671], "code_commune_insee": "68301"}, "geometry": {"type": "Point", "coordinates": [7.39848767671, 47.695927931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcadb629b115b71f7142dd3b6c0f1e4fa54ae942", "fields": {"nom_de_la_commune": "SONDERNACH", "libell_d_acheminement": "SONDERNACH", "code_postal": "68380", "coordonnees_gps": [47.9954927319, 7.05179544596], "code_commune_insee": "68311"}, "geometry": {"type": "Point", "coordinates": [7.05179544596, 47.9954927319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f24fad17717e8d7c5c07255bc7d7e3114ac2efe", "fields": {"nom_de_la_commune": "SONDERSDORF", "libell_d_acheminement": "SONDERSDORF", "code_postal": "68480", "coordonnees_gps": [47.482749099, 7.30519272229], "code_commune_insee": "68312"}, "geometry": {"type": "Point", "coordinates": [7.30519272229, 47.482749099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa5e8a620f45afd32adb70702d02fadcddd42980", "fields": {"nom_de_la_commune": "SPECHBACH", "libell_d_acheminement": "SPECHBACH", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68320"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ab865cda5296b9f2861bcb70d4b8015258462d1", "fields": {"code_postal": "68720", "code_commune_insee": "68320", "libell_d_acheminement": "SPECHBACH", "ligne_5": "SPECHBACH LE BAS", "nom_de_la_commune": "SPECHBACH", "coordonnees_gps": [47.6783162124, 7.26238056079]}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6211b778e7748d500eeb3bc455d712740271618c", "fields": {"nom_de_la_commune": "STEINBACH", "libell_d_acheminement": "STEINBACH", "code_postal": "68700", "coordonnees_gps": [47.8077826523, 7.1623079719], "code_commune_insee": "68322"}, "geometry": {"type": "Point", "coordinates": [7.1623079719, 47.8077826523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e584e8cfa913e843e5c14abdf0b5119dbd24aba1", "fields": {"nom_de_la_commune": "TAGOLSHEIM", "libell_d_acheminement": "TAGOLSHEIM", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68332"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18cdd006a39155c69b30897ca3ce829d7fc209a4", "fields": {"nom_de_la_commune": "ZAESSINGUE", "libell_d_acheminement": "ZAESSINGUE", "code_postal": "68130", "coordonnees_gps": [47.6168205059, 7.29502292412], "code_commune_insee": "68382"}, "geometry": {"type": "Point", "coordinates": [7.29502292412, 47.6168205059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "995fbab253857b92e690e6e401741b80604c664f", "fields": {"nom_de_la_commune": "ZILLISHEIM", "libell_d_acheminement": "ZILLISHEIM", "code_postal": "68720", "coordonnees_gps": [47.6783162124, 7.26238056079], "code_commune_insee": "68384"}, "geometry": {"type": "Point", "coordinates": [7.26238056079, 47.6783162124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01e985241f69bcec14719c2e173cbf6ee6db53c", "fields": {"nom_de_la_commune": "ALIX", "libell_d_acheminement": "ALIX", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69004"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e09334a4d2876582986aa2a025e1ef9173f76c", "fields": {"nom_de_la_commune": "AMPUIS", "libell_d_acheminement": "AMPUIS", "code_postal": "69420", "coordonnees_gps": [45.5036780287, 4.73457399039], "code_commune_insee": "69007"}, "geometry": {"type": "Point", "coordinates": [4.73457399039, 45.5036780287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f9a624af67a2d91cb02c8085240978b2d9fe49e", "fields": {"nom_de_la_commune": "BEAUJEU", "libell_d_acheminement": "BEAUJEU", "code_postal": "69430", "coordonnees_gps": [46.1511962743, 4.57003815415], "code_commune_insee": "69018"}, "geometry": {"type": "Point", "coordinates": [4.57003815415, 46.1511962743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26713a0549a093d06ecd2b6e533849b7d1d0b230", "fields": {"nom_de_la_commune": "BESSENAY", "libell_d_acheminement": "BESSENAY", "code_postal": "69690", "coordonnees_gps": [45.7650952227, 4.53742435922], "code_commune_insee": "69021"}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67272d88615f20362ae0e179ad730270a69a68a6", "fields": {"code_postal": "69690", "code_commune_insee": "69021", "libell_d_acheminement": "BESSENAY", "ligne_5": "LES ROCHES", "nom_de_la_commune": "BESSENAY", "coordonnees_gps": [45.7650952227, 4.53742435922]}, "geometry": {"type": "Point", "coordinates": [4.53742435922, 45.7650952227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "165db5c6a5147c66c4901ff2c256e1ab40a94f7f", "fields": {"nom_de_la_commune": "BRIGNAIS", "libell_d_acheminement": "BRIGNAIS", "code_postal": "69530", "coordonnees_gps": [45.6692860968, 4.73618397789], "code_commune_insee": "69027"}, "geometry": {"type": "Point", "coordinates": [4.73618397789, 45.6692860968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0638b6d4fa91ba91f6ad7555adea96070d1219f", "fields": {"nom_de_la_commune": "CERCIE", "libell_d_acheminement": "CERCIE", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69036"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c618e6105a8b1dc3ff08d5b059956236bf32f34f", "fields": {"nom_de_la_commune": "CHAMELET", "libell_d_acheminement": "CHAMELET", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69039"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d63346012ee8ceb1bd39ecf79ed1265c5e3fb43", "fields": {"nom_de_la_commune": "CHARBONNIERES LES BAINS", "libell_d_acheminement": "CHARBONNIERES LES BAINS", "code_postal": "69260", "coordonnees_gps": [45.7802206702, 4.7435977187], "code_commune_insee": "69044"}, "geometry": {"type": "Point", "coordinates": [4.7435977187, 45.7802206702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76202e3a04571f5f5f45ecfc89c3a91f4f497ded", "fields": {"nom_de_la_commune": "CHARENTAY", "libell_d_acheminement": "CHARENTAY", "code_postal": "69220", "coordonnees_gps": [46.1265498738, 4.72361318779], "code_commune_insee": "69045"}, "geometry": {"type": "Point", "coordinates": [4.72361318779, 46.1265498738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ee9d7869f2c435d9ea766f97c30b46edad650e5", "fields": {"nom_de_la_commune": "CHATILLON", "libell_d_acheminement": "CHATILLON", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69050"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cf83d6048a459d6bc59ac8eec82d1b27fba977c", "fields": {"nom_de_la_commune": "CHEVINAY", "libell_d_acheminement": "CHEVINAY", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69057"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a68cf9eef06dc96d460b8d5682035a2d63eb37", "fields": {"nom_de_la_commune": "COURS", "libell_d_acheminement": "COURS", "code_postal": "69470", "coordonnees_gps": [46.1151639398, 4.3657661109], "code_commune_insee": "69066"}, "geometry": {"type": "Point", "coordinates": [4.3657661109, 46.1151639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc41e1b65bcbbca2a5b1a701d9322e067bff0742", "fields": {"nom_de_la_commune": "DENICE", "libell_d_acheminement": "DENICE", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69074"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59c8069e7e1f6a0887bb46abd324ddd2b142cf74", "fields": {"nom_de_la_commune": "ECULLY", "libell_d_acheminement": "ECULLY", "code_postal": "69130", "coordonnees_gps": [45.7817109939, 4.77264528485], "code_commune_insee": "69081"}, "geometry": {"type": "Point", "coordinates": [4.77264528485, 45.7817109939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f7b0c26fd8a9f4ff00c605c3589f7dc5629893", "fields": {"nom_de_la_commune": "EVEUX", "libell_d_acheminement": "EVEUX", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69083"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e19c0bbb3dc6378c43e5159540954d8fe162688", "fields": {"nom_de_la_commune": "FONTAINES ST MARTIN", "libell_d_acheminement": "FONTAINES ST MARTIN", "code_postal": "69270", "coordonnees_gps": [45.8483845362, 4.85660481546], "code_commune_insee": "69087"}, "geometry": {"type": "Point", "coordinates": [4.85660481546, 45.8483845362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "076a3c321206c690ee86b17f925a31277d61bad4", "fields": {"nom_de_la_commune": "GLEIZE", "libell_d_acheminement": "GLEIZE", "code_postal": "69400", "coordonnees_gps": [45.9927200348, 4.70137722216], "code_commune_insee": "69092"}, "geometry": {"type": "Point", "coordinates": [4.70137722216, 45.9927200348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "883de9dd4e1f07a6d57a7234446e28624eb6dc7b", "fields": {"nom_de_la_commune": "GREZIEU LA VARENNE", "libell_d_acheminement": "GREZIEU LA VARENNE", "code_postal": "69290", "coordonnees_gps": [45.759176161, 4.68473995585], "code_commune_insee": "69094"}, "geometry": {"type": "Point", "coordinates": [4.68473995585, 45.759176161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0037b978e3e5a32a4335774975c5db877ab1c616", "fields": {"nom_de_la_commune": "JULLIE", "libell_d_acheminement": "JULLIE", "code_postal": "69840", "coordonnees_gps": [46.255819041, 4.67514291192], "code_commune_insee": "69104"}, "geometry": {"type": "Point", "coordinates": [4.67514291192, 46.255819041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3991e2850c8d0f2132342f0c4f25f326275b1be9", "fields": {"nom_de_la_commune": "LAMURE SUR AZERGUES", "libell_d_acheminement": "LAMURE SUR AZERGUES", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69107"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d2b00531fcb784ef5290c2ae7027351f45120b", "fields": {"code_postal": "69590", "code_commune_insee": "69110", "libell_d_acheminement": "LARAJASSE", "ligne_5": "LA MURE", "nom_de_la_commune": "LARAJASSE", "coordonnees_gps": [45.6217485802, 4.48906764505]}, "geometry": {"type": "Point", "coordinates": [4.48906764505, 45.6217485802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "078d23611535f35c51f69bf11b43d7361d133fc6", "fields": {"code_postal": "69620", "code_commune_insee": "69113", "libell_d_acheminement": "LETRA", "ligne_5": "LA ROCHE", "nom_de_la_commune": "LETRA", "coordonnees_gps": [45.942828666, 4.55646873153]}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0320311c3bd78a7073166a8f002e1e8c433cab9", "fields": {"nom_de_la_commune": "LIMONEST", "libell_d_acheminement": "LIMONEST", "code_postal": "69760", "coordonnees_gps": [45.830865525, 4.77106197619], "code_commune_insee": "69116"}, "geometry": {"type": "Point", "coordinates": [4.77106197619, 45.830865525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a62d4306828a92a5b271c8f301f5dadb633bc9b4", "fields": {"nom_de_la_commune": "LISSIEU", "libell_d_acheminement": "LISSIEU", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69117"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2252f1c0d7778c96d785c621085501cd8545b35a", "fields": {"nom_de_la_commune": "LONGES", "libell_d_acheminement": "LONGES", "code_postal": "69420", "coordonnees_gps": [45.5036780287, 4.73457399039], "code_commune_insee": "69119"}, "geometry": {"type": "Point", "coordinates": [4.73457399039, 45.5036780287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68390a5160e85f72322cb2b01ad89998fb4a76a9", "fields": {"nom_de_la_commune": "MARCILLY D AZERGUES", "libell_d_acheminement": "MARCILLY D AZERGUES", "code_postal": "69380", "coordonnees_gps": [45.871665685, 4.70176964922], "code_commune_insee": "69125"}, "geometry": {"type": "Point", "coordinates": [4.70176964922, 45.871665685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "862b3430036b7ff0cc6f278f35023b5ae94ac009", "fields": {"nom_de_la_commune": "MARCY", "libell_d_acheminement": "MARCY", "code_postal": "69480", "coordonnees_gps": [45.9282095873, 4.70232833984], "code_commune_insee": "69126"}, "geometry": {"type": "Point", "coordinates": [4.70232833984, 45.9282095873]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "453e6a7abe4f021e350c3051fcd2cc0b6e23cc87", "fields": {"nom_de_la_commune": "MEYS", "libell_d_acheminement": "MEYS", "code_postal": "69610", "coordonnees_gps": [45.695671522, 4.4487808216], "code_commune_insee": "69132"}, "geometry": {"type": "Point", "coordinates": [4.4487808216, 45.695671522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea1f7765fb87449d5c08e34a5804be62775d14a", "fields": {"nom_de_la_commune": "MILLERY", "libell_d_acheminement": "MILLERY", "code_postal": "69390", "coordonnees_gps": [45.6449321892, 4.78398402177], "code_commune_insee": "69133"}, "geometry": {"type": "Point", "coordinates": [4.78398402177, 45.6449321892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a07b436cf6915c2f59eb632bf40ff34bd1bc21c", "fields": {"nom_de_la_commune": "LA MULATIERE", "libell_d_acheminement": "LA MULATIERE", "code_postal": "69350", "coordonnees_gps": [45.730594844, 4.81218151873], "code_commune_insee": "69142"}, "geometry": {"type": "Point", "coordinates": [4.81218151873, 45.730594844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3555bcc7400e001626febcfb8c6526f9507eb0f", "fields": {"nom_de_la_commune": "OINGT", "libell_d_acheminement": "OINGT", "code_postal": "69620", "coordonnees_gps": [45.942828666, 4.55646873153], "code_commune_insee": "69146"}, "geometry": {"type": "Point", "coordinates": [4.55646873153, 45.942828666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "871520363e0c39924a2c21f7924bb64926ab879d", "fields": {"nom_de_la_commune": "POLLIONNAY", "libell_d_acheminement": "POLLIONNAY", "code_postal": "69290", "coordonnees_gps": [45.759176161, 4.68473995585], "code_commune_insee": "69154"}, "geometry": {"type": "Point", "coordinates": [4.68473995585, 45.759176161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31bee3c19a218f750f0a343df93301e77eb3c7f8", "fields": {"nom_de_la_commune": "POULE LES ECHARMEAUX", "libell_d_acheminement": "POULE LES ECHARMEAUX", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69160"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36dc27086be6cad3c21f7d80cde2c1a9909908f1", "fields": {"nom_de_la_commune": "RANCHAL", "libell_d_acheminement": "RANCHAL", "code_postal": "69470", "coordonnees_gps": [46.1151639398, 4.3657661109], "code_commune_insee": "69164"}, "geometry": {"type": "Point", "coordinates": [4.3657661109, 46.1151639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc377394c658f4ac823c3524f8027a84637d8029", "fields": {"nom_de_la_commune": "RIVOLET", "libell_d_acheminement": "RIVOLET", "code_postal": "69640", "coordonnees_gps": [45.9971718546, 4.6146387877], "code_commune_insee": "69167"}, "geometry": {"type": "Point", "coordinates": [4.6146387877, 45.9971718546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca7834ed527e9a55a989e71bddc2384a0610a7e", "fields": {"nom_de_la_commune": "ST BONNET LE TRONCY", "libell_d_acheminement": "ST BONNET LE TRONCY", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69183"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa433ae2ae7903683d0cfbd5dbc245e8e30f3c70", "fields": {"nom_de_la_commune": "ST CYR AU MONT D OR", "libell_d_acheminement": "ST CYR AU MONT D OR", "code_postal": "69450", "coordonnees_gps": [45.818957893, 4.81864805122], "code_commune_insee": "69191"}, "geometry": {"type": "Point", "coordinates": [4.81864805122, 45.818957893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0fd25ac5597145c3bed3024887598a672bf588", "fields": {"code_postal": "69440", "code_commune_insee": "69195", "libell_d_acheminement": "ST DIDIER SOUS RIVERIE", "ligne_5": "FILLONNIERE", "nom_de_la_commune": "ST DIDIER SOUS RIVERIE", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceeffa3559aef15b86b4468f9cd23a0b45783a57", "fields": {"nom_de_la_commune": "PRINCAY", "libell_d_acheminement": "PRINCAY", "code_postal": "86420", "coordonnees_gps": [46.9021993475, 0.207686911347], "code_commune_insee": "86201"}, "geometry": {"type": "Point", "coordinates": [0.207686911347, 46.9021993475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce21d1c7d9e7e121b6f4d055a1fb8508557f37ad", "fields": {"nom_de_la_commune": "LA PUYE", "libell_d_acheminement": "LA PUYE", "code_postal": "86260", "coordonnees_gps": [46.6858016329, 0.823387045612], "code_commune_insee": "86202"}, "geometry": {"type": "Point", "coordinates": [0.823387045612, 46.6858016329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d96fe8b58171700d623a996f7f28c5437ece0f2f", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86217"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de1538ceb3841ba5e2de5999eee8df2ed45aa5fb", "fields": {"nom_de_la_commune": "ST JULIEN L ARS", "libell_d_acheminement": "ST JULIEN L ARS", "code_postal": "86800", "coordonnees_gps": [46.562191444, 0.519952068681], "code_commune_insee": "86226"}, "geometry": {"type": "Point", "coordinates": [0.519952068681, 46.562191444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bf48273bbbbee700c8531cbda1f7dae3150943b", "fields": {"nom_de_la_commune": "ST LAON", "libell_d_acheminement": "ST LAON", "code_postal": "86200", "coordonnees_gps": [46.998807994, 0.139457341652], "code_commune_insee": "86227"}, "geometry": {"type": "Point", "coordinates": [0.139457341652, 46.998807994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "425797e58e2be9fd101264722c26f1e8f8d7fb25", "fields": {"nom_de_la_commune": "ST LAURENT DE JOURDES", "libell_d_acheminement": "ST LAURENT DE JOURDES", "code_postal": "86410", "coordonnees_gps": [46.402745465, 0.573301169614], "code_commune_insee": "86228"}, "geometry": {"type": "Point", "coordinates": [0.573301169614, 46.402745465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8235c8e5249672de03eb9c38311a6fd455ae3cf2", "fields": {"code_postal": "86300", "code_commune_insee": "86233", "libell_d_acheminement": "VALDIVIENNE", "ligne_5": "ST MARTIN LA RIVIERE", "nom_de_la_commune": "VALDIVIENNE", "coordonnees_gps": [46.547665049, 0.687527272819]}, "geometry": {"type": "Point", "coordinates": [0.687527272819, 46.547665049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92698455e9993adf1c9ec4a08851e5c8f68cd444", "fields": {"code_postal": "86100", "code_commune_insee": "86245", "libell_d_acheminement": "SENILLE ST SAUVEUR", "ligne_5": "SENILLE", "nom_de_la_commune": "SENILLE ST SAUVEUR", "coordonnees_gps": [46.825162468, 0.575853305257]}, "geometry": {"type": "Point", "coordinates": [0.575853305257, 46.825162468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d70d880e848782b194a785cfdbc62b915d7b6c2", "fields": {"nom_de_la_commune": "SAIX", "libell_d_acheminement": "SAIX", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86250"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a69343db30f4071db4a17551b0181ce4ba4f3878", "fields": {"nom_de_la_commune": "SANXAY", "libell_d_acheminement": "SANXAY", "code_postal": "86600", "coordonnees_gps": [46.4312356319, 0.102380315547], "code_commune_insee": "86253"}, "geometry": {"type": "Point", "coordinates": [0.102380315547, 46.4312356319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157bbdff5b9d627504adbcf4174ef1bc9ea66a2e", "fields": {"nom_de_la_commune": "SCORBE CLAIRVAUX", "libell_d_acheminement": "SCORBE CLAIRVAUX", "code_postal": "86140", "coordonnees_gps": [46.8283265591, 0.330477268884], "code_commune_insee": "86258"}, "geometry": {"type": "Point", "coordinates": [0.330477268884, 46.8283265591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e9e3c1606721edfa4356359f1aeadb53748525", "fields": {"nom_de_la_commune": "SURIN", "libell_d_acheminement": "SURIN", "code_postal": "86250", "coordonnees_gps": [46.1357825974, 0.396436618847], "code_commune_insee": "86266"}, "geometry": {"type": "Point", "coordinates": [0.396436618847, 46.1357825974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "814a6a97bc6afd39a6100fee56b97dc92aa7fe95", "fields": {"nom_de_la_commune": "TERNAY", "libell_d_acheminement": "TERNAY", "code_postal": "86120", "coordonnees_gps": [47.0822430133, 0.0264244317005], "code_commune_insee": "86269"}, "geometry": {"type": "Point", "coordinates": [0.0264244317005, 47.0822430133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5692fd4afc0c2f45bf162867c2d3de30f6a057e5", "fields": {"nom_de_la_commune": "THOLLET", "libell_d_acheminement": "THOLLET", "code_postal": "86290", "coordonnees_gps": [46.446047556, 1.06029649293], "code_commune_insee": "86270"}, "geometry": {"type": "Point", "coordinates": [1.06029649293, 46.446047556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8222d3f77b43327d28a3708b03495d240878bdf3", "fields": {"nom_de_la_commune": "USSEAU", "libell_d_acheminement": "USSEAU", "code_postal": "86230", "coordonnees_gps": [46.9073907672, 0.413601378993], "code_commune_insee": "86275"}, "geometry": {"type": "Point", "coordinates": [0.413601378993, 46.9073907672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915b2b62e0251adb851ce93ce8f6f4e61371c266", "fields": {"nom_de_la_commune": "VAUX SUR VIENNE", "libell_d_acheminement": "VAUX SUR VIENNE", "code_postal": "86220", "coordonnees_gps": [46.9080376629, 0.625787073001], "code_commune_insee": "86279"}, "geometry": {"type": "Point", "coordinates": [0.625787073001, 46.9080376629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6037758d856f35c457b6ad2ba802ef5a0c2151", "fields": {"nom_de_la_commune": "VIVONNE", "libell_d_acheminement": "VIVONNE", "code_postal": "86370", "coordonnees_gps": [46.4325277487, 0.249386615442], "code_commune_insee": "86293"}, "geometry": {"type": "Point", "coordinates": [0.249386615442, 46.4325277487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e226679126ced604e7a1a5132921f04ea59f972", "fields": {"nom_de_la_commune": "VOULEME", "libell_d_acheminement": "VOULEME", "code_postal": "86400", "coordonnees_gps": [46.1593309397, 0.27690268606], "code_commune_insee": "86295"}, "geometry": {"type": "Point", "coordinates": [0.27690268606, 46.1593309397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe7f1b0f8703ea49fee213251d34b431e74726e", "fields": {"nom_de_la_commune": "VOUZAILLES", "libell_d_acheminement": "VOUZAILLES", "code_postal": "86170", "coordonnees_gps": [46.701479215, 0.158175273107], "code_commune_insee": "86299"}, "geometry": {"type": "Point", "coordinates": [0.158175273107, 46.701479215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d07a84599ae1dae2efb3f3596454c42a90071d36", "fields": {"nom_de_la_commune": "ARNAC LA POSTE", "libell_d_acheminement": "ARNAC LA POSTE", "code_postal": "87160", "coordonnees_gps": [46.3147995575, 1.35815432469], "code_commune_insee": "87003"}, "geometry": {"type": "Point", "coordinates": [1.35815432469, 46.3147995575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81d5a26cf5b9642d1da294ce5ed384c3883161b7", "fields": {"nom_de_la_commune": "BERNEUIL", "libell_d_acheminement": "BERNEUIL", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87012"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd05655c7eb4e2196c2debb376dfec35def95d8f", "fields": {"nom_de_la_commune": "BESSINES SUR GARTEMPE", "libell_d_acheminement": "BESSINES SUR GARTEMPE", "code_postal": "87250", "coordonnees_gps": [46.1128095458, 1.3801487434], "code_commune_insee": "87014"}, "geometry": {"type": "Point", "coordinates": [1.3801487434, 46.1128095458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c27e37fbaf81d728a73f57f6339648edee844b1", "fields": {"nom_de_la_commune": "BUSSIERE POITEVINE", "libell_d_acheminement": "BUSSIERE POITEVINE", "code_postal": "87320", "coordonnees_gps": [46.2450903271, 0.930736813539], "code_commune_insee": "87028"}, "geometry": {"type": "Point", "coordinates": [0.930736813539, 46.2450903271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c969cf6e77552f20e84ff536d1115b95ae4d032e", "fields": {"nom_de_la_commune": "CHAMBORET", "libell_d_acheminement": "CHAMBORET", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87033"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f56d39df6010849a78780b061be11a2f5e7e21b", "fields": {"nom_de_la_commune": "CHATEAU CHERVIX", "libell_d_acheminement": "CHATEAU CHERVIX", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87039"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "512dbcdbfc8b87d5c905639d95dd812cdc353e93", "fields": {"nom_de_la_commune": "COGNAC LA FORET", "libell_d_acheminement": "COGNAC LA FORET", "code_postal": "87310", "coordonnees_gps": [45.7951998863, 0.972217367577], "code_commune_insee": "87046"}, "geometry": {"type": "Point", "coordinates": [0.972217367577, 45.7951998863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a94e881f192bac78d1768aa2258ac21f0b88698", "fields": {"nom_de_la_commune": "COUSSAC BONNEVAL", "libell_d_acheminement": "COUSSAC BONNEVAL", "code_postal": "87500", "coordonnees_gps": [45.5304259487, 1.21634245482], "code_commune_insee": "87049"}, "geometry": {"type": "Point", "coordinates": [1.21634245482, 45.5304259487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28107fdf3247709f8a45394fd6487e4111af7553", "fields": {"nom_de_la_commune": "CROMAC", "libell_d_acheminement": "CROMAC", "code_postal": "87160", "coordonnees_gps": [46.3147995575, 1.35815432469], "code_commune_insee": "87053"}, "geometry": {"type": "Point", "coordinates": [1.35815432469, 46.3147995575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0321ebc1e9453997f56becc614ee39e6db47fe1c", "fields": {"nom_de_la_commune": "CUSSAC", "libell_d_acheminement": "CUSSAC", "code_postal": "87150", "coordonnees_gps": [45.7143690122, 0.872435194134], "code_commune_insee": "87054"}, "geometry": {"type": "Point", "coordinates": [0.872435194134, 45.7143690122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "404640e7d4da2b6901702d6ff16c619aea99fae7", "fields": {"nom_de_la_commune": "DARNAC", "libell_d_acheminement": "DARNAC", "code_postal": "87320", "coordonnees_gps": [46.2450903271, 0.930736813539], "code_commune_insee": "87055"}, "geometry": {"type": "Point", "coordinates": [0.930736813539, 46.2450903271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee8a1de3b4f67d7bdacc138ec7482fd66a7efe8", "fields": {"nom_de_la_commune": "DOURNAZAC", "libell_d_acheminement": "DOURNAZAC", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87060"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c4c48b7c732b4ebfeb239bf53342823d23b1158", "fields": {"nom_de_la_commune": "FEYTIAT", "libell_d_acheminement": "FEYTIAT", "code_postal": "87220", "coordonnees_gps": [45.7856210567, 1.35360552581], "code_commune_insee": "87065"}, "geometry": {"type": "Point", "coordinates": [1.35360552581, 45.7856210567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5880ce8fd0c74e8f1ba5f0327bff147f5d78c620", "fields": {"nom_de_la_commune": "FLAVIGNAC", "libell_d_acheminement": "FLAVIGNAC", "code_postal": "87230", "coordonnees_gps": [45.6620838392, 1.01085910015], "code_commune_insee": "87066"}, "geometry": {"type": "Point", "coordinates": [1.01085910015, 45.6620838392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb2b09a440b6bc80c98deff1577af4f56b1ad34", "fields": {"nom_de_la_commune": "FROMENTAL", "libell_d_acheminement": "FROMENTAL", "code_postal": "87250", "coordonnees_gps": [46.1128095458, 1.3801487434], "code_commune_insee": "87068"}, "geometry": {"type": "Point", "coordinates": [1.3801487434, 46.1128095458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6cb83336410d6576645c44a396bebe385753411", "fields": {"nom_de_la_commune": "LES GRANDS CHEZEAUX", "libell_d_acheminement": "LES GRANDS CHEZEAUX", "code_postal": "87160", "coordonnees_gps": [46.3147995575, 1.35815432469], "code_commune_insee": "87074"}, "geometry": {"type": "Point", "coordinates": [1.35815432469, 46.3147995575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "674ab8ab3fdc946b0471f02edb31f24dfd7ad202", "fields": {"nom_de_la_commune": "JANAILHAC", "libell_d_acheminement": "JANAILHAC", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87077"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbe8407bf716c10806f2c47a20e6fee5a63576cb", "fields": {"nom_de_la_commune": "LIMOGES", "libell_d_acheminement": "LIMOGES", "code_postal": "87280", "coordonnees_gps": [45.8544056025, 1.24905166141], "code_commune_insee": "87085"}, "geometry": {"type": "Point", "coordinates": [1.24905166141, 45.8544056025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "017039e3e6ca39c2d35269cbf27416dff0513608", "fields": {"nom_de_la_commune": "MAGNAC LAVAL", "libell_d_acheminement": "MAGNAC LAVAL", "code_postal": "87190", "coordonnees_gps": [46.235451221, 1.21744505876], "code_commune_insee": "87089"}, "geometry": {"type": "Point", "coordinates": [1.21744505876, 46.235451221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c29985ff6a5209b6e3d2042629e760b922c7de8", "fields": {"nom_de_la_commune": "LA MEYZE", "libell_d_acheminement": "LA MEYZE", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87096"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9299c2d4d06da661a0e545e6da67ab0ff94768c", "fields": {"nom_de_la_commune": "NIEUL", "libell_d_acheminement": "NIEUL", "code_postal": "87510", "coordonnees_gps": [45.9426175012, 1.15649856905], "code_commune_insee": "87107"}, "geometry": {"type": "Point", "coordinates": [1.15649856905, 45.9426175012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14eef00b2e18afb1a4bf2713bb0eedd51dc5fed5", "fields": {"nom_de_la_commune": "NOUIC", "libell_d_acheminement": "NOUIC", "code_postal": "87330", "coordonnees_gps": [46.112617356, 0.896746440713], "code_commune_insee": "87108"}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ac0b13f560bb2278149811f43092ebd9723582", "fields": {"nom_de_la_commune": "RAZES", "libell_d_acheminement": "RAZES", "code_postal": "87640", "coordonnees_gps": [46.0371840416, 1.3406343083], "code_commune_insee": "87122"}, "geometry": {"type": "Point", "coordinates": [1.3406343083, 46.0371840416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d911868a0baca44a77fa94d287518cfd31fb222", "fields": {"nom_de_la_commune": "LA ROCHE L ABEILLE", "libell_d_acheminement": "LA ROCHE L ABEILLE", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87127"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43bd77838eb28e9198f7673300d900a32a03d6ff", "fields": {"nom_de_la_commune": "ROUSSAC", "libell_d_acheminement": "ROUSSAC", "code_postal": "87140", "coordonnees_gps": [46.0207886477, 1.20450383374], "code_commune_insee": "87128"}, "geometry": {"type": "Point", "coordinates": [1.20450383374, 46.0207886477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6a8fa175fd923671afbc1278d304d39466ac1f5", "fields": {"nom_de_la_commune": "ROYERES", "libell_d_acheminement": "ROYERES", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87129"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9fec5541a0bf751c703a98138504ad553452912", "fields": {"nom_de_la_commune": "ST GENCE", "libell_d_acheminement": "ST GENCE", "code_postal": "87510", "coordonnees_gps": [45.9426175012, 1.15649856905], "code_commune_insee": "87143"}, "geometry": {"type": "Point", "coordinates": [1.15649856905, 45.9426175012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a2d3e2a3f9f88bb8829708092a446c636c41e19", "fields": {"nom_de_la_commune": "ST HILAIRE BONNEVAL", "libell_d_acheminement": "ST HILAIRE BONNEVAL", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87148"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f929c7286186ce4d5da40d6ecc9cabb7f16005", "fields": {"nom_de_la_commune": "ST JULIEN LE PETIT", "libell_d_acheminement": "ST JULIEN LE PETIT", "code_postal": "87460", "coordonnees_gps": [45.8082304662, 1.65843592046], "code_commune_insee": "87153"}, "geometry": {"type": "Point", "coordinates": [1.65843592046, 45.8082304662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1e4907d8502265652f77e47ab7e46d9243ec005", "fields": {"nom_de_la_commune": "ST JUNIEN LES COMBES", "libell_d_acheminement": "ST JUNIEN LES COMBES", "code_postal": "87300", "coordonnees_gps": [46.1043859997, 1.04347574499], "code_commune_insee": "87155"}, "geometry": {"type": "Point", "coordinates": [1.04347574499, 46.1043859997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1bf56e91f03345c0bd7b778f3496c0fe50a31cb", "fields": {"nom_de_la_commune": "ST LAURENT SUR GORRE", "libell_d_acheminement": "ST LAURENT SUR GORRE", "code_postal": "87310", "coordonnees_gps": [45.7951998863, 0.972217367577], "code_commune_insee": "87158"}, "geometry": {"type": "Point", "coordinates": [0.972217367577, 45.7951998863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1800d6296c0a23fbd648363eb685c9e91e14d2e", "fields": {"nom_de_la_commune": "ST LEGER MAGNAZEIX", "libell_d_acheminement": "ST LEGER MAGNAZEIX", "code_postal": "87190", "coordonnees_gps": [46.235451221, 1.21744505876], "code_commune_insee": "87160"}, "geometry": {"type": "Point", "coordinates": [1.21744505876, 46.235451221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63caadff700e7ba0ff949a20157a7f66b50ab260", "fields": {"nom_de_la_commune": "ST MARTIN DE JUSSAC", "libell_d_acheminement": "ST MARTIN DE JUSSAC", "code_postal": "87200", "coordonnees_gps": [45.8915461784, 0.908243597507], "code_commune_insee": "87164"}, "geometry": {"type": "Point", "coordinates": [0.908243597507, 45.8915461784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "149c8d64cba113d00ae3511825156cf0de4635d5", "fields": {"nom_de_la_commune": "ST MATHIEU", "libell_d_acheminement": "ST MATHIEU", "code_postal": "87440", "coordonnees_gps": [45.6750304013, 0.76861145842], "code_commune_insee": "87168"}, "geometry": {"type": "Point", "coordinates": [0.76861145842, 45.6750304013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4acd635074f3ae48517497586c48eb9e6ef63aa5", "fields": {"nom_de_la_commune": "ST PRIEST TAURION", "libell_d_acheminement": "ST PRIEST TAURION", "code_postal": "87480", "coordonnees_gps": [45.8976895915, 1.39589865728], "code_commune_insee": "87178"}, "geometry": {"type": "Point", "coordinates": [1.39589865728, 45.8976895915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553b964c4edebe9dc041b0701d02a7d4470354a7", "fields": {"nom_de_la_commune": "ST SORNIN LA MARCHE", "libell_d_acheminement": "ST SORNIN LA MARCHE", "code_postal": "87210", "coordonnees_gps": [46.2183955334, 1.04069984873], "code_commune_insee": "87179"}, "geometry": {"type": "Point", "coordinates": [1.04069984873, 46.2183955334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac7b83d53f89b865ba490ba3a77630ec84c77aeb", "fields": {"code_postal": "87290", "code_commune_insee": "87180", "libell_d_acheminement": "ST SORNIN LEULAC", "ligne_5": "ST PRIEST LE BETOUX", "nom_de_la_commune": "ST SORNIN LEULAC", "coordonnees_gps": [46.1497841077, 1.2728577587]}, "geometry": {"type": "Point", "coordinates": [1.2728577587, 46.1497841077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e1a69e27199d162411235a442ac6787b32139f2", "fields": {"nom_de_la_commune": "ST YRIEIX SOUS AIXE", "libell_d_acheminement": "ST YRIEIX SOUS AIXE", "code_postal": "87700", "coordonnees_gps": [45.7952355445, 1.1142799872], "code_commune_insee": "87188"}, "geometry": {"type": "Point", "coordinates": [1.1142799872, 45.7952355445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5cc710730d322c4246aa458786c4cbffe6d515c", "fields": {"nom_de_la_commune": "SAUVIAT SUR VIGE", "libell_d_acheminement": "SAUVIAT SUR VIGE", "code_postal": "87400", "coordonnees_gps": [45.8514328757, 1.51537380528], "code_commune_insee": "87190"}, "geometry": {"type": "Point", "coordinates": [1.51537380528, 45.8514328757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0437eea1780e096bf6e744652490e6c4f7b977c7", "fields": {"nom_de_la_commune": "SUSSAC", "libell_d_acheminement": "SUSSAC", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87194"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b696ba38e157d9d14912365acfacd44d599c67", "fields": {"nom_de_la_commune": "VEYRAC", "libell_d_acheminement": "VEYRAC", "code_postal": "87520", "coordonnees_gps": [45.945423937, 1.03102505904], "code_commune_insee": "87202"}, "geometry": {"type": "Point", "coordinates": [1.03102505904, 45.945423937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc4e25db1c8c2f6ef1ee1f9fcde9e642db6a7fb1", "fields": {"code_postal": "87520", "code_commune_insee": "87202", "libell_d_acheminement": "VEYRAC", "ligne_5": "LA BARRE DE VEYRAC", "nom_de_la_commune": "VEYRAC", "coordonnees_gps": [45.945423937, 1.03102505904]}, "geometry": {"type": "Point", "coordinates": [1.03102505904, 45.945423937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2ff8ddedf00202e8317badb7e0dfddc8009c10f", "fields": {"nom_de_la_commune": "VIDEIX", "libell_d_acheminement": "VIDEIX", "code_postal": "87600", "coordonnees_gps": [45.7931752464, 0.809506668159], "code_commune_insee": "87204"}, "geometry": {"type": "Point", "coordinates": [0.809506668159, 45.7931752464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee0e4d5157166d25bbc604259d08338d76ec2e20", "fields": {"nom_de_la_commune": "LE VIGEN", "libell_d_acheminement": "LE VIGEN", "code_postal": "87110", "coordonnees_gps": [45.746684922, 1.26292425158], "code_commune_insee": "87205"}, "geometry": {"type": "Point", "coordinates": [1.26292425158, 45.746684922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e78a2ba8bb2cce06702788d133160c32d26dfda", "fields": {"nom_de_la_commune": "AMBACOURT", "libell_d_acheminement": "AMBACOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88006"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b387070f208bfd212a2e3f1b4102dabd89250d65", "fields": {"nom_de_la_commune": "AUTREY", "libell_d_acheminement": "AUTREY", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88021"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efeeb31b5fe9746b5fbf590ade82493ed19b2480", "fields": {"nom_de_la_commune": "AVRAINVILLE", "libell_d_acheminement": "AVRAINVILLE", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88024"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "902514474c8ff82884d21caba75339262c92a81f", "fields": {"nom_de_la_commune": "AVRANVILLE", "libell_d_acheminement": "AVRANVILLE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88025"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551778613e783a4e24105e0db99e5c3aeba35dec", "fields": {"nom_de_la_commune": "BEAUFREMONT", "libell_d_acheminement": "BEAUFREMONT", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88045"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91f4a7354f337c1f47cb3929b6448153ae773b8d", "fields": {"nom_de_la_commune": "BELRUPT", "libell_d_acheminement": "BELRUPT", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88052"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc1d3cf46b1dac42f4a7a73d86094e3057bce001", "fields": {"nom_de_la_commune": "BLEVAINCOURT", "libell_d_acheminement": "BLEVAINCOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88062"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5871ad920d4e03dc3a66b1065fe702fff027431d", "fields": {"nom_de_la_commune": "BRECHAINVILLE", "libell_d_acheminement": "BRECHAINVILLE", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88074"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b04f1e8d7c044ee70451a40bee53670cdfee9d", "fields": {"nom_de_la_commune": "BULT", "libell_d_acheminement": "BULT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88080"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee2b6f64edc1567dd938b8b137060e0b80a10c08", "fields": {"nom_de_la_commune": "CELLES SUR PLAINE", "libell_d_acheminement": "CELLES SUR PLAINE", "code_postal": "88110", "coordonnees_gps": [48.4500564784, 6.97091495001], "code_commune_insee": "88082"}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1a08a9a78aff727794b7120175a9daa34ba045", "fields": {"nom_de_la_commune": "LA CHAPELLE DEVANT BRUYERES", "libell_d_acheminement": "LA CHAPELLE DEVANT BRUYERES", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88089"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3c44d843455fba99f597c0dd5cbb1e0e01e5613", "fields": {"nom_de_la_commune": "CHARMES", "libell_d_acheminement": "CHARMES", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88090"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0245776ea1cd2cf24883ff6af9a720b413526f26", "fields": {"nom_de_la_commune": "CHATAS", "libell_d_acheminement": "CHATAS", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88093"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6964260d61b15e55f4c3d5d212079481bfeb29d2", "fields": {"nom_de_la_commune": "CHATEL SUR MOSELLE", "libell_d_acheminement": "CHATEL SUR MOSELLE", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88094"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b074241f35cbd2e3ac4684b59a4621de69e4a68e", "fields": {"nom_de_la_commune": "CHEF HAUT", "libell_d_acheminement": "CHEF HAUT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88100"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb1a115cb21e8782196099945286dca3bc41e94", "fields": {"nom_de_la_commune": "CLAUDON", "libell_d_acheminement": "CLAUDON", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88105"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4cb2dc3ba303d674a0a395563f71578d1823299", "fields": {"nom_de_la_commune": "CLEREY LA COTE", "libell_d_acheminement": "CLEREY LA COTE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88107"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3264a5872f21d37d645f19a9811bc363aea461d", "fields": {"nom_de_la_commune": "CORCIEUX", "libell_d_acheminement": "CORCIEUX", "code_postal": "88430", "coordonnees_gps": [48.1658357174, 6.87708921795], "code_commune_insee": "88115"}, "geometry": {"type": "Point", "coordinates": [6.87708921795, 48.1658357174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9fabb87d1bce6b166442158377f617926f94a0a", "fields": {"nom_de_la_commune": "COUSSEY", "libell_d_acheminement": "COUSSEY", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88118"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb6325512e9d229bc15da5830e441e049e301655", "fields": {"nom_de_la_commune": "DAMAS AUX BOIS", "libell_d_acheminement": "DAMAS AUX BOIS", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88121"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "627b84ad151a6ecc58053732682cc71923c54435", "fields": {"nom_de_la_commune": "DAMBLAIN", "libell_d_acheminement": "DAMBLAIN", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88123"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8c6f4bc277976096bc5a41ab8090004962c14dc", "fields": {"nom_de_la_commune": "DARNIEULLES", "libell_d_acheminement": "DARNIEULLES", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88126"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c934ea9d0b3cc205c3580f7571a92904b1d120", "fields": {"nom_de_la_commune": "DOMBROT LE SEC", "libell_d_acheminement": "DOMBROT LE SEC", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88140"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c86f218c25794e9e364be9f0ee8defad484fcbc3", "fields": {"nom_de_la_commune": "DOMPTAIL", "libell_d_acheminement": "DOMPTAIL", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88153"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f49523785caa5aade22a4266f982560aef981e5", "fields": {"nom_de_la_commune": "DOUNOUX", "libell_d_acheminement": "DOUNOUX", "code_postal": "88220", "coordonnees_gps": [48.0725237155, 6.41958186786], "code_commune_insee": "88157"}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b26df846c6c7e6ca2b2dce62da70d01103480b82", "fields": {"nom_de_la_commune": "ELOYES", "libell_d_acheminement": "ELOYES", "code_postal": "88510", "coordonnees_gps": [48.0929897715, 6.62007230817], "code_commune_insee": "88158"}, "geometry": {"type": "Point", "coordinates": [6.62007230817, 48.0929897715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "680f4c19dabce5b2a9a783b681d8b9e73c154d8b", "fields": {"nom_de_la_commune": "EPINAL", "libell_d_acheminement": "EPINAL", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88160"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f96a6574e6cd5905efdb5dfa938a8a764c6c3c7c", "fields": {"nom_de_la_commune": "FAUCOMPIERRE", "libell_d_acheminement": "FAUCOMPIERRE", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88167"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f69d8681abee14ff3872c32644d1f391a84dc5", "fields": {"nom_de_la_commune": "FIMENIL", "libell_d_acheminement": "FIMENIL", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88172"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a88bd2b9a71bf63e50aa4d6b1711004e154b10", "fields": {"nom_de_la_commune": "FONTENOY LE CHATEAU", "libell_d_acheminement": "FONTENOY LE CHATEAU", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88176"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "491bde4c2cb4fafb9631d3faef528484baa0de05", "fields": {"nom_de_la_commune": "FRAPELLE", "libell_d_acheminement": "FRAPELLE", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88182"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9c85bacb40f61b4671135df108e76e7dcec122", "fields": {"nom_de_la_commune": "FRENELLE LA GRANDE", "libell_d_acheminement": "FRENELLE LA GRANDE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88185"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aae8261a4c960d81080a2cb676b69e91d2eedc99", "fields": {"nom_de_la_commune": "FRENOIS", "libell_d_acheminement": "FRENOIS", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88187"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8834b9698b6a622187eef65d4244ba9c72ae7611", "fields": {"nom_de_la_commune": "FRESSE SUR MOSELLE", "libell_d_acheminement": "FRESSE SUR MOSELLE", "code_postal": "88160", "coordonnees_gps": [47.8910254018, 6.78612164116], "code_commune_insee": "88188"}, "geometry": {"type": "Point", "coordinates": [6.78612164116, 47.8910254018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd36c79fe2622a1f0b3dd47425e0ad8325165883", "fields": {"nom_de_la_commune": "GENDREVILLE", "libell_d_acheminement": "GENDREVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88195"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8456408add1c8c6c55213348dc4e5cb079ce035", "fields": {"nom_de_la_commune": "GERBEPAL", "libell_d_acheminement": "GERBEPAL", "code_postal": "88430", "coordonnees_gps": [48.1658357174, 6.87708921795], "code_commune_insee": "88198"}, "geometry": {"type": "Point", "coordinates": [6.87708921795, 48.1658357174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c982fd0ad183f15bf0be753101103f969f94b171", "fields": {"nom_de_la_commune": "GIRONCOURT SUR VRAINE", "libell_d_acheminement": "GIRONCOURT SUR VRAINE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88206"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "957b1eebd0cc7cc99bbdde130e44a47c31e881c7", "fields": {"nom_de_la_commune": "ROCHEFORT SUR LA COTE", "libell_d_acheminement": "ROCHEFORT SUR LA COTE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52428"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c6cbeb33567e6399553e8473adcdb6779709ff0", "fields": {"nom_de_la_commune": "SAILLY", "libell_d_acheminement": "SAILLY", "code_postal": "52230", "coordonnees_gps": [48.4233848371, 5.31749003055], "code_commune_insee": "52443"}, "geometry": {"type": "Point", "coordinates": [5.31749003055, 48.4233848371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d917fde3fb5230ed37ff3a0fe259ec92c46fd449", "fields": {"code_postal": "52200", "code_commune_insee": "52449", "libell_d_acheminement": "SAINTS GEOSMES", "ligne_5": "BALESMES SUR MARNE", "nom_de_la_commune": "SAINTS GEOSMES", "coordonnees_gps": [47.8591837688, 5.27130634818]}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf28d09b1d885c7ecc835e7d73c76946b35113dd", "fields": {"nom_de_la_commune": "ST THIEBAULT", "libell_d_acheminement": "ST THIEBAULT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52455"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a73455bf609730c5f8483a232d9858dc52f7d3fc", "fields": {"nom_de_la_commune": "SARREY", "libell_d_acheminement": "SARREY", "code_postal": "52140", "coordonnees_gps": [47.9980544198, 5.51712697387], "code_commune_insee": "52461"}, "geometry": {"type": "Point", "coordinates": [5.51712697387, 47.9980544198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dfcb04daee4fc6f75f6e3e9a6b48f93ebb6d811", "fields": {"nom_de_la_commune": "SAVIGNY", "libell_d_acheminement": "SAVIGNY", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52467"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "312b4f15b4025c545718c32bd0a298aa2776f884", "fields": {"code_postal": "52000", "code_commune_insee": "52469", "libell_d_acheminement": "SEMOUTIERS MONTSAON", "ligne_5": "MONTSAON", "nom_de_la_commune": "SEMOUTIERS MONTSAON", "coordonnees_gps": [48.0957359337, 5.13646133401]}, "geometry": {"type": "Point", "coordinates": [5.13646133401, 48.0957359337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa6dee44906173dbb88f56bd54eff36a040c5e9d", "fields": {"nom_de_la_commune": "SIGNEVILLE", "libell_d_acheminement": "SIGNEVILLE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52473"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed12ffb79d60a3294aaa189d2f29a543f41d1c3", "fields": {"nom_de_la_commune": "SOMMANCOURT", "libell_d_acheminement": "SOMMANCOURT", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52475"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5842ad8aeb9cb0444b6354ccbcdd941dfb5901b8", "fields": {"nom_de_la_commune": "SOMMERECOURT", "libell_d_acheminement": "SOMMERECOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52476"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5361e75ff409c899c28b5111b02da1aaacadc2b9", "fields": {"code_postal": "52220", "code_commune_insee": "52479", "libell_d_acheminement": "SOMMEVOIRE", "ligne_5": "ROZIERES", "nom_de_la_commune": "SOMMEVOIRE", "coordonnees_gps": [48.4589686366, 4.78360005929]}, "geometry": {"type": "Point", "coordinates": [4.78360005929, 48.4589686366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a08367e70defd096d39837a3a632a16c5f2e562", "fields": {"nom_de_la_commune": "THOL LES MILLIERES", "libell_d_acheminement": "THOL LES MILLIERES", "code_postal": "52240", "coordonnees_gps": [48.0703177579, 5.52769658592], "code_commune_insee": "52489"}, "geometry": {"type": "Point", "coordinates": [5.52769658592, 48.0703177579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebf2d25bfa685c76b89a24a07c9d7db16783b374", "fields": {"code_postal": "52130", "code_commune_insee": "52497", "libell_d_acheminement": "TROISFONTAINES LA VILLE", "ligne_5": "FLORNOY", "nom_de_la_commune": "TROISFONTAINES LA VILLE", "coordonnees_gps": [48.5070439267, 4.95367156302]}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40016305c2fbafb2c9caff09e1f85db867934f75", "fields": {"code_postal": "52130", "code_commune_insee": "52497", "libell_d_acheminement": "TROISFONTAINES LA VILLE", "ligne_5": "VILLIERS AUX BOIS", "nom_de_la_commune": "TROISFONTAINES LA VILLE", "coordonnees_gps": [48.5070439267, 4.95367156302]}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf31f35bbdde2db863d72e77400923232c7a98ab", "fields": {"nom_de_la_commune": "VAUDRECOURT", "libell_d_acheminement": "VAUDRECOURT", "code_postal": "52150", "coordonnees_gps": [48.1917177947, 5.60510608882], "code_commune_insee": "52505"}, "geometry": {"type": "Point", "coordinates": [5.60510608882, 48.1917177947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974927fb0c248263848cf97d811115b48060ad6e", "fields": {"nom_de_la_commune": "VAUDREMONT", "libell_d_acheminement": "VAUDREMONT", "code_postal": "52330", "coordonnees_gps": [48.2048643897, 4.94792776969], "code_commune_insee": "52506"}, "geometry": {"type": "Point", "coordinates": [4.94792776969, 48.2048643897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6559d42c8aba6a298b2c43b1f8013e0a3c64da67", "fields": {"nom_de_la_commune": "VAUX SUR ST URBAIN", "libell_d_acheminement": "VAUX SUR ST URBAIN", "code_postal": "52300", "coordonnees_gps": [48.4374713855, 5.14251151909], "code_commune_insee": "52511"}, "geometry": {"type": "Point", "coordinates": [5.14251151909, 48.4374713855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8bf4fad3c5dbca5fdb67b5b26e5f35f4bbc1267", "fields": {"nom_de_la_commune": "VESAIGNES SOUS LAFAUCHE", "libell_d_acheminement": "VESAIGNES SOUS LAFAUCHE", "code_postal": "52700", "coordonnees_gps": [48.2458514312, 5.38109938015], "code_commune_insee": "52517"}, "geometry": {"type": "Point", "coordinates": [5.38109938015, 48.2458514312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f3b38c88fc8ce13eb175b51566edd24b7463cc5", "fields": {"nom_de_la_commune": "VESVRES SOUS CHALANCEY", "libell_d_acheminement": "VESVRES SOUS CHALANCEY", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52519"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78dee8196ad4a744048501d306a7a59124f61c5d", "fields": {"nom_de_la_commune": "VILLE EN BLAISOIS", "libell_d_acheminement": "VILLE EN BLAISOIS", "code_postal": "52130", "coordonnees_gps": [48.5070439267, 4.95367156302], "code_commune_insee": "52528"}, "geometry": {"type": "Point", "coordinates": [4.95367156302, 48.5070439267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c7ff86314d0e671047141d24b81d53cd9afd32", "fields": {"nom_de_la_commune": "VILLEGUSIEN LE LAC", "libell_d_acheminement": "VILLEGUSIEN LE LAC", "code_postal": "52190", "coordonnees_gps": [47.6848375764, 5.28767145229], "code_commune_insee": "52529"}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48130e7807d382b38ec61de0b179697173ac0bc2", "fields": {"code_postal": "52190", "code_commune_insee": "52529", "libell_d_acheminement": "VILLEGUSIEN LE LAC", "ligne_5": "ST MICHEL", "nom_de_la_commune": "VILLEGUSIEN LE LAC", "coordonnees_gps": [47.6848375764, 5.28767145229]}, "geometry": {"type": "Point", "coordinates": [5.28767145229, 47.6848375764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c1a7567f9a4e7f9c05db6e1925d4f5616336a9", "fields": {"nom_de_la_commune": "VOISINES", "libell_d_acheminement": "VOISINES", "code_postal": "52200", "coordonnees_gps": [47.8591837688, 5.27130634818], "code_commune_insee": "52545"}, "geometry": {"type": "Point", "coordinates": [5.27130634818, 47.8591837688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d692a3a8764b55dd2844faa2ef3f757a2cb3b428", "fields": {"nom_de_la_commune": "VONCOURT", "libell_d_acheminement": "VONCOURT", "code_postal": "52500", "coordonnees_gps": [47.7590950974, 5.58361312095], "code_commune_insee": "52546"}, "geometry": {"type": "Point", "coordinates": [5.58361312095, 47.7590950974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d37410a72d7bc1437be05023229ac7e17a5f0d8", "fields": {"nom_de_la_commune": "VRAINCOURT", "libell_d_acheminement": "VRAINCOURT", "code_postal": "52310", "coordonnees_gps": [48.2108562649, 5.11797313893], "code_commune_insee": "52548"}, "geometry": {"type": "Point", "coordinates": [5.11797313893, 48.2108562649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d9c4cee1bf37d38fd50db7267ef474ff3f91d1", "fields": {"nom_de_la_commune": "ARGENTON NOTRE DAME", "libell_d_acheminement": "ARGENTON NOTRE DAME", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53006"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54186693e1f06010d07ea52fefd9bb809496233f", "fields": {"nom_de_la_commune": "ARGENTRE", "libell_d_acheminement": "ARGENTRE", "code_postal": "53210", "coordonnees_gps": [48.0752567481, -0.609038039774], "code_commune_insee": "53007"}, "geometry": {"type": "Point", "coordinates": [-0.609038039774, 48.0752567481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cabc99dd94bda0d384eed1e0fe128e13638308f9", "fields": {"nom_de_la_commune": "ARQUENAY", "libell_d_acheminement": "ARQUENAY", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53009"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eddd600cd0c1d4dfeb1ff87afb672b6e74e77ad", "fields": {"nom_de_la_commune": "ATHEE", "libell_d_acheminement": "ATHEE", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53012"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019b61042af92df0257ec49b5598fab0f64cbfc8", "fields": {"nom_de_la_commune": "BAIS", "libell_d_acheminement": "BAIS", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53016"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd037c79ac2bcae23b7f669f12f5615e74bfa7b", "fields": {"nom_de_la_commune": "BALLEE", "libell_d_acheminement": "BALLEE", "code_postal": "53340", "coordonnees_gps": [47.9616979352, -0.393093948942], "code_commune_insee": "53017"}, "geometry": {"type": "Point", "coordinates": [-0.393093948942, 47.9616979352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6ae877839e1f057fd5568b3a01aee2a84527396", "fields": {"nom_de_la_commune": "LA BAZOUGE DE CHEMERE", "libell_d_acheminement": "LA BAZOUGE DE CHEMERE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53022"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43dfc1ff256823ef1cc93c2aa1bef0b535de481d", "fields": {"nom_de_la_commune": "BEAULIEU SUR OUDON", "libell_d_acheminement": "BEAULIEU SUR OUDON", "code_postal": "53320", "coordonnees_gps": [48.0269054563, -0.962440957136], "code_commune_insee": "53026"}, "geometry": {"type": "Point", "coordinates": [-0.962440957136, 48.0269054563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abd96b8837a8aefa6dc4d8b73c55686305b07d23", "fields": {"nom_de_la_commune": "LA BOISSIERE", "libell_d_acheminement": "LA BOISSIERE", "code_postal": "53800", "coordonnees_gps": [47.8127039941, -1.05346118825], "code_commune_insee": "53033"}, "geometry": {"type": "Point", "coordinates": [-1.05346118825, 47.8127039941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e9673cc9d88e99f8f757c2efc359d5275994f1", "fields": {"nom_de_la_commune": "BONCHAMP LES LAVAL", "libell_d_acheminement": "BONCHAMP LES LAVAL", "code_postal": "53960", "coordonnees_gps": [48.0677231466, -0.698709386545], "code_commune_insee": "53034"}, "geometry": {"type": "Point", "coordinates": [-0.698709386545, 48.0677231466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ccd0165859460f764c03e46b69482cdc5fe5a2", "fields": {"nom_de_la_commune": "LE BOURGNEUF LA FORET", "libell_d_acheminement": "LE BOURGNEUF LA FORET", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53039"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7edeaa26618914259614fe4299f5745363e26b8c", "fields": {"nom_de_la_commune": "BRECE", "libell_d_acheminement": "BRECE", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53042"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a471edfa40d3e7563e21b5154efdac427fc51a3", "fields": {"nom_de_la_commune": "LA CHAPELLE RAINSOUIN", "libell_d_acheminement": "LA CHAPELLE RAINSOUIN", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53059"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ecab21b82be320d1498b7e3760b4d3c2f6f2163", "fields": {"nom_de_la_commune": "CHATILLON SUR COLMONT", "libell_d_acheminement": "CHATILLON SUR COLMONT", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53064"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930573f1c72712f0ffa8bb1249920e8106a83c9a", "fields": {"nom_de_la_commune": "COSSE LE VIVIEN", "libell_d_acheminement": "COSSE LE VIVIEN", "code_postal": "53230", "coordonnees_gps": [47.9490046036, -0.924040792242], "code_commune_insee": "53077"}, "geometry": {"type": "Point", "coordinates": [-0.924040792242, 47.9490046036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b331235f0db49f5ee7d5a572bf0a2637b623f597", "fields": {"nom_de_la_commune": "COURCITE", "libell_d_acheminement": "COURCITE", "code_postal": "53700", "coordonnees_gps": [48.3268907629, -0.243628404864], "code_commune_insee": "53083"}, "geometry": {"type": "Point", "coordinates": [-0.243628404864, 48.3268907629]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf1bf88fbd8a6f4743e23e88a1d0b48ac03d9ed2", "fields": {"nom_de_la_commune": "LA CROIXILLE", "libell_d_acheminement": "LA CROIXILLE", "code_postal": "53380", "coordonnees_gps": [48.2253517545, -1.00061376372], "code_commune_insee": "53086"}, "geometry": {"type": "Point", "coordinates": [-1.00061376372, 48.2253517545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c893463fd41dc0fe06b58a328d6dc4bf83eeb0c1", "fields": {"nom_de_la_commune": "LA CROPTE", "libell_d_acheminement": "LA CROPTE", "code_postal": "53170", "coordonnees_gps": [47.9626559813, -0.58360264579], "code_commune_insee": "53087"}, "geometry": {"type": "Point", "coordinates": [-0.58360264579, 47.9626559813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af48bb9922ea174e3b0bf528e10debe121e0eb8a", "fields": {"nom_de_la_commune": "DEUX EVAILLES", "libell_d_acheminement": "DEUX EVAILLES", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53092"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75ad97be0dfc4a7308122f13c81150772698f679", "fields": {"nom_de_la_commune": "ERNEE", "libell_d_acheminement": "ERNEE", "code_postal": "53500", "coordonnees_gps": [48.3059363855, -0.916419053315], "code_commune_insee": "53096"}, "geometry": {"type": "Point", "coordinates": [-0.916419053315, 48.3059363855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8eba32aeae1fb84532bba186f13a7376193d6f7", "fields": {"nom_de_la_commune": "FONTAINE COUVERTE", "libell_d_acheminement": "FONTAINE COUVERTE", "code_postal": "53350", "coordonnees_gps": [47.8986067834, -1.10393836397], "code_commune_insee": "53098"}, "geometry": {"type": "Point", "coordinates": [-1.10393836397, 47.8986067834]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c178088cc03def65bdb9200fd61a40566d4feb7e", "fields": {"nom_de_la_commune": "FORCE", "libell_d_acheminement": "FORCE", "code_postal": "53260", "coordonnees_gps": [48.0032103275, -0.692724123682], "code_commune_insee": "53099"}, "geometry": {"type": "Point", "coordinates": [-0.692724123682, 48.0032103275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65258d32626773037bbcb60f315ff662c08555dc", "fields": {"nom_de_la_commune": "LA GRAVELLE", "libell_d_acheminement": "LA GRAVELLE", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53108"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7641177c62883d6eae101a6f99ae61c13b2264c", "fields": {"nom_de_la_commune": "GREZ EN BOUERE", "libell_d_acheminement": "GREZ EN BOUERE", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53110"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2341a5ce00bc5846bb8159ff9120482aaf064e40", "fields": {"nom_de_la_commune": "LA HAIE TRAVERSAINE", "libell_d_acheminement": "LA HAIE TRAVERSAINE", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53111"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab9e5b618c5a3c6fabd5cfb8f020f2053cb9ec3", "fields": {"nom_de_la_commune": "HARDANGES", "libell_d_acheminement": "HARDANGES", "code_postal": "53640", "coordonnees_gps": [48.3702796098, -0.466991822845], "code_commune_insee": "53114"}, "geometry": {"type": "Point", "coordinates": [-0.466991822845, 48.3702796098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5291f417c3cc8ff63e0dcec1ee6d79f7781b6121", "fields": {"nom_de_la_commune": "IZE", "libell_d_acheminement": "IZE", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53120"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "979e8c471513e1f3a9f12fa9356efc532e86370d", "fields": {"nom_de_la_commune": "JUBLAINS", "libell_d_acheminement": "JUBLAINS", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53122"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aea88080e6082223067d350c9e3f895c795c0a7b", "fields": {"nom_de_la_commune": "LAIGNE", "libell_d_acheminement": "LAIGNE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53124"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2236f2545f9fc34e59d1b760d35e976290623af", "fields": {"nom_de_la_commune": "LAUNAY VILLIERS", "libell_d_acheminement": "LAUNAY VILLIERS", "code_postal": "53410", "coordonnees_gps": [48.1336404167, -0.980854077022], "code_commune_insee": "53129"}, "geometry": {"type": "Point", "coordinates": [-0.980854077022, 48.1336404167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "409a1f826ab155a4cc1e4ac88668ff6527fd55a6", "fields": {"nom_de_la_commune": "LOIGNE SUR MAYENNE", "libell_d_acheminement": "LOIGNE SUR MAYENNE", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53136"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1cc63f33df83ca8397190694234032ceea163b4", "fields": {"code_postal": "53320", "code_commune_insee": "53137", "libell_d_acheminement": "LOIRON RUILLE", "ligne_5": "RUILLE LE GRAVELAIS", "nom_de_la_commune": "LOIRON RUILLE", "coordonnees_gps": [48.0269054563, -0.962440957136]}, "geometry": {"type": "Point", "coordinates": [-0.962440957136, 48.0269054563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ac70f27167ad5eac1920309d3c444e84f8bf677", "fields": {"nom_de_la_commune": "LOUVIGNE", "libell_d_acheminement": "LOUVIGNE", "code_postal": "53210", "coordonnees_gps": [48.0752567481, -0.609038039774], "code_commune_insee": "53141"}, "geometry": {"type": "Point", "coordinates": [-0.609038039774, 48.0752567481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a5de598ed606c6bf50370fd6427aab0a321bf0", "fields": {"nom_de_la_commune": "MARIGNE PEUTON", "libell_d_acheminement": "MARIGNE PEUTON", "code_postal": "53200", "coordonnees_gps": [47.8199489086, -0.703656647783], "code_commune_insee": "53145"}, "geometry": {"type": "Point", "coordinates": [-0.703656647783, 47.8199489086]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8145a562c6d8f6df607f8a5cef5d0722a036c29", "fields": {"nom_de_la_commune": "MONTENAY", "libell_d_acheminement": "MONTENAY", "code_postal": "53500", "coordonnees_gps": [48.3059363855, -0.916419053315], "code_commune_insee": "53155"}, "geometry": {"type": "Point", "coordinates": [-0.916419053315, 48.3059363855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480ec59b6f580fc5797f2737ac90c2eb765ba136", "fields": {"nom_de_la_commune": "MONTFLOURS", "libell_d_acheminement": "MONTFLOURS", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53156"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9c0c57495f7cc1fe7a058d011e775b95bd1e23", "fields": {"nom_de_la_commune": "MOULAY", "libell_d_acheminement": "MOULAY", "code_postal": "53100", "coordonnees_gps": [48.3036155584, -0.694747095996], "code_commune_insee": "53162"}, "geometry": {"type": "Point", "coordinates": [-0.694747095996, 48.3036155584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d6d531f2f2cbfc14752f3baa664428bb82a0cd", "fields": {"nom_de_la_commune": "NIAFLES", "libell_d_acheminement": "NIAFLES", "code_postal": "53400", "coordonnees_gps": [47.844698761, -0.930832432477], "code_commune_insee": "53165"}, "geometry": {"type": "Point", "coordinates": [-0.930832432477, 47.844698761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c14c4c5568d360565d90217b0ad6fcba95c7e9d", "fields": {"nom_de_la_commune": "ORIGNE", "libell_d_acheminement": "ORIGNE", "code_postal": "53360", "coordonnees_gps": [47.9163829894, -0.78422271898], "code_commune_insee": "53172"}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e22ab0632fee7ef4501c62d761748f4fd32c3962", "fields": {"nom_de_la_commune": "LE PAS", "libell_d_acheminement": "LE PAS", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53176"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f16690ba562f39277eb672cf23b7351ec1184d8a", "fields": {"nom_de_la_commune": "PEUTON", "libell_d_acheminement": "PEUTON", "code_postal": "53360", "coordonnees_gps": [47.9163829894, -0.78422271898], "code_commune_insee": "53178"}, "geometry": {"type": "Point", "coordinates": [-0.78422271898, 47.9163829894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a8bb4d76e81b7347b9f8f7a5ba5ea3c231db128", "fields": {"nom_de_la_commune": "LA ROUAUDIERE", "libell_d_acheminement": "LA ROUAUDIERE", "code_postal": "53390", "coordonnees_gps": [47.8296503455, -1.17079905697], "code_commune_insee": "53192"}, "geometry": {"type": "Point", "coordinates": [-1.17079905697, 47.8296503455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74f5276103ecfa7779cf1a1d8de2e3feb1f1df15", "fields": {"nom_de_la_commune": "ST AUBIN FOSSE LOUVAIN", "libell_d_acheminement": "ST AUBIN FOSSE LOUVAIN", "code_postal": "53120", "coordonnees_gps": [48.4100282954, -0.83191899819], "code_commune_insee": "53199"}, "geometry": {"type": "Point", "coordinates": [-0.83191899819, 48.4100282954]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94fb06baae7175e15bf87c4a6768def7af644500", "fields": {"nom_de_la_commune": "ST CALAIS DU DESERT", "libell_d_acheminement": "ST CALAIS DU DESERT", "code_postal": "53140", "coordonnees_gps": [48.4797003216, -0.222461490352], "code_commune_insee": "53204"}, "geometry": {"type": "Point", "coordinates": [-0.222461490352, 48.4797003216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21af90c60689e6a6ed83041c03792c65e5f03661", "fields": {"nom_de_la_commune": "ST CHRISTOPHE DU LUAT", "libell_d_acheminement": "ST CHRISTOPHE DU LUAT", "code_postal": "53150", "coordonnees_gps": [48.1479193113, -0.529248165322], "code_commune_insee": "53207"}, "geometry": {"type": "Point", "coordinates": [-0.529248165322, 48.1479193113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d8b6aa594f783769079e7d96fe4a15c32c7e99", "fields": {"nom_de_la_commune": "ST GERMAIN D ANXURE", "libell_d_acheminement": "ST GERMAIN D ANXURE", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53222"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ccf846375a1c7319d5cfe026c471261ad4a2d5", "fields": {"nom_de_la_commune": "ST GERMAIN LE GUILLAUME", "libell_d_acheminement": "ST GERMAIN LE GUILLAUME", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53225"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f546a2d73619705a5a47ef3113c3127ddfd15e", "fields": {"nom_de_la_commune": "ST JEAN SUR MAYENNE", "libell_d_acheminement": "ST JEAN SUR MAYENNE", "code_postal": "53240", "coordonnees_gps": [48.1953082933, -0.795986535008], "code_commune_insee": "53229"}, "geometry": {"type": "Point", "coordinates": [-0.795986535008, 48.1953082933]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "607682254dcdf529e953b70e3dd4b23975ad19e5", "fields": {"nom_de_la_commune": "ST LAURENT DES MORTIERS", "libell_d_acheminement": "ST LAURENT DES MORTIERS", "code_postal": "53290", "coordonnees_gps": [47.8357693911, -0.486276474711], "code_commune_insee": "53231"}, "geometry": {"type": "Point", "coordinates": [-0.486276474711, 47.8357693911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a93fbaff2c5355ebb54c78796af3812f0f58d73", "fields": {"nom_de_la_commune": "ST LEGER", "libell_d_acheminement": "ST LEGER", "code_postal": "53480", "coordonnees_gps": [48.0582603543, -0.470360797173], "code_commune_insee": "53232"}, "geometry": {"type": "Point", "coordinates": [-0.470360797173, 48.0582603543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0289f4bccf7a87750ca51a23e0604a5e88f02e6a", "fields": {"nom_de_la_commune": "ST LOUP DU GAST", "libell_d_acheminement": "ST LOUP DU GAST", "code_postal": "53300", "coordonnees_gps": [48.4002685671, -0.643929114886], "code_commune_insee": "53234"}, "geometry": {"type": "Point", "coordinates": [-0.643929114886, 48.4002685671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0f2429fb0adcdd6bcc07802958e3f36924ac0e", "fields": {"nom_de_la_commune": "ST MARTIN DE CONNEE", "libell_d_acheminement": "ST MARTIN DE CONNEE", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53239"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71fe1e1126f8949eb8e82fc1b81d927d60558166", "fields": {"nom_de_la_commune": "ST POIX", "libell_d_acheminement": "ST POIX", "code_postal": "53540", "coordonnees_gps": [47.9577685856, -1.09475844584], "code_commune_insee": "53250"}, "geometry": {"type": "Point", "coordinates": [-1.09475844584, 47.9577685856]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51b48f4f836dca55dc94be1c965b5623fae1eb4c", "fields": {"code_postal": "53270", "code_commune_insee": "53255", "libell_d_acheminement": "STE SUZANNE ET CHAMMES", "ligne_5": "CHAMMES", "nom_de_la_commune": "STE SUZANNE ET CHAMMES", "coordonnees_gps": [48.066547004, -0.33227388574]}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20a5c566967b305f9329d1444c91074704cfbe07", "fields": {"nom_de_la_commune": "SENONNES", "libell_d_acheminement": "SENONNES", "code_postal": "53390", "coordonnees_gps": [47.8296503455, -1.17079905697], "code_commune_insee": "53259"}, "geometry": {"type": "Point", "coordinates": [-1.17079905697, 47.8296503455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "327b1f9f8e9c4f4597502169c34265f03642c2fa", "fields": {"nom_de_la_commune": "THORIGNE EN CHARNIE", "libell_d_acheminement": "THORIGNE EN CHARNIE", "code_postal": "53270", "coordonnees_gps": [48.066547004, -0.33227388574], "code_commune_insee": "53264"}, "geometry": {"type": "Point", "coordinates": [-0.33227388574, 48.066547004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53c40589a30f30abe01b9830ae6641c2aa4b7699", "fields": {"nom_de_la_commune": "VAIGES", "libell_d_acheminement": "VAIGES", "code_postal": "53480", "coordonnees_gps": [48.0582603543, -0.470360797173], "code_commune_insee": "53267"}, "geometry": {"type": "Point", "coordinates": [-0.470360797173, 48.0582603543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe5286f35ec178abe1c0a3d7430a15094864541", "fields": {"nom_de_la_commune": "VIMARCE", "libell_d_acheminement": "VIMARCE", "code_postal": "53160", "coordonnees_gps": [48.2445452823, -0.332223287872], "code_commune_insee": "53274"}, "geometry": {"type": "Point", "coordinates": [-0.332223287872, 48.2445452823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d36601f9b20b9768acc4f67c52ee7fe397f2105", "fields": {"nom_de_la_commune": "ABAUCOURT", "libell_d_acheminement": "ABAUCOURT SUR SEILLE", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54001"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c31b45c757a2e3dc19fb4ff556e9bf12cf2e49", "fields": {"nom_de_la_commune": "AFFLEVILLE", "libell_d_acheminement": "AFFLEVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54004"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a187e3351e4ac662c7dac34abb2c5ffcc1eeab81", "fields": {"nom_de_la_commune": "ALLONDRELLE LA MALMAISON", "libell_d_acheminement": "ALLONDRELLE LA MALMAISON", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54011"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8cd70a41fa01c9bddd06e15b461804ed9a97e42", "fields": {"nom_de_la_commune": "AMANCE", "libell_d_acheminement": "AMANCE", "code_postal": "54770", "coordonnees_gps": [48.7569187312, 6.27788013157], "code_commune_insee": "54012"}, "geometry": {"type": "Point", "coordinates": [6.27788013157, 48.7569187312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f67d59c7464e801281d52bb2545e7a5661641d", "fields": {"nom_de_la_commune": "AMENONCOURT", "libell_d_acheminement": "AMENONCOURT", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54013"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f125a19822f5634926a6b7a9d77d3659e11529a", "fields": {"nom_de_la_commune": "ANGOMONT", "libell_d_acheminement": "ANGOMONT", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54017"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8551ab57a8fadaf21528c454a890077269f09457", "fields": {"nom_de_la_commune": "ANOUX", "libell_d_acheminement": "ANOUX", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54018"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c33c2625266974846ae854e395d1fee3a8fc493a", "fields": {"nom_de_la_commune": "ANSAUVILLE", "libell_d_acheminement": "ANSAUVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54019"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55dfbd5f6e5a6d5a4ab476eff5fc8ee7146caf28", "fields": {"nom_de_la_commune": "ANTHELUPT", "libell_d_acheminement": "ANTHELUPT", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54020"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50dd2139096f5bf81af8f49e3b3ca3edfc603a73", "fields": {"nom_de_la_commune": "ARMAUCOURT", "libell_d_acheminement": "ARMAUCOURT", "code_postal": "54760", "coordonnees_gps": [48.8078357534, 6.26083990436], "code_commune_insee": "54021"}, "geometry": {"type": "Point", "coordinates": [6.26083990436, 48.8078357534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99103c723a430ea2c080ecfae6b4bdfc2e5dcc45", "fields": {"code_postal": "54510", "code_commune_insee": "54025", "libell_d_acheminement": "ART SUR MEURTHE", "ligne_5": "BOSSERVILLE", "nom_de_la_commune": "ART SUR MEURTHE", "coordonnees_gps": [48.6692716698, 6.24903144638]}, "geometry": {"type": "Point", "coordinates": [6.24903144638, 48.6692716698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c010aaab6aa1a2bb1b99f7ea45a2702950dc92de", "fields": {"nom_de_la_commune": "AVRAINVILLE", "libell_d_acheminement": "AVRAINVILLE", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54034"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce6bc7a088957e0643d0c72bd407e30ba5b0e89", "fields": {"nom_de_la_commune": "AVRIL", "libell_d_acheminement": "AVRIL", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54036"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "729020c9cc6806e043b76184143e4d31c36e6f88", "fields": {"nom_de_la_commune": "AZELOT", "libell_d_acheminement": "AZELOT", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54037"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa2cee5a5a1eaadf3006abacb4f518d190014af4", "fields": {"code_postal": "54120", "code_commune_insee": "54039", "libell_d_acheminement": "BACCARAT", "ligne_5": "BADMENIL", "nom_de_la_commune": "BACCARAT", "coordonnees_gps": [48.4609930612, 6.76417608089]}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99e11bca07ef02cff36aefb5fc8fbd10db2e2dca", "fields": {"code_postal": "54120", "code_commune_insee": "54039", "libell_d_acheminement": "BACCARAT", "ligne_5": "CRIVILLER", "nom_de_la_commune": "BACCARAT", "coordonnees_gps": [48.4609930612, 6.76417608089]}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a038ce940e8f6e56ac73ab24862266dc714705", "fields": {"nom_de_la_commune": "BATHELEMONT", "libell_d_acheminement": "BATHELEMONT", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54050"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa25011e29de507f18ff84a5c946d1b87103307c", "fields": {"nom_de_la_commune": "ST JEAN LIGOURE", "libell_d_acheminement": "ST JEAN LIGOURE", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87151"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9373311096855ddf2bcfe4738517bb3c5e96fc2", "fields": {"nom_de_la_commune": "ST JOUVENT", "libell_d_acheminement": "ST JOUVENT", "code_postal": "87510", "coordonnees_gps": [45.9426175012, 1.15649856905], "code_commune_insee": "87152"}, "geometry": {"type": "Point", "coordinates": [1.15649856905, 45.9426175012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "776161ab984b92d7dcc95f238123703f7961a88a", "fields": {"nom_de_la_commune": "STE MARIE DE VAUX", "libell_d_acheminement": "STE MARIE DE VAUX", "code_postal": "87420", "coordonnees_gps": [45.8770915845, 1.02789715577], "code_commune_insee": "87162"}, "geometry": {"type": "Point", "coordinates": [1.02789715577, 45.8770915845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc64ea0f26e10069e2ac9ecf72678dc4bddc8258", "fields": {"nom_de_la_commune": "ST MARTIAL SUR ISOP", "libell_d_acheminement": "ST MARTIAL SUR ISOP", "code_postal": "87330", "coordonnees_gps": [46.112617356, 0.896746440713], "code_commune_insee": "87163"}, "geometry": {"type": "Point", "coordinates": [0.896746440713, 46.112617356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a58f27682eba9e1c30c9ec34faf3b5d11022f50e", "fields": {"nom_de_la_commune": "ST MARTIN LE VIEUX", "libell_d_acheminement": "ST MARTIN LE VIEUX", "code_postal": "87700", "coordonnees_gps": [45.7952355445, 1.1142799872], "code_commune_insee": "87166"}, "geometry": {"type": "Point", "coordinates": [1.1142799872, 45.7952355445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1449e104432e9419fc37b61ef2912ffbab41409b", "fields": {"nom_de_la_commune": "ST MAURICE LES BROUSSES", "libell_d_acheminement": "ST MAURICE LES BROUSSES", "code_postal": "87800", "coordonnees_gps": [45.6516918989, 1.21380222328], "code_commune_insee": "87169"}, "geometry": {"type": "Point", "coordinates": [1.21380222328, 45.6516918989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825ae5c3a4256feb5e78298d8b8f8090be040d67", "fields": {"nom_de_la_commune": "ST MEARD", "libell_d_acheminement": "ST MEARD", "code_postal": "87130", "coordonnees_gps": [45.68309558, 1.59876351473], "code_commune_insee": "87170"}, "geometry": {"type": "Point", "coordinates": [1.59876351473, 45.68309558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f55602d458e886defdd760120f110fae547899f8", "fields": {"nom_de_la_commune": "ST PARDOUX", "libell_d_acheminement": "ST PARDOUX", "code_postal": "87250", "coordonnees_gps": [46.1128095458, 1.3801487434], "code_commune_insee": "87173"}, "geometry": {"type": "Point", "coordinates": [1.3801487434, 46.1128095458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3729a9f93df65b19370706615a278d8623e51733", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "87260", "coordonnees_gps": [45.7005792477, 1.40057644223], "code_commune_insee": "87174"}, "geometry": {"type": "Point", "coordinates": [1.40057644223, 45.7005792477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a61a8b679e1f461caa41a9557d4618733095b096", "fields": {"nom_de_la_commune": "ST VITTE SUR BRIANCE", "libell_d_acheminement": "ST VITTE SUR BRIANCE", "code_postal": "87380", "coordonnees_gps": [45.5947157942, 1.45034601112], "code_commune_insee": "87186"}, "geometry": {"type": "Point", "coordinates": [1.45034601112, 45.5947157942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796f583a95c87c87daaa176043b3f118fee2d35a", "fields": {"nom_de_la_commune": "ST YRIEIX LA PERCHE", "libell_d_acheminement": "ST YRIEIX LA PERCHE", "code_postal": "87500", "coordonnees_gps": [45.5304259487, 1.21634245482], "code_commune_insee": "87187"}, "geometry": {"type": "Point", "coordinates": [1.21634245482, 45.5304259487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a083747cbe3df9e0cf3fe73513fd647cecefecaf", "fields": {"nom_de_la_commune": "SEREILHAC", "libell_d_acheminement": "SEREILHAC", "code_postal": "87620", "coordonnees_gps": [45.7657338512, 1.06000557027], "code_commune_insee": "87191"}, "geometry": {"type": "Point", "coordinates": [1.06000557027, 45.7657338512]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24e5b158c600c6aa60d3d35398dc860ece8daf08", "fields": {"nom_de_la_commune": "TERSANNES", "libell_d_acheminement": "TERSANNES", "code_postal": "87360", "coordonnees_gps": [46.3220927277, 1.12131601301], "code_commune_insee": "87195"}, "geometry": {"type": "Point", "coordinates": [1.12131601301, 46.3220927277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20747449295dc6ed51bd053c47353bacc256437c", "fields": {"nom_de_la_commune": "THIAT", "libell_d_acheminement": "THIAT", "code_postal": "87320", "coordonnees_gps": [46.2450903271, 0.930736813539], "code_commune_insee": "87196"}, "geometry": {"type": "Point", "coordinates": [0.930736813539, 46.2450903271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94857b8e7995927e1a2c5cae7f87d38c5a3a0307", "fields": {"nom_de_la_commune": "VERNEUIL MOUSTIERS", "libell_d_acheminement": "VERNEUIL MOUSTIERS", "code_postal": "87360", "coordonnees_gps": [46.3220927277, 1.12131601301], "code_commune_insee": "87200"}, "geometry": {"type": "Point", "coordinates": [1.12131601301, 46.3220927277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54e3c4477b94ab28fa1845d72625277420c48004", "fields": {"nom_de_la_commune": "LES ABLEUVENETTES", "libell_d_acheminement": "LES ABLEUVENETTES", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88001"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c73046ca9519ac932dd730af038d7251b360ef5", "fields": {"nom_de_la_commune": "AINGEVILLE", "libell_d_acheminement": "AINGEVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88003"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4040d37749d5618e76545900236c4986b8abab1f", "fields": {"nom_de_la_commune": "ANGLEMONT", "libell_d_acheminement": "ANGLEMONT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88008"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce9838c9123a0a6a8584c018eb1ec1f015682b7", "fields": {"nom_de_la_commune": "ANOULD", "libell_d_acheminement": "ANOULD", "code_postal": "88650", "coordonnees_gps": [48.2058834977, 6.95656032842], "code_commune_insee": "88009"}, "geometry": {"type": "Point", "coordinates": [6.95656032842, 48.2058834977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2312fc248af5e4d0d70ea75d0786aada22f92cc9", "fields": {"nom_de_la_commune": "ARCHES", "libell_d_acheminement": "ARCHES", "code_postal": "88380", "coordonnees_gps": [48.1218845084, 6.52949097702], "code_commune_insee": "88011"}, "geometry": {"type": "Point", "coordinates": [6.52949097702, 48.1218845084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c7436be81668cd0e5503598e0064bd4732cc5bd", "fields": {"nom_de_la_commune": "AROFFE", "libell_d_acheminement": "AROFFE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88013"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "764a722c9359ce61bc47d5be4a6a69c22f4ae7ea", "fields": {"nom_de_la_commune": "ARRENTES DE CORCIEUX", "libell_d_acheminement": "ARRENTES DE CORCIEUX", "code_postal": "88430", "coordonnees_gps": [48.1658357174, 6.87708921795], "code_commune_insee": "88014"}, "geometry": {"type": "Point", "coordinates": [6.87708921795, 48.1658357174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "722fd9ff031909d790529d780d7394192fdec973", "fields": {"nom_de_la_commune": "ATTIGNY", "libell_d_acheminement": "ATTIGNY", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88016"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ad26c34d4f1e05afe6e1ed1248ab0a5f1dc3a74", "fields": {"nom_de_la_commune": "AUZAINVILLIERS", "libell_d_acheminement": "AUZAINVILLIERS", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88022"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb87b8189867c231f00e851cca826973599eb83", "fields": {"nom_de_la_commune": "LA BAFFE", "libell_d_acheminement": "LA BAFFE", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88028"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87e2f3bbdb475b6b934116fbb93ac0064d69e6b6", "fields": {"nom_de_la_commune": "BAINS LES BAINS", "libell_d_acheminement": "BAINS LES BAINS", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88029"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9d10d53e5093fbacbd76ae9cab3fef93351a55a", "fields": {"nom_de_la_commune": "BALLEVILLE", "libell_d_acheminement": "BALLEVILLE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88031"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b7d41c07e83e1c316ce082b479a506849ab1555", "fields": {"nom_de_la_commune": "BARBEY SEROUX", "libell_d_acheminement": "BARBEY SEROUX", "code_postal": "88640", "coordonnees_gps": [48.1317016087, 6.78306883061], "code_commune_insee": "88035"}, "geometry": {"type": "Point", "coordinates": [6.78306883061, 48.1317016087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b8e14548993504a267b3975b98f8e6e2569f9e1", "fields": {"nom_de_la_commune": "BARVILLE", "libell_d_acheminement": "BARVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88036"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24def93d5d76ac8169c070fbea26edeb1f937069", "fields": {"nom_de_la_commune": "BAUDRICOURT", "libell_d_acheminement": "BAUDRICOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88039"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f53858d9b048dbfd15eaff216616bb0ee6a6cd8", "fields": {"nom_de_la_commune": "BAZIEN", "libell_d_acheminement": "BAZIEN", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88042"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e61568ac0383a27ea0650f4565a1875ad939b648", "fields": {"nom_de_la_commune": "BEAUMENIL", "libell_d_acheminement": "BEAUMENIL", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88046"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7040685ef052e5870710dc66d1c86a89de889055", "fields": {"nom_de_la_commune": "BONVILLET", "libell_d_acheminement": "BONVILLET", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88065"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b98455f2e40994a8feea9a40b153586dcdf798bb", "fields": {"nom_de_la_commune": "BOULAINCOURT", "libell_d_acheminement": "BOULAINCOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88066"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a058181dc15a2eb6ea4158ac3f23ddd32d1e8e60", "fields": {"nom_de_la_commune": "BOUXURULLES", "libell_d_acheminement": "BOUXURULLES", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88070"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "131f68e51e68cfffdd04451f37205b7e31a4c4c1", "fields": {"nom_de_la_commune": "LA BRESSE", "libell_d_acheminement": "LA BRESSE", "code_postal": "88250", "coordonnees_gps": [48.0183127262, 6.92557093331], "code_commune_insee": "88075"}, "geometry": {"type": "Point", "coordinates": [6.92557093331, 48.0183127262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95825c2f92b0782add2919e9262643270ddae7cd", "fields": {"nom_de_la_commune": "CHAMP LE DUC", "libell_d_acheminement": "CHAMP LE DUC", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88086"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36b2f38abbe5e8c7fc8dd814ea379eb3519f1a45", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX BOIS", "libell_d_acheminement": "LA CHAPELLE AUX BOIS", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88088"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec3c3c246ec5d6154194ffddaf32006c364ef6a7", "fields": {"nom_de_la_commune": "CHATENOIS", "libell_d_acheminement": "CHATENOIS", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88095"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b27691cde91053f7bbba7036e4e75c4a415c90", "fields": {"code_postal": "88170", "code_commune_insee": "88095", "libell_d_acheminement": "CHATENOIS", "ligne_5": "VALAINCOURT", "nom_de_la_commune": "CHATENOIS", "coordonnees_gps": [48.3247219784, 5.86762951575]}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3aa0f00c03db16ef629bde4f16cecb7dc7371e6", "fields": {"nom_de_la_commune": "CHAVELOT", "libell_d_acheminement": "CHAVELOT", "code_postal": "88150", "coordonnees_gps": [48.2558226475, 6.42027850113], "code_commune_insee": "88099"}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84fdac778a02f52590ced3317f3bb998007a302c", "fields": {"nom_de_la_commune": "CHENIMENIL", "libell_d_acheminement": "CHENIMENIL", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88101"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04b70b0c71dde4f8dc7b8252fc39e22aa4e71e4", "fields": {"nom_de_la_commune": "CHERMISEY", "libell_d_acheminement": "CHERMISEY", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88102"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d404b7dfe9b62c50729c0c4cffa9c929991a069b", "fields": {"nom_de_la_commune": "CLEURIE", "libell_d_acheminement": "CLEURIE", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88109"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82cbf21f351da29f93f9e4a30ef17dd9b7779637", "fields": {"nom_de_la_commune": "COMBRIMONT", "libell_d_acheminement": "COMBRIMONT", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88113"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0a6eea8a4528da558230ce88761ab281a4394a1", "fields": {"nom_de_la_commune": "DENIPAIRE", "libell_d_acheminement": "DENIPAIRE", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88128"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15366a14b42654db1d61e83cba461a53e2e5845c", "fields": {"nom_de_la_commune": "DIGNONVILLE", "libell_d_acheminement": "DIGNONVILLE", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88133"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3401391df18140f325998cae5935269282b047c9", "fields": {"nom_de_la_commune": "DOGNEVILLE", "libell_d_acheminement": "DOGNEVILLE", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88136"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4594bdd2a35b1b1c05cb18dfe597f330aab4a789", "fields": {"nom_de_la_commune": "DOMBASLE DEVANT DARNEY", "libell_d_acheminement": "DOMBASLE DEVANT DARNEY", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88138"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3efb7797f252e53678c6b279acb7b401b710c84d", "fields": {"nom_de_la_commune": "DOMBASLE EN XAINTOIS", "libell_d_acheminement": "DOMBASLE EN XAINTOIS", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88139"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "138a7e31742e94b8bc73693ba186298bf8856560", "fields": {"nom_de_la_commune": "DOMEVRE SUR AVIERE", "libell_d_acheminement": "DOMEVRE SUR AVIERE", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88142"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31a5a55653f0632795b4e99fbd7d03931e18b29d", "fields": {"nom_de_la_commune": "DOMEVRE SUR DURBION", "libell_d_acheminement": "DOMEVRE SUR DURBION", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88143"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d3ff50e546c2f0a53c485402300c545d124c539", "fields": {"code_postal": "88800", "code_commune_insee": "88146", "libell_d_acheminement": "DOMJULIEN", "ligne_5": "GIROVILLERS SOUS MONTFORT", "nom_de_la_commune": "DOMJULIEN", "coordonnees_gps": [48.2141678531, 5.97354505837]}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7f7ff2781141ae8ae1ac8122a3a862d6b1e4d9", "fields": {"nom_de_la_commune": "DOMMARTIN SUR VRAINE", "libell_d_acheminement": "DOMMARTIN SUR VRAINE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88150"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99dcde4813568adc2752cbdbc58c0d2fb1f08227", "fields": {"nom_de_la_commune": "ENTRE DEUX EAUX", "libell_d_acheminement": "ENTRE DEUX EAUX", "code_postal": "88650", "coordonnees_gps": [48.2058834977, 6.95656032842], "code_commune_insee": "88159"}, "geometry": {"type": "Point", "coordinates": [6.95656032842, 48.2058834977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1b1bc4c146ee1a595157d59d0cb9897019c224", "fields": {"nom_de_la_commune": "ESCLES", "libell_d_acheminement": "ESCLES", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88161"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a427014b9f0983348181b3d65ba2f0e49b91b4a4", "fields": {"nom_de_la_commune": "ESLEY", "libell_d_acheminement": "ESLEY", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88162"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "014ec30a7894d4dc7987ebe3aa4368eb4b8bea82", "fields": {"nom_de_la_commune": "ESTRENNES", "libell_d_acheminement": "ESTRENNES", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88164"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acb98fbead12b2b01fb1472bf433fb5fae9cfcc1", "fields": {"nom_de_la_commune": "EVAUX ET MENIL", "libell_d_acheminement": "EVAUX ET MENIL", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88166"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "839680d8d0356b6d8acff95c719cc068f18d51b4", "fields": {"nom_de_la_commune": "FAUCONCOURT", "libell_d_acheminement": "FAUCONCOURT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88168"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95d336413415d3e52d81d6e2c00d16bdc6dd5649", "fields": {"nom_de_la_commune": "FIGNEVELLE", "libell_d_acheminement": "FIGNEVELLE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88171"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b16a264ab0ffa74e92624224ecf78dd3c9879265", "fields": {"nom_de_la_commune": "FOMEREY", "libell_d_acheminement": "FOMEREY", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88174"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef51a1c586da6d2b2d5ac7b928ced916628661a", "fields": {"nom_de_la_commune": "FOUCHECOURT", "libell_d_acheminement": "FOUCHECOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88179"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bdf4cbd9b93a3ecea6aa3ea31bb6bab3eb79920", "fields": {"code_postal": "88270", "code_commune_insee": "88192", "libell_d_acheminement": "GELVECOURT ET ADOMPT", "ligne_5": "ADOMPT", "nom_de_la_commune": "GELVECOURT ET ADOMPT", "coordonnees_gps": [48.1930149625, 6.21842096929]}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec19e9f0f6c2012c6c0da5b0cf9c831a96f0846", "fields": {"nom_de_la_commune": "GEMMELAINCOURT", "libell_d_acheminement": "GEMMELAINCOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88194"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecce6bd6a0223d112c828c57042f8b328a8f91f7", "fields": {"nom_de_la_commune": "GIGNEY", "libell_d_acheminement": "GIGNEY", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88200"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33cb88f11eeb667515c350cddfa4e76583eadb02", "fields": {"nom_de_la_commune": "GIRMONT VAL D AJOL", "libell_d_acheminement": "GIRMONT VAL D AJOL", "code_postal": "88340", "coordonnees_gps": [47.9435376979, 6.51696802708], "code_commune_insee": "88205"}, "geometry": {"type": "Point", "coordinates": [6.51696802708, 47.9435376979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99c3d319c5284b6072a8e4c6ec52c44f46624cbc", "fields": {"nom_de_la_commune": "HADIGNY LES VERRIERES", "libell_d_acheminement": "HADIGNY LES VERRIERES", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88224"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e4e9582e70c484be8bd2231d35ac3ddf10ef5e1", "fields": {"nom_de_la_commune": "HAILLAINVILLE", "libell_d_acheminement": "HAILLAINVILLE", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88228"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1750b70c4993a02006f0badffb336f4647020143", "fields": {"nom_de_la_commune": "HARDANCOURT", "libell_d_acheminement": "HARDANCOURT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88230"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b03f21c95dedd02c556a806acdf8e691800010ab", "fields": {"nom_de_la_commune": "HAREVILLE", "libell_d_acheminement": "HAREVILLE", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88231"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0195a94fc1bb1aa2fd7e914cc74b39994658a682", "fields": {"nom_de_la_commune": "HAROL", "libell_d_acheminement": "HAROL", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88233"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1108370b17370d4cd80a82fe299a2e64cd0d486", "fields": {"nom_de_la_commune": "HENNECOURT", "libell_d_acheminement": "HENNECOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88237"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06ba14c068be5c619427427f99f952a30640dad3", "fields": {"nom_de_la_commune": "HURBACHE", "libell_d_acheminement": "HURBACHE", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88245"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9285f12cc7c5f0d11f11908e8308db32557bc667", "fields": {"nom_de_la_commune": "JESONVILLE", "libell_d_acheminement": "JESONVILLE", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88252"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06d788651e6925b713fb8caae5eb702e14b30cd8", "fields": {"nom_de_la_commune": "LERRAIN", "libell_d_acheminement": "LERRAIN", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88267"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "281773844d4c4047b54e6cfa356f444843b1c9cf", "fields": {"nom_de_la_commune": "LIGNEVILLE", "libell_d_acheminement": "LIGNEVILLE", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88271"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96fe57491a1eb00f4fe7d40aa374d33f80572b8d", "fields": {"nom_de_la_commune": "LUSSE", "libell_d_acheminement": "LUSSE", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88276"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aba70074c376daff1e24251a04532e2b1e7c33e9", "fields": {"nom_de_la_commune": "MACONCOURT", "libell_d_acheminement": "MACONCOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88278"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09e716df9f0b98032eb5f251d67d2836ba63251c", "fields": {"nom_de_la_commune": "MADEGNEY", "libell_d_acheminement": "MADEGNEY", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88280"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13776f2d0f45b3c1e2cc4ceed1d0a10a7aea5527", "fields": {"nom_de_la_commune": "MANDRAY", "libell_d_acheminement": "MANDRAY", "code_postal": "88650", "coordonnees_gps": [48.2058834977, 6.95656032842], "code_commune_insee": "88284"}, "geometry": {"type": "Point", "coordinates": [6.95656032842, 48.2058834977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "231aba418fa8c81686950e28389bb49699943f9e", "fields": {"nom_de_la_commune": "MANDRES SUR VAIR", "libell_d_acheminement": "MANDRES SUR VAIR", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88285"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "105f96ba02bbd09def2861eaa0aaf17201a6a951", "fields": {"nom_de_la_commune": "MAZIROT", "libell_d_acheminement": "MAZIROT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88295"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2383d69aef715a2a7fafd2227b786914f532e9d", "fields": {"nom_de_la_commune": "MIDREVAUX", "libell_d_acheminement": "MIDREVAUX", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88303"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd226e5c2213a3cfe9248ca6c88a203ea6cda244", "fields": {"nom_de_la_commune": "MONTHUREUX SUR SAONE", "libell_d_acheminement": "MONTHUREUX SUR SAONE", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88310"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10a091f1a571814034db9f7f9b13f81a3ffaee97", "fields": {"nom_de_la_commune": "MOYENMOUTIER", "libell_d_acheminement": "MOYENMOUTIER", "code_postal": "88420", "coordonnees_gps": [48.384833761, 6.9174645421], "code_commune_insee": "88319"}, "geometry": {"type": "Point", "coordinates": [6.9174645421, 48.384833761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc18f2cc42500a89d0cf581f8e9a44a49b34033", "fields": {"nom_de_la_commune": "LA NEUVEVILLE SOUS MONTFORT", "libell_d_acheminement": "LA NEUVEVILLE SOUS MONTFORT", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88325"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a68c7d474e7a3fc7169d70a2ae129cf51f1bb3f", "fields": {"nom_de_la_commune": "PARGNY SOUS MUREAU", "libell_d_acheminement": "PARGNY SOUS MUREAU", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88344"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfe8aa255af5ac4fe0df2f3bb3ca0a86268e8ab9", "fields": {"code_postal": "88370", "code_commune_insee": "88351", "libell_d_acheminement": "PLOMBIERES LES BAINS", "ligne_5": "GRANGES DE PLOMBIERES", "nom_de_la_commune": "PLOMBIERES LES BAINS", "coordonnees_gps": [47.9937026909, 6.4494827214]}, "geometry": {"type": "Point", "coordinates": [6.4494827214, 47.9937026909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e0aeaf38700d805c7b0ca68ac63a35dcd713ef", "fields": {"nom_de_la_commune": "PROVENCHERES ET COLROY", "libell_d_acheminement": "PROVENCHERES ET COLROY", "code_postal": "88490", "coordonnees_gps": [48.3052037465, 7.10759475498], "code_commune_insee": "88361"}, "geometry": {"type": "Point", "coordinates": [7.10759475498, 48.3052037465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2723877404efea4c644296856d1e06c423da54b4", "fields": {"nom_de_la_commune": "PUNEROT", "libell_d_acheminement": "PUNEROT", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88363"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb725e29316e3a44968dc4d7e37629956098bb92", "fields": {"code_postal": "88110", "code_commune_insee": "88372", "libell_d_acheminement": "RAON L ETAPE", "ligne_5": "LA TROUCHE", "nom_de_la_commune": "RAON L ETAPE", "coordonnees_gps": [48.4500564784, 6.97091495001]}, "geometry": {"type": "Point", "coordinates": [6.97091495001, 48.4500564784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b45d5165cd00588714041fa7e52edd2eb26c3666", "fields": {"nom_de_la_commune": "REBEUVILLE", "libell_d_acheminement": "REBEUVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88376"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988a993a729805851a9e8e4e5733ff2174946b24", "fields": {"nom_de_la_commune": "REHAINCOURT", "libell_d_acheminement": "REHAINCOURT", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88379"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f42a29dd9e8fd7584a6257c1369117fc382ed7b4", "fields": {"nom_de_la_commune": "REMICOURT", "libell_d_acheminement": "REMICOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88382"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f02ee4d1c829cb9ef8954fe90b9a3df54170e5bb", "fields": {"nom_de_la_commune": "ROBECOURT", "libell_d_acheminement": "ROBECOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88390"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81edb2841168b0f1f843631ec58042336a6eb8c0", "fields": {"nom_de_la_commune": "ROUVRES LA CHETIVE", "libell_d_acheminement": "ROUVRES LA CHETIVE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88401"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "388af726af0cb14999bed74f84a99c1281046af9", "fields": {"nom_de_la_commune": "ST AME", "libell_d_acheminement": "ST AME", "code_postal": "88120", "coordonnees_gps": [48.0216912949, 6.74452235991], "code_commune_insee": "88409"}, "geometry": {"type": "Point", "coordinates": [6.74452235991, 48.0216912949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f08eaf75f42c5abd3cb1f5bbe3bbc70050f20524", "fields": {"nom_de_la_commune": "ST ETIENNE LES REMIREMONT", "libell_d_acheminement": "ST ETIENNE LES REMIREMONT", "code_postal": "88200", "coordonnees_gps": [48.0187075371, 6.60603974178], "code_commune_insee": "88415"}, "geometry": {"type": "Point", "coordinates": [6.60603974178, 48.0187075371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a509af0fc204ab8f9e9cbcd2e2fca748f8152c6f", "fields": {"nom_de_la_commune": "ST MENGE", "libell_d_acheminement": "ST MENGE", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88427"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b37b5c5cb45bdc6c92025f2641ae1f70bf26cd", "fields": {"nom_de_la_commune": "MEDAN", "libell_d_acheminement": "MEDAN", "code_postal": "78670", "coordonnees_gps": [48.943861939, 1.99265985453], "code_commune_insee": "78384"}, "geometry": {"type": "Point", "coordinates": [1.99265985453, 48.943861939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ee93f6f162b2eee61ae819203aea050b461d45", "fields": {"nom_de_la_commune": "MEZIERES SUR SEINE", "libell_d_acheminement": "MEZIERES SUR SEINE", "code_postal": "78970", "coordonnees_gps": [48.9531128559, 1.78304633175], "code_commune_insee": "78402"}, "geometry": {"type": "Point", "coordinates": [1.78304633175, 48.9531128559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6818834ef507a0d4aea353252c721523253a1bc5", "fields": {"nom_de_la_commune": "MILLEMONT", "libell_d_acheminement": "MILLEMONT", "code_postal": "78940", "coordonnees_gps": [48.8051176494, 1.74709379357], "code_commune_insee": "78404"}, "geometry": {"type": "Point", "coordinates": [1.74709379357, 48.8051176494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f75cc48a39915b6c58e86c1abea84d615c0e58e", "fields": {"nom_de_la_commune": "MONTALET LE BOIS", "libell_d_acheminement": "MONTALET LE BOIS", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78416"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2efe5f202af4f5f6005938cac78b8702accf1c9c", "fields": {"nom_de_la_commune": "MONTIGNY LE BRETONNEUX", "libell_d_acheminement": "MONTIGNY LE BRETONNEUX", "code_postal": "78180", "coordonnees_gps": [48.7795996738, 2.0299480585], "code_commune_insee": "78423"}, "geometry": {"type": "Point", "coordinates": [2.0299480585, 48.7795996738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3a4fbc4e413805da9c7e5c9b71ca67d56c5b0c4", "fields": {"nom_de_la_commune": "ORCEMONT", "libell_d_acheminement": "ORCEMONT", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78464"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea7eb020024bfb986ad8896684cac201514d09b7", "fields": {"nom_de_la_commune": "ORGERUS", "libell_d_acheminement": "ORGERUS", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78465"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0601624a53b7b1e5e99520dd509c1506d36cb261", "fields": {"nom_de_la_commune": "PERDREAUVILLE", "libell_d_acheminement": "PERDREAUVILLE", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78484"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1cbd6a922d7eb11ed45fa6f3bcc90a235048ece", "fields": {"code_postal": "78300", "code_commune_insee": "78498", "libell_d_acheminement": "POISSY", "ligne_5": "LA MALADRERIE", "nom_de_la_commune": "POISSY", "coordonnees_gps": [48.9238513521, 2.02821434005]}, "geometry": {"type": "Point", "coordinates": [2.02821434005, 48.9238513521]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3669da01e3f95a45b0fc93af086f2715aca1dd", "fields": {"nom_de_la_commune": "PRUNAY EN YVELINES", "libell_d_acheminement": "PRUNAY EN YVELINES", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78506"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02806a4849bfefee0a045b2d0b52da65d0fdb58d", "fields": {"nom_de_la_commune": "ST ILLIERS LA VILLE", "libell_d_acheminement": "ST ILLIERS LA VILLE", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78558"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76061a8ba5aa5165002f0cef0a0437d751b290ce", "fields": {"nom_de_la_commune": "ST ILLIERS LE BOIS", "libell_d_acheminement": "ST ILLIERS LE BOIS", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78559"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e824da9c4956719d325cb551e98b83b8cf06ba63", "fields": {"nom_de_la_commune": "ST LEGER EN YVELINES", "libell_d_acheminement": "ST LEGER EN YVELINES", "code_postal": "78610", "coordonnees_gps": [48.7133396179, 1.81485270271], "code_commune_insee": "78562"}, "geometry": {"type": "Point", "coordinates": [1.81485270271, 48.7133396179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f84e6dba5408450d17083f9d033f8b325b20e91", "fields": {"nom_de_la_commune": "ST MARTIN DES CHAMPS", "libell_d_acheminement": "ST MARTIN DES CHAMPS", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78565"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cc7f091879aec25962ea7ca97e12f9de02068d3", "fields": {"nom_de_la_commune": "SARTROUVILLE", "libell_d_acheminement": "SARTROUVILLE", "code_postal": "78500", "coordonnees_gps": [48.9397247823, 2.17441540243], "code_commune_insee": "78586"}, "geometry": {"type": "Point", "coordinates": [2.17441540243, 48.9397247823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dd589ee679a260e2dfa874e611290074771f1ad", "fields": {"nom_de_la_commune": "TILLY", "libell_d_acheminement": "TILLY", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78618"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1daa556501fbbcdbbfeb6879980d23ad4b85c4dc", "fields": {"nom_de_la_commune": "TRAPPES", "libell_d_acheminement": "TRAPPES", "code_postal": "78190", "coordonnees_gps": [48.7759760878, 1.99412661835], "code_commune_insee": "78621"}, "geometry": {"type": "Point", "coordinates": [1.99412661835, 48.7759760878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cdbb4aa181d98f6110f5af8a24f7aee28b174c6", "fields": {"nom_de_la_commune": "LE TREMBLAY SUR MAULDRE", "libell_d_acheminement": "LE TREMBLAY SUR MAULDRE", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78623"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff38e73ef0392f54d4157b42f06c7d441bb49b1", "fields": {"nom_de_la_commune": "LA VERRIERE", "libell_d_acheminement": "LA VERRIERE", "code_postal": "78320", "coordonnees_gps": [48.7362483478, 1.95125411115], "code_commune_insee": "78644"}, "geometry": {"type": "Point", "coordinates": [1.95125411115, 48.7362483478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3204e9684ee13af461c79514b5d22d39d136b696", "fields": {"nom_de_la_commune": "VERSAILLES", "libell_d_acheminement": "VERSAILLES", "code_postal": "78000", "coordonnees_gps": [48.8023412582, 2.11714488156], "code_commune_insee": "78646"}, "geometry": {"type": "Point", "coordinates": [2.11714488156, 48.8023412582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa08cfaf93f86c4a829981b2877f86681435bfc0", "fields": {"nom_de_la_commune": "LA VILLENEUVE EN CHEVRIE", "libell_d_acheminement": "LA VILLENEUVE EN CHEVRIE", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78668"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "086fe0c1fee93a819e52a5ced8d4b176f005b69d", "fields": {"nom_de_la_commune": "L ABSIE", "libell_d_acheminement": "L ABSIE", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79001"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aaa629d2ca5d26433a8f933608357daf83adfe2", "fields": {"code_postal": "79600", "code_commune_insee": "79005", "libell_d_acheminement": "AIRVAULT", "ligne_5": "BORCQ SUR AIRVAULT", "nom_de_la_commune": "AIRVAULT", "coordonnees_gps": [46.8218182102, -0.136529587594]}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca017a4d2a27f4d437ffb31754ab64fd16224ae7", "fields": {"nom_de_la_commune": "LES ALLEUDS", "libell_d_acheminement": "LES ALLEUDS", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79006"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e923ae93bc871247579abda2d5c7537ca554589d", "fields": {"nom_de_la_commune": "ARDIN", "libell_d_acheminement": "ARDIN", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79012"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9a6358349d224c6609c60637785f25fc3e97d9", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "BOESSE", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd65d6aef88fec46e4ee8a007507998ba142617", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "LA COUDRE", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd110ca4df2a55ba6405cf6759d77569e07f4146", "fields": {"nom_de_la_commune": "BELLEVILLE", "libell_d_acheminement": "BELLEVILLE", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79033"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a486929ed3536623d11363eefcf9b767d187ad0", "fields": {"nom_de_la_commune": "BOISME", "libell_d_acheminement": "BOISME", "code_postal": "79300", "coordonnees_gps": [46.8619599412, -0.471600678729], "code_commune_insee": "79038"}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd44cb0afddf32688d044cf3fa4bf8d85e2e909e", "fields": {"nom_de_la_commune": "BOISSEROLLES", "libell_d_acheminement": "BOISSEROLLES", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79039"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f61da4fa7b4f9c9938fef21f4db81d2f543eb5ce", "fields": {"nom_de_la_commune": "LA BOISSIERE EN GATINE", "libell_d_acheminement": "LA BOISSIERE EN GATINE", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79040"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e62a134e263322a5292854c49b5275f0163b154d", "fields": {"nom_de_la_commune": "BOUILLE ST PAUL", "libell_d_acheminement": "BOUILLE ST PAUL", "code_postal": "79290", "coordonnees_gps": [47.061559842, -0.28224777481], "code_commune_insee": "79044"}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9dea0f146e54ddf181c266195b47f64baf9b230", "fields": {"nom_de_la_commune": "BOUSSAIS", "libell_d_acheminement": "BOUSSAIS", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79047"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d72bf5fe145629df37c4046b779fc722135652", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "BREUIL CHAUSSEE", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38c097356561c4a8dd82cdbd62c65157d84f0bea", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "CHAMBROUTET", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30cab0dacca376ac15287593fb8c7c3aa4eb484f", "fields": {"nom_de_la_commune": "BRIOUX SUR BOUTONNE", "libell_d_acheminement": "BRIOUX SUR BOUTONNE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79057"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fee4b6970b46cc5f0936f5fb2615a33178f8390", "fields": {"nom_de_la_commune": "LE BUSSEAU", "libell_d_acheminement": "LE BUSSEAU", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79059"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7e3fde71079b7957750e19293c05b3a6b6238a0", "fields": {"nom_de_la_commune": "CERIZAY", "libell_d_acheminement": "CERIZAY", "code_postal": "79140", "coordonnees_gps": [46.8536328396, -0.662287760231], "code_commune_insee": "79062"}, "geometry": {"type": "Point", "coordinates": [-0.662287760231, 46.8536328396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "700b16ca38b48cb66f6fa6a18601e6f202c18e5b", "fields": {"code_postal": "79290", "code_commune_insee": "79063", "libell_d_acheminement": "CERSAY", "ligne_5": "ST PIERRE A CHAMP", "nom_de_la_commune": "CERSAY", "coordonnees_gps": [47.061559842, -0.28224777481]}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d542c224de8389ae2a56950fb4fd2c3c5261147d", "fields": {"code_postal": "79220", "code_commune_insee": "79066", "libell_d_acheminement": "CHAMPDENIERS ST DENIS", "ligne_5": "CHAMPEAUX", "nom_de_la_commune": "CHAMPDENIERS ST DENIS", "coordonnees_gps": [46.4780154702, -0.409601333646]}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a9ae53f7284557552e9781aac1070ee0c5be975", "fields": {"nom_de_la_commune": "CHANTECORPS", "libell_d_acheminement": "CHANTECORPS", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79068"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e066c328433563d008e0c4652139c057d2c0ee68", "fields": {"nom_de_la_commune": "LA CHAPELLE ST LAURENT", "libell_d_acheminement": "LA CHAPELLE ST LAURENT", "code_postal": "79430", "coordonnees_gps": [46.732474913, -0.465624571062], "code_commune_insee": "79076"}, "geometry": {"type": "Point", "coordinates": [-0.465624571062, 46.732474913]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54000c0f8100a47df2326079f14333893d174bcc", "fields": {"code_postal": "79700", "code_commune_insee": "79079", "libell_d_acheminement": "MAULEON", "ligne_5": "LE TEMPLE", "nom_de_la_commune": "MAULEON", "coordonnees_gps": [46.9364849279, -0.753058283039]}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c9770b5a20e655d71208e3ecf942e550f02aa2b", "fields": {"nom_de_la_commune": "COMBRAND", "libell_d_acheminement": "COMBRAND", "code_postal": "79140", "coordonnees_gps": [46.8536328396, -0.662287760231], "code_commune_insee": "79096"}, "geometry": {"type": "Point", "coordinates": [-0.662287760231, 46.8536328396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85a638d3667ffff98c5375b1e07ccfa3092ef04e", "fields": {"nom_de_la_commune": "COURLAY", "libell_d_acheminement": "COURLAY", "code_postal": "79440", "coordonnees_gps": [46.7823358982, -0.577587095421], "code_commune_insee": "79103"}, "geometry": {"type": "Point", "coordinates": [-0.577587095421, 46.7823358982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c550e95257e0bf57ad446d1f6d7070b392e97fb", "fields": {"nom_de_la_commune": "CREZIERES", "libell_d_acheminement": "CREZIERES", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79107"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97dcf12219d467aed3cce25b42673819f63037e1", "fields": {"nom_de_la_commune": "DOUX", "libell_d_acheminement": "DOUX", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79108"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb059a6b11b6da72f4ed41dc7ce321fdcf59b5e5", "fields": {"nom_de_la_commune": "ENSIGNE", "libell_d_acheminement": "ENSIGNE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79111"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55218cb12612a7ce07e129891575864e223a1d3c", "fields": {"nom_de_la_commune": "FAYE L ABBESSE", "libell_d_acheminement": "FAYE L ABBESSE", "code_postal": "79350", "coordonnees_gps": [46.774320286, -0.350730154497], "code_commune_insee": "79116"}, "geometry": {"type": "Point", "coordinates": [-0.350730154497, 46.774320286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "215dd7c5f7592ea2aaa63c97fcf52546e3650536", "fields": {"nom_de_la_commune": "LA FERRIERE EN PARTHENAY", "libell_d_acheminement": "LA FERRIERE EN PARTHENAY", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79120"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0591aa51758bb586474439ccab2a5f44607726e9", "fields": {"nom_de_la_commune": "GOURGE", "libell_d_acheminement": "GOURGE", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79135"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1df2254330fc1b9e8fe2b902a8704f0ae13953e6", "fields": {"code_postal": "79110", "code_commune_insee": "79136", "libell_d_acheminement": "GOURNAY LOIZE", "ligne_5": "LOIZE", "nom_de_la_commune": "GOURNAY LOIZE", "coordonnees_gps": [46.0796792551, -0.0776262361776]}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c8fb1f52341c702d45d21b8dbf01ec37d2471ea", "fields": {"code_postal": "79360", "code_commune_insee": "79137", "libell_d_acheminement": "GRANZAY GRIPT", "ligne_5": "GRIPT", "nom_de_la_commune": "GRANZAY GRIPT", "coordonnees_gps": [46.1718369403, -0.460736148916]}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dfbac9c44d1e05e1a33d6899683edfaf2d433d1", "fields": {"nom_de_la_commune": "LAGEON", "libell_d_acheminement": "LAGEON", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79145"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec0b9dac1d964a1115d51e60b224aff12dfceb8c", "fields": {"nom_de_la_commune": "LARGEASSE", "libell_d_acheminement": "LARGEASSE", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79147"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b75011d3897b4b44fb2c67c69fb0071dcc086e", "fields": {"nom_de_la_commune": "MAISONNAY", "libell_d_acheminement": "MAISONNAY", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79164"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5fc8456d44c2e090ad03cb512c58f32e8bbfd37", "fields": {"nom_de_la_commune": "MAUZE THOUARSAIS", "libell_d_acheminement": "MAUZE THOUARSAIS", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79171"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d982e9a04ffa20dcc7705a927ed31ea88b2d9692", "fields": {"nom_de_la_commune": "MELLE", "libell_d_acheminement": "MELLE", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79174"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dae6f83602bc9c5c56617ae88f3418b8f6502e94", "fields": {"nom_de_la_commune": "MELLERAN", "libell_d_acheminement": "MELLERAN", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79175"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4195615469a5f06f40dea6dcd1f25a61fc9b181e", "fields": {"nom_de_la_commune": "MISSE", "libell_d_acheminement": "MISSE", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79178"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6dd415aec5b607ecfc7429932994545a4b236f8", "fields": {"nom_de_la_commune": "MONTALEMBERT", "libell_d_acheminement": "MONTALEMBERT", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79180"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f336e180c23a384609f59bcf48b84ed14d889a0d", "fields": {"nom_de_la_commune": "MOUTIERS SOUS CHANTEMERLE", "libell_d_acheminement": "MOUTIERS SOUS CHANTEMERLE", "code_postal": "79320", "coordonnees_gps": [46.7253627429, -0.568110256331], "code_commune_insee": "79188"}, "geometry": {"type": "Point", "coordinates": [-0.568110256331, 46.7253627429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cbd0ac3ef6f336d39e257b8f2d7afb9ab62ac25", "fields": {"code_postal": "79000", "code_commune_insee": "79191", "libell_d_acheminement": "NIORT", "ligne_5": "ST FLORENT", "nom_de_la_commune": "NIORT", "coordonnees_gps": [46.3258954005, -0.471948799186]}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b04d5e0256b0476a85fdd8d21730e4e92e3fa0af", "fields": {"code_postal": "79000", "code_commune_insee": "79191", "libell_d_acheminement": "NIORT", "ligne_5": "ST LIGUAIRE", "nom_de_la_commune": "NIORT", "coordonnees_gps": [46.3258954005, -0.471948799186]}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc02e8f30b3f9554e0f01665eb340eca002e4b0", "fields": {"nom_de_la_commune": "NUEIL LES AUBIERS", "libell_d_acheminement": "NUEIL LES AUBIERS", "code_postal": "79250", "coordonnees_gps": [46.9407689658, -0.596288357237], "code_commune_insee": "79195"}, "geometry": {"type": "Point", "coordinates": [-0.596288357237, 46.9407689658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4656dcb063c15895132f376bcd2478864ed423c4", "fields": {"nom_de_la_commune": "POMPAIRE", "libell_d_acheminement": "POMPAIRE", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79213"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff62d69f1e773a2dba28ead8b41454cad5b8119", "fields": {"nom_de_la_commune": "POUFFONDS", "libell_d_acheminement": "POUFFONDS", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79214"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29d36e0043c7961a778a1756653bad8fe8672380", "fields": {"nom_de_la_commune": "POUGNE HERISSON", "libell_d_acheminement": "POUGNE HERISSON", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79215"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6595b311a804e73ca8504645be63ea91f5f825e", "fields": {"nom_de_la_commune": "PRIN DEYRANCON", "libell_d_acheminement": "PRIN DEYRANCON", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79220"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3850051d513da407ab6beb6e35bd763ff71d7c50", "fields": {"nom_de_la_commune": "ROMANS", "libell_d_acheminement": "ROMANS", "code_postal": "79260", "coordonnees_gps": [46.3656690304, -0.291882204635], "code_commune_insee": "79231"}, "geometry": {"type": "Point", "coordinates": [-0.291882204635, 46.3656690304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af5f2bb678a4b0c4ba427e006bf09a02ee4b5d3a", "fields": {"nom_de_la_commune": "ST AUBIN DU PLAIN", "libell_d_acheminement": "ST AUBIN DU PLAIN", "code_postal": "79300", "coordonnees_gps": [46.8619599412, -0.471600678729], "code_commune_insee": "79238"}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3563866cef37a0533da5c4c8c1c34d1b7fc029a8", "fields": {"nom_de_la_commune": "STE BLANDINE", "libell_d_acheminement": "STE BLANDINE", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79240"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2874f296574c2b038e4843ed78512ec8abedbe", "fields": {"code_postal": "79150", "code_commune_insee": "79242", "libell_d_acheminement": "VOULMENTIN", "ligne_5": "VOULTEGON", "nom_de_la_commune": "VOULMENTIN", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce89f0de8cf1779fd35c5c3a769b046dba45036e", "fields": {"nom_de_la_commune": "ST JEAN DE THOUARS", "libell_d_acheminement": "ST JEAN DE THOUARS", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79259"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00bfc3d584c69cb930d4464eda4c36a56e3d71d", "fields": {"nom_de_la_commune": "ST JOUIN DE MARNES", "libell_d_acheminement": "ST JOUIN DE MARNES", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79260"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "368d741c8be9a00d0cba2b3715799683c0618326", "fields": {"code_postal": "79600", "code_commune_insee": "79268", "libell_d_acheminement": "ST LOUP LAMAIRE", "ligne_5": "LAMAIRE", "nom_de_la_commune": "ST LOUP LAMAIRE", "coordonnees_gps": [46.8218182102, -0.136529587594]}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4505336d0bb609255327a54a50e2b3386ecb65b0", "fields": {"nom_de_la_commune": "ST MAIXENT L ECOLE", "libell_d_acheminement": "ST MAIXENT L ECOLE", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79270"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030f5b6d9e5d77d8fcac3a114925d0424aea05e3", "fields": {"nom_de_la_commune": "ST MARC LA LANDE", "libell_d_acheminement": "ST MARC LA LANDE", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79271"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c3feae68b4b2539321aa606d681314263001b6", "fields": {"nom_de_la_commune": "ST MARTIN DE BERNEGOUE", "libell_d_acheminement": "ST MARTIN DE BERNEGOUE", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79273"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "faddc7e512b033b9148743cbc5cf215d3240d556", "fields": {"nom_de_la_commune": "ST MARTIN DE MACON", "libell_d_acheminement": "ST MARTIN DE MACON", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79274"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71d3ab11c3fd99017d422c6c484fa8679c2c3760", "fields": {"nom_de_la_commune": "ST MARTIN DU FOUILLOUX", "libell_d_acheminement": "ST MARTIN DU FOUILLOUX", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79278"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6d2d32184e12372534f9ff3164b7754c9330f6d", "fields": {"nom_de_la_commune": "ST MAURICE ETUSSON", "libell_d_acheminement": "ST MAURICE ETUSSON", "code_postal": "79150", "coordonnees_gps": [47.0026122608, -0.46748094088], "code_commune_insee": "79280"}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "851c2e2963951c9621459f5e62842955cdba0f2e", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "79410", "coordonnees_gps": [46.3956786662, -0.424997632045], "code_commune_insee": "79293"}, "geometry": {"type": "Point", "coordinates": [-0.424997632045, 46.3956786662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c585772ee3539308a19083175789dd0d588e637", "fields": {"nom_de_la_commune": "SANSAIS", "libell_d_acheminement": "SANSAIS", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79304"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54356dc817a9b5bb279ec4b52a02fd2ab09de8f1", "fields": {"nom_de_la_commune": "SAURAIS", "libell_d_acheminement": "SAURAIS", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79306"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7adde477a9fd938aaa30928ff5f5abb4f8677de", "fields": {"nom_de_la_commune": "SCILLE", "libell_d_acheminement": "SCILLE", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79309"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfdc38281a92febd29425b3ebeb34503385942de", "fields": {"nom_de_la_commune": "SEPVRET", "libell_d_acheminement": "SEPVRET", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79313"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d9e82d86efdeffe187359a6dde146964145f605", "fields": {"nom_de_la_commune": "THENEZAY", "libell_d_acheminement": "THENEZAY", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79326"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9a68926eb30a6bd435eab8d8d9b577a5f2dd1c", "fields": {"nom_de_la_commune": "VANZAY", "libell_d_acheminement": "VANZAY", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79338"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ed78bf5051a4e4e3fcbbacffa844d8614c27b1d", "fields": {"nom_de_la_commune": "VAUTEBIS", "libell_d_acheminement": "VAUTEBIS", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79341"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e261210f97764ad432b3b9f164320d4ee8a7fb76", "fields": {"nom_de_la_commune": "VERRUYES", "libell_d_acheminement": "VERRUYES", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79345"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d7da43dd29cbbec8f5eb4338b13ada2a9bc435e", "fields": {"nom_de_la_commune": "VILLIERS EN BOIS", "libell_d_acheminement": "VILLIERS EN BOIS", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79350"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d432b99e3f1708e08acd4376c676895499eb3d", "fields": {"nom_de_la_commune": "VILLIERS EN PLAINE", "libell_d_acheminement": "VILLIERS EN PLAINE", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79351"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6bb080e4be12bf89c117850f4a896842af7e639", "fields": {"nom_de_la_commune": "VOUHE", "libell_d_acheminement": "VOUHE", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79354"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6a616e6d2416d761b6de427fdfd184207c2cf57", "fields": {"nom_de_la_commune": "XAINTRAY", "libell_d_acheminement": "XAINTRAY", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79357"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71692b1cc4b9c49d0e8c95cad5fc93decf261aa1", "fields": {"nom_de_la_commune": "ABLAINCOURT PRESSOIR", "libell_d_acheminement": "ABLAINCOURT PRESSOIR", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80002"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc69a621ca9b48ee2b89f434c4b5affc15524f94", "fields": {"nom_de_la_commune": "ACHEUX EN VIMEU", "libell_d_acheminement": "ACHEUX EN VIMEU", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80004"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3200d030eafef5744c91cd79f04da6c44450a71b", "fields": {"nom_de_la_commune": "AIGNEVILLE", "libell_d_acheminement": "AIGNEVILLE", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80008"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81c1d29e9c71b0646532ff0afe344a8b933280a", "fields": {"nom_de_la_commune": "AIZECOURT LE HAUT", "libell_d_acheminement": "AIZECOURT LE HAUT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80015"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d25ab1a189020217ca06824e1123da536d5cf48", "fields": {"nom_de_la_commune": "ALLONVILLE", "libell_d_acheminement": "ALLONVILLE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80020"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307e513c39e1fb3e0c262b3a7a2aab836881cd6e", "fields": {"nom_de_la_commune": "ST ETIENNE LA VARENNE", "libell_d_acheminement": "ST ETIENNE LA VARENNE", "code_postal": "69460", "coordonnees_gps": [46.0598992865, 4.61285199176], "code_commune_insee": "69198"}, "geometry": {"type": "Point", "coordinates": [4.61285199176, 46.0598992865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea1b432ff7b50c84391941caa7d312c5747a983", "fields": {"nom_de_la_commune": "ST GENIS LAVAL", "libell_d_acheminement": "ST GENIS LAVAL", "code_postal": "69230", "coordonnees_gps": [45.6946542576, 4.78915999112], "code_commune_insee": "69204"}, "geometry": {"type": "Point", "coordinates": [4.78915999112, 45.6946542576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5ddb487c05a041fe7cb3eccc27d5f30b1d05ef", "fields": {"nom_de_la_commune": "ST GEORGES DE RENEINS", "libell_d_acheminement": "ST GEORGES DE RENEINS", "code_postal": "69830", "coordonnees_gps": [46.0579112646, 4.72089494524], "code_commune_insee": "69206"}, "geometry": {"type": "Point", "coordinates": [4.72089494524, 46.0579112646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b34c1ab61d4c8d4be2ef07cf8794d7c51e9764", "fields": {"nom_de_la_commune": "ST GERMAIN NUELLES", "libell_d_acheminement": "ST GERMAIN NUELLES", "code_postal": "69210", "coordonnees_gps": [45.8200332859, 4.61385272872], "code_commune_insee": "69208"}, "geometry": {"type": "Point", "coordinates": [4.61385272872, 45.8200332859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e1354f208fd1b1551b776f5d400b65602011078", "fields": {"nom_de_la_commune": "ST JEAN DE TOUSLAS", "libell_d_acheminement": "ST JEAN DE TOUSLAS", "code_postal": "69700", "coordonnees_gps": [45.5741550977, 4.73818709302], "code_commune_insee": "69213"}, "geometry": {"type": "Point", "coordinates": [4.73818709302, 45.5741550977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f256e83545aa648d3ad16704601473846504d4", "fields": {"nom_de_la_commune": "ST JUST D AVRAY", "libell_d_acheminement": "ST JUST D AVRAY", "code_postal": "69870", "coordonnees_gps": [46.0726954495, 4.47616279948], "code_commune_insee": "69217"}, "geometry": {"type": "Point", "coordinates": [4.47616279948, 46.0726954495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66859c139c40346921aeab67c5fc9f5c36fe30c2", "fields": {"code_postal": "69440", "code_commune_insee": "69219", "libell_d_acheminement": "ST LAURENT D AGNY", "ligne_5": "ST VINCENT", "nom_de_la_commune": "ST LAURENT D AGNY", "coordonnees_gps": [45.6116921757, 4.63961242602]}, "geometry": {"type": "Point", "coordinates": [4.63961242602, 45.6116921757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73f18e83df89c9414e5cca20f42d8478c9b2c4b0", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69223"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cc46a552c8f6104ba47a2dd8c0a2b5081d46fd9", "fields": {"nom_de_la_commune": "ST ROMAIN DE POPEY", "libell_d_acheminement": "ST ROMAIN DE POPEY", "code_postal": "69490", "coordonnees_gps": [45.8657770261, 4.50217855012], "code_commune_insee": "69234"}, "geometry": {"type": "Point", "coordinates": [4.50217855012, 45.8657770261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12446aa892a75e639540f61faac8bce9c5915baa", "fields": {"nom_de_la_commune": "THIZY LES BOURGS", "libell_d_acheminement": "THIZY LES BOURGS", "code_postal": "69240", "coordonnees_gps": [46.068199037, 4.3380922269], "code_commune_insee": "69248"}, "geometry": {"type": "Point", "coordinates": [4.3380922269, 46.068199037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15fce225b18b05214594b9d2dbe0af0d04159c80", "fields": {"nom_de_la_commune": "TREVES", "libell_d_acheminement": "TREVES", "code_postal": "69420", "coordonnees_gps": [45.5036780287, 4.73457399039], "code_commune_insee": "69252"}, "geometry": {"type": "Point", "coordinates": [4.73457399039, 45.5036780287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ed0991b9be2de11d96a43308e8ee9a153d0d89", "fields": {"code_postal": "69670", "code_commune_insee": "69255", "libell_d_acheminement": "VAUGNERAY", "ligne_5": "ST LAURENT DE VAUX", "nom_de_la_commune": "VAUGNERAY", "coordonnees_gps": [45.7297593676, 4.64249561363]}, "geometry": {"type": "Point", "coordinates": [4.64249561363, 45.7297593676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39a0b96ee2dc767939de6d91971af798a9928ad", "fields": {"nom_de_la_commune": "VAUXRENARD", "libell_d_acheminement": "VAUXRENARD", "code_postal": "69820", "coordonnees_gps": [46.2082600685, 4.66076858585], "code_commune_insee": "69258"}, "geometry": {"type": "Point", "coordinates": [4.66076858585, 46.2082600685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fba481c6038bb6580d6ca670604938ec03a80795", "fields": {"nom_de_la_commune": "VILLEURBANNE", "libell_d_acheminement": "VILLEURBANNE", "code_postal": "69100", "coordonnees_gps": [45.7708577093, 4.88913450646], "code_commune_insee": "69266"}, "geometry": {"type": "Point", "coordinates": [4.88913450646, 45.7708577093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ef8f3688323006a30bdb2686f4f9b859bbfefbe", "fields": {"code_postal": "69390", "code_commune_insee": "69268", "libell_d_acheminement": "VOURLES", "ligne_5": "SEPT CHEMINS", "nom_de_la_commune": "VOURLES", "coordonnees_gps": [45.6449321892, 4.78398402177]}, "geometry": {"type": "Point", "coordinates": [4.78398402177, 45.6449321892]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "238f16314bb2b3e2a9dfa5f773ee946eb592dbcc", "fields": {"nom_de_la_commune": "DECINES CHARPIEU", "libell_d_acheminement": "DECINES CHARPIEU", "code_postal": "69150", "coordonnees_gps": [45.7718173914, 4.96151842912], "code_commune_insee": "69275"}, "geometry": {"type": "Point", "coordinates": [4.96151842912, 45.7718173914]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82c46f982c4cf0a84678396111c787153ab3ccf", "fields": {"nom_de_la_commune": "PUSIGNAN", "libell_d_acheminement": "PUSIGNAN", "code_postal": "69330", "coordonnees_gps": [45.7776752532, 5.03757503614], "code_commune_insee": "69285"}, "geometry": {"type": "Point", "coordinates": [5.03757503614, 45.7776752532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93ba5b9b89cf6b70766a7d18549ed671ac3aabe", "fields": {"code_postal": "69140", "code_commune_insee": "69286", "libell_d_acheminement": "RILLIEUX LA PAPE", "ligne_5": "CREPIEUX LA PAPE", "nom_de_la_commune": "RILLIEUX LA PAPE", "coordonnees_gps": [45.8205814087, 4.8985536958]}, "geometry": {"type": "Point", "coordinates": [4.8985536958, 45.8205814087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "242e3a81af45d5b5d8967fd877aa69075d66bc80", "fields": {"nom_de_la_commune": "SATHONAY VILLAGE", "libell_d_acheminement": "SATHONAY VILLAGE", "code_postal": "69580", "coordonnees_gps": [45.8366159534, 4.88315598235], "code_commune_insee": "69293"}, "geometry": {"type": "Point", "coordinates": [4.88315598235, 45.8366159534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb5c83161c634b97102f9e9eabfb70207ef5d84f", "fields": {"nom_de_la_commune": "TOUSSIEU", "libell_d_acheminement": "TOUSSIEU", "code_postal": "69780", "coordonnees_gps": [45.6517385833, 4.9906607201], "code_commune_insee": "69298"}, "geometry": {"type": "Point", "coordinates": [4.9906607201, 45.6517385833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37694b72101692d8e40d1b73582ed4cfacb704b1", "fields": {"code_postal": "69125", "code_commune_insee": "69299", "libell_d_acheminement": "COLOMBIER SAUGNIEU", "ligne_5": "LYON ST EXUPERY AEROPORT", "nom_de_la_commune": "COLOMBIER SAUGNIEU", "coordonnees_gps": [45.7180247923, 5.10320927277]}, "geometry": {"type": "Point", "coordinates": [5.10320927277, 45.7180247923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "530b8cde1c5b16469f64f02c9da085b8dccdcc82", "fields": {"code_postal": "69125", "code_commune_insee": "69299", "libell_d_acheminement": "COLOMBIER SAUGNIEU", "ligne_5": "SAINT EXUPERY AEROPORT", "nom_de_la_commune": "COLOMBIER SAUGNIEU", "coordonnees_gps": [45.7180247923, 5.10320927277]}, "geometry": {"type": "Point", "coordinates": [5.10320927277, 45.7180247923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8b3018279bc39ab23f2d1887ec45fcd905aadc9", "fields": {"nom_de_la_commune": "LYON 06", "libell_d_acheminement": "LYON", "code_postal": "69006", "coordonnees_gps": [45.7730199469, 4.85184283496], "code_commune_insee": "69386"}, "geometry": {"type": "Point", "coordinates": [4.85184283496, 45.7730199469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02d8dff4dac8d1029af718a3fba188fa3954c84f", "fields": {"nom_de_la_commune": "ABELCOURT", "libell_d_acheminement": "ABELCOURT", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70001"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854df5dc8c78778f57eefab498209381e4329a88", "fields": {"nom_de_la_commune": "AMANCE", "libell_d_acheminement": "AMANCE", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70012"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "978e6e13da38dbed66962c064c570cc9b9fc5f06", "fields": {"nom_de_la_commune": "ANDELARRE", "libell_d_acheminement": "ANDELARRE", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70019"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b7cbfee5e360ec574d277aaa048c2969a733b6a", "fields": {"nom_de_la_commune": "ANDELARROT", "libell_d_acheminement": "ANDELARROT", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70020"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c653b5451bccda656cdf802d2baf1c8a2a866d2", "fields": {"nom_de_la_commune": "ANGIREY", "libell_d_acheminement": "ANGIREY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70022"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc425eecdbb45b9fc3fe33ab14861578fa5b225d", "fields": {"nom_de_la_commune": "ATTRICOURT", "libell_d_acheminement": "ATTRICOURT", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70032"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65ed39a68dd4ebbccdf17eff30981b916173f264", "fields": {"nom_de_la_commune": "AUGICOURT", "libell_d_acheminement": "AUGICOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70035"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec9bb7c854873fcca1bdae640538c64d02d45069", "fields": {"nom_de_la_commune": "AUTHOISON", "libell_d_acheminement": "AUTHOISON", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70038"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03eaa0ffcd306329472a476072d6b0ea65e8eadd", "fields": {"nom_de_la_commune": "AUXON", "libell_d_acheminement": "AUXON", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70044"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "028c3920e077583259f26531e9f177f1cb3c3450", "fields": {"nom_de_la_commune": "LES AYNANS", "libell_d_acheminement": "LES AYNANS", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70046"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee2594cea6ce4b8cb8b0071c8751c008a71a8275", "fields": {"nom_de_la_commune": "BARGES", "libell_d_acheminement": "BARGES", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70049"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0c4df897bb8c18de03a91c9e411170a58454cc", "fields": {"nom_de_la_commune": "LA BASSE VAIVRE", "libell_d_acheminement": "LA BASSE VAIVRE", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70051"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1538b3dcd2397eb5953013a017035a31a024549e", "fields": {"code_postal": "70190", "code_commune_insee": "70059", "libell_d_acheminement": "BEAUMOTTE AUBERTANS", "ligne_5": "AUBERTANS", "nom_de_la_commune": "BEAUMOTTE AUBERTANS", "coordonnees_gps": [47.4343544936, 6.05247846774]}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d1e166e19a275260e0db2e4b3a46506fff9d83f", "fields": {"nom_de_la_commune": "BELFAHY", "libell_d_acheminement": "BELFAHY", "code_postal": "70290", "coordonnees_gps": [47.7309841125, 6.72677134274], "code_commune_insee": "70061"}, "geometry": {"type": "Point", "coordinates": [6.72677134274, 47.7309841125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260a291a0ca261542b1b05b069649bb7c73839bf", "fields": {"nom_de_la_commune": "BELVERNE", "libell_d_acheminement": "BELVERNE", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70064"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9d469c6e259f2315d9cf9a154b2993c61cdfeee", "fields": {"nom_de_la_commune": "BETONCOURT LES BROTTE", "libell_d_acheminement": "BETONCOURT LES BROTTE", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70067"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60ba39024faf532c36a6c5500f07477e313834bb", "fields": {"nom_de_la_commune": "BEVEUGE", "libell_d_acheminement": "BEVEUGE", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70072"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de4f9a048a761944c2085de2b2cc4c20f3b5f1e4", "fields": {"nom_de_la_commune": "BLONDEFONTAINE", "libell_d_acheminement": "BLONDEFONTAINE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70074"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30b95cc2a00c1399181f6d7910d6967a70cf8aac", "fields": {"nom_de_la_commune": "BONBOILLON", "libell_d_acheminement": "BONBOILLON", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70075"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f8d12ae682fb7ba662048688a0a96dc31dcca3", "fields": {"nom_de_la_commune": "BOUGNON", "libell_d_acheminement": "BOUGNON", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70079"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a2fee723db97fb93d459793fcbe4e196ee3946", "fields": {"nom_de_la_commune": "BOURGUIGNON LES LA CHARITE", "libell_d_acheminement": "BOURGUIGNON LES LA CHARITE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70088"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f36679cad4da3390df093ad0045f1d1b6a897b3", "fields": {"nom_de_la_commune": "BREUCHES", "libell_d_acheminement": "BREUCHES", "code_postal": "70300", "coordonnees_gps": [47.7890044544, 6.35705399626], "code_commune_insee": "70093"}, "geometry": {"type": "Point", "coordinates": [6.35705399626, 47.7890044544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a30710b93e4303fe92daa7a132ded0ad2887ff14", "fields": {"nom_de_la_commune": "BROYE LES LOUPS ET VERFONTAINE", "libell_d_acheminement": "BROYE LES LOUPS ET VERFONTAINE", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70100"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6ea37d8b9611c474cd035d1cfb6bd92de660762", "fields": {"code_postal": "70140", "code_commune_insee": "70101", "libell_d_acheminement": "BROYE AUBIGNEY MONTSEUGNY", "ligne_5": "AUBIGNEY", "nom_de_la_commune": "BROYE AUBIGNEY MONTSEUGNY", "coordonnees_gps": [47.3157094968, 5.59575332821]}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "037d991f27fb597bdabe66c8235f59f86ba0b214", "fields": {"nom_de_la_commune": "BUCEY LES TRAVES", "libell_d_acheminement": "BUCEY LES TRAVES", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70105"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aabadbde8a3ef3e8c97ff6b702e942efd833a6b0", "fields": {"nom_de_la_commune": "BUTHIERS", "libell_d_acheminement": "BUTHIERS", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70109"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4422b8bbd1649e8b59fd4e59f47b556322db5d", "fields": {"nom_de_la_commune": "CHAGEY", "libell_d_acheminement": "CHAGEY", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70116"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12a297347ca0a07a2f03ebfef71d98aad782e65b", "fields": {"nom_de_la_commune": "CHARMES ST VALBERT", "libell_d_acheminement": "CHARMES ST VALBERT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70135"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b8e8fe1e12874dca34f07b35a935e383d1c261f", "fields": {"nom_de_la_commune": "CHAUX LES PORT", "libell_d_acheminement": "CHAUX LES PORT", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70146"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa8835c99ea723f38bb1586e0cd664e3e87f0ba3", "fields": {"nom_de_la_commune": "CHENEBIER", "libell_d_acheminement": "CHENEBIER", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70149"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7526ce7fc44d5449156b8b1006434135f1fbeab1", "fields": {"nom_de_la_commune": "CHENEVREY ET MOROGNE", "libell_d_acheminement": "CHENEVREY ET MOROGNE", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70150"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0598e29504c600447824634d244bb81824310e2b", "fields": {"nom_de_la_commune": "CLAIREGOUTTE", "libell_d_acheminement": "CLAIREGOUTTE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70157"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62a77f49e2a34d15c8e39ba09b6fd39b46481633", "fields": {"nom_de_la_commune": "CLANS", "libell_d_acheminement": "CLANS", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70158"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4271ce09a3e1898ce714e4a00d51a1f76c1fd60", "fields": {"nom_de_la_commune": "CONTREGLISE", "libell_d_acheminement": "CONTREGLISE", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70170"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ec733618377b16d9ce00c579547d26a59858b12", "fields": {"nom_de_la_commune": "CORNOT", "libell_d_acheminement": "CORNOT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70175"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2f13fedec45e72713fbf79fb5c7f9faedc1556d", "fields": {"nom_de_la_commune": "COURCHATON", "libell_d_acheminement": "COURCHATON", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70180"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27025b7aa3f50391a97652309d59eb4d3827f119", "fields": {"nom_de_la_commune": "CREVANS ET LA CHAPELLE LES GRANGES", "libell_d_acheminement": "CREVANS LA CHAPELLE LES GRANGES", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70187"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102cf505d29427b4cdff5a9194eca670a739f4fa", "fields": {"nom_de_la_commune": "DAMPIERRE LES CONFLANS", "libell_d_acheminement": "DAMPIERRE LES CONFLANS", "code_postal": "70800", "coordonnees_gps": [47.8604600248, 6.24651419219], "code_commune_insee": "70196"}, "geometry": {"type": "Point", "coordinates": [6.24651419219, 47.8604600248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd4441b11f2424a53a79246a815dbcedd340f7e1", "fields": {"code_postal": "70230", "code_commune_insee": "70197", "libell_d_acheminement": "DAMPIERRE SUR LINOTTE", "ligne_5": "PRESLE", "nom_de_la_commune": "DAMPIERRE SUR LINOTTE", "coordonnees_gps": [47.4966875875, 6.24277918181]}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da6d5576887a4acfd51c3663f4bd23436a55da25", "fields": {"nom_de_la_commune": "FAYMONT", "libell_d_acheminement": "FAYMONT", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70229"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e48c4dde7fbbc21415333057f7dce5379ab570fc", "fields": {"nom_de_la_commune": "FOUGEROLLES", "libell_d_acheminement": "FOUGEROLLES", "code_postal": "70220", "coordonnees_gps": [47.9014763567, 6.41301310714], "code_commune_insee": "70245"}, "geometry": {"type": "Point", "coordinates": [6.41301310714, 47.9014763567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ece00674019078b1dc97b1880b5deca8a850a93f", "fields": {"nom_de_la_commune": "FRAMONT", "libell_d_acheminement": "FRAMONT", "code_postal": "70600", "coordonnees_gps": [47.6194548362, 5.54979434525], "code_commune_insee": "70252"}, "geometry": {"type": "Point", "coordinates": [5.54979434525, 47.6194548362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f85dc866dd4255e72491a2cb5fc184c58093216", "fields": {"nom_de_la_commune": "FRASNE LE CHATEAU", "libell_d_acheminement": "FRASNE LE CHATEAU", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70253"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01d676e67ac2e2570e433126541374cc1ac1743", "fields": {"nom_de_la_commune": "FREDERIC FONTAINE", "libell_d_acheminement": "FREDERIC FONTAINE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70254"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fd3d93680a4b45948b9d086a5e401678cee4b8b", "fields": {"nom_de_la_commune": "FRETIGNEY ET VELLOREILLE", "libell_d_acheminement": "FRETIGNEY ET VELLOREILLE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70257"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1af1ad61501d8c52093af9230f8b52a423d09531", "fields": {"nom_de_la_commune": "GENEVREY", "libell_d_acheminement": "GENEVREY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70263"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb067782fb58886f13883f295dfec21395498b57", "fields": {"nom_de_la_commune": "GEVIGNEY ET MERCEY", "libell_d_acheminement": "GEVIGNEY ET MERCEY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70267"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "307b4ac876f945ca5832747caf5e71abb95d035e", "fields": {"nom_de_la_commune": "GEZIER ET FONTENELAY", "libell_d_acheminement": "GEZIER ET FONTENELAY", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70268"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0b9231cb4c0d7aa8d19a0a92c8962002f47417", "fields": {"nom_de_la_commune": "GOURGEON", "libell_d_acheminement": "GOURGEON", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70272"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a788bc71c875186b5c45486a2a94cd864f64a9", "fields": {"nom_de_la_commune": "GRATTERY", "libell_d_acheminement": "GRATTERY", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70278"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df1110ed7efe078046129b886ef392c75be6928b", "fields": {"nom_de_la_commune": "HUGIER", "libell_d_acheminement": "HUGIER", "code_postal": "70150", "coordonnees_gps": [47.3218065084, 5.78836351199], "code_commune_insee": "70286"}, "geometry": {"type": "Point", "coordinates": [5.78836351199, 47.3218065084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d02390935928a38cb45fdb472254272d42cdae3", "fields": {"nom_de_la_commune": "HURECOURT", "libell_d_acheminement": "HURECOURT", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70287"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb8f9ba10c511462fe2c050d9bc6b6ff0612ef48", "fields": {"nom_de_la_commune": "HYET", "libell_d_acheminement": "HYET", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70288"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81200278ac119683cedb73a2a338993c23399622", "fields": {"nom_de_la_commune": "JUSSEY", "libell_d_acheminement": "JUSSEY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70292"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ddd0575ea719cc7127adf0405fe376f856491d2", "fields": {"nom_de_la_commune": "LAMBREY", "libell_d_acheminement": "LAMBREY", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70293"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ee24032710206b7c26c545565c6e5343b5d0a26", "fields": {"code_postal": "70230", "code_commune_insee": "70309", "libell_d_acheminement": "LOULANS VERCHAMP", "ligne_5": "VERCHAMP", "nom_de_la_commune": "LOULANS VERCHAMP", "coordonnees_gps": [47.4966875875, 6.24277918181]}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d413788975de990334364e679cd3025bdbcbc70", "fields": {"nom_de_la_commune": "LES MAGNY", "libell_d_acheminement": "LES MAGNY", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70317"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee2b8920aaa25cfc57a4571eb947317fa8076ea", "fields": {"nom_de_la_commune": "MAGNY JOBERT", "libell_d_acheminement": "MAGNY JOBERT", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70319"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0404b8a5e0b5807187dd2ed9ec4835c745a70916", "fields": {"nom_de_la_commune": "MAUSSANS", "libell_d_acheminement": "MAUSSANS", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70335"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c8f757a3961cad491480b91bae2d3590e426a26", "fields": {"nom_de_la_commune": "MERCEY SUR SAONE", "libell_d_acheminement": "MERCEY SUR SAONE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70342"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5326867a71dd76f09a7c79a942818853d6bef13f", "fields": {"nom_de_la_commune": "MONTARLOT LES RIOZ", "libell_d_acheminement": "MONTARLOT LES RIOZ", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70355"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a125cd4812b76176e4931edcfb14e0dd3aadb1", "fields": {"nom_de_la_commune": "MONTBOILLON", "libell_d_acheminement": "MONTBOILLON", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70356"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "124a04df2640c8f940f8a827e62fbce6f5c52ead", "fields": {"nom_de_la_commune": "MONTBOZON", "libell_d_acheminement": "MONTBOZON", "code_postal": "70230", "coordonnees_gps": [47.4966875875, 6.24277918181], "code_commune_insee": "70357"}, "geometry": {"type": "Point", "coordinates": [6.24277918181, 47.4966875875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d56d2c2dbfd051ea85dcae2a0d6d7482b6df7d0", "fields": {"nom_de_la_commune": "MONTCOURT", "libell_d_acheminement": "MONTCOURT", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70359"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6b7f5c4af9bd3cfbc21b6133fa7f71bf2cda84d", "fields": {"nom_de_la_commune": "MONTESSAUX", "libell_d_acheminement": "MONTESSAUX", "code_postal": "70270", "coordonnees_gps": [47.7708435276, 6.60585361719], "code_commune_insee": "70361"}, "geometry": {"type": "Point", "coordinates": [6.60585361719, 47.7708435276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3363df103dcdda32422ab031eb4c80cebe9099a6", "fields": {"code_postal": "70120", "code_commune_insee": "70373", "libell_d_acheminement": "LA ROCHE MOREY", "ligne_5": "BETONCOURT LES MENETRIERS", "nom_de_la_commune": "LA ROCHE MOREY", "coordonnees_gps": [47.6952639398, 5.81680839597]}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ba9b5ab1e848a4ca327a71f2fa7571b37ca37a", "fields": {"nom_de_la_commune": "NOROY LE BOURG", "libell_d_acheminement": "NOROY LE BOURG", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70390"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e764e50809e54e4ea4623ad73889e49097db9ee", "fields": {"nom_de_la_commune": "ORICOURT", "libell_d_acheminement": "ORICOURT", "code_postal": "70110", "coordonnees_gps": [47.5606005441, 6.44969851367], "code_commune_insee": "70396"}, "geometry": {"type": "Point", "coordinates": [6.44969851367, 47.5606005441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfd91ddfae78ad51c1c5f04ebaca5e53f6e4f838", "fields": {"nom_de_la_commune": "OVANCHES", "libell_d_acheminement": "OVANCHES", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70401"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "476c44c895ddcdc32258dd3a3d87492d67dc4567", "fields": {"nom_de_la_commune": "PERROUSE", "libell_d_acheminement": "PERROUSE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70407"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2cbe25d9a62724dd4aa0bf6e2f922ed602332f6", "fields": {"code_postal": "70130", "code_commune_insee": "70418", "libell_d_acheminement": "LA ROMAINE", "ligne_5": "LE PONT DE PLANCHES", "nom_de_la_commune": "LA ROMAINE", "coordonnees_gps": [47.5459896831, 5.86128799053]}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a2d3f2aac2ef26be2d70b217474283b4265ef0f", "fields": {"nom_de_la_commune": "PROVENCHERE", "libell_d_acheminement": "PROVENCHERE", "code_postal": "70170", "coordonnees_gps": [47.7021029356, 6.05287315631], "code_commune_insee": "70426"}, "geometry": {"type": "Point", "coordinates": [6.05287315631, 47.7021029356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c96de3d0355884fb4dc3ccdd93d82329f8b4eb6", "fields": {"nom_de_la_commune": "PUSY ET EPENOUX", "libell_d_acheminement": "PUSY ET EPENOUX", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70429"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d66614ede4dad08a83e24d19d7486239cb8d5cd4", "fields": {"nom_de_la_commune": "RANZEVELLE", "libell_d_acheminement": "RANZEVELLE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70437"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aba77dfd3e4dfdb5660028f1f41b989aaf9f8fc", "fields": {"nom_de_la_commune": "RECOLOGNE", "libell_d_acheminement": "RECOLOGNE LES RAY", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70440"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7774dbcf8237c734bfc9be4bd970080a1f755c3", "fields": {"nom_de_la_commune": "ROSEY", "libell_d_acheminement": "ROSEY", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70452"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4856238fb62a34af354f31552475fc8cde467251", "fields": {"nom_de_la_commune": "LA ROSIERE", "libell_d_acheminement": "LA ROSIERE", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70453"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c20f52fa0f880f0ea3669123a5d9406c1b8ae17f", "fields": {"nom_de_la_commune": "GRIGNONCOURT", "libell_d_acheminement": "GRIGNONCOURT", "code_postal": "88410", "coordonnees_gps": [48.0079151112, 5.95678282406], "code_commune_insee": "88220"}, "geometry": {"type": "Point", "coordinates": [5.95678282406, 48.0079151112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42cfb63ec4e15da4d2d27dda0b5e02f07cdf3291", "fields": {"nom_de_la_commune": "GRUEY LES SURANCE", "libell_d_acheminement": "GRUEY LES SURANCE", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88221"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ecf8e218305ad7da7ed1a8fcb0ea003f658a410", "fields": {"nom_de_la_commune": "HAGECOURT", "libell_d_acheminement": "HAGECOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88226"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b39f479c80ba47368136469fe887daf6183af10", "fields": {"code_postal": "88240", "code_commune_insee": "88234", "libell_d_acheminement": "HARSAULT", "ligne_5": "THUNIMONT", "nom_de_la_commune": "HARSAULT", "coordonnees_gps": [48.007182961, 6.25362129699]}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df168c65a6ff98570842f40ab75264e087b20113", "fields": {"nom_de_la_commune": "HERGUGNEY", "libell_d_acheminement": "HERGUGNEY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88239"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4101b706d1b99e1192a467930b4c1649af14478", "fields": {"nom_de_la_commune": "HOUEVILLE", "libell_d_acheminement": "HOUEVILLE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88242"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "119b2c247fb0354995c73561760af1ab629052da", "fields": {"nom_de_la_commune": "HOUSSERAS", "libell_d_acheminement": "HOUSSERAS", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88243"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68234c24401fe7a27ddc41905800f511ec58da17", "fields": {"nom_de_la_commune": "JAINVILLOTTE", "libell_d_acheminement": "JAINVILLOTTE", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88249"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e89d8e6a288699123b91f91e6af7e92e2598f6", "fields": {"nom_de_la_commune": "JORXEY", "libell_d_acheminement": "JORXEY", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88254"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d61e7f63064724fcbfb4bf003da474b51029acd0", "fields": {"nom_de_la_commune": "LANGLEY", "libell_d_acheminement": "LANGLEY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88260"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1a985093e2b81a38f8cad41421eea104f2efdf4", "fields": {"nom_de_la_commune": "LEGEVILLE ET BONFAYS", "libell_d_acheminement": "LEGEVILLE ET BONFAYS", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88264"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73a289ab2f6833a6f332608b785e2b5c56f96ba3", "fields": {"nom_de_la_commune": "MARAINVILLE SUR MADON", "libell_d_acheminement": "MARAINVILLE SUR MADON", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88286"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0c3f055a81bf9dd997d709a73e6a898870c6474", "fields": {"nom_de_la_commune": "MENIL EN XAINTOIS", "libell_d_acheminement": "MENIL EN XAINTOIS", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88299"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c960effcaff8741a70c1691162e640e838ae3f1e", "fields": {"nom_de_la_commune": "LE MENIL", "libell_d_acheminement": "LE MENIL", "code_postal": "88160", "coordonnees_gps": [47.8910254018, 6.78612164116], "code_commune_insee": "88302"}, "geometry": {"type": "Point", "coordinates": [6.78612164116, 47.8910254018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7942143decc1d0b7f3dfa033c6c2afe75d9b8148", "fields": {"nom_de_la_commune": "LE MONT", "libell_d_acheminement": "LE MONT", "code_postal": "88210", "coordonnees_gps": [48.3912277353, 7.02059239763], "code_commune_insee": "88306"}, "geometry": {"type": "Point", "coordinates": [7.02059239763, 48.3912277353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a98dd212b760dfa93b1bc2dd825e8b77a84824c9", "fields": {"nom_de_la_commune": "MORIVILLE", "libell_d_acheminement": "MORIVILLE", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88313"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ba6c1c03ca461cc268302802c8fc538fc46cac", "fields": {"nom_de_la_commune": "MORTAGNE", "libell_d_acheminement": "MORTAGNE", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88315"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb49de26865d5b193c1a086dfa6e3517752bf55b", "fields": {"nom_de_la_commune": "MORVILLE", "libell_d_acheminement": "MORVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88316"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aadf1a8574ce903faa9053cb6e1cb486c1c36b8d", "fields": {"nom_de_la_commune": "NOMPATELIZE", "libell_d_acheminement": "NOMPATELIZE", "code_postal": "88470", "coordonnees_gps": [48.3159931003, 6.84826816273], "code_commune_insee": "88328"}, "geometry": {"type": "Point", "coordinates": [6.84826816273, 48.3159931003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fef7067a566123e1acf1cd5381b2c0165611295", "fields": {"nom_de_la_commune": "OELLEVILLE", "libell_d_acheminement": "OELLEVILLE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88334"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4108b8cdda6f8d49cc1b187e7d30617acfec60d7", "fields": {"nom_de_la_commune": "PALLEGNEY", "libell_d_acheminement": "PALLEGNEY", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88342"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae2d94c875d3a178cf307f521047bf267d04e583", "fields": {"nom_de_la_commune": "PLOMBIERES LES BAINS", "libell_d_acheminement": "PLOMBIERES LES BAINS", "code_postal": "88370", "coordonnees_gps": [47.9937026909, 6.4494827214], "code_commune_insee": "88351"}, "geometry": {"type": "Point", "coordinates": [6.4494827214, 47.9937026909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65fff40704eb13aafec751efe615d141b7c3cd92", "fields": {"nom_de_la_commune": "POUXEUX", "libell_d_acheminement": "POUXEUX", "code_postal": "88550", "coordonnees_gps": [48.1006109096, 6.57246220257], "code_commune_insee": "88358"}, "geometry": {"type": "Point", "coordinates": [6.57246220257, 48.1006109096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f889dd58261970aa07e0013205b188585d67d680", "fields": {"nom_de_la_commune": "RACECOURT", "libell_d_acheminement": "RACECOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88365"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ded3747a5eafe40bd06b92b3f88401b0eeb5da9", "fields": {"nom_de_la_commune": "RANCOURT", "libell_d_acheminement": "RANCOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88370"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "470a78ec9179b3fe9a035a3835ed1c26ab5b6421", "fields": {"nom_de_la_commune": "REMONCOURT", "libell_d_acheminement": "REMONCOURT", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88385"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd2f5e4b366a337e21a48ffff57bfbfd37d6e5a", "fields": {"nom_de_la_commune": "REMOMEIX", "libell_d_acheminement": "REMOMEIX", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88386"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d009f742569555ec8d92a84bb325005b2dbc0f8", "fields": {"nom_de_la_commune": "ROMONT", "libell_d_acheminement": "ROMONT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88395"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4b4c7115493270b4ebe17b61ccac7490c53add5", "fields": {"nom_de_la_commune": "LES ROUGES EAUX", "libell_d_acheminement": "LES ROUGES EAUX", "code_postal": "88600", "coordonnees_gps": [48.2228084318, 6.69811489698], "code_commune_insee": "88398"}, "geometry": {"type": "Point", "coordinates": [6.69811489698, 48.2228084318]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e469eadcec1833a78029bb2455ada16e01fdf70", "fields": {"nom_de_la_commune": "ROVILLE AUX CHENES", "libell_d_acheminement": "ROVILLE AUX CHENES", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88402"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "071b22653bd86c56eefaa790dd52eac06713bdc4", "fields": {"nom_de_la_commune": "ROZIERES SUR MOUZON", "libell_d_acheminement": "ROZIERES SUR MOUZON", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88404"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7809a047bcc74e2e062119510525ca996c5d08d5", "fields": {"nom_de_la_commune": "STE BARBE", "libell_d_acheminement": "STE BARBE", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88410"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc94931f84d864ef3a1520e03b4a2a8b27277495", "fields": {"nom_de_la_commune": "ST BENOIT LA CHIPOTTE", "libell_d_acheminement": "ST BENOIT LA CHIPOTTE", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88412"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc04bdf7f8a7f3f6ec901cb25a590a7137091772", "fields": {"nom_de_la_commune": "ST DIE DES VOSGES", "libell_d_acheminement": "ST DIE DES VOSGES", "code_postal": "88100", "coordonnees_gps": [48.2770217202, 6.94440073629], "code_commune_insee": "88413"}, "geometry": {"type": "Point", "coordinates": [6.94440073629, 48.2770217202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6204d4783e7c26cee0e40a87dd5dc6ae550132d8", "fields": {"nom_de_la_commune": "ST OUEN LES PAREY", "libell_d_acheminement": "ST OUEN LES PAREY", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88430"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c98a4de56978d4727d4787a63afd602006ea13cc", "fields": {"nom_de_la_commune": "ST PRANCHER", "libell_d_acheminement": "ST PRANCHER", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88433"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34938a33f775c868a7822fe53637145ac339b6d0", "fields": {"nom_de_la_commune": "ST REMIMONT", "libell_d_acheminement": "ST REMIMONT", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88434"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "595bf66cea29f20dd2ee783671f33201f6347890", "fields": {"nom_de_la_commune": "SAULXURES LES BULGNEVILLE", "libell_d_acheminement": "SAULXURES LES BULGNEVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88446"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02a07476562d7477b11125c4a33faa384171e424", "fields": {"nom_de_la_commune": "SAVIGNY", "libell_d_acheminement": "SAVIGNY", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88449"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfdcc2bd2aa4b391380a063f0255bfcb85cb8c81", "fields": {"nom_de_la_commune": "SENAIDE", "libell_d_acheminement": "SENAIDE", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88450"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51988d63e6ff40ce26924802e0f5915258b51166", "fields": {"nom_de_la_commune": "SOCOURT", "libell_d_acheminement": "SOCOURT", "code_postal": "88130", "coordonnees_gps": [48.3747347208, 6.26602319198], "code_commune_insee": "88458"}, "geometry": {"type": "Point", "coordinates": [6.26602319198, 48.3747347208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d4395ffb213004908f5ef2a3ed16958d586a735", "fields": {"nom_de_la_commune": "THEY SOUS MONTFORT", "libell_d_acheminement": "THEY SOUS MONTFORT", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88466"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da84772db9e9ba3c33620733387892d67408ea8a", "fields": {"nom_de_la_commune": "TIGNECOURT", "libell_d_acheminement": "TIGNECOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88473"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de58127578e1f531ab60335e993e96d4abafb63", "fields": {"nom_de_la_commune": "TOLLAINCOURT", "libell_d_acheminement": "TOLLAINCOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88475"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f97b983f636c9c7f274b771ef3ae8ef73036eaa", "fields": {"nom_de_la_commune": "TREMONZEY", "libell_d_acheminement": "TREMONZEY", "code_postal": "88240", "coordonnees_gps": [48.007182961, 6.25362129699], "code_commune_insee": "88479"}, "geometry": {"type": "Point", "coordinates": [6.25362129699, 48.007182961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f77002dab3765a600e3fccf88daa8780d5bbdab", "fields": {"nom_de_la_commune": "URVILLE", "libell_d_acheminement": "URVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88482"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc88654c057e542134930427537f91a714b1683", "fields": {"nom_de_la_commune": "UXEGNEY", "libell_d_acheminement": "UXEGNEY", "code_postal": "88390", "coordonnees_gps": [48.1761406622, 6.34560766838], "code_commune_insee": "88483"}, "geometry": {"type": "Point", "coordinates": [6.34560766838, 48.1761406622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c0fe4ae5341fed363a76a87324cb7726380fe49", "fields": {"nom_de_la_commune": "UZEMAIN", "libell_d_acheminement": "UZEMAIN", "code_postal": "88220", "coordonnees_gps": [48.0725237155, 6.41958186786], "code_commune_insee": "88484"}, "geometry": {"type": "Point", "coordinates": [6.41958186786, 48.0725237155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b74f6b6c6667db364799fb44822ab13e8e1c070e", "fields": {"nom_de_la_commune": "LE VAL D AJOL", "libell_d_acheminement": "LE VAL D AJOL", "code_postal": "88340", "coordonnees_gps": [47.9435376979, 6.51696802708], "code_commune_insee": "88487"}, "geometry": {"type": "Point", "coordinates": [6.51696802708, 47.9435376979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e7dd7b1854b512fc9faa9262882c566d3ff4a3b", "fields": {"nom_de_la_commune": "LES VALLOIS", "libell_d_acheminement": "LES VALLOIS", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88491"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cde0c5508bfa716730d6a21a6f969de2d5d3b9f", "fields": {"nom_de_la_commune": "LE VALTIN", "libell_d_acheminement": "LE VALTIN", "code_postal": "88230", "coordonnees_gps": [48.1335194001, 7.00987852729], "code_commune_insee": "88492"}, "geometry": {"type": "Point", "coordinates": [7.00987852729, 48.1335194001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87e9957e6b16b31948370cedaddb12dc2b63b1b6", "fields": {"nom_de_la_commune": "VARMONZEY", "libell_d_acheminement": "VARMONZEY", "code_postal": "88450", "coordonnees_gps": [48.3118787502, 6.30334316537], "code_commune_insee": "88493"}, "geometry": {"type": "Point", "coordinates": [6.30334316537, 48.3118787502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89f23cf4d4dec8bd362ed80f649fc6822cf258f1", "fields": {"nom_de_la_commune": "VAUDEVILLE", "libell_d_acheminement": "VAUDEVILLE", "code_postal": "88000", "coordonnees_gps": [48.1844846952, 6.48526974054], "code_commune_insee": "88495"}, "geometry": {"type": "Point", "coordinates": [6.48526974054, 48.1844846952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e1c390c902ef48741b0b73fc60857a0b5b548ee", "fields": {"nom_de_la_commune": "VAXONCOURT", "libell_d_acheminement": "VAXONCOURT", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88497"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c017d3b7004f29788a7be847ec5894112433eef", "fields": {"nom_de_la_commune": "VILLONCOURT", "libell_d_acheminement": "VILLONCOURT", "code_postal": "88150", "coordonnees_gps": [48.2558226475, 6.42027850113], "code_commune_insee": "88509"}, "geometry": {"type": "Point", "coordinates": [6.42027850113, 48.2558226475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0626a361d73b4a241d5b5b4850b90dc5939b2dd9", "fields": {"nom_de_la_commune": "VILLOTTE", "libell_d_acheminement": "VILLOTTE", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88510"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6bf51299515a4fb7c9c7f0dcabd85f57e88c31c", "fields": {"nom_de_la_commune": "VITTEL", "libell_d_acheminement": "VITTEL", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88516"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56adf1875e11e3455209db62ec61e632ac8a7bce", "fields": {"nom_de_la_commune": "VIVIERS LE GRAS", "libell_d_acheminement": "VIVIERS LE GRAS", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88517"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70cbfac8e835cd2f8bd7ed9a869256fa138c043c", "fields": {"nom_de_la_commune": "VRECOURT", "libell_d_acheminement": "VRECOURT", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88524"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5842ee05374d25f27ed55ad982e37496b3a4f6", "fields": {"nom_de_la_commune": "VROVILLE", "libell_d_acheminement": "VROVILLE", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88525"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b532a4195870490bc5e33d5c26b8368f17de7710", "fields": {"nom_de_la_commune": "XAFFEVILLERS", "libell_d_acheminement": "XAFFEVILLERS", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88527"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4d464d897b60ebbff4ddfc0814c9af759266a34", "fields": {"nom_de_la_commune": "ANCY LE FRANC", "libell_d_acheminement": "ANCY LE FRANC", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89005"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ce2c04f71e136c82645c72d7fdecffc9252d8c", "fields": {"nom_de_la_commune": "APPOIGNY", "libell_d_acheminement": "APPOIGNY", "code_postal": "89380", "coordonnees_gps": [47.8663450325, 3.52060912902], "code_commune_insee": "89013"}, "geometry": {"type": "Point", "coordinates": [3.52060912902, 47.8663450325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3c8e828757a0b49e2b8cf59ca623df2a0492240", "fields": {"nom_de_la_commune": "ARGENTENAY", "libell_d_acheminement": "ARGENTENAY", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89016"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92b11e60c4d04c1fbef1a867e5952e4d7dfb7a2", "fields": {"nom_de_la_commune": "ARTHONNAY", "libell_d_acheminement": "ARTHONNAY", "code_postal": "89740", "coordonnees_gps": [47.8818432243, 4.21631025532], "code_commune_insee": "89019"}, "geometry": {"type": "Point", "coordinates": [4.21631025532, 47.8818432243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373e54d7abf18480db264314644d3d4dcdd3b429", "fields": {"nom_de_la_commune": "BAGNEAUX", "libell_d_acheminement": "BAGNEAUX", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89027"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "363f70f9892e65462e80f24d50d8022362ec3533", "fields": {"nom_de_la_commune": "BASSOU", "libell_d_acheminement": "BASSOU", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89029"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e1729dcbdb034c377f1978d59d8ee1185dfad58", "fields": {"nom_de_la_commune": "BAZARNES", "libell_d_acheminement": "BAZARNES", "code_postal": "89460", "coordonnees_gps": [47.6637745179, 3.68045501565], "code_commune_insee": "89030"}, "geometry": {"type": "Point", "coordinates": [3.68045501565, 47.6637745179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e36c2693b1fbee834675aac7c66c9eb92fc1da68", "fields": {"nom_de_la_commune": "BEAUVOIR", "libell_d_acheminement": "BEAUVOIR", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89033"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff5336f9d908744c781709dd7c2e5a305b6c3eb9", "fields": {"nom_de_la_commune": "BEINE", "libell_d_acheminement": "BEINE", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89034"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7f7bd2e771f619761377099a542b8fe4d769bcb", "fields": {"nom_de_la_commune": "LA BELLIOLE", "libell_d_acheminement": "LA BELLIOLE", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89036"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "588b615cf2156e5d2792e1bf2fd5dfef4b3fe42a", "fields": {"nom_de_la_commune": "BOIS D ARCY", "libell_d_acheminement": "BOIS D ARCY", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89049"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fbd48a3a0a9d6e11a61588efc39048755e5c3d8", "fields": {"nom_de_la_commune": "BRIENON SUR ARMANCON", "libell_d_acheminement": "BRIENON SUR ARMANCON", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89055"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca8cf407bd5f7342ac70021660a7499e462cbfe", "fields": {"nom_de_la_commune": "BUSSY EN OTHE", "libell_d_acheminement": "BUSSY EN OTHE", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89059"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2ae791b09f12ca10a3e43951db8da7c63facbd", "fields": {"code_postal": "89800", "code_commune_insee": "89068", "libell_d_acheminement": "CHABLIS", "ligne_5": "POINCHY", "nom_de_la_commune": "CHABLIS", "coordonnees_gps": [47.7904940717, 3.79065013362]}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96bdff4343a665029a03ca1c8a87b82b5608595e", "fields": {"nom_de_la_commune": "CHAMPCEVRAIS", "libell_d_acheminement": "CHAMPCEVRAIS", "code_postal": "89220", "coordonnees_gps": [47.7194478698, 2.95753192292], "code_commune_insee": "89072"}, "geometry": {"type": "Point", "coordinates": [2.95753192292, 47.7194478698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c345f74569d0b105bedecf469a7a008722e6375", "fields": {"nom_de_la_commune": "LA CHAPELLE VAUPELTEIGNE", "libell_d_acheminement": "LA CHAPELLE VAUPELTEIGNE", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89081"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2103cac5b556587a4267073cd0c0cd1e1b40ef9f", "fields": {"nom_de_la_commune": "CHARENTENAY", "libell_d_acheminement": "CHARENTENAY", "code_postal": "89580", "coordonnees_gps": [47.688760884, 3.5467310439], "code_commune_insee": "89084"}, "geometry": {"type": "Point", "coordinates": [3.5467310439, 47.688760884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703e296c952389f7c7c9b33764d75833080d91eb", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "CHAMBEUGLE", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "319af7c69ecc26b54f13f3ae64a4fd1a0323f127", "fields": {"nom_de_la_commune": "CHATEL GERARD", "libell_d_acheminement": "CHATEL GERARD", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89092"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eabf9b0eecb39bdf9b63131625f7a282df19f990", "fields": {"nom_de_la_commune": "CHAUMONT", "libell_d_acheminement": "CHAUMONT", "code_postal": "89340", "coordonnees_gps": [48.3152294161, 3.08931043068], "code_commune_insee": "89093"}, "geometry": {"type": "Point", "coordinates": [3.08931043068, 48.3152294161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603321e48a8528617572b9bb68aa30e2569cbbba", "fields": {"nom_de_la_commune": "CHEROY", "libell_d_acheminement": "CHEROY", "code_postal": "89690", "coordonnees_gps": [48.2018946141, 3.00754312216], "code_commune_insee": "89100"}, "geometry": {"type": "Point", "coordinates": [3.00754312216, 48.2018946141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebabe0118f3590debf5565d681c0765ecfbd069", "fields": {"nom_de_la_commune": "COULANGES SUR YONNE", "libell_d_acheminement": "COULANGES SUR YONNE", "code_postal": "89480", "coordonnees_gps": [47.5244722983, 3.44429021267], "code_commune_insee": "89119"}, "geometry": {"type": "Point", "coordinates": [3.44429021267, 47.5244722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3052b3d926380e3e98d27923ac3691364f81388", "fields": {"nom_de_la_commune": "COURGIS", "libell_d_acheminement": "COURGIS", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89123"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c626a5cb8a33646d348a933e47b44446658ade4", "fields": {"nom_de_la_commune": "COURLON SUR YONNE", "libell_d_acheminement": "COURLON SUR YONNE", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89124"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e047ffa0e910ab852e88b0884ea3e2c38d2d92d7", "fields": {"nom_de_la_commune": "COURSON LES CARRIERES", "libell_d_acheminement": "COURSON LES CARRIERES", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89125"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f565fc35fd28e9b1838748d070dc6ac9b2502b99", "fields": {"nom_de_la_commune": "COURTOIN", "libell_d_acheminement": "COURTOIN", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89126"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148f71b248b3d3d2d858f6c601fb65c210af9ee4", "fields": {"nom_de_la_commune": "CRUZY LE CHATEL", "libell_d_acheminement": "CRUZY LE CHATEL", "code_postal": "89740", "coordonnees_gps": [47.8818432243, 4.21631025532], "code_commune_insee": "89131"}, "geometry": {"type": "Point", "coordinates": [4.21631025532, 47.8818432243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "997b367435b02b11378ca30ab9b34bd23be565d9", "fields": {"nom_de_la_commune": "CUDOT", "libell_d_acheminement": "CUDOT", "code_postal": "89116", "coordonnees_gps": [47.9697320355, 3.23051623218], "code_commune_insee": "89133"}, "geometry": {"type": "Point", "coordinates": [3.23051623218, 47.9697320355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f991ea4f3cdc12672be5841cb77838ec63c8db", "fields": {"nom_de_la_commune": "CUY", "libell_d_acheminement": "CUY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89136"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13393a9f5b556a6a1ff16b2b969ef768f31f2be5", "fields": {"nom_de_la_commune": "DIGES", "libell_d_acheminement": "DIGES", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89139"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69ae6b887e7573ddbfaba4969019fa7ec9e9147", "fields": {"nom_de_la_commune": "EGLENY", "libell_d_acheminement": "EGLENY", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89150"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064e76eb871788c0e803e0f508d9a003da58f14e", "fields": {"nom_de_la_commune": "EGRISELLES LE BOCAGE", "libell_d_acheminement": "EGRISELLES LE BOCAGE", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89151"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3018ac6e84cc5aa4faef98d29008725323bcda4c", "fields": {"nom_de_la_commune": "EPINEUIL", "libell_d_acheminement": "EPINEUIL", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89153"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b7c2761e4862d28118505dfad077fc04dfb70c", "fields": {"nom_de_la_commune": "ESNON", "libell_d_acheminement": "ESNON", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89156"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdab8d82058d8a569cf55527e475304d75f3c945", "fields": {"nom_de_la_commune": "ETAIS LA SAUVIN", "libell_d_acheminement": "ETAIS LA SAUVIN", "code_postal": "89480", "coordonnees_gps": [47.5244722983, 3.44429021267], "code_commune_insee": "89158"}, "geometry": {"type": "Point", "coordinates": [3.44429021267, 47.5244722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56b3446f2b418fbf5d07dfb60b8abdbd21fc64ad", "fields": {"nom_de_la_commune": "ETIVEY", "libell_d_acheminement": "ETIVEY", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89161"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d900cd1c51fb5141d613dca51bbecb5cf7a3a7", "fields": {"nom_de_la_commune": "LA FERTE LOUPIERE", "libell_d_acheminement": "LA FERTE LOUPIERE", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89163"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9529526cb9e95be7c3c4ad10fb8316c290d9c9d0", "fields": {"nom_de_la_commune": "FESTIGNY", "libell_d_acheminement": "FESTIGNY", "code_postal": "89480", "coordonnees_gps": [47.5244722983, 3.44429021267], "code_commune_insee": "89164"}, "geometry": {"type": "Point", "coordinates": [3.44429021267, 47.5244722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8ea32efacffa9fbeaff70fe58857bfcffc9dce5", "fields": {"nom_de_la_commune": "FONTAINE LA GAILLARDE", "libell_d_acheminement": "FONTAINE LA GAILLARDE", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89172"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b2f4f63154ef08abc60c23d2afc92cea924143", "fields": {"nom_de_la_commune": "BAYON", "libell_d_acheminement": "BAYON", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54054"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f671b0c9ca4f27f82b5db5fa5b401b3a9fedc89", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54057"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa49c838973ead71c3e699d296e8aefd3394e6e8", "fields": {"nom_de_la_commune": "BERNECOURT", "libell_d_acheminement": "BERNECOURT", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54063"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72b83a187c28f1673f27af23f2831cf6f7051bd", "fields": {"nom_de_la_commune": "BEUVEILLE", "libell_d_acheminement": "BEUVEILLE", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54067"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a03553f63e6421024ffcd3e498b2e7648607d10", "fields": {"nom_de_la_commune": "BLAINVILLE SUR L EAU", "libell_d_acheminement": "BLAINVILLE SUR L EAU", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54076"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcff8f1b8ea0b39eeab618cf806795f1c55a4cda", "fields": {"nom_de_la_commune": "BLENOD LES PONT A MOUSSON", "libell_d_acheminement": "BLENOD LES PONT A MOUSSON", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54079"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "987cda7b6872ebf37ed6095aaa2c96b384c8f894", "fields": {"nom_de_la_commune": "BLENOD LES TOUL", "libell_d_acheminement": "BLENOD LES TOUL", "code_postal": "54113", "coordonnees_gps": [48.5984623029, 5.85442589686], "code_commune_insee": "54080"}, "geometry": {"type": "Point", "coordinates": [5.85442589686, 48.5984623029]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c34c10f97b75d096ecab3abaa6f124fef0fdfa0", "fields": {"nom_de_la_commune": "BRAINVILLE", "libell_d_acheminement": "BRAINVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54093"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a14a78e114f6bfe0a86e1870d414ffd5561f31", "fields": {"nom_de_la_commune": "BRUVILLE", "libell_d_acheminement": "BRUVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54103"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8bbd577da20855ce962ef955c4a5da9a25c56f", "fields": {"nom_de_la_commune": "CHALIGNY", "libell_d_acheminement": "CHALIGNY", "code_postal": "54230", "coordonnees_gps": [48.642574056, 6.08496261598], "code_commune_insee": "54111"}, "geometry": {"type": "Point", "coordinates": [6.08496261598, 48.642574056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "296d8d6d34975a7e5d84852b17a05abba8fef551", "fields": {"nom_de_la_commune": "CHAMPENOUX", "libell_d_acheminement": "CHAMPENOUX", "code_postal": "54280", "coordonnees_gps": [48.744994601, 6.36399084854], "code_commune_insee": "54113"}, "geometry": {"type": "Point", "coordinates": [6.36399084854, 48.744994601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452370bcf4c42d530fa444b179f1cbd99951fe6f", "fields": {"nom_de_la_commune": "CHAOUILLEY", "libell_d_acheminement": "CHAOUILLEY", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54117"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480a8f0d7ab02ad487fc7ecbd2070460ec95a7e2", "fields": {"nom_de_la_commune": "CHAVIGNY", "libell_d_acheminement": "CHAVIGNY", "code_postal": "54230", "coordonnees_gps": [48.642574056, 6.08496261598], "code_commune_insee": "54123"}, "geometry": {"type": "Point", "coordinates": [6.08496261598, 48.642574056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89313e098a94d32a3a74d82efd235b39075c18e3", "fields": {"nom_de_la_commune": "CLEMERY", "libell_d_acheminement": "CLEMERY", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54131"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90f08c9c83669b8399df8ea0d67c0bdb4d1395e3", "fields": {"code_postal": "54400", "code_commune_insee": "54138", "libell_d_acheminement": "COSNES ET ROMAIN", "ligne_5": "VAUX WARNIMONT", "nom_de_la_commune": "COSNES ET ROMAIN", "coordonnees_gps": [49.5244232599, 5.7294177983]}, "geometry": {"type": "Point", "coordinates": [5.7294177983, 49.5244232599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7f49759409324d5f067343953d60e50c30f859", "fields": {"nom_de_la_commune": "COURCELLES", "libell_d_acheminement": "COURCELLES", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54140"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29733eb20836ebfdafa40f32f3436a4095d42e39", "fields": {"nom_de_la_commune": "CREVIC", "libell_d_acheminement": "CREVIC", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54145"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16a85788f43dabc2eafbf8c8a2dfc74cb2c302d1", "fields": {"nom_de_la_commune": "CRUSNES", "libell_d_acheminement": "CRUSNES", "code_postal": "54680", "coordonnees_gps": [49.4266992744, 5.91035100074], "code_commune_insee": "54149"}, "geometry": {"type": "Point", "coordinates": [5.91035100074, 49.4266992744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95632cb15c407c8a6ff9e8e7589d5e8733ce4b7a", "fields": {"nom_de_la_commune": "DAMELEVIERES", "libell_d_acheminement": "DAMELEVIERES", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54152"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4623a73af79e77bc7950b78b489f19eba64cc3f", "fields": {"nom_de_la_commune": "DOMEVRE EN HAYE", "libell_d_acheminement": "DOMEVRE EN HAYE", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54160"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1dfb47d7af6472bfc24a714690bdf85b40ac8f7", "fields": {"nom_de_la_commune": "DOMEVRE SUR VEZOUZE", "libell_d_acheminement": "DOMEVRE SUR VEZOUZE", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54161"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2604475d7ae27072d8eec6f929e5dd275e6ca90", "fields": {"nom_de_la_commune": "DOMMARTIN LA CHAUSSEE", "libell_d_acheminement": "DOMMARTIN LA CHAUSSEE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54166"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca9188dff16caa15e17ac8f4ae2113981a4b117", "fields": {"code_postal": "54490", "code_commune_insee": "54169", "libell_d_acheminement": "DOMPRIX", "ligne_5": "BERTRAMEIX", "nom_de_la_commune": "DOMPRIX", "coordonnees_gps": [49.3325834566, 5.77814621797]}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2797eef751c220376a986f6da77cc62608b9ad5f", "fields": {"nom_de_la_commune": "EPLY", "libell_d_acheminement": "EPLY", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54179"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1980dfc08d0ab744df96943c109deb4c653fa9a", "fields": {"nom_de_la_commune": "ESSEY ET MAIZERAIS", "libell_d_acheminement": "ESSEY ET MAIZERAIS", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54182"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a7d1cc74454a763d1e475d15e70f7df49baad6b", "fields": {"nom_de_la_commune": "FILLIERES", "libell_d_acheminement": "FILLIERES", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54194"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bcf2df8ae406846471c61df6b1b9cdecb9ca88b", "fields": {"nom_de_la_commune": "FLEVILLE DEVANT NANCY", "libell_d_acheminement": "FLEVILLE DEVANT NANCY", "code_postal": "54710", "coordonnees_gps": [48.6251795468, 6.18855131653], "code_commune_insee": "54197"}, "geometry": {"type": "Point", "coordinates": [6.18855131653, 48.6251795468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b166a422eda7d61fad0f035224bee89153f58a8e", "fields": {"nom_de_la_commune": "FLEVILLE LIXIERES", "libell_d_acheminement": "FLEVILLE LIXIERES", "code_postal": "54150", "coordonnees_gps": [49.264324437, 5.89404491023], "code_commune_insee": "54198"}, "geometry": {"type": "Point", "coordinates": [5.89404491023, 49.264324437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0da3ead6499b2832dbb626d9e5760a4b7445915f", "fields": {"nom_de_la_commune": "FLIN", "libell_d_acheminement": "FLIN", "code_postal": "54122", "coordonnees_gps": [48.4830574623, 6.66436645475], "code_commune_insee": "54199"}, "geometry": {"type": "Point", "coordinates": [6.66436645475, 48.4830574623]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974174979c5438e4e0e45bd98be198223892723b", "fields": {"nom_de_la_commune": "FONTENOY SUR MOSELLE", "libell_d_acheminement": "FONTENOY SUR MOSELLE", "code_postal": "54840", "coordonnees_gps": [48.6916643372, 6.00665545464], "code_commune_insee": "54202"}, "geometry": {"type": "Point", "coordinates": [6.00665545464, 48.6916643372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5070fb914e911272fcf482ec42ae986e2b77e6a", "fields": {"nom_de_la_commune": "FRIAUVILLE", "libell_d_acheminement": "FRIAUVILLE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54213"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f49a380c4219577a200d1883bdba6ac38bcd8fd2", "fields": {"nom_de_la_commune": "FROVILLE", "libell_d_acheminement": "FROVILLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54216"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ab6a44791c085fdbc3657547ff6cc8b47587ea", "fields": {"nom_de_la_commune": "GELLENONCOURT", "libell_d_acheminement": "GELLENONCOURT", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54219"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ea68a410e8abbea0c096bab0c87ed24fb3bc847", "fields": {"nom_de_la_commune": "GEZONCOURT", "libell_d_acheminement": "GEZONCOURT", "code_postal": "54380", "coordonnees_gps": [48.8291241117, 6.03986596053], "code_commune_insee": "54225"}, "geometry": {"type": "Point", "coordinates": [6.03986596053, 48.8291241117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eb8ed9f36b96fc0758da60427fc2f30a25f149e", "fields": {"nom_de_la_commune": "GOVILLER", "libell_d_acheminement": "GOVILLER", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54235"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd0a20d92ce7eebc6822b0012f07b5dd3254b0db", "fields": {"nom_de_la_commune": "GRIPPORT", "libell_d_acheminement": "GRIPPORT", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54238"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0438d0fa2503e7308bd0dbf59e4f01f3b8b9875d", "fields": {"nom_de_la_commune": "HATRIZE", "libell_d_acheminement": "HATRIZE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54253"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44a7ffa39d17edad1242fb306c7c10419e9a43fb", "fields": {"nom_de_la_commune": "HAUSSONVILLE", "libell_d_acheminement": "HAUSSONVILLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54256"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "646f42255632a919d6d64c8d5ec4fad4acb883f8", "fields": {"nom_de_la_commune": "HERBEVILLER", "libell_d_acheminement": "HERBEVILLER", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54259"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efaa64e782286f6b2835cae5d9fcf7c7a1ba9f22", "fields": {"nom_de_la_commune": "HOEVILLE", "libell_d_acheminement": "HOEVILLE", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54262"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37dddbfd0d29ae7d1d768341d4e7807703e45d2d", "fields": {"nom_de_la_commune": "HOUDELMONT", "libell_d_acheminement": "HOUDELMONT", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54264"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea023eea32ed68706ae040e8d69b8a1043ec624", "fields": {"nom_de_la_commune": "HUDIVILLER", "libell_d_acheminement": "HUDIVILLER", "code_postal": "54110", "coordonnees_gps": [48.6421405896, 6.35866199488], "code_commune_insee": "54269"}, "geometry": {"type": "Point", "coordinates": [6.35866199488, 48.6421405896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1de8ee3bc8f15f70a719ad4dbe2c1f1cda24ca87", "fields": {"code_postal": "54800", "code_commune_insee": "54273", "libell_d_acheminement": "JARNY", "ligne_5": "DROITAUMONT", "nom_de_la_commune": "JARNY", "coordonnees_gps": [49.1533949551, 5.84735611771]}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebaeec876717866cfb396dcab50bdb84a31f679b", "fields": {"nom_de_la_commune": "JOEUF", "libell_d_acheminement": "JOEUF", "code_postal": "54240", "coordonnees_gps": [49.2315948324, 6.01177680019], "code_commune_insee": "54280"}, "geometry": {"type": "Point", "coordinates": [6.01177680019, 49.2315948324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f18e3d602a5115417e437f6d172941cb7849c0a", "fields": {"nom_de_la_commune": "JOLIVET", "libell_d_acheminement": "JOLIVET", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54281"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7871adfc73e028655ceb2612a80abd974eeeabed", "fields": {"nom_de_la_commune": "JOUDREVILLE", "libell_d_acheminement": "JOUDREVILLE", "code_postal": "54490", "coordonnees_gps": [49.3325834566, 5.77814621797], "code_commune_insee": "54284"}, "geometry": {"type": "Point", "coordinates": [5.77814621797, 49.3325834566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a3afcbbc1ceadf8aea2ebe6127cd5d6f024fb78", "fields": {"nom_de_la_commune": "LABRY", "libell_d_acheminement": "LABRY", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54286"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5997458e3e39cd377033ff79edd7be219630f32", "fields": {"nom_de_la_commune": "LACHAPELLE", "libell_d_acheminement": "LACHAPELLE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54287"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1777ad9397cf84a91a7dc026cb7877ec6cfc1c03", "fields": {"nom_de_la_commune": "LANDRES", "libell_d_acheminement": "LANDRES", "code_postal": "54970", "coordonnees_gps": [49.3187672382, 5.80783806738], "code_commune_insee": "54295"}, "geometry": {"type": "Point", "coordinates": [5.80783806738, 49.3187672382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74c1679fbe107124f6dfb5a2cbb270dd5830c327", "fields": {"nom_de_la_commune": "LARONXE", "libell_d_acheminement": "LARONXE", "code_postal": "54950", "coordonnees_gps": [48.5425960628, 6.61591716683], "code_commune_insee": "54303"}, "geometry": {"type": "Point", "coordinates": [6.61591716683, 48.5425960628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84996d9899b006092e1cbbb40675256217e06fd", "fields": {"nom_de_la_commune": "LAXOU", "libell_d_acheminement": "LAXOU", "code_postal": "54520", "coordonnees_gps": [48.6821372702, 6.11416538481], "code_commune_insee": "54304"}, "geometry": {"type": "Point", "coordinates": [6.11416538481, 48.6821372702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2376c9809ba840d5d805154b68ea141edf3bf44f", "fields": {"nom_de_la_commune": "LAY ST REMY", "libell_d_acheminement": "LAY ST REMY", "code_postal": "54570", "coordonnees_gps": [48.6894085675, 5.77714272424], "code_commune_insee": "54306"}, "geometry": {"type": "Point", "coordinates": [5.77714272424, 48.6894085675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67b783f5a20ab7d61cd99f33c8b9d79539c06b2f", "fields": {"nom_de_la_commune": "LEINTREY", "libell_d_acheminement": "LEINTREY", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54308"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d320ad3187a72526167a843d2b149277fbd9d9", "fields": {"nom_de_la_commune": "LONGLAVILLE", "libell_d_acheminement": "LONGLAVILLE", "code_postal": "54810", "coordonnees_gps": [49.5340580438, 5.8023058526], "code_commune_insee": "54321"}, "geometry": {"type": "Point", "coordinates": [5.8023058526, 49.5340580438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e88a6cd35c6f53aa92630954fe1ead674e9008f", "fields": {"nom_de_la_commune": "LOROMONTZEY", "libell_d_acheminement": "LOROMONTZEY", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54325"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a977016f580a3386b34bb1f79a17d9a7974556", "fields": {"nom_de_la_commune": "LUPCOURT", "libell_d_acheminement": "LUPCOURT", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54330"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e2ee71f67c2c3e977776fa553039e1fcab3271e", "fields": {"nom_de_la_commune": "MAGNIERES", "libell_d_acheminement": "MAGNIERES", "code_postal": "54129", "coordonnees_gps": [48.4443358669, 6.56609843512], "code_commune_insee": "54331"}, "geometry": {"type": "Point", "coordinates": [6.56609843512, 48.4443358669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f88558db9c6b8b993c57f02f66abb6ad1496f9", "fields": {"nom_de_la_commune": "MAIDIERES", "libell_d_acheminement": "MAIDIERES", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54332"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ec25be3aca57ff2deeafdf47f31ee3bef21319", "fields": {"nom_de_la_commune": "MAILLY SUR SEILLE", "libell_d_acheminement": "MAILLY SUR SEILLE", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54333"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f869aba199b08e7f70ef442806c540e14613782", "fields": {"nom_de_la_commune": "MALAVILLERS", "libell_d_acheminement": "MALAVILLERS", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54337"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf2becc908bcaa478f125221a91011f607bab115", "fields": {"nom_de_la_commune": "MANDRES AUX QUATRE TOURS", "libell_d_acheminement": "MANDRES AUX QUATRE TOURS", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54343"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8261b58e75e44bec7f549bb8e44e1568e142d148", "fields": {"nom_de_la_commune": "MARON", "libell_d_acheminement": "MARON", "code_postal": "54230", "coordonnees_gps": [48.642574056, 6.08496261598], "code_commune_insee": "54352"}, "geometry": {"type": "Point", "coordinates": [6.08496261598, 48.642574056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "089d77f07732982902daf4a71718a4809a6bc5d9", "fields": {"nom_de_la_commune": "MARTHEMONT", "libell_d_acheminement": "MARTHEMONT", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54354"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b375dc391b8acd4c78d9b264397dd175cdd3c15e", "fields": {"code_postal": "54320", "code_commune_insee": "54357", "libell_d_acheminement": "MAXEVILLE", "ligne_5": "MAXEVILLE CHAMPLEBOEUF", "nom_de_la_commune": "MAXEVILLE", "coordonnees_gps": [48.7099239924, 6.15129717058]}, "geometry": {"type": "Point", "coordinates": [6.15129717058, 48.7099239924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d8ae21ceb905e06eb0c6eb1cbeaaae10fa63947", "fields": {"nom_de_la_commune": "MEXY", "libell_d_acheminement": "MEXY", "code_postal": "54135", "coordonnees_gps": [49.5015479376, 5.78600366188], "code_commune_insee": "54367"}, "geometry": {"type": "Point", "coordinates": [5.78600366188, 49.5015479376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d11de27a3b4b0a1263d93cff604f76170d10ad0", "fields": {"nom_de_la_commune": "MILLERY", "libell_d_acheminement": "MILLERY", "code_postal": "54670", "coordonnees_gps": [48.7978385403, 6.14814767129], "code_commune_insee": "54369"}, "geometry": {"type": "Point", "coordinates": [6.14814767129, 48.7978385403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7282ea073bdfa0b85983668ff4d91c6654f5bfd5", "fields": {"nom_de_la_commune": "MONTAUVILLE", "libell_d_acheminement": "MONTAUVILLE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54375"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fa3cc3c479d68a801fd62aa7c7f4e0d3246a812", "fields": {"nom_de_la_commune": "MONTIGNY", "libell_d_acheminement": "MONTIGNY", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54377"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78fa8941d64a8fda519782706099424681aa4ba7", "fields": {"code_postal": "54870", "code_commune_insee": "54378", "libell_d_acheminement": "MONTIGNY SUR CHIERS", "ligne_5": "FERMONT", "nom_de_la_commune": "MONTIGNY SUR CHIERS", "coordonnees_gps": [49.4779492899, 5.69039116636]}, "geometry": {"type": "Point", "coordinates": [5.69039116636, 49.4779492899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1976abde3beec4132923f0ac5a9a87182a9846d9", "fields": {"nom_de_la_commune": "MONT SUR MEURTHE", "libell_d_acheminement": "MONT SUR MEURTHE", "code_postal": "54360", "coordonnees_gps": [48.5376084604, 6.39273410507], "code_commune_insee": "54383"}, "geometry": {"type": "Point", "coordinates": [6.39273410507, 48.5376084604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07f90ee1d82ccd52aed60160900b4eb2104819f4", "fields": {"nom_de_la_commune": "MORFONTAINE", "libell_d_acheminement": "MORFONTAINE", "code_postal": "54920", "coordonnees_gps": [49.4594844823, 5.82596357033], "code_commune_insee": "54385"}, "geometry": {"type": "Point", "coordinates": [5.82596357033, 49.4594844823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a98e2db72b24c4b989b427d41e7454ee5cff58d", "fields": {"nom_de_la_commune": "MORVILLE SUR SEILLE", "libell_d_acheminement": "MORVILLE SUR SEILLE", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54387"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179c0a2dc8b27fae262b28c9f55df76395d03903", "fields": {"nom_de_la_commune": "NEUFMAISONS", "libell_d_acheminement": "NEUFMAISONS", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54396"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca5870986f1e10060dffa7fbd1b99593ade476e", "fields": {"nom_de_la_commune": "NEUVILLER LES BADONVILLER", "libell_d_acheminement": "NEUVILLER LES BADONVILLER", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54398"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede51a7ef26a5dd2f19bd5d0b83a54e908150342", "fields": {"nom_de_la_commune": "NEUVILLER SUR MOSELLE", "libell_d_acheminement": "NEUVILLER SUR MOSELLE", "code_postal": "54290", "coordonnees_gps": [48.4626547242, 6.34305625466], "code_commune_insee": "54399"}, "geometry": {"type": "Point", "coordinates": [6.34305625466, 48.4626547242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48732f3df27a81482dc477bf919a1cd0fddd9978", "fields": {"nom_de_la_commune": "NOMENY", "libell_d_acheminement": "NOMENY", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54400"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4384e53821565940e9aae1213d5ca17b76c48bbf", "fields": {"nom_de_la_commune": "OGEVILLER", "libell_d_acheminement": "OGEVILLER", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54406"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1f5a28ad82884eea559e38f77e59b1203387b88", "fields": {"nom_de_la_commune": "ORMES ET VILLE", "libell_d_acheminement": "ORMES ET VILLE", "code_postal": "54740", "coordonnees_gps": [48.4693154754, 6.20930559716], "code_commune_insee": "54411"}, "geometry": {"type": "Point", "coordinates": [6.20930559716, 48.4693154754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "775f2ec2204255e067aee626c6b84ee652ee5578", "fields": {"nom_de_la_commune": "PETIT FAILLY", "libell_d_acheminement": "PETIT FAILLY", "code_postal": "54260", "coordonnees_gps": [49.4669099141, 5.55797243137], "code_commune_insee": "54420"}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44220f99bb77c71a03b50b7688d58fbe17686237", "fields": {"nom_de_la_commune": "PETITMONT", "libell_d_acheminement": "PETITMONT", "code_postal": "54480", "coordonnees_gps": [48.5581211262, 6.98506028293], "code_commune_insee": "54421"}, "geometry": {"type": "Point", "coordinates": [6.98506028293, 48.5581211262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537cf0045892b741816bdd67453a9f8c0396a3cb", "fields": {"nom_de_la_commune": "PONT ST VINCENT", "libell_d_acheminement": "PONT ST VINCENT", "code_postal": "54550", "coordonnees_gps": [48.6084517258, 6.04974383571], "code_commune_insee": "54432"}, "geometry": {"type": "Point", "coordinates": [6.04974383571, 48.6084517258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e8ef7ffde377b6dbb19e8e55ccb0aa655fa059", "fields": {"nom_de_la_commune": "PULLIGNY", "libell_d_acheminement": "PULLIGNY", "code_postal": "54160", "coordonnees_gps": [48.5525165802, 6.13358335741], "code_commune_insee": "54437"}, "geometry": {"type": "Point", "coordinates": [6.13358335741, 48.5525165802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8abe8cdcfdf35dc4472ad9f347b160b4d78f55", "fields": {"nom_de_la_commune": "PULNEY", "libell_d_acheminement": "PULNEY", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54438"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a99431fceb3de2ae6bfbfb2825995e546f0ecc", "fields": {"nom_de_la_commune": "PUXE", "libell_d_acheminement": "PUXE", "code_postal": "54800", "coordonnees_gps": [49.1533949551, 5.84735611771], "code_commune_insee": "54440"}, "geometry": {"type": "Point", "coordinates": [5.84735611771, 49.1533949551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce8e19180be8e7c9b2e7973eac3f0076437f1147", "fields": {"nom_de_la_commune": "RAON LES LEAU", "libell_d_acheminement": "RAON LES LEAU", "code_postal": "54540", "coordonnees_gps": [48.4879435036, 6.89716431084], "code_commune_insee": "54443"}, "geometry": {"type": "Point", "coordinates": [6.89716431084, 48.4879435036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c93e23cf8fdad48bca96cf3fe00d3791a4fdc4", "fields": {"nom_de_la_commune": "RAVILLE SUR SANON", "libell_d_acheminement": "RAVILLE SUR SANON", "code_postal": "54370", "coordonnees_gps": [48.6799191699, 6.55364167733], "code_commune_insee": "54445"}, "geometry": {"type": "Point", "coordinates": [6.55364167733, 48.6799191699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1051629471c4283a09eeba34fae5103428bd40a0", "fields": {"nom_de_la_commune": "REHERREY", "libell_d_acheminement": "REHERREY", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54450"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d7230b6a0d0e58bdc33283f574a91ac1bf38c3f", "fields": {"nom_de_la_commune": "REPAIX", "libell_d_acheminement": "REPAIX", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54458"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6335217b487c3da9e8c3363d2ceab39900ac040", "fields": {"nom_de_la_commune": "RICHARDMENIL", "libell_d_acheminement": "RICHARDMENIL", "code_postal": "54630", "coordonnees_gps": [48.5776512425, 6.18802494178], "code_commune_insee": "54459"}, "geometry": {"type": "Point", "coordinates": [6.18802494178, 48.5776512425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ae1e17751639f25e19c4bd5701ac4c291eb260", "fields": {"nom_de_la_commune": "ST FIRMIN", "libell_d_acheminement": "ST FIRMIN", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54473"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02faecca957437b76cb84ecda5b5b3dfa0567212", "fields": {"nom_de_la_commune": "ST MARTIN", "libell_d_acheminement": "ST MARTIN", "code_postal": "54450", "coordonnees_gps": [48.5815208917, 6.79116565699], "code_commune_insee": "54480"}, "geometry": {"type": "Point", "coordinates": [6.79116565699, 48.5815208917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b163e2e413e4e635830c8723e932590763029b3f", "fields": {"nom_de_la_commune": "SAULXURES LES NANCY", "libell_d_acheminement": "SAULXURES LES NANCY", "code_postal": "54420", "coordonnees_gps": [48.6910890899, 6.28501495776], "code_commune_insee": "54495"}, "geometry": {"type": "Point", "coordinates": [6.28501495776, 48.6910890899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "682dc6d7cd2f4a7cd925b4aabbe17c7774d3f5e0", "fields": {"nom_de_la_commune": "SERROUVILLE", "libell_d_acheminement": "SERROUVILLE", "code_postal": "54560", "coordonnees_gps": [49.3750223548, 5.87500468042], "code_commune_insee": "54504"}, "geometry": {"type": "Point", "coordinates": [5.87500468042, 49.3750223548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a53620039205bf6cfba95643b5e6c623616dcdd", "fields": {"nom_de_la_commune": "THEY SOUS VAUDEMONT", "libell_d_acheminement": "THEY SOUS VAUDEMONT", "code_postal": "54930", "coordonnees_gps": [48.391023553, 6.0977951385], "code_commune_insee": "54516"}, "geometry": {"type": "Point", "coordinates": [6.0977951385, 48.391023553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e890b74d2274d16f08d68696cb4da0b7047851d", "fields": {"nom_de_la_commune": "THEZEY ST MARTIN", "libell_d_acheminement": "THEZEY ST MARTIN", "code_postal": "54610", "coordonnees_gps": [48.8814736429, 6.22677651571], "code_commune_insee": "54517"}, "geometry": {"type": "Point", "coordinates": [6.22677651571, 48.8814736429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a945bac7ee0dd8323cb838b3da625bd59cf6b76", "fields": {"nom_de_la_commune": "THIAUCOURT REGNIEVILLE", "libell_d_acheminement": "THIAUCOURT REGNIEVILLE", "code_postal": "54470", "coordonnees_gps": [48.9170057125, 5.86157955771], "code_commune_insee": "54518"}, "geometry": {"type": "Point", "coordinates": [5.86157955771, 48.9170057125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a4f7891bf380974532689187cd214557f3a9a9", "fields": {"nom_de_la_commune": "THIAVILLE SUR MEURTHE", "libell_d_acheminement": "THIAVILLE SUR MEURTHE", "code_postal": "54120", "coordonnees_gps": [48.4609930612, 6.76417608089], "code_commune_insee": "54519"}, "geometry": {"type": "Point", "coordinates": [6.76417608089, 48.4609930612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe23b0733ea73b4d7a8f0e5ac1fa510cf15ac09", "fields": {"nom_de_la_commune": "THUILLEY AUX GROSEILLES", "libell_d_acheminement": "THUILLEY AUX GROSEILLES", "code_postal": "54170", "coordonnees_gps": [48.5367758152, 5.91133391514], "code_commune_insee": "54523"}, "geometry": {"type": "Point", "coordinates": [5.91133391514, 48.5367758152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e913c1f5126923a1df726375916a766ea70c3b", "fields": {"nom_de_la_commune": "TIERCELET", "libell_d_acheminement": "TIERCELET", "code_postal": "54190", "coordonnees_gps": [49.4525960193, 5.89523270383], "code_commune_insee": "54525"}, "geometry": {"type": "Point", "coordinates": [5.89523270383, 49.4525960193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fd06e6d30f011eed4c4a94777e5dfe80d3cb01c", "fields": {"nom_de_la_commune": "TRAMONT LASSUS", "libell_d_acheminement": "TRAMONT LASSUS", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54530"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b18f745ee3e89395e2c6c1b246e90f6c6f8ac701", "fields": {"nom_de_la_commune": "SANDAUCOURT", "libell_d_acheminement": "SANDAUCOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88440"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "815dcb64dd59c7ea30982253b81ac48e9e8e8ea5", "fields": {"nom_de_la_commune": "SENONGES", "libell_d_acheminement": "SENONGES", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88452"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74318bf4000fa81dac1f3c29209a2af3297d85c0", "fields": {"nom_de_la_commune": "SERECOURT", "libell_d_acheminement": "SERECOURT", "code_postal": "88320", "coordonnees_gps": [48.0700985152, 5.80353895262], "code_commune_insee": "88455"}, "geometry": {"type": "Point", "coordinates": [5.80353895262, 48.0700985152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51d93f068583b3db3339274267c5f740cafce30b", "fields": {"nom_de_la_commune": "SOULOSSE SOUS ST ELOPHE", "libell_d_acheminement": "SOULOSSE SOUS ST ELOPHE", "code_postal": "88630", "coordonnees_gps": [48.4264819751, 5.67266104464], "code_commune_insee": "88460"}, "geometry": {"type": "Point", "coordinates": [5.67266104464, 48.4264819751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba82bc418c9d4533f7391881edeb1de4a0feafb5", "fields": {"nom_de_la_commune": "SURIAUVILLE", "libell_d_acheminement": "SURIAUVILLE", "code_postal": "88140", "coordonnees_gps": [48.182022783, 5.80741465936], "code_commune_insee": "88461"}, "geometry": {"type": "Point", "coordinates": [5.80741465936, 48.182022783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b984ebc14e19a8edf1ee5ad5f57f6c4dc6967774", "fields": {"nom_de_la_commune": "THIEFOSSE", "libell_d_acheminement": "THIEFOSSE", "code_postal": "88290", "coordonnees_gps": [47.9540952189, 6.76680969694], "code_commune_insee": "88467"}, "geometry": {"type": "Point", "coordinates": [6.76680969694, 47.9540952189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9edb80afe54620a16ea408ad7a45a6b330e482cb", "fields": {"nom_de_la_commune": "THIRAUCOURT", "libell_d_acheminement": "THIRAUCOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88469"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31a96fbf8a635e53490f796ea766c46aaa1e554f", "fields": {"nom_de_la_commune": "THUILLIERES", "libell_d_acheminement": "THUILLIERES", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88472"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3849f495c779cee2fa94983aeb7ebd13fad15cde", "fields": {"nom_de_la_commune": "TILLEUX", "libell_d_acheminement": "TILLEUX", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88474"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a85b197a9695580471d409693c1ee3035fa73b04", "fields": {"nom_de_la_commune": "TRAMPOT", "libell_d_acheminement": "TRAMPOT", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88477"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fcee39fb1931671486ba0eed21353b45ec80f66", "fields": {"nom_de_la_commune": "TRANQUEVILLE GRAUX", "libell_d_acheminement": "TRANQUEVILLE GRAUX", "code_postal": "88300", "coordonnees_gps": [48.3526627725, 5.74997889486], "code_commune_insee": "88478"}, "geometry": {"type": "Point", "coordinates": [5.74997889486, 48.3526627725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "645bb64cbc0f081f6b72f2d3046efdc805cab68d", "fields": {"nom_de_la_commune": "VALFROICOURT", "libell_d_acheminement": "VALFROICOURT", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88488"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57da7a9281dd95a86e890fd8d1263085a2731fed", "fields": {"nom_de_la_commune": "VALLEROY LE SEC", "libell_d_acheminement": "VALLEROY LE SEC", "code_postal": "88800", "coordonnees_gps": [48.2141678531, 5.97354505837], "code_commune_insee": "88490"}, "geometry": {"type": "Point", "coordinates": [5.97354505837, 48.2141678531]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc4e95fcbe1217960e34ad668118571c184eafa", "fields": {"nom_de_la_commune": "VAUBEXY", "libell_d_acheminement": "VAUBEXY", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88494"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfd73a9319b2a13fb0ae0566395c33fcc1ddd99a", "fields": {"nom_de_la_commune": "VILLE SUR ILLON", "libell_d_acheminement": "VILLE SUR ILLON", "code_postal": "88270", "coordonnees_gps": [48.1930149625, 6.21842096929], "code_commune_insee": "88508"}, "geometry": {"type": "Point", "coordinates": [6.21842096929, 48.1930149625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c27ec9958d6ce557d3f6df66fad8477035348f", "fields": {"nom_de_la_commune": "VILLOUXEL", "libell_d_acheminement": "VILLOUXEL", "code_postal": "88350", "coordonnees_gps": [48.3567514904, 5.53037658121], "code_commune_insee": "88511"}, "geometry": {"type": "Point", "coordinates": [5.53037658121, 48.3567514904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd87a0a9bcb46bbb42d741e50026863fc75f7888", "fields": {"nom_de_la_commune": "VIOCOURT", "libell_d_acheminement": "VIOCOURT", "code_postal": "88170", "coordonnees_gps": [48.3247219784, 5.86762951575], "code_commune_insee": "88514"}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78dabd473e503a7a78337850437479a8b627d2d0", "fields": {"nom_de_la_commune": "VIOMENIL", "libell_d_acheminement": "VIOMENIL", "code_postal": "88260", "coordonnees_gps": [48.1086468288, 6.07770211753], "code_commune_insee": "88515"}, "geometry": {"type": "Point", "coordinates": [6.07770211753, 48.1086468288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7222120fb91d7f60654401ae4ba6e8a507f42c20", "fields": {"nom_de_la_commune": "VIVIERS LES OFFROICOURT", "libell_d_acheminement": "VIVIERS LES OFFROICOURT", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88518"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d46ecfb5e07c4b3e9f453e2a4caf1cd5f989e813", "fields": {"nom_de_la_commune": "VOMECOURT", "libell_d_acheminement": "VOMECOURT", "code_postal": "88700", "coordonnees_gps": [48.3561610779, 6.64537950022], "code_commune_insee": "88521"}, "geometry": {"type": "Point", "coordinates": [6.64537950022, 48.3561610779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d18c63b1bb11763c5d641d099fbca620af4d4c2e", "fields": {"nom_de_la_commune": "VOMECOURT SUR MADON", "libell_d_acheminement": "VOMECOURT SUR MADON", "code_postal": "88500", "coordonnees_gps": [48.3096022537, 6.09770979133], "code_commune_insee": "88522"}, "geometry": {"type": "Point", "coordinates": [6.09770979133, 48.3096022537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53daee8ed643323e210e3ba62dab526013b80334", "fields": {"code_postal": "88170", "code_commune_insee": "88523", "libell_d_acheminement": "VOUXEY", "ligne_5": "IMBRECOURT", "nom_de_la_commune": "VOUXEY", "coordonnees_gps": [48.3247219784, 5.86762951575]}, "geometry": {"type": "Point", "coordinates": [5.86762951575, 48.3247219784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f4917f55161d1cc36cb4eb1ad5667b94bb3641", "fields": {"nom_de_la_commune": "XAMONTARUPT", "libell_d_acheminement": "XAMONTARUPT", "code_postal": "88460", "coordonnees_gps": [48.1368007293, 6.62734647299], "code_commune_insee": "88528"}, "geometry": {"type": "Point", "coordinates": [6.62734647299, 48.1368007293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db1b080b7743a21d1ca8fb6392c705362a499798", "fields": {"nom_de_la_commune": "ZINCOURT", "libell_d_acheminement": "ZINCOURT", "code_postal": "88330", "coordonnees_gps": [48.3419536385, 6.44237746843], "code_commune_insee": "88532"}, "geometry": {"type": "Point", "coordinates": [6.44237746843, 48.3419536385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ee85bbc782954097c1fc8abae8447a4793f36a", "fields": {"nom_de_la_commune": "ANCY LE LIBRE", "libell_d_acheminement": "ANCY LE LIBRE", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89006"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15af01f42a860d6fe3e7c6669d72e282f34615cc", "fields": {"nom_de_la_commune": "ANNAY LA COTE", "libell_d_acheminement": "ANNAY LA COTE", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89009"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2412f3539f3d44e586c219b23ae2700911a8d946", "fields": {"nom_de_la_commune": "ANNEOT", "libell_d_acheminement": "ANNEOT", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89011"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ce889a3255945748d55c33d70648164f343f44", "fields": {"nom_de_la_commune": "ANNOUX", "libell_d_acheminement": "ANNOUX", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89012"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492db4d94f147e09fea4f527d949f486bf1934e8", "fields": {"nom_de_la_commune": "ARGENTEUIL SUR ARMANCON", "libell_d_acheminement": "ARGENTEUIL SUR ARMANCON", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89017"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a193f2d179c18846137106bc0e3fbeff02fb7395", "fields": {"nom_de_la_commune": "ASNIERES SOUS BOIS", "libell_d_acheminement": "ASNIERES SOUS BOIS", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89020"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0c823daa5789ef6a683fb853609a6058d721798", "fields": {"nom_de_la_commune": "BAON", "libell_d_acheminement": "BAON", "code_postal": "89430", "coordonnees_gps": [47.8807711106, 4.10354187275], "code_commune_insee": "89028"}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77c5df5404bd9ec8644455fd169b61f69d3f79b9", "fields": {"nom_de_la_commune": "BEAUMONT", "libell_d_acheminement": "BEAUMONT", "code_postal": "89250", "coordonnees_gps": [47.9169771664, 3.59359231918], "code_commune_insee": "89031"}, "geometry": {"type": "Point", "coordinates": [3.59359231918, 47.9169771664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "820d8cb20f659472c672eeed76433b615daa1f83", "fields": {"nom_de_la_commune": "BEAUVILLIERS", "libell_d_acheminement": "BEAUVILLIERS", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89032"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "631cdadaf43f8b9474920a534e4ecd669ecb8bf8", "fields": {"nom_de_la_commune": "BIERRY LES BELLES FONTAINES", "libell_d_acheminement": "BIERRY LES BELLES FONTAINES", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89042"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2504a13eb2429e1b51bd3bf4dc8197522495b32c", "fields": {"nom_de_la_commune": "BOEURS EN OTHE", "libell_d_acheminement": "BOEURS EN OTHE", "code_postal": "89770", "coordonnees_gps": [48.1187207961, 3.6979482675], "code_commune_insee": "89048"}, "geometry": {"type": "Point", "coordinates": [3.6979482675, 48.1187207961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78f0b5d77cc6e5dc2aadc5aeac07cb8616bcfaee", "fields": {"nom_de_la_commune": "BRANCHES", "libell_d_acheminement": "BRANCHES", "code_postal": "89113", "coordonnees_gps": [47.8595932276, 3.45642824955], "code_commune_insee": "89053"}, "geometry": {"type": "Point", "coordinates": [3.45642824955, 47.8595932276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975c051e2430861e880771380b06a9e422ac5554", "fields": {"code_postal": "89800", "code_commune_insee": "89068", "libell_d_acheminement": "CHABLIS", "ligne_5": "FYE", "nom_de_la_commune": "CHABLIS", "coordonnees_gps": [47.7904940717, 3.79065013362]}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0955ae2d6485f918bbf9d3989bba1a7f35ebf287", "fields": {"code_postal": "89800", "code_commune_insee": "89068", "libell_d_acheminement": "CHABLIS", "ligne_5": "MILLY", "nom_de_la_commune": "CHABLIS", "coordonnees_gps": [47.7904940717, 3.79065013362]}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620e4bd51a314f8468b2523fc22324352e1ba75a", "fields": {"nom_de_la_commune": "CHAMPIGNELLES", "libell_d_acheminement": "CHAMPIGNELLES", "code_postal": "89350", "coordonnees_gps": [47.7773444304, 3.09490527015], "code_commune_insee": "89073"}, "geometry": {"type": "Point", "coordinates": [3.09490527015, 47.7773444304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d460c6e47e469a4be7895e0f1747ddf3f887f7c", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR OREUSE", "libell_d_acheminement": "LA CHAPELLE SUR OREUSE", "code_postal": "89260", "coordonnees_gps": [48.3092552712, 3.39257343746], "code_commune_insee": "89080"}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef7f65c72db89ebfe8459655e0785ae38e3dd8df", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "CHENE ARNOULT", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "834246e038cd073a76086d12344b65f68928e7e7", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "CHEVILLON", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a4f361df2b8f32f17a15905afe10d5227132147", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "MALICORNE", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c49ae27ce95f3ef6c6076d3a096d4cf02bc5dede", "fields": {"code_postal": "89120", "code_commune_insee": "89086", "libell_d_acheminement": "CHARNY OREE DE PUISAYE", "ligne_5": "MARCHAIS BETON", "nom_de_la_commune": "CHARNY OREE DE PUISAYE", "coordonnees_gps": [47.8865953277, 3.09899057886]}, "geometry": {"type": "Point", "coordinates": [3.09899057886, 47.8865953277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "127d1cc11fbddc889ce89b075246a2a80391cea6", "fields": {"nom_de_la_commune": "LES CLERIMOIS", "libell_d_acheminement": "LES CLERIMOIS", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89111"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "224575a7f850a439d47d11057335f7923bb63558", "fields": {"nom_de_la_commune": "COULOURS", "libell_d_acheminement": "COULOURS", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89120"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a505390ee6b52c041330f26541c9bd62e15ea6da", "fields": {"nom_de_la_commune": "COURGENAY", "libell_d_acheminement": "COURGENAY", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89122"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643a7708d4b3e04ffcd9bbb93d5e4043459e7ff1", "fields": {"nom_de_la_commune": "COURTOIS SUR YONNE", "libell_d_acheminement": "COURTOIS SUR YONNE", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89127"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf18bec07297ad15b2d463840dc0fb70bb1fc851", "fields": {"nom_de_la_commune": "DISSANGIS", "libell_d_acheminement": "DISSANGIS", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89141"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3e1cee4bc8a474ce8ab642160df3fd30aa7a961", "fields": {"nom_de_la_commune": "DIXMONT", "libell_d_acheminement": "DIXMONT", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89142"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea396b8852680ff59fb5a2a328fb42d827f1411e", "fields": {"nom_de_la_commune": "DOLLOT", "libell_d_acheminement": "DOLLOT", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89143"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3583936cd56e98243f14a804c9c4fbef204a03ea", "fields": {"nom_de_la_commune": "DOMECY SUR CURE", "libell_d_acheminement": "DOMECY SUR CURE", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89145"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cda0b77c59a8388b0867d1f780fe7555264d7a5", "fields": {"nom_de_la_commune": "DRUYES LES BELLES FONTAINES", "libell_d_acheminement": "DRUYES LES BELLES FONTAINES", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89148"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a4c95d9ec695f77a4ccd3564d737fb2620f4fe", "fields": {"nom_de_la_commune": "ESCAMPS", "libell_d_acheminement": "ESCAMPS", "code_postal": "89240", "coordonnees_gps": [47.7555855853, 3.42646433091], "code_commune_insee": "89154"}, "geometry": {"type": "Point", "coordinates": [3.42646433091, 47.7555855853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "018cd46904f56c24cefcfaea7a4482d2158436c0", "fields": {"nom_de_la_commune": "ETIGNY", "libell_d_acheminement": "ETIGNY", "code_postal": "89510", "coordonnees_gps": [48.1263967669, 3.31137297054], "code_commune_insee": "89160"}, "geometry": {"type": "Point", "coordinates": [3.31137297054, 48.1263967669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8d014f7288892e5135079c68b6e8601e366217", "fields": {"nom_de_la_commune": "FONTAINES", "libell_d_acheminement": "FONTAINES", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89173"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b204c1f3ed606b197cff50a7b0b95dd16a0f8770", "fields": {"nom_de_la_commune": "FONTENAILLES", "libell_d_acheminement": "FONTENAILLES", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89174"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6da1346a4c17f60bf3d9f8859f21ad0bb3adb7", "fields": {"nom_de_la_commune": "FOURNAUDIN", "libell_d_acheminement": "FOURNAUDIN", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89181"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97d7c6b4347a06b7f6419f289790ee43024403f6", "fields": {"nom_de_la_commune": "GISY LES NOBLES", "libell_d_acheminement": "GISY LES NOBLES", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89189"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5833161ae672ad8415294871f05603d61cc76536", "fields": {"nom_de_la_commune": "GLAND", "libell_d_acheminement": "GLAND", "code_postal": "89740", "coordonnees_gps": [47.8818432243, 4.21631025532], "code_commune_insee": "89191"}, "geometry": {"type": "Point", "coordinates": [4.21631025532, 47.8818432243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddb9e713dd529df93b7845b29f83aa56cb24dc4d", "fields": {"nom_de_la_commune": "GUILLON", "libell_d_acheminement": "GUILLON", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89197"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66aa48b869c199b55a4e998917b95d58b74db43f", "fields": {"nom_de_la_commune": "JOIGNY", "libell_d_acheminement": "JOIGNY", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89206"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f1faed71287a7b67d5b4d2a980b8cc7a7fd1d6", "fields": {"nom_de_la_commune": "JOUX LA VILLE", "libell_d_acheminement": "JOUX LA VILLE", "code_postal": "89440", "coordonnees_gps": [47.6035566151, 3.94438817513], "code_commune_insee": "89208"}, "geometry": {"type": "Point", "coordinates": [3.94438817513, 47.6035566151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7037fca0c8b291340e60ce268b8e03b06dffbba2", "fields": {"nom_de_la_commune": "JUSSY", "libell_d_acheminement": "JUSSY", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89212"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ee4dc1c3270a42492feffa60c03f925190b849", "fields": {"nom_de_la_commune": "LAILLY", "libell_d_acheminement": "LAILLY", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89214"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10a27cb13b5e277d3e85ace830ec662bc4261191", "fields": {"nom_de_la_commune": "LICHERES PRES AIGREMONT", "libell_d_acheminement": "LICHERES PRES AIGREMONT", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89224"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9aeb49b02820449191a5d17579ecf99f8de79a4", "fields": {"nom_de_la_commune": "LICHERES SUR YONNE", "libell_d_acheminement": "LICHERES SUR YONNE", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89225"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e595850bffef4f7c52f5fcc8a1e79e466428551", "fields": {"nom_de_la_commune": "LIXY", "libell_d_acheminement": "LIXY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89229"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "795acad093fceec35282523cdad6ef046ac9dd3d", "fields": {"code_postal": "89270", "code_commune_insee": "89233", "libell_d_acheminement": "LUCY SUR CURE", "ligne_5": "ESSERT", "nom_de_la_commune": "LUCY SUR CURE", "coordonnees_gps": [47.6119078009, 3.74587483538]}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f706f041a6567627495981f508ea43f483676a9c", "fields": {"nom_de_la_commune": "LUCY SUR YONNE", "libell_d_acheminement": "LUCY SUR YONNE", "code_postal": "89480", "coordonnees_gps": [47.5244722983, 3.44429021267], "code_commune_insee": "89234"}, "geometry": {"type": "Point", "coordinates": [3.44429021267, 47.5244722983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c98690e0c595f9d57a2b437c66c05005831a73", "fields": {"nom_de_la_commune": "MARMEAUX", "libell_d_acheminement": "MARMEAUX", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89244"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04972c55c0195b766db02e80b15d297a58371e0c", "fields": {"nom_de_la_commune": "MIGENNES", "libell_d_acheminement": "MIGENNES", "code_postal": "89400", "coordonnees_gps": [47.9902614627, 3.51061270262], "code_commune_insee": "89257"}, "geometry": {"type": "Point", "coordinates": [3.51061270262, 47.9902614627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fce8ae3c3dd528b63ad4f24b0dc0364efb741a0", "fields": {"nom_de_la_commune": "MOLINONS", "libell_d_acheminement": "MOLINONS", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89261"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b165e63bf757c9d665c99caad5d19984aa5bc22", "fields": {"nom_de_la_commune": "MONTIGNY LA RESLE", "libell_d_acheminement": "MONTIGNY LA RESLE", "code_postal": "89230", "coordonnees_gps": [47.8736260465, 3.68278303348], "code_commune_insee": "89265"}, "geometry": {"type": "Point", "coordinates": [3.68278303348, 47.8736260465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1adca8811490bd1863585d28812d812ddd31695", "fields": {"nom_de_la_commune": "MONTREAL", "libell_d_acheminement": "MONTREAL", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89267"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dab69e32fb971bdd4f2946df2ba0e1dc055e452", "fields": {"nom_de_la_commune": "MONT ST SULPICE", "libell_d_acheminement": "MONT ST SULPICE", "code_postal": "89250", "coordonnees_gps": [47.9169771664, 3.59359231918], "code_commune_insee": "89268"}, "geometry": {"type": "Point", "coordinates": [3.59359231918, 47.9169771664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0956bfbd320d0d184c3e912721fabd378fda74", "fields": {"nom_de_la_commune": "MOUTIERS EN PUISAYE", "libell_d_acheminement": "MOUTIERS EN PUISAYE", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89273"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8fbf25bedcdd83f98d38e2d87e2a1f795c1e252", "fields": {"nom_de_la_commune": "NUITS", "libell_d_acheminement": "NUITS", "code_postal": "89390", "coordonnees_gps": [47.70341613, 4.2240121649], "code_commune_insee": "89280"}, "geometry": {"type": "Point", "coordinates": [4.2240121649, 47.70341613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84a9060518f5657a0cef57be450834fbd54f54e4", "fields": {"nom_de_la_commune": "LES ORMES", "libell_d_acheminement": "LES ORMES", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89281"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a92bed7ec0a89fed4f9feed0b5fd1e99e1870fd", "fields": {"nom_de_la_commune": "OUANNE", "libell_d_acheminement": "OUANNE", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89283"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72114ab246e150906227f294620e3d5e1f89d88", "fields": {"nom_de_la_commune": "PRECY SUR VRIN", "libell_d_acheminement": "PRECY SUR VRIN", "code_postal": "89116", "coordonnees_gps": [47.9697320355, 3.23051623218], "code_commune_insee": "89313"}, "geometry": {"type": "Point", "coordinates": [3.23051623218, 47.9697320355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c13ccd18be3def0eaf0c5387b05c000216fc72", "fields": {"nom_de_la_commune": "QUENNE", "libell_d_acheminement": "QUENNE", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89319"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38486bf853cb1d6d9cdb394b49be3469f6c62959", "fields": {"nom_de_la_commune": "RAVIERES", "libell_d_acheminement": "RAVIERES", "code_postal": "89390", "coordonnees_gps": [47.70341613, 4.2240121649], "code_commune_insee": "89321"}, "geometry": {"type": "Point", "coordinates": [4.2240121649, 47.70341613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bc38165c22ae184dd1f197386a8d14b258776b3", "fields": {"nom_de_la_commune": "ROFFEY", "libell_d_acheminement": "ROFFEY", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89323"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95fbc00b039d2463b1f884ccc2952571137d8386", "fields": {"nom_de_la_commune": "ROUSSON", "libell_d_acheminement": "ROUSSON", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89327"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b19d8a97e63bbee90db325e4e9494bf2936c7d57", "fields": {"nom_de_la_commune": "SAINPUITS", "libell_d_acheminement": "SAINPUITS", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89331"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "914611b4e642c122dac88954c309e434afea80e5", "fields": {"nom_de_la_commune": "ST ANDRE EN TERRE PLAINE", "libell_d_acheminement": "ST ANDRE EN TERRE PLAINE", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89333"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "504923a08fcd7dac94c3a89cf2f863e1357c8373", "fields": {"nom_de_la_commune": "ST BRANCHER", "libell_d_acheminement": "ST BRANCHER", "code_postal": "89630", "coordonnees_gps": [47.3917951306, 3.99292713969], "code_commune_insee": "89336"}, "geometry": {"type": "Point", "coordinates": [3.99292713969, 47.3917951306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f01a3bcc70c254e889cbce5ada9ba3d52af66951", "fields": {"nom_de_la_commune": "ST BRIS LE VINEUX", "libell_d_acheminement": "ST BRIS LE VINEUX", "code_postal": "89530", "coordonnees_gps": [47.7489653756, 3.67103097653], "code_commune_insee": "89337"}, "geometry": {"type": "Point", "coordinates": [3.67103097653, 47.7489653756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69199f87d25d94345cfcbae30d083ae227e6cd8b", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89338"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0d037fff2e89821ea258a84735197e25471d83", "fields": {"code_postal": "89170", "code_commune_insee": "89344", "libell_d_acheminement": "ST FARGEAU", "ligne_5": "SEPTFONDS", "nom_de_la_commune": "ST FARGEAU", "coordonnees_gps": [47.6325308017, 3.04724624104]}, "geometry": {"type": "Point", "coordinates": [3.04724624104, 47.6325308017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69b06aead3fc8f6eb40289a9e21ab1f4de4ccf3", "fields": {"nom_de_la_commune": "ST MAURICE LE VIEIL", "libell_d_acheminement": "ST MAURICE LE VIEIL", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89360"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d0b3a4299cb8233b63b3972846cd560dcc5e325", "fields": {"nom_de_la_commune": "SAUVIGNY LE BOIS", "libell_d_acheminement": "SAUVIGNY LE BOIS", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89378"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f453c8b3c2900c019256f4804b18d7932860be36", "fields": {"nom_de_la_commune": "SAVIGNY SUR CLAIRIS", "libell_d_acheminement": "SAVIGNY SUR CLAIRIS", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89380"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846a538d1b30636e8971dd3634ca93b98f66398d", "fields": {"nom_de_la_commune": "SENAN", "libell_d_acheminement": "SENAN", "code_postal": "89710", "coordonnees_gps": [47.9188469839, 3.34212763493], "code_commune_insee": "89384"}, "geometry": {"type": "Point", "coordinates": [3.34212763493, 47.9188469839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38df29943f5c1fb720f543f83837f675d3d82691", "fields": {"nom_de_la_commune": "SENNEVOY LE HAUT", "libell_d_acheminement": "SENNEVOY LE HAUT", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89386"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d4b85038061821d65f3611df3b973b94c6df714", "fields": {"nom_de_la_commune": "SENS", "libell_d_acheminement": "SENS", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89387"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8916e23e4c1908f2ebb7a10d1c6e4ade2dd7b385", "fields": {"nom_de_la_commune": "SERMIZELLES", "libell_d_acheminement": "SERMIZELLES", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89392"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "818365695b4550f47ba0900a8c21f8370f4ad05a", "fields": {"nom_de_la_commune": "LES SIEGES", "libell_d_acheminement": "LES SIEGES", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89395"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5fca0dfa535f2316125b0adeb7709ebb99473ba", "fields": {"nom_de_la_commune": "SOMMECAISE", "libell_d_acheminement": "SOMMECAISE", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89397"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45a695c0f18a43f19d2ef841ca0a1e880b35a252", "fields": {"nom_de_la_commune": "AMIENS", "libell_d_acheminement": "AMIENS", "code_postal": "80080", "coordonnees_gps": [49.9004650343, 2.29084588963], "code_commune_insee": "80021"}, "geometry": {"type": "Point", "coordinates": [2.29084588963, 49.9004650343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e33478cf2148e93d5e839e2032443a530d1bef80", "fields": {"nom_de_la_commune": "ANDAINVILLE", "libell_d_acheminement": "ANDAINVILLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80022"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46113a77575c597a0940cbbdf62f5078d31fb606", "fields": {"nom_de_la_commune": "ATHIES", "libell_d_acheminement": "ATHIES", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80034"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec5ee7d8368c6607bf674e68f9af66c07b3b743f", "fields": {"nom_de_la_commune": "AUBERCOURT", "libell_d_acheminement": "AUBERCOURT", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80035"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c96dfc592ddea049a4a8abd8f1deda953c7429a2", "fields": {"nom_de_la_commune": "AUTHEUX", "libell_d_acheminement": "AUTHEUX", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80042"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee76f4b2c4b0955ff6de956409bffecdbf257add", "fields": {"nom_de_la_commune": "AUTHUILLE", "libell_d_acheminement": "AUTHUILLE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80045"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adc42b3ea4f63b9d88ff313ce8b6750dff9b95ba", "fields": {"nom_de_la_commune": "AVELESGES", "libell_d_acheminement": "AVELESGES", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80046"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07014888b1dd2120d7f39c0fcd3219b22ceb6cce", "fields": {"nom_de_la_commune": "BAZENTIN", "libell_d_acheminement": "BAZENTIN", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80059"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbc9bc8e840cb9416507bd77a54ca3e9a83badca", "fields": {"nom_de_la_commune": "BEAUCOURT EN SANTERRE", "libell_d_acheminement": "BEAUCOURT EN SANTERRE", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80064"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "368e8659ddb53087ff7944e658695d6cb22e1f58", "fields": {"nom_de_la_commune": "BEAUCOURT SUR L HALLUE", "libell_d_acheminement": "BEAUCOURT SUR L HALLUE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80066"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0d99f4c536dd264da1dde17f769f7390c481ab1", "fields": {"nom_de_la_commune": "BELLANCOURT", "libell_d_acheminement": "BELLANCOURT", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80078"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8456dcdafb5be9b1ecde551c9890bd91306f3b46", "fields": {"nom_de_la_commune": "BELLOY SUR SOMME", "libell_d_acheminement": "BELLOY SUR SOMME", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80082"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4610e39b399e84df15fd749c22714f31239284f9", "fields": {"nom_de_la_commune": "BERMESNIL", "libell_d_acheminement": "BERMESNIL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80084"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "427b272b4946c03403b3d830e2a7097bbbbe9def", "fields": {"nom_de_la_commune": "BERNES", "libell_d_acheminement": "BERNES", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80088"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e590692eed2c7a51876e7dd25c500438ccbdb78f", "fields": {"nom_de_la_commune": "BERNY EN SANTERRE", "libell_d_acheminement": "BERNY EN SANTERRE", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80090"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca47ef71d3308a363063cffc3f37656331ac6ef", "fields": {"nom_de_la_commune": "BONNEVILLE", "libell_d_acheminement": "BONNEVILLE", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80113"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "740e837f01f0815f4b3213c6cc44e2f33ed8c9ae", "fields": {"nom_de_la_commune": "BOUVAINCOURT SUR BRESLE", "libell_d_acheminement": "BOUVAINCOURT SUR BRESLE", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80127"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e3dbfd9b8c127db1aa7d7685fa4a047a66e52da", "fields": {"nom_de_la_commune": "BRAY SUR SOMME", "libell_d_acheminement": "BRAY SUR SOMME", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80136"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8eb1c85b6e9c2aacebbc42429a2b5e1f5feab13", "fields": {"nom_de_la_commune": "BRIQUEMESNIL FLOXICOURT", "libell_d_acheminement": "BRIQUEMESNIL FLOXICOURT", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80142"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eadc33ef313d12e688d8888ac6ff4694ca6e06a0", "fields": {"nom_de_la_commune": "BROUCHY", "libell_d_acheminement": "BROUCHY", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80144"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff4f3fdabc681effd1b22d6a5215fae6758da61", "fields": {"nom_de_la_commune": "BRUCAMPS", "libell_d_acheminement": "BRUCAMPS", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80145"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d18b3deaa004ec5baaaabc9425ac0f3993230a0", "fields": {"nom_de_la_commune": "BUIGNY ST MACLOU", "libell_d_acheminement": "BUIGNY ST MACLOU", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80149"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba50c9eaff64a946fccab92a5e06c1f9b3c074f8", "fields": {"nom_de_la_commune": "BUIRE SUR L ANCRE", "libell_d_acheminement": "BUIRE SUR L ANCRE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80151"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b0944bc9f99e9cb5690e1a91543dbe56748947b", "fields": {"nom_de_la_commune": "BUSSU", "libell_d_acheminement": "BUSSU", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80154"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5ed37905000c0e05a714b76584a89521e65be09", "fields": {"nom_de_la_commune": "BUVERCHY", "libell_d_acheminement": "BUVERCHY", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80158"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48356bcfa8fe8459d379f8bbd677c2ffc726378", "fields": {"nom_de_la_commune": "CAMBRON", "libell_d_acheminement": "CAMBRON", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80163"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7bc95b56edbdcc15437296d21c959c9443f1bf9", "fields": {"nom_de_la_commune": "CAMPS EN AMIENOIS", "libell_d_acheminement": "CAMPS EN AMIENOIS", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80165"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb57057e65fe2b7635359b99032bda17367e8245", "fields": {"nom_de_la_commune": "CANNESSIERES", "libell_d_acheminement": "CANNESSIERES", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80169"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2c015a4f2449af51cc03ea4aebe42b3db696373", "fields": {"nom_de_la_commune": "CANTIGNY", "libell_d_acheminement": "CANTIGNY", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80170"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "535dd8f051a195068e0a32692f338ef649bf2874", "fields": {"nom_de_la_commune": "CAOURS", "libell_d_acheminement": "CAOURS", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80171"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7284a05dc274dcabbe204fcb42a597dd0b0f3fc", "fields": {"nom_de_la_commune": "CARREPUIS", "libell_d_acheminement": "CARREPUIS", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80176"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b829b6bc27367b316d549ab429b678325f38e44", "fields": {"nom_de_la_commune": "CARTIGNY", "libell_d_acheminement": "CARTIGNY", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80177"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4105d383d24358aa2ea6d475b2a39d35b7aa444e", "fields": {"nom_de_la_commune": "CAVILLON", "libell_d_acheminement": "CAVILLON", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80180"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "576a25ce3106dabc350e382a70177f1824d86723", "fields": {"nom_de_la_commune": "CAYEUX SUR MER", "libell_d_acheminement": "CAYEUX SUR MER", "code_postal": "80410", "coordonnees_gps": [50.1763641896, 1.51530937772], "code_commune_insee": "80182"}, "geometry": {"type": "Point", "coordinates": [1.51530937772, 50.1763641896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf30ab04a66384b01ad72c76cf77535e105672e7", "fields": {"nom_de_la_commune": "CERISY BULEUX", "libell_d_acheminement": "CERISY BULEUX", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80183"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29bca891c0a169e22d7b8f1fa00118f4934a2312", "fields": {"nom_de_la_commune": "CERISY", "libell_d_acheminement": "CERISY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80184"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c6314f173c4a932a9adf8eb1d6385cb114f7b6", "fields": {"nom_de_la_commune": "LA CHAVATTE", "libell_d_acheminement": "LA CHAVATTE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80189"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2195c48c8d1d4ef944cc86e927c4c475e180b71", "fields": {"nom_de_la_commune": "CHEPY", "libell_d_acheminement": "CHEPY", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80190"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb040a83dfa76f84fbebb838359325646121e5b4", "fields": {"nom_de_la_commune": "CHIPILLY", "libell_d_acheminement": "CHIPILLY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80192"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c8a36412bd030629b33235ca92c3f5bb24a123", "fields": {"nom_de_la_commune": "CLAIRY SAULCHOIX", "libell_d_acheminement": "CLAIRY SAULCHOIX", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80198"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "636623c0643df757c77bca5656b51a8106e3a79f", "fields": {"nom_de_la_commune": "COMBLES", "libell_d_acheminement": "COMBLES", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80204"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6dbb0333e08e70dd0e6d72d847ea581d0c328047", "fields": {"nom_de_la_commune": "CONTOIRE", "libell_d_acheminement": "CONTOIRE HAMEL", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80209"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cfb7ffda7ae9dbca91da64f67050b7b6e7af85a", "fields": {"nom_de_la_commune": "COULLEMELLE", "libell_d_acheminement": "COULLEMELLE", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80214"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd41b72ce5139e8201d4bc7ca9fc0e9a6b1bf461", "fields": {"nom_de_la_commune": "COURCELLES AU BOIS", "libell_d_acheminement": "COURCELLES AU BOIS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80217"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e65635f1bd47a8d17cc5d3b881011dc205e967e", "fields": {"nom_de_la_commune": "CRAMONT", "libell_d_acheminement": "CRAMONT", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80221"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d133190be17f82fb4ad41360628587d48c49365c", "fields": {"nom_de_la_commune": "CRECY EN PONTHIEU", "libell_d_acheminement": "CRECY EN PONTHIEU", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80222"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa4004175bfcdacb9878cc4de0b7f9fcc544c0e8", "fields": {"code_postal": "80150", "code_commune_insee": "80222", "libell_d_acheminement": "CRECY EN PONTHIEU", "ligne_5": "MARCHEVILLE", "nom_de_la_commune": "CRECY EN PONTHIEU", "coordonnees_gps": [50.2392104009, 1.91827271095]}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a9f586071db41855556cdf8e18f69967f5d541", "fields": {"nom_de_la_commune": "CRESSY OMENCOURT", "libell_d_acheminement": "CRESSY OMENCOURT", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80224"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb4a780506b68603e69b6abf53a9c13eefb466f", "fields": {"nom_de_la_commune": "CROIX MOLIGNEAUX", "libell_d_acheminement": "CROIX MOLIGNEAUX", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80226"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3daac61774cabc901131cdc5c6065a772a3418", "fields": {"nom_de_la_commune": "DERNANCOURT", "libell_d_acheminement": "DERNANCOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80238"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "591b4ceae378f1738be9caeaf40a81a2d44548a8", "fields": {"nom_de_la_commune": "DEVISE", "libell_d_acheminement": "DEVISE", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80239"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16fcd970c679b2a5ebd6d1d9582eab0a2a0803b0", "fields": {"nom_de_la_commune": "DRUCAT", "libell_d_acheminement": "DRUCAT", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80260"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab433a84882dadad59ba61556fc411004d6c97ce", "fields": {"nom_de_la_commune": "ENGLEBELMER", "libell_d_acheminement": "ENGLEBELMER", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80266"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e9f9e52efd6aa37c2000d569052ae1b204528b9", "fields": {"nom_de_la_commune": "EPPEVILLE", "libell_d_acheminement": "EPPEVILLE", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80274"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7f82ed21c05ec888586f815f8eef447c9fd2c04", "fields": {"nom_de_la_commune": "ESSERTAUX", "libell_d_acheminement": "ESSERTAUX", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80285"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2c63223719576d43de2bbd7580eb0331da5ea4a", "fields": {"nom_de_la_commune": "ESTREES LES CRECY", "libell_d_acheminement": "ESTREES LES CRECY", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80290"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "651f740633cb4ad5c2a54659c33cf7c0b1bbb176", "fields": {"nom_de_la_commune": "ETRICOURT MANANCOURT", "libell_d_acheminement": "ETRICOURT MANANCOURT", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80298"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c76ff4e37cc619aaf858cc9ce31d58a103af8e5c", "fields": {"nom_de_la_commune": "LA FALOISE", "libell_d_acheminement": "LA FALOISE", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80299"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50eeb7b9dd703bc8e96ecebfc9e1fc722475b5f7", "fields": {"nom_de_la_commune": "FAVIERES", "libell_d_acheminement": "FAVIERES", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80303"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e22e574105ce6d87e9c3c44f66b896f922947fd6", "fields": {"nom_de_la_commune": "FERRIERES", "libell_d_acheminement": "FERRIERES", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80305"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbaba35ddf220f8ed473fd869419ba397bc4a2e6", "fields": {"nom_de_la_commune": "FEUQUIERES EN VIMEU", "libell_d_acheminement": "FEUQUIERES EN VIMEU", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80308"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed484b7ebe1565baa91faf9a9285e51aa435ea1", "fields": {"nom_de_la_commune": "FLERS SUR NOYE", "libell_d_acheminement": "FLERS SUR NOYE", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80315"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1943becc6bf5947b08b69f517d683fc8edbe00f", "fields": {"nom_de_la_commune": "FLESSELLES", "libell_d_acheminement": "FLESSELLES", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80316"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25d8a51107bb6673909b44e935cfb64a7e94972", "fields": {"nom_de_la_commune": "FONTAINE LES CAPPY", "libell_d_acheminement": "FONTAINE LES CAPPY", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80325"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592f149bc9dbfdfe02142b5b2f0b2b8cbf322dce", "fields": {"nom_de_la_commune": "FONTAINE SUR MAYE", "libell_d_acheminement": "FONTAINE SUR MAYE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80327"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "777d8a86f780f0d61a716194990473afba48cf06", "fields": {"nom_de_la_commune": "FONTAINE SUR SOMME", "libell_d_acheminement": "FONTAINE SUR SOMME", "code_postal": "80510", "coordonnees_gps": [50.0330637089, 1.96398779446], "code_commune_insee": "80328"}, "geometry": {"type": "Point", "coordinates": [1.96398779446, 50.0330637089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7e460328817ff98d14ece190b8eb6f1bce13ec7", "fields": {"nom_de_la_commune": "FOREST MONTIERS", "libell_d_acheminement": "FOREST MONTIERS", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80332"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab63aa6cc871ae5f8eae1374615340ccd21e6251", "fields": {"nom_de_la_commune": "FORT MAHON PLAGE", "libell_d_acheminement": "FORT MAHON PLAGE", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80333"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3752013042630998a458c0744e3e9bdfe8bf44ad", "fields": {"nom_de_la_commune": "FOSSEMANANT", "libell_d_acheminement": "FOSSEMANANT", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80334"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "180a1ddb576ecd7c7e10808ba1f41eb547f82a5c", "fields": {"nom_de_la_commune": "FRAMERVILLE RAINECOURT", "libell_d_acheminement": "FRAMERVILLE RAINECOURT", "code_postal": "80131", "coordonnees_gps": [49.853048301, 2.69339669252], "code_commune_insee": "80342"}, "geometry": {"type": "Point", "coordinates": [2.69339669252, 49.853048301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d117ddc1bfd9ee21181d8dc580a3dbd12ff41bc8", "fields": {"nom_de_la_commune": "FRANLEU", "libell_d_acheminement": "FRANLEU", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80345"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0b75fdbb106d6f730f9e5279e348a6750f84bfc", "fields": {"nom_de_la_commune": "FRANQUEVILLE", "libell_d_acheminement": "FRANQUEVILLE", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80346"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1dd4c168ddc5b7121a2217163e86d88c81e9c98", "fields": {"nom_de_la_commune": "FRANSART", "libell_d_acheminement": "FRANSART", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80347"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41840051b1f2983d246d4f73c9d7c7e90e5cbf8a", "fields": {"nom_de_la_commune": "FRECHENCOURT", "libell_d_acheminement": "FRECHENCOURT", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80351"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0a5d9055efad48ebd019da5bffad07af35ed90c", "fields": {"nom_de_la_commune": "FRIAUCOURT", "libell_d_acheminement": "FRIAUCOURT", "code_postal": "80460", "coordonnees_gps": [50.0980567949, 1.47472776699], "code_commune_insee": "80364"}, "geometry": {"type": "Point", "coordinates": [1.47472776699, 50.0980567949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58cf925dd7e0ac5604b68531cd7704e309f13317", "fields": {"nom_de_la_commune": "FROYELLES", "libell_d_acheminement": "FROYELLES", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80371"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6ab3f8f7fb641ab76355a7c50dd78e31cbe2df", "fields": {"nom_de_la_commune": "GAPENNES", "libell_d_acheminement": "GAPENNES", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80374"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eccae5c15c4bca202d2b4cc77249805c784afa7", "fields": {"nom_de_la_commune": "GORENFLOS", "libell_d_acheminement": "GORENFLOS", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80380"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19291b63287532208b0f7dbd4992899a5c6d47ac", "fields": {"nom_de_la_commune": "GORGES", "libell_d_acheminement": "GORGES", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80381"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96fad4306cddc46e644dce11e9cb39a9c3e7a930", "fields": {"nom_de_la_commune": "GRAND LAVIERS", "libell_d_acheminement": "GRAND LAVIERS", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80385"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b24d011f4239ac1cae6f99299bbf9cc4fd63da4", "fields": {"nom_de_la_commune": "GRATIBUS", "libell_d_acheminement": "GRATIBUS", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80386"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0fa0b088aa282d1a6838634bc85b32a15a97777", "fields": {"nom_de_la_commune": "GUERBIGNY", "libell_d_acheminement": "GUERBIGNY", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80395"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dc035a9d457377c4cd489265055428c2dec48fa", "fields": {"nom_de_la_commune": "GUESCHART", "libell_d_acheminement": "GUESCHART", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80396"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4ca2d56c624a05790609518137816110c1a2ea", "fields": {"nom_de_la_commune": "GUILLEMONT", "libell_d_acheminement": "GUILLEMONT", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80401"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a96756166535619c6486fca232b2113c5cefcb8", "fields": {"nom_de_la_commune": "HALLENCOURT", "libell_d_acheminement": "HALLENCOURT", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80406"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3b1a5eb089cda26b7efa12fa54f37da279d991", "fields": {"nom_de_la_commune": "HALLIVILLERS", "libell_d_acheminement": "HALLIVILLERS", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80407"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681b1177c908472aa8ea7fd3983b425a9d79b44a", "fields": {"nom_de_la_commune": "HANGARD", "libell_d_acheminement": "HANGARD", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80414"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7947aba3e72dedbe767ffa681e7a2e1c8f0ce660", "fields": {"nom_de_la_commune": "HARBONNIERES", "libell_d_acheminement": "HARBONNIERES", "code_postal": "80131", "coordonnees_gps": [49.853048301, 2.69339669252], "code_commune_insee": "80417"}, "geometry": {"type": "Point", "coordinates": [2.69339669252, 49.853048301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0365da89acbde9003caa43052a03b9309ae5cb5", "fields": {"nom_de_la_commune": "HARGICOURT", "libell_d_acheminement": "HARGICOURT", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80419"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80d40ce3aa3c529aa1b5410cc45906333f9ee116", "fields": {"nom_de_la_commune": "HEBECOURT", "libell_d_acheminement": "HEBECOURT", "code_postal": "80680", "coordonnees_gps": [49.8142899245, 2.29952854065], "code_commune_insee": "80424"}, "geometry": {"type": "Point", "coordinates": [2.29952854065, 49.8142899245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad903a3364c951c84677406ac5a5999a4b485121", "fields": {"nom_de_la_commune": "HEILLY", "libell_d_acheminement": "HEILLY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80426"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbbe4cee2bcdcf0e9895d352a1137a85b9a49bfa", "fields": {"nom_de_la_commune": "HEM HARDINVAL", "libell_d_acheminement": "HEM HARDINVAL", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80427"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6e795552252780291b2db0bba4d0c7c4564b4ca", "fields": {"nom_de_la_commune": "HEM MONACU", "libell_d_acheminement": "HEM MONACU", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80428"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4d1f805199913669b746deb54dece2c7ad3ffeb", "fields": {"nom_de_la_commune": "HENENCOURT", "libell_d_acheminement": "HENENCOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80429"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "068d8b7cd4cfde2cb7a5923a170af604de695430", "fields": {"nom_de_la_commune": "HESCAMPS", "libell_d_acheminement": "HESCAMPS", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80436"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c60bab824379955eec0c7432536f4032c37941", "fields": {"code_postal": "80290", "code_commune_insee": "80436", "libell_d_acheminement": "HESCAMPS", "ligne_5": "FRETTEMOLLE", "nom_de_la_commune": "HESCAMPS", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5012aaac00e19ed2fd7db2c1b672b755908e9c0b", "fields": {"nom_de_la_commune": "HUCHENNEVILLE", "libell_d_acheminement": "HUCHENNEVILLE", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80444"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a4ab06fd7a881daf8db2cd6ae02b817afd2ea98", "fields": {"nom_de_la_commune": "HUPPY", "libell_d_acheminement": "HUPPY", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80446"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6890c4b3c0921b380a5578a04f832420fe8410cc", "fields": {"nom_de_la_commune": "IGNAUCOURT", "libell_d_acheminement": "IGNAUCOURT", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80449"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dabba0a5f4c4282ec824625d6384efc8d1b7831", "fields": {"nom_de_la_commune": "IRLES", "libell_d_acheminement": "IRLES", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80451"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa192db45daec9be903c967f07468e6711a1c4d0", "fields": {"nom_de_la_commune": "ROSIERES SUR MANCE", "libell_d_acheminement": "ROSIERES SUR MANCE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70454"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be7e271e3ce521d9fc6a54ec73a609c1d92d740", "fields": {"nom_de_la_commune": "ST LOUP NANTOUARD", "libell_d_acheminement": "ST LOUP NANTOUARD", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70466"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a63dcd5d377f918ade973a26bc55a3cff4f6269", "fields": {"nom_de_la_commune": "STE MARIE EN CHANOIS", "libell_d_acheminement": "STE MARIE EN CHANOIS", "code_postal": "70310", "coordonnees_gps": [47.8636608805, 6.5903909277], "code_commune_insee": "70469"}, "geometry": {"type": "Point", "coordinates": [6.5903909277, 47.8636608805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45df83a6dd337caacba46b628ced7ec0cf4e418c", "fields": {"nom_de_la_commune": "SAPONCOURT", "libell_d_acheminement": "SAPONCOURT", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70476"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc221d80bb894ef90150b04985e257ea45d04450", "fields": {"code_postal": "70400", "code_commune_insee": "70477", "libell_d_acheminement": "SAULNOT", "ligne_5": "GONVILLARS", "nom_de_la_commune": "SAULNOT", "coordonnees_gps": [47.6008561434, 6.6927201573]}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d1de8af3071ed31fdda0297a156cca8687e3910", "fields": {"nom_de_la_commune": "SCEY SUR SAONE ET ST ALBIN", "libell_d_acheminement": "SCEY SUR SAONE ET ST ALBIN", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70482"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a84b66378ff6b79e83669c3e7aba19a9a1c18ad", "fields": {"nom_de_la_commune": "SELLES", "libell_d_acheminement": "SELLES", "code_postal": "70210", "coordonnees_gps": [47.9304958501, 6.10069195539], "code_commune_insee": "70485"}, "geometry": {"type": "Point", "coordinates": [6.10069195539, 47.9304958501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca727580b842acbfdf02f8c95389d88059762cfb", "fields": {"nom_de_la_commune": "SEMMADON", "libell_d_acheminement": "SEMMADON", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70486"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab99af6b6c264895b1affc42cd524767ffd5f6e4", "fields": {"nom_de_la_commune": "SENONCOURT", "libell_d_acheminement": "SENONCOURT", "code_postal": "70160", "coordonnees_gps": [47.7821357866, 6.09657961176], "code_commune_insee": "70488"}, "geometry": {"type": "Point", "coordinates": [6.09657961176, 47.7821357866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373abf1655a3de7764f60b73a1315853813e3814", "fields": {"nom_de_la_commune": "SERVANCE", "libell_d_acheminement": "SERVANCE", "code_postal": "70440", "coordonnees_gps": [47.8263854039, 6.71661809603], "code_commune_insee": "70489"}, "geometry": {"type": "Point", "coordinates": [6.71661809603, 47.8263854039]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1ab4382f6f562b6182d494e1aa2e275a955e772", "fields": {"nom_de_la_commune": "SOING CUBRY CHARENTENAY", "libell_d_acheminement": "SOING CUBRY CHARENTENAY", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70492"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a896f334ef6c0f251e25c87090c6beeb64b027b2", "fields": {"code_postal": "70130", "code_commune_insee": "70492", "libell_d_acheminement": "SOING CUBRY CHARENTENAY", "ligne_5": "CHARENTENAY", "nom_de_la_commune": "SOING CUBRY CHARENTENAY", "coordonnees_gps": [47.5459896831, 5.86128799053]}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe29a5ffe815809b5e1d5dc5de4bba7b47ae9f88", "fields": {"code_postal": "70130", "code_commune_insee": "70492", "libell_d_acheminement": "SOING CUBRY CHARENTENAY", "ligne_5": "CUBRY LES SOING", "nom_de_la_commune": "SOING CUBRY CHARENTENAY", "coordonnees_gps": [47.5459896831, 5.86128799053]}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "024ed9f429a198a6fa58d4d2d10d940fa2a09b2e", "fields": {"nom_de_la_commune": "SORANS LES BREUREY", "libell_d_acheminement": "SORANS LES BREUREY", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70493"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84a830886e21925d43463a8ddcee0d1127dcc05e", "fields": {"nom_de_la_commune": "TRAITIEFONTAINE", "libell_d_acheminement": "TRAITIEFONTAINE", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70503"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f065a83f617fa5bf687a5b1c21727d43e7e51b3", "fields": {"nom_de_la_commune": "TRAVES", "libell_d_acheminement": "TRAVES", "code_postal": "70360", "coordonnees_gps": [47.6495593751, 5.96829724146], "code_commune_insee": "70504"}, "geometry": {"type": "Point", "coordinates": [5.96829724146, 47.6495593751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21cedc8d327a6fa01423012ab5e6850b3395d7c5", "fields": {"nom_de_la_commune": "TREMOINS", "libell_d_acheminement": "TREMOINS", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70506"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9d6d6bf5b223a5f941030c2c4bf5e4703b8d167", "fields": {"nom_de_la_commune": "VALAY", "libell_d_acheminement": "VALAY", "code_postal": "70140", "coordonnees_gps": [47.3157094968, 5.59575332821], "code_commune_insee": "70514"}, "geometry": {"type": "Point", "coordinates": [5.59575332821, 47.3157094968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a251f16b9aabd2e70534c8511cf3aa4c87951b4f", "fields": {"nom_de_la_commune": "VALLEROIS LORIOZ", "libell_d_acheminement": "VALLEROIS LORIOZ", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70517"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e00820268d9324fee61e3bf80725dd4bb2b8f35", "fields": {"nom_de_la_commune": "VANDELANS", "libell_d_acheminement": "VANDELANS", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70519"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f512cfc41e6fce64bffc5fd09016d34443ce2f7e", "fields": {"nom_de_la_commune": "VANTOUX ET LONGEVELLE", "libell_d_acheminement": "VANTOUX ET LONGEVELLE", "code_postal": "70700", "coordonnees_gps": [47.4220455151, 5.83192580295], "code_commune_insee": "70521"}, "geometry": {"type": "Point", "coordinates": [5.83192580295, 47.4220455151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d051bcf498d90c7143a1256e401bd885ba4d0966", "fields": {"nom_de_la_commune": "VELET", "libell_d_acheminement": "VELET", "code_postal": "70100", "coordonnees_gps": [47.4450284828, 5.5835389303], "code_commune_insee": "70529"}, "geometry": {"type": "Point", "coordinates": [5.5835389303, 47.4450284828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab53ffa77a0a017de299438bc11fa8b81a0d8be", "fields": {"nom_de_la_commune": "VERNOIS SUR MANCE", "libell_d_acheminement": "VERNOIS SUR MANCE", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70548"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31ad4f96a9a2c1dc8af0b4c798f17717f0904d64", "fields": {"nom_de_la_commune": "LA VERNOTTE", "libell_d_acheminement": "LA VERNOTTE", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70549"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0869b9e34d5cc4ec31fde6dd6fb927d473ad9246", "fields": {"nom_de_la_commune": "VILLARS LE PAUTEL", "libell_d_acheminement": "VILLARS LE PAUTEL", "code_postal": "70500", "coordonnees_gps": [47.8418489668, 5.8916124162], "code_commune_insee": "70554"}, "geometry": {"type": "Point", "coordinates": [5.8916124162, 47.8418489668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02bf60199fd232fb979b681e1550a958d4f4fa65", "fields": {"nom_de_la_commune": "VILLERS BOUTON", "libell_d_acheminement": "VILLERS BOUTON", "code_postal": "70190", "coordonnees_gps": [47.4343544936, 6.05247846774], "code_commune_insee": "70560"}, "geometry": {"type": "Point", "coordinates": [6.05247846774, 47.4343544936]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb32345bec25df09e7abbb4c86dd51faabc73ec3", "fields": {"nom_de_la_commune": "VILLERS LE SEC", "libell_d_acheminement": "VILLERS LE SEC", "code_postal": "70000", "coordonnees_gps": [47.6011380255, 6.15589374132], "code_commune_insee": "70563"}, "geometry": {"type": "Point", "coordinates": [6.15589374132, 47.6011380255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfceabf7781864c5843e1e9ffeb16ef92bb4d2ca", "fields": {"nom_de_la_commune": "VILORY", "libell_d_acheminement": "VILORY", "code_postal": "70240", "coordonnees_gps": [47.6867941228, 6.30222292395], "code_commune_insee": "70569"}, "geometry": {"type": "Point", "coordinates": [6.30222292395, 47.6867941228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2658fc9b157970c54032817be3fec8577c2b0dd", "fields": {"nom_de_la_commune": "VYANS LE VAL", "libell_d_acheminement": "VYANS LE VAL", "code_postal": "70400", "coordonnees_gps": [47.6008561434, 6.6927201573], "code_commune_insee": "70579"}, "geometry": {"type": "Point", "coordinates": [6.6927201573, 47.6008561434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25dc0f5ae3ac04683c226253c23d84d2dbb22bbf", "fields": {"nom_de_la_commune": "VY LE FERROUX", "libell_d_acheminement": "VY LE FERROUX", "code_postal": "70130", "coordonnees_gps": [47.5459896831, 5.86128799053], "code_commune_insee": "70580"}, "geometry": {"type": "Point", "coordinates": [5.86128799053, 47.5459896831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee11b13f759c025b743031678e7b8accd442bbb3", "fields": {"nom_de_la_commune": "VY LES LURE", "libell_d_acheminement": "VY LES LURE", "code_postal": "70200", "coordonnees_gps": [47.6775063744, 6.50353320831], "code_commune_insee": "70581"}, "geometry": {"type": "Point", "coordinates": [6.50353320831, 47.6775063744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7a6f3abca65f122ed099e5c28450337583343e2", "fields": {"nom_de_la_commune": "VY LES RUPT", "libell_d_acheminement": "VY LES RUPT", "code_postal": "70120", "coordonnees_gps": [47.6952639398, 5.81680839597], "code_commune_insee": "70582"}, "geometry": {"type": "Point", "coordinates": [5.81680839597, 47.6952639398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6dd025b9d0858bfec1ed901f27e324564cc82c1", "fields": {"nom_de_la_commune": "ALUZE", "libell_d_acheminement": "ALUZE", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71005"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a0d1711b983cfa4a013f0cd1a3b73b6ed15080", "fields": {"nom_de_la_commune": "BANTANGES", "libell_d_acheminement": "BANTANGES", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71018"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a71daaa5ec1cd85a79fd1de0798094ee50505532", "fields": {"nom_de_la_commune": "BELLEVESVRE", "libell_d_acheminement": "BELLEVESVRE", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71029"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01fc3eb09c81264554e2414cba028f1242c85916", "fields": {"nom_de_la_commune": "BERGESSERIN", "libell_d_acheminement": "BERGESSERIN", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71030"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "150e36050bffae51a60861a67efe7b4eb3c26908", "fields": {"code_postal": "71250", "code_commune_insee": "71030", "libell_d_acheminement": "BERGESSERIN", "ligne_5": "BERGESSERIN LA CHATELAINE", "nom_de_la_commune": "BERGESSERIN", "coordonnees_gps": [46.4606602983, 4.62757728392]}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73b32bc98a0acd878f852abd77ead1d3f9e4d100", "fields": {"nom_de_la_commune": "BERZE LA VILLE", "libell_d_acheminement": "BERZE LA VILLE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71032"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2993867d9729f9dc85b620816b6b604a33c7b537", "fields": {"nom_de_la_commune": "BISSY SUR FLEY", "libell_d_acheminement": "BISSY SUR FLEY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71037"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f4079905ce1288526682fea86ddd8e8d7a7a5f0", "fields": {"nom_de_la_commune": "BOURG LE COMTE", "libell_d_acheminement": "BOURG LE COMTE", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71048"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d7754306a16a98b1ab83cfa32c460949ce4078f", "fields": {"nom_de_la_commune": "BRIENNE", "libell_d_acheminement": "BRIENNE", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71061"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db73e645026d3ba06cd0ebd87438e91e52eb3b0c", "fields": {"nom_de_la_commune": "CERON", "libell_d_acheminement": "CERON", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71071"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d962351dc3cf1108a924a4d75afd3678d279482b", "fields": {"nom_de_la_commune": "CHAINTRE", "libell_d_acheminement": "CHAINTRE", "code_postal": "71570", "coordonnees_gps": [46.2281804382, 4.74594921623], "code_commune_insee": "71074"}, "geometry": {"type": "Point", "coordinates": [4.74594921623, 46.2281804382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f1dfddedd82e9b010d12abac9ab6ac633b652f9", "fields": {"nom_de_la_commune": "CHAMBILLY", "libell_d_acheminement": "CHAMBILLY", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71077"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4323cd479d193b8e18be36c14f401131630c13e8", "fields": {"nom_de_la_commune": "CHAMPAGNY SOUS UXELLES", "libell_d_acheminement": "CHAMPAGNY SOUS UXELLES", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71080"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79b6353eb0196c4b43bfae6270d0780a5c1a91b8", "fields": {"nom_de_la_commune": "LA CHAPELLE ST SAUVEUR", "libell_d_acheminement": "LA CHAPELLE ST SAUVEUR", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71093"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa40eb76cd7c12443c28fffd3ab15c25bcadb0ee", "fields": {"nom_de_la_commune": "LA CHAPELLE THECLE", "libell_d_acheminement": "LA CHAPELLE THECLE", "code_postal": "71470", "coordonnees_gps": [46.5407527997, 5.13778374719], "code_commune_insee": "71097"}, "geometry": {"type": "Point", "coordinates": [5.13778374719, 46.5407527997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33570dfe1bd55f3994f37f3b993f47207d8172c1", "fields": {"nom_de_la_commune": "LA CHARMEE", "libell_d_acheminement": "LA CHARMEE", "code_postal": "71100", "coordonnees_gps": [46.753921991, 4.82932300465], "code_commune_insee": "71102"}, "geometry": {"type": "Point", "coordinates": [4.82932300465, 46.753921991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41125b73fc60638c47eeabf7fc0e08a12b9eb361", "fields": {"nom_de_la_commune": "CHAROLLES", "libell_d_acheminement": "CHAROLLES", "code_postal": "71120", "coordonnees_gps": [46.4335377061, 4.29626502013], "code_commune_insee": "71106"}, "geometry": {"type": "Point", "coordinates": [4.29626502013, 46.4335377061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c89c55b8be34da7305aeedb39b1103f436eec23e", "fields": {"nom_de_la_commune": "CHATEL MORON", "libell_d_acheminement": "CHATEL MORON", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71115"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bdce77e76772cd7f3fafebaebd6054acc67e9bf", "fields": {"nom_de_la_commune": "CHATENAY", "libell_d_acheminement": "CHATENAY", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71116"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "154e6faf6967b9333e73a4575033cd0b679ac20f", "fields": {"nom_de_la_commune": "CHATENOY LE ROYAL", "libell_d_acheminement": "CHATENOY LE ROYAL", "code_postal": "71880", "coordonnees_gps": [46.7885699817, 4.80554300437], "code_commune_insee": "71118"}, "geometry": {"type": "Point", "coordinates": [4.80554300437, 46.7885699817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d930dfd70e90f067247dc81cef16ef985a80ee", "fields": {"nom_de_la_commune": "CHENAY LE CHATEL", "libell_d_acheminement": "CHENAY LE CHATEL", "code_postal": "71340", "coordonnees_gps": [46.211474132, 4.04415638595], "code_commune_insee": "71123"}, "geometry": {"type": "Point", "coordinates": [4.04415638595, 46.211474132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4e1d493bf19d9052adb0a257e85d5dc07259f6f", "fields": {"nom_de_la_commune": "CHEVAGNY LES CHEVRIERES", "libell_d_acheminement": "CHEVAGNY LES CHEVRIERES", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71126"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94c079d9c182ee756ac43cfad2624e074e647ffc", "fields": {"nom_de_la_commune": "CHISSEY EN MORVAN", "libell_d_acheminement": "CHISSEY EN MORVAN", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71129"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6098f07950a3dc83f7033751b4d8bccbe15a2f80", "fields": {"nom_de_la_commune": "CHISSEY LES MACON", "libell_d_acheminement": "CHISSEY LES MACON", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71130"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f77b5d447a1971ccf9af7d1c32ea7a4ae25b34b7", "fields": {"nom_de_la_commune": "LA CLAYETTE", "libell_d_acheminement": "LA CLAYETTE", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71133"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90c67d8df932417f3310cbd5b924200c2e03fcec", "fields": {"nom_de_la_commune": "CLUNY", "libell_d_acheminement": "CLUNY", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71137"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b6a5db4ee8548a7f62f1bbf9fd065d4d18c473c", "fields": {"nom_de_la_commune": "CORDESSE", "libell_d_acheminement": "CORDESSE", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71144"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fe466a09e98a71561fa803836f1431bf7b385c2", "fields": {"nom_de_la_commune": "CORTEVAIX", "libell_d_acheminement": "CORTEVAIX", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71147"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0645bd77bc9cd8f18e3ae72538d16051dded9b5d", "fields": {"nom_de_la_commune": "CRESSY SUR SOMME", "libell_d_acheminement": "CRESSY SUR SOMME", "code_postal": "71760", "coordonnees_gps": [46.6998808869, 3.94523218405], "code_commune_insee": "71152"}, "geometry": {"type": "Point", "coordinates": [3.94523218405, 46.6998808869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23e0f615b8dbf1345c062f0f8af4149c7a8db27f", "fields": {"nom_de_la_commune": "LE CREUSOT", "libell_d_acheminement": "LE CREUSOT", "code_postal": "71200", "coordonnees_gps": [46.8208702724, 4.42565613274], "code_commune_insee": "71153"}, "geometry": {"type": "Point", "coordinates": [4.42565613274, 46.8208702724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65849a1746babdf0d19e6e73d3161ac19f8a34f0", "fields": {"nom_de_la_commune": "CRUZILLE", "libell_d_acheminement": "CRUZILLE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71156"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b66acac3adc2d99c0b1fc8d63e46e7265b7d4bd", "fields": {"nom_de_la_commune": "CUISERY", "libell_d_acheminement": "CUISERY", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71158"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703feeb8c320f71fb2547f11375d8cbf4f23ece9", "fields": {"nom_de_la_commune": "CULLES LES ROCHES", "libell_d_acheminement": "CULLES LES ROCHES", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71159"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f39dec1d9d0906ed5eab3d2991e55fea309775", "fields": {"nom_de_la_commune": "CURDIN", "libell_d_acheminement": "CURDIN", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71161"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5d9accf5e7f2ef82391eec05afffe5daaaf01bc", "fields": {"nom_de_la_commune": "DAMEREY", "libell_d_acheminement": "DAMEREY", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71167"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f231f29024c01c42eca14cc89f297df4107090", "fields": {"nom_de_la_commune": "DAMPIERRE EN BRESSE", "libell_d_acheminement": "DAMPIERRE EN BRESSE", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71168"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52fe88437a169ba26dc28b5f6be5e9fbf740424a", "fields": {"nom_de_la_commune": "DAVAYE", "libell_d_acheminement": "DAVAYE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71169"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b03d9058de3a582860eb9eaed19d174b444ddd", "fields": {"nom_de_la_commune": "DEMIGNY", "libell_d_acheminement": "DEMIGNY", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71170"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "024eeea526e631d5771e883e58dd81ee63854a8f", "fields": {"nom_de_la_commune": "DEZIZE LES MARANGES", "libell_d_acheminement": "DEZIZE LES MARANGES", "code_postal": "71150", "coordonnees_gps": [46.8899623653, 4.7691212815], "code_commune_insee": "71174"}, "geometry": {"type": "Point", "coordinates": [4.7691212815, 46.8899623653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89131efe8137b452de7d29195800c96f9f450f13", "fields": {"nom_de_la_commune": "DOMPIERRE LES ORMES", "libell_d_acheminement": "DOMPIERRE LES ORMES", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71178"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "255be1ff0f1af61953e6b7a3574a145a2e6ca66a", "fields": {"code_postal": "71520", "code_commune_insee": "71178", "libell_d_acheminement": "DOMPIERRE LES ORMES", "ligne_5": "MEULIN", "nom_de_la_commune": "DOMPIERRE LES ORMES", "coordonnees_gps": [46.3367670809, 4.52830996863]}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5317f5d03d7a01c11a114f1598e8ac7f4372b1f", "fields": {"nom_de_la_commune": "DONZY LE NATIONAL", "libell_d_acheminement": "DONZY LE NATIONAL", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71180"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ad60a6178b724d697eafbedf64e5d31bf7c730", "fields": {"nom_de_la_commune": "DONZY LE PERTUIS", "libell_d_acheminement": "DONZY LE PERTUIS", "code_postal": "71250", "coordonnees_gps": [46.4606602983, 4.62757728392], "code_commune_insee": "71181"}, "geometry": {"type": "Point", "coordinates": [4.62757728392, 46.4606602983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e9a485d58049d4ee0c242d65ad73e21ebbf3f4", "fields": {"nom_de_la_commune": "DRACY LE FORT", "libell_d_acheminement": "DRACY LE FORT", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71182"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a587f9796653b81332b422a1dd79d997f333f64", "fields": {"nom_de_la_commune": "DRACY LES COUCHES", "libell_d_acheminement": "DRACY LES COUCHES", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71183"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af185830d5e23b68d992856ac861fe89e0375bef", "fields": {"nom_de_la_commune": "ECUELLES", "libell_d_acheminement": "ECUELLES", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71186"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92f555e391109a578f30cbc8f878810a6e2b9feb", "fields": {"nom_de_la_commune": "EPERTULLY", "libell_d_acheminement": "EPERTULLY", "code_postal": "71360", "coordonnees_gps": [46.9859754848, 4.4923679913], "code_commune_insee": "71188"}, "geometry": {"type": "Point", "coordinates": [4.4923679913, 46.9859754848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ae3194c93e27d3c988de92ea92a6c55dcc996c1", "fields": {"nom_de_la_commune": "FLEY", "libell_d_acheminement": "FLEY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71201"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602b93d84f8e88514d60a89030cdbfff9d39e112", "fields": {"nom_de_la_commune": "FRANGY EN BRESSE", "libell_d_acheminement": "FRANGY EN BRESSE", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71205"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c01274d0b179ee6f9d72daf3b76f6b005ca0f71e", "fields": {"nom_de_la_commune": "FRONTENARD", "libell_d_acheminement": "FRONTENARD", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71208"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c8e5730e3afcacfe93afba4992e118ed6146af", "fields": {"nom_de_la_commune": "GENOUILLY", "libell_d_acheminement": "GENOUILLY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71214"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2b0452ae8581a6fc1ea2aea43222142ababf46", "fields": {"nom_de_la_commune": "GERGY", "libell_d_acheminement": "GERGY", "code_postal": "71590", "coordonnees_gps": [46.8788694225, 4.93402646483], "code_commune_insee": "71215"}, "geometry": {"type": "Point", "coordinates": [4.93402646483, 46.8788694225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52f516fb9235adca98bb58e02ae8ce40db10dda1", "fields": {"nom_de_la_commune": "GERMAGNY", "libell_d_acheminement": "GERMAGNY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71216"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dbbe86c9f3362b995f52372c93122def8c63057", "fields": {"nom_de_la_commune": "GIGNY SUR SAONE", "libell_d_acheminement": "GIGNY SUR SAONE", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71219"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e1604d48e51d6ecf67a8c5fbbfbd890b465b19a", "fields": {"nom_de_la_commune": "GREVILLY", "libell_d_acheminement": "GREVILLY", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71226"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e31d7f86518bc6ea1b5ead5c87d8e3a1f9c25494", "fields": {"nom_de_la_commune": "HUILLY SUR SEILLE", "libell_d_acheminement": "HUILLY SUR SEILLE", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71234"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc44e81305c4fb03d346560ec2a06c4f347dbb3", "fields": {"nom_de_la_commune": "LACROST", "libell_d_acheminement": "LACROST", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71248"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccfd156c7891c0f47ec17ad11aa2bf1b92547bc1", "fields": {"code_postal": "71500", "code_commune_insee": "71263", "libell_d_acheminement": "LOUHANS", "ligne_5": "CHATEAURENAUD", "nom_de_la_commune": "LOUHANS", "coordonnees_gps": [46.6399038346, 5.22168124101]}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b052be87b5ff0f1e2a57503bce29dc35dea5aae1", "fields": {"code_postal": "71000", "code_commune_insee": "71270", "libell_d_acheminement": "MACON", "ligne_5": "LOCHE", "nom_de_la_commune": "MACON", "coordonnees_gps": [46.3175504743, 4.81977288125]}, "geometry": {"type": "Point", "coordinates": [4.81977288125, 46.3175504743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c643b34b6c6378ae20d5e189325c55cfb6d9a208", "fields": {"nom_de_la_commune": "MALTAT", "libell_d_acheminement": "MALTAT", "code_postal": "71140", "coordonnees_gps": [46.6538141146, 3.76925804598], "code_commune_insee": "71273"}, "geometry": {"type": "Point", "coordinates": [3.76925804598, 46.6538141146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f22ecbb5b9406b1f5168dba7fedf89b20fc32f", "fields": {"code_postal": "71220", "code_commune_insee": "71279", "libell_d_acheminement": "LE ROUSSET MARIZY", "ligne_5": "MARIZY", "nom_de_la_commune": "LE ROUSSET MARIZY", "coordonnees_gps": [46.4917423764, 4.43217403494]}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56a035d017ae84e06660f2c0e8c8c81ba5a87c53", "fields": {"nom_de_la_commune": "MARTIGNY LE COMTE", "libell_d_acheminement": "MARTIGNY LE COMTE", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71285"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d83355d499bedca61d357270509c6cec447933a", "fields": {"code_postal": "71640", "code_commune_insee": "71294", "libell_d_acheminement": "MERCUREY", "ligne_5": "BOURGNEUF VAL D OR", "nom_de_la_commune": "MERCUREY", "coordonnees_gps": [46.7976011118, 4.72754976033]}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3aa9ccf19e86461628438d4debc6723d14e9574", "fields": {"nom_de_la_commune": "MONTCEAU LES MINES", "libell_d_acheminement": "MONTCEAU LES MINES", "code_postal": "71300", "coordonnees_gps": [46.6732150919, 4.39767167499], "code_commune_insee": "71306"}, "geometry": {"type": "Point", "coordinates": [4.39767167499, 46.6732150919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6c8cd90fba31c588513b4dd72ac93810dad83e8", "fields": {"nom_de_la_commune": "MONTJAY", "libell_d_acheminement": "MONTJAY", "code_postal": "71310", "coordonnees_gps": [46.8203044674, 5.21720994754], "code_commune_insee": "71314"}, "geometry": {"type": "Point", "coordinates": [5.21720994754, 46.8203044674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa749b327fec8f4c63b01d51a3fa795fa88e7ab", "fields": {"nom_de_la_commune": "MONTMELARD", "libell_d_acheminement": "MONTMELARD", "code_postal": "71520", "coordonnees_gps": [46.3367670809, 4.52830996863], "code_commune_insee": "71316"}, "geometry": {"type": "Point", "coordinates": [4.52830996863, 46.3367670809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be343674d0270198d26a53f86644d175539b4a47", "fields": {"nom_de_la_commune": "MONT ST VINCENT", "libell_d_acheminement": "MONT ST VINCENT", "code_postal": "71300", "coordonnees_gps": [46.6732150919, 4.39767167499], "code_commune_insee": "71320"}, "geometry": {"type": "Point", "coordinates": [4.39767167499, 46.6732150919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d9138c9e53d1bfe9848bd41a04c85bb6b0717c6", "fields": {"nom_de_la_commune": "MOROGES", "libell_d_acheminement": "MOROGES", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71324"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09596ca4e26966e9ac4e9336bc734b946de3e5f0", "fields": {"nom_de_la_commune": "FONTENAY PRES CHABLIS", "libell_d_acheminement": "FONTENAY PRES CHABLIS", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89175"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc16960ba39fc8a837bf3ee12778a53a61f7f0b2", "fields": {"nom_de_la_commune": "FONTENAY PRES VEZELAY", "libell_d_acheminement": "FONTENAY PRES VEZELAY", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89176"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e40a97aca627c783ab4efa635bfde573b61bfd", "fields": {"nom_de_la_commune": "GERMIGNY", "libell_d_acheminement": "GERMIGNY", "code_postal": "89600", "coordonnees_gps": [47.9775250716, 3.71821754522], "code_commune_insee": "89186"}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc39bdcf95607a93861ce14e1e7e223725aa1343", "fields": {"nom_de_la_commune": "GIGNY", "libell_d_acheminement": "GIGNY", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89187"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7728426a4ac4461b07d355ff1aa61835c44cfb85", "fields": {"nom_de_la_commune": "GIROLLES", "libell_d_acheminement": "GIROLLES", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89188"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "053bb3375830ba821bfece00ce1cc89e90c182ad", "fields": {"nom_de_la_commune": "GIVRY", "libell_d_acheminement": "GIVRY", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89190"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0c64e8597963dc477afeec83a56dc8ab87dd8e0", "fields": {"nom_de_la_commune": "GRON", "libell_d_acheminement": "GRON", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89195"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87ef23cfa8af582ddd777ae45b13d68fab7107bb", "fields": {"nom_de_la_commune": "JAULGES", "libell_d_acheminement": "JAULGES", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89205"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "993fd08e065559c0a358b38380873a7167eb1c28", "fields": {"nom_de_la_commune": "LAIN", "libell_d_acheminement": "LAIN", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89215"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb3753838eb3c07f11fbea86c06dfdc06e18849", "fields": {"nom_de_la_commune": "LIGNY LE CHATEL", "libell_d_acheminement": "LIGNY LE CHATEL", "code_postal": "89144", "coordonnees_gps": [47.9141574217, 3.77517476311], "code_commune_insee": "89227"}, "geometry": {"type": "Point", "coordinates": [3.77517476311, 47.9141574217]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcf24b350d1e669303681e56972968b340835b6c", "fields": {"nom_de_la_commune": "MAILLY LA VILLE", "libell_d_acheminement": "MAILLY LA VILLE", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89237"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fca3e276c75d1790ba25fef84c8d940c9386319c", "fields": {"nom_de_la_commune": "MAILLY LE CHATEAU", "libell_d_acheminement": "MAILLY LE CHATEAU", "code_postal": "89660", "coordonnees_gps": [47.537208576, 3.64176971404], "code_commune_insee": "89238"}, "geometry": {"type": "Point", "coordinates": [3.64176971404, 47.537208576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd2616bbe271b2a8123e01245839b7a229eb0f9b", "fields": {"nom_de_la_commune": "MARSANGY", "libell_d_acheminement": "MARSANGY", "code_postal": "89500", "coordonnees_gps": [48.0862602886, 3.30157778587], "code_commune_insee": "89245"}, "geometry": {"type": "Point", "coordinates": [3.30157778587, 48.0862602886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c9b272408705d14a17aac98b1fde69a63cd664", "fields": {"nom_de_la_commune": "MENADES", "libell_d_acheminement": "MENADES", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89248"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4049e3e8607d99b09d4cc82a763aa7e79aca4646", "fields": {"nom_de_la_commune": "MERCY", "libell_d_acheminement": "MERCY", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89249"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb6b51b9cfc7da0128443ee0c60a416e2591271", "fields": {"nom_de_la_commune": "MERRY LA VALLEE", "libell_d_acheminement": "MERRY LA VALLEE", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89251"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88f66339cbeed2dd9b416ec4668876cbe380e56e", "fields": {"nom_de_la_commune": "NOE", "libell_d_acheminement": "NOE", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89278"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb5d47f7c62515e6357c294aeadad5640c45d4b", "fields": {"nom_de_la_commune": "PAILLY", "libell_d_acheminement": "PAILLY", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89285"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "786fc54478c29d5936fdcf5a334011b79ea79891", "fields": {"nom_de_la_commune": "PARON", "libell_d_acheminement": "PARON", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89287"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ebb3cd0fad41a10fba7fa7396abfdf1435f717b", "fields": {"nom_de_la_commune": "PAROY EN OTHE", "libell_d_acheminement": "PAROY EN OTHE", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89288"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f202c39463d82b4ba59d3e143ab72dc904bcc4", "fields": {"nom_de_la_commune": "PERRIGNY SUR ARMANCON", "libell_d_acheminement": "PERRIGNY SUR ARMANCON", "code_postal": "89390", "coordonnees_gps": [47.70341613, 4.2240121649], "code_commune_insee": "89296"}, "geometry": {"type": "Point", "coordinates": [4.2240121649, 47.70341613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2613511b1c595545e75fca7d7b5d0f34663ee336", "fields": {"nom_de_la_commune": "PIERRE PERTHUIS", "libell_d_acheminement": "PIERRE PERTHUIS", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89297"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f7236262e5300c6c1a2215ede7470b6d007a384", "fields": {"nom_de_la_commune": "PISY", "libell_d_acheminement": "PISY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89300"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4b594e17387f7236c697cad97e3d5bf696af5af", "fields": {"nom_de_la_commune": "PREGILBERT", "libell_d_acheminement": "PREGILBERT", "code_postal": "89460", "coordonnees_gps": [47.6637745179, 3.68045501565], "code_commune_insee": "89314"}, "geometry": {"type": "Point", "coordinates": [3.68045501565, 47.6637745179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a06f348c308e1ab21ad08acb4e22a71fbd2a6f02", "fields": {"nom_de_la_commune": "PREHY", "libell_d_acheminement": "PREHY", "code_postal": "89800", "coordonnees_gps": [47.7904940717, 3.79065013362], "code_commune_insee": "89315"}, "geometry": {"type": "Point", "coordinates": [3.79065013362, 47.7904940717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da1fe4fb87d762415c0507b4b401d38a5621dcf9", "fields": {"nom_de_la_commune": "ROGNY LES SEPT ECLUSES", "libell_d_acheminement": "ROGNY LES SEPT ECLUSES", "code_postal": "89220", "coordonnees_gps": [47.7194478698, 2.95753192292], "code_commune_insee": "89324"}, "geometry": {"type": "Point", "coordinates": [2.95753192292, 47.7194478698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf0bccc9fadc50233425c591708754d507522609", "fields": {"nom_de_la_commune": "RONCHERES", "libell_d_acheminement": "RONCHERES", "code_postal": "89170", "coordonnees_gps": [47.6325308017, 3.04724624104], "code_commune_insee": "89325"}, "geometry": {"type": "Point", "coordinates": [3.04724624104, 47.6325308017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b7a69529b753ebb97687811cf72b3d6bd9a1d67", "fields": {"nom_de_la_commune": "ROSOY", "libell_d_acheminement": "ROSOY", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89326"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcc2a5f5f67447c47776a0126e07fe0cc3af365d", "fields": {"nom_de_la_commune": "STE COLOMBE SUR LOING", "libell_d_acheminement": "STE COLOMBE SUR LOING", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89340"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99147e94ceb9788f9e19bb25f8dcd3c9a261046d", "fields": {"nom_de_la_commune": "ST FARGEAU", "libell_d_acheminement": "ST FARGEAU", "code_postal": "89170", "coordonnees_gps": [47.6325308017, 3.04724624104], "code_commune_insee": "89344"}, "geometry": {"type": "Point", "coordinates": [3.04724624104, 47.6325308017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c31f88aa5ac3a533da6a895ca3e9895b78061352", "fields": {"nom_de_la_commune": "ST LOUP D ORDON", "libell_d_acheminement": "ST LOUP D ORDON", "code_postal": "89330", "coordonnees_gps": [48.032264148, 3.20612795948], "code_commune_insee": "89350"}, "geometry": {"type": "Point", "coordinates": [3.20612795948, 48.032264148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96231fc63190b93d1c7d3ffd8a65b75eeb6e9b6f", "fields": {"nom_de_la_commune": "STE MAGNANCE", "libell_d_acheminement": "STE MAGNANCE", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89351"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd5816d94bc63f82821caeb9d28b178c321ea947", "fields": {"nom_de_la_commune": "ST MARTIN DES CHAMPS", "libell_d_acheminement": "ST MARTIN DES CHAMPS", "code_postal": "89170", "coordonnees_gps": [47.6325308017, 3.04724624104], "code_commune_insee": "89352"}, "geometry": {"type": "Point", "coordinates": [3.04724624104, 47.6325308017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b48bcffba1bb05928fb273bac6811b904f1b75ce", "fields": {"nom_de_la_commune": "ST MARTIN SUR ARMANCON", "libell_d_acheminement": "ST MARTIN SUR ARMANCON", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89355"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf78d1f59a56a4a5edcea758509f66a586c485e7", "fields": {"nom_de_la_commune": "ST MAURICE THIZOUAILLE", "libell_d_acheminement": "ST MAURICE THIZOUAILLE", "code_postal": "89110", "coordonnees_gps": [47.8527025116, 3.31027533122], "code_commune_insee": "89361"}, "geometry": {"type": "Point", "coordinates": [3.31027533122, 47.8527025116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddf14241ac3a1c5fdef5c6bd1c6f8e19e8c93ef0", "fields": {"nom_de_la_commune": "ST MORE", "libell_d_acheminement": "ST MORE", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89362"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "439802b9260f92eff039dd0f017763cce4eb429d", "fields": {"nom_de_la_commune": "STE PALLAYE", "libell_d_acheminement": "STE PALLAYE", "code_postal": "89460", "coordonnees_gps": [47.6637745179, 3.68045501565], "code_commune_insee": "89363"}, "geometry": {"type": "Point", "coordinates": [3.68045501565, 47.6637745179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9395e8fcb7b863bbc251b09007a15ba4eb4f899", "fields": {"nom_de_la_commune": "SAINTS EN PUISAYE", "libell_d_acheminement": "SAINTS EN PUISAYE", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89367"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "786653640a42ec84da3cf0a7c746db1bee7997a2", "fields": {"nom_de_la_commune": "ST SAUVEUR EN PUISAYE", "libell_d_acheminement": "ST SAUVEUR EN PUISAYE", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89368"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcfdbe657d8770e2c34c669babe1971b29c327da", "fields": {"nom_de_la_commune": "ST SEROTIN", "libell_d_acheminement": "ST SEROTIN", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89369"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83aed6257319e8d8b18c55281877ee3b91ca2ba0", "fields": {"nom_de_la_commune": "STE VERTU", "libell_d_acheminement": "STE VERTU", "code_postal": "89310", "coordonnees_gps": [47.6929528372, 4.00136531416], "code_commune_insee": "89371"}, "geometry": {"type": "Point", "coordinates": [4.00136531416, 47.6929528372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1136727f08fe780707279dec4bbee5c480db7aa2", "fields": {"nom_de_la_commune": "SAVIGNY EN TERRE PLAINE", "libell_d_acheminement": "SAVIGNY EN TERRE PLAINE", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89379"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d1f627f4d2b0c31a66d2976a0b22cb828d16da", "fields": {"nom_de_la_commune": "SEIGNELAY", "libell_d_acheminement": "SEIGNELAY", "code_postal": "89250", "coordonnees_gps": [47.9169771664, 3.59359231918], "code_commune_insee": "89382"}, "geometry": {"type": "Point", "coordinates": [3.59359231918, 47.9169771664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945b35371bed6f71f55f8177b8be821e549c18e5", "fields": {"nom_de_la_commune": "SEMENTRON", "libell_d_acheminement": "SEMENTRON", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89383"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae1b3f8c5a27b9d231a6acbcffcc4a037b475fb0", "fields": {"code_postal": "89116", "code_commune_insee": "89388", "libell_d_acheminement": "SEPEAUX ST ROMAIN", "ligne_5": "ST ROMAIN LE PREUX", "nom_de_la_commune": "SEPEAUX ST ROMAIN", "coordonnees_gps": [47.9697320355, 3.23051623218]}, "geometry": {"type": "Point", "coordinates": [3.23051623218, 47.9697320355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c165495a996bf1de6c83bc996c0d56ab6c66272b", "fields": {"nom_de_la_commune": "SORMERY", "libell_d_acheminement": "SORMERY", "code_postal": "89570", "coordonnees_gps": [48.0650523517, 3.77308517186], "code_commune_insee": "89398"}, "geometry": {"type": "Point", "coordinates": [3.77308517186, 48.0650523517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "972cb9b8666e68ab2199aa7b120304026d4ba2e2", "fields": {"nom_de_la_commune": "SUBLIGNY", "libell_d_acheminement": "SUBLIGNY", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89404"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39a46d46585a42b58192914ed5cc7c7c4c7a0240", "fields": {"nom_de_la_commune": "TAINGY", "libell_d_acheminement": "TAINGY", "code_postal": "89560", "coordonnees_gps": [47.6134740976, 3.44560767581], "code_commune_insee": "89405"}, "geometry": {"type": "Point", "coordinates": [3.44560767581, 47.6134740976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72cbaa757f4327a0f29404d48309d76df32ce7f8", "fields": {"nom_de_la_commune": "TALCY", "libell_d_acheminement": "TALCY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89406"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af923425e36c0be3d09e9070ed21dffdb91f1a51", "fields": {"code_postal": "89430", "code_commune_insee": "89407", "libell_d_acheminement": "TANLAY", "ligne_5": "ST VINNEMER", "nom_de_la_commune": "TANLAY", "coordonnees_gps": [47.8807711106, 4.10354187275]}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d577d7dab25371584e9943e306f6beea45ba1ab4", "fields": {"nom_de_la_commune": "TANNERRE EN PUISAYE", "libell_d_acheminement": "TANNERRE EN PUISAYE", "code_postal": "89350", "coordonnees_gps": [47.7773444304, 3.09490527015], "code_commune_insee": "89408"}, "geometry": {"type": "Point", "coordinates": [3.09490527015, 47.7773444304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4550d2967f2b529b4118cd1aaf885c3e085d1b52", "fields": {"nom_de_la_commune": "THAROT", "libell_d_acheminement": "THAROT", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89410"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31787a5805ae4fe2e4177e41211d39426d72ea9", "fields": {"code_postal": "89260", "code_commune_insee": "89414", "libell_d_acheminement": "THORIGNY SUR OREUSE", "ligne_5": "ST MARTIN SUR OREUSE", "nom_de_la_commune": "THORIGNY SUR OREUSE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0262b089144fd49c133d89b9a71e3c9c7e251897", "fields": {"nom_de_la_commune": "TISSEY", "libell_d_acheminement": "TISSEY", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89417"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ba15aabc304f0283f5640d3ceb3916c4f0e040a", "fields": {"nom_de_la_commune": "TREIGNY", "libell_d_acheminement": "TREIGNY", "code_postal": "89520", "coordonnees_gps": [47.5878935462, 3.24481774824], "code_commune_insee": "89420"}, "geometry": {"type": "Point", "coordinates": [3.24481774824, 47.5878935462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b163a3b9f173212982d0d509436ff1b21fcd3567", "fields": {"nom_de_la_commune": "TRICHEY", "libell_d_acheminement": "TRICHEY", "code_postal": "89430", "coordonnees_gps": [47.8807711106, 4.10354187275], "code_commune_insee": "89422"}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8739f54fef1e2d18ea851e58a7a3d7c437bfd781", "fields": {"nom_de_la_commune": "TRUCY SUR YONNE", "libell_d_acheminement": "TRUCY SUR YONNE", "code_postal": "89460", "coordonnees_gps": [47.6637745179, 3.68045501565], "code_commune_insee": "89424"}, "geometry": {"type": "Point", "coordinates": [3.68045501565, 47.6637745179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4858a88011910dfc286a9392446f56c6d7280fe4", "fields": {"nom_de_la_commune": "TURNY", "libell_d_acheminement": "TURNY", "code_postal": "89570", "coordonnees_gps": [48.0650523517, 3.77308517186], "code_commune_insee": "89425"}, "geometry": {"type": "Point", "coordinates": [3.77308517186, 48.0650523517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e097d13b2d4e19e9d9af887fca887e4b69763f7b", "fields": {"nom_de_la_commune": "VASSY SOUS PISY", "libell_d_acheminement": "VASSY SOUS PISY", "code_postal": "89420", "coordonnees_gps": [47.53580118, 4.09604178254], "code_commune_insee": "89431"}, "geometry": {"type": "Point", "coordinates": [4.09604178254, 47.53580118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed5ae61c1e737710856cda067fb99f41a4ce871", "fields": {"nom_de_la_commune": "VAUDEURS", "libell_d_acheminement": "VAUDEURS", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89432"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d33534214338e58921332373e7cfe9ca1cfac143", "fields": {"nom_de_la_commune": "VENOUSE", "libell_d_acheminement": "VENOUSE", "code_postal": "89230", "coordonnees_gps": [47.8736260465, 3.68278303348], "code_commune_insee": "89437"}, "geometry": {"type": "Point", "coordinates": [3.68278303348, 47.8736260465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "123f72e965a3091861f411521b30b7c85872a117", "fields": {"code_postal": "89600", "code_commune_insee": "89439", "libell_d_acheminement": "VERGIGNY", "ligne_5": "REBOURSEAUX", "nom_de_la_commune": "VERGIGNY", "coordonnees_gps": [47.9775250716, 3.71821754522]}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c7f7616ac45bfb621f6afd4d3e42eae7e33ecb8", "fields": {"nom_de_la_commune": "VERON", "libell_d_acheminement": "VERON", "code_postal": "89510", "coordonnees_gps": [48.1263967669, 3.31137297054], "code_commune_insee": "89443"}, "geometry": {"type": "Point", "coordinates": [3.31137297054, 48.1263967669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b009682162332dfaa2d76f121ec7c808e6f5753", "fields": {"nom_de_la_commune": "VEZANNES", "libell_d_acheminement": "VEZANNES", "code_postal": "89700", "coordonnees_gps": [47.8601659941, 3.96178674157], "code_commune_insee": "89445"}, "geometry": {"type": "Point", "coordinates": [3.96178674157, 47.8601659941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df012ab24c6abb4ef4279c55d0ae9da1bcb87f8e", "fields": {"nom_de_la_commune": "VILLECIEN", "libell_d_acheminement": "VILLECIEN", "code_postal": "89300", "coordonnees_gps": [47.9900032028, 3.40031199699], "code_commune_insee": "89452"}, "geometry": {"type": "Point", "coordinates": [3.40031199699, 47.9900032028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b963db88ae6b5002f55936016ac4a51393e53768", "fields": {"nom_de_la_commune": "VILLENEUVE L ARCHEVEQUE", "libell_d_acheminement": "VILLENEUVE L ARCHEVEQUE", "code_postal": "89190", "coordonnees_gps": [48.2459686813, 3.51900151946], "code_commune_insee": "89461"}, "geometry": {"type": "Point", "coordinates": [3.51900151946, 48.2459686813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f5f2e24d6fade7905128e3ae095cabaca68e72f", "fields": {"code_postal": "89260", "code_commune_insee": "89469", "libell_d_acheminement": "PERCENEIGE", "ligne_5": "GRANGE LE BOCAGE", "nom_de_la_commune": "PERCENEIGE", "coordonnees_gps": [48.3092552712, 3.39257343746]}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88451897c48701abd76bca96ab64f3514b7fbe14", "fields": {"nom_de_la_commune": "VILLIERS VINEUX", "libell_d_acheminement": "VILLIERS VINEUX", "code_postal": "89360", "coordonnees_gps": [47.9420663145, 3.84750335984], "code_commune_insee": "89474"}, "geometry": {"type": "Point", "coordinates": [3.84750335984, 47.9420663145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c2481feb3c2887924b0bf3baa49ddd5e7d04f75", "fields": {"nom_de_la_commune": "VILLON", "libell_d_acheminement": "VILLON", "code_postal": "89740", "coordonnees_gps": [47.8818432243, 4.21631025532], "code_commune_insee": "89475"}, "geometry": {"type": "Point", "coordinates": [4.21631025532, 47.8818432243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e224e5c6fe94a57102fc65dbc383a23ef1058ee0", "fields": {"nom_de_la_commune": "VIREAUX", "libell_d_acheminement": "VIREAUX", "code_postal": "89160", "coordonnees_gps": [47.7772262093, 4.15865365255], "code_commune_insee": "89481"}, "geometry": {"type": "Point", "coordinates": [4.15865365255, 47.7772262093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5bfa092c40fe161c0b9cb6576799961f21ee9d", "fields": {"nom_de_la_commune": "VOLGRE", "libell_d_acheminement": "VOLGRE", "code_postal": "89710", "coordonnees_gps": [47.9188469839, 3.34212763493], "code_commune_insee": "89484"}, "geometry": {"type": "Point", "coordinates": [3.34212763493, 47.9188469839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb10ad0f430a2a3fc7993140df9242777c7f8ae", "fields": {"code_postal": "90400", "code_commune_insee": "90001", "libell_d_acheminement": "ANDELNANS", "ligne_5": "FROIDEVAL", "nom_de_la_commune": "ANDELNANS", "coordonnees_gps": [47.5946428688, 6.88170396184]}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69fb653696320e50d8bda065b2df3f7276119a09", "fields": {"nom_de_la_commune": "ANGEOT", "libell_d_acheminement": "ANGEOT", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90002"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c5b6a3c464f80c38ec00f4e45e9405ba1680b0a", "fields": {"nom_de_la_commune": "ANJOUTEY", "libell_d_acheminement": "ANJOUTEY", "code_postal": "90170", "coordonnees_gps": [47.7266319105, 6.91618940907], "code_commune_insee": "90003"}, "geometry": {"type": "Point", "coordinates": [6.91618940907, 47.7266319105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6817e96c4361bee097270538dbe053fe4a3e2780", "fields": {"nom_de_la_commune": "BANVILLARS", "libell_d_acheminement": "BANVILLARS", "code_postal": "90800", "coordonnees_gps": [47.6081948089, 6.81416858312], "code_commune_insee": "90007"}, "geometry": {"type": "Point", "coordinates": [6.81416858312, 47.6081948089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a477a24746eb4406f35430dc1f29a466786168ce", "fields": {"nom_de_la_commune": "BAVILLIERS", "libell_d_acheminement": "BAVILLIERS", "code_postal": "90800", "coordonnees_gps": [47.6081948089, 6.81416858312], "code_commune_insee": "90008"}, "geometry": {"type": "Point", "coordinates": [6.81416858312, 47.6081948089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ba58dd985d5692b64ebca47ec1f0cf2276840b3", "fields": {"nom_de_la_commune": "BESSONCOURT", "libell_d_acheminement": "BESSONCOURT", "code_postal": "90160", "coordonnees_gps": [47.6449615689, 6.92104396254], "code_commune_insee": "90012"}, "geometry": {"type": "Point", "coordinates": [6.92104396254, 47.6449615689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90244ecd1ae29d41dddce48d4f6e9a8204cbda5", "fields": {"nom_de_la_commune": "BOTANS", "libell_d_acheminement": "BOTANS", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90015"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28764c8c280f0ba5bf85255eaabfe84e7c7bb8b8", "fields": {"nom_de_la_commune": "CHARMOIS", "libell_d_acheminement": "CHARMOIS", "code_postal": "90140", "coordonnees_gps": [47.5713832567, 6.93555749389], "code_commune_insee": "90021"}, "geometry": {"type": "Point", "coordinates": [6.93555749389, 47.5713832567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28bb86a6c2b305dbed79b7482d4360cbf000b46f", "fields": {"nom_de_la_commune": "CHEVREMONT", "libell_d_acheminement": "CHEVREMONT", "code_postal": "90340", "coordonnees_gps": [47.6213054353, 6.94143825655], "code_commune_insee": "90026"}, "geometry": {"type": "Point", "coordinates": [6.94143825655, 47.6213054353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbbe013749129c7c698d86004456e5240ed37304", "fields": {"nom_de_la_commune": "FAVEROIS", "libell_d_acheminement": "FAVEROIS", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90043"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddad21a89f7cf07cb7299fab1e5d27649a9f13a5", "fields": {"nom_de_la_commune": "GROSNE", "libell_d_acheminement": "GROSNE", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90055"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71de49e8a0358491ebe99880115ea0e3be26a288", "fields": {"nom_de_la_commune": "LAMADELEINE VAL DES ANGES", "libell_d_acheminement": "LAMADELEINE VAL DES ANGES", "code_postal": "90170", "coordonnees_gps": [47.7266319105, 6.91618940907], "code_commune_insee": "90061"}, "geometry": {"type": "Point", "coordinates": [6.91618940907, 47.7266319105]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60a438d6cad83d79c272f2d6f846cd74c2ce2c6", "fields": {"nom_de_la_commune": "LARIVIERE", "libell_d_acheminement": "LARIVIERE", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90062"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4983fb9c36613e496ab2368b4d17c037881d53c", "fields": {"nom_de_la_commune": "MORVILLARS", "libell_d_acheminement": "MORVILLARS", "code_postal": "90120", "coordonnees_gps": [47.5385114028, 6.93127179271], "code_commune_insee": "90072"}, "geometry": {"type": "Point", "coordinates": [6.93127179271, 47.5385114028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f0b3fd16458e6d3029a4293e9ce667530ea0a36", "fields": {"nom_de_la_commune": "MOVAL", "libell_d_acheminement": "MOVAL", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90073"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb62ca6d728df3073ba7a9d77d8c7ef73063f6e", "fields": {"nom_de_la_commune": "RIERVESCEMONT", "libell_d_acheminement": "RIERVESCEMONT", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90085"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0498aa88d27443a448cfb7e683caac7ea65d122d", "fields": {"nom_de_la_commune": "ST DIZIER L EVEQUE", "libell_d_acheminement": "ST DIZIER L EVEQUE", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90090"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc18090b8bb33c7d92c44e7c771c5927bf7303ee", "fields": {"nom_de_la_commune": "SUARCE", "libell_d_acheminement": "SUARCE", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90095"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5d1ee55cb9890085524291583e1df8122ec5934", "fields": {"nom_de_la_commune": "VESCEMONT", "libell_d_acheminement": "VESCEMONT", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90102"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccb46a64ee6cd3a24e72bf1bc44edef3da95ad72", "fields": {"nom_de_la_commune": "VEZELOIS", "libell_d_acheminement": "VEZELOIS", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90104"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8593ffe64de825b69dac719cae52ec38c36cf564", "fields": {"nom_de_la_commune": "ANGERVILLE", "libell_d_acheminement": "ANGERVILLE", "code_postal": "91670", "coordonnees_gps": [48.3099539715, 2.00495721135], "code_commune_insee": "91016"}, "geometry": {"type": "Point", "coordinates": [2.00495721135, 48.3099539715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7109eb7c0a822d86689aed3d29dfa268d41a46b", "fields": {"nom_de_la_commune": "ARRANCOURT", "libell_d_acheminement": "ARRANCOURT", "code_postal": "91690", "coordonnees_gps": [48.3609334789, 2.12492559974], "code_commune_insee": "91022"}, "geometry": {"type": "Point", "coordinates": [2.12492559974, 48.3609334789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "478e460418770e073d4068953f6055953bb2cbda", "fields": {"nom_de_la_commune": "AUVERNAUX", "libell_d_acheminement": "AUVERNAUX", "code_postal": "91830", "coordonnees_gps": [48.5482208788, 2.48758633681], "code_commune_insee": "91037"}, "geometry": {"type": "Point", "coordinates": [2.48758633681, 48.5482208788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d633bbcf6e5ca44ef97ccb589fe869dd22138e04", "fields": {"nom_de_la_commune": "BAULNE", "libell_d_acheminement": "BAULNE", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91047"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45a9ba7bcc67b5e83a8f2c769e768884b66a7fec", "fields": {"nom_de_la_commune": "BIEVRES", "libell_d_acheminement": "BIEVRES", "code_postal": "91570", "coordonnees_gps": [48.7564805382, 2.20696199549], "code_commune_insee": "91064"}, "geometry": {"type": "Point", "coordinates": [2.20696199549, 48.7564805382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14f0d9f2ff6c3aef578327ddb7173918e05d904d", "fields": {"nom_de_la_commune": "BOIGNEVILLE", "libell_d_acheminement": "BOIGNEVILLE", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91069"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "407d153d6220c76705619f664dab30b04e3ceeb3", "fields": {"nom_de_la_commune": "BOISSY SOUS ST YON", "libell_d_acheminement": "BOISSY SOUS ST YON", "code_postal": "91790", "coordonnees_gps": [48.5492269874, 2.21255361309], "code_commune_insee": "91085"}, "geometry": {"type": "Point", "coordinates": [2.21255361309, 48.5492269874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf39e6617947a02363e42834bc52b35008647fb", "fields": {"nom_de_la_commune": "BOULLAY LES TROUX", "libell_d_acheminement": "BOULLAY LES TROUX", "code_postal": "91470", "coordonnees_gps": [48.6369515369, 2.06831882052], "code_commune_insee": "91093"}, "geometry": {"type": "Point", "coordinates": [2.06831882052, 48.6369515369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebceaab3da8a9fb85f60763b12a65f0665ab311b", "fields": {"nom_de_la_commune": "BOUVILLE", "libell_d_acheminement": "BOUVILLE", "code_postal": "91880", "coordonnees_gps": [48.4325540428, 2.27884287517], "code_commune_insee": "91100"}, "geometry": {"type": "Point", "coordinates": [2.27884287517, 48.4325540428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0462ae7579fa870751917e4004925d675e334f91", "fields": {"nom_de_la_commune": "TRAMONT ST ANDRE", "libell_d_acheminement": "TRAMONT ST ANDRE", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54531"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9571791a3c1041a216e90a9f21a377a78d768a", "fields": {"nom_de_la_commune": "TREMBLECOURT", "libell_d_acheminement": "TREMBLECOURT", "code_postal": "54385", "coordonnees_gps": [48.806398906, 5.92486864831], "code_commune_insee": "54532"}, "geometry": {"type": "Point", "coordinates": [5.92486864831, 48.806398906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1039d7906b5ec1c215c7b044eef81024b172197f", "fields": {"nom_de_la_commune": "VALLEROY", "libell_d_acheminement": "VALLEROY", "code_postal": "54910", "coordonnees_gps": [49.2141645381, 5.91861436724], "code_commune_insee": "54542"}, "geometry": {"type": "Point", "coordinates": [5.91861436724, 49.2141645381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a42191e5b31c27241904bf00d360418ecb1497aa", "fields": {"nom_de_la_commune": "VANDELEVILLE", "libell_d_acheminement": "VANDELEVILLE", "code_postal": "54115", "coordonnees_gps": [48.4266603724, 5.96991011811], "code_commune_insee": "54545"}, "geometry": {"type": "Point", "coordinates": [5.96991011811, 48.4266603724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17d0decd8782dac72b41d9152daec02ae192c88b", "fields": {"nom_de_la_commune": "VAUDEMONT", "libell_d_acheminement": "VAUDEMONT", "code_postal": "54330", "coordonnees_gps": [48.4908240969, 6.06954170502], "code_commune_insee": "54552"}, "geometry": {"type": "Point", "coordinates": [6.06954170502, 48.4908240969]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528f93fc65582d468ce1aee36ddaf709e17a7445", "fields": {"nom_de_la_commune": "VILCEY SUR TREY", "libell_d_acheminement": "VILCEY SUR TREY", "code_postal": "54700", "coordonnees_gps": [48.908234208, 6.05844193294], "code_commune_insee": "54566"}, "geometry": {"type": "Point", "coordinates": [6.05844193294, 48.908234208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ec23e225d1233123d9d5583c72bcda95a701422", "fields": {"nom_de_la_commune": "VILLE EN VERMOIS", "libell_d_acheminement": "VILLE EN VERMOIS", "code_postal": "54210", "coordonnees_gps": [48.587486661, 6.26348821882], "code_commune_insee": "54571"}, "geometry": {"type": "Point", "coordinates": [6.26348821882, 48.587486661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64de733720eef0faedede1f68b58e20472297775", "fields": {"nom_de_la_commune": "VILLERUPT", "libell_d_acheminement": "VILLERUPT", "code_postal": "54190", "coordonnees_gps": [49.4525960193, 5.89523270383], "code_commune_insee": "54580"}, "geometry": {"type": "Point", "coordinates": [5.89523270383, 49.4525960193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "510acc7ef4b0d0cc996e7b8e8cf3eee511d8da1a", "fields": {"nom_de_la_commune": "VITRIMONT", "libell_d_acheminement": "VITRIMONT", "code_postal": "54300", "coordonnees_gps": [48.581973576, 6.53531320598], "code_commune_insee": "54588"}, "geometry": {"type": "Point", "coordinates": [6.53531320598, 48.581973576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "130c79817fda47a66120803cc8629a32f4895766", "fields": {"code_postal": "54260", "code_commune_insee": "54590", "libell_d_acheminement": "VIVIERS SUR CHIERS", "ligne_5": "REVEMONT", "nom_de_la_commune": "VIVIERS SUR CHIERS", "coordonnees_gps": [49.4669099141, 5.55797243137]}, "geometry": {"type": "Point", "coordinates": [5.55797243137, 49.4669099141]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b606251c41798f57afe1af6c6848b2198af017", "fields": {"nom_de_la_commune": "VOINEMONT", "libell_d_acheminement": "VOINEMONT", "code_postal": "54134", "coordonnees_gps": [48.5293245976, 6.1775765715], "code_commune_insee": "54591"}, "geometry": {"type": "Point", "coordinates": [6.1775765715, 48.5293245976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "848ddf942fa0610f417c0bb25fe5f05b25a65712", "fields": {"nom_de_la_commune": "HAN DEVANT PIERREPONT", "libell_d_acheminement": "HAN DEVANT PIERREPONT", "code_postal": "54620", "coordonnees_gps": [49.4159579507, 5.74064745259], "code_commune_insee": "54602"}, "geometry": {"type": "Point", "coordinates": [5.74064745259, 49.4159579507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ec404e1d21f8928442d9d58e5c7f515d36f65ac", "fields": {"nom_de_la_commune": "ABAINVILLE", "libell_d_acheminement": "ABAINVILLE", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55001"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab7bc474d7792168195f7a71b24c5d3e4313494", "fields": {"nom_de_la_commune": "AMEL SUR L ETANG", "libell_d_acheminement": "AMEL SUR L ETANG", "code_postal": "55230", "coordonnees_gps": [49.3403903828, 5.6284923662], "code_commune_insee": "55008"}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981f6986aed7586230d1a03eeb56747ed28cb095", "fields": {"nom_de_la_commune": "AUTREVILLE ST LAMBERT", "libell_d_acheminement": "AUTREVILLE ST LAMBERT", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55018"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e6168d456426c86c57bcddabfd44f42d2cf6ab9", "fields": {"nom_de_la_commune": "AVILLERS STE CROIX", "libell_d_acheminement": "AVILLERS STE CROIX", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55021"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c40cf111adff0d8d3e3915d429e910f0c204e18", "fields": {"nom_de_la_commune": "BANNONCOURT", "libell_d_acheminement": "BANNONCOURT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55027"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "329a8da2a44d22a24f052a57e1ea86f6571f1381", "fields": {"nom_de_la_commune": "BAUDIGNECOURT", "libell_d_acheminement": "BAUDIGNECOURT", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55030"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f5d0d577398ebcbd7194fa1085a9d8f2146632", "fields": {"nom_de_la_commune": "BAUDONVILLIERS", "libell_d_acheminement": "BAUDONVILLIERS", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55031"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2dc7d0a4d60d1dc31e9f0b3a5d1a72ec53e236", "fields": {"nom_de_la_commune": "BAZEILLES SUR OTHAIN", "libell_d_acheminement": "BAZEILLES SUR OTHAIN", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55034"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6470049cb8071ec7c3689c96951e528f5a5ecbeb", "fields": {"nom_de_la_commune": "BELLERAY", "libell_d_acheminement": "BELLERAY", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55042"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a2b75a43779d5b1780c56cfb2196ffa46fa1edb", "fields": {"nom_de_la_commune": "BOINVILLE EN WOEVRE", "libell_d_acheminement": "BOINVILLE EN WOEVRE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55057"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc2f793d51fd616ab44d63f24fc7b87b2257ddca", "fields": {"nom_de_la_commune": "BONNET", "libell_d_acheminement": "BONNET", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55059"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b913e7ba317e2e5daa0015747e0ff804ee6e8668", "fields": {"nom_de_la_commune": "LE BOUCHON SUR SAULX", "libell_d_acheminement": "LE BOUCHON SUR SAULX", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55061"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b3982302e7da627c872181a8f2888843618241f", "fields": {"nom_de_la_commune": "BOUQUEMONT", "libell_d_acheminement": "BOUQUEMONT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55064"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0648e52a810a0f421a77c43850ee3e852eb8745a", "fields": {"nom_de_la_commune": "BRANDEVILLE", "libell_d_acheminement": "BRANDEVILLE", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55071"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b095726c29b39ed127bf519c2a0a84b62394310", "fields": {"nom_de_la_commune": "BRAQUIS", "libell_d_acheminement": "BRAQUIS", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55072"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a84958d49a92732fb23aa218ebf5dc2b9e5eae80", "fields": {"nom_de_la_commune": "BREHEVILLE", "libell_d_acheminement": "BREHEVILLE", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55076"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2769c0d4b7d206fdcc1cc4ebe741a71be6b42f8e", "fields": {"nom_de_la_commune": "BROUSSEY RAULECOURT", "libell_d_acheminement": "BROUSSEY RAULECOURT", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55085"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8053ec9cfffc9021b3b6cc60f0928878fd834b76", "fields": {"code_postal": "55200", "code_commune_insee": "55085", "libell_d_acheminement": "BROUSSEY RAULECOURT", "ligne_5": "RAULECOURT", "nom_de_la_commune": "BROUSSEY RAULECOURT", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e23718672faf75063dc5539841a023497d4b6c6f", "fields": {"nom_de_la_commune": "BUREY EN VAUX", "libell_d_acheminement": "BUREY EN VAUX", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55088"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bda539fa7aea52a0079f9f0abe09984fe971a3bb", "fields": {"code_postal": "55300", "code_commune_insee": "55093", "libell_d_acheminement": "BUXIERES SOUS LES COTES", "ligne_5": "BUXERULLES", "nom_de_la_commune": "BUXIERES SOUS LES COTES", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1a18e41672265b63679d1c9e44f61457610d76c", "fields": {"code_postal": "55300", "code_commune_insee": "55093", "libell_d_acheminement": "BUXIERES SOUS LES COTES", "ligne_5": "WOINVILLE", "nom_de_la_commune": "BUXIERES SOUS LES COTES", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "354aba955c28902d4c838902023267cfaa23bfc1", "fields": {"nom_de_la_commune": "CHALAINES", "libell_d_acheminement": "CHALAINES", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55097"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc53d32f1b844209679854907f0d428e532c0d19", "fields": {"nom_de_la_commune": "CHARNY SUR MEUSE", "libell_d_acheminement": "CHARNY SUR MEUSE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55102"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a736dc0ca4cff0f37421fbc630173aeaa4889895", "fields": {"nom_de_la_commune": "CHARPENTRY", "libell_d_acheminement": "CHARPENTRY", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55103"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abc658a10988ab31e3fafdbfaec0a3152f565533", "fields": {"nom_de_la_commune": "CHAUVENCY LE CHATEAU", "libell_d_acheminement": "CHAUVENCY LE CHATEAU", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55109"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6f4ddde15d17c98e7155ab83be15cd365ed16f6", "fields": {"nom_de_la_commune": "CHAUVONCOURT", "libell_d_acheminement": "CHAUVONCOURT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55111"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7582df65975fcdf133d86810548c7c7738f4804", "fields": {"nom_de_la_commune": "CHEPPY", "libell_d_acheminement": "CHEPPY", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55113"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4509bc5d2f57a7c3a9ec97549f2c3ab85b6a5996", "fields": {"code_postal": "55120", "code_commune_insee": "55117", "libell_d_acheminement": "CLERMONT EN ARGONNE", "ligne_5": "AUZEVILLE EN ARGONNE", "nom_de_la_commune": "CLERMONT EN ARGONNE", "coordonnees_gps": [49.116502234, 5.11120528176]}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d1ccd5ae82e817111781f6ef0bc3af676362966", "fields": {"nom_de_la_commune": "COMBRES SOUS LES COTES", "libell_d_acheminement": "COMBRES SOUS LES COTES", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55121"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65aeeab6190565c0b22d2274f677e15f86c6adc5", "fields": {"nom_de_la_commune": "COMMERCY", "libell_d_acheminement": "COMMERCY", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55122"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3280dc08a2b8558bb2dc9770b9d8aa39f3a649e6", "fields": {"code_postal": "55000", "code_commune_insee": "55123", "libell_d_acheminement": "LES HAUTS DE CHEE", "ligne_5": "HARGEVILLE SUR CHEE", "nom_de_la_commune": "LES HAUTS DE CHEE", "coordonnees_gps": [48.7769706968, 5.17031591605]}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cd791fe92e9e2c46e9367846b63639b38dee631", "fields": {"nom_de_la_commune": "CULEY", "libell_d_acheminement": "CULEY", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55138"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d65765596e6b59fa225a20286da6ded6dfdcc972", "fields": {"nom_de_la_commune": "DANNEVOUX", "libell_d_acheminement": "DANNEVOUX", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55146"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16043c4143f238328313f6c5ef59e9cc6dc90e90", "fields": {"nom_de_la_commune": "DUN SUR MEUSE", "libell_d_acheminement": "DUN SUR MEUSE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55167"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5854f61976c2aeed74ddc773088741d9f925ef7a", "fields": {"nom_de_la_commune": "ECOUVIEZ", "libell_d_acheminement": "ECOUVIEZ", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55169"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b10950a400d8821d9f19b50e52895173fbe7b064", "fields": {"code_postal": "55500", "code_commune_insee": "55179", "libell_d_acheminement": "ERNEVILLE AUX BOIS", "ligne_5": "DOMREMY AUX BOIS", "nom_de_la_commune": "ERNEVILLE AUX BOIS", "coordonnees_gps": [48.6840744097, 5.33883101603]}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "436dfcd75f46c3696f23b56d14712c97514055b5", "fields": {"nom_de_la_commune": "FAINS VEEL", "libell_d_acheminement": "FAINS VEEL", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55186"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed6e3ef60036824c0c3c1c3cc2ec7c424f64042f", "fields": {"nom_de_la_commune": "FORGES SUR MEUSE", "libell_d_acheminement": "FORGES SUR MEUSE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55193"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2fb651b85c37e455dfe2354b19afee9e81dc983", "fields": {"nom_de_la_commune": "FREMEREVILLE SOUS LES COTES", "libell_d_acheminement": "FREMEREVILLE SOUS LES COTES", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55196"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f2c3ecd94be741b6b4e6419f4aa84854696e3a", "fields": {"nom_de_la_commune": "FRESNES AU MONT", "libell_d_acheminement": "FRESNES AU MONT", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55197"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d6475163266b2b44f8e99f6d63c8689b8209af6", "fields": {"nom_de_la_commune": "FRESNES EN WOEVRE", "libell_d_acheminement": "FRESNES EN WOEVRE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55198"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed477fa5bf39139cd0b3e6b85fbd8a7799acdf9", "fields": {"nom_de_la_commune": "GENICOURT SUR MEUSE", "libell_d_acheminement": "GENICOURT SUR MEUSE", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55204"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b05604b546799cc8098d5c345fecfe2e494f44ad", "fields": {"nom_de_la_commune": "GERY", "libell_d_acheminement": "GERY", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55207"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4887e7def33842e53e4f6d805040ea9c23d4f27a", "fields": {"nom_de_la_commune": "GONDRECOURT LE CHATEAU", "libell_d_acheminement": "GONDRECOURT LE CHATEAU", "code_postal": "55130", "coordonnees_gps": [48.5182994069, 5.49758126805], "code_commune_insee": "55215"}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2457f4d92325cd1ef22be8ec1915ea5795f1f825", "fields": {"code_postal": "55130", "code_commune_insee": "55215", "libell_d_acheminement": "GONDRECOURT LE CHATEAU", "ligne_5": "TOURAILLES SOUS BOIS", "nom_de_la_commune": "GONDRECOURT LE CHATEAU", "coordonnees_gps": [48.5182994069, 5.49758126805]}, "geometry": {"type": "Point", "coordinates": [5.49758126805, 48.5182994069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954dbdcfa5f018ef203f820d9c5d72de6814edbe", "fields": {"nom_de_la_commune": "GRIMAUCOURT EN WOEVRE", "libell_d_acheminement": "GRIMAUCOURT EN WOEVRE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55219"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a10c5097682a1f8639aa3caa262eb9aa949850f3", "fields": {"nom_de_la_commune": "GRIMAUCOURT PRES SAMPIGNY", "libell_d_acheminement": "GRIMAUCOURT PRES SAMPIGNY", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55220"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ab7c31115a2f449143ae88ff909d76398d7491", "fields": {"nom_de_la_commune": "HEIPPES", "libell_d_acheminement": "HEIPPES", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55241"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aee8d55c65334812e0b4d2b8d4a8e4a70eceae2", "fields": {"nom_de_la_commune": "HEVILLIERS", "libell_d_acheminement": "HEVILLIERS", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55246"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c5158f919049d8197b54a1199464e2713ce339f", "fields": {"nom_de_la_commune": "JAMETZ", "libell_d_acheminement": "JAMETZ", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55255"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a10922846c64f78a34df75fb9f61d3e10f4d222", "fields": {"nom_de_la_commune": "JONVILLE EN WOEVRE", "libell_d_acheminement": "JONVILLE EN WOEVRE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55256"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a53a13db87712fceee32202b632a40cf8d49179", "fields": {"code_postal": "55200", "code_commune_insee": "55258", "libell_d_acheminement": "GEVILLE", "ligne_5": "GIRONVILLE SOUS LES COTES", "nom_de_la_commune": "GEVILLE", "coordonnees_gps": [48.7756905537, 5.61421348951]}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a2dbaad44e0790631017823c55476327681102", "fields": {"code_postal": "55210", "code_commune_insee": "55267", "libell_d_acheminement": "LACHAUSSEE", "ligne_5": "HADONVILLE LES LACHAUSSEE", "nom_de_la_commune": "LACHAUSSEE", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5abe59e61cc7bf85be64b9afb04fb2d6f608774", "fields": {"nom_de_la_commune": "LAHAYMEIX", "libell_d_acheminement": "LAHAYMEIX", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55269"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b4823653a2640b7ec9561be1c7a7a320292fc2", "fields": {"code_postal": "55100", "code_commune_insee": "55276", "libell_d_acheminement": "LANDRECOURT LEMPIRE", "ligne_5": "LEMPIRE AUX BOIS", "nom_de_la_commune": "LANDRECOURT LEMPIRE", "coordonnees_gps": [49.185016183, 5.33825384268]}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84bdad9e48ba0ff595a986d675c8dd1f4f1d7c9b", "fields": {"nom_de_la_commune": "LANEUVILLE SUR MEUSE", "libell_d_acheminement": "LANEUVILLE SUR MEUSE", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55279"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ebdaaf1692cc0cbfb9a8d8b707215d0271b77fc", "fields": {"nom_de_la_commune": "LEMMES", "libell_d_acheminement": "LEMMES", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55286"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29b4c30fd31436e461981dd68dcd4015bd3b18c3", "fields": {"nom_de_la_commune": "LEROUVILLE", "libell_d_acheminement": "LEROUVILLE", "code_postal": "55200", "coordonnees_gps": [48.7756905537, 5.61421348951], "code_commune_insee": "55288"}, "geometry": {"type": "Point", "coordinates": [5.61421348951, 48.7756905537]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19cf75f10ddbb0ae849efb2ff98bcb1f200b3c11", "fields": {"nom_de_la_commune": "LION DEVANT DUN", "libell_d_acheminement": "LION DEVANT DUN", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55293"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f71897b62eeb2144d20b8255f3bfff233226430", "fields": {"nom_de_la_commune": "LOISEY", "libell_d_acheminement": "LOISEY", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55298"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fbf8f6a02cd85ee433c2a2ae59d776dc8e6fed2", "fields": {"nom_de_la_commune": "MALANCOURT", "libell_d_acheminement": "MALANCOURT", "code_postal": "55270", "coordonnees_gps": [49.2424857282, 5.10202330099], "code_commune_insee": "55313"}, "geometry": {"type": "Point", "coordinates": [5.10202330099, 49.2424857282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae11fb8b79090e58a880d909933937d47c5dc290", "fields": {"nom_de_la_commune": "MANDRES EN BARROIS", "libell_d_acheminement": "MANDRES EN BARROIS", "code_postal": "55290", "coordonnees_gps": [48.547516102, 5.30600890328], "code_commune_insee": "55315"}, "geometry": {"type": "Point", "coordinates": [5.30600890328, 48.547516102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62107e3d9e1fecaf29dd9787e1e8395593d55a75", "fields": {"nom_de_la_commune": "MANHEULLES", "libell_d_acheminement": "MANHEULLES", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55317"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "761b48adfb7f6e62fc428e90399c8762ff4d193c", "fields": {"nom_de_la_commune": "MARVILLE", "libell_d_acheminement": "MARVILLE", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55324"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19b7512c866a94d6b560b6242e6435a2c082a1cc", "fields": {"nom_de_la_commune": "MAULAN", "libell_d_acheminement": "MAULAN", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55326"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "394465f76b23fc774a44ce4f3e9ac98ef7cbaf79", "fields": {"nom_de_la_commune": "MAXEY SUR VAISE", "libell_d_acheminement": "MAXEY SUR VAISE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55328"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5be5e05949f7384cb49fb4e863d293a40edc92c7", "fields": {"nom_de_la_commune": "MENIL LA HORGNE", "libell_d_acheminement": "MENIL LA HORGNE", "code_postal": "55190", "coordonnees_gps": [48.667580724, 5.58942514776], "code_commune_insee": "55334"}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ed6d2b32169c72124a72b8cf4d7d00fcccc3e3", "fields": {"nom_de_la_commune": "MOGEVILLE", "libell_d_acheminement": "MOGEVILLE", "code_postal": "55400", "coordonnees_gps": [49.1964122747, 5.59749948123], "code_commune_insee": "55339"}, "geometry": {"type": "Point", "coordinates": [5.59749948123, 49.1964122747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9c6ed19c31b47c8935a14d5b8dcb779ad391d27", "fields": {"nom_de_la_commune": "MOIREY FLABAS CREPION", "libell_d_acheminement": "MOIREY FLABAS CREPION", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55341"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a5735d51a634de65520cdb209a565cbd8ec5cc7", "fields": {"nom_de_la_commune": "MONTIGNY DEVANT SASSEY", "libell_d_acheminement": "MONTIGNY DEVANT SASSEY", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55349"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d71925c0d40ab6345bfcd6c6430d6619c75cac40", "fields": {"nom_de_la_commune": "MONTMEDY", "libell_d_acheminement": "MONTMEDY", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55351"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769a02c87dd2e6a25aab39f60a0b27d0150d2d9e", "fields": {"nom_de_la_commune": "MONTPLONNE", "libell_d_acheminement": "MONTPLONNE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55352"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30cfca195886f135c574a8ffdf456985b01a4b0d", "fields": {"nom_de_la_commune": "MOUILLY", "libell_d_acheminement": "MOUILLY", "code_postal": "55320", "coordonnees_gps": [49.0721397469, 5.45602995795], "code_commune_insee": "55360"}, "geometry": {"type": "Point", "coordinates": [5.45602995795, 49.0721397469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5efef3b1037fcfc4ae5119b3760e2f5922e6d3", "fields": {"nom_de_la_commune": "MOULINS ST HUBERT", "libell_d_acheminement": "MOULINS ST HUBERT", "code_postal": "55700", "coordonnees_gps": [49.5011588599, 5.18345377684], "code_commune_insee": "55362"}, "geometry": {"type": "Point", "coordinates": [5.18345377684, 49.5011588599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0237855e415dd6b6a52a7453486127844cdfd5d5", "fields": {"nom_de_la_commune": "NEUVILLE LES VAUCOULEURS", "libell_d_acheminement": "NEUVILLE LES VAUCOULEURS", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55381"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c450d45b02b99273bfa447a8f3c644e13698f1ce", "fields": {"nom_de_la_commune": "NIXEVILLE BLERCOURT", "libell_d_acheminement": "NIXEVILLE BLERCOURT", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55385"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df4af94ded03986324ff54abb5104d556fb67802", "fields": {"code_postal": "55210", "code_commune_insee": "55386", "libell_d_acheminement": "NONSARD LAMARCHE", "ligne_5": "LAMARCHE EN WOEVRE", "nom_de_la_commune": "NONSARD LAMARCHE", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7ebb7151357ba61cbbc7eaf02c9773d5a76da81", "fields": {"nom_de_la_commune": "PAGNY LA BLANCHE COTE", "libell_d_acheminement": "PAGNY LA BLANCHE COTE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55397"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93aeb643080269ec930b1cf94142d72533400cb2", "fields": {"nom_de_la_commune": "PIERREFITTE SUR AIRE", "libell_d_acheminement": "PIERREFITTE SUR AIRE", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55404"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47bb5387d4f2690459ccc0dc0ddfe7c34837fbeb", "fields": {"nom_de_la_commune": "RAMBLUZIN ET BENOITE VAUX", "libell_d_acheminement": "RAMBLUZIN ET BENOITE VAUX", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55411"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92561f3e7d8b3f120e754904244f755d5442e5dd", "fields": {"nom_de_la_commune": "RARECOURT", "libell_d_acheminement": "RARECOURT", "code_postal": "55120", "coordonnees_gps": [49.116502234, 5.11120528176], "code_commune_insee": "55416"}, "geometry": {"type": "Point", "coordinates": [5.11120528176, 49.116502234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9f0b261478515ab0738a5a37c361abb508d56c7", "fields": {"nom_de_la_commune": "REMBERCOURT SOMMAISNE", "libell_d_acheminement": "REMBERCOURT SOMMAISNE", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55423"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9c4ab12e19dc0ad896f635a45ab244206f46132", "fields": {"nom_de_la_commune": "RIAVILLE", "libell_d_acheminement": "RIAVILLE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55429"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d3f7fe191d1305eaae6ed51c398fb6cff08ec4", "fields": {"nom_de_la_commune": "RICHECOURT", "libell_d_acheminement": "RICHECOURT", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55431"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd679fdb2b4efa8d66a515b38e82d7a4e308587", "fields": {"nom_de_la_commune": "RIGNY LA SALLE", "libell_d_acheminement": "RIGNY LA SALLE", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55433"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "265ed632ae2d91b3aab6626258f395bf5202681d", "fields": {"nom_de_la_commune": "ROBERT ESPAGNE", "libell_d_acheminement": "ROBERT ESPAGNE", "code_postal": "55000", "coordonnees_gps": [48.7769706968, 5.17031591605], "code_commune_insee": "55435"}, "geometry": {"type": "Point", "coordinates": [5.17031591605, 48.7769706968]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4d709c06122fa50bd451ca62d7691cccb4292d9", "fields": {"nom_de_la_commune": "ROMAGNE SOUS LES COTES", "libell_d_acheminement": "ROMAGNE SOUS LES COTES", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55437"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1cdfe7221c12f77ae15719fd6ebb7f88ab6e032", "fields": {"nom_de_la_commune": "RUPT AUX NONAINS", "libell_d_acheminement": "RUPT AUX NONAINS", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55447"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a8d6bcced723084a8693b7a3e55a087465e5207", "fields": {"nom_de_la_commune": "SOUCY", "libell_d_acheminement": "SOUCY", "code_postal": "89100", "coordonnees_gps": [48.1970131192, 3.28915152427], "code_commune_insee": "89399"}, "geometry": {"type": "Point", "coordinates": [3.28915152427, 48.1970131192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "024f41a2d55a2170c078a07bdfc26c83e952c6f6", "fields": {"nom_de_la_commune": "TANLAY", "libell_d_acheminement": "TANLAY", "code_postal": "89430", "coordonnees_gps": [47.8807711106, 4.10354187275], "code_commune_insee": "89407"}, "geometry": {"type": "Point", "coordinates": [4.10354187275, 47.8807711106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3eb4484e2383d35223443b2053333dcf8dc9c3c", "fields": {"code_postal": "89320", "code_commune_insee": "89411", "libell_d_acheminement": "LES VALLEES DE LA VANNE", "ligne_5": "VAREILLES", "nom_de_la_commune": "LES VALLEES DE LA VANNE", "coordonnees_gps": [48.1363744746, 3.52794249897]}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa58982929e930971aec4ecb3335f196df852d4d", "fields": {"nom_de_la_commune": "THORIGNY SUR OREUSE", "libell_d_acheminement": "THORIGNY SUR OREUSE", "code_postal": "89260", "coordonnees_gps": [48.3092552712, 3.39257343746], "code_commune_insee": "89414"}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59dd8e57c60a1b4321d0ad23a65ba411cd904efb", "fields": {"nom_de_la_commune": "THORY", "libell_d_acheminement": "THORY", "code_postal": "89200", "coordonnees_gps": [47.510162817, 3.88913580057], "code_commune_insee": "89415"}, "geometry": {"type": "Point", "coordinates": [3.88913580057, 47.510162817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a83457d4a17e56520b8528be8c74ed46bde889ce", "fields": {"nom_de_la_commune": "VALLERY", "libell_d_acheminement": "VALLERY", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89428"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b690513a928de046e213c75b4bc4bb17762dc8f1", "fields": {"nom_de_la_commune": "VENIZY", "libell_d_acheminement": "VENIZY", "code_postal": "89210", "coordonnees_gps": [48.0402670235, 3.63057166674], "code_commune_insee": "89436"}, "geometry": {"type": "Point", "coordinates": [3.63057166674, 48.0402670235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7df86f0d6ee9479250aca746505531343a1ec31a", "fields": {"nom_de_la_commune": "VENOY", "libell_d_acheminement": "VENOY", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89438"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31cd34cd24c7a1df1747d6bb57e39bdb3d12c1e9", "fields": {"nom_de_la_commune": "VERGIGNY", "libell_d_acheminement": "VERGIGNY", "code_postal": "89600", "coordonnees_gps": [47.9775250716, 3.71821754522], "code_commune_insee": "89439"}, "geometry": {"type": "Point", "coordinates": [3.71821754522, 47.9775250716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd54da2512079fbc8c9ce53d20f12d05f630e198", "fields": {"nom_de_la_commune": "VERNOY", "libell_d_acheminement": "VERNOY", "code_postal": "89150", "coordonnees_gps": [48.1606867599, 3.08075985218], "code_commune_insee": "89442"}, "geometry": {"type": "Point", "coordinates": [3.08075985218, 48.1606867599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5eb19b737e524f8fdc87a6637499a51ee1dbb3f", "fields": {"nom_de_la_commune": "VEZELAY", "libell_d_acheminement": "VEZELAY", "code_postal": "89450", "coordonnees_gps": [47.4456860508, 3.76415147014], "code_commune_insee": "89446"}, "geometry": {"type": "Point", "coordinates": [3.76415147014, 47.4456860508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ded178e4ac1fc3b45eaf7c0ab869387ad5dc9a", "fields": {"nom_de_la_commune": "VILLEPERROT", "libell_d_acheminement": "VILLEPERROT", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89465"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86a25e46c52a5c8d2f7e99ce5632112b92f86e1c", "fields": {"nom_de_la_commune": "VILLIERS LOUIS", "libell_d_acheminement": "VILLIERS LOUIS", "code_postal": "89320", "coordonnees_gps": [48.1363744746, 3.52794249897], "code_commune_insee": "89471"}, "geometry": {"type": "Point", "coordinates": [3.52794249897, 48.1363744746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba82086213ab995c797696b54c1f3ec24feae8b", "fields": {"nom_de_la_commune": "VILLIERS ST BENOIT", "libell_d_acheminement": "VILLIERS ST BENOIT", "code_postal": "89130", "coordonnees_gps": [47.7204896398, 3.24989314971], "code_commune_insee": "89472"}, "geometry": {"type": "Point", "coordinates": [3.24989314971, 47.7204896398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83f46ba433cc7a39593718d280a38cd22d79884e", "fields": {"nom_de_la_commune": "VINCELLES", "libell_d_acheminement": "VINCELLES", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89478"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d29fe892a8c7d3fe520525e8aaa19cdd53fae2e", "fields": {"nom_de_la_commune": "VINCELOTTES", "libell_d_acheminement": "VINCELOTTES", "code_postal": "89290", "coordonnees_gps": [47.7651600621, 3.61733473781], "code_commune_insee": "89479"}, "geometry": {"type": "Point", "coordinates": [3.61733473781, 47.7651600621]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b00736bd9354fef5062e8a2b61f9cc2291f06b8", "fields": {"nom_de_la_commune": "VINNEUF", "libell_d_acheminement": "VINNEUF", "code_postal": "89140", "coordonnees_gps": [48.3049175279, 3.20381218711], "code_commune_insee": "89480"}, "geometry": {"type": "Point", "coordinates": [3.20381218711, 48.3049175279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f5e4fa57d1fc7da88e06a54b058827429d9e06a", "fields": {"nom_de_la_commune": "VOISINES", "libell_d_acheminement": "VOISINES", "code_postal": "89260", "coordonnees_gps": [48.3092552712, 3.39257343746], "code_commune_insee": "89483"}, "geometry": {"type": "Point", "coordinates": [3.39257343746, 48.3092552712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f50dd03579ae8d5360ee469154f1642609356588", "fields": {"nom_de_la_commune": "VOUTENAY SUR CURE", "libell_d_acheminement": "VOUTENAY SUR CURE", "code_postal": "89270", "coordonnees_gps": [47.6119078009, 3.74587483538], "code_commune_insee": "89485"}, "geometry": {"type": "Point", "coordinates": [3.74587483538, 47.6119078009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b6d6cf201110a447d8d364961762ac88c4cf1ad", "fields": {"nom_de_la_commune": "ARGIESANS", "libell_d_acheminement": "ARGIESANS", "code_postal": "90800", "coordonnees_gps": [47.6081948089, 6.81416858312], "code_commune_insee": "90004"}, "geometry": {"type": "Point", "coordinates": [6.81416858312, 47.6081948089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9aa3fe294947a1d579d00d7b22da4aeea238049", "fields": {"nom_de_la_commune": "BUC", "libell_d_acheminement": "BUC", "code_postal": "90800", "coordonnees_gps": [47.6081948089, 6.81416858312], "code_commune_insee": "90020"}, "geometry": {"type": "Point", "coordinates": [6.81416858312, 47.6081948089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa9e962faab8d2edb1d2f2e98c7c53e32ba9c0a3", "fields": {"nom_de_la_commune": "CHAUX", "libell_d_acheminement": "CHAUX", "code_postal": "90330", "coordonnees_gps": [47.7124367977, 6.83797967606], "code_commune_insee": "90023"}, "geometry": {"type": "Point", "coordinates": [6.83797967606, 47.7124367977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e572ce71a7eb69fdc6302b25632951a54aa3983", "fields": {"nom_de_la_commune": "COURCELLES", "libell_d_acheminement": "COURCELLES", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90027"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23c113318ab1cd79b81baea488fe54af13541244", "fields": {"nom_de_la_commune": "COURTELEVANT", "libell_d_acheminement": "COURTELEVANT", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90028"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c22ce5b0853442b2fa440fc634602768eb26153", "fields": {"nom_de_la_commune": "ESSERT", "libell_d_acheminement": "ESSERT", "code_postal": "90850", "coordonnees_gps": [47.6366865561, 6.81219643558], "code_commune_insee": "90039"}, "geometry": {"type": "Point", "coordinates": [6.81219643558, 47.6366865561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b30581ae93629953f4c4056a7460b00683ad7ca", "fields": {"nom_de_la_commune": "FECHE L EGLISE", "libell_d_acheminement": "FECHE L EGLISE", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90045"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bfcc53b806a10b70ab2a2fb6d9c9553dd309012", "fields": {"nom_de_la_commune": "FLORIMONT", "libell_d_acheminement": "FLORIMONT", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90046"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8b104d36c297bea12fa1e2442298f14011ddcaf", "fields": {"nom_de_la_commune": "JONCHEREY", "libell_d_acheminement": "JONCHEREY", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90056"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bdcf082c674015a471601d5df5abe1c613fda77", "fields": {"nom_de_la_commune": "LACHAPELLE SOUS CHAUX", "libell_d_acheminement": "LACHAPELLE SOUS CHAUX", "code_postal": "90300", "coordonnees_gps": [47.6845444298, 6.84057631169], "code_commune_insee": "90057"}, "geometry": {"type": "Point", "coordinates": [6.84057631169, 47.6845444298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "008d0ee1907fb9f013df837743562562eb336a26", "fields": {"nom_de_la_commune": "LEBETAIN", "libell_d_acheminement": "LEBETAIN", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90063"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ce4eabb62aba7b4f76c8b99e3c2ac513c76e85e", "fields": {"nom_de_la_commune": "LEPUIX", "libell_d_acheminement": "LEPUIX", "code_postal": "90200", "coordonnees_gps": [47.7547157793, 6.83320729086], "code_commune_insee": "90065"}, "geometry": {"type": "Point", "coordinates": [6.83320729086, 47.7547157793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33bda49398090e041d09528151a801d9be7b80bb", "fields": {"nom_de_la_commune": "MENONCOURT", "libell_d_acheminement": "MENONCOURT", "code_postal": "90150", "coordonnees_gps": [47.6680841239, 6.98880821933], "code_commune_insee": "90067"}, "geometry": {"type": "Point", "coordinates": [6.98880821933, 47.6680841239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2790dee4082a21d065e2f0e0fe7c84be8ba294da", "fields": {"nom_de_la_commune": "MEROUX", "libell_d_acheminement": "MEROUX", "code_postal": "90400", "coordonnees_gps": [47.5946428688, 6.88170396184], "code_commune_insee": "90068"}, "geometry": {"type": "Point", "coordinates": [6.88170396184, 47.5946428688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbd8a1ce6321725a322c1655d241aa602f1e4a7f", "fields": {"nom_de_la_commune": "MEZIRE", "libell_d_acheminement": "MEZIRE", "code_postal": "90120", "coordonnees_gps": [47.5385114028, 6.93127179271], "code_commune_insee": "90069"}, "geometry": {"type": "Point", "coordinates": [6.93127179271, 47.5385114028]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db67f6f777ad2a8e452cdf956189795263c97b17", "fields": {"nom_de_la_commune": "PETIT CROIX", "libell_d_acheminement": "PETIT CROIX", "code_postal": "90130", "coordonnees_gps": [47.605567769, 6.99078617872], "code_commune_insee": "90077"}, "geometry": {"type": "Point", "coordinates": [6.99078617872, 47.605567769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c744a1db45c3da890df88d12ce7d0c4026552dc9", "fields": {"nom_de_la_commune": "ST GERMAIN LE CHATELET", "libell_d_acheminement": "ST GERMAIN LE CHATELET", "code_postal": "90110", "coordonnees_gps": [47.7312446096, 6.96557108211], "code_commune_insee": "90091"}, "geometry": {"type": "Point", "coordinates": [6.96557108211, 47.7312446096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7ab8de82f29ae64dafcb96708a4c209a6f39365", "fields": {"nom_de_la_commune": "VELLESCOT", "libell_d_acheminement": "VELLESCOT", "code_postal": "90100", "coordonnees_gps": [47.5261900303, 7.02635347016], "code_commune_insee": "90101"}, "geometry": {"type": "Point", "coordinates": [7.02635347016, 47.5261900303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b2a16f8bdc4afa3af3b323bcc9483a58ae35ad", "fields": {"nom_de_la_commune": "BALLANCOURT SUR ESSONNE", "libell_d_acheminement": "BALLANCOURT SUR ESSONNE", "code_postal": "91610", "coordonnees_gps": [48.521926036, 2.38777609557], "code_commune_insee": "91045"}, "geometry": {"type": "Point", "coordinates": [2.38777609557, 48.521926036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ffb4236729816b2262601c1da6da3bfd5ce316", "fields": {"nom_de_la_commune": "BLANDY", "libell_d_acheminement": "BLANDY", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91067"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdea3d49007a925f22442caa1a8e598bc343d709", "fields": {"nom_de_la_commune": "BOISSY LA RIVIERE", "libell_d_acheminement": "BOISSY LA RIVIERE", "code_postal": "91690", "coordonnees_gps": [48.3609334789, 2.12492559974], "code_commune_insee": "91079"}, "geometry": {"type": "Point", "coordinates": [2.12492559974, 48.3609334789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91ab2d63e27d139e6b8df0c557e9f827014a3648", "fields": {"nom_de_la_commune": "BOUTIGNY SUR ESSONNE", "libell_d_acheminement": "BOUTIGNY SUR ESSONNE", "code_postal": "91820", "coordonnees_gps": [48.4347578682, 2.37891668976], "code_commune_insee": "91099"}, "geometry": {"type": "Point", "coordinates": [2.37891668976, 48.4347578682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14515409f5c4dd9bccc6fb321640401a24437c37", "fields": {"nom_de_la_commune": "BROUY", "libell_d_acheminement": "BROUY", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91112"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827b946c93efad7e1fb0d9e83f059df760415996", "fields": {"nom_de_la_commune": "CHALOU MOULINEUX", "libell_d_acheminement": "CHALOU MOULINEUX", "code_postal": "91740", "coordonnees_gps": [48.3700823354, 2.00542911555], "code_commune_insee": "91131"}, "geometry": {"type": "Point", "coordinates": [2.00542911555, 48.3700823354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b06c8731a927906c2f5e8f74dda645e71a1304f7", "fields": {"nom_de_la_commune": "CHAMARANDE", "libell_d_acheminement": "CHAMARANDE", "code_postal": "91730", "coordonnees_gps": [48.5235985286, 2.21810391449], "code_commune_insee": "91132"}, "geometry": {"type": "Point", "coordinates": [2.21810391449, 48.5235985286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b92cb3151966850de533952361f2394755f060b5", "fields": {"nom_de_la_commune": "CORBREUSE", "libell_d_acheminement": "CORBREUSE", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91175"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd352f5a3de26b948ebe4893fe36b72c64b8f09", "fields": {"nom_de_la_commune": "EGLY", "libell_d_acheminement": "EGLY", "code_postal": "91520", "coordonnees_gps": [48.5769913812, 2.22093679196], "code_commune_insee": "91207"}, "geometry": {"type": "Point", "coordinates": [2.22093679196, 48.5769913812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cccafa2e0dd975796284d4849bc7ab290fb8f4f", "fields": {"nom_de_la_commune": "EPINAY SOUS SENART", "libell_d_acheminement": "EPINAY SOUS SENART", "code_postal": "91860", "coordonnees_gps": [48.6886159559, 2.51717131334], "code_commune_insee": "91215"}, "geometry": {"type": "Point", "coordinates": [2.51717131334, 48.6886159559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94ac714e6f5a4314996c99c0cdf24df9054aee67", "fields": {"nom_de_la_commune": "ETRECHY", "libell_d_acheminement": "ETRECHY", "code_postal": "91580", "coordonnees_gps": [48.493877819, 2.18164362927], "code_commune_insee": "91226"}, "geometry": {"type": "Point", "coordinates": [2.18164362927, 48.493877819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53567270e9984d40ca2fc8c1828f7f0c05b51aff", "fields": {"nom_de_la_commune": "LA FORET STE CROIX", "libell_d_acheminement": "LA FORET STE CROIX", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91248"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef2814da47c2e3750dbbad63288bb20f88ce01fe", "fields": {"nom_de_la_commune": "GIRONVILLE SUR ESSONNE", "libell_d_acheminement": "GIRONVILLE SUR ESSONNE", "code_postal": "91720", "coordonnees_gps": [48.372712922, 2.35808534023], "code_commune_insee": "91273"}, "geometry": {"type": "Point", "coordinates": [2.35808534023, 48.372712922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4ffe6ca99d37fb8cf9e46bf33342d5ac145f595", "fields": {"nom_de_la_commune": "GOMETZ LA VILLE", "libell_d_acheminement": "GOMETZ LA VILLE", "code_postal": "91400", "coordonnees_gps": [48.7079533558, 2.15419618195], "code_commune_insee": "91274"}, "geometry": {"type": "Point", "coordinates": [2.15419618195, 48.7079533558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69cd5abb10b28504c823fc0e97fbd071ab16ad2c", "fields": {"nom_de_la_commune": "GRIGNY", "libell_d_acheminement": "GRIGNY", "code_postal": "91350", "coordonnees_gps": [48.6569579897, 2.38743847429], "code_commune_insee": "91286"}, "geometry": {"type": "Point", "coordinates": [2.38743847429, 48.6569579897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ecc3ddcf233f8f35c5125eb34e8f7eb49775ac", "fields": {"nom_de_la_commune": "GUIGNEVILLE SUR ESSONNE", "libell_d_acheminement": "GUIGNEVILLE SUR ESSONNE", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91293"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7139e8acd74ae674f4e51cb09f287717f5a98df2", "fields": {"nom_de_la_commune": "LEUDEVILLE", "libell_d_acheminement": "LEUDEVILLE", "code_postal": "91630", "coordonnees_gps": [48.560156386, 2.2827757217], "code_commune_insee": "91332"}, "geometry": {"type": "Point", "coordinates": [2.2827757217, 48.560156386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142fa92d1e7c2df00b70b3fe2d81efdbbb1630e9", "fields": {"nom_de_la_commune": "LISSES", "libell_d_acheminement": "LISSES", "code_postal": "91090", "coordonnees_gps": [48.5966711314, 2.42431627705], "code_commune_insee": "91340"}, "geometry": {"type": "Point", "coordinates": [2.42431627705, 48.5966711314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39b2a1067b7b70bbd97e89d38c12f70cf0ee5d9", "fields": {"nom_de_la_commune": "LONGPONT SUR ORGE", "libell_d_acheminement": "LONGPONT SUR ORGE", "code_postal": "91310", "coordonnees_gps": [48.6316590424, 2.26650021218], "code_commune_insee": "91347"}, "geometry": {"type": "Point", "coordinates": [2.26650021218, 48.6316590424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee083d4e1d9a27c5beda6bdcd7386c1cfdbc5c4e", "fields": {"nom_de_la_commune": "MESPUITS", "libell_d_acheminement": "MESPUITS", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91399"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e2a402a61a01d3a5422d0304d6f5cd3511640d4", "fields": {"nom_de_la_commune": "MONDEVILLE", "libell_d_acheminement": "MONDEVILLE", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91412"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c019462a16772723c31722e7d9705c8fb25a69a", "fields": {"nom_de_la_commune": "MONNERVILLE", "libell_d_acheminement": "MONNERVILLE", "code_postal": "91930", "coordonnees_gps": [48.3476477675, 2.03765545303], "code_commune_insee": "91414"}, "geometry": {"type": "Point", "coordinates": [2.03765545303, 48.3476477675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bab8840956fbc19b718c635b9262fba98a240db1", "fields": {"nom_de_la_commune": "MONTGERON", "libell_d_acheminement": "MONTGERON", "code_postal": "91230", "coordonnees_gps": [48.6960101717, 2.46195353676], "code_commune_insee": "91421"}, "geometry": {"type": "Point", "coordinates": [2.46195353676, 48.6960101717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee49ea8dfafb09c4569d26fb9748857f685b2304", "fields": {"nom_de_la_commune": "MONTLHERY", "libell_d_acheminement": "MONTLHERY", "code_postal": "91310", "coordonnees_gps": [48.6316590424, 2.26650021218], "code_commune_insee": "91425"}, "geometry": {"type": "Point", "coordinates": [2.26650021218, 48.6316590424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe801b1567eb8ac899432bebbac17c297aa3ced8", "fields": {"nom_de_la_commune": "MORANGIS", "libell_d_acheminement": "MORANGIS", "code_postal": "91420", "coordonnees_gps": [48.70235449, 2.3370579024], "code_commune_insee": "91432"}, "geometry": {"type": "Point", "coordinates": [2.3370579024, 48.70235449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dce25fd0b1b2fed905165b78a55c47f914304316", "fields": {"nom_de_la_commune": "MORSANG SUR SEINE", "libell_d_acheminement": "MORSANG SUR SEINE", "code_postal": "91250", "coordonnees_gps": [48.6186905603, 2.50655101918], "code_commune_insee": "91435"}, "geometry": {"type": "Point", "coordinates": [2.50655101918, 48.6186905603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e771f2aea0bd1c6ab2cc770bbbd442fb6af1e1", "fields": {"nom_de_la_commune": "ORMOY", "libell_d_acheminement": "ORMOY", "code_postal": "91540", "coordonnees_gps": [48.5608303581, 2.41959099954], "code_commune_insee": "91468"}, "geometry": {"type": "Point", "coordinates": [2.41959099954, 48.5608303581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27c19a352315a4be4d2d480b4b596d066f0565bf", "fields": {"nom_de_la_commune": "PLESSIS ST BENOIST", "libell_d_acheminement": "PLESSIS ST BENOIST", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91495"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8e0a297f9df36a1de0bfece96e549f6ee21fbb8", "fields": {"nom_de_la_commune": "QUINCY SOUS SENART", "libell_d_acheminement": "QUINCY SOUS SENART", "code_postal": "91480", "coordonnees_gps": [48.6761652188, 2.54624238092], "code_commune_insee": "91514"}, "geometry": {"type": "Point", "coordinates": [2.54624238092, 48.6761652188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac55ebf494e65bbae11f3865e2e92b2ffd0c996", "fields": {"nom_de_la_commune": "ST AUBIN", "libell_d_acheminement": "ST AUBIN", "code_postal": "91190", "coordonnees_gps": [48.709665031, 2.12766544978], "code_commune_insee": "91538"}, "geometry": {"type": "Point", "coordinates": [2.12766544978, 48.709665031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39ccfcc3689d9e53c83eb9d311be876532619624", "fields": {"nom_de_la_commune": "ST MAURICE MONTCOURONNE", "libell_d_acheminement": "ST MAURICE MONTCOURONNE", "code_postal": "91530", "coordonnees_gps": [48.5543371976, 2.10205368335], "code_commune_insee": "91568"}, "geometry": {"type": "Point", "coordinates": [2.10205368335, 48.5543371976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91be3b966568892392f13f2bd13362f13519371f", "fields": {"nom_de_la_commune": "SERMAISE", "libell_d_acheminement": "SERMAISE", "code_postal": "91530", "coordonnees_gps": [48.5543371976, 2.10205368335], "code_commune_insee": "91593"}, "geometry": {"type": "Point", "coordinates": [2.10205368335, 48.5543371976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "285a55e1d328e080e6848050d9165ef3b7fa6d34", "fields": {"nom_de_la_commune": "SOISY SUR SEINE", "libell_d_acheminement": "SOISY SUR SEINE", "code_postal": "91450", "coordonnees_gps": [48.6546477863, 2.47449221609], "code_commune_insee": "91600"}, "geometry": {"type": "Point", "coordinates": [2.47449221609, 48.6546477863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15349eaa603652a3e8997a07d23f09f2fd41879", "fields": {"nom_de_la_commune": "SOUZY LA BRICHE", "libell_d_acheminement": "SOUZY LA BRICHE", "code_postal": "91580", "coordonnees_gps": [48.493877819, 2.18164362927], "code_commune_insee": "91602"}, "geometry": {"type": "Point", "coordinates": [2.18164362927, 48.493877819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d21a22ff2c664702196024200777a5e5a9bd6048", "fields": {"code_postal": "91740", "code_commune_insee": "91613", "libell_d_acheminement": "CONGERVILLE THIONVILLE", "ligne_5": "CONGERVILLE", "nom_de_la_commune": "CONGERVILLE THIONVILLE", "coordonnees_gps": [48.3700823354, 2.00542911555]}, "geometry": {"type": "Point", "coordinates": [2.00542911555, 48.3700823354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01cb2ee63b14527235f1133ab7fde50cfd4f299e", "fields": {"nom_de_la_commune": "TIGERY", "libell_d_acheminement": "TIGERY", "code_postal": "91250", "coordonnees_gps": [48.6186905603, 2.50655101918], "code_commune_insee": "91617"}, "geometry": {"type": "Point", "coordinates": [2.50655101918, 48.6186905603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38a87e2c8cc1a78b431cc9a34a6b51788e5a247", "fields": {"nom_de_la_commune": "VARENNES JARCY", "libell_d_acheminement": "VARENNES JARCY", "code_postal": "91480", "coordonnees_gps": [48.6761652188, 2.54624238092], "code_commune_insee": "91631"}, "geometry": {"type": "Point", "coordinates": [2.54624238092, 48.6761652188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec58872d1d3e51125720061b96a7de677a8f6298", "fields": {"nom_de_la_commune": "VERRIERES LE BUISSON", "libell_d_acheminement": "VERRIERES LE BUISSON", "code_postal": "91370", "coordonnees_gps": [48.75027628, 2.25164599856], "code_commune_insee": "91645"}, "geometry": {"type": "Point", "coordinates": [2.25164599856, 48.75027628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eedea85a4c65f4cefae57084fdaaf0951d311ea8", "fields": {"nom_de_la_commune": "VIDELLES", "libell_d_acheminement": "VIDELLES", "code_postal": "91890", "coordonnees_gps": [48.4684848047, 2.42141567255], "code_commune_insee": "91654"}, "geometry": {"type": "Point", "coordinates": [2.42141567255, 48.4684848047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "372278c690de349f1aae4eb14c8f3ff54714e98a", "fields": {"nom_de_la_commune": "LA VILLE DU BOIS", "libell_d_acheminement": "LA VILLE DU BOIS", "code_postal": "91620", "coordonnees_gps": [48.6612886154, 2.24603935989], "code_commune_insee": "91665"}, "geometry": {"type": "Point", "coordinates": [2.24603935989, 48.6612886154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b568bae173b1981475d48a2c2ef4ff9236989710", "fields": {"nom_de_la_commune": "VILLIERS SUR ORGE", "libell_d_acheminement": "VILLIERS SUR ORGE", "code_postal": "91700", "coordonnees_gps": [48.6398858055, 2.34146847544], "code_commune_insee": "91685"}, "geometry": {"type": "Point", "coordinates": [2.34146847544, 48.6398858055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce86983c362cc2f102de32cdd5e72a29433fcd08", "fields": {"nom_de_la_commune": "ASNIERES SUR SEINE", "libell_d_acheminement": "ASNIERES SUR SEINE", "code_postal": "92600", "coordonnees_gps": [48.915464529, 2.28801082145], "code_commune_insee": "92004"}, "geometry": {"type": "Point", "coordinates": [2.28801082145, 48.915464529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7123417a708cb98beb6da25771954cd7e67b82db", "fields": {"nom_de_la_commune": "BOULOGNE BILLANCOURT", "libell_d_acheminement": "BOULOGNE BILLANCOURT", "code_postal": "92100", "coordonnees_gps": [48.8364966292, 2.23867632216], "code_commune_insee": "92012"}, "geometry": {"type": "Point", "coordinates": [2.23867632216, 48.8364966292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39e6aaaf35c5d0d2f5e91afcae53139d625fd378", "fields": {"nom_de_la_commune": "BOURG LA REINE", "libell_d_acheminement": "BOURG LA REINE", "code_postal": "92340", "coordonnees_gps": [48.7804118277, 2.31747787876], "code_commune_insee": "92014"}, "geometry": {"type": "Point", "coordinates": [2.31747787876, 48.7804118277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21284aff5f90fe79d1105a919a23cb6c8c0ba3f5", "fields": {"nom_de_la_commune": "CLICHY", "libell_d_acheminement": "CLICHY", "code_postal": "92110", "coordonnees_gps": [48.9036376273, 2.30599418937], "code_commune_insee": "92024"}, "geometry": {"type": "Point", "coordinates": [2.30599418937, 48.9036376273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38166454bf8fba05e53842be6c813e3814204755", "fields": {"nom_de_la_commune": "LA GARENNE COLOMBES", "libell_d_acheminement": "LA GARENNE COLOMBES", "code_postal": "92250", "coordonnees_gps": [48.9070465246, 2.24485945089], "code_commune_insee": "92035"}, "geometry": {"type": "Point", "coordinates": [2.24485945089, 48.9070465246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0edc5558bd26ac5f5747a4461c790a690be0270e", "fields": {"nom_de_la_commune": "GENNEVILLIERS", "libell_d_acheminement": "GENNEVILLIERS", "code_postal": "92230", "coordonnees_gps": [48.9345124152, 2.29467414472], "code_commune_insee": "92036"}, "geometry": {"type": "Point", "coordinates": [2.29467414472, 48.9345124152]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e124a2df782402f43018c06bdb2a1bc8b9af6ccf", "fields": {"code_postal": "01260", "code_commune_insee": "01187", "libell_d_acheminement": "HAUT VALROMEY", "ligne_5": "HOTONNES", "nom_de_la_commune": "HAUT VALROMEY", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b74f58b1bf09f73f5fe8c641f4740349216c292", "fields": {"nom_de_la_commune": "HAUTECOURT ROMANECHE", "libell_d_acheminement": "HAUTECOURT ROMANECHE", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01184"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a57c99460908c74c7a9c2cb2f9c55c7f2e7ec2", "fields": {"nom_de_la_commune": "HAUTEVILLE LOMPNES", "libell_d_acheminement": "HAUTEVILLE LOMPNES", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01185"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "383a02e9923baa0defe2b8770fb22cfeab804efb", "fields": {"nom_de_la_commune": "FERNEY VOLTAIRE", "libell_d_acheminement": "FERNEY VOLTAIRE", "code_postal": "01210", "coordonnees_gps": [46.2774426572, 6.10074151675], "code_commune_insee": "01160"}, "geometry": {"type": "Point", "coordinates": [6.10074151675, 46.2774426572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5df0563c8646e2a71111e45c7f44ee1a3989b5e", "fields": {"nom_de_la_commune": "GERMAGNAT", "libell_d_acheminement": "GERMAGNAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01172"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c423f419f09407851119e03e2f180d8bb17241d", "fields": {"nom_de_la_commune": "FOISSIAT", "libell_d_acheminement": "FOISSIAT", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01163"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e7e1eb4c9f603e9a4f29563f5e74c1946f5faf", "fields": {"nom_de_la_commune": "IZERNORE", "libell_d_acheminement": "IZERNORE", "code_postal": "01580", "coordonnees_gps": [46.2402104429, 5.54908625912], "code_commune_insee": "01192"}, "geometry": {"type": "Point", "coordinates": [5.54908625912, 46.2402104429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965d3832fef841cd4311d539834fee46db5a8f2b", "fields": {"nom_de_la_commune": "DOUVRES", "libell_d_acheminement": "DOUVRES", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01149"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d87aec6fccf407d6acc606b3c03a5c864a27fd56", "fields": {"nom_de_la_commune": "HOSTIAZ", "libell_d_acheminement": "HOSTIAZ", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01186"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab587c85b7a2b4bf475def3b365116621237cdfc", "fields": {"nom_de_la_commune": "GRILLY", "libell_d_acheminement": "GRILLY", "code_postal": "01220", "coordonnees_gps": [46.3657930813, 6.1147054957], "code_commune_insee": "01180"}, "geometry": {"type": "Point", "coordinates": [6.1147054957, 46.3657930813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11799a987fa17dd7a770ed1087d6e96ef0113cab", "fields": {"nom_de_la_commune": "CORMORANCHE SUR SAONE", "libell_d_acheminement": "CORMORANCHE SUR SAONE", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01123"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ca426ad33e17c3afbcab6a12d0a370e208dccb", "fields": {"nom_de_la_commune": "CRAS SUR REYSSOUZE", "libell_d_acheminement": "CRAS SUR REYSSOUZE", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01130"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03980f69d7feb9f8c062ffd660a0b2a02748822c", "fields": {"nom_de_la_commune": "DIVONNE LES BAINS", "libell_d_acheminement": "DIVONNE LES BAINS", "code_postal": "01220", "coordonnees_gps": [46.3657930813, 6.1147054957], "code_commune_insee": "01143"}, "geometry": {"type": "Point", "coordinates": [6.1147054957, 46.3657930813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e8954615adcbedd78221fc66bba3dabfb1153a4", "fields": {"nom_de_la_commune": "COURMANGOUX", "libell_d_acheminement": "COURMANGOUX", "code_postal": "01370", "coordonnees_gps": [46.2853749129, 5.32614321781], "code_commune_insee": "01127"}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d2b5d36396b97356d5f1d5446f0315c620b0f8", "fields": {"nom_de_la_commune": "CHAVORNAY", "libell_d_acheminement": "CHAVORNAY", "code_postal": "01510", "coordonnees_gps": [45.8480243468, 5.61949053703], "code_commune_insee": "01097"}, "geometry": {"type": "Point", "coordinates": [5.61949053703, 45.8480243468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9664965e24328e77a82274a0bad5883fa424f41", "fields": {"nom_de_la_commune": "CHEVROUX", "libell_d_acheminement": "CHEVROUX", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01102"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06676e6f4f5f51c982448adf81f63aee1bb46b1c", "fields": {"nom_de_la_commune": "JUMEL", "libell_d_acheminement": "JUMEL", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80452"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82fe9218b5051af407a504987541125f086937d5", "fields": {"code_postal": "80430", "code_commune_insee": "80456", "libell_d_acheminement": "LAFRESGUIMONT ST MARTIN", "ligne_5": "GUIBERMESNIL", "nom_de_la_commune": "LAFRESGUIMONT ST MARTIN", "coordonnees_gps": [49.8385398523, 1.78216116421]}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bd29f095eb6855da7a25894eed2c1324875b54f", "fields": {"nom_de_la_commune": "LAMOTTE BULEUX", "libell_d_acheminement": "LAMOTTE BULEUX", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80462"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6604a37d4845183f6ddc82b12f19c9ef911545d1", "fields": {"nom_de_la_commune": "LANCHES ST HILAIRE", "libell_d_acheminement": "LANCHES ST HILAIRE", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80466"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20794999c09a028ecbd5649cabb27b7abbca262b", "fields": {"nom_de_la_commune": "LAVIEVILLE", "libell_d_acheminement": "LAVIEVILLE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80468"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae11bb576d0e49852761c52a541820d43bc64d2c", "fields": {"nom_de_la_commune": "LIANCOURT FOSSE", "libell_d_acheminement": "LIANCOURT FOSSE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80473"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9834202965f13c29dfb81ada7e8aa3458d674837", "fields": {"nom_de_la_commune": "LIERAMONT", "libell_d_acheminement": "LIERAMONT", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80475"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0d02bab9c7a1eb476558573094c65ba1529ff64", "fields": {"nom_de_la_commune": "LIGNIERES", "libell_d_acheminement": "LIGNIERES LES ROYE", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80478"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb666e6e659fff488b93dd0e46dbe23ec6be1341", "fields": {"nom_de_la_commune": "LONG", "libell_d_acheminement": "LONG", "code_postal": "80510", "coordonnees_gps": [50.0330637089, 1.96398779446], "code_commune_insee": "80486"}, "geometry": {"type": "Point", "coordinates": [1.96398779446, 50.0330637089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793db16e890235ce6ed0d2ad86d67ee3f3c5bf92", "fields": {"nom_de_la_commune": "LONGPRE LES CORPS SAINTS", "libell_d_acheminement": "LONGPRE LES CORPS SAINTS", "code_postal": "80510", "coordonnees_gps": [50.0330637089, 1.96398779446], "code_commune_insee": "80488"}, "geometry": {"type": "Point", "coordinates": [1.96398779446, 50.0330637089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef778c5376be649385bd7cc37221f6b610a747d", "fields": {"nom_de_la_commune": "LONGUEAU", "libell_d_acheminement": "LONGUEAU", "code_postal": "80330", "coordonnees_gps": [49.8585815171, 2.34498416532], "code_commune_insee": "80489"}, "geometry": {"type": "Point", "coordinates": [2.34498416532, 49.8585815171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac360e51103f14067ce3f08f11099832fd1f84c0", "fields": {"nom_de_la_commune": "MACHY", "libell_d_acheminement": "MACHY", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80497"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a1389f8b5a715ded7e6f57ec5f0244eefba5052", "fields": {"nom_de_la_commune": "MAUREPAS", "libell_d_acheminement": "MAUREPAS", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80521"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ccc90c349d70013c12ca121b85e347e57c7f4d5", "fields": {"nom_de_la_commune": "LE MAZIS", "libell_d_acheminement": "LE MAZIS", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80522"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fe94779149a3e36ae6d039ccafa00cbfc9e2a6d", "fields": {"nom_de_la_commune": "MEHARICOURT", "libell_d_acheminement": "MEHARICOURT", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80524"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07f61e5bc0e9251c429ef72f6fe7c00e018b4cac", "fields": {"nom_de_la_commune": "MESNIL MARTINSART", "libell_d_acheminement": "MESNIL MARTINSART", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80540"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d282a3f812c42b860310cb9dd890438333a8fc", "fields": {"code_postal": "80540", "code_commune_insee": "80554", "libell_d_acheminement": "MOLLIENS DREUIL", "ligne_5": "DREUIL LES MOLLIENS", "nom_de_la_commune": "MOLLIENS DREUIL", "coordonnees_gps": [49.872686231, 2.06894684401]}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a1f52756b17e542fa740ffeed3bfef90ab1bb86", "fields": {"nom_de_la_commune": "MONCHY LAGACHE", "libell_d_acheminement": "MONCHY LAGACHE", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80555"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2400e1e2aa7ad9a8396feddd5561787b71ca146", "fields": {"nom_de_la_commune": "MONTIGNY LES JONGLEURS", "libell_d_acheminement": "MONTIGNY LES JONGLEURS", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80563"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eee792f9ef9101c918f1bb5e78958b57fb63f1b8", "fields": {"nom_de_la_commune": "MOREUIL", "libell_d_acheminement": "MOREUIL", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80570"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa16d11c431cf70fcfbff0422f745aa7e539a18b", "fields": {"code_postal": "80290", "code_commune_insee": "80582", "libell_d_acheminement": "NAMPS MAISNIL", "ligne_5": "TAISNIL", "nom_de_la_commune": "NAMPS MAISNIL", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9988c3614d64df069ca0e5fee0cb55f1afa8221b", "fields": {"nom_de_la_commune": "NAMPTY", "libell_d_acheminement": "NAMPTY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80583"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2af3baa8a4a1aa0cb9395a1742bd74138494be0e", "fields": {"nom_de_la_commune": "NEUILLY L HOPITAL", "libell_d_acheminement": "NEUILLY L HOPITAL", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80590"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f153d085726abafa6856841ff3832b7ef9afa8", "fields": {"nom_de_la_commune": "NOUVION", "libell_d_acheminement": "NOUVION", "code_postal": "80860", "coordonnees_gps": [50.2062809553, 1.7329737582], "code_commune_insee": "80598"}, "geometry": {"type": "Point", "coordinates": [1.7329737582, 50.2062809553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b2842eeb693b09b5b30f19a87892f49de2eb9ca", "fields": {"nom_de_la_commune": "NOYELLES SUR MER", "libell_d_acheminement": "NOYELLES SUR MER", "code_postal": "80860", "coordonnees_gps": [50.2062809553, 1.7329737582], "code_commune_insee": "80600"}, "geometry": {"type": "Point", "coordinates": [1.7329737582, 50.2062809553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16ee38e472e63d1a031bcbe0802616c759f930cc", "fields": {"nom_de_la_commune": "OMIECOURT", "libell_d_acheminement": "OMIECOURT", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80608"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59da81391ba71de5b7ee611351c05a1263eb014d", "fields": {"nom_de_la_commune": "OUTREBOIS", "libell_d_acheminement": "OUTREBOIS", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80614"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22d4fdea738ea667a2d54506a6aa89f6f6b8e4d4", "fields": {"nom_de_la_commune": "PERNOIS", "libell_d_acheminement": "PERNOIS", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80619"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d65f51e88e0b4fecd0be93e594ff5fce21cf9e8", "fields": {"nom_de_la_commune": "PIERREPONT SUR AVRE", "libell_d_acheminement": "PIERREPONT SUR AVRE", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80625"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "932a3ea060082e321dcfaeec2b771e6d237cb134", "fields": {"nom_de_la_commune": "PLACHY BUYON", "libell_d_acheminement": "PLACHY BUYON", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80627"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d7f69a81f5a4b299cd4bfe59483ef2a47d2c92d", "fields": {"nom_de_la_commune": "POIX DE PICARDIE", "libell_d_acheminement": "POIX DE PICARDIE", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80630"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f406134d327bfbdfee83f10368d892bd3886e7f", "fields": {"nom_de_la_commune": "PONT DE METZ", "libell_d_acheminement": "PONT DE METZ", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80632"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8c11982a70e37f5e20311bcccd663eb7b0ce6fd", "fields": {"nom_de_la_commune": "PONT REMY", "libell_d_acheminement": "PONT REMY", "code_postal": "80580", "coordonnees_gps": [50.0580760392, 1.88626484435], "code_commune_insee": "80635"}, "geometry": {"type": "Point", "coordinates": [1.88626484435, 50.0580760392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f0870338c2493aee61ff2dfea6633fea1bb27b", "fields": {"nom_de_la_commune": "PORT LE GRAND", "libell_d_acheminement": "PORT LE GRAND", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80637"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5783246094ef4950de8b86f37b3dc33cfa2cb628", "fields": {"nom_de_la_commune": "POTTE", "libell_d_acheminement": "POTTE", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80638"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9af70c05604f2879d8db7cf4c06c52d91212259", "fields": {"nom_de_la_commune": "QUERRIEU", "libell_d_acheminement": "QUERRIEU", "code_postal": "80115", "coordonnees_gps": [49.9397690617, 2.43129149377], "code_commune_insee": "80650"}, "geometry": {"type": "Point", "coordinates": [2.43129149377, 49.9397690617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7cdb29b75b1735889f2115559b4f358c5130148", "fields": {"nom_de_la_commune": "QUESNOY SUR AIRAINES", "libell_d_acheminement": "QUESNOY SUR AIRAINES", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80655"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0a3bc8f0d5b7fc4da65d50819ded736f78afbd4", "fields": {"nom_de_la_commune": "RANCOURT", "libell_d_acheminement": "RANCOURT", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80664"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42bb1358d6401a9982a5ab5ff87d32dbe88da03b", "fields": {"nom_de_la_commune": "ROISEL", "libell_d_acheminement": "ROISEL", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80677"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ea997bb882b63fcfc2d4258a070cbe5c4e618ed", "fields": {"nom_de_la_commune": "ROUY LE GRAND", "libell_d_acheminement": "ROUY LE GRAND", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80683"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac9fb1f000b97d6cb451cbb90b7866f932cc849d", "fields": {"nom_de_la_commune": "ROUY LE PETIT", "libell_d_acheminement": "ROUY LE PETIT", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80684"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3011d370c524964ccf1e3aa05dee2f1aed73a07", "fields": {"nom_de_la_commune": "ROYE", "libell_d_acheminement": "ROYE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80685"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9d329e8935f5c1201133be1d11894a6afa4f37b", "fields": {"nom_de_la_commune": "SAILLY FLIBEAUCOURT", "libell_d_acheminement": "SAILLY FLIBEAUCOURT", "code_postal": "80970", "coordonnees_gps": [50.1790808448, 1.77059385425], "code_commune_insee": "80692"}, "geometry": {"type": "Point", "coordinates": [1.77059385425, 50.1790808448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db9c4aca1da0a5c2659495eb0dd5ab6285a3162", "fields": {"nom_de_la_commune": "SAINS EN AMIENOIS", "libell_d_acheminement": "SAINS EN AMIENOIS", "code_postal": "80680", "coordonnees_gps": [49.8142899245, 2.29952854065], "code_commune_insee": "80696"}, "geometry": {"type": "Point", "coordinates": [2.29952854065, 49.8142899245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e551d9ddf5849a90093c6dc99c834cf58dfddab0", "fields": {"nom_de_la_commune": "ST ACHEUL", "libell_d_acheminement": "ST ACHEUL", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80697"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3930521595e0b8865c595aa1d26075c86d68671e", "fields": {"nom_de_la_commune": "ST AUBIN MONTENOY", "libell_d_acheminement": "ST AUBIN MONTENOY", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80698"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab9dfd942c37b3d2a12d8eec8f6e969c0bf3758", "fields": {"nom_de_la_commune": "ST AUBIN RIVIERE", "libell_d_acheminement": "ST AUBIN RIVIERE", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80699"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3efb5092432598d175319dcf8f380ace8e301515", "fields": {"nom_de_la_commune": "ST GERMAIN SUR BRESLE", "libell_d_acheminement": "ST GERMAIN SUR BRESLE", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80703"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddc679f62ff2f9a420eb130cc45fd27e61e9052f", "fields": {"code_postal": "80430", "code_commune_insee": "80703", "libell_d_acheminement": "ST GERMAIN SUR BRESLE", "ligne_5": "GUEMICOURT", "nom_de_la_commune": "ST GERMAIN SUR BRESLE", "coordonnees_gps": [49.8385398523, 1.78216116421]}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d353dbed79a7f64c846952fab45b5f6628eb65f6", "fields": {"nom_de_la_commune": "ST MAXENT", "libell_d_acheminement": "ST MAXENT", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80710"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f0889bc5750ef4779db17e2e383846cadcb7d4", "fields": {"nom_de_la_commune": "ST QUENTIN LA MOTTE CROIX AU BAILLY", "libell_d_acheminement": "ST QUENTIN LA MOTTE CROIX BAILLY", "code_postal": "80880", "coordonnees_gps": [50.073406246, 1.4522927358], "code_commune_insee": "80714"}, "geometry": {"type": "Point", "coordinates": [1.4522927358, 50.073406246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06bcf8694513a111dde6156540f3723c0f5566a2", "fields": {"nom_de_la_commune": "SALEUX", "libell_d_acheminement": "SALEUX", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80724"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fb61db425aa56f391f5c2f07bdb73e29517c0b8", "fields": {"nom_de_la_commune": "SAULCHOY SOUS POIX", "libell_d_acheminement": "SAULCHOY SOUS POIX", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80728"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16c783b86498606009e9e522feab8ec4cf09eaf1", "fields": {"nom_de_la_commune": "SEUX", "libell_d_acheminement": "SEUX", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80735"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e68bd4316ecf5564f1245f097e212d1eb4d2dbf2", "fields": {"nom_de_la_commune": "SOREL EN VIMEU", "libell_d_acheminement": "SOREL EN VIMEU", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80736"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de3985494cfd81b393a31411ef4977f48677ea28", "fields": {"nom_de_la_commune": "SOUES", "libell_d_acheminement": "SOUES", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80738"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d95ac9c4d4f2e54b92a053c4dce8bc8d22a4a8a", "fields": {"nom_de_la_commune": "SOURDON", "libell_d_acheminement": "SOURDON", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80740"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9390a3e3416b801f1671d73044e15b0af637afa", "fields": {"nom_de_la_commune": "THEZY GLIMONT", "libell_d_acheminement": "THEZY GLIMONT", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80752"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68d7c363f0dcd8c630fa64fa99308811f37ab880", "fields": {"nom_de_la_commune": "THIEPVAL", "libell_d_acheminement": "THIEPVAL", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80753"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfcbbc81db510319e7cf8fee4fe7fd1e5674fab8", "fields": {"nom_de_la_commune": "THIEULLOY LA VILLE", "libell_d_acheminement": "THIEULLOY LA VILLE", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80755"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a5acc7b4c72af7ca7fbefad32f898caf7d84c82", "fields": {"nom_de_la_commune": "TILLOY FLORIVILLE", "libell_d_acheminement": "TILLOY FLORIVILLE", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80760"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8799c806cea470ce0b928e4449601828d7b169a7", "fields": {"nom_de_la_commune": "LE TITRE", "libell_d_acheminement": "LE TITRE", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80763"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8658f9ddc51082a02c64dd4ccdf8e458fb8fb846", "fields": {"nom_de_la_commune": "TOURS EN VIMEU", "libell_d_acheminement": "TOURS EN VIMEU", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80765"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eea6c6f73fd864f4fe0f10afbf6128f45522c60", "fields": {"nom_de_la_commune": "TOUTENCOURT", "libell_d_acheminement": "TOUTENCOURT", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80766"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cdcbe7c3187d6a8ca5be18afa2c6d7489f3c8be", "fields": {"nom_de_la_commune": "LE TRANSLAY", "libell_d_acheminement": "LE TRANSLAY", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80767"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3f7dfdcc61ca5268df33329ec778e06d394b3df", "fields": {"nom_de_la_commune": "UGNY L EQUIPEE", "libell_d_acheminement": "UGNY L EQUIPEE", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80771"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14d59e25b0f1024c777cdf32454f9437fe59ad69", "fields": {"nom_de_la_commune": "VALINES", "libell_d_acheminement": "VALINES", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80775"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "016711e9acdef4974c859e20ac5800dbaecc7f08", "fields": {"nom_de_la_commune": "VAUVILLERS", "libell_d_acheminement": "VAUVILLERS", "code_postal": "80131", "coordonnees_gps": [49.853048301, 2.69339669252], "code_commune_insee": "80781"}, "geometry": {"type": "Point", "coordinates": [2.69339669252, 49.853048301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb211426caf003f9b54595c306b84b407c3e59da", "fields": {"nom_de_la_commune": "VECQUEMONT", "libell_d_acheminement": "VECQUEMONT", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80785"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21fb7ddac5e58e42627a847816af8df1a518a38c", "fields": {"nom_de_la_commune": "VERGIES", "libell_d_acheminement": "VERGIES", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80788"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baffade6d7206a287b459ee582f4e8d418a9bfc2", "fields": {"nom_de_la_commune": "LA VICOGNE", "libell_d_acheminement": "LA VICOGNE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80792"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c1a18b89e63495d41e4fa360b50d42df1b265f1", "fields": {"nom_de_la_commune": "VILLE SUR ANCRE", "libell_d_acheminement": "VILLE SUR ANCRE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80807"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb6a03488c084f5b85cdcbcfe8698954621749eb", "fields": {"nom_de_la_commune": "VOYENNES", "libell_d_acheminement": "VOYENNES", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80811"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "247ccc86992282de96d305671bbda7c55ee1bda1", "fields": {"nom_de_la_commune": "VRELY", "libell_d_acheminement": "VRELY", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80814"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6d97a28e392ef3ef6cd975d6a6a327a5734dee9", "fields": {"nom_de_la_commune": "WARLOY BAILLON", "libell_d_acheminement": "WARLOY BAILLON", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80820"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f3241558e36129929bdfd94a0f5e708dcc8e247", "fields": {"nom_de_la_commune": "YVRENCH", "libell_d_acheminement": "YVRENCH", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80832"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d694ab0564bfa313516dfd244ffe5c7cd51d3cd3", "fields": {"nom_de_la_commune": "AIGUEFONDE", "libell_d_acheminement": "AIGUEFONDE", "code_postal": "81200", "coordonnees_gps": [43.4762564535, 2.36622372237], "code_commune_insee": "81002"}, "geometry": {"type": "Point", "coordinates": [2.36622372237, 43.4762564535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a7e18c5098c75084b465952a02218765e9275f0", "fields": {"nom_de_la_commune": "ALGANS", "libell_d_acheminement": "ALGANS", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81006"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96453392a94709e5ee188e0d325f8fbb2fe50bb0", "fields": {"nom_de_la_commune": "ANDILLAC", "libell_d_acheminement": "ANDILLAC", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81012"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd27784deb40a4441c74d56dd7101c9a542950cd", "fields": {"nom_de_la_commune": "AUSSILLON", "libell_d_acheminement": "AUSSILLON", "code_postal": "81200", "coordonnees_gps": [43.4762564535, 2.36622372237], "code_commune_insee": "81021"}, "geometry": {"type": "Point", "coordinates": [2.36622372237, 43.4762564535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c64855ed6eefa3d46c3e89494e733f33255c30a", "fields": {"nom_de_la_commune": "BELLEGARDE MARSAL", "libell_d_acheminement": "BELLEGARDE MARSAL", "code_postal": "81430", "coordonnees_gps": [43.9055720904, 2.35289359915], "code_commune_insee": "81026"}, "geometry": {"type": "Point", "coordinates": [2.35289359915, 43.9055720904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18c0b005c95dd0a775817702ee77e1b3ded92617", "fields": {"nom_de_la_commune": "BOISSEZON", "libell_d_acheminement": "BOISSEZON", "code_postal": "81490", "coordonnees_gps": [43.5859681102, 2.3789399334], "code_commune_insee": "81034"}, "geometry": {"type": "Point", "coordinates": [2.3789399334, 43.5859681102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "457e4a6577450299d6a32e29cf6b34dbcd1e34a8", "fields": {"nom_de_la_commune": "LES CABANNES", "libell_d_acheminement": "LES CABANNES", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81045"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720758881bee8b30d695dc47a3d3484dcd67509d", "fields": {"nom_de_la_commune": "CAGNAC LES MINES", "libell_d_acheminement": "CAGNAC LES MINES", "code_postal": "81130", "coordonnees_gps": [43.9981450368, 2.08071282625], "code_commune_insee": "81048"}, "geometry": {"type": "Point", "coordinates": [2.08071282625, 43.9981450368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd7f8c810a836a00933459536a82eee13126f38d", "fields": {"nom_de_la_commune": "CAMBON", "libell_d_acheminement": "CAMBON D ALBI", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81052"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5435b4f58cb4dfdb10a091f4572048e4100b6bf", "fields": {"code_postal": "81260", "code_commune_insee": "81062", "libell_d_acheminement": "FONTRIEU", "ligne_5": "CASTELNAU DE BRASSAC", "nom_de_la_commune": "FONTRIEU", "coordonnees_gps": [43.6113142668, 2.53318559265]}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "854b72f4d647075167e64291258156a52297df75", "fields": {"nom_de_la_commune": "CUQ", "libell_d_acheminement": "CUQ LES VIELMUR", "code_postal": "81570", "coordonnees_gps": [43.6265358099, 2.11305991393], "code_commune_insee": "81075"}, "geometry": {"type": "Point", "coordinates": [2.11305991393, 43.6265358099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c42426e7c375ffe40538d175c83e2bb43cd1894", "fields": {"nom_de_la_commune": "DENAT", "libell_d_acheminement": "DENAT", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81079"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe06905187f63725b46e23867069e7dcd5331993", "fields": {"nom_de_la_commune": "DURFORT", "libell_d_acheminement": "DURFORT", "code_postal": "81540", "coordonnees_gps": [43.443120414, 2.07821163286], "code_commune_insee": "81083"}, "geometry": {"type": "Point", "coordinates": [2.07821163286, 43.443120414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b6e0ed51d4c8ee5a9c315eb9ebf1ca891a7d6b", "fields": {"nom_de_la_commune": "FENOLS", "libell_d_acheminement": "FENOLS", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81090"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e2ce518cdf90560ee9871020a56c082e4420961", "fields": {"nom_de_la_commune": "FLORENTIN", "libell_d_acheminement": "FLORENTIN", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81093"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b2285d6c8a67211025e8f3bdc89d0548c456be3", "fields": {"nom_de_la_commune": "FREJAIROLLES", "libell_d_acheminement": "FREJAIROLLES", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81097"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ceb8317d3aa7056bea943cd94e78094239be065", "fields": {"nom_de_la_commune": "GIROUSSENS", "libell_d_acheminement": "GIROUSSENS", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81104"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8461d742efd966473a0bdbc7c89976b4aa8b659f", "fields": {"nom_de_la_commune": "GRAULHET", "libell_d_acheminement": "GRAULHET", "code_postal": "81300", "coordonnees_gps": [43.7690659575, 2.00556233123], "code_commune_insee": "81105"}, "geometry": {"type": "Point", "coordinates": [2.00556233123, 43.7690659575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b58aa4ab725c33b7d354d22dc7f178eb8e4e561", "fields": {"nom_de_la_commune": "GRAZAC", "libell_d_acheminement": "GRAZAC", "code_postal": "81800", "coordonnees_gps": [43.8337179111, 1.69697473698], "code_commune_insee": "81106"}, "geometry": {"type": "Point", "coordinates": [1.69697473698, 43.8337179111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc084d175d41c67aca899dce42011461c2a5362", "fields": {"nom_de_la_commune": "LABASTIDE DE LEVIS", "libell_d_acheminement": "LABASTIDE DE LEVIS", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81112"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9ccc8ced2bd83e32a653984b00d192d3245bc4", "fields": {"nom_de_la_commune": "LABASTIDE DENAT", "libell_d_acheminement": "LABASTIDE DENAT", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81113"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f8e7c87640c18b02563dbc233533bb297e3b08", "fields": {"nom_de_la_commune": "LABASTIDE GABAUSSE", "libell_d_acheminement": "LABASTIDE GABAUSSE", "code_postal": "81400", "coordonnees_gps": [44.0428682167, 2.14865381556], "code_commune_insee": "81114"}, "geometry": {"type": "Point", "coordinates": [2.14865381556, 44.0428682167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9740e73ab25d239eba6703e81da7526b8d416d85", "fields": {"nom_de_la_commune": "LACABAREDE", "libell_d_acheminement": "LACABAREDE", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81121"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd4685eea0144235120781ec56c588d752a0a2e", "fields": {"nom_de_la_commune": "LACAPELLE PINET", "libell_d_acheminement": "LACAPELLE PINET", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81122"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ed9d39b4ead0d761204a6642ceb5010ebd2102c", "fields": {"nom_de_la_commune": "MUSSY SOUS DUN", "libell_d_acheminement": "MUSSY SOUS DUN", "code_postal": "71170", "coordonnees_gps": [46.2126023592, 4.32086009768], "code_commune_insee": "71327"}, "geometry": {"type": "Point", "coordinates": [4.32086009768, 46.2126023592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b148c05b7ecd2bf2be8d27a51acab8c5ecfc489", "fields": {"nom_de_la_commune": "NANTON", "libell_d_acheminement": "NANTON", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71328"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7eec0a6f2ced1885d74ef1e6fbf37b0b04792a8d", "fields": {"nom_de_la_commune": "NEUVY GRANDCHAMP", "libell_d_acheminement": "NEUVY GRANDCHAMP", "code_postal": "71130", "coordonnees_gps": [46.6084802197, 4.0142540123], "code_commune_insee": "71330"}, "geometry": {"type": "Point", "coordinates": [4.0142540123, 46.6084802197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d003dc5db3d48c100584449cd950cd42183f6126", "fields": {"nom_de_la_commune": "OSLON", "libell_d_acheminement": "OSLON", "code_postal": "71380", "coordonnees_gps": [46.7753179262, 4.92186560965], "code_commune_insee": "71333"}, "geometry": {"type": "Point", "coordinates": [4.92186560965, 46.7753179262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "452becfe02b080106549c4f18b08c062aacf58c3", "fields": {"nom_de_la_commune": "OUROUX SUR SAONE", "libell_d_acheminement": "OUROUX SUR SAONE", "code_postal": "71370", "coordonnees_gps": [46.7126638071, 5.00193850124], "code_commune_insee": "71336"}, "geometry": {"type": "Point", "coordinates": [5.00193850124, 46.7126638071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ec4d543a78196e214274c2b3a31c7fefd9aa3bf", "fields": {"nom_de_la_commune": "OZENAY", "libell_d_acheminement": "OZENAY", "code_postal": "71700", "coordonnees_gps": [46.545844055, 4.87188465339], "code_commune_insee": "71338"}, "geometry": {"type": "Point", "coordinates": [4.87188465339, 46.545844055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c257b325dbb166233b6de2aa3df3431d0cc8bd8a", "fields": {"nom_de_la_commune": "PONTOUX", "libell_d_acheminement": "PONTOUX", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71355"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfe2b27aeeee7eb6ae9aab25b373cfa966b68391", "fields": {"nom_de_la_commune": "LE PULEY", "libell_d_acheminement": "LE PULEY", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71363"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb3d3c9cc1f0eedec21c4b07071e349c9e1c3dd", "fields": {"nom_de_la_commune": "RATENELLE", "libell_d_acheminement": "RATENELLE", "code_postal": "71290", "coordonnees_gps": [46.5784304657, 5.00430819509], "code_commune_insee": "71366"}, "geometry": {"type": "Point", "coordinates": [5.00430819509, 46.5784304657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c03aebf44db8a7620d911895efdea67a02710c4e", "fields": {"nom_de_la_commune": "LA ROCHE VINEUSE", "libell_d_acheminement": "LA ROCHE VINEUSE", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71371"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cb4d9f7435cad66e2dd844af509403cb8587535", "fields": {"nom_de_la_commune": "ROSEY", "libell_d_acheminement": "ROSEY", "code_postal": "71390", "coordonnees_gps": [46.7093014111, 4.67452428394], "code_commune_insee": "71374"}, "geometry": {"type": "Point", "coordinates": [4.67452428394, 46.7093014111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40438db92f242f47cdcda8c4ee500c25ca7e3045", "fields": {"nom_de_la_commune": "ROUSSILLON EN MORVAN", "libell_d_acheminement": "ROUSSILLON EN MORVAN", "code_postal": "71550", "coordonnees_gps": [47.0673836602, 4.11662023514], "code_commune_insee": "71376"}, "geometry": {"type": "Point", "coordinates": [4.11662023514, 47.0673836602]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c18622e2cb7f13678788f388dfcf4eca0814ecc", "fields": {"nom_de_la_commune": "ST CHRISTOPHE EN BRESSE", "libell_d_acheminement": "ST CHRISTOPHE EN BRESSE", "code_postal": "71370", "coordonnees_gps": [46.7126638071, 5.00193850124], "code_commune_insee": "71398"}, "geometry": {"type": "Point", "coordinates": [5.00193850124, 46.7126638071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36beff3436f8d208e64af48d0d1e98fc044e1c25", "fields": {"nom_de_la_commune": "ST CHRISTOPHE EN BRIONNAIS", "libell_d_acheminement": "ST CHRISTOPHE EN BRIONNAIS", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71399"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce64df263c002c2ed324cf33e213bdb870c12a1e", "fields": {"nom_de_la_commune": "ST CLEMENT SUR GUYE", "libell_d_acheminement": "ST CLEMENT SUR GUYE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71400"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43495374620da859ce6a4da8cc30d4ff1d111cb7", "fields": {"nom_de_la_commune": "ST DIDIER EN BRESSE", "libell_d_acheminement": "ST DIDIER EN BRESSE", "code_postal": "71620", "coordonnees_gps": [46.8190360908, 5.04032579311], "code_commune_insee": "71405"}, "geometry": {"type": "Point", "coordinates": [5.04032579311, 46.8190360908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "571a7c20907980180b89192d6764a63cbe0eddea", "fields": {"nom_de_la_commune": "ST DIDIER EN BRIONNAIS", "libell_d_acheminement": "ST DIDIER EN BRIONNAIS", "code_postal": "71110", "coordonnees_gps": [46.2944340166, 4.06412845219], "code_commune_insee": "71406"}, "geometry": {"type": "Point", "coordinates": [4.06412845219, 46.2944340166]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3b3e1b38bd27bf8cb58d679fb51a5604277de64", "fields": {"nom_de_la_commune": "ST GERVAIS SUR COUCHES", "libell_d_acheminement": "ST GERVAIS SUR COUCHES", "code_postal": "71490", "coordonnees_gps": [46.8943973751, 4.53853680862], "code_commune_insee": "71424"}, "geometry": {"type": "Point", "coordinates": [4.53853680862, 46.8943973751]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e067a40f3c91326fbe57fa9f1dcbe5ebe9570175", "fields": {"nom_de_la_commune": "ST JEAN DE VAUX", "libell_d_acheminement": "ST JEAN DE VAUX", "code_postal": "71640", "coordonnees_gps": [46.7976011118, 4.72754976033], "code_commune_insee": "71430"}, "geometry": {"type": "Point", "coordinates": [4.72754976033, 46.7976011118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec7b6b8d8f4e24d1c124163792822e0f4164139", "fields": {"nom_de_la_commune": "ST JULIEN DE CIVRY", "libell_d_acheminement": "ST JULIEN DE CIVRY", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71433"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e017cfb99590667727b01e3eb5c4e45a6255d66", "fields": {"nom_de_la_commune": "ST LAURENT EN BRIONNAIS", "libell_d_acheminement": "ST LAURENT EN BRIONNAIS", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71437"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9de7632f2473aef42d4a531a743be2e55e40dc8", "fields": {"nom_de_la_commune": "FRUCOURT", "libell_d_acheminement": "FRUCOURT", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80372"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e132672828a2de8540655b4a19b05cced5a6b2e", "fields": {"nom_de_la_commune": "GLISY", "libell_d_acheminement": "GLISY", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80379"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7eff522555e18b32d9de25e1a044a45d85bc621", "fields": {"nom_de_la_commune": "GRANDCOURT", "libell_d_acheminement": "GRANDCOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80384"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167dc9215f6ebd2cceafcdaeb45ddd379a1be471", "fields": {"nom_de_la_commune": "GRATTEPANCHE", "libell_d_acheminement": "GRATTEPANCHE", "code_postal": "80680", "coordonnees_gps": [49.8142899245, 2.29952854065], "code_commune_insee": "80387"}, "geometry": {"type": "Point", "coordinates": [2.29952854065, 49.8142899245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4725dfca1b70116ee029a159e67ed4cfa465636f", "fields": {"nom_de_la_commune": "GRIVESNES", "libell_d_acheminement": "GRIVESNES", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80390"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f374c778c38b1590c8f9e6a1cb4fa9882450b8d", "fields": {"nom_de_la_commune": "GRUNY", "libell_d_acheminement": "GRUNY", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80393"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0d292a5c88351147c5ecd0eeedb07312ff92c9d", "fields": {"nom_de_la_commune": "GUEUDECOURT", "libell_d_acheminement": "GUEUDECOURT", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80397"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5642cc0cf581e2df15b1c329e6fe26e1314aa54", "fields": {"nom_de_la_commune": "GUIGNEMICOURT", "libell_d_acheminement": "GUIGNEMICOURT", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80399"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56e11cc437857fbef6ff411116e3f39e0ef6129a", "fields": {"nom_de_la_commune": "GUILLAUCOURT", "libell_d_acheminement": "GUILLAUCOURT", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80400"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f56a5e4f04620c7799f9867a97f33741eaf65540", "fields": {"nom_de_la_commune": "HAM", "libell_d_acheminement": "HAM", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80410"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fe2782040e3441c88eda2a4356bdec69f0760ed", "fields": {"nom_de_la_commune": "LE HAMEL", "libell_d_acheminement": "LE HAMEL", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80411"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be056d36017b06156b90e3a17644ab4f97395cb4", "fields": {"nom_de_la_commune": "HARPONVILLE", "libell_d_acheminement": "HARPONVILLE", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80420"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "243df1a3fe64a38064c2b02d5b89e412921604ba", "fields": {"nom_de_la_commune": "HERBECOURT", "libell_d_acheminement": "HERBECOURT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80430"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbe8bdc92a2b13217bf666b012594344c69cc6bb", "fields": {"code_postal": "80640", "code_commune_insee": "80443", "libell_d_acheminement": "HORNOY LE BOURG", "ligne_5": "BOISRAULT", "nom_de_la_commune": "HORNOY LE BOURG", "coordonnees_gps": [49.8459420737, 1.9103382201]}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40038df851136acbd9b1ebaa26237e5cbfceb7d6", "fields": {"code_postal": "80640", "code_commune_insee": "80443", "libell_d_acheminement": "HORNOY LE BOURG", "ligne_5": "LINCHEUX HALLIVILLERS", "nom_de_la_commune": "HORNOY LE BOURG", "coordonnees_gps": [49.8459420737, 1.9103382201]}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9878e1de01d051eb4037015170bd34d552438b26", "fields": {"code_postal": "80640", "code_commune_insee": "80443", "libell_d_acheminement": "HORNOY LE BOURG", "ligne_5": "SELINCOURT", "nom_de_la_commune": "HORNOY LE BOURG", "coordonnees_gps": [49.8459420737, 1.9103382201]}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0a2eb0e5f34b6c2173d52ca9769a8eea8113f5c", "fields": {"nom_de_la_commune": "HUMBERCOURT", "libell_d_acheminement": "HUMBERCOURT", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80445"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dc7245bdf73ea8f64a70f1856d791d2a70a1874", "fields": {"nom_de_la_commune": "LALEU", "libell_d_acheminement": "LALEU", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80459"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b049f79a686b5e05e39a981b20a2cf6876537bde", "fields": {"nom_de_la_commune": "LAMARONDE", "libell_d_acheminement": "LAMARONDE", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80460"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "610964186d6f5d04086a3390ed90c3cf66fa94e4", "fields": {"nom_de_la_commune": "LESBOEUFS", "libell_d_acheminement": "LESBOEUFS", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80472"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1b91f502c2ef9af32b8a7e6f010b3088c5d26e5", "fields": {"nom_de_la_commune": "LIERCOURT", "libell_d_acheminement": "LIERCOURT", "code_postal": "80580", "coordonnees_gps": [50.0580760392, 1.88626484435], "code_commune_insee": "80476"}, "geometry": {"type": "Point", "coordinates": [1.88626484435, 50.0580760392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569b3bdf1c9cf636119bc0b89b7a327d86c53a7b", "fields": {"nom_de_la_commune": "LUCHEUX", "libell_d_acheminement": "LUCHEUX", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80495"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c80fa6a852f9670a39c619e558891a519bac4ed7", "fields": {"nom_de_la_commune": "MAILLY MAILLET", "libell_d_acheminement": "MAILLY MAILLET", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80498"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6d665be272528ccf071bf069cd7336905d48f72", "fields": {"nom_de_la_commune": "MAIZICOURT", "libell_d_acheminement": "MAIZICOURT", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80503"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb4a9f283c35df08ec3842436d264f515bd25cd", "fields": {"nom_de_la_commune": "MAMETZ", "libell_d_acheminement": "MAMETZ", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80505"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3600b1d04beb540a532fa960cf16ae9da84c868", "fields": {"nom_de_la_commune": "MARCHE ALLOUARDE", "libell_d_acheminement": "MARCHE ALLOUARDE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80508"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52fb7ab71085bb2d6fe9a641baa301937f67c73", "fields": {"nom_de_la_commune": "MARESTMONTIERS", "libell_d_acheminement": "MARESTMONTIERS", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80511"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca0cdd218f64befe6636cfe2f4a3144bdef646e", "fields": {"nom_de_la_commune": "MARQUIVILLERS", "libell_d_acheminement": "MARQUIVILLERS", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80517"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "703ec8e7fa0baff015524bec9b2b90833ebed59d", "fields": {"nom_de_la_commune": "MATIGNY", "libell_d_acheminement": "MATIGNY", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80519"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea4981763d1e8954a303ce7e1a88d2a21a82261", "fields": {"nom_de_la_commune": "MEIGNEUX", "libell_d_acheminement": "MEIGNEUX", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80525"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af2c8e2a70d511d65932f5a9f36424db8c3773b", "fields": {"nom_de_la_commune": "MERICOURT EN VIMEU", "libell_d_acheminement": "MERICOURT EN VIMEU", "code_postal": "80640", "coordonnees_gps": [49.8459420737, 1.9103382201], "code_commune_insee": "80531"}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "948aa643992ca637c039b412317612f9d9628555", "fields": {"nom_de_la_commune": "MESNIL EN ARROUAISE", "libell_d_acheminement": "MESNIL EN ARROUAISE", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80538"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4270a5a6d81106b34268b8d6f4f3773473834d2e", "fields": {"nom_de_la_commune": "MILLENCOURT EN PONTHIEU", "libell_d_acheminement": "MILLENCOURT EN PONTHIEU", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80548"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "484086876030c45b6b7c37b7db94b3d02e8d060e", "fields": {"nom_de_la_commune": "MOLLIENS DREUIL", "libell_d_acheminement": "MOLLIENS DREUIL", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80554"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3a3be775b862f82bf8879133babf4ce909a8b83", "fields": {"nom_de_la_commune": "MONSURES", "libell_d_acheminement": "MONSURES", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80558"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "797a30f4c2285df56535c747b12dfdd051c0aab6", "fields": {"nom_de_la_commune": "MONTAGNE FAYEL", "libell_d_acheminement": "MONTAGNE FAYEL", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80559"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c33a0d6e44ea342b7aff3e39321be3cae43b1a25", "fields": {"nom_de_la_commune": "FIEFFES MONTRELET", "libell_d_acheminement": "FIEFFES MONTRELET", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80566"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49bd6b9422853f894010f3a77d94211bbc91bdc4", "fields": {"nom_de_la_commune": "MORVILLERS ST SATURNIN", "libell_d_acheminement": "MORVILLERS ST SATURNIN", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80573"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "865ba740e22acdfdee77a0a09d75f843e9246cef", "fields": {"nom_de_la_commune": "MOUFLIERES", "libell_d_acheminement": "MOUFLIERES", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80575"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20ad372171b640551fc178ed71fd811a691b8ebf", "fields": {"nom_de_la_commune": "NAMPONT", "libell_d_acheminement": "NAMPONT ST MARTIN", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80580"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d92baaa66dc758a14ebeef1b7b76f952a99afc23", "fields": {"nom_de_la_commune": "NAMPS MAISNIL", "libell_d_acheminement": "NAMPS MAISNIL", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80582"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a63e6e991b1a0e6410d3e00d8d54999d4913acf7", "fields": {"code_postal": "80290", "code_commune_insee": "80582", "libell_d_acheminement": "NAMPS MAISNIL", "ligne_5": "RUMAISNIL", "nom_de_la_commune": "NAMPS MAISNIL", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c096b4650282bc09022b8f6c98cdf9445d7d07f2", "fields": {"nom_de_la_commune": "NAOURS", "libell_d_acheminement": "NAOURS", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80584"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ca77da357098eba3a6292f56e3c9670763a62e", "fields": {"nom_de_la_commune": "NOYELLES EN CHAUSSEE", "libell_d_acheminement": "NOYELLES EN CHAUSSEE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80599"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f5a2188c1bc4b470d161d2c99b2d2223166b1c7", "fields": {"nom_de_la_commune": "OCCOCHES", "libell_d_acheminement": "OCCOCHES", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80602"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a269f83e1dfea3428ef4541f8bd354026b00058", "fields": {"nom_de_la_commune": "PICQUIGNY", "libell_d_acheminement": "PICQUIGNY", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80622"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d223313319244843fad6756d8ef822406f55a1f2", "fields": {"code_postal": "80500", "code_commune_insee": "80623", "libell_d_acheminement": "PIENNES ONVILLERS", "ligne_5": "ONVILLERS", "nom_de_la_commune": "PIENNES ONVILLERS", "coordonnees_gps": [49.6644065445, 2.59300207796]}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3662f746bcde3ad6bcd4eec55a3b121b0ef077ca", "fields": {"nom_de_la_commune": "PISSY", "libell_d_acheminement": "PISSY", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80626"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95e4d96504bfcf1c786ec2890ecaf414af8ed46f", "fields": {"nom_de_la_commune": "PYS", "libell_d_acheminement": "PYS", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80648"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43a42f6b1a72fa98dfe7ccad30dc0a3952bc165", "fields": {"nom_de_la_commune": "QUESNOY LE MONTANT", "libell_d_acheminement": "QUESNOY LE MONTANT", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80654"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b228c03fd1fffaa94a48e043a999c657b544f9", "fields": {"nom_de_la_commune": "QUIVIERES", "libell_d_acheminement": "QUIVIERES", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80658"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b735a7df8311819ace0a3253275d561f702ceef4", "fields": {"nom_de_la_commune": "RAINCHEVAL", "libell_d_acheminement": "RAINCHEVAL", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80659"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "599b1754abc2404d5b680218811caa514dc81fcc", "fields": {"nom_de_la_commune": "RAINNEVILLE", "libell_d_acheminement": "RAINNEVILLE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80661"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155705e40da006ddfa02f4701519fed908ff5408", "fields": {"nom_de_la_commune": "RIENCOURT", "libell_d_acheminement": "RIENCOURT", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80673"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea3f30a91e02fbe9d43acf7a68781615b205ca2", "fields": {"nom_de_la_commune": "ROGY", "libell_d_acheminement": "ROGY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80675"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f8cc5941d8484caa0923da42a3b3bf6a9750f73", "fields": {"nom_de_la_commune": "RONSSOY", "libell_d_acheminement": "LE RONSSOY", "code_postal": "80740", "coordonnees_gps": [49.9986688504, 3.14330928776], "code_commune_insee": "80679"}, "geometry": {"type": "Point", "coordinates": [3.14330928776, 49.9986688504]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a159482470f66931d13a6cee0fcf028ad0da6241", "fields": {"nom_de_la_commune": "ROSIERES EN SANTERRE", "libell_d_acheminement": "ROSIERES EN SANTERRE", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80680"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd4c3cc95f0a204b57c755988cfadf9653584fe", "fields": {"nom_de_la_commune": "RUBEMPRE", "libell_d_acheminement": "RUBEMPRE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80686"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cb0d19db69695ee7bc2b515fffbbcc516a8c874", "fields": {"nom_de_la_commune": "ST LEGER LES AUTHIE", "libell_d_acheminement": "ST LEGER LES AUTHIE", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80705"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8001cda3abe8850aa9a7b74e248ccf651c2c9b", "fields": {"nom_de_la_commune": "ST SAUVEUR", "libell_d_acheminement": "ST SAUVEUR", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80718"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c19c17c8962ae5c9649795685a07684190e800", "fields": {"nom_de_la_commune": "ST VALERY SUR SOMME", "libell_d_acheminement": "ST VALERY SUR SOMME", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80721"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b96afb10cfd856d940474d73fdfaeed93420754", "fields": {"nom_de_la_commune": "ST VAAST EN CHAUSSEE", "libell_d_acheminement": "ST VAAST EN CHAUSSEE", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80722"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05a608e22f005e9e8044165505636e2d3d3da7fc", "fields": {"nom_de_la_commune": "SAISSEVAL", "libell_d_acheminement": "SAISSEVAL", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80723"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f288f750d2bb1c37f9f9ab53a6ceca168d7a1a7d", "fields": {"nom_de_la_commune": "SANCOURT", "libell_d_acheminement": "SANCOURT", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80726"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "129958b55b8f10c8707a45d7d1247443e11f1955", "fields": {"nom_de_la_commune": "SENLIS LE SEC", "libell_d_acheminement": "SENLIS LE SEC", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80733"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5c5f94d6db344052496ee28cdee3f896e6d5a55", "fields": {"nom_de_la_commune": "SOREL", "libell_d_acheminement": "SOREL", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80737"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e1bcc1b02f48eb2963f99d6cc09d6a616698823", "fields": {"nom_de_la_commune": "SUZANNE", "libell_d_acheminement": "SUZANNE", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80743"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ecbb38e72e15eb0a4c6bf7594145ef8e939d27a7", "fields": {"nom_de_la_commune": "TEMPLEUX LA FOSSE", "libell_d_acheminement": "TEMPLEUX LA FOSSE", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80747"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e35f09d6d84ac286b1ac5812abcf6ff903a943", "fields": {"nom_de_la_commune": "TERTRY", "libell_d_acheminement": "TERTRY", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80750"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "969059b7ec47cd335041d6e55c98289c60df8ef2", "fields": {"nom_de_la_commune": "THIEVRES", "libell_d_acheminement": "THIEVRES", "code_postal": "62760", "coordonnees_gps": [50.1492148112, 2.47128011672], "code_commune_insee": "80756"}, "geometry": {"type": "Point", "coordinates": [2.47128011672, 50.1492148112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "841815c381614876223f1c1d59138d380e294333", "fields": {"nom_de_la_commune": "VARENNES", "libell_d_acheminement": "VARENNES", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80776"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2b12f745b1f0ff70b988f42c535e632076d0677", "fields": {"nom_de_la_commune": "VAUCHELLES LES AUTHIE", "libell_d_acheminement": "VAUCHELLES LES AUTHIE", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80777"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce89d4268cb22a48ee85f861b0cfb45bcf004f4d", "fields": {"nom_de_la_commune": "VILLERS SOUS AILLY", "libell_d_acheminement": "VILLERS SOUS AILLY", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80804"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633e1a2752416b854afefdd4c5699c2c04ceff6e", "fields": {"nom_de_la_commune": "VILLERS SUR AUTHIE", "libell_d_acheminement": "VILLERS SUR AUTHIE", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80806"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86326dbda5b74e1627a3a275cc8abd639d79d7df", "fields": {"nom_de_la_commune": "VIRONCHAUX", "libell_d_acheminement": "VIRONCHAUX", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80808"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d4848971c67ba60998c2cc4c26983c86fdfc30", "fields": {"nom_de_la_commune": "WARSY", "libell_d_acheminement": "WARSY", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80822"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9041eff3dd33f1abd3332bd508ba7cc72e0ea001", "fields": {"nom_de_la_commune": "WIRY AU MONT", "libell_d_acheminement": "WIRY AU MONT", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80825"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f824a411b4f93bd40a58a528dad034e36f9652e", "fields": {"nom_de_la_commune": "WOIREL", "libell_d_acheminement": "WOIREL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80828"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b60c1b9ad528d9d61156e6a73d21c58f772aab99", "fields": {"nom_de_la_commune": "YAUCOURT BUSSUS", "libell_d_acheminement": "YAUCOURT BUSSUS", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80830"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b4233ef9610498819e54a11b9087613337a54cb", "fields": {"nom_de_la_commune": "BRUYERES LE CHATEL", "libell_d_acheminement": "BRUYERES LE CHATEL", "code_postal": "91680", "coordonnees_gps": [48.5994935107, 2.17708550813], "code_commune_insee": "91115"}, "geometry": {"type": "Point", "coordinates": [2.17708550813, 48.5994935107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da4a179d7d416096e6ae6edf373d9db0eb1f4c50", "fields": {"nom_de_la_commune": "CHAMPMOTTEUX", "libell_d_acheminement": "CHAMPMOTTEUX", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91137"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e5be32cacb61c0f4276cfd320dacc3be9aa0dfa", "fields": {"nom_de_la_commune": "CHATIGNONVILLE", "libell_d_acheminement": "CHATIGNONVILLE", "code_postal": "91410", "coordonnees_gps": [48.4943712381, 1.9962087834], "code_commune_insee": "91145"}, "geometry": {"type": "Point", "coordinates": [1.9962087834, 48.4943712381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f53beb6546c671787e67faf829cf130d7869ef2b", "fields": {"nom_de_la_commune": "CHAUFFOUR LES ETRECHY", "libell_d_acheminement": "CHAUFFOUR LES ETRECHY", "code_postal": "91580", "coordonnees_gps": [48.493877819, 2.18164362927], "code_commune_insee": "91148"}, "geometry": {"type": "Point", "coordinates": [2.18164362927, 48.493877819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb8383e51b295eb4316aaed03e621ac177732a6e", "fields": {"nom_de_la_commune": "CHEPTAINVILLE", "libell_d_acheminement": "CHEPTAINVILLE", "code_postal": "91630", "coordonnees_gps": [48.560156386, 2.2827757217], "code_commune_insee": "91156"}, "geometry": {"type": "Point", "coordinates": [2.2827757217, 48.560156386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0507bbe09287728f476911a213a72c54bac5a9ce", "fields": {"nom_de_la_commune": "COURSON MONTELOUP", "libell_d_acheminement": "COURSON MONTELOUP", "code_postal": "91680", "coordonnees_gps": [48.5994935107, 2.17708550813], "code_commune_insee": "91186"}, "geometry": {"type": "Point", "coordinates": [2.17708550813, 48.5994935107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6432c1f75e74d57f02ec1887704765b5c0dc8919", "fields": {"nom_de_la_commune": "D HUISON LONGUEVILLE", "libell_d_acheminement": "D HUISON LONGUEVILLE", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91198"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b920550a775e157fc402e21a13704de862cb83de", "fields": {"nom_de_la_commune": "ESTOUCHES", "libell_d_acheminement": "ESTOUCHES", "code_postal": "91660", "coordonnees_gps": [48.3164697421, 2.08354530112], "code_commune_insee": "91222"}, "geometry": {"type": "Point", "coordinates": [2.08354530112, 48.3164697421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b8ba1414c45cbb0149d3b3388541e684fb9377", "fields": {"nom_de_la_commune": "LA FERTE ALAIS", "libell_d_acheminement": "LA FERTE ALAIS", "code_postal": "91590", "coordonnees_gps": [48.4761402435, 2.34338039421], "code_commune_insee": "91232"}, "geometry": {"type": "Point", "coordinates": [2.34338039421, 48.4761402435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b56de3a4770fca410c313fa154150b993634a52", "fields": {"nom_de_la_commune": "FONTAINE LA RIVIERE", "libell_d_acheminement": "FONTAINE LA RIVIERE", "code_postal": "91690", "coordonnees_gps": [48.3609334789, 2.12492559974], "code_commune_insee": "91240"}, "geometry": {"type": "Point", "coordinates": [2.12492559974, 48.3609334789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2068bccb467a65acd00730e1f3d3a8f1af865924", "fields": {"nom_de_la_commune": "GIF SUR YVETTE", "libell_d_acheminement": "GIF SUR YVETTE", "code_postal": "91190", "coordonnees_gps": [48.709665031, 2.12766544978], "code_commune_insee": "91272"}, "geometry": {"type": "Point", "coordinates": [2.12766544978, 48.709665031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "642877d018b8f20834b6feaf9ac3a639a375785b", "fields": {"nom_de_la_commune": "GUILLERVAL", "libell_d_acheminement": "GUILLERVAL", "code_postal": "91690", "coordonnees_gps": [48.3609334789, 2.12492559974], "code_commune_insee": "91294"}, "geometry": {"type": "Point", "coordinates": [2.12492559974, 48.3609334789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e5c764c1a1dda3582c920b1a7830fb79fea9c9e", "fields": {"nom_de_la_commune": "IGNY", "libell_d_acheminement": "IGNY", "code_postal": "91430", "coordonnees_gps": [48.7339593054, 2.21260184658], "code_commune_insee": "91312"}, "geometry": {"type": "Point", "coordinates": [2.21260184658, 48.7339593054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1138b0ee74ff9a2e837de76a59d10ac3e42d85a0", "fields": {"nom_de_la_commune": "JUVISY SUR ORGE", "libell_d_acheminement": "JUVISY SUR ORGE", "code_postal": "91260", "coordonnees_gps": [48.6916199435, 2.37474050395], "code_commune_insee": "91326"}, "geometry": {"type": "Point", "coordinates": [2.37474050395, 48.6916199435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d69fa27a50e955b83170fea4f4b6ad6acdc25495", "fields": {"nom_de_la_commune": "LONGJUMEAU", "libell_d_acheminement": "LONGJUMEAU", "code_postal": "91160", "coordonnees_gps": [48.6879154099, 2.28155441875], "code_commune_insee": "91345"}, "geometry": {"type": "Point", "coordinates": [2.28155441875, 48.6879154099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37a20517dbc8ce452bbad9344fc1c666d6f23b8b", "fields": {"nom_de_la_commune": "MAROLLES EN HUREPOIX", "libell_d_acheminement": "MAROLLES EN HUREPOIX", "code_postal": "91630", "coordonnees_gps": [48.560156386, 2.2827757217], "code_commune_insee": "91376"}, "geometry": {"type": "Point", "coordinates": [2.2827757217, 48.560156386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39f6498d091134cab7bcd255e4de25309febe1df", "fields": {"nom_de_la_commune": "MASSY", "libell_d_acheminement": "MASSY", "code_postal": "91300", "coordonnees_gps": [48.7275197703, 2.2747102429], "code_commune_insee": "91377"}, "geometry": {"type": "Point", "coordinates": [2.2747102429, 48.7275197703]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c333f3fed185c597c54a0fe9f4f8e5fa8c85222d", "fields": {"nom_de_la_commune": "MAUCHAMPS", "libell_d_acheminement": "MAUCHAMPS", "code_postal": "91730", "coordonnees_gps": [48.5235985286, 2.21810391449], "code_commune_insee": "91378"}, "geometry": {"type": "Point", "coordinates": [2.21810391449, 48.5235985286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f89c17028ad06dcb826fd90216bae767b61faf", "fields": {"nom_de_la_commune": "MENNECY", "libell_d_acheminement": "MENNECY", "code_postal": "91540", "coordonnees_gps": [48.5608303581, 2.41959099954], "code_commune_insee": "91386"}, "geometry": {"type": "Point", "coordinates": [2.41959099954, 48.5608303581]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "411db76c05264ea48b5ff102bfba7a537f36e42c", "fields": {"nom_de_la_commune": "MOIGNY SUR ECOLE", "libell_d_acheminement": "MOIGNY SUR ECOLE", "code_postal": "91490", "coordonnees_gps": [48.4186455247, 2.46228788074], "code_commune_insee": "91408"}, "geometry": {"type": "Point", "coordinates": [2.46228788074, 48.4186455247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac0bc70906b7dcacb308b46502bad3a7cb52ee1a", "fields": {"nom_de_la_commune": "NAINVILLE LES ROCHES", "libell_d_acheminement": "NAINVILLE LES ROCHES", "code_postal": "91750", "coordonnees_gps": [48.5147670198, 2.45459432239], "code_commune_insee": "91441"}, "geometry": {"type": "Point", "coordinates": [2.45459432239, 48.5147670198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "460f938779b15c8479537aa241927b107babfac3", "fields": {"nom_de_la_commune": "ORMOY LA RIVIERE", "libell_d_acheminement": "ORMOY LA RIVIERE", "code_postal": "91150", "coordonnees_gps": [48.3976372242, 2.19700639301], "code_commune_insee": "91469"}, "geometry": {"type": "Point", "coordinates": [2.19700639301, 48.3976372242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efb7bbcdbb4da660b06a944e2830d239902ff856", "fields": {"nom_de_la_commune": "PARAY VIEILLE POSTE", "libell_d_acheminement": "PARAY VIEILLE POSTE", "code_postal": "91550", "coordonnees_gps": [48.7243019764, 2.36018622898], "code_commune_insee": "91479"}, "geometry": {"type": "Point", "coordinates": [2.36018622898, 48.7243019764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4753eb74d5ea5d520d007ca8d36df177b656979a", "fields": {"nom_de_la_commune": "PECQUEUSE", "libell_d_acheminement": "PECQUEUSE", "code_postal": "91470", "coordonnees_gps": [48.6369515369, 2.06831882052], "code_commune_insee": "91482"}, "geometry": {"type": "Point", "coordinates": [2.06831882052, 48.6369515369]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58fa570575c0c231dd6a5ad2e300b1a08460c03d", "fields": {"nom_de_la_commune": "ST CHERON", "libell_d_acheminement": "ST CHERON", "code_postal": "91530", "coordonnees_gps": [48.5543371976, 2.10205368335], "code_commune_insee": "91540"}, "geometry": {"type": "Point", "coordinates": [2.10205368335, 48.5543371976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5beacf106725c56550c375c03b76949d1fc5125e", "fields": {"nom_de_la_commune": "ST YON", "libell_d_acheminement": "ST YON", "code_postal": "91650", "coordonnees_gps": [48.5636207397, 2.17184394889], "code_commune_insee": "91581"}, "geometry": {"type": "Point", "coordinates": [2.17184394889, 48.5636207397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf4fa9622f064c176d8b897d19e97a61bc618006", "fields": {"nom_de_la_commune": "TORFOU", "libell_d_acheminement": "TORFOU", "code_postal": "91730", "coordonnees_gps": [48.5235985286, 2.21810391449], "code_commune_insee": "91619"}, "geometry": {"type": "Point", "coordinates": [2.21810391449, 48.5235985286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f67900b5eeeff1e425cc8e8fb52e14983fc3ecf8", "fields": {"nom_de_la_commune": "VIGNEUX SUR SEINE", "libell_d_acheminement": "VIGNEUX SUR SEINE", "code_postal": "91270", "coordonnees_gps": [48.703950195, 2.42770739921], "code_commune_insee": "91657"}, "geometry": {"type": "Point", "coordinates": [2.42770739921, 48.703950195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61c5c205dadeb0900b7b72c4a5fbe7a53fc2eef2", "fields": {"nom_de_la_commune": "VILLEBON SUR YVETTE", "libell_d_acheminement": "VILLEBON SUR YVETTE", "code_postal": "91140", "coordonnees_gps": [48.6888194138, 2.23030867411], "code_commune_insee": "91661"}, "geometry": {"type": "Point", "coordinates": [2.23030867411, 48.6888194138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eafdbf793db9452294501f10d433ee5cbe2475e", "fields": {"nom_de_la_commune": "VILLEMOISSON SUR ORGE", "libell_d_acheminement": "VILLEMOISSON SUR ORGE", "code_postal": "91360", "coordonnees_gps": [48.6691027635, 2.32253482428], "code_commune_insee": "91667"}, "geometry": {"type": "Point", "coordinates": [2.32253482428, 48.6691027635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e48b6b765b2650d7f6c216aca9eab0a90f0b6b5", "fields": {"nom_de_la_commune": "VILLENEUVE SUR AUVERS", "libell_d_acheminement": "VILLENEUVE SUR AUVERS", "code_postal": "91580", "coordonnees_gps": [48.493877819, 2.18164362927], "code_commune_insee": "91671"}, "geometry": {"type": "Point", "coordinates": [2.18164362927, 48.493877819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ba3e80d5a8a7084725831abaa3bbdc377a71a51", "fields": {"nom_de_la_commune": "VILLIERS LE BACLE", "libell_d_acheminement": "VILLIERS LE BACLE", "code_postal": "91190", "coordonnees_gps": [48.709665031, 2.12766544978], "code_commune_insee": "91679"}, "geometry": {"type": "Point", "coordinates": [2.12766544978, 48.709665031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58ce82661e47bd9100c3697fa219684738aa17d", "fields": {"nom_de_la_commune": "VIRY CHATILLON", "libell_d_acheminement": "VIRY CHATILLON", "code_postal": "91170", "coordonnees_gps": [48.6699861036, 2.37373132613], "code_commune_insee": "91687"}, "geometry": {"type": "Point", "coordinates": [2.37373132613, 48.6699861036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e66b9f34b1f4884b15b1961c1226543011a1e05f", "fields": {"nom_de_la_commune": "WISSOUS", "libell_d_acheminement": "WISSOUS", "code_postal": "91320", "coordonnees_gps": [48.7299903097, 2.32956070279], "code_commune_insee": "91689"}, "geometry": {"type": "Point", "coordinates": [2.32956070279, 48.7299903097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fca7807a5a258862622cd5513f5d73eac0a0173", "fields": {"nom_de_la_commune": "COLOMBES", "libell_d_acheminement": "COLOMBES", "code_postal": "92700", "coordonnees_gps": [48.9228285289, 2.24714560937], "code_commune_insee": "92025"}, "geometry": {"type": "Point", "coordinates": [2.24714560937, 48.9228285289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6fd29d99ba57a1b60fcf0214ebf50bbc42e258f", "fields": {"nom_de_la_commune": "GARCHES", "libell_d_acheminement": "GARCHES", "code_postal": "92380", "coordonnees_gps": [48.8454061837, 2.18760213327], "code_commune_insee": "92033"}, "geometry": {"type": "Point", "coordinates": [2.18760213327, 48.8454061837]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f17775bd7250b3eddec7214ec3005f61fa6d2fa0", "fields": {"nom_de_la_commune": "ISSY LES MOULINEAUX", "libell_d_acheminement": "ISSY LES MOULINEAUX", "code_postal": "92130", "coordonnees_gps": [48.8232529299, 2.26429719337], "code_commune_insee": "92040"}, "geometry": {"type": "Point", "coordinates": [2.26429719337, 48.8232529299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a65a6b87e084d65c1fee60180ad9ae5933d77fcf", "fields": {"nom_de_la_commune": "ST LEGER SUR DHEUNE", "libell_d_acheminement": "ST LEGER SUR DHEUNE", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71442"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7bb14cb1a1f6c5f64878b80da5b68fa051aaf44", "fields": {"code_postal": "71350", "code_commune_insee": "71443", "libell_d_acheminement": "ST LOUP GEANGES", "ligne_5": "GEANGES", "nom_de_la_commune": "ST LOUP GEANGES", "coordonnees_gps": [46.9191804565, 5.01728038067]}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6288e8625ecad80a9c0e9f46c338260144f4043", "fields": {"nom_de_la_commune": "ST MARTIN DE SALENCEY", "libell_d_acheminement": "ST MARTIN DE SALENCEY", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71452"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa05b9cb8e78eda29177ba73c2e330b319fc3354", "fields": {"nom_de_la_commune": "ST PIERRE DE VARENNES", "libell_d_acheminement": "ST PIERRE DE VARENNES", "code_postal": "71670", "coordonnees_gps": [46.8253378412, 4.49167816237], "code_commune_insee": "71468"}, "geometry": {"type": "Point", "coordinates": [4.49167816237, 46.8253378412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd9345c404bb4961503037a490a554ca449c6ea5", "fields": {"nom_de_la_commune": "ST SERNIN DU PLAIN", "libell_d_acheminement": "ST SERNIN DU PLAIN", "code_postal": "71510", "coordonnees_gps": [46.8341989999, 4.61649027781], "code_commune_insee": "71480"}, "geometry": {"type": "Point", "coordinates": [4.61649027781, 46.8341989999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57fcaefd973dee31e6c7e8c26a44024b11ce60ab", "fields": {"code_postal": "71230", "code_commune_insee": "71486", "libell_d_acheminement": "ST VALLIER", "ligne_5": "LES GAUTHERETS", "nom_de_la_commune": "ST VALLIER", "coordonnees_gps": [46.6235547336, 4.3737497458]}, "geometry": {"type": "Point", "coordinates": [4.3737497458, 46.6235547336]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a987ae101ed7c1283d09f726635ee091eb759e", "fields": {"nom_de_la_commune": "SAUNIERES", "libell_d_acheminement": "SAUNIERES", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71504"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f6fa2db9d4d97ce99395f0e0e3d7dc0b527dac", "fields": {"nom_de_la_commune": "SAVIGNY EN REVERMONT", "libell_d_acheminement": "SAVIGNY EN REVERMONT", "code_postal": "71580", "coordonnees_gps": [46.626069653, 5.35082345743], "code_commune_insee": "71506"}, "geometry": {"type": "Point", "coordinates": [5.35082345743, 46.626069653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab38fe02db7b7265fb2b4a96f6b32be6aebf45d2", "fields": {"nom_de_la_commune": "SAVIGNY SUR SEILLE", "libell_d_acheminement": "SAVIGNY SUR SEILLE", "code_postal": "71440", "coordonnees_gps": [46.688182095, 5.1006718045], "code_commune_insee": "71508"}, "geometry": {"type": "Point", "coordinates": [5.1006718045, 46.688182095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d03c09a0bee4b996489fcb6635d06a31620d38a9", "fields": {"nom_de_la_commune": "LA CELLE EN MORVAN", "libell_d_acheminement": "LA CELLE EN MORVAN", "code_postal": "71400", "coordonnees_gps": [46.9658637429, 4.31686540744], "code_commune_insee": "71509"}, "geometry": {"type": "Point", "coordinates": [4.31686540744, 46.9658637429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360c868b44c32fe814c2dfba257abf398362b8dd", "fields": {"nom_de_la_commune": "SENNECEY LE GRAND", "libell_d_acheminement": "SENNECEY LE GRAND", "code_postal": "71240", "coordonnees_gps": [46.6465695916, 4.84963105442], "code_commune_insee": "71512"}, "geometry": {"type": "Point", "coordinates": [4.84963105442, 46.6465695916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88970a0098af82d32966686c9f40e5714e1acb4b", "fields": {"nom_de_la_commune": "SIMARD", "libell_d_acheminement": "SIMARD", "code_postal": "71330", "coordonnees_gps": [46.7474979341, 5.25391082839], "code_commune_insee": "71523"}, "geometry": {"type": "Point", "coordinates": [5.25391082839, 46.7474979341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "020ec823911f2efcd2530cec4ce6bf00c2bc651c", "fields": {"nom_de_la_commune": "SOLOGNY", "libell_d_acheminement": "SOLOGNY", "code_postal": "71960", "coordonnees_gps": [46.3488393103, 4.71662195567], "code_commune_insee": "71525"}, "geometry": {"type": "Point", "coordinates": [4.71662195567, 46.3488393103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee9115b99dfff005e0a1ba5c0e2e2bfb7161fb9", "fields": {"nom_de_la_commune": "SOMMANT", "libell_d_acheminement": "SOMMANT", "code_postal": "71540", "coordonnees_gps": [47.0753770748, 4.27733721131], "code_commune_insee": "71527"}, "geometry": {"type": "Point", "coordinates": [4.27733721131, 47.0753770748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2965bbcd6cbeb0d0b456b7a67bd3d9163ea5473b", "fields": {"nom_de_la_commune": "SORNAY", "libell_d_acheminement": "SORNAY", "code_postal": "71500", "coordonnees_gps": [46.6399038346, 5.22168124101], "code_commune_insee": "71528"}, "geometry": {"type": "Point", "coordinates": [5.22168124101, 46.6399038346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edfdcc962d4c8131a2a3ed39c76f892eaf49ec66", "fields": {"nom_de_la_commune": "VARENNES ST SAUVEUR", "libell_d_acheminement": "VARENNES ST SAUVEUR", "code_postal": "71480", "coordonnees_gps": [46.4985700772, 5.30854228752], "code_commune_insee": "71558"}, "geometry": {"type": "Point", "coordinates": [5.30854228752, 46.4985700772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fde01a148b132d9d9874cd55619e98175dd0e19", "fields": {"nom_de_la_commune": "VARENNES SOUS DUN", "libell_d_acheminement": "VARENNES SOUS DUN", "code_postal": "71800", "coordonnees_gps": [46.3132348148, 4.28047157956], "code_commune_insee": "71559"}, "geometry": {"type": "Point", "coordinates": [4.28047157956, 46.3132348148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee094b8db6afaa783b25bf8cf097ee2019182935", "fields": {"nom_de_la_commune": "VAUX EN PRE", "libell_d_acheminement": "VAUX EN PRE", "code_postal": "71460", "coordonnees_gps": [46.5998827006, 4.62678992688], "code_commune_insee": "71563"}, "geometry": {"type": "Point", "coordinates": [4.62678992688, 46.5998827006]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d7414f50cd4de36f588dddc8e1d8ebc2a86cc3b", "fields": {"nom_de_la_commune": "VERDUN SUR LE DOUBS", "libell_d_acheminement": "VERDUN SUR LE DOUBS", "code_postal": "71350", "coordonnees_gps": [46.9191804565, 5.01728038067], "code_commune_insee": "71566"}, "geometry": {"type": "Point", "coordinates": [5.01728038067, 46.9191804565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c76971ec2066b9cba6e2f19c18a7f67ee900580e", "fields": {"nom_de_la_commune": "VEROSVRES", "libell_d_acheminement": "VEROSVRES", "code_postal": "71220", "coordonnees_gps": [46.4917423764, 4.43217403494], "code_commune_insee": "71571"}, "geometry": {"type": "Point", "coordinates": [4.43217403494, 46.4917423764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4529f16af0c7518682b682678e463b965efc4772", "fields": {"nom_de_la_commune": "CLUX VILLENEUVE", "libell_d_acheminement": "CLUX VILLENEUVE", "code_postal": "71270", "coordonnees_gps": [46.8994601906, 5.25743617076], "code_commune_insee": "71578"}, "geometry": {"type": "Point", "coordinates": [5.25743617076, 46.8994601906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0f06b7abc43614d4c4360278698f2783517a08", "fields": {"nom_de_la_commune": "VIRE", "libell_d_acheminement": "VIRE", "code_postal": "71260", "coordonnees_gps": [46.4474927686, 4.81803623959], "code_commune_insee": "71584"}, "geometry": {"type": "Point", "coordinates": [4.81803623959, 46.4474927686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69d4803a2d81ad841cc8b358f998c3aff930564b", "fields": {"nom_de_la_commune": "ARCONNAY", "libell_d_acheminement": "ARCONNAY", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72006"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a7584c93ad9cb526f023ec3ab24a6dbc1671e8", "fields": {"nom_de_la_commune": "ARNAGE", "libell_d_acheminement": "ARNAGE", "code_postal": "72230", "coordonnees_gps": [47.913932839, 0.210035627904], "code_commune_insee": "72008"}, "geometry": {"type": "Point", "coordinates": [0.210035627904, 47.913932839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7058a79b69e177b4bff13ebd4faaa4096ff17954", "fields": {"nom_de_la_commune": "ASNIERES SUR VEGRE", "libell_d_acheminement": "ASNIERES SUR VEGRE", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72010"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ca34108e32d5006a278ee13709d34d93c443bba", "fields": {"nom_de_la_commune": "AUVERS LE HAMON", "libell_d_acheminement": "AUVERS LE HAMON", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72016"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9611b860d5543933581d1ceea75619a41a7d3fdc", "fields": {"nom_de_la_commune": "AUVERS SOUS MONTFAUCON", "libell_d_acheminement": "AUVERS SOUS MONTFAUCON", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72017"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2903c1e025dfd60f8917ce4a4dea8ed42e2e0ca8", "fields": {"nom_de_la_commune": "AVEZE", "libell_d_acheminement": "AVEZE", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72020"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a3eac43cc39436071b3215f377f10462c77a921", "fields": {"nom_de_la_commune": "BALLON ST MARS", "libell_d_acheminement": "BALLON ST MARS", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72023"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc247108bed8d763ac9308ad5864b43c49618e2e", "fields": {"nom_de_la_commune": "LA BAZOGE", "libell_d_acheminement": "LA BAZOGE", "code_postal": "72650", "coordonnees_gps": [48.0691721456, 0.13653292656], "code_commune_insee": "72024"}, "geometry": {"type": "Point", "coordinates": [0.13653292656, 48.0691721456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c10b336e1c38c0f8bda793374daff8e585b0c23", "fields": {"nom_de_la_commune": "BERNAY EN CHAMPAGNE", "libell_d_acheminement": "BERNAY EN CHAMPAGNE", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72033"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568ed097284a177250af5c8f89e20da05018e0bd", "fields": {"nom_de_la_commune": "BETHON", "libell_d_acheminement": "BETHON", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72036"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5508fe8e49b414e2f2196fa63f16ece550609bfa", "fields": {"nom_de_la_commune": "BOESSE LE SEC", "libell_d_acheminement": "BOESSE LE SEC", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72038"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f5bc7288d1bf62a439b2b0e7c706df430375c2d", "fields": {"nom_de_la_commune": "BRETTE LES PINS", "libell_d_acheminement": "BRETTE LES PINS", "code_postal": "72250", "coordonnees_gps": [47.9293145286, 0.379783357055], "code_commune_insee": "72047"}, "geometry": {"type": "Point", "coordinates": [0.379783357055, 47.9293145286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "142bfd01884fd08de6f83df8fd8e68febe5745b5", "fields": {"nom_de_la_commune": "BRULON", "libell_d_acheminement": "BRULON", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72050"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94f655bbd1c0799c8426425f817e2b8ebd815e30", "fields": {"nom_de_la_commune": "CHAMPROND", "libell_d_acheminement": "CHAMPROND", "code_postal": "72320", "coordonnees_gps": [48.0901638289, 0.763573591227], "code_commune_insee": "72057"}, "geometry": {"type": "Point", "coordinates": [0.763573591227, 48.0901638289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9190e98e67d42259492ae71120ef246d5030722", "fields": {"nom_de_la_commune": "LA CHAPELLE HUON", "libell_d_acheminement": "LA CHAPELLE HUON", "code_postal": "72310", "coordonnees_gps": [47.8336361151, 0.691494561054], "code_commune_insee": "72064"}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da68f1b56d80558241e4d1e54ae8576142263b9a", "fields": {"nom_de_la_commune": "CHENAY", "libell_d_acheminement": "CHENAY", "code_postal": "72610", "coordonnees_gps": [48.3894746655, 0.168582736306], "code_commune_insee": "72076"}, "geometry": {"type": "Point", "coordinates": [0.168582736306, 48.3894746655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae933dbbb294a3e9fba6e2cd46e82bd961aa88fc", "fields": {"nom_de_la_commune": "CONGE SUR ORNE", "libell_d_acheminement": "CONGE SUR ORNE", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72088"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10307bc6373906a753be9149de348b597b855086", "fields": {"nom_de_la_commune": "CONLIE", "libell_d_acheminement": "CONLIE", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72089"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dd5fe2bb0be9828bfb65c1968173cce35fee6cb", "fields": {"nom_de_la_commune": "CORMES", "libell_d_acheminement": "CORMES", "code_postal": "72400", "coordonnees_gps": [48.1854654064, 0.626298919368], "code_commune_insee": "72093"}, "geometry": {"type": "Point", "coordinates": [0.626298919368, 48.1854654064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "542e55dbc9256d958ff41d11854dc35ef6852e95", "fields": {"nom_de_la_commune": "COURCEBOEUFS", "libell_d_acheminement": "COURCEBOEUFS", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72099"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e5971d2ba3ab4678abf1f24c1f7cf5f4b2f1f04", "fields": {"nom_de_la_commune": "COURGAINS", "libell_d_acheminement": "COURGAINS", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72104"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b943fa16b7f4a02ef1da0c41f94ff74a8160942", "fields": {"nom_de_la_commune": "DOUILLET", "libell_d_acheminement": "DOUILLET LE JOLY", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72121"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d32b1b95d7b1c66f393b98288994192d40953877", "fields": {"nom_de_la_commune": "EVAILLE", "libell_d_acheminement": "EVAILLE", "code_postal": "72120", "coordonnees_gps": [47.9301229484, 0.705617767756], "code_commune_insee": "72128"}, "geometry": {"type": "Point", "coordinates": [0.705617767756, 47.9301229484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cd61ab1f276e54f14980943114c232627321e29", "fields": {"nom_de_la_commune": "FERCE SUR SARTHE", "libell_d_acheminement": "FERCE SUR SARTHE", "code_postal": "72430", "coordonnees_gps": [47.8850849516, -0.124766698855], "code_commune_insee": "72131"}, "geometry": {"type": "Point", "coordinates": [-0.124766698855, 47.8850849516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "497e886bbe65fa2ad89ed795d346d9c6423978f5", "fields": {"nom_de_la_commune": "FLEE", "libell_d_acheminement": "FLEE", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72134"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b13f5655f8c3c81720b59e05ac2d6dc8261b4e3f", "fields": {"code_postal": "72600", "code_commune_insee": "72137", "libell_d_acheminement": "VILLENEUVE EN PERSEIGNE", "ligne_5": "MONTIGNY", "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", "coordonnees_gps": [48.3843358188, 0.287692343822]}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb2603ccddd3fc933f91140062e1a9c9a27609e", "fields": {"nom_de_la_commune": "LE GREZ", "libell_d_acheminement": "LE GREZ", "code_postal": "72140", "coordonnees_gps": [48.1740554406, -0.130919367541], "code_commune_insee": "72145"}, "geometry": {"type": "Point", "coordinates": [-0.130919367541, 48.1740554406]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e09c2dd3f3037b3b5585293f690986ae8b6c5fa8", "fields": {"nom_de_la_commune": "JUIGNE SUR SARTHE", "libell_d_acheminement": "JUIGNE SUR SARTHE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72151"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d95f979628abb418bc98da5f0053c56538d5f5", "fields": {"nom_de_la_commune": "JUILLE", "libell_d_acheminement": "JUILLE", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72152"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f7b358026172d45e9a0381ee52b13dcab03c90f", "fields": {"code_postal": "72310", "code_commune_insee": "72159", "libell_d_acheminement": "LAVENAY", "ligne_5": "PONT DE BRAYE", "nom_de_la_commune": "LAVENAY", "coordonnees_gps": [47.8336361151, 0.691494561054]}, "geometry": {"type": "Point", "coordinates": [0.691494561054, 47.8336361151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "831a26e05c64883b0661cdd2ee1a7b0c80105bc3", "fields": {"nom_de_la_commune": "LONGNES", "libell_d_acheminement": "LONGNES", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72166"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bece10a4a2a1cfd68e4114108261940156adc3aa", "fields": {"nom_de_la_commune": "MAIGNE", "libell_d_acheminement": "MAIGNE", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72177"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad032fc297c35c69044edcaf5a03055560b45eb", "fields": {"nom_de_la_commune": "MALICORNE SUR SARTHE", "libell_d_acheminement": "MALICORNE SUR SARTHE", "code_postal": "72270", "coordonnees_gps": [47.7963450353, -0.0561013441942], "code_commune_insee": "72179"}, "geometry": {"type": "Point", "coordinates": [-0.0561013441942, 47.7963450353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44853d19a2ad4777a88e7df5971a0dbe082ee47a", "fields": {"nom_de_la_commune": "MAREIL SUR LOIR", "libell_d_acheminement": "MAREIL SUR LOIR", "code_postal": "72200", "coordonnees_gps": [47.7079550031, -0.103616838489], "code_commune_insee": "72185"}, "geometry": {"type": "Point", "coordinates": [-0.103616838489, 47.7079550031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38bcaa22de6fd821835fcc1778d1c984cd929dc8", "fields": {"nom_de_la_commune": "MAROLLETTE", "libell_d_acheminement": "MAROLLETTE", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72188"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5b252d7305984fff5703c51a24f64a4e9246b85", "fields": {"nom_de_la_commune": "MAYET", "libell_d_acheminement": "MAYET", "code_postal": "72360", "coordonnees_gps": [47.7503941662, 0.276407152429], "code_commune_insee": "72191"}, "geometry": {"type": "Point", "coordinates": [0.276407152429, 47.7503941662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5c6c8d573514ebe094076e65efc8cae2eeaa41", "fields": {"nom_de_la_commune": "MEZIERES SUR PONTHOUIN", "libell_d_acheminement": "MEZIERES SUR PONTHOUIN", "code_postal": "72290", "coordonnees_gps": [48.1733363685, 0.250385429699], "code_commune_insee": "72196"}, "geometry": {"type": "Point", "coordinates": [0.250385429699, 48.1733363685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e30a625a001f6d0e8316273c23f873be02f0f5c5", "fields": {"nom_de_la_commune": "MONCE EN BELIN", "libell_d_acheminement": "MONCE EN BELIN", "code_postal": "72230", "coordonnees_gps": [47.913932839, 0.210035627904], "code_commune_insee": "72200"}, "geometry": {"type": "Point", "coordinates": [0.210035627904, 47.913932839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c717c8bb36ce20303dc1ff4ba8da7c097aeec63a", "fields": {"nom_de_la_commune": "NAUVAY", "libell_d_acheminement": "NAUVAY", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72214"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "735a6cececbfd6902458fd5d81bc4beaea27dcb8", "fields": {"nom_de_la_commune": "NEUVY EN CHAMPAGNE", "libell_d_acheminement": "NEUVY EN CHAMPAGNE", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72219"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04f688b8c6309361756d2bbae2b7d89acbf22382", "fields": {"nom_de_la_commune": "NOGENT SUR LOIR", "libell_d_acheminement": "NOGENT SUR LOIR", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72221"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58c089115849eb36f32d37e4bc6beb20c58680d6", "fields": {"nom_de_la_commune": "RUPT SUR OTHAIN", "libell_d_acheminement": "RUPT SUR OTHAIN", "code_postal": "55150", "coordonnees_gps": [49.3426883563, 5.43366095865], "code_commune_insee": "55450"}, "geometry": {"type": "Point", "coordinates": [5.43366095865, 49.3426883563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eec14634008e73a297c2e5d7d626ddfe70df87cf", "fields": {"nom_de_la_commune": "ST AMAND SUR ORNAIN", "libell_d_acheminement": "ST AMAND SUR ORNAIN", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55452"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b606738b7d7c6fb27afdd4a154db39350bf88684", "fields": {"nom_de_la_commune": "ST AUBIN SUR AIRE", "libell_d_acheminement": "ST AUBIN SUR AIRE", "code_postal": "55500", "coordonnees_gps": [48.6840744097, 5.33883101603], "code_commune_insee": "55454"}, "geometry": {"type": "Point", "coordinates": [5.33883101603, 48.6840744097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "216dc562dce36d609953a04079c4e845f89b4e4e", "fields": {"code_postal": "55160", "code_commune_insee": "55457", "libell_d_acheminement": "ST HILAIRE EN WOEVRE", "ligne_5": "BUTGNEVILLE", "nom_de_la_commune": "ST HILAIRE EN WOEVRE", "coordonnees_gps": [49.0949133617, 5.65293437026]}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954dd0011655550b1e9014545171ff5c425478be", "fields": {"nom_de_la_commune": "ST MIHIEL", "libell_d_acheminement": "ST MIHIEL", "code_postal": "55300", "coordonnees_gps": [48.9104190257, 5.5708079511], "code_commune_insee": "55463"}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c57fb9ddbf7a6f8230875a351baf73d28d21460", "fields": {"nom_de_la_commune": "SASSEY SUR MEUSE", "libell_d_acheminement": "SASSEY SUR MEUSE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55469"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6640e4eb0994a986e2d87c31f4fb140543741e0b", "fields": {"nom_de_la_commune": "SAULX LES CHAMPLON", "libell_d_acheminement": "SAULX LES CHAMPLON", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55473"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6f0dc25135af67133515da1f752277f7dee88d5", "fields": {"nom_de_la_commune": "SIVRY SUR MEUSE", "libell_d_acheminement": "SIVRY SUR MEUSE", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55490"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f22db7f6005cc4da57c5b2d3485dc0777d0225b4", "fields": {"nom_de_la_commune": "SOMMELONNE", "libell_d_acheminement": "SOMMELONNE", "code_postal": "55170", "coordonnees_gps": [48.6392159875, 5.09392401547], "code_commune_insee": "55494"}, "geometry": {"type": "Point", "coordinates": [5.09392401547, 48.6392159875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef36937e1e1613be49479014712f577fce027a0", "fields": {"code_postal": "55230", "code_commune_insee": "55500", "libell_d_acheminement": "SPINCOURT", "ligne_5": "HAUCOURT LA RIGOLE", "nom_de_la_commune": "SPINCOURT", "coordonnees_gps": [49.3403903828, 5.6284923662]}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47ef75fe5ea2a08a967239b51f082f5f7616b178", "fields": {"code_postal": "55230", "code_commune_insee": "55500", "libell_d_acheminement": "SPINCOURT", "ligne_5": "HOUDELAUCOURT SUR OTHAIN", "nom_de_la_commune": "SPINCOURT", "coordonnees_gps": [49.3403903828, 5.6284923662]}, "geometry": {"type": "Point", "coordinates": [5.6284923662, 49.3403903828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cf3850d4fcc3c6118b061c39e746057cf77ddd7", "fields": {"nom_de_la_commune": "TAILLANCOURT", "libell_d_acheminement": "TAILLANCOURT", "code_postal": "55140", "coordonnees_gps": [48.5648565213, 5.68269215149], "code_commune_insee": "55503"}, "geometry": {"type": "Point", "coordinates": [5.68269215149, 48.5648565213]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4e00aa09449e323b75140fdee08aa2ea9af5957", "fields": {"nom_de_la_commune": "THONNE LE THIL", "libell_d_acheminement": "THONNE LE THIL", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55509"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a254593d277a7a5ab6525f12ba083d86e84e1f1a", "fields": {"nom_de_la_commune": "SEUIL D ARGONNE", "libell_d_acheminement": "SEUIL D ARGONNE", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55517"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d3d2da00571f2d7411e844681633f2c46b01325", "fields": {"code_postal": "55250", "code_commune_insee": "55517", "libell_d_acheminement": "SEUIL D ARGONNE", "ligne_5": "TRIAUCOURT EN ARGONNE", "nom_de_la_commune": "SEUIL D ARGONNE", "coordonnees_gps": [48.9706393604, 5.11493116355]}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd155572d446a2ff60f2aa0234d52ccec8488c28", "fields": {"nom_de_la_commune": "VACHERAUVILLE", "libell_d_acheminement": "VACHERAUVILLE", "code_postal": "55100", "coordonnees_gps": [49.185016183, 5.33825384268], "code_commune_insee": "55523"}, "geometry": {"type": "Point", "coordinates": [5.33825384268, 49.185016183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b93ea845fda5c9fdd1a364cacea12177ba75f7c", "fields": {"nom_de_la_commune": "VADELAINCOURT", "libell_d_acheminement": "VADELAINCOURT", "code_postal": "55220", "coordonnees_gps": [49.0264953625, 5.30234467263], "code_commune_insee": "55525"}, "geometry": {"type": "Point", "coordinates": [5.30234467263, 49.0264953625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce094b538a3bbd6de976ac4cd8133b9ede49255", "fields": {"code_postal": "55300", "code_commune_insee": "55530", "libell_d_acheminement": "VALBOIS", "ligne_5": "SENONVILLE", "nom_de_la_commune": "VALBOIS", "coordonnees_gps": [48.9104190257, 5.5708079511]}, "geometry": {"type": "Point", "coordinates": [5.5708079511, 48.9104190257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f83980fb6bc9a3288532cee92b03d557403e1c", "fields": {"nom_de_la_commune": "VAUBECOURT", "libell_d_acheminement": "VAUBECOURT", "code_postal": "55250", "coordonnees_gps": [48.9706393604, 5.11493116355], "code_commune_insee": "55532"}, "geometry": {"type": "Point", "coordinates": [5.11493116355, 48.9706393604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af44166dce21755922a3c7262df7582fc10713a", "fields": {"nom_de_la_commune": "VELOSNES", "libell_d_acheminement": "VELOSNES", "code_postal": "55600", "coordonnees_gps": [49.5005989637, 5.37522814726], "code_commune_insee": "55544"}, "geometry": {"type": "Point", "coordinates": [5.37522814726, 49.5005989637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc88eb891ac33bb9b62df0bc3546221c27f31fe4", "fields": {"code_postal": "55210", "code_commune_insee": "55551", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "ligne_5": "BILLY SOUS LES COTES", "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7af75efb3325dc0e5d64b9a0f8bea433e612f028", "fields": {"code_postal": "55210", "code_commune_insee": "55551", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "ligne_5": "ST BENOIT EN WOEVRE", "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9257dd9bcc773489f66bfa3e92b7ecbac9e2007f", "fields": {"code_postal": "55210", "code_commune_insee": "55551", "libell_d_acheminement": "VIGNEULLES LES HATTONCHATEL", "ligne_5": "VIEVILLE SOUS LES COTES", "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", "coordonnees_gps": [48.9934454026, 5.72780087463]}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8231480a8d370c712fcd2e16733f3d20a6f45af5", "fields": {"nom_de_la_commune": "VILLE DEVANT BELRAIN", "libell_d_acheminement": "VILLE DEVANT BELRAIN", "code_postal": "55260", "coordonnees_gps": [48.8868755037, 5.34101702735], "code_commune_insee": "55555"}, "geometry": {"type": "Point", "coordinates": [5.34101702735, 48.8868755037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53cc5baa2d42108a3dc3ae9bbb6656aa74b0c06b", "fields": {"nom_de_la_commune": "VILLE EN WOEVRE", "libell_d_acheminement": "VILLE EN WOEVRE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55557"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6793288b5f0070293c0df22bd46be597eb942ab", "fields": {"nom_de_la_commune": "VILOSNES HARAUMONT", "libell_d_acheminement": "VILOSNES HARAUMONT", "code_postal": "55110", "coordonnees_gps": [49.3482069392, 5.1984552124], "code_commune_insee": "55571"}, "geometry": {"type": "Point", "coordinates": [5.1984552124, 49.3482069392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46722ff7f764b2ffb7a668ad854bdb543f04391a", "fields": {"code_postal": "55190", "code_commune_insee": "55573", "libell_d_acheminement": "VOID VACON", "ligne_5": "VACON", "nom_de_la_commune": "VOID VACON", "coordonnees_gps": [48.667580724, 5.58942514776]}, "geometry": {"type": "Point", "coordinates": [5.58942514776, 48.667580724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b15eda2ece17068e790ab5ec1a82564cebdfbfa4", "fields": {"nom_de_la_commune": "WATRONVILLE", "libell_d_acheminement": "WATRONVILLE", "code_postal": "55160", "coordonnees_gps": [49.0949133617, 5.65293437026], "code_commune_insee": "55579"}, "geometry": {"type": "Point", "coordinates": [5.65293437026, 49.0949133617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "232d493c26b65a05cb8964ff31aa0e3efc4624b3", "fields": {"nom_de_la_commune": "WOEL", "libell_d_acheminement": "WOEL", "code_postal": "55210", "coordonnees_gps": [48.9934454026, 5.72780087463], "code_commune_insee": "55583"}, "geometry": {"type": "Point", "coordinates": [5.72780087463, 48.9934454026]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "681c8c264dd4162771196b257f17c56ea5076a5d", "fields": {"nom_de_la_commune": "AMBON", "libell_d_acheminement": "AMBON", "code_postal": "56190", "coordonnees_gps": [47.5677894979, -2.47569424825], "code_commune_insee": "56002"}, "geometry": {"type": "Point", "coordinates": [-2.47569424825, 47.5677894979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb0cd1f8c432f4d231a84ad63895459119009655", "fields": {"nom_de_la_commune": "ARRADON", "libell_d_acheminement": "ARRADON", "code_postal": "56610", "coordonnees_gps": [47.6337705516, -2.82324524602], "code_commune_insee": "56003"}, "geometry": {"type": "Point", "coordinates": [-2.82324524602, 47.6337705516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8814527cf1aeda39f57fa2d599dc77b74113354a", "fields": {"nom_de_la_commune": "BADEN", "libell_d_acheminement": "BADEN", "code_postal": "56870", "coordonnees_gps": [47.6124073819, -2.90240136291], "code_commune_insee": "56008"}, "geometry": {"type": "Point", "coordinates": [-2.90240136291, 47.6124073819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5a6896f58e67e3a7f3278da8419389a6aaae05e", "fields": {"nom_de_la_commune": "BERRIC", "libell_d_acheminement": "BERRIC", "code_postal": "56230", "coordonnees_gps": [47.6890583485, -2.46488930013], "code_commune_insee": "56015"}, "geometry": {"type": "Point", "coordinates": [-2.46488930013, 47.6890583485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "596b134c8fa6b462ba960e3c2ef44048ef9ede33", "fields": {"nom_de_la_commune": "BRANDIVY", "libell_d_acheminement": "BRANDIVY", "code_postal": "56390", "coordonnees_gps": [47.7748700916, -2.83665488013], "code_commune_insee": "56022"}, "geometry": {"type": "Point", "coordinates": [-2.83665488013, 47.7748700916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bff721cc0a7d69d1dd3bd778a2f8efa7b9ca85b", "fields": {"nom_de_la_commune": "CALAN", "libell_d_acheminement": "CALAN", "code_postal": "56240", "coordonnees_gps": [47.9397902952, -3.31179556396], "code_commune_insee": "56029"}, "geometry": {"type": "Point", "coordinates": [-3.31179556396, 47.9397902952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82ea485f3c0c78b5c4e0f151672051519abc207", "fields": {"nom_de_la_commune": "CAMOEL", "libell_d_acheminement": "CAMOEL", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56030"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d81a43f6378c2ffdd8ebb52e2e89de7fbabfb4bd", "fields": {"nom_de_la_commune": "CARO", "libell_d_acheminement": "CARO", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56035"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f89aad5ace0ce2ed611673bd5ab151dad53093b", "fields": {"nom_de_la_commune": "CROIXANVEC", "libell_d_acheminement": "CROIXANVEC", "code_postal": "56920", "coordonnees_gps": [48.081238115, -2.86082261519], "code_commune_insee": "56049"}, "geometry": {"type": "Point", "coordinates": [-2.86082261519, 48.081238115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbe1385a3259469f30d029bcb5922bffeef5f39d", "fields": {"nom_de_la_commune": "ETEL", "libell_d_acheminement": "ETEL", "code_postal": "56410", "coordonnees_gps": [47.6381835411, -3.15894216242], "code_commune_insee": "56055"}, "geometry": {"type": "Point", "coordinates": [-3.15894216242, 47.6381835411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93d467be3ecacde5539f951fbdc16f99196e377c", "fields": {"nom_de_la_commune": "FEREL", "libell_d_acheminement": "FEREL", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56058"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8682b65cbe2a3824abca3e62c9a845a4cb9787bc", "fields": {"nom_de_la_commune": "LES FORGES", "libell_d_acheminement": "LES FORGES", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56059"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d1953a032b3a071db5d98543e2b4c359d106e24", "fields": {"nom_de_la_commune": "GOURHEL", "libell_d_acheminement": "GOURHEL", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56065"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab20f7c71bbda4d3d828f01cc8ee7066111d5d6", "fields": {"nom_de_la_commune": "GUERN", "libell_d_acheminement": "GUERN", "code_postal": "56310", "coordonnees_gps": [47.9751607277, -3.12433210411], "code_commune_insee": "56076"}, "geometry": {"type": "Point", "coordinates": [-3.12433210411, 47.9751607277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc96e8342b44088717c256c7dd84543078d98e54", "fields": {"nom_de_la_commune": "GUIDEL", "libell_d_acheminement": "GUIDEL", "code_postal": "56520", "coordonnees_gps": [47.7942746645, -3.49216136954], "code_commune_insee": "56078"}, "geometry": {"type": "Point", "coordinates": [-3.49216136954, 47.7942746645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b05f69f542b41e961bdde66065c79df93514987", "fields": {"nom_de_la_commune": "GUILLAC", "libell_d_acheminement": "GUILLAC", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56079"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2023c6d21e98a6be2456e48fb150b66dcdefbbf4", "fields": {"nom_de_la_commune": "LANGONNET", "libell_d_acheminement": "LANGONNET", "code_postal": "56630", "coordonnees_gps": [48.1319405478, -3.48128643934], "code_commune_insee": "56100"}, "geometry": {"type": "Point", "coordinates": [-3.48128643934, 48.1319405478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61f70d499b35771a22169b81a33c53a13987b134", "fields": {"nom_de_la_commune": "LARMOR BADEN", "libell_d_acheminement": "LARMOR BADEN", "code_postal": "56870", "coordonnees_gps": [47.6124073819, -2.90240136291], "code_commune_insee": "56106"}, "geometry": {"type": "Point", "coordinates": [-2.90240136291, 47.6124073819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e92573e36df3d71e5b59ee8c382db9c31aa82f", "fields": {"nom_de_la_commune": "LOCMINE", "libell_d_acheminement": "LOCMINE", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56117"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49962e66ba1b4fb406409ad028e9efdc7d321aa", "fields": {"nom_de_la_commune": "MALANSAC", "libell_d_acheminement": "MALANSAC", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56123"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c9271b0d7d7e715609f3a0c15bbecf0bb3575e", "fields": {"nom_de_la_commune": "MELRAND", "libell_d_acheminement": "MELRAND", "code_postal": "56310", "coordonnees_gps": [47.9751607277, -3.12433210411], "code_commune_insee": "56128"}, "geometry": {"type": "Point", "coordinates": [-3.12433210411, 47.9751607277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c5b195c38180cff4e884754d04fab657b6ce818", "fields": {"nom_de_la_commune": "MONTERBLANC", "libell_d_acheminement": "MONTERBLANC", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56137"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "516de8b72093c18f9e916ec364f858e0c3993843", "fields": {"nom_de_la_commune": "MONTERTELOT", "libell_d_acheminement": "MONTERTELOT", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56139"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6287ad4ba0a9825d49ca0ca391366013e128b26", "fields": {"nom_de_la_commune": "NOYAL PONTIVY", "libell_d_acheminement": "NOYAL PONTIVY", "code_postal": "56920", "coordonnees_gps": [48.081238115, -2.86082261519], "code_commune_insee": "56151"}, "geometry": {"type": "Point", "coordinates": [-2.86082261519, 48.081238115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac1a79608c81053934ac9183603e80c6ea77138a", "fields": {"nom_de_la_commune": "PERSQUEN", "libell_d_acheminement": "PERSQUEN", "code_postal": "56160", "coordonnees_gps": [48.075486202, -3.23804952585], "code_commune_insee": "56156"}, "geometry": {"type": "Point", "coordinates": [-3.23804952585, 48.075486202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbc26b0b405304985eedd3e2c3ef17400279aa8b", "fields": {"nom_de_la_commune": "PLOERMEL", "libell_d_acheminement": "PLOERMEL", "code_postal": "56800", "coordonnees_gps": [47.9419730138, -2.35837892185], "code_commune_insee": "56165"}, "geometry": {"type": "Point", "coordinates": [-2.35837892185, 47.9419730138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684955bccc2e48874a6c30f4c4d9ca7ffdb509d6", "fields": {"nom_de_la_commune": "PLOUGOUMELEN", "libell_d_acheminement": "PLOUGOUMELEN", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56167"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d4c81860da62b28296f013a271c939f739b8921", "fields": {"nom_de_la_commune": "PLUMELIN", "libell_d_acheminement": "PLUMELIN", "code_postal": "56500", "coordonnees_gps": [47.9163628401, -2.81404432498], "code_commune_insee": "56174"}, "geometry": {"type": "Point", "coordinates": [-2.81404432498, 47.9163628401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c0e093e11f84a85f25e4ae8becfd772e88f129c", "fields": {"nom_de_la_commune": "PLUMERGAT", "libell_d_acheminement": "PLUMERGAT", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56175"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef3f07491351bb2d70cfc450e9b4928003259246", "fields": {"nom_de_la_commune": "PONTIVY", "libell_d_acheminement": "PONTIVY", "code_postal": "56300", "coordonnees_gps": [48.0841906584, -2.98247941695], "code_commune_insee": "56178"}, "geometry": {"type": "Point", "coordinates": [-2.98247941695, 48.0841906584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b1dc51863f414e5cf34029c1c257e45f3fecf3", "fields": {"nom_de_la_commune": "QUELNEUC", "libell_d_acheminement": "QUELNEUC", "code_postal": "56910", "coordonnees_gps": [47.8192433861, -2.1438942597], "code_commune_insee": "56183"}, "geometry": {"type": "Point", "coordinates": [-2.1438942597, 47.8192433861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a5d16e421c9adabf76d493d9ab5b3860e1817fd", "fields": {"nom_de_la_commune": "QUESTEMBERT", "libell_d_acheminement": "QUESTEMBERT", "code_postal": "56230", "coordonnees_gps": [47.6890583485, -2.46488930013], "code_commune_insee": "56184"}, "geometry": {"type": "Point", "coordinates": [-2.46488930013, 47.6890583485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58e4e15a4b60e3e4129c71d5e6060f174a45ebd3", "fields": {"nom_de_la_commune": "QUEVEN", "libell_d_acheminement": "QUEVEN", "code_postal": "56530", "coordonnees_gps": [47.7891669692, -3.42348141885], "code_commune_insee": "56185"}, "geometry": {"type": "Point", "coordinates": [-3.42348141885, 47.7891669692]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d81efadbb12e2054c90946412cfe2ef47fd186a", "fields": {"nom_de_la_commune": "REMINIAC", "libell_d_acheminement": "REMINIAC", "code_postal": "56140", "coordonnees_gps": [47.8148193736, -2.33237582503], "code_commune_insee": "56191"}, "geometry": {"type": "Point", "coordinates": [-2.33237582503, 47.8148193736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02d3e88060bcebedf195d693d3a51c2977ec21e9", "fields": {"nom_de_la_commune": "RIANTEC", "libell_d_acheminement": "RIANTEC", "code_postal": "56670", "coordonnees_gps": [47.7178742099, -3.30258640805], "code_commune_insee": "56193"}, "geometry": {"type": "Point", "coordinates": [-3.30258640805, 47.7178742099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f776d7e41d5d107be12ce752153d4876def4593", "fields": {"nom_de_la_commune": "LA ROCHE BERNARD", "libell_d_acheminement": "LA ROCHE BERNARD", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56195"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64e35d9ecae87282d96ca0da28c046faeec78c6", "fields": {"nom_de_la_commune": "ROCHEFORT EN TERRE", "libell_d_acheminement": "ROCHEFORT EN TERRE", "code_postal": "56220", "coordonnees_gps": [47.6818573935, -2.29947827563], "code_commune_insee": "56196"}, "geometry": {"type": "Point", "coordinates": [-2.29947827563, 47.6818573935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c8968b2300d8dda23bdd63941a3aa5fcb440be6", "fields": {"code_postal": "56460", "code_commune_insee": "56197", "libell_d_acheminement": "VAL D OUST", "ligne_5": "LA CHAPELLE CARO", "nom_de_la_commune": "VAL D OUST", "coordonnees_gps": [47.8267704974, -2.49804841656]}, "geometry": {"type": "Point", "coordinates": [-2.49804841656, 47.8267704974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3edc38a1bd6d70de52a7594be794317253bde9fb", "fields": {"nom_de_la_commune": "ROUDOUALLEC", "libell_d_acheminement": "ROUDOUALLEC", "code_postal": "56110", "coordonnees_gps": [48.1237137726, -3.61197294513], "code_commune_insee": "56199"}, "geometry": {"type": "Point", "coordinates": [-3.61197294513, 48.1237137726]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96be6a18b6005f32b677c3d9c2aec96d2fe5d2ae", "fields": {"nom_de_la_commune": "ST CARADEC TREGOMEL", "libell_d_acheminement": "ST CARADEC TREGOMEL", "code_postal": "56540", "coordonnees_gps": [48.0574401287, -3.35915181496], "code_commune_insee": "56210"}, "geometry": {"type": "Point", "coordinates": [-3.35915181496, 48.0574401287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75b930fee34d15b58c7ade8357aaf9566df76ed3", "fields": {"nom_de_la_commune": "ST DOLAY", "libell_d_acheminement": "ST DOLAY", "code_postal": "56130", "coordonnees_gps": [47.5390395668, -2.27541387453], "code_commune_insee": "56212"}, "geometry": {"type": "Point", "coordinates": [-2.27541387453, 47.5390395668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b516f2c158e53e645f69bb3186ed7537551a9ce", "fields": {"nom_de_la_commune": "ST GORGON", "libell_d_acheminement": "ST GORGON", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56216"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0415b4ec939eccc08873549e4781b84869ac0a92", "fields": {"nom_de_la_commune": "ST JEAN LA POTERIE", "libell_d_acheminement": "ST JEAN LA POTERIE", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56223"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c444b03558ca6d8a66616f759f11a28fa780a47", "fields": {"nom_de_la_commune": "ST MALO DES TROIS FONTAINES", "libell_d_acheminement": "ST MALO DES TROIS FONTAINES", "code_postal": "56490", "coordonnees_gps": [48.0867387661, -2.46008188361], "code_commune_insee": "56227"}, "geometry": {"type": "Point", "coordinates": [-2.46008188361, 48.0867387661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da7cac6f6f19b66f5add3a28d75ec4cb7fba876d", "fields": {"nom_de_la_commune": "ST SERVANT", "libell_d_acheminement": "ST SERVANT", "code_postal": "56120", "coordonnees_gps": [47.9731815307, -2.58477495892], "code_commune_insee": "56236"}, "geometry": {"type": "Point", "coordinates": [-2.58477495892, 47.9731815307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02825e4bee9a028c58730a7f400dd87dfbc0d25b", "fields": {"nom_de_la_commune": "ST THURIAU", "libell_d_acheminement": "ST THURIAU", "code_postal": "56300", "coordonnees_gps": [48.0841906584, -2.98247941695], "code_commune_insee": "56237"}, "geometry": {"type": "Point", "coordinates": [-2.98247941695, 48.0841906584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49d5375b5ae148f7f262e6875a2ade4a0c4fb4f0", "fields": {"nom_de_la_commune": "ST VINCENT SUR OUST", "libell_d_acheminement": "ST VINCENT SUR OUST", "code_postal": "56350", "coordonnees_gps": [47.6324026728, -2.17753231258], "code_commune_insee": "56239"}, "geometry": {"type": "Point", "coordinates": [-2.17753231258, 47.6324026728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5da793d8fbb3acd73e23f97cd4b0b17dee4e59c", "fields": {"nom_de_la_commune": "SARZEAU", "libell_d_acheminement": "SARZEAU", "code_postal": "56370", "coordonnees_gps": [47.524503914, -2.74138748812], "code_commune_insee": "56240"}, "geometry": {"type": "Point", "coordinates": [-2.74138748812, 47.524503914]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3d01eec1b9700b9bff20434f00db86b6c3d5f1", "fields": {"nom_de_la_commune": "SAUZON", "libell_d_acheminement": "SAUZON", "code_postal": "56360", "coordonnees_gps": [47.3271241561, -3.17738378145], "code_commune_insee": "56241"}, "geometry": {"type": "Point", "coordinates": [-3.17738378145, 47.3271241561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4ac6422fbd59432a94d3aadba58e5e7f7d0d763", "fields": {"nom_de_la_commune": "SENE", "libell_d_acheminement": "SENE", "code_postal": "56860", "coordonnees_gps": [47.6246499349, -2.72984042736], "code_commune_insee": "56243"}, "geometry": {"type": "Point", "coordinates": [-2.72984042736, 47.6246499349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ddc2cff0b6365d704a4a136d92eec837109c835", "fields": {"nom_de_la_commune": "SILFIAC", "libell_d_acheminement": "SILFIAC", "code_postal": "56480", "coordonnees_gps": [48.1490399195, -3.08590175236], "code_commune_insee": "56245"}, "geometry": {"type": "Point", "coordinates": [-3.08590175236, 48.1490399195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5219aaf547d6b979a91025861c87b4235916a754", "fields": {"nom_de_la_commune": "THEIX NOYALO", "libell_d_acheminement": "THEIX NOYALO", "code_postal": "56450", "coordonnees_gps": [47.5984313167, -2.64319395081], "code_commune_insee": "56251"}, "geometry": {"type": "Point", "coordinates": [-2.64319395081, 47.5984313167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2a11706bd6b9058df2fe32835066c2d3d01d81", "fields": {"code_postal": "56450", "code_commune_insee": "56251", "libell_d_acheminement": "THEIX NOYALO", "ligne_5": "NOYALO", "nom_de_la_commune": "THEIX NOYALO", "coordonnees_gps": [47.5984313167, -2.64319395081]}, "geometry": {"type": "Point", "coordinates": [-2.64319395081, 47.5984313167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bcc14a36f32688e46ed4603b3c29d3560995710", "fields": {"nom_de_la_commune": "VANNES", "libell_d_acheminement": "VANNES", "code_postal": "56000", "coordonnees_gps": [47.6598173381, -2.75698478615], "code_commune_insee": "56260"}, "geometry": {"type": "Point", "coordinates": [-2.75698478615, 47.6598173381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b66b21b6ee112ab821cafc77bcafc49a59e24e0", "fields": {"nom_de_la_commune": "LA VRAIE CROIX", "libell_d_acheminement": "LA VRAIE CROIX", "code_postal": "56250", "coordonnees_gps": [47.7163844225, -2.60664652784], "code_commune_insee": "56261"}, "geometry": {"type": "Point", "coordinates": [-2.60664652784, 47.7163844225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c16d6b1a8e32a0e50201280b4ab156ad668dd7bd", "fields": {"nom_de_la_commune": "STE ANNE D AURAY", "libell_d_acheminement": "STE ANNE D AURAY", "code_postal": "56400", "coordonnees_gps": [47.6912101066, -2.97204014767], "code_commune_insee": "56263"}, "geometry": {"type": "Point", "coordinates": [-2.97204014767, 47.6912101066]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "857d3ab0d245c7528932f2acc668773a4b2f4c17", "fields": {"nom_de_la_commune": "ABONCOURT SUR SEILLE", "libell_d_acheminement": "ABONCOURT SUR SEILLE", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57002"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c34cc8a18b9c7121a4707989927b2ec357e6066f", "fields": {"nom_de_la_commune": "ACHEN", "libell_d_acheminement": "ACHEN", "code_postal": "57412", "coordonnees_gps": [49.0305210047, 7.16958668406], "code_commune_insee": "57006"}, "geometry": {"type": "Point", "coordinates": [7.16958668406, 49.0305210047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "127afea133031f1180abcca64c468c4b6acc8636", "fields": {"nom_de_la_commune": "ALGRANGE", "libell_d_acheminement": "ALGRANGE", "code_postal": "57440", "coordonnees_gps": [49.3774806221, 6.04516727983], "code_commune_insee": "57012"}, "geometry": {"type": "Point", "coordinates": [6.04516727983, 49.3774806221]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "255efc32e727878d2c628e352099d5f478533a9b", "fields": {"nom_de_la_commune": "ALTVILLER", "libell_d_acheminement": "ALTVILLER", "code_postal": "57730", "coordonnees_gps": [49.0823148993, 6.73315918141], "code_commune_insee": "57015"}, "geometry": {"type": "Point", "coordinates": [6.73315918141, 49.0823148993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "526b20307f1916450111ed5562f7d562a029c07e", "fields": {"nom_de_la_commune": "AMELECOURT", "libell_d_acheminement": "AMELECOURT", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57018"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9fd6719fea8d2cdd2301c7881f6e051cdd88032", "fields": {"nom_de_la_commune": "ANCY DORNOT", "libell_d_acheminement": "ANCY DORNOT", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57021"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf716e0d4e13e917fde95c03d2967f1d7ef1e85", "fields": {"code_postal": "57130", "code_commune_insee": "57021", "libell_d_acheminement": "ANCY DORNOT", "ligne_5": "DORNOT", "nom_de_la_commune": "ANCY DORNOT", "coordonnees_gps": [49.0926058282, 6.02256649302]}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6341c401921702d101f0c78932b1b1c117868176", "fields": {"nom_de_la_commune": "ANTILLY", "libell_d_acheminement": "ANTILLY", "code_postal": "57640", "coordonnees_gps": [49.1985854137, 6.30080948256], "code_commune_insee": "57024"}, "geometry": {"type": "Point", "coordinates": [6.30080948256, 49.1985854137]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d64bfad5635be07293a3ceb17710e70aff8ca61", "fields": {"nom_de_la_commune": "APACH", "libell_d_acheminement": "APACH", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57026"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f263d1630dc7addc86bb6469b762799a03f77cd", "fields": {"nom_de_la_commune": "ARRIANCE", "libell_d_acheminement": "ARRIANCE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57029"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6675cfe14d5f3549237f16cb2c0a6d4db5cd860", "fields": {"nom_de_la_commune": "AZOUDANGE", "libell_d_acheminement": "AZOUDANGE", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57044"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30073aef39186cd904140e85ee41c37549298ddf", "fields": {"nom_de_la_commune": "BACOURT", "libell_d_acheminement": "BACOURT", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57045"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35d5975919a7b9fb22144363cecc3568bc08cf91", "fields": {"nom_de_la_commune": "LE BAN ST MARTIN", "libell_d_acheminement": "LE BAN ST MARTIN", "code_postal": "57050", "coordonnees_gps": [49.1138494739, 6.17894504375], "code_commune_insee": "57049"}, "geometry": {"type": "Point", "coordinates": [6.17894504375, 49.1138494739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2c813566f179018ca1b1c396d7cdc72f4ed148", "fields": {"nom_de_la_commune": "BARST", "libell_d_acheminement": "BARST", "code_postal": "57450", "coordonnees_gps": [49.098477693, 6.86570683111], "code_commune_insee": "57052"}, "geometry": {"type": "Point", "coordinates": [6.86570683111, 49.098477693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f58a4f8ca94805358578f9b0637d4e265269a518", "fields": {"nom_de_la_commune": "BAZONCOURT", "libell_d_acheminement": "BAZONCOURT", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57055"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3efb9785f4f332d4d1913939b73768398edb9031", "fields": {"nom_de_la_commune": "DAGNEUX", "libell_d_acheminement": "DAGNEUX", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01142"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "431795207ee85ef6b65764cc75f0c9f1663e57df", "fields": {"nom_de_la_commune": "CONFORT", "libell_d_acheminement": "CONFORT", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01114"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7304fd67db9ce0b781365247f903decf50693a49", "fields": {"nom_de_la_commune": "COURTES", "libell_d_acheminement": "COURTES", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01128"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9e09598544f01e2d15070bf995d7a87ad27c780", "fields": {"nom_de_la_commune": "DORTAN", "libell_d_acheminement": "DORTAN", "code_postal": "01590", "coordonnees_gps": [46.3238684456, 5.65548376535], "code_commune_insee": "01148"}, "geometry": {"type": "Point", "coordinates": [5.65548376535, 46.3238684456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3c440220707f362241b7274c9315fa7c2a15300", "fields": {"nom_de_la_commune": "MANTENAY MONTLIN", "libell_d_acheminement": "MANTENAY MONTLIN", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01230"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b8735bef8c8da5f1c010af690cb6ac15253356d", "fields": {"nom_de_la_commune": "MEILLONNAS", "libell_d_acheminement": "MEILLONNAS", "code_postal": "01370", "coordonnees_gps": [46.2853749129, 5.32614321781], "code_commune_insee": "01241"}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c21d3567550d01e9046f51cbdd1f757da3f221f7", "fields": {"nom_de_la_commune": "MARSONNAS", "libell_d_acheminement": "MARSONNAS", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01236"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b77a0b5462eee9dadcdba436edaf4dbd1a12902d", "fields": {"nom_de_la_commune": "JUJURIEUX", "libell_d_acheminement": "JUJURIEUX", "code_postal": "01640", "coordonnees_gps": [46.0337779297, 5.42151732468], "code_commune_insee": "01199"}, "geometry": {"type": "Point", "coordinates": [5.42151732468, 46.0337779297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b246fb84906a3dfce2edff6dc98e252b7e3ca7f3", "fields": {"nom_de_la_commune": "MARIGNIEU", "libell_d_acheminement": "MARIGNIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01234"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42c238d0b37b647cc9750ff36c2e48e66bf086a", "fields": {"nom_de_la_commune": "LANCRANS", "libell_d_acheminement": "LANCRANS", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01205"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af204949d0a33b832ed5a76e67c849b8ed8b3363", "fields": {"nom_de_la_commune": "JASSERON", "libell_d_acheminement": "JASSERON", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01195"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aacefe18ccc2d56e1266410cfb9e1c306caecbbb", "fields": {"nom_de_la_commune": "MAILLAT", "libell_d_acheminement": "MAILLAT", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01228"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f37f5acca2d3676926e7f25229175c5d72a6a6", "fields": {"nom_de_la_commune": "LELEX", "libell_d_acheminement": "LELEX", "code_postal": "01410", "coordonnees_gps": [46.2796643227, 5.91198359476], "code_commune_insee": "01210"}, "geometry": {"type": "Point", "coordinates": [5.91198359476, 46.2796643227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "845ce75acd968f256b26beef316668fde7f2829f", "fields": {"nom_de_la_commune": "LAIZ", "libell_d_acheminement": "LAIZ", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01203"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88ddde9ea3d15fb1d8b43c0969af8f7d512c608c", "fields": {"code_postal": "01370", "code_commune_insee": "01426", "libell_d_acheminement": "VAL REVERMONT", "ligne_5": "TREFFORT CUISIAT", "nom_de_la_commune": "VAL REVERMONT", "coordonnees_gps": [46.2853749129, 5.32614321781]}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "863afcbd1f5c6a9b9323d228e678232152281cd8", "fields": {"code_postal": "01370", "code_commune_insee": "01426", "libell_d_acheminement": "VAL REVERMONT", "ligne_5": "CUISIAT", "nom_de_la_commune": "VAL REVERMONT", "coordonnees_gps": [46.2853749129, 5.32614321781]}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c9df04fa5377e79d4394d3576054081eb91e970", "fields": {"nom_de_la_commune": "ST TRIVIER SUR MOIGNANS", "libell_d_acheminement": "ST TRIVIER SUR MOIGNANS", "code_postal": "01990", "coordonnees_gps": [46.0766987934, 4.89959868147], "code_commune_insee": "01389"}, "geometry": {"type": "Point", "coordinates": [4.89959868147, 46.0766987934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "324256b4bc38d08f29b2600c16515b8f0672bfd0", "fields": {"nom_de_la_commune": "ST TRIVIER DE COURTES", "libell_d_acheminement": "ST TRIVIER DE COURTES", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01388"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eeb62802324e6630e2f4a39f74c1cbefd34c61a", "fields": {"nom_de_la_commune": "SULIGNAT", "libell_d_acheminement": "SULIGNAT", "code_postal": "01400", "coordonnees_gps": [46.1331001556, 4.99858455549], "code_commune_insee": "01412"}, "geometry": {"type": "Point", "coordinates": [4.99858455549, 46.1331001556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e0b5edd3cf4dce26fbefb79e82b4a59f64d5ec", "fields": {"nom_de_la_commune": "SUTRIEU", "libell_d_acheminement": "SUTRIEU", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01414"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b32ef90556e2a5bc4bb8ddd47f679466e6ae44f", "fields": {"nom_de_la_commune": "VERNOUX", "libell_d_acheminement": "VERNOUX", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01433"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7182c9acf559eb2764bf53026e8836c9c497ada7", "fields": {"code_postal": "01700", "code_commune_insee": "01249", "libell_d_acheminement": "MIRIBEL", "ligne_5": "LES ECHETS", "nom_de_la_commune": "MIRIBEL", "coordonnees_gps": [45.8388521429, 4.95806179291]}, "geometry": {"type": "Point", "coordinates": [4.95806179291, 45.8388521429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f84ab8124243d0727ffd6651ed828cd8951a3e93", "fields": {"nom_de_la_commune": "MURS ET GELIGNIEUX", "libell_d_acheminement": "MURS ET GELIGNIEUX", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01268"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7c6615bd9ea88e7b292becf873507a9bf9e5185", "fields": {"nom_de_la_commune": "LES NEYROLLES", "libell_d_acheminement": "LES NEYROLLES", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01274"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15693e758c6f874df3b22d3590c1e6e08452143e", "fields": {"nom_de_la_commune": "PONT D AIN", "libell_d_acheminement": "PONT D AIN", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01304"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9951cfb6cdc3865f27bf2e724ffc4734a6f8fedf", "fields": {"nom_de_la_commune": "MONTANGES", "libell_d_acheminement": "MONTANGES", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01257"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de74dfc12af0ee2df2ca0b914354f4cd71dad95a", "fields": {"nom_de_la_commune": "MEXIMIEUX", "libell_d_acheminement": "MEXIMIEUX", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01244"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c050e986b8aa34046bb2a9341a647d8e107575", "fields": {"nom_de_la_commune": "MERIGNAT", "libell_d_acheminement": "MERIGNAT", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01242"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e05e90895dc55b25cccbc49cd6db3e695ec6e79", "fields": {"nom_de_la_commune": "MONTCET", "libell_d_acheminement": "MONTCET", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01259"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "613b5d1d554dcf7b0696657d7853ca051b7d5d9d", "fields": {"nom_de_la_commune": "NIEVROZ", "libell_d_acheminement": "NIEVROZ", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01276"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51759081def88dd191e9fee042bbed4f0431be77", "fields": {"nom_de_la_commune": "ONCIEU", "libell_d_acheminement": "ONCIEU", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01279"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f19c5467fd6b9feb08a5dc170fc50ef4da1a9796", "fields": {"code_postal": "01310", "code_commune_insee": "01065", "libell_d_acheminement": "BUELLAS", "ligne_5": "CORGENON", "nom_de_la_commune": "BUELLAS", "coordonnees_gps": [46.2412963633, 5.11553315012]}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c65aad9c8054dd07284abe4fbb31b313153248b", "fields": {"nom_de_la_commune": "BELLEGARDE SUR VALSERINE", "libell_d_acheminement": "BELLEGARDE SUR VALSERINE", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01033"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf03eff2460bb802f6f95e0c2f09d5ba676f091f", "fields": {"nom_de_la_commune": "BELMONT LUTHEZIEU", "libell_d_acheminement": "BELMONT LUTHEZIEU", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01036"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fec6b564ce7c35eb632e33c500e658682e217d56", "fields": {"nom_de_la_commune": "BREGNIER CORDON", "libell_d_acheminement": "BREGNIER CORDON", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01058"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8c40ac18c960695216b82a42d0ca0e79e6265ea", "fields": {"nom_de_la_commune": "BRESSOLLES", "libell_d_acheminement": "BRESSOLLES", "code_postal": "01360", "coordonnees_gps": [45.8283269463, 5.15327415034], "code_commune_insee": "01062"}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5270d28f08e27a05d895c172860eacc54d59f577", "fields": {"nom_de_la_commune": "BELLEYDOUX", "libell_d_acheminement": "BELLEYDOUX", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01035"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54fa7017e3efcf63e54805f194aaa8cb793fc80f", "fields": {"nom_de_la_commune": "BOISSEY", "libell_d_acheminement": "BOISSEY", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01050"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c45e3ab1c9db5dfaa27a8206ddb12b1c8235610", "fields": {"nom_de_la_commune": "BETTANT", "libell_d_acheminement": "BETTANT", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01041"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b4a5476df22c3ed0f3c43f27fe0e486f4ebc3e1", "fields": {"nom_de_la_commune": "BLYES", "libell_d_acheminement": "BLYES", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01047"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "605ad3871e6378486c4cb3c4645632b802119686", "fields": {"nom_de_la_commune": "BRENS", "libell_d_acheminement": "BRENS", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01061"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfb2a9126c7ef03ba1ee44946dbfcbd3875fb2c8", "fields": {"nom_de_la_commune": "ST MAURICE DE GOURDANS", "libell_d_acheminement": "ST MAURICE DE GOURDANS", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01378"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "093083170a86795366c97f203fd5f3a002b3186a", "fields": {"nom_de_la_commune": "ST NIZIER LE BOUCHOUX", "libell_d_acheminement": "ST NIZIER LE BOUCHOUX", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01380"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1c3ce98f975ba697293b9f0cd09be487996abb", "fields": {"nom_de_la_commune": "ST MAURICE DE REMENS", "libell_d_acheminement": "ST MAURICE DE REMENS", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01379"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "149d0fcdfc7fcb6a71183b87658e556f1a8a4f86", "fields": {"nom_de_la_commune": "ST NIZIER LE DESERT", "libell_d_acheminement": "ST NIZIER LE DESERT", "code_postal": "01320", "coordonnees_gps": [46.0113616676, 5.19303242296], "code_commune_insee": "01381"}, "geometry": {"type": "Point", "coordinates": [5.19303242296, 46.0113616676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00a5903166e518bc097a4083a310955a2c0edabf", "fields": {"nom_de_la_commune": "ST MARTIN DU FRENE", "libell_d_acheminement": "ST MARTIN DU FRENE", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01373"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06472f2af532ac04dfe8900f3ee4efa7a1f0ba9", "fields": {"nom_de_la_commune": "SIMANDRE SUR SURAN", "libell_d_acheminement": "SIMANDRE SUR SURAN", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01408"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adbbc0f15600bd0598d397b92cdcc5af4ac81dda", "fields": {"nom_de_la_commune": "STE JULIE", "libell_d_acheminement": "STE JULIE", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01366"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6928f9374efa6e5a2b0d20958c4b7f46715e1d4", "fields": {"nom_de_la_commune": "SAUVERNY", "libell_d_acheminement": "SAUVERNY", "code_postal": "01220", "coordonnees_gps": [46.3657930813, 6.1147054957], "code_commune_insee": "01397"}, "geometry": {"type": "Point", "coordinates": [6.1147054957, 46.3657930813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1105b15d50dca3c5a8afbd7208403b9515f9000b", "fields": {"nom_de_la_commune": "SERVAS", "libell_d_acheminement": "SERVAS", "code_postal": "01960", "coordonnees_gps": [46.1542253866, 5.17526170568], "code_commune_insee": "01405"}, "geometry": {"type": "Point", "coordinates": [5.17526170568, 46.1542253866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "072a4bfa29595121c0b3b614c5751a92a91bb3c9", "fields": {"nom_de_la_commune": "SEGNY", "libell_d_acheminement": "SEGNY", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01399"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce53a5cf885391b13bb25a52c411d032f181395e", "fields": {"code_postal": "01200", "code_commune_insee": "01091", "libell_d_acheminement": "CHATILLON EN MICHAILLE", "ligne_5": "VOUVRAY", "nom_de_la_commune": "CHATILLON EN MICHAILLE", "coordonnees_gps": [46.1338706653, 5.81259483702]}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55ebb5b6782c085ea1d225b96161664ac9d1e580", "fields": {"code_postal": "01200", "code_commune_insee": "01091", "libell_d_acheminement": "CHATILLON EN MICHAILLE", "ligne_5": "OCHIAZ", "nom_de_la_commune": "CHATILLON EN MICHAILLE", "coordonnees_gps": [46.1338706653, 5.81259483702]}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ac1548be91e94f29f470b0db607aa79004760f8", "fields": {"nom_de_la_commune": "LA CHAPELLE DU CHATELARD", "libell_d_acheminement": "LA CHAPELLE DU CHATELARD", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01085"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22c444df3cc15717d49cb3e3f4af2b5eeebddc43", "fields": {"nom_de_la_commune": "CHATILLON EN MICHAILLE", "libell_d_acheminement": "CHATILLON EN MICHAILLE", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01091"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e5ad1f18607ee4812d604765e21b9392c56e67d", "fields": {"nom_de_la_commune": "CHALLES LA MONTAGNE", "libell_d_acheminement": "CHALLES LA MONTAGNE", "code_postal": "01450", "coordonnees_gps": [46.1107742949, 5.45519733117], "code_commune_insee": "01077"}, "geometry": {"type": "Point", "coordinates": [5.45519733117, 46.1107742949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eafbd0af0daf5833093251145ccfa3e21f84079", "fields": {"nom_de_la_commune": "CHAVEYRIAT", "libell_d_acheminement": "CHAVEYRIAT", "code_postal": "01660", "coordonnees_gps": [46.2212048437, 5.05767036024], "code_commune_insee": "01096"}, "geometry": {"type": "Point", "coordinates": [5.05767036024, 46.2212048437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "745f4c3625e288e64d26afafc1c7a8763827f5b7", "fields": {"nom_de_la_commune": "CEYZERIEU", "libell_d_acheminement": "CEYZERIEU", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01073"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9fdf550cbbfd0b95988f8517d6ef48ce732f0a", "fields": {"nom_de_la_commune": "CHALAMONT", "libell_d_acheminement": "CHALAMONT", "code_postal": "01320", "coordonnees_gps": [46.0113616676, 5.19303242296], "code_commune_insee": "01074"}, "geometry": {"type": "Point", "coordinates": [5.19303242296, 46.0113616676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3849cac430e553b179a3e6b300e2d5e579909a5", "fields": {"nom_de_la_commune": "CEIGNES", "libell_d_acheminement": "CEIGNES", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01067"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9363ab677036d9f077cb251a274c0961ce5aa20d", "fields": {"nom_de_la_commune": "CHANAY", "libell_d_acheminement": "CHANAY", "code_postal": "01420", "coordonnees_gps": [45.9853522838, 5.7838620591], "code_commune_insee": "01082"}, "geometry": {"type": "Point", "coordinates": [5.7838620591, 45.9853522838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6095482ae538bb689d869541667339f0c7f12365", "fields": {"nom_de_la_commune": "ST ANDRE SUR VIEUX JONC", "libell_d_acheminement": "ST ANDRE SUR VIEUX JONC", "code_postal": "01960", "coordonnees_gps": [46.1542253866, 5.17526170568], "code_commune_insee": "01336"}, "geometry": {"type": "Point", "coordinates": [5.17526170568, 46.1542253866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48c04f090d7b10378122180e670da0e0a84acb97", "fields": {"nom_de_la_commune": "ST GERMAIN SUR RENON", "libell_d_acheminement": "ST GERMAIN SUR RENON", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01359"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a136e14c38beeab33ff5739e43a4846d53de9faf", "fields": {"nom_de_la_commune": "ST DIDIER D AUSSIAT", "libell_d_acheminement": "ST DIDIER D AUSSIAT", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01346"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e6ce22755e9271a99c0f68208cf390859c6e4c", "fields": {"nom_de_la_commune": "ST DENIS EN BUGEY", "libell_d_acheminement": "ST DENIS EN BUGEY", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01345"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f532c854b509d35c7d46753f41dd12e35ff0a4a", "fields": {"nom_de_la_commune": "ST ANDRE D HUIRIAT", "libell_d_acheminement": "ST ANDRE D HUIRIAT", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01334"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf80f41a0137e3f8c0286f5fe5bcf7e47fb96c53", "fields": {"nom_de_la_commune": "GROSLEE ST BENOIT", "libell_d_acheminement": "GROSLEE ST BENOIT", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01338"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e83c4479d2db4bfb431e398508b8a7594c8f4e9", "fields": {"nom_de_la_commune": "PREMEYZEL", "libell_d_acheminement": "PREMEYZEL", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01310"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da8f22397da9d6e53a33771dcbfa2361436fd30a", "fields": {"nom_de_la_commune": "POUILLAT", "libell_d_acheminement": "POUILLAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01309"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6e39db57ca68bfdba2091392a208aff8efb58be", "fields": {"nom_de_la_commune": "ST CHAMP", "libell_d_acheminement": "ST CHAMP", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01341"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1836bda3e81bd3a8066ca9e2962996e270690bfc", "fields": {"nom_de_la_commune": "PRIAY", "libell_d_acheminement": "PRIAY", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01314"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3731f248509671a9b2894a463d1c4762c71c0903", "fields": {"code_postal": "01800", "code_commune_insee": "01450", "libell_d_acheminement": "VILLIEU LOYES MOLLON", "ligne_5": "LOYES", "nom_de_la_commune": "VILLIEU LOYES MOLLON", "coordonnees_gps": [45.8984701804, 5.16340257624]}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b7fd9783ca8d850bbb073bc4e7d7449ecac651e", "fields": {"nom_de_la_commune": "VILLEMOTIER", "libell_d_acheminement": "VILLEMOTIER", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01445"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19cf81c9b77c817e07f67a6bde911e7e0dc71d14", "fields": {"nom_de_la_commune": "VILLES", "libell_d_acheminement": "VILLES", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01448"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd69a22e117b659b7cf7316bdff2ca54ce7f97ef", "fields": {"nom_de_la_commune": "ACHERY", "libell_d_acheminement": "ACHERY", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02002"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "843c9f0bfcfd7c6dd8094cb46e01e171e5f61575", "fields": {"nom_de_la_commune": "AGNICOURT ET SECHELLES", "libell_d_acheminement": "AGNICOURT ET SECHELLES", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02004"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a6cd48b3f7958e6f2df43dc0e511f6e54495a3", "fields": {"nom_de_la_commune": "AULNOIS SOUS LAON", "libell_d_acheminement": "AULNOIS SOUS LAON", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02037"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c02c2830e11bd5e5187c8a38610538762b14ed8", "fields": {"nom_de_la_commune": "ANY MARTIN RIEUX", "libell_d_acheminement": "ANY MARTIN RIEUX", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02020"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebeb30d65b3bafa5614021a5bd1e6e46c7d53303", "fields": {"nom_de_la_commune": "ASSIS SUR SERRE", "libell_d_acheminement": "ASSIS SUR SERRE", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02027"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aca8ff902888af57ea7e12218db8351559c65832", "fields": {"nom_de_la_commune": "AUBENTON", "libell_d_acheminement": "AUBENTON", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02031"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50d2f343d74038833c8c427e6c049dc0d2c7bbbc", "fields": {"nom_de_la_commune": "AIZELLES", "libell_d_acheminement": "AIZELLES", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02007"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "658ecc34419d351499574817dced0951486ea856", "fields": {"nom_de_la_commune": "ARRANCY", "libell_d_acheminement": "ARRANCY", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02024"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e688702a207de01a96cf41b848680afff57488", "fields": {"nom_de_la_commune": "ATTILLY", "libell_d_acheminement": "ATTILLY", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02029"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee673d1d4148a6eb378faf8d890a08f513cd4039", "fields": {"code_postal": "06160", "code_commune_insee": "06004", "libell_d_acheminement": "ANTIBES", "ligne_5": "CAP D ANTIBES", "nom_de_la_commune": "ANTIBES", "coordonnees_gps": [43.5876536208, 7.10542360834]}, "geometry": {"type": "Point", "coordinates": [7.10542360834, 43.5876536208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05442794dbc1fe174fc544099595123972cab98d", "fields": {"nom_de_la_commune": "ST PIERRE D ARGENCON", "libell_d_acheminement": "ST PIERRE D ARGENCON", "code_postal": "05140", "coordonnees_gps": [44.5714639145, 5.71301541571], "code_commune_insee": "05154"}, "geometry": {"type": "Point", "coordinates": [5.71301541571, 44.5714639145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71f5f5e8a1be6d51bde33870b6dba0a70e2f87ba", "fields": {"nom_de_la_commune": "LE SAUZE DU LAC", "libell_d_acheminement": "LE SAUZE DU LAC", "code_postal": "05160", "coordonnees_gps": [44.5645200462, 6.36522312148], "code_commune_insee": "05163"}, "geometry": {"type": "Point", "coordinates": [6.36522312148, 44.5645200462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d2175154c91995c3110a1896dd2a3e8901caa19", "fields": {"nom_de_la_commune": "VALLOUISE", "libell_d_acheminement": "VALLOUISE", "code_postal": "05290", "coordonnees_gps": [44.8269347148, 6.42358106998], "code_commune_insee": "05175"}, "geometry": {"type": "Point", "coordinates": [6.42358106998, 44.8269347148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a86b5307e3f14858056907efb1023ba70411d11", "fields": {"nom_de_la_commune": "BENDEJUN", "libell_d_acheminement": "BENDEJUN", "code_postal": "06390", "coordonnees_gps": [43.8299178598, 7.30988628013], "code_commune_insee": "06014"}, "geometry": {"type": "Point", "coordinates": [7.30988628013, 43.8299178598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ab914879ab477ca6f7bb6510b22927e973c354", "fields": {"nom_de_la_commune": "SERRES", "libell_d_acheminement": "SERRES", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05166"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e705e2a161f8981a887dd7e2e80109efcbc3504", "fields": {"nom_de_la_commune": "VEYNES", "libell_d_acheminement": "VEYNES", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05179"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2c4e05d4dcaeb7cdf983908eb7d384a7feaed7", "fields": {"nom_de_la_commune": "THEUS", "libell_d_acheminement": "THEUS", "code_postal": "05190", "coordonnees_gps": [44.4605179001, 6.21963036357], "code_commune_insee": "05171"}, "geometry": {"type": "Point", "coordinates": [6.21963036357, 44.4605179001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ff833e99d76960387f4f50c32c58442dcf8bc2a", "fields": {"nom_de_la_commune": "ANDON", "libell_d_acheminement": "ANDON", "code_postal": "06750", "coordonnees_gps": [43.7770802464, 6.7641665855], "code_commune_insee": "06003"}, "geometry": {"type": "Point", "coordinates": [6.7641665855, 43.7770802464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9422753def655dc8b2c0773dd9865299d49f00a2", "fields": {"nom_de_la_commune": "ST MARTIN D ENTRAUNES", "libell_d_acheminement": "ST MARTIN D ENTRAUNES", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06125"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465b9db47ae3b2ccba7151f47caa384ebd3e89be", "fields": {"nom_de_la_commune": "ST DALMAS LE SELVAGE", "libell_d_acheminement": "ST DALMAS LE SELVAGE", "code_postal": "06660", "coordonnees_gps": [44.2619230059, 6.89791152248], "code_commune_insee": "06119"}, "geometry": {"type": "Point", "coordinates": [6.89791152248, 44.2619230059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d814ea7ea0d9a633fe13a8793df5614a6102b610", "fields": {"nom_de_la_commune": "ST ETIENNE DE TINEE", "libell_d_acheminement": "ST ETIENNE DE TINEE", "code_postal": "06660", "coordonnees_gps": [44.2619230059, 6.89791152248], "code_commune_insee": "06120"}, "geometry": {"type": "Point", "coordinates": [6.89791152248, 44.2619230059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abca505a9473b8fd342b586ab53767a38c8989c7", "fields": {"nom_de_la_commune": "ST JEAN CAP FERRAT", "libell_d_acheminement": "ST JEAN CAP FERRAT", "code_postal": "06230", "coordonnees_gps": [43.7028977501, 7.3242506305], "code_commune_insee": "06121"}, "geometry": {"type": "Point", "coordinates": [7.3242506305, 43.7028977501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ad773d100cdf4d053502d0f3429d176e5d27dec", "fields": {"nom_de_la_commune": "ST LAURENT DU VAR", "libell_d_acheminement": "ST LAURENT DU VAR", "code_postal": "06700", "coordonnees_gps": [43.6865692143, 7.18230458019], "code_commune_insee": "06123"}, "geometry": {"type": "Point", "coordinates": [7.18230458019, 43.6865692143]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4890a2826cfd1d2a9af9e12f2d3536a65b66e387", "fields": {"nom_de_la_commune": "ROQUESTERON", "libell_d_acheminement": "ROQUESTERON", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06106"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07c145aae887670cece8494a1ebbfd5138824bd2", "fields": {"nom_de_la_commune": "RIGAUD", "libell_d_acheminement": "RIGAUD", "code_postal": "06260", "coordonnees_gps": [43.9759308664, 6.94521623557], "code_commune_insee": "06101"}, "geometry": {"type": "Point", "coordinates": [6.94521623557, 43.9759308664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba0276075f24833fac8bd6c559666303766f424", "fields": {"nom_de_la_commune": "MARIE", "libell_d_acheminement": "MARIE", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06080"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c9798f5ab0f289e71ccd9c490643a6dd5a985f1", "fields": {"nom_de_la_commune": "LACOUGOTTE CADOUL", "libell_d_acheminement": "LACOUGOTTE CADOUL", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81126"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "382db5710876755b6afd054743a21415ed647a4f", "fields": {"nom_de_la_commune": "LASGRAISSES", "libell_d_acheminement": "LASGRAISSES", "code_postal": "81300", "coordonnees_gps": [43.7690659575, 2.00556233123], "code_commune_insee": "81138"}, "geometry": {"type": "Point", "coordinates": [2.00556233123, 43.7690659575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0d1d7b16960b8d7ba5355520c21dabf6d40ddd", "fields": {"nom_de_la_commune": "LAUTREC", "libell_d_acheminement": "LAUTREC", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81139"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca840c5bdd3a020dff80802c6e4f74a2d18de9c6", "fields": {"nom_de_la_commune": "LEMPAUT", "libell_d_acheminement": "LEMPAUT", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81142"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a268b843062286594b12b7723cff43b9859c27", "fields": {"nom_de_la_commune": "LESCOUT", "libell_d_acheminement": "LESCOUT", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81143"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805ab4b5a03fb606a4c835a98de282f71fc0961b", "fields": {"nom_de_la_commune": "LESCURE D ALBIGEOIS", "libell_d_acheminement": "LESCURE D ALBIGEOIS", "code_postal": "81380", "coordonnees_gps": [43.9654056637, 2.18193704982], "code_commune_insee": "81144"}, "geometry": {"type": "Point", "coordinates": [2.18193704982, 43.9654056637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50f03a0404b91df419d8d0cc00129d0e7eaf1895", "fields": {"nom_de_la_commune": "MARSSAC SUR TARN", "libell_d_acheminement": "MARSSAC SUR TARN", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81156"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b0d52173a3db6a9acc561789c62609fca3d5135", "fields": {"nom_de_la_commune": "LE MASNAU MASSUGUIES", "libell_d_acheminement": "LE MASNAU MASSUGUIES", "code_postal": "81530", "coordonnees_gps": [43.7712371341, 2.57768572319], "code_commune_insee": "81158"}, "geometry": {"type": "Point", "coordinates": [2.57768572319, 43.7712371341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa48bf2ce82fd4e8676cf5a10c6572e9b6fdbb3", "fields": {"nom_de_la_commune": "MASSAC SERAN", "libell_d_acheminement": "MASSAC SERAN", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81159"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "346fa0d0e891bc8bd2801190ee0c365c2ef46e8b", "fields": {"nom_de_la_commune": "MISSECLE", "libell_d_acheminement": "MISSECLE", "code_postal": "81300", "coordonnees_gps": [43.7690659575, 2.00556233123], "code_commune_insee": "81169"}, "geometry": {"type": "Point", "coordinates": [2.00556233123, 43.7690659575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fccf23287d49aeaa3984661986ee41a96078ca0", "fields": {"nom_de_la_commune": "MONESTIES", "libell_d_acheminement": "MONESTIES", "code_postal": "81640", "coordonnees_gps": [44.0838977271, 2.06928881361], "code_commune_insee": "81170"}, "geometry": {"type": "Point", "coordinates": [2.06928881361, 44.0838977271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d399a9cc55dad4e5bd05e38bd65b0ab495d841d5", "fields": {"nom_de_la_commune": "MONTCABRIER", "libell_d_acheminement": "MONTCABRIER", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81173"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0dcadcd5402bcc18f7bff6ec2608cb179d4fc5", "fields": {"nom_de_la_commune": "MONTDRAGON", "libell_d_acheminement": "MONTDRAGON", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81174"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af083785644515d424770323e0a07fe8c5711613", "fields": {"nom_de_la_commune": "MONT ROC", "libell_d_acheminement": "MONT ROC", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81183"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ec1753c30d7b14b5233b4286929f7828aab7389", "fields": {"nom_de_la_commune": "MONTROSIER", "libell_d_acheminement": "MONTROSIER", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81184"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b3bdc8ec83e9ec01a0a98af9f6a5fb420a89a42", "fields": {"nom_de_la_commune": "MOULIN MAGE", "libell_d_acheminement": "MOULIN MAGE", "code_postal": "81320", "coordonnees_gps": [43.6890069654, 2.82334026086], "code_commune_insee": "81188"}, "geometry": {"type": "Point", "coordinates": [2.82334026086, 43.6890069654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c677afe9f9acca404400c277f658cab1da8fdbb0", "fields": {"nom_de_la_commune": "MOUZENS", "libell_d_acheminement": "MOUZENS", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81189"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "786ab836efb5702e90d39e9cdbf23dea1e513212", "fields": {"nom_de_la_commune": "MOUZIEYS TEULET", "libell_d_acheminement": "MOUZIEYS TEULET", "code_postal": "81430", "coordonnees_gps": [43.9055720904, 2.35289359915], "code_commune_insee": "81190"}, "geometry": {"type": "Point", "coordinates": [2.35289359915, 43.9055720904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "582369d84978052c1e61841d55084510ddf0c8a0", "fields": {"nom_de_la_commune": "NAGES", "libell_d_acheminement": "NAGES", "code_postal": "81320", "coordonnees_gps": [43.6890069654, 2.82334026086], "code_commune_insee": "81193"}, "geometry": {"type": "Point", "coordinates": [2.82334026086, 43.6890069654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "768bf4d32a314fa93484b559b6ccbfc18a43f867", "fields": {"nom_de_la_commune": "ORBAN", "libell_d_acheminement": "ORBAN", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81198"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7852820b69bae261110e2ccf88759111adeff69", "fields": {"nom_de_la_commune": "PALLEVILLE", "libell_d_acheminement": "PALLEVILLE", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81200"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81830ae76cc61f83e58c5283bc5e94305697667d", "fields": {"nom_de_la_commune": "PAULINET", "libell_d_acheminement": "PAULINET", "code_postal": "81250", "coordonnees_gps": [43.8730410539, 2.47494660719], "code_commune_insee": "81203"}, "geometry": {"type": "Point", "coordinates": [2.47494660719, 43.8730410539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "071889029ef019710ecea380f491b1c3a42fe3b8", "fields": {"nom_de_la_commune": "PEYROLE", "libell_d_acheminement": "PEYROLE", "code_postal": "81310", "coordonnees_gps": [43.8652051061, 1.81061411386], "code_commune_insee": "81208"}, "geometry": {"type": "Point", "coordinates": [1.81061411386, 43.8652051061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18bf79178a2efe127e0ff46e3c64d81c02087508", "fields": {"nom_de_la_commune": "PONT DE LARN", "libell_d_acheminement": "PONT DE LARN", "code_postal": "81660", "coordonnees_gps": [43.5285716347, 2.39739974245], "code_commune_insee": "81209"}, "geometry": {"type": "Point", "coordinates": [2.39739974245, 43.5285716347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2fc86f2559e22ce6dd37ded6b27dece0666b3ad", "fields": {"nom_de_la_commune": "PRATVIEL", "libell_d_acheminement": "PRATVIEL", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81213"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81e21c453ffc7809a0a1f59c18c1cbd9cc6fe674", "fields": {"nom_de_la_commune": "RAYSSAC", "libell_d_acheminement": "RAYSSAC", "code_postal": "81330", "coordonnees_gps": [43.7511670544, 2.45756809311], "code_commune_insee": "81221"}, "geometry": {"type": "Point", "coordinates": [2.45756809311, 43.7511670544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b408bc8a81dcc751958b0f71826d89eaf67ce38", "fields": {"nom_de_la_commune": "ROSIERES", "libell_d_acheminement": "ROSIERES", "code_postal": "81400", "coordonnees_gps": [44.0428682167, 2.14865381556], "code_commune_insee": "81230"}, "geometry": {"type": "Point", "coordinates": [2.14865381556, 44.0428682167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9623e4d2fa2061ef73d0979849e902a16f3ddc13", "fields": {"nom_de_la_commune": "ROUSSAYROLLES", "libell_d_acheminement": "ROUSSAYROLLES", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81234"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b0f9268f2a72db371ded36fab427d985ae23ef", "fields": {"nom_de_la_commune": "ST AMANCET", "libell_d_acheminement": "ST AMANCET", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81237"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "512e14ce02d6715d9b1a6b6be6a64d04f5a0397a", "fields": {"nom_de_la_commune": "ST BENOIT DE CARMAUX", "libell_d_acheminement": "ST BENOIT DE CARMAUX", "code_postal": "81400", "coordonnees_gps": [44.0428682167, 2.14865381556], "code_commune_insee": "81244"}, "geometry": {"type": "Point", "coordinates": [2.14865381556, 44.0428682167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a64a73f07dc9d38faddd8811b906efc1198bd80", "fields": {"code_postal": "81190", "code_commune_insee": "81245", "libell_d_acheminement": "ST CHRISTOPHE", "ligne_5": "NARTHOUX", "nom_de_la_commune": "ST CHRISTOPHE", "coordonnees_gps": [44.1239197891, 2.18707972996]}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2adc39c62e117c9c9c5f3437b858808fabb47e93", "fields": {"nom_de_la_commune": "ST JEAN DE MARCEL", "libell_d_acheminement": "ST JEAN DE MARCEL", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81254"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11b5899aa92aa6c2216631a1ca6f20d70555888a", "fields": {"nom_de_la_commune": "ST JEAN DE VALS", "libell_d_acheminement": "ST JEAN DE VALS", "code_postal": "81210", "coordonnees_gps": [43.6740454961, 2.30184097262], "code_commune_insee": "81256"}, "geometry": {"type": "Point", "coordinates": [2.30184097262, 43.6740454961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "267630ce9df6ce919566fc590ee81f3f3dae904d", "fields": {"nom_de_la_commune": "ST JULIEN GAULENE", "libell_d_acheminement": "ST JULIEN GAULENE", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81259"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de038299e4f7d94652bd37421e557e5d11a561a", "fields": {"nom_de_la_commune": "ST PAUL CAP DE JOUX", "libell_d_acheminement": "ST PAUL CAP DE JOUX", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81266"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155a0f650335bb590f35f9f4380221fdb8aeec0a", "fields": {"nom_de_la_commune": "ST PIERRE DE TRIVISY", "libell_d_acheminement": "ST PIERRE DE TRIVISY", "code_postal": "81330", "coordonnees_gps": [43.7511670544, 2.45756809311], "code_commune_insee": "81267"}, "geometry": {"type": "Point", "coordinates": [2.45756809311, 43.7511670544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d03e201db7684c7448c9b1681c29311923c130e7", "fields": {"nom_de_la_commune": "ST SALVI DE CARCAVES", "libell_d_acheminement": "ST SALVI DE CARCAVES", "code_postal": "81530", "coordonnees_gps": [43.7712371341, 2.57768572319], "code_commune_insee": "81268"}, "geometry": {"type": "Point", "coordinates": [2.57768572319, 43.7712371341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90985719fc17fe40647c9870d90904438718204c", "fields": {"nom_de_la_commune": "LE SEQUESTRE", "libell_d_acheminement": "LE SEQUESTRE", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81284"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b5e3902eada37c2995df031980f7e01e31386fe", "fields": {"nom_de_la_commune": "SERVIES", "libell_d_acheminement": "SERVIES", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81286"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d670c9ce354b98ed62d4344a09efb4deebd32cd4", "fields": {"nom_de_la_commune": "TAIX", "libell_d_acheminement": "TAIX", "code_postal": "81130", "coordonnees_gps": [43.9981450368, 2.08071282625], "code_commune_insee": "81291"}, "geometry": {"type": "Point", "coordinates": [2.08071282625, 43.9981450368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "161faef38d87304f6c94bd60d300fa308eab590e", "fields": {"nom_de_la_commune": "TERRE CLAPIER", "libell_d_acheminement": "TERRE CLAPIER", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81296"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b2a42470970aaa089cb0414f204660999230f0", "fields": {"nom_de_la_commune": "VERDALLE", "libell_d_acheminement": "VERDALLE", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81312"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afbfcb27bc78014eca3afcd4c77f4e789c73af72", "fields": {"nom_de_la_commune": "VILLEFRANCHE D ALBIGEOIS", "libell_d_acheminement": "VILLEFRANCHE D ALBIGEOIS", "code_postal": "81430", "coordonnees_gps": [43.9055720904, 2.35289359915], "code_commune_insee": "81317"}, "geometry": {"type": "Point", "coordinates": [2.35289359915, 43.9055720904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13a6e22a40829dcdc8d456e9a0aaa5a1b4f37c9", "fields": {"nom_de_la_commune": "VILLENEUVE LES LAVAUR", "libell_d_acheminement": "VILLENEUVE LES LAVAUR", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81318"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3622b665576f8065099aa5bdebe540949bd98d63", "fields": {"nom_de_la_commune": "VILLENEUVE SUR VERE", "libell_d_acheminement": "VILLENEUVE SUR VERE", "code_postal": "81130", "coordonnees_gps": [43.9981450368, 2.08071282625], "code_commune_insee": "81319"}, "geometry": {"type": "Point", "coordinates": [2.08071282625, 43.9981450368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "860319ba89f7e90246b60d235c3a46cc126334fc", "fields": {"nom_de_la_commune": "AUVILLAR", "libell_d_acheminement": "AUVILLAR", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82008"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc153a7d6a0dc002e170fa54fa27885c7c6a34c5", "fields": {"nom_de_la_commune": "BEAUMONT DE LOMAGNE", "libell_d_acheminement": "BEAUMONT DE LOMAGNE", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82013"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bd915c38ea9ceb73baa160898aba582481bb7cf", "fields": {"nom_de_la_commune": "BOURG DE VISA", "libell_d_acheminement": "BOURG DE VISA", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82022"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0002a58ac993223c883a3743e4d3b8f025159f43", "fields": {"nom_de_la_commune": "BRASSAC", "libell_d_acheminement": "BRASSAC", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82024"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cb8e7fdd72df69a73e26449fb00510ea9265939", "fields": {"nom_de_la_commune": "CASTELSAGRAT", "libell_d_acheminement": "CASTELSAGRAT", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82032"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "238504f7ea437908257598a1bdc9f9890bf82b18", "fields": {"nom_de_la_commune": "CASTERA BOUZET", "libell_d_acheminement": "CASTERA BOUZET", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82034"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62c6db3267a05af41caeb858a23f80a73ab96b82", "fields": {"nom_de_la_commune": "CAZES MONDENARD", "libell_d_acheminement": "CAZES MONDENARD", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82042"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fbc792c7be3bf61659025f0f9be6d0c2471e0e4", "fields": {"nom_de_la_commune": "COMBEROUGER", "libell_d_acheminement": "COMBEROUGER", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82043"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "669b9b79564ce77191a8909a88fce22934ec2336", "fields": {"nom_de_la_commune": "DIEUPENTALE", "libell_d_acheminement": "DIEUPENTALE", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82048"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "059d215fd0929b0c445bfe4cd5e428a5bcdae3db", "fields": {"nom_de_la_commune": "ESCATALENS", "libell_d_acheminement": "ESCATALENS", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82052"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b434a45c182746ed55113729572c60f715f4ff8", "fields": {"nom_de_la_commune": "FAUDOAS", "libell_d_acheminement": "FAUDOAS", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82059"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c36ae62a0289d1575240f26448dbca7306c155c", "fields": {"nom_de_la_commune": "GOAS", "libell_d_acheminement": "GOAS", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82071"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d01bede8cf4b235e6d33e660be42bb10ce6642d", "fields": {"nom_de_la_commune": "LABARTHE", "libell_d_acheminement": "LABARTHE", "code_postal": "82220", "coordonnees_gps": [44.1884297921, 1.33875921921], "code_commune_insee": "82077"}, "geometry": {"type": "Point", "coordinates": [1.33875921921, 44.1884297921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbffaf3fb2b981bd84b1a94b50c70a4c00ae4ac0", "fields": {"nom_de_la_commune": "LARRAZET", "libell_d_acheminement": "LARRAZET", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82093"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ffb8133504f8351621d6f98625287a5888afdb1", "fields": {"nom_de_la_commune": "MARIGNAC", "libell_d_acheminement": "MARIGNAC", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82103"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7baf7c5a5c8e9b05c52642d02e8225ce71e7283d", "fields": {"nom_de_la_commune": "MAUMUSSON", "libell_d_acheminement": "MAUMUSSON", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82107"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe362df17701761c88238f9d58ec12b8b1beb8c8", "fields": {"nom_de_la_commune": "MIRAMONT DE QUERCY", "libell_d_acheminement": "MIRAMONT DE QUERCY", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82111"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39a23b440d90e834a275d8e311430719460195d", "fields": {"nom_de_la_commune": "MONTBARLA", "libell_d_acheminement": "MONTBARLA", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82122"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba2dfe0be1ac55c513e31432624e40eb67441c85", "fields": {"nom_de_la_commune": "MONTESQUIEU", "libell_d_acheminement": "MONTESQUIEU", "code_postal": "82200", "coordonnees_gps": [44.130658243, 1.07974419868], "code_commune_insee": "82127"}, "geometry": {"type": "Point", "coordinates": [1.07974419868, 44.130658243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d226706d86e26528ecc4fe7f3357c8c220e6e383", "fields": {"nom_de_la_commune": "MONTGAILLARD", "libell_d_acheminement": "MONTGAILLARD", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82129"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed40066eedc5700a3dc5829b468316c3b3b04e1", "fields": {"nom_de_la_commune": "MOUILLAC", "libell_d_acheminement": "MOUILLAC", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82133"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55a18b555249fc56153814dc2ecabca84ccd478a", "fields": {"nom_de_la_commune": "ST AIGNAN", "libell_d_acheminement": "ST AIGNAN", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82152"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "455fcf6b12ff2ec7446e2e871ecbcfc62163430d", "fields": {"nom_de_la_commune": "ST ANTONIN NOBLE VAL", "libell_d_acheminement": "ST ANTONIN NOBLE VAL", "code_postal": "82140", "coordonnees_gps": [44.152188201, 1.74194876605], "code_commune_insee": "82155"}, "geometry": {"type": "Point", "coordinates": [1.74194876605, 44.152188201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a583de0f02692e26bef00d484f7f4af75e04e58", "fields": {"nom_de_la_commune": "ST CIRICE", "libell_d_acheminement": "ST CIRICE", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82158"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05a1169bd2cac31743ba334b58ba1025f5f8bbe4", "fields": {"nom_de_la_commune": "ST CLAIR", "libell_d_acheminement": "ST CLAIR", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82160"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80653793e374eab6589fed6a02640f35f7998d2f", "fields": {"nom_de_la_commune": "ST NICOLAS DE LA GRAVE", "libell_d_acheminement": "ST NICOLAS DE LA GRAVE", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82169"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00da3c91ffef3283299b8f10f6a34aac5695a942", "fields": {"nom_de_la_commune": "ST SARDOS", "libell_d_acheminement": "ST SARDOS", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82173"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1efdc2c84ce18c0d2f19927e043b947a450cf1b", "fields": {"nom_de_la_commune": "ST VINCENT D AUTEJAC", "libell_d_acheminement": "ST VINCENT D AUTEJAC", "code_postal": "82300", "coordonnees_gps": [44.1565353923, 1.5436793185], "code_commune_insee": "82174"}, "geometry": {"type": "Point", "coordinates": [1.5436793185, 44.1565353923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e180a444c29e0746c429351f844c74e4670f16f", "fields": {"nom_de_la_commune": "ST VINCENT LESPINASSE", "libell_d_acheminement": "ST VINCENT LESPINASSE", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82175"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e071cf839ec1ee30e4270cde5aeac86f390bc5e", "fields": {"nom_de_la_commune": "VERDUN SUR GARONNE", "libell_d_acheminement": "VERDUN SUR GARONNE", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82190"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0b4a807cf6dace4b05c84d023c6e38c64c7ceb", "fields": {"nom_de_la_commune": "VILLEBRUMIER", "libell_d_acheminement": "VILLEBRUMIER", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82194"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6aec45e008abf677eac56b6a4ed402e10f977fb", "fields": {"nom_de_la_commune": "ARTIGNOSC SUR VERDON", "libell_d_acheminement": "ARTIGNOSC SUR VERDON", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83005"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a4ac5ec65f33817e6361a3d67338123c7e5001b", "fields": {"nom_de_la_commune": "BAGNOLS EN FORET", "libell_d_acheminement": "BAGNOLS EN FORET", "code_postal": "83600", "coordonnees_gps": [43.4958707206, 6.756116629], "code_commune_insee": "83008"}, "geometry": {"type": "Point", "coordinates": [6.756116629, 43.4958707206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6355db4e468dc0346fd6259d19a52f27ca612de0", "fields": {"nom_de_la_commune": "BARGEMON", "libell_d_acheminement": "BARGEMON", "code_postal": "83830", "coordonnees_gps": [43.5889184339, 6.54988414192], "code_commune_insee": "83011"}, "geometry": {"type": "Point", "coordinates": [6.54988414192, 43.5889184339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c3597eeeb339b44bb491d352f4161d94aba5c17", "fields": {"nom_de_la_commune": "BAUDINARD SUR VERDON", "libell_d_acheminement": "BAUDINARD SUR VERDON", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83014"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c70feb8cfa045611e4ed858dc4115a4040c46174", "fields": {"nom_de_la_commune": "CABASSE", "libell_d_acheminement": "CABASSE", "code_postal": "83340", "coordonnees_gps": [43.3884986728, 6.30143999122], "code_commune_insee": "83026"}, "geometry": {"type": "Point", "coordinates": [6.30143999122, 43.3884986728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ffe08ba1b78ae7011f41dfa0ebda55aeba95dae1", "fields": {"nom_de_la_commune": "LE CANNET DES MAURES", "libell_d_acheminement": "LE CANNET DES MAURES", "code_postal": "83340", "coordonnees_gps": [43.3884986728, 6.30143999122], "code_commune_insee": "83031"}, "geometry": {"type": "Point", "coordinates": [6.30143999122, 43.3884986728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab5fae2539b236f3d089f24be72e58c487cecb5d", "fields": {"code_postal": "83330", "code_commune_insee": "83035", "libell_d_acheminement": "LE CASTELLET", "ligne_5": "LE CAMP", "nom_de_la_commune": "LE CASTELLET", "coordonnees_gps": [43.2073445411, 5.81845184293]}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b395acd65a5f4f9a433772916809e731418986", "fields": {"nom_de_la_commune": "LA CELLE", "libell_d_acheminement": "LA CELLE", "code_postal": "83170", "coordonnees_gps": [43.3988588214, 6.01212360255], "code_commune_insee": "83037"}, "geometry": {"type": "Point", "coordinates": [6.01212360255, 43.3988588214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "897d78a9f0c5464861b4dbae8421b0f42a910c39", "fields": {"nom_de_la_commune": "CLAVIERS", "libell_d_acheminement": "CLAVIERS", "code_postal": "83830", "coordonnees_gps": [43.5889184339, 6.54988414192], "code_commune_insee": "83041"}, "geometry": {"type": "Point", "coordinates": [6.54988414192, 43.5889184339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "971c9b9efb8c30eb2dcbe71bee435275832007a1", "fields": {"nom_de_la_commune": "COGOLIN", "libell_d_acheminement": "COGOLIN", "code_postal": "83310", "coordonnees_gps": [43.248161575, 6.50847082602], "code_commune_insee": "83042"}, "geometry": {"type": "Point", "coordinates": [6.50847082602, 43.248161575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "352a240d65eff330e97d34b31b5588a1a53f15f8", "fields": {"nom_de_la_commune": "COMPS SUR ARTUBY", "libell_d_acheminement": "COMPS SUR ARTUBY", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83044"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90d98a0e846bf27f5bca7814cbcda2bbc50f0a38", "fields": {"nom_de_la_commune": "LA CRAU", "libell_d_acheminement": "LA CRAU", "code_postal": "83260", "coordonnees_gps": [43.1635844264, 6.09277944177], "code_commune_insee": "83047"}, "geometry": {"type": "Point", "coordinates": [6.09277944177, 43.1635844264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06471bb94a15f7dfb16f57859033bea10586a9b1", "fields": {"nom_de_la_commune": "EVENOS", "libell_d_acheminement": "EVENOS", "code_postal": "83330", "coordonnees_gps": [43.2073445411, 5.81845184293], "code_commune_insee": "83053"}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5487af279102d4885fafbbc25870b9ba3b49b3d", "fields": {"nom_de_la_commune": "FAYENCE", "libell_d_acheminement": "FAYENCE", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83055"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b95d93c8701b49dabdff0048137e3e3c15dffe56", "fields": {"nom_de_la_commune": "LA GARDE", "libell_d_acheminement": "LA GARDE", "code_postal": "83130", "coordonnees_gps": [43.1266498114, 6.01917093261], "code_commune_insee": "83062"}, "geometry": {"type": "Point", "coordinates": [6.01917093261, 43.1266498114]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba343477010817feff6831d2107a5452cdc9d19", "fields": {"nom_de_la_commune": "HYERES", "libell_d_acheminement": "HYERES", "code_postal": "83400", "coordonnees_gps": [43.1018498571, 6.18925765161], "code_commune_insee": "83069"}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa40a3103e6e1fabc88c7ea5e22b2d016489c76f", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "AYGUADE CEINTURON", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa69c3a5d4a2b830c2824ba40f0f407297899436", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "LA CAPTE", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c609a33dd23b9a4f17da653a11c626790638ff63", "fields": {"nom_de_la_commune": "LA LONDE LES MAURES", "libell_d_acheminement": "LA LONDE LES MAURES", "code_postal": "83250", "coordonnees_gps": [43.1690007504, 6.24259863091], "code_commune_insee": "83071"}, "geometry": {"type": "Point", "coordinates": [6.24259863091, 43.1690007504]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4c42f84de69488d98e5e87c437448376e3099c9", "fields": {"nom_de_la_commune": "OLLIOULES", "libell_d_acheminement": "OLLIOULES", "code_postal": "83190", "coordonnees_gps": [43.1387347267, 5.85457210121], "code_commune_insee": "83090"}, "geometry": {"type": "Point", "coordinates": [5.85457210121, 43.1387347267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3cfccc5247c39ff6f8f8fec1d88314cd099caf7", "fields": {"nom_de_la_commune": "PIERREFEU DU VAR", "libell_d_acheminement": "PIERREFEU DU VAR", "code_postal": "83390", "coordonnees_gps": [43.2473941525, 6.13306231898], "code_commune_insee": "83091"}, "geometry": {"type": "Point", "coordinates": [6.13306231898, 43.2473941525]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd488440a52217539a1c5ce4f9318e065a13aa84", "fields": {"nom_de_la_commune": "PUGET SUR ARGENS", "libell_d_acheminement": "PUGET SUR ARGENS", "code_postal": "83480", "coordonnees_gps": [43.4713940239, 6.6860602971], "code_commune_insee": "83099"}, "geometry": {"type": "Point", "coordinates": [6.6860602971, 43.4713940239]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19007fdae827b87f1b9c2b9b095598475688137c", "fields": {"nom_de_la_commune": "ROCBARON", "libell_d_acheminement": "ROCBARON", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83106"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71640091100bf9cba6dbde06e6bc6b7f5cb518b4", "fields": {"nom_de_la_commune": "ROQUEBRUNE SUR ARGENS", "libell_d_acheminement": "ROQUEBRUNE SUR ARGENS", "code_postal": "83520", "coordonnees_gps": [43.4286195636, 6.65195663362], "code_commune_insee": "83107"}, "geometry": {"type": "Point", "coordinates": [6.65195663362, 43.4286195636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06324fb6f697b1a3abb0a0b3cdd3f793a4445306", "fields": {"nom_de_la_commune": "YZENGREMER", "libell_d_acheminement": "YZENGREMER", "code_postal": "80520", "coordonnees_gps": [50.0605501817, 1.51862547548], "code_commune_insee": "80834"}, "geometry": {"type": "Point", "coordinates": [1.51862547548, 50.0605501817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aea02beff26b12525e7b7f9cede072a51fa8e7a", "fields": {"nom_de_la_commune": "BELCASTEL", "libell_d_acheminement": "BELCASTEL", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81025"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff071832fa2dad4fac70b507943d8bc0b6b67d57", "fields": {"code_postal": "81430", "code_commune_insee": "81026", "libell_d_acheminement": "BELLEGARDE MARSAL", "ligne_5": "MARSAL", "nom_de_la_commune": "BELLEGARDE MARSAL", "coordonnees_gps": [43.9055720904, 2.35289359915]}, "geometry": {"type": "Point", "coordinates": [2.35289359915, 43.9055720904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e54ce069dbbd0b5053dfa9a21f796dbf07aaaf07", "fields": {"nom_de_la_commune": "BERLATS", "libell_d_acheminement": "BERLATS", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81028"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a328816676368d1e1067ff4c4164f972132295f", "fields": {"nom_de_la_commune": "BLAYE LES MINES", "libell_d_acheminement": "BLAYE LES MINES", "code_postal": "81400", "coordonnees_gps": [44.0428682167, 2.14865381556], "code_commune_insee": "81033"}, "geometry": {"type": "Point", "coordinates": [2.14865381556, 44.0428682167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3fe55074d436649e9908a4cb1b3404b02459120", "fields": {"nom_de_la_commune": "CAMBOUNES", "libell_d_acheminement": "CAMBOUNES", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81053"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96bbe1679ea023d18af0528d1104387f4895c315", "fields": {"nom_de_la_commune": "CAMBOUNET SUR LE SOR", "libell_d_acheminement": "CAMBOUNET SUR LE SOR", "code_postal": "81580", "coordonnees_gps": [43.5600042132, 2.12607706604], "code_commune_insee": "81054"}, "geometry": {"type": "Point", "coordinates": [2.12607706604, 43.5600042132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb71fb95c9faf08ca079facbb250712ba44cff0", "fields": {"nom_de_la_commune": "LES CAMMAZES", "libell_d_acheminement": "LES CAMMAZES", "code_postal": "81540", "coordonnees_gps": [43.443120414, 2.07821163286], "code_commune_insee": "81055"}, "geometry": {"type": "Point", "coordinates": [2.07821163286, 43.443120414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "687f48be00e3a59f33643446f686416ffd6d7e18", "fields": {"nom_de_la_commune": "CAMPAGNAC", "libell_d_acheminement": "CAMPAGNAC", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81056"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aeeeadf7a25ce4db4c2e6f87605178e8b2e5d98", "fields": {"nom_de_la_commune": "CARBES", "libell_d_acheminement": "CARBES", "code_postal": "81570", "coordonnees_gps": [43.6265358099, 2.11305991393], "code_commune_insee": "81058"}, "geometry": {"type": "Point", "coordinates": [2.11305991393, 43.6265358099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2b8c153942a08a49b2f41822342f8db076ad2e", "fields": {"nom_de_la_commune": "CASTELNAU DE MONTMIRAL", "libell_d_acheminement": "CASTELNAU DE MONTMIRAL", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81064"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6deed41e7ce6a90d6fd71f6c473e879a1471881", "fields": {"nom_de_la_commune": "CRESPINET", "libell_d_acheminement": "CRESPINET", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81073"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0dc00ad70d2fec747b64d1acc91e6c48044c197", "fields": {"nom_de_la_commune": "CURVALLE", "libell_d_acheminement": "CURVALLE", "code_postal": "81250", "coordonnees_gps": [43.8730410539, 2.47494660719], "code_commune_insee": "81077"}, "geometry": {"type": "Point", "coordinates": [2.47494660719, 43.8730410539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb0e0e48a66636381aa52657f45a0b40090535d9", "fields": {"nom_de_la_commune": "FAYSSAC", "libell_d_acheminement": "FAYSSAC", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81087"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5066d20e9a0a0d5b4cd493c6efa0f2132786ca9b", "fields": {"nom_de_la_commune": "FAUCH", "libell_d_acheminement": "FAUCH", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81088"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71a5caefd33d4c3149ffa5d39c4da24ad396bd26", "fields": {"nom_de_la_commune": "FIAC", "libell_d_acheminement": "FIAC", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81092"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f2f14f4b5039b597ba0f0d2297d05d4c2ba3be5", "fields": {"nom_de_la_commune": "GAILLAC", "libell_d_acheminement": "GAILLAC", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81099"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce5a9667cc9102f3bce36e9d6c6ff2d8c6fd849e", "fields": {"nom_de_la_commune": "GARREVAQUES", "libell_d_acheminement": "GARREVAQUES", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81100"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ffacce5d2725ade863b9f63c6d6d1c318c65f66", "fields": {"nom_de_la_commune": "ITZAC", "libell_d_acheminement": "ITZAC", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81108"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "affcafc2a506291f4876043da801f1fbbe51052f", "fields": {"nom_de_la_commune": "JOUQUEVIEL", "libell_d_acheminement": "JOUQUEVIEL", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81110"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c051c0513862cd418d5d9ce3dc6020bd238555f", "fields": {"nom_de_la_commune": "LABASTIDE ROUAIROUX", "libell_d_acheminement": "LABASTIDE ROUAIROUX", "code_postal": "81270", "coordonnees_gps": [43.4832244347, 2.63608077298], "code_commune_insee": "81115"}, "geometry": {"type": "Point", "coordinates": [2.63608077298, 43.4832244347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07341a0c9b059d0e3c9db9e282442dc88de2cb8", "fields": {"nom_de_la_commune": "LABOUTARIE", "libell_d_acheminement": "LABOUTARIE", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81119"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f28201c2db902f12d9f9c1329f7f77430b858f66", "fields": {"nom_de_la_commune": "LACAUNE", "libell_d_acheminement": "LACAUNE", "code_postal": "81230", "coordonnees_gps": [43.6972916552, 2.68834406731], "code_commune_insee": "81124"}, "geometry": {"type": "Point", "coordinates": [2.68834406731, 43.6972916552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85d6f91bc9126420d4edaadf06b181ed764b1e57", "fields": {"nom_de_la_commune": "LAGARDIOLLE", "libell_d_acheminement": "LAGARDIOLLE", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81129"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7935a5c7608a8a99dfafe7f4c719d7cf9f9d32bd", "fields": {"nom_de_la_commune": "LAGRAVE", "libell_d_acheminement": "LAGRAVE", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81131"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f354ad1f9cafe6a3c6573a40de8bf30a245128a7", "fields": {"nom_de_la_commune": "GUITALENS L ALBAREDE", "libell_d_acheminement": "GUITALENS L ALBAREDE", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81132"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b81022aca495e599859552dbdcb95e436815eb", "fields": {"nom_de_la_commune": "LASFAILLADES", "libell_d_acheminement": "LASFAILLADES", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81137"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "964ea6d3bbdc91fdb102602a8ccf8c330ae5aab9", "fields": {"nom_de_la_commune": "LAVAUR", "libell_d_acheminement": "LAVAUR", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81140"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40ec70a1d258f3566e071aa124eddc13b01a9ada", "fields": {"nom_de_la_commune": "LISLE SUR TARN", "libell_d_acheminement": "LISLE SUR TARN", "code_postal": "81310", "coordonnees_gps": [43.8652051061, 1.81061411386], "code_commune_insee": "81145"}, "geometry": {"type": "Point", "coordinates": [1.81061411386, 43.8652051061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee8c2ae0c92813f7c67fa26cb3406e0d1d7766cf", "fields": {"nom_de_la_commune": "MAILHOC", "libell_d_acheminement": "MAILHOC", "code_postal": "81130", "coordonnees_gps": [43.9981450368, 2.08071282625], "code_commune_insee": "81152"}, "geometry": {"type": "Point", "coordinates": [2.08071282625, 43.9981450368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4950028a12d21200d1c09f91518acd626f62c4b8", "fields": {"nom_de_la_commune": "MASSAGUEL", "libell_d_acheminement": "MASSAGUEL", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81160"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52d20fd73475492cf5a6769dfebc35c3ccf59968", "fields": {"nom_de_la_commune": "MILHAVET", "libell_d_acheminement": "MILHAVET", "code_postal": "81130", "coordonnees_gps": [43.9981450368, 2.08071282625], "code_commune_insee": "81166"}, "geometry": {"type": "Point", "coordinates": [2.08071282625, 43.9981450368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d050a2b87748de9fb3a9b141b0507b81b93e918", "fields": {"nom_de_la_commune": "MONTPINIER", "libell_d_acheminement": "MONTPINIER", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81181"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fc43d720507cd8b402d2bdc95a4b85c9cf2fdfa", "fields": {"nom_de_la_commune": "POUDIS", "libell_d_acheminement": "POUDIS", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81210"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54b5abb7e129efec7ca638f4420af36537f1d69c", "fields": {"nom_de_la_commune": "PUECHOURSI", "libell_d_acheminement": "PUECHOURSI", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81214"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a83f4b9a75058b1f4890fea272789b483005e181", "fields": {"nom_de_la_commune": "RABASTENS", "libell_d_acheminement": "RABASTENS", "code_postal": "81800", "coordonnees_gps": [43.8337179111, 1.69697473698], "code_commune_insee": "81220"}, "geometry": {"type": "Point", "coordinates": [1.69697473698, 43.8337179111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35d326a1aea73ebcf79077a72bc47dcb87422a9d", "fields": {"nom_de_la_commune": "ROQUEMAURE", "libell_d_acheminement": "ROQUEMAURE", "code_postal": "81800", "coordonnees_gps": [43.8337179111, 1.69697473698], "code_commune_insee": "81228"}, "geometry": {"type": "Point", "coordinates": [1.69697473698, 43.8337179111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69d86ba61a9eb1f8c96d5d4ed4bc5496beac0124", "fields": {"nom_de_la_commune": "ROUMEGOUX", "libell_d_acheminement": "ROUMEGOUX", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81233"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf964610dd5b556ab5f2568e83d1555aafa0bd1c", "fields": {"nom_de_la_commune": "ST AGNAN", "libell_d_acheminement": "ST AGNAN", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81236"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3e531982da203ce19db094ce764a9ef187faee6", "fields": {"nom_de_la_commune": "ST GERMIER", "libell_d_acheminement": "ST GERMIER", "code_postal": "81210", "coordonnees_gps": [43.6740454961, 2.30184097262], "code_commune_insee": "81252"}, "geometry": {"type": "Point", "coordinates": [2.30184097262, 43.6740454961]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f286d789252bb9c181e7ef21825cc9a7464f3402", "fields": {"nom_de_la_commune": "ST GREGOIRE", "libell_d_acheminement": "ST GREGOIRE", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81253"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f3da8646d7148e2c4de0fd41de8c1c488beb5c4", "fields": {"nom_de_la_commune": "ST JULIEN DU PUY", "libell_d_acheminement": "ST JULIEN DU PUY", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81258"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca1033855b39b5ed0305f19217269a656e946ccf", "fields": {"nom_de_la_commune": "ST MICHEL DE VAX", "libell_d_acheminement": "ST MICHEL DE VAX", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81265"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33cfd65bda20a4ea9f24fbb719900e1d5e85e26d", "fields": {"nom_de_la_commune": "SAIX", "libell_d_acheminement": "SAIX", "code_postal": "81710", "coordonnees_gps": [43.5760032199, 2.19080149351], "code_commune_insee": "81273"}, "geometry": {"type": "Point", "coordinates": [2.19080149351, 43.5760032199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed720cbd0d05b772bc201bd467260f2b6245b0e", "fields": {"nom_de_la_commune": "LA SAUZIERE ST JEAN", "libell_d_acheminement": "LA SAUZIERE ST JEAN", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81279"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e4c781c1c11d4324d712c0bca82ed48af868ba4", "fields": {"nom_de_la_commune": "LE SEGUR", "libell_d_acheminement": "LE SEGUR", "code_postal": "81640", "coordonnees_gps": [44.0838977271, 2.06928881361], "code_commune_insee": "81280"}, "geometry": {"type": "Point", "coordinates": [2.06928881361, 44.0838977271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab4f61471673f159a92bd0c2ad64b8b18832741", "fields": {"nom_de_la_commune": "SIEURAC", "libell_d_acheminement": "SIEURAC", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81287"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37da6ff7f802f5acd51cb3f75426cf274b0d50e0", "fields": {"nom_de_la_commune": "SOUEL", "libell_d_acheminement": "SOUEL", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81290"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "812115337bd406faf390e38ae2fecf5f6fc7e7de", "fields": {"nom_de_la_commune": "TAURIAC", "libell_d_acheminement": "TAURIAC", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81293"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be2d216c21769363b0ae77d551146001fd811077", "fields": {"nom_de_la_commune": "TEILLET", "libell_d_acheminement": "TEILLET", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81295"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ce4fd3c79f744bdbc379c6a9d87e47e289ed917", "fields": {"nom_de_la_commune": "TREBAN", "libell_d_acheminement": "TREBAN", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81302"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d240caf708911614a2a4de76adaee7e4f3b5ec14", "fields": {"nom_de_la_commune": "TREVIEN", "libell_d_acheminement": "TREVIEN", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81304"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c78d1867d21f3c45ee6f12af1dae9776e5044821", "fields": {"nom_de_la_commune": "VABRE", "libell_d_acheminement": "VABRE", "code_postal": "81330", "coordonnees_gps": [43.7511670544, 2.45756809311], "code_commune_insee": "81305"}, "geometry": {"type": "Point", "coordinates": [2.45756809311, 43.7511670544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b9ceb9fa4694d7453ee12e6163af0008ab85b5", "fields": {"nom_de_la_commune": "VALENCE D ALBIGEOIS", "libell_d_acheminement": "VALENCE D ALBIGEOIS", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81308"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8f11e110a9820403835f5db54e58fdf200f7253", "fields": {"nom_de_la_commune": "AUCAMVILLE", "libell_d_acheminement": "AUCAMVILLE", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82005"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "509c5ff31c19d8eb427b0cd2200d33c72bcaa01d", "fields": {"nom_de_la_commune": "BELVEZE", "libell_d_acheminement": "BELVEZE", "code_postal": "82150", "coordonnees_gps": [44.3360020267, 0.998534979807], "code_commune_insee": "82016"}, "geometry": {"type": "Point", "coordinates": [0.998534979807, 44.3360020267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44959eb64a9291d1bf197031d58767be1622b840", "fields": {"nom_de_la_commune": "BESSENS", "libell_d_acheminement": "BESSENS", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82017"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e880a0a8134d025f9c566d1873644ff40dd9c9ba", "fields": {"nom_de_la_commune": "BIOULE", "libell_d_acheminement": "BIOULE", "code_postal": "82800", "coordonnees_gps": [44.0611709641, 1.58586539756], "code_commune_insee": "82018"}, "geometry": {"type": "Point", "coordinates": [1.58586539756, 44.0611709641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0424eaa26120f98f90d0b4e28c3074fdd5b2704", "fields": {"nom_de_la_commune": "CASTELSARRASIN", "libell_d_acheminement": "CASTELSARRASIN", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82033"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bba82683bf7b720c3da930fc8d4c66538320a141", "fields": {"nom_de_la_commune": "LE CAUSE", "libell_d_acheminement": "LE CAUSE", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82036"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ce8257bee302e522b81531a7df59851ab4edd11", "fields": {"nom_de_la_commune": "DONZAC", "libell_d_acheminement": "DONZAC", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82049"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82f313331479554305bf7576cdd0c53ee94e7455", "fields": {"nom_de_la_commune": "ESPALAIS", "libell_d_acheminement": "ESPALAIS", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82054"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e83e93210db79a8d8a5dc836caebc14d8dce116e", "fields": {"nom_de_la_commune": "GIMAT", "libell_d_acheminement": "GIMAT", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82068"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b54c197d1014837d14419fdcbaac61688b5c2a56", "fields": {"nom_de_la_commune": "GINALS", "libell_d_acheminement": "GINALS", "code_postal": "82330", "coordonnees_gps": [44.1880105438, 1.88037084955], "code_commune_insee": "82069"}, "geometry": {"type": "Point", "coordinates": [1.88037084955, 44.1880105438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3c9a3e948532d3d89543429dca646b634e195e2", "fields": {"nom_de_la_commune": "GOUDOURVILLE", "libell_d_acheminement": "GOUDOURVILLE", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82073"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f7a9c95323920f705ca58f4718e54cfa3f0e805", "fields": {"nom_de_la_commune": "L HONOR DE COS", "libell_d_acheminement": "L HONOR DE COS", "code_postal": "82130", "coordonnees_gps": [44.118372906, 1.29866187228], "code_commune_insee": "82076"}, "geometry": {"type": "Point", "coordinates": [1.29866187228, 44.118372906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f937a3893526a7b7a89b7c3d02ed6c0a0050007c", "fields": {"nom_de_la_commune": "LACHAPELLE", "libell_d_acheminement": "LACHAPELLE", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82083"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b2fc2488b32a3228fc76d0231d13f17758f0fa", "fields": {"nom_de_la_commune": "LAGUEPIE", "libell_d_acheminement": "LAGUEPIE", "code_postal": "82250", "coordonnees_gps": [44.1628817298, 1.95843160329], "code_commune_insee": "82088"}, "geometry": {"type": "Point", "coordinates": [1.95843160329, 44.1628817298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7202724278871602ffd8a2a1b457e3f0c0118553", "fields": {"nom_de_la_commune": "LAMOTHE CAPDEVILLE", "libell_d_acheminement": "LAMOTHE CAPDEVILLE", "code_postal": "82130", "coordonnees_gps": [44.118372906, 1.29866187228], "code_commune_insee": "82090"}, "geometry": {"type": "Point", "coordinates": [1.29866187228, 44.118372906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bca26c69df409402afdc213eb65d762b2fe1cf8a", "fields": {"nom_de_la_commune": "LAVAURETTE", "libell_d_acheminement": "LAVAURETTE", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82095"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5575b1b680a567cff0a323c1c71b1bc9a092fa20", "fields": {"nom_de_la_commune": "LA VILLE DIEU DU TEMPLE", "libell_d_acheminement": "LA VILLE DIEU DU TEMPLE", "code_postal": "82290", "coordonnees_gps": [44.0394500882, 1.24886608887], "code_commune_insee": "82096"}, "geometry": {"type": "Point", "coordinates": [1.24886608887, 44.0394500882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf52f6f04976ec3b5991b8f5b3ba4130b81f9355", "fields": {"nom_de_la_commune": "LEOJAC", "libell_d_acheminement": "LEOJAC", "code_postal": "82230", "coordonnees_gps": [43.9774227851, 1.52946541503], "code_commune_insee": "82098"}, "geometry": {"type": "Point", "coordinates": [1.52946541503, 43.9774227851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d66c2e08dce583b5ef4d2b99746f9f748a20cffa", "fields": {"nom_de_la_commune": "LIZAC", "libell_d_acheminement": "LIZAC", "code_postal": "82200", "coordonnees_gps": [44.130658243, 1.07974419868], "code_commune_insee": "82099"}, "geometry": {"type": "Point", "coordinates": [1.07974419868, 44.130658243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35366cf90abd48b7adcd6a878fcc7254cd9f9ada", "fields": {"nom_de_la_commune": "LOZE", "libell_d_acheminement": "LOZE", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82100"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b920bf9c12538853a75ac46620cc5d212cf73bcc", "fields": {"nom_de_la_commune": "MALAUSE", "libell_d_acheminement": "MALAUSE", "code_postal": "82200", "coordonnees_gps": [44.130658243, 1.07974419868], "code_commune_insee": "82101"}, "geometry": {"type": "Point", "coordinates": [1.07974419868, 44.130658243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ef1d815112f453958d130d22e5f726dac08b38b", "fields": {"nom_de_la_commune": "MANSONVILLE", "libell_d_acheminement": "MANSONVILLE", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82102"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df04e5f0a48aec490d8e8937f2c28dae0e7a4f68", "fields": {"nom_de_la_commune": "MAS GRENIER", "libell_d_acheminement": "MAS GRENIER", "code_postal": "82600", "coordonnees_gps": [43.8532920491, 1.16849095169], "code_commune_insee": "82105"}, "geometry": {"type": "Point", "coordinates": [1.16849095169, 43.8532920491]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30deb91b26e920392d4d7e0540ab2a7a4d18051c", "fields": {"nom_de_la_commune": "MEAUZAC", "libell_d_acheminement": "MEAUZAC", "code_postal": "82290", "coordonnees_gps": [44.0394500882, 1.24886608887], "code_commune_insee": "82108"}, "geometry": {"type": "Point", "coordinates": [1.24886608887, 44.0394500882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b762076d88d99b4684bbe39116a12dd3f1774b0", "fields": {"nom_de_la_commune": "MERLES", "libell_d_acheminement": "MERLES", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82109"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8595a99fdabf96c5d8182a7fa3af65940eacb0eb", "fields": {"nom_de_la_commune": "MONCLAR DE QUERCY", "libell_d_acheminement": "MONCLAR DE QUERCY", "code_postal": "82230", "coordonnees_gps": [43.9774227851, 1.52946541503], "code_commune_insee": "82115"}, "geometry": {"type": "Point", "coordinates": [1.52946541503, 43.9774227851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fbc8754f5f5dd8a311d53c6fcbda05222640e4e", "fields": {"nom_de_la_commune": "MONTAGUDET", "libell_d_acheminement": "MONTAGUDET", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82116"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "736837810de4386d94b26f3ab8514ce77517353f", "fields": {"nom_de_la_commune": "MONTAIN", "libell_d_acheminement": "MONTAIN", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82118"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22e0748f93205b31365560258856216ee3f849aa", "fields": {"nom_de_la_commune": "MONTASTRUC", "libell_d_acheminement": "MONTASTRUC", "code_postal": "82130", "coordonnees_gps": [44.118372906, 1.29866187228], "code_commune_insee": "82120"}, "geometry": {"type": "Point", "coordinates": [1.29866187228, 44.118372906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e739b5415264d1d9c8c4cd2e3286a1e2f100483", "fields": {"nom_de_la_commune": "MONTBARTIER", "libell_d_acheminement": "MONTBARTIER", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82123"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94bf3e4fa866333899d71755a657555712d926f", "fields": {"nom_de_la_commune": "NEGREPELISSE", "libell_d_acheminement": "NEGREPELISSE", "code_postal": "82800", "coordonnees_gps": [44.0611709641, 1.58586539756], "code_commune_insee": "82134"}, "geometry": {"type": "Point", "coordinates": [1.58586539756, 44.0611709641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ebbd7ceacc73c556c5258124e01bad101df0067", "fields": {"nom_de_la_commune": "NOHIC", "libell_d_acheminement": "NOHIC", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82135"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1599ad43841ac63eb89c2c55412430d4cefa8b18", "fields": {"nom_de_la_commune": "PUYCORNET", "libell_d_acheminement": "PUYCORNET", "code_postal": "82220", "coordonnees_gps": [44.1884297921, 1.33875921921], "code_commune_insee": "82144"}, "geometry": {"type": "Point", "coordinates": [1.33875921921, 44.1884297921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eac2e166b881c7d05df13e9616b7cb65615390c9", "fields": {"nom_de_la_commune": "PUYLAGARDE", "libell_d_acheminement": "PUYLAGARDE", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82147"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9192ab2d81294deda6ec879c3c9b00a52d312f52", "fields": {"nom_de_la_commune": "PUYLAROQUE", "libell_d_acheminement": "PUYLAROQUE", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82148"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52b2735b5c801f583ddf35fd9e7799fbf3847b3f", "fields": {"nom_de_la_commune": "ST JEAN DU BOUZET", "libell_d_acheminement": "ST JEAN DU BOUZET", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82163"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "260d38955ee4f4aa94fa80f2aca5c922d9279779", "fields": {"nom_de_la_commune": "STE JULIETTE", "libell_d_acheminement": "STE JULIETTE", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82164"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2596ee5f5fccc0a0e0d71018c0bf2ae5ae050d5", "fields": {"nom_de_la_commune": "TOUFFAILLES", "libell_d_acheminement": "TOUFFAILLES", "code_postal": "82190", "coordonnees_gps": [44.2459711363, 1.00294063355], "code_commune_insee": "82182"}, "geometry": {"type": "Point", "coordinates": [1.00294063355, 44.2459711363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad60574c58fe3616481db2822fee35b18f5dd483", "fields": {"nom_de_la_commune": "TREJOULS", "libell_d_acheminement": "TREJOULS", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82183"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89c8ded9bf38dd85fb435052d787530c78c7ab54", "fields": {"nom_de_la_commune": "VALENCE", "libell_d_acheminement": "VALENCE D AGEN", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82186"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68e8aec46a441022d72c24f02a698214c94822ee", "fields": {"nom_de_la_commune": "VAREN", "libell_d_acheminement": "VAREN", "code_postal": "82330", "coordonnees_gps": [44.1880105438, 1.88037084955], "code_commune_insee": "82187"}, "geometry": {"type": "Point", "coordinates": [1.88037084955, 44.1880105438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c3a252d078f134d1ea924bb0fab2204d635eaf6", "fields": {"nom_de_la_commune": "VAZERAC", "libell_d_acheminement": "VAZERAC", "code_postal": "82220", "coordonnees_gps": [44.1884297921, 1.33875921921], "code_commune_insee": "82189"}, "geometry": {"type": "Point", "coordinates": [1.33875921921, 44.1884297921]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6658b992b676e47e35a07cc627c5c445e8046320", "fields": {"nom_de_la_commune": "VERFEIL", "libell_d_acheminement": "VERFEIL SUR SEYE", "code_postal": "82330", "coordonnees_gps": [44.1880105438, 1.88037084955], "code_commune_insee": "82191"}, "geometry": {"type": "Point", "coordinates": [1.88037084955, 44.1880105438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97615c187607b946cd9c20dd57959e2d511e6e52", "fields": {"nom_de_la_commune": "VIGUERON", "libell_d_acheminement": "VIGUERON", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82193"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f0b2698ca9ae7d61a97a2cd8ac30747a4d707a4", "fields": {"nom_de_la_commune": "AUPS", "libell_d_acheminement": "AUPS", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83007"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc10b7069e6312c78da17af0c881ff8b2283fd7", "fields": {"nom_de_la_commune": "BARJOLS", "libell_d_acheminement": "BARJOLS", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83012"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38471610c119a80414709efa0e2e6f7c8dc4f3eb", "fields": {"nom_de_la_commune": "NOUANS", "libell_d_acheminement": "NOUANS", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72222"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a500d84e1aa4e2ddee6d12e7084d2f689646f1b8", "fields": {"nom_de_la_commune": "PANON", "libell_d_acheminement": "PANON", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72227"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9fb605e83632d3307996ac8fcbf26e0e26924d", "fields": {"nom_de_la_commune": "PERAY", "libell_d_acheminement": "PERAY", "code_postal": "72260", "coordonnees_gps": [48.2678718355, 0.288544841026], "code_commune_insee": "72233"}, "geometry": {"type": "Point", "coordinates": [0.288544841026, 48.2678718355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51c20a4749b815afb3840d78d3dc22ce94644013", "fields": {"nom_de_la_commune": "PIZIEUX", "libell_d_acheminement": "PIZIEUX", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72238"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81d865f929c795209319f58f483e27960fe58cba", "fields": {"nom_de_la_commune": "MONTFORT LE GESNOIS", "libell_d_acheminement": "MONTFORT LE GESNOIS", "code_postal": "72450", "coordonnees_gps": [48.0737249038, 0.408649166982], "code_commune_insee": "72241"}, "geometry": {"type": "Point", "coordinates": [0.408649166982, 48.0737249038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b87e656e2a572f2f974c94ea317c54a14051eb", "fields": {"nom_de_la_commune": "PREVELLES", "libell_d_acheminement": "PREVELLES", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72246"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df6d40958e9c4ebbb6fb068902fe18be1fd3c02c", "fields": {"nom_de_la_commune": "PRUILLE LE CHETIF", "libell_d_acheminement": "PRUILLE LE CHETIF", "code_postal": "72700", "coordonnees_gps": [47.9647519456, 0.124625925124], "code_commune_insee": "72247"}, "geometry": {"type": "Point", "coordinates": [0.124625925124, 47.9647519456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "514ff6b4274dc8b0bfa8fa4eedd1811644d5933f", "fields": {"nom_de_la_commune": "ROEZE SUR SARTHE", "libell_d_acheminement": "ROEZE SUR SARTHE", "code_postal": "72210", "coordonnees_gps": [47.9189807529, 0.0347535668684], "code_commune_insee": "72253"}, "geometry": {"type": "Point", "coordinates": [0.0347535668684, 47.9189807529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c1d6d79343e93b46485f410b0d90b5069a287d2", "fields": {"nom_de_la_commune": "RUAUDIN", "libell_d_acheminement": "RUAUDIN", "code_postal": "72230", "coordonnees_gps": [47.913932839, 0.210035627904], "code_commune_insee": "72260"}, "geometry": {"type": "Point", "coordinates": [0.210035627904, 47.913932839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c05211d5e19bafcaa7127038540745e232d43708", "fields": {"nom_de_la_commune": "RUILLE EN CHAMPAGNE", "libell_d_acheminement": "RUILLE EN CHAMPAGNE", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72261"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5641a6f9c4f0521517a9d4ad34666f0b0cbc28d7", "fields": {"nom_de_la_commune": "ST CHRISTOPHE EN CHAMPAGNE", "libell_d_acheminement": "ST CHRISTOPHE EN CHAMPAGNE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72274"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dd01e1542422a6c6cb9a856f8c40f93c82453d3", "fields": {"nom_de_la_commune": "ST GEORGES DU ROSAY", "libell_d_acheminement": "ST GEORGES DU ROSAY", "code_postal": "72110", "coordonnees_gps": [48.1972809136, 0.429069420375], "code_commune_insee": "72281"}, "geometry": {"type": "Point", "coordinates": [0.429069420375, 48.1972809136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ed44c32850f749b661ba6587c70b8955a87dc6c", "fields": {"nom_de_la_commune": "ST GERMAIN D ARCE", "libell_d_acheminement": "ST GERMAIN D ARCE", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72283"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e47d69d661f1eb2af54d2495a5fee7a1538d7515", "fields": {"nom_de_la_commune": "ST GERMAIN SUR SARTHE", "libell_d_acheminement": "ST GERMAIN SUR SARTHE", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72284"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e011cf19bc744c18bae62ff0fa9a1d0166b8bbb", "fields": {"nom_de_la_commune": "ST MARCEAU", "libell_d_acheminement": "ST MARCEAU", "code_postal": "72170", "coordonnees_gps": [48.2253463465, 0.101974338988], "code_commune_insee": "72297"}, "geometry": {"type": "Point", "coordinates": [0.101974338988, 48.2253463465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8be718fba740da2f221565766621468941c11a31", "fields": {"nom_de_la_commune": "ST MARS DE LOCQUENAY", "libell_d_acheminement": "ST MARS DE LOCQUENAY", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72298"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f591b712d1f14629a25009469c055c160e38f22", "fields": {"nom_de_la_commune": "ST MARS D OUTILLE", "libell_d_acheminement": "ST MARS D OUTILLE", "code_postal": "72220", "coordonnees_gps": [47.848733999, 0.292551024777], "code_commune_insee": "72299"}, "geometry": {"type": "Point", "coordinates": [0.292551024777, 47.848733999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5d75bf9e512070241a0381986007c33dbfcd456", "fields": {"nom_de_la_commune": "ST MICHEL DE CHAVAIGNES", "libell_d_acheminement": "ST MICHEL DE CHAVAIGNES", "code_postal": "72440", "coordonnees_gps": [47.9535459011, 0.551637034392], "code_commune_insee": "72303"}, "geometry": {"type": "Point", "coordinates": [0.551637034392, 47.9535459011]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3b5eea7ac8b42d3fba90579ff3d54c8c1dc49d", "fields": {"nom_de_la_commune": "ST OUEN EN CHAMPAGNE", "libell_d_acheminement": "ST OUEN EN CHAMPAGNE", "code_postal": "72350", "coordonnees_gps": [47.9751035931, -0.252964571236], "code_commune_insee": "72307"}, "geometry": {"type": "Point", "coordinates": [-0.252964571236, 47.9751035931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49df1d06f266bc240859d268415483372332bd53", "fields": {"nom_de_la_commune": "ST PIERRE DES ORMES", "libell_d_acheminement": "ST PIERRE DES ORMES", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72313"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c395423e2ee3e9d70a95a50f062af2e2aba8303", "fields": {"nom_de_la_commune": "ST SATURNIN", "libell_d_acheminement": "ST SATURNIN", "code_postal": "72650", "coordonnees_gps": [48.0691721456, 0.13653292656], "code_commune_insee": "72320"}, "geometry": {"type": "Point", "coordinates": [0.13653292656, 48.0691721456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e826376c0858456e74a1817fe843be238b4ee7", "fields": {"nom_de_la_commune": "ST VINCENT DU LOROUER", "libell_d_acheminement": "ST VINCENT DU LOROUER", "code_postal": "72150", "coordonnees_gps": [47.8403616783, 0.502697264254], "code_commune_insee": "72325"}, "geometry": {"type": "Point", "coordinates": [0.502697264254, 47.8403616783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7a18a529138d86eb7f2af7dc43c8886721f8135", "fields": {"nom_de_la_commune": "SAVIGNE L EVEQUE", "libell_d_acheminement": "SAVIGNE L EVEQUE", "code_postal": "72460", "coordonnees_gps": [48.0865226783, 0.31265862637], "code_commune_insee": "72329"}, "geometry": {"type": "Point", "coordinates": [0.31265862637, 48.0865226783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5b36181f6ef40bc5648eea1e60673705c21f373", "fields": {"nom_de_la_commune": "SOUGE LE GANELON", "libell_d_acheminement": "SOUGE LE GANELON", "code_postal": "72130", "coordonnees_gps": [48.309288903, -0.0220228837082], "code_commune_insee": "72337"}, "geometry": {"type": "Point", "coordinates": [-0.0220228837082, 48.309288903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9bbaf5c8cfe2fe9aca448cc72194ea5084a4ffd", "fields": {"nom_de_la_commune": "SOUVIGNE SUR SARTHE", "libell_d_acheminement": "SOUVIGNE SUR SARTHE", "code_postal": "72300", "coordonnees_gps": [47.8158416552, -0.299675845784], "code_commune_insee": "72343"}, "geometry": {"type": "Point", "coordinates": [-0.299675845784, 47.8158416552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72a14461f7fb1977b8619a9bc386f0658c4d3052", "fields": {"nom_de_la_commune": "TASSILLE", "libell_d_acheminement": "TASSILLE", "code_postal": "72540", "coordonnees_gps": [48.0067192493, -0.121851430688], "code_commune_insee": "72348"}, "geometry": {"type": "Point", "coordinates": [-0.121851430688, 48.0067192493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b211dbcef39e99239b5cd2e7e5b924195b343cb", "fields": {"nom_de_la_commune": "TENNIE", "libell_d_acheminement": "TENNIE", "code_postal": "72240", "coordonnees_gps": [48.1041163167, -0.0315288444627], "code_commune_insee": "72351"}, "geometry": {"type": "Point", "coordinates": [-0.0315288444627, 48.1041163167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "360f2fb6a5415f80a8be59953bb996c8007169a0", "fields": {"nom_de_la_commune": "THOREE LES PINS", "libell_d_acheminement": "THOREE LES PINS", "code_postal": "72800", "coordonnees_gps": [47.6593183612, 0.151937530924], "code_commune_insee": "72357"}, "geometry": {"type": "Point", "coordinates": [0.151937530924, 47.6593183612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97bc33f4eede701b4127d3999735fd9220a5eb71", "fields": {"nom_de_la_commune": "TUFFE VAL DE LA CHERONNE", "libell_d_acheminement": "TUFFE VAL DE LA CHERONNE", "code_postal": "72160", "coordonnees_gps": [48.0815343564, 0.508839517468], "code_commune_insee": "72363"}, "geometry": {"type": "Point", "coordinates": [0.508839517468, 48.0815343564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eff731870f8f8a0c76e39d6ed46f4ab631deba8", "fields": {"nom_de_la_commune": "VAAS", "libell_d_acheminement": "VAAS", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72364"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e90752b51d5e994555a9105919b9f91a1ae90d11", "fields": {"nom_de_la_commune": "VEZOT", "libell_d_acheminement": "VEZOT", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72372"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d5bec1804246e79720fdde52637497e44bc8d57", "fields": {"nom_de_la_commune": "VILLAINES LA CARELLE", "libell_d_acheminement": "VILLAINES LA CARELLE", "code_postal": "72600", "coordonnees_gps": [48.3843358188, 0.287692343822], "code_commune_insee": "72374"}, "geometry": {"type": "Point", "coordinates": [0.287692343822, 48.3843358188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20968de1a5931f7baa6ac99e5b59c350d1aeff6f", "fields": {"nom_de_la_commune": "VOUVRAY SUR LOIR", "libell_d_acheminement": "VOUVRAY SUR LOIR", "code_postal": "72500", "coordonnees_gps": [47.6976279722, 0.40117269936], "code_commune_insee": "72384"}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "988406a25ba46aa159600372d7782000e7d7cd78", "fields": {"code_postal": "72500", "code_commune_insee": "72384", "libell_d_acheminement": "VOUVRAY SUR LOIR", "ligne_5": "COEMONT", "nom_de_la_commune": "VOUVRAY SUR LOIR", "coordonnees_gps": [47.6976279722, 0.40117269936]}, "geometry": {"type": "Point", "coordinates": [0.40117269936, 47.6976279722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a80c799092d3eaf903c1f5df1e090f31479497c2", "fields": {"nom_de_la_commune": "AIGUEBELETTE LE LAC", "libell_d_acheminement": "AIGUEBELETTE LE LAC", "code_postal": "73610", "coordonnees_gps": [45.5318935553, 5.78373657089], "code_commune_insee": "73001"}, "geometry": {"type": "Point", "coordinates": [5.78373657089, 45.5318935553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29482dba4de2cd51ed9b005eef3ebd917354609b", "fields": {"nom_de_la_commune": "AIGUEBELLE", "libell_d_acheminement": "AIGUEBELLE", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73002"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37f56bb61865c2f7054efd1ea20972917c173f91", "fields": {"nom_de_la_commune": "AIGUEBLANCHE", "libell_d_acheminement": "AIGUEBLANCHE", "code_postal": "73260", "coordonnees_gps": [45.5172397456, 6.46368709326], "code_commune_insee": "73003"}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "079482d5b6027d2a27884bf1e3d3af4344be3627", "fields": {"nom_de_la_commune": "AILLON LE JEUNE", "libell_d_acheminement": "AILLON LE JEUNE", "code_postal": "73340", "coordonnees_gps": [45.6778717542, 6.08870987562], "code_commune_insee": "73004"}, "geometry": {"type": "Point", "coordinates": [6.08870987562, 45.6778717542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4df85045e2af3d57485807cd7dd286870848a820", "fields": {"code_postal": "73210", "code_commune_insee": "73006", "libell_d_acheminement": "AIME LA PLAGNE", "ligne_5": "VILLETTE", "nom_de_la_commune": "AIME LA PLAGNE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694e496b5129bc7d74e862391ada8682c59a6a7f", "fields": {"nom_de_la_commune": "AIX LES BAINS", "libell_d_acheminement": "AIX LES BAINS", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73008"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c20b9a5fd1fec3ac39cfbe26a8468122208d38b", "fields": {"code_postal": "73410", "code_commune_insee": "73010", "libell_d_acheminement": "ENTRELACS", "ligne_5": "ANSIGNY", "nom_de_la_commune": "ENTRELACS", "coordonnees_gps": [45.773124755, 5.93479737577]}, "geometry": {"type": "Point", "coordinates": [5.93479737577, 45.773124755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "237729ad054cf008bbf2237f25b136ec87239c61", "fields": {"nom_de_la_commune": "ALBERTVILLE", "libell_d_acheminement": "ALBERTVILLE", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73011"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8dca2ca8a9e47c1ffbff200f8ca33fee7d4d796", "fields": {"nom_de_la_commune": "ALBIEZ LE JEUNE", "libell_d_acheminement": "ALBIEZ LE JEUNE", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73012"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "653041450ed04940477b353560ac1451e3340237", "fields": {"code_postal": "73550", "code_commune_insee": "73015", "libell_d_acheminement": "LES ALLUES", "ligne_5": "MERIBEL LES ALLUES", "nom_de_la_commune": "LES ALLUES", "coordonnees_gps": [45.3696826174, 6.58760256597]}, "geometry": {"type": "Point", "coordinates": [6.58760256597, 45.3696826174]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce261141810ca1e6cd5f946f1e9dffb30f4adbe", "fields": {"nom_de_la_commune": "APREMONT", "libell_d_acheminement": "APREMONT", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73017"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f114282525900de2580be51530bdb861355f6aea", "fields": {"nom_de_la_commune": "ARGENTINE", "libell_d_acheminement": "ARGENTINE", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73019"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a937ac957ed3e1427e24d7cf8fae469e9fd74c", "fields": {"nom_de_la_commune": "ARVILLARD", "libell_d_acheminement": "ARVILLARD", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73021"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e036f903f0a7a898c62a6405a8ed9b565553821", "fields": {"nom_de_la_commune": "AYN", "libell_d_acheminement": "AYN", "code_postal": "73470", "coordonnees_gps": [45.5905101908, 5.77033737322], "code_commune_insee": "73027"}, "geometry": {"type": "Point", "coordinates": [5.77033737322, 45.5905101908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca10f070d836256cee09752dbce0f71b85961d68", "fields": {"nom_de_la_commune": "BASSENS", "libell_d_acheminement": "BASSENS", "code_postal": "73000", "coordonnees_gps": [45.5704322981, 5.91500462734], "code_commune_insee": "73031"}, "geometry": {"type": "Point", "coordinates": [5.91500462734, 45.5704322981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fecb6cee41a82b52fd5159dc8987b1dd68d7ea1c", "fields": {"nom_de_la_commune": "BOURGET EN HUILE", "libell_d_acheminement": "BOURGET EN HUILE", "code_postal": "73110", "coordonnees_gps": [45.4524332436, 6.16651023647], "code_commune_insee": "73052"}, "geometry": {"type": "Point", "coordinates": [6.16651023647, 45.4524332436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c48a78f21db6a919ac46f8798c68ff73ffad71b", "fields": {"nom_de_la_commune": "BRIDES LES BAINS", "libell_d_acheminement": "BRIDES LES BAINS", "code_postal": "73570", "coordonnees_gps": [45.4538723348, 6.56920300077], "code_commune_insee": "73057"}, "geometry": {"type": "Point", "coordinates": [6.56920300077, 45.4538723348]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a04e3d4f93c4cd206a0c3e35a54633d0b65d1c0d", "fields": {"nom_de_la_commune": "BRISON ST INNOCENT", "libell_d_acheminement": "BRISON ST INNOCENT", "code_postal": "73100", "coordonnees_gps": [45.7110465411, 5.94212260662], "code_commune_insee": "73059"}, "geometry": {"type": "Point", "coordinates": [5.94212260662, 45.7110465411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab2b6064d85497ed581fea4d5dd4ff12ecfcc3b", "fields": {"nom_de_la_commune": "CESARCHES", "libell_d_acheminement": "CESARCHES", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73061"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69b52551d917e15c168fd9af795051702be63141", "fields": {"nom_de_la_commune": "CHAMBERY", "libell_d_acheminement": "CHAMBERY", "code_postal": "73000", "coordonnees_gps": [45.5704322981, 5.91500462734], "code_commune_insee": "73065"}, "geometry": {"type": "Point", "coordinates": [5.91500462734, 45.5704322981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f34e6f93fcf575de11d8f09970b1b68e5b0277f", "fields": {"nom_de_la_commune": "LES CHAPELLES", "libell_d_acheminement": "LES CHAPELLES", "code_postal": "73700", "coordonnees_gps": [45.6553139344, 6.78435107537], "code_commune_insee": "73077"}, "geometry": {"type": "Point", "coordinates": [6.78435107537, 45.6553139344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caa34bf93b6cfe75b4ce7f6b72a9215cff0cc5c0", "fields": {"nom_de_la_commune": "LES CHAVANNES EN MAURIENNE", "libell_d_acheminement": "LES CHAVANNES EN MAURIENNE", "code_postal": "73660", "coordonnees_gps": [45.3946853407, 6.25313370974], "code_commune_insee": "73083"}, "geometry": {"type": "Point", "coordinates": [6.25313370974, 45.3946853407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47c5fb5067974ecceb6334e51aa40bd1db4bc583", "fields": {"nom_de_la_commune": "COISE ST JEAN PIED GAUTHIER", "libell_d_acheminement": "COISE ST JEAN PIED GAUTHIER", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73089"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8881d6b5468aba36f0b69b91a288184f49a37d1", "fields": {"nom_de_la_commune": "LES DESERTS", "libell_d_acheminement": "LES DESERTS", "code_postal": "73230", "coordonnees_gps": [45.6155984939, 5.99766818006], "code_commune_insee": "73098"}, "geometry": {"type": "Point", "coordinates": [5.99766818006, 45.6155984939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "839915e6b867adc26345536627bbf337c970db3f", "fields": {"nom_de_la_commune": "ENTREMONT LE VIEUX", "libell_d_acheminement": "ENTREMONT LE VIEUX", "code_postal": "73670", "coordonnees_gps": [45.4459970452, 5.88302688379], "code_commune_insee": "73107"}, "geometry": {"type": "Point", "coordinates": [5.88302688379, 45.4459970452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3479a70b07b5b9832cdacdc90c657b2b9f4b1f07", "fields": {"nom_de_la_commune": "FOURNEAUX", "libell_d_acheminement": "FOURNEAUX", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73117"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b40b36b5bf196c3ad72c38ae0468f5addfd8202d", "fields": {"nom_de_la_commune": "FRANCIN", "libell_d_acheminement": "FRANCIN", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73118"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fcddf711a0b8e8b49ac1c1fd447ca7768554b99", "fields": {"nom_de_la_commune": "FRENEY", "libell_d_acheminement": "FRENEY", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73119"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e922c0f0d141ddc0cca850e53effd4fc19820467", "fields": {"nom_de_la_commune": "FRONTENEX", "libell_d_acheminement": "FRONTENEX", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73121"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981e6919e2bca66939e4505e580880433ef37c81", "fields": {"nom_de_la_commune": "GRESIN", "libell_d_acheminement": "GRESIN", "code_postal": "73240", "coordonnees_gps": [45.601603908, 5.6828567599], "code_commune_insee": "73127"}, "geometry": {"type": "Point", "coordinates": [5.6828567599, 45.601603908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694968ef4c5a9549ec44438dcd6de89e5d6ed22f", "fields": {"nom_de_la_commune": "GRESY SUR ISERE", "libell_d_acheminement": "GRESY SUR ISERE", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73129"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0078ca68a28727d784292f0225c606dacc30b629", "fields": {"nom_de_la_commune": "GRIGNON", "libell_d_acheminement": "GRIGNON", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73130"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "105211363a254e2d8d94c581b0fe52c4ff51a98a", "fields": {"code_postal": "73210", "code_commune_insee": "73150", "libell_d_acheminement": "LA PLAGNE TARENTAISE", "ligne_5": "LA PLAGNE", "nom_de_la_commune": "LA PLAGNE TARENTAISE", "coordonnees_gps": [45.5287564298, 6.7268231289]}, "geometry": {"type": "Point", "coordinates": [6.7268231289, 45.5287564298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75a33f785ac0b258d16bcc75d162ba97507663f1", "fields": {"nom_de_la_commune": "MERCURY", "libell_d_acheminement": "MERCURY", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73154"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "640a04eb7b7b019fd48f191c962bd0befda39d88", "fields": {"nom_de_la_commune": "MEYRIEUX TROUET", "libell_d_acheminement": "MEYRIEUX TROUET", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73156"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3d84f9d2db55bc795e8038d86391ddc876894b0", "fields": {"nom_de_la_commune": "MODANE", "libell_d_acheminement": "MODANE", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73157"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293b1009b56614a03b2d8a58d1157218c57848cc", "fields": {"nom_de_la_commune": "MONTAGNOLE", "libell_d_acheminement": "MONTAGNOLE", "code_postal": "73000", "coordonnees_gps": [45.5704322981, 5.91500462734], "code_commune_insee": "73160"}, "geometry": {"type": "Point", "coordinates": [5.91500462734, 45.5704322981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dcbf10c802d4feecc4d80fd34758ba9644b0db7", "fields": {"nom_de_la_commune": "MONTAGNY", "libell_d_acheminement": "MONTAGNY", "code_postal": "73350", "coordonnees_gps": [45.4506854464, 6.72699335794], "code_commune_insee": "73161"}, "geometry": {"type": "Point", "coordinates": [6.72699335794, 45.4506854464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fd86b8a4a77245407f860c093b3d2e964992832", "fields": {"nom_de_la_commune": "MONTAILLEUR", "libell_d_acheminement": "MONTAILLEUR", "code_postal": "73460", "coordonnees_gps": [45.6175711294, 6.30197130515], "code_commune_insee": "73162"}, "geometry": {"type": "Point", "coordinates": [6.30197130515, 45.6175711294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6e65a16f51ead6af113ed81d1002428a5b12f60", "fields": {"nom_de_la_commune": "MONTSAPEY", "libell_d_acheminement": "MONTSAPEY", "code_postal": "73220", "coordonnees_gps": [45.5044108585, 6.30477931209], "code_commune_insee": "73175"}, "geometry": {"type": "Point", "coordinates": [6.30477931209, 45.5044108585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08cc9a394e808b8d69bdb2e8a5d78d83b80bcd6a", "fields": {"nom_de_la_commune": "MYANS", "libell_d_acheminement": "MYANS", "code_postal": "73800", "coordonnees_gps": [45.5007721993, 6.05847077861], "code_commune_insee": "73183"}, "geometry": {"type": "Point", "coordinates": [6.05847077861, 45.5007721993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ab7a9047fe8316083e4f6be45d0505a3deea46c", "fields": {"code_postal": "73260", "code_commune_insee": "73187", "libell_d_acheminement": "LA LECHERE", "ligne_5": "DOUCY", "nom_de_la_commune": "LA LECHERE", "coordonnees_gps": [45.5172397456, 6.46368709326]}, "geometry": {"type": "Point", "coordinates": [6.46368709326, 45.5172397456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b006e0ad0202e9c7d81b63a054723b6ec255d3", "fields": {"nom_de_la_commune": "NOTRE DAME DU CRUET", "libell_d_acheminement": "NOTRE DAME DU CRUET", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73189"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33c420917eead8a0096ee04b1924529f0512f068", "fields": {"nom_de_la_commune": "NOVALAISE", "libell_d_acheminement": "NOVALAISE", "code_postal": "73470", "coordonnees_gps": [45.5905101908, 5.77033737322], "code_commune_insee": "73191"}, "geometry": {"type": "Point", "coordinates": [5.77033737322, 45.5905101908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cacedef0165154ddd13c76ab3d83ea911535cbb6", "fields": {"nom_de_la_commune": "ONTEX", "libell_d_acheminement": "ONTEX", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73193"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9beef3d547a0fb9a300e09cb6477bf26476ee5b0", "fields": {"nom_de_la_commune": "ORELLE", "libell_d_acheminement": "ORELLE", "code_postal": "73140", "coordonnees_gps": [45.2191220888, 6.52414175582], "code_commune_insee": "73194"}, "geometry": {"type": "Point", "coordinates": [6.52414175582, 45.2191220888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7ac64e34a9c6ef7e372deb948c5f0b884e84b9", "fields": {"nom_de_la_commune": "PALLUD", "libell_d_acheminement": "PALLUD", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73196"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2d32f8ecd7544f3a9a747d536680620f7872d5c", "fields": {"nom_de_la_commune": "PONTAMAFREY MONTPASCAL", "libell_d_acheminement": "PONTAMAFREY MONTPASCAL", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73203"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82696124c36bd6ee3d61767d6e50091a58babd42", "fields": {"nom_de_la_commune": "PUYGROS", "libell_d_acheminement": "PUYGROS", "code_postal": "73190", "coordonnees_gps": [45.5365863885, 5.99917181613], "code_commune_insee": "73210"}, "geometry": {"type": "Point", "coordinates": [5.99917181613, 45.5365863885]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb3bc7cc3fef80239e610880f253778e6ab41bd", "fields": {"nom_de_la_commune": "QUEIGE", "libell_d_acheminement": "QUEIGE", "code_postal": "73720", "coordonnees_gps": [45.7074330489, 6.46519266465], "code_commune_insee": "73211"}, "geometry": {"type": "Point", "coordinates": [6.46519266465, 45.7074330489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a6edf89bcc7db7dbb4fdb166e9987efbc3adb86", "fields": {"nom_de_la_commune": "ST ALBAN DES VILLARDS", "libell_d_acheminement": "ST ALBAN DES VILLARDS", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73221"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e11e68b1f93ff7b90b0bdbc13bee059fc77151b1", "fields": {"nom_de_la_commune": "ST BON TARENTAISE", "libell_d_acheminement": "ST BON TARENTAISE", "code_postal": "73120", "coordonnees_gps": [45.3952559904, 6.63957315218], "code_commune_insee": "73227"}, "geometry": {"type": "Point", "coordinates": [6.63957315218, 45.3952559904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4975a1c40df1443a37a77c225c8c11f9a63c4ffa", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "73360", "coordonnees_gps": [45.4669972667, 5.76456264233], "code_commune_insee": "73229"}, "geometry": {"type": "Point", "coordinates": [5.76456264233, 45.4669972667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaac9eb676265b5dd5ea0fcd665475c2a596264a", "fields": {"nom_de_la_commune": "STE FOY TARENTAISE", "libell_d_acheminement": "STE FOY TARENTAISE", "code_postal": "73640", "coordonnees_gps": [45.5779597049, 6.92431874629], "code_commune_insee": "73232"}, "geometry": {"type": "Point", "coordinates": [6.92431874629, 45.5779597049]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5efe2fdfda24349f7dccadf454b52a327d666962", "fields": {"nom_de_la_commune": "ST JEAN DE CHEVELU", "libell_d_acheminement": "ST JEAN DE CHEVELU", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73245"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1236ecb2cd23c52551ca64b8794c0af610f068", "fields": {"nom_de_la_commune": "STE MARIE DE CUINES", "libell_d_acheminement": "STE MARIE DE CUINES", "code_postal": "73130", "coordonnees_gps": [45.3259701421, 6.26156632313], "code_commune_insee": "73255"}, "geometry": {"type": "Point", "coordinates": [6.26156632313, 45.3259701421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12aa02b321d2182de9d72b79a6b32dd466f7a65d", "fields": {"nom_de_la_commune": "ST MARTIN D ARC", "libell_d_acheminement": "ST MARTIN D ARC", "code_postal": "73140", "coordonnees_gps": [45.2191220888, 6.52414175582], "code_commune_insee": "73256"}, "geometry": {"type": "Point", "coordinates": [6.52414175582, 45.2191220888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc0cf2c0c64877c59edcfc565e58b1fde9e80d0f", "fields": {"code_postal": "73440", "code_commune_insee": "73257", "libell_d_acheminement": "LES BELLEVILLE", "ligne_5": "ST MARTIN DE BELLEVILLE", "nom_de_la_commune": "LES BELLEVILLE", "coordonnees_gps": [45.3533056918, 6.49727541624]}, "geometry": {"type": "Point", "coordinates": [6.49727541624, 45.3533056918]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdcd146137a4a5104b3a4d9d7c00fbab07921ac3", "fields": {"code_postal": "73600", "code_commune_insee": "73257", "libell_d_acheminement": "LES BELLEVILLE", "ligne_5": "VILLARLURIN", "nom_de_la_commune": "LES BELLEVILLE", "coordonnees_gps": [45.3739609607, 6.53145730027]}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbbdbe4f80aabbf77bdcedd9a8b45a3fcce14cdc", "fields": {"nom_de_la_commune": "ST MARTIN DE LA PORTE", "libell_d_acheminement": "ST MARTIN DE LA PORTE", "code_postal": "73140", "coordonnees_gps": [45.2191220888, 6.52414175582], "code_commune_insee": "73258"}, "geometry": {"type": "Point", "coordinates": [6.52414175582, 45.2191220888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d202cbce43a5a1bc13c4917a5c0cbb4af72da832", "fields": {"nom_de_la_commune": "ST MICHEL DE MAURIENNE", "libell_d_acheminement": "ST MICHEL DE MAURIENNE", "code_postal": "73140", "coordonnees_gps": [45.2191220888, 6.52414175582], "code_commune_insee": "73261"}, "geometry": {"type": "Point", "coordinates": [6.52414175582, 45.2191220888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f298984c724f2b7fcceae03d9948d3ae4cfa3876", "fields": {"nom_de_la_commune": "ST NICOLAS LA CHAPELLE", "libell_d_acheminement": "ST NICOLAS LA CHAPELLE", "code_postal": "73590", "coordonnees_gps": [45.8256229231, 6.51404796516], "code_commune_insee": "73262"}, "geometry": {"type": "Point", "coordinates": [6.51404796516, 45.8256229231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4bd3c4065a8b6abc136a8a5c9f9a0b451e9181c", "fields": {"nom_de_la_commune": "ST REMY DE MAURIENNE", "libell_d_acheminement": "ST REMY DE MAURIENNE", "code_postal": "73660", "coordonnees_gps": [45.3946853407, 6.25313370974], "code_commune_insee": "73278"}, "geometry": {"type": "Point", "coordinates": [6.25313370974, 45.3946853407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e0e505dd543bcb3bdffdb1284d3f4dccafa3a6", "fields": {"nom_de_la_commune": "ST THIBAUD DE COUZ", "libell_d_acheminement": "ST THIBAUD DE COUZ", "code_postal": "73160", "coordonnees_gps": [45.5083095742, 5.84590459447], "code_commune_insee": "73282"}, "geometry": {"type": "Point", "coordinates": [5.84590459447, 45.5083095742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c47444d6412e12b3fca615e1caae71fbc498e797", "fields": {"nom_de_la_commune": "SALINS FONTAINE", "libell_d_acheminement": "SALINS FONTAINE", "code_postal": "73600", "coordonnees_gps": [45.3739609607, 6.53145730027], "code_commune_insee": "73284"}, "geometry": {"type": "Point", "coordinates": [6.53145730027, 45.3739609607]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5c174f73b9936ff85b73c309fe91036aa042d5", "fields": {"nom_de_la_commune": "SEEZ", "libell_d_acheminement": "SEEZ", "code_postal": "73700", "coordonnees_gps": [45.6553139344, 6.78435107537], "code_commune_insee": "73285"}, "geometry": {"type": "Point", "coordinates": [6.78435107537, 45.6553139344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4e4862cb57c0b33e14691c1bbf383f91b4cd6b", "fields": {"nom_de_la_commune": "BEBING", "libell_d_acheminement": "BEBING", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57056"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "346e278edd046bb94ebceade03acc4b561351e06", "fields": {"nom_de_la_commune": "BELLANGE", "libell_d_acheminement": "BELLANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57059"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58bd77b4d5693305799003701e691f0fef511533", "fields": {"nom_de_la_commune": "BEUX", "libell_d_acheminement": "BEUX", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57075"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af76c2a0d9908e9a4dddd31b2bec2db1cd97e8d4", "fields": {"nom_de_la_commune": "BOULAY MOSELLE", "libell_d_acheminement": "BOULAY", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57097"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4f0d0af990104a23994d8d4bdae2965ffbc0435", "fields": {"nom_de_la_commune": "BOUSTROFF", "libell_d_acheminement": "BOUSTROFF", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57105"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f6516ed492b22716ddba9b261dda80b7ef40f8a", "fields": {"nom_de_la_commune": "BOUZONVILLE", "libell_d_acheminement": "BOUZONVILLE", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57106"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c841dab22d8eb3cdd581fea101b5afa1e90bfd", "fields": {"nom_de_la_commune": "BREHAIN", "libell_d_acheminement": "BREHAIN", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57107"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6b231574dcdc08658eec179ad5e87302f4e279b", "fields": {"nom_de_la_commune": "BRETTNACH", "libell_d_acheminement": "BRETTNACH", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57110"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff48238fccb27f95d2fa3ee7e0542d102ee98b22", "fields": {"nom_de_la_commune": "BROUDERDORFF", "libell_d_acheminement": "BROUDERDORFF", "code_postal": "57565", "coordonnees_gps": [48.7051512311, 7.11288052052], "code_commune_insee": "57113"}, "geometry": {"type": "Point", "coordinates": [7.11288052052, 48.7051512311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "984ad64bfae00ea05ece12ed76ac2ffecfbee346", "fields": {"nom_de_la_commune": "BRULANGE", "libell_d_acheminement": "BRULANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57115"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c71a88d6f91e6ab1a18ee1c1013940f667faee9", "fields": {"nom_de_la_commune": "BURTONCOURT", "libell_d_acheminement": "BURTONCOURT", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57121"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad547ee86d1bb28182664a1048d9c88721199f58", "fields": {"nom_de_la_commune": "CHANVILLE", "libell_d_acheminement": "CHANVILLE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57127"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e30a845b7c4c81c4c7ff45a52342dbbc39abf60a", "fields": {"nom_de_la_commune": "CHEMINOT", "libell_d_acheminement": "CHEMINOT", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57137"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8868855ac2e83a1a2ac2360328291250ba1a03b2", "fields": {"nom_de_la_commune": "COIN LES CUVRY", "libell_d_acheminement": "COIN LES CUVRY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57146"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbf1bd6cc3346e7651fdadcaaad2b37ee500134a", "fields": {"nom_de_la_commune": "COIN SUR SEILLE", "libell_d_acheminement": "COIN SUR SEILLE", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57147"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c8968d3b275eb25b058adaadd24457f3c36a97", "fields": {"nom_de_la_commune": "COLLIGNY", "libell_d_acheminement": "COLLIGNY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57148"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "080db9f2fe0d82293e61739484f41826689b4076", "fields": {"nom_de_la_commune": "CONTHIL", "libell_d_acheminement": "CONTHIL", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57151"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42d860ea4b8778e9f53e1322a876f675c1117213", "fields": {"nom_de_la_commune": "CONTZ LES BAINS", "libell_d_acheminement": "CONTZ LES BAINS", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57152"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "611e6151d0d4075ea60cb47358fd2b828b872db4", "fields": {"nom_de_la_commune": "CREHANGE", "libell_d_acheminement": "CREHANGE", "code_postal": "57690", "coordonnees_gps": [49.0811066698, 6.54834376906], "code_commune_insee": "57159"}, "geometry": {"type": "Point", "coordinates": [6.54834376906, 49.0811066698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087002a67df6a1890c609a767400fe0a55aca92e", "fields": {"nom_de_la_commune": "DANNE ET QUATRE VENTS", "libell_d_acheminement": "DANNE ET QUATRE VENTS", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57168"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9f30b8e620d310d1d310891b0d7f6e1f8fe65e4", "fields": {"nom_de_la_commune": "DIFFEMBACH LES HELLIMER", "libell_d_acheminement": "DIFFEMBACH LES HELLIMER", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57178"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbb0af337a6b59ff0347a525db02ffb8b7cddf17", "fields": {"nom_de_la_commune": "DISTROFF", "libell_d_acheminement": "DISTROFF", "code_postal": "57925", "coordonnees_gps": [49.3367262408, 6.26183442661], "code_commune_insee": "57179"}, "geometry": {"type": "Point", "coordinates": [6.26183442661, 49.3367262408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74858bee60ed56b109722711b4c356045164b864", "fields": {"nom_de_la_commune": "EBERSVILLER", "libell_d_acheminement": "EBERSVILLER", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57186"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b5bbad2da65cb919e53bb7bc4d7d4c32654b63f", "fields": {"nom_de_la_commune": "EPPING", "libell_d_acheminement": "EPPING", "code_postal": "57720", "coordonnees_gps": [49.1232380903, 7.35851091729], "code_commune_insee": "57195"}, "geometry": {"type": "Point", "coordinates": [7.35851091729, 49.1232380903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bdfe5dffc4096fe3ad2575d75247c33a75d7c99", "fields": {"nom_de_la_commune": "ETTING", "libell_d_acheminement": "ETTING", "code_postal": "57412", "coordonnees_gps": [49.0305210047, 7.16958668406], "code_commune_insee": "57201"}, "geometry": {"type": "Point", "coordinates": [7.16958668406, 49.0305210047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dd14bfb15edccde696e02d5e2daabc7ffe7f9ba", "fields": {"nom_de_la_commune": "EVRANGE", "libell_d_acheminement": "EVRANGE", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57203"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14457992d1df96576a3225572845f10612ab8a4e", "fields": {"code_postal": "57290", "code_commune_insee": "57206", "libell_d_acheminement": "FAMECK", "ligne_5": "OURY", "nom_de_la_commune": "FAMECK", "coordonnees_gps": [49.3041832839, 6.102475564]}, "geometry": {"type": "Point", "coordinates": [6.102475564, 49.3041832839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e21cc81518014850418571af88273f1123bca7d", "fields": {"nom_de_la_commune": "FAREBERSVILLER", "libell_d_acheminement": "FAREBERSVILLER", "code_postal": "57450", "coordonnees_gps": [49.098477693, 6.86570683111], "code_commune_insee": "57207"}, "geometry": {"type": "Point", "coordinates": [6.86570683111, 49.098477693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "700389cfb079b263ffc35f3ddaf6bf9840bd947a", "fields": {"nom_de_la_commune": "FEVES", "libell_d_acheminement": "FEVES", "code_postal": "57280", "coordonnees_gps": [49.2043430358, 6.15329881164], "code_commune_insee": "57211"}, "geometry": {"type": "Point", "coordinates": [6.15329881164, 49.2043430358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b8034f4374d429accfd15eaa9471f094d54f00e", "fields": {"nom_de_la_commune": "FILSTROFF", "libell_d_acheminement": "FILSTROFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57213"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d99408ba11b191dfae2f106f9944fa19822b59ae", "fields": {"nom_de_la_commune": "FLASTROFF", "libell_d_acheminement": "FLASTROFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57215"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19378be3ecc0408e4f5d6d51e46997e6e8ea327e", "fields": {"nom_de_la_commune": "FOLSCHVILLER", "libell_d_acheminement": "FOLSCHVILLER", "code_postal": "57730", "coordonnees_gps": [49.0823148993, 6.73315918141], "code_commune_insee": "57224"}, "geometry": {"type": "Point", "coordinates": [6.73315918141, 49.0823148993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dea61e6d9b7a6d4c769e1fd1a01a17a6b2dd8aee", "fields": {"nom_de_la_commune": "FOULCREY", "libell_d_acheminement": "FOULCREY", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57229"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a34d2ffd78043e7c99a15a1b9d2245facd99c008", "fields": {"nom_de_la_commune": "FRAQUELFING", "libell_d_acheminement": "FRAQUELFING", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57233"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ed794660d59705da7293536e74f0ed378053dad", "fields": {"nom_de_la_commune": "FREISTROFF", "libell_d_acheminement": "FREISTROFF", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57235"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "892e1aed69a27012f667a423b3eebbe292b3a873", "fields": {"nom_de_la_commune": "FRIBOURG", "libell_d_acheminement": "FRIBOURG", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57241"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ba57ce6a1f50c93ef909a2c71cc2b46466b386", "fields": {"nom_de_la_commune": "GANDRANGE", "libell_d_acheminement": "GANDRANGE", "code_postal": "57175", "coordonnees_gps": [49.2737129619, 6.13465126369], "code_commune_insee": "57242"}, "geometry": {"type": "Point", "coordinates": [6.13465126369, 49.2737129619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c34a7e59072dedd9eb82947a98d51c84502cc5", "fields": {"nom_de_la_commune": "GARREBOURG", "libell_d_acheminement": "GARREBOURG", "code_postal": "57820", "coordonnees_gps": [48.7214419242, 7.22862669066], "code_commune_insee": "57244"}, "geometry": {"type": "Point", "coordinates": [7.22862669066, 48.7214419242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ea637ea0583f7fabe5cb00faa4f433b0e574704", "fields": {"nom_de_la_commune": "GELUCOURT", "libell_d_acheminement": "GELUCOURT", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57246"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7097c77eea0386ee69b99256b9ae3e9a11546366", "fields": {"nom_de_la_commune": "GIVRYCOURT", "libell_d_acheminement": "GIVRYCOURT", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57248"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ded029db0e74471a5d69511e7b3817cc7c7c4a80", "fields": {"code_postal": "57620", "code_commune_insee": "57250", "libell_d_acheminement": "GOETZENBRUCK", "ligne_5": "SARREINSBERG", "nom_de_la_commune": "GOETZENBRUCK", "coordonnees_gps": [48.9917951549, 7.41577190853]}, "geometry": {"type": "Point", "coordinates": [7.41577190853, 48.9917951549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f4b4ce9d937d4d8f4d0ebeae4e26e724a8cc281", "fields": {"nom_de_la_commune": "GRENING", "libell_d_acheminement": "GRENING", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57258"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d4b051e433111cd18a30921aa0e30e5d8da6e2", "fields": {"nom_de_la_commune": "GROSBLIEDERSTROFF", "libell_d_acheminement": "GROSBLIEDERSTROFF", "code_postal": "57520", "coordonnees_gps": [49.1484421064, 7.01208667491], "code_commune_insee": "57260"}, "geometry": {"type": "Point", "coordinates": [7.01208667491, 49.1484421064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a925b91164cb93632959e6eff735e305822f3d60", "fields": {"nom_de_la_commune": "HAGEN", "libell_d_acheminement": "HAGEN", "code_postal": "57570", "coordonnees_gps": [49.4545911161, 6.23996038471], "code_commune_insee": "57282"}, "geometry": {"type": "Point", "coordinates": [6.23996038471, 49.4545911161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "106c1c838ae010e8b8f538b4375f7c4091003a58", "fields": {"nom_de_la_commune": "HAM SOUS VARSBERG", "libell_d_acheminement": "HAM SOUS VARSBERG", "code_postal": "57880", "coordonnees_gps": [49.1848577986, 6.63106406972], "code_commune_insee": "57288"}, "geometry": {"type": "Point", "coordinates": [6.63106406972, 49.1848577986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9806ff02299f0b8b4bdc04dfe0b94f49a60619b", "fields": {"nom_de_la_commune": "HANGVILLER", "libell_d_acheminement": "HANGVILLER", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57291"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f60a5a223f9f112a396112be5ed12ea8e4e29a", "fields": {"nom_de_la_commune": "HANVILLER", "libell_d_acheminement": "HANVILLER", "code_postal": "57230", "coordonnees_gps": [49.0414116666, 7.50685872374], "code_commune_insee": "57294"}, "geometry": {"type": "Point", "coordinates": [7.50685872374, 49.0414116666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12180d61ad7bb7e5d9f126730def44c972e2614", "fields": {"nom_de_la_commune": "HARTZVILLER", "libell_d_acheminement": "HARTZVILLER", "code_postal": "57870", "coordonnees_gps": [48.6442661172, 7.16634369748], "code_commune_insee": "57299"}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de122ef99b64d8c326178ba33bd8996e6a83953", "fields": {"nom_de_la_commune": "HAUCONCOURT", "libell_d_acheminement": "HAUCONCOURT", "code_postal": "57280", "coordonnees_gps": [49.2043430358, 6.15329881164], "code_commune_insee": "57303"}, "geometry": {"type": "Point", "coordinates": [6.15329881164, 49.2043430358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7dca92470286d291f6c87087d8ec97b19401f18", "fields": {"nom_de_la_commune": "HEMING", "libell_d_acheminement": "HEMING", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57314"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99f157fe972a0e531152513e35540db7457fca56", "fields": {"nom_de_la_commune": "HERNY", "libell_d_acheminement": "HERNY", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57319"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc06d67e266d75da8f63a6bdabcad3b377a8ad05", "fields": {"nom_de_la_commune": "HERTZING", "libell_d_acheminement": "HERTZING", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57320"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234f35b59be785d9a9a4e334a68afaaa9baa4e47", "fields": {"nom_de_la_commune": "HETTANGE GRANDE", "libell_d_acheminement": "HETTANGE GRANDE", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57323"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d56e89f01c3008fc63b6577713a861f2813cea1c", "fields": {"nom_de_la_commune": "HOLLING", "libell_d_acheminement": "HOLLING", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57329"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "396174fd214745205caf60dc74e1bfcc9ff30e79", "fields": {"nom_de_la_commune": "HOMMARTING", "libell_d_acheminement": "HOMMARTING", "code_postal": "57405", "coordonnees_gps": [48.7255604204, 7.15431817508], "code_commune_insee": "57333"}, "geometry": {"type": "Point", "coordinates": [7.15431817508, 48.7255604204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ac83e2cb5d7697fb0e99032190ebcffac08decf", "fields": {"nom_de_la_commune": "HUNTING", "libell_d_acheminement": "HUNTING", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57341"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a685880e1e3f7441cf69ff1d0ab1fcf948466d", "fields": {"nom_de_la_commune": "ILLANGE", "libell_d_acheminement": "ILLANGE", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57343"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0ccea5852a7c8c7a9fd9ea4f79ab40ee357d17f", "fields": {"nom_de_la_commune": "IMLING", "libell_d_acheminement": "IMLING", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57344"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05f0edbe04cf708cb4c99e4754783d760a18c6b", "fields": {"nom_de_la_commune": "JUSSY", "libell_d_acheminement": "JUSSY", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57352"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f418be93a3b23e2adb86fe35d009ed85a900dec", "fields": {"nom_de_la_commune": "JUVILLE", "libell_d_acheminement": "JUVILLE", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57354"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f697c239f6fad7402803860c195c1120ea9de6", "fields": {"nom_de_la_commune": "KANFEN", "libell_d_acheminement": "KANFEN", "code_postal": "57330", "coordonnees_gps": [49.4394329893, 6.12001560259], "code_commune_insee": "57356"}, "geometry": {"type": "Point", "coordinates": [6.12001560259, 49.4394329893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85c6b46571639bededdce8463943c524882ca104", "fields": {"nom_de_la_commune": "KEMPLICH", "libell_d_acheminement": "KEMPLICH", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57359"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2aa2df4c9dafcbb81581cfbf40da17a31c418a", "fields": {"nom_de_la_commune": "KIRSCH LES SIERCK", "libell_d_acheminement": "KIRSCH LES SIERCK", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57364"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb52c239bbceff0f3e4a256781eae9905df25101", "fields": {"nom_de_la_commune": "LANDANGE", "libell_d_acheminement": "LANDANGE", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57377"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59d5cc0560aa70bde30e29708f6c96928bfc64bf", "fields": {"nom_de_la_commune": "LANEUVEVILLE LES LORQUIN", "libell_d_acheminement": "LANEUVEVILLE LES LORQUIN", "code_postal": "57790", "coordonnees_gps": [48.6494173756, 6.99547918255], "code_commune_insee": "57380"}, "geometry": {"type": "Point", "coordinates": [6.99547918255, 48.6494173756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "091bbe5c71e98ce85a5d9d6bcfa7e922cf650aed", "fields": {"nom_de_la_commune": "LANGATTE", "libell_d_acheminement": "LANGATTE", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57382"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a257532e9138bacdf166f1ea1e000a495b8627d", "fields": {"nom_de_la_commune": "LENING", "libell_d_acheminement": "LENING", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57394"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce3d9f9f546c561cd737fd55813a2c33584b5fba", "fields": {"nom_de_la_commune": "LIDREZING", "libell_d_acheminement": "LIDREZING", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57401"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "677ab1a0cb5307673f4daa59ada480266bdbd189", "fields": {"nom_de_la_commune": "LIXHEIM", "libell_d_acheminement": "LIXHEIM", "code_postal": "57635", "coordonnees_gps": [48.778449018, 7.15921978619], "code_commune_insee": "57407"}, "geometry": {"type": "Point", "coordinates": [7.15921978619, 48.778449018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67c1f7188de112c6680dfd2181d81ed3b53e525e", "fields": {"nom_de_la_commune": "LOMMERANGE", "libell_d_acheminement": "LOMMERANGE", "code_postal": "57650", "coordonnees_gps": [49.3593317292, 5.99165623532], "code_commune_insee": "57411"}, "geometry": {"type": "Point", "coordinates": [5.99165623532, 49.3593317292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9609936ffc64b6cceef143d3d1e0c8b63cedb13", "fields": {"nom_de_la_commune": "LONGEVILLE LES ST AVOLD", "libell_d_acheminement": "LONGEVILLE LES ST AVOLD", "code_postal": "57740", "coordonnees_gps": [49.1191863561, 6.64931151715], "code_commune_insee": "57413"}, "geometry": {"type": "Point", "coordinates": [6.64931151715, 49.1191863561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0371d8f46b39f192ce50b88d5f6cedb9fce9c4", "fields": {"nom_de_la_commune": "LOSTROFF", "libell_d_acheminement": "LOSTROFF", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57417"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1bb10a04378b0bf926a84e46f58ff3c802fdd5", "fields": {"code_postal": "57730", "code_commune_insee": "57428", "libell_d_acheminement": "MACHEREN", "ligne_5": "PETIT EBERSVILLER", "nom_de_la_commune": "MACHEREN", "coordonnees_gps": [49.0823148993, 6.73315918141]}, "geometry": {"type": "Point", "coordinates": [6.73315918141, 49.0823148993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3454a7b3a6aa8f9f4242ecba0f22dc3ad58d94bf", "fields": {"nom_de_la_commune": "MAIZEROY", "libell_d_acheminement": "MAIZEROY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57431"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d4b084e640bbe9dff8064801978393f908093c", "fields": {"nom_de_la_commune": "MANDEREN", "libell_d_acheminement": "MANDEREN", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57439"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86b0d023b072b5f8b690d38a275c3bba492a8a97", "fields": {"nom_de_la_commune": "MANHOUE", "libell_d_acheminement": "MANHOUE", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57440"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa450736ce63b8b9544f7752b3e79d3358a31dc0", "fields": {"nom_de_la_commune": "MARSILLY", "libell_d_acheminement": "MARSILLY", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57449"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36a69256ba5f29dcb69a6fda9c4eeddd3bfa6ba1", "fields": {"nom_de_la_commune": "MARTHILLE", "libell_d_acheminement": "MARTHILLE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57451"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b513f73c5c79222dbc36b553ae56348355d9232", "fields": {"nom_de_la_commune": "MAXSTADT", "libell_d_acheminement": "MAXSTADT", "code_postal": "57660", "coordonnees_gps": [49.009643522, 6.76938750743], "code_commune_insee": "57453"}, "geometry": {"type": "Point", "coordinates": [6.76938750743, 49.009643522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "057994f53c018049b06045e96c3ceb9a891d18d7", "fields": {"nom_de_la_commune": "METZERESCHE", "libell_d_acheminement": "METZERESCHE", "code_postal": "57920", "coordonnees_gps": [49.310461761, 6.35875734954], "code_commune_insee": "57464"}, "geometry": {"type": "Point", "coordinates": [6.35875734954, 49.310461761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "258b2b8eff455ac0f5a831a34efffb7e61971f7f", "fields": {"nom_de_la_commune": "MEY", "libell_d_acheminement": "MEY", "code_postal": "57070", "coordonnees_gps": [49.1173648724, 6.2035419151], "code_commune_insee": "57467"}, "geometry": {"type": "Point", "coordinates": [6.2035419151, 49.1173648724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "540d3d6ee1e476321c7c17173b291dad3e8021ce", "fields": {"nom_de_la_commune": "MONCOURT", "libell_d_acheminement": "MONCOURT", "code_postal": "57810", "coordonnees_gps": [48.717707043, 6.78952709258], "code_commune_insee": "57473"}, "geometry": {"type": "Point", "coordinates": [6.78952709258, 48.717707043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aca33b78412f0678d962ebb12440708e641fb28", "fields": {"nom_de_la_commune": "MONTOIS LA MONTAGNE", "libell_d_acheminement": "MONTOIS LA MONTAGNE", "code_postal": "57860", "coordonnees_gps": [49.2108492485, 6.04018502241], "code_commune_insee": "57481"}, "geometry": {"type": "Point", "coordinates": [6.04018502241, 49.2108492485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87cc5fc193fc3fb3afd4257d4f25030cbfd2d99e", "fields": {"nom_de_la_commune": "NEUFVILLAGE", "libell_d_acheminement": "NEUFVILLAGE", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57501"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d3e30665346df7e983b5d002040968132717a8d", "fields": {"nom_de_la_commune": "NIDERHOFF", "libell_d_acheminement": "NIDERHOFF", "code_postal": "57560", "coordonnees_gps": [48.5927239877, 7.10370097733], "code_commune_insee": "57504"}, "geometry": {"type": "Point", "coordinates": [7.10370097733, 48.5927239877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bee0c6ad95f1df4d95ff1a4a1f31acdbdce6006d", "fields": {"nom_de_la_commune": "NILVANGE", "libell_d_acheminement": "NILVANGE", "code_postal": "57240", "coordonnees_gps": [49.3410176091, 6.04326749195], "code_commune_insee": "57508"}, "geometry": {"type": "Point", "coordinates": [6.04326749195, 49.3410176091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab75d54dd1ff035d04501d209883c018424b6a25", "fields": {"nom_de_la_commune": "NOVEANT SUR MOSELLE", "libell_d_acheminement": "NOVEANT SUR MOSELLE", "code_postal": "57680", "coordonnees_gps": [49.0358691515, 6.02886300131], "code_commune_insee": "57515"}, "geometry": {"type": "Point", "coordinates": [6.02886300131, 49.0358691515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9e510e77a074446ab6a67a682271400efeddc08", "fields": {"nom_de_la_commune": "OUDRENNE", "libell_d_acheminement": "OUDRENNE", "code_postal": "57970", "coordonnees_gps": [49.3625168649, 6.2749100002], "code_commune_insee": "57531"}, "geometry": {"type": "Point", "coordinates": [6.2749100002, 49.3625168649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f6e133437a4d62361719f2f5c8a93035e5b29fc", "fields": {"nom_de_la_commune": "PAGNY LES GOIN", "libell_d_acheminement": "PAGNY LES GOIN", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57532"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de919cb2458da35f1a591106202ae33dfb1b7182", "fields": {"nom_de_la_commune": "PELTRE", "libell_d_acheminement": "PELTRE", "code_postal": "57245", "coordonnees_gps": [49.059836675, 6.25443635669], "code_commune_insee": "57534"}, "geometry": {"type": "Point", "coordinates": [6.25443635669, 49.059836675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be09ec9f27e4cf3a06c81cdf1aaba7b22475e4f", "fields": {"nom_de_la_commune": "PIERREVILLERS", "libell_d_acheminement": "PIERREVILLERS", "code_postal": "57120", "coordonnees_gps": [49.2378389849, 6.09052471357], "code_commune_insee": "57543"}, "geometry": {"type": "Point", "coordinates": [6.09052471357, 49.2378389849]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58bd358bf90acda3aa7b4b2a6ad049457499ccc2", "fields": {"nom_de_la_commune": "PLAPPEVILLE", "libell_d_acheminement": "PLAPPEVILLE", "code_postal": "57050", "coordonnees_gps": [49.1138494739, 6.17894504375], "code_commune_insee": "57545"}, "geometry": {"type": "Point", "coordinates": [6.17894504375, 49.1138494739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "847bf0b916fade9d0237428689a7c0cf8b7afd4a", "fields": {"nom_de_la_commune": "POSTROFF", "libell_d_acheminement": "POSTROFF", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57551"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccfed9630cfd670f49030506c8159e687eda6133", "fields": {"nom_de_la_commune": "POURNOY LA GRASSE", "libell_d_acheminement": "POURNOY LA GRASSE", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57554"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c440445c41727758dda49a318993004076956a8", "fields": {"nom_de_la_commune": "PUZIEUX", "libell_d_acheminement": "PUZIEUX", "code_postal": "57590", "coordonnees_gps": [48.8873716617, 6.40583396115], "code_commune_insee": "57559"}, "geometry": {"type": "Point", "coordinates": [6.40583396115, 48.8873716617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79127f3648bea43478353c19f2316ca63b1ae354", "fields": {"nom_de_la_commune": "RACRANGE", "libell_d_acheminement": "RACRANGE", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57560"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "733abda8ebb3dd1f401f9a50d7b11ab15243171f", "fields": {"nom_de_la_commune": "RAVILLE", "libell_d_acheminement": "RAVILLE", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57563"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35e66e2f7e083a7a94a2aaf28f8c1fee293d6bf3", "fields": {"nom_de_la_commune": "RETTEL", "libell_d_acheminement": "RETTEL", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57576"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d58a61b56bc5fc4a938f62422e1423ddc49ee8d2", "fields": {"nom_de_la_commune": "RITZING", "libell_d_acheminement": "RITZING", "code_postal": "57480", "coordonnees_gps": [49.4172623157, 6.42263673314], "code_commune_insee": "57585"}, "geometry": {"type": "Point", "coordinates": [6.42263673314, 49.4172623157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4615f2beacadeb0a81d7e778a2ec397715fff574", "fields": {"nom_de_la_commune": "ROHRBACH LES BITCHE", "libell_d_acheminement": "ROHRBACH LES BITCHE", "code_postal": "57410", "coordonnees_gps": [49.0415362507, 7.27547270255], "code_commune_insee": "57589"}, "geometry": {"type": "Point", "coordinates": [7.27547270255, 49.0415362507]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "320c4f432c9a32a05ace1aca9f89a3a4206d27f2", "fields": {"nom_de_la_commune": "ROURE", "libell_d_acheminement": "ROURE", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06111"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e3d4d01bfd31b3ebcb2ebf5b98dafe5d5afbea", "fields": {"code_postal": "06800", "code_commune_insee": "06027", "libell_d_acheminement": "CAGNES SUR MER", "ligne_5": "CROS DE CAGNES", "nom_de_la_commune": "CAGNES SUR MER", "coordonnees_gps": [43.6717115004, 7.15221251149]}, "geometry": {"type": "Point", "coordinates": [7.15221251149, 43.6717115004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2259f6749424d51f8fee3eb130bffb8e0c6bf9eb", "fields": {"code_postal": "06110", "code_commune_insee": "06030", "libell_d_acheminement": "LE CANNET", "ligne_5": "ROCHEVILLE", "nom_de_la_commune": "LE CANNET", "coordonnees_gps": [43.5728764669, 7.0065967476]}, "geometry": {"type": "Point", "coordinates": [7.0065967476, 43.5728764669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4e398e5f72fd7c20aaf4abacddc8e5c0e437f72", "fields": {"nom_de_la_commune": "CHATEAUNEUF GRASSE", "libell_d_acheminement": "CHATEAUNEUF GRASSE", "code_postal": "06740", "coordonnees_gps": [43.6648550756, 6.97966821617], "code_commune_insee": "06038"}, "geometry": {"type": "Point", "coordinates": [6.97966821617, 43.6648550756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26729d8fdd7f8714252c789db9ad32e176fdae15", "fields": {"nom_de_la_commune": "BEZAUDUN LES ALPES", "libell_d_acheminement": "BEZAUDUN LES ALPES", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06017"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b867a759e40b5cbc3eb1876ecfc1bd6981d49166", "fields": {"nom_de_la_commune": "BRIANCONNET", "libell_d_acheminement": "BRIANCONNET", "code_postal": "06850", "coordonnees_gps": [43.8467484238, 6.75541099886], "code_commune_insee": "06024"}, "geometry": {"type": "Point", "coordinates": [6.75541099886, 43.8467484238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ccbda79a029c81b46610621d5c04cb38c440579", "fields": {"nom_de_la_commune": "BLAUSASC", "libell_d_acheminement": "BLAUSASC", "code_postal": "06440", "coordonnees_gps": [43.849932937, 7.37396481834], "code_commune_insee": "06019"}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "694ca87650454b3869d6b4aefd4da10284122d83", "fields": {"nom_de_la_commune": "CANNES", "libell_d_acheminement": "CANNES", "code_postal": "06400", "coordonnees_gps": [43.5526938306, 7.00247889833], "code_commune_insee": "06029"}, "geometry": {"type": "Point", "coordinates": [7.00247889833, 43.5526938306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e970030aa614547431eea337b38b09806b41152a", "fields": {"nom_de_la_commune": "BOUYON", "libell_d_acheminement": "BOUYON", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06022"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f769c75040041b1bc63aab0fc984ad7bd9042aa0", "fields": {"nom_de_la_commune": "BONSON", "libell_d_acheminement": "BONSON", "code_postal": "06830", "coordonnees_gps": [43.8756018878, 7.1426953573], "code_commune_insee": "06021"}, "geometry": {"type": "Point", "coordinates": [7.1426953573, 43.8756018878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce9215f8c6fabaadfcc64c99b5b9249c6521be5d", "fields": {"nom_de_la_commune": "BIOT", "libell_d_acheminement": "BIOT", "code_postal": "06410", "coordonnees_gps": [43.6282240743, 7.08280083346], "code_commune_insee": "06018"}, "geometry": {"type": "Point", "coordinates": [7.08280083346, 43.6282240743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b146e15bc66901563d2282989e89b1774590b99", "fields": {"code_postal": "06470", "code_commune_insee": "06056", "libell_d_acheminement": "ENTRAUNES", "ligne_5": "ESTEING", "nom_de_la_commune": "ENTRAUNES", "coordonnees_gps": [44.1262277999, 6.84545324437]}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aba540dd3ca08b6edd62be7bd99946b4bccf1aa", "fields": {"code_postal": "06440", "code_commune_insee": "06077", "libell_d_acheminement": "LUCERAM", "ligne_5": "PEIRA CAVA", "nom_de_la_commune": "LUCERAM", "coordonnees_gps": [43.849932937, 7.37396481834]}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f88862a05a145dadd0063c120ed5b1e3224244cc", "fields": {"code_postal": "06670", "code_commune_insee": "06075", "libell_d_acheminement": "LEVENS", "ligne_5": "PLAN DU VAR", "nom_de_la_commune": "LEVENS", "coordonnees_gps": [43.8396133826, 7.24053222455]}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20f171f8f486d3011752b296ff403c7810eead04", "fields": {"nom_de_la_commune": "CHATEAUNEUF VILLEVIEILLE", "libell_d_acheminement": "CHATEAUNEUF VILLEVIEILLE", "code_postal": "06390", "coordonnees_gps": [43.8299178598, 7.30988628013], "code_commune_insee": "06039"}, "geometry": {"type": "Point", "coordinates": [7.30988628013, 43.8299178598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d9157a195dab7e516844acde38c0aa84c50d880", "fields": {"nom_de_la_commune": "COURSEGOULES", "libell_d_acheminement": "COURSEGOULES", "code_postal": "06140", "coordonnees_gps": [43.7526765774, 7.06029224738], "code_commune_insee": "06050"}, "geometry": {"type": "Point", "coordinates": [7.06029224738, 43.7526765774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e930a459e9567002ea11e43390b2d9975b5b644", "fields": {"nom_de_la_commune": "L ESCARENE", "libell_d_acheminement": "L ESCARENE", "code_postal": "06440", "coordonnees_gps": [43.849932937, 7.37396481834], "code_commune_insee": "06057"}, "geometry": {"type": "Point", "coordinates": [7.37396481834, 43.849932937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b35cd4155c8f84e71806591b845a2be641ad5f", "fields": {"nom_de_la_commune": "ENTRAUNES", "libell_d_acheminement": "ENTRAUNES", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06056"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42d2a1d4e4bec57c0c87a04ac44b50c33ea9a210", "fields": {"nom_de_la_commune": "GATTIERES", "libell_d_acheminement": "GATTIERES", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06064"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "344a2c3fb826004e995d8f5fbbc50b011da2563a", "fields": {"nom_de_la_commune": "CUEBRIS", "libell_d_acheminement": "CUEBRIS", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06052"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537b66c3ec4a6edbe73ed71830af1b275c5ac881", "fields": {"nom_de_la_commune": "GRASSE", "libell_d_acheminement": "GRASSE", "code_postal": "06130", "coordonnees_gps": [43.6557670284, 6.93183304936], "code_commune_insee": "06069"}, "geometry": {"type": "Point", "coordinates": [6.93183304936, 43.6557670284]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49af2cc16713700fa986ca2e309dbb8365b946cf", "fields": {"code_postal": "06590", "code_commune_insee": "06138", "libell_d_acheminement": "THEOULE SUR MER", "ligne_5": "MIRAMAR", "nom_de_la_commune": "THEOULE SUR MER", "coordonnees_gps": [43.4984064524, 6.92997887504]}, "geometry": {"type": "Point", "coordinates": [6.92997887504, 43.4984064524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28fbe4a5a2921d8cff9d4f6d6196af349db796fe", "fields": {"code_postal": "06750", "code_commune_insee": "06134", "libell_d_acheminement": "SERANON", "ligne_5": "LE LOGIS DU PIN", "nom_de_la_commune": "SERANON", "coordonnees_gps": [43.7770802464, 6.7641665855]}, "geometry": {"type": "Point", "coordinates": [6.7641665855, 43.7770802464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18d158103c59ae4e4144acffcc7e26ce25fec4f9", "fields": {"nom_de_la_commune": "TOURRETTE LEVENS", "libell_d_acheminement": "TOURRETTE LEVENS", "code_postal": "06690", "coordonnees_gps": [43.7866561058, 7.27248419041], "code_commune_insee": "06147"}, "geometry": {"type": "Point", "coordinates": [7.27248419041, 43.7866561058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e66bec52889785a354397eed71addcf8313e06", "fields": {"nom_de_la_commune": "VILLARS SUR VAR", "libell_d_acheminement": "VILLARS SUR VAR", "code_postal": "06710", "coordonnees_gps": [43.9477218616, 7.07933141259], "code_commune_insee": "06158"}, "geometry": {"type": "Point", "coordinates": [7.07933141259, 43.9477218616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea61c25990ef4c63b754e5397d1294db9e74de44", "fields": {"nom_de_la_commune": "LA BRIGUE", "libell_d_acheminement": "LA BRIGUE", "code_postal": "06430", "coordonnees_gps": [44.0898751159, 7.57878055901], "code_commune_insee": "06162"}, "geometry": {"type": "Point", "coordinates": [7.57878055901, 44.0898751159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65cf3e345c1640796cc53987bfb251c9e28de0d0", "fields": {"nom_de_la_commune": "LA TOUR", "libell_d_acheminement": "LA TOUR", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06144"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc879a5898ec0a05db892889dafd08f0fa4a7340", "fields": {"nom_de_la_commune": "SAUZE", "libell_d_acheminement": "SAUZE", "code_postal": "06470", "coordonnees_gps": [44.1262277999, 6.84545324437], "code_commune_insee": "06133"}, "geometry": {"type": "Point", "coordinates": [6.84545324437, 44.1262277999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67071b3374596d2e74b41564c5bb70f2daafaec4", "fields": {"nom_de_la_commune": "TENDE", "libell_d_acheminement": "TENDE", "code_postal": "06430", "coordonnees_gps": [44.0898751159, 7.57878055901], "code_commune_insee": "06163"}, "geometry": {"type": "Point", "coordinates": [7.57878055901, 44.0898751159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adaab7d2475ca2490d379c49a2b0f4e1c502ada8", "fields": {"nom_de_la_commune": "CREYSSEILLES", "libell_d_acheminement": "CREYSSEILLES", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07074"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a21478c46e5c1056794feaee37e94adcaf49b4d", "fields": {"nom_de_la_commune": "FREYSSENET", "libell_d_acheminement": "FREYSSENET", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07092"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2211b7698585b04800b75de27f3f1ba78475230f", "fields": {"nom_de_la_commune": "LE CHEYLARD", "libell_d_acheminement": "LE CHEYLARD", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07064"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e04663fb14098943d446b10e62b0f1566c4be1e8", "fields": {"nom_de_la_commune": "DAVEZIEUX", "libell_d_acheminement": "DAVEZIEUX", "code_postal": "07430", "coordonnees_gps": [45.2574690023, 4.70801492444], "code_commune_insee": "07078"}, "geometry": {"type": "Point", "coordinates": [4.70801492444, 45.2574690023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "695f5ec6fc3658d64cdd77e2f6d041cdc7dd7300", "fields": {"nom_de_la_commune": "FAUGERES", "libell_d_acheminement": "FAUGERES", "code_postal": "07230", "coordonnees_gps": [44.4641163394, 4.18572827248], "code_commune_insee": "07088"}, "geometry": {"type": "Point", "coordinates": [4.18572827248, 44.4641163394]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae8ac1affb627857ba0a0ad19fd7da67aba2c6de", "fields": {"nom_de_la_commune": "CHAUZON", "libell_d_acheminement": "CHAUZON", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07061"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660bf3eb5338fc9737fe103798b857574002529f", "fields": {"nom_de_la_commune": "GLUIRAS", "libell_d_acheminement": "GLUIRAS", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07096"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d80aacb2a9358281523b7a17d6739c1fc4c2e5c", "fields": {"nom_de_la_commune": "INTRES", "libell_d_acheminement": "INTRES", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07103"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c1b7e269c4cff1ba8054771c32456a0b86aae1", "fields": {"code_postal": "07140", "code_commune_insee": "07334", "libell_d_acheminement": "LES VANS", "ligne_5": "CHASSAGNES", "nom_de_la_commune": "LES VANS", "coordonnees_gps": [44.4499905153, 4.07415395181]}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "416bbbd5676be66595445198045638f86347d01d", "fields": {"nom_de_la_commune": "ST SYMPHORIEN SOUS CHOMERAC", "libell_d_acheminement": "ST SYMPHORIEN SOUS CHOMERAC", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07298"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e0a9f955ea71bbeaf94b3f9ed54fa6713c5a57c", "fields": {"nom_de_la_commune": "ARDEUIL ET MONTFAUXELLES", "libell_d_acheminement": "ARDEUIL ET MONTFAUXELLES", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08018"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3e24d7c0940501a530660571141da355334a318", "fields": {"nom_de_la_commune": "ALLAND HUY ET SAUSSEUIL", "libell_d_acheminement": "ALLAND HUY ET SAUSSEUIL", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08006"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5b06c0e6a3ebeeaa354194c9c53105f0a0b4678", "fields": {"nom_de_la_commune": "VALLON PONT D ARC", "libell_d_acheminement": "VALLON PONT D ARC", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07330"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d15e140d90f8f5481c2094828966b686ba40193", "fields": {"nom_de_la_commune": "SERRIERES", "libell_d_acheminement": "SERRIERES", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07313"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2283be367b9b93ee840fe65b0045a8a75a84d2ff", "fields": {"nom_de_la_commune": "ST PRIEST", "libell_d_acheminement": "ST PRIEST", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07288"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70aeaa1c90aca61559f7bc43e2b5387874ff66b", "fields": {"nom_de_la_commune": "ANNELLES", "libell_d_acheminement": "ANNELLES", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08014"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63086204a49ffe09ec32e441ceebd05b93c2377d", "fields": {"nom_de_la_commune": "SOYONS", "libell_d_acheminement": "SOYONS", "code_postal": "07130", "coordonnees_gps": [44.9316322296, 4.81226403261], "code_commune_insee": "07316"}, "geometry": {"type": "Point", "coordinates": [4.81226403261, 44.9316322296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6b69e8c4cd1bd15781ec704ce95bdd60cf7449", "fields": {"nom_de_la_commune": "AUTHE", "libell_d_acheminement": "AUTHE", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08033"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3dce3a6f1d7fa5b32874548effa7e83d6465074", "fields": {"code_postal": "07400", "code_commune_insee": "07270", "libell_d_acheminement": "ST MARTIN SUR LAVEZON", "ligne_5": "ST MARTIN L INFERIEUR", "nom_de_la_commune": "ST MARTIN SUR LAVEZON", "coordonnees_gps": [44.5767272135, 4.6363152024]}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee520a26e9cd1396a9bf10ca53372d21a32b44c2", "fields": {"nom_de_la_commune": "ST DIDIER SOUS AUBENAS", "libell_d_acheminement": "ST DIDIER SOUS AUBENAS", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07229"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb3df47d5e19e8b539226c3b767d6b2925b200c9", "fields": {"nom_de_la_commune": "ST MICHEL DE BOULOGNE", "libell_d_acheminement": "ST MICHEL DE BOULOGNE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07277"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9eefed36c377a453d824f0a2a449184bd0659c", "fields": {"nom_de_la_commune": "ST ETIENNE DE VALOUX", "libell_d_acheminement": "ST ETIENNE DE VALOUX", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07234"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b6ec72f6f10d43f3abf955a9f694ce86232304", "fields": {"nom_de_la_commune": "ST MARCEL D ARDECHE", "libell_d_acheminement": "ST MARCEL D ARDECHE", "code_postal": "07700", "coordonnees_gps": [44.3798626853, 4.56010045336], "code_commune_insee": "07264"}, "geometry": {"type": "Point", "coordinates": [4.56010045336, 44.3798626853]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d814a5f0da0c4d849ed161793bf23e3f2765a6d", "fields": {"nom_de_la_commune": "ST JULIEN LABROUSSE", "libell_d_acheminement": "ST JULIEN LABROUSSE", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07256"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b4ab5fa7085c2a83a043f4a3e4fb50afc374d4b", "fields": {"nom_de_la_commune": "ST JULIEN DU GUA", "libell_d_acheminement": "ST JULIEN DU GUA", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07253"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "028523d09a1dbb56e86b29435cba459f1cb796f8", "fields": {"nom_de_la_commune": "STE EULALIE", "libell_d_acheminement": "STE EULALIE", "code_postal": "07510", "coordonnees_gps": [44.7724320903, 4.10278815831], "code_commune_insee": "07235"}, "geometry": {"type": "Point", "coordinates": [4.10278815831, 44.7724320903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aee94a06a7a9da12503827120dad4542b95eb402", "fields": {"nom_de_la_commune": "ST PERAY", "libell_d_acheminement": "ST PERAY", "code_postal": "07130", "coordonnees_gps": [44.9316322296, 4.81226403261], "code_commune_insee": "07281"}, "geometry": {"type": "Point", "coordinates": [4.81226403261, 44.9316322296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09c7008ae4d2877c75a7da879f5d1760f2edc09b", "fields": {"nom_de_la_commune": "ST PONS", "libell_d_acheminement": "ST PONS", "code_postal": "07580", "coordonnees_gps": [44.6199071388, 4.55702885367], "code_commune_insee": "07287"}, "geometry": {"type": "Point", "coordinates": [4.55702885367, 44.6199071388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "271c31e16fbf7db054cbffa2db12b46d323de11a", "fields": {"nom_de_la_commune": "SAGNES ET GOUDOULET", "libell_d_acheminement": "SAGNES ET GOUDOULET", "code_postal": "07450", "coordonnees_gps": [44.7645631689, 4.23610675314], "code_commune_insee": "07203"}, "geometry": {"type": "Point", "coordinates": [4.23610675314, 44.7645631689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a49c8d2e59aea764910e956719069cdd50e26c7", "fields": {"nom_de_la_commune": "ST CIERGE LA SERRE", "libell_d_acheminement": "ST CIERGE LA SERRE", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07221"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbbebed7f9f8cc5a46964d3964dd41906c2815ec", "fields": {"nom_de_la_commune": "ST ANDEOL DE VALS", "libell_d_acheminement": "ST ANDEOL DE VALS", "code_postal": "07600", "coordonnees_gps": [44.7013043374, 4.34237550127], "code_commune_insee": "07210"}, "geometry": {"type": "Point", "coordinates": [4.34237550127, 44.7013043374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1814cdefa90f911db93542b4fa81cd34a6140bc", "fields": {"nom_de_la_commune": "ST ANDEOL DE BERG", "libell_d_acheminement": "ST ANDEOL DE BERG", "code_postal": "07170", "coordonnees_gps": [44.577154025, 4.48966279879], "code_commune_insee": "07208"}, "geometry": {"type": "Point", "coordinates": [4.48966279879, 44.577154025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "331caf5bbec573cb0a84861b3226cbc24220aa69", "fields": {"nom_de_la_commune": "POURCHERES", "libell_d_acheminement": "POURCHERES", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07179"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49f7780e5cab5779a94c3e319d4a5b8c39eea414", "fields": {"nom_de_la_commune": "QUINTENAS", "libell_d_acheminement": "QUINTENAS", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07188"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97b79159f4b0dcb9b5abe9d959bca178f3e7bf10", "fields": {"nom_de_la_commune": "PRIVAS", "libell_d_acheminement": "PRIVAS", "code_postal": "07000", "coordonnees_gps": [44.7437970576, 4.56542753724], "code_commune_insee": "07186"}, "geometry": {"type": "Point", "coordinates": [4.56542753724, 44.7437970576]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "504c0ee8c6e8de8b8cbb5a3966ccbfe81d55af08", "fields": {"nom_de_la_commune": "ROMPON", "libell_d_acheminement": "ROMPON", "code_postal": "07250", "coordonnees_gps": [44.769843603, 4.73616090056], "code_commune_insee": "07198"}, "geometry": {"type": "Point", "coordinates": [4.73616090056, 44.769843603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "042efb311a5d619e53b4a8eb37ba3f23aff3f516", "fields": {"nom_de_la_commune": "ROCLES", "libell_d_acheminement": "ROCLES", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07196"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20782f1896fc008494a2bc769315a3b8ee8f337c", "fields": {"nom_de_la_commune": "RUOMS", "libell_d_acheminement": "RUOMS", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07201"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abd0d6d6e5914f1bb1c778cd96327905c6f7c127", "fields": {"nom_de_la_commune": "LE CHATELET SUR RETOURNE", "libell_d_acheminement": "LE CHATELET SUR RETOURNE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08111"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5795be2abef0b7442caf30fad785de12cf867b2c", "fields": {"nom_de_la_commune": "CHESNOIS AUBONCOURT", "libell_d_acheminement": "CHESNOIS AUBONCOURT", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08117"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11facd902cd3eb91fadc878463d7d7d66ed9862b", "fields": {"nom_de_la_commune": "EUILLY ET LOMBUT", "libell_d_acheminement": "EUILLY ET LOMBUT", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08159"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "851bd4d48df531675d39131cd340c3250d8764a3", "fields": {"nom_de_la_commune": "DOM LE MESNIL", "libell_d_acheminement": "DOM LE MESNIL", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08140"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ddee3e1352720450394771e8e3b89f022e7f746", "fields": {"nom_de_la_commune": "CHEVEUGES", "libell_d_acheminement": "CHEVEUGES", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08119"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea425656c11f8c2bf604a0d1d249f5cc77b9865", "fields": {"nom_de_la_commune": "DONCHERY", "libell_d_acheminement": "DONCHERY", "code_postal": "08350", "coordonnees_gps": [49.6865527767, 4.88064716793], "code_commune_insee": "08142"}, "geometry": {"type": "Point", "coordinates": [4.88064716793, 49.6865527767]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a8853ed0dfaac74a7161d7f8953ce0a0f8cc40b", "fields": {"nom_de_la_commune": "DAMOUZY", "libell_d_acheminement": "DAMOUZY", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08137"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c5d3b748c9378e47283335855728aa9d35dc93f", "fields": {"nom_de_la_commune": "EVIGNY", "libell_d_acheminement": "EVIGNY", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08160"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee13dc0ceb6331aee28495630cdc1243ec6e534e", "fields": {"nom_de_la_commune": "FAGNON", "libell_d_acheminement": "FAGNON", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08162"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b5a553c6f7ced8f23cf74c71ade6be2342a43c8", "fields": {"nom_de_la_commune": "CHILLY", "libell_d_acheminement": "CHILLY", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08121"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e08e3b657efa7fd71ae874a9c8f4f6b83b649d69", "fields": {"nom_de_la_commune": "LA FERTE SUR CHIERS", "libell_d_acheminement": "LA FERTE SUR CHIERS", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08168"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f5f7ea0ca8dd5cc7818daafcda4d760b8d761b8", "fields": {"nom_de_la_commune": "FRANCHEVAL", "libell_d_acheminement": "FRANCHEVAL", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08179"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2e87d3e71d5b7c0835a20cdee8fb3f7fcf80624", "fields": {"nom_de_la_commune": "FAISSAULT", "libell_d_acheminement": "FAISSAULT", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08163"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54cb39c25a68efe21ec58ec7000d6691fdb5afe7", "fields": {"nom_de_la_commune": "LA FEREE", "libell_d_acheminement": "LA FEREE", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08167"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f815bf90c6f7022e1cd78b940a776b5111d9b7e", "fields": {"nom_de_la_commune": "FLOING", "libell_d_acheminement": "FLOING", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08174"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fe0b0e3684853abdc088fad44acea30048d7056", "fields": {"nom_de_la_commune": "FLIZE", "libell_d_acheminement": "FLIZE", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08173"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2228c8ca717ada8f0e8b7f814a1ecc64cde489f9", "fields": {"nom_de_la_commune": "CHAMPIGNEUL SUR VENCE", "libell_d_acheminement": "CHAMPIGNEUL SUR VENCE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08099"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce0b739cbb2ceadc95935f73aa3a1d70145acb9", "fields": {"nom_de_la_commune": "BEAUMONT EN ARGONNE", "libell_d_acheminement": "BEAUMONT EN ARGONNE", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08055"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b480491a741ea6ad90bdff9b3e829dfd20a14f17", "fields": {"nom_de_la_commune": "CHATEL CHEHERY", "libell_d_acheminement": "CHATEL CHEHERY", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08109"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602333f7ac1a00285754d1906a3b2bcdf79dff38", "fields": {"nom_de_la_commune": "CHAMPIGNEULLE", "libell_d_acheminement": "CHAMPIGNEULLE", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08098"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b649e956c19ac1248e60ee48740bd585888e1214", "fields": {"nom_de_la_commune": "BOULZICOURT", "libell_d_acheminement": "BOULZICOURT", "code_postal": "08410", "coordonnees_gps": [49.6898598982, 4.69790888092], "code_commune_insee": "08076"}, "geometry": {"type": "Point", "coordinates": [4.69790888092, 49.6898598982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2d1921474c21d558125cb74aa6306c595169f2", "fields": {"nom_de_la_commune": "BREVILLY", "libell_d_acheminement": "BREVILLY", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08083"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "101a7472cb03a584d7b7ed91f7413953cecf43ab", "fields": {"nom_de_la_commune": "CHAMPLIN", "libell_d_acheminement": "CHAMPLIN", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08100"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "664cb8dd7d5f0b1ac7830ac86660ce246d77159f", "fields": {"nom_de_la_commune": "BARBAISE", "libell_d_acheminement": "BARBAISE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08047"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7ec68bf3c1ed5d5e079ad2100e309e3c0d1ae6", "fields": {"nom_de_la_commune": "BLAGNY", "libell_d_acheminement": "BLAGNY", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08067"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32d75181d5caaebe3faa9eafe787964cc24a7933", "fields": {"nom_de_la_commune": "AUTRY", "libell_d_acheminement": "AUTRY", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08036"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af6f0b6f01a021e74c8e6a31370fd7ab1f4197eb", "fields": {"code_postal": "08800", "code_commune_insee": "08218", "libell_d_acheminement": "LES HAUTES RIVIERES", "ligne_5": "LINCHAMPS", "nom_de_la_commune": "LES HAUTES RIVIERES", "coordonnees_gps": [49.898909719, 4.79046954849]}, "geometry": {"type": "Point", "coordinates": [4.79046954849, 49.898909719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ab826aa992a87fa14ce61fad94db6febf8e3e5c", "fields": {"code_postal": "08250", "code_commune_insee": "08198", "libell_d_acheminement": "GRANDPRE", "ligne_5": "TERMES", "nom_de_la_commune": "GRANDPRE", "coordonnees_gps": [49.3052152829, 4.87924744188]}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1567f6e5adc72bbb86db83d37494347b75c14137", "fields": {"nom_de_la_commune": "HAM SUR MEUSE", "libell_d_acheminement": "HAM SUR MEUSE", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08207"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45b907c48a7d48e20f577a2dd221ce88eaabb281", "fields": {"nom_de_la_commune": "GIRONDELLE", "libell_d_acheminement": "GIRONDELLE", "code_postal": "08260", "coordonnees_gps": [49.8443145713, 4.39580518668], "code_commune_insee": "08189"}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17622fecbd87e1278b663d17170eb784f4901bdc", "fields": {"nom_de_la_commune": "GRANDCHAMP", "libell_d_acheminement": "GRANDCHAMP", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08196"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28161348b0b27b6104fa00fc525dc75169c1dbe5", "fields": {"nom_de_la_commune": "GRANDPRE", "libell_d_acheminement": "GRANDPRE", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08198"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b42083557a5d07b5dc03256793987da0d76d87b", "fields": {"nom_de_la_commune": "GIVET", "libell_d_acheminement": "GIVET", "code_postal": "08600", "coordonnees_gps": [50.1133571937, 4.82014456381], "code_commune_insee": "08190"}, "geometry": {"type": "Point", "coordinates": [4.82014456381, 50.1133571937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78718ff31adf475f39f46bf40a38785243562bcc", "fields": {"code_postal": "83270", "code_commune_insee": "83112", "libell_d_acheminement": "ST CYR SUR MER", "ligne_5": "LA MADRAGUE", "nom_de_la_commune": "ST CYR SUR MER", "coordonnees_gps": [43.1726377038, 5.70862543611]}, "geometry": {"type": "Point", "coordinates": [5.70862543611, 43.1726377038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dd45807e38b9330fb00516f66ba0aa2e3d62725", "fields": {"code_postal": "83270", "code_commune_insee": "83112", "libell_d_acheminement": "ST CYR SUR MER", "ligne_5": "LES BAUMELLES", "nom_de_la_commune": "ST CYR SUR MER", "coordonnees_gps": [43.1726377038, 5.70862543611]}, "geometry": {"type": "Point", "coordinates": [5.70862543611, 43.1726377038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfa78ece321d3e5b8224900d73b6b884c02e52e3", "fields": {"nom_de_la_commune": "ST PAUL EN FORET", "libell_d_acheminement": "ST PAUL EN FORET", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83117"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dea42efb94f054d7d0aa6f59fc9baab3dd373f3a", "fields": {"nom_de_la_commune": "SEILLONS SOURCE D ARGENS", "libell_d_acheminement": "SEILLONS SOURCE D ARGENS", "code_postal": "83470", "coordonnees_gps": [43.479442652, 5.84137337799], "code_commune_insee": "83125"}, "geometry": {"type": "Point", "coordinates": [5.84137337799, 43.479442652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cc3aecbf537674599de43fb289b88274a77ebfb", "fields": {"code_postal": "83500", "code_commune_insee": "83126", "libell_d_acheminement": "LA SEYNE SUR MER", "ligne_5": "TAMARIS SUR MER", "nom_de_la_commune": "LA SEYNE SUR MER", "coordonnees_gps": [43.0889033839, 5.87071213216]}, "geometry": {"type": "Point", "coordinates": [5.87071213216, 43.0889033839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e036c3b9f84491e081a66e857b303b648c7340e", "fields": {"nom_de_la_commune": "SIX FOURS LES PLAGES", "libell_d_acheminement": "SIX FOURS LES PLAGES", "code_postal": "83140", "coordonnees_gps": [43.0867535374, 5.8292161637], "code_commune_insee": "83129"}, "geometry": {"type": "Point", "coordinates": [5.8292161637, 43.0867535374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45c3ac20746ce65cd0168e520b6026c517a729e7", "fields": {"nom_de_la_commune": "TOURRETTES", "libell_d_acheminement": "TOURRETTES", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83138"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1210c52882b82fe312f849f5fca8f4a2f09bd366", "fields": {"nom_de_la_commune": "TOURVES", "libell_d_acheminement": "TOURVES", "code_postal": "83170", "coordonnees_gps": [43.3988588214, 6.01212360255], "code_commune_insee": "83140"}, "geometry": {"type": "Point", "coordinates": [6.01212360255, 43.3988588214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff4913a0ecce3e308c7650d20953fef0d5b7a5fa", "fields": {"code_postal": "83820", "code_commune_insee": "83152", "libell_d_acheminement": "RAYOL CANADEL SUR MER", "ligne_5": "CANADEL", "nom_de_la_commune": "RAYOL CANADEL SUR MER", "coordonnees_gps": [43.1644119646, 6.47547585523]}, "geometry": {"type": "Point", "coordinates": [6.47547585523, 43.1644119646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4af42f233de15d18c17b48a7cffeefdad3f9ff38", "fields": {"nom_de_la_commune": "ST MANDRIER SUR MER", "libell_d_acheminement": "ST MANDRIER SUR MER", "code_postal": "83430", "coordonnees_gps": [43.0757575636, 5.92712583865], "code_commune_insee": "83153"}, "geometry": {"type": "Point", "coordinates": [5.92712583865, 43.0757575636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9770325c22bea73c4c83ac4fa07425aba9d6bc2", "fields": {"nom_de_la_commune": "ALTHEN DES PALUDS", "libell_d_acheminement": "ALTHEN DES PALUDS", "code_postal": "84210", "coordonnees_gps": [43.9898251077, 5.08841952046], "code_commune_insee": "84001"}, "geometry": {"type": "Point", "coordinates": [5.08841952046, 43.9898251077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c931c5fd3ad307f4c20697ec239ac2c6649a75d9", "fields": {"nom_de_la_commune": "LA BASTIDONNE", "libell_d_acheminement": "LA BASTIDONNE", "code_postal": "84120", "coordonnees_gps": [43.7091986566, 5.61120901003], "code_commune_insee": "84010"}, "geometry": {"type": "Point", "coordinates": [5.61120901003, 43.7091986566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5104c39e1de025c58e30efecd6b4349221af740b", "fields": {"nom_de_la_commune": "BEAUMONT DE PERTUIS", "libell_d_acheminement": "BEAUMONT DE PERTUIS", "code_postal": "84120", "coordonnees_gps": [43.7091986566, 5.61120901003], "code_commune_insee": "84014"}, "geometry": {"type": "Point", "coordinates": [5.61120901003, 43.7091986566]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2067320bbbb4035d271fe1206879416f1373545", "fields": {"nom_de_la_commune": "BLAUVAC", "libell_d_acheminement": "BLAUVAC", "code_postal": "84570", "coordonnees_gps": [44.041156223, 5.23123539059], "code_commune_insee": "84018"}, "geometry": {"type": "Point", "coordinates": [5.23123539059, 44.041156223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "141150dfb713f252c1816c624248e5ae40bd10c7", "fields": {"nom_de_la_commune": "BONNIEUX", "libell_d_acheminement": "BONNIEUX", "code_postal": "84480", "coordonnees_gps": [43.8257511419, 5.32106039419], "code_commune_insee": "84020"}, "geometry": {"type": "Point", "coordinates": [5.32106039419, 43.8257511419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b63332f07e932d8d1154bd02dd46128a72fd0b9d", "fields": {"nom_de_la_commune": "BRANTES", "libell_d_acheminement": "BRANTES", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84021"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de889962432adfd2464367e7fd53b27c5b507f5b", "fields": {"nom_de_la_commune": "CAMARET SUR AIGUES", "libell_d_acheminement": "CAMARET SUR AIGUES", "code_postal": "84850", "coordonnees_gps": [44.1751054201, 4.89624702232], "code_commune_insee": "84029"}, "geometry": {"type": "Point", "coordinates": [4.89624702232, 44.1751054201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fb17ba4456e94333d0b874d04849f49a1967779", "fields": {"nom_de_la_commune": "CASTELLET", "libell_d_acheminement": "CASTELLET", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84033"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "793f23a64cbbd613001ff2011ef4581fd8c895f5", "fields": {"nom_de_la_commune": "FAUCON", "libell_d_acheminement": "FAUCON", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84045"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "050f83d6cb66c72a01ff70ab1613d53996becd03", "fields": {"nom_de_la_commune": "LAGARDE D APT", "libell_d_acheminement": "LAGARDE D APT", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84060"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bebf1f7f9cef72a701bfe7a47bfbd8c89c4931b", "fields": {"nom_de_la_commune": "MALEMORT DU COMTAT", "libell_d_acheminement": "MALEMORT DU COMTAT", "code_postal": "84570", "coordonnees_gps": [44.041156223, 5.23123539059], "code_commune_insee": "84070"}, "geometry": {"type": "Point", "coordinates": [5.23123539059, 44.041156223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7aaf3e32cb7f2dbd6abc40948cbb9f6374ca21f2", "fields": {"nom_de_la_commune": "METHAMIS", "libell_d_acheminement": "METHAMIS", "code_postal": "84570", "coordonnees_gps": [44.041156223, 5.23123539059], "code_commune_insee": "84075"}, "geometry": {"type": "Point", "coordinates": [5.23123539059, 44.041156223]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5690ad0da683f9646ca887ad8fd721284ca2792f", "fields": {"nom_de_la_commune": "MODENE", "libell_d_acheminement": "MODENE", "code_postal": "84330", "coordonnees_gps": [44.1247384898, 5.10713671288], "code_commune_insee": "84077"}, "geometry": {"type": "Point", "coordinates": [5.10713671288, 44.1247384898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ceddf9f03c41c13e3f1e3f02217d6ff653f3c7f5", "fields": {"nom_de_la_commune": "MURS", "libell_d_acheminement": "MURS", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84085"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "855dd2a96dde659faaa3d581783e19e13ed6504a", "fields": {"nom_de_la_commune": "LA ROQUE ALRIC", "libell_d_acheminement": "LA ROQUE ALRIC", "code_postal": "84190", "coordonnees_gps": [44.1503927193, 5.02329856851], "code_commune_insee": "84100"}, "geometry": {"type": "Point", "coordinates": [5.02329856851, 44.1503927193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49549b00499cb9df421fd1ca86c8c2bfb65f880f", "fields": {"nom_de_la_commune": "LA ROQUE SUR PERNES", "libell_d_acheminement": "LA ROQUE SUR PERNES", "code_postal": "84210", "coordonnees_gps": [43.9898251077, 5.08841952046], "code_commune_insee": "84101"}, "geometry": {"type": "Point", "coordinates": [5.08841952046, 43.9898251077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b48e14beca78bbe8d44c02e9549c81ef80adcd", "fields": {"nom_de_la_commune": "SAIGNON", "libell_d_acheminement": "SAIGNON", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84105"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27ec1c3c001751345c312755883af011e1f935a8", "fields": {"nom_de_la_commune": "UCHAUX", "libell_d_acheminement": "UCHAUX", "code_postal": "84100", "coordonnees_gps": [44.1461192195, 4.80873017728], "code_commune_insee": "84135"}, "geometry": {"type": "Point", "coordinates": [4.80873017728, 44.1461192195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0078e8824728cd78aa89b5bd2f5e20f53c458aa4", "fields": {"nom_de_la_commune": "VALREAS", "libell_d_acheminement": "VALREAS", "code_postal": "84600", "coordonnees_gps": [44.3773036634, 4.97155340684], "code_commune_insee": "84138"}, "geometry": {"type": "Point", "coordinates": [4.97155340684, 44.3773036634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d80623ef3136683d1c646ffcb9a2d61b3b6a590a", "fields": {"nom_de_la_commune": "VAUGINES", "libell_d_acheminement": "VAUGINES", "code_postal": "84160", "coordonnees_gps": [43.7635953762, 5.39771217975], "code_commune_insee": "84140"}, "geometry": {"type": "Point", "coordinates": [5.39771217975, 43.7635953762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6cc89b899b1058a938a0db02385a79c0b878511", "fields": {"nom_de_la_commune": "VEDENE", "libell_d_acheminement": "VEDENE", "code_postal": "84270", "coordonnees_gps": [43.9708818844, 4.90310629122], "code_commune_insee": "84141"}, "geometry": {"type": "Point", "coordinates": [4.90310629122, 43.9708818844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "210b4f3b92956e91cff7a0c676cb9da6c94ea52c", "fields": {"nom_de_la_commune": "BAZOGES EN PAILLERS", "libell_d_acheminement": "BAZOGES EN PAILLERS", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85013"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69e6462af1c60b561322e4a72545e9686385ae3e", "fields": {"nom_de_la_commune": "BEAULIEU SOUS LA ROCHE", "libell_d_acheminement": "BEAULIEU SOUS LA ROCHE", "code_postal": "85190", "coordonnees_gps": [46.7206565452, -1.60345832347], "code_commune_insee": "85016"}, "geometry": {"type": "Point", "coordinates": [-1.60345832347, 46.7206565452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc5a5460185ebce885a6a5208295162bdd474219", "fields": {"nom_de_la_commune": "BESSAY", "libell_d_acheminement": "BESSAY", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85023"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8df79245eb6e7b3ac0129f4c1f617836dee9ffef", "fields": {"nom_de_la_commune": "BOUILLE COURDAULT", "libell_d_acheminement": "BOUILLE COURDAULT", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85028"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d27927c626b4e0e37a6425118f60e04b48abdffc", "fields": {"nom_de_la_commune": "LES BROUZILS", "libell_d_acheminement": "LES BROUZILS", "code_postal": "85260", "coordonnees_gps": [46.8968914818, -1.35853673733], "code_commune_insee": "85038"}, "geometry": {"type": "Point", "coordinates": [-1.35853673733, 46.8968914818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c93749a1862c14c128fefcc8ba1a413229fad23a", "fields": {"code_postal": "85450", "code_commune_insee": "85042", "libell_d_acheminement": "CHAILLE LES MARAIS", "ligne_5": "SABLEAU", "nom_de_la_commune": "CHAILLE LES MARAIS", "coordonnees_gps": [46.3816104965, -1.06555900366]}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48945b8e6a33c56ff0c2f56c35122cb7f9527f4d", "fields": {"nom_de_la_commune": "CHALLANS", "libell_d_acheminement": "CHALLANS", "code_postal": "85300", "coordonnees_gps": [46.8368087633, -1.89265677262], "code_commune_insee": "85047"}, "geometry": {"type": "Point", "coordinates": [-1.89265677262, 46.8368087633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e8f30333a1a0b0944ba1fc99bb3e56d62e2217", "fields": {"nom_de_la_commune": "CHASNAIS", "libell_d_acheminement": "CHASNAIS", "code_postal": "85400", "coordonnees_gps": [46.4597818652, -1.17474717028], "code_commune_insee": "85058"}, "geometry": {"type": "Point", "coordinates": [-1.17474717028, 46.4597818652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0690a36d7f805dd8654ac0cb1f60ba3d8dc6b6", "fields": {"nom_de_la_commune": "CHEFFOIS", "libell_d_acheminement": "CHEFFOIS", "code_postal": "85390", "coordonnees_gps": [46.6728627352, -0.866891813869], "code_commune_insee": "85067"}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "779615e55ed8601f3dc643a34383b483d08fd7e6", "fields": {"nom_de_la_commune": "CURZON", "libell_d_acheminement": "CURZON", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85077"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe44b8f09c54e1442f5c5844c8b5b03c788d460c", "fields": {"nom_de_la_commune": "DOIX LES FONTAINES", "libell_d_acheminement": "DOIX LES FONTAINES", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85080"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9344e6f8bcc5830792b2e89ee7195b1225ce997", "fields": {"code_postal": "85700", "code_commune_insee": "85090", "libell_d_acheminement": "SEVREMONT", "ligne_5": "LA FLOCELLIERE", "nom_de_la_commune": "SEVREMONT", "coordonnees_gps": [46.7673763224, -0.80165823115]}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f8f74e6fa4fbb362d08d701d01a2de96302face", "fields": {"code_postal": "85700", "code_commune_insee": "85090", "libell_d_acheminement": "SEVREMONT", "ligne_5": "LES CHATELLIERS CHATEAUMUR", "nom_de_la_commune": "SEVREMONT", "coordonnees_gps": [46.7673763224, -0.80165823115]}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc5f38af48f8a1bd7809bf6732ecd975196e183", "fields": {"code_postal": "85200", "code_commune_insee": "85092", "libell_d_acheminement": "FONTENAY LE COMTE", "ligne_5": "ST MEDARD DES PRES", "nom_de_la_commune": "FONTENAY LE COMTE", "coordonnees_gps": [46.4730274645, -0.80431270427]}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bd54a3d6d01a429e7a800e0c963802d030e88ab", "fields": {"nom_de_la_commune": "LE GIROUARD", "libell_d_acheminement": "LE GIROUARD", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85099"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28716ff2df21f21d6e295b424b8e4ddf363e055", "fields": {"nom_de_la_commune": "LA GUYONNIERE", "libell_d_acheminement": "LA GUYONNIERE", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85107"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e91f1938bea3dcd47c11edb0dabb081fe02e72c1", "fields": {"nom_de_la_commune": "L ILE D ELLE", "libell_d_acheminement": "L ILE D ELLE", "code_postal": "85770", "coordonnees_gps": [46.3688776738, -0.891505234043], "code_commune_insee": "85111"}, "geometry": {"type": "Point", "coordinates": [-0.891505234043, 46.3688776738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c06ee5ed7b8bdc60239f9344a79d50345f2a275", "fields": {"nom_de_la_commune": "LAIROUX", "libell_d_acheminement": "LAIROUX", "code_postal": "85400", "coordonnees_gps": [46.4597818652, -1.17474717028], "code_commune_insee": "85117"}, "geometry": {"type": "Point", "coordinates": [-1.17474717028, 46.4597818652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4d575675898d9663e356925679745e536a773d6", "fields": {"nom_de_la_commune": "LES LUCS SUR BOULOGNE", "libell_d_acheminement": "LES LUCS SUR BOULOGNE", "code_postal": "85170", "coordonnees_gps": [46.803170613, -1.45953412091], "code_commune_insee": "85129"}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "918fde39fe72da0ab6be6c19bfa63444043a2f23", "fields": {"nom_de_la_commune": "MENOMBLET", "libell_d_acheminement": "MENOMBLET", "code_postal": "85700", "coordonnees_gps": [46.7673763224, -0.80165823115], "code_commune_insee": "85141"}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0420d71d1d34fb435f9076551794d4e8bbf25db3", "fields": {"nom_de_la_commune": "MERVENT", "libell_d_acheminement": "MERVENT", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85143"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f68ceea505c009f28e16bdaa3ee990a06686e5ec", "fields": {"nom_de_la_commune": "CHERY LES POUILLY", "libell_d_acheminement": "CHERY LES POUILLY", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02180"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26afb0050aa925bdeea8cb6d974cb6b841d7738", "fields": {"nom_de_la_commune": "CHARLY SUR MARNE", "libell_d_acheminement": "CHARLY SUR MARNE", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02163"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "318c943937982ec63b115d5308630866caa37013", "fields": {"nom_de_la_commune": "CHEZY EN ORXOIS", "libell_d_acheminement": "CHEZY EN ORXOIS", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02185"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f6602c7773a24f81f96380790f3fff99dd2eed", "fields": {"nom_de_la_commune": "CHERY LES ROZOY", "libell_d_acheminement": "CHERY LES ROZOY", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02181"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb4d2c4b4334a873319c10657c78229ebe82ad1", "fields": {"nom_de_la_commune": "CHATEAU THIERRY", "libell_d_acheminement": "CHATEAU THIERRY", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02168"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e37c931ffb2c50ab40247b6d73005bfa676e26", "fields": {"nom_de_la_commune": "CONTESCOURT", "libell_d_acheminement": "CONTESCOURT", "code_postal": "02680", "coordonnees_gps": [49.80786398, 3.24088325825], "code_commune_insee": "02214"}, "geometry": {"type": "Point", "coordinates": [3.24088325825, 49.80786398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8faa1a403f4fe219e1c09bebdd47b366c705189", "fields": {"nom_de_la_commune": "CHARTEVES", "libell_d_acheminement": "CHARTEVES", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02166"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9139a82fdf656b1ac8dd203cf496e0440623b400", "fields": {"nom_de_la_commune": "CHAOURSE", "libell_d_acheminement": "CHAOURSE", "code_postal": "02340", "coordonnees_gps": [49.6857429854, 4.02291889368], "code_commune_insee": "02160"}, "geometry": {"type": "Point", "coordinates": [4.02291889368, 49.6857429854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "044583b21de64faf5c55f3df46a4da62c96610ad", "fields": {"nom_de_la_commune": "CLAMECY", "libell_d_acheminement": "CLAMECY", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02198"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cebe8a9619f44326bc0e9b19eac4443a9f6817f7", "fields": {"code_postal": "01260", "code_commune_insee": "01187", "libell_d_acheminement": "HAUT VALROMEY", "ligne_5": "SONGIEU", "nom_de_la_commune": "HAUT VALROMEY", "coordonnees_gps": [45.9506630232, 5.68746147482]}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68171707b7f538edecc4274d1129b54c56570120", "fields": {"nom_de_la_commune": "BEARD GEOVREISSIAT", "libell_d_acheminement": "BEARD GEOVREISSIAT", "code_postal": "01460", "coordonnees_gps": [46.1732029522, 5.56455683284], "code_commune_insee": "01170"}, "geometry": {"type": "Point", "coordinates": [5.56455683284, 46.1732029522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1528bfa1b13d449b3744bffbaf23c706cde1c672", "fields": {"nom_de_la_commune": "GRAND CORENT", "libell_d_acheminement": "GRAND CORENT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01177"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2dfd32d7a6a63d15b9c8bd861316f7afc7244717", "fields": {"nom_de_la_commune": "LESCHEROUX", "libell_d_acheminement": "LESCHEROUX", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01212"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed5b6e2d72686e72bfd12379207f586563fc010b", "fields": {"nom_de_la_commune": "LOYETTES", "libell_d_acheminement": "LOYETTES", "code_postal": "01360", "coordonnees_gps": [45.8283269463, 5.15327415034], "code_commune_insee": "01224"}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49fd31c5500db878b9e7ce6cf50e078089f4feae", "fields": {"nom_de_la_commune": "LANTENAY", "libell_d_acheminement": "LANTENAY", "code_postal": "01430", "coordonnees_gps": [46.1000038391, 5.54230808548], "code_commune_insee": "01206"}, "geometry": {"type": "Point", "coordinates": [5.54230808548, 46.1000038391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3ec03122b9df409b7dc042f1acb939168ff3cd6", "fields": {"nom_de_la_commune": "LHOPITAL", "libell_d_acheminement": "LHOPITAL", "code_postal": "01420", "coordonnees_gps": [45.9853522838, 5.7838620591], "code_commune_insee": "01215"}, "geometry": {"type": "Point", "coordinates": [5.7838620591, 45.9853522838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd03690fbde75e1a9b7616a6ea0b2ba17d429ed", "fields": {"nom_de_la_commune": "LOCHIEU", "libell_d_acheminement": "LOCHIEU", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01218"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc88e7cc0ad1525427b80f223275065cc891f88", "fields": {"nom_de_la_commune": "FRANS", "libell_d_acheminement": "FRANS", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01166"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c33f22972d6d62ec54a1fb50ba00e13b14f3a55", "fields": {"nom_de_la_commune": "GIRON", "libell_d_acheminement": "GIRON", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01174"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa8c60c1b51da63e50cff33759e3bfd86623e1ef", "fields": {"code_postal": "01360", "code_commune_insee": "01032", "libell_d_acheminement": "BELIGNEUX", "ligne_5": "LA VALBONNE", "nom_de_la_commune": "BELIGNEUX", "coordonnees_gps": [45.8283269463, 5.15327415034]}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a677d3b331cbd3926caad3a8c569b0fb187435", "fields": {"nom_de_la_commune": "BAGE LA VILLE", "libell_d_acheminement": "BAGE LA VILLE", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01025"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01ce3609c920d3866977b4bb4224d23cc6e48b7c", "fields": {"nom_de_la_commune": "ANGLEFORT", "libell_d_acheminement": "ANGLEFORT", "code_postal": "01350", "coordonnees_gps": [45.8543854094, 5.76557245306], "code_commune_insee": "01010"}, "geometry": {"type": "Point", "coordinates": [5.76557245306, 45.8543854094]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16229fd0e0f915431725a196cb9ebab4f0325e85", "fields": {"nom_de_la_commune": "BEREZIAT", "libell_d_acheminement": "BEREZIAT", "code_postal": "01340", "coordonnees_gps": [46.3400485451, 5.13297724307], "code_commune_insee": "01040"}, "geometry": {"type": "Point", "coordinates": [5.13297724307, 46.3400485451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "916830e5b32a943f11b0469d241a18eeb5e91cbc", "fields": {"nom_de_la_commune": "AMBRONAY", "libell_d_acheminement": "AMBRONAY", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01007"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "332a5bf895a2d36de321fa36a84460ff5775a620", "fields": {"nom_de_la_commune": "APREMONT", "libell_d_acheminement": "APREMONT", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01011"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fde0b07849574c62de3c3f170ece87aea51b90ff", "fields": {"nom_de_la_commune": "ARBIGNY", "libell_d_acheminement": "ARBIGNY", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01016"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32611bad5377347300b5be82e9d388ff9bf44652", "fields": {"nom_de_la_commune": "BANEINS", "libell_d_acheminement": "BANEINS", "code_postal": "01990", "coordonnees_gps": [46.0766987934, 4.89959868147], "code_commune_insee": "01028"}, "geometry": {"type": "Point", "coordinates": [4.89959868147, 46.0766987934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f472debf3de6d002382363d4bf53f4c2bdb6be92", "fields": {"nom_de_la_commune": "BALAN", "libell_d_acheminement": "BALAN", "code_postal": "01360", "coordonnees_gps": [45.8283269463, 5.15327415034], "code_commune_insee": "01027"}, "geometry": {"type": "Point", "coordinates": [5.15327415034, 45.8283269463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d9117fcfb933de3c7ce6d5f5602589e8994553", "fields": {"nom_de_la_commune": "BEY", "libell_d_acheminement": "BEY", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01042"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0447269ff48ff0d2e3cbced74fac2409c29c301a", "fields": {"nom_de_la_commune": "CHAVANNES SUR REYSSOUZE", "libell_d_acheminement": "CHAVANNES SUR REYSSOUZE", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01094"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e4dd6756e1c8d311e639a7aa2767ca8849b109f", "fields": {"nom_de_la_commune": "CHAMPAGNE EN VALROMEY", "libell_d_acheminement": "CHAMPAGNE EN VALROMEY", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01079"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac81e78f6b5cc1d13c50ec70f9708b66f3359b69", "fields": {"nom_de_la_commune": "CHATEAU GAILLARD", "libell_d_acheminement": "CHATEAU GAILLARD", "code_postal": "01500", "coordonnees_gps": [45.9756078125, 5.34313562094], "code_commune_insee": "01089"}, "geometry": {"type": "Point", "coordinates": [5.34313562094, 45.9756078125]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "263c1fa60dbea9308340dd9cdc65eb370ee67390", "fields": {"nom_de_la_commune": "LA BOISSE", "libell_d_acheminement": "LA BOISSE", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01049"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "739e327bb2726ac342a2ce967ecfb572824b37f3", "fields": {"nom_de_la_commune": "CERTINES", "libell_d_acheminement": "CERTINES", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01069"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "603b1ff40023390cf2e1f312442a6b56f8bc0f32", "fields": {"nom_de_la_commune": "CIVRIEUX", "libell_d_acheminement": "CIVRIEUX", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01105"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "121e70e008f098abc296134455f4236e0683aad0", "fields": {"nom_de_la_commune": "BEYNOST", "libell_d_acheminement": "BEYNOST", "code_postal": "01700", "coordonnees_gps": [45.8388521429, 4.95806179291], "code_commune_insee": "01043"}, "geometry": {"type": "Point", "coordinates": [4.95806179291, 45.8388521429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db8e882cfaf703502acd234584178db00bab34b6", "fields": {"nom_de_la_commune": "BILLIAT", "libell_d_acheminement": "BILLIAT", "code_postal": "01200", "coordonnees_gps": [46.1338706653, 5.81259483702], "code_commune_insee": "01044"}, "geometry": {"type": "Point", "coordinates": [5.81259483702, 46.1338706653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5950c0ff3f4aef6b305d6c5151c6afd7a436122", "fields": {"nom_de_la_commune": "BRIORD", "libell_d_acheminement": "BRIORD", "code_postal": "01470", "coordonnees_gps": [45.805864462, 5.47727707691], "code_commune_insee": "01064"}, "geometry": {"type": "Point", "coordinates": [5.47727707691, 45.805864462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "659d943c1ca48560be10217f00dd9cb1a08dcced", "fields": {"nom_de_la_commune": "BRENOD", "libell_d_acheminement": "BRENOD", "code_postal": "01110", "coordonnees_gps": [45.9724218119, 5.577110369], "code_commune_insee": "01060"}, "geometry": {"type": "Point", "coordinates": [5.577110369, 45.9724218119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "310f98fc35dc313af282b6ce67c4bb4fd0487546", "fields": {"code_postal": "01300", "code_commune_insee": "01286", "libell_d_acheminement": "PARVES ET NATTAGES", "ligne_5": "NATTAGES", "nom_de_la_commune": "PARVES ET NATTAGES", "coordonnees_gps": [45.7328309975, 5.65715901636]}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3508a3bff29824b90057ed70d710c3a7a0bb0a2f", "fields": {"code_postal": "01280", "code_commune_insee": "01313", "libell_d_acheminement": "PREVESSIN MOENS", "ligne_5": "MOENS", "nom_de_la_commune": "PREVESSIN MOENS", "coordonnees_gps": [46.2579919706, 6.07173985899]}, "geometry": {"type": "Point", "coordinates": [6.07173985899, 46.2579919706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e1ea314f38dd70900aa063aa794222c045ac67b", "fields": {"code_postal": "01100", "code_commune_insee": "01283", "libell_d_acheminement": "OYONNAX", "ligne_5": "BOUVENT", "nom_de_la_commune": "OYONNAX", "coordonnees_gps": [46.2468792013, 5.65226081977]}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e73c889b866bbd7fe510c996b8099456facb1d8", "fields": {"nom_de_la_commune": "PREVESSIN MOENS", "libell_d_acheminement": "PREVESSIN MOENS", "code_postal": "01280", "coordonnees_gps": [46.2579919706, 6.07173985899], "code_commune_insee": "01313"}, "geometry": {"type": "Point", "coordinates": [6.07173985899, 46.2579919706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcd994f5003c8a4bfc9f2f8f4ac46590473a62b7", "fields": {"nom_de_la_commune": "LE PLANTAY", "libell_d_acheminement": "LE PLANTAY", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01299"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acb64009380d3d2090bbaf3aab49fbc5752e24e9", "fields": {"nom_de_la_commune": "REYRIEUX", "libell_d_acheminement": "REYRIEUX", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01322"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f371ce98188dc5723ead0c41f8b4d2456f0c55c6", "fields": {"nom_de_la_commune": "RAMASSE", "libell_d_acheminement": "RAMASSE", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01317"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6d65963de7a7d60b738514119a791123a3e3bd0", "fields": {"nom_de_la_commune": "OYONNAX", "libell_d_acheminement": "OYONNAX", "code_postal": "01100", "coordonnees_gps": [46.2468792013, 5.65226081977], "code_commune_insee": "01283"}, "geometry": {"type": "Point", "coordinates": [5.65226081977, 46.2468792013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff96b158c135a27d08758126962910802ce2644f", "fields": {"nom_de_la_commune": "PERREX", "libell_d_acheminement": "PERREX", "code_postal": "01540", "coordonnees_gps": [46.2212986861, 4.98198011208], "code_commune_insee": "01291"}, "geometry": {"type": "Point", "coordinates": [4.98198011208, 46.2212986861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84f7f7208835b0fb24cba516620addab7dbadf9d", "fields": {"nom_de_la_commune": "LA BASTIDE", "libell_d_acheminement": "LA BASTIDE", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83013"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23cc66724e94109b95528877123d9f46b79ed329", "fields": {"nom_de_la_commune": "BAUDUEN", "libell_d_acheminement": "BAUDUEN", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83015"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e90007d75ea73e411b60d4070a0922bc47c8a902", "fields": {"code_postal": "83330", "code_commune_insee": "83035", "libell_d_acheminement": "LE CASTELLET", "ligne_5": "STE ANNE DU CASTELLET", "nom_de_la_commune": "LE CASTELLET", "coordonnees_gps": [43.2073445411, 5.81845184293]}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f068599fe69e91d5fffe73175714906bb66d07cd", "fields": {"nom_de_la_commune": "CHATEAUDOUBLE", "libell_d_acheminement": "CHATEAUDOUBLE", "code_postal": "83300", "coordonnees_gps": [43.574421442, 6.44637854358], "code_commune_insee": "83038"}, "geometry": {"type": "Point", "coordinates": [6.44637854358, 43.574421442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85db808855b2a5d7cfa4d47834c1fbc9b7b82fe3", "fields": {"nom_de_la_commune": "CHATEAUVERT", "libell_d_acheminement": "CHATEAUVERT", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83039"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ab531e4f762e150020987828e3f27f58491a2fe", "fields": {"nom_de_la_commune": "COTIGNAC", "libell_d_acheminement": "COTIGNAC", "code_postal": "83570", "coordonnees_gps": [43.4971017432, 6.15115955062], "code_commune_insee": "83046"}, "geometry": {"type": "Point", "coordinates": [6.15115955062, 43.4971017432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0771fdc172726b8068be9fcb3354ac496f124678", "fields": {"nom_de_la_commune": "LA CROIX VALMER", "libell_d_acheminement": "LA CROIX VALMER", "code_postal": "83420", "coordonnees_gps": [43.1956754103, 6.5853396294], "code_commune_insee": "83048"}, "geometry": {"type": "Point", "coordinates": [6.5853396294, 43.1956754103]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45ee828ca656c0fe6620748d5b35ddedd937368c", "fields": {"nom_de_la_commune": "ENTRECASTEAUX", "libell_d_acheminement": "ENTRECASTEAUX", "code_postal": "83570", "coordonnees_gps": [43.4971017432, 6.15115955062], "code_commune_insee": "83051"}, "geometry": {"type": "Point", "coordinates": [6.15115955062, 43.4971017432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54b4b5841c4021380d50f5ff6482083fc0a6bc74", "fields": {"nom_de_la_commune": "LA FARLEDE", "libell_d_acheminement": "LA FARLEDE", "code_postal": "83210", "coordonnees_gps": [43.2011646228, 6.01550347803], "code_commune_insee": "83054"}, "geometry": {"type": "Point", "coordinates": [6.01550347803, 43.2011646228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed5cb9a5b4584dcbee52a5803eea22085556f0f", "fields": {"nom_de_la_commune": "FIGANIERES", "libell_d_acheminement": "FIGANIERES", "code_postal": "83830", "coordonnees_gps": [43.5889184339, 6.54988414192], "code_commune_insee": "83056"}, "geometry": {"type": "Point", "coordinates": [6.54988414192, 43.5889184339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69118e1578262c2501e0ee6369510ee44be7af56", "fields": {"nom_de_la_commune": "FLAYOSC", "libell_d_acheminement": "FLAYOSC", "code_postal": "83780", "coordonnees_gps": [43.5421689584, 6.36328677589], "code_commune_insee": "83058"}, "geometry": {"type": "Point", "coordinates": [6.36328677589, 43.5421689584]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e76b04bd65edf2ff4fc49cae23918f1c69d1c8b8", "fields": {"nom_de_la_commune": "FORCALQUEIRET", "libell_d_acheminement": "FORCALQUEIRET", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83059"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af97281324cb0ebf1608c774da95d769693099e", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "GIENS", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c80063aa1ed8af2f54a8d73121a3edf19f796812", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "LES SALINS D HYERES", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca170a616125a08f0905df9d3b2d3be31aa3e0b9", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "PORT CROS", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ddbd341ad757cab3f5b8e71114d0164daf1727c", "fields": {"nom_de_la_commune": "LE LUC", "libell_d_acheminement": "LE LUC", "code_postal": "83340", "coordonnees_gps": [43.3884986728, 6.30143999122], "code_commune_insee": "83073"}, "geometry": {"type": "Point", "coordinates": [6.30143999122, 43.3884986728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d81e9d5eae7d51bea44cbc1d908812deae48de9c", "fields": {"nom_de_la_commune": "LES MAYONS", "libell_d_acheminement": "LES MAYONS", "code_postal": "83340", "coordonnees_gps": [43.3884986728, 6.30143999122], "code_commune_insee": "83075"}, "geometry": {"type": "Point", "coordinates": [6.30143999122, 43.3884986728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d9f91cdaff076cfb09fa674698e033f8694c2ce", "fields": {"nom_de_la_commune": "MEOUNES LES MONTRIEUX", "libell_d_acheminement": "MEOUNES LES MONTRIEUX", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83077"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9acba4f83b724ff792e909f91cb13d3c16d0abea", "fields": {"nom_de_la_commune": "LA MOTTE", "libell_d_acheminement": "LA MOTTE", "code_postal": "83920", "coordonnees_gps": [43.5080153187, 6.55105685354], "code_commune_insee": "83085"}, "geometry": {"type": "Point", "coordinates": [6.55105685354, 43.5080153187]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "367cfae45bdf291e10a2fdf14a79267f88177f9f", "fields": {"nom_de_la_commune": "PLAN D AUPS STE BAUME", "libell_d_acheminement": "PLAN D AUPS STE BAUME", "code_postal": "83640", "coordonnees_gps": [43.3568755159, 5.72816455305], "code_commune_insee": "83093"}, "geometry": {"type": "Point", "coordinates": [5.72816455305, 43.3568755159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c34feee58dfa811186da98140f6183bcdea79bd7", "fields": {"nom_de_la_commune": "POURCIEUX", "libell_d_acheminement": "POURCIEUX", "code_postal": "83470", "coordonnees_gps": [43.479442652, 5.84137337799], "code_commune_insee": "83096"}, "geometry": {"type": "Point", "coordinates": [5.84137337799, 43.479442652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5d60081064df04571f72f2de6ef6eb841d2f00", "fields": {"nom_de_la_commune": "LE PRADET", "libell_d_acheminement": "LE PRADET", "code_postal": "83220", "coordonnees_gps": [43.0999163534, 6.02750820464], "code_commune_insee": "83098"}, "geometry": {"type": "Point", "coordinates": [6.02750820464, 43.0999163534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d713d4912acfe8679ac5d73c5693c7cf00ee142", "fields": {"nom_de_la_commune": "RIANS", "libell_d_acheminement": "RIANS", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83104"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d32a99006bceb7df7d4c684f2d2881623e8ac60", "fields": {"nom_de_la_commune": "LA ROQUE ESCLAPON", "libell_d_acheminement": "LA ROQUE ESCLAPON", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83109"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0132ee5a6bdd03fbb06274c395e5995a6f69ab4b", "fields": {"nom_de_la_commune": "STE ANASTASIE SUR ISSOLE", "libell_d_acheminement": "STE ANASTASIE SUR ISSOLE", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83111"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47cd3f17ef90391b28d0f2daddced3e3a8118fa2", "fields": {"nom_de_la_commune": "SANARY SUR MER", "libell_d_acheminement": "SANARY SUR MER", "code_postal": "83110", "coordonnees_gps": [43.1387724085, 5.79572803908], "code_commune_insee": "83123"}, "geometry": {"type": "Point", "coordinates": [5.79572803908, 43.1387724085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38da695d3443bde4871782ff247c556d304e63b7", "fields": {"nom_de_la_commune": "SOLLIES PONT", "libell_d_acheminement": "SOLLIES PONT", "code_postal": "83210", "coordonnees_gps": [43.2011646228, 6.01550347803], "code_commune_insee": "83130"}, "geometry": {"type": "Point", "coordinates": [6.01550347803, 43.2011646228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76e86c296e355040ad885867f48e950c47c734d8", "fields": {"nom_de_la_commune": "TARADEAU", "libell_d_acheminement": "TARADEAU", "code_postal": "83460", "coordonnees_gps": [43.4531977218, 6.47549589741], "code_commune_insee": "83134"}, "geometry": {"type": "Point", "coordinates": [6.47549589741, 43.4531977218]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bb63e52a3663195bfd22568e9127452ff2145c8", "fields": {"nom_de_la_commune": "VINS SUR CARAMY", "libell_d_acheminement": "VINS SUR CARAMY", "code_postal": "83170", "coordonnees_gps": [43.3988588214, 6.01212360255], "code_commune_insee": "83151"}, "geometry": {"type": "Point", "coordinates": [6.01212360255, 43.3988588214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc16006e0aac981532840ef3228b9659bdddc85c", "fields": {"nom_de_la_commune": "ST ANTONIN DU VAR", "libell_d_acheminement": "ST ANTONIN DU VAR", "code_postal": "83510", "coordonnees_gps": [43.4882924341, 6.34408995292], "code_commune_insee": "83154"}, "geometry": {"type": "Point", "coordinates": [6.34408995292, 43.4882924341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad3dde009891509406ac66c049b7c4b10886602", "fields": {"nom_de_la_commune": "APT", "libell_d_acheminement": "APT", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84003"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8c8e4b9035243a1689dd496d572cbe83af1c926", "fields": {"nom_de_la_commune": "AUBIGNAN", "libell_d_acheminement": "AUBIGNAN", "code_postal": "84810", "coordonnees_gps": [44.0976163616, 5.03227736154], "code_commune_insee": "84004"}, "geometry": {"type": "Point", "coordinates": [5.03227736154, 44.0976163616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98e129a8eb476be43d6793ae4d0e1aef7fd88a77", "fields": {"nom_de_la_commune": "AUREL", "libell_d_acheminement": "AUREL", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84005"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cfbe4fcb7a5e6b89b56552813005fec58b65fac", "fields": {"nom_de_la_commune": "BEAUMETTES", "libell_d_acheminement": "BEAUMETTES", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84013"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f23aa1eeac82f84502a01e7d57abb53ad23c944", "fields": {"nom_de_la_commune": "BEAUMONT DU VENTOUX", "libell_d_acheminement": "BEAUMONT DU VENTOUX", "code_postal": "84340", "coordonnees_gps": [44.1923275684, 5.16748338542], "code_commune_insee": "84015"}, "geometry": {"type": "Point", "coordinates": [5.16748338542, 44.1923275684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37631091f1cc7bf4898641f8e40d041cc5474cf8", "fields": {"nom_de_la_commune": "BUISSON", "libell_d_acheminement": "BUISSON", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84022"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9a44e9cb74d2d66cb5b5677721b2577eb3a0851", "fields": {"nom_de_la_commune": "CADENET", "libell_d_acheminement": "CADENET", "code_postal": "84160", "coordonnees_gps": [43.7635953762, 5.39771217975], "code_commune_insee": "84026"}, "geometry": {"type": "Point", "coordinates": [5.39771217975, 43.7635953762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de2df0e6b633a23050f605876e4335139be02a8f", "fields": {"nom_de_la_commune": "CASENEUVE", "libell_d_acheminement": "CASENEUVE", "code_postal": "84750", "coordonnees_gps": [43.880271182, 5.52723627077], "code_commune_insee": "84032"}, "geometry": {"type": "Point", "coordinates": [5.52723627077, 43.880271182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0307254e4d45e7d1f46772b90e475dd11470042", "fields": {"nom_de_la_commune": "CAUMONT SUR DURANCE", "libell_d_acheminement": "CAUMONT SUR DURANCE", "code_postal": "84510", "coordonnees_gps": [43.8915775446, 4.95613093098], "code_commune_insee": "84034"}, "geometry": {"type": "Point", "coordinates": [4.95613093098, 43.8915775446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b9a4d309a4ee2da5bb739eb7bd321bae20bc0db", "fields": {"nom_de_la_commune": "CHATEAUNEUF DE GADAGNE", "libell_d_acheminement": "CHATEAUNEUF DE GADAGNE", "code_postal": "84470", "coordonnees_gps": [43.9279468427, 4.94298545759], "code_commune_insee": "84036"}, "geometry": {"type": "Point", "coordinates": [4.94298545759, 43.9279468427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba6978970395097c2bb54f23ffc7e562134a923", "fields": {"nom_de_la_commune": "CHATEAUNEUF DU PAPE", "libell_d_acheminement": "CHATEAUNEUF DU PAPE", "code_postal": "84230", "coordonnees_gps": [44.0602370328, 4.82723484316], "code_commune_insee": "84037"}, "geometry": {"type": "Point", "coordinates": [4.82723484316, 44.0602370328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fd35d7d9ff6785427b0edb965ca008e71f1ed69", "fields": {"nom_de_la_commune": "COURTHEZON", "libell_d_acheminement": "COURTHEZON", "code_postal": "84350", "coordonnees_gps": [44.0868810229, 4.88193709084], "code_commune_insee": "84039"}, "geometry": {"type": "Point", "coordinates": [4.88193709084, 44.0868810229]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ef6ba202c46d67e73615f7e121c5be315227775", "fields": {"nom_de_la_commune": "CUCURON", "libell_d_acheminement": "CUCURON", "code_postal": "84160", "coordonnees_gps": [43.7635953762, 5.39771217975], "code_commune_insee": "84042"}, "geometry": {"type": "Point", "coordinates": [5.39771217975, 43.7635953762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8556489a912abdf3b356dfac6d5b31847d8b71e", "fields": {"nom_de_la_commune": "ENTRECHAUX", "libell_d_acheminement": "ENTRECHAUX", "code_postal": "84340", "coordonnees_gps": [44.1923275684, 5.16748338542], "code_commune_insee": "84044"}, "geometry": {"type": "Point", "coordinates": [5.16748338542, 44.1923275684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b13486ae5c6800cdb73b89ca19f6a83701642be", "fields": {"nom_de_la_commune": "GRAMBOIS", "libell_d_acheminement": "GRAMBOIS", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84052"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2227ed4dbef124caf023832fdf50e58a43388bd", "fields": {"nom_de_la_commune": "GRILLON", "libell_d_acheminement": "GRILLON", "code_postal": "84600", "coordonnees_gps": [44.3773036634, 4.97155340684], "code_commune_insee": "84053"}, "geometry": {"type": "Point", "coordinates": [4.97155340684, 44.3773036634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d0bc7ccc9a80c3ff1a6377860ab5a62da5165c3", "fields": {"nom_de_la_commune": "LAURIS", "libell_d_acheminement": "LAURIS", "code_postal": "84360", "coordonnees_gps": [43.7644472633, 5.24997704663], "code_commune_insee": "84065"}, "geometry": {"type": "Point", "coordinates": [5.24997704663, 43.7644472633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab4c8d049f6b6f298b8f3424bda468cb38ab2f46", "fields": {"nom_de_la_commune": "MALAUCENE", "libell_d_acheminement": "MALAUCENE", "code_postal": "84340", "coordonnees_gps": [44.1923275684, 5.16748338542], "code_commune_insee": "84069"}, "geometry": {"type": "Point", "coordinates": [5.16748338542, 44.1923275684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e040710d9fed9c066dc020af0ee020a7534e3d1", "fields": {"nom_de_la_commune": "MENERBES", "libell_d_acheminement": "MENERBES", "code_postal": "84560", "coordonnees_gps": [43.8242647476, 5.22097372006], "code_commune_insee": "84073"}, "geometry": {"type": "Point", "coordinates": [5.22097372006, 43.8242647476]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87e610e2034cb43e710254a2577bc805ae742149", "fields": {"nom_de_la_commune": "MONTEUX", "libell_d_acheminement": "MONTEUX", "code_postal": "84170", "coordonnees_gps": [44.0338869082, 4.98488620571], "code_commune_insee": "84080"}, "geometry": {"type": "Point", "coordinates": [4.98488620571, 44.0338869082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf19a574224ddb9cffff2aa70bac186a75c87bd4", "fields": {"nom_de_la_commune": "PUYVERT", "libell_d_acheminement": "PUYVERT", "code_postal": "84160", "coordonnees_gps": [43.7635953762, 5.39771217975], "code_commune_insee": "84095"}, "geometry": {"type": "Point", "coordinates": [5.39771217975, 43.7635953762]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "933515577fc76fd309ac93a7757e86c28da89d10", "fields": {"nom_de_la_commune": "RASTEAU", "libell_d_acheminement": "RASTEAU", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84096"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba0f2ea83b309faff4d1daf25095edf047cae497", "fields": {"nom_de_la_commune": "RICHERENCHES", "libell_d_acheminement": "RICHERENCHES", "code_postal": "84600", "coordonnees_gps": [44.3773036634, 4.97155340684], "code_commune_insee": "84097"}, "geometry": {"type": "Point", "coordinates": [4.97155340684, 44.3773036634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6ad76aa9103afcba71252a1f3a2763d36a24be8", "fields": {"nom_de_la_commune": "RUSTREL", "libell_d_acheminement": "RUSTREL", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84103"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24a87a844c951cc7f0625c1a3ae421b4db9abb58", "fields": {"nom_de_la_commune": "STE CECILE LES VIGNES", "libell_d_acheminement": "STE CECILE LES VIGNES", "code_postal": "84290", "coordonnees_gps": [44.2363120458, 4.9094119857], "code_commune_insee": "84106"}, "geometry": {"type": "Point", "coordinates": [4.9094119857, 44.2363120458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0b5f87abd83b6467e0859f87ad4292a74dcf49a", "fields": {"nom_de_la_commune": "ST HIPPOLYTE LE GRAVEYRON", "libell_d_acheminement": "ST HIPPOLYTE LE GRAVEYRON", "code_postal": "84330", "coordonnees_gps": [44.1247384898, 5.10713671288], "code_commune_insee": "84109"}, "geometry": {"type": "Point", "coordinates": [5.10713671288, 44.1247384898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "997b79fa655b7c5296c82ca3062c4c166aef57c4", "fields": {"nom_de_la_commune": "ST MARCELLIN LES VAISON", "libell_d_acheminement": "ST MARCELLIN LES VAISON", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84111"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49f4fcace52612e240bc0886daf0da4872f77468", "fields": {"nom_de_la_commune": "ST MARTIN DE LA BRASQUE", "libell_d_acheminement": "ST MARTIN DE LA BRASQUE", "code_postal": "84760", "coordonnees_gps": [43.7642887492, 5.53941013259], "code_commune_insee": "84113"}, "geometry": {"type": "Point", "coordinates": [5.53941013259, 43.7642887492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b782a24e00ebc2dd7152b8c266cc56a48d4187b9", "fields": {"nom_de_la_commune": "ST PIERRE DE VASSOLS", "libell_d_acheminement": "ST PIERRE DE VASSOLS", "code_postal": "84330", "coordonnees_gps": [44.1247384898, 5.10713671288], "code_commune_insee": "84115"}, "geometry": {"type": "Point", "coordinates": [5.10713671288, 44.1247384898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d745746ceb0ff7cbf78dae627057020277dcb1", "fields": {"nom_de_la_commune": "ST TRINIT", "libell_d_acheminement": "ST TRINIT", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84120"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30239c3d928553084082dfc3910b3bcb8ebaaeea", "fields": {"nom_de_la_commune": "SANNES", "libell_d_acheminement": "SANNES", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84121"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5464a5aefc36a6de66558872adece686ea05667", "fields": {"nom_de_la_commune": "SAULT", "libell_d_acheminement": "SAULT", "code_postal": "84390", "coordonnees_gps": [44.0935308113, 5.39499418943], "code_commune_insee": "84123"}, "geometry": {"type": "Point", "coordinates": [5.39499418943, 44.0935308113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cbb15dabe2bb027724453806f01b035b1114af5", "fields": {"nom_de_la_commune": "SEGURET", "libell_d_acheminement": "SEGURET", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84126"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfbc527e365d8402d78873b5b2d2462afbbf8c26", "fields": {"nom_de_la_commune": "TRAVAILLAN", "libell_d_acheminement": "TRAVAILLAN", "code_postal": "84850", "coordonnees_gps": [44.1751054201, 4.89624702232], "code_commune_insee": "84134"}, "geometry": {"type": "Point", "coordinates": [4.89624702232, 44.1751054201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b16b4e9fccab1ef98a6979ad17595f134735a1ad", "fields": {"nom_de_la_commune": "VACQUEYRAS", "libell_d_acheminement": "VACQUEYRAS", "code_postal": "84190", "coordonnees_gps": [44.1503927193, 5.02329856851], "code_commune_insee": "84136"}, "geometry": {"type": "Point", "coordinates": [5.02329856851, 44.1503927193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61d872c1a0b0715731b21738031a96421378651b", "fields": {"nom_de_la_commune": "VENASQUE", "libell_d_acheminement": "VENASQUE", "code_postal": "84210", "coordonnees_gps": [43.9898251077, 5.08841952046], "code_commune_insee": "84143"}, "geometry": {"type": "Point", "coordinates": [5.08841952046, 43.9898251077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b768a8a7bce54368e66173e5aaadf9a1be2d17", "fields": {"nom_de_la_commune": "VIOLES", "libell_d_acheminement": "VIOLES", "code_postal": "84150", "coordonnees_gps": [44.1493241493, 4.92779558377], "code_commune_insee": "84149"}, "geometry": {"type": "Point", "coordinates": [4.92779558377, 44.1493241493]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5c4fa0d104cdefdfcbd1784da623f338d8b7a3", "fields": {"nom_de_la_commune": "VISAN", "libell_d_acheminement": "VISAN", "code_postal": "84820", "coordonnees_gps": [44.3267341787, 4.94383549242], "code_commune_insee": "84150"}, "geometry": {"type": "Point", "coordinates": [4.94383549242, 44.3267341787]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6905566275f16dd908b835717cec02dadbbcbfd4", "fields": {"nom_de_la_commune": "AIZENAY", "libell_d_acheminement": "AIZENAY", "code_postal": "85190", "coordonnees_gps": [46.7206565452, -1.60345832347], "code_commune_insee": "85003"}, "geometry": {"type": "Point", "coordinates": [-1.60345832347, 46.7206565452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030666b7aa83d147ad644d83adb4aa0d63b37324", "fields": {"nom_de_la_commune": "APREMONT", "libell_d_acheminement": "APREMONT", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85006"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f180fd564322d756d139e8ba0c16e0b87a0ce601", "fields": {"code_postal": "85430", "code_commune_insee": "85008", "libell_d_acheminement": "AUBIGNY LES CLOUZEAUX", "ligne_5": "LES CLOUZEAUX", "nom_de_la_commune": "AUBIGNY LES CLOUZEAUX", "coordonnees_gps": [46.5767007042, -1.4774062897]}, "geometry": {"type": "Point", "coordinates": [-1.4774062897, 46.5767007042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4370ef6bb5ade0e34c3fe103913cca9250768df", "fields": {"nom_de_la_commune": "AVRILLE", "libell_d_acheminement": "AVRILLE", "code_postal": "85440", "coordonnees_gps": [46.491465438, -1.58784266413], "code_commune_insee": "85010"}, "geometry": {"type": "Point", "coordinates": [-1.58784266413, 46.491465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4a52b4f025ee0b8c2701e59b71fde169dea1f1", "fields": {"code_postal": "85550", "code_commune_insee": "85012", "libell_d_acheminement": "LA BARRE DE MONTS", "ligne_5": "FROMENTINE", "nom_de_la_commune": "LA BARRE DE MONTS", "coordonnees_gps": [46.8721318025, -2.10134483894]}, "geometry": {"type": "Point", "coordinates": [-2.10134483894, 46.8721318025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad34e9498304f1f465ad00ee1336bbf8814c062b", "fields": {"nom_de_la_commune": "BEAUFOU", "libell_d_acheminement": "BEAUFOU", "code_postal": "85170", "coordonnees_gps": [46.803170613, -1.45953412091], "code_commune_insee": "85015"}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2002f27eb33f6d17327488034f1635c307ccaa76", "fields": {"nom_de_la_commune": "LA BOISSIERE DE MONTAIGU", "libell_d_acheminement": "LA BOISSIERE DE MONTAIGU", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85025"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9ee771d21610372afc3b3d58c2868decd68b281", "fields": {"nom_de_la_commune": "LA BOISSIERE DES LANDES", "libell_d_acheminement": "LA BOISSIERE DES LANDES", "code_postal": "85430", "coordonnees_gps": [46.5767007042, -1.4774062897], "code_commune_insee": "85026"}, "geometry": {"type": "Point", "coordinates": [-1.4774062897, 46.5767007042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ac7a9fb3cae3d5f1c31433c85afcab4ee1c1f3e", "fields": {"nom_de_la_commune": "BOUIN", "libell_d_acheminement": "BOUIN", "code_postal": "85230", "coordonnees_gps": [46.9369632993, -2.01322224177], "code_commune_insee": "85029"}, "geometry": {"type": "Point", "coordinates": [-2.01322224177, 46.9369632993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fb56b1d07d1c261581fa4eec8251e65e9c5bc18", "fields": {"code_postal": "85320", "code_commune_insee": "85036", "libell_d_acheminement": "LA BRETONNIERE LA CLAYE", "ligne_5": "LA CLAYE", "nom_de_la_commune": "LA BRETONNIERE LA CLAYE", "coordonnees_gps": [46.544588242, -1.21560029511]}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e785af71f705deb1d317a1a280649e2e1c9705f", "fields": {"nom_de_la_commune": "LA BRUFFIERE", "libell_d_acheminement": "LA BRUFFIERE", "code_postal": "85530", "coordonnees_gps": [47.0147133622, -1.18319119935], "code_commune_insee": "85039"}, "geometry": {"type": "Point", "coordinates": [-1.18319119935, 47.0147133622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41b4415ae19dbaa823e441a6dd38d5e3bc6b5b18", "fields": {"nom_de_la_commune": "LA CAILLERE ST HILAIRE", "libell_d_acheminement": "LA CAILLERE ST HILAIRE", "code_postal": "85410", "coordonnees_gps": [46.5977381891, -0.875564546454], "code_commune_insee": "85040"}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b243e9967791f4c5aa00990a63a4f658b33b4b84", "fields": {"code_postal": "85410", "code_commune_insee": "85040", "libell_d_acheminement": "LA CAILLERE ST HILAIRE", "ligne_5": "ST HILAIRE DU BOIS", "nom_de_la_commune": "LA CAILLERE ST HILAIRE", "coordonnees_gps": [46.5977381891, -0.875564546454]}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1723c2d1a8d89ec881805d65b0199377f0df7f2a", "fields": {"nom_de_la_commune": "CEZAIS", "libell_d_acheminement": "CEZAIS", "code_postal": "85410", "coordonnees_gps": [46.5977381891, -0.875564546454], "code_commune_insee": "85041"}, "geometry": {"type": "Point", "coordinates": [-0.875564546454, 46.5977381891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6539f5bb03126bfa01f0921ce6218c3a98a68113", "fields": {"nom_de_la_commune": "LA CHAIZE GIRAUD", "libell_d_acheminement": "LA CHAIZE GIRAUD", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85045"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e52085392511711b56514bff596fbfe406660d93", "fields": {"nom_de_la_commune": "CHAMPAGNE LES MARAIS", "libell_d_acheminement": "CHAMPAGNE LES MARAIS", "code_postal": "85450", "coordonnees_gps": [46.3816104965, -1.06555900366], "code_commune_insee": "85049"}, "geometry": {"type": "Point", "coordinates": [-1.06555900366, 46.3816104965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019def071a6312b30295e372d0deaa13c3d97263", "fields": {"code_postal": "85110", "code_commune_insee": "85051", "libell_d_acheminement": "CHANTONNAY", "ligne_5": "ST PHILBERT DU PONT CHARRAULT", "nom_de_la_commune": "CHANTONNAY", "coordonnees_gps": [46.7036383964, -1.03264404466]}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1beeeea23fd236524a9b590b90276083e6d7e17d", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX LYS", "libell_d_acheminement": "LA CHAPELLE AUX LYS", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85053"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86216e18c510a4ef153e500c030368f28f1cf5e8", "fields": {"nom_de_la_commune": "LA CHAPELLE HERMIER", "libell_d_acheminement": "LA CHAPELLE HERMIER", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85054"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b703bab3394e5bee2ca5fdca09fe5027a279433e", "fields": {"nom_de_la_commune": "LA CHAPELLE THEMER", "libell_d_acheminement": "LA CHAPELLE THEMER", "code_postal": "85210", "coordonnees_gps": [46.5616618506, -1.03160882247], "code_commune_insee": "85056"}, "geometry": {"type": "Point", "coordinates": [-1.03160882247, 46.5616618506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76b156314739b3c6a99ef0c2937371c4c1bbcbd5", "fields": {"nom_de_la_commune": "LA CHATAIGNERAIE", "libell_d_acheminement": "LA CHATAIGNERAIE", "code_postal": "85120", "coordonnees_gps": [46.6284872082, -0.712728404549], "code_commune_insee": "85059"}, "geometry": {"type": "Point", "coordinates": [-0.712728404549, 46.6284872082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f10507e137a9b9a3bde6326af9dfc02e998e61", "fields": {"nom_de_la_commune": "CHATEAU GUIBERT", "libell_d_acheminement": "CHATEAU GUIBERT", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85061"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2f6bb9fcab799e5db4d2f142d4110a5826529b", "fields": {"nom_de_la_commune": "CHAVAGNES EN PAILLERS", "libell_d_acheminement": "CHAVAGNES EN PAILLERS", "code_postal": "85250", "coordonnees_gps": [46.8659519068, -1.19415705359], "code_commune_insee": "85065"}, "geometry": {"type": "Point", "coordinates": [-1.19415705359, 46.8659519068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "306226630c7ff105d4808030c59a7d24b0414cba", "fields": {"nom_de_la_commune": "LA COPECHAGNIERE", "libell_d_acheminement": "LA COPECHAGNIERE", "code_postal": "85260", "coordonnees_gps": [46.8968914818, -1.35853673733], "code_commune_insee": "85072"}, "geometry": {"type": "Point", "coordinates": [-1.35853673733, 46.8968914818]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e68348ddd6fd70d1a60e69b4f381c2e61b23d9c2", "fields": {"nom_de_la_commune": "CUGAND", "libell_d_acheminement": "CUGAND", "code_postal": "85610", "coordonnees_gps": [47.0477932643, -1.2636898898], "code_commune_insee": "85076"}, "geometry": {"type": "Point", "coordinates": [-1.2636898898, 47.0477932643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5b8521da137f55412f86711a15dfbbba3c5bec6", "fields": {"nom_de_la_commune": "LES EPESSES", "libell_d_acheminement": "LES EPESSES", "code_postal": "85590", "coordonnees_gps": [46.9002620451, -0.893697595044], "code_commune_insee": "85082"}, "geometry": {"type": "Point", "coordinates": [-0.893697595044, 46.9002620451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cac2c4a2d522396f847d0717f566db00ea10e47", "fields": {"nom_de_la_commune": "FALLERON", "libell_d_acheminement": "FALLERON", "code_postal": "85670", "coordonnees_gps": [46.8295124815, -1.67054420657], "code_commune_insee": "85086"}, "geometry": {"type": "Point", "coordinates": [-1.67054420657, 46.8295124815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e85ee5f7ec64db6e7dc711fce21ffe095f717c", "fields": {"nom_de_la_commune": "FOUSSAIS PAYRE", "libell_d_acheminement": "FOUSSAIS PAYRE", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85094"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e5ddb031247deb242b1abf249c3feaf9b077e8", "fields": {"nom_de_la_commune": "GIVRAND", "libell_d_acheminement": "GIVRAND", "code_postal": "85800", "coordonnees_gps": [46.6993264019, -1.89528926065], "code_commune_insee": "85100"}, "geometry": {"type": "Point", "coordinates": [-1.89528926065, 46.6993264019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cefbd0977589e50a33ca807ce798a85bbdd08d1e", "fields": {"nom_de_la_commune": "GROSBREUIL", "libell_d_acheminement": "GROSBREUIL", "code_postal": "85440", "coordonnees_gps": [46.491465438, -1.58784266413], "code_commune_insee": "85103"}, "geometry": {"type": "Point", "coordinates": [-1.58784266413, 46.491465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5600abf61bf4b7ad6e0a7b74f30c5adcbec9a8c", "fields": {"nom_de_la_commune": "GRUES", "libell_d_acheminement": "GRUES", "code_postal": "85580", "coordonnees_gps": [46.3690753878, -1.25485668311], "code_commune_insee": "85104"}, "geometry": {"type": "Point", "coordinates": [-1.25485668311, 46.3690753878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0e80790f88cfc3d24b1e883e0ea649c95463e18", "fields": {"nom_de_la_commune": "L ILE D OLONNE", "libell_d_acheminement": "L ILE D OLONNE", "code_postal": "85340", "coordonnees_gps": [46.5499182477, -1.78394732739], "code_commune_insee": "85112"}, "geometry": {"type": "Point", "coordinates": [-1.78394732739, 46.5499182477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9b7e186a54acb388654c1f69b5561a854dc617", "fields": {"nom_de_la_commune": "SOLLIERES SARDIERES", "libell_d_acheminement": "SOLLIERES SARDIERES", "code_postal": "73500", "coordonnees_gps": [45.2494890118, 6.77219321482], "code_commune_insee": "73287"}, "geometry": {"type": "Point", "coordinates": [6.77219321482, 45.2494890118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "354eb5dce7c7490d385ce706b0fa29b3c0c515ad", "fields": {"nom_de_la_commune": "TOURS EN SAVOIE", "libell_d_acheminement": "TOURS EN SAVOIE", "code_postal": "73790", "coordonnees_gps": [45.6664303306, 6.461393526], "code_commune_insee": "73298"}, "geometry": {"type": "Point", "coordinates": [6.461393526, 45.6664303306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32bf43068ced5160b48563dd4631f66e5532811e", "fields": {"nom_de_la_commune": "TRAIZE", "libell_d_acheminement": "TRAIZE", "code_postal": "73170", "coordonnees_gps": [45.6800034634, 5.77251185061], "code_commune_insee": "73299"}, "geometry": {"type": "Point", "coordinates": [5.77251185061, 45.6800034634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f424873bf29b2f3eaa75a2b1d56599bc7e905e17", "fields": {"nom_de_la_commune": "UGINE", "libell_d_acheminement": "UGINE", "code_postal": "73400", "coordonnees_gps": [45.7638408088, 6.43638316061], "code_commune_insee": "73303"}, "geometry": {"type": "Point", "coordinates": [6.43638316061, 45.7638408088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "789e2d58f2c32f0b9640d2585251193245a89f17", "fields": {"nom_de_la_commune": "VENTHON", "libell_d_acheminement": "VENTHON", "code_postal": "73200", "coordonnees_gps": [45.6746674789, 6.36947117737], "code_commune_insee": "73308"}, "geometry": {"type": "Point", "coordinates": [6.36947117737, 45.6746674789]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d77eb721a5ea115a76adbb48b67ef9710797ff62", "fields": {"nom_de_la_commune": "VEREL DE MONTBEL", "libell_d_acheminement": "VEREL DE MONTBEL", "code_postal": "73330", "coordonnees_gps": [45.5472960883, 5.6982391716], "code_commune_insee": "73309"}, "geometry": {"type": "Point", "coordinates": [5.6982391716, 45.5472960883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4db38626574c85df5ddd17e9d7a75c6050c46c17", "fields": {"nom_de_la_commune": "VILLARGONDRAN", "libell_d_acheminement": "VILLARGONDRAN", "code_postal": "73300", "coordonnees_gps": [45.2555418724, 6.33510660794], "code_commune_insee": "73320"}, "geometry": {"type": "Point", "coordinates": [6.33510660794, 45.2555418724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5cfb1d5c48f8fede80f0f173cbb428c8577510", "fields": {"nom_de_la_commune": "VIONS", "libell_d_acheminement": "VIONS", "code_postal": "73310", "coordonnees_gps": [45.830485803, 5.83405340383], "code_commune_insee": "73327"}, "geometry": {"type": "Point", "coordinates": [5.83405340383, 45.830485803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0823c72bf358f2ffb5e2ca53e44d07c2443146e", "fields": {"nom_de_la_commune": "ALEX", "libell_d_acheminement": "ALEX", "code_postal": "74290", "coordonnees_gps": [45.8619270539, 6.21689519918], "code_commune_insee": "74003"}, "geometry": {"type": "Point", "coordinates": [6.21689519918, 45.8619270539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80615315c392562b4017a502f85c7ee77d82ee2e", "fields": {"nom_de_la_commune": "ARCHAMPS", "libell_d_acheminement": "ARCHAMPS", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74016"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b22902cc794c671f697bb7c74374877cc0f3f9b", "fields": {"nom_de_la_commune": "ARMOY", "libell_d_acheminement": "ARMOY", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74020"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fee3fe7a1ad9f26134cc17566b75bb05ab5bc3d8", "fields": {"nom_de_la_commune": "ARTHAZ PONT NOTRE DAME", "libell_d_acheminement": "ARTHAZ PONT NOTRE DAME", "code_postal": "74380", "coordonnees_gps": [46.1808749905, 6.30733667317], "code_commune_insee": "74021"}, "geometry": {"type": "Point", "coordinates": [6.30733667317, 46.1808749905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3908f14f25114d5372d66265f6912cc49a898360", "fields": {"nom_de_la_commune": "AYSE", "libell_d_acheminement": "AYSE", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74024"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f3da053db275cc80c31f93bf0bf31ae25c770e", "fields": {"nom_de_la_commune": "BALLAISON", "libell_d_acheminement": "BALLAISON", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74025"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b87d7c8e618b2714700c8c1da7dd25b5ad837f0", "fields": {"nom_de_la_commune": "LA BALME DE THUY", "libell_d_acheminement": "LA BALME DE THUY", "code_postal": "74230", "coordonnees_gps": [45.8718862446, 6.33303806029], "code_commune_insee": "74027"}, "geometry": {"type": "Point", "coordinates": [6.33303806029, 45.8718862446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1cdbe5984a9124ac6a491dfad9fda0c41e2ed15", "fields": {"nom_de_la_commune": "LA BAUME", "libell_d_acheminement": "LA BAUME", "code_postal": "74430", "coordonnees_gps": [46.2473273724, 6.63608245857], "code_commune_insee": "74030"}, "geometry": {"type": "Point", "coordinates": [6.63608245857, 46.2473273724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "099e3499a0f793a97960ad282b79d53433d27d79", "fields": {"nom_de_la_commune": "BERNEX", "libell_d_acheminement": "BERNEX", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74033"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b3a9ee70ef1080ce8f239d0fdb2be0b754cce46", "fields": {"nom_de_la_commune": "BOEGE", "libell_d_acheminement": "BOEGE", "code_postal": "74420", "coordonnees_gps": [46.2252735617, 6.42254652155], "code_commune_insee": "74037"}, "geometry": {"type": "Point", "coordinates": [6.42254652155, 46.2252735617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c90a25093731035d716af6eba6b2b3bd64962fdf", "fields": {"nom_de_la_commune": "BONNEVAUX", "libell_d_acheminement": "BONNEVAUX", "code_postal": "74360", "coordonnees_gps": [46.2907146867, 6.73957320561], "code_commune_insee": "74041"}, "geometry": {"type": "Point", "coordinates": [6.73957320561, 46.2907146867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee0fc66086081f5653f871d8661495c5ac237fc", "fields": {"nom_de_la_commune": "BONS EN CHABLAIS", "libell_d_acheminement": "BONS EN CHABLAIS", "code_postal": "74890", "coordonnees_gps": [46.2697106618, 6.38657932887], "code_commune_insee": "74043"}, "geometry": {"type": "Point", "coordinates": [6.38657932887, 46.2697106618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e544a647c50f01277d5d3ed7b83aadb5780960af", "fields": {"nom_de_la_commune": "BOUSSY", "libell_d_acheminement": "BOUSSY", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74046"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c042336e1c99d0cbcdcaa4d1a26887d559516a2e", "fields": {"code_postal": "74400", "code_commune_insee": "74056", "libell_d_acheminement": "CHAMONIX MONT BLANC", "ligne_5": "LES BOSSONS", "nom_de_la_commune": "CHAMONIX MONT BLANC", "coordonnees_gps": [45.931307263, 6.92411845534]}, "geometry": {"type": "Point", "coordinates": [6.92411845534, 45.931307263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "330a5e463a8c78ef61cf23e92a1f77c0c8d33f86", "fields": {"nom_de_la_commune": "LA CHAPELLE RAMBAUD", "libell_d_acheminement": "LA CHAPELLE RAMBAUD", "code_postal": "74800", "coordonnees_gps": [46.0625278271, 6.31895878738], "code_commune_insee": "74059"}, "geometry": {"type": "Point", "coordinates": [6.31895878738, 46.0625278271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b6c53ff3597d5829cfcfdc6ae3df2465b3f875", "fields": {"nom_de_la_commune": "CHATILLON SUR CLUSES", "libell_d_acheminement": "CHATILLON SUR CLUSES", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74064"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1f4b9bd1991b1bee30bff7cfe6d118034b71b4", "fields": {"nom_de_la_commune": "COMBLOUX", "libell_d_acheminement": "COMBLOUX", "code_postal": "74920", "coordonnees_gps": [45.8914249839, 6.63668541903], "code_commune_insee": "74083"}, "geometry": {"type": "Point", "coordinates": [6.63668541903, 45.8914249839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ae89a7f0980b689ee84364cb2c4c9b1264df843", "fields": {"nom_de_la_commune": "CONTAMINE SARZIN", "libell_d_acheminement": "CONTAMINE SARZIN", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74086"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2bf1a8265db72fa390bf1e4f366e6bb358bb4b1", "fields": {"nom_de_la_commune": "CORDON", "libell_d_acheminement": "CORDON", "code_postal": "74700", "coordonnees_gps": [45.935449139, 6.60325360691], "code_commune_insee": "74089"}, "geometry": {"type": "Point", "coordinates": [6.60325360691, 45.935449139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2e23c84175aa1b5e9ce8a6f62cf379e45b3d7a3", "fields": {"nom_de_la_commune": "CREMPIGNY BONNEGUETE", "libell_d_acheminement": "CREMPIGNY BONNEGUETE", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74095"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92df46ed22e621f798304d3a9fa55f1ce3be371f", "fields": {"nom_de_la_commune": "CUSY", "libell_d_acheminement": "CUSY", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74097"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1424b7d6cfe6361976ae6a048433ee6ced947fe0", "fields": {"nom_de_la_commune": "DINGY EN VUACHE", "libell_d_acheminement": "DINGY EN VUACHE", "code_postal": "74520", "coordonnees_gps": [46.0954746984, 5.95519147426], "code_commune_insee": "74101"}, "geometry": {"type": "Point", "coordinates": [5.95519147426, 46.0954746984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a6f5316030402343493efbb14152ee55e021478", "fields": {"nom_de_la_commune": "DRAILLANT", "libell_d_acheminement": "DRAILLANT", "code_postal": "74550", "coordonnees_gps": [46.2997626014, 6.46687107618], "code_commune_insee": "74106"}, "geometry": {"type": "Point", "coordinates": [6.46687107618, 46.2997626014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cfeef87cf6d3e9072ee6d95d9580604ffcc0d70", "fields": {"nom_de_la_commune": "EPAGNY METZ TESSY", "libell_d_acheminement": "EPAGNY METZ TESSY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74112"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c57ca49d5d509ab910fc2c6f40c85a64ec8043a", "fields": {"code_postal": "74370", "code_commune_insee": "74112", "libell_d_acheminement": "EPAGNY METZ TESSY", "ligne_5": "METZ TESSY", "nom_de_la_commune": "EPAGNY METZ TESSY", "coordonnees_gps": [45.9600301741, 6.15863714117]}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc2642bd743040f2d54924a2a0c491306c4a0d84", "fields": {"code_postal": "74100", "code_commune_insee": "74118", "libell_d_acheminement": "ETREMBIERES", "ligne_5": "PAS DE L ECHELLE", "nom_de_la_commune": "ETREMBIERES", "coordonnees_gps": [46.1886553142, 6.24703235488]}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1653b3f7c25a172d4cb633f4913ae591f2b7080f", "fields": {"nom_de_la_commune": "FEIGERES", "libell_d_acheminement": "FEIGERES", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74124"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "badd2d0c8f6a7e516708fec48aabac27f9a38779", "fields": {"nom_de_la_commune": "LE GRAND BORNAND", "libell_d_acheminement": "LE GRAND BORNAND", "code_postal": "74450", "coordonnees_gps": [45.9510244124, 6.46516169644], "code_commune_insee": "74136"}, "geometry": {"type": "Point", "coordinates": [6.46516169644, 45.9510244124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76f19c955b009a8507d993412a551de99a3f2070", "fields": {"nom_de_la_commune": "GRUFFY", "libell_d_acheminement": "GRUFFY", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74138"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fabf051351f2a44769c07b00239010c5f8e33e4", "fields": {"nom_de_la_commune": "MACHILLY", "libell_d_acheminement": "MACHILLY", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74158"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b996624bd1b1e07e3467d5d422df68260caa29dc", "fields": {"nom_de_la_commune": "MAGLAND", "libell_d_acheminement": "MAGLAND", "code_postal": "74300", "coordonnees_gps": [46.0342131745, 6.61842009953], "code_commune_insee": "74159"}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e61ae2666fbcc1cbb274efe890fdd8757ac36ef", "fields": {"code_postal": "74300", "code_commune_insee": "74159", "libell_d_acheminement": "MAGLAND", "ligne_5": "FLAINE", "nom_de_la_commune": "MAGLAND", "coordonnees_gps": [46.0342131745, 6.61842009953]}, "geometry": {"type": "Point", "coordinates": [6.61842009953, 46.0342131745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fbd11e63257f86bd04c0a8a317d43929c2926334", "fields": {"nom_de_la_commune": "MARIN", "libell_d_acheminement": "MARIN", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74166"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f629af538dbf96e3e941f6820f355b19f9b5de", "fields": {"code_postal": "74210", "code_commune_insee": "74167", "libell_d_acheminement": "VAL DE CHAISE", "ligne_5": "MARLENS", "nom_de_la_commune": "VAL DE CHAISE", "coordonnees_gps": [45.7728684273, 6.25852210813]}, "geometry": {"type": "Point", "coordinates": [6.25852210813, 45.7728684273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ec33ac980505a964d5ec8c9b06fe8689b4baa4", "fields": {"nom_de_la_commune": "MEGEVETTE", "libell_d_acheminement": "MEGEVETTE", "code_postal": "74490", "coordonnees_gps": [46.1756757633, 6.49134958977], "code_commune_insee": "74174"}, "geometry": {"type": "Point", "coordinates": [6.49134958977, 46.1756757633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9392c7816df48d31cc086c4ad676b8e4320ef1", "fields": {"nom_de_la_commune": "MEYTHET", "libell_d_acheminement": "MEYTHET", "code_postal": "74960", "coordonnees_gps": [45.9084676642, 6.09877501469], "code_commune_insee": "74182"}, "geometry": {"type": "Point", "coordinates": [6.09877501469, 45.9084676642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f096eb1d91198a07fc0bbf4a9dd7c9dd9c1d5e6a", "fields": {"nom_de_la_commune": "MONT SAXONNEX", "libell_d_acheminement": "MONT SAXONNEX", "code_postal": "74130", "coordonnees_gps": [46.0305459575, 6.41226596803], "code_commune_insee": "74189"}, "geometry": {"type": "Point", "coordinates": [6.41226596803, 46.0305459575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11eddffcfdeb7611139bf0451e7fb0cdaf31b084", "fields": {"nom_de_la_commune": "MOYE", "libell_d_acheminement": "MOYE", "code_postal": "74150", "coordonnees_gps": [45.8869887295, 5.94373659019], "code_commune_insee": "74192"}, "geometry": {"type": "Point", "coordinates": [5.94373659019, 45.8869887295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cadd0a58a4840d118948826b7d84892f2678ea16", "fields": {"nom_de_la_commune": "LA MURAZ", "libell_d_acheminement": "LA MURAZ", "code_postal": "74560", "coordonnees_gps": [46.1345324619, 6.20396278518], "code_commune_insee": "74193"}, "geometry": {"type": "Point", "coordinates": [6.20396278518, 46.1345324619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df8cce6f998f9169786b908a3b4a64200948ca98", "fields": {"nom_de_la_commune": "MURES", "libell_d_acheminement": "MURES", "code_postal": "74540", "coordonnees_gps": [45.7924567596, 6.03902152883], "code_commune_insee": "74194"}, "geometry": {"type": "Point", "coordinates": [6.03902152883, 45.7924567596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6541ea07e98e13ea97e0a4a886ef628e4d816437", "fields": {"code_postal": "74480", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "MARTEL DE JANVILLE", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "508aba702219afb8d8e514f63545423780da3d2d", "fields": {"code_postal": "74480", "code_commune_insee": "74208", "libell_d_acheminement": "PASSY", "ligne_5": "SANCELLEMOZ", "nom_de_la_commune": "PASSY", "coordonnees_gps": [45.9541023994, 6.74002173102]}, "geometry": {"type": "Point", "coordinates": [6.74002173102, 45.9541023994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bdce0c2346b671f303f32777f857bafc326f13f", "fields": {"nom_de_la_commune": "PERS JUSSY", "libell_d_acheminement": "PERS JUSSY", "code_postal": "74930", "coordonnees_gps": [46.1144620291, 6.25657495958], "code_commune_insee": "74211"}, "geometry": {"type": "Point", "coordinates": [6.25657495958, 46.1144620291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b90dcedd98adca67fe49fc35f5a20c637004043c", "fields": {"nom_de_la_commune": "POISY", "libell_d_acheminement": "POISY", "code_postal": "74330", "coordonnees_gps": [45.9569347655, 6.04448277364], "code_commune_insee": "74213"}, "geometry": {"type": "Point", "coordinates": [6.04448277364, 45.9569347655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096c63d9a4148f6e6068ebf4e4df084425c55791", "fields": {"nom_de_la_commune": "PRINGY", "libell_d_acheminement": "PRINGY", "code_postal": "74370", "coordonnees_gps": [45.9600301741, 6.15863714117], "code_commune_insee": "74217"}, "geometry": {"type": "Point", "coordinates": [6.15863714117, 45.9600301741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336c69ca4186a5a749b457079572116d11b22dc7", "fields": {"nom_de_la_commune": "PUBLIER", "libell_d_acheminement": "PUBLIER", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74218"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a92d3f0daf14b00e014430f27bfdb76d0fbadf50", "fields": {"code_postal": "74930", "code_commune_insee": "74220", "libell_d_acheminement": "REIGNIER ESERY", "ligne_5": "ESERY", "nom_de_la_commune": "REIGNIER ESERY", "coordonnees_gps": [46.1144620291, 6.25657495958]}, "geometry": {"type": "Point", "coordinates": [6.25657495958, 46.1144620291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf014d4c96327ab4551b2430d396c1da996cf69", "fields": {"nom_de_la_commune": "REYVROZ", "libell_d_acheminement": "REYVROZ", "code_postal": "74200", "coordonnees_gps": [46.3412678337, 6.50524347796], "code_commune_insee": "74222"}, "geometry": {"type": "Point", "coordinates": [6.50524347796, 46.3412678337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21c2b69f090548d7e8ce16daa0ae0d88f0c4ba29", "fields": {"nom_de_la_commune": "ST CERGUES", "libell_d_acheminement": "ST CERGUES", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74229"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5177b5c5690226cde64d9a9c61e4265618d8ae58", "fields": {"nom_de_la_commune": "ST EUSTACHE", "libell_d_acheminement": "ST EUSTACHE", "code_postal": "74410", "coordonnees_gps": [45.8038828434, 6.16031679135], "code_commune_insee": "74232"}, "geometry": {"type": "Point", "coordinates": [6.16031679135, 45.8038828434]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6da67685a64f7cafa9d0489f0773870441996ec7", "fields": {"nom_de_la_commune": "ST GERVAIS LES BAINS", "libell_d_acheminement": "ST GERVAIS LES BAINS", "code_postal": "74170", "coordonnees_gps": [45.8240346924, 6.73668125318], "code_commune_insee": "74236"}, "geometry": {"type": "Point", "coordinates": [6.73668125318, 45.8240346924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14dd8babf5aec3a702a64d32a780d18a09c99ab7", "fields": {"code_postal": "74170", "code_commune_insee": "74236", "libell_d_acheminement": "ST GERVAIS LES BAINS", "ligne_5": "LE FAYET", "nom_de_la_commune": "ST GERVAIS LES BAINS", "coordonnees_gps": [45.8240346924, 6.73668125318]}, "geometry": {"type": "Point", "coordinates": [6.73668125318, 45.8240346924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad99a302fd9970eec59ebe925de6159c339d69be", "fields": {"nom_de_la_commune": "ST JEAN D AULPS", "libell_d_acheminement": "ST JEAN D AULPS", "code_postal": "74430", "coordonnees_gps": [46.2473273724, 6.63608245857], "code_commune_insee": "74238"}, "geometry": {"type": "Point", "coordinates": [6.63608245857, 46.2473273724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2c87d076b41b2c6320cccffb107fe02b1151f5", "fields": {"nom_de_la_commune": "ST JEAN DE THOLOME", "libell_d_acheminement": "ST JEAN DE THOLOME", "code_postal": "74250", "coordonnees_gps": [46.1507902198, 6.4004953647], "code_commune_insee": "74240"}, "geometry": {"type": "Point", "coordinates": [6.4004953647, 46.1507902198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "955209d8e57df22a43149bf1855fe49a23d0e180", "fields": {"nom_de_la_commune": "ST JULIEN EN GENEVOIS", "libell_d_acheminement": "ST JULIEN EN GENEVOIS", "code_postal": "74160", "coordonnees_gps": [46.1148676836, 6.10447378554], "code_commune_insee": "74243"}, "geometry": {"type": "Point", "coordinates": [6.10447378554, 46.1148676836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "980f2a10d4c0974d40531697dc50131166f1bce3", "fields": {"code_postal": "74700", "code_commune_insee": "74256", "libell_d_acheminement": "SALLANCHES", "ligne_5": "ST ROCH", "nom_de_la_commune": "SALLANCHES", "coordonnees_gps": [45.935449139, 6.60325360691]}, "geometry": {"type": "Point", "coordinates": [6.60325360691, 45.935449139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b9386db3d82feb10fcc6ac70e7202a49ec1b1c1", "fields": {"nom_de_la_commune": "SCIENTRIER", "libell_d_acheminement": "SCIENTRIER", "code_postal": "74930", "coordonnees_gps": [46.1144620291, 6.25657495958], "code_commune_insee": "74262"}, "geometry": {"type": "Point", "coordinates": [6.25657495958, 46.1144620291]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2324eed20f5eafde7e8082298f4de339de0d5f93", "fields": {"nom_de_la_commune": "SEYSSEL", "libell_d_acheminement": "SEYSSEL", "code_postal": "74910", "coordonnees_gps": [46.0064819819, 5.83834131113], "code_commune_insee": "74269"}, "geometry": {"type": "Point", "coordinates": [5.83834131113, 46.0064819819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62a7c88690f1b2dab56f917ade4872c5e499d14e", "fields": {"nom_de_la_commune": "THOLLON LES MEMISES", "libell_d_acheminement": "THOLLON LES MEMISES", "code_postal": "74500", "coordonnees_gps": [46.3698657211, 6.65530659545], "code_commune_insee": "74279"}, "geometry": {"type": "Point", "coordinates": [6.65530659545, 46.3698657211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5375003b849c3af5aa378dd2d19d5bedb77f3c3", "fields": {"nom_de_la_commune": "USINENS", "libell_d_acheminement": "USINENS", "code_postal": "74910", "coordonnees_gps": [46.0064819819, 5.83834131113], "code_commune_insee": "74285"}, "geometry": {"type": "Point", "coordinates": [5.83834131113, 46.0064819819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0591c61562ad3e425c04cb6017ddd346cc678434", "fields": {"nom_de_la_commune": "VACHERESSE", "libell_d_acheminement": "VACHERESSE", "code_postal": "74360", "coordonnees_gps": [46.2907146867, 6.73957320561], "code_commune_insee": "74286"}, "geometry": {"type": "Point", "coordinates": [6.73957320561, 46.2907146867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22a4b5686bd8ed904bafb54cc54653902f54acf2", "fields": {"nom_de_la_commune": "VANZY", "libell_d_acheminement": "VANZY", "code_postal": "74270", "coordonnees_gps": [46.0202121912, 5.92961082013], "code_commune_insee": "74291"}, "geometry": {"type": "Point", "coordinates": [5.92961082013, 46.0202121912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43799f46bb41eda5c1976907c021ac6ad5555265", "fields": {"nom_de_la_commune": "VEIGY FONCENEX", "libell_d_acheminement": "VEIGY FONCENEX", "code_postal": "74140", "coordonnees_gps": [46.3015215277, 6.32063415065], "code_commune_insee": "74293"}, "geometry": {"type": "Point", "coordinates": [6.32063415065, 46.3015215277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fda02dcdc9fc62c37053088f912605559782231", "fields": {"nom_de_la_commune": "VEYRIER DU LAC", "libell_d_acheminement": "VEYRIER DU LAC", "code_postal": "74290", "coordonnees_gps": [45.8619270539, 6.21689519918], "code_commune_insee": "74299"}, "geometry": {"type": "Point", "coordinates": [6.21689519918, 45.8619270539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da262422cd4d94d8906353323bc6bb5f053a55d0", "fields": {"nom_de_la_commune": "VILLE LA GRAND", "libell_d_acheminement": "VILLE LA GRAND", "code_postal": "74100", "coordonnees_gps": [46.1886553142, 6.24703235488], "code_commune_insee": "74305"}, "geometry": {"type": "Point", "coordinates": [6.24703235488, 46.1886553142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3ab87d6e37221fb8acc914564bf06b0487741c8", "fields": {"nom_de_la_commune": "VILLY LE BOUVERET", "libell_d_acheminement": "VILLY LE BOUVERET", "code_postal": "74350", "coordonnees_gps": [46.0441260373, 6.10638974302], "code_commune_insee": "74306"}, "geometry": {"type": "Point", "coordinates": [6.10638974302, 46.0441260373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d54858c63fc17b481f54b2e03e5952dba42ebb9", "fields": {"nom_de_la_commune": "PARIS 04", "libell_d_acheminement": "PARIS", "code_postal": "75004", "coordonnees_gps": [48.8542262543, 2.35736312527], "code_commune_insee": "75104"}, "geometry": {"type": "Point", "coordinates": [2.35736312527, 48.8542262543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a1c86e38493f93472f50616ad1a584792213254", "fields": {"nom_de_la_commune": "PARIS 10", "libell_d_acheminement": "PARIS", "code_postal": "75010", "coordonnees_gps": [48.8759734307, 2.36068494701], "code_commune_insee": "75110"}, "geometry": {"type": "Point", "coordinates": [2.36068494701, 48.8759734307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc240767af5a63c3bf0fd181ef6a7e7795f5f105", "fields": {"nom_de_la_commune": "PARIS 17", "libell_d_acheminement": "PARIS", "code_postal": "75017", "coordonnees_gps": [48.8872660268, 2.30686780021], "code_commune_insee": "75117"}, "geometry": {"type": "Point", "coordinates": [2.30686780021, 48.8872660268]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1f072886594658e2fa3ea20edab6fd248f97815", "fields": {"nom_de_la_commune": "AMBRUMESNIL", "libell_d_acheminement": "AMBRUMESNIL", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76004"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "704af4f1196e5fdbf9149b48479e13bb7e6b3e90", "fields": {"nom_de_la_commune": "ANCEAUMEVILLE", "libell_d_acheminement": "ANCEAUMEVILLE", "code_postal": "76710", "coordonnees_gps": [49.5480184569, 1.08802152672], "code_commune_insee": "76007"}, "geometry": {"type": "Point", "coordinates": [1.08802152672, 49.5480184569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "894f64573302a2c7f9bb776062902ada61e68ec0", "fields": {"nom_de_la_commune": "AUMALE", "libell_d_acheminement": "AUMALE", "code_postal": "76390", "coordonnees_gps": [49.7548408917, 1.67360909964], "code_commune_insee": "76035"}, "geometry": {"type": "Point", "coordinates": [1.67360909964, 49.7548408917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ea27903bc3a10e1c10d78333145b56e5237bc10", "fields": {"nom_de_la_commune": "AUTRETOT", "libell_d_acheminement": "AUTRETOT", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76041"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a249d05dc8014d46b7c122ed74ff0d45509e7b1d", "fields": {"nom_de_la_commune": "AUVILLIERS", "libell_d_acheminement": "AUVILLIERS", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76042"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcba28087e22d91221f557a29d684e83fe357622", "fields": {"nom_de_la_commune": "AUZOUVILLE AUBERBOSC", "libell_d_acheminement": "AUZOUVILLE AUBERBOSC", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76044"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "954ba92a4f357c07c2f9c1c4f52b115ce067b1c8", "fields": {"nom_de_la_commune": "AUZOUVILLE L ESNEVAL", "libell_d_acheminement": "AUZOUVILLE L ESNEVAL", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76045"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2c21fd47e595603ff68cda76e67b6da60c64f63", "fields": {"nom_de_la_commune": "AVESNES EN VAL", "libell_d_acheminement": "AVESNES EN VAL", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76049"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb35b2680334370c3eab8768229d14ec88c27379", "fields": {"nom_de_la_commune": "BACQUEVILLE EN CAUX", "libell_d_acheminement": "BACQUEVILLE EN CAUX", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76051"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ee32004acbfb2aac58d733f6049f5a9bbbb1d5c", "fields": {"nom_de_la_commune": "BAILLY EN RIVIERE", "libell_d_acheminement": "BAILLY EN RIVIERE", "code_postal": "76630", "coordonnees_gps": [49.9057063551, 1.31395145931], "code_commune_insee": "76054"}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09ab3acd2a7c89da2c4eb0c406f02ff5bdff63cd", "fields": {"nom_de_la_commune": "BEAUVAL EN CAUX", "libell_d_acheminement": "BEAUVAL EN CAUX", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76063"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f57849a411e05077ba88b2ff1900ec3c770b52", "fields": {"nom_de_la_commune": "BEAUTOT", "libell_d_acheminement": "BEAUTOT", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76066"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12fd640c9d8478d91029ca92acf8e97517d76032", "fields": {"nom_de_la_commune": "LA BELLIERE", "libell_d_acheminement": "LA BELLIERE", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76074"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeed20eb049a0b731b457f29055ab42bb76a1363", "fields": {"nom_de_la_commune": "BERTRIMONT", "libell_d_acheminement": "BERTRIMONT", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76086"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98ac49382e3911875ed61c4cc771b0389f599e6e", "fields": {"nom_de_la_commune": "BIHOREL", "libell_d_acheminement": "BIHOREL", "code_postal": "76420", "coordonnees_gps": [49.4623061723, 1.1278900454], "code_commune_insee": "76095"}, "geometry": {"type": "Point", "coordinates": [1.1278900454, 49.4623061723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4afbe4d738b2150f3131f62be1d5125e5d10f79b", "fields": {"nom_de_la_commune": "BLOSSEVILLE", "libell_d_acheminement": "BLOSSEVILLE", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76104"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f6bdcf54068e18bbb3dafd023206c05643d9f16", "fields": {"nom_de_la_commune": "LE BOCASSE", "libell_d_acheminement": "LE BOCASSE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76105"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a75908305c340bc8d0cce9a8184fb11c65d171e", "fields": {"nom_de_la_commune": "BOIS L EVEQUE", "libell_d_acheminement": "BOIS L EVEQUE", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76111"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e39dad1a31a308f8d95fbdfd0f2628618d99a86", "fields": {"nom_de_la_commune": "BOISSAY", "libell_d_acheminement": "BOISSAY", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76113"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d491f5d83cebb35695f8847342ab0b67821cc8a8", "fields": {"nom_de_la_commune": "BOOS", "libell_d_acheminement": "BOOS", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76116"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f69b45279abc8fb484f8ca0c53cb7e477f104fb1", "fields": {"nom_de_la_commune": "BOSC EDELINE", "libell_d_acheminement": "BOSC EDELINE", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76121"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba07a5d88648d5a0a9a24641740d24a051d2103", "fields": {"nom_de_la_commune": "BOUDEVILLE", "libell_d_acheminement": "BOUDEVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76129"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede4fb301089253e9c1021472695c9c6e982efe7", "fields": {"nom_de_la_commune": "BREAUTE", "libell_d_acheminement": "BREAUTE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76141"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e2a481d8fa8d0da512b148d6aa4b4bca8be3367", "fields": {"nom_de_la_commune": "ROUHLING", "libell_d_acheminement": "ROUHLING", "code_postal": "57520", "coordonnees_gps": [49.1484421064, 7.01208667491], "code_commune_insee": "57598"}, "geometry": {"type": "Point", "coordinates": [7.01208667491, 49.1484421064]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa3113fc9e3196b7780a2836bc76ea83c51c0fe1", "fields": {"nom_de_la_commune": "SAILLY ACHATEL", "libell_d_acheminement": "SAILLY ACHATEL", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57605"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "befa3236023be18fa36d12960f091f5046635c43", "fields": {"nom_de_la_commune": "ST EPVRE", "libell_d_acheminement": "ST EPVRE", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57609"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99de00e5698a9f7bd14c3e805eaa7420c3087ac1", "fields": {"nom_de_la_commune": "ST FRANCOIS LACROIX", "libell_d_acheminement": "ST FRANCOIS LACROIX", "code_postal": "57320", "coordonnees_gps": [49.3089095522, 6.50754996103], "code_commune_insee": "57610"}, "geometry": {"type": "Point", "coordinates": [6.50754996103, 49.3089095522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a436505ed170018e85e25e6d7a6766e93b47b20", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57611"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "804b8e948a22f76e973679b16a4cf7c870036d1f", "fields": {"nom_de_la_commune": "ST JEAN DE BASSEL", "libell_d_acheminement": "ST JEAN DE BASSEL", "code_postal": "57930", "coordonnees_gps": [48.8282440547, 6.97722303236], "code_commune_insee": "57613"}, "geometry": {"type": "Point", "coordinates": [6.97722303236, 48.8282440547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5add09d3f0c05e83f025c53624a704d76bc5d5b2", "fields": {"nom_de_la_commune": "ST PRIVAT LA MONTAGNE", "libell_d_acheminement": "ST PRIVAT LA MONTAGNE", "code_postal": "57855", "coordonnees_gps": [49.1864102941, 6.04036362293], "code_commune_insee": "57622"}, "geometry": {"type": "Point", "coordinates": [6.04036362293, 49.1864102941]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07eec769bcd17a2523d1639eb96c0cdc3aff59f2", "fields": {"nom_de_la_commune": "SCHMITTVILLER", "libell_d_acheminement": "SCHMITTVILLER", "code_postal": "57412", "coordonnees_gps": [49.0305210047, 7.16958668406], "code_commune_insee": "57636"}, "geometry": {"type": "Point", "coordinates": [7.16958668406, 49.0305210047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3d029180cf2ae202f625a86bb084e302cfe3a7", "fields": {"nom_de_la_commune": "SCHNECKENBUSCH", "libell_d_acheminement": "SCHNECKENBUSCH", "code_postal": "57400", "coordonnees_gps": [48.7426088325, 7.03597274737], "code_commune_insee": "57637"}, "geometry": {"type": "Point", "coordinates": [7.03597274737, 48.7426088325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28631ad0287e0f270e41f6fc13bac24ec3dd3356", "fields": {"nom_de_la_commune": "SEINGBOUSE", "libell_d_acheminement": "SEINGBOUSE", "code_postal": "57455", "coordonnees_gps": [49.1084512886, 6.83139003658], "code_commune_insee": "57644"}, "geometry": {"type": "Point", "coordinates": [6.83139003658, 49.1084512886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36ed7bd8a0f74dd2ef8f433e4230d71400bbc1ec", "fields": {"nom_de_la_commune": "SILLEGNY", "libell_d_acheminement": "SILLEGNY", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57652"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b801f027e4f427a2ee07659b85a32499cb1b98d9", "fields": {"nom_de_la_commune": "SILLY EN SAULNOIS", "libell_d_acheminement": "SILLY EN SAULNOIS", "code_postal": "57420", "coordonnees_gps": [48.9869755262, 6.21040794882], "code_commune_insee": "57653"}, "geometry": {"type": "Point", "coordinates": [6.21040794882, 48.9869755262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df18782e9f440afd02e901f430f2d8f09c271a6e", "fields": {"nom_de_la_commune": "SORBEY", "libell_d_acheminement": "SORBEY", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57656"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac53fa32730e04780693849aec9d5043a2d24e47", "fields": {"nom_de_la_commune": "STIRING WENDEL", "libell_d_acheminement": "STIRING WENDEL", "code_postal": "57350", "coordonnees_gps": [49.2014476423, 6.94907800284], "code_commune_insee": "57660"}, "geometry": {"type": "Point", "coordinates": [6.94907800284, 49.2014476423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47053f1eeef6151eb7d8c045dd811b8c4d2fca28", "fields": {"code_postal": "57350", "code_commune_insee": "57660", "libell_d_acheminement": "STIRING WENDEL", "ligne_5": "HABSTERDICK", "nom_de_la_commune": "STIRING WENDEL", "coordonnees_gps": [49.2014476423, 6.94907800284]}, "geometry": {"type": "Point", "coordinates": [6.94907800284, 49.2014476423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "492c63adbbed9da12ff563d3930298279028beb5", "fields": {"nom_de_la_commune": "TALANGE", "libell_d_acheminement": "TALANGE", "code_postal": "57525", "coordonnees_gps": [49.2344881839, 6.17214593452], "code_commune_insee": "57663"}, "geometry": {"type": "Point", "coordinates": [6.17214593452, 49.2344881839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c8af69fbd8a6aa8903cb394ddfccd0fadc7ef9c", "fields": {"nom_de_la_commune": "TERVILLE", "libell_d_acheminement": "TERVILLE", "code_postal": "57180", "coordonnees_gps": [49.3465424928, 6.13266808067], "code_commune_insee": "57666"}, "geometry": {"type": "Point", "coordinates": [6.13266808067, 49.3465424928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdfe8eef618ca3097bd1f97a133d210b00dc7fe5", "fields": {"nom_de_la_commune": "THONVILLE", "libell_d_acheminement": "THONVILLE", "code_postal": "57380", "coordonnees_gps": [49.0163431022, 6.59197776669], "code_commune_insee": "57673"}, "geometry": {"type": "Point", "coordinates": [6.59197776669, 49.0163431022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d310e6d6fae82a487510af615342c29b35e142", "fields": {"nom_de_la_commune": "TRAGNY", "libell_d_acheminement": "TRAGNY", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57676"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af8daa6f73861aa9d528c09904b5d457eb011224", "fields": {"nom_de_la_commune": "TRITTELING REDLACH", "libell_d_acheminement": "TRITTELING REDLACH", "code_postal": "57385", "coordonnees_gps": [49.0669027987, 6.64766782853], "code_commune_insee": "57679"}, "geometry": {"type": "Point", "coordinates": [6.64766782853, 49.0669027987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2297cad66752552d1e92599fb6567f1494fb5b63", "fields": {"nom_de_la_commune": "TROISFONTAINES", "libell_d_acheminement": "TROISFONTAINES", "code_postal": "57870", "coordonnees_gps": [48.6442661172, 7.16634369748], "code_commune_insee": "57680"}, "geometry": {"type": "Point", "coordinates": [7.16634369748, 48.6442661172]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "587bce62b87aa42754749bbc550940b18ce0faea", "fields": {"nom_de_la_commune": "VAHL LES BENESTROFF", "libell_d_acheminement": "VAHL LES BENESTROFF", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57685"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "328fbffc26bff2af17d0e1cc82d303b78e8c9577", "fields": {"nom_de_la_commune": "VALMUNSTER", "libell_d_acheminement": "VALMUNSTER", "code_postal": "57220", "coordonnees_gps": [49.1841986175, 6.49591706201], "code_commune_insee": "57691"}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b81e01e3f527ba531af894ec572ca922790a625", "fields": {"nom_de_la_commune": "VANNECOURT", "libell_d_acheminement": "VANNECOURT", "code_postal": "57340", "coordonnees_gps": [48.9250105741, 6.6294141211], "code_commune_insee": "57692"}, "geometry": {"type": "Point", "coordinates": [6.6294141211, 48.9250105741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "796a722ec14e99bdbbe67d0dc71408dfd4ee081c", "fields": {"code_postal": "57220", "code_commune_insee": "57695", "libell_d_acheminement": "VARIZE", "ligne_5": "VAUDONCOURT", "nom_de_la_commune": "VARIZE", "coordonnees_gps": [49.1841986175, 6.49591706201]}, "geometry": {"type": "Point", "coordinates": [6.49591706201, 49.1841986175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ef0d93cda956f8d1b7332a0826e0245b3049318", "fields": {"nom_de_la_commune": "VAUX", "libell_d_acheminement": "VAUX", "code_postal": "57130", "coordonnees_gps": [49.0926058282, 6.02256649302], "code_commune_insee": "57701"}, "geometry": {"type": "Point", "coordinates": [6.02256649302, 49.0926058282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ca1c66477f3ca37eae0c3524164faf287c64fe", "fields": {"nom_de_la_commune": "VIBERSVILLER", "libell_d_acheminement": "VIBERSVILLER", "code_postal": "57670", "coordonnees_gps": [48.9138160053, 6.86340206578], "code_commune_insee": "57711"}, "geometry": {"type": "Point", "coordinates": [6.86340206578, 48.9138160053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82ff209fe8d761803672be59abfe582849d4762f", "fields": {"nom_de_la_commune": "VIC SUR SEILLE", "libell_d_acheminement": "VIC SUR SEILLE", "code_postal": "57630", "coordonnees_gps": [48.7720464776, 6.58794854277], "code_commune_insee": "57712"}, "geometry": {"type": "Point", "coordinates": [6.58794854277, 48.7720464776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fc881c69734b29c3518f86b93149787a7f7bfc1", "fields": {"nom_de_la_commune": "VILLERS STONCOURT", "libell_d_acheminement": "VILLERS STONCOURT", "code_postal": "57530", "coordonnees_gps": [49.0970109843, 6.37190964274], "code_commune_insee": "57718"}, "geometry": {"type": "Point", "coordinates": [6.37190964274, 49.0970109843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cab247fcea955f26403772a21ede7cd2395a933a", "fields": {"nom_de_la_commune": "VOIMHAUT", "libell_d_acheminement": "VOIMHAUT", "code_postal": "57580", "coordonnees_gps": [48.9946275503, 6.4127259483], "code_commune_insee": "57728"}, "geometry": {"type": "Point", "coordinates": [6.4127259483, 48.9946275503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ffbde1a7faf05507d5d43f647d28a04305d528b", "fields": {"nom_de_la_commune": "WALTEMBOURG", "libell_d_acheminement": "WALTEMBOURG", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57743"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad1f9ade7ad4271f5ad6c2a842723182345b4e7", "fields": {"nom_de_la_commune": "WOIPPY", "libell_d_acheminement": "WOIPPY", "code_postal": "57140", "coordonnees_gps": [49.1663107654, 6.13682025903], "code_commune_insee": "57751"}, "geometry": {"type": "Point", "coordinates": [6.13682025903, 49.1663107654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d55d0dad160dd2f0778f8aa5eba4ab1c2f8780d6", "fields": {"nom_de_la_commune": "WUISSE", "libell_d_acheminement": "WUISSE", "code_postal": "57170", "coordonnees_gps": [48.8272646435, 6.51547813008], "code_commune_insee": "57753"}, "geometry": {"type": "Point", "coordinates": [6.51547813008, 48.8272646435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8364d20f67e0a858824ec69df76f0d881dc13220", "fields": {"nom_de_la_commune": "XOUAXANGE", "libell_d_acheminement": "XOUAXANGE", "code_postal": "57830", "coordonnees_gps": [48.683859606, 6.93870692906], "code_commune_insee": "57756"}, "geometry": {"type": "Point", "coordinates": [6.93870692906, 48.683859606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85fc4a54b93d36d5f3a779a9cc30340db6b8d0e2", "fields": {"nom_de_la_commune": "ZILLING", "libell_d_acheminement": "ZILLING", "code_postal": "57370", "coordonnees_gps": [48.7889855572, 7.22238046846], "code_commune_insee": "57761"}, "geometry": {"type": "Point", "coordinates": [7.22238046846, 48.7889855572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a00c2ef1fdc6c19184dc447f1a463df8f590c24", "fields": {"nom_de_la_commune": "ZOMMANGE", "libell_d_acheminement": "ZOMMANGE", "code_postal": "57260", "coordonnees_gps": [48.8146613171, 6.75592004038], "code_commune_insee": "57763"}, "geometry": {"type": "Point", "coordinates": [6.75592004038, 48.8146613171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e1fc2d5b19d454f7f414fb1d00492764da54bd", "fields": {"nom_de_la_commune": "DIESEN", "libell_d_acheminement": "DIESEN", "code_postal": "57890", "coordonnees_gps": [49.1645840246, 6.6727973003], "code_commune_insee": "57765"}, "geometry": {"type": "Point", "coordinates": [6.6727973003, 49.1645840246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a609914cd2d1b7321566867dab7ad30b61afdd06", "fields": {"nom_de_la_commune": "ARBOURSE", "libell_d_acheminement": "ARBOURSE", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58009"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb1b506260c0e3a91c25b1224fb14d59b635a9b4", "fields": {"nom_de_la_commune": "ASNAN", "libell_d_acheminement": "ASNAN", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58015"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9321cd8afd14553961d0c7b8c3b0b3f83b19444b", "fields": {"nom_de_la_commune": "AUNAY EN BAZOIS", "libell_d_acheminement": "AUNAY EN BAZOIS", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58017"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1860f2481b30b004b0e43df11e8dbf1aa18c6013", "fields": {"nom_de_la_commune": "AZY LE VIF", "libell_d_acheminement": "AZY LE VIF", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58021"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a080fb317f65e253c34615f6e33632377ae8780", "fields": {"nom_de_la_commune": "BEARD", "libell_d_acheminement": "BEARD", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58025"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0affcb1869eebd1aa1b4532b9259cf32a484589", "fields": {"code_postal": "58420", "code_commune_insee": "58026", "libell_d_acheminement": "BEAULIEU", "ligne_5": "MICHAUGUES", "nom_de_la_commune": "BEAULIEU", "coordonnees_gps": [47.256904548, 3.52495199281]}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3df23bd01544ee927e1c29dada494083257b36", "fields": {"nom_de_la_commune": "BILLY CHEVANNES", "libell_d_acheminement": "BILLY CHEVANNES", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58031"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e10da25c5e87ede9d00b9a778000bdd61c18cfa2", "fields": {"nom_de_la_commune": "BITRY", "libell_d_acheminement": "BITRY", "code_postal": "58310", "coordonnees_gps": [47.5133822034, 3.08684545659], "code_commune_insee": "58033"}, "geometry": {"type": "Point", "coordinates": [3.08684545659, 47.5133822034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e755a8cca3ddb65c92deada3bdba043c10651ec4", "fields": {"nom_de_la_commune": "BLISMES", "libell_d_acheminement": "BLISMES", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58034"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c51ada5b059e992950815b8e74324b7a4c947af", "fields": {"nom_de_la_commune": "CHALAUX", "libell_d_acheminement": "CHALAUX", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58049"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0e48d472f66e383bc50d5f7e2f99fd17b0d1b9e", "fields": {"nom_de_la_commune": "CHALLEMENT", "libell_d_acheminement": "CHALLEMENT", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58050"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155a7ecbc8cd1bf7623b6cdbc70a166a607d6c6b", "fields": {"nom_de_la_commune": "CHALLUY", "libell_d_acheminement": "CHALLUY", "code_postal": "58000", "coordonnees_gps": [46.9644333624, 3.17459118159], "code_commune_insee": "58051"}, "geometry": {"type": "Point", "coordinates": [3.17459118159, 46.9644333624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f06ed5fbd5e83632f9f7659c019c3af56eb9bf09", "fields": {"nom_de_la_commune": "CHAMPLEMY", "libell_d_acheminement": "CHAMPLEMY", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58053"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "601ecb0679263e02d77e4400111a626c03382d60", "fields": {"nom_de_la_commune": "LA CHAPELLE ST ANDRE", "libell_d_acheminement": "LA CHAPELLE ST ANDRE", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58058"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ccbbe13d820aa7a0fe01e46a84fb689a94e8ef9", "fields": {"nom_de_la_commune": "CHATEAU CHINON CAMPAGNE", "libell_d_acheminement": "CHATEAU CHINON CAMPAGNE", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58063"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39f1fed999246e9f0ad7d067c67a39dc730747e2", "fields": {"nom_de_la_commune": "CHATEAUNEUF VAL DE BARGIS", "libell_d_acheminement": "CHATEAUNEUF VAL DE BARGIS", "code_postal": "58350", "coordonnees_gps": [47.2832096459, 3.2260914296], "code_commune_insee": "58064"}, "geometry": {"type": "Point", "coordinates": [3.2260914296, 47.2832096459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f909bf27ffc0dc6e972157bf3186235d725e9e6a", "fields": {"nom_de_la_commune": "CHAUMARD", "libell_d_acheminement": "CHAUMARD", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58068"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa232ef217db3a6f4c86c458f460f8c2b99f1e58", "fields": {"nom_de_la_commune": "CHEVANNES CHANGY", "libell_d_acheminement": "CHEVANNES CHANGY", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58071"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f07e08f699cb2b56995007a5b702c2b0a277252", "fields": {"nom_de_la_commune": "CORANCY", "libell_d_acheminement": "CORANCY", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58082"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5fe054910d87d72904f9bc53f5273f36a944d8", "fields": {"nom_de_la_commune": "COSSAYE", "libell_d_acheminement": "COSSAYE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58087"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d437b57d96b374d9c4741bda13abe6a75a07ea9e", "fields": {"nom_de_la_commune": "COULANGES LES NEVERS", "libell_d_acheminement": "COULANGES LES NEVERS", "code_postal": "58660", "coordonnees_gps": [47.0135723345, 3.19658804343], "code_commune_insee": "58088"}, "geometry": {"type": "Point", "coordinates": [3.19658804343, 47.0135723345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f176cee26bc534faf02078c4d095a0b92d1c4977", "fields": {"nom_de_la_commune": "COULOUTRE", "libell_d_acheminement": "COULOUTRE", "code_postal": "58220", "coordonnees_gps": [47.379682807, 3.15630792505], "code_commune_insee": "58089"}, "geometry": {"type": "Point", "coordinates": [3.15630792505, 47.379682807]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "833794e65085e15c2b0fd86be8537698b0e3940a", "fields": {"nom_de_la_commune": "DECIZE", "libell_d_acheminement": "DECIZE", "code_postal": "58300", "coordonnees_gps": [46.8005118917, 3.47666394687], "code_commune_insee": "58095"}, "geometry": {"type": "Point", "coordinates": [3.47666394687, 46.8005118917]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89499600d245eb3f83019e8d0408e15b7eab6885", "fields": {"nom_de_la_commune": "DRUY PARIGNY", "libell_d_acheminement": "DRUY PARIGNY", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58105"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "566e9bedff5d002770d8dafed7c44981357d76d0", "fields": {"nom_de_la_commune": "DUN SUR GRANDRY", "libell_d_acheminement": "DUN SUR GRANDRY", "code_postal": "58110", "coordonnees_gps": [47.0705293226, 3.65958996316], "code_commune_insee": "58107"}, "geometry": {"type": "Point", "coordinates": [3.65958996316, 47.0705293226]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd91082e78df8da355fdd134d3bd6ce5e08ed9d6", "fields": {"nom_de_la_commune": "FACHIN", "libell_d_acheminement": "FACHIN", "code_postal": "58430", "coordonnees_gps": [47.0330840616, 4.00599450154], "code_commune_insee": "58111"}, "geometry": {"type": "Point", "coordinates": [4.00599450154, 47.0330840616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49154a1e471de15b04358f798fcc0db368f2792b", "fields": {"nom_de_la_commune": "FLEURY SUR LOIRE", "libell_d_acheminement": "FLEURY SUR LOIRE", "code_postal": "58240", "coordonnees_gps": [46.7881740405, 3.18476198452], "code_commune_insee": "58115"}, "geometry": {"type": "Point", "coordinates": [3.18476198452, 46.7881740405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce03f544e983b76104c3021c9999558c24788331", "fields": {"nom_de_la_commune": "FLEZ CUZY", "libell_d_acheminement": "FLEZ CUZY", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58116"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54117d4ad7c4ede79685c4c8edc66a9374af02e2", "fields": {"nom_de_la_commune": "GIEN SUR CURE", "libell_d_acheminement": "GIEN SUR CURE", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58125"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc8bf4248bbe96d7c5fdc291e988d4022b70dee2", "fields": {"nom_de_la_commune": "GLUX EN GLENNE", "libell_d_acheminement": "GLUX EN GLENNE", "code_postal": "58370", "coordonnees_gps": [46.9308516747, 3.9664871714], "code_commune_insee": "58128"}, "geometry": {"type": "Point", "coordinates": [3.9664871714, 46.9308516747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73e9313d4f3b91d08d83d7fdecfac98046018e53", "fields": {"nom_de_la_commune": "GOULOUX", "libell_d_acheminement": "GOULOUX", "code_postal": "58230", "coordonnees_gps": [47.2108848273, 4.05888838547], "code_commune_insee": "58129"}, "geometry": {"type": "Point", "coordinates": [4.05888838547, 47.2108848273]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1055a077a05beef2422d731888776a66313f790a", "fields": {"nom_de_la_commune": "IMPHY", "libell_d_acheminement": "IMPHY", "code_postal": "58160", "coordonnees_gps": [46.9269219844, 3.29890842672], "code_commune_insee": "58134"}, "geometry": {"type": "Point", "coordinates": [3.29890842672, 46.9269219844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26cfd939c1d4487cb8320c80ea7ef4b527221aa", "fields": {"nom_de_la_commune": "JAILLY", "libell_d_acheminement": "JAILLY", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58136"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a276adf2edb36bf0ccc15a4b9f863d3f0bd3509f", "fields": {"nom_de_la_commune": "LIMON", "libell_d_acheminement": "LIMON", "code_postal": "58270", "coordonnees_gps": [46.9862997259, 3.44518675604], "code_commune_insee": "58143"}, "geometry": {"type": "Point", "coordinates": [3.44518675604, 46.9862997259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bb6840fb4c6fe777204292facf05a61b324ee90", "fields": {"nom_de_la_commune": "LA MAISON DIEU", "libell_d_acheminement": "LA MAISON DIEU", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58154"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6441100657bea7a53a33267fc7b21cd9c0ca3e9f", "fields": {"nom_de_la_commune": "MARCY", "libell_d_acheminement": "MARCY", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58156"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e9aa2ddced3740588225e60e583a48f8adc6915", "fields": {"nom_de_la_commune": "MARZY", "libell_d_acheminement": "MARZY", "code_postal": "58180", "coordonnees_gps": [46.984190932, 3.09279267873], "code_commune_insee": "58160"}, "geometry": {"type": "Point", "coordinates": [3.09279267873, 46.984190932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "801ead85069d84ae53c11396a1b5696aa5cbba35", "fields": {"nom_de_la_commune": "MESVES SUR LOIRE", "libell_d_acheminement": "MESVES SUR LOIRE", "code_postal": "58400", "coordonnees_gps": [47.1860137326, 3.07466302942], "code_commune_insee": "58164"}, "geometry": {"type": "Point", "coordinates": [3.07466302942, 47.1860137326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea264a47ab4d7c408ab96b1fffaa638aeab20eca", "fields": {"nom_de_la_commune": "MONTARON", "libell_d_acheminement": "MONTARON", "code_postal": "58250", "coordonnees_gps": [46.8026569095, 3.7623321984], "code_commune_insee": "58173"}, "geometry": {"type": "Point", "coordinates": [3.7623321984, 46.8026569095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e047e64705db0a64e7978545da98deb29d222b8", "fields": {"nom_de_la_commune": "MONTIGNY EN MORVAN", "libell_d_acheminement": "MONTIGNY EN MORVAN", "code_postal": "58120", "coordonnees_gps": [47.087191099, 3.89711083164], "code_commune_insee": "58177"}, "geometry": {"type": "Point", "coordinates": [3.89711083164, 47.087191099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a61e2f0eb7061306d39ff5c50c2e2d30423c3c1", "fields": {"nom_de_la_commune": "MORACHES", "libell_d_acheminement": "MORACHES", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58181"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0961b1fa934e2bbb4cc67c263b2a677bbf81fc3a", "fields": {"nom_de_la_commune": "MYENNES", "libell_d_acheminement": "MYENNES", "code_postal": "58440", "coordonnees_gps": [47.4771194845, 2.93695618494], "code_commune_insee": "58187"}, "geometry": {"type": "Point", "coordinates": [2.93695618494, 47.4771194845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ae1dcc11b8a9bf350b3a93233bed5076d78942c", "fields": {"nom_de_la_commune": "NEUILLY", "libell_d_acheminement": "NEUILLY", "code_postal": "58420", "coordonnees_gps": [47.256904548, 3.52495199281], "code_commune_insee": "58191"}, "geometry": {"type": "Point", "coordinates": [3.52495199281, 47.256904548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c00e0f09c286cb97b666e6e07eee6c5987c27287", "fields": {"nom_de_la_commune": "POUQUES LORMES", "libell_d_acheminement": "POUQUES LORMES", "code_postal": "58140", "coordonnees_gps": [47.2943135935, 3.87571630005], "code_commune_insee": "58216"}, "geometry": {"type": "Point", "coordinates": [3.87571630005, 47.2943135935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc12bbfdc0a00b0c69a81c5fc42c37b82683edcf", "fields": {"nom_de_la_commune": "RIX", "libell_d_acheminement": "RIX", "code_postal": "58500", "coordonnees_gps": [47.4641711809, 3.49201148604], "code_commune_insee": "58222"}, "geometry": {"type": "Point", "coordinates": [3.49201148604, 47.4641711809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f8d9cf98357d1f98328d4b82895e1b83aa02ff", "fields": {"nom_de_la_commune": "ST ANDELAIN", "libell_d_acheminement": "ST ANDELAIN", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58228"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e0c8c5ee769d5ba51f1ae7abcf03bfa253f3879", "fields": {"nom_de_la_commune": "ST AUBIN DES CHAUMES", "libell_d_acheminement": "ST AUBIN DES CHAUMES", "code_postal": "58190", "coordonnees_gps": [47.365847436, 3.66487564369], "code_commune_insee": "58230"}, "geometry": {"type": "Point", "coordinates": [3.66487564369, 47.365847436]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "427600b9c6a769cadd1ebb1b3619e801fd33abc4", "fields": {"nom_de_la_commune": "ST ELOI", "libell_d_acheminement": "ST ELOI", "code_postal": "58000", "coordonnees_gps": [46.9644333624, 3.17459118159], "code_commune_insee": "58238"}, "geometry": {"type": "Point", "coordinates": [3.17459118159, 46.9644333624]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f474085e402a8fe87c8bc634de23be068776847", "fields": {"nom_de_la_commune": "ST GERMAIN DES BOIS", "libell_d_acheminement": "ST GERMAIN DES BOIS", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58242"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e8c22ddbadc8437b5c4706aa1c089ec2a134273", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "58200", "coordonnees_gps": [47.4176980884, 2.99755366408], "code_commune_insee": "58251"}, "geometry": {"type": "Point", "coordinates": [2.99755366408, 47.4176980884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a54876482dc75654217f4bc9e94bb837c3c0de18", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58253"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48d0e06f04f7967721910aa265696e3333a36775", "fields": {"nom_de_la_commune": "ST MARTIN D HEUILLE", "libell_d_acheminement": "ST MARTIN D HEUILLE", "code_postal": "58130", "coordonnees_gps": [47.0823739881, 3.24223227428], "code_commune_insee": "58254"}, "geometry": {"type": "Point", "coordinates": [3.24223227428, 47.0823739881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa7c98ca38c7c81cfde9170659731d68db813d9a", "fields": {"nom_de_la_commune": "ST MARTIN SUR NOHAIN", "libell_d_acheminement": "ST MARTIN SUR NOHAIN", "code_postal": "58150", "coordonnees_gps": [47.3141169585, 3.01884186422], "code_commune_insee": "58256"}, "geometry": {"type": "Point", "coordinates": [3.01884186422, 47.3141169585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90a4c2d6486037324d6770f387159dacd7e827b1", "fields": {"nom_de_la_commune": "ST MAURICE", "libell_d_acheminement": "ST MAURICE", "code_postal": "58330", "coordonnees_gps": [47.1122527454, 3.48196346886], "code_commune_insee": "58257"}, "geometry": {"type": "Point", "coordinates": [3.48196346886, 47.1122527454]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37fdd638cde03d27e78c65c4f1dcb243ac198eef", "fields": {"nom_de_la_commune": "ST PERE", "libell_d_acheminement": "ST PERE", "code_postal": "58200", "coordonnees_gps": [47.4176980884, 2.99755366408], "code_commune_insee": "58261"}, "geometry": {"type": "Point", "coordinates": [2.99755366408, 47.4176980884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dcb6fb0d975840048fa700da88ad570750d68d9", "fields": {"nom_de_la_commune": "ST PIERRE DU MONT", "libell_d_acheminement": "ST PIERRE DU MONT", "code_postal": "58210", "coordonnees_gps": [47.3502128986, 3.38428913241], "code_commune_insee": "58263"}, "geometry": {"type": "Point", "coordinates": [3.38428913241, 47.3502128986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b69cbba1c0f7dde782cc7611d2c6ec32ea13c16", "fields": {"nom_de_la_commune": "CAMPUGNAN", "libell_d_acheminement": "CAMPUGNAN", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33089"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd9328951100f824caab0cd50d5cf86689f93773", "fields": {"nom_de_la_commune": "CANTOIS", "libell_d_acheminement": "CANTOIS", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33092"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96f19b4b6ca8da08ea0a04491097c62d6a71e0e3", "fields": {"nom_de_la_commune": "CAPIAN", "libell_d_acheminement": "CAPIAN", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33093"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc7a5c4808e33df8ba20fb153e5b73f43ab81464", "fields": {"nom_de_la_commune": "CARBON BLANC", "libell_d_acheminement": "CARBON BLANC", "code_postal": "33560", "coordonnees_gps": [44.9021503344, -0.484694308207], "code_commune_insee": "33096"}, "geometry": {"type": "Point", "coordinates": [-0.484694308207, 44.9021503344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3474b21d3d56e9be4ccdd9aa89e5b97c8d910bc6", "fields": {"nom_de_la_commune": "CARCANS", "libell_d_acheminement": "CARCANS", "code_postal": "33121", "coordonnees_gps": [45.0848035764, -1.04925222437], "code_commune_insee": "33097"}, "geometry": {"type": "Point", "coordinates": [-1.04925222437, 45.0848035764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dab70debd70ac0f6f19b6606d6ce38007ce7718b", "fields": {"nom_de_la_commune": "CAZALIS", "libell_d_acheminement": "CAZALIS", "code_postal": "33113", "coordonnees_gps": [44.4018539682, -0.484067531582], "code_commune_insee": "33115"}, "geometry": {"type": "Point", "coordinates": [-0.484067531582, 44.4018539682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1703b5d2234ab026d812cf1a519660de62df5c3f", "fields": {"code_postal": "33610", "code_commune_insee": "33122", "libell_d_acheminement": "CESTAS", "ligne_5": "GAZINET", "nom_de_la_commune": "CESTAS", "coordonnees_gps": [44.7278908774, -0.719193509806]}, "geometry": {"type": "Point", "coordinates": [-0.719193509806, 44.7278908774]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f79555e6b654abbc1734f3ffa855b80c818cb25", "fields": {"nom_de_la_commune": "GIVRY", "libell_d_acheminement": "GIVRY", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08193"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e7bbae28f3423d6ae45aa6824bdd659155572d0", "fields": {"nom_de_la_commune": "LAUNOIS SUR VENCE", "libell_d_acheminement": "LAUNOIS SUR VENCE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08248"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f969cecbab8916e2492b32bdeb52a7790b23b73", "fields": {"nom_de_la_commune": "JOIGNY SUR MEUSE", "libell_d_acheminement": "JOIGNY SUR MEUSE", "code_postal": "08700", "coordonnees_gps": [49.8150344171, 4.80706022542], "code_commune_insee": "08237"}, "geometry": {"type": "Point", "coordinates": [4.80706022542, 49.8150344171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f05d2e060099f6a23a7e1a9354e891af228c1647", "fields": {"nom_de_la_commune": "MARVAUX VIEUX", "libell_d_acheminement": "MARVAUX VIEUX", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08280"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb28858fcc8c5edd6e83435d40fb990f35239c7a", "fields": {"nom_de_la_commune": "JUNIVILLE", "libell_d_acheminement": "JUNIVILLE", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08239"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e219d1b163a697621cc484901548e3fd4c09f55e", "fields": {"nom_de_la_commune": "MARLEMONT", "libell_d_acheminement": "MARLEMONT", "code_postal": "08290", "coordonnees_gps": [49.7819854475, 4.29783858253], "code_commune_insee": "08277"}, "geometry": {"type": "Point", "coordinates": [4.29783858253, 49.7819854475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fca55caefdd28741231e5225b1d55c84b4c23fdc", "fields": {"nom_de_la_commune": "LA HORGNE", "libell_d_acheminement": "LA HORGNE", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08228"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d4b93083282619cad59ae5ece703308ae71e236", "fields": {"nom_de_la_commune": "MARGNY", "libell_d_acheminement": "MARGNY", "code_postal": "08370", "coordonnees_gps": [49.5990875721, 5.27880368483], "code_commune_insee": "08275"}, "geometry": {"type": "Point", "coordinates": [5.27880368483, 49.5990875721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cacc02e74ec1526503253d21529072c520607df0", "fields": {"nom_de_la_commune": "LAMETZ", "libell_d_acheminement": "LAMETZ", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08244"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c7f5738e216b48e065d5c28491454501b3d433", "fields": {"code_postal": "09000", "code_commune_insee": "09264", "libell_d_acheminement": "ST JEAN DE VERGES", "ligne_5": "VILLENEUVE DU BOSC", "nom_de_la_commune": "ST JEAN DE VERGES", "coordonnees_gps": [42.9514815414, 1.58076108382]}, "geometry": {"type": "Point", "coordinates": [1.58076108382, 42.9514815414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95cc88e8b5ded6d97756dc827faa6b5ba6b59de2", "fields": {"code_postal": "09400", "code_commune_insee": "09280", "libell_d_acheminement": "SAURAT", "ligne_5": "PRAT COMMUNAL", "nom_de_la_commune": "SAURAT", "coordonnees_gps": [42.8458484074, 1.57117119842]}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b037deb39c41049d59732900e15534f37592c892", "fields": {"nom_de_la_commune": "ST JEAN D AIGUES VIVES", "libell_d_acheminement": "ST JEAN D AIGUES VIVES", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09262"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03b4a6eb016aa2113c5d3b78f0be40041a23156", "fields": {"nom_de_la_commune": "ST MICHEL", "libell_d_acheminement": "ST MICHEL", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09271"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30502cf89e4c4c28c30c529dd53c362e979bc740", "fields": {"nom_de_la_commune": "ST QUIRC", "libell_d_acheminement": "ST QUIRC", "code_postal": "09700", "coordonnees_gps": [43.2096334802, 1.59552646997], "code_commune_insee": "09275"}, "geometry": {"type": "Point", "coordinates": [1.59552646997, 43.2096334802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51d087c9aeb583b9ad533b65f6233b7d5ab834bf", "fields": {"nom_de_la_commune": "ST GIRONS", "libell_d_acheminement": "ST GIRONS", "code_postal": "09200", "coordonnees_gps": [42.9618731428, 1.1680404037], "code_commune_insee": "09261"}, "geometry": {"type": "Point", "coordinates": [1.1680404037, 42.9618731428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25944881e20d30f5e17d6cb9af9565440c55c171", "fields": {"nom_de_la_commune": "SABARAT", "libell_d_acheminement": "SABARAT", "code_postal": "09350", "coordonnees_gps": [43.1379383387, 1.3126654208], "code_commune_insee": "09253"}, "geometry": {"type": "Point", "coordinates": [1.3126654208, 43.1379383387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f748ccd98480c96368b4d72ab6a0ff4bbede35af", "fields": {"nom_de_la_commune": "SAURAT", "libell_d_acheminement": "SAURAT", "code_postal": "09400", "coordonnees_gps": [42.8458484074, 1.57117119842], "code_commune_insee": "09280"}, "geometry": {"type": "Point", "coordinates": [1.57117119842, 42.8458484074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5844f4820e915ea706e171acec4fea257849587d", "fields": {"nom_de_la_commune": "SAUTEL", "libell_d_acheminement": "SAUTEL", "code_postal": "09300", "coordonnees_gps": [42.8998630058, 1.82670565712], "code_commune_insee": "09281"}, "geometry": {"type": "Point", "coordinates": [1.82670565712, 42.8998630058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8221dfb2c8c2921ec03a5f1901f99e3ecf527986", "fields": {"nom_de_la_commune": "SEGURA", "libell_d_acheminement": "SEGURA", "code_postal": "09120", "coordonnees_gps": [43.0413486613, 1.62931324426], "code_commune_insee": "09284"}, "geometry": {"type": "Point", "coordinates": [1.62931324426, 43.0413486613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7506635bbe63ef579aa17e2eb98d43b404a116ff", "fields": {"code_postal": "09140", "code_commune_insee": "09322", "libell_d_acheminement": "USTOU", "ligne_5": "TREIN D USTOU", "nom_de_la_commune": "USTOU", "coordonnees_gps": [42.7992501708, 1.2327189582]}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29192d419938afafdbb00a271428b3bbc4f059a3", "fields": {"nom_de_la_commune": "TAURIGNAN VIEUX", "libell_d_acheminement": "TAURIGNAN VIEUX", "code_postal": "09190", "coordonnees_gps": [43.0227616635, 1.12327682273], "code_commune_insee": "09308"}, "geometry": {"type": "Point", "coordinates": [1.12327682273, 43.0227616635]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0e5ad09a43c0abf4e5b56750af5afd1db04db8", "fields": {"nom_de_la_commune": "VILLENEUVE", "libell_d_acheminement": "VILLENEUVE", "code_postal": "09800", "coordonnees_gps": [42.8802373016, 0.976010210218], "code_commune_insee": "09335"}, "geometry": {"type": "Point", "coordinates": [0.976010210218, 42.8802373016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186e8c566be63ae811bb06056d2ca847ed8e4ba9", "fields": {"nom_de_la_commune": "AILLEVILLE", "libell_d_acheminement": "AILLEVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10002"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da4623e2b2db407ee1211811f0970c6a5ae75350", "fields": {"nom_de_la_commune": "VICDESSOS", "libell_d_acheminement": "VICDESSOS", "code_postal": "09220", "coordonnees_gps": [42.7223238727, 1.48359397931], "code_commune_insee": "09334"}, "geometry": {"type": "Point", "coordinates": [1.48359397931, 42.7223238727]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c906c49e118693b9230c6ddabc7b83a576650de", "fields": {"nom_de_la_commune": "VIVIES", "libell_d_acheminement": "VIVIES", "code_postal": "09500", "coordonnees_gps": [43.0872280591, 1.85370925426], "code_commune_insee": "09341"}, "geometry": {"type": "Point", "coordinates": [1.85370925426, 43.0872280591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7b42a873e46963da998a608375cc5046495cd4f", "fields": {"nom_de_la_commune": "UNZENT", "libell_d_acheminement": "UNZENT", "code_postal": "09100", "coordonnees_gps": [43.1247584786, 1.6039578252], "code_commune_insee": "09319"}, "geometry": {"type": "Point", "coordinates": [1.6039578252, 43.1247584786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5701550dcd3a0843a442128769d3ac1627655bf3", "fields": {"nom_de_la_commune": "VEBRE", "libell_d_acheminement": "VEBRE", "code_postal": "09310", "coordonnees_gps": [42.7095817459, 1.66641931204], "code_commune_insee": "09326"}, "geometry": {"type": "Point", "coordinates": [1.66641931204, 42.7095817459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c2ac6b8c5bae8f5767d0a0e865a72d496922106", "fields": {"nom_de_la_commune": "USTOU", "libell_d_acheminement": "USTOU", "code_postal": "09140", "coordonnees_gps": [42.7992501708, 1.2327189582], "code_commune_insee": "09322"}, "geometry": {"type": "Point", "coordinates": [1.2327189582, 42.7992501708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5836bbe5da7f2a051ba9fda340f6c6c0b7813549", "fields": {"code_postal": "10220", "code_commune_insee": "10019", "libell_d_acheminement": "VAL D AUZON", "ligne_5": "MONTANGON", "nom_de_la_commune": "VAL D AUZON", "coordonnees_gps": [48.3496514843, 4.3203044052]}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1098d76db8f338a4ee7cac0b7850d102d81ddae7", "fields": {"code_postal": "10400", "code_commune_insee": "10031", "libell_d_acheminement": "BARBUISE", "ligne_5": "COURTAVANT", "nom_de_la_commune": "BARBUISE", "coordonnees_gps": [48.4799726716, 3.5156539842]}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7b37e4e4006a62e9ff87ff7fda4afed10c02e0b", "fields": {"nom_de_la_commune": "AVON LA PEZE", "libell_d_acheminement": "AVON LA PEZE", "code_postal": "10290", "coordonnees_gps": [48.3522204669, 3.62637818754], "code_commune_insee": "10023"}, "geometry": {"type": "Point", "coordinates": [3.62637818754, 48.3522204669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b413287064e441c49310acb4e1c05993d94b7470", "fields": {"nom_de_la_commune": "ASSENCIERES", "libell_d_acheminement": "ASSENCIERES", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10014"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e2fd2bde2127630f1ed9e054689ee95e28dbabf", "fields": {"nom_de_la_commune": "VAL D AUZON", "libell_d_acheminement": "VAL D AUZON", "code_postal": "10220", "coordonnees_gps": [48.3496514843, 4.3203044052], "code_commune_insee": "10019"}, "geometry": {"type": "Point", "coordinates": [4.3203044052, 48.3496514843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bad64f307e4bd27eb0d1b226990eb9d664d8d2e", "fields": {"nom_de_la_commune": "BAROVILLE", "libell_d_acheminement": "BAROVILLE", "code_postal": "10200", "coordonnees_gps": [48.2425292795, 4.71148061919], "code_commune_insee": "10032"}, "geometry": {"type": "Point", "coordinates": [4.71148061919, 48.2425292795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e5fd6f0baaf760e4a9b76cee46d97c00331afb4", "fields": {"nom_de_la_commune": "ARRELLES", "libell_d_acheminement": "ARRELLES", "code_postal": "10340", "coordonnees_gps": [47.9929585912, 4.30782302551], "code_commune_insee": "10009"}, "geometry": {"type": "Point", "coordinates": [4.30782302551, 47.9929585912]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76f7453f36e4c29f7446c9889b7d1bb691269f62", "fields": {"nom_de_la_commune": "BARBUISE", "libell_d_acheminement": "BARBUISE", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10031"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0279d8bb3e367d1e793c50b512bbb7c1912c7a9", "fields": {"nom_de_la_commune": "AMANCE", "libell_d_acheminement": "AMANCE", "code_postal": "10140", "coordonnees_gps": [48.2443606803, 4.48006737892], "code_commune_insee": "10005"}, "geometry": {"type": "Point", "coordinates": [4.48006737892, 48.2443606803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc4b4e585529089a7154c9517f1c0b04a25cb6b5", "fields": {"nom_de_la_commune": "AUXON", "libell_d_acheminement": "AUXON", "code_postal": "10130", "coordonnees_gps": [48.0520003827, 3.93246550297], "code_commune_insee": "10018"}, "geometry": {"type": "Point", "coordinates": [3.93246550297, 48.0520003827]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e12138dbae0763d680a8c7dd781844062ce190c", "fields": {"code_postal": "10150", "code_commune_insee": "10084", "libell_d_acheminement": "CHARMONT SOUS BARBUISE", "ligne_5": "FONTAINE LUYERES", "nom_de_la_commune": "CHARMONT SOUS BARBUISE", "coordonnees_gps": [48.3962803897, 4.13703511392]}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e3f917a88be179167c962cd7f6313db4e8a4c75", "fields": {"nom_de_la_commune": "CHAUFFOUR LES BAILLY", "libell_d_acheminement": "CHAUFFOUR LES BAILLY", "code_postal": "10110", "coordonnees_gps": [48.1160220302, 4.43093259336], "code_commune_insee": "10092"}, "geometry": {"type": "Point", "coordinates": [4.43093259336, 48.1160220302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "508c180e40f8519bd1525c88880aa1b6f6618901", "fields": {"nom_de_la_commune": "CHASEREY", "libell_d_acheminement": "CHASEREY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10087"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15afdf108d007d3f7e31006499275072c5e100d7", "fields": {"nom_de_la_commune": "LE CHENE", "libell_d_acheminement": "LE CHENE", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10095"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bf763574f87ea58e5fe85baa58864fce39b9389", "fields": {"nom_de_la_commune": "CHENNEGY", "libell_d_acheminement": "CHENNEGY", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10096"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b6381cb35aa1092cbe0c6c325107b0d66fe4e3", "fields": {"nom_de_la_commune": "CORMOST", "libell_d_acheminement": "CORMOST", "code_postal": "10800", "coordonnees_gps": [48.2055801821, 4.1125140322], "code_commune_insee": "10104"}, "geometry": {"type": "Point", "coordinates": [4.1125140322, 48.2055801821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1e5d61d38dc81f304289f1f177a93795ba6d2ea", "fields": {"nom_de_la_commune": "CLEREY", "libell_d_acheminement": "CLEREY", "code_postal": "10390", "coordonnees_gps": [48.2168971056, 4.18018933938], "code_commune_insee": "10100"}, "geometry": {"type": "Point", "coordinates": [4.18018933938, 48.2168971056]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88340c98398143d57cf1a5990e82373ac51feecb", "fields": {"nom_de_la_commune": "CHAPPES", "libell_d_acheminement": "CHAPPES", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10083"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29f3c58d86edbcf1ac451985b3d7fdd130ebeea", "fields": {"nom_de_la_commune": "ETRELLES SUR AUBE", "libell_d_acheminement": "ETRELLES SUR AUBE", "code_postal": "10170", "coordonnees_gps": [48.4916267047, 3.93350100384], "code_commune_insee": "10144"}, "geometry": {"type": "Point", "coordinates": [3.93350100384, 48.4916267047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b84093597a673010e4e99f344294e53098e98d33", "fields": {"nom_de_la_commune": "DIERREY ST PIERRE", "libell_d_acheminement": "DIERREY ST PIERRE", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10125"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c0674a9bbdb9207997c4e864ebf508b073f097b", "fields": {"nom_de_la_commune": "FAYS LA CHAPELLE", "libell_d_acheminement": "FAYS LA CHAPELLE", "code_postal": "10320", "coordonnees_gps": [48.1632184055, 4.02059815423], "code_commune_insee": "10147"}, "geometry": {"type": "Point", "coordinates": [4.02059815423, 48.1632184055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "829381f67649aa996d519a717d37417cf09cb0b4", "fields": {"nom_de_la_commune": "DOMMARTIN LE COQ", "libell_d_acheminement": "DOMMARTIN LE COQ", "code_postal": "10240", "coordonnees_gps": [48.495152966, 4.31805671159], "code_commune_insee": "10127"}, "geometry": {"type": "Point", "coordinates": [4.31805671159, 48.495152966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "556ab1deff39923505a8fe22e0049d8724450637", "fields": {"nom_de_la_commune": "COUSSEGREY", "libell_d_acheminement": "COUSSEGREY", "code_postal": "10210", "coordonnees_gps": [48.0240420903, 4.12388886656], "code_commune_insee": "10112"}, "geometry": {"type": "Point", "coordinates": [4.12388886656, 48.0240420903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c17e8f2df20e7788fa7753472d9d2ad1dc679ae", "fields": {"nom_de_la_commune": "DIENVILLE", "libell_d_acheminement": "DIENVILLE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10123"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be03ad7d5889e1af63e5f55a87cf1f9aa9e56ca7", "fields": {"nom_de_la_commune": "COURTENOT", "libell_d_acheminement": "COURTENOT", "code_postal": "10260", "coordonnees_gps": [48.139145765, 4.23898035934], "code_commune_insee": "10109"}, "geometry": {"type": "Point", "coordinates": [4.23898035934, 48.139145765]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b581ed72350d3290c78ee7ef1ca0789780e2ee", "fields": {"nom_de_la_commune": "CRANCEY", "libell_d_acheminement": "CRANCEY", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10114"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bb85f90eef6f1c7ffa40ea28b25c0ab96ab48b5", "fields": {"nom_de_la_commune": "EPAGNE", "libell_d_acheminement": "EPAGNE", "code_postal": "10500", "coordonnees_gps": [48.4013286019, 4.53410660747], "code_commune_insee": "10138"}, "geometry": {"type": "Point", "coordinates": [4.53410660747, 48.4013286019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c4d3e87110150e24716e823517e52d03153d79", "fields": {"nom_de_la_commune": "DOSNON", "libell_d_acheminement": "DOSNON", "code_postal": "10700", "coordonnees_gps": [48.5834551294, 4.16090274297], "code_commune_insee": "10130"}, "geometry": {"type": "Point", "coordinates": [4.16090274297, 48.5834551294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f7bb38d4218790051d8e33d64d7d3154149fb0", "fields": {"code_postal": "10400", "code_commune_insee": "10148", "libell_d_acheminement": "FERREUX QUINCEY", "ligne_5": "QUINCEY", "nom_de_la_commune": "FERREUX QUINCEY", "coordonnees_gps": [48.4799726716, 3.5156539842]}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0b28eb6673a99e3573b9a33b1914ac5642b6d1f", "fields": {"nom_de_la_commune": "FERREUX QUINCEY", "libell_d_acheminement": "FERREUX QUINCEY", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10148"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d6edb803717817f00261a6324f2ac943757fb58", "fields": {"nom_de_la_commune": "GYE SUR SEINE", "libell_d_acheminement": "GYE SUR SEINE", "code_postal": "10250", "coordonnees_gps": [48.0053306806, 4.46269020196], "code_commune_insee": "10170"}, "geometry": {"type": "Point", "coordinates": [4.46269020196, 48.0053306806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2a4004800027d68d9c69fe2551f3d150db7f1a6", "fields": {"nom_de_la_commune": "FONTVANNES", "libell_d_acheminement": "FONTVANNES", "code_postal": "10190", "coordonnees_gps": [48.249510935, 3.83670117751], "code_commune_insee": "10156"}, "geometry": {"type": "Point", "coordinates": [3.83670117751, 48.249510935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbf217248c6b63d4c36a0ab48d77274c92ffd5c1", "fields": {"nom_de_la_commune": "GELANNES", "libell_d_acheminement": "GELANNES", "code_postal": "10100", "coordonnees_gps": [48.4790813047, 3.69122724058], "code_commune_insee": "10164"}, "geometry": {"type": "Point", "coordinates": [3.69122724058, 48.4790813047]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38daf6c515aa7dccb5bbb3c5937ba1b14d484d13", "fields": {"nom_de_la_commune": "FEUGES", "libell_d_acheminement": "FEUGES", "code_postal": "10150", "coordonnees_gps": [48.3962803897, 4.13703511392], "code_commune_insee": "10149"}, "geometry": {"type": "Point", "coordinates": [4.13703511392, 48.3962803897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8438bc8e5e0d81760df17a70c4899d291bf527b5", "fields": {"nom_de_la_commune": "GUMERY", "libell_d_acheminement": "GUMERY", "code_postal": "10400", "coordonnees_gps": [48.4799726716, 3.5156539842], "code_commune_insee": "10169"}, "geometry": {"type": "Point", "coordinates": [3.5156539842, 48.4799726716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e3ec107b24b7ca5dc7c57d933e20589e6ff6fcd", "fields": {"nom_de_la_commune": "ST CLOUD", "libell_d_acheminement": "ST CLOUD", "code_postal": "92210", "coordonnees_gps": [48.8429394128, 2.2083054219], "code_commune_insee": "92064"}, "geometry": {"type": "Point", "coordinates": [2.2083054219, 48.8429394128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37701c68b3bb3884fe961d3fd3cd795f97dda8c0", "fields": {"nom_de_la_commune": "VANVES", "libell_d_acheminement": "VANVES", "code_postal": "92170", "coordonnees_gps": [48.8217649306, 2.28743996329], "code_commune_insee": "92075"}, "geometry": {"type": "Point", "coordinates": [2.28743996329, 48.8217649306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c6d023dc0bb9b6b648211e1621d2db19411eda", "fields": {"nom_de_la_commune": "L ILE ST DENIS", "libell_d_acheminement": "L ILE ST DENIS", "code_postal": "93450", "coordonnees_gps": [48.9374451959, 2.32575278947], "code_commune_insee": "93039"}, "geometry": {"type": "Point", "coordinates": [2.32575278947, 48.9374451959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e90b4726f302e29f301020de87528ff7132a64f", "fields": {"nom_de_la_commune": "LIVRY GARGAN", "libell_d_acheminement": "LIVRY GARGAN", "code_postal": "93190", "coordonnees_gps": [48.9202959655, 2.53498349051], "code_commune_insee": "93046"}, "geometry": {"type": "Point", "coordinates": [2.53498349051, 48.9202959655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd3020c1780615ed2da7322f0e0e1cb2394c4cf9", "fields": {"nom_de_la_commune": "NOISY LE GRAND", "libell_d_acheminement": "NOISY LE GRAND", "code_postal": "93160", "coordonnees_gps": [48.8359828216, 2.56524933143], "code_commune_insee": "93051"}, "geometry": {"type": "Point", "coordinates": [2.56524933143, 48.8359828216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2aca5054661471331f19090279f8ca4563ff6a5e", "fields": {"code_postal": "93210", "code_commune_insee": "93066", "libell_d_acheminement": "ST DENIS", "ligne_5": "LA PLAINE ST DENIS", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [48.9296140653, 2.35920270384]}, "geometry": {"type": "Point", "coordinates": [2.35920270384, 48.9296140653]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40498b205d4127d31a39f07e7848daa117c8c5b0", "fields": {"nom_de_la_commune": "SEVRAN", "libell_d_acheminement": "SEVRAN", "code_postal": "93270", "coordonnees_gps": [48.939044766, 2.53067518881], "code_commune_insee": "93071"}, "geometry": {"type": "Point", "coordinates": [2.53067518881, 48.939044766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35bd60549b9fc1c0b29622020b02825a83867e88", "fields": {"nom_de_la_commune": "ALFORTVILLE", "libell_d_acheminement": "ALFORTVILLE", "code_postal": "94140", "coordonnees_gps": [48.7961692844, 2.42129188527], "code_commune_insee": "94002"}, "geometry": {"type": "Point", "coordinates": [2.42129188527, 48.7961692844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d8b93e510d023a37497941627c49840a2156ad4", "fields": {"nom_de_la_commune": "JOINVILLE LE PONT", "libell_d_acheminement": "JOINVILLE LE PONT", "code_postal": "94340", "coordonnees_gps": [48.8194565588, 2.47055350311], "code_commune_insee": "94042"}, "geometry": {"type": "Point", "coordinates": [2.47055350311, 48.8194565588]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e678839b6e78a06348600a03d0e58ad287604849", "fields": {"nom_de_la_commune": "LE KREMLIN BICETRE", "libell_d_acheminement": "LE KREMLIN BICETRE", "code_postal": "94270", "coordonnees_gps": [48.8088832334, 2.35629106776], "code_commune_insee": "94043"}, "geometry": {"type": "Point", "coordinates": [2.35629106776, 48.8088832334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51f36a1aa73747fbd4c337e7ca1158d972f41135", "fields": {"nom_de_la_commune": "LIMEIL BREVANNES", "libell_d_acheminement": "LIMEIL BREVANNES", "code_postal": "94450", "coordonnees_gps": [48.7454489962, 2.48939333385], "code_commune_insee": "94044"}, "geometry": {"type": "Point", "coordinates": [2.48939333385, 48.7454489962]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a095019f8ee329fa7003a5f4b39d803400d2d55", "fields": {"nom_de_la_commune": "NOGENT SUR MARNE", "libell_d_acheminement": "NOGENT SUR MARNE", "code_postal": "94130", "coordonnees_gps": [48.8364035754, 2.4820398446], "code_commune_insee": "94052"}, "geometry": {"type": "Point", "coordinates": [2.4820398446, 48.8364035754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b2c3eb514a43c965bb99b57c39c8866aa998684", "fields": {"nom_de_la_commune": "NOISEAU", "libell_d_acheminement": "NOISEAU", "code_postal": "94880", "coordonnees_gps": [48.7742764728, 2.55417449488], "code_commune_insee": "94053"}, "geometry": {"type": "Point", "coordinates": [2.55417449488, 48.7742764728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60478bf7bade4bc1c68f4a8321706e66eef9cb53", "fields": {"nom_de_la_commune": "ORMESSON SUR MARNE", "libell_d_acheminement": "ORMESSON SUR MARNE", "code_postal": "94490", "coordonnees_gps": [48.785408155, 2.53852149199], "code_commune_insee": "94055"}, "geometry": {"type": "Point", "coordinates": [2.53852149199, 48.785408155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef85c5d4902ebcdc7d520c349ce2f84310d6d05d", "fields": {"nom_de_la_commune": "AINCOURT", "libell_d_acheminement": "AINCOURT", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95008"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d353451260073107e39e5fcbe2895eccde5cdedd", "fields": {"nom_de_la_commune": "AUVERS SUR OISE", "libell_d_acheminement": "AUVERS SUR OISE", "code_postal": "95430", "coordonnees_gps": [49.0811077214, 2.16105485374], "code_commune_insee": "95039"}, "geometry": {"type": "Point", "coordinates": [2.16105485374, 49.0811077214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79e1665ac4ce5d550469bf027ae6f458c9f36f48", "fields": {"nom_de_la_commune": "BESSANCOURT", "libell_d_acheminement": "BESSANCOURT", "code_postal": "95550", "coordonnees_gps": [49.0374755181, 2.19888886036], "code_commune_insee": "95060"}, "geometry": {"type": "Point", "coordinates": [2.19888886036, 49.0374755181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d06bcefefcc0dccf938edb5d8dc395749da64a4c", "fields": {"nom_de_la_commune": "BONNEUIL EN FRANCE", "libell_d_acheminement": "BONNEUIL EN FRANCE", "code_postal": "95500", "coordonnees_gps": [48.9856270002, 2.45534121324], "code_commune_insee": "95088"}, "geometry": {"type": "Point", "coordinates": [2.45534121324, 48.9856270002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3defe0f424ffd871f52e32989223344328878aaf", "fields": {"nom_de_la_commune": "BOUFFEMONT", "libell_d_acheminement": "BOUFFEMONT", "code_postal": "95570", "coordonnees_gps": [49.0548701683, 2.33369100298], "code_commune_insee": "95091"}, "geometry": {"type": "Point", "coordinates": [2.33369100298, 49.0548701683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "945ffb0ec9c65b3e33789f29dca08d0f742bd76f", "fields": {"nom_de_la_commune": "BOUQUEVAL", "libell_d_acheminement": "BOUQUEVAL", "code_postal": "95720", "coordonnees_gps": [49.0481825162, 2.40282933292], "code_commune_insee": "95094"}, "geometry": {"type": "Point", "coordinates": [2.40282933292, 49.0481825162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebc7efaf3b94d16cdc921502e93a5b2d271f3f2c", "fields": {"nom_de_la_commune": "BRIGNANCOURT", "libell_d_acheminement": "BRIGNANCOURT", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95110"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e7b9a3dbcdc307b1cde86f807697709fd6afd9a", "fields": {"nom_de_la_commune": "CERGY", "libell_d_acheminement": "CERGY", "code_postal": "95800", "coordonnees_gps": [49.0404241863, 2.0356184662], "code_commune_insee": "95127"}, "geometry": {"type": "Point", "coordinates": [2.0356184662, 49.0404241863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3f2911000cd78482c34a88a0d312eab92dc0589", "fields": {"nom_de_la_commune": "CHARMONT", "libell_d_acheminement": "CHARMONT", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95141"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71dadb43843a14932c9e465ce96c659f33088475", "fields": {"nom_de_la_commune": "CHATENAY EN FRANCE", "libell_d_acheminement": "CHATENAY EN FRANCE", "code_postal": "95190", "coordonnees_gps": [49.0402800937, 2.45734698588], "code_commune_insee": "95144"}, "geometry": {"type": "Point", "coordinates": [2.45734698588, 49.0402800937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29c77259fc01fc44eafdc218f5fc98442dad9ea3", "fields": {"nom_de_la_commune": "DEUIL LA BARRE", "libell_d_acheminement": "DEUIL LA BARRE", "code_postal": "95170", "coordonnees_gps": [48.9720784312, 2.32647855462], "code_commune_insee": "95197"}, "geometry": {"type": "Point", "coordinates": [2.32647855462, 48.9720784312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4c4523301a2dfd9ac4cdeb311aaf93bc43a301a", "fields": {"nom_de_la_commune": "ENGHIEN LES BAINS", "libell_d_acheminement": "ENGHIEN LES BAINS", "code_postal": "95880", "coordonnees_gps": [48.9698387143, 2.30410164938], "code_commune_insee": "95210"}, "geometry": {"type": "Point", "coordinates": [2.30410164938, 48.9698387143]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "031313dea47e7da33017246d7130c4f6c1909f6b", "fields": {"nom_de_la_commune": "EPIAIS LES LOUVRES", "libell_d_acheminement": "EPIAIS LES LOUVRES", "code_postal": "95380", "coordonnees_gps": [49.0485279227, 2.5187416869], "code_commune_insee": "95212"}, "geometry": {"type": "Point", "coordinates": [2.5187416869, 49.0485279227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "918dea4213f6061cb09f9a21dd5b5a7891893d23", "fields": {"nom_de_la_commune": "FRANCONVILLE", "libell_d_acheminement": "FRANCONVILLE LA GARENNE", "code_postal": "95130", "coordonnees_gps": [48.9926867479, 2.22747200568], "code_commune_insee": "95252"}, "geometry": {"type": "Point", "coordinates": [2.22747200568, 48.9926867479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce56a95e9ddb0f850a8902bdbd44b9bff51a9460", "fields": {"nom_de_la_commune": "FREMAINVILLE", "libell_d_acheminement": "FREMAINVILLE", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95253"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a8d670f23eea028c380e9d7d463818c501fa2e3", "fields": {"nom_de_la_commune": "GADANCOURT", "libell_d_acheminement": "GADANCOURT", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95259"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c4fed1d5450b55ee4962b665e5a8e423a731a22", "fields": {"nom_de_la_commune": "GARGES LES GONESSE", "libell_d_acheminement": "GARGES LES GONESSE", "code_postal": "95140", "coordonnees_gps": [48.9703086597, 2.40500499402], "code_commune_insee": "95268"}, "geometry": {"type": "Point", "coordinates": [2.40500499402, 48.9703086597]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77cbd32d7bf847e20a8a51d010f56ec05bc5c482", "fields": {"nom_de_la_commune": "GRISY LES PLATRES", "libell_d_acheminement": "GRISY LES PLATRES", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95287"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adaa241a743ae0fe8db8433a4206a944cfae021c", "fields": {"nom_de_la_commune": "LE HEAULME", "libell_d_acheminement": "LE HEAULME", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95303"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b2eba366f450954811ce4166d1d82f259e9c601", "fields": {"nom_de_la_commune": "HERBLAY", "libell_d_acheminement": "HERBLAY", "code_postal": "95220", "coordonnees_gps": [49.0082603783, 2.15434312371], "code_commune_insee": "95306"}, "geometry": {"type": "Point", "coordinates": [2.15434312371, 49.0082603783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13c6d306b5ce7580b79774802b99f585161f0c4d", "fields": {"code_postal": "95280", "code_commune_insee": "95323", "libell_d_acheminement": "JOUY LE MOUTIER", "ligne_5": "VINCOURT", "nom_de_la_commune": "JOUY LE MOUTIER", "coordonnees_gps": [49.0112311928, 2.03342738029]}, "geometry": {"type": "Point", "coordinates": [2.03342738029, 49.0112311928]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d71b5c20d0d719cc2cc6e3ae94dbb9514bc937", "fields": {"nom_de_la_commune": "LIVILLIERS", "libell_d_acheminement": "LIVILLIERS", "code_postal": "95300", "coordonnees_gps": [49.0835669403, 2.10696203629], "code_commune_insee": "95341"}, "geometry": {"type": "Point", "coordinates": [2.10696203629, 49.0835669403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e2326f88389768154ec56597506576dcf8516a9", "fields": {"nom_de_la_commune": "LUZARCHES", "libell_d_acheminement": "LUZARCHES", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95352"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "454048217322ce6d091fd3fb3c40685b47734ed4", "fields": {"nom_de_la_commune": "PIZAY", "libell_d_acheminement": "PIZAY", "code_postal": "01120", "coordonnees_gps": [45.8725197955, 5.04054729356], "code_commune_insee": "01297"}, "geometry": {"type": "Point", "coordinates": [5.04054729356, 45.8725197955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e76f784023ad8bdebdddd176fab3bef4e8b4189", "fields": {"nom_de_la_commune": "MONTMERLE SUR SAONE", "libell_d_acheminement": "MONTMERLE SUR SAONE", "code_postal": "01090", "coordonnees_gps": [46.0869886552, 4.79611073763], "code_commune_insee": "01263"}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e66c5ff2a13ca1e164ab082bad87419938125528", "fields": {"nom_de_la_commune": "NEUVILLE SUR AIN", "libell_d_acheminement": "NEUVILLE SUR AIN", "code_postal": "01160", "coordonnees_gps": [46.0747014809, 5.31394582841], "code_commune_insee": "01273"}, "geometry": {"type": "Point", "coordinates": [5.31394582841, 46.0747014809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9182777bd2ffc9622750ff95a5e694aabdb066f3", "fields": {"nom_de_la_commune": "LE MONTELLIER", "libell_d_acheminement": "LE MONTELLIER", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01260"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b738ed1871b56111f6703dfadd636f787fa9833", "fields": {"nom_de_la_commune": "MONTHIEUX", "libell_d_acheminement": "MONTHIEUX", "code_postal": "01390", "coordonnees_gps": [45.9283135136, 4.92727608131], "code_commune_insee": "01261"}, "geometry": {"type": "Point", "coordinates": [4.92727608131, 45.9283135136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17392e73fe18ba917ecf1878383d245f4355d755", "fields": {"nom_de_la_commune": "MONTRACOL", "libell_d_acheminement": "MONTRACOL", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01264"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93030d71ab7237b0c275a9bad511198015164f9a", "fields": {"nom_de_la_commune": "MONTAGNAT", "libell_d_acheminement": "MONTAGNAT", "code_postal": "01250", "coordonnees_gps": [46.2066710432, 5.38605889851], "code_commune_insee": "01254"}, "geometry": {"type": "Point", "coordinates": [5.38605889851, 46.2066710432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fb824d1981f868f9f3ec0208d5f5de8978c6ccc", "fields": {"nom_de_la_commune": "MARLIEUX", "libell_d_acheminement": "MARLIEUX", "code_postal": "01240", "coordonnees_gps": [46.0916655381, 5.14797548998], "code_commune_insee": "01235"}, "geometry": {"type": "Point", "coordinates": [5.14797548998, 46.0916655381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06db57878a2042412854b4ed0ea5051987f786f6", "fields": {"nom_de_la_commune": "MEZERIAT", "libell_d_acheminement": "MEZERIAT", "code_postal": "01660", "coordonnees_gps": [46.2212048437, 5.05767036024], "code_commune_insee": "01246"}, "geometry": {"type": "Point", "coordinates": [5.05767036024, 46.2212048437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4873f7beba1178f1fe9e686e199a9f59091ff608", "fields": {"nom_de_la_commune": "MAGNIEU", "libell_d_acheminement": "MAGNIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01227"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7dd2d533511556cab75ecaecade3f2405f7e056", "fields": {"nom_de_la_commune": "MARBOZ", "libell_d_acheminement": "MARBOZ", "code_postal": "01851", "coordonnees_gps": [46.3443305857, 5.24375404397], "code_commune_insee": "01232"}, "geometry": {"type": "Point", "coordinates": [5.24375404397, 46.3443305857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39f08ef70817b263e22dacb1b14b10b1411270e", "fields": {"nom_de_la_commune": "FRANCHELEINS", "libell_d_acheminement": "FRANCHELEINS", "code_postal": "01090", "coordonnees_gps": [46.0869886552, 4.79611073763], "code_commune_insee": "01165"}, "geometry": {"type": "Point", "coordinates": [4.79611073763, 46.0869886552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b33dcb610214f1de26eaa8b34621955a5435fca", "fields": {"nom_de_la_commune": "FARAMANS", "libell_d_acheminement": "FARAMANS", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01156"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "182055fb5aa190457ddaa7b78e4b8d3a4a1993b3", "fields": {"nom_de_la_commune": "CORBONOD", "libell_d_acheminement": "CORBONOD", "code_postal": "01420", "coordonnees_gps": [45.9853522838, 5.7838620591], "code_commune_insee": "01118"}, "geometry": {"type": "Point", "coordinates": [5.7838620591, 45.9853522838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af392575e815113b58c033d5a54ee650cfa47b37", "fields": {"nom_de_la_commune": "DOMSURE", "libell_d_acheminement": "DOMSURE", "code_postal": "01270", "coordonnees_gps": [46.3890219242, 5.30343220636], "code_commune_insee": "01147"}, "geometry": {"type": "Point", "coordinates": [5.30343220636, 46.3890219242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54908b094bf06c2a3229e5e2ee97066d34a8b0e6", "fields": {"nom_de_la_commune": "CROZET", "libell_d_acheminement": "CROZET", "code_postal": "01170", "coordonnees_gps": [46.3286268081, 6.03059799732], "code_commune_insee": "01135"}, "geometry": {"type": "Point", "coordinates": [6.03059799732, 46.3286268081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b315bd0edf8d9660a6ea442d0fe3d8474ba7b500", "fields": {"nom_de_la_commune": "FARGES", "libell_d_acheminement": "FARGES", "code_postal": "01550", "coordonnees_gps": [46.1521009626, 5.90976446888], "code_commune_insee": "01158"}, "geometry": {"type": "Point", "coordinates": [5.90976446888, 46.1521009626]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b72706ad410b199cd544d7b84f9ed7e729174d3", "fields": {"nom_de_la_commune": "CUZIEU", "libell_d_acheminement": "CUZIEU", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01141"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4353928244c4ff248866a770654776bf762105b9", "fields": {"nom_de_la_commune": "CROTTET", "libell_d_acheminement": "CROTTET", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01134"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a02eba80ca48b43231b49e6dd3e252029e0626e4", "fields": {"nom_de_la_commune": "CORMOZ", "libell_d_acheminement": "CORMOZ", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01124"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "323db03f12100a2a5ce6bf0dcc6c4bc47a15f891", "fields": {"nom_de_la_commune": "CONAND", "libell_d_acheminement": "CONAND", "code_postal": "01230", "coordonnees_gps": [45.9329292993, 5.4692328328], "code_commune_insee": "01111"}, "geometry": {"type": "Point", "coordinates": [5.4692328328, 45.9329292993]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70ec6f8c94cd30df6d34abdc15f63f84c362e02f", "fields": {"nom_de_la_commune": "VILLIEU LOYES MOLLON", "libell_d_acheminement": "VILLIEU LOYES MOLLON", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01450"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da53801703ad4b6406905d40bb83c20d647ca4b0", "fields": {"nom_de_la_commune": "VILLARS LES DOMBES", "libell_d_acheminement": "VILLARS LES DOMBES", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01443"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0a27f72cbd4a43d53af8d06304a052ce2668e17", "fields": {"nom_de_la_commune": "AUTREMENCOURT", "libell_d_acheminement": "AUTREMENCOURT", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02039"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "949af47097502c9f8bf8865113ad6947503d05b2", "fields": {"nom_de_la_commune": "AUTREPPES", "libell_d_acheminement": "AUTREPPES", "code_postal": "02580", "coordonnees_gps": [49.9024615408, 3.89676959472], "code_commune_insee": "02040"}, "geometry": {"type": "Point", "coordinates": [3.89676959472, 49.9024615408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1223440358f87282cbbdd14d115c62c3aaf07b69", "fields": {"nom_de_la_commune": "ST ETIENNE SUR CHALARONNE", "libell_d_acheminement": "ST ETIENNE SUR CHALARONNE", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01351"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba3634417ef82f7a72078bc7a47a67f801823bc0", "fields": {"nom_de_la_commune": "ST DIDIER SUR CHALARONNE", "libell_d_acheminement": "ST DIDIER SUR CHALARONNE", "code_postal": "01140", "coordonnees_gps": [46.1670266686, 4.8459954399], "code_commune_insee": "01348"}, "geometry": {"type": "Point", "coordinates": [4.8459954399, 46.1670266686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e35b99c196b96d0d56cddf7353b47a381dbde2", "fields": {"nom_de_la_commune": "ST JEAN SUR REYSSOUZE", "libell_d_acheminement": "ST JEAN SUR REYSSOUZE", "code_postal": "01560", "coordonnees_gps": [46.44295833, 5.12304891736], "code_commune_insee": "01364"}, "geometry": {"type": "Point", "coordinates": [5.12304891736, 46.44295833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "368ae02d74c3d672aa529c35f5293b4abbc3c99d", "fields": {"nom_de_la_commune": "ST DIDIER DE FORMANS", "libell_d_acheminement": "ST DIDIER DE FORMANS", "code_postal": "01600", "coordonnees_gps": [45.9478092043, 4.80583207499], "code_commune_insee": "01347"}, "geometry": {"type": "Point", "coordinates": [4.80583207499, 45.9478092043]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2357d5b57745270352de1f4501791575e1b0202d", "fields": {"nom_de_la_commune": "ST DENIS LES BOURG", "libell_d_acheminement": "ST DENIS LES BOURG", "code_postal": "01000", "coordonnees_gps": [46.2069478835, 5.22442559307], "code_commune_insee": "01344"}, "geometry": {"type": "Point", "coordinates": [5.22442559307, 46.2069478835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2357993108bb1ef38ec80db8e8fd5ba9be1d12e6", "fields": {"nom_de_la_commune": "ST ETIENNE DU BOIS", "libell_d_acheminement": "ST ETIENNE DU BOIS", "code_postal": "01370", "coordonnees_gps": [46.2853749129, 5.32614321781], "code_commune_insee": "01350"}, "geometry": {"type": "Point", "coordinates": [5.32614321781, 46.2853749129]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4595e45de0f9518e74f974651b08e12b4a832c3", "fields": {"nom_de_la_commune": "ST CYR SUR MENTHON", "libell_d_acheminement": "ST CYR SUR MENTHON", "code_postal": "01380", "coordonnees_gps": [46.3161847468, 4.97400450524], "code_commune_insee": "01343"}, "geometry": {"type": "Point", "coordinates": [4.97400450524, 46.3161847468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f06de31d5992036883757739239f3b5e0cbf8598", "fields": {"nom_de_la_commune": "RIGNIEUX LE FRANC", "libell_d_acheminement": "RIGNIEUX LE FRANC", "code_postal": "01800", "coordonnees_gps": [45.8984701804, 5.16340257624], "code_commune_insee": "01325"}, "geometry": {"type": "Point", "coordinates": [5.16340257624, 45.8984701804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eefc5129d650771455cb7ae2b023ef53559762f5", "fields": {"nom_de_la_commune": "ST GERMAIN DE JOUX", "libell_d_acheminement": "ST GERMAIN DE JOUX", "code_postal": "01130", "coordonnees_gps": [46.1948352393, 5.7148151411], "code_commune_insee": "01357"}, "geometry": {"type": "Point", "coordinates": [5.7148151411, 46.1948352393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df9d3b443e3284958cf54f0e8cd1bca5fe30600f", "fields": {"nom_de_la_commune": "ST GENIS POUILLY", "libell_d_acheminement": "ST GENIS POUILLY", "code_postal": "01630", "coordonnees_gps": [46.2145490709, 5.95816552297], "code_commune_insee": "01354"}, "geometry": {"type": "Point", "coordinates": [5.95816552297, 46.2145490709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f54ada3a7a3f84584bc1fde29b502e83bb6db45", "fields": {"nom_de_la_commune": "ST LAURENT SUR SAONE", "libell_d_acheminement": "ST LAURENT SUR SAONE", "code_postal": "01750", "coordonnees_gps": [46.2973437135, 4.87546330177], "code_commune_insee": "01370"}, "geometry": {"type": "Point", "coordinates": [4.87546330177, 46.2973437135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b989a29fdc665e7e1370800e278c6b989ae1d5a", "fields": {"nom_de_la_commune": "ST JEAN SUR VEYLE", "libell_d_acheminement": "ST JEAN SUR VEYLE", "code_postal": "01290", "coordonnees_gps": [46.2466681, 4.88543738301], "code_commune_insee": "01365"}, "geometry": {"type": "Point", "coordinates": [4.88543738301, 46.2466681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a87cf6cdb0e63dad4ad75bdc2a6e0a7f7dde4f18", "fields": {"nom_de_la_commune": "SAULT BRENAZ", "libell_d_acheminement": "SAULT BRENAZ", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01396"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c7a97a98164d1f8b117b17e84f6a8ccf5cc0af5", "fields": {"nom_de_la_commune": "SEILLONNAZ", "libell_d_acheminement": "SEILLONNAZ", "code_postal": "01470", "coordonnees_gps": [45.805864462, 5.47727707691], "code_commune_insee": "01400"}, "geometry": {"type": "Point", "coordinates": [5.47727707691, 45.805864462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "968e29d3eff0769eb62bbb9838b64d5c6ff144be", "fields": {"nom_de_la_commune": "SAVIGNEUX", "libell_d_acheminement": "SAVIGNEUX", "code_postal": "01480", "coordonnees_gps": [46.0178170669, 4.81482624573], "code_commune_insee": "01398"}, "geometry": {"type": "Point", "coordinates": [4.81482624573, 46.0178170669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4186ae0b0b5248939e6e82e61f96ad32d6b05d89", "fields": {"nom_de_la_commune": "ST VULBAS", "libell_d_acheminement": "ST VULBAS", "code_postal": "01150", "coordonnees_gps": [45.8772713832, 5.32595701713], "code_commune_insee": "01390"}, "geometry": {"type": "Point", "coordinates": [5.32595701713, 45.8772713832]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720397bb09fa221606ad318ad1869bcee1e1ed9b", "fields": {"nom_de_la_commune": "STE OLIVE", "libell_d_acheminement": "STE OLIVE", "code_postal": "01330", "coordonnees_gps": [45.9976909227, 5.02164504767], "code_commune_insee": "01382"}, "geometry": {"type": "Point", "coordinates": [5.02164504767, 45.9976909227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74fe7e58f24778ddc545487000e3e2f59f42a817", "fields": {"nom_de_la_commune": "SERMOYER", "libell_d_acheminement": "SERMOYER", "code_postal": "01190", "coordonnees_gps": [46.4316836316, 4.96424452785], "code_commune_insee": "01402"}, "geometry": {"type": "Point", "coordinates": [4.96424452785, 46.4316836316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "528d7bd3964cf4ef5ff7a14391812570c6ab7213", "fields": {"nom_de_la_commune": "ST REMY", "libell_d_acheminement": "ST REMY", "code_postal": "01310", "coordonnees_gps": [46.2412963633, 5.11553315012], "code_commune_insee": "01385"}, "geometry": {"type": "Point", "coordinates": [5.11553315012, 46.2412963633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6988d6fae184b1a79b51f64948b9f86113cc0f0f", "fields": {"nom_de_la_commune": "SEYSSEL", "libell_d_acheminement": "SEYSSEL", "code_postal": "01420", "coordonnees_gps": [45.9853522838, 5.7838620591], "code_commune_insee": "01407"}, "geometry": {"type": "Point", "coordinates": [5.7838620591, 45.9853522838]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82805979fb17a454cf59d899c5b6564a9c859945", "fields": {"nom_de_la_commune": "VIRIEU LE PETIT", "libell_d_acheminement": "VIRIEU LE PETIT", "code_postal": "01260", "coordonnees_gps": [45.9506630232, 5.68746147482], "code_commune_insee": "01453"}, "geometry": {"type": "Point", "coordinates": [5.68746147482, 45.9506630232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d264ebae4147a92e55d4250b670f24704261cfc", "fields": {"nom_de_la_commune": "ALAINCOURT", "libell_d_acheminement": "ALAINCOURT", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02009"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23a5a40b272d0d030853d746f012002654d7e381", "fields": {"nom_de_la_commune": "ABBECOURT", "libell_d_acheminement": "ABBECOURT", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02001"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7161510c97cc1e775b5f30358eee8cc1fec1b4", "fields": {"nom_de_la_commune": "ALLEMANT", "libell_d_acheminement": "ALLEMANT", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02010"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b7ee5848bf7ef67fbb7c7d0f2f0c51ee326bd6f", "fields": {"nom_de_la_commune": "VANDEINS", "libell_d_acheminement": "VANDEINS", "code_postal": "01660", "coordonnees_gps": [46.2212048437, 5.05767036024], "code_commune_insee": "01429"}, "geometry": {"type": "Point", "coordinates": [5.05767036024, 46.2212048437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaf0d0f4dfe0f49a8ea831365e981359b4ad0886", "fields": {"nom_de_la_commune": "VIRIGNIN", "libell_d_acheminement": "VIRIGNIN", "code_postal": "01300", "coordonnees_gps": [45.7328309975, 5.65715901636], "code_commune_insee": "01454"}, "geometry": {"type": "Point", "coordinates": [5.65715901636, 45.7328309975]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebdb8465733bb88253ca0f2d9818afb0bfba8c93", "fields": {"nom_de_la_commune": "ARTEMPS", "libell_d_acheminement": "ARTEMPS", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02025"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0e1a7c3f6a1bc5b2f5baf9a68320a968a65f90", "fields": {"nom_de_la_commune": "AMBLENY", "libell_d_acheminement": "AMBLENY", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02011"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09533b1e140163059a6271924faf264de35fe195", "fields": {"nom_de_la_commune": "AMBRIEF", "libell_d_acheminement": "AMBRIEF", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02012"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1a40a87b2cd6f8c4de155e8199adec4da37f4db", "fields": {"nom_de_la_commune": "ANNOIS", "libell_d_acheminement": "ANNOIS", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02019"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ede07b71afab2b43a33d1b4e1419ac79275cdca", "fields": {"code_postal": "02330", "code_commune_insee": "02053", "libell_d_acheminement": "VALLEES EN CHAMPAGNE", "ligne_5": "LA CHAPELLE MONTHODON", "nom_de_la_commune": "VALLEES EN CHAMPAGNE", "coordonnees_gps": [48.9761149923, 3.54081832468]}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cf36b8ec27a61d4aa3573d0703ef4edbbb5dbdd", "fields": {"code_postal": "02330", "code_commune_insee": "02053", "libell_d_acheminement": "VALLEES EN CHAMPAGNE", "ligne_5": "BAULNE EN BRIE", "nom_de_la_commune": "VALLEES EN CHAMPAGNE", "coordonnees_gps": [48.9761149923, 3.54081832468]}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16632287f99fd92c0d52a5bbc120892ea3a2b0a0", "fields": {"code_postal": "02330", "code_commune_insee": "02053", "libell_d_acheminement": "VALLEES EN CHAMPAGNE", "ligne_5": "ST AGNAN", "nom_de_la_commune": "VALLEES EN CHAMPAGNE", "coordonnees_gps": [48.9761149923, 3.54081832468]}, "geometry": {"type": "Point", "coordinates": [3.54081832468, 48.9761149923]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c117f90c861d9bf3886e0a0579f3338f21ec6967", "fields": {"nom_de_la_commune": "BARENTON SUR SERRE", "libell_d_acheminement": "BARENTON SUR SERRE", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02048"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19c74a1cdf6266623e374c1c3ee623858b0c87e3", "fields": {"nom_de_la_commune": "BARISIS AUX BOIS", "libell_d_acheminement": "BARISIS AUX BOIS", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02049"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d388995259b654ec28f46b9cf3d249c9528d2dd9", "fields": {"nom_de_la_commune": "BELLICOURT", "libell_d_acheminement": "BELLICOURT", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02065"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bb0528db7de88440582f5bb9ecaf439ebbb49a0", "fields": {"nom_de_la_commune": "BERTAUCOURT EPOURDON", "libell_d_acheminement": "BERTAUCOURT EPOURDON", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02074"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "946470573d89dd97798ba3d60c4aea3c900b4de7", "fields": {"nom_de_la_commune": "BERGUES SUR SAMBRE", "libell_d_acheminement": "BERGUES SUR SAMBRE", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02067"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14bab5af402cd9c9d00f84d549104a12735f7124", "fields": {"nom_de_la_commune": "BERTHENICOURT", "libell_d_acheminement": "BERTHENICOURT", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02075"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d34dc1bea2a26a9c39104e34d0bd24f68d03261c", "fields": {"nom_de_la_commune": "BERZY LE SEC", "libell_d_acheminement": "BERZY LE SEC", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02077"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "053377fed26547a25f1df6169f949d0f618e09d5", "fields": {"nom_de_la_commune": "BEZU LE GUERY", "libell_d_acheminement": "BEZU LE GUERY", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02084"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bb110785af6b1e1e40956409a92b752f57fe609", "fields": {"nom_de_la_commune": "BERRY AU BAC", "libell_d_acheminement": "BERRY AU BAC", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02073"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3d37ff038eed44833f5d58f4d2271c24e0c6230", "fields": {"nom_de_la_commune": "BEUGNEUX", "libell_d_acheminement": "BEUGNEUX", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02082"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a801e1562720e2742865d6773891501df2390c58", "fields": {"nom_de_la_commune": "BENAY", "libell_d_acheminement": "BENAY", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02066"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b02265cbee6447f8d9ab8d3bd95e155c9c0a6d", "fields": {"nom_de_la_commune": "BESME", "libell_d_acheminement": "BESME", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02078"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91ad644bf1d41e3d27256309db97973c6f76c392", "fields": {"nom_de_la_commune": "BONY", "libell_d_acheminement": "BONY", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02100"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720b00c2b4e2ddfc04cffa715e42132cd7d59a31", "fields": {"nom_de_la_commune": "BRISSAY CHOIGNY", "libell_d_acheminement": "BRISSAY CHOIGNY", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02123"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "870a3013498e06bdd764b25fbf0dc11f8e153376", "fields": {"nom_de_la_commune": "BUIRONFOSSE", "libell_d_acheminement": "BUIRONFOSSE", "code_postal": "02620", "coordonnees_gps": [49.9583862549, 3.83858463348], "code_commune_insee": "02135"}, "geometry": {"type": "Point", "coordinates": [3.83858463348, 49.9583862549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "918ba5e932f5022d5513be9fb46f02ef08151bb4", "fields": {"nom_de_la_commune": "BRUNEHAMEL", "libell_d_acheminement": "BRUNEHAMEL", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02126"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e77ae3aa3dba972717f49b964eafb2d9a6b05cc9", "fields": {"nom_de_la_commune": "LE CATELET", "libell_d_acheminement": "LE CATELET", "code_postal": "02420", "coordonnees_gps": [49.965313712, 3.25435934968], "code_commune_insee": "02143"}, "geometry": {"type": "Point", "coordinates": [3.25435934968, 49.965313712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2021b6a89f8328444c3c891dc16f5aa2416d04c3", "fields": {"nom_de_la_commune": "CESSIERES", "libell_d_acheminement": "CESSIERES", "code_postal": "02320", "coordonnees_gps": [49.5132435119, 3.44966195866], "code_commune_insee": "02153"}, "geometry": {"type": "Point", "coordinates": [3.44966195866, 49.5132435119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "462dc6864eea077116f94aef8457bfbc3ca1c234", "fields": {"nom_de_la_commune": "BUSSIARES", "libell_d_acheminement": "BUSSIARES", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02137"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "027bc51922706864fab1128c679c13de58f89544", "fields": {"nom_de_la_commune": "CHALANDRY", "libell_d_acheminement": "CHALANDRY", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02156"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6446827298d00f20c4974aa4b2739413f9059df", "fields": {"nom_de_la_commune": "BRASLES", "libell_d_acheminement": "BRASLES", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02114"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b3c147e4808e0539126a4fe0b39e43a213d80b6", "fields": {"nom_de_la_commune": "CERIZY", "libell_d_acheminement": "CERIZY", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02149"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fcb9e52f79b3bc2eccd5bc47ca2c4242258909b", "fields": {"nom_de_la_commune": "BRIE", "libell_d_acheminement": "BRIE", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02122"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02e3d78ab4a5bda7c84c70e562842e1720ad56ca", "fields": {"code_postal": "02130", "code_commune_insee": "02220", "libell_d_acheminement": "COULONGES COHAN", "ligne_5": "COHAN", "nom_de_la_commune": "COULONGES COHAN", "coordonnees_gps": [49.1935797302, 3.55982855371]}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6965723db86d1553df3026865ffbeac2a8f24a8b", "fields": {"nom_de_la_commune": "COUCY LE CHATEAU AUFFRIQUE", "libell_d_acheminement": "COUCY LE CHATEAU AUFFRIQUE", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02217"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b7aba3f1490d97fc91e6094518b78a28d1f3dc5", "fields": {"nom_de_la_commune": "COURTEMONT VARENNES", "libell_d_acheminement": "COURTEMONT VARENNES", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02228"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc59851e98b01932bb1b4dd0fcfc81f7ddfe0a3e", "fields": {"nom_de_la_commune": "COUCY LA VILLE", "libell_d_acheminement": "COUCY LA VILLE", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02219"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84adb5e9451ffce386bae8e9fe1548f896a1272d", "fields": {"nom_de_la_commune": "COURMELLES", "libell_d_acheminement": "COURMELLES", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02226"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f8bce6b9a2e8a6395af31656c6e55341c78d810", "fields": {"nom_de_la_commune": "COURBES", "libell_d_acheminement": "COURBES", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02222"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22f38ab88de19552803fb7f23e91534262189219", "fields": {"nom_de_la_commune": "CORCY", "libell_d_acheminement": "CORCY", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02216"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f822dad3421da3ac3c3a6a1a5d4dc87b56c0e58", "fields": {"nom_de_la_commune": "CROUTTES SUR MARNE", "libell_d_acheminement": "CROUTTES SUR MARNE", "code_postal": "02310", "coordonnees_gps": [48.9875725146, 3.27825135374], "code_commune_insee": "02242"}, "geometry": {"type": "Point", "coordinates": [3.27825135374, 48.9875725146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f5f247b8e87e9a7554b526d230419da70a6a900", "fields": {"nom_de_la_commune": "CUIRY LES IVIERS", "libell_d_acheminement": "CUIRY LES IVIERS", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02251"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c524171a0dc643af86fb7718c38883aa4b01ba7b", "fields": {"nom_de_la_commune": "CRECY AU MONT", "libell_d_acheminement": "CRECY AU MONT", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02236"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152deb2f791b4ec2343769fe0025c9c458393125", "fields": {"nom_de_la_commune": "CUIRY HOUSSE", "libell_d_acheminement": "CUIRY HOUSSE", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02249"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "514f4a22180ca00aff6ada86f5c01c76f45811f8", "fields": {"nom_de_la_commune": "COUVRELLES", "libell_d_acheminement": "COUVRELLES", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02230"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c43893f419cc36602a519841d41234a0a7130dde", "fields": {"nom_de_la_commune": "CREZANCY", "libell_d_acheminement": "CREZANCY", "code_postal": "02650", "coordonnees_gps": [49.0487416682, 3.50137456467], "code_commune_insee": "02239"}, "geometry": {"type": "Point", "coordinates": [3.50137456467, 49.0487416682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31088f01a3021ab9ef911fa472c344cd8044ba5", "fields": {"nom_de_la_commune": "CUFFIES", "libell_d_acheminement": "CUFFIES", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02245"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c56b244d94152e958942cf99ace0e5301dd4ad96", "fields": {"nom_de_la_commune": "DAMMARD", "libell_d_acheminement": "DAMMARD", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02258"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb4b1ff1148ec5a14f5abbc2675d6acace5f83d", "fields": {"nom_de_la_commune": "CREPY", "libell_d_acheminement": "CREPY", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02238"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec6bccd04ddf6708fa0cfe62549bb41227e057f8", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "VILLERS EN PRAYERES", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1509a90575994b3429a066ae7aab4ca7d6f6c70", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "REVILLON", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4cba8559ba08bdbc0e21670c41cb15550e036d", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "GLENNES", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a440fe729f8c8d6b592d7c3fad9c2abe421508ef", "fields": {"nom_de_la_commune": "LA JAUDONNIERE", "libell_d_acheminement": "LA JAUDONNIERE", "code_postal": "85110", "coordonnees_gps": [46.7036383964, -1.03264404466], "code_commune_insee": "85115"}, "geometry": {"type": "Point", "coordinates": [-1.03264404466, 46.7036383964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26ab41ca15fb5c1b8ccacce38954706a89772779", "fields": {"nom_de_la_commune": "LA JONCHERE", "libell_d_acheminement": "LA JONCHERE", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85116"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad4f6c2c334dd363d4b9de7dd32121d9d6408a1", "fields": {"nom_de_la_commune": "LANDERONDE", "libell_d_acheminement": "LANDERONDE", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85118"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40aeeef0d65033df61f9e0f95366a23035c8597a", "fields": {"nom_de_la_commune": "LES LANDES GENUSSON", "libell_d_acheminement": "LES LANDES GENUSSON", "code_postal": "85130", "coordonnees_gps": [46.9611825391, -1.05958442905], "code_commune_insee": "85119"}, "geometry": {"type": "Point", "coordinates": [-1.05958442905, 46.9611825391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c250fc475f8aeb1a2057ff5f1cc0606a6f46b5", "fields": {"nom_de_la_commune": "LONGEVES", "libell_d_acheminement": "LONGEVES", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85126"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "234af446606bedceb85f4bdcfd6b43a307b9bd91", "fields": {"nom_de_la_commune": "MARSAIS STE RADEGONDE", "libell_d_acheminement": "MARSAIS STE RADEGONDE", "code_postal": "85570", "coordonnees_gps": [46.5155310965, -0.917757791759], "code_commune_insee": "85137"}, "geometry": {"type": "Point", "coordinates": [-0.917757791759, 46.5155310965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ede80142fbca44908cf964bce5683083032d00", "fields": {"nom_de_la_commune": "MARTINET", "libell_d_acheminement": "MARTINET", "code_postal": "85150", "coordonnees_gps": [46.6075226689, -1.65716624427], "code_commune_insee": "85138"}, "geometry": {"type": "Point", "coordinates": [-1.65716624427, 46.6075226689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24569f60ec3881805973ed4f3084290976023e0a", "fields": {"nom_de_la_commune": "BASSEVELLE", "libell_d_acheminement": "BASSEVELLE", "code_postal": "77750", "coordonnees_gps": [48.9148071078, 3.22989278872], "code_commune_insee": "77024"}, "geometry": {"type": "Point", "coordinates": [3.22989278872, 48.9148071078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ec5a6e42d41aa5e70e50e6292665bfa644dd5c", "fields": {"nom_de_la_commune": "BELLOT", "libell_d_acheminement": "BELLOT", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77030"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6d01c9c5f94526c043f255481bfbbc2b1f6102f", "fields": {"nom_de_la_commune": "BOULANCOURT", "libell_d_acheminement": "BOULANCOURT", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77046"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c9e980ef0c550e4145798427926f05612d4a5a4", "fields": {"nom_de_la_commune": "BUSSY ST GEORGES", "libell_d_acheminement": "BUSSY ST GEORGES", "code_postal": "77600", "coordonnees_gps": [48.8361794738, 2.73226890342], "code_commune_insee": "77058"}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61f6171ebff9dd233deb4a7807d060b1070497ab", "fields": {"nom_de_la_commune": "LA CELLE SUR MORIN", "libell_d_acheminement": "LA CELLE SUR MORIN", "code_postal": "77515", "coordonnees_gps": [48.791262965, 2.99641701486], "code_commune_insee": "77063"}, "geometry": {"type": "Point", "coordinates": [2.99641701486, 48.791262965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64c4ccf06ec98aed05ae755a71ffcd07194b5074", "fields": {"nom_de_la_commune": "CESSOY EN MONTOIS", "libell_d_acheminement": "CESSOY EN MONTOIS", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77068"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08eaae871273ec3482cf8f1aded7111931e911ac", "fields": {"nom_de_la_commune": "CHAMPAGNE SUR SEINE", "libell_d_acheminement": "CHAMPAGNE SUR SEINE", "code_postal": "77430", "coordonnees_gps": [48.4090474802, 2.80758778322], "code_commune_insee": "77079"}, "geometry": {"type": "Point", "coordinates": [2.80758778322, 48.4090474802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca8f12042a0469167f674c278d6513719dffba0b", "fields": {"nom_de_la_commune": "CHANGIS SUR MARNE", "libell_d_acheminement": "CHANGIS SUR MARNE", "code_postal": "77660", "coordonnees_gps": [48.947885441, 3.02624344893], "code_commune_insee": "77084"}, "geometry": {"type": "Point", "coordinates": [3.02624344893, 48.947885441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b880c8e4e7b6276e0223f0c2e703267d5a1aad80", "fields": {"nom_de_la_commune": "LA CHAPELLE GAUTHIER", "libell_d_acheminement": "LA CHAPELLE GAUTHIER", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77086"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6b8d131016fff76a6762e8094cced844bc58e2c", "fields": {"nom_de_la_commune": "LA CHAPELLE LA REINE", "libell_d_acheminement": "LA CHAPELLE LA REINE", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77088"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3d25fbf5249a0367e8951c10ccaee0a9824980a", "fields": {"nom_de_la_commune": "LA CHAPELLE ST SULPICE", "libell_d_acheminement": "LA CHAPELLE ST SULPICE", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77090"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b59ca31800a80a0373d8a8a004556d2c1ff2748a", "fields": {"nom_de_la_commune": "CHARTRETTES", "libell_d_acheminement": "CHARTRETTES", "code_postal": "77590", "coordonnees_gps": [48.4860029495, 2.72692404848], "code_commune_insee": "77096"}, "geometry": {"type": "Point", "coordinates": [2.72692404848, 48.4860029495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15cbe1ea87b6acc680a85b935cbe8469291ae21e", "fields": {"nom_de_la_commune": "CHARTRONGES", "libell_d_acheminement": "CHARTRONGES", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77097"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d303b663c339356205ca0cf3d75fb2127796b6e8", "fields": {"nom_de_la_commune": "CHATENOY", "libell_d_acheminement": "CHATENOY", "code_postal": "77167", "coordonnees_gps": [48.2322771865, 2.71472288232], "code_commune_insee": "77102"}, "geometry": {"type": "Point", "coordinates": [2.71472288232, 48.2322771865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13747a6a68c307f524a0b645567310f64ca64c16", "fields": {"nom_de_la_commune": "CHAUMES EN BRIE", "libell_d_acheminement": "CHAUMES EN BRIE", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77107"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b53e031cb11729ce18a77cf0cba558071245903e", "fields": {"nom_de_la_commune": "CHENOU", "libell_d_acheminement": "CHENOU", "code_postal": "77570", "coordonnees_gps": [48.1729853259, 2.64931159934], "code_commune_insee": "77110"}, "geometry": {"type": "Point", "coordinates": [2.64931159934, 48.1729853259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "327219f186fc88870eb0a33990751f0ccbd1bccd", "fields": {"nom_de_la_commune": "CHEVRY COSSIGNY", "libell_d_acheminement": "CHEVRY COSSIGNY", "code_postal": "77173", "coordonnees_gps": [48.7235256788, 2.6769970058], "code_commune_insee": "77114"}, "geometry": {"type": "Point", "coordinates": [2.6769970058, 48.7235256788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43f1a0a0aa964b7f175bd259609b8d8ca9cdb221", "fields": {"nom_de_la_commune": "CHOISY EN BRIE", "libell_d_acheminement": "CHOISY EN BRIE", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77116"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c39e9de6d82491f1e156b14243ff34fabd5c5938", "fields": {"nom_de_la_commune": "CITRY", "libell_d_acheminement": "CITRY", "code_postal": "77730", "coordonnees_gps": [48.9602103424, 3.21952971251], "code_commune_insee": "77117"}, "geometry": {"type": "Point", "coordinates": [3.21952971251, 48.9602103424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4157e71ff5f0e31b94458ea39e9c33aa6503dfce", "fields": {"nom_de_la_commune": "CLOS FONTAINE", "libell_d_acheminement": "CLOS FONTAINE", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77119"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41584e5d83107dd6b86228dc11dfd3e997dfb81a", "fields": {"nom_de_la_commune": "COCHEREL", "libell_d_acheminement": "COCHEREL", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77120"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9278503d4fb32fbeb3c974c172b6c6ef145e18ab", "fields": {"nom_de_la_commune": "COLLEGIEN", "libell_d_acheminement": "COLLEGIEN", "code_postal": "77090", "coordonnees_gps": [48.8280688136, 2.67763564393], "code_commune_insee": "77121"}, "geometry": {"type": "Point", "coordinates": [2.67763564393, 48.8280688136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9f2c501b7dad1489a1bc07c7e93831b47efbc5", "fields": {"nom_de_la_commune": "CONGIS SUR THEROUANNE", "libell_d_acheminement": "CONGIS SUR THEROUANNE", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77126"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2ec0838176eda09202616cb241b57424bec7456", "fields": {"nom_de_la_commune": "COULOMBS EN VALOIS", "libell_d_acheminement": "COULOMBS EN VALOIS", "code_postal": "77840", "coordonnees_gps": [49.0796099088, 3.11275376018], "code_commune_insee": "77129"}, "geometry": {"type": "Point", "coordinates": [3.11275376018, 49.0796099088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba252e60fd5c0ff658daabd867ec6ca9b292c063", "fields": {"nom_de_la_commune": "COURCELLES EN BASSEE", "libell_d_acheminement": "COURCELLES EN BASSEE", "code_postal": "77126", "coordonnees_gps": [48.4261598514, 3.09512447411], "code_commune_insee": "77133"}, "geometry": {"type": "Point", "coordinates": [3.09512447411, 48.4261598514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7e27942530898d7e603999af8c5bd74dddd5db8", "fields": {"nom_de_la_commune": "COURTOMER", "libell_d_acheminement": "COURTOMER", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77138"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ca2b742b4929075abf6bcfa7ad0e100d6ac631b", "fields": {"nom_de_la_commune": "COURTRY", "libell_d_acheminement": "COURTRY", "code_postal": "77181", "coordonnees_gps": [48.9151571578, 2.61878172318], "code_commune_insee": "77139"}, "geometry": {"type": "Point", "coordinates": [2.61878172318, 48.9151571578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b80e6743898ffed6b15ac07a5e537adf260b3d1", "fields": {"nom_de_la_commune": "COUTEVROULT", "libell_d_acheminement": "COUTEVROULT", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77141"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01a66432a324db7edbd671b9dad374007ef7b7c6", "fields": {"code_postal": "77580", "code_commune_insee": "77142", "libell_d_acheminement": "CRECY LA CHAPELLE", "ligne_5": "LA CHAPELLE SUR CRECY", "nom_de_la_commune": "CRECY LA CHAPELLE", "coordonnees_gps": [48.8615810668, 2.95011085183]}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "064f060009da8aa4119986bf35c92e3e9385ed44", "fields": {"nom_de_la_commune": "LA CROIX EN BRIE", "libell_d_acheminement": "LA CROIX EN BRIE", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77147"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b96638a6aec2c7ced77a3071bca1a35404c71f3", "fields": {"nom_de_la_commune": "DAMMARTIN SUR TIGEAUX", "libell_d_acheminement": "DAMMARTIN SUR TIGEAUX", "code_postal": "77163", "coordonnees_gps": [48.7979316478, 2.90271680607], "code_commune_insee": "77154"}, "geometry": {"type": "Point", "coordinates": [2.90271680607, 48.7979316478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48a0eb85f0df0e77dedac76195c07cc793d9e37", "fields": {"nom_de_la_commune": "DORMELLES", "libell_d_acheminement": "DORMELLES", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77161"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97fa3343f0d33d85c895b61aeaec08e8ac6a7ac7", "fields": {"nom_de_la_commune": "LES ECRENNES", "libell_d_acheminement": "LES ECRENNES", "code_postal": "77820", "coordonnees_gps": [48.5045041989, 2.83445609947], "code_commune_insee": "77165"}, "geometry": {"type": "Point", "coordinates": [2.83445609947, 48.5045041989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "544fd98d7a4c085521c7d9b11fb0f83c8c173aa1", "fields": {"nom_de_la_commune": "ETREPILLY", "libell_d_acheminement": "ETREPILLY", "code_postal": "77139", "coordonnees_gps": [49.0542002868, 2.91324246435], "code_commune_insee": "77173"}, "geometry": {"type": "Point", "coordinates": [2.91324246435, 49.0542002868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b36aa5b2fed926b47cb6996e1c939b4e193ef36a", "fields": {"nom_de_la_commune": "EVRY GREGY SUR YERRE", "libell_d_acheminement": "EVRY GREGY SUR YERRE", "code_postal": "77166", "coordonnees_gps": [48.6689119155, 2.65738604224], "code_commune_insee": "77175"}, "geometry": {"type": "Point", "coordinates": [2.65738604224, 48.6689119155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f76651c96d8be4e4179cc427bc34f2f81f5605ba", "fields": {"nom_de_la_commune": "LA GENEVRAYE", "libell_d_acheminement": "LA GENEVRAYE", "code_postal": "77690", "coordonnees_gps": [48.32561464, 2.75158001552], "code_commune_insee": "77202"}, "geometry": {"type": "Point", "coordinates": [2.75158001552, 48.32561464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4faba70e78a4a7b424072d5a7ef4cb888ee15e11", "fields": {"nom_de_la_commune": "GESVRES LE CHAPITRE", "libell_d_acheminement": "GESVRES LE CHAPITRE", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77205"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e73375daff6d186fe6b211d385c3c70a9d6f6213", "fields": {"nom_de_la_commune": "GOUAIX", "libell_d_acheminement": "GOUAIX", "code_postal": "77114", "coordonnees_gps": [48.4693763813, 3.34027903986], "code_commune_insee": "77208"}, "geometry": {"type": "Point", "coordinates": [3.34027903986, 48.4693763813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3d7444d6a236bd710134720c61b304aacee329d", "fields": {"nom_de_la_commune": "GOUVERNES", "libell_d_acheminement": "GOUVERNES", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77209"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41b1f3089ffe52532e2a4ed4be6150320b14ab05", "fields": {"nom_de_la_commune": "GUIGNES", "libell_d_acheminement": "GUIGNES", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77222"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72cafa49c54396f885cb1ee1ed80b1350c38e96d", "fields": {"nom_de_la_commune": "GURCY LE CHATEL", "libell_d_acheminement": "GURCY LE CHATEL", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77223"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f57668b4125dbab3c9114621615c0e6f28a09fd", "fields": {"nom_de_la_commune": "JAIGNES", "libell_d_acheminement": "JAIGNES", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77235"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca45749d453cc84dfe9728ecce02b11009ea7c5", "fields": {"nom_de_la_commune": "LESCHEROLLES", "libell_d_acheminement": "LESCHEROLLES", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77247"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc6862cedf9b1827d0b3893e40bd13aaf315723c", "fields": {"nom_de_la_commune": "LIVRY SUR SEINE", "libell_d_acheminement": "LIVRY SUR SEINE", "code_postal": "77000", "coordonnees_gps": [48.5229543545, 2.67825416798], "code_commune_insee": "77255"}, "geometry": {"type": "Point", "coordinates": [2.67825416798, 48.5229543545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c87fa5bd49d661456584d6efcfbe73a895f175", "fields": {"nom_de_la_commune": "LONGUEVILLE", "libell_d_acheminement": "LONGUEVILLE", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77260"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a0fed5b2aaf9897e7c0d536ffdbff8b54e2740a", "fields": {"code_postal": "77540", "code_commune_insee": "77264", "libell_d_acheminement": "LUMIGNY NESLES ORMEAUX", "ligne_5": "ORMEAUX", "nom_de_la_commune": "LUMIGNY NESLES ORMEAUX", "coordonnees_gps": [48.6871810178, 2.97337841043]}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c837e2ae8eace8b38941e715eeff1a570e5d85b", "fields": {"nom_de_la_commune": "MARCILLY", "libell_d_acheminement": "MARCILLY", "code_postal": "77139", "coordonnees_gps": [49.0542002868, 2.91324246435], "code_commune_insee": "77274"}, "geometry": {"type": "Point", "coordinates": [2.91324246435, 49.0542002868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b9b2dfd1ff7a9e2d6dd610bd95838221057a1eb", "fields": {"nom_de_la_commune": "MAROLLES SUR SEINE", "libell_d_acheminement": "MAROLLES SUR SEINE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77279"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18f1e55d0abf94ccc6e988f92a0f61339b0dd86d", "fields": {"nom_de_la_commune": "MEIGNEUX", "libell_d_acheminement": "MEIGNEUX", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77286"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "397426b802eea20abdbae61b328ec2dc4973a78c", "fields": {"nom_de_la_commune": "MERY SUR MARNE", "libell_d_acheminement": "MERY SUR MARNE", "code_postal": "77730", "coordonnees_gps": [48.9602103424, 3.21952971251], "code_commune_insee": "77290"}, "geometry": {"type": "Point", "coordinates": [3.21952971251, 48.9602103424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3fde7f04409b284c607e1421c392324ddd4b351", "fields": {"nom_de_la_commune": "MISY SUR YONNE", "libell_d_acheminement": "MISY SUR YONNE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77293"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ce594e60045bf710ba493874a1a988f38b978f3", "fields": {"nom_de_la_commune": "MONTCOURT FROMONVILLE", "libell_d_acheminement": "MONTCOURT FROMONVILLE", "code_postal": "77140", "coordonnees_gps": [48.2750471622, 2.70959190478], "code_commune_insee": "77302"}, "geometry": {"type": "Point", "coordinates": [2.70959190478, 48.2750471622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8af1a19698aead429ce8a9895cd1e151c7eba19b", "fields": {"nom_de_la_commune": "MONTIGNY LE GUESDIER", "libell_d_acheminement": "MONTIGNY LE GUESDIER", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77310"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c5e1ffeb21e7d83f6dc598e300cbbdb41235530", "fields": {"nom_de_la_commune": "MOUSSEAUX LES BRAY", "libell_d_acheminement": "MOUSSEAUX LES BRAY", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77321"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8942c59c26c100c3b765258152cedeaf8a7b9c28", "fields": {"nom_de_la_commune": "MOUSSY LE NEUF", "libell_d_acheminement": "MOUSSY LE NEUF", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77322"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34eb60798c32ef6bf951256ce3edb41166622120", "fields": {"nom_de_la_commune": "NANTEAU SUR LUNAIN", "libell_d_acheminement": "NANTEAU SUR LUNAIN", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77329"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1fcc61553ab46828a164bb65cce4c2168eb0e2e", "fields": {"nom_de_la_commune": "NANTEUIL SUR MARNE", "libell_d_acheminement": "NANTEUIL SUR MARNE", "code_postal": "77730", "coordonnees_gps": [48.9602103424, 3.21952971251], "code_commune_insee": "77331"}, "geometry": {"type": "Point", "coordinates": [3.21952971251, 48.9602103424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf5aaa30b2aecbc819745366ca0d028485d42dcf", "fields": {"nom_de_la_commune": "NEUFMOUTIERS EN BRIE", "libell_d_acheminement": "NEUFMOUTIERS EN BRIE", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77336"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cb33e54e56d5cb6eeb98bb56510ebf6f11e6b32", "fields": {"nom_de_la_commune": "NOYEN SUR SEINE", "libell_d_acheminement": "NOYEN SUR SEINE", "code_postal": "77114", "coordonnees_gps": [48.4693763813, 3.34027903986], "code_commune_insee": "77341"}, "geometry": {"type": "Point", "coordinates": [3.34027903986, 48.4693763813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa7e7bc2e601c39616e0c956ee626e13d7389d04", "fields": {"nom_de_la_commune": "OISSERY", "libell_d_acheminement": "OISSERY", "code_postal": "77178", "coordonnees_gps": [49.0712863864, 2.81026251267], "code_commune_insee": "77344"}, "geometry": {"type": "Point", "coordinates": [2.81026251267, 49.0712863864]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe8df0f2b9efc99da6ba4f4445145a8329f6c36", "fields": {"nom_de_la_commune": "PECY", "libell_d_acheminement": "PECY", "code_postal": "77970", "coordonnees_gps": [48.6629667533, 3.14093688522], "code_commune_insee": "77357"}, "geometry": {"type": "Point", "coordinates": [3.14093688522, 48.6629667533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11fd3bda675ec23cf2e3122300447cd4d9a5e85a", "fields": {"nom_de_la_commune": "LE PLESSIS PLACY", "libell_d_acheminement": "LE PLESSIS PLACY", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77367"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51d999e41ebaf304609a11b2fbd4e59afda07778", "fields": {"nom_de_la_commune": "POLIGNY", "libell_d_acheminement": "POLIGNY", "code_postal": "77167", "coordonnees_gps": [48.2322771865, 2.71472288232], "code_commune_insee": "77370"}, "geometry": {"type": "Point", "coordinates": [2.71472288232, 48.2322771865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80b041e961e8ef8168a997b7db4e4bd86bc284c4", "fields": {"nom_de_la_commune": "POMMEUSE", "libell_d_acheminement": "POMMEUSE", "code_postal": "77515", "coordonnees_gps": [48.791262965, 2.99641701486], "code_commune_insee": "77371"}, "geometry": {"type": "Point", "coordinates": [2.99641701486, 48.791262965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f01f41fb16a2f3aaa3b6a47fd9465b908d7b72", "fields": {"code_postal": "77400", "code_commune_insee": "77372", "libell_d_acheminement": "POMPONNE", "ligne_5": "LA POMPONNETTE", "nom_de_la_commune": "POMPONNE", "coordonnees_gps": [48.8816806976, 2.70264618038]}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9803fe5439ea6f77b5bc974c4f901519dfb5a127", "fields": {"nom_de_la_commune": "RAMPILLON", "libell_d_acheminement": "RAMPILLON", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77383"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a97228e33ef94276f9756a178847e547b092c6", "fields": {"nom_de_la_commune": "RUBELLES", "libell_d_acheminement": "RUBELLES", "code_postal": "77950", "coordonnees_gps": [48.5738526106, 2.69879445507], "code_commune_insee": "77394"}, "geometry": {"type": "Point", "coordinates": [2.69879445507, 48.5738526106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c846597c4c0eaedd7ca3fd86276ee38b67bb3d3", "fields": {"nom_de_la_commune": "RUPEREUX", "libell_d_acheminement": "RUPEREUX", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77396"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74c88873c8f72f00e4d0c78cf63b63cff3b9474", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77402"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5d7e9176b4a96658dc610dbb023655ffee239b8", "fields": {"nom_de_la_commune": "ST BRICE", "libell_d_acheminement": "ST BRICE", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77403"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27e04fde70d7e0c6b8e3c77aa4f8a5cbac99a01a", "fields": {"nom_de_la_commune": "ST FIACRE", "libell_d_acheminement": "ST FIACRE", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77408"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f5fa5ec0c83e0d4bf00df49d24eefb417b05d8a", "fields": {"nom_de_la_commune": "ST GERMAIN LAXIS", "libell_d_acheminement": "ST GERMAIN LAXIS", "code_postal": "77950", "coordonnees_gps": [48.5738526106, 2.69879445507], "code_commune_insee": "77410"}, "geometry": {"type": "Point", "coordinates": [2.69879445507, 48.5738526106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21e8cbdbda4a416cd092dc01b12efe2fdad08763", "fields": {"nom_de_la_commune": "ST GERMAIN SUR ECOLE", "libell_d_acheminement": "ST GERMAIN SUR ECOLE", "code_postal": "77930", "coordonnees_gps": [48.4690092081, 2.55644926131], "code_commune_insee": "77412"}, "geometry": {"type": "Point", "coordinates": [2.55644926131, 48.4690092081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff241e00926ea8e72198328608d367712be35fcf", "fields": {"nom_de_la_commune": "ST HILLIERS", "libell_d_acheminement": "ST HILLIERS", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77414"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de6d414da4a08ea080b4ede30a56c360eb52be6c", "fields": {"nom_de_la_commune": "ST MARTIN DU BOSCHET", "libell_d_acheminement": "ST MARTIN DU BOSCHET", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77424"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102453a81ac6ae437da4a967fd3203b9d035f724", "fields": {"nom_de_la_commune": "ST MERY", "libell_d_acheminement": "ST MERY", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77426"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09db38826e80ec153d04cc05210bd8f66c11e552", "fields": {"nom_de_la_commune": "ST THIBAULT DES VIGNES", "libell_d_acheminement": "ST THIBAULT DES VIGNES", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77438"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1671c496ffd8e9c67ab8cd99680fa5e9344f44bc", "fields": {"nom_de_la_commune": "SAMOIS SUR SEINE", "libell_d_acheminement": "SAMOIS SUR SEINE", "code_postal": "77920", "coordonnees_gps": [48.4560557931, 2.75252560303], "code_commune_insee": "77441"}, "geometry": {"type": "Point", "coordinates": [2.75252560303, 48.4560557931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89dd6d9a5f52ca3a847995520d6009b4c6381200", "fields": {"nom_de_la_commune": "SERVON", "libell_d_acheminement": "SERVON", "code_postal": "77170", "coordonnees_gps": [48.6935707994, 2.63183347569], "code_commune_insee": "77450"}, "geometry": {"type": "Point", "coordinates": [2.63183347569, 48.6935707994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9942b8704950e609290b05962c6e46f7de57b1a0", "fields": {"nom_de_la_commune": "SIVRY COURTRY", "libell_d_acheminement": "SIVRY COURTRY", "code_postal": "77115", "coordonnees_gps": [48.5423516758, 2.77150375047], "code_commune_insee": "77453"}, "geometry": {"type": "Point", "coordinates": [2.77150375047, 48.5423516758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6195d21b66b2b473fd481eeb5f0746ab524482cb", "fields": {"nom_de_la_commune": "SOURDUN", "libell_d_acheminement": "SOURDUN", "code_postal": "77171", "coordonnees_gps": [48.5414685058, 3.39619308726], "code_commune_insee": "77459"}, "geometry": {"type": "Point", "coordinates": [3.39619308726, 48.5414685058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25bcf47726de76427d1721ca4b49c8c8a5346876", "fields": {"nom_de_la_commune": "THOMERY", "libell_d_acheminement": "THOMERY", "code_postal": "77810", "coordonnees_gps": [48.4043165887, 2.78049278049], "code_commune_insee": "77463"}, "geometry": {"type": "Point", "coordinates": [2.78049278049, 48.4043165887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ccd1a54239007d088604e58fbd77ce78ebcff30", "fields": {"nom_de_la_commune": "THORIGNY SUR MARNE", "libell_d_acheminement": "THORIGNY SUR MARNE", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77464"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af9c5022ec4aad2900f217b98f92da7c81ac49ff", "fields": {"nom_de_la_commune": "URY", "libell_d_acheminement": "URY", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77477"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a778663848d3dbe9c5400f12156df975901881ec", "fields": {"nom_de_la_commune": "VAUCOURTOIS", "libell_d_acheminement": "VAUCOURTOIS", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77484"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3670940420bb16347b75bef6ca955e65005b0e", "fields": {"nom_de_la_commune": "VERT ST DENIS", "libell_d_acheminement": "VERT ST DENIS", "code_postal": "77240", "coordonnees_gps": [48.5645874906, 2.60004351705], "code_commune_insee": "77495"}, "geometry": {"type": "Point", "coordinates": [2.60004351705, 48.5645874906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f347d5fdad719d979fd30b60a92d765d91431e1", "fields": {"nom_de_la_commune": "VILLEMARECHAL", "libell_d_acheminement": "VILLEMARECHAL", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77504"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97e6fbf8315a2e583c0404f95ac2e9d24ca4af34", "fields": {"nom_de_la_commune": "VILLEMAREUIL", "libell_d_acheminement": "VILLEMAREUIL", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77505"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ee0ff167076f3b1005e103a404d1481470b0771", "fields": {"nom_de_la_commune": "VILLEMER", "libell_d_acheminement": "VILLEMER", "code_postal": "77250", "coordonnees_gps": [48.3334508388, 2.82847916513], "code_commune_insee": "77506"}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02deaab581230e29b44da36ed127bc854acd0738", "fields": {"nom_de_la_commune": "VILLENEUVE ST DENIS", "libell_d_acheminement": "VILLENEUVE ST DENIS", "code_postal": "77174", "coordonnees_gps": [48.8118209596, 2.82523717272], "code_commune_insee": "77510"}, "geometry": {"type": "Point", "coordinates": [2.82523717272, 48.8118209596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53505a68a18910da766e17058bf79c1611672b83", "fields": {"nom_de_la_commune": "VILLENOY", "libell_d_acheminement": "VILLENOY", "code_postal": "77124", "coordonnees_gps": [48.9687525452, 2.84384652509], "code_commune_insee": "77513"}, "geometry": {"type": "Point", "coordinates": [2.84384652509, 48.9687525452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f78924177c95bed3cd6fdffcfb2f8c3644b8882", "fields": {"nom_de_la_commune": "VILLEROY", "libell_d_acheminement": "VILLEROY", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77515"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ffc91513e6b6bc9cc9a9538eea7e1cae25fb006", "fields": {"code_postal": "77410", "code_commune_insee": "77517", "libell_d_acheminement": "VILLEVAUDE", "ligne_5": "MONTJAY LA TOUR", "nom_de_la_commune": "VILLEVAUDE", "coordonnees_gps": [48.9493778355, 2.7161171355]}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2bcd42ae396d6d7ce948bea8e9217b69fd30e33", "fields": {"nom_de_la_commune": "BRETTEVILLE ST LAURENT", "libell_d_acheminement": "BRETTEVILLE ST LAURENT", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76144"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4fba805abe3e18d6661f356a00ea4732457882cb", "fields": {"nom_de_la_commune": "BULLY", "libell_d_acheminement": "BULLY", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76147"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d491804dac729a10eebafa575eb476f89b06429", "fields": {"nom_de_la_commune": "CAILLY", "libell_d_acheminement": "CAILLY", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76152"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcb36ca592143aa517833e092344a55e8893d0ae", "fields": {"nom_de_la_commune": "CANTELEU", "libell_d_acheminement": "CANTELEU", "code_postal": "76380", "coordonnees_gps": [49.425520648, 1.00384964963], "code_commune_insee": "76157"}, "geometry": {"type": "Point", "coordinates": [1.00384964963, 49.425520648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd7e845e387daa1885fa894674534719f258bedc", "fields": {"nom_de_la_commune": "CAUDEBEC LES ELBEUF", "libell_d_acheminement": "CAUDEBEC LES ELBEUF", "code_postal": "76320", "coordonnees_gps": [49.2796174465, 1.0395659245], "code_commune_insee": "76165"}, "geometry": {"type": "Point", "coordinates": [1.0395659245, 49.2796174465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "383df4dfa84d288b7563fd74bdfd06a849b4464d", "fields": {"nom_de_la_commune": "LA CHAUSSEE", "libell_d_acheminement": "LA CHAUSSEE", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76173"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4282f10fd3c8cd8a889daec0bd6c73c2eeaf2e6c", "fields": {"nom_de_la_commune": "CONTREMOULINS", "libell_d_acheminement": "CONTREMOULINS", "code_postal": "76400", "coordonnees_gps": [49.7369377519, 0.397555016947], "code_commune_insee": "76187"}, "geometry": {"type": "Point", "coordinates": [0.397555016947, 49.7369377519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3f3ecd105449652c863cd9f2532584f36e4a7aa", "fields": {"nom_de_la_commune": "COTTEVRARD", "libell_d_acheminement": "COTTEVRARD", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76188"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43940eb312cfc96d2f76d2477af4b3a94054e76c", "fields": {"nom_de_la_commune": "CRASVILLE LA MALLET", "libell_d_acheminement": "CRASVILLE LA MALLET", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76189"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f1acb414ba27a4c84a2e192db39e63a21f3e560", "fields": {"nom_de_la_commune": "CRASVILLE LA ROCQUEFORT", "libell_d_acheminement": "CRASVILLE LA ROCQUEFORT", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76190"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "533934e845ff47525aa9322179781a9854a7a5cf", "fields": {"nom_de_la_commune": "CRIEL SUR MER", "libell_d_acheminement": "CRIEL SUR MER", "code_postal": "76910", "coordonnees_gps": [50.002581149, 1.30116674877], "code_commune_insee": "76192"}, "geometry": {"type": "Point", "coordinates": [1.30116674877, 50.002581149]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d7f046dd66d23d3bb9b14f5cf1903fef44a0c58", "fields": {"nom_de_la_commune": "CRIQUETOT L ESNEVAL", "libell_d_acheminement": "CRIQUETOT L ESNEVAL", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76196"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81889eb0aedd851f84b632afe4a6e45c7792bb32", "fields": {"nom_de_la_commune": "CRIQUETOT SUR OUVILLE", "libell_d_acheminement": "CRIQUETOT SUR OUVILLE", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76198"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a45dd09401b575c571055dd350f80bb82aa675d2", "fields": {"nom_de_la_commune": "CUY ST FIACRE", "libell_d_acheminement": "CUY ST FIACRE", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76208"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39075fcd29a900d03cee4763c4b1ccb0bd23eabc", "fields": {"nom_de_la_commune": "DAMPIERRE ST NICOLAS", "libell_d_acheminement": "DAMPIERRE ST NICOLAS", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76210"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0ae21766679d6677e62c057b5769bb964a4e84e", "fields": {"nom_de_la_commune": "DEVILLE LES ROUEN", "libell_d_acheminement": "DEVILLE LES ROUEN", "code_postal": "76250", "coordonnees_gps": [49.4669354731, 1.05115010486], "code_commune_insee": "76216"}, "geometry": {"type": "Point", "coordinates": [1.05115010486, 49.4669354731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93113f4e1d6438ed2bacc60dad37517be493d16f", "fields": {"nom_de_la_commune": "DOUDEVILLE", "libell_d_acheminement": "DOUDEVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76219"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a54c86578791cdee12b5e9b02282ec483f6e5cc", "fields": {"nom_de_la_commune": "ECRAINVILLE", "libell_d_acheminement": "ECRAINVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76224"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35d40662f0a0d21bcd01983bd27560a6e0093c27", "fields": {"nom_de_la_commune": "ECTOT LES BAONS", "libell_d_acheminement": "ECTOT LES BAONS", "code_postal": "76970", "coordonnees_gps": [49.6427537558, 0.834194996945], "code_commune_insee": "76228"}, "geometry": {"type": "Point", "coordinates": [0.834194996945, 49.6427537558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3daceb6a09622142222cfa6cfa584ff745c14de2", "fields": {"nom_de_la_commune": "ELBEUF EN BRAY", "libell_d_acheminement": "ELBEUF EN BRAY", "code_postal": "76220", "coordonnees_gps": [49.4839370526, 1.63929557439], "code_commune_insee": "76229"}, "geometry": {"type": "Point", "coordinates": [1.63929557439, 49.4839370526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72cc1395a2c1885f749f9faa09223a92ccf2369f", "fields": {"nom_de_la_commune": "ETAIMPUIS", "libell_d_acheminement": "ETAIMPUIS", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76249"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f13b05139ccccc71667579c3aaa6ab0dd260fdd", "fields": {"nom_de_la_commune": "FLAMANVILLE", "libell_d_acheminement": "FLAMANVILLE", "code_postal": "76970", "coordonnees_gps": [49.6427537558, 0.834194996945], "code_commune_insee": "76264"}, "geometry": {"type": "Point", "coordinates": [0.834194996945, 49.6427537558]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7d7fe96eafc41438639f0f816b483ca5cd6cb19", "fields": {"nom_de_la_commune": "FLOCQUES", "libell_d_acheminement": "FLOCQUES", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76266"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6aac87749f3e26255957fd70bacf1e903b3a522", "fields": {"code_postal": "76440", "code_commune_insee": "76276", "libell_d_acheminement": "FORGES LES EAUX", "ligne_5": "LE FOSSE", "nom_de_la_commune": "FORGES LES EAUX", "coordonnees_gps": [49.6188544023, 1.54394824597]}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9760ba52a321aa14bae144d0609585a531876d2", "fields": {"nom_de_la_commune": "FOUCARMONT", "libell_d_acheminement": "FOUCARMONT", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76278"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2715d4ff671e28df6008cd57559464eef5663e", "fields": {"nom_de_la_commune": "LA FRENAYE", "libell_d_acheminement": "LA FRENAYE", "code_postal": "76170", "coordonnees_gps": [49.5137047652, 0.527687035677], "code_commune_insee": "76281"}, "geometry": {"type": "Point", "coordinates": [0.527687035677, 49.5137047652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4d74f5233ef64ec446bc4ef1d990dc01151cc58", "fields": {"nom_de_la_commune": "FRESNAY LE LONG", "libell_d_acheminement": "FRESNAY LE LONG", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76284"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3697480ee5554109f12ea8c6f4940aabcb152ef6", "fields": {"nom_de_la_commune": "FRESQUIENNES", "libell_d_acheminement": "FRESQUIENNES", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76287"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db7f7f71344fe5a811975f5ca3d4a5401a96b939", "fields": {"nom_de_la_commune": "LA GAILLARDE", "libell_d_acheminement": "LA GAILLARDE", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76294"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "223a2f0dcf00ff85372959d3387f7c5935aebfd8", "fields": {"nom_de_la_commune": "GAILLEFONTAINE", "libell_d_acheminement": "GAILLEFONTAINE", "code_postal": "76870", "coordonnees_gps": [49.670350783, 1.60614437004], "code_commune_insee": "76295"}, "geometry": {"type": "Point", "coordinates": [1.60614437004, 49.670350783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f4c633b2f81f1446fdf8035379bd2f3e18d61c", "fields": {"nom_de_la_commune": "GONNETOT", "libell_d_acheminement": "GONNETOT", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76306"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179b88d7116f52a9be1c14437f5bba6bd3fbe72d", "fields": {"nom_de_la_commune": "GRAINVILLE YMAUVILLE", "libell_d_acheminement": "GRAINVILLE YMAUVILLE", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76317"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe226e0a8a1b44cffe613fa089de4c3de4a1b766", "fields": {"code_postal": "76530", "code_commune_insee": "76319", "libell_d_acheminement": "GRAND COURONNE", "ligne_5": "LES ESSARTS", "nom_de_la_commune": "GRAND COURONNE", "coordonnees_gps": [49.3726997193, 0.948232561629]}, "geometry": {"type": "Point", "coordinates": [0.948232561629, 49.3726997193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a85467b819347af1c012401243d59074d075387", "fields": {"nom_de_la_commune": "LE HANOUARD", "libell_d_acheminement": "LE HANOUARD", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76339"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfb57f1be459c3ee90183f7cabef86c34219252", "fields": {"nom_de_la_commune": "HAUTOT L AUVRAY", "libell_d_acheminement": "HAUTOT L AUVRAY", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76346"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c532e4d5f3a9fbd234f834c9c48ad960b01d3b4b", "fields": {"nom_de_la_commune": "HAUTOT SUR MER", "libell_d_acheminement": "HAUTOT SUR MER", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76349"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b52bcff60c3eec72e2b33ae9287e439e6e35ea0a", "fields": {"nom_de_la_commune": "HAUTOT SUR SEINE", "libell_d_acheminement": "HAUTOT SUR SEINE", "code_postal": "76113", "coordonnees_gps": [49.3773922379, 0.947884639946], "code_commune_insee": "76350"}, "geometry": {"type": "Point", "coordinates": [0.947884639946, 49.3773922379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64677f8b5bf304441d8653c02625a61e8e7ffecc", "fields": {"nom_de_la_commune": "HENOUVILLE", "libell_d_acheminement": "HENOUVILLE", "code_postal": "76840", "coordonnees_gps": [49.4447486828, 0.958671899236], "code_commune_insee": "76354"}, "geometry": {"type": "Point", "coordinates": [0.958671899236, 49.4447486828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cb7948ca910e6821d3f628a1e6aa2f775fd2826", "fields": {"nom_de_la_commune": "HERICOURT EN CAUX", "libell_d_acheminement": "HERICOURT EN CAUX", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76355"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4784ccdeaefe904ce8865f5fd8e9aa75102754f", "fields": {"nom_de_la_commune": "HERONCHELLES", "libell_d_acheminement": "HERONCHELLES", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76359"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12ec3c5921d01e8db7082363b7b8e87cd45d9a08", "fields": {"nom_de_la_commune": "HODENG AU BOSC", "libell_d_acheminement": "HODENG AU BOSC", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76363"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3569131cd87687dbc35d9172b429263147ac64b", "fields": {"nom_de_la_commune": "HOUQUETOT", "libell_d_acheminement": "HOUQUETOT", "code_postal": "76110", "coordonnees_gps": [49.6526203294, 0.399455175841], "code_commune_insee": "76368"}, "geometry": {"type": "Point", "coordinates": [0.399455175841, 49.6526203294]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d5c6313e104cf73a79757088b9750200059ed2", "fields": {"nom_de_la_commune": "IMBLEVILLE", "libell_d_acheminement": "IMBLEVILLE", "code_postal": "76890", "coordonnees_gps": [49.6903705547, 1.028862596], "code_commune_insee": "76373"}, "geometry": {"type": "Point", "coordinates": [1.028862596, 49.6903705547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c1ab6360739d18a53b5f085762319e003f2ef0f", "fields": {"nom_de_la_commune": "ISNEAUVILLE", "libell_d_acheminement": "ISNEAUVILLE", "code_postal": "76230", "coordonnees_gps": [49.5059681606, 1.15634318194], "code_commune_insee": "76377"}, "geometry": {"type": "Point", "coordinates": [1.15634318194, 49.5059681606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1089a36c9fc909b7fef1c623c74a606141320c7", "fields": {"nom_de_la_commune": "JUMIEGES", "libell_d_acheminement": "JUMIEGES", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76378"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c48280d71cdf3b207fffd6e0e78a6247ab0c7a9b", "fields": {"nom_de_la_commune": "LAMMERVILLE", "libell_d_acheminement": "LAMMERVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76380"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c68a4ae8776f74bda6c606cb9ccf10ec818fc943", "fields": {"nom_de_la_commune": "LANQUETOT", "libell_d_acheminement": "LANQUETOT", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76382"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3835911a566ef2fd1a06fa43a7445d90853ab60", "fields": {"nom_de_la_commune": "LA LONDE", "libell_d_acheminement": "LA LONDE", "code_postal": "76500", "coordonnees_gps": [49.3087517455, 0.955689730263], "code_commune_insee": "76391"}, "geometry": {"type": "Point", "coordinates": [0.955689730263, 49.3087517455]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c838a4630331527ca8921b64d339023977afc67", "fields": {"nom_de_la_commune": "LONGMESNIL", "libell_d_acheminement": "LONGMESNIL", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76393"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d496c6a6f22b735da01f46550f889af68d53082", "fields": {"nom_de_la_commune": "LOUVETOT", "libell_d_acheminement": "LOUVETOT", "code_postal": "76490", "coordonnees_gps": [49.5497184764, 0.687731909353], "code_commune_insee": "76398"}, "geometry": {"type": "Point", "coordinates": [0.687731909353, 49.5497184764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d085a5a2b42904f7d78fc7d401df9adfd000ac04", "fields": {"nom_de_la_commune": "MANNEVILLETTE", "libell_d_acheminement": "MANNEVILLETTE", "code_postal": "76290", "coordonnees_gps": [49.5514571259, 0.184758051625], "code_commune_insee": "76409"}, "geometry": {"type": "Point", "coordinates": [0.184758051625, 49.5514571259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417e2a3bc98c8f8ba26758256f5809a167c9e1a6", "fields": {"nom_de_la_commune": "MARTIN EGLISE", "libell_d_acheminement": "MARTIN EGLISE", "code_postal": "76370", "coordonnees_gps": [49.9195191713, 1.14251674665], "code_commune_insee": "76414"}, "geometry": {"type": "Point", "coordinates": [1.14251674665, 49.9195191713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1932acde4d1ab6861815cbf2e28d6aec59843fd9", "fields": {"nom_de_la_commune": "MENONVAL", "libell_d_acheminement": "MENONVAL", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76424"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0077415663b410bd9230439d095834f70e7a61e", "fields": {"nom_de_la_commune": "MESNIL FOLLEMPRISE", "libell_d_acheminement": "MESNIL FOLLEMPRISE", "code_postal": "76660", "coordonnees_gps": [49.839692495, 1.41105413931], "code_commune_insee": "76430"}, "geometry": {"type": "Point", "coordinates": [1.41105413931, 49.839692495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bf94f17f60adf81cde257be3adb54c8bd853036", "fields": {"nom_de_la_commune": "MESNIL PANNEVILLE", "libell_d_acheminement": "MESNIL PANNEVILLE", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76433"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2de0ccb4dc533b70d6e1d8f7866c49c559c4626d", "fields": {"nom_de_la_commune": "MILLEBOSC", "libell_d_acheminement": "MILLEBOSC", "code_postal": "76260", "coordonnees_gps": [49.9895883457, 1.42435065145], "code_commune_insee": "76438"}, "geometry": {"type": "Point", "coordinates": [1.42435065145, 49.9895883457]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3824c457f89f4e40f6d4820bd195dd9bc11a928e", "fields": {"nom_de_la_commune": "MONCHAUX SORENG", "libell_d_acheminement": "MONCHAUX SORENG", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76441"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "684c44b8d870f17294cb9b940acd2b9be28c7628", "fields": {"nom_de_la_commune": "MONTIGNY", "libell_d_acheminement": "MONTIGNY", "code_postal": "76380", "coordonnees_gps": [49.425520648, 1.00384964963], "code_commune_insee": "76446"}, "geometry": {"type": "Point", "coordinates": [1.00384964963, 49.425520648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ba9b6ed6b5a479388d6f430d7fc2cfd6dbd0885", "fields": {"nom_de_la_commune": "MONTREUIL EN CAUX", "libell_d_acheminement": "MONTREUIL EN CAUX", "code_postal": "76850", "coordonnees_gps": [49.6611954117, 1.17780106466], "code_commune_insee": "76449"}, "geometry": {"type": "Point", "coordinates": [1.17780106466, 49.6611954117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b75c8c599ebbded2fc15eb9cbac2a68ee28558e7", "fields": {"nom_de_la_commune": "MORVILLE SUR ANDELLE", "libell_d_acheminement": "MORVILLE SUR ANDELLE", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76455"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5d505213e372f2025f3992188cf830806ce5516", "fields": {"nom_de_la_commune": "NESLE HODENG", "libell_d_acheminement": "NESLE HODENG", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76459"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9eb781cc745646ff89886fa812696811e45a238", "fields": {"nom_de_la_commune": "NEUFBOSC", "libell_d_acheminement": "NEUFBOSC", "code_postal": "76680", "coordonnees_gps": [49.6749469501, 1.28795633679], "code_commune_insee": "76461"}, "geometry": {"type": "Point", "coordinates": [1.28795633679, 49.6749469501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "440b27eb026efbc067475baf560075c3993b5dc5", "fields": {"nom_de_la_commune": "NEUFCHATEL EN BRAY", "libell_d_acheminement": "NEUFCHATEL EN BRAY", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76462"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "401b3bcd2dc9f86c3511fecb483d3b3ef3f0a7bd", "fields": {"nom_de_la_commune": "NORMANVILLE", "libell_d_acheminement": "NORMANVILLE", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76470"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ebe7170c88e90f088c7ff0aa60efb44f66f2ead", "fields": {"nom_de_la_commune": "NORVILLE", "libell_d_acheminement": "NORVILLE", "code_postal": "76330", "coordonnees_gps": [49.4716972983, 0.6014275892], "code_commune_insee": "76471"}, "geometry": {"type": "Point", "coordinates": [0.6014275892, 49.4716972983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c70477d5126416108ed1778549b6d47cdd59bac", "fields": {"nom_de_la_commune": "FRANQUEVILLE ST PIERRE", "libell_d_acheminement": "FRANQUEVILLE ST PIERRE", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76475"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d2195b27c66d80e89ad1fabfe582a6f526aa7ef", "fields": {"code_postal": "76330", "code_commune_insee": "76476", "libell_d_acheminement": "PORT JEROME SUR SEINE", "ligne_5": "NOTRE DAME DE GRAVENCHON", "nom_de_la_commune": "PORT JEROME SUR SEINE", "coordonnees_gps": [49.4716972983, 0.6014275892]}, "geometry": {"type": "Point", "coordinates": [0.6014275892, 49.4716972983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a00463df33fad22bbf1144114bb19b3d65cb3ced", "fields": {"nom_de_la_commune": "NOTRE DAME DU BEC", "libell_d_acheminement": "NOTRE DAME DU BEC", "code_postal": "76133", "coordonnees_gps": [49.5770580523, 0.228035021727], "code_commune_insee": "76477"}, "geometry": {"type": "Point", "coordinates": [0.228035021727, 49.5770580523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61c573e7ce7e3d779d7cb9a3ce76a5fd528acec1", "fields": {"nom_de_la_commune": "OCTEVILLE SUR MER", "libell_d_acheminement": "OCTEVILLE SUR MER", "code_postal": "76930", "coordonnees_gps": [49.5712629659, 0.127046049266], "code_commune_insee": "76481"}, "geometry": {"type": "Point", "coordinates": [0.127046049266, 49.5712629659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed2cc66032d984c60c1b491bb2e17d7ff31c0337", "fields": {"nom_de_la_commune": "OFFRANVILLE", "libell_d_acheminement": "OFFRANVILLE", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76482"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8345914be6f0b86193a02af8bf14f5b53ae4aed5", "fields": {"nom_de_la_commune": "OHERVILLE", "libell_d_acheminement": "OHERVILLE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76483"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "767554c40183d4859267e83f224b3536b693c1cd", "fields": {"nom_de_la_commune": "OISSEL", "libell_d_acheminement": "OISSEL", "code_postal": "76350", "coordonnees_gps": [49.3475706994, 1.07406447579], "code_commune_insee": "76484"}, "geometry": {"type": "Point", "coordinates": [1.07406447579, 49.3475706994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c6ef9770b806ab337a68e7d530a1a86e113ee28", "fields": {"nom_de_la_commune": "OMONVILLE", "libell_d_acheminement": "OMONVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76485"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26f7d50a7fb452cc2eda18233d1c006a8c139273", "fields": {"nom_de_la_commune": "PALUEL", "libell_d_acheminement": "PALUEL", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76493"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eec6c56d35964c09a10c51098e8fd29afda7cbb", "fields": {"nom_de_la_commune": "PARC D ANXTOT", "libell_d_acheminement": "PARC D ANXTOT", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76494"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31818720f6e58961a62c55883ce4f34a6a9e0388", "fields": {"nom_de_la_commune": "PAVILLY", "libell_d_acheminement": "PAVILLY", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76495"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8749e08d9d0c30987318ca6be2e69f3d899bcdf7", "fields": {"nom_de_la_commune": "PETIVILLE", "libell_d_acheminement": "PETIVILLE", "code_postal": "76330", "coordonnees_gps": [49.4716972983, 0.6014275892], "code_commune_insee": "76499"}, "geometry": {"type": "Point", "coordinates": [0.6014275892, 49.4716972983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dfb78658a9d9d5a647a67e6463fee9145363392", "fields": {"nom_de_la_commune": "PIERRECOURT", "libell_d_acheminement": "PIERRECOURT", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76500"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53fbe25da6933759cedbf79671a65551da56472b", "fields": {"nom_de_la_commune": "PIERREVAL", "libell_d_acheminement": "PIERREVAL", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76502"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e57db36cc40de3f426ae6adc12c56e797dda5c85", "fields": {"nom_de_la_commune": "POMMEREUX", "libell_d_acheminement": "POMMEREUX", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76505"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3df048064aaa248df1a60c986b23b6728063dc20", "fields": {"nom_de_la_commune": "PRETOT VICQUEMARE", "libell_d_acheminement": "PRETOT VICQUEMARE", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76510"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6572602219630d50ac0b4083b162a5e48c62187", "fields": {"nom_de_la_commune": "QUEVILLON", "libell_d_acheminement": "QUEVILLON", "code_postal": "76840", "coordonnees_gps": [49.4447486828, 0.958671899236], "code_commune_insee": "76513"}, "geometry": {"type": "Point", "coordinates": [0.958671899236, 49.4447486828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27e2bfb17054725501a6850005363fac5d2420df", "fields": {"nom_de_la_commune": "RICARVILLE DU VAL", "libell_d_acheminement": "RICARVILLE DU VAL", "code_postal": "76510", "coordonnees_gps": [49.8421027228, 1.24198039608], "code_commune_insee": "76526"}, "geometry": {"type": "Point", "coordinates": [1.24198039608, 49.8421027228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8742c05b908546d8dd820f2a976421c4ec499102", "fields": {"nom_de_la_commune": "ROCQUEFORT", "libell_d_acheminement": "ROCQUEFORT", "code_postal": "76640", "coordonnees_gps": [49.6510172179, 0.600020704454], "code_commune_insee": "76531"}, "geometry": {"type": "Point", "coordinates": [0.600020704454, 49.6510172179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "944e1baf346f74861736a81b9c9405c11c4fe9e5", "fields": {"nom_de_la_commune": "SAINNEVILLE", "libell_d_acheminement": "SAINNEVILLE", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76551"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc20ebdc9d98ecb417e31034b726498056b0851a", "fields": {"nom_de_la_commune": "ST AUBIN CELLOVILLE", "libell_d_acheminement": "ST AUBIN CELLOVILLE", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76558"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e381e9da7ba6567569b3d4e26bafee7956e3b7c", "fields": {"nom_de_la_commune": "ST AUBIN SUR SCIE", "libell_d_acheminement": "ST AUBIN SUR SCIE", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76565"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2057829fb989b4c2a9fb01d16c77ea43e472cf8a", "fields": {"nom_de_la_commune": "STE AUSTREBERTHE", "libell_d_acheminement": "STE AUSTREBERTHE", "code_postal": "76570", "coordonnees_gps": [49.5940361385, 0.950208566967], "code_commune_insee": "76566"}, "geometry": {"type": "Point", "coordinates": [0.950208566967, 49.5940361385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86c4fe33046a909a0e5b5b69b4cc5e8c5a8e1c82", "fields": {"nom_de_la_commune": "STE CROIX SUR BUCHY", "libell_d_acheminement": "STE CROIX SUR BUCHY", "code_postal": "76750", "coordonnees_gps": [49.5594523897, 1.35159679533], "code_commune_insee": "76571"}, "geometry": {"type": "Point", "coordinates": [1.35159679533, 49.5594523897]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d787006f7247646f1b0d60d3e6e46dc707bd3bd", "fields": {"nom_de_la_commune": "ST DENIS D ACLON", "libell_d_acheminement": "ST DENIS D ACLON", "code_postal": "76860", "coordonnees_gps": [49.8805230118, 0.952829289971], "code_commune_insee": "76572"}, "geometry": {"type": "Point", "coordinates": [0.952829289971, 49.8805230118]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "789523fa21ae54e364b018b30b5f33b072083826", "fields": {"nom_de_la_commune": "ST GEORGES SUR FONTAINE", "libell_d_acheminement": "ST GEORGES SUR FONTAINE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76580"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90ab15b948d6adbf368497834b30550d9bd0ce73", "fields": {"nom_de_la_commune": "ST GERMAIN D ETABLES", "libell_d_acheminement": "ST GERMAIN D ETABLES", "code_postal": "76590", "coordonnees_gps": [49.7970976502, 1.12197403222], "code_commune_insee": "76582"}, "geometry": {"type": "Point", "coordinates": [1.12197403222, 49.7970976502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d1c73d94da3e436b7f68a753624b2af8c18fcd7", "fields": {"nom_de_la_commune": "ST GERMAIN SOUS CAILLY", "libell_d_acheminement": "ST GERMAIN SOUS CAILLY", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76583"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b45635b1378cf35e344e828522c0c5dd42a170c2", "fields": {"nom_de_la_commune": "ST JEAN DE LA NEUVILLE", "libell_d_acheminement": "ST JEAN DE LA NEUVILLE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76593"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aab3308d9408a2d34a82f43f305cda0ef2e2137", "fields": {"nom_de_la_commune": "ST LEGER DU BOURG DENIS", "libell_d_acheminement": "ST LEGER DU BOURG DENIS", "code_postal": "76160", "coordonnees_gps": [49.45757124, 1.20910529231], "code_commune_insee": "76599"}, "geometry": {"type": "Point", "coordinates": [1.20910529231, 49.45757124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b693d135cf55636b582cf7c7217811a3d64db52b", "fields": {"nom_de_la_commune": "ST MARTIN AUX ARBRES", "libell_d_acheminement": "ST MARTIN AUX ARBRES", "code_postal": "76760", "coordonnees_gps": [49.6677030275, 0.908405860625], "code_commune_insee": "76611"}, "geometry": {"type": "Point", "coordinates": [0.908405860625, 49.6677030275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f600d499f6c8019805e41840ba523f8fcefef752", "fields": {"nom_de_la_commune": "ST MARTIN AUX BUNEAUX", "libell_d_acheminement": "ST MARTIN AUX BUNEAUX", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76613"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06969eda93a86ad2f9668fdb92142d3149d27c9d", "fields": {"code_postal": "76630", "code_commune_insee": "76618", "libell_d_acheminement": "PETIT CAUX", "ligne_5": "GUILMECOURT", "nom_de_la_commune": "PETIT CAUX", "coordonnees_gps": [49.9057063551, 1.31395145931]}, "geometry": {"type": "Point", "coordinates": [1.31395145931, 49.9057063551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "377390daa352537ce7a170b720e1d784ec507f6b", "fields": {"nom_de_la_commune": "ST MARTIN L HORTIER", "libell_d_acheminement": "ST MARTIN L HORTIER", "code_postal": "76270", "coordonnees_gps": [49.7406847594, 1.46475769739], "code_commune_insee": "76620"}, "geometry": {"type": "Point", "coordinates": [1.46475769739, 49.7406847594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "135864758f838cde5fb75b299c07b95860837c8a", "fields": {"nom_de_la_commune": "ST PAER", "libell_d_acheminement": "ST PAER", "code_postal": "76480", "coordonnees_gps": [49.4756537781, 0.881261828892], "code_commune_insee": "76631"}, "geometry": {"type": "Point", "coordinates": [0.881261828892, 49.4756537781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d25367ff5822c0f39106189c93e5489660001a", "fields": {"nom_de_la_commune": "CHAMADELLE", "libell_d_acheminement": "CHAMADELLE", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33124"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7553953d56fe7538d1965f608045bb839ba9431", "fields": {"nom_de_la_commune": "CURSAN", "libell_d_acheminement": "CURSAN", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33145"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ef6e9e84ad695df7269b8e333dc2e6c62bbf0ec", "fields": {"nom_de_la_commune": "DIEULIVOL", "libell_d_acheminement": "DIEULIVOL", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33150"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6ddeb109c55a5949ad22a9d94a9b9182515bde6", "fields": {"nom_de_la_commune": "DONZAC", "libell_d_acheminement": "DONZAC", "code_postal": "33410", "coordonnees_gps": [44.6407642381, -0.28112902965], "code_commune_insee": "33152"}, "geometry": {"type": "Point", "coordinates": [-0.28112902965, 44.6407642381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5acf2e1678318de94dd788e6be52fa85e7b40175", "fields": {"nom_de_la_commune": "LES EGLISOTTES ET CHALAURES", "libell_d_acheminement": "LES EGLISOTTES ET CHALAURES", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33154"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e525255894ecc6c286ab0c9121a9463e3d824e", "fields": {"nom_de_la_commune": "ESCAUDES", "libell_d_acheminement": "ESCAUDES", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33155"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f6c9799c95bdbaf345e2be05e2e22c021f1ed25", "fields": {"nom_de_la_commune": "FALEYRAS", "libell_d_acheminement": "FALEYRAS", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33163"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bf98ca85e2eb32657726dc85db3d1cca74bccea", "fields": {"nom_de_la_commune": "FARGUES ST HILAIRE", "libell_d_acheminement": "FARGUES ST HILAIRE", "code_postal": "33370", "coordonnees_gps": [44.8448177723, -0.436978592688], "code_commune_insee": "33165"}, "geometry": {"type": "Point", "coordinates": [-0.436978592688, 44.8448177723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebe6e4b4ceaad2539e8171dac7681d94c547026d", "fields": {"nom_de_la_commune": "FRONTENAC", "libell_d_acheminement": "FRONTENAC", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33175"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6247a5a84f0d9595628654bf34ab75a22d0a423", "fields": {"nom_de_la_commune": "GAILLAN EN MEDOC", "libell_d_acheminement": "GAILLAN EN MEDOC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33177"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb782d804b1061f8b5a59463a52df6db2679cb81", "fields": {"nom_de_la_commune": "GOUALADE", "libell_d_acheminement": "GOUALADE", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33190"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98f41dc436ba44caf6af3bfcec3366971c7cce2d", "fields": {"nom_de_la_commune": "GOURS", "libell_d_acheminement": "GOURS", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33191"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7a01edb460540d28b86bcd119ff6ffcf4507231", "fields": {"nom_de_la_commune": "GRIGNOLS", "libell_d_acheminement": "GRIGNOLS", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33195"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1810737403941e7ea80ea527f3486770e4500ae0", "fields": {"nom_de_la_commune": "HAUX", "libell_d_acheminement": "HAUX", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33201"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1927402dd43dc0f2047f13809b305a456b1f4951", "fields": {"nom_de_la_commune": "HOURTIN", "libell_d_acheminement": "HOURTIN", "code_postal": "33990", "coordonnees_gps": [45.2054974489, -1.06281862188], "code_commune_insee": "33203"}, "geometry": {"type": "Point", "coordinates": [-1.06281862188, 45.2054974489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa025d13a59529fc8c87329c55978091e2e9f879", "fields": {"nom_de_la_commune": "JAU DIGNAC ET LOIRAC", "libell_d_acheminement": "JAU DIGNAC ET LOIRAC", "code_postal": "33590", "coordonnees_gps": [45.4294331606, -1.04372430811], "code_commune_insee": "33208"}, "geometry": {"type": "Point", "coordinates": [-1.04372430811, 45.4294331606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff01c1d586a720bb6f1e3a2707c3253e4549375", "fields": {"nom_de_la_commune": "JUILLAC", "libell_d_acheminement": "JUILLAC", "code_postal": "33890", "coordonnees_gps": [44.8028271638, 0.0747439245275], "code_commune_insee": "33210"}, "geometry": {"type": "Point", "coordinates": [0.0747439245275, 44.8028271638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3bb4a488fe199d098b72de22d9942275ec86ac", "fields": {"nom_de_la_commune": "LACANAU", "libell_d_acheminement": "LACANAU", "code_postal": "33680", "coordonnees_gps": [44.9228309984, -1.08469185775], "code_commune_insee": "33214"}, "geometry": {"type": "Point", "coordinates": [-1.08469185775, 44.9228309984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47943cddce7061f8be244ec222fa1631f4a74d11", "fields": {"code_postal": "33680", "code_commune_insee": "33214", "libell_d_acheminement": "LACANAU", "ligne_5": "LACANAU OCEAN", "nom_de_la_commune": "LACANAU", "coordonnees_gps": [44.9228309984, -1.08469185775]}, "geometry": {"type": "Point", "coordinates": [-1.08469185775, 44.9228309984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "373334fe609f0696b1b43cd160585346cfb1f838", "fields": {"nom_de_la_commune": "LANDERROUAT", "libell_d_acheminement": "LANDERROUAT", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33223"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd897f785c04b55d7ee494d0399274c8f347d5f", "fields": {"nom_de_la_commune": "LANDERROUET SUR SEGUR", "libell_d_acheminement": "LANDERROUET SUR SEGUR", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33224"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2831ec5a8212e9606cde63fcf4b0c496d815dbc", "fields": {"nom_de_la_commune": "LANGOIRAN", "libell_d_acheminement": "LANGOIRAN", "code_postal": "33550", "coordonnees_gps": [44.7161292323, -0.362078862406], "code_commune_insee": "33226"}, "geometry": {"type": "Point", "coordinates": [-0.362078862406, 44.7161292323]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2caa28b99a2aedd7d3242f0c1cb182fde958b21b", "fields": {"nom_de_la_commune": "LANTON", "libell_d_acheminement": "LANTON", "code_postal": "33138", "coordonnees_gps": [44.7747400288, -0.9772534872], "code_commune_insee": "33229"}, "geometry": {"type": "Point", "coordinates": [-0.9772534872, 44.7747400288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6e259dec49b18ffa5d0d75c87a73a61c358230", "fields": {"nom_de_la_commune": "LEGE CAP FERRET", "libell_d_acheminement": "LEGE CAP FERRET", "code_postal": "33950", "coordonnees_gps": [44.7600136809, -1.19365601812], "code_commune_insee": "33236"}, "geometry": {"type": "Point", "coordinates": [-1.19365601812, 44.7600136809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b533318d9115a817ffbf8b47c7ac3e8f5413e38", "fields": {"nom_de_la_commune": "LERM ET MUSSET", "libell_d_acheminement": "LERM ET MUSSET", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33239"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd4d0d34774c4d04c5e68ba214ad3df9ed459d89", "fields": {"nom_de_la_commune": "LOUPIAC DE LA REOLE", "libell_d_acheminement": "LOUPIAC DE LA REOLE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33254"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de11d7f68c2a6e019566b3a2fe33435409d2e78e", "fields": {"nom_de_la_commune": "LUGON ET L ILE DU CARNAY", "libell_d_acheminement": "LUGON ET L ILE DU CARNAY", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33259"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "777668f74bf39569364d5806966f92dcf3617d24", "fields": {"nom_de_la_commune": "LUGOS", "libell_d_acheminement": "LUGOS", "code_postal": "33830", "coordonnees_gps": [44.48117634, -0.823096035056], "code_commune_insee": "33260"}, "geometry": {"type": "Point", "coordinates": [-0.823096035056, 44.48117634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8989b1f31aa4e762f44caf7aa0a74b3d0de099e", "fields": {"nom_de_la_commune": "MADIRAC", "libell_d_acheminement": "MADIRAC", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33263"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fbc8cf61121ef6ca91fc7e1c5cb7d95e09e29fd", "fields": {"nom_de_la_commune": "MARANSIN", "libell_d_acheminement": "MARANSIN", "code_postal": "33230", "coordonnees_gps": [45.0646115139, -0.106402180132], "code_commune_insee": "33264"}, "geometry": {"type": "Point", "coordinates": [-0.106402180132, 45.0646115139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba6c1170c9b5819b7d8d4007b021bc802c2397b7", "fields": {"nom_de_la_commune": "MARIONS", "libell_d_acheminement": "MARIONS", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33271"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6919cfbe162508841cb87b29051a4f974201d0dc", "fields": {"nom_de_la_commune": "MARTRES", "libell_d_acheminement": "MARTRES", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33275"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a6f8ff5ea970fcbf75886d914155061bfaaffb5", "fields": {"nom_de_la_commune": "MASSEILLES", "libell_d_acheminement": "MASSEILLES", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33276"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "864750331390f740986603cbcc27369eea3cf0d9", "fields": {"nom_de_la_commune": "MONGAUZY", "libell_d_acheminement": "MONGAUZY", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33287"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0393eab77cc5b51f0844f5f21cec75cf71189da", "fields": {"nom_de_la_commune": "MONSEGUR", "libell_d_acheminement": "MONSEGUR", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33289"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cb316f423cb36ccee6920acf6aa644c00dee5f9", "fields": {"code_postal": "33570", "code_commune_insee": "33290", "libell_d_acheminement": "MONTAGNE", "ligne_5": "ST GEORGES", "nom_de_la_commune": "MONTAGNE", "coordonnees_gps": [44.952442946, -0.0837974329549]}, "geometry": {"type": "Point", "coordinates": [-0.0837974329549, 44.952442946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b0ac321299d8271164ed824ae198cf065dd382b", "fields": {"nom_de_la_commune": "NAUJAC SUR MER", "libell_d_acheminement": "NAUJAC SUR MER", "code_postal": "33990", "coordonnees_gps": [45.2054974489, -1.06281862188], "code_commune_insee": "33300"}, "geometry": {"type": "Point", "coordinates": [-1.06281862188, 45.2054974489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5606619a7a08889e4850598ff4041cf01ea8af00", "fields": {"nom_de_la_commune": "ORDONNAC", "libell_d_acheminement": "ORDONNAC", "code_postal": "33340", "coordonnees_gps": [45.3178388382, -0.921501546719], "code_commune_insee": "33309"}, "geometry": {"type": "Point", "coordinates": [-0.921501546719, 45.3178388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6157bf45d506787254d59ed82982ed0f02d14a78", "fields": {"nom_de_la_commune": "PELLEGRUE", "libell_d_acheminement": "PELLEGRUE", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33316"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ed829b3ce1d83c3f268402cdfae2c462b21ed44", "fields": {"nom_de_la_commune": "PERISSAC", "libell_d_acheminement": "PERISSAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33317"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cd39eb26db22450581911603a72ac9c2224d8e7", "fields": {"nom_de_la_commune": "PEUJARD", "libell_d_acheminement": "PEUJARD", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33321"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1641aa7c7932dd9f249598a0aa56e2bc95aa1c4", "fields": {"nom_de_la_commune": "LE PORGE", "libell_d_acheminement": "LE PORGE", "code_postal": "33680", "coordonnees_gps": [44.9228309984, -1.08469185775], "code_commune_insee": "33333"}, "geometry": {"type": "Point", "coordinates": [-1.08469185775, 44.9228309984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b7611c35920f358cac4fd3b3334ea0cb76afc8", "fields": {"nom_de_la_commune": "PREIGNAC", "libell_d_acheminement": "PREIGNAC", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33337"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebfd382bf8a7246b7b6ac996c56e857e0659f2d3", "fields": {"nom_de_la_commune": "PUJOLS SUR CIRON", "libell_d_acheminement": "PUJOLS SUR CIRON", "code_postal": "33210", "coordonnees_gps": [44.533795688, -0.265938540556], "code_commune_insee": "33343"}, "geometry": {"type": "Point", "coordinates": [-0.265938540556, 44.533795688]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "975bd9d5239872b755c47c5d812a537f708e1e4c", "fields": {"nom_de_la_commune": "RAUZAN", "libell_d_acheminement": "RAUZAN", "code_postal": "33420", "coordonnees_gps": [44.8153899844, -0.202738807758], "code_commune_insee": "33350"}, "geometry": {"type": "Point", "coordinates": [-0.202738807758, 44.8153899844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b313508befca57c5a0a2b59aa32d35236e7d5c38", "fields": {"nom_de_la_commune": "LA REOLE", "libell_d_acheminement": "LA REOLE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33352"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a772fbf46e71b2302b9abd3c5eca2d80693822c8", "fields": {"nom_de_la_commune": "ST AIGNAN", "libell_d_acheminement": "ST AIGNAN", "code_postal": "33126", "coordonnees_gps": [44.9271630379, -0.290628388761], "code_commune_insee": "33365"}, "geometry": {"type": "Point", "coordinates": [-0.290628388761, 44.9271630379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cfc9eb6b3a282e6630b744f9dec084850502893", "fields": {"nom_de_la_commune": "ST ANTOINE SUR L ISLE", "libell_d_acheminement": "ST ANTOINE SUR L ISLE", "code_postal": "33660", "coordonnees_gps": [45.0164710612, 0.00672455468226], "code_commune_insee": "33373"}, "geometry": {"type": "Point", "coordinates": [0.00672455468226, 45.0164710612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e5fbd337239ab85a847e67b969c84a065a879b7", "fields": {"nom_de_la_commune": "ST BRICE", "libell_d_acheminement": "ST BRICE", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33379"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b45c0bdf58c073c91ed86038d7afcbe55e39f18c", "fields": {"nom_de_la_commune": "ST CAPRAIS DE BLAYE", "libell_d_acheminement": "ST CAPRAIS DE BLAYE", "code_postal": "33820", "coordonnees_gps": [45.2723734342, -0.625370520249], "code_commune_insee": "33380"}, "geometry": {"type": "Point", "coordinates": [-0.625370520249, 45.2723734342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "171c860a806e924e17f675d65fe9003872d11a2a", "fields": {"nom_de_la_commune": "ST COME", "libell_d_acheminement": "ST COME", "code_postal": "33430", "coordonnees_gps": [44.4153126587, -0.214072463559], "code_commune_insee": "33391"}, "geometry": {"type": "Point", "coordinates": [-0.214072463559, 44.4153126587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "197d53e522be6dc974dafa787f4cf023127cf374", "fields": {"nom_de_la_commune": "ST ESTEPHE", "libell_d_acheminement": "ST ESTEPHE", "code_postal": "33180", "coordonnees_gps": [45.262541575, -0.809284319605], "code_commune_insee": "33395"}, "geometry": {"type": "Point", "coordinates": [-0.809284319605, 45.262541575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73342ac01c85ea93ba319e0c985e8b841978134e", "fields": {"nom_de_la_commune": "ST EXUPERY", "libell_d_acheminement": "ST EXUPERY", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33398"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45e461d49f13dfa8c72a7f91c838766a4754dde9", "fields": {"nom_de_la_commune": "ST FELIX DE FONCAUDE", "libell_d_acheminement": "ST FELIX DE FONCAUDE", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33399"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e39d0c3da5bea764d20457885d6b15050d4f3780", "fields": {"nom_de_la_commune": "STE FOY LA LONGUE", "libell_d_acheminement": "STE FOY LA LONGUE", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33403"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "372d43ece0db9edb94131347fff7cbcc875aa155", "fields": {"nom_de_la_commune": "ST GENES DE LOMBAUD", "libell_d_acheminement": "ST GENES DE LOMBAUD", "code_postal": "33670", "coordonnees_gps": [44.774149255, -0.344903614782], "code_commune_insee": "33408"}, "geometry": {"type": "Point", "coordinates": [-0.344903614782, 44.774149255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5997f47eb29f28a3c295460764cf2fed431203c8", "fields": {"nom_de_la_commune": "ST GENIS DU BOIS", "libell_d_acheminement": "ST GENIS DU BOIS", "code_postal": "33760", "coordonnees_gps": [44.720911942, -0.222683624027], "code_commune_insee": "33409"}, "geometry": {"type": "Point", "coordinates": [-0.222683624027, 44.720911942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41a7ff6f04630e168009d6b19c747389df780e71", "fields": {"nom_de_la_commune": "ST GERMAIN DE LA RIVIERE", "libell_d_acheminement": "ST GERMAIN DE LA RIVIERE", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33414"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae92bb0458ef4dbd5cdfdf7e47fa53ce05e99fe6", "fields": {"nom_de_la_commune": "ST GIRONS D AIGUEVIVES", "libell_d_acheminement": "ST GIRONS D AIGUEVIVES", "code_postal": "33920", "coordonnees_gps": [45.1522885128, -0.47893297099], "code_commune_insee": "33416"}, "geometry": {"type": "Point", "coordinates": [-0.47893297099, 45.1522885128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "559bdff89f4985b94ea11f4fe682241f9e6d1449", "fields": {"nom_de_la_commune": "ST HILAIRE DE LA NOAILLE", "libell_d_acheminement": "ST HILAIRE DE LA NOAILLE", "code_postal": "33190", "coordonnees_gps": [44.5792868771, -0.0315200692502], "code_commune_insee": "33418"}, "geometry": {"type": "Point", "coordinates": [-0.0315200692502, 44.5792868771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "522924ba6ea670d06435da6663bedf40ff727ddf", "fields": {"nom_de_la_commune": "ST LAURENT DES COMBES", "libell_d_acheminement": "ST LAURENT DES COMBES", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33426"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd56bc93fb3dcf8b63e7aba0086517058058baaa", "fields": {"nom_de_la_commune": "ST LOUIS DE MONTFERRAND", "libell_d_acheminement": "ST LOUIS DE MONTFERRAND", "code_postal": "33440", "coordonnees_gps": [44.9552105783, -0.50282224185], "code_commune_insee": "33434"}, "geometry": {"type": "Point", "coordinates": [-0.50282224185, 44.9552105783]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52948c1a7e0acbc3fd875e82444f1630f7dd330e", "fields": {"nom_de_la_commune": "ST MAGNE", "libell_d_acheminement": "ST MAGNE", "code_postal": "33125", "coordonnees_gps": [44.5166549136, -0.635075777834], "code_commune_insee": "33436"}, "geometry": {"type": "Point", "coordinates": [-0.635075777834, 44.5166549136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bebe4d72d949c57aabeb41fdfe851dc0cc9b158", "fields": {"nom_de_la_commune": "ST MAIXANT", "libell_d_acheminement": "ST MAIXANT", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33438"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6791fe317a9ae6a9907abedf7257e9bb1c2430c", "fields": {"nom_de_la_commune": "ST MARTIAL", "libell_d_acheminement": "ST MARTIAL", "code_postal": "33490", "coordonnees_gps": [44.5991955502, -0.193698666219], "code_commune_insee": "33440"}, "geometry": {"type": "Point", "coordinates": [-0.193698666219, 44.5991955502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a2d2961869f8f7f12b1227ca932334250d3bae5", "fields": {"nom_de_la_commune": "ST MARTIN DU PUY", "libell_d_acheminement": "ST MARTIN DU PUY", "code_postal": "33540", "coordonnees_gps": [44.6952365542, -0.0876801263144], "code_commune_insee": "33446"}, "geometry": {"type": "Point", "coordinates": [-0.0876801263144, 44.6952365542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e5dc031e0ddc5d72b8d1d88bbab14e8eb6b1be", "fields": {"nom_de_la_commune": "ST MICHEL DE CASTELNAU", "libell_d_acheminement": "ST MICHEL DE CASTELNAU", "code_postal": "33840", "coordonnees_gps": [44.2832393972, -0.225943636263], "code_commune_insee": "33450"}, "geometry": {"type": "Point", "coordinates": [-0.225943636263, 44.2832393972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc03f218edf7b366bad8b59fe5867b0c48018b0f", "fields": {"nom_de_la_commune": "ST PAUL", "libell_d_acheminement": "ST PAUL", "code_postal": "33390", "coordonnees_gps": [45.1614457931, -0.635053100817], "code_commune_insee": "33458"}, "geometry": {"type": "Point", "coordinates": [-0.635053100817, 45.1614457931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f5462fff56426a32add5a12847252f5225552de", "fields": {"nom_de_la_commune": "STE RADEGONDE", "libell_d_acheminement": "STE RADEGONDE", "code_postal": "33350", "coordonnees_gps": [44.8382967772, -0.0394858773529], "code_commune_insee": "33468"}, "geometry": {"type": "Point", "coordinates": [-0.0394858773529, 44.8382967772]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1762242baee9475eb08c37239b68b0efdc640b83", "fields": {"nom_de_la_commune": "ST VIVIEN DE MONSEGUR", "libell_d_acheminement": "ST VIVIEN DE MONSEGUR", "code_postal": "33580", "coordonnees_gps": [44.6539394412, 0.0759400504492], "code_commune_insee": "33491"}, "geometry": {"type": "Point", "coordinates": [0.0759400504492, 44.6539394412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad9a8429ef290c88e65fa216f714bcda2ef15ab4", "fields": {"nom_de_la_commune": "SENDETS", "libell_d_acheminement": "SENDETS", "code_postal": "33690", "coordonnees_gps": [44.4083889583, -0.0564434603263], "code_commune_insee": "33511"}, "geometry": {"type": "Point", "coordinates": [-0.0564434603263, 44.4083889583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb1a3251aa3ce4c626d1c303793f5a13836a0481", "fields": {"nom_de_la_commune": "SOUSSAC", "libell_d_acheminement": "SOUSSAC", "code_postal": "33790", "coordonnees_gps": [44.7424178003, 0.068414061139], "code_commune_insee": "33516"}, "geometry": {"type": "Point", "coordinates": [0.068414061139, 44.7424178003]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc6a8c5b0e8b6b4e72a87af16f99e2637c4d7450", "fields": {"nom_de_la_commune": "TALAIS", "libell_d_acheminement": "TALAIS", "code_postal": "33590", "coordonnees_gps": [45.4294331606, -1.04372430811], "code_commune_insee": "33521"}, "geometry": {"type": "Point", "coordinates": [-1.04372430811, 45.4294331606]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2edfa3970e56770c83575d155f32fc64015b3c05", "fields": {"nom_de_la_commune": "TAURIAC", "libell_d_acheminement": "TAURIAC", "code_postal": "33710", "coordonnees_gps": [45.0625435802, -0.557284845393], "code_commune_insee": "33525"}, "geometry": {"type": "Point", "coordinates": [-0.557284845393, 45.0625435802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b56f2d800454adc34babb264f338413bdd0b750", "fields": {"nom_de_la_commune": "LE TEMPLE", "libell_d_acheminement": "LE TEMPLE", "code_postal": "33680", "coordonnees_gps": [44.9228309984, -1.08469185775], "code_commune_insee": "33528"}, "geometry": {"type": "Point", "coordinates": [-1.08469185775, 44.9228309984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4a82dff73188858483d587a29c2d29a70fd826b", "fields": {"code_postal": "33260", "code_commune_insee": "33529", "libell_d_acheminement": "LA TESTE DE BUCH", "ligne_5": "CAZAUX", "nom_de_la_commune": "LA TESTE DE BUCH", "coordonnees_gps": [44.5562733518, -1.17522251719]}, "geometry": {"type": "Point", "coordinates": [-1.17522251719, 44.5562733518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdececfc8c892728e66cc1572022d76deb6aca5c", "fields": {"nom_de_la_commune": "UZESTE", "libell_d_acheminement": "UZESTE", "code_postal": "33730", "coordonnees_gps": [44.4367877198, -0.375967403077], "code_commune_insee": "33537"}, "geometry": {"type": "Point", "coordinates": [-0.375967403077, 44.4367877198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b10df577b160a40f3f52068bc193dbed139cbed3", "fields": {"nom_de_la_commune": "VIGNONET", "libell_d_acheminement": "VIGNONET", "code_postal": "33330", "coordonnees_gps": [44.8802992664, -0.154465376932], "code_commune_insee": "33546"}, "geometry": {"type": "Point", "coordinates": [-0.154465376932, 44.8802992664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "535cdc6b920015b2c5feed6f11cba39ceeba563c", "fields": {"nom_de_la_commune": "VILLANDRAUT", "libell_d_acheminement": "VILLANDRAUT", "code_postal": "33730", "coordonnees_gps": [44.4367877198, -0.375967403077], "code_commune_insee": "33547"}, "geometry": {"type": "Point", "coordinates": [-0.375967403077, 44.4367877198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a44101409dfbe68ae27271cbabca6485a29bed0d", "fields": {"nom_de_la_commune": "VILLEGOUGE", "libell_d_acheminement": "VILLEGOUGE", "code_postal": "33141", "coordonnees_gps": [44.9675844038, -0.299545189755], "code_commune_insee": "33548"}, "geometry": {"type": "Point", "coordinates": [-0.299545189755, 44.9675844038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b424e28bd71cd0b453e21bf4b701f771586049f8", "fields": {"nom_de_la_commune": "VIRSAC", "libell_d_acheminement": "VIRSAC", "code_postal": "33240", "coordonnees_gps": [44.9990310815, -0.398251913536], "code_commune_insee": "33553"}, "geometry": {"type": "Point", "coordinates": [-0.398251913536, 44.9990310815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26b974017c9b850ea748dca09afdfc96588f8c82", "fields": {"nom_de_la_commune": "MARCHEPRIME", "libell_d_acheminement": "MARCHEPRIME", "code_postal": "33380", "coordonnees_gps": [44.6379766887, -0.903316939902], "code_commune_insee": "33555"}, "geometry": {"type": "Point", "coordinates": [-0.903316939902, 44.6379766887]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93f8b91c0554e566520b1d739b7737407506070d", "fields": {"code_postal": "34300", "code_commune_insee": "34003", "libell_d_acheminement": "AGDE", "ligne_5": "LE CAP D AGDE", "nom_de_la_commune": "AGDE", "coordonnees_gps": [43.3094378248, 3.48447174054]}, "geometry": {"type": "Point", "coordinates": [3.48447174054, 43.3094378248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a42cada15b14c4cb0e026a3f8b86936e11505f66", "fields": {"nom_de_la_commune": "AGONES", "libell_d_acheminement": "AGONES", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34005"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "766ae49921e096bb37b417a63db5b2ba897abf5a", "fields": {"nom_de_la_commune": "AIGUES VIVES", "libell_d_acheminement": "AIGUES VIVES", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34007"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e69f93b22138aac31686503dcc0d0dcf9277ece9", "fields": {"nom_de_la_commune": "ASSAS", "libell_d_acheminement": "ASSAS", "code_postal": "34820", "coordonnees_gps": [43.7090659495, 3.91319760845], "code_commune_insee": "34014"}, "geometry": {"type": "Point", "coordinates": [3.91319760845, 43.7090659495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80836eb5fafaaa944410bec6b400683e4998a32", "fields": {"nom_de_la_commune": "AZILLANET", "libell_d_acheminement": "AZILLANET", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34020"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b082e71441fa9a5bccbd0bdb2fe1a11b955eccd0", "fields": {"nom_de_la_commune": "BALARUC LE VIEUX", "libell_d_acheminement": "BALARUC LE VIEUX", "code_postal": "34540", "coordonnees_gps": [43.4557715487, 3.69388023516], "code_commune_insee": "34024"}, "geometry": {"type": "Point", "coordinates": [3.69388023516, 43.4557715487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccc05f3fa79bb432c858b29592b7c13d834ab627", "fields": {"nom_de_la_commune": "BEDARIEUX", "libell_d_acheminement": "BEDARIEUX", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34028"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0faa15ddb5089c9f6bd62fdc994bf3ce93b08655", "fields": {"nom_de_la_commune": "LE BOSC", "libell_d_acheminement": "LE BOSC", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34036"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19d0169a834b94d76e3b99a03afeddc4fc63865c", "fields": {"nom_de_la_commune": "BRISSAC", "libell_d_acheminement": "BRISSAC", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34042"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660b694ad03378c84405f8177c01a57c5d2b89f5", "fields": {"nom_de_la_commune": "CABREROLLES", "libell_d_acheminement": "CABREROLLES", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34044"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92155c8d7dc201139d515af4151670446c18ec3d", "fields": {"nom_de_la_commune": "CAMBON ET SALVERGUES", "libell_d_acheminement": "CAMBON ET SALVERGUES", "code_postal": "34330", "coordonnees_gps": [43.5945013819, 2.75693691265], "code_commune_insee": "34046"}, "geometry": {"type": "Point", "coordinates": [2.75693691265, 43.5945013819]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9daf1f87512ee3133dd4dec56df148c9353787c", "fields": {"nom_de_la_commune": "CAMPLONG", "libell_d_acheminement": "CAMPLONG", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34049"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2a5e740fa5e849adac369a9a53ec3d0773b4129", "fields": {"nom_de_la_commune": "CARLENCAS ET LEVAS", "libell_d_acheminement": "CARLENCAS ET LEVAS", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34053"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a8c5630b307c9f9cef2aed25d758b37f8c4451", "fields": {"nom_de_la_commune": "CASTANET LE HAUT", "libell_d_acheminement": "CASTANET LE HAUT", "code_postal": "34610", "coordonnees_gps": [43.6529362037, 2.99617489245], "code_commune_insee": "34055"}, "geometry": {"type": "Point", "coordinates": [2.99617489245, 43.6529362037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d4f876aff57bd0147b0d39c01d68c962cc50af3", "fields": {"nom_de_la_commune": "CASTELNAU LE LEZ", "libell_d_acheminement": "CASTELNAU LE LEZ", "code_postal": "34170", "coordonnees_gps": [43.6379670076, 3.91229109044], "code_commune_insee": "34057"}, "geometry": {"type": "Point", "coordinates": [3.91229109044, 43.6379670076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42db4b2f4837b65a7aa1b3a7f510c33cae72dffc", "fields": {"nom_de_la_commune": "LA CAUNETTE", "libell_d_acheminement": "LA CAUNETTE", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34059"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da96de08b33e8bf9ddc728dbcb5913aa737bb937", "fields": {"nom_de_la_commune": "CAUSSE DE LA SELLE", "libell_d_acheminement": "CAUSSE DE LA SELLE", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34060"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "211606e0cfbf29eb105daecd9177637f52de179d", "fields": {"nom_de_la_commune": "CAUSSINIOJOULS", "libell_d_acheminement": "CAUSSINIOJOULS", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34062"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6933376cc9fb53dffd3dc2fb8b2c716da942b680", "fields": {"nom_de_la_commune": "MAFFLIERS", "libell_d_acheminement": "MAFFLIERS", "code_postal": "95560", "coordonnees_gps": [49.0667555208, 2.29836937772], "code_commune_insee": "95353"}, "geometry": {"type": "Point", "coordinates": [2.29836937772, 49.0667555208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "149f9344662204cd67f399df6e7de0cf940978c2", "fields": {"nom_de_la_commune": "MAREIL EN FRANCE", "libell_d_acheminement": "MAREIL EN FRANCE", "code_postal": "95850", "coordonnees_gps": [49.0746281693, 2.42764597482], "code_commune_insee": "95365"}, "geometry": {"type": "Point", "coordinates": [2.42764597482, 49.0746281693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5947cb01ddbfc7ffdfd2945f4b30533496349e2e", "fields": {"nom_de_la_commune": "MARGENCY", "libell_d_acheminement": "MARGENCY", "code_postal": "95580", "coordonnees_gps": [49.0070961158, 2.30020142224], "code_commune_insee": "95369"}, "geometry": {"type": "Point", "coordinates": [2.30020142224, 49.0070961158]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57da0ecc902463667a566896ce612ce82e82f5f0", "fields": {"nom_de_la_commune": "MENUCOURT", "libell_d_acheminement": "MENUCOURT", "code_postal": "95180", "coordonnees_gps": [49.0273000331, 1.97386966143], "code_commune_insee": "95388"}, "geometry": {"type": "Point", "coordinates": [1.97386966143, 49.0273000331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92be33dafd2ebd8988e36e7e195ceed93e9ba8fa", "fields": {"nom_de_la_commune": "MONTMORENCY", "libell_d_acheminement": "MONTMORENCY", "code_postal": "95160", "coordonnees_gps": [48.9920553677, 2.32124546377], "code_commune_insee": "95428"}, "geometry": {"type": "Point", "coordinates": [2.32124546377, 48.9920553677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d89ae3858133c4a857f95e760cac7fbd179e2b07", "fields": {"nom_de_la_commune": "MONTREUIL SUR EPTE", "libell_d_acheminement": "MONTREUIL SUR EPTE", "code_postal": "95770", "coordonnees_gps": [49.1959926831, 1.69814198153], "code_commune_insee": "95429"}, "geometry": {"type": "Point", "coordinates": [1.69814198153, 49.1959926831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f8e0c504794e50024e45738a0063d3f07a301fb", "fields": {"nom_de_la_commune": "NESLES LA VALLEE", "libell_d_acheminement": "NESLES LA VALLEE", "code_postal": "95690", "coordonnees_gps": [49.140346815, 2.15942436133], "code_commune_insee": "95446"}, "geometry": {"type": "Point", "coordinates": [2.15942436133, 49.140346815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f87bc0fd00b068295333f4a2b4600d52e03cba98", "fields": {"nom_de_la_commune": "NOISY SUR OISE", "libell_d_acheminement": "NOISY SUR OISE", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95456"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e847ed446569376f116bcd360048dc1138c425ec", "fields": {"nom_de_la_commune": "OMERVILLE", "libell_d_acheminement": "OMERVILLE", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95462"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d1c8d9c5f54962aff20c91ba43469d14ded843e", "fields": {"nom_de_la_commune": "PIERRELAYE", "libell_d_acheminement": "PIERRELAYE", "code_postal": "95480", "coordonnees_gps": [49.0191135363, 2.16069060879], "code_commune_insee": "95488"}, "geometry": {"type": "Point", "coordinates": [2.16069060879, 49.0191135363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c27cebec57bc19ce8976458cc0cf35abd9629ea9", "fields": {"nom_de_la_commune": "ST BRICE SOUS FORET", "libell_d_acheminement": "ST BRICE SOUS FORET", "code_postal": "95350", "coordonnees_gps": [49.0078529263, 2.34646436487], "code_commune_insee": "95539"}, "geometry": {"type": "Point", "coordinates": [2.34646436487, 49.0078529263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9234b22e1334f782add1a174f43d1c00329e65b1", "fields": {"nom_de_la_commune": "ST GRATIEN", "libell_d_acheminement": "ST GRATIEN", "code_postal": "95210", "coordonnees_gps": [48.9693159337, 2.28466574486], "code_commune_insee": "95555"}, "geometry": {"type": "Point", "coordinates": [2.28466574486, 48.9693159337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4813a032d53fb19598c2610cec927eb77d100e4d", "fields": {"nom_de_la_commune": "SEUGY", "libell_d_acheminement": "SEUGY", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95594"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f4891a6ad1fa62a3f2c9d36f54322ff2e79757", "fields": {"nom_de_la_commune": "SURVILLIERS", "libell_d_acheminement": "SURVILLIERS", "code_postal": "95470", "coordonnees_gps": [49.0842919677, 2.54827429077], "code_commune_insee": "95604"}, "geometry": {"type": "Point", "coordinates": [2.54827429077, 49.0842919677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e45fe241d6999f1fd55dd82a025d678d6e23b36", "fields": {"nom_de_la_commune": "THEUVILLE", "libell_d_acheminement": "THEUVILLE", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95611"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "698295fd9f28bb9bb5c18d4d272ebb59f05e7047", "fields": {"nom_de_la_commune": "LE THILLAY", "libell_d_acheminement": "LE THILLAY", "code_postal": "95500", "coordonnees_gps": [48.9856270002, 2.45534121324], "code_commune_insee": "95612"}, "geometry": {"type": "Point", "coordinates": [2.45534121324, 48.9856270002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a82d9ea397d98cf0cacec3d7cb350fe2c44e4fdb", "fields": {"nom_de_la_commune": "VALLANGOUJARD", "libell_d_acheminement": "VALLANGOUJARD", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95627"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb46709891bc7e719c0cbda7f57cda58fb73cd7", "fields": {"nom_de_la_commune": "VILLERS EN ARTHIES", "libell_d_acheminement": "VILLERS EN ARTHIES", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95676"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e94e6fd1f92f2b58c45b09d5549bd75c96177061", "fields": {"nom_de_la_commune": "VILLIERS ADAM", "libell_d_acheminement": "VILLIERS ADAM", "code_postal": "95840", "coordonnees_gps": [49.0653892741, 2.2420258849], "code_commune_insee": "95678"}, "geometry": {"type": "Point", "coordinates": [2.2420258849, 49.0653892741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd64511b39e6d5976f75673b3d7b7f88894beaab", "fields": {"nom_de_la_commune": "VILLIERS LE BEL", "libell_d_acheminement": "VILLIERS LE BEL", "code_postal": "95400", "coordonnees_gps": [49.0014583896, 2.40751013382], "code_commune_insee": "95680"}, "geometry": {"type": "Point", "coordinates": [2.40751013382, 49.0014583896]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc06ad26f266a8c61f0f979c3a1ad5ffcae73691", "fields": {"nom_de_la_commune": "ANSE BERTRAND", "libell_d_acheminement": "ANSE BERTRAND", "code_postal": "97121", "coordonnees_gps": [16.4654769414, -61.4621246483], "code_commune_insee": "97102"}, "geometry": {"type": "Point", "coordinates": [-61.4621246483, 16.4654769414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a416876e5a430b967c335e3286cf36ecbd914e27", "fields": {"code_postal": "97130", "code_commune_insee": "97107", "libell_d_acheminement": "CAPESTERRE BELLE EAU", "ligne_5": "STE MARIE", "nom_de_la_commune": "CAPESTERRE BELLE EAU", "coordonnees_gps": [16.0552203846, -61.6118226443]}, "geometry": {"type": "Point", "coordinates": [-61.6118226443, 16.0552203846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbdfd74f4ca7e6734934b8a8b3fcc2b106d7a6b0", "fields": {"nom_de_la_commune": "PETIT CANAL", "libell_d_acheminement": "PETIT CANAL", "code_postal": "97131", "coordonnees_gps": [16.389934769, -61.4497015093], "code_commune_insee": "97119"}, "geometry": {"type": "Point", "coordinates": [-61.4497015093, 16.389934769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d12afe98cb94d12e6fae47cc947eb57c3b3a34a2", "fields": {"nom_de_la_commune": "POINTE A PITRE", "libell_d_acheminement": "POINTE A PITRE", "code_postal": "97110", "coordonnees_gps": [16.2380667496, -61.5355740279], "code_commune_insee": "97120"}, "geometry": {"type": "Point", "coordinates": [-61.5355740279, 16.2380667496]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdbb2522a4e7a08f0fac55128e9c8a8cab92d2ea", "fields": {"nom_de_la_commune": "POINTE NOIRE", "libell_d_acheminement": "POINTE NOIRE", "code_postal": "97116", "coordonnees_gps": [16.2272378429, -61.7633385461], "code_commune_insee": "97121"}, "geometry": {"type": "Point", "coordinates": [-61.7633385461, 16.2272378429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ccbdd558c01f8507becaee42c5175662b618fa", "fields": {"nom_de_la_commune": "STE ANNE", "libell_d_acheminement": "STE ANNE", "code_postal": "97180", "coordonnees_gps": [16.2574429678, -61.3876760708], "code_commune_insee": "97128"}, "geometry": {"type": "Point", "coordinates": [-61.3876760708, 16.2574429678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07965323aa9ef4878a4d887eef42dbd793344d39", "fields": {"code_postal": "97180", "code_commune_insee": "97128", "libell_d_acheminement": "STE ANNE", "ligne_5": "DOUVILLE", "nom_de_la_commune": "STE ANNE", "coordonnees_gps": [16.2574429678, -61.3876760708]}, "geometry": {"type": "Point", "coordinates": [-61.3876760708, 16.2574429678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "499fa1770876df27c2d8f78c4176124ab2325c94", "fields": {"nom_de_la_commune": "TERRE DE BAS", "libell_d_acheminement": "TERRE DE BAS", "code_postal": "97136", "coordonnees_gps": [15.8543440567, -61.6336329172], "code_commune_insee": "97130"}, "geometry": {"type": "Point", "coordinates": [-61.6336329172, 15.8543440567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "201e0200dbe06b79054736c7d320ca5396648aa7", "fields": {"nom_de_la_commune": "LES ANSES D ARLET", "libell_d_acheminement": "LES ANSES D ARLET", "code_postal": "97217", "coordonnees_gps": [14.4986608999, -61.072398951], "code_commune_insee": "97202"}, "geometry": {"type": "Point", "coordinates": [-61.072398951, 14.4986608999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ecd89b15d8530fee3f40612ec89f0614c800704", "fields": {"nom_de_la_commune": "FORT DE FRANCE", "libell_d_acheminement": "FORT DE FRANCE", "code_postal": "97234", "coordonnees_gps": [14.6410271251, -61.069074331], "code_commune_insee": "97209"}, "geometry": {"type": "Point", "coordinates": [-61.069074331, 14.6410271251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ded5b3efa0e3a61e1c200705c5ecd08292f47b6", "fields": {"nom_de_la_commune": "LE LORRAIN", "libell_d_acheminement": "LE LORRAIN", "code_postal": "97214", "coordonnees_gps": [14.801591672, -61.076751749], "code_commune_insee": "97214"}, "geometry": {"type": "Point", "coordinates": [-61.076751749, 14.801591672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8c89d3f3abbdf35c007e20fcbe769262902a7af", "fields": {"nom_de_la_commune": "RIVIERE PILOTE", "libell_d_acheminement": "RIVIERE PILOTE", "code_postal": "97211", "coordonnees_gps": [14.508934061, -60.8976277652], "code_commune_insee": "97220"}, "geometry": {"type": "Point", "coordinates": [-60.8976277652, 14.508934061]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbbb04ee7ebb4e27a62f19c10dd53cbcf082082f", "fields": {"nom_de_la_commune": "ST JOSEPH", "libell_d_acheminement": "ST JOSEPH", "code_postal": "97212", "coordonnees_gps": [14.6765114574, -61.0439882663], "code_commune_insee": "97224"}, "geometry": {"type": "Point", "coordinates": [-61.0439882663, 14.6765114574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8e81d331046de7f73726b49c5de18292cca6601", "fields": {"nom_de_la_commune": "STE ANNE", "libell_d_acheminement": "STE ANNE", "code_postal": "97227", "coordonnees_gps": [14.4366151393, -60.8549724261], "code_commune_insee": "97226"}, "geometry": {"type": "Point", "coordinates": [-60.8549724261, 14.4366151393]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "150f2a0e097a1882a9b633018a45d9ae9078f7c7", "fields": {"code_postal": "97353", "code_commune_insee": "97301", "libell_d_acheminement": "REGINA", "ligne_5": "KAW", "nom_de_la_commune": "REGINA", "coordonnees_gps": [3.94089788732, -52.5199751227]}, "geometry": {"type": "Point", "coordinates": [-52.5199751227, 3.94089788732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9a9e6d672ab63f0009446c6eb7acf9c9db62c8f", "fields": {"nom_de_la_commune": "GRAND SANTI", "libell_d_acheminement": "GRAND SANTI", "code_postal": "97340", "coordonnees_gps": [4.38950741601, -54.187446328], "code_commune_insee": "97357"}, "geometry": {"type": "Point", "coordinates": [-54.187446328, 4.38950741601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "689b967d965a67d4d30c97762622d53dd1099d7f", "fields": {"code_postal": "97440", "code_commune_insee": "97409", "libell_d_acheminement": "ST ANDRE", "ligne_5": "CAMBUSTON", "nom_de_la_commune": "ST ANDRE", "coordonnees_gps": [-20.9634830614, 55.6422659103]}, "geometry": {"type": "Point", "coordinates": [55.6422659103, -20.9634830614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fdc116b92a15847c534d0dd426fa3b6ecf169fc", "fields": {"code_postal": "97400", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "ST DENIS CAMELIAS", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48a0b3ea4ad75a975757128411bf4004f2970d29", "fields": {"code_postal": "97400", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "ST FRANCOIS", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b1b28992fa6bb0129481ef891c68b6133cc8b6a", "fields": {"code_postal": "97490", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "ST DENIS CHAUDRON", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e331ce62ba8313677f3a77132a4f1e0cbec12a4", "fields": {"nom_de_la_commune": "ST JOSEPH", "libell_d_acheminement": "ST JOSEPH", "code_postal": "97480", "coordonnees_gps": [-21.3061982734, 55.6419643354], "code_commune_insee": "97412"}, "geometry": {"type": "Point", "coordinates": [55.6419643354, -21.3061982734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48bb1987f120d441df1a8773a06f8a02b5325c4", "fields": {"code_postal": "97422", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "LA SALINE", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65671d963cae975fc46ee406818ab0ae91bf88cf", "fields": {"code_postal": "97423", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "LE GUILLAUME", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e1de2503e156fa62bfc59111112e9c3a7821ab2", "fields": {"code_postal": "97435", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "ST GILLES LES HAUTS", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8274e9c2ece466bd0d55717f318d32ac70f2350b", "fields": {"code_postal": "97410", "code_commune_insee": "97416", "libell_d_acheminement": "ST PIERRE", "ligne_5": "GRAND BOIS", "nom_de_la_commune": "ST PIERRE", "coordonnees_gps": [-21.3123020427, 55.4942837134]}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da488306888781def923cc93522f2abf0f7f48fa", "fields": {"code_postal": "97410", "code_commune_insee": "97416", "libell_d_acheminement": "ST PIERRE", "ligne_5": "MONT VERT", "nom_de_la_commune": "ST PIERRE", "coordonnees_gps": [-21.3123020427, 55.4942837134]}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6c768d35dfe480e46a09174ff343dc3f5868790", "fields": {"code_postal": "97418", "code_commune_insee": "97422", "libell_d_acheminement": "LE TAMPON", "ligne_5": "LA PLAINE DES CAFRES", "nom_de_la_commune": "LE TAMPON", "coordonnees_gps": [-21.2232735842, 55.5587522693]}, "geometry": {"type": "Point", "coordinates": [55.5587522693, -21.2232735842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e82a39f7424a69d5c60aff8e0c397afaeffab41", "fields": {"nom_de_la_commune": "LE TAMPON", "libell_d_acheminement": "LE TAMPON", "code_postal": "97430", "coordonnees_gps": [-21.2232735842, 55.5587522693], "code_commune_insee": "97422"}, "geometry": {"type": "Point", "coordinates": [55.5587522693, -21.2232735842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c0f0ea04324b782fd0bc616c8273db01965146", "fields": {"code_postal": "97430", "code_commune_insee": "97422", "libell_d_acheminement": "LE TAMPON", "ligne_5": "PONT D YVES", "nom_de_la_commune": "LE TAMPON", "coordonnees_gps": [-21.2232735842, 55.5587522693]}, "geometry": {"type": "Point", "coordinates": [55.5587522693, -21.2232735842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf8b7dedaeabd74fb28d24fc21f41093b151a365", "fields": {"nom_de_la_commune": "MIQUELON LANGLADE", "libell_d_acheminement": "ST PIERRE ET MIQUELON", "code_postal": "97500", "ligne_5": "MIQUELON LANGLADE", "code_commune_insee": "97501"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d1b167aba15bd686c6f847c5d53f7a36cfc319", "fields": {"code_postal": "97615", "code_commune_insee": "97608", "libell_d_acheminement": "DZAOUDZI", "ligne_5": "LABATTOIR", "nom_de_la_commune": "DZAOUDZI", "coordonnees_gps": [-12.785467309, 45.2832655596]}, "geometry": {"type": "Point", "coordinates": [45.2832655596, -12.785467309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aca9fd12f28cf620dc42ef6a83452de0abd1fd67", "fields": {"nom_de_la_commune": "KANI KELI", "libell_d_acheminement": "KANI KELI", "code_postal": "97625", "coordonnees_gps": [-12.9718620297, 45.126001688], "code_commune_insee": "97609"}, "geometry": {"type": "Point", "coordinates": [45.126001688, -12.9718620297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "755d7f800c0be5410dd9d4903873f55691e2eaa5", "fields": {"code_postal": "97680", "code_commune_insee": "97611", "libell_d_acheminement": "MAMOUDZOU", "ligne_5": "COMBANI", "nom_de_la_commune": "MAMOUDZOU", "coordonnees_gps": [-12.7864627251, 45.1670124096]}, "geometry": {"type": "Point", "coordinates": [45.1670124096, -12.7864627251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40f3c9b0e3c7b744bbf274d41e556a8ad9f8b952", "fields": {"nom_de_la_commune": "TSINGONI", "libell_d_acheminement": "TSINGONI", "code_postal": "97680", "coordonnees_gps": [-12.7864627251, 45.1670124096], "code_commune_insee": "97617"}, "geometry": {"type": "Point", "coordinates": [45.1670124096, -12.7864627251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0a299e68621abe16260eed1e4d41a9e64c1076f", "fields": {"nom_de_la_commune": "ALO", "libell_d_acheminement": "ALO", "code_postal": "98610", "code_commune_insee": "98611"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d6f9b7f8c072f3c787ee5ccbeccece819f6c961", "fields": {"nom_de_la_commune": "ARUE", "libell_d_acheminement": "ARUE", "code_postal": "98701", "code_commune_insee": "98712"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab347f20b85aa092985317f788c0973c7de4d6a", "fields": {"nom_de_la_commune": "ARUTUA", "libell_d_acheminement": "RAITAHITI", "code_postal": "98785", "ligne_5": "ARUTUA", "code_commune_insee": "98713"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c59af4d560fe6e34f37efc109b9dcc191c791ca3", "fields": {"nom_de_la_commune": "BORA BORA", "libell_d_acheminement": "ANAU", "code_postal": "98730", "ligne_5": "BORA BORA", "code_commune_insee": "98714"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80cdf255901b1a910c82bc338f2cd2c0be1e4d92", "fields": {"nom_de_la_commune": "BORA BORA", "libell_d_acheminement": "FAANUI", "code_postal": "98730", "ligne_5": "BORA BORA", "code_commune_insee": "98714"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff77362ce51a6ff9b0493ac095e25fd1ea29a766", "fields": {"nom_de_la_commune": "BORA BORA", "libell_d_acheminement": "NUNUE", "code_postal": "98730", "ligne_5": "BORA BORA", "code_commune_insee": "98714"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1396e3781a394348942e95c91c91272cd2286833", "fields": {"nom_de_la_commune": "FAKARAVA", "libell_d_acheminement": "TEARAVERO", "code_postal": "98787", "ligne_5": "FAKARAVA", "code_commune_insee": "98716"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9eee37e5b79108c5ca25e97bcdf8e8a0b233198", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MAKAROA", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6379f561589804bbcfe8f43fdc6a4c749de6612", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MOTUREIVAVAO", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bad3b9f3a00da58db4a0333d684f42ed043e53a6", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "TEMOE", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61bebd9ce4da033069c50a6162c18393dc48ecbc", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "TENARARO", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b32bb533a5c7fc2b21a753860309d2ce43f6aaaa", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MARUTEA SUD", "code_postal": "98793", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd76ce557d8f255e34228a7b660ccaa657347aee", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "OTEPA", "code_postal": "98767", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "477608abf4a913439aceea5296eeaec87bb0f2c1", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "HIKITAKE", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0cacf1efc335ac35b5f52b7f40ca1c510593324", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "OTETOU", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f4917fbeddd6aee8dc128896caa69226d3af835c", "fields": {"nom_de_la_commune": "HITIAA O TE RA", "libell_d_acheminement": "PAPENOO", "code_postal": "98707", "ligne_5": "HITIAA O TE RA", "code_commune_insee": "98722"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1eecccb9f385f83dd7a20c2667c3e8673566cb1", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "EIAONE", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e500756af40c58e3bae1dab882d2b8587b0e084b", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "MOTU UA", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b644b74f43c11717647c58eba6126f4bdcfbabd", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "NAHOE", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ec0291b42e546c6e090bbc72dd3b04ec607572b", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "PAUMAU", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57eb421ae3a364ca93386eae4f2e50aabdf98273", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "FAIE", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de013466a7b52bcdefbd1090736196037cb0ea74", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "FITII", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77133da73c6185a4ce8732fd25b6e99965d947b2", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "HAAPU", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5a32b6b447d99c4ca7a2894aefe1e49cd8c59b", "fields": {"nom_de_la_commune": "MAHINA", "libell_d_acheminement": "MAHINA", "code_postal": "98709", "code_commune_insee": "98725"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fead593d06da5d0deceb485ccf882e248af726d7", "fields": {"nom_de_la_commune": "MAHINA", "libell_d_acheminement": "OROFARA", "code_postal": "98710", "ligne_5": "MAHINA", "code_commune_insee": "98725"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca7fc5494108b1c1e375f429f47b755bba3416e", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "POUHEVA", "code_postal": "98769", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "37ec6bd4035c8356be458c1cb79088ec4264b483", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "TUANAKE", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04465801674c41b66c31293f6eac6451c8ba4268", "fields": {"nom_de_la_commune": "MAUPITI", "libell_d_acheminement": "SCILLY", "code_postal": "98732", "ligne_5": "MAUPITI", "code_commune_insee": "98728"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6748bb64070b1704335813ceba09b1b681a4182", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "MAHAREPA", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea3594bbc7f7bb7aa8a851333980034656e5d291", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "TEAVARO", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9b8dee505668854b5578c406ff9270bf1b9755c", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "VAIARE", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3e6c2dec2a00948522b05cff57ad557a8d46127", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "ATIHA", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f9ac4dba2d17a617cec6ef724c31b381b80c72", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "HAAPITI", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e90cfe8fd7f97733b374861ff39078fc1991b4ab", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "PAOPAO", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7ce02419abbb8fa60e97a05e4b8df327c428847", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "TAIOHAE", "code_postal": "98742", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b10f99bbdfab165790f51c394c526955fac5130", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "HATU ITI", "code_postal": "98796", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b57aace2400bfa9b2e91259fa8c1412c23a7bf5", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "HATUTAA", "code_postal": "98796", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b0f1b8a2912982f0792bf6a428b1042e0cb4039", "fields": {"nom_de_la_commune": "PAEA", "libell_d_acheminement": "PAEA", "code_postal": "98711", "code_commune_insee": "98733"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e473671d74cdc75e3fb63dc6801b41f9c2f84792", "fields": {"nom_de_la_commune": "PAPARA", "libell_d_acheminement": "PAPARA", "code_postal": "98712", "code_commune_insee": "98734"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676e0e2205b7160b3f2659c03ced8de9b7c730c4", "fields": {"nom_de_la_commune": "PUNAAUIA", "libell_d_acheminement": "PUNAAUIA", "code_postal": "98718", "code_commune_insee": "98738"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0bd40286d314e750f53d30f2fd9a2ff435cc165", "fields": {"nom_de_la_commune": "RANGIROA", "libell_d_acheminement": "VAITEPAUA", "code_postal": "98790", "ligne_5": "RANGIROA", "code_commune_insee": "98740"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e34526b14d34a1286b1c89755bb4baabd9f9ba7", "fields": {"nom_de_la_commune": "REAO", "libell_d_acheminement": "TAPUARAVA", "code_postal": "98779", "ligne_5": "REAO", "code_commune_insee": "98742"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f51b087482ef15aa0f67a2242b680076969163f", "fields": {"nom_de_la_commune": "RIMATARA", "libell_d_acheminement": "ANAPOTO", "code_postal": "98752", "ligne_5": "RIMATARA", "code_commune_insee": "98743"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f9f9130146a2d55f45c2f0854b27b1228380acc", "fields": {"nom_de_la_commune": "RIMATARA", "libell_d_acheminement": "MUTUAURA", "code_postal": "98752", "ligne_5": "RIMATARA", "code_commune_insee": "98743"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b90ffe0002c4b6d0939752bad40dc5be5b05676", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "NIUA", "code_postal": "98734", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24e8bddd3360e78354920b6cec37129221e06440", "fields": {"nom_de_la_commune": "TAIARAPU EST", "libell_d_acheminement": "TARAVAO", "code_postal": "98719", "ligne_5": "TAIARAPU EST", "code_commune_insee": "98747"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2c8d771d0f6b7246330271fa57350d5999cac04", "fields": {"code_postal": "02160", "code_commune_insee": "02439", "libell_d_acheminement": "LES SEPTVALLONS", "ligne_5": "PERLES", "nom_de_la_commune": "LES SEPTVALLONS", "coordonnees_gps": [49.3988991643, 3.73817191868]}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2992c7366b5438de6731db5977b22bd663faccbc", "fields": {"nom_de_la_commune": "MESNIL ST LAURENT", "libell_d_acheminement": "MESNIL ST LAURENT", "code_postal": "02720", "coordonnees_gps": [49.8506777552, 3.38251026426], "code_commune_insee": "02481"}, "geometry": {"type": "Point", "coordinates": [3.38251026426, 49.8506777552]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "446b2112f2b8e7efc0c5c8cf793dd811d53550f9", "fields": {"nom_de_la_commune": "MARCHAIS", "libell_d_acheminement": "MARCHAIS", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02457"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "760f6d7571efc8b5735bce09946ec143006d7721", "fields": {"nom_de_la_commune": "LUZOIR", "libell_d_acheminement": "LUZOIR", "code_postal": "02500", "coordonnees_gps": [49.890758884, 4.10750632589], "code_commune_insee": "02445"}, "geometry": {"type": "Point", "coordinates": [4.10750632589, 49.890758884]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e6037bb0eb0fdecb23d580fafcf69dc933bc85f", "fields": {"nom_de_la_commune": "MAYOT", "libell_d_acheminement": "MAYOT", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02473"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b46262425c3b487737cf41e6d4fec9f0dfa8932", "fields": {"nom_de_la_commune": "MARLE", "libell_d_acheminement": "MARLE", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02468"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a5e320f0042b7baa4fa839efd15323eb272e218", "fields": {"nom_de_la_commune": "FERE EN TARDENOIS", "libell_d_acheminement": "FERE EN TARDENOIS", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02305"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a78b6cb7a87dfe4c6194415e4288e46d7768014", "fields": {"nom_de_la_commune": "ESSIGNY LE GRAND", "libell_d_acheminement": "ESSIGNY LE GRAND", "code_postal": "02690", "coordonnees_gps": [49.7818519929, 3.29506303769], "code_commune_insee": "02287"}, "geometry": {"type": "Point", "coordinates": [3.29506303769, 49.7818519929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6dea44a7d702ee9067b5b946f49dd31e9c1bfb7", "fields": {"nom_de_la_commune": "L EPINE AUX BOIS", "libell_d_acheminement": "L EPINE AUX BOIS", "code_postal": "02540", "coordonnees_gps": [48.9128673746, 3.4403848461], "code_commune_insee": "02281"}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34349ccedcd7164eeb713ae039123fb179acf00d", "fields": {"nom_de_la_commune": "LA FERTE MILON", "libell_d_acheminement": "LA FERTE MILON", "code_postal": "02460", "coordonnees_gps": [49.1801295296, 3.14646603898], "code_commune_insee": "02307"}, "geometry": {"type": "Point", "coordinates": [3.14646603898, 49.1801295296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7f198f39041dade90d6020f09507b38e5f55ae4", "fields": {"nom_de_la_commune": "EVERGNICOURT", "libell_d_acheminement": "EVERGNICOURT", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02299"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c6ce9e10024e12bb4c45297d98a5ac6ea1af86", "fields": {"nom_de_la_commune": "ETREILLERS", "libell_d_acheminement": "ETREILLERS", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02296"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f00181f3529c21dd21c26c8d7c719c1d8bd7ed75", "fields": {"nom_de_la_commune": "DOMMIERS", "libell_d_acheminement": "DOMMIERS", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02267"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf1b922b642b814db0fc6671f242c34cea595cd4", "fields": {"nom_de_la_commune": "DAMPLEUX", "libell_d_acheminement": "DAMPLEUX", "code_postal": "02600", "coordonnees_gps": [49.2730511855, 3.12339772854], "code_commune_insee": "02259"}, "geometry": {"type": "Point", "coordinates": [3.12339772854, 49.2730511855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "061b0925899b6abcea71a104da05431c161235f0", "fields": {"nom_de_la_commune": "DROIZY", "libell_d_acheminement": "DROIZY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02272"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5884e54bfb47c4dd7214733678d990c8b3b3baa5", "fields": {"nom_de_la_commune": "EPAGNY", "libell_d_acheminement": "EPAGNY", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02277"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25f3d7b0b7a605dad5fffbe0cf4bb3a8ccb5018", "fields": {"nom_de_la_commune": "FONTAINE NOTRE DAME", "libell_d_acheminement": "FONTAINE NOTRE DAME", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02322"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b08c14c18c511c8f4654b371862633b6596af8c", "fields": {"nom_de_la_commune": "FRIERES FAILLOUEL", "libell_d_acheminement": "FRIERES FAILLOUEL", "code_postal": "02700", "coordonnees_gps": [49.6402663387, 3.29629531322], "code_commune_insee": "02336"}, "geometry": {"type": "Point", "coordinates": [3.29629531322, 49.6402663387]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c3e595472591844632068aaecf734b8da5c818", "fields": {"nom_de_la_commune": "FRESNOY LE GRAND", "libell_d_acheminement": "FRESNOY LE GRAND", "code_postal": "02230", "coordonnees_gps": [49.9537168891, 3.41962452957], "code_commune_insee": "02334"}, "geometry": {"type": "Point", "coordinates": [3.41962452957, 49.9537168891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "592f8cc5dfcedabf23b8cbc3786fa45ee02d5385", "fields": {"nom_de_la_commune": "FESMY LE SART", "libell_d_acheminement": "FESMY LE SART", "code_postal": "02450", "coordonnees_gps": [50.0067534754, 3.69457044766], "code_commune_insee": "02308"}, "geometry": {"type": "Point", "coordinates": [3.69457044766, 50.0067534754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a9d5817ef2c135683cc693f5e884ac38cb5e16f", "fields": {"nom_de_la_commune": "FROIDESTREES", "libell_d_acheminement": "FROIDESTREES", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02337"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0fb82c587e25d88f5ea603a7b67b62ae7569b74", "fields": {"nom_de_la_commune": "LA FLAMENGRIE", "libell_d_acheminement": "LA FLAMENGRIE", "code_postal": "02260", "coordonnees_gps": [49.966610567, 3.91127792949], "code_commune_insee": "02312"}, "geometry": {"type": "Point", "coordinates": [3.91127792949, 49.966610567]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f6e8e8ab9d049db5426f9078f92174378f77be3", "fields": {"nom_de_la_commune": "FOURDRAIN", "libell_d_acheminement": "FOURDRAIN", "code_postal": "02870", "coordonnees_gps": [49.6039941485, 3.51899449052], "code_commune_insee": "02329"}, "geometry": {"type": "Point", "coordinates": [3.51899449052, 49.6039941485]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6598efae32589c515f7393d67e2ca93d2881c99c", "fields": {"nom_de_la_commune": "FONSOMME", "libell_d_acheminement": "FONSOMME", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02319"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b41517abf20e69c969a0b48e0e654578e950df04", "fields": {"nom_de_la_commune": "FORESTE", "libell_d_acheminement": "FORESTE", "code_postal": "02590", "coordonnees_gps": [49.812289272, 3.13247783385], "code_commune_insee": "02327"}, "geometry": {"type": "Point", "coordinates": [3.13247783385, 49.812289272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc2a840b51600d0c254316cd0d68447967085390", "fields": {"nom_de_la_commune": "FILAIN", "libell_d_acheminement": "FILAIN", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02311"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d304e370db0f5b0dd214cccb1a575837d90a93", "fields": {"nom_de_la_commune": "HAPPENCOURT", "libell_d_acheminement": "HAPPENCOURT", "code_postal": "02480", "coordonnees_gps": [49.7350949563, 3.17025333523], "code_commune_insee": "02367"}, "geometry": {"type": "Point", "coordinates": [3.17025333523, 49.7350949563]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21f8bbfd54ce3ed145648d21ce6d2721aeca05bb", "fields": {"nom_de_la_commune": "HAUTEVESNES", "libell_d_acheminement": "HAUTEVESNES", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02375"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2717782998aad9170d79c1c94bbc25dd6a6e9300", "fields": {"nom_de_la_commune": "GUIGNICOURT", "libell_d_acheminement": "GUIGNICOURT", "code_postal": "02190", "coordonnees_gps": [49.457994666, 3.96807425363], "code_commune_insee": "02360"}, "geometry": {"type": "Point", "coordinates": [3.96807425363, 49.457994666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8456c9cceb94486e51d2e9a73f70fc14bbaafa7", "fields": {"nom_de_la_commune": "GRANDRIEUX", "libell_d_acheminement": "GRANDRIEUX", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02354"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edf29b31d644f28c5e6c51d2cc5cfe83efd6ee5f", "fields": {"nom_de_la_commune": "GUYENCOURT", "libell_d_acheminement": "GUYENCOURT", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02364"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e0a425908224b73fcbf5956d30c8c10e31f1e6a", "fields": {"nom_de_la_commune": "JAULGONNE", "libell_d_acheminement": "JAULGONNE", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02389"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3715f10522b6576873ce3640a65cb444755d9e", "fields": {"nom_de_la_commune": "HANNAPES", "libell_d_acheminement": "HANNAPES", "code_postal": "02510", "coordonnees_gps": [49.9800730697, 3.64269846822], "code_commune_insee": "02366"}, "geometry": {"type": "Point", "coordinates": [3.64269846822, 49.9800730697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ee3d0abae231811154934c5d97840f60a276f8", "fields": {"nom_de_la_commune": "GANDELU", "libell_d_acheminement": "GANDELU", "code_postal": "02810", "coordonnees_gps": [49.0972662755, 3.19919233532], "code_commune_insee": "02339"}, "geometry": {"type": "Point", "coordinates": [3.19919233532, 49.0972662755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b12d19860851f4a49eca13e6336c89edaf3d0502", "fields": {"nom_de_la_commune": "GAUCHY", "libell_d_acheminement": "GAUCHY", "code_postal": "02430", "coordonnees_gps": [49.8229552715, 3.28619899863], "code_commune_insee": "02340"}, "geometry": {"type": "Point", "coordinates": [3.28619899863, 49.8229552715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48b14bf072e3f3962243fe98afe01c66d49e4a66", "fields": {"nom_de_la_commune": "IRON", "libell_d_acheminement": "IRON", "code_postal": "02510", "coordonnees_gps": [49.9800730697, 3.64269846822], "code_commune_insee": "02386"}, "geometry": {"type": "Point", "coordinates": [3.64269846822, 49.9800730697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24c696bef2d162b83ab209b8012b8f1a9606604", "fields": {"nom_de_la_commune": "MISSY LES PIERREPONT", "libell_d_acheminement": "MISSY LES PIERREPONT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02486"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "438c4c9d0d7df8ca4a54744a79696532e6d4114f", "fields": {"nom_de_la_commune": "MONCEAU SUR OISE", "libell_d_acheminement": "MONCEAU SUR OISE", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02494"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d56bc093cf80a90dbe2eb1f4830ab5be0272292", "fields": {"nom_de_la_commune": "MONCEAU LE WAAST", "libell_d_acheminement": "MONCEAU LE WAAST", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02493"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3770573fdae3deba78974946c9236d6b35878c", "fields": {"nom_de_la_commune": "MONS EN LAONNOIS", "libell_d_acheminement": "MONS EN LAONNOIS", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02497"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47626a485ec3148f9abbe8f5e3db25d570ee8634", "fields": {"nom_de_la_commune": "MOLINCHART", "libell_d_acheminement": "MOLINCHART", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02489"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2cb122cc714d99efe1fdb14c29997842f325fb7f", "fields": {"nom_de_la_commune": "MONTAIGU", "libell_d_acheminement": "MONTAIGU", "code_postal": "02820", "coordonnees_gps": [49.512711001, 3.83344703407], "code_commune_insee": "02498"}, "geometry": {"type": "Point", "coordinates": [3.83344703407, 49.512711001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8a4faf1b5a3c1ff482cccb88d97bf5e2e0c4ccd", "fields": {"nom_de_la_commune": "MONNES", "libell_d_acheminement": "MONNES", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02496"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5068aa97ec424d7a8009dae4a57696899e4812b", "fields": {"nom_de_la_commune": "MONTESCOURT LIZEROLLES", "libell_d_acheminement": "MONTESCOURT LIZEROLLES", "code_postal": "02440", "coordonnees_gps": [49.7371553151, 3.27915713778], "code_commune_insee": "02504"}, "geometry": {"type": "Point", "coordinates": [3.27915713778, 49.7371553151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f7e3f401432122380dc9d8ae562cdbba5b6466e", "fields": {"nom_de_la_commune": "LA NEUVILLE HOUSSET", "libell_d_acheminement": "LA NEUVILLE HOUSSET", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02547"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "157bdf926d5f2593e1c45bef84aee4b0ccf4b569", "fields": {"nom_de_la_commune": "MONTIGNY LE FRANC", "libell_d_acheminement": "MONTIGNY LE FRANC", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02513"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "700ebcd36bc64d4f8ac14cc3009b444e92d5676e", "fields": {"nom_de_la_commune": "NEUVILLE ST AMAND", "libell_d_acheminement": "NEUVILLE ST AMAND", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02549"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49fb44d6fdc74b3065185ac391993ba872248209", "fields": {"nom_de_la_commune": "NEUILLY ST FRONT", "libell_d_acheminement": "NEUILLY ST FRONT", "code_postal": "02470", "coordonnees_gps": [49.1587462946, 3.23193409616], "code_commune_insee": "02543"}, "geometry": {"type": "Point", "coordinates": [3.23193409616, 49.1587462946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ba56e826f979dbda0d4a5c9c40bd97971aa9e72", "fields": {"nom_de_la_commune": "MOUSSY VERNEUIL", "libell_d_acheminement": "MOUSSY VERNEUIL", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02531"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5c5c5bec18bfe3ec92ff1eb506115608b789c70", "fields": {"nom_de_la_commune": "MONT ST MARTIN", "libell_d_acheminement": "MONT ST MARTIN", "code_postal": "02220", "coordonnees_gps": [49.3180108636, 3.5439628093], "code_commune_insee": "02523"}, "geometry": {"type": "Point", "coordinates": [3.5439628093, 49.3180108636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba3fc016e54874ac56bb82d13027b1f1209ad4f2", "fields": {"nom_de_la_commune": "MONTHIERS", "libell_d_acheminement": "MONTHIERS", "code_postal": "02400", "coordonnees_gps": [49.0643447361, 3.3912505936], "code_commune_insee": "02509"}, "geometry": {"type": "Point", "coordinates": [3.3912505936, 49.0643447361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4c93f38b1f3a62f6dca6543fe08235ff3b808e5", "fields": {"nom_de_la_commune": "NEUVILLE SUR MARGIVAL", "libell_d_acheminement": "NEUVILLE SUR MARGIVAL", "code_postal": "02880", "coordonnees_gps": [49.4238582409, 3.38402828695], "code_commune_insee": "02551"}, "geometry": {"type": "Point", "coordinates": [3.38402828695, 49.4238582409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e35b554b7f7e006e163835e56d6b63261fb3597", "fields": {"nom_de_la_commune": "NOUVION ET CATILLON", "libell_d_acheminement": "NOUVION ET CATILLON", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02559"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f48b9807314e7fd6c619051fb496e4b6e76a4c47", "fields": {"nom_de_la_commune": "PANCY COURTECON", "libell_d_acheminement": "PANCY COURTECON", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02583"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad199fed6ec41080c1ad75f1e04501dcf2d5f2b3", "fields": {"nom_de_la_commune": "PARCY ET TIGNY", "libell_d_acheminement": "PARCY ET TIGNY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02585"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "378819229e2e9d3638ab44bc6fe6895f64dcf9b9", "fields": {"nom_de_la_commune": "NOUVRON VINGRE", "libell_d_acheminement": "NOUVRON VINGRE", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02562"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd92b5593a911ab0ea0ca91caef084fc3a5b8874", "fields": {"nom_de_la_commune": "PARGNY FILAIN", "libell_d_acheminement": "PARGNY FILAIN", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02589"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d95e665845b625e193d53a4f3faa06b14d0244fe", "fields": {"nom_de_la_commune": "PARFONDEVAL", "libell_d_acheminement": "PARFONDEVAL", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02586"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeab805a71625e4878c3e536b695fe20e197c7c6", "fields": {"nom_de_la_commune": "PARFONDRU", "libell_d_acheminement": "PARFONDRU", "code_postal": "02840", "coordonnees_gps": [49.568752947, 3.72970362193], "code_commune_insee": "02587"}, "geometry": {"type": "Point", "coordinates": [3.72970362193, 49.568752947]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d928170bfcd071f499775be951cc25feb003431a", "fields": {"nom_de_la_commune": "ORGEVAL", "libell_d_acheminement": "ORGEVAL", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02573"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e1e304c5f0eaa99b641d471a84a29ca9929ae68", "fields": {"nom_de_la_commune": "NOYALES", "libell_d_acheminement": "NOYALES", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02563"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7abc9108884204f914f933128bcf33f4fc1e567", "fields": {"nom_de_la_commune": "CHASSENARD", "libell_d_acheminement": "CHASSENARD", "code_postal": "03510", "coordonnees_gps": [46.4530576935, 3.94915396581], "code_commune_insee": "03063"}, "geometry": {"type": "Point", "coordinates": [3.94915396581, 46.4530576935]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc866f0b7c7637942b473263f28dc5871dbec469", "fields": {"nom_de_la_commune": "LE BRETHON", "libell_d_acheminement": "LE BRETHON", "code_postal": "03350", "coordonnees_gps": [46.5880559435, 2.80538087836], "code_commune_insee": "03041"}, "geometry": {"type": "Point", "coordinates": [2.80538087836, 46.5880559435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3df11f5d8c20623c88d2919489967cd3ac64605e", "fields": {"nom_de_la_commune": "CHATILLON", "libell_d_acheminement": "CHATILLON", "code_postal": "03210", "coordonnees_gps": [46.5175879411, 3.17401702628], "code_commune_insee": "03069"}, "geometry": {"type": "Point", "coordinates": [3.17401702628, 46.5175879411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e55b35f15e83d036ec8ba47d4564332b24104b0e", "fields": {"nom_de_la_commune": "CHARROUX", "libell_d_acheminement": "CHARROUX", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03062"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "523abc4cab3cb428763f59125aaa6ef078417439", "fields": {"nom_de_la_commune": "LA CELLE", "libell_d_acheminement": "LA CELLE", "code_postal": "03600", "coordonnees_gps": [46.2666871749, 2.79054682985], "code_commune_insee": "03047"}, "geometry": {"type": "Point", "coordinates": [2.79054682985, 46.2666871749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eca5e371add7b6ec10bd40ca836326f7cd4147a5", "fields": {"nom_de_la_commune": "BRANSAT", "libell_d_acheminement": "BRANSAT", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03038"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d50a4c1ecc414681ec254acdeec75afe41d0ade", "fields": {"nom_de_la_commune": "CHAPEAU", "libell_d_acheminement": "CHAPEAU", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03054"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e48f9dde6c9b512008dab5a8040f906accb1211", "fields": {"nom_de_la_commune": "CHARMES", "libell_d_acheminement": "CHARMES", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03061"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d46f25f7b428eacaf1e2d482c1d0d2812fe5ef1e", "fields": {"code_postal": "02120", "code_commune_insee": "02757", "libell_d_acheminement": "VADENCOURT", "ligne_5": "LONGCHAMPS", "nom_de_la_commune": "VADENCOURT", "coordonnees_gps": [49.8880905983, 3.64129929098]}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0a12896033bd2df7724e294a469b395af9d8075", "fields": {"nom_de_la_commune": "LA VILLE AUX BOIS LES PONTAVERT", "libell_d_acheminement": "LA VILLE AUX BOIS LES PONTAVERT", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02803"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89b91475a0ae34b2b7bbb5adda7e03758cae80a0", "fields": {"nom_de_la_commune": "VERNEUIL SOUS COUCY", "libell_d_acheminement": "VERNEUIL SOUS COUCY", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02786"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b9665c3d1b183b1eab6208d9c1445e43e671392", "fields": {"nom_de_la_commune": "VESLES ET CAUMONT", "libell_d_acheminement": "VESLES ET CAUMONT", "code_postal": "02350", "coordonnees_gps": [49.6393180069, 3.83480530276], "code_commune_insee": "02790"}, "geometry": {"type": "Point", "coordinates": [3.83480530276, 49.6393180069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf2d8d7d5dc8973b7c902c3b0973ca087cbfa2cb", "fields": {"nom_de_la_commune": "VENDRESSE BEAULNE", "libell_d_acheminement": "VENDRESSE BEAULNE", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02778"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "797c1d8db4a1d536c6dab3b0ebd7e9b616e6016c", "fields": {"nom_de_la_commune": "VIELS MAISONS", "libell_d_acheminement": "VIELS MAISONS", "code_postal": "02540", "coordonnees_gps": [48.9128673746, 3.4403848461], "code_commune_insee": "02798"}, "geometry": {"type": "Point", "coordinates": [3.4403848461, 48.9128673746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14461a03a723f88a64000291fec0cc5fae832393", "fields": {"nom_de_la_commune": "URVILLERS", "libell_d_acheminement": "URVILLERS", "code_postal": "02690", "coordonnees_gps": [49.7818519929, 3.29506303769], "code_commune_insee": "02756"}, "geometry": {"type": "Point", "coordinates": [3.29506303769, 49.7818519929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c885c0ee39bfb3366295c641990ae601b3d50ea9", "fields": {"nom_de_la_commune": "VAUXBUIN", "libell_d_acheminement": "VAUXBUIN", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02770"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0132ce5e9ed6ae577bbc9b35b997e4016851a589", "fields": {"nom_de_la_commune": "VERMAND", "libell_d_acheminement": "VERMAND", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02785"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8a9afd84efcd0ed7a1f4dee4ce521d1de39273e", "fields": {"nom_de_la_commune": "VASSENS", "libell_d_acheminement": "VASSENS", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02762"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6af841d9e05e8a31cedcfa994016ae8897d0868", "fields": {"nom_de_la_commune": "ST REMY BLANZY", "libell_d_acheminement": "ST REMY BLANZY", "code_postal": "02210", "coordonnees_gps": [49.2129002416, 3.35011614589], "code_commune_insee": "02693"}, "geometry": {"type": "Point", "coordinates": [3.35011614589, 49.2129002416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12688167d1d1fa58adfcf15422715cc353d2b6f", "fields": {"nom_de_la_commune": "TUGNY ET PONT", "libell_d_acheminement": "TUGNY ET PONT", "code_postal": "02640", "coordonnees_gps": [49.7574538282, 3.17195418496], "code_commune_insee": "02752"}, "geometry": {"type": "Point", "coordinates": [3.17195418496, 49.7574538282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1425dc3e9dbe99364081dbf5b5a47640cf299e4f", "fields": {"nom_de_la_commune": "ST PIERREMONT", "libell_d_acheminement": "ST PIERREMONT", "code_postal": "02250", "coordonnees_gps": [49.738528886, 3.80415822108], "code_commune_insee": "02689"}, "geometry": {"type": "Point", "coordinates": [3.80415822108, 49.738528886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f7410569acd7e56820033bf70bf90685b296682", "fields": {"nom_de_la_commune": "THENAILLES", "libell_d_acheminement": "THENAILLES", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02740"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "518fdb2a549bee17775caf1eb1895646d204824e", "fields": {"nom_de_la_commune": "ST BANDRY", "libell_d_acheminement": "ST BANDRY", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02672"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f073cf00eb4671020032a106d5eb2242882b8020", "fields": {"nom_de_la_commune": "TREFCON", "libell_d_acheminement": "TREFCON", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02747"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35270accd981a760383a1e76c9385447802a7543", "fields": {"nom_de_la_commune": "SORBAIS", "libell_d_acheminement": "SORBAIS", "code_postal": "02580", "coordonnees_gps": [49.9024615408, 3.89676959472], "code_commune_insee": "02728"}, "geometry": {"type": "Point", "coordinates": [3.89676959472, 49.9024615408]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153eb44fc45a084a496a5ff4d162d7e71f38f93f", "fields": {"nom_de_la_commune": "TRAVECY", "libell_d_acheminement": "TRAVECY", "code_postal": "02800", "coordonnees_gps": [49.6765246538, 3.39232111371], "code_commune_insee": "02746"}, "geometry": {"type": "Point", "coordinates": [3.39232111371, 49.6765246538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3163b7dbdffb8f30740b80090b788118de03f865", "fields": {"nom_de_la_commune": "SELENS", "libell_d_acheminement": "SELENS", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02704"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b00cfdd8760d131b1590ac7da7d49e44d4cbdfe4", "fields": {"nom_de_la_commune": "URCEL", "libell_d_acheminement": "URCEL", "code_postal": "02000", "coordonnees_gps": [49.5539294526, 3.59337928423], "code_commune_insee": "02755"}, "geometry": {"type": "Point", "coordinates": [3.59337928423, 49.5539294526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361e1e0c5f974aa0812366efa9e1668569538cf1", "fields": {"nom_de_la_commune": "LOUROUX BOURBONNAIS", "libell_d_acheminement": "LOUROUX BOURBONNAIS", "code_postal": "03350", "coordonnees_gps": [46.5880559435, 2.80538087836], "code_commune_insee": "03150"}, "geometry": {"type": "Point", "coordinates": [2.80538087836, 46.5880559435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b58109d7c62fb667ff05a709c457d7d3e45c9a", "fields": {"nom_de_la_commune": "LOUCHY MONTFAND", "libell_d_acheminement": "LOUCHY MONTFAND", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03149"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "029c0ff7ef5cc9031afe43edbab223731b95b13c", "fields": {"nom_de_la_commune": "LA GUILLERMIE", "libell_d_acheminement": "LA GUILLERMIE", "code_postal": "03250", "coordonnees_gps": [46.0429962742, 3.69557711106], "code_commune_insee": "03125"}, "geometry": {"type": "Point", "coordinates": [3.69557711106, 46.0429962742]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eab573eef642a6e967bf5b3eb9462f0ccbf188f", "fields": {"nom_de_la_commune": "LIGNEROLLES", "libell_d_acheminement": "LIGNEROLLES", "code_postal": "03410", "coordonnees_gps": [46.3319374821, 2.55481116435], "code_commune_insee": "03145"}, "geometry": {"type": "Point", "coordinates": [2.55481116435, 46.3319374821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc0f2e7f9cbee930dec476597f945e9e87331190", "fields": {"nom_de_la_commune": "LURCY LEVIS", "libell_d_acheminement": "LURCY LEVIS", "code_postal": "03320", "coordonnees_gps": [46.7203528879, 2.95641029349], "code_commune_insee": "03155"}, "geometry": {"type": "Point", "coordinates": [2.95641029349, 46.7203528879]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa503f805a87f1ac89290c3466eba5054b7fb2fc", "fields": {"nom_de_la_commune": "LETELON", "libell_d_acheminement": "LETELON", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03143"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a02b9d2b44bf0bde9c7ecb4fcff626e600fc1a", "fields": {"nom_de_la_commune": "LUSIGNY", "libell_d_acheminement": "LUSIGNY", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03156"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a36000c79471c02be943aacd526b50496a1b3a5b", "fields": {"nom_de_la_commune": "LENAX", "libell_d_acheminement": "LENAX", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03142"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a0c7f183affaa9cfbdd3414d2574ade3b6c52e6", "fields": {"nom_de_la_commune": "PLOYART ET VAURSEINE", "libell_d_acheminement": "PLOYART ET VAURSEINE", "code_postal": "02860", "coordonnees_gps": [49.4877552055, 3.68304619282], "code_commune_insee": "02609"}, "geometry": {"type": "Point", "coordinates": [3.68304619282, 49.4877552055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af918ead4061cef9f8ee8cd263a29f2b5aaabf55", "fields": {"nom_de_la_commune": "PUISIEUX ET CLANLIEU", "libell_d_acheminement": "PUISIEUX ET CLANLIEU", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02629"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a900ec5d4bfe5f57652ee62ee67879203a8d776b", "fields": {"nom_de_la_commune": "POUILLY SUR SERRE", "libell_d_acheminement": "POUILLY SUR SERRE", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02617"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4599242aac84c281c771951d2c5fa824b7d4fb70", "fields": {"nom_de_la_commune": "VILLIERS EN BIERE", "libell_d_acheminement": "VILLIERS EN BIERE", "code_postal": "77190", "coordonnees_gps": [48.5045043002, 2.61429281246], "code_commune_insee": "77518"}, "geometry": {"type": "Point", "coordinates": [2.61429281246, 48.5045043002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcf674cab12284503694cffe33f698759f26b3e5", "fields": {"nom_de_la_commune": "VILLIERS ST GEORGES", "libell_d_acheminement": "VILLIERS ST GEORGES", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77519"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f5da567134a6b3ace3b5105035212f712cd2955", "fields": {"nom_de_la_commune": "VILLUIS", "libell_d_acheminement": "VILLUIS", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77523"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e154efc1b1d0af6c20f58db0365f7691606fd4f", "fields": {"nom_de_la_commune": "VOULTON", "libell_d_acheminement": "VOULTON", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77530"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "752985e0fc95b5d9ef5d2db59401b88051db89e1", "fields": {"nom_de_la_commune": "VOULX", "libell_d_acheminement": "VOULX", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77531"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd555d04d30a5bd9ff0178dd5e66425ad32d14e", "fields": {"nom_de_la_commune": "VULAINES SUR SEINE", "libell_d_acheminement": "VULAINES SUR SEINE", "code_postal": "77870", "coordonnees_gps": [48.4316298407, 2.76933878495], "code_commune_insee": "77533"}, "geometry": {"type": "Point", "coordinates": [2.76933878495, 48.4316298407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "212b4d19a17fdb717ed62d923d2d1147bfdf37cb", "fields": {"nom_de_la_commune": "YEBLES", "libell_d_acheminement": "YEBLES", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77534"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778a7dc76f3d2945f028b5514385eec9c24b35d3", "fields": {"nom_de_la_commune": "ABLIS", "libell_d_acheminement": "ABLIS", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78003"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92724bfc815f4dd9f041a4bd47dfe9c5855ad58b", "fields": {"nom_de_la_commune": "AIGREMONT", "libell_d_acheminement": "AIGREMONT", "code_postal": "78240", "coordonnees_gps": [48.8975283122, 2.02796979095], "code_commune_insee": "78007"}, "geometry": {"type": "Point", "coordinates": [2.02796979095, 48.8975283122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d845646525dc9bb40b2df573f72f50712e87ca56", "fields": {"nom_de_la_commune": "AUFFREVILLE BRASSEUIL", "libell_d_acheminement": "AUFFREVILLE BRASSEUIL", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78031"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74ed47dc6bf64e4be94bbac8210dc1345dddbc11", "fields": {"nom_de_la_commune": "LA BOISSIERE ECOLE", "libell_d_acheminement": "LA BOISSIERE ECOLE", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78077"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b0fee6b60c1309d5ee3fcaf3fcebf3462bd2a6e", "fields": {"code_postal": "78955", "code_commune_insee": "78123", "libell_d_acheminement": "CARRIERES SOUS POISSY", "ligne_5": "LES GRESILLONS", "nom_de_la_commune": "CARRIERES SOUS POISSY", "coordonnees_gps": [48.9453564407, 2.02870519723]}, "geometry": {"type": "Point", "coordinates": [2.02870519723, 48.9453564407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0b2491367d142310b549e1c1c93ff1917ae4c3", "fields": {"nom_de_la_commune": "LA CELLE LES BORDES", "libell_d_acheminement": "LA CELLE LES BORDES", "code_postal": "78720", "coordonnees_gps": [48.6724843894, 1.96251286173], "code_commune_insee": "78125"}, "geometry": {"type": "Point", "coordinates": [1.96251286173, 48.6724843894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6c592ddc0eb844846bd7de64f147055b88479c5", "fields": {"nom_de_la_commune": "CERNAY LA VILLE", "libell_d_acheminement": "CERNAY LA VILLE", "code_postal": "78720", "coordonnees_gps": [48.6724843894, 1.96251286173], "code_commune_insee": "78128"}, "geometry": {"type": "Point", "coordinates": [1.96251286173, 48.6724843894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "262f3413edca59aa0a33a1768a0466618025c4d4", "fields": {"nom_de_la_commune": "CLAIREFONTAINE EN YVELINES", "libell_d_acheminement": "CLAIREFONTAINE EN YVELINES", "code_postal": "78120", "coordonnees_gps": [48.6165414495, 1.85994599568], "code_commune_insee": "78164"}, "geometry": {"type": "Point", "coordinates": [1.85994599568, 48.6165414495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ace6b9b3083e3a8e0432c44babf4d37560106317", "fields": {"nom_de_la_commune": "CRAVENT", "libell_d_acheminement": "CRAVENT", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78188"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51af6d7fbe4dc4c27080e56289b04d4c945c5091", "fields": {"nom_de_la_commune": "CROISSY SUR SEINE", "libell_d_acheminement": "CROISSY SUR SEINE", "code_postal": "78290", "coordonnees_gps": [48.8786239272, 2.13607514646], "code_commune_insee": "78190"}, "geometry": {"type": "Point", "coordinates": [2.13607514646, 48.8786239272]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de6c091b46ead5930ef0c91b03217f849449bbb", "fields": {"code_postal": "78720", "code_commune_insee": "78193", "libell_d_acheminement": "DAMPIERRE EN YVELINES", "ligne_5": "MAINCOURT SUR YVETTE", "nom_de_la_commune": "DAMPIERRE EN YVELINES", "coordonnees_gps": [48.6724843894, 1.96251286173]}, "geometry": {"type": "Point", "coordinates": [1.96251286173, 48.6724843894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18da654c50557145d396f2f72f8aa22991e88498", "fields": {"nom_de_la_commune": "ELANCOURT", "libell_d_acheminement": "ELANCOURT", "code_postal": "78990", "coordonnees_gps": [48.7781495042, 1.96078632541], "code_commune_insee": "78208"}, "geometry": {"type": "Point", "coordinates": [1.96078632541, 48.7781495042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5c167579f61906096a575af93e5061134a2dfeb", "fields": {"nom_de_la_commune": "EMANCE", "libell_d_acheminement": "EMANCE", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78209"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd1ee41c1151a9647455d1f971d74eeab5e660b7", "fields": {"nom_de_la_commune": "LES ESSARTS LE ROI", "libell_d_acheminement": "LES ESSARTS LE ROI", "code_postal": "78690", "coordonnees_gps": [48.7275992987, 1.8882726457], "code_commune_insee": "78220"}, "geometry": {"type": "Point", "coordinates": [1.8882726457, 48.7275992987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd648eb766bda6b4d8fd3d5b8d9c6397837f22ef", "fields": {"nom_de_la_commune": "EVECQUEMONT", "libell_d_acheminement": "EVECQUEMONT", "code_postal": "78740", "coordonnees_gps": [49.0109765215, 1.96738669464], "code_commune_insee": "78227"}, "geometry": {"type": "Point", "coordinates": [1.96738669464, 49.0109765215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54966daeb4bdcd610f279b611d85a214801d0de", "fields": {"nom_de_la_commune": "FEUCHEROLLES", "libell_d_acheminement": "FEUCHEROLLES", "code_postal": "78810", "coordonnees_gps": [48.8749563511, 1.96917098756], "code_commune_insee": "78233"}, "geometry": {"type": "Point", "coordinates": [1.96917098756, 48.8749563511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007abc80c95c5bd63398e7ecd381c59db68d2fa8", "fields": {"nom_de_la_commune": "FLINS SUR SEINE", "libell_d_acheminement": "FLINS SUR SEINE", "code_postal": "78410", "coordonnees_gps": [48.9601241693, 1.86465256885], "code_commune_insee": "78238"}, "geometry": {"type": "Point", "coordinates": [1.86465256885, 48.9601241693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9fbbd4149e954acba1ce89dc12865192e1dbfc", "fields": {"nom_de_la_commune": "FONTENAY ST PERE", "libell_d_acheminement": "FONTENAY ST PERE", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78246"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d80f42d946236a50af35e888ebb59c83f4bdd97", "fields": {"nom_de_la_commune": "FRENEUSE", "libell_d_acheminement": "FRENEUSE", "code_postal": "78840", "coordonnees_gps": [49.0584919382, 1.63612899817], "code_commune_insee": "78255"}, "geometry": {"type": "Point", "coordinates": [1.63612899817, 49.0584919382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1400ed7ae51e54fc7989bf29eaf218a3e777aaf2", "fields": {"nom_de_la_commune": "GAZERAN", "libell_d_acheminement": "GAZERAN", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78269"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8acac69ba9c7c5a7637b03eb37b72476a50e47dd", "fields": {"nom_de_la_commune": "GOUPILLIERES", "libell_d_acheminement": "GOUPILLIERES", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78278"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b82175c1fe0031a5a5ef96b469c433935afbaaba", "fields": {"nom_de_la_commune": "GOUSSONVILLE", "libell_d_acheminement": "GOUSSONVILLE", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78281"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ac8eab7f4b62b8f29dd5571ae6d850ea4632c25", "fields": {"nom_de_la_commune": "GROSROUVRE", "libell_d_acheminement": "GROSROUVRE", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78289"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a73b57fff944a10302bd2b64220bbb4c55accae", "fields": {"nom_de_la_commune": "GUERNES", "libell_d_acheminement": "GUERNES", "code_postal": "78520", "coordonnees_gps": [49.019152235, 1.69317391224], "code_commune_insee": "78290"}, "geometry": {"type": "Point", "coordinates": [1.69317391224, 49.019152235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aad67ea1e5e8312cc2be75eab726e531df4871b9", "fields": {"nom_de_la_commune": "LA HAUTEVILLE", "libell_d_acheminement": "LA HAUTEVILLE", "code_postal": "78113", "coordonnees_gps": [48.7269719682, 1.6475078387], "code_commune_insee": "78302"}, "geometry": {"type": "Point", "coordinates": [1.6475078387, 48.7269719682]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27378dc1fc92e1995ade0eb700845fe808dd0384", "fields": {"nom_de_la_commune": "HOUDAN", "libell_d_acheminement": "HOUDAN", "code_postal": "78550", "coordonnees_gps": [48.8059624153, 1.62530918633], "code_commune_insee": "78310"}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db00d6ca2e431f1350fcc86f4343db5f8e21d710", "fields": {"nom_de_la_commune": "JOUY EN JOSAS", "libell_d_acheminement": "JOUY EN JOSAS", "code_postal": "78350", "coordonnees_gps": [48.7655340154, 2.15902519445], "code_commune_insee": "78322"}, "geometry": {"type": "Point", "coordinates": [2.15902519445, 48.7655340154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4782555e7522e48c0f62dddc7386e484f2aa5e65", "fields": {"nom_de_la_commune": "LOMMOYE", "libell_d_acheminement": "LOMMOYE", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78344"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e51239b966818ce864f41769ee5196656ab99ca0", "fields": {"nom_de_la_commune": "MAREIL SUR MAULDRE", "libell_d_acheminement": "MAREIL SUR MAULDRE", "code_postal": "78124", "coordonnees_gps": [48.884244051, 1.86268946991], "code_commune_insee": "78368"}, "geometry": {"type": "Point", "coordinates": [1.86268946991, 48.884244051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "208672b34de75e673b23bf8f1589d02d3417c9fa", "fields": {"nom_de_la_commune": "MAULE", "libell_d_acheminement": "MAULE", "code_postal": "78580", "coordonnees_gps": [48.9115359215, 1.85464080314], "code_commune_insee": "78380"}, "geometry": {"type": "Point", "coordinates": [1.85464080314, 48.9115359215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b06515dcc4af4c3c70599ed455e9176c6a6ffaf", "fields": {"nom_de_la_commune": "MENERVILLE", "libell_d_acheminement": "MENERVILLE", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78385"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "551e401049e5979ca93eb1c1295b6255ee0232fe", "fields": {"nom_de_la_commune": "MERE", "libell_d_acheminement": "MERE", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78389"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eba307b17ede08c1388436a2a10f9d006abae636", "fields": {"nom_de_la_commune": "MONDREVILLE", "libell_d_acheminement": "MONDREVILLE", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78413"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c688160ca26716cabbbc4db754752106891c88", "fields": {"nom_de_la_commune": "MONTESSON", "libell_d_acheminement": "MONTESSON", "code_postal": "78360", "coordonnees_gps": [48.9173237175, 2.13949842115], "code_commune_insee": "78418"}, "geometry": {"type": "Point", "coordinates": [2.13949842115, 48.9173237175]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc53ece7ca7cd232db921d5e5e954aaae85d1e7", "fields": {"nom_de_la_commune": "MULCENT", "libell_d_acheminement": "MULCENT", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78439"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45f681f020555700e722d5c2566eea24f147736b", "fields": {"nom_de_la_commune": "NEZEL", "libell_d_acheminement": "NEZEL", "code_postal": "78410", "coordonnees_gps": [48.9601241693, 1.86465256885], "code_commune_insee": "78451"}, "geometry": {"type": "Point", "coordinates": [1.86465256885, 48.9601241693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "155c9cb51d91a377a228f9e009ce3b5f802ca346", "fields": {"nom_de_la_commune": "PONTHEVRARD", "libell_d_acheminement": "PONTHEVRARD", "code_postal": "78730", "coordonnees_gps": [48.5709913793, 1.96381832135], "code_commune_insee": "78499"}, "geometry": {"type": "Point", "coordinates": [1.96381832135, 48.5709913793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e756914cf8df52ab16cd0d01994a6c141520ecf3", "fields": {"nom_de_la_commune": "PORCHEVILLE", "libell_d_acheminement": "PORCHEVILLE", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78501"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c138f0385baed6ef3f156bc3b3f689695ce24b82", "fields": {"nom_de_la_commune": "LE PORT MARLY", "libell_d_acheminement": "LE PORT MARLY", "code_postal": "78560", "coordonnees_gps": [48.881651817, 2.10990010942], "code_commune_insee": "78502"}, "geometry": {"type": "Point", "coordinates": [2.10990010942, 48.881651817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bead249eb6d688188f6bcd6749bf3a6cb4b6411d", "fields": {"nom_de_la_commune": "LA QUEUE LES YVELINES", "libell_d_acheminement": "LA QUEUE LES YVELINES", "code_postal": "78940", "coordonnees_gps": [48.8051176494, 1.74709379357], "code_commune_insee": "78513"}, "geometry": {"type": "Point", "coordinates": [1.74709379357, 48.8051176494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26a49ea6f27fa27ba7bf2d166f401ce6e182fa42", "fields": {"nom_de_la_commune": "RICHEBOURG", "libell_d_acheminement": "RICHEBOURG", "code_postal": "78550", "coordonnees_gps": [48.8059624153, 1.62530918633], "code_commune_insee": "78520"}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51fee036c5efe51a48f8eb6a3c6efd7c27a34666", "fields": {"nom_de_la_commune": "ROCQUENCOURT", "libell_d_acheminement": "ROCQUENCOURT", "code_postal": "78150", "coordonnees_gps": [48.8291874065, 2.12052828501], "code_commune_insee": "78524"}, "geometry": {"type": "Point", "coordinates": [2.12052828501, 48.8291874065]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a8bb52b26d3d82cc49d2ba9c533754febcffa1f", "fields": {"nom_de_la_commune": "ROLLEBOISE", "libell_d_acheminement": "ROLLEBOISE", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78528"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6f1ddae089d4cddc2660d91d17d419b27dca01c", "fields": {"nom_de_la_commune": "ROSAY", "libell_d_acheminement": "ROSAY", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78530"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f28d450d381cb09e7538efd3bf483eb3d70a0aa1", "fields": {"nom_de_la_commune": "ROSNY SUR SEINE", "libell_d_acheminement": "ROSNY SUR SEINE", "code_postal": "78710", "coordonnees_gps": [48.9968477595, 1.60769084206], "code_commune_insee": "78531"}, "geometry": {"type": "Point", "coordinates": [1.60769084206, 48.9968477595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98aede5b530545e77739f50a511029a2e167dff6", "fields": {"nom_de_la_commune": "ST CYR L ECOLE", "libell_d_acheminement": "ST CYR L ECOLE", "code_postal": "78210", "coordonnees_gps": [48.8064735796, 2.0656262845], "code_commune_insee": "78545"}, "geometry": {"type": "Point", "coordinates": [2.0656262845, 48.8064735796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d926776129bbc1630345e0f7542f139ebab2357", "fields": {"nom_de_la_commune": "ST GERMAIN DE LA GRANGE", "libell_d_acheminement": "ST GERMAIN DE LA GRANGE", "code_postal": "78640", "coordonnees_gps": [48.8210314117, 1.88134330227], "code_commune_insee": "78550"}, "geometry": {"type": "Point", "coordinates": [1.88134330227, 48.8210314117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d92befe0c401d31c40aff72d64a1651e9f621579", "fields": {"nom_de_la_commune": "ST NOM LA BRETECHE", "libell_d_acheminement": "ST NOM LA BRETECHE", "code_postal": "78860", "coordonnees_gps": [48.8631666578, 2.01892251697], "code_commune_insee": "78571"}, "geometry": {"type": "Point", "coordinates": [2.01892251697, 48.8631666578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1517d74a7a67a186a20046b73fc707c9984b70c8", "fields": {"nom_de_la_commune": "ST REMY L HONORE", "libell_d_acheminement": "ST REMY L HONORE", "code_postal": "78690", "coordonnees_gps": [48.7275992987, 1.8882726457], "code_commune_insee": "78576"}, "geometry": {"type": "Point", "coordinates": [1.8882726457, 48.7275992987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5734bde5798906d2107cff53a5d0e4b914da21e1", "fields": {"nom_de_la_commune": "THOIRY", "libell_d_acheminement": "THOIRY", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78616"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46e18b8cb6588ea06124b3629cb426d6ebb58148", "fields": {"nom_de_la_commune": "AIFFRES", "libell_d_acheminement": "AIFFRES", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79003"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60912d973f3e30fb503b84e34da0b9b90f384242", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "ARGENTON LES VALLEES", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7f0cf125b9f30b1893d10d33441142f9d18ee9b", "fields": {"code_postal": "79300", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "LA CHAPELLE GAUDIN", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2108757f66f0c8d8e0438dc0c90384e8b9fba77", "fields": {"nom_de_la_commune": "ARGENTON L EGLISE", "libell_d_acheminement": "ARGENTON L EGLISE", "code_postal": "79290", "coordonnees_gps": [47.061559842, -0.28224777481], "code_commune_insee": "79014"}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10785a25f9241b28f765624e739ab094cf62bb09", "fields": {"nom_de_la_commune": "BEAUSSAIS VITRE", "libell_d_acheminement": "BEAUSSAIS VITRE", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79030"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72bb5943afc87627f21c59fe8a8fe63dcef824f", "fields": {"nom_de_la_commune": "LE BEUGNON", "libell_d_acheminement": "LE BEUGNON", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79035"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27aae307eac09c8c3af87e1a2079dafdda99f02c", "fields": {"nom_de_la_commune": "BOUILLE LORETZ", "libell_d_acheminement": "BOUILLE LORETZ", "code_postal": "79290", "coordonnees_gps": [47.061559842, -0.28224777481], "code_commune_insee": "79043"}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b4fe8e0751dccbf497db798b7f6bf6f07bd87d2", "fields": {"nom_de_la_commune": "BOUIN", "libell_d_acheminement": "BOUIN", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79045"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "840ee74646b4117ac0f5ca545d3b437e9405a647", "fields": {"nom_de_la_commune": "BRION PRES THOUET", "libell_d_acheminement": "BRION PRES THOUET", "code_postal": "79290", "coordonnees_gps": [47.061559842, -0.28224777481], "code_commune_insee": "79056"}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "095ce61500e5a178eb0c31b783de7b251754b827", "fields": {"nom_de_la_commune": "CAUNAY", "libell_d_acheminement": "CAUNAY", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79060"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58e380717bc20bb3c3945dcad06e70862383ef02", "fields": {"code_postal": "79370", "code_commune_insee": "79061", "libell_d_acheminement": "CELLES SUR BELLE", "ligne_5": "VERRINES SOUS CELLES", "nom_de_la_commune": "CELLES SUR BELLE", "coordonnees_gps": [46.2791849908, -0.237039794874]}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85e92aea3913e66d3afca7be433a2e3e9c21b41f", "fields": {"nom_de_la_commune": "CERSAY", "libell_d_acheminement": "CERSAY", "code_postal": "79290", "coordonnees_gps": [47.061559842, -0.28224777481], "code_commune_insee": "79063"}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0135fa8b74e827821edcbb6ed30900e2a890f37", "fields": {"nom_de_la_commune": "CHAIL", "libell_d_acheminement": "CHAIL", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79064"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0028342b6b1e7cd83b8833c409b938f0931e4866", "fields": {"nom_de_la_commune": "CHANTELOUP", "libell_d_acheminement": "CHANTELOUP", "code_postal": "79320", "coordonnees_gps": [46.7253627429, -0.568110256331], "code_commune_insee": "79069"}, "geometry": {"type": "Point", "coordinates": [-0.568110256331, 46.7253627429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0877121b04c2066b1b6379f6eb1e871a95905340", "fields": {"code_postal": "79360", "code_commune_insee": "79078", "libell_d_acheminement": "PRISSE LA CHARRIERE", "ligne_5": "LA CHARRIERE", "nom_de_la_commune": "PRISSE LA CHARRIERE", "coordonnees_gps": [46.1718369403, -0.460736148916]}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddb8ba0872e445bfe7e1426931b0c05e7c19b50c", "fields": {"code_postal": "79360", "code_commune_insee": "79078", "libell_d_acheminement": "PRISSE LA CHARRIERE", "ligne_5": "PRISSE", "nom_de_la_commune": "PRISSE LA CHARRIERE", "coordonnees_gps": [46.1718369403, -0.460736148916]}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6adc79d6a919a42b62d090f328a712cee2ab5d12", "fields": {"nom_de_la_commune": "MAULEON", "libell_d_acheminement": "MAULEON", "code_postal": "79700", "coordonnees_gps": [46.9364849279, -0.753058283039], "code_commune_insee": "79079"}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9e18fcdb3647693e0ae77444c31553ab9566024", "fields": {"code_postal": "79700", "code_commune_insee": "79079", "libell_d_acheminement": "MAULEON", "ligne_5": "LOUBLANDE", "nom_de_la_commune": "MAULEON", "coordonnees_gps": [46.9364849279, -0.753058283039]}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f4ee8c08c91632ed639a09dda6d5744b379e57", "fields": {"code_postal": "79700", "code_commune_insee": "79079", "libell_d_acheminement": "MAULEON", "ligne_5": "MOULINS", "nom_de_la_commune": "MAULEON", "coordonnees_gps": [46.9364849279, -0.753058283039]}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2068ac73738fda5f072f08eb7493c3d05e9c2505", "fields": {"nom_de_la_commune": "LA COUARDE", "libell_d_acheminement": "LA COUARDE", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79098"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c45f2f22b896fede758fb053c06e056b087ba973", "fields": {"nom_de_la_commune": "COULON", "libell_d_acheminement": "COULON", "code_postal": "79510", "coordonnees_gps": [46.3373584247, -0.585039967907], "code_commune_insee": "79100"}, "geometry": {"type": "Point", "coordinates": [-0.585039967907, 46.3373584247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c2a36ccb62b54863e215e06b607243fcb7fba6", "fields": {"nom_de_la_commune": "ECHIRE", "libell_d_acheminement": "ECHIRE", "code_postal": "79410", "coordonnees_gps": [46.3956786662, -0.424997632045], "code_commune_insee": "79109"}, "geometry": {"type": "Point", "coordinates": [-0.424997632045, 46.3956786662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3d58e61af00e82aaa7f1b7a7b041482daf00b3a", "fields": {"nom_de_la_commune": "EPANNES", "libell_d_acheminement": "EPANNES", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79112"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b625d2722334c7c62578c5a1bbc5a35b82dbf710", "fields": {"nom_de_la_commune": "EXIREUIL", "libell_d_acheminement": "EXIREUIL", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79114"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18be3c34206e3ce9aea34796bd5063c868c881da", "fields": {"nom_de_la_commune": "FAYE SUR ARDIN", "libell_d_acheminement": "FAYE SUR ARDIN", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79117"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "971c4666d1740638baa99fa8d714d1c20c785455", "fields": {"nom_de_la_commune": "FONTENILLE ST MARTIN D ENTRAIGUES", "libell_d_acheminement": "FONTENILLE ST MARTIN ENTRAIGUES", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79122"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cce91b5bde9f740267a582fb45e5dfa6203fd38a", "fields": {"code_postal": "79110", "code_commune_insee": "79122", "libell_d_acheminement": "FONTENILLE ST MARTIN ENTRAIGUES", "ligne_5": "ST MARTIN D ENTRAIGUES", "nom_de_la_commune": "FONTENILLE ST MARTIN D ENTRAIGUES", "coordonnees_gps": [46.0796792551, -0.0776262361776]}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23802d5ca904189b510f80f89ae63057c88aef4d", "fields": {"nom_de_la_commune": "LA FORET SUR SEVRE", "libell_d_acheminement": "LA FORET SUR SEVRE", "code_postal": "79380", "coordonnees_gps": [46.7639583246, -0.657227871413], "code_commune_insee": "79123"}, "geometry": {"type": "Point", "coordinates": [-0.657227871413, 46.7639583246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "769c4c4afe10f9a3cc2a8538033dfd6ba5034b68", "fields": {"nom_de_la_commune": "GLENAY", "libell_d_acheminement": "GLENAY", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79134"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec2bf269d1ae3e314db83996596d0321c4af2ae", "fields": {"nom_de_la_commune": "GRANZAY GRIPT", "libell_d_acheminement": "GRANZAY GRIPT", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79137"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab286809238c1d99eacb430af58d7d4992878a9c", "fields": {"nom_de_la_commune": "LES GROSEILLERS", "libell_d_acheminement": "LES GROSEILLERS", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79139"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c5a76f2ef073ca059a98d6ebb2a18d838dfb4dc", "fields": {"nom_de_la_commune": "LEZAY", "libell_d_acheminement": "LEZAY", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79148"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "192ba763563e62da24d663c0157a5b220f68a46e", "fields": {"nom_de_la_commune": "LOUBILLE", "libell_d_acheminement": "LOUBILLE", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79154"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32da3db3b7b973bb138ec90825c304cf1b95f00a", "fields": {"nom_de_la_commune": "LOUZY", "libell_d_acheminement": "LOUZY", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79157"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96d725c60a5b9f6a5724d5b6d6d888c7bcee3722", "fields": {"nom_de_la_commune": "LUZAY", "libell_d_acheminement": "LUZAY", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79161"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "309456b21305326a4b99f213e917e74475c1d8f4", "fields": {"nom_de_la_commune": "MARIGNY", "libell_d_acheminement": "MARIGNY", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79166"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56ea4b74be9ac0eca98f66eab423aa388f681030", "fields": {"nom_de_la_commune": "MAUZE SUR LE MIGNON", "libell_d_acheminement": "MAUZE SUR LE MIGNON", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79170"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b19c774aef3095c0dc41c7b20acfb6fa7a5bc6a2", "fields": {"nom_de_la_commune": "MAZIERES SUR BERONNE", "libell_d_acheminement": "MAZIERES SUR BERONNE", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79173"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cade5a99f2314b0f4258d06dfa6956e346a70bd", "fields": {"nom_de_la_commune": "NEUVY BOUIN", "libell_d_acheminement": "NEUVY BOUIN", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79190"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef4edd3a74286b66b13dfe0f37aeb44593d5ae63", "fields": {"code_postal": "79000", "code_commune_insee": "79191", "libell_d_acheminement": "NIORT", "ligne_5": "SOUCHE", "nom_de_la_commune": "NIORT", "coordonnees_gps": [46.3258954005, -0.471948799186]}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fa5d3a59d7ae69b71e892ad5564ef567d4112da", "fields": {"nom_de_la_commune": "PIERREFITTE", "libell_d_acheminement": "PIERREFITTE", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79209"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79c09b0544950d1794383e28459b80489f161eb6", "fields": {"nom_de_la_commune": "PLIBOUX", "libell_d_acheminement": "PLIBOUX", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79212"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a41740ae286193e0b3f59504d0fa22a0f9ba8d4c", "fields": {"nom_de_la_commune": "PUGNY", "libell_d_acheminement": "PUGNY", "code_postal": "79320", "coordonnees_gps": [46.7253627429, -0.568110256331], "code_commune_insee": "79222"}, "geometry": {"type": "Point", "coordinates": [-0.568110256331, 46.7253627429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a666912214828cdffb433e66676ec4f54c9bf402", "fields": {"nom_de_la_commune": "ST PIERRE LE VIEUX", "libell_d_acheminement": "ST PIERRE LE VIEUX", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76641"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acbdf46c2ab91a5d6115870ca72d010ec28c70ed", "fields": {"nom_de_la_commune": "ST RIQUIER EN RIVIERE", "libell_d_acheminement": "ST RIQUIER EN RIVIERE", "code_postal": "76340", "coordonnees_gps": [49.8827796444, 1.59743945705], "code_commune_insee": "76645"}, "geometry": {"type": "Point", "coordinates": [1.59743945705, 49.8827796444]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d34002393996fa76234a1dce75be84e762f6dd52", "fields": {"nom_de_la_commune": "ST SYLVAIN", "libell_d_acheminement": "ST SYLVAIN", "code_postal": "76460", "coordonnees_gps": [49.8337451527, 0.727411790002], "code_commune_insee": "76651"}, "geometry": {"type": "Point", "coordinates": [0.727411790002, 49.8337451527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80fe2b68452fb0c6c501ce8aec2de3b3b3554593", "fields": {"nom_de_la_commune": "ST VAAST DIEPPEDALLE", "libell_d_acheminement": "ST VAAST DIEPPEDALLE", "code_postal": "76450", "coordonnees_gps": [49.775306419, 0.640370985618], "code_commune_insee": "76653"}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05b2df7f887df475d34a5efdf1e334f4a124ccb9", "fields": {"nom_de_la_commune": "SASSETOT LE MAUCONDUIT", "libell_d_acheminement": "SASSETOT LE MAUCONDUIT", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76663"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fa81cbcd70bf90bd30cfc6a8374545916db3ec5", "fields": {"code_postal": "76540", "code_commune_insee": "76663", "libell_d_acheminement": "SASSETOT LE MAUCONDUIT", "ligne_5": "LES PETITES DALLES", "nom_de_la_commune": "SASSETOT LE MAUCONDUIT", "coordonnees_gps": [49.7570077564, 0.523798637411]}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b46c4f0ebe58ad961a774916da4fa3a2dd53fe4", "fields": {"nom_de_la_commune": "SIERVILLE", "libell_d_acheminement": "SIERVILLE", "code_postal": "76690", "coordonnees_gps": [49.5862188915, 1.14950930862], "code_commune_insee": "76675"}, "geometry": {"type": "Point", "coordinates": [1.14950930862, 49.5862188915]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4040f10e61d97dce683484d805d4f208eb40e6a8", "fields": {"nom_de_la_commune": "SIGY EN BRAY", "libell_d_acheminement": "SIGY EN BRAY", "code_postal": "76780", "coordonnees_gps": [49.5162651662, 1.48144260019], "code_commune_insee": "76676"}, "geometry": {"type": "Point", "coordinates": [1.48144260019, 49.5162651662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a48e196f620c449acf029b3b4ae1e45c79ecca9c", "fields": {"nom_de_la_commune": "SOMMERY", "libell_d_acheminement": "SOMMERY", "code_postal": "76440", "coordonnees_gps": [49.6188544023, 1.54394824597], "code_commune_insee": "76678"}, "geometry": {"type": "Point", "coordinates": [1.54394824597, 49.6188544023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fdd014a79ec518bedb5a25c17afc08fbde26311", "fields": {"nom_de_la_commune": "SOMMESNIL", "libell_d_acheminement": "SOMMESNIL", "code_postal": "76560", "coordonnees_gps": [49.7257116216, 0.791799762014], "code_commune_insee": "76679"}, "geometry": {"type": "Point", "coordinates": [0.791799762014, 49.7257116216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df81d7a4b9b331c132600d40cca7df90c7c6bf5d", "fields": {"nom_de_la_commune": "SOTTEVILLE SOUS LE VAL", "libell_d_acheminement": "SOTTEVILLE SOUS LE VAL", "code_postal": "76410", "coordonnees_gps": [49.3161439073, 1.06648311512], "code_commune_insee": "76682"}, "geometry": {"type": "Point", "coordinates": [1.06648311512, 49.3161439073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fcb8e3fc14dd1d04b52077755e5dd27f6868dfb", "fields": {"nom_de_la_commune": "SOTTEVILLE SUR MER", "libell_d_acheminement": "SOTTEVILLE SUR MER", "code_postal": "76740", "coordonnees_gps": [49.8334810107, 0.84718181664], "code_commune_insee": "76683"}, "geometry": {"type": "Point", "coordinates": [0.84718181664, 49.8334810107]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5307f64e232ba43e6b7976d20cfd20ac18b68e6", "fields": {"nom_de_la_commune": "THIETREVILLE", "libell_d_acheminement": "THIETREVILLE", "code_postal": "76540", "coordonnees_gps": [49.7570077564, 0.523798637411], "code_commune_insee": "76689"}, "geometry": {"type": "Point", "coordinates": [0.523798637411, 49.7570077564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7aff849f5b001d9ae24f5b8378373fb74af3bd0", "fields": {"nom_de_la_commune": "THIL MANNEVILLE", "libell_d_acheminement": "THIL MANNEVILLE", "code_postal": "76730", "coordonnees_gps": [49.796069527, 0.969746100995], "code_commune_insee": "76690"}, "geometry": {"type": "Point", "coordinates": [0.969746100995, 49.796069527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cbecd93ae8741a19aead10b4e48b4d62e0ccbb2", "fields": {"nom_de_la_commune": "TOUFFREVILLE LA CORBELINE", "libell_d_acheminement": "TOUFFREVILLE LA CORBELINE", "code_postal": "76190", "coordonnees_gps": [49.6137220579, 0.75005615397], "code_commune_insee": "76702"}, "geometry": {"type": "Point", "coordinates": [0.75005615397, 49.6137220579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8a979bddc4b95fb6f949b96a99c8bf27bee4a88", "fields": {"nom_de_la_commune": "TOURVILLE SUR ARQUES", "libell_d_acheminement": "TOURVILLE SUR ARQUES", "code_postal": "76550", "coordonnees_gps": [49.8714214242, 1.05265186739], "code_commune_insee": "76707"}, "geometry": {"type": "Point", "coordinates": [1.05265186739, 49.8714214242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e84fd65cf95f91c8180424c3c8ac865f00a6d11", "fields": {"nom_de_la_commune": "LES TROIS PIERRES", "libell_d_acheminement": "LES TROIS PIERRES", "code_postal": "76430", "coordonnees_gps": [49.5106363792, 0.356900771027], "code_commune_insee": "76714"}, "geometry": {"type": "Point", "coordinates": [0.356900771027, 49.5106363792]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "095b6a9040948795aaa4af7f0e7698ad94f7bc24", "fields": {"nom_de_la_commune": "TROUVILLE", "libell_d_acheminement": "TROUVILLE", "code_postal": "76210", "coordonnees_gps": [49.5851184372, 0.501047284927], "code_commune_insee": "76715"}, "geometry": {"type": "Point", "coordinates": [0.501047284927, 49.5851184372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcc60f8ffcc46dea92de1954a082b4ee2f43e281", "fields": {"nom_de_la_commune": "TURRETOT", "libell_d_acheminement": "TURRETOT", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76716"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca01fadc2a211a972b31c3408680e058fb70a42", "fields": {"code_postal": "76450", "code_commune_insee": "76732", "libell_d_acheminement": "BUTOT VENESVILLE", "ligne_5": "BUTOT EN CAUX", "nom_de_la_commune": "BUTOT VENESVILLE", "coordonnees_gps": [49.775306419, 0.640370985618]}, "geometry": {"type": "Point", "coordinates": [0.640370985618, 49.775306419]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89d84252fd178359039cdf5818f8f61ab259baa8", "fields": {"nom_de_la_commune": "VERGETOT", "libell_d_acheminement": "VERGETOT", "code_postal": "76280", "coordonnees_gps": [49.6375220481, 0.236587220503], "code_commune_insee": "76734"}, "geometry": {"type": "Point", "coordinates": [0.236587220503, 49.6375220481]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29317383ca97938540d1c519e60b3b1a68f965bc", "fields": {"nom_de_la_commune": "YMARE", "libell_d_acheminement": "YMARE", "code_postal": "76520", "coordonnees_gps": [49.3789256618, 1.21574177782], "code_commune_insee": "76753"}, "geometry": {"type": "Point", "coordinates": [1.21574177782, 49.3789256618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1b48ad0d2ee42d2b9d5e9c4cb6bc90248056c10", "fields": {"nom_de_la_commune": "ACHERES LA FORET", "libell_d_acheminement": "ACHERES LA FORET", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77001"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09be2f5e4c9e46f36b20df96e0b00e98fc0e42ab", "fields": {"nom_de_la_commune": "AUBEPIERRE OZOUER LE REPOS", "libell_d_acheminement": "AUBEPIERRE OZOUER LE REPOS", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77010"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1885114fb4a4848f3c33d539537ca93f3b71afc5", "fields": {"nom_de_la_commune": "AVON", "libell_d_acheminement": "AVON", "code_postal": "77210", "coordonnees_gps": [48.417089136, 2.75506799012], "code_commune_insee": "77014"}, "geometry": {"type": "Point", "coordinates": [2.75506799012, 48.417089136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fea010b9ced3bda10a3f4d2bc7b1d1fd29c9e4b", "fields": {"nom_de_la_commune": "BEAUCHERY ST MARTIN", "libell_d_acheminement": "BEAUCHERY ST MARTIN", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77026"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "acaff12f1bd91e2fc10017d8f33f1e97cdd2e6d0", "fields": {"nom_de_la_commune": "BERNAY VILBERT", "libell_d_acheminement": "BERNAY VILBERT", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77031"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f3915776dd6e7c3ae0a0b7ea445ea2c11ba6b6", "fields": {"code_postal": "77540", "code_commune_insee": "77031", "libell_d_acheminement": "BERNAY VILBERT", "ligne_5": "VILBERT", "nom_de_la_commune": "BERNAY VILBERT", "coordonnees_gps": [48.6871810178, 2.97337841043]}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6254d58ef5d8fa16caf61aacce53a3d3399b898", "fields": {"nom_de_la_commune": "BETON BAZOCHES", "libell_d_acheminement": "BETON BAZOCHES", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77032"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ae8e0649ffc3986a11f9e6855e9b1aefec0344c", "fields": {"nom_de_la_commune": "BOULEURS", "libell_d_acheminement": "BOULEURS", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77047"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "731c2b16abd1d8b73de58e0c9338de9b113996dc", "fields": {"nom_de_la_commune": "LA BROSSE MONTCEAUX", "libell_d_acheminement": "LA BROSSE MONTCEAUX", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77054"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed35112814c8f8f369996caf2547e48197c87fdb", "fields": {"nom_de_la_commune": "BROU SUR CHANTEREINE", "libell_d_acheminement": "BROU SUR CHANTEREINE", "code_postal": "77177", "coordonnees_gps": [48.8903763139, 2.63870656579], "code_commune_insee": "77055"}, "geometry": {"type": "Point", "coordinates": [2.63870656579, 48.8903763139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d0c2a1006ae2cfc873bbdc201c027b1d07b0f4a", "fields": {"nom_de_la_commune": "BURCY", "libell_d_acheminement": "BURCY", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77056"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9207fdc2d8ac2130c115348f4f4c047d81827b9", "fields": {"nom_de_la_commune": "BUSSIERES", "libell_d_acheminement": "BUSSIERES", "code_postal": "77750", "coordonnees_gps": [48.9148071078, 3.22989278872], "code_commune_insee": "77057"}, "geometry": {"type": "Point", "coordinates": [3.22989278872, 48.9148071078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20504e2b3bf163716e489f7a7eff1813662fd6f8", "fields": {"nom_de_la_commune": "CHAILLY EN BIERE", "libell_d_acheminement": "CHAILLY EN BIERE", "code_postal": "77930", "coordonnees_gps": [48.4690092081, 2.55644926131], "code_commune_insee": "77069"}, "geometry": {"type": "Point", "coordinates": [2.55644926131, 48.4690092081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cd2228e710bfd9740d5428bebb15ae3aecc01b5", "fields": {"nom_de_la_commune": "CHAILLY EN BRIE", "libell_d_acheminement": "CHAILLY EN BRIE", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77070"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "749b65fcf7b55b3c5118db8ce7502b355eb1e6f6", "fields": {"nom_de_la_commune": "CHALAUTRE LA GRANDE", "libell_d_acheminement": "CHALAUTRE LA GRANDE", "code_postal": "77171", "coordonnees_gps": [48.5414685058, 3.39619308726], "code_commune_insee": "77072"}, "geometry": {"type": "Point", "coordinates": [3.39619308726, 48.5414685058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1646067b41d2ddef9bff3263ac6e1e0eab45b2dc", "fields": {"nom_de_la_commune": "CHALIFERT", "libell_d_acheminement": "CHALIFERT", "code_postal": "77144", "coordonnees_gps": [48.8764616468, 2.75749686803], "code_commune_insee": "77075"}, "geometry": {"type": "Point", "coordinates": [2.75749686803, 48.8764616468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "991d9442ecf590937862f0af8f7da8baedfc1cec", "fields": {"nom_de_la_commune": "CHALMAISON", "libell_d_acheminement": "CHALMAISON", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77076"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c11f3bb9f1664a9625048a237dab17ae212b896f", "fields": {"nom_de_la_commune": "CHAMBRY", "libell_d_acheminement": "CHAMBRY", "code_postal": "77910", "coordonnees_gps": [48.9999569179, 2.91840604341], "code_commune_insee": "77077"}, "geometry": {"type": "Point", "coordinates": [2.91840604341, 48.9999569179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a463036e6b32d59ee37f360a1b3e4fed5bbfff18", "fields": {"nom_de_la_commune": "CHANTELOUP EN BRIE", "libell_d_acheminement": "CHANTELOUP EN BRIE", "code_postal": "77600", "coordonnees_gps": [48.8361794738, 2.73226890342], "code_commune_insee": "77085"}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6658d3bd5966d69d0ded6c192820f8a4fb2d8e69", "fields": {"nom_de_la_commune": "LES CHAPELLES BOURBON", "libell_d_acheminement": "LES CHAPELLES BOURBON", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77091"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e12d082c7dd46a8fd61bc08b6d26ab3501327c5", "fields": {"nom_de_la_commune": "CHAUFFRY", "libell_d_acheminement": "CHAUFFRY", "code_postal": "77169", "coordonnees_gps": [48.8249765475, 3.16311202199], "code_commune_insee": "77106"}, "geometry": {"type": "Point", "coordinates": [3.16311202199, 48.8249765475]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb14cad673ee76014eabb28972c091a6519ab13a", "fields": {"nom_de_la_commune": "CHESSY", "libell_d_acheminement": "CHESSY", "code_postal": "77700", "coordonnees_gps": [48.8632419628, 2.79709040394], "code_commune_insee": "77111"}, "geometry": {"type": "Point", "coordinates": [2.79709040394, 48.8632419628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f536ae596cf6ea11cf86743abf3de5fcb6faf0bc", "fields": {"nom_de_la_commune": "CHEVRU", "libell_d_acheminement": "CHEVRU", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77113"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8ce5fbec8498e4c31367738325612d009cb4dc9", "fields": {"nom_de_la_commune": "CLAYE SOUILLY", "libell_d_acheminement": "CLAYE SOUILLY", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77118"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "014dd45036f0cf4969517b204574fed33038cfe8", "fields": {"code_postal": "77410", "code_commune_insee": "77118", "libell_d_acheminement": "CLAYE SOUILLY", "ligne_5": "SOUILLY", "nom_de_la_commune": "CLAYE SOUILLY", "coordonnees_gps": [48.9493778355, 2.7161171355]}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1644f86b237e94433814fb3ea120d917e35c0e8", "fields": {"nom_de_la_commune": "COUBERT", "libell_d_acheminement": "COUBERT", "code_postal": "77170", "coordonnees_gps": [48.6935707994, 2.63183347569], "code_commune_insee": "77127"}, "geometry": {"type": "Point", "coordinates": [2.63183347569, 48.6935707994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe23520927c3b0ffaef7c240cd44287a45dd83b1", "fields": {"nom_de_la_commune": "COUILLY PONT AUX DAMES", "libell_d_acheminement": "COUILLY PONT AUX DAMES", "code_postal": "77860", "coordonnees_gps": [48.889293661, 2.86625543445], "code_commune_insee": "77128"}, "geometry": {"type": "Point", "coordinates": [2.86625543445, 48.889293661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ba61f8e38e00e2b7acbd12cf6c6880eea94f2e5", "fields": {"nom_de_la_commune": "COULOMMES", "libell_d_acheminement": "COULOMMES", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77130"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4318ea2761d1a3e689ddb9725c5982921c203fd7", "fields": {"nom_de_la_commune": "COURCHAMP", "libell_d_acheminement": "COURCHAMP", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77134"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d60c8138b218d456874b79fc06bde4993c443d9c", "fields": {"nom_de_la_commune": "COURPALAY", "libell_d_acheminement": "COURPALAY", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77135"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5de05b9e4e8dafbcade56184d448648578bb2be5", "fields": {"nom_de_la_commune": "CROISSY BEAUBOURG", "libell_d_acheminement": "CROISSY BEAUBOURG", "code_postal": "77183", "coordonnees_gps": [48.8166135478, 2.65568100478], "code_commune_insee": "77146"}, "geometry": {"type": "Point", "coordinates": [2.65568100478, 48.8166135478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "152e35187eedbbb23a881b045fa625ff6f4fe224", "fields": {"nom_de_la_commune": "CROUY SUR OURCQ", "libell_d_acheminement": "CROUY SUR OURCQ", "code_postal": "77840", "coordonnees_gps": [49.0796099088, 3.11275376018], "code_commune_insee": "77148"}, "geometry": {"type": "Point", "coordinates": [3.11275376018, 49.0796099088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bb82e35e8c47162f380f98c5e7ed5a4531cc4c", "fields": {"nom_de_la_commune": "CUCHARMOY", "libell_d_acheminement": "CUCHARMOY", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77149"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e10b037c5d315c489fa7bb698178e55b172c2f97", "fields": {"nom_de_la_commune": "DAMMARIE LES LYS", "libell_d_acheminement": "DAMMARIE LES LYS", "code_postal": "77190", "coordonnees_gps": [48.5045043002, 2.61429281246], "code_commune_insee": "77152"}, "geometry": {"type": "Point", "coordinates": [2.61429281246, 48.5045043002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b36e1fac52c323678cd739f9394fc318bc92383c", "fields": {"nom_de_la_commune": "DIANT", "libell_d_acheminement": "DIANT", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77158"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b013939b35ed50e84f88399a362f7062c86214f", "fields": {"nom_de_la_commune": "DOUY LA RAMEE", "libell_d_acheminement": "DOUY LA RAMEE", "code_postal": "77139", "coordonnees_gps": [49.0542002868, 2.91324246435], "code_commune_insee": "77163"}, "geometry": {"type": "Point", "coordinates": [2.91324246435, 49.0542002868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eaf33ea25cc15fbe7f21a19f2b4436d6918ecae", "fields": {"nom_de_la_commune": "ECHOUBOULAINS", "libell_d_acheminement": "ECHOUBOULAINS", "code_postal": "77830", "coordonnees_gps": [48.4598569753, 2.90486661459], "code_commune_insee": "77164"}, "geometry": {"type": "Point", "coordinates": [2.90486661459, 48.4598569753]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "515aeaf51a673068a5a1194142e35172631a975d", "fields": {"nom_de_la_commune": "EGLIGNY", "libell_d_acheminement": "EGLIGNY", "code_postal": "77126", "coordonnees_gps": [48.4261598514, 3.09512447411], "code_commune_insee": "77167"}, "geometry": {"type": "Point", "coordinates": [3.09512447411, 48.4261598514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d37a9d61e3c382e7c312ab63fda209910c34db99", "fields": {"nom_de_la_commune": "EMERAINVILLE", "libell_d_acheminement": "EMERAINVILLE", "code_postal": "77184", "coordonnees_gps": [48.8191814737, 2.61008151215], "code_commune_insee": "77169"}, "geometry": {"type": "Point", "coordinates": [2.61008151215, 48.8191814737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46549aefc46c8c03ffb413f0eeb9499c0a5daa3e", "fields": {"nom_de_la_commune": "ESMANS", "libell_d_acheminement": "ESMANS", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77172"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c7689fb35508119e577d7a1245212c6e4252e7c", "fields": {"nom_de_la_commune": "FERICY", "libell_d_acheminement": "FERICY", "code_postal": "77133", "coordonnees_gps": [48.4532100891, 2.828016762], "code_commune_insee": "77179"}, "geometry": {"type": "Point", "coordinates": [2.828016762, 48.4532100891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9a7bbdd8a4a1ccbf09b3e1dac70f497e80ea80f", "fields": {"nom_de_la_commune": "FEROLLES ATTILLY", "libell_d_acheminement": "FEROLLES ATTILLY", "code_postal": "77150", "coordonnees_gps": [48.7409851538, 2.62903924486], "code_commune_insee": "77180"}, "geometry": {"type": "Point", "coordinates": [2.62903924486, 48.7409851538]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "719471fd4934c7fe3dde5a335f5a90bceaa81aaa", "fields": {"nom_de_la_commune": "FERRIERES EN BRIE", "libell_d_acheminement": "FERRIERES EN BRIE", "code_postal": "77164", "coordonnees_gps": [48.8197885569, 2.70933036195], "code_commune_insee": "77181"}, "geometry": {"type": "Point", "coordinates": [2.70933036195, 48.8197885569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab7a7d90c2ec76ca2edc1d6b6e49c0adbe5a13ee", "fields": {"nom_de_la_commune": "LA FERTE GAUCHER", "libell_d_acheminement": "LA FERTE GAUCHER", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77182"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebecb02b8ec21c25482aeff76c1098fcb12433b6", "fields": {"nom_de_la_commune": "LA FERTE SOUS JOUARRE", "libell_d_acheminement": "LA FERTE SOUS JOUARRE", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77183"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5567a5785591bc237362c9ff12cfb947ce5406b", "fields": {"nom_de_la_commune": "FONTAINE FOURCHES", "libell_d_acheminement": "FONTAINE FOURCHES", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77187"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfde7cade6b767791b30942716420f465e492a17", "fields": {"nom_de_la_commune": "FONTAINE LE PORT", "libell_d_acheminement": "FONTAINE LE PORT", "code_postal": "77590", "coordonnees_gps": [48.4860029495, 2.72692404848], "code_commune_insee": "77188"}, "geometry": {"type": "Point", "coordinates": [2.72692404848, 48.4860029495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e36ed44f45ce9708bbcc636d0cbd5163b2e66bb", "fields": {"nom_de_la_commune": "FONTAINS", "libell_d_acheminement": "FONTAINS", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77190"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0249482735fb0eb99519363d2900cfbbf235f10", "fields": {"nom_de_la_commune": "FONTENAILLES", "libell_d_acheminement": "FONTENAILLES", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77191"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6beea7639bba70bb41dc92bc65d61f34d08f2855", "fields": {"nom_de_la_commune": "FRETOY", "libell_d_acheminement": "FRETOY", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77197"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a151cd734349300705abe4c8bf74ba7c5b8131d5", "fields": {"nom_de_la_commune": "GARENTREVILLE", "libell_d_acheminement": "GARENTREVILLE", "code_postal": "77890", "coordonnees_gps": [48.1786433192, 2.5341392437], "code_commune_insee": "77200"}, "geometry": {"type": "Point", "coordinates": [2.5341392437, 48.1786433192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52be9c716d788ac9de4a25c251457084faf2f3fd", "fields": {"nom_de_la_commune": "GERMIGNY L EVEQUE", "libell_d_acheminement": "GERMIGNY L EVEQUE", "code_postal": "77910", "coordonnees_gps": [48.9999569179, 2.91840604341], "code_commune_insee": "77203"}, "geometry": {"type": "Point", "coordinates": [2.91840604341, 48.9999569179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8794d35858ad15f38fd6c5594f8ad070b58ab5e", "fields": {"nom_de_la_commune": "GERMIGNY SOUS COULOMBS", "libell_d_acheminement": "GERMIGNY SOUS COULOMBS", "code_postal": "77840", "coordonnees_gps": [49.0796099088, 3.11275376018], "code_commune_insee": "77204"}, "geometry": {"type": "Point", "coordinates": [3.11275376018, 49.0796099088]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8535913a7da3cfbb42ba50eb0671044fc848bee", "fields": {"nom_de_la_commune": "GIRONVILLE", "libell_d_acheminement": "GIRONVILLE", "code_postal": "77890", "coordonnees_gps": [48.1786433192, 2.5341392437], "code_commune_insee": "77207"}, "geometry": {"type": "Point", "coordinates": [2.5341392437, 48.1786433192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34ddb9fae316dabef283279b65b7b1dc36f7d84d", "fields": {"nom_de_la_commune": "LA GRANDE PAROISSE", "libell_d_acheminement": "LA GRANDE PAROISSE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77210"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5bfb7e3c48dae8699e821ddd992fee113554cca", "fields": {"nom_de_la_commune": "GRISY SUR SEINE", "libell_d_acheminement": "GRISY SUR SEINE", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77218"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0b01088590d02ef713a6b8c457d3348b70abc96", "fields": {"code_postal": "77520", "code_commune_insee": "77223", "libell_d_acheminement": "GURCY LE CHATEL", "ligne_5": "CHALAUTRE LA REPOSTE", "nom_de_la_commune": "GURCY LE CHATEL", "coordonnees_gps": [48.4787752425, 3.12194735393]}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ca1a6450c320c6cded4cd076842058379a14f6", "fields": {"nom_de_la_commune": "HERME", "libell_d_acheminement": "HERME", "code_postal": "77114", "coordonnees_gps": [48.4693763813, 3.34027903986], "code_commune_insee": "77227"}, "geometry": {"type": "Point", "coordinates": [3.34027903986, 48.4693763813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18b049e2f248d0707b5c9eecef67bd12b9108b64", "fields": {"nom_de_la_commune": "JABLINES", "libell_d_acheminement": "JABLINES", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77234"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de4bae7535e6f25859ce6e63e38489110c692cc1", "fields": {"nom_de_la_commune": "JUILLY", "libell_d_acheminement": "JUILLY", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77241"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f737a50f80abe5ca8f4d23e97884e07a7d64e6f4", "fields": {"nom_de_la_commune": "JUTIGNY", "libell_d_acheminement": "JUTIGNY", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77242"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "599324f0c0df18e83565596ac4f5560b7c7d1d65", "fields": {"nom_de_la_commune": "LECHELLE", "libell_d_acheminement": "LECHELLE", "code_postal": "77171", "coordonnees_gps": [48.5414685058, 3.39619308726], "code_commune_insee": "77246"}, "geometry": {"type": "Point", "coordinates": [3.39619308726, 48.5414685058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04a827937f26b55b3b4aae82f45d9b069c323ecb", "fields": {"nom_de_la_commune": "LIEUSAINT", "libell_d_acheminement": "LIEUSAINT", "code_postal": "77127", "coordonnees_gps": [48.6260881297, 2.55027058367], "code_commune_insee": "77251"}, "geometry": {"type": "Point", "coordinates": [2.55027058367, 48.6260881297]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dd305128a71d834a5eb44515d0d9fcc00990ffb", "fields": {"nom_de_la_commune": "LIMOGES FOURCHES", "libell_d_acheminement": "LIMOGES FOURCHES", "code_postal": "77550", "coordonnees_gps": [48.6199078529, 2.63560162952], "code_commune_insee": "77252"}, "geometry": {"type": "Point", "coordinates": [2.63560162952, 48.6199078529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad985317b4ef6b4f6a510f2054d4ea75fefae137", "fields": {"nom_de_la_commune": "LISSY", "libell_d_acheminement": "LISSY", "code_postal": "77550", "coordonnees_gps": [48.6199078529, 2.63560162952], "code_commune_insee": "77253"}, "geometry": {"type": "Point", "coordinates": [2.63560162952, 48.6199078529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f086fb581f3c104b580ef17c486396e369a3f7", "fields": {"nom_de_la_commune": "LOUAN VILLEGRUIS FONTAINE", "libell_d_acheminement": "LOUAN VILLEGRUIS FONTAINE", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77262"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04bb101461bb89ceff822a1de474d9cf6a359703", "fields": {"code_postal": "77540", "code_commune_insee": "77264", "libell_d_acheminement": "LUMIGNY NESLES ORMEAUX", "ligne_5": "NESLES LA GILBERDE", "nom_de_la_commune": "LUMIGNY NESLES ORMEAUX", "coordonnees_gps": [48.6871810178, 2.97337841043]}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87e6b0daaf1c61551b3af820513ca00fef0add2", "fields": {"nom_de_la_commune": "MACHAULT", "libell_d_acheminement": "MACHAULT", "code_postal": "77133", "coordonnees_gps": [48.4532100891, 2.828016762], "code_commune_insee": "77266"}, "geometry": {"type": "Point", "coordinates": [2.828016762, 48.4532100891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1798ca7974f7b6326005f8744e38d1a27b02615", "fields": {"nom_de_la_commune": "LES MARETS", "libell_d_acheminement": "LES MARETS", "code_postal": "77560", "coordonnees_gps": [48.6366559441, 3.38263980516], "code_commune_insee": "77275"}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ecb9726a84ecafbe2ab09c5ec49e2aa08c61edc", "fields": {"nom_de_la_commune": "MAREUIL LES MEAUX", "libell_d_acheminement": "MAREUIL LES MEAUX", "code_postal": "77100", "coordonnees_gps": [48.9417341013, 2.89233400365], "code_commune_insee": "77276"}, "geometry": {"type": "Point", "coordinates": [2.89233400365, 48.9417341013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "411da61de0b67ec321c6e39f23636fcaf487fdcd", "fields": {"nom_de_la_commune": "MARLES EN BRIE", "libell_d_acheminement": "MARLES EN BRIE", "code_postal": "77610", "coordonnees_gps": [48.733632054, 2.85536623292], "code_commune_insee": "77277"}, "geometry": {"type": "Point", "coordinates": [2.85536623292, 48.733632054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "badff9f2f29a1330bcab5f5f7475fbd5ecedbc57", "fields": {"nom_de_la_commune": "MELUN", "libell_d_acheminement": "MELUN", "code_postal": "77000", "coordonnees_gps": [48.5229543545, 2.67825416798], "code_commune_insee": "77288"}, "geometry": {"type": "Point", "coordinates": [2.67825416798, 48.5229543545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f25c8369abb5b70ee1d168ddd6c75aab10d278a9", "fields": {"nom_de_la_commune": "MELZ SUR SEINE", "libell_d_acheminement": "MELZ SUR SEINE", "code_postal": "77171", "coordonnees_gps": [48.5414685058, 3.39619308726], "code_commune_insee": "77289"}, "geometry": {"type": "Point", "coordinates": [3.39619308726, 48.5414685058]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11491b1e8866aa96bc190feece473f4da6558fb9", "fields": {"nom_de_la_commune": "MONTENILS", "libell_d_acheminement": "MONTENILS", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77304"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a61cf10a284489b518da9fd00e6fdbab28ed947", "fields": {"nom_de_la_commune": "MONTIGNY SUR LOING", "libell_d_acheminement": "MONTIGNY SUR LOING", "code_postal": "77690", "coordonnees_gps": [48.32561464, 2.75158001552], "code_commune_insee": "77312"}, "geometry": {"type": "Point", "coordinates": [2.75158001552, 48.32561464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cb91e0dd96fbae2e4411fc13c3300fc9b5bb6e4", "fields": {"nom_de_la_commune": "MONTOLIVET", "libell_d_acheminement": "MONTOLIVET", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77314"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "430976bf580256d0de9e2d90c9bc2a87886fdfb5", "fields": {"nom_de_la_commune": "MONTRY", "libell_d_acheminement": "MONTRY", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77315"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42c7a7f041e52a185f619284abaaf46901220826", "fields": {"nom_de_la_commune": "NANDY", "libell_d_acheminement": "NANDY", "code_postal": "77176", "coordonnees_gps": [48.5856002138, 2.56311279324], "code_commune_insee": "77326"}, "geometry": {"type": "Point", "coordinates": [2.56311279324, 48.5856002138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5403226a846386e95dc02ac3acb47af031260d0", "fields": {"nom_de_la_commune": "LE CAYLAR", "libell_d_acheminement": "LE CAYLAR", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34064"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e86ad2a3e05d5713a7a4909a49be6a6de55e7311", "fields": {"nom_de_la_commune": "CAZEVIEILLE", "libell_d_acheminement": "CAZEVIEILLE", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34066"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d1dcc6103c23eac8fb03f5171da924ab6a9ba0f", "fields": {"nom_de_la_commune": "CAZOULS D HERAULT", "libell_d_acheminement": "CAZOULS D HERAULT", "code_postal": "34120", "coordonnees_gps": [43.4541786417, 3.425777952], "code_commune_insee": "34068"}, "geometry": {"type": "Point", "coordinates": [3.425777952, 43.4541786417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3348c6df18a47df8e56c4a2896a3ce296b032a1", "fields": {"nom_de_la_commune": "CERS", "libell_d_acheminement": "CERS", "code_postal": "34420", "coordonnees_gps": [43.3127282598, 3.32015070092], "code_commune_insee": "34073"}, "geometry": {"type": "Point", "coordinates": [3.32015070092, 43.3127282598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8090e2e2aacf536426984ed7635e298ec560d95a", "fields": {"nom_de_la_commune": "CEYRAS", "libell_d_acheminement": "CEYRAS", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34076"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc4af30a1941e61eee7edce61a8c4e5deaa2488f", "fields": {"nom_de_la_commune": "CLERMONT L HERAULT", "libell_d_acheminement": "CLERMONT L HERAULT", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34079"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d3da1225f20dee537f79d0110f20582ffa34bd4", "fields": {"nom_de_la_commune": "COLOMBIERS", "libell_d_acheminement": "COLOMBIERS", "code_postal": "34440", "coordonnees_gps": [43.2898778698, 3.12028009829], "code_commune_insee": "34081"}, "geometry": {"type": "Point", "coordinates": [3.12028009829, 43.2898778698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2fbc079aa944a48e82b76b1d202c3d4a2a82722", "fields": {"nom_de_la_commune": "COURNONSEC", "libell_d_acheminement": "COURNONSEC", "code_postal": "34660", "coordonnees_gps": [43.5604318583, 3.70546216229], "code_commune_insee": "34087"}, "geometry": {"type": "Point", "coordinates": [3.70546216229, 43.5604318583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6597dd11734ba24c16ad52e5c123418f502a419b", "fields": {"nom_de_la_commune": "FELINES MINERVOIS", "libell_d_acheminement": "FELINES MINERVOIS", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34097"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c61cb1770cb864d3f9e9b1bfad61a5f3536a37", "fields": {"nom_de_la_commune": "FONTANES", "libell_d_acheminement": "FONTANES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34102"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5cfa02081f950ae89e35ea98a8660b85548f416", "fields": {"nom_de_la_commune": "FOZIERES", "libell_d_acheminement": "FOZIERES", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34106"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ad95d90e71f072cd2bb4e68a27cafe1eccf7cd6", "fields": {"nom_de_la_commune": "GABIAN", "libell_d_acheminement": "GABIAN", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34109"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e50b9126d138b7127da887a98715b00fa67f86b7", "fields": {"nom_de_la_commune": "GRAISSESSAC", "libell_d_acheminement": "GRAISSESSAC", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34117"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3233fa2ed59971031860e675a91b1983b7493866", "fields": {"nom_de_la_commune": "LATTES", "libell_d_acheminement": "LATTES", "code_postal": "34970", "coordonnees_gps": [43.5636689381, 3.90272500139], "code_commune_insee": "34129"}, "geometry": {"type": "Point", "coordinates": [3.90272500139, 43.5636689381]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38aba6ae5abb67e791e167e13861770a5ab861f0", "fields": {"nom_de_la_commune": "LAURET", "libell_d_acheminement": "LAURET", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34131"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b18d27329cfaba6e9c054e43899370cda18abfff", "fields": {"nom_de_la_commune": "LAUROUX", "libell_d_acheminement": "LAUROUX", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34132"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a608e96fadeb1a5b16903ac7c6383d8a0789070", "fields": {"nom_de_la_commune": "LIGNAN SUR ORB", "libell_d_acheminement": "LIGNAN SUR ORB", "code_postal": "34490", "coordonnees_gps": [43.4586544373, 3.12933342616], "code_commune_insee": "34140"}, "geometry": {"type": "Point", "coordinates": [3.12933342616, 43.4586544373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aafa94672442c2b04199beabb808b53780baf953", "fields": {"nom_de_la_commune": "LA LIVINIERE", "libell_d_acheminement": "LA LIVINIERE", "code_postal": "34210", "coordonnees_gps": [43.3496207888, 2.69697045864], "code_commune_insee": "34141"}, "geometry": {"type": "Point", "coordinates": [2.69697045864, 43.3496207888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c80d24c9872dd89fb8950b850705d9b6c436800", "fields": {"nom_de_la_commune": "MARAUSSAN", "libell_d_acheminement": "MARAUSSAN", "code_postal": "34370", "coordonnees_gps": [43.3835173901, 3.09833577984], "code_commune_insee": "34148"}, "geometry": {"type": "Point", "coordinates": [3.09833577984, 43.3835173901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7da71e5b627e5153178d4b463d0cf3778f429582", "fields": {"nom_de_la_commune": "MARGON", "libell_d_acheminement": "MARGON", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34149"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e61692308379e60580745218e9bef1a74f96f6c3", "fields": {"nom_de_la_commune": "MAUGUIO", "libell_d_acheminement": "MAUGUIO", "code_postal": "34130", "coordonnees_gps": [43.6110613982, 4.02001857853], "code_commune_insee": "34154"}, "geometry": {"type": "Point", "coordinates": [4.02001857853, 43.6110613982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b69e1aa2a99972f7537c244f128cb7330d549337", "fields": {"code_postal": "34280", "code_commune_insee": "34154", "libell_d_acheminement": "MAUGUIO", "ligne_5": "CARNON PLAGE", "nom_de_la_commune": "MAUGUIO", "coordonnees_gps": [43.5892643554, 4.01559155736]}, "geometry": {"type": "Point", "coordinates": [4.01559155736, 43.5892643554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fe9195c6fbede29247a3b0269fb2d46a5342f6c", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34160"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fe47ed57d735b0946e237975d9bcf671a5c82e9", "fields": {"nom_de_la_commune": "MONTADY", "libell_d_acheminement": "MONTADY", "code_postal": "34310", "coordonnees_gps": [43.3337836292, 3.00618483128], "code_commune_insee": "34161"}, "geometry": {"type": "Point", "coordinates": [3.00618483128, 43.3337836292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05b62407ae5d3bdbf3583d3a8c803f0916c1042d", "fields": {"nom_de_la_commune": "MONTPELLIER", "libell_d_acheminement": "MONTPELLIER", "code_postal": "34080", "coordonnees_gps": [43.613085594, 3.86919806969], "code_commune_insee": "34172"}, "geometry": {"type": "Point", "coordinates": [3.86919806969, 43.613085594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f17e248e293988b7319d33adc13dee4e52f375b", "fields": {"nom_de_la_commune": "MONTPELLIER", "libell_d_acheminement": "MONTPELLIER", "code_postal": "34090", "coordonnees_gps": [43.613085594, 3.86919806969], "code_commune_insee": "34172"}, "geometry": {"type": "Point", "coordinates": [3.86919806969, 43.613085594]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af96654d8cafaaaee02a03d9605567254c07df2f", "fields": {"nom_de_la_commune": "NEFFIES", "libell_d_acheminement": "NEFFIES", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34181"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf8062aeb3f92809703e0b93bf5d1c4b918ba28", "fields": {"nom_de_la_commune": "NEZIGNAN L EVEQUE", "libell_d_acheminement": "NEZIGNAN L EVEQUE", "code_postal": "34120", "coordonnees_gps": [43.4541786417, 3.425777952], "code_commune_insee": "34182"}, "geometry": {"type": "Point", "coordinates": [3.425777952, 43.4541786417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b5822d3c87868418ac3c63b597fd35afbfc419d", "fields": {"nom_de_la_commune": "NISSAN LEZ ENSERUNE", "libell_d_acheminement": "NISSAN LEZ ENSERUNE", "code_postal": "34440", "coordonnees_gps": [43.2898778698, 3.12028009829], "code_commune_insee": "34183"}, "geometry": {"type": "Point", "coordinates": [3.12028009829, 43.2898778698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b41d5afa6fccf545551baab91db820caaa1da98", "fields": {"nom_de_la_commune": "OCTON", "libell_d_acheminement": "OCTON", "code_postal": "34800", "coordonnees_gps": [43.6139049296, 3.38034520642], "code_commune_insee": "34186"}, "geometry": {"type": "Point", "coordinates": [3.38034520642, 43.6139049296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9a6f0985dd0730c2ca579e86ef0c360159291fc", "fields": {"nom_de_la_commune": "PAULHAN", "libell_d_acheminement": "PAULHAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34194"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82cdc8886244fdba1339347d13a5b20edf600603", "fields": {"nom_de_la_commune": "PEZENAS", "libell_d_acheminement": "PEZENAS", "code_postal": "34120", "coordonnees_gps": [43.4541786417, 3.425777952], "code_commune_insee": "34199"}, "geometry": {"type": "Point", "coordinates": [3.425777952, 43.4541786417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30e8c805490c783461dfcb405967df2ea637caa6", "fields": {"nom_de_la_commune": "POPIAN", "libell_d_acheminement": "POPIAN", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34208"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b52d04b0be513760a116018e8681f8c043c0752", "fields": {"nom_de_la_commune": "POUJOLS", "libell_d_acheminement": "POUJOLS", "code_postal": "34700", "coordonnees_gps": [43.7450519373, 3.34675760594], "code_commune_insee": "34212"}, "geometry": {"type": "Point", "coordinates": [3.34675760594, 43.7450519373]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00ace779ba01f89f9bc824b06965b15de0ca70f4", "fields": {"nom_de_la_commune": "POUZOLLES", "libell_d_acheminement": "POUZOLLES", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34214"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3747a75850041dc699da81cac76b88bd0c3f6c00", "fields": {"nom_de_la_commune": "RIOLS", "libell_d_acheminement": "RIOLS", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34229"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb10006e554c8a31510374afc1ca64c99c605a32", "fields": {"nom_de_la_commune": "ROQUEREDONDE", "libell_d_acheminement": "ROQUEREDONDE", "code_postal": "34650", "coordonnees_gps": [43.7331097591, 3.20531974015], "code_commune_insee": "34233"}, "geometry": {"type": "Point", "coordinates": [3.20531974015, 43.7331097591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1803587d7890d1485844cf0894a9b86e2c39bd17", "fields": {"nom_de_la_commune": "ROQUESSELS", "libell_d_acheminement": "ROQUESSELS", "code_postal": "34320", "coordonnees_gps": [43.5357812562, 3.31030858131], "code_commune_insee": "34234"}, "geometry": {"type": "Point", "coordinates": [3.31030858131, 43.5357812562]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62de4ee98a6c1bf47d8acf5204f9df480a568804", "fields": {"nom_de_la_commune": "ST ANDRE DE BUEGES", "libell_d_acheminement": "ST ANDRE DE BUEGES", "code_postal": "34190", "coordonnees_gps": [43.8815462048, 3.66184975759], "code_commune_insee": "34238"}, "geometry": {"type": "Point", "coordinates": [3.66184975759, 43.8815462048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3422bee5b7ce0fd1960413dc80a1d9e2fd278267", "fields": {"nom_de_la_commune": "ST ANDRE DE SANGONIS", "libell_d_acheminement": "ST ANDRE DE SANGONIS", "code_postal": "34725", "coordonnees_gps": [43.6689337124, 3.48233667506], "code_commune_insee": "34239"}, "geometry": {"type": "Point", "coordinates": [3.48233667506, 43.6689337124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9bfa7340d13d9147a8130bbd6b1487e5a84318f", "fields": {"nom_de_la_commune": "ST BAUZILLE DE LA SYLVE", "libell_d_acheminement": "ST BAUZILLE DE LA SYLVE", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34241"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3789215c48b695c4f4e5c8ab7aacbb1b3241e2ca", "fields": {"nom_de_la_commune": "ST CHINIAN", "libell_d_acheminement": "ST CHINIAN", "code_postal": "34360", "coordonnees_gps": [43.435388382, 2.89758904621], "code_commune_insee": "34245"}, "geometry": {"type": "Point", "coordinates": [2.89758904621, 43.435388382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d1dd009ef8ec66fe23354570b20dd9533ac2218", "fields": {"nom_de_la_commune": "ST ETIENNE ESTRECHOUX", "libell_d_acheminement": "ST ETIENNE ESTRECHOUX", "code_postal": "34260", "coordonnees_gps": [43.727259517, 3.11419673738], "code_commune_insee": "34252"}, "geometry": {"type": "Point", "coordinates": [3.11419673738, 43.727259517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79335d91bb7ece22adbb1a77ac2e2a4e7a72b08f", "fields": {"code_postal": "34610", "code_commune_insee": "34257", "libell_d_acheminement": "ST GENIES DE VARENSAL", "ligne_5": "PLAISANCE", "nom_de_la_commune": "ST GENIES DE VARENSAL", "coordonnees_gps": [43.6529362037, 2.99617489245]}, "geometry": {"type": "Point", "coordinates": [2.99617489245, 43.6529362037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a456de18ad8228a2e8fe4cd7d116ad3f2bfea764", "fields": {"nom_de_la_commune": "ST GENIES DE FONTEDIT", "libell_d_acheminement": "ST GENIES DE FONTEDIT", "code_postal": "34480", "coordonnees_gps": [43.4960221015, 3.19224438296], "code_commune_insee": "34258"}, "geometry": {"type": "Point", "coordinates": [3.19224438296, 43.4960221015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2325f717084d68e409b6a90b1fbe7a12915328f", "fields": {"nom_de_la_commune": "ST JULIEN", "libell_d_acheminement": "ST JULIEN", "code_postal": "34390", "coordonnees_gps": [43.5538069124, 2.92197528887], "code_commune_insee": "34271"}, "geometry": {"type": "Point", "coordinates": [2.92197528887, 43.5538069124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57a5e37112f9a3cdfd1e2338368a1c77afcf7a02", "fields": {"nom_de_la_commune": "ST NAZAIRE DE PEZAN", "libell_d_acheminement": "ST NAZAIRE DE PEZAN", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34280"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82113518975bf70ee8925d40b28e72ee0dba077f", "fields": {"nom_de_la_commune": "ST PAUL ET VALMALLE", "libell_d_acheminement": "ST PAUL ET VALMALLE", "code_postal": "34570", "coordonnees_gps": [43.6245225678, 3.72064518654], "code_commune_insee": "34282"}, "geometry": {"type": "Point", "coordinates": [3.72064518654, 43.6245225678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c929d2d036d65b0ba0bdc296b191a66761021536", "fields": {"nom_de_la_commune": "ST PIERRE DE LA FAGE", "libell_d_acheminement": "ST PIERRE DE LA FAGE", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34283"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33984709ee230c2bbf47699cd3f8120ac4e0c578", "fields": {"nom_de_la_commune": "ST SERIES", "libell_d_acheminement": "ST SERIES", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34288"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65987933cce680dc9b5c0e530a429c1674433c30", "fields": {"nom_de_la_commune": "SATURARGUES", "libell_d_acheminement": "SATURARGUES", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34294"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77b2f589afcac03c92ada167f2ba2307b9072392", "fields": {"nom_de_la_commune": "SORBS", "libell_d_acheminement": "SORBS", "code_postal": "34520", "coordonnees_gps": [43.8417683845, 3.41686780147], "code_commune_insee": "34303"}, "geometry": {"type": "Point", "coordinates": [3.41686780147, 43.8417683845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "578d65a6cd89714a865ae21c0d57d9ce6567c404", "fields": {"nom_de_la_commune": "TOURBES", "libell_d_acheminement": "TOURBES", "code_postal": "34120", "coordonnees_gps": [43.4541786417, 3.425777952], "code_commune_insee": "34311"}, "geometry": {"type": "Point", "coordinates": [3.425777952, 43.4541786417]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0439990a8c2d292167a9ecfc271695db5a8cd50f", "fields": {"nom_de_la_commune": "LE TRIADOU", "libell_d_acheminement": "LE TRIADOU", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34314"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db29c76a1b613a626a280d3b3c69e08da18f300d", "fields": {"nom_de_la_commune": "USCLAS D HERAULT", "libell_d_acheminement": "USCLAS D HERAULT", "code_postal": "34230", "coordonnees_gps": [43.5651303893, 3.55082158149], "code_commune_insee": "34315"}, "geometry": {"type": "Point", "coordinates": [3.55082158149, 43.5651303893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04dc9f7f46da3b237ae6d30ddb1d1f482a9c046f", "fields": {"nom_de_la_commune": "VACQUIERES", "libell_d_acheminement": "VACQUIERES", "code_postal": "34270", "coordonnees_gps": [43.795055603, 3.86917490634], "code_commune_insee": "34318"}, "geometry": {"type": "Point", "coordinates": [3.86917490634, 43.795055603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e7309a5f9150880837e968b5755f630a83cfb7c", "fields": {"nom_de_la_commune": "VALERGUES", "libell_d_acheminement": "VALERGUES", "code_postal": "34130", "coordonnees_gps": [43.6110613982, 4.02001857853], "code_commune_insee": "34321"}, "geometry": {"type": "Point", "coordinates": [4.02001857853, 43.6110613982]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec2639066307a9f8c400c0a2389f54a3fd6853ea", "fields": {"nom_de_la_commune": "VENDRES", "libell_d_acheminement": "VENDRES", "code_postal": "34350", "coordonnees_gps": [43.2574196352, 3.23174001635], "code_commune_insee": "34329"}, "geometry": {"type": "Point", "coordinates": [3.23174001635, 43.2574196352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c386d03c918462cb98917073a20881fafd61966d", "fields": {"nom_de_la_commune": "VERARGUES", "libell_d_acheminement": "VERARGUES", "code_postal": "34400", "coordonnees_gps": [43.6926862761, 4.11007105423], "code_commune_insee": "34330"}, "geometry": {"type": "Point", "coordinates": [4.11007105423, 43.6926862761]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b930067fc0dcd55e90736dcf39516a176fceaf2", "fields": {"nom_de_la_commune": "VERRERIES DE MOUSSANS", "libell_d_acheminement": "VERRERIES DE MOUSSANS", "code_postal": "34220", "coordonnees_gps": [43.4664315747, 2.74099139617], "code_commune_insee": "34331"}, "geometry": {"type": "Point", "coordinates": [2.74099139617, 43.4664315747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2995601b97a8db144ccdd04aa416d49c6b501c2f", "fields": {"nom_de_la_commune": "VIC LA GARDIOLE", "libell_d_acheminement": "VIC LA GARDIOLE", "code_postal": "34110", "coordonnees_gps": [43.471821386, 3.77729139459], "code_commune_insee": "34333"}, "geometry": {"type": "Point", "coordinates": [3.77729139459, 43.471821386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdee6b692cd7a56f7f07b15526728d8a41fd1a8f", "fields": {"nom_de_la_commune": "VILLEMAGNE L ARGENTIERE", "libell_d_acheminement": "VILLEMAGNE L ARGENTIERE", "code_postal": "34600", "coordonnees_gps": [43.5955665999, 3.15511892035], "code_commune_insee": "34335"}, "geometry": {"type": "Point", "coordinates": [3.15511892035, 43.5955665999]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec53619a78ab7423bba72bb3b31c44c1a53f4b6", "fields": {"nom_de_la_commune": "VILLENEUVE LES MAGUELONE", "libell_d_acheminement": "VILLENEUVE LES MAGUELONE", "code_postal": "34750", "coordonnees_gps": [43.5254993943, 3.85847522654], "code_commune_insee": "34337"}, "geometry": {"type": "Point", "coordinates": [3.85847522654, 43.5254993943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bc40b308707a1ca34fa770a0ea82294a737aa1a", "fields": {"nom_de_la_commune": "VIOLS EN LAVAL", "libell_d_acheminement": "VIOLS EN LAVAL", "code_postal": "34380", "coordonnees_gps": [43.7837745388, 3.69630341514], "code_commune_insee": "34342"}, "geometry": {"type": "Point", "coordinates": [3.69630341514, 43.7837745388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d63f699245ae4a05d2910db9e54546b5ca8953a4", "fields": {"nom_de_la_commune": "LA GRANDE MOTTE", "libell_d_acheminement": "LA GRANDE MOTTE", "code_postal": "34280", "coordonnees_gps": [43.5892643554, 4.01559155736], "code_commune_insee": "34344"}, "geometry": {"type": "Point", "coordinates": [4.01559155736, 43.5892643554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de84cfd37a739459b2fde4178d201950ce366311", "fields": {"nom_de_la_commune": "BAGUER PICAN", "libell_d_acheminement": "BAGUER PICAN", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35010"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d37140f2222999c99682df049ffc32aebe511ab8", "fields": {"nom_de_la_commune": "BOISTRUDAN", "libell_d_acheminement": "BOISTRUDAN", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35028"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6ba39e89ff59ef23a24980e0156f5a9ccbf6991", "fields": {"nom_de_la_commune": "BOURG DES COMPTES", "libell_d_acheminement": "BOURG DES COMPTES", "code_postal": "35890", "coordonnees_gps": [47.9478686946, -1.71764789932], "code_commune_insee": "35033"}, "geometry": {"type": "Point", "coordinates": [-1.71764789932, 47.9478686946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8eaad88ff297080dc16a8b11224a226772b600a", "fields": {"nom_de_la_commune": "LES BRULAIS", "libell_d_acheminement": "LES BRULAIS", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35046"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36e43ab7b7f835dc36015efca0b25dba09fa73d", "fields": {"nom_de_la_commune": "CHANTELOUP", "libell_d_acheminement": "CHANTELOUP", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35054"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34de3a84b8ad4912b23a745be0dc3d8b3b509682", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX FILTZMEENS", "libell_d_acheminement": "LA CHAPELLE AUX FILTZMEENS", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35056"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cba65edd2c627388ca6af9d3b9210540fd1389d6", "fields": {"nom_de_la_commune": "LA CHAPELLE CHAUSSEE", "libell_d_acheminement": "LA CHAPELLE CHAUSSEE", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35058"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c10c65f8e434fb3b952dd10b1aef213a5000da4", "fields": {"nom_de_la_commune": "LA CHAPELLE DU LOU DU LAC", "libell_d_acheminement": "LA CHAPELLE DU LOU DU LAC", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35060"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "053f72f3191ae2dd3760764efac88d1b74f70595", "fields": {"nom_de_la_commune": "CHATEAUBOURG", "libell_d_acheminement": "CHATEAUBOURG", "code_postal": "35220", "coordonnees_gps": [48.1189448859, -1.37446219817], "code_commune_insee": "35068"}, "geometry": {"type": "Point", "coordinates": [-1.37446219817, 48.1189448859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ede6b672da34c4165fb96bcae568009114e511b1", "fields": {"code_postal": "35220", "code_commune_insee": "35068", "libell_d_acheminement": "CHATEAUBOURG", "ligne_5": "ST MELAINE", "nom_de_la_commune": "CHATEAUBOURG", "coordonnees_gps": [48.1189448859, -1.37446219817]}, "geometry": {"type": "Point", "coordinates": [-1.37446219817, 48.1189448859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c777f7c98eb22ef112fe6a1b86e61c2b3a56aa2", "fields": {"nom_de_la_commune": "CLAYES", "libell_d_acheminement": "CLAYES", "code_postal": "35590", "coordonnees_gps": [48.1446063618, -1.84797555662], "code_commune_insee": "35081"}, "geometry": {"type": "Point", "coordinates": [-1.84797555662, 48.1446063618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc906c79351342b2450c8e2a7912fd841e237a6b", "fields": {"nom_de_la_commune": "CORPS NUDS", "libell_d_acheminement": "CORPS NUDS", "code_postal": "35150", "coordonnees_gps": [47.9720104956, -1.49457170259], "code_commune_insee": "35088"}, "geometry": {"type": "Point", "coordinates": [-1.49457170259, 47.9720104956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283de4af23c09f74cefc27b8581a8f1945502eb0", "fields": {"nom_de_la_commune": "DOL DE BRETAGNE", "libell_d_acheminement": "DOL DE BRETAGNE", "code_postal": "35120", "coordonnees_gps": [48.5420685848, -1.71947746678], "code_commune_insee": "35095"}, "geometry": {"type": "Point", "coordinates": [-1.71947746678, 48.5420685848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "791d2571d25c708a5d02c9fd7b970dbdeb27dc9d", "fields": {"nom_de_la_commune": "DOMPIERRE DU CHEMIN", "libell_d_acheminement": "DOMPIERRE DU CHEMIN", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35100"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846c41810e9784e775c17ecd6775967ba86330b9", "fields": {"nom_de_la_commune": "EANCE", "libell_d_acheminement": "EANCE", "code_postal": "35640", "coordonnees_gps": [47.832577574, -1.30525929111], "code_commune_insee": "35103"}, "geometry": {"type": "Point", "coordinates": [-1.30525929111, 47.832577574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c3277bb237349153910f6098f11a73dd998eac9", "fields": {"nom_de_la_commune": "ERCE PRES LIFFRE", "libell_d_acheminement": "ERCE PRES LIFFRE", "code_postal": "35340", "coordonnees_gps": [48.199281564, -1.48595491187], "code_commune_insee": "35107"}, "geometry": {"type": "Point", "coordinates": [-1.48595491187, 48.199281564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d39a4696c74b051fe5f29aeedf1e7a5613148b44", "fields": {"nom_de_la_commune": "ETRELLES", "libell_d_acheminement": "ETRELLES", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35109"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80b6a49efb5b2938a444ed4399ae307979cae3b", "fields": {"nom_de_la_commune": "FOUGERES", "libell_d_acheminement": "FOUGERES", "code_postal": "35300", "coordonnees_gps": [48.3524114648, -1.19508479795], "code_commune_insee": "35115"}, "geometry": {"type": "Point", "coordinates": [-1.19508479795, 48.3524114648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d43c96d1cc64c2a45a42b612c7cb19f68bbe13c0", "fields": {"nom_de_la_commune": "GEVEZE", "libell_d_acheminement": "GEVEZE", "code_postal": "35850", "coordonnees_gps": [48.2249209949, -1.86776064457], "code_commune_insee": "35120"}, "geometry": {"type": "Point", "coordinates": [-1.86776064457, 48.2249209949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e77762ae1ca5da48d2eaba26bd1a5663b0a1d85", "fields": {"nom_de_la_commune": "GUIGNEN", "libell_d_acheminement": "GUIGNEN", "code_postal": "35580", "coordonnees_gps": [47.9620542944, -1.8429715247], "code_commune_insee": "35127"}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "479231853aaed6dca762037fcbeeebb44baca7c2", "fields": {"nom_de_la_commune": "GUIPEL", "libell_d_acheminement": "GUIPEL", "code_postal": "35440", "coordonnees_gps": [48.3260797926, -1.69262805003], "code_commune_insee": "35128"}, "geometry": {"type": "Point", "coordinates": [-1.69262805003, 48.3260797926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d6c882a58a391b2100c7a51e70e517c41ae11dc", "fields": {"nom_de_la_commune": "HEDE BAZOUGES", "libell_d_acheminement": "HEDE BAZOUGES", "code_postal": "35630", "coordonnees_gps": [48.2776802001, -1.81257635657], "code_commune_insee": "35130"}, "geometry": {"type": "Point", "coordinates": [-1.81257635657, 48.2776802001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "749094df1c3255f1c3eb605d806a492574fcb106", "fields": {"nom_de_la_commune": "IFFENDIC", "libell_d_acheminement": "IFFENDIC", "code_postal": "35750", "coordonnees_gps": [48.1126516874, -2.04975015868], "code_commune_insee": "35133"}, "geometry": {"type": "Point", "coordinates": [-2.04975015868, 48.1126516874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de0fc545fddb4fedefdb0712ca042b6b58856b27", "fields": {"nom_de_la_commune": "LAIGNELET", "libell_d_acheminement": "LAIGNELET", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35138"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d6fd44fdff078d1248b4eec928ca53fe645fbb2", "fields": {"nom_de_la_commune": "LANDUJAN", "libell_d_acheminement": "LANDUJAN", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35143"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24febe21a2346a7b226e67fa3894e076c418c73", "fields": {"nom_de_la_commune": "LASSY", "libell_d_acheminement": "LASSY", "code_postal": "35580", "coordonnees_gps": [47.9620542944, -1.8429715247], "code_commune_insee": "35149"}, "geometry": {"type": "Point", "coordinates": [-1.8429715247, 47.9620542944]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cdbf80e5c459426af015d13af04a0829161eab5", "fields": {"nom_de_la_commune": "MARTIGNE FERCHAUD", "libell_d_acheminement": "MARTIGNE FERCHAUD", "code_postal": "35640", "coordonnees_gps": [47.832577574, -1.30525929111], "code_commune_insee": "35167"}, "geometry": {"type": "Point", "coordinates": [-1.30525929111, 47.832577574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5423355e58cc97f659215614452979fa4202e084", "fields": {"nom_de_la_commune": "MAURE DE BRETAGNE", "libell_d_acheminement": "MAURE DE BRETAGNE", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35168"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2e7b28085351afd144a2dc9015c48d3f47cec91", "fields": {"nom_de_la_commune": "MEDREAC", "libell_d_acheminement": "MEDREAC", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35171"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5798052397011fc61b43e8b12c65c42ab836e861", "fields": {"nom_de_la_commune": "MELLE", "libell_d_acheminement": "MELLE", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35174"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64727074e7db3186db3ff7839eb5422d925cc525", "fields": {"nom_de_la_commune": "MERNEL", "libell_d_acheminement": "MERNEL", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35175"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9579d3e26f7b9924dc0e007c2fa0b815db983bc9", "fields": {"nom_de_la_commune": "MONTAUTOUR", "libell_d_acheminement": "MONTAUTOUR", "code_postal": "35210", "coordonnees_gps": [48.2437163668, -1.17886767086], "code_commune_insee": "35185"}, "geometry": {"type": "Point", "coordinates": [-1.17886767086, 48.2437163668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "137ff76ba2d3d912f035d9a6ec675e2729de5975", "fields": {"nom_de_la_commune": "MONTHAULT", "libell_d_acheminement": "MONTHAULT", "code_postal": "35420", "coordonnees_gps": [48.4829733533, -1.18630787261], "code_commune_insee": "35190"}, "geometry": {"type": "Point", "coordinates": [-1.18630787261, 48.4829733533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb210261a7ae6543e4d112a02c9d7df4880316ef", "fields": {"nom_de_la_commune": "MORDELLES", "libell_d_acheminement": "MORDELLES", "code_postal": "35310", "coordonnees_gps": [48.0615640681, -1.86453604363], "code_commune_insee": "35196"}, "geometry": {"type": "Point", "coordinates": [-1.86453604363, 48.0615640681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d53a72361b3ec5d69a9668b8e941333bbf4364cc", "fields": {"nom_de_la_commune": "PAIMPONT", "libell_d_acheminement": "PAIMPONT", "code_postal": "35380", "coordonnees_gps": [48.0149966641, -2.10718157509], "code_commune_insee": "35211"}, "geometry": {"type": "Point", "coordinates": [-2.10718157509, 48.0149966641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "599c4f85d5abf8361e75a49a632c2a9aff7d2526", "fields": {"nom_de_la_commune": "TAIARAPU OUEST", "libell_d_acheminement": "TEAHUPOO", "code_postal": "98723", "ligne_5": "TAIARAPU OUEST", "code_commune_insee": "98748"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e6b6c3de0d7c724b88011331517b2673fc435a1", "fields": {"nom_de_la_commune": "TAPUTAPUATEA", "libell_d_acheminement": "AVERA", "code_postal": "98735", "ligne_5": "TAPUTAPUATEA", "code_commune_insee": "98750"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8219d0a91d77b8978aacf38d40ad58f5c34d228", "fields": {"nom_de_la_commune": "TATAKOTO", "libell_d_acheminement": "TUMUKURU", "code_postal": "98783", "ligne_5": "TATAKOTO", "code_commune_insee": "98751"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9fe41781fe47b469100ec1a2c001d22ea54acd", "fields": {"nom_de_la_commune": "TUBUAI", "libell_d_acheminement": "TAAHUAIA", "code_postal": "98754", "ligne_5": "TUBUAI", "code_commune_insee": "98753"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "723631eb3d4d4a758fc2ecb100735e77ff94e06b", "fields": {"nom_de_la_commune": "TUMARAA", "libell_d_acheminement": "TUMARAA", "code_postal": "98735", "code_commune_insee": "98754"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e199bb0f28a20270cdaaf23263bcaa9555dbfa7", "fields": {"nom_de_la_commune": "TUMARAA", "libell_d_acheminement": "FETUNA", "code_postal": "98735", "ligne_5": "TUMARAA", "code_commune_insee": "98754"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b7b44e8a5be12adb2e6f2cd1d91ab62438098ec", "fields": {"nom_de_la_commune": "BELEP", "libell_d_acheminement": "BELEP", "code_postal": "98811", "code_commune_insee": "98801"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e5b887117cc2f5e60d3d19246f023ed86773d5f", "fields": {"nom_de_la_commune": "BOURAIL", "libell_d_acheminement": "BOURAIL", "code_postal": "98870", "code_commune_insee": "98803"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24de990f9acecccd0d5b37719aa08497f5f30930", "fields": {"nom_de_la_commune": "DUMBEA", "libell_d_acheminement": "DUMBEA GA", "code_postal": "98836", "ligne_5": "DUMBEA", "code_commune_insee": "98805"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "093f6d0a1ba6efa22eee35d00b3661e17f0a86f9", "fields": {"nom_de_la_commune": "FARINO", "libell_d_acheminement": "FARINO", "code_postal": "98881", "code_commune_insee": "98806"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "561f720dfcf8db38652a5c67942ad48ee267f8ef", "fields": {"nom_de_la_commune": "HIENGHENE", "libell_d_acheminement": "HIENGHENE", "code_postal": "98815", "code_commune_insee": "98807"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06462464ea2f7117734b705d7c0914fa523ab614", "fields": {"nom_de_la_commune": "L ILE DES PINS", "libell_d_acheminement": "VAO", "code_postal": "98832", "ligne_5": "L ILE DES PINS", "code_commune_insee": "98809"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db0e184bd985cbeaa90377c5768da0d42b63c3fd", "fields": {"nom_de_la_commune": "KONE", "libell_d_acheminement": "KONE", "code_postal": "98860", "code_commune_insee": "98811"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "983b7f1f548056fba40d6c086965571f58f8f41b", "fields": {"nom_de_la_commune": "LE MONT DORE", "libell_d_acheminement": "PLUM", "code_postal": "98875", "ligne_5": "LE MONT DORE", "code_commune_insee": "98817"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "454e6e34fb8fc451f5499019d26668dfb4ba6e62", "fields": {"nom_de_la_commune": "LE MONT DORE", "libell_d_acheminement": "LA COULEE", "code_postal": "98876", "ligne_5": "LE MONT DORE", "code_commune_insee": "98817"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7998b49c8f5b6840fa02144bb31ff46e0be60bce", "fields": {"nom_de_la_commune": "PAITA", "libell_d_acheminement": "TONTOUTA", "code_postal": "98840", "ligne_5": "PAITA", "code_commune_insee": "98821"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8fc2b5e6028c47d16f7a8fa7ff50e088e4a2821", "fields": {"nom_de_la_commune": "THIO", "libell_d_acheminement": "THIO", "code_postal": "98829", "code_commune_insee": "98829"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b8b659fd308cc5f33097dd8546edea530a75cd", "fields": {"nom_de_la_commune": "ILE DE CLIPPERTON", "libell_d_acheminement": "ILE DE CLIPPERTON", "code_postal": "98799", "code_commune_insee": "98901"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fca1e12d33135b5af8faf175178efe5d35f5892a", "fields": {"nom_de_la_commune": "ALBITRECCIA", "libell_d_acheminement": "ALBITRECCIA", "code_postal": "20166", "coordonnees_gps": [41.8437560104, 8.85889610104], "code_commune_insee": "2A008"}, "geometry": {"type": "Point", "coordinates": [8.85889610104, 41.8437560104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a5e7515677964ef5aca0fdc241a58083beb42f7", "fields": {"nom_de_la_commune": "AMBIEGNA", "libell_d_acheminement": "AMBIEGNA", "code_postal": "20151", "coordonnees_gps": [42.0685003984, 8.81211774694], "code_commune_insee": "2A014"}, "geometry": {"type": "Point", "coordinates": [8.81211774694, 42.0685003984]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a1a5a88815ae3dc466edf7328adc25d5586f431", "fields": {"nom_de_la_commune": "BALOGNA", "libell_d_acheminement": "BALOGNA", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A028"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25d64aa20b273c040f3ce72e69dd4c83c0906c81", "fields": {"nom_de_la_commune": "BILIA", "libell_d_acheminement": "BILIA", "code_postal": "20100", "coordonnees_gps": [41.5806968547, 8.93943169099], "code_commune_insee": "2A038"}, "geometry": {"type": "Point", "coordinates": [8.93943169099, 41.5806968547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91ee87fbf4288762f38543651f5e92ab3b074976", "fields": {"nom_de_la_commune": "CAMPO", "libell_d_acheminement": "CAMPO", "code_postal": "20142", "coordonnees_gps": [41.9026734548, 9.00649807358], "code_commune_insee": "2A056"}, "geometry": {"type": "Point", "coordinates": [9.00649807358, 41.9026734548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad5c8481793e1fa4c37ab318655f2036eff6e8b2", "fields": {"nom_de_la_commune": "CARGESE", "libell_d_acheminement": "CARGESE", "code_postal": "20130", "coordonnees_gps": [42.1544879939, 8.62641378113], "code_commune_insee": "2A065"}, "geometry": {"type": "Point", "coordinates": [8.62641378113, 42.1544879939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a9167a0b429f53aea88655b63c6010eb2c4f17f", "fields": {"nom_de_la_commune": "CARGIACA", "libell_d_acheminement": "CARGIACA", "code_postal": "20164", "coordonnees_gps": [41.7320104087, 9.04140404782], "code_commune_insee": "2A066"}, "geometry": {"type": "Point", "coordinates": [9.04140404782, 41.7320104087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af2611c10055802799f1468c8eedeea2e0d3fae1", "fields": {"nom_de_la_commune": "CASALABRIVA", "libell_d_acheminement": "CASALABRIVA", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A071"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d311662aa42905e6dd5172cb31c8766c2ea3f98c", "fields": {"nom_de_la_commune": "CORRANO", "libell_d_acheminement": "CORRANO", "code_postal": "20168", "coordonnees_gps": [41.8821937585, 9.07138118672], "code_commune_insee": "2A094"}, "geometry": {"type": "Point", "coordinates": [9.07138118672, 41.8821937585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20469e9e3e34edbfcd565aee90aec370d51dca3e", "fields": {"nom_de_la_commune": "COTI CHIAVARI", "libell_d_acheminement": "COTI CHIAVARI", "code_postal": "20138", "coordonnees_gps": [41.7690759494, 8.75247801887], "code_commune_insee": "2A098"}, "geometry": {"type": "Point", "coordinates": [8.75247801887, 41.7690759494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5d82fa360b23c67fd13a4076e7c8e2e0d15a4e1", "fields": {"nom_de_la_commune": "CRISTINACCE", "libell_d_acheminement": "CRISTINACCE", "code_postal": "20126", "coordonnees_gps": [42.2751546292, 8.82859750608], "code_commune_insee": "2A100"}, "geometry": {"type": "Point", "coordinates": [8.82859750608, 42.2751546292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54333689cf0d45bdaa64976eba1ac1382990d3e", "fields": {"nom_de_la_commune": "GIUNCHETO", "libell_d_acheminement": "GIUNCHETO", "code_postal": "20100", "coordonnees_gps": [41.5806968547, 8.93943169099], "code_commune_insee": "2A127"}, "geometry": {"type": "Point", "coordinates": [8.93943169099, 41.5806968547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b620eeb0a0e42d646d8edc2effa00addefb0b3d3", "fields": {"nom_de_la_commune": "GROSSA", "libell_d_acheminement": "GROSSA", "code_postal": "20100", "coordonnees_gps": [41.5806968547, 8.93943169099], "code_commune_insee": "2A129"}, "geometry": {"type": "Point", "coordinates": [8.93943169099, 41.5806968547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1985ba44063ee60aff052d6193020f7e44e9847b", "fields": {"code_postal": "20166", "code_commune_insee": "2A130", "libell_d_acheminement": "GROSSETO PRUGNA", "ligne_5": "PORTICCIO", "nom_de_la_commune": "GROSSETO PRUGNA", "coordonnees_gps": [41.8437560104, 8.85889610104]}, "geometry": {"type": "Point", "coordinates": [8.85889610104, 41.8437560104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9018853a7eddeace026d0a3abacae03a1e802dd8", "fields": {"nom_de_la_commune": "LECCI", "libell_d_acheminement": "LECCI", "code_postal": "20137", "coordonnees_gps": [41.6028867799, 9.2627396032], "code_commune_insee": "2A139"}, "geometry": {"type": "Point", "coordinates": [9.2627396032, 41.6028867799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db2ace9c5903d2a9cec3fb802b2e13fe49336af5", "fields": {"nom_de_la_commune": "LOPIGNA", "libell_d_acheminement": "LOPIGNA", "code_postal": "20139", "coordonnees_gps": [42.0901856403, 8.85411271851], "code_commune_insee": "2A144"}, "geometry": {"type": "Point", "coordinates": [8.85411271851, 42.0901856403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53e80ed85c6349180e5751dd838be02ea022dd3a", "fields": {"nom_de_la_commune": "LORETO DI TALLANO", "libell_d_acheminement": "LORETO DI TALLANO", "code_postal": "20165", "coordonnees_gps": [41.7000985242, 9.03162580074], "code_commune_insee": "2A146"}, "geometry": {"type": "Point", "coordinates": [9.03162580074, 41.7000985242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13e4247d5191d391e510ec3d70968deb41d40bc1", "fields": {"nom_de_la_commune": "OCANA", "libell_d_acheminement": "OCANA", "code_postal": "20117", "coordonnees_gps": [41.9372935669, 8.91884221363], "code_commune_insee": "2A181"}, "geometry": {"type": "Point", "coordinates": [8.91884221363, 41.9372935669]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a235d67e3c948feb2b14212ff4e478b153c3883c", "fields": {"nom_de_la_commune": "OLIVESE", "libell_d_acheminement": "OLIVESE", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A186"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e9b53489d2dd0b7b289d6d580e6c835c742d88", "fields": {"nom_de_la_commune": "OLMETO", "libell_d_acheminement": "OLMETO", "code_postal": "20113", "coordonnees_gps": [41.7122104572, 8.90500823174], "code_commune_insee": "2A189"}, "geometry": {"type": "Point", "coordinates": [8.90500823174, 41.7122104572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96c26acee5241b0e28bdda429fb56880afc6bcde", "fields": {"code_postal": "20150", "code_commune_insee": "2A198", "libell_d_acheminement": "OTA", "ligne_5": "PORTO", "nom_de_la_commune": "OTA", "coordonnees_gps": [42.2552083617, 8.7336084267]}, "geometry": {"type": "Point", "coordinates": [8.7336084267, 42.2552083617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9df043d21b467e38e6dd27d046f90159a979581c", "fields": {"nom_de_la_commune": "PIETROSELLA", "libell_d_acheminement": "PIETROSELLA", "code_postal": "20166", "coordonnees_gps": [41.8437560104, 8.85889610104], "code_commune_insee": "2A228"}, "geometry": {"type": "Point", "coordinates": [8.85889610104, 41.8437560104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b361fc44927869aa63c12bdc7b6ccbf359d37b23", "fields": {"code_postal": "20160", "code_commune_insee": "2A240", "libell_d_acheminement": "POGGIOLO", "ligne_5": "GUAGNO LES BAINS", "nom_de_la_commune": "POGGIOLO", "coordonnees_gps": [42.1658822701, 8.82370475032]}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88d550840d5ad1f6f9448e83bcf2fb2e2755b83d", "fields": {"nom_de_la_commune": "QUENZA", "libell_d_acheminement": "QUENZA", "code_postal": "20122", "coordonnees_gps": [41.8074031089, 9.20057614219], "code_commune_insee": "2A254"}, "geometry": {"type": "Point", "coordinates": [9.20057614219, 41.8074031089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f82a95f38e08a4d8e3bb0f19f812a0b080b425", "fields": {"nom_de_la_commune": "REZZA", "libell_d_acheminement": "REZZA", "code_postal": "20121", "coordonnees_gps": [42.1272719035, 8.95083209288], "code_commune_insee": "2A259"}, "geometry": {"type": "Point", "coordinates": [8.95083209288, 42.1272719035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5da43b0a3df294f4ad2398963eb1fa480d684d32", "fields": {"nom_de_la_commune": "SARROLA CARCOPINO", "libell_d_acheminement": "SARROLA CARCOPINO", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A271"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6de66055e4d876565590006758a0a7427329de3", "fields": {"nom_de_la_commune": "SERRIERA", "libell_d_acheminement": "SERRIERA", "code_postal": "20147", "coordonnees_gps": [42.3264086022, 8.67199581743], "code_commune_insee": "2A279"}, "geometry": {"type": "Point", "coordinates": [8.67199581743, 42.3264086022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ba8f36cd85109442fcb615c1b43a4f8e9811b5", "fields": {"nom_de_la_commune": "SOLLACARO", "libell_d_acheminement": "SOLLACARO", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A284"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "607b84cc61e21af384e39680c532dd2934824c5b", "fields": {"nom_de_la_commune": "SORBOLLANO", "libell_d_acheminement": "SORBOLLANO", "code_postal": "20152", "coordonnees_gps": [41.7504467167, 9.11574610291], "code_commune_insee": "2A285"}, "geometry": {"type": "Point", "coordinates": [9.11574610291, 41.7504467167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "293bdfd1e3811d5d8deab7727dbee01de7583ed1", "fields": {"nom_de_la_commune": "SAN GAVINO DI CARBINI", "libell_d_acheminement": "SAN GAVINO DI CARBINI", "code_postal": "20170", "coordonnees_gps": [41.663555071, 9.15818579459], "code_commune_insee": "2A300"}, "geometry": {"type": "Point", "coordinates": [9.15818579459, 41.663555071]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "710ea224590601b51a10bf64d83200039db7ce2e", "fields": {"nom_de_la_commune": "SANTA MARIA SICHE", "libell_d_acheminement": "SANTA MARIA SICHE", "code_postal": "20190", "coordonnees_gps": [41.8574694236, 8.99242736054], "code_commune_insee": "2A312"}, "geometry": {"type": "Point", "coordinates": [8.99242736054, 41.8574694236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbff3f41ef68b80f5e83a54650e094def8ec7728", "fields": {"nom_de_la_commune": "TAVERA", "libell_d_acheminement": "TAVERA", "code_postal": "20163", "coordonnees_gps": [42.0698449564, 9.01655653658], "code_commune_insee": "2A324"}, "geometry": {"type": "Point", "coordinates": [9.01655653658, 42.0698449564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b79c6f8937f28aa6c20ebd62d0e4dc366d1022f", "fields": {"nom_de_la_commune": "URBALACONE", "libell_d_acheminement": "URBALACONE", "code_postal": "20128", "coordonnees_gps": [41.8616733244, 8.8885100241], "code_commune_insee": "2A331"}, "geometry": {"type": "Point", "coordinates": [8.8885100241, 41.8616733244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d0f30a5977ecdda40c78df995ba59e23033ce0", "fields": {"code_postal": "20118", "code_commune_insee": "2A348", "libell_d_acheminement": "VICO", "ligne_5": "SAGONE", "nom_de_la_commune": "VICO", "coordonnees_gps": [42.1361535255, 8.73174812561]}, "geometry": {"type": "Point", "coordinates": [8.73174812561, 42.1361535255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb3ca7a5726809d35368a092277f94ae9056237", "fields": {"nom_de_la_commune": "ALANDO", "libell_d_acheminement": "ALANDO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B005"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f867e40b342a4147a94267a05c8cda9d0dca874", "fields": {"nom_de_la_commune": "ALERIA", "libell_d_acheminement": "ALERIA", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B009"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b135f306a1061ccfb4622ddc5f06fbb5fe2910", "fields": {"nom_de_la_commune": "AREGNO", "libell_d_acheminement": "AREGNO", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B020"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98b5f49ccaca373f5145596c42d3d7c974943425", "fields": {"nom_de_la_commune": "BARBAGGIO", "libell_d_acheminement": "BARBAGGIO", "code_postal": "20253", "coordonnees_gps": [42.7087957082, 9.36671940301], "code_commune_insee": "2B029"}, "geometry": {"type": "Point", "coordinates": [9.36671940301, 42.7087957082]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888fb440ba56dc49a11c1837bf848f1a1d50ccd5", "fields": {"nom_de_la_commune": "BELGODERE", "libell_d_acheminement": "BELGODERE", "code_postal": "20226", "coordonnees_gps": [42.6078256045, 9.04614705699], "code_commune_insee": "2B034"}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "099829e354ea159279bc0de4039d7f762891a9c2", "fields": {"code_postal": "20226", "code_commune_insee": "2B034", "libell_d_acheminement": "BELGODERE", "ligne_5": "LOZARI", "nom_de_la_commune": "BELGODERE", "coordonnees_gps": [42.6078256045, 9.04614705699]}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d642ab7bf034027363c477b405ced08690eb0076", "fields": {"nom_de_la_commune": "BRANDO", "libell_d_acheminement": "BRANDO", "code_postal": "20222", "coordonnees_gps": [42.7794898116, 9.45079121274], "code_commune_insee": "2B043"}, "geometry": {"type": "Point", "coordinates": [9.45079121274, 42.7794898116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8483f4623d4018aaab48d80f75faea2a07aa4407", "fields": {"code_postal": "20222", "code_commune_insee": "2B043", "libell_d_acheminement": "BRANDO", "ligne_5": "ERBALUNGA", "nom_de_la_commune": "BRANDO", "coordonnees_gps": [42.7794898116, 9.45079121274]}, "geometry": {"type": "Point", "coordinates": [9.45079121274, 42.7794898116]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "295271ef45744a8ab592cf4b6562a53c283cb843", "fields": {"nom_de_la_commune": "CANARI", "libell_d_acheminement": "CANARI", "code_postal": "20217", "coordonnees_gps": [42.7166963955, 9.26424546036], "code_commune_insee": "2B058"}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57d6d61e76d7d32bc33f66d7f66c5a205607ab62", "fields": {"nom_de_la_commune": "CARPINETO", "libell_d_acheminement": "CARPINETO", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B067"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be0d60e007aabeaf0580ad2af349d17ff8dc22ac", "fields": {"nom_de_la_commune": "CARTICASI", "libell_d_acheminement": "CARTICASI", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B068"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8a86564087f564d9b280568b9c4b49a864226c8", "fields": {"nom_de_la_commune": "CASTELLO DI ROSTINO", "libell_d_acheminement": "CASTELLO DI ROSTINO", "code_postal": "20235", "coordonnees_gps": [42.4832385905, 9.2653892014], "code_commune_insee": "2B079"}, "geometry": {"type": "Point", "coordinates": [9.2653892014, 42.4832385905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "805d4f07b6b45bc2dd116a08467a56f13793daa3", "fields": {"nom_de_la_commune": "CORBARA", "libell_d_acheminement": "CORBARA", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B093"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a977edf803b9956734753bb0fd713420b31d91", "fields": {"nom_de_la_commune": "CROCICCHIA", "libell_d_acheminement": "CROCICCHIA", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B102"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827b0cb69e2e20671a67dec22a72a5c235a44b8b", "fields": {"nom_de_la_commune": "FELCE", "libell_d_acheminement": "FELCE", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B111"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08e9daf0d645f8de626e00865a98d099172e43ec", "fields": {"nom_de_la_commune": "FICAJA", "libell_d_acheminement": "FICAJA", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B113"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6c090782ebb6f383bf9489eb9ae22e84b5b089", "fields": {"nom_de_la_commune": "GAVIGNANO", "libell_d_acheminement": "GAVIGNANO", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B122"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41719dfee3e8312ec0c416b95d35ba34abea5324", "fields": {"nom_de_la_commune": "LENTO", "libell_d_acheminement": "LENTO", "code_postal": "20252", "coordonnees_gps": [42.5302771841, 9.28449262062], "code_commune_insee": "2B140"}, "geometry": {"type": "Point", "coordinates": [9.28449262062, 42.5302771841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "558e06acf9a269650e6b57c0c4456f5959d3b852", "fields": {"nom_de_la_commune": "LINGUIZZETTA", "libell_d_acheminement": "LINGUIZZETTA", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B143"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8414dfd3de1601446d84e33396df9944417c3e94", "fields": {"code_postal": "20290", "code_commune_insee": "2B148", "libell_d_acheminement": "LUCCIANA", "ligne_5": "PORETTA", "nom_de_la_commune": "LUCCIANA", "coordonnees_gps": [42.532413301, 9.42098474839]}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be614df4c98d1ea0ab160b97ab67212e59a06f6e", "fields": {"nom_de_la_commune": "MONCALE", "libell_d_acheminement": "MONCALE", "code_postal": "20214", "coordonnees_gps": [42.4880074487, 8.81568831698], "code_commune_insee": "2B165"}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de84f1725f51b668453f4b900f1112f129e24da5", "fields": {"nom_de_la_commune": "MONTEGROSSO", "libell_d_acheminement": "MONTEGROSSO", "code_postal": "20214", "coordonnees_gps": [42.4880074487, 8.81568831698], "code_commune_insee": "2B167"}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c450dc5c94e926c4856a891449f8ba1aa6a040d9", "fields": {"code_postal": "20218", "code_commune_insee": "2B169", "libell_d_acheminement": "MOROSAGLIA", "ligne_5": "PONTE LECCIA", "nom_de_la_commune": "MOROSAGLIA", "coordonnees_gps": [42.4947584139, 9.16559153423]}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1de142cb6195fe1af14caa3dad2e9bf4dc159c2d", "fields": {"nom_de_la_commune": "MORSIGLIA", "libell_d_acheminement": "MORSIGLIA", "code_postal": "20238", "coordonnees_gps": [42.948308645, 9.37005973], "code_commune_insee": "2B170"}, "geometry": {"type": "Point", "coordinates": [9.37005973, 42.948308645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4c4101cd5737238284d8a62c42d02065a6d687f", "fields": {"nom_de_la_commune": "MURACCIOLE", "libell_d_acheminement": "MURACCIOLE", "code_postal": "20219", "coordonnees_gps": [42.1546750022, 9.13106391385], "code_commune_insee": "2B171"}, "geometry": {"type": "Point", "coordinates": [9.13106391385, 42.1546750022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "209de1c0e2b8b86c8a107d235a8c0d1e3513d1a9", "fields": {"nom_de_la_commune": "MURO", "libell_d_acheminement": "MURO", "code_postal": "20225", "coordonnees_gps": [42.5548622449, 8.91822255191], "code_commune_insee": "2B173"}, "geometry": {"type": "Point", "coordinates": [8.91822255191, 42.5548622449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82dc6fda2fea6e362eebafd3b732afd5e3d356c1", "fields": {"nom_de_la_commune": "NOVALE", "libell_d_acheminement": "NOVALE", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B179"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "186c220802f24940e1616bf684ca62eeaf14a1f3", "fields": {"nom_de_la_commune": "OCCHIATANA", "libell_d_acheminement": "OCCHIATANA", "code_postal": "20226", "coordonnees_gps": [42.6078256045, 9.04614705699], "code_commune_insee": "2B182"}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb2eab8ea33c28108337c2e7eee76faf7fa5cc62", "fields": {"nom_de_la_commune": "OGLIASTRO", "libell_d_acheminement": "OGLIASTRO", "code_postal": "20217", "coordonnees_gps": [42.7166963955, 9.26424546036], "code_commune_insee": "2B183"}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e17093602e3bce97fe9eddf9cd61f4cb9a517c22", "fields": {"nom_de_la_commune": "OLMETA DI CAPOCORSO", "libell_d_acheminement": "OLMETA DI CAPOCORSO", "code_postal": "20217", "coordonnees_gps": [42.7166963955, 9.26424546036], "code_commune_insee": "2B187"}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc0dcbed546a788959eebccc57d5a3ef54b8271e", "fields": {"nom_de_la_commune": "OLMO", "libell_d_acheminement": "OLMO", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B192"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "242cc3567077bce73edfe2d3af0f04eec4e3f002", "fields": {"nom_de_la_commune": "PARATA", "libell_d_acheminement": "PARATA", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B202"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13ae51d9cff587c02ae93555bc301a215ef06826", "fields": {"nom_de_la_commune": "PENTA ACQUATELLA", "libell_d_acheminement": "PENTA ACQUATELLA", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B206"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0024a343dbff3f6f5ef0999459b85885f0696f6", "fields": {"nom_de_la_commune": "PENTA DI CASINCA", "libell_d_acheminement": "PENTA DI CASINCA", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B207"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7f11ef2ce73e119860ca07ebb3133d8adba7815", "fields": {"nom_de_la_commune": "PIOBETTA", "libell_d_acheminement": "PIOBETTA", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B234"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6359d1c4ea9f6d3143d4fcf5b665576d8f180129", "fields": {"nom_de_la_commune": "POGGIO DI VENACO", "libell_d_acheminement": "POGGIO DI VENACO", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B238"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b2e2d1b2817a69ae2d24e59d9ede6e7533ae679", "fields": {"nom_de_la_commune": "PORRI", "libell_d_acheminement": "PORRI", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B245"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94b9578a238745dce2530f567c50408ae4b1bbf5", "fields": {"nom_de_la_commune": "PRUNO", "libell_d_acheminement": "PRUNO", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B252"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f89c253cb7e884ca318038f720a2d759ef61217", "fields": {"nom_de_la_commune": "RAPAGGIO", "libell_d_acheminement": "RAPAGGIO", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B256"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "305b0da471b5e69eadbbf1910be6c79037a36f1d", "fields": {"nom_de_la_commune": "RIVENTOSA", "libell_d_acheminement": "RIVENTOSA", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B260"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3076c0e2adfe577cbd706a8515bf5d58b8018e64", "fields": {"code_postal": "20248", "code_commune_insee": "2B261", "libell_d_acheminement": "ROGLIANO", "ligne_5": "MACINAGGIO", "nom_de_la_commune": "ROGLIANO", "coordonnees_gps": [42.9672830665, 9.42945630303]}, "geometry": {"type": "Point", "coordinates": [9.42945630303, 42.9672830665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3061339bf91c40d8a067e58565a49cf636e89c00", "fields": {"nom_de_la_commune": "SALICETO", "libell_d_acheminement": "SALICETO", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B267"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b08902fc99103bd4be223f4efe4ab191847677d", "fields": {"nom_de_la_commune": "SOLARO", "libell_d_acheminement": "SOLARO", "code_postal": "20240", "coordonnees_gps": [41.9691281261, 9.34452761596], "code_commune_insee": "2B283"}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57319a3cb434471f40475f075fda73a7df94740", "fields": {"nom_de_la_commune": "SORIO", "libell_d_acheminement": "SORIO", "code_postal": "20246", "coordonnees_gps": [42.651217902, 9.20568525518], "code_commune_insee": "2B287"}, "geometry": {"type": "Point", "coordinates": [9.20568525518, 42.651217902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "202ef5686273dde82d51ae3ebd606f49d4f87ae3", "fields": {"nom_de_la_commune": "SAN MARTINO DI LOTA", "libell_d_acheminement": "SAN MARTINO DI LOTA", "code_postal": "20200", "coordonnees_gps": [42.7169845542, 9.42659304409], "code_commune_insee": "2B305"}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87b303db67a1285bca16e5473d32b9de35729f90", "fields": {"nom_de_la_commune": "SANTO PIETRO DI TENDA", "libell_d_acheminement": "SANTO PIETRO DI TENDA", "code_postal": "20246", "coordonnees_gps": [42.651217902, 9.20568525518], "code_commune_insee": "2B314"}, "geometry": {"type": "Point", "coordinates": [9.20568525518, 42.651217902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d5b81100c99485b655c6076861c5c4fdf459c93", "fields": {"code_postal": "20230", "code_commune_insee": "2B319", "libell_d_acheminement": "TALASANI", "ligne_5": "FIGARETTO", "nom_de_la_commune": "TALASANI", "coordonnees_gps": [42.30630414, 9.49791395184]}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad3c78ff9077df2684138937bb5cf1ef480a1e31", "fields": {"code_postal": "20270", "code_commune_insee": "2B320", "libell_d_acheminement": "TALLONE", "ligne_5": "PIANICCIA", "nom_de_la_commune": "TALLONE", "coordonnees_gps": [42.1585517957, 9.43977225577]}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4eb8a87d8ddc2b1708274965ee33b4ac153114be", "fields": {"nom_de_la_commune": "PARGNY LES BOIS", "libell_d_acheminement": "PARGNY LES BOIS", "code_postal": "02270", "coordonnees_gps": [49.714634271, 3.5968851996], "code_commune_insee": "02591"}, "geometry": {"type": "Point", "coordinates": [3.5968851996, 49.714634271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44004ed6b35e64c1ea6a7b43778446756c3f5bb3", "fields": {"nom_de_la_commune": "PONT ST MARD", "libell_d_acheminement": "PONT ST MARD", "code_postal": "02380", "coordonnees_gps": [49.5102092676, 3.34013321882], "code_commune_insee": "02616"}, "geometry": {"type": "Point", "coordinates": [3.34013321882, 49.5102092676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad7b4fcad26ca5009c934ac667e0a3dcb7932ae2", "fields": {"nom_de_la_commune": "PARPEVILLE", "libell_d_acheminement": "PARPEVILLE", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02592"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e1344651dcab79807916efc50371769ffa083e", "fields": {"nom_de_la_commune": "POMMIERS", "libell_d_acheminement": "POMMIERS", "code_postal": "02200", "coordonnees_gps": [49.3519078898, 3.32022130463], "code_commune_insee": "02610"}, "geometry": {"type": "Point", "coordinates": [3.32022130463, 49.3519078898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b636c7dbfa19f9bb8d8ad37662becfc7dab3303", "fields": {"nom_de_la_commune": "PREMONT", "libell_d_acheminement": "PREMONT", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02618"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "537b9fb4d10d7424e3180f7929661f9aabfe0c11", "fields": {"nom_de_la_commune": "QUIERZY", "libell_d_acheminement": "QUIERZY", "code_postal": "02300", "coordonnees_gps": [49.5817295222, 3.19169688143], "code_commune_insee": "02631"}, "geometry": {"type": "Point", "coordinates": [3.19169688143, 49.5817295222]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0dd2c45d3fd93f9c0af1aed888aac1c3e7f42efd", "fields": {"nom_de_la_commune": "PONTRU", "libell_d_acheminement": "PONTRU", "code_postal": "02490", "coordonnees_gps": [49.8944310161, 3.16485920381], "code_commune_insee": "02614"}, "geometry": {"type": "Point", "coordinates": [3.16485920381, 49.8944310161]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33bb42df6ea87757cbfe26c9b91aa28f9c33813a", "fields": {"nom_de_la_commune": "REUILLY SAUVIGNY", "libell_d_acheminement": "REUILLY SAUVIGNY", "code_postal": "02850", "coordonnees_gps": [49.0863086869, 3.57089445774], "code_commune_insee": "02645"}, "geometry": {"type": "Point", "coordinates": [3.57089445774, 49.0863086869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da247bad33fb31a80f362b979a29c967d2eb0ad0", "fields": {"nom_de_la_commune": "RESSONS LE LONG", "libell_d_acheminement": "RESSONS LE LONG", "code_postal": "02290", "coordonnees_gps": [49.4210899814, 3.18005200266], "code_commune_insee": "02643"}, "geometry": {"type": "Point", "coordinates": [3.18005200266, 49.4210899814]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32ccb865ab6ffde90d55bcc69eaa3fa19bdb34b3", "fields": {"nom_de_la_commune": "RAILLIMONT", "libell_d_acheminement": "RAILLIMONT", "code_postal": "02360", "coordonnees_gps": [49.7487127053, 4.14397175229], "code_commune_insee": "02634"}, "geometry": {"type": "Point", "coordinates": [4.14397175229, 49.7487127053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c761a558e125d3bfcff54495725ecb9d84843ee", "fields": {"nom_de_la_commune": "RONCHERES", "libell_d_acheminement": "RONCHERES", "code_postal": "02130", "coordonnees_gps": [49.1935797302, 3.55982855371], "code_commune_insee": "02655"}, "geometry": {"type": "Point", "coordinates": [3.55982855371, 49.1935797302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e454c8d30bf80f9f01d4773eddfc03a4bcd3748b", "fields": {"nom_de_la_commune": "RAMICOURT", "libell_d_acheminement": "RAMICOURT", "code_postal": "02110", "coordonnees_gps": [49.9673733527, 3.44143561655], "code_commune_insee": "02635"}, "geometry": {"type": "Point", "coordinates": [3.44143561655, 49.9673733527]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61671e6d868d7bf67b179d7b4216ce6a4bb65015", "fields": {"nom_de_la_commune": "RIBEMONT", "libell_d_acheminement": "RIBEMONT", "code_postal": "02240", "coordonnees_gps": [49.7790821794, 3.44336123783], "code_commune_insee": "02648"}, "geometry": {"type": "Point", "coordinates": [3.44336123783, 49.7790821794]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b71d5b698f042cd70f494a285b6701af6b363d4a", "fields": {"nom_de_la_commune": "ROUVROY", "libell_d_acheminement": "ROUVROY", "code_postal": "02100", "coordonnees_gps": [49.8685441759, 3.30178111999], "code_commune_insee": "02659"}, "geometry": {"type": "Point", "coordinates": [3.30178111999, 49.8685441759]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf8e3cee5641b08239f0a677addff712f3104938", "fields": {"nom_de_la_commune": "ROMERY", "libell_d_acheminement": "ROMERY", "code_postal": "02120", "coordonnees_gps": [49.8880905983, 3.64129929098], "code_commune_insee": "02654"}, "geometry": {"type": "Point", "coordinates": [3.64129929098, 49.8880905983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f36b29acc1e20dca5590f46b55bcbc1cc7939cc5", "fields": {"nom_de_la_commune": "ROGNY", "libell_d_acheminement": "ROGNY", "code_postal": "02140", "coordonnees_gps": [49.8210899574, 3.91454720458], "code_commune_insee": "02652"}, "geometry": {"type": "Point", "coordinates": [3.91454720458, 49.8210899574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "521248878849cee876ef7c77cdca994758180327", "fields": {"nom_de_la_commune": "ROUCY", "libell_d_acheminement": "ROUCY", "code_postal": "02160", "coordonnees_gps": [49.3988991643, 3.73817191868], "code_commune_insee": "02656"}, "geometry": {"type": "Point", "coordinates": [3.73817191868, 49.3988991643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15fbb5ffb5ead87cc97af1b20446448316e6d59", "fields": {"nom_de_la_commune": "CREUZIER LE NEUF", "libell_d_acheminement": "CREUZIER LE NEUF", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03093"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42ea425ee29eb2d0d6e0cac8bf2cb523341f8429", "fields": {"nom_de_la_commune": "CRESSANGES", "libell_d_acheminement": "CRESSANGES", "code_postal": "03240", "coordonnees_gps": [46.4061153247, 3.09625699171], "code_commune_insee": "03092"}, "geometry": {"type": "Point", "coordinates": [3.09625699171, 46.4061153247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aae7fb198256a1e0cf782929ce1bfaa6fbac3da9", "fields": {"nom_de_la_commune": "FRANCHESSE", "libell_d_acheminement": "FRANCHESSE", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03117"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fad6d56d552dccc05664636b02348a1ec8cc241", "fields": {"nom_de_la_commune": "FOURILLES", "libell_d_acheminement": "FOURILLES", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03116"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ebf3299e55bbc8139e41165e823addd85ecffb8", "fields": {"nom_de_la_commune": "CHEZELLE", "libell_d_acheminement": "CHEZELLE", "code_postal": "03140", "coordonnees_gps": [46.2575366145, 3.13980624239], "code_commune_insee": "03075"}, "geometry": {"type": "Point", "coordinates": [3.13980624239, 46.2575366145]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5ee1ea4687f244c30caa7f91df4ad6cac5d2b8d", "fields": {"nom_de_la_commune": "COUZON", "libell_d_acheminement": "COUZON", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03090"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a03cb1bbdf5f3af328f7094a0dc85a1b0e57b965", "fields": {"nom_de_la_commune": "CUSSET", "libell_d_acheminement": "CUSSET", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03095"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e666b38bd7e6dbc75d6731b98dd5f1025ae7862", "fields": {"nom_de_la_commune": "CHEZY", "libell_d_acheminement": "CHEZY", "code_postal": "03230", "coordonnees_gps": [46.6114394965, 3.57872816939], "code_commune_insee": "03076"}, "geometry": {"type": "Point", "coordinates": [3.57872816939, 46.6114394965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23be747d5f8e522d2374232a5d953ce86bb63123", "fields": {"code_postal": "04510", "code_commune_insee": "04046", "libell_d_acheminement": "LE CHAFFAUT ST JURSON", "ligne_5": "ESPINOUSE", "nom_de_la_commune": "LE CHAFFAUT ST JURSON", "coordonnees_gps": [44.0399432995, 6.10204866093]}, "geometry": {"type": "Point", "coordinates": [6.10204866093, 44.0399432995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ab16cec4998af236e0a8bb400c8c90a4a611d10", "fields": {"nom_de_la_commune": "LA CONDAMINE CHATELARD", "libell_d_acheminement": "LA CONDAMINE CHATELARD", "code_postal": "04530", "coordonnees_gps": [44.529721781, 6.79644418503], "code_commune_insee": "04062"}, "geometry": {"type": "Point", "coordinates": [6.79644418503, 44.529721781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52083d326122f3964d29392133d22bf7484bbc55", "fields": {"nom_de_la_commune": "BARCELONNETTE", "libell_d_acheminement": "BARCELONNETTE", "code_postal": "04400", "coordonnees_gps": [44.3554624604, 6.65679459978], "code_commune_insee": "04019"}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e16f5f9961cadf5d19f25b24c3074d9fc83829", "fields": {"nom_de_la_commune": "LA BRILLANNE", "libell_d_acheminement": "LA BRILLANNE", "code_postal": "04700", "coordonnees_gps": [43.9432267959, 5.96852873761], "code_commune_insee": "04034"}, "geometry": {"type": "Point", "coordinates": [5.96852873761, 43.9432267959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "014a9c076d4f3c0a5eaaeec3ef18fd6d4191f77e", "fields": {"nom_de_la_commune": "BELLAFFAIRE", "libell_d_acheminement": "BELLAFFAIRE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04026"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1ff7056ac7e56ac8c654a524eea05889f88b66d", "fields": {"nom_de_la_commune": "BRAS D ASSE", "libell_d_acheminement": "BRAS D ASSE", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04031"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e20e4940c5372a3b05bfc844da9f8ea3e634fed", "fields": {"nom_de_la_commune": "LE VILHAIN", "libell_d_acheminement": "LE VILHAIN", "code_postal": "03350", "coordonnees_gps": [46.5880559435, 2.80538087836], "code_commune_insee": "03313"}, "geometry": {"type": "Point", "coordinates": [2.80538087836, 46.5880559435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1c8309e70abcb247a5e2a3990cd1cbeb09ed7e0", "fields": {"nom_de_la_commune": "BEYNES", "libell_d_acheminement": "BEYNES", "code_postal": "04270", "coordonnees_gps": [43.9535232378, 6.23179869809], "code_commune_insee": "04028"}, "geometry": {"type": "Point", "coordinates": [6.23179869809, 43.9535232378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "616e52f4fe64307a18028794272bb60c4b26c90b", "fields": {"nom_de_la_commune": "ALLOS", "libell_d_acheminement": "ALLOS", "code_postal": "04260", "coordonnees_gps": [44.2616156328, 6.62661023596], "code_commune_insee": "04006"}, "geometry": {"type": "Point", "coordinates": [6.62661023596, 44.2616156328]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56f17e0759788844c0d9c393a3da35382f2b30b3", "fields": {"nom_de_la_commune": "ANNOT", "libell_d_acheminement": "ANNOT", "code_postal": "04240", "coordonnees_gps": [43.977813048, 6.67580684745], "code_commune_insee": "04008"}, "geometry": {"type": "Point", "coordinates": [6.67580684745, 43.977813048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66eb585d3de68e96ec79c5d1790d73a3e2d173a4", "fields": {"nom_de_la_commune": "MONTEIGNET SUR L ANDELOT", "libell_d_acheminement": "MONTEIGNET SUR L ANDELOT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03182"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3593e0f31981dfc59ee498ca884b6d2338170063", "fields": {"nom_de_la_commune": "PARAY SOUS BRIAILLES", "libell_d_acheminement": "PARAY SOUS BRIAILLES", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03204"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c794d73f0a024f4040e499e43508485d9a714fd", "fields": {"nom_de_la_commune": "MONTAIGUET EN FOREZ", "libell_d_acheminement": "MONTAIGUET EN FOREZ", "code_postal": "03130", "coordonnees_gps": [46.3489734556, 3.83441218096], "code_commune_insee": "03178"}, "geometry": {"type": "Point", "coordinates": [3.83441218096, 46.3489734556]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e71f222d05c4a2fbc2ca11a81538f21e67e9922", "fields": {"nom_de_la_commune": "MONTBEUGNY", "libell_d_acheminement": "MONTBEUGNY", "code_postal": "03340", "coordonnees_gps": [46.4501557616, 3.43942597806], "code_commune_insee": "03180"}, "geometry": {"type": "Point", "coordinates": [3.43942597806, 46.4501557616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f827c610c1cf0c9a4a06ba144a0a6420e6647627", "fields": {"nom_de_la_commune": "MALICORNE", "libell_d_acheminement": "MALICORNE", "code_postal": "03600", "coordonnees_gps": [46.2666871749, 2.79054682985], "code_commune_insee": "03159"}, "geometry": {"type": "Point", "coordinates": [2.79054682985, 46.2666871749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64c8f42bc31bea87a9b49ce7fd2344cdb0c9f1a2", "fields": {"nom_de_la_commune": "MONTOLDRE", "libell_d_acheminement": "MONTOLDRE", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03187"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e26ffd2e969b4e6926876d7a3134677e938b446e", "fields": {"nom_de_la_commune": "MONTLUCON", "libell_d_acheminement": "MONTLUCON", "code_postal": "03100", "coordonnees_gps": [46.3299080468, 2.60294961501], "code_commune_insee": "03185"}, "geometry": {"type": "Point", "coordinates": [2.60294961501, 46.3299080468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab0920abe71422a0ae1888f7ac661b2aa57746cb", "fields": {"nom_de_la_commune": "MONTVICQ", "libell_d_acheminement": "MONTVICQ", "code_postal": "03170", "coordonnees_gps": [46.3584523148, 2.7532534331], "code_commune_insee": "03189"}, "geometry": {"type": "Point", "coordinates": [2.7532534331, 46.3584523148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df993c7c67a7d32dacddded6dd941073112774b4", "fields": {"nom_de_la_commune": "MESPLES", "libell_d_acheminement": "MESPLES", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03172"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60c25ba691afcb1208d496125f0d1ee01b3bbae4", "fields": {"nom_de_la_commune": "NADES", "libell_d_acheminement": "NADES", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03192"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee53a282c9997b106a07c3b94f48763207a78552", "fields": {"nom_de_la_commune": "ST BONNET DE ROCHEFORT", "libell_d_acheminement": "ST BONNET DE ROCHEFORT", "code_postal": "03800", "coordonnees_gps": [46.1153548371, 3.19982055617], "code_commune_insee": "03220"}, "geometry": {"type": "Point", "coordinates": [3.19982055617, 46.1153548371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "739016c46a5dde408639a7e6b0c5e9a6d66a5165", "fields": {"nom_de_la_commune": "ST BONNET TRONCAIS", "libell_d_acheminement": "ST BONNET TRONCAIS", "code_postal": "03360", "coordonnees_gps": [46.6639251389, 2.70661035992], "code_commune_insee": "03221"}, "geometry": {"type": "Point", "coordinates": [2.70661035992, 46.6639251389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e4cd8c0be5f4cf3351c0b88cc398d2b10aa3e8d", "fields": {"nom_de_la_commune": "ST ETIENNE DE VICQ", "libell_d_acheminement": "ST ETIENNE DE VICQ", "code_postal": "03300", "coordonnees_gps": [46.1385416663, 3.51870558058], "code_commune_insee": "03230"}, "geometry": {"type": "Point", "coordinates": [3.51870558058, 46.1385416663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1bb1cd43519a99d597720e47319b797bffc7daa", "fields": {"nom_de_la_commune": "ST DIDIER LA FORET", "libell_d_acheminement": "ST DIDIER LA FORET", "code_postal": "03110", "coordonnees_gps": [46.1767414574, 3.325569601], "code_commune_insee": "03227"}, "geometry": {"type": "Point", "coordinates": [3.325569601, 46.1767414574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbb57a4dad18fd68b9d69472a4244599e13d8356", "fields": {"nom_de_la_commune": "ST CHRISTOPHE", "libell_d_acheminement": "ST CHRISTOPHE", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03223"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c862e28245b2f57bf83beb0aad690a06b363a0fd", "fields": {"nom_de_la_commune": "QUINSSAINES", "libell_d_acheminement": "QUINSSAINES", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03212"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "351574fbc670d2b361b1bfb524e107073ccc6c3a", "fields": {"nom_de_la_commune": "PREMILHAT", "libell_d_acheminement": "PREMILHAT", "code_postal": "03410", "coordonnees_gps": [46.3319374821, 2.55481116435], "code_commune_insee": "03211"}, "geometry": {"type": "Point", "coordinates": [2.55481116435, 46.3319374821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc75bb37aa5a4aa2b28733313f78c9e0b3d1ea52", "fields": {"nom_de_la_commune": "RONGERES", "libell_d_acheminement": "RONGERES", "code_postal": "03150", "coordonnees_gps": [46.3046634168, 3.45300130315], "code_commune_insee": "03215"}, "geometry": {"type": "Point", "coordinates": [3.45300130315, 46.3046634168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3bf842866607ae99979b7d3c62478c77cbd670e", "fields": {"nom_de_la_commune": "PERIGNY", "libell_d_acheminement": "PERIGNY", "code_postal": "03120", "coordonnees_gps": [46.2072801778, 3.66054090457], "code_commune_insee": "03205"}, "geometry": {"type": "Point", "coordinates": [3.66054090457, 46.2072801778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "606319477327e45e9e4e072364680138371dcddc", "fields": {"nom_de_la_commune": "REUGNY", "libell_d_acheminement": "REUGNY", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03213"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "985717e36cb3e5b9eb67cff4c06195c260441abc", "fields": {"nom_de_la_commune": "ST MARCEL EN MURAT", "libell_d_acheminement": "ST MARCEL EN MURAT", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03243"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60f8a3fac8f4516d36977599b89027fcb639df7c", "fields": {"nom_de_la_commune": "TEILLET ARGENTY", "libell_d_acheminement": "TEILLET ARGENTY", "code_postal": "03410", "coordonnees_gps": [46.3319374821, 2.55481116435], "code_commune_insee": "03279"}, "geometry": {"type": "Point", "coordinates": [2.55481116435, 46.3319374821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4be7c60d1e8727dbfd3605c70304182cf50487f", "fields": {"nom_de_la_commune": "ST PLAISIR", "libell_d_acheminement": "ST PLAISIR", "code_postal": "03160", "coordonnees_gps": [46.6099440083, 3.0191350037], "code_commune_insee": "03251"}, "geometry": {"type": "Point", "coordinates": [3.0191350037, 46.6099440083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3971397b734124143c3d89851b441feeee84ce4", "fields": {"nom_de_la_commune": "ST SAUVIER", "libell_d_acheminement": "ST SAUVIER", "code_postal": "03370", "coordonnees_gps": [46.456930781, 2.40747377099], "code_commune_insee": "03259"}, "geometry": {"type": "Point", "coordinates": [2.40747377099, 46.456930781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6490b5f5027a084f4e853617b2754510f5c66ed6", "fields": {"nom_de_la_commune": "SAUVAGNY", "libell_d_acheminement": "SAUVAGNY", "code_postal": "03430", "coordonnees_gps": [46.4484596667, 2.84631497595], "code_commune_insee": "03269"}, "geometry": {"type": "Point", "coordinates": [2.84631497595, 46.4484596667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d1979d825f662ee3586b6a88c9bc5d36faec181", "fields": {"nom_de_la_commune": "ST FELIX", "libell_d_acheminement": "ST FELIX", "code_postal": "03260", "coordonnees_gps": [46.2217159232, 3.4471669721], "code_commune_insee": "03232"}, "geometry": {"type": "Point", "coordinates": [3.4471669721, 46.2217159232]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb84eb2f9ad2907ff539fa01ca1fd01855c61b2", "fields": {"nom_de_la_commune": "SAULCET", "libell_d_acheminement": "SAULCET", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03267"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "553a52a3d09462e96e09312a634a2f069cfb99f3", "fields": {"nom_de_la_commune": "ST VOIR", "libell_d_acheminement": "ST VOIR", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03263"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1c00f91a8fa42ba2c634b41d656be41ff7288c3", "fields": {"nom_de_la_commune": "SORBIER", "libell_d_acheminement": "SORBIER", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03274"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce1157b78c58f2ff3c61fc28d07611cf5a4fb3cc", "fields": {"nom_de_la_commune": "TERJAT", "libell_d_acheminement": "TERJAT", "code_postal": "03420", "coordonnees_gps": [46.1958827238, 2.6188461931], "code_commune_insee": "03280"}, "geometry": {"type": "Point", "coordinates": [2.6188461931, 46.1958827238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a62d9e1665c3a0a17d4f7e7c409bf604abceac65", "fields": {"nom_de_la_commune": "VERNEUIL EN BOURBONNAIS", "libell_d_acheminement": "VERNEUIL EN BOURBONNAIS", "code_postal": "03500", "coordonnees_gps": [46.3297794911, 3.27171202059], "code_commune_insee": "03307"}, "geometry": {"type": "Point", "coordinates": [3.27171202059, 46.3297794911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d012d1487bbb4530f91b6cac3d39cbab542bbdb", "fields": {"nom_de_la_commune": "THENEUILLE", "libell_d_acheminement": "THENEUILLE", "code_postal": "03350", "coordonnees_gps": [46.5880559435, 2.80538087836], "code_commune_insee": "03282"}, "geometry": {"type": "Point", "coordinates": [2.80538087836, 46.5880559435]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e407222c43b4734a1735dce3cf8e0125e29a58", "fields": {"nom_de_la_commune": "TREZELLES", "libell_d_acheminement": "TREZELLES", "code_postal": "03220", "coordonnees_gps": [46.3831158791, 3.5976011499], "code_commune_insee": "03291"}, "geometry": {"type": "Point", "coordinates": [3.5976011499, 46.3831158791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c299811e591e0e371c432420038ba31dc127afa0", "fields": {"nom_de_la_commune": "VERNUSSE", "libell_d_acheminement": "VERNUSSE", "code_postal": "03390", "coordonnees_gps": [46.3269573756, 2.93679535229], "code_commune_insee": "03308"}, "geometry": {"type": "Point", "coordinates": [2.93679535229, 46.3269573756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a4671405cf6a0abe4aadc015fa30e066bba5ca5", "fields": {"nom_de_la_commune": "TREIGNAT", "libell_d_acheminement": "TREIGNAT", "code_postal": "03380", "coordonnees_gps": [46.359524355, 2.44784253368], "code_commune_insee": "03288"}, "geometry": {"type": "Point", "coordinates": [2.44784253368, 46.359524355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b02b58ae93a05cdefc790f7f9a44baee8551c8", "fields": {"nom_de_la_commune": "VERNEIX", "libell_d_acheminement": "VERNEIX", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03305"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55c1b8e891a4b341a26b99d2c534f388a5f22e90", "fields": {"nom_de_la_commune": "TREVOL", "libell_d_acheminement": "TREVOL", "code_postal": "03460", "coordonnees_gps": [46.6591659055, 3.26064885085], "code_commune_insee": "03290"}, "geometry": {"type": "Point", "coordinates": [3.26064885085, 46.6591659055]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a390b906f3e1c0687ca0e8bb9315818aaea4fd5", "fields": {"nom_de_la_commune": "VEAUCE", "libell_d_acheminement": "VEAUCE", "code_postal": "03450", "coordonnees_gps": [46.1429171198, 3.03869570885], "code_commune_insee": "03302"}, "geometry": {"type": "Point", "coordinates": [3.03869570885, 46.1429171198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3af35639c4242e3cce57a801b06b0dbd25ac18f3", "fields": {"nom_de_la_commune": "VICHY", "libell_d_acheminement": "VICHY", "code_postal": "03200", "coordonnees_gps": [46.1075083503, 3.45428306112], "code_commune_insee": "03310"}, "geometry": {"type": "Point", "coordinates": [3.45428306112, 46.1075083503]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9474f53551e5d0c3363aaf06423fd3e41324af0e", "fields": {"nom_de_la_commune": "VAUX", "libell_d_acheminement": "VAUX", "code_postal": "03190", "coordonnees_gps": [46.4826080397, 2.65647600079], "code_commune_insee": "03301"}, "geometry": {"type": "Point", "coordinates": [2.65647600079, 46.4826080397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa7b288850efc09e964f4668d62fb436362faa6f", "fields": {"nom_de_la_commune": "CURBANS", "libell_d_acheminement": "CURBANS", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "04066"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb388d65c1e0029c27fee92c49c32d5ffc4f1b72", "fields": {"nom_de_la_commune": "CRUIS", "libell_d_acheminement": "CRUIS", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04065"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1ffb4f4dce4b0d6d3f9f2eea9171e5a6dccffba", "fields": {"nom_de_la_commune": "DRAIX", "libell_d_acheminement": "DRAIX", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04072"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cebb2f0e83dd5c96059f1b6f7a43741294a55396", "fields": {"code_postal": "04200", "code_commune_insee": "04075", "libell_d_acheminement": "ENTREPIERRES", "ligne_5": "ST SYMPHORIEN", "nom_de_la_commune": "ENTREPIERRES", "coordonnees_gps": [44.2004441719, 5.9040305038]}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9c76e987966d7b940b2b44053f39994bab61e9", "fields": {"code_postal": "04200", "code_commune_insee": "04075", "libell_d_acheminement": "ENTREPIERRES", "ligne_5": "VILHOSC", "nom_de_la_commune": "ENTREPIERRES", "coordonnees_gps": [44.2004441719, 5.9040305038]}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "672ffe552b6898d2a16046eb54afb0acfba19806", "fields": {"code_postal": "04510", "code_commune_insee": "04108", "libell_d_acheminement": "MALIJAI", "ligne_5": "CHENERILLES", "nom_de_la_commune": "MALIJAI", "coordonnees_gps": [44.0399432995, 6.10204866093]}, "geometry": {"type": "Point", "coordinates": [6.10204866093, 44.0399432995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e3b484c12c276349111f6c5eb7991f2bc5fcfa0", "fields": {"nom_de_la_commune": "ESPARRON DE VERDON", "libell_d_acheminement": "ESPARRON DE VERDON", "code_postal": "04800", "coordonnees_gps": [43.7622916617, 5.91644609387], "code_commune_insee": "04081"}, "geometry": {"type": "Point", "coordinates": [5.91644609387, 43.7622916617]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69dc9612b770d5d20530b5fab8d51a39cc9d3c6a", "fields": {"nom_de_la_commune": "ENCHASTRAYES", "libell_d_acheminement": "ENCHASTRAYES", "code_postal": "04400", "coordonnees_gps": [44.3554624604, 6.65679459978], "code_commune_insee": "04073"}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e5d3783fedf86cfd411374c8508bbb5a7b5a438", "fields": {"nom_de_la_commune": "L HOSPITALET", "libell_d_acheminement": "L HOSPITALET", "code_postal": "04150", "coordonnees_gps": [44.0485937813, 5.61131710182], "code_commune_insee": "04095"}, "geometry": {"type": "Point", "coordinates": [5.61131710182, 44.0485937813]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dbc644071bb306e76cb904d4ce7ecbc3af16195", "fields": {"nom_de_la_commune": "FONTIENNE", "libell_d_acheminement": "FONTIENNE", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04087"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cecad35615317fe6cfba377bb5f7b9908682d0a", "fields": {"nom_de_la_commune": "LARDIERS", "libell_d_acheminement": "LARDIERS", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04101"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6f015e80d6dd895ecc562512cefc8b585821d16", "fields": {"nom_de_la_commune": "L ARGENTIERE LA BESSEE", "libell_d_acheminement": "L ARGENTIERE LA BESSEE", "code_postal": "05120", "coordonnees_gps": [44.8094841001, 6.52475602144], "code_commune_insee": "05006"}, "geometry": {"type": "Point", "coordinates": [6.52475602144, 44.8094841001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "347807b16f479854bbf78fcdfee5cb44179056bc", "fields": {"nom_de_la_commune": "LA BATIE MONTSALEON", "libell_d_acheminement": "LA BATIE MONTSALEON", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05016"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6478ebbe8f70262efb1ca195b58e5b5a6eb0931e", "fields": {"nom_de_la_commune": "FURMEYER", "libell_d_acheminement": "FURMEYER", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05060"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "468c87f23a91d87d350e26d5fd779c5b6508db25", "fields": {"nom_de_la_commune": "BRIANCON", "libell_d_acheminement": "BRIANCON", "code_postal": "05100", "coordonnees_gps": [44.9491518655, 6.66040427296], "code_commune_insee": "05023"}, "geometry": {"type": "Point", "coordinates": [6.66040427296, 44.9491518655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f962d29f17e11781860d6d15bbbac199f9addd7b", "fields": {"nom_de_la_commune": "BARATIER", "libell_d_acheminement": "BARATIER", "code_postal": "05200", "coordonnees_gps": [44.5288516779, 6.5354706642], "code_commune_insee": "05012"}, "geometry": {"type": "Point", "coordinates": [6.5354706642, 44.5288516779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3298df7193e88be09131ba1f06d81bf3447fd1c4", "fields": {"nom_de_la_commune": "JARJAYES", "libell_d_acheminement": "JARJAYES", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05068"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce63f0b1fe3d155a8071d3b9b8e3adc55e5d902", "fields": {"nom_de_la_commune": "EOURRES", "libell_d_acheminement": "EOURRES", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05047"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef9a07448f6ca95d7292eb0720ecb989fd9ece40", "fields": {"nom_de_la_commune": "ABRIES", "libell_d_acheminement": "ABRIES", "code_postal": "05460", "coordonnees_gps": [44.7747049241, 6.96776772287], "code_commune_insee": "05001"}, "geometry": {"type": "Point", "coordinates": [6.96776772287, 44.7747049241]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a51889b08b1db32786055191be681dcd61f10f3", "fields": {"nom_de_la_commune": "LAYE", "libell_d_acheminement": "LAYE", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05072"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef6c9081cdd75c356e759f6134526c2d9822b090", "fields": {"code_postal": "04120", "code_commune_insee": "04144", "libell_d_acheminement": "LA PALUD SUR VERDON", "ligne_5": "CHATEAUNEUF LES MOUSTIERS", "nom_de_la_commune": "LA PALUD SUR VERDON", "coordonnees_gps": [43.8281340441, 6.48115762991]}, "geometry": {"type": "Point", "coordinates": [6.48115762991, 43.8281340441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b071cfaa00f4e62c8ea54ec8f7fd354de1fb4c9c", "fields": {"code_postal": "04500", "code_commune_insee": "04124", "libell_d_acheminement": "MONTAGNAC MONTPEZAT", "ligne_5": "MONTPEZAT", "nom_de_la_commune": "MONTAGNAC MONTPEZAT", "coordonnees_gps": [43.779502795, 6.08235734615]}, "geometry": {"type": "Point", "coordinates": [6.08235734615, 43.779502795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e65a0b79d4ba2318f4fb1db7f1af3ed1c3e19f5", "fields": {"nom_de_la_commune": "MALLEFOUGASSE AUGES", "libell_d_acheminement": "MALLEFOUGASSE AUGES", "code_postal": "04230", "coordonnees_gps": [44.0612968723, 5.79443047594], "code_commune_insee": "04109"}, "geometry": {"type": "Point", "coordinates": [5.79443047594, 44.0612968723]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aef7f02e52783a93b38e29575dd40cdba9f1b12", "fields": {"nom_de_la_commune": "MOUSTIERS STE MARIE", "libell_d_acheminement": "MOUSTIERS STE MARIE", "code_postal": "04360", "coordonnees_gps": [43.8382123386, 6.22822943235], "code_commune_insee": "04135"}, "geometry": {"type": "Point", "coordinates": [6.22822943235, 43.8382123386]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e79eb27ac5f5d280189c8a8789473e045ab5df9", "fields": {"nom_de_la_commune": "PIERREVERT", "libell_d_acheminement": "PIERREVERT", "code_postal": "04860", "coordonnees_gps": [43.8067613023, 5.72268377281], "code_commune_insee": "04152"}, "geometry": {"type": "Point", "coordinates": [5.72268377281, 43.8067613023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2872bc10480f9d2d49a7bf480b35b9b5c3dfdc27", "fields": {"nom_de_la_commune": "LA ROCHENARD", "libell_d_acheminement": "LA ROCHENARD", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79229"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d482cb87fabccac1d8b1aab69ee5f0e56745769", "fields": {"nom_de_la_commune": "ST AUBIN LE CLOUD", "libell_d_acheminement": "ST AUBIN LE CLOUD", "code_postal": "79450", "coordonnees_gps": [46.6633315069, -0.348872972345], "code_commune_insee": "79239"}, "geometry": {"type": "Point", "coordinates": [-0.348872972345, 46.6633315069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be3eb171d4cb4ff2e708a1c642b393742599138f", "fields": {"nom_de_la_commune": "ST COUTANT", "libell_d_acheminement": "ST COUTANT", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79243"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98850397708025b4504da030ed3b88a187b10190", "fields": {"nom_de_la_commune": "STE EANNE", "libell_d_acheminement": "STE EANNE", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79246"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbd3a9828988ed613095b9d0f900172be00735ec", "fields": {"nom_de_la_commune": "ST GENARD", "libell_d_acheminement": "ST GENARD", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79251"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a27dd9622e178ad5211caeb3f0a2ed572812883", "fields": {"nom_de_la_commune": "ST JACQUES DE THOUARS", "libell_d_acheminement": "ST JACQUES DE THOUARS", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79258"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4fb23dce1c8cf686804665a462f68ece99ef732", "fields": {"nom_de_la_commune": "ST LAURS", "libell_d_acheminement": "ST LAURS", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79263"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d72ef1ce786517759dd88e5f2d6b247a3c1f262e", "fields": {"code_postal": "79500", "code_commune_insee": "79264", "libell_d_acheminement": "ST LEGER DE LA MARTINIERE", "ligne_5": "L ENCLAVE DE LA MARTINIERE", "nom_de_la_commune": "ST LEGER DE LA MARTINIERE", "coordonnees_gps": [46.2096053952, -0.119503446916]}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d61348351efd19e0d872e48235e0dfcb649b52", "fields": {"code_postal": "79150", "code_commune_insee": "79280", "libell_d_acheminement": "ST MAURICE ETUSSON", "ligne_5": "ETUSSON", "nom_de_la_commune": "ST MAURICE ETUSSON", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620542f6ace38b7444df55d3137de8aa4c4a7cef", "fields": {"nom_de_la_commune": "ST PARDOUX", "libell_d_acheminement": "ST PARDOUX", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79285"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "990a09764d4dff9a9a7a39f5455792c90a34c3d5", "fields": {"nom_de_la_commune": "ST PAUL EN GATINE", "libell_d_acheminement": "ST PAUL EN GATINE", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79286"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac55c618b91b82a3bb21af92841c94f90f7d5324", "fields": {"nom_de_la_commune": "ST SYMPHORIEN", "libell_d_acheminement": "ST SYMPHORIEN", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79298"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce5644d6a06fd032edff3853bcb8e6afc28d778", "fields": {"nom_de_la_commune": "ST VARENT", "libell_d_acheminement": "ST VARENT", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79299"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "115fe3b0d72f3b3838ef9760a87d3609c32e6a5c", "fields": {"nom_de_la_commune": "ST VINCENT LA CHATRE", "libell_d_acheminement": "ST VINCENT LA CHATRE", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79301"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a9243890622ba0e5d1355b55a1a935b7f65e05a", "fields": {"nom_de_la_commune": "SAUZE VAUSSAIS", "libell_d_acheminement": "SAUZE VAUSSAIS", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79307"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd132f9f204a8b39bb1a67b191c160d9805e722", "fields": {"nom_de_la_commune": "SECONDIGNE SUR BELLE", "libell_d_acheminement": "SECONDIGNE SUR BELLE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79310"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fd52439c3fcc56d35d31012a11db747f8c61f2f", "fields": {"nom_de_la_commune": "SOUVIGNE", "libell_d_acheminement": "SOUVIGNE", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79319"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5365359ce38de5d10d6d83a2a94c01e0c9f31ac8", "fields": {"nom_de_la_commune": "VASLES", "libell_d_acheminement": "VASLES", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79339"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9dd2ede796758544ae637857ef4eaf5f045e67c0", "fields": {"nom_de_la_commune": "VAUSSEROUX", "libell_d_acheminement": "VAUSSEROUX", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79340"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "097cac4befe746cd3780732fbb0dc112b0d79036", "fields": {"nom_de_la_commune": "ACHEUX EN AMIENOIS", "libell_d_acheminement": "ACHEUX EN AMIENOIS", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80003"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe428937a786ced8543d4541ddcbfd53c71cfe0e", "fields": {"nom_de_la_commune": "AGENVILLERS", "libell_d_acheminement": "AGENVILLERS", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80006"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad1190c1a8bece8adea5e2ec3d67b123841865ba", "fields": {"nom_de_la_commune": "AILLY LE HAUT CLOCHER", "libell_d_acheminement": "AILLY LE HAUT CLOCHER", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80009"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40271e35b0869a83a577110034a56d7815e2bf4f", "fields": {"nom_de_la_commune": "AILLY SUR NOYE", "libell_d_acheminement": "AILLY SUR NOYE", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80010"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "720421a27bc782c8d4a163b4d329551c64542792", "fields": {"nom_de_la_commune": "AILLY SUR SOMME", "libell_d_acheminement": "AILLY SUR SOMME", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80011"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f6c2d50a863b2d0f8411d97d77db9b05ec14760", "fields": {"nom_de_la_commune": "ALLERY", "libell_d_acheminement": "ALLERY", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80019"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f89049c538226ec382698752b2a5aba6198f745f", "fields": {"nom_de_la_commune": "AMIENS", "libell_d_acheminement": "AMIENS", "code_postal": "80000", "coordonnees_gps": [49.9004650343, 2.29084588963], "code_commune_insee": "80021"}, "geometry": {"type": "Point", "coordinates": [2.29084588963, 49.9004650343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd7c8c6b94f593ddeef31d2d9ce3ea0b802193ca", "fields": {"nom_de_la_commune": "ARGOEUVES", "libell_d_acheminement": "ARGOEUVES", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80024"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e97f5f1555fddddb91b3ba948a84f2c51ba9c60a", "fields": {"nom_de_la_commune": "ARGUEL", "libell_d_acheminement": "ARGUEL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80026"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f8cc867c64a34649ba7a7631d912f6ace679200", "fields": {"nom_de_la_commune": "ARVILLERS", "libell_d_acheminement": "ARVILLERS", "code_postal": "80910", "coordonnees_gps": [49.7367812704, 2.64925549457], "code_commune_insee": "80031"}, "geometry": {"type": "Point", "coordinates": [2.64925549457, 49.7367812704]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d93a1c1cdacb4b8b2efaba68d8508f0325d1cba", "fields": {"nom_de_la_commune": "ASSEVILLERS", "libell_d_acheminement": "ASSEVILLERS", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80033"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4121e2fba5b9a0609d54109bc271525d1a7889b", "fields": {"nom_de_la_commune": "AUBIGNY", "libell_d_acheminement": "AUBIGNY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80036"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e58af34b575a53ca904f51bbdae468fa0b99d3b", "fields": {"nom_de_la_commune": "AUBVILLERS", "libell_d_acheminement": "AUBVILLERS", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80037"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b557f5452813d0bfcc0c5093fc262e3904eb554b", "fields": {"nom_de_la_commune": "AUTHIE", "libell_d_acheminement": "AUTHIE", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80043"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76c1dbacf6615393f2d3f5b307f8a776d0d7b31d", "fields": {"nom_de_la_commune": "BALATRE", "libell_d_acheminement": "BALATRE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80053"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f7b7017e87f8de5f59178fb94217668fe72294a", "fields": {"nom_de_la_commune": "BAVELINCOURT", "libell_d_acheminement": "BAVELINCOURT", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80056"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "809aee30c49b5516bbf9c08ab89078c9dba6a199", "fields": {"nom_de_la_commune": "BEAUCHAMPS", "libell_d_acheminement": "BEAUCHAMPS", "code_postal": "80770", "coordonnees_gps": [50.018728764, 1.52401496202], "code_commune_insee": "80063"}, "geometry": {"type": "Point", "coordinates": [1.52401496202, 50.018728764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "651f0d35a8b77252112b44bd7f77e5ab3429d1b7", "fields": {"nom_de_la_commune": "BEAUFORT EN SANTERRE", "libell_d_acheminement": "BEAUFORT EN SANTERRE", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80067"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f502466df7653200b3594c5ceb65c4c235e72d", "fields": {"nom_de_la_commune": "BEAUVAL", "libell_d_acheminement": "BEAUVAL", "code_postal": "80630", "coordonnees_gps": [50.1081352442, 2.32874451789], "code_commune_insee": "80071"}, "geometry": {"type": "Point", "coordinates": [2.32874451789, 50.1081352442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "195cf5af9e9796f749e339b59b0054835ad632a6", "fields": {"nom_de_la_commune": "BECQUIGNY", "libell_d_acheminement": "BECQUIGNY", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80074"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c80ee833c360e4e1405544414ff415b765070440", "fields": {"nom_de_la_commune": "BELLEUSE", "libell_d_acheminement": "BELLEUSE", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80079"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e236141986a5919676d3f283ca475e64ff90e568", "fields": {"nom_de_la_commune": "BELLOY ST LEONARD", "libell_d_acheminement": "BELLOY ST LEONARD", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80081"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "203418613e23cf7af0819b36d640357743521296", "fields": {"code_postal": "80370", "code_commune_insee": "80086", "libell_d_acheminement": "BERNAVILLE", "ligne_5": "VACQUERIE", "nom_de_la_commune": "BERNAVILLE", "coordonnees_gps": [50.1625147057, 2.13483617177]}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5376f426fd2706b8142ba93f27663c0b0c36c7b4", "fields": {"nom_de_la_commune": "BETTENCOURT RIVIERE", "libell_d_acheminement": "BETTENCOURT RIVIERE", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80099"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c19db31c09f1fd03f98f70d2e21fcd151373245", "fields": {"nom_de_la_commune": "BEUVRAIGNES", "libell_d_acheminement": "BEUVRAIGNES", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80101"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9789e0027dda55b074d485eea82111c6a3fab64", "fields": {"nom_de_la_commune": "BLANGY TRONVILLE", "libell_d_acheminement": "BLANGY TRONVILLE", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80107"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d73521679fae2f3b2cf3dfecd83761d422238134", "fields": {"nom_de_la_commune": "LE BOISLE", "libell_d_acheminement": "LE BOISLE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80109"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f033e000b8daa97618d025ceb978323313655200", "fields": {"nom_de_la_commune": "BOVES", "libell_d_acheminement": "BOVES", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80131"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbc281e05aa9b4d2b0262209b12c0d6b3eee9b10", "fields": {"nom_de_la_commune": "BRASSY", "libell_d_acheminement": "BRASSY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80134"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f1ef68439cf2f76b00b1629a4be2ae02851240d7", "fields": {"nom_de_la_commune": "BREUIL", "libell_d_acheminement": "BREUIL", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80139"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d91188b692cdc0e71994b7d5e44c12a927e583ae", "fields": {"nom_de_la_commune": "BROCOURT", "libell_d_acheminement": "BROCOURT", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80143"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30ccb7241a91dc9511abbce9650ecbde4f4d3d12", "fields": {"nom_de_la_commune": "BUSSUS BUSSUEL", "libell_d_acheminement": "BUSSUS BUSSUEL", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80155"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b76ec1b5775f019edcd469dce979d3d40c07a253", "fields": {"nom_de_la_commune": "CAGNY", "libell_d_acheminement": "CAGNY", "code_postal": "80330", "coordonnees_gps": [49.8585815171, 2.34498416532], "code_commune_insee": "80160"}, "geometry": {"type": "Point", "coordinates": [2.34498416532, 49.8585815171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b3129048be16947ab8287e9e659d8a19424b556", "fields": {"nom_de_la_commune": "CAHON", "libell_d_acheminement": "CAHON GOUY", "code_postal": "80132", "coordonnees_gps": [50.1190953901, 1.81386374692], "code_commune_insee": "80161"}, "geometry": {"type": "Point", "coordinates": [1.81386374692, 50.1190953901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2be66bf21cef3d542e4a14fd99b9e02995a3e97", "fields": {"nom_de_la_commune": "CANDAS", "libell_d_acheminement": "CANDAS", "code_postal": "80750", "coordonnees_gps": [50.1069765579, 2.26231827427], "code_commune_insee": "80168"}, "geometry": {"type": "Point", "coordinates": [2.26231827427, 50.1069765579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "444ac47e70c62bc1ef8e60d784aa0f83b09e7ea9", "fields": {"nom_de_la_commune": "CAYEUX EN SANTERRE", "libell_d_acheminement": "CAYEUX EN SANTERRE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80181"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08cc0d60fcd5236b4df1494b5f5cef9c1d9fc187", "fields": {"nom_de_la_commune": "CHILLY", "libell_d_acheminement": "CHILLY", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80191"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "255b884ba6afbbfd14be078dd987dc7755b6aa95", "fields": {"nom_de_la_commune": "CHUIGNOLLES", "libell_d_acheminement": "CHUIGNOLLES", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80195"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b791522feb9a4469cec6c6ae5a0c2c8bf5c0d7f6", "fields": {"nom_de_la_commune": "CITERNE", "libell_d_acheminement": "CITERNE", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80196"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5648d79aa99876cccf298f3a5e09ebea771fe80c", "fields": {"nom_de_la_commune": "COISY", "libell_d_acheminement": "COISY", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80202"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a26c70c8fc9bac2578a95f875ccd1a46194b61d3", "fields": {"nom_de_la_commune": "CONTAY", "libell_d_acheminement": "CONTAY", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80207"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69f8c2e12675e32ab6a807901e6d1ac34a3a90f9", "fields": {"nom_de_la_commune": "CORBIE", "libell_d_acheminement": "CORBIE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80212"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e7944abf3b724c65d09f109c713ec491a1903c", "fields": {"nom_de_la_commune": "DEMUIN", "libell_d_acheminement": "DEMUIN", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80237"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3641e73cc1635987726f1910b2c8b5d29d9482ba", "fields": {"nom_de_la_commune": "DOINGT", "libell_d_acheminement": "DOINGT FLAMICOURT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80240"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4bab21527b13418515a61014d61ccf6e7aac657", "fields": {"nom_de_la_commune": "DOMLEGER LONGVILLERS", "libell_d_acheminement": "DOMLEGER LONGVILLERS", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80245"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd0524872161fe96fe4052792aeeb3eca0c3a7e", "fields": {"nom_de_la_commune": "DOUILLY", "libell_d_acheminement": "DOUILLY", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80252"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72bd4bf41bc8ea811aecd39c8a5cda215246d836", "fields": {"nom_de_la_commune": "DREUIL LES AMIENS", "libell_d_acheminement": "DREUIL LES AMIENS", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80256"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72cbb9ac3d9d6eddf7c4b852b9cba3212dd5a089", "fields": {"nom_de_la_commune": "DRIENCOURT", "libell_d_acheminement": "DRIENCOURT", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80258"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9dfc75cbd09502f70402bf2f2a607929fdd3620", "fields": {"nom_de_la_commune": "L ECHELLE ST AURIN", "libell_d_acheminement": "L ECHELLE ST AURIN", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80263"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bec2096c73e4b23175b1b2c8971176014cda5203", "fields": {"nom_de_la_commune": "ECLUSIER VAUX", "libell_d_acheminement": "ECLUSIER VAUX", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80264"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93546af72f8f936cfccdb9eaf8236bfef956fb63", "fields": {"nom_de_la_commune": "EMBREVILLE", "libell_d_acheminement": "EMBREVILLE", "code_postal": "80570", "coordonnees_gps": [50.0369511716, 1.54351875131], "code_commune_insee": "80265"}, "geometry": {"type": "Point", "coordinates": [1.54351875131, 50.0369511716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ce5b70166fed449716c8dc7955e0afe3aada495", "fields": {"nom_de_la_commune": "EPEHY", "libell_d_acheminement": "EPEHY", "code_postal": "80740", "coordonnees_gps": [49.9986688504, 3.14330928776], "code_commune_insee": "80271"}, "geometry": {"type": "Point", "coordinates": [3.14330928776, 49.9986688504]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0f3b96d9053b0c69805e1d2c61ead7d69b194b", "fields": {"nom_de_la_commune": "EPENANCOURT", "libell_d_acheminement": "EPENANCOURT", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80272"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0257c387f6887b39b43461cfd4b0e58d9d53a5d8", "fields": {"nom_de_la_commune": "EQUANCOURT", "libell_d_acheminement": "EQUANCOURT", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80275"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cea8be1436991206edc52b6a2455239657a17888", "fields": {"nom_de_la_commune": "ERGNIES", "libell_d_acheminement": "ERGNIES", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80281"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7f413382db033644ef1c0e7bcd5f82d2e857e13", "fields": {"nom_de_la_commune": "ESTREES DENIECOURT", "libell_d_acheminement": "ESTREES DENIECOURT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80288"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "581340396ca83294b33fce4a054229371591a2c2", "fields": {"nom_de_la_commune": "ETALON", "libell_d_acheminement": "ETALON", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80292"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7df52e991626fc078c0a190761d7a351aa88082", "fields": {"nom_de_la_commune": "ETELFAY", "libell_d_acheminement": "ETELFAY", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80293"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "278e85f535e38f59352f359a31c3cc594f8b429b", "fields": {"nom_de_la_commune": "FALVY", "libell_d_acheminement": "FALVY", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80300"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deae4482e0ffc370697a08b7fe8ad0c76d486474", "fields": {"nom_de_la_commune": "FLUY", "libell_d_acheminement": "FLUY", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80319"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15826d3326bd737ebddd872bd5c793ad30ef5812", "fields": {"nom_de_la_commune": "FONTAINE LE SEC", "libell_d_acheminement": "FONTAINE LE SEC", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80324"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c0533fd7d64d14ec23f08edda2655c0d5f783f5", "fields": {"nom_de_la_commune": "FOURCIGNY", "libell_d_acheminement": "FOURCIGNY", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80340"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58ba2ca3a982b62b50da9d5a7a7c84247261130e", "fields": {"nom_de_la_commune": "FRANCIERES", "libell_d_acheminement": "FRANCIERES", "code_postal": "80690", "coordonnees_gps": [50.0746749874, 2.01760786838], "code_commune_insee": "80344"}, "geometry": {"type": "Point", "coordinates": [2.01760786838, 50.0746749874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "965a9231d36cf4b8cb020ce33dde54321954615e", "fields": {"nom_de_la_commune": "FRANSURES", "libell_d_acheminement": "FRANSURES", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80349"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a806373d30f5947e271ae79b8f8e92dad1f87bb", "fields": {"nom_de_la_commune": "FRESNES MAZANCOURT", "libell_d_acheminement": "FRESNES MAZANCOURT", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80353"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d252884e845d89be835c749de8426672fd13e1", "fields": {"nom_de_la_commune": "FRESNEVILLE", "libell_d_acheminement": "FRESNEVILLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80355"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc8ac37afca364a6b6c77918cc6185d28332d85e", "fields": {"nom_de_la_commune": "FRESNOY ANDAINVILLE", "libell_d_acheminement": "FRESNOY ANDAINVILLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80356"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35e63ee285993e1d24e8aa9cfb982fd4f31f017d", "fields": {"nom_de_la_commune": "FRESSENNEVILLE", "libell_d_acheminement": "FRESSENNEVILLE", "code_postal": "80390", "coordonnees_gps": [50.081035948, 1.5796731248], "code_commune_insee": "80360"}, "geometry": {"type": "Point", "coordinates": [1.5796731248, 50.081035948]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86eb5c8423c01186707e89a847ab10536a1c7e15", "fields": {"nom_de_la_commune": "FRETTECUISSE", "libell_d_acheminement": "FRETTECUISSE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80361"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0289707f2ded6277769fc06ab92402b2f0afc28", "fields": {"nom_de_la_commune": "FRICAMPS", "libell_d_acheminement": "FRICAMPS", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80365"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b1ff326103610c02e6bda17899028fa6c49efd", "fields": {"nom_de_la_commune": "FRISE", "libell_d_acheminement": "FRISE", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80367"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a41249ad60747b4ba9a2dfe3984a344ef0913f4d", "fields": {"nom_de_la_commune": "FRIVILLE ESCARBOTIN", "libell_d_acheminement": "FRIVILLE ESCARBOTIN", "code_postal": "80130", "coordonnees_gps": [50.0912781795, 1.52364516053], "code_commune_insee": "80368"}, "geometry": {"type": "Point", "coordinates": [1.52364516053, 50.0912781795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f84c659c623d2e257078298927ad698f148ec54", "fields": {"nom_de_la_commune": "ST GOIN", "libell_d_acheminement": "ST GOIN", "code_postal": "64400", "coordonnees_gps": [43.1918951985, -0.642051267053], "code_commune_insee": "64481"}, "geometry": {"type": "Point", "coordinates": [-0.642051267053, 43.1918951985]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "336a2d6858b886b6e11ec6234f8a0f3c7fe75ba1", "fields": {"nom_de_la_commune": "SAUVAGNON", "libell_d_acheminement": "SAUVAGNON", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64511"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcdbaa5e71756af9075d5d9a8245e800736554a5", "fields": {"nom_de_la_commune": "SAUVETERRE DE BEARN", "libell_d_acheminement": "SAUVETERRE DE BEARN", "code_postal": "64390", "coordonnees_gps": [43.4029592571, -0.922438975333], "code_commune_insee": "64513"}, "geometry": {"type": "Point", "coordinates": [-0.922438975333, 43.4029592571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d4221eb0a0a1fb4885c73509edb32c163c7c380", "fields": {"nom_de_la_commune": "SEMEACQ BLACHON", "libell_d_acheminement": "SEMEACQ BLACHON", "code_postal": "64350", "coordonnees_gps": [43.4696224051, -0.1198178684], "code_commune_insee": "64517"}, "geometry": {"type": "Point", "coordinates": [-0.1198178684, 43.4696224051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79ea775caee6b1b568780da68a47c7a243fcfa47", "fields": {"nom_de_la_commune": "SERRES MORLAAS", "libell_d_acheminement": "SERRES MORLAAS", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64520"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb26b5e8ed79bafe4d1ab04ea87f53987e5ab609", "fields": {"nom_de_la_commune": "SUHESCUN", "libell_d_acheminement": "SUHESCUN", "code_postal": "64780", "coordonnees_gps": [43.2518666668, -1.28852003798], "code_commune_insee": "64528"}, "geometry": {"type": "Point", "coordinates": [-1.28852003798, 43.2518666668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad40c55fdf4a864b25b8aa7b464903c5c5fec3d2", "fields": {"nom_de_la_commune": "TARDETS SORHOLUS", "libell_d_acheminement": "TARDETS SORHOLUS", "code_postal": "64470", "coordonnees_gps": [43.0978429518, -0.895873375717], "code_commune_insee": "64533"}, "geometry": {"type": "Point", "coordinates": [-0.895873375717, 43.0978429518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8291c8fb07715b547231ddc9aff2dfd90629f7c", "fields": {"nom_de_la_commune": "TARSACQ", "libell_d_acheminement": "TARSACQ", "code_postal": "64360", "coordonnees_gps": [43.2985688459, -0.58610605773], "code_commune_insee": "64535"}, "geometry": {"type": "Point", "coordinates": [-0.58610605773, 43.2985688459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aefa74559b4762acbd066c2e87b3655a394e254c", "fields": {"nom_de_la_commune": "URCUIT", "libell_d_acheminement": "URCUIT", "code_postal": "64990", "coordonnees_gps": [43.4632822407, -1.40781223333], "code_commune_insee": "64540"}, "geometry": {"type": "Point", "coordinates": [-1.40781223333, 43.4632822407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b3e16f9e6995eca81e8280e9f2181c37a3ef4d3", "fields": {"nom_de_la_commune": "NEMOURS", "libell_d_acheminement": "NEMOURS", "code_postal": "77140", "coordonnees_gps": [48.2750471622, 2.70959190478], "code_commune_insee": "77333"}, "geometry": {"type": "Point", "coordinates": [2.70959190478, 48.2750471622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbf9d81a6c5daa514872558b68401af6daa06f6", "fields": {"nom_de_la_commune": "ORLY SUR MORIN", "libell_d_acheminement": "ORLY SUR MORIN", "code_postal": "77750", "coordonnees_gps": [48.9148071078, 3.22989278872], "code_commune_insee": "77345"}, "geometry": {"type": "Point", "coordinates": [3.22989278872, 48.9148071078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a06951ed1e3b06a735693fb31ccfdc2e4cead308", "fields": {"nom_de_la_commune": "ORMESSON", "libell_d_acheminement": "ORMESSON", "code_postal": "77167", "coordonnees_gps": [48.2322771865, 2.71472288232], "code_commune_insee": "77348"}, "geometry": {"type": "Point", "coordinates": [2.71472288232, 48.2322771865]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7fff75153cbb724585a61db03772ba5b94c0122a", "fields": {"nom_de_la_commune": "PALEY", "libell_d_acheminement": "PALEY", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77353"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b1cf02ab46e16696c81a7d0d7068286de6210f4", "fields": {"nom_de_la_commune": "POINCY", "libell_d_acheminement": "POINCY", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77369"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d7375ce4ab6f80cf6c3eeb96faf4853c7aefeec", "fields": {"nom_de_la_commune": "PRESLES EN BRIE", "libell_d_acheminement": "PRESLES EN BRIE", "code_postal": "77220", "coordonnees_gps": [48.7441435085, 2.75833565592], "code_commune_insee": "77377"}, "geometry": {"type": "Point", "coordinates": [2.75833565592, 48.7441435085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd6813644283ab8d12962e9419468ca095e0c2fc", "fields": {"nom_de_la_commune": "REAU", "libell_d_acheminement": "REAU", "code_postal": "77550", "coordonnees_gps": [48.6199078529, 2.63560162952], "code_commune_insee": "77384"}, "geometry": {"type": "Point", "coordinates": [2.63560162952, 48.6199078529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c51666d22938694f1b55cf78af8170c0ecdc266", "fields": {"nom_de_la_commune": "LA ROCHETTE", "libell_d_acheminement": "LA ROCHETTE", "code_postal": "77000", "coordonnees_gps": [48.5229543545, 2.67825416798], "code_commune_insee": "77389"}, "geometry": {"type": "Point", "coordinates": [2.67825416798, 48.5229543545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "303a2385cbf375273135c9b929a23ae1fa459945", "fields": {"nom_de_la_commune": "ROISSY EN BRIE", "libell_d_acheminement": "ROISSY EN BRIE", "code_postal": "77680", "coordonnees_gps": [48.7896457179, 2.66063704289], "code_commune_insee": "77390"}, "geometry": {"type": "Point", "coordinates": [2.66063704289, 48.7896457179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c159592584d5767de301c7d29c2c8d7be969bf20", "fields": {"nom_de_la_commune": "ST GERMAIN SUR MORIN", "libell_d_acheminement": "ST GERMAIN SUR MORIN", "code_postal": "77860", "coordonnees_gps": [48.889293661, 2.86625543445], "code_commune_insee": "77413"}, "geometry": {"type": "Point", "coordinates": [2.86625543445, 48.889293661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e330682ffcdb9815035097a384b3d4aa790c793d", "fields": {"nom_de_la_commune": "ST JEAN LES DEUX JUMEAUX", "libell_d_acheminement": "ST JEAN LES DEUX JUMEAUX", "code_postal": "77660", "coordonnees_gps": [48.947885441, 3.02624344893], "code_commune_insee": "77415"}, "geometry": {"type": "Point", "coordinates": [3.02624344893, 48.947885441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7476860ef86032aa6588832134696056dd6b8891", "fields": {"nom_de_la_commune": "ST JUST EN BRIE", "libell_d_acheminement": "ST JUST EN BRIE", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77416"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e13209a73b7f1916d4ffecd455be3dc3360a6b3e", "fields": {"code_postal": "77320", "code_commune_insee": "77421", "libell_d_acheminement": "ST MARS VIEUX MAISONS", "ligne_5": "VIEUX MAISONS", "nom_de_la_commune": "ST MARS VIEUX MAISONS", "coordonnees_gps": [48.7632652303, 3.31883214084]}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00d06f836b9b2c0bb2201c1c9db39dc28e247183", "fields": {"nom_de_la_commune": "ST MESMES", "libell_d_acheminement": "ST MESMES", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77427"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b4709494d17aa7e04586b1a4fe3395859a2b75e", "fields": {"nom_de_la_commune": "ST OUEN SUR MORIN", "libell_d_acheminement": "ST OUEN SUR MORIN", "code_postal": "77750", "coordonnees_gps": [48.9148071078, 3.22989278872], "code_commune_insee": "77429"}, "geometry": {"type": "Point", "coordinates": [3.22989278872, 48.9148071078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d838d2785d1dfd2722207f8319e9cc3b3f6ff4bb", "fields": {"nom_de_la_commune": "ST PATHUS", "libell_d_acheminement": "ST PATHUS", "code_postal": "77178", "coordonnees_gps": [49.0712863864, 2.81026251267], "code_commune_insee": "77430"}, "geometry": {"type": "Point", "coordinates": [2.81026251267, 49.0712863864]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1af3de0ecac63ce398d27664dc3aefdb6cd1cf28", "fields": {"nom_de_la_commune": "SAINTS", "libell_d_acheminement": "SAINTS", "code_postal": "77120", "coordonnees_gps": [48.7888234084, 3.09542739342], "code_commune_insee": "77433"}, "geometry": {"type": "Point", "coordinates": [3.09542739342, 48.7888234084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa8e28b3c415cd7c5fd125ba09f943985ddc3e59", "fields": {"nom_de_la_commune": "ST SAUVEUR LES BRAY", "libell_d_acheminement": "ST SAUVEUR LES BRAY", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77434"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96ae76a76fa566122fa58e1c365fdb27923f8640", "fields": {"nom_de_la_commune": "ST SOUPPLETS", "libell_d_acheminement": "ST SOUPPLETS", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77437"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb733baa3dadf21f4810842c30854b4677329d6d", "fields": {"nom_de_la_commune": "SAVIGNY LE TEMPLE", "libell_d_acheminement": "SAVIGNY LE TEMPLE", "code_postal": "77176", "coordonnees_gps": [48.5856002138, 2.56311279324], "code_commune_insee": "77445"}, "geometry": {"type": "Point", "coordinates": [2.56311279324, 48.5856002138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "606b526b6027a890d7f2b0f3c9b1fd7a48aecefc", "fields": {"nom_de_la_commune": "SAVINS", "libell_d_acheminement": "SAVINS", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77446"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea905f1f1b0c816271642c9438639484ae5d581", "fields": {"nom_de_la_commune": "SEPT SORTS", "libell_d_acheminement": "SEPT SORTS", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77448"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "572124de8a21cd5d5f8ff3952d1e5293703d9dc5", "fields": {"nom_de_la_commune": "SERRIS", "libell_d_acheminement": "SERRIS", "code_postal": "77700", "coordonnees_gps": [48.8632419628, 2.79709040394], "code_commune_insee": "77449"}, "geometry": {"type": "Point", "coordinates": [2.79709040394, 48.8632419628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "763fe12331e5f3c2561b8b75cf4b10bc3dcb029b", "fields": {"nom_de_la_commune": "THENISY", "libell_d_acheminement": "THENISY", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77461"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361aa947946e1998005d0d597091ad694241ad0f", "fields": {"nom_de_la_commune": "TIGEAUX", "libell_d_acheminement": "TIGEAUX", "code_postal": "77163", "coordonnees_gps": [48.7979316478, 2.90271680607], "code_commune_insee": "77466"}, "geometry": {"type": "Point", "coordinates": [2.90271680607, 48.7979316478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27dc3ad7082fb87d364f3703edc0083f329f60e0", "fields": {"nom_de_la_commune": "LA TRETOIRE", "libell_d_acheminement": "LA TRETOIRE", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77472"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06641d4218da216eb8171a7abf489e46bcd2a452", "fields": {"nom_de_la_commune": "TREUZY LEVELAY", "libell_d_acheminement": "TREUZY LEVELAY", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77473"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f05f757dfc44d09867fee18ec7ed195bb7acebd", "fields": {"nom_de_la_commune": "TRILPORT", "libell_d_acheminement": "TRILPORT", "code_postal": "77470", "coordonnees_gps": [48.9379174307, 2.95705670409], "code_commune_insee": "77475"}, "geometry": {"type": "Point", "coordinates": [2.95705670409, 48.9379174307]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41f25b49c0922372d1cf9eaf8e8e17ce70141ea5", "fields": {"nom_de_la_commune": "TROCY EN MULTIEN", "libell_d_acheminement": "TROCY EN MULTIEN", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77476"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "472c65d60ada97590caabbac0311083c58ae6fab", "fields": {"nom_de_la_commune": "VARENNES SUR SEINE", "libell_d_acheminement": "VARENNES SUR SEINE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77482"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1744619f3e10b8669e05c2d96f9245b1c18f43c", "fields": {"nom_de_la_commune": "VARREDDES", "libell_d_acheminement": "VARREDDES", "code_postal": "77910", "coordonnees_gps": [48.9999569179, 2.91840604341], "code_commune_insee": "77483"}, "geometry": {"type": "Point", "coordinates": [2.91840604341, 48.9999569179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae3b8eb742be14629a31aa5330a169fc2cb0a230", "fields": {"nom_de_la_commune": "VAUDOY EN BRIE", "libell_d_acheminement": "VAUDOY EN BRIE", "code_postal": "77141", "coordonnees_gps": [48.6974710032, 3.08222071028], "code_commune_insee": "77486"}, "geometry": {"type": "Point", "coordinates": [3.08222071028, 48.6974710032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d379908fe1fab50582072adf73256086198ec3e", "fields": {"nom_de_la_commune": "VENDREST", "libell_d_acheminement": "VENDREST", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77490"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff17f904b7ee87986271667694948ef28c2d8f4c", "fields": {"nom_de_la_commune": "VERDELOT", "libell_d_acheminement": "VERDELOT", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77492"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af144da9bc71e6ffc43b0c31b54744685512aa6", "fields": {"code_postal": "77670", "code_commune_insee": "77494", "libell_d_acheminement": "VERNOU LA CELLE SUR SEINE", "ligne_5": "LA CELLE SUR SEINE", "nom_de_la_commune": "VERNOU LA CELLE SUR SEINE", "coordonnees_gps": [48.4047875044, 2.85078204772]}, "geometry": {"type": "Point", "coordinates": [2.85078204772, 48.4047875044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad3502277a1779f7f249634bf5fc5c9d8940e505", "fields": {"nom_de_la_commune": "VILLECERF", "libell_d_acheminement": "VILLECERF", "code_postal": "77250", "coordonnees_gps": [48.3334508388, 2.82847916513], "code_commune_insee": "77501"}, "geometry": {"type": "Point", "coordinates": [2.82847916513, 48.3334508388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e69c864eafe1ea205fbfa3ea6a75bd476e8ebc", "fields": {"nom_de_la_commune": "VILLENAUXE LA PETITE", "libell_d_acheminement": "VILLENAUXE LA PETITE", "code_postal": "77480", "coordonnees_gps": [48.4107576867, 3.29924400161], "code_commune_insee": "77507"}, "geometry": {"type": "Point", "coordinates": [3.29924400161, 48.4107576867]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3af1bacc39f0d2c6ba4119b8e15e93bd156f1ab4", "fields": {"nom_de_la_commune": "VILLENEUVE SUR BELLOT", "libell_d_acheminement": "VILLENEUVE SUR BELLOT", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77512"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc86a01e0c01c963d162c1f027ecc2509418b8b", "fields": {"code_postal": "77410", "code_commune_insee": "77517", "libell_d_acheminement": "VILLEVAUDE", "ligne_5": "BORDEAUX", "nom_de_la_commune": "VILLEVAUDE", "coordonnees_gps": [48.9493778355, 2.7161171355]}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f24e3327dc1fe5cf2d9fe24d44a97ecac119b46", "fields": {"nom_de_la_commune": "VILLIERS SOUS GREZ", "libell_d_acheminement": "VILLIERS SOUS GREZ", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77520"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4082dab8a9019406e6629886c0c54667ddbc6918", "fields": {"nom_de_la_commune": "VIMPELLES", "libell_d_acheminement": "VIMPELLES", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77524"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b012c685d4b257ca1fec587dcb257a12feafdc9b", "fields": {"nom_de_la_commune": "VOINSLES", "libell_d_acheminement": "VOINSLES", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77527"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f11c54e5a911c53248f58eddaf20ed700fd76c4", "fields": {"nom_de_la_commune": "ACHERES", "libell_d_acheminement": "ACHERES", "code_postal": "78260", "coordonnees_gps": [48.9716145916, 2.08821497883], "code_commune_insee": "78005"}, "geometry": {"type": "Point", "coordinates": [2.08821497883, 48.9716145916]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20e1326a882553394221ed9220165d1abe8e115b", "fields": {"nom_de_la_commune": "BAZEMONT", "libell_d_acheminement": "BAZEMONT", "code_postal": "78580", "coordonnees_gps": [48.9115359215, 1.85464080314], "code_commune_insee": "78049"}, "geometry": {"type": "Point", "coordinates": [1.85464080314, 48.9115359215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99f6a38f670ad651a7e5c40b38f1eef0ba5ece8b", "fields": {"nom_de_la_commune": "BENNECOURT", "libell_d_acheminement": "BENNECOURT", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78057"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67717b20ba9928bfaab958f615df60fc9efe631b", "fields": {"nom_de_la_commune": "BEYNES", "libell_d_acheminement": "BEYNES", "code_postal": "78650", "coordonnees_gps": [48.853666314, 1.86642479384], "code_commune_insee": "78062"}, "geometry": {"type": "Point", "coordinates": [1.86642479384, 48.853666314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5aecbb84761ddca1dd2f25248b7c6ef03f0672f", "fields": {"code_postal": "78650", "code_commune_insee": "78062", "libell_d_acheminement": "BEYNES", "ligne_5": "VAL DES QUATRE PIGNONS", "nom_de_la_commune": "BEYNES", "coordonnees_gps": [48.853666314, 1.86642479384]}, "geometry": {"type": "Point", "coordinates": [1.86642479384, 48.853666314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "325c8069e4f06092eea4ebfc90f6f5efc75412ff", "fields": {"nom_de_la_commune": "BOINVILLIERS", "libell_d_acheminement": "BOINVILLIERS", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78072"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4cc836807738a17aa6125fd2b7d783b9b2eba85", "fields": {"nom_de_la_commune": "BOISSY MAUVOISIN", "libell_d_acheminement": "BOISSY MAUVOISIN", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78082"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba16490b5795812ddd946043279ef10b6cf75b06", "fields": {"nom_de_la_commune": "BONNIERES SUR SEINE", "libell_d_acheminement": "BONNIERES SUR SEINE", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78089"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1e5388923e712722abbef887d8dd4dc11f914f0", "fields": {"nom_de_la_commune": "BOUGIVAL", "libell_d_acheminement": "BOUGIVAL", "code_postal": "78380", "coordonnees_gps": [48.8637892909, 2.13732683237], "code_commune_insee": "78092"}, "geometry": {"type": "Point", "coordinates": [2.13732683237, 48.8637892909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1132323f73581a9c2e8dbc61f8963b2ef99e1202", "fields": {"nom_de_la_commune": "BREVAL", "libell_d_acheminement": "BREVAL", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78107"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75f695e28d24b4fb58103d51fd243d4462fc8967", "fields": {"nom_de_la_commune": "CHAMBOURCY", "libell_d_acheminement": "CHAMBOURCY", "code_postal": "78240", "coordonnees_gps": [48.8975283122, 2.02796979095], "code_commune_insee": "78133"}, "geometry": {"type": "Point", "coordinates": [2.02796979095, 48.8975283122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd7042b2f16628103d2601853a4d703c49a78b31", "fields": {"nom_de_la_commune": "LE CHESNAY", "libell_d_acheminement": "LE CHESNAY", "code_postal": "78150", "coordonnees_gps": [48.8291874065, 2.12052828501], "code_commune_insee": "78158"}, "geometry": {"type": "Point", "coordinates": [2.12052828501, 48.8291874065]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7b935aaaa1d203c66f88af4d61a69a1ca963af8", "fields": {"nom_de_la_commune": "CHEVREUSE", "libell_d_acheminement": "CHEVREUSE", "code_postal": "78460", "coordonnees_gps": [48.6939321598, 2.02878492296], "code_commune_insee": "78160"}, "geometry": {"type": "Point", "coordinates": [2.02878492296, 48.6939321598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c95a524aed1fdc2c47be918b8f8d9dac7473f555", "fields": {"nom_de_la_commune": "CIVRY LA FORET", "libell_d_acheminement": "CIVRY LA FORET", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78163"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f647b230f3dc8a2cfe4b9f4c93f459ffaf40934b", "fields": {"nom_de_la_commune": "COURGENT", "libell_d_acheminement": "COURGENT", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78185"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1156a9f1dce98e3fefe6b1019bc6813cb6ae20f8", "fields": {"nom_de_la_commune": "DROCOURT", "libell_d_acheminement": "DROCOURT", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78202"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9654471b35f7d80accc3e8cdfb88a9808525c299", "fields": {"nom_de_la_commune": "ECQUEVILLY", "libell_d_acheminement": "ECQUEVILLY", "code_postal": "78920", "coordonnees_gps": [48.9461356808, 1.92079973197], "code_commune_insee": "78206"}, "geometry": {"type": "Point", "coordinates": [1.92079973197, 48.9461356808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc4b742a5d04e28e5da7267d4daa27a814ff0238", "fields": {"nom_de_la_commune": "GAILLON SUR MONTCIENT", "libell_d_acheminement": "GAILLON SUR MONTCIENT", "code_postal": "78250", "coordonnees_gps": [49.017629668, 1.88919336875], "code_commune_insee": "78261"}, "geometry": {"type": "Point", "coordinates": [1.88919336875, 49.017629668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "821696d3ca321ae7aaa54851a8a297c8cfb2f5ef", "fields": {"nom_de_la_commune": "GAMBAISEUIL", "libell_d_acheminement": "GAMBAISEUIL", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78264"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edaf010bbf5d1ac1ed0ec9701145cb67dcd2e7c4", "fields": {"nom_de_la_commune": "GOMMECOURT", "libell_d_acheminement": "GOMMECOURT", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78276"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7570b4e2dd2e90de800163a682448258c7d48bd8", "fields": {"nom_de_la_commune": "GUITRANCOURT", "libell_d_acheminement": "GUITRANCOURT", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78296"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3756441e336c51a972049991e4fa5023ae4633a8", "fields": {"nom_de_la_commune": "ISSOU", "libell_d_acheminement": "ISSOU", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78314"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec33dfb536a81ac0969839830e424843314f2875", "fields": {"nom_de_la_commune": "JAMBVILLE", "libell_d_acheminement": "JAMBVILLE", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78317"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d9cf459ecbc5dc6394122aa022c2677872f3fd", "fields": {"nom_de_la_commune": "JEUFOSSE", "libell_d_acheminement": "JEUFOSSE", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78320"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1339c49ee99c6512fcd6b3c7d2ac9c8979fc3326", "fields": {"nom_de_la_commune": "JOUARS PONTCHARTRAIN", "libell_d_acheminement": "JOUARS PONTCHARTRAIN", "code_postal": "78760", "coordonnees_gps": [48.7906207752, 1.90681294761], "code_commune_insee": "78321"}, "geometry": {"type": "Point", "coordinates": [1.90681294761, 48.7906207752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06032e1bc942b1af22df6e9caf3451e33c38b5c5", "fields": {"nom_de_la_commune": "JUMEAUVILLE", "libell_d_acheminement": "JUMEAUVILLE", "code_postal": "78580", "coordonnees_gps": [48.9115359215, 1.85464080314], "code_commune_insee": "78325"}, "geometry": {"type": "Point", "coordinates": [1.85464080314, 48.9115359215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22ac2c900715a5f44806650379462c4ff19d546c", "fields": {"nom_de_la_commune": "LEVIS ST NOM", "libell_d_acheminement": "LEVIS ST NOM", "code_postal": "78320", "coordonnees_gps": [48.7362483478, 1.95125411115], "code_commune_insee": "78334"}, "geometry": {"type": "Point", "coordinates": [1.95125411115, 48.7362483478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1af50c90e792f3df32518e5e085013c7eae129b7", "fields": {"nom_de_la_commune": "LIMAY", "libell_d_acheminement": "LIMAY", "code_postal": "78520", "coordonnees_gps": [49.019152235, 1.69317391224], "code_commune_insee": "78335"}, "geometry": {"type": "Point", "coordinates": [1.69317391224, 49.019152235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e4efe58276b302739c6808bc4e5c3b00ce6530", "fields": {"nom_de_la_commune": "LES LOGES EN JOSAS", "libell_d_acheminement": "LES LOGES EN JOSAS", "code_postal": "78350", "coordonnees_gps": [48.7655340154, 2.15902519445], "code_commune_insee": "78343"}, "geometry": {"type": "Point", "coordinates": [2.15902519445, 48.7655340154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38b6bb1c381374e96fb59dfc17fd8c83777dc60e", "fields": {"nom_de_la_commune": "MAGNANVILLE", "libell_d_acheminement": "MAGNANVILLE", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78354"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a6970a45d9236833dec0f332a83d94e9a92c27", "fields": {"nom_de_la_commune": "MAISONS LAFFITTE", "libell_d_acheminement": "MAISONS LAFFITTE", "code_postal": "78600", "coordonnees_gps": [48.9430101305, 2.14143556123], "code_commune_insee": "78358"}, "geometry": {"type": "Point", "coordinates": [2.14143556123, 48.9430101305]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e296f81a3e52922ada9a26d497fd8d49ba6985", "fields": {"nom_de_la_commune": "MANTES LA JOLIE", "libell_d_acheminement": "MANTES LA JOLIE", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78361"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ac19954f11b92baa19b126993c4f3383543e10", "fields": {"nom_de_la_commune": "MARCQ", "libell_d_acheminement": "MARCQ", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78364"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f06ff8725249ac0de9de7cd9f7c16725825cb0a7", "fields": {"code_postal": "78550", "code_commune_insee": "78381", "libell_d_acheminement": "MAULETTE", "ligne_5": "THIONVILLE SUR OPTON", "nom_de_la_commune": "MAULETTE", "coordonnees_gps": [48.8059624153, 1.62530918633]}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5541bbd91be83f9b82eddabc8ad4f4e524ad1c63", "fields": {"nom_de_la_commune": "MAURECOURT", "libell_d_acheminement": "MAURECOURT", "code_postal": "78780", "coordonnees_gps": [48.9987117472, 2.05346510271], "code_commune_insee": "78382"}, "geometry": {"type": "Point", "coordinates": [2.05346510271, 48.9987117472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "946fa92742d302a9d93ca4aa49d65c085e87abbc", "fields": {"nom_de_la_commune": "MAUREPAS", "libell_d_acheminement": "MAUREPAS", "code_postal": "78310", "coordonnees_gps": [48.7604855324, 1.91898209487], "code_commune_insee": "78383"}, "geometry": {"type": "Point", "coordinates": [1.91898209487, 48.7604855324]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4feea1b4918bd5b8f9dbd78ee01044a2e303dc21", "fields": {"nom_de_la_commune": "LE MESNIL ST DENIS", "libell_d_acheminement": "LE MESNIL ST DENIS", "code_postal": "78320", "coordonnees_gps": [48.7362483478, 1.95125411115], "code_commune_insee": "78397"}, "geometry": {"type": "Point", "coordinates": [1.95125411115, 48.7362483478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4036cbe1643ec565e9c0dbfc26150d72450e04d4", "fields": {"nom_de_la_commune": "MEZY SUR SEINE", "libell_d_acheminement": "MEZY SUR SEINE", "code_postal": "78250", "coordonnees_gps": [49.017629668, 1.88919336875], "code_commune_insee": "78403"}, "geometry": {"type": "Point", "coordinates": [1.88919336875, 49.017629668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae4e89f14b506bab9213305cf758d084393d33e6", "fields": {"nom_de_la_commune": "MOISSON", "libell_d_acheminement": "MOISSON", "code_postal": "78840", "coordonnees_gps": [49.0584919382, 1.63612899817], "code_commune_insee": "78410"}, "geometry": {"type": "Point", "coordinates": [1.63612899817, 49.0584919382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbda0ae471512344ffb5c2dd769aabd921daf819", "fields": {"nom_de_la_commune": "NOISY LE ROI", "libell_d_acheminement": "NOISY LE ROI", "code_postal": "78590", "coordonnees_gps": [48.8425372745, 2.05184137552], "code_commune_insee": "78455"}, "geometry": {"type": "Point", "coordinates": [2.05184137552, 48.8425372745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed36c4d387a52576e9ebfbab4e005dac07fcbab", "fields": {"nom_de_la_commune": "OINVILLE SUR MONTCIENT", "libell_d_acheminement": "OINVILLE SUR MONTCIENT", "code_postal": "78250", "coordonnees_gps": [49.017629668, 1.88919336875], "code_commune_insee": "78460"}, "geometry": {"type": "Point", "coordinates": [1.88919336875, 49.017629668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3dcc2815c3ab2fddaefc475f641bb0f1e67d9ca", "fields": {"nom_de_la_commune": "ORGEVAL", "libell_d_acheminement": "ORGEVAL", "code_postal": "78630", "coordonnees_gps": [48.9218149018, 1.96212376753], "code_commune_insee": "78466"}, "geometry": {"type": "Point", "coordinates": [1.96212376753, 48.9218149018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7d28596f6459dfffe1bf92d3f65c8d21074e1b5", "fields": {"nom_de_la_commune": "ORSONVILLE", "libell_d_acheminement": "ORSONVILLE", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78472"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d86d0dd57bfc4ea191c92c3f86af2d687e0334", "fields": {"nom_de_la_commune": "ORVILLIERS", "libell_d_acheminement": "ORVILLIERS", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78474"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12e60238bec88a7b91d02cc964d9d13ef37ca2ab", "fields": {"nom_de_la_commune": "OSMOY", "libell_d_acheminement": "OSMOY", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78475"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9c24beda727e865dd15169f57fbd1229b07e9d6", "fields": {"nom_de_la_commune": "LE PECQ", "libell_d_acheminement": "LE PECQ", "code_postal": "78230", "coordonnees_gps": [48.8943723497, 2.1057199648], "code_commune_insee": "78481"}, "geometry": {"type": "Point", "coordinates": [2.1057199648, 48.8943723497]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c249aad8767d526ddf7f71a7e1251e2ac72fa6f", "fields": {"nom_de_la_commune": "PRUNAY LE TEMPLE", "libell_d_acheminement": "PRUNAY LE TEMPLE", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78505"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "284031a17f61788f10f0960e900e3ce7f92c0ad3", "fields": {"nom_de_la_commune": "ROCHEFORT EN YVELINES", "libell_d_acheminement": "ROCHEFORT EN YVELINES", "code_postal": "78730", "coordonnees_gps": [48.5709913793, 1.96381832135], "code_commune_insee": "78522"}, "geometry": {"type": "Point", "coordinates": [1.96381832135, 48.5709913793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1406e5d473c03bc269dd1a01169742b5cb6cd2ae", "fields": {"nom_de_la_commune": "ST ARNOULT EN YVELINES", "libell_d_acheminement": "ST ARNOULT EN YVELINES", "code_postal": "78730", "coordonnees_gps": [48.5709913793, 1.96381832135], "code_commune_insee": "78537"}, "geometry": {"type": "Point", "coordinates": [1.96381832135, 48.5709913793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e53d04b3e947fbf72c870ca9ddb3a4ca4a743a", "fields": {"nom_de_la_commune": "ST HILARION", "libell_d_acheminement": "ST HILARION", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78557"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d4ec2f649a700a52d3af492ce6614e25826d3d", "fields": {"nom_de_la_commune": "ST LAMBERT", "libell_d_acheminement": "ST LAMBERT DES BOIS", "code_postal": "78470", "coordonnees_gps": [48.7175747571, 2.05026286373], "code_commune_insee": "78561"}, "geometry": {"type": "Point", "coordinates": [2.05026286373, 48.7175747571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e750231309cfc0a059e1025242407b93e62eac83", "fields": {"nom_de_la_commune": "SONCHAMP", "libell_d_acheminement": "SONCHAMP", "code_postal": "78120", "coordonnees_gps": [48.6165414495, 1.85994599568], "code_commune_insee": "78601"}, "geometry": {"type": "Point", "coordinates": [1.85994599568, 48.6165414495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "956c19cfadee0151af6650a8050766b5605e403e", "fields": {"nom_de_la_commune": "LE TERTRE ST DENIS", "libell_d_acheminement": "LE TERTRE ST DENIS", "code_postal": "78980", "coordonnees_gps": [48.9416314677, 1.55443275469], "code_commune_insee": "78608"}, "geometry": {"type": "Point", "coordinates": [1.55443275469, 48.9416314677]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402920c96200635d94e53da1f509660ecfed955e", "fields": {"nom_de_la_commune": "THIVERVAL GRIGNON", "libell_d_acheminement": "THIVERVAL GRIGNON", "code_postal": "78850", "coordonnees_gps": [48.844252131, 1.93267960779], "code_commune_insee": "78615"}, "geometry": {"type": "Point", "coordinates": [1.93267960779, 48.844252131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d92f67d3392cd2ff44edebafcd9b3ad4674c92d4", "fields": {"code_postal": "78510", "code_commune_insee": "78624", "libell_d_acheminement": "TRIEL SUR SEINE", "ligne_5": "CHEVERCHEMONT", "nom_de_la_commune": "TRIEL SUR SEINE", "coordonnees_gps": [48.9781198658, 2.00818427315]}, "geometry": {"type": "Point", "coordinates": [2.00818427315, 48.9781198658]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b25e7ec18cab71a677d62c1a8b6d1da0433a946", "fields": {"nom_de_la_commune": "LE VESINET", "libell_d_acheminement": "LE VESINET", "code_postal": "78110", "coordonnees_gps": [48.89356401, 2.12981922298], "code_commune_insee": "78650"}, "geometry": {"type": "Point", "coordinates": [2.12981922298, 48.89356401]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aee37ccb1e7632eb9806f144d14373be198d8b2", "fields": {"nom_de_la_commune": "VICQ", "libell_d_acheminement": "VICQ", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78653"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81f6e8a85a5b830b2653057cfbdb82b9afd4ac0", "fields": {"nom_de_la_commune": "VIEILLE EGLISE EN YVELINES", "libell_d_acheminement": "VIEILLE EGLISE EN YVELINES", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78655"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38535ecb04efe571bda9ad41504f6d6972812e65", "fields": {"nom_de_la_commune": "PLELAN LE GRAND", "libell_d_acheminement": "PLELAN LE GRAND", "code_postal": "35380", "coordonnees_gps": [48.0149966641, -2.10718157509], "code_commune_insee": "35223"}, "geometry": {"type": "Point", "coordinates": [-2.10718157509, 48.0149966641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33339fd4f989f66422823c1668cbe8e24135ace1", "fields": {"nom_de_la_commune": "PLEUGUENEUC", "libell_d_acheminement": "PLEUGUENEUC", "code_postal": "35720", "coordonnees_gps": [48.4351031296, -1.88770006407], "code_commune_insee": "35226"}, "geometry": {"type": "Point", "coordinates": [-1.88770006407, 48.4351031296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f579e755c494aa008ff8d0eb8977982281d46ca", "fields": {"nom_de_la_commune": "PLEURTUIT", "libell_d_acheminement": "PLEURTUIT", "code_postal": "35730", "coordonnees_gps": [48.5827668702, -2.06027401288], "code_commune_insee": "35228"}, "geometry": {"type": "Point", "coordinates": [-2.06027401288, 48.5827668702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa70009b2ffb73cab74c7cc67f046a5068ded67", "fields": {"nom_de_la_commune": "REDON", "libell_d_acheminement": "REDON", "code_postal": "35600", "coordonnees_gps": [47.6975566329, -2.0582593409], "code_commune_insee": "35236"}, "geometry": {"type": "Point", "coordinates": [-2.0582593409, 47.6975566329]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b9b96160370dd8d89fef9b47353cdd459275ca4", "fields": {"nom_de_la_commune": "RIMOU", "libell_d_acheminement": "RIMOU", "code_postal": "35560", "coordonnees_gps": [48.4201221842, -1.56463538927], "code_commune_insee": "35242"}, "geometry": {"type": "Point", "coordinates": [-1.56463538927, 48.4201221842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "395bc4e8e7a1d8bdd71176494c7e9af76d01d2f5", "fields": {"nom_de_la_commune": "ROMAGNE", "libell_d_acheminement": "ROMAGNE", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35243"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce914c85e7e7d851d6f4a1570264c5163392b7c7", "fields": {"nom_de_la_commune": "ROZ SUR COUESNON", "libell_d_acheminement": "ROZ SUR COUESNON", "code_postal": "35610", "coordonnees_gps": [48.5413140399, -1.57364026509], "code_commune_insee": "35247"}, "geometry": {"type": "Point", "coordinates": [-1.57364026509, 48.5413140399]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff7c00502a4bf1ac62f2e70e73fd24580ede85f4", "fields": {"nom_de_la_commune": "ST ARMEL", "libell_d_acheminement": "ST ARMEL", "code_postal": "35230", "coordonnees_gps": [48.0164430154, -1.6442206032], "code_commune_insee": "35250"}, "geometry": {"type": "Point", "coordinates": [-1.6442206032, 48.0164430154]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0cb72b90626d75a9e560361bcabc781c5a8e3ac", "fields": {"nom_de_la_commune": "ST AUBIN D AUBIGNE", "libell_d_acheminement": "ST AUBIN D AUBIGNE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35251"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e9a437fdfcc157cce2f97319b6ba5db212fab5c", "fields": {"nom_de_la_commune": "ST BENOIT DES ONDES", "libell_d_acheminement": "ST BENOIT DES ONDES", "code_postal": "35114", "coordonnees_gps": [48.6133414914, -1.86078756626], "code_commune_insee": "35255"}, "geometry": {"type": "Point", "coordinates": [-1.86078756626, 48.6133414914]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d123ee0d70a9bd2e2c2fc4d29cbc7e09d0e3f43", "fields": {"nom_de_la_commune": "ST GERMAIN EN COGLES", "libell_d_acheminement": "ST GERMAIN EN COGLES", "code_postal": "35133", "coordonnees_gps": [48.3599647828, -1.18901816766], "code_commune_insee": "35273"}, "geometry": {"type": "Point", "coordinates": [-1.18901816766, 48.3599647828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac81e005ae55ad2cd7aabf5081f6622bb029c2c6", "fields": {"nom_de_la_commune": "ST GREGOIRE", "libell_d_acheminement": "ST GREGOIRE", "code_postal": "35760", "coordonnees_gps": [48.1574437046, -1.69175560497], "code_commune_insee": "35278"}, "geometry": {"type": "Point", "coordinates": [-1.69175560497, 48.1574437046]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b39fd2acf5a1d58fe903b6d32849760e57aa1c54", "fields": {"nom_de_la_commune": "ST HILAIRE DES LANDES", "libell_d_acheminement": "ST HILAIRE DES LANDES", "code_postal": "35140", "coordonnees_gps": [48.290845893, -1.39473275621], "code_commune_insee": "35280"}, "geometry": {"type": "Point", "coordinates": [-1.39473275621, 48.290845893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ff9aa54ce1205acac7b298cad34d5421172dd8d", "fields": {"nom_de_la_commune": "ST JACQUES DE LA LANDE", "libell_d_acheminement": "ST JACQUES DE LA LANDE", "code_postal": "35136", "coordonnees_gps": [48.0756152409, -1.72379516308], "code_commune_insee": "35281"}, "geometry": {"type": "Point", "coordinates": [-1.72379516308, 48.0756152409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9609cd9e822a1c05a0e5cc240a10e242bfc4935", "fields": {"nom_de_la_commune": "ST MALO", "libell_d_acheminement": "ST MALO", "code_postal": "35400", "coordonnees_gps": [48.6399039698, -1.9807980796], "code_commune_insee": "35288"}, "geometry": {"type": "Point", "coordinates": [-1.9807980796, 48.6399039698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "801b8cf9335e55e6bf39ee02004398b18e3bf843", "fields": {"nom_de_la_commune": "ST MALON SUR MEL", "libell_d_acheminement": "ST MALON SUR MEL", "code_postal": "35750", "coordonnees_gps": [48.1126516874, -2.04975015868], "code_commune_insee": "35290"}, "geometry": {"type": "Point", "coordinates": [-2.04975015868, 48.1126516874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26754c3c50575ed33e7f7085257d1f5a8598b1d7", "fields": {"nom_de_la_commune": "ST MAUGAN", "libell_d_acheminement": "ST MAUGAN", "code_postal": "35750", "coordonnees_gps": [48.1126516874, -2.04975015868], "code_commune_insee": "35295"}, "geometry": {"type": "Point", "coordinates": [-2.04975015868, 48.1126516874]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9a7ac3df0a7ffd16b5ec17f5048d4876346f250", "fields": {"nom_de_la_commune": "ST MEDARD SUR ILLE", "libell_d_acheminement": "ST MEDARD SUR ILLE", "code_postal": "35250", "coordonnees_gps": [48.2552580964, -1.61628405325], "code_commune_insee": "35296"}, "geometry": {"type": "Point", "coordinates": [-1.61628405325, 48.2552580964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63ba9bec3de59b011293169dd5aceb244a9d930a", "fields": {"nom_de_la_commune": "ST M HERVE", "libell_d_acheminement": "ST M HERVE", "code_postal": "35500", "coordonnees_gps": [48.1379500219, -1.18967633212], "code_commune_insee": "35300"}, "geometry": {"type": "Point", "coordinates": [-1.18967633212, 48.1379500219]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48d2c0d7bf11c6a8ba40ec665b46bcdf1498c8d", "fields": {"nom_de_la_commune": "ST M HERVON", "libell_d_acheminement": "ST M HERVON", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35301"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c0125d409126e6d5d97eae7422ed3cf670e6029", "fields": {"nom_de_la_commune": "ST PERE", "libell_d_acheminement": "ST PERE", "code_postal": "35430", "coordonnees_gps": [48.5817595804, -1.93661188618], "code_commune_insee": "35306"}, "geometry": {"type": "Point", "coordinates": [-1.93661188618, 48.5817595804]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca5fcbd6b62b089dda57b505c72c1f0bba5ff01", "fields": {"nom_de_la_commune": "ST PIERRE DE PLESGUEN", "libell_d_acheminement": "ST PIERRE DE PLESGUEN", "code_postal": "35720", "coordonnees_gps": [48.4351031296, -1.88770006407], "code_commune_insee": "35308"}, "geometry": {"type": "Point", "coordinates": [-1.88770006407, 48.4351031296]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a6c0894b2754280dbedd394cb06edd867637b50", "fields": {"nom_de_la_commune": "ST SEGLIN", "libell_d_acheminement": "ST SEGLIN", "code_postal": "35330", "coordonnees_gps": [47.9061092549, -2.00014348088], "code_commune_insee": "35311"}, "geometry": {"type": "Point", "coordinates": [-2.00014348088, 47.9061092549]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d24f1324d9f3d0742116bae36cd056ab496473b4", "fields": {"nom_de_la_commune": "ST THUAL", "libell_d_acheminement": "ST THUAL", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35318"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9d3a310ad369ab2bc91b2ef8eebaaf8e961f3e", "fields": {"nom_de_la_commune": "ST UNIAC", "libell_d_acheminement": "ST UNIAC", "code_postal": "35360", "coordonnees_gps": [48.2178300809, -2.05491742866], "code_commune_insee": "35320"}, "geometry": {"type": "Point", "coordinates": [-2.05491742866, 48.2178300809]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d373c09c51757957d0a27826c640020625ca153", "fields": {"nom_de_la_commune": "TORCE", "libell_d_acheminement": "TORCE", "code_postal": "35370", "coordonnees_gps": [48.0412447501, -1.13572410933], "code_commune_insee": "35338"}, "geometry": {"type": "Point", "coordinates": [-1.13572410933, 48.0412447501]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cdbc2ab63f1b44516886b060dda064639fce916", "fields": {"nom_de_la_commune": "TREMEHEUC", "libell_d_acheminement": "TREMEHEUC", "code_postal": "35270", "coordonnees_gps": [48.4259978711, -1.74339447631], "code_commune_insee": "35342"}, "geometry": {"type": "Point", "coordinates": [-1.74339447631, 48.4259978711]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3962319de409e067528dc5f90d55eb27e79cb9e", "fields": {"nom_de_la_commune": "TRESBOEUF", "libell_d_acheminement": "TRESBOEUF", "code_postal": "35320", "coordonnees_gps": [47.8914112869, -1.58820305317], "code_commune_insee": "35343"}, "geometry": {"type": "Point", "coordinates": [-1.58820305317, 47.8914112869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e81cbbf369157e9bbe6949767cf9db45076e3dfb", "fields": {"nom_de_la_commune": "TRIMER", "libell_d_acheminement": "TRIMER", "code_postal": "35190", "coordonnees_gps": [48.3291947532, -1.88500769745], "code_commune_insee": "35346"}, "geometry": {"type": "Point", "coordinates": [-1.88500769745, 48.3291947532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6de2c9197e1dc51aef95d49e6f29378d8a3c3b83", "fields": {"nom_de_la_commune": "VISSEICHE", "libell_d_acheminement": "VISSEICHE", "code_postal": "35130", "coordonnees_gps": [47.9291638773, -1.23675926548], "code_commune_insee": "35359"}, "geometry": {"type": "Point", "coordinates": [-1.23675926548, 47.9291638773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "204619153ee9b82485278e287d2a8bac47b68163", "fields": {"nom_de_la_commune": "LE VIVIER SUR MER", "libell_d_acheminement": "LE VIVIER SUR MER", "code_postal": "35960", "coordonnees_gps": [48.5973022539, -1.78118761404], "code_commune_insee": "35361"}, "geometry": {"type": "Point", "coordinates": [-1.78118761404, 48.5973022539]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57e4de7147116d32cae553522d7a993c951a4b87", "fields": {"nom_de_la_commune": "LE TRONCHET", "libell_d_acheminement": "LE TRONCHET", "code_postal": "35540", "coordonnees_gps": [48.5204175583, -1.86964225248], "code_commune_insee": "35362"}, "geometry": {"type": "Point", "coordinates": [-1.86964225248, 48.5204175583]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e52ff99de8867a79dbf72f4e1d10f8909584f48", "fields": {"nom_de_la_commune": "AIZE", "libell_d_acheminement": "AIZE", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36002"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b6bb9e30308db712f23088e2017a3a473be0231", "fields": {"nom_de_la_commune": "ARPHEUILLES", "libell_d_acheminement": "ARPHEUILLES", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36008"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db10b6914fd0de77730305b367dbde25137be391", "fields": {"nom_de_la_commune": "LE BLANC", "libell_d_acheminement": "LE BLANC", "code_postal": "36300", "coordonnees_gps": [46.6565173034, 1.1363634764], "code_commune_insee": "36018"}, "geometry": {"type": "Point", "coordinates": [1.1363634764, 46.6565173034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f70309ddd7e579da5a949e7dc4aa8b24be88fa01", "fields": {"nom_de_la_commune": "BOUGES LE CHATEAU", "libell_d_acheminement": "BOUGES LE CHATEAU", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36023"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "272780073779c25d53ec4b1d243e6a8e9ccf0db3", "fields": {"nom_de_la_commune": "BRION", "libell_d_acheminement": "BRION", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36026"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cb30dfe0f41b9bcfdd84cc156d949c9ae7abb0f", "fields": {"nom_de_la_commune": "CEAULMONT", "libell_d_acheminement": "CEAULMONT", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36032"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b4831905de1874f0eec9f691232eb33f0831f8", "fields": {"nom_de_la_commune": "CHATILLON SUR INDRE", "libell_d_acheminement": "CHATILLON SUR INDRE", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36045"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "daea37cf4c861d7b3ee3a85b5f543827b1d1b132", "fields": {"nom_de_la_commune": "CLUIS", "libell_d_acheminement": "CLUIS", "code_postal": "36340", "coordonnees_gps": [46.5585963926, 1.71639190639], "code_commune_insee": "36056"}, "geometry": {"type": "Point", "coordinates": [1.71639190639, 46.5585963926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b3aebe1024f4199ed42260e12e439eafa5fd4a", "fields": {"nom_de_la_commune": "CONDE", "libell_d_acheminement": "CONDE", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36059"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a237162a7239d14789583f04a7f7f421fc84295a", "fields": {"nom_de_la_commune": "DUNET", "libell_d_acheminement": "DUNET", "code_postal": "36310", "coordonnees_gps": [46.4191119953, 1.27433988132], "code_commune_insee": "36067"}, "geometry": {"type": "Point", "coordinates": [1.27433988132, 46.4191119953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae2c45f45dd9f58a6b6f0ba82775b5326eb537c4", "fields": {"nom_de_la_commune": "DUN LE POELIER", "libell_d_acheminement": "DUN LE POELIER", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36068"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08175146afc085de30fb02b108d2dc8dabf20cc2", "fields": {"nom_de_la_commune": "FAVEROLLES", "libell_d_acheminement": "FAVEROLLES", "code_postal": "36360", "coordonnees_gps": [47.137029518, 1.41123831497], "code_commune_insee": "36072"}, "geometry": {"type": "Point", "coordinates": [1.41123831497, 47.137029518]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5860239dbd67f331494785642aeabd2a29e3b228", "fields": {"nom_de_la_commune": "FEUSINES", "libell_d_acheminement": "FEUSINES", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36073"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ac95b99ae95b62c8d1b43ced109fa6717a6e312", "fields": {"nom_de_la_commune": "FLERE LA RIVIERE", "libell_d_acheminement": "FLERE LA RIVIERE", "code_postal": "36700", "coordonnees_gps": [46.9624510151, 1.17996576787], "code_commune_insee": "36074"}, "geometry": {"type": "Point", "coordinates": [1.17996576787, 46.9624510151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "790c5050de7ffac4cea3c9c0cf73cee7947ecb7c", "fields": {"nom_de_la_commune": "LINGE", "libell_d_acheminement": "LINGE", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36096"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df06a4442b7ca9f493d7767660d2d2a31be513e2", "fields": {"nom_de_la_commune": "LUCAY LE LIBRE", "libell_d_acheminement": "LUCAY LE LIBRE", "code_postal": "36150", "coordonnees_gps": [47.0676176458, 1.79667338004], "code_commune_insee": "36102"}, "geometry": {"type": "Point", "coordinates": [1.79667338004, 47.0676176458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76fbef46a5beb2a87fb0eba9a1c4f92dbd200fe1", "fields": {"nom_de_la_commune": "LUREUIL", "libell_d_acheminement": "LUREUIL", "code_postal": "36220", "coordonnees_gps": [46.7243589568, 1.00461794706], "code_commune_insee": "36105"}, "geometry": {"type": "Point", "coordinates": [1.00461794706, 46.7243589568]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d76986227595c924d1134ee8d1548523065bc97d", "fields": {"nom_de_la_commune": "LUZERET", "libell_d_acheminement": "LUZERET", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36106"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "482bee197ac83fae965ef86edc3e6f1e4edf676d", "fields": {"nom_de_la_commune": "LE MAGNY", "libell_d_acheminement": "LE MAGNY", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36109"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a17fb7174d8d6bfcee30d5c58aa2068f04d08582", "fields": {"nom_de_la_commune": "MENETOU SUR NAHON", "libell_d_acheminement": "MENETOU SUR NAHON", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36115"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8570da0cc4548403eaebc41ca94c6c190e7a24bf", "fields": {"nom_de_la_commune": "LE MENOUX", "libell_d_acheminement": "LE MENOUX", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36117"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bfbe06a3d5b211782ab86ff8370b1977326ef70", "fields": {"nom_de_la_commune": "MEZIERES EN BRENNE", "libell_d_acheminement": "MEZIERES EN BRENNE", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36123"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b34c31388e47f266f79fe70e59e378a69cb1ac8a", "fields": {"nom_de_la_commune": "MONTGIVRAY", "libell_d_acheminement": "MONTGIVRAY", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36127"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38ddb9c4517c0ef3258c7bcac5e7806f17e80de2", "fields": {"nom_de_la_commune": "MOSNAY", "libell_d_acheminement": "MOSNAY", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36131"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e9d34fc03d4bd9cfcfe40c8943b0900476ea4b3", "fields": {"nom_de_la_commune": "NEUVY ST SEPULCHRE", "libell_d_acheminement": "NEUVY ST SEPULCHRE", "code_postal": "36230", "coordonnees_gps": [46.6050332155, 1.83794462668], "code_commune_insee": "36141"}, "geometry": {"type": "Point", "coordinates": [1.83794462668, 46.6050332155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f34bd5e3249ef221d3ead4cac6cddf3e6a2af78", "fields": {"nom_de_la_commune": "NIHERNE", "libell_d_acheminement": "NIHERNE", "code_postal": "36250", "coordonnees_gps": [46.7938326835, 1.59829810404], "code_commune_insee": "36142"}, "geometry": {"type": "Point", "coordinates": [1.59829810404, 46.7938326835]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3ffbee823ad773f1ea9974fe5b6455299f211e", "fields": {"nom_de_la_commune": "ORVILLE", "libell_d_acheminement": "ORVILLE", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36147"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cccdcfb7bb4b687e52700df362cf026f6886b69", "fields": {"nom_de_la_commune": "LE PECHEREAU", "libell_d_acheminement": "LE PECHEREAU", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36154"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcc9daf1108e609588d251afd567f7c765a75eef", "fields": {"nom_de_la_commune": "PELLEVOISIN", "libell_d_acheminement": "PELLEVOISIN", "code_postal": "36180", "coordonnees_gps": [47.01148929, 1.41025324339], "code_commune_insee": "36155"}, "geometry": {"type": "Point", "coordinates": [1.41025324339, 47.01148929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bae0cb36e75df51593a46e0d740d183bd6897d9e", "fields": {"nom_de_la_commune": "LA PEROUILLE", "libell_d_acheminement": "LA PEROUILLE", "code_postal": "36350", "coordonnees_gps": [46.720531376, 1.54304656727], "code_commune_insee": "36157"}, "geometry": {"type": "Point", "coordinates": [1.54304656727, 46.720531376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b020b9bfbcd0e29880c3eadc980d3dc532148bc", "fields": {"nom_de_la_commune": "POMMIERS", "libell_d_acheminement": "POMMIERS", "code_postal": "36190", "coordonnees_gps": [46.4729615786, 1.65897045592], "code_commune_insee": "36160"}, "geometry": {"type": "Point", "coordinates": [1.65897045592, 46.4729615786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac974f8d5e0942ddb01fe395824bc2d91af47f52", "fields": {"nom_de_la_commune": "POULAINES", "libell_d_acheminement": "POULAINES", "code_postal": "36210", "coordonnees_gps": [47.1964381478, 1.69756497046], "code_commune_insee": "36162"}, "geometry": {"type": "Point", "coordinates": [1.69756497046, 47.1964381478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db2de8fdbe11fb7af956665159cbb38d228f17b7", "fields": {"nom_de_la_commune": "POULIGNY NOTRE DAME", "libell_d_acheminement": "POULIGNY NOTRE DAME", "code_postal": "36160", "coordonnees_gps": [46.4858290866, 2.08252960228], "code_commune_insee": "36163"}, "geometry": {"type": "Point", "coordinates": [2.08252960228, 46.4858290866]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01fc5e3dbf01ffafb80331ea58a4af9b939bca47", "fields": {"nom_de_la_commune": "PREAUX", "libell_d_acheminement": "PREAUX", "code_postal": "36240", "coordonnees_gps": [47.0498995034, 1.38071317224], "code_commune_insee": "36166"}, "geometry": {"type": "Point", "coordinates": [1.38071317224, 47.0498995034]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc52b9380d79e9f922e3ecc2dfe8a0da98a58740", "fields": {"nom_de_la_commune": "PRUNIERS", "libell_d_acheminement": "PRUNIERS", "code_postal": "36120", "coordonnees_gps": [46.7523359332, 1.90872757852], "code_commune_insee": "36169"}, "geometry": {"type": "Point", "coordinates": [1.90872757852, 46.7523359332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c25067094b32cdad15925ec695f97c04828d504e", "fields": {"nom_de_la_commune": "RIVARENNES", "libell_d_acheminement": "RIVARENNES", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36172"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d13c6756c4dc603f843e78395d3d2ebba02da2ca", "fields": {"nom_de_la_commune": "SACIERGES ST MARTIN", "libell_d_acheminement": "SACIERGES ST MARTIN", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36177"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "633445ee54f78ca5189babffbc43a07d5017438c", "fields": {"nom_de_la_commune": "ST CIVRAN", "libell_d_acheminement": "ST CIVRAN", "code_postal": "36170", "coordonnees_gps": [46.4602906309, 1.42619618028], "code_commune_insee": "36187"}, "geometry": {"type": "Point", "coordinates": [1.42619618028, 46.4602906309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "181b48c09b20f86c52ea42d216407b3d018fe880", "fields": {"nom_de_la_commune": "ST MARCEL", "libell_d_acheminement": "ST MARCEL", "code_postal": "36200", "coordonnees_gps": [46.5948088664, 1.57301511], "code_commune_insee": "36200"}, "geometry": {"type": "Point", "coordinates": [1.57301511, 46.5948088664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "80ecd49d50ce753583cebf5737d88c38046bbba3", "fields": {"nom_de_la_commune": "ST MICHEL EN BRENNE", "libell_d_acheminement": "ST MICHEL EN BRENNE", "code_postal": "36290", "coordonnees_gps": [46.8406295899, 1.16788639724], "code_commune_insee": "36204"}, "geometry": {"type": "Point", "coordinates": [1.16788639724, 46.8406295899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04932d80ce27933cf43d312082e5abc23883bbbc", "fields": {"nom_de_la_commune": "ST PIERRE DE JARDS", "libell_d_acheminement": "ST PIERRE DE JARDS", "code_postal": "36260", "coordonnees_gps": [47.0476254931, 1.98508496225], "code_commune_insee": "36205"}, "geometry": {"type": "Point", "coordinates": [1.98508496225, 47.0476254931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcfbecc67300d1214fb7afed7c70804d1365d771", "fields": {"nom_de_la_commune": "ST PLANTAIRE", "libell_d_acheminement": "ST PLANTAIRE", "code_postal": "36190", "coordonnees_gps": [46.4729615786, 1.65897045592], "code_commune_insee": "36207"}, "geometry": {"type": "Point", "coordinates": [1.65897045592, 46.4729615786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9e8e5674c6797d9798a112b3118779cd8773d5f", "fields": {"nom_de_la_commune": "THENAY", "libell_d_acheminement": "THENAY", "code_postal": "36800", "coordonnees_gps": [46.6443366234, 1.38125617039], "code_commune_insee": "36220"}, "geometry": {"type": "Point", "coordinates": [1.38125617039, 46.6443366234]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e5fea935293359d992e8438bd186078d2dd00c8", "fields": {"nom_de_la_commune": "THIZAY", "libell_d_acheminement": "THIZAY", "code_postal": "36100", "coordonnees_gps": [46.9136389585, 1.94621572465], "code_commune_insee": "36222"}, "geometry": {"type": "Point", "coordinates": [1.94621572465, 46.9136389585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d908794596cca830b3b50c3e48f094b79d1d9c0", "fields": {"nom_de_la_commune": "VERNEUIL SUR IGNERAIE", "libell_d_acheminement": "VERNEUIL SUR IGNERAIE", "code_postal": "36400", "coordonnees_gps": [46.617388084, 2.03841193253], "code_commune_insee": "36234"}, "geometry": {"type": "Point", "coordinates": [2.03841193253, 46.617388084]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ddaba2785c8cd584d516895352b7908915f0114e", "fields": {"nom_de_la_commune": "VILLEDIEU SUR INDRE", "libell_d_acheminement": "VILLEDIEU SUR INDRE", "code_postal": "36320", "coordonnees_gps": [46.8445939544, 1.51594825068], "code_commune_insee": "36241"}, "geometry": {"type": "Point", "coordinates": [1.51594825068, 46.8445939544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b0f2b17f7d1ed68152fcd094fbd9464b535513f", "fields": {"nom_de_la_commune": "VILLEGONGIS", "libell_d_acheminement": "VILLEGONGIS", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36242"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40efad6fbcd045523452f5161b3da6f80800f944", "fields": {"nom_de_la_commune": "VILLENTROIS", "libell_d_acheminement": "VILLENTROIS", "code_postal": "36600", "coordonnees_gps": [47.1568919133, 1.52426056612], "code_commune_insee": "36244"}, "geometry": {"type": "Point", "coordinates": [1.52426056612, 47.1568919133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e80ddfc04802c9aba32827afcde6e7e35a9bdf95", "fields": {"nom_de_la_commune": "VINEUIL", "libell_d_acheminement": "VINEUIL", "code_postal": "36110", "coordonnees_gps": [46.9845451147, 1.63646999147], "code_commune_insee": "36247"}, "geometry": {"type": "Point", "coordinates": [1.63646999147, 46.9845451147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2651e3b75507a71f95c438c0132760cd44bb0d7", "fields": {"nom_de_la_commune": "ANCHE", "libell_d_acheminement": "ANCHE", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37004"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25012e91aa4bbde022f0c778b5158c7bffd4d6c7", "fields": {"nom_de_la_commune": "ASSAY", "libell_d_acheminement": "ASSAY", "code_postal": "37120", "coordonnees_gps": [47.0140826731, 0.387121716684], "code_commune_insee": "37007"}, "geometry": {"type": "Point", "coordinates": [0.387121716684, 47.0140826731]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05d2e22a325a29e1164a965fd159574f5869c88f", "fields": {"nom_de_la_commune": "AZAY SUR CHER", "libell_d_acheminement": "AZAY SUR CHER", "code_postal": "37270", "coordonnees_gps": [47.3461148739, 0.860028356093], "code_commune_insee": "37015"}, "geometry": {"type": "Point", "coordinates": [0.860028356093, 47.3461148739]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0e6cb67e0496a96cce7183bb28ba269ad7d87b", "fields": {"nom_de_la_commune": "BALLAN MIRE", "libell_d_acheminement": "BALLAN MIRE", "code_postal": "37510", "coordonnees_gps": [47.3427710301, 0.558059242204], "code_commune_insee": "37018"}, "geometry": {"type": "Point", "coordinates": [0.558059242204, 47.3427710301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e163383fb2c8100611adcb650a3a50f56b3bc68", "fields": {"nom_de_la_commune": "BRAYE SUR MAULNE", "libell_d_acheminement": "BRAYE SUR MAULNE", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37036"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8619bf4b6f5924cf9375b5133d3d73a08d8aa21", "fields": {"nom_de_la_commune": "BRIDORE", "libell_d_acheminement": "BRIDORE", "code_postal": "37600", "coordonnees_gps": [47.0649257863, 1.01165256917], "code_commune_insee": "37039"}, "geometry": {"type": "Point", "coordinates": [1.01165256917, 47.0649257863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a27ab875ef1351628928e99456d5849753719a7", "fields": {"nom_de_la_commune": "BRIZAY", "libell_d_acheminement": "BRIZAY", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37040"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d2aae3a3cac0cad5e93ff5a040966c86eb2b9e", "fields": {"nom_de_la_commune": "LA CELLE ST AVANT", "libell_d_acheminement": "LA CELLE ST AVANT", "code_postal": "37160", "coordonnees_gps": [46.9873007898, 0.703165744937], "code_commune_insee": "37045"}, "geometry": {"type": "Point", "coordinates": [0.703165744937, 46.9873007898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d8241c3f43561cbce1c6a2a40e9855820813495", "fields": {"nom_de_la_commune": "LA CHAPELLE AUX NAUX", "libell_d_acheminement": "LA CHAPELLE AUX NAUX", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37056"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4dc500b668c9cbebc2a2f0fadbc819af29da39ae", "fields": {"nom_de_la_commune": "CHEMILLE SUR DEME", "libell_d_acheminement": "CHEMILLE SUR DEME", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37068"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8892c0734abef2b49c60460440c9e9a774dbecb", "fields": {"nom_de_la_commune": "CHINON", "libell_d_acheminement": "CHINON", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37072"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "05e26135b08ad6f9a8b5b242a812c71de4828c7b", "fields": {"nom_de_la_commune": "CINAIS", "libell_d_acheminement": "CINAIS", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37076"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de7ebc7ce9b1623d1bae1704773e9ea4568989db", "fields": {"nom_de_la_commune": "CIRAN", "libell_d_acheminement": "CIRAN", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37078"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2e4cd278a4034ffccbaa02434f5903a6171a775", "fields": {"nom_de_la_commune": "CIVRAY DE TOURAINE", "libell_d_acheminement": "CIVRAY DE TOURAINE", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37079"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6478a89347ff2fb6c66f72f4571b4d7ea014d8f", "fields": {"nom_de_la_commune": "CORMERY", "libell_d_acheminement": "CORMERY", "code_postal": "37320", "coordonnees_gps": [47.2468353824, 0.78075583867], "code_commune_insee": "37083"}, "geometry": {"type": "Point", "coordinates": [0.78075583867, 47.2468353824]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0d654e7811e134437a8ec1610105fe1d9b4cdcd", "fields": {"nom_de_la_commune": "COURCAY", "libell_d_acheminement": "COURCAY", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37085"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a48538a7a57adfbcf7dc2a1df671d57a3316952", "fields": {"nom_de_la_commune": "EPEIGNE LES BOIS", "libell_d_acheminement": "EPEIGNE LES BOIS", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37100"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d6f2207525ccb08acb7cf3c2f23fb2f3dd15031", "fields": {"nom_de_la_commune": "FRANCUEIL", "libell_d_acheminement": "FRANCUEIL", "code_postal": "37150", "coordonnees_gps": [47.3095823031, 1.04140977121], "code_commune_insee": "37110"}, "geometry": {"type": "Point", "coordinates": [1.04140977121, 47.3095823031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c147f8bb6aacaae89ba248ab9ce1d7613403998e", "fields": {"nom_de_la_commune": "L ILE BOUCHARD", "libell_d_acheminement": "L ILE BOUCHARD", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37119"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e460c1badc72c8191ad22226e06376fc878158e6", "fields": {"nom_de_la_commune": "VALLE D ALESANI", "libell_d_acheminement": "VALLE D ALESANI", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B334"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9b38b00d27a7f671d75b5539e34ddbbe6be9515", "fields": {"nom_de_la_commune": "VALLE DI ROSTINO", "libell_d_acheminement": "VALLE DI ROSTINO", "code_postal": "20235", "coordonnees_gps": [42.4832385905, 9.2653892014], "code_commune_insee": "2B337"}, "geometry": {"type": "Point", "coordinates": [9.2653892014, 42.4832385905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdd64bb7cfa2b8481f89724a11d3ba223b516f45", "fields": {"code_postal": "20240", "code_commune_insee": "2B342", "libell_d_acheminement": "VENTISERI", "ligne_5": "MIGNATAJA", "nom_de_la_commune": "VENTISERI", "coordonnees_gps": [41.9691281261, 9.34452761596]}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c1477b969424ef1d3ba826fc137b9e08c6b6119", "fields": {"code_postal": "20240", "code_commune_insee": "2B342", "libell_d_acheminement": "VENTISERI", "ligne_5": "TRAVO", "nom_de_la_commune": "VENTISERI", "coordonnees_gps": [41.9691281261, 9.34452761596]}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31ed50765fdd23e5fe54944f82733ea1475780ad", "fields": {"nom_de_la_commune": "VENZOLASCA", "libell_d_acheminement": "VENZOLASCA", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B343"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "500e92237d25193ec38acdef9322888fccee98f4", "fields": {"nom_de_la_commune": "VESCOVATO", "libell_d_acheminement": "VESCOVATO", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B346"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1512a93a33376ac5b771a6eb696ac308acd5354e", "fields": {"nom_de_la_commune": "VIGNALE", "libell_d_acheminement": "VIGNALE", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B350"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7a4d0530b058309a8b153bb31ecdd9d15a0bf9a", "fields": {"code_postal": "20219", "code_commune_insee": "2B354", "libell_d_acheminement": "VIVARIO", "ligne_5": "VIZZAVONA", "nom_de_la_commune": "VIVARIO", "coordonnees_gps": [42.1546750022, 9.13106391385]}, "geometry": {"type": "Point", "coordinates": [9.13106391385, 42.1546750022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40bc21c5b22daad8b788514cb9bd430e1e6d6543", "fields": {"nom_de_la_commune": "CHAUSSOY EPAGNY", "libell_d_acheminement": "CHAUSSOY EPAGNY", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80188"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c17c19731e60e6929198d261bbff58be974020e5", "fields": {"nom_de_la_commune": "CHUIGNES", "libell_d_acheminement": "CHUIGNES", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80194"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d31d5c8bd65d621cf0bc470452146e37b134dbf3", "fields": {"nom_de_la_commune": "CIZANCOURT", "libell_d_acheminement": "CIZANCOURT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80197"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21b433ddfefc0df2a611b1e15cb84eb5a297a521", "fields": {"nom_de_la_commune": "CLERY SUR SOMME", "libell_d_acheminement": "CLERY SUR SOMME", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80199"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "396c96657eef337e72a879b1a451165110325a49", "fields": {"nom_de_la_commune": "COCQUEREL", "libell_d_acheminement": "COCQUEREL", "code_postal": "80510", "coordonnees_gps": [50.0330637089, 1.96398779446], "code_commune_insee": "80200"}, "geometry": {"type": "Point", "coordinates": [1.96398779446, 50.0330637089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9734a72418b19b17539deec9cf93d688bd2997df", "fields": {"nom_de_la_commune": "CONDE FOLIE", "libell_d_acheminement": "CONDE FOLIE", "code_postal": "80890", "coordonnees_gps": [50.0032537045, 2.02227175079], "code_commune_insee": "80205"}, "geometry": {"type": "Point", "coordinates": [2.02227175079, 50.0032537045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4cd70f8d524002e6a9cf04db85a77db8c982247", "fields": {"nom_de_la_commune": "CONTALMAISON", "libell_d_acheminement": "CONTALMAISON", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80206"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cff582a982ed4a329fc66cf4e4430f04c92249d8", "fields": {"nom_de_la_commune": "CONTRE", "libell_d_acheminement": "CONTRE", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80210"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7c2987220c6869a82b9731bb8f9b3e2dafbf9e4", "fields": {"nom_de_la_commune": "CONTY", "libell_d_acheminement": "CONTY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80211"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07285a5a95462048ef7ccc6c9b00d91796b96484", "fields": {"nom_de_la_commune": "COURCELLES SOUS MOYENCOURT", "libell_d_acheminement": "COURCELLES SOUS MOYENCOURT", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80218"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44821a4b6e6cbca1ddc6aeb7a64530542b7ac130", "fields": {"nom_de_la_commune": "COURCELLES SOUS THOIX", "libell_d_acheminement": "COURCELLES SOUS THOIX", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80219"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0a3326b97b9d7b8a2733e4c6641667b3b361294", "fields": {"code_postal": "80190", "code_commune_insee": "80230", "libell_d_acheminement": "CURCHY", "ligne_5": "MANICOURT", "nom_de_la_commune": "CURCHY", "coordonnees_gps": [49.7735190405, 2.91598423819]}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af0fdb3fc6fd32b29144f7a1e7d21c74bf5da335", "fields": {"nom_de_la_commune": "CURLU", "libell_d_acheminement": "CURLU", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80231"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce0b311f8dd924a6971ddf1c02805794afd9868", "fields": {"nom_de_la_commune": "DAMERY", "libell_d_acheminement": "DAMERY", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80232"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb91ba106e57f022fb9b1ef4bf27e924fd348078", "fields": {"nom_de_la_commune": "DAOURS", "libell_d_acheminement": "DAOURS", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80234"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25fe32cce76661795d260bd50c37f8f3cd3962c9", "fields": {"nom_de_la_commune": "DARGNIES", "libell_d_acheminement": "DARGNIES", "code_postal": "80570", "coordonnees_gps": [50.0369511716, 1.54351875131], "code_commune_insee": "80235"}, "geometry": {"type": "Point", "coordinates": [1.54351875131, 50.0369511716]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18fc5572905d70bd39af18b42a59376a662175f2", "fields": {"nom_de_la_commune": "DAVENESCOURT", "libell_d_acheminement": "DAVENESCOURT", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80236"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c12380eb12dd229768ad3dd579c6c620848eb6eb", "fields": {"nom_de_la_commune": "DOMART EN PONTHIEU", "libell_d_acheminement": "DOMART EN PONTHIEU", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80241"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0bdd227fe770122e90e060ede13501213cc1eab", "fields": {"nom_de_la_commune": "DOMPIERRE SUR AUTHIE", "libell_d_acheminement": "DOMPIERRE SUR AUTHIE", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80248"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28ee0f2687bb4a3c0434ab08f2834c0d3b8bb294", "fields": {"nom_de_la_commune": "DOMVAST", "libell_d_acheminement": "DOMVAST", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80250"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f528c0e0a7522793ae171a4fb35c4633dbb6d1e", "fields": {"nom_de_la_commune": "DOUDELAINVILLE", "libell_d_acheminement": "DOUDELAINVILLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80251"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e50881a1d2a8039fefb58d3c6a175a24eafb15", "fields": {"nom_de_la_commune": "EPAUMESNIL", "libell_d_acheminement": "EPAUMESNIL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80269"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b01795d43a23561d953daebd15cd746e123681e7", "fields": {"nom_de_la_commune": "EPECAMPS", "libell_d_acheminement": "EPECAMPS", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80270"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61cc0427bce714a91f0791f0c71a271cc36a634b", "fields": {"nom_de_la_commune": "EQUENNES ERAMECOURT", "libell_d_acheminement": "EQUENNES ERAMECOURT", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80276"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ab04e8ab6ba39b913c2e3cd696d57df39c71620", "fields": {"nom_de_la_commune": "ERCOURT", "libell_d_acheminement": "ERCOURT", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80280"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f2c4e3d6116e5e62bf15e530fa026f0bb569457", "fields": {"nom_de_la_commune": "ERONDELLE", "libell_d_acheminement": "ERONDELLE", "code_postal": "80580", "coordonnees_gps": [50.0580760392, 1.88626484435], "code_commune_insee": "80282"}, "geometry": {"type": "Point", "coordinates": [1.88626484435, 50.0580760392]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85609e84c2c9b9622b0148b777a393edaaacbe88", "fields": {"nom_de_la_commune": "ETERPIGNY", "libell_d_acheminement": "ETERPIGNY", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80294"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e4e6d969b7f9576001f8892180df4afe6b79c00", "fields": {"nom_de_la_commune": "ETINEHEM", "libell_d_acheminement": "ETINEHEM", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80295"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a66181961dfd68e45939636f9ea3cb5563f301b", "fields": {"nom_de_la_commune": "ETREJUST", "libell_d_acheminement": "ETREJUST", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80297"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87eb7701c96eaa443cbe4a838a83848523549bc1", "fields": {"nom_de_la_commune": "FESCAMPS", "libell_d_acheminement": "FESCAMPS", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80306"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b4adb0c12fb2e89745ccf5cd33de67c72d346d", "fields": {"nom_de_la_commune": "FIENVILLERS", "libell_d_acheminement": "FIENVILLERS", "code_postal": "80750", "coordonnees_gps": [50.1069765579, 2.26231827427], "code_commune_insee": "80310"}, "geometry": {"type": "Point", "coordinates": [2.26231827427, 50.1069765579]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6020d9bc477b7f7a13d07f59e22a9700965958d", "fields": {"nom_de_la_commune": "FLERS", "libell_d_acheminement": "FLERS", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80314"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3705b2cf2845c2ca63e300b6ced00ecde9c5f39", "fields": {"nom_de_la_commune": "FLIXECOURT", "libell_d_acheminement": "FLIXECOURT", "code_postal": "80420", "coordonnees_gps": [50.0231078641, 2.0845688682], "code_commune_insee": "80318"}, "geometry": {"type": "Point", "coordinates": [2.0845688682, 50.0231078641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "846eb03332501091d6dcb8c3a511ab0446f185c6", "fields": {"nom_de_la_commune": "FOUENCAMPS", "libell_d_acheminement": "FOUENCAMPS", "code_postal": "80440", "coordonnees_gps": [49.8341850031, 2.39954269272], "code_commune_insee": "80337"}, "geometry": {"type": "Point", "coordinates": [2.39954269272, 49.8341850031]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08d2dc516b1867f04a99e40ddbaf7221fe83cc20", "fields": {"nom_de_la_commune": "FRANSU", "libell_d_acheminement": "FRANSU", "code_postal": "80620", "coordonnees_gps": [50.0939221311, 2.1055965706], "code_commune_insee": "80348"}, "geometry": {"type": "Point", "coordinates": [2.1055965706, 50.0939221311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59485b58d986702f46d2cc06d341763c59a46f96", "fields": {"nom_de_la_commune": "FRESNES TILLOLOY", "libell_d_acheminement": "FRESNES TILLOLOY", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80354"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e9bcc85b555f54144ec01962d043ce45ca1e5969", "fields": {"nom_de_la_commune": "FRESNOY AU VAL", "libell_d_acheminement": "FRESNOY AU VAL", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80357"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "38f06c2fec96c891b02688c1dc1c03243e456abf", "fields": {"nom_de_la_commune": "FRESNOY EN CHAUSSEE", "libell_d_acheminement": "FRESNOY EN CHAUSSEE", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80358"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d737c22e086c1831913d2e1a36a8fc1ad527b0fa", "fields": {"nom_de_la_commune": "FRETTEMEULE", "libell_d_acheminement": "FRETTEMEULE", "code_postal": "80220", "coordonnees_gps": [49.991665642, 1.59571342525], "code_commune_insee": "80362"}, "geometry": {"type": "Point", "coordinates": [1.59571342525, 49.991665642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48ff32449bc96a3203c2b728aeb369b1634ccce5", "fields": {"nom_de_la_commune": "GAUVILLE", "libell_d_acheminement": "GAUVILLE", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80375"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64fa006e65b493394b594e8e1db07b7ddeb3867b", "fields": {"nom_de_la_commune": "GENTELLES", "libell_d_acheminement": "GENTELLES", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80376"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d1eaedb3ec1056e5d80955d765281af6f4885cd", "fields": {"nom_de_la_commune": "GEZAINCOURT", "libell_d_acheminement": "GEZAINCOURT", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80377"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a1c43a0feecf2921ca621a2e886e68a5ed30f23f", "fields": {"nom_de_la_commune": "HALLU", "libell_d_acheminement": "HALLU", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80409"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a097ffc19b5827be5866208279007e8411923f6a", "fields": {"nom_de_la_commune": "HANCOURT", "libell_d_acheminement": "HANCOURT", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80413"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97033084ebb9f275a3564b5a64350eff6993f5d0", "fields": {"nom_de_la_commune": "HERLY", "libell_d_acheminement": "HERLY", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80433"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4f91c4d95f7e17249921d48e1bef4e188bd2f74", "fields": {"nom_de_la_commune": "HERVILLY", "libell_d_acheminement": "HERVILLY", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80434"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b2cfdd5e4f71483f0949f93596686371a08c3a", "fields": {"nom_de_la_commune": "HESBECOURT", "libell_d_acheminement": "HESBECOURT", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80435"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c3e0855fc02d6f051411dea8f2139b4d5d4c48", "fields": {"nom_de_la_commune": "HEUCOURT CROQUOISON", "libell_d_acheminement": "HEUCOURT CROQUOISON", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80437"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c454b56aea9c2886dff0cec0ee21570075f8aa8b", "fields": {"nom_de_la_commune": "HORNOY LE BOURG", "libell_d_acheminement": "HORNOY LE BOURG", "code_postal": "80640", "coordonnees_gps": [49.8459420737, 1.9103382201], "code_commune_insee": "80443"}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d49bdb69af2a090f922d53f36604dadc57d47c3f", "fields": {"code_postal": "80640", "code_commune_insee": "80443", "libell_d_acheminement": "HORNOY LE BOURG", "ligne_5": "ORIVAL", "nom_de_la_commune": "HORNOY LE BOURG", "coordonnees_gps": [49.8459420737, 1.9103382201]}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb03ac26c9d36ccd89dea04ea4fe6fb456f1f3fb", "fields": {"code_postal": "80640", "code_commune_insee": "80443", "libell_d_acheminement": "HORNOY LE BOURG", "ligne_5": "TRONCHOY", "nom_de_la_commune": "HORNOY LE BOURG", "coordonnees_gps": [49.8459420737, 1.9103382201]}, "geometry": {"type": "Point", "coordinates": [1.9103382201, 49.8459420737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0a2764724968bbeec1d231b9a275849b5b090ef", "fields": {"nom_de_la_commune": "INVAL BOIRON", "libell_d_acheminement": "INVAL BOIRON", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80450"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a42e569a755326a49d940942607eb5cb2a0b2ca", "fields": {"nom_de_la_commune": "LABOISSIERE EN SANTERRE", "libell_d_acheminement": "LABOISSIERE EN SANTERRE", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80453"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7119802c9413cd5f64623cabe16d199bb0c1a94", "fields": {"nom_de_la_commune": "LAFRESGUIMONT ST MARTIN", "libell_d_acheminement": "LAFRESGUIMONT ST MARTIN", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80456"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f084c9eb1b811508922d0b353fc9660aadb2ccd", "fields": {"code_postal": "80430", "code_commune_insee": "80456", "libell_d_acheminement": "LAFRESGUIMONT ST MARTIN", "ligne_5": "LABOISSIERE ST MARTIN", "nom_de_la_commune": "LAFRESGUIMONT ST MARTIN", "coordonnees_gps": [49.8385398523, 1.78216116421]}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06c75b3247c6831f0168b5e8cec77d0f68823889", "fields": {"code_postal": "80800", "code_commune_insee": "80463", "libell_d_acheminement": "LAMOTTE WARFUSEE", "ligne_5": "WARFUSEE ABANCOURT", "nom_de_la_commune": "LAMOTTE WARFUSEE", "coordonnees_gps": [49.9016470659, 2.53555403839]}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a09ad967b79bcad574d148f5c9dda6975cfde4c", "fields": {"nom_de_la_commune": "LANCHERES", "libell_d_acheminement": "LANCHERES", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80464"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "096412a17f8cfacdcf0bfd37fca613de892798cf", "fields": {"nom_de_la_commune": "LANGUEVOISIN QUIQUERY", "libell_d_acheminement": "LANGUEVOISIN QUIQUERY", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80465"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abedf6689fdffd02b6f9ff025f45b428c05b937c", "fields": {"nom_de_la_commune": "LAUCOURT", "libell_d_acheminement": "LAUCOURT", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80467"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55dbebdcca57f3f1d89d81ee7e0735be5497136c", "fields": {"nom_de_la_commune": "LAWARDE MAUGER L HORTOY", "libell_d_acheminement": "LAWARDE MAUGER L HORTOY", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80469"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b89b198efbf93b970c60c5a9e9b6fbc6d9f9c27", "fields": {"nom_de_la_commune": "LICOURT", "libell_d_acheminement": "LICOURT", "code_postal": "80320", "coordonnees_gps": [49.8236869472, 2.82486732688], "code_commune_insee": "80474"}, "geometry": {"type": "Point", "coordinates": [2.82486732688, 49.8236869472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c619af813e43d661e5586c8d3df541bd04de2604", "fields": {"nom_de_la_commune": "LOEUILLY", "libell_d_acheminement": "LOEUILLY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80485"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9434d736014f96de60b7838ba5c324243c194af", "fields": {"nom_de_la_commune": "LOUVENCOURT", "libell_d_acheminement": "LOUVENCOURT", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80493"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98ca9bad46e9a9ddaefc4c196522584c3b525f57", "fields": {"nom_de_la_commune": "MAILLY RAINEVAL", "libell_d_acheminement": "MAILLY RAINEVAL", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80499"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91e5c35cd1b25488b7b02fee9776bd75555eb281", "fields": {"nom_de_la_commune": "MARCHELEPOT", "libell_d_acheminement": "MARCHELEPOT", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80509"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8359788cb20ede7f23a93a8aa728c0129a6baa9d", "fields": {"nom_de_la_commune": "MARICOURT", "libell_d_acheminement": "MARICOURT", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80513"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "910899f7b6386afafa7ce1d5f2c40520face2c76", "fields": {"nom_de_la_commune": "MARTAINNEVILLE", "libell_d_acheminement": "MARTAINNEVILLE", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80518"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7b8500a116c27b34f75831f8d9e2ed23124eae8", "fields": {"nom_de_la_commune": "MAUCOURT", "libell_d_acheminement": "MAUCOURT", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80520"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "982948468efb76b0d000020e476bfddd2cf7e587", "fields": {"nom_de_la_commune": "MENESLIES", "libell_d_acheminement": "MENESLIES", "code_postal": "80520", "coordonnees_gps": [50.0605501817, 1.51862547548], "code_commune_insee": "80527"}, "geometry": {"type": "Point", "coordinates": [1.51862547548, 50.0605501817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1a6b4dfb76614490c06975b286bef514080a3c9", "fields": {"nom_de_la_commune": "MERELESSART", "libell_d_acheminement": "MERELESSART", "code_postal": "80490", "coordonnees_gps": [50.003393471, 1.8509393607], "code_commune_insee": "80529"}, "geometry": {"type": "Point", "coordinates": [1.8509393607, 50.003393471]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ac2dac7bcab070fff7992a2b47235e3839ec008", "fields": {"nom_de_la_commune": "MERICOURT SUR SOMME", "libell_d_acheminement": "MERICOURT SUR SOMME", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80532"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f1e2151060896fe6cde6e8dc88116dabeea45ec", "fields": {"nom_de_la_commune": "MESNIL BRUNTEL", "libell_d_acheminement": "MESNIL BRUNTEL", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80536"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b55876fb33fcfcadfdddd617e1ed0b876122d76", "fields": {"nom_de_la_commune": "MESNIL ST GEORGES", "libell_d_acheminement": "MESNIL ST GEORGES", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80541"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "019877cc7c132f9416695eece5ac2df402e6a64f", "fields": {"nom_de_la_commune": "MONS BOUBERT", "libell_d_acheminement": "MONS BOUBERT", "code_postal": "80210", "coordonnees_gps": [50.0686556532, 1.64992767032], "code_commune_insee": "80556"}, "geometry": {"type": "Point", "coordinates": [1.64992767032, 50.0686556532]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69a3226e76da2fcea4d28760676726a20495fada", "fields": {"code_postal": "80200", "code_commune_insee": "80557", "libell_d_acheminement": "ESTREES MONS", "ligne_5": "ESTREES EN CHAUSSEE", "nom_de_la_commune": "ESTREES MONS", "coordonnees_gps": [49.9092274559, 2.93799194086]}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "325287142cac80c36e35966a2ba6fdaa36cce33a", "fields": {"nom_de_la_commune": "MONTAUBAN DE PICARDIE", "libell_d_acheminement": "MONTAUBAN DE PICARDIE", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80560"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "759ceed4bfcdc5b84e000f5bdc6a66a61d1747db", "fields": {"nom_de_la_commune": "MONTDIDIER", "libell_d_acheminement": "MONTDIDIER", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80561"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff9164d32c29f6b0c64f00187beb21ddf6b2350e", "fields": {"nom_de_la_commune": "MONTIGNY SUR L HALLUE", "libell_d_acheminement": "MONTIGNY SUR L HALLUE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80562"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c04ee701c0ee3c8cb9216c32449979726168572", "fields": {"code_postal": "80670", "code_commune_insee": "80566", "libell_d_acheminement": "FIEFFES MONTRELET", "ligne_5": "FIEFFES", "nom_de_la_commune": "FIEFFES MONTRELET", "coordonnees_gps": [50.0646181987, 2.22461051282]}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1cdf2879aa03596746abb94b79e38b1eb31edd8", "fields": {"nom_de_la_commune": "MORCOURT", "libell_d_acheminement": "MORCOURT", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80569"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14e2d182d64df26eb71d095a336ee6c21251ff2d", "fields": {"nom_de_la_commune": "MORISEL", "libell_d_acheminement": "MORISEL", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80571"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9542d7e94254af234b5aa9f2537b7a5ecf02c1d5", "fields": {"code_postal": "80290", "code_commune_insee": "80573", "libell_d_acheminement": "MORVILLERS ST SATURNIN", "ligne_5": "DIGEON", "nom_de_la_commune": "MORVILLERS ST SATURNIN", "coordonnees_gps": [49.7720118421, 1.95186211928]}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdfe772d3ccc79f94e7d00a233b474a4812c0a3b", "fields": {"nom_de_la_commune": "NESLE L HOPITAL", "libell_d_acheminement": "NESLE L HOPITAL", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80586"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3037828bedeabae6ecc89f8223101ebae16604a", "fields": {"nom_de_la_commune": "NEUVILLE COPPEGUEULE", "libell_d_acheminement": "NEUVILLE COPPEGUEULE", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80592"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbdefd39f76581da0f691bb032feea1cc837458a", "fields": {"nom_de_la_commune": "NEUVILLE LES LOEUILLY", "libell_d_acheminement": "NEUVILLE LES LOEUILLY", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80594"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bebfc1db30c562576eacc0699d1e3f62806fe487", "fields": {"nom_de_la_commune": "LA NEUVILLE SIRE BERNARD", "libell_d_acheminement": "LA NEUVILLE SIRE BERNARD", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80595"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11bd0a6babd32b4080a4eb91df7d4c551b74d0c", "fields": {"nom_de_la_commune": "NIBAS", "libell_d_acheminement": "NIBAS", "code_postal": "80390", "coordonnees_gps": [50.081035948, 1.5796731248], "code_commune_insee": "80597"}, "geometry": {"type": "Point", "coordinates": [1.5796731248, 50.081035948]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d28ee6ad4118959140cbd75c91d3704ebb8401c7", "fields": {"nom_de_la_commune": "NURLU", "libell_d_acheminement": "NURLU", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80601"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2087bccef79dd5d353475fe5df9397283d84d275", "fields": {"nom_de_la_commune": "OFFOY", "libell_d_acheminement": "OFFOY", "code_postal": "80400", "coordonnees_gps": [49.7518016598, 3.01868119038], "code_commune_insee": "80605"}, "geometry": {"type": "Point", "coordinates": [3.01868119038, 49.7518016598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1a749f036381f6fb7fd78540933a393335169c", "fields": {"nom_de_la_commune": "OISSY", "libell_d_acheminement": "OISSY", "code_postal": "80540", "coordonnees_gps": [49.872686231, 2.06894684401], "code_commune_insee": "80607"}, "geometry": {"type": "Point", "coordinates": [2.06894684401, 49.872686231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ae9f3e5de913bcce7aab3fde44e4a45fbb783c6", "fields": {"nom_de_la_commune": "ORESMAUX", "libell_d_acheminement": "ORESMAUX", "code_postal": "80160", "coordonnees_gps": [49.7511512754, 2.16207996445], "code_commune_insee": "80611"}, "geometry": {"type": "Point", "coordinates": [2.16207996445, 49.7511512754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5464ecc091b44a7e7ded48f197a4169c56d8bfe", "fields": {"nom_de_la_commune": "PIERREGOT", "libell_d_acheminement": "PIERREGOT", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80624"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f2cbe3d02bb59b704e2e130e8448f756d02c0f5", "fields": {"nom_de_la_commune": "MONTJUSTIN", "libell_d_acheminement": "MONTJUSTIN", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04129"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92d90dc391637011fc2c010025735b5d0be58809", "fields": {"nom_de_la_commune": "MONTFURON", "libell_d_acheminement": "MONTFURON", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04128"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96f3f54ca7404e0325592455427bbaac9c5dd252", "fields": {"nom_de_la_commune": "MARCOUX", "libell_d_acheminement": "MARCOUX", "code_postal": "04420", "coordonnees_gps": [44.1915370123, 6.39634951994], "code_commune_insee": "04113"}, "geometry": {"type": "Point", "coordinates": [6.39634951994, 44.1915370123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2c938dca25117fec4046a4657bd93a4ec9b6748", "fields": {"nom_de_la_commune": "MORIEZ", "libell_d_acheminement": "MORIEZ", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04133"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47a7941d97e23dbd9ad25424fba5a5131117eaf2", "fields": {"nom_de_la_commune": "MISON", "libell_d_acheminement": "MISON", "code_postal": "04200", "coordonnees_gps": [44.2004441719, 5.9040305038], "code_commune_insee": "04123"}, "geometry": {"type": "Point", "coordinates": [5.9040305038, 44.2004441719]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e8be5360ccaa4401a88fbb6df6cd014d6d32064", "fields": {"nom_de_la_commune": "MOLINES EN QUEYRAS", "libell_d_acheminement": "MOLINES EN QUEYRAS", "code_postal": "05350", "coordonnees_gps": [44.7398415746, 6.81322835157], "code_commune_insee": "05077"}, "geometry": {"type": "Point", "coordinates": [6.81322835157, 44.7398415746]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f8f73d6e1facd2ed029a5fa4355c2ddbfe6fa94", "fields": {"nom_de_la_commune": "MONETIER ALLEMONT", "libell_d_acheminement": "MONETIER ALLEMONT", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "05078"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d347096f0c902dbac087181a28df82325aee307", "fields": {"nom_de_la_commune": "MONTMORIN", "libell_d_acheminement": "MONTMORIN", "code_postal": "05150", "coordonnees_gps": [44.4053296204, 5.53147838239], "code_commune_insee": "05088"}, "geometry": {"type": "Point", "coordinates": [5.53147838239, 44.4053296204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64aa09a147742aaa53b924b8be65adf5dae0ecfe", "fields": {"nom_de_la_commune": "MONTMAUR", "libell_d_acheminement": "MONTMAUR", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05087"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2dd2fdfe30eac0cfb60e4add1860df5610a05c", "fields": {"nom_de_la_commune": "LE NOYER", "libell_d_acheminement": "LE NOYER", "code_postal": "05500", "coordonnees_gps": [44.7016544828, 6.08603823073], "code_commune_insee": "05095"}, "geometry": {"type": "Point", "coordinates": [6.08603823073, 44.7016544828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6ea6628bdc499b6a03723b7b4bad64d30e6dd65", "fields": {"nom_de_la_commune": "MEREUIL", "libell_d_acheminement": "MEREUIL", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05076"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b12176b785c9be7ab8926b800079a7ffbb24c3c9", "fields": {"nom_de_la_commune": "LE POET", "libell_d_acheminement": "LE POET", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05103"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0512c7bd0400525973fdc858593560961ed0157e", "fields": {"nom_de_la_commune": "RABOU", "libell_d_acheminement": "RABOU", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05112"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a1df392fa646b34b1e93087698df246cc04bfc1", "fields": {"nom_de_la_commune": "LAZER", "libell_d_acheminement": "LAZER", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05073"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f3d5648acbe4b60338326437f097604a8b04801", "fields": {"code_postal": "04400", "code_commune_insee": "04226", "libell_d_acheminement": "UVERNET FOURS", "ligne_5": "PRA LOUP", "nom_de_la_commune": "UVERNET FOURS", "coordonnees_gps": [44.3554624604, 6.65679459978]}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3760db5e3769d25e0a5a4ebe93c5bb06fa83d811", "fields": {"nom_de_la_commune": "ST JULIEN DU VERDON", "libell_d_acheminement": "ST JULIEN DU VERDON", "code_postal": "04170", "coordonnees_gps": [44.0283793714, 6.53951156663], "code_commune_insee": "04183"}, "geometry": {"type": "Point", "coordinates": [6.53951156663, 44.0283793714]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8846cc7d069930d8496a2a6d48a6ee7410503aec", "fields": {"nom_de_la_commune": "ST MARTIN LES EAUX", "libell_d_acheminement": "ST MARTIN LES EAUX", "code_postal": "04300", "coordonnees_gps": [43.9526541708, 5.78676872287], "code_commune_insee": "04190"}, "geometry": {"type": "Point", "coordinates": [5.78676872287, 43.9526541708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78a8f955e2b6d4c6c4ff020c8f132fd4cf888f86", "fields": {"nom_de_la_commune": "UVERNET FOURS", "libell_d_acheminement": "UVERNET FOURS", "code_postal": "04400", "coordonnees_gps": [44.3554624604, 6.65679459978], "code_commune_insee": "04226"}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b6d6bafb511c609b0b638991f6f3852c9626d04", "fields": {"nom_de_la_commune": "VALAVOIRE", "libell_d_acheminement": "VALAVOIRE", "code_postal": "04250", "coordonnees_gps": [44.3409779854, 6.11647395481], "code_commune_insee": "04228"}, "geometry": {"type": "Point", "coordinates": [6.11647395481, 44.3409779854]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25ee33d90a7d412d5ae6b70fbecd1c8ce8855aa1", "fields": {"nom_de_la_commune": "STE TULLE", "libell_d_acheminement": "STE TULLE", "code_postal": "04220", "coordonnees_gps": [43.7711056931, 5.75846047346], "code_commune_insee": "04197"}, "geometry": {"type": "Point", "coordinates": [5.75846047346, 43.7711056931]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc38ff0a4ae67c7af21ecb69949ddfbc3b9f2262", "fields": {"nom_de_la_commune": "SALIGNAC", "libell_d_acheminement": "SALIGNAC", "code_postal": "04290", "coordonnees_gps": [44.1438661231, 6.02689394814], "code_commune_insee": "04200"}, "geometry": {"type": "Point", "coordinates": [6.02689394814, 44.1438661231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "185854aedd4c00182a34a672fd22bcb3b5c4ff19", "fields": {"nom_de_la_commune": "VENTEROL", "libell_d_acheminement": "VENTEROL", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "04234"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f81a54ea8936737e93723a3d7b5ab93ac791af99", "fields": {"nom_de_la_commune": "VILLEMUS", "libell_d_acheminement": "VILLEMUS", "code_postal": "04110", "coordonnees_gps": [43.8916683582, 5.655629925], "code_commune_insee": "04241"}, "geometry": {"type": "Point", "coordinates": [5.655629925, 43.8916683582]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49cda01e2e3ab712c124ce29dfc931988a989e75", "fields": {"nom_de_la_commune": "ST PONS", "libell_d_acheminement": "ST PONS", "code_postal": "04400", "coordonnees_gps": [44.3554624604, 6.65679459978], "code_commune_insee": "04195"}, "geometry": {"type": "Point", "coordinates": [6.65679459978, 44.3554624604]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a14c084bc260db01e55024f73ee2856090927e", "fields": {"code_postal": "05300", "code_commune_insee": "05118", "libell_d_acheminement": "VAL BUECH MEOUGE", "ligne_5": "CHATEAUNEUF DE CHABRE", "nom_de_la_commune": "VAL BUECH MEOUGE", "coordonnees_gps": [44.2953436251, 5.81680688288]}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bb30ee74638962b84e13facb0fc55bea8df49f4", "fields": {"code_postal": "05300", "code_commune_insee": "05118", "libell_d_acheminement": "VAL BUECH MEOUGE", "ligne_5": "RIBIERS", "nom_de_la_commune": "VAL BUECH MEOUGE", "coordonnees_gps": [44.2953436251, 5.81680688288]}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07b48ad5f1f5907db4d3fcbb4c917fabf66522ce", "fields": {"code_postal": "05250", "code_commune_insee": "05139", "libell_d_acheminement": "LE DEVOLUY", "ligne_5": "AGNIERES EN DEVOLUY", "nom_de_la_commune": "LE DEVOLUY", "coordonnees_gps": [44.6849532625, 5.89081686523]}, "geometry": {"type": "Point", "coordinates": [5.89081686523, 44.6849532625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8981a80c94895d79e17a79bcd23f80747ea598f2", "fields": {"code_postal": "05250", "code_commune_insee": "05139", "libell_d_acheminement": "LE DEVOLUY", "ligne_5": "SUPERDEVOLUY", "nom_de_la_commune": "LE DEVOLUY", "coordonnees_gps": [44.6849532625, 5.89081686523]}, "geometry": {"type": "Point", "coordinates": [5.89081686523, 44.6849532625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f36f7bb978f6917183e1adad9caf91b5e817baa", "fields": {"code_postal": "05250", "code_commune_insee": "05139", "libell_d_acheminement": "LE DEVOLUY", "ligne_5": "ST DISDIER", "nom_de_la_commune": "LE DEVOLUY", "coordonnees_gps": [44.6849532625, 5.89081686523]}, "geometry": {"type": "Point", "coordinates": [5.89081686523, 44.6849532625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f3cd918df66d6729d7c845fb47a239c94b8e1c4", "fields": {"nom_de_la_commune": "ST CLEMENT SUR DURANCE", "libell_d_acheminement": "ST CLEMENT SUR DURANCE", "code_postal": "05600", "coordonnees_gps": [44.6692655644, 6.68957697025], "code_commune_insee": "05134"}, "geometry": {"type": "Point", "coordinates": [6.68957697025, 44.6692655644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea3dd2d245f6cf8a9aeeeaf6a8248eb0dad8fad5", "fields": {"nom_de_la_commune": "ST JEAN ST NICOLAS", "libell_d_acheminement": "ST JEAN ST NICOLAS", "code_postal": "05260", "coordonnees_gps": [44.6914774663, 6.23838338472], "code_commune_insee": "05145"}, "geometry": {"type": "Point", "coordinates": [6.23838338472, 44.6914774663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a7c271a590ac969d444ed917d45eaf6eb9422a", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05135"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0b584744993a358d0584715806581a111cfa769", "fields": {"nom_de_la_commune": "REALLON", "libell_d_acheminement": "REALLON", "code_postal": "05160", "coordonnees_gps": [44.5645200462, 6.36522312148], "code_commune_insee": "05114"}, "geometry": {"type": "Point", "coordinates": [6.36522312148, 44.5645200462]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f8c51d0d8d988bd24183fff1c61feb73db38976", "fields": {"nom_de_la_commune": "BEAULIEU SUR MER", "libell_d_acheminement": "BEAULIEU SUR MER", "code_postal": "06310", "coordonnees_gps": [43.7085739948, 7.33186986482], "code_commune_insee": "06011"}, "geometry": {"type": "Point", "coordinates": [7.33186986482, 43.7085739948]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4619193b566a86bf03acb0249079340a5b9af7c0", "fields": {"nom_de_la_commune": "VILLAR LOUBIERE", "libell_d_acheminement": "VILLAR LOUBIERE", "code_postal": "05800", "coordonnees_gps": [44.8037455083, 6.14432852349], "code_commune_insee": "05182"}, "geometry": {"type": "Point", "coordinates": [6.14432852349, 44.8037455083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ff192395deccf23c026972e9f2d96a9849a6677", "fields": {"nom_de_la_commune": "ST PIERRE AVEZ", "libell_d_acheminement": "ST PIERRE AVEZ", "code_postal": "05300", "coordonnees_gps": [44.2953436251, 5.81680688288], "code_commune_insee": "05155"}, "geometry": {"type": "Point", "coordinates": [5.81680688288, 44.2953436251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65032c25facee232a2beb18bd63af1efea3b24de", "fields": {"nom_de_la_commune": "SIGOTTIER", "libell_d_acheminement": "SIGOTTIER", "code_postal": "05700", "coordonnees_gps": [44.3940115409, 5.69370523608], "code_commune_insee": "05167"}, "geometry": {"type": "Point", "coordinates": [5.69370523608, 44.3940115409]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64d029d913f1ee73ee1906453423e433160d7126", "fields": {"nom_de_la_commune": "BELVEDERE", "libell_d_acheminement": "BELVEDERE", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06013"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0784c18cf33029c0ad12a2aa4a7d064fe64e2033", "fields": {"nom_de_la_commune": "LA SAULCE", "libell_d_acheminement": "LA SAULCE", "code_postal": "05110", "coordonnees_gps": [44.4207763545, 5.95755460075], "code_commune_insee": "05162"}, "geometry": {"type": "Point", "coordinates": [5.95755460075, 44.4207763545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab847c258002cc8beef38f3826abf7a74664eb25", "fields": {"nom_de_la_commune": "LE SAIX", "libell_d_acheminement": "LE SAIX", "code_postal": "05400", "coordonnees_gps": [44.5486285358, 5.89356073286], "code_commune_insee": "05158"}, "geometry": {"type": "Point", "coordinates": [5.89356073286, 44.5486285358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe37007c9fa43d447fc6b5d8e43654dab9c2a424", "fields": {"nom_de_la_commune": "TALLARD", "libell_d_acheminement": "TALLARD", "code_postal": "05130", "coordonnees_gps": [44.47463423, 6.07115891935], "code_commune_insee": "05170"}, "geometry": {"type": "Point", "coordinates": [6.07115891935, 44.47463423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49faea94b77bc485fae3ddfdcdb4a8cddafac344", "fields": {"nom_de_la_commune": "LA BOLLENE VESUBIE", "libell_d_acheminement": "LA BOLLENE VESUBIE", "code_postal": "06450", "coordonnees_gps": [44.0250774334, 7.30840268234], "code_commune_insee": "06020"}, "geometry": {"type": "Point", "coordinates": [7.30840268234, 44.0250774334]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3bc3b4e343a36eeaf5b8dfb7d05f805af303c62", "fields": {"nom_de_la_commune": "BERRE LES ALPES", "libell_d_acheminement": "BERRE LES ALPES", "code_postal": "06390", "coordonnees_gps": [43.8299178598, 7.30988628013], "code_commune_insee": "06015"}, "geometry": {"type": "Point", "coordinates": [7.30988628013, 43.8299178598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a9d04b733ddd5cf077a8f1b49b4ef9b68ad653c", "fields": {"nom_de_la_commune": "CASTAGNIERS", "libell_d_acheminement": "CASTAGNIERS", "code_postal": "06670", "coordonnees_gps": [43.8396133826, 7.24053222455], "code_commune_insee": "06034"}, "geometry": {"type": "Point", "coordinates": [7.24053222455, 43.8396133826]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1cd44c02d4f27155ddf41a0769c3ccb0ad5dfbd6", "fields": {"nom_de_la_commune": "CASTELLAR", "libell_d_acheminement": "CASTELLAR", "code_postal": "06500", "coordonnees_gps": [43.8073366872, 7.47793852475], "code_commune_insee": "06035"}, "geometry": {"type": "Point", "coordinates": [7.47793852475, 43.8073366872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8f4e18b6273a5929b9324c3725a91d8c08c21d9", "fields": {"nom_de_la_commune": "CIPIERES", "libell_d_acheminement": "CIPIERES", "code_postal": "06620", "coordonnees_gps": [43.7673356275, 6.94848216496], "code_commune_insee": "06041"}, "geometry": {"type": "Point", "coordinates": [6.94848216496, 43.7673356275]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43867c4c0be211f674cd3b1a02bb44c1e922584d", "fields": {"nom_de_la_commune": "COARAZE", "libell_d_acheminement": "COARAZE", "code_postal": "06390", "coordonnees_gps": [43.8299178598, 7.30988628013], "code_commune_insee": "06043"}, "geometry": {"type": "Point", "coordinates": [7.30988628013, 43.8299178598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d2389e4d689a328c7552afcae41f877d0374773", "fields": {"nom_de_la_commune": "CARROS", "libell_d_acheminement": "CARROS", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06033"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f4ae23818fca39d44c522665920f65cf36e1777", "fields": {"nom_de_la_commune": "CONTES", "libell_d_acheminement": "CONTES", "code_postal": "06390", "coordonnees_gps": [43.8299178598, 7.30988628013], "code_commune_insee": "06048"}, "geometry": {"type": "Point", "coordinates": [7.30988628013, 43.8299178598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93d397fde710b24c09e370a970cdef9cc16f0412", "fields": {"nom_de_la_commune": "LA ROQUETTE SUR SIAGNE", "libell_d_acheminement": "LA ROQUETTE SUR SIAGNE", "code_postal": "06550", "coordonnees_gps": [43.5852300356, 6.94977873957], "code_commune_insee": "06108"}, "geometry": {"type": "Point", "coordinates": [6.94977873957, 43.5852300356]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "657dafe91b5539bb41178e318b9e5d9278b489ac", "fields": {"nom_de_la_commune": "MANDELIEU LA NAPOULE", "libell_d_acheminement": "MANDELIEU LA NAPOULE", "code_postal": "06210", "coordonnees_gps": [43.5382980817, 6.91782917147], "code_commune_insee": "06079"}, "geometry": {"type": "Point", "coordinates": [6.91782917147, 43.5382980817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbe3bae0d67cf31803b3872a44597d20b51983e9", "fields": {"nom_de_la_commune": "REVEST LES ROCHES", "libell_d_acheminement": "REVEST LES ROCHES", "code_postal": "06830", "coordonnees_gps": [43.8756018878, 7.1426953573], "code_commune_insee": "06100"}, "geometry": {"type": "Point", "coordinates": [7.1426953573, 43.8756018878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e217a137fd2a28d2a29ea054f155d09d2390175b", "fields": {"nom_de_la_commune": "MOUANS SARTOUX", "libell_d_acheminement": "MOUANS SARTOUX", "code_postal": "06370", "coordonnees_gps": [43.6185114437, 6.96458568918], "code_commune_insee": "06084"}, "geometry": {"type": "Point", "coordinates": [6.96458568918, 43.6185114437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3976ed91146cee216218a84ccab5c10465e1142", "fields": {"nom_de_la_commune": "LES FERRES", "libell_d_acheminement": "LES FERRES", "code_postal": "06510", "coordonnees_gps": [43.8113668686, 7.12413320306], "code_commune_insee": "06061"}, "geometry": {"type": "Point", "coordinates": [7.12413320306, 43.8113668686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d8f4dbfff8ab092c636ca5f28e8e09245c90e60", "fields": {"nom_de_la_commune": "FALICON", "libell_d_acheminement": "FALICON", "code_postal": "06950", "coordonnees_gps": [43.7524734133, 7.26485123417], "code_commune_insee": "06060"}, "geometry": {"type": "Point", "coordinates": [7.26485123417, 43.7524734133]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eb884b8b3dff06e933b8300bf234b57b160f421", "fields": {"nom_de_la_commune": "ROUBION", "libell_d_acheminement": "ROUBION", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06110"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89c69ddd8430d8dafd6ac6c323fef1250d623bcc", "fields": {"nom_de_la_commune": "GORBIO", "libell_d_acheminement": "GORBIO", "code_postal": "06500", "coordonnees_gps": [43.8073366872, 7.47793852475], "code_commune_insee": "06067"}, "geometry": {"type": "Point", "coordinates": [7.47793852475, 43.8073366872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d469b4664a6bd674b69bc1768e7cdf8dd7dedb2f", "fields": {"nom_de_la_commune": "NICE", "libell_d_acheminement": "NICE", "code_postal": "06100", "coordonnees_gps": [43.7122279855, 7.23752896461], "code_commune_insee": "06088"}, "geometry": {"type": "Point", "coordinates": [7.23752896461, 43.7122279855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c54c287beffa2a4c2aad9f94e4444811aa0a219e", "fields": {"nom_de_la_commune": "EZE", "libell_d_acheminement": "EZE", "code_postal": "06360", "coordonnees_gps": [43.729145316, 7.36098672759], "code_commune_insee": "06059"}, "geometry": {"type": "Point", "coordinates": [7.36098672759, 43.729145316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6e6ee93ce5ea74922b6d6e8acab3306a1a0156e", "fields": {"code_postal": "07140", "code_commune_insee": "07147", "libell_d_acheminement": "MALARCE SUR LA THINES", "ligne_5": "LAFIGERE", "nom_de_la_commune": "MALARCE SUR LA THINES", "coordonnees_gps": [44.4499905153, 4.07415395181]}, "geometry": {"type": "Point", "coordinates": [4.07415395181, 44.4499905153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e98813bf9174a1eb8e9912d5d6eb3f844328f59", "fields": {"nom_de_la_commune": "GILHAC ET BRUZAC", "libell_d_acheminement": "GILHAC ET BRUZAC", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07094"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e24293cd395a28f5483575740f982f6474bb0e3", "fields": {"nom_de_la_commune": "MARCOLS LES EAUX", "libell_d_acheminement": "MARCOLS LES EAUX", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07149"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a98b96b1b9f180b2d7637bfdd5ed10945255b069", "fields": {"nom_de_la_commune": "LACHAMP RAPHAEL", "libell_d_acheminement": "LACHAMP RAPHAEL", "code_postal": "07530", "coordonnees_gps": [44.7656875019, 4.35207431402], "code_commune_insee": "07120"}, "geometry": {"type": "Point", "coordinates": [4.35207431402, 44.7656875019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50dddfc002d1ceec331de4d6d360d3d1c8407960", "fields": {"nom_de_la_commune": "EMPURANY", "libell_d_acheminement": "EMPURANY", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07085"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6b23018cb96975733e7cd0ffc60f2ce831cbeed", "fields": {"nom_de_la_commune": "LAVEYRUNE", "libell_d_acheminement": "LAVEYRUNE", "code_postal": "48250", "coordonnees_gps": [44.58724186, 3.85437402799], "code_commune_insee": "07136"}, "geometry": {"type": "Point", "coordinates": [3.85437402799, 44.58724186]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f9ab83448513db574b55d7cde8ca345b1796e7e", "fields": {"nom_de_la_commune": "LAGORCE", "libell_d_acheminement": "LAGORCE", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07126"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5a309deeba654e4ab42496a0b6f08dc0ed6060", "fields": {"nom_de_la_commune": "MARS", "libell_d_acheminement": "MARS", "code_postal": "07320", "coordonnees_gps": [45.0373045758, 4.40809753225], "code_commune_insee": "07151"}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef136b6588ffc97b108acab88d1776356fcf81fa", "fields": {"code_postal": "07120", "code_commune_insee": "07207", "libell_d_acheminement": "ST ALBAN AURIOLLES", "ligne_5": "AURIOLLES", "nom_de_la_commune": "ST ALBAN AURIOLLES", "coordonnees_gps": [44.4494191927, 4.32528793215]}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4d851f7f521f10c48bf632d28994494df6678f7", "fields": {"nom_de_la_commune": "ST APOLLINAIRE DE RIAS", "libell_d_acheminement": "ST APOLLINAIRE DE RIAS", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07214"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8af0e35e0840b8409bb3524cc49c5ee126cbffe2", "fields": {"nom_de_la_commune": "ST BARTHELEMY LE MEIL", "libell_d_acheminement": "ST BARTHELEMY LE MEIL", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07215"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a15f6fdbc8bf9ae7c35a30b8a18dca79df61ca1", "fields": {"nom_de_la_commune": "ROCHEPAULE", "libell_d_acheminement": "ROCHEPAULE", "code_postal": "07320", "coordonnees_gps": [45.0373045758, 4.40809753225], "code_commune_insee": "07192"}, "geometry": {"type": "Point", "coordinates": [4.40809753225, 45.0373045758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "002d1d11ccf3861d8b128ca3eea022243a19b0a1", "fields": {"nom_de_la_commune": "ROCHEMAURE", "libell_d_acheminement": "ROCHEMAURE", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07191"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fc7edd571eb2e0f6683a130617412514bc394e7", "fields": {"nom_de_la_commune": "ROIFFIEUX", "libell_d_acheminement": "ROIFFIEUX", "code_postal": "07100", "coordonnees_gps": [45.2521053089, 4.64438732099], "code_commune_insee": "07197"}, "geometry": {"type": "Point", "coordinates": [4.64438732099, 45.2521053089]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "928cb2f04f7c12362cc03038f141b6123eb7f209", "fields": {"nom_de_la_commune": "ST BASILE", "libell_d_acheminement": "ST BASILE", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07218"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed19f8e6254d70ed7654c7b49d355cd37f2479f8", "fields": {"nom_de_la_commune": "ROMPON", "libell_d_acheminement": "ROMPON", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07198"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5125b7141b4eae38499eadee076e436cd2d7cff4", "fields": {"nom_de_la_commune": "PREAUX", "libell_d_acheminement": "PREAUX", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07185"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d2f27998a00d2f0d95fc971d082afd11dba0aa", "fields": {"nom_de_la_commune": "ROCHER", "libell_d_acheminement": "ROCHER", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07193"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fe25a442ef2839c973dcb6a007f2d37ca9b21e6", "fields": {"nom_de_la_commune": "ST FORTUNAT SUR EYRIEUX", "libell_d_acheminement": "ST FORTUNAT SUR EYRIEUX", "code_postal": "07360", "coordonnees_gps": [44.8234366694, 4.65142319942], "code_commune_insee": "07237"}, "geometry": {"type": "Point", "coordinates": [4.65142319942, 44.8234366694]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5500e2343b0d78e34e544d44724bfeafd115e104", "fields": {"nom_de_la_commune": "ST JEAN LE CENTENIER", "libell_d_acheminement": "ST JEAN LE CENTENIER", "code_postal": "07580", "coordonnees_gps": [44.6199071388, 4.55702885367], "code_commune_insee": "07247"}, "geometry": {"type": "Point", "coordinates": [4.55702885367, 44.6199071388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7550e93a99a543e8d7bfc9987f1976d772bf0211", "fields": {"nom_de_la_commune": "ST GEORGES LES BAINS", "libell_d_acheminement": "ST GEORGES LES BAINS", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07240"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f933124b0a4af527dd253a5c287d5b32b00fad9", "fields": {"nom_de_la_commune": "ST ETIENNE DE SERRE", "libell_d_acheminement": "ST ETIENNE DE SERRE", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07233"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7faaad12b198f2521f07434cf6e55ec4538fd100", "fields": {"nom_de_la_commune": "ST JULIEN DU SERRE", "libell_d_acheminement": "ST JULIEN DU SERRE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07254"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f940f00d31c93f695416264d30322d6e43670bb", "fields": {"nom_de_la_commune": "ST JEAN DE MUZOLS", "libell_d_acheminement": "ST JEAN DE MUZOLS", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07245"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "417c5646103ac2c5a7d187ab7f4401db7b4586b4", "fields": {"nom_de_la_commune": "ST JEURE D AY", "libell_d_acheminement": "ST JEURE D AY", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07250"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47e74a7b4e8f9e5915da8468289d0d33738c6bcc", "fields": {"nom_de_la_commune": "ST CHRISTOL", "libell_d_acheminement": "ST CHRISTOL", "code_postal": "07160", "coordonnees_gps": [44.8862091269, 4.40650740224], "code_commune_insee": "07220"}, "geometry": {"type": "Point", "coordinates": [4.40650740224, 44.8862091269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe54beaa1d23edd62eff3b5d672bb87ca3a3c26a", "fields": {"nom_de_la_commune": "ST FELICIEN", "libell_d_acheminement": "ST FELICIEN", "code_postal": "07410", "coordonnees_gps": [45.0785518852, 4.63820208149], "code_commune_insee": "07236"}, "geometry": {"type": "Point", "coordinates": [4.63820208149, 45.0785518852]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f530411bf39eff1f0411746f13b5bca950a9f7", "fields": {"nom_de_la_commune": "ST CLEMENT", "libell_d_acheminement": "ST CLEMENT", "code_postal": "07310", "coordonnees_gps": [44.9172375396, 4.28592405174], "code_commune_insee": "07226"}, "geometry": {"type": "Point", "coordinates": [4.28592405174, 44.9172375396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4128e7945157391f7eb83ec02143ff2467464a94", "fields": {"nom_de_la_commune": "ST SYMPHORIEN DE MAHUN", "libell_d_acheminement": "ST SYMPHORIEN DE MAHUN", "code_postal": "07290", "coordonnees_gps": [45.1562505926, 4.63754275522], "code_commune_insee": "07299"}, "geometry": {"type": "Point", "coordinates": [4.63754275522, 45.1562505926]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69abf2ca69774b7621e8e0cb5634a12e90751e73", "fields": {"nom_de_la_commune": "ST MAURICE D ARDECHE", "libell_d_acheminement": "ST MAURICE D ARDECHE", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07272"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cade746e28b73290fcf886de3e9690aa5bc149ba", "fields": {"nom_de_la_commune": "ST PIERRE SUR DOUX", "libell_d_acheminement": "ST PIERRE SUR DOUX", "code_postal": "07520", "coordonnees_gps": [45.1121738943, 4.50340666434], "code_commune_insee": "07285"}, "geometry": {"type": "Point", "coordinates": [4.50340666434, 45.1121738943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ed1f9a22c0cea12964219a19a0e561e8760ed20", "fields": {"nom_de_la_commune": "ST LAURENT DU PAPE", "libell_d_acheminement": "ST LAURENT DU PAPE", "code_postal": "07800", "coordonnees_gps": [44.8259981925, 4.75183452042], "code_commune_insee": "07261"}, "geometry": {"type": "Point", "coordinates": [4.75183452042, 44.8259981925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893eed937c729e3e1169fcee64d3a5bbd74a1a86", "fields": {"nom_de_la_commune": "ST JULIEN LE ROUX", "libell_d_acheminement": "ST JULIEN LE ROUX", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07257"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5558741f5ce829a367e09177b465a83820139f4a", "fields": {"nom_de_la_commune": "ST JULIEN VOCANCE", "libell_d_acheminement": "ST JULIEN VOCANCE", "code_postal": "07690", "coordonnees_gps": [45.1829664492, 4.50688842941], "code_commune_insee": "07258"}, "geometry": {"type": "Point", "coordinates": [4.50688842941, 45.1829664492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283dc7c6f145bb824d02c28190d6df993dc0fe0c", "fields": {"nom_de_la_commune": "ST LAGER BRESSAC", "libell_d_acheminement": "ST LAGER BRESSAC", "code_postal": "07210", "coordonnees_gps": [44.6929667083, 4.68338183575], "code_commune_insee": "07260"}, "geometry": {"type": "Point", "coordinates": [4.68338183575, 44.6929667083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "418a5e6208c562cb28ef53d5c19be0561d67509f", "fields": {"nom_de_la_commune": "ST PRIVAT", "libell_d_acheminement": "ST PRIVAT", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07289"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "861639e1f2c41fe71662f83d294c9dd6b0530458", "fields": {"nom_de_la_commune": "ST SERNIN", "libell_d_acheminement": "ST SERNIN", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07296"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d0a4acefd52f3c5c9d05606a3b91e56ed94b0c", "fields": {"nom_de_la_commune": "ST PRIX", "libell_d_acheminement": "ST PRIX", "code_postal": "07270", "coordonnees_gps": [44.9912786695, 4.60999260675], "code_commune_insee": "07290"}, "geometry": {"type": "Point", "coordinates": [4.60999260675, 44.9912786695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f7feb4ce635e95af07b8439ca6449c0fc5ac7bf", "fields": {"nom_de_la_commune": "USCLADES ET RIEUTORD", "libell_d_acheminement": "USCLADES ET RIEUTORD", "code_postal": "07510", "coordonnees_gps": [44.7724320903, 4.10278815831], "code_commune_insee": "07326"}, "geometry": {"type": "Point", "coordinates": [4.10278815831, 44.7724320903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e3844d087521e86c46420c888e848be47292d36", "fields": {"nom_de_la_commune": "VERNOUX EN VIVARAIS", "libell_d_acheminement": "VERNOUX EN VIVARAIS", "code_postal": "07240", "coordonnees_gps": [44.8957469778, 4.61507184197], "code_commune_insee": "07338"}, "geometry": {"type": "Point", "coordinates": [4.61507184197, 44.8957469778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974a2649ad101755f4dd11d5ada0757a28ae4ce0", "fields": {"nom_de_la_commune": "ST THOME", "libell_d_acheminement": "ST THOME", "code_postal": "07220", "coordonnees_gps": [44.4661661995, 4.63717966246], "code_commune_insee": "07300"}, "geometry": {"type": "Point", "coordinates": [4.63717966246, 44.4661661995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b6476faf071a7f5e55df1975e835c1f5316fb429", "fields": {"nom_de_la_commune": "UROST", "libell_d_acheminement": "UROST", "code_postal": "64160", "coordonnees_gps": [43.3830432565, -0.231977829206], "code_commune_insee": "64544"}, "geometry": {"type": "Point", "coordinates": [-0.231977829206, 43.3830432565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24e62867a48307c58edbc29f0b3323869945c117", "fields": {"code_postal": "64700", "code_commune_insee": "64545", "libell_d_acheminement": "URRUGNE", "ligne_5": "BEHOBIE", "nom_de_la_commune": "URRUGNE", "coordonnees_gps": [43.3477852312, -1.71224103787]}, "geometry": {"type": "Point", "coordinates": [-1.71224103787, 43.3477852312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25855f7ef37f2ca25859a6a3d99a6aae7359d81c", "fields": {"nom_de_la_commune": "UZEIN", "libell_d_acheminement": "UZEIN", "code_postal": "64230", "coordonnees_gps": [43.3794240738, -0.449952549175], "code_commune_insee": "64549"}, "geometry": {"type": "Point", "coordinates": [-0.449952549175, 43.3794240738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cf379bd632a9893a24fad086ea867d249d31f2e", "fields": {"nom_de_la_commune": "VIELLENAVE D ARTHEZ", "libell_d_acheminement": "VIELLENAVE D ARTHEZ", "code_postal": "64170", "coordonnees_gps": [43.409488442, -0.554817302956], "code_commune_insee": "64554"}, "geometry": {"type": "Point", "coordinates": [-0.554817302956, 43.409488442]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8954489b2d1a6c7801adc21e6bf97303f193fa5d", "fields": {"nom_de_la_commune": "VIGNES", "libell_d_acheminement": "VIGNES", "code_postal": "64410", "coordonnees_gps": [43.5231887379, -0.442593033592], "code_commune_insee": "64557"}, "geometry": {"type": "Point", "coordinates": [-0.442593033592, 43.5231887379]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2d37c1eab22d48ebf5e632d712741f3177201a1", "fields": {"nom_de_la_commune": "AGOS VIDALOS", "libell_d_acheminement": "AGOS VIDALOS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65004"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1da15be255ee087c6dc279da0e09d647529b7233", "fields": {"nom_de_la_commune": "LES ANGLES", "libell_d_acheminement": "LES ANGLES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65011"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdab471cb8700170e7ddd3b4f6f4eb3038db643f", "fields": {"nom_de_la_commune": "ARBEOST", "libell_d_acheminement": "ARBEOST", "code_postal": "65560", "coordonnees_gps": [42.9975341833, -0.255768295954], "code_commune_insee": "65018"}, "geometry": {"type": "Point", "coordinates": [-0.255768295954, 42.9975341833]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fde3010b3a8c02969430fb5a63be31abc7911e9", "fields": {"nom_de_la_commune": "ARDENGOST", "libell_d_acheminement": "ARDENGOST", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65023"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2077e715e04034894d38bc7e20d955bbc57ae632", "fields": {"nom_de_la_commune": "ARIES ESPENAN", "libell_d_acheminement": "ARIES ESPENAN", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65026"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a5c31f2321a282f687cf113e0606948e20d6bbc", "fields": {"nom_de_la_commune": "ARRAS EN LAVEDAN", "libell_d_acheminement": "ARRAS EN LAVEDAN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65029"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1695a07ac7b70122541b90f1000e07cc3cb7d5dd", "fields": {"nom_de_la_commune": "ARRODETS EZ ANGLES", "libell_d_acheminement": "ARRODETS EZ ANGLES", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65033"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8743bf6d98eb108420607440f1520ab9f8ff7288", "fields": {"nom_de_la_commune": "ARTIGUEMY", "libell_d_acheminement": "ARTIGUEMY", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65037"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eeb244a34f8236cfaf49f2af68f0df7c62c8eac", "fields": {"nom_de_la_commune": "ASPIN EN LAVEDAN", "libell_d_acheminement": "ASPIN EN LAVEDAN", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65040"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ce65002b79662e86ca4232f4c65b4ddefd0bd06", "fields": {"nom_de_la_commune": "AUCUN", "libell_d_acheminement": "AUCUN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65045"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb608fc6c4de44e8eac5ff3134848b4fd9b8c21", "fields": {"nom_de_la_commune": "AURIEBAT", "libell_d_acheminement": "AURIEBAT", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65049"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20f56187c6961e45deb938fd3af1e3072a3f59e7", "fields": {"nom_de_la_commune": "AYZAC OST", "libell_d_acheminement": "AYZAC OST", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65056"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8e7d5cea63d8cd69873fd7b360ead4f454185e8", "fields": {"nom_de_la_commune": "AZEREIX", "libell_d_acheminement": "AZEREIX", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65057"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d936f481fa019a059413378aa95424b98e07cba8", "fields": {"nom_de_la_commune": "AZET", "libell_d_acheminement": "AZET", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65058"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "349974aaedffc0f4cb172fc01d5f672d5735cb4f", "fields": {"nom_de_la_commune": "BATSERE", "libell_d_acheminement": "BATSERE", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65071"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee815217daf176062cbf479b30f3fb2842a945b9", "fields": {"nom_de_la_commune": "BAZILLAC", "libell_d_acheminement": "BAZILLAC", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65073"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03a53e437bd86faecab75c78694a6e9833087355", "fields": {"nom_de_la_commune": "BEAUDEAN", "libell_d_acheminement": "BEAUDEAN", "code_postal": "65710", "coordonnees_gps": [42.9707906298, 0.166937174771], "code_commune_insee": "65078"}, "geometry": {"type": "Point", "coordinates": [0.166937174771, 42.9707906298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b31b87ff751f051b147944e379b622254b8d94f5", "fields": {"nom_de_la_commune": "BETBEZE", "libell_d_acheminement": "BETBEZE", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65088"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea2254d4933dc511ff60533dc49c7319194f780f", "fields": {"nom_de_la_commune": "BEYREDE JUMET", "libell_d_acheminement": "BEYREDE JUMET", "code_postal": "65410", "coordonnees_gps": [42.9580883388, 0.38930305031], "code_commune_insee": "65092"}, "geometry": {"type": "Point", "coordinates": [0.38930305031, 42.9580883388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "381e123f513d42ad6cb3b1189aea9c80b9b064ca", "fields": {"nom_de_la_commune": "BOO SILHEN", "libell_d_acheminement": "BOO SILHEN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65098"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd436cee8bfaf54efbcf3adbd466f9717512916", "fields": {"nom_de_la_commune": "BOULIN", "libell_d_acheminement": "BOULIN", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65104"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc65d85a395b3b89abe7e5a1919067ca6ce7f44b", "fields": {"nom_de_la_commune": "BUN", "libell_d_acheminement": "BUN", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65112"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36c6d3be135ac2d0afde4b87d5cf1c1f2e355403", "fields": {"nom_de_la_commune": "BUZON", "libell_d_acheminement": "BUZON", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65114"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb67352ba140f89c1b3c52fbd9aeddde85b1c8e1", "fields": {"nom_de_la_commune": "CAHARET", "libell_d_acheminement": "CAHARET", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65118"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c6a023a396f35e80f3103a29119245b2170a5cf", "fields": {"nom_de_la_commune": "CALAVANTE", "libell_d_acheminement": "CALAVANTE", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65120"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "287d53a3916dae62f265f3dba2a5d2a3af4e25df", "fields": {"nom_de_la_commune": "CAMPUZAN", "libell_d_acheminement": "CAMPUZAN", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65126"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "006f1acc08f58b8dec2d86b4ad9650c7cb420bd2", "fields": {"nom_de_la_commune": "CAPVERN", "libell_d_acheminement": "CAPVERN LES BAINS", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65127"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c59c87073dce0953980870fec6f9e1747f7e2faa", "fields": {"nom_de_la_commune": "CASTERA LANUSSE", "libell_d_acheminement": "CASTERA LANUSSE", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65132"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4edebc472f28cc2476a18da05575ac821cb9690d", "fields": {"nom_de_la_commune": "CAUSSADE RIVIERE", "libell_d_acheminement": "CAUSSADE RIVIERE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65137"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2336b50cce045b00a9fff7ab39e180232a8ba01b", "fields": {"nom_de_la_commune": "CAZARILH", "libell_d_acheminement": "CAZARILH", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65139"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bb6444cdee805483380fa31d329c6d00e49523", "fields": {"nom_de_la_commune": "CAZAUX FRECHET ANERAN CAMORS", "libell_d_acheminement": "CAZAUX FRECHET ANERAN CAMORS", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65141"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb4344c88283646cb91b194e7b905bd28362c101", "fields": {"nom_de_la_commune": "CHELLE DEBAT", "libell_d_acheminement": "CHELLE DEBAT", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65142"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "118d33bdb8f14c5f6c373ebe02893c9b84f49dbd", "fields": {"nom_de_la_commune": "CHELLE SPOU", "libell_d_acheminement": "CHELLE SPOU", "code_postal": "65130", "coordonnees_gps": [43.0681030312, 0.291772301589], "code_commune_insee": "65143"}, "geometry": {"type": "Point", "coordinates": [0.291772301589, 43.0681030312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a85350a8f6210a8c06e273b8ef0bc51b36cdbee", "fields": {"nom_de_la_commune": "CHEZE", "libell_d_acheminement": "CHEZE", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65145"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78b343e48e7b0627ff42a9fe889a0de8948c1fd6", "fields": {"nom_de_la_commune": "COLLONGUES", "libell_d_acheminement": "COLLONGUES", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65151"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1d1c7f04956e99cd0a4938518f6519617d966b5", "fields": {"nom_de_la_commune": "COUSSAN", "libell_d_acheminement": "COUSSAN", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65153"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97366738b1cb93ca08e202ce320cc498c6c889c4", "fields": {"nom_de_la_commune": "ESBAREICH", "libell_d_acheminement": "ESBAREICH", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65158"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7a0b77c17f61d76d86c3bfab749a5d8c297827", "fields": {"nom_de_la_commune": "ESTAING", "libell_d_acheminement": "ESTAING", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65169"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f148055c8ebdb262279f63d91c6be5b216b5b1a", "fields": {"nom_de_la_commune": "ESTENSAN", "libell_d_acheminement": "ESTENSAN", "code_postal": "65170", "coordonnees_gps": [42.7844554266, 0.249236861187], "code_commune_insee": "65172"}, "geometry": {"type": "Point", "coordinates": [0.249236861187, 42.7844554266]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff927fc13c80ef19fbaaa69f69421b0b5fe5ae0", "fields": {"nom_de_la_commune": "FERRERE", "libell_d_acheminement": "FERRERE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65175"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bfe9fd73a2fef57ee2c5aa75eb937562204713f", "fields": {"nom_de_la_commune": "GAILLAGOS", "libell_d_acheminement": "GAILLAGOS", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65182"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0bcbba9a1c7d35a871ce9c24d6edee1d979cb576", "fields": {"nom_de_la_commune": "GAUSSAN", "libell_d_acheminement": "GAUSSAN", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65187"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8554886f5f3927b7b89c23382cbdcba44a7748e9", "fields": {"nom_de_la_commune": "GAZOST", "libell_d_acheminement": "GAZOST", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65191"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "964137b6ba947b9eb3307f718a5eea51315227b0", "fields": {"nom_de_la_commune": "GAVARNIE GEDRE", "libell_d_acheminement": "GAVARNIE GEDRE", "code_postal": "65120", "coordonnees_gps": [42.8310164277, 0.0356881047595], "code_commune_insee": "65192"}, "geometry": {"type": "Point", "coordinates": [0.0356881047595, 42.8310164277]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28606210fe1570d03d124484da91536c68be0396", "fields": {"nom_de_la_commune": "GENEREST", "libell_d_acheminement": "GENEREST", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65194"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ef329c3073d5a57f7c4797ceef5fbc7ae220782", "fields": {"nom_de_la_commune": "GENSAC", "libell_d_acheminement": "GENSAC", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65196"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d889df110560528d46f73a98c0141d0eb96c729", "fields": {"nom_de_la_commune": "GER", "libell_d_acheminement": "GER", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65197"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b1689c8efc4629f1845a667532250f9b35fd020", "fields": {"nom_de_la_commune": "GERM", "libell_d_acheminement": "GERM", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65199"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6277ca106704bdc9eabdf4f466c8b9e8b55df246", "fields": {"nom_de_la_commune": "GUIZERIX", "libell_d_acheminement": "GUIZERIX", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65213"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "092a539c23299f3c8dfc136a2c3d2b82e0d3c85b", "fields": {"nom_de_la_commune": "HITTE", "libell_d_acheminement": "HITTE", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65222"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e96d1160103031c548c2922b7c81ab8c0759bb86", "fields": {"nom_de_la_commune": "HORGUES", "libell_d_acheminement": "HORGUES", "code_postal": "65310", "coordonnees_gps": [43.1967929202, 0.0668474057462], "code_commune_insee": "65223"}, "geometry": {"type": "Point", "coordinates": [0.0668474057462, 43.1967929202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "def2875177ac7a009cea344bc291fb58d6b6dc2a", "fields": {"nom_de_la_commune": "JACQUE", "libell_d_acheminement": "JACQUE", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65232"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db865a0b76c21bcbcd1104fe7bc1c4054287a267", "fields": {"nom_de_la_commune": "LABATUT RIVIERE", "libell_d_acheminement": "LABATUT RIVIERE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65240"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72c8ba0b2858a9b3edc4bcb246411617629b3658", "fields": {"nom_de_la_commune": "LAGARDE", "libell_d_acheminement": "LAGARDE", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65244"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f8dd5250a92bb515589d84bd60105cc5c69e4a2", "fields": {"nom_de_la_commune": "LANSAC", "libell_d_acheminement": "LANSAC", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65259"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "665e4d488ec2ab28e23c60c92d6282e4f0f88b90", "fields": {"nom_de_la_commune": "LAPEYRE", "libell_d_acheminement": "LAPEYRE", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65260"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ec6e92dc2025da4dc0f22427f6a5385e3b5b55d", "fields": {"nom_de_la_commune": "LASSALES", "libell_d_acheminement": "LASSALES", "code_postal": "65670", "coordonnees_gps": [43.2182663544, 0.503870711407], "code_commune_insee": "65266"}, "geometry": {"type": "Point", "coordinates": [0.503870711407, 43.2182663544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3e192036d4f4af78e01682657aeee7d0492c77", "fields": {"nom_de_la_commune": "LEZIGNAN", "libell_d_acheminement": "LEZIGNAN", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65271"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b840de6063ec868081cda321c5c65e7648f9a24", "fields": {"nom_de_la_commune": "LIAC", "libell_d_acheminement": "LIAC", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65273"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2d61c008728027eeda456e645e4e9d0f2f9d52f", "fields": {"nom_de_la_commune": "LIZOS", "libell_d_acheminement": "LIZOS", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65276"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26a9368377c4a9fcd92185b6fb37cf4ce6851287", "fields": {"code_postal": "65240", "code_commune_insee": "65282", "libell_d_acheminement": "LOUDENVIELLE", "ligne_5": "ARMENTEULE", "nom_de_la_commune": "LOUDENVIELLE", "coordonnees_gps": [42.8315711949, 0.385912028349]}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e4214cba5a20a242abaee906faa0f231b7ce7f1", "fields": {"nom_de_la_commune": "LOUEY", "libell_d_acheminement": "LOUEY", "code_postal": "65290", "coordonnees_gps": [43.1908085674, 0.0212768080657], "code_commune_insee": "65284"}, "geometry": {"type": "Point", "coordinates": [0.0212768080657, 43.1908085674]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a50e959e0b1641be0c9c3081fe796e3b0fc09b5", "fields": {"nom_de_la_commune": "LUBY BETMONT", "libell_d_acheminement": "LUBY BETMONT", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65289"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0de4de2fa58b54ea430931ba3ac60d55c1a7cf4b", "fields": {"nom_de_la_commune": "LUQUET", "libell_d_acheminement": "LUQUET", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65292"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7605afeef715e5a5b596854a926df6436c009ce2", "fields": {"nom_de_la_commune": "LUTILHOUS", "libell_d_acheminement": "LUTILHOUS", "code_postal": "65300", "coordonnees_gps": [43.1395973216, 0.406662032374], "code_commune_insee": "65294"}, "geometry": {"type": "Point", "coordinates": [0.406662032374, 43.1395973216]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e0e7eadc3b423dfd78eec0794dd437f84f33652", "fields": {"nom_de_la_commune": "MARSAC", "libell_d_acheminement": "MARSAC", "code_postal": "65500", "coordonnees_gps": [43.3758569196, 0.0367100001924], "code_commune_insee": "65299"}, "geometry": {"type": "Point", "coordinates": [0.0367100001924, 43.3758569196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2586e249279bae1a38b14a1ec99f3a3d1b96ae71", "fields": {"nom_de_la_commune": "MARSAS", "libell_d_acheminement": "MARSAS", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65300"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01d07890c4d50fb528420ff2fe7da9626e03c0a5", "fields": {"nom_de_la_commune": "MARSEILLAN", "libell_d_acheminement": "MARSEILLAN", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65301"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d9acae96e3d12e2427373967b947d3bbbfffbcb", "fields": {"nom_de_la_commune": "MAZEROLLES", "libell_d_acheminement": "MAZEROLLES", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65308"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73c71803bbb6cba9528504f1de56ffa968eab0b5", "fields": {"nom_de_la_commune": "MAZOUAU", "libell_d_acheminement": "MAZOUAU", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65309"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cb37d07ec9e4bcf75dc1f479f3a74f7694c8ee9", "fields": {"nom_de_la_commune": "MERILHEU", "libell_d_acheminement": "MERILHEU", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65310"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71d921b1fa6a1e995ef3eae818ee178095ee88a4", "fields": {"nom_de_la_commune": "MONTGAILLARD", "libell_d_acheminement": "MONTGAILLARD", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65320"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d5b41cd63032b57fb934a1aa8f3b980c3e0c2a4", "fields": {"nom_de_la_commune": "OLEAC DESSUS", "libell_d_acheminement": "OLEAC DESSUS", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65333"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22b58c88e9a4241254ff9264fd3f72c19f4b15d5", "fields": {"nom_de_la_commune": "OMEX", "libell_d_acheminement": "OMEX", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65334"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ce0a7dab89156a7d2cf61533c94849b555080a5", "fields": {"nom_de_la_commune": "ORLEIX", "libell_d_acheminement": "ORLEIX", "code_postal": "65800", "coordonnees_gps": [43.2687329702, 0.110735154449], "code_commune_insee": "65340"}, "geometry": {"type": "Point", "coordinates": [0.110735154449, 43.2687329702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0063acf061934bf8a444c94a00d6b173304500b", "fields": {"nom_de_la_commune": "OSSUN", "libell_d_acheminement": "OSSUN", "code_postal": "65380", "coordonnees_gps": [43.1697077524, -0.022463739718], "code_commune_insee": "65344"}, "geometry": {"type": "Point", "coordinates": [-0.022463739718, 43.1697077524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfd734bba9da71ff1c317178cbc643850c6475e3", "fields": {"nom_de_la_commune": "OURDE", "libell_d_acheminement": "OURDE", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65347"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e597a374a10e3ae3301c5c37ed286c8ab92d6589", "fields": {"nom_de_la_commune": "OZON", "libell_d_acheminement": "OZON", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65353"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fb0cf0ed16df3a61b5b25e3de6021befd8a90f56", "fields": {"nom_de_la_commune": "PAREAC", "libell_d_acheminement": "PAREAC", "code_postal": "65100", "coordonnees_gps": [43.0733136747, -0.0281562446131], "code_commune_insee": "65355"}, "geometry": {"type": "Point", "coordinates": [-0.0281562446131, 43.0733136747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e288b2e25bea7801d74ff5906eeac92a091d5b0", "fields": {"nom_de_la_commune": "PINTAC", "libell_d_acheminement": "PINTAC", "code_postal": "65320", "coordonnees_gps": [43.2893977372, -0.0372582279656], "code_commune_insee": "65364"}, "geometry": {"type": "Point", "coordinates": [-0.0372582279656, 43.2893977372]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f0a8e05bcbe2af37231df19ddce5752a8de01e5", "fields": {"nom_de_la_commune": "POUY", "libell_d_acheminement": "POUY", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65368"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9ffe93395ad91e4e81cba0931a597d9dbbd1228", "fields": {"nom_de_la_commune": "POUZAC", "libell_d_acheminement": "POUZAC", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65370"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "300ca196d3bbb117d8a555c33d1310eba37417bb", "fields": {"nom_de_la_commune": "SABARROS", "libell_d_acheminement": "SABARROS", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65381"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e94178719eb08509858837978e4dc3255a79c33", "fields": {"nom_de_la_commune": "ST ARROMAN", "libell_d_acheminement": "ST ARROMAN", "code_postal": "65250", "coordonnees_gps": [43.0306895829, 0.387562975856], "code_commune_insee": "65385"}, "geometry": {"type": "Point", "coordinates": [0.387562975856, 43.0306895829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52e77dae529762d59830ab55bbe8681d53ada93d", "fields": {"nom_de_la_commune": "ST LANNE", "libell_d_acheminement": "ST LANNE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65387"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f1d2eab3a8e40493ed811c10828e17f80238ada", "fields": {"nom_de_la_commune": "SARROUILLES", "libell_d_acheminement": "SARROUILLES", "code_postal": "65600", "coordonnees_gps": [43.2273906132, 0.117609350526], "code_commune_insee": "65410"}, "geometry": {"type": "Point", "coordinates": [0.117609350526, 43.2273906132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c292ad19e6cf3008f69d05db41b43ecfc32b1101", "fields": {"nom_de_la_commune": "SENTOUS", "libell_d_acheminement": "SENTOUS", "code_postal": "65330", "coordonnees_gps": [43.2121588456, 0.389695156566], "code_commune_insee": "65419"}, "geometry": {"type": "Point", "coordinates": [0.389695156566, 43.2121588456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a3406e6cebfccc6b0aa9cc9e4b73174942280fc", "fields": {"nom_de_la_commune": "SERE RUSTAING", "libell_d_acheminement": "SERE RUSTAING", "code_postal": "65220", "coordonnees_gps": [43.3060883041, 0.336975313607], "code_commune_insee": "65423"}, "geometry": {"type": "Point", "coordinates": [0.336975313607, 43.3060883041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8741a926034278477b1d01656c582c160185da5d", "fields": {"nom_de_la_commune": "SINZOS", "libell_d_acheminement": "SINZOS", "code_postal": "65190", "coordonnees_gps": [43.1910233781, 0.247081706859], "code_commune_insee": "65426"}, "geometry": {"type": "Point", "coordinates": [0.247081706859, 43.1910233781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6715aa8f79ace7c1bbd2dd5f801584b4fa1fb94e", "fields": {"nom_de_la_commune": "SOUES", "libell_d_acheminement": "SOUES", "code_postal": "65430", "coordonnees_gps": [43.206244803, 0.0988685553871], "code_commune_insee": "65433"}, "geometry": {"type": "Point", "coordinates": [0.0988685553871, 43.206244803]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8424169ac00070d89c53ff8a0ce93eb38850dd7", "fields": {"nom_de_la_commune": "SOULOM", "libell_d_acheminement": "SOULOM", "code_postal": "65260", "coordonnees_gps": [42.9464075776, -0.0299417216939], "code_commune_insee": "65435"}, "geometry": {"type": "Point", "coordinates": [-0.0299417216939, 42.9464075776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d57f086fe3ed8ea3aa916c8aa053168c7e5229fa", "fields": {"nom_de_la_commune": "THUY", "libell_d_acheminement": "THUY", "code_postal": "65350", "coordonnees_gps": [43.2779016601, 0.195544066048], "code_commune_insee": "65443"}, "geometry": {"type": "Point", "coordinates": [0.195544066048, 43.2779016601]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "034cfced37796583aab3909d27c55e26c631e4fe", "fields": {"nom_de_la_commune": "TOSTAT", "libell_d_acheminement": "TOSTAT", "code_postal": "65140", "coordonnees_gps": [43.3753826494, 0.157344446481], "code_commune_insee": "65446"}, "geometry": {"type": "Point", "coordinates": [0.157344446481, 43.3753826494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00938e508671e0b124fca1bb6f6ab3c3e0643f0a", "fields": {"nom_de_la_commune": "TREBONS", "libell_d_acheminement": "TREBONS", "code_postal": "65200", "coordonnees_gps": [43.0346588013, 0.142823788541], "code_commune_insee": "65451"}, "geometry": {"type": "Point", "coordinates": [0.142823788541, 43.0346588013]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0fc2342185c116b806848dc67b004757acf7eb7", "fields": {"nom_de_la_commune": "TROUBAT", "libell_d_acheminement": "TROUBAT", "code_postal": "65370", "coordonnees_gps": [42.9421578306, 0.54711750308], "code_commune_insee": "65453"}, "geometry": {"type": "Point", "coordinates": [0.54711750308, 42.9421578306]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c7f9905ca65b541086101be4c581a154cfbd398", "fields": {"nom_de_la_commune": "VILLEPREUX", "libell_d_acheminement": "VILLEPREUX", "code_postal": "78450", "coordonnees_gps": [48.8376725842, 2.00127278452], "code_commune_insee": "78674"}, "geometry": {"type": "Point", "coordinates": [2.00127278452, 48.8376725842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7f9055528cc3fa4c1d6adc648f84dfa15b37e56", "fields": {"nom_de_la_commune": "VILLIERS LE MAHIEU", "libell_d_acheminement": "VILLIERS LE MAHIEU", "code_postal": "78770", "coordonnees_gps": [48.8635257362, 1.79608711913], "code_commune_insee": "78681"}, "geometry": {"type": "Point", "coordinates": [1.79608711913, 48.8635257362]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b95faaa535ee92437e8f4040e80c67dc74a2756", "fields": {"nom_de_la_commune": "AIRVAULT", "libell_d_acheminement": "AIRVAULT", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79005"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b8df27892e828abc6ca0e1f09e27f6859e1d4a", "fields": {"nom_de_la_commune": "ALLONNE", "libell_d_acheminement": "ALLONNE", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79007"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4efc40ff4017693f6e464cc91f42327491caf2e5", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "ULCOT", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c56fdc74c300287f69f1c356d28002fde4caff75", "fields": {"nom_de_la_commune": "ASNIERES EN POITOU", "libell_d_acheminement": "ASNIERES EN POITOU", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79015"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0d1dc26a21061b25d28ed07c1d25254d78b3c0f", "fields": {"nom_de_la_commune": "ASSAIS LES JUMEAUX", "libell_d_acheminement": "ASSAIS LES JUMEAUX", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79016"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54fcee5badeb30ed3b28c3046fb3de61b2c23a10", "fields": {"code_postal": "79600", "code_commune_insee": "79016", "libell_d_acheminement": "ASSAIS LES JUMEAUX", "ligne_5": "LES JUMEAUX", "nom_de_la_commune": "ASSAIS LES JUMEAUX", "coordonnees_gps": [46.8218182102, -0.136529587594]}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5c3591525abb2b6e6fddc1c3011210914323f14", "fields": {"nom_de_la_commune": "AUBIGNY", "libell_d_acheminement": "AUBIGNY", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79019"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2430bc1cbe6e7bd78479c01d2b353e5d608ed2d0", "fields": {"nom_de_la_commune": "AZAY SUR THOUET", "libell_d_acheminement": "AZAY SUR THOUET", "code_postal": "79130", "coordonnees_gps": [46.6158684946, -0.425275653202], "code_commune_insee": "79025"}, "geometry": {"type": "Point", "coordinates": [-0.425275653202, 46.6158684946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c703eddce5824d1abcb99c63e8cb0a2fbcb32a4a", "fields": {"nom_de_la_commune": "LA BATAILLE", "libell_d_acheminement": "LA BATAILLE", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79027"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "822d6197c1a2019579f0e55ee105073057bfa736", "fields": {"nom_de_la_commune": "BEAUVOIR SUR NIORT", "libell_d_acheminement": "BEAUVOIR SUR NIORT", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79031"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6e067db0d6ecdb6a89fdee6dc14845d11758a1e", "fields": {"nom_de_la_commune": "BESSINES", "libell_d_acheminement": "BESSINES", "code_postal": "79000", "coordonnees_gps": [46.3258954005, -0.471948799186], "code_commune_insee": "79034"}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebb27625f1824123446758dc49b9989a6bc9d95e", "fields": {"nom_de_la_commune": "BRESSUIRE", "libell_d_acheminement": "BRESSUIRE", "code_postal": "79300", "coordonnees_gps": [46.8619599412, -0.471600678729], "code_commune_insee": "79049"}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "109305ac7b33b0db76b43a2763102434c58e2b51", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "BEAULIEU SOUS BRESSUIRE", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "974f105bdd78c80c75e6e65b1d13dc853452a93b", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "NOIRTERRE", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d873931b766d48c99137ba58eab6da1bd7cc49d", "fields": {"nom_de_la_commune": "CELLES SUR BELLE", "libell_d_acheminement": "CELLES SUR BELLE", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79061"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed60380a3b876e69aa9f0397295d8a4e61cbf84", "fields": {"code_postal": "79700", "code_commune_insee": "79079", "libell_d_acheminement": "MAULEON", "ligne_5": "LA CHAPELLE LARGEAU", "nom_de_la_commune": "MAULEON", "coordonnees_gps": [46.9364849279, -0.753058283039]}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2685dbfa8cfa7f3031a2284e1ddd90860846e637", "fields": {"code_postal": "79170", "code_commune_insee": "79090", "libell_d_acheminement": "CHIZE", "ligne_5": "AVAILLES SUR CHIZE", "nom_de_la_commune": "CHIZE", "coordonnees_gps": [46.1222201678, -0.263662394431]}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea5d3a38a6f29b07315501cccd8223c5e93e830f", "fields": {"nom_de_la_commune": "FENIOUX", "libell_d_acheminement": "FENIOUX", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79119"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f179b39f88c96023bd437936d9eb5cdf04df0d2", "fields": {"code_postal": "79380", "code_commune_insee": "79123", "libell_d_acheminement": "LA FORET SUR SEVRE", "ligne_5": "LA RONDE", "nom_de_la_commune": "LA FORET SUR SEVRE", "coordonnees_gps": [46.7639583246, -0.657227871413]}, "geometry": {"type": "Point", "coordinates": [-0.657227871413, 46.7639583246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f57eb9439129e061e5384906614a201cd685be81", "fields": {"code_postal": "79380", "code_commune_insee": "79123", "libell_d_acheminement": "LA FORET SUR SEVRE", "ligne_5": "ST MARSAULT", "nom_de_la_commune": "LA FORET SUR SEVRE", "coordonnees_gps": [46.7639583246, -0.657227871413]}, "geometry": {"type": "Point", "coordinates": [-0.657227871413, 46.7639583246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b7f30be6d805d416d3a75a100de413b7ee8ace1", "fields": {"nom_de_la_commune": "FORS", "libell_d_acheminement": "FORS", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79125"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "431162961357e6998fd3acf07027121defd93592", "fields": {"nom_de_la_commune": "LES FOSSES", "libell_d_acheminement": "LES FOSSES", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79126"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b231829ba5f1d1cf46eb4799b63aabd55fc0fb67", "fields": {"nom_de_la_commune": "LA FOYE MONJAULT", "libell_d_acheminement": "LA FOYE MONJAULT", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79127"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83f219e522dbbc5c04d31b40aff52a1293c2b166", "fields": {"nom_de_la_commune": "FRANCOIS", "libell_d_acheminement": "FRANCOIS", "code_postal": "79260", "coordonnees_gps": [46.3656690304, -0.291882204635], "code_commune_insee": "79128"}, "geometry": {"type": "Point", "coordinates": [-0.291882204635, 46.3656690304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d36a539d3f42283bdd7d0a2eb4673ca2f9ceaf1", "fields": {"nom_de_la_commune": "GEAY", "libell_d_acheminement": "GEAY", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79131"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f90f30273b53f02029a93597f644d791102ad3da", "fields": {"nom_de_la_commune": "JUILLE", "libell_d_acheminement": "JUILLE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79142"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7d608433f81ab0a43d86dc55ce6902c24030351", "fields": {"nom_de_la_commune": "LHOUMOIS", "libell_d_acheminement": "LHOUMOIS", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79149"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9fe1fdcde46c454df27851929b84095323f825a", "fields": {"nom_de_la_commune": "LORIGNE", "libell_d_acheminement": "LORIGNE", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79152"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbe60781177cf66da03f7dbe95e605d58005e92c", "fields": {"nom_de_la_commune": "LOUBIGNE", "libell_d_acheminement": "LOUBIGNE", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79153"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c087c648a5f6ea99981fe1b08c9aedc3a06e9795", "fields": {"nom_de_la_commune": "LOUIN", "libell_d_acheminement": "LOUIN", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79156"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "676710b791ec7d45e916b53c1e7f0eba14d9c921", "fields": {"nom_de_la_commune": "LUCHE THOUARSAIS", "libell_d_acheminement": "LUCHE THOUARSAIS", "code_postal": "79330", "coordonnees_gps": [46.8866910448, -0.280997718978], "code_commune_insee": "79159"}, "geometry": {"type": "Point", "coordinates": [-0.280997718978, 46.8866910448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fafac8019f8a1d22e00eca334e26e09f9d429f7c", "fields": {"nom_de_la_commune": "LUSSERAY", "libell_d_acheminement": "LUSSERAY", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79160"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17bf4c1ec5b68a8e1e82529d74ab2e6bed50c1d7", "fields": {"nom_de_la_commune": "MAGNE", "libell_d_acheminement": "MAGNE", "code_postal": "79460", "coordonnees_gps": [46.3099521799, -0.55805579577], "code_commune_insee": "79162"}, "geometry": {"type": "Point", "coordinates": [-0.55805579577, 46.3099521799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e94406b36b804c15a15bdf538aa2504fb8e3a49", "fields": {"nom_de_la_commune": "MAIRE LEVESCAULT", "libell_d_acheminement": "MAIRE LEVESCAULT", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79163"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9abb1818b99fda9a2e6aeb23922f10b0d6671256", "fields": {"code_postal": "79100", "code_commune_insee": "79171", "libell_d_acheminement": "MAUZE THOUARSAIS", "ligne_5": "RIGNE", "nom_de_la_commune": "MAUZE THOUARSAIS", "coordonnees_gps": [46.9728352964, -0.169886662398]}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60a6a73e277983349a11068e0991932cb6f2c9b4", "fields": {"nom_de_la_commune": "MONTROUGE", "libell_d_acheminement": "MONTROUGE", "code_postal": "92120", "coordonnees_gps": [48.8152695492, 2.31739229511], "code_commune_insee": "92049"}, "geometry": {"type": "Point", "coordinates": [2.31739229511, 48.8152695492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d7bb775f63b023528819e50cfb6830857dda9d2", "fields": {"nom_de_la_commune": "PUTEAUX", "libell_d_acheminement": "PUTEAUX", "code_postal": "92800", "coordonnees_gps": [48.8837267791, 2.23798819786], "code_commune_insee": "92062"}, "geometry": {"type": "Point", "coordinates": [2.23798819786, 48.8837267791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b674682df6c942396ce990ece86dbe889c00019", "fields": {"nom_de_la_commune": "RUEIL MALMAISON", "libell_d_acheminement": "RUEIL MALMAISON", "code_postal": "92500", "coordonnees_gps": [48.8694433502, 2.17774350372], "code_commune_insee": "92063"}, "geometry": {"type": "Point", "coordinates": [2.17774350372, 48.8694433502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae770cc46fd8ac9fd6f07e6c0e42cedef6f0f8ae", "fields": {"nom_de_la_commune": "SCEAUX", "libell_d_acheminement": "SCEAUX", "code_postal": "92330", "coordonnees_gps": [48.7768435541, 2.29818849146], "code_commune_insee": "92071"}, "geometry": {"type": "Point", "coordinates": [2.29818849146, 48.7768435541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "351f15dcd97b61daa6a5562e9a8a82fbac387ddd", "fields": {"nom_de_la_commune": "AUBERVILLIERS", "libell_d_acheminement": "AUBERVILLIERS", "code_postal": "93300", "coordonnees_gps": [48.9126312095, 2.38445065454], "code_commune_insee": "93001"}, "geometry": {"type": "Point", "coordinates": [2.38445065454, 48.9126312095]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c56fa32623bd7da854dc596b132dedaafc0f964", "fields": {"nom_de_la_commune": "LE BOURGET", "libell_d_acheminement": "LE BOURGET", "code_postal": "93350", "coordonnees_gps": [48.9360294977, 2.42725334124], "code_commune_insee": "93013"}, "geometry": {"type": "Point", "coordinates": [2.42725334124, 48.9360294977]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e69e69e292b759df080ee0cda3044921a7b187b", "fields": {"nom_de_la_commune": "COUBRON", "libell_d_acheminement": "COUBRON", "code_postal": "93470", "coordonnees_gps": [48.917508483, 2.57625656428], "code_commune_insee": "93015"}, "geometry": {"type": "Point", "coordinates": [2.57625656428, 48.917508483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb05c5282fd9a1d93732f3cf736b875c186f8bc3", "fields": {"nom_de_la_commune": "LES LILAS", "libell_d_acheminement": "LES LILAS", "code_postal": "93260", "coordonnees_gps": [48.8814307657, 2.41995218789], "code_commune_insee": "93045"}, "geometry": {"type": "Point", "coordinates": [2.41995218789, 48.8814307657]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "281e2e46d242c6c70f778f777a6fcb1c233034bd", "fields": {"nom_de_la_commune": "NOISY LE SEC", "libell_d_acheminement": "NOISY LE SEC", "code_postal": "93130", "coordonnees_gps": [48.8912402494, 2.45891586026], "code_commune_insee": "93053"}, "geometry": {"type": "Point", "coordinates": [2.45891586026, 48.8912402494]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "750399b6aa1d2923fe7a4e3153e431f0fac19fc1", "fields": {"nom_de_la_commune": "TREMBLAY EN FRANCE", "libell_d_acheminement": "TREMBLAY EN FRANCE", "code_postal": "93290", "coordonnees_gps": [48.9785410017, 2.55473541662], "code_commune_insee": "93073"}, "geometry": {"type": "Point", "coordinates": [2.55473541662, 48.9785410017]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06095fa05a78460453b899d6d4efcef25b928d8d", "fields": {"nom_de_la_commune": "BOISSY ST LEGER", "libell_d_acheminement": "BOISSY ST LEGER", "code_postal": "94470", "coordonnees_gps": [48.7472376073, 2.5259450582], "code_commune_insee": "94004"}, "geometry": {"type": "Point", "coordinates": [2.5259450582, 48.7472376073]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2707f34d25c413447b5f77f0efb97a3a450fa7ed", "fields": {"nom_de_la_commune": "CACHAN", "libell_d_acheminement": "CACHAN", "code_postal": "94230", "coordonnees_gps": [48.7911645648, 2.33171907473], "code_commune_insee": "94016"}, "geometry": {"type": "Point", "coordinates": [2.33171907473, 48.7911645648]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90fe895238ae9885357d54d70481d9cb1afb35f0", "fields": {"nom_de_la_commune": "CHAMPIGNY SUR MARNE", "libell_d_acheminement": "CHAMPIGNY SUR MARNE", "code_postal": "94500", "coordonnees_gps": [48.8176869619, 2.51584557843], "code_commune_insee": "94017"}, "geometry": {"type": "Point", "coordinates": [2.51584557843, 48.8176869619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5df860a2e98d2abd7c951799048f146334923c56", "fields": {"nom_de_la_commune": "CHARENTON LE PONT", "libell_d_acheminement": "CHARENTON LE PONT", "code_postal": "94220", "coordonnees_gps": [48.8223756473, 2.40805462767], "code_commune_insee": "94018"}, "geometry": {"type": "Point", "coordinates": [2.40805462767, 48.8223756473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ca787a8e3ce95c4f66587b10078616cd3f7d51", "fields": {"nom_de_la_commune": "L HAY LES ROSES", "libell_d_acheminement": "L HAY LES ROSES", "code_postal": "94240", "coordonnees_gps": [48.7760896848, 2.33669657104], "code_commune_insee": "94038"}, "geometry": {"type": "Point", "coordinates": [2.33669657104, 48.7760896848]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c7626d4d4f4a6f2412a4815a5ef5c648d437226", "fields": {"nom_de_la_commune": "MANDRES LES ROSES", "libell_d_acheminement": "MANDRES LES ROSES", "code_postal": "94520", "coordonnees_gps": [48.7018918505, 2.55461467284], "code_commune_insee": "94047"}, "geometry": {"type": "Point", "coordinates": [2.55461467284, 48.7018918505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1781f73c1e4ad278d096192ca7b2ee0ef9d58f5e", "fields": {"nom_de_la_commune": "LA QUEUE EN BRIE", "libell_d_acheminement": "LA QUEUE EN BRIE", "code_postal": "94510", "coordonnees_gps": [48.7776236893, 2.5836227171], "code_commune_insee": "94060"}, "geometry": {"type": "Point", "coordinates": [2.5836227171, 48.7776236893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef1644aabb730a3ccd502666f720ec15591326d5", "fields": {"nom_de_la_commune": "ST MAUR DES FOSSES", "libell_d_acheminement": "ST MAUR DES FOSSES", "code_postal": "94100", "coordonnees_gps": [48.7989796618, 2.49424383679], "code_commune_insee": "94068"}, "geometry": {"type": "Point", "coordinates": [2.49424383679, 48.7989796618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7299815a2b129e6a05ae23860cea311c41f2870a", "fields": {"code_postal": "94210", "code_commune_insee": "94068", "libell_d_acheminement": "ST MAUR DES FOSSES", "ligne_5": "LA VARENNE ST HILAIRE", "nom_de_la_commune": "ST MAUR DES FOSSES", "coordonnees_gps": [48.7989796618, 2.49424383679]}, "geometry": {"type": "Point", "coordinates": [2.49424383679, 48.7989796618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8813e599e36885b7e97a50dbc47fb9f598f94ef", "fields": {"code_postal": "94370", "code_commune_insee": "94071", "libell_d_acheminement": "SUCY EN BRIE", "ligne_5": "LES BRUYERES", "nom_de_la_commune": "SUCY EN BRIE", "coordonnees_gps": [48.7657010886, 2.53346938213]}, "geometry": {"type": "Point", "coordinates": [2.53346938213, 48.7657010886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb5228f075c98ee5b6fb6f81aa0cf82c666bda2b", "fields": {"nom_de_la_commune": "AVERNES", "libell_d_acheminement": "AVERNES", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95040"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e973a7f6dd09fcd9a0dd67c1cf4c79617a3b48b", "fields": {"nom_de_la_commune": "LE BELLAY EN VEXIN", "libell_d_acheminement": "LE BELLAY EN VEXIN", "code_postal": "95750", "coordonnees_gps": [49.1561369779, 1.91918704594], "code_commune_insee": "95054"}, "geometry": {"type": "Point", "coordinates": [1.91918704594, 49.1561369779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7098af0be32efce936361fa084605ab5ba69597", "fields": {"nom_de_la_commune": "BELLOY EN FRANCE", "libell_d_acheminement": "BELLOY EN FRANCE", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95056"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dabea61e40ef99fbc1ed2a7c4c3897e71093d6f8", "fields": {"nom_de_la_commune": "BERNES SUR OISE", "libell_d_acheminement": "BERNES SUR OISE", "code_postal": "95340", "coordonnees_gps": [49.1610028463, 2.26428490236], "code_commune_insee": "95058"}, "geometry": {"type": "Point", "coordinates": [2.26428490236, 49.1610028463]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad51171b25634b1c5aa220e59497137ed3b62a5e", "fields": {"nom_de_la_commune": "BETHEMONT LA FORET", "libell_d_acheminement": "BETHEMONT LA FORET", "code_postal": "95840", "coordonnees_gps": [49.0653892741, 2.2420258849], "code_commune_insee": "95061"}, "geometry": {"type": "Point", "coordinates": [2.2420258849, 49.0653892741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2fcb72f271f95619e3ee6c6fa122fb0ff45aa5a3", "fields": {"nom_de_la_commune": "BOISSY L AILLERIE", "libell_d_acheminement": "BOISSY L AILLERIE", "code_postal": "95650", "coordonnees_gps": [49.0831465949, 2.02625716292], "code_commune_insee": "95078"}, "geometry": {"type": "Point", "coordinates": [2.02625716292, 49.0831465949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3477d016a789083d0cce2c0eb57edefde4da92b7", "fields": {"nom_de_la_commune": "BRAY ET LU", "libell_d_acheminement": "BRAY ET LU", "code_postal": "95710", "coordonnees_gps": [49.1290552989, 1.69526260075], "code_commune_insee": "95101"}, "geometry": {"type": "Point", "coordinates": [1.69526260075, 49.1290552989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a0b62d0c383efc6cad8301cf6c7c594145476c48", "fields": {"code_postal": "95000", "code_commune_insee": "95127", "libell_d_acheminement": "CERGY", "ligne_5": "MENANDON", "nom_de_la_commune": "CERGY", "coordonnees_gps": [49.0378977963, 2.06061895699]}, "geometry": {"type": "Point", "coordinates": [2.06061895699, 49.0378977963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ac1b1b70f2a11df9c044375217eefbd88290d9", "fields": {"nom_de_la_commune": "EAUBONNE", "libell_d_acheminement": "EAUBONNE", "code_postal": "95600", "coordonnees_gps": [48.9906752112, 2.27748227881], "code_commune_insee": "95203"}, "geometry": {"type": "Point", "coordinates": [2.27748227881, 48.9906752112]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b23944409e3dec75d434ff35a559d4f5ff761aa1", "fields": {"nom_de_la_commune": "ENNERY", "libell_d_acheminement": "ENNERY", "code_postal": "95300", "coordonnees_gps": [49.0835669403, 2.10696203629], "code_commune_insee": "95211"}, "geometry": {"type": "Point", "coordinates": [2.10696203629, 49.0835669403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6db90966d06844c92191908c9b986f48b486c8bc", "fields": {"nom_de_la_commune": "EPIAIS RHUS", "libell_d_acheminement": "EPIAIS RHUS", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95213"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33d48dbe00b5a490c0449aec5070c204c2e62ae0", "fields": {"nom_de_la_commune": "EPINAY CHAMPLATREUX", "libell_d_acheminement": "EPINAY CHAMPLATREUX", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95214"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3284985b31fb5e55e9bf5ce156c47e20ab378428", "fields": {"nom_de_la_commune": "GONESSE", "libell_d_acheminement": "GONESSE", "code_postal": "95500", "coordonnees_gps": [48.9856270002, 2.45534121324], "code_commune_insee": "95277"}, "geometry": {"type": "Point", "coordinates": [2.45534121324, 48.9856270002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "399f3d75986228acd56334c188ca2c6bedf6ba65", "fields": {"nom_de_la_commune": "GOUZANGREZ", "libell_d_acheminement": "GOUZANGREZ", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95282"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65a43ca1273daaa27e44a5e994a0d8e52550e386", "fields": {"nom_de_la_commune": "HARAVILLIERS", "libell_d_acheminement": "HARAVILLIERS", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95298"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c8919eebb68dfc6919fafc0f1eab4f8396bc28a", "fields": {"nom_de_la_commune": "LABBEVILLE", "libell_d_acheminement": "LABBEVILLE", "code_postal": "95690", "coordonnees_gps": [49.140346815, 2.15942436133], "code_commune_insee": "95328"}, "geometry": {"type": "Point", "coordinates": [2.15942436133, 49.140346815]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b662d5e03830c3ad9f7a13b82669937f63a5e99", "fields": {"nom_de_la_commune": "LASSY", "libell_d_acheminement": "LASSY", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95331"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d690054939a0e4b1ffddaa4114a9d983b0f8286f", "fields": {"nom_de_la_commune": "MAGNY EN VEXIN", "libell_d_acheminement": "MAGNY EN VEXIN", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95355"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fdd14a1957e0a676a0c171483d526c7f971ec98d", "fields": {"nom_de_la_commune": "MERIEL", "libell_d_acheminement": "MERIEL", "code_postal": "95630", "coordonnees_gps": [49.0775759075, 2.21403948928], "code_commune_insee": "95392"}, "geometry": {"type": "Point", "coordinates": [2.21403948928, 49.0775759075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60b92184b8bb213ae7db5cfccfcdaae9938896f7", "fields": {"nom_de_la_commune": "MOISSELLES", "libell_d_acheminement": "MOISSELLES", "code_postal": "95570", "coordonnees_gps": [49.0548701683, 2.33369100298], "code_commune_insee": "95409"}, "geometry": {"type": "Point", "coordinates": [2.33369100298, 49.0548701683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "044cd8aad00e14f69252211aef6dc8639df61104", "fields": {"nom_de_la_commune": "MONTGEROULT", "libell_d_acheminement": "MONTGEROULT", "code_postal": "95650", "coordonnees_gps": [49.0831465949, 2.02625716292], "code_commune_insee": "95422"}, "geometry": {"type": "Point", "coordinates": [2.02625716292, 49.0831465949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b75217caa44d018a2b805bcec443c8190726a68", "fields": {"nom_de_la_commune": "MOURS", "libell_d_acheminement": "MOURS", "code_postal": "95260", "coordonnees_gps": [49.1373667054, 2.28877829148], "code_commune_insee": "95436"}, "geometry": {"type": "Point", "coordinates": [2.28877829148, 49.1373667054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caec2117bf7053e98929458425719591b8345a64", "fields": {"nom_de_la_commune": "MOUSSY", "libell_d_acheminement": "MOUSSY", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95438"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ce4ca6ff7d746db56a7aab56c97ddecc5d9e350", "fields": {"nom_de_la_commune": "NERVILLE LA FORET", "libell_d_acheminement": "NERVILLE LA FORET", "code_postal": "95590", "coordonnees_gps": [49.1078677101, 2.28470413018], "code_commune_insee": "95445"}, "geometry": {"type": "Point", "coordinates": [2.28470413018, 49.1078677101]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc6b9a9f8b50dbcca886fb0ca84f0006860249f", "fields": {"nom_de_la_commune": "NEUILLY EN VEXIN", "libell_d_acheminement": "NEUILLY EN VEXIN", "code_postal": "95640", "coordonnees_gps": [49.1530667957, 1.99234967968], "code_commune_insee": "95447"}, "geometry": {"type": "Point", "coordinates": [1.99234967968, 49.1530667957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dafb353d1b949b7585b114ac6ebe65c002a90b91", "fields": {"nom_de_la_commune": "PARMAIN", "libell_d_acheminement": "PARMAIN", "code_postal": "95620", "coordonnees_gps": [49.1222554248, 2.20125148071], "code_commune_insee": "95480"}, "geometry": {"type": "Point", "coordinates": [2.20125148071, 49.1222554248]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96ad823e32f4fecafad8272dbe4b34758506c8fd", "fields": {"nom_de_la_commune": "LE PLESSIS BOUCHARD", "libell_d_acheminement": "LE PLESSIS BOUCHARD", "code_postal": "95130", "coordonnees_gps": [48.9926867479, 2.22747200568], "code_commune_insee": "95491"}, "geometry": {"type": "Point", "coordinates": [2.22747200568, 48.9926867479]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8ef4dd88eb39d514ac88f6f41fb8383c93cc3e2", "fields": {"nom_de_la_commune": "ROISSY EN FRANCE", "libell_d_acheminement": "ROISSY EN FRANCE", "code_postal": "95700", "coordonnees_gps": [49.0063802146, 2.51398787772], "code_commune_insee": "95527"}, "geometry": {"type": "Point", "coordinates": [2.51398787772, 49.0063802146]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68fc5f70fa14205a4cabf4abac054f0231410a1e", "fields": {"nom_de_la_commune": "SAGY", "libell_d_acheminement": "SAGY", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95535"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68bc359065fa9b8648a52d3ec7bb60e36f6d8c86", "fields": {"nom_de_la_commune": "ST MARTIN DU TERTRE", "libell_d_acheminement": "ST MARTIN DU TERTRE", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95566"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6e5a01e5fdefae7ab4d78d0ccfdb7e1942ebbf", "fields": {"nom_de_la_commune": "SERAINCOURT", "libell_d_acheminement": "SERAINCOURT", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95592"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "647aa73db8257a2ce8fef947456f93e8958f478b", "fields": {"nom_de_la_commune": "SOISY SOUS MONTMORENCY", "libell_d_acheminement": "SOISY SOUS MONTMORENCY", "code_postal": "95230", "coordonnees_gps": [48.9883061292, 2.30107479116], "code_commune_insee": "95598"}, "geometry": {"type": "Point", "coordinates": [2.30107479116, 48.9883061292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2503c9a752c9d5c74041561d66394d3963c6525", "fields": {"nom_de_la_commune": "US", "libell_d_acheminement": "US", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95625"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aa9279cbbadb07f93cee1513bcb1a70b71cf9cd", "fields": {"nom_de_la_commune": "VALMONDOIS", "libell_d_acheminement": "VALMONDOIS", "code_postal": "95760", "coordonnees_gps": [49.0979523574, 2.18039661688], "code_commune_insee": "95628"}, "geometry": {"type": "Point", "coordinates": [2.18039661688, 49.0979523574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ef11fa92d4697feb8a79efc1753c70b8973ec43", "fields": {"nom_de_la_commune": "VIENNE EN ARTHIES", "libell_d_acheminement": "VIENNE EN ARTHIES", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95656"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55a8887b75fa8135cb82112e1349b3b76c032264", "fields": {"nom_de_la_commune": "VILLAINES SOUS BOIS", "libell_d_acheminement": "VILLAINES SOUS BOIS", "code_postal": "95570", "coordonnees_gps": [49.0548701683, 2.33369100298], "code_commune_insee": "95660"}, "geometry": {"type": "Point", "coordinates": [2.33369100298, 49.0548701683]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06b8cad0218dbae476e3941155a625e7f45caedc", "fields": {"nom_de_la_commune": "BASSE TERRE", "libell_d_acheminement": "BASSE TERRE", "code_postal": "97100", "coordonnees_gps": [16.000229725, -61.7284119107], "code_commune_insee": "97105"}, "geometry": {"type": "Point", "coordinates": [-61.7284119107, 16.000229725]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3a32465c836f3f4092845fdb4b77b08d3171b00", "fields": {"nom_de_la_commune": "GOURBEYRE", "libell_d_acheminement": "GOURBEYRE", "code_postal": "97113", "coordonnees_gps": [15.993855755, -61.6864386175], "code_commune_insee": "97109"}, "geometry": {"type": "Point", "coordinates": [-61.6864386175, 15.993855755]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abb12c02c459b4ae4b19570fcd473e98b118dba8", "fields": {"nom_de_la_commune": "LA DESIRADE", "libell_d_acheminement": "LA DESIRADE", "code_postal": "97127", "coordonnees_gps": [16.3116058289, -61.0528909428], "code_commune_insee": "97110"}, "geometry": {"type": "Point", "coordinates": [-61.0528909428, 16.3116058289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e46fdd1a87ce98742b194f7e1e6dd33c519552ff", "fields": {"nom_de_la_commune": "LE GOSIER", "libell_d_acheminement": "LE GOSIER", "code_postal": "97190", "coordonnees_gps": [16.2251928413, -61.4693969265], "code_commune_insee": "97113"}, "geometry": {"type": "Point", "coordinates": [-61.4693969265, 16.2251928413]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e47895b0d7ae63f6b67951366c4be0add046eb1c", "fields": {"nom_de_la_commune": "GOYAVE", "libell_d_acheminement": "GOYAVE", "code_postal": "97128", "coordonnees_gps": [16.1217743593, -61.6136927674], "code_commune_insee": "97114"}, "geometry": {"type": "Point", "coordinates": [-61.6136927674, 16.1217743593]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fad5122c357f139c55bb9241d4916269d87630cc", "fields": {"nom_de_la_commune": "PORT LOUIS", "libell_d_acheminement": "PORT LOUIS", "code_postal": "97117", "coordonnees_gps": [16.4261243637, -61.4958534694], "code_commune_insee": "97122"}, "geometry": {"type": "Point", "coordinates": [-61.4958534694, 16.4261243637]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "355c8a22c194f0a5df40b5bb2251b3a53c32e4c5", "fields": {"nom_de_la_commune": "ST LOUIS", "libell_d_acheminement": "ST LOUIS", "code_postal": "97134", "coordonnees_gps": [15.9661945569, -61.2759189177], "code_commune_insee": "97126"}, "geometry": {"type": "Point", "coordinates": [-61.2759189177, 15.9661945569]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4aa8cbf13888f97b6d45355b1bcf40f080a78aec", "fields": {"nom_de_la_commune": "INGRANDES DE TOURAINE", "libell_d_acheminement": "INGRANDES DE TOURAINE", "code_postal": "37140", "coordonnees_gps": [47.2862519023, 0.176713808559], "code_commune_insee": "37120"}, "geometry": {"type": "Point", "coordinates": [0.176713808559, 47.2862519023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d0b2df046e1387484bc7676cb32eda1814d722e", "fields": {"nom_de_la_commune": "LANGEAIS", "libell_d_acheminement": "LANGEAIS", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37123"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72e8aa45da56bf5a8e340b07372af8e9943ca66c", "fields": {"nom_de_la_commune": "LIGNIERES DE TOURAINE", "libell_d_acheminement": "LIGNIERES DE TOURAINE", "code_postal": "37130", "coordonnees_gps": [47.3409954265, 0.3808384658], "code_commune_insee": "37128"}, "geometry": {"type": "Point", "coordinates": [0.3808384658, 47.3409954265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3f344e8049f427bb6444877f63b16d21bfcf783", "fields": {"nom_de_la_commune": "LIGUEIL", "libell_d_acheminement": "LIGUEIL", "code_postal": "37240", "coordonnees_gps": [47.0872275791, 0.799532222561], "code_commune_insee": "37130"}, "geometry": {"type": "Point", "coordinates": [0.799532222561, 47.0872275791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9cccbb32aebd174892d998a19a2a0b7df87f18e8", "fields": {"nom_de_la_commune": "MARCILLY SUR MAULNE", "libell_d_acheminement": "MARCILLY SUR MAULNE", "code_postal": "37330", "coordonnees_gps": [47.5287774633, 0.309799495335], "code_commune_insee": "37146"}, "geometry": {"type": "Point", "coordinates": [0.309799495335, 47.5287774633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f39a1dd81dc21793c6a82dc57310ae67218d7ae", "fields": {"nom_de_la_commune": "LA MEMBROLLE SUR CHOISILLE", "libell_d_acheminement": "LA MEMBROLLE SUR CHOISILLE", "code_postal": "37390", "coordonnees_gps": [47.4694121661, 0.658891843594], "code_commune_insee": "37151"}, "geometry": {"type": "Point", "coordinates": [0.658891843594, 47.4694121661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9a34959a7d072fbd687c06e1ff2c70405a9f64", "fields": {"nom_de_la_commune": "MONTS", "libell_d_acheminement": "MONTS", "code_postal": "37260", "coordonnees_gps": [47.2480422288, 0.614098703872], "code_commune_insee": "37159"}, "geometry": {"type": "Point", "coordinates": [0.614098703872, 47.2480422288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7ac5c6b0e99d87088c9e53d1c34d75d24c475f", "fields": {"nom_de_la_commune": "NEUILLE PONT PIERRE", "libell_d_acheminement": "NEUILLE PONT PIERRE", "code_postal": "37360", "coordonnees_gps": [47.5289315618, 0.576894142963], "code_commune_insee": "37167"}, "geometry": {"type": "Point", "coordinates": [0.576894142963, 47.5289315618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab97100726f9a7be819bb2bf5d4d991c41e5c7c8", "fields": {"nom_de_la_commune": "NEUVY LE ROI", "libell_d_acheminement": "NEUVY LE ROI", "code_postal": "37370", "coordonnees_gps": [47.6208871618, 0.568162771987], "code_commune_insee": "37170"}, "geometry": {"type": "Point", "coordinates": [0.568162771987, 47.6208871618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4648f68c9aa530d4a786174ef73a0b33268ed180", "fields": {"nom_de_la_commune": "NOIZAY", "libell_d_acheminement": "NOIZAY", "code_postal": "37210", "coordonnees_gps": [47.4342671644, 0.82289231323], "code_commune_insee": "37171"}, "geometry": {"type": "Point", "coordinates": [0.82289231323, 47.4342671644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d5d525770458aaec8921c844e0266bee7f32bd4", "fields": {"nom_de_la_commune": "NOUATRE", "libell_d_acheminement": "NOUATRE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37174"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e5c66fc65732063c4d06286af683273c72e4e5f", "fields": {"nom_de_la_commune": "NOUZILLY", "libell_d_acheminement": "NOUZILLY", "code_postal": "37380", "coordonnees_gps": [47.5261492712, 0.803507929992], "code_commune_insee": "37175"}, "geometry": {"type": "Point", "coordinates": [0.803507929992, 47.5261492712]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c3a57d76ff22d57ffb6bbbd435ae615b2913fb9", "fields": {"nom_de_la_commune": "PANZOULT", "libell_d_acheminement": "PANZOULT", "code_postal": "37220", "coordonnees_gps": [47.1270963382, 0.442126632207], "code_commune_insee": "37178"}, "geometry": {"type": "Point", "coordinates": [0.442126632207, 47.1270963382]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56346c698fbf70434f541686f2c6f6dda8155ad3", "fields": {"nom_de_la_commune": "PAULMY", "libell_d_acheminement": "PAULMY", "code_postal": "37350", "coordonnees_gps": [46.9281157121, 0.848481181713], "code_commune_insee": "37181"}, "geometry": {"type": "Point", "coordinates": [0.848481181713, 46.9281157121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11a2e22a6934d8544e9c1e79290fdf53a80a318b", "fields": {"nom_de_la_commune": "PERNAY", "libell_d_acheminement": "PERNAY", "code_postal": "37230", "coordonnees_gps": [47.4147332779, 0.547534714708], "code_commune_insee": "37182"}, "geometry": {"type": "Point", "coordinates": [0.547534714708, 47.4147332779]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "458d079dea1c103e0b521f75dc39fc4597c0114a", "fields": {"nom_de_la_commune": "POCE SUR CISSE", "libell_d_acheminement": "POCE SUR CISSE", "code_postal": "37530", "coordonnees_gps": [47.4512966922, 1.02080804038], "code_commune_insee": "37185"}, "geometry": {"type": "Point", "coordinates": [1.02080804038, 47.4512966922]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68cb372b083fd9a769f0ff0490fbe5abf27f3bc0", "fields": {"nom_de_la_commune": "PONT DE RUAN", "libell_d_acheminement": "PONT DE RUAN", "code_postal": "37260", "coordonnees_gps": [47.2480422288, 0.614098703872], "code_commune_insee": "37186"}, "geometry": {"type": "Point", "coordinates": [0.614098703872, 47.2480422288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6515c4de6d80ab9f6c2eb6034d80ecd2abdd0bce", "fields": {"nom_de_la_commune": "PORTS", "libell_d_acheminement": "PORTS SUR VIENNE", "code_postal": "37800", "coordonnees_gps": [47.0900297502, 0.599517537831], "code_commune_insee": "37187"}, "geometry": {"type": "Point", "coordinates": [0.599517537831, 47.0900297502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "245c8a45803a9958c7fb688cb326f7bd1400ee96", "fields": {"nom_de_la_commune": "REIGNAC SUR INDRE", "libell_d_acheminement": "REIGNAC SUR INDRE", "code_postal": "37310", "coordonnees_gps": [47.2139042851, 0.930506267461], "code_commune_insee": "37192"}, "geometry": {"type": "Point", "coordinates": [0.930506267461, 47.2139042851]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "888b83f540f78c866f78dd9d77996ff358ed3422", "fields": {"nom_de_la_commune": "LA RICHE", "libell_d_acheminement": "LA RICHE", "code_postal": "37520", "coordonnees_gps": [47.3813639721, 0.637958236655], "code_commune_insee": "37195"}, "geometry": {"type": "Point", "coordinates": [0.637958236655, 47.3813639721]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e0238851d1e38911a94a2d0532dd39ce5d5430", "fields": {"nom_de_la_commune": "RIVIERE", "libell_d_acheminement": "RIVIERE", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37201"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fe3763724e16e8ab7024b08a794b1bb4580fea6", "fields": {"nom_de_la_commune": "ROCHECORBON", "libell_d_acheminement": "ROCHECORBON", "code_postal": "37210", "coordonnees_gps": [47.4342671644, 0.82289231323], "code_commune_insee": "37203"}, "geometry": {"type": "Point", "coordinates": [0.82289231323, 47.4342671644]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a029ccdf9ee509d67efb9d94ee9e00b8de371cdf", "fields": {"nom_de_la_commune": "ST AVERTIN", "libell_d_acheminement": "ST AVERTIN", "code_postal": "37550", "coordonnees_gps": [47.3561409994, 0.738500345816], "code_commune_insee": "37208"}, "geometry": {"type": "Point", "coordinates": [0.738500345816, 47.3561409994]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "533601b2b1307ded3936173fc38afd1a870bc18e", "fields": {"nom_de_la_commune": "ST BENOIT LA FORET", "libell_d_acheminement": "ST BENOIT LA FORET", "code_postal": "37500", "coordonnees_gps": [47.1545916278, 0.232944754447], "code_commune_insee": "37210"}, "geometry": {"type": "Point", "coordinates": [0.232944754447, 47.1545916278]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e083c0585f925d08306ad03a12f8e697a201b972", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "LE GUEDENIAU", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179fd14800c651dd937cfe42773e5ab5470767ae", "fields": {"code_postal": "49150", "code_commune_insee": "49018", "libell_d_acheminement": "BAUGE EN ANJOU", "ligne_5": "ST MARTIN D ARCE", "nom_de_la_commune": "BAUGE EN ANJOU", "coordonnees_gps": [47.5402607075, -0.0974658784366]}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "087c9b1aa813be33c97dd850956e995706222779", "fields": {"code_postal": "49250", "code_commune_insee": "49021", "libell_d_acheminement": "BEAUFORT EN ANJOU", "ligne_5": "GEE", "nom_de_la_commune": "BEAUFORT EN ANJOU", "coordonnees_gps": [47.4313983805, -0.244193438131]}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45669a629ae86331860f15c08fda8c70d6d63839", "fields": {"nom_de_la_commune": "BEAULIEU SUR LAYON", "libell_d_acheminement": "BEAULIEU SUR LAYON", "code_postal": "49750", "coordonnees_gps": [47.2426647325, -0.667761115453], "code_commune_insee": "49022"}, "geometry": {"type": "Point", "coordinates": [-0.667761115453, 47.2426647325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0288d71330579be0ce49d528989397cb8a85db77", "fields": {"code_postal": "49510", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "JALLAIS", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2126550508, -0.983267587264]}, "geometry": {"type": "Point", "coordinates": [-0.983267587264, 47.2126550508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3466ce34ff67600c547f47bccaa5ca9c9f78ceb8", "fields": {"code_postal": "49510", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "LA JUBAUDIERE", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2126550508, -0.983267587264]}, "geometry": {"type": "Point", "coordinates": [-0.983267587264, 47.2126550508]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1675a4b263fb92692133c7cc6c6751a188e0ed6a", "fields": {"code_postal": "49600", "code_commune_insee": "49023", "libell_d_acheminement": "BEAUPREAU EN MAUGES", "ligne_5": "GESTE", "nom_de_la_commune": "BEAUPREAU EN MAUGES", "coordonnees_gps": [47.2158259627, -0.988419647755]}, "geometry": {"type": "Point", "coordinates": [-0.988419647755, 47.2158259627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5a72598be62dbfadd20588f70e53ea7c9578665", "fields": {"nom_de_la_commune": "BEGROLLES EN MAUGES", "libell_d_acheminement": "BEGROLLES EN MAUGES", "code_postal": "49122", "coordonnees_gps": [47.1332874312, -0.894051156902], "code_commune_insee": "49027"}, "geometry": {"type": "Point", "coordinates": [-0.894051156902, 47.1332874312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0115d019b229491524e18ec0a3b9c985d2b6b694", "fields": {"code_postal": "49320", "code_commune_insee": "49029", "libell_d_acheminement": "BLAISON ST SULPICE", "ligne_5": "ST SULPICE", "nom_de_la_commune": "BLAISON ST SULPICE", "coordonnees_gps": [47.3445084599, -0.383825339756]}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "040eaff44d31ddbe4fbb9b78e22dbed3241cce2b", "fields": {"nom_de_la_commune": "BRAIN SUR ALLONNES", "libell_d_acheminement": "BRAIN SUR ALLONNES", "code_postal": "49650", "coordonnees_gps": [47.3050801952, 0.0400351360047], "code_commune_insee": "49041"}, "geometry": {"type": "Point", "coordinates": [0.0400351360047, 47.3050801952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9267b98ca566857bdb62afa34604e4e7d7774193", "fields": {"nom_de_la_commune": "BREIL", "libell_d_acheminement": "BREIL", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49044"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43fddcadddce76e4094be47993650b5bd2f0f5d2", "fields": {"nom_de_la_commune": "BROSSAY", "libell_d_acheminement": "BROSSAY", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49053"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "030790ef2405f8b365ead9b44106be71254b169d", "fields": {"nom_de_la_commune": "CHACE", "libell_d_acheminement": "CHACE", "code_postal": "49400", "coordonnees_gps": [47.2533599269, -0.096565442499], "code_commune_insee": "49060"}, "geometry": {"type": "Point", "coordinates": [-0.096565442499, 47.2533599269]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e1ba56fe4eeb4eadf11972421f23def6bb10d4c", "fields": {"nom_de_la_commune": "LA CHAPELLE HULLIN", "libell_d_acheminement": "LA CHAPELLE HULLIN", "code_postal": "49420", "coordonnees_gps": [47.7331911068, -1.15116787208], "code_commune_insee": "49073"}, "geometry": {"type": "Point", "coordinates": [-1.15116787208, 47.7331911068]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b0a7cf4f3e3f80b9d85a84c75785f22d4124d9", "fields": {"nom_de_la_commune": "LA CHAPELLE ST LAUD", "libell_d_acheminement": "LA CHAPELLE ST LAUD", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49076"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f318df524ad1c87db00e2f69d704f1033c25d853", "fields": {"nom_de_la_commune": "LA CHAPELLE SUR OUDON", "libell_d_acheminement": "LA CHAPELLE SUR OUDON", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49077"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d84b61267fbbb1d76c2d4f215c5da510831d8e37", "fields": {"nom_de_la_commune": "CHARCE ST ELLIER SUR AUBANCE", "libell_d_acheminement": "CHARCE ST ELLIER SUR AUBANCE", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49078"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2d12689cf093773df7a6c865cdc28f6f07960b5", "fields": {"code_postal": "49320", "code_commune_insee": "49078", "libell_d_acheminement": "CHARCE ST ELLIER SUR AUBANCE", "ligne_5": "ST ELLIER", "nom_de_la_commune": "CHARCE ST ELLIER SUR AUBANCE", "coordonnees_gps": [47.3445084599, -0.383825339756]}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a84d90a1f9385bcab513f37877738b47315c5a", "fields": {"nom_de_la_commune": "CHATELAIS", "libell_d_acheminement": "CHATELAIS", "code_postal": "49520", "coordonnees_gps": [47.7119047225, -1.00078562613], "code_commune_insee": "49081"}, "geometry": {"type": "Point", "coordinates": [-1.00078562613, 47.7119047225]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a8c07965ef654813f94dbdc1bf7f2394dab1bef", "fields": {"nom_de_la_commune": "CHAVAIGNES", "libell_d_acheminement": "CHAVAIGNES", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49087"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a79e192fdde66da70b66345d724ac7c2151296eb", "fields": {"nom_de_la_commune": "CHAZE SUR ARGOS", "libell_d_acheminement": "CHAZE SUR ARGOS", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49089"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72069ea7786997652f160254812d54d59b2f4da2", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "COSSE D ANJOU", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "371911375c4fcd218c5517ba22ff35c838f14486", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "MELAY", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2e9e315d57d8944203a56a0c3b4fccd2145f388", "fields": {"code_postal": "49120", "code_commune_insee": "49092", "libell_d_acheminement": "CHEMILLE EN ANJOU", "ligne_5": "ST LEZIN", "nom_de_la_commune": "CHEMILLE EN ANJOU", "coordonnees_gps": [47.2129709341, -0.724371217207]}, "geometry": {"type": "Point", "coordinates": [-0.724371217207, 47.2129709341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94a0006e70acaa0e998e9f4911898f3bef066c12", "fields": {"code_postal": "49300", "code_commune_insee": "49099", "libell_d_acheminement": "CHOLET", "ligne_5": "LE PUY ST BONNET", "nom_de_la_commune": "CHOLET", "coordonnees_gps": [47.0459625077, -0.876963134951]}, "geometry": {"type": "Point", "coordinates": [-0.876963134951, 47.0459625077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8562ebbf1750756662a459ff3c724876a34cd979", "fields": {"nom_de_la_commune": "CIZAY LA MADELEINE", "libell_d_acheminement": "CIZAY LA MADELEINE", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49100"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef5b0c235d15bccc59d102e2db0328a8e9b82c6e", "fields": {"nom_de_la_commune": "CONCOURSON SUR LAYON", "libell_d_acheminement": "CONCOURSON SUR LAYON", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49104"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ac15d513b8c1fa2c9fc58ea8b3799ed002986a8", "fields": {"nom_de_la_commune": "CONTIGNE", "libell_d_acheminement": "CONTIGNE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49105"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e11c03cbaddd97c99ee2721826fa9f817837e53c", "fields": {"nom_de_la_commune": "LA CORNUAILLE", "libell_d_acheminement": "LA CORNUAILLE", "code_postal": "49440", "coordonnees_gps": [47.5742354301, -1.03309048428], "code_commune_insee": "49108"}, "geometry": {"type": "Point", "coordinates": [-1.03309048428, 47.5742354301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ced9c7a086f897030bb3efbe0bf65faaf6ebc0e1", "fields": {"nom_de_la_commune": "CORON", "libell_d_acheminement": "CORON", "code_postal": "49690", "coordonnees_gps": [47.1203300309, -0.635811367413], "code_commune_insee": "49109"}, "geometry": {"type": "Point", "coordinates": [-0.635811367413, 47.1203300309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "817338ee6f899f840969833ebdad867c3823a727", "fields": {"nom_de_la_commune": "COUTURES", "libell_d_acheminement": "COUTURES", "code_postal": "49320", "coordonnees_gps": [47.3445084599, -0.383825339756], "code_commune_insee": "49115"}, "geometry": {"type": "Point", "coordinates": [-0.383825339756, 47.3445084599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09c35a3ab502fc9097fab977b811e305c7541aae", "fields": {"nom_de_la_commune": "ECUILLE", "libell_d_acheminement": "ECUILLE", "code_postal": "49460", "coordonnees_gps": [47.5717691196, -0.578911791129], "code_commune_insee": "49130"}, "geometry": {"type": "Point", "coordinates": [-0.578911791129, 47.5717691196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c3694c1a29cbdca14298a9617c25c0d241a1d96", "fields": {"nom_de_la_commune": "ETRICHE", "libell_d_acheminement": "ETRICHE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49132"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "819ff11fe4d49a0c1f3bbb7f87f75807b7b6dbde", "fields": {"nom_de_la_commune": "FENEU", "libell_d_acheminement": "FENEU", "code_postal": "49460", "coordonnees_gps": [47.5717691196, -0.578911791129], "code_commune_insee": "49135"}, "geometry": {"type": "Point", "coordinates": [-0.578911791129, 47.5717691196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa46dbd44636e63dbdd5eca73eaa60d7e959165", "fields": {"code_postal": "49250", "code_commune_insee": "49138", "libell_d_acheminement": "LES BOIS D ANJOU", "ligne_5": "FONTAINE GUERIN", "nom_de_la_commune": "LES BOIS D ANJOU", "coordonnees_gps": [47.4313983805, -0.244193438131]}, "geometry": {"type": "Point", "coordinates": [-0.244193438131, 47.4313983805]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e34570b71addea8108f3621a70d931c983f52e20", "fields": {"nom_de_la_commune": "FREIGNE", "libell_d_acheminement": "FREIGNE", "code_postal": "49440", "coordonnees_gps": [47.5742354301, -1.03309048428], "code_commune_insee": "49144"}, "geometry": {"type": "Point", "coordinates": [-1.03309048428, 47.5742354301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "937410c4721ca1267aa82a871328f22eaa02101d", "fields": {"code_postal": "49350", "code_commune_insee": "49149", "libell_d_acheminement": "GENNES VAL DE LOIRE", "ligne_5": "LE THOUREIL", "nom_de_la_commune": "GENNES VAL DE LOIRE", "coordonnees_gps": [47.3419898447, -0.231335175854]}, "geometry": {"type": "Point", "coordinates": [-0.231335175854, 47.3419898447]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc62bf4a294981d614c2941282f07d8a8d74b93", "fields": {"nom_de_la_commune": "INGRANDES LE FRESNE SUR LOIRE", "libell_d_acheminement": "INGRANDES LE FRESNE SUR LOIRE", "code_postal": "49123", "coordonnees_gps": [47.4332447625, -0.895504618393], "code_commune_insee": "49160"}, "geometry": {"type": "Point", "coordinates": [-0.895504618393, 47.4332447625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6a323611fcde2b559d32ee91e9f324a726c841c", "fields": {"code_postal": "49123", "code_commune_insee": "49160", "libell_d_acheminement": "INGRANDES LE FRESNE SUR LOIRE", "ligne_5": "LE FRESNE SUR LOIRE", "nom_de_la_commune": "INGRANDES LE FRESNE SUR LOIRE", "coordonnees_gps": [47.4332447625, -0.895504618393]}, "geometry": {"type": "Point", "coordinates": [-0.895504618393, 47.4332447625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9370a66b3dc4cfec6009a229be8f277dd7ccedf", "fields": {"nom_de_la_commune": "LA JAILLE YVON", "libell_d_acheminement": "LA JAILLE YVON", "code_postal": "49220", "coordonnees_gps": [47.6290283416, -0.733017824354], "code_commune_insee": "49161"}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77937c87d7770e5d00ab85d1af5e6bb06dbbae0a", "fields": {"nom_de_la_commune": "LA LANDE CHASLES", "libell_d_acheminement": "LA LANDE CHASLES", "code_postal": "49150", "coordonnees_gps": [47.5402607075, -0.0974658784366], "code_commune_insee": "49171"}, "geometry": {"type": "Point", "coordinates": [-0.0974658784366, 47.5402607075]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c6ea3aa87fe0774c7858a4b67dd2c12d20b206c", "fields": {"nom_de_la_commune": "LASSE", "libell_d_acheminement": "LASSE", "code_postal": "49490", "coordonnees_gps": [47.532256876, 0.101245038698], "code_commune_insee": "49173"}, "geometry": {"type": "Point", "coordinates": [0.101245038698, 47.532256876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bdf0d9bb039be6d3bfb108ec32ac63a5caafe15", "fields": {"nom_de_la_commune": "LOUVAINES", "libell_d_acheminement": "LOUVAINES", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49184"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d037f2cb0265f8956c6c51d679a7b9383a6d73a7", "fields": {"nom_de_la_commune": "MARCE", "libell_d_acheminement": "MARCE", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49188"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ad004c27a443917fc4747b099f04488d7bd0b5", "fields": {"nom_de_la_commune": "MARIGNE", "libell_d_acheminement": "MARIGNE", "code_postal": "49330", "coordonnees_gps": [47.6948404038, -0.538945863919], "code_commune_insee": "49189"}, "geometry": {"type": "Point", "coordinates": [-0.538945863919, 47.6948404038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07630d62c088447bcf71df6dcdb950ece5a74edf", "fields": {"nom_de_la_commune": "MARTIGNE BRIAND", "libell_d_acheminement": "MARTIGNE BRIAND", "code_postal": "49540", "coordonnees_gps": [47.1719461736, -0.518340326258], "code_commune_insee": "49191"}, "geometry": {"type": "Point", "coordinates": [-0.518340326258, 47.1719461736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8042bbb04acfe8176e602b738ce07d8277e7607", "fields": {"nom_de_la_commune": "LE MAY SUR EVRE", "libell_d_acheminement": "LE MAY SUR EVRE", "code_postal": "49122", "coordonnees_gps": [47.1332874312, -0.894051156902], "code_commune_insee": "49193"}, "geometry": {"type": "Point", "coordinates": [-0.894051156902, 47.1332874312]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7efa56608883ad2b2b8bdb8b5f6d8bc675f621ea", "fields": {"nom_de_la_commune": "MAZIERES EN MAUGES", "libell_d_acheminement": "MAZIERES EN MAUGES", "code_postal": "49280", "coordonnees_gps": [47.0523447645, -0.911452920256], "code_commune_insee": "49195"}, "geometry": {"type": "Point", "coordinates": [-0.911452920256, 47.0523447645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4955eef7b4ec328a30e22d155533e19db638fb1", "fields": {"nom_de_la_commune": "MONTFORT", "libell_d_acheminement": "MONTFORT", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49207"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08e77b04a1ba806d8962b8be8160ff23c6087a39", "fields": {"nom_de_la_commune": "MONTGUILLON", "libell_d_acheminement": "MONTGUILLON", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49208"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93ab30c09e304df5b10dd75e8f9c5f6890b3e6c", "fields": {"nom_de_la_commune": "MONTREUIL SUR LOIR", "libell_d_acheminement": "MONTREUIL SUR LOIR", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49216"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1b7ae8ff5344c40c3b055bddf2c9ea9326994b7", "fields": {"code_postal": "49110", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "LA BOISSIERE SUR EVRE", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68c868a89ea6e928095b7c9ae0166359b0b4ef72", "fields": {"code_postal": "49110", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "ST PIERRE MONTLIMART", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55de3064bc39bb10de6d79ab077e03797043e9e3", "fields": {"code_postal": "49110", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "ST REMY EN MAUGES", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.2803686932, -0.928193282699]}, "geometry": {"type": "Point", "coordinates": [-0.928193282699, 47.2803686932]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dc0dd64d395340303eea016fa88d1a7dec12fca", "fields": {"code_postal": "49270", "code_commune_insee": "49218", "libell_d_acheminement": "MONTREVAULT SUR EVRE", "ligne_5": "LE FUILET", "nom_de_la_commune": "MONTREVAULT SUR EVRE", "coordonnees_gps": [47.3117024757, -1.22801312221]}, "geometry": {"type": "Point", "coordinates": [-1.22801312221, 47.3117024757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bcd0626d2f33a327cce1223e5f35d939ca08093", "fields": {"nom_de_la_commune": "MORANNES SUR SARTHE", "libell_d_acheminement": "MORANNES SUR SARTHE", "code_postal": "49640", "coordonnees_gps": [47.7052254952, -0.382455900897], "code_commune_insee": "49220"}, "geometry": {"type": "Point", "coordinates": [-0.382455900897, 47.7052254952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c44249452bbccebe8fdbd0461878a23b13e06fb", "fields": {"code_postal": "49640", "code_commune_insee": "49220", "libell_d_acheminement": "MORANNES SUR SARTHE", "ligne_5": "CHEMIRE SUR SARTHE", "nom_de_la_commune": "MORANNES SUR SARTHE", "coordonnees_gps": [47.7052254952, -0.382455900897]}, "geometry": {"type": "Point", "coordinates": [-0.382455900897, 47.7052254952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e44229918452c97b3692384bcc4dd442c5566fd1", "fields": {"nom_de_la_commune": "PARNAY", "libell_d_acheminement": "PARNAY", "code_postal": "49730", "coordonnees_gps": [47.2331093942, 0.0334548671675], "code_commune_insee": "49235"}, "geometry": {"type": "Point", "coordinates": [0.0334548671675, 47.2331093942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96deecc2b3170a8e455802f447c4b82f826910be", "fields": {"code_postal": "49290", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "BOURGNEUF EN MAUGES", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3431019383, -0.806177214608]}, "geometry": {"type": "Point", "coordinates": [-0.806177214608, 47.3431019383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60e27e9fe6c28b075f0da70832f8aa6f16cb7326", "fields": {"code_postal": "49410", "code_commune_insee": "49244", "libell_d_acheminement": "MAUGES SUR LOIRE", "ligne_5": "LE MARILLAIS", "nom_de_la_commune": "MAUGES SUR LOIRE", "coordonnees_gps": [47.3430346385, -0.869718190722]}, "geometry": {"type": "Point", "coordinates": [-0.869718190722, 47.3430346385]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b7134094bf04b16866e1c1cfd4140217859941b", "fields": {"nom_de_la_commune": "ROCHEFORT SUR LOIRE", "libell_d_acheminement": "ROCHEFORT SUR LOIRE", "code_postal": "49190", "coordonnees_gps": [47.3455543641, -0.637191878311], "code_commune_insee": "49259"}, "geometry": {"type": "Point", "coordinates": [-0.637191878311, 47.3455543641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "621648f95327b28d2a492d3062549a7a9c5b4f0c", "fields": {"nom_de_la_commune": "STE GEMMES D ANDIGNE", "libell_d_acheminement": "STE GEMMES D ANDIGNE", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49277"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f4febe92cd3dc7b3db50c097fde3996862cc1d7", "fields": {"nom_de_la_commune": "ST GEORGES SUR LAYON", "libell_d_acheminement": "ST GEORGES SUR LAYON", "code_postal": "49700", "coordonnees_gps": [47.2078633163, -0.289977588534], "code_commune_insee": "49282"}, "geometry": {"type": "Point", "coordinates": [-0.289977588534, 47.2078633163]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2b5953342d2c09bef975a387f18bf1e58709760", "fields": {"code_postal": "49190", "code_commune_insee": "49292", "libell_d_acheminement": "VAL DU LAYON", "ligne_5": "ST AUBIN DE LUIGNE", "nom_de_la_commune": "VAL DU LAYON", "coordonnees_gps": [47.3455543641, -0.637191878311]}, "geometry": {"type": "Point", "coordinates": [-0.637191878311, 47.3455543641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "734db65f3907d3bcbe9d3131c3e7ff2262babca2", "fields": {"code_postal": "49230", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "ST GERMAIN SUR MOINE", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "361cc1795a7b61ae42ac1af905d49e79903af3aa", "fields": {"code_postal": "49450", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "LA RENAUDIERE", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1753425771, -0.989795900274]}, "geometry": {"type": "Point", "coordinates": [-0.989795900274, 47.1753425771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24ea105105026ffe562f8391c42b52fffbd76018", "fields": {"code_postal": "49450", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "ST MACAIRE EN MAUGES", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1753425771, -0.989795900274]}, "geometry": {"type": "Point", "coordinates": [-0.989795900274, 47.1753425771]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c58306e40fe7ce7bf2c45e71687df9e1efcd5f71", "fields": {"code_postal": "49660", "code_commune_insee": "49301", "libell_d_acheminement": "SEVREMOINE", "ligne_5": "TORFOU", "nom_de_la_commune": "SEVREMOINE", "coordonnees_gps": [47.1261064265, -0.998410418953]}, "geometry": {"type": "Point", "coordinates": [-0.998410418953, 47.1261064265]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55dcc225f573535307e311a3256b6d7525adf1a7", "fields": {"nom_de_la_commune": "ST MARTIN DE LA PLACE", "libell_d_acheminement": "ST MARTIN DE LA PLACE", "code_postal": "49160", "coordonnees_gps": [47.3844683998, -0.0956251907418], "code_commune_insee": "49304"}, "geometry": {"type": "Point", "coordinates": [-0.0956251907418, 47.3844683998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3807caac3f9b90ece09569832bcafbbf8eb78e62", "fields": {"code_postal": "49630", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "CORNE", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.4461983754, -0.297232608581]}, "geometry": {"type": "Point", "coordinates": [-0.297232608581, 47.4461983754]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f0e5d761607e1f0036931cbf95643e2c2f40187", "fields": {"code_postal": "49800", "code_commune_insee": "49307", "libell_d_acheminement": "LOIRE AUTHION", "ligne_5": "LA DAGUENIERE", "nom_de_la_commune": "LOIRE AUTHION", "coordonnees_gps": [47.4402094612, -0.379405488422]}, "geometry": {"type": "Point", "coordinates": [-0.379405488422, 47.4402094612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7afdf5e8785e1c66d26eaf97bf255fbda3241beb", "fields": {"nom_de_la_commune": "ST MELAINE SUR AUBANCE", "libell_d_acheminement": "ST MELAINE SUR AUBANCE", "code_postal": "49610", "coordonnees_gps": [47.3759967288, -0.537909548513], "code_commune_insee": "49308"}, "geometry": {"type": "Point", "coordinates": [-0.537909548513, 47.3759967288]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275281547e7b3d2fd3b414e64dc57b13abdf698e", "fields": {"nom_de_la_commune": "ST PHILBERT DU PEUPLE", "libell_d_acheminement": "ST PHILBERT DU PEUPLE", "code_postal": "49160", "coordonnees_gps": [47.3844683998, -0.0956251907418], "code_commune_insee": "49311"}, "geometry": {"type": "Point", "coordinates": [-0.0956251907418, 47.3844683998]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c2d49456a9c2aee768cbb770efbd97c95f4c1a3", "fields": {"nom_de_la_commune": "ST SAUVEUR DE FLEE", "libell_d_acheminement": "ST SAUVEUR DE FLEE", "code_postal": "49500", "coordonnees_gps": [47.690206293, -0.841839877496], "code_commune_insee": "49319"}, "geometry": {"type": "Point", "coordinates": [-0.841839877496, 47.690206293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a646e61c6e8de753d48ab4cdeafe27c4802e8dc4", "fields": {"nom_de_la_commune": "ST SIGISMOND", "libell_d_acheminement": "ST SIGISMOND", "code_postal": "49123", "coordonnees_gps": [47.4332447625, -0.895504618393], "code_commune_insee": "49321"}, "geometry": {"type": "Point", "coordinates": [-0.895504618393, 47.4332447625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6199b6263034165712fb99b28cc120a2d1685ef2", "fields": {"nom_de_la_commune": "SAVENNIERES", "libell_d_acheminement": "SAVENNIERES", "code_postal": "49170", "coordonnees_gps": [47.4198682182, -0.744180002026], "code_commune_insee": "49329"}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62e5f3d207259d3e925d00c0fd1bfef5314375be", "fields": {"nom_de_la_commune": "PONTHOILE", "libell_d_acheminement": "PONTHOILE", "code_postal": "80860", "coordonnees_gps": [50.2062809553, 1.7329737582], "code_commune_insee": "80633"}, "geometry": {"type": "Point", "coordinates": [1.7329737582, 50.2062809553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b197842ee358ee6e52685c2674d61a6cba564ac", "fields": {"nom_de_la_commune": "POULAINVILLE", "libell_d_acheminement": "POULAINVILLE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80639"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e249ac8ef43fd156b7535ecf95ace8d50a0c9718", "fields": {"nom_de_la_commune": "POZIERES", "libell_d_acheminement": "POZIERES", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80640"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c3fb73da97005432237458c6df26977577d076e", "fields": {"nom_de_la_commune": "PROYART", "libell_d_acheminement": "PROYART", "code_postal": "80340", "coordonnees_gps": [49.919452036, 2.73393733727], "code_commune_insee": "80644"}, "geometry": {"type": "Point", "coordinates": [2.73393733727, 49.919452036]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a2367c54c88d2370e6a08920579d5f15355f209", "fields": {"nom_de_la_commune": "LE QUESNE", "libell_d_acheminement": "LE QUESNE", "code_postal": "80430", "coordonnees_gps": [49.8385398523, 1.78216116421], "code_commune_insee": "80651"}, "geometry": {"type": "Point", "coordinates": [1.78216116421, 49.8385398523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f94df663d97be60481b86ba171f221d9368fdc2e", "fields": {"nom_de_la_commune": "QUEVAUVILLERS", "libell_d_acheminement": "QUEVAUVILLERS", "code_postal": "80710", "coordonnees_gps": [49.8158250825, 2.07377059938], "code_commune_insee": "80656"}, "geometry": {"type": "Point", "coordinates": [2.07377059938, 49.8158250825]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b4e89ea6271479a5dade181b11ead02ca5c1b93", "fields": {"nom_de_la_commune": "RAMBURELLES", "libell_d_acheminement": "RAMBURELLES", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80662"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac86a26176646d270ff7547933d0a20f74fb13dd", "fields": {"nom_de_la_commune": "REMAUGIES", "libell_d_acheminement": "REMAUGIES", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80667"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ff6455ab318ca19a533209376bee7499ab247d5", "fields": {"nom_de_la_commune": "REMIENCOURT", "libell_d_acheminement": "REMIENCOURT", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80668"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f91465704713b496921347ea29f465aeb1e5a77c", "fields": {"nom_de_la_commune": "RUMIGNY", "libell_d_acheminement": "RUMIGNY", "code_postal": "80680", "coordonnees_gps": [49.8142899245, 2.29952854065], "code_commune_insee": "80690"}, "geometry": {"type": "Point", "coordinates": [2.29952854065, 49.8142899245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893a034c66d58c62f84418617b016d8a68d21527", "fields": {"nom_de_la_commune": "SAIGNEVILLE", "libell_d_acheminement": "SAIGNEVILLE", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80691"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be7c9a395307814f2df52088a83790f730f6bc67", "fields": {"nom_de_la_commune": "SAILLY LAURETTE", "libell_d_acheminement": "SAILLY LAURETTE", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80693"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "578d492452a468559643ad5059407f2946f08656", "fields": {"nom_de_la_commune": "SAILLY SAILLISEL", "libell_d_acheminement": "SAILLY SAILLISEL", "code_postal": "80360", "coordonnees_gps": [50.0172893295, 2.88209855948], "code_commune_insee": "80695"}, "geometry": {"type": "Point", "coordinates": [2.88209855948, 50.0172893295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca73e7f56742cac05ade8b6fb0d2ebe6e31b3050", "fields": {"nom_de_la_commune": "ST CHRIST BRIOST", "libell_d_acheminement": "ST CHRIST BRIOST", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80701"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efefd385156d883239ab3eac34e033b5db77e12c", "fields": {"nom_de_la_commune": "ST FUSCIEN", "libell_d_acheminement": "ST FUSCIEN", "code_postal": "80680", "coordonnees_gps": [49.8142899245, 2.29952854065], "code_commune_insee": "80702"}, "geometry": {"type": "Point", "coordinates": [2.29952854065, 49.8142899245]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aef1dc437f6cbe7dbfd1bef4a3d86d553316878c", "fields": {"nom_de_la_commune": "ST GRATIEN", "libell_d_acheminement": "ST GRATIEN", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80704"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83e817ace70f0eb7ccc3f246d6d0d709d31a8125", "fields": {"nom_de_la_commune": "ST RIQUIER", "libell_d_acheminement": "ST RIQUIER", "code_postal": "80135", "coordonnees_gps": [50.1341745997, 1.97573553766], "code_commune_insee": "80716"}, "geometry": {"type": "Point", "coordinates": [1.97573553766, 50.1341745997]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7078b6b60cc6c5a90ee1e00336df36a8a0dde4c9", "fields": {"nom_de_la_commune": "SAVEUSE", "libell_d_acheminement": "SAVEUSE", "code_postal": "80470", "coordonnees_gps": [49.9236427909, 2.20416854235], "code_commune_insee": "80730"}, "geometry": {"type": "Point", "coordinates": [2.20416854235, 49.9236427909]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6a800ea9f003c97907b88fa74d4d16c6b0586f8", "fields": {"nom_de_la_commune": "THORY", "libell_d_acheminement": "THORY", "code_postal": "80250", "coordonnees_gps": [49.7189012018, 2.37293677974], "code_commune_insee": "80758"}, "geometry": {"type": "Point", "coordinates": [2.37293677974, 49.7189012018]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ae548f24459e0081a2d15d3910ff3f374290b32", "fields": {"nom_de_la_commune": "TINCOURT BOUCLY", "libell_d_acheminement": "TINCOURT BOUCLY", "code_postal": "80240", "coordonnees_gps": [49.9564219189, 3.07370300991], "code_commune_insee": "80762"}, "geometry": {"type": "Point", "coordinates": [3.07370300991, 49.9564219189]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c0120841966cce5eb139393aa1f038c3eeeece7", "fields": {"nom_de_la_commune": "TOEUFLES", "libell_d_acheminement": "TOEUFLES", "code_postal": "80870", "coordonnees_gps": [50.0653042148, 1.7446378135], "code_commune_insee": "80764"}, "geometry": {"type": "Point", "coordinates": [1.7446378135, 50.0653042148]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "413914a9b4e7dc78d7b0b7626d18698d7dbac828", "fields": {"nom_de_la_commune": "VADENCOURT", "libell_d_acheminement": "VADENCOURT", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80773"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf56d237f5d80eb28ec9338a8d558a59741d3248", "fields": {"nom_de_la_commune": "VAUX SUR SOMME", "libell_d_acheminement": "VAUX SUR SOMME", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80784"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe9d7d1afa3974a446e3466601604a841461f0fc", "fields": {"nom_de_la_commune": "VERPILLIERES", "libell_d_acheminement": "VERPILLIERES", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80790"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f17e6bf54ba1302145db3144e0bdc52174401dbb", "fields": {"nom_de_la_commune": "VERS SUR SELLES", "libell_d_acheminement": "VERS SUR SELLES", "code_postal": "80480", "coordonnees_gps": [49.853757974, 2.22704649661], "code_commune_insee": "80791"}, "geometry": {"type": "Point", "coordinates": [2.22704649661, 49.853757974]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86ad0c13d3504e2a3bec62eb56ca681bb4bf9c11", "fields": {"nom_de_la_commune": "VRON", "libell_d_acheminement": "VRON", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80815"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6321baf6db06808a555695340460443725f22ed8", "fields": {"nom_de_la_commune": "WARLUS", "libell_d_acheminement": "WARLUS", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80821"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02bfbf06084ae41110024c93a2671b48f023dfd5", "fields": {"nom_de_la_commune": "WIENCOURT L EQUIPEE", "libell_d_acheminement": "WIENCOURT L EQUIPEE", "code_postal": "80170", "coordonnees_gps": [49.8050137743, 2.68380397389], "code_commune_insee": "80824"}, "geometry": {"type": "Point", "coordinates": [2.68380397389, 49.8050137743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a4e9b56d301c5ca314835af99566cb301402c27", "fields": {"nom_de_la_commune": "AGUTS", "libell_d_acheminement": "AGUTS", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81001"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa69b43a20c0073ab3d3e82bc7b3f696ad5a90e", "fields": {"nom_de_la_commune": "ALBINE", "libell_d_acheminement": "ALBINE", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81005"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34bab3443b4497d0d9347029dc2661a3d4682713", "fields": {"nom_de_la_commune": "ALOS", "libell_d_acheminement": "ALOS", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81007"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "059628a3c11822250885c55bde5b5cc8bf9b8368", "fields": {"nom_de_la_commune": "AMBIALET", "libell_d_acheminement": "AMBIALET", "code_postal": "81430", "coordonnees_gps": [43.9055720904, 2.35289359915], "code_commune_insee": "81010"}, "geometry": {"type": "Point", "coordinates": [2.35289359915, 43.9055720904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af2c32d37b43840f1bd7e314060bda2063ec5cae", "fields": {"nom_de_la_commune": "ANGLES", "libell_d_acheminement": "ANGLES", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81014"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2726d524908f7a85160ac9174a73fabb1026da7f", "fields": {"nom_de_la_commune": "APPELLE", "libell_d_acheminement": "APPELLE", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81015"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "169e9299e258c35657be24370f0c38381ca84748", "fields": {"nom_de_la_commune": "ARFONS", "libell_d_acheminement": "ARFONS", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81016"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4757a63dcb85442cde6550c5b6a0ef76d0ab753", "fields": {"nom_de_la_commune": "ARIFAT", "libell_d_acheminement": "ARIFAT", "code_postal": "81360", "coordonnees_gps": [43.7318763376, 2.32676924299], "code_commune_insee": "81017"}, "geometry": {"type": "Point", "coordinates": [2.32676924299, 43.7318763376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f2d318d8c06e03005b5086e956f04bd8bb6eeb6", "fields": {"nom_de_la_commune": "BANNIERES", "libell_d_acheminement": "BANNIERES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81022"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d6760cd44641993014192e6221afc60cabb2878d", "fields": {"nom_de_la_commune": "BARRE", "libell_d_acheminement": "BARRE", "code_postal": "81320", "coordonnees_gps": [43.6890069654, 2.82334026086], "code_commune_insee": "81023"}, "geometry": {"type": "Point", "coordinates": [2.82334026086, 43.6890069654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49fbb1cc42d1bea6c52e21264821cf1b99fc33ff", "fields": {"nom_de_la_commune": "BERNAC", "libell_d_acheminement": "BERNAC", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81029"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "356ae156996d5c732df1b72c8365e7ccd272ed0a", "fields": {"nom_de_la_commune": "LE BEZ", "libell_d_acheminement": "LE BEZ", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81031"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae6f8fc4700257910e787957dafb8faa9675363e", "fields": {"nom_de_la_commune": "BLAN", "libell_d_acheminement": "BLAN", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81032"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "787044d10a33a98670a86afdd484cc54da58652e", "fields": {"nom_de_la_commune": "BOUT DU PONT DE LARN", "libell_d_acheminement": "BOUT DU PONT DE LARN", "code_postal": "81660", "coordonnees_gps": [43.5285716347, 2.39739974245], "code_commune_insee": "81036"}, "geometry": {"type": "Point", "coordinates": [2.39739974245, 43.5285716347]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e4cab19ce9734b4679a477b0912985ebfdebd12", "fields": {"nom_de_la_commune": "BRASSAC", "libell_d_acheminement": "BRASSAC", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81037"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3aa1842b59b7abcf3c825bce48766f62f348ad88", "fields": {"nom_de_la_commune": "BROUSSE", "libell_d_acheminement": "BROUSSE", "code_postal": "81440", "coordonnees_gps": [43.7194249775, 2.12913345874], "code_commune_insee": "81040"}, "geometry": {"type": "Point", "coordinates": [2.12913345874, 43.7194249775]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "270542fd5b9293954184fcaa68a0f12869b12f5d", "fields": {"nom_de_la_commune": "BUSQUE", "libell_d_acheminement": "BUSQUE", "code_postal": "81300", "coordonnees_gps": [43.7690659575, 2.00556233123], "code_commune_insee": "81043"}, "geometry": {"type": "Point", "coordinates": [2.00556233123, 43.7690659575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "588b5834136d426ad50d7f10cd6d539ba66ecc0b", "fields": {"nom_de_la_commune": "CAHUZAC SUR VERE", "libell_d_acheminement": "CAHUZAC SUR VERE", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81051"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "af95d4ed20dfbd196fc1332b77314a0ba76e522a", "fields": {"nom_de_la_commune": "CARLUS", "libell_d_acheminement": "CARLUS", "code_postal": "81990", "coordonnees_gps": [43.8944823796, 2.17980743393], "code_commune_insee": "81059"}, "geometry": {"type": "Point", "coordinates": [2.17980743393, 43.8944823796]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d577fb36697aaef9663a5865740e55b14b7ea5e", "fields": {"nom_de_la_commune": "CAUCALIERES", "libell_d_acheminement": "CAUCALIERES", "code_postal": "81200", "coordonnees_gps": [43.4762564535, 2.36622372237], "code_commune_insee": "81066"}, "geometry": {"type": "Point", "coordinates": [2.36622372237, 43.4762564535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a509db420e8520ab12bcac1a1434021278f9080d", "fields": {"nom_de_la_commune": "CESTAYROLS", "libell_d_acheminement": "CESTAYROLS", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81067"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11e0021f9f50af12cdf258bd60c61752fbbda936", "fields": {"nom_de_la_commune": "CORDES SUR CIEL", "libell_d_acheminement": "CORDES SUR CIEL", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81069"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afb7d367ede5c796c03c3c092aca19f6d5ece413", "fields": {"nom_de_la_commune": "DAMIATTE", "libell_d_acheminement": "DAMIATTE", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81078"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a0d5c4c2a8cbb2ae106505340eac8adf8694671", "fields": {"nom_de_la_commune": "DONNAZAC", "libell_d_acheminement": "DONNAZAC", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81080"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "660a4148f3cd36e2032fc3b0daa95ecaaa637523", "fields": {"nom_de_la_commune": "DOURGNE", "libell_d_acheminement": "DOURGNE", "code_postal": "81110", "coordonnees_gps": [43.4692050957, 2.15622645931], "code_commune_insee": "81081"}, "geometry": {"type": "Point", "coordinates": [2.15622645931, 43.4692050957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9049439ba90801532921a05e8a1a64f797d0d12a", "fields": {"nom_de_la_commune": "LE DOURN", "libell_d_acheminement": "LE DOURN", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81082"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee0be9e8477b2c8eea1e1822d11dc3bdd0b8f36a", "fields": {"nom_de_la_commune": "FREJEVILLE", "libell_d_acheminement": "FREJEVILLE", "code_postal": "81570", "coordonnees_gps": [43.6265358099, 2.11305991393], "code_commune_insee": "81098"}, "geometry": {"type": "Point", "coordinates": [2.11305991393, 43.6265358099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7320c7950f334d0d71986aee72ff180b1f40f44", "fields": {"nom_de_la_commune": "LE GARRIC", "libell_d_acheminement": "LE GARRIC", "code_postal": "81450", "coordonnees_gps": [44.0037119924, 2.1739071178], "code_commune_insee": "81101"}, "geometry": {"type": "Point", "coordinates": [2.1739071178, 44.0037119924]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce0c26004b7447ff1951acc7c699484721251e44", "fields": {"nom_de_la_commune": "LACAPELLE SEGALAR", "libell_d_acheminement": "LACAPELLE SEGALAR", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81123"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8ccc6630a27159bc8e4934ac8e2ef2adcdf5c5c", "fields": {"nom_de_la_commune": "LACROISILLE", "libell_d_acheminement": "LACROISILLE", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81127"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1ecbfaae52a1f884a2d2fdcb9db0d0db63f0f234", "fields": {"nom_de_la_commune": "LAGARRIGUE", "libell_d_acheminement": "LAGARRIGUE", "code_postal": "81090", "coordonnees_gps": [43.5738802542, 2.29897159692], "code_commune_insee": "81130"}, "geometry": {"type": "Point", "coordinates": [2.29897159692, 43.5738802542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb43488e9420b144ac6fe3fe474b83292cf5dcb", "fields": {"nom_de_la_commune": "LAMONTELARIE", "libell_d_acheminement": "LAMONTELARIE", "code_postal": "81260", "coordonnees_gps": [43.6113142668, 2.53318559265], "code_commune_insee": "81134"}, "geometry": {"type": "Point", "coordinates": [2.53318559265, 43.6113142668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9d39699d457840402193df9fed8faee898ee07f6", "fields": {"nom_de_la_commune": "LIVERS CAZELLES", "libell_d_acheminement": "LIVERS CAZELLES", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81146"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e068bfc5bfe8053e570b8b28a45e3a17b0cee04c", "fields": {"nom_de_la_commune": "LOUBERS", "libell_d_acheminement": "LOUBERS", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81148"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1697dcea44d86c67cc354fe2753d89b65c420c41", "fields": {"nom_de_la_commune": "MEZENS", "libell_d_acheminement": "MEZENS", "code_postal": "81800", "coordonnees_gps": [43.8337179111, 1.69697473698], "code_commune_insee": "81164"}, "geometry": {"type": "Point", "coordinates": [1.69697473698, 43.8337179111]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5096faa91dec295520592f34074b3773c3dc721", "fields": {"nom_de_la_commune": "MILHARS", "libell_d_acheminement": "MILHARS", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81165"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f4d908a80cc9155cceb5c3ef5ab519e5565f3f0", "fields": {"nom_de_la_commune": "MIRANDOL BOURGNOUNAC", "libell_d_acheminement": "MIRANDOL BOURGNOUNAC", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81168"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd1c931b78030dcd8cefce4b799312e8a495b0b2", "fields": {"nom_de_la_commune": "MONTELS", "libell_d_acheminement": "MONTELS", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81176"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df9e03e932e5f60e33a9fd8ee50ba296457e141", "fields": {"nom_de_la_commune": "MONTGAILLARD", "libell_d_acheminement": "MONTGAILLARD", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81178"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f18963ede20358e8dba5022ee3547e87d343f17", "fields": {"nom_de_la_commune": "MONTGEY", "libell_d_acheminement": "MONTGEY", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81179"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8696a04978e527b24c081ff986fe7d0b4b5d95ae", "fields": {"nom_de_la_commune": "MONTIRAT", "libell_d_acheminement": "MONTIRAT", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81180"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "269a86a8a0d8a3227e05b9d8ce64ec8e524a5207", "fields": {"nom_de_la_commune": "MONTVALEN", "libell_d_acheminement": "MONTVALEN", "code_postal": "81630", "coordonnees_gps": [43.9169350122, 1.62382096924], "code_commune_insee": "81185"}, "geometry": {"type": "Point", "coordinates": [1.62382096924, 43.9169350122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "007e00600d1a3c4592a85f8ea369a5c40a388413", "fields": {"nom_de_la_commune": "MOULARES", "libell_d_acheminement": "MOULARES", "code_postal": "81190", "coordonnees_gps": [44.1239197891, 2.18707972996], "code_commune_insee": "81186"}, "geometry": {"type": "Point", "coordinates": [2.18707972996, 44.1239197891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f2fdd110bea8e98a303b02e82ea7b1add12630d", "fields": {"nom_de_la_commune": "MOUZIEYS PANENS", "libell_d_acheminement": "MOUZIEYS PANENS", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81191"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a63519e61c61323b07615a28de32fe3a843175f", "fields": {"nom_de_la_commune": "MURAT SUR VEBRE", "libell_d_acheminement": "MURAT SUR VEBRE", "code_postal": "81320", "coordonnees_gps": [43.6890069654, 2.82334026086], "code_commune_insee": "81192"}, "geometry": {"type": "Point", "coordinates": [2.82334026086, 43.6890069654]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "735e0365c766d899b3417b636bb5ff9645b8916c", "fields": {"nom_de_la_commune": "PADIES", "libell_d_acheminement": "PADIES", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81199"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c78b86f9cedd074cc129a6da69723fd1b5d322a", "fields": {"nom_de_la_commune": "PENNE", "libell_d_acheminement": "PENNE", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81206"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "395b03c75eafbcaf0522b25d8f20220f5e9d958f", "fields": {"nom_de_la_commune": "PUYCELSI", "libell_d_acheminement": "PUYCELSI", "code_postal": "81140", "coordonnees_gps": [44.0174517806, 1.78161194904], "code_commune_insee": "81217"}, "geometry": {"type": "Point", "coordinates": [1.78161194904, 44.0174517806]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b10e6e4d2d64c4091c777385b7475aead7aef3f3", "fields": {"nom_de_la_commune": "PUYLAURENS", "libell_d_acheminement": "PUYLAURENS", "code_postal": "81700", "coordonnees_gps": [43.5605906022, 2.02050672349], "code_commune_insee": "81219"}, "geometry": {"type": "Point", "coordinates": [2.02050672349, 43.5605906022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "483bcf6eaf122357eb0d55be0288d51c243ee352", "fields": {"nom_de_la_commune": "RONEL", "libell_d_acheminement": "RONEL", "code_postal": "81120", "coordonnees_gps": [43.8197852257, 2.22627404211], "code_commune_insee": "81226"}, "geometry": {"type": "Point", "coordinates": [2.22627404211, 43.8197852257]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "caf83cbd9e4a7b9bbf64d09e9f4ea3a0f9721d98", "fields": {"nom_de_la_commune": "ROQUEVIDAL", "libell_d_acheminement": "ROQUEVIDAL", "code_postal": "81470", "coordonnees_gps": [43.5672174495, 1.89129655008], "code_commune_insee": "81229"}, "geometry": {"type": "Point", "coordinates": [1.89129655008, 43.5672174495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9f6cc8266e98e718ab37f5534cc7f50d3cb4bf9", "fields": {"nom_de_la_commune": "ROUAIROUX", "libell_d_acheminement": "ROUAIROUX", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81231"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15508a54bf159b652419c3aa43e37e7c71b4d2d7", "fields": {"nom_de_la_commune": "ROUFFIAC", "libell_d_acheminement": "ROUFFIAC", "code_postal": "81150", "coordonnees_gps": [43.934397327, 2.03100125969], "code_commune_insee": "81232"}, "geometry": {"type": "Point", "coordinates": [2.03100125969, 43.934397327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "915fd0295421c11c9e85a6fb8ed3ee773ec1313e", "fields": {"nom_de_la_commune": "ST CIRGUE", "libell_d_acheminement": "ST CIRGUE", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81247"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac698e41753c6ae316bd34498f949bb72a9f700a", "fields": {"nom_de_la_commune": "ST JEAN DE RIVES", "libell_d_acheminement": "ST JEAN DE RIVES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81255"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "466a255896437fac5f93996580b6b5aa35a322d0", "fields": {"nom_de_la_commune": "ST JUERY", "libell_d_acheminement": "ST JUERY", "code_postal": "81160", "coordonnees_gps": [43.9525794482, 2.22487127822], "code_commune_insee": "81257"}, "geometry": {"type": "Point", "coordinates": [2.22487127822, 43.9525794482]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4986709d46cbc46ca279830f2ca76b037db0cf01", "fields": {"nom_de_la_commune": "ST LIEUX LES LAVAUR", "libell_d_acheminement": "ST LIEUX LES LAVAUR", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81261"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e7b01ce17267284bbec357257f56c722ac7aa13", "fields": {"nom_de_la_commune": "ST MARCEL CAMPES", "libell_d_acheminement": "ST MARCEL CAMPES", "code_postal": "81170", "coordonnees_gps": [44.0807353424, 1.93361594933], "code_commune_insee": "81262"}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7630eb2cd994cf3999d1afb75ac2117b397de41e", "fields": {"code_postal": "81170", "code_commune_insee": "81262", "libell_d_acheminement": "ST MARCEL CAMPES", "ligne_5": "CAMPES", "nom_de_la_commune": "ST MARCEL CAMPES", "coordonnees_gps": [44.0807353424, 1.93361594933]}, "geometry": {"type": "Point", "coordinates": [1.93361594933, 44.0807353424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6799895ee90f5623468352e8278723f878580f88", "fields": {"nom_de_la_commune": "ST MICHEL LABADIE", "libell_d_acheminement": "ST MICHEL LABADIE", "code_postal": "81340", "coordonnees_gps": [44.0068014992, 2.4099905549], "code_commune_insee": "81264"}, "geometry": {"type": "Point", "coordinates": [2.4099905549, 44.0068014992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d324fa4a09347678da250bfd847aa0ec6b57732e", "fields": {"nom_de_la_commune": "ST SULPICE LA POINTE", "libell_d_acheminement": "ST SULPICE LA POINTE", "code_postal": "81370", "coordonnees_gps": [43.7592511808, 1.68654140886], "code_commune_insee": "81271"}, "geometry": {"type": "Point", "coordinates": [1.68654140886, 43.7592511808]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e409a43fdf634d6a4bf4ff34267c3873f22773f6", "fields": {"nom_de_la_commune": "SALLES", "libell_d_acheminement": "SALLES", "code_postal": "81640", "coordonnees_gps": [44.0838977271, 2.06928881361], "code_commune_insee": "81275"}, "geometry": {"type": "Point", "coordinates": [2.06928881361, 44.0838977271]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148a133eb317e499e87ff5ef7f76a7ee6f23826c", "fields": {"nom_de_la_commune": "SAUVETERRE", "libell_d_acheminement": "SAUVETERRE", "code_postal": "81240", "coordonnees_gps": [43.4851442612, 2.5226430867], "code_commune_insee": "81278"}, "geometry": {"type": "Point", "coordinates": [2.5226430867, 43.4851442612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9fc7ef417734d1aedefb72896cfb6ccb4a443dc", "fields": {"nom_de_la_commune": "TECOU", "libell_d_acheminement": "TECOU", "code_postal": "81600", "coordonnees_gps": [43.8810358363, 1.92998992714], "code_commune_insee": "81294"}, "geometry": {"type": "Point", "coordinates": [1.92998992714, 43.8810358363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c6b9f28741dd7cbd9928ba19bd0f11c256854da", "fields": {"nom_de_la_commune": "TEYSSODE", "libell_d_acheminement": "TEYSSODE", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81299"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eeb99c6703909a7d8c8f510172e918106de6e948", "fields": {"nom_de_la_commune": "VALDERIES", "libell_d_acheminement": "VALDERIES", "code_postal": "81350", "coordonnees_gps": [44.0038056886, 2.27743366688], "code_commune_insee": "81306"}, "geometry": {"type": "Point", "coordinates": [2.27743366688, 44.0038056886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "51d3bc275a01bea9ac15db755bfb20a012971417", "fields": {"nom_de_la_commune": "VALDURENQUE", "libell_d_acheminement": "VALDURENQUE", "code_postal": "81090", "coordonnees_gps": [43.5738802542, 2.29897159692], "code_commune_insee": "81307"}, "geometry": {"type": "Point", "coordinates": [2.29897159692, 43.5738802542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81e674c644d3e3bc8274ff3064412b931ff4f7d3", "fields": {"nom_de_la_commune": "VEILHES", "libell_d_acheminement": "VEILHES", "code_postal": "81500", "coordonnees_gps": [43.6942803788, 1.80373784495], "code_commune_insee": "81310"}, "geometry": {"type": "Point", "coordinates": [1.80373784495, 43.6942803788]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "299b06799237977f65671db7697ec5b5d9069175", "fields": {"nom_de_la_commune": "VIANE", "libell_d_acheminement": "VIANE", "code_postal": "81530", "coordonnees_gps": [43.7712371341, 2.57768572319], "code_commune_insee": "81314"}, "geometry": {"type": "Point", "coordinates": [2.57768572319, 43.7712371341]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2161c5469b41fa6acbb30864b81ca51323ebb494", "fields": {"nom_de_la_commune": "VIELMUR SUR AGOUT", "libell_d_acheminement": "VIELMUR SUR AGOUT", "code_postal": "81570", "coordonnees_gps": [43.6265358099, 2.11305991393], "code_commune_insee": "81315"}, "geometry": {"type": "Point", "coordinates": [2.11305991393, 43.6265358099]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5b33a12505bf0c48d3064a16fb92a5d04f7c0d8", "fields": {"nom_de_la_commune": "VITERBE", "libell_d_acheminement": "VITERBE", "code_postal": "81220", "coordonnees_gps": [43.6536851734, 1.97477530689], "code_commune_insee": "81323"}, "geometry": {"type": "Point", "coordinates": [1.97477530689, 43.6536851734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43e6584650c89626e2030f99c78bf49c5dd9e0c6", "fields": {"nom_de_la_commune": "AUTERIVE", "libell_d_acheminement": "AUTERIVE", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82006"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "132c0ad976fc084f093ecf6a3a5d5fb256a5ae85", "fields": {"nom_de_la_commune": "VALGORGE", "libell_d_acheminement": "VALGORGE", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07329"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2c2d7c56ff80ec37090d1a006045482d3b13d489", "fields": {"nom_de_la_commune": "SAMPZON", "libell_d_acheminement": "SAMPZON", "code_postal": "07120", "coordonnees_gps": [44.4494191927, 4.32528793215], "code_commune_insee": "07306"}, "geometry": {"type": "Point", "coordinates": [4.32528793215, 44.4494191927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c62662092ecc2b259df035eb438f1d435b888dd7", "fields": {"nom_de_la_commune": "THUEYTS", "libell_d_acheminement": "THUEYTS", "code_postal": "07330", "coordonnees_gps": [44.6740067901, 4.11215645978], "code_commune_insee": "07322"}, "geometry": {"type": "Point", "coordinates": [4.11215645978, 44.6740067901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fb2a84f60c41f3e838c719319a9a05a80bd7fa9", "fields": {"nom_de_la_commune": "LE TEIL", "libell_d_acheminement": "LE TEIL", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07319"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26c8cb725322aaf80c21f5bc48475176f218e8fe", "fields": {"nom_de_la_commune": "SAVAS", "libell_d_acheminement": "SAVAS", "code_postal": "07430", "coordonnees_gps": [45.2574690023, 4.70801492444], "code_commune_insee": "07310"}, "geometry": {"type": "Point", "coordinates": [4.70801492444, 45.2574690023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c5a0d3afe3d6541e2929379c9f990ee9d76b2b5", "fields": {"nom_de_la_commune": "UCEL", "libell_d_acheminement": "UCEL", "code_postal": "07200", "coordonnees_gps": [44.6052917167, 4.40219441628], "code_commune_insee": "07325"}, "geometry": {"type": "Point", "coordinates": [4.40219441628, 44.6052917167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fdf432601a5e1275d7d563252f72159a4acec5a", "fields": {"nom_de_la_commune": "UZER", "libell_d_acheminement": "UZER", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07327"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc75c2d51e0039ffb91ac49dd9ccf83eedf473e1", "fields": {"code_postal": "08260", "code_commune_insee": "08037", "libell_d_acheminement": "AUVILLERS LES FORGES", "ligne_5": "MON IDEE", "nom_de_la_commune": "AUVILLERS LES FORGES", "coordonnees_gps": [49.8443145713, 4.39580518668]}, "geometry": {"type": "Point", "coordinates": [4.39580518668, 49.8443145713]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9de8b8e1e77cbac3ddf9928feec8a1e92576bb6d", "fields": {"nom_de_la_commune": "AUTRECOURT ET POURRON", "libell_d_acheminement": "AUTRECOURT ET POURRON", "code_postal": "08210", "coordonnees_gps": [49.5753580184, 5.05747412854], "code_commune_insee": "08034"}, "geometry": {"type": "Point", "coordinates": [5.05747412854, 49.5753580184]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9606f17a2f62be38772efa196e0b690409a7c68", "fields": {"nom_de_la_commune": "AUTRUCHE", "libell_d_acheminement": "AUTRUCHE", "code_postal": "08240", "coordonnees_gps": [49.4367865299, 4.95899557171], "code_commune_insee": "08035"}, "geometry": {"type": "Point", "coordinates": [4.95899557171, 49.4367865299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c72b7f680777ba248cd1fb0bcc1666d62789cf1", "fields": {"nom_de_la_commune": "BAALONS", "libell_d_acheminement": "BAALONS", "code_postal": "08430", "coordonnees_gps": [49.640530091, 4.63694395788], "code_commune_insee": "08041"}, "geometry": {"type": "Point", "coordinates": [4.63694395788, 49.640530091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b810afb6c9db7071e287e32af17eceb23ff36d76", "fields": {"nom_de_la_commune": "BALHAM", "libell_d_acheminement": "BALHAM", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08044"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2df976d1c645bdb03c5586e70d07e8afbafec8ff", "fields": {"nom_de_la_commune": "BALAN", "libell_d_acheminement": "BALAN", "code_postal": "08200", "coordonnees_gps": [49.736070844, 4.95877999805], "code_commune_insee": "08043"}, "geometry": {"type": "Point", "coordinates": [4.95877999805, 49.736070844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "438fe3336fe6ebe832a27f5591308ed575621b53", "fields": {"code_postal": "06660", "code_commune_insee": "06120", "libell_d_acheminement": "ST ETIENNE DE TINEE", "ligne_5": "AURON", "nom_de_la_commune": "ST ETIENNE DE TINEE", "coordonnees_gps": [44.2619230059, 6.89791152248]}, "geometry": {"type": "Point", "coordinates": [6.89791152248, 44.2619230059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f91679e4c9241a1de12414f367c7c9dbc2dcb27", "fields": {"code_postal": "06560", "code_commune_insee": "06152", "libell_d_acheminement": "VALBONNE", "ligne_5": "SOPHIA ANTIPOLIS", "nom_de_la_commune": "VALBONNE", "coordonnees_gps": [43.6276793002, 7.02951667075]}, "geometry": {"type": "Point", "coordinates": [7.02951667075, 43.6276793002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55adf9a1353dc36ded5841900c1f622fc026b89a", "fields": {"nom_de_la_commune": "THEOULE SUR MER", "libell_d_acheminement": "THEOULE SUR MER", "code_postal": "06590", "coordonnees_gps": [43.4984064524, 6.92997887504], "code_commune_insee": "06138"}, "geometry": {"type": "Point", "coordinates": [6.92997887504, 43.4984064524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad753698effde1ade4c42074b2ada1a301f977a7", "fields": {"nom_de_la_commune": "SPERACEDES", "libell_d_acheminement": "SPERACEDES", "code_postal": "06530", "coordonnees_gps": [43.6477554708, 6.83535219439], "code_commune_insee": "06137"}, "geometry": {"type": "Point", "coordinates": [6.83535219439, 43.6477554708]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2159520d57c03783917704c8ef26f3d0c3c761e", "fields": {"nom_de_la_commune": "VALDEBLORE", "libell_d_acheminement": "VALDEBLORE", "code_postal": "06420", "coordonnees_gps": [44.0921620509, 7.1270670762], "code_commune_insee": "06153"}, "geometry": {"type": "Point", "coordinates": [7.1270670762, 44.0921620509]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "523af3990c8f661c2dd7ce82236df544d0f7e8bf", "fields": {"nom_de_la_commune": "VALBONNE", "libell_d_acheminement": "VALBONNE", "code_postal": "06560", "coordonnees_gps": [43.6276793002, 7.02951667075], "code_commune_insee": "06152"}, "geometry": {"type": "Point", "coordinates": [7.02951667075, 43.6276793002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89516543708f35406681a585f8ced0ceea7176c4", "fields": {"nom_de_la_commune": "ST AUBAN", "libell_d_acheminement": "ST AUBAN", "code_postal": "06850", "coordonnees_gps": [43.8467484238, 6.75541099886], "code_commune_insee": "06116"}, "geometry": {"type": "Point", "coordinates": [6.75541099886, 43.8467484238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65214e9dc23880dc25a1c260c1cbfbfe83061566", "fields": {"nom_de_la_commune": "SERANON", "libell_d_acheminement": "SERANON", "code_postal": "06750", "coordonnees_gps": [43.7770802464, 6.7641665855], "code_commune_insee": "06134"}, "geometry": {"type": "Point", "coordinates": [6.7641665855, 43.7770802464]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fe230e7c98e4ca54f45df4bc9a7d887b21b89d1", "fields": {"nom_de_la_commune": "SIGALE", "libell_d_acheminement": "SIGALE", "code_postal": "06910", "coordonnees_gps": [43.8680748564, 6.93802185197], "code_commune_insee": "06135"}, "geometry": {"type": "Point", "coordinates": [6.93802185197, 43.8680748564]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dddf54d93e2cd70756d509e3c9ff0b7001b1b680", "fields": {"nom_de_la_commune": "SAORGE", "libell_d_acheminement": "SAORGE", "code_postal": "06540", "coordonnees_gps": [43.9800223211, 7.52586230957], "code_commune_insee": "06132"}, "geometry": {"type": "Point", "coordinates": [7.52586230957, 43.9800223211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a15a54d6f73cc1019b0326f6419f5d99fec3ae0b", "fields": {"code_postal": "07460", "code_commune_insee": "07031", "libell_d_acheminement": "BERRIAS ET CASTELJAU", "ligne_5": "CASTELJAU", "nom_de_la_commune": "BERRIAS ET CASTELJAU", "coordonnees_gps": [44.343480855, 4.20658690309]}, "geometry": {"type": "Point", "coordinates": [4.20658690309, 44.343480855]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0d80819aec9762e950a13f193734cb529b85fa4", "fields": {"nom_de_la_commune": "ALBON D ARDECHE", "libell_d_acheminement": "ALBON D ARDECHE", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07006"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6bbd3af579786a72162618bb02ac89b6989819ab", "fields": {"nom_de_la_commune": "VALLAURIS", "libell_d_acheminement": "VALLAURIS", "code_postal": "06220", "coordonnees_gps": [43.5766743671, 7.05796623737], "code_commune_insee": "06155"}, "geometry": {"type": "Point", "coordinates": [7.05796623737, 43.5766743671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd39d7a3dd5c8591994b2f8ae6dc841ee337fcdd", "fields": {"nom_de_la_commune": "BEAUVENE", "libell_d_acheminement": "BEAUVENE", "code_postal": "07190", "coordonnees_gps": [44.8207349363, 4.47908015633], "code_commune_insee": "07030"}, "geometry": {"type": "Point", "coordinates": [4.47908015633, 44.8207349363]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ba33ddf798a61d0d8807c9c645ebca473c632d3", "fields": {"nom_de_la_commune": "AUBIGNAS", "libell_d_acheminement": "AUBIGNAS", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07020"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "21bd91a83812fe4d54dff332cda09ab5d1df96fc", "fields": {"nom_de_la_commune": "BERZEME", "libell_d_acheminement": "BERZEME", "code_postal": "07580", "coordonnees_gps": [44.6199071388, 4.55702885367], "code_commune_insee": "07032"}, "geometry": {"type": "Point", "coordinates": [4.55702885367, 44.6199071388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f01403a75ac63b5c2ee999829d5c139cad6c269", "fields": {"nom_de_la_commune": "BARNAS", "libell_d_acheminement": "BARNAS", "code_postal": "07330", "coordonnees_gps": [44.6740067901, 4.11215645978], "code_commune_insee": "07025"}, "geometry": {"type": "Point", "coordinates": [4.11215645978, 44.6740067901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47a46b86d7f299d62942ac0df8d48ab25c43e428", "fields": {"nom_de_la_commune": "BESSAS", "libell_d_acheminement": "BESSAS", "code_postal": "07150", "coordonnees_gps": [44.389065445, 4.39839654491], "code_commune_insee": "07033"}, "geometry": {"type": "Point", "coordinates": [4.39839654491, 44.389065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4613e82116f7dc2b1a27c7e99ce3d76bb0db5031", "fields": {"nom_de_la_commune": "ASTET", "libell_d_acheminement": "ASTET", "code_postal": "07330", "coordonnees_gps": [44.6740067901, 4.11215645978], "code_commune_insee": "07018"}, "geometry": {"type": "Point", "coordinates": [4.11215645978, 44.6740067901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be90566169986271d9fca625856e23fedb875a12", "fields": {"nom_de_la_commune": "BOGY", "libell_d_acheminement": "BOGY", "code_postal": "07340", "coordonnees_gps": [45.2924764647, 4.74577611197], "code_commune_insee": "07036"}, "geometry": {"type": "Point", "coordinates": [4.74577611197, 45.2924764647]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6acb8ab4ef71c607ae58599bbeaa1cc06b983f1", "fields": {"nom_de_la_commune": "MONTPEZAT SOUS BAUZON", "libell_d_acheminement": "MONTPEZAT SOUS BAUZON", "code_postal": "07560", "coordonnees_gps": [44.7182672724, 4.176983695], "code_commune_insee": "07161"}, "geometry": {"type": "Point", "coordinates": [4.176983695, 44.7182672724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab07ccb1602944bd49cbdbf0f4cdb22154c64a91", "fields": {"nom_de_la_commune": "MAZAN L ABBAYE", "libell_d_acheminement": "MAZAN L ABBAYE", "code_postal": "07510", "coordonnees_gps": [44.7724320903, 4.10278815831], "code_commune_insee": "07154"}, "geometry": {"type": "Point", "coordinates": [4.10278815831, 44.7724320903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "183b8940dddf44d3ff41cd9f9e9efaf83818eb14", "fields": {"nom_de_la_commune": "LE PLAGNAL", "libell_d_acheminement": "LE PLAGNAL", "code_postal": "07590", "coordonnees_gps": [44.6410728179, 3.97092994419], "code_commune_insee": "07175"}, "geometry": {"type": "Point", "coordinates": [3.97092994419, 44.6410728179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c4cd37178dbb26b66189102387c7bd5db9449d2c", "fields": {"nom_de_la_commune": "MONESTIER", "libell_d_acheminement": "MONESTIER", "code_postal": "07690", "coordonnees_gps": [45.1829664492, 4.50688842941], "code_commune_insee": "07160"}, "geometry": {"type": "Point", "coordinates": [4.50688842941, 45.1829664492]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fb6b158004d7be9080b591ac8a85f8f1e40c91e", "fields": {"nom_de_la_commune": "PEREYRES", "libell_d_acheminement": "PEREYRES", "code_postal": "07450", "coordonnees_gps": [44.7645631689, 4.23610675314], "code_commune_insee": "07173"}, "geometry": {"type": "Point", "coordinates": [4.23610675314, 44.7645631689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70b0c8ada5b1ef58e2526e4e7d047e984d2d1a16", "fields": {"nom_de_la_commune": "LE POUZIN", "libell_d_acheminement": "LE POUZIN", "code_postal": "07250", "coordonnees_gps": [44.769843603, 4.73616090056], "code_commune_insee": "07181"}, "geometry": {"type": "Point", "coordinates": [4.73616090056, 44.769843603]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "625f5d4eba0f6ee97be23bad47d966f0c41fe609", "fields": {"nom_de_la_commune": "MEYSSE", "libell_d_acheminement": "MEYSSE", "code_postal": "07400", "coordonnees_gps": [44.5767272135, 4.6363152024], "code_commune_insee": "07157"}, "geometry": {"type": "Point", "coordinates": [4.6363152024, 44.5767272135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a7e141dc27504ec10031ff9e6006bcca9400671", "fields": {"nom_de_la_commune": "PLATS", "libell_d_acheminement": "PLATS", "code_postal": "07300", "coordonnees_gps": [45.0569336345, 4.77874081855], "code_commune_insee": "07177"}, "geometry": {"type": "Point", "coordinates": [4.77874081855, 45.0569336345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f930cb7f0215dbbf84108a466fe506d4a5167126", "fields": {"nom_de_la_commune": "AUBIGNY LES POTHEES", "libell_d_acheminement": "AUBIGNY LES POTHEES", "code_postal": "08150", "coordonnees_gps": [49.8122244724, 4.52545242673], "code_commune_insee": "08026"}, "geometry": {"type": "Point", "coordinates": [4.52545242673, 49.8122244724]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b134c0dee7d585b8ae98c0c8b1ce62d2dc68e968", "fields": {"nom_de_la_commune": "ACY ROMANCE", "libell_d_acheminement": "ACY ROMANCE", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08001"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4377e847e3ba1202d7bec4cb48e97d1a4b50b597", "fields": {"nom_de_la_commune": "ALINCOURT", "libell_d_acheminement": "ALINCOURT", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08005"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c790038d2e2f954ec82dfcf729fe72cd1d6028d3", "fields": {"nom_de_la_commune": "ANGECOURT", "libell_d_acheminement": "ANGECOURT", "code_postal": "08450", "coordonnees_gps": [49.6051172684, 4.92625814673], "code_commune_insee": "08013"}, "geometry": {"type": "Point", "coordinates": [4.92625814673, 49.6051172684]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0e16ff4589a5e16e48f06efc871b3d829f95545", "fields": {"nom_de_la_commune": "VIVIERS", "libell_d_acheminement": "VIVIERS", "code_postal": "07220", "coordonnees_gps": [44.4661661995, 4.63717966246], "code_commune_insee": "07346"}, "geometry": {"type": "Point", "coordinates": [4.63717966246, 44.4661661995]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2556e61523a46f25f1f3e2bacda46dbc7b5ca860", "fields": {"nom_de_la_commune": "ATTIGNY", "libell_d_acheminement": "ATTIGNY", "code_postal": "08130", "coordonnees_gps": [49.4948997956, 4.58771124171], "code_commune_insee": "08025"}, "geometry": {"type": "Point", "coordinates": [4.58771124171, 49.4948997956]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c989e52ddcd1611a0a64339e773a7bdd5a49c29f", "fields": {"nom_de_la_commune": "VINEZAC", "libell_d_acheminement": "VINEZAC", "code_postal": "07110", "coordonnees_gps": [44.5628974599, 4.2173201674], "code_commune_insee": "07343"}, "geometry": {"type": "Point", "coordinates": [4.2173201674, 44.5628974599]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c783a33763a0338c7a798678aa0eaa1b85ab96fe", "fields": {"nom_de_la_commune": "ARREUX", "libell_d_acheminement": "ARREUX", "code_postal": "08090", "coordonnees_gps": [49.7814512769, 4.65888775481], "code_commune_insee": "08022"}, "geometry": {"type": "Point", "coordinates": [4.65888775481, 49.7814512769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "918c4e9835c846520cd2dad776609043c4e1c659", "fields": {"nom_de_la_commune": "VION", "libell_d_acheminement": "VION", "code_postal": "07610", "coordonnees_gps": [45.1098494748, 4.78303209156], "code_commune_insee": "07345"}, "geometry": {"type": "Point", "coordinates": [4.78303209156, 45.1098494748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc1058a9bafdc0fee3ac036390a6eefe060b5b1c", "fields": {"nom_de_la_commune": "AUGE", "libell_d_acheminement": "AUGE", "code_postal": "08380", "coordonnees_gps": [49.91319612, 4.30466764624], "code_commune_insee": "08030"}, "geometry": {"type": "Point", "coordinates": [4.30466764624, 49.91319612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "477e9a37ddc2bbc33beaa04103b9c97cc80d4c2c", "fields": {"nom_de_la_commune": "BLANZY LA SALONNAISE", "libell_d_acheminement": "BLANZY LA SALONNAISE", "code_postal": "08190", "coordonnees_gps": [49.4739708484, 4.1206932066], "code_commune_insee": "08070"}, "geometry": {"type": "Point", "coordinates": [4.1206932066, 49.4739708484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2044052a230a7dc9276c20f4a0142dc8f5e0658", "fields": {"nom_de_la_commune": "BOGNY SUR MEUSE", "libell_d_acheminement": "BOGNY SUR MEUSE", "code_postal": "08120", "coordonnees_gps": [49.8480830098, 4.7512697377], "code_commune_insee": "08081"}, "geometry": {"type": "Point", "coordinates": [4.7512697377, 49.8480830098]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a3b3ca80d281121eb8055264b968613e4af7e4d", "fields": {"nom_de_la_commune": "BERGNICOURT", "libell_d_acheminement": "BERGNICOURT", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08060"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5332c0dea5e4694b9e3e8aa55ae39e6462f84e49", "fields": {"nom_de_la_commune": "BERTONCOURT", "libell_d_acheminement": "BERTONCOURT", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08062"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ab3152852912a5636a52002e3066d485c50cf15", "fields": {"nom_de_la_commune": "BOUTANCOURT", "libell_d_acheminement": "BOUTANCOURT", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08079"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20c464403a986b79d96f1a3016aaea0581ca93d0", "fields": {"nom_de_la_commune": "BIERMES", "libell_d_acheminement": "BIERMES", "code_postal": "08300", "coordonnees_gps": [49.4890710736, 4.33770775217], "code_commune_insee": "08064"}, "geometry": {"type": "Point", "coordinates": [4.33770775217, 49.4890710736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0fd1e86d560c43236beaff97d8c024b932e4228", "fields": {"nom_de_la_commune": "BOURCQ", "libell_d_acheminement": "BOURCQ", "code_postal": "08400", "coordonnees_gps": [49.3759788124, 4.68476998487], "code_commune_insee": "08077"}, "geometry": {"type": "Point", "coordinates": [4.68476998487, 49.3759788124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6367a696942aad9b3dbbef7034dcad5e7ebebb70", "fields": {"nom_de_la_commune": "CORNY MACHEROMENIL", "libell_d_acheminement": "CORNY MACHEROMENIL", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08132"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10f0d9e7c6a79c1ff70259bd2e7b430216ad4caa", "fields": {"nom_de_la_commune": "LES DEUX VILLES", "libell_d_acheminement": "LES DEUX VILLES", "code_postal": "08110", "coordonnees_gps": [49.6541821872, 5.19219003172], "code_commune_insee": "08138"}, "geometry": {"type": "Point", "coordinates": [5.19219003172, 49.6541821872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92ebc4f9b1579606831d0ce61b65c711a2e1915a", "fields": {"nom_de_la_commune": "DRICOURT", "libell_d_acheminement": "DRICOURT", "code_postal": "08310", "coordonnees_gps": [49.3635077627, 4.43297841227], "code_commune_insee": "08147"}, "geometry": {"type": "Point", "coordinates": [4.43297841227, 49.3635077627]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "de16017a9413bd3becb47966f18a4fc1a05bb3d4", "fields": {"nom_de_la_commune": "CORNAY", "libell_d_acheminement": "CORNAY", "code_postal": "08250", "coordonnees_gps": [49.3052152829, 4.87924744188], "code_commune_insee": "08131"}, "geometry": {"type": "Point", "coordinates": [4.87924744188, 49.3052152829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb3916634e9c80e7efdec35ee6d3e9f5e68c884c", "fields": {"nom_de_la_commune": "DAIGNY", "libell_d_acheminement": "DAIGNY", "code_postal": "08140", "coordonnees_gps": [49.7027985967, 5.05389161183], "code_commune_insee": "08136"}, "geometry": {"type": "Point", "coordinates": [5.05389161183, 49.7027985967]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e2aebe44f0fd712f3d1466cdbf2092a4bf14a19", "fields": {"nom_de_la_commune": "ELAN", "libell_d_acheminement": "ELAN", "code_postal": "08160", "coordonnees_gps": [49.6516847115, 4.77872166277], "code_commune_insee": "08152"}, "geometry": {"type": "Point", "coordinates": [4.77872166277, 49.6516847115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd12a6aadba43f84ffc2ecf1dffb3d320c0ffa70", "fields": {"nom_de_la_commune": "FAUX", "libell_d_acheminement": "FAUX", "code_postal": "08270", "coordonnees_gps": [49.6013662608, 4.45102282302], "code_commune_insee": "08165"}, "geometry": {"type": "Point", "coordinates": [4.45102282302, 49.6013662608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b02710dc1916e0fff1b8809ecb0c61c36f8ac75", "fields": {"nom_de_la_commune": "MALAKOFF", "libell_d_acheminement": "MALAKOFF", "code_postal": "92240", "coordonnees_gps": [48.8165665198, 2.29609038322], "code_commune_insee": "92046"}, "geometry": {"type": "Point", "coordinates": [2.29609038322, 48.8165665198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297e4599add5101a0f58fab47e479a448c2617ea", "fields": {"nom_de_la_commune": "MARNES LA COQUETTE", "libell_d_acheminement": "MARNES LA COQUETTE", "code_postal": "92430", "coordonnees_gps": [48.830772096, 2.16611369469], "code_commune_insee": "92047"}, "geometry": {"type": "Point", "coordinates": [2.16611369469, 48.830772096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a2d43f00e75c09f20f3dd61d339bd9e3670accc", "fields": {"nom_de_la_commune": "MEUDON", "libell_d_acheminement": "MEUDON", "code_postal": "92190", "coordonnees_gps": [48.8040544516, 2.22691872954], "code_commune_insee": "92048"}, "geometry": {"type": "Point", "coordinates": [2.22691872954, 48.8040544516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c836a820473baf80df74dc4b603882d9cf4e7cb0", "fields": {"code_postal": "92360", "code_commune_insee": "92048", "libell_d_acheminement": "MEUDON", "ligne_5": "MEUDON LA FORET", "nom_de_la_commune": "MEUDON", "coordonnees_gps": [48.8040544516, 2.22691872954]}, "geometry": {"type": "Point", "coordinates": [2.22691872954, 48.8040544516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7efb33e6c38c5218712cedd75caf7e92cabc8618", "fields": {"nom_de_la_commune": "NEUILLY SUR SEINE", "libell_d_acheminement": "NEUILLY SUR SEINE", "code_postal": "92200", "coordonnees_gps": [48.8855663756, 2.26645990318], "code_commune_insee": "92051"}, "geometry": {"type": "Point", "coordinates": [2.26645990318, 48.8855663756]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5de54661529c79e5647300c7757e441606ba078", "fields": {"nom_de_la_commune": "LE PLESSIS ROBINSON", "libell_d_acheminement": "LE PLESSIS ROBINSON", "code_postal": "92350", "coordonnees_gps": [48.7805420361, 2.25983416504], "code_commune_insee": "92060"}, "geometry": {"type": "Point", "coordinates": [2.25983416504, 48.7805420361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "309e3de00879fe3d7cf70715fd3cdb66b7ef160d", "fields": {"code_postal": "92350", "code_commune_insee": "92060", "libell_d_acheminement": "LE PLESSIS ROBINSON", "ligne_5": "ROBINSON", "nom_de_la_commune": "LE PLESSIS ROBINSON", "coordonnees_gps": [48.7805420361, 2.25983416504]}, "geometry": {"type": "Point", "coordinates": [2.25983416504, 48.7805420361]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "687e5126c6bb2533fc75f519ae32d6b5bb5390bf", "fields": {"code_postal": "92500", "code_commune_insee": "92063", "libell_d_acheminement": "RUEIL MALMAISON", "ligne_5": "BUZENVAL", "nom_de_la_commune": "RUEIL MALMAISON", "coordonnees_gps": [48.8694433502, 2.17774350372]}, "geometry": {"type": "Point", "coordinates": [2.17774350372, 48.8694433502]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3856edb2b906a4933e3bcd47b1b3e0ca08e9357", "fields": {"nom_de_la_commune": "SEVRES", "libell_d_acheminement": "SEVRES", "code_postal": "92310", "coordonnees_gps": [48.8214320054, 2.20990136244], "code_commune_insee": "92072"}, "geometry": {"type": "Point", "coordinates": [2.20990136244, 48.8214320054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "454fdd57c0c23b3dae94a2ae9da46899b33ef99c", "fields": {"nom_de_la_commune": "AULNAY SOUS BOIS", "libell_d_acheminement": "AULNAY SOUS BOIS", "code_postal": "93600", "coordonnees_gps": [48.9461334622, 2.49331125191], "code_commune_insee": "93005"}, "geometry": {"type": "Point", "coordinates": [2.49331125191, 48.9461334622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09d23ad3827a1fe1a13738bc886dc139de315f85", "fields": {"nom_de_la_commune": "LE BLANC MESNIL", "libell_d_acheminement": "LE BLANC MESNIL", "code_postal": "93150", "coordonnees_gps": [48.939273181, 2.46125619205], "code_commune_insee": "93007"}, "geometry": {"type": "Point", "coordinates": [2.46125619205, 48.939273181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9599399bb72ed23f026148555cc38251af7c94b2", "fields": {"nom_de_la_commune": "BONDY", "libell_d_acheminement": "BONDY", "code_postal": "93140", "coordonnees_gps": [48.9023023139, 2.48350884591], "code_commune_insee": "93010"}, "geometry": {"type": "Point", "coordinates": [2.48350884591, 48.9023023139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0109b946acf60c9e18d80310689afbae58a6c005", "fields": {"nom_de_la_commune": "GAGNY", "libell_d_acheminement": "GAGNY", "code_postal": "93220", "coordonnees_gps": [48.8817476544, 2.54495090705], "code_commune_insee": "93032"}, "geometry": {"type": "Point", "coordinates": [2.54495090705, 48.8817476544]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "455439301dd2990b3152c559cbd4bc9f6e3c9890", "fields": {"nom_de_la_commune": "NEUILLY SUR MARNE", "libell_d_acheminement": "NEUILLY SUR MARNE", "code_postal": "93330", "coordonnees_gps": [48.8626619903, 2.54037328221], "code_commune_insee": "93050"}, "geometry": {"type": "Point", "coordinates": [2.54037328221, 48.8626619903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d72c6d4fac5d622dfbc81c0c48128d15142fe1e", "fields": {"nom_de_la_commune": "LE RAINCY", "libell_d_acheminement": "LE RAINCY", "code_postal": "93340", "coordonnees_gps": [48.8963138877, 2.51858297837], "code_commune_insee": "93062"}, "geometry": {"type": "Point", "coordinates": [2.51858297837, 48.8963138877]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e855241c1ae04ae9b91451f02a815d9fa9144c2", "fields": {"nom_de_la_commune": "ROSNY SOUS BOIS", "libell_d_acheminement": "ROSNY SOUS BOIS", "code_postal": "93110", "coordonnees_gps": [48.8745435446, 2.48670478198], "code_commune_insee": "93064"}, "geometry": {"type": "Point", "coordinates": [2.48670478198, 48.8745435446]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dfb96709371a3a57a3f23f7bf1c614ad94793ab", "fields": {"nom_de_la_commune": "VAUJOURS", "libell_d_acheminement": "VAUJOURS", "code_postal": "93410", "coordonnees_gps": [48.9327361643, 2.58211595176], "code_commune_insee": "93074"}, "geometry": {"type": "Point", "coordinates": [2.58211595176, 48.9327361643]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe8acf628046abc4ef71cce783daca18962c0536", "fields": {"nom_de_la_commune": "VILLEMOMBLE", "libell_d_acheminement": "VILLEMOMBLE", "code_postal": "93250", "coordonnees_gps": [48.8845420906, 2.50909327603], "code_commune_insee": "93077"}, "geometry": {"type": "Point", "coordinates": [2.50909327603, 48.8845420906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "545aaf668362218923f8f5013d86eeff56965552", "fields": {"nom_de_la_commune": "ABLON SUR SEINE", "libell_d_acheminement": "ABLON SUR SEINE", "code_postal": "94480", "coordonnees_gps": [48.7245551904, 2.42140786252], "code_commune_insee": "94001"}, "geometry": {"type": "Point", "coordinates": [2.42140786252, 48.7245551904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0175fbd0bdd5bebbdba973517ea34461c012b4df", "fields": {"code_postal": "94500", "code_commune_insee": "94017", "libell_d_acheminement": "CHAMPIGNY SUR MARNE", "ligne_5": "COEUILLY", "nom_de_la_commune": "CHAMPIGNY SUR MARNE", "coordonnees_gps": [48.8176869619, 2.51584557843]}, "geometry": {"type": "Point", "coordinates": [2.51584557843, 48.8176869619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45af0481de128c1e2181bdb3c201216f771f4fbc", "fields": {"nom_de_la_commune": "CRETEIL", "libell_d_acheminement": "CRETEIL", "code_postal": "94000", "coordonnees_gps": [48.7836775841, 2.45497922897], "code_commune_insee": "94028"}, "geometry": {"type": "Point", "coordinates": [2.45497922897, 48.7836775841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31c11a079f20168c544072cdef94a5643b7c47af", "fields": {"nom_de_la_commune": "GENTILLY", "libell_d_acheminement": "GENTILLY", "code_postal": "94250", "coordonnees_gps": [48.812983845, 2.3432244613], "code_commune_insee": "94037"}, "geometry": {"type": "Point", "coordinates": [2.3432244613, 48.812983845]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c8381ccad0ba35822f63c25ed0dc48cb72b2511", "fields": {"nom_de_la_commune": "MAISONS ALFORT", "libell_d_acheminement": "MAISONS ALFORT", "code_postal": "94700", "coordonnees_gps": [48.8058570543, 2.4381304073], "code_commune_insee": "94046"}, "geometry": {"type": "Point", "coordinates": [2.4381304073, 48.8058570543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa4b6c9770ef8aef39627c2303a19878783b1c5d", "fields": {"nom_de_la_commune": "PERIGNY", "libell_d_acheminement": "PERIGNY SUR YERRES", "code_postal": "94520", "coordonnees_gps": [48.7018918505, 2.55461467284], "code_commune_insee": "94056"}, "geometry": {"type": "Point", "coordinates": [2.55461467284, 48.7018918505]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b80d356d978090fd4aa17c9ca706ef74a5662d8f", "fields": {"nom_de_la_commune": "LE PERREUX SUR MARNE", "libell_d_acheminement": "LE PERREUX SUR MARNE", "code_postal": "94170", "coordonnees_gps": [48.8421585181, 2.50411322591], "code_commune_insee": "94058"}, "geometry": {"type": "Point", "coordinates": [2.50411322591, 48.8421585181]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae7fea786e6a5a10eb640b81ad0b512fb10a94d4", "fields": {"nom_de_la_commune": "RUNGIS", "libell_d_acheminement": "RUNGIS", "code_postal": "94150", "coordonnees_gps": [48.7496203927, 2.35222837968], "code_commune_insee": "94065"}, "geometry": {"type": "Point", "coordinates": [2.35222837968, 48.7496203927]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb0364ea1b23ea5c8bb347a49b7b7a0f950845de", "fields": {"nom_de_la_commune": "ST MAURICE", "libell_d_acheminement": "ST MAURICE", "code_postal": "94410", "coordonnees_gps": [48.818049358, 2.43718026115], "code_commune_insee": "94069"}, "geometry": {"type": "Point", "coordinates": [2.43718026115, 48.818049358]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4234e4a837469ef2ac488b4d74ba648f84f463c2", "fields": {"nom_de_la_commune": "VILLENEUVE ST GEORGES", "libell_d_acheminement": "VILLENEUVE ST GEORGES", "code_postal": "94190", "coordonnees_gps": [48.7418949096, 2.44899755238], "code_commune_insee": "94078"}, "geometry": {"type": "Point", "coordinates": [2.44899755238, 48.7418949096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fa2fbf08ae221c89238644d1bd6d5169aa25f9c7", "fields": {"nom_de_la_commune": "VILLIERS SUR MARNE", "libell_d_acheminement": "VILLIERS SUR MARNE", "code_postal": "94350", "coordonnees_gps": [48.8262201661, 2.54547356875], "code_commune_insee": "94079"}, "geometry": {"type": "Point", "coordinates": [2.54547356875, 48.8262201661]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69abbbe0b921d97c2f820db2c4e745327c85d1ec", "fields": {"nom_de_la_commune": "ABLEIGES", "libell_d_acheminement": "ABLEIGES", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95002"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c1f1c511c07c90353cbcf7cf6ac1d4efff963e", "fields": {"nom_de_la_commune": "AMENUCOURT", "libell_d_acheminement": "AMENUCOURT", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95012"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2752b32e5ff9b0086fc34dd9afa862eb477d661a", "fields": {"nom_de_la_commune": "ASNIERES SUR OISE", "libell_d_acheminement": "ASNIERES SUR OISE", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95026"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14aed6353db47c425b9d464ed572c84b1a62ab35", "fields": {"nom_de_la_commune": "BANTHELU", "libell_d_acheminement": "BANTHELU", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95046"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b887c79b251156e3206b8a6cf34f2427f2a71e27", "fields": {"nom_de_la_commune": "BOISEMONT", "libell_d_acheminement": "BOISEMONT", "code_postal": "95000", "coordonnees_gps": [49.0378977963, 2.06061895699], "code_commune_insee": "95074"}, "geometry": {"type": "Point", "coordinates": [2.06061895699, 49.0378977963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd6b2110a33a6bb918edc1d4d50a8ef1ba9ff5a6", "fields": {"nom_de_la_commune": "BRUYERES SUR OISE", "libell_d_acheminement": "BRUYERES SUR OISE", "code_postal": "95820", "coordonnees_gps": [49.160702308, 2.32978969094], "code_commune_insee": "95116"}, "geometry": {"type": "Point", "coordinates": [2.32978969094, 49.160702308]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47b6cc86eaf23e826905d26f5b74529d7eab4431", "fields": {"nom_de_la_commune": "VIDOUZE", "libell_d_acheminement": "VIDOUZE", "code_postal": "65700", "coordonnees_gps": [43.5049102666, 0.00690164253781], "code_commune_insee": "65462"}, "geometry": {"type": "Point", "coordinates": [0.00690164253781, 43.5049102666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10c9e21a92dce1ac7ae2cc15a3697f22a19b0c1f", "fields": {"nom_de_la_commune": "VIELLE ADOUR", "libell_d_acheminement": "VIELLE ADOUR", "code_postal": "65360", "coordonnees_gps": [43.1625190004, 0.105391850437], "code_commune_insee": "65464"}, "geometry": {"type": "Point", "coordinates": [0.105391850437, 43.1625190004]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fa7c6336623057b17dcb86ad89a33c216b0377e", "fields": {"nom_de_la_commune": "VIELLE LOURON", "libell_d_acheminement": "VIELLE LOURON", "code_postal": "65240", "coordonnees_gps": [42.8315711949, 0.385912028349], "code_commune_insee": "65466"}, "geometry": {"type": "Point", "coordinates": [0.385912028349, 42.8315711949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d4e9cc9a775f41510c6190a3d455c4c8788d3a9", "fields": {"nom_de_la_commune": "VIER BORDES", "libell_d_acheminement": "VIER BORDES", "code_postal": "65400", "coordonnees_gps": [42.9460232752, -0.163635149644], "code_commune_insee": "65467"}, "geometry": {"type": "Point", "coordinates": [-0.163635149644, 42.9460232752]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8deead83a8192f519074cfeaad6cf241023ee30", "fields": {"nom_de_la_commune": "VILLEMUR", "libell_d_acheminement": "VILLEMUR", "code_postal": "65230", "coordonnees_gps": [43.2892143486, 0.513472405936], "code_commune_insee": "65475"}, "geometry": {"type": "Point", "coordinates": [0.513472405936, 43.2892143486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4a0b68e45cddcc5f84048ffd76577352ac93094", "fields": {"nom_de_la_commune": "CANTAOUS", "libell_d_acheminement": "CANTAOUS", "code_postal": "65150", "coordonnees_gps": [43.0398654561, 0.480304747102], "code_commune_insee": "65482"}, "geometry": {"type": "Point", "coordinates": [0.480304747102, 43.0398654561]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39c5f8b3fca5eb0b9705d0ddd5703726c10adce8", "fields": {"nom_de_la_commune": "ALENYA", "libell_d_acheminement": "ALENYA", "code_postal": "66200", "coordonnees_gps": [42.6141104205, 2.96373811685], "code_commune_insee": "66002"}, "geometry": {"type": "Point", "coordinates": [2.96373811685, 42.6141104205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02ae2ddebbc41fff960b218bc839553cfedef15a", "fields": {"nom_de_la_commune": "AMELIE LES BAINS PALALDA", "libell_d_acheminement": "AMELIE LES BAINS PALALDA", "code_postal": "66110", "coordonnees_gps": [42.4916633371, 2.63428714842], "code_commune_insee": "66003"}, "geometry": {"type": "Point", "coordinates": [2.63428714842, 42.4916633371]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "568f46d2f21a98b0ad61f330371583a9ef7870eb", "fields": {"nom_de_la_commune": "CALMEILLES", "libell_d_acheminement": "CALMEILLES", "code_postal": "66400", "coordonnees_gps": [42.4987556652, 2.71589039576], "code_commune_insee": "66032"}, "geometry": {"type": "Point", "coordinates": [2.71589039576, 42.4987556652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e41cf80454f2772967d30663e2bbde96120668f", "fields": {"nom_de_la_commune": "CAMELAS", "libell_d_acheminement": "CAMELAS", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66033"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b88a9239d5a1a55a0453ba887fd02395922769e", "fields": {"nom_de_la_commune": "CASEFABRE", "libell_d_acheminement": "CASEFABRE", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66040"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "038c9ddf7e22e24c159cd4efa70980fb7d18cdb5", "fields": {"nom_de_la_commune": "CATLLAR", "libell_d_acheminement": "CATLLAR", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66045"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76ba6ba36bbb20b0695b5edaa3c1f8f9abefc5d6", "fields": {"nom_de_la_commune": "CERBERE", "libell_d_acheminement": "CERBERE", "code_postal": "66290", "coordonnees_gps": [42.4437582869, 3.14749877577], "code_commune_insee": "66048"}, "geometry": {"type": "Point", "coordinates": [3.14749877577, 42.4437582869]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b05ae9eb0f74a81c3187d71a4d050b9898b4950", "fields": {"nom_de_la_commune": "CERET", "libell_d_acheminement": "CERET", "code_postal": "66400", "coordonnees_gps": [42.4987556652, 2.71589039576], "code_commune_insee": "66049"}, "geometry": {"type": "Point", "coordinates": [2.71589039576, 42.4987556652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a13c4452bb74b6c975185096271e61d02696d7c4", "fields": {"nom_de_la_commune": "CLAIRA", "libell_d_acheminement": "CLAIRA", "code_postal": "66530", "coordonnees_gps": [42.7644876132, 2.94459168941], "code_commune_insee": "66050"}, "geometry": {"type": "Point", "coordinates": [2.94459168941, 42.7644876132]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84bd3517f650fb6c77466cfcf8f23d592ec183f4", "fields": {"nom_de_la_commune": "CORNEILLA LA RIVIERE", "libell_d_acheminement": "CORNEILLA LA RIVIERE", "code_postal": "66550", "coordonnees_gps": [42.7096534526, 2.72591395955], "code_commune_insee": "66058"}, "geometry": {"type": "Point", "coordinates": [2.72591395955, 42.7096534526]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c590a12c37f9e53467e8e01581e01d6656f9e28c", "fields": {"nom_de_la_commune": "ESTAGEL", "libell_d_acheminement": "ESTAGEL", "code_postal": "66310", "coordonnees_gps": [42.7679058486, 2.70723528284], "code_commune_insee": "66071"}, "geometry": {"type": "Point", "coordinates": [2.70723528284, 42.7679058486]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1325ad56d742da59d08c8175e2441b9cea69dac", "fields": {"nom_de_la_commune": "FINESTRET", "libell_d_acheminement": "FINESTRET", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66079"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3344bd9f85bf7eca2f6c42668b3920b129fc9761", "fields": {"nom_de_la_commune": "FOSSE", "libell_d_acheminement": "FOSSE", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66083"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac4b9141fb1bda435d4f2ef52568f7c2b897100c", "fields": {"nom_de_la_commune": "GLORIANES", "libell_d_acheminement": "GLORIANES", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66086"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e1a08418eba402acee43200b148fa48aa6f1796", "fields": {"nom_de_la_commune": "JOCH", "libell_d_acheminement": "JOCH", "code_postal": "66320", "coordonnees_gps": [42.5986155988, 2.51617353638], "code_commune_insee": "66089"}, "geometry": {"type": "Point", "coordinates": [2.51617353638, 42.5986155988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "094f3c60922f0854c0ac62ad0c17161ec2916893", "fields": {"nom_de_la_commune": "LAMANERE", "libell_d_acheminement": "LAMANERE", "code_postal": "66230", "coordonnees_gps": [42.4105505253, 2.4745003861], "code_commune_insee": "66091"}, "geometry": {"type": "Point", "coordinates": [2.4745003861, 42.4105505253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb344483bf223559dd1d52fb084193343c153953", "fields": {"nom_de_la_commune": "LANSAC", "libell_d_acheminement": "LANSAC", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66092"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "705db950dc36b91ec044d9396f7f396b587e32be", "fields": {"nom_de_la_commune": "LATOUR BAS ELNE", "libell_d_acheminement": "LATOUR BAS ELNE", "code_postal": "66200", "coordonnees_gps": [42.6141104205, 2.96373811685], "code_commune_insee": "66094"}, "geometry": {"type": "Point", "coordinates": [2.96373811685, 42.6141104205]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b28f0f299713074f6b825e1cbebe0a14362fd4b8", "fields": {"nom_de_la_commune": "LLUPIA", "libell_d_acheminement": "LLUPIA", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66101"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d032fff5331c1793f09069f78c18cd582b84f1c", "fields": {"nom_de_la_commune": "LOS MASOS", "libell_d_acheminement": "LOS MASOS", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66104"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "895bc1b83cb15f061906f38885d4d1c4e412774f", "fields": {"nom_de_la_commune": "MATEMALE", "libell_d_acheminement": "MATEMALE", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66105"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6af74ac9d94db5bf296a2793d392462e4baff83a", "fields": {"code_postal": "66480", "code_commune_insee": "66106", "libell_d_acheminement": "MAUREILLAS LAS ILLAS", "ligne_5": "RIUNOGUES", "nom_de_la_commune": "MAUREILLAS LAS ILLAS", "coordonnees_gps": [42.4667287992, 2.83075140133]}, "geometry": {"type": "Point", "coordinates": [2.83075140133, 42.4667287992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c7532d8e1268c799c088b1c79b9eb3ec95ffa1a", "fields": {"nom_de_la_commune": "MONTALBA LE CHATEAU", "libell_d_acheminement": "MONTALBA LE CHATEAU", "code_postal": "66130", "coordonnees_gps": [42.6444256201, 2.5993529819], "code_commune_insee": "66111"}, "geometry": {"type": "Point", "coordinates": [2.5993529819, 42.6444256201]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dac957029f0b2aa55c99be8b6310ce00ae7cdc79", "fields": {"nom_de_la_commune": "MONTAURIOL", "libell_d_acheminement": "MONTAURIOL", "code_postal": "66300", "coordonnees_gps": [42.5999995128, 2.76196789204], "code_commune_insee": "66112"}, "geometry": {"type": "Point", "coordinates": [2.76196789204, 42.5999995128]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11d229edd94f1bf3416ec295650efc6f2b14143c", "fields": {"nom_de_la_commune": "MONT LOUIS", "libell_d_acheminement": "MONT LOUIS", "code_postal": "66210", "coordonnees_gps": [42.5768510498, 2.08522065901], "code_commune_insee": "66117"}, "geometry": {"type": "Point", "coordinates": [2.08522065901, 42.5768510498]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08b51ebf97ccb2e98a8e043a081bee828a8f95c4", "fields": {"nom_de_la_commune": "MOSSET", "libell_d_acheminement": "MOSSET", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66119"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "67a746e4ff2d01d6804ed9bbd59e93599186ed3e", "fields": {"nom_de_la_commune": "NAHUJA", "libell_d_acheminement": "NAHUJA", "code_postal": "66340", "coordonnees_gps": [42.3895975345, 2.01369065827], "code_commune_insee": "66120"}, "geometry": {"type": "Point", "coordinates": [2.01369065827, 42.3895975345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78fd0793f92a35d1ab0f78ecbce455b7bc18524d", "fields": {"nom_de_la_commune": "NYER", "libell_d_acheminement": "NYER", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66123"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4f47695ab89fa9059aea9e3e20215c8df1d1ee4", "fields": {"code_postal": "66600", "code_commune_insee": "66127", "libell_d_acheminement": "OPOUL PERILLOS", "ligne_5": "PERILLOS", "nom_de_la_commune": "OPOUL PERILLOS", "coordonnees_gps": [42.823790182, 2.85249357966]}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7434641c3ba12caeaf88c9729ad9620764784f91", "fields": {"nom_de_la_commune": "PEZILLA LA RIVIERE", "libell_d_acheminement": "PEZILLA LA RIVIERE", "code_postal": "66370", "coordonnees_gps": [42.705342344, 2.76528618733], "code_commune_insee": "66140"}, "geometry": {"type": "Point", "coordinates": [2.76528618733, 42.705342344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b38f9513ce40332816a18a2d2d0b3491f17c6fe2", "fields": {"nom_de_la_commune": "POLLESTRES", "libell_d_acheminement": "POLLESTRES", "code_postal": "66450", "coordonnees_gps": [42.6375616421, 2.87296407789], "code_commune_insee": "66144"}, "geometry": {"type": "Point", "coordinates": [2.87296407789, 42.6375616421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4897f8ccc334a107efed0052618a62e6f2a70ba9", "fields": {"nom_de_la_commune": "PORTA", "libell_d_acheminement": "PORTA", "code_postal": "66760", "coordonnees_gps": [42.529853625, 1.88244729389], "code_commune_insee": "66146"}, "geometry": {"type": "Point", "coordinates": [1.88244729389, 42.529853625]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5eb04ac4b65c825b2d8c9d0314a3d773e871e5cd", "fields": {"nom_de_la_commune": "PRATS DE MOLLO LA PRESTE", "libell_d_acheminement": "PRATS DE MOLLO LA PRESTE", "code_postal": "66230", "coordonnees_gps": [42.4105505253, 2.4745003861], "code_commune_insee": "66150"}, "geometry": {"type": "Point", "coordinates": [2.4745003861, 42.4105505253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "178a54e5c91240c97d5370b9b6809ec91a30ac3c", "fields": {"code_postal": "66230", "code_commune_insee": "66150", "libell_d_acheminement": "PRATS DE MOLLO LA PRESTE", "ligne_5": "LA PRESTE", "nom_de_la_commune": "PRATS DE MOLLO LA PRESTE", "coordonnees_gps": [42.4105505253, 2.4745003861]}, "geometry": {"type": "Point", "coordinates": [2.4745003861, 42.4105505253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "198d5fafc893d0c154bebe654c4091fd84c01061", "fields": {"nom_de_la_commune": "PRATS DE SOURNIA", "libell_d_acheminement": "PRATS DE SOURNIA", "code_postal": "66730", "coordonnees_gps": [42.7269198784, 2.42944272703], "code_commune_insee": "66151"}, "geometry": {"type": "Point", "coordinates": [2.42944272703, 42.7269198784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0841c187f3b99247dc39ce3f3f07addcdd7c214", "fields": {"nom_de_la_commune": "RAILLEU", "libell_d_acheminement": "RAILLEU", "code_postal": "66360", "coordonnees_gps": [42.5209354388, 2.25593024652], "code_commune_insee": "66157"}, "geometry": {"type": "Point", "coordinates": [2.25593024652, 42.5209354388]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71c364fed9b6b8f589c7c7cbb771ae352afb3d9a", "fields": {"nom_de_la_commune": "RASIGUERES", "libell_d_acheminement": "RASIGUERES", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66158"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e31bd89fdb30acdf3d3f05f80f37044059dad4ed", "fields": {"nom_de_la_commune": "RIVESALTES", "libell_d_acheminement": "RIVESALTES", "code_postal": "66600", "coordonnees_gps": [42.823790182, 2.85249357966], "code_commune_insee": "66164"}, "geometry": {"type": "Point", "coordinates": [2.85249357966, 42.823790182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27bb6ad75abc8f938b7e5c74cabce022a813c4fc", "fields": {"nom_de_la_commune": "SAILLAGOUSE", "libell_d_acheminement": "SAILLAGOUSE", "code_postal": "66800", "coordonnees_gps": [42.4383838343, 2.06806880933], "code_commune_insee": "66167"}, "geometry": {"type": "Point", "coordinates": [2.06806880933, 42.4383838343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9b712482311ad3732506e0406cecdf5601f78c4", "fields": {"nom_de_la_commune": "ST FELIU D AMONT", "libell_d_acheminement": "ST FELIU D AMONT", "code_postal": "66170", "coordonnees_gps": [42.6894398344, 2.7011687182], "code_commune_insee": "66173"}, "geometry": {"type": "Point", "coordinates": [2.7011687182, 42.6894398344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bead9ac0e81bf65d359db3cb5c1a6d0be7195261", "fields": {"nom_de_la_commune": "ST FELIU D AVALL", "libell_d_acheminement": "ST FELIU D AVALL", "code_postal": "66170", "coordonnees_gps": [42.6894398344, 2.7011687182], "code_commune_insee": "66174"}, "geometry": {"type": "Point", "coordinates": [2.7011687182, 42.6894398344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "952777daf5669344952db5414c4b6f643f44ead6", "fields": {"nom_de_la_commune": "ST PAUL DE FENOUILLET", "libell_d_acheminement": "ST PAUL DE FENOUILLET", "code_postal": "66220", "coordonnees_gps": [42.7994340681, 2.45499365405], "code_commune_insee": "66187"}, "geometry": {"type": "Point", "coordinates": [2.45499365405, 42.7994340681]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56e66c66b126f3d5097042c25957962838ad130e", "fields": {"nom_de_la_commune": "SOREDE", "libell_d_acheminement": "SOREDE", "code_postal": "66690", "coordonnees_gps": [42.522189398, 2.97653046487], "code_commune_insee": "66196"}, "geometry": {"type": "Point", "coordinates": [2.97653046487, 42.522189398]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03917959118be191c1ede08a4a8a8a04972c43b8", "fields": {"nom_de_la_commune": "TAILLET", "libell_d_acheminement": "TAILLET", "code_postal": "66400", "coordonnees_gps": [42.4987556652, 2.71589039576], "code_commune_insee": "66199"}, "geometry": {"type": "Point", "coordinates": [2.71589039576, 42.4987556652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a7f6992f4d89239fc5ba6c8f6f21188f88dd29", "fields": {"nom_de_la_commune": "TAURINYA", "libell_d_acheminement": "TAURINYA", "code_postal": "66500", "coordonnees_gps": [42.6387954741, 2.35409943996], "code_commune_insee": "66204"}, "geometry": {"type": "Point", "coordinates": [2.35409943996, 42.6387954741]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "710c2e1d7524e130a9f09f6d4fb9cfad0694d43f", "fields": {"nom_de_la_commune": "TAUTAVEL", "libell_d_acheminement": "TAUTAVEL", "code_postal": "66720", "coordonnees_gps": [42.7715205784, 2.65389053936], "code_commune_insee": "66205"}, "geometry": {"type": "Point", "coordinates": [2.65389053936, 42.7715205784]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c3305ffde81e18268be3a082b214fce691f652b", "fields": {"nom_de_la_commune": "LE TECH", "libell_d_acheminement": "LE TECH", "code_postal": "66230", "coordonnees_gps": [42.4105505253, 2.4745003861], "code_commune_insee": "66206"}, "geometry": {"type": "Point", "coordinates": [2.4745003861, 42.4105505253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be80df876b79fdd81ff47f90f6390f94a0199574", "fields": {"nom_de_la_commune": "VERNET LES BAINS", "libell_d_acheminement": "VERNET LES BAINS", "code_postal": "66820", "coordonnees_gps": [42.5365726469, 2.40581074719], "code_commune_insee": "66222"}, "geometry": {"type": "Point", "coordinates": [2.40581074719, 42.5365726469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8b084ce7df8f8128f6b132d63fc1881ed53f30d", "fields": {"nom_de_la_commune": "ALBE", "libell_d_acheminement": "ALBE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67003"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "659cde83e9221180e338db07292caef8df53ef62", "fields": {"nom_de_la_commune": "BALDENHEIM", "libell_d_acheminement": "BALDENHEIM", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67019"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18364e407fb323673eeb2bae3c0f3a3d8a8a1aee", "fields": {"nom_de_la_commune": "BATZENDORF", "libell_d_acheminement": "BATZENDORF", "code_postal": "67500", "coordonnees_gps": [48.83252193, 7.82037649522], "code_commune_insee": "67023"}, "geometry": {"type": "Point", "coordinates": [7.82037649522, 48.83252193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91beec5c58c23ff09f474374fec8e05435d08dc4", "fields": {"nom_de_la_commune": "BERNOLSHEIM", "libell_d_acheminement": "BERNOLSHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67033"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc8783020cb57f72c35d75d10dcb01fb36970a46", "fields": {"nom_de_la_commune": "BISCHHOLTZ", "libell_d_acheminement": "BISCHHOLTZ", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67044"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c76f7eee8542a4ab0d01eef7e12b6adc102aebe", "fields": {"nom_de_la_commune": "BOERSCH", "libell_d_acheminement": "BOERSCH", "code_postal": "67530", "coordonnees_gps": [48.4532281253, 7.37169792676], "code_commune_insee": "67052"}, "geometry": {"type": "Point", "coordinates": [7.37169792676, 48.4532281253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81b3c8b47f8f31c99bf62318fe9bd7223d40e66b", "fields": {"nom_de_la_commune": "BOESENBIESEN", "libell_d_acheminement": "BOESENBIESEN", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67053"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84a4aaa97db9aad5b50907b8d203a7cc1fd815a5", "fields": {"nom_de_la_commune": "BOLSENHEIM", "libell_d_acheminement": "BOLSENHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67054"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef92f9397d40a7138dae401cc4a0756c41292a38", "fields": {"code_postal": "67330", "code_commune_insee": "67061", "libell_d_acheminement": "BOUXWILLER", "ligne_5": "GRIESBACH LE BASTBERG", "nom_de_la_commune": "BOUXWILLER", "coordonnees_gps": [48.8220828424, 7.43331239388]}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "458702b8b0f7082ba72e476318566c6c669ba88d", "fields": {"nom_de_la_commune": "BREUSCHWICKERSHEIM", "libell_d_acheminement": "BREUSCHWICKERSHEIM", "code_postal": "67112", "coordonnees_gps": [48.5780719523, 7.59902262711], "code_commune_insee": "67065"}, "geometry": {"type": "Point", "coordinates": [7.59902262711, 48.5780719523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e3730cee495d2a2e1b0120a3602a13b11ec0690", "fields": {"code_postal": "67570", "code_commune_insee": "67066", "libell_d_acheminement": "LA BROQUE", "ligne_5": "LA CLAQUETTE", "nom_de_la_commune": "LA BROQUE", "coordonnees_gps": [48.4582864667, 7.17805256783]}, "geometry": {"type": "Point", "coordinates": [7.17805256783, 48.4582864667]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd71b73e7d2f5ab3afea62503a3f9d0041d2ca4f", "fields": {"nom_de_la_commune": "BURBACH", "libell_d_acheminement": "BURBACH", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67070"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52dc8dfc2358a93a1f4b8981b0ebd45532fd5dda", "fields": {"nom_de_la_commune": "BUTTEN", "libell_d_acheminement": "BUTTEN", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67072"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d975716abaa95c2be41e63ef817f2a8d7aecc15b", "fields": {"nom_de_la_commune": "CLEEBOURG", "libell_d_acheminement": "CLEEBOURG", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67074"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b0f5395c29618bec93659e6c348f51c4cdb5387", "fields": {"nom_de_la_commune": "CROETTWILLER", "libell_d_acheminement": "CROETTWILLER", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67079"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ae0eb68dac320ae2f14e2ee3167253ecaf5dc63", "fields": {"nom_de_la_commune": "DACHSTEIN", "libell_d_acheminement": "DACHSTEIN", "code_postal": "67120", "coordonnees_gps": [48.5435292829, 7.5327846629], "code_commune_insee": "67080"}, "geometry": {"type": "Point", "coordinates": [7.5327846629, 48.5435292829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "657345979c7a0ac1e8d6e17602658049786eec0d", "fields": {"nom_de_la_commune": "DAMBACH LA VILLE", "libell_d_acheminement": "DAMBACH LA VILLE", "code_postal": "67650", "coordonnees_gps": [48.324457641, 7.42491338071], "code_commune_insee": "67084"}, "geometry": {"type": "Point", "coordinates": [7.42491338071, 48.324457641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "09b7a20468e1706a1a1e659a8deafe527d104f55", "fields": {"nom_de_la_commune": "DIEFFENTHAL", "libell_d_acheminement": "DIEFFENTHAL", "code_postal": "67650", "coordonnees_gps": [48.324457641, 7.42491338071], "code_commune_insee": "67094"}, "geometry": {"type": "Point", "coordinates": [7.42491338071, 48.324457641]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95c678c56602c4573b9557985515d95ce2a3451b", "fields": {"nom_de_la_commune": "DOMFESSEL", "libell_d_acheminement": "DOMFESSEL", "code_postal": "67430", "coordonnees_gps": [48.9548224846, 7.19760036283], "code_commune_insee": "67099"}, "geometry": {"type": "Point", "coordinates": [7.19760036283, 48.9548224846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f00aa2ba93957c8a5da7b2c5c2828c3a9255937", "fields": {"nom_de_la_commune": "DONNENHEIM", "libell_d_acheminement": "DONNENHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67100"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0039e19c637ce8cfe9df2de614a6ab391400d211", "fields": {"code_postal": "67160", "code_commune_insee": "67104", "libell_d_acheminement": "DRACHENBRONN BIRLENBACH", "ligne_5": "BIRLENBACH", "nom_de_la_commune": "DRACHENBRONN BIRLENBACH", "coordonnees_gps": [48.9935225292, 7.97087755177]}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a7f68d4543d857df8b923f736e9cb9dcf741d0d", "fields": {"nom_de_la_commune": "DRULINGEN", "libell_d_acheminement": "DRULINGEN", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67105"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4778e1c0022078451ae916e960a3095563071e67", "fields": {"nom_de_la_commune": "DRUSENHEIM", "libell_d_acheminement": "DRUSENHEIM", "code_postal": "67410", "coordonnees_gps": [48.7592655798, 7.93844896639], "code_commune_insee": "67106"}, "geometry": {"type": "Point", "coordinates": [7.93844896639, 48.7592655798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aad6e24b9d8706a59be2a71c57c63a6e1366f427", "fields": {"nom_de_la_commune": "EBERBACH SELTZ", "libell_d_acheminement": "EBERBACH SELTZ", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67113"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c24faba3c764eacec972a91d413dd6ede0b9d60", "fields": {"nom_de_la_commune": "ECKWERSHEIM", "libell_d_acheminement": "ECKWERSHEIM", "code_postal": "67550", "coordonnees_gps": [48.6731828077, 7.72554052263], "code_commune_insee": "67119"}, "geometry": {"type": "Point", "coordinates": [7.72554052263, 48.6731828077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cca7a06421c0f0a01b0a991ca2dc7a45ca9155f9", "fields": {"code_postal": "67710", "code_commune_insee": "67122", "libell_d_acheminement": "WANGENBOURG ENGENTHAL", "ligne_5": "WANGENBOURG", "nom_de_la_commune": "WANGENBOURG ENGENTHAL", "coordonnees_gps": [48.6210040499, 7.30576868446]}, "geometry": {"type": "Point", "coordinates": [7.30576868446, 48.6210040499]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f1de64b765e11a5d7e3e7cd63c66b3cb0c810c4", "fields": {"nom_de_la_commune": "EPFIG", "libell_d_acheminement": "EPFIG", "code_postal": "67680", "coordonnees_gps": [48.3522236097, 7.46155942515], "code_commune_insee": "67125"}, "geometry": {"type": "Point", "coordinates": [7.46155942515, 48.3522236097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c5e65b22f465572f7ab813c1945f2350a4c5bcaa", "fields": {"nom_de_la_commune": "ESCHAU", "libell_d_acheminement": "ESCHAU", "code_postal": "67114", "coordonnees_gps": [48.483284142, 7.73054345517], "code_commune_insee": "67131"}, "geometry": {"type": "Point", "coordinates": [7.73054345517, 48.483284142]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81bdcc6604b9a06a6e0556419111fef8699d09fc", "fields": {"nom_de_la_commune": "ETTENDORF", "libell_d_acheminement": "ETTENDORF", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67135"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6aba9d2a7106e4b70e709ddb38d68d43b7e6ca3c", "fields": {"nom_de_la_commune": "FEGERSHEIM", "libell_d_acheminement": "FEGERSHEIM", "code_postal": "67640", "coordonnees_gps": [48.4903746121, 7.67506089743], "code_commune_insee": "67137"}, "geometry": {"type": "Point", "coordinates": [7.67506089743, 48.4903746121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3d108accba90c05273b51b29e52615bb1d31fef", "fields": {"nom_de_la_commune": "FESSENHEIM LE BAS", "libell_d_acheminement": "FESSENHEIM LE BAS", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67138"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6602992f40d3d13c0b49f3ba3940d0396478646", "fields": {"nom_de_la_commune": "FRIESENHEIM", "libell_d_acheminement": "FRIESENHEIM", "code_postal": "67860", "coordonnees_gps": [48.3174289749, 7.68184154693], "code_commune_insee": "67146"}, "geometry": {"type": "Point", "coordinates": [7.68184154693, 48.3174289749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36f596319f69e6ab7afaa490cd2160a052ab3a7c", "fields": {"nom_de_la_commune": "FROESCHWILLER", "libell_d_acheminement": "FROESCHWILLER", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67147"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff0dc4c22381e7b0112703881145340bd0e024c0", "fields": {"nom_de_la_commune": "FURDENHEIM", "libell_d_acheminement": "FURDENHEIM", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67150"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5af162798821ac92d11481b24757da739bfbb33", "fields": {"nom_de_la_commune": "GEISWILLER", "libell_d_acheminement": "GEISWILLER", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67153"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3af4a1b887ce5e79ba2a3942da8d7397dc2017a5", "fields": {"nom_de_la_commune": "GERTWILLER", "libell_d_acheminement": "GERTWILLER", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67155"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4236c6c08ecf08c92ad706b894f1baa81e404fc8", "fields": {"nom_de_la_commune": "GEUDERTHEIM", "libell_d_acheminement": "GEUDERTHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67156"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f94cfc1f957e7c7b7e357696590e7b9b1fa0398", "fields": {"code_postal": "67360", "code_commune_insee": "67160", "libell_d_acheminement": "GOERSDORF", "ligne_5": "MITSCHDORF", "nom_de_la_commune": "GOERSDORF", "coordonnees_gps": [48.9315842812, 7.75558700625]}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "350001e4452bca79f5f2da337db0af5f1ae36dd0", "fields": {"nom_de_la_commune": "GOXWILLER", "libell_d_acheminement": "GOXWILLER", "code_postal": "67210", "coordonnees_gps": [48.4477372351, 7.50825704753], "code_commune_insee": "67164"}, "geometry": {"type": "Point", "coordinates": [7.50825704753, 48.4477372351]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7189f176199b0faf745f814345a30c454dee537", "fields": {"nom_de_la_commune": "GUMBRECHTSHOFFEN", "libell_d_acheminement": "GUMBRECHTSHOFFEN", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67174"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee3cb086881b8f01f386552b1dcbb6bd10abf03b", "fields": {"code_postal": "67110", "code_commune_insee": "67176", "libell_d_acheminement": "GUNDERSHOFFEN", "ligne_5": "GRIESBACH", "nom_de_la_commune": "GUNDERSHOFFEN", "coordonnees_gps": [48.9564241197, 7.64420401079]}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c9c2eafd73ef3ee8ac390c5329cef1ff9a85949", "fields": {"nom_de_la_commune": "GUNGWILLER", "libell_d_acheminement": "GUNGWILLER", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67178"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "188ac73084b60df7da7e3f6e9afab9ad60c050fc", "fields": {"nom_de_la_commune": "HAGUENAU", "libell_d_acheminement": "HAGUENAU", "code_postal": "67500", "coordonnees_gps": [48.83252193, 7.82037649522], "code_commune_insee": "67180"}, "geometry": {"type": "Point", "coordinates": [7.82037649522, 48.83252193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f535ffafa784114a1c5180ade8aae70342d55c3a", "fields": {"nom_de_la_commune": "HATTEN", "libell_d_acheminement": "HATTEN", "code_postal": "67690", "coordonnees_gps": [48.893568383, 7.99177649059], "code_commune_insee": "67184"}, "geometry": {"type": "Point", "coordinates": [7.99177649059, 48.893568383]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0579d9d8334eba345711f17661eef016c20350c", "fields": {"nom_de_la_commune": "HERBITZHEIM", "libell_d_acheminement": "HERBITZHEIM", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67191"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "513817fdf64fa2eb5530b1af6131788d7df6ffd3", "fields": {"nom_de_la_commune": "HINDISHEIM", "libell_d_acheminement": "HINDISHEIM", "code_postal": "67150", "coordonnees_gps": [48.4189432585, 7.66592042678], "code_commune_insee": "67197"}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f04c6724a79dff921ba34dbb898b9a1b36157ad", "fields": {"nom_de_la_commune": "VIEUX FORT", "libell_d_acheminement": "VIEUX FORT", "code_postal": "97141", "coordonnees_gps": [15.9596898147, -61.6943889363], "code_commune_insee": "97133"}, "geometry": {"type": "Point", "coordinates": [-61.6943889363, 15.9596898147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5d65424c08619e0205f6b9c1b22df7aeac414d9", "fields": {"nom_de_la_commune": "L AJOUPA BOUILLON", "libell_d_acheminement": "L AJOUPA BOUILLON", "code_postal": "97216", "coordonnees_gps": [14.8137030963, -61.124170023], "code_commune_insee": "97201"}, "geometry": {"type": "Point", "coordinates": [-61.124170023, 14.8137030963]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "50ee6ac2ee3503d9ee3d677d50a8f0e5a7431f96", "fields": {"nom_de_la_commune": "LE FRANCOIS", "libell_d_acheminement": "LE FRANCOIS", "code_postal": "97240", "coordonnees_gps": [14.6061076262, -60.9057554529], "code_commune_insee": "97210"}, "geometry": {"type": "Point", "coordinates": [-60.9057554529, 14.6061076262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7bc2fcb209ea94ad18c5a7cf0e3e8861fe8154b7", "fields": {"nom_de_la_commune": "LE MARIN", "libell_d_acheminement": "LE MARIN", "code_postal": "97290", "coordonnees_gps": [14.4839290167, -60.8574792208], "code_commune_insee": "97217"}, "geometry": {"type": "Point", "coordinates": [-60.8574792208, 14.4839290167]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e177da7e023bbbd1adedd489fded590991f4c16e", "fields": {"code_postal": "97215", "code_commune_insee": "97221", "libell_d_acheminement": "RIVIERE SALEE", "ligne_5": "RIVIERE SALEE PETIT BOURG", "nom_de_la_commune": "RIVIERE SALEE", "coordonnees_gps": [14.5259859391, -60.9645824677]}, "geometry": {"type": "Point", "coordinates": [-60.9645824677, 14.5259859391]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d698c8adc466600eed42eff94c4178f02a8e95e", "fields": {"nom_de_la_commune": "LA TRINITE", "libell_d_acheminement": "LA TRINITE", "code_postal": "97220", "coordonnees_gps": [14.7382401211, -60.9503293937], "code_commune_insee": "97230"}, "geometry": {"type": "Point", "coordinates": [-60.9503293937, 14.7382401211]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f332b03b2a6d3d76061e1ef7dab6bcfe885f8a88", "fields": {"nom_de_la_commune": "BELLEFONTAINE", "libell_d_acheminement": "BELLEFONTAINE", "code_postal": "97222", "coordonnees_gps": [14.6653538881, -61.1334870347], "code_commune_insee": "97234"}, "geometry": {"type": "Point", "coordinates": [-61.1334870347, 14.6653538881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "282aadb61fddc08f0c7e5592b2bcdadf4f9d24bd", "fields": {"nom_de_la_commune": "REGINA", "libell_d_acheminement": "REGINA", "code_postal": "97390", "coordonnees_gps": [3.94089788732, -52.5199751227], "code_commune_insee": "97301"}, "geometry": {"type": "Point", "coordinates": [-52.5199751227, 3.94089788732]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cfd6d1629234724a100603e1ec6537a100cd0e2", "fields": {"nom_de_la_commune": "IRACOUBO", "libell_d_acheminement": "IRACOUBO", "code_postal": "97350", "coordonnees_gps": [5.27001105012, -53.3197762964], "code_commune_insee": "97303"}, "geometry": {"type": "Point", "coordinates": [-53.3197762964, 5.27001105012]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "516985220f135eb673c4d2c1b2907b8922f97661", "fields": {"nom_de_la_commune": "KOUROU", "libell_d_acheminement": "KOUROU", "code_postal": "97310", "coordonnees_gps": [4.93348048572, -52.7663466753], "code_commune_insee": "97304"}, "geometry": {"type": "Point", "coordinates": [-52.7663466753, 4.93348048572]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d7044f6ad53a308fe36e1ebe23afab6275e1474", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "97313", "coordonnees_gps": [3.74183573543, -52.1326362653], "code_commune_insee": "97308"}, "geometry": {"type": "Point", "coordinates": [-52.1326362653, 3.74183573543]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "585ae3046c75e079fc4489ac0b2506beab5d4656", "fields": {"nom_de_la_commune": "ROURA", "libell_d_acheminement": "ROURA", "code_postal": "97311", "coordonnees_gps": [4.46467206988, -52.5129184542], "code_commune_insee": "97310"}, "geometry": {"type": "Point", "coordinates": [-52.5129184542, 4.46467206988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41bbe037862b84a544d477a0b05c3fabadba5195", "fields": {"nom_de_la_commune": "SAUL", "libell_d_acheminement": "SAUL", "code_postal": "97314", "coordonnees_gps": [3.91383993162, -53.39852266], "code_commune_insee": "97352"}, "geometry": {"type": "Point", "coordinates": [-53.39852266, 3.91383993162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8d1ad5018d81d5fa1abe3a385509b9c55c8b9cc", "fields": {"nom_de_la_commune": "L ETANG SALE", "libell_d_acheminement": "L ETANG SALE", "code_postal": "97427", "coordonnees_gps": [-21.2492352781, 55.3670374165], "code_commune_insee": "97404"}, "geometry": {"type": "Point", "coordinates": [55.3670374165, -21.2492352781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad4da664b5021d237e1076b394a999df97e1c55f", "fields": {"code_postal": "97427", "code_commune_insee": "97404", "libell_d_acheminement": "L ETANG SALE", "ligne_5": "L ETANG SALE LES BAINS", "nom_de_la_commune": "L ETANG SALE", "coordonnees_gps": [-21.2492352781, 55.3670374165]}, "geometry": {"type": "Point", "coordinates": [55.3670374165, -21.2492352781]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d9a0312c87846367cb28552cdcbe130426842e25", "fields": {"nom_de_la_commune": "LE PORT", "libell_d_acheminement": "LE PORT", "code_postal": "97420", "coordonnees_gps": [-20.9441300378, 55.3052625029], "code_commune_insee": "97407"}, "geometry": {"type": "Point", "coordinates": [55.3052625029, -20.9441300378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98d83c1f53cd8b2bc6a601b7b8153918b93ac36a", "fields": {"code_postal": "97420", "code_commune_insee": "97407", "libell_d_acheminement": "LE PORT", "ligne_5": "LE PORT ZUP", "nom_de_la_commune": "LE PORT", "coordonnees_gps": [-20.9441300378, 55.3052625029]}, "geometry": {"type": "Point", "coordinates": [55.3052625029, -20.9441300378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cd5aa22f3e000473d039979d77a0d0f29596c8d7", "fields": {"code_postal": "97419", "code_commune_insee": "97408", "libell_d_acheminement": "LA POSSESSION", "ligne_5": "LE DOS D ANE", "nom_de_la_commune": "LA POSSESSION", "coordonnees_gps": [-20.99459115, 55.3979867416]}, "geometry": {"type": "Point", "coordinates": [55.3979867416, -20.99459115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c5d47b5fbe05383e6fff4fa3ab9742cfdafd393", "fields": {"code_postal": "97437", "code_commune_insee": "97410", "libell_d_acheminement": "ST BENOIT", "ligne_5": "STE ANNE", "nom_de_la_commune": "ST BENOIT", "coordonnees_gps": [-21.0919418821, 55.6492890915]}, "geometry": {"type": "Point", "coordinates": [55.6492890915, -21.0919418821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b2ae1c3f45a8fddd6e1292a213507e60c8cc7b2", "fields": {"nom_de_la_commune": "ST BENOIT", "libell_d_acheminement": "ST BENOIT", "code_postal": "97470", "coordonnees_gps": [-21.0919418821, 55.6492890915], "code_commune_insee": "97410"}, "geometry": {"type": "Point", "coordinates": [55.6492890915, -21.0919418821]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19cc4f9ef7fc3cd13ca5a7b4c83bd03aa8315ec6", "fields": {"code_postal": "97417", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "LA MONTAGNE", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc3fb8e73b38500b3955761ac69cfa879944a98f", "fields": {"code_postal": "97417", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "ST BERNARD", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10dfcc91e4c7a96a99554ce0246d918c5af8a201", "fields": {"code_postal": "97490", "code_commune_insee": "97411", "libell_d_acheminement": "ST DENIS", "ligne_5": "LA BRETAGNE", "nom_de_la_commune": "ST DENIS", "coordonnees_gps": [-20.9331449895, 55.4471125463]}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "396dc78d4c7c3afce719fab004bbd20884bd6fd0", "fields": {"code_postal": "97421", "code_commune_insee": "97414", "libell_d_acheminement": "ST LOUIS", "ligne_5": "LES MAKES", "nom_de_la_commune": "ST LOUIS", "coordonnees_gps": [-21.2337866407, 55.4216954351]}, "geometry": {"type": "Point", "coordinates": [55.4216954351, -21.2337866407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef8b284825eaf4372d601733359fd12ad536267d", "fields": {"code_postal": "97434", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "LA SALINE LES BAINS", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35096415580b452df0dc26b7668bd1529dd01e5b", "fields": {"code_postal": "97434", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "ST GILLES LES BAINS", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6eccbff94b688d62b634d4ad027dcfeb2f199ab2", "fields": {"code_postal": "97410", "code_commune_insee": "97416", "libell_d_acheminement": "ST PIERRE", "ligne_5": "RAVINE BLANCHE", "nom_de_la_commune": "ST PIERRE", "coordonnees_gps": [-21.3123020427, 55.4942837134]}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd0c4dd8c861fae308304ecbf60a1f300f1c8842", "fields": {"nom_de_la_commune": "ST PHILIPPE", "libell_d_acheminement": "ST PHILIPPE", "code_postal": "97442", "coordonnees_gps": [-21.3038963279, 55.7450487772], "code_commune_insee": "97417"}, "geometry": {"type": "Point", "coordinates": [55.7450487772, -21.3038963279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae139d6fc6f1177b83d526a97a533daa9961f0bd", "fields": {"nom_de_la_commune": "SALAZIE", "libell_d_acheminement": "SALAZIE", "code_postal": "97433", "coordonnees_gps": [-21.0468656868, 55.5080493418], "code_commune_insee": "97421"}, "geometry": {"type": "Point", "coordinates": [55.5080493418, -21.0468656868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46234f993b439bcd07796d1a8eaf739bd186339f", "fields": {"code_postal": "97430", "code_commune_insee": "97422", "libell_d_acheminement": "LE TAMPON", "ligne_5": "LES TROIS MARES", "nom_de_la_commune": "LE TAMPON", "coordonnees_gps": [-21.2232735842, 55.5587522693]}, "geometry": {"type": "Point", "coordinates": [55.5587522693, -21.2232735842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45bdf968a001dd08d02d574b5a25848c3897c8a5", "fields": {"nom_de_la_commune": "LES TROIS BASSINS", "libell_d_acheminement": "LES TROIS BASSINS", "code_postal": "97426", "coordonnees_gps": [-21.1102892051, 55.3294246331], "code_commune_insee": "97423"}, "geometry": {"type": "Point", "coordinates": [55.3294246331, -21.1102892051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d409e3b732cd1b4dc51a5f19ea4d42bbee3d629", "fields": {"nom_de_la_commune": "CILAOS", "libell_d_acheminement": "CILAOS", "code_postal": "97413", "coordonnees_gps": [-21.1439238354, 55.4586896242], "code_commune_insee": "97424"}, "geometry": {"type": "Point", "coordinates": [55.4586896242, -21.1439238354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56789c4de4f3e646c658bff26cf273eb9066543f", "fields": {"nom_de_la_commune": "BANDRABOUA", "libell_d_acheminement": "BANDRABOUA", "code_postal": "97650", "coordonnees_gps": [-12.758982005, 45.144203404], "code_commune_insee": "97602"}, "geometry": {"type": "Point", "coordinates": [45.144203404, -12.758982005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8773ab69fc0f5b870690b7fb533fc33e810b4ba", "fields": {"code_postal": "97650", "code_commune_insee": "97611", "libell_d_acheminement": "MAMOUDZOU", "ligne_5": "DZOUMOGNE", "nom_de_la_commune": "MAMOUDZOU", "coordonnees_gps": [-12.758982005, 45.144203404]}, "geometry": {"type": "Point", "coordinates": [45.144203404, -12.758982005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a363d0ec7a2ba455a4fb8aaecc48a7687184218", "fields": {"nom_de_la_commune": "OUANGANI", "libell_d_acheminement": "OUANGANI", "code_postal": "97670", "coordonnees_gps": [-12.8328062861, 45.1308284247], "code_commune_insee": "97614"}, "geometry": {"type": "Point", "coordinates": [45.1308284247, -12.8328062861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03e5393d75ee57ff01122143a6aa3aa3efc7c220", "fields": {"code_postal": "97670", "code_commune_insee": "97614", "libell_d_acheminement": "OUANGANI", "ligne_5": "COCONI", "nom_de_la_commune": "OUANGANI", "coordonnees_gps": [-12.8328062861, 45.1308284247]}, "geometry": {"type": "Point", "coordinates": [45.1308284247, -12.8328062861]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "345963e79cf9feec588d47bfb08818cd9d7c4e9a", "fields": {"nom_de_la_commune": "PAMANDZI", "libell_d_acheminement": "PAMANDZI", "code_postal": "97615", "coordonnees_gps": [-12.785467309, 45.2832655596], "code_commune_insee": "97615"}, "geometry": {"type": "Point", "coordinates": [45.2832655596, -12.785467309]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74531ceb8e5215587ac0a1961e15ee66e79e913f", "fields": {"nom_de_la_commune": "SADA", "libell_d_acheminement": "SADA", "code_postal": "97640", "coordonnees_gps": [-12.861274469, 45.1184215854], "code_commune_insee": "97616"}, "geometry": {"type": "Point", "coordinates": [45.1184215854, -12.861274469]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167063e0bf02b4196a4bcf3c150159ab0c38b21d", "fields": {"nom_de_la_commune": "ANAA", "libell_d_acheminement": "TEPUPAHEA", "code_postal": "98790", "ligne_5": "ANAA", "code_commune_insee": "98711"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4b98a7e0f57c83f2d08cef32dc3f16787e50755", "fields": {"nom_de_la_commune": "FAAA", "libell_d_acheminement": "FAAA", "code_postal": "98704", "code_commune_insee": "98715"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541e93a541ddda374c0794608db83571d7746bc6", "fields": {"nom_de_la_commune": "FAKARAVA", "libell_d_acheminement": "PAPARARA", "code_postal": "98764", "ligne_5": "FAKARAVA", "code_commune_insee": "98716"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3164dab0d54cb2d9f4d2786941d4aab0e9544167", "fields": {"nom_de_la_commune": "FAKARAVA", "libell_d_acheminement": "TOAU", "code_postal": "98790", "ligne_5": "FAKARAVA", "code_commune_insee": "98716"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "859c59eb9ec36dade1a188db6cfd627ca848c606", "fields": {"nom_de_la_commune": "FAKARAVA", "libell_d_acheminement": "MOTU TAPU", "code_postal": "98790", "ligne_5": "FAKARAVA", "code_commune_insee": "98716"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8e0f66a72c81de496f947ae15283b8106c86048", "fields": {"nom_de_la_commune": "FATU HIVA", "libell_d_acheminement": "HANAVAVE", "code_postal": "98740", "ligne_5": "FATU HIVA", "code_commune_insee": "98718"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e789a3a1f66d0286c0b79745c8a5b1d3c4851b9e", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "AKAMARU", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "086bb09b228cb8b2885fb751c9631732cbdf26ad", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "VAHANGA", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03aaf0aff60871076ae0359da2d6ae731b4b2366", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MARIA EST", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f004bce766e37220446aa55e686440af8af0aff4", "fields": {"nom_de_la_commune": "HIKUERU", "libell_d_acheminement": "RAVAHERE", "code_postal": "98790", "ligne_5": "HIKUERU", "code_commune_insee": "98721"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac6669f3c2808523901fac08b4dfb63fefcebde7", "fields": {"nom_de_la_commune": "HIKUERU", "libell_d_acheminement": "MAHETIKA", "code_postal": "98790", "ligne_5": "HIKUERU", "code_commune_insee": "98721"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df03e86e5e74e7352b64565cebd0ab0f2d9d3b46", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "HANAIAPA", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bbd24bbdee5d03493a0599cd3833d7c0bf08c33e", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "ATUONA", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9250bde7bdb915f92dd428300fe4268ef741502", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "HUAHINE", "code_postal": "98731", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941d3140739c68a17ab549b8f7333369ce1d84df", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "MAROE", "code_postal": "98731", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71f7afec0c21e1255f0190582208a3a31c976567", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "GARUMAOA", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4bc376d6914b844b4d798415977e9d4427265d62", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "HARAIKI", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1807356f432ad430a34bc990e2a506498640297", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "HENUAPAREA", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae0a33bce064ee9bdc03f5afe42a1bbe1a0a0f82", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "OTATAKE", "code_postal": "98790", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11c35aa8e0b91fbbb6fad97e153dda37f69c4c5d", "fields": {"nom_de_la_commune": "MANIHI", "libell_d_acheminement": "TURIPAOA", "code_postal": "98771", "ligne_5": "MANIHI", "code_commune_insee": "98727"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13bc792f6be543dabde02c5c976e7f82d0e41b4f", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "TEMAE", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad72cbe5c616b0b9b5fb565cb54e9a2115e8b36c", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "MAIAO", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f47fa9781e284abd0950c3d11dc9d237bf0ec45", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "HAURU", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b47e6b4db7a004497f82bf8ec053bf5626344638", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "OPUNOHU", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f093217c985f96482dbb20dcaabff0e0b8ccc6e2", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "PAPETOAI", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d12733ee83132b96cb7b5ae78905b69be03cc3", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "VAIANAE", "code_postal": "98729", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "86464300b421bdba263c1f5d7945684a602a4655", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "TERRE DESERTE", "code_postal": "98742", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31d9358e059c5b91fff6742857c97bf0bb76dc47", "fields": {"nom_de_la_commune": "NUKUTAVAKE", "libell_d_acheminement": "TAVAVA", "code_postal": "98773", "ligne_5": "NUKUTAVAKE", "code_commune_insee": "98732"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "997754547779c4c56b1a8ee3edccf038be00d793", "fields": {"nom_de_la_commune": "PIRAE", "libell_d_acheminement": "PIRAE", "code_postal": "98716", "code_commune_insee": "98736"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e8a9fd541e8ad49a49b4a98c0d7a0894c021079", "fields": {"nom_de_la_commune": "PUNAAUIA", "libell_d_acheminement": "PUNAAUIA", "code_postal": "98703", "code_commune_insee": "98738"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c646cacc2528c7ea2c7a067c5fac1cd962383f0", "fields": {"nom_de_la_commune": "RAIVAVAE", "libell_d_acheminement": "MAHANATOA", "code_postal": "98750", "ligne_5": "RAIVAVAE", "code_commune_insee": "98739"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58b799834635b33b88300b5f68771ac5a590a87e", "fields": {"nom_de_la_commune": "RAIVAVAE", "libell_d_acheminement": "RAIRUA", "code_postal": "98750", "ligne_5": "RAIVAVAE", "code_commune_insee": "98739"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "55f0ede865b4fd5671b5e53caec19e483d85485f", "fields": {"nom_de_la_commune": "RAIVAVAE", "libell_d_acheminement": "VAIURU", "code_postal": "98750", "ligne_5": "RAIVAVAE", "code_commune_insee": "98739"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63bebf0399329dcbc502cf49163c242b4b390f8e", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "TAPUAMU", "code_postal": "98733", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32078954dc0fd86f35e2986f1e918b6694532bf0", "fields": {"nom_de_la_commune": "TAIARAPU EST", "libell_d_acheminement": "AFAAHITI", "code_postal": "98719", "ligne_5": "TAIARAPU EST", "code_commune_insee": "98747"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f43af3cef906f0e43ba01892db288019b2f79a", "fields": {"nom_de_la_commune": "TAIARAPU EST", "libell_d_acheminement": "FAAONE", "code_postal": "98720", "ligne_5": "TAIARAPU EST", "code_commune_insee": "98747"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8b5b1b2dec3b6388e8652c4c177d2126fefb6df", "fields": {"nom_de_la_commune": "TAIARAPU EST", "libell_d_acheminement": "TAUTIRA", "code_postal": "98722", "ligne_5": "TAIARAPU EST", "code_commune_insee": "98747"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5dce03dd508b8220511626ccf6f22eb70c4541bb", "fields": {"nom_de_la_commune": "TAIARAPU OUEST", "libell_d_acheminement": "TOAHOTU", "code_postal": "98724", "ligne_5": "TAIARAPU OUEST", "code_commune_insee": "98748"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bb9cb8f01d85c9164ee2b0e29f8a8ce6e952e8b9", "fields": {"nom_de_la_commune": "TAIARAPU OUEST", "libell_d_acheminement": "VAIRAO", "code_postal": "98725", "ligne_5": "TAIARAPU OUEST", "code_commune_insee": "98748"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0c0a5e2447391093299845edc1cd90472977854", "fields": {"nom_de_la_commune": "TAPUTAPUATEA", "libell_d_acheminement": "TAPUTAPUATEA", "code_postal": "98735", "code_commune_insee": "98750"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c789d5612a3bd2af9f4670c08d7e4e1af87f8b99", "fields": {"nom_de_la_commune": "TAPUTAPUATEA", "libell_d_acheminement": "PUOHINE", "code_postal": "98735", "ligne_5": "TAPUTAPUATEA", "code_commune_insee": "98750"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d2306f3a323eb6c2a8cb74eb488f2017e6b098", "fields": {"nom_de_la_commune": "TEVA I UTA", "libell_d_acheminement": "PAPEARI", "code_postal": "98727", "ligne_5": "TEVA I UTA", "code_commune_insee": "98752"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29d5c73a19270d5583451edafe82b0acd588bd28", "fields": {"nom_de_la_commune": "TUBUAI", "libell_d_acheminement": "MAHU", "code_postal": "98754", "ligne_5": "TUBUAI", "code_commune_insee": "98753"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "697afb2fa6f5b7f31733d2870e70c2d182c66f73", "fields": {"nom_de_la_commune": "TUMARAA", "libell_d_acheminement": "TEVAITOA", "code_postal": "98735", "ligne_5": "TUMARAA", "code_commune_insee": "98754"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5ad7dc34ca93bb1aa59a8da0a50e0b26639eed8a", "fields": {"nom_de_la_commune": "UA HUKA", "libell_d_acheminement": "HANE", "code_postal": "98747", "ligne_5": "UA HUKA", "code_commune_insee": "98756"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c2d4110291382ad30d221dfb1bbf759fe453617", "fields": {"nom_de_la_commune": "UA POU", "libell_d_acheminement": "HOHOI", "code_postal": "98745", "ligne_5": "UA POU", "code_commune_insee": "98757"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6294fdab82f0e2517083d673b6dd6b370439a47f", "fields": {"nom_de_la_commune": "UA POU", "libell_d_acheminement": "HAAKUTI", "code_postal": "98746", "ligne_5": "UA POU", "code_commune_insee": "98757"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c9d249ae57d8cc2410841d9915d40084e02b37f", "fields": {"nom_de_la_commune": "CANALA", "libell_d_acheminement": "CANALA", "code_postal": "98813", "code_commune_insee": "98804"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "535f5670687b73c7c1540782b625ca76b2da0983", "fields": {"nom_de_la_commune": "DUMBEA", "libell_d_acheminement": "DUMBEA", "code_postal": "98830", "code_commune_insee": "98805"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68b70bb88bf913db870ae7b7fad66ea0e0cf1c93", "fields": {"nom_de_la_commune": "DUMBEA", "libell_d_acheminement": "DUMBEA", "code_postal": "98835", "code_commune_insee": "98805"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abc38c23a4c5be01eeb5157f0ac4368375a7ef8b", "fields": {"nom_de_la_commune": "DUMBEA", "libell_d_acheminement": "DUMBEA", "code_postal": "98837", "code_commune_insee": "98805"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c20a8ed71b714803e0dd1fa01f35d6ba7618016b", "fields": {"nom_de_la_commune": "LIFOU", "libell_d_acheminement": "MOU", "code_postal": "98885", "ligne_5": "LIFOU", "code_commune_insee": "98814"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a9eda5d9b900993cfa6dea25f3fdda353a712e4", "fields": {"nom_de_la_commune": "OUVEA", "libell_d_acheminement": "FAYAOUE", "code_postal": "98814", "ligne_5": "OUVEA", "code_commune_insee": "98820"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e260f2584d2096cb07f5a3e0ff2b5659b124712", "fields": {"nom_de_la_commune": "PAITA", "libell_d_acheminement": "PAITA", "code_postal": "98889", "code_commune_insee": "98821"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4146b4cf271875abe3e5353cf9bd3bcb0dcdf945", "fields": {"nom_de_la_commune": "POUM", "libell_d_acheminement": "POUM", "code_postal": "98826", "code_commune_insee": "98826"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "981e4da9f968e528ae3a0569c2446ebc52a5c417", "fields": {"nom_de_la_commune": "POYA", "libell_d_acheminement": "NEPOUI", "code_postal": "98877", "ligne_5": "POYA", "code_commune_insee": "98827"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf472305e66faf4949e9808bcb7e32f9c2e0590b", "fields": {"nom_de_la_commune": "TOUHO", "libell_d_acheminement": "TOUHO", "code_postal": "98831", "code_commune_insee": "98830"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7a6fd0be4023c37bddb7fd09bedcc2c11d19421", "fields": {"nom_de_la_commune": "ALBITRECCIA", "libell_d_acheminement": "ALBITRECCIA", "code_postal": "20128", "coordonnees_gps": [41.8616733244, 8.8885100241], "code_commune_insee": "2A008"}, "geometry": {"type": "Point", "coordinates": [8.8885100241, 41.8616733244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5566a20559f8ccbd81e98bbd5460ec65fbc90bb7", "fields": {"nom_de_la_commune": "AZILONE AMPAZA", "libell_d_acheminement": "AZILONE AMPAZA", "code_postal": "20190", "coordonnees_gps": [41.8574694236, 8.99242736054], "code_commune_insee": "2A026"}, "geometry": {"type": "Point", "coordinates": [8.99242736054, 41.8574694236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65f4b2ee754223bb28fbb2f5a12fb68ceed9df29", "fields": {"nom_de_la_commune": "BELVEDERE CAMPOMORO", "libell_d_acheminement": "BELVEDERE CAMPOMORO", "code_postal": "20110", "coordonnees_gps": [41.6455084953, 8.89371494323], "code_commune_insee": "2A035"}, "geometry": {"type": "Point", "coordinates": [8.89371494323, 41.6455084953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe0095b065b1b3080ae4fde60c478e58776a755f", "fields": {"nom_de_la_commune": "BOCOGNANO", "libell_d_acheminement": "BOCOGNANO", "code_postal": "20136", "coordonnees_gps": [42.0887565514, 9.0707670091], "code_commune_insee": "2A040"}, "geometry": {"type": "Point", "coordinates": [9.0707670091, 42.0887565514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34aeecd961b31c5c798751ab6d1f972550f3e30c", "fields": {"nom_de_la_commune": "BONIFACIO", "libell_d_acheminement": "BONIFACIO", "code_postal": "20169", "coordonnees_gps": [41.4355669042, 9.18561918414], "code_commune_insee": "2A041"}, "geometry": {"type": "Point", "coordinates": [9.18561918414, 41.4355669042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c17fcbb87c07a8ae1701aad9ff8eedcbf2ce7032", "fields": {"code_postal": "49170", "code_commune_insee": "49329", "libell_d_acheminement": "SAVENNIERES", "ligne_5": "EPIRE", "nom_de_la_commune": "SAVENNIERES", "coordonnees_gps": [47.4198682182, -0.744180002026]}, "geometry": {"type": "Point", "coordinates": [-0.744180002026, 47.4198682182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a223bd76a69c00723a1be8c8964fc417e56138f", "fields": {"nom_de_la_commune": "SERMAISE", "libell_d_acheminement": "SERMAISE", "code_postal": "49140", "coordonnees_gps": [47.5412696168, -0.334422657003], "code_commune_insee": "49334"}, "geometry": {"type": "Point", "coordinates": [-0.334422657003, 47.5412696168]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eab5166d506b94497eecb9670d79d702d16caf53", "fields": {"code_postal": "49380", "code_commune_insee": "49345", "libell_d_acheminement": "BELLEVIGNE EN LAYON", "ligne_5": "CHAMP SUR LAYON", "nom_de_la_commune": "BELLEVIGNE EN LAYON", "coordonnees_gps": [47.275621339, -0.477027666042]}, "geometry": {"type": "Point", "coordinates": [-0.477027666042, 47.275621339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "52ed91f3263a4f89a6937f2dfd1030472c93659c", "fields": {"nom_de_la_commune": "TIERCE", "libell_d_acheminement": "TIERCE", "code_postal": "49125", "coordonnees_gps": [47.6143418722, -0.475891019587], "code_commune_insee": "49347"}, "geometry": {"type": "Point", "coordinates": [-0.475891019587, 47.6143418722]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa37a86c80a329d3bd12f7d0c03588a4fe571567", "fields": {"nom_de_la_commune": "TURQUANT", "libell_d_acheminement": "TURQUANT", "code_postal": "49730", "coordonnees_gps": [47.2331093942, 0.0334548671675], "code_commune_insee": "49358"}, "geometry": {"type": "Point", "coordinates": [0.0334548671675, 47.2331093942]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92cd81f10fd5e554e7cb6b135b1531a76711d32e", "fields": {"code_postal": "49220", "code_commune_insee": "49367", "libell_d_acheminement": "ERDRE EN ANJOU", "ligne_5": "BRAIN SUR LONGUENEE", "nom_de_la_commune": "ERDRE EN ANJOU", "coordonnees_gps": [47.6290283416, -0.733017824354]}, "geometry": {"type": "Point", "coordinates": [-0.733017824354, 47.6290283416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98c972d6d186b1bb6a5afe3c0018f872e6a378a3", "fields": {"code_postal": "49310", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "LE VOIDE", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1669501795, -0.609299799039]}, "geometry": {"type": "Point", "coordinates": [-0.609299799039, 47.1669501795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e89e8896760d902a25c4b1f60db313c789d83aa5", "fields": {"code_postal": "49560", "code_commune_insee": "49373", "libell_d_acheminement": "LYS HAUT LAYON", "ligne_5": "NUEIL SUR LAYON", "nom_de_la_commune": "LYS HAUT LAYON", "coordonnees_gps": [47.1224159134, -0.517336528363]}, "geometry": {"type": "Point", "coordinates": [-0.517336528363, 47.1224159134]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8701c60008a025e39be81e2700e977683aecd6b0", "fields": {"nom_de_la_commune": "ACQUEVILLE", "libell_d_acheminement": "ACQUEVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50001"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "239265434f5008c9133a102dc69a821ada25d598", "fields": {"nom_de_la_commune": "AGON COUTAINVILLE", "libell_d_acheminement": "AGON COUTAINVILLE", "code_postal": "50230", "coordonnees_gps": [49.0383449062, -1.58105756114], "code_commune_insee": "50003"}, "geometry": {"type": "Point", "coordinates": [-1.58105756114, 49.0383449062]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34da1c822b18fc88488215f330c63dccf710957d", "fields": {"nom_de_la_commune": "ANNEVILLE SUR MER", "libell_d_acheminement": "ANNEVILLE SUR MER", "code_postal": "50560", "coordonnees_gps": [49.1045282282, -1.56820466944], "code_commune_insee": "50014"}, "geometry": {"type": "Point", "coordinates": [-1.56820466944, 49.1045282282]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d20adb31f7d136c94038081c59442c696df12427", "fields": {"nom_de_la_commune": "ARGOUGES", "libell_d_acheminement": "ARGOUGES", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50018"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f08cbd27ef1e8796bbfd81395deec6de166c8f8", "fields": {"nom_de_la_commune": "AUMEVILLE LESTRE", "libell_d_acheminement": "AUMEVILLE LESTRE", "code_postal": "50630", "coordonnees_gps": [49.5866209859, -1.35281352694], "code_commune_insee": "50022"}, "geometry": {"type": "Point", "coordinates": [-1.35281352694, 49.5866209859]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "341194da9a3ba75bde96ed50493838b8a331bea5", "fields": {"nom_de_la_commune": "LA BALEINE", "libell_d_acheminement": "LA BALEINE", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50028"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce28a401e6a66e96c3f52398adc576766e894b95", "fields": {"nom_de_la_commune": "BARFLEUR", "libell_d_acheminement": "BARFLEUR", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50030"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ed6795aef488a28d13267a2292aa19ee700cb80", "fields": {"nom_de_la_commune": "BAUPTE", "libell_d_acheminement": "BAUPTE", "code_postal": "50500", "coordonnees_gps": [49.2869249451, -1.26541021444], "code_commune_insee": "50036"}, "geometry": {"type": "Point", "coordinates": [-1.26541021444, 49.2869249451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b11ce6d65c3822009321f8ef011c5ab929a470ac", "fields": {"nom_de_la_commune": "LA BAZOGE", "libell_d_acheminement": "LA BAZOGE", "code_postal": "50520", "coordonnees_gps": [48.6807033052, -1.04967397095], "code_commune_insee": "50037"}, "geometry": {"type": "Point", "coordinates": [-1.04967397095, 48.6807033052]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8cb9fd7356a1ea670163eed094eb81cea11e100", "fields": {"nom_de_la_commune": "BERIGNY", "libell_d_acheminement": "BERIGNY", "code_postal": "50810", "coordonnees_gps": [49.1141244901, -0.965580935712], "code_commune_insee": "50046"}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d31e161d338a35555df3488966ed0e51223ea34", "fields": {"nom_de_la_commune": "BRAINVILLE", "libell_d_acheminement": "BRAINVILLE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50072"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc00f7a7c6e17d3840e3ff9df68c2fb06b62c395", "fields": {"nom_de_la_commune": "BRECEY", "libell_d_acheminement": "BRECEY", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50074"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c94067e9cdf2fb66b3e8adbde5f777726abd3477", "fields": {"code_postal": "50260", "code_commune_insee": "50082", "libell_d_acheminement": "BRICQUEBEC EN COTENTIN", "ligne_5": "LES PERQUES", "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", "coordonnees_gps": [49.4933087231, -1.61334140824]}, "geometry": {"type": "Point", "coordinates": [-1.61334140824, 49.4933087231]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "afc4208207bd594f3224d5e71207003f368a3cc4", "fields": {"nom_de_la_commune": "BRICQUEBOSQ", "libell_d_acheminement": "BRICQUEBOSQ", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50083"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57c9757eae7d2612a086be5defdd41bb257b7d7e", "fields": {"code_postal": "50640", "code_commune_insee": "50090", "libell_d_acheminement": "BUAIS LES MONTS", "ligne_5": "ST SYMPHORIEN DES MONTS", "nom_de_la_commune": "BUAIS LES MONTS", "coordonnees_gps": [48.5293564364, -0.941843015494]}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "baf0f2c8bf685850a50c5b3c5f4247824fd07b52", "fields": {"nom_de_la_commune": "CANVILLE LA ROCQUE", "libell_d_acheminement": "CANVILLE LA ROCQUE", "code_postal": "50580", "coordonnees_gps": [49.3440940344, -1.66617929223], "code_commune_insee": "50097"}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2743730975bc2549151601ab7ab9f1bea6ef0eb1", "fields": {"nom_de_la_commune": "CARANTILLY", "libell_d_acheminement": "CARANTILLY", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50098"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76d446480e563f6eaaeed2f06e472f5ca1c04965", "fields": {"nom_de_la_commune": "CARNET", "libell_d_acheminement": "CARNET", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50100"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e084d3e8778b685df9e2064151d970e6ec399a6", "fields": {"nom_de_la_commune": "CARNEVILLE", "libell_d_acheminement": "CARNEVILLE", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50101"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0fa433399caddd79d8dfb792630ad685d386acb2", "fields": {"nom_de_la_commune": "CAROLLES", "libell_d_acheminement": "CAROLLES", "code_postal": "50740", "coordonnees_gps": [48.7483636276, -1.5593486808], "code_commune_insee": "50102"}, "geometry": {"type": "Point", "coordinates": [-1.5593486808, 48.7483636276]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95f0542a19ef2f0f0ab85f768b02fd7bcad6d8e2", "fields": {"nom_de_la_commune": "CERISY LA FORET", "libell_d_acheminement": "CERISY LA FORET", "code_postal": "50680", "coordonnees_gps": [49.1779499072, -1.00945991338], "code_commune_insee": "50110"}, "geometry": {"type": "Point", "coordinates": [-1.00945991338, 49.1779499072]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15b5248adbf9172818b2a005fdce56a4721e7a69", "fields": {"nom_de_la_commune": "CERISY LA SALLE", "libell_d_acheminement": "CERISY LA SALLE", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50111"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24629fc99c4c544867763e1aa15bc521710afb5b", "fields": {"nom_de_la_commune": "CHAMPREPUS", "libell_d_acheminement": "CHAMPREPUS", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50118"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00ff5e5efd260631afb59b2a7a9d359009dcf14d", "fields": {"code_postal": "50110", "code_commune_insee": "50129", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "ligne_5": "TOURLAVILLE", "nom_de_la_commune": "CHERBOURG EN COTENTIN", "coordonnees_gps": [49.6236287204, -1.56289409844]}, "geometry": {"type": "Point", "coordinates": [-1.56289409844, 49.6236287204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "934a8790314049825ad374610fdbe44b3c2c70d5", "fields": {"code_postal": "50130", "code_commune_insee": "50129", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "ligne_5": "OCTEVILLE", "nom_de_la_commune": "CHERBOURG EN COTENTIN", "coordonnees_gps": [49.6331832109, -1.6338586934]}, "geometry": {"type": "Point", "coordinates": [-1.6338586934, 49.6331832109]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c277245ee6a0efdc3ab9fc2e6f7e8ba50d27452a", "fields": {"code_postal": "50470", "code_commune_insee": "50129", "libell_d_acheminement": "CHERBOURG EN COTENTIN", "ligne_5": "LA GLACERIE", "nom_de_la_commune": "CHERBOURG EN COTENTIN", "coordonnees_gps": [49.608906015, -1.62204254981]}, "geometry": {"type": "Point", "coordinates": [-1.62204254981, 49.608906015]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00e1405cb0c7048d3c5c58d3e36a8172150200c8", "fields": {"code_postal": "50330", "code_commune_insee": "50142", "libell_d_acheminement": "VICQ SUR MER", "ligne_5": "COSQUEVILLE", "nom_de_la_commune": "VICQ SUR MER", "coordonnees_gps": [49.6542463147, -1.41392167806]}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66ac8ffcbc2b6fc372c91428df019268939f9595", "fields": {"nom_de_la_commune": "COURCY", "libell_d_acheminement": "COURCY", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50145"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b72064a28f0abab2a5e6961d6978d330f5fe84d6", "fields": {"nom_de_la_commune": "COUVILLE", "libell_d_acheminement": "COUVILLE", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50149"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b670acf68c1ab4d5d586f4590b5743e36439cb9e", "fields": {"nom_de_la_commune": "LES CRESNAYS", "libell_d_acheminement": "LES CRESNAYS", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50152"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "250d9a013bbf3bbd566bd8445fbcead462aacf9e", "fields": {"nom_de_la_commune": "DIGOSVILLE", "libell_d_acheminement": "DIGOSVILLE", "code_postal": "50110", "coordonnees_gps": [49.6236287204, -1.56289409844], "code_commune_insee": "50162"}, "geometry": {"type": "Point", "coordinates": [-1.56289409844, 49.6236287204]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d00d12de50c50fcd1ed8d1038088ca6d737d7b5", "fields": {"nom_de_la_commune": "EROUDEVILLE", "libell_d_acheminement": "EROUDEVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50175"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e83304c6d901a1db187fd43b6dd964c0e30ccc9c", "fields": {"nom_de_la_commune": "ETIENVILLE", "libell_d_acheminement": "ETIENVILLE", "code_postal": "50360", "coordonnees_gps": [49.3768356416, -1.41731923499], "code_commune_insee": "50177"}, "geometry": {"type": "Point", "coordinates": [-1.41731923499, 49.3768356416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b8959762911b451f65d6387ecfdf452213b2fb4", "fields": {"nom_de_la_commune": "FIERVILLE LES MINES", "libell_d_acheminement": "FIERVILLE LES MINES", "code_postal": "50580", "coordonnees_gps": [49.3440940344, -1.66617929223], "code_commune_insee": "50183"}, "geometry": {"type": "Point", "coordinates": [-1.66617929223, 49.3440940344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a973a0937b8725ba6abcdb2b70f710958e0aa9ee", "fields": {"nom_de_la_commune": "FLAMANVILLE", "libell_d_acheminement": "FLAMANVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50184"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f068d26780b9293c0aac45334f3c72484a9fd08d", "fields": {"nom_de_la_commune": "GAVRAY", "libell_d_acheminement": "GAVRAY", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50197"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d7a51556d13ac63d9e90c5806dec346d9af21e4", "fields": {"nom_de_la_commune": "GENETS", "libell_d_acheminement": "GENETS", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50199"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaef3fedc031571db1d7f07cbea0d7b0d7f4a4fc", "fields": {"nom_de_la_commune": "GER", "libell_d_acheminement": "GER", "code_postal": "50850", "coordonnees_gps": [48.6787910778, -0.807041651633], "code_commune_insee": "50200"}, "geometry": {"type": "Point", "coordinates": [-0.807041651633, 48.6787910778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3247dc0e8033358d082dcab3eb9bc5f6491e2918", "fields": {"nom_de_la_commune": "LA GODEFROY", "libell_d_acheminement": "LA GODEFROY", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50205"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b7d01187e84331eaf5de364ce5471440c53d9de", "fields": {"nom_de_la_commune": "GONFREVILLE", "libell_d_acheminement": "GONFREVILLE", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50208"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "970ad76094d516959019ebca0dd8988155dc43cf", "fields": {"nom_de_la_commune": "GONNEVILLE LE THEIL", "libell_d_acheminement": "GONNEVILLE LE THEIL", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50209"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4240b9d15844b680d860498e281093d21ae0e506", "fields": {"nom_de_la_commune": "GOUVETS", "libell_d_acheminement": "GOUVETS", "code_postal": "50420", "coordonnees_gps": [48.9843046983, -1.06508907903], "code_commune_insee": "50214"}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53658fa6a633fa45b13b0912996f53c2397b49c4", "fields": {"code_postal": "50200", "code_commune_insee": "50215", "libell_d_acheminement": "GOUVILLE SUR MER", "ligne_5": "BOISROGER", "nom_de_la_commune": "GOUVILLE SUR MER", "coordonnees_gps": [49.0681244032, -1.4630459353]}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f488463dd6e44ce8197484924211dfe7c96cbf6", "fields": {"nom_de_la_commune": "LE GRAND CELLAND", "libell_d_acheminement": "LE GRAND CELLAND", "code_postal": "50370", "coordonnees_gps": [48.7245899979, -1.18576770618], "code_commune_insee": "50217"}, "geometry": {"type": "Point", "coordinates": [-1.18576770618, 48.7245899979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9625c7eb090c714e4f7f626ab0257a9a451e97c0", "fields": {"nom_de_la_commune": "GRANVILLE", "libell_d_acheminement": "GRANVILLE", "code_postal": "50400", "coordonnees_gps": [48.8338992843, -1.53304864714], "code_commune_insee": "50218"}, "geometry": {"type": "Point", "coordinates": [-1.53304864714, 48.8338992843]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe5689b0c3f3fce83703b539551f8f387e59dd0e", "fields": {"nom_de_la_commune": "GREVILLE HAGUE", "libell_d_acheminement": "GREVILLE HAGUE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50220"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "54c6587a9da86c6b9437fb28af4e6a94b670eb27", "fields": {"nom_de_la_commune": "GRIMESNIL", "libell_d_acheminement": "GRIMESNIL", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50221"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db9774661a3ded22e0e98a92cde3060986bdb9b8", "fields": {"nom_de_la_commune": "GROSVILLE", "libell_d_acheminement": "GROSVILLE", "code_postal": "50340", "coordonnees_gps": [49.5226862612, -1.78861427785], "code_commune_insee": "50222"}, "geometry": {"type": "Point", "coordinates": [-1.78861427785, 49.5226862612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba786d018399e0af04d6370adfb661800ca6776f", "fields": {"nom_de_la_commune": "LE GUISLAIN", "libell_d_acheminement": "LE GUISLAIN", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50225"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aff39a8a8454b048c970ca3c5728b389f316d654", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "BAUDREVILLE", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f856674ffd958616e7e5765b6150999ae40711b", "fields": {"code_postal": "50250", "code_commune_insee": "50236", "libell_d_acheminement": "LA HAYE", "ligne_5": "ST SYMPHORIEN LE VALOIS", "nom_de_la_commune": "LA HAYE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0a2bd35992cb52395c5595c5af109fbc451353d", "fields": {"code_postal": "50570", "code_commune_insee": "50239", "libell_d_acheminement": "THEREVAL", "ligne_5": "LA CHAPELLE EN JUGER", "nom_de_la_commune": "THEREVAL", "coordonnees_gps": [49.1154216014, -1.25542173856]}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e0685444161721600efadd353c5c6f36ef9e0a5", "fields": {"nom_de_la_commune": "HEMEVEZ", "libell_d_acheminement": "HEMEVEZ", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50241"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f88ef8c471740a102f73b07baee5c2b8d0e265e", "fields": {"nom_de_la_commune": "HERQUEVILLE", "libell_d_acheminement": "HERQUEVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50242"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ca98f4937cd9601d54a6306cf301755f6ce9cec", "fields": {"nom_de_la_commune": "HERENGUERVILLE", "libell_d_acheminement": "HERENGUERVILLE", "code_postal": "50660", "coordonnees_gps": [48.9716894019, -1.47095914438], "code_commune_insee": "50244"}, "geometry": {"type": "Point", "coordinates": [-1.47095914438, 48.9716894019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fcbb085281a9ba8887cf4cd1083ba5f983794d2", "fields": {"nom_de_la_commune": "JOBOURG", "libell_d_acheminement": "JOBOURG", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50257"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a12889c393600ed1875799070e52179a8f9f3f3", "fields": {"nom_de_la_commune": "JOGANVILLE", "libell_d_acheminement": "JOGANVILLE", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50258"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "158e9f4c998cf22bddd499dd1c95f5ea119aa4be", "fields": {"nom_de_la_commune": "LENGRONNE", "libell_d_acheminement": "LENGRONNE", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50266"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3872eabcb2e5b2a923373f59eb9d1cd4991af2e", "fields": {"code_postal": "50430", "code_commune_insee": "50267", "libell_d_acheminement": "LESSAY", "ligne_5": "ANGOVILLE SUR AY", "nom_de_la_commune": "LESSAY", "coordonnees_gps": [49.238207059, -1.53592999138]}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3952382ebe51d5d072ede0bf0ea55d2b2a8523af", "fields": {"nom_de_la_commune": "LIEUSAINT", "libell_d_acheminement": "LIEUSAINT", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50270"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b95334aad9929e3596b9092dbfe06c995a9f840", "fields": {"nom_de_la_commune": "LES LOGES MARCHIS", "libell_d_acheminement": "LES LOGES MARCHIS", "code_postal": "50600", "coordonnees_gps": [48.5703711319, -1.06754299241], "code_commune_insee": "50274"}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35dcc0cfdf9849c88c2a01a0b9d4cdb268999d7c", "fields": {"nom_de_la_commune": "LOLIF", "libell_d_acheminement": "LOLIF", "code_postal": "50530", "coordonnees_gps": [48.7283863786, -1.45989829146], "code_commune_insee": "50276"}, "geometry": {"type": "Point", "coordinates": [-1.45989829146, 48.7283863786]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14a27147e93c6116dd0331ce3c8ccc3a2294cc3b", "fields": {"nom_de_la_commune": "LONGUEVILLE", "libell_d_acheminement": "LONGUEVILLE", "code_postal": "50290", "coordonnees_gps": [48.8970159466, -1.52458100267], "code_commune_insee": "50277"}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d50657acd058c2a460cc84858e4ec206973c84dd", "fields": {"nom_de_la_commune": "LE LOREY", "libell_d_acheminement": "LE LOREY", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50279"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "268a36371a1dd2e43e3bfe2669a5a6984b044573", "fields": {"nom_de_la_commune": "MARCILLY", "libell_d_acheminement": "MARCILLY", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50290"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4f4757dc487173d44a3325d25c2f27668cbf3a88", "fields": {"nom_de_la_commune": "MAUPERTUS SUR MER", "libell_d_acheminement": "MAUPERTUS SUR MER", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50296"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "080e20bd49a803bd9ac445621bf85d9ea52dcee0", "fields": {"nom_de_la_commune": "LE MESNIL GILBERT", "libell_d_acheminement": "LE MESNIL GILBERT", "code_postal": "50670", "coordonnees_gps": [48.7535750517, -1.07740488104], "code_commune_insee": "50312"}, "geometry": {"type": "Point", "coordinates": [-1.07740488104, 48.7535750517]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16fe9b1f666db76fd158ececf2f55fdb9a3a072e", "fields": {"nom_de_la_commune": "LE MESNIL VILLEMAN", "libell_d_acheminement": "LE MESNIL VILLEMAN", "code_postal": "50450", "coordonnees_gps": [48.9111916966, -1.32149043714], "code_commune_insee": "50326"}, "geometry": {"type": "Point", "coordinates": [-1.32149043714, 48.9111916966]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c44003ba514db1c26357f0f71d0cda955d1827e0", "fields": {"nom_de_la_commune": "MILLIERES", "libell_d_acheminement": "MILLIERES", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50328"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "138b44a2a2972c8b0b768ce4ee9d8fa2db6c36b8", "fields": {"nom_de_la_commune": "MONTABOT", "libell_d_acheminement": "MONTABOT", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50334"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5913b8930a75e3129dab79e27c2e6054d0ec689", "fields": {"nom_de_la_commune": "MONTAIGU LA BRISETTE", "libell_d_acheminement": "MONTAIGU LA BRISETTE", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50335"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fc7b68acb8ff5299bf373324161866a17ba382", "fields": {"nom_de_la_commune": "MONTANEL", "libell_d_acheminement": "MONTANEL", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50337"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "264adeae2ef96ea796626b48e70894c40c4c8745", "fields": {"nom_de_la_commune": "MONTCUIT", "libell_d_acheminement": "MONTCUIT", "code_postal": "50490", "coordonnees_gps": [49.1348476035, -1.4186488271], "code_commune_insee": "50340"}, "geometry": {"type": "Point", "coordinates": [-1.4186488271, 49.1348476035]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fed1c821d31dd6890048d898ebedb1ed4c597e7b", "fields": {"nom_de_la_commune": "MONTREUIL SUR LOZON", "libell_d_acheminement": "MONTREUIL SUR LOZON", "code_postal": "50570", "coordonnees_gps": [49.1154216014, -1.25542173856], "code_commune_insee": "50352"}, "geometry": {"type": "Point", "coordinates": [-1.25542173856, 49.1154216014]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "873d63e0e03c02a08570b88f568b3141c87f6050", "fields": {"nom_de_la_commune": "MORIGNY", "libell_d_acheminement": "MORIGNY", "code_postal": "50410", "coordonnees_gps": [48.9223606769, -1.16803884291], "code_commune_insee": "50357"}, "geometry": {"type": "Point", "coordinates": [-1.16803884291, 48.9223606769]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5fac635372a24d86cfa5f559552ec9d1a7869a2", "fields": {"code_postal": "50140", "code_commune_insee": "50359", "libell_d_acheminement": "MORTAIN BOCAGE", "ligne_5": "VILLECHIEN", "nom_de_la_commune": "MORTAIN BOCAGE", "coordonnees_gps": [48.6562885959, -0.934860297079]}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2ce7bdc3165c753003bac64f5c6ceae23ca99ec", "fields": {"nom_de_la_commune": "MUNEVILLE SUR MER", "libell_d_acheminement": "MUNEVILLE SUR MER", "code_postal": "50290", "coordonnees_gps": [48.8970159466, -1.52458100267], "code_commune_insee": "50365"}, "geometry": {"type": "Point", "coordinates": [-1.52458100267, 48.8970159466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cf6fdbe21eafd275ae120e9ae79069016e49e77", "fields": {"nom_de_la_commune": "OMONVILLE LA PETITE", "libell_d_acheminement": "OMONVILLE LA PETITE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50385"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2673919d82b99f7c9d944fbab7b784300ed6aa9", "fields": {"nom_de_la_commune": "ORGLANDES", "libell_d_acheminement": "ORGLANDES", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50387"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2fe9beb9a266cfe7f57b14166cb227b018815ea", "fields": {"nom_de_la_commune": "OUVILLE", "libell_d_acheminement": "OUVILLE", "code_postal": "50210", "coordonnees_gps": [49.0159206209, -1.31685679946], "code_commune_insee": "50389"}, "geometry": {"type": "Point", "coordinates": [-1.31685679946, 49.0159206209]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5caf236ff96c39ed82ca0bdf971a39a11587d0fc", "fields": {"code_postal": "50600", "code_commune_insee": "50391", "libell_d_acheminement": "GRANDPARIGNY", "ligne_5": "MILLY", "nom_de_la_commune": "GRANDPARIGNY", "coordonnees_gps": [48.5703711319, -1.06754299241]}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "878eca9c46325e7f55390df6ed720ca7799b6460", "fields": {"code_postal": "50600", "code_commune_insee": "50391", "libell_d_acheminement": "GRANDPARIGNY", "ligne_5": "PARIGNY", "nom_de_la_commune": "GRANDPARIGNY", "coordonnees_gps": [48.5703711319, -1.06754299241]}, "geometry": {"type": "Point", "coordinates": [-1.06754299241, 48.5703711319]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "57ea98c233e6922d7a3a9f3e5b69d1784ac95105", "fields": {"nom_de_la_commune": "PERIERS", "libell_d_acheminement": "PERIERS", "code_postal": "50190", "coordonnees_gps": [49.2025201016, -1.39201164868], "code_commune_insee": "50394"}, "geometry": {"type": "Point", "coordinates": [-1.39201164868, 49.2025201016]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f586fc8c97b61aad004773cf0f6a4fff474d692", "fields": {"code_postal": "50250", "code_commune_insee": "50400", "libell_d_acheminement": "PICAUVILLE", "ligne_5": "CRETTEVILLE", "nom_de_la_commune": "PICAUVILLE", "coordonnees_gps": [49.3265209402, -1.49249474083]}, "geometry": {"type": "Point", "coordinates": [-1.49249474083, 49.3265209402]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64c4bc1928a67b9320171622d00d79374659685a", "fields": {"nom_de_la_commune": "PICAUVILLE", "libell_d_acheminement": "PICAUVILLE", "code_postal": "50360", "coordonnees_gps": [49.3768356416, -1.41731923499], "code_commune_insee": "50400"}, "geometry": {"type": "Point", "coordinates": [-1.41731923499, 49.3768356416]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd64c3f710b4a66348aaaf05c76410797e368feb", "fields": {"nom_de_la_commune": "PONTAUBAULT", "libell_d_acheminement": "PONTAUBAULT", "code_postal": "50220", "coordonnees_gps": [48.63048639, -1.31317304025], "code_commune_insee": "50408"}, "geometry": {"type": "Point", "coordinates": [-1.31317304025, 48.63048639]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10dafe7ff48b0febf332b9fb5f23a862545b3d9c", "fields": {"code_postal": "50170", "code_commune_insee": "50410", "libell_d_acheminement": "PONTORSON", "ligne_5": "ARDEVON", "nom_de_la_commune": "PONTORSON", "coordonnees_gps": [48.5681356237, -1.47762368689]}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1794f949abbcec3403ac8c15fa9d38e5fa3091f", "fields": {"nom_de_la_commune": "QUIBOU", "libell_d_acheminement": "QUIBOU", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50420"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1dc15fe0e8686b3c4ba7d9b1a8f9d574320926b9", "fields": {"nom_de_la_commune": "REIGNEVILLE BOCAGE", "libell_d_acheminement": "REIGNEVILLE BOCAGE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50430"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "60d753fa6ceaabdfa516b45d16c3c3ae55d2e207", "fields": {"code_postal": "50140", "code_commune_insee": "50436", "libell_d_acheminement": "ROMAGNY FONTENAY", "ligne_5": "FONTENAY", "nom_de_la_commune": "ROMAGNY FONTENAY", "coordonnees_gps": [48.6562885959, -0.934860297079]}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "507143c582b6c775dfdab7040d097c7106ea9d34", "fields": {"nom_de_la_commune": "SACEY", "libell_d_acheminement": "SACEY", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50443"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "524ec42d5eef90bbf191af6da56f28673259455c", "fields": {"nom_de_la_commune": "ST BARTHELEMY", "libell_d_acheminement": "ST BARTHELEMY", "code_postal": "50140", "coordonnees_gps": [48.6562885959, -0.934860297079], "code_commune_insee": "50450"}, "geometry": {"type": "Point", "coordinates": [-0.934860297079, 48.6562885959]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4136322eb9c6bdbdb077fd6b3bf39a5f05027b59", "fields": {"nom_de_la_commune": "BALIGNAC", "libell_d_acheminement": "BALIGNAC", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82009"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "167e64639572ad0eed7a53e5208f95a0fc8ee042", "fields": {"nom_de_la_commune": "BOURRET", "libell_d_acheminement": "BOURRET", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82023"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1251754b5a93f63fb49fe900bf18c18fc6dd807f", "fields": {"nom_de_la_commune": "CAMPSAS", "libell_d_acheminement": "CAMPSAS", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82027"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b927ad1ff7c1f4ca6894aaefa7af5f7e0caeb64", "fields": {"nom_de_la_commune": "CANALS", "libell_d_acheminement": "CANALS", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82028"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47d040b0b3facb0ea97eefa3135639d6c2f58ca6", "fields": {"nom_de_la_commune": "CASTELFERRUS", "libell_d_acheminement": "CASTELFERRUS", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82030"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8cdd1af85b79bacab593e45e2038b3dad922ef7", "fields": {"nom_de_la_commune": "CAUMONT", "libell_d_acheminement": "CAUMONT", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82035"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca98c047067bcf98428fcdc4127b0191748d487", "fields": {"nom_de_la_commune": "CAYLUS", "libell_d_acheminement": "CAYLUS", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82038"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6400ac269fa9f4e202d1d4f9defedbc750839194", "fields": {"nom_de_la_commune": "DURFORT LACAPELETTE", "libell_d_acheminement": "DURFORT LACAPELETTE", "code_postal": "82390", "coordonnees_gps": [44.1828177326, 1.14177395447], "code_commune_insee": "82051"}, "geometry": {"type": "Point", "coordinates": [1.14177395447, 44.1828177326]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29bbed3f722c1d2be4b95ee0f37f5c336a0ba1c0", "fields": {"nom_de_la_commune": "ESPARSAC", "libell_d_acheminement": "ESPARSAC", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82055"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6002546ead01498320a2c306d4a52c6b32922c4c", "fields": {"nom_de_la_commune": "ESPINAS", "libell_d_acheminement": "ESPINAS", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82056"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "98aff7e986a3b78d2405fc3021e6c07b46087c61", "fields": {"nom_de_la_commune": "FAJOLLES", "libell_d_acheminement": "FAJOLLES", "code_postal": "82210", "coordonnees_gps": [44.0233549157, 1.01213090208], "code_commune_insee": "82058"}, "geometry": {"type": "Point", "coordinates": [1.01213090208, 44.0233549157]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcaff8bd7b5ac85610b327eb15d222e6066de50c", "fields": {"nom_de_la_commune": "FINHAN", "libell_d_acheminement": "FINHAN", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82062"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96641013b3ce1a99fb903ae94863f49b382b47ce", "fields": {"nom_de_la_commune": "GARGANVILLAR", "libell_d_acheminement": "GARGANVILLAR", "code_postal": "82100", "coordonnees_gps": [44.0300472465, 1.11824851181], "code_commune_insee": "82063"}, "geometry": {"type": "Point", "coordinates": [1.11824851181, 44.0300472465]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f35dac0fee298959fe8463b529cbe7c40d25eca", "fields": {"nom_de_la_commune": "GARIES", "libell_d_acheminement": "GARIES", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82064"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6ba974f253b8a66f84f08aea91eb527ee7500d1", "fields": {"nom_de_la_commune": "GENSAC", "libell_d_acheminement": "GENSAC", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82067"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94d8e4701c9bb92c87e74504de071d2e970a0055", "fields": {"nom_de_la_commune": "LACAPELLE LIVRON", "libell_d_acheminement": "LACAPELLE LIVRON", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82082"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bce9f43e5727bdf0eb3eed3a4cb531d254e326cd", "fields": {"nom_de_la_commune": "MARSAC", "libell_d_acheminement": "MARSAC", "code_postal": "82120", "coordonnees_gps": [43.9685865836, 0.882526574223], "code_commune_insee": "82104"}, "geometry": {"type": "Point", "coordinates": [0.882526574223, 43.9685865836]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28d8730b9f6f169d549b1b873451d83a3bf4c801", "fields": {"nom_de_la_commune": "MAUBEC", "libell_d_acheminement": "MAUBEC", "code_postal": "82500", "coordonnees_gps": [43.8709108188, 0.994689433825], "code_commune_insee": "82106"}, "geometry": {"type": "Point", "coordinates": [0.994689433825, 43.8709108188]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2375646a7432f2d8dcf1e090169ca539d32b6b90", "fields": {"nom_de_la_commune": "MOISSAC", "libell_d_acheminement": "MOISSAC", "code_postal": "82200", "coordonnees_gps": [44.130658243, 1.07974419868], "code_commune_insee": "82112"}, "geometry": {"type": "Point", "coordinates": [1.07974419868, 44.130658243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83ac3dfe98f4c869606d4601e842a41756a67322", "fields": {"nom_de_la_commune": "MONTALZAT", "libell_d_acheminement": "MONTALZAT", "code_postal": "82270", "coordonnees_gps": [44.2279601929, 1.48359927772], "code_commune_insee": "82119"}, "geometry": {"type": "Point", "coordinates": [1.48359927772, 44.2279601929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49479d4c12dad55585e367e165df5db7ef57f211", "fields": {"nom_de_la_commune": "MONTBETON", "libell_d_acheminement": "MONTBETON", "code_postal": "82290", "coordonnees_gps": [44.0394500882, 1.24886608887], "code_commune_insee": "82124"}, "geometry": {"type": "Point", "coordinates": [1.24886608887, 44.0394500882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0289e20425fa4557860b469340b58b6d8802c93", "fields": {"nom_de_la_commune": "MONTPEZAT DE QUERCY", "libell_d_acheminement": "MONTPEZAT DE QUERCY", "code_postal": "82270", "coordonnees_gps": [44.2279601929, 1.48359927772], "code_commune_insee": "82131"}, "geometry": {"type": "Point", "coordinates": [1.48359927772, 44.2279601929]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c11f939c75277692be605176275facd2f2f16a54", "fields": {"nom_de_la_commune": "ORGUEIL", "libell_d_acheminement": "ORGUEIL", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82136"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5057d8720c87905547c8d2c47f6a9320d85c0cb3", "fields": {"nom_de_la_commune": "PARISOT", "libell_d_acheminement": "PARISOT", "code_postal": "82160", "coordonnees_gps": [44.2619066802, 1.79486929172], "code_commune_insee": "82137"}, "geometry": {"type": "Point", "coordinates": [1.79486929172, 44.2619066802]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ce424a36b4351053d11b53d18aaaf3fc1375851", "fields": {"nom_de_la_commune": "PERVILLE", "libell_d_acheminement": "PERVILLE", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82138"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f5268514499d6b352cde4186a8b03100661bd2a", "fields": {"nom_de_la_commune": "PIQUECOS", "libell_d_acheminement": "PIQUECOS", "code_postal": "82130", "coordonnees_gps": [44.118372906, 1.29866187228], "code_commune_insee": "82140"}, "geometry": {"type": "Point", "coordinates": [1.29866187228, 44.118372906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e161095cadda396701ec7c88919e4c7f9644ba", "fields": {"nom_de_la_commune": "POMMEVIC", "libell_d_acheminement": "POMMEVIC", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82141"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ca3cc229ddae7f225f84dce3f19f2ea36826dcf7", "fields": {"nom_de_la_commune": "POMPIGNAN", "libell_d_acheminement": "POMPIGNAN", "code_postal": "82170", "coordonnees_gps": [43.850881886, 1.29238208556], "code_commune_insee": "82142"}, "geometry": {"type": "Point", "coordinates": [1.29238208556, 43.850881886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99eb5dbb39d53fbeb383be0649ee0a690a2cc1ea", "fields": {"nom_de_la_commune": "REALVILLE", "libell_d_acheminement": "REALVILLE", "code_postal": "82440", "coordonnees_gps": [44.13317839, 1.44584346217], "code_commune_insee": "82149"}, "geometry": {"type": "Point", "coordinates": [1.44584346217, 44.13317839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "882c98ad210d52ad76e9d2ca82190f406486ad8d", "fields": {"nom_de_la_commune": "REYNIES", "libell_d_acheminement": "REYNIES", "code_postal": "82370", "coordonnees_gps": [43.9206473119, 1.40914505172], "code_commune_insee": "82150"}, "geometry": {"type": "Point", "coordinates": [1.40914505172, 43.9206473119]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2a6f736ee3b785228a9c5f20e67f63e82e6f78f", "fields": {"nom_de_la_commune": "ST AMANS DU PECH", "libell_d_acheminement": "ST AMANS DU PECH", "code_postal": "82150", "coordonnees_gps": [44.3360020267, 0.998534979807], "code_commune_insee": "82153"}, "geometry": {"type": "Point", "coordinates": [0.998534979807, 44.3360020267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e31367caa3ddd216bac0dd6483e683bf6900bf", "fields": {"nom_de_la_commune": "ST AMANS DE PELLAGAL", "libell_d_acheminement": "ST AMANS DE PELLAGAL", "code_postal": "82110", "coordonnees_gps": [44.2467392368, 1.16952711717], "code_commune_insee": "82154"}, "geometry": {"type": "Point", "coordinates": [1.16952711717, 44.2467392368]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3eca9d760e798fa225b980c596a3271da8ea8b67", "fields": {"nom_de_la_commune": "ST BEAUZEIL", "libell_d_acheminement": "ST BEAUZEIL", "code_postal": "82150", "coordonnees_gps": [44.3360020267, 0.998534979807], "code_commune_insee": "82157"}, "geometry": {"type": "Point", "coordinates": [0.998534979807, 44.3360020267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ea15589523814869055a52b03fb596e5bceacb3", "fields": {"nom_de_la_commune": "ST GEORGES", "libell_d_acheminement": "ST GEORGES", "code_postal": "82240", "coordonnees_gps": [44.2251052366, 1.62424720455], "code_commune_insee": "82162"}, "geometry": {"type": "Point", "coordinates": [1.62424720455, 44.2251052366]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfbe5d1af8d1bd0f8aabb200865d9b874d7aae3e", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "82340", "coordonnees_gps": [44.0665024612, 0.846217290155], "code_commune_insee": "82165"}, "geometry": {"type": "Point", "coordinates": [0.846217290155, 44.0665024612]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c38cc8d6e27cd590d6e72a9c7f3ae9710918d14", "fields": {"nom_de_la_commune": "ST PAUL D ESPIS", "libell_d_acheminement": "ST PAUL D ESPIS", "code_postal": "82400", "coordonnees_gps": [44.1428662083, 0.936719288598], "code_commune_insee": "82170"}, "geometry": {"type": "Point", "coordinates": [0.936719288598, 44.1428662083]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3c4100054ec7ae91a0b38cff2f6653c0cdef911", "fields": {"nom_de_la_commune": "ST PORQUIER", "libell_d_acheminement": "ST PORQUIER", "code_postal": "82700", "coordonnees_gps": [43.9566580878, 1.20917522852], "code_commune_insee": "82171"}, "geometry": {"type": "Point", "coordinates": [1.20917522852, 43.9566580878]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4232cfd08e6d81e94ef308d27343209a2f97fd2f", "fields": {"nom_de_la_commune": "VALEILLES", "libell_d_acheminement": "VALEILLES", "code_postal": "82150", "coordonnees_gps": [44.3360020267, 0.998534979807], "code_commune_insee": "82185"}, "geometry": {"type": "Point", "coordinates": [0.998534979807, 44.3360020267]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a0691cff3129102b27535e594c339e3bbc372af", "fields": {"nom_de_la_commune": "AMPUS", "libell_d_acheminement": "AMPUS", "code_postal": "83111", "coordonnees_gps": [43.6285255822, 6.37191426227], "code_commune_insee": "83003"}, "geometry": {"type": "Point", "coordinates": [6.37191426227, 43.6285255822]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1cf94737b016761f525d8982aeb0b635e8ffaa0", "fields": {"nom_de_la_commune": "LE BEAUSSET", "libell_d_acheminement": "LE BEAUSSET", "code_postal": "83330", "coordonnees_gps": [43.2073445411, 5.81845184293], "code_commune_insee": "83016"}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f2afa7a0c937e43b792adfb3598709c7de9012d", "fields": {"nom_de_la_commune": "BESSE SUR ISSOLE", "libell_d_acheminement": "BESSE SUR ISSOLE", "code_postal": "83890", "coordonnees_gps": [43.3399085687, 6.17784718792], "code_commune_insee": "83018"}, "geometry": {"type": "Point", "coordinates": [6.17784718792, 43.3399085687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42e125289de3b64cdd34e070fb4ab33e2cb067d7", "fields": {"nom_de_la_commune": "BORMES LES MIMOSAS", "libell_d_acheminement": "BORMES LES MIMOSAS", "code_postal": "83230", "coordonnees_gps": [43.1623803252, 6.34953294374], "code_commune_insee": "83019"}, "geometry": {"type": "Point", "coordinates": [6.34953294374, 43.1623803252]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5f22331d97dd061bcbfe4cb427209c755f1f64b", "fields": {"nom_de_la_commune": "BRUE AURIAC", "libell_d_acheminement": "BRUE AURIAC", "code_postal": "83119", "coordonnees_gps": [43.5276371659, 5.93706271052], "code_commune_insee": "83025"}, "geometry": {"type": "Point", "coordinates": [5.93706271052, 43.5276371659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3620723ad50ec3ad07f400cc3925ff8105245c2b", "fields": {"nom_de_la_commune": "CALLIAN", "libell_d_acheminement": "CALLIAN", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83029"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8946942007993e6a6ad6fc0792811b411ea41117", "fields": {"nom_de_la_commune": "CARCES", "libell_d_acheminement": "CARCES", "code_postal": "83570", "coordonnees_gps": [43.4971017432, 6.15115955062], "code_commune_insee": "83032"}, "geometry": {"type": "Point", "coordinates": [6.15115955062, 43.4971017432]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17248f468a00c7635395d90ed1cc4d8298fb5440", "fields": {"nom_de_la_commune": "CARNOULES", "libell_d_acheminement": "CARNOULES", "code_postal": "83660", "coordonnees_gps": [43.2943746316, 6.19707589328], "code_commune_insee": "83033"}, "geometry": {"type": "Point", "coordinates": [6.19707589328, 43.2943746316]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1300ffa8511ccab8305f0399433a2402ae9cd3ba", "fields": {"code_postal": "83330", "code_commune_insee": "83035", "libell_d_acheminement": "LE CASTELLET", "ligne_5": "LAOUQUE", "nom_de_la_commune": "LE CASTELLET", "coordonnees_gps": [43.2073445411, 5.81845184293]}, "geometry": {"type": "Point", "coordinates": [5.81845184293, 43.2073445411]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "076ffbe0dea4ff2102a497a5e4fb64292e15c0bd", "fields": {"nom_de_la_commune": "CAVALAIRE SUR MER", "libell_d_acheminement": "CAVALAIRE SUR MER", "code_postal": "83240", "coordonnees_gps": [43.181954686, 6.52093562619], "code_commune_insee": "83036"}, "geometry": {"type": "Point", "coordinates": [6.52093562619, 43.181954686]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f404d0a0b35ce21790de0d36f957bd3ae6a5d1cb", "fields": {"nom_de_la_commune": "COLLOBRIERES", "libell_d_acheminement": "COLLOBRIERES", "code_postal": "83610", "coordonnees_gps": [43.2413817992, 6.34040259523], "code_commune_insee": "83043"}, "geometry": {"type": "Point", "coordinates": [6.34040259523, 43.2413817992]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "226976a79a90a36219a70d41afb393dd4e778657", "fields": {"nom_de_la_commune": "FREJUS", "libell_d_acheminement": "FREJUS", "code_postal": "83600", "coordonnees_gps": [43.4958707206, 6.756116629], "code_commune_insee": "83061"}, "geometry": {"type": "Point", "coordinates": [6.756116629, 43.4958707206]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d30ee3fa7790658737a19e86c2d3572551e6de6e", "fields": {"nom_de_la_commune": "GASSIN", "libell_d_acheminement": "GASSIN", "code_postal": "83580", "coordonnees_gps": [43.2394880202, 6.58583330607], "code_commune_insee": "83065"}, "geometry": {"type": "Point", "coordinates": [6.58583330607, 43.2394880202]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0af534f6b61d3cb71b8c2db1dbb735742ac494ac", "fields": {"nom_de_la_commune": "GINASSERVIS", "libell_d_acheminement": "GINASSERVIS", "code_postal": "83560", "coordonnees_gps": [43.6398039041, 5.84684395874], "code_commune_insee": "83066"}, "geometry": {"type": "Point", "coordinates": [5.84684395874, 43.6398039041]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f0f1dea4a61c749424c2fad3d4d8d48fd9ca6d9", "fields": {"nom_de_la_commune": "GRIMAUD", "libell_d_acheminement": "GRIMAUD", "code_postal": "83310", "coordonnees_gps": [43.248161575, 6.50847082602], "code_commune_insee": "83068"}, "geometry": {"type": "Point", "coordinates": [6.50847082602, 43.248161575]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "253987148106d4f9d619d573ec8003c77d93d8f7", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "ILE DE PORT CROS", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7566734f914b16976ab0531dd733dee60965329d", "fields": {"code_postal": "83400", "code_commune_insee": "83069", "libell_d_acheminement": "HYERES", "ligne_5": "ILE DU LEVANT", "nom_de_la_commune": "HYERES", "coordonnees_gps": [43.1018498571, 6.18925765161]}, "geometry": {"type": "Point", "coordinates": [6.18925765161, 43.1018498571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b83f399b71741cfed5d33f7d2aa69c8dad4a79d", "fields": {"nom_de_la_commune": "LA MARTRE", "libell_d_acheminement": "LA MARTRE", "code_postal": "83840", "coordonnees_gps": [43.7379530346, 6.52950620115], "code_commune_insee": "83074"}, "geometry": {"type": "Point", "coordinates": [6.52950620115, 43.7379530346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88736fdb99ef9af30dfaecded1ada0d747679121", "fields": {"nom_de_la_commune": "MOISSAC BELLEVUE", "libell_d_acheminement": "MOISSAC BELLEVUE", "code_postal": "83630", "coordonnees_gps": [43.6912814551, 6.22595532521], "code_commune_insee": "83078"}, "geometry": {"type": "Point", "coordinates": [6.22595532521, 43.6912814551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fef716431ba784a1c6e63d6d361a12c107cd8e40", "fields": {"nom_de_la_commune": "MONS", "libell_d_acheminement": "MONS", "code_postal": "83440", "coordonnees_gps": [43.6294442313, 6.71670662623], "code_commune_insee": "83080"}, "geometry": {"type": "Point", "coordinates": [6.71670662623, 43.6294442313]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47fe324f98990012744203fe361fa29e2cf9a657", "fields": {"nom_de_la_commune": "MONTFERRAT", "libell_d_acheminement": "MONTFERRAT", "code_postal": "83131", "coordonnees_gps": [43.6361124472, 6.47874721321], "code_commune_insee": "83082"}, "geometry": {"type": "Point", "coordinates": [6.47874721321, 43.6361124472]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6b4e70483163b6dbb81bcc4d4d475d974ea6ad49", "fields": {"nom_de_la_commune": "LE MUY", "libell_d_acheminement": "LE MUY", "code_postal": "83490", "coordonnees_gps": [43.4687106091, 6.57695868927], "code_commune_insee": "83086"}, "geometry": {"type": "Point", "coordinates": [6.57695868927, 43.4687106091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8eb57bc9babce92c72a0a5491d6c6ce17e3cba13", "fields": {"nom_de_la_commune": "NEOULES", "libell_d_acheminement": "NEOULES", "code_postal": "83136", "coordonnees_gps": [43.3189733886, 5.98942821471], "code_commune_insee": "83088"}, "geometry": {"type": "Point", "coordinates": [5.98942821471, 43.3189733886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ddbd17fb5cc826d6aafed71aded432941e3ccae", "fields": {"nom_de_la_commune": "OLLIERES", "libell_d_acheminement": "OLLIERES", "code_postal": "83470", "coordonnees_gps": [43.479442652, 5.84137337799], "code_commune_insee": "83089"}, "geometry": {"type": "Point", "coordinates": [5.84137337799, 43.479442652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b285ce97abcd1ec0705986d4cf1a794126be9f1", "fields": {"nom_de_la_commune": "PIGNANS", "libell_d_acheminement": "PIGNANS", "code_postal": "83790", "coordonnees_gps": [43.2967841345, 6.25425058245], "code_commune_insee": "83092"}, "geometry": {"type": "Point", "coordinates": [6.25425058245, 43.2967841345]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41de3ff71ec444e7655cb29e1fe6c21dece08fcf", "fields": {"nom_de_la_commune": "PONTEVES", "libell_d_acheminement": "PONTEVES", "code_postal": "83670", "coordonnees_gps": [43.5812548404, 6.03344058953], "code_commune_insee": "83095"}, "geometry": {"type": "Point", "coordinates": [6.03344058953, 43.5812548404]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c94a8c428b91c209835282a9f942ba3297b7292", "fields": {"nom_de_la_commune": "RAMATUELLE", "libell_d_acheminement": "RAMATUELLE", "code_postal": "83350", "coordonnees_gps": [43.2183165344, 6.63696635757], "code_commune_insee": "83101"}, "geometry": {"type": "Point", "coordinates": [6.63696635757, 43.2183165344]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "32ac658720ca24776cbdbc10229cb137f201195c", "fields": {"nom_de_la_commune": "RIBOUX", "libell_d_acheminement": "RIBOUX", "code_postal": "13780", "coordonnees_gps": [43.2875382054, 5.72232171856], "code_commune_insee": "83105"}, "geometry": {"type": "Point", "coordinates": [5.72232171856, 43.2875382054]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e9d618c390f6547102ebab4b1600b7e6f610c7a", "fields": {"nom_de_la_commune": "ST CYR SUR MER", "libell_d_acheminement": "ST CYR SUR MER", "code_postal": "83270", "coordonnees_gps": [43.1726377038, 5.70862543611], "code_commune_insee": "83112"}, "geometry": {"type": "Point", "coordinates": [5.70862543611, 43.1726377038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d20cd0099efa924f011653e10b2be79ffcd7a1a", "fields": {"nom_de_la_commune": "STE MAXIME", "libell_d_acheminement": "STE MAXIME", "code_postal": "83120", "coordonnees_gps": [43.3509505991, 6.59102562058], "code_commune_insee": "83115"}, "geometry": {"type": "Point", "coordinates": [6.59102562058, 43.3509505991]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7542758aa7eb32d6c41dd6c27dd722419cfe1bc", "fields": {"code_postal": "83700", "code_commune_insee": "83118", "libell_d_acheminement": "ST RAPHAEL", "ligne_5": "BOULOURIS", "nom_de_la_commune": "ST RAPHAEL", "coordonnees_gps": [43.4577463744, 6.84776131018]}, "geometry": {"type": "Point", "coordinates": [6.84776131018, 43.4577463744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "643b1393afcfa104496a72867ff44449b6b261ca", "fields": {"nom_de_la_commune": "ST ZACHARIE", "libell_d_acheminement": "ST ZACHARIE", "code_postal": "83640", "coordonnees_gps": [43.3568755159, 5.72816455305], "code_commune_insee": "83120"}, "geometry": {"type": "Point", "coordinates": [5.72816455305, 43.3568755159]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49e814c0e9df126e3be5b8d995bf5a15812cd56d", "fields": {"nom_de_la_commune": "LA SEYNE SUR MER", "libell_d_acheminement": "LA SEYNE SUR MER", "code_postal": "83500", "coordonnees_gps": [43.0889033839, 5.87071213216], "code_commune_insee": "83126"}, "geometry": {"type": "Point", "coordinates": [5.87071213216, 43.0889033839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c4f98be247979e4803dcedd46a8114b0093aa3", "fields": {"code_postal": "83500", "code_commune_insee": "83126", "libell_d_acheminement": "LA SEYNE SUR MER", "ligne_5": "LES SABLETTES", "nom_de_la_commune": "LA SEYNE SUR MER", "coordonnees_gps": [43.0889033839, 5.87071213216]}, "geometry": {"type": "Point", "coordinates": [5.87071213216, 43.0889033839]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6a15467115ef460446859dfcbe73fa5102d9ab1", "fields": {"nom_de_la_commune": "SOLLIES VILLE", "libell_d_acheminement": "SOLLIES VILLE", "code_postal": "83210", "coordonnees_gps": [43.2011646228, 6.01550347803], "code_commune_insee": "83132"}, "geometry": {"type": "Point", "coordinates": [6.01550347803, 43.2011646228]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7c5fe1922b7593b9c5fa000b24ca69af476e423", "fields": {"nom_de_la_commune": "TOULON", "libell_d_acheminement": "TOULON", "code_postal": "83200", "coordonnees_gps": [43.15297354, 5.93725605869], "code_commune_insee": "83137"}, "geometry": {"type": "Point", "coordinates": [5.93725605869, 43.15297354]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3aae2dbcacfc9fd2b89c7bf03100b12341f7b9b", "fields": {"nom_de_la_commune": "TRANS EN PROVENCE", "libell_d_acheminement": "TRANS EN PROVENCE", "code_postal": "83720", "coordonnees_gps": [43.5021974958, 6.48931200045], "code_commune_insee": "83141"}, "geometry": {"type": "Point", "coordinates": [6.48931200045, 43.5021974958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aab2b09c35ed19d1cf841e99cc83b1378a27bf64", "fields": {"nom_de_la_commune": "RAYOL CANADEL SUR MER", "libell_d_acheminement": "RAYOL CANADEL SUR MER", "code_postal": "83820", "coordonnees_gps": [43.1644119646, 6.47547585523], "code_commune_insee": "83152"}, "geometry": {"type": "Point", "coordinates": [6.47547585523, 43.1644119646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29b0eda1768b1ce47942360d2dbf57a870dfcde1", "fields": {"code_postal": "84140", "code_commune_insee": "84007", "libell_d_acheminement": "AVIGNON", "ligne_5": "MONTFAVET", "nom_de_la_commune": "AVIGNON", "coordonnees_gps": [43.9352589636, 4.84116595474]}, "geometry": {"type": "Point", "coordinates": [4.84116595474, 43.9352589636]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a9cfff41a57a5643fa66c6ecfbdd850b33089109", "fields": {"nom_de_la_commune": "BEDOIN", "libell_d_acheminement": "BEDOIN", "code_postal": "84410", "coordonnees_gps": [44.1291997766, 5.23454879295], "code_commune_insee": "84017"}, "geometry": {"type": "Point", "coordinates": [5.23454879295, 44.1291997766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f85d0fb2154f2eefcbf3e48163479746aced36fd", "fields": {"nom_de_la_commune": "CAIRANNE", "libell_d_acheminement": "CAIRANNE", "code_postal": "84290", "coordonnees_gps": [44.2363120458, 4.9094119857], "code_commune_insee": "84028"}, "geometry": {"type": "Point", "coordinates": [4.9094119857, 44.2363120458]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91ecc700014a127427e53bf38bc5b863a6244d91", "fields": {"nom_de_la_commune": "CAROMB", "libell_d_acheminement": "CAROMB", "code_postal": "84330", "coordonnees_gps": [44.1247384898, 5.10713671288], "code_commune_insee": "84030"}, "geometry": {"type": "Point", "coordinates": [5.10713671288, 44.1247384898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72c32ba5c51bbd290bee7e062edfc03b6089b294", "fields": {"nom_de_la_commune": "CAVAILLON", "libell_d_acheminement": "CAVAILLON", "code_postal": "84300", "coordonnees_gps": [43.8481769374, 5.04312031956], "code_commune_insee": "84035"}, "geometry": {"type": "Point", "coordinates": [5.04312031956, 43.8481769374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39578894430f85ae47e31991de668731f71b1431", "fields": {"code_postal": "84300", "code_commune_insee": "84035", "libell_d_acheminement": "CAVAILLON", "ligne_5": "LES VIGNERES", "nom_de_la_commune": "CAVAILLON", "coordonnees_gps": [43.8481769374, 5.04312031956]}, "geometry": {"type": "Point", "coordinates": [5.04312031956, 43.8481769374]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "97da3f995d191ec19181b2571736fb98e5943899", "fields": {"nom_de_la_commune": "CHEVAL BLANC", "libell_d_acheminement": "CHEVAL BLANC", "code_postal": "84460", "coordonnees_gps": [43.7887442757, 5.12432916697], "code_commune_insee": "84038"}, "geometry": {"type": "Point", "coordinates": [5.12432916697, 43.7887442757]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0559210b511e4ccd12fc91b10b571b3dee914ad0", "fields": {"nom_de_la_commune": "CRESTET", "libell_d_acheminement": "CRESTET", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84040"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "084b8c4d7b3fdd152ceb07752f6b163b55e4f20c", "fields": {"nom_de_la_commune": "FLASSAN", "libell_d_acheminement": "FLASSAN", "code_postal": "84410", "coordonnees_gps": [44.1291997766, 5.23454879295], "code_commune_insee": "84046"}, "geometry": {"type": "Point", "coordinates": [5.23454879295, 44.1291997766]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0d31a33abdc9ceb7d69a7b217b2abd1883a660e", "fields": {"nom_de_la_commune": "GOULT", "libell_d_acheminement": "GOULT", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84051"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee6133657f59e5aa9628f312102ea033346f725e", "fields": {"nom_de_la_commune": "JONQUERETTES", "libell_d_acheminement": "JONQUERETTES", "code_postal": "84450", "coordonnees_gps": [43.9589146165, 4.94209052734], "code_commune_insee": "84055"}, "geometry": {"type": "Point", "coordinates": [4.94209052734, 43.9589146165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5404e25ea1d9186daea3560e8227554a2a1822bc", "fields": {"nom_de_la_commune": "JOUCAS", "libell_d_acheminement": "JOUCAS", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84057"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a13544af8cf26aa2429f4418ee46624e99cbe510", "fields": {"nom_de_la_commune": "LAGNES", "libell_d_acheminement": "LAGNES", "code_postal": "84800", "coordonnees_gps": [43.9157193663, 5.08616198697], "code_commune_insee": "84062"}, "geometry": {"type": "Point", "coordinates": [5.08616198697, 43.9157193663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ab4e37e70d26e5beb90ba742b5d9cfc2a5730ba", "fields": {"nom_de_la_commune": "LIOUX", "libell_d_acheminement": "LIOUX", "code_postal": "84220", "coordonnees_gps": [43.9244996466, 5.24592798155], "code_commune_insee": "84066"}, "geometry": {"type": "Point", "coordinates": [5.24592798155, 43.9244996466]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e29e4e4c8befc2b074599bb37378f32290b10ed3", "fields": {"nom_de_la_commune": "MORNAS", "libell_d_acheminement": "MORNAS", "code_postal": "84550", "coordonnees_gps": [44.2040971484, 4.74012097927], "code_commune_insee": "84083"}, "geometry": {"type": "Point", "coordinates": [4.74012097927, 44.2040971484]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab06b97ce7fcc2cc02d57e1e37ef7630b1c3dc6b", "fields": {"nom_de_la_commune": "OPPEDE", "libell_d_acheminement": "OPPEDE", "code_postal": "84580", "coordonnees_gps": [43.8315749238, 5.1699650235], "code_commune_insee": "84086"}, "geometry": {"type": "Point", "coordinates": [5.1699650235, 43.8315749238]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0b68b1dbcad953a1b4c05c4ef5138df11bf0dc", "fields": {"nom_de_la_commune": "PERNES LES FONTAINES", "libell_d_acheminement": "PERNES LES FONTAINES", "code_postal": "84210", "coordonnees_gps": [43.9898251077, 5.08841952046], "code_commune_insee": "84088"}, "geometry": {"type": "Point", "coordinates": [5.08841952046, 43.9898251077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3bdbc29104e565b975cb4f9424c3caaf0b51697", "fields": {"nom_de_la_commune": "PEYPIN D AIGUES", "libell_d_acheminement": "PEYPIN D AIGUES", "code_postal": "84240", "coordonnees_gps": [43.7675657483, 5.5650068757], "code_commune_insee": "84090"}, "geometry": {"type": "Point", "coordinates": [5.5650068757, 43.7675657483]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d1547761db4e07e5bf06ed596d43b7d4393bb19", "fields": {"nom_de_la_commune": "SABLET", "libell_d_acheminement": "SABLET", "code_postal": "84110", "coordonnees_gps": [44.2444427122, 5.0525358539], "code_commune_insee": "84104"}, "geometry": {"type": "Point", "coordinates": [5.0525358539, 44.2444427122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "465567d734ee2da79d3648eec5ee8e8e0f667b85", "fields": {"nom_de_la_commune": "ST DIDIER", "libell_d_acheminement": "ST DIDIER", "code_postal": "84210", "coordonnees_gps": [43.9898251077, 5.08841952046], "code_commune_insee": "84108"}, "geometry": {"type": "Point", "coordinates": [5.08841952046, 43.9898251077]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "78551f0ee56d9a1284c6c63afccf3a3be1fa325b", "fields": {"nom_de_la_commune": "ST MARTIN DE CASTILLON", "libell_d_acheminement": "ST MARTIN DE CASTILLON", "code_postal": "84750", "coordonnees_gps": [43.880271182, 5.52723627077], "code_commune_insee": "84112"}, "geometry": {"type": "Point", "coordinates": [5.52723627077, 43.880271182]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "140e9fbfb4f346b2b93e42bd75eccedf56a644ed", "fields": {"nom_de_la_commune": "ST SATURNIN LES APT", "libell_d_acheminement": "ST SATURNIN LES APT", "code_postal": "84490", "coordonnees_gps": [43.9590935418, 5.37338485787], "code_commune_insee": "84118"}, "geometry": {"type": "Point", "coordinates": [5.37338485787, 43.9590935418]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e59e15d6bb434b507c2d8b05b11e7f40bb8db55d", "fields": {"nom_de_la_commune": "SAUMANE DE VAUCLUSE", "libell_d_acheminement": "SAUMANE DE VAUCLUSE", "code_postal": "84800", "coordonnees_gps": [43.9157193663, 5.08616198697], "code_commune_insee": "84124"}, "geometry": {"type": "Point", "coordinates": [5.08616198697, 43.9157193663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d09b98c25a0441116f78b77e455506ec9f4bad4", "fields": {"nom_de_la_commune": "FONTAINE DE VAUCLUSE", "libell_d_acheminement": "FONTAINE DE VAUCLUSE", "code_postal": "84800", "coordonnees_gps": [43.9157193663, 5.08616198697], "code_commune_insee": "84139"}, "geometry": {"type": "Point", "coordinates": [5.08616198697, 43.9157193663]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1178ca14525affd7275d6990a462c044975b26a8", "fields": {"nom_de_la_commune": "BUTRY SUR OISE", "libell_d_acheminement": "BUTRY SUR OISE", "code_postal": "95430", "coordonnees_gps": [49.0811077214, 2.16105485374], "code_commune_insee": "95120"}, "geometry": {"type": "Point", "coordinates": [2.16105485374, 49.0811077214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5aabe2eb03538230ffa355f63eb35b1b409dc843", "fields": {"nom_de_la_commune": "CHAMPAGNE SUR OISE", "libell_d_acheminement": "CHAMPAGNE SUR OISE", "code_postal": "95660", "coordonnees_gps": [49.1422115093, 2.22865466079], "code_commune_insee": "95134"}, "geometry": {"type": "Point", "coordinates": [2.22865466079, 49.1422115093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9046f2c3bfd04329018d44d2cb09962829a57de6", "fields": {"nom_de_la_commune": "CLERY EN VEXIN", "libell_d_acheminement": "CLERY EN VEXIN", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95166"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "53ca7bf31c8ef0214cde664c43c2650c5b269558", "fields": {"nom_de_la_commune": "COMMENY", "libell_d_acheminement": "COMMENY", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95169"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a7d3a99dca79bd6bba7ada642600d0bcac9e5cbb", "fields": {"nom_de_la_commune": "CONDECOURT", "libell_d_acheminement": "CONDECOURT", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95170"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "31bd41a6f5640dc6a68971c78b07e87ff1ecf3a9", "fields": {"nom_de_la_commune": "CORMEILLES EN VEXIN", "libell_d_acheminement": "CORMEILLES EN VEXIN", "code_postal": "95830", "coordonnees_gps": [49.1160885298, 2.01080695268], "code_commune_insee": "95177"}, "geometry": {"type": "Point", "coordinates": [2.01080695268, 49.1160885298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27a896618be5399080be1ef59dfff67895706112", "fields": {"nom_de_la_commune": "COURCELLES SUR VIOSNE", "libell_d_acheminement": "COURCELLES SUR VIOSNE", "code_postal": "95650", "coordonnees_gps": [49.0831465949, 2.02625716292], "code_commune_insee": "95181"}, "geometry": {"type": "Point", "coordinates": [2.02625716292, 49.0831465949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "338da3bf5ef9174812bc54aa7e139a8037616333", "fields": {"nom_de_la_commune": "COURDIMANCHE", "libell_d_acheminement": "COURDIMANCHE", "code_postal": "95800", "coordonnees_gps": [49.0404241863, 2.0356184662], "code_commune_insee": "95183"}, "geometry": {"type": "Point", "coordinates": [2.0356184662, 49.0404241863]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d42d2e902bf31bf79cf819176f9d000613d5d1e", "fields": {"nom_de_la_commune": "DOMONT", "libell_d_acheminement": "DOMONT", "code_postal": "95330", "coordonnees_gps": [49.0300393883, 2.32333965677], "code_commune_insee": "95199"}, "geometry": {"type": "Point", "coordinates": [2.32333965677, 49.0300393883]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9aa1e674ccf69e19a1c9cbd0fd9902dd58bce50", "fields": {"nom_de_la_commune": "FONTENAY EN PARISIS", "libell_d_acheminement": "FONTENAY EN PARISIS", "code_postal": "95190", "coordonnees_gps": [49.0402800937, 2.45734698588], "code_commune_insee": "95241"}, "geometry": {"type": "Point", "coordinates": [2.45734698588, 49.0402800937]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e7c278c4b792ea924d0822692bcbec85799efa5", "fields": {"nom_de_la_commune": "FREMECOURT", "libell_d_acheminement": "FREMECOURT", "code_postal": "95830", "coordonnees_gps": [49.1160885298, 2.01080695268], "code_commune_insee": "95254"}, "geometry": {"type": "Point", "coordinates": [2.01080695268, 49.1160885298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf209fe144c881967b880ad483c39135af004d71", "fields": {"nom_de_la_commune": "HEROUVILLE", "libell_d_acheminement": "HEROUVILLE", "code_postal": "95300", "coordonnees_gps": [49.0835669403, 2.10696203629], "code_commune_insee": "95308"}, "geometry": {"type": "Point", "coordinates": [2.10696203629, 49.0835669403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71ef71d72a8858fa4920c4b83901591852ef4aec", "fields": {"nom_de_la_commune": "MENOUVILLE", "libell_d_acheminement": "MENOUVILLE", "code_postal": "95810", "coordonnees_gps": [49.1547915448, 2.08597899535], "code_commune_insee": "95387"}, "geometry": {"type": "Point", "coordinates": [2.08597899535, 49.1547915448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df97a4b7dcfda0b5bef2334311a9162e718853dd", "fields": {"nom_de_la_commune": "MONTIGNY LES CORMEILLES", "libell_d_acheminement": "MONTIGNY LES CORMEILLES", "code_postal": "95370", "coordonnees_gps": [48.9938447776, 2.19378028588], "code_commune_insee": "95424"}, "geometry": {"type": "Point", "coordinates": [2.19378028588, 48.9938447776]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d4b3f4012bd7293b7084c8111234cfdf37f9cd79", "fields": {"nom_de_la_commune": "MONTMAGNY", "libell_d_acheminement": "MONTMAGNY", "code_postal": "95360", "coordonnees_gps": [48.9700090136, 2.34667166791], "code_commune_insee": "95427"}, "geometry": {"type": "Point", "coordinates": [2.34667166791, 48.9700090136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5238c4a2554f83764e89fdf76e97048625a3f299", "fields": {"nom_de_la_commune": "MONTSOULT", "libell_d_acheminement": "MONTSOULT", "code_postal": "95560", "coordonnees_gps": [49.0667555208, 2.29836937772], "code_commune_insee": "95430"}, "geometry": {"type": "Point", "coordinates": [2.29836937772, 49.0667555208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56fa197c77a51db255c9fba0b86dacf54e857b2b", "fields": {"nom_de_la_commune": "NUCOURT", "libell_d_acheminement": "NUCOURT", "code_postal": "95420", "coordonnees_gps": [49.1378230096, 1.7800854585], "code_commune_insee": "95459"}, "geometry": {"type": "Point", "coordinates": [1.7800854585, 49.1378230096]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "63a91e668b93e3fe06e0334cb82bd7aff79c933e", "fields": {"nom_de_la_commune": "OSNY", "libell_d_acheminement": "OSNY", "code_postal": "95520", "coordonnees_gps": [49.0683132357, 2.06358209883], "code_commune_insee": "95476"}, "geometry": {"type": "Point", "coordinates": [2.06358209883, 49.0683132357]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71b81c363730793913cea82e12ec5a78cadddfc", "fields": {"nom_de_la_commune": "PISCOP", "libell_d_acheminement": "PISCOP", "code_postal": "95350", "coordonnees_gps": [49.0078529263, 2.34646436487], "code_commune_insee": "95489"}, "geometry": {"type": "Point", "coordinates": [2.34646436487, 49.0078529263]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a8647da70809db69668a6ec7ca3bfdbd1a4d27b", "fields": {"nom_de_la_commune": "LE PLESSIS LUZARCHES", "libell_d_acheminement": "LE PLESSIS LUZARCHES", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95493"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e93210b65cd4174fe48f604e25366a207a8368f7", "fields": {"nom_de_la_commune": "PUISEUX PONTOISE", "libell_d_acheminement": "PUISEUX PONTOISE", "code_postal": "95650", "coordonnees_gps": [49.0831465949, 2.02625716292], "code_commune_insee": "95510"}, "geometry": {"type": "Point", "coordinates": [2.02625716292, 49.0831465949]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90cc34eb09f7a1c28977b2023b27630e92c1af0d", "fields": {"nom_de_la_commune": "ST CLAIR SUR EPTE", "libell_d_acheminement": "ST CLAIR SUR EPTE", "code_postal": "95770", "coordonnees_gps": [49.1959926831, 1.69814198153], "code_commune_insee": "95541"}, "geometry": {"type": "Point", "coordinates": [1.69814198153, 49.1959926831]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5c574e38343285aa9d25a20a0e68cf27adbddb6", "fields": {"nom_de_la_commune": "ST CYR EN ARTHIES", "libell_d_acheminement": "ST CYR EN ARTHIES", "code_postal": "95510", "coordonnees_gps": [49.0827502548, 1.71387285188], "code_commune_insee": "95543"}, "geometry": {"type": "Point", "coordinates": [1.71387285188, 49.0827502548]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e40a1c7ac79b63adc2d9167d8633d5897ccc6396", "fields": {"nom_de_la_commune": "SARCELLES", "libell_d_acheminement": "SARCELLES", "code_postal": "95200", "coordonnees_gps": [48.9904943685, 2.38141962338], "code_commune_insee": "95585"}, "geometry": {"type": "Point", "coordinates": [2.38141962338, 48.9904943685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4268552b70d969499dc154bfc4cb6f21ec96c47c", "fields": {"nom_de_la_commune": "TAVERNY", "libell_d_acheminement": "TAVERNY", "code_postal": "95150", "coordonnees_gps": [49.0267578618, 2.22200242367], "code_commune_insee": "95607"}, "geometry": {"type": "Point", "coordinates": [2.22200242367, 49.0267578618]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b42e1f060e6dad14a9668d86cc65c088c6837d06", "fields": {"nom_de_la_commune": "THEMERICOURT", "libell_d_acheminement": "THEMERICOURT", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95610"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7148e5ef09d02dd2c1dc0f919d6432c2648832a", "fields": {"nom_de_la_commune": "VIARMES", "libell_d_acheminement": "VIARMES", "code_postal": "95270", "coordonnees_gps": [49.1142163164, 2.39836244814], "code_commune_insee": "95652"}, "geometry": {"type": "Point", "coordinates": [2.39836244814, 49.1142163164]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe28c73eabced70d867f6267e575e1698daf0632", "fields": {"nom_de_la_commune": "VIGNY", "libell_d_acheminement": "VIGNY", "code_postal": "95450", "coordonnees_gps": [49.0801559247, 1.9139084291], "code_commune_insee": "95658"}, "geometry": {"type": "Point", "coordinates": [1.9139084291, 49.0801559247]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e785f0902586e086ce7c03742381d35bdb8b11d1", "fields": {"nom_de_la_commune": "VILLERON", "libell_d_acheminement": "VILLERON", "code_postal": "95380", "coordonnees_gps": [49.0485279227, 2.5187416869], "code_commune_insee": "95675"}, "geometry": {"type": "Point", "coordinates": [2.5187416869, 49.0485279227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d477102e81c89a025bd2ff868eb15b127287f092", "fields": {"nom_de_la_commune": "VILLIERS LE SEC", "libell_d_acheminement": "VILLIERS LE SEC", "code_postal": "95720", "coordonnees_gps": [49.0481825162, 2.40282933292], "code_commune_insee": "95682"}, "geometry": {"type": "Point", "coordinates": [2.40282933292, 49.0481825162]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9bd4bf09519c8131dfd4ba0ec37dc417a06a8ae3", "fields": {"nom_de_la_commune": "LES ABYMES", "libell_d_acheminement": "LES ABYMES", "code_postal": "97139", "coordonnees_gps": [16.2727902074, -61.5015764802], "code_commune_insee": "97101"}, "geometry": {"type": "Point", "coordinates": [-61.5015764802, 16.2727902074]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "283bfce62868644f0948d28f36ed95a220980477", "fields": {"nom_de_la_commune": "BAILLIF", "libell_d_acheminement": "BAILLIF", "code_postal": "97123", "coordonnees_gps": [16.0451297679, -61.7190442606], "code_commune_insee": "97104"}, "geometry": {"type": "Point", "coordinates": [-61.7190442606, 16.0451297679]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "960c4cda894007057c65a013a1da7fec258f852f", "fields": {"nom_de_la_commune": "BOUILLANTE", "libell_d_acheminement": "BOUILLANTE", "code_postal": "97125", "coordonnees_gps": [16.1436829042, -61.7540534505], "code_commune_insee": "97106"}, "geometry": {"type": "Point", "coordinates": [-61.7540534505, 16.1436829042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e662a7abe9f02c39b7d9cb5f8419074b938ce4cb", "fields": {"code_postal": "97125", "code_commune_insee": "97106", "libell_d_acheminement": "BOUILLANTE", "ligne_5": "PIGEON", "nom_de_la_commune": "BOUILLANTE", "coordonnees_gps": [16.1436829042, -61.7540534505]}, "geometry": {"type": "Point", "coordinates": [-61.7540534505, 16.1436829042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd61ec4ef728f30864603d1c5e94c074ff3acf5a", "fields": {"code_postal": "97130", "code_commune_insee": "97107", "libell_d_acheminement": "CAPESTERRE BELLE EAU", "ligne_5": "BANANIER", "nom_de_la_commune": "CAPESTERRE BELLE EAU", "coordonnees_gps": [16.0552203846, -61.6118226443]}, "geometry": {"type": "Point", "coordinates": [-61.6118226443, 16.0552203846]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "413074a6fc757c61c3fa8ba9c919b92f2cab4fbe", "fields": {"nom_de_la_commune": "CAPESTERRE DE MARIE GALANTE", "libell_d_acheminement": "CAPESTERRE DE MARIE GALANTE", "code_postal": "97140", "coordonnees_gps": [15.920417662, -61.22974377], "code_commune_insee": "97108"}, "geometry": {"type": "Point", "coordinates": [-61.22974377, 15.920417662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a92d77e35adff55dba07481eeefc9e50b6ae13e6", "fields": {"nom_de_la_commune": "LE MOULE", "libell_d_acheminement": "LE MOULE", "code_postal": "97160", "coordonnees_gps": [16.3205467728, -61.3714085616], "code_commune_insee": "97117"}, "geometry": {"type": "Point", "coordinates": [-61.3714085616, 16.3205467728]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "086719a7ce1102be50bcbb0dc6474422e184a102", "fields": {"nom_de_la_commune": "TERRE DE HAUT", "libell_d_acheminement": "TERRE DE HAUT", "code_postal": "97137", "coordonnees_gps": [15.8655599179, -61.5843984024], "code_commune_insee": "97131"}, "geometry": {"type": "Point", "coordinates": [-61.5843984024, 15.8655599179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5aa3f60b315788a1e923e35932fd5a8f5949231", "fields": {"nom_de_la_commune": "VIEUX HABITANTS", "libell_d_acheminement": "VIEUX HABITANTS", "code_postal": "97119", "coordonnees_gps": [16.0864099698, -61.7260401096], "code_commune_insee": "97134"}, "geometry": {"type": "Point", "coordinates": [-61.7260401096, 16.0864099698]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea9ebe9f2a90a36d2e4e06ebc4d67c1dad692dae", "fields": {"nom_de_la_commune": "LE CARBET", "libell_d_acheminement": "LE CARBET", "code_postal": "97221", "coordonnees_gps": [14.711361655, -61.164071579], "code_commune_insee": "97204"}, "geometry": {"type": "Point", "coordinates": [-61.164071579, 14.711361655]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76c29c224bc904277c51cf93d84c1fa8f2f47c08", "fields": {"nom_de_la_commune": "CASE PILOTE", "libell_d_acheminement": "CASE PILOTE", "code_postal": "97222", "coordonnees_gps": [14.6653538881, -61.1334870347], "code_commune_insee": "97205"}, "geometry": {"type": "Point", "coordinates": [-61.1334870347, 14.6653538881]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f66924adc486ad96c75118f0c0cdd4362994ee1", "fields": {"nom_de_la_commune": "DUCOS", "libell_d_acheminement": "DUCOS", "code_postal": "97224", "coordonnees_gps": [14.5779382412, -60.9674685359], "code_commune_insee": "97207"}, "geometry": {"type": "Point", "coordinates": [-60.9674685359, 14.5779382412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "22cee189c16221abf5eca90f6885ffce79750fff", "fields": {"nom_de_la_commune": "FORT DE FRANCE", "libell_d_acheminement": "FORT DE FRANCE", "code_postal": "97200", "coordonnees_gps": [14.6410271251, -61.069074331], "code_commune_insee": "97209"}, "geometry": {"type": "Point", "coordinates": [-61.069074331, 14.6410271251]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5a72d865e91b1dfb8205a3972943f94020dbf0c8", "fields": {"nom_de_la_commune": "GRAND RIVIERE", "libell_d_acheminement": "GRAND RIVIERE", "code_postal": "97218", "coordonnees_gps": [14.8474849535, -61.1459690766], "code_commune_insee": "97211"}, "geometry": {"type": "Point", "coordinates": [-61.1459690766, 14.8474849535]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d3452bf862985f6b318cc313b27b68b34ac1a29", "fields": {"code_postal": "97231", "code_commune_insee": "97222", "libell_d_acheminement": "LE ROBERT", "ligne_5": "ROBERT VERT PRE", "nom_de_la_commune": "LE ROBERT", "coordonnees_gps": [14.6748993025, -60.9426153066]}, "geometry": {"type": "Point", "coordinates": [-60.9426153066, 14.6748993025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fa0bd9295244dbbe39ec23ab26f0b78c9f5b347", "fields": {"nom_de_la_commune": "LE MORNE VERT", "libell_d_acheminement": "LE MORNE VERT", "code_postal": "97226", "coordonnees_gps": [14.7036898199, -61.1351937077], "code_commune_insee": "97233"}, "geometry": {"type": "Point", "coordinates": [-61.1351937077, 14.7036898199]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfd02927977e10788fb8d519514255e3b821a986", "fields": {"code_postal": "97318", "code_commune_insee": "97306", "libell_d_acheminement": "MANA", "ligne_5": "JAVOUHEY", "nom_de_la_commune": "MANA", "coordonnees_gps": [4.99170472489, -53.6455074841]}, "geometry": {"type": "Point", "coordinates": [-53.6455074841, 4.99170472489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a924b7de5928b6621eac107d50d982fb8f83246c", "fields": {"nom_de_la_commune": "MANA", "libell_d_acheminement": "MANA", "code_postal": "97360", "coordonnees_gps": [4.99170472489, -53.6455074841], "code_commune_insee": "97306"}, "geometry": {"type": "Point", "coordinates": [-53.6455074841, 4.99170472489]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04b2efd9bf0d6c8910b9e82741ebd7abb6d91a91", "fields": {"nom_de_la_commune": "REMIRE MONTJOLY", "libell_d_acheminement": "REMIRE MONTJOLY", "code_postal": "97354", "coordonnees_gps": [4.88424605063, -52.2791892893], "code_commune_insee": "97309"}, "geometry": {"type": "Point", "coordinates": [-52.2791892893, 4.88424605063]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91d9c2565db582991f421cacfacc90d698359827", "fields": {"nom_de_la_commune": "SINNAMARY", "libell_d_acheminement": "SINNAMARY", "code_postal": "97315", "coordonnees_gps": [5.2368142244, -53.007841283], "code_commune_insee": "97312"}, "geometry": {"type": "Point", "coordinates": [-53.007841283, 5.2368142244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea13659473d7a273960818a1850010116a01f7aa", "fields": {"nom_de_la_commune": "MARIPASOULA", "libell_d_acheminement": "MARIPASOULA", "code_postal": "97370", "coordonnees_gps": [2.96739495886, -53.7582708422], "code_commune_insee": "97353"}, "geometry": {"type": "Point", "coordinates": [-53.7582708422, 2.96739495886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70d0b87d0f258f3c76007716ca3fc3db821e520c", "fields": {"nom_de_la_commune": "CAMOPI", "libell_d_acheminement": "CAMOPI", "code_postal": "97330", "coordonnees_gps": [2.83805562198, -52.7964984163], "code_commune_insee": "97356"}, "geometry": {"type": "Point", "coordinates": [-52.7964984163, 2.83805562198]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96539879b55b712de1624235e86260fe2cc474c3", "fields": {"nom_de_la_commune": "APATOU", "libell_d_acheminement": "APATOU", "code_postal": "97317", "coordonnees_gps": [4.82987513208, -54.2699798308], "code_commune_insee": "97360"}, "geometry": {"type": "Point", "coordinates": [-54.2699798308, 4.82987513208]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ac396e054d2472d3addc69bb73edb3ef60ace131", "fields": {"nom_de_la_commune": "LES AVIRONS", "libell_d_acheminement": "LES AVIRONS", "code_postal": "97425", "coordonnees_gps": [-21.2099106214, 55.3584773228], "code_commune_insee": "97401"}, "geometry": {"type": "Point", "coordinates": [55.3584773228, -21.2099106214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "606e0f282b20a20835b444cf994de1fd8feb29f2", "fields": {"code_postal": "97425", "code_commune_insee": "97401", "libell_d_acheminement": "LES AVIRONS", "ligne_5": "TEVELAVE", "nom_de_la_commune": "LES AVIRONS", "coordonnees_gps": [-21.2099106214, 55.3584773228]}, "geometry": {"type": "Point", "coordinates": [55.3584773228, -21.2099106214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0cbfde273cb6f339a7a35636475195a1a58ce1d2", "fields": {"nom_de_la_commune": "BRAS PANON", "libell_d_acheminement": "BRAS PANON", "code_postal": "97412", "coordonnees_gps": [-21.0233456262, 55.6196458228], "code_commune_insee": "97402"}, "geometry": {"type": "Point", "coordinates": [55.6196458228, -21.0233456262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4403f7b9cd2877a1745973ba789872f4f37f41d9", "fields": {"code_postal": "97412", "code_commune_insee": "97402", "libell_d_acheminement": "BRAS PANON", "ligne_5": "RIVIERE DU MAT", "nom_de_la_commune": "BRAS PANON", "coordonnees_gps": [-21.0233456262, 55.6196458228]}, "geometry": {"type": "Point", "coordinates": [55.6196458228, -21.0233456262]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d31f40d020babe9edfc625d68c46fdf6ca4d891", "fields": {"nom_de_la_commune": "PETITE ILE", "libell_d_acheminement": "PETITE ILE", "code_postal": "97429", "coordonnees_gps": [-21.3396693857, 55.5689349201], "code_commune_insee": "97405"}, "geometry": {"type": "Point", "coordinates": [55.5689349201, -21.3396693857]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "651349d99ce03570c5848cd32e22f93362c10979", "fields": {"code_postal": "97420", "code_commune_insee": "97407", "libell_d_acheminement": "LE PORT", "ligne_5": "LE PORT MARINE", "nom_de_la_commune": "LE PORT", "coordonnees_gps": [-20.9441300378, 55.3052625029]}, "geometry": {"type": "Point", "coordinates": [55.3052625029, -20.9441300378]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "648c1e34d552fb0a19ac23c3dab66a6b4a62ed3f", "fields": {"code_postal": "97419", "code_commune_insee": "97408", "libell_d_acheminement": "LA POSSESSION", "ligne_5": "LA RIVIERE DES GALETS", "nom_de_la_commune": "LA POSSESSION", "coordonnees_gps": [-20.99459115, 55.3979867416]}, "geometry": {"type": "Point", "coordinates": [55.3979867416, -20.99459115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "be5fc2d7848cdee2d00722285c4d7e897f276498", "fields": {"code_postal": "97440", "code_commune_insee": "97409", "libell_d_acheminement": "ST ANDRE", "ligne_5": "LA CRESSONNIERE", "nom_de_la_commune": "ST ANDRE", "coordonnees_gps": [-20.9634830614, 55.6422659103]}, "geometry": {"type": "Point", "coordinates": [55.6422659103, -20.9634830614]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c7eab05deae8153f47a6e895297ec4108f07153", "fields": {"nom_de_la_commune": "ST DENIS", "libell_d_acheminement": "ST DENIS", "code_postal": "97400", "coordonnees_gps": [-20.9331449895, 55.4471125463], "code_commune_insee": "97411"}, "geometry": {"type": "Point", "coordinates": [55.4471125463, -20.9331449895]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ca78b952c54412d41718aad22605b5dee62ed87", "fields": {"code_postal": "97480", "code_commune_insee": "97412", "libell_d_acheminement": "ST JOSEPH", "ligne_5": "LES LIANES", "nom_de_la_commune": "ST JOSEPH", "coordonnees_gps": [-21.3061982734, 55.6419643354]}, "geometry": {"type": "Point", "coordinates": [55.6419643354, -21.3061982734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "649ad73c6bac80077151783908f9a07a62d14c00", "fields": {"code_postal": "97480", "code_commune_insee": "97412", "libell_d_acheminement": "ST JOSEPH", "ligne_5": "VINCENDO", "nom_de_la_commune": "ST JOSEPH", "coordonnees_gps": [-21.3061982734, 55.6419643354]}, "geometry": {"type": "Point", "coordinates": [55.6419643354, -21.3061982734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ef01d777d3ec4642811890ad2d9e88387e64fe9", "fields": {"code_postal": "97424", "code_commune_insee": "97413", "libell_d_acheminement": "ST LEU", "ligne_5": "LE PITON ST LEU", "nom_de_la_commune": "ST LEU", "coordonnees_gps": [-21.1657814773, 55.3335929857]}, "geometry": {"type": "Point", "coordinates": [55.3335929857, -21.1657814773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "04283d5eb80ddabcbff27ac06f899e2217e9fb94", "fields": {"code_postal": "97421", "code_commune_insee": "97414", "libell_d_acheminement": "ST LOUIS", "ligne_5": "LA RIVIERE", "nom_de_la_commune": "ST LOUIS", "coordonnees_gps": [-21.2337866407, 55.4216954351]}, "geometry": {"type": "Point", "coordinates": [55.4216954351, -21.2337866407]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "410dc1564dced2a8f3d8a6a27ec90940e1a9a486", "fields": {"code_postal": "97435", "code_commune_insee": "97415", "libell_d_acheminement": "ST PAUL", "ligne_5": "BERNICA", "nom_de_la_commune": "ST PAUL", "coordonnees_gps": [-21.044558662, 55.3221880362]}, "geometry": {"type": "Point", "coordinates": [55.3221880362, -21.044558662]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b5f3651a51b99d9660385c764b5c3f6d698e4b9b", "fields": {"code_postal": "97410", "code_commune_insee": "97416", "libell_d_acheminement": "ST PIERRE", "ligne_5": "BASSE TERRE", "nom_de_la_commune": "ST PIERRE", "coordonnees_gps": [-21.3123020427, 55.4942837134]}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5bddbb519c203e060bf86deac11015b7077700d", "fields": {"code_postal": "97410", "code_commune_insee": "97416", "libell_d_acheminement": "ST PIERRE", "ligne_5": "TERRE SAINTE", "nom_de_la_commune": "ST PIERRE", "coordonnees_gps": [-21.3123020427, 55.4942837134]}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7f848d8d3066351c1cc578f4935c29b820b2de4", "fields": {"code_postal": "97432", "code_commune_insee": "97416", "libell_d_acheminement": "ST PIERRE", "ligne_5": "RAVINE DES CABRIS", "nom_de_la_commune": "ST PIERRE", "coordonnees_gps": [-21.3123020427, 55.4942837134]}, "geometry": {"type": "Point", "coordinates": [55.4942837134, -21.3123020427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed0523a221c153cba8813473d545119bd7032c8d", "fields": {"nom_de_la_commune": "STE MARIE", "libell_d_acheminement": "STE MARIE", "code_postal": "97438", "coordonnees_gps": [-20.9470117135, 55.5304413195], "code_commune_insee": "97418"}, "geometry": {"type": "Point", "coordinates": [55.5304413195, -20.9470117135]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3447498fef1507e2abdfea8c09d542c8655efc01", "fields": {"code_postal": "97418", "code_commune_insee": "97422", "libell_d_acheminement": "LE TAMPON", "ligne_5": "TAMPON 17EME KM", "nom_de_la_commune": "LE TAMPON", "coordonnees_gps": [-21.2232735842, 55.5587522693]}, "geometry": {"type": "Point", "coordinates": [55.5587522693, -21.2232735842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3789f3d25d0dadbee0bb74f01ac7735b15a4a2fa", "fields": {"nom_de_la_commune": "ACOUA", "libell_d_acheminement": "ACOUA", "code_postal": "97630", "coordonnees_gps": [-12.7037438123, 45.0717293646], "code_commune_insee": "97601"}, "geometry": {"type": "Point", "coordinates": [45.0717293646, -12.7037438123]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f625d831df40b4202d6734a54d730adf77a6d6", "fields": {"nom_de_la_commune": "BOUENI", "libell_d_acheminement": "BOUENI", "code_postal": "97620", "coordonnees_gps": [-12.9209271264, 45.1312286535], "code_commune_insee": "97604"}, "geometry": {"type": "Point", "coordinates": [45.1312286535, -12.9209271264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "166e7504ecd98cb17000b8a2b07afafcf9fb55cc", "fields": {"nom_de_la_commune": "CHIRONGUI", "libell_d_acheminement": "CHIRONGUI", "code_postal": "97620", "coordonnees_gps": [-12.9209271264, 45.1312286535], "code_commune_insee": "97606"}, "geometry": {"type": "Point", "coordinates": [45.1312286535, -12.9209271264]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f14c076f7e9e4f309d27759884fc51493f3f76b6", "fields": {"nom_de_la_commune": "DEMBENI", "libell_d_acheminement": "DEMBENI", "code_postal": "97660", "coordonnees_gps": [-12.8901616081, 45.1766863463], "code_commune_insee": "97607"}, "geometry": {"type": "Point", "coordinates": [45.1766863463, -12.8901616081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1c8aebb67332f161532709532662ea518a87ef0", "fields": {"nom_de_la_commune": "KOUNGOU", "libell_d_acheminement": "KOUNGOU", "code_postal": "97600", "coordonnees_gps": [-12.7725574763, 45.1908759365], "code_commune_insee": "97610"}, "geometry": {"type": "Point", "coordinates": [45.1908759365, -12.7725574763]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b88417424de3cea1f1bb3a21afa4fb2ff36a2fab", "fields": {"code_postal": "97605", "code_commune_insee": "97611", "libell_d_acheminement": "MAMOUDZOU", "ligne_5": "PASSAMAINTI", "nom_de_la_commune": "MAMOUDZOU", "coordonnees_gps": [-12.7896538048, 45.1939677956]}, "geometry": {"type": "Point", "coordinates": [45.1939677956, -12.7896538048]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c2755f040fe8bda0f8421aa577d704a0eef1761", "fields": {"nom_de_la_commune": "ST MARTIN", "libell_d_acheminement": "ST MARTIN", "code_postal": "97150", "code_commune_insee": "97801"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f35a1b6a41f7c86caf9ea28e5418d6458a158fb8", "fields": {"nom_de_la_commune": "ARUTUA", "libell_d_acheminement": "NIUTAHI", "code_postal": "98762", "ligne_5": "ARUTUA", "code_commune_insee": "98713"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "778b53213656c1e02d01c0965be3e84819798333", "fields": {"nom_de_la_commune": "FAKARAVA", "libell_d_acheminement": "ROTOAVA", "code_postal": "98763", "ligne_5": "FAKARAVA", "code_commune_insee": "98716"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "718d33011b35cc4d4a1d11e6f4a3fdff5b589f91", "fields": {"nom_de_la_commune": "FATU HIVA", "libell_d_acheminement": "OMOA", "code_postal": "98740", "ligne_5": "FATU HIVA", "code_commune_insee": "98718"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1fad9a024c24e7ff3523b8c0eaa39a2a8a16214", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "ANGAKAUITAI", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c93f5fef6cb24959427c3b594daf39c6bc0da09", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "AUKENA", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5063fd4d3388d847ccfd22f56bc9ea785111fd0c", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MANGAREVA", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d700cb62fcb1962ab80c8351d647e94bfaca5960", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MANIUI", "code_postal": "98755", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "480ed41c1b68298d52f1390a6739722ec1f0bba7", "fields": {"nom_de_la_commune": "GAMBIER", "libell_d_acheminement": "MORANE", "code_postal": "98792", "ligne_5": "GAMBIER", "code_commune_insee": "98719"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2eb3c4a55d948ffacc99cd05546ffa1de9bd8fcb", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "HEREHRETUE", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9da85a8968640c9837b1c84390e28f808b6a9cb9", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "MANUHANGI", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "664b94d6ad777e83090b18dbaf4904dadddfa470", "fields": {"nom_de_la_commune": "HAO", "libell_d_acheminement": "AHUNUI", "code_postal": "98790", "ligne_5": "HAO", "code_commune_insee": "98720"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec2398c7f218d822291d93266e1d10e4acf74a5f", "fields": {"nom_de_la_commune": "HIKUERU", "libell_d_acheminement": "TUPAPATI", "code_postal": "98768", "ligne_5": "HIKUERU", "code_commune_insee": "98721"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7deff102b65d97b3de1ff0dd1ed96dd6f3d22f5c", "fields": {"nom_de_la_commune": "HIKUERU", "libell_d_acheminement": "MOTUTAPU", "code_postal": "98790", "ligne_5": "HIKUERU", "code_commune_insee": "98721"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "89dabec755f4582950e0f49cc63b377cb3fac36d", "fields": {"nom_de_la_commune": "HIKUERU", "libell_d_acheminement": "TEPEPERU", "code_postal": "98790", "ligne_5": "HIKUERU", "code_commune_insee": "98721"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f373cf08f07e923a811015a3f4fd27892daffe7", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "HANAPAOA", "code_postal": "98741", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc64da75034b9ac14ff97d5cf4430cc15f89c00d", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "PUAMAU", "code_postal": "98749", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebd73a09643c6cfd73db7b889b78f7033e7ca6bf", "fields": {"nom_de_la_commune": "HIVA OA", "libell_d_acheminement": "FATU HUKU", "code_postal": "98796", "ligne_5": "HIVA OA", "code_commune_insee": "98723"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dafbde5c44f5786a5d0de8aa6c9b8fead42d2f7e", "fields": {"nom_de_la_commune": "HUAHINE", "libell_d_acheminement": "AVERA", "code_postal": "98732", "ligne_5": "HUAHINE", "code_commune_insee": "98724"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "448f566ad16683087db68173fc11d2dfc089a88c", "fields": {"nom_de_la_commune": "MAKEMO", "libell_d_acheminement": "HITIANAU", "code_postal": "98789", "ligne_5": "MAKEMO", "code_commune_insee": "98726"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4e649d892cef6b1f9d430875bda1346988233b75", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "AFAREAITU", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2f7afdfa7b7782859b0de5a034096948b20e623", "fields": {"nom_de_la_commune": "MOOREA MAIAO", "libell_d_acheminement": "MAATEA", "code_postal": "98728", "ligne_5": "MOOREA MAIAO", "code_commune_insee": "98729"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d2da0d53c7d7dac573223b647cc7611db6a8c03", "fields": {"nom_de_la_commune": "HOERDT", "libell_d_acheminement": "HOERDT", "code_postal": "67720", "coordonnees_gps": [48.7056122798, 7.80812947302], "code_commune_insee": "67205"}, "geometry": {"type": "Point", "coordinates": [7.80812947302, 48.7056122798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cedf5ecb8816387ff16f1e2abc1d7c5ad4247a4", "fields": {"nom_de_la_commune": "LE HOHWALD", "libell_d_acheminement": "LE HOHWALD", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67210"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c31c589627f04e242d56b219bd8c8324d4fc3baf", "fields": {"nom_de_la_commune": "ICHTRATZHEIM", "libell_d_acheminement": "ICHTRATZHEIM", "code_postal": "67640", "coordonnees_gps": [48.4903746121, 7.67506089743], "code_commune_insee": "67217"}, "geometry": {"type": "Point", "coordinates": [7.67506089743, 48.4903746121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f63a4835115b147b5ec75bed83efb3b28888a172", "fields": {"nom_de_la_commune": "INGWILLER", "libell_d_acheminement": "INGWILLER", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67222"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bf9a19d69fe71f7a1a89270b0b1ba6435d602bd7", "fields": {"code_postal": "67370", "code_commune_insee": "67228", "libell_d_acheminement": "NEUGARTHEIM ITTLENHEIM", "ligne_5": "NEUGARTHEIM", "nom_de_la_commune": "NEUGARTHEIM ITTLENHEIM", "coordonnees_gps": [48.6569988155, 7.60463752637]}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11e9a71ad165647649a9729724b8cd373c6b67be", "fields": {"nom_de_la_commune": "KAUFFENHEIM", "libell_d_acheminement": "KAUFFENHEIM", "code_postal": "67480", "coordonnees_gps": [48.8278022516, 8.03538816239], "code_commune_insee": "67231"}, "geometry": {"type": "Point", "coordinates": [8.03538816239, 48.8278022516]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7765658dece8314efa68aa29f6e13540be30d95", "fields": {"nom_de_la_commune": "KINDWILLER", "libell_d_acheminement": "KINDWILLER", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67238"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "76f059b7fd654f35d0d77c6cb807b0a5031ef2fa", "fields": {"nom_de_la_commune": "KIRCHHEIM", "libell_d_acheminement": "KIRCHHEIM", "code_postal": "67520", "coordonnees_gps": [48.6254584332, 7.49951145108], "code_commune_insee": "67240"}, "geometry": {"type": "Point", "coordinates": [7.49951145108, 48.6254584332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "051c57a6366ff98078d5660c6404c5ec16568a92", "fields": {"nom_de_la_commune": "KIRRBERG", "libell_d_acheminement": "KIRRBERG", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67241"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f999f92ffe7f62310be2713bcf248e7717fc49f6", "fields": {"nom_de_la_commune": "KRIEGSHEIM", "libell_d_acheminement": "KRIEGSHEIM", "code_postal": "67170", "coordonnees_gps": [48.7372742925, 7.70176270666], "code_commune_insee": "67250"}, "geometry": {"type": "Point", "coordinates": [7.70176270666, 48.7372742925]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "112501c1f87f60efb21f732b3daa0dc2ee0ec9ae", "fields": {"nom_de_la_commune": "LANGENSOULTZBACH", "libell_d_acheminement": "LANGENSOULTZBACH", "code_postal": "67360", "coordonnees_gps": [48.9315842812, 7.75558700625], "code_commune_insee": "67259"}, "geometry": {"type": "Point", "coordinates": [7.75558700625, 48.9315842812]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0776cfd0f6fb304fe1ff20493e22795a317a8083", "fields": {"nom_de_la_commune": "LICHTENBERG", "libell_d_acheminement": "LICHTENBERG", "code_postal": "67340", "coordonnees_gps": [48.9008090946, 7.47211174542], "code_commune_insee": "67265"}, "geometry": {"type": "Point", "coordinates": [7.47211174542, 48.9008090946]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9eec85fadcfb1a93da63b6b0c20294df6735ac52", "fields": {"nom_de_la_commune": "LINGOLSHEIM", "libell_d_acheminement": "LINGOLSHEIM", "code_postal": "67380", "coordonnees_gps": [48.555276325, 7.68174533703], "code_commune_insee": "67267"}, "geometry": {"type": "Point", "coordinates": [7.68174533703, 48.555276325]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9282411f2a656fa1c44360689c6515f7c1e2fe4e", "fields": {"nom_de_la_commune": "LUTZELHOUSE", "libell_d_acheminement": "LUTZELHOUSE", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67276"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35eb74f5569220d2fb3f6c9cb389a828daab5d91", "fields": {"nom_de_la_commune": "MACKENHEIM", "libell_d_acheminement": "MACKENHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67277"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ebe3ce597b2d887d85a6e39e7821f27e1a32309", "fields": {"nom_de_la_commune": "MARLENHEIM", "libell_d_acheminement": "MARLENHEIM", "code_postal": "67520", "coordonnees_gps": [48.6254584332, 7.49951145108], "code_commune_insee": "67282"}, "geometry": {"type": "Point", "coordinates": [7.49951145108, 48.6254584332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d60dd0c23a5d74d46af440e1ca6e9b790b0f752", "fields": {"code_postal": "67150", "code_commune_insee": "67285", "libell_d_acheminement": "MATZENHEIM", "ligne_5": "HAEUSERN", "nom_de_la_commune": "MATZENHEIM", "coordonnees_gps": [48.4189432585, 7.66592042678]}, "geometry": {"type": "Point", "coordinates": [7.66592042678, 48.4189432585]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6cf59d18c2e14cf50541944e683973df57b22b2e", "fields": {"nom_de_la_commune": "MERKWILLER PECHELBRONN", "libell_d_acheminement": "MERKWILLER PECHELBRONN", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67290"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0e52cfcddb1ac3e9aa1386edf47bb2462c1626a9", "fields": {"nom_de_la_commune": "MULHAUSEN", "libell_d_acheminement": "MULHAUSEN", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67307"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ff8f3c81aca67025631bc266b19661d57cae6ccd", "fields": {"nom_de_la_commune": "MUNDOLSHEIM", "libell_d_acheminement": "MUNDOLSHEIM", "code_postal": "67450", "coordonnees_gps": [48.6487396541, 7.70172520923], "code_commune_insee": "67309"}, "geometry": {"type": "Point", "coordinates": [7.70172520923, 48.6487396541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ff6708f8cc8c36614d618903dee03e67252cb3e", "fields": {"nom_de_la_commune": "MUTZIG", "libell_d_acheminement": "MUTZIG", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67313"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "447b277fba02376421f1ab414aad58750302b338", "fields": {"nom_de_la_commune": "NEUBOIS", "libell_d_acheminement": "NEUBOIS", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67317"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9ed7164bc738746a229df5b6a5daaa417d834f1e", "fields": {"nom_de_la_commune": "NIEDERHAUSBERGEN", "libell_d_acheminement": "NIEDERHAUSBERGEN", "code_postal": "67207", "coordonnees_gps": [48.6233985289, 7.70554546045], "code_commune_insee": "67326"}, "geometry": {"type": "Point", "coordinates": [7.70554546045, 48.6233985289]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb3b79fdf0767a41536be0ccfc6d9579da382c1f", "fields": {"nom_de_la_commune": "NIEDERSCHAEFFOLSHEIM", "libell_d_acheminement": "NIEDERSCHAEFFOLSHEIM", "code_postal": "67500", "coordonnees_gps": [48.83252193, 7.82037649522], "code_commune_insee": "67331"}, "geometry": {"type": "Point", "coordinates": [7.82037649522, 48.83252193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e8a616db19f97372bf1c177f87b88f1bbeff56d", "fields": {"nom_de_la_commune": "NORDHEIM", "libell_d_acheminement": "NORDHEIM", "code_postal": "67520", "coordonnees_gps": [48.6254584332, 7.49951145108], "code_commune_insee": "67335"}, "geometry": {"type": "Point", "coordinates": [7.49951145108, 48.6254584332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f47865717ea9dc92f1854280f661f8e05060256a", "fields": {"nom_de_la_commune": "OBERBRONN", "libell_d_acheminement": "OBERBRONN", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67340"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a2877eb96b7d29e41135908267fbb91aa996686", "fields": {"nom_de_la_commune": "OBERHASLACH", "libell_d_acheminement": "OBERHASLACH", "code_postal": "67280", "coordonnees_gps": [48.5545295138, 7.30377202795], "code_commune_insee": "67342"}, "geometry": {"type": "Point", "coordinates": [7.30377202795, 48.5545295138]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27eb3dc277b7fed5288384b6fc13d51778023464", "fields": {"nom_de_la_commune": "OBERLAUTERBACH", "libell_d_acheminement": "OBERLAUTERBACH", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67346"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00d6b5e28100681d90194d0f12f6b6a1ec58994", "fields": {"code_postal": "67160", "code_commune_insee": "67351", "libell_d_acheminement": "SEEBACH", "ligne_5": "OBERSEEBACH", "nom_de_la_commune": "SEEBACH", "coordonnees_gps": [48.9935225292, 7.97087755177]}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7489c7e100544cd93c74791f978712e3abb704ed", "fields": {"nom_de_la_commune": "ODRATZHEIM", "libell_d_acheminement": "ODRATZHEIM", "code_postal": "67520", "coordonnees_gps": [48.6254584332, 7.49951145108], "code_commune_insee": "67354"}, "geometry": {"type": "Point", "coordinates": [7.49951145108, 48.6254584332]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe721dcf69ebdd02c015c3401617717b11aff5e8", "fields": {"nom_de_la_commune": "OERMINGEN", "libell_d_acheminement": "OERMINGEN", "code_postal": "67970", "coordonnees_gps": [48.997807573, 7.11958167094], "code_commune_insee": "67355"}, "geometry": {"type": "Point", "coordinates": [7.11958167094, 48.997807573]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b709955e37a4973e3828596b03348af3c26da555", "fields": {"nom_de_la_commune": "ORSCHWILLER", "libell_d_acheminement": "ORSCHWILLER", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67362"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4221e32824a5ba069752300b4042f0010cc16fb0", "fields": {"nom_de_la_commune": "OSTWALD", "libell_d_acheminement": "OSTWALD", "code_postal": "67540", "coordonnees_gps": [48.5468855428, 7.70790964356], "code_commune_insee": "67365"}, "geometry": {"type": "Point", "coordinates": [7.70790964356, 48.5468855428]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44cf27ce9dd4d034faf1e3746488babf91dfb7ba", "fields": {"nom_de_la_commune": "OTTERSWILLER", "libell_d_acheminement": "OTTERSWILLER", "code_postal": "67700", "coordonnees_gps": [48.7358014882, 7.35473600973], "code_commune_insee": "67367"}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d329c56de93c1668a90e0f0cb28d7790bce583fe", "fields": {"nom_de_la_commune": "OTTROTT", "libell_d_acheminement": "OTTROTT", "code_postal": "67530", "coordonnees_gps": [48.4532281253, 7.37169792676], "code_commune_insee": "67368"}, "geometry": {"type": "Point", "coordinates": [7.37169792676, 48.4532281253]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3bdf484fb89c2e1c63a64f9833316f72d3825d3", "fields": {"nom_de_la_commune": "PFULGRIESHEIM", "libell_d_acheminement": "PFULGRIESHEIM", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67375"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a71ef14117111a7336409424222b41bbc4e52490", "fields": {"nom_de_la_commune": "PREUSCHDORF", "libell_d_acheminement": "PREUSCHDORF", "code_postal": "67250", "coordonnees_gps": [48.9438844656, 7.88208962387], "code_commune_insee": "67379"}, "geometry": {"type": "Point", "coordinates": [7.88208962387, 48.9438844656]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26d7d9a6bae9659cbea33dff33f42ce9dcb147dc", "fields": {"nom_de_la_commune": "PUBERG", "libell_d_acheminement": "PUBERG", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67381"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75d93bbc2a9b5bf013bb1dc60f2e4d3f6f19ffd9", "fields": {"nom_de_la_commune": "QUATZENHEIM", "libell_d_acheminement": "QUATZENHEIM", "code_postal": "67117", "coordonnees_gps": [48.6157135687, 7.57861497151], "code_commune_insee": "67382"}, "geometry": {"type": "Point", "coordinates": [7.57861497151, 48.6157135687]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "93909afe8f1d214b90a1a46ae9b492fb4571450a", "fields": {"nom_de_la_commune": "RANGEN", "libell_d_acheminement": "RANGEN", "code_postal": "67310", "coordonnees_gps": [48.6178840196, 7.42141185001], "code_commune_insee": "67383"}, "geometry": {"type": "Point", "coordinates": [7.42141185001, 48.6178840196]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28a3c73cbf353d8c329164d94bcb51f342386683", "fields": {"nom_de_la_commune": "REICHSHOFFEN", "libell_d_acheminement": "REICHSHOFFEN", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67388"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "48c476404a2196f58dab2e67c57f9534ca54501a", "fields": {"nom_de_la_commune": "REICHSTETT", "libell_d_acheminement": "REICHSTETT", "code_postal": "67116", "coordonnees_gps": [48.6480231424, 7.75723377017], "code_commune_insee": "67389"}, "geometry": {"type": "Point", "coordinates": [7.75723377017, 48.6480231424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8e2cb2bacf6e99a8b45a2de2f8c27d25340420c1", "fields": {"nom_de_la_commune": "REINHARDSMUNSTER", "libell_d_acheminement": "REINHARDSMUNSTER", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67391"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "82278a341247efcebbcd4e64857cbf1f299a72b5", "fields": {"nom_de_la_commune": "REXINGEN", "libell_d_acheminement": "REXINGEN", "code_postal": "67320", "coordonnees_gps": [48.8529656934, 7.17568129629], "code_commune_insee": "67396"}, "geometry": {"type": "Point", "coordinates": [7.17568129629, 48.8529656934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3badec97c2320991c88b54c1fc62ee3f71af9418", "fields": {"nom_de_la_commune": "RICHTOLSHEIM", "libell_d_acheminement": "RICHTOLSHEIM", "code_postal": "67390", "coordonnees_gps": [48.1884610554, 7.56769145413], "code_commune_insee": "67398"}, "geometry": {"type": "Point", "coordinates": [7.56769145413, 48.1884610554]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3dbacc5b1c8d1b5efd71b82c7ac4b018045753fd", "fields": {"nom_de_la_commune": "RINGELDORF", "libell_d_acheminement": "RINGELDORF", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67402"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "47416d4e4b3b7d81dc574f1ac2a15e94bfdb7358", "fields": {"nom_de_la_commune": "ROTT", "libell_d_acheminement": "ROTT", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67416"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8329b9b74c4a69f64205b7a947cfca30217f9438", "fields": {"nom_de_la_commune": "RUSS", "libell_d_acheminement": "RUSS", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67420"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b93f1ac57140d05538fa1235f94e7c6707843a2d", "fields": {"nom_de_la_commune": "SAESSOLSHEIM", "libell_d_acheminement": "SAESSOLSHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67423"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "665be42c1b7844de4295c710f9ff65285812b057", "fields": {"nom_de_la_commune": "ST PIERRE", "libell_d_acheminement": "ST PIERRE", "code_postal": "67140", "coordonnees_gps": [48.3961898331, 7.41157296481], "code_commune_insee": "67429"}, "geometry": {"type": "Point", "coordinates": [7.41157296481, 48.3961898331]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "44c0585871582d5504636667d0d446f72d2bc8b8", "fields": {"code_postal": "67220", "code_commune_insee": "67430", "libell_d_acheminement": "ST PIERRE BOIS", "ligne_5": "HOHWARTH", "nom_de_la_commune": "ST PIERRE BOIS", "coordonnees_gps": [48.3397350207, 7.28306516568]}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88aa7aab49f10e93b269f5715cd552d35dae18ba", "fields": {"nom_de_la_commune": "SAND", "libell_d_acheminement": "SAND", "code_postal": "67230", "coordonnees_gps": [48.3534697702, 7.59434937748], "code_commune_insee": "67433"}, "geometry": {"type": "Point", "coordinates": [7.59434937748, 48.3534697702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c62457fd9d24fd145c47d5e3ddb6b22af392c83c", "fields": {"nom_de_la_commune": "SARREWERDEN", "libell_d_acheminement": "SARREWERDEN", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67435"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c65b0c19c2aeebae0e06b2d8c1ede584aba2883", "fields": {"code_postal": "67700", "code_commune_insee": "67437", "libell_d_acheminement": "SAVERNE", "ligne_5": "ZORNHOF", "nom_de_la_commune": "SAVERNE", "coordonnees_gps": [48.7358014882, 7.35473600973]}, "geometry": {"type": "Point", "coordinates": [7.35473600973, 48.7358014882]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "786e62035ab8c4eca136907b1d9e902319d3bd70", "fields": {"nom_de_la_commune": "SCHAFFHOUSE PRES SELTZ", "libell_d_acheminement": "SCHAFFHOUSE PRES SELTZ", "code_postal": "67470", "coordonnees_gps": [48.9168839314, 8.09476265235], "code_commune_insee": "67440"}, "geometry": {"type": "Point", "coordinates": [8.09476265235, 48.9168839314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "35ee26124006fe784a7572ea611bdb9f9cb14c0f", "fields": {"nom_de_la_commune": "SCHERLENHEIM", "libell_d_acheminement": "SCHERLENHEIM", "code_postal": "67270", "coordonnees_gps": [48.7485075734, 7.5652768188], "code_commune_insee": "67444"}, "geometry": {"type": "Point", "coordinates": [7.5652768188, 48.7485075734]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71b7dc344d9b24ea6e8c788750ab3246a060c1a", "fields": {"code_postal": "67750", "code_commune_insee": "67445", "libell_d_acheminement": "SCHERWILLER", "ligne_5": "KIENTZVILLE", "nom_de_la_commune": "SCHERWILLER", "coordonnees_gps": [48.2953571364, 7.41534118393]}, "geometry": {"type": "Point", "coordinates": [7.41534118393, 48.2953571364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "865c75494c5800265937cff03bc52b09c42ac379", "fields": {"nom_de_la_commune": "SCHWENHEIM", "libell_d_acheminement": "SCHWENHEIM", "code_postal": "67440", "coordonnees_gps": [48.685560689, 7.36622848676], "code_commune_insee": "67459"}, "geometry": {"type": "Point", "coordinates": [7.36622848676, 48.685560689]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7dab5d1b22606a23636db9cf086c18e618110305", "fields": {"nom_de_la_commune": "SELESTAT", "libell_d_acheminement": "SELESTAT", "code_postal": "67600", "coordonnees_gps": [48.2649373964, 7.48992697623], "code_commune_insee": "67462"}, "geometry": {"type": "Point", "coordinates": [7.48992697623, 48.2649373964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1988b59cbf3c155bd1a6a08e198686b84c89db56", "fields": {"nom_de_la_commune": "SESSENHEIM", "libell_d_acheminement": "SESSENHEIM", "code_postal": "67770", "coordonnees_gps": [48.786400847, 7.99175996988], "code_commune_insee": "67465"}, "geometry": {"type": "Point", "coordinates": [7.99175996988, 48.786400847]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5ac0f3a1e7115b4dbd240b7c128c67cb889c7ca", "fields": {"nom_de_la_commune": "SIEGEN", "libell_d_acheminement": "SIEGEN", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67466"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd6a5658fe6fd267f68bf8fe837f5b6cce8694a0", "fields": {"nom_de_la_commune": "SILTZHEIM", "libell_d_acheminement": "SILTZHEIM", "code_postal": "67260", "coordonnees_gps": [48.9452664459, 7.05902340111], "code_commune_insee": "67468"}, "geometry": {"type": "Point", "coordinates": [7.05902340111, 48.9452664459]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edb18cb43d0fc18f39cd5418b5620a4469ced3aa", "fields": {"nom_de_la_commune": "STEINSELTZ", "libell_d_acheminement": "STEINSELTZ", "code_postal": "67160", "coordonnees_gps": [48.9935225292, 7.97087755177], "code_commune_insee": "67479"}, "geometry": {"type": "Point", "coordinates": [7.97087755177, 48.9935225292]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "342568070c62a5921470abebd741b3be1b858d70", "fields": {"nom_de_la_commune": "STILL", "libell_d_acheminement": "STILL", "code_postal": "67190", "coordonnees_gps": [48.5299180893, 7.37333877047], "code_commune_insee": "67480"}, "geometry": {"type": "Point", "coordinates": [7.37333877047, 48.5299180893]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "11b354a05e3094890a0b671c816fee1df16e3cae", "fields": {"nom_de_la_commune": "THANVILLE", "libell_d_acheminement": "THANVILLE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67490"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15ed7b6243c4577791ff79cd31373e771c112563", "fields": {"nom_de_la_commune": "TIEFFENBACH", "libell_d_acheminement": "TIEFFENBACH", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67491"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b340cac25bbfee5d2c246bdb4fda3b6465ab8a8b", "fields": {"nom_de_la_commune": "TRIEMBACH AU VAL", "libell_d_acheminement": "TRIEMBACH AU VAL", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67493"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0605e7a5a6b078146a91484b18e257f014066eb3", "fields": {"nom_de_la_commune": "UHRWILLER", "libell_d_acheminement": "UHRWILLER", "code_postal": "67350", "coordonnees_gps": [48.8437239093, 7.60701636897], "code_commune_insee": "67498"}, "geometry": {"type": "Point", "coordinates": [7.60701636897, 48.8437239093]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "925edd10d80ac3d3a6afa19e90d8986f42c3cce6", "fields": {"nom_de_la_commune": "UTTENHOFFEN", "libell_d_acheminement": "UTTENHOFFEN", "code_postal": "67110", "coordonnees_gps": [48.9564241197, 7.64420401079], "code_commune_insee": "67502"}, "geometry": {"type": "Point", "coordinates": [7.64420401079, 48.9564241197]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "275188fd53c5f48bf158b44f86027c2522ad1733", "fields": {"nom_de_la_commune": "UTTWILLER", "libell_d_acheminement": "UTTWILLER", "code_postal": "67330", "coordonnees_gps": [48.8220828424, 7.43331239388], "code_commune_insee": "67503"}, "geometry": {"type": "Point", "coordinates": [7.43331239388, 48.8220828424]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdb1a7567cbd40c5e0d35a411d6d8340c1c9a90a", "fields": {"nom_de_la_commune": "VILLE", "libell_d_acheminement": "VILLE", "code_postal": "67220", "coordonnees_gps": [48.3397350207, 7.28306516568], "code_commune_insee": "67507"}, "geometry": {"type": "Point", "coordinates": [7.28306516568, 48.3397350207]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da2ee14eb79645ca67eb11a4e7bfc125a7ab0d17", "fields": {"nom_de_la_commune": "WALDERSBACH", "libell_d_acheminement": "WALDERSBACH", "code_postal": "67130", "coordonnees_gps": [48.4803602353, 7.21016561348], "code_commune_insee": "67513"}, "geometry": {"type": "Point", "coordinates": [7.21016561348, 48.4803602353]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb964ae76bbf77c7504698e076e60558efac94f6", "fields": {"nom_de_la_commune": "WEISLINGEN", "libell_d_acheminement": "WEISLINGEN", "code_postal": "67290", "coordonnees_gps": [48.9014582191, 7.32896439484], "code_commune_insee": "67522"}, "geometry": {"type": "Point", "coordinates": [7.32896439484, 48.9014582191]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac4362e8cb058ba0b1510d36179ef1416d27e51", "fields": {"nom_de_la_commune": "WEITBRUCH", "libell_d_acheminement": "WEITBRUCH", "code_postal": "67500", "coordonnees_gps": [48.83252193, 7.82037649522], "code_commune_insee": "67523"}, "geometry": {"type": "Point", "coordinates": [7.82037649522, 48.83252193]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c2a3eda7c2493d3b650e25d8638b58dcbe8dbf4", "fields": {"nom_de_la_commune": "WINTZENHEIM KOCHERSBERG", "libell_d_acheminement": "WINTZENHEIM KOCHERSBERG", "code_postal": "67370", "coordonnees_gps": [48.6569988155, 7.60463752637], "code_commune_insee": "67542"}, "geometry": {"type": "Point", "coordinates": [7.60463752637, 48.6569988155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71d30dd01fba9bbefea5d08d526ea5ff13333817", "fields": {"code_postal": "20118", "code_commune_insee": "2A090", "libell_d_acheminement": "COGGIA", "ligne_5": "SAGONE", "nom_de_la_commune": "COGGIA", "coordonnees_gps": [42.1361535255, 8.73174812561]}, "geometry": {"type": "Point", "coordinates": [8.73174812561, 42.1361535255]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "66d4129d59769b672b330e8583d32000d45d32d9", "fields": {"nom_de_la_commune": "COGNOCOLI MONTICCHI", "libell_d_acheminement": "COGNOCOLI MONTICCHI", "code_postal": "20123", "coordonnees_gps": [41.7989575666, 8.87694887286], "code_commune_insee": "2A091"}, "geometry": {"type": "Point", "coordinates": [8.87694887286, 41.7989575666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0625dbc497ad4f03d6573f5d6fc3ed484c4be427", "fields": {"nom_de_la_commune": "CUTTOLI CORTICCHIATO", "libell_d_acheminement": "CUTTOLI CORTICCHIATO", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A103"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85b715fb5fc98ea0f6e2f331532d0afed031a46a", "fields": {"nom_de_la_commune": "FOZZANO", "libell_d_acheminement": "FOZZANO", "code_postal": "20143", "coordonnees_gps": [41.708872053, 8.99627693971], "code_commune_insee": "2A118"}, "geometry": {"type": "Point", "coordinates": [8.99627693971, 41.708872053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ca2e43150c3e28f971daba5ee3910d7aee22941", "fields": {"nom_de_la_commune": "MOCA CROCE", "libell_d_acheminement": "MOCA CROCE", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A160"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6726343885412229f3bd3b2967b48cc7b7e5c4b6", "fields": {"nom_de_la_commune": "OSANI", "libell_d_acheminement": "OSANI", "code_postal": "20147", "coordonnees_gps": [42.3264086022, 8.67199581743], "code_commune_insee": "2A197"}, "geometry": {"type": "Point", "coordinates": [8.67199581743, 42.3264086022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7ff2a8d7ccd00fe4ad4cd3204663c917e69dcfc1", "fields": {"nom_de_la_commune": "PARTINELLO", "libell_d_acheminement": "PARTINELLO", "code_postal": "20147", "coordonnees_gps": [42.3264086022, 8.67199581743], "code_commune_insee": "2A203"}, "geometry": {"type": "Point", "coordinates": [8.67199581743, 42.3264086022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "138381be27664a59b9cd0ad6ea28e68eded2d553", "fields": {"nom_de_la_commune": "PERI", "libell_d_acheminement": "PERI", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A209"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "081ab9887c2f1d9c90c887bfbb1f2112ad6b473a", "fields": {"nom_de_la_commune": "PILA CANALE", "libell_d_acheminement": "PILA CANALE", "code_postal": "20123", "coordonnees_gps": [41.7989575666, 8.87694887286], "code_commune_insee": "2A232"}, "geometry": {"type": "Point", "coordinates": [8.87694887286, 41.7989575666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e2ae483251135741d6a897408a5d7b6e33faf91", "fields": {"nom_de_la_commune": "PORTO VECCHIO", "libell_d_acheminement": "PORTO VECCHIO", "code_postal": "20137", "coordonnees_gps": [41.6028867799, 9.2627396032], "code_commune_insee": "2A247"}, "geometry": {"type": "Point", "coordinates": [9.2627396032, 41.6028867799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d53f229a7020dc97c068078b46ff66935a85052", "fields": {"nom_de_la_commune": "SARI SOLENZARA", "libell_d_acheminement": "SARI SOLENZARA", "code_postal": "20145", "coordonnees_gps": [41.813622565, 9.35248683062], "code_commune_insee": "2A269"}, "geometry": {"type": "Point", "coordinates": [9.35248683062, 41.813622565]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f6667189b9c81da6bce5a7b312fbbbb0072e1c7", "fields": {"nom_de_la_commune": "SARTENE", "libell_d_acheminement": "SARTENE", "code_postal": "20100", "coordonnees_gps": [41.5806968547, 8.93943169099], "code_commune_insee": "2A272"}, "geometry": {"type": "Point", "coordinates": [8.93943169099, 41.5806968547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfd1f6f942b98d5edd767c17a257f06f0f202c57", "fields": {"nom_de_la_commune": "SERRA DI FERRO", "libell_d_acheminement": "SERRA DI FERRO", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A276"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c3f56b5b12f9ab14fd28ba92eab83585ad46abf", "fields": {"nom_de_la_commune": "SERRA DI SCOPAMENE", "libell_d_acheminement": "SERRA DI SCOPAMENE", "code_postal": "20127", "coordonnees_gps": [41.7781165339, 9.10923214631], "code_commune_insee": "2A278"}, "geometry": {"type": "Point", "coordinates": [9.10923214631, 41.7781165339]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb93cbad989f1a8605e0a28b2d431cbdc44e0db", "fields": {"nom_de_la_commune": "STE LUCIE DE TALLANO", "libell_d_acheminement": "STE LUCIE DE TALLANO", "code_postal": "20112", "coordonnees_gps": [41.6785766285, 9.05986973955], "code_commune_insee": "2A308"}, "geometry": {"type": "Point", "coordinates": [9.05986973955, 41.6785766285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "24b55cbd4eb76a5cabfd3d6734a891a2dd6ce6cc", "fields": {"nom_de_la_commune": "ZEVACO", "libell_d_acheminement": "ZEVACO", "code_postal": "20173", "coordonnees_gps": [41.8873667823, 9.0452386996], "code_commune_insee": "2A358"}, "geometry": {"type": "Point", "coordinates": [9.0452386996, 41.8873667823]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8194ec82c6588a8d13ddb11c4543d4d6cff73d45", "fields": {"code_postal": "20144", "code_commune_insee": "2A362", "libell_d_acheminement": "ZONZA", "ligne_5": "STE LUCIE DE PORTO VECCHIO", "nom_de_la_commune": "ZONZA", "coordonnees_gps": [41.7212935715, 9.26676147812]}, "geometry": {"type": "Point", "coordinates": [9.26676147812, 41.7212935715]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc923fb0d23f409a2cc914c944388477284d9a15", "fields": {"nom_de_la_commune": "ZOZA", "libell_d_acheminement": "ZOZA", "code_postal": "20112", "coordonnees_gps": [41.6785766285, 9.05986973955], "code_commune_insee": "2A363"}, "geometry": {"type": "Point", "coordinates": [9.05986973955, 41.6785766285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a5e0735d78026736daa896dd730a79e993f67e70", "fields": {"nom_de_la_commune": "AGHIONE", "libell_d_acheminement": "AGHIONE", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B002"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "65074f745e9e04b8bc01593fd2dfc10794046da4", "fields": {"nom_de_la_commune": "AITI", "libell_d_acheminement": "AITI", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B003"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77f8bae43b218f53eb7dee689c7023b1b9705972", "fields": {"code_postal": "20270", "code_commune_insee": "2B009", "libell_d_acheminement": "ALERIA", "ligne_5": "VACAJA", "nom_de_la_commune": "ALERIA", "coordonnees_gps": [42.1585517957, 9.43977225577]}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b10f3b80257dc31713336fd53c1ae059d5468388", "fields": {"nom_de_la_commune": "ALGAJOLA", "libell_d_acheminement": "ALGAJOLA", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B010"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9aecbb81a6d9aa77d20ab78151ad3879bceca0db", "fields": {"nom_de_la_commune": "AMPRIANI", "libell_d_acheminement": "AMPRIANI", "code_postal": "20272", "coordonnees_gps": [42.274903778, 9.36318949568], "code_commune_insee": "2B015"}, "geometry": {"type": "Point", "coordinates": [9.36318949568, 42.274903778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "246274c0ec28e968e80c28ddf343d0211f2ba994", "fields": {"nom_de_la_commune": "BARRETTALI", "libell_d_acheminement": "BARRETTALI", "code_postal": "20228", "coordonnees_gps": [42.8844689798, 9.39824491548], "code_commune_insee": "2B030"}, "geometry": {"type": "Point", "coordinates": [9.39824491548, 42.8844689798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84605e4ab36cea55cb786e7eab928f8bbad45a5b", "fields": {"code_postal": "20200", "code_commune_insee": "2B033", "libell_d_acheminement": "BASTIA", "ligne_5": "CARDO", "nom_de_la_commune": "BASTIA", "coordonnees_gps": [42.7169845542, 9.42659304409]}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41184c42ae3df2ef00e4d1c540a81c29ab724735", "fields": {"nom_de_la_commune": "BASTIA", "libell_d_acheminement": "BASTIA", "code_postal": "20600", "coordonnees_gps": [42.6694587934, 9.42115967008], "code_commune_insee": "2B033"}, "geometry": {"type": "Point", "coordinates": [9.42115967008, 42.6694587934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bde7f636178204d92617d3f6ef7766be99fecf65", "fields": {"nom_de_la_commune": "BIGUGLIA", "libell_d_acheminement": "BIGUGLIA", "code_postal": "20620", "coordonnees_gps": [42.6164230367, 9.44067026759], "code_commune_insee": "2B037"}, "geometry": {"type": "Point", "coordinates": [9.44067026759, 42.6164230367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9b58c8914bddb12d393c200ab5eb2bef073c7dbe", "fields": {"nom_de_la_commune": "CAMPI", "libell_d_acheminement": "CAMPI", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B053"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc4914bc2f5959eb79dccefed4c109c5f9662c2", "fields": {"nom_de_la_commune": "CANALE DI VERDE", "libell_d_acheminement": "CANALE DI VERDE", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B057"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1d6c050e0ebaf0951312dbbe39a1e3cbc77cd4ca", "fields": {"nom_de_la_commune": "CASALTA", "libell_d_acheminement": "CASALTA", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B072"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19ad6c00e8940fadad281a8c88093ac2c0937b5e", "fields": {"nom_de_la_commune": "CASTIFAO", "libell_d_acheminement": "CASTIFAO", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B080"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c36794490f7f26b9599389aa57f7b9cb49394277", "fields": {"nom_de_la_commune": "CORTE", "libell_d_acheminement": "CORTE", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B096"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ccf8a74a4cfa5eb444afe991ded43674b40c790a", "fields": {"nom_de_la_commune": "COSTA", "libell_d_acheminement": "COSTA", "code_postal": "20226", "coordonnees_gps": [42.6078256045, 9.04614705699], "code_commune_insee": "2B097"}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a9605f9d2233be1727b8bd3f03f304b61f2296f", "fields": {"nom_de_la_commune": "ERONE", "libell_d_acheminement": "ERONE", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B106"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1311b971960df9081eae65b6013230f5bd455455", "fields": {"nom_de_la_commune": "FELICETO", "libell_d_acheminement": "FELICETO", "code_postal": "20225", "coordonnees_gps": [42.5548622449, 8.91822255191], "code_commune_insee": "2B112"}, "geometry": {"type": "Point", "coordinates": [8.91822255191, 42.5548622449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e24b8e3b3c6d7ac76f80095fef9f5a20018dbe46", "fields": {"nom_de_la_commune": "GALERIA", "libell_d_acheminement": "GALERIA", "code_postal": "20245", "coordonnees_gps": [42.3904066097, 8.75959311785], "code_commune_insee": "2B121"}, "geometry": {"type": "Point", "coordinates": [8.75959311785, 42.3904066097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9d5ca9ea8dec783637695c924578829b2a49d63", "fields": {"nom_de_la_commune": "GHISONACCIA", "libell_d_acheminement": "GHISONACCIA", "code_postal": "20240", "coordonnees_gps": [41.9691281261, 9.34452761596], "code_commune_insee": "2B123"}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e0983f5709a82334a53a3dfaf25d2e6e06d2b369", "fields": {"nom_de_la_commune": "GIOCATOJO", "libell_d_acheminement": "GIOCATOJO", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B125"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba0f0b23b0058ff328fecaf43c520c8f789a1c7d", "fields": {"nom_de_la_commune": "GIUNCAGGIO", "libell_d_acheminement": "GIUNCAGGIO", "code_postal": "20251", "coordonnees_gps": [42.2097375121, 9.34194965175], "code_commune_insee": "2B126"}, "geometry": {"type": "Point", "coordinates": [9.34194965175, 42.2097375121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83727d9b1685d96fdc7454261602197c9ed1fcf0", "fields": {"nom_de_la_commune": "LAMA", "libell_d_acheminement": "LAMA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B136"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2033db17731dc728b52051c116db77ac63291888", "fields": {"nom_de_la_commune": "LAVATOGGIO", "libell_d_acheminement": "LAVATOGGIO", "code_postal": "20225", "coordonnees_gps": [42.5548622449, 8.91822255191], "code_commune_insee": "2B138"}, "geometry": {"type": "Point", "coordinates": [8.91822255191, 42.5548622449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0357aeaa33b32733c0d9008dc5b46c8055fa112", "fields": {"nom_de_la_commune": "LUGO DI NAZZA", "libell_d_acheminement": "LUGO DI NAZZA", "code_postal": "20240", "coordonnees_gps": [41.9691281261, 9.34452761596], "code_commune_insee": "2B149"}, "geometry": {"type": "Point", "coordinates": [9.34452761596, 41.9691281261]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8ba60df986ff907e744fe6fb2db927cee6763eb", "fields": {"nom_de_la_commune": "LUMIO", "libell_d_acheminement": "LUMIO", "code_postal": "20260", "coordonnees_gps": [42.4957918886, 8.79984001369], "code_commune_insee": "2B150"}, "geometry": {"type": "Point", "coordinates": [8.79984001369, 42.4957918886]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ea78ab7d86cbf2e49871ac36925e471b28476f", "fields": {"nom_de_la_commune": "MERIA", "libell_d_acheminement": "MERIA", "code_postal": "20287", "coordonnees_gps": [42.9199985986, 9.43679652521], "code_commune_insee": "2B159"}, "geometry": {"type": "Point", "coordinates": [9.43679652521, 42.9199985986]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2a1dcaa076b1609854dbe3f95ac43159ea0a131", "fields": {"nom_de_la_commune": "MOLTIFAO", "libell_d_acheminement": "MOLTIFAO", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B162"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc29e0b862f719234ca9ad76ed9d43a337f87eba", "fields": {"code_postal": "20214", "code_commune_insee": "2B167", "libell_d_acheminement": "MONTEGROSSO", "ligne_5": "MONTEMAGGIORE", "nom_de_la_commune": "MONTEGROSSO", "coordonnees_gps": [42.4880074487, 8.81568831698]}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a060ddd7a568642a1eb1a7d7fd58514db0edf7c3", "fields": {"nom_de_la_commune": "MOROSAGLIA", "libell_d_acheminement": "MOROSAGLIA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B169"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c16fbeeff24ecfae114b8cdde5dc87e030c3f728", "fields": {"nom_de_la_commune": "MURATO", "libell_d_acheminement": "MURATO", "code_postal": "20239", "coordonnees_gps": [42.5744706695, 9.35222332831], "code_commune_insee": "2B172"}, "geometry": {"type": "Point", "coordinates": [9.35222332831, 42.5744706695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b9769ac33393dce6f1a1a29bdb9d404b6278d0d", "fields": {"nom_de_la_commune": "NOCETA", "libell_d_acheminement": "NOCETA", "code_postal": "20242", "coordonnees_gps": [42.1615851652, 9.27345254485], "code_commune_insee": "2B177"}, "geometry": {"type": "Point", "coordinates": [9.27345254485, 42.1615851652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "84eebdbb29d8283b5459b06906faba94aaf9d7ec", "fields": {"nom_de_la_commune": "OMESSA", "libell_d_acheminement": "OMESSA", "code_postal": "20236", "coordonnees_gps": [42.3752519871, 9.15942302041], "code_commune_insee": "2B193"}, "geometry": {"type": "Point", "coordinates": [9.15942302041, 42.3752519871]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a31df0b9bb5bfb8a68b75577652b816df79cf302", "fields": {"nom_de_la_commune": "PANCHERACCIA", "libell_d_acheminement": "PANCHERACCIA", "code_postal": "20251", "coordonnees_gps": [42.2097375121, 9.34194965175], "code_commune_insee": "2B201"}, "geometry": {"type": "Point", "coordinates": [9.34194965175, 42.2097375121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3b5d90c27bb8c8f747b97d789e9179b003e39f7d", "fields": {"nom_de_la_commune": "PIAZZALI", "libell_d_acheminement": "PIAZZALI", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B216"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c6d593f4200bbf73f718aadb6d20b06836778a4a", "fields": {"nom_de_la_commune": "PIAZZOLE", "libell_d_acheminement": "PIAZZOLE", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B217"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a826038ce9742bbc250144a74027e7b7cb7fa277", "fields": {"nom_de_la_commune": "PIETRICAGGIO", "libell_d_acheminement": "PIETRICAGGIO", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B227"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "556da33f35c71d3ebedd63654468e9a3935419b5", "fields": {"nom_de_la_commune": "PIETROSO", "libell_d_acheminement": "PIETROSO", "code_postal": "20242", "coordonnees_gps": [42.1615851652, 9.27345254485], "code_commune_insee": "2B229"}, "geometry": {"type": "Point", "coordinates": [9.27345254485, 42.1615851652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab73548ad46e3f201d5a39e57bd28fa93418cd9c", "fields": {"nom_de_la_commune": "PIOGGIOLA", "libell_d_acheminement": "PIOGGIOLA", "code_postal": "20259", "coordonnees_gps": [42.5155262709, 9.0055257703], "code_commune_insee": "2B235"}, "geometry": {"type": "Point", "coordinates": [9.0055257703, 42.5155262709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13eb02d7ba2a3aa71a7f1534481135532167a01a", "fields": {"nom_de_la_commune": "POGGIO MEZZANA", "libell_d_acheminement": "POGGIO MEZZANA", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B242"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e9b5f5ed53d8601b3f77571d99ef6d8c4374578", "fields": {"nom_de_la_commune": "PRUNELLI DI FIUMORBO", "libell_d_acheminement": "PRUNELLI DI FIUMORBO", "code_postal": "20243", "coordonnees_gps": [41.9932570337, 9.30778955947], "code_commune_insee": "2B251"}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d96c797201f951adbff75c6b91c4bd856d72f9b", "fields": {"code_postal": "20243", "code_commune_insee": "2B251", "libell_d_acheminement": "PRUNELLI DI FIUMORBO", "ligne_5": "MORTA", "nom_de_la_commune": "PRUNELLI DI FIUMORBO", "coordonnees_gps": [41.9932570337, 9.30778955947]}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b79d10619b206b1156d2e15ffb842df555ba4b47", "fields": {"nom_de_la_commune": "RAPALE", "libell_d_acheminement": "RAPALE", "code_postal": "20246", "coordonnees_gps": [42.651217902, 9.20568525518], "code_commune_insee": "2B257"}, "geometry": {"type": "Point", "coordinates": [9.20568525518, 42.651217902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eb8afd5363f27fa7f5f5ec1ebcfb1f7e68d5f599", "fields": {"nom_de_la_commune": "RUTALI", "libell_d_acheminement": "RUTALI", "code_postal": "20239", "coordonnees_gps": [42.5744706695, 9.35222332831], "code_commune_insee": "2B265"}, "geometry": {"type": "Point", "coordinates": [9.35222332831, 42.5744706695]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96b9fbdf40b66b3fd1b0e8a9dd590a78bea9cf44", "fields": {"nom_de_la_commune": "SCATA", "libell_d_acheminement": "SCATA", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B273"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee961ca2003198559fcfa13dfc512570c54e3b64", "fields": {"nom_de_la_commune": "SERMANO", "libell_d_acheminement": "SERMANO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B275"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "519a395493449b292e17c992279bcb9a71bb044e", "fields": {"nom_de_la_commune": "SERRA DI FIUMORBO", "libell_d_acheminement": "SERRA DI FIUMORBO", "code_postal": "20243", "coordonnees_gps": [41.9932570337, 9.30778955947], "code_commune_insee": "2B277"}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3941cd03a6157244eb7910a23bbc0570503c1ca2", "fields": {"nom_de_la_commune": "SISCO", "libell_d_acheminement": "SISCO", "code_postal": "20233", "coordonnees_gps": [42.8294989749, 9.4407054094], "code_commune_insee": "2B281"}, "geometry": {"type": "Point", "coordinates": [9.4407054094, 42.8294989749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5660262631b6fcc6ca0f540a2fd7a2da8733266b", "fields": {"nom_de_la_commune": "SOVERIA", "libell_d_acheminement": "SOVERIA", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B289"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70922a2074e51ac6168cd0bd3db11f312a84b59d", "fields": {"nom_de_la_commune": "SANT ANTONINO", "libell_d_acheminement": "SANT ANTONINO", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B296"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d0941143ab6ee2ae12c3bd3683ff9b296c590469", "fields": {"nom_de_la_commune": "ST FLORENT", "libell_d_acheminement": "ST FLORENT", "code_postal": "20217", "coordonnees_gps": [42.7166963955, 9.26424546036], "code_commune_insee": "2B298"}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f271c14763b5b1d5f884a6992ab123a8fbfb4c01", "fields": {"nom_de_la_commune": "SAN GIULIANO", "libell_d_acheminement": "SAN GIULIANO", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B303"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2dcae0af98b14d1213304f3f6a6d70df51fa309", "fields": {"nom_de_la_commune": "SANTA REPARATA DI MORIANI", "libell_d_acheminement": "SANTA REPARATA DI MORIANI", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B317"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "199171c76f8bdd200681eb1407292198cb3de430", "fields": {"nom_de_la_commune": "VALLICA", "libell_d_acheminement": "VALLICA", "code_postal": "20259", "coordonnees_gps": [42.5155262709, 9.0055257703], "code_commune_insee": "2B339"}, "geometry": {"type": "Point", "coordinates": [9.0055257703, 42.5155262709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b407c4553a66dab31dc2224766717f3cce5833fc", "fields": {"code_postal": "20290", "code_commune_insee": "2B355", "libell_d_acheminement": "VOLPAJOLA", "ligne_5": "BARCHETTA", "nom_de_la_commune": "VOLPAJOLA", "coordonnees_gps": [42.532413301, 9.42098474839]}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c9256ebf6b7c9f80da876d7619d90174670272a", "fields": {"nom_de_la_commune": "ZALANA", "libell_d_acheminement": "ZALANA", "code_postal": "20272", "coordonnees_gps": [42.274903778, 9.36318949568], "code_commune_insee": "2B356"}, "geometry": {"type": "Point", "coordinates": [9.36318949568, 42.274903778]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "420cd7ce031ceb168382c613cc77d9b7f1a66a2f", "fields": {"nom_de_la_commune": "ST BRICE DE LANDELLES", "libell_d_acheminement": "ST BRICE DE LANDELLES", "code_postal": "50730", "coordonnees_gps": [48.5520322078, -1.12375344809], "code_commune_insee": "50452"}, "geometry": {"type": "Point", "coordinates": [-1.12375344809, 48.5520322078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5eac08f6131da2088f9e991eac6102a74949429", "fields": {"nom_de_la_commune": "STE COLOMBE", "libell_d_acheminement": "STE COLOMBE", "code_postal": "50390", "coordonnees_gps": [49.4011189939, -1.55264121465], "code_commune_insee": "50457"}, "geometry": {"type": "Point", "coordinates": [-1.55264121465, 49.4011189939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a01b2f218a20f72444f3b0d71eabe7129e7c298", "fields": {"nom_de_la_commune": "ST CYR", "libell_d_acheminement": "ST CYR", "code_postal": "50310", "coordonnees_gps": [49.4817959888, -1.34801169706], "code_commune_insee": "50461"}, "geometry": {"type": "Point", "coordinates": [-1.34801169706, 49.4817959888]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d40f462b0366e042f585a1af62f62faba6167f22", "fields": {"nom_de_la_commune": "ST CYR DU BAILLEUL", "libell_d_acheminement": "ST CYR DU BAILLEUL", "code_postal": "50720", "coordonnees_gps": [48.5983926972, -0.815007592926], "code_commune_insee": "50462"}, "geometry": {"type": "Point", "coordinates": [-0.815007592926, 48.5983926972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "374a7afda90ac0bd0ccb5cd9ae29d274dc90ac79", "fields": {"nom_de_la_commune": "ST EBREMOND DE BONFOSSE", "libell_d_acheminement": "ST EBREMOND DE BONFOSSE", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50465"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f6ffcbaa63648c2f84edb869e9d860f83055c31", "fields": {"nom_de_la_commune": "STE GENEVIEVE", "libell_d_acheminement": "STE GENEVIEVE", "code_postal": "50760", "coordonnees_gps": [49.6491008293, -1.28632343012], "code_commune_insee": "50469"}, "geometry": {"type": "Point", "coordinates": [-1.28632343012, 49.6491008293]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa26fa86aa618bbfcbad1264704e60d73e4b790", "fields": {"nom_de_la_commune": "ST GEORGES DE ROUELLEY", "libell_d_acheminement": "ST GEORGES DE ROUELLEY", "code_postal": "50720", "coordonnees_gps": [48.5983926972, -0.815007592926], "code_commune_insee": "50474"}, "geometry": {"type": "Point", "coordinates": [-0.815007592926, 48.5983926972]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2087c05ea9c21d3866743f4ad45fb3529450128", "fields": {"nom_de_la_commune": "ST GERMAIN DES VAUX", "libell_d_acheminement": "ST GERMAIN DES VAUX", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50477"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "743418540c6782633d6249d2fcfed91b4a512982", "fields": {"nom_de_la_commune": "ST GERMAIN SUR AY", "libell_d_acheminement": "ST GERMAIN SUR AY", "code_postal": "50430", "coordonnees_gps": [49.238207059, -1.53592999138], "code_commune_insee": "50481"}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a55a3aebc79cd14d9b83a49c86f7fc93a2f2799c", "fields": {"nom_de_la_commune": "ST GILLES", "libell_d_acheminement": "ST GILLES", "code_postal": "50180", "coordonnees_gps": [49.1138081989, -1.15891000484], "code_commune_insee": "50483"}, "geometry": {"type": "Point", "coordinates": [-1.15891000484, 49.1138081989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf403729eddf76f270a42619e992b9f2a3d2bb9c", "fields": {"nom_de_la_commune": "ST JAMES", "libell_d_acheminement": "ST JAMES", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50487"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa94cf4108ae7b7239ddc25111b37214935b12cb", "fields": {"nom_de_la_commune": "ST JEAN DE LA HAIZE", "libell_d_acheminement": "ST JEAN DE LA HAIZE", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50489"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c490f11df28c3bbea5ea2a1afc7e70e5167050c", "fields": {"nom_de_la_commune": "ST JEAN DE LA RIVIERE", "libell_d_acheminement": "ST JEAN DE LA RIVIERE", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50490"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8c9a000758fc244bed5082a262f236c71de0385", "fields": {"code_postal": "50810", "code_commune_insee": "50492", "libell_d_acheminement": "ST JEAN D ELLE", "ligne_5": "VIDOUVILLE", "nom_de_la_commune": "ST JEAN D ELLE", "coordonnees_gps": [49.1141244901, -0.965580935712]}, "geometry": {"type": "Point", "coordinates": [-0.965580935712, 49.1141244901]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f5793fc772e9f5657452f00137bd4d3ae2c021f6", "fields": {"nom_de_la_commune": "ST JEAN DES CHAMPS", "libell_d_acheminement": "ST JEAN DES CHAMPS", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50493"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1897dc8cb497343437ae9ea82a9cdfceed9a4860", "fields": {"nom_de_la_commune": "ST LOUP", "libell_d_acheminement": "ST LOUP", "code_postal": "50300", "coordonnees_gps": [48.685966748, -1.33315865796], "code_commune_insee": "50505"}, "geometry": {"type": "Point", "coordinates": [-1.33315865796, 48.685966748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7dd106dfef571edf4e2064407311679447208a6", "fields": {"nom_de_la_commune": "ST MARTIN DE BONFOSSE", "libell_d_acheminement": "ST MARTIN DE BONFOSSE", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50512"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7d679ce5b31f9e21f3887230c740c534fa115b3", "fields": {"nom_de_la_commune": "CHAULIEU", "libell_d_acheminement": "CHAULIEU", "code_postal": "50150", "coordonnees_gps": [48.7316763227, -0.921013476497], "code_commune_insee": "50514"}, "geometry": {"type": "Point", "coordinates": [-0.921013476497, 48.7316763227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7814d24892935a31cb84d69c26f9e54bb0ddb165", "fields": {"nom_de_la_commune": "ST MARTIN LE BOUILLANT", "libell_d_acheminement": "ST MARTIN LE BOUILLANT", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50518"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b0e9f6ecbd889aaf09c885303d4f1feb6ff62656", "fields": {"nom_de_la_commune": "ST MAURICE EN COTENTIN", "libell_d_acheminement": "ST MAURICE EN COTENTIN", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50522"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825db6683bc81a5a7a338d6e90b0b34bdf6cb662", "fields": {"nom_de_la_commune": "STE MERE EGLISE", "libell_d_acheminement": "STE MERE EGLISE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50523"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "148d14188cd3403281841a00358eb443a047e8bd", "fields": {"code_postal": "50480", "code_commune_insee": "50523", "libell_d_acheminement": "STE MERE EGLISE", "ligne_5": "BEUZEVILLE AU PLAIN", "nom_de_la_commune": "STE MERE EGLISE", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01695412e29c21304b613b556818a511e068a9bb", "fields": {"code_postal": "50480", "code_commune_insee": "50523", "libell_d_acheminement": "STE MERE EGLISE", "ligne_5": "CHEF DU PONT", "nom_de_la_commune": "STE MERE EGLISE", "coordonnees_gps": [49.3873274506, -1.27231907432]}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fcad06d868b2af15a7ab89e397da8a9d88ad0116", "fields": {"nom_de_la_commune": "ST PIERRE EGLISE", "libell_d_acheminement": "ST PIERRE EGLISE", "code_postal": "50330", "coordonnees_gps": [49.6542463147, -1.41392167806], "code_commune_insee": "50539"}, "geometry": {"type": "Point", "coordinates": [-1.41392167806, 49.6542463147]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe53a666530c86ff0df30626388ff6316a05a479", "fields": {"nom_de_la_commune": "ST SAUVEUR LA POMMERAYE", "libell_d_acheminement": "ST SAUVEUR LA POMMERAYE", "code_postal": "50510", "coordonnees_gps": [48.8892381403, -1.44244421286], "code_commune_insee": "50549"}, "geometry": {"type": "Point", "coordinates": [-1.44244421286, 48.8892381403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "92a5f40a3f8aebfe702d2e283b9048302119b8d3", "fields": {"nom_de_la_commune": "STE SUZANNE SUR VIRE", "libell_d_acheminement": "STE SUZANNE SUR VIRE", "code_postal": "50750", "coordonnees_gps": [49.0496336445, -1.17517736978], "code_commune_insee": "50556"}, "geometry": {"type": "Point", "coordinates": [-1.17517736978, 49.0496336445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "17f34b2f12829895f9b9218a19178b4e9f1349a2", "fields": {"code_postal": "50550", "code_commune_insee": "50562", "libell_d_acheminement": "ST VAAST LA HOUGUE", "ligne_5": "ILE TATIHOU", "nom_de_la_commune": "ST VAAST LA HOUGUE", "coordonnees_gps": [49.5998454115, -1.27309328299]}, "geometry": {"type": "Point", "coordinates": [-1.27309328299, 49.5998454115]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f12d93efe9f29fe2442ffd7d7d33dd60f83a7dc3", "fields": {"nom_de_la_commune": "SEBEVILLE", "libell_d_acheminement": "SEBEVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50571"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8f92613b1559d757fc417a1222746cff7c40e5f", "fields": {"nom_de_la_commune": "SENOVILLE", "libell_d_acheminement": "SENOVILLE", "code_postal": "50270", "coordonnees_gps": [49.4113682541, -1.75643508208], "code_commune_insee": "50572"}, "geometry": {"type": "Point", "coordinates": [-1.75643508208, 49.4113682541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "692704ac4369f3fed97b4057289ef3c9ba94f4fd", "fields": {"nom_de_la_commune": "TANIS", "libell_d_acheminement": "TANIS", "code_postal": "50170", "coordonnees_gps": [48.5681356237, -1.47762368689], "code_commune_insee": "50589"}, "geometry": {"type": "Point", "coordinates": [-1.47762368689, 48.5681356237]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2be31e3cd40699ad3cf9a810b719f8b8136ab1d1", "fields": {"nom_de_la_commune": "LE TANU", "libell_d_acheminement": "LE TANU", "code_postal": "50320", "coordonnees_gps": [48.8090574287, -1.40357564145], "code_commune_insee": "50590"}, "geometry": {"type": "Point", "coordinates": [-1.40357564145, 48.8090574287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ddf8c30efc0457895c08b30b88f06358419d3ef", "fields": {"code_postal": "50640", "code_commune_insee": "50591", "libell_d_acheminement": "LE TEILLEUL", "ligne_5": "HEUSSE", "nom_de_la_commune": "LE TEILLEUL", "coordonnees_gps": [48.5293564364, -0.941843015494]}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5a273a96d7e6873807953833d8dff54c27351ad", "fields": {"code_postal": "50640", "code_commune_insee": "50591", "libell_d_acheminement": "LE TEILLEUL", "ligne_5": "STE MARIE DU BOIS", "nom_de_la_commune": "LE TEILLEUL", "coordonnees_gps": [48.5293564364, -0.941843015494]}, "geometry": {"type": "Point", "coordinates": [-0.941843015494, 48.5293564364]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b45969f2bde48b403cf9290127fc72d4f1c3106", "fields": {"code_postal": "50420", "code_commune_insee": "50592", "libell_d_acheminement": "TESSY BOCAGE", "ligne_5": "FERVACHES", "nom_de_la_commune": "TESSY BOCAGE", "coordonnees_gps": [48.9843046983, -1.06508907903]}, "geometry": {"type": "Point", "coordinates": [-1.06508907903, 48.9843046983]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d04f1bead8012e1a24e1716e62fa77e976e8945e", "fields": {"nom_de_la_commune": "TORIGNY LES VILLES", "libell_d_acheminement": "TORIGNY LES VILLES", "code_postal": "50160", "coordonnees_gps": [49.0498306608, -0.92753197973], "code_commune_insee": "50601"}, "geometry": {"type": "Point", "coordinates": [-0.92753197973, 49.0498306608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e421dae9eb109e8b937ae238248a499eb6d4dd5a", "fields": {"nom_de_la_commune": "TURQUEVILLE", "libell_d_acheminement": "TURQUEVILLE", "code_postal": "50480", "coordonnees_gps": [49.3873274506, -1.27231907432], "code_commune_insee": "50609"}, "geometry": {"type": "Point", "coordinates": [-1.27231907432, 49.3873274506]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c83e3f9d5df221f9e90f1ad3b8ca0b0a2140796", "fields": {"nom_de_la_commune": "VALOGNES", "libell_d_acheminement": "VALOGNES", "code_postal": "50700", "coordonnees_gps": [49.5257666126, -1.48649519632], "code_commune_insee": "50615"}, "geometry": {"type": "Point", "coordinates": [-1.48649519632, 49.5257666126]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "07259017432747f875601c182c34e828ab61b8f5", "fields": {"nom_de_la_commune": "VAUVILLE", "libell_d_acheminement": "VAUVILLE", "code_postal": "50440", "coordonnees_gps": [49.6545247743, -1.83239986838], "code_commune_insee": "50623"}, "geometry": {"type": "Point", "coordinates": [-1.83239986838, 49.6545247743]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46db5ef74c1cfbc44f7248e746fb42a9bc3c0197", "fields": {"nom_de_la_commune": "LA VENDELEE", "libell_d_acheminement": "LA VENDELEE", "code_postal": "50200", "coordonnees_gps": [49.0681244032, -1.4630459353], "code_commune_insee": "50624"}, "geometry": {"type": "Point", "coordinates": [-1.4630459353, 49.0681244032]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9e44ca2be82e65a2bf52dda7c6104f8508cd688d", "fields": {"nom_de_la_commune": "VERGONCEY", "libell_d_acheminement": "VERGONCEY", "code_postal": "50240", "coordonnees_gps": [48.5346671898, -1.33682462568], "code_commune_insee": "50627"}, "geometry": {"type": "Point", "coordinates": [-1.33682462568, 48.5346671898]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "772203f6da317d929316ee0f8365e36997035311", "fields": {"nom_de_la_commune": "VESLY", "libell_d_acheminement": "VESLY", "code_postal": "50430", "coordonnees_gps": [49.238207059, -1.53592999138], "code_commune_insee": "50629"}, "geometry": {"type": "Point", "coordinates": [-1.53592999138, 49.238207059]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a44e543e24c13dc5f700f5db01f7d511c0c5c8d6", "fields": {"nom_de_la_commune": "VILLEDIEU LES POELES ROUFFIGNY", "libell_d_acheminement": "VILLEDIEU LES POELES ROUFFIGNY", "code_postal": "50800", "coordonnees_gps": [48.8292712717, -1.21839643313], "code_commune_insee": "50639"}, "geometry": {"type": "Point", "coordinates": [-1.21839643313, 48.8292712717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df3816400d581facee4de8fe902f727fcd79dee5", "fields": {"nom_de_la_commune": "VIRANDEVILLE", "libell_d_acheminement": "VIRANDEVILLE", "code_postal": "50690", "coordonnees_gps": [49.5875687097, -1.69180560316], "code_commune_insee": "50643"}, "geometry": {"type": "Point", "coordinates": [-1.69180560316, 49.5875687097]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a2914515ea263e09917aeaac48263e404da5d3e6", "fields": {"nom_de_la_commune": "ALLEMANCHE LAUNAY ET SOYER", "libell_d_acheminement": "ALLEMANCHE LAUNAY ET SOYER", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51004"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4575d7ba6d9c079845e08c0a89a60aa94bc8884", "fields": {"nom_de_la_commune": "ANGLUZELLES ET COURCELLES", "libell_d_acheminement": "ANGLUZELLES ET COURCELLES", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51010"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dad66b6fefa637d5ac9d03a7dd60a9c7992506f2", "fields": {"nom_de_la_commune": "ARGERS", "libell_d_acheminement": "ARGERS", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51015"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0390dae1a449939b6799a60971e05caf9135a0b8", "fields": {"nom_de_la_commune": "ARRIGNY", "libell_d_acheminement": "ARRIGNY", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51016"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f30c27a4d660225570d5c7cdf12db81b93e76826", "fields": {"code_postal": "51160", "code_commune_insee": "51030", "libell_d_acheminement": "AY CHAMPAGNE", "ligne_5": "MAREUIL SUR AY", "nom_de_la_commune": "AY CHAMPAGNE", "coordonnees_gps": [49.092104642, 4.00815229027]}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c720bc6bb06b04e8bdbf8f113ede9be352f0e0f6", "fields": {"nom_de_la_commune": "BAGNEUX", "libell_d_acheminement": "BAGNEUX", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51032"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3a93bd2a099c90d28b504fd7b9d6035074f7b5f", "fields": {"nom_de_la_commune": "BASLIEUX LES FISMES", "libell_d_acheminement": "BASLIEUX LES FISMES", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51037"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c59e06e096119ca68f0991cca173252457d16215", "fields": {"nom_de_la_commune": "BASSU", "libell_d_acheminement": "BASSU", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51039"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c26829a08560993bd5335ffa29ea5972901f9ba7", "fields": {"nom_de_la_commune": "BAUDEMENT", "libell_d_acheminement": "BAUDEMENT", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51041"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ea73a61ea9a8d871caca42d92b35f68c0354996", "fields": {"nom_de_la_commune": "BAZANCOURT", "libell_d_acheminement": "BAZANCOURT", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51043"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3548326daed686258dc785fb8873ee66509572e", "fields": {"nom_de_la_commune": "BEAUNAY", "libell_d_acheminement": "BEAUNAY", "code_postal": "51270", "coordonnees_gps": [48.9022735758, 3.78172379216], "code_commune_insee": "51045"}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6eeb90c8bf910b3653626cbeeac019c6daa07c0", "fields": {"nom_de_la_commune": "BELVAL SOUS CHATILLON", "libell_d_acheminement": "BELVAL SOUS CHATILLON", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51048"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4884f4c981a704c4dc4dd12980003a37fd833064", "fields": {"nom_de_la_commune": "BERGERES LES VERTUS", "libell_d_acheminement": "BERGERES LES VERTUS", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51049"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c663f4ad2923a503327ed1f0f8f1f1fb4b8669f0", "fields": {"nom_de_la_commune": "BERZIEUX", "libell_d_acheminement": "BERZIEUX", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51053"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7078b10638b3a42ed64723b380685a5bb105c7e2", "fields": {"nom_de_la_commune": "BETHON", "libell_d_acheminement": "BETHON", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51056"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b14a8bcd30f29c0e6399d55b6f8f3ae42ef891a", "fields": {"nom_de_la_commune": "BEZANNES", "libell_d_acheminement": "BEZANNES", "code_postal": "51430", "coordonnees_gps": [49.2303011179, 3.98992981852], "code_commune_insee": "51058"}, "geometry": {"type": "Point", "coordinates": [3.98992981852, 49.2303011179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33bea4f3dfd83359c82818d0d9614a5a7d3ed30d", "fields": {"nom_de_la_commune": "BIGNICOURT SUR SAULX", "libell_d_acheminement": "BIGNICOURT SUR SAULX", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51060"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6936c1463ec6571cea32412048a1ac7fe0c732dc", "fields": {"nom_de_la_commune": "BLACY", "libell_d_acheminement": "BLACY", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51065"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9c52049ff1c668de81c5431d41da97f7289378dd", "fields": {"nom_de_la_commune": "BOUCHY ST GENEST", "libell_d_acheminement": "BOUCHY ST GENEST", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51071"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a227e946fca1f6873b2fec94ef8cf3284045d5d", "fields": {"nom_de_la_commune": "BOUILLY", "libell_d_acheminement": "BOUILLY", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51072"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "734ddb2752a96aff3112f56e2cba84930d109efb", "fields": {"nom_de_la_commune": "BOUVANCOURT", "libell_d_acheminement": "BOUVANCOURT", "code_postal": "51140", "coordonnees_gps": [49.3054268397, 3.83301253147], "code_commune_insee": "51077"}, "geometry": {"type": "Point", "coordinates": [3.83301253147, 49.3054268397]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6d925da5cc9ca12154c53d7e9030a114b37eb5c5", "fields": {"nom_de_la_commune": "LE BREUIL", "libell_d_acheminement": "LE BREUIL", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51085"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc150161427f3fbe74d1720ec2632846dd3c2977", "fields": {"nom_de_la_commune": "BROUSSY LE GRAND", "libell_d_acheminement": "BROUSSY LE GRAND", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51090"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "082f98b33b7bc44c460e5a5b4d5b5ca04204b05e", "fields": {"nom_de_la_commune": "BRUSSON", "libell_d_acheminement": "BRUSSON", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51094"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b3444964a21bd9723e8364977c61c75b47c047", "fields": {"nom_de_la_commune": "CAUROY LES HERMONVILLE", "libell_d_acheminement": "CAUROY LES HERMONVILLE", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51102"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e160b48de5502844a1c897a918803444851aad94", "fields": {"nom_de_la_commune": "LA CELLE SOUS CHANTEMERLE", "libell_d_acheminement": "LA CELLE SOUS CHANTEMERLE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51103"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c3724a43608b48b3e4b01ba0dfabbb874600dee6", "fields": {"nom_de_la_commune": "CHAMERY", "libell_d_acheminement": "CHAMERY", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51112"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9657898b8347e273d7e61d35f16250b8a30f3cca", "fields": {"nom_de_la_commune": "CHAMPLAT ET BOUJACOURT", "libell_d_acheminement": "CHAMPLAT ET BOUJACOURT", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51120"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5b2fc0b3c71cc757e45a37abbb9f4f9ba8e79c88", "fields": {"nom_de_la_commune": "CHANGY", "libell_d_acheminement": "CHANGY", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51122"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d85ee6fe83123e49fe19767d535eded7c6541266", "fields": {"nom_de_la_commune": "CHAPELAINE", "libell_d_acheminement": "CHAPELAINE", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51125"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2a54f346f972923f6f778a4008521605e237f62a", "fields": {"nom_de_la_commune": "LA CHAPELLE FELCOURT", "libell_d_acheminement": "LA CHAPELLE FELCOURT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51126"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f6179730dfb287fb5be55880e607cbbca965804", "fields": {"nom_de_la_commune": "LA CHAPELLE LASSON", "libell_d_acheminement": "LA CHAPELLE LASSON", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51127"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d13065a6031dd6627846635d41a6f84f9209afc", "fields": {"nom_de_la_commune": "CHARLEVILLE", "libell_d_acheminement": "CHARLEVILLE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51129"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9c024d2fb38f47b5b2c85e5959f141f34932be8", "fields": {"nom_de_la_commune": "CHENIERS", "libell_d_acheminement": "CHENIERS", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51146"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aaf90899a6bbfa233f0d005da5c18457a9b80989", "fields": {"nom_de_la_commune": "CHEPPES LA PRAIRIE", "libell_d_acheminement": "CHEPPES LA PRAIRIE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51148"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c234a17afc797f1321097163d9eea150af973f9d", "fields": {"nom_de_la_commune": "CHERVILLE", "libell_d_acheminement": "CHERVILLE", "code_postal": "51150", "coordonnees_gps": [49.0294111773, 4.16667797153], "code_commune_insee": "51150"}, "geometry": {"type": "Point", "coordinates": [4.16667797153, 49.0294111773]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e3d8a239c34d3b5e1ddefcfb9360b3a8e10e129", "fields": {"code_postal": "51130", "code_commune_insee": "51158", "libell_d_acheminement": "VAL DES MARAIS", "ligne_5": "AULNAY AUX PLANCHES", "nom_de_la_commune": "VAL DES MARAIS", "coordonnees_gps": [48.8827840053, 4.0351549525]}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e82e8cff69b08f88724159144e7b1bb65ba33650", "fields": {"nom_de_la_commune": "COMPERTRIX", "libell_d_acheminement": "COMPERTRIX", "code_postal": "51510", "coordonnees_gps": [48.9342172919, 4.27050275363], "code_commune_insee": "51160"}, "geometry": {"type": "Point", "coordinates": [4.27050275363, 48.9342172919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "241410ddd8e84fc61f923ee3efe892afa892a723", "fields": {"nom_de_la_commune": "CONNANTRAY VAUREFROY", "libell_d_acheminement": "CONNANTRAY VAUREFROY", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51164"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72d7046a589341cdebec0d8c8a00397df46acc73", "fields": {"nom_de_la_commune": "COURLANDON", "libell_d_acheminement": "COURLANDON", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51187"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a7b5e5379f39d5349892159ef1359febfb7523", "fields": {"nom_de_la_commune": "COURTHIEZY", "libell_d_acheminement": "COURTHIEZY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51192"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e89acc6c8a825beb93e7f133e88f74f02ab3dcb0", "fields": {"nom_de_la_commune": "COURTISOLS", "libell_d_acheminement": "COURTISOLS", "code_postal": "51460", "coordonnees_gps": [48.9905031227, 4.56158797165], "code_commune_insee": "51193"}, "geometry": {"type": "Point", "coordinates": [4.56158797165, 48.9905031227]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "194d852d7eade35667a5765b97da314ab95cef0c", "fields": {"nom_de_la_commune": "CRAMANT", "libell_d_acheminement": "CRAMANT", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51196"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "992dff2c1b4d2d37a9cb41a6bd68e8f3c47b4795", "fields": {"nom_de_la_commune": "CUISLES", "libell_d_acheminement": "CUISLES", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51201"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "741f846e7cbb413029e6a5abf65713d0b061cc7c", "fields": {"nom_de_la_commune": "CUMIERES", "libell_d_acheminement": "CUMIERES", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51202"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f7e0cc8d6961b8c70f4e61ce151a0313ea817f45", "fields": {"nom_de_la_commune": "DOMMARTIN VARIMONT", "libell_d_acheminement": "DOMMARTIN VARIMONT", "code_postal": "51330", "coordonnees_gps": [48.9239611748, 4.83138299051], "code_commune_insee": "51214"}, "geometry": {"type": "Point", "coordinates": [4.83138299051, 48.9239611748]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "754f9672ac9859beb4e0b58403b9e7c94cbae785", "fields": {"nom_de_la_commune": "DOMPREMY", "libell_d_acheminement": "DOMPREMY", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51215"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c792fe912a2809ef0efbd83c6c55c90b88618530", "fields": {"nom_de_la_commune": "VAL DE VIERE", "libell_d_acheminement": "VAL DE VIERE", "code_postal": "51340", "coordonnees_gps": [48.7580007478, 4.83466353894], "code_commune_insee": "51218"}, "geometry": {"type": "Point", "coordinates": [4.83466353894, 48.7580007478]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4459c248f10ee827d4c4f624d2ac96deefcbf836", "fields": {"nom_de_la_commune": "ECOLLEMONT", "libell_d_acheminement": "ECOLLEMONT", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51223"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df1201bf0ed771d28546dffcb284eca5f005ca62", "fields": {"nom_de_la_commune": "ECUEIL", "libell_d_acheminement": "ECUEIL", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51225"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c85e749326fa2c3ba8722f9328bf5434c7caddca", "fields": {"nom_de_la_commune": "ECURY LE REPOS", "libell_d_acheminement": "ECURY LE REPOS", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51226"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd98d80c9c4a64adf632bb9e56b6d46370d542be", "fields": {"nom_de_la_commune": "EPOYE", "libell_d_acheminement": "EPOYE", "code_postal": "51490", "coordonnees_gps": [49.2685072605, 4.31059829829], "code_commune_insee": "51232"}, "geometry": {"type": "Point", "coordinates": [4.31059829829, 49.2685072605]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d9f149bf266e52dd47d711af0e06fe79fef225b", "fields": {"nom_de_la_commune": "ESCARDES", "libell_d_acheminement": "ESCARDES", "code_postal": "51310", "coordonnees_gps": [48.720317038, 3.53150445237], "code_commune_insee": "51233"}, "geometry": {"type": "Point", "coordinates": [3.53150445237, 48.720317038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6127a66ce145d7a0b5b6204e334d9ada4e9f8589", "fields": {"code_postal": "51320", "code_commune_insee": "51244", "libell_d_acheminement": "FAUX VESIGNEUL", "ligne_5": "FONTAINE SUR COOLE", "nom_de_la_commune": "FAUX VESIGNEUL", "coordonnees_gps": [48.7267171427, 4.30396433776]}, "geometry": {"type": "Point", "coordinates": [4.30396433776, 48.7267171427]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87a243d038b415e24d9a8207b96e7095b6f7a877", "fields": {"nom_de_la_commune": "FAVEROLLES ET COEMY", "libell_d_acheminement": "FAVEROLLES ET COEMY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51245"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f60ab419f11707bab76fa8f4f0f42f0b474da60e", "fields": {"nom_de_la_commune": "FESTIGNY", "libell_d_acheminement": "FESTIGNY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51249"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3a76e8c1d12956da714193c20cf5a90fb0cd237d", "fields": {"nom_de_la_commune": "FLORENT EN ARGONNE", "libell_d_acheminement": "FLORENT EN ARGONNE", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51253"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6f4cccae7df64e9ea385bfc404c41eaabfdfa8bc", "fields": {"nom_de_la_commune": "VILLARS", "libell_d_acheminement": "VILLARS", "code_postal": "84400", "coordonnees_gps": [43.9044100699, 5.43397082996], "code_commune_insee": "84145"}, "geometry": {"type": "Point", "coordinates": [5.43397082996, 43.9044100699]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96be9bf834fec2ba95cb113b586c40ebb297d264", "fields": {"nom_de_la_commune": "L AIGUILLON SUR MER", "libell_d_acheminement": "L AIGUILLON SUR MER", "code_postal": "85460", "coordonnees_gps": [46.3131819817, -1.28712096962], "code_commune_insee": "85001"}, "geometry": {"type": "Point", "coordinates": [-1.28712096962, 46.3131819817]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "699ac2c5cd613e173d34ec0ac85ce1cad41ce195", "fields": {"nom_de_la_commune": "ANGLES", "libell_d_acheminement": "ANGLES", "code_postal": "85750", "coordonnees_gps": [46.3870968037, -1.40070242252], "code_commune_insee": "85004"}, "geometry": {"type": "Point", "coordinates": [-1.40070242252, 46.3870968037]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b3ff3c2f4cfc8dc7f3ac26284efabdfd53e7f711", "fields": {"nom_de_la_commune": "AUZAY", "libell_d_acheminement": "AUZAY", "code_postal": "85200", "coordonnees_gps": [46.4730274645, -0.80431270427], "code_commune_insee": "85009"}, "geometry": {"type": "Point", "coordinates": [-0.80431270427, 46.4730274645]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a4c71293ab920ecba662e007d3e70350bc97144", "fields": {"nom_de_la_commune": "LA BARRE DE MONTS", "libell_d_acheminement": "LA BARRE DE MONTS", "code_postal": "85550", "coordonnees_gps": [46.8721318025, -2.10134483894], "code_commune_insee": "85012"}, "geometry": {"type": "Point", "coordinates": [-2.10134483894, 46.8721318025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "41e0810db7e472327d8240f14aa7e7a9981d7b17", "fields": {"nom_de_la_commune": "BEAUREPAIRE", "libell_d_acheminement": "BEAUREPAIRE", "code_postal": "85500", "coordonnees_gps": [46.8741028574, -1.03230822267], "code_commune_insee": "85017"}, "geometry": {"type": "Point", "coordinates": [-1.03230822267, 46.8741028574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c4b75fb8981c4c901bd2cb46bb8c6a4847a7f2a", "fields": {"code_postal": "85170", "code_commune_insee": "85019", "libell_d_acheminement": "BELLEVIGNY", "ligne_5": "BELLEVILLE SUR VIE", "nom_de_la_commune": "BELLEVIGNY", "coordonnees_gps": [46.803170613, -1.45953412091]}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b1f062ecfe81ff40870f04ccc9bcdc373532fb72", "fields": {"code_postal": "85170", "code_commune_insee": "85019", "libell_d_acheminement": "BELLEVIGNY", "ligne_5": "SALIGNY", "nom_de_la_commune": "BELLEVIGNY", "coordonnees_gps": [46.803170613, -1.45953412091]}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "deed6d0a75f1ca72c9f22dd0491e6e7d01485979", "fields": {"nom_de_la_commune": "BENET", "libell_d_acheminement": "BENET", "code_postal": "85490", "coordonnees_gps": [46.3691901747, -0.6138149404], "code_commune_insee": "85020"}, "geometry": {"type": "Point", "coordinates": [-0.6138149404, 46.3691901747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7d691f4c55ec31f2f1e79a333c9c72462f4783d5", "fields": {"code_postal": "85490", "code_commune_insee": "85020", "libell_d_acheminement": "BENET", "ligne_5": "LESSON", "nom_de_la_commune": "BENET", "coordonnees_gps": [46.3691901747, -0.6138149404]}, "geometry": {"type": "Point", "coordinates": [-0.6138149404, 46.3691901747]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b580232cfff3b6d210ce569313ba77f6a87679e", "fields": {"nom_de_la_commune": "BOUFFERE", "libell_d_acheminement": "BOUFFERE", "code_postal": "85600", "coordonnees_gps": [46.9707108113, -1.27375208675], "code_commune_insee": "85027"}, "geometry": {"type": "Point", "coordinates": [-1.27375208675, 46.9707108113]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3831b6b4e548e1d93ee605b4ce224eaadba3825b", "fields": {"nom_de_la_commune": "BOURNEZEAU", "libell_d_acheminement": "BOURNEZEAU", "code_postal": "85480", "coordonnees_gps": [46.6439879981, -1.18432139846], "code_commune_insee": "85034"}, "geometry": {"type": "Point", "coordinates": [-1.18432139846, 46.6439879981]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9034620fcce0637b0b4b972ece9e3b5d978ee8c6", "fields": {"nom_de_la_commune": "LE CHAMP ST PERE", "libell_d_acheminement": "LE CHAMP ST PERE", "code_postal": "85540", "coordonnees_gps": [46.4859713546, -1.38206083046], "code_commune_insee": "85050"}, "geometry": {"type": "Point", "coordinates": [-1.38206083046, 46.4859713546]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e923af7a75d03d91948e3b706aab35f35fdec612", "fields": {"nom_de_la_commune": "CHAVAGNES LES REDOUX", "libell_d_acheminement": "CHAVAGNES LES REDOUX", "code_postal": "85390", "coordonnees_gps": [46.6728627352, -0.866891813869], "code_commune_insee": "85066"}, "geometry": {"type": "Point", "coordinates": [-0.866891813869, 46.6728627352]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b094f3b91b70ee39330a7017ab961fd874d11c8e", "fields": {"nom_de_la_commune": "COEX", "libell_d_acheminement": "COEX", "code_postal": "85220", "coordonnees_gps": [46.7170865534, -1.78755069973], "code_commune_insee": "85070"}, "geometry": {"type": "Point", "coordinates": [-1.78755069973, 46.7170865534]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1e8b06b801cd9715457a32b36b8b88e17fe29f13", "fields": {"nom_de_la_commune": "CORPE", "libell_d_acheminement": "CORPE", "code_postal": "85320", "coordonnees_gps": [46.544588242, -1.21560029511], "code_commune_insee": "85073"}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "569b10fe48a844804166183ef47efa9f5410805b", "fields": {"nom_de_la_commune": "DOMPIERRE SUR YON", "libell_d_acheminement": "DOMPIERRE SUR YON", "code_postal": "85170", "coordonnees_gps": [46.803170613, -1.45953412091], "code_commune_insee": "85081"}, "geometry": {"type": "Point", "coordinates": [-1.45953412091, 46.803170613]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c836650770266f8ab7c9ea72acd810c529008de9", "fields": {"nom_de_la_commune": "LE FENOUILLER", "libell_d_acheminement": "LE FENOUILLER", "code_postal": "85800", "coordonnees_gps": [46.6993264019, -1.89528926065], "code_commune_insee": "85088"}, "geometry": {"type": "Point", "coordinates": [-1.89528926065, 46.6993264019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aafbd00114b61d7ccd2209c101a143b2ca6b643c", "fields": {"nom_de_la_commune": "LA FERRIERE", "libell_d_acheminement": "LA FERRIERE", "code_postal": "85280", "coordonnees_gps": [46.721600791, -1.3342812784], "code_commune_insee": "85089"}, "geometry": {"type": "Point", "coordinates": [-1.3342812784, 46.721600791]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a733502148db0c53b73adb0f00aa407e758785c6", "fields": {"code_postal": "85700", "code_commune_insee": "85090", "libell_d_acheminement": "SEVREMONT", "ligne_5": "LA POMMERAIE SUR SEVRE", "nom_de_la_commune": "SEVREMONT", "coordonnees_gps": [46.7673763224, -0.80165823115]}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "516f014d0ca61d1d77031c5454194145c7aefd47", "fields": {"nom_de_la_commune": "LE GUE DE VELLUIRE", "libell_d_acheminement": "LE GUE DE VELLUIRE", "code_postal": "85770", "coordonnees_gps": [46.3688776738, -0.891505234043], "code_commune_insee": "85105"}, "geometry": {"type": "Point", "coordinates": [-0.891505234043, 46.3688776738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d659ad8619bd764e5785a8dc9482785e9483dad9", "fields": {"nom_de_la_commune": "LA GUERINIERE", "libell_d_acheminement": "LA GUERINIERE", "code_postal": "85680", "coordonnees_gps": [46.9670273976, -2.23095235091], "code_commune_insee": "85106"}, "geometry": {"type": "Point", "coordinates": [-2.23095235091, 46.9670273976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2bab65fc93a7c03969c93922c51a0f64854897f7", "fields": {"nom_de_la_commune": "LES HERBIERS", "libell_d_acheminement": "LES HERBIERS", "code_postal": "85500", "coordonnees_gps": [46.8741028574, -1.03230822267], "code_commune_insee": "85109"}, "geometry": {"type": "Point", "coordinates": [-1.03230822267, 46.8741028574]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d59f06b94e68d78f49fe82755d1be1ae860ef10", "fields": {"nom_de_la_commune": "L ILE D YEU", "libell_d_acheminement": "L ILE D YEU", "code_postal": "85350", "coordonnees_gps": [46.709560764, -2.34675388609], "code_commune_insee": "85113"}, "geometry": {"type": "Point", "coordinates": [-2.34675388609, 46.709560764]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c0823085612e1534d3f2f2898901426f1c24d157", "fields": {"nom_de_la_commune": "LUCON", "libell_d_acheminement": "LUCON", "code_postal": "85400", "coordonnees_gps": [46.4597818652, -1.17474717028], "code_commune_insee": "85128"}, "geometry": {"type": "Point", "coordinates": [-1.17474717028, 46.4597818652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd94196267b37898f04ccac67b82b6abf6f4ca28", "fields": {"nom_de_la_commune": "LES MAGNILS REIGNIERS", "libell_d_acheminement": "LES MAGNILS REIGNIERS", "code_postal": "85400", "coordonnees_gps": [46.4597818652, -1.17474717028], "code_commune_insee": "85131"}, "geometry": {"type": "Point", "coordinates": [-1.17474717028, 46.4597818652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1be5dd68ede3da5ead989947e71994e5a1ca3f70", "fields": {"nom_de_la_commune": "MAILLE", "libell_d_acheminement": "MAILLE", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85132"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a7302d1e1ad854b0676d9e3545357a7b3147f92", "fields": {"nom_de_la_commune": "MAILLEZAIS", "libell_d_acheminement": "MAILLEZAIS", "code_postal": "85420", "coordonnees_gps": [46.3637075311, -0.729123432763], "code_commune_insee": "85133"}, "geometry": {"type": "Point", "coordinates": [-0.729123432763, 46.3637075311]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a6b34e9215f9f7405b31da0b3e8cb1d5824c0eb7", "fields": {"nom_de_la_commune": "MALLIEVRE", "libell_d_acheminement": "MALLIEVRE", "code_postal": "85590", "coordonnees_gps": [46.9002620451, -0.893697595044], "code_commune_insee": "85134"}, "geometry": {"type": "Point", "coordinates": [-0.893697595044, 46.9002620451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b8827ef44213937257df8f21363eec7810a59749", "fields": {"code_postal": "85320", "code_commune_insee": "85135", "libell_d_acheminement": "MAREUIL SUR LAY DISSAIS", "ligne_5": "DISSAIS", "nom_de_la_commune": "MAREUIL SUR LAY DISSAIS", "coordonnees_gps": [46.544588242, -1.21560029511]}, "geometry": {"type": "Point", "coordinates": [-1.21560029511, 46.544588242]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b608256bcdcc06fc16ed4b5bdf7bd4a77a0d47e", "fields": {"nom_de_la_commune": "MARILLET", "libell_d_acheminement": "MARILLET", "code_postal": "85240", "coordonnees_gps": [46.4923970829, -0.670036032034], "code_commune_insee": "85136"}, "geometry": {"type": "Point", "coordinates": [-0.670036032034, 46.4923970829]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e10cad351722449dbc741773f661cd6937525275", "fields": {"nom_de_la_commune": "LA MEILLERAIE TILLAY", "libell_d_acheminement": "LA MEILLERAIE TILLAY", "code_postal": "85700", "coordonnees_gps": [46.7673763224, -0.80165823115], "code_commune_insee": "85140"}, "geometry": {"type": "Point", "coordinates": [-0.80165823115, 46.7673763224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0ec82ad05cf6592958071c525706cdc90b53f021", "fields": {"code_postal": "77970", "code_commune_insee": "77020", "libell_d_acheminement": "BANNOST VILLEGAGNON", "ligne_5": "VILLEGAGNON", "nom_de_la_commune": "BANNOST VILLEGAGNON", "coordonnees_gps": [48.6629667533, 3.14093688522]}, "geometry": {"type": "Point", "coordinates": [3.14093688522, 48.6629667533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "68eb6affd1948aafe6bfa8210bf5c2b9b5f53779", "fields": {"nom_de_la_commune": "BARCY", "libell_d_acheminement": "BARCY", "code_postal": "77910", "coordonnees_gps": [48.9999569179, 2.91840604341], "code_commune_insee": "77023"}, "geometry": {"type": "Point", "coordinates": [2.91840604341, 48.9999569179]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d33df6799d05d4400d91d7948bf8bf29fb6319e9", "fields": {"code_postal": "77560", "code_commune_insee": "77026", "libell_d_acheminement": "BEAUCHERY ST MARTIN", "ligne_5": "ST MARTIN CHENNETRON", "nom_de_la_commune": "BEAUCHERY ST MARTIN", "coordonnees_gps": [48.6366559441, 3.38263980516]}, "geometry": {"type": "Point", "coordinates": [3.38263980516, 48.6366559441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fbec52415412d72de691cfc5aa63a70f0594ea3", "fields": {"nom_de_la_commune": "BEAUVOIR", "libell_d_acheminement": "BEAUVOIR", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77029"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8aa61a1d7dd8d8220a43bab1353da47e1d65324f", "fields": {"nom_de_la_commune": "BOISDON", "libell_d_acheminement": "BOISDON", "code_postal": "77970", "coordonnees_gps": [48.6629667533, 3.14093688522], "code_commune_insee": "77036"}, "geometry": {"type": "Point", "coordinates": [3.14093688522, 48.6629667533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea2586a526f11645c0882ca0d0a618ffff369eab", "fields": {"nom_de_la_commune": "BOITRON", "libell_d_acheminement": "BOITRON", "code_postal": "77750", "coordonnees_gps": [48.9148071078, 3.22989278872], "code_commune_insee": "77043"}, "geometry": {"type": "Point", "coordinates": [3.22989278872, 48.9148071078]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d8e9fc451b9f2d3213068182e3cc520fa5262196", "fields": {"nom_de_la_commune": "CANNES ECLUSE", "libell_d_acheminement": "CANNES ECLUSE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77061"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26cddaeb10f11e0982a62ac146d00dbfc6633607", "fields": {"nom_de_la_commune": "CARNETIN", "libell_d_acheminement": "CARNETIN", "code_postal": "77400", "coordonnees_gps": [48.8816806976, 2.70264618038], "code_commune_insee": "77062"}, "geometry": {"type": "Point", "coordinates": [2.70264618038, 48.8816806976]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d5f4e3c3c9543a9ef843f4d2fffd9db4aa9c3417", "fields": {"nom_de_la_commune": "CELY", "libell_d_acheminement": "CELY EN BIERE", "code_postal": "77930", "coordonnees_gps": [48.4690092081, 2.55644926131], "code_commune_insee": "77065"}, "geometry": {"type": "Point", "coordinates": [2.55644926131, 48.4690092081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a968ccc9ded461ed32ae1df5dd6d0e5858a407", "fields": {"nom_de_la_commune": "CERNEUX", "libell_d_acheminement": "CERNEUX", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77066"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee8d51bda93bd704e3dfdf196a05658f9231cfc6", "fields": {"nom_de_la_commune": "CHAMIGNY", "libell_d_acheminement": "CHAMIGNY", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77078"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fe06faa28fe989b39772952b7ba0c84bf051c742", "fields": {"nom_de_la_commune": "CHAMPEAUX", "libell_d_acheminement": "CHAMPEAUX", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77082"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cedb3608cafa12f4f0659e3fd73f2fe1440c19e6", "fields": {"nom_de_la_commune": "LA CHAPELLE IGER", "libell_d_acheminement": "LA CHAPELLE IGER", "code_postal": "77540", "coordonnees_gps": [48.6871810178, 2.97337841043], "code_commune_insee": "77087"}, "geometry": {"type": "Point", "coordinates": [2.97337841043, 48.6871810178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "297c271ff06b0beb628cb6347a0bf160ee4fb70a", "fields": {"nom_de_la_commune": "LA CHAPELLE MOUTILS", "libell_d_acheminement": "LA CHAPELLE MOUTILS", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77093"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "adcba20ae51d0ff43498db7bf4263cda04beada9", "fields": {"nom_de_la_commune": "CHARMENTRAY", "libell_d_acheminement": "CHARMENTRAY", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77094"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2f774b5f413fc98cc4d393a50a65118198ede2b", "fields": {"nom_de_la_commune": "LE CHATELET EN BRIE", "libell_d_acheminement": "LE CHATELET EN BRIE", "code_postal": "77820", "coordonnees_gps": [48.5045041989, 2.83445609947], "code_commune_insee": "77100"}, "geometry": {"type": "Point", "coordinates": [2.83445609947, 48.5045041989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bce742a88ceeb1f0049c0095946b9d3774433c1", "fields": {"nom_de_la_commune": "CHATENAY SUR SEINE", "libell_d_acheminement": "CHATENAY SUR SEINE", "code_postal": "77126", "coordonnees_gps": [48.4261598514, 3.09512447411], "code_commune_insee": "77101"}, "geometry": {"type": "Point", "coordinates": [3.09512447411, 48.4261598514]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1754cbc66a39e727da0b0dfcaeef5853044e36a7", "fields": {"nom_de_la_commune": "CHATILLON LA BORDE", "libell_d_acheminement": "CHATILLON LA BORDE", "code_postal": "77820", "coordonnees_gps": [48.5045041989, 2.83445609947], "code_commune_insee": "77103"}, "geometry": {"type": "Point", "coordinates": [2.83445609947, 48.5045041989]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30734350a008ac31d8618cb092db13120e27d591", "fields": {"nom_de_la_commune": "CHENOISE", "libell_d_acheminement": "CHENOISE", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77109"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "23982c6562ada381202f48d9d53f7ffdd968bf41", "fields": {"nom_de_la_commune": "CHEVRAINVILLIERS", "libell_d_acheminement": "CHEVRAINVILLIERS", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77112"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38cf136a5757fdb5e7d812076271faa9a986836", "fields": {"nom_de_la_commune": "COURQUETAINE", "libell_d_acheminement": "COURQUETAINE", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77136"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "12cf3c75fc7635810488a36cfdb9ae0dc3c722c6", "fields": {"nom_de_la_commune": "CREGY LES MEAUX", "libell_d_acheminement": "CREGY LES MEAUX", "code_postal": "77124", "coordonnees_gps": [48.9687525452, 2.84384652509], "code_commune_insee": "77143"}, "geometry": {"type": "Point", "coordinates": [2.84384652509, 48.9687525452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a550d2606fe25249e23bf8a9001aa3a3adb06a96", "fields": {"nom_de_la_commune": "CRISENOY", "libell_d_acheminement": "CRISENOY", "code_postal": "77390", "coordonnees_gps": [48.6400377042, 2.79774834492], "code_commune_insee": "77145"}, "geometry": {"type": "Point", "coordinates": [2.79774834492, 48.6400377042]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec42f75add23e38bbc421ed4f9b53125b03c357c", "fields": {"nom_de_la_commune": "DAMMARTIN EN GOELE", "libell_d_acheminement": "DAMMARTIN EN GOELE", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77153"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "584675d820faf670e7d62cc76b0ada9bbc631ba3", "fields": {"nom_de_la_commune": "DONNEMARIE DONTILLY", "libell_d_acheminement": "DONNEMARIE DONTILLY", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77159"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1717e4e218238227f71e0a64d891f12f2be435a8", "fields": {"code_postal": "77184", "code_commune_insee": "77169", "libell_d_acheminement": "EMERAINVILLE", "ligne_5": "MALNOUE", "nom_de_la_commune": "EMERAINVILLE", "coordonnees_gps": [48.8191814737, 2.61008151215]}, "geometry": {"type": "Point", "coordinates": [2.61008151215, 48.8191814737]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "354ddd24ab2e87d00dc863ff03d7750f5e971234", "fields": {"nom_de_la_commune": "EVERLY", "libell_d_acheminement": "EVERLY", "code_postal": "77157", "coordonnees_gps": [48.4599807515, 3.26360313949], "code_commune_insee": "77174"}, "geometry": {"type": "Point", "coordinates": [3.26360313949, 48.4599807515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bd859fe40a77b67ff670c9f1fc066d9dfc300445", "fields": {"code_postal": "77166", "code_commune_insee": "77175", "libell_d_acheminement": "EVRY GREGY SUR YERRE", "ligne_5": "GREGY SUR YERRE", "nom_de_la_commune": "EVRY GREGY SUR YERRE", "coordonnees_gps": [48.6689119155, 2.65738604224]}, "geometry": {"type": "Point", "coordinates": [2.65738604224, 48.6689119155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00fc73f1e3c80d7c61ddfbe2678fa6c462f29f3b", "fields": {"nom_de_la_commune": "FAREMOUTIERS", "libell_d_acheminement": "FAREMOUTIERS", "code_postal": "77515", "coordonnees_gps": [48.791262965, 2.99641701486], "code_commune_insee": "77176"}, "geometry": {"type": "Point", "coordinates": [2.99641701486, 48.791262965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d7c82296d536323119939bab1a0d6523679aa17a", "fields": {"nom_de_la_commune": "FLAGY", "libell_d_acheminement": "FLAGY", "code_postal": "77940", "coordonnees_gps": [48.3010302243, 2.97851595666], "code_commune_insee": "77184"}, "geometry": {"type": "Point", "coordinates": [2.97851595666, 48.3010302243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "06f56dfe762bc3adcb35d61d2beb734c37b311b7", "fields": {"nom_de_la_commune": "FLEURY EN BIERE", "libell_d_acheminement": "FLEURY EN BIERE", "code_postal": "77930", "coordonnees_gps": [48.4690092081, 2.55644926131], "code_commune_insee": "77185"}, "geometry": {"type": "Point", "coordinates": [2.55644926131, 48.4690092081]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "358785d8180712f21f4297e2f4cbfc04f7954d8a", "fields": {"nom_de_la_commune": "GASTINS", "libell_d_acheminement": "GASTINS", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77201"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df0b2849de7a7a7a6f82172f63a153c6ce0272c5", "fields": {"nom_de_la_commune": "GRAVON", "libell_d_acheminement": "GRAVON", "code_postal": "77118", "coordonnees_gps": [48.3962434685, 3.16889442918], "code_commune_insee": "77212"}, "geometry": {"type": "Point", "coordinates": [3.16889442918, 48.3962434685]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f7f6381454b1010902ca6aff9e908d8b96b9169", "fields": {"nom_de_la_commune": "GREZ SUR LOING", "libell_d_acheminement": "GREZ SUR LOING", "code_postal": "77880", "coordonnees_gps": [48.30681243, 2.67755960336], "code_commune_insee": "77216"}, "geometry": {"type": "Point", "coordinates": [2.67755960336, 48.30681243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1c689a46ec79c2493e853971311426f1b04fcbb", "fields": {"code_postal": "77166", "code_commune_insee": "77217", "libell_d_acheminement": "GRISY SUISNES", "ligne_5": "SUISNES", "nom_de_la_commune": "GRISY SUISNES", "coordonnees_gps": [48.6689119155, 2.65738604224]}, "geometry": {"type": "Point", "coordinates": [2.65738604224, 48.6689119155]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0366837d8223ce2b9f4d90b9adad5a2fa545758", "fields": {"nom_de_la_commune": "GUERARD", "libell_d_acheminement": "GUERARD", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77219"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e3598c775fd2f94fc7144fe6b5bafc57bb213274", "fields": {"nom_de_la_commune": "LA HAUTE MAISON", "libell_d_acheminement": "LA HAUTE MAISON", "code_postal": "77580", "coordonnees_gps": [48.8615810668, 2.95011085183], "code_commune_insee": "77225"}, "geometry": {"type": "Point", "coordinates": [2.95011085183, 48.8615810668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d414c9d926b76ba841d98a1ba99f19bf3b9c503", "fields": {"nom_de_la_commune": "IVERNY", "libell_d_acheminement": "IVERNY", "code_postal": "77165", "coordonnees_gps": [49.02999445, 2.80817344589], "code_commune_insee": "77233"}, "geometry": {"type": "Point", "coordinates": [2.80817344589, 49.02999445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a67213293de5d6951024c7ad260d815e5fa519", "fields": {"nom_de_la_commune": "JOSSIGNY", "libell_d_acheminement": "JOSSIGNY", "code_postal": "77600", "coordonnees_gps": [48.8361794738, 2.73226890342], "code_commune_insee": "77237"}, "geometry": {"type": "Point", "coordinates": [2.73226890342, 48.8361794738]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0f1cd7bd782ec8a007343b6321178b2d48101212", "fields": {"nom_de_la_commune": "JOUY LE CHATEL", "libell_d_acheminement": "JOUY LE CHATEL", "code_postal": "77970", "coordonnees_gps": [48.6629667533, 3.14093688522], "code_commune_insee": "77239"}, "geometry": {"type": "Point", "coordinates": [3.14093688522, 48.6629667533]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5875c2222039fd7bec1860ad04f0f76b88af3f1e", "fields": {"nom_de_la_commune": "LARCHANT", "libell_d_acheminement": "LARCHANT", "code_postal": "77760", "coordonnees_gps": [48.2952371456, 2.54278715647], "code_commune_insee": "77244"}, "geometry": {"type": "Point", "coordinates": [2.54278715647, 48.2952371456]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "df04d866d4d00ce9419301c6b598ec6bc5d96439", "fields": {"nom_de_la_commune": "LESCHES", "libell_d_acheminement": "LESCHES", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77248"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95815a0b4d424d93a2d33a5863b61bf418521c3f", "fields": {"nom_de_la_commune": "LIVERDY EN BRIE", "libell_d_acheminement": "LIVERDY EN BRIE", "code_postal": "77220", "coordonnees_gps": [48.7441435085, 2.75833565592], "code_commune_insee": "77254"}, "geometry": {"type": "Point", "coordinates": [2.75833565592, 48.7441435085]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "158eb3c9937b8520695d35c237e8fa2c0901c549", "fields": {"nom_de_la_commune": "LOGNES", "libell_d_acheminement": "LOGNES", "code_postal": "77185", "coordonnees_gps": [48.8339453672, 2.63405301625], "code_commune_insee": "77258"}, "geometry": {"type": "Point", "coordinates": [2.63405301625, 48.8339453672]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "832b3c32dd8db75992d3edb152937ece3f1e6029", "fields": {"nom_de_la_commune": "LORREZ LE BOCAGE PREAUX", "libell_d_acheminement": "LORREZ LE BOCAGE PREAUX", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77261"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3996c50bbfb52d0d488c190204be9406375926f6", "fields": {"nom_de_la_commune": "LUISETAINES", "libell_d_acheminement": "LUISETAINES", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77263"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2964991ef7d18bcbc45e77841083ae7511ef9bda", "fields": {"nom_de_la_commune": "LUZANCY", "libell_d_acheminement": "LUZANCY", "code_postal": "77138", "coordonnees_gps": [48.9786989638, 3.18137472607], "code_commune_insee": "77265"}, "geometry": {"type": "Point", "coordinates": [3.18137472607, 48.9786989638]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70dc3a510ca93ac6fae6805b13db0350d864ca64", "fields": {"nom_de_la_commune": "MAGNY LE HONGRE", "libell_d_acheminement": "MAGNY LE HONGRE", "code_postal": "77700", "coordonnees_gps": [48.8632419628, 2.79709040394], "code_commune_insee": "77268"}, "geometry": {"type": "Point", "coordinates": [2.79709040394, 48.8632419628]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1628969de60c70c1f0535ca441f06eaca2726e3e", "fields": {"nom_de_la_commune": "MAISON ROUGE", "libell_d_acheminement": "MAISON ROUGE", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77272"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "343037151689a51c5d6b3cf3f09ba7e9822d674f", "fields": {"nom_de_la_commune": "MESSY", "libell_d_acheminement": "MESSY", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77292"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e77a59aafa3598dce069905150d6bcc73e9184ab", "fields": {"nom_de_la_commune": "MOISSY CRAMAYEL", "libell_d_acheminement": "MOISSY CRAMAYEL", "code_postal": "77550", "coordonnees_gps": [48.6199078529, 2.63560162952], "code_commune_insee": "77296"}, "geometry": {"type": "Point", "coordinates": [2.63560162952, 48.6199078529]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "25038b60a125765a51f3cd3094bc79772dae0067", "fields": {"nom_de_la_commune": "MONS EN MONTOIS", "libell_d_acheminement": "MONS EN MONTOIS", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77298"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07f585e54bcacbe3699ddddf848fd92b6a7fc77", "fields": {"nom_de_la_commune": "MONTCEAUX LES PROVINS", "libell_d_acheminement": "MONTCEAUX LES PROVINS", "code_postal": "77151", "coordonnees_gps": [48.6966917246, 3.44415386672], "code_commune_insee": "77301"}, "geometry": {"type": "Point", "coordinates": [3.44415386672, 48.6966917246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5298c775347c353448632a1f904d5b25a23fc4ab", "fields": {"nom_de_la_commune": "MONTDAUPHIN", "libell_d_acheminement": "MONTDAUPHIN", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77303"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "28079664ff8200f2c3efaf18a91d6fc08fbc3284", "fields": {"nom_de_la_commune": "MONTGE EN GOELE", "libell_d_acheminement": "MONTGE EN GOELE", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77308"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45bc684a7a03fddd0171d67b2bcab020e1ea77dc", "fields": {"nom_de_la_commune": "MONTHYON", "libell_d_acheminement": "MONTHYON", "code_postal": "77122", "coordonnees_gps": [49.0101609027, 2.83216418246], "code_commune_insee": "77309"}, "geometry": {"type": "Point", "coordinates": [2.83216418246, 49.0101609027]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d2f637948c3fc90d183c4c7fc7facbaa85c7159f", "fields": {"nom_de_la_commune": "MOUSSY LE VIEUX", "libell_d_acheminement": "MOUSSY LE VIEUX", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77323"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e7e91a6a624b9c46cf4f4ee0c69cfa95aa955b76", "fields": {"nom_de_la_commune": "NANGIS", "libell_d_acheminement": "NANGIS", "code_postal": "77370", "coordonnees_gps": [48.5606029777, 3.03744473884], "code_commune_insee": "77327"}, "geometry": {"type": "Point", "coordinates": [3.03744473884, 48.5606029777]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "865ba1884ae88d5f867ca6c358db0dc92eb488c2", "fields": {"code_postal": "77124", "code_commune_insee": "77335", "libell_d_acheminement": "CHAUCONIN NEUFMONTIERS", "ligne_5": "CHAUCONIN", "nom_de_la_commune": "CHAUCONIN NEUFMONTIERS", "coordonnees_gps": [48.9687525452, 2.84384652509]}, "geometry": {"type": "Point", "coordinates": [2.84384652509, 48.9687525452]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c9cfbe02db81f93af2fce657b7e6b4af81e7ab9c", "fields": {"nom_de_la_commune": "NONVILLE", "libell_d_acheminement": "NONVILLE", "code_postal": "77140", "coordonnees_gps": [48.2750471622, 2.70959190478], "code_commune_insee": "77340"}, "geometry": {"type": "Point", "coordinates": [2.70959190478, 48.2750471622]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e4f74e30c9cc555564e1836971427cac591f305", "fields": {"nom_de_la_commune": "OBSONVILLE", "libell_d_acheminement": "OBSONVILLE", "code_postal": "77890", "coordonnees_gps": [48.1786433192, 2.5341392437], "code_commune_insee": "77342"}, "geometry": {"type": "Point", "coordinates": [2.5341392437, 48.1786433192]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d58e004dc36f69c71ea402283ae6a19145d539d1", "fields": {"nom_de_la_commune": "OCQUERRE", "libell_d_acheminement": "OCQUERRE", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77343"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1b338505d5670c64fdcd08dfa7bce422c326852a", "fields": {"nom_de_la_commune": "OZOIR LA FERRIERE", "libell_d_acheminement": "OZOIR LA FERRIERE", "code_postal": "77330", "coordonnees_gps": [48.763895872, 2.6807024784], "code_commune_insee": "77350"}, "geometry": {"type": "Point", "coordinates": [2.6807024784, 48.763895872]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9737238bb0ebbad2b000ce6e01535e79498687ce", "fields": {"code_postal": "77340", "code_commune_insee": "77373", "libell_d_acheminement": "PONTAULT COMBAULT", "ligne_5": "LE PAVE DE PONTAULT", "nom_de_la_commune": "PONTAULT COMBAULT", "coordonnees_gps": [48.7869451025, 2.6135089739]}, "geometry": {"type": "Point", "coordinates": [2.6135089739, 48.7869451025]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02d7b7a49c35ca26011004ab0390d429370d6816", "fields": {"nom_de_la_commune": "PONTCARRE", "libell_d_acheminement": "PONTCARRE", "code_postal": "77135", "coordonnees_gps": [48.7962351515, 2.7076583399], "code_commune_insee": "77374"}, "geometry": {"type": "Point", "coordinates": [2.7076583399, 48.7962351515]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e36dbc73d4ea002ab817b353440f810148e64234", "fields": {"nom_de_la_commune": "PROVINS", "libell_d_acheminement": "PROVINS", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77379"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8ec74edc25813bdd3aeed10c6d921cc99d493316", "fields": {"nom_de_la_commune": "QUIERS", "libell_d_acheminement": "QUIERS", "code_postal": "77720", "coordonnees_gps": [48.5850477632, 2.89649549396], "code_commune_insee": "77381"}, "geometry": {"type": "Point", "coordinates": [2.89649549396, 48.5850477632]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "049f9fd2faa8612d4c2a986ffa3037f76ef3bafe", "fields": {"nom_de_la_commune": "REUIL EN BRIE", "libell_d_acheminement": "REUIL EN BRIE", "code_postal": "77260", "coordonnees_gps": [48.9692370904, 3.12481512651], "code_commune_insee": "77388"}, "geometry": {"type": "Point", "coordinates": [3.12481512651, 48.9692370904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61372b345f9021a7ba616a41edc101985261166b", "fields": {"nom_de_la_commune": "NAPUKA", "libell_d_acheminement": "TEPUKAMARUIA", "code_postal": "98772", "ligne_5": "NAPUKA", "code_commune_insee": "98730"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d86d22f20437f1079c2e73374e2bc83c7498f80d", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "AAKAPA", "code_postal": "98742", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba2306f79c9dbac4e7920d5ad1f77dacd849d04a", "fields": {"nom_de_la_commune": "NUKU HIVA", "libell_d_acheminement": "HATIHEU", "code_postal": "98748", "ligne_5": "NUKU HIVA", "code_commune_insee": "98731"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "243dc75f053ccf25205f312a75cee4eef2e7da62", "fields": {"nom_de_la_commune": "PAPEETE", "libell_d_acheminement": "PAPEETE", "code_postal": "98714", "code_commune_insee": "98735"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4697b578c13fc71a3ff49e14186d15e732bf0182", "fields": {"nom_de_la_commune": "PUKAPUKA", "libell_d_acheminement": "TEONEMAHINA", "code_postal": "98774", "ligne_5": "PUKAPUKA", "code_commune_insee": "98737"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "efc546e6520e6e76f96e7154ee648a572708629b", "fields": {"nom_de_la_commune": "RAPA", "libell_d_acheminement": "MAROTIRI", "code_postal": "98794", "ligne_5": "RAPA", "code_commune_insee": "98741"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e143bfbc1e569866ed60f69e39e0445a148cd149", "fields": {"nom_de_la_commune": "RURUTU", "libell_d_acheminement": "AVERA", "code_postal": "98753", "ligne_5": "RURUTU", "code_commune_insee": "98744"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db134b5047912cab4db172a017d3af132d11a35b", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "TAHAA", "code_postal": "98733", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cbce5240747d38f47c3bee5fee1e752ec8b19acf", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "HIPU", "code_postal": "98733", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "749d3c32b796421ba25593650996095268706104", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "HAAMENE", "code_postal": "98734", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71823fcaed7ca97e1c64c14c9ede10c6c7e50819", "fields": {"nom_de_la_commune": "TAHAA", "libell_d_acheminement": "FAAAHA", "code_postal": "98734", "ligne_5": "TAHAA", "code_commune_insee": "98745"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10338868fff637a543162c2fca5a12c16513b36b", "fields": {"nom_de_la_commune": "TAHUATA", "libell_d_acheminement": "HAPATONI", "code_postal": "98743", "ligne_5": "TAHUATA", "code_commune_insee": "98746"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0784f38acb9660fdd908d09a4850a48e39f7ec88", "fields": {"nom_de_la_commune": "TAHUATA", "libell_d_acheminement": "HANATETENA", "code_postal": "98743", "ligne_5": "TAHUATA", "code_commune_insee": "98746"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aa32f5c9ded5af04a756f6c6506b4b40b17a1e35", "fields": {"nom_de_la_commune": "TUMARAA", "libell_d_acheminement": "TEHURUI", "code_postal": "98735", "ligne_5": "TUMARAA", "code_commune_insee": "98754"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8cc201caceaf70397e22e1ef6d61094e97ab46ae", "fields": {"nom_de_la_commune": "TUREIA", "libell_d_acheminement": "FAKAMARU", "code_postal": "98784", "ligne_5": "TUREIA", "code_commune_insee": "98755"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcde49b99196b982e5cc10ca28a776e93aa25968", "fields": {"nom_de_la_commune": "UA POU", "libell_d_acheminement": "HAKAHETAU", "code_postal": "98745", "ligne_5": "UA POU", "code_commune_insee": "98757"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ae26f6cd6805c0149d63fc490c5aaedc5529165d", "fields": {"nom_de_la_commune": "UA POU", "libell_d_acheminement": "HAKAHAU", "code_postal": "98745", "ligne_5": "UA POU", "code_commune_insee": "98757"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "402e3e14d065499808bc202c5ed5041717d94607", "fields": {"nom_de_la_commune": "UA POU", "libell_d_acheminement": "HAKAMAII", "code_postal": "98746", "ligne_5": "UA POU", "code_commune_insee": "98757"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "911fd88989b7e39caf8c87a27e5d7cc69ffd5558", "fields": {"nom_de_la_commune": "HOUAILOU", "libell_d_acheminement": "PORO", "code_postal": "98838", "ligne_5": "HOUAILOU", "code_commune_insee": "98808"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b18ccfc1d9eaa11d005b65f562803fe2cf542f3", "fields": {"nom_de_la_commune": "KONE", "libell_d_acheminement": "KONE", "code_postal": "98859", "code_commune_insee": "98811"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b24097836704b1de6d9472e982aee6102769f4b5", "fields": {"nom_de_la_commune": "NOUMEA", "libell_d_acheminement": "NOUMEA", "code_postal": "98800", "code_commune_insee": "98818"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "69a963a6a1c43fe225997ffc61998e23f193cf64", "fields": {"nom_de_la_commune": "POYA", "libell_d_acheminement": "POYA", "code_postal": "98827", "code_commune_insee": "98827"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a3007754b816e668bb432530ce63aa0e6bf363b1", "fields": {"nom_de_la_commune": "SARRAMEA", "libell_d_acheminement": "SARRAMEA", "code_postal": "98882", "code_commune_insee": "98828"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "88df389815f018f4a537f1efc71b995faa1e18d5", "fields": {"nom_de_la_commune": "VOH", "libell_d_acheminement": "VOH", "code_postal": "98833", "code_commune_insee": "98831"}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c71cbedaad431227718d8b01c960eba7567c5f21", "fields": {"nom_de_la_commune": "AJACCIO", "libell_d_acheminement": "AJACCIO", "code_postal": "20000", "coordonnees_gps": [41.9348656233, 8.70148853139], "code_commune_insee": "2A004"}, "geometry": {"type": "Point", "coordinates": [8.70148853139, 41.9348656233]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61a882413c75438c8b091c749da90ce3fa777a4a", "fields": {"nom_de_la_commune": "ARGIUSTA MORICCIO", "libell_d_acheminement": "ARGIUSTA MORICCIO", "code_postal": "20140", "coordonnees_gps": [41.7771465438, 8.95137239938], "code_commune_insee": "2A021"}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c9940122178b68bca059bc6fbf71632c181508b", "fields": {"nom_de_la_commune": "BASTELICA", "libell_d_acheminement": "BASTELICA", "code_postal": "20119", "coordonnees_gps": [41.9883254423, 9.04886677644], "code_commune_insee": "2A031"}, "geometry": {"type": "Point", "coordinates": [9.04886677644, 41.9883254423]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f42acfb3f846cd484f981b11dddd6bcafb447e5", "fields": {"nom_de_la_commune": "BASTELICACCIA", "libell_d_acheminement": "BASTELICACCIA", "code_postal": "20129", "coordonnees_gps": [41.9356536649, 8.83694586771], "code_commune_insee": "2A032"}, "geometry": {"type": "Point", "coordinates": [8.83694586771, 41.9356536649]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "eaec57ad5458b40c247649b2cee0d780fc06d53d", "fields": {"nom_de_la_commune": "COZZANO", "libell_d_acheminement": "COZZANO", "code_postal": "20148", "coordonnees_gps": [41.9338968965, 9.18654133907], "code_commune_insee": "2A099"}, "geometry": {"type": "Point", "coordinates": [9.18654133907, 41.9338968965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8f21b63114d355b57cb1066fcacffdffeb001872", "fields": {"nom_de_la_commune": "FOCE", "libell_d_acheminement": "FOCE", "code_postal": "20100", "coordonnees_gps": [41.5806968547, 8.93943169099], "code_commune_insee": "2A115"}, "geometry": {"type": "Point", "coordinates": [8.93943169099, 41.5806968547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3fa5aaf96325024e1fc2951f867d1de1529c34e6", "fields": {"nom_de_la_commune": "FRASSETO", "libell_d_acheminement": "FRASSETO", "code_postal": "20157", "coordonnees_gps": [41.919798541, 9.03920532864], "code_commune_insee": "2A119"}, "geometry": {"type": "Point", "coordinates": [9.03920532864, 41.919798541]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6fe4ef3e523a720f95d2523e6b51381b61640976", "fields": {"nom_de_la_commune": "GROSSETO PRUGNA", "libell_d_acheminement": "GROSSETO PRUGNA", "code_postal": "20128", "coordonnees_gps": [41.8616733244, 8.8885100241], "code_commune_insee": "2A130"}, "geometry": {"type": "Point", "coordinates": [8.8885100241, 41.8616733244]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bcacf75849a116791e36a175fea9f4bc3a076f7b", "fields": {"nom_de_la_commune": "GUAGNO", "libell_d_acheminement": "GUAGNO", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A131"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bd3a6414166c952926f22e6c82549c8e36b22ef", "fields": {"nom_de_la_commune": "LETIA", "libell_d_acheminement": "LETIA", "code_postal": "20160", "coordonnees_gps": [42.1658822701, 8.82370475032], "code_commune_insee": "2A141"}, "geometry": {"type": "Point", "coordinates": [8.82370475032, 42.1658822701]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cf174e0860c8b21c94a4ed3178eecb94e217c0df", "fields": {"nom_de_la_commune": "MELA", "libell_d_acheminement": "MELA", "code_postal": "20112", "coordonnees_gps": [41.6785766285, 9.05986973955], "code_commune_insee": "2A158"}, "geometry": {"type": "Point", "coordinates": [9.05986973955, 41.6785766285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3af1e1f2039594dff1fec700ec8323a0ac954448", "fields": {"nom_de_la_commune": "OLMICCIA", "libell_d_acheminement": "OLMICCIA", "code_postal": "20112", "coordonnees_gps": [41.6785766285, 9.05986973955], "code_commune_insee": "2A191"}, "geometry": {"type": "Point", "coordinates": [9.05986973955, 41.6785766285]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "95ba229b00929aeb9c0fd1812ce2f015059e08cd", "fields": {"nom_de_la_commune": "SAMPOLO", "libell_d_acheminement": "SAMPOLO", "code_postal": "20134", "coordonnees_gps": [41.9757035744, 9.1524895794], "code_commune_insee": "2A268"}, "geometry": {"type": "Point", "coordinates": [9.1524895794, 41.9757035744]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f4f8c7f81de41f0b73b250e55e1b60f3b071046", "fields": {"code_postal": "20140", "code_commune_insee": "2A276", "libell_d_acheminement": "SERRA DI FERRO", "ligne_5": "PORTO POLLO", "nom_de_la_commune": "SERRA DI FERRO", "coordonnees_gps": [41.7771465438, 8.95137239938]}, "geometry": {"type": "Point", "coordinates": [8.95137239938, 41.7771465438]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ba28574f194afb6312629bd7992cb3fa0308bd29", "fields": {"nom_de_la_commune": "VALLE DI MEZZANA", "libell_d_acheminement": "VALLE DI MEZZANA", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A336"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7761524eb6ee260c3e46a27e599010506d6aaa5e", "fields": {"nom_de_la_commune": "VERO", "libell_d_acheminement": "VERO", "code_postal": "20172", "coordonnees_gps": [42.0609631919, 8.92212261346], "code_commune_insee": "2A345"}, "geometry": {"type": "Point", "coordinates": [8.92212261346, 42.0609631919]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "729781dc3d2f69b24296133cbd91100621f67d00", "fields": {"nom_de_la_commune": "VIGGIANELLO", "libell_d_acheminement": "VIGGIANELLO", "code_postal": "20110", "coordonnees_gps": [41.6455084953, 8.89371494323], "code_commune_insee": "2A349"}, "geometry": {"type": "Point", "coordinates": [8.89371494323, 41.6455084953]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64f92b657758d6a6470cf2e777010a26adc8d2e9", "fields": {"nom_de_la_commune": "VILLANOVA", "libell_d_acheminement": "VILLANOVA", "code_postal": "20167", "coordonnees_gps": [41.9750629665, 8.77513294931], "code_commune_insee": "2A351"}, "geometry": {"type": "Point", "coordinates": [8.77513294931, 41.9750629665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "33f175e9293f5a4b18d42be79ce57ccb83908421", "fields": {"nom_de_la_commune": "ZERUBIA", "libell_d_acheminement": "ZERUBIA", "code_postal": "20116", "coordonnees_gps": [41.7931582051, 9.08407548301], "code_commune_insee": "2A357"}, "geometry": {"type": "Point", "coordinates": [9.08407548301, 41.7931582051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8dc6800959eb74a028c890e1028430b97e6390f8", "fields": {"nom_de_la_commune": "ZICAVO", "libell_d_acheminement": "ZICAVO", "code_postal": "20132", "coordonnees_gps": [41.8845060051, 9.16685153828], "code_commune_insee": "2A359"}, "geometry": {"type": "Point", "coordinates": [9.16685153828, 41.8845060051]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cb0a3c1b0235b7d84aceeebeff5c6dcc7a9dabeb", "fields": {"nom_de_la_commune": "ZIGLIARA", "libell_d_acheminement": "ZIGLIARA", "code_postal": "20190", "coordonnees_gps": [41.8574694236, 8.99242736054], "code_commune_insee": "2A360"}, "geometry": {"type": "Point", "coordinates": [8.99242736054, 41.8574694236]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "db180d3287e2de69c8c70205ad7a237153fec9e6", "fields": {"nom_de_la_commune": "ALTIANI", "libell_d_acheminement": "ALTIANI", "code_postal": "20251", "coordonnees_gps": [42.2097375121, 9.34194965175], "code_commune_insee": "2B012"}, "geometry": {"type": "Point", "coordinates": [9.34194965175, 42.2097375121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d3f1d9d0e9104b4744a0f8a5997c8fadf659d27d", "fields": {"nom_de_la_commune": "ALZI", "libell_d_acheminement": "ALZI", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B013"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a4a25748eea6a85cd4f2cbf9563158b261b54dd6", "fields": {"nom_de_la_commune": "ASCO", "libell_d_acheminement": "ASCO", "code_postal": "20276", "coordonnees_gps": [42.4344485106, 8.99687739791], "code_commune_insee": "2B023"}, "geometry": {"type": "Point", "coordinates": [8.99687739791, 42.4344485106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5c983b0bb9704b0986ef9ce6f9d9566811ddcad7", "fields": {"nom_de_la_commune": "AVAPESSA", "libell_d_acheminement": "AVAPESSA", "code_postal": "20225", "coordonnees_gps": [42.5548622449, 8.91822255191], "code_commune_insee": "2B025"}, "geometry": {"type": "Point", "coordinates": [8.91822255191, 42.5548622449]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "827d82409a271dbf6314769241cc7f2c9f3286bd", "fields": {"nom_de_la_commune": "BIGORNO", "libell_d_acheminement": "BIGORNO", "code_postal": "20252", "coordonnees_gps": [42.5302771841, 9.28449262062], "code_commune_insee": "2B036"}, "geometry": {"type": "Point", "coordinates": [9.28449262062, 42.5302771841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64e47ed9a4514cdcee5b93b2df125f97c4389a21", "fields": {"nom_de_la_commune": "BISINCHI", "libell_d_acheminement": "BISINCHI", "code_postal": "20235", "coordonnees_gps": [42.4832385905, 9.2653892014], "code_commune_insee": "2B039"}, "geometry": {"type": "Point", "coordinates": [9.2653892014, 42.4832385905]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cfb49e3177112cb8fa6e2fed43f35099afcf264e", "fields": {"code_postal": "20290", "code_commune_insee": "2B042", "libell_d_acheminement": "BORGO", "ligne_5": "VALROSE", "nom_de_la_commune": "BORGO", "coordonnees_gps": [42.532413301, 9.42098474839]}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d2e8fbf48e3ddfbb3abc5400dd991d699601e90", "fields": {"nom_de_la_commune": "CAGNANO", "libell_d_acheminement": "CAGNANO", "code_postal": "20228", "coordonnees_gps": [42.8844689798, 9.39824491548], "code_commune_insee": "2B046"}, "geometry": {"type": "Point", "coordinates": [9.39824491548, 42.8844689798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823fbafdb05b37b2e9b0dd5a397520dd47186c81", "fields": {"nom_de_la_commune": "CALENZANA", "libell_d_acheminement": "CALENZANA", "code_postal": "20214", "coordonnees_gps": [42.4880074487, 8.81568831698], "code_commune_insee": "2B049"}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ce63aa3991789c9c5f6fb1d45313b3142e03f57", "fields": {"code_postal": "20214", "code_commune_insee": "2B049", "libell_d_acheminement": "CALENZANA", "ligne_5": "SUARE", "nom_de_la_commune": "CALENZANA", "coordonnees_gps": [42.4880074487, 8.81568831698]}, "geometry": {"type": "Point", "coordinates": [8.81568831698, 42.4880074487]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0eea103955ef3ac81f2b4c8ed344bad5ee01e1c8", "fields": {"nom_de_la_commune": "CAMPITELLO", "libell_d_acheminement": "CAMPITELLO", "code_postal": "20252", "coordonnees_gps": [42.5302771841, 9.28449262062], "code_commune_insee": "2B055"}, "geometry": {"type": "Point", "coordinates": [9.28449262062, 42.5302771841]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "00f480c7acaae14d82ae5da9774d12e48505e205", "fields": {"nom_de_la_commune": "CASAMACCIOLI", "libell_d_acheminement": "CASAMACCIOLI", "code_postal": "20224", "coordonnees_gps": [42.3286262979, 8.98251417824], "code_commune_insee": "2B073"}, "geometry": {"type": "Point", "coordinates": [8.98251417824, 42.3286262979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13fc0c8f23c52130e89ee406dcb880bb59421e40", "fields": {"nom_de_la_commune": "CASANOVA", "libell_d_acheminement": "CASANOVA", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B074"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bdea267f7e3852a5d69349150eea5b9fccccedf", "fields": {"nom_de_la_commune": "CASEVECCHIE", "libell_d_acheminement": "CASEVECCHIE", "code_postal": "20270", "coordonnees_gps": [42.1585517957, 9.43977225577], "code_commune_insee": "2B075"}, "geometry": {"type": "Point", "coordinates": [9.43977225577, 42.1585517957]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e24bd1592903fadf6f218f984aca91547b0486dc", "fields": {"nom_de_la_commune": "CASTELLARE DI MERCURIO", "libell_d_acheminement": "CASTELLARE DI MERCURIO", "code_postal": "20212", "coordonnees_gps": [42.2873324023, 9.28198985097], "code_commune_insee": "2B078"}, "geometry": {"type": "Point", "coordinates": [9.28198985097, 42.2873324023]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3f9f708a8bcc66da8e8a9d696d0b8329da95df55", "fields": {"nom_de_la_commune": "CASTINETA", "libell_d_acheminement": "CASTINETA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B082"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "87d7f1a22782fb42856a2712c83c12175a1fbd31", "fields": {"nom_de_la_commune": "CERVIONE", "libell_d_acheminement": "CERVIONE", "code_postal": "20221", "coordonnees_gps": [42.3298486664, 9.50290145478], "code_commune_insee": "2B087"}, "geometry": {"type": "Point", "coordinates": [9.50290145478, 42.3298486664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fde41b8f7a72154ab3e048844a402f299f1d4d8", "fields": {"nom_de_la_commune": "CORBARA", "libell_d_acheminement": "CORBARA", "code_postal": "20256", "coordonnees_gps": [42.6174159911, 8.90151546697], "code_commune_insee": "2B093"}, "geometry": {"type": "Point", "coordinates": [8.90151546697, 42.6174159911]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "053a3778de8b835bf522bcb24c513fb4fd368315", "fields": {"nom_de_la_commune": "FURIANI", "libell_d_acheminement": "FURIANI", "code_postal": "20600", "coordonnees_gps": [42.6694587934, 9.42115967008], "code_commune_insee": "2B120"}, "geometry": {"type": "Point", "coordinates": [9.42115967008, 42.6694587934]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "759e9942eff320afe4b1b3e79bfa53f0ea741af9", "fields": {"nom_de_la_commune": "GHISONI", "libell_d_acheminement": "GHISONI", "code_postal": "20227", "coordonnees_gps": [42.090759243, 9.21042108647], "code_commune_insee": "2B124"}, "geometry": {"type": "Point", "coordinates": [9.21042108647, 42.090759243]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "999c583b4864327a1ec6e207d5ae3360273af892", "fields": {"nom_de_la_commune": "L ILE ROUSSE", "libell_d_acheminement": "L ILE ROUSSE", "code_postal": "20220", "coordonnees_gps": [42.6071035019, 8.91629984212], "code_commune_insee": "2B134"}, "geometry": {"type": "Point", "coordinates": [8.91629984212, 42.6071035019]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b964255ea21abe578b0b47b04490a0d391370ac", "fields": {"code_postal": "20243", "code_commune_insee": "2B135", "libell_d_acheminement": "ISOLACCIO DI FIUMORBO", "ligne_5": "AJIOLA", "nom_de_la_commune": "ISOLACCIO DI FIUMORBO", "coordonnees_gps": [41.9932570337, 9.30778955947]}, "geometry": {"type": "Point", "coordinates": [9.30778955947, 41.9932570337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2031b9edd89f8951715b26d59edc1e40a55e1fc9", "fields": {"nom_de_la_commune": "LOZZI", "libell_d_acheminement": "LOZZI", "code_postal": "20224", "coordonnees_gps": [42.3286262979, 8.98251417824], "code_commune_insee": "2B147"}, "geometry": {"type": "Point", "coordinates": [8.98251417824, 42.3286262979]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e262fbf1a1b10b8272595dd9a4d63edf47152695", "fields": {"nom_de_la_commune": "LUCCIANA", "libell_d_acheminement": "LUCCIANA", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B148"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d28463287686947beae14a37a9ec2c228175c51e", "fields": {"code_postal": "20290", "code_commune_insee": "2B148", "libell_d_acheminement": "LUCCIANA", "ligne_5": "CASAMOZZA", "nom_de_la_commune": "LUCCIANA", "coordonnees_gps": [42.532413301, 9.42098474839]}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5bfb2b7cd71d65e0f0989430f7cb51268f9772c2", "fields": {"code_postal": "20228", "code_commune_insee": "2B152", "libell_d_acheminement": "LURI", "ligne_5": "SANTA SEVERA", "nom_de_la_commune": "LURI", "coordonnees_gps": [42.8844689798, 9.39824491548]}, "geometry": {"type": "Point", "coordinates": [9.39824491548, 42.8844689798]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e614d943b78aded4ccc71db49487df79419b303", "fields": {"nom_de_la_commune": "MAUSOLEO", "libell_d_acheminement": "MAUSOLEO", "code_postal": "20259", "coordonnees_gps": [42.5155262709, 9.0055257703], "code_commune_insee": "2B156"}, "geometry": {"type": "Point", "coordinates": [9.0055257703, 42.5155262709]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a154823a93cb91bdc41c9fd66b1a0c5465d80c8b", "fields": {"nom_de_la_commune": "MONACIA D OREZZA", "libell_d_acheminement": "MONACIA D OREZZA", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B164"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "56c029ad1e5d1f4b0a460a8eb3a001069090c7e7", "fields": {"nom_de_la_commune": "NOVELLA", "libell_d_acheminement": "NOVELLA", "code_postal": "20226", "coordonnees_gps": [42.6078256045, 9.04614705699], "code_commune_insee": "2B180"}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fa6753d4529f6854dbc98fc076c7c94a53e0993", "fields": {"nom_de_la_commune": "ORTALE", "libell_d_acheminement": "ORTALE", "code_postal": "20234", "coordonnees_gps": [42.3266997005, 9.40651331114], "code_commune_insee": "2B194"}, "geometry": {"type": "Point", "coordinates": [9.40651331114, 42.3266997005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "45418d3090eb8b21baac472453209411b0668ca2", "fields": {"nom_de_la_commune": "ORTIPORIO", "libell_d_acheminement": "ORTIPORIO", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B195"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed87170c607604d77a086353686ce132553c2919", "fields": {"code_postal": "20213", "code_commune_insee": "2B207", "libell_d_acheminement": "PENTA DI CASINCA", "ligne_5": "FOLELLI", "nom_de_la_commune": "PENTA DI CASINCA", "coordonnees_gps": [42.4502169346, 9.47301730801]}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "821acbd2ed17cfcff49cb2223173fc196044ea43", "fields": {"nom_de_la_commune": "PIANO", "libell_d_acheminement": "PIANO", "code_postal": "20215", "coordonnees_gps": [42.4855553349, 9.4574482552], "code_commune_insee": "2B214"}, "geometry": {"type": "Point", "coordinates": [9.4574482552, 42.4855553349]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f9a8db3db1c5990a205e3920d04f1945b6886a29", "fields": {"nom_de_la_commune": "PIEDIGRIGGIO", "libell_d_acheminement": "PIEDIGRIGGIO", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B220"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "62b445b890e41f047b707f2c8f06c15ff2954269", "fields": {"nom_de_la_commune": "PIEDIPARTINO", "libell_d_acheminement": "PIEDIPARTINO", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B221"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "153e101a93fc3a26d8970847a24c67e57e96c908", "fields": {"nom_de_la_commune": "PIETRACORBARA", "libell_d_acheminement": "PIETRACORBARA", "code_postal": "20233", "coordonnees_gps": [42.8294989749, 9.4407054094], "code_commune_insee": "2B224"}, "geometry": {"type": "Point", "coordinates": [9.4407054094, 42.8294989749]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f0232272031dedef6f5f4d7dad3651a641ab3fe5", "fields": {"nom_de_la_commune": "PIETRA DI VERDE", "libell_d_acheminement": "PIETRA DI VERDE", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B225"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fae45b34ada06f5db00dcbf363ed76bf402d5319", "fields": {"nom_de_la_commune": "PIETRASERENA", "libell_d_acheminement": "PIETRASERENA", "code_postal": "20251", "coordonnees_gps": [42.2097375121, 9.34194965175], "code_commune_insee": "2B226"}, "geometry": {"type": "Point", "coordinates": [9.34194965175, 42.2097375121]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b9fab53029dafc080d5003c8278ebf8b7251e138", "fields": {"nom_de_la_commune": "PRUNELLI DI CASACCONI", "libell_d_acheminement": "PRUNELLI DI CASACCONI", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B250"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b4281b49a1a7035f05eba8499c4b6bc9ea1a1e7", "fields": {"nom_de_la_commune": "QUERCITELLO", "libell_d_acheminement": "QUERCITELLO", "code_postal": "20237", "coordonnees_gps": [42.4262564988, 9.35964156128], "code_commune_insee": "2B255"}, "geometry": {"type": "Point", "coordinates": [9.35964156128, 42.4262564988]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1990fb9315ff65190a474390507b36e8a44fcf3c", "fields": {"nom_de_la_commune": "RUSIO", "libell_d_acheminement": "RUSIO", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B264"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ad68ee4d6d629f57fe776f5e57c7b4845c455da", "fields": {"nom_de_la_commune": "SPELONCATO", "libell_d_acheminement": "SPELONCATO", "code_postal": "20226", "coordonnees_gps": [42.6078256045, 9.04614705699], "code_commune_insee": "2B290"}, "geometry": {"type": "Point", "coordinates": [9.04614705699, 42.6078256045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc6c61c30742b1dbbad9b4e054f1220c1ed7f341", "fields": {"nom_de_la_commune": "STAZZONA", "libell_d_acheminement": "STAZZONA", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B291"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "20405f6fa9d9a07358f5630e1e3620a3e24dae3e", "fields": {"nom_de_la_commune": "SAN GAVINO D AMPUGNANI", "libell_d_acheminement": "SAN GAVINO D AMPUGNANI", "code_postal": "20213", "coordonnees_gps": [42.4502169346, 9.47301730801], "code_commune_insee": "2B299"}, "geometry": {"type": "Point", "coordinates": [9.47301730801, 42.4502169346]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49a17bd7bc0fc9df5acb025fe53bbdaf945e4566", "fields": {"nom_de_la_commune": "SAN GAVINO DI TENDA", "libell_d_acheminement": "SAN GAVINO DI TENDA", "code_postal": "20246", "coordonnees_gps": [42.651217902, 9.20568525518], "code_commune_insee": "2B301"}, "geometry": {"type": "Point", "coordinates": [9.20568525518, 42.651217902]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1f245d2341cfa97f2b113e0cdd22e50b5be30966", "fields": {"code_postal": "20230", "code_commune_insee": "2B303", "libell_d_acheminement": "SAN GIULIANO", "ligne_5": "ALISTRO", "nom_de_la_commune": "SAN GIULIANO", "coordonnees_gps": [42.30630414, 9.49791395184]}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d807b30f891d103fc18672c7c62f306498276105", "fields": {"nom_de_la_commune": "SAN LORENZO", "libell_d_acheminement": "SAN LORENZO", "code_postal": "20244", "coordonnees_gps": [42.3740361377, 9.27018170575], "code_commune_insee": "2B304"}, "geometry": {"type": "Point", "coordinates": [9.27018170575, 42.3740361377]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e849a0fb16884a67ee5b3e474abf6f3c9e4be993", "fields": {"nom_de_la_commune": "SANTA LUCIA DI MERCURIO", "libell_d_acheminement": "SANTA LUCIA DI MERCURIO", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B306"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6797d7aa89c46d4e15a94226359bcfc8e97884c9", "fields": {"nom_de_la_commune": "SANTA MARIA DI LOTA", "libell_d_acheminement": "SANTA MARIA DI LOTA", "code_postal": "20200", "coordonnees_gps": [42.7169845542, 9.42659304409], "code_commune_insee": "2B309"}, "geometry": {"type": "Point", "coordinates": [9.42659304409, 42.7169845542]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "409c26d2ba83bfaa8a95fdd50ec572d994bf63f5", "fields": {"nom_de_la_commune": "SANTA MARIA POGGIO", "libell_d_acheminement": "SANTA MARIA POGGIO", "code_postal": "20221", "coordonnees_gps": [42.3298486664, 9.50290145478], "code_commune_insee": "2B311"}, "geometry": {"type": "Point", "coordinates": [9.50290145478, 42.3298486664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34d060a62fe2b03c48972d94ec6787ccf491cd17", "fields": {"code_postal": "20217", "code_commune_insee": "2B314", "libell_d_acheminement": "SANTO PIETRO DI TENDA", "ligne_5": "CASTA", "nom_de_la_commune": "SANTO PIETRO DI TENDA", "coordonnees_gps": [42.7166963955, 9.26424546036]}, "geometry": {"type": "Point", "coordinates": [9.26424546036, 42.7166963955]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9f7598704cb3aff2334bb32c3c9b0fbf75a44d2d", "fields": {"nom_de_la_commune": "TALASANI", "libell_d_acheminement": "TALASANI", "code_postal": "20230", "coordonnees_gps": [42.30630414, 9.49791395184], "code_commune_insee": "2B319"}, "geometry": {"type": "Point", "coordinates": [9.49791395184, 42.30630414]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e5415d77face175992f1e0bd0a96d5da27f200e7", "fields": {"nom_de_la_commune": "TOMINO", "libell_d_acheminement": "TOMINO", "code_postal": "20248", "coordonnees_gps": [42.9672830665, 9.42945630303], "code_commune_insee": "2B327"}, "geometry": {"type": "Point", "coordinates": [9.42945630303, 42.9672830665]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "abe3ece619ae96fd104a559cb729bf341624865d", "fields": {"nom_de_la_commune": "TRALONCA", "libell_d_acheminement": "TRALONCA", "code_postal": "20250", "coordonnees_gps": [42.2819273038, 9.12300751022], "code_commune_insee": "2B329"}, "geometry": {"type": "Point", "coordinates": [9.12300751022, 42.2819273038]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e2ac77a45cde9b6a68e101cb4510ee5827c7c39", "fields": {"nom_de_la_commune": "URTACA", "libell_d_acheminement": "URTACA", "code_postal": "20218", "coordonnees_gps": [42.4947584139, 9.16559153423], "code_commune_insee": "2B332"}, "geometry": {"type": "Point", "coordinates": [9.16559153423, 42.4947584139]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f35e9d81a32450c0c4132142ca78a4c802effa04", "fields": {"nom_de_la_commune": "LA FORESTIERE", "libell_d_acheminement": "LA FORESTIERE", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51258"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cb8bf31c3fff0bb1798a9e300a8ebb24322fca1", "fields": {"nom_de_la_commune": "FRESNE LES REIMS", "libell_d_acheminement": "FRESNE LES REIMS", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51261"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "46b292d6c72b562d5c841e50b90ef739c9988633", "fields": {"nom_de_la_commune": "FROMENTIERES", "libell_d_acheminement": "FROMENTIERES", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51263"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bdf3d42639e3c8601d1659c4413b4745a2098896", "fields": {"nom_de_la_commune": "GERMAINE", "libell_d_acheminement": "GERMAINE", "code_postal": "51160", "coordonnees_gps": [49.092104642, 4.00815229027], "code_commune_insee": "51266"}, "geometry": {"type": "Point", "coordinates": [4.00815229027, 49.092104642]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0a04c7d40eaf1865b86ecb3ffe6c63439beef4ef", "fields": {"nom_de_la_commune": "GIVRY LES LOISY", "libell_d_acheminement": "GIVRY LES LOISY", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51273"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e49a75539b80f4dc99c0f03452c62d10da5ba5b", "fields": {"nom_de_la_commune": "GIZAUCOURT", "libell_d_acheminement": "GIZAUCOURT", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51274"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3ffba57921b9ef41710c93f97d2a191ce22697d2", "fields": {"nom_de_la_commune": "GLANNES", "libell_d_acheminement": "GLANNES", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51275"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0b77ada15c397b5eedeb4c3dbcd40623fad49925", "fields": {"nom_de_la_commune": "GOURGANCON", "libell_d_acheminement": "GOURGANCON", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51276"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "49dbaf8cb8dda58263f4b287fc4cd74cae7704ef", "fields": {"nom_de_la_commune": "LES GRANDES LOGES", "libell_d_acheminement": "LES GRANDES LOGES", "code_postal": "51400", "coordonnees_gps": [49.1183553439, 4.34139173225], "code_commune_insee": "51278"}, "geometry": {"type": "Point", "coordinates": [4.34139173225, 49.1183553439]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620dd6cfeaa7d4503739422d89580d507854497b", "fields": {"nom_de_la_commune": "GRAUVES", "libell_d_acheminement": "GRAUVES", "code_postal": "51190", "coordonnees_gps": [48.9639815903, 4.02338180898], "code_commune_insee": "51281"}, "geometry": {"type": "Point", "coordinates": [4.02338180898, 48.9639815903]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ab2a1511bd81ac37d09a03b2063f7576846a03e9", "fields": {"nom_de_la_commune": "GUEUX", "libell_d_acheminement": "GUEUX", "code_postal": "51390", "coordonnees_gps": [49.2281293671, 3.89686602113], "code_commune_insee": "51282"}, "geometry": {"type": "Point", "coordinates": [3.89686602113, 49.2281293671]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ce7146ba26a2754f6bc1d36504dc3d61ac514395", "fields": {"nom_de_la_commune": "HEILTZ LE HUTIER", "libell_d_acheminement": "HEILTZ LE HUTIER", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51288"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5fbe4be01fa8caf499bdf9d13ea77e24d8aedfff", "fields": {"nom_de_la_commune": "HERMONVILLE", "libell_d_acheminement": "HERMONVILLE", "code_postal": "51220", "coordonnees_gps": [49.3404112551, 3.95866428913], "code_commune_insee": "51291"}, "geometry": {"type": "Point", "coordinates": [3.95866428913, 49.3404112551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8b07ebc23c5f5f48df2596f79ec65c3df0ffaf0a", "fields": {"nom_de_la_commune": "LARZICOURT", "libell_d_acheminement": "LARZICOURT", "code_postal": "51290", "coordonnees_gps": [48.5969777002, 4.64247571558], "code_commune_insee": "51316"}, "geometry": {"type": "Point", "coordinates": [4.64247571558, 48.5969777002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ec53240b4d20766744caf7b306fc8c400e13775e", "fields": {"nom_de_la_commune": "LEUVRIGNY", "libell_d_acheminement": "LEUVRIGNY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51320"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e1ddd15c60fd96eacdddd073ab01e52a0cd130a5", "fields": {"nom_de_la_commune": "LHERY", "libell_d_acheminement": "LHERY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51321"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b2eb0b95ce1401408cdb5e88169f963feb666297", "fields": {"nom_de_la_commune": "LINTHES", "libell_d_acheminement": "LINTHES", "code_postal": "51230", "coordonnees_gps": [48.7311539666, 3.95932221935], "code_commune_insee": "51324"}, "geometry": {"type": "Point", "coordinates": [3.95932221935, 48.7311539666]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ee492e95368cf37bb49805c41762b0c2f97ff95e", "fields": {"nom_de_la_commune": "LUDES", "libell_d_acheminement": "LUDES", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51333"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6ac7756ce5686f14f0cfbd5410ea00ba865efb96", "fields": {"nom_de_la_commune": "MAIRY SUR MARNE", "libell_d_acheminement": "MAIRY SUR MARNE", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51339"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b7797dd3f1813407a39ee52dddc965ca6f57c20d", "fields": {"nom_de_la_commune": "MALMY", "libell_d_acheminement": "MALMY", "code_postal": "51800", "coordonnees_gps": [49.1199276224, 4.8358687485], "code_commune_insee": "51341"}, "geometry": {"type": "Point", "coordinates": [4.8358687485, 49.1199276224]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "003a3255059e15ceee11dfa21b5bf17c97c239e6", "fields": {"code_postal": "51700", "code_commune_insee": "51346", "libell_d_acheminement": "MAREUIL LE PORT", "ligne_5": "PORT A BINSON", "nom_de_la_commune": "MAREUIL LE PORT", "coordonnees_gps": [49.0741079676, 3.71485064458]}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "01c48f26fe7dc0f2bdd6a59e1f993ec09ed73866", "fields": {"nom_de_la_commune": "MARSON", "libell_d_acheminement": "MARSON", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51354"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dc69e51f281250985500e86a38fe8c4a7205bc16", "fields": {"nom_de_la_commune": "LES MESNEUX", "libell_d_acheminement": "LES MESNEUX", "code_postal": "51370", "coordonnees_gps": [49.2503894906, 3.96059449419], "code_commune_insee": "51365"}, "geometry": {"type": "Point", "coordinates": [3.96059449419, 49.2503894906]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b631e023b19113e3fa568b41d6a6cde2dd18e849", "fields": {"nom_de_la_commune": "MOEURS VERDEY", "libell_d_acheminement": "MOEURS VERDEY", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51369"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edc7a31a70f5eb03cef0dd80bda2b2a56903feaa", "fields": {"nom_de_la_commune": "MONCETZ LONGEVAS", "libell_d_acheminement": "MONCETZ LONGEVAS", "code_postal": "51470", "coordonnees_gps": [48.9418441799, 4.42855134186], "code_commune_insee": "51372"}, "geometry": {"type": "Point", "coordinates": [4.42855134186, 48.9418441799]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2881cf585fbcc7b31046e7bcfd9ff2e8ec0327", "fields": {"nom_de_la_commune": "MONDEMENT MONTGIVROUX", "libell_d_acheminement": "MONDEMENT MONTGIVROUX", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51374"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a2743705d5361af3cad886b554c6962d8b873fd", "fields": {"nom_de_la_commune": "MONTMIRAIL", "libell_d_acheminement": "MONTMIRAIL", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51380"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "83d318de6b911880c86e25478c83b136570c309d", "fields": {"code_postal": "51270", "code_commune_insee": "51381", "libell_d_acheminement": "MONTMORT LUCY", "ligne_5": "LUCY", "nom_de_la_commune": "MONTMORT LUCY", "coordonnees_gps": [48.9022735758, 3.78172379216]}, "geometry": {"type": "Point", "coordinates": [3.78172379216, 48.9022735758]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ea0ccbe806377a5b474877c194b102b99a6a0fd7", "fields": {"nom_de_la_commune": "LA NEUVILLE AUX LARRIS", "libell_d_acheminement": "LA NEUVILLE AUX LARRIS", "code_postal": "51480", "coordonnees_gps": [49.0992277183, 3.86714577675], "code_commune_insee": "51398"}, "geometry": {"type": "Point", "coordinates": [3.86714577675, 49.0992277183]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "77372a9ec875f9a8bff9c8221eb42fba58fdfd3e", "fields": {"nom_de_la_commune": "OIRY", "libell_d_acheminement": "OIRY", "code_postal": "51530", "coordonnees_gps": [49.0027738342, 3.92375906308], "code_commune_insee": "51413"}, "geometry": {"type": "Point", "coordinates": [3.92375906308, 49.0027738342]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "179c218af47c00352886d148743ec261d6d84718", "fields": {"nom_de_la_commune": "OMEY", "libell_d_acheminement": "OMEY", "code_postal": "51240", "coordonnees_gps": [48.8713241468, 4.48928355914], "code_commune_insee": "51415"}, "geometry": {"type": "Point", "coordinates": [4.48928355914, 48.8713241468]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ebda1902030d70b790ebc68c5e6efdc45ed24889", "fields": {"nom_de_la_commune": "OUTREPONT", "libell_d_acheminement": "OUTREPONT", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51420"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "39b336102b07980d26024073673b1ca45dfcb9b5", "fields": {"nom_de_la_commune": "PASSY GRIGNY", "libell_d_acheminement": "PASSY GRIGNY", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51425"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4e1e60bc097543e232bff0296e3f12c3887644a", "fields": {"nom_de_la_commune": "PIERRE MORAINS", "libell_d_acheminement": "PIERRE MORAINS", "code_postal": "51130", "coordonnees_gps": [48.8827840053, 4.0351549525], "code_commune_insee": "51430"}, "geometry": {"type": "Point", "coordinates": [4.0351549525, 48.8827840053]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "634cabf21882cf98d1854425ddb8953170c6baeb", "fields": {"nom_de_la_commune": "POILLY", "libell_d_acheminement": "POILLY", "code_postal": "51170", "coordonnees_gps": [49.2286555587, 3.76316575705], "code_commune_insee": "51437"}, "geometry": {"type": "Point", "coordinates": [3.76316575705, 49.2286555587]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "941702a79ceb6df212f7cc7eababea5076bd72da", "fields": {"nom_de_la_commune": "PRINGY", "libell_d_acheminement": "PRINGY", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51446"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18742bc00cc8db9f6d4957ef8c41b83b9ea86de1", "fields": {"nom_de_la_commune": "REIMS LA BRULEE", "libell_d_acheminement": "REIMS LA BRULEE", "code_postal": "51300", "coordonnees_gps": [48.7342948519, 4.60628252938], "code_commune_insee": "51455"}, "geometry": {"type": "Point", "coordinates": [4.60628252938, 48.7342948519]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4c468a342e22a9071da1bb97860d647e7760e57f", "fields": {"nom_de_la_commune": "REUVES", "libell_d_acheminement": "REUVES", "code_postal": "51120", "coordonnees_gps": [48.7149745875, 3.71343750718], "code_commune_insee": "51458"}, "geometry": {"type": "Point", "coordinates": [3.71343750718, 48.7149745875]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8b5d5158f02cf9702b55f6b005a2532ef776bc4", "fields": {"nom_de_la_commune": "RIEUX", "libell_d_acheminement": "RIEUX", "code_postal": "51210", "coordonnees_gps": [48.8662532943, 3.59451333889], "code_commune_insee": "51460"}, "geometry": {"type": "Point", "coordinates": [3.59451333889, 48.8662532943]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "930156c0ebaf649d02ba9449292247aa71b54b32", "fields": {"nom_de_la_commune": "SACY", "libell_d_acheminement": "SACY", "code_postal": "51500", "coordonnees_gps": [49.1723800195, 4.04564192056], "code_commune_insee": "51471"}, "geometry": {"type": "Point", "coordinates": [4.04564192056, 49.1723800195]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4d839f5dcb6df9e219b1b26cdc6ce601d246f1f7", "fields": {"nom_de_la_commune": "ST ETIENNE SUR SUIPPE", "libell_d_acheminement": "ST ETIENNE SUR SUIPPE", "code_postal": "51110", "coordonnees_gps": [49.3507199437, 4.15914850255], "code_commune_insee": "51477"}, "geometry": {"type": "Point", "coordinates": [4.15914850255, 49.3507199437]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64667c4df6f9c47b8f9243cdad5ffbe4659325eb", "fields": {"nom_de_la_commune": "STE GEMME", "libell_d_acheminement": "STE GEMME", "code_postal": "51700", "coordonnees_gps": [49.0741079676, 3.71485064458], "code_commune_insee": "51480"}, "geometry": {"type": "Point", "coordinates": [3.71485064458, 49.0741079676]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2ee78d4fcd4623709dd846843f179a0688543955", "fields": {"nom_de_la_commune": "ST HILAIRE LE GRAND", "libell_d_acheminement": "ST HILAIRE LE GRAND", "code_postal": "51600", "coordonnees_gps": [49.1559499473, 4.54293058803], "code_commune_insee": "51486"}, "geometry": {"type": "Point", "coordinates": [4.54293058803, 49.1559499473]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3cca8e38811173e6b538d626d05c634e3214704c", "fields": {"nom_de_la_commune": "ST JUST SAUVAGE", "libell_d_acheminement": "ST JUST SAUVAGE", "code_postal": "51260", "coordonnees_gps": [48.5866624958, 3.75739631209], "code_commune_insee": "51492"}, "geometry": {"type": "Point", "coordinates": [3.75739631209, 48.5866624958]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "989aba11d4d1137c45b923f41718a8818b1f7a2e", "fields": {"nom_de_la_commune": "ROUILLY", "libell_d_acheminement": "ROUILLY", "code_postal": "77160", "coordonnees_gps": [48.5896767151, 3.24326653179], "code_commune_insee": "77391"}, "geometry": {"type": "Point", "coordinates": [3.24326653179, 48.5896767151]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a44f7cd84832e45fc113475540df4100c1e1f779", "fields": {"nom_de_la_commune": "SABLONNIERES", "libell_d_acheminement": "SABLONNIERES", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77398"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4054c346323fe6c9badb0572f7d9e81253c9d1c5", "fields": {"nom_de_la_commune": "ST ANGE LE VIEL", "libell_d_acheminement": "ST ANGE LE VIEL", "code_postal": "77710", "coordonnees_gps": [48.2430767523, 2.88428828636], "code_commune_insee": "77399"}, "geometry": {"type": "Point", "coordinates": [2.88428828636, 48.2430767523]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29aa4dfb68194013dacec3080bd705fd82887ae1", "fields": {"nom_de_la_commune": "ST AUGUSTIN", "libell_d_acheminement": "ST AUGUSTIN", "code_postal": "77515", "coordonnees_gps": [48.791262965, 2.99641701486], "code_commune_insee": "77400"}, "geometry": {"type": "Point", "coordinates": [2.99641701486, 48.791262965]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7812da36497cdc7d224969907c5c161b83eb2461", "fields": {"nom_de_la_commune": "ST DENIS LES REBAIS", "libell_d_acheminement": "ST DENIS LES REBAIS", "code_postal": "77510", "coordonnees_gps": [48.8662025287, 3.27608944566], "code_commune_insee": "77406"}, "geometry": {"type": "Point", "coordinates": [3.27608944566, 48.8662025287]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c8f94fd259e04637b6e33d6d75f8ecf4f0d7531", "fields": {"nom_de_la_commune": "ST LOUP DE NAUD", "libell_d_acheminement": "ST LOUP DE NAUD", "code_postal": "77650", "coordonnees_gps": [48.5152037389, 3.24054822685], "code_commune_insee": "77418"}, "geometry": {"type": "Point", "coordinates": [3.24054822685, 48.5152037389]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f529c90ae95f2a11566455b9f6546cf18e844852", "fields": {"nom_de_la_commune": "ST MAMMES", "libell_d_acheminement": "ST MAMMES", "code_postal": "77670", "coordonnees_gps": [48.4047875044, 2.85078204772], "code_commune_insee": "77419"}, "geometry": {"type": "Point", "coordinates": [2.85078204772, 48.4047875044]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ada0c0d26791048afbfa1da542afb001a469ef61", "fields": {"nom_de_la_commune": "ST MARTIN DES CHAMPS", "libell_d_acheminement": "ST MARTIN DES CHAMPS", "code_postal": "77320", "coordonnees_gps": [48.7632652303, 3.31883214084], "code_commune_insee": "77423"}, "geometry": {"type": "Point", "coordinates": [3.31883214084, 48.7632652303]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2d6c3d229b6f39aa010ab2701e42248de85b90d1", "fields": {"nom_de_la_commune": "ST MARTIN EN BIERE", "libell_d_acheminement": "ST MARTIN EN BIERE", "code_postal": "77630", "coordonnees_gps": [48.4243787367, 2.57257810234], "code_commune_insee": "77425"}, "geometry": {"type": "Point", "coordinates": [2.57257810234, 48.4243787367]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aeeefed673f276d67ec44381c272950503dbb812", "fields": {"nom_de_la_commune": "SAMOREAU", "libell_d_acheminement": "SAMOREAU", "code_postal": "77210", "coordonnees_gps": [48.417089136, 2.75506799012], "code_commune_insee": "77442"}, "geometry": {"type": "Point", "coordinates": [2.75506799012, 48.417089136]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "921093559e3b6b32bf0bf833cdb7661915cd67ce", "fields": {"nom_de_la_commune": "SOGNOLLES EN MONTOIS", "libell_d_acheminement": "SOGNOLLES EN MONTOIS", "code_postal": "77520", "coordonnees_gps": [48.4787752425, 3.12194735393], "code_commune_insee": "77454"}, "geometry": {"type": "Point", "coordinates": [3.12194735393, 48.4787752425]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b2535f832955b89d132984e23f8c387cc59ecd9", "fields": {"nom_de_la_commune": "TANCROU", "libell_d_acheminement": "TANCROU", "code_postal": "77440", "coordonnees_gps": [49.0212011816, 3.05011291504], "code_commune_insee": "77460"}, "geometry": {"type": "Point", "coordinates": [3.05011291504, 49.0212011816]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1fbc32796c663095b6ae046da9e457ad6263482a", "fields": {"nom_de_la_commune": "THIEUX", "libell_d_acheminement": "THIEUX", "code_postal": "77230", "coordonnees_gps": [49.0375720104, 2.68011471653], "code_commune_insee": "77462"}, "geometry": {"type": "Point", "coordinates": [2.68011471653, 49.0375720104]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "825d392dee145fe8506205a4d49d3ecb62d48fb1", "fields": {"nom_de_la_commune": "LA TOMBE", "libell_d_acheminement": "LA TOMBE", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77467"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e2007c9db964b0c0849daafcce9d5beb24b012", "fields": {"nom_de_la_commune": "TRILBARDOU", "libell_d_acheminement": "TRILBARDOU", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77474"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "58d2d767bc985542858ca6b81a18c922c6e61e01", "fields": {"nom_de_la_commune": "LE VAUDOUE", "libell_d_acheminement": "LE VAUDOUE", "code_postal": "77123", "coordonnees_gps": [48.3612793646, 2.50123990973], "code_commune_insee": "77485"}, "geometry": {"type": "Point", "coordinates": [2.50123990973, 48.3612793646]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4efa80203d6ee960498e576301b864cdf5d8461b", "fields": {"nom_de_la_commune": "VAUX LE PENIL", "libell_d_acheminement": "VAUX LE PENIL", "code_postal": "77000", "coordonnees_gps": [48.5229543545, 2.67825416798], "code_commune_insee": "77487"}, "geometry": {"type": "Point", "coordinates": [2.67825416798, 48.5229543545]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b4a54b8fb8c323aecda842bc9741e439e5b6ddb8", "fields": {"nom_de_la_commune": "VIGNELY", "libell_d_acheminement": "VIGNELY", "code_postal": "77450", "coordonnees_gps": [48.9197013165, 2.80318191468], "code_commune_insee": "77498"}, "geometry": {"type": "Point", "coordinates": [2.80318191468, 48.9197013165]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "91b6cf78f5ce84f49629fde2bb7849f98ccb5f64", "fields": {"nom_de_la_commune": "VILLENEUVE LE COMTE", "libell_d_acheminement": "VILLENEUVE LE COMTE", "code_postal": "77174", "coordonnees_gps": [48.8118209596, 2.82523717272], "code_commune_insee": "77508"}, "geometry": {"type": "Point", "coordinates": [2.82523717272, 48.8118209596]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "317d2099583d41d37c841abe1827fe6d62ae132d", "fields": {"nom_de_la_commune": "VILLEPARISIS", "libell_d_acheminement": "VILLEPARISIS", "code_postal": "77270", "coordonnees_gps": [48.9416412171, 2.61698901012], "code_commune_insee": "77514"}, "geometry": {"type": "Point", "coordinates": [2.61698901012, 48.9416412171]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "554298e0a1296132e9d89b2ca3be204481be74d6", "fields": {"nom_de_la_commune": "VILLE ST JACQUES", "libell_d_acheminement": "VILLE ST JACQUES", "code_postal": "77130", "coordonnees_gps": [48.3779377733, 2.96426271153], "code_commune_insee": "77516"}, "geometry": {"type": "Point", "coordinates": [2.96426271153, 48.3779377733]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6158016ab725d4c9474f30bbe42c2ae5050b98aa", "fields": {"nom_de_la_commune": "VILLEVAUDE", "libell_d_acheminement": "VILLEVAUDE", "code_postal": "77410", "coordonnees_gps": [48.9493778355, 2.7161171355], "code_commune_insee": "77517"}, "geometry": {"type": "Point", "coordinates": [2.7161171355, 48.9493778355]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1c876f34936c396236ab489ea6e0c325bd577438", "fields": {"nom_de_la_commune": "VINCY MANOEUVRE", "libell_d_acheminement": "VINCY MANOEUVRE", "code_postal": "77139", "coordonnees_gps": [49.0542002868, 2.91324246435], "code_commune_insee": "77526"}, "geometry": {"type": "Point", "coordinates": [2.91324246435, 49.0542002868]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "419f9e55983770c8c783882fb491f6b4b77eebce", "fields": {"nom_de_la_commune": "VOISENON", "libell_d_acheminement": "VOISENON", "code_postal": "77950", "coordonnees_gps": [48.5738526106, 2.69879445507], "code_commune_insee": "77528"}, "geometry": {"type": "Point", "coordinates": [2.69879445507, 48.5738526106]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c8cec5851768a39b005352c4a951754a0bd69766", "fields": {"nom_de_la_commune": "ALLAINVILLE", "libell_d_acheminement": "ALLAINVILLE AUX BOIS", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78009"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e9ebc645bd56e2fd26123b53ae75c2d78ea7fc0", "fields": {"nom_de_la_commune": "LES ALLUETS LE ROI", "libell_d_acheminement": "LES ALLUETS LE ROI", "code_postal": "78580", "coordonnees_gps": [48.9115359215, 1.85464080314], "code_commune_insee": "78010"}, "geometry": {"type": "Point", "coordinates": [1.85464080314, 48.9115359215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2b72a70929b88d55cfa36f8f22a3e420e6229afe", "fields": {"code_postal": "78410", "code_commune_insee": "78029", "libell_d_acheminement": "AUBERGENVILLE", "ligne_5": "ELISABETHVILLE", "nom_de_la_commune": "AUBERGENVILLE", "coordonnees_gps": [48.9601241693, 1.86465256885]}, "geometry": {"type": "Point", "coordinates": [1.86465256885, 48.9601241693]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7e250014f1c279267f0cf2a1f9b98a08f8b5be97", "fields": {"nom_de_la_commune": "AULNAY SUR MAULDRE", "libell_d_acheminement": "AULNAY SUR MAULDRE", "code_postal": "78126", "coordonnees_gps": [48.9287058595, 1.84181126526], "code_commune_insee": "78033"}, "geometry": {"type": "Point", "coordinates": [1.84181126526, 48.9287058595]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6e25b5dce46648e0ca3500bd601c4365d3abf364", "fields": {"nom_de_la_commune": "BAILLY", "libell_d_acheminement": "BAILLY", "code_postal": "78870", "coordonnees_gps": [48.8368156736, 2.08134847066], "code_commune_insee": "78043"}, "geometry": {"type": "Point", "coordinates": [2.08134847066, 48.8368156736]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "18df17fd2d3d2853bf0453d667bc0e5dbaf935fd", "fields": {"code_postal": "78650", "code_commune_insee": "78062", "libell_d_acheminement": "BEYNES", "ligne_5": "LA MALADRERIE", "nom_de_la_commune": "BEYNES", "coordonnees_gps": [48.853666314, 1.86642479384]}, "geometry": {"type": "Point", "coordinates": [1.86642479384, 48.853666314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f2b69dae10d996a679bc563ec5cde34712e834c7", "fields": {"nom_de_la_commune": "BOISSY SANS AVOIR", "libell_d_acheminement": "BOISSY SANS AVOIR", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78084"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bd074daa5ffb7940a1424a7438baf05b448399f", "fields": {"nom_de_la_commune": "BREUIL BOIS ROBERT", "libell_d_acheminement": "BREUIL BOIS ROBERT", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78104"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "602041559d1b6bca3bb6e6127f15bf5c27787221", "fields": {"nom_de_la_commune": "BRUEIL EN VEXIN", "libell_d_acheminement": "BRUEIL EN VEXIN", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78113"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2f0747641df6626dadc0cc9c2adac45c0e2fd4df", "fields": {"nom_de_la_commune": "LA CELLE ST CLOUD", "libell_d_acheminement": "LA CELLE ST CLOUD", "code_postal": "78170", "coordonnees_gps": [48.8470786513, 2.13575321605], "code_commune_insee": "78126"}, "geometry": {"type": "Point", "coordinates": [2.13575321605, 48.8470786513]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e8206dcb06bdc6b44e6bea6a6df8259d4c4672a", "fields": {"nom_de_la_commune": "CHATOU", "libell_d_acheminement": "CHATOU", "code_postal": "78400", "coordonnees_gps": [48.8965449448, 2.15335185761], "code_commune_insee": "78146"}, "geometry": {"type": "Point", "coordinates": [2.15335185761, 48.8965449448]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4116f171aedd8ce66e52b672c6d902324235671", "fields": {"nom_de_la_commune": "CHAVENAY", "libell_d_acheminement": "CHAVENAY", "code_postal": "78450", "coordonnees_gps": [48.8376725842, 2.00127278452], "code_commune_insee": "78152"}, "geometry": {"type": "Point", "coordinates": [2.00127278452, 48.8376725842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "722f418ed723bc626daacb4b797132c1ec3ab532", "fields": {"nom_de_la_commune": "CHOISEL", "libell_d_acheminement": "CHOISEL", "code_postal": "78460", "coordonnees_gps": [48.6939321598, 2.02878492296], "code_commune_insee": "78162"}, "geometry": {"type": "Point", "coordinates": [2.02878492296, 48.6939321598]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1bae21696d20b3cac6661ba1fd7799cd779d7a61", "fields": {"nom_de_la_commune": "CONFLANS STE HONORINE", "libell_d_acheminement": "CONFLANS STE HONORINE", "code_postal": "78700", "coordonnees_gps": [49.0000390697, 2.09915995955], "code_commune_insee": "78172"}, "geometry": {"type": "Point", "coordinates": [2.09915995955, 49.0000390697]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "73368e26682492052f02d4eb8484fa8615e600c5", "fields": {"nom_de_la_commune": "CRESPIERES", "libell_d_acheminement": "CRESPIERES", "code_postal": "78121", "coordonnees_gps": [48.8823296337, 1.92062168641], "code_commune_insee": "78189"}, "geometry": {"type": "Point", "coordinates": [1.92062168641, 48.8823296337]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f6e3628ea2cab2d2e33f6815992893e51308905a", "fields": {"nom_de_la_commune": "DAMMARTIN EN SERVE", "libell_d_acheminement": "DAMMARTIN EN SERVE", "code_postal": "78111", "coordonnees_gps": [48.9108779555, 1.61854818373], "code_commune_insee": "78192"}, "geometry": {"type": "Point", "coordinates": [1.61854818373, 48.9108779555]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2e1d8b43f86339d9e4b682b05408a5f7026dec83", "fields": {"nom_de_la_commune": "DAVRON", "libell_d_acheminement": "DAVRON", "code_postal": "78810", "coordonnees_gps": [48.8749563511, 1.96917098756], "code_commune_insee": "78196"}, "geometry": {"type": "Point", "coordinates": [1.96917098756, 48.8749563511]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c7bfcc6cb53fce56272e78a12ea7c5aae3d36f08", "fields": {"code_postal": "78690", "code_commune_insee": "78220", "libell_d_acheminement": "LES ESSARTS LE ROI", "ligne_5": "ST HUBERT LE ROI", "nom_de_la_commune": "LES ESSARTS LE ROI", "coordonnees_gps": [48.7275992987, 1.8882726457]}, "geometry": {"type": "Point", "coordinates": [1.8882726457, 48.7275992987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f8aceb745090b9eda7c129aaf4e489ba75525b76", "fields": {"nom_de_la_commune": "FLEXANVILLE", "libell_d_acheminement": "FLEXANVILLE", "code_postal": "78910", "coordonnees_gps": [48.8500627477, 1.67789030017], "code_commune_insee": "78236"}, "geometry": {"type": "Point", "coordinates": [1.67789030017, 48.8500627477]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ea2efad642721d8d640b1183776c246c6170683", "fields": {"nom_de_la_commune": "FLINS NEUVE EGLISE", "libell_d_acheminement": "FLINS NEUVE EGLISE", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78237"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "26fcd79f5c91fc5b259856be368c4638256ac6a1", "fields": {"nom_de_la_commune": "GAMBAIS", "libell_d_acheminement": "GAMBAIS", "code_postal": "78950", "coordonnees_gps": [48.7795112259, 1.67689608055], "code_commune_insee": "78263"}, "geometry": {"type": "Point", "coordinates": [1.67689608055, 48.7795112259]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "429c2302fe76244668d6946381eecd0bd451507b", "fields": {"nom_de_la_commune": "GARGENVILLE", "libell_d_acheminement": "GARGENVILLE", "code_postal": "78440", "coordonnees_gps": [49.0236826177, 1.79343875467], "code_commune_insee": "78267"}, "geometry": {"type": "Point", "coordinates": [1.79343875467, 49.0236826177]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8bce1a9b20115bd523741c377adf8e5c64181898", "fields": {"nom_de_la_commune": "GUYANCOURT", "libell_d_acheminement": "GUYANCOURT", "code_postal": "78280", "coordonnees_gps": [48.7729816592, 2.07605378449], "code_commune_insee": "78297"}, "geometry": {"type": "Point", "coordinates": [2.07605378449, 48.7729816592]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f042287ee049b2ba22952e6e47c17465b461d39", "fields": {"nom_de_la_commune": "HERBEVILLE", "libell_d_acheminement": "HERBEVILLE", "code_postal": "78580", "coordonnees_gps": [48.9115359215, 1.85464080314], "code_commune_insee": "78305"}, "geometry": {"type": "Point", "coordinates": [1.85464080314, 48.9115359215]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "490a7394c33420ab3a09044481571eab8d86aab2", "fields": {"nom_de_la_commune": "HOUILLES", "libell_d_acheminement": "HOUILLES", "code_postal": "78800", "coordonnees_gps": [48.9266017706, 2.1865630557], "code_commune_insee": "78311"}, "geometry": {"type": "Point", "coordinates": [2.1865630557, 48.9266017706]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9920c432a5e8e95223d2c7d77e420936b88cb47b", "fields": {"nom_de_la_commune": "LONGVILLIERS", "libell_d_acheminement": "LONGVILLIERS", "code_postal": "78730", "coordonnees_gps": [48.5709913793, 1.96381832135], "code_commune_insee": "78349"}, "geometry": {"type": "Point", "coordinates": [1.96381832135, 48.5709913793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "70b321044eb2b15e36a7e10d939e23d12f18a381", "fields": {"code_postal": "78114", "code_commune_insee": "78356", "libell_d_acheminement": "MAGNY LES HAMEAUX", "ligne_5": "CRESSELY", "nom_de_la_commune": "MAGNY LES HAMEAUX", "coordonnees_gps": [48.7411308441, 2.05157793037]}, "geometry": {"type": "Point", "coordinates": [2.05157793037, 48.7411308441]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a42774cfde6952976d7530775b89df95f12e15a", "fields": {"code_postal": "78160", "code_commune_insee": "78372", "libell_d_acheminement": "MARLY LE ROI", "ligne_5": "MONTVAL", "nom_de_la_commune": "MARLY LE ROI", "coordonnees_gps": [48.8656792122, 2.09169348981]}, "geometry": {"type": "Point", "coordinates": [2.09169348981, 48.8656792122]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0d754f556b2b614b798a8fc9e7fb3386c35bd637", "fields": {"nom_de_la_commune": "MAULETTE", "libell_d_acheminement": "MAULETTE", "code_postal": "78550", "coordonnees_gps": [48.8059624153, 1.62530918633], "code_commune_insee": "78381"}, "geometry": {"type": "Point", "coordinates": [1.62530918633, 48.8059624153]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6c351fe37c4632a98d5a5981839b7f80eac85db9", "fields": {"nom_de_la_commune": "MERICOURT", "libell_d_acheminement": "MERICOURT", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78391"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e87d93096ad06d0d9972c495199bbf630cae6894", "fields": {"nom_de_la_commune": "MEULAN EN YVELINES", "libell_d_acheminement": "MEULAN EN YVELINES", "code_postal": "78250", "coordonnees_gps": [49.017629668, 1.88919336875], "code_commune_insee": "78401"}, "geometry": {"type": "Point", "coordinates": [1.88919336875, 49.017629668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "10ae04e7383a504552d433626af83dc2f9c640ea", "fields": {"nom_de_la_commune": "MONTCHAUVET", "libell_d_acheminement": "MONTCHAUVET", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78417"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b96483d8c6ebfa641cb516e1cc4695e2660fb78", "fields": {"nom_de_la_commune": "MONTFORT L AMAURY", "libell_d_acheminement": "MONTFORT L AMAURY", "code_postal": "78490", "coordonnees_gps": [48.7796365302, 1.79456166504], "code_commune_insee": "78420"}, "geometry": {"type": "Point", "coordinates": [1.79456166504, 48.7796365302]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "74b9934423a2997d6f65062ce7162ef9028684ee", "fields": {"nom_de_la_commune": "MOUSSEAUX SUR SEINE", "libell_d_acheminement": "MOUSSEAUX SUR SEINE", "code_postal": "78270", "coordonnees_gps": [49.0329490091, 1.54187293209], "code_commune_insee": "78437"}, "geometry": {"type": "Point", "coordinates": [1.54187293209, 49.0329490091]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c880014efa21365f7156ac916677e102cc6fedad", "fields": {"nom_de_la_commune": "LES MUREAUX", "libell_d_acheminement": "LES MUREAUX", "code_postal": "78130", "coordonnees_gps": [48.9830853894, 1.92106334899], "code_commune_insee": "78440"}, "geometry": {"type": "Point", "coordinates": [1.92106334899, 48.9830853894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7a21aac3b9ca23c4ba6f44ca122033cb0fe531ab", "fields": {"nom_de_la_commune": "NEAUPHLE LE CHATEAU", "libell_d_acheminement": "NEAUPHLE LE CHATEAU", "code_postal": "78640", "coordonnees_gps": [48.8210314117, 1.88134330227], "code_commune_insee": "78442"}, "geometry": {"type": "Point", "coordinates": [1.88134330227, 48.8210314117]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7034a12fc1f2e61725f7c3f07fb5076a5584b736", "fields": {"nom_de_la_commune": "PARAY DOUAVILLE", "libell_d_acheminement": "PARAY DOUAVILLE", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78478"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1883bd89d155a27309aa967025a3a9ca56dad7e1", "fields": {"nom_de_la_commune": "PLAISIR", "libell_d_acheminement": "PLAISIR", "code_postal": "78370", "coordonnees_gps": [48.8126445844, 1.94672191272], "code_commune_insee": "78490"}, "geometry": {"type": "Point", "coordinates": [1.94672191272, 48.8126445844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "90bbb10906cb0f632a4247cdf1abf35281766bfa", "fields": {"nom_de_la_commune": "POIGNY LA FORET", "libell_d_acheminement": "POIGNY LA FORET", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78497"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e69c40517c2c0d15d382d65cfa8d93f438c18341", "fields": {"nom_de_la_commune": "RAIZEUX", "libell_d_acheminement": "RAIZEUX", "code_postal": "78125", "coordonnees_gps": [48.6430372045, 1.73672193818], "code_commune_insee": "78516"}, "geometry": {"type": "Point", "coordinates": [1.73672193818, 48.6430372045]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "71ceb4684bd2f3ca0fbd5f7dda7a9569821a0971", "fields": {"nom_de_la_commune": "RAMBOUILLET", "libell_d_acheminement": "RAMBOUILLET", "code_postal": "78120", "coordonnees_gps": [48.6165414495, 1.85994599568], "code_commune_insee": "78517"}, "geometry": {"type": "Point", "coordinates": [1.85994599568, 48.6165414495]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b756a0f975753efc2cf881aa51b064f6b32686b9", "fields": {"nom_de_la_commune": "RENNEMOULIN", "libell_d_acheminement": "RENNEMOULIN", "code_postal": "78590", "coordonnees_gps": [48.8425372745, 2.05184137552], "code_commune_insee": "78518"}, "geometry": {"type": "Point", "coordinates": [2.05184137552, 48.8425372745]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fc8de66537cd097920dc33d60fd3683b3ebcc55d", "fields": {"nom_de_la_commune": "ST FORGET", "libell_d_acheminement": "ST FORGET", "code_postal": "78720", "coordonnees_gps": [48.6724843894, 1.96251286173], "code_commune_insee": "78548"}, "geometry": {"type": "Point", "coordinates": [1.96251286173, 48.6724843894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a723c2d5e6095358d94462861d958b2ccd3e0557", "fields": {"nom_de_la_commune": "ST GERMAIN EN LAYE", "libell_d_acheminement": "ST GERMAIN EN LAYE", "code_postal": "78100", "coordonnees_gps": [48.9409298615, 2.0992045515], "code_commune_insee": "78551"}, "geometry": {"type": "Point", "coordinates": [2.0992045515, 48.9409298615]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9fed56f6765134273da0effd6ff01bdda520a2b0", "fields": {"nom_de_la_commune": "ST MARTIN DE BRETHENCOURT", "libell_d_acheminement": "ST MARTIN DE BRETHENCOURT", "code_postal": "78660", "coordonnees_gps": [48.5043951327, 1.85801812038], "code_commune_insee": "78564"}, "geometry": {"type": "Point", "coordinates": [1.85801812038, 48.5043951327]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "29a9aaed39e86c606450e0583da416808606e0aa", "fields": {"nom_de_la_commune": "ST MARTIN LA GARENNE", "libell_d_acheminement": "ST MARTIN LA GARENNE", "code_postal": "78520", "coordonnees_gps": [49.019152235, 1.69317391224], "code_commune_insee": "78567"}, "geometry": {"type": "Point", "coordinates": [1.69317391224, 49.019152235]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "689faf0f56393849886772f7b4958ddfce9f5f08", "fields": {"nom_de_la_commune": "STE MESME", "libell_d_acheminement": "STE MESME", "code_postal": "78730", "coordonnees_gps": [48.5709913793, 1.96381832135], "code_commune_insee": "78569"}, "geometry": {"type": "Point", "coordinates": [1.96381832135, 48.5709913793]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "85ada4b0cf915e7464e8fe5da3a45b449d371798", "fields": {"code_postal": "78860", "code_commune_insee": "78571", "libell_d_acheminement": "ST NOM LA BRETECHE", "ligne_5": "LA BRETECHE", "nom_de_la_commune": "ST NOM LA BRETECHE", "coordonnees_gps": [48.8631666578, 2.01892251697]}, "geometry": {"type": "Point", "coordinates": [2.01892251697, 48.8631666578]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5923abac4d5442c982e3a02b97a783f4b567226d", "fields": {"nom_de_la_commune": "ST REMY LES CHEVREUSE", "libell_d_acheminement": "ST REMY LES CHEVREUSE", "code_postal": "78470", "coordonnees_gps": [48.7175747571, 2.05026286373], "code_commune_insee": "78575"}, "geometry": {"type": "Point", "coordinates": [2.05026286373, 48.7175747571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "02c95d4c45a1a42f49739752cc36304ac97e3c07", "fields": {"code_postal": "78470", "code_commune_insee": "78575", "libell_d_acheminement": "ST REMY LES CHEVREUSE", "ligne_5": "RHODON", "nom_de_la_commune": "ST REMY LES CHEVREUSE", "coordonnees_gps": [48.7175747571, 2.05026286373]}, "geometry": {"type": "Point", "coordinates": [2.05026286373, 48.7175747571]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3bb49a9a6bcf92dc0792c0bd627cb1a5acef9998", "fields": {"nom_de_la_commune": "SAULX MARCHAIS", "libell_d_acheminement": "SAULX MARCHAIS", "code_postal": "78650", "coordonnees_gps": [48.853666314, 1.86642479384], "code_commune_insee": "78588"}, "geometry": {"type": "Point", "coordinates": [1.86642479384, 48.853666314]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d82b829ddad741bddd7972cc21dd95420fbdf28", "fields": {"nom_de_la_commune": "SENLISSE", "libell_d_acheminement": "SENLISSE", "code_postal": "78720", "coordonnees_gps": [48.6724843894, 1.96251286173], "code_commune_insee": "78590"}, "geometry": {"type": "Point", "coordinates": [1.96251286173, 48.6724843894]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8d6ba6e28acffabb21dc765c40f6e217b00e0663", "fields": {"nom_de_la_commune": "SEPTEUIL", "libell_d_acheminement": "SEPTEUIL", "code_postal": "78790", "coordonnees_gps": [48.8921487904, 1.67421696367], "code_commune_insee": "78591"}, "geometry": {"type": "Point", "coordinates": [1.67421696367, 48.8921487904]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f64ee3aae77276784f1930b0b243ac490358b1c4", "fields": {"nom_de_la_commune": "SOINDRES", "libell_d_acheminement": "SOINDRES", "code_postal": "78200", "coordonnees_gps": [48.9657827811, 1.64662201232], "code_commune_insee": "78597"}, "geometry": {"type": "Point", "coordinates": [1.64662201232, 48.9657827811]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1aa131ee4c7d2a3ce08ec0a833a1adf2b5c7580d", "fields": {"nom_de_la_commune": "TESSANCOURT SUR AUBETTE", "libell_d_acheminement": "TESSANCOURT SUR AUBETTE", "code_postal": "78250", "coordonnees_gps": [49.017629668, 1.88919336875], "code_commune_insee": "78609"}, "geometry": {"type": "Point", "coordinates": [1.88919336875, 49.017629668]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "34a0fc29153ebcdb05fadce20ada79612d7389b2", "fields": {"nom_de_la_commune": "VELIZY VILLACOUBLAY", "libell_d_acheminement": "VELIZY VILLACOUBLAY", "code_postal": "78140", "coordonnees_gps": [48.7839368553, 2.19726816302], "code_commune_insee": "78640"}, "geometry": {"type": "Point", "coordinates": [2.19726816302, 48.7839368553]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "377623ac8d5b040c886cfb853218418c52f49b9b", "fields": {"nom_de_la_commune": "VERNEUIL SUR SEINE", "libell_d_acheminement": "VERNEUIL SUR SEINE", "code_postal": "78480", "coordonnees_gps": [48.9869978522, 1.96306359686], "code_commune_insee": "78642"}, "geometry": {"type": "Point", "coordinates": [1.96306359686, 48.9869978522]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "36d04b6ecc68338c40d8f8ec514d724a3fddf0cc", "fields": {"code_postal": "78540", "code_commune_insee": "78643", "libell_d_acheminement": "VERNOUILLET", "ligne_5": "MARSINVAL", "nom_de_la_commune": "VERNOUILLET", "coordonnees_gps": [48.9651204678, 1.97419104222]}, "geometry": {"type": "Point", "coordinates": [1.97419104222, 48.9651204678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a8d5722a1be9a0f33db80158ab62d9648262d9ca", "fields": {"nom_de_la_commune": "VERT", "libell_d_acheminement": "VERT", "code_postal": "78930", "coordonnees_gps": [48.9393577295, 1.72733973535], "code_commune_insee": "78647"}, "geometry": {"type": "Point", "coordinates": [1.72733973535, 48.9393577295]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f32464b7b673ec02f1830c220e5fdf2172964a", "fields": {"nom_de_la_commune": "VILLENNES SUR SEINE", "libell_d_acheminement": "VILLENNES SUR SEINE", "code_postal": "78670", "coordonnees_gps": [48.943861939, 1.99265985453], "code_commune_insee": "78672"}, "geometry": {"type": "Point", "coordinates": [1.99265985453, 48.943861939]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "1a3d198ece7bab881d5981507071afa0b7bfbe92", "fields": {"nom_de_la_commune": "AMAILLOUX", "libell_d_acheminement": "AMAILLOUX", "code_postal": "79350", "coordonnees_gps": [46.774320286, -0.350730154497], "code_commune_insee": "79008"}, "geometry": {"type": "Point", "coordinates": [-0.350730154497, 46.774320286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6401cd727317b5a16e42e1e7d7182261a8d21bb0", "fields": {"nom_de_la_commune": "AMURE", "libell_d_acheminement": "AMURE", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79009"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75360234e0cdd3a5733fef590519d929daea8320", "fields": {"nom_de_la_commune": "ARCAIS", "libell_d_acheminement": "ARCAIS", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79010"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "99584882d59b81ac7456cfb57371838b62ebccdd", "fields": {"nom_de_la_commune": "ARDILLEUX", "libell_d_acheminement": "ARDILLEUX", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79011"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "439dde2b9f34f168a38b068fd37261e473d97a8e", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "LE BREUIL SOUS ARGENTON", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da70d91bdcfb9a58cdb6eedaceb5e277f019f03d", "fields": {"code_postal": "79150", "code_commune_insee": "79013", "libell_d_acheminement": "ARGENTONAY", "ligne_5": "MOUTIERS SOUS ARGENTON", "nom_de_la_commune": "ARGENTONAY", "coordonnees_gps": [47.0026122608, -0.46748094088]}, "geometry": {"type": "Point", "coordinates": [-0.46748094088, 47.0026122608]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c76cf63393c1825fbcaec227fd3c463e76b37735", "fields": {"code_postal": "79290", "code_commune_insee": "79014", "libell_d_acheminement": "ARGENTON L EGLISE", "ligne_5": "BAGNEUX", "nom_de_la_commune": "ARGENTON L EGLISE", "coordonnees_gps": [47.061559842, -0.28224777481]}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5d51ccce0a3ea287a3b1826f0f5e66f216326d1e", "fields": {"nom_de_la_commune": "AUBIGNE", "libell_d_acheminement": "AUBIGNE", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79018"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30226d63bd6b6466bd4914e8d29ce6ef5c6a01e0", "fields": {"nom_de_la_commune": "AUGE", "libell_d_acheminement": "AUGE", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79020"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81cffa861c933961e731f78187a69b3bd6e2fd68", "fields": {"nom_de_la_commune": "AVAILLES THOUARSAIS", "libell_d_acheminement": "AVAILLES THOUARSAIS", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79022"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dfa6afca64109b46b02ff403846690e07783b3d3", "fields": {"nom_de_la_commune": "AVON", "libell_d_acheminement": "AVON", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79023"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "541f6dc07b6806ed3106d32798461a6f2cab71f3", "fields": {"code_postal": "79360", "code_commune_insee": "79031", "libell_d_acheminement": "BEAUVOIR SUR NIORT", "ligne_5": "LE CORMENIER", "nom_de_la_commune": "BEAUVOIR SUR NIORT", "coordonnees_gps": [46.1718369403, -0.460736148916]}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f3566ae4bd07583be5a32f55d7d5257781974f09", "fields": {"nom_de_la_commune": "BECELEUF", "libell_d_acheminement": "BECELEUF", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79032"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "2383efacd9ca1322eb02d785055224ae74c94103", "fields": {"nom_de_la_commune": "LA CRECHE", "libell_d_acheminement": "LA CRECHE", "code_postal": "79260", "coordonnees_gps": [46.3656690304, -0.291882204635], "code_commune_insee": "79048"}, "geometry": {"type": "Point", "coordinates": [-0.291882204635, 46.3656690304]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc1cb104e65b9525d83568d4ce8813a2fee70065", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "CLAZAY", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8fd2f333c14a594b7e949e485c3671ef91b308b3", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "NOIRLIEU", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6422d34d1087f2d135124fc37853e1a1da5bc338", "fields": {"nom_de_la_commune": "VALLECALLE", "libell_d_acheminement": "VALLECALLE", "code_postal": "20232", "coordonnees_gps": [42.6331759717, 9.34813181689], "code_commune_insee": "2B333"}, "geometry": {"type": "Point", "coordinates": [9.34813181689, 42.6331759717]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "14248c5427dfd3a4e815d6077848674ee9054e8a", "fields": {"nom_de_la_commune": "VALLE DI CAMPOLORO", "libell_d_acheminement": "VALLE DI CAMPOLORO", "code_postal": "20221", "coordonnees_gps": [42.3298486664, 9.50290145478], "code_commune_insee": "2B335"}, "geometry": {"type": "Point", "coordinates": [9.50290145478, 42.3298486664]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8a5f53b9b56261d8e129e6b648716eae34ef92c4", "fields": {"nom_de_la_commune": "VENACO", "libell_d_acheminement": "VENACO", "code_postal": "20231", "coordonnees_gps": [42.2138878087, 9.13676317073], "code_commune_insee": "2B341"}, "geometry": {"type": "Point", "coordinates": [9.13676317073, 42.2138878087]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "823b6fa17f16c5829b3c9dd1739aa358ad77f199", "fields": {"nom_de_la_commune": "VERDESE", "libell_d_acheminement": "VERDESE", "code_postal": "20229", "coordonnees_gps": [42.3753347124, 9.37328839159], "code_commune_insee": "2B344"}, "geometry": {"type": "Point", "coordinates": [9.37328839159, 42.3753347124]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4a92b813352f532a41223b28e93f3ec2907f635e", "fields": {"nom_de_la_commune": "VEZZANI", "libell_d_acheminement": "VEZZANI", "code_postal": "20242", "coordonnees_gps": [42.1615851652, 9.27345254485], "code_commune_insee": "2B347"}, "geometry": {"type": "Point", "coordinates": [9.27345254485, 42.1615851652]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ed01989929da2a3363db81eb9da453efa70ea78f", "fields": {"nom_de_la_commune": "VIVARIO", "libell_d_acheminement": "VIVARIO", "code_postal": "20219", "coordonnees_gps": [42.1546750022, 9.13106391385], "code_commune_insee": "2B354"}, "geometry": {"type": "Point", "coordinates": [9.13106391385, 42.1546750022]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f076c438686361cc13d65147637ed8da01e89802", "fields": {"nom_de_la_commune": "VOLPAJOLA", "libell_d_acheminement": "VOLPAJOLA", "code_postal": "20290", "coordonnees_gps": [42.532413301, 9.42098474839], "code_commune_insee": "2B355"}, "geometry": {"type": "Point", "coordinates": [9.42098474839, 42.532413301]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "aee4c71c51bb15d0a2cbc547d9b6a9aa6567e1c0", "fields": {"code_postal": "79300", "code_commune_insee": "79049", "libell_d_acheminement": "BRESSUIRE", "ligne_5": "ST SAUVEUR", "nom_de_la_commune": "BRESSUIRE", "coordonnees_gps": [46.8619599412, -0.471600678729]}, "geometry": {"type": "Point", "coordinates": [-0.471600678729, 46.8619599412]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e8bb5595162ffbd973cf47fd3bffa3892c2add05", "fields": {"nom_de_la_commune": "BRULAIN", "libell_d_acheminement": "BRULAIN", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79058"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3e99af5e5f3525440743df6c677c1da9f4b17f43", "fields": {"nom_de_la_commune": "LA CHAPELLE POUILLOUX", "libell_d_acheminement": "LA CHAPELLE POUILLOUX", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79074"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "370c49039c04fa33f52bcf3459002c3ed2fb02ce", "fields": {"code_postal": "79700", "code_commune_insee": "79079", "libell_d_acheminement": "MAULEON", "ligne_5": "ST AUBIN DE BAUBIGNE", "nom_de_la_commune": "MAULEON", "coordonnees_gps": [46.9364849279, -0.753058283039]}, "geometry": {"type": "Point", "coordinates": [-0.753058283039, 46.9364849279]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e4ddda0d2da96e442488143ba0a2a15befc86c9a", "fields": {"nom_de_la_commune": "CHAURAY", "libell_d_acheminement": "CHAURAY", "code_postal": "79180", "coordonnees_gps": [46.3517152299, -0.381353087683], "code_commune_insee": "79081"}, "geometry": {"type": "Point", "coordinates": [-0.381353087683, 46.3517152299]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "fd1aafc19633a4e93fac01bb27ccea285f6fb213", "fields": {"nom_de_la_commune": "CHEF BOUTONNE", "libell_d_acheminement": "CHEF BOUTONNE", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79083"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b074c1ce2de98a2c680677f9491a4ed50d6fe912", "fields": {"nom_de_la_commune": "CHEY", "libell_d_acheminement": "CHEY", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79087"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "577cc67b2ef5a4701eba9826c6fb3c3ead321120", "fields": {"nom_de_la_commune": "CHICHE", "libell_d_acheminement": "CHICHE", "code_postal": "79350", "coordonnees_gps": [46.774320286, -0.350730154497], "code_commune_insee": "79088"}, "geometry": {"type": "Point", "coordinates": [-0.350730154497, 46.774320286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cdd0358d89715e8ba9f49424ea15da368232d513", "fields": {"nom_de_la_commune": "CHIZE", "libell_d_acheminement": "CHIZE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79090"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d0d8938529d7f5cd91570f65a734ed9018253b4", "fields": {"nom_de_la_commune": "CIRIERES", "libell_d_acheminement": "CIRIERES", "code_postal": "79140", "coordonnees_gps": [46.8536328396, -0.662287760231], "code_commune_insee": "79091"}, "geometry": {"type": "Point", "coordinates": [-0.662287760231, 46.8536328396]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b4675561c0c1aa6c16ce2f1f89704ab6d68be52", "fields": {"nom_de_la_commune": "CLESSE", "libell_d_acheminement": "CLESSE", "code_postal": "79350", "coordonnees_gps": [46.774320286, -0.350730154497], "code_commune_insee": "79094"}, "geometry": {"type": "Point", "coordinates": [-0.350730154497, 46.774320286]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "548b18cbd0b067ece368563edc0ca92f095d9bf7", "fields": {"nom_de_la_commune": "CLUSSAIS LA POMMERAIE", "libell_d_acheminement": "CLUSSAIS LA POMMERAIE", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79095"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4cc2fe86588e2832dbb16b7421aca8eade456de1", "fields": {"nom_de_la_commune": "COULONGES SUR L AUTIZE", "libell_d_acheminement": "COULONGES SUR L AUTIZE", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79101"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a09bcbb85e7847cf1ed26ffdf7ef561252d7421e", "fields": {"nom_de_la_commune": "COUTIERES", "libell_d_acheminement": "COUTIERES", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79105"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b433b42e7bf34b797a01326d9a6e83e618a92c89", "fields": {"nom_de_la_commune": "COUTURE D ARGENSON", "libell_d_acheminement": "COUTURE D ARGENSON", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79106"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c1f01623bba5616c460bc220c638b4336768627e", "fields": {"nom_de_la_commune": "EXOUDUN", "libell_d_acheminement": "EXOUDUN", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79115"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "398439df9d44d8329958d08f3752556ac04fcbdf", "fields": {"nom_de_la_commune": "FENERY", "libell_d_acheminement": "FENERY", "code_postal": "79450", "coordonnees_gps": [46.6633315069, -0.348872972345], "code_commune_insee": "79118"}, "geometry": {"type": "Point", "coordinates": [-0.348872972345, 46.6633315069]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9701799dbfa280ef6097f4d14ddb94b0f046d313", "fields": {"nom_de_la_commune": "LES FORGES", "libell_d_acheminement": "LES FORGES", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79124"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5f92f90a89ab1cc3c95380030240d2ce7bb549bf", "fields": {"nom_de_la_commune": "FRESSINES", "libell_d_acheminement": "FRESSINES", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79129"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d00c2715d10405ceb1b4eb39b5f940c200fd0856", "fields": {"code_postal": "79220", "code_commune_insee": "79133", "libell_d_acheminement": "GERMOND ROUVRE", "ligne_5": "ROUVRE", "nom_de_la_commune": "GERMOND ROUVRE", "coordonnees_gps": [46.4780154702, -0.409601333646]}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e2151c776a78f3486346354b9025ce37730b01f0", "fields": {"nom_de_la_commune": "IRAIS", "libell_d_acheminement": "IRAIS", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79141"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "9a639607873cc6fa1c5bdfa3fa8932c2883336c1", "fields": {"nom_de_la_commune": "LIMALONGES", "libell_d_acheminement": "LIMALONGES", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79150"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a67a9949106c60f4acf876696603676324a2f1f1", "fields": {"nom_de_la_commune": "MAISONTIERS", "libell_d_acheminement": "MAISONTIERS", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79165"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "504d142a4094c2d56a5893841d717c1e179847aa", "fields": {"nom_de_la_commune": "MENIGOUTE", "libell_d_acheminement": "MENIGOUTE", "code_postal": "79340", "coordonnees_gps": [46.5341457633, -0.0690786598996], "code_commune_insee": "79176"}, "geometry": {"type": "Point", "coordinates": [-0.0690786598996, 46.5341457633]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "96873fe8e69c3ee43f6e4dd84c87940ae9ee84fe", "fields": {"nom_de_la_commune": "MONCOUTANT", "libell_d_acheminement": "MONCOUTANT", "code_postal": "79320", "coordonnees_gps": [46.7253627429, -0.568110256331], "code_commune_insee": "79179"}, "geometry": {"type": "Point", "coordinates": [-0.568110256331, 46.7253627429]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "126aa04b97a8b2421e1b03405cbdec20a147f34b", "fields": {"nom_de_la_commune": "MOUGON", "libell_d_acheminement": "MOUGON", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79185"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "61fb3ee7d80adb074dc98795f743fc5de7a8aba4", "fields": {"nom_de_la_commune": "NANTEUIL", "libell_d_acheminement": "NANTEUIL", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79189"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40b6e20cfe2632db32ef172aa6ffd9fa91968da7", "fields": {"nom_de_la_commune": "NIORT", "libell_d_acheminement": "NIORT", "code_postal": "79000", "coordonnees_gps": [46.3258954005, -0.471948799186], "code_commune_insee": "79191"}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d71a39c5fdde4ed218991592e5074cc3e9604a08", "fields": {"nom_de_la_commune": "OROUX", "libell_d_acheminement": "OROUX", "code_postal": "79390", "coordonnees_gps": [46.7034877076, -0.0656226429899], "code_commune_insee": "79197"}, "geometry": {"type": "Point", "coordinates": [-0.0656226429899, 46.7034877076]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "42f2a45b3ead02bc13328b198ffc693a6e144be2", "fields": {"nom_de_la_commune": "PAIZAY LE CHAPT", "libell_d_acheminement": "PAIZAY LE CHAPT", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79198"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e35c4e5fdebe8d6b68d6b14f841fefab580d649", "fields": {"nom_de_la_commune": "PAIZAY LE TORT", "libell_d_acheminement": "PAIZAY LE TORT", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79199"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bfafbb6cf47c05ff6c44904adaf0800fb0ab10e0", "fields": {"nom_de_la_commune": "PAMPLIE", "libell_d_acheminement": "PAMPLIE", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79200"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "b94281913a0b94383336e680daf74f8195728372", "fields": {"nom_de_la_commune": "PARTHENAY", "libell_d_acheminement": "PARTHENAY", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79202"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "27780e6df8d97122dd77b1f50b3ed1766560098b", "fields": {"nom_de_la_commune": "PERIGNE", "libell_d_acheminement": "PERIGNE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79204"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "620992477be5ed6ea5b1cdfb44ac11eb4980de38", "fields": {"nom_de_la_commune": "PERS", "libell_d_acheminement": "PERS", "code_postal": "79190", "coordonnees_gps": [46.1514244675, 0.0822734562734], "code_commune_insee": "79205"}, "geometry": {"type": "Point", "coordinates": [0.0822734562734, 46.1514244675]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "380336ebda6c5f43757e288147c507c5ba989d0f", "fields": {"nom_de_la_commune": "PUIHARDY", "libell_d_acheminement": "PUIHARDY", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79223"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7b7c67c0c5db91f6e570b29f1602b10834b82db4", "fields": {"nom_de_la_commune": "REFFANNES", "libell_d_acheminement": "REFFANNES", "code_postal": "79420", "coordonnees_gps": [46.554353559, -0.175702505371], "code_commune_insee": "79225"}, "geometry": {"type": "Point", "coordinates": [-0.175702505371, 46.554353559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c2e602e3ba6eb020d779e94c725ed4b23af27c1d", "fields": {"nom_de_la_commune": "ST CYR LA LANDE", "libell_d_acheminement": "ST CYR LA LANDE", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79244"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "59a4ea5443270e1178742dbdff36a1a930b519bd", "fields": {"nom_de_la_commune": "ST ETIENNE LA CIGOGNE", "libell_d_acheminement": "ST ETIENNE LA CIGOGNE", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79247"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e6d7f7f938a0730f50ff5db1d2759dfc6d4686aa", "fields": {"nom_de_la_commune": "ST GEORGES DE NOISNE", "libell_d_acheminement": "ST GEORGES DE NOISNE", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79253"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "94c07719107bd0d68a1081e124a5636b9262238f", "fields": {"nom_de_la_commune": "ST GEORGES DE REX", "libell_d_acheminement": "ST GEORGES DE REX", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79254"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "bc2af9ad9b6468e5e9638812c5db2256612ab1f3", "fields": {"nom_de_la_commune": "ST GERMAIN DE LONGUE CHAUME", "libell_d_acheminement": "ST GERMAIN DE LONGUE CHAUME", "code_postal": "79200", "coordonnees_gps": [46.6764128938, -0.220232536654], "code_commune_insee": "79255"}, "geometry": {"type": "Point", "coordinates": [-0.220232536654, 46.6764128938]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a74115f19250e6c1559d509c43b031ec3f0bd6a2", "fields": {"nom_de_la_commune": "ST JOUIN DE MILLY", "libell_d_acheminement": "ST JOUIN DE MILLY", "code_postal": "79380", "coordonnees_gps": [46.7639583246, -0.657227871413], "code_commune_insee": "79261"}, "geometry": {"type": "Point", "coordinates": [-0.657227871413, 46.7639583246]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "113ec5dca1787eb8ff9cbd14a50897b46084ddd4", "fields": {"nom_de_la_commune": "ST LEGER DE LA MARTINIERE", "libell_d_acheminement": "ST LEGER DE LA MARTINIERE", "code_postal": "79500", "coordonnees_gps": [46.2096053952, -0.119503446916], "code_commune_insee": "79264"}, "geometry": {"type": "Point", "coordinates": [-0.119503446916, 46.2096053952]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "075ddcc00091951996db0c72b7fecd02edfc6263", "fields": {"nom_de_la_commune": "ST MAIXENT DE BEUGNE", "libell_d_acheminement": "ST MAIXENT DE BEUGNE", "code_postal": "79160", "coordonnees_gps": [46.4823694828, -0.548315105919], "code_commune_insee": "79269"}, "geometry": {"type": "Point", "coordinates": [-0.548315105919, 46.4823694828]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "173cf701517ad73cf19c70104983fda1518e3969", "fields": {"nom_de_la_commune": "ST MARTIN DE ST MAIXENT", "libell_d_acheminement": "ST MARTIN DE ST MAIXENT", "code_postal": "79400", "coordonnees_gps": [46.4367634451, -0.226400465767], "code_commune_insee": "79276"}, "geometry": {"type": "Point", "coordinates": [-0.226400465767, 46.4367634451]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0120a80729dda555060fe28e65ddcb76a8f71b2c", "fields": {"nom_de_la_commune": "ST MARTIN DE SANZAY", "libell_d_acheminement": "ST MARTIN DE SANZAY", "code_postal": "79290", "coordonnees_gps": [47.061559842, -0.28224777481], "code_commune_insee": "79277"}, "geometry": {"type": "Point", "coordinates": [-0.28224777481, 47.061559842]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43743bf360c9462e6a3fae7d46b2dcd490b3ce51", "fields": {"nom_de_la_commune": "ST MEDARD", "libell_d_acheminement": "ST MEDARD", "code_postal": "79370", "coordonnees_gps": [46.2791849908, -0.237039794874], "code_commune_insee": "79282"}, "geometry": {"type": "Point", "coordinates": [-0.237039794874, 46.2791849908]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40d3ca566ca5e89cc65a0ba5f4ac22006976776a", "fields": {"nom_de_la_commune": "ST ROMANS DES CHAMPS", "libell_d_acheminement": "ST ROMANS DES CHAMPS", "code_postal": "79230", "coordonnees_gps": [46.2556160002, -0.365723799708], "code_commune_insee": "79294"}, "geometry": {"type": "Point", "coordinates": [-0.365723799708, 46.2556160002]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3c46f7d114a8f9612af2a645362878fee7c0ca3c", "fields": {"nom_de_la_commune": "STE SOLINE", "libell_d_acheminement": "STE SOLINE", "code_postal": "79120", "coordonnees_gps": [46.2813998001, 0.0312023029637], "code_commune_insee": "79297"}, "geometry": {"type": "Point", "coordinates": [0.0312023029637, 46.2813998001]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "6a167ec194b10888028a19ad0cc0f682d6836823", "fields": {"nom_de_la_commune": "STE VERGE", "libell_d_acheminement": "STE VERGE", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79300"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "03aa3557860ce09ca966dc41d4634a9af1195d8e", "fields": {"nom_de_la_commune": "SALLES", "libell_d_acheminement": "SALLES", "code_postal": "79800", "coordonnees_gps": [46.3757530547, -0.0927719850216], "code_commune_insee": "79303"}, "geometry": {"type": "Point", "coordinates": [-0.0927719850216, 46.3757530547]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "102085a7a2a8da6743b2ec970ef4528e0e03d392", "fields": {"nom_de_la_commune": "SCIECQ", "libell_d_acheminement": "SCIECQ", "code_postal": "79000", "coordonnees_gps": [46.3258954005, -0.471948799186], "code_commune_insee": "79308"}, "geometry": {"type": "Point", "coordinates": [-0.471948799186, 46.3258954005]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "72b17708d869d2ea97ae1ebec7b04907468fc30f", "fields": {"nom_de_la_commune": "SOMPT", "libell_d_acheminement": "SOMPT", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79314"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ad84bd46095f764287e412e2fb16dce7e433acd3", "fields": {"nom_de_la_commune": "SOUTIERS", "libell_d_acheminement": "SOUTIERS", "code_postal": "79310", "coordonnees_gps": [46.5467752524, -0.310482572507], "code_commune_insee": "79318"}, "geometry": {"type": "Point", "coordinates": [-0.310482572507, 46.5467752524]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0aabc98e808d8b37c4bedf697f45e7b25ec12560", "fields": {"nom_de_la_commune": "SURIN", "libell_d_acheminement": "SURIN", "code_postal": "79220", "coordonnees_gps": [46.4780154702, -0.409601333646], "code_commune_insee": "79320"}, "geometry": {"type": "Point", "coordinates": [-0.409601333646, 46.4780154702]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "79729d33aecc33c8ab2f6f4b1709166932984b2b", "fields": {"nom_de_la_commune": "TAIZE", "libell_d_acheminement": "TAIZE", "code_postal": "79100", "coordonnees_gps": [46.9728352964, -0.169886662398], "code_commune_insee": "79321"}, "geometry": {"type": "Point", "coordinates": [-0.169886662398, 46.9728352964]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7c74ec37067afbda627bac7f8061df2ded7185b1", "fields": {"nom_de_la_commune": "TESSONNIERE", "libell_d_acheminement": "TESSONNIERE", "code_postal": "79600", "coordonnees_gps": [46.8218182102, -0.136529587594], "code_commune_insee": "79325"}, "geometry": {"type": "Point", "coordinates": [-0.136529587594, 46.8218182102]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d48293e99cde1baa157876fc161c68ddd6312714", "fields": {"nom_de_la_commune": "THORIGNY SUR LE MIGNON", "libell_d_acheminement": "THORIGNY SUR LE MIGNON", "code_postal": "79360", "coordonnees_gps": [46.1718369403, -0.460736148916], "code_commune_insee": "79328"}, "geometry": {"type": "Point", "coordinates": [-0.460736148916, 46.1718369403]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c38df141d63d1e579d5120693f37bd3658462fa4", "fields": {"nom_de_la_commune": "TILLOU", "libell_d_acheminement": "TILLOU", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79330"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "08f4a0f36de139a4e10c40ec53167adb96c67f6c", "fields": {"nom_de_la_commune": "TRAYES", "libell_d_acheminement": "TRAYES", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79332"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5cdea24d5cdcad7744882d8f8894ee8143dd3b98", "fields": {"nom_de_la_commune": "USSEAU", "libell_d_acheminement": "USSEAU", "code_postal": "79210", "coordonnees_gps": [46.2343123422, -0.655631681594], "code_commune_insee": "79334"}, "geometry": {"type": "Point", "coordinates": [-0.655631681594, 46.2343123422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4ae26163452457880d104a45bb232738b1238511", "fields": {"nom_de_la_commune": "LE VANNEAU IRLEAU", "libell_d_acheminement": "LE VANNEAU IRLEAU", "code_postal": "79270", "coordonnees_gps": [46.2587527131, -0.557533948895], "code_commune_insee": "79337"}, "geometry": {"type": "Point", "coordinates": [-0.557533948895, 46.2587527131]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "4b5bf8526e8bca93d42bcec0e7f218a4245dd005", "fields": {"nom_de_la_commune": "VERNOUX EN GATINE", "libell_d_acheminement": "VERNOUX EN GATINE", "code_postal": "79240", "coordonnees_gps": [46.6372922591, -0.552958918759], "code_commune_insee": "79342"}, "geometry": {"type": "Point", "coordinates": [-0.552958918759, 46.6372922591]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e720da1a3398a8ceb2c97501adbe39f7ef7964ae", "fields": {"nom_de_la_commune": "VERNOUX SUR BOUTONNE", "libell_d_acheminement": "VERNOUX SUR BOUTONNE", "code_postal": "79170", "coordonnees_gps": [46.1222201678, -0.263662394431], "code_commune_insee": "79343"}, "geometry": {"type": "Point", "coordinates": [-0.263662394431, 46.1222201678]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3adba4d26bdd87ef2234cc7b583a0806b31ec9d9", "fields": {"nom_de_la_commune": "VILLEMAIN", "libell_d_acheminement": "VILLEMAIN", "code_postal": "79110", "coordonnees_gps": [46.0796792551, -0.0776262361776], "code_commune_insee": "79349"}, "geometry": {"type": "Point", "coordinates": [-0.0776262361776, 46.0796792551]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "3d2f78b64bba11179058f1e48ce058dbb6aa48d0", "fields": {"nom_de_la_commune": "ABBEVILLE", "libell_d_acheminement": "ABBEVILLE", "code_postal": "80100", "coordonnees_gps": [50.1084897996, 1.83194053005], "code_commune_insee": "80001"}, "geometry": {"type": "Point", "coordinates": [1.83194053005, 50.1084897996]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "edd68536a0a16669a368f1479b7aca8b5508de10", "fields": {"nom_de_la_commune": "AGENVILLE", "libell_d_acheminement": "AGENVILLE", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80005"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "ef521a76fe9364d0d6c3e4ef7d3d9abd648da09e", "fields": {"nom_de_la_commune": "AIRAINES", "libell_d_acheminement": "AIRAINES", "code_postal": "80270", "coordonnees_gps": [49.948357214, 1.92858154161], "code_commune_insee": "80013"}, "geometry": {"type": "Point", "coordinates": [1.92858154161, 49.948357214]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "19f0a3acd9f6b0722b07781b8e491b6ff0a5a217", "fields": {"nom_de_la_commune": "ALBERT", "libell_d_acheminement": "ALBERT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80016"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dcb898066858c0e1241fb405260b49f7ac7d7402", "fields": {"nom_de_la_commune": "AMIENS", "libell_d_acheminement": "AMIENS", "code_postal": "80090", "coordonnees_gps": [49.9004650343, 2.29084588963], "code_commune_insee": "80021"}, "geometry": {"type": "Point", "coordinates": [2.29084588963, 49.9004650343]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "13f4130a5d8647f31daf4c9a022495c2c99d6793", "fields": {"nom_de_la_commune": "ARGOULES", "libell_d_acheminement": "ARGOULES", "code_postal": "80120", "coordonnees_gps": [50.3005450298, 1.68432499024], "code_commune_insee": "80025"}, "geometry": {"type": "Point", "coordinates": [1.68432499024, 50.3005450298]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "a64dcb8b2fc322cfd306f23d20e9367b10a1bf00", "fields": {"nom_de_la_commune": "ARMANCOURT", "libell_d_acheminement": "ARMANCOURT", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80027"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "198c7703813aaa0da1305e6f41d147ba1062bdfb", "fields": {"nom_de_la_commune": "ARQUEVES", "libell_d_acheminement": "ARQUEVES", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80028"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d74e6d6d6344c224e6ca95c77d1055166bbcf5e7", "fields": {"nom_de_la_commune": "AVESNES CHAUSSOY", "libell_d_acheminement": "AVESNES CHAUSSOY", "code_postal": "80140", "coordonnees_gps": [49.9469630616, 1.753960976], "code_commune_insee": "80048"}, "geometry": {"type": "Point", "coordinates": [1.753960976, 49.9469630616]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dd51422aeb99b870f0bc3c94e4794d069b4b19e0", "fields": {"nom_de_la_commune": "BARLEUX", "libell_d_acheminement": "BARLEUX", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80054"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "cc7ca713cd786f9b821a0f0954b79978dee35146", "fields": {"nom_de_la_commune": "BAYENCOURT", "libell_d_acheminement": "BAYENCOURT", "code_postal": "80560", "coordonnees_gps": [50.0734291376, 2.51202338922], "code_commune_insee": "80057"}, "geometry": {"type": "Point", "coordinates": [2.51202338922, 50.0734291376]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "339c36d613e2ab43a29356f439b696814854bc90", "fields": {"nom_de_la_commune": "BEHENCOURT", "libell_d_acheminement": "BEHENCOURT", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80077"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "8c87f577d575139981e39e990c715eb0071cd89d", "fields": {"nom_de_la_commune": "BERGICOURT", "libell_d_acheminement": "BERGICOURT", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80083"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "64a3fb22302ac5da09206d39125500749ae8e966", "fields": {"nom_de_la_commune": "BERNAVILLE", "libell_d_acheminement": "BERNAVILLE", "code_postal": "80370", "coordonnees_gps": [50.1625147057, 2.13483617177], "code_commune_insee": "80086"}, "geometry": {"type": "Point", "coordinates": [2.13483617177, 50.1625147057]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "5e3a66fc34c0253e1c72517d9db74a4f7c70e0f2", "fields": {"nom_de_la_commune": "BERTANGLES", "libell_d_acheminement": "BERTANGLES", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80092"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e861d081593d2f00dc8de5565a450e2df2755891", "fields": {"nom_de_la_commune": "BERTEAUCOURT LES THENNES", "libell_d_acheminement": "BERTEAUCOURT LES THENNES", "code_postal": "80110", "coordonnees_gps": [49.7772381899, 2.50585913264], "code_commune_insee": "80094"}, "geometry": {"type": "Point", "coordinates": [2.50585913264, 49.7772381899]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "d1d575cfdddd179691ecf0577410bfd6e4e1496b", "fields": {"nom_de_la_commune": "BETHENCOURT SUR MER", "libell_d_acheminement": "BETHENCOURT SUR MER", "code_postal": "80130", "coordonnees_gps": [50.0912781795, 1.52364516053], "code_commune_insee": "80096"}, "geometry": {"type": "Point", "coordinates": [1.52364516053, 50.0912781795]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7cfbb3195054dc8b7df59ec5a02aed6770335bc0", "fields": {"nom_de_la_commune": "BETTENCOURT ST OUEN", "libell_d_acheminement": "BETTENCOURT ST OUEN", "code_postal": "80610", "coordonnees_gps": [50.0237604844, 2.12528172421], "code_commune_insee": "80100"}, "geometry": {"type": "Point", "coordinates": [2.12528172421, 50.0237604844]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "dbd4264530528158741b358aefb452a892c433d6", "fields": {"nom_de_la_commune": "BIARRE", "libell_d_acheminement": "BIARRE", "code_postal": "80190", "coordonnees_gps": [49.7735190405, 2.91598423819], "code_commune_insee": "80103"}, "geometry": {"type": "Point", "coordinates": [2.91598423819, 49.7735190405]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "f54c7fdc59a543b784a768a719b13cc14c90b182", "fields": {"nom_de_la_commune": "BOISBERGUES", "libell_d_acheminement": "BOISBERGUES", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80108"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "40fdda7cdd8053f8b753a070b33328bd80ec8444", "fields": {"nom_de_la_commune": "BOISMONT", "libell_d_acheminement": "BOISMONT", "code_postal": "80230", "coordonnees_gps": [50.1558301634, 1.61596449442], "code_commune_insee": "80110"}, "geometry": {"type": "Point", "coordinates": [1.61596449442, 50.1558301634]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7de0f016d0de952bbd02fe5674b4b1dcc9ce0760", "fields": {"nom_de_la_commune": "BONNAY", "libell_d_acheminement": "BONNAY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80112"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "16b6259ac302ab706692ab044e7eb2833b2b195c", "fields": {"nom_de_la_commune": "BOUCHON", "libell_d_acheminement": "BOUCHON", "code_postal": "80830", "coordonnees_gps": [50.031200876, 2.0339484859], "code_commune_insee": "80117"}, "geometry": {"type": "Point", "coordinates": [2.0339484859, 50.031200876]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "81c90d989fd2e8d9d88415c46c3297a1bc49cf2b", "fields": {"nom_de_la_commune": "BOUFFLERS", "libell_d_acheminement": "BOUFFLERS", "code_postal": "80150", "coordonnees_gps": [50.2392104009, 1.91827271095], "code_commune_insee": "80118"}, "geometry": {"type": "Point", "coordinates": [1.91827271095, 50.2392104009]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "893a8a35075151597f7f20be50dd344766fb8282", "fields": {"nom_de_la_commune": "BOUZINCOURT", "libell_d_acheminement": "BOUZINCOURT", "code_postal": "80300", "coordonnees_gps": [50.0227028619, 2.66061917471], "code_commune_insee": "80129"}, "geometry": {"type": "Point", "coordinates": [2.66061917471, 50.0227028619]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "43a64bbf213cb44c2d18a7ffcbc62acc2007c454", "fields": {"nom_de_la_commune": "BREVILLERS", "libell_d_acheminement": "BREVILLERS", "code_postal": "80600", "coordonnees_gps": [50.1635098178, 2.34121033549], "code_commune_insee": "80140"}, "geometry": {"type": "Point", "coordinates": [2.34121033549, 50.1635098178]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "839d0da54f14c94bf0cd10aede3e2668d9da01aa", "fields": {"nom_de_la_commune": "BRIE", "libell_d_acheminement": "BRIE", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80141"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "15d6bb497a40d47333ac12c74445ab3b32e7bc73", "fields": {"nom_de_la_commune": "BUIRE COURCELLES", "libell_d_acheminement": "BUIRE COURCELLES", "code_postal": "80200", "coordonnees_gps": [49.9092274559, 2.93799194086], "code_commune_insee": "80150"}, "geometry": {"type": "Point", "coordinates": [2.93799194086, 49.9092274559]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "c801d015141b2194f398fc947028ce38314703c4", "fields": {"nom_de_la_commune": "BUS LA MESIERE", "libell_d_acheminement": "BUS LA MESIERE", "code_postal": "80700", "coordonnees_gps": [49.7015900422, 2.77539756139], "code_commune_insee": "80152"}, "geometry": {"type": "Point", "coordinates": [2.77539756139, 49.7015900422]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "75e10ecf4c404016e97d73028819ab2fb189125f", "fields": {"nom_de_la_commune": "BUSSY LES DAOURS", "libell_d_acheminement": "BUSSY LES DAOURS", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80156"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7f1d6b5a92d8c25cd763c80e2c8435219255838e", "fields": {"nom_de_la_commune": "CACHY", "libell_d_acheminement": "CACHY", "code_postal": "80800", "coordonnees_gps": [49.9016470659, 2.53555403839], "code_commune_insee": "80159"}, "geometry": {"type": "Point", "coordinates": [2.53555403839, 49.9016470659]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "da5e2c6b935d13a54017b634019df05505b974ad", "fields": {"nom_de_la_commune": "CANAPLES", "libell_d_acheminement": "CANAPLES", "code_postal": "80670", "coordonnees_gps": [50.0646181987, 2.22461051282], "code_commune_insee": "80166"}, "geometry": {"type": "Point", "coordinates": [2.22461051282, 50.0646181987]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "7522a3a8ebea69ab09a6aa8f4db9364341746d69", "fields": {"nom_de_la_commune": "CARDONNETTE", "libell_d_acheminement": "CARDONNETTE", "code_postal": "80260", "coordonnees_gps": [49.9960804891, 2.34345425854], "code_commune_insee": "80173"}, "geometry": {"type": "Point", "coordinates": [2.34345425854, 49.9960804891]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "30c29ff4014e8fff6005ef3da845786400d9d2b7", "fields": {"nom_de_la_commune": "LE CARDONNOIS", "libell_d_acheminement": "LE CARDONNOIS", "code_postal": "80500", "coordonnees_gps": [49.6644065445, 2.59300207796], "code_commune_insee": "80174"}, "geometry": {"type": "Point", "coordinates": [2.59300207796, 49.6644065445]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "e07b297d899a007970e5819345dc08bf0532571a", "fields": {"nom_de_la_commune": "CAULIERES", "libell_d_acheminement": "CAULIERES", "code_postal": "80290", "coordonnees_gps": [49.7720118421, 1.95186211928], "code_commune_insee": "80179"}, "geometry": {"type": "Point", "coordinates": [1.95186211928, 49.7720118421]}, "record_timestamp": "2016-05-09T15:17:00+02:00"},{"datasetid": "laposte_hexasmal", "recordid": "0c91ed1fb983e292d128342edeafecd11bd16ea6", "fields": {"nom_de_la_commune": "LA CHAUSSEE TIRANCOURT", "libell_d_acheminement": "LA CHAUSSEE TIRANCOURT", "code_postal": "80310", "coordonnees_gps": [49.9552776258, 2.09743129246], "code_commune_insee": "80187"}, "geometry": {"type": "Point", "coordinates": [2.09743129246, 49.9552776258]}, "record_timestamp": "2016-05-09T15:17:00+02:00"}] \ No newline at end of file +[ + { + "datasetid": "laposte_hexasmal", + "recordid": "9e1ee4213561e66884d41275a7f56d03a8ee11e4", + "fields": { + "code_commune_insee": "68344", + "nom_de_la_commune": "URBES", + "code_postal": "68121", + "coordonnees_gps": [ + 47.8802074294, + 6.92848396998 + ], + "libelle_d_acheminement": "URBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92848396998, + 47.8802074294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d2969e50685083372c24a7883304928ced14d71", + "fields": { + "code_commune_insee": "68352", + "nom_de_la_commune": "VOLGELSHEIM", + "code_postal": "68600", + "coordonnees_gps": [ + 48.0238611459, + 7.54413370142 + ], + "libelle_d_acheminement": "VOLGELSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54413370142, + 48.0238611459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c58ca8d207f881c59057cb537ff20d207118274", + "fields": { + "code_commune_insee": "68353", + "nom_de_la_commune": "WAHLBACH", + "code_postal": "68130", + "coordonnees_gps": [ + 47.6297810488, + 7.34645616735 + ], + "libelle_d_acheminement": "WAHLBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34645616735, + 47.6297810488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c214ea5a98841c794dc5f2db89e3db613b14f9aa", + "fields": { + "code_commune_insee": "68357", + "nom_de_la_commune": "WALTENHEIM", + "code_postal": "68510", + "coordonnees_gps": [ + 47.6556165524, + 7.42289070727 + ], + "libelle_d_acheminement": "WALTENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42289070727, + 47.6556165524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c492ff30d5b3ab0398e15af3954a87b93c984f8d", + "fields": { + "code_commune_insee": "68371", + "nom_de_la_commune": "WILLER", + "code_postal": "68960", + "coordonnees_gps": [ + 47.5795307202, + 7.32499387503 + ], + "libelle_d_acheminement": "WILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32499387503, + 47.5795307202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d822fd2c678b89f42cc847d5e2b238867098b68", + "fields": { + "code_commune_insee": "68381", + "nom_de_la_commune": "WUENHEIM", + "code_postal": "68500", + "coordonnees_gps": [ + 47.8689114622, + 7.18554578054 + ], + "libelle_d_acheminement": "WUENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18554578054, + 47.8689114622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90bb5871ef892b24486f54e13ca92c20314e2485", + "fields": { + "code_commune_insee": "69001", + "nom_de_la_commune": "AFFOUX", + "code_postal": "69170", + "coordonnees_gps": [ + 45.8440645304, + 4.41392129755 + ], + "libelle_d_acheminement": "AFFOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41392129755, + 45.8440645304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c594bfbbb3f0dc79ce171e4c6c6ac905750129d", + "fields": { + "code_commune_insee": "69004", + "nom_de_la_commune": "ALIX", + "code_postal": "69380", + "coordonnees_gps": [ + 45.9168253291, + 4.65500393132 + ], + "libelle_d_acheminement": "ALIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65500393132, + 45.9168253291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a97c5ab46092430e8e16704fe99019744cf38df0", + "fields": { + "code_commune_insee": "69005", + "nom_de_la_commune": "AMBERIEUX", + "code_postal": "69480", + "coordonnees_gps": [ + 45.9288848222, + 4.74109023714 + ], + "libelle_d_acheminement": "AMBERIEUX D AZERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74109023714, + 45.9288848222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bc7fa8fcb07fa465c254149f06fabcd82cc65e1", + "fields": { + "ligne_5": "ROCHEFORT", + "code_commune_insee": "69006", + "libelle_d_acheminement": "AMPLEPUIS", + "code_postal": "69550", + "nom_de_la_commune": "AMPLEPUIS", + "coordonnees_gps": [ + 45.9651984924, + 4.32676291669 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32676291669, + 45.9651984924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecbc318d0c877e9f0388ff8b9784e1c8ae393eb4", + "fields": { + "ligne_5": "BELLEVILLE", + "code_commune_insee": "69019", + "libelle_d_acheminement": "BELLEVILLE EN BEAUJOLAIS", + "code_postal": "69220", + "nom_de_la_commune": "BELLEVILLE EN BEAUJOLAIS", + "coordonnees_gps": [ + 46.1021561474, + 4.73105689691 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73105689691, + 46.1021561474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c434d1e64bf3c8432a1a6ed2f1f5178e4a9ff20", + "fields": { + "ligne_5": "LES ROCHES", + "code_commune_insee": "69021", + "libelle_d_acheminement": "BESSENAY", + "code_postal": "69690", + "nom_de_la_commune": "BESSENAY", + "coordonnees_gps": [ + 45.774361074, + 4.54738228306 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54738228306, + 45.774361074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32f3aae0afb58b6e40e4c62842c0be9137209f37", + "fields": { + "ligne_5": "ST LAURENT D OINGT", + "code_commune_insee": "69024", + "libelle_d_acheminement": "VAL D OINGT", + "code_postal": "69620", + "nom_de_la_commune": "VAL D OINGT", + "coordonnees_gps": [ + 45.9188737019, + 4.5787353944 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5787353944, + 45.9188737019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "685aad7fa36d3595e31ee9271b83e1c657a8a42c", + "fields": { + "code_commune_insee": "69031", + "nom_de_la_commune": "BRUSSIEU", + "code_postal": "69690", + "coordonnees_gps": [ + 45.7472888817, + 4.51714598169 + ], + "libelle_d_acheminement": "BRUSSIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51714598169, + 45.7472888817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8592910d37cc1720e33355ef11c372c80bba1cd7", + "fields": { + "code_commune_insee": "69034", + "nom_de_la_commune": "CALUIRE ET CUIRE", + "code_postal": "69300", + "coordonnees_gps": [ + 45.7974053648, + 4.85124857101 + ], + "libelle_d_acheminement": "CALUIRE ET CUIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85124857101, + 45.7974053648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a94722820b17617eeaedc6e37cd86b3b246f89d5", + "fields": { + "code_commune_insee": "69036", + "nom_de_la_commune": "CERCIE", + "code_postal": "69220", + "coordonnees_gps": [ + 46.1259448157, + 4.66717778294 + ], + "libelle_d_acheminement": "CERCIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66717778294, + 46.1259448157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de2cb9025f9702c44371318cc397883a5fd57cbe", + "fields": { + "code_commune_insee": "69057", + "nom_de_la_commune": "CHEVINAY", + "code_postal": "69210", + "coordonnees_gps": [ + 45.773502658, + 4.59662114692 + ], + "libelle_d_acheminement": "CHEVINAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59662114692, + 45.773502658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "390dc43f0dfa882baf64698379eb3c76af64cd54", + "fields": { + "code_commune_insee": "69060", + "nom_de_la_commune": "CLAVEISOLLES", + "code_postal": "69870", + "coordonnees_gps": [ + 46.0976713102, + 4.51103752015 + ], + "libelle_d_acheminement": "CLAVEISOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51103752015, + 46.0976713102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e051690b1228536d80802eced9874b4641e83cc", + "fields": { + "code_commune_insee": "69065", + "nom_de_la_commune": "CORCELLES EN BEAUJOLAIS", + "code_postal": "69220", + "coordonnees_gps": [ + 46.153800482, + 4.72504633206 + ], + "libelle_d_acheminement": "CORCELLES EN BEAUJOLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72504633206, + 46.153800482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9b02c2fdd297cc555e2c725194239b029af26a7", + "fields": { + "code_commune_insee": "69076", + "nom_de_la_commune": "DOMMARTIN", + "code_postal": "69380", + "coordonnees_gps": [ + 45.8357243941, + 4.7156731311 + ], + "libelle_d_acheminement": "DOMMARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7156731311, + 45.8357243941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d9e767763c7c38e6f35d6be92156ec5ff197b17", + "fields": { + "code_commune_insee": "69078", + "nom_de_la_commune": "DUERNE", + "code_postal": "69850", + "coordonnees_gps": [ + 45.6813849409, + 4.52319550828 + ], + "libelle_d_acheminement": "DUERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52319550828, + 45.6813849409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fabab3afe55d3390e835681740750dbcc5d4cc04", + "fields": { + "ligne_5": "LA RODIERE", + "code_commune_insee": "69080", + "libelle_d_acheminement": "ECHALAS", + "code_postal": "69700", + "nom_de_la_commune": "ECHALAS", + "coordonnees_gps": [ + 45.5506779948, + 4.72996324702 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72996324702, + 45.5506779948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fa772c62b3363e06360dfa01c39c9f0d0699127", + "fields": { + "code_commune_insee": "69092", + "nom_de_la_commune": "GLEIZE", + "code_postal": "69400", + "coordonnees_gps": [ + 45.9910359834, + 4.68792227737 + ], + "libelle_d_acheminement": "GLEIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68792227737, + 45.9910359834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be91a18007b57dfd9f39a225572847cc978cd7b8", + "fields": { + "code_commune_insee": "69094", + "nom_de_la_commune": "GREZIEU LA VARENNE", + "code_postal": "69290", + "coordonnees_gps": [ + 45.7477283973, + 4.6895073804 + ], + "libelle_d_acheminement": "GREZIEU LA VARENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6895073804, + 45.7477283973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bfebd0ffbcf06b39ba2bf0fa6ee7dbd8ee4d5e3", + "fields": { + "code_commune_insee": "69096", + "nom_de_la_commune": "GRIGNY", + "code_postal": "69520", + "coordonnees_gps": [ + 45.6080535265, + 4.78645083138 + ], + "libelle_d_acheminement": "GRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78645083138, + 45.6080535265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24a778645dbf4dc7b04b16697e2f717fcefc8ae9", + "fields": { + "code_commune_insee": "69102", + "nom_de_la_commune": "JOUX", + "code_postal": "69170", + "coordonnees_gps": [ + 45.890505206, + 4.36735802084 + ], + "libelle_d_acheminement": "JOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36735802084, + 45.890505206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "110005312f31f0540a37503b1d18a663d3df3496", + "fields": { + "code_commune_insee": "69103", + "nom_de_la_commune": "JULIENAS", + "code_postal": "69840", + "coordonnees_gps": [ + 46.2415176527, + 4.70402695558 + ], + "libelle_d_acheminement": "JULIENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70402695558, + 46.2415176527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "789d08b5c8f7f15481843b28c55e6d7a150640ab", + "fields": { + "code_commune_insee": "69107", + "nom_de_la_commune": "LAMURE SUR AZERGUES", + "code_postal": "69870", + "coordonnees_gps": [ + 46.0528953737, + 4.50887540791 + ], + "libelle_d_acheminement": "LAMURE SUR AZERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50887540791, + 46.0528953737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "503211d990aed1cf9572f599cbde75e2960e68cc", + "fields": { + "code_commune_insee": "69109", + "nom_de_la_commune": "LANTIGNIE", + "code_postal": "69430", + "coordonnees_gps": [ + 46.1557078, + 4.61861693858 + ], + "libelle_d_acheminement": "LANTIGNIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61861693858, + 46.1557078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a698793acf2afafa3587fd1f8aa0978a6db4887d", + "fields": { + "code_commune_insee": "69110", + "nom_de_la_commune": "LARAJASSE", + "code_postal": "69590", + "coordonnees_gps": [ + 45.6079976924, + 4.51457589582 + ], + "libelle_d_acheminement": "LARAJASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51457589582, + 45.6079976924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b82fc09091f43aebe162fbb7e4d408275c90c396", + "fields": { + "code_commune_insee": "69111", + "nom_de_la_commune": "LEGNY", + "code_postal": "69620", + "coordonnees_gps": [ + 45.9039971217, + 4.57416632232 + ], + "libelle_d_acheminement": "LEGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57416632232, + 45.9039971217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68facfa2eb88b1f1faf0d3141ece0c361754a3c0", + "fields": { + "ligne_5": "LA ROCHE", + "code_commune_insee": "69113", + "libelle_d_acheminement": "LETRA", + "code_postal": "69620", + "nom_de_la_commune": "LETRA", + "coordonnees_gps": [ + 45.9718911586, + 4.52615651956 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52615651956, + 45.9718911586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2991f46878dc6631705ba7ef20c51f773867c510", + "fields": { + "code_commune_insee": "69121", + "nom_de_la_commune": "LOZANNE", + "code_postal": "69380", + "coordonnees_gps": [ + 45.8530206071, + 4.68542193423 + ], + "libelle_d_acheminement": "LOZANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68542193423, + 45.8530206071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb262e0f9cb14dd0874f20fba8e28c9306cf91db", + "fields": { + "code_commune_insee": "69131", + "nom_de_la_commune": "MESSIMY", + "code_postal": "69510", + "coordonnees_gps": [ + 45.6988993834, + 4.67145765319 + ], + "libelle_d_acheminement": "MESSIMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67145765319, + 45.6988993834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bd4b51b5275fb98a5a9890ee24c184bcf8cfc95", + "fields": { + "code_commune_insee": "69132", + "nom_de_la_commune": "MEYS", + "code_postal": "69610", + "coordonnees_gps": [ + 45.681836669, + 4.40076611695 + ], + "libelle_d_acheminement": "MEYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40076611695, + 45.681836669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41ff3fd65c1e24cb9f5b7de65997822f805fd8f5", + "fields": { + "ligne_5": "ST MAMERT", + "code_commune_insee": "69135", + "libelle_d_acheminement": "DEUX GROSNES", + "code_postal": "69860", + "nom_de_la_commune": "DEUX GROSNES", + "coordonnees_gps": [ + 46.2227835629, + 4.51394181008 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51394181008, + 46.2227835629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "458c2e5518b6a561c418b3ff45c11a5427402ab3", + "fields": { + "code_commune_insee": "69138", + "nom_de_la_commune": "MONTROMANT", + "code_postal": "69610", + "coordonnees_gps": [ + 45.7109243581, + 4.53559681383 + ], + "libelle_d_acheminement": "MONTROMANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53559681383, + 45.7109243581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64a842b502a586148ea2e9a9c68136e338a579db", + "fields": { + "ligne_5": "LE BOULARD", + "code_commune_insee": "69148", + "libelle_d_acheminement": "ORLIENAS", + "code_postal": "69530", + "nom_de_la_commune": "ORLIENAS", + "coordonnees_gps": [ + 45.6609705564, + 4.72076320026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72076320026, + 45.6609705564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d68dc6f7c669d696b44d786c9c1730d359f487c", + "fields": { + "ligne_5": "PONTCHARRA SUR TURDINE", + "code_commune_insee": "69157", + "libelle_d_acheminement": "VINDRY SUR TURDINE", + "code_postal": "69490", + "nom_de_la_commune": "VINDRY SUR TURDINE", + "coordonnees_gps": [ + 45.8770735618, + 4.49571511005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49571511005, + 45.8770735618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91950a952a54c97850a6ba1ca2a92baf309bd1c1", + "fields": { + "ligne_5": "LIERGUES", + "code_commune_insee": "69159", + "libelle_d_acheminement": "PORTE DES PIERRES DOREES", + "code_postal": "69400", + "nom_de_la_commune": "PORTE DES PIERRES DOREES", + "coordonnees_gps": [ + 45.9554021029, + 4.64557594844 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64557594844, + 45.9554021029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc6fc447049f3d2d4c977c66fe13575648d75dea", + "fields": { + "code_commune_insee": "69163", + "nom_de_la_commune": "QUINCIEUX", + "code_postal": "69650", + "coordonnees_gps": [ + 45.9136198331, + 4.77375123298 + ], + "libelle_d_acheminement": "QUINCIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77375123298, + 45.9136198331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6545ff1f6b69d0ba97c716a1f90113e0db5da69d", + "fields": { + "code_commune_insee": "69164", + "nom_de_la_commune": "RANCHAL", + "code_postal": "69470", + "coordonnees_gps": [ + 46.1234461797, + 4.4024348545 + ], + "libelle_d_acheminement": "RANCHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4024348545, + 46.1234461797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdd034db79b892d951b30ac951b8d5348b8f9505", + "fields": { + "code_commune_insee": "69166", + "nom_de_la_commune": "RIVERIE", + "code_postal": "69440", + "coordonnees_gps": [ + 45.599294924, + 4.58907052971 + ], + "libelle_d_acheminement": "RIVERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58907052971, + 45.599294924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9cf0c17964e4dfeb0f94de7d37fd58b962a926b", + "fields": { + "ligne_5": "LA FOUILLOUSE", + "code_commune_insee": "69167", + "libelle_d_acheminement": "RIVOLET", + "code_postal": "69640", + "nom_de_la_commune": "RIVOLET", + "coordonnees_gps": [ + 46.0065781442, + 4.58017136765 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58017136765, + 46.0065781442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "449f5476966fbf8746c8eba31b90561418c1304e", + "fields": { + "ligne_5": "ARBUISSONNAS", + "code_commune_insee": "69172", + "libelle_d_acheminement": "SALLES ARBUISSONNAS BEAUJOLAIS", + "code_postal": "69460", + "nom_de_la_commune": "SALLES ARBUISSONNAS EN BEAUJOLAIS", + "coordonnees_gps": [ + 46.0453025139, + 4.63089316572 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63089316572, + 46.0453025139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3416de2e7581cd2fe0079301ba3cd6f94ae09736", + "fields": { + "code_commune_insee": "69175", + "nom_de_la_commune": "SAVIGNY", + "code_postal": "69210", + "coordonnees_gps": [ + 45.8200944219, + 4.56587314617 + ], + "libelle_d_acheminement": "SAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56587314617, + 45.8200944219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d09efdbcecee46f261ee3c3eb8730635e2a1bceb", + "fields": { + "code_commune_insee": "69178", + "nom_de_la_commune": "SOUZY", + "code_postal": "69610", + "coordonnees_gps": [ + 45.7040409775, + 4.45107532306 + ], + "libelle_d_acheminement": "SOUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45107532306, + 45.7040409775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e243bf52cc8d312050b3ba7e6d5254ce55f8af0d", + "fields": { + "ligne_5": "ST ANDEOL LE CHATEAU", + "code_commune_insee": "69179", + "libelle_d_acheminement": "BEAUVALLON", + "code_postal": "69700", + "nom_de_la_commune": "BEAUVALLON", + "coordonnees_gps": [ + 45.5895638016, + 4.69551467475 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69551467475, + 45.5895638016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "defb799dc251e9b6e3276ccb8e6aad3cee303fc3", + "fields": { + "ligne_5": "LA FLACHERE", + "code_commune_insee": "69184", + "libelle_d_acheminement": "STE CATHERINE", + "code_postal": "69440", + "nom_de_la_commune": "STE CATHERINE", + "coordonnees_gps": [ + 45.6030568648, + 4.57279453276 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57279453276, + 45.6030568648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be09a786b186604e63be3665a4c0ea853bc04f78", + "fields": { + "code_commune_insee": "69190", + "nom_de_la_commune": "STE CONSORCE", + "code_postal": "69280", + "coordonnees_gps": [ + 45.7744360761, + 4.69352659139 + ], + "libelle_d_acheminement": "STE CONSORCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69352659139, + 45.7744360761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2d6e1b2f3acfb623a2148313b52e1fb80b94e40", + "fields": { + "code_commune_insee": "69191", + "nom_de_la_commune": "ST CYR AU MONT D OR", + "code_postal": "69450", + "coordonnees_gps": [ + 45.819421673, + 4.81813452511 + ], + "libelle_d_acheminement": "ST CYR AU MONT D OR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81813452511, + 45.819421673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98b45c319104fe183ebd09b488c12b423c1b1cdb", + "fields": { + "code_commune_insee": "69198", + "nom_de_la_commune": "ST ETIENNE LA VARENNE", + "code_postal": "69460", + "coordonnees_gps": [ + 46.0771106167, + 4.62211062992 + ], + "libelle_d_acheminement": "ST ETIENNE LA VARENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62211062992, + 46.0771106167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "303b1eddd463f151a96761a615c29e3603614b1e", + "fields": { + "code_commune_insee": "69202", + "nom_de_la_commune": "STE FOY LES LYON", + "code_postal": "69110", + "coordonnees_gps": [ + 45.7359781395, + 4.79343173908 + ], + "libelle_d_acheminement": "STE FOY LES LYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79343173908, + 45.7359781395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c93ea08db2e925f71191c611b719095b335c312", + "fields": { + "code_commune_insee": "69205", + "nom_de_la_commune": "ST GENIS LES OLLIERES", + "code_postal": "69290", + "coordonnees_gps": [ + 45.7610551042, + 4.72602177608 + ], + "libelle_d_acheminement": "ST GENIS LES OLLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72602177608, + 45.7610551042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78b8ef14613376552217c94ca9ca0e9765e96e92", + "fields": { + "code_commune_insee": "69208", + "nom_de_la_commune": "ST GERMAIN NUELLES", + "code_postal": "69210", + "coordonnees_gps": [ + 45.8643153659, + 4.6129807389 + ], + "libelle_d_acheminement": "ST GERMAIN NUELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6129807389, + 45.8643153659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf51be984917098176ed00890c7b74cddc305c71", + "fields": { + "code_commune_insee": "69209", + "nom_de_la_commune": "ST IGNY DE VERS", + "code_postal": "69790", + "coordonnees_gps": [ + 46.2368070195, + 4.44156117895 + ], + "libelle_d_acheminement": "ST IGNY DE VERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44156117895, + 46.2368070195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27d9a14777ba4f4a73cc7f26d645f9cdcc4b3915", + "fields": { + "code_commune_insee": "69214", + "nom_de_la_commune": "ST JEAN LA BUSSIERE", + "code_postal": "69550", + "coordonnees_gps": [ + 46.0024923501, + 4.33306626203 + ], + "libelle_d_acheminement": "ST JEAN LA BUSSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33306626203, + 46.0024923501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78a4bb15a18ba945cdbd15818bcaf9d015a58a89", + "fields": { + "code_commune_insee": "69218", + "nom_de_la_commune": "ST LAGER", + "code_postal": "69220", + "coordonnees_gps": [ + 46.1119203914, + 4.67603777792 + ], + "libelle_d_acheminement": "ST LAGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67603777792, + 46.1119203914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9d17c604da4308f942b3b169fe30df04a44a600", + "fields": { + "ligne_5": "ST VINCENT", + "code_commune_insee": "69219", + "libelle_d_acheminement": "ST LAURENT D AGNY", + "code_postal": "69440", + "nom_de_la_commune": "ST LAURENT D AGNY", + "coordonnees_gps": [ + 45.6427267769, + 4.68437785922 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68437785922, + 45.6427267769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c23afb606bf7eba47142a06cf53008d880ae54e3", + "fields": { + "code_commune_insee": "69230", + "nom_de_la_commune": "STE PAULE", + "code_postal": "69620", + "coordonnees_gps": [ + 45.9721337297, + 4.56220399315 + ], + "libelle_d_acheminement": "STE PAULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56220399315, + 45.9721337297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0570402b17fec90577c4b1577891856d73c6afdc", + "fields": { + "ligne_5": "POMERIEUX", + "code_commune_insee": "69235", + "libelle_d_acheminement": "ST ROMAIN EN GAL", + "code_postal": "69560", + "nom_de_la_commune": "ST ROMAIN EN GAL", + "coordonnees_gps": [ + 45.5357749158, + 4.8261922699 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8261922699, + 45.5357749158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae78841e350bdab26c79335037a948c2eb165b42", + "fields": { + "code_commune_insee": "69238", + "nom_de_la_commune": "ST SYMPHORIEN SUR COISE", + "code_postal": "69590", + "coordonnees_gps": [ + 45.6308546357, + 4.45042661825 + ], + "libelle_d_acheminement": "ST SYMPHORIEN SUR COISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45042661825, + 45.6308546357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a6d6bdbc2444b2ca3f38c605809636bafff3564", + "fields": { + "code_commune_insee": "69243", + "nom_de_la_commune": "TARARE", + "code_postal": "69170", + "coordonnees_gps": [ + 45.9036535552, + 4.42375959345 + ], + "libelle_d_acheminement": "TARARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42375959345, + 45.9036535552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "378a7cae8d985cedb54bbfe81f33d2e527c19778", + "fields": { + "code_commune_insee": "69245", + "nom_de_la_commune": "TERNAND", + "code_postal": "69620", + "coordonnees_gps": [ + 45.9482185979, + 4.52178604805 + ], + "libelle_d_acheminement": "TERNAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52178604805, + 45.9482185979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00a8445cfb369fca5e2bc54cfbd8a680de6b799d", + "fields": { + "code_commune_insee": "69257", + "nom_de_la_commune": "VAUX EN BEAUJOLAIS", + "code_postal": "69460", + "coordonnees_gps": [ + 46.0460801697, + 4.57697750068 + ], + "libelle_d_acheminement": "VAUX EN BEAUJOLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57697750068, + 46.0460801697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e903124238cded4484279a9d3d933a05675b185", + "fields": { + "code_commune_insee": "69263", + "nom_de_la_commune": "VILLECHENEVE", + "code_postal": "69770", + "coordonnees_gps": [ + 45.8168065047, + 4.40737314323 + ], + "libelle_d_acheminement": "VILLECHENEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40737314323, + 45.8168065047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65b7d98723e118ae5e058b926658554f1ccabab6", + "fields": { + "code_commune_insee": "69264", + "nom_de_la_commune": "VILLEFRANCHE SUR SAONE", + "code_postal": "69400", + "coordonnees_gps": [ + 45.9874596667, + 4.73174007305 + ], + "libelle_d_acheminement": "VILLEFRANCHE SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73174007305, + 45.9874596667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb41ffb07524fc072d9bd8d97d5d72dbfe29599b", + "fields": { + "code_commune_insee": "69265", + "nom_de_la_commune": "VILLE SUR JARNIOUX", + "code_postal": "69640", + "coordonnees_gps": [ + 45.9699127894, + 4.59789508297 + ], + "libelle_d_acheminement": "VILLE SUR JARNIOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59789508297, + 45.9699127894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eb1cffbc055ee100e02bf30bf9c86c67e4bbddc", + "fields": { + "code_commune_insee": "69267", + "nom_de_la_commune": "VILLIE MORGON", + "code_postal": "69910", + "coordonnees_gps": [ + 46.1597734434, + 4.67110459009 + ], + "libelle_d_acheminement": "VILLIE MORGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67110459009, + 46.1597734434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "423caea2fa35d9c84db81e34cdd953a3a160a498", + "fields": { + "code_commune_insee": "69271", + "nom_de_la_commune": "CHASSIEU", + "code_postal": "69680", + "coordonnees_gps": [ + 45.7376148968, + 4.96172914286 + ], + "libelle_d_acheminement": "CHASSIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96172914286, + 45.7376148968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfd6908d1a9cd53acfb8d5e039f156871b61c204", + "fields": { + "code_commune_insee": "69273", + "nom_de_la_commune": "CORBAS", + "code_postal": "69960", + "coordonnees_gps": [ + 45.6680498711, + 4.90843949215 + ], + "libelle_d_acheminement": "CORBAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90843949215, + 45.6680498711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26cb807ed537a86fd9c6b6a8597fb899de81d284", + "fields": { + "code_commune_insee": "69277", + "nom_de_la_commune": "GENAS", + "code_postal": "69740", + "coordonnees_gps": [ + 45.7297209932, + 5.01590344241 + ], + "libelle_d_acheminement": "GENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01590344241, + 45.7297209932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fec76f5fe38fc99e5fd34bfbd5d7cb8d0e74da1", + "fields": { + "code_commune_insee": "69278", + "nom_de_la_commune": "GENAY", + "code_postal": "69730", + "coordonnees_gps": [ + 45.8980767438, + 4.83863435794 + ], + "libelle_d_acheminement": "GENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83863435794, + 45.8980767438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e203b3bd93e5bd54d07f260218271ce5b0e9535", + "fields": { + "code_commune_insee": "69279", + "nom_de_la_commune": "JONAGE", + "code_postal": "69330", + "coordonnees_gps": [ + 45.7911073541, + 5.0415336287 + ], + "libelle_d_acheminement": "JONAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0415336287, + 45.7911073541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b3fecc80601105f791166620c491d52555adcb8", + "fields": { + "code_commune_insee": "69282", + "nom_de_la_commune": "MEYZIEU", + "code_postal": "69330", + "coordonnees_gps": [ + 45.7770899686, + 5.00632679347 + ], + "libelle_d_acheminement": "MEYZIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00632679347, + 45.7770899686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "599bb05c909e5f053922eb5e696c5badcda88e5c", + "fields": { + "code_commune_insee": "69295", + "nom_de_la_commune": "SIMANDRES", + "code_postal": "69360", + "coordonnees_gps": [ + 45.6115676651, + 4.87107567478 + ], + "libelle_d_acheminement": "SIMANDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87107567478, + 45.6115676651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d5cb114b6eafd9a14f2cda49564df385f0c2514", + "fields": { + "code_commune_insee": "69299", + "nom_de_la_commune": "COLOMBIER SAUGNIEU", + "code_postal": "69124", + "coordonnees_gps": [ + 45.7178013267, + 5.10337456661 + ], + "libelle_d_acheminement": "COLOMBIER SAUGNIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10337456661, + 45.7178013267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "955800d0c7d3f2c173dab8fb7cb014b7ff32ee39", + "fields": { + "ligne_5": "SAUGNIEU", + "code_commune_insee": "69299", + "libelle_d_acheminement": "COLOMBIER SAUGNIEU", + "code_postal": "69124", + "nom_de_la_commune": "COLOMBIER SAUGNIEU", + "coordonnees_gps": [ + 45.7178013267, + 5.10337456661 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10337456661, + 45.7178013267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b979027c5ffb4aca566a741c2f3e080de41243e5", + "fields": { + "ligne_5": "LYON ST EXUPERY AEROPORT", + "code_commune_insee": "69299", + "libelle_d_acheminement": "COLOMBIER SAUGNIEU", + "code_postal": "69125", + "nom_de_la_commune": "COLOMBIER SAUGNIEU", + "coordonnees_gps": [ + 45.7178013267, + 5.10337456661 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10337456661, + 45.7178013267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1781b419a47d815c5498c54e0e8954b46ee77486", + "fields": { + "code_commune_insee": "69382", + "nom_de_la_commune": "LYON 02", + "code_postal": "69002", + "coordonnees_gps": [ + 45.7492560394, + 4.82617032549 + ], + "libelle_d_acheminement": "LYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82617032549, + 45.7492560394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e34254873d7cf15ba047b6ba9b2b4a51356170b5", + "fields": { + "code_commune_insee": "69383", + "nom_de_la_commune": "LYON 03", + "code_postal": "69003", + "coordonnees_gps": [ + 45.7533552486, + 4.86918522013 + ], + "libelle_d_acheminement": "LYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86918522013, + 45.7533552486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "742d21349d21c9b819644b33e354e7096b3059e1", + "fields": { + "code_commune_insee": "70019", + "nom_de_la_commune": "ANDELARRE", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5902572051, + 6.09074936306 + ], + "libelle_d_acheminement": "ANDELARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09074936306, + 47.5902572051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77a9a3a6b88ddd75b82e9a1edec5131c3abad9d1", + "fields": { + "code_commune_insee": "70025", + "nom_de_la_commune": "ARBECEY", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7352817883, + 5.93210492724 + ], + "libelle_d_acheminement": "ARBECEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93210492724, + 47.7352817883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca8b42fdebcba99ca16f129e843a5f8ef5329852", + "fields": { + "code_commune_insee": "70027", + "nom_de_la_commune": "ARGILLIERES", + "code_postal": "70600", + "coordonnees_gps": [ + 47.6646891892, + 5.62545925232 + ], + "libelle_d_acheminement": "ARGILLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62545925232, + 47.6646891892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acb54978b1343434806bc7abba7817a54c019486", + "fields": { + "code_commune_insee": "70029", + "nom_de_la_commune": "ARPENANS", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6208422399, + 6.41263553144 + ], + "libelle_d_acheminement": "ARPENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41263553144, + 47.6208422399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64115be554db4380ec878292b12a1eeeae8e8943", + "fields": { + "code_commune_insee": "70036", + "nom_de_la_commune": "AULX LES CROMARY", + "code_postal": "70190", + "coordonnees_gps": [ + 47.3755613472, + 6.09713595885 + ], + "libelle_d_acheminement": "AULX LES CROMARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09713595885, + 47.3755613472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cbadb6021f72a3d79bedcb2c7b754f166cd43f0", + "fields": { + "code_commune_insee": "70037", + "nom_de_la_commune": "AUTET", + "code_postal": "70180", + "coordonnees_gps": [ + 47.545285848, + 5.70067460474 + ], + "libelle_d_acheminement": "AUTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70067460474, + 47.545285848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18b8ba12caf7c36c7176adf773d727c7e153b610", + "fields": { + "code_commune_insee": "70038", + "nom_de_la_commune": "AUTHOISON", + "code_postal": "70190", + "coordonnees_gps": [ + 47.491649936, + 6.14448125556 + ], + "libelle_d_acheminement": "AUTHOISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14448125556, + 47.491649936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2b0e790ff4d693636fba6459c84bc1b8e146f82", + "fields": { + "code_commune_insee": "70040", + "nom_de_la_commune": "AUTREY LES CERRE", + "code_postal": "70110", + "coordonnees_gps": [ + 47.6127923276, + 6.34600936361 + ], + "libelle_d_acheminement": "AUTREY LES CERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34600936361, + 47.6127923276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46d620b9dfd2cc904f222b35f4d2a2ea3162a1b6", + "fields": { + "code_commune_insee": "70042", + "nom_de_la_commune": "AUTREY LE VAY", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5364102911, + 6.39638774962 + ], + "libelle_d_acheminement": "AUTREY LE VAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39638774962, + 47.5364102911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "091086ff9d722df49f97f8fc8f11c15ae6fc23f8", + "fields": { + "code_commune_insee": "70044", + "nom_de_la_commune": "AUXON", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6949909987, + 6.1544576881 + ], + "libelle_d_acheminement": "AUXON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1544576881, + 47.6949909987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c546311cb329f3acd87808c95bb86df864d1bb11", + "fields": { + "code_commune_insee": "70047", + "nom_de_la_commune": "BAIGNES", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5799666192, + 6.04782245584 + ], + "libelle_d_acheminement": "BAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04782245584, + 47.5799666192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35793616ab55ceed3976a2fe4ef232fc30244f90", + "fields": { + "code_commune_insee": "70052", + "nom_de_la_commune": "BASSIGNEY", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8246954089, + 6.18322387163 + ], + "libelle_d_acheminement": "BASSIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18322387163, + 47.8246954089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6949bd979469e456a0e9e13142c807795f6b2e03", + "fields": { + "code_commune_insee": "70055", + "nom_de_la_commune": "BAUDONCOURT", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7753645972, + 6.34425326102 + ], + "libelle_d_acheminement": "BAUDONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34425326102, + 47.7753645972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb7e503243be040fcb81dd2e9fab33170ba04361", + "fields": { + "code_commune_insee": "70058", + "nom_de_la_commune": "BEAUJEU ST VALLIER PIERREJUX QUITTEUR", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4986137613, + 5.69348817129 + ], + "libelle_d_acheminement": "BEAUJEU ET QUITTEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69348817129, + 47.4986137613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecfa5ec906a6ba9ebad8ae8592dadf63631cc66e", + "fields": { + "code_commune_insee": "70071", + "nom_de_la_commune": "BEULOTTE ST LAURENT", + "code_postal": "70310", + "coordonnees_gps": [ + 47.8688160594, + 6.67305784472 + ], + "libelle_d_acheminement": "BEULOTTE ST LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67305784472, + 47.8688160594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e1aa3737b7360f5af885eb6eaf4267b79ec72c9", + "fields": { + "code_commune_insee": "70072", + "nom_de_la_commune": "BEVEUGE", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5598685555, + 6.49132432795 + ], + "libelle_d_acheminement": "BEVEUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49132432795, + 47.5598685555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a3994671a85d3149753df5e280674a5efb08833", + "fields": { + "code_commune_insee": "70077", + "nom_de_la_commune": "BOREY", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5806974157, + 6.35176301516 + ], + "libelle_d_acheminement": "BOREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35176301516, + 47.5806974157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ecbf5eb206c043502213147955243d8d20d8a55", + "fields": { + "code_commune_insee": "70078", + "nom_de_la_commune": "BOUGEY", + "code_postal": "70500", + "coordonnees_gps": [ + 47.783385036, + 5.86240543155 + ], + "libelle_d_acheminement": "BOUGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86240543155, + 47.783385036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71c06dab0e8464bc4e8eb15c06106c3b53a2877f", + "fields": { + "code_commune_insee": "70079", + "nom_de_la_commune": "BOUGNON", + "code_postal": "70170", + "coordonnees_gps": [ + 47.6948892117, + 6.10776977153 + ], + "libelle_d_acheminement": "BOUGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10776977153, + 47.6948892117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de985e826330e6da6aeea727f8ffe9e34c778b04", + "fields": { + "code_commune_insee": "70081", + "nom_de_la_commune": "BOUHANS LES LURE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6962715281, + 6.43809662035 + ], + "libelle_d_acheminement": "BOUHANS LES LURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43809662035, + 47.6962715281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2d156b87cc7b92ffd2ada4b54865d42fd0d37ed", + "fields": { + "code_commune_insee": "70083", + "nom_de_la_commune": "BOULIGNEY", + "code_postal": "70800", + "coordonnees_gps": [ + 47.911701027, + 6.2482203935 + ], + "libelle_d_acheminement": "BOULIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2482203935, + 47.911701027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24369eebd788288ab40712f04c12fb938d013947", + "fields": { + "code_commune_insee": "70086", + "nom_de_la_commune": "BOURBEVELLE", + "code_postal": "70500", + "coordonnees_gps": [ + 47.9147406842, + 5.94531974119 + ], + "libelle_d_acheminement": "BOURBEVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94531974119, + 47.9147406842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1cb9bad4128a4fd0e1d59a285cba817e743b53d", + "fields": { + "code_commune_insee": "70087", + "nom_de_la_commune": "BOURGUIGNON LES CONFLANS", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8155894506, + 6.15743320592 + ], + "libelle_d_acheminement": "BOURGUIGNON LES CONFLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15743320592, + 47.8155894506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db99ef7af78911ada26bd5140176978a007acec7", + "fields": { + "code_commune_insee": "70089", + "nom_de_la_commune": "BOURGUIGNON LES MOREY", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7073928525, + 5.70735229173 + ], + "libelle_d_acheminement": "BOURGUIGNON LES MOREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70735229173, + 47.7073928525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "672172a1dabc61fc1bbc7bd93e3d962dbeeb5d1a", + "fields": { + "code_commune_insee": "70091", + "nom_de_la_commune": "BOUSSERAUCOURT", + "code_postal": "70500", + "coordonnees_gps": [ + 47.9631646944, + 5.93606571661 + ], + "libelle_d_acheminement": "BOUSSERAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93606571661, + 47.9631646944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29dfb62ca3549a492dea93e223740eeb3ac319d9", + "fields": { + "code_commune_insee": "70097", + "nom_de_la_commune": "BRIAUCOURT", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8205372453, + 6.24665609109 + ], + "libelle_d_acheminement": "BRIAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24665609109, + 47.8205372453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b2f71c9a2d45eefa7942755cf09eda1477486a2", + "fields": { + "ligne_5": "MONTSEUGNY", + "code_commune_insee": "70101", + "libelle_d_acheminement": "BROYE AUBIGNEY MONTSEUGNY", + "code_postal": "70140", + "nom_de_la_commune": "BROYE AUBIGNEY MONTSEUGNY", + "coordonnees_gps": [ + 47.3305692734, + 5.5187191763 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5187191763, + 47.3305692734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34c62789ee2e7c8859a0f845610ed3e11ab127d5", + "fields": { + "code_commune_insee": "70114", + "nom_de_la_commune": "CENDRECOURT", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8396085675, + 5.93861883331 + ], + "libelle_d_acheminement": "CENDRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93861883331, + 47.8396085675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7644e6cf2c00b5b6910c7a6786c1ce3932f782d", + "fields": { + "code_commune_insee": "70116", + "nom_de_la_commune": "CHAGEY", + "code_postal": "70400", + "coordonnees_gps": [ + 47.6209267815, + 6.7351701305 + ], + "libelle_d_acheminement": "CHAGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7351701305, + 47.6209267815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "969988841a2ea49161b2864947006d9ae1da58a9", + "fields": { + "code_commune_insee": "70117", + "nom_de_la_commune": "CHALONVILLARS", + "code_postal": "70400", + "coordonnees_gps": [ + 47.6376239575, + 6.77677655233 + ], + "libelle_d_acheminement": "CHALONVILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77677655233, + 47.6376239575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74b667289c2311ccaa2e2db8042828873319cb65", + "fields": { + "code_commune_insee": "70120", + "nom_de_la_commune": "CHAMPAGNEY", + "code_postal": "70290", + "coordonnees_gps": [ + 47.6950851655, + 6.68822303825 + ], + "libelle_d_acheminement": "CHAMPAGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68822303825, + 47.6950851655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4562c1a366b845afd200fd68642becbce69fca43", + "fields": { + "ligne_5": "CHAMPLITTE LA VILLE", + "code_commune_insee": "70122", + "libelle_d_acheminement": "CHAMPLITTE", + "code_postal": "70600", + "nom_de_la_commune": "CHAMPLITTE", + "coordonnees_gps": [ + 47.6322292317, + 5.51329036822 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51329036822, + 47.6322292317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adbe473415f525b25ddbf2477d4cfba96636d3d9", + "fields": { + "code_commune_insee": "70133", + "nom_de_la_commune": "CHARGEY LES PORT", + "code_postal": "70170", + "coordonnees_gps": [ + 47.7285168073, + 5.99727162515 + ], + "libelle_d_acheminement": "CHARGEY LES PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99727162515, + 47.7285168073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7ea17f8940e4bb40805306235245f7840f27b51", + "fields": { + "code_commune_insee": "70134", + "nom_de_la_commune": "CHARIEZ", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6196823197, + 6.07911059403 + ], + "libelle_d_acheminement": "CHARIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07911059403, + 47.6196823197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a133f899ed1b0a0fd734d18fc4d003085bf177fd", + "fields": { + "code_commune_insee": "70137", + "nom_de_la_commune": "CHASSEY LES MONTBOZON", + "code_postal": "70230", + "coordonnees_gps": [ + 47.5237818332, + 6.32649306031 + ], + "libelle_d_acheminement": "CHASSEY LES MONTBOZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32649306031, + 47.5237818332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "444fb6c80b8a469baebba1f2997f026463517f7c", + "fields": { + "code_commune_insee": "70138", + "nom_de_la_commune": "CHASSEY LES SCEY", + "code_postal": "70360", + "coordonnees_gps": [ + 47.643695982, + 5.98609358914 + ], + "libelle_d_acheminement": "CHASSEY LES SCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98609358914, + 47.643695982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f03423ed50650d5d99ac2f1a3e6cf3f47718877b", + "fields": { + "code_commune_insee": "70142", + "nom_de_la_commune": "CHAUMERCENNE", + "code_postal": "70140", + "coordonnees_gps": [ + 47.3018644976, + 5.6263734239 + ], + "libelle_d_acheminement": "CHAUMERCENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6263734239, + 47.3018644976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "859d19090481fffdc9f4a1421ff16a2d4e80f794", + "fields": { + "code_commune_insee": "70144", + "nom_de_la_commune": "CHAUVIREY LE VIEIL", + "code_postal": "70500", + "coordonnees_gps": [ + 47.7811083349, + 5.75924398102 + ], + "libelle_d_acheminement": "CHAUVIREY LE VIEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75924398102, + 47.7811083349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29ff0014273fa5b4454c7c5a51fcad7860924d45", + "fields": { + "code_commune_insee": "70145", + "nom_de_la_commune": "CHAUX LA LOTIERE", + "code_postal": "70190", + "coordonnees_gps": [ + 47.3822996917, + 5.96780533315 + ], + "libelle_d_acheminement": "CHAUX LA LOTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96780533315, + 47.3822996917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "560b8490de5c47d3773602e734a1ab1456299ec3", + "fields": { + "code_commune_insee": "70152", + "nom_de_la_commune": "CHOYE", + "code_postal": "70700", + "coordonnees_gps": [ + 47.3924629744, + 5.75753300176 + ], + "libelle_d_acheminement": "CHOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75753300176, + 47.3924629744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8246ffc616ad6f4e052705be63c2c65c6b65d0fe", + "fields": { + "code_commune_insee": "70154", + "nom_de_la_commune": "CIREY", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4130463619, + 6.13282949108 + ], + "libelle_d_acheminement": "CIREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13282949108, + 47.4130463619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44ff5f65605de10ca82d71872ee60d1b84d580ff", + "fields": { + "code_commune_insee": "70166", + "nom_de_la_commune": "COMBERJON", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6446228268, + 6.20332293485 + ], + "libelle_d_acheminement": "COMBERJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20332293485, + 47.6446228268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4db620ed6cd2dcffac3b5f58b079134e46505835", + "fields": { + "code_commune_insee": "70168", + "nom_de_la_commune": "CONFLANS SUR LANTERNE", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8103436932, + 6.2138139991 + ], + "libelle_d_acheminement": "CONFLANS SUR LANTERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2138139991, + 47.8103436932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d16dd7162ac0fde62a57a52fffd4d220638b4dbd", + "fields": { + "code_commune_insee": "70174", + "nom_de_la_commune": "CORDONNET", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4186854695, + 5.96327126972 + ], + "libelle_d_acheminement": "CORDONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96327126972, + 47.4186854695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d137d55e21ec7a913e325ba15ccc70589a0ad68", + "fields": { + "code_commune_insee": "70181", + "nom_de_la_commune": "COURCUIRE", + "code_postal": "70150", + "coordonnees_gps": [ + 47.3474181199, + 5.82794656469 + ], + "libelle_d_acheminement": "COURCUIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82794656469, + 47.3474181199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01ca676e6cad5eaea90410a7bb69e1fddd5aae04", + "fields": { + "code_commune_insee": "70185", + "nom_de_la_commune": "CRESANCEY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.3995870288, + 5.64879435364 + ], + "libelle_d_acheminement": "CRESANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64879435364, + 47.3995870288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86c9490249499656395446ee9493994079d93f06", + "fields": { + "code_commune_insee": "70187", + "nom_de_la_commune": "CREVANS ET LA CHAPELLE LES GRANGES", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5491003203, + 6.593684558 + ], + "libelle_d_acheminement": "CREVANS LA CHAPELLE LES GRANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.593684558, + 47.5491003203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aa3c8a52ee57b1ce624bbcc93d94c7b8c168829", + "fields": { + "code_commune_insee": "70192", + "nom_de_la_commune": "CUGNEY", + "code_postal": "70700", + "coordonnees_gps": [ + 47.3643480364, + 5.71977368998 + ], + "libelle_d_acheminement": "CUGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71977368998, + 47.3643480364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d303ac8a6edcf23ed9b0fae9a4dd84fde88fa2f", + "fields": { + "code_commune_insee": "70195", + "nom_de_la_commune": "DAMBENOIT LES COLOMBE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.7225685602, + 6.3779909866 + ], + "libelle_d_acheminement": "DAMBENOIT LES COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3779909866, + 47.7225685602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a559a0ca13d9c263a65b02f8f9d9f455504811ab", + "fields": { + "ligne_5": "PRESLE", + "code_commune_insee": "70197", + "libelle_d_acheminement": "DAMPIERRE SUR LINOTTE", + "code_postal": "70230", + "nom_de_la_commune": "DAMPIERRE SUR LINOTTE", + "coordonnees_gps": [ + 47.5328760062, + 6.24208585386 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24208585386, + 47.5328760062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3a242d78a1d32981eda8567622103d0c0aad625", + "fields": { + "code_commune_insee": "70202", + "nom_de_la_commune": "DEMANGEVELLE", + "code_postal": "70210", + "coordonnees_gps": [ + 47.9305643607, + 6.03941576973 + ], + "libelle_d_acheminement": "DEMANGEVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03941576973, + 47.9305643607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53abe9b589851fc56a7a194d837bed2b98407eb6", + "fields": { + "code_commune_insee": "70210", + "nom_de_la_commune": "ECROMAGNY", + "code_postal": "70270", + "coordonnees_gps": [ + 47.7931932241, + 6.56449460002 + ], + "libelle_d_acheminement": "ECROMAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56449460002, + 47.7931932241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cac2ebc954a7a0fbe32e7eb9421e34f02aefaabc", + "fields": { + "code_commune_insee": "70226", + "nom_de_la_commune": "FALLON", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5077912933, + 6.47671768345 + ], + "libelle_d_acheminement": "FALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47671768345, + 47.5077912933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beb7f2b015587be9b76e463072463b9e78a083bc", + "fields": { + "code_commune_insee": "70227", + "nom_de_la_commune": "FAUCOGNEY ET LA MER", + "code_postal": "70310", + "coordonnees_gps": [ + 47.8319641353, + 6.5834328372 + ], + "libelle_d_acheminement": "FAUCOGNEY ET LA MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5834328372, + 47.8319641353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f0d4139edc22d305386b6e803de09dd76c161f9", + "fields": { + "code_commune_insee": "70228", + "nom_de_la_commune": "FAVERNEY", + "code_postal": "70160", + "coordonnees_gps": [ + 47.7661040283, + 6.07998850446 + ], + "libelle_d_acheminement": "FAVERNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07998850446, + 47.7661040283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4966f45da15cfcc26661962bb31864428f08a4e", + "fields": { + "code_commune_insee": "70233", + "nom_de_la_commune": "LES FESSEY", + "code_postal": "70310", + "coordonnees_gps": [ + 47.8108548307, + 6.51712506542 + ], + "libelle_d_acheminement": "LES FESSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51712506542, + 47.8108548307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "559c75801a27f938ea312b65cc71409cc931433d", + "fields": { + "code_commune_insee": "70234", + "nom_de_la_commune": "FILAIN", + "code_postal": "70230", + "coordonnees_gps": [ + 47.5253906128, + 6.17761888679 + ], + "libelle_d_acheminement": "FILAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17761888679, + 47.5253906128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b642e8b8f7ca9131d4a9d21c41e58a1dbb4a75c", + "fields": { + "code_commune_insee": "70252", + "nom_de_la_commune": "FRAMONT", + "code_postal": "70600", + "coordonnees_gps": [ + 47.5716187406, + 5.5798394253 + ], + "libelle_d_acheminement": "FRAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5798394253, + 47.5716187406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e1a4aabcb1c627228e4eb49492285a44f2f4596", + "fields": { + "code_commune_insee": "70253", + "nom_de_la_commune": "FRASNE LE CHATEAU", + "code_postal": "70700", + "coordonnees_gps": [ + 47.464530464, + 5.89157749434 + ], + "libelle_d_acheminement": "FRASNE LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89157749434, + 47.464530464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b27dc3d450a38fef10ae5eb139548293fcca682", + "fields": { + "code_commune_insee": "70254", + "nom_de_la_commune": "FREDERIC FONTAINE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6511337429, + 6.63272946066 + ], + "libelle_d_acheminement": "FREDERIC FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63272946066, + 47.6511337429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "179dadb2842f5d7628902a8ea03e2970c797e926", + "fields": { + "code_commune_insee": "70257", + "nom_de_la_commune": "FRETIGNEY ET VELLOREILLE", + "code_postal": "70130", + "coordonnees_gps": [ + 47.4895779062, + 5.93793813227 + ], + "libelle_d_acheminement": "FRETIGNEY ET VELLOREILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93793813227, + 47.4895779062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d82bf06f62991e5be9340ef4e47ea18110943ef", + "fields": { + "code_commune_insee": "70258", + "nom_de_la_commune": "FROIDECONCHE", + "code_postal": "70300", + "coordonnees_gps": [ + 47.8340163849, + 6.41922862688 + ], + "libelle_d_acheminement": "FROIDECONCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41922862688, + 47.8340163849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ed2dc10a5cfd5ce6765520862f2b9252563d6a9", + "fields": { + "code_commune_insee": "70259", + "nom_de_la_commune": "FROIDETERRE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6999427158, + 6.52495307939 + ], + "libelle_d_acheminement": "FROIDETERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52495307939, + 47.6999427158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78d4ef6b2cde1b5dc475e565637691717da631e5", + "fields": { + "code_commune_insee": "70262", + "nom_de_la_commune": "GENEVREUILLE", + "code_postal": "70240", + "coordonnees_gps": [ + 47.6747365323, + 6.37822435602 + ], + "libelle_d_acheminement": "GENEVREUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37822435602, + 47.6747365323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af744ed900941e937b8ac063e7f10a502a9f3a81", + "fields": { + "code_commune_insee": "70268", + "nom_de_la_commune": "GEZIER ET FONTENELAY", + "code_postal": "70700", + "coordonnees_gps": [ + 47.3622765884, + 5.89137487583 + ], + "libelle_d_acheminement": "GEZIER ET FONTENELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89137487583, + 47.3622765884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b0bf54ee3b0b7a980fc76947384167fce83f1d5", + "fields": { + "code_commune_insee": "70271", + "nom_de_la_commune": "GOUHENANS", + "code_postal": "70110", + "coordonnees_gps": [ + 47.6119029467, + 6.48560060505 + ], + "libelle_d_acheminement": "GOUHENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48560060505, + 47.6119029467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "346d8aefe94231c7ac780af567d410fee63566a5", + "fields": { + "code_commune_insee": "70272", + "nom_de_la_commune": "GOURGEON", + "code_postal": "70120", + "coordonnees_gps": [ + 47.71794344, + 5.84745299803 + ], + "libelle_d_acheminement": "GOURGEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84745299803, + 47.71794344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0e267067e7938a355a423e0ea4c459900327024", + "fields": { + "code_commune_insee": "70275", + "nom_de_la_commune": "GRANDVELLE ET LE PERRENOT", + "code_postal": "70190", + "coordonnees_gps": [ + 47.5185656017, + 6.0023921367 + ], + "libelle_d_acheminement": "GRANDVELLE ET LE PERRENOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0023921367, + 47.5185656017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97ad0ed77717d595403ab20403c4aea7c2b94c06", + "fields": { + "code_commune_insee": "70277", + "nom_de_la_commune": "GRANGES LE BOURG", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5773603894, + 6.58761184048 + ], + "libelle_d_acheminement": "GRANGES LE BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58761184048, + 47.5773603894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef016494012c9e2672b278a82aa31c2300424d23", + "fields": { + "ligne_5": "BUSSUREL", + "code_commune_insee": "70285", + "libelle_d_acheminement": "HERICOURT", + "code_postal": "70400", + "nom_de_la_commune": "HERICOURT", + "coordonnees_gps": [ + 47.5698613671, + 6.76517349246 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76517349246, + 47.5698613671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "536b5f634001bea347be223fd2031eb23ec590f4", + "fields": { + "ligne_5": "TAVEY", + "code_commune_insee": "70285", + "libelle_d_acheminement": "HERICOURT", + "code_postal": "70400", + "nom_de_la_commune": "HERICOURT", + "coordonnees_gps": [ + 47.5698613671, + 6.76517349246 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76517349246, + 47.5698613671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "630a96c9e10099e9b208749db84c0416bacb0fab", + "fields": { + "code_commune_insee": "70286", + "nom_de_la_commune": "HUGIER", + "code_postal": "70150", + "coordonnees_gps": [ + 47.3119515767, + 5.70658705993 + ], + "libelle_d_acheminement": "HUGIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70658705993, + 47.3119515767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e513ca49d4ba6042ec33d6218c3bd1b9a5015fc", + "fields": { + "code_commune_insee": "70306", + "nom_de_la_commune": "LOMONT", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6249613349, + 6.59883932235 + ], + "libelle_d_acheminement": "LOMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59883932235, + 47.6249613349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e438daf316b904e4954151766831b83fa2741948", + "fields": { + "code_commune_insee": "70312", + "nom_de_la_commune": "LUZE", + "code_postal": "70400", + "coordonnees_gps": [ + 47.606620843, + 6.7184633564 + ], + "libelle_d_acheminement": "LUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7184633564, + 47.606620843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83e2ab449594237a1f9cc59f867262618fb35b65", + "fields": { + "code_commune_insee": "70316", + "nom_de_la_commune": "LE MAGNORAY", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5247427467, + 6.09145764934 + ], + "libelle_d_acheminement": "LE MAGNORAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09145764934, + 47.5247427467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "244e086b488b4b73a633ef17abaa08ba246d31bd", + "fields": { + "code_commune_insee": "70320", + "nom_de_la_commune": "MAGNY LES JUSSEY", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8564985248, + 5.97815362476 + ], + "libelle_d_acheminement": "MAGNY LES JUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97815362476, + 47.8564985248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a81f7d727b81a14b67b724cb302200a06ecbd432", + "fields": { + "code_commune_insee": "70322", + "nom_de_la_commune": "MAILLERONCOURT CHARETTE", + "code_postal": "70240", + "coordonnees_gps": [ + 47.7303877198, + 6.26557184333 + ], + "libelle_d_acheminement": "MAILLERONCOURT CHARETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26557184333, + 47.7303877198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b6e7509b7310feefcdecd09b1e67bd81a3b6adf", + "fields": { + "code_commune_insee": "70327", + "nom_de_la_commune": "MALANS", + "code_postal": "70140", + "coordonnees_gps": [ + 47.2677473126, + 5.59612785813 + ], + "libelle_d_acheminement": "MALANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59612785813, + 47.2677473126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0611ce55551b357da88c7c7560653695dfcac055", + "fields": { + "code_commune_insee": "70332", + "nom_de_la_commune": "MARAST", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5574914951, + 6.38057064129 + ], + "libelle_d_acheminement": "MARAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38057064129, + 47.5574914951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc77213d1991d1e2262b410ccb119bea3ffb116b", + "fields": { + "code_commune_insee": "70338", + "nom_de_la_commune": "MELINCOURT", + "code_postal": "70210", + "coordonnees_gps": [ + 47.8875285493, + 6.12924766787 + ], + "libelle_d_acheminement": "MELINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12924766787, + 47.8875285493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f21ef823e268c9ab12c0f987bc8b82ee4b9593e", + "fields": { + "code_commune_insee": "70339", + "nom_de_la_commune": "MELISEY", + "code_postal": "70270", + "coordonnees_gps": [ + 47.7605175901, + 6.55981734246 + ], + "libelle_d_acheminement": "MELISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55981734246, + 47.7605175901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe7e4abeb4d47a44f33cb7f404c2eb5c7544a2ad", + "fields": { + "code_commune_insee": "70356", + "nom_de_la_commune": "MONTBOILLON", + "code_postal": "70700", + "coordonnees_gps": [ + 47.379681472, + 5.91385310613 + ], + "libelle_d_acheminement": "MONTBOILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91385310613, + 47.379681472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a9ebe8f36d13e6702659ca09a08f393d8d5237c", + "fields": { + "code_commune_insee": "70368", + "nom_de_la_commune": "MONTOT", + "code_postal": "70180", + "coordonnees_gps": [ + 47.5521723024, + 5.61575354895 + ], + "libelle_d_acheminement": "MONTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61575354895, + 47.5521723024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7f29241b7d8a6185bab3a0ddd84250c1a49f358", + "fields": { + "code_commune_insee": "70369", + "nom_de_la_commune": "MONT ST LEGER", + "code_postal": "70120", + "coordonnees_gps": [ + 47.6374393402, + 5.80017411668 + ], + "libelle_d_acheminement": "MONT ST LEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80017411668, + 47.6374393402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc8966e2dca8d79ea334ed9ec89efb4e6d6b3fef", + "fields": { + "code_commune_insee": "70374", + "nom_de_la_commune": "MOTEY BESUCHE", + "code_postal": "70140", + "coordonnees_gps": [ + 47.3053559676, + 5.66529862225 + ], + "libelle_d_acheminement": "MOTEY BESUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66529862225, + 47.3053559676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea11b263936cb6d41df49486d7c802f6de6d230a", + "fields": { + "code_commune_insee": "70384", + "nom_de_la_commune": "NEUVELLE LES LA CHARITE", + "code_postal": "70130", + "coordonnees_gps": [ + 47.5393826084, + 5.96042081802 + ], + "libelle_d_acheminement": "NEUVELLE LES LA CHARITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96042081802, + 47.5393826084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3e6c2faf7209717688552a5711acc2f1d2253ce", + "fields": { + "code_commune_insee": "70388", + "nom_de_la_commune": "NOIDANS LES VESOUL", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6097514089, + 6.11842989879 + ], + "libelle_d_acheminement": "NOIDANS LES VESOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11842989879, + 47.6097514089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaf59eea3f9048035704316e657432a240b7a31f", + "fields": { + "code_commune_insee": "70403", + "nom_de_la_commune": "PALANTE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6649408648, + 6.58267716976 + ], + "libelle_d_acheminement": "PALANTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58267716976, + 47.6649408648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fb5e81cb8782ea86549fa01127b3b6d4490714d", + "fields": { + "code_commune_insee": "70406", + "nom_de_la_commune": "PERCEY LE GRAND", + "code_postal": "70600", + "coordonnees_gps": [ + 47.6221937066, + 5.39857467862 + ], + "libelle_d_acheminement": "PERCEY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39857467862, + 47.6221937066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7336f7e93bf355e56078f7a4b8073229d12a018", + "fields": { + "code_commune_insee": "70407", + "nom_de_la_commune": "PERROUSE", + "code_postal": "70190", + "coordonnees_gps": [ + 47.3669269306, + 6.04533540615 + ], + "libelle_d_acheminement": "PERROUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04533540615, + 47.3669269306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceb7bd6cc73497a99c5f65428d747728d1217257", + "fields": { + "code_commune_insee": "70412", + "nom_de_la_commune": "PLAINEMONT", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8476581979, + 6.21792069409 + ], + "libelle_d_acheminement": "PLAINEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21792069409, + 47.8476581979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "866d47eb2043f16797d2b08cceddd76b15fec8e1", + "fields": { + "code_commune_insee": "70414", + "nom_de_la_commune": "PLANCHER LES MINES", + "code_postal": "70290", + "coordonnees_gps": [ + 47.7857364865, + 6.77321577931 + ], + "libelle_d_acheminement": "PLANCHER LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77321577931, + 47.7857364865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdc43c9f9cf52eedab3467800e9516932ec8a9f5", + "fields": { + "ligne_5": "LE PONT DE PLANCHES", + "code_commune_insee": "70418", + "libelle_d_acheminement": "LA ROMAINE", + "code_postal": "70130", + "nom_de_la_commune": "LA ROMAINE", + "coordonnees_gps": [ + 47.5374721676, + 5.92263244824 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92263244824, + 47.5374721676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "784afaab55adcb43a7dd0ca5e95ba1f4ab2405dc", + "fields": { + "code_commune_insee": "70421", + "nom_de_la_commune": "PORT SUR SAONE", + "code_postal": "70170", + "coordonnees_gps": [ + 47.692500452, + 6.03302774909 + ], + "libelle_d_acheminement": "PORT SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03302774909, + 47.692500452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aef84dc3f78c91f8ed68f93661296508decd87c", + "fields": { + "code_commune_insee": "70423", + "nom_de_la_commune": "PREIGNEY", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7656148991, + 5.78234601722 + ], + "libelle_d_acheminement": "PREIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78234601722, + 47.7656148991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5370c3f93f0deffe215c0f3d62beecfbf570abad", + "fields": { + "code_commune_insee": "70429", + "nom_de_la_commune": "PUSY ET EPENOUX", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6675589968, + 6.15028596157 + ], + "libelle_d_acheminement": "PUSY ET EPENOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15028596157, + 47.6675589968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f9cd620c5b5b323cd7703d20767f4df11af9915", + "fields": { + "code_commune_insee": "70430", + "nom_de_la_commune": "LA QUARTE", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7724536532, + 5.70159719481 + ], + "libelle_d_acheminement": "LA QUARTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70159719481, + 47.7724536532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a664ffa641faebbdad818900533013e6e74f11ff", + "fields": { + "code_commune_insee": "70433", + "nom_de_la_commune": "QUINCEY", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5918067623, + 6.20082918188 + ], + "libelle_d_acheminement": "QUINCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20082918188, + 47.5918067623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97b61f181edd9d4d8ff2c0ae0b947bd6805082e4", + "fields": { + "code_commune_insee": "70443", + "nom_de_la_commune": "LA GRANDE RESIE", + "code_postal": "70140", + "coordonnees_gps": [ + 47.3367024965, + 5.56326509023 + ], + "libelle_d_acheminement": "LA GRANDE RESIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56326509023, + 47.3367024965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74132ab124644e8e49648d0caee8464e21f2788d", + "fields": { + "code_commune_insee": "70445", + "nom_de_la_commune": "RIGNOVELLE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.7652483587, + 6.47533743202 + ], + "libelle_d_acheminement": "RIGNOVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47533743202, + 47.7652483587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf3cdf30f1c78e8e88eb74ca0fece1252ba48c73", + "fields": { + "code_commune_insee": "70451", + "nom_de_la_commune": "RONCHAMP", + "code_postal": "70250", + "coordonnees_gps": [ + 47.7159736796, + 6.63465984032 + ], + "libelle_d_acheminement": "RONCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63465984032, + 47.7159736796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b69a52f9f06f71b4d9f75411f99018fd6e731e9a", + "fields": { + "code_commune_insee": "70456", + "nom_de_la_commune": "RUHANS", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4586029452, + 6.13611036394 + ], + "libelle_d_acheminement": "RUHANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13611036394, + 47.4586029452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fff9169ba310ca75d1bdb6d43f2e9463dc9a306", + "fields": { + "code_commune_insee": "70457", + "nom_de_la_commune": "RUPT SUR SAONE", + "code_postal": "70360", + "coordonnees_gps": [ + 47.6507919517, + 5.92865307597 + ], + "libelle_d_acheminement": "RUPT SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92865307597, + 47.6507919517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aa86070b3dd7e378eabd687c597e3ba75797ffa", + "fields": { + "code_commune_insee": "70461", + "nom_de_la_commune": "ST BROING", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4552363284, + 5.67975286287 + ], + "libelle_d_acheminement": "ST BROING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67975286287, + 47.4552363284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b7a51fffb787c2c631d0b9d6c2bca619725fde9", + "fields": { + "code_commune_insee": "70466", + "nom_de_la_commune": "ST LOUP NANTOUARD", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4305059621, + 5.72854485774 + ], + "libelle_d_acheminement": "ST LOUP NANTOUARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72854485774, + 47.4305059621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f5c1e226953fc0c80b42a8e225ed8838d3bb2c5", + "fields": { + "code_commune_insee": "70467", + "nom_de_la_commune": "ST LOUP SUR SEMOUSE", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8785688968, + 6.26623762115 + ], + "libelle_d_acheminement": "ST LOUP SUR SEMOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26623762115, + 47.8785688968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d67a61961fd7b03a1cdb38fc85364726ed647c2", + "fields": { + "code_commune_insee": "70468", + "nom_de_la_commune": "ST MARCEL", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8253832848, + 5.8194773188 + ], + "libelle_d_acheminement": "ST MARCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8194773188, + 47.8253832848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56e512f301f8797aff9fe8693618d4657f2d8673", + "fields": { + "code_commune_insee": "70478", + "nom_de_la_commune": "SAULX", + "code_postal": "70240", + "coordonnees_gps": [ + 47.6946947931, + 6.27713089237 + ], + "libelle_d_acheminement": "SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27713089237, + 47.6946947931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24473469a0396eae5bc5c1fecb38cc18c71dcb8b", + "fields": { + "code_commune_insee": "70479", + "nom_de_la_commune": "SAUVIGNEY LES GRAY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4579344262, + 5.73262620609 + ], + "libelle_d_acheminement": "SAUVIGNEY LES GRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73262620609, + 47.4579344262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26c36527ee21601ab6d77a80a78fc892a0335ade", + "fields": { + "code_commune_insee": "70486", + "nom_de_la_commune": "SEMMADON", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7396556417, + 5.8813057187 + ], + "libelle_d_acheminement": "SEMMADON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8813057187, + 47.7396556417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69e38ea838881bf73ae27ca8722ffd38fef983fb", + "fields": { + "code_commune_insee": "70487", + "nom_de_la_commune": "SENARGENT MIGNAFANS", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5662742905, + 6.52981736725 + ], + "libelle_d_acheminement": "SENARGENT MIGNAFANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52981736725, + 47.5662742905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88242fc91adecee7113f023782102dd98009ae13", + "fields": { + "ligne_5": "SEVEUX", + "code_commune_insee": "70491", + "libelle_d_acheminement": "SEVEUX MOTEY", + "code_postal": "70130", + "nom_de_la_commune": "SEVEUX MOTEY", + "coordonnees_gps": [ + 47.5359774659, + 5.76901424234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76901424234, + 47.5359774659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1859f7e886a6829699ba7873bc1f5602140dd100", + "fields": { + "code_commune_insee": "70492", + "nom_de_la_commune": "SOING CUBRY CHARENTENAY", + "code_postal": "70130", + "coordonnees_gps": [ + 47.5851238509, + 5.88891675749 + ], + "libelle_d_acheminement": "SOING CUBRY CHARENTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88891675749, + 47.5851238509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd7492dc8be1240c16b3ec54bed806f880471c66", + "fields": { + "code_commune_insee": "70502", + "nom_de_la_commune": "TINCEY ET PONTREBEAU", + "code_postal": "70120", + "coordonnees_gps": [ + 47.6032317362, + 5.78494948833 + ], + "libelle_d_acheminement": "TINCEY ET PONTREBEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78494948833, + 47.6032317362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "469b181a5eb7ce5c2f381b5900787a5dad281e91", + "fields": { + "code_commune_insee": "70503", + "nom_de_la_commune": "TRAITIEFONTAINE", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4214104613, + 6.09590296552 + ], + "libelle_d_acheminement": "TRAITIEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09590296552, + 47.4214104613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6eb23da82d16cb668ffb9c7dd2b24082db6820d", + "fields": { + "code_commune_insee": "70504", + "nom_de_la_commune": "TRAVES", + "code_postal": "70360", + "coordonnees_gps": [ + 47.6060894924, + 5.96272642453 + ], + "libelle_d_acheminement": "TRAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96272642453, + 47.6060894924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b80b201198ccba6ee30fb1d8903b3d18fff7c949", + "fields": { + "code_commune_insee": "70514", + "nom_de_la_commune": "VALAY", + "code_postal": "70140", + "coordonnees_gps": [ + 47.3357551317, + 5.63755798352 + ], + "libelle_d_acheminement": "VALAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63755798352, + 47.3357551317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81718d1906c99b431f51009049f2aef8bcb7fe01", + "fields": { + "code_commune_insee": "70521", + "nom_de_la_commune": "VANTOUX ET LONGEVELLE", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4485121912, + 5.83803356504 + ], + "libelle_d_acheminement": "VANTOUX ET LONGEVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83803356504, + 47.4485121912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba379a0ae4016605db965b788359fe1f631a3480", + "fields": { + "code_commune_insee": "70527", + "nom_de_la_commune": "VAUX LE MONCELOT", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4769782546, + 5.90408520859 + ], + "libelle_d_acheminement": "VAUX LE MONCELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90408520859, + 47.4769782546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c949503654895d7f3cecff2f929d9a1f767e1a7b", + "fields": { + "code_commune_insee": "70528", + "nom_de_la_commune": "VELESMES ECHEVANNE", + "code_postal": "70100", + "coordonnees_gps": [ + 47.421541856, + 5.69067658656 + ], + "libelle_d_acheminement": "VELESMES ECHEVANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69067658656, + 47.421541856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "886e2c74a47c3c47ac48ab0a5f055d7bb63641f0", + "fields": { + "code_commune_insee": "70544", + "nom_de_la_commune": "LA VERGENNE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6149187489, + 6.52058432739 + ], + "libelle_d_acheminement": "LA VERGENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52058432739, + 47.6149187489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3948ed2be7f51f5963048cc5a6080ec1294b2de6", + "fields": { + "code_commune_insee": "70548", + "nom_de_la_commune": "VERNOIS SUR MANCE", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8426818751, + 5.77808690918 + ], + "libelle_d_acheminement": "VERNOIS SUR MANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77808690918, + 47.8426818751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ff331df86ccacd9a0e06a2e0b62b324a4e6298c", + "fields": { + "code_commune_insee": "70550", + "nom_de_la_commune": "VESOUL", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6320408648, + 6.1548458149 + ], + "libelle_d_acheminement": "VESOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1548458149, + 47.6320408648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73732338f5aa5e25ad5d044316dff74122f6f281", + "fields": { + "code_commune_insee": "70559", + "nom_de_la_commune": "VILLEPAROIS", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6635986725, + 6.18151955342 + ], + "libelle_d_acheminement": "VILLEPAROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18151955342, + 47.6635986725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e06182a49f1b61f6c697f4124cffb83f38bc82f", + "fields": { + "code_commune_insee": "70565", + "nom_de_la_commune": "VILLERS PATER", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4737371816, + 6.16934140108 + ], + "libelle_d_acheminement": "VILLERS PATER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16934140108, + 47.4737371816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99cff0d9e1b7b672d1b9e1e238089ab1c7a2c5d7", + "fields": { + "code_commune_insee": "70568", + "nom_de_la_commune": "VILLERS VAUDEY", + "code_postal": "70120", + "coordonnees_gps": [ + 47.6735158749, + 5.75631215452 + ], + "libelle_d_acheminement": "VILLERS VAUDEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75631215452, + 47.6735158749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c18b97943a86d4b7f2524444547143ba22533790", + "fields": { + "code_commune_insee": "70571", + "nom_de_la_commune": "VISONCOURT", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7522729682, + 6.29965399455 + ], + "libelle_d_acheminement": "VISONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29965399455, + 47.7522729682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a681f1540ddcd29897145893ac6c10e511caa612", + "fields": { + "code_commune_insee": "71004", + "nom_de_la_commune": "ALLERIOT", + "code_postal": "71380", + "coordonnees_gps": [ + 46.7988419834, + 4.95551290173 + ], + "libelle_d_acheminement": "ALLERIOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95551290173, + 46.7988419834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d8394edc411cc2b97cac89760d6179d4831b7f7", + "fields": { + "code_commune_insee": "71007", + "nom_de_la_commune": "AMEUGNY", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5238475796, + 4.66808403552 + ], + "libelle_d_acheminement": "AMEUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66808403552, + 46.5238475796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97c26436b61a1b9db9c58f1d55b2b14f0112dafc", + "fields": { + "code_commune_insee": "71008", + "nom_de_la_commune": "ANGLURE SOUS DUN", + "code_postal": "71170", + "coordonnees_gps": [ + 46.235903333, + 4.37061936256 + ], + "libelle_d_acheminement": "ANGLURE SOUS DUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37061936256, + 46.235903333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04ea33e91db1d32ee5e98f0a6f00f15a3689d791", + "fields": { + "code_commune_insee": "71009", + "nom_de_la_commune": "ANOST", + "code_postal": "71550", + "coordonnees_gps": [ + 47.0770713545, + 4.09241779804 + ], + "libelle_d_acheminement": "ANOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09241779804, + 47.0770713545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4e7931283af1f5d0763be4ca55bc0017a7c3252", + "fields": { + "code_commune_insee": "71013", + "nom_de_la_commune": "AUTHUMES", + "code_postal": "71270", + "coordonnees_gps": [ + 46.8899153529, + 5.30758337993 + ], + "libelle_d_acheminement": "AUTHUMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30758337993, + 46.8899153529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71c6bcafa28c96eed2713c86d76ed9adb698ef2e", + "fields": { + "code_commune_insee": "71016", + "nom_de_la_commune": "AZE", + "code_postal": "71260", + "coordonnees_gps": [ + 46.4318867242, + 4.74963746686 + ], + "libelle_d_acheminement": "AZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74963746686, + 46.4318867242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cb7bf47f80431c69d8db2b558422855736a2847", + "fields": { + "code_commune_insee": "71017", + "nom_de_la_commune": "BALLORE", + "code_postal": "71220", + "coordonnees_gps": [ + 46.5341038702, + 4.37558759241 + ], + "libelle_d_acheminement": "BALLORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37558759241, + 46.5341038702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b3811452a5a36b2810b2acc4de5ee84e17d0bcb", + "fields": { + "code_commune_insee": "71018", + "nom_de_la_commune": "BANTANGES", + "code_postal": "71500", + "coordonnees_gps": [ + 46.605124682, + 5.12155053335 + ], + "libelle_d_acheminement": "BANTANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12155053335, + 46.605124682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7ea799ab56d27090992f5e2d08fa8cbc3d3506b", + "fields": { + "code_commune_insee": "71034", + "nom_de_la_commune": "BISSEY SOUS CRUCHAUD", + "code_postal": "71390", + "coordonnees_gps": [ + 46.7292045246, + 4.69324571138 + ], + "libelle_d_acheminement": "BISSEY SOUS CRUCHAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69324571138, + 46.7292045246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa88370039182bb9546fb764ca98789dc7d024b5", + "fields": { + "code_commune_insee": "71039", + "nom_de_la_commune": "BLANOT", + "code_postal": "71250", + "coordonnees_gps": [ + 46.4810503908, + 4.74030734552 + ], + "libelle_d_acheminement": "BLANOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74030734552, + 46.4810503908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fded8729f1169d76c90a6c0b851fdd57f3faef5", + "fields": { + "code_commune_insee": "71042", + "nom_de_la_commune": "BONNAY", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5495831057, + 4.62537710045 + ], + "libelle_d_acheminement": "BONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62537710045, + 46.5495831057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c42eadf54b704f5d24f809a917c16911ef184737", + "fields": { + "code_commune_insee": "71057", + "nom_de_la_commune": "BRAY", + "code_postal": "71250", + "coordonnees_gps": [ + 46.5037410885, + 4.70644057084 + ], + "libelle_d_acheminement": "BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70644057084, + 46.5037410885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ec7f48fab87a6f9ccea825ecd68ccacd9735e75", + "fields": { + "code_commune_insee": "71060", + "nom_de_la_commune": "BRIANT", + "code_postal": "71110", + "coordonnees_gps": [ + 46.3008717665, + 4.15112417263 + ], + "libelle_d_acheminement": "BRIANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15112417263, + 46.3008717665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c408907e68abc756f6ede735878e6e6107c9d97", + "fields": { + "code_commune_insee": "71062", + "nom_de_la_commune": "BRION", + "code_postal": "71190", + "coordonnees_gps": [ + 46.9163069203, + 4.24167330561 + ], + "libelle_d_acheminement": "BRION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24167330561, + 46.9163069203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3484369ccb490dce816aa9438d90e9f35ce25dd1", + "fields": { + "code_commune_insee": "71080", + "nom_de_la_commune": "CHAMPAGNY SOUS UXELLES", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5792196401, + 4.74765167584 + ], + "libelle_d_acheminement": "CHAMPAGNY SOUS UXELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74765167584, + 46.5792196401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f27a9a4cc71ca5cee2720fbb2cc3ba099e39da9b", + "fields": { + "code_commune_insee": "71084", + "nom_de_la_commune": "CHANES", + "code_postal": "71570", + "coordonnees_gps": [ + 46.2454748177, + 4.75829079989 + ], + "libelle_d_acheminement": "CHANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75829079989, + 46.2454748177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ae64c8a0d30a546e4dfef5ba5e60924400b9add", + "fields": { + "ligne_5": "PONTANEVAUX", + "code_commune_insee": "71090", + "libelle_d_acheminement": "LA CHAPELLE DE GUINCHAY", + "code_postal": "71570", + "nom_de_la_commune": "LA CHAPELLE DE GUINCHAY", + "coordonnees_gps": [ + 46.2183395706, + 4.76075538674 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76075538674, + 46.2183395706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c2b5c97ba2ed4c612139747b78ef098da4b9e6f", + "fields": { + "code_commune_insee": "71092", + "nom_de_la_commune": "LA CHAPELLE NAUDE", + "code_postal": "71500", + "coordonnees_gps": [ + 46.5871900268, + 5.19349664362 + ], + "libelle_d_acheminement": "LA CHAPELLE NAUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19349664362, + 46.5871900268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cb81c484d7190fe0b1f4a931fae4241cb6b09d8", + "fields": { + "code_commune_insee": "71097", + "nom_de_la_commune": "LA CHAPELLE THECLE", + "code_postal": "71470", + "coordonnees_gps": [ + 46.5566698457, + 5.10211951342 + ], + "libelle_d_acheminement": "LA CHAPELLE THECLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10211951342, + 46.5566698457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca2ed37c6ae4541f3e3eec17200eea2cb6552cd5", + "fields": { + "code_commune_insee": "71098", + "nom_de_la_commune": "CHARBONNAT", + "code_postal": "71320", + "coordonnees_gps": [ + 46.7791482329, + 4.11380902203 + ], + "libelle_d_acheminement": "CHARBONNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11380902203, + 46.7791482329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f36fd014bcd4628d6fd9052f2426de5b40e87c42", + "fields": { + "code_commune_insee": "71100", + "nom_de_la_commune": "CHARDONNAY", + "code_postal": "71700", + "coordonnees_gps": [ + 46.5087214301, + 4.84818799475 + ], + "libelle_d_acheminement": "CHARDONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84818799475, + 46.5087214301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa52b1b8ad3e5c6711797bc2269eb339fb6883a5", + "fields": { + "code_commune_insee": "71102", + "nom_de_la_commune": "LA CHARMEE", + "code_postal": "71100", + "coordonnees_gps": [ + 46.7214775415, + 4.79585753439 + ], + "libelle_d_acheminement": "LA CHARMEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79585753439, + 46.7214775415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cb8e4fc557d26c4fde42f6946e6104154902910", + "fields": { + "code_commune_insee": "71103", + "nom_de_la_commune": "CHARMOY", + "code_postal": "71710", + "coordonnees_gps": [ + 46.7692538445, + 4.31625377039 + ], + "libelle_d_acheminement": "CHARMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31625377039, + 46.7692538445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2f37b93e1ef32c66980d995f2aa236987c3d306", + "fields": { + "code_commune_insee": "71116", + "nom_de_la_commune": "CHATENAY", + "code_postal": "71800", + "coordonnees_gps": [ + 46.2913546739, + 4.38266694341 + ], + "libelle_d_acheminement": "CHATENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38266694341, + 46.2913546739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "535d9af5ec7ae23695dea8c68d9f3cdaab2a685f", + "fields": { + "code_commune_insee": "71125", + "nom_de_la_commune": "CHERIZET", + "code_postal": "71250", + "coordonnees_gps": [ + 46.5171593187, + 4.56760616223 + ], + "libelle_d_acheminement": "CHERIZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56760616223, + 46.5171593187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3f3c677086840e03ac3f682e969719676d6158b", + "fields": { + "code_commune_insee": "71128", + "nom_de_la_commune": "CHIDDES", + "code_postal": "71220", + "coordonnees_gps": [ + 46.4572326637, + 4.51390755775 + ], + "libelle_d_acheminement": "CHIDDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51390755775, + 46.4572326637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4ea53a1ee115efce73015049b291662364ff25d", + "fields": { + "code_commune_insee": "71129", + "nom_de_la_commune": "CHISSEY EN MORVAN", + "code_postal": "71540", + "coordonnees_gps": [ + 47.1217509821, + 4.21531030353 + ], + "libelle_d_acheminement": "CHISSEY EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21531030353, + 47.1217509821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41c3cfc7c8fbd626629892acddc88d88cda1051c", + "fields": { + "code_commune_insee": "71130", + "nom_de_la_commune": "CHISSEY LES MACON", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5214699897, + 4.74430277103 + ], + "libelle_d_acheminement": "CHISSEY LES MACON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74430277103, + 46.5214699897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8294b6f8f37a5de5bd5a62f49fb8797494810bbc", + "fields": { + "code_commune_insee": "71131", + "nom_de_la_commune": "CIEL", + "code_postal": "71350", + "coordonnees_gps": [ + 46.8716291957, + 5.05115500472 + ], + "libelle_d_acheminement": "CIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05115500472, + 46.8716291957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcf5f59ecc5d4f5f0abc9b9081123176ee052294", + "fields": { + "code_commune_insee": "71135", + "nom_de_la_commune": "CLESSE", + "code_postal": "71260", + "coordonnees_gps": [ + 46.418154831, + 4.82185640271 + ], + "libelle_d_acheminement": "CLESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82185640271, + 46.418154831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0706197643bf28a6a8236167e7413d01cf7892a", + "fields": { + "code_commune_insee": "71139", + "nom_de_la_commune": "COLLONGE EN CHAROLLAIS", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6422857602, + 4.53104899924 + ], + "libelle_d_acheminement": "COLLONGE EN CHAROLLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53104899924, + 46.6422857602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dd5ead7b746ffa6b52072eebb5966596690585b", + "fields": { + "code_commune_insee": "71140", + "nom_de_la_commune": "COLLONGE LA MADELEINE", + "code_postal": "71360", + "coordonnees_gps": [ + 46.9407183573, + 4.52621280337 + ], + "libelle_d_acheminement": "COLLONGE LA MADELEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52621280337, + 46.9407183573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7e538194f7f7b205a8e44d88c2f8fe0b0786db3", + "fields": { + "code_commune_insee": "71141", + "nom_de_la_commune": "COLOMBIER EN BRIONNAIS", + "code_postal": "71800", + "coordonnees_gps": [ + 46.3479871035, + 4.33327603076 + ], + "libelle_d_acheminement": "COLOMBIER EN BRIONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33327603076, + 46.3479871035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "981158774c45cfa8a5503cf91854a94ea90ffbbf", + "fields": { + "code_commune_insee": "71155", + "nom_de_la_commune": "CRONAT", + "code_postal": "71140", + "coordonnees_gps": [ + 46.7204911418, + 3.7115602827 + ], + "libelle_d_acheminement": "CRONAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7115602827, + 46.7204911418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f19537671007705481388d455cca82791ba23e29", + "fields": { + "code_commune_insee": "71157", + "nom_de_la_commune": "CUISEAUX", + "code_postal": "71480", + "coordonnees_gps": [ + 46.5047162667, + 5.36399526057 + ], + "libelle_d_acheminement": "CUISEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36399526057, + 46.5047162667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7742a00c778be6356bc83a8b052086dca3ceb45c", + "fields": { + "code_commune_insee": "71174", + "nom_de_la_commune": "DEZIZE LES MARANGES", + "code_postal": "71150", + "coordonnees_gps": [ + 46.9232421366, + 4.6596290959 + ], + "libelle_d_acheminement": "DEZIZE LES MARANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6596290959, + 46.9232421366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7d48af2732abcd8e67a149de5220e534bdb6449", + "fields": { + "ligne_5": "VIGNY LES PARAY", + "code_commune_insee": "71176", + "libelle_d_acheminement": "DIGOIN", + "code_postal": "71160", + "nom_de_la_commune": "DIGOIN", + "coordonnees_gps": [ + 46.4891651235, + 4.02511604849 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02511604849, + 46.4891651235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59781ede0b290b514409b00d3e9d0103123b0fed", + "fields": { + "code_commune_insee": "71181", + "nom_de_la_commune": "DONZY LE PERTUIS", + "code_postal": "71250", + "coordonnees_gps": [ + 46.4479607517, + 4.71724886753 + ], + "libelle_d_acheminement": "DONZY LE PERTUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71724886753, + 46.4479607517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58e43b0c98ea2b01d041eabe0a0c406496c48dde", + "fields": { + "code_commune_insee": "71184", + "nom_de_la_commune": "DRACY ST LOUP", + "code_postal": "71400", + "coordonnees_gps": [ + 47.0145624747, + 4.34030409282 + ], + "libelle_d_acheminement": "DRACY ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34030409282, + 47.0145624747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df6d3c7e2f90f2bfd0ca3fe25a014e33668894fd", + "fields": { + "code_commune_insee": "71188", + "nom_de_la_commune": "EPERTULLY", + "code_postal": "71360", + "coordonnees_gps": [ + 46.9449937024, + 4.60074542788 + ], + "libelle_d_acheminement": "EPERTULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60074542788, + 46.9449937024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "484c1f3f123e38674f9bc2206c7860a19e7b9edf", + "fields": { + "code_commune_insee": "71198", + "nom_de_la_commune": "FLACEY EN BRESSE", + "code_postal": "71580", + "coordonnees_gps": [ + 46.5949707867, + 5.38150826754 + ], + "libelle_d_acheminement": "FLACEY EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38150826754, + 46.5949707867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9200643c496db1d29ee1fccd1ba6bafe41303588", + "fields": { + "code_commune_insee": "71199", + "nom_de_la_commune": "FLAGY", + "code_postal": "71250", + "coordonnees_gps": [ + 46.4925794198, + 4.63893731321 + ], + "libelle_d_acheminement": "FLAGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63893731321, + 46.4925794198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64081ac00fec7a6980cf13266613bb7e8decf1f4", + "fields": { + "code_commune_insee": "71203", + "nom_de_la_commune": "FONTENAY", + "code_postal": "71120", + "coordonnees_gps": [ + 46.4766084028, + 4.29956693128 + ], + "libelle_d_acheminement": "FONTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29956693128, + 46.4766084028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d23f718b21b15bac47cb55514ba5a37006327d18", + "fields": { + "code_commune_insee": "71214", + "nom_de_la_commune": "GENOUILLY", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6527283424, + 4.5689153242 + ], + "libelle_d_acheminement": "GENOUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5689153242, + 46.6527283424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26631f12ef88849323f53a93e6cda0ce761339ce", + "fields": { + "code_commune_insee": "71223", + "nom_de_la_commune": "LA GRANDE VERRIERE", + "code_postal": "71990", + "coordonnees_gps": [ + 46.9688875676, + 4.14088119017 + ], + "libelle_d_acheminement": "LA GRANDE VERRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14088119017, + 46.9688875676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b3e9c383094b689d5e6d8ede7cb95afbea536e6", + "fields": { + "code_commune_insee": "71233", + "nom_de_la_commune": "L HOPITAL LE MERCIER", + "code_postal": "71600", + "coordonnees_gps": [ + 46.3944535195, + 4.00899233183 + ], + "libelle_d_acheminement": "L HOPITAL LE MERCIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00899233183, + 46.3944535195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9214c9f4c3bd26a47319c6542c8e59f935cb16aa", + "fields": { + "code_commune_insee": "71239", + "nom_de_la_commune": "ISSY L EVEQUE", + "code_postal": "71760", + "coordonnees_gps": [ + 46.7135521882, + 4.0005402064 + ], + "libelle_d_acheminement": "ISSY L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0005402064, + 46.7135521882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c1b0f6057ead1cd86f6c95c85848a7a1bba4738", + "fields": { + "code_commune_insee": "71244", + "nom_de_la_commune": "JOUVENCON", + "code_postal": "71290", + "coordonnees_gps": [ + 46.5761997548, + 5.05204538096 + ], + "libelle_d_acheminement": "JOUVENCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05204538096, + 46.5761997548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73d12d0c2c08b9fe5903fddeb3b4e3f3d4b18042", + "fields": { + "code_commune_insee": "71248", + "nom_de_la_commune": "LACROST", + "code_postal": "71700", + "coordonnees_gps": [ + 46.5693107193, + 4.93607004395 + ], + "libelle_d_acheminement": "LACROST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93607004395, + 46.5693107193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eed80fc89596355ba3d4d63b7f43164d0a5c621", + "fields": { + "code_commune_insee": "71252", + "nom_de_la_commune": "LALHEUE", + "code_postal": "71240", + "coordonnees_gps": [ + 46.650155549, + 4.79257635293 + ], + "libelle_d_acheminement": "LALHEUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79257635293, + 46.650155549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4de1fe3bd2cca0fa9e59422daf091e21e6908fc", + "fields": { + "code_commune_insee": "71269", + "nom_de_la_commune": "LUX", + "code_postal": "71100", + "coordonnees_gps": [ + 46.7490720688, + 4.86040694261 + ], + "libelle_d_acheminement": "LUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86040694261, + 46.7490720688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49bbba2379e3db5d237331b728b45f35030d6ab5", + "fields": { + "code_commune_insee": "71272", + "nom_de_la_commune": "MALAY", + "code_postal": "71460", + "coordonnees_gps": [ + 46.56639793, + 4.68622845385 + ], + "libelle_d_acheminement": "MALAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68622845385, + 46.56639793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56783c575a66c05c9dbdeda903d6c2159929e890", + "fields": { + "code_commune_insee": "71276", + "nom_de_la_commune": "MARCILLY LA GUEURCE", + "code_postal": "71120", + "coordonnees_gps": [ + 46.395826222, + 4.30447472199 + ], + "libelle_d_acheminement": "MARCILLY LA GUEURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30447472199, + 46.395826222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "842cd1e4f8f70b8304d8294207c9654ba66d54a6", + "fields": { + "code_commune_insee": "71277", + "nom_de_la_commune": "MARCILLY LES BUXY", + "code_postal": "71390", + "coordonnees_gps": [ + 46.7267163499, + 4.59181890283 + ], + "libelle_d_acheminement": "MARCILLY LES BUXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59181890283, + 46.7267163499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "547722e0be111c8ec1debb5f47976a6498759c8f", + "fields": { + "ligne_5": "LE ROUSSET", + "code_commune_insee": "71279", + "libelle_d_acheminement": "LE ROUSSET MARIZY", + "code_postal": "71220", + "nom_de_la_commune": "LE ROUSSET MARIZY", + "coordonnees_gps": [ + 46.5716241899, + 4.39993345947 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39993345947, + 46.5716241899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74564eadf3dbefbb2c9d6e7bf1226612df525581", + "fields": { + "code_commune_insee": "71285", + "nom_de_la_commune": "MARTIGNY LE COMTE", + "code_postal": "71220", + "coordonnees_gps": [ + 46.5367776065, + 4.33366674854 + ], + "libelle_d_acheminement": "MARTIGNY LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33366674854, + 46.5367776065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c217345d5912b729dda72d0ade3e301d8c68206", + "fields": { + "code_commune_insee": "71287", + "nom_de_la_commune": "MASSILLY", + "code_postal": "71250", + "coordonnees_gps": [ + 46.4908350512, + 4.66945256607 + ], + "libelle_d_acheminement": "MASSILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66945256607, + 46.4908350512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bf7583292bc0781348e75dd22d526a385c8aea9", + "fields": { + "code_commune_insee": "71291", + "nom_de_la_commune": "MELAY", + "code_postal": "71340", + "coordonnees_gps": [ + 46.1993430373, + 4.01334555514 + ], + "libelle_d_acheminement": "MELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01334555514, + 46.1993430373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bde2f681a4588a5f4d543f40359ea21c621e360", + "fields": { + "code_commune_insee": "71293", + "nom_de_la_commune": "MENETREUIL", + "code_postal": "71470", + "coordonnees_gps": [ + 46.5832082014, + 5.12524084824 + ], + "libelle_d_acheminement": "MENETREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12524084824, + 46.5832082014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "774f3298d372a1afd81ba772a70dbe071a44dcd9", + "fields": { + "code_commune_insee": "71294", + "nom_de_la_commune": "MERCUREY", + "code_postal": "71640", + "coordonnees_gps": [ + 46.834318433, + 4.72413233505 + ], + "libelle_d_acheminement": "MERCUREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72413233505, + 46.834318433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3bc4104ecf030e1a4fc6d7bc733da40a11ec6f2", + "fields": { + "code_commune_insee": "71297", + "nom_de_la_commune": "MESVRES", + "code_postal": "71190", + "coordonnees_gps": [ + 46.8702793384, + 4.25320711622 + ], + "libelle_d_acheminement": "MESVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25320711622, + 46.8702793384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caa7274e671573b205b3da60f42f52cfd6a4afd5", + "fields": { + "code_commune_insee": "71301", + "nom_de_la_commune": "MONT", + "code_postal": "71140", + "coordonnees_gps": [ + 46.6315974398, + 3.82797477122 + ], + "libelle_d_acheminement": "MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82797477122, + 46.6315974398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66efc75e3e6ce2686b24aee8258bf91fe72e7c51", + "fields": { + "code_commune_insee": "71303", + "nom_de_la_commune": "MONTAGNY PRES LOUHANS", + "code_postal": "71500", + "coordonnees_gps": [ + 46.6581608546, + 5.28366044756 + ], + "libelle_d_acheminement": "MONTAGNY PRES LOUHANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28366044756, + 46.6581608546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "248c0406b0106c963bcaf0b9daef9dbb88939ee7", + "fields": { + "code_commune_insee": "71314", + "nom_de_la_commune": "MONTJAY", + "code_postal": "71310", + "coordonnees_gps": [ + 46.8055434402, + 5.29985900019 + ], + "libelle_d_acheminement": "MONTJAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29985900019, + 46.8055434402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53dbf31d478d93d525937ad3ddd2fe0dce0ca866", + "fields": { + "code_commune_insee": "71319", + "nom_de_la_commune": "MONTRET", + "code_postal": "71440", + "coordonnees_gps": [ + 46.6835248214, + 5.11326580543 + ], + "libelle_d_acheminement": "MONTRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11326580543, + 46.6835248214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f0504e4e94363335683a477bfad7d551a00ab11", + "fields": { + "code_commune_insee": "71322", + "nom_de_la_commune": "MORLET", + "code_postal": "71360", + "coordonnees_gps": [ + 46.9536543261, + 4.50525767382 + ], + "libelle_d_acheminement": "MORLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50525767382, + 46.9536543261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11b83ed145e2c9dc14cbb2caa4207692d25d13bd", + "fields": { + "code_commune_insee": "71323", + "nom_de_la_commune": "MORNAY", + "code_postal": "71220", + "coordonnees_gps": [ + 46.4992237373, + 4.38103180018 + ], + "libelle_d_acheminement": "MORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38103180018, + 46.4992237373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2bd9adffa39d778c7cbdf716461ae42a43175a4", + "fields": { + "code_commune_insee": "71324", + "nom_de_la_commune": "MOROGES", + "code_postal": "71390", + "coordonnees_gps": [ + 46.7507453415, + 4.67430662316 + ], + "libelle_d_acheminement": "MOROGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67430662316, + 46.7507453415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "957f0d91dcd4f0e62784a5c1cf42a1cbbfce2384", + "fields": { + "code_commune_insee": "71326", + "nom_de_la_commune": "MOUTHIER EN BRESSE", + "code_postal": "71270", + "coordonnees_gps": [ + 46.8638075135, + 5.38060673295 + ], + "libelle_d_acheminement": "MOUTHIER EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38060673295, + 46.8638075135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "957972705cdd7a99cd95ca13426cd895c00ef957", + "fields": { + "code_commune_insee": "71334", + "nom_de_la_commune": "OUDRY", + "code_postal": "71420", + "coordonnees_gps": [ + 46.5829807312, + 4.1661581036 + ], + "libelle_d_acheminement": "OUDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1661581036, + 46.5829807312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "713dac87fdfc152a4022abd54d664926e7066191", + "fields": { + "code_commune_insee": "71335", + "nom_de_la_commune": "OUROUX SOUS LE BOIS STE MARIE", + "code_postal": "71800", + "coordonnees_gps": [ + 46.3611048312, + 4.31018617706 + ], + "libelle_d_acheminement": "OUROUX SOUS LE BOIS STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31018617706, + 46.3611048312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebdd4897ac062ca8b06387d3c697f740725fe031", + "fields": { + "code_commune_insee": "71337", + "nom_de_la_commune": "OYE", + "code_postal": "71800", + "coordonnees_gps": [ + 46.3247162501, + 4.19347320106 + ], + "libelle_d_acheminement": "OYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19347320106, + 46.3247162501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5cce65a915410ef186e99118c1c7f7a249a992c", + "fields": { + "code_commune_insee": "71345", + "nom_de_la_commune": "PERONNE", + "code_postal": "71260", + "coordonnees_gps": [ + 46.4412933211, + 4.8012887987 + ], + "libelle_d_acheminement": "PERONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8012887987, + 46.4412933211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "744228a918fca0ef19e01216d5513186f8bdbaaf", + "fields": { + "code_commune_insee": "71351", + "nom_de_la_commune": "PIERRE DE BRESSE", + "code_postal": "71270", + "coordonnees_gps": [ + 46.8824879885, + 5.25265750532 + ], + "libelle_d_acheminement": "PIERRE DE BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25265750532, + 46.8824879885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "405d38437dd2f95405010434f072bbfb0757e9aa", + "fields": { + "code_commune_insee": "71355", + "nom_de_la_commune": "PONTOUX", + "code_postal": "71270", + "coordonnees_gps": [ + 46.9088293038, + 5.12123849533 + ], + "libelle_d_acheminement": "PONTOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12123849533, + 46.9088293038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06db69dec191d9adf0c9d0513c6a7262efc8bccb", + "fields": { + "code_commune_insee": "71356", + "nom_de_la_commune": "POUILLOUX", + "code_postal": "71230", + "coordonnees_gps": [ + 46.6048282453, + 4.35349281443 + ], + "libelle_d_acheminement": "POUILLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35349281443, + 46.6048282453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "555bc48d79567fbe87540d10be2850f16fe095e7", + "fields": { + "code_commune_insee": "71362", + "nom_de_la_commune": "PRUZILLY", + "code_postal": "71570", + "coordonnees_gps": [ + 46.259412904, + 4.69749749783 + ], + "libelle_d_acheminement": "PRUZILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69749749783, + 46.259412904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "468d734183fa4952a85927d626e6f974f9d905d5", + "fields": { + "code_commune_insee": "71364", + "nom_de_la_commune": "LA RACINEUSE", + "code_postal": "71310", + "coordonnees_gps": [ + 46.831031386, + 5.16095151897 + ], + "libelle_d_acheminement": "LA RACINEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16095151897, + 46.831031386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bdb65a93a1e1ec983eb6eb40ea2150ea4b2b264", + "fields": { + "code_commune_insee": "71372", + "nom_de_la_commune": "ROMANECHE THORINS", + "code_postal": "71570", + "coordonnees_gps": [ + 46.1902603868, + 4.74347572682 + ], + "libelle_d_acheminement": "ROMANECHE THORINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74347572682, + 46.1902603868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d834877729e8f222a1e43a8e554551ea4ae9fc0", + "fields": { + "code_commune_insee": "71374", + "nom_de_la_commune": "ROSEY", + "code_postal": "71390", + "coordonnees_gps": [ + 46.7400858369, + 4.71424499336 + ], + "libelle_d_acheminement": "ROSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71424499336, + 46.7400858369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f363023c4f6d10bf6e67a3d28c0be943bf6d43c1", + "fields": { + "code_commune_insee": "71382", + "nom_de_la_commune": "ST AGNAN", + "code_postal": "71160", + "coordonnees_gps": [ + 46.5133587412, + 3.88738815956 + ], + "libelle_d_acheminement": "ST AGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88738815956, + 46.5133587412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18e4373e54ca5e80e45d5d71b8afb01f3cf704da", + "fields": { + "code_commune_insee": "71384", + "nom_de_la_commune": "ST AMBREUIL", + "code_postal": "71240", + "coordonnees_gps": [ + 46.6810830382, + 4.81914623845 + ], + "libelle_d_acheminement": "ST AMBREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81914623845, + 46.6810830382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee677faacbbf1f4c92f7cfeb8cb049854db038d4", + "fields": { + "code_commune_insee": "71390", + "nom_de_la_commune": "ST BERAIN SOUS SANVIGNES", + "code_postal": "71300", + "coordonnees_gps": [ + 46.7158828922, + 4.29130777114 + ], + "libelle_d_acheminement": "ST BERAIN SOUS SANVIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29130777114, + 46.7158828922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "833370ea7316e6edde7c898793f1cb5896e1b207", + "fields": { + "code_commune_insee": "71391", + "nom_de_la_commune": "ST BERAIN SUR DHEUNE", + "code_postal": "71510", + "coordonnees_gps": [ + 46.8165810334, + 4.61430858653 + ], + "libelle_d_acheminement": "ST BERAIN SUR DHEUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61430858653, + 46.8165810334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dba3d79c5f139a7311e025075833b887f0241a35", + "fields": { + "code_commune_insee": "71400", + "nom_de_la_commune": "ST CLEMENT SUR GUYE", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6135549466, + 4.5866103902 + ], + "libelle_d_acheminement": "ST CLEMENT SUR GUYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5866103902, + 46.6135549466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac9180f225a0302c3d222843d1bccb021a7ead05", + "fields": { + "code_commune_insee": "71408", + "nom_de_la_commune": "ST EDMOND", + "code_postal": "71740", + "coordonnees_gps": [ + 46.2038071906, + 4.2106213442 + ], + "libelle_d_acheminement": "ST EDMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2106213442, + 46.2038071906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b5ba79111fcb771288c106951b12e0f3fec6103", + "fields": { + "code_commune_insee": "71409", + "nom_de_la_commune": "ST EMILAND", + "code_postal": "71490", + "coordonnees_gps": [ + 46.8946339034, + 4.47301777155 + ], + "libelle_d_acheminement": "ST EMILAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47301777155, + 46.8946339034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0003aa2a510d6b3d2931e5ba38e06aa7c7e9451b", + "fields": { + "code_commune_insee": "71413", + "nom_de_la_commune": "ST FIRMIN", + "code_postal": "71670", + "coordonnees_gps": [ + 46.8475771598, + 4.46315164519 + ], + "libelle_d_acheminement": "ST FIRMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46315164519, + 46.8475771598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aafff6b63ec3e11b51cc22549070b73c8ed59b2", + "fields": { + "code_commune_insee": "71420", + "nom_de_la_commune": "ST GERMAIN DU PLAIN", + "code_postal": "71370", + "coordonnees_gps": [ + 46.6944314945, + 4.98395008765 + ], + "libelle_d_acheminement": "ST GERMAIN DU PLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98395008765, + 46.6944314945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30a24880abeab128f2217b577e344fc0c5fd9756", + "fields": { + "code_commune_insee": "71427", + "nom_de_la_commune": "ST HURUGE", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5787209539, + 4.57476760271 + ], + "libelle_d_acheminement": "ST HURUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57476760271, + 46.5787209539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "658a975056112f83d9d1159cd1315a66493c3442", + "fields": { + "code_commune_insee": "71428", + "nom_de_la_commune": "ST IGNY DE ROCHE", + "code_postal": "71170", + "coordonnees_gps": [ + 46.187952521, + 4.30371238024 + ], + "libelle_d_acheminement": "ST IGNY DE ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30371238024, + 46.187952521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96bab21edd56210b151254766fe6ab7a94b6d4c4", + "fields": { + "code_commune_insee": "71431", + "nom_de_la_commune": "ST JEAN DE TREZY", + "code_postal": "71490", + "coordonnees_gps": [ + 46.84298682, + 4.58633968997 + ], + "libelle_d_acheminement": "ST JEAN DE TREZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58633968997, + 46.84298682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b653fc27a00ac59bf9227031dd76a88fc011e1cd", + "fields": { + "code_commune_insee": "71433", + "nom_de_la_commune": "ST JULIEN DE CIVRY", + "code_postal": "71800", + "coordonnees_gps": [ + 46.3729257558, + 4.22118387615 + ], + "libelle_d_acheminement": "ST JULIEN DE CIVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22118387615, + 46.3729257558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "776fb0da5ef16ed5d441a6db7dcfcd9b0bebc0ca", + "fields": { + "code_commune_insee": "71434", + "nom_de_la_commune": "ST JULIEN DE JONZY", + "code_postal": "71110", + "coordonnees_gps": [ + 46.2465829931, + 4.14251158557 + ], + "libelle_d_acheminement": "ST JULIEN DE JONZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14251158557, + 46.2465829931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "613d095223e21d5b297455d10027643c7ffb41f1", + "fields": { + "ligne_5": "GEANGES", + "code_commune_insee": "71443", + "libelle_d_acheminement": "ST LOUP GEANGES", + "code_postal": "71350", + "nom_de_la_commune": "ST LOUP GEANGES", + "coordonnees_gps": [ + 46.9387218362, + 4.90922243848 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90922243848, + 46.9387218362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1804e603d70cf6e2b9bb24b8878a87c22a7483ec", + "fields": { + "code_commune_insee": "71446", + "nom_de_la_commune": "ST MARCELIN DE CRAY", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5652558244, + 4.52248882344 + ], + "libelle_d_acheminement": "ST MARCELIN DE CRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52248882344, + 46.5652558244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb5fb878d27c2d02a31c2f0fbba2c3bec0199fd9", + "fields": { + "code_commune_insee": "71450", + "nom_de_la_commune": "ST MARTIN DE COMMUNE", + "code_postal": "71490", + "coordonnees_gps": [ + 46.9025390266, + 4.51751488877 + ], + "libelle_d_acheminement": "ST MARTIN DE COMMUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51751488877, + 46.9025390266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c052927496d1696b85f486fd0e78ee12d3f69fc6", + "fields": { + "code_commune_insee": "71480", + "nom_de_la_commune": "ST SERNIN DU PLAIN", + "code_postal": "71510", + "coordonnees_gps": [ + 46.892384215, + 4.61739889874 + ], + "libelle_d_acheminement": "ST SERNIN DU PLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61739889874, + 46.892384215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb9c91ea2e564e8d700910618bc5a399dc554b17", + "fields": { + "code_commune_insee": "71496", + "nom_de_la_commune": "SAMPIGNY LES MARANGES", + "code_postal": "71150", + "coordonnees_gps": [ + 46.9020668199, + 4.65271904267 + ], + "libelle_d_acheminement": "SAMPIGNY LES MARANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65271904267, + 46.9020668199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "799952224e8a75371b6a4fa3bda74f34d3c3e46a", + "fields": { + "code_commune_insee": "71501", + "nom_de_la_commune": "SASSANGY", + "code_postal": "71390", + "coordonnees_gps": [ + 46.7235527398, + 4.64308684871 + ], + "libelle_d_acheminement": "SASSANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64308684871, + 46.7235527398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d750758f85997c301c6d75853c39918055f6ba6", + "fields": { + "code_commune_insee": "71502", + "nom_de_la_commune": "SASSENAY", + "code_postal": "71530", + "coordonnees_gps": [ + 46.8332708433, + 4.91806482813 + ], + "libelle_d_acheminement": "SASSENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91806482813, + 46.8332708433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0d280d2a44fc606477a50b337dbb552d3abbbd7", + "fields": { + "code_commune_insee": "71504", + "nom_de_la_commune": "SAUNIERES", + "code_postal": "71350", + "coordonnees_gps": [ + 46.9119642453, + 5.07167860056 + ], + "libelle_d_acheminement": "SAUNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07167860056, + 46.9119642453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01753290fc0300533cf379b0eaf9c12a072960d7", + "fields": { + "code_commune_insee": "71505", + "nom_de_la_commune": "SAVIANGES", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6899032737, + 4.60174880086 + ], + "libelle_d_acheminement": "SAVIANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60174880086, + 46.6899032737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a29f613c913db378f374f6e06fb594fa92f6770", + "fields": { + "code_commune_insee": "71507", + "nom_de_la_commune": "SAVIGNY SUR GROSNE", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5810724468, + 4.66399210359 + ], + "libelle_d_acheminement": "SAVIGNY SUR GROSNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66399210359, + 46.5810724468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a935649d7cfd02df487ff9ecc88baa5330b14dbf", + "fields": { + "code_commune_insee": "71514", + "nom_de_la_commune": "SENS SUR SEILLE", + "code_postal": "71330", + "coordonnees_gps": [ + 46.7462083335, + 5.30794162297 + ], + "libelle_d_acheminement": "SENS SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30794162297, + 46.7462083335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26c9be2a35ac8f8094a0e789f85fa34383024326", + "fields": { + "code_commune_insee": "71515", + "nom_de_la_commune": "SERCY", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6008137667, + 4.69328088717 + ], + "libelle_d_acheminement": "SERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69328088717, + 46.6008137667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4469aa7cbdaecf523f799c8fa43b146b2086fdf8", + "fields": { + "code_commune_insee": "71522", + "nom_de_la_commune": "SIMANDRE", + "code_postal": "71290", + "coordonnees_gps": [ + 46.6122739185, + 4.98702141498 + ], + "libelle_d_acheminement": "SIMANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98702141498, + 46.6122739185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "526edc8c061fbc5ff5849073c06c83cf7c1d814d", + "fields": { + "code_commune_insee": "71526", + "nom_de_la_commune": "SOLUTRE POUILLY", + "code_postal": "71960", + "coordonnees_gps": [ + 46.2935765949, + 4.72347694555 + ], + "libelle_d_acheminement": "SOLUTRE POUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72347694555, + 46.2935765949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39e4cb94fbdb213b9cd31d1823c28ba9e4d50ab9", + "fields": { + "code_commune_insee": "71529", + "nom_de_la_commune": "SUIN", + "code_postal": "71220", + "coordonnees_gps": [ + 46.4406556558, + 4.45677092453 + ], + "libelle_d_acheminement": "SUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45677092453, + 46.4406556558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "938ea6df0a5b1b53291b65667aa04dc53d48e0b2", + "fields": { + "code_commune_insee": "71531", + "nom_de_la_commune": "LA TAGNIERE", + "code_postal": "71190", + "coordonnees_gps": [ + 46.7963713022, + 4.21515248799 + ], + "libelle_d_acheminement": "LA TAGNIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21515248799, + 46.7963713022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c30730d871fdb93fed82fe908109c1e7a3eaebfd", + "fields": { + "code_commune_insee": "71541", + "nom_de_la_commune": "TORPES", + "code_postal": "71270", + "coordonnees_gps": [ + 46.8390198293, + 5.33546436307 + ], + "libelle_d_acheminement": "TORPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33546436307, + 46.8390198293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a9ffe511b81bb9cc40784b2d5adbfa67313d32b", + "fields": { + "code_commune_insee": "71543", + "nom_de_la_commune": "TOURNUS", + "code_postal": "71700", + "coordonnees_gps": [ + 46.5651726015, + 4.90012429206 + ], + "libelle_d_acheminement": "TOURNUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90012429206, + 46.5651726015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cd37f639c1739025f48d20ae729dc2860f543d6", + "fields": { + "code_commune_insee": "71545", + "nom_de_la_commune": "TRAMAYES", + "code_postal": "71520", + "coordonnees_gps": [ + 46.3056528048, + 4.60368110161 + ], + "libelle_d_acheminement": "TRAMAYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60368110161, + 46.3056528048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e0a137271db7626b214618e7fc08ab125cad1dc", + "fields": { + "code_commune_insee": "71547", + "nom_de_la_commune": "TRIVY", + "code_postal": "71520", + "coordonnees_gps": [ + 46.3907231408, + 4.48743569605 + ], + "libelle_d_acheminement": "TRIVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48743569605, + 46.3907231408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d561d3e04cc0aa324aebadda02b62366b396c4ae", + "fields": { + "code_commune_insee": "71568", + "nom_de_la_commune": "VERISSEY", + "code_postal": "71440", + "coordonnees_gps": [ + 46.7117151775, + 5.12822838879 + ], + "libelle_d_acheminement": "VERISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12822838879, + 46.7117151775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2286737d7727d2a627333cdbbe1ef7d12f8951a5", + "fields": { + "code_commune_insee": "71577", + "nom_de_la_commune": "VILLEGAUDIN", + "code_postal": "71620", + "coordonnees_gps": [ + 46.8001182461, + 5.10315061501 + ], + "libelle_d_acheminement": "VILLEGAUDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10315061501, + 46.8001182461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f115847d9e0e15bef69290bfce5b0d171253a70b", + "fields": { + "code_commune_insee": "71581", + "nom_de_la_commune": "VINDECY", + "code_postal": "71110", + "coordonnees_gps": [ + 46.3534713337, + 4.00762169293 + ], + "libelle_d_acheminement": "VINDECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00762169293, + 46.3534713337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "011351f081cf87c9026f11916152703c161cfae5", + "fields": { + "code_commune_insee": "71591", + "nom_de_la_commune": "FLEURVILLE", + "code_postal": "71260", + "coordonnees_gps": [ + 46.4420568988, + 4.88017715275 + ], + "libelle_d_acheminement": "FLEURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88017715275, + 46.4420568988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bad6a2253fcaf7e1e38c9817cc6ce8464232e986", + "fields": { + "code_commune_insee": "72003", + "nom_de_la_commune": "ALLONNES", + "code_postal": "72700", + "coordonnees_gps": [ + 47.9589683966, + 0.143770981533 + ], + "libelle_d_acheminement": "ALLONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.143770981533, + 47.9589683966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0099d6241cc4f0f475a4e83df03ba7070df1912", + "fields": { + "code_commune_insee": "72022", + "nom_de_la_commune": "LE BAILLEUL", + "code_postal": "72200", + "coordonnees_gps": [ + 47.7724310115, + -0.179561724396 + ], + "libelle_d_acheminement": "LE BAILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.179561724396, + 47.7724310115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef56ea7949e8cde08aa7caad525a30484ed856ed", + "fields": { + "ligne_5": "ST MARS SOUS BALLON", + "code_commune_insee": "72023", + "libelle_d_acheminement": "BALLON ST MARS", + "code_postal": "72290", + "nom_de_la_commune": "BALLON ST MARS", + "coordonnees_gps": [ + 48.1716510339, + 0.226519968503 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.226519968503, + 48.1716510339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa91fd1f239b6715f4f99eeb0cd3caac73956b2d", + "fields": { + "code_commune_insee": "72034", + "nom_de_la_commune": "BERUS", + "code_postal": "72610", + "coordonnees_gps": [ + 48.374837011, + 0.0675732851409 + ], + "libelle_d_acheminement": "BERUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0675732851409, + 48.374837011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08af843a56d1900a881a7a400d780b1dd47c2aaf", + "fields": { + "code_commune_insee": "72050", + "nom_de_la_commune": "BRULON", + "code_postal": "72350", + "coordonnees_gps": [ + 47.9808104506, + -0.230196324503 + ], + "libelle_d_acheminement": "BRULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.230196324503, + 47.9808104506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7995b75f55834629575ed54e987a452342a06516", + "fields": { + "code_commune_insee": "72075", + "nom_de_la_commune": "CHEMIRE LE GAUDIN", + "code_postal": "72210", + "coordonnees_gps": [ + 47.9287039115, + -0.0124343418856 + ], + "libelle_d_acheminement": "CHEMIRE LE GAUDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0124343418856, + 47.9287039115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14f5bdce888f21332099e852955233243ae62c0f", + "fields": { + "code_commune_insee": "72086", + "nom_de_la_commune": "COMMERVEIL", + "code_postal": "72600", + "coordonnees_gps": [ + 48.3141987198, + 0.35431330998 + ], + "libelle_d_acheminement": "COMMERVEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35431330998, + 48.3141987198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceca18a0e873c8019b0e86e66e62a029fe232bd8", + "fields": { + "code_commune_insee": "72089", + "nom_de_la_commune": "CONLIE", + "code_postal": "72240", + "coordonnees_gps": [ + 48.1222946721, + -0.0126744450375 + ], + "libelle_d_acheminement": "CONLIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0126744450375, + 48.1222946721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb957480d2cffc53f830cb85c8559026e9140d66", + "fields": { + "code_commune_insee": "72109", + "nom_de_la_commune": "CRISSE", + "code_postal": "72140", + "coordonnees_gps": [ + 48.1802737725, + -0.0645153355055 + ], + "libelle_d_acheminement": "CRISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0645153355055, + 48.1802737725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8c59a99f4dccfd9cd152a076314256da50f29a8", + "fields": { + "code_commune_insee": "72121", + "nom_de_la_commune": "DOUILLET", + "code_postal": "72130", + "coordonnees_gps": [ + 48.2762672206, + -0.0504235211752 + ], + "libelle_d_acheminement": "DOUILLET LE JOLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0504235211752, + 48.2762672206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31099dd62fee7c46e8bafb05e13ad9c3c3a252fb", + "fields": { + "code_commune_insee": "72122", + "nom_de_la_commune": "DUNEAU", + "code_postal": "72160", + "coordonnees_gps": [ + 48.0674633869, + 0.534877628952 + ], + "libelle_d_acheminement": "DUNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.534877628952, + 48.0674633869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eb5b85104a89b23e5911718ea8f41bf918b38dc", + "fields": { + "code_commune_insee": "72135", + "nom_de_la_commune": "LA FONTAINE ST MARTIN", + "code_postal": "72330", + "coordonnees_gps": [ + 47.7939242622, + 0.0473281736821 + ], + "libelle_d_acheminement": "LA FONTAINE ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0473281736821, + 47.7939242622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70b1fa1d18d5192b79a3e5624393f23f419b8509", + "fields": { + "ligne_5": "LIGNIERES LA CARELLE", + "code_commune_insee": "72137", + "libelle_d_acheminement": "VILLENEUVE EN PERSEIGNE", + "code_postal": "72610", + "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", + "coordonnees_gps": [ + 48.4380499533, + 0.236852667784 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236852667784, + 48.4380499533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cd3f3db0cd536871b648f08af74359d924227f2", + "fields": { + "code_commune_insee": "72139", + "nom_de_la_commune": "FYE", + "code_postal": "72610", + "coordonnees_gps": [ + 48.3232043088, + 0.081600822719 + ], + "libelle_d_acheminement": "FYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.081600822719, + 48.3232043088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8d85450ee6b0da3ecfd100219a5e2fc87f51543", + "fields": { + "code_commune_insee": "72150", + "nom_de_la_commune": "JOUE L ABBE", + "code_postal": "72380", + "coordonnees_gps": [ + 48.1075710093, + 0.229853801099 + ], + "libelle_d_acheminement": "JOUE L ABBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.229853801099, + 48.1075710093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "391edff685b61fbe2e202b820f4a24efd2758423", + "fields": { + "code_commune_insee": "72154", + "nom_de_la_commune": "LA FLECHE", + "code_postal": "72200", + "coordonnees_gps": [ + 47.6893893794, + -0.0646954849714 + ], + "libelle_d_acheminement": "LA FLECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0646954849714, + 47.6893893794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3839ad18fd0b26a9e47c5a77c32b00369f1f7493", + "fields": { + "code_commune_insee": "72156", + "nom_de_la_commune": "LAMNAY", + "code_postal": "72320", + "coordonnees_gps": [ + 48.1056365774, + 0.70953933987 + ], + "libelle_d_acheminement": "LAMNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70953933987, + 48.1056365774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d471f4feebef47b279d826bf5db2a44c2ed7532", + "fields": { + "code_commune_insee": "72160", + "nom_de_la_commune": "LAVERNAT", + "code_postal": "72500", + "coordonnees_gps": [ + 47.7185957169, + 0.346298771657 + ], + "libelle_d_acheminement": "LAVERNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.346298771657, + 47.7185957169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86a90e02b7e174e1f200b4376e918d7c979c5b53", + "fields": { + "code_commune_insee": "72164", + "nom_de_la_commune": "LIVET EN SAOSNOIS", + "code_postal": "72610", + "coordonnees_gps": [ + 48.3561318237, + 0.211071803966 + ], + "libelle_d_acheminement": "LIVET EN SAOSNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.211071803966, + 48.3561318237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38eee215c99ac757b8908d1a6f632d5a59abf8dc", + "fields": { + "code_commune_insee": "72171", + "nom_de_la_commune": "LOUZES", + "code_postal": "72600", + "coordonnees_gps": [ + 48.4277651874, + 0.29346290726 + ], + "libelle_d_acheminement": "LOUZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29346290726, + 48.4277651874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8d3d653c533168e8d3c901e5bbba7292b26f856", + "fields": { + "code_commune_insee": "72181", + "nom_de_la_commune": "LE MANS", + "code_postal": "72000", + "coordonnees_gps": [ + 47.9885256718, + 0.200030493539 + ], + "libelle_d_acheminement": "LE MANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.200030493539, + 47.9885256718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea54216244edca3d0129b507cc2327421d1f400a", + "fields": { + "code_commune_insee": "72184", + "nom_de_la_commune": "MAREIL EN CHAMPAGNE", + "code_postal": "72540", + "coordonnees_gps": [ + 47.980608006, + -0.17895750019 + ], + "libelle_d_acheminement": "MAREIL EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17895750019, + 47.980608006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bdac6202de5156a2d55e8172204d90ceebce6f5", + "fields": { + "code_commune_insee": "72186", + "nom_de_la_commune": "MARESCHE", + "code_postal": "72170", + "coordonnees_gps": [ + 48.2055808859, + 0.149447281517 + ], + "libelle_d_acheminement": "MARESCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.149447281517, + 48.2055808859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fcf7f1c4137497b451dafecf13b5c9c3e81ec5c", + "fields": { + "code_commune_insee": "72187", + "nom_de_la_commune": "MARIGNE LAILLE", + "code_postal": "72220", + "coordonnees_gps": [ + 47.8180439053, + 0.352157158687 + ], + "libelle_d_acheminement": "MARIGNE LAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.352157158687, + 47.8180439053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "472f91174850c5a4406d9d248fbb837f90a0dc86", + "fields": { + "code_commune_insee": "72190", + "nom_de_la_commune": "MAROLLES LES ST CALAIS", + "code_postal": "72120", + "coordonnees_gps": [ + 47.9174702503, + 0.793391671769 + ], + "libelle_d_acheminement": "MAROLLES LES ST CALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.793391671769, + 47.9174702503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8312146291501f8b14f984703f462805ef86320", + "fields": { + "code_commune_insee": "72192", + "nom_de_la_commune": "LES MEES", + "code_postal": "72260", + "coordonnees_gps": [ + 48.3136638147, + 0.234399536229 + ], + "libelle_d_acheminement": "LES MEES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.234399536229, + 48.3136638147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1a24f4be48cc9188ba25cbbf628613fbd490d2c", + "fields": { + "code_commune_insee": "72201", + "nom_de_la_commune": "MONCE EN SAOSNOIS", + "code_postal": "72260", + "coordonnees_gps": [ + 48.2731683792, + 0.388672784026 + ], + "libelle_d_acheminement": "MONCE EN SAOSNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.388672784026, + 48.2731683792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08733629a4f1f85423b1cd519c830395d81b3e2a", + "fields": { + "code_commune_insee": "72210", + "nom_de_la_commune": "MONTREUIL LE HENRI", + "code_postal": "72150", + "coordonnees_gps": [ + 47.8619039789, + 0.571664578097 + ], + "libelle_d_acheminement": "MONTREUIL LE HENRI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.571664578097, + 47.8619039789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e52606e8d64b2aad7947768ae411f8ce1dc546f7", + "fields": { + "code_commune_insee": "72211", + "nom_de_la_commune": "MONT ST JEAN", + "code_postal": "72140", + "coordonnees_gps": [ + 48.2435955785, + -0.113254973959 + ], + "libelle_d_acheminement": "MONT ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.113254973959, + 48.2435955785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcb6d0c2d8aeeef6398150a4707313bc205ae86a", + "fields": { + "code_commune_insee": "72228", + "nom_de_la_commune": "PARCE SUR SARTHE", + "code_postal": "72300", + "coordonnees_gps": [ + 47.8213588323, + -0.193405753909 + ], + "libelle_d_acheminement": "PARCE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.193405753909, + 47.8213588323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3384113aeea09d21721160410bc7a25a2c7ae86f", + "fields": { + "code_commune_insee": "72229", + "nom_de_la_commune": "PARENNES", + "code_postal": "72140", + "coordonnees_gps": [ + 48.1171850426, + -0.185567402147 + ], + "libelle_d_acheminement": "PARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.185567402147, + 48.1171850426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebfa217154a1f0737f516da833e883525f8d09b3", + "fields": { + "code_commune_insee": "72231", + "nom_de_la_commune": "PARIGNE L EVEQUE", + "code_postal": "72250", + "coordonnees_gps": [ + 47.9315338021, + 0.371756176736 + ], + "libelle_d_acheminement": "PARIGNE L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.371756176736, + 47.9315338021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7c7794020ec1c8d5d89115ef4d5bf243f26c622", + "fields": { + "code_commune_insee": "72232", + "nom_de_la_commune": "NOTRE DAME DU PE", + "code_postal": "72300", + "coordonnees_gps": [ + 47.7258292037, + -0.337170709008 + ], + "libelle_d_acheminement": "NOTRE DAME DU PE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.337170709008, + 47.7258292037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddac15b0c937dcdc5a5df83b71d85af8758e14d6", + "fields": { + "code_commune_insee": "72236", + "nom_de_la_commune": "PINCE", + "code_postal": "72300", + "coordonnees_gps": [ + 47.7974854625, + -0.367271386435 + ], + "libelle_d_acheminement": "PINCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.367271386435, + 47.7974854625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3206c82205fc4bb7d4cbac24c6d44b9799cd3de", + "fields": { + "code_commune_insee": "72244", + "nom_de_la_commune": "PRECIGNE", + "code_postal": "72300", + "coordonnees_gps": [ + 47.7644010028, + -0.318024755467 + ], + "libelle_d_acheminement": "PRECIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.318024755467, + 47.7644010028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f121fb2be07cea6ed3fd83b10b3e9eb08bdfc19", + "fields": { + "code_commune_insee": "72249", + "nom_de_la_commune": "LA QUINTE", + "code_postal": "72550", + "coordonnees_gps": [ + 48.0511343365, + 0.0420391198634 + ], + "libelle_d_acheminement": "LA QUINTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0420391198634, + 48.0511343365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "978286d5c8d61190891f95994fa24dc504bd5d22", + "fields": { + "code_commune_insee": "72260", + "nom_de_la_commune": "RUAUDIN", + "code_postal": "72230", + "coordonnees_gps": [ + 47.9430727058, + 0.266049763098 + ], + "libelle_d_acheminement": "RUAUDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.266049763098, + 47.9430727058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c919a1af4f29cf408643d46856dfb3680a5eecd7", + "fields": { + "code_commune_insee": "72265", + "nom_de_la_commune": "ST AIGNAN", + "code_postal": "72110", + "coordonnees_gps": [ + 48.2178811072, + 0.34647150751 + ], + "libelle_d_acheminement": "ST AIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34647150751, + 48.2178811072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8124d6ed4b45ee6e51000232eb1dad5f59172c64", + "fields": { + "code_commune_insee": "72266", + "nom_de_la_commune": "ST AUBIN DE LOCQUENAY", + "code_postal": "72130", + "coordonnees_gps": [ + 48.2582927988, + 0.00918330836218 + ], + "libelle_d_acheminement": "ST AUBIN DE LOCQUENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00918330836218, + 48.2582927988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "484e26b5c4a0cbc04e05626491cdc6551f929a6a", + "fields": { + "code_commune_insee": "72269", + "nom_de_la_commune": "ST CALAIS", + "code_postal": "72120", + "coordonnees_gps": [ + 47.9250578354, + 0.747660967628 + ], + "libelle_d_acheminement": "ST CALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.747660967628, + 47.9250578354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75fabe6ffbd57ddb7b18ec6a1ca0321b50b9c843", + "fields": { + "code_commune_insee": "72270", + "nom_de_la_commune": "ST CALEZ EN SAOSNOIS", + "code_postal": "72600", + "coordonnees_gps": [ + 48.3079476641, + 0.311052842461 + ], + "libelle_d_acheminement": "ST CALEZ EN SAOSNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.311052842461, + 48.3079476641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dbee6ee349dbc6eff56ece02f99970d824dd8aa", + "fields": { + "code_commune_insee": "72274", + "nom_de_la_commune": "ST CHRISTOPHE EN CHAMPAGNE", + "code_postal": "72540", + "coordonnees_gps": [ + 47.9638649026, + -0.137657502688 + ], + "libelle_d_acheminement": "ST CHRISTOPHE EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.137657502688, + 47.9638649026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "619fa563ecdb9180291fae86bfb2678ba39f60f4", + "fields": { + "code_commune_insee": "72279", + "nom_de_la_commune": "ST GEORGES DE LA COUEE", + "code_postal": "72150", + "coordonnees_gps": [ + 47.8259245181, + 0.59121847011 + ], + "libelle_d_acheminement": "ST GEORGES DE LA COUEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59121847011, + 47.8259245181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4e4de878c7c56980cfcba5158636440f79eeff3", + "fields": { + "code_commune_insee": "72283", + "nom_de_la_commune": "ST GERMAIN D ARCE", + "code_postal": "72800", + "coordonnees_gps": [ + 47.6279897995, + 0.286031290683 + ], + "libelle_d_acheminement": "ST GERMAIN D ARCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.286031290683, + 47.6279897995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88cbd0aff43beb305469aa1acb15eae20cbba35c", + "fields": { + "code_commune_insee": "72287", + "nom_de_la_commune": "ST GERVAIS EN BELIN", + "code_postal": "72220", + "coordonnees_gps": [ + 47.8700687155, + 0.200309682523 + ], + "libelle_d_acheminement": "ST GERVAIS EN BELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.200309682523, + 47.8700687155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5fabacc306985fe390897c72ec4adf6abd6141b", + "fields": { + "code_commune_insee": "72291", + "nom_de_la_commune": "ST JEAN DE LA MOTTE", + "code_postal": "72510", + "coordonnees_gps": [ + 47.7580584214, + 0.0554184806948 + ], + "libelle_d_acheminement": "ST JEAN DE LA MOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0554184806948, + 47.7580584214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8de1fae4688d1552426cde67d8efb9e8174741b2", + "fields": { + "code_commune_insee": "72293", + "nom_de_la_commune": "ST JEAN DU BOIS", + "code_postal": "72430", + "coordonnees_gps": [ + 47.8649273014, + -0.0337210880136 + ], + "libelle_d_acheminement": "ST JEAN DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0337210880136, + 47.8649273014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78f80c5441abc94acdbfc83a5b1e90b1932b66cd", + "fields": { + "code_commune_insee": "72299", + "nom_de_la_commune": "ST MARS D OUTILLE", + "code_postal": "72220", + "coordonnees_gps": [ + 47.8696754844, + 0.342695139915 + ], + "libelle_d_acheminement": "ST MARS D OUTILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.342695139915, + 47.8696754844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45b2a2d93491ea53bd4f33f7973df36f2e7155a5", + "fields": { + "code_commune_insee": "72309", + "nom_de_la_commune": "ST PAUL LE GAULTIER", + "code_postal": "72130", + "coordonnees_gps": [ + 48.3259671658, + -0.117341949056 + ], + "libelle_d_acheminement": "ST PAUL LE GAULTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.117341949056, + 48.3259671658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a61bf46a2d668201c4e69df79e053e4adfd0eab", + "fields": { + "code_commune_insee": "72314", + "nom_de_la_commune": "ST PIERRE DU LOROUER", + "code_postal": "72150", + "coordonnees_gps": [ + 47.7963803238, + 0.50839859976 + ], + "libelle_d_acheminement": "ST PIERRE DU LOROUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50839859976, + 47.7963803238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7e39ada22e265f9555d26b5a3ffec208f1ad366", + "fields": { + "code_commune_insee": "72317", + "nom_de_la_commune": "ST REMY DU VAL", + "code_postal": "72600", + "coordonnees_gps": [ + 48.3488699009, + 0.251095298312 + ], + "libelle_d_acheminement": "ST REMY DU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.251095298312, + 48.3488699009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15853c40fdf55a84eebef5c8cd1ff214dd0fc05f", + "fields": { + "code_commune_insee": "72325", + "nom_de_la_commune": "ST VINCENT DU LOROUER", + "code_postal": "72150", + "coordonnees_gps": [ + 47.8210184227, + 0.480742705963 + ], + "libelle_d_acheminement": "ST VINCENT DU LOROUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.480742705963, + 47.8210184227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cd1e75700e9b90107d656192db233dc9c7111c7", + "fields": { + "code_commune_insee": "72335", + "nom_de_la_commune": "SILLE LE PHILIPPE", + "code_postal": "72460", + "coordonnees_gps": [ + 48.1062934505, + 0.34906675752 + ], + "libelle_d_acheminement": "SILLE LE PHILIPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34906675752, + 48.1062934505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a14927b693a9667cdea2ddb27fc37dcc218e2cc", + "fields": { + "code_commune_insee": "72345", + "nom_de_la_commune": "SURFONDS", + "code_postal": "72370", + "coordonnees_gps": [ + 47.979285909, + 0.462514595008 + ], + "libelle_d_acheminement": "SURFONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.462514595008, + 47.979285909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f65f65a9cdfb9f90b58d9da77debdaf7422ffbf9", + "fields": { + "code_commune_insee": "72346", + "nom_de_la_commune": "LA SUZE SUR SARTHE", + "code_postal": "72210", + "coordonnees_gps": [ + 47.8772923207, + 0.0251444644642 + ], + "libelle_d_acheminement": "LA SUZE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0251444644642, + 47.8772923207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d39e3f69e8d1fb80e317dfdce589117d286ead3", + "fields": { + "code_commune_insee": "72347", + "nom_de_la_commune": "TASSE", + "code_postal": "72430", + "coordonnees_gps": [ + 47.8880451469, + -0.149262839514 + ], + "libelle_d_acheminement": "TASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.149262839514, + 47.8880451469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52c0eeb24284265f5d074849c08e9e8b1a6c1b09", + "fields": { + "code_commune_insee": "72350", + "nom_de_la_commune": "TELOCHE", + "code_postal": "72220", + "coordonnees_gps": [ + 47.8904177884, + 0.278475546841 + ], + "libelle_d_acheminement": "TELOCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.278475546841, + 47.8904177884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "920b884ed6b35f0c8c9ea9eac9c4129de0df42b6", + "fields": { + "code_commune_insee": "72359", + "nom_de_la_commune": "TORCE EN VALLEE", + "code_postal": "72110", + "coordonnees_gps": [ + 48.1322879299, + 0.39195616258 + ], + "libelle_d_acheminement": "TORCE EN VALLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39195616258, + 48.1322879299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36ef1d5ff012018b30ad206cd687b19d4ca7e013", + "fields": { + "code_commune_insee": "72361", + "nom_de_la_commune": "TRESSON", + "code_postal": "72440", + "coordonnees_gps": [ + 47.9030368156, + 0.556315449485 + ], + "libelle_d_acheminement": "TRESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.556315449485, + 47.9030368156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36f395b5a8ed30b8946d7bab4c6301ea8784d70c", + "fields": { + "ligne_5": "ST HILAIRE LE LIERRU", + "code_commune_insee": "72363", + "libelle_d_acheminement": "TUFFE VAL DE LA CHERONNE", + "code_postal": "72160", + "nom_de_la_commune": "TUFFE VAL DE LA CHERONNE", + "coordonnees_gps": [ + 48.120886565, + 0.50838049197 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50838049197, + 48.120886565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f10e3e20a3259b37976b95eaa6c390088117ab0f", + "fields": { + "code_commune_insee": "72372", + "nom_de_la_commune": "VEZOT", + "code_postal": "72600", + "coordonnees_gps": [ + 48.3534640428, + 0.294816923539 + ], + "libelle_d_acheminement": "VEZOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.294816923539, + 48.3534640428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6120562e63366176bbef7398d2afcf236f6d7d3", + "fields": { + "code_commune_insee": "72379", + "nom_de_la_commune": "VIRE EN CHAMPAGNE", + "code_postal": "72350", + "coordonnees_gps": [ + 47.9879997602, + -0.291022041763 + ], + "libelle_d_acheminement": "VIRE EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.291022041763, + 47.9879997602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dfa7768cad0dd1d249c27c42722ffbbd1099332", + "fields": { + "ligne_5": "AIGUEBLANCHE", + "code_commune_insee": "73003", + "libelle_d_acheminement": "GRAND AIGUEBLANCHE", + "code_postal": "73260", + "nom_de_la_commune": "GRAND AIGUEBLANCHE", + "coordonnees_gps": [ + 45.5198646844, + 6.51470725301 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51470725301, + 45.5198646844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12a306ed108d9c4e8d1558feeb16520a4d802051", + "fields": { + "ligne_5": "AIME", + "code_commune_insee": "73006", + "libelle_d_acheminement": "AIME LA PLAGNE", + "code_postal": "73210", + "nom_de_la_commune": "AIME LA PLAGNE", + "coordonnees_gps": [ + 45.5525768932, + 6.61836974596 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61836974596, + 45.5525768932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4123294dc69fbd73b126600217ceddb35c1b86f", + "fields": { + "ligne_5": "MONTGIROD", + "code_commune_insee": "73006", + "libelle_d_acheminement": "AIME LA PLAGNE", + "code_postal": "73210", + "nom_de_la_commune": "AIME LA PLAGNE", + "coordonnees_gps": [ + 45.5525768932, + 6.61836974596 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61836974596, + 45.5525768932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "804d807b74211a66c8da895d8a505bae8bfb985f", + "fields": { + "ligne_5": "VILLETTE", + "code_commune_insee": "73006", + "libelle_d_acheminement": "AIME LA PLAGNE", + "code_postal": "73210", + "nom_de_la_commune": "AIME LA PLAGNE", + "coordonnees_gps": [ + 45.5525768932, + 6.61836974596 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61836974596, + 45.5525768932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89753de743bc3d352948048e4373da8fcef3a568", + "fields": { + "ligne_5": "ANSIGNY", + "code_commune_insee": "73010", + "libelle_d_acheminement": "ENTRELACS", + "code_postal": "73410", + "nom_de_la_commune": "ENTRELACS", + "coordonnees_gps": [ + 45.789988746, + 5.93731067789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93731067789, + 45.789988746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3faaad937a28d8abe38b6115cbdb1450e23e37e8", + "fields": { + "ligne_5": "CESSENS", + "code_commune_insee": "73010", + "libelle_d_acheminement": "ENTRELACS", + "code_postal": "73410", + "nom_de_la_commune": "ENTRELACS", + "coordonnees_gps": [ + 45.789988746, + 5.93731067789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93731067789, + 45.789988746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a277bd60fb8378150581d2187f17abe4a6bf9de", + "fields": { + "ligne_5": "ST GIROD", + "code_commune_insee": "73010", + "libelle_d_acheminement": "ENTRELACS", + "code_postal": "73410", + "nom_de_la_commune": "ENTRELACS", + "coordonnees_gps": [ + 45.789988746, + 5.93731067789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93731067789, + 45.789988746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60d042be75809eba1ea3828394b1db509f7ff34b", + "fields": { + "ligne_5": "MERIBEL LES ALLUES", + "code_commune_insee": "73015", + "libelle_d_acheminement": "LES ALLUES", + "code_postal": "73550", + "nom_de_la_commune": "LES ALLUES", + "coordonnees_gps": [ + 45.3697146214, + 6.58767852898 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58767852898, + 45.3697146214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a317f565380c9a4fccdac8f068251f6707550a95", + "fields": { + "code_commune_insee": "73017", + "nom_de_la_commune": "APREMONT", + "code_postal": "73190", + "coordonnees_gps": [ + 45.5012177421, + 5.93652738114 + ], + "libelle_d_acheminement": "APREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93652738114, + 45.5012177421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40fdfd9a1ab78f43def1a4732fed18dae439378c", + "fields": { + "code_commune_insee": "73018", + "nom_de_la_commune": "ARBIN", + "code_postal": "73800", + "coordonnees_gps": [ + 45.510931197, + 6.07455521712 + ], + "libelle_d_acheminement": "ARBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07455521712, + 45.510931197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdfdf9176432dfec062126301771624bfa5ff0d0", + "fields": { + "code_commune_insee": "73023", + "nom_de_la_commune": "AUSSOIS", + "code_postal": "73500", + "coordonnees_gps": [ + 45.2550275097, + 6.72903201851 + ], + "libelle_d_acheminement": "AUSSOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72903201851, + 45.2550275097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f007c29628058df9c8870918629969d1e1c0c810", + "fields": { + "code_commune_insee": "73032", + "nom_de_la_commune": "LA BATHIE", + "code_postal": "73540", + "coordonnees_gps": [ + 45.6383854539, + 6.4735036135 + ], + "libelle_d_acheminement": "LA BATHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4735036135, + 45.6383854539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b67e7c901409527bc726ece69c91e8935a84184", + "fields": { + "ligne_5": "ARECHES", + "code_commune_insee": "73034", + "libelle_d_acheminement": "BEAUFORT SUR DORON", + "code_postal": "73270", + "nom_de_la_commune": "BEAUFORT", + "coordonnees_gps": [ + 45.6857270362, + 6.6034275098 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6034275098, + 45.6857270362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b780dba0ae24451bb0a94fd8769a05781a2b3efa", + "fields": { + "code_commune_insee": "73063", + "nom_de_la_commune": "CEVINS", + "code_postal": "73730", + "coordonnees_gps": [ + 45.6094285678, + 6.4969871671 + ], + "libelle_d_acheminement": "CEVINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4969871671, + 45.6094285678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "315a5d05e2aa374e690ff4f2f704405f573cd613", + "fields": { + "code_commune_insee": "73074", + "nom_de_la_commune": "LA CHAPELLE", + "code_postal": "73660", + "coordonnees_gps": [ + 45.4217303227, + 6.29384300807 + ], + "libelle_d_acheminement": "LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29384300807, + 45.4217303227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9a50aad0c7ac9f3a83c5394cce0f5e097dc4ec8", + "fields": { + "code_commune_insee": "73075", + "nom_de_la_commune": "LA CHAPELLE BLANCHE", + "code_postal": "73110", + "coordonnees_gps": [ + 45.4497737754, + 6.07384698897 + ], + "libelle_d_acheminement": "LA CHAPELLE BLANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07384698897, + 45.4497737754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fffaff5516467a7ac241d47ce3c54c88740256da", + "fields": { + "code_commune_insee": "73078", + "nom_de_la_commune": "LA CHAPELLE ST MARTIN", + "code_postal": "73170", + "coordonnees_gps": [ + 45.6499016869, + 5.75392460611 + ], + "libelle_d_acheminement": "LA CHAPELLE ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75392460611, + 45.6499016869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01501307702fc33642fa9e686b983e5e6850b186", + "fields": { + "code_commune_insee": "73088", + "nom_de_la_commune": "COHENNOZ", + "code_postal": "73400", + "coordonnees_gps": [ + 45.7632895459, + 6.49611998394 + ], + "libelle_d_acheminement": "COHENNOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49611998394, + 45.7632895459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2e040ad25016013a0556b4238c21794bcf95dfd", + "fields": { + "code_commune_insee": "73097", + "nom_de_la_commune": "CURIENNE", + "code_postal": "73190", + "coordonnees_gps": [ + 45.5594547086, + 6.01073450691 + ], + "libelle_d_acheminement": "CURIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01073450691, + 45.5594547086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b484943a5eaa828326ed79ded2501579a266cda7", + "fields": { + "ligne_5": "LA FECLAZ", + "code_commune_insee": "73098", + "libelle_d_acheminement": "LES DESERTS", + "code_postal": "73230", + "nom_de_la_commune": "LES DESERTS", + "coordonnees_gps": [ + 45.6408440768, + 5.99604230711 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99604230711, + 45.6408440768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ef39561eb54f5d24aec2a63a197941c20f34fc6", + "fields": { + "code_commune_insee": "73100", + "nom_de_la_commune": "DOMESSIN", + "code_postal": "73330", + "coordonnees_gps": [ + 45.5371179998, + 5.70221062208 + ], + "libelle_d_acheminement": "DOMESSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70221062208, + 45.5371179998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "802f151d17b1546f8f05ef5f575ec839e77bdc4a", + "fields": { + "code_commune_insee": "73105", + "nom_de_la_commune": "LES ECHELLES", + "code_postal": "73360", + "coordonnees_gps": [ + 45.4514870099, + 5.74305650824 + ], + "libelle_d_acheminement": "LES ECHELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74305650824, + 45.4514870099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6a468714bed0effecd58de6596faed4cd89cdef", + "fields": { + "code_commune_insee": "73110", + "nom_de_la_commune": "ESSERTS BLAY", + "code_postal": "73540", + "coordonnees_gps": [ + 45.6265663308, + 6.41875161664 + ], + "libelle_d_acheminement": "ESSERTS BLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41875161664, + 45.6265663308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e37af5358f08cf05a88c1383996c1234c34e6ed2", + "fields": { + "code_commune_insee": "73113", + "nom_de_la_commune": "FEISSONS SUR SALINS", + "code_postal": "73350", + "coordonnees_gps": [ + 45.4725612545, + 6.56127729089 + ], + "libelle_d_acheminement": "FEISSONS SUR SALINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56127729089, + 45.4725612545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94f20d36a7cd6185c0798090a09cd7dda0811d31", + "fields": { + "code_commune_insee": "73123", + "nom_de_la_commune": "LA GIETTAZ", + "code_postal": "73590", + "coordonnees_gps": [ + 45.8738355415, + 6.51022116567 + ], + "libelle_d_acheminement": "LA GIETTAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51022116567, + 45.8738355415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d02c1ff5e1b4fc0a23cb7208d4b95c92edf621e1", + "fields": { + "code_commune_insee": "73128", + "nom_de_la_commune": "GRESY SUR AIX", + "code_postal": "73100", + "coordonnees_gps": [ + 45.7239088376, + 5.9343072349 + ], + "libelle_d_acheminement": "GRESY SUR AIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9343072349, + 45.7239088376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "effe714a2a1a36d10feda19363175860fc984d71", + "fields": { + "code_commune_insee": "73133", + "nom_de_la_commune": "HAUTEVILLE", + "code_postal": "73390", + "coordonnees_gps": [ + 45.5277372502, + 6.16582880732 + ], + "libelle_d_acheminement": "HAUTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16582880732, + 45.5277372502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a3b49d10c8af44e20de49b7e419c38a9b51a87c", + "fields": { + "ligne_5": "HERMILLON", + "code_commune_insee": "73135", + "libelle_d_acheminement": "LA TOUR EN MAURIENNE", + "code_postal": "73300", + "nom_de_la_commune": "LA TOUR EN MAURIENNE", + "coordonnees_gps": [ + 45.3048823312, + 6.38960278843 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38960278843, + 45.3048823312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcaa7fc7b9d42310f043d44dd059039077970545", + "fields": { + "code_commune_insee": "73138", + "nom_de_la_commune": "JARRIER", + "code_postal": "73300", + "coordonnees_gps": [ + 45.287185628, + 6.3075655794 + ], + "libelle_d_acheminement": "JARRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3075655794, + 45.287185628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f521ccced06258bf73e51ae89148a7f474d41328", + "fields": { + "code_commune_insee": "73142", + "nom_de_la_commune": "LANDRY", + "code_postal": "73210", + "coordonnees_gps": [ + 45.5639247765, + 6.76248697474 + ], + "libelle_d_acheminement": "LANDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76248697474, + 45.5639247765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25ab5abc5a8358f4f12a27a8f0b5eea268ebab2d", + "fields": { + "code_commune_insee": "73145", + "nom_de_la_commune": "LEPIN LE LAC", + "code_postal": "73610", + "coordonnees_gps": [ + 45.5358336406, + 5.79231986465 + ], + "libelle_d_acheminement": "LEPIN LE LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79231986465, + 45.5358336406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4961561ae2e5a424203a55a5cb98d2cb5d39d735", + "fields": { + "ligne_5": "LA COTE D AIME", + "code_commune_insee": "73150", + "libelle_d_acheminement": "LA PLAGNE TARENTAISE", + "code_postal": "73210", + "nom_de_la_commune": "LA PLAGNE TARENTAISE", + "coordonnees_gps": [ + 45.5224407762, + 6.69359362189 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69359362189, + 45.5224407762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35fdf1489fb95a9dd91502ec78cb87d03ae890e0", + "fields": { + "ligne_5": "FRANCIN", + "code_commune_insee": "73151", + "libelle_d_acheminement": "PORTE DE SAVOIE", + "code_postal": "73800", + "nom_de_la_commune": "PORTE DE SAVOIE", + "coordonnees_gps": [ + 45.4923770493, + 5.9922950202 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9922950202, + 45.4923770493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5a4c60e3da307459eac1a95b0c801f0091aa6e9", + "fields": { + "code_commune_insee": "73152", + "nom_de_la_commune": "MARCIEUX", + "code_postal": "73470", + "coordonnees_gps": [ + 45.6148555738, + 5.77861801494 + ], + "libelle_d_acheminement": "MARCIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77861801494, + 45.6148555738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52606c693049e418f5d91cb9a2f9a6d2889b6043", + "fields": { + "code_commune_insee": "73160", + "nom_de_la_commune": "MONTAGNOLE", + "code_postal": "73000", + "coordonnees_gps": [ + 45.5238690773, + 5.91074621005 + ], + "libelle_d_acheminement": "MONTAGNOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91074621005, + 45.5238690773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fac93c24dcda0ae1c5f51898bab4a2b6bec50afa", + "fields": { + "code_commune_insee": "73171", + "nom_de_la_commune": "MONTMELIAN", + "code_postal": "73800", + "coordonnees_gps": [ + 45.5084437218, + 6.05560369254 + ], + "libelle_d_acheminement": "MONTMELIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05560369254, + 45.5084437218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88c3f9b9fe227189b8b9ecb8392d57dcd222c3bf", + "fields": { + "code_commune_insee": "73184", + "nom_de_la_commune": "NANCES", + "code_postal": "73470", + "coordonnees_gps": [ + 45.5854575397, + 5.80295380926 + ], + "libelle_d_acheminement": "NANCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80295380926, + 45.5854575397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0429ab0a6bb83172ff47d400b2255c23c367dd4d", + "fields": { + "code_commune_insee": "73187", + "nom_de_la_commune": "LA LECHERE", + "code_postal": "73260", + "coordonnees_gps": [ + 45.5274218608, + 6.46078348062 + ], + "libelle_d_acheminement": "LA LECHERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46078348062, + 45.5274218608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60280316c4dbe6a5daf22e0e1b048dff4ac08fb7", + "fields": { + "ligne_5": "DOUCY", + "code_commune_insee": "73187", + "libelle_d_acheminement": "LA LECHERE", + "code_postal": "73260", + "nom_de_la_commune": "LA LECHERE", + "coordonnees_gps": [ + 45.5274218608, + 6.46078348062 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46078348062, + 45.5274218608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7296332fbe354dcd47d05dd62e13ea03b9504688", + "fields": { + "code_commune_insee": "73201", + "nom_de_la_commune": "PLANAY", + "code_postal": "73350", + "coordonnees_gps": [ + 45.4227466378, + 6.71458583234 + ], + "libelle_d_acheminement": "PLANAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71458583234, + 45.4227466378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c61e33e091ad837e9e8cd28e38d366e4805d513", + "fields": { + "ligne_5": "LA ROCHETTE", + "code_commune_insee": "73215", + "libelle_d_acheminement": "VALGELON LA ROCHETTE", + "code_postal": "73110", + "nom_de_la_commune": "VALGELON LA ROCHETTE", + "coordonnees_gps": [ + 45.4592334902, + 6.11216246274 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11216246274, + 45.4592334902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a95063bd99b3d3e8473eefd31d62c06873abcb42", + "fields": { + "code_commune_insee": "73217", + "nom_de_la_commune": "ROTHERENS", + "code_postal": "73110", + "coordonnees_gps": [ + 45.472199256, + 6.13731657303 + ], + "libelle_d_acheminement": "ROTHERENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13731657303, + 45.472199256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1079b661a914124fb270d556319629ee2c07ae46", + "fields": { + "ligne_5": "ST BON TARENTAISE", + "code_commune_insee": "73227", + "libelle_d_acheminement": "COURCHEVEL", + "code_postal": "73120", + "nom_de_la_commune": "COURCHEVEL", + "coordonnees_gps": [ + 45.389507146, + 6.64742719024 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64742719024, + 45.389507146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdf923703fc903441d78e146659f5150d57b081c", + "fields": { + "code_commune_insee": "73231", + "nom_de_la_commune": "ST ETIENNE DE CUINES", + "code_postal": "73130", + "coordonnees_gps": [ + 45.3456004794, + 6.25994599551 + ], + "libelle_d_acheminement": "ST ETIENNE DE CUINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25994599551, + 45.3456004794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "859315a0ffb43ea5996d2e4daf59029bec0890b9", + "fields": { + "code_commune_insee": "73233", + "nom_de_la_commune": "ST FRANC", + "code_postal": "73360", + "coordonnees_gps": [ + 45.4897936377, + 5.74256959664 + ], + "libelle_d_acheminement": "ST FRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74256959664, + 45.4897936377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b0eeca026e35cdc9edcb01adf48655291710479", + "fields": { + "code_commune_insee": "73242", + "nom_de_la_commune": "ST JEAN D ARVES", + "code_postal": "73530", + "coordonnees_gps": [ + 45.1659803652, + 6.27215759113 + ], + "libelle_d_acheminement": "ST JEAN D ARVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27215759113, + 45.1659803652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4aee1cb9381e9472e45318dd22312f29e3a6f22", + "fields": { + "code_commune_insee": "73246", + "nom_de_la_commune": "ST JEAN DE COUZ", + "code_postal": "73160", + "coordonnees_gps": [ + 45.4651808602, + 5.81381473016 + ], + "libelle_d_acheminement": "ST JEAN DE COUZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81381473016, + 45.4651808602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abae7962e1ab8017af31818307c81c98b73ebc22", + "fields": { + "code_commune_insee": "73249", + "nom_de_la_commune": "ST JEOIRE PRIEURE", + "code_postal": "73190", + "coordonnees_gps": [ + 45.5330568499, + 5.9893051936 + ], + "libelle_d_acheminement": "ST JEOIRE PRIEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9893051936, + 45.5330568499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f68d4b232880c31d389f0b1bc7b19787600963c", + "fields": { + "code_commune_insee": "73252", + "nom_de_la_commune": "ST LEGER", + "code_postal": "73220", + "coordonnees_gps": [ + 45.4399186872, + 6.26351735583 + ], + "libelle_d_acheminement": "ST LEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26351735583, + 45.4399186872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcaba41ed171b44dd458a33d1f37b920aedcf04a", + "fields": { + "code_commune_insee": "73254", + "nom_de_la_commune": "STE MARIE D ALVEY", + "code_postal": "73240", + "coordonnees_gps": [ + 45.5945348192, + 5.71473062116 + ], + "libelle_d_acheminement": "STE MARIE D ALVEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71473062116, + 45.5945348192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1c5b035487a27a58260f1045f90cf869c31a7da", + "fields": { + "ligne_5": "LES MENUIRES", + "code_commune_insee": "73257", + "libelle_d_acheminement": "LES BELLEVILLE", + "code_postal": "73440", + "nom_de_la_commune": "LES BELLEVILLE", + "coordonnees_gps": [ + 45.334431769, + 6.51686943075 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51686943075, + 45.334431769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a29b80ccd1cac6110304c02c02e257b4dd1d336", + "fields": { + "ligne_5": "ST JEAN DE BELLEVILLE", + "code_commune_insee": "73257", + "libelle_d_acheminement": "LES BELLEVILLE", + "code_postal": "73440", + "nom_de_la_commune": "LES BELLEVILLE", + "coordonnees_gps": [ + 45.334431769, + 6.51686943075 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51686943075, + 45.334431769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a628fb2ef683300c032b377d1560955fa0db2f6", + "fields": { + "ligne_5": "ST OFFENGE DESSUS", + "code_commune_insee": "73263", + "libelle_d_acheminement": "ST OFFENGE", + "code_postal": "73100", + "nom_de_la_commune": "ST OFFENGE", + "coordonnees_gps": [ + 45.7387543881, + 6.01018266121 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01018266121, + 45.7387543881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5be6e8f44ae5a9781411573b601348b3bfca90b0", + "fields": { + "code_commune_insee": "73269", + "nom_de_la_commune": "ST PAUL", + "code_postal": "73170", + "coordonnees_gps": [ + 45.6725948958, + 5.79201634508 + ], + "libelle_d_acheminement": "ST PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79201634508, + 45.6725948958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "310c15c9274b405b9c18264597076cf4bb95c0a9", + "fields": { + "code_commune_insee": "73270", + "nom_de_la_commune": "ST PIERRE D ALBIGNY", + "code_postal": "73250", + "coordonnees_gps": [ + 45.5763259398, + 6.1598571367 + ], + "libelle_d_acheminement": "ST PIERRE D ALBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1598571367, + 45.5763259398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33c02d0b561d3fb00761e4d6100a5f2ff09429df", + "fields": { + "code_commune_insee": "73275", + "nom_de_la_commune": "ST PIERRE DE GENEBROZ", + "code_postal": "73360", + "coordonnees_gps": [ + 45.461398048, + 5.75910376857 + ], + "libelle_d_acheminement": "ST PIERRE DE GENEBROZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75910376857, + 45.461398048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af3087f49f28479c85389f408c3c39f6a1125d9d", + "fields": { + "code_commune_insee": "73281", + "nom_de_la_commune": "ST SULPICE", + "code_postal": "73160", + "coordonnees_gps": [ + 45.5644614056, + 5.84464359287 + ], + "libelle_d_acheminement": "ST SULPICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84464359287, + 45.5644614056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "876f802b4c5f39bf8d1937de91e56710ab8a1927", + "fields": { + "code_commune_insee": "73286", + "nom_de_la_commune": "SERRIERES EN CHAUTAGNE", + "code_postal": "73310", + "coordonnees_gps": [ + 45.8813588205, + 5.84299329456 + ], + "libelle_d_acheminement": "SERRIERES EN CHAUTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84299329456, + 45.8813588205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e1c3d7f4c74aa60ade9795fe634e45bf958930d", + "fields": { + "code_commune_insee": "73316", + "nom_de_la_commune": "VILLARD SALLET", + "code_postal": "73110", + "coordonnees_gps": [ + 45.4865020097, + 6.13474545432 + ], + "libelle_d_acheminement": "VILLARD SALLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13474545432, + 45.4865020097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5427f9b8026ecc6d2edf40395d14ea7212cdad72", + "fields": { + "code_commune_insee": "73322", + "nom_de_la_commune": "VILLARODIN BOURGET", + "code_postal": "73500", + "coordonnees_gps": [ + 45.2189045152, + 6.69172081742 + ], + "libelle_d_acheminement": "VILLARODIN BOURGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69172081742, + 45.2189045152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ff23990e8506e4bee51dc2b32cb96a0e07b3ad8", + "fields": { + "code_commune_insee": "74001", + "nom_de_la_commune": "ABONDANCE", + "code_postal": "74360", + "coordonnees_gps": [ + 46.2661080816, + 6.7321620538 + ], + "libelle_d_acheminement": "ABONDANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7321620538, + 46.2661080816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9439e515049baa1e2c3720f979e00b35b2928bd", + "fields": { + "code_commune_insee": "74006", + "nom_de_la_commune": "ALLONZIER LA CAILLE", + "code_postal": "74350", + "coordonnees_gps": [ + 46.000527699, + 6.10482048689 + ], + "libelle_d_acheminement": "ALLONZIER LA CAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10482048689, + 46.000527699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aebfb6538e189ebff0a60d6f2befd6bfe742367c", + "fields": { + "ligne_5": "AVREGNY", + "code_commune_insee": "74006", + "libelle_d_acheminement": "ALLONZIER LA CAILLE", + "code_postal": "74350", + "nom_de_la_commune": "ALLONZIER LA CAILLE", + "coordonnees_gps": [ + 46.000527699, + 6.10482048689 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10482048689, + 46.000527699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0dde37f67894f5ccc257d9cc65762796a021097", + "fields": { + "code_commune_insee": "74007", + "nom_de_la_commune": "AMANCY", + "code_postal": "74800", + "coordonnees_gps": [ + 46.0728257803, + 6.33057376854 + ], + "libelle_d_acheminement": "AMANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33057376854, + 46.0728257803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7634af58ac2a77c358a0f9d0e509dfd4a4094556", + "fields": { + "ligne_5": "PRINGY", + "code_commune_insee": "74010", + "libelle_d_acheminement": "ANNECY", + "code_postal": "74370", + "nom_de_la_commune": "ANNECY", + "coordonnees_gps": [ + 45.8906432566, + 6.12551773598 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12551773598, + 45.8906432566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c17e6d52d0eb33a7f2784a2c0005ee7d1a46f6b1", + "fields": { + "ligne_5": "CRAN GEVRIER", + "code_commune_insee": "74010", + "libelle_d_acheminement": "ANNECY", + "code_postal": "74960", + "nom_de_la_commune": "ANNECY", + "coordonnees_gps": [ + 45.8906432566, + 6.12551773598 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12551773598, + 45.8906432566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3782a5d80a577187821519176fe66dffeaf08b47", + "fields": { + "code_commune_insee": "74012", + "nom_de_la_commune": "ANNEMASSE", + "code_postal": "74100", + "coordonnees_gps": [ + 46.1909730986, + 6.24250704322 + ], + "libelle_d_acheminement": "ANNEMASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24250704322, + 46.1909730986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2642b8eaff06df38089eaf2c4bb8d27bd19337b", + "fields": { + "ligne_5": "LES CARROZ D ARACHES", + "code_commune_insee": "74014", + "libelle_d_acheminement": "ARACHES LA FRASSE", + "code_postal": "74300", + "nom_de_la_commune": "ARACHES LA FRASSE", + "coordonnees_gps": [ + 46.0302694516, + 6.66062068121 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66062068121, + 46.0302694516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f93268035682249408e090fca12946ba77b64ada", + "fields": { + "code_commune_insee": "74034", + "nom_de_la_commune": "LE BIOT", + "code_postal": "74430", + "coordonnees_gps": [ + 46.2728593658, + 6.64024071432 + ], + "libelle_d_acheminement": "LE BIOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64024071432, + 46.2728593658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed1bfa261532360c4349a9f570a89a77a8f74f37", + "fields": { + "code_commune_insee": "74042", + "nom_de_la_commune": "BONNEVILLE", + "code_postal": "74130", + "coordonnees_gps": [ + 46.0739003968, + 6.40868532191 + ], + "libelle_d_acheminement": "BONNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40868532191, + 46.0739003968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c216915a4a01b9b7b3008ec44c9334850a121aea", + "fields": { + "code_commune_insee": "74043", + "nom_de_la_commune": "BONS EN CHABLAIS", + "code_postal": "74890", + "coordonnees_gps": [ + 46.2631816283, + 6.36089776128 + ], + "libelle_d_acheminement": "BONS EN CHABLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36089776128, + 46.2631816283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7a8b54e8f8084c4096f9dc5b5fdb5138e01eb7b", + "fields": { + "code_commune_insee": "74046", + "nom_de_la_commune": "BOUSSY", + "code_postal": "74150", + "coordonnees_gps": [ + 45.8509031709, + 5.98346432153 + ], + "libelle_d_acheminement": "BOUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98346432153, + 45.8509031709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "860e21dd849ea238c10a10872a68024cbbee184a", + "fields": { + "code_commune_insee": "74055", + "nom_de_la_commune": "CHALLONGES", + "code_postal": "74910", + "coordonnees_gps": [ + 46.0223204278, + 5.82687440424 + ], + "libelle_d_acheminement": "CHALLONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82687440424, + 46.0223204278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46718b9e8b5108406aba75541b0d803ed59923d9", + "fields": { + "code_commune_insee": "74058", + "nom_de_la_commune": "LA CHAPELLE D ABONDANCE", + "code_postal": "74360", + "coordonnees_gps": [ + 46.3009535709, + 6.79280453698 + ], + "libelle_d_acheminement": "LA CHAPELLE D ABONDANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79280453698, + 46.3009535709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc91e8cd09eded6aa14f8513849566dd2b59d2fe", + "fields": { + "code_commune_insee": "74067", + "nom_de_la_commune": "CHAVANOD", + "code_postal": "74650", + "coordonnees_gps": [ + 45.8844744691, + 6.05040184575 + ], + "libelle_d_acheminement": "CHAVANOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05040184575, + 45.8844744691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faa093f0ee5b2f9b048ecbafa6849bf7b6798e38", + "fields": { + "code_commune_insee": "74069", + "nom_de_la_commune": "CHENEX", + "code_postal": "74520", + "coordonnees_gps": [ + 46.1028404412, + 5.9906719812 + ], + "libelle_d_acheminement": "CHENEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9906719812, + 46.1028404412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c69ba3ae9ed553f3a044c1c2abf51f4df82c8802", + "fields": { + "code_commune_insee": "74070", + "nom_de_la_commune": "CHENS SUR LEMAN", + "code_postal": "74140", + "coordonnees_gps": [ + 46.3104075076, + 6.26773142669 + ], + "libelle_d_acheminement": "CHENS SUR LEMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26773142669, + 46.3104075076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a2244f41d922e67ec9ec551704bc947171caa36", + "fields": { + "code_commune_insee": "74072", + "nom_de_la_commune": "CHEVALINE", + "code_postal": "74210", + "coordonnees_gps": [ + 45.7302662541, + 6.20797432213 + ], + "libelle_d_acheminement": "CHEVALINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20797432213, + 45.7302662541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5fe2bc64551eb3adf75aff2b5e9ca4b05c1c49c", + "fields": { + "code_commune_insee": "74076", + "nom_de_la_commune": "CHOISY", + "code_postal": "74330", + "coordonnees_gps": [ + 45.9970301608, + 6.05417234636 + ], + "libelle_d_acheminement": "CHOISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05417234636, + 45.9970301608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a833f8d0f10c2dfa616444d93440a919a6c18f3f", + "fields": { + "code_commune_insee": "74082", + "nom_de_la_commune": "COLLONGES SOUS SALEVE", + "code_postal": "74160", + "coordonnees_gps": [ + 46.1362755824, + 6.16071125763 + ], + "libelle_d_acheminement": "COLLONGES SOUS SALEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16071125763, + 46.1362755824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83ea4fdb9da0c34fd34fd0ae2285c5a7f6560423", + "fields": { + "code_commune_insee": "74086", + "nom_de_la_commune": "CONTAMINE SARZIN", + "code_postal": "74270", + "coordonnees_gps": [ + 46.0216239121, + 5.98148486224 + ], + "libelle_d_acheminement": "CONTAMINE SARZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98148486224, + 46.0216239121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6333f287aea2fb0da98ad6886efe660bc466214e", + "fields": { + "code_commune_insee": "74090", + "nom_de_la_commune": "CORNIER", + "code_postal": "74800", + "coordonnees_gps": [ + 46.0897408945, + 6.29193924963 + ], + "libelle_d_acheminement": "CORNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29193924963, + 46.0897408945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a54dad6ccb5289895e71e0b19fa0a6abb7a0eac4", + "fields": { + "code_commune_insee": "74101", + "nom_de_la_commune": "DINGY EN VUACHE", + "code_postal": "74520", + "coordonnees_gps": [ + 46.0886545538, + 5.94974416216 + ], + "libelle_d_acheminement": "DINGY EN VUACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94974416216, + 46.0886545538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1e402eeffbb872ecfde9b8b5783a3dab1257fac", + "fields": { + "code_commune_insee": "74102", + "nom_de_la_commune": "DINGY ST CLAIR", + "code_postal": "74230", + "coordonnees_gps": [ + 45.9289752964, + 6.25044685082 + ], + "libelle_d_acheminement": "DINGY ST CLAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25044685082, + 45.9289752964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8482dcdf4e74ebeb77986ca01ed740714507e38", + "fields": { + "code_commune_insee": "74106", + "nom_de_la_commune": "DRAILLANT", + "code_postal": "74550", + "coordonnees_gps": [ + 46.2957245555, + 6.4729982985 + ], + "libelle_d_acheminement": "DRAILLANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4729982985, + 46.2957245555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f08138a0e249c6c6613a5b10bdb6f2e4776aa38", + "fields": { + "code_commune_insee": "74111", + "nom_de_la_commune": "ENTREVERNES", + "code_postal": "74410", + "coordonnees_gps": [ + 45.7764785792, + 6.18131365622 + ], + "libelle_d_acheminement": "ENTREVERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18131365622, + 45.7764785792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb71dfeba5b6083f3576fdc7af35e24f9fccefb2", + "fields": { + "ligne_5": "METZ TESSY", + "code_commune_insee": "74112", + "libelle_d_acheminement": "EPAGNY METZ TESSY", + "code_postal": "74370", + "nom_de_la_commune": "EPAGNY METZ TESSY", + "coordonnees_gps": [ + 45.9440370403, + 6.08226977374 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08226977374, + 45.9440370403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83cd5d8d52eb1cf532d621bf1b005ece44395dd6", + "fields": { + "code_commune_insee": "74130", + "nom_de_la_commune": "FRANCLENS", + "code_postal": "74910", + "coordonnees_gps": [ + 46.0440349953, + 5.82444988041 + ], + "libelle_d_acheminement": "FRANCLENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82444988041, + 46.0440349953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "529f31ea2351d29b7c9a64521fe7af4b7142d3ba", + "fields": { + "code_commune_insee": "74136", + "nom_de_la_commune": "LE GRAND BORNAND", + "code_postal": "74450", + "coordonnees_gps": [ + 45.9562174482, + 6.47641784295 + ], + "libelle_d_acheminement": "LE GRAND BORNAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47641784295, + 45.9562174482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ade0c5ac8c14928527a77d3edcb1081e11da877", + "fields": { + "code_commune_insee": "74142", + "nom_de_la_commune": "HERY SUR ALBY", + "code_postal": "74540", + "coordonnees_gps": [ + 45.791943752, + 6.01056501234 + ], + "libelle_d_acheminement": "HERY SUR ALBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01056501234, + 45.791943752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f39276adb3d14f2798cd457c7d620b8432827b2c", + "fields": { + "code_commune_insee": "74145", + "nom_de_la_commune": "JUVIGNY", + "code_postal": "74100", + "coordonnees_gps": [ + 46.2159934836, + 6.2901767957 + ], + "libelle_d_acheminement": "JUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2901767957, + 46.2159934836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2264a8a35cc220473a4c348edcb218020d601bd", + "fields": { + "code_commune_insee": "74154", + "nom_de_la_commune": "LUGRIN", + "code_postal": "74500", + "coordonnees_gps": [ + 46.3933090904, + 6.67397267401 + ], + "libelle_d_acheminement": "LUGRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67397267401, + 46.3933090904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89ef65059ca84d40a5514746698900bdfaa0cecc", + "fields": { + "code_commune_insee": "74158", + "nom_de_la_commune": "MACHILLY", + "code_postal": "74140", + "coordonnees_gps": [ + 46.2555120151, + 6.32281411543 + ], + "libelle_d_acheminement": "MACHILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32281411543, + 46.2555120151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b129500c0d340f66003e3c4340c69d22cd3f3870", + "fields": { + "code_commune_insee": "74159", + "nom_de_la_commune": "MAGLAND", + "code_postal": "74300", + "coordonnees_gps": [ + 46.0010482843, + 6.63346275001 + ], + "libelle_d_acheminement": "MAGLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63346275001, + 46.0010482843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9005f1f25261e07c9a03393add3565f9e5586d32", + "fields": { + "code_commune_insee": "74160", + "nom_de_la_commune": "MANIGOD", + "code_postal": "74230", + "coordonnees_gps": [ + 45.850295364, + 6.40113588124 + ], + "libelle_d_acheminement": "MANIGOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40113588124, + 45.850295364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70c47a4821a47df995263fecfccaf2b4a0ba0713", + "fields": { + "code_commune_insee": "74164", + "nom_de_la_commune": "MARIGNIER", + "code_postal": "74970", + "coordonnees_gps": [ + 46.0950289167, + 6.4944693169 + ], + "libelle_d_acheminement": "MARIGNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4944693169, + 46.0950289167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9772b0b2c4a4844a5309ea619f482604740d9b1e", + "fields": { + "code_commune_insee": "74165", + "nom_de_la_commune": "MARIGNY ST MARCEL", + "code_postal": "74150", + "coordonnees_gps": [ + 45.8298777839, + 5.98423746783 + ], + "libelle_d_acheminement": "MARIGNY ST MARCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98423746783, + 45.8298777839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6afa92556170467a2c675ebc65d83ffad935405", + "fields": { + "code_commune_insee": "74171", + "nom_de_la_commune": "MASSONGY", + "code_postal": "74140", + "coordonnees_gps": [ + 46.3230559823, + 6.32549950668 + ], + "libelle_d_acheminement": "MASSONGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32549950668, + 46.3230559823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb5703a1aa4f6fd47dbfddd6f055e749d3591f93", + "fields": { + "code_commune_insee": "74172", + "nom_de_la_commune": "MAXILLY SUR LEMAN", + "code_postal": "74500", + "coordonnees_gps": [ + 46.393993609, + 6.6339170176 + ], + "libelle_d_acheminement": "MAXILLY SUR LEMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6339170176, + 46.393993609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ec23852dad4068f801b0e15949f6fa873174ec4", + "fields": { + "code_commune_insee": "74173", + "nom_de_la_commune": "MEGEVE", + "code_postal": "74120", + "coordonnees_gps": [ + 45.8401573581, + 6.62348394015 + ], + "libelle_d_acheminement": "MEGEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62348394015, + 45.8401573581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40863e99eb8e52bfc99996edc2ada687c70ac884", + "fields": { + "code_commune_insee": "74177", + "nom_de_la_commune": "MENTHONNEX EN BORNES", + "code_postal": "74350", + "coordonnees_gps": [ + 46.0594628782, + 6.17994135372 + ], + "libelle_d_acheminement": "MENTHONNEX EN BORNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17994135372, + 46.0594628782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e4341e497c8c007e0510f438b79b4188c81cc6e", + "fields": { + "code_commune_insee": "74178", + "nom_de_la_commune": "MENTHONNEX SOUS CLERMONT", + "code_postal": "74270", + "coordonnees_gps": [ + 45.9618992174, + 5.93569269941 + ], + "libelle_d_acheminement": "MENTHONNEX SOUS CLERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93569269941, + 45.9618992174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec48bf79bdadf7c984168b216aa0e6562ee80a99", + "fields": { + "code_commune_insee": "74188", + "nom_de_la_commune": "MONTRIOND", + "code_postal": "74110", + "coordonnees_gps": [ + 46.2066444762, + 6.74359316824 + ], + "libelle_d_acheminement": "MONTRIOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74359316824, + 46.2066444762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d930b35c819ec22d31d3406f63262e78bb98ac3b", + "fields": { + "ligne_5": "AVORIAZ", + "code_commune_insee": "74191", + "libelle_d_acheminement": "MORZINE", + "code_postal": "74110", + "nom_de_la_commune": "MORZINE", + "coordonnees_gps": [ + 46.1732135057, + 6.74252144427 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74252144427, + 46.1732135057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb04bb52a200cbef489be684197ba85d0f852d17", + "fields": { + "code_commune_insee": "74201", + "nom_de_la_commune": "NEYDENS", + "code_postal": "74160", + "coordonnees_gps": [ + 46.118085274, + 6.10360630627 + ], + "libelle_d_acheminement": "NEYDENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10360630627, + 46.118085274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad1a35493830d5961d0b30dc8a96edf72313aa51", + "fields": { + "code_commune_insee": "74205", + "nom_de_la_commune": "ONNION", + "code_postal": "74490", + "coordonnees_gps": [ + 46.1816924284, + 6.49869806571 + ], + "libelle_d_acheminement": "ONNION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49869806571, + 46.1816924284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "678e4e36ccd76afe19e921e091ad679c28b761d4", + "fields": { + "ligne_5": "GUEBRIANT", + "code_commune_insee": "74208", + "libelle_d_acheminement": "PASSY", + "code_postal": "74190", + "nom_de_la_commune": "PASSY", + "coordonnees_gps": [ + 45.9545838758, + 6.74056895873 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74056895873, + 45.9545838758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a89e407bee82e2274efadaae44e2d422d63bf42f", + "fields": { + "ligne_5": "MARTEL DE JANVILLE", + "code_commune_insee": "74208", + "libelle_d_acheminement": "PASSY", + "code_postal": "74190", + "nom_de_la_commune": "PASSY", + "coordonnees_gps": [ + 45.9545838758, + 6.74056895873 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74056895873, + 45.9545838758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9c048751c797d1385e41a71b713da6f97127567", + "fields": { + "ligne_5": "PRAZ COUTANT", + "code_commune_insee": "74208", + "libelle_d_acheminement": "PASSY", + "code_postal": "74190", + "nom_de_la_commune": "PASSY", + "coordonnees_gps": [ + 45.9545838758, + 6.74056895873 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74056895873, + 45.9545838758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd0175f1e6c6e02327e913a78702b89424d2f894", + "fields": { + "code_commune_insee": "74210", + "nom_de_la_commune": "PERRIGNIER", + "code_postal": "74550", + "coordonnees_gps": [ + 46.3062097696, + 6.43566112571 + ], + "libelle_d_acheminement": "PERRIGNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43566112571, + 46.3062097696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a5b5270710a455d129e5006958b308d0590f17d", + "fields": { + "code_commune_insee": "74215", + "nom_de_la_commune": "PRAZ SUR ARLY", + "code_postal": "74120", + "coordonnees_gps": [ + 45.8273830963, + 6.58013212731 + ], + "libelle_d_acheminement": "PRAZ SUR ARLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58013212731, + 45.8273830963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b442c4fe30cdeedecad8a935fa11e23c5fd5d614", + "fields": { + "ligne_5": "ESERY", + "code_commune_insee": "74220", + "libelle_d_acheminement": "REIGNIER ESERY", + "code_postal": "74930", + "nom_de_la_commune": "REIGNIER ESERY", + "coordonnees_gps": [ + 46.1353479879, + 6.26126122824 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26126122824, + 46.1353479879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "395799e56aace6af2aa516d25addb6d946e5d569", + "fields": { + "code_commune_insee": "74222", + "nom_de_la_commune": "REYVROZ", + "code_postal": "74200", + "coordonnees_gps": [ + 46.324542262, + 6.56224816436 + ], + "libelle_d_acheminement": "REYVROZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56224816436, + 46.324542262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bb4244cf143d3e3ef373c47cb97dd6394451a1f", + "fields": { + "code_commune_insee": "74225", + "nom_de_la_commune": "RUMILLY", + "code_postal": "74150", + "coordonnees_gps": [ + 45.8555126651, + 5.94075287432 + ], + "libelle_d_acheminement": "RUMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94075287432, + 45.8555126651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b2120d8a98fe24d4544b4a790b3ec7d0d7830c8", + "fields": { + "code_commune_insee": "74234", + "nom_de_la_commune": "ST FERREOL", + "code_postal": "74210", + "coordonnees_gps": [ + 45.7833203062, + 6.30718276137 + ], + "libelle_d_acheminement": "ST FERREOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30718276137, + 45.7833203062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad637b27a438a767d8c0b270547c4fc3fdbe2703", + "fields": { + "code_commune_insee": "74236", + "nom_de_la_commune": "ST GERVAIS LES BAINS", + "code_postal": "74170", + "coordonnees_gps": [ + 45.8571864862, + 6.74016257718 + ], + "libelle_d_acheminement": "ST GERVAIS LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74016257718, + 45.8571864862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00fbd5fda8c1d6948c30aca937088bfb4a0bcc7e", + "fields": { + "ligne_5": "LE FAYET", + "code_commune_insee": "74236", + "libelle_d_acheminement": "ST GERVAIS LES BAINS", + "code_postal": "74170", + "nom_de_la_commune": "ST GERVAIS LES BAINS", + "coordonnees_gps": [ + 45.8571864862, + 6.74016257718 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74016257718, + 45.8571864862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9470c3a698cec5840529e3e9195d1d80f2d00686", + "fields": { + "ligne_5": "ST NICOLAS DE VEROCE", + "code_commune_insee": "74236", + "libelle_d_acheminement": "ST GERVAIS LES BAINS", + "code_postal": "74170", + "nom_de_la_commune": "ST GERVAIS LES BAINS", + "coordonnees_gps": [ + 45.8571864862, + 6.74016257718 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74016257718, + 45.8571864862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "527378f08da4a132729763a09bd2f1b2d56e2dcd", + "fields": { + "code_commune_insee": "74257", + "nom_de_la_commune": "SALLENOVES", + "code_postal": "74270", + "coordonnees_gps": [ + 46.0029977511, + 5.99114541965 + ], + "libelle_d_acheminement": "SALLENOVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99114541965, + 46.0029977511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "960676b7469d3b4bcb74af5fabf407cd70a5d638", + "fields": { + "code_commune_insee": "74262", + "nom_de_la_commune": "SCIENTRIER", + "code_postal": "74930", + "coordonnees_gps": [ + 46.1202601258, + 6.31761155339 + ], + "libelle_d_acheminement": "SCIENTRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31761155339, + 46.1202601258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c409573f6b26d8ff897c96f8952a417f8eca83f3", + "fields": { + "code_commune_insee": "74269", + "nom_de_la_commune": "SEYSSEL", + "code_postal": "74910", + "coordonnees_gps": [ + 45.959506245, + 5.8529871085 + ], + "libelle_d_acheminement": "SEYSSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8529871085, + 45.959506245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6e776f092e128628b1f33fbeabd6afc3cf32bfb", + "fields": { + "code_commune_insee": "74272", + "nom_de_la_commune": "SILLINGY", + "code_postal": "74330", + "coordonnees_gps": [ + 45.9489088866, + 6.02753426428 + ], + "libelle_d_acheminement": "SILLINGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02753426428, + 45.9489088866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "864934dec9607c7890bb754eee7c5db927520805", + "fields": { + "code_commune_insee": "74279", + "nom_de_la_commune": "THOLLON LES MEMISES", + "code_postal": "74500", + "coordonnees_gps": [ + 46.3828568354, + 6.7291180359 + ], + "libelle_d_acheminement": "THOLLON LES MEMISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7291180359, + 46.3828568354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "623fe0fb41cebe41921fe384e609329a96ce1f8d", + "fields": { + "ligne_5": "ST MARTIN BELLEVUE", + "code_commune_insee": "74282", + "libelle_d_acheminement": "FILLIERE", + "code_postal": "74370", + "nom_de_la_commune": "FILLIERE", + "coordonnees_gps": [ + 45.9923733891, + 6.28837579239 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28837579239, + 45.9923733891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2266adc9f2488be59d3a6622b699d3cc4d8d1907", + "fields": { + "code_commune_insee": "74286", + "nom_de_la_commune": "VACHERESSE", + "code_postal": "74360", + "coordonnees_gps": [ + 46.3228440674, + 6.7065933809 + ], + "libelle_d_acheminement": "VACHERESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7065933809, + 46.3228440674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf315e8058e5c6c022d5e40679c6cd3c5c643c3a", + "fields": { + "ligne_5": "VALLIERES", + "code_commune_insee": "74289", + "libelle_d_acheminement": "VALLIERES SUR FIER", + "code_postal": "74150", + "nom_de_la_commune": "VALLIERES SUR FIER", + "coordonnees_gps": [ + 45.9052695634, + 5.94190689609 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94190689609, + 45.9052695634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15badca186dcecae51b965d3c9ddbe7f16f45872", + "fields": { + "code_commune_insee": "74293", + "nom_de_la_commune": "VEIGY FONCENEX", + "code_postal": "74140", + "coordonnees_gps": [ + 46.2703256602, + 6.26781250084 + ], + "libelle_d_acheminement": "VEIGY FONCENEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26781250084, + 46.2703256602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82585f855367d350e61bda306fdce7b460961be3", + "fields": { + "code_commune_insee": "74295", + "nom_de_la_commune": "LA VERNAZ", + "code_postal": "74200", + "coordonnees_gps": [ + 46.3073602687, + 6.59539098914 + ], + "libelle_d_acheminement": "LA VERNAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59539098914, + 46.3073602687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7f9a98c1660948c8218c688f9014a86d3178baa", + "fields": { + "code_commune_insee": "74296", + "nom_de_la_commune": "VERS", + "code_postal": "74160", + "coordonnees_gps": [ + 46.088423154, + 6.02493398653 + ], + "libelle_d_acheminement": "VERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02493398653, + 46.088423154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d581e4d8a614829e7262fb0dde504560fb12c96", + "fields": { + "code_commune_insee": "74298", + "nom_de_la_commune": "VETRAZ MONTHOUX", + "code_postal": "74100", + "coordonnees_gps": [ + 46.1810228514, + 6.26266311995 + ], + "libelle_d_acheminement": "VETRAZ MONTHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26266311995, + 46.1810228514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a899cd24cb542582f83481d7256d52b3f4883844", + "fields": { + "code_commune_insee": "74302", + "nom_de_la_commune": "LES VILLARDS SUR THONES", + "code_postal": "74230", + "coordonnees_gps": [ + 45.9132702752, + 6.37458702668 + ], + "libelle_d_acheminement": "LES VILLARDS SUR THONES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37458702668, + 45.9132702752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "696fab30447f7c540b05b02253cf45275302105c", + "fields": { + "code_commune_insee": "74304", + "nom_de_la_commune": "VILLE EN SALLAZ", + "code_postal": "74250", + "coordonnees_gps": [ + 46.1451320833, + 6.42263248025 + ], + "libelle_d_acheminement": "VILLE EN SALLAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42263248025, + 46.1451320833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "731eb431c03ca181783ff7a6051236b6ec85fd05", + "fields": { + "code_commune_insee": "76013", + "nom_de_la_commune": "ANGERVILLE LA MARTEL", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7681060505, + 0.501685271986 + ], + "libelle_d_acheminement": "ANGERVILLE LA MARTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.501685271986, + 49.7681060505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "642e195e7a7788ed4631ace5a23611f8e6cb7d54", + "fields": { + "code_commune_insee": "76021", + "nom_de_la_commune": "ANNOUVILLE VILMESNIL", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6794638348, + 0.431675175085 + ], + "libelle_d_acheminement": "ANNOUVILLE VILMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.431675175085, + 49.6794638348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36b0097f5689549c5fb385d095bc6bc74a78326f", + "fields": { + "code_commune_insee": "76024", + "nom_de_la_commune": "ARDOUVAL", + "code_postal": "76680", + "coordonnees_gps": [ + 49.7409130486, + 1.27312376104 + ], + "libelle_d_acheminement": "ARDOUVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27312376104, + 49.7409130486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f63e0a095d2d1411e5bc8be04a987fb3d688a51", + "fields": { + "code_commune_insee": "76025", + "nom_de_la_commune": "ARGUEIL", + "code_postal": "76780", + "coordonnees_gps": [ + 49.5459280867, + 1.52572338915 + ], + "libelle_d_acheminement": "ARGUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52572338915, + 49.5459280867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d39ccb98b95de0972f294ea38ff232d7862bd2c9", + "fields": { + "ligne_5": "AUTRETOT", + "code_commune_insee": "76041", + "libelle_d_acheminement": "LES HAUTS DE CAUX", + "code_postal": "76190", + "nom_de_la_commune": "LES HAUTS DE CAUX", + "coordonnees_gps": [ + 49.6553610045, + 0.7278467274 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7278467274, + 49.6553610045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebbea0b0691853ef94c3e81e2e95017c30740e7a", + "fields": { + "code_commune_insee": "76045", + "nom_de_la_commune": "AUZOUVILLE L ESNEVAL", + "code_postal": "76760", + "coordonnees_gps": [ + 49.6332091755, + 0.883721965362 + ], + "libelle_d_acheminement": "AUZOUVILLE L ESNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.883721965362, + 49.6332091755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeb1f3993a002ec80ca60062b0ca7d0c82701ce3", + "fields": { + "code_commune_insee": "76050", + "nom_de_la_commune": "AVREMESNIL", + "code_postal": "76730", + "coordonnees_gps": [ + 49.8501863679, + 0.932942833236 + ], + "libelle_d_acheminement": "AVREMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.932942833236, + 49.8501863679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45e96672d4e36b06e5187b952020d6d8ba6456d5", + "fields": { + "code_commune_insee": "76051", + "nom_de_la_commune": "BACQUEVILLE EN CAUX", + "code_postal": "76730", + "coordonnees_gps": [ + 49.7964859103, + 1.0104212782 + ], + "libelle_d_acheminement": "BACQUEVILLE EN CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0104212782, + 49.7964859103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "573045597af03667773ee774a15cda98a4112075", + "fields": { + "code_commune_insee": "76064", + "nom_de_la_commune": "BEAUREPAIRE", + "code_postal": "76280", + "coordonnees_gps": [ + 49.6578498142, + 0.218162169201 + ], + "libelle_d_acheminement": "BEAUREPAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.218162169201, + 49.6578498142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80dfc4d49bec92174425e05dabbfc047e9facf59", + "fields": { + "code_commune_insee": "76069", + "nom_de_la_commune": "BELBEUF", + "code_postal": "76240", + "coordonnees_gps": [ + 49.3848813848, + 1.13840658151 + ], + "libelle_d_acheminement": "BELBEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13840658151, + 49.3848813848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85c4c93fc3404fec04b4f062b3f42e6209b9f031", + "fields": { + "code_commune_insee": "76077", + "nom_de_la_commune": "BENESVILLE", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7517164964, + 0.828144576549 + ], + "libelle_d_acheminement": "BENESVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.828144576549, + 49.7517164964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54f96d78ee541e0e71bab246c9532f3ec63dc1b3", + "fields": { + "code_commune_insee": "76091", + "nom_de_la_commune": "BEUZEVILLE LA GUERARD", + "code_postal": "76450", + "coordonnees_gps": [ + 49.7099645426, + 0.612884934109 + ], + "libelle_d_acheminement": "BEUZEVILLE LA GUERARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.612884934109, + 49.7099645426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1240b0510ad48ab648315a00e97ea632bc1720e", + "fields": { + "code_commune_insee": "76094", + "nom_de_la_commune": "BIERVILLE", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5360436591, + 1.27429073498 + ], + "libelle_d_acheminement": "BIERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27429073498, + 49.5360436591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "891b2f5f0d1d92a937e63b521b3c3142826768a7", + "fields": { + "nom_de_la_commune": "BIHOREL", + "code_postal": "76420", + "code_commune_insee": "76095", + "libelle_d_acheminement": "BIHOREL" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86668f1ed3251be067f53b07991a2ab2a3b467b3", + "fields": { + "code_commune_insee": "76101", + "nom_de_la_commune": "BLANGY SUR BRESLE", + "code_postal": "76340", + "coordonnees_gps": [ + 49.9167725576, + 1.62061411438 + ], + "libelle_d_acheminement": "BLANGY SUR BRESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62061411438, + 49.9167725576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f2969ff99cabaf3967e16f85170f7eb6893e532", + "fields": { + "code_commune_insee": "76103", + "nom_de_la_commune": "BONSECOURS", + "code_postal": "76240", + "coordonnees_gps": [ + 49.4260269307, + 1.12943386715 + ], + "libelle_d_acheminement": "BONSECOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12943386715, + 49.4260269307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c50deb3f6e4b20f0a8293c0721d0420185353cda", + "fields": { + "code_commune_insee": "76110", + "nom_de_la_commune": "BOIS HIMONT", + "code_postal": "76190", + "coordonnees_gps": [ + 49.5806871028, + 0.691431007204 + ], + "libelle_d_acheminement": "BOIS HIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.691431007204, + 49.5806871028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3fe31b84d65577aff4e360dfdc40313997150af", + "fields": { + "code_commune_insee": "76113", + "nom_de_la_commune": "BOISSAY", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5184469464, + 1.3599768113 + ], + "libelle_d_acheminement": "BOISSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3599768113, + 49.5184469464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33bafe0dd3bf3e0826f2fde50cf415fff4d7e4dd", + "fields": { + "code_commune_insee": "76123", + "nom_de_la_commune": "BOSC GUERARD ST ADRIEN", + "code_postal": "76710", + "coordonnees_gps": [ + 49.5411821523, + 1.12523035635 + ], + "libelle_d_acheminement": "BOSC GUERARD ST ADRIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12523035635, + 49.5411821523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "332410ec5e0f00cc74dd058f77467595c986f52d", + "fields": { + "code_commune_insee": "76131", + "nom_de_la_commune": "LA BOUILLE", + "code_postal": "76530", + "coordonnees_gps": [ + 49.3502404856, + 0.933749684958 + ], + "libelle_d_acheminement": "LA BOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.933749684958, + 49.3502404856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46b0392d1727b567d7699e590faeda71719bb8d6", + "fields": { + "code_commune_insee": "76139", + "nom_de_la_commune": "BRADIANCOURT", + "code_postal": "76680", + "coordonnees_gps": [ + 49.6602057155, + 1.38522083662 + ], + "libelle_d_acheminement": "BRADIANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38522083662, + 49.6602057155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24c72866befcbef92292e2261e953dabd909da6f", + "fields": { + "code_commune_insee": "76143", + "nom_de_la_commune": "BRETTEVILLE DU GRAND CAUX", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6653391098, + 0.385967145097 + ], + "libelle_d_acheminement": "BRETTEVILLE DU GRAND CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.385967145097, + 49.6653391098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb155a6ec8a54437294f890edef649dbec219696", + "fields": { + "code_commune_insee": "76146", + "nom_de_la_commune": "BUCHY", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5894942474, + 1.35094714044 + ], + "libelle_d_acheminement": "BUCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35094714044, + 49.5894942474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb458c8852b40879ecf010dd7dd9cce927d2f7bf", + "fields": { + "code_commune_insee": "76149", + "nom_de_la_commune": "BUTOT", + "code_postal": "76890", + "coordonnees_gps": [ + 49.6132808919, + 1.0198441688 + ], + "libelle_d_acheminement": "BUTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0198441688, + 49.6132808919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4dfdeffbb7fd73a217702902840b8913f7b950d", + "fields": { + "code_commune_insee": "76152", + "nom_de_la_commune": "CAILLY", + "code_postal": "76690", + "coordonnees_gps": [ + 49.5861650281, + 1.22979848856 + ], + "libelle_d_acheminement": "CAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22979848856, + 49.5861650281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df75e6dcd9cf8c6ec8e5e163d839923c3fd6d903", + "fields": { + "code_commune_insee": "76153", + "nom_de_la_commune": "CALLEVILLE LES DEUX EGLISES", + "code_postal": "76890", + "coordonnees_gps": [ + 49.7036168494, + 1.02150696093 + ], + "libelle_d_acheminement": "CALLEVILLE LES DEUX EGLISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02150696093, + 49.7036168494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40754c20c18e6261526e55bf2d42cafec8cc07f9", + "fields": { + "code_commune_insee": "76160", + "nom_de_la_commune": "CARVILLE LA FOLLETIERE", + "code_postal": "76190", + "coordonnees_gps": [ + 49.5564929609, + 0.816709773757 + ], + "libelle_d_acheminement": "CARVILLE LA FOLLETIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.816709773757, + 49.5564929609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1597d42e56947c4f9243427c7ab353bed8dc501", + "fields": { + "code_commune_insee": "76173", + "nom_de_la_commune": "LA CHAUSSEE", + "code_postal": "76590", + "coordonnees_gps": [ + 49.818475141, + 1.11848642712 + ], + "libelle_d_acheminement": "LA CHAUSSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11848642712, + 49.818475141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2407896f0864ab69f126c42897ab03c550fb98e5", + "fields": { + "code_commune_insee": "76176", + "nom_de_la_commune": "CLASVILLE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.7932822426, + 0.620981187192 + ], + "libelle_d_acheminement": "CLASVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.620981187192, + 49.7932822426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0af585e6929a63397cb7bcf802f19e8d3902aa69", + "fields": { + "code_commune_insee": "76177", + "nom_de_la_commune": "CLAVILLE MOTTEVILLE", + "code_postal": "76690", + "coordonnees_gps": [ + 49.5889638723, + 1.18573450148 + ], + "libelle_d_acheminement": "CLAVILLE MOTTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18573450148, + 49.5889638723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "567b1c836ae17e3d8b472ae0df40340c1706139a", + "fields": { + "code_commune_insee": "76182", + "nom_de_la_commune": "CLIPONVILLE", + "code_postal": "76640", + "coordonnees_gps": [ + 49.6734734351, + 0.658116759425 + ], + "libelle_d_acheminement": "CLIPONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.658116759425, + 49.6734734351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c289132145f36311a4ac17dde973318494b89824", + "fields": { + "code_commune_insee": "76183", + "nom_de_la_commune": "COLLEVILLE", + "code_postal": "76400", + "coordonnees_gps": [ + 49.7521780135, + 0.456999133125 + ], + "libelle_d_acheminement": "COLLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.456999133125, + 49.7521780135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7d266284a4a9b2ebc1ddb1aeae328ca84a0d652", + "fields": { + "code_commune_insee": "76190", + "nom_de_la_commune": "CRASVILLE LA ROCQUEFORT", + "code_postal": "76740", + "coordonnees_gps": [ + 49.8041521575, + 0.877451277489 + ], + "libelle_d_acheminement": "CRASVILLE LA ROCQUEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.877451277489, + 49.8041521575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e41fec977e57554cdac0c820d324d22e6945016", + "fields": { + "code_commune_insee": "76200", + "nom_de_la_commune": "CRITOT", + "code_postal": "76680", + "coordonnees_gps": [ + 49.6148645766, + 1.24444787117 + ], + "libelle_d_acheminement": "CRITOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24444787117, + 49.6148645766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2480ef7c42a6eee19ebf5f48561f2f8c6185cead", + "fields": { + "code_commune_insee": "76203", + "nom_de_la_commune": "CROIX MARE", + "code_postal": "76190", + "coordonnees_gps": [ + 49.5978176144, + 0.837058838818 + ], + "libelle_d_acheminement": "CROIX MARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.837058838818, + 49.5978176144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9a8b3334a607be6f69f9cc7272323a801b759b6", + "fields": { + "code_commune_insee": "76208", + "nom_de_la_commune": "CUY ST FIACRE", + "code_postal": "76220", + "coordonnees_gps": [ + 49.5106522893, + 1.69159638174 + ], + "libelle_d_acheminement": "CUY ST FIACRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69159638174, + 49.5106522893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1a7baefbb20731932c3c2b8a06bdbbfbca14595", + "fields": { + "code_commune_insee": "76212", + "nom_de_la_commune": "DARNETAL", + "code_postal": "76160", + "coordonnees_gps": [ + 49.4445058359, + 1.15546994024 + ], + "libelle_d_acheminement": "DARNETAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15546994024, + 49.4445058359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4a05caa6747641a765fbf786e1b908df6140884", + "fields": { + "code_commune_insee": "76216", + "nom_de_la_commune": "DEVILLE LES ROUEN", + "code_postal": "76250", + "coordonnees_gps": [ + 49.4661147987, + 1.0514305734 + ], + "libelle_d_acheminement": "DEVILLE LES ROUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0514305734, + 49.4661147987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3283826f6e273fbe905466ce2eb560a8e2c7612", + "fields": { + "code_commune_insee": "76222", + "nom_de_la_commune": "DUCLAIR", + "code_postal": "76480", + "coordonnees_gps": [ + 49.4889814343, + 0.866671652498 + ], + "libelle_d_acheminement": "DUCLAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.866671652498, + 49.4889814343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85e67a82b07a7179eccf49626187417f96221b0c", + "fields": { + "code_commune_insee": "76228", + "nom_de_la_commune": "ECTOT LES BAONS", + "code_postal": "76970", + "coordonnees_gps": [ + 49.6439867808, + 0.808763505864 + ], + "libelle_d_acheminement": "ECTOT LES BAONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.808763505864, + 49.6439867808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "323d3424971157be51b00dde7a6287c59e13c69a", + "fields": { + "code_commune_insee": "76237", + "nom_de_la_commune": "EPINAY SUR DUCLAIR", + "code_postal": "76480", + "coordonnees_gps": [ + 49.5253630622, + 0.835855173599 + ], + "libelle_d_acheminement": "EPINAY SUR DUCLAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.835855173599, + 49.5253630622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87e8d55f74352d5361a6b2ab8fe4cfd620c8d497", + "fields": { + "code_commune_insee": "76240", + "nom_de_la_commune": "EPREVILLE", + "code_postal": "76400", + "coordonnees_gps": [ + 49.7051644136, + 0.367872929537 + ], + "libelle_d_acheminement": "EPREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.367872929537, + 49.7051644136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df028cdd3730c8cd438ee54ca948875e0df5a92d", + "fields": { + "code_commune_insee": "76243", + "nom_de_la_commune": "ERNEMONT SUR BUCHY", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5412192034, + 1.36035800361 + ], + "libelle_d_acheminement": "ERNEMONT SUR BUCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36035800361, + 49.5412192034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12a6f31a08d88b4adb66863f7e90810918e9fcd9", + "fields": { + "code_commune_insee": "76254", + "nom_de_la_commune": "ETRETAT", + "code_postal": "76790", + "coordonnees_gps": [ + 49.704733151, + 0.205304793744 + ], + "libelle_d_acheminement": "ETRETAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.205304793744, + 49.704733151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3be7d671cdc4ed21b621521db0391a90c0174902", + "fields": { + "ligne_5": "RICARVILLE", + "code_commune_insee": "76258", + "libelle_d_acheminement": "TERRES DE CAUX", + "code_postal": "76640", + "nom_de_la_commune": "TERRES DE CAUX", + "coordonnees_gps": [ + 49.6570851688, + 0.584829133473 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.584829133473, + 49.6570851688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d5c10da9a738369b97fc76c57b859ef1797182a", + "fields": { + "code_commune_insee": "76259", + "nom_de_la_commune": "FECAMP", + "code_postal": "76400", + "coordonnees_gps": [ + 49.7523245306, + 0.395297587433 + ], + "libelle_d_acheminement": "FECAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.395297587433, + 49.7523245306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0be5fb18925373a4959738a85f5b1e57ca6474b", + "fields": { + "code_commune_insee": "76268", + "nom_de_la_commune": "FONGUEUSEMARE", + "code_postal": "76280", + "coordonnees_gps": [ + 49.674874895, + 0.309350071633 + ], + "libelle_d_acheminement": "FONGUEUSEMARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.309350071633, + 49.674874895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e5c673f091ba23b52bcbf3718a86dec838e3038", + "fields": { + "code_commune_insee": "76271", + "nom_de_la_commune": "FONTAINE LE BOURG", + "code_postal": "76690", + "coordonnees_gps": [ + 49.5707934376, + 1.15722862543 + ], + "libelle_d_acheminement": "FONTAINE LE BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15722862543, + 49.5707934376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f96cc40ca1587f1e5783ee7d66bba94f7af4c42d", + "fields": { + "code_commune_insee": "76274", + "nom_de_la_commune": "LA FONTELAYE", + "code_postal": "76890", + "coordonnees_gps": [ + 49.6940551078, + 0.94377185816 + ], + "libelle_d_acheminement": "LA FONTELAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.94377185816, + 49.6940551078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c23e79a8293c829825b2e2347a33f2661e73ccd0", + "fields": { + "code_commune_insee": "76278", + "nom_de_la_commune": "FOUCARMONT", + "code_postal": "76340", + "coordonnees_gps": [ + 49.8482534794, + 1.56380958774 + ], + "libelle_d_acheminement": "FOUCARMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56380958774, + 49.8482534794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eaae291e9aa0a127f7af6548aa9c021a4ce4a2f", + "fields": { + "code_commune_insee": "76280", + "nom_de_la_commune": "FREAUVILLE", + "code_postal": "76660", + "coordonnees_gps": [ + 49.8249551138, + 1.41696913742 + ], + "libelle_d_acheminement": "FREAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41696913742, + 49.8249551138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ef31ae2c2354250d12a6996aabc2a5f1455606f", + "fields": { + "code_commune_insee": "76283", + "nom_de_la_commune": "FRESLES", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7460490098, + 1.3435624982 + ], + "libelle_d_acheminement": "FRESLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3435624982, + 49.7460490098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eca7f818e4a5995a573936a8f5461bfe8dd39f9", + "fields": { + "code_commune_insee": "76285", + "nom_de_la_commune": "FRESNE LE PLAN", + "code_postal": "76520", + "coordonnees_gps": [ + 49.4137813639, + 1.29661509425 + ], + "libelle_d_acheminement": "FRESNE LE PLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29661509425, + 49.4137813639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91ba706c14ddb7549bdbd4d05ca1e2d67ab47bff", + "fields": { + "code_commune_insee": "76286", + "nom_de_la_commune": "FRESNOY FOLNY", + "code_postal": "76660", + "coordonnees_gps": [ + 49.887273332, + 1.43491902452 + ], + "libelle_d_acheminement": "FRESNOY FOLNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43491902452, + 49.887273332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cb3106e5d874b66316375c193ba5ba573b5dd06", + "fields": { + "ligne_5": "LA FOLLETIERE", + "code_commune_insee": "76289", + "libelle_d_acheminement": "ST MARTIN DE L IF", + "code_postal": "76190", + "nom_de_la_commune": "ST MARTIN DE L IF", + "coordonnees_gps": [ + 49.5651631452, + 0.833069408864 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.833069408864, + 49.5651631452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "813b8ad0b4451b80509b9395dae20e808f6f19a1", + "fields": { + "code_commune_insee": "76293", + "nom_de_la_commune": "FULTOT", + "code_postal": "76560", + "coordonnees_gps": [ + 49.758857187, + 0.781793900129 + ], + "libelle_d_acheminement": "FULTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.781793900129, + 49.758857187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c07e9470f676923a167caffc187b95060741bf3d", + "fields": { + "code_commune_insee": "76297", + "nom_de_la_commune": "GANCOURT ST ETIENNE", + "code_postal": "76220", + "coordonnees_gps": [ + 49.5451067998, + 1.71017890285 + ], + "libelle_d_acheminement": "GANCOURT ST ETIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71017890285, + 49.5451067998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73f90b8eab6d2bea0c75b320f1a9f4135f813589", + "fields": { + "code_commune_insee": "76302", + "nom_de_la_commune": "GODERVILLE", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6443271273, + 0.355221850128 + ], + "libelle_d_acheminement": "GODERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.355221850128, + 49.6443271273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a388ae257658c39936a0a2fb62cb82e9dd0fb11", + "fields": { + "code_commune_insee": "76306", + "nom_de_la_commune": "GONNETOT", + "code_postal": "76730", + "coordonnees_gps": [ + 49.7619135567, + 0.896605947173 + ], + "libelle_d_acheminement": "GONNETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.896605947173, + 49.7619135567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45443af6760afff78fd8d62b0ed2aa8c5fac1f0f", + "fields": { + "code_commune_insee": "76308", + "nom_de_la_commune": "GONNEVILLE SUR SCIE", + "code_postal": "76590", + "coordonnees_gps": [ + 49.7569130904, + 1.0867142722 + ], + "libelle_d_acheminement": "GONNEVILLE SUR SCIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0867142722, + 49.7569130904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a32814aa0332810aa9b8972c2ea1b2a4da95b551", + "fields": { + "code_commune_insee": "76309", + "nom_de_la_commune": "GONZEVILLE", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7600318144, + 0.807790454575 + ], + "libelle_d_acheminement": "GONZEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.807790454575, + 49.7600318144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fb6ea3eaea29b2918e153c814c37ed0e5cdfd65", + "fields": { + "code_commune_insee": "76314", + "nom_de_la_commune": "GRAIMBOUVILLE", + "code_postal": "76430", + "coordonnees_gps": [ + 49.5816594783, + 0.333991745798 + ], + "libelle_d_acheminement": "GRAIMBOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.333991745798, + 49.5816594783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebbeb14388ffb0061979fe576637425b1f2a148e", + "fields": { + "code_commune_insee": "76318", + "nom_de_la_commune": "GRAND CAMP", + "code_postal": "76170", + "coordonnees_gps": [ + 49.5516102056, + 0.600579425382 + ], + "libelle_d_acheminement": "GRAND CAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.600579425382, + 49.5516102056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5805b12847cc8fe03ed9faad13fe735eecb2b7a0", + "fields": { + "code_commune_insee": "76319", + "nom_de_la_commune": "GRAND COURONNE", + "code_postal": "76530", + "coordonnees_gps": [ + 49.3483816966, + 1.00477486737 + ], + "libelle_d_acheminement": "GRAND COURONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00477486737, + 49.3483816966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbab062064c7d4ed76186e7b3e953517796b088d", + "fields": { + "code_commune_insee": "76329", + "nom_de_la_commune": "GRUCHET LE VALASSE", + "code_postal": "76210", + "coordonnees_gps": [ + 49.5497174771, + 0.513926540518 + ], + "libelle_d_acheminement": "GRUCHET LE VALASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.513926540518, + 49.5497174771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43452663a41eba23caca54f4ec759a287ab2b537", + "fields": { + "code_commune_insee": "76336", + "nom_de_la_commune": "GUEUTTEVILLE LES GRES", + "code_postal": "76460", + "coordonnees_gps": [ + 49.8388715423, + 0.764828836575 + ], + "libelle_d_acheminement": "GUEUTTEVILLE LES GRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.764828836575, + 49.8388715423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "654a53329c1dbc733222a036ad1851804dbc89c9", + "fields": { + "code_commune_insee": "76340", + "nom_de_la_commune": "HARCANVILLE", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7083689762, + 0.7685061515 + ], + "libelle_d_acheminement": "HARCANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7685061515, + 49.7083689762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70a223a6475b2ba716e0a9cb2882d1474ca5db3b", + "fields": { + "code_commune_insee": "76341", + "nom_de_la_commune": "HARFLEUR", + "code_postal": "76700", + "coordonnees_gps": [ + 49.5138279275, + 0.197050317901 + ], + "libelle_d_acheminement": "HARFLEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.197050317901, + 49.5138279275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "503d577c1212bb5a4c2bc63d2148c0cf00e8de16", + "fields": { + "code_commune_insee": "76342", + "nom_de_la_commune": "HATTENVILLE", + "code_postal": "76640", + "coordonnees_gps": [ + 49.6542985352, + 0.539027769372 + ], + "libelle_d_acheminement": "HATTENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.539027769372, + 49.6542985352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e33dc5a9156626a4b58540be9ef138602add153", + "fields": { + "code_commune_insee": "76350", + "nom_de_la_commune": "HAUTOT SUR SEINE", + "code_postal": "76113", + "coordonnees_gps": [ + 49.3628946532, + 0.977680878823 + ], + "libelle_d_acheminement": "HAUTOT SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.977680878823, + 49.3628946532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "490814776f072619016311c6fa7c3e394f5f823b", + "fields": { + "code_commune_insee": "76364", + "nom_de_la_commune": "HODENG HODENGER", + "code_postal": "76780", + "coordonnees_gps": [ + 49.5365103437, + 1.58849427798 + ], + "libelle_d_acheminement": "HODENG HODENGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58849427798, + 49.5365103437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bfbb9901c49a24610b660739471b5fce65507f9", + "fields": { + "code_commune_insee": "76365", + "nom_de_la_commune": "HOUDETOT", + "code_postal": "76740", + "coordonnees_gps": [ + 49.8169400407, + 0.806245052937 + ], + "libelle_d_acheminement": "HOUDETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.806245052937, + 49.8169400407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "539a6dedf83b9d9bb688becfd7619a8f75a7116b", + "fields": { + "code_commune_insee": "76367", + "nom_de_la_commune": "HOUPPEVILLE", + "code_postal": "76770", + "coordonnees_gps": [ + 49.5041147644, + 1.08923677261 + ], + "libelle_d_acheminement": "HOUPPEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08923677261, + 49.5041147644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e22ad44c6d96176f760b5a691e036f3c97885053", + "fields": { + "code_commune_insee": "76375", + "nom_de_la_commune": "INGOUVILLE", + "code_postal": "76460", + "coordonnees_gps": [ + 49.8445024233, + 0.681514584492 + ], + "libelle_d_acheminement": "INGOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.681514584492, + 49.8445024233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18cf24423c6c94cfaec407f3704b300dfd4c5685", + "fields": { + "code_commune_insee": "76381", + "nom_de_la_commune": "LANDES VIEILLES ET NEUVES", + "code_postal": "76390", + "coordonnees_gps": [ + 49.786578533, + 1.6323805287 + ], + "libelle_d_acheminement": "LANDES VIEILLES ET NEUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6323805287, + 49.786578533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6921d7f00359640e441a1d5eceffcc8e68c2aee6", + "fields": { + "code_commune_insee": "76387", + "nom_de_la_commune": "LINDEBEUF", + "code_postal": "76760", + "coordonnees_gps": [ + 49.7098655097, + 0.907175798563 + ], + "libelle_d_acheminement": "LINDEBEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.907175798563, + 49.7098655097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c435c84c203c24aa11268485d81c0a5254856c74", + "fields": { + "code_commune_insee": "76388", + "nom_de_la_commune": "LINTOT", + "code_postal": "76210", + "coordonnees_gps": [ + 49.5593733793, + 0.567071303383 + ], + "libelle_d_acheminement": "LINTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.567071303383, + 49.5593733793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccce1a07065b4c27c9579aaf07282b621f2053a9", + "fields": { + "code_commune_insee": "76395", + "nom_de_la_commune": "LONGUEIL", + "code_postal": "76860", + "coordonnees_gps": [ + 49.8832005078, + 0.947742535975 + ], + "libelle_d_acheminement": "LONGUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.947742535975, + 49.8832005078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07d158109904788def7ada76c4a353d2c6f7fbb7", + "fields": { + "code_commune_insee": "76396", + "nom_de_la_commune": "LONGUERUE", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5473482458, + 1.28948826612 + ], + "libelle_d_acheminement": "LONGUERUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28948826612, + 49.5473482458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d28959f57051433eaa7c10fa8f19b3ba7633f51", + "fields": { + "ligne_5": "LA MAILLERAYE SUR SEINE", + "code_commune_insee": "76401", + "libelle_d_acheminement": "ARELAUNE EN SEINE", + "code_postal": "76940", + "nom_de_la_commune": "ARELAUNE EN SEINE", + "coordonnees_gps": [ + 49.4463462348, + 0.753460847099 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.753460847099, + 49.4463462348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d591993540e89d25d8702825be8b7e86b6ff8d3", + "fields": { + "code_commune_insee": "76419", + "nom_de_la_commune": "MAUNY", + "code_postal": "76530", + "coordonnees_gps": [ + 49.3964593103, + 0.902531176422 + ], + "libelle_d_acheminement": "MAUNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.902531176422, + 49.3964593103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96d59f93f2d5cb8860372792b4306ddb7519e475", + "fields": { + "code_commune_insee": "76423", + "nom_de_la_commune": "MENERVAL", + "code_postal": "76220", + "coordonnees_gps": [ + 49.5596263854, + 1.64743128876 + ], + "libelle_d_acheminement": "MENERVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64743128876, + 49.5596263854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a060d246f505a3b38a732436221428f3ac4fa024", + "fields": { + "code_commune_insee": "76431", + "nom_de_la_commune": "LE MESNIL LIEUBRAY", + "code_postal": "76780", + "coordonnees_gps": [ + 49.5155150214, + 1.50750794414 + ], + "libelle_d_acheminement": "LE MESNIL LIEUBRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50750794414, + 49.5155150214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec043f7720b373aba7025711a98db4a2d631929c", + "fields": { + "code_commune_insee": "76433", + "nom_de_la_commune": "MESNIL PANNEVILLE", + "code_postal": "76570", + "coordonnees_gps": [ + 49.5885832407, + 0.882653568735 + ], + "libelle_d_acheminement": "MESNIL PANNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.882653568735, + 49.5885832407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ec6d3f52c5582e7c8b0f7f3b950c2115a348392", + "fields": { + "code_commune_insee": "76436", + "nom_de_la_commune": "LE MESNIL SOUS JUMIEGES", + "code_postal": "76480", + "coordonnees_gps": [ + 49.414321158, + 0.855001409991 + ], + "libelle_d_acheminement": "LE MESNIL SOUS JUMIEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.855001409991, + 49.414321158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd7cd1c167be350d9b34fcc4c0461b854397566f", + "fields": { + "code_commune_insee": "76440", + "nom_de_la_commune": "MOLAGNIES", + "code_postal": "76220", + "coordonnees_gps": [ + 49.522352135, + 1.72459213347 + ], + "libelle_d_acheminement": "MOLAGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72459213347, + 49.522352135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6e467a6722111cc5bac3ec4328161c122ee5516", + "fields": { + "code_commune_insee": "76443", + "nom_de_la_commune": "MONT CAUVAIRE", + "code_postal": "76690", + "coordonnees_gps": [ + 49.5711050563, + 1.11398307831 + ], + "libelle_d_acheminement": "MONT CAUVAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11398307831, + 49.5711050563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f36e0345f7dd3dba7e94fbf37fa4a4ab8d0fc9a1", + "fields": { + "code_commune_insee": "76445", + "nom_de_la_commune": "MONTEROLIER", + "code_postal": "76680", + "coordonnees_gps": [ + 49.6223619301, + 1.34614816017 + ], + "libelle_d_acheminement": "MONTEROLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34614816017, + 49.6223619301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67552556b027a99659d40b19f1719d034a743a76", + "fields": { + "code_commune_insee": "76465", + "nom_de_la_commune": "NEUVILLE FERRIERES", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7113993186, + 1.45364357181 + ], + "libelle_d_acheminement": "NEUVILLE FERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45364357181, + 49.7113993186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80e3d46e85c6df86e0cd7be5a6ddd2e3431d1ae2", + "fields": { + "code_commune_insee": "76468", + "nom_de_la_commune": "NOINTOT", + "code_postal": "76210", + "coordonnees_gps": [ + 49.5978442384, + 0.472716239885 + ], + "libelle_d_acheminement": "NOINTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.472716239885, + 49.5978442384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b29036b4b3ea60bb8f391bbea5f8b35dc2fbab17", + "fields": { + "code_commune_insee": "76473", + "nom_de_la_commune": "NOTRE DAME DE BLIQUETUIT", + "code_postal": "76940", + "coordonnees_gps": [ + 49.4959539726, + 0.753080811666 + ], + "libelle_d_acheminement": "NOTRE DAME DE BLIQUETUIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.753080811666, + 49.4959539726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36b932933cc5d3689e28c2900de5452bd8d7b63a", + "fields": { + "code_commune_insee": "76474", + "nom_de_la_commune": "NOTRE DAME DE BONDEVILLE", + "code_postal": "76960", + "coordonnees_gps": [ + 49.4876258547, + 1.05409073617 + ], + "libelle_d_acheminement": "NOTRE DAME DE BONDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05409073617, + 49.4876258547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b0b9660d8776c58edff377651e169f0b1013ee4", + "fields": { + "code_commune_insee": "76484", + "nom_de_la_commune": "OISSEL", + "code_postal": "76350", + "coordonnees_gps": [ + 49.3477840873, + 1.07400763141 + ], + "libelle_d_acheminement": "OISSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07400763141, + 49.3477840873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5e111e84e94a31610c1cf11621491b8c1340f78", + "fields": { + "code_commune_insee": "76502", + "nom_de_la_commune": "PIERREVAL", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5403359016, + 1.2537667625 + ], + "libelle_d_acheminement": "PIERREVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2537667625, + 49.5403359016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b545b4df827487571fb8d5659bafb240df7829c", + "fields": { + "code_commune_insee": "76514", + "nom_de_la_commune": "QUEVREVILLE LA POTERIE", + "code_postal": "76520", + "coordonnees_gps": [ + 49.3544551622, + 1.18963435666 + ], + "libelle_d_acheminement": "QUEVREVILLE LA POTERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18963435666, + 49.3544551622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c96c344139279bce025c2d9136ceba49adbb2969", + "fields": { + "code_commune_insee": "76515", + "nom_de_la_commune": "QUIBERVILLE", + "code_postal": "76860", + "coordonnees_gps": [ + 49.8974337377, + 0.919878729271 + ], + "libelle_d_acheminement": "QUIBERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.919878729271, + 49.8974337377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3737a0b7568e7fa8b6a0f7b0e3c53d306c56cdbc", + "fields": { + "code_commune_insee": "76520", + "nom_de_la_commune": "REALCAMP", + "code_postal": "76340", + "coordonnees_gps": [ + 49.8604223248, + 1.62066205643 + ], + "libelle_d_acheminement": "REALCAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62066205643, + 49.8604223248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f72cd516cf263a8a8285edf6ab1228c9b74438f2", + "fields": { + "code_commune_insee": "76522", + "nom_de_la_commune": "LA REMUEE", + "code_postal": "76430", + "coordonnees_gps": [ + 49.5259669302, + 0.409930940139 + ], + "libelle_d_acheminement": "LA REMUEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.409930940139, + 49.5259669302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac85a2ed80b419e63f9fd343a6ca366e8f6e39c7", + "fields": { + "code_commune_insee": "76523", + "nom_de_la_commune": "RETONVAL", + "code_postal": "76340", + "coordonnees_gps": [ + 49.8123722016, + 1.59427014376 + ], + "libelle_d_acheminement": "RETONVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59427014376, + 49.8123722016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a7b8f1e58b6d78e8403fc177adafa4ded43ab9f", + "fields": { + "code_commune_insee": "76534", + "nom_de_la_commune": "ROLLEVILLE", + "code_postal": "76133", + "coordonnees_gps": [ + 49.5787455388, + 0.211169186328 + ], + "libelle_d_acheminement": "ROLLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.211169186328, + 49.5787455388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c9c9f0d8f279fa0637615d6b510e28dc8f91229", + "fields": { + "code_commune_insee": "76540", + "nom_de_la_commune": "ROUEN", + "code_postal": "76000", + "coordonnees_gps": [ + 49.4413460103, + 1.09256784278 + ], + "libelle_d_acheminement": "ROUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09256784278, + 49.4413460103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66f5a3a9a06b09e606e6505a3838d02c3056bea3", + "fields": { + "code_commune_insee": "76541", + "nom_de_la_commune": "ROUMARE", + "code_postal": "76480", + "coordonnees_gps": [ + 49.507884098, + 0.968583908754 + ], + "libelle_d_acheminement": "ROUMARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.968583908754, + 49.507884098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa717e5c2ba492aa9e0a08442501a6feb22bc48e", + "fields": { + "code_commune_insee": "76548", + "nom_de_la_commune": "RY", + "code_postal": "76116", + "coordonnees_gps": [ + 49.4733163015, + 1.33609831586 + ], + "libelle_d_acheminement": "RY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33609831586, + 49.4733163015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdec1e9c683d2968ea7a060ddf529c7e481f6cf9", + "fields": { + "code_commune_insee": "76554", + "nom_de_la_commune": "ST AIGNAN SUR RY", + "code_postal": "76116", + "coordonnees_gps": [ + 49.4965544546, + 1.34755871373 + ], + "libelle_d_acheminement": "ST AIGNAN SUR RY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34755871373, + 49.4965544546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "300adad494a9508422ccc9648f98600a97652f9a", + "fields": { + "code_commune_insee": "76570", + "nom_de_la_commune": "ST CRESPIN", + "code_postal": "76590", + "coordonnees_gps": [ + 49.7741307345, + 1.11128726278 + ], + "libelle_d_acheminement": "ST CRESPIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11128726278, + 49.7741307345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdcf28cec79d8e96296d1df099216dc50dcd473d", + "fields": { + "code_commune_insee": "76571", + "nom_de_la_commune": "STE CROIX SUR BUCHY", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5629394597, + 1.34092504963 + ], + "libelle_d_acheminement": "STE CROIX SUR BUCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34092504963, + 49.5629394597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40c0383af1dfa652ee3d6d8472c67bb89493d1f3", + "fields": { + "code_commune_insee": "76572", + "nom_de_la_commune": "ST DENIS D ACLON", + "code_postal": "76860", + "coordonnees_gps": [ + 49.8632761964, + 0.943153726353 + ], + "libelle_d_acheminement": "ST DENIS D ACLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.943153726353, + 49.8632761964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e030a5304a277ba1554c2b55b0eae6542c7f4362", + "fields": { + "code_commune_insee": "76574", + "nom_de_la_commune": "ST DENIS SUR SCIE", + "code_postal": "76890", + "coordonnees_gps": [ + 49.7031340848, + 1.08565728763 + ], + "libelle_d_acheminement": "ST DENIS SUR SCIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08565728763, + 49.7031340848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b413499efe8937dd1aab7a5bc20d8c7af286c0fc", + "fields": { + "code_commune_insee": "76580", + "nom_de_la_commune": "ST GEORGES SUR FONTAINE", + "code_postal": "76690", + "coordonnees_gps": [ + 49.5471041519, + 1.17538219534 + ], + "libelle_d_acheminement": "ST GEORGES SUR FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17538219534, + 49.5471041519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35453bcec1994f3495ca7bdf73d1007abaf74bf9", + "fields": { + "code_commune_insee": "76599", + "nom_de_la_commune": "ST LEGER DU BOURG DENIS", + "code_postal": "76160", + "coordonnees_gps": [ + 49.4299525675, + 1.16347791437 + ], + "libelle_d_acheminement": "ST LEGER DU BOURG DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16347791437, + 49.4299525675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa27adac62843576efa5a3409f3e604d64fe2d68", + "fields": { + "code_commune_insee": "76604", + "nom_de_la_commune": "ST MARDS", + "code_postal": "76730", + "coordonnees_gps": [ + 49.7605945476, + 1.01478157397 + ], + "libelle_d_acheminement": "ST MARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01478157397, + 49.7605945476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71c14da2610cee74f56f4f71e4e475724bdc2842", + "fields": { + "code_commune_insee": "76610", + "nom_de_la_commune": "STE MARIE DES CHAMPS", + "code_postal": "76190", + "coordonnees_gps": [ + 49.6259386708, + 0.781814222098 + ], + "libelle_d_acheminement": "STE MARIE DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.781814222098, + 49.6259386708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e0068aa681f1517ddd8815d607026773c77112e", + "fields": { + "code_commune_insee": "76611", + "nom_de_la_commune": "ST MARTIN AUX ARBRES", + "code_postal": "76760", + "coordonnees_gps": [ + 49.6507295015, + 0.890163763501 + ], + "libelle_d_acheminement": "ST MARTIN AUX ARBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.890163763501, + 49.6507295015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d020cd724983944b532fdc4985c7564cbbee96cf", + "fields": { + "code_commune_insee": "76614", + "nom_de_la_commune": "ST MARTIN DE BOSCHERVILLE", + "code_postal": "76840", + "coordonnees_gps": [ + 49.4445921802, + 0.962799831004 + ], + "libelle_d_acheminement": "ST MARTIN DE BOSCHERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.962799831004, + 49.4445921802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8474973694d1ff829e0a4e38a6289a9e773e9952", + "fields": { + "ligne_5": "BERNEVAL LE GRAND", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76370", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4f4735c801c73b34cec462df53279a285bf9606", + "fields": { + "ligne_5": "ST MARTIN EN CAMPAGNE", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76370", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47dba8c54810b5b9df2652e513b508611488f8df", + "fields": { + "ligne_5": "ASSIGNY", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76630", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7f8e963552968bbd1e07d2f806dc5201a1517ac", + "fields": { + "ligne_5": "GUILMECOURT", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76630", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41400488635e9c72c9d9e79b32e1c5d65c65b473", + "fields": { + "ligne_5": "TOCQUEVILLE SUR EU", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76910", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3283b8c7a2b882d94b6fb1de87112e1f638336c8", + "fields": { + "code_commune_insee": "76620", + "nom_de_la_commune": "ST MARTIN L HORTIER", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7458247482, + 1.40341149871 + ], + "libelle_d_acheminement": "ST MARTIN L HORTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40341149871, + 49.7458247482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbff079af5e1c7e1b86113ba7407672e1a501645", + "fields": { + "code_commune_insee": "76623", + "nom_de_la_commune": "ST MICHEL D HALESCOURT", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6092134017, + 1.65667640584 + ], + "libelle_d_acheminement": "ST MICHEL D HALESCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65667640584, + 49.6092134017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f55394bc4109b2fea51462ff4ede2d3a4909c1eb", + "fields": { + "code_commune_insee": "76624", + "nom_de_la_commune": "ST NICOLAS D ALIERMONT", + "code_postal": "76510", + "coordonnees_gps": [ + 49.874204912, + 1.23753225509 + ], + "libelle_d_acheminement": "ST NICOLAS D ALIERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23753225509, + 49.874204912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "010b6db71224bafd47df58d7390805a2ea78f27d", + "fields": { + "code_commune_insee": "76629", + "nom_de_la_commune": "ST OUEN LE MAUGER", + "code_postal": "76730", + "coordonnees_gps": [ + 49.7600761839, + 0.959021389482 + ], + "libelle_d_acheminement": "ST OUEN LE MAUGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.959021389482, + 49.7600761839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3973f711418ccddf0032497a573b087fb6c44340", + "fields": { + "code_commune_insee": "76631", + "nom_de_la_commune": "ST PAER", + "code_postal": "76480", + "coordonnees_gps": [ + 49.5236063691, + 0.882805542616 + ], + "libelle_d_acheminement": "ST PAER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.882805542616, + 49.5236063691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfa6259d38b45306d30994d655a46cb2918a0664", + "fields": { + "code_commune_insee": "76634", + "nom_de_la_commune": "ST PIERRE DE MANNEVILLE", + "code_postal": "76113", + "coordonnees_gps": [ + 49.3925053636, + 0.941378967074 + ], + "libelle_d_acheminement": "ST PIERRE DE MANNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.941378967074, + 49.3925053636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faa186e46ea10133bda6d047a905875c90724a55", + "fields": { + "code_commune_insee": "76635", + "nom_de_la_commune": "ST PIERRE DES JONQUIERES", + "code_postal": "76660", + "coordonnees_gps": [ + 49.8485799003, + 1.45100007489 + ], + "libelle_d_acheminement": "ST PIERRE DES JONQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45100007489, + 49.8485799003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6f98ed14d7acf48cb7076d9c384d65e050963e0", + "fields": { + "code_commune_insee": "76640", + "nom_de_la_commune": "ST PIERRE LES ELBEUF", + "code_postal": "76320", + "coordonnees_gps": [ + 49.2778967618, + 1.04793816865 + ], + "libelle_d_acheminement": "ST PIERRE LES ELBEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04793816865, + 49.2778967618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "106c2327cf7ebc789c017564af1b04ea072e8c33", + "fields": { + "code_commune_insee": "76652", + "nom_de_la_commune": "ST VAAST D EQUIQUEVILLE", + "code_postal": "76510", + "coordonnees_gps": [ + 49.8151815963, + 1.26095923266 + ], + "libelle_d_acheminement": "ST VAAST D EQUIQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26095923266, + 49.8151815963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6e9e7f15b4b02ac06fe65284e9cba80030cbd5b", + "fields": { + "code_commune_insee": "76654", + "nom_de_la_commune": "ST VAAST DU VAL", + "code_postal": "76890", + "coordonnees_gps": [ + 49.6860662177, + 1.00949278238 + ], + "libelle_d_acheminement": "ST VAAST DU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00949278238, + 49.6860662177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c535b74ddfb8f205502b131c923e7d845814ebb0", + "fields": { + "code_commune_insee": "76656", + "nom_de_la_commune": "ST VICTOR L ABBAYE", + "code_postal": "76890", + "coordonnees_gps": [ + 49.664925198, + 1.1242184406 + ], + "libelle_d_acheminement": "ST VICTOR L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1242184406, + 49.664925198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36ff2465b67732915fd5e11ee1957923e6cefec4", + "fields": { + "code_commune_insee": "76670", + "nom_de_la_commune": "SENNEVILLE SUR FECAMP", + "code_postal": "76400", + "coordonnees_gps": [ + 49.7721134849, + 0.41525001597 + ], + "libelle_d_acheminement": "SENNEVILLE SUR FECAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41525001597, + 49.7721134849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75852bc80e4a294fd4e14b333bf1d6c589f66cc1", + "fields": { + "code_commune_insee": "76672", + "nom_de_la_commune": "SERQUEUX", + "code_postal": "76440", + "coordonnees_gps": [ + 49.627931643, + 1.54524472331 + ], + "libelle_d_acheminement": "SERQUEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54524472331, + 49.627931643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40bc26436383e329ae9925fa85fc2608ccb48b2f", + "fields": { + "code_commune_insee": "76673", + "nom_de_la_commune": "SERVAVILLE SALMONVILLE", + "code_postal": "76116", + "coordonnees_gps": [ + 49.4774090441, + 1.27092811678 + ], + "libelle_d_acheminement": "SERVAVILLE SALMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27092811678, + 49.4774090441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a571a115549a238cd9ade22d81e67465714879e", + "fields": { + "code_commune_insee": "76678", + "nom_de_la_commune": "SOMMERY", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6386546895, + 1.4466058642 + ], + "libelle_d_acheminement": "SOMMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4466058642, + 49.6386546895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6270ae9f138f2db48ff7327dba44f464ca71f85", + "fields": { + "code_commune_insee": "76685", + "nom_de_la_commune": "THEROULDEVILLE", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7564638049, + 0.523235594162 + ], + "libelle_d_acheminement": "THEROULDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.523235594162, + 49.7564638049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba03d3f1e5d5b24f13f1e949e7488ceeb665a1e8", + "fields": { + "code_commune_insee": "76691", + "nom_de_la_commune": "LE THIL RIBERPRE", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6378126411, + 1.57999987138 + ], + "libelle_d_acheminement": "LE THIL RIBERPRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57999987138, + 49.6378126411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba66b4844e585663c4bfa7b7f5e222203e970e1b", + "fields": { + "code_commune_insee": "76694", + "nom_de_la_commune": "TOCQUEVILLE EN CAUX", + "code_postal": "76730", + "coordonnees_gps": [ + 49.7833597392, + 0.909677051286 + ], + "libelle_d_acheminement": "TOCQUEVILLE EN CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.909677051286, + 49.7833597392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b515ffafd9ae622cb08c9a4b8cac5bd5d6b961e", + "fields": { + "code_commune_insee": "76702", + "nom_de_la_commune": "TOUFFREVILLE LA CORBELINE", + "code_postal": "76190", + "coordonnees_gps": [ + 49.5845925049, + 0.764046318102 + ], + "libelle_d_acheminement": "TOUFFREVILLE LA CORBELINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.764046318102, + 49.5845925049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a11c6c366def9d69416c29336d88993b9ff6931b", + "fields": { + "code_commune_insee": "76716", + "nom_de_la_commune": "TURRETOT", + "code_postal": "76280", + "coordonnees_gps": [ + 49.6100649782, + 0.240595892185 + ], + "libelle_d_acheminement": "TURRETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.240595892185, + 49.6100649782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b28552c2569652d9f84067708be243984923ea4d", + "fields": { + "code_commune_insee": "76724", + "nom_de_la_commune": "VATIERVILLE", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7878030186, + 1.51841416883 + ], + "libelle_d_acheminement": "VATIERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51841416883, + 49.7878030186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "437ce625a8de44effcd4580ebd0ec05e1d9658a0", + "fields": { + "code_commune_insee": "76727", + "nom_de_la_commune": "VATTEVILLE LA RUE", + "code_postal": "76940", + "coordonnees_gps": [ + 49.4536083557, + 0.684145070402 + ], + "libelle_d_acheminement": "VATTEVILLE LA RUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.684145070402, + 49.4536083557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9752f912b8628eb955b937ee205c6b6c840468b9", + "fields": { + "code_commune_insee": "76731", + "nom_de_la_commune": "VENESTANVILLE", + "code_postal": "76730", + "coordonnees_gps": [ + 49.793944609, + 0.898683720517 + ], + "libelle_d_acheminement": "VENESTANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.898683720517, + 49.793944609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cd0bb53b49514f018fcc09fb995f3e64f9725e0", + "fields": { + "code_commune_insee": "76732", + "nom_de_la_commune": "BUTOT VENESVILLE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.8159183889, + 0.58596239014 + ], + "libelle_d_acheminement": "BUTOT VENESVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58596239014, + 49.8159183889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05415169bd739b85b5a9efbae3ffd0a4a26af478", + "fields": { + "ligne_5": "BUTOT EN CAUX", + "code_commune_insee": "76732", + "libelle_d_acheminement": "BUTOT VENESVILLE", + "code_postal": "76450", + "nom_de_la_commune": "BUTOT VENESVILLE", + "coordonnees_gps": [ + 49.8159183889, + 0.58596239014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58596239014, + 49.8159183889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d28ea328eb71b2045222ec6e512745d2b87f18b7", + "fields": { + "code_commune_insee": "76735", + "nom_de_la_commune": "VEULES LES ROSES", + "code_postal": "76980", + "coordonnees_gps": [ + 49.8667629374, + 0.78608035194 + ], + "libelle_d_acheminement": "VEULES LES ROSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78608035194, + 49.8667629374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86304538e64395ea704b8074f0d7fd7a3db572c3", + "fields": { + "code_commune_insee": "76741", + "nom_de_la_commune": "VILLAINVILLE", + "code_postal": "76280", + "coordonnees_gps": [ + 49.6596668934, + 0.239594399689 + ], + "libelle_d_acheminement": "VILLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.239594399689, + 49.6596668934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe8617e766cab2de0d52d111845af18f0a49ea34", + "fields": { + "code_commune_insee": "76747", + "nom_de_la_commune": "VIRVILLE", + "code_postal": "76110", + "coordonnees_gps": [ + 49.5920777641, + 0.356256177723 + ], + "libelle_d_acheminement": "VIRVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.356256177723, + 49.5920777641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84c0c996fa14e36f35a1d1bebca832f281c8a20e", + "fields": { + "code_commune_insee": "76750", + "nom_de_la_commune": "YAINVILLE", + "code_postal": "76480", + "coordonnees_gps": [ + 49.4569629192, + 0.827427548467 + ], + "libelle_d_acheminement": "YAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.827427548467, + 49.4569629192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63a648c5f54474bac80d1ffd44672ca80332e32d", + "fields": { + "code_commune_insee": "76753", + "nom_de_la_commune": "YMARE", + "code_postal": "76520", + "coordonnees_gps": [ + 49.3472419057, + 1.16708645894 + ], + "libelle_d_acheminement": "YMARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16708645894, + 49.3472419057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4860b91f6fb970cf32af412203ab21f8e331dccb", + "fields": { + "code_commune_insee": "76754", + "nom_de_la_commune": "YPORT", + "code_postal": "76111", + "coordonnees_gps": [ + 49.7346149721, + 0.314361829499 + ], + "libelle_d_acheminement": "YPORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.314361829499, + 49.7346149721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05aedd5c98fedead47bf59edd29999324c3e29c9", + "fields": { + "code_commune_insee": "76758", + "nom_de_la_commune": "YVETOT", + "code_postal": "76190", + "coordonnees_gps": [ + 49.6175135557, + 0.761699633531 + ], + "libelle_d_acheminement": "YVETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.761699633531, + 49.6175135557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6c31901021a02bc8c4fb47e3fd752e20055493f", + "fields": { + "code_commune_insee": "77007", + "nom_de_la_commune": "ARGENTIERES", + "code_postal": "77390", + "coordonnees_gps": [ + 48.6520584665, + 2.87089488924 + ], + "libelle_d_acheminement": "ARGENTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87089488924, + 48.6520584665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35e9a2c5289a58ce9255f5f9e80e5fd247020852", + "fields": { + "code_commune_insee": "77011", + "nom_de_la_commune": "AUFFERVILLE", + "code_postal": "77570", + "coordonnees_gps": [ + 48.2049342797, + 2.60096783271 + ], + "libelle_d_acheminement": "AUFFERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60096783271, + 48.2049342797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10e5e20d3999165c4979b36850ed09b9cbd7581a", + "fields": { + "code_commune_insee": "77016", + "nom_de_la_commune": "BAGNEAUX SUR LOING", + "code_postal": "77167", + "coordonnees_gps": [ + 48.2233131664, + 2.70750970158 + ], + "libelle_d_acheminement": "BAGNEAUX SUR LOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70750970158, + 48.2233131664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03b30311607e156ed9262f4a837a2bb4181d02cd", + "fields": { + "code_commune_insee": "77020", + "nom_de_la_commune": "BANNOST VILLEGAGNON", + "code_postal": "77970", + "coordonnees_gps": [ + 48.6753809899, + 3.19190655288 + ], + "libelle_d_acheminement": "BANNOST VILLEGAGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19190655288, + 48.6753809899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5598ac2bc6c7cf547e5c704cd212d8bc0e58bd8", + "fields": { + "code_commune_insee": "77021", + "nom_de_la_commune": "BARBEY", + "code_postal": "77130", + "coordonnees_gps": [ + 48.3660335449, + 3.05001183138 + ], + "libelle_d_acheminement": "BARBEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05001183138, + 48.3660335449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "974fee9c9c2ba7f026b2475132470371b7fb73f5", + "fields": { + "code_commune_insee": "77023", + "nom_de_la_commune": "BARCY", + "code_postal": "77910", + "coordonnees_gps": [ + 49.0168774828, + 2.87655979952 + ], + "libelle_d_acheminement": "BARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87655979952, + 49.0168774828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9086a78b57224ad879516831564809df0eb6afc4", + "fields": { + "ligne_5": "ST MARTIN CHENNETRON", + "code_commune_insee": "77026", + "libelle_d_acheminement": "BEAUCHERY ST MARTIN", + "code_postal": "77560", + "nom_de_la_commune": "BEAUCHERY ST MARTIN", + "coordonnees_gps": [ + 48.6022245541, + 3.42081185296 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42081185296, + 48.6022245541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a574a91d40d64a06922864de99f20b1cbcc7479", + "fields": { + "code_commune_insee": "77030", + "nom_de_la_commune": "BELLOT", + "code_postal": "77510", + "coordonnees_gps": [ + 48.8416858718, + 3.3240177722 + ], + "libelle_d_acheminement": "BELLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3240177722, + 48.8416858718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55cb6e83be43fa093f7f3e162610d12a124baad3", + "fields": { + "code_commune_insee": "77045", + "nom_de_la_commune": "BOUGLIGNY", + "code_postal": "77570", + "coordonnees_gps": [ + 48.1990049427, + 2.66712074887 + ], + "libelle_d_acheminement": "BOUGLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66712074887, + 48.1990049427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f689039bb378464ffe4d1a3754588a6ec6b8beb", + "fields": { + "code_commune_insee": "77067", + "nom_de_la_commune": "CESSON", + "code_postal": "77240", + "coordonnees_gps": [ + 48.5647346588, + 2.59524476663 + ], + "libelle_d_acheminement": "CESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59524476663, + 48.5647346588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53642d6e8787e96c17530534e768528a1f3dfd36", + "fields": { + "code_commune_insee": "77068", + "nom_de_la_commune": "CESSOY EN MONTOIS", + "code_postal": "77520", + "coordonnees_gps": [ + 48.5073073046, + 3.13884419418 + ], + "libelle_d_acheminement": "CESSOY EN MONTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13884419418, + 48.5073073046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1735fa9e8ca373fdabcd9a683b0b544fa98a6634", + "fields": { + "code_commune_insee": "77070", + "nom_de_la_commune": "CHAILLY EN BRIE", + "code_postal": "77120", + "coordonnees_gps": [ + 48.7924119914, + 3.13372765274 + ], + "libelle_d_acheminement": "CHAILLY EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13372765274, + 48.7924119914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3e71a8b5336310d8a6155e1e979fb400ed4b2a8", + "fields": { + "code_commune_insee": "77087", + "nom_de_la_commune": "LA CHAPELLE IGER", + "code_postal": "77540", + "coordonnees_gps": [ + 48.6514529209, + 2.99242283241 + ], + "libelle_d_acheminement": "LA CHAPELLE IGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99242283241, + 48.6514529209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e4481def3a952e8bd424afb951275646696f560", + "fields": { + "ligne_5": "MOUTILS", + "code_commune_insee": "77093", + "libelle_d_acheminement": "LA CHAPELLE MOUTILS", + "code_postal": "77320", + "nom_de_la_commune": "LA CHAPELLE MOUTILS", + "coordonnees_gps": [ + 48.7774367045, + 3.38271618157 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38271618157, + 48.7774367045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbfe79b9a73c4854c990a56623050a67e8e4dc9e", + "fields": { + "code_commune_insee": "77098", + "nom_de_la_commune": "CHATEAUBLEAU", + "code_postal": "77370", + "coordonnees_gps": [ + 48.5830851034, + 3.10857327047 + ], + "libelle_d_acheminement": "CHATEAUBLEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10857327047, + 48.5830851034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15a0f46220258e45a0ff6e5bb853e29c70f76f5e", + "fields": { + "code_commune_insee": "77102", + "nom_de_la_commune": "CHATENOY", + "code_postal": "77167", + "coordonnees_gps": [ + 48.2308781488, + 2.62712492954 + ], + "libelle_d_acheminement": "CHATENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62712492954, + 48.2308781488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cab170dbf06c2885a8695d91b31648c54863855", + "fields": { + "code_commune_insee": "77110", + "nom_de_la_commune": "CHENOU", + "code_postal": "77570", + "coordonnees_gps": [ + 48.1650303616, + 2.65274445287 + ], + "libelle_d_acheminement": "CHENOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65274445287, + 48.1650303616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88df76b96cf5449a93cb88fe36344573fd0ae909", + "fields": { + "code_commune_insee": "77115", + "nom_de_la_commune": "CHEVRY EN SEREINE", + "code_postal": "77710", + "coordonnees_gps": [ + 48.2486077465, + 2.96038387712 + ], + "libelle_d_acheminement": "CHEVRY EN SEREINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96038387712, + 48.2486077465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f2163aeca121b7197e57b1bf4e1b2e512e08fd8", + "fields": { + "code_commune_insee": "77117", + "nom_de_la_commune": "CITRY", + "code_postal": "77730", + "coordonnees_gps": [ + 48.9608892793, + 3.24583955938 + ], + "libelle_d_acheminement": "CITRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24583955938, + 48.9608892793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17fca56eb7c9763df7372170955f8f219a3a3754", + "fields": { + "code_commune_insee": "77133", + "nom_de_la_commune": "COURCELLES EN BASSEE", + "code_postal": "77126", + "coordonnees_gps": [ + 48.4125606521, + 3.05294050556 + ], + "libelle_d_acheminement": "COURCELLES EN BASSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05294050556, + 48.4125606521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f248092649ce9a6b313c6208c6a6f5399509ddc2", + "fields": { + "code_commune_insee": "77135", + "nom_de_la_commune": "COURPALAY", + "code_postal": "77540", + "coordonnees_gps": [ + 48.6431647905, + 2.95363659912 + ], + "libelle_d_acheminement": "COURPALAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95363659912, + 48.6431647905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2d8490624e3021965eeb71ea43e60850bdfc9ae", + "fields": { + "code_commune_insee": "77136", + "nom_de_la_commune": "COURQUETAINE", + "code_postal": "77390", + "coordonnees_gps": [ + 48.6799468611, + 2.74754781347 + ], + "libelle_d_acheminement": "COURQUETAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74754781347, + 48.6799468611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd8020106b024f4fd1894248e4d4464f4877473e", + "fields": { + "code_commune_insee": "77140", + "nom_de_la_commune": "COUTENCON", + "code_postal": "77154", + "coordonnees_gps": [ + 48.4729414867, + 2.9972836252 + ], + "libelle_d_acheminement": "COUTENCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9972836252, + 48.4729414867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "424d7f7edd239d991623152bce098a6c8b03a2b4", + "fields": { + "code_commune_insee": "77141", + "nom_de_la_commune": "COUTEVROULT", + "code_postal": "77580", + "coordonnees_gps": [ + 48.8533091691, + 2.8480997097 + ], + "libelle_d_acheminement": "COUTEVROULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8480997097, + 48.8533091691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1b68826aaca7a15b302716b989bde7d9bd6c851", + "fields": { + "code_commune_insee": "77143", + "nom_de_la_commune": "CREGY LES MEAUX", + "code_postal": "77124", + "coordonnees_gps": [ + 48.9776563538, + 2.87369096046 + ], + "libelle_d_acheminement": "CREGY LES MEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87369096046, + 48.9776563538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa0a6b6e340e595a92537a17fe40352056727f6c", + "fields": { + "code_commune_insee": "77145", + "nom_de_la_commune": "CRISENOY", + "code_postal": "77390", + "coordonnees_gps": [ + 48.6032562685, + 2.74469618837 + ], + "libelle_d_acheminement": "CRISENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74469618837, + 48.6032562685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94787149505864f3ebcfd86d0e0d62b1a27911b9", + "fields": { + "code_commune_insee": "77147", + "nom_de_la_commune": "LA CROIX EN BRIE", + "code_postal": "77370", + "coordonnees_gps": [ + 48.5944942615, + 3.07093990033 + ], + "libelle_d_acheminement": "LA CROIX EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07093990033, + 48.5944942615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f95231d85ddb67394a22080e79e45c558728a2f4", + "fields": { + "code_commune_insee": "77150", + "nom_de_la_commune": "CUISY", + "code_postal": "77165", + "coordonnees_gps": [ + 49.0197878433, + 2.77789349097 + ], + "libelle_d_acheminement": "CUISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77789349097, + 49.0197878433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f68c79e2802c0692669767988e3f208145b6ec0", + "fields": { + "code_commune_insee": "77154", + "nom_de_la_commune": "DAMMARTIN SUR TIGEAUX", + "code_postal": "77163", + "coordonnees_gps": [ + 48.8083782663, + 2.90339672322 + ], + "libelle_d_acheminement": "DAMMARTIN SUR TIGEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90339672322, + 48.8083782663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b51b2fce53d273c4f89a560c69c0e3bdcdb5271f", + "fields": { + "code_commune_insee": "77156", + "nom_de_la_commune": "DARVAULT", + "code_postal": "77140", + "coordonnees_gps": [ + 48.277038883, + 2.72843016047 + ], + "libelle_d_acheminement": "DARVAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72843016047, + 48.277038883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b94a836854bfdc1c361c74006eef2c1d6739acad", + "fields": { + "code_commune_insee": "77167", + "nom_de_la_commune": "EGLIGNY", + "code_postal": "77126", + "coordonnees_gps": [ + 48.4397062203, + 3.12418051446 + ], + "libelle_d_acheminement": "EGLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12418051446, + 48.4397062203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc597d7c1b80ba0618aa2dccf13211c887c099bf", + "fields": { + "code_commune_insee": "77168", + "nom_de_la_commune": "EGREVILLE", + "code_postal": "77620", + "coordonnees_gps": [ + 48.1821285238, + 2.88437118271 + ], + "libelle_d_acheminement": "EGREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88437118271, + 48.1821285238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edcac5c317a2afe3cf0ddee1552ba4920f4a4d8a", + "fields": { + "code_commune_insee": "77172", + "nom_de_la_commune": "ESMANS", + "code_postal": "77940", + "coordonnees_gps": [ + 48.3429519807, + 2.96915653301 + ], + "libelle_d_acheminement": "ESMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96915653301, + 48.3429519807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b7639e6e2b14ab167b6bcff81a42e9a5447d923", + "fields": { + "ligne_5": "GREGY SUR YERRE", + "code_commune_insee": "77175", + "libelle_d_acheminement": "EVRY GREGY SUR YERRE", + "code_postal": "77166", + "nom_de_la_commune": "EVRY GREGY SUR YERRE", + "coordonnees_gps": [ + 48.6536042911, + 2.63969411828 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63969411828, + 48.6536042911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afea9f2e14dbece8fc744aae126bc0046bdc36ee", + "fields": { + "code_commune_insee": "77184", + "nom_de_la_commune": "FLAGY", + "code_postal": "77940", + "coordonnees_gps": [ + 48.3095715742, + 2.91700896132 + ], + "libelle_d_acheminement": "FLAGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91700896132, + 48.3095715742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1486b8f6320386a5c1849a2d34fdb344f04fff89", + "fields": { + "code_commune_insee": "77185", + "nom_de_la_commune": "FLEURY EN BIERE", + "code_postal": "77930", + "coordonnees_gps": [ + 48.4452091427, + 2.54053694793 + ], + "libelle_d_acheminement": "FLEURY EN BIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54053694793, + 48.4452091427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb44af2f2bf3f68e9afa4fecb2df385f1f61f0ff", + "fields": { + "code_commune_insee": "77190", + "nom_de_la_commune": "FONTAINS", + "code_postal": "77370", + "coordonnees_gps": [ + 48.521763357, + 3.00687060558 + ], + "libelle_d_acheminement": "FONTAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00687060558, + 48.521763357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a41117970511aef5bb4ad3d026ed6efff47ebf7", + "fields": { + "code_commune_insee": "77197", + "nom_de_la_commune": "FRETOY", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7063577233, + 3.20260750472 + ], + "libelle_d_acheminement": "FRETOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20260750472, + 48.7063577233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84cb4e1c5c7ab26d44c42c7224d4a048d3dc50eb", + "fields": { + "code_commune_insee": "77198", + "nom_de_la_commune": "FROMONT", + "code_postal": "77760", + "coordonnees_gps": [ + 48.2535112843, + 2.50835017332 + ], + "libelle_d_acheminement": "FROMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50835017332, + 48.2535112843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cf079b85fe7547ae441926dd2ed56dc01674f26", + "fields": { + "code_commune_insee": "77199", + "nom_de_la_commune": "FUBLAINES", + "code_postal": "77470", + "coordonnees_gps": [ + 48.939144787, + 2.94066585893 + ], + "libelle_d_acheminement": "FUBLAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94066585893, + 48.939144787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8b6925b1aa41a958cb626f669d6ed0c9cca3744", + "fields": { + "code_commune_insee": "77229", + "nom_de_la_commune": "LA HOUSSAYE EN BRIE", + "code_postal": "77610", + "coordonnees_gps": [ + 48.756188625, + 2.86795216078 + ], + "libelle_d_acheminement": "LA HOUSSAYE EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86795216078, + 48.756188625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c576eeae09b29971eef7c50f3964e55fc412dbd3", + "fields": { + "code_commune_insee": "77233", + "nom_de_la_commune": "IVERNY", + "code_postal": "77165", + "coordonnees_gps": [ + 48.9962439672, + 2.79088918596 + ], + "libelle_d_acheminement": "IVERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79088918596, + 48.9962439672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58e364896058dec9d84fbfb9de27823a01ec85b6", + "fields": { + "code_commune_insee": "77234", + "nom_de_la_commune": "JABLINES", + "code_postal": "77450", + "coordonnees_gps": [ + 48.9144697442, + 2.7566018167 + ], + "libelle_d_acheminement": "JABLINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7566018167, + 48.9144697442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "021662d20318db8d33f29ff4cfcfb95952a5ae76", + "fields": { + "code_commune_insee": "77235", + "nom_de_la_commune": "JAIGNES", + "code_postal": "77440", + "coordonnees_gps": [ + 48.9870552422, + 3.07455824871 + ], + "libelle_d_acheminement": "JAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07455824871, + 48.9870552422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ff8625af61b7ae5dfe6ecd5fa1460e3f9a03695", + "fields": { + "code_commune_insee": "77246", + "nom_de_la_commune": "LECHELLE", + "code_postal": "77171", + "coordonnees_gps": [ + 48.5720242437, + 3.38931768623 + ], + "libelle_d_acheminement": "LECHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38931768623, + 48.5720242437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "277587881c5c6bda7bf6c3affa55c97f4306be19", + "fields": { + "code_commune_insee": "77252", + "nom_de_la_commune": "LIMOGES FOURCHES", + "code_postal": "77550", + "coordonnees_gps": [ + 48.6265916189, + 2.66952295413 + ], + "libelle_d_acheminement": "LIMOGES FOURCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66952295413, + 48.6265916189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d033948f4d635f4dc0a05d26f4b1be1364290c0", + "fields": { + "ligne_5": "FONTAINE SOUS MONTAIGUILLON", + "code_commune_insee": "77262", + "libelle_d_acheminement": "LOUAN VILLEGRUIS FONTAINE", + "code_postal": "77560", + "nom_de_la_commune": "LOUAN VILLEGRUIS FONTAINE", + "coordonnees_gps": [ + 48.6145636708, + 3.48915109409 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48915109409, + 48.6145636708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d0b2b234770fbd46b3cda0e64d4cc7f5ceff48e", + "fields": { + "code_commune_insee": "77269", + "nom_de_la_commune": "MAINCY", + "code_postal": "77950", + "coordonnees_gps": [ + 48.554015687, + 2.70614781441 + ], + "libelle_d_acheminement": "MAINCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70614781441, + 48.554015687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "995183850fc6ab6514531ee78eb1d12c09174b1f", + "fields": { + "code_commune_insee": "77272", + "nom_de_la_commune": "MAISON ROUGE", + "code_postal": "77370", + "coordonnees_gps": [ + 48.5549428355, + 3.15134604553 + ], + "libelle_d_acheminement": "MAISON ROUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15134604553, + 48.5549428355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b479d4c8b5c80111326c8cf601e11ab38d338e15", + "fields": { + "code_commune_insee": "77276", + "nom_de_la_commune": "MAREUIL LES MEAUX", + "code_postal": "77100", + "coordonnees_gps": [ + 48.9236226268, + 2.86975697306 + ], + "libelle_d_acheminement": "MAREUIL LES MEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86975697306, + 48.9236226268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "997ac9b14ba0beb2e10afb37ac935c7b3d5c1bd3", + "fields": { + "code_commune_insee": "77277", + "nom_de_la_commune": "MARLES EN BRIE", + "code_postal": "77610", + "coordonnees_gps": [ + 48.7249445304, + 2.88847597866 + ], + "libelle_d_acheminement": "MARLES EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88847597866, + 48.7249445304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc14c3d541f442d41b2bd08554ca0d2df309c939", + "fields": { + "code_commune_insee": "77285", + "nom_de_la_commune": "LE MEE SUR SEINE", + "code_postal": "77350", + "coordonnees_gps": [ + 48.5394588477, + 2.62902482677 + ], + "libelle_d_acheminement": "LE MEE SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62902482677, + 48.5394588477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b64260a30d3dcf1d7368deec339011a0b4204667", + "fields": { + "code_commune_insee": "77288", + "nom_de_la_commune": "MELUN", + "code_postal": "77000", + "coordonnees_gps": [ + 48.5444723553, + 2.65795821917 + ], + "libelle_d_acheminement": "MELUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65795821917, + 48.5444723553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1152b978b907f1f4052526f79d37568c8880196c", + "fields": { + "code_commune_insee": "77289", + "nom_de_la_commune": "MELZ SUR SEINE", + "code_postal": "77171", + "coordonnees_gps": [ + 48.5040892203, + 3.39694181186 + ], + "libelle_d_acheminement": "MELZ SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39694181186, + 48.5040892203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97cc06d1da52250c9cf166b63becd90b5111ed34", + "fields": { + "code_commune_insee": "77298", + "nom_de_la_commune": "MONS EN MONTOIS", + "code_postal": "77520", + "coordonnees_gps": [ + 48.4912312558, + 3.13957041829 + ], + "libelle_d_acheminement": "MONS EN MONTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13957041829, + 48.4912312558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67eedef399a1e12a3c3670eb2f099559606ac517", + "fields": { + "code_commune_insee": "77300", + "nom_de_la_commune": "MONTCEAUX LES MEAUX", + "code_postal": "77470", + "coordonnees_gps": [ + 48.9434088877, + 2.99444163212 + ], + "libelle_d_acheminement": "MONTCEAUX LES MEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99444163212, + 48.9434088877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47fd99218da3090c8afdca5cb5a1d915398d33af", + "fields": { + "code_commune_insee": "77301", + "nom_de_la_commune": "MONTCEAUX LES PROVINS", + "code_postal": "77151", + "coordonnees_gps": [ + 48.6965479073, + 3.444463614 + ], + "libelle_d_acheminement": "MONTCEAUX LES PROVINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.444463614, + 48.6965479073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83794997531c8cc271c46e98f7916f67a93b7c3b", + "fields": { + "code_commune_insee": "77304", + "nom_de_la_commune": "MONTENILS", + "code_postal": "77320", + "coordonnees_gps": [ + 48.835294187, + 3.47842344404 + ], + "libelle_d_acheminement": "MONTENILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47842344404, + 48.835294187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b593ee975a19d045ef08cfb80f9d955b2d57d53f", + "fields": { + "code_commune_insee": "77305", + "nom_de_la_commune": "MONTEREAU FAULT YONNE", + "code_postal": "77130", + "coordonnees_gps": [ + 48.3898830911, + 2.96155479657 + ], + "libelle_d_acheminement": "MONTEREAU FAULT YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96155479657, + 48.3898830911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c722fb30fc6b15786b615544ccf8781dfa41f235", + "fields": { + "code_commune_insee": "77308", + "nom_de_la_commune": "MONTGE EN GOELE", + "code_postal": "77230", + "coordonnees_gps": [ + 49.0293871876, + 2.74391030915 + ], + "libelle_d_acheminement": "MONTGE EN GOELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74391030915, + 49.0293871876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a95728e5b3da7324a95645ec708dc7636f60725", + "fields": { + "ligne_5": "VENEUX LES SABLONS", + "code_commune_insee": "77316", + "libelle_d_acheminement": "MORET LOING ET ORVANNE", + "code_postal": "77250", + "nom_de_la_commune": "MORET LOING ET ORVANNE", + "coordonnees_gps": [ + 48.365092921, + 2.81172585849 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81172585849, + 48.365092921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa7b7570d53a98660fe29454eff8569221024e17", + "fields": { + "code_commune_insee": "77335", + "nom_de_la_commune": "CHAUCONIN NEUFMONTIERS", + "code_postal": "77124", + "coordonnees_gps": [ + 48.9719332783, + 2.83158634864 + ], + "libelle_d_acheminement": "CHAUCONIN NEUFMONTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83158634864, + 48.9719332783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "017e66942f81bd1ea5e3b24d4ff440b26fb6d0a8", + "fields": { + "code_commune_insee": "77336", + "nom_de_la_commune": "NEUFMOUTIERS EN BRIE", + "code_postal": "77610", + "coordonnees_gps": [ + 48.7742365844, + 2.82602108151 + ], + "libelle_d_acheminement": "NEUFMOUTIERS EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82602108151, + 48.7742365844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f74f8a7a834deb185f60bf5b194bd6b3c2bd2ee", + "fields": { + "code_commune_insee": "77339", + "nom_de_la_commune": "NOISY SUR ECOLE", + "code_postal": "77123", + "coordonnees_gps": [ + 48.3776889866, + 2.50874542385 + ], + "libelle_d_acheminement": "NOISY SUR ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50874542385, + 48.3776889866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "061779c8f27f14d4c65f6d2796dc456ff1d34692", + "fields": { + "code_commune_insee": "77343", + "nom_de_la_commune": "OCQUERRE", + "code_postal": "77440", + "coordonnees_gps": [ + 49.0335795596, + 3.06016213237 + ], + "libelle_d_acheminement": "OCQUERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06016213237, + 49.0335795596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fb85e124803181bf7b78bb2f7748511dcb84c73", + "fields": { + "code_commune_insee": "77349", + "nom_de_la_commune": "OTHIS", + "code_postal": "77280", + "coordonnees_gps": [ + 49.082725931, + 2.65422672381 + ], + "libelle_d_acheminement": "OTHIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65422672381, + 49.082725931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "792aeb3f69200d85ed0d611ad28714164e18138b", + "fields": { + "code_commune_insee": "77350", + "nom_de_la_commune": "OZOIR LA FERRIERE", + "code_postal": "77330", + "coordonnees_gps": [ + 48.7635612396, + 2.67962508199 + ], + "libelle_d_acheminement": "OZOIR LA FERRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67962508199, + 48.7635612396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3140d36dbe133f8857d8a04313ab5cffb5a409d", + "fields": { + "code_commune_insee": "77352", + "nom_de_la_commune": "OZOUER LE VOULGIS", + "code_postal": "77390", + "coordonnees_gps": [ + 48.6647166241, + 2.77681122892 + ], + "libelle_d_acheminement": "OZOUER LE VOULGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77681122892, + 48.6647166241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "464204103e28525051bb780ab062143f312fb919", + "fields": { + "code_commune_insee": "77360", + "nom_de_la_commune": "PEZARCHES", + "code_postal": "77131", + "coordonnees_gps": [ + 48.7441065539, + 2.99013605672 + ], + "libelle_d_acheminement": "PEZARCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99013605672, + 48.7441065539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd0c910d75efdb00dd2e95265d67b0bb8c1da236", + "fields": { + "code_commune_insee": "77363", + "nom_de_la_commune": "LE PIN", + "code_postal": "77181", + "coordonnees_gps": [ + 48.9144329004, + 2.62838554691 + ], + "libelle_d_acheminement": "LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62838554691, + 48.9144329004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75381dd074e2df289ed34923f76f6969d88d159a", + "fields": { + "code_commune_insee": "77365", + "nom_de_la_commune": "LE PLESSIS FEU AUSSOUX", + "code_postal": "77540", + "coordonnees_gps": [ + 48.7130840275, + 3.03898703443 + ], + "libelle_d_acheminement": "LE PLESSIS FEU AUSSOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03898703443, + 48.7130840275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25369e41c5873a9b0ff158c561a7d245d16211dd", + "fields": { + "code_commune_insee": "77368", + "nom_de_la_commune": "POIGNY", + "code_postal": "77160", + "coordonnees_gps": [ + 48.5449283297, + 3.27716740959 + ], + "libelle_d_acheminement": "POIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27716740959, + 48.5449283297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93c030c1a88759170167615edbf8caff050c9710", + "fields": { + "code_commune_insee": "77371", + "nom_de_la_commune": "POMMEUSE", + "code_postal": "77515", + "coordonnees_gps": [ + 48.8178723511, + 3.00613268677 + ], + "libelle_d_acheminement": "POMMEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00613268677, + 48.8178723511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e3d5c125f53f808dc513b21273ed582cd8233f2", + "fields": { + "code_commune_insee": "77373", + "nom_de_la_commune": "PONTAULT COMBAULT", + "code_postal": "77340", + "coordonnees_gps": [ + 48.7871411658, + 2.61407436985 + ], + "libelle_d_acheminement": "PONTAULT COMBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61407436985, + 48.7871411658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa2b3d36a61614c5caaf489a6a7e1b8457de6d0e", + "fields": { + "code_commune_insee": "77376", + "nom_de_la_commune": "PRECY SUR MARNE", + "code_postal": "77410", + "coordonnees_gps": [ + 48.932278559, + 2.76825616233 + ], + "libelle_d_acheminement": "PRECY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76825616233, + 48.932278559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87ae1e3d898b63f0f0758a34d36f74ddc6dbd398", + "fields": { + "code_commune_insee": "77377", + "nom_de_la_commune": "PRESLES EN BRIE", + "code_postal": "77220", + "coordonnees_gps": [ + 48.7132293584, + 2.73724881309 + ], + "libelle_d_acheminement": "PRESLES EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73724881309, + 48.7132293584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df0536377786d8623e26caa13e0bdeff0149cb13", + "fields": { + "code_commune_insee": "77379", + "nom_de_la_commune": "PROVINS", + "code_postal": "77160", + "coordonnees_gps": [ + 48.5633093312, + 3.28756780085 + ], + "libelle_d_acheminement": "PROVINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28756780085, + 48.5633093312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c754540b16d1b3770f0569b50320e84c0cccd0ad", + "fields": { + "code_commune_insee": "77380", + "nom_de_la_commune": "PUISIEUX", + "code_postal": "77139", + "coordonnees_gps": [ + 49.0654141426, + 2.91537283877 + ], + "libelle_d_acheminement": "PUISIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91537283877, + 49.0654141426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74eb82581f161b7cc63840ed82d43e03d3d1212b", + "fields": { + "code_commune_insee": "77384", + "nom_de_la_commune": "REAU", + "code_postal": "77550", + "coordonnees_gps": [ + 48.6073931366, + 2.62398597049 + ], + "libelle_d_acheminement": "REAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62398597049, + 48.6073931366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "396b0ffcf30a4a02bfc5c345f80d05f1cf8f14ab", + "fields": { + "code_commune_insee": "77391", + "nom_de_la_commune": "ROUILLY", + "code_postal": "77160", + "coordonnees_gps": [ + 48.5914740007, + 3.28881979874 + ], + "libelle_d_acheminement": "ROUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28881979874, + 48.5914740007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b80649a96c42e7b92a799f000d278a43e3c164e4", + "fields": { + "code_commune_insee": "77395", + "nom_de_la_commune": "RUMONT", + "code_postal": "77760", + "coordonnees_gps": [ + 48.2703586481, + 2.4951176944 + ], + "libelle_d_acheminement": "RUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4951176944, + 48.2703586481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "189a3455ced0b03e0c5a85e11ae036afe4b892d6", + "fields": { + "code_commune_insee": "77397", + "nom_de_la_commune": "SAACY SUR MARNE", + "code_postal": "77730", + "coordonnees_gps": [ + 48.9510388059, + 3.21708919555 + ], + "libelle_d_acheminement": "SAACY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21708919555, + 48.9510388059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3506e2209b58e5c9b2487727b28469e0bac09d9a", + "fields": { + "code_commune_insee": "77401", + "nom_de_la_commune": "STE AULDE", + "code_postal": "77260", + "coordonnees_gps": [ + 49.0030713082, + 3.1746031904 + ], + "libelle_d_acheminement": "STE AULDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1746031904, + 49.0030713082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f941bca0410d6a2ca741cd8fdd1ba5ea7b76621", + "fields": { + "code_commune_insee": "77404", + "nom_de_la_commune": "STE COLOMBE", + "code_postal": "77650", + "coordonnees_gps": [ + 48.5343555436, + 3.25919071204 + ], + "libelle_d_acheminement": "STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25919071204, + 48.5343555436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54cf527ee02881bcd031bb377baf295e0433fe33", + "fields": { + "code_commune_insee": "77405", + "nom_de_la_commune": "ST CYR SUR MORIN", + "code_postal": "77750", + "coordonnees_gps": [ + 48.9119288243, + 3.17472722013 + ], + "libelle_d_acheminement": "ST CYR SUR MORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17472722013, + 48.9119288243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6129353dd8f1feb5c5d9cefc3ca528e06b365038", + "fields": { + "code_commune_insee": "77410", + "nom_de_la_commune": "ST GERMAIN LAXIS", + "code_postal": "77950", + "coordonnees_gps": [ + 48.5862771914, + 2.70637166512 + ], + "libelle_d_acheminement": "ST GERMAIN LAXIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70637166512, + 48.5862771914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "927ad5821b5b5d4d6c96fb48f419d50c2a08c790", + "fields": { + "code_commune_insee": "77423", + "nom_de_la_commune": "ST MARTIN DES CHAMPS", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7883444526, + 3.33427084633 + ], + "libelle_d_acheminement": "ST MARTIN DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33427084633, + 48.7883444526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "547618730b9d2e395249b8ea5038e0116dcd0299", + "fields": { + "code_commune_insee": "77425", + "nom_de_la_commune": "ST MARTIN EN BIERE", + "code_postal": "77630", + "coordonnees_gps": [ + 48.4342403607, + 2.57483458282 + ], + "libelle_d_acheminement": "ST MARTIN EN BIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57483458282, + 48.4342403607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a4924d8df06b9e4450431669b18844590a02d68", + "fields": { + "code_commune_insee": "77428", + "nom_de_la_commune": "ST OUEN EN BRIE", + "code_postal": "77720", + "coordonnees_gps": [ + 48.56560984, + 2.9198513048 + ], + "libelle_d_acheminement": "ST OUEN EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9198513048, + 48.56560984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00821cccc5f60bdf0dad607f48da76a25a8d6540", + "fields": { + "code_commune_insee": "77430", + "nom_de_la_commune": "ST PATHUS", + "code_postal": "77178", + "coordonnees_gps": [ + 49.0737570585, + 2.78794221143 + ], + "libelle_d_acheminement": "ST PATHUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78794221143, + 49.0737570585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf28d3b09a78d46532332c7474f437f48d00d729", + "fields": { + "code_commune_insee": "77431", + "nom_de_la_commune": "ST PIERRE LES NEMOURS", + "code_postal": "77140", + "coordonnees_gps": [ + 48.2646880491, + 2.66647381403 + ], + "libelle_d_acheminement": "ST PIERRE LES NEMOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66647381403, + 48.2646880491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14c6e2380cd3754220223b97b73984e6871a0c14", + "fields": { + "code_commune_insee": "77438", + "nom_de_la_commune": "ST THIBAULT DES VIGNES", + "code_postal": "77400", + "coordonnees_gps": [ + 48.8637030584, + 2.67576810808 + ], + "libelle_d_acheminement": "ST THIBAULT DES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67576810808, + 48.8637030584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dafcd31f8d73958735d4583ca52e1aa931b9aecb", + "fields": { + "code_commune_insee": "77439", + "nom_de_la_commune": "SALINS", + "code_postal": "77148", + "coordonnees_gps": [ + 48.4316639187, + 3.0194177211 + ], + "libelle_d_acheminement": "SALINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0194177211, + 48.4316639187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f3bfb1d319681641234906a9babeb9594ca5ad7", + "fields": { + "code_commune_insee": "77453", + "nom_de_la_commune": "SIVRY COURTRY", + "code_postal": "77115", + "coordonnees_gps": [ + 48.530887524, + 2.75615007071 + ], + "libelle_d_acheminement": "SIVRY COURTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75615007071, + 48.530887524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f299917bfd86612121677ece3d027e76c1bf60bc", + "fields": { + "code_commune_insee": "77466", + "nom_de_la_commune": "TIGEAUX", + "code_postal": "77163", + "coordonnees_gps": [ + 48.8251475937, + 2.89871358774 + ], + "libelle_d_acheminement": "TIGEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89871358774, + 48.8251475937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fba221c0f7f7aaf5e103196190fb70e5a37387f1", + "fields": { + "code_commune_insee": "77467", + "nom_de_la_commune": "LA TOMBE", + "code_postal": "77130", + "coordonnees_gps": [ + 48.3867483242, + 3.09357430759 + ], + "libelle_d_acheminement": "LA TOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09357430759, + 48.3867483242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c58740e947b264912d2cc04e7b3d06710cb28e4", + "fields": { + "code_commune_insee": "77473", + "nom_de_la_commune": "TREUZY LEVELAY", + "code_postal": "77710", + "coordonnees_gps": [ + 48.2730119814, + 2.79481734896 + ], + "libelle_d_acheminement": "TREUZY LEVELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79481734896, + 48.2730119814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22ccd9b6441dbab329a3428a61ac027946244139", + "fields": { + "code_commune_insee": "77475", + "nom_de_la_commune": "TRILPORT", + "code_postal": "77470", + "coordonnees_gps": [ + 48.958724925, + 2.9662410397 + ], + "libelle_d_acheminement": "TRILPORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9662410397, + 48.958724925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fa431b788efbf8ce0945a746bbd42ef2f8e2da8", + "fields": { + "code_commune_insee": "77478", + "nom_de_la_commune": "USSY SUR MARNE", + "code_postal": "77260", + "coordonnees_gps": [ + 48.9665838811, + 3.08198151842 + ], + "libelle_d_acheminement": "USSY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08198151842, + 48.9665838811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca79a9fcd2f94b9fa1e98a5c5b8d12abd37869ed", + "fields": { + "code_commune_insee": "77479", + "nom_de_la_commune": "VAIRES SUR MARNE", + "code_postal": "77360", + "coordonnees_gps": [ + 48.8697812117, + 2.63565952774 + ], + "libelle_d_acheminement": "VAIRES SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63565952774, + 48.8697812117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca8d0f589840fc74ccf0de5a4e6de10461dac196", + "fields": { + "code_commune_insee": "77484", + "nom_de_la_commune": "VAUCOURTOIS", + "code_postal": "77580", + "coordonnees_gps": [ + 48.8988382748, + 2.95694205944 + ], + "libelle_d_acheminement": "VAUCOURTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95694205944, + 48.8988382748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc354839823dbbcc130a24661365a8f2429d00f2", + "fields": { + "code_commune_insee": "77493", + "nom_de_la_commune": "VERNEUIL L ETANG", + "code_postal": "77390", + "coordonnees_gps": [ + 48.6370893938, + 2.8323243324 + ], + "libelle_d_acheminement": "VERNEUIL L ETANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8323243324, + 48.6370893938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09416d4edadada2c73f9f948bb7ffd5ef79267fc", + "fields": { + "code_commune_insee": "77496", + "nom_de_la_commune": "VIEUX CHAMPAGNE", + "code_postal": "77370", + "coordonnees_gps": [ + 48.5871399765, + 3.1382187303 + ], + "libelle_d_acheminement": "VIEUX CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1382187303, + 48.5871399765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0a203468d0988569dce02297135b6d6aab8633e", + "fields": { + "code_commune_insee": "77501", + "nom_de_la_commune": "VILLECERF", + "code_postal": "77250", + "coordonnees_gps": [ + 48.32726351, + 2.84591675983 + ], + "libelle_d_acheminement": "VILLECERF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84591675983, + 48.32726351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8d1ddc29e955d5ec8f61e71de7780647e31b369", + "fields": { + "code_commune_insee": "77504", + "nom_de_la_commune": "VILLEMARECHAL", + "code_postal": "77710", + "coordonnees_gps": [ + 48.2716975707, + 2.86854814458 + ], + "libelle_d_acheminement": "VILLEMARECHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86854814458, + 48.2716975707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "749f1f6b85a8a8368c3f16965f4572165003d78e", + "fields": { + "code_commune_insee": "77505", + "nom_de_la_commune": "VILLEMAREUIL", + "code_postal": "77470", + "coordonnees_gps": [ + 48.9202287763, + 2.98474504505 + ], + "libelle_d_acheminement": "VILLEMAREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98474504505, + 48.9202287763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d66a79e8d5d662780c6458f194a8889c2418e704", + "fields": { + "code_commune_insee": "77509", + "nom_de_la_commune": "VILLENEUVE LES BORDES", + "code_postal": "77154", + "coordonnees_gps": [ + 48.4947457361, + 3.03085746067 + ], + "libelle_d_acheminement": "VILLENEUVE LES BORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03085746067, + 48.4947457361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "405199e1249b21504111eb34b814bcaaf0d9c17d", + "fields": { + "code_commune_insee": "77512", + "nom_de_la_commune": "VILLENEUVE SUR BELLOT", + "code_postal": "77510", + "coordonnees_gps": [ + 48.8731734921, + 3.33324327712 + ], + "libelle_d_acheminement": "VILLENEUVE SUR BELLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33324327712, + 48.8731734921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c08019e893188a40f0e6f4af38b19d7b31aacc3e", + "fields": { + "code_commune_insee": "77514", + "nom_de_la_commune": "VILLEPARISIS", + "code_postal": "77270", + "coordonnees_gps": [ + 48.9419981883, + 2.61700200964 + ], + "libelle_d_acheminement": "VILLEPARISIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61700200964, + 48.9419981883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b43066b86c00777b711001d98f3f8033c27f342", + "fields": { + "code_commune_insee": "77521", + "nom_de_la_commune": "VILLIERS SUR MORIN", + "code_postal": "77580", + "coordonnees_gps": [ + 48.8490884714, + 2.86879135984 + ], + "libelle_d_acheminement": "VILLIERS SUR MORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86879135984, + 48.8490884714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc598270891916602fd146ce9251426405cc484e", + "fields": { + "code_commune_insee": "77528", + "nom_de_la_commune": "VOISENON", + "code_postal": "77950", + "coordonnees_gps": [ + 48.5701795365, + 2.66375881473 + ], + "libelle_d_acheminement": "VOISENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66375881473, + 48.5701795365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18dcad02552dc105cc64299e2096232b76528b93", + "fields": { + "code_commune_insee": "77532", + "nom_de_la_commune": "VULAINES LES PROVINS", + "code_postal": "77160", + "coordonnees_gps": [ + 48.5636143707, + 3.21951808619 + ], + "libelle_d_acheminement": "VULAINES LES PROVINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21951808619, + 48.5636143707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c410703bad457a556ff92e80afe610f35f9c0d03", + "fields": { + "code_commune_insee": "78006", + "nom_de_la_commune": "ADAINVILLE", + "code_postal": "78113", + "coordonnees_gps": [ + 48.7201535833, + 1.66232511762 + ], + "libelle_d_acheminement": "ADAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66232511762, + 48.7201535833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f1dd5daf964ecbd32e2454585f56154e67710f7", + "fields": { + "code_commune_insee": "78007", + "nom_de_la_commune": "AIGREMONT", + "code_postal": "78240", + "coordonnees_gps": [ + 48.9008380509, + 2.0153630611 + ], + "libelle_d_acheminement": "AIGREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0153630611, + 48.9008380509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b7a08a1a72f9eab131c4ce10f7568fad7e93852", + "fields": { + "code_commune_insee": "78010", + "nom_de_la_commune": "LES ALLUETS LE ROI", + "code_postal": "78580", + "coordonnees_gps": [ + 48.9143168349, + 1.91476236453 + ], + "libelle_d_acheminement": "LES ALLUETS LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91476236453, + 48.9143168349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43a12c48be285965f51aaa92618e8f82ac536e9c", + "fields": { + "code_commune_insee": "78020", + "nom_de_la_commune": "ARNOUVILLE LES MANTES", + "code_postal": "78790", + "coordonnees_gps": [ + 48.911006894, + 1.72043999321 + ], + "libelle_d_acheminement": "ARNOUVILLE LES MANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72043999321, + 48.911006894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55d0d7379b638e03f633afaae24f9244eeb10cf9", + "fields": { + "code_commune_insee": "78029", + "nom_de_la_commune": "AUBERGENVILLE", + "code_postal": "78410", + "coordonnees_gps": [ + 48.9626916321, + 1.84870251915 + ], + "libelle_d_acheminement": "AUBERGENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84870251915, + 48.9626916321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94773b0b44317fc6e7dd8415aa10f2f8dcd2d1e9", + "fields": { + "code_commune_insee": "78033", + "nom_de_la_commune": "AULNAY SUR MAULDRE", + "code_postal": "78126", + "coordonnees_gps": [ + 48.9291229778, + 1.84081525646 + ], + "libelle_d_acheminement": "AULNAY SUR MAULDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84081525646, + 48.9291229778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bb7d69e4d0265cd0de72fe8165c1467fb691bcf", + "fields": { + "code_commune_insee": "78034", + "nom_de_la_commune": "AUTEUIL", + "code_postal": "78770", + "coordonnees_gps": [ + 48.8394911873, + 1.81898836973 + ], + "libelle_d_acheminement": "AUTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81898836973, + 48.8394911873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47db6821323d00a99096f494ed29f1bb25223585", + "fields": { + "code_commune_insee": "78049", + "nom_de_la_commune": "BAZEMONT", + "code_postal": "78580", + "coordonnees_gps": [ + 48.9318976597, + 1.87410045764 + ], + "libelle_d_acheminement": "BAZEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87410045764, + 48.9318976597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f5383625b179dfeb47cdb13eab4d548d5a74b9e", + "fields": { + "code_commune_insee": "78071", + "nom_de_la_commune": "BOINVILLE LE GAILLARD", + "code_postal": "78660", + "coordonnees_gps": [ + 48.4958030642, + 1.87115102424 + ], + "libelle_d_acheminement": "BOINVILLE LE GAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87115102424, + 48.4958030642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33334b952978818ceeec105ed9f86761b53215e4", + "fields": { + "code_commune_insee": "78076", + "nom_de_la_commune": "BOISSETS", + "code_postal": "78910", + "coordonnees_gps": [ + 48.8587317942, + 1.58768309542 + ], + "libelle_d_acheminement": "BOISSETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58768309542, + 48.8587317942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7e637552c40126677b8a18c4e3b8e7cd9c33e54", + "fields": { + "code_commune_insee": "78108", + "nom_de_la_commune": "LES BREVIAIRES", + "code_postal": "78610", + "coordonnees_gps": [ + 48.7212410686, + 1.81639481084 + ], + "libelle_d_acheminement": "LES BREVIAIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81639481084, + 48.7212410686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28ac8353f11bc99dc37be3d2c8c6354d887ab509", + "fields": { + "code_commune_insee": "78120", + "nom_de_la_commune": "BULLION", + "code_postal": "78830", + "coordonnees_gps": [ + 48.6245810321, + 1.98307952001 + ], + "libelle_d_acheminement": "BULLION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98307952001, + 48.6245810321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "160793ce0140a2989d76c4bec816da52cba85cd1", + "fields": { + "code_commune_insee": "78143", + "nom_de_la_commune": "CHATEAUFORT", + "code_postal": "78117", + "coordonnees_gps": [ + 48.7390044414, + 2.09509831044 + ], + "libelle_d_acheminement": "CHATEAUFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09509831044, + 48.7390044414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f68ebd637389fc85568124341e1ae25ea75293cb", + "fields": { + "code_commune_insee": "78163", + "nom_de_la_commune": "CIVRY LA FORET", + "code_postal": "78910", + "coordonnees_gps": [ + 48.8642006092, + 1.61682938801 + ], + "libelle_d_acheminement": "CIVRY LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61682938801, + 48.8642006092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2192086ea823cbcc1b240c09622615ce54f96027", + "fields": { + "code_commune_insee": "78171", + "nom_de_la_commune": "CONDE SUR VESGRE", + "code_postal": "78113", + "coordonnees_gps": [ + 48.7324954071, + 1.67372721841 + ], + "libelle_d_acheminement": "CONDE SUR VESGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67372721841, + 48.7324954071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "573f15278a3ddfa21a98a0c310dd14a0e9304df1", + "fields": { + "ligne_5": "MAINCOURT SUR YVETTE", + "code_commune_insee": "78193", + "libelle_d_acheminement": "DAMPIERRE EN YVELINES", + "code_postal": "78720", + "nom_de_la_commune": "DAMPIERRE EN YVELINES", + "coordonnees_gps": [ + 48.7037164037, + 1.97307941128 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97307941128, + 48.7037164037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eb5c4ef7cd6f291f1171cfa599cd2cdec6e6b79", + "fields": { + "code_commune_insee": "78196", + "nom_de_la_commune": "DAVRON", + "code_postal": "78810", + "coordonnees_gps": [ + 48.8636419011, + 1.94749093682 + ], + "libelle_d_acheminement": "DAVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94749093682, + 48.8636419011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0267a1ea1fe254ee4ea60cbe808a827c3de015c9", + "fields": { + "code_commune_insee": "78209", + "nom_de_la_commune": "EMANCE", + "code_postal": "78125", + "coordonnees_gps": [ + 48.5912443616, + 1.73390174623 + ], + "libelle_d_acheminement": "EMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73390174623, + 48.5912443616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "790537a72da69a32d45164181f844134ede5217b", + "fields": { + "code_commune_insee": "78217", + "nom_de_la_commune": "EPONE", + "code_postal": "78680", + "coordonnees_gps": [ + 48.9471759683, + 1.81269584925 + ], + "libelle_d_acheminement": "EPONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81269584925, + 48.9471759683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ea6ace5c4064e65468b206e30fa68fef966d556", + "fields": { + "code_commune_insee": "78220", + "nom_de_la_commune": "LES ESSARTS LE ROI", + "code_postal": "78690", + "coordonnees_gps": [ + 48.716019265, + 1.8952517006 + ], + "libelle_d_acheminement": "LES ESSARTS LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8952517006, + 48.716019265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b9f0d2609647a876ebcffdf2c9b7ab9debdb7dc", + "fields": { + "code_commune_insee": "78224", + "nom_de_la_commune": "L ETANG LA VILLE", + "code_postal": "78620", + "coordonnees_gps": [ + 48.8674116059, + 2.06048754387 + ], + "libelle_d_acheminement": "L ETANG LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06048754387, + 48.8674116059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d3226c3d3a404a5e007a4d9d895849b5fb5e139", + "fields": { + "code_commune_insee": "78230", + "nom_de_la_commune": "LA FALAISE", + "code_postal": "78410", + "coordonnees_gps": [ + 48.9369496827, + 1.82537874212 + ], + "libelle_d_acheminement": "LA FALAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82537874212, + 48.9369496827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "522dae753be095ebc054be4ba662cf20bc1bbd2c", + "fields": { + "code_commune_insee": "78233", + "nom_de_la_commune": "FEUCHEROLLES", + "code_postal": "78810", + "coordonnees_gps": [ + 48.8800880696, + 1.97983777956 + ], + "libelle_d_acheminement": "FEUCHEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97983777956, + 48.8800880696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2928e083e041b8f9d3c6c85edd9017e3e1bfb118", + "fields": { + "code_commune_insee": "78246", + "nom_de_la_commune": "FONTENAY ST PERE", + "code_postal": "78440", + "coordonnees_gps": [ + 49.0279919911, + 1.75448471704 + ], + "libelle_d_acheminement": "FONTENAY ST PERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75448471704, + 49.0279919911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "468d5f76763ee3e340b808df15414a0aca7a9379", + "fields": { + "code_commune_insee": "78263", + "nom_de_la_commune": "GAMBAIS", + "code_postal": "78950", + "coordonnees_gps": [ + 48.7796089951, + 1.67651742335 + ], + "libelle_d_acheminement": "GAMBAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67651742335, + 48.7796089951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c358feac0d05517edf3769c600a531f2d57e6133", + "fields": { + "code_commune_insee": "78265", + "nom_de_la_commune": "GARANCIERES", + "code_postal": "78890", + "coordonnees_gps": [ + 48.8236041214, + 1.75831799114 + ], + "libelle_d_acheminement": "GARANCIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75831799114, + 48.8236041214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c9733e1c8c1a78820edc3c65b9c352e5af14946", + "fields": { + "code_commune_insee": "78281", + "nom_de_la_commune": "GOUSSONVILLE", + "code_postal": "78930", + "coordonnees_gps": [ + 48.9235015144, + 1.76677229339 + ], + "libelle_d_acheminement": "GOUSSONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76677229339, + 48.9235015144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7e5b01cde21aa9b1ae7365e4a73fc5093c54c33", + "fields": { + "code_commune_insee": "78296", + "nom_de_la_commune": "GUITRANCOURT", + "code_postal": "78440", + "coordonnees_gps": [ + 49.0075668772, + 1.77906463847 + ], + "libelle_d_acheminement": "GUITRANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77906463847, + 49.0075668772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cd504ae15b78dc8c5ac65da62eccb86b2cc610c", + "fields": { + "ligne_5": "BOUVIERS", + "code_commune_insee": "78297", + "libelle_d_acheminement": "GUYANCOURT", + "code_postal": "78280", + "nom_de_la_commune": "GUYANCOURT", + "coordonnees_gps": [ + 48.7730783892, + 2.07605207737 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07605207737, + 48.7730783892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b88e9cd77cfddb990606a813149afc086b143c2", + "fields": { + "code_commune_insee": "78299", + "nom_de_la_commune": "HARDRICOURT", + "code_postal": "78250", + "coordonnees_gps": [ + 49.0109340921, + 1.88729984064 + ], + "libelle_d_acheminement": "HARDRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88729984064, + 49.0109340921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1785ad051e65c84fb3fc18c000f68222522a8334", + "fields": { + "code_commune_insee": "78307", + "nom_de_la_commune": "HERMERAY", + "code_postal": "78125", + "coordonnees_gps": [ + 48.653842919, + 1.68849471188 + ], + "libelle_d_acheminement": "HERMERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68849471188, + 48.653842919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1239353bb27ad2f51a072478dd599010f27c592", + "fields": { + "code_commune_insee": "78329", + "nom_de_la_commune": "LAINVILLE EN VEXIN", + "code_postal": "78440", + "coordonnees_gps": [ + 49.0624169047, + 1.81689951894 + ], + "libelle_d_acheminement": "LAINVILLE EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81689951894, + 49.0624169047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d6e5a5b7b920ed0e38b0f81578baba4b10fe8ec", + "fields": { + "code_commune_insee": "78337", + "nom_de_la_commune": "LIMETZ VILLEZ", + "code_postal": "78270", + "coordonnees_gps": [ + 49.0598121683, + 1.55067599473 + ], + "libelle_d_acheminement": "LIMETZ VILLEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55067599473, + 49.0598121683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52d8797419f80af4f8d0222b4c4f1d2470c3b689", + "fields": { + "code_commune_insee": "78358", + "nom_de_la_commune": "MAISONS LAFFITTE", + "code_postal": "78600", + "coordonnees_gps": [ + 48.9523369002, + 2.15161594901 + ], + "libelle_d_acheminement": "MAISONS LAFFITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15161594901, + 48.9523369002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d8efb84c380ac1c02c25071e1969c103809f180", + "fields": { + "code_commune_insee": "78372", + "nom_de_la_commune": "MARLY LE ROI", + "code_postal": "78160", + "coordonnees_gps": [ + 48.865007453, + 2.09125004298 + ], + "libelle_d_acheminement": "MARLY LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09125004298, + 48.865007453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7cefdce60a50b4b4a6b77b146280abbdd4fddb7", + "fields": { + "code_commune_insee": "78401", + "nom_de_la_commune": "MEULAN EN YVELINES", + "code_postal": "78250", + "coordonnees_gps": [ + 49.0064171984, + 1.91317556338 + ], + "libelle_d_acheminement": "MEULAN EN YVELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91317556338, + 49.0064171984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a10dd024a9900114ce97ca9033bcf488fea8ed1c", + "fields": { + "code_commune_insee": "78402", + "nom_de_la_commune": "MEZIERES SUR SEINE", + "code_postal": "78970", + "coordonnees_gps": [ + 48.953428636, + 1.78287413415 + ], + "libelle_d_acheminement": "MEZIERES SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78287413415, + 48.953428636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b4a0d30f6ae2a861f003c77fe6f82a134bda7fb", + "fields": { + "code_commune_insee": "78404", + "nom_de_la_commune": "MILLEMONT", + "code_postal": "78940", + "coordonnees_gps": [ + 48.8080583549, + 1.72531897998 + ], + "libelle_d_acheminement": "MILLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72531897998, + 48.8080583549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44089660e9db5df3f3737f8f0e16e6c86300394d", + "fields": { + "code_commune_insee": "78415", + "nom_de_la_commune": "MONTAINVILLE", + "code_postal": "78124", + "coordonnees_gps": [ + 48.8802024049, + 1.85246452448 + ], + "libelle_d_acheminement": "MONTAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85246452448, + 48.8802024049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56341492a0502d03be66704f0f5ef1a4caba523f", + "fields": { + "code_commune_insee": "78440", + "nom_de_la_commune": "LES MUREAUX", + "code_postal": "78130", + "coordonnees_gps": [ + 48.9888041078, + 1.91363448925 + ], + "libelle_d_acheminement": "LES MUREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91363448925, + 48.9888041078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "543f72e5d5751dcef0d30589240e97542e398b26", + "fields": { + "code_commune_insee": "78472", + "nom_de_la_commune": "ORSONVILLE", + "code_postal": "78660", + "coordonnees_gps": [ + 48.4779086815, + 1.82683665622 + ], + "libelle_d_acheminement": "ORSONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82683665622, + 48.4779086815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2000ada5efab04627170cc7f6a99d35b3b501022", + "fields": { + "code_commune_insee": "78481", + "nom_de_la_commune": "LE PECQ", + "code_postal": "78230", + "coordonnees_gps": [ + 48.8936170481, + 2.10503635898 + ], + "libelle_d_acheminement": "LE PECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10503635898, + 48.8936170481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1d069777c0425300196666149ebe49274bd084e", + "fields": { + "code_commune_insee": "78497", + "nom_de_la_commune": "POIGNY LA FORET", + "code_postal": "78125", + "coordonnees_gps": [ + 48.6829262881, + 1.75440035013 + ], + "libelle_d_acheminement": "POIGNY LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75440035013, + 48.6829262881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a68f0b5c797c4d8b8d0e7500f0045cb78e7dba00", + "fields": { + "ligne_5": "LA MALADRERIE", + "code_commune_insee": "78498", + "libelle_d_acheminement": "POISSY", + "code_postal": "78300", + "nom_de_la_commune": "POISSY", + "coordonnees_gps": [ + 48.9235359371, + 2.02715552772 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02715552772, + 48.9235359371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1523351d27ac26b314f3f06aea74cdfdf27d9bc4", + "fields": { + "code_commune_insee": "78517", + "nom_de_la_commune": "RAMBOUILLET", + "code_postal": "78120", + "coordonnees_gps": [ + 48.6539051954, + 1.82652871851 + ], + "libelle_d_acheminement": "RAMBOUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82652871851, + 48.6539051954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c47dc617f7e8018627d689589c60cc629bc3a103", + "fields": { + "code_commune_insee": "78528", + "nom_de_la_commune": "ROLLEBOISE", + "code_postal": "78270", + "coordonnees_gps": [ + 49.0191886627, + 1.60183464658 + ], + "libelle_d_acheminement": "ROLLEBOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60183464658, + 49.0191886627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46a80eda23c45101f43a366ad47be0d98210aaea", + "fields": { + "code_commune_insee": "78548", + "nom_de_la_commune": "ST FORGET", + "code_postal": "78720", + "coordonnees_gps": [ + 48.7127668824, + 1.99703639595 + ], + "libelle_d_acheminement": "ST FORGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99703639595, + 48.7127668824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73c3500420849072f5c4952352c87d0d49013666", + "fields": { + "code_commune_insee": "78550", + "nom_de_la_commune": "ST GERMAIN DE LA GRANGE", + "code_postal": "78640", + "coordonnees_gps": [ + 48.8330731847, + 1.90235458205 + ], + "libelle_d_acheminement": "ST GERMAIN DE LA GRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90235458205, + 48.8330731847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfcebde7ec9c4e88248f84b58d789ebaa23635ce", + "fields": { + "code_commune_insee": "78569", + "nom_de_la_commune": "STE MESME", + "code_postal": "78730", + "coordonnees_gps": [ + 48.5356862351, + 1.94057719252 + ], + "libelle_d_acheminement": "STE MESME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94057719252, + 48.5356862351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab636860b7c89a9816eb380f85ac68ab7fd45ad6", + "fields": { + "code_commune_insee": "78590", + "nom_de_la_commune": "SENLISSE", + "code_postal": "78720", + "coordonnees_gps": [ + 48.6854188568, + 1.97174310378 + ], + "libelle_d_acheminement": "SENLISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97174310378, + 48.6854188568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6ccb01e705707c138899e8522f4c0433bd1580c", + "fields": { + "code_commune_insee": "78606", + "nom_de_la_commune": "LE TARTRE GAUDRAN", + "code_postal": "78113", + "coordonnees_gps": [ + 48.6971387233, + 1.60366113051 + ], + "libelle_d_acheminement": "LE TARTRE GAUDRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60366113051, + 48.6971387233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e28ecbcabe9ee8930658958c3ae0686a55c259c", + "fields": { + "code_commune_insee": "78609", + "nom_de_la_commune": "TESSANCOURT SUR AUBETTE", + "code_postal": "78250", + "coordonnees_gps": [ + 49.0250430993, + 1.91835280056 + ], + "libelle_d_acheminement": "TESSANCOURT SUR AUBETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91835280056, + 49.0250430993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "387373beac14c16f25ca792c2dc4a8e9a34322a0", + "fields": { + "code_commune_insee": "78620", + "nom_de_la_commune": "TOUSSUS LE NOBLE", + "code_postal": "78117", + "coordonnees_gps": [ + 48.7466272252, + 2.1179056339 + ], + "libelle_d_acheminement": "TOUSSUS LE NOBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1179056339, + 48.7466272252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a36f93a942ad67427ebeb4b3582d7df7a74b703", + "fields": { + "code_commune_insee": "78640", + "nom_de_la_commune": "VELIZY VILLACOUBLAY", + "code_postal": "78140", + "coordonnees_gps": [ + 48.783985823, + 2.19707485523 + ], + "libelle_d_acheminement": "VELIZY VILLACOUBLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19707485523, + 48.783985823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99ce862348c8cbf04e546f3c9747396064566bc2", + "fields": { + "code_commune_insee": "78653", + "nom_de_la_commune": "VICQ", + "code_postal": "78490", + "coordonnees_gps": [ + 48.821484306, + 1.82843694709 + ], + "libelle_d_acheminement": "VICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82843694709, + 48.821484306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0b3f48e2083b257cbb09ebc9973ec2456485167", + "fields": { + "code_commune_insee": "78683", + "nom_de_la_commune": "VILLIERS ST FREDERIC", + "code_postal": "78640", + "coordonnees_gps": [ + 48.8201784594, + 1.88250820601 + ], + "libelle_d_acheminement": "VILLIERS ST FREDERIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88250820601, + 48.8201784594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a628487da7514d84770552a9f9fc7f16eeebf48", + "fields": { + "ligne_5": "TESSONNIERE", + "code_commune_insee": "79005", + "libelle_d_acheminement": "AIRVAULT", + "code_postal": "79600", + "nom_de_la_commune": "AIRVAULT", + "coordonnees_gps": [ + 46.8329725103, + -0.135880248296 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.135880248296, + 46.8329725103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1f5d7fe4afa84e5b2e77a3fc18378bfdcf11342", + "fields": { + "code_commune_insee": "79012", + "nom_de_la_commune": "ARDIN", + "code_postal": "79160", + "coordonnees_gps": [ + 46.4816783917, + -0.55505132274 + ], + "libelle_d_acheminement": "ARDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55505132274, + 46.4816783917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a93961923adb7fed80b74ffd9e6fd81a55e69b25", + "fields": { + "ligne_5": "BOESSE", + "code_commune_insee": "79013", + "libelle_d_acheminement": "ARGENTONNAY", + "code_postal": "79150", + "nom_de_la_commune": "ARGENTONNAY", + "coordonnees_gps": [ + 46.9784261272, + -0.468875242934 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.468875242934, + 46.9784261272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db1091ede2e32451cec05200d78f46c2cb7e48be", + "fields": { + "ligne_5": "LE BREUIL SOUS ARGENTON", + "code_commune_insee": "79013", + "libelle_d_acheminement": "ARGENTONNAY", + "code_postal": "79150", + "nom_de_la_commune": "ARGENTONNAY", + "coordonnees_gps": [ + 46.9784261272, + -0.468875242934 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.468875242934, + 46.9784261272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1dcb21fb5d927b45679c4d4a798965b626e4d34", + "fields": { + "ligne_5": "LA CHAPELLE GAUDIN", + "code_commune_insee": "79013", + "libelle_d_acheminement": "ARGENTONNAY", + "code_postal": "79300", + "nom_de_la_commune": "ARGENTONNAY", + "coordonnees_gps": [ + 46.9784261272, + -0.468875242934 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.468875242934, + 46.9784261272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a33cfb6cf9cde8a50a691b70eaf7bfa33ac76cf5", + "fields": { + "ligne_5": "BAGNEUX", + "code_commune_insee": "79014", + "libelle_d_acheminement": "LORETZ D ARGENTON", + "code_postal": "79290", + "nom_de_la_commune": "LORETZ D ARGENTON", + "coordonnees_gps": [ + 47.0529717735, + -0.251510808352 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.251510808352, + 47.0529717735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f1a6013784b93b1a03ba672e55453727d1c65e0", + "fields": { + "code_commune_insee": "79015", + "nom_de_la_commune": "ASNIERES EN POITOU", + "code_postal": "79170", + "coordonnees_gps": [ + 46.0894554355, + -0.211290133628 + ], + "libelle_d_acheminement": "ASNIERES EN POITOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.211290133628, + 46.0894554355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daad2d0ad02c174833ba9299ef1b1ccd94d35b0e", + "fields": { + "code_commune_insee": "79019", + "nom_de_la_commune": "AUBIGNY", + "code_postal": "79390", + "coordonnees_gps": [ + 46.7272853814, + -0.104552795327 + ], + "libelle_d_acheminement": "AUBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.104552795327, + 46.7272853814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "107388871acfd70b5df559ac575fd28072b88608", + "fields": { + "code_commune_insee": "79022", + "nom_de_la_commune": "AVAILLES THOUARSAIS", + "code_postal": "79600", + "coordonnees_gps": [ + 46.8552025032, + -0.136835890651 + ], + "libelle_d_acheminement": "AVAILLES THOUARSAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.136835890651, + 46.8552025032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03666abda8b74b4e07051dac9aebe242da0e4aef", + "fields": { + "code_commune_insee": "79038", + "nom_de_la_commune": "BOISME", + "code_postal": "79300", + "coordonnees_gps": [ + 46.7824800962, + -0.433256356633 + ], + "libelle_d_acheminement": "BOISME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.433256356633, + 46.7824800962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43b945967853db23eb98fb4a3c9e058d6d1bb532", + "fields": { + "code_commune_insee": "79048", + "nom_de_la_commune": "LA CRECHE", + "code_postal": "79260", + "coordonnees_gps": [ + 46.3656964606, + -0.309032604795 + ], + "libelle_d_acheminement": "LA CRECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.309032604795, + 46.3656964606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c2bbc982447eaeada05b55f7256788ccaca3031", + "fields": { + "ligne_5": "NOIRTERRE", + "code_commune_insee": "79049", + "libelle_d_acheminement": "BRESSUIRE", + "code_postal": "79300", + "nom_de_la_commune": "BRESSUIRE", + "coordonnees_gps": [ + 46.8545755683, + -0.479375922286 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479375922286, + 46.8545755683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff710786b3dd34171088df10cf2751207b063feb", + "fields": { + "ligne_5": "VERRINES SOUS CELLES", + "code_commune_insee": "79061", + "libelle_d_acheminement": "CELLES SUR BELLE", + "code_postal": "79370", + "nom_de_la_commune": "CELLES SUR BELLE", + "coordonnees_gps": [ + 46.2405369288, + -0.218181064771 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.218181064771, + 46.2405369288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d85163593f299cda7e4ae717eb09c4b9c9302c2b", + "fields": { + "code_commune_insee": "79062", + "nom_de_la_commune": "CERIZAY", + "code_postal": "79140", + "coordonnees_gps": [ + 46.8217311036, + -0.672469385521 + ], + "libelle_d_acheminement": "CERIZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.672469385521, + 46.8217311036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e50d39fb8c87bb67e091023876993ddcb57d382", + "fields": { + "ligne_5": "CHAIL", + "code_commune_insee": "79064", + "libelle_d_acheminement": "FONTIVILLIE", + "code_postal": "79500", + "nom_de_la_commune": "FONTIVILLIE", + "coordonnees_gps": [ + 46.2032625224, + -0.0778790591165 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0778790591165, + 46.2032625224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd7c65fdc7047bf728a0d063f4f24e1a1188405f", + "fields": { + "code_commune_insee": "79071", + "nom_de_la_commune": "LA CHAPELLE BERTRAND", + "code_postal": "79200", + "coordonnees_gps": [ + 46.6181522688, + -0.191159883501 + ], + "libelle_d_acheminement": "LA CHAPELLE BERTRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.191159883501, + 46.6181522688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2ab847d82173d7197df9b52391cff691081bec1", + "fields": { + "ligne_5": "ST AUBIN DE BAUBIGNE", + "code_commune_insee": "79079", + "libelle_d_acheminement": "MAULEON", + "code_postal": "79700", + "nom_de_la_commune": "MAULEON", + "coordonnees_gps": [ + 46.946804716, + -0.747142973233 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.747142973233, + 46.946804716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63a0b680b89d9eb1b189b58b733633b6c369d227", + "fields": { + "code_commune_insee": "79080", + "nom_de_la_commune": "CHATILLON SUR THOUET", + "code_postal": "79200", + "coordonnees_gps": [ + 46.6725261071, + -0.260421320802 + ], + "libelle_d_acheminement": "CHATILLON SUR THOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.260421320802, + 46.6725261071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "910159dde430f331f4c2c5426b2fdf0f0645a91e", + "fields": { + "code_commune_insee": "79081", + "nom_de_la_commune": "CHAURAY", + "code_postal": "79180", + "coordonnees_gps": [ + 46.3517313978, + -0.380481716309 + ], + "libelle_d_acheminement": "CHAURAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.380481716309, + 46.3517313978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d8536a59f9f57427e70d847113b30cfe25f3aa0", + "fields": { + "code_commune_insee": "79084", + "nom_de_la_commune": "CHENAY", + "code_postal": "79120", + "coordonnees_gps": [ + 46.3306772083, + -0.0114425772663 + ], + "libelle_d_acheminement": "CHENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0114425772663, + 46.3306772083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fe7d127c81a7038c33cd2108cc740d82d1b53cd", + "fields": { + "code_commune_insee": "79106", + "nom_de_la_commune": "COUTURE D ARGENSON", + "code_postal": "79110", + "coordonnees_gps": [ + 45.9956854391, + -0.0844691973496 + ], + "libelle_d_acheminement": "COUTURE D ARGENSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0844691973496, + 45.9956854391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e368c1e1144f58b7b26aa2cca427a1371d1e05d7", + "fields": { + "code_commune_insee": "79108", + "nom_de_la_commune": "DOUX", + "code_postal": "79390", + "coordonnees_gps": [ + 46.7391098577, + 0.00671432055399 + ], + "libelle_d_acheminement": "DOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00671432055399, + 46.7391098577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a10d842cf585f8f2925b6f9e9c54b99df4959cf1", + "fields": { + "code_commune_insee": "79109", + "nom_de_la_commune": "ECHIRE", + "code_postal": "79410", + "coordonnees_gps": [ + 46.3946292281, + -0.426727106349 + ], + "libelle_d_acheminement": "ECHIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.426727106349, + 46.3946292281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7f2bc444a3f56115038d56207f51f33786374ad", + "fields": { + "code_commune_insee": "79111", + "nom_de_la_commune": "ENSIGNE", + "code_postal": "79170", + "coordonnees_gps": [ + 46.0810957498, + -0.257742300306 + ], + "libelle_d_acheminement": "ENSIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.257742300306, + 46.0810957498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84610ad00200638818815803259cff5fbcd14433", + "fields": { + "code_commune_insee": "79117", + "nom_de_la_commune": "FAYE SUR ARDIN", + "code_postal": "79160", + "coordonnees_gps": [ + 46.4422797046, + -0.50477624908 + ], + "libelle_d_acheminement": "FAYE SUR ARDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50477624908, + 46.4422797046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9f423ea42a33b3fa8a7a84665e4f7eba50bee6a", + "fields": { + "ligne_5": "LA RONDE", + "code_commune_insee": "79123", + "libelle_d_acheminement": "LA FORET SUR SEVRE", + "code_postal": "79380", + "nom_de_la_commune": "LA FORET SUR SEVRE", + "coordonnees_gps": [ + 46.7587446345, + -0.648000879918 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.648000879918, + 46.7587446345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "418b650bc6cc45b02463324ba785118b2583ef3a", + "fields": { + "ligne_5": "MONTIGNY", + "code_commune_insee": "79123", + "libelle_d_acheminement": "LA FORET SUR SEVRE", + "code_postal": "79380", + "nom_de_la_commune": "LA FORET SUR SEVRE", + "coordonnees_gps": [ + 46.7587446345, + -0.648000879918 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.648000879918, + 46.7587446345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19c728b13e403686081d09a5f9ae3a30e68b0291", + "fields": { + "code_commune_insee": "79126", + "nom_de_la_commune": "LES FOSSES", + "code_postal": "79360", + "coordonnees_gps": [ + 46.1685885952, + -0.368590910512 + ], + "libelle_d_acheminement": "LES FOSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.368590910512, + 46.1685885952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "095580aad536c918de582f87094c02cad9b7f38b", + "fields": { + "code_commune_insee": "79130", + "nom_de_la_commune": "FRONTENAY ROHAN ROHAN", + "code_postal": "79270", + "coordonnees_gps": [ + 46.2557084922, + -0.540123397468 + ], + "libelle_d_acheminement": "FRONTENAY ROHAN ROHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.540123397468, + 46.2557084922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c8a36587785b5b8a767eb73a7603c581b6efb32", + "fields": { + "code_commune_insee": "79135", + "nom_de_la_commune": "GOURGE", + "code_postal": "79200", + "coordonnees_gps": [ + 46.7252168311, + -0.184292127866 + ], + "libelle_d_acheminement": "GOURGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.184292127866, + 46.7252168311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71e77929fc46bc64639b499e649ad804fc13ee09", + "fields": { + "ligne_5": "GRIPT", + "code_commune_insee": "79137", + "libelle_d_acheminement": "GRANZAY GRIPT", + "code_postal": "79360", + "nom_de_la_commune": "GRANZAY GRIPT", + "coordonnees_gps": [ + 46.2259924524, + -0.480205972926 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.480205972926, + 46.2259924524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7fb0df3b4214388988e4f38ea4da260f26fea9b", + "fields": { + "code_commune_insee": "79139", + "nom_de_la_commune": "LES GROSEILLERS", + "code_postal": "79220", + "coordonnees_gps": [ + 46.5316195525, + -0.406780672579 + ], + "libelle_d_acheminement": "LES GROSEILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.406780672579, + 46.5316195525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65f2105730d965a671b36c85d8dc5873ea40aa6d", + "fields": { + "ligne_5": "PIOUSSAY", + "code_commune_insee": "79140", + "libelle_d_acheminement": "VALDELAUME", + "code_postal": "79110", + "nom_de_la_commune": "VALDELAUME", + "coordonnees_gps": [ + 46.0832090401, + -0.000696246203395 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.000696246203395, + 46.0832090401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bc8a96af546a9071b61b396c450844a79d0b24c", + "fields": { + "code_commune_insee": "79144", + "nom_de_la_commune": "JUSCORPS", + "code_postal": "79230", + "coordonnees_gps": [ + 46.2107424942, + -0.377400693805 + ], + "libelle_d_acheminement": "JUSCORPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.377400693805, + 46.2107424942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cbe4a3f7db97e32a26709117f0a6c7732147806", + "fields": { + "code_commune_insee": "79145", + "nom_de_la_commune": "LAGEON", + "code_postal": "79200", + "coordonnees_gps": [ + 46.7303622992, + -0.249500520917 + ], + "libelle_d_acheminement": "LAGEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.249500520917, + 46.7303622992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4a58bc45d0fa15a348fb41587f492542068bd39", + "fields": { + "code_commune_insee": "79149", + "nom_de_la_commune": "LHOUMOIS", + "code_postal": "79390", + "coordonnees_gps": [ + 46.7064468734, + -0.126840647275 + ], + "libelle_d_acheminement": "LHOUMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.126840647275, + 46.7064468734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "202446a6cd92e88824813989ca5fc13574f21e1f", + "fields": { + "code_commune_insee": "79160", + "nom_de_la_commune": "LUSSERAY", + "code_postal": "79170", + "coordonnees_gps": [ + 46.1453507007, + -0.168954795047 + ], + "libelle_d_acheminement": "LUSSERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.168954795047, + 46.1453507007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "020a001ce9c85bdb0bf7e9bb8969781967924007", + "fields": { + "code_commune_insee": "79163", + "nom_de_la_commune": "MAIRE LEVESCAULT", + "code_postal": "79190", + "coordonnees_gps": [ + 46.1564138724, + 0.0765658334292 + ], + "libelle_d_acheminement": "MAIRE LEVESCAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0765658334292, + 46.1564138724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06a83f7dd92ea12f7cb0d6feb175bd448f5e21cc", + "fields": { + "code_commune_insee": "79174", + "nom_de_la_commune": "MELLE", + "code_postal": "79500", + "coordonnees_gps": [ + 46.2309583731, + -0.147888712984 + ], + "libelle_d_acheminement": "MELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.147888712984, + 46.2309583731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e9fd7bba4d3112e141ffa2d07c029cb0af4078f", + "fields": { + "ligne_5": "ST LEGER DE LA MARTINIERE", + "code_commune_insee": "79174", + "libelle_d_acheminement": "MELLE", + "code_postal": "79500", + "nom_de_la_commune": "MELLE", + "coordonnees_gps": [ + 46.2309583731, + -0.147888712984 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.147888712984, + 46.2309583731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "787ccf561d3365c8b5ff99396e76ea765bb324e7", + "fields": { + "code_commune_insee": "79176", + "nom_de_la_commune": "MENIGOUTE", + "code_postal": "79340", + "coordonnees_gps": [ + 46.4927432547, + -0.0657078750275 + ], + "libelle_d_acheminement": "MENIGOUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0657078750275, + 46.4927432547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "854043ec0a9c18bfee82f8e2ae6152bfb44ba933", + "fields": { + "ligne_5": "MOUTIERS SOUS CHANTEMERLE", + "code_commune_insee": "79179", + "libelle_d_acheminement": "MONCOUTANT SUR SEVRE", + "code_postal": "79320", + "nom_de_la_commune": "MONCOUTANT SUR SEVRE", + "coordonnees_gps": [ + 46.7361693715, + -0.578776799054 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.578776799054, + 46.7361693715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b44dd58743bd55816da38b0a7c03cf4f8401ff6c", + "fields": { + "ligne_5": "MOUGON", + "code_commune_insee": "79185", + "libelle_d_acheminement": "AIGONDIGNE", + "code_postal": "79370", + "nom_de_la_commune": "AIGONDIGNE", + "coordonnees_gps": [ + 46.2907364441, + -0.296041998938 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.296041998938, + 46.2907364441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a392104dcbb61434232ecb064791163cb40f64e3", + "fields": { + "ligne_5": "LES AUBIERS", + "code_commune_insee": "79195", + "libelle_d_acheminement": "NUEIL LES AUBIERS", + "code_postal": "79250", + "nom_de_la_commune": "NUEIL LES AUBIERS", + "coordonnees_gps": [ + 46.9403172404, + -0.596385417876 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.596385417876, + 46.9403172404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4c1a8cc817b1f9c5440e67fe2d85605e6e43a0d", + "fields": { + "ligne_5": "BRIE", + "code_commune_insee": "79196", + "libelle_d_acheminement": "PLAINE ET VALLEES", + "code_postal": "79100", + "nom_de_la_commune": "PLAINE ET VALLEES", + "coordonnees_gps": [ + 46.9369329202, + -0.0842351282064 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0842351282064, + 46.9369329202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3519b35541cc6d4a87f58ca43cef0b3db0caa259", + "fields": { + "ligne_5": "NOIZE", + "code_commune_insee": "79196", + "libelle_d_acheminement": "PLAINE ET VALLEES", + "code_postal": "79100", + "nom_de_la_commune": "PLAINE ET VALLEES", + "coordonnees_gps": [ + 46.9369329202, + -0.0842351282064 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0842351282064, + 46.9369329202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "876ee60c4a72ad5d35e006021fd863392f51aef2", + "fields": { + "code_commune_insee": "79198", + "nom_de_la_commune": "PAIZAY LE CHAPT", + "code_postal": "79170", + "coordonnees_gps": [ + 46.0710589037, + -0.184007366262 + ], + "libelle_d_acheminement": "PAIZAY LE CHAPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.184007366262, + 46.0710589037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9946f4ba6b0306b1a81acdc9b2eae0eaf32d3753", + "fields": { + "code_commune_insee": "79201", + "nom_de_la_commune": "PAMPROUX", + "code_postal": "79800", + "coordonnees_gps": [ + 46.4116775, + -0.0432957775624 + ], + "libelle_d_acheminement": "PAMPROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0432957775624, + 46.4116775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d99035394ba00cea9cd293fb453406865acc1dad", + "fields": { + "code_commune_insee": "79202", + "nom_de_la_commune": "PARTHENAY", + "code_postal": "79200", + "coordonnees_gps": [ + 46.6453493842, + -0.233028439198 + ], + "libelle_d_acheminement": "PARTHENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.233028439198, + 46.6453493842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09703855da4759be4f601815fdcc4d044060fd7d", + "fields": { + "code_commune_insee": "79203", + "nom_de_la_commune": "PAS DE JEU", + "code_postal": "79100", + "coordonnees_gps": [ + 46.9791242431, + -0.062634350018 + ], + "libelle_d_acheminement": "PAS DE JEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.062634350018, + 46.9791242431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ff3b5aa1b1df05061d5977f4f5ac8226afa08c9", + "fields": { + "code_commune_insee": "79207", + "nom_de_la_commune": "LA PETITE BOISSIERE", + "code_postal": "79700", + "coordonnees_gps": [ + 46.8842322145, + -0.735999564213 + ], + "libelle_d_acheminement": "LA PETITE BOISSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.735999564213, + 46.8842322145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "685cd7b63f6581714b21fcd45bce02ec3acec5fc", + "fields": { + "code_commune_insee": "79209", + "nom_de_la_commune": "PIERREFITTE", + "code_postal": "79330", + "coordonnees_gps": [ + 46.8649655632, + -0.303291245227 + ], + "libelle_d_acheminement": "PIERREFITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.303291245227, + 46.8649655632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf36ecf898898582ab0e809d96f64e49cbc21d54", + "fields": { + "code_commune_insee": "79210", + "nom_de_la_commune": "LE PIN", + "code_postal": "79140", + "coordonnees_gps": [ + 46.8785875846, + -0.651643489827 + ], + "libelle_d_acheminement": "LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.651643489827, + 46.8785875846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e3d758c56340312e3eef2283d5840d69294343c", + "fields": { + "code_commune_insee": "79216", + "nom_de_la_commune": "PRAHECQ", + "code_postal": "79230", + "coordonnees_gps": [ + 46.268539716, + -0.344623723709 + ], + "libelle_d_acheminement": "PRAHECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.344623723709, + 46.268539716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e75b14c6cd2af72ca8dbdb094a901b2ce19cc00a", + "fields": { + "ligne_5": "PRAILLES", + "code_commune_insee": "79217", + "libelle_d_acheminement": "PRAILLES LA COUARDE", + "code_postal": "79370", + "nom_de_la_commune": "PRAILLES LA COUARDE", + "coordonnees_gps": [ + 46.3204184079, + -0.202251534086 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.202251534086, + 46.3204184079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da3c40c6af7d39c63677700ba5d5570538b0a498", + "fields": { + "code_commune_insee": "79225", + "nom_de_la_commune": "REFFANNES", + "code_postal": "79420", + "coordonnees_gps": [ + 46.5384833617, + -0.186609763053 + ], + "libelle_d_acheminement": "REFFANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.186609763053, + 46.5384833617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21a5097bdb620806df1da60d57ea73288283530b", + "fields": { + "code_commune_insee": "79229", + "nom_de_la_commune": "LA ROCHENARD", + "code_postal": "79270", + "coordonnees_gps": [ + 46.2012204653, + -0.574638181441 + ], + "libelle_d_acheminement": "LA ROCHENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.574638181441, + 46.2012204653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08767e4bc0cfb66e471f1f803fa209dd282574a2", + "fields": { + "code_commune_insee": "79230", + "nom_de_la_commune": "ROM", + "code_postal": "79120", + "coordonnees_gps": [ + 46.3034951181, + 0.1238295004 + ], + "libelle_d_acheminement": "ROM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1238295004, + 46.3034951181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02d85e00bc1023fe7db793de63bd75f1b41ad1b1", + "fields": { + "code_commune_insee": "79238", + "nom_de_la_commune": "ST AUBIN DU PLAIN", + "code_postal": "79300", + "coordonnees_gps": [ + 46.9236179795, + -0.470709364194 + ], + "libelle_d_acheminement": "ST AUBIN DU PLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.470709364194, + 46.9236179795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe7849cce2a17afbe61773f581238202c77206c4", + "fields": { + "code_commune_insee": "79246", + "nom_de_la_commune": "STE EANNE", + "code_postal": "79800", + "coordonnees_gps": [ + 46.3915503941, + -0.134321812271 + ], + "libelle_d_acheminement": "STE EANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.134321812271, + 46.3915503941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a88b801c2c3384e83c3547c2081f25312f9f1fe", + "fields": { + "ligne_5": "ST GENARD", + "code_commune_insee": "79251", + "libelle_d_acheminement": "MARCILLE", + "code_postal": "79500", + "nom_de_la_commune": "MARCILLE", + "coordonnees_gps": [ + 46.1863394074, + -0.134327171027 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.134327171027, + 46.1863394074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3219c1b53f43d72590c6915a15c27592dbf575b", + "fields": { + "code_commune_insee": "79254", + "nom_de_la_commune": "ST GEORGES DE REX", + "code_postal": "79210", + "coordonnees_gps": [ + 46.2672848492, + -0.659095506677 + ], + "libelle_d_acheminement": "ST GEORGES DE REX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.659095506677, + 46.2672848492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a9d36bd193191160b6eeafb67f55cb9ebc5e1c4", + "fields": { + "code_commune_insee": "79265", + "nom_de_la_commune": "ST LEGER DE MONTBRUN", + "code_postal": "79100", + "coordonnees_gps": [ + 46.989216133, + -0.130757727063 + ], + "libelle_d_acheminement": "ST LEGER DE MONTBRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.130757727063, + 46.989216133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4714ef5f2b66937b0be2e089232869ee0c23fec4", + "fields": { + "ligne_5": "LAMAIRE", + "code_commune_insee": "79268", + "libelle_d_acheminement": "ST LOUP LAMAIRE", + "code_postal": "79600", + "nom_de_la_commune": "ST LOUP LAMAIRE", + "coordonnees_gps": [ + 46.77039082, + -0.157079150205 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.157079150205, + 46.77039082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "527b0446e7c83cb403cbe5c9ec55906488cdf4ac", + "fields": { + "code_commune_insee": "79284", + "nom_de_la_commune": "STE OUENNE", + "code_postal": "79220", + "coordonnees_gps": [ + 46.4384557215, + -0.45255458079 + ], + "libelle_d_acheminement": "STE OUENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45255458079, + 46.4384557215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78a645752c2ce00817a1355d95096326bb45a20c", + "fields": { + "ligne_5": "ST PARDOUX", + "code_commune_insee": "79285", + "libelle_d_acheminement": "ST PARDOUX SOUTIERS", + "code_postal": "79310", + "nom_de_la_commune": "ST PARDOUX SOUTIERS", + "coordonnees_gps": [ + 46.5770616007, + -0.31674359278 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31674359278, + 46.5770616007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdd93935de629686f9957290e558d562c9d47273", + "fields": { + "code_commune_insee": "79289", + "nom_de_la_commune": "ST PIERRE DES ECHAUBROGNES", + "code_postal": "79700", + "coordonnees_gps": [ + 46.9797414702, + -0.751899172602 + ], + "libelle_d_acheminement": "ST PIERRE DES ECHAUBROGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.751899172602, + 46.9797414702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a1a546211c80b44395ea9f90a9fdccd921a7542", + "fields": { + "code_commune_insee": "79290", + "nom_de_la_commune": "ST POMPAIN", + "code_postal": "79160", + "coordonnees_gps": [ + 46.4246945473, + -0.602460764264 + ], + "libelle_d_acheminement": "ST POMPAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.602460764264, + 46.4246945473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b474bd357838b4d24dd879cd66abbe87754968b3", + "fields": { + "code_commune_insee": "79293", + "nom_de_la_commune": "ST REMY", + "code_postal": "79410", + "coordonnees_gps": [ + 46.3713101301, + -0.523390967902 + ], + "libelle_d_acheminement": "ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.523390967902, + 46.3713101301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b72961f57d640e304a07e47dfb684af1c4c3189", + "fields": { + "code_commune_insee": "79300", + "nom_de_la_commune": "STE VERGE", + "code_postal": "79100", + "coordonnees_gps": [ + 47.0128810811, + -0.227694435042 + ], + "libelle_d_acheminement": "STE VERGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.227694435042, + 47.0128810811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c8a8ec7958ff6fd4e053af36bbbf3c5f0df0b9c", + "fields": { + "code_commune_insee": "79304", + "nom_de_la_commune": "SANSAIS", + "code_postal": "79270", + "coordonnees_gps": [ + 46.290244918, + -0.594225936069 + ], + "libelle_d_acheminement": "SANSAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.594225936069, + 46.290244918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3515180e2475b8f62c67e80cf0a1518359c1dfc", + "fields": { + "code_commune_insee": "79313", + "nom_de_la_commune": "SEPVRET", + "code_postal": "79120", + "coordonnees_gps": [ + 46.2902433415, + -0.0945812252792 + ], + "libelle_d_acheminement": "SEPVRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0945812252792, + 46.2902433415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ddd1d7cd47d1e38495cce0a9f757d2dc942e696", + "fields": { + "code_commune_insee": "79316", + "nom_de_la_commune": "SOUDAN", + "code_postal": "79800", + "coordonnees_gps": [ + 46.4323169213, + -0.0959887989813 + ], + "libelle_d_acheminement": "SOUDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0959887989813, + 46.4323169213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cde4ff8569f91f88582970d69f0e336b57e83fb9", + "fields": { + "ligne_5": "RIGNE", + "code_commune_insee": "79329", + "libelle_d_acheminement": "THOUARS", + "code_postal": "79100", + "nom_de_la_commune": "THOUARS", + "coordonnees_gps": [ + 46.9828628407, + -0.199581467021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.199581467021, + 46.9828628407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcfe0e9cd6710255d10c89165deffe040ad87354", + "fields": { + "ligne_5": "STE RADEGONDE", + "code_commune_insee": "79329", + "libelle_d_acheminement": "THOUARS", + "code_postal": "79100", + "nom_de_la_commune": "THOUARS", + "coordonnees_gps": [ + 46.9828628407, + -0.199581467021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.199581467021, + 46.9828628407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc79229ef29b529e0143a0512e80aa500ba4f39e", + "fields": { + "code_commune_insee": "79332", + "nom_de_la_commune": "TRAYES", + "code_postal": "79240", + "coordonnees_gps": [ + 46.6690393835, + -0.48214510069 + ], + "libelle_d_acheminement": "TRAYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48214510069, + 46.6690393835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b31b27491ea526a4605d16ccc399374d22d8a49", + "fields": { + "code_commune_insee": "79337", + "nom_de_la_commune": "LE VANNEAU IRLEAU", + "code_postal": "79270", + "coordonnees_gps": [ + 46.3008415129, + -0.643099715141 + ], + "libelle_d_acheminement": "LE VANNEAU IRLEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.643099715141, + 46.3008415129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1af94538f01e5864846ae2184b21484a09916f48", + "fields": { + "code_commune_insee": "79343", + "nom_de_la_commune": "VERNOUX SUR BOUTONNE", + "code_postal": "79170", + "coordonnees_gps": [ + 46.1579500022, + -0.262109778783 + ], + "libelle_d_acheminement": "VERNOUX SUR BOUTONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.262109778783, + 46.1579500022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "122e9a9d2adf117364ddbffe2ba428339d99dee0", + "fields": { + "code_commune_insee": "79349", + "nom_de_la_commune": "VILLEMAIN", + "code_postal": "79110", + "coordonnees_gps": [ + 46.0168427404, + -0.111271447669 + ], + "libelle_d_acheminement": "VILLEMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.111271447669, + 46.0168427404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c171e1ff1dc31fe93594f1b9e2772a857bcf96a5", + "fields": { + "code_commune_insee": "80008", + "nom_de_la_commune": "AIGNEVILLE", + "code_postal": "80210", + "coordonnees_gps": [ + 50.0367632999, + 1.60998293635 + ], + "libelle_d_acheminement": "AIGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60998293635, + 50.0367632999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac5b198c35636d93c69cc4c6a4a036a1fcc12fe9", + "fields": { + "code_commune_insee": "80018", + "nom_de_la_commune": "ALLENAY", + "code_postal": "80130", + "coordonnees_gps": [ + 50.0864703319, + 1.49294201709 + ], + "libelle_d_acheminement": "ALLENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49294201709, + 50.0864703319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bd4df6f02b5910a3ed87a7ac803d2af7c7d8a85", + "fields": { + "code_commune_insee": "80021", + "nom_de_la_commune": "AMIENS", + "code_postal": "80080", + "coordonnees_gps": [ + 49.9009532186, + 2.29007445539 + ], + "libelle_d_acheminement": "AMIENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29007445539, + 49.9009532186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaf58ffef3ed0a7da71ce1a0c4f35a1d9f23251e", + "fields": { + "code_commune_insee": "80029", + "nom_de_la_commune": "ARREST", + "code_postal": "80820", + "coordonnees_gps": [ + 50.1288264007, + 1.61923803705 + ], + "libelle_d_acheminement": "ARREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61923803705, + 50.1288264007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "729844f81cc49a2febe6d54aa1bd7340b9dee2e7", + "fields": { + "code_commune_insee": "80039", + "nom_de_la_commune": "AULT", + "code_postal": "80460", + "coordonnees_gps": [ + 50.0925488309, + 1.44717519345 + ], + "libelle_d_acheminement": "AULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44717519345, + 50.0925488309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b291a7cce2c032ca3b0326661b124cfa7a1124f", + "fields": { + "code_commune_insee": "80042", + "nom_de_la_commune": "AUTHEUX", + "code_postal": "80600", + "coordonnees_gps": [ + 50.1395423257, + 2.2331435159 + ], + "libelle_d_acheminement": "AUTHEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2331435159, + 50.1395423257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53315857d72c976c6cee45db15607c8ab7aaf824", + "fields": { + "code_commune_insee": "80053", + "nom_de_la_commune": "BALATRE", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7112977032, + 2.86504759397 + ], + "libelle_d_acheminement": "BALATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86504759397, + 49.7112977032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d69462c764a6c4a2a4fbf0ec0a555b15b548e52", + "fields": { + "code_commune_insee": "80056", + "nom_de_la_commune": "BAVELINCOURT", + "code_postal": "80260", + "coordonnees_gps": [ + 50.00064508, + 2.44958045984 + ], + "libelle_d_acheminement": "BAVELINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44958045984, + 50.00064508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ae6ca49ad10c534ebc032d754d9ee30e3c2776d", + "fields": { + "code_commune_insee": "80059", + "nom_de_la_commune": "BAZENTIN", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0297774468, + 2.76647860056 + ], + "libelle_d_acheminement": "BAZENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76647860056, + 50.0297774468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6b138250de8db0e4917225b7930f395d3f42d94", + "fields": { + "code_commune_insee": "80069", + "nom_de_la_commune": "BEAUMONT HAMEL", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0765625531, + 2.65959457808 + ], + "libelle_d_acheminement": "BEAUMONT HAMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65959457808, + 50.0765625531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10cbc3341450ed2a1ccf4a3fe51149ecbc8ddf54", + "fields": { + "code_commune_insee": "80079", + "nom_de_la_commune": "BELLEUSE", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7029480012, + 2.11374292271 + ], + "libelle_d_acheminement": "BELLEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11374292271, + 49.7029480012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a14805c920b2f616ca8a4cec26e74f821060131a", + "fields": { + "ligne_5": "VACQUERIE", + "code_commune_insee": "80086", + "libelle_d_acheminement": "BERNAVILLE", + "code_postal": "80370", + "nom_de_la_commune": "BERNAVILLE", + "coordonnees_gps": [ + 50.1349359626, + 2.17571907159 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17571907159, + 50.1349359626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03a9510d8cf6fdec1291caa393fb51ff3320cac3", + "fields": { + "code_commune_insee": "80094", + "nom_de_la_commune": "BERTEAUCOURT LES THENNES", + "code_postal": "80110", + "coordonnees_gps": [ + 49.8198024582, + 2.46222741859 + ], + "libelle_d_acheminement": "BERTEAUCOURT LES THENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46222741859, + 49.8198024582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8288e60020c6c2c37ccc2220a54f2500ca1cee1a", + "fields": { + "code_commune_insee": "80096", + "nom_de_la_commune": "BETHENCOURT SUR MER", + "code_postal": "80130", + "coordonnees_gps": [ + 50.0753883023, + 1.49950861954 + ], + "libelle_d_acheminement": "BETHENCOURT SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49950861954, + 50.0753883023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a35cec808e42e6e2ceddb5cb4a8b46b37487ecc", + "fields": { + "code_commune_insee": "80100", + "nom_de_la_commune": "BETTENCOURT ST OUEN", + "code_postal": "80610", + "coordonnees_gps": [ + 50.0175313479, + 2.1222553636 + ], + "libelle_d_acheminement": "BETTENCOURT ST OUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1222553636, + 50.0175313479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4057395b871f07bf1fb737ac51cb6f2acedb974", + "fields": { + "code_commune_insee": "80106", + "nom_de_la_commune": "BLANGY SOUS POIX", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7660915332, + 2.00447254772 + ], + "libelle_d_acheminement": "BLANGY SOUS POIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00447254772, + 49.7660915332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de5753cebe87ff20241b6142d23cc6f92d6bdf9d", + "fields": { + "code_commune_insee": "80108", + "nom_de_la_commune": "BOISBERGUES", + "code_postal": "80600", + "coordonnees_gps": [ + 50.153116145, + 2.22236323766 + ], + "libelle_d_acheminement": "BOISBERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22236323766, + 50.153116145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b04b7c236486c497cb7427521da5d243c0bf889", + "fields": { + "code_commune_insee": "80114", + "nom_de_la_commune": "BOSQUEL", + "code_postal": "80160", + "coordonnees_gps": [ + 49.737214267, + 2.21306482831 + ], + "libelle_d_acheminement": "LE BOSQUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21306482831, + 49.737214267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9759c48add716a17c3eb54973084c756f984a072", + "fields": { + "code_commune_insee": "80123", + "nom_de_la_commune": "BOURDON", + "code_postal": "80310", + "coordonnees_gps": [ + 49.9902026288, + 2.08654699872 + ], + "libelle_d_acheminement": "BOURDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08654699872, + 49.9902026288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "873166fc156ed04bc010121be6b2e581ff0c6c60", + "fields": { + "code_commune_insee": "80125", + "nom_de_la_commune": "BOUSSICOURT", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6993761451, + 2.57204034284 + ], + "libelle_d_acheminement": "BOUSSICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57204034284, + 49.6993761451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8b3868271b269af51f2b401771eaa54e7abc29a", + "fields": { + "code_commune_insee": "80128", + "nom_de_la_commune": "BOUVINCOURT EN VERMANDOIS", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8908963311, + 3.04415647131 + ], + "libelle_d_acheminement": "BOUVINCOURT EN VERMANDOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04415647131, + 49.8908963311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a057eca7be10f64502912ec34eab23bf1514b63", + "fields": { + "code_commune_insee": "80132", + "nom_de_la_commune": "BRACHES", + "code_postal": "80110", + "coordonnees_gps": [ + 49.7302364752, + 2.49897574736 + ], + "libelle_d_acheminement": "BRACHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49897574736, + 49.7302364752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ec846e45add6ae38067dca4a58bec456f8fd4f7", + "fields": { + "code_commune_insee": "80134", + "nom_de_la_commune": "BRASSY", + "code_postal": "80160", + "coordonnees_gps": [ + 49.731490735, + 2.05041493122 + ], + "libelle_d_acheminement": "BRASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05041493122, + 49.731490735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9741f696a181d791db60a0e48a07783ae148e34b", + "fields": { + "code_commune_insee": "80135", + "nom_de_la_commune": "BRAY LES MAREUIL", + "code_postal": "80580", + "coordonnees_gps": [ + 50.0514877131, + 1.84854806423 + ], + "libelle_d_acheminement": "BRAY LES MAREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84854806423, + 50.0514877131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e66585ddb15b5a46fd8e450ca2b0a64483e20422", + "fields": { + "code_commune_insee": "80137", + "nom_de_la_commune": "BREILLY", + "code_postal": "80470", + "coordonnees_gps": [ + 49.9293462442, + 2.16426343051 + ], + "libelle_d_acheminement": "BREILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16426343051, + 49.9293462442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fbd53ed9142a548377aeebb773faeaf291a9dea", + "fields": { + "code_commune_insee": "80152", + "nom_de_la_commune": "BUS LA MESIERE", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6380331546, + 2.71416048413 + ], + "libelle_d_acheminement": "BUS LA MESIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71416048413, + 49.6380331546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55a455a91fd889427b7e2480a509d1680dd0c3b2", + "fields": { + "code_commune_insee": "80156", + "nom_de_la_commune": "BUSSY LES DAOURS", + "code_postal": "80800", + "coordonnees_gps": [ + 49.9124884023, + 2.41234649505 + ], + "libelle_d_acheminement": "BUSSY LES DAOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41234649505, + 49.9124884023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33f4156eb69d447fd8eb0c5c0b258ba8e7733fa3", + "fields": { + "code_commune_insee": "80162", + "nom_de_la_commune": "CAIX", + "code_postal": "80170", + "coordonnees_gps": [ + 49.8107478766, + 2.64567730523 + ], + "libelle_d_acheminement": "CAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64567730523, + 49.8107478766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10839388cb801a53ac31bfe304349ae1433d07a9", + "fields": { + "code_commune_insee": "80171", + "nom_de_la_commune": "CAOURS", + "code_postal": "80132", + "coordonnees_gps": [ + 50.1280550287, + 1.88114339899 + ], + "libelle_d_acheminement": "CAOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88114339899, + 50.1280550287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65bdccc18b37a5750d6db5f6f86b05769a3d8ead", + "fields": { + "code_commune_insee": "80180", + "nom_de_la_commune": "CAVILLON", + "code_postal": "80310", + "coordonnees_gps": [ + 49.9182245477, + 2.07548412693 + ], + "libelle_d_acheminement": "CAVILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07548412693, + 49.9182245477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6ce91af05a708046f3b6630938bffe798fd345c", + "fields": { + "code_commune_insee": "80187", + "nom_de_la_commune": "LA CHAUSSEE TIRANCOURT", + "code_postal": "80310", + "coordonnees_gps": [ + 49.9611459637, + 2.16746798026 + ], + "libelle_d_acheminement": "LA CHAUSSEE TIRANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16746798026, + 49.9611459637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6454d511ff6b9becce9bf205591c90cc9ff7763", + "fields": { + "code_commune_insee": "80203", + "nom_de_la_commune": "COLINCAMPS", + "code_postal": "80560", + "coordonnees_gps": [ + 50.1015546044, + 2.60960193283 + ], + "libelle_d_acheminement": "COLINCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60960193283, + 50.1015546044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4e5bd56f749cc9d33104e93a3abf844ce0eab27", + "fields": { + "code_commune_insee": "80206", + "nom_de_la_commune": "CONTALMAISON", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0293857303, + 2.73562069227 + ], + "libelle_d_acheminement": "CONTALMAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73562069227, + 50.0293857303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8146b3452c51acaf41fba9f6807a00247ba7bb0a", + "fields": { + "code_commune_insee": "80215", + "nom_de_la_commune": "COULONVILLERS", + "code_postal": "80135", + "coordonnees_gps": [ + 50.1533593307, + 2.01779110605 + ], + "libelle_d_acheminement": "COULONVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01779110605, + 50.1533593307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f47c2bfa1b4b2bf62ef04b82db3bb816dde39d43", + "fields": { + "code_commune_insee": "80219", + "nom_de_la_commune": "COURCELLES SOUS THOIX", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7211108706, + 2.07600122174 + ], + "libelle_d_acheminement": "COURCELLES SOUS THOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07600122174, + 49.7211108706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "592e2604ca0eb7280c62e1459b4465b66ddae349", + "fields": { + "code_commune_insee": "80221", + "nom_de_la_commune": "CRAMONT", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1529953582, + 2.04893639433 + ], + "libelle_d_acheminement": "CRAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04893639433, + 50.1529953582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c1145c0cea1c81ae00fa3b1ae3ba8102b17cf4d", + "fields": { + "code_commune_insee": "80223", + "nom_de_la_commune": "CREMERY", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7432112752, + 2.82399385307 + ], + "libelle_d_acheminement": "CREMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82399385307, + 49.7432112752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d95babf84c0a7c8df17d3666c697cfba5c9dc7f4", + "fields": { + "code_commune_insee": "80231", + "nom_de_la_commune": "CURLU", + "code_postal": "80360", + "coordonnees_gps": [ + 49.968391929, + 2.81850573633 + ], + "libelle_d_acheminement": "CURLU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81850573633, + 49.968391929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e161b30e0bec1ca37171f489b156c0c1948740c", + "fields": { + "code_commune_insee": "80243", + "nom_de_la_commune": "DOMESMONT", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1201839274, + 2.14393813299 + ], + "libelle_d_acheminement": "DOMESMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14393813299, + 50.1201839274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3b8f6b48408bd77aae476bf3c1f66a5b8107e62", + "fields": { + "ligne_5": "LONGVILLERS", + "code_commune_insee": "80245", + "libelle_d_acheminement": "DOMLEGER LONGVILLERS", + "code_postal": "80370", + "nom_de_la_commune": "DOMLEGER LONGVILLERS", + "coordonnees_gps": [ + 50.155006107, + 2.08731337577 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08731337577, + 50.155006107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "badf8165a581b8583af64366fc8b05e49d1d65c0", + "fields": { + "code_commune_insee": "80249", + "nom_de_la_commune": "DOMQUEUR", + "code_postal": "80620", + "coordonnees_gps": [ + 50.1135608608, + 2.05150566393 + ], + "libelle_d_acheminement": "DOMQUEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05150566393, + 50.1135608608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df30558a081dd15b15cc77c6a77d553e016f6d96", + "fields": { + "code_commune_insee": "80252", + "nom_de_la_commune": "DOUILLY", + "code_postal": "80400", + "coordonnees_gps": [ + 49.7969167916, + 3.05834813816 + ], + "libelle_d_acheminement": "DOUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05834813816, + 49.7969167916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9cd782fe6a8d50db6ff693d39a2e8180f624f31", + "fields": { + "code_commune_insee": "80258", + "nom_de_la_commune": "DRIENCOURT", + "code_postal": "80240", + "coordonnees_gps": [ + 49.9575231361, + 3.00524852659 + ], + "libelle_d_acheminement": "DRIENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00524852659, + 49.9575231361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ec78ccd6f0df5232c87e78a0527cedea282e79a", + "fields": { + "code_commune_insee": "80269", + "nom_de_la_commune": "EPAUMESNIL", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9140770962, + 1.85499988847 + ], + "libelle_d_acheminement": "EPAUMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85499988847, + 49.9140770962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb324359ef068db9d73d3278ad1d64e8b4106f09", + "fields": { + "code_commune_insee": "80270", + "nom_de_la_commune": "EPECAMPS", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1109041034, + 2.15406528883 + ], + "libelle_d_acheminement": "EPECAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15406528883, + 50.1109041034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0a9a3a695dfade4ab799fe99d105a1faf203402", + "fields": { + "code_commune_insee": "80272", + "nom_de_la_commune": "EPENANCOURT", + "code_postal": "80190", + "coordonnees_gps": [ + 49.8202345007, + 2.92950744804 + ], + "libelle_d_acheminement": "EPENANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92950744804, + 49.8202345007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae771d86dbc999dcbfa174440940e8a343d313f8", + "fields": { + "code_commune_insee": "80273", + "nom_de_la_commune": "EPLESSIER", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7843306354, + 1.94046877526 + ], + "libelle_d_acheminement": "EPLESSIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94046877526, + 49.7843306354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "279fe29ab99e1b2b2df708e79b9b0db733d839f5", + "fields": { + "code_commune_insee": "80280", + "nom_de_la_commune": "ERCOURT", + "code_postal": "80210", + "coordonnees_gps": [ + 50.0405703516, + 1.72408461837 + ], + "libelle_d_acheminement": "ERCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72408461837, + 50.0405703516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eab134a4b2875e85de292676b1015edb924ecda", + "fields": { + "code_commune_insee": "80287", + "nom_de_la_commune": "ESTREBOEUF", + "code_postal": "80230", + "coordonnees_gps": [ + 50.153768945, + 1.62848401612 + ], + "libelle_d_acheminement": "ESTREBOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62848401612, + 50.153768945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e2acf82be81b245a412271a997bba2239de90aa", + "fields": { + "code_commune_insee": "80296", + "nom_de_la_commune": "L ETOILE", + "code_postal": "80830", + "coordonnees_gps": [ + 50.0257741586, + 2.03789491434 + ], + "libelle_d_acheminement": "L ETOILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03789491434, + 50.0257741586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "726d6174576601ef794c63771c48a37c2cf38c41", + "fields": { + "code_commune_insee": "80305", + "nom_de_la_commune": "FERRIERES", + "code_postal": "80470", + "coordonnees_gps": [ + 49.8848976333, + 2.17848518817 + ], + "libelle_d_acheminement": "FERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17848518817, + 49.8848976333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f384a4f80b913fa7a231c7ff3e5d50faf6be8261", + "fields": { + "code_commune_insee": "80308", + "nom_de_la_commune": "FEUQUIERES EN VIMEU", + "code_postal": "80210", + "coordonnees_gps": [ + 50.0586890132, + 1.60286717803 + ], + "libelle_d_acheminement": "FEUQUIERES EN VIMEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60286717803, + 50.0586890132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f26ab45743c9a3cab0f4bab8e6f5aa78a132a57", + "fields": { + "code_commune_insee": "80314", + "nom_de_la_commune": "FLERS", + "code_postal": "80360", + "coordonnees_gps": [ + 50.0506500725, + 2.81773522664 + ], + "libelle_d_acheminement": "FLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81773522664, + 50.0506500725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cfa8fe262833f3c4cddf82404a7f1b5c64e2539", + "fields": { + "code_commune_insee": "80317", + "nom_de_la_commune": "FLEURY", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7357232045, + 2.11453536529 + ], + "libelle_d_acheminement": "FLEURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11453536529, + 49.7357232045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5505c4f76bf5711855efe838b7498d80accceff3", + "fields": { + "code_commune_insee": "80327", + "nom_de_la_commune": "FONTAINE SUR MAYE", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2366154293, + 1.93030936101 + ], + "libelle_d_acheminement": "FONTAINE SUR MAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93030936101, + 50.2366154293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4d7f477918bca8fa6ae64c572a4c034eafe7d37", + "fields": { + "code_commune_insee": "80330", + "nom_de_la_commune": "FORCEVILLE EN VIMEU", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9618487041, + 1.7994141824 + ], + "libelle_d_acheminement": "FORCEVILLE EN VIMEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7994141824, + 49.9618487041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1785a6fba7abc7bceb3d5cedcd67938266d7f3ba", + "fields": { + "code_commune_insee": "80337", + "nom_de_la_commune": "FOUENCAMPS", + "code_postal": "80440", + "coordonnees_gps": [ + 49.8191300337, + 2.40787983027 + ], + "libelle_d_acheminement": "FOUENCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40787983027, + 49.8191300337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4426d4377fce0a4e7b5dcb46c5e1d2a211e61f50", + "fields": { + "code_commune_insee": "80342", + "nom_de_la_commune": "FRAMERVILLE RAINECOURT", + "code_postal": "80131", + "coordonnees_gps": [ + 49.8633129954, + 2.72000159396 + ], + "libelle_d_acheminement": "FRAMERVILLE RAINECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72000159396, + 49.8633129954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38a97eba1aa63e977db02226c166f81beec1e9f4", + "fields": { + "code_commune_insee": "80343", + "nom_de_la_commune": "FRAMICOURT", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9560141048, + 1.67720723941 + ], + "libelle_d_acheminement": "FRAMICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67720723941, + 49.9560141048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94f56bdd7730584e1ed776c01fc326061e2f73b7", + "fields": { + "code_commune_insee": "80345", + "nom_de_la_commune": "FRANLEU", + "code_postal": "80210", + "coordonnees_gps": [ + 50.0996882726, + 1.64455046591 + ], + "libelle_d_acheminement": "FRANLEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64455046591, + 50.0996882726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5137c9b20511b89a5387626ad50fa2998a27018", + "fields": { + "code_commune_insee": "80351", + "nom_de_la_commune": "FRECHENCOURT", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9640407626, + 2.43689907824 + ], + "libelle_d_acheminement": "FRECHENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43689907824, + 49.9640407626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d26f221129e69bde9049a8e9fa8b611e5762d147", + "fields": { + "code_commune_insee": "80352", + "nom_de_la_commune": "FREMONTIERS", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7684546166, + 2.07402438428 + ], + "libelle_d_acheminement": "FREMONTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07402438428, + 49.7684546166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a3a96bc68968654653474d6894e911b50cc4c42", + "fields": { + "code_commune_insee": "80354", + "nom_de_la_commune": "FRESNES TILLOLOY", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9824182223, + 1.76035909217 + ], + "libelle_d_acheminement": "FRESNES TILLOLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76035909217, + 49.9824182223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e20bc0e5ac32202356026661a8232450cdb0d3f", + "fields": { + "code_commune_insee": "80359", + "nom_de_la_commune": "FRESNOY LES ROYE", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7408277684, + 2.77942583155 + ], + "libelle_d_acheminement": "FRESNOY LES ROYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77942583155, + 49.7408277684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c9af58406b3f8b66e1a27f9145447b01b471dd3", + "fields": { + "code_commune_insee": "80364", + "nom_de_la_commune": "FRIAUCOURT", + "code_postal": "80460", + "coordonnees_gps": [ + 50.0873184654, + 1.47414674764 + ], + "libelle_d_acheminement": "FRIAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47414674764, + 50.0873184654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "834a1ce61988753943517b115a0546d737514e0a", + "fields": { + "code_commune_insee": "80373", + "nom_de_la_commune": "GAMACHES", + "code_postal": "80220", + "coordonnees_gps": [ + 49.9947189836, + 1.55641684264 + ], + "libelle_d_acheminement": "GAMACHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55641684264, + 49.9947189836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e19a1b83982a9583b9486fe8b2c0cf1dc752eaae", + "fields": { + "code_commune_insee": "80376", + "nom_de_la_commune": "GENTELLES", + "code_postal": "80800", + "coordonnees_gps": [ + 49.8451742087, + 2.45055227862 + ], + "libelle_d_acheminement": "GENTELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45055227862, + 49.8451742087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf5991a80ec9d931b3d8000bf16958c085019280", + "fields": { + "code_commune_insee": "80378", + "nom_de_la_commune": "GINCHY", + "code_postal": "80360", + "coordonnees_gps": [ + 50.0228499931, + 2.8362020646 + ], + "libelle_d_acheminement": "GINCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8362020646, + 50.0228499931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2981692068789fb2864df3bfe01355dbeba5eeb3", + "fields": { + "code_commune_insee": "80380", + "nom_de_la_commune": "GORENFLOS", + "code_postal": "80690", + "coordonnees_gps": [ + 50.0915640184, + 2.0567048062 + ], + "libelle_d_acheminement": "GORENFLOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0567048062, + 50.0915640184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa8bed3375c2d47a18546fd1b865f41a401a330d", + "fields": { + "code_commune_insee": "80385", + "nom_de_la_commune": "GRAND LAVIERS", + "code_postal": "80132", + "coordonnees_gps": [ + 50.1345136521, + 1.7882348767 + ], + "libelle_d_acheminement": "GRAND LAVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7882348767, + 50.1345136521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7573e61ff6eb9485c205715563a9a6d29e504d6b", + "fields": { + "code_commune_insee": "80386", + "nom_de_la_commune": "GRATIBUS", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6830172808, + 2.54937370818 + ], + "libelle_d_acheminement": "GRATIBUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54937370818, + 49.6830172808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "558d26cdb07c990a9fad2b1527f2c50be5bf32a2", + "fields": { + "code_commune_insee": "80395", + "nom_de_la_commune": "GUERBIGNY", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6978131736, + 2.66525578046 + ], + "libelle_d_acheminement": "GUERBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66525578046, + 49.6978131736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d67911aa918275718167c4259dda765648765926", + "fields": { + "code_commune_insee": "80402", + "nom_de_la_commune": "GUIZANCOURT", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7362773037, + 1.99793273671 + ], + "libelle_d_acheminement": "GUIZANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99793273671, + 49.7362773037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "505f98bd6bc8044c152baa9e1e42394bc3fdee7d", + "fields": { + "code_commune_insee": "80403", + "nom_de_la_commune": "GUYENCOURT SUR NOYE", + "code_postal": "80250", + "coordonnees_gps": [ + 49.776486887, + 2.36059657656 + ], + "libelle_d_acheminement": "GUYENCOURT SUR NOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36059657656, + 49.776486887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1087869204756c73ba09ddb7dddb93ecddd4489f", + "fields": { + "code_commune_insee": "80404", + "nom_de_la_commune": "GUYENCOURT SAULCOURT", + "code_postal": "80240", + "coordonnees_gps": [ + 49.9951657772, + 3.08079217149 + ], + "libelle_d_acheminement": "GUYENCOURT SAULCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08079217149, + 49.9951657772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a852efd5d74fe23a030f4923ba7393d864b6667c", + "fields": { + "code_commune_insee": "80405", + "nom_de_la_commune": "HAILLES", + "code_postal": "80440", + "coordonnees_gps": [ + 49.7990959999, + 2.42882019712 + ], + "libelle_d_acheminement": "HAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42882019712, + 49.7990959999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d92972844f62bc6c3df0a5f2adfb060407e30fa4", + "fields": { + "code_commune_insee": "80414", + "nom_de_la_commune": "HANGARD", + "code_postal": "80110", + "coordonnees_gps": [ + 49.8336550417, + 2.50900070848 + ], + "libelle_d_acheminement": "HANGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50900070848, + 49.8336550417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b4ea62070425dbaaa20311eaeb588497243d0b7", + "fields": { + "code_commune_insee": "80417", + "nom_de_la_commune": "HARBONNIERES", + "code_postal": "80131", + "coordonnees_gps": [ + 49.8504605449, + 2.66989455928 + ], + "libelle_d_acheminement": "HARBONNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66989455928, + 49.8504605449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "363c1265109a1fa79faca6a64ab3602b90daa271", + "fields": { + "code_commune_insee": "80420", + "nom_de_la_commune": "HARPONVILLE", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0363058361, + 2.50065859953 + ], + "libelle_d_acheminement": "HARPONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50065859953, + 50.0363058361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6487439e3c2a6f0039c19d98bfcf9699c161a2c", + "fields": { + "code_commune_insee": "80423", + "nom_de_la_commune": "HAVERNAS", + "code_postal": "80670", + "coordonnees_gps": [ + 50.0358722384, + 2.23112667072 + ], + "libelle_d_acheminement": "HAVERNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23112667072, + 50.0358722384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b24a3011de77851fb8a3a816559c5a4eb2b29df0", + "fields": { + "ligne_5": "FRETTEMOLLE", + "code_commune_insee": "80436", + "libelle_d_acheminement": "HESCAMPS", + "code_postal": "80290", + "nom_de_la_commune": "HESCAMPS", + "coordonnees_gps": [ + 49.7288200657, + 1.87751507035 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87751507035, + 49.7288200657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c60f7cdbfee093db715456dfa417ea3afd234f1b", + "fields": { + "ligne_5": "BOISRAULT", + "code_commune_insee": "80443", + "libelle_d_acheminement": "HORNOY LE BOURG", + "code_postal": "80640", + "nom_de_la_commune": "HORNOY LE BOURG", + "coordonnees_gps": [ + 49.8474299808, + 1.90289897698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90289897698, + 49.8474299808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fef75dd6cf3709a247eced5e58a096bdef37a0f", + "fields": { + "ligne_5": "ORIVAL", + "code_commune_insee": "80443", + "libelle_d_acheminement": "HORNOY LE BOURG", + "code_postal": "80640", + "nom_de_la_commune": "HORNOY LE BOURG", + "coordonnees_gps": [ + 49.8474299808, + 1.90289897698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90289897698, + 49.8474299808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8174c036da8b9f5bacc9755cc41f36445e11402", + "fields": { + "code_commune_insee": "80444", + "nom_de_la_commune": "HUCHENNEVILLE", + "code_postal": "80132", + "coordonnees_gps": [ + 50.0482513691, + 1.80273072107 + ], + "libelle_d_acheminement": "HUCHENNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80273072107, + 50.0482513691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f2d78f25b24475da60917c4792b1343785db5d9", + "fields": { + "code_commune_insee": "80450", + "nom_de_la_commune": "INVAL BOIRON", + "code_postal": "80430", + "coordonnees_gps": [ + 49.8812998293, + 1.74688104209 + ], + "libelle_d_acheminement": "INVAL BOIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74688104209, + 49.8812998293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fc246236594738347fd48cffdd0c2dcbd172484", + "fields": { + "code_commune_insee": "80452", + "nom_de_la_commune": "JUMEL", + "code_postal": "80250", + "coordonnees_gps": [ + 49.7623882045, + 2.32285049366 + ], + "libelle_d_acheminement": "JUMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32285049366, + 49.7623882045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d41f97bf681d8ad6eb01723b7236d8be85e64a87", + "fields": { + "code_commune_insee": "80456", + "nom_de_la_commune": "LAFRESGUIMONT ST MARTIN", + "code_postal": "80430", + "coordonnees_gps": [ + 49.8233759898, + 1.81063672969 + ], + "libelle_d_acheminement": "LAFRESGUIMONT ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81063672969, + 49.8233759898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f81e31061d78bfc9f94b97659682096822981ed", + "fields": { + "ligne_5": "LABOISSIERE ST MARTIN", + "code_commune_insee": "80456", + "libelle_d_acheminement": "LAFRESGUIMONT ST MARTIN", + "code_postal": "80430", + "nom_de_la_commune": "LAFRESGUIMONT ST MARTIN", + "coordonnees_gps": [ + 49.8233759898, + 1.81063672969 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81063672969, + 49.8233759898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8aca03261d929a1e6be3d7625b94995037f75bbf", + "fields": { + "code_commune_insee": "80458", + "nom_de_la_commune": "LAHOUSSOYE", + "code_postal": "80800", + "coordonnees_gps": [ + 49.9488537069, + 2.48167422297 + ], + "libelle_d_acheminement": "LAHOUSSOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48167422297, + 49.9488537069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7f822d13f1a53b4da0dae3ed28413d3a24874d2", + "fields": { + "code_commune_insee": "80460", + "nom_de_la_commune": "LAMARONDE", + "code_postal": "80290", + "coordonnees_gps": [ + 49.8038232454, + 1.90392205707 + ], + "libelle_d_acheminement": "LAMARONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90392205707, + 49.8038232454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93a95ac8338992eb7b4bdc58ff1c0affed72a582", + "fields": { + "code_commune_insee": "80461", + "nom_de_la_commune": "LAMOTTE BREBIERE", + "code_postal": "80450", + "coordonnees_gps": [ + 49.8946355893, + 2.39437471937 + ], + "libelle_d_acheminement": "LAMOTTE BREBIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39437471937, + 49.8946355893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9e8a0419be578309e69ee7f1986127e2f329455", + "fields": { + "code_commune_insee": "80462", + "nom_de_la_commune": "LAMOTTE BULEUX", + "code_postal": "80150", + "coordonnees_gps": [ + 50.1865666179, + 1.83564836965 + ], + "libelle_d_acheminement": "LAMOTTE BULEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83564836965, + 50.1865666179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "473f800c0a51c665f64487243748821fd7172e91", + "fields": { + "code_commune_insee": "80463", + "nom_de_la_commune": "LAMOTTE WARFUSEE", + "code_postal": "80800", + "coordonnees_gps": [ + 49.8753301575, + 2.59140340435 + ], + "libelle_d_acheminement": "LAMOTTE WARFUSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59140340435, + 49.8753301575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5edf4561147200e01803df297d77d30bc85923d1", + "fields": { + "ligne_5": "WARFUSEE ABANCOURT", + "code_commune_insee": "80463", + "libelle_d_acheminement": "LAMOTTE WARFUSEE", + "code_postal": "80800", + "nom_de_la_commune": "LAMOTTE WARFUSEE", + "coordonnees_gps": [ + 49.8753301575, + 2.59140340435 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59140340435, + 49.8753301575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3de4ec328da7f91e387d1fb64b01f4bc886e866d", + "fields": { + "code_commune_insee": "80472", + "nom_de_la_commune": "LESBOEUFS", + "code_postal": "80360", + "coordonnees_gps": [ + 50.0441508716, + 2.85744124696 + ], + "libelle_d_acheminement": "LESBOEUFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85744124696, + 50.0441508716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f44785915b0ebab6d2e9b04ae795f5e78956a026", + "fields": { + "code_commune_insee": "80474", + "nom_de_la_commune": "LICOURT", + "code_postal": "80320", + "coordonnees_gps": [ + 49.8252640948, + 2.90244225748 + ], + "libelle_d_acheminement": "LICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90244225748, + 49.8252640948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "118b0d43c2268575b8f26dcdbe78e408cc0f7224", + "fields": { + "code_commune_insee": "80476", + "nom_de_la_commune": "LIERCOURT", + "code_postal": "80580", + "coordonnees_gps": [ + 50.0328501095, + 1.89702785337 + ], + "libelle_d_acheminement": "LIERCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89702785337, + 50.0328501095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd43fc62651cb4ecb95dc7b37aea1983d7b7f02b", + "fields": { + "code_commune_insee": "80477", + "nom_de_la_commune": "LIGESCOURT", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2903292163, + 1.87136971032 + ], + "libelle_d_acheminement": "LIGESCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87136971032, + 50.2903292163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48dce96d0d29a37b64e862680f8ba5ef51d770bc", + "fields": { + "code_commune_insee": "80486", + "nom_de_la_commune": "LONG", + "code_postal": "80510", + "coordonnees_gps": [ + 50.0414163868, + 1.9882949224 + ], + "libelle_d_acheminement": "LONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9882949224, + 50.0414163868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "107b71938b0f6bc05bf47f4eb0f5772d4fc7183a", + "fields": { + "code_commune_insee": "80489", + "nom_de_la_commune": "LONGUEAU", + "code_postal": "80330", + "coordonnees_gps": [ + 49.8725071478, + 2.3569860752 + ], + "libelle_d_acheminement": "LONGUEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3569860752, + 49.8725071478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32d14fc7061a7ed10ed5287ad331108814a79631", + "fields": { + "code_commune_insee": "80494", + "nom_de_la_commune": "LOUVRECHY", + "code_postal": "80250", + "coordonnees_gps": [ + 49.7318985145, + 2.39721661859 + ], + "libelle_d_acheminement": "LOUVRECHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39721661859, + 49.7318985145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02248a3855a7e6e42de9a09dcef14457a19cc2b6", + "fields": { + "code_commune_insee": "80495", + "nom_de_la_commune": "LUCHEUX", + "code_postal": "80600", + "coordonnees_gps": [ + 50.2007727466, + 2.41954614841 + ], + "libelle_d_acheminement": "LUCHEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41954614841, + 50.2007727466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "635b1f43f497ea80c7ec3cdf49f8d94dd19c8d72", + "fields": { + "code_commune_insee": "80498", + "nom_de_la_commune": "MAILLY MAILLET", + "code_postal": "80560", + "coordonnees_gps": [ + 50.080228584, + 2.59367423129 + ], + "libelle_d_acheminement": "MAILLY MAILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59367423129, + 50.080228584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e348dac5f3311d8e14b951d0e570bac6c22f0e6f", + "fields": { + "code_commune_insee": "80499", + "nom_de_la_commune": "MAILLY RAINEVAL", + "code_postal": "80110", + "coordonnees_gps": [ + 49.7424922683, + 2.44960339901 + ], + "libelle_d_acheminement": "MAILLY RAINEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44960339901, + 49.7424922683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6eaecb2f04d803dfe0befa699f90260564484d13", + "fields": { + "code_commune_insee": "80500", + "nom_de_la_commune": "MAISNIERES", + "code_postal": "80220", + "coordonnees_gps": [ + 50.0146470358, + 1.6091770651 + ], + "libelle_d_acheminement": "MAISNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6091770651, + 50.0146470358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e3ea5bf13e6886089a54a0b0440a52b7e4c18ed", + "fields": { + "code_commune_insee": "80512", + "nom_de_la_commune": "MAREUIL CAUBERT", + "code_postal": "80132", + "coordonnees_gps": [ + 50.0709955291, + 1.82600353459 + ], + "libelle_d_acheminement": "MAREUIL CAUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82600353459, + 50.0709955291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f3c62c290591468973c407e71868477b5a5f756", + "fields": { + "code_commune_insee": "80513", + "nom_de_la_commune": "MARICOURT", + "code_postal": "80360", + "coordonnees_gps": [ + 49.9808314215, + 2.78477314486 + ], + "libelle_d_acheminement": "MARICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78477314486, + 49.9808314215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3f21531261c6f8fb1853294c3898349cd839ff7", + "fields": { + "code_commune_insee": "80521", + "nom_de_la_commune": "MAUREPAS", + "code_postal": "80360", + "coordonnees_gps": [ + 49.9853157676, + 2.85285166012 + ], + "libelle_d_acheminement": "MAUREPAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85285166012, + 49.9853157676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc2bd0b6af3582bc9eca17e8b1785f0e0ae06a7e", + "fields": { + "code_commune_insee": "80528", + "nom_de_la_commune": "MEREAUCOURT", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7302551536, + 1.93106874547 + ], + "libelle_d_acheminement": "MEREAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93106874547, + 49.7302551536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48bfe6f3d81ee576cc4b408792c08bae2ade2220", + "fields": { + "code_commune_insee": "80530", + "nom_de_la_commune": "MERICOURT L ABBE", + "code_postal": "80800", + "coordonnees_gps": [ + 49.945066215, + 2.56298035307 + ], + "libelle_d_acheminement": "MERICOURT L ABBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56298035307, + 49.945066215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "036275d9d4fe76d1696dd70e47f0afd40822443a", + "fields": { + "code_commune_insee": "80531", + "nom_de_la_commune": "MERICOURT EN VIMEU", + "code_postal": "80640", + "coordonnees_gps": [ + 49.8943599561, + 1.94624178875 + ], + "libelle_d_acheminement": "MERICOURT EN VIMEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94624178875, + 49.8943599561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbc93961416a8ccc2952bd6a86df994810040996", + "fields": { + "code_commune_insee": "80537", + "nom_de_la_commune": "MESNIL DOMQUEUR", + "code_postal": "80620", + "coordonnees_gps": [ + 50.1336917622, + 2.06307688394 + ], + "libelle_d_acheminement": "MESNIL DOMQUEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06307688394, + 50.1336917622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20d07d6603432c46f8e6c105cb1eb3381e10b850", + "fields": { + "code_commune_insee": "80547", + "nom_de_la_commune": "MILLENCOURT", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0012076489, + 2.59744918705 + ], + "libelle_d_acheminement": "MILLENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59744918705, + 50.0012076489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0532612ad21ccc2cf0f1f4163bbf46a48dee1857", + "fields": { + "code_commune_insee": "80552", + "nom_de_la_commune": "MOISLAINS", + "code_postal": "80200", + "coordonnees_gps": [ + 49.9944569614, + 2.96706365321 + ], + "libelle_d_acheminement": "MOISLAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96706365321, + 49.9944569614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "949347b0fe328e0943fc882baefbe5bd0319f35b", + "fields": { + "code_commune_insee": "80553", + "nom_de_la_commune": "MOLLIENS AU BOIS", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9891382891, + 2.38068499565 + ], + "libelle_d_acheminement": "MOLLIENS AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38068499565, + 49.9891382891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b043539ce754572c49f1254134e867123c20abf6", + "fields": { + "code_commune_insee": "80557", + "nom_de_la_commune": "ESTREES MONS", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8792650638, + 3.00854833649 + ], + "libelle_d_acheminement": "ESTREES MONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00854833649, + 49.8792650638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d41cc7925278e006bf29458ceba817a27aab493b", + "fields": { + "ligne_5": "ESTREES EN CHAUSSEE", + "code_commune_insee": "80557", + "libelle_d_acheminement": "ESTREES MONS", + "code_postal": "80200", + "nom_de_la_commune": "ESTREES MONS", + "coordonnees_gps": [ + 49.8792650638, + 3.00854833649 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00854833649, + 49.8792650638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a8ae10b02adc0b513e7cfcb8b47cfe3ea99ae6a", + "fields": { + "code_commune_insee": "80574", + "nom_de_la_commune": "MOUFLERS", + "code_postal": "80690", + "coordonnees_gps": [ + 50.0444725636, + 2.05639720949 + ], + "libelle_d_acheminement": "MOUFLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05639720949, + 50.0444725636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "424bf06a3867880461c3e9bd079990347815edc8", + "fields": { + "code_commune_insee": "80588", + "nom_de_la_commune": "NEUFMOULIN", + "code_postal": "80132", + "coordonnees_gps": [ + 50.1259221155, + 1.90411559501 + ], + "libelle_d_acheminement": "NEUFMOULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90411559501, + 50.1259221155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "689965028fdd9e92197a1bc9f5ef7623338bf652", + "fields": { + "code_commune_insee": "80589", + "nom_de_la_commune": "NEUILLY LE DIEN", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2260892349, + 2.04754518311 + ], + "libelle_d_acheminement": "NEUILLY LE DIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04754518311, + 50.2260892349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1054e6e1da4388e791ef3eb19f89d133771a5ee7", + "fields": { + "code_commune_insee": "80609", + "nom_de_la_commune": "ONEUX", + "code_postal": "80135", + "coordonnees_gps": [ + 50.1482964725, + 1.98062619732 + ], + "libelle_d_acheminement": "ONEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98062619732, + 50.1482964725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "115b6503e7fd648cbbd169ec455edf3d5d756613", + "fields": { + "code_commune_insee": "80611", + "nom_de_la_commune": "ORESMAUX", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7665369193, + 2.26891551501 + ], + "libelle_d_acheminement": "ORESMAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26891551501, + 49.7665369193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d983fb85191566d4449fdf03bb622c940359a78", + "fields": { + "code_commune_insee": "80613", + "nom_de_la_commune": "OUST MAREST", + "code_postal": "80460", + "coordonnees_gps": [ + 50.0485837272, + 1.4684909272 + ], + "libelle_d_acheminement": "OUST MAREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4684909272, + 50.0485837272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21762d6156b0a7e4d7b31a606c0f43c43c28477f", + "fields": { + "code_commune_insee": "80615", + "nom_de_la_commune": "OVILLERS LA BOISSELLE", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0291342676, + 2.69870692069 + ], + "libelle_d_acheminement": "OVILLERS LA BOISSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69870692069, + 50.0291342676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "617ea8190f57406c87147199799441dd5220413a", + "fields": { + "ligne_5": "LE QUESNOY", + "code_commune_insee": "80617", + "libelle_d_acheminement": "PARVILLERS LE QUESNOY", + "code_postal": "80700", + "nom_de_la_commune": "PARVILLERS LE QUESNOY", + "coordonnees_gps": [ + 49.7466464905, + 2.72555344352 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72555344352, + 49.7466464905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dc13c04f8a5c3cb85d83e0b9e562c4860aa57e4", + "fields": { + "code_commune_insee": "80624", + "nom_de_la_commune": "PIERREGOT", + "code_postal": "80260", + "coordonnees_gps": [ + 50.0077895959, + 2.38046356254 + ], + "libelle_d_acheminement": "PIERREGOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38046356254, + 50.0077895959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3d46971495cc503ae469f43639c6033739d8c47", + "fields": { + "ligne_5": "CONTOIRE", + "code_commune_insee": "80625", + "libelle_d_acheminement": "TROIS RIVIERES", + "code_postal": "80500", + "nom_de_la_commune": "TROIS RIVIERES", + "coordonnees_gps": [ + 49.7068924487, + 2.5511767234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5511767234, + 49.7068924487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "205a0cf9be9ea88b9e9c21680fd15d062302c07c", + "fields": { + "code_commune_insee": "80631", + "nom_de_la_commune": "PONCHES ESTRUVAL", + "code_postal": "80150", + "coordonnees_gps": [ + 50.3101137793, + 1.87589229818 + ], + "libelle_d_acheminement": "PONCHES ESTRUVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87589229818, + 50.3101137793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "192b473d00952158df03842aa0313f89223d44fd", + "fields": { + "code_commune_insee": "80633", + "nom_de_la_commune": "PONTHOILE", + "code_postal": "80860", + "coordonnees_gps": [ + 50.2184715129, + 1.70629194406 + ], + "libelle_d_acheminement": "PONTHOILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70629194406, + 50.2184715129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddfb9b011a936e30f5a614fa2ec05229f46250ba", + "fields": { + "code_commune_insee": "80640", + "nom_de_la_commune": "POZIERES", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0416240596, + 2.72336179516 + ], + "libelle_d_acheminement": "POZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72336179516, + 50.0416240596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57bc88f9115856bffe10fa6383719cb2ca6ead1a", + "fields": { + "code_commune_insee": "80647", + "nom_de_la_commune": "PUZEAUX", + "code_postal": "80320", + "coordonnees_gps": [ + 49.7985997046, + 2.82666272798 + ], + "libelle_d_acheminement": "PUZEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82666272798, + 49.7985997046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c52195e6228cbb8cdb6fb958642e593e2f739886", + "fields": { + "code_commune_insee": "80652", + "nom_de_la_commune": "LE QUESNEL", + "code_postal": "80118", + "coordonnees_gps": [ + 49.7820002151, + 2.62386030353 + ], + "libelle_d_acheminement": "LE QUESNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62386030353, + 49.7820002151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2243e1c76780a5efc7d6b3915ac2acbdcaaabea9", + "fields": { + "code_commune_insee": "80661", + "nom_de_la_commune": "RAINNEVILLE", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9739949496, + 2.36189417533 + ], + "libelle_d_acheminement": "RAINNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36189417533, + 49.9739949496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3c9c4f945d566458e9e6c64f98e7e379b0dc8fd", + "fields": { + "code_commune_insee": "80663", + "nom_de_la_commune": "RAMBURES", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9406734794, + 1.69572636925 + ], + "libelle_d_acheminement": "RAMBURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69572636925, + 49.9406734794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3db173e6a0bd26240912307caa195d946751540a", + "fields": { + "code_commune_insee": "80664", + "nom_de_la_commune": "RANCOURT", + "code_postal": "80360", + "coordonnees_gps": [ + 50.0030301832, + 2.90339507593 + ], + "libelle_d_acheminement": "RANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90339507593, + 50.0030301832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd3fa5ba56393b7b77440559b7114cd3a3b033d8", + "fields": { + "code_commune_insee": "80672", + "nom_de_la_commune": "RIBEMONT SUR ANCRE", + "code_postal": "80800", + "coordonnees_gps": [ + 49.9716473048, + 2.55901674513 + ], + "libelle_d_acheminement": "RIBEMONT SUR ANCRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55901674513, + 49.9716473048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f030f143107ae330bbd7131efabf544b8160cda2", + "fields": { + "code_commune_insee": "80673", + "nom_de_la_commune": "RIENCOURT", + "code_postal": "80310", + "coordonnees_gps": [ + 49.9204765041, + 2.02957741355 + ], + "libelle_d_acheminement": "RIENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02957741355, + 49.9204765041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae63b0b15cddc981c762bcb3552096117e91eaae", + "fields": { + "code_commune_insee": "80676", + "nom_de_la_commune": "ROIGLISE", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6828051752, + 2.83469335612 + ], + "libelle_d_acheminement": "ROIGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83469335612, + 49.6828051752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61b7088c39087f4d32fdb558613fcc69f0a6066c", + "fields": { + "code_commune_insee": "80682", + "nom_de_la_commune": "ROUVROY EN SANTERRE", + "code_postal": "80170", + "coordonnees_gps": [ + 49.7680945713, + 2.71199955174 + ], + "libelle_d_acheminement": "ROUVROY EN SANTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71199955174, + 49.7680945713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daa2463e56cabb5f3bc84474a543f9add135e314", + "fields": { + "code_commune_insee": "80685", + "nom_de_la_commune": "ROYE", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6936899931, + 2.78868757676 + ], + "libelle_d_acheminement": "ROYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78868757676, + 49.6936899931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc22a64328b87791af3da7257ff5e71d39f3db55", + "fields": { + "code_commune_insee": "80686", + "nom_de_la_commune": "RUBEMPRE", + "code_postal": "80260", + "coordonnees_gps": [ + 50.018748722, + 2.37181069016 + ], + "libelle_d_acheminement": "RUBEMPRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37181069016, + 50.018748722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24c5418eac2eb42fffb70030b585f7716f83bd1a", + "fields": { + "code_commune_insee": "80687", + "nom_de_la_commune": "RUBESCOURT", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6100172663, + 2.57571803855 + ], + "libelle_d_acheminement": "RUBESCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57571803855, + 49.6100172663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a039f080b69e7d0753122cc2ed8f2be8e5469d3", + "fields": { + "code_commune_insee": "80694", + "nom_de_la_commune": "SAILLY LE SEC", + "code_postal": "80800", + "coordonnees_gps": [ + 49.927194423, + 2.58905061259 + ], + "libelle_d_acheminement": "SAILLY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58905061259, + 49.927194423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f722c1c971f2c0a5cd504ade2f478f81515f85f5", + "fields": { + "code_commune_insee": "80725", + "nom_de_la_commune": "SALOUEL", + "code_postal": "80480", + "coordonnees_gps": [ + 49.8699278387, + 2.24181586447 + ], + "libelle_d_acheminement": "SALOUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24181586447, + 49.8699278387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b60322ef1fed1619c1aa350a6d60de0135308369", + "fields": { + "code_commune_insee": "80728", + "nom_de_la_commune": "SAULCHOY SOUS POIX", + "code_postal": "80290", + "coordonnees_gps": [ + 49.756979909, + 1.93890741162 + ], + "libelle_d_acheminement": "SAULCHOY SOUS POIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93890741162, + 49.756979909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50228abf4df600b89ea07733d92c35ef715d9150", + "fields": { + "code_commune_insee": "80729", + "nom_de_la_commune": "SAUVILLERS MONGIVAL", + "code_postal": "80110", + "coordonnees_gps": [ + 49.7197869951, + 2.46620070859 + ], + "libelle_d_acheminement": "SAUVILLERS MONGIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46620070859, + 49.7197869951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89ea644f63783bf5c9262c565ff4a041fdde475a", + "fields": { + "code_commune_insee": "80730", + "nom_de_la_commune": "SAVEUSE", + "code_postal": "80470", + "coordonnees_gps": [ + 49.8961064636, + 2.20932519977 + ], + "libelle_d_acheminement": "SAVEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20932519977, + 49.8961064636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c05054e1896b4c01fe517e4bf7312bffaf63281", + "fields": { + "code_commune_insee": "80737", + "nom_de_la_commune": "SOREL", + "code_postal": "80240", + "coordonnees_gps": [ + 50.0252192747, + 3.05248043426 + ], + "libelle_d_acheminement": "SOREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05248043426, + 50.0252192747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8245c0d05fd278ddc58d1b92cc604162c128b611", + "fields": { + "code_commune_insee": "80738", + "nom_de_la_commune": "SOUES", + "code_postal": "80310", + "coordonnees_gps": [ + 49.9531535495, + 2.05747243579 + ], + "libelle_d_acheminement": "SOUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05747243579, + 49.9531535495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1002002f8eed52219769a25216e027aea2319e2", + "fields": { + "code_commune_insee": "80741", + "nom_de_la_commune": "SOYECOURT", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8638103438, + 2.79512790188 + ], + "libelle_d_acheminement": "SOYECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79512790188, + 49.8638103438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a054c1e50b58c68a390d680b6a3d6d590b2d4eb", + "fields": { + "code_commune_insee": "80747", + "nom_de_la_commune": "TEMPLEUX LA FOSSE", + "code_postal": "80240", + "coordonnees_gps": [ + 49.9713168478, + 3.02444783874 + ], + "libelle_d_acheminement": "TEMPLEUX LA FOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02444783874, + 49.9713168478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "282d0f8d791da2860ed2c31aa233766bf6161909", + "fields": { + "code_commune_insee": "80750", + "nom_de_la_commune": "TERTRY", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8596732024, + 3.07111098486 + ], + "libelle_d_acheminement": "TERTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07111098486, + 49.8596732024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53957fd71353e1104d007614be5afa017acf3195", + "fields": { + "code_commune_insee": "80752", + "nom_de_la_commune": "THEZY GLIMONT", + "code_postal": "80440", + "coordonnees_gps": [ + 49.8215763774, + 2.43770954257 + ], + "libelle_d_acheminement": "THEZY GLIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43770954257, + 49.8215763774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7ad7c158e3fec94dae86608bcab08f51cdf905c", + "fields": { + "code_commune_insee": "80754", + "nom_de_la_commune": "THIEULLOY L ABBAYE", + "code_postal": "80640", + "coordonnees_gps": [ + 49.8202594794, + 1.94419558034 + ], + "libelle_d_acheminement": "THIEULLOY L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94419558034, + 49.8202594794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3972fcd26d1ef044523a1e4ca2b5504cfc624a13", + "fields": { + "code_commune_insee": "80765", + "nom_de_la_commune": "TOURS EN VIMEU", + "code_postal": "80210", + "coordonnees_gps": [ + 50.0353174379, + 1.68426454279 + ], + "libelle_d_acheminement": "TOURS EN VIMEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68426454279, + 50.0353174379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac8033744c31e5f08b0c15868350b12fdd00a36f", + "fields": { + "code_commune_insee": "80766", + "nom_de_la_commune": "TOUTENCOURT", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0454543871, + 2.46506066203 + ], + "libelle_d_acheminement": "TOUTENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46506066203, + 50.0454543871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15f14dedf3b01245ff32f4fd6fad9fac54a5e912", + "fields": { + "code_commune_insee": "80769", + "nom_de_la_commune": "TREUX", + "code_postal": "80300", + "coordonnees_gps": [ + 49.9513815906, + 2.59162319356 + ], + "libelle_d_acheminement": "TREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59162319356, + 49.9513815906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fe7723b188fee033f8825747f075782622a67db", + "fields": { + "code_commune_insee": "80774", + "nom_de_la_commune": "VAIRE SOUS CORBIE", + "code_postal": "80800", + "coordonnees_gps": [ + 49.9016450158, + 2.5492857992 + ], + "libelle_d_acheminement": "VAIRE SOUS CORBIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5492857992, + 49.9016450158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef2d9a2224599622c4066948e660941080742be0", + "fields": { + "code_commune_insee": "80781", + "nom_de_la_commune": "VAUVILLERS", + "code_postal": "80131", + "coordonnees_gps": [ + 49.8430127523, + 2.7058576874 + ], + "libelle_d_acheminement": "VAUVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7058576874, + 49.8430127523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ac6c86b3ea3bcf57f5be99b7377b1eb479347c6", + "fields": { + "code_commune_insee": "80783", + "nom_de_la_commune": "VAUX MARQUENNEVILLE", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9885220384, + 1.78442284949 + ], + "libelle_d_acheminement": "VAUX MARQUENNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78442284949, + 49.9885220384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48cd1670e852cc0d957bf9fd53b27e0e92ad3d83", + "fields": { + "code_commune_insee": "80786", + "nom_de_la_commune": "VELENNES", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7672246185, + 2.09877654821 + ], + "libelle_d_acheminement": "VELENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09877654821, + 49.7672246185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b08678b92a856299bd057cc2608875c20008fe57", + "fields": { + "code_commune_insee": "80788", + "nom_de_la_commune": "VERGIES", + "code_postal": "80270", + "coordonnees_gps": [ + 49.9342747834, + 1.84569726721 + ], + "libelle_d_acheminement": "VERGIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84569726721, + 49.9342747834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c26bb451b00406cd6a285c29abcdc0ee64009e9", + "fields": { + "code_commune_insee": "80795", + "nom_de_la_commune": "VILLE LE MARCLET", + "code_postal": "80420", + "coordonnees_gps": [ + 50.0398514949, + 2.09051285594 + ], + "libelle_d_acheminement": "VILLE LE MARCLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09051285594, + 50.0398514949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "434dda07cae5610c81e95802c36cb713ac3fb354", + "fields": { + "code_commune_insee": "80805", + "nom_de_la_commune": "VILLERS TOURNELLE", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6512167089, + 2.46394056647 + ], + "libelle_d_acheminement": "VILLERS TOURNELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46394056647, + 49.6512167089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22caf6fb1a198c7b74ed3a5ad2f2b46cd630ddf1", + "fields": { + "code_commune_insee": "80807", + "nom_de_la_commune": "VILLE SUR ANCRE", + "code_postal": "80300", + "coordonnees_gps": [ + 49.9543257069, + 2.61358253822 + ], + "libelle_d_acheminement": "VILLE SUR ANCRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61358253822, + 49.9543257069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe05f1f9fae0d020024a985cb09d434f931c1aff", + "fields": { + "code_commune_insee": "80826", + "nom_de_la_commune": "WOIGNARUE", + "code_postal": "80460", + "coordonnees_gps": [ + 50.1195519125, + 1.48625273375 + ], + "libelle_d_acheminement": "WOIGNARUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48625273375, + 50.1195519125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b485c9b4c6ebf6aed36927a3567aa09fd3e1d2d7", + "fields": { + "code_commune_insee": "80834", + "nom_de_la_commune": "YZENGREMER", + "code_postal": "80520", + "coordonnees_gps": [ + 50.0601121166, + 1.51829137537 + ], + "libelle_d_acheminement": "YZENGREMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51829137537, + 50.0601121166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91e9d232f3e06a63e4e7427b0061d73220dc0eef", + "fields": { + "code_commune_insee": "81009", + "nom_de_la_commune": "AMARENS", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0438938289, + 1.92108502728 + ], + "libelle_d_acheminement": "AMARENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92108502728, + 44.0438938289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea645d5de7907be522f4575ddd5f15b5edb348db", + "fields": { + "code_commune_insee": "81015", + "nom_de_la_commune": "APPELLE", + "code_postal": "81700", + "coordonnees_gps": [ + 43.5806834944, + 1.95329824844 + ], + "libelle_d_acheminement": "APPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95329824844, + 43.5806834944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f3c42b3f8974e9f62bcb24bdb1771fb1ec88e24", + "fields": { + "code_commune_insee": "81018", + "nom_de_la_commune": "ARTHES", + "code_postal": "81160", + "coordonnees_gps": [ + 43.9638815505, + 2.22587013595 + ], + "libelle_d_acheminement": "ARTHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22587013595, + 43.9638815505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80caa1e38bb4775f367c9940f176cf8125a46161", + "fields": { + "code_commune_insee": "81021", + "nom_de_la_commune": "AUSSILLON", + "code_postal": "81200", + "coordonnees_gps": [ + 43.4946823944, + 2.35580492552 + ], + "libelle_d_acheminement": "AUSSILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35580492552, + 43.4946823944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93536e833a059ec6594c894fc6af52dd183ebc1f", + "fields": { + "code_commune_insee": "81030", + "nom_de_la_commune": "BERTRE", + "code_postal": "81700", + "coordonnees_gps": [ + 43.6053640705, + 1.94349435829 + ], + "libelle_d_acheminement": "BERTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94349435829, + 43.6053640705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a0ce5000dc3c2f9685743a5df1e67f2c2495664", + "fields": { + "code_commune_insee": "81038", + "nom_de_la_commune": "BRENS", + "code_postal": "81600", + "coordonnees_gps": [ + 43.8878107316, + 1.92967120122 + ], + "libelle_d_acheminement": "BRENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92967120122, + 43.8878107316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f795b6524414ec0e4871aa240a65d68c8c877fd7", + "fields": { + "code_commune_insee": "81043", + "nom_de_la_commune": "BUSQUE", + "code_postal": "81300", + "coordonnees_gps": [ + 43.7853547999, + 1.94837679226 + ], + "libelle_d_acheminement": "BUSQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94837679226, + 43.7853547999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d8c99cd20433cbcc1f5b6c7a6e0e002a3a3a76a", + "fields": { + "code_commune_insee": "81054", + "nom_de_la_commune": "CAMBOUNET SUR LE SOR", + "code_postal": "81580", + "coordonnees_gps": [ + 43.5776046558, + 2.12002411847 + ], + "libelle_d_acheminement": "CAMBOUNET SUR LE SOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12002411847, + 43.5776046558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab0210275d9ca48ea3b7ac9d9ce4521ec552d7e9", + "fields": { + "code_commune_insee": "81059", + "nom_de_la_commune": "CARLUS", + "code_postal": "81990", + "coordonnees_gps": [ + 43.8879968816, + 2.10436309581 + ], + "libelle_d_acheminement": "CARLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10436309581, + 43.8879968816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef38342ec712e6f220355511a1eb11a0b34343f2", + "fields": { + "ligne_5": "CASTELNAU DE BRASSAC", + "code_commune_insee": "81062", + "libelle_d_acheminement": "FONTRIEU", + "code_postal": "81260", + "nom_de_la_commune": "FONTRIEU", + "coordonnees_gps": [ + 43.6578748652, + 2.52758390349 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52758390349, + 43.6578748652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b27d6c58d9bb04fad38d564602041339842b5336", + "fields": { + "code_commune_insee": "81063", + "nom_de_la_commune": "CASTELNAU DE LEVIS", + "code_postal": "81150", + "coordonnees_gps": [ + 43.9437169399, + 2.07110041598 + ], + "libelle_d_acheminement": "CASTELNAU DE LEVIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07110041598, + 43.9437169399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a855bf6f883caffc67c73491a33d1ecf91ca54d", + "fields": { + "code_commune_insee": "81095", + "nom_de_la_commune": "FRAUSSEILLES", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0296677126, + 1.92883903661 + ], + "libelle_d_acheminement": "FRAUSSEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92883903661, + 44.0296677126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9967419dda576d0829702adc916b7206f71abd22", + "fields": { + "code_commune_insee": "81096", + "nom_de_la_commune": "LE FRAYSSE", + "code_postal": "81430", + "coordonnees_gps": [ + 43.9068214611, + 2.41660067701 + ], + "libelle_d_acheminement": "LE FRAYSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41660067701, + 43.9068214611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "033baa390fa226d8404244a6113dd8cb902947da", + "fields": { + "code_commune_insee": "81098", + "nom_de_la_commune": "FREJEVILLE", + "code_postal": "81570", + "coordonnees_gps": [ + 43.6088880274, + 2.14739300043 + ], + "libelle_d_acheminement": "FREJEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14739300043, + 43.6088880274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8923abff82eba32d737a24f94ed185a236246a6a", + "fields": { + "code_commune_insee": "81110", + "nom_de_la_commune": "JOUQUEVIEL", + "code_postal": "81190", + "coordonnees_gps": [ + 44.1816769141, + 2.13340021405 + ], + "libelle_d_acheminement": "JOUQUEVIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13340021405, + 44.1816769141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bd9e641f7ddab699ce2b27cbf868770d6f0fc21", + "fields": { + "code_commune_insee": "81120", + "nom_de_la_commune": "LABRUGUIERE", + "code_postal": "81290", + "coordonnees_gps": [ + 43.5090050313, + 2.26662007488 + ], + "libelle_d_acheminement": "LABRUGUIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26662007488, + 43.5090050313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "478857af5cb8c8a5ae98f24719c00b35283ccf51", + "fields": { + "code_commune_insee": "81123", + "nom_de_la_commune": "LACAPELLE SEGALAR", + "code_postal": "81170", + "coordonnees_gps": [ + 44.1174207039, + 1.99686305545 + ], + "libelle_d_acheminement": "LACAPELLE SEGALAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99686305545, + 44.1174207039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49744cb3af420050fa95f5d5d5f58ae921413756", + "fields": { + "code_commune_insee": "81126", + "nom_de_la_commune": "LACOUGOTTE CADOUL", + "code_postal": "81500", + "coordonnees_gps": [ + 43.6418245193, + 1.82103741651 + ], + "libelle_d_acheminement": "LACOUGOTTE CADOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82103741651, + 43.6418245193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "521d843fc7ced756b2a5985c325ee5041b7ab550", + "fields": { + "code_commune_insee": "81133", + "nom_de_la_commune": "LAMILLARIE", + "code_postal": "81120", + "coordonnees_gps": [ + 43.8550180871, + 2.15786661498 + ], + "libelle_d_acheminement": "LAMILLARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15786661498, + 43.8550180871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a518568c977715164e671cf305d31a3979049837", + "fields": { + "code_commune_insee": "81137", + "nom_de_la_commune": "LASFAILLADES", + "code_postal": "81260", + "coordonnees_gps": [ + 43.5636947097, + 2.50028981055 + ], + "libelle_d_acheminement": "LASFAILLADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50028981055, + 43.5636947097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32e7eac9bdeb36fca6f197b1ed5ddf2d47cfeb17", + "fields": { + "code_commune_insee": "81140", + "nom_de_la_commune": "LAVAUR", + "code_postal": "81500", + "coordonnees_gps": [ + 43.6895628711, + 1.79437213708 + ], + "libelle_d_acheminement": "LAVAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79437213708, + 43.6895628711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5a25a7e612acc8006161ccf563259d2d88ce35c", + "fields": { + "code_commune_insee": "81141", + "nom_de_la_commune": "LEDAS ET PENTHIES", + "code_postal": "81340", + "coordonnees_gps": [ + 44.0788993791, + 2.38301676967 + ], + "libelle_d_acheminement": "LEDAS ET PENTHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38301676967, + 44.0788993791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb26df28d39c6af643b6df50aa3a3f4959982171", + "fields": { + "code_commune_insee": "81143", + "nom_de_la_commune": "LESCOUT", + "code_postal": "81110", + "coordonnees_gps": [ + 43.5334899853, + 2.10628478889 + ], + "libelle_d_acheminement": "LESCOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10628478889, + 43.5334899853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cabfd8817737f11f7b19c27a78525482e5aa495a", + "fields": { + "code_commune_insee": "81148", + "nom_de_la_commune": "LOUBERS", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0377793598, + 1.8934533217 + ], + "libelle_d_acheminement": "LOUBERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8934533217, + 44.0377793598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cf1ef6c19c30f91ce5a7c290583f458067a26ba", + "fields": { + "code_commune_insee": "81151", + "nom_de_la_commune": "MAGRIN", + "code_postal": "81220", + "coordonnees_gps": [ + 43.61527201, + 1.9211779967 + ], + "libelle_d_acheminement": "MAGRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9211779967, + 43.61527201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "baf5dd92881c363e9216b5a3b3951bf4c3ef6808", + "fields": { + "code_commune_insee": "81152", + "nom_de_la_commune": "MAILHOC", + "code_postal": "81130", + "coordonnees_gps": [ + 44.00390722, + 2.07332780966 + ], + "libelle_d_acheminement": "MAILHOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07332780966, + 44.00390722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcc6cee71ccca1b4f49ca302b863b73600961453", + "fields": { + "code_commune_insee": "81156", + "nom_de_la_commune": "MARSSAC SUR TARN", + "code_postal": "81150", + "coordonnees_gps": [ + 43.9102726323, + 2.03641141101 + ], + "libelle_d_acheminement": "MARSSAC SUR TARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03641141101, + 43.9102726323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3281ac6f32c4ff5b08e11f4d6913551bb79ed06b", + "fields": { + "code_commune_insee": "81161", + "nom_de_la_commune": "MASSALS", + "code_postal": "81250", + "coordonnees_gps": [ + 43.8582915484, + 2.52110996893 + ], + "libelle_d_acheminement": "MASSALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52110996893, + 43.8582915484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "026e1ecf0c4ed2d5024c660898e59884b9f61699", + "fields": { + "code_commune_insee": "81162", + "nom_de_la_commune": "MAURENS SCOPONT", + "code_postal": "81470", + "coordonnees_gps": [ + 43.5965308671, + 1.81343450611 + ], + "libelle_d_acheminement": "MAURENS SCOPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81343450611, + 43.5965308671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78f3cfccde1ed20d77b08e9e11372de2842a30b7", + "fields": { + "code_commune_insee": "81165", + "nom_de_la_commune": "MILHARS", + "code_postal": "81170", + "coordonnees_gps": [ + 44.1227182576, + 1.87476688582 + ], + "libelle_d_acheminement": "MILHARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87476688582, + 44.1227182576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f71a8190fdf11689275a59223fd09a574adf100", + "fields": { + "code_commune_insee": "81180", + "nom_de_la_commune": "MONTIRAT", + "code_postal": "81190", + "coordonnees_gps": [ + 44.1584171912, + 2.092684783 + ], + "libelle_d_acheminement": "MONTIRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.092684783, + 44.1584171912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e191cada687c9ceace8a968e98086f826bed144e", + "fields": { + "code_commune_insee": "81183", + "nom_de_la_commune": "MONT ROC", + "code_postal": "81120", + "coordonnees_gps": [ + 43.8056390894, + 2.37632529774 + ], + "libelle_d_acheminement": "MONT ROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37632529774, + 43.8056390894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5fae81c4f226527994153bfbd2d8630d7989005", + "fields": { + "code_commune_insee": "81190", + "nom_de_la_commune": "MOUZIEYS TEULET", + "code_postal": "81430", + "coordonnees_gps": [ + 43.8784071137, + 2.27301087499 + ], + "libelle_d_acheminement": "MOUZIEYS TEULET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27301087499, + 43.8784071137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b3b48588dc2498b2e688fe676949a35cd549823", + "fields": { + "code_commune_insee": "81195", + "nom_de_la_commune": "NAVES", + "code_postal": "81710", + "coordonnees_gps": [ + 43.5644376165, + 2.21838218726 + ], + "libelle_d_acheminement": "NAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21838218726, + 43.5644376165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59739c9db915fbdc2bfba5d17330795b31c1c68d", + "fields": { + "code_commune_insee": "81205", + "nom_de_la_commune": "PECHAUDIER", + "code_postal": "81470", + "coordonnees_gps": [ + 43.5445327743, + 1.94651910659 + ], + "libelle_d_acheminement": "PECHAUDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94651910659, + 43.5445327743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eb79d0dff855aa5c75cbeb2fa0fe16d3ee3f944", + "fields": { + "code_commune_insee": "81211", + "nom_de_la_commune": "POULAN POUZOLS", + "code_postal": "81120", + "coordonnees_gps": [ + 43.8582952155, + 2.10793696053 + ], + "libelle_d_acheminement": "POULAN POUZOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10793696053, + 43.8582952155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8f593578ed6916eb6e4a47c05541a573300b673", + "fields": { + "code_commune_insee": "81224", + "nom_de_la_commune": "LE RIOLS", + "code_postal": "81170", + "coordonnees_gps": [ + 44.1532720289, + 1.91550185961 + ], + "libelle_d_acheminement": "LE RIOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91550185961, + 44.1532720289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2f7785f5062944e7385d39023f6e9c76adff27d", + "fields": { + "ligne_5": "ROUMEGOUX", + "code_commune_insee": "81233", + "libelle_d_acheminement": "TERRE DE BANCALIE", + "code_postal": "81120", + "nom_de_la_commune": "TERRE DE BANCALIE", + "coordonnees_gps": [ + 43.8091924031, + 2.26353154386 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26353154386, + 43.8091924031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f7342d5b8b86c61d852d05069c33682a362e479", + "fields": { + "ligne_5": "ST LIEUX LAFENASSE", + "code_commune_insee": "81233", + "libelle_d_acheminement": "TERRE DE BANCALIE", + "code_postal": "81120", + "nom_de_la_commune": "TERRE DE BANCALIE", + "coordonnees_gps": [ + 43.8091924031, + 2.26353154386 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26353154386, + 43.8091924031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccb4a3faee1c5b1f1e0ce2b2eff4fb717c8847ba", + "fields": { + "code_commune_insee": "81234", + "nom_de_la_commune": "ROUSSAYROLLES", + "code_postal": "81140", + "coordonnees_gps": [ + 44.0939494388, + 1.8260511519 + ], + "libelle_d_acheminement": "ROUSSAYROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8260511519, + 44.0939494388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76fd51c915567efe13d8e838a4776faa8071c1fe", + "fields": { + "code_commune_insee": "81237", + "nom_de_la_commune": "ST AMANCET", + "code_postal": "81110", + "coordonnees_gps": [ + 43.4634376908, + 2.10916260669 + ], + "libelle_d_acheminement": "ST AMANCET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10916260669, + 43.4634376908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ee509ab1e4ecc21008b45b6de1b4b0a69b0effb", + "fields": { + "code_commune_insee": "81242", + "nom_de_la_commune": "ST AVIT", + "code_postal": "81110", + "coordonnees_gps": [ + 43.5156735271, + 2.11791103076 + ], + "libelle_d_acheminement": "ST AVIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11791103076, + 43.5156735271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea4ae5fd0524a4d08ea48d41f1e85f46f91c58d8", + "fields": { + "ligne_5": "NARTHOUX", + "code_commune_insee": "81245", + "libelle_d_acheminement": "ST CHRISTOPHE", + "code_postal": "81190", + "nom_de_la_commune": "ST CHRISTOPHE", + "coordonnees_gps": [ + 44.1526839554, + 2.0435980246 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0435980246, + 44.1526839554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af42c19dbf8e7d9b60b34fa5cac4c8c6393fdfcc", + "fields": { + "code_commune_insee": "81247", + "nom_de_la_commune": "ST CIRGUE", + "code_postal": "81340", + "coordonnees_gps": [ + 43.9705143368, + 2.37166365439 + ], + "libelle_d_acheminement": "ST CIRGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37166365439, + 43.9705143368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8047a48fb52987fc8ecdd11a3aa6168c3120b31f", + "fields": { + "code_commune_insee": "81250", + "nom_de_la_commune": "ST GENEST DE CONTEST", + "code_postal": "81440", + "coordonnees_gps": [ + 43.7619862953, + 2.14681126259 + ], + "libelle_d_acheminement": "ST GENEST DE CONTEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14681126259, + 43.7619862953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9956eec04ef03f1547517a7148f6b390e97881e4", + "fields": { + "code_commune_insee": "81254", + "nom_de_la_commune": "ST JEAN DE MARCEL", + "code_postal": "81350", + "coordonnees_gps": [ + 44.0562910218, + 2.24878070436 + ], + "libelle_d_acheminement": "ST JEAN DE MARCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24878070436, + 44.0562910218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf350ebadd94d11c050ae840faafc9756d65b6bf", + "fields": { + "code_commune_insee": "81259", + "nom_de_la_commune": "ST JULIEN GAULENE", + "code_postal": "81340", + "coordonnees_gps": [ + 43.9961595825, + 2.34196813906 + ], + "libelle_d_acheminement": "ST JULIEN GAULENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34196813906, + 43.9961595825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ecf637bc076303ab871fb0bf2c5e26abf2ff911", + "fields": { + "code_commune_insee": "81261", + "nom_de_la_commune": "ST LIEUX LES LAVAUR", + "code_postal": "81500", + "coordonnees_gps": [ + 43.7554264288, + 1.74752680249 + ], + "libelle_d_acheminement": "ST LIEUX LES LAVAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74752680249, + 43.7554264288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df4c8387bfd514f1f2d32c6fe398df282ae4f9d4", + "fields": { + "code_commune_insee": "81267", + "nom_de_la_commune": "ST PIERRE DE TRIVISY", + "code_postal": "81330", + "coordonnees_gps": [ + 43.754059506, + 2.44562540702 + ], + "libelle_d_acheminement": "ST PIERRE DE TRIVISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44562540702, + 43.754059506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2cb5bfd13371b5b1379e53e294d1c14f4c41a5f", + "fields": { + "code_commune_insee": "81271", + "nom_de_la_commune": "ST SULPICE LA POINTE", + "code_postal": "81370", + "coordonnees_gps": [ + 43.7589885163, + 1.68659997767 + ], + "libelle_d_acheminement": "ST SULPICE LA POINTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68659997767, + 43.7589885163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10462fab5f53a6429e6a7dc76732840913fa2654", + "fields": { + "code_commune_insee": "81273", + "nom_de_la_commune": "SAIX", + "code_postal": "81710", + "coordonnees_gps": [ + 43.5842195914, + 2.17044847109 + ], + "libelle_d_acheminement": "SAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17044847109, + 43.5842195914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68f179449ae03c7ec0cc1bc929739136ea9a74ab", + "fields": { + "code_commune_insee": "81288", + "nom_de_la_commune": "SOREZE", + "code_postal": "81540", + "coordonnees_gps": [ + 43.4412492469, + 2.08031337654 + ], + "libelle_d_acheminement": "SOREZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08031337654, + 43.4412492469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "308b8313f472d59941254d4087a691bad3846b08", + "fields": { + "code_commune_insee": "81289", + "nom_de_la_commune": "SOUAL", + "code_postal": "81580", + "coordonnees_gps": [ + 43.5511250266, + 2.12888668782 + ], + "libelle_d_acheminement": "SOUAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12888668782, + 43.5511250266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6401f989710270f2c16a3e396cb3de0cf59fb5fc", + "fields": { + "code_commune_insee": "81290", + "nom_de_la_commune": "SOUEL", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0347194017, + 1.96267269811 + ], + "libelle_d_acheminement": "SOUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96267269811, + 44.0347194017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4527e3c492f2bd77289faf9783a333187abe39cd", + "fields": { + "code_commune_insee": "81297", + "nom_de_la_commune": "TERSSAC", + "code_postal": "81150", + "coordonnees_gps": [ + 43.92257156, + 2.06910358338 + ], + "libelle_d_acheminement": "TERSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06910358338, + 43.92257156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07671d6eccbc67988acab90ba5ce9c0f57f4f490", + "fields": { + "code_commune_insee": "81304", + "nom_de_la_commune": "TREVIEN", + "code_postal": "81190", + "coordonnees_gps": [ + 44.1078808594, + 2.1204609055 + ], + "libelle_d_acheminement": "TREVIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1204609055, + 44.1078808594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df463fa91404db8f97decb2d856ee4b063ae76b6", + "fields": { + "code_commune_insee": "82005", + "nom_de_la_commune": "AUCAMVILLE", + "code_postal": "82600", + "coordonnees_gps": [ + 43.7960241357, + 1.22532777135 + ], + "libelle_d_acheminement": "AUCAMVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22532777135, + 43.7960241357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b9a42f4592007c8f36864b7a4a6749282ce3e86", + "fields": { + "code_commune_insee": "82016", + "nom_de_la_commune": "BELVEZE", + "code_postal": "82150", + "coordonnees_gps": [ + 44.3272081162, + 1.09030748279 + ], + "libelle_d_acheminement": "BELVEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09030748279, + 44.3272081162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f18b65d97ec617c09706e012e8b48bb89973c46b", + "fields": { + "code_commune_insee": "82020", + "nom_de_la_commune": "BOUILLAC", + "code_postal": "82600", + "coordonnees_gps": [ + 43.8471889462, + 1.1154526635 + ], + "libelle_d_acheminement": "BOUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1154526635, + 43.8471889462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d90a6106de7e1fdd9a7cc4531b7e0a766833c2eb", + "fields": { + "code_commune_insee": "82024", + "nom_de_la_commune": "BRASSAC", + "code_postal": "82190", + "coordonnees_gps": [ + 44.2221101343, + 0.977222408503 + ], + "libelle_d_acheminement": "BRASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.977222408503, + 44.2221101343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea06589069391c8529061543134099ec6dfc7f4c", + "fields": { + "code_commune_insee": "82033", + "nom_de_la_commune": "CASTELSARRASIN", + "code_postal": "82100", + "coordonnees_gps": [ + 44.0490326525, + 1.12348123121 + ], + "libelle_d_acheminement": "CASTELSARRASIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12348123121, + 44.0490326525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf517699c1672da7926ebcb8a4206aca5672d9d1", + "fields": { + "code_commune_insee": "82034", + "nom_de_la_commune": "CASTERA BOUZET", + "code_postal": "82120", + "coordonnees_gps": [ + 44.0029877877, + 0.917878782904 + ], + "libelle_d_acheminement": "CASTERA BOUZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.917878782904, + 44.0029877877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bec8f7e3f8c502ae5e0fb118b5dad436e9f68963", + "fields": { + "code_commune_insee": "82036", + "nom_de_la_commune": "LE CAUSE", + "code_postal": "82500", + "coordonnees_gps": [ + 43.8022262259, + 0.972224568142 + ], + "libelle_d_acheminement": "LE CAUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.972224568142, + 43.8022262259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89abce17b9107622b3a7ce32306a0033b37e2884", + "fields": { + "code_commune_insee": "82044", + "nom_de_la_commune": "CORBARIEU", + "code_postal": "82370", + "coordonnees_gps": [ + 43.9412424129, + 1.38125963307 + ], + "libelle_d_acheminement": "CORBARIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38125963307, + 43.9412424129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e180ec3d9f07f77d0ba5924b62066c3a02c8101", + "fields": { + "code_commune_insee": "82046", + "nom_de_la_commune": "COUTURES", + "code_postal": "82210", + "coordonnees_gps": [ + 43.960075822, + 0.987814449104 + ], + "libelle_d_acheminement": "COUTURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.987814449104, + 43.960075822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae204d5f7822696686c0ab9ffb8c2c9eef0e90ad", + "fields": { + "code_commune_insee": "82057", + "nom_de_la_commune": "FABAS", + "code_postal": "82170", + "coordonnees_gps": [ + 43.861792636, + 1.3391246531 + ], + "libelle_d_acheminement": "FABAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3391246531, + 43.861792636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1feea71fa888bfd279d3d78c85a65280b11f368", + "fields": { + "code_commune_insee": "82060", + "nom_de_la_commune": "FAUROUX", + "code_postal": "82190", + "coordonnees_gps": [ + 44.2527084346, + 1.00589119507 + ], + "libelle_d_acheminement": "FAUROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00589119507, + 44.2527084346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0b609c60c19b83ba1c9be1c0f35b18efaefbf60", + "fields": { + "code_commune_insee": "82066", + "nom_de_la_commune": "GENEBRIERES", + "code_postal": "82230", + "coordonnees_gps": [ + 44.0012241111, + 1.49043175988 + ], + "libelle_d_acheminement": "GENEBRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49043175988, + 44.0012241111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88d10bd26676b9ca2c13523ab6a4410d8bcdeb0f", + "fields": { + "code_commune_insee": "82067", + "nom_de_la_commune": "GENSAC", + "code_postal": "82120", + "coordonnees_gps": [ + 43.9483571152, + 0.959337749058 + ], + "libelle_d_acheminement": "GENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.959337749058, + 43.9483571152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62fc849b0a06f38deef7705bb0a62df725a4cdb8", + "fields": { + "code_commune_insee": "82083", + "nom_de_la_commune": "LACHAPELLE", + "code_postal": "82120", + "coordonnees_gps": [ + 43.9851541381, + 0.841507103238 + ], + "libelle_d_acheminement": "LACHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.841507103238, + 43.9851541381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d391200e9ff1041bd19e0fda6f5956a227d45903", + "fields": { + "code_commune_insee": "82084", + "nom_de_la_commune": "LACOUR", + "code_postal": "82190", + "coordonnees_gps": [ + 44.2848641284, + 0.965045084358 + ], + "libelle_d_acheminement": "LACOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.965045084358, + 44.2848641284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "556296a4abf32ace489f895c7d80e8ad68c7f25a", + "fields": { + "code_commune_insee": "82096", + "nom_de_la_commune": "LA VILLE DIEU DU TEMPLE", + "code_postal": "82290", + "coordonnees_gps": [ + 44.0429816924, + 1.22097362362 + ], + "libelle_d_acheminement": "LA VILLE DIEU DU TEMPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22097362362, + 44.0429816924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7264164a8968f9c9e20535e2b23243fd658abb0", + "fields": { + "code_commune_insee": "82098", + "nom_de_la_commune": "LEOJAC", + "code_postal": "82230", + "coordonnees_gps": [ + 44.0029268043, + 1.45114680413 + ], + "libelle_d_acheminement": "LEOJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45114680413, + 44.0029268043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54d306575802cedabd10acdff898582c5f87a070", + "fields": { + "code_commune_insee": "82100", + "nom_de_la_commune": "LOZE", + "code_postal": "82160", + "coordonnees_gps": [ + 44.2922818263, + 1.763436611 + ], + "libelle_d_acheminement": "LOZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.763436611, + 44.2922818263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0c0fdf2610cb6ccc627aad2fcbe2124f8d38762", + "fields": { + "code_commune_insee": "82102", + "nom_de_la_commune": "MANSONVILLE", + "code_postal": "82120", + "coordonnees_gps": [ + 44.0154220784, + 0.851115135446 + ], + "libelle_d_acheminement": "MANSONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.851115135446, + 44.0154220784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53f1d1cbf4b293338fe58247f8e880ba7ef4f374", + "fields": { + "code_commune_insee": "82105", + "nom_de_la_commune": "MAS GRENIER", + "code_postal": "82600", + "coordonnees_gps": [ + 43.895387967, + 1.18134234627 + ], + "libelle_d_acheminement": "MAS GRENIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18134234627, + 43.895387967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56241dbe11b1d1086b2b247f37bfe9fbdf7f9ed9", + "fields": { + "code_commune_insee": "82107", + "nom_de_la_commune": "MAUMUSSON", + "code_postal": "82120", + "coordonnees_gps": [ + 43.9122841203, + 0.906121220446 + ], + "libelle_d_acheminement": "MAUMUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.906121220446, + 43.9122841203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93e18d43e5e35d5bfbba71a5c5d80cc71b5d7ef0", + "fields": { + "code_commune_insee": "82112", + "nom_de_la_commune": "MOISSAC", + "code_postal": "82200", + "coordonnees_gps": [ + 44.1262518079, + 1.09834758014 + ], + "libelle_d_acheminement": "MOISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09834758014, + 44.1262518079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34643de1dcc2563fb78aaad814db445bbd557f0d", + "fields": { + "code_commune_insee": "82115", + "nom_de_la_commune": "MONCLAR DE QUERCY", + "code_postal": "82230", + "coordonnees_gps": [ + 43.9880590722, + 1.58236305942 + ], + "libelle_d_acheminement": "MONCLAR DE QUERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58236305942, + 43.9880590722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "443c542aa22c89f32e79c0598a48400c3de59e7d", + "fields": { + "code_commune_insee": "82118", + "nom_de_la_commune": "MONTAIN", + "code_postal": "82100", + "coordonnees_gps": [ + 43.9416567435, + 1.11390121929 + ], + "libelle_d_acheminement": "MONTAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11390121929, + 43.9416567435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de6855700c2f8eb9b0691788dc8cc84690a662b6", + "fields": { + "code_commune_insee": "82121", + "nom_de_la_commune": "MONTAUBAN", + "code_postal": "82000", + "coordonnees_gps": [ + 44.0222594578, + 1.36408636501 + ], + "libelle_d_acheminement": "MONTAUBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36408636501, + 44.0222594578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14064c5cd27fa232c53252c50f49efb3370b8d4c", + "fields": { + "code_commune_insee": "82123", + "nom_de_la_commune": "MONTBARTIER", + "code_postal": "82700", + "coordonnees_gps": [ + 43.9148777604, + 1.28662456416 + ], + "libelle_d_acheminement": "MONTBARTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28662456416, + 43.9148777604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cccce09a60a3e4d0cb27efc81b96c5cd6efe5f96", + "fields": { + "code_commune_insee": "82131", + "nom_de_la_commune": "MONTPEZAT DE QUERCY", + "code_postal": "82270", + "coordonnees_gps": [ + 44.2399240236, + 1.47367523661 + ], + "libelle_d_acheminement": "MONTPEZAT DE QUERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47367523661, + 44.2399240236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e296be1de3f85cbb94dcff3a5261d4be46bd727f", + "fields": { + "code_commune_insee": "82135", + "nom_de_la_commune": "NOHIC", + "code_postal": "82370", + "coordonnees_gps": [ + 43.8880946294, + 1.43765103909 + ], + "libelle_d_acheminement": "NOHIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43765103909, + 43.8880946294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7970dde5bca583bb57fad60323b07f7706c91efe", + "fields": { + "code_commune_insee": "82136", + "nom_de_la_commune": "ORGUEIL", + "code_postal": "82370", + "coordonnees_gps": [ + 43.8991686927, + 1.39705978645 + ], + "libelle_d_acheminement": "ORGUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39705978645, + 43.8991686927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f783e7fafb0c36933f3fd9b0f958cdc494531cf5", + "fields": { + "code_commune_insee": "82137", + "nom_de_la_commune": "PARISOT", + "code_postal": "82160", + "coordonnees_gps": [ + 44.2617881809, + 1.86571509225 + ], + "libelle_d_acheminement": "PARISOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86571509225, + 44.2617881809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3a1eb6da02aefa8102cb45efbf967e8f9f968a3", + "fields": { + "code_commune_insee": "82140", + "nom_de_la_commune": "PIQUECOS", + "code_postal": "82130", + "coordonnees_gps": [ + 44.1044667905, + 1.31637586388 + ], + "libelle_d_acheminement": "PIQUECOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31637586388, + 44.1044667905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f562766a54e8627e75a07ebf4bde5e140bec77e", + "fields": { + "code_commune_insee": "82141", + "nom_de_la_commune": "POMMEVIC", + "code_postal": "82400", + "coordonnees_gps": [ + 44.0940422544, + 0.934521561123 + ], + "libelle_d_acheminement": "POMMEVIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.934521561123, + 44.0940422544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b8425dfa775e23f014cf21d047517f7198208ec", + "fields": { + "code_commune_insee": "82142", + "nom_de_la_commune": "POMPIGNAN", + "code_postal": "82170", + "coordonnees_gps": [ + 43.8196347492, + 1.32921957456 + ], + "libelle_d_acheminement": "POMPIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32921957456, + 43.8196347492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3895ce8d65844a630b568f8316eea34c06bc54b", + "fields": { + "code_commune_insee": "82143", + "nom_de_la_commune": "POUPAS", + "code_postal": "82120", + "coordonnees_gps": [ + 43.9626081803, + 0.835987079725 + ], + "libelle_d_acheminement": "POUPAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.835987079725, + 43.9626081803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "704590a5eb7ee934e4ff8feb79c735b677275647", + "fields": { + "code_commune_insee": "82145", + "nom_de_la_commune": "PUYGAILLARD DE QUERCY", + "code_postal": "82800", + "coordonnees_gps": [ + 44.0245113626, + 1.63164922322 + ], + "libelle_d_acheminement": "PUYGAILLARD DE QUERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63164922322, + 44.0245113626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "027288ee12815f701d760db8e900b06ad6c7410f", + "fields": { + "code_commune_insee": "82147", + "nom_de_la_commune": "PUYLAGARDE", + "code_postal": "82160", + "coordonnees_gps": [ + 44.3066142311, + 1.84631007866 + ], + "libelle_d_acheminement": "PUYLAGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84631007866, + 44.3066142311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "546c9d06ee8374c08ec2b1a59ef531b20cf81177", + "fields": { + "code_commune_insee": "82151", + "nom_de_la_commune": "ROQUECOR", + "code_postal": "82150", + "coordonnees_gps": [ + 44.3164931425, + 0.946500411768 + ], + "libelle_d_acheminement": "ROQUECOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.946500411768, + 44.3164931425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47a64c578a7d1ab00637c9dc4e9ab3f56d5e8c36", + "fields": { + "code_commune_insee": "82159", + "nom_de_la_commune": "ST CIRQ", + "code_postal": "82300", + "coordonnees_gps": [ + 44.1349448025, + 1.60503531727 + ], + "libelle_d_acheminement": "ST CIRQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60503531727, + 44.1349448025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af7cae0344b821e4e43004d72b9c03d476e58f64", + "fields": { + "code_commune_insee": "82161", + "nom_de_la_commune": "ST ETIENNE DE TULMONT", + "code_postal": "82410", + "coordonnees_gps": [ + 44.044673154, + 1.45703284983 + ], + "libelle_d_acheminement": "ST ETIENNE DE TULMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45703284983, + 44.044673154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4efe9da416a7ec6b4bec9830aa29bc163978b8c", + "fields": { + "code_commune_insee": "82163", + "nom_de_la_commune": "ST JEAN DU BOUZET", + "code_postal": "82120", + "coordonnees_gps": [ + 43.9866371182, + 0.875793745086 + ], + "libelle_d_acheminement": "ST JEAN DU BOUZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.875793745086, + 43.9866371182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eac0653d271081b632a2d7f386279a304edab1f", + "fields": { + "code_commune_insee": "82168", + "nom_de_la_commune": "ST NAZAIRE DE VALENTANE", + "code_postal": "82190", + "coordonnees_gps": [ + 44.2056807143, + 1.01728344459 + ], + "libelle_d_acheminement": "ST NAZAIRE DE VALENTANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01728344459, + 44.2056807143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a8a729df73c532137a9c7091eee721e8660e063", + "fields": { + "code_commune_insee": "82171", + "nom_de_la_commune": "ST PORQUIER", + "code_postal": "82700", + "coordonnees_gps": [ + 44.0077030324, + 1.18227115286 + ], + "libelle_d_acheminement": "ST PORQUIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18227115286, + 44.0077030324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1398cdc5b87e90ea53c870e36966277cf1c7a0a5", + "fields": { + "code_commune_insee": "82173", + "nom_de_la_commune": "ST SARDOS", + "code_postal": "82600", + "coordonnees_gps": [ + 43.9017054092, + 1.12413910173 + ], + "libelle_d_acheminement": "ST SARDOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12413910173, + 43.9017054092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42202d0bea0ebc3b99c4ce6b911681370d9e0ac6", + "fields": { + "code_commune_insee": "82175", + "nom_de_la_commune": "ST VINCENT LESPINASSE", + "code_postal": "82400", + "coordonnees_gps": [ + 44.120334414, + 0.963699672322 + ], + "libelle_d_acheminement": "ST VINCENT LESPINASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.963699672322, + 44.120334414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf9d6c7f5ae58109969d2e1d4a7f568b1a8fa3c0", + "fields": { + "code_commune_insee": "82183", + "nom_de_la_commune": "TREJOULS", + "code_postal": "82110", + "coordonnees_gps": [ + 44.2668414309, + 1.20229550462 + ], + "libelle_d_acheminement": "TREJOULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20229550462, + 44.2668414309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ab50630040dd35f2e2990840ce3d3cf53d3c67c", + "fields": { + "code_commune_insee": "82191", + "nom_de_la_commune": "VERFEIL", + "code_postal": "82330", + "coordonnees_gps": [ + 44.1847529793, + 1.87464680477 + ], + "libelle_d_acheminement": "VERFEIL SUR SEYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87464680477, + 44.1847529793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b0455c02413c32ac972c0013974c049351660a8", + "fields": { + "code_commune_insee": "82193", + "nom_de_la_commune": "VIGUERON", + "code_postal": "82500", + "coordonnees_gps": [ + 43.8937685951, + 1.05623953646 + ], + "libelle_d_acheminement": "VIGUERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05623953646, + 43.8937685951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31e4ca0302933c48ecb1848c6a0f47d9095f9eca", + "fields": { + "code_commune_insee": "83002", + "nom_de_la_commune": "AIGUINES", + "code_postal": "83630", + "coordonnees_gps": [ + 43.7284369506, + 6.30439429944 + ], + "libelle_d_acheminement": "AIGUINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30439429944, + 43.7284369506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c08607b3f6203505bbe37665f2ef7615f384995", + "fields": { + "code_commune_insee": "83006", + "nom_de_la_commune": "ARTIGUES", + "code_postal": "83560", + "coordonnees_gps": [ + 43.576501883, + 5.80239993371 + ], + "libelle_d_acheminement": "ARTIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80239993371, + 43.576501883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b567d63807c60ed3428325d88dc76b314042c1b9", + "fields": { + "code_commune_insee": "83025", + "nom_de_la_commune": "BRUE AURIAC", + "code_postal": "83119", + "coordonnees_gps": [ + 43.5279511721, + 5.93664541294 + ], + "libelle_d_acheminement": "BRUE AURIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93664541294, + 43.5279511721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f50ca4ddf1d54af3a0c2aae4b2e3f596215b5363", + "fields": { + "code_commune_insee": "83026", + "nom_de_la_commune": "CABASSE", + "code_postal": "83340", + "coordonnees_gps": [ + 43.4270972655, + 6.23202349485 + ], + "libelle_d_acheminement": "CABASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23202349485, + 43.4270972655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7030d8c2d6b76aa2e6257c1d27ec0ce38efefb22", + "fields": { + "code_commune_insee": "83030", + "nom_de_la_commune": "CAMPS LA SOURCE", + "code_postal": "83170", + "coordonnees_gps": [ + 43.372512011, + 6.12128418794 + ], + "libelle_d_acheminement": "CAMPS LA SOURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12128418794, + 43.372512011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31a93cb50ddf15d1398f6137720ea0ebf1b0a08c", + "fields": { + "code_commune_insee": "83033", + "nom_de_la_commune": "CARNOULES", + "code_postal": "83660", + "coordonnees_gps": [ + 43.2945985061, + 6.19667974945 + ], + "libelle_d_acheminement": "CARNOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19667974945, + 43.2945985061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d698858b614523364422d2484ab408cb59799c6", + "fields": { + "code_commune_insee": "83043", + "nom_de_la_commune": "COLLOBRIERES", + "code_postal": "83610", + "coordonnees_gps": [ + 43.2414148175, + 6.34032184648 + ], + "libelle_d_acheminement": "COLLOBRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34032184648, + 43.2414148175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f3a4a13af6622416d964a8244e90283f5027cf1", + "fields": { + "code_commune_insee": "83045", + "nom_de_la_commune": "CORRENS", + "code_postal": "83570", + "coordonnees_gps": [ + 43.4864185627, + 6.06826217623 + ], + "libelle_d_acheminement": "CORRENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06826217623, + 43.4864185627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e6705601e241c91ce1bb0995242e5d67a3ca2e3", + "fields": { + "code_commune_insee": "83048", + "nom_de_la_commune": "LA CROIX VALMER", + "code_postal": "83420", + "coordonnees_gps": [ + 43.1951890718, + 6.5862813598 + ], + "libelle_d_acheminement": "LA CROIX VALMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5862813598, + 43.1951890718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd42a2a30b3c30be780b11e5a18a09d1b458a9f1", + "fields": { + "code_commune_insee": "83059", + "nom_de_la_commune": "FORCALQUEIRET", + "code_postal": "83136", + "coordonnees_gps": [ + 43.3366392546, + 6.09141410603 + ], + "libelle_d_acheminement": "FORCALQUEIRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09141410603, + 43.3366392546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9474abcafb82ee95fddf6150d11cdc8369165954", + "fields": { + "ligne_5": "ILE DU LEVANT", + "code_commune_insee": "83069", + "libelle_d_acheminement": "HYERES", + "code_postal": "83400", + "nom_de_la_commune": "HYERES", + "coordonnees_gps": [ + 43.1018713534, + 6.18898508469 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18898508469, + 43.1018713534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a4a60b122baabaf5f94aef7508ebde8553242ee", + "fields": { + "ligne_5": "LA CAPTE", + "code_commune_insee": "83069", + "libelle_d_acheminement": "HYERES", + "code_postal": "83400", + "nom_de_la_commune": "HYERES", + "coordonnees_gps": [ + 43.1018713534, + 6.18898508469 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18898508469, + 43.1018713534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a3183fe0ff5422bf168f33a2fa21d59f9f993ce", + "fields": { + "ligne_5": "LES SALINS D HYERES", + "code_commune_insee": "83069", + "libelle_d_acheminement": "HYERES", + "code_postal": "83400", + "nom_de_la_commune": "HYERES", + "coordonnees_gps": [ + 43.1018713534, + 6.18898508469 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18898508469, + 43.1018713534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfdf3f63a57bcbfb9976379e62e355ade6990935", + "fields": { + "code_commune_insee": "83070", + "nom_de_la_commune": "LE LAVANDOU", + "code_postal": "83980", + "coordonnees_gps": [ + 43.1656102964, + 6.41231277863 + ], + "libelle_d_acheminement": "LE LAVANDOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41231277863, + 43.1656102964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44082ade61e9fd0fb8c36ae0b3d6fd60baec49b4", + "fields": { + "code_commune_insee": "83084", + "nom_de_la_commune": "MONTMEYAN", + "code_postal": "83670", + "coordonnees_gps": [ + 43.6482569436, + 6.06124619134 + ], + "libelle_d_acheminement": "MONTMEYAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06124619134, + 43.6482569436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6c7a9728d40a23b456ed0bec56bfb86d9453a8b", + "fields": { + "code_commune_insee": "83087", + "nom_de_la_commune": "NANS LES PINS", + "code_postal": "83860", + "coordonnees_gps": [ + 43.3790514316, + 5.78486448585 + ], + "libelle_d_acheminement": "NANS LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78486448585, + 43.3790514316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35c1bcf771d2c879f033310d53558e8dede82e2c", + "fields": { + "code_commune_insee": "83107", + "nom_de_la_commune": "ROQUEBRUNE SUR ARGENS", + "code_postal": "83520", + "coordonnees_gps": [ + 43.4285090958, + 6.65212881719 + ], + "libelle_d_acheminement": "ROQUEBRUNE SUR ARGENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65212881719, + 43.4285090958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e825cee1c0f43fd40b5ff766a2505ae3fe2460a5", + "fields": { + "code_commune_insee": "83110", + "nom_de_la_commune": "ROUGIERS", + "code_postal": "83170", + "coordonnees_gps": [ + 43.3818574426, + 5.8514412718 + ], + "libelle_d_acheminement": "ROUGIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8514412718, + 43.3818574426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9843f522abc88e524f2340c1ba8aac19aa3ce20b", + "fields": { + "code_commune_insee": "83111", + "nom_de_la_commune": "STE ANASTASIE SUR ISSOLE", + "code_postal": "83136", + "coordonnees_gps": [ + 43.3334103841, + 6.12496118501 + ], + "libelle_d_acheminement": "STE ANASTASIE SUR ISSOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12496118501, + 43.3334103841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c53216d6d876076cf2a4f338ce965ee8200c5e9", + "fields": { + "ligne_5": "LES LECQUES", + "code_commune_insee": "83112", + "libelle_d_acheminement": "ST CYR SUR MER", + "code_postal": "83270", + "nom_de_la_commune": "ST CYR SUR MER", + "coordonnees_gps": [ + 43.1720355248, + 5.70832603708 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70832603708, + 43.1720355248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4587016411d982f759d67f7d43078deb16a2993", + "fields": { + "code_commune_insee": "83114", + "nom_de_la_commune": "ST MARTIN DE PALLIERES", + "code_postal": "83560", + "coordonnees_gps": [ + 43.5741845385, + 5.88790860086 + ], + "libelle_d_acheminement": "ST MARTIN DE PALLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88790860086, + 43.5741845385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ae3141a4a75d29104807592720e73eb67696d8e", + "fields": { + "ligne_5": "LE DRAMONT", + "code_commune_insee": "83118", + "libelle_d_acheminement": "ST RAPHAEL", + "code_postal": "83530", + "nom_de_la_commune": "ST RAPHAEL", + "coordonnees_gps": [ + 43.4574625431, + 6.84734210398 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84734210398, + 43.4574625431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b9528d6e0b5b1c8367f68a885e4c36220e5461a", + "fields": { + "code_commune_insee": "83120", + "nom_de_la_commune": "ST ZACHARIE", + "code_postal": "83640", + "coordonnees_gps": [ + 43.3775300587, + 5.71820851044 + ], + "libelle_d_acheminement": "ST ZACHARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71820851044, + 43.3775300587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca443576a5066e3ff5b61f12d4a1e482790fa875", + "fields": { + "code_commune_insee": "83127", + "nom_de_la_commune": "SIGNES", + "code_postal": "83870", + "coordonnees_gps": [ + 43.2776407451, + 5.8571396222 + ], + "libelle_d_acheminement": "SIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8571396222, + 43.2776407451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3412e15295f8330e1c9e0d5909c501d0ddbb99a4", + "fields": { + "ligne_5": "LE BRUSC", + "code_commune_insee": "83129", + "libelle_d_acheminement": "SIX FOURS LES PLAGES", + "code_postal": "83140", + "nom_de_la_commune": "SIX FOURS LES PLAGES", + "coordonnees_gps": [ + 43.086818602, + 5.82924464931 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82924464931, + 43.086818602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "191d8fa40dd68e88cb7f31c0f7591941abb65648", + "fields": { + "code_commune_insee": "83130", + "nom_de_la_commune": "SOLLIES PONT", + "code_postal": "83210", + "coordonnees_gps": [ + 43.1907611248, + 6.06327697157 + ], + "libelle_d_acheminement": "SOLLIES PONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06327697157, + 43.1907611248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a67ddeeecae7de4a20ab16f7fbc01af64490c744", + "fields": { + "code_commune_insee": "83131", + "nom_de_la_commune": "SOLLIES TOUCAS", + "code_postal": "83210", + "coordonnees_gps": [ + 43.21282693, + 5.98693908648 + ], + "libelle_d_acheminement": "SOLLIES TOUCAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98693908648, + 43.21282693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b15e15925fdf2fd70542a6d7272b9c63df168d7f", + "fields": { + "code_commune_insee": "83135", + "nom_de_la_commune": "TAVERNES", + "code_postal": "83670", + "coordonnees_gps": [ + 43.6002244031, + 6.02099356795 + ], + "libelle_d_acheminement": "TAVERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02099356795, + 43.6002244031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8cf6c02ebfa0c62cf010f74213c0e4a0055e489", + "fields": { + "code_commune_insee": "83137", + "nom_de_la_commune": "TOULON", + "code_postal": "83100", + "coordonnees_gps": [ + 43.1361589728, + 5.93239634249 + ], + "libelle_d_acheminement": "TOULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93239634249, + 43.1361589728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0baa38b54c89805c7cb6d4e81a20616aefabe8dd", + "fields": { + "code_commune_insee": "83138", + "nom_de_la_commune": "TOURRETTES", + "code_postal": "83440", + "coordonnees_gps": [ + 43.6140539601, + 6.72378364475 + ], + "libelle_d_acheminement": "TOURRETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72378364475, + 43.6140539601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bde2e48960270b950f6fa5b983b499bc5990c75", + "fields": { + "code_commune_insee": "83141", + "nom_de_la_commune": "TRANS EN PROVENCE", + "code_postal": "83720", + "coordonnees_gps": [ + 43.5024684242, + 6.48943252904 + ], + "libelle_d_acheminement": "TRANS EN PROVENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48943252904, + 43.5024684242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dba28851c681d1c90ec1c7a849668fdda002758a", + "fields": { + "code_commune_insee": "83146", + "nom_de_la_commune": "LA VERDIERE", + "code_postal": "83560", + "coordonnees_gps": [ + 43.6461099213, + 5.95232275881 + ], + "libelle_d_acheminement": "LA VERDIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95232275881, + 43.6461099213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ef74f08c2959ac6b4dbab4e0fb3c9ba87c22738", + "fields": { + "code_commune_insee": "83150", + "nom_de_la_commune": "VINON SUR VERDON", + "code_postal": "83560", + "coordonnees_gps": [ + 43.7224277972, + 5.80747605851 + ], + "libelle_d_acheminement": "VINON SUR VERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80747605851, + 43.7224277972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fd63189e3ed986cabe5f682bdb460e577caa842", + "fields": { + "code_commune_insee": "83152", + "nom_de_la_commune": "RAYOL CANADEL SUR MER", + "code_postal": "83820", + "coordonnees_gps": [ + 43.1642973413, + 6.47477478292 + ], + "libelle_d_acheminement": "RAYOL CANADEL SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47477478292, + 43.1642973413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "113922edf4f9ccb903c16c77114c62fcf7fc5da3", + "fields": { + "ligne_5": "CANADEL", + "code_commune_insee": "83152", + "libelle_d_acheminement": "RAYOL CANADEL SUR MER", + "code_postal": "83820", + "nom_de_la_commune": "RAYOL CANADEL SUR MER", + "coordonnees_gps": [ + 43.1642973413, + 6.47477478292 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47477478292, + 43.1642973413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f5f73fb0e7ab48d1f2926847239efd75b5c6097", + "fields": { + "code_commune_insee": "84005", + "nom_de_la_commune": "AUREL", + "code_postal": "84390", + "coordonnees_gps": [ + 44.1381264678, + 5.39633326209 + ], + "libelle_d_acheminement": "AUREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39633326209, + 44.1381264678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9a74d76f85588a76008cab3783ba91d959540ea", + "fields": { + "code_commune_insee": "84007", + "nom_de_la_commune": "AVIGNON", + "code_postal": "84000", + "coordonnees_gps": [ + 43.9352448339, + 4.84071572505 + ], + "libelle_d_acheminement": "AVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84071572505, + 43.9352448339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54666077600ef8e1f00e0e2946119b76b4f86c45", + "fields": { + "code_commune_insee": "84009", + "nom_de_la_commune": "LA BASTIDE DES JOURDANS", + "code_postal": "84240", + "coordonnees_gps": [ + 43.7945397599, + 5.64677782095 + ], + "libelle_d_acheminement": "LA BASTIDE DES JOURDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64677782095, + 43.7945397599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "675200557d30101b95e2cd4016dbdc106e04e2bf", + "fields": { + "code_commune_insee": "84011", + "nom_de_la_commune": "LE BEAUCET", + "code_postal": "84210", + "coordonnees_gps": [ + 43.9740267941, + 5.13129776172 + ], + "libelle_d_acheminement": "LE BEAUCET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13129776172, + 43.9740267941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0f1a20123ab9ef0afc287d855a5a44d51e37ae7", + "fields": { + "code_commune_insee": "84020", + "nom_de_la_commune": "BONNIEUX", + "code_postal": "84480", + "coordonnees_gps": [ + 43.8270930656, + 5.31457906958 + ], + "libelle_d_acheminement": "BONNIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31457906958, + 43.8270930656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1edf15b6db1fd2dc56ddc72924e0316fe6ea7840", + "fields": { + "code_commune_insee": "84026", + "nom_de_la_commune": "CADENET", + "code_postal": "84160", + "coordonnees_gps": [ + 43.7304056282, + 5.38354319666 + ], + "libelle_d_acheminement": "CADENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38354319666, + 43.7304056282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1dc6b4c6ba070e746018f0db901242719bac52c", + "fields": { + "code_commune_insee": "84037", + "nom_de_la_commune": "CHATEAUNEUF DU PAPE", + "code_postal": "84230", + "coordonnees_gps": [ + 44.0595884031, + 4.82728435607 + ], + "libelle_d_acheminement": "CHATEAUNEUF DU PAPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82728435607, + 44.0595884031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c08cc98864934f5dbca28a5e6defb44d391f64e2", + "fields": { + "code_commune_insee": "84039", + "nom_de_la_commune": "COURTHEZON", + "code_postal": "84350", + "coordonnees_gps": [ + 44.0865790966, + 4.88163342078 + ], + "libelle_d_acheminement": "COURTHEZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88163342078, + 44.0865790966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69cc09e54c6c340a41012fbd822e0d3a61378353", + "fields": { + "code_commune_insee": "84047", + "nom_de_la_commune": "GARGAS", + "code_postal": "84400", + "coordonnees_gps": [ + 43.8960653944, + 5.34362330109 + ], + "libelle_d_acheminement": "GARGAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34362330109, + 43.8960653944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06cecb16941563985476b6de84f411b5e90ca2d4", + "fields": { + "code_commune_insee": "84048", + "nom_de_la_commune": "GIGNAC", + "code_postal": "84400", + "coordonnees_gps": [ + 43.9285109892, + 5.52308716414 + ], + "libelle_d_acheminement": "GIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52308716414, + 43.9285109892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f39da2ac01de21203b877e0b62b916a6e8c3d77", + "fields": { + "code_commune_insee": "84052", + "nom_de_la_commune": "GRAMBOIS", + "code_postal": "84240", + "coordonnees_gps": [ + 43.7605598424, + 5.6040344355 + ], + "libelle_d_acheminement": "GRAMBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6040344355, + 43.7605598424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e62243870e16589628c218cd3e573e291329200", + "fields": { + "code_commune_insee": "84060", + "nom_de_la_commune": "LAGARDE D APT", + "code_postal": "84400", + "coordonnees_gps": [ + 43.9838729786, + 5.48164417071 + ], + "libelle_d_acheminement": "LAGARDE D APT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48164417071, + 43.9838729786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc3768d6290d097554f954112df5a18eeba08181", + "fields": { + "code_commune_insee": "84061", + "nom_de_la_commune": "LAGARDE PAREOL", + "code_postal": "84290", + "coordonnees_gps": [ + 44.2272154512, + 4.85109427827 + ], + "libelle_d_acheminement": "LAGARDE PAREOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85109427827, + 44.2272154512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b6a4fa6bd82b05ab5579681b32c3f63088233c7", + "fields": { + "code_commune_insee": "84062", + "nom_de_la_commune": "LAGNES", + "code_postal": "84800", + "coordonnees_gps": [ + 43.8924876869, + 5.11458669428 + ], + "libelle_d_acheminement": "LAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11458669428, + 43.8924876869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f5704263fa8d44998b92a3d0e4325ae72f055b4", + "fields": { + "code_commune_insee": "84064", + "nom_de_la_commune": "LAPALUD", + "code_postal": "84840", + "coordonnees_gps": [ + 44.3065428944, + 4.67951575962 + ], + "libelle_d_acheminement": "LAPALUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67951575962, + 44.3065428944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f80d96eb07bc789578c6afcd3fcdee5dd2b7f8f", + "fields": { + "code_commune_insee": "84068", + "nom_de_la_commune": "LOURMARIN", + "code_postal": "84160", + "coordonnees_gps": [ + 43.7780333839, + 5.36616174066 + ], + "libelle_d_acheminement": "LOURMARIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36616174066, + 43.7780333839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87f7c0104ae1dcb4ecb455ee295e7ae8053c4fd8", + "fields": { + "code_commune_insee": "84069", + "nom_de_la_commune": "MALAUCENE", + "code_postal": "84340", + "coordonnees_gps": [ + 44.1884482159, + 5.14985080872 + ], + "libelle_d_acheminement": "MALAUCENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14985080872, + 44.1884482159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8b54292fe8d8e681abce180f02cec83ef340e50", + "fields": { + "code_commune_insee": "84074", + "nom_de_la_commune": "MERINDOL", + "code_postal": "84360", + "coordonnees_gps": [ + 43.7619243813, + 5.20153482914 + ], + "libelle_d_acheminement": "MERINDOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20153482914, + 43.7619243813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8f1a849a13b1a0e26652f056f91fbd30c53c684", + "fields": { + "code_commune_insee": "84076", + "nom_de_la_commune": "MIRABEAU", + "code_postal": "84120", + "coordonnees_gps": [ + 43.7048655954, + 5.64268969136 + ], + "libelle_d_acheminement": "MIRABEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64268969136, + 43.7048655954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3a9ab93bf7c929744dc3d15a670352213aa487d", + "fields": { + "code_commune_insee": "84085", + "nom_de_la_commune": "MURS", + "code_postal": "84220", + "coordonnees_gps": [ + 43.9647645787, + 5.24369462064 + ], + "libelle_d_acheminement": "MURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24369462064, + 43.9647645787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d0c77636e15136438e2cb59f4ecc76f5432a147", + "fields": { + "code_commune_insee": "84086", + "nom_de_la_commune": "OPPEDE", + "code_postal": "84580", + "coordonnees_gps": [ + 43.8313175338, + 5.16982150363 + ], + "libelle_d_acheminement": "OPPEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16982150363, + 43.8313175338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a154856cb66df903a225c7a8aac76acf690dbeca", + "fields": { + "code_commune_insee": "84088", + "nom_de_la_commune": "PERNES LES FONTAINES", + "code_postal": "84210", + "coordonnees_gps": [ + 43.9960550539, + 5.03959100234 + ], + "libelle_d_acheminement": "PERNES LES FONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03959100234, + 43.9960550539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f82326343f5dd5031e6ae0d611f8575a079a7d2b", + "fields": { + "code_commune_insee": "84098", + "nom_de_la_commune": "ROAIX", + "code_postal": "84110", + "coordonnees_gps": [ + 44.2551304462, + 5.01515147311 + ], + "libelle_d_acheminement": "ROAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01515147311, + 44.2551304462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "912e64bc8a566cfd92327d8686a3d35508998589", + "fields": { + "code_commune_insee": "84106", + "nom_de_la_commune": "STE CECILE LES VIGNES", + "code_postal": "84290", + "coordonnees_gps": [ + 44.2358558507, + 4.88928275558 + ], + "libelle_d_acheminement": "STE CECILE LES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88928275558, + 44.2358558507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2773740ca98e923472b869bb8e7f74474e48de2b", + "fields": { + "code_commune_insee": "84113", + "nom_de_la_commune": "ST MARTIN DE LA BRASQUE", + "code_postal": "84760", + "coordonnees_gps": [ + 43.7640135964, + 5.53975821596 + ], + "libelle_d_acheminement": "ST MARTIN DE LA BRASQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53975821596, + 43.7640135964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28b21dbb4501c5fc4f7c598a12d655c6a45cbc69", + "fields": { + "code_commune_insee": "84115", + "nom_de_la_commune": "ST PIERRE DE VASSOLS", + "code_postal": "84330", + "coordonnees_gps": [ + 44.0949073027, + 5.14436401724 + ], + "libelle_d_acheminement": "ST PIERRE DE VASSOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14436401724, + 44.0949073027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15b180045d936aeaf40ce0adf0092fbd7b2ae758", + "fields": { + "code_commune_insee": "84116", + "nom_de_la_commune": "ST ROMAIN EN VIENNOIS", + "code_postal": "84110", + "coordonnees_gps": [ + 44.2618277208, + 5.10165030898 + ], + "libelle_d_acheminement": "ST ROMAIN EN VIENNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10165030898, + 44.2618277208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fecd7dd49ba5df21c29758dc01230d751da285f", + "fields": { + "code_commune_insee": "84125", + "nom_de_la_commune": "SAVOILLAN", + "code_postal": "84390", + "coordonnees_gps": [ + 44.1744446408, + 5.37283802798 + ], + "libelle_d_acheminement": "SAVOILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37283802798, + 44.1744446408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8c1f578b60f30d0897a1e014179f64fb71e9a91", + "fields": { + "code_commune_insee": "84127", + "nom_de_la_commune": "SERIGNAN DU COMTAT", + "code_postal": "84830", + "coordonnees_gps": [ + 44.1939012207, + 4.84785727207 + ], + "libelle_d_acheminement": "SERIGNAN DU COMTAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84785727207, + 44.1939012207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a499b8cfbb65d2cb39053e874e6a799a3ba843d0", + "fields": { + "code_commune_insee": "84128", + "nom_de_la_commune": "SIVERGUES", + "code_postal": "84400", + "coordonnees_gps": [ + 43.8229667306, + 5.41627509912 + ], + "libelle_d_acheminement": "SIVERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41627509912, + 43.8229667306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b605ffbd22b5df51b4716e47c8ccd729691144d", + "fields": { + "code_commune_insee": "84130", + "nom_de_la_commune": "SUZETTE", + "code_postal": "84190", + "coordonnees_gps": [ + 44.1717196495, + 5.06194089513 + ], + "libelle_d_acheminement": "SUZETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06194089513, + 44.1717196495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34b1075cb7450b1ebf9fe0990060f36785e3263a", + "fields": { + "code_commune_insee": "84137", + "nom_de_la_commune": "VAISON LA ROMAINE", + "code_postal": "84110", + "coordonnees_gps": [ + 44.247701867, + 5.06040782309 + ], + "libelle_d_acheminement": "VAISON LA ROMAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06040782309, + 44.247701867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2934dcbf4ac89d4d85c81b2231ffd4eb3ccf9dfe", + "fields": { + "code_commune_insee": "84139", + "nom_de_la_commune": "FONTAINE DE VAUCLUSE", + "code_postal": "84800", + "coordonnees_gps": [ + 43.9220820962, + 5.13125424344 + ], + "libelle_d_acheminement": "FONTAINE DE VAUCLUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13125424344, + 43.9220820962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39fd799758310142b03eed6c7a900f3730f36fac", + "fields": { + "code_commune_insee": "84147", + "nom_de_la_commune": "VILLELAURE", + "code_postal": "84530", + "coordonnees_gps": [ + 43.7075157136, + 5.43085449725 + ], + "libelle_d_acheminement": "VILLELAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43085449725, + 43.7075157136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9918e8c9e6a840cbeb7772f063ffb249f2cc150d", + "fields": { + "code_commune_insee": "84149", + "nom_de_la_commune": "VIOLES", + "code_postal": "84150", + "coordonnees_gps": [ + 44.1767100202, + 4.95138229619 + ], + "libelle_d_acheminement": "VIOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95138229619, + 44.1767100202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1319f75a6a0aaf17a3aaba4a6c85a432dd687a7", + "fields": { + "code_commune_insee": "84150", + "nom_de_la_commune": "VISAN", + "code_postal": "84820", + "coordonnees_gps": [ + 44.3268006533, + 4.94430178075 + ], + "libelle_d_acheminement": "VISAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94430178075, + 44.3268006533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98bfb20a847874124fcd1ab0b632be2de00bb19a", + "fields": { + "code_commune_insee": "85003", + "nom_de_la_commune": "AIZENAY", + "code_postal": "85190", + "coordonnees_gps": [ + 46.7384516809, + -1.62702889721 + ], + "libelle_d_acheminement": "AIZENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62702889721, + 46.7384516809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16c73de7d9c6a5299b8c1130781974d59b302b96", + "fields": { + "code_commune_insee": "85004", + "nom_de_la_commune": "ANGLES", + "code_postal": "85750", + "coordonnees_gps": [ + 46.3870511077, + -1.40049386944 + ], + "libelle_d_acheminement": "ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40049386944, + 46.3870511077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0b4adc7b936a8000f96fe82560e4bca96fb3e10", + "fields": { + "code_commune_insee": "85011", + "nom_de_la_commune": "BARBATRE", + "code_postal": "85630", + "coordonnees_gps": [ + 46.9335754783, + -2.16743559847 + ], + "libelle_d_acheminement": "BARBATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16743559847, + 46.9335754783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f4709b41023b6cf491a4b61cabfd3b3e60c813e", + "fields": { + "code_commune_insee": "85012", + "nom_de_la_commune": "LA BARRE DE MONTS", + "code_postal": "85550", + "coordonnees_gps": [ + 46.8722784154, + -2.09984018879 + ], + "libelle_d_acheminement": "LA BARRE DE MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09984018879, + 46.8722784154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78ed5e7e97f5cc697da4eb75891004ca6ba4798a", + "fields": { + "code_commune_insee": "85014", + "nom_de_la_commune": "BAZOGES EN PAREDS", + "code_postal": "85390", + "coordonnees_gps": [ + 46.6602005512, + -0.914053446792 + ], + "libelle_d_acheminement": "BAZOGES EN PAREDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.914053446792, + 46.6602005512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d9c7426a83eeae9dec75053458992bbbcb8083c", + "fields": { + "code_commune_insee": "85017", + "nom_de_la_commune": "BEAUREPAIRE", + "code_postal": "85500", + "coordonnees_gps": [ + 46.9050210355, + -1.10144867013 + ], + "libelle_d_acheminement": "BEAUREPAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10144867013, + 46.9050210355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c09d4d1c986d46171784aa0dab35d3fbf5aba6a9", + "fields": { + "code_commune_insee": "85018", + "nom_de_la_commune": "BEAUVOIR SUR MER", + "code_postal": "85230", + "coordonnees_gps": [ + 46.9086155426, + -2.06349351302 + ], + "libelle_d_acheminement": "BEAUVOIR SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06349351302, + 46.9086155426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89a643af8bde59933fa9def2908dc2f2d0d46c68", + "fields": { + "code_commune_insee": "85024", + "nom_de_la_commune": "BOIS DE CENE", + "code_postal": "85710", + "coordonnees_gps": [ + 46.9479643351, + -1.89668693466 + ], + "libelle_d_acheminement": "BOIS DE CENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89668693466, + 46.9479643351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21046e94ed44daedc7d533bca9313c0efd28da95", + "fields": { + "code_commune_insee": "85025", + "nom_de_la_commune": "LA BOISSIERE DE MONTAIGU", + "code_postal": "85600", + "coordonnees_gps": [ + 46.9451858636, + -1.1916392484 + ], + "libelle_d_acheminement": "LA BOISSIERE DE MONTAIGU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1916392484, + 46.9451858636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f537bbe53f9e052b0374466ccfade5d652c5e1e", + "fields": { + "code_commune_insee": "85029", + "nom_de_la_commune": "BOUIN", + "code_postal": "85230", + "coordonnees_gps": [ + 46.9815930867, + -2.00423808381 + ], + "libelle_d_acheminement": "BOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.00423808381, + 46.9815930867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b81a0cb18fd4af01ddf94357f23742aa605a22f8", + "fields": { + "ligne_5": "ST VINCENT PUYMAUFRAIS", + "code_commune_insee": "85034", + "libelle_d_acheminement": "BOURNEZEAU", + "code_postal": "85480", + "nom_de_la_commune": "BOURNEZEAU", + "coordonnees_gps": [ + 46.6296975315, + -1.14101742229 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14101742229, + 46.6296975315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3014f8615517c1d6ca0558bfe29755fa1c58c059", + "fields": { + "ligne_5": "LA LIMOUZINIERE", + "code_commune_insee": "85046", + "libelle_d_acheminement": "LA CHAIZE LE VICOMTE", + "code_postal": "85310", + "nom_de_la_commune": "LA CHAIZE LE VICOMTE", + "coordonnees_gps": [ + 46.6729533879, + -1.29188591019 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29188591019, + 46.6729533879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b64c796f0ab4f6b29e9d865bd6dc6b1a82864cf9", + "fields": { + "code_commune_insee": "85049", + "nom_de_la_commune": "CHAMPAGNE LES MARAIS", + "code_postal": "85450", + "coordonnees_gps": [ + 46.3735020647, + -1.13380723653 + ], + "libelle_d_acheminement": "CHAMPAGNE LES MARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13380723653, + 46.3735020647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f3a9cd99f13745e54e78a6260279f976f5327ad", + "fields": { + "code_commune_insee": "85050", + "nom_de_la_commune": "LE CHAMP ST PERE", + "code_postal": "85540", + "coordonnees_gps": [ + 46.5157210212, + -1.33946630196 + ], + "libelle_d_acheminement": "LE CHAMP ST PERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33946630196, + 46.5157210212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8c7c1162bf1ce9990464b8d5f6ee7fa6c300735", + "fields": { + "code_commune_insee": "85053", + "nom_de_la_commune": "LA CHAPELLE AUX LYS", + "code_postal": "85120", + "coordonnees_gps": [ + 46.6221916887, + -0.642706103195 + ], + "libelle_d_acheminement": "LA CHAPELLE AUX LYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.642706103195, + 46.6221916887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "209e204ff5f8af854fcf244f179644a74ef4a252", + "fields": { + "code_commune_insee": "85055", + "nom_de_la_commune": "LA CHAPELLE PALLUAU", + "code_postal": "85670", + "coordonnees_gps": [ + 46.7873638997, + -1.62492863273 + ], + "libelle_d_acheminement": "LA CHAPELLE PALLUAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62492863273, + 46.7873638997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8310c4d60683c4756653b11a86f5e7be5aec9870", + "fields": { + "code_commune_insee": "85061", + "nom_de_la_commune": "CHATEAU GUIBERT", + "code_postal": "85320", + "coordonnees_gps": [ + 46.5741109302, + -1.25524886228 + ], + "libelle_d_acheminement": "CHATEAU GUIBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25524886228, + 46.5741109302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5707f9557082c4476302c8463292952a7381c1aa", + "fields": { + "code_commune_insee": "85062", + "nom_de_la_commune": "CHATEAUNEUF", + "code_postal": "85710", + "coordonnees_gps": [ + 46.916944435, + -1.9261131832 + ], + "libelle_d_acheminement": "CHATEAUNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.9261131832, + 46.916944435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca164fad0be0fbf445a9ef622355eb161111362f", + "fields": { + "code_commune_insee": "85072", + "nom_de_la_commune": "LA COPECHAGNIERE", + "code_postal": "85260", + "coordonnees_gps": [ + 46.8523980181, + -1.34349746898 + ], + "libelle_d_acheminement": "LA COPECHAGNIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34349746898, + 46.8523980181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6869732f9143836a92a218331618eabc03d61b13", + "fields": { + "ligne_5": "LES ESSARTS", + "code_commune_insee": "85084", + "libelle_d_acheminement": "ESSARTS EN BOCAGE", + "code_postal": "85140", + "nom_de_la_commune": "ESSARTS EN BOCAGE", + "coordonnees_gps": [ + 46.7806739038, + -1.22925967851 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22925967851, + 46.7806739038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c61b8a2946053c2119a862ce2c68cddd82fb5023", + "fields": { + "code_commune_insee": "85086", + "nom_de_la_commune": "FALLERON", + "code_postal": "85670", + "coordonnees_gps": [ + 46.8623928354, + -1.70108938038 + ], + "libelle_d_acheminement": "FALLERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.70108938038, + 46.8623928354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c577b72cd0b1a3095cf6b417807bc9d21eb9905d", + "fields": { + "ligne_5": "LES CHATELLIERS CHATEAUMUR", + "code_commune_insee": "85090", + "libelle_d_acheminement": "SEVREMONT", + "code_postal": "85700", + "nom_de_la_commune": "SEVREMONT", + "coordonnees_gps": [ + 46.8211105864, + -0.854584153953 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.854584153953, + 46.8211105864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06a0ecb80266f8ba3106d6e827622ab83e622da5", + "fields": { + "code_commune_insee": "85096", + "nom_de_la_commune": "LA GARNACHE", + "code_postal": "85710", + "coordonnees_gps": [ + 46.8977541296, + -1.82443040539 + ], + "libelle_d_acheminement": "LA GARNACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82443040539, + 46.8977541296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1e7408aacc58ebb632836ec5821b7af4dd58a5a", + "fields": { + "code_commune_insee": "85097", + "nom_de_la_commune": "LA GAUBRETIERE", + "code_postal": "85130", + "coordonnees_gps": [ + 46.9345007303, + -1.05578200702 + ], + "libelle_d_acheminement": "LA GAUBRETIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05578200702, + 46.9345007303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85fae43411a4acfc9dae0198561e1d738adfcef9", + "fields": { + "code_commune_insee": "85101", + "nom_de_la_commune": "LE GIVRE", + "code_postal": "85540", + "coordonnees_gps": [ + 46.4729146043, + -1.40256149118 + ], + "libelle_d_acheminement": "LE GIVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40256149118, + 46.4729146043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40cc15f9fa9ba86505dddb25bb73df5f988b3a82", + "fields": { + "code_commune_insee": "85106", + "nom_de_la_commune": "LA GUERINIERE", + "code_postal": "85680", + "coordonnees_gps": [ + 46.9669962053, + -2.2302799245 + ], + "libelle_d_acheminement": "LA GUERINIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.2302799245, + 46.9669962053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1b7359be9cb20a7a826e818622e985fadb4f69a", + "fields": { + "code_commune_insee": "85112", + "nom_de_la_commune": "L ILE D OLONNE", + "code_postal": "85340", + "coordonnees_gps": [ + 46.570163703, + -1.7737502368 + ], + "libelle_d_acheminement": "L ILE D OLONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.7737502368, + 46.570163703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d8595b5450c056c1933fdbdecd0099ab223e6ae", + "fields": { + "code_commune_insee": "85114", + "nom_de_la_commune": "JARD SUR MER", + "code_postal": "85520", + "coordonnees_gps": [ + 46.4246376808, + -1.60014921643 + ], + "libelle_d_acheminement": "JARD SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60014921643, + 46.4246376808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dfa93cbfd80a029c7266c3cbb8657b016e4b7da", + "fields": { + "code_commune_insee": "85136", + "nom_de_la_commune": "MARILLET", + "code_postal": "85240", + "coordonnees_gps": [ + 46.5667525381, + -0.634287713939 + ], + "libelle_d_acheminement": "MARILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.634287713939, + 46.5667525381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ecca1f30ca3bee9b58fbee16231126426985e1d", + "fields": { + "code_commune_insee": "85139", + "nom_de_la_commune": "LE MAZEAU", + "code_postal": "85420", + "coordonnees_gps": [ + 46.3298580373, + -0.672957405035 + ], + "libelle_d_acheminement": "LE MAZEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.672957405035, + 46.3298580373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c44e90576d4e3ca6f9c2e5c5facb3a0c4c5cc17d", + "fields": { + "code_commune_insee": "85140", + "nom_de_la_commune": "LA MEILLERAIE TILLAY", + "code_postal": "85700", + "coordonnees_gps": [ + 46.742582825, + -0.85478763606 + ], + "libelle_d_acheminement": "LA MEILLERAIE TILLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85478763606, + 46.742582825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5714852080b823400c702eab7e694ab18e017cdc", + "fields": { + "ligne_5": "ST HILAIRE DE LOULAY", + "code_commune_insee": "85146", + "libelle_d_acheminement": "MONTAIGU VENDEE", + "code_postal": "85600", + "nom_de_la_commune": "MONTAIGU VENDEE", + "coordonnees_gps": [ + 46.9759800852, + -1.31364530268 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31364530268, + 46.9759800852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8201d77c8768d4eb070aab848467ba4fc000aad", + "fields": { + "code_commune_insee": "85147", + "nom_de_la_commune": "MONTOURNAIS", + "code_postal": "85700", + "coordonnees_gps": [ + 46.7502937556, + -0.770013941158 + ], + "libelle_d_acheminement": "MONTOURNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.770013941158, + 46.7502937556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "285a7ccc358b14d4ebb3915cc12c8705a96ad0e7", + "fields": { + "code_commune_insee": "85151", + "nom_de_la_commune": "MORTAGNE SUR SEVRE", + "code_postal": "85290", + "coordonnees_gps": [ + 46.9910941319, + -0.946500033344 + ], + "libelle_d_acheminement": "MORTAGNE SUR SEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.946500033344, + 46.9910941319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a57fc3d43e47ffa982c5d9363bf3d19cbf7d52a", + "fields": { + "code_commune_insee": "85160", + "nom_de_la_commune": "NESMY", + "code_postal": "85310", + "coordonnees_gps": [ + 46.5921936479, + -1.40947698594 + ], + "libelle_d_acheminement": "NESMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40947698594, + 46.5921936479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4216dc2c6cfddd9f5838ab802fbeab5c3b72d82e", + "fields": { + "code_commune_insee": "85163", + "nom_de_la_commune": "NOIRMOUTIER EN L ILE", + "code_postal": "85330", + "coordonnees_gps": [ + 47.0086655085, + -2.26243620205 + ], + "libelle_d_acheminement": "NOIRMOUTIER EN L ILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.26243620205, + 47.0086655085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12443432ae3c5dbce3de78948f4172c0e3a5b8e6", + "fields": { + "code_commune_insee": "85175", + "nom_de_la_commune": "LES PINEAUX", + "code_postal": "85320", + "coordonnees_gps": [ + 46.599225902, + -1.17865799724 + ], + "libelle_d_acheminement": "LES PINEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17865799724, + 46.599225902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7641a6c9128c5096c7815413872ba70da881102b", + "fields": { + "code_commune_insee": "85176", + "nom_de_la_commune": "PISSOTTE", + "code_postal": "85200", + "coordonnees_gps": [ + 46.5010870694, + -0.808352236192 + ], + "libelle_d_acheminement": "PISSOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.808352236192, + 46.5010870694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50533ff73df1c839876303f86f578b89c0fdaba0", + "fields": { + "ligne_5": "VELLUIRE", + "code_commune_insee": "85177", + "libelle_d_acheminement": "LES VELLUIRE SUR VENDEE", + "code_postal": "85770", + "nom_de_la_commune": "LES VELLUIRE SUR VENDEE", + "coordonnees_gps": [ + 46.4190919441, + -0.910475769222 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.910475769222, + 46.4190919441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c429a7d5ea93082e201bd3f13cfb7a996a833908", + "fields": { + "code_commune_insee": "85181", + "nom_de_la_commune": "POUILLE", + "code_postal": "85570", + "coordonnees_gps": [ + 46.5022256779, + -0.955223380119 + ], + "libelle_d_acheminement": "POUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.955223380119, + 46.5022256779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4b43c4004bd320d205afac1caebcc0c893f0a97", + "fields": { + "code_commune_insee": "85182", + "nom_de_la_commune": "POUZAUGES", + "code_postal": "85700", + "coordonnees_gps": [ + 46.7812581702, + -0.828778359084 + ], + "libelle_d_acheminement": "POUZAUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.828778359084, + 46.7812581702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27f32352c7f66152303273e4db914ec2a445a708", + "fields": { + "code_commune_insee": "85187", + "nom_de_la_commune": "REAUMUR", + "code_postal": "85700", + "coordonnees_gps": [ + 46.7145137269, + -0.816742537248 + ], + "libelle_d_acheminement": "REAUMUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.816742537248, + 46.7145137269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e8cab8c8ca928260016bb1e75d0765b1d94de8c", + "fields": { + "code_commune_insee": "85193", + "nom_de_la_commune": "ROSNAY", + "code_postal": "85320", + "coordonnees_gps": [ + 46.5324344973, + -1.3007139449 + ], + "libelle_d_acheminement": "ROSNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3007139449, + 46.5324344973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1446ffa5ba65f09e0cf2df0443c6073612d48a33", + "fields": { + "code_commune_insee": "85202", + "nom_de_la_commune": "STE CECILE", + "code_postal": "85110", + "coordonnees_gps": [ + 46.7309688326, + -1.12107316048 + ], + "libelle_d_acheminement": "STE CECILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12107316048, + 46.7309688326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eae442f31292330dd2b1a056bb68b8322f79f05", + "fields": { + "code_commune_insee": "85207", + "nom_de_la_commune": "ST DENIS DU PAYRE", + "code_postal": "85580", + "coordonnees_gps": [ + 46.4118936776, + -1.27222282402 + ], + "libelle_d_acheminement": "ST DENIS DU PAYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27222282402, + 46.4118936776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "801842fcb70e8522a6fe2ede37e1792219a7cc84", + "fields": { + "code_commune_insee": "85231", + "nom_de_la_commune": "ST HILAIRE LA FORET", + "code_postal": "85440", + "coordonnees_gps": [ + 46.4551155186, + -1.53048160541 + ], + "libelle_d_acheminement": "ST HILAIRE LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53048160541, + 46.4551155186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6bfb0fc129b2d7012b35bfc00775c1f28ce60ee", + "fields": { + "code_commune_insee": "85233", + "nom_de_la_commune": "ST JEAN DE BEUGNE", + "code_postal": "85210", + "coordonnees_gps": [ + 46.5196817523, + -1.10826075013 + ], + "libelle_d_acheminement": "ST JEAN DE BEUGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10826075013, + 46.5196817523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64355cfa907eb2e3cda1d68369c17ec11a1e152b", + "fields": { + "code_commune_insee": "85234", + "nom_de_la_commune": "ST JEAN DE MONTS", + "code_postal": "85160", + "coordonnees_gps": [ + 46.8021968737, + -2.04839789308 + ], + "libelle_d_acheminement": "ST JEAN DE MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04839789308, + 46.8021968737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "784d9d3e0ae97b957096a64a3631205489a495cb", + "fields": { + "code_commune_insee": "85237", + "nom_de_la_commune": "ST LAURENT DE LA SALLE", + "code_postal": "85410", + "coordonnees_gps": [ + 46.5854041653, + -0.922177315485 + ], + "libelle_d_acheminement": "ST LAURENT DE LA SALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.922177315485, + 46.5854041653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8027244d521a1096059914453fa2f0a172d6d389", + "fields": { + "code_commune_insee": "85239", + "nom_de_la_commune": "ST MAIXENT SUR VIE", + "code_postal": "85220", + "coordonnees_gps": [ + 46.7329496925, + -1.82595152879 + ], + "libelle_d_acheminement": "ST MAIXENT SUR VIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82595152879, + 46.7329496925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a6eb0685279d7c164146410d7a0d06ca7279b56", + "fields": { + "code_commune_insee": "85248", + "nom_de_la_commune": "ST MARTIN LARS EN STE HERMINE", + "code_postal": "85210", + "coordonnees_gps": [ + 46.5970244335, + -0.976384286709 + ], + "libelle_d_acheminement": "ST MARTIN LARS EN STE HERMINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.976384286709, + 46.5970244335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ae5817445205ee798377b4c4e8e209326b98af7", + "fields": { + "code_commune_insee": "85250", + "nom_de_la_commune": "ST MATHURIN", + "code_postal": "85150", + "coordonnees_gps": [ + 46.5686332748, + -1.70787622288 + ], + "libelle_d_acheminement": "ST MATHURIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.70787622288, + 46.5686332748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9129ecd291a694be75e456f3fa1e3a6a21b2609f", + "fields": { + "code_commune_insee": "85274", + "nom_de_la_commune": "ST VALERIEN", + "code_postal": "85570", + "coordonnees_gps": [ + 46.5348508899, + -0.944470507825 + ], + "libelle_d_acheminement": "ST VALERIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.944470507825, + 46.5348508899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7401c333ee043100f6f2bddbe48cd064bd7d12bc", + "fields": { + "code_commune_insee": "85278", + "nom_de_la_commune": "ST VINCENT SUR JARD", + "code_postal": "85520", + "coordonnees_gps": [ + 46.4297504489, + -1.54956205778 + ], + "libelle_d_acheminement": "ST VINCENT SUR JARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54956205778, + 46.4297504489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffbfb2287adf35b54ea133f6ebf3cb0a7b8cbbfa", + "fields": { + "code_commune_insee": "85286", + "nom_de_la_commune": "LA TAILLEE", + "code_postal": "85450", + "coordonnees_gps": [ + 46.3852513569, + -0.941017792066 + ], + "libelle_d_acheminement": "LA TAILLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.941017792066, + 46.3852513569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "797713f994117eb1e5a9f2862acc930fc8c2249b", + "fields": { + "code_commune_insee": "85288", + "nom_de_la_commune": "TALMONT ST HILAIRE", + "code_postal": "85440", + "coordonnees_gps": [ + 46.475786445, + -1.62751498166 + ], + "libelle_d_acheminement": "TALMONT ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62751498166, + 46.475786445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e34af2c30e6ab832201761b961f9557f9f0979e4", + "fields": { + "code_commune_insee": "85296", + "nom_de_la_commune": "TREIZE VENTS", + "code_postal": "85590", + "coordonnees_gps": [ + 46.9168130123, + -0.845959158017 + ], + "libelle_d_acheminement": "TREIZE VENTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.845959158017, + 46.9168130123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22c7b02bcd524fd8f75aa63b43dff8068ab2e1d9", + "fields": { + "code_commune_insee": "85303", + "nom_de_la_commune": "VIX", + "code_postal": "85770", + "coordonnees_gps": [ + 46.3543018169, + -0.856628326667 + ], + "libelle_d_acheminement": "VIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.856628326667, + 46.3543018169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0101676f36193642249fa7adc2a3c152b8f73f2e", + "fields": { + "code_commune_insee": "85305", + "nom_de_la_commune": "VOUVANT", + "code_postal": "85120", + "coordonnees_gps": [ + 46.5626835135, + -0.764380170382 + ], + "libelle_d_acheminement": "VOUVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.764380170382, + 46.5626835135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be9326665ba86d98ad3b174d34455f43f65065e3", + "fields": { + "code_commune_insee": "86001", + "nom_de_la_commune": "ADRIERS", + "code_postal": "86430", + "coordonnees_gps": [ + 46.2646103374, + 0.789659194144 + ], + "libelle_d_acheminement": "ADRIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.789659194144, + 46.2646103374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7adeddd531650b7aa40ce6cbc7ac0f2967672df6", + "fields": { + "code_commune_insee": "86003", + "nom_de_la_commune": "ANCHE", + "code_postal": "86700", + "coordonnees_gps": [ + 46.3496375961, + 0.270285912605 + ], + "libelle_d_acheminement": "ANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.270285912605, + 46.3496375961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92d5f29d0ee220cf74796f8697ea53663bd53770", + "fields": { + "code_commune_insee": "86004", + "nom_de_la_commune": "ANGLES SUR L ANGLIN", + "code_postal": "86260", + "coordonnees_gps": [ + 46.6986976, + 0.896253717569 + ], + "libelle_d_acheminement": "ANGLES SUR L ANGLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.896253717569, + 46.6986976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dd01c643d57c22fbc9ee75ddc7abed3ce93667f", + "fields": { + "code_commune_insee": "86012", + "nom_de_la_commune": "ASNOIS", + "code_postal": "86250", + "coordonnees_gps": [ + 46.1033058392, + 0.408300889947 + ], + "libelle_d_acheminement": "ASNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.408300889947, + 46.1033058392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f4fdbac20983987fa41d74c5431e0cd1c51a5e4", + "fields": { + "code_commune_insee": "86017", + "nom_de_la_commune": "AYRON", + "code_postal": "86190", + "coordonnees_gps": [ + 46.6440797341, + 0.0454968379213 + ], + "libelle_d_acheminement": "AYRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0454968379213, + 46.6440797341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eb1056923e0c07bea0589aa4cb48d24c37940aa", + "fields": { + "code_commune_insee": "86018", + "nom_de_la_commune": "BASSES", + "code_postal": "86200", + "coordonnees_gps": [ + 47.044883115, + 0.124036539439 + ], + "libelle_d_acheminement": "BASSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.124036539439, + 47.044883115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69afe0f2be61ca276c891181ae7920b8be684f64", + "fields": { + "ligne_5": "LA TRICHERIE", + "code_commune_insee": "86019", + "libelle_d_acheminement": "BEAUMONT ST CYR", + "code_postal": "86490", + "nom_de_la_commune": "BEAUMONT ST CYR", + "coordonnees_gps": [ + 46.7432070332, + 0.436999990753 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.436999990753, + 46.7432070332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54b78db7e772ad1f8016d73f00ebdf54988d5cdc", + "fields": { + "code_commune_insee": "86023", + "nom_de_la_commune": "BERTHEGON", + "code_postal": "86420", + "coordonnees_gps": [ + 46.9016657704, + 0.268623771232 + ], + "libelle_d_acheminement": "BERTHEGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.268623771232, + 46.9016657704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d796f9adf849a32fb8747c0ed6c88f4d4326674", + "fields": { + "code_commune_insee": "86026", + "nom_de_la_commune": "BEUXES", + "code_postal": "86120", + "coordonnees_gps": [ + 47.0870340103, + 0.173619362771 + ], + "libelle_d_acheminement": "BEUXES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.173619362771, + 47.0870340103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0113368fdf9734e6bbd5e6518fc8d1ce8f09948c", + "fields": { + "code_commune_insee": "86029", + "nom_de_la_commune": "BLANZAY", + "code_postal": "86400", + "coordonnees_gps": [ + 46.2071446631, + 0.255573056586 + ], + "libelle_d_acheminement": "BLANZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.255573056586, + 46.2071446631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eadda3bbcca0b08a4e6a88fd3eebab1bd2373420", + "fields": { + "code_commune_insee": "86047", + "nom_de_la_commune": "CERNAY", + "code_postal": "86140", + "coordonnees_gps": [ + 46.8366061305, + 0.301673883746 + ], + "libelle_d_acheminement": "CERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301673883746, + 46.8366061305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9693d21d12e0380fbd52af1c24666d7d53e8fe79", + "fields": { + "code_commune_insee": "86055", + "nom_de_la_commune": "LA CHAPELLE BATON", + "code_postal": "86250", + "coordonnees_gps": [ + 46.1890627915, + 0.409088341368 + ], + "libelle_d_acheminement": "LA CHAPELLE BATON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.409088341368, + 46.1890627915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aad0465524abca90185254a15922034e9130289", + "fields": { + "code_commune_insee": "86058", + "nom_de_la_commune": "LA CHAPELLE MOULIERE", + "code_postal": "86210", + "coordonnees_gps": [ + 46.6458608784, + 0.536909480756 + ], + "libelle_d_acheminement": "LA CHAPELLE MOULIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.536909480756, + 46.6458608784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1d6ca261c5849c38f7d5fe54857d39b72a77a69", + "fields": { + "code_commune_insee": "86061", + "nom_de_la_commune": "CHARROUX", + "code_postal": "86250", + "coordonnees_gps": [ + 46.1403226222, + 0.415210425845 + ], + "libelle_d_acheminement": "CHARROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.415210425845, + 46.1403226222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3ab0268f9ca491dd5f512649cac357bb7865b37", + "fields": { + "code_commune_insee": "86063", + "nom_de_la_commune": "CHATAIN", + "code_postal": "86250", + "coordonnees_gps": [ + 46.0723336149, + 0.437740992282 + ], + "libelle_d_acheminement": "CHATAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.437740992282, + 46.0723336149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eb932da0982e7092c508eb477742c5716b2c7fe", + "fields": { + "ligne_5": "TARGE", + "code_commune_insee": "86066", + "libelle_d_acheminement": "CHATELLERAULT", + "code_postal": "86100", + "nom_de_la_commune": "CHATELLERAULT", + "coordonnees_gps": [ + 46.8156700185, + 0.552598976936 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.552598976936, + 46.8156700185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9615eec565eb88707257f0ccf2e9d7eff02314d3", + "fields": { + "code_commune_insee": "86075", + "nom_de_la_commune": "CHOUPPES", + "code_postal": "86110", + "coordonnees_gps": [ + 46.8076034833, + 0.168441439384 + ], + "libelle_d_acheminement": "CHOUPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.168441439384, + 46.8076034833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d846ea355407dc6a21a97dd8b040c86bf97444d", + "fields": { + "code_commune_insee": "86076", + "nom_de_la_commune": "CISSE", + "code_postal": "86170", + "coordonnees_gps": [ + 46.6502861591, + 0.241446585284 + ], + "libelle_d_acheminement": "CISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.241446585284, + 46.6502861591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c7556f9b1ce4c449643b36a1b5bee9bc5e3196b", + "fields": { + "code_commune_insee": "86078", + "nom_de_la_commune": "CIVRAY", + "code_postal": "86400", + "coordonnees_gps": [ + 46.1412232275, + 0.300987364675 + ], + "libelle_d_acheminement": "CIVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.300987364675, + 46.1412232275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0a4dd9bc57c609f8db2f341666b436c15885e0c", + "fields": { + "code_commune_insee": "86081", + "nom_de_la_commune": "COLOMBIERS", + "code_postal": "86490", + "coordonnees_gps": [ + 46.7799541393, + 0.437112922808 + ], + "libelle_d_acheminement": "COLOMBIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.437112922808, + 46.7799541393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce506ec454a335e90b137c9fa3a9ca9ffc950f9b", + "fields": { + "code_commune_insee": "86083", + "nom_de_la_commune": "COULOMBIERS", + "code_postal": "86600", + "coordonnees_gps": [ + 46.4939416192, + 0.173468544553 + ], + "libelle_d_acheminement": "COULOMBIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.173468544553, + 46.4939416192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "808390955c88d5135aea08ad454927c532566899", + "fields": { + "code_commune_insee": "86088", + "nom_de_la_commune": "CROUTELLE", + "code_postal": "86240", + "coordonnees_gps": [ + 46.5425586218, + 0.2929490098 + ], + "libelle_d_acheminement": "CROUTELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.2929490098, + 46.5425586218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd5beba9bf10f62bf8cbb0f73666d605db9584fa", + "fields": { + "code_commune_insee": "86092", + "nom_de_la_commune": "DANGE ST ROMAIN", + "code_postal": "86220", + "coordonnees_gps": [ + 46.9270829508, + 0.608217192883 + ], + "libelle_d_acheminement": "DANGE ST ROMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.608217192883, + 46.9270829508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f3a19bff4e41bd0817e1f38ed141404567395fe", + "fields": { + "code_commune_insee": "86095", + "nom_de_la_commune": "DISSAY", + "code_postal": "86130", + "coordonnees_gps": [ + 46.6962926457, + 0.443383636833 + ], + "libelle_d_acheminement": "DISSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.443383636833, + 46.6962926457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56bb0e90bd0bac623c46f1cd059f6eae8ca21fb4", + "fields": { + "code_commune_insee": "86096", + "nom_de_la_commune": "DOUSSAY", + "code_postal": "86140", + "coordonnees_gps": [ + 46.8397507343, + 0.272341235915 + ], + "libelle_d_acheminement": "DOUSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.272341235915, + 46.8397507343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5262b66c5985f09b4ef32b7699c16bbfe2fc88df", + "fields": { + "code_commune_insee": "86097", + "nom_de_la_commune": "LA FERRIERE AIROUX", + "code_postal": "86160", + "coordonnees_gps": [ + 46.314702219, + 0.410169403007 + ], + "libelle_d_acheminement": "LA FERRIERE AIROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.410169403007, + 46.314702219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20782f861ece0eede973816e0b29b95da1e7fb9b", + "fields": { + "code_commune_insee": "86098", + "nom_de_la_commune": "FLEIX", + "code_postal": "86300", + "coordonnees_gps": [ + 46.5580414765, + 0.747824458548 + ], + "libelle_d_acheminement": "FLEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.747824458548, + 46.5580414765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "405db125515cf2ffcdf7a3de82fe59ebff65c491", + "fields": { + "code_commune_insee": "86103", + "nom_de_la_commune": "GENCAY", + "code_postal": "86160", + "coordonnees_gps": [ + 46.3705267835, + 0.413253072588 + ], + "libelle_d_acheminement": "GENCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.413253072588, + 46.3705267835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "713651b84bc9d7fbb4b070dce04f8f903f2d083b", + "fields": { + "code_commune_insee": "86105", + "nom_de_la_commune": "GIZAY", + "code_postal": "86340", + "coordonnees_gps": [ + 46.4395803569, + 0.423353423469 + ], + "libelle_d_acheminement": "GIZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.423353423469, + 46.4395803569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd4eae37c770e528370b9e70c13ff12d4a0dbd52", + "fields": { + "code_commune_insee": "86116", + "nom_de_la_commune": "JAZENEUIL", + "code_postal": "86600", + "coordonnees_gps": [ + 46.4676363109, + 0.0747596893664 + ], + "libelle_d_acheminement": "JAZENEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0747596893664, + 46.4676363109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fca846eba5963d4869c3b116fc0c166612f2874", + "fields": { + "ligne_5": "BENASSAY", + "code_commune_insee": "86123", + "libelle_d_acheminement": "BOIVRE LA VALLEE", + "code_postal": "86470", + "nom_de_la_commune": "BOIVRE LA VALLEE", + "coordonnees_gps": [ + 46.5433549804, + 0.0821497150944 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0821497150944, + 46.5433549804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1883a78eaa31c475cfa1ce9ee6a6ff7c45c74e1a", + "fields": { + "ligne_5": "LAVAUSSEAU", + "code_commune_insee": "86123", + "libelle_d_acheminement": "BOIVRE LA VALLEE", + "code_postal": "86470", + "nom_de_la_commune": "BOIVRE LA VALLEE", + "coordonnees_gps": [ + 46.5433549804, + 0.0821497150944 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0821497150944, + 46.5433549804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34237716c91e97ba5edc1c83597e056ce84301dd", + "fields": { + "code_commune_insee": "86132", + "nom_de_la_commune": "LIGLET", + "code_postal": "86290", + "coordonnees_gps": [ + 46.5066719767, + 1.08346651537 + ], + "libelle_d_acheminement": "LIGLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08346651537, + 46.5066719767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "378abb6707854903e0269e1d9bf9918964abe422", + "fields": { + "code_commune_insee": "86141", + "nom_de_la_commune": "MAGNE", + "code_postal": "86160", + "coordonnees_gps": [ + 46.3496002634, + 0.391444598255 + ], + "libelle_d_acheminement": "MAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.391444598255, + 46.3496002634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ccfb9b5bb78a3f5738737639203d35fca0437ec", + "fields": { + "code_commune_insee": "86147", + "nom_de_la_commune": "MARIGNY CHEMEREAU", + "code_postal": "86370", + "coordonnees_gps": [ + 46.4257668827, + 0.216813691346 + ], + "libelle_d_acheminement": "MARIGNY CHEMEREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.216813691346, + 46.4257668827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8aac589fac1dbbc7945f72a676ff83a865dfddde", + "fields": { + "code_commune_insee": "86154", + "nom_de_la_commune": "MAZEUIL", + "code_postal": "86110", + "coordonnees_gps": [ + 46.7923270913, + 0.0843953214823 + ], + "libelle_d_acheminement": "MAZEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0843953214823, + 46.7923270913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "343a2b53983b3f9612afe143374b89d8257cd342", + "fields": { + "code_commune_insee": "86158", + "nom_de_la_commune": "MIGNE AUXANCES", + "code_postal": "86440", + "coordonnees_gps": [ + 46.6320253577, + 0.304897711078 + ], + "libelle_d_acheminement": "MIGNE AUXANCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.304897711078, + 46.6320253577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84c8f5c92dc556975f1578340c23492b5cc6dffb", + "fields": { + "code_commune_insee": "86161", + "nom_de_la_commune": "MONCONTOUR", + "code_postal": "86330", + "coordonnees_gps": [ + 46.8774293684, + 0.00356289624888 + ], + "libelle_d_acheminement": "MONCONTOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00356289624888, + 46.8774293684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b89cea968eb3961331a2920341eeca5d3d3337f6", + "fields": { + "ligne_5": "MESSAIS", + "code_commune_insee": "86161", + "libelle_d_acheminement": "MONCONTOUR", + "code_postal": "86330", + "nom_de_la_commune": "MONCONTOUR", + "coordonnees_gps": [ + 46.8774293684, + 0.00356289624888 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00356289624888, + 46.8774293684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7b763a33f495a6bec5a803bd633d971f2c75b1f", + "fields": { + "ligne_5": "ST CHARTRES", + "code_commune_insee": "86161", + "libelle_d_acheminement": "MONCONTOUR", + "code_postal": "86330", + "nom_de_la_commune": "MONCONTOUR", + "coordonnees_gps": [ + 46.8774293684, + 0.00356289624888 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00356289624888, + 46.8774293684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2856b676911576ddffa10224384640f1d0bb1d22", + "fields": { + "code_commune_insee": "86165", + "nom_de_la_commune": "MONTMORILLON", + "code_postal": "86500", + "coordonnees_gps": [ + 46.4263978846, + 0.895458347632 + ], + "libelle_d_acheminement": "MONTMORILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.895458347632, + 46.4263978846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e084f99393bcb255189b8a9aebfbcd04f1b9f392", + "fields": { + "code_commune_insee": "86175", + "nom_de_la_commune": "NALLIERS", + "code_postal": "86310", + "coordonnees_gps": [ + 46.6098862089, + 0.879990310678 + ], + "libelle_d_acheminement": "NALLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.879990310678, + 46.6098862089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f75e1057c2bf8a8fe53b84b45ea960276ddab52e", + "fields": { + "code_commune_insee": "86176", + "nom_de_la_commune": "NERIGNAC", + "code_postal": "86150", + "coordonnees_gps": [ + 46.2968665882, + 0.730725173881 + ], + "libelle_d_acheminement": "NERIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.730725173881, + 46.2968665882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c710f05592cdfeea5bafe09566deb3d4f48398c", + "fields": { + "code_commune_insee": "86181", + "nom_de_la_commune": "NUEIL SOUS FAYE", + "code_postal": "86200", + "coordonnees_gps": [ + 46.9746472974, + 0.272538169916 + ], + "libelle_d_acheminement": "NUEIL SOUS FAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.272538169916, + 46.9746472974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcfd6724dd449971b54f7832d8fce81dcfc6343f", + "fields": { + "code_commune_insee": "86183", + "nom_de_la_commune": "LES ORMES", + "code_postal": "86220", + "coordonnees_gps": [ + 46.9649927352, + 0.622269662308 + ], + "libelle_d_acheminement": "LES ORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.622269662308, + 46.9649927352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8892cfed2b78eb13c4df18d3f9ec88c1a73d059", + "fields": { + "code_commune_insee": "86186", + "nom_de_la_commune": "OYRE", + "code_postal": "86220", + "coordonnees_gps": [ + 46.8626653271, + 0.646321039276 + ], + "libelle_d_acheminement": "OYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.646321039276, + 46.8626653271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1798a7bf77e704e9fe59303ae69719dfa4842366", + "fields": { + "code_commune_insee": "86187", + "nom_de_la_commune": "PAIZAY LE SEC", + "code_postal": "86300", + "coordonnees_gps": [ + 46.5865795842, + 0.78017018726 + ], + "libelle_d_acheminement": "PAIZAY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78017018726, + 46.5865795842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d6f64d68ce8f5ee8fa1354cbf5b7cbf331e4742", + "fields": { + "code_commune_insee": "86190", + "nom_de_la_commune": "PERSAC", + "code_postal": "86320", + "coordonnees_gps": [ + 46.3410990682, + 0.731125498359 + ], + "libelle_d_acheminement": "PERSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.731125498359, + 46.3410990682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c457a350564101c43dae423a928364b77aac863", + "fields": { + "code_commune_insee": "86193", + "nom_de_la_commune": "PLEUMARTIN", + "code_postal": "86450", + "coordonnees_gps": [ + 46.7414633324, + 0.759420018765 + ], + "libelle_d_acheminement": "PLEUMARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.759420018765, + 46.7414633324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7806e5c11e05ae4989700bc6faa5d893f42c5cb8", + "fields": { + "code_commune_insee": "86194", + "nom_de_la_commune": "POITIERS", + "code_postal": "86000", + "coordonnees_gps": [ + 46.5839207726, + 0.359947653003 + ], + "libelle_d_acheminement": "POITIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.359947653003, + 46.5839207726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3594cfc518b395e114690140e1fb443f4969b4a", + "fields": { + "code_commune_insee": "86200", + "nom_de_la_commune": "PRESSAC", + "code_postal": "86460", + "coordonnees_gps": [ + 46.1182546564, + 0.567316828463 + ], + "libelle_d_acheminement": "PRESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.567316828463, + 46.1182546564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cd916e4e6935b9173412f1836d98fc8555056dd", + "fields": { + "code_commune_insee": "86242", + "nom_de_la_commune": "ST ROMAIN", + "code_postal": "86250", + "coordonnees_gps": [ + 46.2278846566, + 0.380138967799 + ], + "libelle_d_acheminement": "ST ROMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.380138967799, + 46.2278846566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "975b3f4c6c5f05c924521bd9c539aaa16b892bd6", + "fields": { + "ligne_5": "SENILLE", + "code_commune_insee": "86245", + "libelle_d_acheminement": "SENILLE ST SAUVEUR", + "code_postal": "86100", + "nom_de_la_commune": "SENILLE ST SAUVEUR", + "coordonnees_gps": [ + 46.8023769572, + 0.645222775662 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.645222775662, + 46.8023769572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07010b1c3b4fe8d75744b4b6892a2bd1d3cc3c68", + "fields": { + "code_commune_insee": "86246", + "nom_de_la_commune": "ST SAVIN", + "code_postal": "86310", + "coordonnees_gps": [ + 46.5832866024, + 0.840222181095 + ], + "libelle_d_acheminement": "ST SAVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.840222181095, + 46.5832866024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "690402fbfb0945c09c7c122d1fb2dccb51aa662c", + "fields": { + "code_commune_insee": "86247", + "nom_de_la_commune": "ST SAVIOL", + "code_postal": "86400", + "coordonnees_gps": [ + 46.1437005991, + 0.231045225732 + ], + "libelle_d_acheminement": "ST SAVIOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.231045225732, + 46.1437005991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8ac0294de5b394c1001d2cde9196e86fb9f562a", + "fields": { + "code_commune_insee": "86250", + "nom_de_la_commune": "SAIX", + "code_postal": "86120", + "coordonnees_gps": [ + 47.1417376447, + 0.00673655616709 + ], + "libelle_d_acheminement": "SAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00673655616709, + 47.1417376447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cf3f5a1141484fb68e7969be7e3191f297f1903", + "fields": { + "code_commune_insee": "86260", + "nom_de_la_commune": "SERIGNY", + "code_postal": "86230", + "coordonnees_gps": [ + 46.9268926391, + 0.316255199259 + ], + "libelle_d_acheminement": "SERIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.316255199259, + 46.9268926391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf3b42e6c918fc4e0cb739ed47994963eb0ff26f", + "fields": { + "code_commune_insee": "86270", + "nom_de_la_commune": "THOLLET", + "code_postal": "86290", + "coordonnees_gps": [ + 46.4381388377, + 1.12576757467 + ], + "libelle_d_acheminement": "THOLLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12576757467, + 46.4381388377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef7488793c0c4848a5170e140ba6923896656e9f", + "fields": { + "code_commune_insee": "86272", + "nom_de_la_commune": "THURE", + "code_postal": "86540", + "coordonnees_gps": [ + 46.8408988705, + 0.455456315657 + ], + "libelle_d_acheminement": "THURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.455456315657, + 46.8408988705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1fdb75bd3f4e52b2022a7e500195814eb37e9d9", + "fields": { + "code_commune_insee": "86274", + "nom_de_la_commune": "LES TROIS MOUTIERS", + "code_postal": "86120", + "coordonnees_gps": [ + 47.0614723678, + 0.0102809057425 + ], + "libelle_d_acheminement": "LES TROIS MOUTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0102809057425, + 47.0614723678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5accf92f9b5458eba8cec2307d964c46b92d80d5", + "fields": { + "code_commune_insee": "86275", + "nom_de_la_commune": "USSEAU", + "code_postal": "86230", + "coordonnees_gps": [ + 46.8867943192, + 0.494483523463 + ], + "libelle_d_acheminement": "USSEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.494483523463, + 46.8867943192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b659d545e26a3a6ed08cb76f6d515a7ade7de67c", + "fields": { + "code_commune_insee": "86280", + "nom_de_la_commune": "VELLECHES", + "code_postal": "86230", + "coordonnees_gps": [ + 46.9391643097, + 0.526863341682 + ], + "libelle_d_acheminement": "VELLECHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.526863341682, + 46.9391643097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dcc157634514f09fc1475f56f5fb75c5ec7fb17", + "fields": { + "code_commune_insee": "86292", + "nom_de_la_commune": "VILLIERS", + "code_postal": "86190", + "coordonnees_gps": [ + 46.6701971212, + 0.17214970467 + ], + "libelle_d_acheminement": "VILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17214970467, + 46.6701971212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "840dd99589bfd09e94965ce770ec415dabfd6705", + "fields": { + "code_commune_insee": "86296", + "nom_de_la_commune": "VOULON", + "code_postal": "86700", + "coordonnees_gps": [ + 46.3650497334, + 0.24044017577 + ], + "libelle_d_acheminement": "VOULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24044017577, + 46.3650497334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11cdf22eb024eb0a57b7e66c6761ffeba15e5a57", + "fields": { + "code_commune_insee": "87004", + "nom_de_la_commune": "AUGNE", + "code_postal": "87120", + "coordonnees_gps": [ + 45.7719200606, + 1.70058013967 + ], + "libelle_d_acheminement": "AUGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70058013967, + 45.7719200606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6d0ea8e4e09144cd316afa1024e91a7d5dbf439", + "fields": { + "code_commune_insee": "87009", + "nom_de_la_commune": "BEAUMONT DU LAC", + "code_postal": "87120", + "coordonnees_gps": [ + 45.7716133323, + 1.85480438671 + ], + "libelle_d_acheminement": "BEAUMONT DU LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85480438671, + 45.7716133323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e31d8ee77ec022a495779cfc1d41258a9b9ff793", + "fields": { + "code_commune_insee": "87018", + "nom_de_la_commune": "BLOND", + "code_postal": "87300", + "coordonnees_gps": [ + 46.0535299547, + 1.01712916686 + ], + "libelle_d_acheminement": "BLOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01712916686, + 46.0535299547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9baa634982eac6b3673feea1258847b2c88eb68d", + "fields": { + "code_commune_insee": "87022", + "nom_de_la_commune": "BREUILAUFA", + "code_postal": "87300", + "coordonnees_gps": [ + 46.0427652258, + 1.10929278431 + ], + "libelle_d_acheminement": "BREUILAUFA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10929278431, + 46.0427652258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f68e6862dbf33902785a485bf1bbf3eace292d73", + "fields": { + "code_commune_insee": "87023", + "nom_de_la_commune": "LE BUIS", + "code_postal": "87140", + "coordonnees_gps": [ + 46.0341686702, + 1.20438019379 + ], + "libelle_d_acheminement": "LE BUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20438019379, + 46.0341686702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "986814e509d72475532abb3059204aadf9506d51", + "fields": { + "code_commune_insee": "87024", + "nom_de_la_commune": "BUJALEUF", + "code_postal": "87460", + "coordonnees_gps": [ + 45.792339121, + 1.6311809769 + ], + "libelle_d_acheminement": "BUJALEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6311809769, + 45.792339121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81c722f058f02e09b06516ca0f28da13250054f8", + "fields": { + "code_commune_insee": "87025", + "nom_de_la_commune": "BURGNAC", + "code_postal": "87800", + "coordonnees_gps": [ + 45.7402548508, + 1.16724967571 + ], + "libelle_d_acheminement": "BURGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16724967571, + 45.7402548508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49140a4c5c59d952b76006ba11ce8c9f49326c83", + "fields": { + "ligne_5": "ST NICOLAS COURBEFY", + "code_commune_insee": "87027", + "libelle_d_acheminement": "BUSSIERE GALANT", + "code_postal": "87230", + "nom_de_la_commune": "BUSSIERE GALANT", + "coordonnees_gps": [ + 45.6176010167, + 1.04599414637 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04599414637, + 45.6176010167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2612f58ebb6f8d925c18630a06e4dae67e86d87", + "fields": { + "code_commune_insee": "87035", + "nom_de_la_commune": "CHAMPNETERY", + "code_postal": "87400", + "coordonnees_gps": [ + 45.8270852921, + 1.57880125346 + ], + "libelle_d_acheminement": "CHAMPNETERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57880125346, + 45.8270852921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2b5f5872986243a37f8aa6e5b3a8c87dd430ac8", + "fields": { + "code_commune_insee": "87039", + "nom_de_la_commune": "CHATEAU CHERVIX", + "code_postal": "87380", + "coordonnees_gps": [ + 45.5905089648, + 1.35649971998 + ], + "libelle_d_acheminement": "CHATEAU CHERVIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35649971998, + 45.5905089648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33a5e64ee18bf5e33c7bfeb8d1d30640774a4fc6", + "fields": { + "code_commune_insee": "87045", + "nom_de_la_commune": "CIEUX", + "code_postal": "87520", + "coordonnees_gps": [ + 45.9859461693, + 1.02906583716 + ], + "libelle_d_acheminement": "CIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02906583716, + 45.9859461693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edee74e7b5716b345fe620f409716a23d942791b", + "fields": { + "code_commune_insee": "87048", + "nom_de_la_commune": "CONDAT SUR VIENNE", + "code_postal": "87920", + "coordonnees_gps": [ + 45.7833260801, + 1.2400833862 + ], + "libelle_d_acheminement": "CONDAT SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2400833862, + 45.7833260801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1af1f259cfd417adfffbea8596b2c8f75b9876fc", + "fields": { + "code_commune_insee": "87051", + "nom_de_la_commune": "LA CROISILLE SUR BRIANCE", + "code_postal": "87130", + "coordonnees_gps": [ + 45.6190453687, + 1.60371585953 + ], + "libelle_d_acheminement": "LA CROISILLE SUR BRIANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60371585953, + 45.6190453687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93da2b0313f9e20d357880ff7d53c98b3b67657a", + "fields": { + "code_commune_insee": "87060", + "nom_de_la_commune": "DOURNAZAC", + "code_postal": "87230", + "coordonnees_gps": [ + 45.629584088, + 0.918572363305 + ], + "libelle_d_acheminement": "DOURNAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.918572363305, + 45.629584088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68cac8757688a66465ca1c6fc3139b8f4bf6dd9b", + "fields": { + "code_commune_insee": "87065", + "nom_de_la_commune": "FEYTIAT", + "code_postal": "87220", + "coordonnees_gps": [ + 45.8054368217, + 1.32945260238 + ], + "libelle_d_acheminement": "FEYTIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32945260238, + 45.8054368217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "275695d7f41520bf25f9736eae13e24029a7fd6f", + "fields": { + "code_commune_insee": "87066", + "nom_de_la_commune": "FLAVIGNAC", + "code_postal": "87230", + "coordonnees_gps": [ + 45.7128781715, + 1.0737357287 + ], + "libelle_d_acheminement": "FLAVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0737357287, + 45.7128781715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d63685ee9490d1b69dad540d3908005bf2b7c14c", + "fields": { + "code_commune_insee": "87069", + "nom_de_la_commune": "GAJOUBERT", + "code_postal": "87330", + "coordonnees_gps": [ + 46.1097751696, + 0.844058767446 + ], + "libelle_d_acheminement": "GAJOUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.844058767446, + 46.1097751696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42eaae493c42c917cf6af1113efc67178b398fe0", + "fields": { + "code_commune_insee": "87072", + "nom_de_la_commune": "GLANGES", + "code_postal": "87380", + "coordonnees_gps": [ + 45.659742237, + 1.46090261076 + ], + "libelle_d_acheminement": "GLANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46090261076, + 45.659742237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17bf36b94e4a080cc91ff073861359c4165ce92f", + "fields": { + "code_commune_insee": "87077", + "nom_de_la_commune": "JANAILHAC", + "code_postal": "87800", + "coordonnees_gps": [ + 45.653878347, + 1.24126604964 + ], + "libelle_d_acheminement": "JANAILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24126604964, + 45.653878347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "518dca050987065dab8e238f892f93e7838455c8", + "fields": { + "code_commune_insee": "87078", + "nom_de_la_commune": "JAVERDAT", + "code_postal": "87520", + "coordonnees_gps": [ + 45.9568008908, + 0.965240651874 + ], + "libelle_d_acheminement": "JAVERDAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.965240651874, + 45.9568008908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e68b433f4dff8c76414aa4d8c46c21b2af75153", + "fields": { + "code_commune_insee": "87081", + "nom_de_la_commune": "JOURGNAC", + "code_postal": "87800", + "coordonnees_gps": [ + 45.7317643416, + 1.21288397777 + ], + "libelle_d_acheminement": "JOURGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21288397777, + 45.7317643416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a3f1233fdbfff1634efb77c9a56261e3c04ea2d", + "fields": { + "code_commune_insee": "87083", + "nom_de_la_commune": "LAURIERE", + "code_postal": "87370", + "coordonnees_gps": [ + 46.0760741278, + 1.50106082876 + ], + "libelle_d_acheminement": "LAURIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50106082876, + 46.0760741278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cc1f79b0531026938ac08133b6307ba0b39c428", + "fields": { + "code_commune_insee": "87085", + "nom_de_la_commune": "LIMOGES", + "code_postal": "87000", + "coordonnees_gps": [ + 45.8542549589, + 1.2487579024 + ], + "libelle_d_acheminement": "LIMOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2487579024, + 45.8542549589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05c2fd88855e78cb7fc7cb211d02547a645c8d1e", + "fields": { + "code_commune_insee": "87086", + "nom_de_la_commune": "LINARDS", + "code_postal": "87130", + "coordonnees_gps": [ + 45.7038935854, + 1.5375026125 + ], + "libelle_d_acheminement": "LINARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5375026125, + 45.7038935854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ea56c4bd39b15a450aa778c443ba6b13ee7e935", + "fields": { + "ligne_5": "MEZIERES SUR ISSOIRE", + "code_commune_insee": "87097", + "libelle_d_acheminement": "VAL D ISSOIRE", + "code_postal": "87330", + "nom_de_la_commune": "VAL D ISSOIRE", + "coordonnees_gps": [ + 46.1111458501, + 0.914010969665 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.914010969665, + 46.1111458501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a53eb2e2079e098d98cc92c5521cca9fea5011d", + "fields": { + "code_commune_insee": "87108", + "nom_de_la_commune": "NOUIC", + "code_postal": "87330", + "coordonnees_gps": [ + 46.0620120225, + 0.915164140935 + ], + "libelle_d_acheminement": "NOUIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.915164140935, + 46.0620120225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "870b7bdeea38244a86b8b2d6d75141b12fbdd369", + "fields": { + "code_commune_insee": "87109", + "nom_de_la_commune": "ORADOUR ST GENEST", + "code_postal": "87210", + "coordonnees_gps": [ + 46.2424604535, + 1.01968874073 + ], + "libelle_d_acheminement": "ORADOUR ST GENEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01968874073, + 46.2424604535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dc3af0fdab81550fe367c7353e0ea2b21bd77a0", + "fields": { + "code_commune_insee": "87116", + "nom_de_la_commune": "PEYRAT DE BELLAC", + "code_postal": "87300", + "coordonnees_gps": [ + 46.1315030493, + 1.02033947545 + ], + "libelle_d_acheminement": "PEYRAT DE BELLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02033947545, + 46.1315030493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cba5986e3454436aff16b367fee3e316bcd92bf", + "fields": { + "code_commune_insee": "87117", + "nom_de_la_commune": "PEYRAT LE CHATEAU", + "code_postal": "87470", + "coordonnees_gps": [ + 45.8082560026, + 1.7824868831 + ], + "libelle_d_acheminement": "PEYRAT LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7824868831, + 45.8082560026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c13aa4c2711836091d32e9dc27d58cc0b71b7fb", + "fields": { + "ligne_5": "ST PARDOUX", + "code_commune_insee": "87128", + "libelle_d_acheminement": "ST PARDOUX LE LAC", + "code_postal": "87250", + "nom_de_la_commune": "ST PARDOUX LE LAC", + "coordonnees_gps": [ + 46.0716643434, + 1.19803600698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19803600698, + 46.0716643434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f357484c9fd653316ab4390a84e6ac776109bf3", + "fields": { + "code_commune_insee": "87138", + "nom_de_la_commune": "ST BONNET BRIANCE", + "code_postal": "87260", + "coordonnees_gps": [ + 45.7152554102, + 1.48470710425 + ], + "libelle_d_acheminement": "ST BONNET BRIANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48470710425, + 45.7152554102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c8351a66aa161ca4df8a8f375df7f7b51852df4", + "fields": { + "code_commune_insee": "87146", + "nom_de_la_commune": "ST GERMAIN LES BELLES", + "code_postal": "87380", + "coordonnees_gps": [ + 45.6049909453, + 1.48606057397 + ], + "libelle_d_acheminement": "ST GERMAIN LES BELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48606057397, + 45.6049909453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "876e98e62eac0081e813c6c892972ea94b319c4e", + "fields": { + "code_commune_insee": "87153", + "nom_de_la_commune": "ST JULIEN LE PETIT", + "code_postal": "87460", + "coordonnees_gps": [ + 45.8226789716, + 1.70562230623 + ], + "libelle_d_acheminement": "ST JULIEN LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70562230623, + 45.8226789716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c1c816b4053a78939633619a5e7b3b330f141e4", + "fields": { + "code_commune_insee": "87178", + "nom_de_la_commune": "ST PRIEST TAURION", + "code_postal": "87480", + "coordonnees_gps": [ + 45.8976553193, + 1.3966265023 + ], + "libelle_d_acheminement": "ST PRIEST TAURION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3966265023, + 45.8976553193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37cfb111f2676745e9d84bfdfe0f962000dc10ce", + "fields": { + "code_commune_insee": "87179", + "nom_de_la_commune": "ST SORNIN LA MARCHE", + "code_postal": "87210", + "coordonnees_gps": [ + 46.1904205516, + 0.992263313197 + ], + "libelle_d_acheminement": "ST SORNIN LA MARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.992263313197, + 46.1904205516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1476683f7f3205583ab6642826afafdce3fc41f", + "fields": { + "code_commune_insee": "87182", + "nom_de_la_commune": "ST SULPICE LES FEUILLES", + "code_postal": "87160", + "coordonnees_gps": [ + 46.315956063, + 1.39206207611 + ], + "libelle_d_acheminement": "ST SULPICE LES FEUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39206207611, + 46.315956063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1257aa46275dcd0b8da45a4770a1f43f5535d3ac", + "fields": { + "code_commune_insee": "87185", + "nom_de_la_commune": "ST VICTURNIEN", + "code_postal": "87420", + "coordonnees_gps": [ + 45.8807233781, + 1.024946383 + ], + "libelle_d_acheminement": "ST VICTURNIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.024946383, + 45.8807233781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a8f5cb74e23e276a957da99fb9de8bb8b1e1be7", + "fields": { + "code_commune_insee": "87186", + "nom_de_la_commune": "ST VITTE SUR BRIANCE", + "code_postal": "87380", + "coordonnees_gps": [ + 45.6250408506, + 1.53874001949 + ], + "libelle_d_acheminement": "ST VITTE SUR BRIANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53874001949, + 45.6250408506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d12bf0c9227f38b661a4cb1c24505a51086926f", + "fields": { + "code_commune_insee": "87199", + "nom_de_la_commune": "VAYRES", + "code_postal": "87600", + "coordonnees_gps": [ + 45.7731821328, + 0.823738491047 + ], + "libelle_d_acheminement": "VAYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.823738491047, + 45.7731821328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f92abefe9c1a2ea28f9158738ba00a8b974d210", + "fields": { + "code_commune_insee": "87204", + "nom_de_la_commune": "VIDEIX", + "code_postal": "87600", + "coordonnees_gps": [ + 45.7827606968, + 0.731901083599 + ], + "libelle_d_acheminement": "VIDEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.731901083599, + 45.7827606968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78c588cd649688d4e2b53134ac7ecd248314a230", + "fields": { + "code_commune_insee": "88005", + "nom_de_la_commune": "ALLARMONT", + "code_postal": "88110", + "coordonnees_gps": [ + 48.4687180609, + 7.02039270494 + ], + "libelle_d_acheminement": "ALLARMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02039270494, + 48.4687180609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfc5ec5ded5257bd4aa96ae3dc44b9654a82db73", + "fields": { + "code_commune_insee": "88014", + "nom_de_la_commune": "ARRENTES DE CORCIEUX", + "code_postal": "88430", + "coordonnees_gps": [ + 48.1325805401, + 6.87565871681 + ], + "libelle_d_acheminement": "ARRENTES DE CORCIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87565871681, + 48.1325805401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20505f0143354139b1b18cd68f5e6633ed2ad794", + "fields": { + "code_commune_insee": "88019", + "nom_de_la_commune": "AUTIGNY LA TOUR", + "code_postal": "88300", + "coordonnees_gps": [ + 48.4150811595, + 5.78035222598 + ], + "libelle_d_acheminement": "AUTIGNY LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78035222598, + 48.4150811595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5db77a5ae6bde4a93b5948f1e3a45a709266f79c", + "fields": { + "code_commune_insee": "88023", + "nom_de_la_commune": "AVILLERS", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3135159705, + 6.20579594744 + ], + "libelle_d_acheminement": "AVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20579594744, + 48.3135159705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f6d1eff8002d41c1f4998301826189ce9a8b84a", + "fields": { + "ligne_5": "HAUTMOUGEY", + "code_commune_insee": "88029", + "libelle_d_acheminement": "LA VOGE LES BAINS", + "code_postal": "88240", + "nom_de_la_commune": "LA VOGE LES BAINS", + "coordonnees_gps": [ + 47.9968747353, + 6.26194585854 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26194585854, + 47.9968747353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f58381b88432240e04ad0f45739df821a0dbcca1", + "fields": { + "code_commune_insee": "88030", + "nom_de_la_commune": "BAINVILLE AUX SAULES", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2073616447, + 6.13345381549 + ], + "libelle_d_acheminement": "BAINVILLE AUX SAULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13345381549, + 48.2073616447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16d995acb3ae4230b2473cf1042362aa839b98c8", + "fields": { + "code_commune_insee": "88053", + "nom_de_la_commune": "BELVAL", + "code_postal": "88210", + "coordonnees_gps": [ + 48.4086416787, + 7.07490269655 + ], + "libelle_d_acheminement": "BELVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07490269655, + 48.4086416787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96f9d804788ec3509f9ec7e9914a5dfe3fa35883", + "fields": { + "code_commune_insee": "88054", + "nom_de_la_commune": "BERTRIMOUTIER", + "code_postal": "88520", + "coordonnees_gps": [ + 48.2646393514, + 7.06227289704 + ], + "libelle_d_acheminement": "BERTRIMOUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06227289704, + 48.2646393514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d9c8d0605bec6cb64ef8974f21e9014328db2c8", + "fields": { + "code_commune_insee": "88055", + "nom_de_la_commune": "BETTEGNEY ST BRICE", + "code_postal": "88450", + "coordonnees_gps": [ + 48.3034515964, + 6.31437877151 + ], + "libelle_d_acheminement": "BETTEGNEY ST BRICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31437877151, + 48.3034515964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de919ffb3746acb2831ff556544a7cf208424371", + "fields": { + "code_commune_insee": "88058", + "nom_de_la_commune": "BIECOURT", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3248866415, + 5.95360086649 + ], + "libelle_d_acheminement": "BIECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95360086649, + 48.3248866415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92dd07a92ac26ffb946269f0e980e9aff55fcc37", + "fields": { + "code_commune_insee": "88075", + "nom_de_la_commune": "LA BRESSE", + "code_postal": "88250", + "coordonnees_gps": [ + 48.0185002514, + 6.92615548288 + ], + "libelle_d_acheminement": "LA BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92615548288, + 48.0185002514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8268f16917f4dce2885f3e57854b0b65dc85726c", + "fields": { + "code_commune_insee": "88106", + "nom_de_la_commune": "BAN SUR MEURTHE CLEFCY", + "code_postal": "88230", + "coordonnees_gps": [ + 48.1266851489, + 6.97520285406 + ], + "libelle_d_acheminement": "BAN SUR MEURTHE CLEFCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97520285406, + 48.1266851489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e788043e03aa30f74b3b2a75ecdbf42b1e32582d", + "fields": { + "code_commune_insee": "88113", + "nom_de_la_commune": "COMBRIMONT", + "code_postal": "88490", + "coordonnees_gps": [ + 48.2743557331, + 7.0756682175 + ], + "libelle_d_acheminement": "COMBRIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0756682175, + 48.2743557331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d6a446aa395670a0d5e9796373f1663e3d77988", + "fields": { + "code_commune_insee": "88116", + "nom_de_la_commune": "CORNIMONT", + "code_postal": "88310", + "coordonnees_gps": [ + 47.9685491752, + 6.8653046202 + ], + "libelle_d_acheminement": "CORNIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8653046202, + 47.9685491752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea6d494d560a7ae534c9d76e5110410ffa30d90b", + "fields": { + "code_commune_insee": "88121", + "nom_de_la_commune": "DAMAS AUX BOIS", + "code_postal": "88330", + "coordonnees_gps": [ + 48.3846738845, + 6.41607186665 + ], + "libelle_d_acheminement": "DAMAS AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41607186665, + 48.3846738845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76316f5244fca9061bafaca0a8f54ae1643ec44e", + "fields": { + "code_commune_insee": "88125", + "nom_de_la_commune": "DARNEY AUX CHENES", + "code_postal": "88170", + "coordonnees_gps": [ + 48.283062153, + 5.81082852024 + ], + "libelle_d_acheminement": "DARNEY AUX CHENES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81082852024, + 48.283062153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83ce204eac67f897f1a5a03611ec76b208d50685", + "fields": { + "code_commune_insee": "88128", + "nom_de_la_commune": "DENIPAIRE", + "code_postal": "88210", + "coordonnees_gps": [ + 48.3398168543, + 6.96189290978 + ], + "libelle_d_acheminement": "DENIPAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96189290978, + 48.3398168543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d81d4500dcd5d393041c0383dd405bee76f07b7", + "fields": { + "code_commune_insee": "88129", + "nom_de_la_commune": "DERBAMONT", + "code_postal": "88270", + "coordonnees_gps": [ + 48.26687317, + 6.27162606216 + ], + "libelle_d_acheminement": "DERBAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27162606216, + 48.26687317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc371c3cd8da16f1b7aba9daa2f37fa2b4e295d2", + "fields": { + "code_commune_insee": "88135", + "nom_de_la_commune": "DOCELLES", + "code_postal": "88460", + "coordonnees_gps": [ + 48.1419104784, + 6.62527743986 + ], + "libelle_d_acheminement": "DOCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62527743986, + 48.1419104784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4bb03b7f6c9071330085a7837291737d3517a6d", + "fields": { + "code_commune_insee": "88138", + "nom_de_la_commune": "DOMBASLE DEVANT DARNEY", + "code_postal": "88260", + "coordonnees_gps": [ + 48.127049377, + 6.07713965721 + ], + "libelle_d_acheminement": "DOMBASLE DEVANT DARNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07713965721, + 48.127049377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77cb889947f5366f2bbf3e2cd1a168203fdb9f17", + "fields": { + "code_commune_insee": "88139", + "nom_de_la_commune": "DOMBASLE EN XAINTOIS", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3057351148, + 5.99353360159 + ], + "libelle_d_acheminement": "DOMBASLE EN XAINTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99353360159, + 48.3057351148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1490f50a5008ec7e02c2c4cded89d69e503867c", + "fields": { + "code_commune_insee": "88140", + "nom_de_la_commune": "DOMBROT LE SEC", + "code_postal": "88140", + "coordonnees_gps": [ + 48.1427266138, + 5.89822258779 + ], + "libelle_d_acheminement": "DOMBROT LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89822258779, + 48.1427266138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6ac637e145bb1492ab83750879f9bceba74ab4e", + "fields": { + "code_commune_insee": "88141", + "nom_de_la_commune": "DOMBROT SUR VAIR", + "code_postal": "88170", + "coordonnees_gps": [ + 48.2650411994, + 5.89084030317 + ], + "libelle_d_acheminement": "DOMBROT SUR VAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89084030317, + 48.2650411994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06b3dbc9009e8a2b5661b720f660684317ba26f0", + "fields": { + "code_commune_insee": "88142", + "nom_de_la_commune": "DOMEVRE SUR AVIERE", + "code_postal": "88390", + "coordonnees_gps": [ + 48.2221272112, + 6.38817916406 + ], + "libelle_d_acheminement": "DOMEVRE SUR AVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38817916406, + 48.2221272112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "248723c2c0b7f30203c957741287f39f822cf59b", + "fields": { + "code_commune_insee": "88144", + "nom_de_la_commune": "DOMEVRE SOUS MONTFORT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.2560865469, + 6.0742479826 + ], + "libelle_d_acheminement": "DOMEVRE SOUS MONTFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0742479826, + 48.2560865469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8a71460a4fa39e3e8e4cb2c00389d0540861d90", + "fields": { + "code_commune_insee": "88145", + "nom_de_la_commune": "DOMFAING", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2408241172, + 6.75106532043 + ], + "libelle_d_acheminement": "DOMFAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75106532043, + 48.2408241172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "862db6df49d7462519c7effb57be34445284340a", + "fields": { + "code_commune_insee": "88151", + "nom_de_la_commune": "DOMPAIRE", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2260970826, + 6.20804680456 + ], + "libelle_d_acheminement": "DOMPAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20804680456, + 48.2260970826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3f0063c1c48b33b1cb8a5f3fa710d7694d271cc", + "fields": { + "code_commune_insee": "88154", + "nom_de_la_commune": "DOMREMY LA PUCELLE", + "code_postal": "88630", + "coordonnees_gps": [ + 48.4404883955, + 5.65618746343 + ], + "libelle_d_acheminement": "DOMREMY LA PUCELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65618746343, + 48.4404883955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f001f571db5edb7d9742b02a0fc6ea7a3b8c7fd", + "fields": { + "code_commune_insee": "88155", + "nom_de_la_commune": "DOMVALLIER", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3063425384, + 6.08048880292 + ], + "libelle_d_acheminement": "DOMVALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08048880292, + 48.3063425384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efb92fbfe93b9c801c769c169deae6bad1db2bee", + "fields": { + "code_commune_insee": "88165", + "nom_de_la_commune": "ETIVAL CLAIREFONTAINE", + "code_postal": "88480", + "coordonnees_gps": [ + 48.3643386923, + 6.84394360336 + ], + "libelle_d_acheminement": "ETIVAL CLAIREFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84394360336, + 48.3643386923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aad130721288a0aad948552837a475f6d7657a9", + "fields": { + "code_commune_insee": "88166", + "nom_de_la_commune": "EVAUX ET MENIL", + "code_postal": "88450", + "coordonnees_gps": [ + 48.3237100807, + 6.30111306789 + ], + "libelle_d_acheminement": "EVAUX ET MENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30111306789, + 48.3237100807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9434fb27f68932f6ef2318a21bc5e5f4ba459525", + "fields": { + "code_commune_insee": "88168", + "nom_de_la_commune": "FAUCONCOURT", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3734058012, + 6.53727120074 + ], + "libelle_d_acheminement": "FAUCONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53727120074, + 48.3734058012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4dc1b5f29a80e548b4296778600ff61615c147d", + "fields": { + "code_commune_insee": "88169", + "nom_de_la_commune": "FAYS", + "code_postal": "88600", + "coordonnees_gps": [ + 48.196859172, + 6.66860089142 + ], + "libelle_d_acheminement": "FAYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66860089142, + 48.196859172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c582eb7a54edbf2b59e4b77f880726e9ede263f7", + "fields": { + "code_commune_insee": "88174", + "nom_de_la_commune": "FOMEREY", + "code_postal": "88390", + "coordonnees_gps": [ + 48.2182731886, + 6.34379031383 + ], + "libelle_d_acheminement": "FOMEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34379031383, + 48.2182731886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b48bc15ab154f36490543b0ddd782f941c1224fd", + "fields": { + "code_commune_insee": "88176", + "nom_de_la_commune": "FONTENOY LE CHATEAU", + "code_postal": "88240", + "coordonnees_gps": [ + 47.9788627789, + 6.20625008119 + ], + "libelle_d_acheminement": "FONTENOY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20625008119, + 47.9788627789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b3982b9dfe330d942e938e8469ac133eac14425", + "fields": { + "code_commune_insee": "88180", + "nom_de_la_commune": "FRAIN", + "code_postal": "88320", + "coordonnees_gps": [ + 48.0826848096, + 5.88107000168 + ], + "libelle_d_acheminement": "FRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88107000168, + 48.0826848096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "194b674cfd5956fe7521a96f9a56c3aff48a9fca", + "fields": { + "code_commune_insee": "88187", + "nom_de_la_commune": "FRENOIS", + "code_postal": "88270", + "coordonnees_gps": [ + 48.1852875824, + 6.12323328495 + ], + "libelle_d_acheminement": "FRENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12323328495, + 48.1852875824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ac46834657d86d7f69c06447735e089d65f52d7", + "fields": { + "code_commune_insee": "88189", + "nom_de_la_commune": "FREVILLE", + "code_postal": "88350", + "coordonnees_gps": [ + 48.3260427587, + 5.62319879925 + ], + "libelle_d_acheminement": "FREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62319879925, + 48.3260427587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fb3ef46932285c3676cb9b395be2db64e393f12", + "fields": { + "code_commune_insee": "88190", + "nom_de_la_commune": "FRIZON", + "code_postal": "88440", + "coordonnees_gps": [ + 48.2855591767, + 6.35372827024 + ], + "libelle_d_acheminement": "FRIZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35372827024, + 48.2855591767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d88bba723ea52b639c38841a42846aa4d37d40a", + "fields": { + "ligne_5": "ADOMPT", + "code_commune_insee": "88192", + "libelle_d_acheminement": "GELVECOURT ET ADOMPT", + "code_postal": "88270", + "nom_de_la_commune": "GELVECOURT ET ADOMPT", + "coordonnees_gps": [ + 48.2008667754, + 6.17865808407 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17865808407, + 48.2008667754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81e3e1a24c87026c70fefe564b8cb1d0f4a0ee4d", + "fields": { + "code_commune_insee": "88193", + "nom_de_la_commune": "GEMAINGOUTTE", + "code_postal": "88520", + "coordonnees_gps": [ + 48.2455359961, + 7.1099105349 + ], + "libelle_d_acheminement": "GEMAINGOUTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1099105349, + 48.2455359961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cac55d6182c5873c622999ed98b39f7e7bef333", + "fields": { + "code_commune_insee": "88201", + "nom_de_la_commune": "GIRANCOURT", + "code_postal": "88390", + "coordonnees_gps": [ + 48.1469425491, + 6.32699648339 + ], + "libelle_d_acheminement": "GIRANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32699648339, + 48.1469425491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf85f6dd37f4ed9e27de59fb937fb1d1740a132a", + "fields": { + "code_commune_insee": "88214", + "nom_de_la_commune": "GRANDRUPT DE BAINS", + "code_postal": "88240", + "coordonnees_gps": [ + 48.0636070991, + 6.17968670773 + ], + "libelle_d_acheminement": "GRANDRUPT DE BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17968670773, + 48.0636070991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7db962c19b19dc81222672d917aa99176a0e3d31", + "fields": { + "code_commune_insee": "88215", + "nom_de_la_commune": "GRANDRUPT", + "code_postal": "88210", + "coordonnees_gps": [ + 48.3669519771, + 7.06206760711 + ], + "libelle_d_acheminement": "GRANDRUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06206760711, + 48.3669519771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96c02a321202d9adc2cc2f234cfbdc28cad02f9e", + "fields": { + "code_commune_insee": "88219", + "nom_de_la_commune": "GREUX", + "code_postal": "88630", + "coordonnees_gps": [ + 48.4598585275, + 5.6715322297 + ], + "libelle_d_acheminement": "GREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6715322297, + 48.4598585275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eb2727c5d0d4eb7a345113361d350d58c610b1f", + "fields": { + "code_commune_insee": "88225", + "nom_de_la_commune": "HADOL", + "code_postal": "88220", + "coordonnees_gps": [ + 48.0819790243, + 6.45579415214 + ], + "libelle_d_acheminement": "HADOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45579415214, + 48.0819790243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0377f872e899df54b692b506f21bdbd1768068d5", + "fields": { + "code_commune_insee": "88226", + "nom_de_la_commune": "HAGECOURT", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2291705541, + 6.15725916323 + ], + "libelle_d_acheminement": "HAGECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15725916323, + 48.2291705541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab2e19a10885d667e829df2a8584d1250053862b", + "fields": { + "code_commune_insee": "88229", + "nom_de_la_commune": "HARCHECHAMP", + "code_postal": "88300", + "coordonnees_gps": [ + 48.4051693044, + 5.80121835307 + ], + "libelle_d_acheminement": "HARCHECHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80121835307, + 48.4051693044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37ea28625ea62b949d4e4be799721b3d9008e35f", + "fields": { + "code_commune_insee": "88243", + "nom_de_la_commune": "HOUSSERAS", + "code_postal": "88700", + "coordonnees_gps": [ + 48.308084237, + 6.73540332376 + ], + "libelle_d_acheminement": "HOUSSERAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73540332376, + 48.308084237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27df1226908e07109784ff842a985153bca5042b", + "fields": { + "code_commune_insee": "88248", + "nom_de_la_commune": "ISCHES", + "code_postal": "88320", + "coordonnees_gps": [ + 48.0173921353, + 5.82091215963 + ], + "libelle_d_acheminement": "ISCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82091215963, + 48.0173921353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3388515057a8850636e868bd705baf6d8d4d09e", + "fields": { + "code_commune_insee": "88252", + "nom_de_la_commune": "JESONVILLE", + "code_postal": "88260", + "coordonnees_gps": [ + 48.126377839, + 6.11393136453 + ], + "libelle_d_acheminement": "JESONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11393136453, + 48.126377839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7edec254db3c33ca84b1bdb1877b50df1f550bee", + "fields": { + "code_commune_insee": "88253", + "nom_de_la_commune": "JEUXEY", + "code_postal": "88000", + "coordonnees_gps": [ + 48.200587727, + 6.49007507177 + ], + "libelle_d_acheminement": "JEUXEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49007507177, + 48.200587727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed771ffc52042f21fe5732f092282f4208bc2e77", + "fields": { + "code_commune_insee": "88255", + "nom_de_la_commune": "JUBAINVILLE", + "code_postal": "88630", + "coordonnees_gps": [ + 48.4578190755, + 5.74949655029 + ], + "libelle_d_acheminement": "JUBAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74949655029, + 48.4578190755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9494b7edc368875a5f54c78fdd992b58d6a4effb", + "fields": { + "code_commune_insee": "88256", + "nom_de_la_commune": "JUSSARUPT", + "code_postal": "88640", + "coordonnees_gps": [ + 48.1559833004, + 6.74946475132 + ], + "libelle_d_acheminement": "JUSSARUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74946475132, + 48.1559833004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b36b6df77bef75a7b519ecbd7db75b69fa81b3b3", + "fields": { + "code_commune_insee": "88258", + "nom_de_la_commune": "LAMARCHE", + "code_postal": "88320", + "coordonnees_gps": [ + 48.0624124786, + 5.77771959869 + ], + "libelle_d_acheminement": "LAMARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77771959869, + 48.0624124786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2323443530395f1d5aa90c81ce449ddb0fbed8a4", + "fields": { + "code_commune_insee": "88265", + "nom_de_la_commune": "LEMMECOURT", + "code_postal": "88300", + "coordonnees_gps": [ + 48.2636413902, + 5.73237626549 + ], + "libelle_d_acheminement": "LEMMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73237626549, + 48.2636413902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73f429f941e7ad25c6bdbbc2c75bcd5927c82331", + "fields": { + "code_commune_insee": "88267", + "nom_de_la_commune": "LERRAIN", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1334408812, + 6.1445531008 + ], + "libelle_d_acheminement": "LERRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1445531008, + 48.1334408812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7d19e2e08c414f30f504b93ff8a58de0a514faa", + "fields": { + "code_commune_insee": "88269", + "nom_de_la_commune": "LIEZEY", + "code_postal": "88400", + "coordonnees_gps": [ + 48.0953821973, + 6.80125032702 + ], + "libelle_d_acheminement": "LIEZEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80125032702, + 48.0953821973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6111b2179e6bc92b12be5301b786ab7d86284b45", + "fields": { + "code_commune_insee": "88280", + "nom_de_la_commune": "MADEGNEY", + "code_postal": "88450", + "coordonnees_gps": [ + 48.2854598939, + 6.28777865457 + ], + "libelle_d_acheminement": "MADEGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28777865457, + 48.2854598939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec1a0e3a8ec34a17d6add7558916f31940ee6f3b", + "fields": { + "code_commune_insee": "88281", + "nom_de_la_commune": "MADONNE ET LAMEREY", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2260937024, + 6.24298966238 + ], + "libelle_d_acheminement": "MADONNE ET LAMEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24298966238, + 48.2260937024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b59c4f97a5d4c514745c4d33adcebaf96f0b3881", + "fields": { + "code_commune_insee": "88288", + "nom_de_la_commune": "MARONCOURT", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2463375996, + 6.16356949078 + ], + "libelle_d_acheminement": "MARONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16356949078, + 48.2463375996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3044a051699a57809e7d56d991efd80b237b0cb9", + "fields": { + "code_commune_insee": "88292", + "nom_de_la_commune": "MATTAINCOURT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.2777683116, + 6.1280387799 + ], + "libelle_d_acheminement": "MATTAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1280387799, + 48.2777683116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2177cb8df0710496963718d4ecdf829aced5f587", + "fields": { + "code_commune_insee": "88296", + "nom_de_la_commune": "MEDONVILLE", + "code_postal": "88140", + "coordonnees_gps": [ + 48.2150854972, + 5.73452530461 + ], + "libelle_d_acheminement": "MEDONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73452530461, + 48.2150854972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3245110c122925e7f95e92ad81ce581a88bbc4ad", + "fields": { + "code_commune_insee": "88303", + "nom_de_la_commune": "MIDREVAUX", + "code_postal": "88630", + "coordonnees_gps": [ + 48.3882114046, + 5.58565024732 + ], + "libelle_d_acheminement": "MIDREVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58565024732, + 48.3882114046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4c82138a4299db9e5517c251454918c5c6a0094", + "fields": { + "code_commune_insee": "88305", + "nom_de_la_commune": "MONCEL SUR VAIR", + "code_postal": "88630", + "coordonnees_gps": [ + 48.4246422681, + 5.70427543116 + ], + "libelle_d_acheminement": "MONCEL SUR VAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70427543116, + 48.4246422681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "541c4f85c9a72d1dccae5804f993421f632daa8f", + "fields": { + "code_commune_insee": "88307", + "nom_de_la_commune": "MONT LES LAMARCHE", + "code_postal": "88320", + "coordonnees_gps": [ + 48.0239239914, + 5.79475524038 + ], + "libelle_d_acheminement": "MONT LES LAMARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79475524038, + 48.0239239914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "272de6d4be4e5209f9b9d3c721f79d37a6870b62", + "fields": { + "code_commune_insee": "88308", + "nom_de_la_commune": "MONT LES NEUFCHATEAU", + "code_postal": "88300", + "coordonnees_gps": [ + 48.3527617859, + 5.64259267987 + ], + "libelle_d_acheminement": "MONT LES NEUFCHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64259267987, + 48.3527617859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1825d841b3b573cc86657575fa43527078a3e19b", + "fields": { + "code_commune_insee": "88310", + "nom_de_la_commune": "MONTHUREUX SUR SAONE", + "code_postal": "88410", + "coordonnees_gps": [ + 48.0275487639, + 5.96711970702 + ], + "libelle_d_acheminement": "MONTHUREUX SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96711970702, + 48.0275487639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0acef67f240bc4dd757b76e78dce883f232a7b6", + "fields": { + "code_commune_insee": "88312", + "nom_de_la_commune": "MORELMAISON", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3211524377, + 5.91591541641 + ], + "libelle_d_acheminement": "MORELMAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91591541641, + 48.3211524377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12b7273b11349a9d8b182e003d43085ce93d8511", + "fields": { + "code_commune_insee": "88318", + "nom_de_la_commune": "MOYEMONT", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3446679064, + 6.54438076888 + ], + "libelle_d_acheminement": "MOYEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54438076888, + 48.3446679064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8cb47e430a4be13d181c4b6cee2de5cb9932fe8", + "fields": { + "code_commune_insee": "88319", + "nom_de_la_commune": "MOYENMOUTIER", + "code_postal": "88420", + "coordonnees_gps": [ + 48.3849583082, + 6.91756486753 + ], + "libelle_d_acheminement": "MOYENMOUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91756486753, + 48.3849583082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3927c8b7f6b6292d63b0209b197d218b42b5d31", + "fields": { + "code_commune_insee": "88320", + "nom_de_la_commune": "NAYEMONT LES FOSSES", + "code_postal": "88100", + "coordonnees_gps": [ + 48.2978194425, + 7.00799607343 + ], + "libelle_d_acheminement": "NAYEMONT LES FOSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00799607343, + 48.2978194425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5556a407e17c98ccc057390221c9f7297c58dd0e", + "fields": { + "ligne_5": "ST JEAN DU MARCHE", + "code_commune_insee": "88322", + "libelle_d_acheminement": "LA NEUVEVILLE DEVANT LEPANGES", + "code_postal": "88600", + "nom_de_la_commune": "LA NEUVEVILLE DEVANT LEPANGES", + "coordonnees_gps": [ + 48.1537248949, + 6.66634796718 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66634796718, + 48.1537248949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cc15deda31e96002aa9efddfbae976323f5f56b", + "fields": { + "code_commune_insee": "88330", + "nom_de_la_commune": "NONVILLE", + "code_postal": "88260", + "coordonnees_gps": [ + 48.0899626206, + 5.98313729511 + ], + "libelle_d_acheminement": "NONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98313729511, + 48.0899626206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "968f8231980d6ac50e71a59845f476de301ce751", + "fields": { + "code_commune_insee": "88333", + "nom_de_la_commune": "NOSSONCOURT", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3997714824, + 6.67182363407 + ], + "libelle_d_acheminement": "NOSSONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67182363407, + 48.3997714824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7e8b8926624e3535ee469837db916e9be400903", + "fields": { + "code_commune_insee": "88334", + "nom_de_la_commune": "OELLEVILLE", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3352451365, + 6.02078424546 + ], + "libelle_d_acheminement": "OELLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02078424546, + 48.3352451365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "629b06b4b9db329c84adc3e9005cd8854b51212a", + "fields": { + "code_commune_insee": "88341", + "nom_de_la_commune": "PAIR ET GRANDRUPT", + "code_postal": "88100", + "coordonnees_gps": [ + 48.2794735198, + 7.01113193322 + ], + "libelle_d_acheminement": "PAIR ET GRANDRUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01113193322, + 48.2794735198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce017e8472f14d7a7d0229f1b5df063f3035d740", + "fields": { + "code_commune_insee": "88346", + "nom_de_la_commune": "LA PETITE RAON", + "code_postal": "88210", + "coordonnees_gps": [ + 48.4194366522, + 6.99291726168 + ], + "libelle_d_acheminement": "LA PETITE RAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99291726168, + 48.4194366522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94725754feb5e864254a37d616b23ca0bdd6478d", + "fields": { + "code_commune_insee": "88348", + "nom_de_la_commune": "PIERREPONT SUR L ARENTELE", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2640041205, + 6.660725062 + ], + "libelle_d_acheminement": "PIERREPONT SUR L ARENTELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.660725062, + 48.2640041205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14be12cdb59123825a07a18f44c8600846e1bed0", + "fields": { + "code_commune_insee": "88352", + "nom_de_la_commune": "POMPIERRE", + "code_postal": "88300", + "coordonnees_gps": [ + 48.2746496392, + 5.67619878107 + ], + "libelle_d_acheminement": "POMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67619878107, + 48.2746496392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3823170cbb879af6da52e87b8dbc4b810730dcd7", + "fields": { + "code_commune_insee": "88354", + "nom_de_la_commune": "PONT SUR MADON", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3708641633, + 6.15132896221 + ], + "libelle_d_acheminement": "PONT SUR MADON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15132896221, + 48.3708641633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b20de7709a13a562d3953b8409be429ae4789d9", + "fields": { + "code_commune_insee": "88360", + "nom_de_la_commune": "PROVENCHERES LES DARNEY", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1233719759, + 5.96308105544 + ], + "libelle_d_acheminement": "PROVENCHERES LES DARNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96308105544, + 48.1233719759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ddc0ef1124790809ff026f212914090d931efce", + "fields": { + "ligne_5": "COLROY LA GRANDE", + "code_commune_insee": "88361", + "libelle_d_acheminement": "PROVENCHERES ET COLROY", + "code_postal": "88490", + "nom_de_la_commune": "PROVENCHERES ET COLROY", + "coordonnees_gps": [ + 48.3153511081, + 7.07950479056 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07950479056, + 48.3153511081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e37c1bfae3050038a604b39ce30a7c73550565b", + "fields": { + "code_commune_insee": "88362", + "nom_de_la_commune": "LE PUID", + "code_postal": "88210", + "coordonnees_gps": [ + 48.3927228092, + 7.03919512713 + ], + "libelle_d_acheminement": "LE PUID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03919512713, + 48.3927228092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0eb96cb4d9feb96414f7b21967d5506c747285e", + "fields": { + "code_commune_insee": "88367", + "nom_de_la_commune": "RAMBERVILLERS", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3458722142, + 6.63121002783 + ], + "libelle_d_acheminement": "RAMBERVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63121002783, + 48.3458722142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86c5979325ff9e8b7a35e2b9bd28d92f6e4cbc76", + "fields": { + "code_commune_insee": "88368", + "nom_de_la_commune": "RAMECOURT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3088372975, + 6.09746519349 + ], + "libelle_d_acheminement": "RAMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09746519349, + 48.3088372975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea6e269d29338b525a6bb4d7f76561dc6ea1a68f", + "fields": { + "code_commune_insee": "88371", + "nom_de_la_commune": "RAON AUX BOIS", + "code_postal": "88220", + "coordonnees_gps": [ + 48.0563851529, + 6.51474644165 + ], + "libelle_d_acheminement": "RAON AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51474644165, + 48.0563851529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b98a9f8fa7e5dc4a3ba253c1b2daffc0dff29a1f", + "fields": { + "code_commune_insee": "88373", + "nom_de_la_commune": "RAON SUR PLAINE", + "code_postal": "88110", + "coordonnees_gps": [ + 48.5066764358, + 7.10986005227 + ], + "libelle_d_acheminement": "RAON SUR PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10986005227, + 48.5066764358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b72aab75be4ba4b1a177b76e9dc6436652145bd8", + "fields": { + "code_commune_insee": "88375", + "nom_de_la_commune": "RAVES", + "code_postal": "88520", + "coordonnees_gps": [ + 48.2607082807, + 7.04375216044 + ], + "libelle_d_acheminement": "RAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04375216044, + 48.2607082807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f9a0f4b359bc28ed66594f9b61c29d86df1d90d", + "fields": { + "code_commune_insee": "88378", + "nom_de_la_commune": "REGNEY", + "code_postal": "88450", + "coordonnees_gps": [ + 48.28657305, + 6.30785592223 + ], + "libelle_d_acheminement": "REGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30785592223, + 48.28657305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bf36897d81dc1b45776912632ebd39b4814d1ef", + "fields": { + "code_commune_insee": "88385", + "nom_de_la_commune": "REMONCOURT", + "code_postal": "88800", + "coordonnees_gps": [ + 48.2238896694, + 6.05370778613 + ], + "libelle_d_acheminement": "REMONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05370778613, + 48.2238896694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1caef718cd2fb699651b4ded7800d2daa590ba5b", + "fields": { + "code_commune_insee": "88401", + "nom_de_la_commune": "ROUVRES LA CHETIVE", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3048594616, + 5.77652870122 + ], + "libelle_d_acheminement": "ROUVRES LA CHETIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77652870122, + 48.3048594616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "576f836012cf8ca8b69d2ad1b1367baace7689f4", + "fields": { + "code_commune_insee": "88409", + "nom_de_la_commune": "ST AME", + "code_postal": "88120", + "coordonnees_gps": [ + 48.0241085703, + 6.65165040514 + ], + "libelle_d_acheminement": "ST AME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65165040514, + 48.0241085703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7371c2f4229d92a76274cd96149567eb25bd8f96", + "fields": { + "code_commune_insee": "88434", + "nom_de_la_commune": "ST REMIMONT", + "code_postal": "88800", + "coordonnees_gps": [ + 48.2415839774, + 5.91269544307 + ], + "libelle_d_acheminement": "ST REMIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91269544307, + 48.2415839774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc9e2f5841cca63b453cc3146e6fc197853c0e30", + "fields": { + "code_commune_insee": "88454", + "nom_de_la_commune": "SERCOEUR", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2559068435, + 6.53631302887 + ], + "libelle_d_acheminement": "SERCOEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53631302887, + 48.2559068435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a8dfd29b53764177a94f04280e8844cda575506", + "fields": { + "code_commune_insee": "88466", + "nom_de_la_commune": "THEY SOUS MONTFORT", + "code_postal": "88800", + "coordonnees_gps": [ + 48.2295778524, + 5.97261217234 + ], + "libelle_d_acheminement": "THEY SOUS MONTFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97261217234, + 48.2295778524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6bd1c5e03ee64865ed325977ebd3229b6a12636", + "fields": { + "code_commune_insee": "88470", + "nom_de_la_commune": "LE THOLY", + "code_postal": "88530", + "coordonnees_gps": [ + 48.0875038996, + 6.73898025546 + ], + "libelle_d_acheminement": "LE THOLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73898025546, + 48.0875038996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "422f31039a2e226c2777e3edd85ed748d619b5e1", + "fields": { + "ligne_5": "ROCOURT", + "code_commune_insee": "88475", + "libelle_d_acheminement": "TOLLAINCOURT", + "code_postal": "88320", + "nom_de_la_commune": "TOLLAINCOURT", + "coordonnees_gps": [ + 48.0944938013, + 5.72324899946 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72324899946, + 48.0944938013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23fa5976b95d3aab8978740edd9defebb8456c52", + "fields": { + "code_commune_insee": "88477", + "nom_de_la_commune": "TRAMPOT", + "code_postal": "88350", + "coordonnees_gps": [ + 48.3555814524, + 5.44245742995 + ], + "libelle_d_acheminement": "TRAMPOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44245742995, + 48.3555814524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "997976c30f298e82e1f8f503f939b4de54d94e11", + "fields": { + "code_commune_insee": "88484", + "nom_de_la_commune": "UZEMAIN", + "code_postal": "88220", + "coordonnees_gps": [ + 48.1015554236, + 6.34403529547 + ], + "libelle_d_acheminement": "UZEMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34403529547, + 48.1015554236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28d0e751975f07ff56768a14c7efc2a1f2b62f1f", + "fields": { + "code_commune_insee": "88493", + "nom_de_la_commune": "VARMONZEY", + "code_postal": "88450", + "coordonnees_gps": [ + 48.3232458898, + 6.28031877761 + ], + "libelle_d_acheminement": "VARMONZEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28031877761, + 48.3232458898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa2cc6ef6da4ef959a4e352152de40d4353ef2c4", + "fields": { + "code_commune_insee": "88498", + "nom_de_la_commune": "VECOUX", + "code_postal": "88200", + "coordonnees_gps": [ + 47.9697988372, + 6.66320804363 + ], + "libelle_d_acheminement": "VECOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66320804363, + 47.9697988372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfef1781fe3ef27d6568ae8922d52923a609f5d0", + "fields": { + "code_commune_insee": "88505", + "nom_de_la_commune": "VIENVILLE", + "code_postal": "88430", + "coordonnees_gps": [ + 48.1775009345, + 6.84473927135 + ], + "libelle_d_acheminement": "VIENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84473927135, + 48.1775009345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aae801f34c5ebcdf7a593211c339a87dd9cca2e3", + "fields": { + "code_commune_insee": "88509", + "nom_de_la_commune": "VILLONCOURT", + "code_postal": "88150", + "coordonnees_gps": [ + 48.2696270418, + 6.51634563394 + ], + "libelle_d_acheminement": "VILLONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51634563394, + 48.2696270418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17fd86f7cc920b8edb229c254fed251d93e9b492", + "fields": { + "code_commune_insee": "88516", + "nom_de_la_commune": "VITTEL", + "code_postal": "88800", + "coordonnees_gps": [ + 48.2012893937, + 5.95449403029 + ], + "libelle_d_acheminement": "VITTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95449403029, + 48.2012893937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82190b843e0131bf613481372a0bf3aa15970d16", + "fields": { + "code_commune_insee": "88518", + "nom_de_la_commune": "VIVIERS LES OFFROICOURT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.2687079823, + 6.01804838798 + ], + "libelle_d_acheminement": "VIVIERS LES OFFROICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01804838798, + 48.2687079823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d03b9fe95550227033ceb91f7a349aafc893b90c", + "fields": { + "code_commune_insee": "88526", + "nom_de_la_commune": "WISEMBACH", + "code_postal": "88520", + "coordonnees_gps": [ + 48.2614197049, + 7.11887100206 + ], + "libelle_d_acheminement": "WISEMBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11887100206, + 48.2614197049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d91b3f40b5a234e25c6d7d0ec35d3bac966b682", + "fields": { + "ligne_5": "CHAMPVALLON", + "code_commune_insee": "89003", + "libelle_d_acheminement": "MONTHOLON", + "code_postal": "89710", + "nom_de_la_commune": "MONTHOLON", + "coordonnees_gps": [ + 47.8710829792, + 3.32834802576 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32834802576, + 47.8710829792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2b9746683fff2dfc605da82c6afafae71e02445", + "fields": { + "code_commune_insee": "89004", + "nom_de_la_commune": "AISY SUR ARMANCON", + "code_postal": "89390", + "coordonnees_gps": [ + 47.6569574082, + 4.2090837181 + ], + "libelle_d_acheminement": "AISY SUR ARMANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2090837181, + 47.6569574082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1da98915326445f6259ff4cabc7d3b247ea1ea9e", + "fields": { + "code_commune_insee": "89005", + "nom_de_la_commune": "ANCY LE FRANC", + "code_postal": "89160", + "coordonnees_gps": [ + 47.7772837074, + 4.16461279806 + ], + "libelle_d_acheminement": "ANCY LE FRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16461279806, + 47.7772837074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f61523fe814d6ee4d5e043047d86b11576a008b7", + "fields": { + "code_commune_insee": "89007", + "nom_de_la_commune": "ANDRYES", + "code_postal": "89480", + "coordonnees_gps": [ + 47.5302279519, + 3.46612181132 + ], + "libelle_d_acheminement": "ANDRYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46612181132, + 47.5302279519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ea52687a7508ce4259946c1207634b468dc8679", + "fields": { + "code_commune_insee": "89009", + "nom_de_la_commune": "ANNAY LA COTE", + "code_postal": "89200", + "coordonnees_gps": [ + 47.5529211916, + 3.87020615166 + ], + "libelle_d_acheminement": "ANNAY LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87020615166, + 47.5529211916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eae47b685591b089f4aa73256cba03a5131de554", + "fields": { + "code_commune_insee": "89012", + "nom_de_la_commune": "ANNOUX", + "code_postal": "89440", + "coordonnees_gps": [ + 47.6235485388, + 4.0510085082 + ], + "libelle_d_acheminement": "ANNOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0510085082, + 47.6235485388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af2c8fb4516d437dfef48225b73f0eef31d1b769", + "fields": { + "code_commune_insee": "89014", + "nom_de_la_commune": "ARCES DILO", + "code_postal": "89320", + "coordonnees_gps": [ + 48.0983124946, + 3.59434299703 + ], + "libelle_d_acheminement": "ARCES DILO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59434299703, + 48.0983124946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be10b9dbfc40fcef303f36d30b0cdff4b1c0088f", + "fields": { + "ligne_5": "DILO", + "code_commune_insee": "89014", + "libelle_d_acheminement": "ARCES DILO", + "code_postal": "89320", + "nom_de_la_commune": "ARCES DILO", + "coordonnees_gps": [ + 48.0983124946, + 3.59434299703 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59434299703, + 48.0983124946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9bee3faa1465d6b06700bd328ef64acc046eab6", + "fields": { + "code_commune_insee": "89019", + "nom_de_la_commune": "ARTHONNAY", + "code_postal": "89740", + "coordonnees_gps": [ + 47.9316900287, + 4.22973303932 + ], + "libelle_d_acheminement": "ARTHONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22973303932, + 47.9316900287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9116492b99fb70d0c9b916e14e3351588aa13840", + "fields": { + "ligne_5": "VAUX", + "code_commune_insee": "89024", + "libelle_d_acheminement": "AUXERRE", + "code_postal": "89290", + "nom_de_la_commune": "AUXERRE", + "coordonnees_gps": [ + 47.793488225, + 3.58168281761 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58168281761, + 47.793488225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f63ce7cb3a799f44f61945b7dccba707c4203d2", + "fields": { + "code_commune_insee": "89025", + "nom_de_la_commune": "AVALLON", + "code_postal": "89200", + "coordonnees_gps": [ + 47.4824789933, + 3.91585953972 + ], + "libelle_d_acheminement": "AVALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91585953972, + 47.4824789933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17d242777f2635e219c5e8d1886a2690fa77ef6c", + "fields": { + "code_commune_insee": "89030", + "nom_de_la_commune": "BAZARNES", + "code_postal": "89460", + "coordonnees_gps": [ + 47.6601599363, + 3.64377288965 + ], + "libelle_d_acheminement": "BAZARNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64377288965, + 47.6601599363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1069617f2b2cb72523eab1153061c737060736d", + "fields": { + "code_commune_insee": "89033", + "nom_de_la_commune": "BEAUVOIR", + "code_postal": "89240", + "coordonnees_gps": [ + 47.7920347312, + 3.38017414614 + ], + "libelle_d_acheminement": "BEAUVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38017414614, + 47.7920347312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b460eaca1f1e087586a11781b36bfc9917c74de9", + "fields": { + "code_commune_insee": "89041", + "nom_de_la_commune": "BEUGNON", + "code_postal": "89570", + "coordonnees_gps": [ + 48.0194485737, + 3.79563603666 + ], + "libelle_d_acheminement": "BEUGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79563603666, + 48.0194485737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "493dae0fc7161df19b92df85ab8096bb7f32923a", + "fields": { + "code_commune_insee": "89044", + "nom_de_la_commune": "BLANNAY", + "code_postal": "89200", + "coordonnees_gps": [ + 47.533737182, + 3.76206481409 + ], + "libelle_d_acheminement": "BLANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76206481409, + 47.533737182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0b890ecce90ae011701f432a591ccc843bbdbef", + "fields": { + "code_commune_insee": "89045", + "nom_de_la_commune": "BLEIGNY LE CARREAU", + "code_postal": "89230", + "coordonnees_gps": [ + 47.8317186329, + 3.67738872198 + ], + "libelle_d_acheminement": "BLEIGNY LE CARREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67738872198, + 47.8317186329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aefe7f4231b2b2371c6a88fa1c30ad7dc43d00d", + "fields": { + "code_commune_insee": "89051", + "nom_de_la_commune": "LES BORDES", + "code_postal": "89500", + "coordonnees_gps": [ + 48.1095935384, + 3.38967473325 + ], + "libelle_d_acheminement": "LES BORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38967473325, + 48.1095935384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "338413af63ca1024015df2c6a85d412543c01255", + "fields": { + "code_commune_insee": "89054", + "nom_de_la_commune": "BRANNAY", + "code_postal": "89150", + "coordonnees_gps": [ + 48.2273397765, + 3.12512459737 + ], + "libelle_d_acheminement": "BRANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12512459737, + 48.2273397765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c4f581e87efc19ac6bae32af67dbf42e80e8574", + "fields": { + "code_commune_insee": "89055", + "nom_de_la_commune": "BRIENON SUR ARMANCON", + "code_postal": "89210", + "coordonnees_gps": [ + 48.0009924544, + 3.61784777108 + ], + "libelle_d_acheminement": "BRIENON SUR ARMANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61784777108, + 48.0009924544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7b60b6ff2dcae190f41378ae935b8d5c364ab9b", + "fields": { + "code_commune_insee": "89057", + "nom_de_la_commune": "BROSSES", + "code_postal": "89660", + "coordonnees_gps": [ + 47.5311094024, + 3.68947320566 + ], + "libelle_d_acheminement": "BROSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68947320566, + 47.5311094024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e95f3c78aa040739a9fc6802544ded9e6f4ec5c0", + "fields": { + "code_commune_insee": "89061", + "nom_de_la_commune": "BUTTEAUX", + "code_postal": "89360", + "coordonnees_gps": [ + 47.9838665188, + 3.82197374039 + ], + "libelle_d_acheminement": "BUTTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82197374039, + 47.9838665188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d14b30887d09e170c9c7de7717cfd61538be85f7", + "fields": { + "code_commune_insee": "89064", + "nom_de_la_commune": "CENSY", + "code_postal": "89310", + "coordonnees_gps": [ + 47.6996207906, + 4.04463682832 + ], + "libelle_d_acheminement": "CENSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04463682832, + 47.6996207906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bcce4f9abbd68b095a1c12f2dff2c11e4a131c4", + "fields": { + "code_commune_insee": "89065", + "nom_de_la_commune": "CERILLY", + "code_postal": "89320", + "coordonnees_gps": [ + 48.1772376965, + 3.62550195723 + ], + "libelle_d_acheminement": "CERILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62550195723, + 48.1772376965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2175713caa2b88cd8135a96e58423daad9a79a3f", + "fields": { + "code_commune_insee": "89068", + "nom_de_la_commune": "CHABLIS", + "code_postal": "89800", + "coordonnees_gps": [ + 47.8075995199, + 3.79091424228 + ], + "libelle_d_acheminement": "CHABLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79091424228, + 47.8075995199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68845c172d83e87881fe0144a1586e5f1fc3f5ba", + "fields": { + "code_commune_insee": "89071", + "nom_de_la_commune": "CHAMOUX", + "code_postal": "89660", + "coordonnees_gps": [ + 47.4594591063, + 3.66121368079 + ], + "libelle_d_acheminement": "CHAMOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66121368079, + 47.4594591063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "670f29cad5916c5f1cabd7e16d140fb466e62041", + "fields": { + "code_commune_insee": "89080", + "nom_de_la_commune": "LA CHAPELLE SUR OREUSE", + "code_postal": "89260", + "coordonnees_gps": [ + 48.2918213801, + 3.29933199653 + ], + "libelle_d_acheminement": "LA CHAPELLE SUR OREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29933199653, + 48.2918213801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b19700980e9a094a23ab272b9444995d0a84bdf", + "fields": { + "code_commune_insee": "89083", + "nom_de_la_commune": "CHARBUY", + "code_postal": "89113", + "coordonnees_gps": [ + 47.8282503939, + 3.46650072753 + ], + "libelle_d_acheminement": "CHARBUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46650072753, + 47.8282503939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c78e21df6eb2804ea500be8f2cc644d658292916", + "fields": { + "ligne_5": "MALICORNE", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d8d2a210228c1338b274153dbf3b1a012d51a2d", + "fields": { + "code_commune_insee": "89091", + "nom_de_la_commune": "CHATEL CENSOIR", + "code_postal": "89660", + "coordonnees_gps": [ + 47.5231274585, + 3.63789696158 + ], + "libelle_d_acheminement": "CHATEL CENSOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63789696158, + 47.5231274585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58327628a98c4e4447226b9fad2c4fd03906f6d0", + "fields": { + "code_commune_insee": "89092", + "nom_de_la_commune": "CHATEL GERARD", + "code_postal": "89310", + "coordonnees_gps": [ + 47.6281248856, + 4.10542157906 + ], + "libelle_d_acheminement": "CHATEL GERARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10542157906, + 47.6281248856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7ba03877cf9035f3e094295cf722672fa3e1863", + "fields": { + "code_commune_insee": "89093", + "nom_de_la_commune": "CHAUMONT", + "code_postal": "89340", + "coordonnees_gps": [ + 48.3098919789, + 3.10062087722 + ], + "libelle_d_acheminement": "CHAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10062087722, + 48.3098919789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74a4f16d0df4ef817e8668bc077b1a6bad6ed314", + "fields": { + "code_commune_insee": "89094", + "nom_de_la_commune": "CHAUMOT", + "code_postal": "89500", + "coordonnees_gps": [ + 48.0831019146, + 3.202617181 + ], + "libelle_d_acheminement": "CHAUMOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.202617181, + 48.0831019146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a2786ade75b90840f7a4735e4429dd11e8db55d", + "fields": { + "code_commune_insee": "89095", + "nom_de_la_commune": "CHEMILLY SUR SEREIN", + "code_postal": "89800", + "coordonnees_gps": [ + 47.7679851847, + 3.85758757534 + ], + "libelle_d_acheminement": "CHEMILLY SUR SEREIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85758757534, + 47.7679851847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9101bea66c47c524ab5c2f93cb404795be7f366", + "fields": { + "code_commune_insee": "89096", + "nom_de_la_commune": "CHEMILLY SUR YONNE", + "code_postal": "89250", + "coordonnees_gps": [ + 47.8967076201, + 3.55752169454 + ], + "libelle_d_acheminement": "CHEMILLY SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55752169454, + 47.8967076201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4c9cc552002be37545e9c150081af56ff912bc8", + "fields": { + "code_commune_insee": "89098", + "nom_de_la_commune": "CHENEY", + "code_postal": "89700", + "coordonnees_gps": [ + 47.9131115913, + 3.96166576209 + ], + "libelle_d_acheminement": "CHENEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96166576209, + 47.9131115913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ef81d013689d3ea8d32a9291fdc3144c457bd04", + "fields": { + "code_commune_insee": "89126", + "nom_de_la_commune": "COURTOIN", + "code_postal": "89150", + "coordonnees_gps": [ + 48.1216195741, + 3.10995909647 + ], + "libelle_d_acheminement": "COURTOIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10995909647, + 48.1216195741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b8d7e1da44a6cee8a439c35fd2b4ac9d4895dfe", + "fields": { + "code_commune_insee": "89127", + "nom_de_la_commune": "COURTOIS SUR YONNE", + "code_postal": "89100", + "coordonnees_gps": [ + 48.2291773603, + 3.24850168406 + ], + "libelle_d_acheminement": "COURTOIS SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24850168406, + 48.2291773603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be09863a40c291a24275237665d2ed08fc9cd4ab", + "fields": { + "code_commune_insee": "89139", + "nom_de_la_commune": "DIGES", + "code_postal": "89240", + "coordonnees_gps": [ + 47.719989631, + 3.40380600353 + ], + "libelle_d_acheminement": "DIGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40380600353, + 47.719989631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af5e99071f10e759a44bb2bb0be7da45f85788e4", + "fields": { + "code_commune_insee": "89148", + "nom_de_la_commune": "DRUYES LES BELLES FONTAINES", + "code_postal": "89560", + "coordonnees_gps": [ + 47.5588734709, + 3.41791514779 + ], + "libelle_d_acheminement": "DRUYES LES BELLES FONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41791514779, + 47.5588734709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f851f92e038a22042c264f00d60af7b50cd3dbd", + "fields": { + "code_commune_insee": "89152", + "nom_de_la_commune": "EPINEAU LES VOVES", + "code_postal": "89400", + "coordonnees_gps": [ + 47.9468458779, + 3.46998413292 + ], + "libelle_d_acheminement": "EPINEAU LES VOVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46998413292, + 47.9468458779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cfc1f9514eedde461ed2901021df283fb9579f1", + "fields": { + "code_commune_insee": "89164", + "nom_de_la_commune": "FESTIGNY", + "code_postal": "89480", + "coordonnees_gps": [ + 47.5587659772, + 3.53435245124 + ], + "libelle_d_acheminement": "FESTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53435245124, + 47.5587659772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b898da99f37b6393e027f97bf76e498ba6b74fb", + "fields": { + "code_commune_insee": "89170", + "nom_de_la_commune": "FOISSY LES VEZELAY", + "code_postal": "89450", + "coordonnees_gps": [ + 47.4373067665, + 3.75900618123 + ], + "libelle_d_acheminement": "FOISSY LES VEZELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75900618123, + 47.4373067665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "674f08f05f9284c7a2ee857de988b4efbfd380e7", + "fields": { + "code_commune_insee": "89171", + "nom_de_la_commune": "FOISSY SUR VANNE", + "code_postal": "89190", + "coordonnees_gps": [ + 48.2225776694, + 3.50568245446 + ], + "libelle_d_acheminement": "FOISSY SUR VANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50568245446, + 48.2225776694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23cc1c7e432564c133cdb21c01c42f6c00d2f898", + "fields": { + "code_commune_insee": "89172", + "nom_de_la_commune": "FONTAINE LA GAILLARDE", + "code_postal": "89100", + "coordonnees_gps": [ + 48.2246784203, + 3.4008490535 + ], + "libelle_d_acheminement": "FONTAINE LA GAILLARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4008490535, + 48.2246784203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12f652eea11b79bda55a14b0da56177ec545332f", + "fields": { + "code_commune_insee": "89177", + "nom_de_la_commune": "FONTENAY SOUS FOURONNES", + "code_postal": "89660", + "coordonnees_gps": [ + 47.6214347574, + 3.60212816173 + ], + "libelle_d_acheminement": "FONTENAY SOUS FOURONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60212816173, + 47.6214347574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80959c56b19fa2abfeb7ba8a264cbcd54aeeda30", + "fields": { + "code_commune_insee": "89186", + "nom_de_la_commune": "GERMIGNY", + "code_postal": "89600", + "coordonnees_gps": [ + 47.9971165696, + 3.79141682909 + ], + "libelle_d_acheminement": "GERMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79141682909, + 47.9971165696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57150fc61dd968d174a5e80814b6151368b1a170", + "fields": { + "code_commune_insee": "89187", + "nom_de_la_commune": "GIGNY", + "code_postal": "89160", + "coordonnees_gps": [ + 47.8287677848, + 4.30551561383 + ], + "libelle_d_acheminement": "GIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30551561383, + 47.8287677848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83ce2f70f9069103a6463fa2d1e1b9adfeccbcda", + "fields": { + "code_commune_insee": "89188", + "nom_de_la_commune": "GIROLLES", + "code_postal": "89200", + "coordonnees_gps": [ + 47.5460602358, + 3.83633441975 + ], + "libelle_d_acheminement": "GIROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83633441975, + 47.5460602358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e70d7412f832e3d654e0f6a9d648c55098813971", + "fields": { + "code_commune_insee": "89189", + "nom_de_la_commune": "GISY LES NOBLES", + "code_postal": "89140", + "coordonnees_gps": [ + 48.2868565127, + 3.24944929424 + ], + "libelle_d_acheminement": "GISY LES NOBLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24944929424, + 48.2868565127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13f79342864679e85f69c21e9ff778e737b54994", + "fields": { + "code_commune_insee": "89191", + "nom_de_la_commune": "GLAND", + "code_postal": "89740", + "coordonnees_gps": [ + 47.8196707151, + 4.22248259581 + ], + "libelle_d_acheminement": "GLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22248259581, + 47.8196707151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "664c6a26e0f23284f777b3f7ee92f4ba2d572f08", + "fields": { + "ligne_5": "NEUILLY", + "code_commune_insee": "89196", + "libelle_d_acheminement": "VALRAVILLON", + "code_postal": "89113", + "nom_de_la_commune": "VALRAVILLON", + "coordonnees_gps": [ + 47.8968225975, + 3.42698733417 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42698733417, + 47.8968225975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4dd2a1f0e6b0e7b721b9aa38adeff504b1b7a93", + "fields": { + "code_commune_insee": "89210", + "nom_de_la_commune": "JULLY", + "code_postal": "89160", + "coordonnees_gps": [ + 47.7745117396, + 4.29841355038 + ], + "libelle_d_acheminement": "JULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29841355038, + 47.7745117396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "148edccd11d5f5494a597b30d2b9a90721561ea8", + "fields": { + "code_commune_insee": "89214", + "nom_de_la_commune": "LAILLY", + "code_postal": "89190", + "coordonnees_gps": [ + 48.2616892907, + 3.50441517022 + ], + "libelle_d_acheminement": "LAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50441517022, + 48.2616892907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfeb81829cc45395af157c5ac9cb1f7adbf0e87e", + "fields": { + "code_commune_insee": "89223", + "nom_de_la_commune": "LEZINNES", + "code_postal": "89160", + "coordonnees_gps": [ + 47.8039171738, + 4.07106558888 + ], + "libelle_d_acheminement": "LEZINNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07106558888, + 47.8039171738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1040716c931b229253fced01707cd8adeb06f99", + "fields": { + "ligne_5": "ESSERT", + "code_commune_insee": "89233", + "libelle_d_acheminement": "LUCY SUR CURE", + "code_postal": "89270", + "nom_de_la_commune": "LUCY SUR CURE", + "coordonnees_gps": [ + 47.637007629, + 3.76485740571 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76485740571, + 47.637007629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21ebd47350966ca3fc8e7a515ae1ce527e767ffa", + "fields": { + "code_commune_insee": "89239", + "nom_de_la_commune": "MALAY LE GRAND", + "code_postal": "89100", + "coordonnees_gps": [ + 48.1633768115, + 3.35131160799 + ], + "libelle_d_acheminement": "MALAY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35131160799, + 48.1633768115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ffc703cb314c833a361e676dd9ae711a396f27d", + "fields": { + "code_commune_insee": "89240", + "nom_de_la_commune": "MALAY LE PETIT", + "code_postal": "89100", + "coordonnees_gps": [ + 48.1846386886, + 3.37642040846 + ], + "libelle_d_acheminement": "MALAY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37642040846, + 48.1846386886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caa2cef371cfac57f2bc3c286ae8249e404e3e08", + "fields": { + "code_commune_insee": "89248", + "nom_de_la_commune": "MENADES", + "code_postal": "89450", + "coordonnees_gps": [ + 47.4427355062, + 3.83077013253 + ], + "libelle_d_acheminement": "MENADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83077013253, + 47.4427355062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e1bbf45ade942eb3d341c48201e4b1f2d73a778", + "fields": { + "code_commune_insee": "89249", + "nom_de_la_commune": "MERCY", + "code_postal": "89210", + "coordonnees_gps": [ + 48.0300188827, + 3.62631173753 + ], + "libelle_d_acheminement": "MERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62631173753, + 48.0300188827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c8ad8170cf3add8eaf0608114e48a3e401f4d69", + "fields": { + "code_commune_insee": "89255", + "nom_de_la_commune": "MICHERY", + "code_postal": "89140", + "coordonnees_gps": [ + 48.3122378031, + 3.24557426327 + ], + "libelle_d_acheminement": "MICHERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24557426327, + 48.3122378031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6c0a526f5207086d822af022dceb2dc8570955b", + "fields": { + "code_commune_insee": "89261", + "nom_de_la_commune": "MOLINONS", + "code_postal": "89190", + "coordonnees_gps": [ + 48.2218670687, + 3.54417297472 + ], + "libelle_d_acheminement": "MOLINONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54417297472, + 48.2218670687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6d644473b92ab863b6b6874a601b2e2d4a36632", + "fields": { + "code_commune_insee": "89263", + "nom_de_la_commune": "MONETEAU", + "code_postal": "89470", + "coordonnees_gps": [ + 47.8490198002, + 3.5878018416 + ], + "libelle_d_acheminement": "MONETEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5878018416, + 47.8490198002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c50ea3f67c75ff28211aab65cefc93b2eac24fbe", + "fields": { + "code_commune_insee": "89267", + "nom_de_la_commune": "MONTREAL", + "code_postal": "89420", + "coordonnees_gps": [ + 47.5493086429, + 4.05005175601 + ], + "libelle_d_acheminement": "MONTREAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05005175601, + 47.5493086429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c3f74bcdcf28639d1a748387949ab7d7496b461", + "fields": { + "code_commune_insee": "89271", + "nom_de_la_commune": "MOULINS EN TONNERROIS", + "code_postal": "89310", + "coordonnees_gps": [ + 47.729274263, + 4.04335339652 + ], + "libelle_d_acheminement": "MOULINS EN TONNERROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04335339652, + 47.729274263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92a9963c07a7672876c34e1ea1bed970ecea2b23", + "fields": { + "code_commune_insee": "89282", + "nom_de_la_commune": "ORMOY", + "code_postal": "89400", + "coordonnees_gps": [ + 47.9553960343, + 3.57454289298 + ], + "libelle_d_acheminement": "ORMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57454289298, + 47.9553960343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90a83505f54c4f892f4f46bc161622a6d20799b7", + "fields": { + "code_commune_insee": "89296", + "nom_de_la_commune": "PERRIGNY SUR ARMANCON", + "code_postal": "89390", + "coordonnees_gps": [ + 47.6866686908, + 4.21866444518 + ], + "libelle_d_acheminement": "PERRIGNY SUR ARMANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21866444518, + 47.6866686908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46e4bc6a7d3ffc509029e9f5f4b457b95217bd2e", + "fields": { + "code_commune_insee": "89323", + "nom_de_la_commune": "ROFFEY", + "code_postal": "89700", + "coordonnees_gps": [ + 47.9122945683, + 3.91182885101 + ], + "libelle_d_acheminement": "ROFFEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91182885101, + 47.9122945683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bfde6b14a89e76ef813a01d9a27a5011a1a75da", + "fields": { + "ligne_5": "ST MARTIN SUR OCRE", + "code_commune_insee": "89334", + "libelle_d_acheminement": "LE VAL D OCRE", + "code_postal": "89110", + "nom_de_la_commune": "LE VAL D OCRE", + "coordonnees_gps": [ + 47.8214473263, + 3.29048335743 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29048335743, + 47.8214473263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96eced9af01db744f85a3743897bd91e3bd09908", + "fields": { + "code_commune_insee": "89338", + "nom_de_la_commune": "ST CLEMENT", + "code_postal": "89100", + "coordonnees_gps": [ + 48.2247837392, + 3.30677970985 + ], + "libelle_d_acheminement": "ST CLEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30677970985, + 48.2247837392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03a067e20f01137ddb927e6de312d35842bbf7cd", + "fields": { + "code_commune_insee": "89341", + "nom_de_la_commune": "ST CYR LES COLONS", + "code_postal": "89800", + "coordonnees_gps": [ + 47.7305335651, + 3.7628533948 + ], + "libelle_d_acheminement": "ST CYR LES COLONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7628533948, + 47.7305335651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00bbb3b4a62300fb5995468bc36f9db2acddb72f", + "fields": { + "code_commune_insee": "89351", + "nom_de_la_commune": "STE MAGNANCE", + "code_postal": "89420", + "coordonnees_gps": [ + 47.4523409147, + 4.08447153654 + ], + "libelle_d_acheminement": "STE MAGNANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08447153654, + 47.4523409147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da704aacd6414711b296df544b3ae2c25112c87f", + "fields": { + "code_commune_insee": "89355", + "nom_de_la_commune": "ST MARTIN SUR ARMANCON", + "code_postal": "89700", + "coordonnees_gps": [ + 47.8773671393, + 4.06758883362 + ], + "libelle_d_acheminement": "ST MARTIN SUR ARMANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06758883362, + 47.8773671393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af203fd23dcde5ea5b160586ae95a8c24737188a", + "fields": { + "code_commune_insee": "89368", + "nom_de_la_commune": "ST SAUVEUR EN PUISAYE", + "code_postal": "89520", + "coordonnees_gps": [ + 47.6390792978, + 3.20437842755 + ], + "libelle_d_acheminement": "ST SAUVEUR EN PUISAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20437842755, + 47.6390792978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8253cde8a12a134c5d5630e0b06e2af3956e757", + "fields": { + "code_commune_insee": "89369", + "nom_de_la_commune": "ST SEROTIN", + "code_postal": "89140", + "coordonnees_gps": [ + 48.2467879374, + 3.1604994544 + ], + "libelle_d_acheminement": "ST SEROTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1604994544, + 48.2467879374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d505657ede517b06410eb0e83d3421eb877f25cf", + "fields": { + "code_commune_insee": "89371", + "nom_de_la_commune": "STE VERTU", + "code_postal": "89310", + "coordonnees_gps": [ + 47.7398700628, + 3.91053461734 + ], + "libelle_d_acheminement": "STE VERTU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91053461734, + 47.7398700628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4d652b8e6c87c2fd150fd70c3049801d216ab88", + "fields": { + "code_commune_insee": "89382", + "nom_de_la_commune": "SEIGNELAY", + "code_postal": "89250", + "coordonnees_gps": [ + 47.9021528321, + 3.59422336095 + ], + "libelle_d_acheminement": "SEIGNELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59422336095, + 47.9021528321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a87ac4bb7b510f2529f19fb70ceb1ab6e0ad49e", + "fields": { + "code_commune_insee": "89384", + "nom_de_la_commune": "SENAN", + "code_postal": "89710", + "coordonnees_gps": [ + 47.9136523438, + 3.35802325243 + ], + "libelle_d_acheminement": "SENAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35802325243, + 47.9136523438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daa89b98d9132e3c518694ed2eb4d540e52114ea", + "fields": { + "code_commune_insee": "89385", + "nom_de_la_commune": "SENNEVOY LE BAS", + "code_postal": "89160", + "coordonnees_gps": [ + 47.8008894092, + 4.30964285017 + ], + "libelle_d_acheminement": "SENNEVOY LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30964285017, + 47.8008894092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1944730a5c5e7b5ae426f0bda1467933332ccb4", + "fields": { + "code_commune_insee": "89390", + "nom_de_la_commune": "SERBONNES", + "code_postal": "89140", + "coordonnees_gps": [ + 48.3301048545, + 3.20867774959 + ], + "libelle_d_acheminement": "SERBONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20867774959, + 48.3301048545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d784c8a3bda75faf4c47a8d12b25fa491c962d62", + "fields": { + "code_commune_insee": "89391", + "nom_de_la_commune": "SERGINES", + "code_postal": "89140", + "coordonnees_gps": [ + 48.3455899887, + 3.2506084741 + ], + "libelle_d_acheminement": "SERGINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2506084741, + 48.3455899887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6baf7c78d878b751333adee77cd1889a3d5064a9", + "fields": { + "code_commune_insee": "89394", + "nom_de_la_commune": "SERY", + "code_postal": "89270", + "coordonnees_gps": [ + 47.6188310437, + 3.69145226197 + ], + "libelle_d_acheminement": "SERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69145226197, + 47.6188310437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faf90facd145d9b46fad5a7df4c84c2ffb9b7af0", + "fields": { + "code_commune_insee": "89407", + "nom_de_la_commune": "TANLAY", + "code_postal": "89430", + "coordonnees_gps": [ + 47.844633852, + 4.08770006589 + ], + "libelle_d_acheminement": "TANLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08770006589, + 47.844633852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8162aa1d44d0837ba347c9469ad998e29da120a", + "fields": { + "ligne_5": "COMMISSEY", + "code_commune_insee": "89407", + "libelle_d_acheminement": "TANLAY", + "code_postal": "89430", + "nom_de_la_commune": "TANLAY", + "coordonnees_gps": [ + 47.844633852, + 4.08770006589 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08770006589, + 47.844633852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ab2bbb56cdaf7fe9f0fed81d826a0c03d5b1b3d", + "fields": { + "ligne_5": "CHIGY", + "code_commune_insee": "89411", + "libelle_d_acheminement": "LES VALLEES DE LA VANNE", + "code_postal": "89190", + "nom_de_la_commune": "LES VALLEES DE LA VANNE", + "coordonnees_gps": [ + 48.163480288, + 3.43929036088 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43929036088, + 48.163480288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97e650a418c603eb7aae8c579c03f6c712dee4e6", + "fields": { + "code_commune_insee": "89414", + "nom_de_la_commune": "THORIGNY SUR OREUSE", + "code_postal": "89260", + "coordonnees_gps": [ + 48.2981521482, + 3.3801934011 + ], + "libelle_d_acheminement": "THORIGNY SUR OREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3801934011, + 48.2981521482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4534b917008b0cf604f179f877ce388c7d7a8cdb", + "fields": { + "code_commune_insee": "89418", + "nom_de_la_commune": "TONNERRE", + "code_postal": "89700", + "coordonnees_gps": [ + 47.8411044504, + 3.97744216729 + ], + "libelle_d_acheminement": "TONNERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97744216729, + 47.8411044504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f1ac3e98f6bfabae89f0b12038145925dab22ed", + "fields": { + "code_commune_insee": "89419", + "nom_de_la_commune": "TOUCY", + "code_postal": "89130", + "coordonnees_gps": [ + 47.7335607719, + 3.29372849002 + ], + "libelle_d_acheminement": "TOUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29372849002, + 47.7335607719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb69fe0900716eafb15fc01cea9fc39e006cb0f1", + "fields": { + "code_commune_insee": "89427", + "nom_de_la_commune": "VALLAN", + "code_postal": "89580", + "coordonnees_gps": [ + 47.7452558085, + 3.54140818593 + ], + "libelle_d_acheminement": "VALLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54140818593, + 47.7452558085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4446da1087be73adb539ddea09dd4df0b90a5e30", + "fields": { + "code_commune_insee": "89431", + "nom_de_la_commune": "VASSY SOUS PISY", + "code_postal": "89420", + "coordonnees_gps": [ + 47.5727535051, + 4.16888081291 + ], + "libelle_d_acheminement": "VASSY SOUS PISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16888081291, + 47.5727535051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51bc65ad7e3765d71ac5fcca5e9674f616469cc4", + "fields": { + "code_commune_insee": "89434", + "nom_de_la_commune": "VAUMORT", + "code_postal": "89320", + "coordonnees_gps": [ + 48.1366578358, + 3.44102523277 + ], + "libelle_d_acheminement": "VAUMORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44102523277, + 48.1366578358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e311d0e85b085103dcd41e6fe73766c3d7e074c6", + "fields": { + "code_commune_insee": "89438", + "nom_de_la_commune": "VENOY", + "code_postal": "89290", + "coordonnees_gps": [ + 47.8055369258, + 3.65434489608 + ], + "libelle_d_acheminement": "VENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65434489608, + 47.8055369258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0973f680968cd9c1d92a5d7acf652905960fe148", + "fields": { + "code_commune_insee": "89442", + "nom_de_la_commune": "VERNOY", + "code_postal": "89150", + "coordonnees_gps": [ + 48.0940567499, + 3.12610301658 + ], + "libelle_d_acheminement": "VERNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12610301658, + 48.0940567499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a71ca996cb58f0ac6eeabccdeac4264e06f1f09", + "fields": { + "code_commune_insee": "89443", + "nom_de_la_commune": "VERON", + "code_postal": "89510", + "coordonnees_gps": [ + 48.126395695, + 3.33112142097 + ], + "libelle_d_acheminement": "VERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33112142097, + 48.126395695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b288d7065ba0a5b57922ef1debc527bbd44db27a", + "fields": { + "code_commune_insee": "89447", + "nom_de_la_commune": "VEZINNES", + "code_postal": "89700", + "coordonnees_gps": [ + 47.8922320806, + 3.93235236779 + ], + "libelle_d_acheminement": "VEZINNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93235236779, + 47.8922320806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2774f6715ba136a4e244d40e4c7ccff422335bb4", + "fields": { + "code_commune_insee": "89460", + "nom_de_la_commune": "VILLENEUVE LA GUYARD", + "code_postal": "89340", + "coordonnees_gps": [ + 48.3359583803, + 3.05649125172 + ], + "libelle_d_acheminement": "VILLENEUVE LA GUYARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05649125172, + 48.3359583803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "482524e1ba10b5a9247b9efd8bb4d9dc48f58a26", + "fields": { + "code_commune_insee": "89465", + "nom_de_la_commune": "VILLEPERROT", + "code_postal": "89140", + "coordonnees_gps": [ + 48.2579952047, + 3.21403097378 + ], + "libelle_d_acheminement": "VILLEPERROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21403097378, + 48.2579952047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74548cc2e604581dea35712a98affed7c4fbe3d3", + "fields": { + "code_commune_insee": "89468", + "nom_de_la_commune": "VILLEVALLIER", + "code_postal": "89330", + "coordonnees_gps": [ + 48.0283864485, + 3.3421152408 + ], + "libelle_d_acheminement": "VILLEVALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3421152408, + 48.0283864485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b12bb743bb6c43ed3932cccc50ba522cae9c137", + "fields": { + "code_commune_insee": "89469", + "nom_de_la_commune": "PERCENEIGE", + "code_postal": "89260", + "coordonnees_gps": [ + 48.3524100222, + 3.410424212 + ], + "libelle_d_acheminement": "PERCENEIGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.410424212, + 48.3524100222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcd39667f554fd08bd42ebc1b111452f045df942", + "fields": { + "ligne_5": "COURCEAUX", + "code_commune_insee": "89469", + "libelle_d_acheminement": "PERCENEIGE", + "code_postal": "89260", + "nom_de_la_commune": "PERCENEIGE", + "coordonnees_gps": [ + 48.3524100222, + 3.410424212 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.410424212, + 48.3524100222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67783e0cbcdf0cb1f0d2fbb04383fbbdec56bf10", + "fields": { + "code_commune_insee": "89472", + "nom_de_la_commune": "VILLIERS ST BENOIT", + "code_postal": "89130", + "coordonnees_gps": [ + 47.7820741656, + 3.22439167522 + ], + "libelle_d_acheminement": "VILLIERS ST BENOIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22439167522, + 47.7820741656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f76eb47d74d12cc03a37640969b5db6f5de744e2", + "fields": { + "code_commune_insee": "89480", + "nom_de_la_commune": "VINNEUF", + "code_postal": "89140", + "coordonnees_gps": [ + 48.3545827578, + 3.1386704897 + ], + "libelle_d_acheminement": "VINNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1386704897, + 48.3545827578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f6327f32ac77733da7e1946f69ef0bc6bc4e4bb", + "fields": { + "code_commune_insee": "89482", + "nom_de_la_commune": "VIVIERS", + "code_postal": "89700", + "coordonnees_gps": [ + 47.8059930935, + 3.92242744061 + ], + "libelle_d_acheminement": "VIVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92242744061, + 47.8059930935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8580bad4e1ef1accc49fed3ec316fe054f0d34f5", + "fields": { + "code_commune_insee": "89486", + "nom_de_la_commune": "YROUERRE", + "code_postal": "89700", + "coordonnees_gps": [ + 47.7870283663, + 3.95763937516 + ], + "libelle_d_acheminement": "YROUERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95763937516, + 47.7870283663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "791f14fc3e8e6f300deb1d1bc6b998756e42be32", + "fields": { + "code_commune_insee": "90002", + "nom_de_la_commune": "ANGEOT", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6955037352, + 7.00609340402 + ], + "libelle_d_acheminement": "ANGEOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00609340402, + 47.6955037352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31017907167d0be34b08fa09d30b17fd3df56045", + "fields": { + "code_commune_insee": "90003", + "nom_de_la_commune": "ANJOUTEY", + "code_postal": "90170", + "coordonnees_gps": [ + 47.7023396715, + 6.92749570916 + ], + "libelle_d_acheminement": "ANJOUTEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92749570916, + 47.7023396715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "916d8df280135bc81746c9173e4d2b51938bb368", + "fields": { + "code_commune_insee": "90007", + "nom_de_la_commune": "BANVILLARS", + "code_postal": "90800", + "coordonnees_gps": [ + 47.590801025, + 6.81387082116 + ], + "libelle_d_acheminement": "BANVILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81387082116, + 47.590801025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c89a37dd794aee192dbed28cf0788cb95e5302d", + "fields": { + "code_commune_insee": "90012", + "nom_de_la_commune": "BESSONCOURT", + "code_postal": "90160", + "coordonnees_gps": [ + 47.6448119375, + 6.9429284708 + ], + "libelle_d_acheminement": "BESSONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9429284708, + 47.6448119375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1ff9b4f567b5b399c4c7eab518e34a0cff3b33a", + "fields": { + "code_commune_insee": "90014", + "nom_de_la_commune": "BORON", + "code_postal": "90100", + "coordonnees_gps": [ + 47.5539430181, + 7.01511285165 + ], + "libelle_d_acheminement": "BORON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01511285165, + 47.5539430181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26447cb8a8e6b09a525fe661ee2f47a1f241782b", + "fields": { + "code_commune_insee": "90019", + "nom_de_la_commune": "BRETAGNE", + "code_postal": "90130", + "coordonnees_gps": [ + 47.5906442362, + 7.00045774264 + ], + "libelle_d_acheminement": "BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00045774264, + 47.5906442362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aaaa2836b2b0174f0e314d8fb957189e29776d1", + "fields": { + "code_commune_insee": "90020", + "nom_de_la_commune": "BUC", + "code_postal": "90800", + "coordonnees_gps": [ + 47.6177478789, + 6.78886377781 + ], + "libelle_d_acheminement": "BUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78886377781, + 47.6177478789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "221d7910cd50df0eed5883d1b785e6425a81bc58", + "fields": { + "code_commune_insee": "90022", + "nom_de_la_commune": "CHATENOIS LES FORGES", + "code_postal": "90700", + "coordonnees_gps": [ + 47.5590968943, + 6.83373185003 + ], + "libelle_d_acheminement": "CHATENOIS LES FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83373185003, + 47.5590968943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bf0ff9e71f93cac36b455208c7246b6c6f15526", + "fields": { + "code_commune_insee": "90023", + "nom_de_la_commune": "CHAUX", + "code_postal": "90330", + "coordonnees_gps": [ + 47.7125374753, + 6.83833170347 + ], + "libelle_d_acheminement": "CHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83833170347, + 47.7125374753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c22e65c8c1c9554f7dc4f8fed7b9469bdbde247", + "fields": { + "code_commune_insee": "90030", + "nom_de_la_commune": "CROIX", + "code_postal": "90100", + "coordonnees_gps": [ + 47.4447830481, + 6.95044642125 + ], + "libelle_d_acheminement": "CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95044642125, + 47.4447830481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07b7f15bc33cbb4a9b7bea66b56e9c88be13e617", + "fields": { + "code_commune_insee": "90033", + "nom_de_la_commune": "DELLE", + "code_postal": "90100", + "coordonnees_gps": [ + 47.5085668053, + 6.99653850498 + ], + "libelle_d_acheminement": "DELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99653850498, + 47.5085668053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "683e72e335b11252f29cde393ec21408e490cf69", + "fields": { + "code_commune_insee": "90036", + "nom_de_la_commune": "EGUENIGUE", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6793258182, + 6.9331272882 + ], + "libelle_d_acheminement": "EGUENIGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9331272882, + 47.6793258182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50caa01dbd56b8b92d8980ec93fc79f0d050fca2", + "fields": { + "code_commune_insee": "90044", + "nom_de_la_commune": "FELON", + "code_postal": "90110", + "coordonnees_gps": [ + 47.7062610634, + 6.98051528131 + ], + "libelle_d_acheminement": "FELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98051528131, + 47.7062610634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b0cd677582b4d613e16154a9f89e0a03661e410", + "fields": { + "code_commune_insee": "90050", + "nom_de_la_commune": "FRAIS", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6463987999, + 6.9814493981 + ], + "libelle_d_acheminement": "FRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9814493981, + 47.6463987999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab0f9881ae450cfa507dbb94d5437ce178ae488e", + "fields": { + "code_commune_insee": "90057", + "nom_de_la_commune": "LACHAPELLE SOUS CHAUX", + "code_postal": "90300", + "coordonnees_gps": [ + 47.7049696546, + 6.79856033468 + ], + "libelle_d_acheminement": "LACHAPELLE SOUS CHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79856033468, + 47.7049696546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68445b4f1005349654fa0594baa02578c5a2117c", + "fields": { + "code_commune_insee": "90060", + "nom_de_la_commune": "LAGRANGE", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6840587684, + 6.97706962401 + ], + "libelle_d_acheminement": "LAGRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97706962401, + 47.6840587684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a6a487a984f228c6f5356f719844aa3f7508a51", + "fields": { + "code_commune_insee": "90066", + "nom_de_la_commune": "LEVAL", + "code_postal": "90110", + "coordonnees_gps": [ + 47.7325561254, + 6.99485433225 + ], + "libelle_d_acheminement": "LEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99485433225, + 47.7325561254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39643876868389022fdfeff4c353e746a495836b", + "fields": { + "ligne_5": "MEROUX", + "code_commune_insee": "90068", + "libelle_d_acheminement": "MEROUX MOVAL", + "code_postal": "90400", + "nom_de_la_commune": "MEROUX MOVAL", + "coordonnees_gps": [ + 47.5925461032, + 6.90957261498 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90957261498, + 47.5925461032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40aecc5d590a20edaad5895311c937a167746fdb", + "fields": { + "ligne_5": "MOVAL", + "code_commune_insee": "90068", + "libelle_d_acheminement": "MEROUX MOVAL", + "code_postal": "90400", + "nom_de_la_commune": "MEROUX MOVAL", + "coordonnees_gps": [ + 47.5925461032, + 6.90957261498 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90957261498, + 47.5925461032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d0da40cdd7e64c3c70e40985c36ee17216db267", + "fields": { + "code_commune_insee": "90069", + "nom_de_la_commune": "MEZIRE", + "code_postal": "90120", + "coordonnees_gps": [ + 47.5314114127, + 6.92258227383 + ], + "libelle_d_acheminement": "MEZIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92258227383, + 47.5314114127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96aec8f25bee745b482b9f7fbc133ebe31ebe2eb", + "fields": { + "code_commune_insee": "90075", + "nom_de_la_commune": "OFFEMONT", + "code_postal": "90300", + "coordonnees_gps": [ + 47.6629165729, + 6.87500834426 + ], + "libelle_d_acheminement": "OFFEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87500834426, + 47.6629165729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23736ae341280d8223241cab66835769bf066d8e", + "fields": { + "code_commune_insee": "90081", + "nom_de_la_commune": "RECHESY", + "code_postal": "90370", + "coordonnees_gps": [ + 47.5158861847, + 7.1166640348 + ], + "libelle_d_acheminement": "RECHESY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1166640348, + 47.5158861847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b0827eb245088fed99714ff1f78364737358e71", + "fields": { + "code_commune_insee": "90085", + "nom_de_la_commune": "RIERVESCEMONT", + "code_postal": "90200", + "coordonnees_gps": [ + 47.7686202907, + 6.87873144599 + ], + "libelle_d_acheminement": "RIERVESCEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87873144599, + 47.7686202907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4af60c52b106143644516ac50e960e05dd29488", + "fields": { + "code_commune_insee": "90093", + "nom_de_la_commune": "SERMAMAGNY", + "code_postal": "90300", + "coordonnees_gps": [ + 47.687801557, + 6.8309146345 + ], + "libelle_d_acheminement": "SERMAMAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8309146345, + 47.687801557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5c29b8f63b05c849931810453ecb4ae2c39a0eb", + "fields": { + "code_commune_insee": "90094", + "nom_de_la_commune": "SEVENANS", + "code_postal": "90400", + "coordonnees_gps": [ + 47.5887550061, + 6.87009154705 + ], + "libelle_d_acheminement": "SEVENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87009154705, + 47.5887550061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27660bd32dce70a1cd472867ca3148f0ec6ee78f", + "fields": { + "code_commune_insee": "90095", + "nom_de_la_commune": "SUARCE", + "code_postal": "90100", + "coordonnees_gps": [ + 47.5612956517, + 7.08005568664 + ], + "libelle_d_acheminement": "SUARCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08005568664, + 47.5612956517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a7ace4fd79629ca06943005c9c1c3b309ce16bc", + "fields": { + "code_commune_insee": "90097", + "nom_de_la_commune": "TREVENANS", + "code_postal": "90400", + "coordonnees_gps": [ + 47.5667104538, + 6.86855180089 + ], + "libelle_d_acheminement": "TREVENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86855180089, + 47.5667104538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f7f67c51224a93b8d89c7086505fd780f4ac129", + "fields": { + "code_commune_insee": "90098", + "nom_de_la_commune": "URCEREY", + "code_postal": "90800", + "coordonnees_gps": [ + 47.6107025364, + 6.80334349857 + ], + "libelle_d_acheminement": "URCEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80334349857, + 47.6107025364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6c60d49bc15381be99b547dfe85b1b2f6f18339", + "fields": { + "code_commune_insee": "90099", + "nom_de_la_commune": "VALDOIE", + "code_postal": "90300", + "coordonnees_gps": [ + 47.6712389192, + 6.84860821584 + ], + "libelle_d_acheminement": "VALDOIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84860821584, + 47.6712389192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdd058058522245b5e4e13d10db6293c80c031a2", + "fields": { + "code_commune_insee": "90100", + "nom_de_la_commune": "VAUTHIERMONT", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6811834758, + 7.0246637056 + ], + "libelle_d_acheminement": "VAUTHIERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0246637056, + 47.6811834758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab7cca86eaa3e9fb5f5f574970887804421135dd", + "fields": { + "code_commune_insee": "91044", + "nom_de_la_commune": "BALLAINVILLIERS", + "code_postal": "91160", + "coordonnees_gps": [ + 48.6713240802, + 2.28913874502 + ], + "libelle_d_acheminement": "BALLAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28913874502, + 48.6713240802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "445a4f84582f175cd2e3a16e814d590b39d747c4", + "fields": { + "code_commune_insee": "91064", + "nom_de_la_commune": "BIEVRES", + "code_postal": "91570", + "coordonnees_gps": [ + 48.7567351109, + 2.20665207098 + ], + "libelle_d_acheminement": "BIEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20665207098, + 48.7567351109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6efdf5851cf2753d60fe6675c845a3fcd070d890", + "fields": { + "code_commune_insee": "91093", + "nom_de_la_commune": "BOULLAY LES TROUX", + "code_postal": "91470", + "coordonnees_gps": [ + 48.6753515056, + 2.04828313772 + ], + "libelle_d_acheminement": "BOULLAY LES TROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04828313772, + 48.6753515056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a6ebcc35797bef1b41f77764291bad0c887344e", + "fields": { + "code_commune_insee": "91097", + "nom_de_la_commune": "BOUSSY ST ANTOINE", + "code_postal": "91800", + "coordonnees_gps": [ + 48.6895309069, + 2.53381915314 + ], + "libelle_d_acheminement": "BOUSSY ST ANTOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53381915314, + 48.6895309069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "263005ca9ed77a6f1db0cbb23f355fb8e59820be", + "fields": { + "code_commune_insee": "91100", + "nom_de_la_commune": "BOUVILLE", + "code_postal": "91880", + "coordonnees_gps": [ + 48.4326483441, + 2.2783856422 + ], + "libelle_d_acheminement": "BOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2783856422, + 48.4326483441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9f00942f172648f8d61378905e28602ff47c155", + "fields": { + "code_commune_insee": "91103", + "nom_de_la_commune": "BRETIGNY SUR ORGE", + "code_postal": "91220", + "coordonnees_gps": [ + 48.6025113399, + 2.3021623232 + ], + "libelle_d_acheminement": "BRETIGNY SUR ORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3021623232, + 48.6025113399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ff11ab5e34a732532178e68c6e8f63d7f0976e8", + "fields": { + "code_commune_insee": "91111", + "nom_de_la_commune": "BRIIS SOUS FORGES", + "code_postal": "91640", + "coordonnees_gps": [ + 48.6271447741, + 2.1309080467 + ], + "libelle_d_acheminement": "BRIIS SOUS FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1309080467, + 48.6271447741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48c7132603ba71ffcdf7e97179c6903b71e3fe50", + "fields": { + "code_commune_insee": "91115", + "nom_de_la_commune": "BRUYERES LE CHATEL", + "code_postal": "91680", + "coordonnees_gps": [ + 48.600315457, + 2.18687041469 + ], + "libelle_d_acheminement": "BRUYERES LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18687041469, + 48.600315457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89fbf04de4a251389a018d8bc2d6bcd5ab249b3c", + "fields": { + "code_commune_insee": "91129", + "nom_de_la_commune": "CERNY", + "code_postal": "91590", + "coordonnees_gps": [ + 48.4859798517, + 2.31068283872 + ], + "libelle_d_acheminement": "CERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31068283872, + 48.4859798517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c965fb820a83618ceb8b9d84bac043949ce59b5c", + "fields": { + "code_commune_insee": "91130", + "nom_de_la_commune": "CHALO ST MARS", + "code_postal": "91780", + "coordonnees_gps": [ + 48.4167324924, + 2.05158821673 + ], + "libelle_d_acheminement": "CHALO ST MARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05158821673, + 48.4167324924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "139a82ab887718f61e79a750b3dd052cf24f1931", + "fields": { + "code_commune_insee": "91161", + "nom_de_la_commune": "CHILLY MAZARIN", + "code_postal": "91380", + "coordonnees_gps": [ + 48.7077663127, + 2.3111122334 + ], + "libelle_d_acheminement": "CHILLY MAZARIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3111122334, + 48.7077663127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc4afeb535f824b64642c22e4107ad54b4a67ef8", + "fields": { + "code_commune_insee": "91179", + "nom_de_la_commune": "LE COUDRAY MONTCEAUX", + "code_postal": "91830", + "coordonnees_gps": [ + 48.5587791447, + 2.48742424481 + ], + "libelle_d_acheminement": "LE COUDRAY MONTCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48742424481, + 48.5587791447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9aab167f06921d23011ae6950e98bc1dedccaf0", + "fields": { + "ligne_5": "LE PLESSIS CHENET", + "code_commune_insee": "91179", + "libelle_d_acheminement": "LE COUDRAY MONTCEAUX", + "code_postal": "91830", + "nom_de_la_commune": "LE COUDRAY MONTCEAUX", + "coordonnees_gps": [ + 48.5587791447, + 2.48742424481 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48742424481, + 48.5587791447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3975b44338f1c7e659979a44b8cb47c4151682e", + "fields": { + "code_commune_insee": "91180", + "nom_de_la_commune": "COURANCES", + "code_postal": "91490", + "coordonnees_gps": [ + 48.4385478349, + 2.48480049204 + ], + "libelle_d_acheminement": "COURANCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48480049204, + 48.4385478349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edc3aec4b562fd59b46fff9d62574ff345deeda1", + "fields": { + "code_commune_insee": "91184", + "nom_de_la_commune": "COURDIMANCHE SUR ESSONNE", + "code_postal": "91720", + "coordonnees_gps": [ + 48.418031424, + 2.36344067611 + ], + "libelle_d_acheminement": "COURDIMANCHE SUR ESSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36344067611, + 48.418031424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "159cc6a25f39cc254f642aad71519b6d0dc5b5e0", + "fields": { + "code_commune_insee": "91186", + "nom_de_la_commune": "COURSON MONTELOUP", + "code_postal": "91680", + "coordonnees_gps": [ + 48.5982232022, + 2.14130817077 + ], + "libelle_d_acheminement": "COURSON MONTELOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14130817077, + 48.5982232022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90f74421c00eb1d200f381595286648215e516fc", + "fields": { + "code_commune_insee": "91198", + "nom_de_la_commune": "D HUISON LONGUEVILLE", + "code_postal": "91590", + "coordonnees_gps": [ + 48.4557191202, + 2.32754055181 + ], + "libelle_d_acheminement": "D HUISON LONGUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32754055181, + 48.4557191202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b98c877b3333d30f4c6f846d1df4c2e03c66d861", + "fields": { + "code_commune_insee": "91204", + "nom_de_la_commune": "ECHARCON", + "code_postal": "91540", + "coordonnees_gps": [ + 48.5750589359, + 2.40080185445 + ], + "libelle_d_acheminement": "ECHARCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40080185445, + 48.5750589359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4151270e3801100833d63af2343e23ddbdda7514", + "fields": { + "code_commune_insee": "91223", + "nom_de_la_commune": "ETAMPES", + "code_postal": "91150", + "coordonnees_gps": [ + 48.4211282308, + 2.13838881712 + ], + "libelle_d_acheminement": "ETAMPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13838881712, + 48.4211282308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fc86286907c46345a820d83110f19bdf472c3fb", + "fields": { + "code_commune_insee": "91225", + "nom_de_la_commune": "ETIOLLES", + "code_postal": "91450", + "coordonnees_gps": [ + 48.6501283496, + 2.48331098589 + ], + "libelle_d_acheminement": "ETIOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48331098589, + 48.6501283496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ce05a6d3b6d9ad896f0742f66f60847c2d35fcc", + "fields": { + "code_commune_insee": "91243", + "nom_de_la_commune": "FONTENAY LES BRIIS", + "code_postal": "91640", + "coordonnees_gps": [ + 48.6107631779, + 2.16460955805 + ], + "libelle_d_acheminement": "FONTENAY LES BRIIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16460955805, + 48.6107631779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce8cdea3d8a38340ece0fed8fc5afbb074c4c7a2", + "fields": { + "code_commune_insee": "91244", + "nom_de_la_commune": "FONTENAY LE VICOMTE", + "code_postal": "91540", + "coordonnees_gps": [ + 48.5468386132, + 2.40068041051 + ], + "libelle_d_acheminement": "FONTENAY LE VICOMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40068041051, + 48.5468386132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9e8825d732271d04f987c294b310f0b76a047bc", + "fields": { + "code_commune_insee": "91275", + "nom_de_la_commune": "GOMETZ LE CHATEL", + "code_postal": "91940", + "coordonnees_gps": [ + 48.6745834658, + 2.142891374 + ], + "libelle_d_acheminement": "GOMETZ LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.142891374, + 48.6745834658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec775c93d1bd54c4a447a726da32746912abb10a", + "fields": { + "code_commune_insee": "91284", + "nom_de_la_commune": "LES GRANGES LE ROI", + "code_postal": "91410", + "coordonnees_gps": [ + 48.4981066436, + 2.01059778399 + ], + "libelle_d_acheminement": "LES GRANGES LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01059778399, + 48.4981066436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "234e2994954433e500114aa0b49c174755fc34a1", + "fields": { + "code_commune_insee": "91292", + "nom_de_la_commune": "GUIBEVILLE", + "code_postal": "91630", + "coordonnees_gps": [ + 48.5671878264, + 2.27170202676 + ], + "libelle_d_acheminement": "GUIBEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27170202676, + 48.5671878264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "880e5188fa49dfe059fd89c8f4477ef2c1e4f4c5", + "fields": { + "code_commune_insee": "91312", + "nom_de_la_commune": "IGNY", + "code_postal": "91430", + "coordonnees_gps": [ + 48.7362250613, + 2.22442021749 + ], + "libelle_d_acheminement": "IGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22442021749, + 48.7362250613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03d7c3e94089be1371c2639f69c0b2cdd24dd997", + "fields": { + "code_commune_insee": "91318", + "nom_de_la_commune": "JANVILLE SUR JUINE", + "code_postal": "91510", + "coordonnees_gps": [ + 48.5011134841, + 2.25385756053 + ], + "libelle_d_acheminement": "JANVILLE SUR JUINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25385756053, + 48.5011134841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "297655154236240927d5c4784f02c8b4b7efaa89", + "fields": { + "code_commune_insee": "91339", + "nom_de_la_commune": "LINAS", + "code_postal": "91310", + "coordonnees_gps": [ + 48.6255061941, + 2.25135348658 + ], + "libelle_d_acheminement": "LINAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25135348658, + 48.6255061941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8370f1d247f390e1adede46649dd0a77565bbc75", + "fields": { + "code_commune_insee": "91377", + "nom_de_la_commune": "MASSY", + "code_postal": "91300", + "coordonnees_gps": [ + 48.7277896426, + 2.27513131903 + ], + "libelle_d_acheminement": "MASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27513131903, + 48.7277896426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15491e81b2d7751db602215cd0b0f88fc528a1bf", + "fields": { + "code_commune_insee": "91386", + "nom_de_la_commune": "MENNECY", + "code_postal": "91540", + "coordonnees_gps": [ + 48.5586242184, + 2.43753236038 + ], + "libelle_d_acheminement": "MENNECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43753236038, + 48.5586242184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14605778fd6dcea47fc0578608aa2786c9a8538c", + "fields": { + "code_commune_insee": "91393", + "nom_de_la_commune": "MEROBERT", + "code_postal": "91780", + "coordonnees_gps": [ + 48.4157801741, + 1.99629785985 + ], + "libelle_d_acheminement": "MEROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99629785985, + 48.4157801741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43034dfd635963616d13b247da6ef2a64254b50d", + "fields": { + "code_commune_insee": "91405", + "nom_de_la_commune": "MILLY LA FORET", + "code_postal": "91490", + "coordonnees_gps": [ + 48.4032948231, + 2.46495403521 + ], + "libelle_d_acheminement": "MILLY LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46495403521, + 48.4032948231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8209c2c1745b9eb8c6a26b33343380ca24f0efd1", + "fields": { + "code_commune_insee": "91412", + "nom_de_la_commune": "MONDEVILLE", + "code_postal": "91590", + "coordonnees_gps": [ + 48.4912035622, + 2.4204540658 + ], + "libelle_d_acheminement": "MONDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4204540658, + 48.4912035622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7fa5bc743741474cdd4bc19f94331526a2ec9ff", + "fields": { + "code_commune_insee": "91433", + "nom_de_la_commune": "MORIGNY CHAMPIGNY", + "code_postal": "91150", + "coordonnees_gps": [ + 48.4409475427, + 2.20748797746 + ], + "libelle_d_acheminement": "MORIGNY CHAMPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20748797746, + 48.4409475427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d308909bbdc3ed78f7f37391f96e4e59d039e95", + "fields": { + "code_commune_insee": "91441", + "nom_de_la_commune": "NAINVILLE LES ROCHES", + "code_postal": "91750", + "coordonnees_gps": [ + 48.5047296879, + 2.49555231597 + ], + "libelle_d_acheminement": "NAINVILLE LES ROCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49555231597, + 48.5047296879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ac235c608756a6b467bcb062630594cabc88888", + "fields": { + "code_commune_insee": "91461", + "nom_de_la_commune": "OLLAINVILLE", + "code_postal": "91340", + "coordonnees_gps": [ + 48.6063091787, + 2.21888103138 + ], + "libelle_d_acheminement": "OLLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21888103138, + 48.6063091787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a48ab4aa802798f8afefc99d407e9fbb7aff92ac", + "fields": { + "ligne_5": "ORSIGNY", + "code_commune_insee": "91471", + "libelle_d_acheminement": "ORSAY", + "code_postal": "91400", + "nom_de_la_commune": "ORSAY", + "coordonnees_gps": [ + 48.7004093953, + 2.18737051177 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18737051177, + 48.7004093953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f65619315f933d4529b1942b5c1d0cbce72d8eb", + "fields": { + "ligne_5": "ORLY AEROGARE", + "code_commune_insee": "91479", + "libelle_d_acheminement": "PARAY VIEILLE POSTE", + "code_postal": "94390", + "nom_de_la_commune": "PARAY VIEILLE POSTE", + "coordonnees_gps": [ + 48.7241848219, + 2.3598349385 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3598349385, + 48.7241848219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c8b876c9e769c57599a0ff1f5ef44a416a21c08", + "fields": { + "code_commune_insee": "91544", + "nom_de_la_commune": "ST CYR LA RIVIERE", + "code_postal": "91690", + "coordonnees_gps": [ + 48.3501033292, + 2.13743376012 + ], + "libelle_d_acheminement": "ST CYR LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13743376012, + 48.3501033292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c1ea3ac6c02bb82dca5889c956ab4f21244f465", + "fields": { + "code_commune_insee": "91552", + "nom_de_la_commune": "ST GERMAIN LES ARPAJON", + "code_postal": "91180", + "coordonnees_gps": [ + 48.5982444605, + 2.2646136849 + ], + "libelle_d_acheminement": "ST GERMAIN LES ARPAJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2646136849, + 48.5982444605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d458cf4d5d1be60cffdbf03515d36dcb22d6011", + "fields": { + "code_commune_insee": "91568", + "nom_de_la_commune": "ST MAURICE MONTCOURONNE", + "code_postal": "91530", + "coordonnees_gps": [ + 48.5789512305, + 2.12082584197 + ], + "libelle_d_acheminement": "ST MAURICE MONTCOURONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12082584197, + 48.5789512305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4df4598eb1bf8a3e766d789b901d58b5d9ee4d8", + "fields": { + "code_commune_insee": "91578", + "nom_de_la_commune": "ST SULPICE DE FAVIERES", + "code_postal": "91910", + "coordonnees_gps": [ + 48.5363608889, + 2.17969276336 + ], + "libelle_d_acheminement": "ST SULPICE DE FAVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17969276336, + 48.5363608889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6782643fe9c56e4569c82c3e95a240819ab6c53e", + "fields": { + "code_commune_insee": "91600", + "nom_de_la_commune": "SOISY SUR SEINE", + "code_postal": "91450", + "coordonnees_gps": [ + 48.6601163856, + 2.46296011606 + ], + "libelle_d_acheminement": "SOISY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46296011606, + 48.6601163856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57acef00ee5090c1264a3163f024f565a3e72b71", + "fields": { + "code_commune_insee": "91602", + "nom_de_la_commune": "SOUZY LA BRICHE", + "code_postal": "91580", + "coordonnees_gps": [ + 48.5269161626, + 2.15432082253 + ], + "libelle_d_acheminement": "SOUZY LA BRICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15432082253, + 48.5269161626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe89fa22f158673ec9ebd637169fbe1584128541", + "fields": { + "code_commune_insee": "91634", + "nom_de_la_commune": "VAUGRIGNEUSE", + "code_postal": "91640", + "coordonnees_gps": [ + 48.6013342807, + 2.10541488357 + ], + "libelle_d_acheminement": "VAUGRIGNEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10541488357, + 48.6013342807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ac57a7e0dbe3f265e10f96d9877ea60d191e8aa", + "fields": { + "code_commune_insee": "91648", + "nom_de_la_commune": "VERT LE GRAND", + "code_postal": "91810", + "coordonnees_gps": [ + 48.583559319, + 2.36719516135 + ], + "libelle_d_acheminement": "VERT LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36719516135, + 48.583559319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df12b92752b180808f0b74a562a120ed621427de", + "fields": { + "code_commune_insee": "91659", + "nom_de_la_commune": "VILLABE", + "code_postal": "91100", + "coordonnees_gps": [ + 48.5857767602, + 2.45200288236 + ], + "libelle_d_acheminement": "VILLABE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45200288236, + 48.5857767602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab2eb1e4956a4dc37e0d297b7ecb250a401b9c48", + "fields": { + "code_commune_insee": "91661", + "nom_de_la_commune": "VILLEBON SUR YVETTE", + "code_postal": "91140", + "coordonnees_gps": [ + 48.6956774396, + 2.23505155118 + ], + "libelle_d_acheminement": "VILLEBON SUR YVETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23505155118, + 48.6956774396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04b76388985203d43a6b80ca5428dfed4cf7d2c2", + "fields": { + "code_commune_insee": "91687", + "nom_de_la_commune": "VIRY CHATILLON", + "code_postal": "91170", + "coordonnees_gps": [ + 48.6696168935, + 2.37374357641 + ], + "libelle_d_acheminement": "VIRY CHATILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37374357641, + 48.6696168935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5034809653baa99d05b9bb9b84ee87894ebdab97", + "fields": { + "code_commune_insee": "92019", + "nom_de_la_commune": "CHATENAY MALABRY", + "code_postal": "92290", + "coordonnees_gps": [ + 48.7681690197, + 2.26282598525 + ], + "libelle_d_acheminement": "CHATENAY MALABRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26282598525, + 48.7681690197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b7096d279f0b2f32811695c8443b998ecf6baf3", + "fields": { + "code_commune_insee": "92023", + "nom_de_la_commune": "CLAMART", + "code_postal": "92140", + "coordonnees_gps": [ + 48.7964306792, + 2.25474652922 + ], + "libelle_d_acheminement": "CLAMART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25474652922, + 48.7964306792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bdd783f26154c619f275b04283c956c95262f92", + "fields": { + "code_commune_insee": "92024", + "nom_de_la_commune": "CLICHY", + "code_postal": "92110", + "coordonnees_gps": [ + 48.9035359139, + 2.30575230452 + ], + "libelle_d_acheminement": "CLICHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30575230452, + 48.9035359139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b28122969a25bcc02f7fb217fd56e8c8a4fcd63", + "fields": { + "code_commune_insee": "92040", + "nom_de_la_commune": "ISSY LES MOULINEAUX", + "code_postal": "92130", + "coordonnees_gps": [ + 48.82347434, + 2.26449823277 + ], + "libelle_d_acheminement": "ISSY LES MOULINEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26449823277, + 48.82347434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c07ee9799606a827fc091440d121e7febaecc9aa", + "fields": { + "code_commune_insee": "92049", + "nom_de_la_commune": "MONTROUGE", + "code_postal": "92120", + "coordonnees_gps": [ + 48.8153032159, + 2.31648921432 + ], + "libelle_d_acheminement": "MONTROUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31648921432, + 48.8153032159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3851c611c79b2e4b051d75c376ae8923daead958", + "fields": { + "code_commune_insee": "92060", + "nom_de_la_commune": "LE PLESSIS ROBINSON", + "code_postal": "92350", + "coordonnees_gps": [ + 48.7804383642, + 2.26064286011 + ], + "libelle_d_acheminement": "LE PLESSIS ROBINSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26064286011, + 48.7804383642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "983dabcddc5ed62fbeb7fb8f53d6b1be2e122e89", + "fields": { + "ligne_5": "ROBINSON", + "code_commune_insee": "92060", + "libelle_d_acheminement": "LE PLESSIS ROBINSON", + "code_postal": "92350", + "nom_de_la_commune": "LE PLESSIS ROBINSON", + "coordonnees_gps": [ + 48.7804383642, + 2.26064286011 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26064286011, + 48.7804383642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05f06d01c52d21eb799be81325fcae06ee03e31c", + "fields": { + "code_commune_insee": "92075", + "nom_de_la_commune": "VANVES", + "code_postal": "92170", + "coordonnees_gps": [ + 48.8215227089, + 2.28739490768 + ], + "libelle_d_acheminement": "VANVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28739490768, + 48.8215227089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25fc43145711e2775aa4a4e688f132b3546fe593", + "fields": { + "code_commune_insee": "92078", + "nom_de_la_commune": "VILLENEUVE LA GARENNE", + "code_postal": "92390", + "coordonnees_gps": [ + 48.9364061917, + 2.32448995943 + ], + "libelle_d_acheminement": "VILLENEUVE LA GARENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32448995943, + 48.9364061917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b27f8a69b93db99365baf93ada0ad07c87bdf11", + "fields": { + "code_commune_insee": "93001", + "nom_de_la_commune": "AUBERVILLIERS", + "code_postal": "93300", + "coordonnees_gps": [ + 48.9121722626, + 2.38445513768 + ], + "libelle_d_acheminement": "AUBERVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38445513768, + 48.9121722626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "205d3605ed7550663b81dda8a48fa002e67c34c2", + "fields": { + "code_commune_insee": "93006", + "nom_de_la_commune": "BAGNOLET", + "code_postal": "93170", + "coordonnees_gps": [ + 48.8690836308, + 2.42274096688 + ], + "libelle_d_acheminement": "BAGNOLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42274096688, + 48.8690836308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1db5c0d3971094aae88205937c75350908e121be", + "fields": { + "code_commune_insee": "93030", + "nom_de_la_commune": "DUGNY", + "code_postal": "93440", + "coordonnees_gps": [ + 48.9503408732, + 2.4238637503 + ], + "libelle_d_acheminement": "DUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4238637503, + 48.9503408732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d374cb404f4f29a51da55daec7c561e026afb1f7", + "fields": { + "code_commune_insee": "93031", + "nom_de_la_commune": "EPINAY SUR SEINE", + "code_postal": "93800", + "coordonnees_gps": [ + 48.9550132062, + 2.31453043231 + ], + "libelle_d_acheminement": "EPINAY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31453043231, + 48.9550132062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b221f5a6dce854f1fe9b46e4fa61e9f4d74e3e53", + "fields": { + "code_commune_insee": "93039", + "nom_de_la_commune": "L ILE ST DENIS", + "code_postal": "93450", + "coordonnees_gps": [ + 48.9395693769, + 2.32545252764 + ], + "libelle_d_acheminement": "L ILE ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32545252764, + 48.9395693769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf6f4b9fff4fde64d9506d9fd17d1686c303dc12", + "fields": { + "code_commune_insee": "93048", + "nom_de_la_commune": "MONTREUIL", + "code_postal": "93100", + "coordonnees_gps": [ + 48.8633175054, + 2.44816211857 + ], + "libelle_d_acheminement": "MONTREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44816211857, + 48.8633175054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "340ecab8eca38d0aa1210f0a97046a4229d8870b", + "fields": { + "code_commune_insee": "93049", + "nom_de_la_commune": "NEUILLY PLAISANCE", + "code_postal": "93360", + "coordonnees_gps": [ + 48.8643287852, + 2.51040249898 + ], + "libelle_d_acheminement": "NEUILLY PLAISANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51040249898, + 48.8643287852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ffea40b86b5bdee988302367b3dc3050d35c8e9", + "fields": { + "code_commune_insee": "93051", + "nom_de_la_commune": "NOISY LE GRAND", + "code_postal": "93160", + "coordonnees_gps": [ + 48.8361825401, + 2.56443736814 + ], + "libelle_d_acheminement": "NOISY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56443736814, + 48.8361825401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f466045a79e591bcad7936d6d5c2aec6c73a47fa", + "fields": { + "code_commune_insee": "93064", + "nom_de_la_commune": "ROSNY SOUS BOIS", + "code_postal": "93110", + "coordonnees_gps": [ + 48.8745763768, + 2.4863404591 + ], + "libelle_d_acheminement": "ROSNY SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4863404591, + 48.8745763768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c7ab47aa9473e226172c59afb6f31fab4fb8e07", + "fields": { + "code_commune_insee": "93066", + "nom_de_la_commune": "ST DENIS", + "code_postal": "93200", + "coordonnees_gps": [ + 48.9295650455, + 2.3592429975 + ], + "libelle_d_acheminement": "ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3592429975, + 48.9295650455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d018545e1e1eaa53cfd688259aef0241b3d1d9c4", + "fields": { + "code_commune_insee": "93070", + "nom_de_la_commune": "ST OUEN SUR SEINE", + "code_postal": "93400", + "coordonnees_gps": [ + 48.909806575, + 2.33257042205 + ], + "libelle_d_acheminement": "ST OUEN SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33257042205, + 48.909806575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec202918a80439d5f58983a9eb92994ddd0bee6a", + "fields": { + "code_commune_insee": "93072", + "nom_de_la_commune": "STAINS", + "code_postal": "93240", + "coordonnees_gps": [ + 48.9567775699, + 2.3854495629 + ], + "libelle_d_acheminement": "STAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3854495629, + 48.9567775699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2d7dcde8c10a811e35d92fbf94f36b6b505077f", + "fields": { + "code_commune_insee": "94004", + "nom_de_la_commune": "BOISSY ST LEGER", + "code_postal": "94470", + "coordonnees_gps": [ + 48.7470359922, + 2.52528049019 + ], + "libelle_d_acheminement": "BOISSY ST LEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52528049019, + 48.7470359922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bef9bc9fc51a5e2c25101c38eea5e0e59a68722", + "fields": { + "code_commune_insee": "94011", + "nom_de_la_commune": "BONNEUIL SUR MARNE", + "code_postal": "94380", + "coordonnees_gps": [ + 48.7733620104, + 2.48799310463 + ], + "libelle_d_acheminement": "BONNEUIL SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48799310463, + 48.7733620104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0f31c4f4e87cf548ed5cb6209aab147ce7281d9", + "fields": { + "code_commune_insee": "94017", + "nom_de_la_commune": "CHAMPIGNY SUR MARNE", + "code_postal": "94500", + "coordonnees_gps": [ + 48.817254364, + 2.51709815257 + ], + "libelle_d_acheminement": "CHAMPIGNY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51709815257, + 48.817254364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b77429e3e01b84a31445dbafe18f88c3b453d0b", + "fields": { + "code_commune_insee": "94022", + "nom_de_la_commune": "CHOISY LE ROI", + "code_postal": "94600", + "coordonnees_gps": [ + 48.764315118, + 2.41742518222 + ], + "libelle_d_acheminement": "CHOISY LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41742518222, + 48.764315118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe06798d76524f348ea69a8702e15bc15ce3b0b1", + "fields": { + "code_commune_insee": "94034", + "nom_de_la_commune": "FRESNES", + "code_postal": "94260", + "coordonnees_gps": [ + 48.7571343016, + 2.32612839743 + ], + "libelle_d_acheminement": "FRESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32612839743, + 48.7571343016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d69d8e2dc7e5aa9faba8bf12755a4e34a66acbbd", + "fields": { + "code_commune_insee": "94055", + "nom_de_la_commune": "ORMESSON SUR MARNE", + "code_postal": "94490", + "coordonnees_gps": [ + 48.7854562744, + 2.53924214317 + ], + "libelle_d_acheminement": "ORMESSON SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53924214317, + 48.7854562744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18dea8c3aec01c4b5b0b4f828404fabf8bdc7bf1", + "fields": { + "code_commune_insee": "94058", + "nom_de_la_commune": "LE PERREUX SUR MARNE", + "code_postal": "94170", + "coordonnees_gps": [ + 48.8423952383, + 2.50406848573 + ], + "libelle_d_acheminement": "LE PERREUX SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50406848573, + 48.8423952383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24a82ba1c4b8b3ef74a520d6c01d183021c0213f", + "fields": { + "code_commune_insee": "94059", + "nom_de_la_commune": "LE PLESSIS TREVISE", + "code_postal": "94420", + "coordonnees_gps": [ + 48.8060154583, + 2.57619846918 + ], + "libelle_d_acheminement": "LE PLESSIS TREVISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57619846918, + 48.8060154583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c569e68e90af78c9e2f2e0102be774fcca59cc3a", + "fields": { + "code_commune_insee": "94068", + "nom_de_la_commune": "ST MAUR DES FOSSES", + "code_postal": "94100", + "coordonnees_gps": [ + 48.7990677797, + 2.49386450452 + ], + "libelle_d_acheminement": "ST MAUR DES FOSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49386450452, + 48.7990677797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61f27ee2f80ccdd3cc40d8eb414b945e281ba751", + "fields": { + "code_commune_insee": "94069", + "nom_de_la_commune": "ST MAURICE", + "code_postal": "94410", + "coordonnees_gps": [ + 48.8184921372, + 2.4374501342 + ], + "libelle_d_acheminement": "ST MAURICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4374501342, + 48.8184921372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4d2d324e36d7add43052cc559b704a9a2ef7002", + "fields": { + "code_commune_insee": "94079", + "nom_de_la_commune": "VILLIERS SUR MARNE", + "code_postal": "94350", + "coordonnees_gps": [ + 48.8259586165, + 2.54520483293 + ], + "libelle_d_acheminement": "VILLIERS SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54520483293, + 48.8259586165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8ab062d6d4804cfed2c856b51f662dce9ccc0a4", + "fields": { + "code_commune_insee": "95011", + "nom_de_la_commune": "AMBLEVILLE", + "code_postal": "95710", + "coordonnees_gps": [ + 49.1509533273, + 1.69495333477 + ], + "libelle_d_acheminement": "AMBLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69495333477, + 49.1509533273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "042379b2a64c4dfb1d1df591bcc5ad9a528d8ffb", + "fields": { + "code_commune_insee": "95028", + "nom_de_la_commune": "ATTAINVILLE", + "code_postal": "95570", + "coordonnees_gps": [ + 49.0609607975, + 2.35043699897 + ], + "libelle_d_acheminement": "ATTAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35043699897, + 49.0609607975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1695d9d0aa3df4bb3210bb14239109a5908a6d04", + "fields": { + "code_commune_insee": "95042", + "nom_de_la_commune": "BAILLET EN FRANCE", + "code_postal": "95560", + "coordonnees_gps": [ + 49.0587634445, + 2.30242390203 + ], + "libelle_d_acheminement": "BAILLET EN FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30242390203, + 49.0587634445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d61146c975ded56dd30caf4539f0a99c76a95e0", + "fields": { + "code_commune_insee": "95052", + "nom_de_la_commune": "BEAUMONT SUR OISE", + "code_postal": "95260", + "coordonnees_gps": [ + 49.1400981058, + 2.30021267239 + ], + "libelle_d_acheminement": "BEAUMONT SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30021267239, + 49.1400981058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39afb65aec1f50fbc45757912f51de4e3fc0d363", + "fields": { + "code_commune_insee": "95127", + "nom_de_la_commune": "CERGY", + "code_postal": "95800", + "coordonnees_gps": [ + 49.0401131567, + 2.05082123731 + ], + "libelle_d_acheminement": "CERGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05082123731, + 49.0401131567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5802afa11cb111c2f1503c95e0857981ae7e4dcb", + "fields": { + "code_commune_insee": "95134", + "nom_de_la_commune": "CHAMPAGNE SUR OISE", + "code_postal": "95660", + "coordonnees_gps": [ + 49.1427759123, + 2.22801680604 + ], + "libelle_d_acheminement": "CHAMPAGNE SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22801680604, + 49.1427759123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "775c9b24bae80607d64678b48937fef5625ddb36", + "fields": { + "code_commune_insee": "95139", + "nom_de_la_commune": "LA CHAPELLE EN VEXIN", + "code_postal": "95420", + "coordonnees_gps": [ + 49.1835139361, + 1.72855495896 + ], + "libelle_d_acheminement": "LA CHAPELLE EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72855495896, + 49.1835139361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28e79491e9c34da214a0b9ad0d171cfab672d2a7", + "fields": { + "code_commune_insee": "95154", + "nom_de_la_commune": "CHENNEVIERES LES LOUVRES", + "code_postal": "95380", + "coordonnees_gps": [ + 49.0420924353, + 2.54653894777 + ], + "libelle_d_acheminement": "CHENNEVIERES LES LOUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54653894777, + 49.0420924353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5754c631746739f8bc423abd488a0ed6187230ef", + "fields": { + "code_commune_insee": "95177", + "nom_de_la_commune": "CORMEILLES EN VEXIN", + "code_postal": "95830", + "coordonnees_gps": [ + 49.1134329307, + 2.01977916637 + ], + "libelle_d_acheminement": "CORMEILLES EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01977916637, + 49.1134329307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7315115c0217008ebee553a1e43d591c8b3f908", + "fields": { + "code_commune_insee": "95181", + "nom_de_la_commune": "COURCELLES SUR VIOSNE", + "code_postal": "95650", + "coordonnees_gps": [ + 49.073025738, + 1.99630178022 + ], + "libelle_d_acheminement": "COURCELLES SUR VIOSNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99630178022, + 49.073025738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10f14e58194b1e7c4cbb060507bad3706ab9ed76", + "fields": { + "code_commune_insee": "95183", + "nom_de_la_commune": "COURDIMANCHE", + "code_postal": "95800", + "coordonnees_gps": [ + 49.040676793, + 1.9994435918 + ], + "libelle_d_acheminement": "COURDIMANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9994435918, + 49.040676793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11ea86037a15e754f177fd7c1a99d446faecfe84", + "fields": { + "code_commune_insee": "95211", + "nom_de_la_commune": "ENNERY", + "code_postal": "95300", + "coordonnees_gps": [ + 49.0784386043, + 2.10941210454 + ], + "libelle_d_acheminement": "ENNERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10941210454, + 49.0784386043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9b7130f4d88fea8e50155a09c0baebc5325ce15", + "fields": { + "code_commune_insee": "95214", + "nom_de_la_commune": "EPINAY CHAMPLATREUX", + "code_postal": "95270", + "coordonnees_gps": [ + 49.0900262096, + 2.40710033598 + ], + "libelle_d_acheminement": "EPINAY CHAMPLATREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40710033598, + 49.0900262096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "962b5c4ed9439489881e20d8ecb3bbec285939b6", + "fields": { + "code_commune_insee": "95229", + "nom_de_la_commune": "EZANVILLE", + "code_postal": "95460", + "coordonnees_gps": [ + 49.038600379, + 2.36269120289 + ], + "libelle_d_acheminement": "EZANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36269120289, + 49.038600379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45b353546e3b012db2d4e3141edd0a9a31d498f3", + "fields": { + "code_commune_insee": "95271", + "nom_de_la_commune": "GENICOURT", + "code_postal": "95650", + "coordonnees_gps": [ + 49.0948354012, + 2.06072705902 + ], + "libelle_d_acheminement": "GENICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06072705902, + 49.0948354012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18faad59527d6ff83926537ccc2cf49f923b16c4", + "fields": { + "code_commune_insee": "95288", + "nom_de_la_commune": "GROSLAY", + "code_postal": "95410", + "coordonnees_gps": [ + 48.9849701077, + 2.35049057811 + ], + "libelle_d_acheminement": "GROSLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35049057811, + 48.9849701077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "458d8fc103244445e24a649a42b182b88297085c", + "fields": { + "code_commune_insee": "95308", + "nom_de_la_commune": "HEROUVILLE EN VEXIN", + "code_postal": "95300", + "coordonnees_gps": [ + 49.1048939093, + 2.12722046859 + ], + "libelle_d_acheminement": "HEROUVILLE EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12722046859, + 49.1048939093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e2ede98c9a69c94663279ebccd43c2610b9387b", + "fields": { + "code_commune_insee": "95341", + "nom_de_la_commune": "LIVILLIERS", + "code_postal": "95300", + "coordonnees_gps": [ + 49.1004574229, + 2.09462391064 + ], + "libelle_d_acheminement": "LIVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09462391064, + 49.1004574229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76fe79f039d68363646d9e8a82aba418396db551", + "fields": { + "code_commune_insee": "95353", + "nom_de_la_commune": "MAFFLIERS", + "code_postal": "95560", + "coordonnees_gps": [ + 49.083629147, + 2.312333333 + ], + "libelle_d_acheminement": "MAFFLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.312333333, + 49.083629147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3b3962b7c42406d3e67e03a4b7deb6ae804ff0e", + "fields": { + "code_commune_insee": "95365", + "nom_de_la_commune": "MAREIL EN FRANCE", + "code_postal": "95850", + "coordonnees_gps": [ + 49.0700384798, + 2.41753793907 + ], + "libelle_d_acheminement": "MAREIL EN FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41753793907, + 49.0700384798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0be5ee4941402ab659180f69be09f2f89b2c103", + "fields": { + "code_commune_insee": "95371", + "nom_de_la_commune": "MARLY LA VILLE", + "code_postal": "95670", + "coordonnees_gps": [ + 49.0815057636, + 2.5087179751 + ], + "libelle_d_acheminement": "MARLY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5087179751, + 49.0815057636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1ee4473f6ce897a153a97be8d3dddc4d3da3e5b", + "fields": { + "code_commune_insee": "95388", + "nom_de_la_commune": "MENUCOURT", + "code_postal": "95180", + "coordonnees_gps": [ + 49.0275422182, + 1.9746848215 + ], + "libelle_d_acheminement": "MENUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9746848215, + 49.0275422182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d82da205fd926d927b4ec0646c5d2eec8d0188d", + "fields": { + "code_commune_insee": "95428", + "nom_de_la_commune": "MONTMORENCY", + "code_postal": "95160", + "coordonnees_gps": [ + 48.9918643363, + 2.32119797848 + ], + "libelle_d_acheminement": "MONTMORENCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32119797848, + 48.9918643363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73749976a9333766635d3857a1861df10eee746a", + "fields": { + "code_commune_insee": "95436", + "nom_de_la_commune": "MOURS", + "code_postal": "95260", + "coordonnees_gps": [ + 49.1303947491, + 2.26415088892 + ], + "libelle_d_acheminement": "MOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26415088892, + 49.1303947491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5181b72cda9396bbfaf0f47986c2eb09488859fc", + "fields": { + "code_commune_insee": "95459", + "nom_de_la_commune": "NUCOURT", + "code_postal": "95420", + "coordonnees_gps": [ + 49.1595393224, + 1.85643409298 + ], + "libelle_d_acheminement": "NUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85643409298, + 49.1595393224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a930fecc93e391588b5bc71526ac2cf9b487b369", + "fields": { + "code_commune_insee": "95462", + "nom_de_la_commune": "OMERVILLE", + "code_postal": "95420", + "coordonnees_gps": [ + 49.1427407784, + 1.72224789983 + ], + "libelle_d_acheminement": "OMERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72224789983, + 49.1427407784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46e5243be08f38bcc3caaa25ad7deae52ceefd61", + "fields": { + "code_commune_insee": "95476", + "nom_de_la_commune": "OSNY", + "code_postal": "95520", + "coordonnees_gps": [ + 49.0676589923, + 2.06311678451 + ], + "libelle_d_acheminement": "OSNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06311678451, + 49.0676589923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87eb54f54567ea2241e7ccf8c2baaa0e5be198a1", + "fields": { + "code_commune_insee": "95492", + "nom_de_la_commune": "LE PLESSIS GASSOT", + "code_postal": "95720", + "coordonnees_gps": [ + 49.0357861801, + 2.41591923278 + ], + "libelle_d_acheminement": "LE PLESSIS GASSOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41591923278, + 49.0357861801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf67498dcc921f3ca7f655773c43079540c27627", + "fields": { + "code_commune_insee": "95493", + "nom_de_la_commune": "LE PLESSIS LUZARCHES", + "code_postal": "95270", + "coordonnees_gps": [ + 49.095729672, + 2.45475644312 + ], + "libelle_d_acheminement": "LE PLESSIS LUZARCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45475644312, + 49.095729672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1d38d7834fe18ca1b1d381542816268fe5f76d6", + "fields": { + "code_commune_insee": "95510", + "nom_de_la_commune": "PUISEUX PONTOISE", + "code_postal": "95650", + "coordonnees_gps": [ + 49.0637642089, + 2.01586749979 + ], + "libelle_d_acheminement": "PUISEUX PONTOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01586749979, + 49.0637642089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eee8747a13a22ff940df866bd63db7ee13ae8dd", + "fields": { + "code_commune_insee": "95554", + "nom_de_la_commune": "ST GERVAIS", + "code_postal": "95420", + "coordonnees_gps": [ + 49.1669076657, + 1.76166350491 + ], + "libelle_d_acheminement": "ST GERVAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76166350491, + 49.1669076657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdf1e378f703e3431fab27f490a7da01b0ef9d5f", + "fields": { + "code_commune_insee": "95555", + "nom_de_la_commune": "ST GRATIEN", + "code_postal": "95210", + "coordonnees_gps": [ + 48.9689724948, + 2.28518003438 + ], + "libelle_d_acheminement": "ST GRATIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28518003438, + 48.9689724948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6ba62267053d5f0da620421e7b01b988194a776", + "fields": { + "code_commune_insee": "95572", + "nom_de_la_commune": "ST OUEN L AUMONE", + "code_postal": "95310", + "coordonnees_gps": [ + 49.0441683455, + 2.12861303743 + ], + "libelle_d_acheminement": "ST OUEN L AUMONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12861303743, + 49.0441683455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70e1c5afb15152e08eb84137f8f011b311f7221d", + "fields": { + "code_commune_insee": "95574", + "nom_de_la_commune": "ST PRIX", + "code_postal": "95390", + "coordonnees_gps": [ + 49.0208224816, + 2.27015066493 + ], + "libelle_d_acheminement": "ST PRIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27015066493, + 49.0208224816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65048ac31e9b1d125cd05b13c26b78cc66c584ef", + "fields": { + "code_commune_insee": "95580", + "nom_de_la_commune": "ST WITZ", + "code_postal": "95470", + "coordonnees_gps": [ + 49.0857837241, + 2.55227615042 + ], + "libelle_d_acheminement": "ST WITZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55227615042, + 49.0857837241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17e48335b6cf03c33f51400207ec0588d0cab4df", + "fields": { + "code_commune_insee": "95637", + "nom_de_la_commune": "VAUREAL", + "code_postal": "95490", + "coordonnees_gps": [ + 49.0295073382, + 2.02446619061 + ], + "libelle_d_acheminement": "VAUREAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02446619061, + 49.0295073382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69e642e922d7a1547046271c9dfc814bc1c2d34b", + "fields": { + "code_commune_insee": "95651", + "nom_de_la_commune": "VETHEUIL", + "code_postal": "95510", + "coordonnees_gps": [ + 49.0620216513, + 1.70672153604 + ], + "libelle_d_acheminement": "VETHEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70672153604, + 49.0620216513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a519f16240ab5653e29f562831fcf83bcf776112", + "fields": { + "code_commune_insee": "95675", + "nom_de_la_commune": "VILLERON", + "code_postal": "95380", + "coordonnees_gps": [ + 49.060842982, + 2.5345109745 + ], + "libelle_d_acheminement": "VILLERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5345109745, + 49.060842982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "002eb000869ee62697a0ba577a94666f47e5f742", + "fields": { + "code_commune_insee": "95676", + "nom_de_la_commune": "VILLERS EN ARTHIES", + "code_postal": "95510", + "coordonnees_gps": [ + 49.0858999284, + 1.73039629888 + ], + "libelle_d_acheminement": "VILLERS EN ARTHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73039629888, + 49.0858999284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "698dcd26165684ff88a881867cc61203bd90b174", + "fields": { + "code_commune_insee": "97104", + "nom_de_la_commune": "BAILLIF", + "code_postal": "97123", + "coordonnees_gps": [ + 16.0455136353, + -61.7192956906 + ], + "libelle_d_acheminement": "BAILLIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.7192956906, + 16.0455136353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef797e5c28a760943bfba6ffd722da04db8c7420", + "fields": { + "code_commune_insee": "97108", + "nom_de_la_commune": "CAPESTERRE DE MARIE GALANTE", + "code_postal": "97140", + "coordonnees_gps": [ + 15.9200251247, + -61.2299898097 + ], + "libelle_d_acheminement": "CAPESTERRE DE MARIE GALANTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.2299898097, + 15.9200251247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dc753269c2ae3682f08d86aa8fb32fa3d36d173", + "fields": { + "code_commune_insee": "97119", + "nom_de_la_commune": "PETIT CANAL", + "code_postal": "97131", + "coordonnees_gps": [ + 16.3893559546, + -61.4497634927 + ], + "libelle_d_acheminement": "PETIT CANAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.4497634927, + 16.3893559546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2d1a46adc5ef1d0100b1267953296707bee1bc0", + "fields": { + "code_commune_insee": "97120", + "nom_de_la_commune": "POINTE A PITRE", + "code_postal": "97110", + "coordonnees_gps": [ + 16.2386006963, + -61.5357180881 + ], + "libelle_d_acheminement": "POINTE A PITRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.5357180881, + 16.2386006963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "629a76fc865c7affe33899a1c516dbb964e4979f", + "fields": { + "code_commune_insee": "97121", + "nom_de_la_commune": "POINTE NOIRE", + "code_postal": "97116", + "coordonnees_gps": [ + 16.227093809, + -61.7632677647 + ], + "libelle_d_acheminement": "POINTE NOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.7632677647, + 16.227093809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a1fc3e968f18d70ea7ed370613d6cf175502f0d", + "fields": { + "code_commune_insee": "97128", + "nom_de_la_commune": "STE ANNE", + "code_postal": "97180", + "coordonnees_gps": [ + 16.2572300868, + -61.3874730054 + ], + "libelle_d_acheminement": "STE ANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.3874730054, + 16.2572300868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "336614b70b8e7c63f9d8c75b2b8c3bada5e65b74", + "fields": { + "code_commune_insee": "97206", + "nom_de_la_commune": "LE DIAMANT", + "code_postal": "97223", + "coordonnees_gps": [ + 14.4890909775, + -61.0210620105 + ], + "libelle_d_acheminement": "LE DIAMANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.0210620105, + 14.4890909775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1451ea1c31bda610caf206ef1d9554dae62641b", + "fields": { + "code_commune_insee": "97208", + "nom_de_la_commune": "FONDS ST DENIS", + "code_postal": "97250", + "coordonnees_gps": [ + 14.7260291636, + -61.1150746091 + ], + "libelle_d_acheminement": "FONDS ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.1150746091, + 14.7260291636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cfd8e4f4dde74275d2287206b850768f2c2c701", + "fields": { + "ligne_5": "ROBERT VERT PRE", + "code_commune_insee": "97222", + "libelle_d_acheminement": "LE ROBERT", + "code_postal": "97231", + "nom_de_la_commune": "LE ROBERT", + "coordonnees_gps": [ + 14.6752109401, + -60.9429518756 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.9429518756, + 14.6752109401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f83c8ccbc30216d2514ac70f82e214ba7636ebf2", + "fields": { + "code_commune_insee": "97231", + "nom_de_la_commune": "LES TROIS ILETS", + "code_postal": "97229", + "coordonnees_gps": [ + 14.5272688928, + -61.0370896934 + ], + "libelle_d_acheminement": "LES TROIS ILETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.0370896934, + 14.5272688928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "439bdc3bcf7a72b6981e1f48d6624d7e46e792f6", + "fields": { + "code_commune_insee": "97232", + "nom_de_la_commune": "LE VAUCLIN", + "code_postal": "97280", + "coordonnees_gps": [ + 14.5436764866, + -60.8571906355 + ], + "libelle_d_acheminement": "LE VAUCLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8571906355, + 14.5436764866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e96cbf5ab089ec4ae2b5ef5d0f0bf1c32682afc9", + "fields": { + "code_commune_insee": "97307", + "nom_de_la_commune": "MATOURY", + "code_postal": "97351", + "coordonnees_gps": [ + 4.83179351032, + -52.3435609813 + ], + "libelle_d_acheminement": "MATOURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.3435609813, + 4.83179351032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e66124c6d0490265d82fd8abd209a6fdff2b7d67", + "fields": { + "code_commune_insee": "97308", + "nom_de_la_commune": "ST GEORGES", + "code_postal": "97313", + "coordonnees_gps": [ + 3.74201791735, + -52.1323737516 + ], + "libelle_d_acheminement": "ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.1323737516, + 3.74201791735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "648ceb6acdefbf3cb3c4ae94c130eae20f41947f", + "fields": { + "code_commune_insee": "97313", + "nom_de_la_commune": "MONTSINERY TONNEGRANDE", + "code_postal": "97356", + "coordonnees_gps": [ + 4.80953892931, + -52.5098116892 + ], + "libelle_d_acheminement": "MONTSINERY TONNEGRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.5098116892, + 4.80953892931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeb5817e20bb2c78bd6cd76ebe7749fecfdd6130", + "fields": { + "code_commune_insee": "97353", + "nom_de_la_commune": "MARIPASOULA", + "code_postal": "97370", + "coordonnees_gps": [ + 2.97088417594, + -53.7584193112 + ], + "libelle_d_acheminement": "MARIPASOULA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.7584193112, + 2.97088417594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daefc3e78a04f364d3a24e0992c1618389aa2a8a", + "fields": { + "code_commune_insee": "97401", + "nom_de_la_commune": "LES AVIRONS", + "code_postal": "97425", + "coordonnees_gps": [ + -21.2089994294, + 55.3591485447 + ], + "libelle_d_acheminement": "LES AVIRONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3591485447, + -21.2089994294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbeb47816044de3affec39aa53c5f2b186637b63", + "fields": { + "ligne_5": "PITON GOYAVES", + "code_commune_insee": "97405", + "libelle_d_acheminement": "PETITE ILE", + "code_postal": "97429", + "nom_de_la_commune": "PETITE ILE", + "coordonnees_gps": [ + -21.3401068981, + 55.5687050843 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5687050843, + -21.3401068981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5eca16349939ac8627e9cf1e35bc5ed3458164b8", + "fields": { + "ligne_5": "STE THERESE", + "code_commune_insee": "97408", + "libelle_d_acheminement": "LA POSSESSION", + "code_postal": "97419", + "nom_de_la_commune": "LA POSSESSION", + "coordonnees_gps": [ + -20.9940292693, + 55.3975084985 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3975084985, + -20.9940292693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feb67b33c2f643aeeb9ffbe1b4b900cb7d31c235", + "fields": { + "ligne_5": "STE ANNE", + "code_commune_insee": "97410", + "libelle_d_acheminement": "ST BENOIT", + "code_postal": "97437", + "nom_de_la_commune": "ST BENOIT", + "coordonnees_gps": [ + -21.0918662796, + 55.6494168586 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.6494168586, + -21.0918662796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de9b07b1b9944333f36b88bf7595e695ec049121", + "fields": { + "code_commune_insee": "97410", + "nom_de_la_commune": "ST BENOIT", + "code_postal": "97470", + "coordonnees_gps": [ + -21.0918662796, + 55.6494168586 + ], + "libelle_d_acheminement": "ST BENOIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.6494168586, + -21.0918662796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d74e01b977c13a28233885b95f00e0b3e0923e50", + "fields": { + "ligne_5": "BEAUFONDS", + "code_commune_insee": "97410", + "libelle_d_acheminement": "ST BENOIT", + "code_postal": "97470", + "nom_de_la_commune": "ST BENOIT", + "coordonnees_gps": [ + -21.0918662796, + 55.6494168586 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.6494168586, + -21.0918662796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fb91630dc88a0f410ece7ef09c0a058492aea18", + "fields": { + "ligne_5": "ST DENIS TADAR", + "code_commune_insee": "97411", + "libelle_d_acheminement": "ST DENIS", + "code_postal": "97400", + "nom_de_la_commune": "ST DENIS", + "coordonnees_gps": [ + -20.9329708192, + 55.446867167 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.446867167, + -20.9329708192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35ee99876bf97576b534980b76ea9f3cec869428", + "fields": { + "ligne_5": "LA BRETAGNE", + "code_commune_insee": "97411", + "libelle_d_acheminement": "ST DENIS", + "code_postal": "97490", + "nom_de_la_commune": "ST DENIS", + "coordonnees_gps": [ + -20.9329708192, + 55.446867167 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.446867167, + -20.9329708192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adac7d110c368568cd12b0bf9874d740ee760d38", + "fields": { + "ligne_5": "STE CLOTILDE", + "code_commune_insee": "97411", + "libelle_d_acheminement": "ST DENIS", + "code_postal": "97490", + "nom_de_la_commune": "ST DENIS", + "coordonnees_gps": [ + -20.9329708192, + 55.446867167 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.446867167, + -20.9329708192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e46329d83940f115b4696fad98f9569afb34086", + "fields": { + "ligne_5": "JEAN PETIT", + "code_commune_insee": "97412", + "libelle_d_acheminement": "ST JOSEPH", + "code_postal": "97480", + "nom_de_la_commune": "ST JOSEPH", + "coordonnees_gps": [ + -21.3063550443, + 55.6420686506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.6420686506, + -21.3063550443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa2382e4ecc6283a58304b12f7973835e273d86f", + "fields": { + "code_commune_insee": "97415", + "nom_de_la_commune": "ST PAUL", + "code_postal": "97460", + "coordonnees_gps": [ + -21.0445317522, + 55.3223334298 + ], + "libelle_d_acheminement": "ST PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3223334298, + -21.0445317522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3dd2aafa75428622d86c540950e229f92e192d1", + "fields": { + "code_commune_insee": "97416", + "nom_de_la_commune": "ST PIERRE", + "code_postal": "97410", + "coordonnees_gps": [ + -21.3123242427, + 55.4936155164 + ], + "libelle_d_acheminement": "ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.4936155164, + -21.3123242427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65657f4eb124960d4f167bf6e6d9dd37258f777a", + "fields": { + "ligne_5": "RAVINE BLANCHE", + "code_commune_insee": "97416", + "libelle_d_acheminement": "ST PIERRE", + "code_postal": "97410", + "nom_de_la_commune": "ST PIERRE", + "coordonnees_gps": [ + -21.3123242427, + 55.4936155164 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.4936155164, + -21.3123242427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fa4475bde0a3b555a784b8fdf281839daf0b24c", + "fields": { + "ligne_5": "TERRE SAINTE", + "code_commune_insee": "97416", + "libelle_d_acheminement": "ST PIERRE", + "code_postal": "97410", + "nom_de_la_commune": "ST PIERRE", + "coordonnees_gps": [ + -21.3123242427, + 55.4936155164 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.4936155164, + -21.3123242427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bcabe35bb4673d09c70f249c8b858c05d6752ae", + "fields": { + "ligne_5": "RAVINE DES CABRIS", + "code_commune_insee": "97416", + "libelle_d_acheminement": "ST PIERRE", + "code_postal": "97432", + "nom_de_la_commune": "ST PIERRE", + "coordonnees_gps": [ + -21.3123242427, + 55.4936155164 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.4936155164, + -21.3123242427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3b9275a51fc693769c11373a347594a7dd6b698", + "fields": { + "code_commune_insee": "97421", + "nom_de_la_commune": "SALAZIE", + "code_postal": "97433", + "coordonnees_gps": [ + -21.0469188863, + 55.5082381926 + ], + "libelle_d_acheminement": "SALAZIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5082381926, + -21.0469188863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e341f7457f498f1f13819650c572690a7fb064a", + "fields": { + "nom_de_la_commune": "ST PIERRE", + "ligne_5": "ST PIERRE", + "code_postal": "97500", + "code_commune_insee": "97502", + "libelle_d_acheminement": "ST PIERRE ET MIQUELON" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db523cd996c90eddcf72dc60d005e365f8d0ec9d", + "fields": { + "ligne_5": "LABATTOIR", + "code_commune_insee": "97608", + "libelle_d_acheminement": "DZAOUDZI", + "code_postal": "97615", + "nom_de_la_commune": "DZAOUDZI", + "coordonnees_gps": [ + -12.7791666355, + 45.2822648358 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.2822648358, + -12.7791666355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a41c065df040cd0160dc2b05ec83920a78d7fa1", + "fields": { + "code_commune_insee": "97612", + "nom_de_la_commune": "MTSAMBORO", + "code_postal": "97630", + "coordonnees_gps": [ + -12.6875073612, + 45.0736802335 + ], + "libelle_d_acheminement": "MTSAMBORO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.0736802335, + -12.6875073612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3583dea1da6c0bf7e45d11522d724db94fc75e6b", + "fields": { + "code_commune_insee": "97617", + "nom_de_la_commune": "TSINGONI", + "code_postal": "97680", + "coordonnees_gps": [ + -12.7821666736, + 45.1344279083 + ], + "libelle_d_acheminement": "TSINGONI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1344279083, + -12.7821666736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "128db9f2338facf0e285c2779c0c54103d804fbe", + "fields": { + "nom_de_la_commune": "ST BARTHELEMY", + "code_postal": "97133", + "code_commune_insee": "97701", + "libelle_d_acheminement": "ST BARTHELEMY" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3fbcb0b1b662345305263b1a463ad308fe4b880", + "fields": { + "nom_de_la_commune": "SIGAVE", + "code_postal": "98620", + "code_commune_insee": "98612", + "libelle_d_acheminement": "SIGAVE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80cdf255901b1a910c82bc338f2cd2c0be1e4d92", + "fields": { + "nom_de_la_commune": "BORA BORA", + "ligne_5": "BORA BORA", + "code_postal": "98730", + "code_commune_insee": "98714", + "libelle_d_acheminement": "FAANUI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6ffca65c67e3c7b48ced47cfe21e2658200f18f", + "fields": { + "nom_de_la_commune": "BORA BORA", + "ligne_5": "BORA BORA", + "code_postal": "98730", + "code_commune_insee": "98714", + "libelle_d_acheminement": "VAITAPE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "778b53213656c1e02d01c0965be3e84819798333", + "fields": { + "nom_de_la_commune": "FAKARAVA", + "ligne_5": "FAKARAVA", + "code_postal": "98763", + "code_commune_insee": "98716", + "libelle_d_acheminement": "ROTOAVA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "541e93a541ddda374c0794608db83571d7746bc6", + "fields": { + "nom_de_la_commune": "FAKARAVA", + "ligne_5": "FAKARAVA", + "code_postal": "98764", + "code_commune_insee": "98716", + "libelle_d_acheminement": "PAPARARA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d700cb62fcb1962ab80c8351d647e94bfaca5960", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98755", + "code_commune_insee": "98719", + "libelle_d_acheminement": "MANIUI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c06d64b748928eb55b705ac7ac7b78c5ea83f4b", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98755", + "code_commune_insee": "98719", + "libelle_d_acheminement": "RIKITEA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bad3b9f3a00da58db4a0333d684f42ed043e53a6", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98792", + "code_commune_insee": "98719", + "libelle_d_acheminement": "TEMOE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd7d7ecb6d7f713097a8c6c88f3f64f1198d4e2a", + "fields": { + "nom_de_la_commune": "HAO", + "ligne_5": "HAO", + "code_postal": "98790", + "code_commune_insee": "98720", + "libelle_d_acheminement": "NENGONENGO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec2398c7f218d822291d93266e1d10e4acf74a5f", + "fields": { + "nom_de_la_commune": "HIKUERU", + "ligne_5": "HIKUERU", + "code_postal": "98768", + "code_commune_insee": "98721", + "libelle_d_acheminement": "TUPAPATI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbd24bbdee5d03493a0599cd3833d7c0bf08c33e", + "fields": { + "nom_de_la_commune": "HIVA OA", + "ligne_5": "HIVA OA", + "code_postal": "98741", + "code_commune_insee": "98723", + "libelle_d_acheminement": "ATUONA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53963b10ba61e1e7e581a7d47dfb53bcae3f8e89", + "fields": { + "nom_de_la_commune": "HIVA OA", + "ligne_5": "HIVA OA", + "code_postal": "98796", + "code_commune_insee": "98723", + "libelle_d_acheminement": "MOHOTANI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77133da73c6185a4ce8732fd25b6e99965d947b2", + "fields": { + "nom_de_la_commune": "HUAHINE", + "ligne_5": "HUAHINE", + "code_postal": "98731", + "code_commune_insee": "98724", + "libelle_d_acheminement": "HAAPU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71f7afec0c21e1255f0190582208a3a31c976567", + "fields": { + "nom_de_la_commune": "MAKEMO", + "ligne_5": "MAKEMO", + "code_postal": "98790", + "code_commune_insee": "98726", + "libelle_d_acheminement": "GARUMAOA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32642099cc2127d2d730848b5556d3c5c0046678", + "fields": { + "nom_de_la_commune": "MANIHI", + "ligne_5": "MANIHI", + "code_postal": "98770", + "code_commune_insee": "98727", + "libelle_d_acheminement": "TENOKUPARA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15b420628c1da5d4a20c3e610f2d6ce8f99034f6", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98728", + "code_commune_insee": "98729", + "libelle_d_acheminement": "HAUMI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2f7afdfa7b7782859b0de5a034096948b20e623", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98728", + "code_commune_insee": "98729", + "libelle_d_acheminement": "MAATEA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6748bb64070b1704335813ceba09b1b681a4182", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98728", + "code_commune_insee": "98729", + "libelle_d_acheminement": "MAHAREPA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c124c242e47e80c5021593c3ebe921004840428", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98728", + "code_commune_insee": "98729", + "libelle_d_acheminement": "PAOPAO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f25bde4408bde2420b8b7abe3ce5792ac70d134", + "fields": { + "nom_de_la_commune": "NUKU HIVA", + "ligne_5": "NUKU HIVA", + "code_postal": "98742", + "code_commune_insee": "98731", + "libelle_d_acheminement": "TAIPIVAI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d86d22f20437f1079c2e73374e2bc83c7498f80d", + "fields": { + "nom_de_la_commune": "NUKU HIVA", + "ligne_5": "NUKU HIVA", + "code_postal": "98742", + "code_commune_insee": "98731", + "libelle_d_acheminement": "AAKAPA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b0f1b8a2912982f0792bf6a428b1042e0cb4039", + "fields": { + "nom_de_la_commune": "PAEA", + "code_postal": "98711", + "code_commune_insee": "98733", + "libelle_d_acheminement": "PAEA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58b799834635b33b88300b5f68771ac5a590a87e", + "fields": { + "nom_de_la_commune": "RAIVAVAE", + "ligne_5": "RAIVAVAE", + "code_postal": "98750", + "code_commune_insee": "98739", + "libelle_d_acheminement": "RAIRUA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beba5c4ce569bc913cf9cb7fcb389b4cf07e4ea8", + "fields": { + "nom_de_la_commune": "RAIVAVAE", + "ligne_5": "RAIVAVAE", + "code_postal": "98750", + "code_commune_insee": "98739", + "libelle_d_acheminement": "ANATONU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa5ee7457ec6f6d9ae7b9cd9ca5ca69c4680ffff", + "fields": { + "nom_de_la_commune": "RANGIROA", + "ligne_5": "RANGIROA", + "code_postal": "98778", + "code_commune_insee": "98740", + "libelle_d_acheminement": "TUHERAHERA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62a35e53d3cba3e9ced9611d2a8b6509e8df4cd0", + "fields": { + "nom_de_la_commune": "RIMATARA", + "code_postal": "98752", + "code_commune_insee": "98743", + "libelle_d_acheminement": "RIMATARA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95f72707aa192e7fa7753a85e980aec5aca058b7", + "fields": { + "nom_de_la_commune": "RIMATARA", + "ligne_5": "RIMATARA", + "code_postal": "98795", + "code_commune_insee": "98743", + "libelle_d_acheminement": "MARIA ILOTS" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db134b5047912cab4db172a017d3af132d11a35b", + "fields": { + "nom_de_la_commune": "TAHAA", + "code_postal": "98733", + "code_commune_insee": "98745", + "libelle_d_acheminement": "TAHAA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbce5240747d38f47c3bee5fee1e752ec8b19acf", + "fields": { + "nom_de_la_commune": "TAHAA", + "ligne_5": "TAHAA", + "code_postal": "98733", + "code_commune_insee": "98745", + "libelle_d_acheminement": "HIPU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da92418e5921b014dd2eb3350208a4b49b875a62", + "fields": { + "nom_de_la_commune": "TAHAA", + "ligne_5": "TAHAA", + "code_postal": "98734", + "code_commune_insee": "98745", + "libelle_d_acheminement": "POUTORU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8b5b1b2dec3b6388e8652c4c177d2126fefb6df", + "fields": { + "nom_de_la_commune": "TAIARAPU EST", + "ligne_5": "TAIARAPU EST", + "code_postal": "98722", + "code_commune_insee": "98747", + "libelle_d_acheminement": "TAUTIRA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c789d5612a3bd2af9f4670c08d7e4e1af87f8b99", + "fields": { + "nom_de_la_commune": "TAPUTAPUATEA", + "ligne_5": "TAPUTAPUATEA", + "code_postal": "98735", + "code_commune_insee": "98750", + "libelle_d_acheminement": "PUOHINE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8219d0a91d77b8978aacf38d40ad58f5c34d228", + "fields": { + "nom_de_la_commune": "TATAKOTO", + "ligne_5": "TATAKOTO", + "code_postal": "98783", + "code_commune_insee": "98751", + "libelle_d_acheminement": "TUMUKURU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7d2306f3a323eb6c2a8cb74eb488f2017e6b098", + "fields": { + "nom_de_la_commune": "TEVA I UTA", + "ligne_5": "TEVA I UTA", + "code_postal": "98727", + "code_commune_insee": "98752", + "libelle_d_acheminement": "PAPEARI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fc708ad1ccd46c7f977b414d3468f2c0ec0d97e", + "fields": { + "nom_de_la_commune": "TUBUAI", + "ligne_5": "TUBUAI", + "code_postal": "98754", + "code_commune_insee": "98753", + "libelle_d_acheminement": "MATAURA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "723631eb3d4d4a758fc2ecb100735e77ff94e06b", + "fields": { + "nom_de_la_commune": "TUMARAA", + "code_postal": "98735", + "code_commune_insee": "98754", + "libelle_d_acheminement": "TUMARAA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e199bb0f28a20270cdaaf23263bcaa9555dbfa7", + "fields": { + "nom_de_la_commune": "TUMARAA", + "ligne_5": "TUMARAA", + "code_postal": "98735", + "code_commune_insee": "98754", + "libelle_d_acheminement": "FETUNA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecf5fca54365bd5ff10781eb4223497f178579f3", + "fields": { + "nom_de_la_commune": "UA POU", + "ligne_5": "UA POU", + "code_postal": "98745", + "code_commune_insee": "98757", + "libelle_d_acheminement": "HAKATAO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68b70bb88bf913db870ae7b7fad66ea0e0cf1c93", + "fields": { + "nom_de_la_commune": "DUMBEA", + "code_postal": "98835", + "code_commune_insee": "98805", + "libelle_d_acheminement": "DUMBEA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "911fd88989b7e39caf8c87a27e5d7cc69ffd5558", + "fields": { + "nom_de_la_commune": "HOUAILOU", + "ligne_5": "HOUAILOU", + "code_postal": "98838", + "code_commune_insee": "98808", + "libelle_d_acheminement": "PORO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6b399a5e3063aea61ba3cf9d76747d7d5d83454", + "fields": { + "nom_de_la_commune": "LIFOU", + "ligne_5": "LIFOU", + "code_postal": "98884", + "code_commune_insee": "98814", + "libelle_d_acheminement": "CHEPENEHE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "983b7f1f548056fba40d6c086965571f58f8f41b", + "fields": { + "nom_de_la_commune": "LE MONT DORE", + "ligne_5": "LE MONT DORE", + "code_postal": "98875", + "code_commune_insee": "98817", + "libelle_d_acheminement": "PLUM" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7621cb1034bbddf198588d83e31842c017ac8c2", + "fields": { + "nom_de_la_commune": "OUEGOA", + "code_postal": "98821", + "code_commune_insee": "98819", + "libelle_d_acheminement": "OUEGOA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95e96e6c712a76b69848b0d1f0af7f57d67362f0", + "fields": { + "nom_de_la_commune": "PAITA", + "code_postal": "98890", + "code_commune_insee": "98821", + "libelle_d_acheminement": "PAITA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69a963a6a1c43fe225997ffc61998e23f193cf64", + "fields": { + "nom_de_la_commune": "POYA", + "code_postal": "98827", + "code_commune_insee": "98827", + "libelle_d_acheminement": "POYA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "981e4da9f968e528ae3a0569c2446ebc52a5c417", + "fields": { + "nom_de_la_commune": "POYA", + "ligne_5": "POYA", + "code_postal": "98877", + "code_commune_insee": "98827", + "libelle_d_acheminement": "NEPOUI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62756efc32ad72aa6b76b2e725da70b07d34d5e6", + "fields": { + "code_commune_insee": "50230", + "nom_de_la_commune": "HARDINVAST", + "code_postal": "50690", + "coordonnees_gps": [ + 49.5766905204, + -1.64595103605 + ], + "libelle_d_acheminement": "HARDINVAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64595103605, + 49.5766905204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f520fde9227250a3541cfc13a358b2ec3671da9", + "fields": { + "code_commune_insee": "50243", + "nom_de_la_commune": "HEUGUEVILLE SUR SIENNE", + "code_postal": "50200", + "coordonnees_gps": [ + 49.037931867, + -1.51183729041 + ], + "libelle_d_acheminement": "HEUGUEVILLE SUR SIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51183729041, + 49.037931867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "def232fe830cacaa5b358bf3a5aaa914c91fe603", + "fields": { + "code_commune_insee": "50246", + "nom_de_la_commune": "HIESVILLE", + "code_postal": "50480", + "coordonnees_gps": [ + 49.3711233958, + -1.25909624755 + ], + "libelle_d_acheminement": "HIESVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25909624755, + 49.3711233958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e231d86857bf753b7d96ad1eb48ffabeb3e09f2", + "fields": { + "code_commune_insee": "50247", + "nom_de_la_commune": "HOCQUIGNY", + "code_postal": "50320", + "coordonnees_gps": [ + 48.8085201444, + -1.401972508 + ], + "libelle_d_acheminement": "HOCQUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.401972508, + 48.8085201444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ebb7f3559b9c0c46caed981107c0bb070cdeb19", + "fields": { + "code_commune_insee": "50251", + "nom_de_la_commune": "HUBERVILLE", + "code_postal": "50700", + "coordonnees_gps": [ + 49.5093443935, + -1.43254692074 + ], + "libelle_d_acheminement": "HUBERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43254692074, + 49.5093443935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69843907a7fcb46d2d28aef62f8b354b5759a705", + "fields": { + "code_commune_insee": "50252", + "nom_de_la_commune": "HUDIMESNIL", + "code_postal": "50510", + "coordonnees_gps": [ + 48.870028751, + -1.46798288631 + ], + "libelle_d_acheminement": "HUDIMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46798288631, + 48.870028751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ae85e92965c8eb65b47bdfabdf3c37305bb1564", + "fields": { + "ligne_5": "CHALANDREY", + "code_commune_insee": "50256", + "libelle_d_acheminement": "ISIGNY LE BUAT", + "code_postal": "50540", + "nom_de_la_commune": "ISIGNY LE BUAT", + "coordonnees_gps": [ + 48.6214964353, + -1.18298649234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18298649234, + 48.6214964353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0752eb79b2850a62ec4016a308cf2bb675984927", + "fields": { + "ligne_5": "NAFTEL", + "code_commune_insee": "50256", + "libelle_d_acheminement": "ISIGNY LE BUAT", + "code_postal": "50540", + "nom_de_la_commune": "ISIGNY LE BUAT", + "coordonnees_gps": [ + 48.6214964353, + -1.18298649234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18298649234, + 48.6214964353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fea44f49c86a4ca0e928c9957fa1e4d7f63221f1", + "fields": { + "ligne_5": "BELLEFONTAINE", + "code_commune_insee": "50260", + "libelle_d_acheminement": "JUVIGNY LES VALLEES", + "code_postal": "50520", + "nom_de_la_commune": "JUVIGNY LES VALLEES", + "coordonnees_gps": [ + 48.678576703, + -1.04281408802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04281408802, + 48.678576703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17a1315b63c8232d366e89a53c2f3921159061ea", + "fields": { + "ligne_5": "CHASSEGUEY", + "code_commune_insee": "50260", + "libelle_d_acheminement": "JUVIGNY LES VALLEES", + "code_postal": "50520", + "nom_de_la_commune": "JUVIGNY LES VALLEES", + "coordonnees_gps": [ + 48.678576703, + -1.04281408802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04281408802, + 48.678576703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "759997784e6877a077fc420d590f752d78b9bec1", + "fields": { + "ligne_5": "JUVIGNY LE TERTRE", + "code_commune_insee": "50260", + "libelle_d_acheminement": "JUVIGNY LES VALLEES", + "code_postal": "50520", + "nom_de_la_commune": "JUVIGNY LES VALLEES", + "coordonnees_gps": [ + 48.678576703, + -1.04281408802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04281408802, + 48.678576703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00db84a68da748698f12da42c9431cb4c7dedaf5", + "fields": { + "code_commune_insee": "50265", + "nom_de_la_commune": "LAULNE", + "code_postal": "50430", + "coordonnees_gps": [ + 49.2506372168, + -1.45537341043 + ], + "libelle_d_acheminement": "LAULNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45537341043, + 49.2506372168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7027de8cf4d3f134561c07dd5a5934a92b1c1553", + "fields": { + "code_commune_insee": "50268", + "nom_de_la_commune": "LESTRE", + "code_postal": "50310", + "coordonnees_gps": [ + 49.5256131651, + -1.32237994906 + ], + "libelle_d_acheminement": "LESTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32237994906, + 49.5256131651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a6ad3f5dd983fdc980bfde8fa43ad5d0c328cd8", + "fields": { + "ligne_5": "STE SUZANNE EN BAUPTOIS", + "code_commune_insee": "50273", + "libelle_d_acheminement": "MONTSENELLE", + "code_postal": "50250", + "nom_de_la_commune": "MONTSENELLE", + "coordonnees_gps": [ + 49.2964016031, + -1.48893562927 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48893562927, + 49.2964016031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "118c0547d59cf55084734a82f772f98f52f160a3", + "fields": { + "code_commune_insee": "50277", + "nom_de_la_commune": "LONGUEVILLE", + "code_postal": "50290", + "coordonnees_gps": [ + 48.8585636393, + -1.5352864546 + ], + "libelle_d_acheminement": "LONGUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5352864546, + 48.8585636393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "004afaecd582cb7eb1680a5bc7dfc49bd7d829f5", + "fields": { + "code_commune_insee": "50281", + "nom_de_la_commune": "LA LUCERNE D OUTREMER", + "code_postal": "50320", + "coordonnees_gps": [ + 48.788392012, + -1.40995865422 + ], + "libelle_d_acheminement": "LA LUCERNE D OUTREMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40995865422, + 48.788392012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d6d21e072d4d11725a1729808c32837511f9a89", + "fields": { + "code_commune_insee": "50282", + "nom_de_la_commune": "LE LUOT", + "code_postal": "50870", + "coordonnees_gps": [ + 48.7661567656, + -1.32946620609 + ], + "libelle_d_acheminement": "LE LUOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32946620609, + 48.7661567656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fddb10f7a4dbae070ca50ac258eca3d1367705d4", + "fields": { + "code_commune_insee": "50285", + "nom_de_la_commune": "MAGNEVILLE", + "code_postal": "50260", + "coordonnees_gps": [ + 49.452860666, + -1.5484188019 + ], + "libelle_d_acheminement": "MAGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5484188019, + 49.452860666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "009c171d52688e55fc1ee07bd008e376bd885844", + "fields": { + "code_commune_insee": "50288", + "nom_de_la_commune": "MARCEY LES GREVES", + "code_postal": "50300", + "coordonnees_gps": [ + 48.7001007007, + -1.38897452773 + ], + "libelle_d_acheminement": "MARCEY LES GREVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38897452773, + 48.7001007007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a48f50073013ccce3db9fc90a43988c79eac60f", + "fields": { + "code_commune_insee": "50289", + "nom_de_la_commune": "MARCHESIEUX", + "code_postal": "50190", + "coordonnees_gps": [ + 49.1886083143, + -1.30728128303 + ], + "libelle_d_acheminement": "MARCHESIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30728128303, + 49.1886083143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6d5fdd99ec1d9b39775ed3e73c01d16c203b450", + "fields": { + "code_commune_insee": "50291", + "nom_de_la_commune": "MARGUERAY", + "code_postal": "50410", + "coordonnees_gps": [ + 48.9003108376, + -1.1263529355 + ], + "libelle_d_acheminement": "MARGUERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1263529355, + 48.9003108376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "811ffc40280a7b3b1d4b31d2aafb64971cbb25a3", + "fields": { + "code_commune_insee": "50298", + "nom_de_la_commune": "MEAUTIS", + "code_postal": "50500", + "coordonnees_gps": [ + 49.280521992, + -1.29573057994 + ], + "libelle_d_acheminement": "MEAUTIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29573057994, + 49.280521992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf22cc8377436707910b30f01bf45bae9e490338", + "fields": { + "code_commune_insee": "50321", + "nom_de_la_commune": "LE MESNIL ROUXELIN", + "code_postal": "50000", + "coordonnees_gps": [ + 49.1423322166, + -1.07833436341 + ], + "libelle_d_acheminement": "LE MESNIL ROUXELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07833436341, + 49.1423322166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfaa3beee29c0c3102b111876cb7a0bdcc227ace", + "fields": { + "code_commune_insee": "50324", + "nom_de_la_commune": "LE MESNIL VENERON", + "code_postal": "50620", + "coordonnees_gps": [ + 49.2259215456, + -1.16299457412 + ], + "libelle_d_acheminement": "LE MESNIL VENERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16299457412, + 49.2259215456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf20ed14f45a5dd84cfb0de1f7c5fa391d73b284", + "fields": { + "code_commune_insee": "50336", + "nom_de_la_commune": "MONTAIGU LES BOIS", + "code_postal": "50450", + "coordonnees_gps": [ + 48.8911102203, + -1.27021811882 + ], + "libelle_d_acheminement": "MONTAIGU LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27021811882, + 48.8911102203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "403b5061708a561a410f93f318c74d672fe1fbb3", + "fields": { + "code_commune_insee": "50338", + "nom_de_la_commune": "MONTBRAY", + "code_postal": "50410", + "coordonnees_gps": [ + 48.8830810349, + -1.10930704314 + ], + "libelle_d_acheminement": "MONTBRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10930704314, + 48.8830810349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "641c60d41c1a701333874428c0f4e5a0264fbbb6", + "fields": { + "code_commune_insee": "50352", + "nom_de_la_commune": "MONTREUIL SUR LOZON", + "code_postal": "50570", + "coordonnees_gps": [ + 49.1333974057, + -1.24331405559 + ], + "libelle_d_acheminement": "MONTREUIL SUR LOZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24331405559, + 49.1333974057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aafae0b1802939ff4fbc379c9a4a9c696f508bb", + "fields": { + "code_commune_insee": "50353", + "nom_de_la_commune": "LE MONT ST MICHEL", + "code_postal": "50170", + "coordonnees_gps": [ + 48.6222106276, + -1.53309065436 + ], + "libelle_d_acheminement": "LE MONT ST MICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53309065436, + 48.6222106276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "810a0a7bda3f4faa59b0f7e5782f54844bf94b8a", + "fields": { + "code_commune_insee": "50365", + "nom_de_la_commune": "MUNEVILLE SUR MER", + "code_postal": "50290", + "coordonnees_gps": [ + 48.9364819167, + -1.48702600548 + ], + "libelle_d_acheminement": "MUNEVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48702600548, + 48.9364819167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31f25adc3207bcef58bdd92e97949c7f9d1ea985", + "fields": { + "code_commune_insee": "50378", + "nom_de_la_commune": "NOTRE DAME DE CENILLY", + "code_postal": "50210", + "coordonnees_gps": [ + 48.9982461228, + -1.25757304935 + ], + "libelle_d_acheminement": "NOTRE DAME DE CENILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25757304935, + 48.9982461228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e71730213d3c4fa3c130a6a886ca344d934a7044", + "fields": { + "code_commune_insee": "50382", + "nom_de_la_commune": "NOUAINVILLE", + "code_postal": "50690", + "coordonnees_gps": [ + 49.6200133969, + -1.68096572433 + ], + "libelle_d_acheminement": "NOUAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68096572433, + 49.6200133969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54d4eeebf6ef04123a681168e17195a23a6d733a", + "fields": { + "ligne_5": "MONTCHATON", + "code_commune_insee": "50388", + "libelle_d_acheminement": "ORVAL SUR SIENNE", + "code_postal": "50660", + "nom_de_la_commune": "ORVAL SUR SIENNE", + "coordonnees_gps": [ + 49.0114256149, + -1.46437538722 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46437538722, + 49.0114256149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bea15b56703d2fa26058fea4d1c2992ecd9582d8", + "fields": { + "ligne_5": "CHEVREVILLE", + "code_commune_insee": "50391", + "libelle_d_acheminement": "GRANDPARIGNY", + "code_postal": "50600", + "nom_de_la_commune": "GRANDPARIGNY", + "coordonnees_gps": [ + 48.5937472635, + -1.08234718807 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08234718807, + 48.5937472635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27c5520d2766166f6e8e523caddf0296fee2ca67", + "fields": { + "ligne_5": "MILLY", + "code_commune_insee": "50391", + "libelle_d_acheminement": "GRANDPARIGNY", + "code_postal": "50600", + "nom_de_la_commune": "GRANDPARIGNY", + "coordonnees_gps": [ + 48.5937472635, + -1.08234718807 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08234718807, + 48.5937472635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b0e9a39b04a1fa71a4fa76b6eed547cfdf6a73c", + "fields": { + "code_commune_insee": "50395", + "nom_de_la_commune": "LA PERNELLE", + "code_postal": "50630", + "coordonnees_gps": [ + 49.6131883307, + -1.30916407089 + ], + "libelle_d_acheminement": "LA PERNELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30916407089, + 49.6131883307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd2e71b542d1a3ee7317d92a9de91446dfd8a5fb", + "fields": { + "code_commune_insee": "50397", + "nom_de_la_commune": "PERRIERS EN BEAUFICEL", + "code_postal": "50150", + "coordonnees_gps": [ + 48.7361688634, + -0.999617410349 + ], + "libelle_d_acheminement": "PERRIERS EN BEAUFICEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.999617410349, + 48.7361688634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1166f298eb680c79a13e18de4ad4a4ef9b941240", + "fields": { + "code_commune_insee": "50399", + "nom_de_la_commune": "LE PETIT CELLAND", + "code_postal": "50370", + "coordonnees_gps": [ + 48.6976542457, + -1.21523678819 + ], + "libelle_d_acheminement": "LE PETIT CELLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21523678819, + 48.6976542457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d06013aeb632cca91832cbe7469a9046e1910a1", + "fields": { + "code_commune_insee": "50403", + "nom_de_la_commune": "PIROU", + "code_postal": "50770", + "coordonnees_gps": [ + 49.1646654807, + -1.55903985715 + ], + "libelle_d_acheminement": "PIROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55903985715, + 49.1646654807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39cb006899bd5dbe2d1e13db14df1e3ce82e7969", + "fields": { + "code_commune_insee": "50408", + "nom_de_la_commune": "PONTAUBAULT", + "code_postal": "50220", + "coordonnees_gps": [ + 48.6249468178, + -1.35394926962 + ], + "libelle_d_acheminement": "PONTAUBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35394926962, + 48.6249468178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e45224f13ec855da7fd2583da4407385af4433cc", + "fields": { + "ligne_5": "MOIDREY", + "code_commune_insee": "50410", + "libelle_d_acheminement": "PONTORSON", + "code_postal": "50170", + "nom_de_la_commune": "PONTORSON", + "coordonnees_gps": [ + 48.5689721753, + -1.48653363271 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48653363271, + 48.5689721753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fd16dd2efcefb73119a3e476b3059d98037dac0", + "fields": { + "ligne_5": "DENNEVILLE", + "code_commune_insee": "50412", + "libelle_d_acheminement": "PORT BAIL SUR MER", + "code_postal": "50580", + "nom_de_la_commune": "PORT BAIL SUR MER", + "coordonnees_gps": [ + 49.3520385149, + -1.69541641793 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69541641793, + 49.3520385149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1154c3a37471a9c16b89aff573e64c8ebe4f2192", + "fields": { + "code_commune_insee": "50419", + "nom_de_la_commune": "QUETTREVILLE SUR SIENNE", + "code_postal": "50660", + "coordonnees_gps": [ + 48.9618413224, + -1.46914956989 + ], + "libelle_d_acheminement": "QUETTREVILLE SUR SIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46914956989, + 48.9618413224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "172a60dd1c718d44dd2917cbb3c3d359f40223e0", + "fields": { + "code_commune_insee": "50422", + "nom_de_la_commune": "RAIDS", + "code_postal": "50500", + "coordonnees_gps": [ + 49.2079341726, + -1.34553076662 + ], + "libelle_d_acheminement": "RAIDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34553076662, + 49.2079341726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "488e24fe2f1571d17b0cb9efb5c5021e10c86b70", + "fields": { + "code_commune_insee": "50423", + "nom_de_la_commune": "RAMPAN", + "code_postal": "50000", + "coordonnees_gps": [ + 49.1464510934, + -1.13114695392 + ], + "libelle_d_acheminement": "RAMPAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13114695392, + 49.1464510934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b97f725758bae2b3fb83d3ffdd27744bc0ba7101", + "fields": { + "code_commune_insee": "50429", + "nom_de_la_commune": "REGNEVILLE SUR MER", + "code_postal": "50590", + "coordonnees_gps": [ + 49.0157487171, + -1.53843430747 + ], + "libelle_d_acheminement": "REGNEVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53843430747, + 49.0157487171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a447fd68d04079d3093e178438b2ad23648fec08", + "fields": { + "ligne_5": "FONTENAY", + "code_commune_insee": "50436", + "libelle_d_acheminement": "ROMAGNY FONTENAY", + "code_postal": "50140", + "nom_de_la_commune": "ROMAGNY FONTENAY", + "coordonnees_gps": [ + 48.6374333349, + -0.98072243352 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98072243352, + 48.6374333349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "808e42d5a79d61c6a0aaa50d03af7487433ab752", + "fields": { + "code_commune_insee": "50443", + "nom_de_la_commune": "SACEY", + "code_postal": "50170", + "coordonnees_gps": [ + 48.4995771205, + -1.4595082329 + ], + "libelle_d_acheminement": "SACEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4595082329, + 48.4995771205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "530db8cb30126f43f0a47840e8e5b5381a881075", + "fields": { + "ligne_5": "ST SYMPHORIEN LES BUTTES", + "code_commune_insee": "50444", + "libelle_d_acheminement": "ST AMAND VILLAGES", + "code_postal": "50160", + "nom_de_la_commune": "ST AMAND VILLAGES", + "coordonnees_gps": [ + 49.0444946813, + -0.948478098898 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.948478098898, + 49.0444946813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d17f84d1833365677e5b20d524526687ac2b2242", + "fields": { + "code_commune_insee": "50450", + "nom_de_la_commune": "ST BARTHELEMY", + "code_postal": "50140", + "coordonnees_gps": [ + 48.6842500413, + -0.950654669015 + ], + "libelle_d_acheminement": "ST BARTHELEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.950654669015, + 48.6842500413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1f79e801323e80af2a73a0b480013e6789eaff4", + "fields": { + "code_commune_insee": "50452", + "nom_de_la_commune": "ST BRICE DE LANDELLES", + "code_postal": "50730", + "coordonnees_gps": [ + 48.5412096046, + -1.13243584408 + ], + "libelle_d_acheminement": "ST BRICE DE LANDELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13243584408, + 48.5412096046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eda74992b25799997238fc3bf00f9041e7b5cf1", + "fields": { + "code_commune_insee": "50456", + "nom_de_la_commune": "ST CLEMENT RANCOUDRAY", + "code_postal": "50140", + "coordonnees_gps": [ + 48.6689629346, + -0.890384424865 + ], + "libelle_d_acheminement": "ST CLEMENT RANCOUDRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.890384424865, + 48.6689629346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7c0dbc30701b1ef2ee4f32686021ff12c6de4bb", + "fields": { + "code_commune_insee": "50475", + "nom_de_la_commune": "ST GEORGES MONTCOCQ", + "code_postal": "50000", + "coordonnees_gps": [ + 49.1351168575, + -1.10954006058 + ], + "libelle_d_acheminement": "ST GEORGES MONTCOCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10954006058, + 49.1351168575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0fbff8a8b69c04a546f0869856df438c9ab758e", + "fields": { + "code_commune_insee": "50480", + "nom_de_la_commune": "ST GERMAIN LE GAILLARD", + "code_postal": "50340", + "coordonnees_gps": [ + 49.4890990838, + -1.77283879309 + ], + "libelle_d_acheminement": "ST GERMAIN LE GAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77283879309, + 49.4890990838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31ffbfe17f826035b725cb19a1e2656080322a0f", + "fields": { + "code_commune_insee": "50481", + "nom_de_la_commune": "ST GERMAIN SUR AY", + "code_postal": "50430", + "coordonnees_gps": [ + 49.2376498334, + -1.60885612868 + ], + "libelle_d_acheminement": "ST GERMAIN SUR AY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60885612868, + 49.2376498334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a69810708508d776887b8ffd7e4d5583b5e6482b", + "fields": { + "code_commune_insee": "50482", + "nom_de_la_commune": "ST GERMAIN SUR SEVES", + "code_postal": "50190", + "coordonnees_gps": [ + 49.2200351465, + -1.37670798974 + ], + "libelle_d_acheminement": "ST GERMAIN SUR SEVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37670798974, + 49.2200351465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84d70b4130efe57abe6d3a972aca90b10fba113c", + "fields": { + "code_commune_insee": "50487", + "nom_de_la_commune": "ST JAMES", + "code_postal": "50240", + "coordonnees_gps": [ + 48.5257483373, + -1.32634914406 + ], + "libelle_d_acheminement": "ST JAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32634914406, + 48.5257483373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d48595d911a690f235d3e008e85dff4be0234609", + "fields": { + "ligne_5": "VILLIERS LE PRE", + "code_commune_insee": "50487", + "libelle_d_acheminement": "ST JAMES", + "code_postal": "50240", + "nom_de_la_commune": "ST JAMES", + "coordonnees_gps": [ + 48.5257483373, + -1.32634914406 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32634914406, + 48.5257483373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c42b7f46421926281fd21a2f35229998f339ae3", + "fields": { + "code_commune_insee": "50490", + "nom_de_la_commune": "ST JEAN DE LA RIVIERE", + "code_postal": "50270", + "coordonnees_gps": [ + 49.3687683933, + -1.73964743222 + ], + "libelle_d_acheminement": "ST JEAN DE LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73964743222, + 49.3687683933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34d21a3633369ca2ec956b7ca8be827bbe6813e9", + "fields": { + "code_commune_insee": "50491", + "nom_de_la_commune": "ST JEAN DE SAVIGNY", + "code_postal": "50680", + "coordonnees_gps": [ + 49.1886831817, + -1.00370068666 + ], + "libelle_d_acheminement": "ST JEAN DE SAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00370068666, + 49.1886831817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef3f593d84a6720dba716c2eccd2fbcb41df6fd2", + "fields": { + "ligne_5": "PRECORBIN", + "code_commune_insee": "50492", + "libelle_d_acheminement": "ST JEAN D ELLE", + "code_postal": "50810", + "nom_de_la_commune": "ST JEAN D ELLE", + "coordonnees_gps": [ + 49.0936069017, + -0.991213654539 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.991213654539, + 49.0936069017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "114f11ec5c24a6d6496c0bdf5e78b50cd78bf0f2", + "fields": { + "ligne_5": "VIDOUVILLE", + "code_commune_insee": "50492", + "libelle_d_acheminement": "ST JEAN D ELLE", + "code_postal": "50810", + "nom_de_la_commune": "ST JEAN D ELLE", + "coordonnees_gps": [ + 49.0936069017, + -0.991213654539 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.991213654539, + 49.0936069017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a363044587b564344497c10a33c6b166660bae2", + "fields": { + "ligne_5": "ST URSIN", + "code_commune_insee": "50493", + "libelle_d_acheminement": "ST JEAN DES CHAMPS", + "code_postal": "50320", + "nom_de_la_commune": "ST JEAN DES CHAMPS", + "coordonnees_gps": [ + 48.8240464448, + -1.46346833183 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46346833183, + 48.8240464448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f3be1ef883abd5029842d8f81d7526cc84d1a6d", + "fields": { + "code_commune_insee": "50509", + "nom_de_la_commune": "STE MARIE DU MONT", + "code_postal": "50480", + "coordonnees_gps": [ + 49.395071265, + -1.20388843834 + ], + "libelle_d_acheminement": "STE MARIE DU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20388843834, + 49.395071265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c4a39f212d7e0dbacf9534e7416349e04f9d4ae", + "fields": { + "code_commune_insee": "50518", + "nom_de_la_commune": "ST MARTIN LE BOUILLANT", + "code_postal": "50800", + "coordonnees_gps": [ + 48.7800336062, + -1.15914723791 + ], + "libelle_d_acheminement": "ST MARTIN LE BOUILLANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15914723791, + 48.7800336062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e145a5f69d4e50e5d3397486c32d08fae1d836b9", + "fields": { + "code_commune_insee": "50519", + "nom_de_la_commune": "ST MARTIN LE GREARD", + "code_postal": "50690", + "coordonnees_gps": [ + 49.5531033144, + -1.64677361322 + ], + "libelle_d_acheminement": "ST MARTIN LE GREARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64677361322, + 49.5531033144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4534142868a7ece746d86632237d60c113960b9d", + "fields": { + "ligne_5": "CARQUEBUT", + "code_commune_insee": "50523", + "libelle_d_acheminement": "STE MERE EGLISE", + "code_postal": "50480", + "nom_de_la_commune": "STE MERE EGLISE", + "coordonnees_gps": [ + 49.4088606097, + -1.32366056657 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32366056657, + 49.4088606097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec425d2b329250161472bcb3c6571d0186be7a1a", + "fields": { + "ligne_5": "ECOQUENEAUVILLE", + "code_commune_insee": "50523", + "libelle_d_acheminement": "STE MERE EGLISE", + "code_postal": "50480", + "nom_de_la_commune": "STE MERE EGLISE", + "coordonnees_gps": [ + 49.4088606097, + -1.32366056657 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32366056657, + 49.4088606097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "282a3f2b541a74e87083420b7c7c3c21c1f6d6b7", + "fields": { + "code_commune_insee": "50533", + "nom_de_la_commune": "ST PATRICE DE CLAIDS", + "code_postal": "50190", + "coordonnees_gps": [ + 49.2275614672, + -1.44033380334 + ], + "libelle_d_acheminement": "ST PATRICE DE CLAIDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44033380334, + 49.2275614672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7332466c4cc8ce0d01e4d6660a5efa2ae8a3fbd8", + "fields": { + "ligne_5": "BRAFFAIS", + "code_commune_insee": "50535", + "libelle_d_acheminement": "LE PARC", + "code_postal": "50870", + "nom_de_la_commune": "LE PARC", + "coordonnees_gps": [ + 48.7713169182, + -1.29851023982 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29851023982, + 48.7713169182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f1bc04fa5bb163646f8635feb44389ccde4c18f", + "fields": { + "code_commune_insee": "50536", + "nom_de_la_commune": "ST PIERRE D ARTHEGLISE", + "code_postal": "50270", + "coordonnees_gps": [ + 49.4173651602, + -1.68504770752 + ], + "libelle_d_acheminement": "ST PIERRE D ARTHEGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68504770752, + 49.4173651602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ee60ddaad61de11ed028baa2b4c9b0b10571d0b", + "fields": { + "code_commune_insee": "50539", + "nom_de_la_commune": "ST PIERRE EGLISE", + "code_postal": "50330", + "coordonnees_gps": [ + 49.669715545, + -1.39807682939 + ], + "libelle_d_acheminement": "ST PIERRE EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39807682939, + 49.669715545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b079b6a43fee0644c2b939f71d6bbb360742b87", + "fields": { + "code_commune_insee": "50541", + "nom_de_la_commune": "ST PLANCHERS", + "code_postal": "50400", + "coordonnees_gps": [ + 48.8308849826, + -1.50561914851 + ], + "libelle_d_acheminement": "ST PLANCHERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50561914851, + 48.8308849826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a88c59b15ce2d41687932d5b7b7b7379a125a5c", + "fields": { + "ligne_5": "ANCTEVILLE", + "code_commune_insee": "50550", + "libelle_d_acheminement": "ST SAUVEUR VILLAGES", + "code_postal": "50200", + "nom_de_la_commune": "ST SAUVEUR VILLAGES", + "coordonnees_gps": [ + 49.1238164508, + -1.40639536649 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40639536649, + 49.1238164508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "533c078b032014efd2b03a2d2fe98ebd28503790", + "fields": { + "code_commune_insee": "50552", + "nom_de_la_commune": "ST SEBASTIEN DE RAIDS", + "code_postal": "50190", + "coordonnees_gps": [ + 49.1953005849, + -1.37598924689 + ], + "libelle_d_acheminement": "ST SEBASTIEN DE RAIDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37598924689, + 49.1953005849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "035a886641837cca3b9b6b1849e9bc28732ffa72", + "fields": { + "ligne_5": "ILE TATIHOU", + "code_commune_insee": "50562", + "libelle_d_acheminement": "ST VAAST LA HOUGUE", + "code_postal": "50550", + "nom_de_la_commune": "ST VAAST LA HOUGUE", + "coordonnees_gps": [ + 49.5993508281, + -1.27306891683 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27306891683, + 49.5993508281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aecfadbb493a7dd099198f79e3db3b62df00753", + "fields": { + "ligne_5": "ST GEORGES DE BOHON", + "code_commune_insee": "50564", + "libelle_d_acheminement": "TERRE ET MARAIS", + "code_postal": "50500", + "nom_de_la_commune": "TERRE ET MARAIS", + "coordonnees_gps": [ + 49.2439040053, + -1.32743807676 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32743807676, + 49.2439040053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7706b7528323688f7e942e818b8704a02e0b5e80", + "fields": { + "ligne_5": "SARTILLY", + "code_commune_insee": "50565", + "libelle_d_acheminement": "SARTILLY BAIE BOCAGE", + "code_postal": "50530", + "nom_de_la_commune": "SARTILLY BAIE BOCAGE", + "coordonnees_gps": [ + 48.7540217735, + -1.46351733597 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46351733597, + 48.7540217735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6efae3c8139ed14c113be8e0c9b21b23f9b3efa", + "fields": { + "code_commune_insee": "50577", + "nom_de_la_commune": "SORTOSVILLE EN BEAUMONT", + "code_postal": "50270", + "coordonnees_gps": [ + 49.4245013285, + -1.7097121823 + ], + "libelle_d_acheminement": "SORTOSVILLE EN BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.7097121823, + 49.4245013285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b40ba4a75fd70ba1527ab97c429e4e77fe5bb276", + "fields": { + "code_commune_insee": "50585", + "nom_de_la_commune": "SURTAINVILLE", + "code_postal": "50270", + "coordonnees_gps": [ + 49.4529583495, + -1.79283782284 + ], + "libelle_d_acheminement": "SURTAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79283782284, + 49.4529583495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb6e3dfb5747d901c3675c10f2e0adb67daf6a40", + "fields": { + "code_commune_insee": "50588", + "nom_de_la_commune": "TAMERVILLE", + "code_postal": "50700", + "coordonnees_gps": [ + 49.5419972354, + -1.46098146273 + ], + "libelle_d_acheminement": "TAMERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46098146273, + 49.5419972354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "115e3c9503c8cc3e7a3c359786a2e6932d19803d", + "fields": { + "code_commune_insee": "50589", + "nom_de_la_commune": "TANIS", + "code_postal": "50170", + "coordonnees_gps": [ + 48.5847136068, + -1.44326167489 + ], + "libelle_d_acheminement": "TANIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44326167489, + 48.5847136068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "054455271d2358aad81bc3290e88c31ed3b9e534", + "fields": { + "ligne_5": "FERRIERES", + "code_commune_insee": "50591", + "libelle_d_acheminement": "LE TEILLEUL", + "code_postal": "50640", + "nom_de_la_commune": "LE TEILLEUL", + "coordonnees_gps": [ + 48.5412543067, + -0.878410989848 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.878410989848, + 48.5412543067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d9c7543ea93adb48b8e0b9efad25976668e55cb", + "fields": { + "ligne_5": "BRECTOUVILLE", + "code_commune_insee": "50601", + "libelle_d_acheminement": "TORIGNY LES VILLES", + "code_postal": "50160", + "nom_de_la_commune": "TORIGNY LES VILLES", + "coordonnees_gps": [ + 49.0319879145, + -0.982814708617 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.982814708617, + 49.0319879145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e48f69383d04f429c689285ad327422ffda16628", + "fields": { + "ligne_5": "GIEVILLE", + "code_commune_insee": "50601", + "libelle_d_acheminement": "TORIGNY LES VILLES", + "code_postal": "50160", + "nom_de_la_commune": "TORIGNY LES VILLES", + "coordonnees_gps": [ + 49.0319879145, + -0.982814708617 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.982814708617, + 49.0319879145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab4a75dcad3d4385852fa8a7b7923daec99c1310", + "fields": { + "code_commune_insee": "50624", + "nom_de_la_commune": "LA VENDELEE", + "code_postal": "50200", + "coordonnees_gps": [ + 49.0833532845, + -1.45799644929 + ], + "libelle_d_acheminement": "LA VENDELEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45799644929, + 49.0833532845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daea0ae7468089f9a817b7992cf1f2180d91767c", + "fields": { + "code_commune_insee": "50637", + "nom_de_la_commune": "VILLEBAUDON", + "code_postal": "50410", + "coordonnees_gps": [ + 48.9649649634, + -1.17120753687 + ], + "libelle_d_acheminement": "VILLEBAUDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17120753687, + 48.9649649634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "295d3b98c3d3b59fc18bd2e1ad7d515560968590", + "fields": { + "ligne_5": "ROUFFIGNY", + "code_commune_insee": "50639", + "libelle_d_acheminement": "VILLEDIEU LES POELES ROUFFIGNY", + "code_postal": "50800", + "nom_de_la_commune": "VILLEDIEU LES POELES ROUFFIGNY", + "coordonnees_gps": [ + 48.8344159273, + -1.22248057231 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22248057231, + 48.8344159273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfcc089fe7f69c9cb684530208db6d0d0743d2c9", + "fields": { + "code_commune_insee": "51012", + "nom_de_la_commune": "ANTHENAY", + "code_postal": "51700", + "coordonnees_gps": [ + 49.1391972334, + 3.73533803847 + ], + "libelle_d_acheminement": "ANTHENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73533803847, + 49.1391972334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8e6dfb236d45258a2f7d59268a1a9823ccb61cb", + "fields": { + "code_commune_insee": "51015", + "nom_de_la_commune": "ARGERS", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0667880865, + 4.85773458093 + ], + "libelle_d_acheminement": "ARGERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85773458093, + 49.0667880865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "783bc34fa409a119258291106f1e03fb85370121", + "fields": { + "code_commune_insee": "51016", + "nom_de_la_commune": "ARRIGNY", + "code_postal": "51290", + "coordonnees_gps": [ + 48.6073640595, + 4.69474482412 + ], + "libelle_d_acheminement": "ARRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69474482412, + 48.6073640595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82bb7e763713598db1195fff90fcef21c5327440", + "fields": { + "code_commune_insee": "51041", + "nom_de_la_commune": "BAUDEMENT", + "code_postal": "51260", + "coordonnees_gps": [ + 48.5786840356, + 3.76817010802 + ], + "libelle_d_acheminement": "BAUDEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76817010802, + 48.5786840356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a363f50d00150087d178d643f02f0cdaf88c193", + "fields": { + "code_commune_insee": "51043", + "nom_de_la_commune": "BAZANCOURT", + "code_postal": "51110", + "coordonnees_gps": [ + 49.3701419632, + 4.17377871921 + ], + "libelle_d_acheminement": "BAZANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17377871921, + 49.3701419632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bcf7cacf1102b66e64a36edf60b8b5c3348665c", + "fields": { + "code_commune_insee": "51046", + "nom_de_la_commune": "BEINE NAUROY", + "code_postal": "51490", + "coordonnees_gps": [ + 49.2458158743, + 4.23851235844 + ], + "libelle_d_acheminement": "BEINE NAUROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23851235844, + 49.2458158743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "972703e8f42732452de27cf8a2ce31c18693aec2", + "fields": { + "code_commune_insee": "51049", + "nom_de_la_commune": "BERGERES LES VERTUS", + "code_postal": "51130", + "coordonnees_gps": [ + 48.8730736689, + 4.00812828777 + ], + "libelle_d_acheminement": "BERGERES LES VERTUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00812828777, + 48.8730736689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5ce3430801cc97ec0f348d10b8189d0d12caa14", + "fields": { + "code_commune_insee": "51052", + "nom_de_la_commune": "BERRU", + "code_postal": "51420", + "coordonnees_gps": [ + 49.2727412592, + 4.16300404161 + ], + "libelle_d_acheminement": "BERRU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16300404161, + 49.2727412592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cda3890109e71c6b953ccf76ca0e9eded37f016", + "fields": { + "code_commune_insee": "51055", + "nom_de_la_commune": "BETHENY", + "code_postal": "51450", + "coordonnees_gps": [ + 49.2956894813, + 4.06006294917 + ], + "libelle_d_acheminement": "BETHENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06006294917, + 49.2956894813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5ca9f00b975166b7a555f7f942b6b2e5ad6a95a", + "fields": { + "code_commune_insee": "51056", + "nom_de_la_commune": "BETHON", + "code_postal": "51260", + "coordonnees_gps": [ + 48.6143489927, + 3.61217905941 + ], + "libelle_d_acheminement": "BETHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61217905941, + 48.6143489927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff0307eb26b52c4f7ad2c79863e6385c9f2cde8e", + "fields": { + "code_commune_insee": "51069", + "nom_de_la_commune": "BLIGNY", + "code_postal": "51170", + "coordonnees_gps": [ + 49.1943978535, + 3.85996649455 + ], + "libelle_d_acheminement": "BLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85996649455, + 49.1943978535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f436e71a0c4bdb8d7511d35fa5eb80a770b2eb2", + "fields": { + "code_commune_insee": "51071", + "nom_de_la_commune": "BOUCHY ST GENEST", + "code_postal": "51310", + "coordonnees_gps": [ + 48.6567156677, + 3.48974064428 + ], + "libelle_d_acheminement": "BOUCHY ST GENEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48974064428, + 48.6567156677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e49794801ec9d8615274943127178eeb6158fa5", + "fields": { + "code_commune_insee": "51074", + "nom_de_la_commune": "BOULT SUR SUIPPE", + "code_postal": "51110", + "coordonnees_gps": [ + 49.3817578149, + 4.14116508461 + ], + "libelle_d_acheminement": "BOULT SUR SUIPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14116508461, + 49.3817578149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7ede5a0e9e4116fe78128edd2a99785b70d3722", + "fields": { + "code_commune_insee": "51086", + "nom_de_la_commune": "BREUIL SUR VESLE", + "code_postal": "51140", + "coordonnees_gps": [ + 49.3020182621, + 3.76628666849 + ], + "libelle_d_acheminement": "BREUIL SUR VESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76628666849, + 49.3020182621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99e7f56a2c8b46b003926f3956611a116cf0d576", + "fields": { + "code_commune_insee": "51091", + "nom_de_la_commune": "BROUSSY LE PETIT", + "code_postal": "51230", + "coordonnees_gps": [ + 48.7858869706, + 3.83244940433 + ], + "libelle_d_acheminement": "BROUSSY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83244940433, + 48.7858869706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fa0b0feffcb29a2607c956379002dd8d8d63348", + "fields": { + "code_commune_insee": "51100", + "nom_de_la_commune": "LA CAURE", + "code_postal": "51270", + "coordonnees_gps": [ + 48.9088413041, + 3.77651890135 + ], + "libelle_d_acheminement": "LA CAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77651890135, + 48.9088413041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee76396b4c6ca907121ce923454b09ea695cf44f", + "fields": { + "code_commune_insee": "51101", + "nom_de_la_commune": "CAUREL", + "code_postal": "51110", + "coordonnees_gps": [ + 49.3039168337, + 4.14507952597 + ], + "libelle_d_acheminement": "CAUREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14507952597, + 49.3039168337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50096e3367993fc5a0de603447fc09c20ac438d1", + "fields": { + "code_commune_insee": "51103", + "nom_de_la_commune": "LA CELLE SOUS CHANTEMERLE", + "code_postal": "51260", + "coordonnees_gps": [ + 48.6055592946, + 3.68625302626 + ], + "libelle_d_acheminement": "LA CELLE SOUS CHANTEMERLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68625302626, + 48.6055592946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ea9a1b815743830949502920ce4dd2d9f531f39", + "fields": { + "code_commune_insee": "51107", + "nom_de_la_commune": "CHAINTRIX BIERGES", + "code_postal": "51130", + "coordonnees_gps": [ + 48.8951439141, + 4.10313633097 + ], + "libelle_d_acheminement": "CHAINTRIX BIERGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10313633097, + 48.8951439141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d62ea9ef97d4cbb3af1c6986c74878ac1c38c7b", + "fields": { + "code_commune_insee": "51113", + "nom_de_la_commune": "CHAMPAUBERT", + "code_postal": "51270", + "coordonnees_gps": [ + 48.8878457413, + 3.76608740283 + ], + "libelle_d_acheminement": "CHAMPAUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76608740283, + 48.8878457413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b91f7e931cb781a81454040ff48bb719d800dfa", + "fields": { + "code_commune_insee": "51116", + "nom_de_la_commune": "CHAMPGUYON", + "code_postal": "51310", + "coordonnees_gps": [ + 48.7716937806, + 3.56404200625 + ], + "libelle_d_acheminement": "CHAMPGUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56404200625, + 48.7716937806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e827d9e551366b1ad77f49cf61222eabf6d212f9", + "fields": { + "code_commune_insee": "51126", + "nom_de_la_commune": "LA CHAPELLE FELCOURT", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0405394481, + 4.75534021192 + ], + "libelle_d_acheminement": "LA CHAPELLE FELCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75534021192, + 49.0405394481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d89773b8ee704d7a6387a283a1a04cb2f838a49", + "fields": { + "code_commune_insee": "51128", + "nom_de_la_commune": "LA CHAPELLE SOUS ORBAIS", + "code_postal": "51270", + "coordonnees_gps": [ + 48.9151526355, + 3.71933082114 + ], + "libelle_d_acheminement": "LA CHAPELLE SOUS ORBAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71933082114, + 48.9151526355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "409acdef1a326025e2f9211f5a80aa41dba08c4c", + "fields": { + "code_commune_insee": "51129", + "nom_de_la_commune": "CHARLEVILLE", + "code_postal": "51120", + "coordonnees_gps": [ + 48.8012203524, + 3.65820336577 + ], + "libelle_d_acheminement": "CHARLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65820336577, + 48.8012203524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83b65524d69a2fd06320bdc0505d7e1b4c9db51b", + "fields": { + "code_commune_insee": "51140", + "nom_de_la_commune": "CHAUMUZY", + "code_postal": "51170", + "coordonnees_gps": [ + 49.1596131119, + 3.86801749375 + ], + "libelle_d_acheminement": "CHAUMUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86801749375, + 49.1596131119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1b6c4dd0b8a8db3c4284ec905e596c9aad082b4", + "fields": { + "code_commune_insee": "51141", + "nom_de_la_commune": "LA CHAUSSEE SUR MARNE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8433156105, + 4.54286173009 + ], + "libelle_d_acheminement": "LA CHAUSSEE SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54286173009, + 48.8433156105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b5561754d2b43179f5077d16c51eb303b6b83c8", + "fields": { + "code_commune_insee": "51157", + "nom_de_la_commune": "COIZARD JOCHES", + "code_postal": "51270", + "coordonnees_gps": [ + 48.828738197, + 3.86398431629 + ], + "libelle_d_acheminement": "COIZARD JOCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86398431629, + 48.828738197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2075b5daec6f479ef5897f072c847192674d706", + "fields": { + "code_commune_insee": "51165", + "nom_de_la_commune": "CONNANTRE", + "code_postal": "51230", + "coordonnees_gps": [ + 48.7383348646, + 3.91196281487 + ], + "libelle_d_acheminement": "CONNANTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91196281487, + 48.7383348646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b514e2208bfffa645f96fb02baa94a3cb58a94d0", + "fields": { + "code_commune_insee": "51169", + "nom_de_la_commune": "CORBEIL", + "code_postal": "51320", + "coordonnees_gps": [ + 48.573704122, + 4.43585861027 + ], + "libelle_d_acheminement": "CORBEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43585861027, + 48.573704122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3451247af8e2e2a6bca80a1072a3ba3a36605ae9", + "fields": { + "code_commune_insee": "51172", + "nom_de_la_commune": "CORMONTREUIL", + "code_postal": "51350", + "coordonnees_gps": [ + 49.2171216768, + 4.05352954118 + ], + "libelle_d_acheminement": "CORMONTREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05352954118, + 49.2171216768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb7b98b7a55223bf746ccd959705d79f7a2aada9", + "fields": { + "code_commune_insee": "51184", + "nom_de_la_commune": "COURDEMANGES", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6799310548, + 4.50944976193 + ], + "libelle_d_acheminement": "COURDEMANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50944976193, + 48.6799310548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fac030aa8122589d1b5029865dbb228fd85c799", + "fields": { + "code_commune_insee": "51185", + "nom_de_la_commune": "COURGIVAUX", + "code_postal": "51310", + "coordonnees_gps": [ + 48.7130437686, + 3.49067370796 + ], + "libelle_d_acheminement": "COURGIVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49067370796, + 48.7130437686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05ef4d1967a17b80c2aabbcef14a1aad8181d56e", + "fields": { + "code_commune_insee": "51190", + "nom_de_la_commune": "COURTAGNON", + "code_postal": "51480", + "coordonnees_gps": [ + 49.1443836828, + 3.94593690729 + ], + "libelle_d_acheminement": "COURTAGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94593690729, + 49.1443836828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "899e91ecf93c098a2b3ccd23b436f63b19f27653", + "fields": { + "code_commune_insee": "51193", + "nom_de_la_commune": "COURTISOLS", + "code_postal": "51460", + "coordonnees_gps": [ + 48.9772975479, + 4.51921227291 + ], + "libelle_d_acheminement": "COURTISOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51921227291, + 48.9772975479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b044a3a535c7fbe2a6cee3a699458f3990cfca1b", + "fields": { + "code_commune_insee": "51196", + "nom_de_la_commune": "CRAMANT", + "code_postal": "51530", + "coordonnees_gps": [ + 48.9875700234, + 4.00091885006 + ], + "libelle_d_acheminement": "CRAMANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00091885006, + 48.9875700234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0f687a20c7ced3395b263a835f7ce602eb1405f", + "fields": { + "code_commune_insee": "51201", + "nom_de_la_commune": "CUISLES", + "code_postal": "51700", + "coordonnees_gps": [ + 49.1303077225, + 3.77691947684 + ], + "libelle_d_acheminement": "CUISLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77691947684, + 49.1303077225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f72a7bf1cec6846ba1fdac96745fdd256493526", + "fields": { + "code_commune_insee": "51203", + "nom_de_la_commune": "CUPERLY", + "code_postal": "51400", + "coordonnees_gps": [ + 49.0645166138, + 4.44810543218 + ], + "libelle_d_acheminement": "CUPERLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44810543218, + 49.0645166138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50e97f4ce6893a25da90326e38e7404a0e817dcc", + "fields": { + "code_commune_insee": "51208", + "nom_de_la_commune": "DAMPIERRE SUR MOIVRE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8796364329, + 4.57485707749 + ], + "libelle_d_acheminement": "DAMPIERRE SUR MOIVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57485707749, + 48.8796364329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23302ae6033e95d6db417b697f52c728c7713750", + "fields": { + "code_commune_insee": "51212", + "nom_de_la_commune": "DOMMARTIN LETTREE", + "code_postal": "51320", + "coordonnees_gps": [ + 48.771366093, + 4.28578540294 + ], + "libelle_d_acheminement": "DOMMARTIN LETTREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28578540294, + 48.771366093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78a45a63623186e4cb5810079b7bb7fd22c4b3a1", + "fields": { + "code_commune_insee": "51213", + "nom_de_la_commune": "DOMMARTIN SOUS HANS", + "code_postal": "51800", + "coordonnees_gps": [ + 49.12412458, + 4.7940542532 + ], + "libelle_d_acheminement": "DOMMARTIN SOUS HANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7940542532, + 49.12412458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5d202a47a0521b960d9cdf79074f6ef985d3af4", + "fields": { + "code_commune_insee": "51225", + "nom_de_la_commune": "ECUEIL", + "code_postal": "51500", + "coordonnees_gps": [ + 49.1815231826, + 3.95026646636 + ], + "libelle_d_acheminement": "ECUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95026646636, + 49.1815231826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06fba70fea5596b5d9b0cadc83c7cc700e700c9b", + "fields": { + "code_commune_insee": "51231", + "nom_de_la_commune": "L EPINE", + "code_postal": "51460", + "coordonnees_gps": [ + 48.9939672818, + 4.44934691033 + ], + "libelle_d_acheminement": "L EPINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44934691033, + 48.9939672818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ea9912d966e707a3c8fbbdaa563eb7129ca7f4f", + "fields": { + "code_commune_insee": "51237", + "nom_de_la_commune": "ESTERNAY", + "code_postal": "51310", + "coordonnees_gps": [ + 48.7264632721, + 3.57621013369 + ], + "libelle_d_acheminement": "ESTERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57621013369, + 48.7264632721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9c8170b07afc455d463ae65dde0bdccd37b4442", + "fields": { + "ligne_5": "FONTAINE SUR COOLE", + "code_commune_insee": "51244", + "libelle_d_acheminement": "FAUX VESIGNEUL", + "code_postal": "51320", + "nom_de_la_commune": "FAUX VESIGNEUL", + "coordonnees_gps": [ + 48.7824659739, + 4.37941197112 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37941197112, + 48.7824659739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20b0775c89d31f248ee40e6756a08bd03ac6148e", + "fields": { + "code_commune_insee": "51246", + "nom_de_la_commune": "FAVRESSE", + "code_postal": "51300", + "coordonnees_gps": [ + 48.719129687, + 4.71728407757 + ], + "libelle_d_acheminement": "FAVRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71728407757, + 48.719129687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dda44ab97239e457b1ecb044375191d3f75e6602", + "fields": { + "code_commune_insee": "51247", + "nom_de_la_commune": "FEREBRIANGES", + "code_postal": "51270", + "coordonnees_gps": [ + 48.8711384032, + 3.8404842316 + ], + "libelle_d_acheminement": "FEREBRIANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8404842316, + 48.8711384032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8315fe9871e7eb1991e74c4369ca6a8fe0a298ea", + "fields": { + "code_commune_insee": "51259", + "nom_de_la_commune": "FRANCHEVILLE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8786491229, + 4.54064901103 + ], + "libelle_d_acheminement": "FRANCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54064901103, + 48.8786491229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e3729446990df67da64450812f422e7b5c0b95d", + "fields": { + "code_commune_insee": "51273", + "nom_de_la_commune": "GIVRY LES LOISY", + "code_postal": "51130", + "coordonnees_gps": [ + 48.8924489876, + 3.91584386017 + ], + "libelle_d_acheminement": "GIVRY LES LOISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91584386017, + 48.8924489876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51953c8184ec08e45dac80c989512b43073b0605", + "fields": { + "code_commune_insee": "51281", + "nom_de_la_commune": "GRAUVES", + "code_postal": "51190", + "coordonnees_gps": [ + 48.9686001163, + 3.95992650372 + ], + "libelle_d_acheminement": "GRAUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95992650372, + 48.9686001163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0d2dc47448470b8931be6b10ddab80a68a7f4bf", + "fields": { + "code_commune_insee": "51286", + "nom_de_la_commune": "HAUTEVILLE", + "code_postal": "51290", + "coordonnees_gps": [ + 48.6354922599, + 4.77235476532 + ], + "libelle_d_acheminement": "HAUTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77235476532, + 48.6354922599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c1190c1a186fc6c9aa22567d1e9ff2decc934f0", + "fields": { + "code_commune_insee": "51287", + "nom_de_la_commune": "HAUTVILLERS", + "code_postal": "51160", + "coordonnees_gps": [ + 49.085558433, + 3.94419700261 + ], + "libelle_d_acheminement": "HAUTVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94419700261, + 49.085558433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98045f20399ce931040c574d9b95089e10d5f15e", + "fields": { + "code_commune_insee": "51288", + "nom_de_la_commune": "HEILTZ LE HUTIER", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6895232624, + 4.773330849 + ], + "libelle_d_acheminement": "HEILTZ LE HUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.773330849, + 48.6895232624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b05613d3041d146d4af99a4ccf67d2eb2992d8f", + "fields": { + "code_commune_insee": "51292", + "nom_de_la_commune": "HERPONT", + "code_postal": "51460", + "coordonnees_gps": [ + 48.9901236506, + 4.71862295964 + ], + "libelle_d_acheminement": "HERPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71862295964, + 48.9901236506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "519a6c5538f12251ce9d14c21c450881f7927d98", + "fields": { + "code_commune_insee": "51293", + "nom_de_la_commune": "HEUTREGIVILLE", + "code_postal": "51110", + "coordonnees_gps": [ + 49.3281543526, + 4.26735597834 + ], + "libelle_d_acheminement": "HEUTREGIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26735597834, + 49.3281543526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1603148cf5e5475720a1fbdbdbb746a3666f9fb3", + "fields": { + "code_commune_insee": "51296", + "nom_de_la_commune": "HUMBAUVILLE", + "code_postal": "51320", + "coordonnees_gps": [ + 48.6578881242, + 4.39725171693 + ], + "libelle_d_acheminement": "HUMBAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39725171693, + 48.6578881242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44ad762a0424540a2ff21c53a422403bf57d54d9", + "fields": { + "code_commune_insee": "51301", + "nom_de_la_commune": "ISSE", + "code_postal": "51150", + "coordonnees_gps": [ + 49.0697584759, + 4.21594077406 + ], + "libelle_d_acheminement": "ISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21594077406, + 49.0697584759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "473b7ded2cb6cb98c2a0ed08e1a8e4ad24e0fab6", + "fields": { + "code_commune_insee": "51302", + "nom_de_la_commune": "LES ISTRES ET BURY", + "code_postal": "51190", + "coordonnees_gps": [ + 48.9874290084, + 4.08707328889 + ], + "libelle_d_acheminement": "LES ISTRES ET BURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08707328889, + 48.9874290084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb0a0f83e62e6a287c4012f351d4bcba4e2c0e1a", + "fields": { + "code_commune_insee": "51304", + "nom_de_la_commune": "JANVILLIERS", + "code_postal": "51210", + "coordonnees_gps": [ + 48.8954151697, + 3.65818118533 + ], + "libelle_d_acheminement": "JANVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65818118533, + 48.8954151697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bddd0f630740ab60c620c0660ac149e4bf929fa", + "fields": { + "code_commune_insee": "51305", + "nom_de_la_commune": "JANVRY", + "code_postal": "51390", + "coordonnees_gps": [ + 49.2443068265, + 3.87748501301 + ], + "libelle_d_acheminement": "JANVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87748501301, + 49.2443068265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b23aafc6674498f4dc609c1a43596bdd0b716c9a", + "fields": { + "code_commune_insee": "51307", + "nom_de_la_commune": "JONCHERY SUR SUIPPE", + "code_postal": "51600", + "coordonnees_gps": [ + 49.1397315843, + 4.47372094597 + ], + "libelle_d_acheminement": "JONCHERY SUR SUIPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47372094597, + 49.1397315843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fb5fc2cff5986082ef73965acd4581a354efddc", + "fields": { + "code_commune_insee": "51308", + "nom_de_la_commune": "JONCHERY SUR VESLE", + "code_postal": "51140", + "coordonnees_gps": [ + 49.2860158121, + 3.81843506219 + ], + "libelle_d_acheminement": "JONCHERY SUR VESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81843506219, + 49.2860158121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44860e1d07c34e50f2529f18a18807d0679471d3", + "fields": { + "code_commune_insee": "51318", + "nom_de_la_commune": "LAVANNES", + "code_postal": "51110", + "coordonnees_gps": [ + 49.3106590076, + 4.18731846893 + ], + "libelle_d_acheminement": "LAVANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18731846893, + 49.3106590076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "944b21e06f97c8df362e1516e52ba1be52bf5769", + "fields": { + "code_commune_insee": "51321", + "nom_de_la_commune": "LHERY", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2084675481, + 3.76792527831 + ], + "libelle_d_acheminement": "LHERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76792527831, + 49.2084675481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec6b8606684a246243a843c271f70f35952b77f2", + "fields": { + "code_commune_insee": "51322", + "nom_de_la_commune": "LIGNON", + "code_postal": "51290", + "coordonnees_gps": [ + 48.5893337928, + 4.53111130718 + ], + "libelle_d_acheminement": "LIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53111130718, + 48.5893337928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf757caa02dc2636fe0da73f7f5e0220384b3b06", + "fields": { + "code_commune_insee": "51323", + "nom_de_la_commune": "LINTHELLES", + "code_postal": "51230", + "coordonnees_gps": [ + 48.7138896496, + 3.81792576197 + ], + "libelle_d_acheminement": "LINTHELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81792576197, + 48.7138896496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0b8a701815e8749d2b3fd768797306b861d1cc6", + "fields": { + "code_commune_insee": "51324", + "nom_de_la_commune": "LINTHES", + "code_postal": "51230", + "coordonnees_gps": [ + 48.7336444727, + 3.8560516976 + ], + "libelle_d_acheminement": "LINTHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8560516976, + 48.7336444727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c94d5d4b1f8946371a8515859075fa56a200e948", + "fields": { + "code_commune_insee": "51326", + "nom_de_la_commune": "LIVRY LOUVERCY", + "code_postal": "51400", + "coordonnees_gps": [ + 49.1058291749, + 4.31269707688 + ], + "libelle_d_acheminement": "LIVRY LOUVERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31269707688, + 49.1058291749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e142e71fc23bf1d9ea8ce9e203edbd60618a1bc", + "fields": { + "code_commune_insee": "51329", + "nom_de_la_commune": "LOIVRE", + "code_postal": "51220", + "coordonnees_gps": [ + 49.3456807799, + 3.9750851292 + ], + "libelle_d_acheminement": "LOIVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9750851292, + 49.3456807799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "049d8d610a5bb18b137e6af6026755298945ebff", + "fields": { + "code_commune_insee": "51341", + "nom_de_la_commune": "MALMY", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1805031948, + 4.81024077767 + ], + "libelle_d_acheminement": "MALMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81024077767, + 49.1805031948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5412cdd8f0b6de8da5869e6e7ae0311c8d57aa4e", + "fields": { + "ligne_5": "PORT A BINSON", + "code_commune_insee": "51346", + "libelle_d_acheminement": "MAREUIL LE PORT", + "code_postal": "51700", + "nom_de_la_commune": "MAREUIL LE PORT", + "coordonnees_gps": [ + 49.0737672387, + 3.74425898431 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74425898431, + 49.0737672387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aafccc25aab0f2f3509e4db350d11a60d544fa8", + "fields": { + "code_commune_insee": "51351", + "nom_de_la_commune": "MARIGNY", + "code_postal": "51230", + "coordonnees_gps": [ + 48.6620436629, + 3.84731315305 + ], + "libelle_d_acheminement": "MARIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84731315305, + 48.6620436629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01537a0ea076d25583a9092192cffc31bad7d2a7", + "fields": { + "code_commune_insee": "51354", + "nom_de_la_commune": "MARSON", + "code_postal": "51240", + "coordonnees_gps": [ + 48.9268661226, + 4.54293784179 + ], + "libelle_d_acheminement": "MARSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54293784179, + 48.9268661226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f56b6afb6a972bbd2b16f347b466e4d1a1afa50f", + "fields": { + "code_commune_insee": "51357", + "nom_de_la_commune": "MATOUGUES", + "code_postal": "51510", + "coordonnees_gps": [ + 48.9835136779, + 4.24385043922 + ], + "libelle_d_acheminement": "MATOUGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24385043922, + 48.9835136779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "408d0d833ba4234910af53dd9f9c66d02f88b2d7", + "fields": { + "code_commune_insee": "51360", + "nom_de_la_commune": "LE MEIX ST EPOING", + "code_postal": "51120", + "coordonnees_gps": [ + 48.69506554, + 3.65422262759 + ], + "libelle_d_acheminement": "LE MEIX ST EPOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65422262759, + 48.69506554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70167c84d5f8bd2c1deef3e569de19e38091b539", + "fields": { + "code_commune_insee": "51362", + "nom_de_la_commune": "MERFY", + "code_postal": "51220", + "coordonnees_gps": [ + 49.2888116759, + 3.95305290596 + ], + "libelle_d_acheminement": "MERFY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95305290596, + 49.2888116759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fc64b2dce6240d0cb09867cfb328dddb66c2909", + "fields": { + "code_commune_insee": "51365", + "nom_de_la_commune": "LES MESNEUX", + "code_postal": "51370", + "coordonnees_gps": [ + 49.2208240652, + 3.96116226522 + ], + "libelle_d_acheminement": "LES MESNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96116226522, + 49.2208240652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4b32a6b38def106182c7d0ef06e10c6b0e39fe2", + "fields": { + "code_commune_insee": "51371", + "nom_de_la_commune": "MOIVRE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.9411760455, + 4.67652027531 + ], + "libelle_d_acheminement": "MOIVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67652027531, + 48.9411760455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf82b0273447aa27375a2e769c786bced6796e86", + "fields": { + "code_commune_insee": "51372", + "nom_de_la_commune": "MONCETZ LONGEVAS", + "code_postal": "51470", + "coordonnees_gps": [ + 48.9179609776, + 4.44919991298 + ], + "libelle_d_acheminement": "MONCETZ LONGEVAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44919991298, + 48.9179609776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b95bfa9a80d37ff6dbb24a2e5168dba3b9aa0d7", + "fields": { + "code_commune_insee": "51376", + "nom_de_la_commune": "MONTGENOST", + "code_postal": "51260", + "coordonnees_gps": [ + 48.59915533, + 3.5935408562 + ], + "libelle_d_acheminement": "MONTGENOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5935408562, + 48.59915533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a16da1abfe39c3294f5fa1047a1f3dbbe47b58f", + "fields": { + "code_commune_insee": "51391", + "nom_de_la_commune": "MUIZON", + "code_postal": "51140", + "coordonnees_gps": [ + 49.2724383199, + 3.88749263388 + ], + "libelle_d_acheminement": "MUIZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88749263388, + 49.2724383199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b603f3dc4685564184268d31ed24edd838b509a", + "fields": { + "code_commune_insee": "51406", + "nom_de_la_commune": "NORROIS", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6718913156, + 4.62316728405 + ], + "libelle_d_acheminement": "NORROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62316728405, + 48.6718913156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9d39fdbacb0f44136d3d671b879757517bc9a9a", + "fields": { + "code_commune_insee": "51412", + "nom_de_la_commune": "OGNES", + "code_postal": "51230", + "coordonnees_gps": [ + 48.6955801098, + 3.90728218249 + ], + "libelle_d_acheminement": "OGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90728218249, + 48.6955801098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99a0f75030673a651746a81fb167c0f288a0b6f6", + "fields": { + "code_commune_insee": "51417", + "nom_de_la_commune": "ORCONTE", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6675882836, + 4.73795505965 + ], + "libelle_d_acheminement": "ORCONTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73795505965, + 48.6675882836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02af10bc0b63e8d06c51b56bc9dda221ae197acb", + "fields": { + "code_commune_insee": "51418", + "nom_de_la_commune": "ORMES", + "code_postal": "51370", + "coordonnees_gps": [ + 49.237845443, + 3.95766278556 + ], + "libelle_d_acheminement": "ORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95766278556, + 49.237845443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e86d8bc247db802751072d1e96c7e4050eb6eae3", + "fields": { + "code_commune_insee": "51423", + "nom_de_la_commune": "PARGNY SUR SAULX", + "code_postal": "51340", + "coordonnees_gps": [ + 48.7670730492, + 4.8547838716 + ], + "libelle_d_acheminement": "PARGNY SUR SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8547838716, + 48.7670730492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "034c9e475c73944313122f02b658d5b3e26bd754", + "fields": { + "code_commune_insee": "51424", + "nom_de_la_commune": "PASSAVANT EN ARGONNE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0220525824, + 5.00182082791 + ], + "libelle_d_acheminement": "PASSAVANT EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00182082791, + 49.0220525824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a791b4ec138f50dcd96668de97485070edfa97e8", + "fields": { + "code_commune_insee": "51436", + "nom_de_la_commune": "POGNY", + "code_postal": "51240", + "coordonnees_gps": [ + 48.867379244, + 4.49530006662 + ], + "libelle_d_acheminement": "POGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49530006662, + 48.867379244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ae251d052267727a8b869fc0dd1a5a0e456da3f", + "fields": { + "code_commune_insee": "51438", + "nom_de_la_commune": "POIX", + "code_postal": "51460", + "coordonnees_gps": [ + 48.9634947037, + 4.63289016459 + ], + "libelle_d_acheminement": "POIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63289016459, + 48.9634947037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58ad48459fc1d72ebff3a7fe8725fa36a9e9c375", + "fields": { + "code_commune_insee": "51439", + "nom_de_la_commune": "POMACLE", + "code_postal": "51110", + "coordonnees_gps": [ + 49.3365316045, + 4.14756415081 + ], + "libelle_d_acheminement": "POMACLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14756415081, + 49.3365316045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "403269e9c2e7c0c9a04b3df59c156a080f7c4d0c", + "fields": { + "code_commune_insee": "51441", + "nom_de_la_commune": "PONTHION", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7551656451, + 4.71748764846 + ], + "libelle_d_acheminement": "PONTHION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71748764846, + 48.7551656451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08a8501e00e925ff89832147a3e4702e574e7148", + "fields": { + "code_commune_insee": "51451", + "nom_de_la_commune": "QUEUDES", + "code_postal": "51120", + "coordonnees_gps": [ + 48.6591522739, + 3.75635488966 + ], + "libelle_d_acheminement": "QUEUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75635488966, + 48.6591522739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f9ee03557b4b8df4df853e0bdf676961a2a1ac5", + "fields": { + "code_commune_insee": "51465", + "nom_de_la_commune": "ROMERY", + "code_postal": "51480", + "coordonnees_gps": [ + 49.0965097553, + 3.91290546283 + ], + "libelle_d_acheminement": "ROMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91290546283, + 49.0965097553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88497ba28b878e3657f3e6949fc114c45604d3cc", + "fields": { + "code_commune_insee": "51475", + "nom_de_la_commune": "ST CHERON", + "code_postal": "51290", + "coordonnees_gps": [ + 48.6302468013, + 4.54637424501 + ], + "libelle_d_acheminement": "ST CHERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54637424501, + 48.6302468013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba1985ad8526ecafaadbcb8d1c1056a5a312baa5", + "fields": { + "code_commune_insee": "51476", + "nom_de_la_commune": "ST ETIENNE AU TEMPLE", + "code_postal": "51460", + "coordonnees_gps": [ + 49.0199669584, + 4.419049069 + ], + "libelle_d_acheminement": "ST ETIENNE AU TEMPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.419049069, + 49.0199669584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e70d501e66c7c3138029d6c6f2d1d7b9e68ba4d9", + "fields": { + "code_commune_insee": "51480", + "nom_de_la_commune": "STE GEMME", + "code_postal": "51700", + "coordonnees_gps": [ + 49.1449983194, + 3.66273959081 + ], + "libelle_d_acheminement": "STE GEMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66273959081, + 49.1449983194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18432a302de83c98e0208c8dc632f3cc6fac14c3", + "fields": { + "code_commune_insee": "51489", + "nom_de_la_commune": "ST JEAN DEVANT POSSESSE", + "code_postal": "51330", + "coordonnees_gps": [ + 48.8700176429, + 4.78622248501 + ], + "libelle_d_acheminement": "ST JEAN DEVANT POSSESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78622248501, + 48.8700176429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b65532705fab3bfc1dd177b9bf9d1526a8fa7913", + "fields": { + "code_commune_insee": "51501", + "nom_de_la_commune": "STE MARIE A PY", + "code_postal": "51600", + "coordonnees_gps": [ + 49.2393806185, + 4.50756056596 + ], + "libelle_d_acheminement": "STE MARIE A PY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50756056596, + 49.2393806185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c759814e9b9ccd196a91ff1879e8af5bcdcdf6b7", + "fields": { + "code_commune_insee": "51512", + "nom_de_la_commune": "ST QUENTIN SUR COOLE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8504241158, + 4.32661804133 + ], + "libelle_d_acheminement": "ST QUENTIN SUR COOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32661804133, + 48.8504241158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8329527695b4333b5400bc5708bc401111573998", + "fields": { + "code_commune_insee": "51522", + "nom_de_la_commune": "SAPIGNICOURT", + "code_postal": "52100", + "coordonnees_gps": [ + 48.6473946256, + 4.81229033603 + ], + "libelle_d_acheminement": "SAPIGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81229033603, + 48.6473946256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d44900b4c72699ad631684d17b3dc5470ae7ba5", + "fields": { + "code_commune_insee": "51523", + "nom_de_la_commune": "SARCY", + "code_postal": "51170", + "coordonnees_gps": [ + 49.202533594, + 3.83019199367 + ], + "libelle_d_acheminement": "SARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83019199367, + 49.202533594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c63919d6e12d8ab4955c77fa5f62346ea6044a3d", + "fields": { + "code_commune_insee": "51534", + "nom_de_la_commune": "SERZY ET PRIN", + "code_postal": "51170", + "coordonnees_gps": [ + 49.248503127, + 3.76445343326 + ], + "libelle_d_acheminement": "SERZY ET PRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76445343326, + 49.248503127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "356d81565a7f2c112d783b051739643f294be5ab", + "fields": { + "code_commune_insee": "51536", + "nom_de_la_commune": "SILLERY", + "code_postal": "51500", + "coordonnees_gps": [ + 49.1921396501, + 4.13941524041 + ], + "libelle_d_acheminement": "SILLERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13941524041, + 49.1921396501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d2c56ea5a90bf6e2005739110364d7d845d1932", + "fields": { + "code_commune_insee": "51537", + "nom_de_la_commune": "SIVRY ANTE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0014070263, + 4.89235907358 + ], + "libelle_d_acheminement": "SIVRY ANTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89235907358, + 49.0014070263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2b904277cf58ae4387f91baa729c85bcae0e9ad", + "fields": { + "code_commune_insee": "51543", + "nom_de_la_commune": "SOMME BIONNE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0883022983, + 4.71735582412 + ], + "libelle_d_acheminement": "SOMME BIONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71735582412, + 49.0883022983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e2c3f308f5ab3ca2241f090fa20e209737c1690", + "fields": { + "code_commune_insee": "51544", + "nom_de_la_commune": "SOMMEPY TAHURE", + "code_postal": "51600", + "coordonnees_gps": [ + 49.2432976782, + 4.59239324913 + ], + "libelle_d_acheminement": "SOMMEPY TAHURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59239324913, + 49.2432976782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c3ef00ae7fc326ce59dd5155d11e026330fdee5", + "fields": { + "code_commune_insee": "51545", + "nom_de_la_commune": "SOMMESOUS", + "code_postal": "51320", + "coordonnees_gps": [ + 48.7345322993, + 4.21304590146 + ], + "libelle_d_acheminement": "SOMMESOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21304590146, + 48.7345322993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f46076fb148d116c2f063c79872921f99cea7990", + "fields": { + "code_commune_insee": "51547", + "nom_de_la_commune": "SOMME TOURBE", + "code_postal": "51600", + "coordonnees_gps": [ + 49.0974715708, + 4.66026066798 + ], + "libelle_d_acheminement": "SOMME TOURBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66026066798, + 49.0974715708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70d4788e57df2b44f3e221732cc8b038b833fc5d", + "fields": { + "code_commune_insee": "51548", + "nom_de_la_commune": "SOMME VESLE", + "code_postal": "51460", + "coordonnees_gps": [ + 48.992390138, + 4.61434632836 + ], + "libelle_d_acheminement": "SOMME VESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61434632836, + 48.992390138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a6b11e764619908ef93aa75cc04d8b638b9c839", + "fields": { + "code_commune_insee": "51557", + "nom_de_la_commune": "SOULANGES", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7883824232, + 4.55512796769 + ], + "libelle_d_acheminement": "SOULANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55512796769, + 48.7883824232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81e20cda30c4abd5c539e202b14a76174ac713d0", + "fields": { + "code_commune_insee": "51566", + "nom_de_la_commune": "THIBIE", + "code_postal": "51510", + "coordonnees_gps": [ + 48.9177321416, + 4.21025087752 + ], + "libelle_d_acheminement": "THIBIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21025087752, + 48.9177321416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8ca5dc98966da148dfd62002461d7524cb759ce", + "fields": { + "code_commune_insee": "51570", + "nom_de_la_commune": "LE THOULT TROSNAY", + "code_postal": "51210", + "coordonnees_gps": [ + 48.8625433145, + 3.68421131138 + ], + "libelle_d_acheminement": "LE THOULT TROSNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68421131138, + 48.8625433145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60fbc9d09ee774993ee0de5e44e2d3f6c91ca9ed", + "fields": { + "code_commune_insee": "51572", + "nom_de_la_commune": "TILLOY ET BELLAY", + "code_postal": "51460", + "coordonnees_gps": [ + 49.0293633724, + 4.63078861218 + ], + "libelle_d_acheminement": "TILLOY ET BELLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63078861218, + 49.0293633724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fabb1ca91778ac0a55a71eda9491603a17fbb08", + "fields": { + "code_commune_insee": "51573", + "nom_de_la_commune": "TINQUEUX", + "code_postal": "51430", + "coordonnees_gps": [ + 49.2496666793, + 3.98795391117 + ], + "libelle_d_acheminement": "TINQUEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98795391117, + 49.2496666793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df5acf46831b8e9a68dbb570da13ff4b73a96b27", + "fields": { + "code_commune_insee": "51581", + "nom_de_la_commune": "TRESLON", + "code_postal": "51140", + "coordonnees_gps": [ + 49.2417966857, + 3.82706094707 + ], + "libelle_d_acheminement": "TRESLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82706094707, + 49.2417966857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe105d4a333a640e292f8250ffb6cf6da6b5bb10", + "fields": { + "code_commune_insee": "51584", + "nom_de_la_commune": "TROIS PUITS", + "code_postal": "51500", + "coordonnees_gps": [ + 49.2056733316, + 4.03927957709 + ], + "libelle_d_acheminement": "TROIS PUITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03927957709, + 49.2056733316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1d3455dba4f15725b325453fa184b298f8f5763", + "fields": { + "code_commune_insee": "51591", + "nom_de_la_commune": "VANDEUIL", + "code_postal": "51140", + "coordonnees_gps": [ + 49.2821394936, + 3.79415062209 + ], + "libelle_d_acheminement": "VANDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79415062209, + 49.2821394936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da0de34ec1eb7b7779babb7f26fd9ea565cee457", + "fields": { + "code_commune_insee": "51592", + "nom_de_la_commune": "VANDIERES", + "code_postal": "51700", + "coordonnees_gps": [ + 49.113805512, + 3.72500319376 + ], + "libelle_d_acheminement": "VANDIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72500319376, + 49.113805512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a406e6faff70515af322006749ee7fc01146545d", + "fields": { + "code_commune_insee": "51596", + "nom_de_la_commune": "VAUCHAMPS", + "code_postal": "51210", + "coordonnees_gps": [ + 48.8809936566, + 3.62624789917 + ], + "libelle_d_acheminement": "VAUCHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62624789917, + 48.8809936566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca0810b36e6fe40d6ca3640f854ec9bd5d2a5ece", + "fields": { + "code_commune_insee": "51609", + "nom_de_la_commune": "VERNEUIL", + "code_postal": "51700", + "coordonnees_gps": [ + 49.1023191077, + 3.67124633089 + ], + "libelle_d_acheminement": "VERNEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67124633089, + 49.1023191077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "701963ec732f30e989dfb224378225b495fd0d2d", + "fields": { + "ligne_5": "TOULON LA MONTAGNE", + "code_commune_insee": "51611", + "libelle_d_acheminement": "VERT TOULON", + "code_postal": "51130", + "nom_de_la_commune": "VERT TOULON", + "coordonnees_gps": [ + 48.8477595772, + 3.90655337825 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90655337825, + 48.8477595772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c9c6b3fc4556b802254e57784f089619e4c4c96", + "fields": { + "code_commune_insee": "51614", + "nom_de_la_commune": "VERZY", + "code_postal": "51380", + "coordonnees_gps": [ + 49.1438617468, + 4.16066393277 + ], + "libelle_d_acheminement": "VERZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16066393277, + 49.1438617468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "060d39a5b2de4c9e5fbe38ef6d8b91b18d1c5e06", + "fields": { + "code_commune_insee": "51617", + "nom_de_la_commune": "LA VEUVE", + "code_postal": "51520", + "coordonnees_gps": [ + 49.0370630593, + 4.33427822759 + ], + "libelle_d_acheminement": "LA VEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33427822759, + 49.0370630593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd861466075833365d98dbe5d78c7541e7c5159c", + "fields": { + "code_commune_insee": "51629", + "nom_de_la_commune": "VILLERS ALLERAND", + "code_postal": "51500", + "coordonnees_gps": [ + 49.1628290117, + 4.01849032746 + ], + "libelle_d_acheminement": "VILLERS ALLERAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01849032746, + 49.1628290117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56ebb7ea7179b42b66ce695e6fae193fc4d46c00", + "fields": { + "code_commune_insee": "51634", + "nom_de_la_commune": "VILLERS LE CHATEAU", + "code_postal": "51510", + "coordonnees_gps": [ + 48.9386044105, + 4.26341111871 + ], + "libelle_d_acheminement": "VILLERS LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26341111871, + 48.9386044105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f32f17522c35ca3ba5b4f61eba1ba7b0b5f816bf", + "fields": { + "code_commune_insee": "51636", + "nom_de_la_commune": "VILLERS MARMERY", + "code_postal": "51380", + "coordonnees_gps": [ + 49.1302437275, + 4.19857748314 + ], + "libelle_d_acheminement": "VILLERS MARMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19857748314, + 49.1302437275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1bfcbd84e4437b0a79b5ffcc055c2b041ff054a", + "fields": { + "code_commune_insee": "51637", + "nom_de_la_commune": "VILLERS SOUS CHATILLON", + "code_postal": "51700", + "coordonnees_gps": [ + 49.1032051362, + 3.81701238416 + ], + "libelle_d_acheminement": "VILLERS SOUS CHATILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81701238416, + 49.1032051362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "553a4047d8ee142525f87b430096e9144a4632a4", + "fields": { + "code_commune_insee": "51643", + "nom_de_la_commune": "VINAY", + "code_postal": "51530", + "coordonnees_gps": [ + 49.0129643499, + 3.89876523906 + ], + "libelle_d_acheminement": "VINAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89876523906, + 49.0129643499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6777d33018be333ad9103b37bc6c113232b8a40f", + "fields": { + "code_commune_insee": "51644", + "nom_de_la_commune": "VINCELLES", + "code_postal": "51700", + "coordonnees_gps": [ + 49.095711115, + 3.63873649841 + ], + "libelle_d_acheminement": "VINCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63873649841, + 49.095711115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27763dea5b45b0b0c896b9cac5f9107e7a815555", + "fields": { + "code_commune_insee": "51645", + "nom_de_la_commune": "VINDEY", + "code_postal": "51120", + "coordonnees_gps": [ + 48.6994506096, + 3.70913696706 + ], + "libelle_d_acheminement": "VINDEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70913696706, + 48.6994506096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "943ce18dda02782571f8f6a4405c18af9bedf649", + "fields": { + "code_commune_insee": "51649", + "nom_de_la_commune": "VITRY LE FRANCOIS", + "code_postal": "51300", + "coordonnees_gps": [ + 48.728201078, + 4.59222371874 + ], + "libelle_d_acheminement": "VITRY LE FRANCOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59222371874, + 48.728201078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d45caa4c3472b1715f6614d51ae633689928dab9", + "fields": { + "code_commune_insee": "51656", + "nom_de_la_commune": "VRAUX", + "code_postal": "51150", + "coordonnees_gps": [ + 49.0340178671, + 4.24525136577 + ], + "libelle_d_acheminement": "VRAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24525136577, + 49.0340178671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31d9b72aa89a4316e52e647302e08646b77b19d7", + "fields": { + "code_commune_insee": "51660", + "nom_de_la_commune": "WARMERIVILLE", + "code_postal": "51110", + "coordonnees_gps": [ + 49.3487467598, + 4.23822416025 + ], + "libelle_d_acheminement": "WARMERIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23822416025, + 49.3487467598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a6cd681be728b4b42736442a8d0f16e0579f254", + "fields": { + "code_commune_insee": "52001", + "nom_de_la_commune": "AGEVILLE", + "code_postal": "52340", + "coordonnees_gps": [ + 48.1124478437, + 5.3380981717 + ], + "libelle_d_acheminement": "AGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3380981717, + 48.1124478437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ce25b8da1c1492ae5144ebd74f0b24623d7246f", + "fields": { + "code_commune_insee": "52002", + "nom_de_la_commune": "AIGREMONT", + "code_postal": "52400", + "coordonnees_gps": [ + 48.0125748541, + 5.72587981805 + ], + "libelle_d_acheminement": "AIGREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72587981805, + 48.0125748541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cb009985d1a8967052defd9c1f32061846452f8", + "fields": { + "code_commune_insee": "52003", + "nom_de_la_commune": "AILLIANVILLE", + "code_postal": "52700", + "coordonnees_gps": [ + 48.3333027636, + 5.48294419471 + ], + "libelle_d_acheminement": "AILLIANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48294419471, + 48.3333027636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b96edbb0b08955d2d5aab85a20845cdfe68aa95a", + "fields": { + "code_commune_insee": "52013", + "nom_de_la_commune": "ANROSEY", + "code_postal": "52500", + "coordonnees_gps": [ + 47.8449228993, + 5.66083228787 + ], + "libelle_d_acheminement": "ANROSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66083228787, + 47.8449228993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5adae7867cc37b4912ee3aab08ff5378aa42276", + "fields": { + "code_commune_insee": "52022", + "nom_de_la_commune": "AUBEPIERRE SUR AUBE", + "code_postal": "52210", + "coordonnees_gps": [ + 47.9097995655, + 4.95005798566 + ], + "libelle_d_acheminement": "AUBEPIERRE SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95005798566, + 47.9097995655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "305080e26e82fb08bae646106573b9cd0f5b02b3", + "fields": { + "code_commune_insee": "52029", + "nom_de_la_commune": "AUTIGNY LE GRAND", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4719385669, + 5.14870838264 + ], + "libelle_d_acheminement": "AUTIGNY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14870838264, + 48.4719385669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2d2dc0c45d432764970320c5c7453934a94caac", + "fields": { + "code_commune_insee": "52030", + "nom_de_la_commune": "AUTIGNY LE PETIT", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4816592371, + 5.15235006309 + ], + "libelle_d_acheminement": "AUTIGNY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15235006309, + 48.4816592371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3deda27ba1edde961071b3075950508f672f223f", + "fields": { + "ligne_5": "ST MARTIN SUR LA RENNE", + "code_commune_insee": "52031", + "libelle_d_acheminement": "AUTREVILLE SUR LA RENNE", + "code_postal": "52330", + "nom_de_la_commune": "AUTREVILLE SUR LA RENNE", + "coordonnees_gps": [ + 48.1258481479, + 4.97740367937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97740367937, + 48.1258481479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef1cb357a47932af9e82619611566a0d4049b6b0", + "fields": { + "code_commune_insee": "52033", + "nom_de_la_commune": "AVRECOURT", + "code_postal": "52140", + "coordonnees_gps": [ + 47.9667481066, + 5.53468073024 + ], + "libelle_d_acheminement": "AVRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53468073024, + 47.9667481066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8852f92c4c412dafb1b17e5291cd9674844e0084", + "fields": { + "code_commune_insee": "52053", + "nom_de_la_commune": "BLAISY", + "code_postal": "52330", + "coordonnees_gps": [ + 48.1733254707, + 5.01063806969 + ], + "libelle_d_acheminement": "BLAISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01063806969, + 48.1733254707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1780238b279093a801b2f894288665ba106af114", + "fields": { + "code_commune_insee": "52061", + "nom_de_la_commune": "BOURDONS SUR ROGNON", + "code_postal": "52700", + "coordonnees_gps": [ + 48.1760934357, + 5.33895543232 + ], + "libelle_d_acheminement": "BOURDONS SUR ROGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33895543232, + 48.1760934357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c63455f4e077438ac152bca3e17ca2098428fa0", + "fields": { + "ligne_5": "GONAINCOURT", + "code_commune_insee": "52064", + "libelle_d_acheminement": "BOURMONT ENTRE MEUSE ET MOUZON", + "code_postal": "52150", + "nom_de_la_commune": "BOURMONT ENTRE MEUSE ET MOUZON", + "coordonnees_gps": [ + 48.2050671577, + 5.60137874866 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60137874866, + 48.2050671577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae23c2fca4eefc16f224787ef69a31adfe61f543", + "fields": { + "ligne_5": "GONCOURT", + "code_commune_insee": "52064", + "libelle_d_acheminement": "BOURMONT ENTRE MEUSE ET MOUZON", + "code_postal": "52150", + "nom_de_la_commune": "BOURMONT ENTRE MEUSE ET MOUZON", + "coordonnees_gps": [ + 48.2050671577, + 5.60137874866 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60137874866, + 48.2050671577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0415f6ba3270a65e854ba161901b6677573051ba", + "fields": { + "code_commune_insee": "52066", + "nom_de_la_commune": "BRACHAY", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3817212409, + 5.03615837807 + ], + "libelle_d_acheminement": "BRACHAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03615837807, + 48.3817212409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2045acfd21a99817221feea3b4a5cc40e4a83d0f", + "fields": { + "code_commune_insee": "52070", + "nom_de_la_commune": "BRENNES", + "code_postal": "52200", + "coordonnees_gps": [ + 47.7980886975, + 5.28308639281 + ], + "libelle_d_acheminement": "BRENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28308639281, + 47.7980886975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe5a37bc817a278851d803d32ba36fec982bf108", + "fields": { + "code_commune_insee": "52072", + "nom_de_la_commune": "BRETHENAY", + "code_postal": "52000", + "coordonnees_gps": [ + 48.1570319253, + 5.13602745985 + ], + "libelle_d_acheminement": "BRETHENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13602745985, + 48.1570319253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffcf8970a19f9155d628d150178dec120067d0ed", + "fields": { + "code_commune_insee": "52079", + "nom_de_la_commune": "BROUSSEVAL", + "code_postal": "52130", + "coordonnees_gps": [ + 48.4911221703, + 4.97724506546 + ], + "libelle_d_acheminement": "BROUSSEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97724506546, + 48.4911221703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95c987ba6072e0a901255226f4fc8724ce5b072f", + "fields": { + "code_commune_insee": "52082", + "nom_de_la_commune": "BUGNIERES", + "code_postal": "52210", + "coordonnees_gps": [ + 47.9610345188, + 5.08914316906 + ], + "libelle_d_acheminement": "BUGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08914316906, + 47.9610345188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6faae07f98210376a7f1b6e1e6af03c6e310928", + "fields": { + "code_commune_insee": "52087", + "nom_de_la_commune": "BUXIERES LES VILLIERS", + "code_postal": "52000", + "coordonnees_gps": [ + 48.1014585884, + 5.02708635524 + ], + "libelle_d_acheminement": "BUXIERES LES VILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02708635524, + 48.1014585884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caa67e78268822dd30359e88de3b4ec5a877c922", + "fields": { + "ligne_5": "SAUVAGE MAGNY", + "code_commune_insee": "52088", + "libelle_d_acheminement": "CEFFONDS", + "code_postal": "52220", + "nom_de_la_commune": "CEFFONDS", + "coordonnees_gps": [ + 48.4425385457, + 4.74768588072 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74768588072, + 48.4425385457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31fda64e43fead79d414d6fa376793aa098faad1", + "fields": { + "code_commune_insee": "52110", + "nom_de_la_commune": "CHARMES LA GRANDE", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3839955278, + 4.99607090848 + ], + "libelle_d_acheminement": "CHARMES LA GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99607090848, + 48.3839955278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b2e74ca7ed053064802e3805542609406150d6a", + "fields": { + "code_commune_insee": "52116", + "nom_de_la_commune": "CHATENAY VAUDIN", + "code_postal": "52360", + "coordonnees_gps": [ + 47.8510495493, + 5.44883005859 + ], + "libelle_d_acheminement": "CHATENAY VAUDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44883005859, + 47.8510495493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa7f8a138d2429827272b833b0dac1789e7120a0", + "fields": { + "code_commune_insee": "52120", + "nom_de_la_commune": "CHAUFFOURT", + "code_postal": "52140", + "coordonnees_gps": [ + 47.9727336414, + 5.43587115621 + ], + "libelle_d_acheminement": "CHAUFFOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43587115621, + 47.9727336414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21fcd3191bebc40b58b1da83119d80f302395f5f", + "fields": { + "ligne_5": "SOMMEVILLE", + "code_commune_insee": "52123", + "libelle_d_acheminement": "CHEVILLON", + "code_postal": "52170", + "nom_de_la_commune": "CHEVILLON", + "coordonnees_gps": [ + 48.5306693888, + 5.14449573214 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14449573214, + 48.5306693888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d27c2ca43068bfd379c980c745dd4c8bb7c903d", + "fields": { + "code_commune_insee": "52130", + "nom_de_la_commune": "CIRFONTAINES EN AZOIS", + "code_postal": "52370", + "coordonnees_gps": [ + 48.1049404341, + 4.86318194734 + ], + "libelle_d_acheminement": "CIRFONTAINES EN AZOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86318194734, + 48.1049404341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "724ca4aa204528da52b70a4d580268479af67c7d", + "fields": { + "code_commune_insee": "52147", + "nom_de_la_commune": "COURCELLES EN MONTAGNE", + "code_postal": "52200", + "coordonnees_gps": [ + 47.8419296659, + 5.21506539233 + ], + "libelle_d_acheminement": "COURCELLES EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21506539233, + 47.8419296659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c062864826a549b280bee6cc6d638e33f17b5cf", + "fields": { + "code_commune_insee": "52159", + "nom_de_la_commune": "CUVES", + "code_postal": "52240", + "coordonnees_gps": [ + 48.0947233015, + 5.43400619127 + ], + "libelle_d_acheminement": "CUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43400619127, + 48.0947233015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8aa6a6cca770af379a53c3166e31f96b9a362f2e", + "fields": { + "code_commune_insee": "52162", + "nom_de_la_commune": "DAMMARTIN SUR MEUSE", + "code_postal": "52140", + "coordonnees_gps": [ + 47.9802668402, + 5.58560136029 + ], + "libelle_d_acheminement": "DAMMARTIN SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58560136029, + 47.9802668402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92a3304db03a8222ac5ba18f953ab4a778ba8027", + "fields": { + "code_commune_insee": "52167", + "nom_de_la_commune": "DARMANNES", + "code_postal": "52700", + "coordonnees_gps": [ + 48.1680388839, + 5.22269064305 + ], + "libelle_d_acheminement": "DARMANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22269064305, + 48.1680388839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c432bbdfe00465e54eab53d559a38941afc77746", + "fields": { + "code_commune_insee": "52171", + "nom_de_la_commune": "DOMMARTIN LE FRANC", + "code_postal": "52110", + "coordonnees_gps": [ + 48.425380925, + 4.9518947525 + ], + "libelle_d_acheminement": "DOMMARTIN LE FRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9518947525, + 48.425380925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c25caad173f6f1b1ae0aa1d1fb0103a3b7807d3", + "fields": { + "ligne_5": "LANDEVILLE", + "code_commune_insee": "52173", + "libelle_d_acheminement": "DOMREMY LANDEVILLE", + "code_postal": "52270", + "nom_de_la_commune": "DOMREMY LANDEVILLE", + "coordonnees_gps": [ + 48.359441184, + 5.25296341706 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25296341706, + 48.359441184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d263335acd484d383348ee8d1526d238564949c3", + "fields": { + "ligne_5": "SAUCOURT SUR ROGNON", + "code_commune_insee": "52177", + "libelle_d_acheminement": "DOULAINCOURT SAUCOURT", + "code_postal": "52270", + "nom_de_la_commune": "DOULAINCOURT SAUCOURT", + "coordonnees_gps": [ + 48.3149359491, + 5.2044416904 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2044416904, + 48.3149359491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96936fd38cf2a5a3416269b5a1e5434817c040da", + "fields": { + "code_commune_insee": "52181", + "nom_de_la_commune": "ECHENAY", + "code_postal": "52230", + "coordonnees_gps": [ + 48.4637165491, + 5.31232044052 + ], + "libelle_d_acheminement": "ECHENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31232044052, + 48.4637165491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f082794bd1c131f8cd77478f9dc7f28500d5fbd3", + "fields": { + "code_commune_insee": "52187", + "nom_de_la_commune": "EPIZON", + "code_postal": "52230", + "coordonnees_gps": [ + 48.3781421603, + 5.33232295089 + ], + "libelle_d_acheminement": "EPIZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33232295089, + 48.3781421603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9367948bbfd5d19f906b5cf4b024b538f0f6d94", + "fields": { + "ligne_5": "PAUTAINES", + "code_commune_insee": "52187", + "libelle_d_acheminement": "EPIZON", + "code_postal": "52270", + "nom_de_la_commune": "EPIZON", + "coordonnees_gps": [ + 48.3781421603, + 5.33232295089 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33232295089, + 48.3781421603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7eae519bb69d0e88c487b04a7a6fa3d889fa4ca", + "fields": { + "code_commune_insee": "52189", + "nom_de_la_commune": "LE VAL D ESNOMS", + "code_postal": "52190", + "coordonnees_gps": [ + 47.6904929765, + 5.21656859314 + ], + "libelle_d_acheminement": "LE VAL D ESNOMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21656859314, + 47.6904929765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7856cecbcaec59e11e80bb1476e680f4831981ec", + "fields": { + "code_commune_insee": "52196", + "nom_de_la_commune": "FAVEROLLES", + "code_postal": "52260", + "coordonnees_gps": [ + 47.9535166477, + 5.22561749902 + ], + "libelle_d_acheminement": "FAVEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22561749902, + 47.9535166477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5015d6d41719fd510ace9b1ad69e151ab9cf1849", + "fields": { + "ligne_5": "CHARMOY", + "code_commune_insee": "52197", + "libelle_d_acheminement": "FAYL BILLOT", + "code_postal": "52500", + "nom_de_la_commune": "FAYL BILLOT", + "coordonnees_gps": [ + 47.7869444974, + 5.60488795992 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60488795992, + 47.7869444974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b7c2564ce198e3f8929ade110cf16a2e2e1c2bd", + "fields": { + "code_commune_insee": "52201", + "nom_de_la_commune": "FLAMMERECOURT", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3602623319, + 5.04472179817 + ], + "libelle_d_acheminement": "FLAMMERECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04472179817, + 48.3602623319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a2983d4f6e846eaa6784ba8efa97e2034d8f5da", + "fields": { + "code_commune_insee": "52211", + "nom_de_la_commune": "FRONCLES", + "code_postal": "52320", + "coordonnees_gps": [ + 48.2997317806, + 5.13968155091 + ], + "libelle_d_acheminement": "FRONCLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13968155091, + 48.2997317806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ae206f65540dd18e9e8db28bec4b3c0302e8fed", + "fields": { + "ligne_5": "PROVENCHERES SUR MARNE", + "code_commune_insee": "52211", + "libelle_d_acheminement": "FRONCLES", + "code_postal": "52320", + "nom_de_la_commune": "FRONCLES", + "coordonnees_gps": [ + 48.2997317806, + 5.13968155091 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13968155091, + 48.2997317806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57833d3defe12c57d0950274443a01c227a33582", + "fields": { + "code_commune_insee": "52217", + "nom_de_la_commune": "GERMAINVILLIERS", + "code_postal": "52150", + "coordonnees_gps": [ + 48.1147244495, + 5.64040267442 + ], + "libelle_d_acheminement": "GERMAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64040267442, + 48.1147244495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "870b0b88a5b23cb6082e4b3cfe31bfe7a10c2972", + "fields": { + "code_commune_insee": "52219", + "nom_de_la_commune": "GERMISAY", + "code_postal": "52230", + "coordonnees_gps": [ + 48.3907421507, + 5.36918258943 + ], + "libelle_d_acheminement": "GERMISAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36918258943, + 48.3907421507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f691a75dee2de788747c1c385b4d05301ba47cdb", + "fields": { + "code_commune_insee": "52228", + "nom_de_la_commune": "GRANDCHAMP", + "code_postal": "52600", + "coordonnees_gps": [ + 47.7230166407, + 5.44612862714 + ], + "libelle_d_acheminement": "GRANDCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44612862714, + 47.7230166407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcfa6b4aa2fdd7d84749ce413769b2c5a44419b6", + "fields": { + "code_commune_insee": "52246", + "nom_de_la_commune": "HUMES JORQUENAY", + "code_postal": "52200", + "coordonnees_gps": [ + 47.9037279897, + 5.30437368964 + ], + "libelle_d_acheminement": "HUMES JORQUENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30437368964, + 47.9037279897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec174aaa7f83512f3a7d59974a30d01db922b3fc", + "fields": { + "ligne_5": "JORQUENAY", + "code_commune_insee": "52246", + "libelle_d_acheminement": "HUMES JORQUENAY", + "code_postal": "52200", + "nom_de_la_commune": "HUMES JORQUENAY", + "coordonnees_gps": [ + 47.9037279897, + 5.30437368964 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30437368964, + 47.9037279897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c070dbfad01994dbf602a8fc3bbd929cb0d60986", + "fields": { + "code_commune_insee": "52248", + "nom_de_la_commune": "IS EN BASSIGNY", + "code_postal": "52140", + "coordonnees_gps": [ + 48.0343615527, + 5.44661296465 + ], + "libelle_d_acheminement": "IS EN BASSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44661296465, + 48.0343615527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf1e2026c27dea4f699359ffda83f342f56486f9", + "fields": { + "ligne_5": "LAHARMAND", + "code_commune_insee": "52251", + "libelle_d_acheminement": "JONCHERY", + "code_postal": "52000", + "nom_de_la_commune": "JONCHERY", + "coordonnees_gps": [ + 48.1516102771, + 5.07446482114 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07446482114, + 48.1516102771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd6cc758d3818b061c93441179f8fbb97ccae874", + "fields": { + "code_commune_insee": "52267", + "nom_de_la_commune": "LANEUVILLE AU PONT", + "code_postal": "52100", + "coordonnees_gps": [ + 48.6239555487, + 4.86367125229 + ], + "libelle_d_acheminement": "LANEUVILLE AU PONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86367125229, + 48.6239555487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1232d364810063c0f1df759c7fd8867471c32cc0", + "fields": { + "ligne_5": "ARNONCOURT SUR APANCE", + "code_commune_insee": "52273", + "libelle_d_acheminement": "LARIVIERE ARNONCOURT", + "code_postal": "52400", + "nom_de_la_commune": "LARIVIERE ARNONCOURT", + "coordonnees_gps": [ + 48.0240430841, + 5.7182829587 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7182829587, + 48.0240430841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e677b4e99002e6f6793e9f46b9dfb3634ce712f0", + "fields": { + "code_commune_insee": "52275", + "nom_de_la_commune": "LAVERNOY", + "code_postal": "52140", + "coordonnees_gps": [ + 47.9161136655, + 5.57575568127 + ], + "libelle_d_acheminement": "LAVERNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57575568127, + 47.9161136655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13731a9e2be04c749a7f61444e40eec97167a82b", + "fields": { + "code_commune_insee": "52280", + "nom_de_la_commune": "LECEY", + "code_postal": "52360", + "coordonnees_gps": [ + 47.8635165634, + 5.43218978673 + ], + "libelle_d_acheminement": "LECEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43218978673, + 47.8635165634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90d43d7b24915dd94b7dee976e01edcca800fb2c", + "fields": { + "code_commune_insee": "52289", + "nom_de_la_commune": "LIFFOL LE PETIT", + "code_postal": "52700", + "coordonnees_gps": [ + 48.2910504229, + 5.54344687928 + ], + "libelle_d_acheminement": "LIFFOL LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54344687928, + 48.2910504229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d19671fb2e86eabc11e8c5b1a64f8eebd4a20e3", + "fields": { + "code_commune_insee": "52294", + "nom_de_la_commune": "LOUVEMONT", + "code_postal": "52130", + "coordonnees_gps": [ + 48.5434019662, + 4.89152733992 + ], + "libelle_d_acheminement": "LOUVEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89152733992, + 48.5434019662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93a6a6419f0962cd8cd2db02abfadc476f99cfd5", + "fields": { + "code_commune_insee": "52295", + "nom_de_la_commune": "LOUVIERES", + "code_postal": "52800", + "coordonnees_gps": [ + 48.0280199419, + 5.28378758426 + ], + "libelle_d_acheminement": "LOUVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28378758426, + 48.0280199419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "882f54979bc04019b316d9fcf891bb91344eec0e", + "fields": { + "code_commune_insee": "52298", + "nom_de_la_commune": "MAATZ", + "code_postal": "52500", + "coordonnees_gps": [ + 47.7057969225, + 5.43384462311 + ], + "libelle_d_acheminement": "MAATZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43384462311, + 47.7057969225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3db91fdeeba894189c760370027da97fa5b37400", + "fields": { + "code_commune_insee": "52300", + "nom_de_la_commune": "MAGNEUX", + "code_postal": "52130", + "coordonnees_gps": [ + 48.5096354522, + 5.00776253025 + ], + "libelle_d_acheminement": "MAGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00776253025, + 48.5096354522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be073dc7e5e583d192c611edf2e6c9d2bfc5b4ee", + "fields": { + "code_commune_insee": "52304", + "nom_de_la_commune": "MALAINCOURT SUR MEUSE", + "code_postal": "52150", + "coordonnees_gps": [ + 48.1553460415, + 5.6050993633 + ], + "libelle_d_acheminement": "MALAINCOURT SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6050993633, + 48.1553460415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e86f299118692237bad811f072c046f8331f2b3d", + "fields": { + "code_commune_insee": "52307", + "nom_de_la_commune": "MARAC", + "code_postal": "52260", + "coordonnees_gps": [ + 47.9337415191, + 5.17210164704 + ], + "libelle_d_acheminement": "MARAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17210164704, + 47.9337415191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e3e45d2c75ff656471298cbdb67e222aa699636", + "fields": { + "code_commune_insee": "52319", + "nom_de_la_commune": "MENNOUVEAUX", + "code_postal": "52240", + "coordonnees_gps": [ + 48.1028804059, + 5.41153271084 + ], + "libelle_d_acheminement": "MENNOUVEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41153271084, + 48.1028804059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3639181ddb653d1fe6231d25b525101da9b19b7b", + "fields": { + "code_commune_insee": "52320", + "nom_de_la_commune": "MERREY", + "code_postal": "52240", + "coordonnees_gps": [ + 48.052900906, + 5.59302877424 + ], + "libelle_d_acheminement": "MERREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59302877424, + 48.052900906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bea1966d48734866f136a7004074ab9034144fba", + "fields": { + "code_commune_insee": "52325", + "nom_de_la_commune": "MILLIERES", + "code_postal": "52240", + "coordonnees_gps": [ + 48.1421522918, + 5.42371010065 + ], + "libelle_d_acheminement": "MILLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42371010065, + 48.1421522918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c27fc3eefa1ee5d6c3cced429494a8586f8afd91", + "fields": { + "ligne_5": "ROBERT MAGNY", + "code_commune_insee": "52331", + "libelle_d_acheminement": "LA PORTE DU DER", + "code_postal": "52220", + "nom_de_la_commune": "LA PORTE DU DER", + "coordonnees_gps": [ + 48.4874732749, + 4.78668890124 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78668890124, + 48.4874732749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2afdedf433b79a624d4fa073ad7c3be52a4ad232", + "fields": { + "ligne_5": "EPINANT", + "code_commune_insee": "52332", + "libelle_d_acheminement": "VAL DE MEUSE", + "code_postal": "52140", + "nom_de_la_commune": "VAL DE MEUSE", + "coordonnees_gps": [ + 48.007428702, + 5.53409668952 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53409668952, + 48.007428702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cf44fa594034c38fda5cc373226c707d00a032d", + "fields": { + "ligne_5": "LECOURT", + "code_commune_insee": "52332", + "libelle_d_acheminement": "VAL DE MEUSE", + "code_postal": "52140", + "nom_de_la_commune": "VAL DE MEUSE", + "coordonnees_gps": [ + 48.007428702, + 5.53409668952 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53409668952, + 48.007428702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f4acecf4f7fe837702436960fec5166ebc7b34f", + "fields": { + "ligne_5": "PROVENCHERES SUR MEUSE", + "code_commune_insee": "52332", + "libelle_d_acheminement": "VAL DE MEUSE", + "code_postal": "52140", + "nom_de_la_commune": "VAL DE MEUSE", + "coordonnees_gps": [ + 48.007428702, + 5.53409668952 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53409668952, + 48.007428702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd6b58e1dc148f63856e3ad21117fc3cd2f85c56", + "fields": { + "ligne_5": "LENIZEUL", + "code_commune_insee": "52332", + "libelle_d_acheminement": "VAL DE MEUSE", + "code_postal": "52240", + "nom_de_la_commune": "VAL DE MEUSE", + "coordonnees_gps": [ + 48.007428702, + 5.53409668952 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53409668952, + 48.007428702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12531eaa81bdb710d7acb797b4d64b168e14c669", + "fields": { + "code_commune_insee": "52337", + "nom_de_la_commune": "MONTREUIL SUR THONNANCE", + "code_postal": "52230", + "coordonnees_gps": [ + 48.4595853523, + 5.23455952263 + ], + "libelle_d_acheminement": "MONTREUIL SUR THONNANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23455952263, + 48.4595853523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20594cf9665071d36d478d5f142cd1697bffc6e1", + "fields": { + "code_commune_insee": "52346", + "nom_de_la_commune": "MUSSEY SUR MARNE", + "code_postal": "52300", + "coordonnees_gps": [ + 48.3790388875, + 5.12685701678 + ], + "libelle_d_acheminement": "MUSSEY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12685701678, + 48.3790388875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1e583f20a3c7d801c767c5ae8214d060eef835f", + "fields": { + "ligne_5": "ESSEY LES EAUX", + "code_commune_insee": "52353", + "libelle_d_acheminement": "NOGENT", + "code_postal": "52800", + "nom_de_la_commune": "NOGENT", + "coordonnees_gps": [ + 48.037521428, + 5.36502804198 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36502804198, + 48.037521428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1d5a037630a2e1b05fadd1d42d24f270c5925ea", + "fields": { + "ligne_5": "ODIVAL", + "code_commune_insee": "52353", + "libelle_d_acheminement": "NOGENT", + "code_postal": "52800", + "nom_de_la_commune": "NOGENT", + "coordonnees_gps": [ + 48.037521428, + 5.36502804198 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36502804198, + 48.037521428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1013dffefbe84ae07d24c511dd966b6486611d75", + "fields": { + "code_commune_insee": "52360", + "nom_de_la_commune": "OCCEY", + "code_postal": "52190", + "coordonnees_gps": [ + 47.6040975571, + 5.27196740067 + ], + "libelle_d_acheminement": "OCCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27196740067, + 47.6040975571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17fe34e052f8a20742b04c166ce8391b53999957", + "fields": { + "code_commune_insee": "52367", + "nom_de_la_commune": "ORMOY LES SEXFONTAINES", + "code_postal": "52310", + "coordonnees_gps": [ + 48.2263305102, + 5.05911873488 + ], + "libelle_d_acheminement": "ORMOY LES SEXFONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05911873488, + 48.2263305102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b4935bf4ba3258e09e06a34a6370fb0e2c6c3bc", + "fields": { + "ligne_5": "PARNOT", + "code_commune_insee": "52377", + "libelle_d_acheminement": "PARNOY EN BASSIGNY", + "code_postal": "52400", + "nom_de_la_commune": "PARNOY EN BASSIGNY", + "coordonnees_gps": [ + 48.0252868226, + 5.6605141849 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6605141849, + 48.0252868226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bada3cb675a68235ba20caf8c4406547e192adcb", + "fields": { + "code_commune_insee": "52380", + "nom_de_la_commune": "PEIGNEY", + "code_postal": "52200", + "coordonnees_gps": [ + 47.8784687071, + 5.37568618034 + ], + "libelle_d_acheminement": "PEIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37568618034, + 47.8784687071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "113d6c50cd1d903b8df38cfb211b77bb1a9c86a4", + "fields": { + "code_commune_insee": "52385", + "nom_de_la_commune": "PERRUSSE", + "code_postal": "52240", + "coordonnees_gps": [ + 48.0969131081, + 5.47804670166 + ], + "libelle_d_acheminement": "PERRUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47804670166, + 48.0969131081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d9523b7958fed4169ef30b9ae0992e7da303159", + "fields": { + "code_commune_insee": "52399", + "nom_de_la_commune": "PONT LA VILLE", + "code_postal": "52120", + "coordonnees_gps": [ + 48.081638175, + 4.87120903047 + ], + "libelle_d_acheminement": "PONT LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87120903047, + 48.081638175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c21639615156da27c4bbc5c8c132d46a6bbdaac", + "fields": { + "code_commune_insee": "52401", + "nom_de_la_commune": "POULANGY", + "code_postal": "52800", + "coordonnees_gps": [ + 48.0490763466, + 5.25648006741 + ], + "libelle_d_acheminement": "POULANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25648006741, + 48.0490763466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71f52971b281978a579aa463d7d5b84490b7f3aa", + "fields": { + "ligne_5": "DROYES", + "code_commune_insee": "52411", + "libelle_d_acheminement": "RIVES DERVOISES", + "code_postal": "52220", + "nom_de_la_commune": "RIVES DERVOISES", + "coordonnees_gps": [ + 48.489304653, + 4.6870081083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6870081083, + 48.489304653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa432f04056db87f5e2c69d6fbf4857410784736", + "fields": { + "code_commune_insee": "52424", + "nom_de_la_commune": "RIVIERES LE BOIS", + "code_postal": "52600", + "coordonnees_gps": [ + 47.7413650111, + 5.45056321037 + ], + "libelle_d_acheminement": "RIVIERES LE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45056321037, + 47.7413650111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f975a9cd636fbf7e05e2f37561d91473b6c55dc", + "fields": { + "ligne_5": "CHAMEROY", + "code_commune_insee": "52431", + "libelle_d_acheminement": "ROCHETAILLEE", + "code_postal": "52210", + "nom_de_la_commune": "ROCHETAILLEE", + "coordonnees_gps": [ + 47.848841047, + 5.11949041982 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11949041982, + 47.848841047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7f034fe2604d9be5dda022aec3d725483151c5c", + "fields": { + "code_commune_insee": "52438", + "nom_de_la_commune": "ROUGEUX", + "code_postal": "52500", + "coordonnees_gps": [ + 47.8099540801, + 5.57305964854 + ], + "libelle_d_acheminement": "ROUGEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57305964854, + 47.8099540801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce5bb64a4ce1e1d0330fb4f6d8fef9d6e61a76a7", + "fields": { + "code_commune_insee": "52440", + "nom_de_la_commune": "ROUVROY SUR MARNE", + "code_postal": "52300", + "coordonnees_gps": [ + 48.3600369184, + 5.10947647053 + ], + "libelle_d_acheminement": "ROUVROY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10947647053, + 48.3600369184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d29db7be10a4bd7ea2520fbb636d14cc4207d4d", + "fields": { + "code_commune_insee": "52442", + "nom_de_la_commune": "RUPT", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4215002883, + 5.13093271018 + ], + "libelle_d_acheminement": "RUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13093271018, + 48.4215002883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a01543363440104476c9dc1bc79c86993debbbf1", + "fields": { + "code_commune_insee": "52450", + "nom_de_la_commune": "ST LOUP SUR AUJON", + "code_postal": "52210", + "coordonnees_gps": [ + 47.8798017799, + 5.07916418859 + ], + "libelle_d_acheminement": "ST LOUP SUR AUJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07916418859, + 47.8798017799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10ad592ccd3af1ed8d5119c7e80c19055e042663", + "fields": { + "ligne_5": "ERISEUL", + "code_commune_insee": "52450", + "libelle_d_acheminement": "ST LOUP SUR AUJON", + "code_postal": "52210", + "nom_de_la_commune": "ST LOUP SUR AUJON", + "coordonnees_gps": [ + 47.8798017799, + 5.07916418859 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07916418859, + 47.8798017799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71fde1d8c9e2746d56a189d6dc9206133fd233a5", + "fields": { + "code_commune_insee": "52452", + "nom_de_la_commune": "ST MARTIN LES LANGRES", + "code_postal": "52200", + "coordonnees_gps": [ + 47.896671428, + 5.26019164896 + ], + "libelle_d_acheminement": "ST MARTIN LES LANGRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26019164896, + 47.896671428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9daf1c23a17fd7e6bcf683ec0b138a04343d4acf", + "fields": { + "ligne_5": "MACONCOURT", + "code_commune_insee": "52456", + "libelle_d_acheminement": "ST URBAIN MACONCOURT", + "code_postal": "52300", + "nom_de_la_commune": "ST URBAIN MACONCOURT", + "coordonnees_gps": [ + 48.3964570951, + 5.19639597902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19639597902, + 48.3964570951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06145ebcce5d216e6a783f8ba5c0d57b27a788e6", + "fields": { + "code_commune_insee": "52459", + "nom_de_la_commune": "SARCEY", + "code_postal": "52800", + "coordonnees_gps": [ + 48.057274539, + 5.29800666302 + ], + "libelle_d_acheminement": "SARCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29800666302, + 48.057274539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9eaa11d519bab1bd6846e5976a053fc529585c9d", + "fields": { + "ligne_5": "MONTSAON", + "code_commune_insee": "52469", + "libelle_d_acheminement": "SEMOUTIERS MONTSAON", + "code_postal": "52000", + "nom_de_la_commune": "SEMOUTIERS MONTSAON", + "coordonnees_gps": [ + 48.0638816661, + 5.05420561217 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05420561217, + 48.0638816661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae151e97ebef4051b01c1db35d80d162b2693049", + "fields": { + "code_commune_insee": "52480", + "nom_de_la_commune": "SONCOURT SUR MARNE", + "code_postal": "52320", + "coordonnees_gps": [ + 48.2487991823, + 5.091834409 + ], + "libelle_d_acheminement": "SONCOURT SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.091834409, + 48.2487991823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8717005149985e3d92d4a9645aa844e049997b18", + "fields": { + "code_commune_insee": "52488", + "nom_de_la_commune": "THIVET", + "code_postal": "52800", + "coordonnees_gps": [ + 47.9868961501, + 5.29966490039 + ], + "libelle_d_acheminement": "THIVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29966490039, + 47.9868961501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "075cff7370b6cb9f0a8fcec99ee5f3eef9505f64", + "fields": { + "code_commune_insee": "52489", + "nom_de_la_commune": "THOL LES MILLIERES", + "code_postal": "52240", + "coordonnees_gps": [ + 48.1470755546, + 5.47884380766 + ], + "libelle_d_acheminement": "THOL LES MILLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47884380766, + 48.1470755546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24d9267fc7a3ecbc14004907ab9b8a422221ccfa", + "fields": { + "code_commune_insee": "52490", + "nom_de_la_commune": "THONNANCE LES JOINVILLE", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4622070885, + 5.18737757983 + ], + "libelle_d_acheminement": "THONNANCE LES JOINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18737757983, + 48.4622070885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7898bfb71cbe5f9abf24e6a1c8615a90b1fbd3c6", + "fields": { + "ligne_5": "SOULAINCOURT", + "code_commune_insee": "52491", + "libelle_d_acheminement": "THONNANCE LES MOULINS", + "code_postal": "52230", + "nom_de_la_commune": "THONNANCE LES MOULINS", + "coordonnees_gps": [ + 48.4195754486, + 5.31434602015 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31434602015, + 48.4195754486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a405e9fb73ef637ac86ba4ab8673a7ad3e743a8", + "fields": { + "ligne_5": "AVRAINVILLE", + "code_commune_insee": "52497", + "libelle_d_acheminement": "TROISFONTAINES LA VILLE", + "code_postal": "52130", + "nom_de_la_commune": "TROISFONTAINES LA VILLE", + "coordonnees_gps": [ + 48.5429240485, + 5.00777358148 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00777358148, + 48.5429240485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c0b380a780c4f9f2769b383e74bd7875984a58f", + "fields": { + "ligne_5": "VILLIERS AUX BOIS", + "code_commune_insee": "52497", + "libelle_d_acheminement": "TROISFONTAINES LA VILLE", + "code_postal": "52130", + "nom_de_la_commune": "TROISFONTAINES LA VILLE", + "coordonnees_gps": [ + 48.5429240485, + 5.00777358148 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00777358148, + 48.5429240485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57a823c69ae012ba787468d5d5566f5deb95e41c", + "fields": { + "code_commune_insee": "52500", + "nom_de_la_commune": "VALCOURT", + "code_postal": "52100", + "coordonnees_gps": [ + 48.6111128881, + 4.9125468368 + ], + "libelle_d_acheminement": "VALCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9125468368, + 48.6111128881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b93457ae7df9d44194258cf8a022098de1830ca", + "fields": { + "code_commune_insee": "52507", + "nom_de_la_commune": "VAUXBONS", + "code_postal": "52200", + "coordonnees_gps": [ + 47.8824954846, + 5.13949772489 + ], + "libelle_d_acheminement": "VAUXBONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13949772489, + 47.8824954846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f18c34d25dbb095d04ca98098c909a220da08418", + "fields": { + "code_commune_insee": "52522", + "nom_de_la_commune": "VIEVILLE", + "code_postal": "52310", + "coordonnees_gps": [ + 48.2402822332, + 5.15871985577 + ], + "libelle_d_acheminement": "VIEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15871985577, + 48.2402822332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b71b54308fb4c132e47df770f99088a7cac181b2", + "fields": { + "code_commune_insee": "52525", + "nom_de_la_commune": "VILLARS EN AZOIS", + "code_postal": "52120", + "coordonnees_gps": [ + 48.0697572489, + 4.71940908337 + ], + "libelle_d_acheminement": "VILLARS EN AZOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71940908337, + 48.0697572489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "087e30864b871e64d556557214a5590ed62e0d01", + "fields": { + "code_commune_insee": "52528", + "nom_de_la_commune": "VILLE EN BLAISOIS", + "code_postal": "52130", + "coordonnees_gps": [ + 48.4412669126, + 4.95178954559 + ], + "libelle_d_acheminement": "VILLE EN BLAISOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95178954559, + 48.4412669126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19921140b39aafbfeb9081557123b33ac6facbc1", + "fields": { + "ligne_5": "PIEPAPE", + "code_commune_insee": "52529", + "libelle_d_acheminement": "VILLEGUSIEN LE LAC", + "code_postal": "52190", + "nom_de_la_commune": "VILLEGUSIEN LE LAC", + "coordonnees_gps": [ + 47.7309169271, + 5.31298003747 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31298003747, + 47.7309169271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bbed5abdc690dd820e24b0add3501ad9817932b", + "fields": { + "ligne_5": "ST MICHEL", + "code_commune_insee": "52529", + "libelle_d_acheminement": "VILLEGUSIEN LE LAC", + "code_postal": "52190", + "nom_de_la_commune": "VILLEGUSIEN LE LAC", + "coordonnees_gps": [ + 47.7309169271, + 5.31298003747 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31298003747, + 47.7309169271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4b9f2d618cb3b988f3e45d183769712121e5328", + "fields": { + "ligne_5": "HEUILLEY COTTON", + "code_commune_insee": "52529", + "libelle_d_acheminement": "VILLEGUSIEN LE LAC", + "code_postal": "52600", + "nom_de_la_commune": "VILLEGUSIEN LE LAC", + "coordonnees_gps": [ + 47.7309169271, + 5.31298003747 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31298003747, + 47.7309169271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d38586c3f911b6db0ea3957a3c195fc7a6fdf126", + "fields": { + "code_commune_insee": "52536", + "nom_de_la_commune": "VILLIERS LES APREY", + "code_postal": "52190", + "coordonnees_gps": [ + 47.7515735752, + 5.21966019441 + ], + "libelle_d_acheminement": "VILLIERS LES APREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21966019441, + 47.7515735752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94bbc3bc75f06951f40ae92164c228a16ba777af", + "fields": { + "code_commune_insee": "52541", + "nom_de_la_commune": "VITRY LES NOGENT", + "code_postal": "52800", + "coordonnees_gps": [ + 47.9866886616, + 5.3434828824 + ], + "libelle_d_acheminement": "VITRY LES NOGENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3434828824, + 47.9866886616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f095ee93c44be7d17a377ea852f8ea6547fbdebb", + "fields": { + "code_commune_insee": "52547", + "nom_de_la_commune": "VOUECOURT", + "code_postal": "52320", + "coordonnees_gps": [ + 48.2625820816, + 5.1581472867 + ], + "libelle_d_acheminement": "VOUECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1581472867, + 48.2625820816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4637095ac8c8001805d93301821a61b153c9088c", + "fields": { + "code_commune_insee": "52550", + "nom_de_la_commune": "WASSY", + "code_postal": "52130", + "coordonnees_gps": [ + 48.4994770394, + 4.93077661376 + ], + "libelle_d_acheminement": "WASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93077661376, + 48.4994770394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "128e63f78c3f66a21a2cbe1bd77b55f90ae9d745", + "fields": { + "code_commune_insee": "53007", + "nom_de_la_commune": "ARGENTRE", + "code_postal": "53210", + "coordonnees_gps": [ + 48.0906663644, + -0.632122843282 + ], + "libelle_d_acheminement": "ARGENTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.632122843282, + 48.0906663644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ef4fa8e9ebd783839e2515c488151270f04fe8e", + "fields": { + "code_commune_insee": "53009", + "nom_de_la_commune": "ARQUENAY", + "code_postal": "53170", + "coordonnees_gps": [ + 47.9860121101, + -0.588034521359 + ], + "libelle_d_acheminement": "ARQUENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.588034521359, + 47.9860121101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec7c6c5e67cee1021b006de26ca89acbc291d732", + "fields": { + "ligne_5": "BALLEE", + "code_commune_insee": "53017", + "libelle_d_acheminement": "VAL DU MAINE", + "code_postal": "53340", + "nom_de_la_commune": "VAL DU MAINE", + "coordonnees_gps": [ + 47.9369072798, + -0.415963016327 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.415963016327, + 47.9369072798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7865dc6c1752bf74d903be0d6bf32eed2b69a3dc", + "fields": { + "ligne_5": "EPINEUX LE SEGUIN", + "code_commune_insee": "53017", + "libelle_d_acheminement": "VAL DU MAINE", + "code_postal": "53340", + "nom_de_la_commune": "VAL DU MAINE", + "coordonnees_gps": [ + 47.9369072798, + -0.415963016327 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.415963016327, + 47.9369072798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9f63da0f6ad66369b46551c2796db16f9e57d40", + "fields": { + "ligne_5": "BIERNE", + "code_commune_insee": "53029", + "libelle_d_acheminement": "BIERNE LES VILLAGES", + "code_postal": "53290", + "nom_de_la_commune": "BIERNE LES VILLAGES", + "coordonnees_gps": [ + 47.8071088114, + -0.532804034432 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.532804034432, + 47.8071088114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec7d4db83df35e567e6f5e9935bca5090f629c86", + "fields": { + "code_commune_insee": "53041", + "nom_de_la_commune": "BRAINS SUR LES MARCHES", + "code_postal": "53350", + "coordonnees_gps": [ + 47.8834759384, + -1.17612675598 + ], + "libelle_d_acheminement": "BRAINS SUR LES MARCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17612675598, + 47.8834759384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29fba8b221a6e00139d354b2eb44bc55c087a815", + "fields": { + "code_commune_insee": "53051", + "nom_de_la_commune": "CHAMPEON", + "code_postal": "53640", + "coordonnees_gps": [ + 48.355940269, + -0.513101128528 + ], + "libelle_d_acheminement": "CHAMPEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.513101128528, + 48.355940269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "860e69065c6f0f0415428b4cb9bf452d59c65b28", + "fields": { + "code_commune_insee": "53055", + "nom_de_la_commune": "CHANTRIGNE", + "code_postal": "53300", + "coordonnees_gps": [ + 48.4131486304, + -0.55989625382 + ], + "libelle_d_acheminement": "CHANTRIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55989625382, + 48.4131486304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2791e3eb00620404a47eafe9321c1764b6ccf7ef", + "fields": { + "code_commune_insee": "53058", + "nom_de_la_commune": "LA CHAPELLE CRAONNAISE", + "code_postal": "53230", + "coordonnees_gps": [ + 47.9020169468, + -0.908547347571 + ], + "libelle_d_acheminement": "LA CHAPELLE CRAONNAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.908547347571, + 47.9020169468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b892034b7e2098b3105663ffeec9d4a61ae8b24f", + "fields": { + "code_commune_insee": "53059", + "nom_de_la_commune": "LA CHAPELLE RAINSOUIN", + "code_postal": "53150", + "coordonnees_gps": [ + 48.0968923633, + -0.527783702085 + ], + "libelle_d_acheminement": "LA CHAPELLE RAINSOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.527783702085, + 48.0968923633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58b076993753f1a0dcb1769bef83f6c4971a55af", + "fields": { + "ligne_5": "AZE", + "code_commune_insee": "53062", + "libelle_d_acheminement": "CHATEAU GONTIER SUR MAYENNE", + "code_postal": "53200", + "nom_de_la_commune": "CHATEAU GONTIER SUR MAYENNE", + "coordonnees_gps": [ + 47.8290067122, + -0.738721767875 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.738721767875, + 47.8290067122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e33abbc78012a4533f0590e8a4161da6aff2a706", + "fields": { + "ligne_5": "BAZOUGES", + "code_commune_insee": "53062", + "libelle_d_acheminement": "CHATEAU GONTIER SUR MAYENNE", + "code_postal": "53200", + "nom_de_la_commune": "CHATEAU GONTIER SUR MAYENNE", + "coordonnees_gps": [ + 47.8290067122, + -0.738721767875 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.738721767875, + 47.8290067122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "156c4d55589fe94c66f5aa0e5525eef7f46d2e83", + "fields": { + "code_commune_insee": "53080", + "nom_de_la_commune": "COUPTRAIN", + "code_postal": "53250", + "coordonnees_gps": [ + 48.482398086, + -0.291375085093 + ], + "libelle_d_acheminement": "COUPTRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.291375085093, + 48.482398086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "843cbd6d5aee4ffa4be76fa3a60d86766035698f", + "fields": { + "code_commune_insee": "53088", + "nom_de_la_commune": "CUILLE", + "code_postal": "53540", + "coordonnees_gps": [ + 47.9658362794, + -1.11498852858 + ], + "libelle_d_acheminement": "CUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11498852858, + 47.9658362794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b673bc648bbfd8841caea87fe755fafa70f8cb55", + "fields": { + "code_commune_insee": "53090", + "nom_de_la_commune": "DENAZE", + "code_postal": "53400", + "coordonnees_gps": [ + 47.8809039886, + -0.883191347382 + ], + "libelle_d_acheminement": "DENAZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.883191347382, + 47.8809039886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d72aa4fbdb730f68d81be62048efcdbf2a6e41a", + "fields": { + "code_commune_insee": "53093", + "nom_de_la_commune": "LA DOREE", + "code_postal": "53190", + "coordonnees_gps": [ + 48.4480675066, + -0.96796934022 + ], + "libelle_d_acheminement": "LA DOREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96796934022, + 48.4480675066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa3d5da6791eb26bf9e0bbcbae275c6f94d324be", + "fields": { + "ligne_5": "ST CHRISTOPHE DU LUAT", + "code_commune_insee": "53097", + "libelle_d_acheminement": "EVRON", + "code_postal": "53150", + "nom_de_la_commune": "EVRON", + "coordonnees_gps": [ + 48.1520198351, + -0.389270176708 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.389270176708, + 48.1520198351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d787bb7685b600b1a4411c67b6a457f10837058", + "fields": { + "code_commune_insee": "53099", + "nom_de_la_commune": "FORCE", + "code_postal": "53260", + "coordonnees_gps": [ + 48.0292171678, + -0.704215110969 + ], + "libelle_d_acheminement": "FORCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.704215110969, + 48.0292171678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3315ffefb11fcad2cf95fbeeb5501db13826432a", + "fields": { + "code_commune_insee": "53105", + "nom_de_la_commune": "GESNES", + "code_postal": "53150", + "coordonnees_gps": [ + 48.1503325044, + -0.593903165779 + ], + "libelle_d_acheminement": "GESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.593903165779, + 48.1503325044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b3e3de9e1005d5eee3991f6185947f3dba70e45", + "fields": { + "code_commune_insee": "53107", + "nom_de_la_commune": "GORRON", + "code_postal": "53120", + "coordonnees_gps": [ + 48.4219397405, + -0.8016203216 + ], + "libelle_d_acheminement": "GORRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8016203216, + 48.4219397405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f72aa2d6410af5ed7eaee27734f90eb642bcefdb", + "fields": { + "code_commune_insee": "53113", + "nom_de_la_commune": "HAMBERS", + "code_postal": "53160", + "coordonnees_gps": [ + 48.2543518824, + -0.425847827344 + ], + "libelle_d_acheminement": "HAMBERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.425847827344, + 48.2543518824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcfc92e3213905c8b9a065aab0a0068ca89c0528", + "fields": { + "code_commune_insee": "53115", + "nom_de_la_commune": "HERCE", + "code_postal": "53120", + "coordonnees_gps": [ + 48.4229725052, + -0.860571595419 + ], + "libelle_d_acheminement": "HERCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.860571595419, + 48.4229725052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3216766ac54ba6e7ca88459a3f58200a183ca97d", + "fields": { + "code_commune_insee": "53118", + "nom_de_la_commune": "LE HOUSSEAU BRETIGNOLLES", + "code_postal": "53110", + "coordonnees_gps": [ + 48.4707455149, + -0.537332465722 + ], + "libelle_d_acheminement": "LE HOUSSEAU BRETIGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.537332465722, + 48.4707455149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14827cb485213cac2f32b40e433e2d7cb3bbcc0e", + "fields": { + "code_commune_insee": "53135", + "nom_de_la_commune": "LIVRE LA TOUCHE", + "code_postal": "53400", + "coordonnees_gps": [ + 47.8891404451, + -0.992643026604 + ], + "libelle_d_acheminement": "LIVRE LA TOUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.992643026604, + 47.8891404451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff77aaea424a0f83691528a416c387b1ec074606", + "fields": { + "code_commune_insee": "53153", + "nom_de_la_commune": "MEZANGERS", + "code_postal": "53600", + "coordonnees_gps": [ + 48.2005441476, + -0.449609961038 + ], + "libelle_d_acheminement": "MEZANGERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.449609961038, + 48.2005441476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2406d060b2eca1f768c151d447e997cac9bd84e", + "fields": { + "code_commune_insee": "53156", + "nom_de_la_commune": "MONTFLOURS", + "code_postal": "53240", + "coordonnees_gps": [ + 48.1697752785, + -0.726176866371 + ], + "libelle_d_acheminement": "MONTFLOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.726176866371, + 48.1697752785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97c81b49adc93a342d90095c1aa6450efe49deff", + "fields": { + "code_commune_insee": "53157", + "nom_de_la_commune": "MONTIGNE LE BRILLANT", + "code_postal": "53970", + "coordonnees_gps": [ + 48.013438147, + -0.816955445143 + ], + "libelle_d_acheminement": "MONTIGNE LE BRILLANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.816955445143, + 48.013438147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77dce3662db0a872307cd8f9ceee3f178ca24774", + "fields": { + "ligne_5": "DEUX EVAILLES", + "code_commune_insee": "53161", + "libelle_d_acheminement": "MONTSURS", + "code_postal": "53150", + "nom_de_la_commune": "MONTSURS", + "coordonnees_gps": [ + 48.1342883147, + -0.552017747624 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.552017747624, + 48.1342883147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f29019bbb8e1ed07aedf6826ad6d457b5962a90e", + "fields": { + "ligne_5": "MONTOURTIER", + "code_commune_insee": "53161", + "libelle_d_acheminement": "MONTSURS", + "code_postal": "53150", + "nom_de_la_commune": "MONTSURS", + "coordonnees_gps": [ + 48.1342883147, + -0.552017747624 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.552017747624, + 48.1342883147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba5ae0d0661ff1b8580f9bfb95fde34a9cf617d", + "fields": { + "ligne_5": "ST OUEN DES VALLONS", + "code_commune_insee": "53161", + "libelle_d_acheminement": "MONTSURS", + "code_postal": "53150", + "nom_de_la_commune": "MONTSURS", + "coordonnees_gps": [ + 48.1342883147, + -0.552017747624 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.552017747624, + 48.1342883147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "115309ceedcfd4b04b9da6ddc8c2b74c17343314", + "fields": { + "code_commune_insee": "53176", + "nom_de_la_commune": "LE PAS", + "code_postal": "53300", + "coordonnees_gps": [ + 48.4219636252, + -0.694714292765 + ], + "libelle_d_acheminement": "LE PAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.694714292765, + 48.4219636252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6611551db0846f3816acdf6690a14c875f721d51", + "fields": { + "code_commune_insee": "53177", + "nom_de_la_commune": "LA PELLERINE", + "code_postal": "53220", + "coordonnees_gps": [ + 48.3204300872, + -1.03408740843 + ], + "libelle_d_acheminement": "LA PELLERINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03408740843, + 48.3204300872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10674abec3ff32668ed67c186f985cd1ca356225", + "fields": { + "code_commune_insee": "53178", + "nom_de_la_commune": "PEUTON", + "code_postal": "53360", + "coordonnees_gps": [ + 47.8891706831, + -0.813068776889 + ], + "libelle_d_acheminement": "PEUTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.813068776889, + 47.8891706831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edcd99bbce60e5e026438e662fc04b3242beaeff", + "fields": { + "ligne_5": "PRE EN PAIL", + "code_commune_insee": "53185", + "libelle_d_acheminement": "PRE EN PAIL ST SAMSON", + "code_postal": "53140", + "nom_de_la_commune": "PRE EN PAIL ST SAMSON", + "coordonnees_gps": [ + 48.4470393586, + -0.196704985828 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.196704985828, + 48.4470393586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a3bb9fc92bad005c8792a98cf7695c0e7ef6099", + "fields": { + "ligne_5": "ST GAULT", + "code_commune_insee": "53186", + "libelle_d_acheminement": "QUELAINES ST GAULT", + "code_postal": "53360", + "nom_de_la_commune": "QUELAINES ST GAULT", + "coordonnees_gps": [ + 47.9279241835, + -0.79917074746 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.79917074746, + 47.9279241835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f975057fb39b8521a360ba13f7a635e8b95ec98d", + "fields": { + "code_commune_insee": "53196", + "nom_de_la_commune": "ST AIGNAN DE COUPTRAIN", + "code_postal": "53250", + "coordonnees_gps": [ + 48.4595906728, + -0.301358440713 + ], + "libelle_d_acheminement": "ST AIGNAN DE COUPTRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.301358440713, + 48.4595906728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fed30c7c05e2aef7d375aab7146e4a57bfc4c1cb", + "fields": { + "code_commune_insee": "53219", + "nom_de_la_commune": "ST GEORGES BUTTAVENT", + "code_postal": "53100", + "coordonnees_gps": [ + 48.3009765177, + -0.709948140576 + ], + "libelle_d_acheminement": "ST GEORGES BUTTAVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.709948140576, + 48.3009765177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "725500be3635d1dfa59efbf143d6c3183439615f", + "fields": { + "code_commune_insee": "53225", + "nom_de_la_commune": "ST GERMAIN LE GUILLAUME", + "code_postal": "53240", + "coordonnees_gps": [ + 48.2074057351, + -0.827228115733 + ], + "libelle_d_acheminement": "ST GERMAIN LE GUILLAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.827228115733, + 48.2074057351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b22d9f7ba66ebff50396e912855118683573038", + "fields": { + "code_commune_insee": "53230", + "nom_de_la_commune": "ST JULIEN DU TERROUX", + "code_postal": "53110", + "coordonnees_gps": [ + 48.4835428783, + -0.409443392744 + ], + "libelle_d_acheminement": "ST JULIEN DU TERROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.409443392744, + 48.4835428783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1a6b2341ec62982aad9d97061ff060121305c42", + "fields": { + "code_commune_insee": "53237", + "nom_de_la_commune": "ST MARS SUR COLMONT", + "code_postal": "53300", + "coordonnees_gps": [ + 48.3829153295, + -0.708965390881 + ], + "libelle_d_acheminement": "ST MARS SUR COLMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.708965390881, + 48.3829153295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cdb9b9aa43c4787df000871a0dabf2eb880cf3e", + "fields": { + "code_commune_insee": "53240", + "nom_de_la_commune": "ST MARTIN DU LIMET", + "code_postal": "53800", + "coordonnees_gps": [ + 47.8147228072, + -1.02874130308 + ], + "libelle_d_acheminement": "ST MARTIN DU LIMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02874130308, + 47.8147228072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "930475cd8380dbf6a57c4b37f44b9d9f08484ed3", + "fields": { + "code_commune_insee": "53246", + "nom_de_la_commune": "ST PIERRE DES NIDS", + "code_postal": "53370", + "coordonnees_gps": [ + 48.3981189139, + -0.108578317473 + ], + "libelle_d_acheminement": "ST PIERRE DES NIDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.108578317473, + 48.3981189139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96eee073fa64eb655383f6340c676fb4f40b7bb0", + "fields": { + "code_commune_insee": "53266", + "nom_de_la_commune": "TRANS", + "code_postal": "53160", + "coordonnees_gps": [ + 48.2832532915, + -0.308341418341 + ], + "libelle_d_acheminement": "TRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.308341418341, + 48.2832532915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a8e606da9c18ffa40067bd246e221d249c66783", + "fields": { + "code_commune_insee": "54012", + "nom_de_la_commune": "AMANCE", + "code_postal": "54770", + "coordonnees_gps": [ + 48.754963401, + 6.30928287834 + ], + "libelle_d_acheminement": "AMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30928287834, + 48.754963401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1971e4a597fb27962ae9de51504ecb54420e898c", + "fields": { + "code_commune_insee": "54015", + "nom_de_la_commune": "ANDERNY", + "code_postal": "54560", + "coordonnees_gps": [ + 49.3356448662, + 5.88195094203 + ], + "libelle_d_acheminement": "ANDERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88195094203, + 49.3356448662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "245a2e919e58a79250548869abcb8dfc4c353b5c", + "fields": { + "code_commune_insee": "54017", + "nom_de_la_commune": "ANGOMONT", + "code_postal": "54540", + "coordonnees_gps": [ + 48.504868026, + 6.97199355795 + ], + "libelle_d_acheminement": "ANGOMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97199355795, + 48.504868026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97699d59755a865f600a8053e19698d074affbc5", + "fields": { + "code_commune_insee": "54018", + "nom_de_la_commune": "ANOUX", + "code_postal": "54150", + "coordonnees_gps": [ + 49.2727570971, + 5.8647091829 + ], + "libelle_d_acheminement": "ANOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8647091829, + 49.2727570971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aecb70751431eab51795417d9eec6529e2671e98", + "fields": { + "ligne_5": "BOSSERVILLE", + "code_commune_insee": "54025", + "libelle_d_acheminement": "ART SUR MEURTHE", + "code_postal": "54510", + "nom_de_la_commune": "ART SUR MEURTHE", + "coordonnees_gps": [ + 48.6605653469, + 6.26295482069 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26295482069, + 48.6605653469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bc2a0af4f3883eb3cd21e7ab24a9f2e2eb7f9d8", + "fields": { + "code_commune_insee": "54027", + "nom_de_la_commune": "ATTON", + "code_postal": "54700", + "coordonnees_gps": [ + 48.892928495, + 6.11100019961 + ], + "libelle_d_acheminement": "ATTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11100019961, + 48.892928495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27d461dfcec482cd9f393c14738e3f027513fbaf", + "fields": { + "code_commune_insee": "54028", + "nom_de_la_commune": "AUBOUE", + "code_postal": "54580", + "coordonnees_gps": [ + 49.2112474141, + 5.97509767363 + ], + "libelle_d_acheminement": "AUBOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97509767363, + 49.2112474141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e7d00031992b12b2ccfa847d8f8899d268902bb", + "fields": { + "code_commune_insee": "54031", + "nom_de_la_commune": "AUTREVILLE SUR MOSELLE", + "code_postal": "54380", + "coordonnees_gps": [ + 48.8287005082, + 6.10778514599 + ], + "libelle_d_acheminement": "AUTREVILLE SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10778514599, + 48.8287005082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d1d5ef40a73d6c91a65bacf1e24f5f3d4491bef", + "fields": { + "code_commune_insee": "54040", + "nom_de_la_commune": "BADONVILLER", + "code_postal": "54540", + "coordonnees_gps": [ + 48.4949206323, + 6.91010597045 + ], + "libelle_d_acheminement": "BADONVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91010597045, + 48.4949206323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fea2c468003e628b70274bf73eb2c59bee187a4b", + "fields": { + "code_commune_insee": "54046", + "nom_de_la_commune": "BARISEY AU PLAIN", + "code_postal": "54170", + "coordonnees_gps": [ + 48.5234474389, + 5.85202368314 + ], + "libelle_d_acheminement": "BARISEY AU PLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85202368314, + 48.5234474389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c92378b2114d4a4261f641edbcfec6ffa93d78c3", + "fields": { + "code_commune_insee": "54052", + "nom_de_la_commune": "BATTIGNY", + "code_postal": "54115", + "coordonnees_gps": [ + 48.4439079418, + 5.98482135856 + ], + "libelle_d_acheminement": "BATTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98482135856, + 48.4439079418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e059d442c7274995927b15d854ecd738ba9f8ba2", + "fields": { + "code_commune_insee": "54053", + "nom_de_la_commune": "BAUZEMONT", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6709985624, + 6.53100828935 + ], + "libelle_d_acheminement": "BAUZEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53100828935, + 48.6709985624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4629f3abe6b52c4f639d6f169b3778161bd9c08", + "fields": { + "code_commune_insee": "54054", + "nom_de_la_commune": "BAYON", + "code_postal": "54290", + "coordonnees_gps": [ + 48.479603201, + 6.32139080605 + ], + "libelle_d_acheminement": "BAYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32139080605, + 48.479603201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8b5b1b7f760a6d06b1b2c7c4229fbf22940ffd8", + "fields": { + "code_commune_insee": "54064", + "nom_de_la_commune": "BERTRAMBOIS", + "code_postal": "54480", + "coordonnees_gps": [ + 48.576979378, + 7.01618231059 + ], + "libelle_d_acheminement": "BERTRAMBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01618231059, + 48.576979378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e9bdfaa62f79215644f16925f61492a4de8a93b", + "fields": { + "code_commune_insee": "54066", + "nom_de_la_commune": "BETTAINVILLERS", + "code_postal": "54640", + "coordonnees_gps": [ + 49.2970531393, + 5.90972467758 + ], + "libelle_d_acheminement": "BETTAINVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90972467758, + 49.2970531393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37d27abaad0c8994c11a40fcc67c928e1f08693e", + "fields": { + "code_commune_insee": "54077", + "nom_de_la_commune": "BLAMONT", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5905345206, + 6.84253315857 + ], + "libelle_d_acheminement": "BLAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84253315857, + 48.5905345206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8ca02fd5b06c25f6aeb770ff6f50cd0375b711e", + "fields": { + "code_commune_insee": "54085", + "nom_de_la_commune": "BORVILLE", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4474994656, + 6.3973303641 + ], + "libelle_d_acheminement": "BORVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3973303641, + 48.4474994656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "add6b03a492879a7f322ec8f9b56cd605e3d2def", + "fields": { + "code_commune_insee": "54089", + "nom_de_la_commune": "BOUXIERES AUX CHENES", + "code_postal": "54770", + "coordonnees_gps": [ + 48.7728236838, + 6.27141981463 + ], + "libelle_d_acheminement": "BOUXIERES AUX CHENES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27141981463, + 48.7728236838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ab2932da5ca7565ba4842bd8a0469ea0f4ff7bd", + "fields": { + "code_commune_insee": "54091", + "nom_de_la_commune": "BOUXIERES SOUS FROIDMONT", + "code_postal": "54700", + "coordonnees_gps": [ + 48.9553164791, + 6.10140466054 + ], + "libelle_d_acheminement": "BOUXIERES SOUS FROIDMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10140466054, + 48.9553164791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fffca3b654e196f7c9954da6829ba9f7aabc78a3", + "fields": { + "ligne_5": "MANCIEULLES", + "code_commune_insee": "54099", + "libelle_d_acheminement": "VAL DE BRIEY", + "code_postal": "54790", + "nom_de_la_commune": "VAL DE BRIEY", + "coordonnees_gps": [ + 49.2557914726, + 5.97046491466 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97046491466, + 49.2557914726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f87b18c9a188d7d24776775327c9155fe7ba770", + "fields": { + "code_commune_insee": "54112", + "nom_de_la_commune": "CHAMBLEY BUSSIERES", + "code_postal": "54890", + "coordonnees_gps": [ + 49.051934493, + 5.91549235178 + ], + "libelle_d_acheminement": "CHAMBLEY BUSSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91549235178, + 49.051934493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5809e4b5a6929926b291a2928898389dc737e15", + "fields": { + "code_commune_insee": "54115", + "nom_de_la_commune": "CHAMPIGNEULLES", + "code_postal": "54250", + "coordonnees_gps": [ + 48.7209128078, + 6.12290248432 + ], + "libelle_d_acheminement": "CHAMPIGNEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12290248432, + 48.7209128078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09c711bea044f339c83a307ba5033c4b82c6efa3", + "fields": { + "code_commune_insee": "54116", + "nom_de_la_commune": "CHANTEHEUX", + "code_postal": "54300", + "coordonnees_gps": [ + 48.5935603101, + 6.53792470418 + ], + "libelle_d_acheminement": "CHANTEHEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53792470418, + 48.5935603101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39d860af783da913965c790f70fa794c781124b3", + "fields": { + "code_commune_insee": "54121", + "nom_de_la_commune": "CHARMOIS", + "code_postal": "54360", + "coordonnees_gps": [ + 48.5345693782, + 6.38928827568 + ], + "libelle_d_acheminement": "CHARMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38928827568, + 48.5345693782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a11986bd9909413a3fcc954b715bacdbb4672bb", + "fields": { + "code_commune_insee": "54125", + "nom_de_la_commune": "CHENEVIERES", + "code_postal": "54122", + "coordonnees_gps": [ + 48.5218297908, + 6.63786246234 + ], + "libelle_d_acheminement": "CHENEVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63786246234, + 48.5218297908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22f774475b228fd61c0889280d6d604627c156c9", + "fields": { + "code_commune_insee": "54131", + "nom_de_la_commune": "CLEMERY", + "code_postal": "54610", + "coordonnees_gps": [ + 48.8830969785, + 6.18034249181 + ], + "libelle_d_acheminement": "CLEMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18034249181, + 48.8830969785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "662fa6942dfbd56d787c4129b241016519a7e72d", + "fields": { + "ligne_5": "VAUX WARNIMONT", + "code_commune_insee": "54138", + "libelle_d_acheminement": "COSNES ET ROMAIN", + "code_postal": "54400", + "nom_de_la_commune": "COSNES ET ROMAIN", + "coordonnees_gps": [ + 49.525596238, + 5.71659969266 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71659969266, + 49.525596238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3135a40b64154c2f299c6b361a6a69504738a86d", + "fields": { + "code_commune_insee": "54141", + "nom_de_la_commune": "COYVILLER", + "code_postal": "54210", + "coordonnees_gps": [ + 48.5853465771, + 6.28322914765 + ], + "libelle_d_acheminement": "COYVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28322914765, + 48.5853465771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "191cad80cccede979761fbef0d2f683c40f612ac", + "fields": { + "code_commune_insee": "54142", + "nom_de_la_commune": "CRANTENOY", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4671335804, + 6.23200302278 + ], + "libelle_d_acheminement": "CRANTENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23200302278, + 48.4671335804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5739324f0040bb4be13c4a9337bfa791a5e9ea84", + "fields": { + "code_commune_insee": "54145", + "nom_de_la_commune": "CREVIC", + "code_postal": "54110", + "coordonnees_gps": [ + 48.6397116744, + 6.40645781055 + ], + "libelle_d_acheminement": "CREVIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40645781055, + 48.6397116744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51f820f28e0c1b3142933504056b2aa354af8c3f", + "fields": { + "code_commune_insee": "54151", + "nom_de_la_commune": "CUTRY", + "code_postal": "54720", + "coordonnees_gps": [ + 49.4812435903, + 5.73774950796 + ], + "libelle_d_acheminement": "CUTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73774950796, + 49.4812435903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb04cae00a787ac901733d928ba9d8a1c9d9c2d5", + "fields": { + "code_commune_insee": "54159", + "nom_de_la_commune": "DOMBASLE SUR MEURTHE", + "code_postal": "54110", + "coordonnees_gps": [ + 48.6191265471, + 6.36071318649 + ], + "libelle_d_acheminement": "DOMBASLE SUR MEURTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36071318649, + 48.6191265471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e0f887a0116a1efb3815bad4d4ed8585ea78129", + "fields": { + "code_commune_insee": "54165", + "nom_de_la_commune": "DOMMARTEMONT", + "code_postal": "54130", + "coordonnees_gps": [ + 48.7171280907, + 6.21562801792 + ], + "libelle_d_acheminement": "DOMMARTEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21562801792, + 48.7171280907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4555689bff4422e79d85c9b9c5c24b64dc3e4907", + "fields": { + "code_commune_insee": "54174", + "nom_de_la_commune": "ECROUVES", + "code_postal": "54200", + "coordonnees_gps": [ + 48.6801928361, + 5.84268931795 + ], + "libelle_d_acheminement": "ECROUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84268931795, + 48.6801928361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "284f0474311afbbe0ad1853919dfa91643d88d84", + "fields": { + "code_commune_insee": "54177", + "nom_de_la_commune": "EMBERMENIL", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6376861214, + 6.68261184638 + ], + "libelle_d_acheminement": "EMBERMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68261184638, + 48.6376861214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "201319835b95b9840efcb18b083d6427ba096d42", + "fields": { + "code_commune_insee": "54186", + "nom_de_la_commune": "EULMONT", + "code_postal": "54690", + "coordonnees_gps": [ + 48.7501265245, + 6.22215042658 + ], + "libelle_d_acheminement": "EULMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22215042658, + 48.7501265245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81f3f5fb0be9334960f5d54a9fc92027f8b6042b", + "fields": { + "code_commune_insee": "54193", + "nom_de_la_commune": "FEY EN HAYE", + "code_postal": "54470", + "coordonnees_gps": [ + 48.9053568805, + 5.96408309137 + ], + "libelle_d_acheminement": "FEY EN HAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96408309137, + 48.9053568805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff933c2a7d3466e937afe0411ad7a0a775ea3910", + "fields": { + "code_commune_insee": "54197", + "nom_de_la_commune": "FLEVILLE DEVANT NANCY", + "code_postal": "54710", + "coordonnees_gps": [ + 48.629778591, + 6.20386362626 + ], + "libelle_d_acheminement": "FLEVILLE DEVANT NANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20386362626, + 48.629778591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e6768f76a88878127c023ccc5c0a2f918cffc71", + "fields": { + "code_commune_insee": "54198", + "nom_de_la_commune": "FLEVILLE LIXIERES", + "code_postal": "54150", + "coordonnees_gps": [ + 49.2429244428, + 5.81464794353 + ], + "libelle_d_acheminement": "FLEVILLE LIXIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81464794353, + 49.2429244428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fad4316aaaaad1346db21f9dbd79472c50fe0a00", + "fields": { + "code_commune_insee": "54202", + "nom_de_la_commune": "FONTENOY SUR MOSELLE", + "code_postal": "54840", + "coordonnees_gps": [ + 48.7076893045, + 5.99112188418 + ], + "libelle_d_acheminement": "FONTENOY SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99112188418, + 48.7076893045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d8accbe992205ae5672ffc816bb2334716d4088", + "fields": { + "code_commune_insee": "54207", + "nom_de_la_commune": "FRAISNES EN SAINTOIS", + "code_postal": "54930", + "coordonnees_gps": [ + 48.3742055671, + 6.06091955537 + ], + "libelle_d_acheminement": "FRAISNES EN SAINTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06091955537, + 48.3742055671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1351c6306759b1f58e6c67185414a47ccba2052e", + "fields": { + "code_commune_insee": "54211", + "nom_de_la_commune": "FREMONVILLE", + "code_postal": "54450", + "coordonnees_gps": [ + 48.6052485765, + 6.90329247833 + ], + "libelle_d_acheminement": "FREMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90329247833, + 48.6052485765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa4927485b391f263d70d959519b41adb22ed6d3", + "fields": { + "code_commune_insee": "54220", + "nom_de_la_commune": "GEMONVILLE", + "code_postal": "54115", + "coordonnees_gps": [ + 48.4196063205, + 5.88362556401 + ], + "libelle_d_acheminement": "GEMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88362556401, + 48.4196063205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "538cd74438cc18274538bfa61f9d14c2e68f5cce", + "fields": { + "code_commune_insee": "54229", + "nom_de_la_commune": "GLONVILLE", + "code_postal": "54122", + "coordonnees_gps": [ + 48.4576693426, + 6.68733022075 + ], + "libelle_d_acheminement": "GLONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68733022075, + 48.4576693426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cccc09aacfc319f72ff15d1fc8ad1ca8381f51e", + "fields": { + "code_commune_insee": "54241", + "nom_de_la_commune": "GUGNEY", + "code_postal": "54930", + "coordonnees_gps": [ + 48.3953048359, + 6.05847657517 + ], + "libelle_d_acheminement": "GUGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05847657517, + 48.3953048359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75d5c9751e88f112dade4125e9da4645d78762d7", + "fields": { + "code_commune_insee": "54242", + "nom_de_la_commune": "GYE", + "code_postal": "54113", + "coordonnees_gps": [ + 48.6248391973, + 5.87737525004 + ], + "libelle_d_acheminement": "GYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87737525004, + 48.6248391973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f51112de773fbadd0c687fbe4cc628773287b93d", + "fields": { + "code_commune_insee": "54261", + "nom_de_la_commune": "HERSERANGE", + "code_postal": "54440", + "coordonnees_gps": [ + 49.5184653931, + 5.79248530225 + ], + "libelle_d_acheminement": "HERSERANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79248530225, + 49.5184653931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47fe70abea576933876e519e33fb627c96b2904d", + "fields": { + "code_commune_insee": "54264", + "nom_de_la_commune": "HOUDELMONT", + "code_postal": "54330", + "coordonnees_gps": [ + 48.5366637219, + 6.09333663622 + ], + "libelle_d_acheminement": "HOUDELMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09333663622, + 48.5366637219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d58f72fcef6dca67015206dff346ff31bf619bd", + "fields": { + "code_commune_insee": "54274", + "nom_de_la_commune": "JARVILLE LA MALGRANGE", + "code_postal": "54140", + "coordonnees_gps": [ + 48.6671595811, + 6.20465347403 + ], + "libelle_d_acheminement": "JARVILLE LA MALGRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20465347403, + 48.6671595811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe4151983ff1ce99373b9aff5c32f96bf0490587", + "fields": { + "code_commune_insee": "54279", + "nom_de_la_commune": "JEZAINVILLE", + "code_postal": "54700", + "coordonnees_gps": [ + 48.8646635968, + 6.01606284838 + ], + "libelle_d_acheminement": "JEZAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01606284838, + 48.8646635968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62e490997383901f1b067b60cf7419f4cea3ff68", + "fields": { + "code_commune_insee": "54295", + "nom_de_la_commune": "LANDRES", + "code_postal": "54970", + "coordonnees_gps": [ + 49.3186906023, + 5.80755122322 + ], + "libelle_d_acheminement": "LANDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80755122322, + 49.3186906023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3c425334d841c442f059dc47f4084520c116b80", + "fields": { + "code_commune_insee": "54297", + "nom_de_la_commune": "LANEUVEVILLE AUX BOIS", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6227293259, + 6.64543068381 + ], + "libelle_d_acheminement": "LANEUVEVILLE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64543068381, + 48.6227293259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ae41e610f2e8030f04d83988c8bf28bb39ed7ba", + "fields": { + "code_commune_insee": "54299", + "nom_de_la_commune": "LANEUVEVILLE DEVANT BAYON", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4708279009, + 6.26388852498 + ], + "libelle_d_acheminement": "LANEUVEVILLE DEVANT BAYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26388852498, + 48.4708279009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "208aa7dad0f1e8eb562c0debbf314fa6f982b58f", + "fields": { + "code_commune_insee": "54304", + "nom_de_la_commune": "LAXOU", + "code_postal": "54520", + "coordonnees_gps": [ + 48.6822062614, + 6.11358630152 + ], + "libelle_d_acheminement": "LAXOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11358630152, + 48.6822062614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e33b96797cddd2b1d7e8856735289a0702c2f48", + "fields": { + "code_commune_insee": "54310", + "nom_de_la_commune": "LEMENIL MITRY", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4531451229, + 6.25492080273 + ], + "libelle_d_acheminement": "LEMENIL MITRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25492080273, + 48.4531451229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0ce5e5e976f41138db5e2af862b4c9f84d213f4", + "fields": { + "code_commune_insee": "54312", + "nom_de_la_commune": "LESMENILS", + "code_postal": "54700", + "coordonnees_gps": [ + 48.9314670902, + 6.11072851248 + ], + "libelle_d_acheminement": "LESMENILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11072851248, + 48.9314670902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abdb221e8364f48f5b45d1338a982940fd873cd9", + "fields": { + "code_commune_insee": "54322", + "nom_de_la_commune": "LONGUYON", + "code_postal": "54260", + "coordonnees_gps": [ + 49.4583667355, + 5.59176459376 + ], + "libelle_d_acheminement": "LONGUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59176459376, + 49.4583667355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d48624209c3dce3269825cd11e67c45dd095e4bf", + "fields": { + "code_commune_insee": "54323", + "nom_de_la_commune": "LONGWY", + "code_postal": "54400", + "coordonnees_gps": [ + 49.5214021779, + 5.76638370702 + ], + "libelle_d_acheminement": "LONGWY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76638370702, + 49.5214021779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec91c3d43a8af9de5b871b9e8973e63db43037bb", + "fields": { + "code_commune_insee": "54326", + "nom_de_la_commune": "LUBEY", + "code_postal": "54150", + "coordonnees_gps": [ + 49.2440280069, + 5.85466048345 + ], + "libelle_d_acheminement": "LUBEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85466048345, + 49.2440280069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9c1787d0305cbdebc2c9e9230d2c23a3d5cdd32", + "fields": { + "code_commune_insee": "54350", + "nom_de_la_commune": "MARAINVILLER", + "code_postal": "54300", + "coordonnees_gps": [ + 48.597994773, + 6.60823842119 + ], + "libelle_d_acheminement": "MARAINVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60823842119, + 48.597994773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2bfc39f5530070188c65d232159cddf387635c3", + "fields": { + "code_commune_insee": "54358", + "nom_de_la_commune": "MAZERULLES", + "code_postal": "54280", + "coordonnees_gps": [ + 48.7552760519, + 6.37935633386 + ], + "libelle_d_acheminement": "MAZERULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37935633386, + 48.7552760519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a797922973b485be600cbda386703b69bb85628b", + "fields": { + "code_commune_insee": "54362", + "nom_de_la_commune": "MERCY LE BAS", + "code_postal": "54960", + "coordonnees_gps": [ + 49.3854191289, + 5.75848432242 + ], + "libelle_d_acheminement": "MERCY LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75848432242, + 49.3854191289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9d90aa16a5e0117b2138969497448c6e7418dba", + "fields": { + "code_commune_insee": "54365", + "nom_de_la_commune": "MERVILLER", + "code_postal": "54120", + "coordonnees_gps": [ + 48.4739799839, + 6.77926594668 + ], + "libelle_d_acheminement": "MERVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77926594668, + 48.4739799839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d66508f8f36ad4a173c58517b8a7dced1f69dca", + "fields": { + "code_commune_insee": "54372", + "nom_de_la_commune": "MOIVRONS", + "code_postal": "54760", + "coordonnees_gps": [ + 48.8281038737, + 6.24784004204 + ], + "libelle_d_acheminement": "MOIVRONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24784004204, + 48.8281038737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56fcc3a57d18ca1da936b3f88239fcbc333352cc", + "fields": { + "code_commune_insee": "54375", + "nom_de_la_commune": "MONTAUVILLE", + "code_postal": "54700", + "coordonnees_gps": [ + 48.8961507252, + 6.00139029586 + ], + "libelle_d_acheminement": "MONTAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00139029586, + 48.8961507252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28381676e344566051578faa969b880c3cd7dbc9", + "fields": { + "code_commune_insee": "54377", + "nom_de_la_commune": "MONTIGNY", + "code_postal": "54540", + "coordonnees_gps": [ + 48.5137501502, + 6.80331187595 + ], + "libelle_d_acheminement": "MONTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80331187595, + 48.5137501502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c6d3df2e3f34090c5ba0fea2dd9816dc59365e8", + "fields": { + "code_commune_insee": "54381", + "nom_de_la_commune": "MONTREUX", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5354543018, + 6.88782007418 + ], + "libelle_d_acheminement": "MONTREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88782007418, + 48.5354543018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8726de7e128ce367936d35d89944db4643687095", + "fields": { + "code_commune_insee": "54383", + "nom_de_la_commune": "MONT SUR MEURTHE", + "code_postal": "54360", + "coordonnees_gps": [ + 48.5493164912, + 6.44216065788 + ], + "libelle_d_acheminement": "MONT SUR MEURTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44216065788, + 48.5493164912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22edcc2999ac85eedf86eb4fbd7b6605ce9eaa53", + "fields": { + "code_commune_insee": "54386", + "nom_de_la_commune": "MORIVILLER", + "code_postal": "54830", + "coordonnees_gps": [ + 48.4809875123, + 6.44040977493 + ], + "libelle_d_acheminement": "MORIVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44040977493, + 48.4809875123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26fdf756107461ca1beea4b3782c3f79a26ccc33", + "fields": { + "code_commune_insee": "54394", + "nom_de_la_commune": "MURVILLE", + "code_postal": "54490", + "coordonnees_gps": [ + 49.3429418953, + 5.83086554021 + ], + "libelle_d_acheminement": "MURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83086554021, + 49.3429418953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6abb267417d087bee78d71420d0812640cecaf6", + "fields": { + "code_commune_insee": "54406", + "nom_de_la_commune": "OGEVILLER", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5513307344, + 6.71800139721 + ], + "libelle_d_acheminement": "OGEVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71800139721, + 48.5513307344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24ff9a79296632f2cf9c1805be201717cb3277ba", + "fields": { + "code_commune_insee": "54408", + "nom_de_la_commune": "OLLEY", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1731372736, + 5.76773239103 + ], + "libelle_d_acheminement": "OLLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76773239103, + 49.1731372736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7226b7488294278630a267b589d606cc5c53a64e", + "fields": { + "code_commune_insee": "54412", + "nom_de_la_commune": "OTHE", + "code_postal": "54260", + "coordonnees_gps": [ + 49.4911452642, + 5.44705837235 + ], + "libelle_d_acheminement": "OTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44705837235, + 49.4911452642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a34accd427f61846ae65cc29c735eeaec0010d26", + "fields": { + "code_commune_insee": "54418", + "nom_de_la_commune": "PARROY", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6685304259, + 6.60820341709 + ], + "libelle_d_acheminement": "PARROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60820341709, + 48.6685304259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95b693ffcd2a573b90a8216b1d934e9b0fec2f87", + "fields": { + "code_commune_insee": "54421", + "nom_de_la_commune": "PETITMONT", + "code_postal": "54480", + "coordonnees_gps": [ + 48.5464573608, + 6.97419828123 + ], + "libelle_d_acheminement": "PETITMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97419828123, + 48.5464573608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "564b67db5481f54343c15b416fcb9a8003f70408", + "fields": { + "code_commune_insee": "54425", + "nom_de_la_commune": "PIENNES", + "code_postal": "54490", + "coordonnees_gps": [ + 49.3073950571, + 5.78383056316 + ], + "libelle_d_acheminement": "PIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78383056316, + 49.3073950571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f2f0d7cc5b663c0fb79fc83cb36bfc661103b26", + "fields": { + "code_commune_insee": "54427", + "nom_de_la_commune": "PIERRE PERCEE", + "code_postal": "54540", + "coordonnees_gps": [ + 48.4646115258, + 6.93843634408 + ], + "libelle_d_acheminement": "PIERRE PERCEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93843634408, + 48.4646115258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5e57565f09b95773a5029f96d91caf4515f83eb", + "fields": { + "code_commune_insee": "54432", + "nom_de_la_commune": "PONT ST VINCENT", + "code_postal": "54550", + "coordonnees_gps": [ + 48.6093470317, + 6.07504458865 + ], + "libelle_d_acheminement": "PONT ST VINCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07504458865, + 48.6093470317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "838c4ec17cf7936d8c908e7f5eb32b6d8f05ef7b", + "fields": { + "code_commune_insee": "54434", + "nom_de_la_commune": "PRAYE", + "code_postal": "54116", + "coordonnees_gps": [ + 48.437631952, + 6.11147744521 + ], + "libelle_d_acheminement": "PRAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11147744521, + 48.437631952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1b846cf290daab3c81018c9a9b12fdcdb04934e", + "fields": { + "code_commune_insee": "54438", + "nom_de_la_commune": "PULNEY", + "code_postal": "54115", + "coordonnees_gps": [ + 48.3909723712, + 6.03248056928 + ], + "libelle_d_acheminement": "PULNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03248056928, + 48.3909723712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "531ef038ee75166266a9af7a83248888b3799e66", + "fields": { + "code_commune_insee": "54442", + "nom_de_la_commune": "QUEVILLONCOURT", + "code_postal": "54330", + "coordonnees_gps": [ + 48.4715134849, + 6.10533295975 + ], + "libelle_d_acheminement": "QUEVILLONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10533295975, + 48.4715134849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "443b14e218ad7d9fe4982f94a8e784a67f051418", + "fields": { + "code_commune_insee": "54445", + "nom_de_la_commune": "RAVILLE SUR SANON", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6515330352, + 6.51008948493 + ], + "libelle_d_acheminement": "RAVILLE SUR SANON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51008948493, + 48.6515330352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd2eee79e975654663b2bd9439a4a624a97eade9", + "fields": { + "code_commune_insee": "54451", + "nom_de_la_commune": "REHON", + "code_postal": "54430", + "coordonnees_gps": [ + 49.4995747303, + 5.75731520354 + ], + "libelle_d_acheminement": "REHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75731520354, + 49.4995747303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e495a3a7b2959c81369110473a84eb2156496015", + "fields": { + "code_commune_insee": "54452", + "nom_de_la_commune": "REILLON", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5988717503, + 6.74314976627 + ], + "libelle_d_acheminement": "REILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74314976627, + 48.5988717503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "540d1eeacb2bd6ba25cc391570681e8f48a09570", + "fields": { + "code_commune_insee": "54465", + "nom_de_la_commune": "ROVILLE DEVANT BAYON", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4673083609, + 6.29365271914 + ], + "libelle_d_acheminement": "ROVILLE DEVANT BAYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29365271914, + 48.4673083609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa26d0a63fdd4bb2ae6fa5e08a5535dd02c9c259", + "fields": { + "ligne_5": "HAM LES ST JEAN", + "code_commune_insee": "54476", + "libelle_d_acheminement": "ST JEAN LES LONGUYON", + "code_postal": "54260", + "nom_de_la_commune": "ST JEAN LES LONGUYON", + "coordonnees_gps": [ + 49.4555490143, + 5.48860106808 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48860106808, + 49.4555490143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1244dd70aeb3a2f3d53eda1ae60ae78363f5e05d", + "fields": { + "code_commune_insee": "54477", + "nom_de_la_commune": "ST JULIEN LES GORZE", + "code_postal": "54470", + "coordonnees_gps": [ + 49.0182448248, + 5.90427864143 + ], + "libelle_d_acheminement": "ST JULIEN LES GORZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90427864143, + 49.0182448248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c88e4f7c1b3a29ebc0aff5c41d33daf2b4bcc988", + "fields": { + "code_commune_insee": "54484", + "nom_de_la_commune": "STE POLE", + "code_postal": "54540", + "coordonnees_gps": [ + 48.5055231931, + 6.83057236429 + ], + "libelle_d_acheminement": "STE POLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83057236429, + 48.5055231931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5af964f74002133532bffe4e20579927d89168dc", + "fields": { + "code_commune_insee": "54496", + "nom_de_la_commune": "SAULXURES LES VANNES", + "code_postal": "54170", + "coordonnees_gps": [ + 48.5191491895, + 5.80050793813 + ], + "libelle_d_acheminement": "SAULXURES LES VANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80050793813, + 48.5191491895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81b5861ddd33092c439ba92d6bdfb0d0fae5fc08", + "fields": { + "code_commune_insee": "54499", + "nom_de_la_commune": "SEICHEPREY", + "code_postal": "54470", + "coordonnees_gps": [ + 48.8686282676, + 5.7957979909 + ], + "libelle_d_acheminement": "SEICHEPREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7957979909, + 48.8686282676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63eb1a9dbb50e64b73e2c9317c7249f698c33871", + "fields": { + "code_commune_insee": "54513", + "nom_de_la_commune": "TANTONVILLE", + "code_postal": "54116", + "coordonnees_gps": [ + 48.4672751108, + 6.13754525709 + ], + "libelle_d_acheminement": "TANTONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13754525709, + 48.4672751108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35937fa78bfbed3fb4405f10b3920e6677c6302c", + "fields": { + "code_commune_insee": "54514", + "nom_de_la_commune": "TELLANCOURT", + "code_postal": "54260", + "coordonnees_gps": [ + 49.5089556847, + 5.6298875124 + ], + "libelle_d_acheminement": "TELLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6298875124, + 49.5089556847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3cc5e550e0c3573c0aeb61f2a1f3500fc3f5e61", + "fields": { + "code_commune_insee": "54526", + "nom_de_la_commune": "TOMBLAINE", + "code_postal": "54510", + "coordonnees_gps": [ + 48.6859541528, + 6.22129283302 + ], + "libelle_d_acheminement": "TOMBLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22129283302, + 48.6859541528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc373a03cae94894598946a11d4c41c0b17a875c", + "fields": { + "code_commune_insee": "54528", + "nom_de_la_commune": "TOUL", + "code_postal": "54200", + "coordonnees_gps": [ + 48.6865463937, + 5.89508449535 + ], + "libelle_d_acheminement": "TOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89508449535, + 48.6865463937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da46b6fd6a41c66ca98b152a4a0048c551ba5d00", + "fields": { + "code_commune_insee": "54536", + "nom_de_la_commune": "TUCQUEGNIEUX", + "code_postal": "54640", + "coordonnees_gps": [ + 49.3071016735, + 5.89392083172 + ], + "libelle_d_acheminement": "TUCQUEGNIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89392083172, + 49.3071016735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de3792ccb5163048073129d3a41691a267e0e7ca", + "fields": { + "code_commune_insee": "54545", + "nom_de_la_commune": "VANDELEVILLE", + "code_postal": "54115", + "coordonnees_gps": [ + 48.4246792766, + 5.99150166147 + ], + "libelle_d_acheminement": "VANDELEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99150166147, + 48.4246792766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "870d23f191029d6a40fc36849faede1d22682a1d", + "fields": { + "code_commune_insee": "54553", + "nom_de_la_commune": "VAUDEVILLE", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4549633063, + 6.20876642137 + ], + "libelle_d_acheminement": "VAUDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20876642137, + 48.4549633063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b9428ab33204ce56cbb26d7f2d99126ef329d92", + "fields": { + "code_commune_insee": "54555", + "nom_de_la_commune": "VAXAINVILLE", + "code_postal": "54120", + "coordonnees_gps": [ + 48.5200456427, + 6.75581373849 + ], + "libelle_d_acheminement": "VAXAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75581373849, + 48.5200456427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7e33532aa6bf24738e24df70cb019f9a06bd2ee", + "fields": { + "code_commune_insee": "54562", + "nom_de_la_commune": "VERDENAL", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5875978822, + 6.80463240253 + ], + "libelle_d_acheminement": "VERDENAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80463240253, + 48.5875978822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93f4f2280c58d999a05972b21bd1b9d015f40927", + "fields": { + "code_commune_insee": "54566", + "nom_de_la_commune": "VILCEY SUR TREY", + "code_postal": "54700", + "coordonnees_gps": [ + 48.9396903192, + 5.95866589461 + ], + "libelle_d_acheminement": "VILCEY SUR TREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95866589461, + 48.9396903192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02318e8e7d1aae87a347f656bb2cca4e9aca2736", + "fields": { + "code_commune_insee": "54569", + "nom_de_la_commune": "VILLE AU VAL", + "code_postal": "54380", + "coordonnees_gps": [ + 48.8410567772, + 6.13005453194 + ], + "libelle_d_acheminement": "VILLE AU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13005453194, + 48.8410567772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e27489670d361bc6cf127ef5e6e0a7a2a74962a", + "fields": { + "code_commune_insee": "54572", + "nom_de_la_commune": "VILLE HOUDLEMONT", + "code_postal": "54730", + "coordonnees_gps": [ + 49.5391091104, + 5.65720411208 + ], + "libelle_d_acheminement": "VILLE HOUDLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65720411208, + 49.5391091104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3abdc01a8b02fffd7055c9f7a6816ec8155481c7", + "fields": { + "code_commune_insee": "54581", + "nom_de_la_commune": "VILLE SUR YRON", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1209779475, + 5.87272709272 + ], + "libelle_d_acheminement": "VILLE SUR YRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87272709272, + 49.1209779475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f40064409c62276abb0937faf42e05e288c2a262", + "fields": { + "code_commune_insee": "54584", + "nom_de_la_commune": "VILLEY ST ETIENNE", + "code_postal": "54200", + "coordonnees_gps": [ + 48.7281187821, + 5.96351375096 + ], + "libelle_d_acheminement": "VILLEY ST ETIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96351375096, + 48.7281187821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8e2b5110466da5fb33259db56fbbc7a17a32d44", + "fields": { + "code_commune_insee": "54599", + "nom_de_la_commune": "XONVILLE", + "code_postal": "54800", + "coordonnees_gps": [ + 49.0569615023, + 5.85606886475 + ], + "libelle_d_acheminement": "XONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85606886475, + 49.0569615023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f680a6d6962017d852cd4453cc38028713736c57", + "fields": { + "code_commune_insee": "55001", + "nom_de_la_commune": "ABAINVILLE", + "code_postal": "55130", + "coordonnees_gps": [ + 48.5326982449, + 5.51524727317 + ], + "libelle_d_acheminement": "ABAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51524727317, + 48.5326982449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4b72e75e149d06ef2b82169addf349f54fe7c6c", + "fields": { + "code_commune_insee": "55004", + "nom_de_la_commune": "AINCREVILLE", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3697469375, + 5.11617164649 + ], + "libelle_d_acheminement": "AINCREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11617164649, + 49.3697469375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d38e2e083113da90740b89f80dffba21fc9b3d79", + "fields": { + "code_commune_insee": "55010", + "nom_de_la_commune": "ANCERVILLE", + "code_postal": "55170", + "coordonnees_gps": [ + 48.6399125992, + 5.02373888302 + ], + "libelle_d_acheminement": "ANCERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02373888302, + 48.6399125992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d8b6b5a7858db250c49a83a9faaac5e10ef7c5f", + "fields": { + "ligne_5": "LIOUVILLE", + "code_commune_insee": "55012", + "libelle_d_acheminement": "APREMONT LA FORET", + "code_postal": "55300", + "nom_de_la_commune": "APREMONT LA FORET", + "coordonnees_gps": [ + 48.8438751454, + 5.62186076093 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62186076093, + 48.8438751454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01e28d8ba9806f856599d42cdaa61110b0b5329a", + "fields": { + "code_commune_insee": "55014", + "nom_de_la_commune": "AUBREVILLE", + "code_postal": "55120", + "coordonnees_gps": [ + 49.1557767788, + 5.09477198919 + ], + "libelle_d_acheminement": "AUBREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09477198919, + 49.1557767788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6b1a7cb20216eb30157e9e106c4ff62a6aa4046", + "fields": { + "code_commune_insee": "55017", + "nom_de_la_commune": "AUTRECOURT SUR AIRE", + "code_postal": "55120", + "coordonnees_gps": [ + 49.031056488, + 5.13983417646 + ], + "libelle_d_acheminement": "AUTRECOURT SUR AIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13983417646, + 49.031056488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebcdf022a3b0ce24a8da50812974c0b903e1fed9", + "fields": { + "code_commune_insee": "55022", + "nom_de_la_commune": "AVIOTH", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5663158104, + 5.39049784871 + ], + "libelle_d_acheminement": "AVIOTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39049784871, + 49.5663158104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "588b48ca77dc147974cbf1acbe5a28a0de004a71", + "fields": { + "code_commune_insee": "55023", + "nom_de_la_commune": "AVOCOURT", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2032158089, + 5.14229694314 + ], + "libelle_d_acheminement": "AVOCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14229694314, + 49.2032158089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6cf71b4e2a3d2d4fcdfb3be4bb2f2507cb130fd", + "fields": { + "code_commune_insee": "55024", + "nom_de_la_commune": "AZANNES ET SOUMAZANNES", + "code_postal": "55150", + "coordonnees_gps": [ + 49.2932309678, + 5.46797824659 + ], + "libelle_d_acheminement": "AZANNES ET SOUMAZANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46797824659, + 49.2932309678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5aa913cdf8ff7d2951db32fae58900137a26aeed", + "fields": { + "code_commune_insee": "55029", + "nom_de_la_commune": "BAR LE DUC", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7642280465, + 5.16346492169 + ], + "libelle_d_acheminement": "BAR LE DUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16346492169, + 48.7642280465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d351e9fd337854e9fa2670ab899109dcda7a2f95", + "fields": { + "code_commune_insee": "55031", + "nom_de_la_commune": "BAUDONVILLIERS", + "code_postal": "55170", + "coordonnees_gps": [ + 48.6886339013, + 5.00566539287 + ], + "libelle_d_acheminement": "BAUDONVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00566539287, + 48.6886339013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32b754585429bc5c41acabfc59c71a312b1659d7", + "fields": { + "code_commune_insee": "55034", + "nom_de_la_commune": "BAZEILLES SUR OTHAIN", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5004142337, + 5.4263378414 + ], + "libelle_d_acheminement": "BAZEILLES SUR OTHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4263378414, + 49.5004142337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "274ec873a151a642d212759667aa12f933839b75", + "fields": { + "code_commune_insee": "55037", + "nom_de_la_commune": "BEAUFORT EN ARGONNE", + "code_postal": "55700", + "coordonnees_gps": [ + 49.4796313426, + 5.10765410387 + ], + "libelle_d_acheminement": "BEAUFORT EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10765410387, + 49.4796313426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50fcf23a6fe26e2d14bb8d6bc62abc79a86e3a5b", + "fields": { + "code_commune_insee": "55044", + "nom_de_la_commune": "BELRAIN", + "code_postal": "55260", + "coordonnees_gps": [ + 48.8638222263, + 5.30723615462 + ], + "libelle_d_acheminement": "BELRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30723615462, + 48.8638222263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb359516d355d0f05cf5d27feac6ff0374c367ff", + "fields": { + "code_commune_insee": "55049", + "nom_de_la_commune": "BEUREY SUR SAULX", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7566689617, + 5.02891767706 + ], + "libelle_d_acheminement": "BEUREY SUR SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02891767706, + 48.7566689617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75d2bc03224977c78df826c25a646abf3989f58a", + "fields": { + "code_commune_insee": "55054", + "nom_de_la_commune": "BISLEE", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8731963735, + 5.51011218092 + ], + "libelle_d_acheminement": "BISLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51011218092, + 48.8731963735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6972a06c9d7c024b0bb882d2a87e2222a083a14", + "fields": { + "code_commune_insee": "55059", + "nom_de_la_commune": "BONNET", + "code_postal": "55130", + "coordonnees_gps": [ + 48.5253805044, + 5.42592334072 + ], + "libelle_d_acheminement": "BONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42592334072, + 48.5253805044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e81fb42b5ecc55b25b3447b3baedf9ffb12532d", + "fields": { + "ligne_5": "MESNIL SOUS LES COTES", + "code_commune_insee": "55060", + "libelle_d_acheminement": "BONZEE", + "code_postal": "55160", + "nom_de_la_commune": "BONZEE", + "coordonnees_gps": [ + 49.0904854762, + 5.56470845413 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56470845413, + 49.0904854762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a513af5c3a4bc67d6caed371ef14825fd9ef4001", + "fields": { + "code_commune_insee": "55061", + "nom_de_la_commune": "LE BOUCHON SUR SAULX", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6090454105, + 5.22782104309 + ], + "libelle_d_acheminement": "LE BOUCHON SUR SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22782104309, + 48.6090454105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57ce83b225ecce1adfafaaa42a185589608de7c8", + "fields": { + "code_commune_insee": "55070", + "nom_de_la_commune": "BRABANT SUR MEUSE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.2783588274, + 5.32831788043 + ], + "libelle_d_acheminement": "BRABANT SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32831788043, + 49.2783588274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a4abfa7d7dfac519db7fc83721408cc8df316b3", + "fields": { + "code_commune_insee": "55077", + "nom_de_la_commune": "BREUX", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5917827257, + 5.39399299667 + ], + "libelle_d_acheminement": "BREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39399299667, + 49.5917827257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8e1c8a1899f6350ca24e506f907ab9355c4e59b", + "fields": { + "code_commune_insee": "55084", + "nom_de_la_commune": "BROUSSEY EN BLOIS", + "code_postal": "55190", + "coordonnees_gps": [ + 48.6345506518, + 5.55128932739 + ], + "libelle_d_acheminement": "BROUSSEY EN BLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55128932739, + 48.6345506518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99ed151afebfca2f3100fa1e6618e05218050c62", + "fields": { + "ligne_5": "RAULECOURT", + "code_commune_insee": "55085", + "libelle_d_acheminement": "BROUSSEY RAULECOURT", + "code_postal": "55200", + "nom_de_la_commune": "BROUSSEY RAULECOURT", + "coordonnees_gps": [ + 48.81452443, + 5.71880607657 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71880607657, + 48.81452443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e49a26eccfda1087a70c38cb5347c6954131f2a", + "fields": { + "code_commune_insee": "55093", + "nom_de_la_commune": "BUXIERES SOUS LES COTES", + "code_postal": "55300", + "coordonnees_gps": [ + 48.9063587971, + 5.6783526742 + ], + "libelle_d_acheminement": "BUXIERES SOUS LES COTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6783526742, + 48.9063587971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3543e576a4fb2ec85ec7f6d3f0743de0ee97da8c", + "fields": { + "ligne_5": "BUXERULLES", + "code_commune_insee": "55093", + "libelle_d_acheminement": "BUXIERES SOUS LES COTES", + "code_postal": "55300", + "nom_de_la_commune": "BUXIERES SOUS LES COTES", + "coordonnees_gps": [ + 48.9063587971, + 5.6783526742 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6783526742, + 48.9063587971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe0323899aa0ac03a43bbf2ac81ec8647715e3a3", + "fields": { + "code_commune_insee": "55094", + "nom_de_la_commune": "BUZY DARMONT", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1747296825, + 5.70639284211 + ], + "libelle_d_acheminement": "BUZY DARMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70639284211, + 49.1747296825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f7d3c837d6f11aed2182fe6442d991c6c96de0a", + "fields": { + "code_commune_insee": "55096", + "nom_de_la_commune": "CHAILLON", + "code_postal": "55210", + "coordonnees_gps": [ + 48.949711014, + 5.64307884217 + ], + "libelle_d_acheminement": "CHAILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64307884217, + 48.949711014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecd6fc1dcf796f7b6a8dcfb0a9ce4de395cd10cf", + "fields": { + "code_commune_insee": "55102", + "nom_de_la_commune": "CHARNY SUR MEUSE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.203830142, + 5.3418897321 + ], + "libelle_d_acheminement": "CHARNY SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3418897321, + 49.203830142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf72488e99f2d718341e8a228bfb3578fd92b183", + "fields": { + "code_commune_insee": "55106", + "nom_de_la_commune": "CHATTANCOURT", + "code_postal": "55100", + "coordonnees_gps": [ + 49.2160851171, + 5.26496953074 + ], + "libelle_d_acheminement": "CHATTANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26496953074, + 49.2160851171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fedd46d8ee93d87caea74a51ffc2eddbd4cee6c3", + "fields": { + "code_commune_insee": "55108", + "nom_de_la_commune": "CHAUMONT SUR AIRE", + "code_postal": "55260", + "coordonnees_gps": [ + 48.9255521315, + 5.26979694314 + ], + "libelle_d_acheminement": "CHAUMONT SUR AIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26979694314, + 48.9255521315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20f8cd20321281956bccc023111b0ae24d303d1b", + "fields": { + "code_commune_insee": "55111", + "nom_de_la_commune": "CHAUVONCOURT", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8925104825, + 5.49858002466 + ], + "libelle_d_acheminement": "CHAUVONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49858002466, + 48.8925104825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43b14d070e802696a67216cecfb13037767177bb", + "fields": { + "code_commune_insee": "55115", + "nom_de_la_commune": "CIERGES SOUS MONTFAUCON", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2994621445, + 5.0933177343 + ], + "libelle_d_acheminement": "CIERGES SOUS MONTFAUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0933177343, + 49.2994621445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "734587feccded5fc9db0f56c79c69d886ead8c16", + "fields": { + "code_commune_insee": "55117", + "nom_de_la_commune": "CLERMONT EN ARGONNE", + "code_postal": "55120", + "coordonnees_gps": [ + 49.1085070366, + 5.08060353165 + ], + "libelle_d_acheminement": "CLERMONT EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08060353165, + 49.1085070366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bb4b3ac7343936f0e1830912169976d89e55a46", + "fields": { + "ligne_5": "GENICOURT SOUS CONDE", + "code_commune_insee": "55123", + "libelle_d_acheminement": "LES HAUTS DE CHEE", + "code_postal": "55000", + "nom_de_la_commune": "LES HAUTS DE CHEE", + "coordonnees_gps": [ + 48.8683371725, + 5.16520708778 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16520708778, + 48.8683371725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59f92a9cbdb9fdb5558ab01e7a9b2affab379571", + "fields": { + "code_commune_insee": "55129", + "nom_de_la_commune": "COUROUVRE", + "code_postal": "55260", + "coordonnees_gps": [ + 48.9406652212, + 5.35286669289 + ], + "libelle_d_acheminement": "COUROUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35286669289, + 48.9406652212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f363859afb12783aa31634fd4e1260ef3460c2b", + "fields": { + "nom_de_la_commune": "CULEY", + "code_postal": "55000", + "code_commune_insee": "55138", + "libelle_d_acheminement": "CULEY" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a6f5558d99ba2f5836420f7071890ef7249ccaa", + "fields": { + "code_commune_insee": "55143", + "nom_de_la_commune": "DAMLOUP", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1993965237, + 5.49261552169 + ], + "libelle_d_acheminement": "DAMLOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49261552169, + 49.1993965237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3845445222ddc6ee646b193b680df60825c43cf", + "fields": { + "code_commune_insee": "55145", + "nom_de_la_commune": "DAMVILLERS", + "code_postal": "55150", + "coordonnees_gps": [ + 49.34338311, + 5.41492141505 + ], + "libelle_d_acheminement": "DAMVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41492141505, + 49.34338311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a8be69f679a99d9d9120b9ebae700fac434fd79", + "fields": { + "code_commune_insee": "55146", + "nom_de_la_commune": "DANNEVOUX", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3046381081, + 5.22673976949 + ], + "libelle_d_acheminement": "DANNEVOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22673976949, + 49.3046381081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "665d538adb59e44cd01361d09b1683a1dd0bbbc8", + "fields": { + "ligne_5": "BAUDIGNECOURT", + "code_commune_insee": "55150", + "libelle_d_acheminement": "DEMANGE BAUDIGNECOURT", + "code_postal": "55130", + "nom_de_la_commune": "DEMANGE BAUDIGNECOURT", + "coordonnees_gps": [ + 48.5915243717, + 5.47266149936 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47266149936, + 48.5915243717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ad44241fa71b15bc7175dad66e65a35b6368fdb", + "fields": { + "code_commune_insee": "55153", + "nom_de_la_commune": "DIEPPE SOUS DOUAUMONT", + "code_postal": "55400", + "coordonnees_gps": [ + 49.2195718638, + 5.51909425729 + ], + "libelle_d_acheminement": "DIEPPE SOUS DOUAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51909425729, + 49.2195718638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eeac2de348d1513226cd7422843e666d02b1fc1", + "fields": { + "code_commune_insee": "55182", + "nom_de_la_commune": "ETON", + "code_postal": "55240", + "coordonnees_gps": [ + 49.2639037682, + 5.68791098189 + ], + "libelle_d_acheminement": "ETON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68791098189, + 49.2639037682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a88aa132fa3b169df9ffb6498222602dee2565a", + "fields": { + "code_commune_insee": "55183", + "nom_de_la_commune": "ETRAYE", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3271973903, + 5.35601277253 + ], + "libelle_d_acheminement": "ETRAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35601277253, + 49.3271973903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "930e3615cfc0e02c819402fdc93e928bc3ada746", + "fields": { + "ligne_5": "AULNOIS SOUS VERTUZEY", + "code_commune_insee": "55184", + "libelle_d_acheminement": "EUVILLE", + "code_postal": "55200", + "nom_de_la_commune": "EUVILLE", + "coordonnees_gps": [ + 48.7444024501, + 5.64512103609 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64512103609, + 48.7444024501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbf6a789a7b41e671cb1186ae460c411ed98f222", + "fields": { + "ligne_5": "VILLE ISSEY", + "code_commune_insee": "55184", + "libelle_d_acheminement": "EUVILLE", + "code_postal": "55200", + "nom_de_la_commune": "EUVILLE", + "coordonnees_gps": [ + 48.7444024501, + 5.64512103609 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64512103609, + 48.7444024501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "700480be425589907aecb5f7d116048aedacc64a", + "fields": { + "code_commune_insee": "55191", + "nom_de_la_commune": "FOAMEIX ORNEL", + "code_postal": "55400", + "coordonnees_gps": [ + 49.238852622, + 5.6078648482 + ], + "libelle_d_acheminement": "FOAMEIX ORNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6078648482, + 49.238852622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14f23f7caca1135abcea66fd39ec8eaed718345f", + "fields": { + "code_commune_insee": "55212", + "nom_de_la_commune": "GIRAUVOISIN", + "code_postal": "55200", + "coordonnees_gps": [ + 48.80548383, + 5.63225535857 + ], + "libelle_d_acheminement": "GIRAUVOISIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63225535857, + 48.80548383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be0f4f5d25cc22cd92560e6d720344723aef1651", + "fields": { + "code_commune_insee": "55214", + "nom_de_la_commune": "GIVRAUVAL", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6577603039, + 5.31810746284 + ], + "libelle_d_acheminement": "GIVRAUVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31810746284, + 48.6577603039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3de92b9166819da1d5e30f8c640f6cfe2d9f2fa5", + "fields": { + "code_commune_insee": "55220", + "nom_de_la_commune": "GRIMAUCOURT PRES SAMPIGNY", + "code_postal": "55500", + "coordonnees_gps": [ + 48.7837595557, + 5.46509066709 + ], + "libelle_d_acheminement": "GRIMAUCOURT PRES SAMPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46509066709, + 48.7837595557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7044596602680d249a0679768f8e6194a66a46dd", + "fields": { + "ligne_5": "BRASSEITTE", + "code_commune_insee": "55229", + "libelle_d_acheminement": "HAN SUR MEUSE", + "code_postal": "55300", + "nom_de_la_commune": "HAN SUR MEUSE", + "coordonnees_gps": [ + 48.856313295, + 5.54572440463 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54572440463, + 48.856313295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdf2db3221a5022da6a4b09a3a725ff8eccc7f57", + "fields": { + "code_commune_insee": "55239", + "nom_de_la_commune": "HAUMONT PRES SAMOGNEUX", + "code_postal": "55100", + "coordonnees_gps": [ + 49.2758081538, + 5.36911759313 + ], + "libelle_d_acheminement": "HAUMONT PRES SAMOGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36911759313, + 49.2758081538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c5b79c8926dcf3d6e07ed1b2553e1ebf70d023a", + "fields": { + "code_commune_insee": "55244", + "nom_de_la_commune": "HERMEVILLE EN WOEVRE", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1775489001, + 5.6019344626 + ], + "libelle_d_acheminement": "HERMEVILLE EN WOEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6019344626, + 49.1775489001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d64dd1535bbf7f1cf8972433bb1aa9891325275b", + "fields": { + "code_commune_insee": "55245", + "nom_de_la_commune": "HEUDICOURT SOUS LES COTES", + "code_postal": "55210", + "coordonnees_gps": [ + 48.938354511, + 5.69786732895 + ], + "libelle_d_acheminement": "HEUDICOURT SOUS LES COTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69786732895, + 48.938354511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7939834dba8d9be79093f6299126da1532cdfa7", + "fields": { + "code_commune_insee": "55251", + "nom_de_la_commune": "IPPECOURT", + "code_postal": "55220", + "coordonnees_gps": [ + 49.0379722386, + 5.2114576271 + ], + "libelle_d_acheminement": "IPPECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2114576271, + 49.0379722386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "175ce88b04a8cdc2c50fd987676cb351386271d6", + "fields": { + "code_commune_insee": "55252", + "nom_de_la_commune": "IRE LE SEC", + "code_postal": "55600", + "coordonnees_gps": [ + 49.4734793135, + 5.39668662619 + ], + "libelle_d_acheminement": "IRE LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39668662619, + 49.4734793135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4976d0a19f71e02bac407e2f87f228f3ca0dd85c", + "fields": { + "ligne_5": "ISSONCOURT", + "code_commune_insee": "55254", + "libelle_d_acheminement": "LES TROIS DOMAINES", + "code_postal": "55220", + "nom_de_la_commune": "LES TROIS DOMAINES", + "coordonnees_gps": [ + 48.9707289763, + 5.28179879783 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28179879783, + 48.9707289763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b408d5f713948625751cbb730eb81a6add44164b", + "fields": { + "code_commune_insee": "55256", + "nom_de_la_commune": "JONVILLE EN WOEVRE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.0653727638, + 5.77605703237 + ], + "libelle_d_acheminement": "JONVILLE EN WOEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77605703237, + 49.0653727638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6814dc1d3437754fcf45b5004c0d14c2135783b", + "fields": { + "ligne_5": "GIRONVILLE SOUS LES COTES", + "code_commune_insee": "55258", + "libelle_d_acheminement": "GEVILLE", + "code_postal": "55200", + "nom_de_la_commune": "GEVILLE", + "coordonnees_gps": [ + 48.7799328844, + 5.70340084835 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70340084835, + 48.7799328844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2c8c4249a80f714d2a0b4e66cad3d331527a9bc", + "fields": { + "code_commune_insee": "55261", + "nom_de_la_commune": "JUVIGNY EN PERTHOIS", + "code_postal": "55170", + "coordonnees_gps": [ + 48.5973061129, + 5.16335627452 + ], + "libelle_d_acheminement": "JUVIGNY EN PERTHOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16335627452, + 48.5973061129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e24559fd6a0b64513269d100dc6788e5d7017e6", + "fields": { + "code_commune_insee": "55262", + "nom_de_la_commune": "JUVIGNY SUR LOISON", + "code_postal": "55600", + "coordonnees_gps": [ + 49.4608506316, + 5.33129815426 + ], + "libelle_d_acheminement": "JUVIGNY SUR LOISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33129815426, + 49.4608506316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "205b0c18d9a9b88c5fd49ee494ddd90bb67e2f99", + "fields": { + "code_commune_insee": "55280", + "nom_de_la_commune": "LANHERES", + "code_postal": "55400", + "coordonnees_gps": [ + 49.2082886446, + 5.71133805157 + ], + "libelle_d_acheminement": "LANHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71133805157, + 49.2082886446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5f7a575b5c4108084bb79ee72597fe741ac94d7", + "fields": { + "code_commune_insee": "55290", + "nom_de_la_commune": "LIGNIERES SUR AIRE", + "code_postal": "55260", + "coordonnees_gps": [ + 48.8104118654, + 5.39217105616 + ], + "libelle_d_acheminement": "LIGNIERES SUR AIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39217105616, + 48.8104118654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2b194506cf5cb6ea268a1953f8eb570bdf42628", + "fields": { + "code_commune_insee": "55291", + "nom_de_la_commune": "LIGNY EN BARROIS", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6621088949, + 5.2962935372 + ], + "libelle_d_acheminement": "LIGNY EN BARROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2962935372, + 48.6621088949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cd443bf0330de88729f3ca165dba716c79a97d6", + "fields": { + "code_commune_insee": "55293", + "nom_de_la_commune": "LION DEVANT DUN", + "code_postal": "55110", + "coordonnees_gps": [ + 49.4174380341, + 5.25307410301 + ], + "libelle_d_acheminement": "LION DEVANT DUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25307410301, + 49.4174380341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e814ab24e43a607148c70475f5b97b50d027d54", + "fields": { + "code_commune_insee": "55302", + "nom_de_la_commune": "LONGEVILLE EN BARROIS", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7386917643, + 5.20324681568 + ], + "libelle_d_acheminement": "LONGEVILLE EN BARROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20324681568, + 48.7386917643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "494368a044e06dc8155249a949e005e7db45aa44", + "fields": { + "code_commune_insee": "55316", + "nom_de_la_commune": "MANGIENNES", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3459600586, + 5.52912697423 + ], + "libelle_d_acheminement": "MANGIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52912697423, + 49.3459600586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fe117b7594a20064f5ccadb413e98ba3682d312", + "fields": { + "code_commune_insee": "55320", + "nom_de_la_commune": "MARCHEVILLE EN WOEVRE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.0877081896, + 5.68164816489 + ], + "libelle_d_acheminement": "MARCHEVILLE EN WOEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68164816489, + 49.0877081896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22b49c2282fa9cea8c62da97a7e6cec22a61fb14", + "fields": { + "code_commune_insee": "55325", + "nom_de_la_commune": "MAUCOURT SUR ORNE", + "code_postal": "55400", + "coordonnees_gps": [ + 49.2531133882, + 5.51686707572 + ], + "libelle_d_acheminement": "MAUCOURT SUR ORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51686707572, + 49.2531133882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38d3cc782be198621b45c9ea31678249dd6ffdc4", + "fields": { + "code_commune_insee": "55331", + "nom_de_la_commune": "MELIGNY LE PETIT", + "code_postal": "55190", + "coordonnees_gps": [ + 48.6557409409, + 5.47216568886 + ], + "libelle_d_acheminement": "MELIGNY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47216568886, + 48.6557409409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f28929e7c353636c8f87f05802e4584d63554686", + "fields": { + "code_commune_insee": "55334", + "nom_de_la_commune": "MENIL LA HORGNE", + "code_postal": "55190", + "coordonnees_gps": [ + 48.7009354685, + 5.53155497656 + ], + "libelle_d_acheminement": "MENIL LA HORGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53155497656, + 48.7009354685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4360a4e6fcec065e819a0fa0ff6d3f9e5d3061f", + "fields": { + "ligne_5": "CREPION", + "code_commune_insee": "55341", + "libelle_d_acheminement": "MOIREY FLABAS CREPION", + "code_postal": "55150", + "nom_de_la_commune": "MOIREY FLABAS CREPION", + "coordonnees_gps": [ + 49.298309748, + 5.39163772407 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39163772407, + 49.298309748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3fbda9de60107c105b4c23eef7600678178ff8c", + "fields": { + "code_commune_insee": "55346", + "nom_de_la_commune": "MONTFAUCON D ARGONNE", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2564181066, + 5.13457463823 + ], + "libelle_d_acheminement": "MONTFAUCON D ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13457463823, + 49.2564181066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a18da07b384a5decca10dd9b2a35edf8869ab565", + "fields": { + "code_commune_insee": "55348", + "nom_de_la_commune": "MONTIERS SUR SAULX", + "code_postal": "55290", + "coordonnees_gps": [ + 48.5435992409, + 5.26905976425 + ], + "libelle_d_acheminement": "MONTIERS SUR SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26905976425, + 48.5435992409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cb62a9ce460ea5302025a433ccbc688493c22cd", + "fields": { + "code_commune_insee": "55349", + "nom_de_la_commune": "MONTIGNY DEVANT SASSEY", + "code_postal": "55110", + "coordonnees_gps": [ + 49.4269988159, + 5.13768878129 + ], + "libelle_d_acheminement": "MONTIGNY DEVANT SASSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13768878129, + 49.4269988159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9c07006e50c442b1041c7b3eace543213e1610e", + "fields": { + "code_commune_insee": "55355", + "nom_de_la_commune": "MONTZEVILLE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.1881158405, + 5.21643042708 + ], + "libelle_d_acheminement": "MONTZEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21643042708, + 49.1881158405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14d1e9aa8029be673acadefd56239e5b1d9cc59a", + "fields": { + "code_commune_insee": "55356", + "nom_de_la_commune": "MORANVILLE", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1788762926, + 5.54050637938 + ], + "libelle_d_acheminement": "MORANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54050637938, + 49.1788762926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e67a7c253489be661db6d2a34f0bd3a3fb6559f2", + "fields": { + "code_commune_insee": "55358", + "nom_de_la_commune": "CHANTERAINE", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6785463151, + 5.39088582965 + ], + "libelle_d_acheminement": "CHANTERAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39088582965, + 48.6785463151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4818c3d498c6499e8fa8582020e423535bd41e5", + "fields": { + "ligne_5": "CHENNEVIERES", + "code_commune_insee": "55358", + "libelle_d_acheminement": "CHANTERAINE", + "code_postal": "55500", + "nom_de_la_commune": "CHANTERAINE", + "coordonnees_gps": [ + 48.6785463151, + 5.39088582965 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39088582965, + 48.6785463151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff06e673bedbdac6ae6a2f3a97d65d9681cf16ca", + "fields": { + "code_commune_insee": "55359", + "nom_de_la_commune": "MORLEY", + "code_postal": "55290", + "coordonnees_gps": [ + 48.5749796805, + 5.22473568305 + ], + "libelle_d_acheminement": "MORLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22473568305, + 48.5749796805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be33cfc0f9f0e453ac0fa4df1968666bd2b6a34c", + "fields": { + "code_commune_insee": "55364", + "nom_de_la_commune": "MOUZAY", + "code_postal": "55700", + "coordonnees_gps": [ + 49.4497659783, + 5.23933878643 + ], + "libelle_d_acheminement": "MOUZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23933878643, + 49.4497659783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38cc6b16e41fa1645eb7fe13e2b438d7c1311c02", + "fields": { + "code_commune_insee": "55374", + "nom_de_la_commune": "NANT LE PETIT", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6517674687, + 5.22623977721 + ], + "libelle_d_acheminement": "NANT LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22623977721, + 48.6517674687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0169bfec3c03f2a5125e13660245b5a30dfab895", + "fields": { + "ligne_5": "LAMARCHE EN WOEVRE", + "code_commune_insee": "55386", + "libelle_d_acheminement": "NONSARD LAMARCHE", + "code_postal": "55210", + "nom_de_la_commune": "NONSARD LAMARCHE", + "coordonnees_gps": [ + 48.9387436314, + 5.75541848294 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75541848294, + 48.9387436314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3678c42abb751ce46ea6bb103006b8befd6100ae", + "fields": { + "code_commune_insee": "55389", + "nom_de_la_commune": "NUBECOURT", + "code_postal": "55250", + "coordonnees_gps": [ + 49.0052141438, + 5.17649305461 + ], + "libelle_d_acheminement": "NUBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17649305461, + 49.0052141438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "229d416922e6eb033b87e5ae2e495a7e519ab064", + "fields": { + "code_commune_insee": "55391", + "nom_de_la_commune": "OLIZY SUR CHIERS", + "code_postal": "55700", + "coordonnees_gps": [ + 49.5587566959, + 5.20819261385 + ], + "libelle_d_acheminement": "OLIZY SUR CHIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20819261385, + 49.5587566959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fdb97ecb6a559ade944138568f7f5c7a3c81ad6", + "fields": { + "code_commune_insee": "55395", + "nom_de_la_commune": "OSCHES", + "code_postal": "55220", + "coordonnees_gps": [ + 49.0460229213, + 5.24882014612 + ], + "libelle_d_acheminement": "OSCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24882014612, + 49.0460229213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "157313a77ffff2a421bc62a03956a22d3fe25cbc", + "fields": { + "code_commune_insee": "55401", + "nom_de_la_commune": "LES PAROCHES", + "code_postal": "55300", + "coordonnees_gps": [ + 48.9106967738, + 5.48710777239 + ], + "libelle_d_acheminement": "LES PAROCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48710777239, + 48.9106967738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4fd25ed026b4f13cbfca5da7d57466f9a889153", + "fields": { + "code_commune_insee": "55408", + "nom_de_la_commune": "POUILLY SUR MEUSE", + "code_postal": "55700", + "coordonnees_gps": [ + 49.5411923043, + 5.11699665787 + ], + "libelle_d_acheminement": "POUILLY SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11699665787, + 49.5411923043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fefd0d30a2c6644069dc753343c5f2bba49929b", + "fields": { + "code_commune_insee": "55412", + "nom_de_la_commune": "RAMBUCOURT", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8352452657, + 5.75755366267 + ], + "libelle_d_acheminement": "RAMBUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75755366267, + 48.8352452657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ec92b037985cc9cacb5ce8ef6fc135ca4d4c063", + "fields": { + "code_commune_insee": "55420", + "nom_de_la_commune": "RECOURT LE CREUX", + "code_postal": "55220", + "coordonnees_gps": [ + 48.9990933177, + 5.37408151001 + ], + "libelle_d_acheminement": "RECOURT LE CREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37408151001, + 48.9990933177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd7942c49a16cf2d278267dad8cd47d7a0b31917", + "fields": { + "code_commune_insee": "55424", + "nom_de_la_commune": "REMENNECOURT", + "code_postal": "55800", + "coordonnees_gps": [ + 48.7994502862, + 4.91706495138 + ], + "libelle_d_acheminement": "REMENNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91706495138, + 48.7994502862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eef00d476266de7f71c5ca6676fe4992c4f256ed", + "fields": { + "code_commune_insee": "55427", + "nom_de_la_commune": "REVIGNY SUR ORNAIN", + "code_postal": "55800", + "coordonnees_gps": [ + 48.8268165357, + 4.97675349582 + ], + "libelle_d_acheminement": "REVIGNY SUR ORNAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97675349582, + 48.8268165357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22ed5355418349a2b6fb7694b4b64dbfb18a8928", + "fields": { + "code_commune_insee": "55429", + "nom_de_la_commune": "RIAVILLE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.0974087964, + 5.6657442627 + ], + "libelle_d_acheminement": "RIAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6657442627, + 49.0974087964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a42d0954620956fcb62e86585f2b7248c03a4d75", + "fields": { + "code_commune_insee": "55430", + "nom_de_la_commune": "RIBEAUCOURT", + "code_postal": "55290", + "coordonnees_gps": [ + 48.5441750908, + 5.35669405147 + ], + "libelle_d_acheminement": "RIBEAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35669405147, + 48.5441750908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5791afda67d1dfa8797c739e238cce583b5d3d85", + "fields": { + "code_commune_insee": "55431", + "nom_de_la_commune": "RICHECOURT", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8920724047, + 5.75183420043 + ], + "libelle_d_acheminement": "RICHECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75183420043, + 48.8920724047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad3e5e31702de245448e5fdde39b0e1ceb003458", + "fields": { + "code_commune_insee": "55433", + "nom_de_la_commune": "RIGNY LA SALLE", + "code_postal": "55140", + "coordonnees_gps": [ + 48.6274903264, + 5.72062942814 + ], + "libelle_d_acheminement": "RIGNY LA SALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72062942814, + 48.6274903264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a1dded33e37dca0b1c12a6046f28f46c557e1fa", + "fields": { + "code_commune_insee": "55435", + "nom_de_la_commune": "ROBERT ESPAGNE", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7325838025, + 5.02417040964 + ], + "libelle_d_acheminement": "ROBERT ESPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02417040964, + 48.7325838025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0416d72f4cedaea2b6f82a4c8eb26ef7120d494b", + "fields": { + "ligne_5": "ERIZE LA GRANDE", + "code_commune_insee": "55442", + "libelle_d_acheminement": "RAIVAL", + "code_postal": "55260", + "nom_de_la_commune": "RAIVAL", + "coordonnees_gps": [ + 48.8854759177, + 5.25147773833 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25147773833, + 48.8854759177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0778dab0d4fa16884bcbac3b20632a1e7e9c140d", + "fields": { + "code_commune_insee": "55446", + "nom_de_la_commune": "RUMONT", + "code_postal": "55000", + "coordonnees_gps": [ + 48.8297105505, + 5.27258056103 + ], + "libelle_d_acheminement": "RUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27258056103, + 48.8297105505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdf3d4b751e956e360a43e556affaa44bb57c30e", + "fields": { + "code_commune_insee": "55458", + "nom_de_la_commune": "ST JEAN LES BUZY", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1730960084, + 5.74178569512 + ], + "libelle_d_acheminement": "ST JEAN LES BUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74178569512, + 49.1730960084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd85597c44c3a9a3942f891bc32bd41ac9b10e49", + "fields": { + "code_commune_insee": "55462", + "nom_de_la_commune": "ST MAURICE SOUS LES COTES", + "code_postal": "55210", + "coordonnees_gps": [ + 49.0106196654, + 5.66598601118 + ], + "libelle_d_acheminement": "ST MAURICE SOUS LES COTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66598601118, + 49.0106196654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85cc0c5e16239642184d5a1d96f70d2ebe097785", + "fields": { + "code_commune_insee": "55464", + "nom_de_la_commune": "ST PIERREVILLERS", + "code_postal": "55230", + "coordonnees_gps": [ + 49.3759234559, + 5.68731569816 + ], + "libelle_d_acheminement": "ST PIERREVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68731569816, + 49.3759234559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e07e319edaa819f5652b7057c70b9b33efd71c0", + "fields": { + "code_commune_insee": "55465", + "nom_de_la_commune": "ST REMY LA CALONNE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.0404075198, + 5.58732606223 + ], + "libelle_d_acheminement": "ST REMY LA CALONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58732606223, + 49.0404075198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "520769a555da5595d406169601b51924ee32a178", + "fields": { + "code_commune_insee": "55468", + "nom_de_la_commune": "SAMOGNEUX", + "code_postal": "55100", + "coordonnees_gps": [ + 49.2582106398, + 5.34650093972 + ], + "libelle_d_acheminement": "SAMOGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34650093972, + 49.2582106398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9330ad654ed229ceb64c95ffa24544858b080f36", + "fields": { + "code_commune_insee": "55471", + "nom_de_la_commune": "SAULMORY VILLEFRANCHE", + "code_postal": "55110", + "coordonnees_gps": [ + 49.4388180734, + 5.17185912384 + ], + "libelle_d_acheminement": "SAULMORY VILLEFRANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17185912384, + 49.4388180734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7098c7346668b97779969af60c5aa8c0297e418e", + "fields": { + "ligne_5": "CHAMPLON", + "code_commune_insee": "55473", + "libelle_d_acheminement": "SAULX LES CHAMPLON", + "code_postal": "55160", + "nom_de_la_commune": "SAULX LES CHAMPLON", + "coordonnees_gps": [ + 49.0735769232, + 5.65335195591 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65335195591, + 49.0735769232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abb553189667bccb1167ca1033d7cfb0b984943e", + "fields": { + "code_commune_insee": "55474", + "nom_de_la_commune": "SAUVIGNY", + "code_postal": "55140", + "coordonnees_gps": [ + 48.5018634827, + 5.73596629266 + ], + "libelle_d_acheminement": "SAUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73596629266, + 48.5018634827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b003d92efeda55bea28e0554632ff97b4e450fd2", + "fields": { + "code_commune_insee": "55476", + "nom_de_la_commune": "SAVONNIERES DEVANT BAR", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7489756437, + 5.17589243702 + ], + "libelle_d_acheminement": "SAVONNIERES DEVANT BAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17589243702, + 48.7489756437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13833f93339c260725a1303ae0b3223b4b41a844", + "fields": { + "code_commune_insee": "55477", + "nom_de_la_commune": "SAVONNIERES EN PERTHOIS", + "code_postal": "55170", + "coordonnees_gps": [ + 48.6061624959, + 5.13483299132 + ], + "libelle_d_acheminement": "SAVONNIERES EN PERTHOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13483299132, + 48.6061624959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7b95117b7eddf82cc8697b1101c22bbaabf4ec9", + "fields": { + "code_commune_insee": "55481", + "nom_de_la_commune": "SENON", + "code_postal": "55230", + "coordonnees_gps": [ + 49.2817425376, + 5.61733509785 + ], + "libelle_d_acheminement": "SENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61733509785, + 49.2817425376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7ef27f0464ad801a3b231289bbbf87f50234fea", + "fields": { + "code_commune_insee": "55490", + "nom_de_la_commune": "SIVRY SUR MEUSE", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3274104355, + 5.28255466905 + ], + "libelle_d_acheminement": "SIVRY SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28255466905, + 49.3274104355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83c769ff9c05e70f2b51f96bb1eb31f66e6b44f1", + "fields": { + "code_commune_insee": "55498", + "nom_de_la_commune": "SOUILLY", + "code_postal": "55220", + "coordonnees_gps": [ + 49.0289891196, + 5.2999397258 + ], + "libelle_d_acheminement": "SOUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2999397258, + 49.0289891196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bfc0355db22c1b3762798fd765a0d4525e8961c", + "fields": { + "code_commune_insee": "55500", + "nom_de_la_commune": "SPINCOURT", + "code_postal": "55230", + "coordonnees_gps": [ + 49.3333694763, + 5.69690578835 + ], + "libelle_d_acheminement": "SPINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69690578835, + 49.3333694763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b39ac1ecd678d2ea2fda534b1e355168f44e53a", + "fields": { + "code_commune_insee": "55501", + "nom_de_la_commune": "STAINVILLE", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6425989975, + 5.17866321517 + ], + "libelle_d_acheminement": "STAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17866321517, + 48.6425989975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebf1eebdaca109fe7f8fc0e6f1e50520f31fc371", + "fields": { + "code_commune_insee": "55516", + "nom_de_la_commune": "TREVERAY", + "code_postal": "55130", + "coordonnees_gps": [ + 48.6053443839, + 5.3901669837 + ], + "libelle_d_acheminement": "TREVERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3901669837, + 48.6053443839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d856d9b8e7559533a6b4d1867b39f94f87a81675", + "fields": { + "code_commune_insee": "55520", + "nom_de_la_commune": "TROUSSEY", + "code_postal": "55190", + "coordonnees_gps": [ + 48.701256647, + 5.69348408341 + ], + "libelle_d_acheminement": "TROUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69348408341, + 48.701256647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d478b6e3e65ea59d9800d6dda2b51b85e34b4e0", + "fields": { + "code_commune_insee": "55525", + "nom_de_la_commune": "VADELAINCOURT", + "code_postal": "55220", + "coordonnees_gps": [ + 49.0698810912, + 5.25891845389 + ], + "libelle_d_acheminement": "VADELAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25891845389, + 49.0698810912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e20ff19e14cd73ee46a1ab55ac3515a1a0041c3b", + "fields": { + "code_commune_insee": "55528", + "nom_de_la_commune": "VARNEVILLE", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8771784427, + 5.65887449876 + ], + "libelle_d_acheminement": "VARNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65887449876, + 48.8771784427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2008bdc3e11b27352063940f3e6a2374a05b5cb", + "fields": { + "code_commune_insee": "55530", + "nom_de_la_commune": "VALBOIS", + "code_postal": "55300", + "coordonnees_gps": [ + 48.9287959752, + 5.61607345803 + ], + "libelle_d_acheminement": "VALBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61607345803, + 48.9287959752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d437234ffb06c34b725b98de593d6e8753e117a1", + "fields": { + "ligne_5": "SENONVILLE", + "code_commune_insee": "55530", + "libelle_d_acheminement": "VALBOIS", + "code_postal": "55300", + "nom_de_la_commune": "VALBOIS", + "coordonnees_gps": [ + 48.9287959752, + 5.61607345803 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61607345803, + 48.9287959752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f094daa98e0e885fca49a528e03c3c3415c04f35", + "fields": { + "code_commune_insee": "55532", + "nom_de_la_commune": "VAUBECOURT", + "code_postal": "55250", + "coordonnees_gps": [ + 48.9422008662, + 5.10692416585 + ], + "libelle_d_acheminement": "VAUBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10692416585, + 48.9422008662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89037b34b8ff777df9c110bddde0b366bc866f8c", + "fields": { + "ligne_5": "VAUX DEVANT DAMLOUP", + "code_commune_insee": "55537", + "libelle_d_acheminement": "DOUAUMONT VAUX", + "code_postal": "55400", + "nom_de_la_commune": "DOUAUMONT VAUX", + "coordonnees_gps": [ + 49.2061604941, + 5.46338028839 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46338028839, + 49.2061604941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4ea2dae689263954ec16cef5493865f1450ec3b", + "fields": { + "code_commune_insee": "55546", + "nom_de_la_commune": "VERNEUIL GRAND", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5312660602, + 5.42592624358 + ], + "libelle_d_acheminement": "VERNEUIL GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42592624358, + 49.5312660602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d0b97a8e68f9928d68b1a06cd177041ec42c4cd", + "fields": { + "code_commune_insee": "55547", + "nom_de_la_commune": "VERNEUIL PETIT", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5455943768, + 5.41822136927 + ], + "libelle_d_acheminement": "VERNEUIL PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41822136927, + 49.5455943768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f45e998f8b31063e47a6e59597f48f8f6682b02b", + "fields": { + "ligne_5": "BILLY SOUS LES COTES", + "code_commune_insee": "55551", + "libelle_d_acheminement": "VIGNEULLES LES HATTONCHATEL", + "code_postal": "55210", + "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", + "coordonnees_gps": [ + 48.9857791469, + 5.724051532 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.724051532, + 48.9857791469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8229cb42d7a95157744a7abbf64a705bddfee225", + "fields": { + "ligne_5": "HATTONCHATEL", + "code_commune_insee": "55551", + "libelle_d_acheminement": "VIGNEULLES LES HATTONCHATEL", + "code_postal": "55210", + "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", + "coordonnees_gps": [ + 48.9857791469, + 5.724051532 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.724051532, + 48.9857791469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aeecd130f7dcc42b1963549f96239444da0d17c", + "fields": { + "ligne_5": "ST BENOIT EN WOEVRE", + "code_commune_insee": "55551", + "libelle_d_acheminement": "VIGNEULLES LES HATTONCHATEL", + "code_postal": "55210", + "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", + "coordonnees_gps": [ + 48.9857791469, + 5.724051532 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.724051532, + 48.9857791469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "557e7923be3beaf0c654cfe7d22e37acc609c5ad", + "fields": { + "code_commune_insee": "55552", + "nom_de_la_commune": "VIGNEUL SOUS MONTMEDY", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5081292429, + 5.32876869093 + ], + "libelle_d_acheminement": "VIGNEUL SOUS MONTMEDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32876869093, + 49.5081292429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e638984525b1384d1ad12384393576872b328e34", + "fields": { + "code_commune_insee": "55561", + "nom_de_la_commune": "VILLERS DEVANT DUN", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3993889395, + 5.11188584059 + ], + "libelle_d_acheminement": "VILLERS DEVANT DUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11188584059, + 49.3993889395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82d17be8d8f93a63377a7c692aba3bee8ff46589", + "fields": { + "code_commune_insee": "55563", + "nom_de_la_commune": "VILLERS LES MANGIENNES", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3574782476, + 5.50300806274 + ], + "libelle_d_acheminement": "VILLERS LES MANGIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50300806274, + 49.3574782476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2da1253f5d425bbad4006bd9c7b2d5372c5ed77", + "fields": { + "code_commune_insee": "55567", + "nom_de_la_commune": "VILLE SUR COUSANCES", + "code_postal": "55120", + "coordonnees_gps": [ + 49.0788332374, + 5.17822742167 + ], + "libelle_d_acheminement": "VILLE SUR COUSANCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17822742167, + 49.0788332374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4646a635225de2c132054d65dbe762c693deba30", + "fields": { + "code_commune_insee": "56005", + "nom_de_la_commune": "ARZON", + "code_postal": "56640", + "coordonnees_gps": [ + 47.5470278592, + -2.88784873321 + ], + "libelle_d_acheminement": "ARZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.88784873321, + 47.5470278592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84021d58c9ace2b99af5247a014341f43673b23d", + "fields": { + "code_commune_insee": "56011", + "nom_de_la_commune": "BEGANNE", + "code_postal": "56350", + "coordonnees_gps": [ + 47.6025516588, + -2.2440968565 + ], + "libelle_d_acheminement": "BEGANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.2440968565, + 47.6025516588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1a65547760451b74b267d02aa8b4befe03ae006", + "fields": { + "code_commune_insee": "56013", + "nom_de_la_commune": "BELZ", + "code_postal": "56550", + "coordonnees_gps": [ + 47.6719818192, + -3.16245947522 + ], + "libelle_d_acheminement": "BELZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.16245947522, + 47.6719818192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c41a776194ec76d633ef9df5873edd6098192546", + "fields": { + "code_commune_insee": "56024", + "nom_de_la_commune": "BREHAN", + "code_postal": "56580", + "coordonnees_gps": [ + 48.0699465844, + -2.68732663005 + ], + "libelle_d_acheminement": "BREHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.68732663005, + 48.0699465844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8985308f6428bf5d8d325cd01abcf6f0354bdc53", + "fields": { + "code_commune_insee": "56030", + "nom_de_la_commune": "CAMOEL", + "code_postal": "56130", + "coordonnees_gps": [ + 47.4791790965, + -2.39860395694 + ], + "libelle_d_acheminement": "CAMOEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39860395694, + 47.4791790965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "285a09e567ca599fb12553364d7fd077d212b8f3", + "fields": { + "code_commune_insee": "56031", + "nom_de_la_commune": "CAMORS", + "code_postal": "56330", + "coordonnees_gps": [ + 47.8301134196, + -3.0000365994 + ], + "libelle_d_acheminement": "CAMORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.0000365994, + 47.8301134196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b52c1aafdb7cdeb07d7774fb8c98c4b53db933cc", + "fields": { + "code_commune_insee": "56051", + "nom_de_la_commune": "CRUGUEL", + "code_postal": "56420", + "coordonnees_gps": [ + 47.8775619552, + -2.59076740576 + ], + "libelle_d_acheminement": "CRUGUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.59076740576, + 47.8775619552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d31cab7e55e3e477e563a6645a5359a03e80574", + "fields": { + "code_commune_insee": "56053", + "nom_de_la_commune": "ELVEN", + "code_postal": "56250", + "coordonnees_gps": [ + 47.7326809062, + -2.59279070215 + ], + "libelle_d_acheminement": "ELVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.59279070215, + 47.7326809062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f04456d7d7bd8e174b3c95b0dadacecc95a7021", + "fields": { + "code_commune_insee": "56055", + "nom_de_la_commune": "ETEL", + "code_postal": "56410", + "coordonnees_gps": [ + 47.6567860287, + -3.1985408357 + ], + "libelle_d_acheminement": "ETEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.1985408357, + 47.6567860287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "496dfe339f3e749fcf9f0cfa034d2cecf8d2b411", + "fields": { + "code_commune_insee": "56060", + "nom_de_la_commune": "LES FOUGERETS", + "code_postal": "56200", + "coordonnees_gps": [ + 47.7480373026, + -2.19710765653 + ], + "libelle_d_acheminement": "LES FOUGERETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.19710765653, + 47.7480373026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9102d5d90f51f0b8eab4aef099c35d2547d8bd2d", + "fields": { + "ligne_5": "GLENAC", + "code_commune_insee": "56061", + "libelle_d_acheminement": "LA GACILLY", + "code_postal": "56200", + "nom_de_la_commune": "LA GACILLY", + "coordonnees_gps": [ + 47.7728317091, + -2.15651114837 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15651114837, + 47.7728317091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddb8321b2eeae0b60b1495f62f7827ec21adf9b8", + "fields": { + "ligne_5": "LA CHAPELLE GACELINE", + "code_commune_insee": "56061", + "libelle_d_acheminement": "LA GACILLY", + "code_postal": "56200", + "nom_de_la_commune": "LA GACILLY", + "coordonnees_gps": [ + 47.7728317091, + -2.15651114837 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15651114837, + 47.7728317091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "094fcb2c38555c49827b252d22dc8c0f8c1d71d6", + "fields": { + "code_commune_insee": "56071", + "nom_de_la_commune": "GUEHENNO", + "code_postal": "56420", + "coordonnees_gps": [ + 47.8922430084, + -2.65141544204 + ], + "libelle_d_acheminement": "GUEHENNO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.65141544204, + 47.8922430084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0862759dd5b1eda6ed1889633d8f34220b7e8acb", + "fields": { + "code_commune_insee": "56075", + "nom_de_la_commune": "GUER", + "code_postal": "56380", + "coordonnees_gps": [ + 47.9073328689, + -2.12921667557 + ], + "libelle_d_acheminement": "GUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12921667557, + 47.9073328689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c540772753cc65030d42728d35b95333950baa6", + "fields": { + "code_commune_insee": "56081", + "nom_de_la_commune": "GUISCRIFF", + "code_postal": "56560", + "coordonnees_gps": [ + 48.0427009622, + -3.62381122626 + ], + "libelle_d_acheminement": "GUISCRIFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.62381122626, + 48.0427009622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c5cbf13c5da9a257294c57fe694ac86e7ff76d5", + "fields": { + "code_commune_insee": "56085", + "nom_de_la_commune": "HOEDIC", + "code_postal": "56170", + "coordonnees_gps": [ + 47.3396501062, + -2.87582897878 + ], + "libelle_d_acheminement": "ILE DE HOEDIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.87582897878, + 47.3396501062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "657561ec0e47124d563f4f1d4ea115c4584f598d", + "fields": { + "code_commune_insee": "56090", + "nom_de_la_commune": "INZINZAC LOCHRIST", + "code_postal": "56650", + "coordonnees_gps": [ + 47.8558359743, + -3.25178122558 + ], + "libelle_d_acheminement": "INZINZAC LOCHRIST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.25178122558, + 47.8558359743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5f0af6d99b2f0abd6e7002082a5105b80178ce9", + "fields": { + "code_commune_insee": "56091", + "nom_de_la_commune": "JOSSELIN", + "code_postal": "56120", + "coordonnees_gps": [ + 47.9544411983, + -2.54877600621 + ], + "libelle_d_acheminement": "JOSSELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54877600621, + 47.9544411983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3df675513d567272f3ae0e30ea211402f3db5026", + "fields": { + "code_commune_insee": "56100", + "nom_de_la_commune": "LANGONNET", + "code_postal": "56630", + "coordonnees_gps": [ + 48.1318811919, + -3.48128235286 + ], + "libelle_d_acheminement": "LANGONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.48128235286, + 48.1318811919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e174e3b14a214590b8049201eb59662b19d90cec", + "fields": { + "ligne_5": "LANOUEE", + "code_commune_insee": "56102", + "libelle_d_acheminement": "FORGES DE LANOUEE", + "code_postal": "56120", + "nom_de_la_commune": "FORGES DE LANOUEE", + "coordonnees_gps": [ + 47.9872211991, + -2.57567607546 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.57567607546, + 47.9872211991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04106cbd62d67a8ccb25c7dd54022bce49673004", + "fields": { + "code_commune_insee": "56104", + "nom_de_la_commune": "LANVAUDAN", + "code_postal": "56240", + "coordonnees_gps": [ + 47.8927979736, + -3.24455555644 + ], + "libelle_d_acheminement": "LANVAUDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.24455555644, + 47.8927979736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "808f01477a92a66d8940b1c7a9c9747bf1f44939", + "fields": { + "code_commune_insee": "56108", + "nom_de_la_commune": "LARRE", + "code_postal": "56230", + "coordonnees_gps": [ + 47.7158136416, + -2.49456221297 + ], + "libelle_d_acheminement": "LARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49456221297, + 47.7158136416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "baee1ae6ad52933cdfcdb1f3a6f11ec4999c5f91", + "fields": { + "code_commune_insee": "56109", + "nom_de_la_commune": "LAUZACH", + "code_postal": "56190", + "coordonnees_gps": [ + 47.6111902718, + -2.55589461102 + ], + "libelle_d_acheminement": "LAUZACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.55589461102, + 47.6111902718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6a32508ae50e25cabb2f4f87ed7685a485ae0a8", + "fields": { + "code_commune_insee": "56113", + "nom_de_la_commune": "LOCMALO", + "code_postal": "56160", + "coordonnees_gps": [ + 48.0622114432, + -3.18337050069 + ], + "libelle_d_acheminement": "LOCMALO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18337050069, + 48.0622114432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7835c3b0934e5e95cc299187a6d0a554cbf08d48", + "fields": { + "code_commune_insee": "56122", + "nom_de_la_commune": "LOYAT", + "code_postal": "56800", + "coordonnees_gps": [ + 47.9922231376, + -2.38391082278 + ], + "libelle_d_acheminement": "LOYAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38391082278, + 47.9922231376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "579ccc6829a234e04788175c121279042a7d59ce", + "fields": { + "code_commune_insee": "56124", + "nom_de_la_commune": "MALESTROIT", + "code_postal": "56140", + "coordonnees_gps": [ + 47.8076863788, + -2.38701072581 + ], + "libelle_d_acheminement": "MALESTROIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38701072581, + 47.8076863788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25c3844428867d10647825426527c802189c432d", + "fields": { + "code_commune_insee": "56130", + "nom_de_la_commune": "MERLEVENEZ", + "code_postal": "56700", + "coordonnees_gps": [ + 47.7329410625, + -3.24339145538 + ], + "libelle_d_acheminement": "MERLEVENEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.24339145538, + 47.7329410625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68b5bdc8efc59a09cd9c7c9fdfa134192f7ef054", + "fields": { + "code_commune_insee": "56148", + "nom_de_la_commune": "NOSTANG", + "code_postal": "56690", + "coordonnees_gps": [ + 47.7545531097, + -3.17469853998 + ], + "libelle_d_acheminement": "NOSTANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.17469853998, + 47.7545531097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe70c72ec99115f0c156614863905dbbde5f65d4", + "fields": { + "code_commune_insee": "56149", + "nom_de_la_commune": "NOYAL MUZILLAC", + "code_postal": "56190", + "coordonnees_gps": [ + 47.5996326601, + -2.45965724155 + ], + "libelle_d_acheminement": "NOYAL MUZILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45965724155, + 47.5996326601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bdee0715adeaa4f4193fbf2c8a201a00e885b4f", + "fields": { + "code_commune_insee": "56152", + "nom_de_la_commune": "LE PALAIS", + "code_postal": "56360", + "coordonnees_gps": [ + 47.3426909682, + -3.17102952046 + ], + "libelle_d_acheminement": "LE PALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.17102952046, + 47.3426909682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2777d84698c43e93fd8e33c73341b97d0cdbe2b1", + "fields": { + "code_commune_insee": "56157", + "nom_de_la_commune": "PLAUDREN", + "code_postal": "56420", + "coordonnees_gps": [ + 47.7791727358, + -2.69563725639 + ], + "libelle_d_acheminement": "PLAUDREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.69563725639, + 47.7791727358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1c23a9c2f11cf3506df8e8b4b4670e209037114", + "fields": { + "code_commune_insee": "56161", + "nom_de_la_commune": "PLOEMEL", + "code_postal": "56400", + "coordonnees_gps": [ + 47.6594932649, + -3.07159403186 + ], + "libelle_d_acheminement": "PLOEMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07159403186, + 47.6594932649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5da31f34c194ef1e9c062b9be1322d757a6b2bde", + "fields": { + "code_commune_insee": "56166", + "nom_de_la_commune": "PLOUAY", + "code_postal": "56240", + "coordonnees_gps": [ + 47.9270557389, + -3.33743884173 + ], + "libelle_d_acheminement": "PLOUAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33743884173, + 47.9270557389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83187136c149552f05068fd0aa769261d95569a4", + "fields": { + "ligne_5": "PLUMELIAU", + "code_commune_insee": "56173", + "libelle_d_acheminement": "PLUMELIAU BIEUZY", + "code_postal": "56930", + "nom_de_la_commune": "PLUMELIAU BIEUZY", + "coordonnees_gps": [ + 47.9650479618, + -2.98095397344 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98095397344, + 47.9650479618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17775981bbd4d685250342eac2f7642e8279e855", + "fields": { + "code_commune_insee": "56174", + "nom_de_la_commune": "PLUMELIN", + "code_postal": "56500", + "coordonnees_gps": [ + 47.8825173769, + -2.88768093525 + ], + "libelle_d_acheminement": "PLUMELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.88768093525, + 47.8825173769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c8a097d0471eddf43cafefb06999114449434ff", + "fields": { + "code_commune_insee": "56176", + "nom_de_la_commune": "PLUNERET", + "code_postal": "56400", + "coordonnees_gps": [ + 47.6782099916, + -2.9456811423 + ], + "libelle_d_acheminement": "PLUNERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.9456811423, + 47.6782099916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fcda2463898c80e4a8447c230e27e8c46097940", + "fields": { + "code_commune_insee": "56184", + "nom_de_la_commune": "QUESTEMBERT", + "code_postal": "56230", + "coordonnees_gps": [ + 47.6638017747, + -2.43671076032 + ], + "libelle_d_acheminement": "QUESTEMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.43671076032, + 47.6638017747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8d3b6d3fb4022793b68ea720860303e04d7ef71", + "fields": { + "ligne_5": "LA CHAPELLE CARO", + "code_commune_insee": "56197", + "libelle_d_acheminement": "VAL D OUST", + "code_postal": "56460", + "nom_de_la_commune": "VAL D OUST", + "coordonnees_gps": [ + 47.8685533688, + -2.45624648415 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45624648415, + 47.8685533688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a46685ac3afde264d885b236f05573a398814498", + "fields": { + "ligne_5": "ST GOUVRY", + "code_commune_insee": "56198", + "libelle_d_acheminement": "ROHAN", + "code_postal": "56580", + "nom_de_la_commune": "ROHAN", + "coordonnees_gps": [ + 48.0894729078, + -2.74289349801 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.74289349801, + 48.0894729078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc66f2f044f4fe000b8a06038dca98655a13b97c", + "fields": { + "code_commune_insee": "56200", + "nom_de_la_commune": "RUFFIAC", + "code_postal": "56140", + "coordonnees_gps": [ + 47.8135299611, + -2.28477717582 + ], + "libelle_d_acheminement": "RUFFIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28477717582, + 47.8135299611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1c70e62b779b0f335c97e1bb2a20d96013c0ed7", + "fields": { + "code_commune_insee": "56203", + "nom_de_la_commune": "ST AIGNAN", + "code_postal": "56480", + "coordonnees_gps": [ + 48.1820807024, + -3.04891714742 + ], + "libelle_d_acheminement": "ST AIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04891714742, + 48.1820807024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "000ba1e05ba0e06ce130ccff44ecb21922c1e47e", + "fields": { + "code_commune_insee": "56204", + "nom_de_la_commune": "ST ALLOUESTRE", + "code_postal": "56500", + "coordonnees_gps": [ + 47.9081978294, + -2.73628511193 + ], + "libelle_d_acheminement": "ST ALLOUESTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.73628511193, + 47.9081978294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee476d3c62da6ebfc6ddec8b9588efeb6bdee37c", + "fields": { + "code_commune_insee": "56226", + "nom_de_la_commune": "ST MALO DE BEIGNON", + "code_postal": "56380", + "coordonnees_gps": [ + 47.9565800203, + -2.14364557766 + ], + "libelle_d_acheminement": "ST MALO DE BEIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.14364557766, + 47.9565800203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fed73d5bcd7baab02ee63ee4ecb5e1b106fe0f1b", + "fields": { + "code_commune_insee": "56227", + "nom_de_la_commune": "ST MALO DES TROIS FONTAINES", + "code_postal": "56490", + "coordonnees_gps": [ + 48.0174200107, + -2.46820100361 + ], + "libelle_d_acheminement": "ST MALO DES TROIS FONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.46820100361, + 48.0174200107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1011188ca6f59e0c45532eed12469ec6e5785746", + "fields": { + "code_commune_insee": "56233", + "nom_de_la_commune": "ST PHILIBERT", + "code_postal": "56470", + "coordonnees_gps": [ + 47.5878387262, + -3.00101980446 + ], + "libelle_d_acheminement": "ST PHILIBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00101980446, + 47.5878387262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad416a0452934b059fb879ccb17a395ccfd83617", + "fields": { + "code_commune_insee": "56236", + "nom_de_la_commune": "ST SERVANT", + "code_postal": "56120", + "coordonnees_gps": [ + 47.89876779, + -2.5120013112 + ], + "libelle_d_acheminement": "ST SERVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.5120013112, + 47.89876779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8db5b3c0a597c2bbd25a920378ead52472e689ce", + "fields": { + "code_commune_insee": "56237", + "nom_de_la_commune": "ST THURIAU", + "code_postal": "56300", + "coordonnees_gps": [ + 48.0165458217, + -2.94330344486 + ], + "libelle_d_acheminement": "ST THURIAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.94330344486, + 48.0165458217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c7aedd8d1fdbe13d682aefe505e44580d25540b", + "fields": { + "code_commune_insee": "56238", + "nom_de_la_commune": "ST TUGDUAL", + "code_postal": "56540", + "coordonnees_gps": [ + 48.0961762993, + -3.36700769419 + ], + "libelle_d_acheminement": "ST TUGDUAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36700769419, + 48.0961762993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5273af4a78c691e256d169610e8ec761cf2c96f7", + "fields": { + "code_commune_insee": "56239", + "nom_de_la_commune": "ST VINCENT SUR OUST", + "code_postal": "56350", + "coordonnees_gps": [ + 47.7023139983, + -2.14800708531 + ], + "libelle_d_acheminement": "ST VINCENT SUR OUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.14800708531, + 47.7023139983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ff4799a6a1422f5e57be23bcd72d379dba0372f", + "fields": { + "code_commune_insee": "56241", + "nom_de_la_commune": "SAUZON", + "code_postal": "56360", + "coordonnees_gps": [ + 47.353750697, + -3.23035128949 + ], + "libelle_d_acheminement": "SAUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.23035128949, + 47.353750697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27aa9c41afc698fdd7e18c534c6337ecf7778d3a", + "fields": { + "code_commune_insee": "56243", + "nom_de_la_commune": "SENE", + "code_postal": "56860", + "coordonnees_gps": [ + 47.6228786892, + -2.72442609453 + ], + "libelle_d_acheminement": "SENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72442609453, + 47.6228786892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95bfc13cedb1f491510a2763130fdbbb8cdb44b6", + "fields": { + "code_commune_insee": "56246", + "nom_de_la_commune": "LE SOURN", + "code_postal": "56300", + "coordonnees_gps": [ + 48.0382214758, + -2.99470821094 + ], + "libelle_d_acheminement": "LE SOURN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.99470821094, + 48.0382214758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85e5f541ba2a8675090dae564e883802b936fb6a", + "fields": { + "ligne_5": "THEIX", + "code_commune_insee": "56251", + "libelle_d_acheminement": "THEIX NOYALO", + "code_postal": "56450", + "nom_de_la_commune": "THEIX NOYALO", + "coordonnees_gps": [ + 47.6356885267, + -2.64682620132 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64682620132, + 47.6356885267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42c42f9a529f84abc36ab3aafa7706d8c569158a", + "fields": { + "code_commune_insee": "56254", + "nom_de_la_commune": "TREDION", + "code_postal": "56250", + "coordonnees_gps": [ + 47.7828735251, + -2.58443570196 + ], + "libelle_d_acheminement": "TREDION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.58443570196, + 47.7828735251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17fdd59d6abefc1e9488adaf6cfaaad69aa4376d", + "fields": { + "code_commune_insee": "56261", + "nom_de_la_commune": "LA VRAIE CROIX", + "code_postal": "56250", + "coordonnees_gps": [ + 47.6897714715, + -2.51941411954 + ], + "libelle_d_acheminement": "LA VRAIE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.51941411954, + 47.6897714715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5225abb7798f8b27851ca144cea183e3a5157d46", + "fields": { + "code_commune_insee": "57001", + "nom_de_la_commune": "ABONCOURT", + "code_postal": "57920", + "coordonnees_gps": [ + 49.2565158648, + 6.35416455836 + ], + "libelle_d_acheminement": "ABONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35416455836, + 49.2565158648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09cdefe7189311f477b68edebae3a75ee58c7545", + "fields": { + "code_commune_insee": "57010", + "nom_de_la_commune": "ALAINCOURT LA COTE", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8969970894, + 6.34037404652 + ], + "libelle_d_acheminement": "ALAINCOURT LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34037404652, + 48.8969970894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63d63f87338dcedcc9047c0c990c4b4838be2cf5", + "fields": { + "code_commune_insee": "57011", + "nom_de_la_commune": "ALBESTROFF", + "code_postal": "57670", + "coordonnees_gps": [ + 48.929810647, + 6.8693705224 + ], + "libelle_d_acheminement": "ALBESTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8693705224, + 48.929810647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a4b2a52bd621c08f9ec7803af9d9df9f22794b1", + "fields": { + "code_commune_insee": "57016", + "nom_de_la_commune": "ALZING", + "code_postal": "57320", + "coordonnees_gps": [ + 49.2764757176, + 6.55325896948 + ], + "libelle_d_acheminement": "ALZING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55325896948, + 49.2764757176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdd6955fb1c62cc5b5482fb3cd6a8cefddbda6ee", + "fields": { + "code_commune_insee": "57019", + "nom_de_la_commune": "AMNEVILLE", + "code_postal": "57360", + "coordonnees_gps": [ + 49.2396972255, + 6.09947450041 + ], + "libelle_d_acheminement": "AMNEVILLE LES THERMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09947450041, + 49.2396972255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b8e501a11dc357aa381cd219c2259340dea708a", + "fields": { + "ligne_5": "DORNOT", + "code_commune_insee": "57021", + "libelle_d_acheminement": "ANCY DORNOT", + "code_postal": "57130", + "nom_de_la_commune": "ANCY DORNOT", + "coordonnees_gps": [ + 49.0653836521, + 6.04477980667 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04477980667, + 49.0653836521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc8888aa57b15c96cc95fc7b6d79a734f9585dc7", + "fields": { + "code_commune_insee": "57024", + "nom_de_la_commune": "ANTILLY", + "code_postal": "57640", + "coordonnees_gps": [ + 49.19731326, + 6.24824504682 + ], + "libelle_d_acheminement": "ANTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24824504682, + 49.19731326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd17654a8ce96e0dfe31114f04af6db1a9ae672a", + "fields": { + "code_commune_insee": "57026", + "nom_de_la_commune": "APACH", + "code_postal": "57480", + "coordonnees_gps": [ + 49.4602733408, + 6.38601004029 + ], + "libelle_d_acheminement": "APACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38601004029, + 49.4602733408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b9f5ea460609ed311391b0c6e72cb551322072e", + "fields": { + "code_commune_insee": "57030", + "nom_de_la_commune": "ARRY", + "code_postal": "57680", + "coordonnees_gps": [ + 48.9943639154, + 6.05696134676 + ], + "libelle_d_acheminement": "ARRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05696134676, + 48.9943639154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9a52026d25571c71d4d06a6ceef80781ec89c8a", + "fields": { + "code_commune_insee": "57040", + "nom_de_la_commune": "AULNOIS SUR SEILLE", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8619380667, + 6.32824523031 + ], + "libelle_d_acheminement": "AULNOIS SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32824523031, + 48.8619380667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68f0ae1682de36ce9d9dcc3c9a67b0bd916de5e7", + "fields": { + "code_commune_insee": "57044", + "nom_de_la_commune": "AZOUDANGE", + "code_postal": "57810", + "coordonnees_gps": [ + 48.7305691867, + 6.82193103047 + ], + "libelle_d_acheminement": "AZOUDANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82193103047, + 48.7305691867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7f01b8ac8b7da81fed7fd2742fc7427baa22a1e", + "fields": { + "code_commune_insee": "57054", + "nom_de_la_commune": "BAUDRECOURT", + "code_postal": "57580", + "coordonnees_gps": [ + 48.9603224035, + 6.45869419532 + ], + "libelle_d_acheminement": "BAUDRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45869419532, + 48.9603224035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c73e26502a482a5f2af5a68ec1cd8a6d4f7a1d76", + "fields": { + "code_commune_insee": "57060", + "nom_de_la_commune": "BENESTROFF", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9083612745, + 6.75653495521 + ], + "libelle_d_acheminement": "BENESTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75653495521, + 48.9083612745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "409940bab5468900caf6f97963874a5e912de379", + "fields": { + "code_commune_insee": "57066", + "nom_de_la_commune": "BERTHELMING", + "code_postal": "57930", + "coordonnees_gps": [ + 48.8213061613, + 6.98183479413 + ], + "libelle_d_acheminement": "BERTHELMING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98183479413, + 48.8213061613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e838bb631ca84b526e9ea165173243fb9b8c9c49", + "fields": { + "code_commune_insee": "57074", + "nom_de_la_commune": "BETTVILLER", + "code_postal": "57410", + "coordonnees_gps": [ + 49.0755681327, + 7.29043662433 + ], + "libelle_d_acheminement": "BETTVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29043662433, + 49.0755681327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81d9d15371cba0599e6214ca10ae7244d9947458", + "fields": { + "code_commune_insee": "57077", + "nom_de_la_commune": "BEZANGE LA PETITE", + "code_postal": "57630", + "coordonnees_gps": [ + 48.7321125296, + 6.61187800592 + ], + "libelle_d_acheminement": "BEZANGE LA PETITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61187800592, + 48.7321125296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abc2faceebe2f5be7109d92711f1319317d631cd", + "fields": { + "code_commune_insee": "57079", + "nom_de_la_commune": "BIBICHE", + "code_postal": "57320", + "coordonnees_gps": [ + 49.3315599598, + 6.47689109496 + ], + "libelle_d_acheminement": "BIBICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47689109496, + 49.3315599598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cec3f45941775c1fa9eaf36962f0ac88372089ba", + "fields": { + "code_commune_insee": "57081", + "nom_de_la_commune": "BIDESTROFF", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8437922106, + 6.78929446529 + ], + "libelle_d_acheminement": "BIDESTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78929446529, + 48.8437922106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f0e748f0ebe3396f28eaf91167ded5bc5f11f8d", + "fields": { + "ligne_5": "BISPING", + "code_commune_insee": "57086", + "libelle_d_acheminement": "BELLES FORETS", + "code_postal": "57930", + "nom_de_la_commune": "BELLES FORETS", + "coordonnees_gps": [ + 48.8081241943, + 6.90014574673 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90014574673, + 48.8081241943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b847c0f27c837525da257f1373a82db94e518335", + "fields": { + "code_commune_insee": "57092", + "nom_de_la_commune": "BLIES EBERSING", + "code_postal": "57200", + "coordonnees_gps": [ + 49.1137018858, + 7.14221813754 + ], + "libelle_d_acheminement": "BLIES EBERSING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14221813754, + 49.1137018858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e728f6bc2de2a347d3e42898bbb4796d855f9d48", + "fields": { + "code_commune_insee": "57097", + "nom_de_la_commune": "BOULAY MOSELLE", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1779901346, + 6.49842566408 + ], + "libelle_d_acheminement": "BOULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49842566408, + 49.1779901346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa37fbae102dcb52d52eb010552ff79bbedadaba", + "fields": { + "code_commune_insee": "57101", + "nom_de_la_commune": "BOUSBACH", + "code_postal": "57460", + "coordonnees_gps": [ + 49.1449395157, + 6.94789546183 + ], + "libelle_d_acheminement": "BOUSBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94789546183, + 49.1449395157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9a846c8907033ed1089415214df910b9c3daf5b", + "fields": { + "code_commune_insee": "57107", + "nom_de_la_commune": "BREHAIN", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9080812018, + 6.54463207168 + ], + "libelle_d_acheminement": "BREHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54463207168, + 48.9080812018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86ba1b98c30705be332a16059283afd65b8c71c0", + "fields": { + "code_commune_insee": "57110", + "nom_de_la_commune": "BRETTNACH", + "code_postal": "57320", + "coordonnees_gps": [ + 49.2580265241, + 6.5599273832 + ], + "libelle_d_acheminement": "BRETTNACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5599273832, + 49.2580265241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d422574f6284d279193929faeb462f58702bce91", + "fields": { + "code_commune_insee": "57115", + "nom_de_la_commune": "BRULANGE", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9603870574, + 6.5493906183 + ], + "libelle_d_acheminement": "BRULANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5493906183, + 48.9603870574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "101487b4fb3bac3fed4e4c609090a2884a0a2e59", + "fields": { + "code_commune_insee": "57118", + "nom_de_la_commune": "BUDLING", + "code_postal": "57970", + "coordonnees_gps": [ + 49.3468728627, + 6.34426099542 + ], + "libelle_d_acheminement": "BUDLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34426099542, + 49.3468728627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de29d5b4093a8c6b049d80cde88f4a8fff2a1b38", + "fields": { + "code_commune_insee": "57123", + "nom_de_la_commune": "CARLING", + "code_postal": "57490", + "coordonnees_gps": [ + 49.1666391756, + 6.71515090719 + ], + "libelle_d_acheminement": "CARLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71515090719, + 49.1666391756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "084ca55ddf1a27f4d5d15e1934596495d25868a0", + "fields": { + "code_commune_insee": "57124", + "nom_de_la_commune": "CATTENOM", + "code_postal": "57570", + "coordonnees_gps": [ + 49.4154747401, + 6.2351808823 + ], + "libelle_d_acheminement": "CATTENOM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2351808823, + 49.4154747401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6377769c4488f7a16c42110e9432cc672193e69f", + "fields": { + "code_commune_insee": "57126", + "nom_de_la_commune": "CHAMBREY", + "code_postal": "57170", + "coordonnees_gps": [ + 48.7961903159, + 6.45461384881 + ], + "libelle_d_acheminement": "CHAMBREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45461384881, + 48.7961903159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17c5c2e503006d178b451bee62de762b80c8e107", + "fields": { + "code_commune_insee": "57127", + "nom_de_la_commune": "CHANVILLE", + "code_postal": "57580", + "coordonnees_gps": [ + 49.0421866813, + 6.43895041652 + ], + "libelle_d_acheminement": "CHANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43895041652, + 49.0421866813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb2817df7ef523df0912760a2fc04d096e29328d", + "fields": { + "code_commune_insee": "57128", + "nom_de_la_commune": "CHARLEVILLE SOUS BOIS", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1959515116, + 6.4063041025 + ], + "libelle_d_acheminement": "CHARLEVILLE SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4063041025, + 49.1959515116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf8a9d5a9e3ea8d35db07cec74e2d5d76eaf1c6d", + "fields": { + "code_commune_insee": "57139", + "nom_de_la_commune": "CHERISEY", + "code_postal": "57420", + "coordonnees_gps": [ + 49.0105765777, + 6.24566851068 + ], + "libelle_d_acheminement": "CHERISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24566851068, + 49.0105765777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "116afd6825803bc6275b9e15935b3c1637dc0619", + "fields": { + "ligne_5": "MAIZERY", + "code_commune_insee": "57148", + "libelle_d_acheminement": "COLLIGNY MAIZERY", + "code_postal": "57530", + "nom_de_la_commune": "COLLIGNY MAIZERY", + "coordonnees_gps": [ + 49.0966398426, + 6.33612392553 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33612392553, + 49.0966398426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abf381bcbd9a5152d5eedd3b3babd625bdac6a7e", + "fields": { + "code_commune_insee": "57150", + "nom_de_la_commune": "CONDE NORTHEN", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1557780335, + 6.42749152793 + ], + "libelle_d_acheminement": "CONDE NORTHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42749152793, + 49.1557780335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c128bc4d13368174c3b6d221e183aa199f2f019", + "fields": { + "code_commune_insee": "57151", + "nom_de_la_commune": "CONTHIL", + "code_postal": "57340", + "coordonnees_gps": [ + 48.8916747657, + 6.66400638326 + ], + "libelle_d_acheminement": "CONTHIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66400638326, + 48.8916747657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a43438483b5ce662cbb7b1c3dda4e38625a03103", + "fields": { + "code_commune_insee": "57152", + "nom_de_la_commune": "CONTZ LES BAINS", + "code_postal": "57480", + "coordonnees_gps": [ + 49.4565196788, + 6.35072229703 + ], + "libelle_d_acheminement": "CONTZ LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35072229703, + 49.4565196788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72f6db5da837ac2a61df691ee3e9cab4b2323066", + "fields": { + "code_commune_insee": "57153", + "nom_de_la_commune": "CORNY SUR MOSELLE", + "code_postal": "57680", + "coordonnees_gps": [ + 49.0294224346, + 6.07254741579 + ], + "libelle_d_acheminement": "CORNY SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07254741579, + 49.0294224346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8abb4e63cb8982994408c931385477dd5d4f332", + "fields": { + "ligne_5": "LANDONVILLERS", + "code_commune_insee": "57155", + "libelle_d_acheminement": "COURCELLES CHAUSSY", + "code_postal": "57530", + "nom_de_la_commune": "COURCELLES CHAUSSY", + "coordonnees_gps": [ + 49.1184504729, + 6.39972759611 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39972759611, + 49.1184504729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7633c88ce5c971c0d526eb44c24fc408eabcace2", + "fields": { + "code_commune_insee": "57158", + "nom_de_la_commune": "CRAINCOURT", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8765159972, + 6.33285701026 + ], + "libelle_d_acheminement": "CRAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33285701026, + 48.8765159972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd6f226978108ef76957d0d8da361178d77d87a1", + "fields": { + "code_commune_insee": "57165", + "nom_de_la_commune": "DALEM", + "code_postal": "57550", + "coordonnees_gps": [ + 49.2409715207, + 6.61298309158 + ], + "libelle_d_acheminement": "DALEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61298309158, + 49.2409715207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65660ad56d4bc80d14e78bbee75354875e23f776", + "fields": { + "code_commune_insee": "57179", + "nom_de_la_commune": "DISTROFF", + "code_postal": "57925", + "coordonnees_gps": [ + 49.336051033, + 6.26255383896 + ], + "libelle_d_acheminement": "DISTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26255383896, + 49.336051033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b60accbb45ef46c0e5eb8f3d67078d10310d7696", + "fields": { + "code_commune_insee": "57181", + "nom_de_la_commune": "DOMNOM LES DIEUZE", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8611192156, + 6.82405240882 + ], + "libelle_d_acheminement": "DOMNOM LES DIEUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82405240882, + 48.8611192156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0b60a44bf3c539ea87484497b9e21196ca99d73", + "fields": { + "code_commune_insee": "57182", + "nom_de_la_commune": "DONJEUX", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8785631549, + 6.41104605137 + ], + "libelle_d_acheminement": "DONJEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41104605137, + 48.8785631549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d5faad38a05279f5805ca8fe1dcfb9e6a6b3ca5", + "fields": { + "code_commune_insee": "57188", + "nom_de_la_commune": "EGUELSHARDT", + "code_postal": "57230", + "coordonnees_gps": [ + 49.0242750772, + 7.52002924724 + ], + "libelle_d_acheminement": "EGUELSHARDT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52002924724, + 49.0242750772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efb6deb56c5b2b94cc5e740cce74a99d221b0bec", + "fields": { + "code_commune_insee": "57189", + "nom_de_la_commune": "EINCHEVILLE", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9851540857, + 6.60090977779 + ], + "libelle_d_acheminement": "EINCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60090977779, + 48.9851540857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ada365c3760f3eca3f70a2210c891269a4d39398", + "fields": { + "code_commune_insee": "57190", + "nom_de_la_commune": "ELVANGE", + "code_postal": "57690", + "coordonnees_gps": [ + 49.0502783316, + 6.54406450287 + ], + "libelle_d_acheminement": "ELVANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54406450287, + 49.0502783316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e1b9f2c8be393448dd16ecad5ea3b6cf5e1c664", + "fields": { + "code_commune_insee": "57191", + "nom_de_la_commune": "ELZANGE", + "code_postal": "57970", + "coordonnees_gps": [ + 49.3607500617, + 6.29245730658 + ], + "libelle_d_acheminement": "ELZANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29245730658, + 49.3607500617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a767ab2518c2cd68d50029fe90fa749bba1488c", + "fields": { + "code_commune_insee": "57194", + "nom_de_la_commune": "ENTRANGE", + "code_postal": "57330", + "coordonnees_gps": [ + 49.4144066567, + 6.11091763784 + ], + "libelle_d_acheminement": "ENTRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11091763784, + 49.4144066567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2038ffc65aa1f78a1b307268a499ec98a2e732c6", + "fields": { + "code_commune_insee": "57206", + "nom_de_la_commune": "FAMECK", + "code_postal": "57290", + "coordonnees_gps": [ + 49.2987006334, + 6.10649265804 + ], + "libelle_d_acheminement": "FAMECK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10649265804, + 49.2987006334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c15d214a87d5c6a87e3abfb57a66f592a73aca2", + "fields": { + "code_commune_insee": "57215", + "nom_de_la_commune": "FLASTROFF", + "code_postal": "57320", + "coordonnees_gps": [ + 49.374940842, + 6.53622362598 + ], + "libelle_d_acheminement": "FLASTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53622362598, + 49.374940842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "384404cc8703981720c8def0a86d11b1c2de3f45", + "fields": { + "code_commune_insee": "57217", + "nom_de_la_commune": "FLETRANGE", + "code_postal": "57690", + "coordonnees_gps": [ + 49.0726696242, + 6.56399437397 + ], + "libelle_d_acheminement": "FLETRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56399437397, + 49.0726696242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1221d58605c02b40d19845403a7301021c4e6216", + "fields": { + "code_commune_insee": "57220", + "nom_de_la_commune": "FLOCOURT", + "code_postal": "57580", + "coordonnees_gps": [ + 48.9726017584, + 6.41177578458 + ], + "libelle_d_acheminement": "FLOCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41177578458, + 48.9726017584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d196ec937b719e98b709d98451d8720bcb273a1", + "fields": { + "ligne_5": "MARIENAU", + "code_commune_insee": "57227", + "libelle_d_acheminement": "FORBACH", + "code_postal": "57600", + "nom_de_la_commune": "FORBACH", + "coordonnees_gps": [ + 49.1912650369, + 6.89275798526 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89275798526, + 49.1912650369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "887121775c5c25adbe6dc48b8024ef734a3c5a57", + "fields": { + "code_commune_insee": "57229", + "nom_de_la_commune": "FOULCREY", + "code_postal": "57830", + "coordonnees_gps": [ + 48.6402409757, + 6.86776109913 + ], + "libelle_d_acheminement": "FOULCREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86776109913, + 48.6402409757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90097fe3dbcefd4f0edaaa23f3ee133932f55d20", + "fields": { + "code_commune_insee": "57231", + "nom_de_la_commune": "FOVILLE", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9185016444, + 6.3250667958 + ], + "libelle_d_acheminement": "FOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3250667958, + 48.9185016444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24631e71ab3b7f10492f6d6492f6c746a9328494", + "fields": { + "code_commune_insee": "57248", + "nom_de_la_commune": "GIVRYCOURT", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9292867874, + 6.9178467389 + ], + "libelle_d_acheminement": "GIVRYCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9178467389, + 48.9292867874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f901f0a43a61e43ba34b289ff865de4c8811b67", + "fields": { + "code_commune_insee": "57252", + "nom_de_la_commune": "GOMELANGE", + "code_postal": "57220", + "coordonnees_gps": [ + 49.2385076599, + 6.46140268813 + ], + "libelle_d_acheminement": "GOMELANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46140268813, + 49.2385076599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4e81737da1b58ec352e723c6899f23690d176b2", + "fields": { + "ligne_5": "KERPRICH LES DIEUZE", + "code_commune_insee": "57270", + "libelle_d_acheminement": "VAL DE BRIDE", + "code_postal": "57260", + "nom_de_la_commune": "VAL DE BRIDE", + "coordonnees_gps": [ + 48.8293499889, + 6.69041214777 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69041214777, + 48.8293499889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b4886d2ea0cb10b3b7b937487314b006a60520a", + "fields": { + "code_commune_insee": "57281", + "nom_de_la_commune": "HABOUDANGE", + "code_postal": "57340", + "coordonnees_gps": [ + 48.8851645447, + 6.60344571848 + ], + "libelle_d_acheminement": "HABOUDANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60344571848, + 48.8851645447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52d0d2cbff727023b894a62e2911c0afcf4d9e5e", + "fields": { + "code_commune_insee": "57287", + "nom_de_la_commune": "BASSE HAM", + "code_postal": "57970", + "coordonnees_gps": [ + 49.3759973873, + 6.23863474222 + ], + "libelle_d_acheminement": "BASSE HAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23863474222, + 49.3759973873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b43d3f796b818f75cc9b4b54a07f828feaf92c20", + "fields": { + "code_commune_insee": "57289", + "nom_de_la_commune": "HAMBACH", + "code_postal": "57910", + "coordonnees_gps": [ + 49.0541849142, + 7.03768665525 + ], + "libelle_d_acheminement": "HAMBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03768665525, + 49.0541849142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4e9f05ee858ebcc5238d14267f96ce7dc4df726", + "fields": { + "code_commune_insee": "57299", + "nom_de_la_commune": "HARTZVILLER", + "code_postal": "57870", + "coordonnees_gps": [ + 48.6702553561, + 7.08771571021 + ], + "libelle_d_acheminement": "HARTZVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08771571021, + 48.6702553561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3afddbf31591eb3dfb02ba4e8e71b10c50401e2", + "fields": { + "code_commune_insee": "57309", + "nom_de_la_commune": "HEINING LES BOUZONVILLE", + "code_postal": "57320", + "coordonnees_gps": [ + 49.30601587, + 6.59755585227 + ], + "libelle_d_acheminement": "HEINING LES BOUZONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59755585227, + 49.30601587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "870ddcceb37d1c406202b3edb514c1abcc691494", + "fields": { + "code_commune_insee": "57325", + "nom_de_la_commune": "HILSPRICH", + "code_postal": "57510", + "coordonnees_gps": [ + 49.0059363706, + 6.91134139053 + ], + "libelle_d_acheminement": "HILSPRICH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91134139053, + 49.0059363706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c213c9604b058e87ee3fbc32d0d8694dabcc0cd", + "fields": { + "code_commune_insee": "57341", + "nom_de_la_commune": "HUNTING", + "code_postal": "57480", + "coordonnees_gps": [ + 49.4144357167, + 6.32945827777 + ], + "libelle_d_acheminement": "HUNTING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32945827777, + 49.4144357167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55db4d0a2dd6f7e1b696545103fb915937eda938", + "fields": { + "code_commune_insee": "57343", + "nom_de_la_commune": "ILLANGE", + "code_postal": "57970", + "coordonnees_gps": [ + 49.3287497597, + 6.17935792858 + ], + "libelle_d_acheminement": "ILLANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17935792858, + 49.3287497597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0c38fb4c6cf6f8cec487c073885f8da96b8e4f0", + "fields": { + "code_commune_insee": "57350", + "nom_de_la_commune": "JOUY AUX ARCHES", + "code_postal": "57130", + "coordonnees_gps": [ + 49.0631848992, + 6.08507919116 + ], + "libelle_d_acheminement": "JOUY AUX ARCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08507919116, + 49.0631848992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "787e5e64b51ced4d169cc47870f849e8a3ae8dd4", + "fields": { + "code_commune_insee": "57355", + "nom_de_la_commune": "KALHAUSEN", + "code_postal": "57412", + "coordonnees_gps": [ + 49.0234490158, + 7.14457834236 + ], + "libelle_d_acheminement": "KALHAUSEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14457834236, + 49.0234490158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7fcb5716132c2b7b9cc5dfd8e2ee2497690ab3b", + "fields": { + "code_commune_insee": "57361", + "nom_de_la_commune": "KERLING LES SIERCK", + "code_postal": "57480", + "coordonnees_gps": [ + 49.3910007055, + 6.37261264464 + ], + "libelle_d_acheminement": "KERLING LES SIERCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37261264464, + 49.3910007055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4db86ac2e49229b3327120bad8cfe03831785b6f", + "fields": { + "code_commune_insee": "57365", + "nom_de_la_commune": "KIRSCHNAUMEN", + "code_postal": "57480", + "coordonnees_gps": [ + 49.4036194349, + 6.43416231385 + ], + "libelle_d_acheminement": "KIRSCHNAUMEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43416231385, + 49.4036194349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de2075128dcf2ae5d20c358bc64c5fc3d7d2e0cd", + "fields": { + "code_commune_insee": "57372", + "nom_de_la_commune": "KUNTZIG", + "code_postal": "57970", + "coordonnees_gps": [ + 49.3481386676, + 6.23675334876 + ], + "libelle_d_acheminement": "KUNTZIG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23675334876, + 49.3481386676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "651914987ed9741997765f386b6ee793688afa35", + "fields": { + "code_commune_insee": "57373", + "nom_de_la_commune": "LACHAMBRE", + "code_postal": "57730", + "coordonnees_gps": [ + 49.0788433987, + 6.7537514656 + ], + "libelle_d_acheminement": "LACHAMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7537514656, + 49.0788433987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abad6f7bfeee8ed0500baf082a8f9fe2bb4be515", + "fields": { + "code_commune_insee": "57375", + "nom_de_la_commune": "LAGARDE", + "code_postal": "57810", + "coordonnees_gps": [ + 48.6872802759, + 6.71223569046 + ], + "libelle_d_acheminement": "LAGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71223569046, + 48.6872802759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ce7b836299060132cf68d7ab872301cac976508", + "fields": { + "code_commune_insee": "57389", + "nom_de_la_commune": "LELLING", + "code_postal": "57660", + "coordonnees_gps": [ + 49.0419434651, + 6.71058338549 + ], + "libelle_d_acheminement": "LELLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71058338549, + 49.0419434651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8afb826137e1cf5720b17e940d631202ca3f6e3", + "fields": { + "code_commune_insee": "57390", + "nom_de_la_commune": "LEMBERG", + "code_postal": "57620", + "coordonnees_gps": [ + 49.0103404671, + 7.38244495948 + ], + "libelle_d_acheminement": "LEMBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38244495948, + 49.0103404671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b28c7cdeb972d4ad08d68a1300717705089f289", + "fields": { + "code_commune_insee": "57391", + "nom_de_la_commune": "LEMONCOURT", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8636367151, + 6.38717271434 + ], + "libelle_d_acheminement": "LEMONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38717271434, + 48.8636367151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18352a834fdac1295e783662fe7c092923fca47d", + "fields": { + "code_commune_insee": "57392", + "nom_de_la_commune": "LEMUD", + "code_postal": "57580", + "coordonnees_gps": [ + 49.0335930566, + 6.36360487921 + ], + "libelle_d_acheminement": "LEMUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36360487921, + 49.0335930566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f0254808019d77919ac85e10a4ed40a549db78e", + "fields": { + "code_commune_insee": "57394", + "nom_de_la_commune": "LENING", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9581758873, + 6.81929265344 + ], + "libelle_d_acheminement": "LENING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81929265344, + 48.9581758873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e799207c32ad871a3cdf5b492b3697fc117a682", + "fields": { + "code_commune_insee": "57402", + "nom_de_la_commune": "LIEDERSCHIEDT", + "code_postal": "57230", + "coordonnees_gps": [ + 49.1216563582, + 7.4960610535 + ], + "libelle_d_acheminement": "LIEDERSCHIEDT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4960610535, + 49.1216563582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ec348b6d3969dae6869a8c2ff8db9f5b0ad590f", + "fields": { + "code_commune_insee": "57404", + "nom_de_la_commune": "LINDRE BASSE", + "code_postal": "57260", + "coordonnees_gps": [ + 48.7996602877, + 6.74900604531 + ], + "libelle_d_acheminement": "LINDRE BASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74900604531, + 48.7996602877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a69e7f130a9dbb7203e47d20330b5d0a04b33ee", + "fields": { + "code_commune_insee": "57410", + "nom_de_la_commune": "LHOR", + "code_postal": "57670", + "coordonnees_gps": [ + 48.8866796516, + 6.8716948604 + ], + "libelle_d_acheminement": "LHOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8716948604, + 48.8866796516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f48c3bbea1256695165885b8f38765851ccab00d", + "fields": { + "code_commune_insee": "57418", + "nom_de_la_commune": "LOUDREFING", + "code_postal": "57670", + "coordonnees_gps": [ + 48.8528606416, + 6.89337964685 + ], + "libelle_d_acheminement": "LOUDREFING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89337964685, + 48.8528606416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "935d0064b959d9d02391d465a21625480cf89023", + "fields": { + "code_commune_insee": "57421", + "nom_de_la_commune": "LOUTZVILLER", + "code_postal": "57720", + "coordonnees_gps": [ + 49.144497827, + 7.38445498027 + ], + "libelle_d_acheminement": "LOUTZVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38445498027, + 49.144497827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56a4caf05cdd88a96da6120579f160d63c22d8a8", + "fields": { + "code_commune_insee": "57427", + "nom_de_la_commune": "LUTZELBOURG", + "code_postal": "57820", + "coordonnees_gps": [ + 48.7348913591, + 7.25953062438 + ], + "libelle_d_acheminement": "LUTZELBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25953062438, + 48.7348913591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fa41fc2b127b9420e129dc61a2adf2214cb4507", + "fields": { + "code_commune_insee": "57433", + "nom_de_la_commune": "MAIZIERES LES METZ", + "code_postal": "57280", + "coordonnees_gps": [ + 49.2085175228, + 6.15614048077 + ], + "libelle_d_acheminement": "MAIZIERES LES METZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15614048077, + 49.2085175228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4711ac2d0c70bdbea40c32f33374e4568cc4dfa9", + "fields": { + "code_commune_insee": "57438", + "nom_de_la_commune": "MALROY", + "code_postal": "57640", + "coordonnees_gps": [ + 49.174168393, + 6.21680938131 + ], + "libelle_d_acheminement": "MALROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21680938131, + 49.174168393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc7b9e2e081ef3abc50bcebb9e230601e9d5702e", + "fields": { + "ligne_5": "RITZING", + "code_commune_insee": "57439", + "libelle_d_acheminement": "MANDEREN RITZING", + "code_postal": "57480", + "nom_de_la_commune": "MANDEREN RITZING", + "coordonnees_gps": [ + 49.4535376683, + 6.44989622561 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44989622561, + 49.4535376683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1779706f04246e07742d8c06c8f6030698cf42fe", + "fields": { + "code_commune_insee": "57441", + "nom_de_la_commune": "MANOM", + "code_postal": "57100", + "coordonnees_gps": [ + 49.3807868109, + 6.17472865398 + ], + "libelle_d_acheminement": "MANOM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17472865398, + 49.3807868109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3a145475b204b5c056fe4b4175adeac2fb8af82", + "fields": { + "code_commune_insee": "57443", + "nom_de_la_commune": "MARANGE SILVANGE", + "code_postal": "57535", + "coordonnees_gps": [ + 49.215755032, + 6.11238062036 + ], + "libelle_d_acheminement": "MARANGE SILVANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11238062036, + 49.215755032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e864f38fbd2c5e8c00dda86ba259ace67c1947b", + "fields": { + "code_commune_insee": "57445", + "nom_de_la_commune": "MARIEULLES", + "code_postal": "57420", + "coordonnees_gps": [ + 49.0056098276, + 6.11076140538 + ], + "libelle_d_acheminement": "MARIEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11076140538, + 49.0056098276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b7f3137c2fb0086d39091fd4f30db9c0dec665e", + "fields": { + "code_commune_insee": "57446", + "nom_de_la_commune": "MARIMONT LES BENESTROFF", + "code_postal": "57670", + "coordonnees_gps": [ + 48.8895699015, + 6.788940583 + ], + "libelle_d_acheminement": "MARIMONT LES BENESTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.788940583, + 48.8895699015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b98813d710d4c04ebd06fc2aa7ba0f2ec936d4c", + "fields": { + "code_commune_insee": "57463", + "nom_de_la_commune": "METZ", + "code_postal": "57050", + "coordonnees_gps": [ + 49.1081133279, + 6.1955245421 + ], + "libelle_d_acheminement": "METZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1955245421, + 49.1081133279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba3d33a2f36a03c97f54d8da815a2c6a1c139a39", + "fields": { + "code_commune_insee": "57470", + "nom_de_la_commune": "MOLRING", + "code_postal": "57670", + "coordonnees_gps": [ + 48.8903821461, + 6.8236381289 + ], + "libelle_d_acheminement": "MOLRING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8236381289, + 48.8903821461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b31abe45192ea38d6e584d150d5f24051415c5d", + "fields": { + "code_commune_insee": "57475", + "nom_de_la_commune": "MONDORFF", + "code_postal": "57570", + "coordonnees_gps": [ + 49.5020535838, + 6.25578622629 + ], + "libelle_d_acheminement": "MONDORFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25578622629, + 49.5020535838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f975aee3acf2f1b7ec71ddd2479d3272566bcca", + "fields": { + "code_commune_insee": "57476", + "nom_de_la_commune": "MONNEREN", + "code_postal": "57920", + "coordonnees_gps": [ + 49.3493856385, + 6.41198740634 + ], + "libelle_d_acheminement": "MONNEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41198740634, + 49.3493856385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ed2044630d833b1befffb066d9086bf2daaebb7", + "fields": { + "ligne_5": "OGY", + "code_commune_insee": "57482", + "libelle_d_acheminement": "OGY MONTOY FLANVILLE", + "code_postal": "57530", + "nom_de_la_commune": "OGY MONTOY FLANVILLE", + "coordonnees_gps": [ + 49.120451502, + 6.2888126818 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2888126818, + 49.120451502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81abb709034d8d24dc76992475c2ee503bf36520", + "fields": { + "ligne_5": "FROIDCUL", + "code_commune_insee": "57491", + "libelle_d_acheminement": "MOYEUVRE GRANDE", + "code_postal": "57250", + "nom_de_la_commune": "MOYEUVRE GRANDE", + "coordonnees_gps": [ + 49.2539723138, + 6.0371285867 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0371285867, + 49.2539723138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecb39b67001128534103f91edabc7cce08cf06b2", + "fields": { + "code_commune_insee": "57493", + "nom_de_la_commune": "MULCEY", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8077142021, + 6.66402921027 + ], + "libelle_d_acheminement": "MULCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66402921027, + 48.8077142021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "388cea203750e65bfec7a94339c1fc69eee2c79b", + "fields": { + "code_commune_insee": "57495", + "nom_de_la_commune": "NARBEFONTAINE", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1367860634, + 6.54682213499 + ], + "libelle_d_acheminement": "NARBEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54682213499, + 49.1367860634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8325d6275804e5e58e8577ea4472d5dd121eaa9b", + "fields": { + "code_commune_insee": "57498", + "nom_de_la_commune": "NEUFCHEF", + "code_postal": "57700", + "coordonnees_gps": [ + 49.317754273, + 6.01399448465 + ], + "libelle_d_acheminement": "NEUFCHEF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01399448465, + 49.317754273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bbf0776faf9c8c23c19d2fcc45781863274690c", + "fields": { + "code_commune_insee": "57504", + "nom_de_la_commune": "NIDERHOFF", + "code_postal": "57560", + "coordonnees_gps": [ + 48.6279003557, + 7.008294528 + ], + "libelle_d_acheminement": "NIDERHOFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.008294528, + 48.6279003557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e5ac077ad7a7ce956bde056b2d2d7c7d87b63c4", + "fields": { + "code_commune_insee": "57505", + "nom_de_la_commune": "NIDERVILLER", + "code_postal": "57565", + "coordonnees_gps": [ + 48.7105520176, + 7.11797148432 + ], + "libelle_d_acheminement": "NIDERVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11797148432, + 48.7105520176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19ab51394034435dadbca04889310a4efafa81c4", + "fields": { + "code_commune_insee": "57510", + "nom_de_la_commune": "NOISSEVILLE", + "code_postal": "57645", + "coordonnees_gps": [ + 49.1337073536, + 6.27240706225 + ], + "libelle_d_acheminement": "NOISSEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27240706225, + 49.1337073536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97d514522d17ba729357a5cccae9da87ed32a0c1", + "fields": { + "code_commune_insee": "57518", + "nom_de_la_commune": "OBERSTINZEL", + "code_postal": "57930", + "coordonnees_gps": [ + 48.7917214165, + 7.03623655137 + ], + "libelle_d_acheminement": "OBERSTINZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03623655137, + 48.7917214165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9194fdae5d97a76cbafc0de5c245de5c4b5ca6b", + "fields": { + "code_commune_insee": "57520", + "nom_de_la_commune": "OBRECK", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8514849093, + 6.59872976547 + ], + "libelle_d_acheminement": "OBRECK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59872976547, + 48.8514849093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a27f65d323cd5ca488ca7f8639c55aa095f422d3", + "fields": { + "code_commune_insee": "57521", + "nom_de_la_commune": "OETING", + "code_postal": "57600", + "coordonnees_gps": [ + 49.172008781, + 6.90938897168 + ], + "libelle_d_acheminement": "OETING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90938897168, + 49.172008781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fd861a3d1b6ad91299ace21985ec771456bfd4b", + "fields": { + "code_commune_insee": "57530", + "nom_de_la_commune": "OTTONVILLE", + "code_postal": "57220", + "coordonnees_gps": [ + 49.2161203101, + 6.52231246205 + ], + "libelle_d_acheminement": "OTTONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52231246205, + 49.2161203101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef25dc94de6f7e795b892658a8d81ce050ed3b8f", + "fields": { + "code_commune_insee": "57534", + "nom_de_la_commune": "PELTRE", + "code_postal": "57245", + "coordonnees_gps": [ + 49.072284463, + 6.22444313381 + ], + "libelle_d_acheminement": "PELTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22444313381, + 49.072284463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56add9dcadbfae8cb44fe057ce9d486973b8e0f1", + "fields": { + "ligne_5": "ST BERNARD", + "code_commune_insee": "57542", + "libelle_d_acheminement": "PIBLANGE", + "code_postal": "57220", + "nom_de_la_commune": "PIBLANGE", + "coordonnees_gps": [ + 49.2458851209, + 6.41209982643 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41209982643, + 49.2458851209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ad60142600bd1c0f84058443ff5beaa5719a2c5", + "fields": { + "code_commune_insee": "57543", + "nom_de_la_commune": "PIERREVILLERS", + "code_postal": "57120", + "coordonnees_gps": [ + 49.2255549058, + 6.09577655472 + ], + "libelle_d_acheminement": "PIERREVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09577655472, + 49.2255549058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b5b9685a1f64869d51110d7b9fb5319ddb94329", + "fields": { + "code_commune_insee": "57544", + "nom_de_la_commune": "PLAINE DE WALSCH", + "code_postal": "57870", + "coordonnees_gps": [ + 48.6900524567, + 7.14681874191 + ], + "libelle_d_acheminement": "PLAINE DE WALSCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14681874191, + 48.6900524567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "588de924c85655c25b4ee0ca60e70ae225d12213", + "fields": { + "code_commune_insee": "57546", + "nom_de_la_commune": "PLESNOIS", + "code_postal": "57140", + "coordonnees_gps": [ + 49.1709600596, + 6.11233794217 + ], + "libelle_d_acheminement": "PLESNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11233794217, + 49.1709600596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "158f76dcd86ae8455c1bdab64c918ac91510a96d", + "fields": { + "code_commune_insee": "57547", + "nom_de_la_commune": "POMMERIEUX", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9950226786, + 6.18256631128 + ], + "libelle_d_acheminement": "POMMERIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18256631128, + 48.9950226786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89842e4391e101e76210336cfb46fbcb2814b596", + "fields": { + "code_commune_insee": "57549", + "nom_de_la_commune": "PONTPIERRE", + "code_postal": "57380", + "coordonnees_gps": [ + 49.0490255784, + 6.63804894747 + ], + "libelle_d_acheminement": "PONTPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63804894747, + 49.0490255784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "536dab6f280a6a6b086975eb0d5b946c13bf11f8", + "fields": { + "code_commune_insee": "57552", + "nom_de_la_commune": "POUILLY", + "code_postal": "57420", + "coordonnees_gps": [ + 49.0549329608, + 6.19454629621 + ], + "libelle_d_acheminement": "POUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19454629621, + 49.0549329608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcc97854a720a7789c33ee1f47eb6230c556a5c0", + "fields": { + "code_commune_insee": "57557", + "nom_de_la_commune": "PUTTELANGE LES THIONVILLE", + "code_postal": "57570", + "coordonnees_gps": [ + 49.4859599881, + 6.25676575434 + ], + "libelle_d_acheminement": "PUTTELANGE LES THIONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25676575434, + 49.4859599881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80575eff8eb1263f3c44ecbef75ee1d1e361c5e6", + "fields": { + "code_commune_insee": "57562", + "nom_de_la_commune": "RANGUEVAUX", + "code_postal": "57700", + "coordonnees_gps": [ + 49.2956996055, + 6.05513226147 + ], + "libelle_d_acheminement": "RANGUEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05513226147, + 49.2956996055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd74ffa51409fdfe0d7f54bb97cdb2bab353eaa3", + "fields": { + "code_commune_insee": "57563", + "nom_de_la_commune": "RAVILLE", + "code_postal": "57530", + "coordonnees_gps": [ + 49.0903409058, + 6.47750019939 + ], + "libelle_d_acheminement": "RAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47750019939, + 49.0903409058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bba2cc12eeecc294f4e421f37fc5779bc3db3e3", + "fields": { + "code_commune_insee": "57564", + "nom_de_la_commune": "RECHICOURT LE CHATEAU", + "code_postal": "57810", + "coordonnees_gps": [ + 48.678407747, + 6.84276180766 + ], + "libelle_d_acheminement": "RECHICOURT LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84276180766, + 48.678407747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab784fc2db0ec3c16d82dd4811c630153ef19f8d", + "fields": { + "code_commune_insee": "57567", + "nom_de_la_commune": "REMELFANG", + "code_postal": "57320", + "coordonnees_gps": [ + 49.268230209, + 6.51275682105 + ], + "libelle_d_acheminement": "REMELFANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51275682105, + 49.268230209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ccf6b24d3c14501cb63ea72dfc7d436241a73f5", + "fields": { + "code_commune_insee": "57575", + "nom_de_la_commune": "RETONFEY", + "code_postal": "57645", + "coordonnees_gps": [ + 49.1332326497, + 6.31630111446 + ], + "libelle_d_acheminement": "RETONFEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31630111446, + 49.1332326497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75c1cc888847aded48de9581aaab53cc6cb2acf2", + "fields": { + "ligne_5": "REZONVILLE", + "code_commune_insee": "57578", + "libelle_d_acheminement": "REZONVILLE VIONVILLE", + "code_postal": "57130", + "nom_de_la_commune": "REZONVILLE VIONVILLE", + "coordonnees_gps": [ + 49.0899933152, + 5.98385942866 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98385942866, + 49.0899933152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73f07bd63e30ec090282cff33e99d3192dcfce17", + "fields": { + "code_commune_insee": "57580", + "nom_de_la_commune": "RICHE", + "code_postal": "57340", + "coordonnees_gps": [ + 48.8894955539, + 6.632474492 + ], + "libelle_d_acheminement": "RICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.632474492, + 48.8894955539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e91848c3cc88f6d80f9ded4acec0ca641c34b064", + "fields": { + "code_commune_insee": "57586", + "nom_de_la_commune": "ROCHONVILLERS", + "code_postal": "57840", + "coordonnees_gps": [ + 49.4096487557, + 6.02717195246 + ], + "libelle_d_acheminement": "ROCHONVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02717195246, + 49.4096487557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b668b68970439bfbb605245c40d26fd5f4719ac2", + "fields": { + "code_commune_insee": "57591", + "nom_de_la_commune": "ROMBAS", + "code_postal": "57120", + "coordonnees_gps": [ + 49.2440664423, + 6.08820823406 + ], + "libelle_d_acheminement": "ROMBAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08820823406, + 49.2440664423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4901b28ee3911a589de4dc956189968081b9e02f", + "fields": { + "code_commune_insee": "57593", + "nom_de_la_commune": "RONCOURT", + "code_postal": "57860", + "coordonnees_gps": [ + 49.2001585372, + 6.05186000716 + ], + "libelle_d_acheminement": "RONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05186000716, + 49.2001585372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9364ed0343920d83e7b9a8e4a05a76c279cc812", + "fields": { + "code_commune_insee": "57594", + "nom_de_la_commune": "ROPPEVILLER", + "code_postal": "57230", + "coordonnees_gps": [ + 49.0895314895, + 7.5228410898 + ], + "libelle_d_acheminement": "ROPPEVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5228410898, + 49.0895314895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d243d8480eb0b37cde161cfd643ec96419311e9", + "fields": { + "code_commune_insee": "57597", + "nom_de_la_commune": "ROSSELANGE", + "code_postal": "57780", + "coordonnees_gps": [ + 49.2667090169, + 6.06105180621 + ], + "libelle_d_acheminement": "ROSSELANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06105180621, + 49.2667090169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f84c2f0392a2c7d6c02aba4f1c2c1f9b0c8c222c", + "fields": { + "code_commune_insee": "57600", + "nom_de_la_commune": "ROUSSY LE VILLAGE", + "code_postal": "57330", + "coordonnees_gps": [ + 49.4605841152, + 6.17782499217 + ], + "libelle_d_acheminement": "ROUSSY LE VILLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17782499217, + 49.4605841152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0da1a90227e48fcd4c3cb69e4dbe140f7f9f5ea", + "fields": { + "code_commune_insee": "57613", + "nom_de_la_commune": "ST JEAN DE BASSEL", + "code_postal": "57930", + "coordonnees_gps": [ + 48.8098303761, + 6.95819464193 + ], + "libelle_d_acheminement": "ST JEAN DE BASSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95819464193, + 48.8098303761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ae74940ca25263fd70b9d14b76c208ef21d0ef2", + "fields": { + "code_commune_insee": "57614", + "nom_de_la_commune": "ST JEAN KOURTZERODE", + "code_postal": "57370", + "coordonnees_gps": [ + 48.7572752471, + 7.19428583817 + ], + "libelle_d_acheminement": "ST JEAN KOURTZERODE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19428583817, + 48.7572752471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3302a996271fe0581f5c267542f76cc8147fc0f", + "fields": { + "code_commune_insee": "57619", + "nom_de_la_commune": "ST LOUIS LES BITCHE", + "code_postal": "57620", + "coordonnees_gps": [ + 48.9900389284, + 7.35271084125 + ], + "libelle_d_acheminement": "ST LOUIS LES BITCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35271084125, + 48.9900389284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b425725e39dab797dcd49761a46af7ec03ec2bbf", + "fields": { + "code_commune_insee": "57620", + "nom_de_la_commune": "STE MARIE AUX CHENES", + "code_postal": "57255", + "coordonnees_gps": [ + 49.1914264698, + 6.0072170748 + ], + "libelle_d_acheminement": "STE MARIE AUX CHENES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0072170748, + 49.1914264698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6ba38fc71a95db468788e6f45f47b6449063042", + "fields": { + "code_commune_insee": "57624", + "nom_de_la_commune": "STE RUFFINE", + "code_postal": "57130", + "coordonnees_gps": [ + 49.1065906287, + 6.09568579469 + ], + "libelle_d_acheminement": "STE RUFFINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09568579469, + 49.1065906287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1cdbd0435b35d03bd3d29b63ca3bb8a0954db5f", + "fields": { + "code_commune_insee": "57627", + "nom_de_la_commune": "SANRY SUR NIED", + "code_postal": "57530", + "coordonnees_gps": [ + 49.0537244163, + 6.34213009495 + ], + "libelle_d_acheminement": "SANRY SUR NIED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34213009495, + 49.0537244163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddaddacbbc2a5022169611bfd974cfaa0b62d7ac", + "fields": { + "code_commune_insee": "57628", + "nom_de_la_commune": "SARRALBE", + "code_postal": "57430", + "coordonnees_gps": [ + 48.9956964636, + 7.01158536668 + ], + "libelle_d_acheminement": "SARRALBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01158536668, + 48.9956964636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b040c01843178183af386bd2605e3cf47832f12", + "fields": { + "code_commune_insee": "57639", + "nom_de_la_commune": "SCHORBACH", + "code_postal": "57230", + "coordonnees_gps": [ + 49.0806906445, + 7.40599666671 + ], + "libelle_d_acheminement": "SCHORBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40599666671, + 49.0806906445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "759a0f904a904375bcd79082be3afaae8b6fd0d5", + "fields": { + "code_commune_insee": "57640", + "nom_de_la_commune": "SCHWERDORFF", + "code_postal": "57320", + "coordonnees_gps": [ + 49.3725901068, + 6.57210977292 + ], + "libelle_d_acheminement": "SCHWERDORFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57210977292, + 49.3725901068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a050f593f52d382dd10bd6e307263d29923e54d2", + "fields": { + "code_commune_insee": "57642", + "nom_de_la_commune": "SCY CHAZELLES", + "code_postal": "57160", + "coordonnees_gps": [ + 49.1140417721, + 6.11984882666 + ], + "libelle_d_acheminement": "SCY CHAZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11984882666, + 49.1140417721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "992b89ff9c9cb088906980e338f17045ccbf065b", + "fields": { + "code_commune_insee": "57649", + "nom_de_la_commune": "SERVIGNY LES STE BARBE", + "code_postal": "57640", + "coordonnees_gps": [ + 49.1486719983, + 6.27473702344 + ], + "libelle_d_acheminement": "SERVIGNY LES STE BARBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27473702344, + 49.1486719983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b1484e13467d7a7d1c0d8ce39ac90ba3ab59453", + "fields": { + "code_commune_insee": "57652", + "nom_de_la_commune": "SILLEGNY", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9871036218, + 6.14755818334 + ], + "libelle_d_acheminement": "SILLEGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14755818334, + 48.9871036218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d9de308e8859756b7d33467c8d7383e5122481b", + "fields": { + "code_commune_insee": "57664", + "nom_de_la_commune": "TARQUIMPOL", + "code_postal": "57260", + "coordonnees_gps": [ + 48.780910982, + 6.76220586082 + ], + "libelle_d_acheminement": "TARQUIMPOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76220586082, + 48.780910982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17996106af35eeb78cad584dcd1996e3c10ab63c", + "fields": { + "code_commune_insee": "57667", + "nom_de_la_commune": "TETERCHEN", + "code_postal": "57220", + "coordonnees_gps": [ + 49.2301105568, + 6.5674968633 + ], + "libelle_d_acheminement": "TETERCHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5674968633, + 49.2301105568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb7a69aaef84882f88addf30783b0d1cc6b55ab3", + "fields": { + "ligne_5": "KOEKING", + "code_commune_insee": "57672", + "libelle_d_acheminement": "THIONVILLE", + "code_postal": "57100", + "nom_de_la_commune": "THIONVILLE", + "coordonnees_gps": [ + 49.3759716201, + 6.12928314217 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12928314217, + 49.3759716201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85029344b984ba951564b6359224baddad930261", + "fields": { + "code_commune_insee": "57685", + "nom_de_la_commune": "VAHL LES BENESTROFF", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9192974745, + 6.78723850274 + ], + "libelle_d_acheminement": "VAHL LES BENESTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78723850274, + 48.9192974745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebdbed9e729a52fe39abe01cd527ffc582ce6789", + "fields": { + "code_commune_insee": "57691", + "nom_de_la_commune": "VALMUNSTER", + "code_postal": "57220", + "coordonnees_gps": [ + 49.2475100945, + 6.51684193459 + ], + "libelle_d_acheminement": "VALMUNSTER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51684193459, + 49.2475100945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c62146db62e39ae87a8328c08c3ef33bba0271c9", + "fields": { + "code_commune_insee": "57700", + "nom_de_la_commune": "VAUDRECHING", + "code_postal": "57320", + "coordonnees_gps": [ + 49.2762381448, + 6.52500672927 + ], + "libelle_d_acheminement": "VAUDRECHING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52500672927, + 49.2762381448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0f0ca670f1ca4d9a44117a83a94ee3bb94f8128", + "fields": { + "code_commune_insee": "57706", + "nom_de_la_commune": "VERGAVILLE", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8408430132, + 6.74607225475 + ], + "libelle_d_acheminement": "VERGAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74607225475, + 48.8408430132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44aa183958720eaf8ee25ec2bb407a9d7bcad1e3", + "fields": { + "code_commune_insee": "57723", + "nom_de_la_commune": "VIRMING", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9424365099, + 6.7521262958 + ], + "libelle_d_acheminement": "VIRMING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7521262958, + 48.9424365099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64547781e9a65e6d0db844277891fb69c83d76c5", + "fields": { + "code_commune_insee": "57727", + "nom_de_la_commune": "VIVIERS", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8939817383, + 6.43988945822 + ], + "libelle_d_acheminement": "VIVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43988945822, + 48.8939817383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4ab331fe99ae01cd970a032526617270dd96aad", + "fields": { + "code_commune_insee": "57730", + "nom_de_la_commune": "VOLMERANGE LES BOULAY", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1701692039, + 6.44955385962 + ], + "libelle_d_acheminement": "VOLMERANGE LES BOULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44955385962, + 49.1701692039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1870a9ff51e492ed9e3b8a4bd68363b6a395243b", + "fields": { + "code_commune_insee": "57731", + "nom_de_la_commune": "VOLMERANGE LES MINES", + "code_postal": "57330", + "coordonnees_gps": [ + 49.4457659624, + 6.06722602054 + ], + "libelle_d_acheminement": "VOLMERANGE LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06722602054, + 49.4457659624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8a123bd89acbc341f6a136c75bf51cf3b63210c", + "fields": { + "code_commune_insee": "57732", + "nom_de_la_commune": "VOLMUNSTER", + "code_postal": "57720", + "coordonnees_gps": [ + 49.1202720542, + 7.36590048312 + ], + "libelle_d_acheminement": "VOLMUNSTER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36590048312, + 49.1202720542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66d420105c03e2b66d17e42476aa091ce3931931", + "fields": { + "code_commune_insee": "57736", + "nom_de_la_commune": "VRY", + "code_postal": "57640", + "coordonnees_gps": [ + 49.1924424841, + 6.35664506917 + ], + "libelle_d_acheminement": "VRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35664506917, + 49.1924424841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1f76cb500432bff138f11dcccb6da9f1a496daf", + "fields": { + "code_commune_insee": "57752", + "nom_de_la_commune": "WOUSTVILLER", + "code_postal": "57915", + "coordonnees_gps": [ + 49.0785622468, + 7.0055640876 + ], + "libelle_d_acheminement": "WOUSTVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0055640876, + 49.0785622468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a3c60ed0aba6c563ca28c9c84319952922b68ad", + "fields": { + "code_commune_insee": "57754", + "nom_de_la_commune": "XANREY", + "code_postal": "57630", + "coordonnees_gps": [ + 48.7510168445, + 6.5874192208 + ], + "libelle_d_acheminement": "XANREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5874192208, + 48.7510168445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db6d9ab75834968f3ec719f31386d84fad4bba0b", + "fields": { + "code_commune_insee": "57761", + "nom_de_la_commune": "ZILLING", + "code_postal": "57370", + "coordonnees_gps": [ + 48.7867266822, + 7.21030213577 + ], + "libelle_d_acheminement": "ZILLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21030213577, + 48.7867266822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27cc610925b3be04f23ab65e4a57912dbf8e069b", + "fields": { + "code_commune_insee": "57762", + "nom_de_la_commune": "ZIMMING", + "code_postal": "57690", + "coordonnees_gps": [ + 49.1301980522, + 6.58678160982 + ], + "libelle_d_acheminement": "ZIMMING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58678160982, + 49.1301980522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "711eca732383ac1023a358171318e28a780e277a", + "fields": { + "code_commune_insee": "57765", + "nom_de_la_commune": "DIESEN", + "code_postal": "57890", + "coordonnees_gps": [ + 49.1755911262, + 6.69315944055 + ], + "libelle_d_acheminement": "DIESEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69315944055, + 49.1755911262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31481db551c00a388dbbd081635d7f73f5d0d2c4", + "fields": { + "code_commune_insee": "58018", + "nom_de_la_commune": "AUTHIOU", + "code_postal": "58700", + "coordonnees_gps": [ + 47.2653242927, + 3.41891982538 + ], + "libelle_d_acheminement": "AUTHIOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41891982538, + 47.2653242927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2d691341c430e0844fe68523efe5c4c3a359849", + "fields": { + "code_commune_insee": "58019", + "nom_de_la_commune": "AVREE", + "code_postal": "58170", + "coordonnees_gps": [ + 46.8229493433, + 3.87907755172 + ], + "libelle_d_acheminement": "AVREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87907755172, + 46.8229493433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b0da549c3002d8eb9233465bb06ab05b61e9a39", + "fields": { + "code_commune_insee": "58030", + "nom_de_la_commune": "BICHES", + "code_postal": "58110", + "coordonnees_gps": [ + 46.9936912156, + 3.65454091933 + ], + "libelle_d_acheminement": "BICHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65454091933, + 46.9936912156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81004995a926307a30c1f22d09d492319b03e1cc", + "fields": { + "code_commune_insee": "58031", + "nom_de_la_commune": "BILLY CHEVANNES", + "code_postal": "58270", + "coordonnees_gps": [ + 47.0121989226, + 3.46179486419 + ], + "libelle_d_acheminement": "BILLY CHEVANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46179486419, + 47.0121989226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97ddef1ab9dbcb390ec432292b2c4597b60bf0e3", + "fields": { + "code_commune_insee": "58032", + "nom_de_la_commune": "BILLY SUR OISY", + "code_postal": "58500", + "coordonnees_gps": [ + 47.4843005161, + 3.40178360674 + ], + "libelle_d_acheminement": "BILLY SUR OISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40178360674, + 47.4843005161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "401a6add2dc6c878acc403991fd8cb14d4c509b1", + "fields": { + "code_commune_insee": "58035", + "nom_de_la_commune": "BONA", + "code_postal": "58330", + "coordonnees_gps": [ + 47.0648311481, + 3.42596350946 + ], + "libelle_d_acheminement": "BONA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42596350946, + 47.0648311481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51f41e1251d977213039a46913b36c9584eb9725", + "fields": { + "code_commune_insee": "58039", + "nom_de_la_commune": "BREVES", + "code_postal": "58530", + "coordonnees_gps": [ + 47.430617501, + 3.62503798759 + ], + "libelle_d_acheminement": "BREVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62503798759, + 47.430617501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1f959857647ca2ef76da66d81f2a3b5e39aae72", + "fields": { + "code_commune_insee": "58050", + "nom_de_la_commune": "CHALLEMENT", + "code_postal": "58420", + "coordonnees_gps": [ + 47.3130719582, + 3.59365043297 + ], + "libelle_d_acheminement": "CHALLEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59365043297, + 47.3130719582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffb8bc24c2656eae53cb95d604148429ec73f0bc", + "fields": { + "code_commune_insee": "58051", + "nom_de_la_commune": "CHALLUY", + "code_postal": "58000", + "coordonnees_gps": [ + 46.9425745079, + 3.14061478033 + ], + "libelle_d_acheminement": "CHALLUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14061478033, + 46.9425745079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9ec8fad82caff45a700f2564f2ba5529848e7a0", + "fields": { + "ligne_5": "PLAGNY", + "code_commune_insee": "58051", + "libelle_d_acheminement": "CHALLUY", + "code_postal": "58000", + "nom_de_la_commune": "CHALLUY", + "coordonnees_gps": [ + 46.9425745079, + 3.14061478033 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14061478033, + 46.9425745079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1f518cba3a2b4b36daa29d4e3ee6f49af79e813", + "fields": { + "code_commune_insee": "58056", + "nom_de_la_commune": "CHAMPVOUX", + "code_postal": "58400", + "coordonnees_gps": [ + 47.1440153043, + 3.07361379775 + ], + "libelle_d_acheminement": "CHAMPVOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07361379775, + 47.1440153043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c50d6341b9e62d0713dfc0781d718a739deac193", + "fields": { + "code_commune_insee": "58062", + "nom_de_la_commune": "CHATEAU CHINON VILLE", + "code_postal": "58120", + "coordonnees_gps": [ + 47.0626511564, + 3.92696760176 + ], + "libelle_d_acheminement": "CHATEAU CHINON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92696760176, + 47.0626511564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc24058707ed41cf19374dd8ee54e5fae857fe36", + "fields": { + "code_commune_insee": "58064", + "nom_de_la_commune": "CHATEAUNEUF VAL DE BARGIS", + "code_postal": "58350", + "coordonnees_gps": [ + 47.2837806445, + 3.21656972159 + ], + "libelle_d_acheminement": "CHATEAUNEUF VAL DE BARGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21656972159, + 47.2837806445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4805450e4b6e0263c0bb66391867d875f5efdc8e", + "fields": { + "code_commune_insee": "58066", + "nom_de_la_commune": "CHATIN", + "code_postal": "58120", + "coordonnees_gps": [ + 47.1029949815, + 3.88309542741 + ], + "libelle_d_acheminement": "CHATIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88309542741, + 47.1029949815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3739e64be0fa2b19d61297dd7f060649efbec1a2", + "fields": { + "code_commune_insee": "58067", + "nom_de_la_commune": "CHAULGNES", + "code_postal": "58400", + "coordonnees_gps": [ + 47.1290872121, + 3.10710953083 + ], + "libelle_d_acheminement": "CHAULGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10710953083, + 47.1290872121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54445ec6817be005221130cc29665fa4b7b40a91", + "fields": { + "code_commune_insee": "58071", + "nom_de_la_commune": "CHEVANNES CHANGY", + "code_postal": "58420", + "coordonnees_gps": [ + 47.2909006199, + 3.4529391081 + ], + "libelle_d_acheminement": "CHEVANNES CHANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4529391081, + 47.2909006199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc4cd41c09e555382d5acc330e61cb81dcf187c4", + "fields": { + "ligne_5": "BEAUGY", + "code_commune_insee": "58079", + "libelle_d_acheminement": "CLAMECY", + "code_postal": "58500", + "nom_de_la_commune": "CLAMECY", + "coordonnees_gps": [ + 47.4610140738, + 3.51008131187 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51008131187, + 47.4610140738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "889ab1427179047a1bd135a3575e35222725e249", + "fields": { + "code_commune_insee": "58085", + "nom_de_la_commune": "CORVOL L ORGUEILLEUX", + "code_postal": "58460", + "coordonnees_gps": [ + 47.4328581251, + 3.36750754848 + ], + "libelle_d_acheminement": "CORVOL L ORGUEILLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36750754848, + 47.4328581251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "295bb4f88a9fd1544ce864cd7b467dc3349bb823", + "fields": { + "code_commune_insee": "58088", + "nom_de_la_commune": "COULANGES LES NEVERS", + "code_postal": "58660", + "coordonnees_gps": [ + 47.013650182, + 3.19716378992 + ], + "libelle_d_acheminement": "COULANGES LES NEVERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19716378992, + 47.013650182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6aec77aa204711281ce40c87edb00050f9090af", + "fields": { + "code_commune_insee": "58090", + "nom_de_la_commune": "COURCELLES", + "code_postal": "58210", + "coordonnees_gps": [ + 47.4026373716, + 3.3940224595 + ], + "libelle_d_acheminement": "COURCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3940224595, + 47.4026373716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4f25610aa2b5f271c32724cccda8496c891bd79", + "fields": { + "code_commune_insee": "58106", + "nom_de_la_commune": "DUN LES PLACES", + "code_postal": "58230", + "coordonnees_gps": [ + 47.289797689, + 4.01928339749 + ], + "libelle_d_acheminement": "DUN LES PLACES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01928339749, + 47.289797689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a134184e0b5c2d8f0602edfb72f9c7169fadceba", + "fields": { + "code_commune_insee": "58108", + "nom_de_la_commune": "EMPURY", + "code_postal": "58140", + "coordonnees_gps": [ + 47.3475457799, + 3.82219513783 + ], + "libelle_d_acheminement": "EMPURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82219513783, + 47.3475457799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc7303cec4e95fdc4d00e744d421a394071bb375", + "fields": { + "code_commune_insee": "58109", + "nom_de_la_commune": "ENTRAINS SUR NOHAIN", + "code_postal": "58410", + "coordonnees_gps": [ + 47.4610040367, + 3.27333257004 + ], + "libelle_d_acheminement": "ENTRAINS SUR NOHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27333257004, + 47.4610040367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b25c33a1a4a0351b4f6e3e96640e661fba66623d", + "fields": { + "code_commune_insee": "58116", + "nom_de_la_commune": "FLEZ CUZY", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3584468681, + 3.63385591808 + ], + "libelle_d_acheminement": "FLEZ CUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63385591808, + 47.3584468681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30ab57f83416592c93041240dfcd8b798c4ad77f", + "fields": { + "code_commune_insee": "58121", + "nom_de_la_commune": "GARCHIZY", + "code_postal": "58600", + "coordonnees_gps": [ + 47.0432163647, + 3.09375234427 + ], + "libelle_d_acheminement": "GARCHIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09375234427, + 47.0432163647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7276b57b08a52ae487075755cdbd982f6596bce1", + "fields": { + "code_commune_insee": "58125", + "nom_de_la_commune": "GIEN SUR CURE", + "code_postal": "58230", + "coordonnees_gps": [ + 47.1456570657, + 4.09021461672 + ], + "libelle_d_acheminement": "GIEN SUR CURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09021461672, + 47.1456570657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d688b9eb07536e8137964d43c2e0eae07048f23", + "fields": { + "code_commune_insee": "58126", + "nom_de_la_commune": "GIMOUILLE", + "code_postal": "58470", + "coordonnees_gps": [ + 46.9412562853, + 3.09837395371 + ], + "libelle_d_acheminement": "GIMOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09837395371, + 46.9412562853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ede81928fc5fc3fa8da268ea87a967571433496b", + "fields": { + "code_commune_insee": "58138", + "nom_de_la_commune": "LANGERON", + "code_postal": "58240", + "coordonnees_gps": [ + 46.8169584148, + 3.08314704096 + ], + "libelle_d_acheminement": "LANGERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08314704096, + 46.8169584148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e04cc4cdf8e8c92a469acb6fbd3f67a8e669567", + "fields": { + "code_commune_insee": "58140", + "nom_de_la_commune": "LAROCHEMILLAY", + "code_postal": "58370", + "coordonnees_gps": [ + 46.8904175771, + 3.98533892675 + ], + "libelle_d_acheminement": "LAROCHEMILLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98533892675, + 46.8904175771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab3ac45cc3865853ea81ab0ecd9c2a04bec4815b", + "fields": { + "code_commune_insee": "58141", + "nom_de_la_commune": "LAVAULT DE FRETOY", + "code_postal": "58230", + "coordonnees_gps": [ + 47.1054408095, + 4.02164055616 + ], + "libelle_d_acheminement": "LAVAULT DE FRETOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02164055616, + 47.1054408095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99932f79260b292f48de46b3c64d969054914832", + "fields": { + "code_commune_insee": "58147", + "nom_de_la_commune": "LURCY LE BOURG", + "code_postal": "58700", + "coordonnees_gps": [ + 47.1656078028, + 3.39665729196 + ], + "libelle_d_acheminement": "LURCY LE BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39665729196, + 47.1656078028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ee26d0828f3778cfe84586b15dff2de9e27578b", + "fields": { + "code_commune_insee": "58149", + "nom_de_la_commune": "LUZY", + "code_postal": "58170", + "coordonnees_gps": [ + 46.7965929965, + 3.99922728747 + ], + "libelle_d_acheminement": "LUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99922728747, + 46.7965929965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c3277eb05b5b3d4199b41d6ddadf0de33bc3138", + "fields": { + "code_commune_insee": "58157", + "nom_de_la_commune": "MARIGNY L EGLISE", + "code_postal": "58140", + "coordonnees_gps": [ + 47.3451872372, + 3.94113791416 + ], + "libelle_d_acheminement": "MARIGNY L EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94113791416, + 47.3451872372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5881602797220dfcee986df10b5785391e8a515b", + "fields": { + "code_commune_insee": "58162", + "nom_de_la_commune": "MENESTREAU", + "code_postal": "58410", + "coordonnees_gps": [ + 47.4095765836, + 3.26147861119 + ], + "libelle_d_acheminement": "MENESTREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26147861119, + 47.4095765836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc4b3f4964b9a3b24912309a31325cf0e9948c12", + "fields": { + "code_commune_insee": "58177", + "nom_de_la_commune": "MONTIGNY EN MORVAN", + "code_postal": "58120", + "coordonnees_gps": [ + 47.1446460147, + 3.86175539037 + ], + "libelle_d_acheminement": "MONTIGNY EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86175539037, + 47.1446460147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec4d4eeb3ee1c9dc6926db0a7849cb03d6680c1f", + "fields": { + "code_commune_insee": "58183", + "nom_de_la_commune": "MOURON SUR YONNE", + "code_postal": "58800", + "coordonnees_gps": [ + 47.1984538221, + 3.74007897525 + ], + "libelle_d_acheminement": "MOURON SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74007897525, + 47.1984538221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "474dc8a8005a27e44a3f51f7b305894aa9fb9abc", + "fields": { + "code_commune_insee": "58186", + "nom_de_la_commune": "MURLIN", + "code_postal": "58700", + "coordonnees_gps": [ + 47.1954955945, + 3.17316291743 + ], + "libelle_d_acheminement": "MURLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17316291743, + 47.1954955945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42a502bedba2aaf3808c91d78d2cba48868971bc", + "fields": { + "code_commune_insee": "58191", + "nom_de_la_commune": "NEUILLY", + "code_postal": "58420", + "coordonnees_gps": [ + 47.2406097442, + 3.51510509101 + ], + "libelle_d_acheminement": "NEUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51510509101, + 47.2406097442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f99d31ae63ce8f5bfcd66f2da491601bd9c0fb7", + "fields": { + "code_commune_insee": "58198", + "nom_de_la_commune": "OISY", + "code_postal": "58500", + "coordonnees_gps": [ + 47.4715736996, + 3.45107563466 + ], + "libelle_d_acheminement": "OISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45107563466, + 47.4715736996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "508cac459dbd33221309deaaf7720370365a56f8", + "fields": { + "code_commune_insee": "58202", + "nom_de_la_commune": "OUGNY", + "code_postal": "58110", + "coordonnees_gps": [ + 47.0774917586, + 3.71108202561 + ], + "libelle_d_acheminement": "OUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71108202561, + 47.0774917586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9cb44e8c13cc44d74ec9013ed945586cd88ef36", + "fields": { + "code_commune_insee": "58212", + "nom_de_la_commune": "POISEUX", + "code_postal": "58130", + "coordonnees_gps": [ + 47.1203587052, + 3.23981973484 + ], + "libelle_d_acheminement": "POISEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23981973484, + 47.1203587052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b6840aa23e5b98cdef0beff7d8dc76aeddde0e8", + "fields": { + "code_commune_insee": "58214", + "nom_de_la_commune": "POUGUES LES EAUX", + "code_postal": "58320", + "coordonnees_gps": [ + 47.0759346437, + 3.09656237194 + ], + "libelle_d_acheminement": "POUGUES LES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09656237194, + 47.0759346437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c203cee4d4635a1b2c0c88cc5f04dadae177f823", + "fields": { + "code_commune_insee": "58216", + "nom_de_la_commune": "POUQUES LORMES", + "code_postal": "58140", + "coordonnees_gps": [ + 47.3242466095, + 3.77724647553 + ], + "libelle_d_acheminement": "POUQUES LORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77724647553, + 47.3242466095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa59719b3c71dfa38ae1e46c6ef439ebe63bda5b", + "fields": { + "code_commune_insee": "58221", + "nom_de_la_commune": "REMILLY", + "code_postal": "58250", + "coordonnees_gps": [ + 46.8282746226, + 3.79337792444 + ], + "libelle_d_acheminement": "REMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79337792444, + 46.8282746226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aec36e0f5fd142c3ffb17d3b7ae6f9d11b3015fc", + "fields": { + "code_commune_insee": "58223", + "nom_de_la_commune": "ROUY", + "code_postal": "58110", + "coordonnees_gps": [ + 47.0382901584, + 3.54022524667 + ], + "libelle_d_acheminement": "ROUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54022524667, + 47.0382901584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c123b09803db1c1e25a85a43c1708aa13d15aca0", + "fields": { + "code_commune_insee": "58240", + "nom_de_la_commune": "ST FRANCHY", + "code_postal": "58330", + "coordonnees_gps": [ + 47.1512468042, + 3.45504416231 + ], + "libelle_d_acheminement": "ST FRANCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45504416231, + 47.1512468042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8ca40b0828bb53382bc95b1a63f30ba9b814529", + "fields": { + "code_commune_insee": "58242", + "nom_de_la_commune": "ST GERMAIN DES BOIS", + "code_postal": "58210", + "coordonnees_gps": [ + 47.3688689171, + 3.51935768956 + ], + "libelle_d_acheminement": "ST GERMAIN DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51935768956, + 47.3688689171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1375047687cc79b7df5bb88cdc2be3404abe8f9e", + "fields": { + "code_commune_insee": "58253", + "nom_de_la_commune": "STE MARIE", + "code_postal": "58330", + "coordonnees_gps": [ + 47.111632983, + 3.44705005669 + ], + "libelle_d_acheminement": "STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44705005669, + 47.111632983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dddd1abd0bcfdcc4038678ec3b950da57be9d7d", + "fields": { + "code_commune_insee": "58263", + "nom_de_la_commune": "ST PIERRE DU MONT", + "code_postal": "58210", + "coordonnees_gps": [ + 47.3972230217, + 3.44528921516 + ], + "libelle_d_acheminement": "ST PIERRE DU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44528921516, + 47.3972230217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc493a77a5baf4617b71ad47629ad70502471fd9", + "fields": { + "code_commune_insee": "58267", + "nom_de_la_commune": "ST SAULGE", + "code_postal": "58330", + "coordonnees_gps": [ + 47.1016983299, + 3.51951300252 + ], + "libelle_d_acheminement": "ST SAULGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51951300252, + 47.1016983299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7045855df153e8a1957390270077be8f8c453d0d", + "fields": { + "code_commune_insee": "58271", + "nom_de_la_commune": "SAIZY", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3561828054, + 3.69933759931 + ], + "libelle_d_acheminement": "SAIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69933759931, + 47.3561828054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adb5d7a3cb0b08076f6d26f86f0fb190d70d8e0e", + "fields": { + "code_commune_insee": "58278", + "nom_de_la_commune": "SERMOISE SUR LOIRE", + "code_postal": "58000", + "coordonnees_gps": [ + 46.9469146489, + 3.18310220464 + ], + "libelle_d_acheminement": "SERMOISE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18310220464, + 46.9469146489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83214655a025e66ff4bc889fd2f22167169fc486", + "fields": { + "code_commune_insee": "58289", + "nom_de_la_commune": "TERNANT", + "code_postal": "58250", + "coordonnees_gps": [ + 46.7519793961, + 3.84842348353 + ], + "libelle_d_acheminement": "TERNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84842348353, + 46.7519793961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b80a7d477f1ed9d39108d29293fe7548a4845ee1", + "fields": { + "code_commune_insee": "58290", + "nom_de_la_commune": "THAIX", + "code_postal": "58250", + "coordonnees_gps": [ + 46.8493225096, + 3.71331013498 + ], + "libelle_d_acheminement": "THAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71331013498, + 46.8493225096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "885eb0a0c2a97f65750a7b381899aeafff5c77df", + "fields": { + "code_commune_insee": "58291", + "nom_de_la_commune": "THIANGES", + "code_postal": "58260", + "coordonnees_gps": [ + 46.9121380764, + 3.49075278698 + ], + "libelle_d_acheminement": "THIANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49075278698, + 46.9121380764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25c261c6ea8cde86d5c13833c4775b9076c1d25b", + "fields": { + "code_commune_insee": "58295", + "nom_de_la_commune": "TRACY SUR LOIRE", + "code_postal": "58150", + "coordonnees_gps": [ + 47.3288567643, + 2.91378042455 + ], + "libelle_d_acheminement": "TRACY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91378042455, + 47.3288567643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc234755d0f223a9a4f6c0ed813cc78bd8b6bb0e", + "fields": { + "code_commune_insee": "58303", + "nom_de_la_commune": "VARENNES VAUZELLES", + "code_postal": "58640", + "coordonnees_gps": [ + 47.0372879565, + 3.14354311851 + ], + "libelle_d_acheminement": "VARENNES VAUZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14354311851, + 47.0372879565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4e6989224ab35f28701977c2b8df6e3a932b96a", + "fields": { + "code_commune_insee": "58304", + "nom_de_la_commune": "VARZY", + "code_postal": "58210", + "coordonnees_gps": [ + 47.356767544, + 3.38692732286 + ], + "libelle_d_acheminement": "VARZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38692732286, + 47.356767544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76536d4743d6012efe397c1739c6ab8134b45ca7", + "fields": { + "code_commune_insee": "58311", + "nom_de_la_commune": "VILLE LANGY", + "code_postal": "58270", + "coordonnees_gps": [ + 46.9377064471, + 3.50190643749 + ], + "libelle_d_acheminement": "VILLE LANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50190643749, + 46.9377064471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f49c572e31ccfacd378822b8e7e6070c2c7845ef", + "fields": { + "code_commune_insee": "59009", + "nom_de_la_commune": "VILLENEUVE D ASCQ", + "code_postal": "59491", + "coordonnees_gps": [ + 50.6324372393, + 3.1535257221 + ], + "libelle_d_acheminement": "VILLENEUVE D ASCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1535257221, + 50.6324372393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1b2cb05d6c776f83730abc8718847e97577e159", + "fields": { + "code_commune_insee": "59009", + "nom_de_la_commune": "VILLENEUVE D ASCQ", + "code_postal": "59493", + "coordonnees_gps": [ + 50.6324372393, + 3.1535257221 + ], + "libelle_d_acheminement": "VILLENEUVE D ASCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1535257221, + 50.6324372393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b67f1784d1e96c6ab76e5d5cb28e2c998b0f149", + "fields": { + "code_commune_insee": "59012", + "nom_de_la_commune": "ANOR", + "code_postal": "59186", + "coordonnees_gps": [ + 49.9949415311, + 4.11785622281 + ], + "libelle_d_acheminement": "ANOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11785622281, + 49.9949415311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92b944861edfa5d06d402ec3c2c5984547b849aa", + "fields": { + "code_commune_insee": "59016", + "nom_de_la_commune": "ARMBOUTS CAPPEL", + "code_postal": "59380", + "coordonnees_gps": [ + 50.981590247, + 2.34855524915 + ], + "libelle_d_acheminement": "ARMBOUTS CAPPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34855524915, + 50.981590247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a0d9d19ffbb93e52adeea3737fdd696e101e441", + "fields": { + "code_commune_insee": "59021", + "nom_de_la_commune": "ASSEVENT", + "code_postal": "59600", + "coordonnees_gps": [ + 50.2884411784, + 4.01973285077 + ], + "libelle_d_acheminement": "ASSEVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01973285077, + 50.2884411784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34da932a58d73d35edc471456a62c2db5a8a50a4", + "fields": { + "code_commune_insee": "59028", + "nom_de_la_commune": "AUBY", + "code_postal": "59950", + "coordonnees_gps": [ + 50.4142959158, + 3.06115822735 + ], + "libelle_d_acheminement": "AUBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06115822735, + 50.4142959158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42f58b7e29f4efb99e021b8b5725c469ff92f0d7", + "fields": { + "code_commune_insee": "59034", + "nom_de_la_commune": "AVELIN", + "code_postal": "59710", + "coordonnees_gps": [ + 50.5397882047, + 3.08608433822 + ], + "libelle_d_acheminement": "AVELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08608433822, + 50.5397882047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cf019b3587d21f383f0a076862db8ab6e5fc1a0", + "fields": { + "code_commune_insee": "59035", + "nom_de_la_commune": "AVESNELLES", + "code_postal": "59440", + "coordonnees_gps": [ + 50.1056589526, + 3.95096845588 + ], + "libelle_d_acheminement": "AVESNELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95096845588, + 50.1056589526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ce47d3ce72a3e2a1141870eb6eab41fd6d322a0", + "fields": { + "code_commune_insee": "59043", + "nom_de_la_commune": "BAILLEUL", + "code_postal": "59270", + "coordonnees_gps": [ + 50.7274252798, + 2.7379912081 + ], + "libelle_d_acheminement": "BAILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7379912081, + 50.7274252798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7424f2676ad760db10cbf6c7970fc18faee7957", + "fields": { + "code_commune_insee": "59047", + "nom_de_la_commune": "BANTEUX", + "code_postal": "59266", + "coordonnees_gps": [ + 50.0656630113, + 3.18790046791 + ], + "libelle_d_acheminement": "BANTEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18790046791, + 50.0656630113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d26dcc63c7d503b09724897769d57e0fb6a03a9a", + "fields": { + "code_commune_insee": "59052", + "nom_de_la_commune": "BAUVIN", + "code_postal": "59221", + "coordonnees_gps": [ + 50.5162714452, + 2.89367809062 + ], + "libelle_d_acheminement": "BAUVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89367809062, + 50.5162714452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d91e2b3ab7fa52a2b1c5d518b7dfa7a3ffbed629", + "fields": { + "code_commune_insee": "59054", + "nom_de_la_commune": "BAVINCHOVE", + "code_postal": "59670", + "coordonnees_gps": [ + 50.7749510357, + 2.44160500507 + ], + "libelle_d_acheminement": "BAVINCHOVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44160500507, + 50.7749510357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fe772dba69c43e593fd70a34d1726e8d1703061", + "fields": { + "code_commune_insee": "59058", + "nom_de_la_commune": "BEAUFORT", + "code_postal": "59330", + "coordonnees_gps": [ + 50.2183201415, + 3.96567972154 + ], + "libelle_d_acheminement": "BEAUFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96567972154, + 50.2183201415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e46e71c27fc723a4eb6a052d4fed1b40f3fd8b76", + "fields": { + "code_commune_insee": "59070", + "nom_de_la_commune": "BERMERIES", + "code_postal": "59570", + "coordonnees_gps": [ + 50.2847571566, + 3.74905320173 + ], + "libelle_d_acheminement": "BERMERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74905320173, + 50.2847571566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c35b69f92ef982c67cab519cbb143e2b9ff43bb", + "fields": { + "code_commune_insee": "59083", + "nom_de_la_commune": "BISSEZEELE", + "code_postal": "59380", + "coordonnees_gps": [ + 50.9131167962, + 2.40661835313 + ], + "libelle_d_acheminement": "BISSEZEELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40661835313, + 50.9131167962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdfdfc0eaa7665cb62791b9aeec523519cf7d0eb", + "fields": { + "code_commune_insee": "59085", + "nom_de_la_commune": "BLECOURT", + "code_postal": "59268", + "coordonnees_gps": [ + 50.2175061105, + 3.21286001901 + ], + "libelle_d_acheminement": "BLECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21286001901, + 50.2175061105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fe5aea426f4470c9401794f0c047b4bdc0f99d5", + "fields": { + "code_commune_insee": "59103", + "nom_de_la_commune": "BOUSSIERES SUR SAMBRE", + "code_postal": "59330", + "coordonnees_gps": [ + 50.2410266122, + 3.8784480036 + ], + "libelle_d_acheminement": "BOUSSIERES SUR SAMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8784480036, + 50.2410266122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59e73501a3383b1ccb511237c6360cd4a4765855", + "fields": { + "code_commune_insee": "59106", + "nom_de_la_commune": "BOUVINES", + "code_postal": "59830", + "coordonnees_gps": [ + 50.5822303153, + 3.19348904281 + ], + "libelle_d_acheminement": "BOUVINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19348904281, + 50.5822303153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1841c1aac35fd66e8531f3338fd951a480ede898", + "fields": { + "code_commune_insee": "59111", + "nom_de_la_commune": "BROXEELE", + "code_postal": "59470", + "coordonnees_gps": [ + 50.8279362343, + 2.32136721551 + ], + "libelle_d_acheminement": "BROXEELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32136721551, + 50.8279362343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b7467d6129d387ce8efb2eaa2f880a1befd8509", + "fields": { + "code_commune_insee": "59118", + "nom_de_la_commune": "BUSIGNY", + "code_postal": "59137", + "coordonnees_gps": [ + 50.0375979868, + 3.46602965443 + ], + "libelle_d_acheminement": "BUSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46602965443, + 50.0375979868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1453335644d209b15761ed8291218d1e3cb3570", + "fields": { + "code_commune_insee": "59120", + "nom_de_la_commune": "CAESTRE", + "code_postal": "59190", + "coordonnees_gps": [ + 50.7566001349, + 2.60456655751 + ], + "libelle_d_acheminement": "CAESTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60456655751, + 50.7566001349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51850e12a7fc7a24818904a35fada3889d1f8e71", + "fields": { + "code_commune_insee": "59121", + "nom_de_la_commune": "CAGNONCLES", + "code_postal": "59161", + "coordonnees_gps": [ + 50.185423787, + 3.31868765658 + ], + "libelle_d_acheminement": "CAGNONCLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31868765658, + 50.185423787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "919cb6e3dc8d4df2dc6d403ed2ef9911da807f0e", + "fields": { + "ligne_5": "MORENCHIES", + "code_commune_insee": "59122", + "libelle_d_acheminement": "CAMBRAI", + "code_postal": "59400", + "nom_de_la_commune": "CAMBRAI", + "coordonnees_gps": [ + 50.1702775977, + 3.24221021072 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24221021072, + 50.1702775977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6440c827b6d8df4820e3370f886d66babae29e3a", + "fields": { + "code_commune_insee": "59126", + "nom_de_la_commune": "CANTIN", + "code_postal": "59169", + "coordonnees_gps": [ + 50.3097701017, + 3.1238994061 + ], + "libelle_d_acheminement": "CANTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1238994061, + 50.3097701017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cbfc76e0dd6ee1f3b8eabf2ae142c610587d342", + "fields": { + "code_commune_insee": "59128", + "nom_de_la_commune": "CAPINGHEM", + "code_postal": "59160", + "coordonnees_gps": [ + 50.6474745374, + 2.96473852343 + ], + "libelle_d_acheminement": "CAPINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96473852343, + 50.6474745374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "401b142ebba72a0e0b5d69fa858384b271cfecd6", + "fields": { + "code_commune_insee": "59134", + "nom_de_la_commune": "CARTIGNIES", + "code_postal": "59244", + "coordonnees_gps": [ + 50.0779397385, + 3.84271561148 + ], + "libelle_d_acheminement": "CARTIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84271561148, + 50.0779397385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1491a30914b7dfb88ed59f8203a06802bc63319", + "fields": { + "code_commune_insee": "59143", + "nom_de_la_commune": "LA CHAPELLE D ARMENTIERES", + "code_postal": "59930", + "coordonnees_gps": [ + 50.6659536434, + 2.89558804665 + ], + "libelle_d_acheminement": "LA CHAPELLE D ARMENTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89558804665, + 50.6659536434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c332fd30079ea1cd369b191546223c7b419a0862", + "fields": { + "code_commune_insee": "59151", + "nom_de_la_commune": "COLLERET", + "code_postal": "59680", + "coordonnees_gps": [ + 50.2598488269, + 4.084768244 + ], + "libelle_d_acheminement": "COLLERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.084768244, + 50.2598488269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "503e3b36ee3395da1a8ee74f4057c0b7f255293d", + "fields": { + "code_commune_insee": "59153", + "nom_de_la_commune": "CONDE SUR L ESCAUT", + "code_postal": "59163", + "coordonnees_gps": [ + 50.4678612037, + 3.60589087978 + ], + "libelle_d_acheminement": "CONDE SUR L ESCAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60589087978, + 50.4678612037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6379ebcfee675e42d38daea1596f3ede7c360356", + "fields": { + "code_commune_insee": "59161", + "nom_de_la_commune": "CREVECOEUR SUR L ESCAUT", + "code_postal": "59258", + "coordonnees_gps": [ + 50.0727577904, + 3.26867770233 + ], + "libelle_d_acheminement": "CREVECOEUR SUR L ESCAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26867770233, + 50.0727577904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cb40d53b4b748af353f188608f354aab78407f0", + "fields": { + "code_commune_insee": "59170", + "nom_de_la_commune": "DECHY", + "code_postal": "59187", + "coordonnees_gps": [ + 50.3495940778, + 3.1299861719 + ], + "libelle_d_acheminement": "DECHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1299861719, + 50.3495940778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58624d52ee6f95b6666ddb7a526e4e4ed93e24fa", + "fields": { + "code_commune_insee": "59173", + "nom_de_la_commune": "DEULEMONT", + "code_postal": "59890", + "coordonnees_gps": [ + 50.7280171454, + 2.96967815507 + ], + "libelle_d_acheminement": "DEULEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96967815507, + 50.7280171454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2f9ebca3eec0c161278a1e5d1f8dd2838e952d9", + "fields": { + "ligne_5": "ROSENDAEL", + "code_commune_insee": "59183", + "libelle_d_acheminement": "DUNKERQUE", + "code_postal": "59240", + "nom_de_la_commune": "DUNKERQUE", + "coordonnees_gps": [ + 51.0307229078, + 2.33752414095 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33752414095, + 51.0307229078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "553c7f8d3e01349a20e524f106c05577726475bf", + "fields": { + "ligne_5": "MARDYCK", + "code_commune_insee": "59183", + "libelle_d_acheminement": "DUNKERQUE", + "code_postal": "59279", + "nom_de_la_commune": "DUNKERQUE", + "coordonnees_gps": [ + 51.0307229078, + 2.33752414095 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33752414095, + 51.0307229078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a40a39f4db9582c73f4d3fd994b0b5560ae931ec", + "fields": { + "ligne_5": "FORT MARDYCK", + "code_commune_insee": "59183", + "libelle_d_acheminement": "DUNKERQUE", + "code_postal": "59430", + "nom_de_la_commune": "DUNKERQUE", + "coordonnees_gps": [ + 51.0307229078, + 2.33752414095 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33752414095, + 51.0307229078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe09314f686ebe8f3aec670f1bdaef8f469e740b", + "fields": { + "code_commune_insee": "59195", + "nom_de_la_commune": "ENGLOS", + "code_postal": "59320", + "coordonnees_gps": [ + 50.6262888459, + 2.9579931684 + ], + "libelle_d_acheminement": "ENGLOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9579931684, + 50.6262888459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71b979acdbbd83c90effedb7b7ce8a286932aae6", + "fields": { + "code_commune_insee": "59204", + "nom_de_la_commune": "ESCARMAIN", + "code_postal": "59213", + "coordonnees_gps": [ + 50.2236333668, + 3.54874778179 + ], + "libelle_d_acheminement": "ESCARMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54874778179, + 50.2236333668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b7130377b1df1e670233a0811e4540dcac90807", + "fields": { + "code_commune_insee": "59207", + "nom_de_la_commune": "ESCAUTPONT", + "code_postal": "59278", + "coordonnees_gps": [ + 50.4239013457, + 3.5531225813 + ], + "libelle_d_acheminement": "ESCAUTPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5531225813, + 50.4239013457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b828e1ed80f2b7796b71d64f614298069429c42", + "fields": { + "code_commune_insee": "59209", + "nom_de_la_commune": "ESNES", + "code_postal": "59127", + "coordonnees_gps": [ + 50.0953832001, + 3.30848102705 + ], + "libelle_d_acheminement": "ESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30848102705, + 50.0953832001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2430338a5c71518a222228a04535eebc089be478", + "fields": { + "code_commune_insee": "59217", + "nom_de_la_commune": "ETH", + "code_postal": "59144", + "coordonnees_gps": [ + 50.3253571369, + 3.66687653832 + ], + "libelle_d_acheminement": "ETH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66687653832, + 50.3253571369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2276397d54a94ef3f9e965c4602f56ad58bd766f", + "fields": { + "code_commune_insee": "59227", + "nom_de_la_commune": "FENAIN", + "code_postal": "59179", + "coordonnees_gps": [ + 50.3681590708, + 3.30010560597 + ], + "libelle_d_acheminement": "FENAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30010560597, + 50.3681590708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4ca4e00aca1bd4b028d4eb81f4a8dec460c145c", + "fields": { + "code_commune_insee": "59228", + "nom_de_la_commune": "FERIN", + "code_postal": "59169", + "coordonnees_gps": [ + 50.3309978415, + 3.08128816904 + ], + "libelle_d_acheminement": "FERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08128816904, + 50.3309978415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28cd9264afc202ffec97dd55d96c64af42b494ff", + "fields": { + "code_commune_insee": "59230", + "nom_de_la_commune": "FERRIERE LA GRANDE", + "code_postal": "59680", + "coordonnees_gps": [ + 50.2456386476, + 3.99089727257 + ], + "libelle_d_acheminement": "FERRIERE LA GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99089727257, + 50.2456386476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b429c51757057cdd2b096c77f8214cc745e2d6f", + "fields": { + "code_commune_insee": "59238", + "nom_de_la_commune": "FLINES LES MORTAGNE", + "code_postal": "59158", + "coordonnees_gps": [ + 50.5128551387, + 3.48452339444 + ], + "libelle_d_acheminement": "FLINES LES MORTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48452339444, + 50.5128551387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "543528d81c7a7e06a77d67caebcd76c092c7a063", + "fields": { + "code_commune_insee": "59244", + "nom_de_la_commune": "FONTAINE NOTRE DAME", + "code_postal": "59400", + "coordonnees_gps": [ + 50.1686299394, + 3.16830361827 + ], + "libelle_d_acheminement": "FONTAINE NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16830361827, + 50.1686299394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecd70b13b9b511a9706d2838f2d168ec71fd3640", + "fields": { + "code_commune_insee": "59251", + "nom_de_la_commune": "FRASNOY", + "code_postal": "59530", + "coordonnees_gps": [ + 50.2750060846, + 3.66453718802 + ], + "libelle_d_acheminement": "FRASNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66453718802, + 50.2750060846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3d167c2f97cb0be9e31aecd2704fc1a5c2467d3", + "fields": { + "code_commune_insee": "59260", + "nom_de_la_commune": "GHYVELDE", + "code_postal": "59254", + "coordonnees_gps": [ + 51.0486014481, + 2.51379722419 + ], + "libelle_d_acheminement": "GHYVELDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51379722419, + 51.0486014481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "305ab2d048414f96311801a22d9e715218e92d22", + "fields": { + "code_commune_insee": "59261", + "nom_de_la_commune": "GLAGEON", + "code_postal": "59132", + "coordonnees_gps": [ + 50.0506114879, + 4.06404937092 + ], + "libelle_d_acheminement": "GLAGEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06404937092, + 50.0506114879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34d15be4cf568b1efaa1d1be23d2ecffefde8e98", + "fields": { + "code_commune_insee": "59268", + "nom_de_la_commune": "LA GORGUE", + "code_postal": "59253", + "coordonnees_gps": [ + 50.6309281138, + 2.73945543193 + ], + "libelle_d_acheminement": "LA GORGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73945543193, + 50.6309281138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "397f4a0c0b46bfa05bee41691569aed8f754b1b8", + "fields": { + "code_commune_insee": "59270", + "nom_de_la_commune": "GRAND FAYT", + "code_postal": "59244", + "coordonnees_gps": [ + 50.1123607999, + 3.79567600764 + ], + "libelle_d_acheminement": "GRAND FAYT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79567600764, + 50.1123607999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca0cc1e21cbda5fc489c037b0b1ee3dfd7413dd2", + "fields": { + "code_commune_insee": "59277", + "nom_de_la_commune": "GUSSIGNIES", + "code_postal": "59570", + "coordonnees_gps": [ + 50.3405832772, + 3.74998509899 + ], + "libelle_d_acheminement": "GUSSIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74998509899, + 50.3405832772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81b110538be67016ddd4aa66f930990f7d8ad4ce", + "fields": { + "code_commune_insee": "59279", + "nom_de_la_commune": "HALLUIN", + "code_postal": "59250", + "coordonnees_gps": [ + 50.7747480298, + 3.12692474358 + ], + "libelle_d_acheminement": "HALLUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12692474358, + 50.7747480298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b96a30ce6f9cdd5af61723c71a750703f3d364b", + "fields": { + "code_commune_insee": "59281", + "nom_de_la_commune": "HANTAY", + "code_postal": "59496", + "coordonnees_gps": [ + 50.5374677667, + 2.86845922313 + ], + "libelle_d_acheminement": "HANTAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86845922313, + 50.5374677667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32cd214a00223a94cdc8267c519b36f604200d28", + "fields": { + "code_commune_insee": "59282", + "nom_de_la_commune": "HARDIFORT", + "code_postal": "59670", + "coordonnees_gps": [ + 50.8187124794, + 2.48138038993 + ], + "libelle_d_acheminement": "HARDIFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48138038993, + 50.8187124794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30ca3173adfe56e116ffb5fe8e948cdfadf20bea", + "fields": { + "code_commune_insee": "59288", + "nom_de_la_commune": "HAULCHIN", + "code_postal": "59121", + "coordonnees_gps": [ + 50.3133069663, + 3.42273486523 + ], + "libelle_d_acheminement": "HAULCHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42273486523, + 50.3133069663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61568fb1c84e116f134235d60d4d80c9a332650f", + "fields": { + "code_commune_insee": "59289", + "nom_de_la_commune": "HAUSSY", + "code_postal": "59294", + "coordonnees_gps": [ + 50.2223988964, + 3.4797106662 + ], + "libelle_d_acheminement": "HAUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4797106662, + 50.2223988964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "158b2465727cc299076837d4f4210ff6999a2c12", + "fields": { + "code_commune_insee": "59293", + "nom_de_la_commune": "HAVERSKERQUE", + "code_postal": "59660", + "coordonnees_gps": [ + 50.6403332971, + 2.54677365157 + ], + "libelle_d_acheminement": "HAVERSKERQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54677365157, + 50.6403332971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "444dc1eac055a40b65166549ff673df42e4d67e5", + "fields": { + "code_commune_insee": "59295", + "nom_de_la_commune": "HAZEBROUCK", + "code_postal": "59190", + "coordonnees_gps": [ + 50.7262967113, + 2.53864301455 + ], + "libelle_d_acheminement": "HAZEBROUCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53864301455, + 50.7262967113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dc076d5f881f79101bc787c041906428cb18ded", + "fields": { + "code_commune_insee": "59296", + "nom_de_la_commune": "HECQ", + "code_postal": "59530", + "coordonnees_gps": [ + 50.1795272818, + 3.65140738395 + ], + "libelle_d_acheminement": "HECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65140738395, + 50.1795272818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79e299c3a22f8433650fd6cdcbdefbb6df9e7c64", + "fields": { + "code_commune_insee": "59299", + "nom_de_la_commune": "HEM", + "code_postal": "59510", + "coordonnees_gps": [ + 50.6548049456, + 3.19305632608 + ], + "libelle_d_acheminement": "HEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19305632608, + 50.6548049456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2d0a335c289aa914fd70d06a7152e0b882d8c74", + "fields": { + "code_commune_insee": "59302", + "nom_de_la_commune": "HERIN", + "code_postal": "59195", + "coordonnees_gps": [ + 50.3588545059, + 3.44801878538 + ], + "libelle_d_acheminement": "HERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44801878538, + 50.3588545059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e2cdb8aa77305e03f8d044617d04aa6d20ae23d", + "fields": { + "code_commune_insee": "59303", + "nom_de_la_commune": "HERLIES", + "code_postal": "59134", + "coordonnees_gps": [ + 50.5816535581, + 2.8531853808 + ], + "libelle_d_acheminement": "HERLIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8531853808, + 50.5816535581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d79ca834edfe5bf6d95ef369fd962252f6442a2", + "fields": { + "code_commune_insee": "59306", + "nom_de_la_commune": "HESTRUD", + "code_postal": "59740", + "coordonnees_gps": [ + 50.2030928421, + 4.13978408262 + ], + "libelle_d_acheminement": "HESTRUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13978408262, + 50.2030928421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d25456a47c2de15a556b1fd2f3ce11824562c389", + "fields": { + "code_commune_insee": "59311", + "nom_de_la_commune": "HONNECHY", + "code_postal": "59980", + "coordonnees_gps": [ + 50.0677939071, + 3.48120463527 + ], + "libelle_d_acheminement": "HONNECHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48120463527, + 50.0677939071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e369b1ed1b2da6181b167ab3f2edcc126902866f", + "fields": { + "code_commune_insee": "59317", + "nom_de_la_commune": "HOUPLINES", + "code_postal": "59116", + "coordonnees_gps": [ + 50.6841292085, + 2.92646496256 + ], + "libelle_d_acheminement": "HOUPLINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92646496256, + 50.6841292085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4df7760c0f9e812d6e3fcaa8397aa396c729d064", + "fields": { + "code_commune_insee": "59321", + "nom_de_la_commune": "INCHY", + "code_postal": "59540", + "coordonnees_gps": [ + 50.1219699248, + 3.47168074868 + ], + "libelle_d_acheminement": "INCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47168074868, + 50.1219699248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f8c8aac9d27e468f3a2263fecf2452e6416f3e4", + "fields": { + "code_commune_insee": "59322", + "nom_de_la_commune": "IWUY", + "code_postal": "59141", + "coordonnees_gps": [ + 50.233598422, + 3.33623347454 + ], + "libelle_d_acheminement": "IWUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33623347454, + 50.233598422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dc7ea3f0cd73202d8a3f3cb932e4c3a41677c1e", + "fields": { + "code_commune_insee": "59323", + "nom_de_la_commune": "JENLAIN", + "code_postal": "59144", + "coordonnees_gps": [ + 50.3097021009, + 3.63092596962 + ], + "libelle_d_acheminement": "JENLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63092596962, + 50.3097021009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "467d31af7e86c667f44e7d9863d35517facf44e0", + "fields": { + "code_commune_insee": "59330", + "nom_de_la_commune": "LANDAS", + "code_postal": "59310", + "coordonnees_gps": [ + 50.4726958028, + 3.29518086014 + ], + "libelle_d_acheminement": "LANDAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29518086014, + 50.4726958028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0146bd303df9a6ec2df8d9579e81455b39bdc52c", + "fields": { + "code_commune_insee": "59331", + "nom_de_la_commune": "LANDRECIES", + "code_postal": "59550", + "coordonnees_gps": [ + 50.1205093509, + 3.68851283044 + ], + "libelle_d_acheminement": "LANDRECIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68851283044, + 50.1205093509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74629d33a96e240e4a9741bbf196e6c0ba8493de", + "fields": { + "code_commune_insee": "59344", + "nom_de_la_commune": "LEVAL", + "code_postal": "59620", + "coordonnees_gps": [ + 50.180651266, + 3.83355819928 + ], + "libelle_d_acheminement": "LEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83355819928, + 50.180651266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6e84550abc3f228e0ca3bfe3e74e5b6d949da95", + "fields": { + "ligne_5": "LOMME", + "code_commune_insee": "59350", + "libelle_d_acheminement": "LILLE", + "code_postal": "59160", + "nom_de_la_commune": "LILLE", + "coordonnees_gps": [ + 50.6317183168, + 3.04783272312 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04783272312, + 50.6317183168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bbfa2711217d704ff079d95b3b229ddb1230121", + "fields": { + "code_commune_insee": "59351", + "nom_de_la_commune": "LIMONT FONTAINE", + "code_postal": "59330", + "coordonnees_gps": [ + 50.2155213802, + 3.92291118633 + ], + "libelle_d_acheminement": "LIMONT FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92291118633, + 50.2155213802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e697ccca8bc59446ccb10796288e689b527ab9cb", + "fields": { + "code_commune_insee": "59353", + "nom_de_la_commune": "LOCQUIGNOL", + "code_postal": "59530", + "coordonnees_gps": [ + 50.2033505573, + 3.7334425782 + ], + "libelle_d_acheminement": "LOCQUIGNOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7334425782, + 50.2033505573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d374a8df6a13fd82633558a0d8642973e2bad3d0", + "fields": { + "code_commune_insee": "59354", + "nom_de_la_commune": "LOFFRE", + "code_postal": "59182", + "coordonnees_gps": [ + 50.3537253099, + 3.17227962058 + ], + "libelle_d_acheminement": "LOFFRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17227962058, + 50.3537253099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb8a19f0c70896ee0dba51c982b7551c17b1fd7c", + "fields": { + "code_commune_insee": "59359", + "nom_de_la_commune": "LOON PLAGE", + "code_postal": "59279", + "coordonnees_gps": [ + 51.0012144614, + 2.22304802432 + ], + "libelle_d_acheminement": "LOON PLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22304802432, + 51.0012144614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "136ec32b416d7e7286602ef84358a48956d61f5d", + "fields": { + "code_commune_insee": "59361", + "nom_de_la_commune": "LOURCHES", + "code_postal": "59156", + "coordonnees_gps": [ + 50.3111500417, + 3.35745797918 + ], + "libelle_d_acheminement": "LOURCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35745797918, + 50.3111500417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "756a251ea0cff02734f7530d2fbc8372bd3f7b85", + "fields": { + "code_commune_insee": "59363", + "nom_de_la_commune": "LOUVIGNIES QUESNOY", + "code_postal": "59530", + "coordonnees_gps": [ + 50.2165903097, + 3.64008191069 + ], + "libelle_d_acheminement": "LOUVIGNIES QUESNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64008191069, + 50.2165903097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f6674bb5c9326880fc07c846a68634d2536fac9", + "fields": { + "code_commune_insee": "59367", + "nom_de_la_commune": "LYS LEZ LANNOY", + "code_postal": "59390", + "coordonnees_gps": [ + 50.6721775091, + 3.2172382556 + ], + "libelle_d_acheminement": "LYS LEZ LANNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2172382556, + 50.6721775091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "371d2b20aebb61217fe403dee0495675155a7b21", + "fields": { + "code_commune_insee": "59368", + "nom_de_la_commune": "LA MADELEINE", + "code_postal": "59110", + "coordonnees_gps": [ + 50.6548883138, + 3.06963722507 + ], + "libelle_d_acheminement": "LA MADELEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06963722507, + 50.6548883138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58258a603de5ee7cf2609200e254eb85caf2bcf4", + "fields": { + "code_commune_insee": "59370", + "nom_de_la_commune": "MAIRIEUX", + "code_postal": "59600", + "coordonnees_gps": [ + 50.3136654011, + 3.97327891565 + ], + "libelle_d_acheminement": "MAIRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97327891565, + 50.3136654011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a362eb6ccb2f201777fa73fed53faa1f1902716", + "fields": { + "code_commune_insee": "59375", + "nom_de_la_commune": "MARCHIENNES", + "code_postal": "59870", + "coordonnees_gps": [ + 50.414280284, + 3.26362216805 + ], + "libelle_d_acheminement": "MARCHIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26362216805, + 50.414280284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1c2e0d85eb98f1a6791f0a8fd3a4aabc3b94a12", + "fields": { + "code_commune_insee": "59377", + "nom_de_la_commune": "MARCOING", + "code_postal": "59159", + "coordonnees_gps": [ + 50.1144749853, + 3.17343200113 + ], + "libelle_d_acheminement": "MARCOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17343200113, + 50.1144749853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ace852dc1b78628e57720f0e61abd86336bbc08b", + "fields": { + "code_commune_insee": "59383", + "nom_de_la_commune": "MARLY", + "code_postal": "59770", + "coordonnees_gps": [ + 50.3452442077, + 3.55000999792 + ], + "libelle_d_acheminement": "MARLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55000999792, + 50.3452442077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94aacc04ccb80111286578682030c39b0d416c83", + "fields": { + "code_commune_insee": "59389", + "nom_de_la_commune": "MASNIERES", + "code_postal": "59241", + "coordonnees_gps": [ + 50.104659247, + 3.20208772877 + ], + "libelle_d_acheminement": "MASNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20208772877, + 50.104659247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4df87a4db7294d858574ba14dd7384b8cbd0850e", + "fields": { + "code_commune_insee": "59391", + "nom_de_la_commune": "MASTAING", + "code_postal": "59172", + "coordonnees_gps": [ + 50.3064012156, + 3.29792589761 + ], + "libelle_d_acheminement": "MASTAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29792589761, + 50.3064012156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbcf2b33a4aa67a2331d79fb635725372ecaa5b6", + "fields": { + "ligne_5": "DOUZIES", + "code_commune_insee": "59392", + "libelle_d_acheminement": "MAUBEUGE", + "code_postal": "59600", + "nom_de_la_commune": "MAUBEUGE", + "coordonnees_gps": [ + 50.283630719, + 3.96328053037 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96328053037, + 50.283630719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "944f0073734d4d1d0a1338400c541910a090249d", + "fields": { + "code_commune_insee": "59393", + "nom_de_la_commune": "MAULDE", + "code_postal": "59158", + "coordonnees_gps": [ + 50.4952908946, + 3.42538565597 + ], + "libelle_d_acheminement": "MAULDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42538565597, + 50.4952908946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "231012bb8b7ea363aec040f35d3f349d9d6ae8e8", + "fields": { + "code_commune_insee": "59411", + "nom_de_la_commune": "MONS EN PEVELE", + "code_postal": "59246", + "coordonnees_gps": [ + 50.4819644352, + 3.10317921728 + ], + "libelle_d_acheminement": "MONS EN PEVELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10317921728, + 50.4819644352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e2ebeeac34817fdbd5b08965d48c178a547e353", + "fields": { + "code_commune_insee": "59418", + "nom_de_la_commune": "MORTAGNE DU NORD", + "code_postal": "59158", + "coordonnees_gps": [ + 50.5001515803, + 3.45327380801 + ], + "libelle_d_acheminement": "MORTAGNE DU NORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45327380801, + 50.5001515803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ebc554bf6a0d9b4b6f24ec37b880819a0c0c684", + "fields": { + "code_commune_insee": "59419", + "nom_de_la_commune": "MOUCHIN", + "code_postal": "59310", + "coordonnees_gps": [ + 50.5168601993, + 3.28629185123 + ], + "libelle_d_acheminement": "MOUCHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28629185123, + 50.5168601993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b09fbb9147addc33ebc809a5e90910400ef646a4", + "fields": { + "code_commune_insee": "59422", + "nom_de_la_commune": "NAVES", + "code_postal": "59161", + "coordonnees_gps": [ + 50.2033732531, + 3.31732755418 + ], + "libelle_d_acheminement": "NAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31732755418, + 50.2033732531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aaa42881de9bb057b4d146369916e821d447b82", + "fields": { + "code_commune_insee": "59428", + "nom_de_la_commune": "NEUVILLE ST REMY", + "code_postal": "59554", + "coordonnees_gps": [ + 50.1876980939, + 3.21918185069 + ], + "libelle_d_acheminement": "NEUVILLE ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21918185069, + 50.1876980939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b0a9f8f10ec83f20157061cf702890e684246fa", + "fields": { + "code_commune_insee": "59434", + "nom_de_la_commune": "NIVELLE", + "code_postal": "59230", + "coordonnees_gps": [ + 50.4681563003, + 3.46013569739 + ], + "libelle_d_acheminement": "NIVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46013569739, + 50.4681563003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44977fcbb5bdef05ab5007a4ba41dd4e2d0051c8", + "fields": { + "code_commune_insee": "59436", + "nom_de_la_commune": "NOORDPEENE", + "code_postal": "59670", + "coordonnees_gps": [ + 50.7945101601, + 2.36741593689 + ], + "libelle_d_acheminement": "NOORDPEENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36741593689, + 50.7945101601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03a9eed497dc9eea929b6388efc2b6b87e64e672", + "fields": { + "code_commune_insee": "59443", + "nom_de_la_commune": "OCHTEZEELE", + "code_postal": "59670", + "coordonnees_gps": [ + 50.8191546724, + 2.40052257312 + ], + "libelle_d_acheminement": "OCHTEZEELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40052257312, + 50.8191546724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "907088b6176cf5e67bab615a8ad1c9125722d49e", + "fields": { + "code_commune_insee": "59468", + "nom_de_la_commune": "POTELLE", + "code_postal": "59530", + "coordonnees_gps": [ + 50.2386756413, + 3.66509880886 + ], + "libelle_d_acheminement": "POTELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66509880886, + 50.2386756413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41d583ebed7b2c42f3ffa41875403b826abb6eb7", + "fields": { + "code_commune_insee": "59470", + "nom_de_la_commune": "PREMESQUES", + "code_postal": "59840", + "coordonnees_gps": [ + 50.6607863693, + 2.9485483768 + ], + "libelle_d_acheminement": "PREMESQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9485483768, + 50.6607863693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ac1d80d6574a8f8fb851fdd142faf16ac4c3c61", + "fields": { + "code_commune_insee": "59472", + "nom_de_la_commune": "PREUX AU BOIS", + "code_postal": "59288", + "coordonnees_gps": [ + 50.1647138146, + 3.6553638264 + ], + "libelle_d_acheminement": "PREUX AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6553638264, + 50.1647138146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fe7f90f795c4af836e4eca930c0140072c48e19", + "fields": { + "code_commune_insee": "59477", + "nom_de_la_commune": "PROVIN", + "code_postal": "59185", + "coordonnees_gps": [ + 50.5134080019, + 2.91117965832 + ], + "libelle_d_acheminement": "PROVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91117965832, + 50.5134080019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf35991da6482b5352e4f903313c5c1a0075ccca", + "fields": { + "code_commune_insee": "59483", + "nom_de_la_commune": "QUIEVELON", + "code_postal": "59680", + "coordonnees_gps": [ + 50.2350198423, + 4.06805030291 + ], + "libelle_d_acheminement": "QUIEVELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06805030291, + 50.2350198423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "463c6bff1854637dea05ad84daf14a9dff07bc17", + "fields": { + "code_commune_insee": "59487", + "nom_de_la_commune": "RADINGHEM EN WEPPES", + "code_postal": "59320", + "coordonnees_gps": [ + 50.6281404058, + 2.89866058213 + ], + "libelle_d_acheminement": "RADINGHEM EN WEPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89866058213, + 50.6281404058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d673fbf12f88629c4276e21de00240c07ab7d16c", + "fields": { + "code_commune_insee": "59490", + "nom_de_la_commune": "RAINSARS", + "code_postal": "59177", + "coordonnees_gps": [ + 50.0704332931, + 3.99772859383 + ], + "libelle_d_acheminement": "RAINSARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99772859383, + 50.0704332931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71f3195d3f849299881ee438e8c36aedcdd03eba", + "fields": { + "code_commune_insee": "59491", + "nom_de_la_commune": "RAISMES", + "code_postal": "59590", + "coordonnees_gps": [ + 50.410089317, + 3.48909318774 + ], + "libelle_d_acheminement": "RAISMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48909318774, + 50.410089317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "888a601b25618f3fbea84bf2633e41e232a304ec", + "fields": { + "code_commune_insee": "59497", + "nom_de_la_commune": "RENESCURE", + "code_postal": "59173", + "coordonnees_gps": [ + 50.7357377095, + 2.37835427066 + ], + "libelle_d_acheminement": "RENESCURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37835427066, + 50.7357377095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f02fda62284d2ad45a7bc5ce67a0b1bf09d71f78", + "fields": { + "code_commune_insee": "59502", + "nom_de_la_commune": "RIEUX EN CAMBRESIS", + "code_postal": "59277", + "coordonnees_gps": [ + 50.2043374368, + 3.35238504979 + ], + "libelle_d_acheminement": "RIEUX EN CAMBRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35238504979, + 50.2043374368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4631b028de8f52ec0011d7d9a0bc569b3ceab344", + "fields": { + "code_commune_insee": "59505", + "nom_de_la_commune": "ROMBIES ET MARCHIPONT", + "code_postal": "59990", + "coordonnees_gps": [ + 50.3683187976, + 3.63953903487 + ], + "libelle_d_acheminement": "ROMBIES ET MARCHIPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63953903487, + 50.3683187976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89b0d7df9e60d7bf4e91efe14d73f46b3ac1a718", + "fields": { + "code_commune_insee": "59508", + "nom_de_la_commune": "RONCQ", + "code_postal": "59223", + "coordonnees_gps": [ + 50.747350697, + 3.11815606165 + ], + "libelle_d_acheminement": "RONCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11815606165, + 50.747350697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "848202ec6be50363a1be8a4da83608f8ed977827", + "fields": { + "code_commune_insee": "59512", + "nom_de_la_commune": "ROUBAIX", + "code_postal": "59100", + "coordonnees_gps": [ + 50.6879774811, + 3.18258434623 + ], + "libelle_d_acheminement": "ROUBAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18258434623, + 50.6879774811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db33a6c837ace47ffd72c9ac9e80219a23955bb9", + "fields": { + "code_commune_insee": "59518", + "nom_de_la_commune": "RUESNES", + "code_postal": "59530", + "coordonnees_gps": [ + 50.2634217469, + 3.5818116421 + ], + "libelle_d_acheminement": "RUESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5818116421, + 50.2634217469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fa55bcfeb4770bcbce9093f80ae6f5a6c74c508", + "fields": { + "code_commune_insee": "59519", + "nom_de_la_commune": "RUMEGIES", + "code_postal": "59226", + "coordonnees_gps": [ + 50.4924282163, + 3.35255840321 + ], + "libelle_d_acheminement": "RUMEGIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35255840321, + 50.4924282163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e97661fedf2fb47cca0d0170851426af1793ab8", + "fields": { + "code_commune_insee": "59537", + "nom_de_la_commune": "ST MARTIN SUR ECAILLON", + "code_postal": "59213", + "coordonnees_gps": [ + 50.2401464788, + 3.51737991935 + ], + "libelle_d_acheminement": "ST MARTIN SUR ECAILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51737991935, + 50.2401464788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67fa647b0d1541240373461f1aa1a4138aefdf32", + "fields": { + "code_commune_insee": "59538", + "nom_de_la_commune": "ST MOMELIN", + "code_postal": "59143", + "coordonnees_gps": [ + 50.8126413042, + 2.24135657399 + ], + "libelle_d_acheminement": "ST MOMELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24135657399, + 50.8126413042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c60f3b53ee3692ec43c18ab48dff01fcc347b61", + "fields": { + "code_commune_insee": "59541", + "nom_de_la_commune": "ST PYTHON", + "code_postal": "59730", + "coordonnees_gps": [ + 50.1935153197, + 3.47506674368 + ], + "libelle_d_acheminement": "ST PYTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47506674368, + 50.1935153197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4265eb0e76815a5143e27f3aeeefe35e41ced877", + "fields": { + "ligne_5": "ESCAUFOURT", + "code_commune_insee": "59545", + "libelle_d_acheminement": "ST SOUPLET", + "code_postal": "59360", + "nom_de_la_commune": "ST SOUPLET", + "coordonnees_gps": [ + 50.0531218076, + 3.51585525327 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51585525327, + 50.0531218076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2852241f68770dd764e271654f5de411c9e2a68", + "fields": { + "code_commune_insee": "59555", + "nom_de_la_commune": "SARS POTERIES", + "code_postal": "59216", + "coordonnees_gps": [ + 50.1616514836, + 4.04379435649 + ], + "libelle_d_acheminement": "SARS POTERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04379435649, + 50.1616514836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a1d6cdc859e3dd97d3702d448a231f6abd8dcff", + "fields": { + "code_commune_insee": "59557", + "nom_de_la_commune": "SAULTAIN", + "code_postal": "59990", + "coordonnees_gps": [ + 50.335080255, + 3.58004167583 + ], + "libelle_d_acheminement": "SAULTAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58004167583, + 50.335080255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bd40233aa9f25c16f1d0fe334686c3e8063f05f", + "fields": { + "code_commune_insee": "59558", + "nom_de_la_commune": "SAULZOIR", + "code_postal": "59227", + "coordonnees_gps": [ + 50.2425296454, + 3.43939074526 + ], + "libelle_d_acheminement": "SAULZOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43939074526, + 50.2425296454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66e5e1cdf396ea2747e3ca30bdc34cd52a6ac6bc", + "fields": { + "code_commune_insee": "59571", + "nom_de_la_commune": "SOLESMES", + "code_postal": "59730", + "coordonnees_gps": [ + 50.171784611, + 3.51976547867 + ], + "libelle_d_acheminement": "SOLESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51976547867, + 50.171784611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6076e4bc3433a805bc65f44d0638a9ebde39622", + "fields": { + "code_commune_insee": "59573", + "nom_de_la_commune": "SOLRINNES", + "code_postal": "59740", + "coordonnees_gps": [ + 50.2029200373, + 4.0732007826 + ], + "libelle_d_acheminement": "SOLRINNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0732007826, + 50.2029200373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01893ca90ece295bae8eab27fe28c32bf0a8552a", + "fields": { + "code_commune_insee": "59576", + "nom_de_la_commune": "SPYCKER", + "code_postal": "59380", + "coordonnees_gps": [ + 50.9751405786, + 2.31360058844 + ], + "libelle_d_acheminement": "SPYCKER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31360058844, + 50.9751405786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ac379a8927c728aaa863c1aa8be44eebf852535", + "fields": { + "ligne_5": "TETEGHEM", + "code_commune_insee": "59588", + "libelle_d_acheminement": "TETEGHEM COUDEKERQUE VILLAGE", + "code_postal": "59229", + "nom_de_la_commune": "TETEGHEM COUDEKERQUE VILLAGE", + "coordonnees_gps": [ + 51.0158652678, + 2.45278368133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45278368133, + 51.0158652678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbd862ea9598f52f7eac948be25f4436204c414a", + "fields": { + "code_commune_insee": "59598", + "nom_de_la_commune": "TOUFFLERS", + "code_postal": "59390", + "coordonnees_gps": [ + 50.6609540641, + 3.23330964809 + ], + "libelle_d_acheminement": "TOUFFLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23330964809, + 50.6609540641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78ddfa8dd9ea7c47f341a436935b4e5b0debf901", + "fields": { + "code_commune_insee": "59604", + "nom_de_la_commune": "TROISVILLES", + "code_postal": "59980", + "coordonnees_gps": [ + 50.1023251315, + 3.47303644624 + ], + "libelle_d_acheminement": "TROISVILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47303644624, + 50.1023251315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b74ae393930a8c4b13d2e40150a3044115f26a5", + "fields": { + "ligne_5": "HERBIGNIES VILLEREAU", + "code_commune_insee": "59619", + "libelle_d_acheminement": "VILLEREAU", + "code_postal": "59530", + "nom_de_la_commune": "VILLEREAU", + "coordonnees_gps": [ + 50.2478551697, + 3.68060159072 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68060159072, + 50.2478551697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce32bab977f6daf6ff063a5a6487767b32b8d772", + "fields": { + "code_commune_insee": "59623", + "nom_de_la_commune": "VILLERS GUISLAIN", + "code_postal": "59297", + "coordonnees_gps": [ + 50.0359972826, + 3.15257855128 + ], + "libelle_d_acheminement": "VILLERS GUISLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15257855128, + 50.0359972826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccdd12f3a884c18e74af668003cd7a9bcf28e7d6", + "fields": { + "code_commune_insee": "59630", + "nom_de_la_commune": "WAHAGNIES", + "code_postal": "59261", + "coordonnees_gps": [ + 50.4837257649, + 3.03028758206 + ], + "libelle_d_acheminement": "WAHAGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03028758206, + 50.4837257649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec66d3b7ae81144f95cdaf46268e2ac7c2f22ba0", + "fields": { + "ligne_5": "SELVIGNY", + "code_commune_insee": "59631", + "libelle_d_acheminement": "WALINCOURT SELVIGNY", + "code_postal": "59127", + "nom_de_la_commune": "WALINCOURT SELVIGNY", + "coordonnees_gps": [ + 50.0733447799, + 3.33900382143 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33900382143, + 50.0733447799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a4d3df86e1f2169e975f2a99321bd9fa17b1af7", + "fields": { + "code_commune_insee": "59635", + "nom_de_la_commune": "WAMBAIX", + "code_postal": "59400", + "coordonnees_gps": [ + 50.1283412382, + 3.30897119661 + ], + "libelle_d_acheminement": "WAMBAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30897119661, + 50.1283412382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed544febaac74c49042b2b440a1ea5de82400386", + "fields": { + "code_commune_insee": "59637", + "nom_de_la_commune": "WANDIGNIES HAMAGE", + "code_postal": "59870", + "coordonnees_gps": [ + 50.3972962992, + 3.32367136058 + ], + "libelle_d_acheminement": "WANDIGNIES HAMAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32367136058, + 50.3972962992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daf07aaed249bca4d673cf45ea8dfc759786e5aa", + "fields": { + "code_commune_insee": "59645", + "nom_de_la_commune": "WASNES AU BAC", + "code_postal": "59252", + "coordonnees_gps": [ + 50.2699499987, + 3.25379518679 + ], + "libelle_d_acheminement": "WASNES AU BAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25379518679, + 50.2699499987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16becb4ccf228c4a628848df7107c8e2b75b1e18", + "fields": { + "code_commune_insee": "59650", + "nom_de_la_commune": "WATTRELOS", + "code_postal": "59150", + "coordonnees_gps": [ + 50.7056367285, + 3.21628221056 + ], + "libelle_d_acheminement": "WATTRELOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21628221056, + 50.7056367285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f3f2b5b5d9219c60208051c560d44fcfff9a160", + "fields": { + "code_commune_insee": "59651", + "nom_de_la_commune": "WAVRECHAIN SOUS DENAIN", + "code_postal": "59220", + "coordonnees_gps": [ + 50.3338831581, + 3.42191162083 + ], + "libelle_d_acheminement": "WAVRECHAIN SOUS DENAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42191162083, + 50.3338831581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e87d6128f381facc3fdcfce70341846e982ec846", + "fields": { + "code_commune_insee": "59652", + "nom_de_la_commune": "WAVRECHAIN SOUS FAULX", + "code_postal": "59111", + "coordonnees_gps": [ + 50.270787775, + 3.28212535821 + ], + "libelle_d_acheminement": "WAVRECHAIN SOUS FAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28212535821, + 50.270787775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2091d224c97b300e891a12e6f5e5efeddafd61a6", + "fields": { + "code_commune_insee": "59660", + "nom_de_la_commune": "WILLEMS", + "code_postal": "59780", + "coordonnees_gps": [ + 50.6306074254, + 3.22916996988 + ], + "libelle_d_acheminement": "WILLEMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22916996988, + 50.6306074254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dd04def9ccc152e88d44452171f5db801a2514d", + "fields": { + "code_commune_insee": "59661", + "nom_de_la_commune": "WILLIES", + "code_postal": "59740", + "coordonnees_gps": [ + 50.1212728931, + 4.10501451158 + ], + "libelle_d_acheminement": "WILLIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10501451158, + 50.1212728931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90d98020eb02d467d64318526899250ba83e5fac", + "fields": { + "code_commune_insee": "59662", + "nom_de_la_commune": "WINNEZEELE", + "code_postal": "59670", + "coordonnees_gps": [ + 50.8503260936, + 2.56373009721 + ], + "libelle_d_acheminement": "WINNEZEELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56373009721, + 50.8503260936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c05b2b2eae9fa639d340bae85d3ebd78e09968e4", + "fields": { + "code_commune_insee": "59668", + "nom_de_la_commune": "ZUYDCOOTE", + "code_postal": "59123", + "coordonnees_gps": [ + 51.06377209, + 2.48763279882 + ], + "libelle_d_acheminement": "ZUYDCOOTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48763279882, + 51.06377209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "224384f9abf0649196d319726710065e65ce48dd", + "fields": { + "code_commune_insee": "60002", + "nom_de_la_commune": "ABBECOURT", + "code_postal": "60430", + "coordonnees_gps": [ + 49.361199272, + 2.15509033815 + ], + "libelle_d_acheminement": "ABBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15509033815, + 49.361199272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc39a9cf8a6bee110537dd236091989e5651b7d4", + "fields": { + "code_commune_insee": "60005", + "nom_de_la_commune": "ACY EN MULTIEN", + "code_postal": "60620", + "coordonnees_gps": [ + 49.1087771245, + 2.95509279724 + ], + "libelle_d_acheminement": "ACY EN MULTIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95509279724, + 49.1087771245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e2332842be1d8e6982986fa69cb352b905b86d0", + "fields": { + "code_commune_insee": "60013", + "nom_de_la_commune": "ANGICOURT", + "code_postal": "60940", + "coordonnees_gps": [ + 49.3148919573, + 2.50251888584 + ], + "libelle_d_acheminement": "ANGICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50251888584, + 49.3148919573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ee50c1bd52dfade7194e7fc333ebe14de9b29d", + "fields": { + "code_commune_insee": "60020", + "nom_de_la_commune": "ANTILLY", + "code_postal": "60620", + "coordonnees_gps": [ + 49.1550668913, + 2.98806856134 + ], + "libelle_d_acheminement": "ANTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98806856134, + 49.1550668913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ae02cc9968a0dbb6f01a56aae2c7a1c550e7dd9", + "fields": { + "code_commune_insee": "60026", + "nom_de_la_commune": "AUCHY LA MONTAGNE", + "code_postal": "60360", + "coordonnees_gps": [ + 49.5739624558, + 2.11947399318 + ], + "libelle_d_acheminement": "AUCHY LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11947399318, + 49.5739624558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5070304df9519a850191584475dc7ce68eface25", + "fields": { + "code_commune_insee": "60028", + "nom_de_la_commune": "AUMONT EN HALATTE", + "code_postal": "60300", + "coordonnees_gps": [ + 49.2330047148, + 2.55262710425 + ], + "libelle_d_acheminement": "AUMONT EN HALATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55262710425, + 49.2330047148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e920c8c5c6c78db1bb3019a5252423e3f7d50374", + "fields": { + "code_commune_insee": "60032", + "nom_de_la_commune": "AUTRECHES", + "code_postal": "60350", + "coordonnees_gps": [ + 49.449194192, + 3.12722554549 + ], + "libelle_d_acheminement": "AUTRECHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12722554549, + 49.449194192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "582e4bb4c174ab77cd974fa766462d7fe8171dda", + "fields": { + "code_commune_insee": "60033", + "nom_de_la_commune": "AVILLY ST LEONARD", + "code_postal": "60300", + "coordonnees_gps": [ + 49.1839157473, + 2.52767735366 + ], + "libelle_d_acheminement": "AVILLY ST LEONARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52767735366, + 49.1839157473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "028802defb307a0184d370f44855d8a3d429a3d1", + "fields": { + "code_commune_insee": "60035", + "nom_de_la_commune": "AVRICOURT", + "code_postal": "60310", + "coordonnees_gps": [ + 49.6496055244, + 2.86403233407 + ], + "libelle_d_acheminement": "AVRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86403233407, + 49.6496055244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c3166bffc335d5aacdc4f829657785ccf7ec5e6", + "fields": { + "code_commune_insee": "60046", + "nom_de_la_commune": "BARGNY", + "code_postal": "60620", + "coordonnees_gps": [ + 49.1776038507, + 2.95817932227 + ], + "libelle_d_acheminement": "BARGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95817932227, + 49.1776038507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86c02d3b73d137c16b5a5f9473c5a516a1c11fe8", + "fields": { + "code_commune_insee": "60048", + "nom_de_la_commune": "BAUGY", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4559271908, + 2.75517506422 + ], + "libelle_d_acheminement": "BAUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75517506422, + 49.4559271908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74481f0a5c5472b9960f08def0864012a51a88b7", + "fields": { + "code_commune_insee": "60049", + "nom_de_la_commune": "BAZANCOURT", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5498849477, + 1.73943481164 + ], + "libelle_d_acheminement": "BAZANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73943481164, + 49.5498849477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b8209c667ec7cd46498a287e69c836ce4dfd985", + "fields": { + "ligne_5": "BEAUMONT LES NONAINS", + "code_commune_insee": "60054", + "libelle_d_acheminement": "LES HAUTS TALICAN", + "code_postal": "60390", + "nom_de_la_commune": "LES HAUTS TALICAN", + "coordonnees_gps": [ + 49.3254912942, + 2.00355965035 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00355965035, + 49.3254912942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fe1fa4663123c8cb5ef2735bd64b4550089dca2", + "fields": { + "code_commune_insee": "60056", + "nom_de_la_commune": "BEAUREPAIRE", + "code_postal": "60700", + "coordonnees_gps": [ + 49.2916886469, + 2.56951230843 + ], + "libelle_d_acheminement": "BEAUREPAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56951230843, + 49.2916886469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9063b347f4c5a7521a406d39a2a99c73c1fbed1", + "fields": { + "code_commune_insee": "60057", + "nom_de_la_commune": "BEAUVAIS", + "code_postal": "60000", + "coordonnees_gps": [ + 49.4365523321, + 2.08616123661 + ], + "libelle_d_acheminement": "BEAUVAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08616123661, + 49.4365523321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b1ffce8efd149178c43763d138bdcf42d190e2b", + "fields": { + "code_commune_insee": "60064", + "nom_de_la_commune": "BERNEUIL SUR AISNE", + "code_postal": "60350", + "coordonnees_gps": [ + 49.4218075738, + 3.00010078676 + ], + "libelle_d_acheminement": "BERNEUIL SUR AISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00010078676, + 49.4218075738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37bae70ada506ae70a91778bfd610e06ec0b378b", + "fields": { + "code_commune_insee": "60068", + "nom_de_la_commune": "BETHISY ST PIERRE", + "code_postal": "60320", + "coordonnees_gps": [ + 49.3076185781, + 2.80360801965 + ], + "libelle_d_acheminement": "BETHISY ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80360801965, + 49.3076185781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9ec316875650a7d21a625bda208b584711a723d", + "fields": { + "code_commune_insee": "60075", + "nom_de_la_commune": "BLANCFOSSE", + "code_postal": "60120", + "coordonnees_gps": [ + 49.662501216, + 2.18953950322 + ], + "libelle_d_acheminement": "BLANCFOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18953950322, + 49.662501216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be6a26fee96a42cc99d06d32b92e1e5c17c8ec89", + "fields": { + "code_commune_insee": "60079", + "nom_de_la_commune": "BOISSY FRESNOY", + "code_postal": "60440", + "coordonnees_gps": [ + 49.1659624514, + 2.88226234522 + ], + "libelle_d_acheminement": "BOISSY FRESNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88226234522, + 49.1659624514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a21cdf796ed432824802a491dfafe1e168521122", + "fields": { + "code_commune_insee": "60087", + "nom_de_la_commune": "BOREST", + "code_postal": "60300", + "coordonnees_gps": [ + 49.1886146842, + 2.67197292503 + ], + "libelle_d_acheminement": "BOREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67197292503, + 49.1886146842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd4cd1e4c4fa64b8490be2db586c130d42a0e020", + "fields": { + "ligne_5": "ANSERVILLE", + "code_commune_insee": "60088", + "libelle_d_acheminement": "BORNEL", + "code_postal": "60540", + "nom_de_la_commune": "BORNEL", + "coordonnees_gps": [ + 49.1918532269, + 2.18485090875 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18485090875, + 49.1918532269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ebfd97afee3333490aee3abd839083c07588f71", + "fields": { + "code_commune_insee": "60092", + "nom_de_la_commune": "BOULLARRE", + "code_postal": "60620", + "coordonnees_gps": [ + 49.1304808787, + 3.00990272849 + ], + "libelle_d_acheminement": "BOULLARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00990272849, + 49.1304808787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c266668be00da6f1eda8a0c3850c4462816d689", + "fields": { + "code_commune_insee": "60094", + "nom_de_la_commune": "BOURSONNE", + "code_postal": "60141", + "coordonnees_gps": [ + 49.1983151268, + 3.04668303732 + ], + "libelle_d_acheminement": "BOURSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04668303732, + 49.1983151268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75262dbe491391dc32b8f9137bee1ab96063c841", + "fields": { + "code_commune_insee": "60098", + "nom_de_la_commune": "BOUVRESSE", + "code_postal": "60220", + "coordonnees_gps": [ + 49.6514305652, + 1.75717052982 + ], + "libelle_d_acheminement": "BOUVRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75717052982, + 49.6514305652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "775292500afea6ec6802545386f0b45582856f1a", + "fields": { + "code_commune_insee": "60102", + "nom_de_la_commune": "BRENOUILLE", + "code_postal": "60870", + "coordonnees_gps": [ + 49.3068934524, + 2.5499630565 + ], + "libelle_d_acheminement": "BRENOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5499630565, + 49.3068934524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84da29e49accfebfa9b7a060001bd8e93cb8ee0e", + "fields": { + "code_commune_insee": "60105", + "nom_de_la_commune": "BRETIGNY", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5596891409, + 3.11657953141 + ], + "libelle_d_acheminement": "BRETIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11657953141, + 49.5596891409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "243cd06d5119db2053efd4194906f72621854862", + "fields": { + "code_commune_insee": "60108", + "nom_de_la_commune": "BRIOT", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6413335684, + 1.91716979734 + ], + "libelle_d_acheminement": "BRIOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91716979734, + 49.6413335684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39ee2285c58b8dc71b9eb95cf8c48d86244737a4", + "fields": { + "code_commune_insee": "60110", + "nom_de_la_commune": "BROQUIERS", + "code_postal": "60220", + "coordonnees_gps": [ + 49.6626603129, + 1.83561315094 + ], + "libelle_d_acheminement": "BROQUIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83561315094, + 49.6626603129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b97ad4138e2e870daf2529815947a6db294e7376", + "fields": { + "code_commune_insee": "60132", + "nom_de_la_commune": "CATIGNY", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6348936549, + 2.9419257001 + ], + "libelle_d_acheminement": "CATIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9419257001, + 49.6348936549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0b1208727bfca727ce4bf9b070ec3ace5da791d", + "fields": { + "code_commune_insee": "60134", + "nom_de_la_commune": "CAUFFRY", + "code_postal": "60290", + "coordonnees_gps": [ + 49.3134355162, + 2.43026281523 + ], + "libelle_d_acheminement": "CAUFFRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43026281523, + 49.3134355162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83dd981cf6715b25c330b2a6be6ddb1624010917", + "fields": { + "code_commune_insee": "60139", + "nom_de_la_commune": "CHAMBLY", + "code_postal": "60230", + "coordonnees_gps": [ + 49.1718103651, + 2.24657019692 + ], + "libelle_d_acheminement": "CHAMBLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24657019692, + 49.1718103651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8819469a3d6049b551b4107f4588c5ed6a280da", + "fields": { + "code_commune_insee": "60144", + "nom_de_la_commune": "CHAVENCON", + "code_postal": "60240", + "coordonnees_gps": [ + 49.1872473906, + 1.9918563453 + ], + "libelle_d_acheminement": "CHAVENCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9918563453, + 49.1872473906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ceda1214d59f3c8b654644865355086ecadf694", + "fields": { + "code_commune_insee": "60145", + "nom_de_la_commune": "CHELLES", + "code_postal": "60350", + "coordonnees_gps": [ + 49.3466662796, + 3.03951779948 + ], + "libelle_d_acheminement": "CHELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03951779948, + 49.3466662796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20d879c6e8fac2453321b03723874982c1642eaf", + "fields": { + "code_commune_insee": "60146", + "nom_de_la_commune": "CHEPOIX", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6048407456, + 2.38064262302 + ], + "libelle_d_acheminement": "CHEPOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38064262302, + 49.6048407456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "516dad034260b201e86aea9e7ae3cc8218554311", + "fields": { + "code_commune_insee": "60148", + "nom_de_la_commune": "CHEVREVILLE", + "code_postal": "60440", + "coordonnees_gps": [ + 49.1188920411, + 2.85852113558 + ], + "libelle_d_acheminement": "CHEVREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85852113558, + 49.1188920411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2a84a2a1d6a50060331b7a499de4ff97b01acec", + "fields": { + "code_commune_insee": "60152", + "nom_de_la_commune": "CHOISY LA VICTOIRE", + "code_postal": "60190", + "coordonnees_gps": [ + 49.3775941705, + 2.59726878219 + ], + "libelle_d_acheminement": "CHOISY LA VICTOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59726878219, + 49.3775941705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48475e7a0e6c6be8f8f455482ea4eaef8d882153", + "fields": { + "code_commune_insee": "60162", + "nom_de_la_commune": "CORBEIL CERF", + "code_postal": "60110", + "coordonnees_gps": [ + 49.2772532427, + 2.11061298697 + ], + "libelle_d_acheminement": "CORBEIL CERF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11061298697, + 49.2772532427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e5584d259f070494ab886d837917774550b1fab", + "fields": { + "code_commune_insee": "60167", + "nom_de_la_commune": "COULOISY", + "code_postal": "60350", + "coordonnees_gps": [ + 49.4005386894, + 3.02837690735 + ], + "libelle_d_acheminement": "COULOISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02837690735, + 49.4005386894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43b50f21b63457abf37f9f5b2e04b523fa107e78", + "fields": { + "code_commune_insee": "60173", + "nom_de_la_commune": "CRAMOISY", + "code_postal": "60660", + "coordonnees_gps": [ + 49.2489499722, + 2.39573291818 + ], + "libelle_d_acheminement": "CRAMOISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39573291818, + 49.2489499722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaaf670110ac61433ed78d903350549428bf50a3", + "fields": { + "code_commune_insee": "60178", + "nom_de_la_commune": "CREVECOEUR LE GRAND", + "code_postal": "60360", + "coordonnees_gps": [ + 49.6125388783, + 2.08489020774 + ], + "libelle_d_acheminement": "CREVECOEUR LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08489020774, + 49.6125388783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d958f6750bbb6439f6aa979ce3e40fac801ecb0d", + "fields": { + "code_commune_insee": "60180", + "nom_de_la_commune": "CRILLON", + "code_postal": "60112", + "coordonnees_gps": [ + 49.5259729634, + 1.9257668088 + ], + "libelle_d_acheminement": "CRILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9257668088, + 49.5259729634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9990d6d86a3ffd6154148e4b920bb5576eac3b04", + "fields": { + "code_commune_insee": "60189", + "nom_de_la_commune": "CUTS", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5342045787, + 3.10272038663 + ], + "libelle_d_acheminement": "CUTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10272038663, + 49.5342045787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66dcfe598f1321d3f660d5ffe3d6c839649e1e0f", + "fields": { + "code_commune_insee": "60194", + "nom_de_la_commune": "DARGIES", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6991905153, + 1.98093616856 + ], + "libelle_d_acheminement": "DARGIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98093616856, + 49.6991905153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd2978db1cb423e27aa46ab7087a487bca31f550", + "fields": { + "code_commune_insee": "60200", + "nom_de_la_commune": "DOMFRONT", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5991248237, + 2.55703431624 + ], + "libelle_d_acheminement": "DOMFRONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55703431624, + 49.5991248237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c32495691e45bdc3446cf03afd3a0814fbefbc5", + "fields": { + "code_commune_insee": "60203", + "nom_de_la_commune": "DUVY", + "code_postal": "60800", + "coordonnees_gps": [ + 49.2322741704, + 2.84879453989 + ], + "libelle_d_acheminement": "DUVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84879453989, + 49.2322741704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17ef4609915ddedf17668ab8c7a1df1b4408a6c7", + "fields": { + "code_commune_insee": "60205", + "nom_de_la_commune": "ELENCOURT", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6931893721, + 1.89535227719 + ], + "libelle_d_acheminement": "ELENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89535227719, + 49.6931893721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92f598630e2f95add01560af50a912bbc6e72a68", + "fields": { + "code_commune_insee": "60206", + "nom_de_la_commune": "ELINCOURT STE MARGUERITE", + "code_postal": "60157", + "coordonnees_gps": [ + 49.5317901702, + 2.82885830555 + ], + "libelle_d_acheminement": "ELINCOURT STE MARGUERITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82885830555, + 49.5317901702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a5b7027f2abb46d31d725ba45e4566751d483cb", + "fields": { + "code_commune_insee": "60207", + "nom_de_la_commune": "EMEVILLE", + "code_postal": "60123", + "coordonnees_gps": [ + 49.2797702031, + 3.02463728753 + ], + "libelle_d_acheminement": "EMEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02463728753, + 49.2797702031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c87ea656ad332565897d72d8965efe4daef26c59", + "fields": { + "ligne_5": "HARDIVILLERS EN VEXIN", + "code_commune_insee": "60209", + "libelle_d_acheminement": "LA CORNE EN VEXIN", + "code_postal": "60240", + "nom_de_la_commune": "LA CORNE EN VEXIN", + "coordonnees_gps": [ + 49.295556054, + 1.91817578256 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91817578256, + 49.295556054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6818c6bad7270b805d3d6c9ac051a9d9badddb0", + "fields": { + "code_commune_insee": "60210", + "nom_de_la_commune": "EPINEUSE", + "code_postal": "60190", + "coordonnees_gps": [ + 49.400292993, + 2.55014914769 + ], + "libelle_d_acheminement": "EPINEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55014914769, + 49.400292993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e804bd769c6004a8ab8e36db48f6a82681e8a4e", + "fields": { + "code_commune_insee": "60218", + "nom_de_la_commune": "ESCHES", + "code_postal": "60110", + "coordonnees_gps": [ + 49.2315594255, + 2.17454733737 + ], + "libelle_d_acheminement": "ESCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17454733737, + 49.2315594255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0de66cb72d608c59acc94f79c9649ff8d62677c", + "fields": { + "code_commune_insee": "60219", + "nom_de_la_commune": "ESCLES ST PIERRE", + "code_postal": "60220", + "coordonnees_gps": [ + 49.7444351551, + 1.80313112603 + ], + "libelle_d_acheminement": "ESCLES ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80313112603, + 49.7444351551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60afb9f5bff4eb0ed14f038fe7d05e5d87009883", + "fields": { + "code_commune_insee": "60224", + "nom_de_la_commune": "ETAVIGNY", + "code_postal": "60620", + "coordonnees_gps": [ + 49.1276676436, + 2.98017417243 + ], + "libelle_d_acheminement": "ETAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98017417243, + 49.1276676436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b2b9d4480ae777c97c6d3238f072c4e08ddede1", + "fields": { + "code_commune_insee": "60233", + "nom_de_la_commune": "FEUQUIERES", + "code_postal": "60960", + "coordonnees_gps": [ + 49.6498151324, + 1.84993618914 + ], + "libelle_d_acheminement": "FEUQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84993618914, + 49.6498151324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cc06506afa64aed5b22d9a63103ec3b3b25f159", + "fields": { + "code_commune_insee": "60237", + "nom_de_la_commune": "FLECHY", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6589445196, + 2.23097979586 + ], + "libelle_d_acheminement": "FLECHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23097979586, + 49.6589445196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d29e94d87e8dd9a59d97bbc64cdb570cab946750", + "fields": { + "code_commune_insee": "60244", + "nom_de_la_commune": "FONTENAY TORCY", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5683000437, + 1.76602231488 + ], + "libelle_d_acheminement": "FONTENAY TORCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76602231488, + 49.5683000437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d75785e91fd7fd795d72fa4d2582f40e13ee68b6", + "fields": { + "ligne_5": "BOUTAVENT", + "code_commune_insee": "60245", + "libelle_d_acheminement": "FORMERIE", + "code_postal": "60220", + "nom_de_la_commune": "FORMERIE", + "coordonnees_gps": [ + 49.6492986407, + 1.72801391707 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72801391707, + 49.6492986407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f46d0fc1808cca7eb0e2224c547e875cbf26cac", + "fields": { + "code_commune_insee": "60252", + "nom_de_la_commune": "FOURNIVAL", + "code_postal": "60130", + "coordonnees_gps": [ + 49.4639491439, + 2.38160769117 + ], + "libelle_d_acheminement": "FOURNIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38160769117, + 49.4639491439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9a8661e47f9eaa59a60e9582a1115883d0dfd70", + "fields": { + "code_commune_insee": "60254", + "nom_de_la_commune": "FRANCIERES", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4471256066, + 2.66733923856 + ], + "libelle_d_acheminement": "FRANCIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66733923856, + 49.4471256066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf128e065c2d48180bff66a76921a631afdd59c3", + "fields": { + "ligne_5": "BACHIVILLERS", + "code_commune_insee": "60256", + "libelle_d_acheminement": "MONTCHEVREUIL", + "code_postal": "60240", + "nom_de_la_commune": "MONTCHEVREUIL", + "coordonnees_gps": [ + 49.2879395667, + 2.01083675138 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01083675138, + 49.2879395667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3122ccaf5ca0e9ad56448b291eea930d290b9687", + "fields": { + "code_commune_insee": "60259", + "nom_de_la_commune": "FRESNOY EN THELLE", + "code_postal": "60530", + "coordonnees_gps": [ + 49.1990973717, + 2.26218558295 + ], + "libelle_d_acheminement": "FRESNOY EN THELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26218558295, + 49.1990973717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a48100b9c8fbcb3079ce6282a5e140073559fd3", + "fields": { + "code_commune_insee": "60260", + "nom_de_la_commune": "FRESNOY LA RIVIERE", + "code_postal": "60127", + "coordonnees_gps": [ + 49.2781522381, + 2.92700227503 + ], + "libelle_d_acheminement": "FRESNOY LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92700227503, + 49.2781522381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7af037f6090ac7767b1e8b7d9a335a09bd6c192c", + "fields": { + "code_commune_insee": "60265", + "nom_de_la_commune": "FROISSY", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5657711832, + 2.21470986262 + ], + "libelle_d_acheminement": "FROISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21470986262, + 49.5657711832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "538e40c0d8e350c1f2f36798fff7f599cd0e34cc", + "fields": { + "code_commune_insee": "60270", + "nom_de_la_commune": "GENVRY", + "code_postal": "60400", + "coordonnees_gps": [ + 49.6116517465, + 2.99549959374 + ], + "libelle_d_acheminement": "GENVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99549959374, + 49.6116517465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50422f4cec47102305d0c78f386be8ca8dc44cd4", + "fields": { + "code_commune_insee": "60271", + "nom_de_la_commune": "GERBEROY", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5385653619, + 1.84224948917 + ], + "libelle_d_acheminement": "GERBEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84224948917, + 49.5385653619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22d90aedb5d3a4e464b54819805895084b38d03c", + "fields": { + "code_commune_insee": "60272", + "nom_de_la_commune": "GILOCOURT", + "code_postal": "60129", + "coordonnees_gps": [ + 49.3007930979, + 2.89026457858 + ], + "libelle_d_acheminement": "GILOCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89026457858, + 49.3007930979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "234b056f8684b7b11089c405aec5b4e6b3731c1e", + "fields": { + "code_commune_insee": "60275", + "nom_de_la_commune": "GLATIGNY", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4954037049, + 1.90088240357 + ], + "libelle_d_acheminement": "GLATIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90088240357, + 49.4954037049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d67d4a9d847400e37f1db899bef772e48609944d", + "fields": { + "code_commune_insee": "60278", + "nom_de_la_commune": "GOLANCOURT", + "code_postal": "60640", + "coordonnees_gps": [ + 49.7032997149, + 3.06874567879 + ], + "libelle_d_acheminement": "GOLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06874567879, + 49.7032997149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2afc85ab9e1ad77a2300e8b111a679a03bf103aa", + "fields": { + "code_commune_insee": "60286", + "nom_de_la_commune": "GRANDVILLIERS", + "code_postal": "60210", + "coordonnees_gps": [ + 49.666016357, + 1.9349239261 + ], + "libelle_d_acheminement": "GRANDVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9349239261, + 49.666016357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caf7613a5ca453b0885ac6454cdd6ede8f19a130", + "fields": { + "code_commune_insee": "60289", + "nom_de_la_commune": "GREZ", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6337227766, + 1.97882087154 + ], + "libelle_d_acheminement": "GREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97882087154, + 49.6337227766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b6b5799a06a2f17ddad53c3bfc04d675377969d", + "fields": { + "code_commune_insee": "60304", + "nom_de_la_commune": "HAUTE EPINE", + "code_postal": "60690", + "coordonnees_gps": [ + 49.5828440784, + 2.00667497625 + ], + "libelle_d_acheminement": "HAUTE EPINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00667497625, + 49.5828440784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8690b70fc91e70d551a84f1766a7ced652eb7c0f", + "fields": { + "code_commune_insee": "60310", + "nom_de_la_commune": "HERCHIES", + "code_postal": "60112", + "coordonnees_gps": [ + 49.4834141754, + 2.00297914207 + ], + "libelle_d_acheminement": "HERCHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00297914207, + 49.4834141754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f178e99817273cf7d159ba5e1e659afdb0ad482c", + "fields": { + "code_commune_insee": "60325", + "nom_de_la_commune": "JAUX", + "code_postal": "60880", + "coordonnees_gps": [ + 49.395906847, + 2.76678762351 + ], + "libelle_d_acheminement": "JAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76678762351, + 49.395906847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "866ebb77eec1e090b78e62b39b70310da74fc215", + "fields": { + "code_commune_insee": "60326", + "nom_de_la_commune": "JONQUIERES", + "code_postal": "60680", + "coordonnees_gps": [ + 49.3993843188, + 2.73435995446 + ], + "libelle_d_acheminement": "JONQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73435995446, + 49.3993843188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d1da8d336d283a1cc4654b875e25141bd01b89e", + "fields": { + "code_commune_insee": "60328", + "nom_de_la_commune": "JUVIGNIES", + "code_postal": "60112", + "coordonnees_gps": [ + 49.5239940947, + 2.09077115313 + ], + "libelle_d_acheminement": "JUVIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09077115313, + 49.5239940947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e77b91e240bddbd76426ec729bd0969107bb3f3", + "fields": { + "code_commune_insee": "60334", + "nom_de_la_commune": "LACHAPELLE ST PIERRE", + "code_postal": "60730", + "coordonnees_gps": [ + 49.2687137764, + 2.23612056531 + ], + "libelle_d_acheminement": "LACHAPELLE ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23612056531, + 49.2687137764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba55ac818a24a3c76f721a6bff095ad8f57fcef2", + "fields": { + "code_commune_insee": "60337", + "nom_de_la_commune": "LACHELLE", + "code_postal": "60190", + "coordonnees_gps": [ + 49.434368037, + 2.74685318222 + ], + "libelle_d_acheminement": "LACHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74685318222, + 49.434368037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1812e22b3382240ea0cf2729e1b5b9b50b019f68", + "fields": { + "code_commune_insee": "60338", + "nom_de_la_commune": "LACROIX ST OUEN", + "code_postal": "60610", + "coordonnees_gps": [ + 49.3550551807, + 2.79513678008 + ], + "libelle_d_acheminement": "LACROIX ST OUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79513678008, + 49.3550551807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da2f4f1e4d43a0c02a3b4feda16b93639984a537", + "fields": { + "code_commune_insee": "60340", + "nom_de_la_commune": "LAGNY", + "code_postal": "60310", + "coordonnees_gps": [ + 49.6104257346, + 2.91470679251 + ], + "libelle_d_acheminement": "LAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91470679251, + 49.6104257346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d18c229d81d7b369bc5ee31b3152d781593e9ae4", + "fields": { + "code_commune_insee": "60341", + "nom_de_la_commune": "LAGNY LE SEC", + "code_postal": "60330", + "coordonnees_gps": [ + 49.0781168522, + 2.7487989483 + ], + "libelle_d_acheminement": "LAGNY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7487989483, + 49.0781168522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe7146dae58edc9c5e13131e1fdf6865f3a08484", + "fields": { + "code_commune_insee": "60342", + "nom_de_la_commune": "LAIGNEVILLE", + "code_postal": "60290", + "coordonnees_gps": [ + 49.2973604415, + 2.43493025435 + ], + "libelle_d_acheminement": "LAIGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43493025435, + 49.2973604415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41a027721c899f1fa7d2e2f33095731adfe50677", + "fields": { + "code_commune_insee": "60343", + "nom_de_la_commune": "LALANDE EN SON", + "code_postal": "60590", + "coordonnees_gps": [ + 49.3890398972, + 1.78480094952 + ], + "libelle_d_acheminement": "LALANDE EN SON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78480094952, + 49.3890398972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "885fbf7138d26e45ff1947714fa7eed14c8c3681", + "fields": { + "code_commune_insee": "60351", + "nom_de_la_commune": "LATAULE", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5367201607, + 2.67457954002 + ], + "libelle_d_acheminement": "LATAULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67457954002, + 49.5367201607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7344d84d38a393a8067a44d4c5fce57c25d58ea2", + "fields": { + "code_commune_insee": "60365", + "nom_de_la_commune": "LIHUS", + "code_postal": "60360", + "coordonnees_gps": [ + 49.6046293138, + 2.03925521235 + ], + "libelle_d_acheminement": "LIHUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03925521235, + 49.6046293138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40fa640b78ab88533a685982fe98e5302dc1bd0f", + "fields": { + "code_commune_insee": "60379", + "nom_de_la_commune": "MAREUIL LA MOTTE", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5492395195, + 2.79727471102 + ], + "libelle_d_acheminement": "MAREUIL LA MOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79727471102, + 49.5492395195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fa47b469d2830f4d6e8dafa7b3db089de5cb12c", + "fields": { + "code_commune_insee": "60380", + "nom_de_la_commune": "MAREUIL SUR OURCQ", + "code_postal": "60890", + "coordonnees_gps": [ + 49.1392151665, + 3.07327554548 + ], + "libelle_d_acheminement": "MAREUIL SUR OURCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07327554548, + 49.1392151665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "806be2c9f23e63ad9557ba6dea6457498d7bcdde", + "fields": { + "code_commune_insee": "60382", + "nom_de_la_commune": "MARGNY LES COMPIEGNE", + "code_postal": "60280", + "coordonnees_gps": [ + 49.4329968709, + 2.8054861143 + ], + "libelle_d_acheminement": "MARGNY LES COMPIEGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8054861143, + 49.4329968709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5210b67531781c220bd28bde4e1968031ed35b88", + "fields": { + "code_commune_insee": "60383", + "nom_de_la_commune": "MARGNY SUR MATZ", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5293175273, + 2.77915218245 + ], + "libelle_d_acheminement": "MARGNY SUR MATZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77915218245, + 49.5293175273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a63710f225048268d3c0c1c7f67c1fd22868f8d", + "fields": { + "code_commune_insee": "60390", + "nom_de_la_commune": "MAULERS", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5440319929, + 2.16545655463 + ], + "libelle_d_acheminement": "MAULERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16545655463, + 49.5440319929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07e531c5f1232e724b9408d305fe41dba308326b", + "fields": { + "code_commune_insee": "60391", + "nom_de_la_commune": "MAYSEL", + "code_postal": "60660", + "coordonnees_gps": [ + 49.2519110578, + 2.36711680855 + ], + "libelle_d_acheminement": "MAYSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36711680855, + 49.2519110578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a17e347e952d2d5ca35db455cd0882ed2ebc0aff", + "fields": { + "code_commune_insee": "60406", + "nom_de_la_commune": "MONCEAUX", + "code_postal": "60940", + "coordonnees_gps": [ + 49.3269208712, + 2.56630699286 + ], + "libelle_d_acheminement": "MONCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56630699286, + 49.3269208712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d902d517570ac94a5021e67418d8c29e4de3fd9", + "fields": { + "code_commune_insee": "60420", + "nom_de_la_commune": "MONTJAVOULT", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2167501643, + 1.79301456897 + ], + "libelle_d_acheminement": "MONTJAVOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79301456897, + 49.2167501643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b18930f4546dcc8ef229187e8a2a7aaa75699e3d", + "fields": { + "code_commune_insee": "60431", + "nom_de_la_commune": "MORLINCOURT", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5687824764, + 3.041877271 + ], + "libelle_d_acheminement": "MORLINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.041877271, + 49.5687824764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63d529614b1756a300df16755966eb50eacf556a", + "fields": { + "code_commune_insee": "60436", + "nom_de_la_commune": "MORY MONTCRUX", + "code_postal": "60120", + "coordonnees_gps": [ + 49.5944185573, + 2.39746582957 + ], + "libelle_d_acheminement": "MORY MONTCRUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39746582957, + 49.5944185573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8c4b90a71dc6847079ba0403eefec5f459f7e83", + "fields": { + "code_commune_insee": "60438", + "nom_de_la_commune": "MOULIN SOUS TOUVENT", + "code_postal": "60350", + "coordonnees_gps": [ + 49.4655313245, + 3.0666237868 + ], + "libelle_d_acheminement": "MOULIN SOUS TOUVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0666237868, + 49.4655313245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bce0d2690ba0a4e7dab5acf7aa2d2ccc381a0bd", + "fields": { + "code_commune_insee": "60439", + "nom_de_la_commune": "MOUY", + "code_postal": "60250", + "coordonnees_gps": [ + 49.3172920199, + 2.29984372967 + ], + "libelle_d_acheminement": "MOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29984372967, + 49.3172920199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f9e6d372fbb3a59db998b4335d5d392b4a082e4", + "fields": { + "code_commune_insee": "60462", + "nom_de_la_commune": "NOAILLES", + "code_postal": "60430", + "coordonnees_gps": [ + 49.3185654473, + 2.19363262342 + ], + "libelle_d_acheminement": "NOAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19363262342, + 49.3185654473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8287c63bee4851355bbae7d3197e3092e9d8b7fc", + "fields": { + "code_commune_insee": "60470", + "nom_de_la_commune": "NOYERS ST MARTIN", + "code_postal": "60480", + "coordonnees_gps": [ + 49.548098011, + 2.26637360937 + ], + "libelle_d_acheminement": "NOYERS ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26637360937, + 49.548098011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "376175005ae1ae31442e2d496aca00d809206b2e", + "fields": { + "code_commune_insee": "60473", + "nom_de_la_commune": "OGNES", + "code_postal": "60440", + "coordonnees_gps": [ + 49.0992468739, + 2.82917802889 + ], + "libelle_d_acheminement": "OGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82917802889, + 49.0992468739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddb335123ff46a7f747e48f6415374569ef8a887", + "fields": { + "code_commune_insee": "60479", + "nom_de_la_commune": "ORMOY VILLERS", + "code_postal": "60800", + "coordonnees_gps": [ + 49.1972207576, + 2.84690572589 + ], + "libelle_d_acheminement": "ORMOY VILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84690572589, + 49.1972207576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a82bb5b614f11326d47e388afd402dcbc36d5230", + "fields": { + "code_commune_insee": "60481", + "nom_de_la_commune": "ORROUY", + "code_postal": "60129", + "coordonnees_gps": [ + 49.3071238607, + 2.85809275109 + ], + "libelle_d_acheminement": "ORROUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85809275109, + 49.3071238607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d865b181da631d7ad2e504b71cb739239ce2a746", + "fields": { + "code_commune_insee": "60500", + "nom_de_la_commune": "LE PLESSIS BELLEVILLE", + "code_postal": "60330", + "coordonnees_gps": [ + 49.0985806649, + 2.75896019527 + ], + "libelle_d_acheminement": "LE PLESSIS BELLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75896019527, + 49.0985806649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70e6b4a63e57e907733ccdd2b5dbed0139541923", + "fields": { + "code_commune_insee": "60511", + "nom_de_la_commune": "PORQUERICOURT", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5968822317, + 2.95464137145 + ], + "libelle_d_acheminement": "PORQUERICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95464137145, + 49.5968822317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7458727e904e8bee8cf3f3dbac0be06a5c5d4d6", + "fields": { + "code_commune_insee": "60512", + "nom_de_la_commune": "POUILLY", + "code_postal": "60790", + "coordonnees_gps": [ + 49.2756110754, + 2.03153859002 + ], + "libelle_d_acheminement": "POUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03153859002, + 49.2756110754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "758bb0d333b52bbcd263e7d355559189a73804f6", + "fields": { + "code_commune_insee": "60514", + "nom_de_la_commune": "PREVILLERS", + "code_postal": "60360", + "coordonnees_gps": [ + 49.6174288468, + 1.99964588625 + ], + "libelle_d_acheminement": "PREVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99964588625, + 49.6174288468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf8ea876f9bea75cfdaa2bfbb59534fea5028ee1", + "fields": { + "code_commune_insee": "60515", + "nom_de_la_commune": "PRONLEROY", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4684053367, + 2.53983717529 + ], + "libelle_d_acheminement": "PRONLEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53983717529, + 49.4684053367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41177c7cb1543a250ff3edbd022e027d8d47a355", + "fields": { + "ligne_5": "DRESLINCOURT", + "code_commune_insee": "60537", + "libelle_d_acheminement": "RIBECOURT DRESLINCOURT", + "code_postal": "60170", + "nom_de_la_commune": "RIBECOURT DRESLINCOURT", + "coordonnees_gps": [ + 49.5224343786, + 2.91876179627 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91876179627, + 49.5224343786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d38dbdd82db5e70426cc8d60c44555c807a1533", + "fields": { + "code_commune_insee": "60541", + "nom_de_la_commune": "ROBERVAL", + "code_postal": "60410", + "coordonnees_gps": [ + 49.2911584185, + 2.68497553909 + ], + "libelle_d_acheminement": "ROBERVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68497553909, + 49.2911584185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79dc2204f08a669b6525861f36aa9c08e66c615f", + "fields": { + "code_commune_insee": "60542", + "nom_de_la_commune": "ROCHY CONDE", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4041536099, + 2.1887872346 + ], + "libelle_d_acheminement": "ROCHY CONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1887872346, + 49.4041536099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82ca1a9a005f41329c89e8f5ca7de85e3d56a166", + "fields": { + "code_commune_insee": "60556", + "nom_de_la_commune": "ROYAUCOURT", + "code_postal": "60420", + "coordonnees_gps": [ + 49.6124825658, + 2.52773304536 + ], + "libelle_d_acheminement": "ROYAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52773304536, + 49.6124825658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70a4a8dd0fff9d8605241225fa8cfb6ba5ba11cf", + "fields": { + "code_commune_insee": "60565", + "nom_de_la_commune": "ST ANDRE FARIVILLERS", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5820586693, + 2.30062161495 + ], + "libelle_d_acheminement": "ST ANDRE FARIVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30062161495, + 49.5820586693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6fe38637e3683b3c9565fa337f3de96174b8f73", + "fields": { + "code_commune_insee": "60567", + "nom_de_la_commune": "ST AUBIN EN BRAY", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4256177121, + 1.88925202038 + ], + "libelle_d_acheminement": "ST AUBIN EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88925202038, + 49.4256177121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d929ced73a6bc359b51aae055d704c10c857b93", + "fields": { + "code_commune_insee": "60568", + "nom_de_la_commune": "ST AUBIN SOUS ERQUERY", + "code_postal": "60600", + "coordonnees_gps": [ + 49.4123694145, + 2.49005189932 + ], + "libelle_d_acheminement": "ST AUBIN SOUS ERQUERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49005189932, + 49.4123694145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ecb2bf37135279da476920f859d34a4676ffafd", + "fields": { + "code_commune_insee": "60575", + "nom_de_la_commune": "STE GENEVIEVE", + "code_postal": "60730", + "coordonnees_gps": [ + 49.2889931714, + 2.19808421262 + ], + "libelle_d_acheminement": "STE GENEVIEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19808421262, + 49.2889931714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "409ba961e49292cfcc0f4e0cc4b10da9f89d5bad", + "fields": { + "code_commune_insee": "60578", + "nom_de_la_commune": "SAINTINES", + "code_postal": "60410", + "coordonnees_gps": [ + 49.3020445014, + 2.76780194989 + ], + "libelle_d_acheminement": "SAINTINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76780194989, + 49.3020445014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b348ee193ce1f255ef3e47edc563b92c861ab91", + "fields": { + "code_commune_insee": "60586", + "nom_de_la_commune": "ST MARTIN LE NOEUD", + "code_postal": "60000", + "coordonnees_gps": [ + 49.3957799829, + 2.05937901861 + ], + "libelle_d_acheminement": "ST MARTIN LE NOEUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05937901861, + 49.3957799829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20e1855c925a34a1acaee265020ad8017576a289", + "fields": { + "code_commune_insee": "60588", + "nom_de_la_commune": "ST MAUR", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6166715837, + 1.92159084424 + ], + "libelle_d_acheminement": "ST MAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92159084424, + 49.6166715837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5bc7f70e036dd451cb977c65e2296c90cae2c05", + "fields": { + "code_commune_insee": "60593", + "nom_de_la_commune": "ST PIERRE LES BITRY", + "code_postal": "60350", + "coordonnees_gps": [ + 49.4314595152, + 3.08507355061 + ], + "libelle_d_acheminement": "ST PIERRE LES BITRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08507355061, + 49.4314595152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f71d5c8ff384d41b4e24a99f260483e3e10bcba0", + "fields": { + "code_commune_insee": "60608", + "nom_de_la_commune": "LE SAULCHOY", + "code_postal": "60360", + "coordonnees_gps": [ + 49.6307458971, + 2.13635146653 + ], + "libelle_d_acheminement": "LE SAULCHOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13635146653, + 49.6307458971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df3df5b541f8fe89aaf21f053f36292afb8ddf97", + "fields": { + "code_commune_insee": "60610", + "nom_de_la_commune": "SEMPIGNY", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5526800369, + 3.00054707507 + ], + "libelle_d_acheminement": "SEMPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00054707507, + 49.5526800369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "595466a9b0c7e219a4897207019f6f8d6b2e1cd5", + "fields": { + "code_commune_insee": "60613", + "nom_de_la_commune": "SENOTS", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2603954952, + 2.01352308101 + ], + "libelle_d_acheminement": "SENOTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01352308101, + 49.2603954952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b903ebfcc1cafeb69a24e090754c2aea7fefecad", + "fields": { + "code_commune_insee": "60617", + "nom_de_la_commune": "SERMAIZE", + "code_postal": "60400", + "coordonnees_gps": [ + 49.6168772777, + 2.95323666872 + ], + "libelle_d_acheminement": "SERMAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95323666872, + 49.6168772777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a66c54158a36b488b3efed1b7b37cf72abf28b55", + "fields": { + "code_commune_insee": "60619", + "nom_de_la_commune": "SILLY LE LONG", + "code_postal": "60330", + "coordonnees_gps": [ + 49.1084845139, + 2.78729008831 + ], + "libelle_d_acheminement": "SILLY LE LONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78729008831, + 49.1084845139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4967656e45ce1f00e9c32d2fac7d476b801f573", + "fields": { + "code_commune_insee": "60623", + "nom_de_la_commune": "SONGEONS", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5626808865, + 1.85253851049 + ], + "libelle_d_acheminement": "SONGEONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85253851049, + 49.5626808865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40a9f6ff37027d1c756af9037ebacd30a4d686f3", + "fields": { + "code_commune_insee": "60629", + "nom_de_la_commune": "THERINES", + "code_postal": "60380", + "coordonnees_gps": [ + 49.6034358445, + 1.8937457326 + ], + "libelle_d_acheminement": "THERINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8937457326, + 49.6034358445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc3bfcc85d48781446dd2eec1720df7773aa8bb9", + "fields": { + "ligne_5": "OLLENCOURT", + "code_commune_insee": "60641", + "libelle_d_acheminement": "TRACY LE MONT", + "code_postal": "60170", + "nom_de_la_commune": "TRACY LE MONT", + "coordonnees_gps": [ + 49.469047669, + 3.00367907538 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00367907538, + 49.469047669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dcf1a4d8c34322b35f76c2f363190d116373191", + "fields": { + "code_commune_insee": "60654", + "nom_de_la_commune": "VANDELICOURT", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5083038228, + 2.79666827304 + ], + "libelle_d_acheminement": "VANDELICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79666827304, + 49.5083038228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e298621e91f19f93a5530ce3f3ae739fd72b6bcf", + "fields": { + "code_commune_insee": "60656", + "nom_de_la_commune": "VARINFROY", + "code_postal": "60890", + "coordonnees_gps": [ + 49.0940200918, + 3.0480173997 + ], + "libelle_d_acheminement": "VARINFROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0480173997, + 49.0940200918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c954a0f053153ba66cbba022efa85814cd395948", + "fields": { + "code_commune_insee": "60662", + "nom_de_la_commune": "LE VAUROUX", + "code_postal": "60390", + "coordonnees_gps": [ + 49.3812218518, + 1.91494553081 + ], + "libelle_d_acheminement": "LE VAUROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91494553081, + 49.3812218518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb608ced23beb193f30680a259ab2a8ae9d977e6", + "fields": { + "code_commune_insee": "60673", + "nom_de_la_commune": "VIEFVILLERS", + "code_postal": "60360", + "coordonnees_gps": [ + 49.6092660128, + 2.12817479204 + ], + "libelle_d_acheminement": "VIEFVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12817479204, + 49.6092660128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ba72fbaeca7a8087132803128220f7b7dcbf8f4", + "fields": { + "code_commune_insee": "60674", + "nom_de_la_commune": "VIEUX MOULIN", + "code_postal": "60350", + "coordonnees_gps": [ + 49.3844925116, + 2.92575839247 + ], + "libelle_d_acheminement": "VIEUX MOULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92575839247, + 49.3844925116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edcb6ddb9a4958de351068fabb52e8e8ba661693", + "fields": { + "code_commune_insee": "60677", + "nom_de_la_commune": "VILLEMBRAY", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4826856803, + 1.87278558201 + ], + "libelle_d_acheminement": "VILLEMBRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87278558201, + 49.4826856803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa5f100eeda06fd9412af23e0a15337adfe9c205", + "fields": { + "code_commune_insee": "60681", + "nom_de_la_commune": "VILLERS ST BARTHELEMY", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4030125375, + 1.95463003144 + ], + "libelle_d_acheminement": "VILLERS ST BARTHELEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95463003144, + 49.4030125375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48836baa6fdf23e3c4aefa370ee1a3a586964a88", + "fields": { + "ligne_5": "OGNON", + "code_commune_insee": "60682", + "libelle_d_acheminement": "VILLERS ST FRAMBOURG OGNON", + "code_postal": "60810", + "nom_de_la_commune": "VILLERS ST FRAMBOURG OGNON", + "coordonnees_gps": [ + 49.260726193, + 2.63465752752 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63465752752, + 49.260726193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17ad94df529ae48909d22fa8c0e31ca4143d8568", + "fields": { + "code_commune_insee": "60685", + "nom_de_la_commune": "VILLERS ST SEPULCRE", + "code_postal": "60134", + "coordonnees_gps": [ + 49.3689508807, + 2.20925215873 + ], + "libelle_d_acheminement": "VILLERS ST SEPULCRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20925215873, + 49.3689508807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d9a4b5a113e35ac98ae6b19ad7951f4b4f85a3f", + "fields": { + "code_commune_insee": "60687", + "nom_de_la_commune": "VILLERS SUR AUCHY", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4762316159, + 1.79239140234 + ], + "libelle_d_acheminement": "VILLERS SUR AUCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79239140234, + 49.4762316159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f66305a65812c762c7fd789f5ff0dd05da13a47", + "fields": { + "code_commune_insee": "60688", + "nom_de_la_commune": "VILLERS SUR BONNIERES", + "code_postal": "60860", + "coordonnees_gps": [ + 49.5340978848, + 1.96061918501 + ], + "libelle_d_acheminement": "VILLERS SUR BONNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96061918501, + 49.5340978848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce34a3eca9f9f4d217d98e35974cfff4f7a1fa41", + "fields": { + "code_commune_insee": "60689", + "nom_de_la_commune": "VILLERS SUR COUDUN", + "code_postal": "60150", + "coordonnees_gps": [ + 49.4863336578, + 2.8047419383 + ], + "libelle_d_acheminement": "VILLERS SUR COUDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8047419383, + 49.4863336578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00ec242c8c49540a3f0cf9b9593be295f2519ddf", + "fields": { + "code_commune_insee": "60701", + "nom_de_la_commune": "WAVIGNIES", + "code_postal": "60130", + "coordonnees_gps": [ + 49.5467064424, + 2.35949571781 + ], + "libelle_d_acheminement": "WAVIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35949571781, + 49.5467064424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0593997c58bb50244e3980e4d67632fef3679008", + "fields": { + "code_commune_insee": "61001", + "nom_de_la_commune": "ALENCON", + "code_postal": "61000", + "coordonnees_gps": [ + 48.4318193082, + 0.0915406916107 + ], + "libelle_d_acheminement": "ALENCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0915406916107, + 48.4318193082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5238779c73779ee08085f51a33cf7957f352312b", + "fields": { + "ligne_5": "RONFEUGERAI", + "code_commune_insee": "61007", + "libelle_d_acheminement": "ATHIS VAL DE ROUVRE", + "code_postal": "61100", + "nom_de_la_commune": "ATHIS VAL DE ROUVRE", + "coordonnees_gps": [ + 48.7951982952, + -0.509617196105 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509617196105, + 48.7951982952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35910ff7063600fae69bd1ad7bb1391edb974096", + "fields": { + "ligne_5": "SEGRIE FONTAINE", + "code_commune_insee": "61007", + "libelle_d_acheminement": "ATHIS VAL DE ROUVRE", + "code_postal": "61100", + "nom_de_la_commune": "ATHIS VAL DE ROUVRE", + "coordonnees_gps": [ + 48.7951982952, + -0.509617196105 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509617196105, + 48.7951982952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12d907b1c11c35fc158f3ae1766d8bfc4568273c", + "fields": { + "code_commune_insee": "61011", + "nom_de_la_commune": "AUBUSSON", + "code_postal": "61100", + "coordonnees_gps": [ + 48.7798224159, + -0.553278644755 + ], + "libelle_d_acheminement": "AUBUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.553278644755, + 48.7798224159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bce204fed21e5f175276504e2b1338d0f8bcc3b", + "fields": { + "code_commune_insee": "61017", + "nom_de_la_commune": "LES AUTHIEUX DU PUITS", + "code_postal": "61240", + "coordonnees_gps": [ + 48.7049354762, + 0.329371823678 + ], + "libelle_d_acheminement": "LES AUTHIEUX DU PUITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.329371823678, + 48.7049354762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0c3c87aab8689979698b8d2f981401013fce135", + "fields": { + "code_commune_insee": "61018", + "nom_de_la_commune": "AVERNES ST GOURGON", + "code_postal": "61470", + "coordonnees_gps": [ + 48.9370401429, + 0.31350420868 + ], + "libelle_d_acheminement": "AVERNES ST GOURGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.31350420868, + 48.9370401429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17fc6d5c287c206c2ad9c200f6ceaad107333650", + "fields": { + "code_commune_insee": "61020", + "nom_de_la_commune": "AVOINE", + "code_postal": "61150", + "coordonnees_gps": [ + 48.6713596683, + -0.0993268987581 + ], + "libelle_d_acheminement": "AVOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0993268987581, + 48.6713596683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3bf68804b32b57b8342f9bfa51a781d318c12ae", + "fields": { + "code_commune_insee": "61029", + "nom_de_la_commune": "BAZOCHES SUR HOENE", + "code_postal": "61560", + "coordonnees_gps": [ + 48.5510739399, + 0.470361328466 + ], + "libelle_d_acheminement": "BAZOCHES SUR HOENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.470361328466, + 48.5510739399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb596646d2f1a566beb03f95b41e04cd4586fcf4", + "fields": { + "code_commune_insee": "61032", + "nom_de_la_commune": "BEAUFAI", + "code_postal": "61270", + "coordonnees_gps": [ + 48.755637161, + 0.511069602511 + ], + "libelle_d_acheminement": "BEAUFAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.511069602511, + 48.755637161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa38f43523c590bc51d1389f7bdeb9e29ddf25cb", + "fields": { + "code_commune_insee": "61038", + "nom_de_la_commune": "BELLEME", + "code_postal": "61130", + "coordonnees_gps": [ + 48.3730422807, + 0.563433048033 + ], + "libelle_d_acheminement": "BELLEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.563433048033, + 48.3730422807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d77d5117bf3b5a4a29ebd3bf015042e40c3678e9", + "fields": { + "code_commune_insee": "61051", + "nom_de_la_commune": "BOITRON", + "code_postal": "61500", + "coordonnees_gps": [ + 48.5692964813, + 0.265425741092 + ], + "libelle_d_acheminement": "BOITRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.265425741092, + 48.5692964813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea3fe64fc78bb4805a87c7051ca67e97ab232001", + "fields": { + "code_commune_insee": "61063", + "nom_de_la_commune": "BRIOUZE", + "code_postal": "61220", + "coordonnees_gps": [ + 48.7111600408, + -0.377752655086 + ], + "libelle_d_acheminement": "BRIOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.377752655086, + 48.7111600408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6837177d684a8d85759e02cd03ed5df4e3daa23e", + "fields": { + "code_commune_insee": "61078", + "nom_de_la_commune": "CERISY BELLE ETOILE", + "code_postal": "61100", + "coordonnees_gps": [ + 48.7831815078, + -0.623679681205 + ], + "libelle_d_acheminement": "CERISY BELLE ETOILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.623679681205, + 48.7831815078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0597438e9d19fec15d89731be973c79a987d5112", + "fields": { + "code_commune_insee": "61081", + "nom_de_la_commune": "CHAILLOUE", + "code_postal": "61500", + "coordonnees_gps": [ + 48.6568911726, + 0.196513358702 + ], + "libelle_d_acheminement": "CHAILLOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.196513358702, + 48.6568911726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d97efe4b7c0ca6e871328dc633454cb5dfa3632b", + "fields": { + "code_commune_insee": "61087", + "nom_de_la_commune": "CHAMPEAUX SUR SARTHE", + "code_postal": "61560", + "coordonnees_gps": [ + 48.5770264971, + 0.439382618657 + ], + "libelle_d_acheminement": "CHAMPEAUX SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.439382618657, + 48.5770264971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e19178490900d900de621c9241e4ab20edf857ad", + "fields": { + "code_commune_insee": "61092", + "nom_de_la_commune": "CHANDAI", + "code_postal": "61300", + "coordonnees_gps": [ + 48.7419330141, + 0.744469274566 + ], + "libelle_d_acheminement": "CHANDAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.744469274566, + 48.7419330141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "585dcb8093e0f1fd32696d6b4f6b134a3a215828", + "fields": { + "code_commune_insee": "61093", + "nom_de_la_commune": "CHANU", + "code_postal": "61800", + "coordonnees_gps": [ + 48.7224631427, + -0.672912176288 + ], + "libelle_d_acheminement": "CHANU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.672912176288, + 48.7224631427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce98693b75986b86494da2208a60c731bb8eff35", + "fields": { + "code_commune_insee": "61095", + "nom_de_la_commune": "LA CHAPELLE BICHE", + "code_postal": "61100", + "coordonnees_gps": [ + 48.7128515719, + -0.622127814568 + ], + "libelle_d_acheminement": "LA CHAPELLE BICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.622127814568, + 48.7128515719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa7173a0b0512d3e106bb3c13c786a99f8b58121", + "fields": { + "ligne_5": "HALEINE", + "code_commune_insee": "61096", + "libelle_d_acheminement": "RIVES D ANDAINE", + "code_postal": "61410", + "nom_de_la_commune": "RIVES D ANDAINE", + "coordonnees_gps": [ + 48.5439558211, + -0.466370828883 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.466370828883, + 48.5439558211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b30b0537264b06a00f654e773a6410875f00d12", + "fields": { + "code_commune_insee": "61099", + "nom_de_la_commune": "LA CHAPELLE SOUEF", + "code_postal": "61130", + "coordonnees_gps": [ + 48.3177028134, + 0.588455492814 + ], + "libelle_d_acheminement": "LA CHAPELLE SOUEF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.588455492814, + 48.3177028134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c41eea08d62b5e1502fb60d9649c081943a6390a", + "fields": { + "code_commune_insee": "61105", + "nom_de_la_commune": "CHEMILLI", + "code_postal": "61360", + "coordonnees_gps": [ + 48.3600549663, + 0.451929656823 + ], + "libelle_d_acheminement": "CHEMILLI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.451929656823, + 48.3600549663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69589f13ae8315b91d283d862122e7fa784a827a", + "fields": { + "code_commune_insee": "61113", + "nom_de_la_commune": "COMBLOT", + "code_postal": "61400", + "coordonnees_gps": [ + 48.4604945962, + 0.586141513594 + ], + "libelle_d_acheminement": "COMBLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.586141513594, + 48.4604945962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "412c09b3897be64fc3ac856ffa76cc7fdd6b7ac9", + "fields": { + "code_commune_insee": "61114", + "nom_de_la_commune": "COMMEAUX", + "code_postal": "61200", + "coordonnees_gps": [ + 48.7884537955, + -0.0987177513716 + ], + "libelle_d_acheminement": "COMMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0987177513716, + 48.7884537955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2304ddef9bff49e0cff5d6812f624b7f2cca8bb4", + "fields": { + "code_commune_insee": "61118", + "nom_de_la_commune": "CORBON", + "code_postal": "61400", + "coordonnees_gps": [ + 48.4600122799, + 0.642647219775 + ], + "libelle_d_acheminement": "CORBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.642647219775, + 48.4600122799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a63468987fcc0c9368fc90635f496b7d2e980090", + "fields": { + "code_commune_insee": "61133", + "nom_de_la_commune": "COURTOMER", + "code_postal": "61390", + "coordonnees_gps": [ + 48.6253139706, + 0.348458079844 + ], + "libelle_d_acheminement": "COURTOMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.348458079844, + 48.6253139706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41fda69bb20ffcacbda254bd6057ff77a20665bc", + "fields": { + "code_commune_insee": "61138", + "nom_de_la_commune": "CROISILLES", + "code_postal": "61230", + "coordonnees_gps": [ + 48.7626241213, + 0.267120484409 + ], + "libelle_d_acheminement": "CROISILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.267120484409, + 48.7626241213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dd9ddcaa749a58a0c365bc576a275cc5d0c5419", + "fields": { + "code_commune_insee": "61143", + "nom_de_la_commune": "DAMIGNY", + "code_postal": "61250", + "coordonnees_gps": [ + 48.4509364175, + 0.0721150858454 + ], + "libelle_d_acheminement": "DAMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0721150858454, + 48.4509364175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e61f7e34c865ea6c4a89634ec3e9ba351a603e4b", + "fields": { + "ligne_5": "LA HAUTE CHAPELLE", + "code_commune_insee": "61145", + "libelle_d_acheminement": "DOMFRONT EN POIRAIE", + "code_postal": "61700", + "nom_de_la_commune": "DOMFRONT EN POIRAIE", + "coordonnees_gps": [ + 48.5824684934, + -0.61398156582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61398156582, + 48.5824684934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c4d5e33a3a27d8f4746fdc67f041b28a75fd246", + "fields": { + "code_commune_insee": "61150", + "nom_de_la_commune": "ECHAUFFOUR", + "code_postal": "61370", + "coordonnees_gps": [ + 48.7322506455, + 0.395097737587 + ], + "libelle_d_acheminement": "ECHAUFFOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.395097737587, + 48.7322506455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d347aa63302e5da3fdb3f3856e1411778d4e7df", + "fields": { + "ligne_5": "LA COURBE", + "code_commune_insee": "61153", + "libelle_d_acheminement": "ECOUCHE LES VALLEES", + "code_postal": "61150", + "nom_de_la_commune": "ECOUCHE LES VALLEES", + "coordonnees_gps": [ + 48.715236562, + -0.11079364791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11079364791, + 48.715236562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6341e5d64be72ea2527f63a175e6bcc5470e7af", + "fields": { + "ligne_5": "FONTENAI SUR ORNE", + "code_commune_insee": "61153", + "libelle_d_acheminement": "ECOUCHE LES VALLEES", + "code_postal": "61200", + "nom_de_la_commune": "ECOUCHE LES VALLEES", + "coordonnees_gps": [ + 48.715236562, + -0.11079364791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11079364791, + 48.715236562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c833b07ce40e44a8dc85faf4c90aee5e10c132d", + "fields": { + "code_commune_insee": "61158", + "nom_de_la_commune": "FAVEROLLES", + "code_postal": "61600", + "coordonnees_gps": [ + 48.6691172577, + -0.289200935258 + ], + "libelle_d_acheminement": "FAVEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.289200935258, + 48.6691172577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9da790c44f6c861540a6e97d67bae5ad7cc2c92", + "fields": { + "code_commune_insee": "61162", + "nom_de_la_commune": "LA FERRIERE AU DOYEN", + "code_postal": "61380", + "coordonnees_gps": [ + 48.6795473913, + 0.506168512231 + ], + "libelle_d_acheminement": "LA FERRIERE AU DOYEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.506168512231, + 48.6795473913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce2404df0fc2e98e1648007a870f7f09a1cfca2b", + "fields": { + "code_commune_insee": "61163", + "nom_de_la_commune": "LA FERRIERE AUX ETANGS", + "code_postal": "61450", + "coordonnees_gps": [ + 48.6515598236, + -0.508551110895 + ], + "libelle_d_acheminement": "LA FERRIERE AUX ETANGS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.508551110895, + 48.6515598236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ef98e30b5377dea595e1ebe25d588a349caf76b", + "fields": { + "ligne_5": "GAUVILLE", + "code_commune_insee": "61167", + "libelle_d_acheminement": "LA FERTE EN OUCHE", + "code_postal": "61550", + "nom_de_la_commune": "LA FERTE EN OUCHE", + "coordonnees_gps": [ + 48.8362459554, + 0.508544741133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.508544741133, + 48.8362459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcb03484f4ad803270e100c7683c9fa0a61f6d1b", + "fields": { + "code_commune_insee": "61169", + "nom_de_la_commune": "FLERS", + "code_postal": "61100", + "coordonnees_gps": [ + 48.7399319125, + -0.562509564641 + ], + "libelle_d_acheminement": "FLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.562509564641, + 48.7399319125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dad8bb071af44003cb76244cb3e97e1143000888", + "fields": { + "code_commune_insee": "61170", + "nom_de_la_commune": "FLEURE", + "code_postal": "61200", + "coordonnees_gps": [ + 48.6830918716, + -0.0507019208151 + ], + "libelle_d_acheminement": "FLEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0507019208151, + 48.6830918716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec508c397c6eebc74f984d2f159ebaa6ba411ae3", + "fields": { + "code_commune_insee": "61180", + "nom_de_la_commune": "FRESNAY LE SAMSON", + "code_postal": "61120", + "coordonnees_gps": [ + 48.872166928, + 0.207025608696 + ], + "libelle_d_acheminement": "FRESNAY LE SAMSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.207025608696, + 48.872166928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e782eb417a0d880f94577a6e217733f6c89bda42", + "fields": { + "code_commune_insee": "61181", + "nom_de_la_commune": "GACE", + "code_postal": "61230", + "coordonnees_gps": [ + 48.790215977, + 0.308446478408 + ], + "libelle_d_acheminement": "GACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.308446478408, + 48.790215977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51ffd1c5bd13563f04e7466a4f1efd321e7efd5c", + "fields": { + "code_commune_insee": "61187", + "nom_de_la_commune": "LES GENETTES", + "code_postal": "61270", + "coordonnees_gps": [ + 48.6613367608, + 0.582203708406 + ], + "libelle_d_acheminement": "LES GENETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.582203708406, + 48.6613367608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25ff6773fa509d1bbca9dc3fac3a4d41929c6b02", + "fields": { + "code_commune_insee": "61195", + "nom_de_la_commune": "LE GRAIS", + "code_postal": "61600", + "coordonnees_gps": [ + 48.640228163, + -0.320480791635 + ], + "libelle_d_acheminement": "LE GRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.320480791635, + 48.640228163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c943805c59f0bfceb1da3f7e4b646ac6253cfab", + "fields": { + "ligne_5": "LA PERRIERE", + "code_commune_insee": "61196", + "libelle_d_acheminement": "BELFORET EN PERCHE", + "code_postal": "61360", + "nom_de_la_commune": "BELFORET EN PERCHE", + "coordonnees_gps": [ + 48.3725300515, + 0.509787667614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.509787667614, + 48.3725300515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90d51e37da4c9a7c856041fc3fb71dc1e52c697a", + "fields": { + "code_commune_insee": "61202", + "nom_de_la_commune": "HAUTERIVE", + "code_postal": "61250", + "coordonnees_gps": [ + 48.4813211383, + 0.205141190434 + ], + "libelle_d_acheminement": "HAUTERIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.205141190434, + 48.4813211383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dfdc37a637b025ea3698131db0284d14b9a83f0", + "fields": { + "code_commune_insee": "61203", + "nom_de_la_commune": "HELOUP", + "code_postal": "61250", + "coordonnees_gps": [ + 48.3967092098, + 0.0351889089974 + ], + "libelle_d_acheminement": "HELOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0351889089974, + 48.3967092098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8638f73b1c5053040b993b29173439d8cacc7950", + "fields": { + "ligne_5": "LA BAROCHE SOUS LUCE", + "code_commune_insee": "61211", + "libelle_d_acheminement": "JUVIGNY VAL D ANDAINE", + "code_postal": "61330", + "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", + "coordonnees_gps": [ + 48.5575380101, + -0.496792071108 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.496792071108, + 48.5575380101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d93516e71f10ad76d05341ac8b5432d908696be", + "fields": { + "ligne_5": "ST DENIS DE VILLENETTE", + "code_commune_insee": "61211", + "libelle_d_acheminement": "JUVIGNY VAL D ANDAINE", + "code_postal": "61330", + "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", + "coordonnees_gps": [ + 48.5575380101, + -0.496792071108 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.496792071108, + 48.5575380101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4085b0a2ed68dd7b8adcca381a814d7cdb9994c", + "fields": { + "code_commune_insee": "61214", + "nom_de_la_commune": "L AIGLE", + "code_postal": "61300", + "coordonnees_gps": [ + 48.7561549553, + 0.611126420423 + ], + "libelle_d_acheminement": "L AIGLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.611126420423, + 48.7561549553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc94c31bd5b7f362ad6ef5af3f99bb797cfdd189", + "fields": { + "code_commune_insee": "61225", + "nom_de_la_commune": "LIGNERES", + "code_postal": "61240", + "coordonnees_gps": [ + 48.7371565601, + 0.306149827572 + ], + "libelle_d_acheminement": "LIGNERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.306149827572, + 48.7371565601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbb845f1280edc46796e161263a3f8533193bd21", + "fields": { + "code_commune_insee": "61227", + "nom_de_la_commune": "LIGNOU", + "code_postal": "61220", + "coordonnees_gps": [ + 48.6736724147, + -0.342978146704 + ], + "libelle_d_acheminement": "LIGNOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.342978146704, + 48.6736724147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af0f4e803623a9aa5b9b35b5d86cda46e9555a79", + "fields": { + "ligne_5": "MALETABLE", + "code_commune_insee": "61230", + "libelle_d_acheminement": "LONGNY LES VILLAGES", + "code_postal": "61290", + "nom_de_la_commune": "LONGNY LES VILLAGES", + "coordonnees_gps": [ + 48.5293923919, + 0.757893185933 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.757893185933, + 48.5293923919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1736f28b33d66d93c8e279551f59e172218cdc4", + "fields": { + "code_commune_insee": "61241", + "nom_de_la_commune": "LA MADELEINE BOUVET", + "code_postal": "61110", + "coordonnees_gps": [ + 48.468815139, + 0.898781486083 + ], + "libelle_d_acheminement": "LA MADELEINE BOUVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.898781486083, + 48.468815139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15c46403a8b67c4de560db333719ac68c9364c32", + "fields": { + "code_commune_insee": "61248", + "nom_de_la_commune": "MANTILLY", + "code_postal": "61350", + "coordonnees_gps": [ + 48.5113113918, + -0.813623687288 + ], + "libelle_d_acheminement": "MANTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.813623687288, + 48.5113113918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58c99df93758fbd4cea2b9bcbfe7d5dc7b534507", + "fields": { + "code_commune_insee": "61255", + "nom_de_la_commune": "MAUVES SUR HUISNE", + "code_postal": "61400", + "coordonnees_gps": [ + 48.4380123635, + 0.608254382675 + ], + "libelle_d_acheminement": "MAUVES SUR HUISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.608254382675, + 48.4380123635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5602998c0252881130a2cecf16d2cdb2fed0c603", + "fields": { + "code_commune_insee": "61266", + "nom_de_la_commune": "LE MENIL GUYON", + "code_postal": "61170", + "coordonnees_gps": [ + 48.5800612899, + 0.29433804603 + ], + "libelle_d_acheminement": "LE MENIL GUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29433804603, + 48.5800612899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f46974ab38fd0eef2f7c45eeddd77e16d8746ba", + "fields": { + "code_commune_insee": "61269", + "nom_de_la_commune": "MENIL HUBERT SUR ORNE", + "code_postal": "61430", + "coordonnees_gps": [ + 48.8493278134, + -0.41582469605 + ], + "libelle_d_acheminement": "MENIL HUBERT SUR ORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41582469605, + 48.8493278134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a63649862ba4ff4d0eefaa5e807aa4c03731757", + "fields": { + "code_commune_insee": "61275", + "nom_de_la_commune": "LE MERLERAULT", + "code_postal": "61240", + "coordonnees_gps": [ + 48.7007870105, + 0.280266472699 + ], + "libelle_d_acheminement": "LE MERLERAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.280266472699, + 48.7007870105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdbd77fb26f32c8f564209f2d1ab3bee53c85640", + "fields": { + "code_commune_insee": "61281", + "nom_de_la_commune": "MONCY", + "code_postal": "61800", + "coordonnees_gps": [ + 48.8332257317, + -0.674553210815 + ], + "libelle_d_acheminement": "MONCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.674553210815, + 48.8332257317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ac7ca71f77a7fce6ccb0e63bebc30e10c0e7e69", + "fields": { + "code_commune_insee": "61286", + "nom_de_la_commune": "MONTGAUDRY", + "code_postal": "61360", + "coordonnees_gps": [ + 48.409293886, + 0.397216476746 + ], + "libelle_d_acheminement": "MONTGAUDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.397216476746, + 48.409293886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fec906b5ffdeaf432f503a432edd9049b0a3091", + "fields": { + "ligne_5": "ST HILAIRE LA GERARD", + "code_commune_insee": "61294", + "libelle_d_acheminement": "MORTREE", + "code_postal": "61500", + "nom_de_la_commune": "MORTREE", + "coordonnees_gps": [ + 48.6384870468, + 0.0801583053247 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0801583053247, + 48.6384870468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b7e3efade1735c7a5f9491b3ad070ec395671ad", + "fields": { + "code_commune_insee": "61300", + "nom_de_la_commune": "MOUTIERS AU PERCHE", + "code_postal": "61110", + "coordonnees_gps": [ + 48.4831821035, + 0.856650987166 + ], + "libelle_d_acheminement": "MOUTIERS AU PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.856650987166, + 48.4831821035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4fd47c0f19e842f6702b7f55c313ec4ee6c805b", + "fields": { + "ligne_5": "DANCE", + "code_commune_insee": "61309", + "libelle_d_acheminement": "PERCHE EN NOCE", + "code_postal": "61340", + "nom_de_la_commune": "PERCHE EN NOCE", + "coordonnees_gps": [ + 48.3808259058, + 0.686799351677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.686799351677, + 48.3808259058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d9d6423adaf3d0d3c3eef897fb9b578bf995282", + "fields": { + "code_commune_insee": "61317", + "nom_de_la_commune": "ORGERES", + "code_postal": "61230", + "coordonnees_gps": [ + 48.752506479, + 0.3456805156 + ], + "libelle_d_acheminement": "ORGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.3456805156, + 48.752506479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "737acedf61ecdb64b7ab850decdd2f50e5be0227", + "fields": { + "code_commune_insee": "61322", + "nom_de_la_commune": "PARFONDEVAL", + "code_postal": "61400", + "coordonnees_gps": [ + 48.4800875172, + 0.506050858158 + ], + "libelle_d_acheminement": "PARFONDEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.506050858158, + 48.4800875172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f56013bd9499e868ac222b415105446c171c3d7", + "fields": { + "code_commune_insee": "61323", + "nom_de_la_commune": "LE PAS ST L HOMER", + "code_postal": "61290", + "coordonnees_gps": [ + 48.4935203875, + 0.928175992686 + ], + "libelle_d_acheminement": "LE PAS ST L HOMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.928175992686, + 48.4935203875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "361ff458ada9944feeafa28d11721d4d4bc8f2e1", + "fields": { + "ligne_5": "CHENEDOUIT", + "code_commune_insee": "61339", + "libelle_d_acheminement": "PUTANGES LE LAC", + "code_postal": "61210", + "nom_de_la_commune": "PUTANGES LE LAC", + "coordonnees_gps": [ + 48.766449668, + -0.252215702706 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.252215702706, + 48.766449668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "138ae98179a2486015e771c1dd6cf845f268506e", + "fields": { + "ligne_5": "MENIL JEAN", + "code_commune_insee": "61339", + "libelle_d_acheminement": "PUTANGES LE LAC", + "code_postal": "61210", + "nom_de_la_commune": "PUTANGES LE LAC", + "coordonnees_gps": [ + 48.766449668, + -0.252215702706 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.252215702706, + 48.766449668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0e99dc2fde6f220fa8af81edeeb5e11e185f4cb", + "fields": { + "ligne_5": "RABODANGES", + "code_commune_insee": "61339", + "libelle_d_acheminement": "PUTANGES LE LAC", + "code_postal": "61210", + "nom_de_la_commune": "PUTANGES LE LAC", + "coordonnees_gps": [ + 48.766449668, + -0.252215702706 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.252215702706, + 48.766449668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4927b25b7be032cfed5bd8b16bab8075e98fd815", + "fields": { + "ligne_5": "DORCEAU", + "code_commune_insee": "61345", + "libelle_d_acheminement": "REMALARD EN PERCHE", + "code_postal": "61110", + "nom_de_la_commune": "REMALARD EN PERCHE", + "coordonnees_gps": [ + 48.4498027895, + 0.77912800072 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77912800072, + 48.4498027895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3eeb910fed8d164c7f37cd1533305e3ca7189b1e", + "fields": { + "ligne_5": "REMALARD", + "code_commune_insee": "61345", + "libelle_d_acheminement": "REMALARD EN PERCHE", + "code_postal": "61110", + "nom_de_la_commune": "REMALARD EN PERCHE", + "coordonnees_gps": [ + 48.4498027895, + 0.77912800072 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77912800072, + 48.4498027895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fc26f36498ae7354637f2debb4faed8278ec1fb", + "fields": { + "code_commune_insee": "61347", + "nom_de_la_commune": "RESENLIEU", + "code_postal": "61230", + "coordonnees_gps": [ + 48.7900887821, + 0.276930426076 + ], + "libelle_d_acheminement": "RESENLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.276930426076, + 48.7900887821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62cb00821a9f073bf017b34cef28ee1d04650255", + "fields": { + "code_commune_insee": "61363", + "nom_de_la_commune": "ST AQUILIN DE CORBION", + "code_postal": "61380", + "coordonnees_gps": [ + 48.6410212867, + 0.527395250129 + ], + "libelle_d_acheminement": "ST AQUILIN DE CORBION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.527395250129, + 48.6410212867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15709e45935a7501efaeea803f0e6a379feecb1e", + "fields": { + "code_commune_insee": "61366", + "nom_de_la_commune": "ST AUBIN DE BONNEVAL", + "code_postal": "61470", + "coordonnees_gps": [ + 48.9491057689, + 0.371524010487 + ], + "libelle_d_acheminement": "ST AUBIN DE BONNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.371524010487, + 48.9491057689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87a420ae874e19bfc11ed7114eaede3a540fd163", + "fields": { + "code_commune_insee": "61367", + "nom_de_la_commune": "ST AUBIN DE COURTERAIE", + "code_postal": "61560", + "coordonnees_gps": [ + 48.6087873617, + 0.452912112698 + ], + "libelle_d_acheminement": "ST AUBIN DE COURTERAIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.452912112698, + 48.6087873617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6b076f6650ca4363b80a384768bd2a60a7867f0", + "fields": { + "code_commune_insee": "61372", + "nom_de_la_commune": "ST CENERI LE GEREI", + "code_postal": "61250", + "coordonnees_gps": [ + 48.389040252, + -0.0400378632747 + ], + "libelle_d_acheminement": "ST CENERI LE GEREI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0400378632747, + 48.389040252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "489a9de43c9d69be0cf5e255bc53e1705d6fce53", + "fields": { + "code_commune_insee": "61373", + "nom_de_la_commune": "STE CERONNE LES MORTAGNE", + "code_postal": "61380", + "coordonnees_gps": [ + 48.5864346163, + 0.525562208998 + ], + "libelle_d_acheminement": "STE CERONNE LES MORTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.525562208998, + 48.5864346163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "762f0ea4477a81f96c61f2a9d528b8d0f46f0e2b", + "fields": { + "code_commune_insee": "61375", + "nom_de_la_commune": "BOISCHAMPRE", + "code_postal": "61570", + "coordonnees_gps": [ + 48.656618574, + 0.00188165114275 + ], + "libelle_d_acheminement": "BOISCHAMPRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00188165114275, + 48.656618574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c1a90c1c300e1a3a4b022722d9bc97f59de471f", + "fields": { + "ligne_5": "VRIGNY", + "code_commune_insee": "61375", + "libelle_d_acheminement": "BOISCHAMPRE", + "code_postal": "61570", + "nom_de_la_commune": "BOISCHAMPRE", + "coordonnees_gps": [ + 48.656618574, + 0.00188165114275 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00188165114275, + 48.656618574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e562f025ad84e4950d1b4e3febf8ea7ea4678e7a", + "fields": { + "code_commune_insee": "61385", + "nom_de_la_commune": "ST EVROULT DE MONTFORT", + "code_postal": "61230", + "coordonnees_gps": [ + 48.8122960586, + 0.312765377399 + ], + "libelle_d_acheminement": "ST EVROULT DE MONTFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.312765377399, + 48.8122960586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d899c9854648dea4a4f2f1423ff8997550956bd7", + "fields": { + "code_commune_insee": "61388", + "nom_de_la_commune": "ST FULGENT DES ORMES", + "code_postal": "61130", + "coordonnees_gps": [ + 48.3204406534, + 0.453059277552 + ], + "libelle_d_acheminement": "ST FULGENT DES ORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.453059277552, + 48.3204406534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fcc2d13c983c8b51780dda8f12e04fcf15efb13", + "fields": { + "code_commune_insee": "61396", + "nom_de_la_commune": "ST GERMAIN DE MARTIGNY", + "code_postal": "61560", + "coordonnees_gps": [ + 48.5873936203, + 0.467132104726 + ], + "libelle_d_acheminement": "ST GERMAIN DE MARTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.467132104726, + 48.5873936203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2eb495e852ad1c1eadf2ee6a61c0c1398f1b3c0", + "fields": { + "code_commune_insee": "61402", + "nom_de_la_commune": "ST HILAIRE DE BRIOUZE", + "code_postal": "61220", + "coordonnees_gps": [ + 48.7072968061, + -0.30765966543 + ], + "libelle_d_acheminement": "ST HILAIRE DE BRIOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30765966543, + 48.7072968061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26d5a227864a2a29a06f9b77100141f49672454b", + "fields": { + "code_commune_insee": "61412", + "nom_de_la_commune": "ST JULIEN SUR SARTHE", + "code_postal": "61170", + "coordonnees_gps": [ + 48.4899708762, + 0.37342953932 + ], + "libelle_d_acheminement": "ST JULIEN SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37342953932, + 48.4899708762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1e92cb6b2e8a90b38829d5d8c1c59c82ca8d1d1", + "fields": { + "code_commune_insee": "61413", + "nom_de_la_commune": "ST LAMBERT SUR DIVE", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8296369621, + 0.0905725341208 + ], + "libelle_d_acheminement": "ST LAMBERT SUR DIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0905725341208, + 48.8296369621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c940d914ba84212ee5e191664b02cac4ae6350c", + "fields": { + "code_commune_insee": "61414", + "nom_de_la_commune": "ST LANGIS LES MORTAGNE", + "code_postal": "61400", + "coordonnees_gps": [ + 48.5098568869, + 0.531729896693 + ], + "libelle_d_acheminement": "ST LANGIS LES MORTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.531729896693, + 48.5098568869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccbbcaf7d5869bde460381628b1170a64a05b6d8", + "fields": { + "code_commune_insee": "61415", + "nom_de_la_commune": "ST LEGER SUR SARTHE", + "code_postal": "61170", + "coordonnees_gps": [ + 48.495044339, + 0.316782029384 + ], + "libelle_d_acheminement": "ST LEGER SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.316782029384, + 48.495044339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e82ae95a70d7960b281e1d9063f8ea6c90d73c2e", + "fields": { + "code_commune_insee": "61420", + "nom_de_la_commune": "STE MARIE LA ROBERT", + "code_postal": "61320", + "coordonnees_gps": [ + 48.6261229757, + -0.143899474106 + ], + "libelle_d_acheminement": "STE MARIE LA ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.143899474106, + 48.6261229757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27d9e9a080ee72ffc37f7db0627a2e4c632c201a", + "fields": { + "code_commune_insee": "61424", + "nom_de_la_commune": "ST MARTIN DES LANDES", + "code_postal": "61320", + "coordonnees_gps": [ + 48.546237837, + -0.156413785136 + ], + "libelle_d_acheminement": "ST MARTIN DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.156413785136, + 48.546237837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e55c739c0573bb6645f43074db52bba038abaf1", + "fields": { + "code_commune_insee": "61432", + "nom_de_la_commune": "ST MICHEL TUBOEUF", + "code_postal": "61300", + "coordonnees_gps": [ + 48.7538911269, + 0.686562165438 + ], + "libelle_d_acheminement": "ST MICHEL TUBOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.686562165438, + 48.7538911269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1392a97855ae5d0a63ed8c203c5c9d7da90009ba", + "fields": { + "code_commune_insee": "61438", + "nom_de_la_commune": "ST OUEN DE SECHEROUVRE", + "code_postal": "61560", + "coordonnees_gps": [ + 48.5987945928, + 0.492195334785 + ], + "libelle_d_acheminement": "ST OUEN DE SECHEROUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.492195334785, + 48.5987945928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26012d92b82c142f0a995045014e13fca18f8f5b", + "fields": { + "code_commune_insee": "61450", + "nom_de_la_commune": "ST QUENTIN DE BLAVOU", + "code_postal": "61360", + "coordonnees_gps": [ + 48.4792330263, + 0.418725497105 + ], + "libelle_d_acheminement": "ST QUENTIN DE BLAVOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.418725497105, + 48.4792330263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fa70f5b8670b547e8c1d719d88921740f2f042b", + "fields": { + "code_commune_insee": "61453", + "nom_de_la_commune": "ST SAUVEUR DE CARROUGES", + "code_postal": "61320", + "coordonnees_gps": [ + 48.589499718, + -0.109356192251 + ], + "libelle_d_acheminement": "ST SAUVEUR DE CARROUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109356192251, + 48.589499718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22636c0202b822b85a177429006a5fd64022e5b4", + "fields": { + "code_commune_insee": "61457", + "nom_de_la_commune": "ST SYMPHORIEN DES BRUYERES", + "code_postal": "61300", + "coordonnees_gps": [ + 48.7864528297, + 0.557396047758 + ], + "libelle_d_acheminement": "ST SYMPHORIEN DES BRUYERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.557396047758, + 48.7864528297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b62a3606dd84ab70a682427d07761e6daafe5779", + "fields": { + "ligne_5": "LA SAUVAGERE", + "code_commune_insee": "61463", + "libelle_d_acheminement": "LES MONTS D ANDAINE", + "code_postal": "61600", + "nom_de_la_commune": "LES MONTS D ANDAINE", + "coordonnees_gps": [ + 48.6127467342, + -0.435491688539 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.435491688539, + 48.6127467342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33d4c212541c01248f6cacdcd4b79b80bcc0c1ac", + "fields": { + "code_commune_insee": "61473", + "nom_de_la_commune": "SEVRAI", + "code_postal": "61150", + "coordonnees_gps": [ + 48.7048584232, + -0.151545774151 + ], + "libelle_d_acheminement": "SEVRAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.151545774151, + 48.7048584232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56eaffbb0a7a52a0cfee6528264e6f4ef7485a55", + "fields": { + "ligne_5": "UROU ET CRENNES", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61200", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53bc4730aa485fee453f349625f3c7bf56cb55fb", + "fields": { + "ligne_5": "ST PIERRE LA RIVIERE", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61310", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72deae729bda7710ae5e87d28272194d4bb94ff7", + "fields": { + "ligne_5": "SURVIE", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61310", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b35d867f7bc9d2d008117ad060a0edbd5885b10", + "fields": { + "code_commune_insee": "61476", + "nom_de_la_commune": "SURE", + "code_postal": "61360", + "coordonnees_gps": [ + 48.3689914648, + 0.406327878358 + ], + "libelle_d_acheminement": "SURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.406327878358, + 48.3689914648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e6e410d02968abce969e4e6d2413780c4533bdf", + "fields": { + "ligne_5": "ST MICHEL DES ANDAINES", + "code_commune_insee": "61483", + "libelle_d_acheminement": "BAGNOLES DE L ORNE NORMANDIE", + "code_postal": "61600", + "nom_de_la_commune": "BAGNOLES DE L ORNE NORMANDIE", + "coordonnees_gps": [ + 48.5556585202, + -0.419510749596 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.419510749596, + 48.5556585202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02531880de903b0232865ddbf4069b4f25a3fbff", + "fields": { + "ligne_5": "L HERMITIERE", + "code_commune_insee": "61484", + "libelle_d_acheminement": "VAL AU PERCHE", + "code_postal": "61260", + "nom_de_la_commune": "VAL AU PERCHE", + "coordonnees_gps": [ + 48.2676940084, + 0.650909010002 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.650909010002, + 48.2676940084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fb497966ee1a8b0300b97d6e3200407249ad381", + "fields": { + "ligne_5": "ST CORNIER DES LANDES", + "code_commune_insee": "61486", + "libelle_d_acheminement": "TINCHEBRAY BOCAGE", + "code_postal": "61800", + "nom_de_la_commune": "TINCHEBRAY BOCAGE", + "coordonnees_gps": [ + 48.7558885792, + -0.736451200504 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.736451200504, + 48.7558885792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e08d1126f9a5a856c32ba272e9e3a09580338ac8", + "fields": { + "code_commune_insee": "61488", + "nom_de_la_commune": "TOUQUETTES", + "code_postal": "61550", + "coordonnees_gps": [ + 48.7969098748, + 0.414530174127 + ], + "libelle_d_acheminement": "TOUQUETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.414530174127, + 48.7969098748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3d23c8f811b1a87d45d910bb179f118a4341c1e", + "fields": { + "code_commune_insee": "61490", + "nom_de_la_commune": "TOURNAI SUR DIVE", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8106770801, + 0.0439108281261 + ], + "libelle_d_acheminement": "TOURNAI SUR DIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0439108281261, + 48.8106770801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "318910c875f56cf3345a2cfd7693dbc51d4a5692", + "fields": { + "ligne_5": "LA POTERIE AU PERCHE", + "code_commune_insee": "61491", + "libelle_d_acheminement": "TOUROUVRE AU PERCHE", + "code_postal": "61190", + "nom_de_la_commune": "TOUROUVRE AU PERCHE", + "coordonnees_gps": [ + 48.5889926319, + 0.659944291667 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659944291667, + 48.5889926319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3c3477fa80de07bc1ee4fba4bb8cd8e15d550dd", + "fields": { + "code_commune_insee": "61493", + "nom_de_la_commune": "LA TRINITE DES LAITIERS", + "code_postal": "61230", + "coordonnees_gps": [ + 48.8014157498, + 0.379968041831 + ], + "libelle_d_acheminement": "LA TRINITE DES LAITIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.379968041831, + 48.8014157498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cda978f6553e154a923e99c7df45d7d82f487cf", + "fields": { + "code_commune_insee": "61499", + "nom_de_la_commune": "LES VENTES DE BOURSE", + "code_postal": "61170", + "coordonnees_gps": [ + 48.5065515464, + 0.266487058191 + ], + "libelle_d_acheminement": "LES VENTES DE BOURSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.266487058191, + 48.5065515464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fda9367ab8580b0a8c4d1ba55e8d98a29a8442c1", + "fields": { + "code_commune_insee": "61502", + "nom_de_la_commune": "VIDAI", + "code_postal": "61360", + "coordonnees_gps": [ + 48.4602912292, + 0.376581458211 + ], + "libelle_d_acheminement": "VIDAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.376581458211, + 48.4602912292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "089dd4e7edbcd7a97da887eb33848fa0f87062da", + "fields": { + "code_commune_insee": "61510", + "nom_de_la_commune": "VITRAI SOUS LAIGLE", + "code_postal": "61300", + "coordonnees_gps": [ + 48.716086064, + 0.709251455452 + ], + "libelle_d_acheminement": "VITRAI SOUS LAIGLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.709251455452, + 48.716086064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9d3fa1d0c1ef74776361f5ae3ff198157d18402", + "fields": { + "code_commune_insee": "61512", + "nom_de_la_commune": "LES YVETEAUX", + "code_postal": "61210", + "coordonnees_gps": [ + 48.7089293788, + -0.270231852035 + ], + "libelle_d_acheminement": "LES YVETEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.270231852035, + 48.7089293788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce988df1417eb08e21a08051f03eb9059a4e1a0a", + "fields": { + "code_commune_insee": "62002", + "nom_de_la_commune": "ABLAINZEVELLE", + "code_postal": "62116", + "coordonnees_gps": [ + 50.153659552, + 2.74147361096 + ], + "libelle_d_acheminement": "ABLAINZEVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74147361096, + 50.153659552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fadede1768002c45baf775333338b1666d9b56c2", + "fields": { + "code_commune_insee": "62004", + "nom_de_la_commune": "ACHICOURT", + "code_postal": "62217", + "coordonnees_gps": [ + 50.272283128, + 2.75614634271 + ], + "libelle_d_acheminement": "ACHICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75614634271, + 50.272283128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a1d839d93f250c9553025f8f88bfe0c12668a82", + "fields": { + "code_commune_insee": "62024", + "nom_de_la_commune": "ALQUINES", + "code_postal": "62850", + "coordonnees_gps": [ + 50.7335685811, + 1.99279258078 + ], + "libelle_d_acheminement": "ALQUINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99279258078, + 50.7335685811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc551cec1776e3e71616a7a96da17c9046d2a855", + "fields": { + "code_commune_insee": "62026", + "nom_de_la_commune": "AMBRICOURT", + "code_postal": "62310", + "coordonnees_gps": [ + 50.4655698983, + 2.17120117891 + ], + "libelle_d_acheminement": "AMBRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17120117891, + 50.4655698983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51cae2b7b6d7ad22849e022ef506709604bc7c48", + "fields": { + "code_commune_insee": "62031", + "nom_de_la_commune": "ANDRES", + "code_postal": "62340", + "coordonnees_gps": [ + 50.8658312835, + 1.91824266934 + ], + "libelle_d_acheminement": "ANDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91824266934, + 50.8658312835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29addac9c3485172f629c3549d3e296ff0e1a709", + "fields": { + "code_commune_insee": "62039", + "nom_de_la_commune": "ARLEUX EN GOHELLE", + "code_postal": "62580", + "coordonnees_gps": [ + 50.3643664042, + 2.86961289041 + ], + "libelle_d_acheminement": "ARLEUX EN GOHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86961289041, + 50.3643664042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e727e6649500def20a8943475a1e1ab8cd49f2a", + "fields": { + "code_commune_insee": "62048", + "nom_de_la_commune": "AUCHEL", + "code_postal": "62260", + "coordonnees_gps": [ + 50.5103339678, + 2.4687078329 + ], + "libelle_d_acheminement": "AUCHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4687078329, + 50.5103339678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48d9160c62ef74ccf1827873672a2fd9af0c9420", + "fields": { + "code_commune_insee": "62051", + "nom_de_la_commune": "AUCHY LES MINES", + "code_postal": "62138", + "coordonnees_gps": [ + 50.505827034, + 2.78113489948 + ], + "libelle_d_acheminement": "AUCHY LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78113489948, + 50.505827034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d634f7a8e8be560e676baa39aa89edef6350fbf5", + "fields": { + "code_commune_insee": "62068", + "nom_de_la_commune": "AYETTE", + "code_postal": "62116", + "coordonnees_gps": [ + 50.1699222305, + 2.73263282673 + ], + "libelle_d_acheminement": "AYETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73263282673, + 50.1699222305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db275a8025da256122d14f59a8eeafe5d5fc4dcc", + "fields": { + "code_commune_insee": "62084", + "nom_de_la_commune": "BARLY", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2482462373, + 2.53846548292 + ], + "libelle_d_acheminement": "BARLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53846548292, + 50.2482462373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1affebd9ff14444e9a430bed92f6b446e702790b", + "fields": { + "code_commune_insee": "62087", + "nom_de_la_commune": "BAYENGHEM LES EPERLECQUES", + "code_postal": "62910", + "coordonnees_gps": [ + 50.8060919083, + 2.11581614167 + ], + "libelle_d_acheminement": "BAYENGHEM LES EPERLECQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11581614167, + 50.8060919083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "194315ce7279596ae187813a4df760ae4df89389", + "fields": { + "code_commune_insee": "62100", + "nom_de_la_commune": "BEAURAINVILLE", + "code_postal": "62990", + "coordonnees_gps": [ + 50.4202171445, + 1.90313818619 + ], + "libelle_d_acheminement": "BEAURAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90313818619, + 50.4202171445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "425590cdb220d9f5d21f7dd1c4563953f1a643a7", + "fields": { + "code_commune_insee": "62101", + "nom_de_la_commune": "BEAUVOIS", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3742414369, + 2.23430985863 + ], + "libelle_d_acheminement": "BEAUVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23430985863, + 50.3742414369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b8d19f4183da856d27eaad5a4a28c7feeea6bfb", + "fields": { + "code_commune_insee": "62102", + "nom_de_la_commune": "BECOURT", + "code_postal": "62240", + "coordonnees_gps": [ + 50.6398225963, + 1.90227068236 + ], + "libelle_d_acheminement": "BECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90227068236, + 50.6398225963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2b67edc0f9a977e95f77717dd23eb8e870b41eb", + "fields": { + "code_commune_insee": "62109", + "nom_de_la_commune": "BERGUENEUSE", + "code_postal": "62134", + "coordonnees_gps": [ + 50.4662361395, + 2.24867928273 + ], + "libelle_d_acheminement": "BERGUENEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24867928273, + 50.4662361395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d3e3606e76578eb9f50487cb4587553ffb39a0c", + "fields": { + "code_commune_insee": "62111", + "nom_de_la_commune": "BERLENCOURT LE CAUROY", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2733690161, + 2.42347894966 + ], + "libelle_d_acheminement": "BERLENCOURT LE CAUROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42347894966, + 50.2733690161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "747cb5fd4f4bab2614541e86c93600c7ca110635", + "fields": { + "code_commune_insee": "62121", + "nom_de_la_commune": "BEUGNATRE", + "code_postal": "62450", + "coordonnees_gps": [ + 50.1322737737, + 2.87602272016 + ], + "libelle_d_acheminement": "BEUGNATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87602272016, + 50.1322737737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24a747549469796abed8a75afbaee8b2137d39b4", + "fields": { + "code_commune_insee": "62124", + "nom_de_la_commune": "BEUTIN", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4967718151, + 1.72676548576 + ], + "libelle_d_acheminement": "BEUTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72676548576, + 50.4967718151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4fea6848cc0df4efd6f104e9f7de5f45be00dec", + "fields": { + "code_commune_insee": "62132", + "nom_de_la_commune": "BILLY BERCLAU", + "code_postal": "62138", + "coordonnees_gps": [ + 50.5196248764, + 2.86674896884 + ], + "libelle_d_acheminement": "BILLY BERCLAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86674896884, + 50.5196248764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7440f8e4b3ed7616e2be2667a1ec7557851e9b29", + "fields": { + "code_commune_insee": "62133", + "nom_de_la_commune": "BILLY MONTIGNY", + "code_postal": "62420", + "coordonnees_gps": [ + 50.4151791054, + 2.90828984537 + ], + "libelle_d_acheminement": "BILLY MONTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90828984537, + 50.4151791054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e2d9425f4203f8567d2947ec788c7337e4636e2", + "fields": { + "code_commune_insee": "62142", + "nom_de_la_commune": "BLINGEL", + "code_postal": "62770", + "coordonnees_gps": [ + 50.4051757793, + 2.15016843833 + ], + "libelle_d_acheminement": "BLINGEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15016843833, + 50.4051757793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "901fe4f73e376414b1606c6493e824324dcc5096", + "fields": { + "code_commune_insee": "62153", + "nom_de_la_commune": "BOMY", + "code_postal": "62960", + "coordonnees_gps": [ + 50.5693776323, + 2.22407829439 + ], + "libelle_d_acheminement": "BOMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22407829439, + 50.5693776323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ab691c372e2fcd34c45fad214aac9fe2d0a2ad1", + "fields": { + "code_commune_insee": "62163", + "nom_de_la_commune": "BOURET SUR CANCHE", + "code_postal": "62270", + "coordonnees_gps": [ + 50.2684109099, + 2.32331979143 + ], + "libelle_d_acheminement": "BOURET SUR CANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32331979143, + 50.2684109099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac2ffb7495279dd1a4ffdf2e6ca5dab955913543", + "fields": { + "code_commune_insee": "62171", + "nom_de_la_commune": "BOYAVAL", + "code_postal": "62134", + "coordonnees_gps": [ + 50.4727096061, + 2.31189396331 + ], + "libelle_d_acheminement": "BOYAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31189396331, + 50.4727096061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e12640c63e3f7efe737508a6b206baaf2a1100bd", + "fields": { + "code_commune_insee": "62175", + "nom_de_la_commune": "BREVILLERS", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3473733228, + 2.02124878449 + ], + "libelle_d_acheminement": "BREVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02124878449, + 50.3473733228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbfe16253b662be6e2f4a8e2394d83efc13e10d4", + "fields": { + "ligne_5": "LABUISSIERE", + "code_commune_insee": "62178", + "libelle_d_acheminement": "BRUAY LA BUISSIERE", + "code_postal": "62700", + "nom_de_la_commune": "BRUAY LA BUISSIERE", + "coordonnees_gps": [ + 50.4903167839, + 2.55205338028 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55205338028, + 50.4903167839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8237ef558fb60bbfa2f974333e03220af8a09a81", + "fields": { + "code_commune_insee": "62185", + "nom_de_la_commune": "BULLECOURT", + "code_postal": "62128", + "coordonnees_gps": [ + 50.1927400368, + 2.92876143561 + ], + "libelle_d_acheminement": "BULLECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92876143561, + 50.1927400368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a111bd7911d643119116cf009269a1f193c9db5", + "fields": { + "code_commune_insee": "62191", + "nom_de_la_commune": "CAFFIERS", + "code_postal": "62132", + "coordonnees_gps": [ + 50.843543317, + 1.81075267365 + ], + "libelle_d_acheminement": "CAFFIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81075267365, + 50.843543317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "588336010639caad831930c51f4d274514c74a80", + "fields": { + "code_commune_insee": "62192", + "nom_de_la_commune": "CAGNICOURT", + "code_postal": "62182", + "coordonnees_gps": [ + 50.2082287456, + 2.99387065458 + ], + "libelle_d_acheminement": "CAGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99387065458, + 50.2082287456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b15ce910bd63e65bff2ec27cd8e8c07ef3ce9b50", + "fields": { + "code_commune_insee": "62198", + "nom_de_la_commune": "CAMBLIGNEUL", + "code_postal": "62690", + "coordonnees_gps": [ + 50.3796063239, + 2.61054254507 + ], + "libelle_d_acheminement": "CAMBLIGNEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61054254507, + 50.3796063239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a54c4c975834f89649caa911678567b01bf0ca7", + "fields": { + "ligne_5": "STE CECILE", + "code_commune_insee": "62201", + "libelle_d_acheminement": "CAMIERS", + "code_postal": "62176", + "nom_de_la_commune": "CAMIERS", + "coordonnees_gps": [ + 50.5641187027, + 1.61276179612 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61276179612, + 50.5641187027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40f6109a03e6da1693074bd89367a0785dccf5dd", + "fields": { + "code_commune_insee": "62203", + "nom_de_la_commune": "CAMPAGNE LES GUINES", + "code_postal": "62340", + "coordonnees_gps": [ + 50.8407555351, + 1.89853626716 + ], + "libelle_d_acheminement": "CAMPAGNE LES GUINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89853626716, + 50.8407555351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06006d4f098d619cf6618c9146f875c1b4a05717", + "fields": { + "code_commune_insee": "62211", + "nom_de_la_commune": "CAPELLE FERMONT", + "code_postal": "62690", + "coordonnees_gps": [ + 50.3456037658, + 2.61751195169 + ], + "libelle_d_acheminement": "CAPELLE FERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61751195169, + 50.3456037658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc4fd22c593903f7ee87397dc996cd7b97fc6492", + "fields": { + "code_commune_insee": "62214", + "nom_de_la_commune": "CARLY", + "code_postal": "62830", + "coordonnees_gps": [ + 50.6548213012, + 1.71112187076 + ], + "libelle_d_acheminement": "CARLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71112187076, + 50.6548213012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "241bad0caab1e092ad32feae23911d2a1b9a8c5b", + "fields": { + "code_commune_insee": "62234", + "nom_de_la_commune": "CONCHY SUR CANCHE", + "code_postal": "62270", + "coordonnees_gps": [ + 50.2932943413, + 2.19176240414 + ], + "libelle_d_acheminement": "CONCHY SUR CANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19176240414, + 50.2932943413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d18c2899c509ff29ffd65304f846907cea38ff03", + "fields": { + "code_commune_insee": "62235", + "nom_de_la_commune": "CONDETTE", + "code_postal": "62360", + "coordonnees_gps": [ + 50.6499272537, + 1.63946214432 + ], + "libelle_d_acheminement": "CONDETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63946214432, + 50.6499272537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "763598bcff497855a71fef544a3a471e04fcc890", + "fields": { + "code_commune_insee": "62238", + "nom_de_la_commune": "CONTEVILLE EN TERNOIS", + "code_postal": "62130", + "coordonnees_gps": [ + 50.4329844864, + 2.32879432412 + ], + "libelle_d_acheminement": "CONTEVILLE EN TERNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32879432412, + 50.4329844864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef5e471518bd1008ec7564f258b9456d731a6ec2", + "fields": { + "code_commune_insee": "62239", + "nom_de_la_commune": "COQUELLES", + "code_postal": "62231", + "coordonnees_gps": [ + 50.929612545, + 1.81411630613 + ], + "libelle_d_acheminement": "COQUELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81411630613, + 50.929612545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0c229c8238ec213a10ba8d21a8c4d2089113943", + "fields": { + "code_commune_insee": "62242", + "nom_de_la_commune": "COUIN", + "code_postal": "62760", + "coordonnees_gps": [ + 50.133455749, + 2.53396562717 + ], + "libelle_d_acheminement": "COUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53396562717, + 50.133455749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3014cb61c9303aa8b70b19b5993f9bb64055f656", + "fields": { + "code_commune_insee": "62257", + "nom_de_la_commune": "CREQUY", + "code_postal": "62310", + "coordonnees_gps": [ + 50.5028112008, + 2.03862864649 + ], + "libelle_d_acheminement": "CREQUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03862864649, + 50.5028112008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5a396c21fe665cb66af51254771e0f9504fd538", + "fields": { + "code_commune_insee": "62267", + "nom_de_la_commune": "DENNEBROEUCQ", + "code_postal": "62560", + "coordonnees_gps": [ + 50.5841623425, + 2.15571582187 + ], + "libelle_d_acheminement": "DENNEBROEUCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15571582187, + 50.5841623425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05dca7937ad4852709aaef1c541bb2e91d250846", + "fields": { + "code_commune_insee": "62268", + "nom_de_la_commune": "DESVRES", + "code_postal": "62240", + "coordonnees_gps": [ + 50.6749344627, + 1.82879354348 + ], + "libelle_d_acheminement": "DESVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82879354348, + 50.6749344627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45076341b38ddd5a761fc39b28bad84a7e129d4e", + "fields": { + "code_commune_insee": "62270", + "nom_de_la_commune": "DIVION", + "code_postal": "62460", + "coordonnees_gps": [ + 50.4697599295, + 2.50465277071 + ], + "libelle_d_acheminement": "DIVION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50465277071, + 50.4697599295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bff0c0f11cda4349958aa3a12e96dccfefeed759", + "fields": { + "code_commune_insee": "62277", + "nom_de_la_commune": "DROCOURT", + "code_postal": "62320", + "coordonnees_gps": [ + 50.3900419812, + 2.93220470295 + ], + "libelle_d_acheminement": "DROCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93220470295, + 50.3900419812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07acbc43d707bfc7baab85e42cf8cdd00f29df55", + "fields": { + "code_commune_insee": "62280", + "nom_de_la_commune": "DURY", + "code_postal": "62156", + "coordonnees_gps": [ + 50.2481728938, + 3.00391068828 + ], + "libelle_d_acheminement": "DURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00391068828, + 50.2481728938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "900970a3779e8a331fd158dab1193c5cab3b4a18", + "fields": { + "code_commune_insee": "62285", + "nom_de_la_commune": "ECOUST ST MEIN", + "code_postal": "62128", + "coordonnees_gps": [ + 50.1738217586, + 2.90196588934 + ], + "libelle_d_acheminement": "ECOUST ST MEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90196588934, + 50.1738217586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "916cc4183b72abb923f3ace432f2964791d7c014", + "fields": { + "code_commune_insee": "62298", + "nom_de_la_commune": "EPINOY", + "code_postal": "62860", + "coordonnees_gps": [ + 50.2312654081, + 3.15940386461 + ], + "libelle_d_acheminement": "EPINOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15940386461, + 50.2312654081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dbb1cceb0e134c8be0dc3833882ad42b313fe52", + "fields": { + "code_commune_insee": "62299", + "nom_de_la_commune": "EPS", + "code_postal": "62134", + "coordonnees_gps": [ + 50.4548816215, + 2.29608712353 + ], + "libelle_d_acheminement": "EPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29608712353, + 50.4548816215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4170daa5ebe12fc821efff970e5c34a9bd676659", + "fields": { + "code_commune_insee": "62300", + "nom_de_la_commune": "EQUIHEN PLAGE", + "code_postal": "62224", + "coordonnees_gps": [ + 50.6793131074, + 1.57627344046 + ], + "libelle_d_acheminement": "EQUIHEN PLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57627344046, + 50.6793131074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2576ad19e9e8725e181ee6e7dac78d207c0b32ac", + "fields": { + "code_commune_insee": "62302", + "nom_de_la_commune": "ERGNY", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5887514874, + 1.97473205888 + ], + "libelle_d_acheminement": "ERGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97473205888, + 50.5887514874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5481739719c061d716932ef88bd59dbf05d2184", + "fields": { + "code_commune_insee": "62328", + "nom_de_la_commune": "FERFAY", + "code_postal": "62260", + "coordonnees_gps": [ + 50.521404257, + 2.43125603761 + ], + "libelle_d_acheminement": "FERFAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43125603761, + 50.521404257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06b173fa97b4b549712301bf4a5ea971e3a278b7", + "fields": { + "code_commune_insee": "62343", + "nom_de_la_commune": "FONTAINE LES CROISILLES", + "code_postal": "62128", + "coordonnees_gps": [ + 50.2157524515, + 2.90436080494 + ], + "libelle_d_acheminement": "FONTAINE LES CROISILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90436080494, + 50.2157524515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "576eebb319983c5aa48d185c5679e29965821112", + "fields": { + "code_commune_insee": "62350", + "nom_de_la_commune": "FOUQUIERES LES BETHUNE", + "code_postal": "62232", + "coordonnees_gps": [ + 50.5124125189, + 2.61269523201 + ], + "libelle_d_acheminement": "FOUQUIERES LES BETHUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61269523201, + 50.5124125189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31629510fc5ec1b6333decb72b23ada66b4aea51", + "fields": { + "code_commune_insee": "62352", + "nom_de_la_commune": "FRAMECOURT", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3232859684, + 2.30531032543 + ], + "libelle_d_acheminement": "FRAMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30531032543, + 50.3232859684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da3087eac104358b55ed696f11e391565dd5e468", + "fields": { + "code_commune_insee": "62357", + "nom_de_la_commune": "FRESNOY", + "code_postal": "62770", + "coordonnees_gps": [ + 50.3739202398, + 2.13763944148 + ], + "libelle_d_acheminement": "FRESNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13763944148, + 50.3739202398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f38680d173d51d3ee5fb2fe25f7ae0e7b7abf007", + "fields": { + "code_commune_insee": "62374", + "nom_de_la_commune": "GOMIECOURT", + "code_postal": "62121", + "coordonnees_gps": [ + 50.1482444554, + 2.80012683443 + ], + "libelle_d_acheminement": "GOMIECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80012683443, + 50.1482444554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a1030fe00d2715deedfa9e5c17b63c963da6367", + "fields": { + "code_commune_insee": "62379", + "nom_de_la_commune": "GOUY EN ARTOIS", + "code_postal": "62123", + "coordonnees_gps": [ + 50.2427202396, + 2.59069547826 + ], + "libelle_d_acheminement": "GOUY EN ARTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59069547826, + 50.2427202396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc4dab37c58df8ad9c35e86ddd536015232a8fe6", + "fields": { + "code_commune_insee": "62383", + "nom_de_la_commune": "GOUY SOUS BELLONNE", + "code_postal": "62112", + "coordonnees_gps": [ + 50.3145124236, + 3.05826904717 + ], + "libelle_d_acheminement": "GOUY SOUS BELLONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05826904717, + 50.3145124236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf0369f0190f2930da9d11612b0e4e5b2e8efe6e", + "fields": { + "code_commune_insee": "62388", + "nom_de_la_commune": "GRIGNY", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3823543208, + 2.06358217112 + ], + "libelle_d_acheminement": "GRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06358217112, + 50.3823543208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1628ad2cb2279729afc0a7b8889728da5d9e0e4", + "fields": { + "code_commune_insee": "62395", + "nom_de_la_commune": "GUIGNY", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3280392669, + 1.99522776546 + ], + "libelle_d_acheminement": "GUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99522776546, + 50.3280392669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca90e14418d765531293a4685fcd827ea024f58", + "fields": { + "code_commune_insee": "62399", + "nom_de_la_commune": "HABARCQ", + "code_postal": "62123", + "coordonnees_gps": [ + 50.3112006109, + 2.60710466393 + ], + "libelle_d_acheminement": "HABARCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60710466393, + 50.3112006109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27343b78db597d70a9f5d99df1e01d9c9ca9072b", + "fields": { + "code_commune_insee": "62404", + "nom_de_la_commune": "HALLOY", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1614697022, + 2.42474392928 + ], + "libelle_d_acheminement": "HALLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42474392928, + 50.1614697022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "060548b3bdb6c4fd517618db30bb815880285f8f", + "fields": { + "code_commune_insee": "62411", + "nom_de_la_commune": "HARAVESNES", + "code_postal": "62390", + "coordonnees_gps": [ + 50.2847351527, + 2.12582011822 + ], + "libelle_d_acheminement": "HARAVESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12582011822, + 50.2847351527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ed9ea2444918222e0b8567d65b0dacd19d0c453", + "fields": { + "code_commune_insee": "62413", + "nom_de_la_commune": "HARNES", + "code_postal": "62440", + "coordonnees_gps": [ + 50.4516887565, + 2.90335898213 + ], + "libelle_d_acheminement": "HARNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90335898213, + 50.4516887565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e7aa6dd66a388c6ead241d4f6c9566031187e1d", + "fields": { + "code_commune_insee": "62421", + "nom_de_la_commune": "HAVRINCOURT", + "code_postal": "62147", + "coordonnees_gps": [ + 50.1006868952, + 3.07267779614 + ], + "libelle_d_acheminement": "HAVRINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07267779614, + 50.1006868952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83257916025280812a4f7b60d0da47fce9912894", + "fields": { + "code_commune_insee": "62423", + "nom_de_la_commune": "HELFAUT", + "code_postal": "62570", + "coordonnees_gps": [ + 50.6917027903, + 2.25015585426 + ], + "libelle_d_acheminement": "HELFAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25015585426, + 50.6917027903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "715488c5136978e5d043d0617a04aebaa5f82f98", + "fields": { + "code_commune_insee": "62426", + "nom_de_la_commune": "HENINEL", + "code_postal": "62128", + "coordonnees_gps": [ + 50.2331382255, + 2.87160951227 + ], + "libelle_d_acheminement": "HENINEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87160951227, + 50.2331382255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "151c5e7605c3a95dd8b65a9c6c4b54bb882f7f6a", + "fields": { + "code_commune_insee": "62432", + "nom_de_la_commune": "HERBINGHEN", + "code_postal": "62850", + "coordonnees_gps": [ + 50.7636525295, + 1.89780581848 + ], + "libelle_d_acheminement": "HERBINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89780581848, + 50.7636525295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3885c930c8d41fd17c6d7aaeba0fc6939f96dda3", + "fields": { + "code_commune_insee": "62437", + "nom_de_la_commune": "HERLY", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5415450848, + 1.99010495982 + ], + "libelle_d_acheminement": "HERLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99010495982, + 50.5415450848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a42b75950cc75e1d3be93362cd4e8c405a301ecd", + "fields": { + "code_commune_insee": "62439", + "nom_de_la_commune": "HERMELINGHEN", + "code_postal": "62132", + "coordonnees_gps": [ + 50.8043182752, + 1.86169968318 + ], + "libelle_d_acheminement": "HERMELINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86169968318, + 50.8043182752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e604dd3c18474ff0e095969d47cce05003f3d1a7", + "fields": { + "code_commune_insee": "62440", + "nom_de_la_commune": "HERMIES", + "code_postal": "62147", + "coordonnees_gps": [ + 50.1094195341, + 3.03670684063 + ], + "libelle_d_acheminement": "HERMIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03670684063, + 50.1094195341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b9c08aaf3e748fbb9d69585726ae814a71a7ee6", + "fields": { + "code_commune_insee": "62452", + "nom_de_la_commune": "HEURINGHEM", + "code_postal": "62575", + "coordonnees_gps": [ + 50.6957474078, + 2.29391988057 + ], + "libelle_d_acheminement": "HEURINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29391988057, + 50.6957474078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f08f1dc6629f81b0779ba9f01b217fed0530b7d", + "fields": { + "code_commune_insee": "62455", + "nom_de_la_commune": "HOCQUINGHEN", + "code_postal": "62850", + "coordonnees_gps": [ + 50.7669354784, + 1.93243678254 + ], + "libelle_d_acheminement": "HOCQUINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93243678254, + 50.7669354784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1a30a90cca2ea445b579a1314df8369b76d3882", + "fields": { + "code_commune_insee": "62462", + "nom_de_la_commune": "HUCLIER", + "code_postal": "62130", + "coordonnees_gps": [ + 50.4369559747, + 2.35470715306 + ], + "libelle_d_acheminement": "HUCLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35470715306, + 50.4369559747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "618eb904616d4e87a1d78bfdcf9399d6fd76d2a1", + "fields": { + "ligne_5": "HERBELLES", + "code_commune_insee": "62471", + "libelle_d_acheminement": "BELLINGHEM", + "code_postal": "62129", + "nom_de_la_commune": "BELLINGHEM", + "coordonnees_gps": [ + 50.6690392574, + 2.24271033014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24271033014, + 50.6690392574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "787c4303f87ed6b211336826ad111226c3926d9a", + "fields": { + "code_commune_insee": "62479", + "nom_de_la_commune": "LABEUVRIERE", + "code_postal": "62122", + "coordonnees_gps": [ + 50.5215621853, + 2.57161381831 + ], + "libelle_d_acheminement": "LABEUVRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57161381831, + 50.5215621853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd8a34a8517d9815ba5683e72aaad31ab7901ef4", + "fields": { + "code_commune_insee": "62481", + "nom_de_la_commune": "LABROYE", + "code_postal": "62140", + "coordonnees_gps": [ + 50.2935984532, + 1.98515419117 + ], + "libelle_d_acheminement": "LABROYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98515419117, + 50.2935984532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7fc5a834c9e8df5859c73d89843b69862c26dcd", + "fields": { + "code_commune_insee": "62483", + "nom_de_la_commune": "LACRES", + "code_postal": "62830", + "coordonnees_gps": [ + 50.6034546008, + 1.76197213447 + ], + "libelle_d_acheminement": "LACRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76197213447, + 50.6034546008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ccafd56651d6bb87dca7c0a8803955d62874181", + "fields": { + "code_commune_insee": "62485", + "nom_de_la_commune": "LAIRES", + "code_postal": "62960", + "coordonnees_gps": [ + 50.5378767018, + 2.25617757034 + ], + "libelle_d_acheminement": "LAIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25617757034, + 50.5378767018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55ef5e6f65d7e94a578765470bb9bb5032883d01", + "fields": { + "code_commune_insee": "62493", + "nom_de_la_commune": "LEBUCQUIERE", + "code_postal": "62124", + "coordonnees_gps": [ + 50.1099498863, + 2.95661100637 + ], + "libelle_d_acheminement": "LEBUCQUIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95661100637, + 50.1099498863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "461ab8adc9c7626866f94bcecad551f1a3e2f775", + "fields": { + "code_commune_insee": "62500", + "nom_de_la_commune": "LESPESSES", + "code_postal": "62190", + "coordonnees_gps": [ + 50.5552927057, + 2.42428623219 + ], + "libelle_d_acheminement": "LESPESSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42428623219, + 50.5552927057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dadf2bd6238d30797911e97c923a343a44082dea", + "fields": { + "code_commune_insee": "62507", + "nom_de_la_commune": "LIENCOURT", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2739197024, + 2.44860991608 + ], + "libelle_d_acheminement": "LIENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44860991608, + 50.2739197024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53cdbcb4ec1d57cb6c08f56177fff20ccc782a73", + "fields": { + "code_commune_insee": "62517", + "nom_de_la_commune": "LINGHEM", + "code_postal": "62120", + "coordonnees_gps": [ + 50.5897222044, + 2.37264094171 + ], + "libelle_d_acheminement": "LINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37264094171, + 50.5897222044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a06a613189a0a9f39cda2113d124fa1fa0822f2", + "fields": { + "code_commune_insee": "62519", + "nom_de_la_commune": "LISBOURG", + "code_postal": "62134", + "coordonnees_gps": [ + 50.5109473164, + 2.22306817225 + ], + "libelle_d_acheminement": "LISBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22306817225, + 50.5109473164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "712f87d86508a1408a01d579dcaf531307961407", + "fields": { + "code_commune_insee": "62520", + "nom_de_la_commune": "LOCON", + "code_postal": "62400", + "coordonnees_gps": [ + 50.570143515, + 2.66701720965 + ], + "libelle_d_acheminement": "LOCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66701720965, + 50.570143515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "062b25f34b1e1b43dcf33556f2a74c56c4a82c7f", + "fields": { + "code_commune_insee": "62522", + "nom_de_la_commune": "LOISON SUR CREQUOISE", + "code_postal": "62990", + "coordonnees_gps": [ + 50.4449700996, + 1.91909184151 + ], + "libelle_d_acheminement": "LOISON SUR CREQUOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91909184151, + 50.4449700996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93945c77b276ab3473294f8a2dfed0c9b00b541e", + "fields": { + "code_commune_insee": "62523", + "nom_de_la_commune": "LOISON SOUS LENS", + "code_postal": "62218", + "coordonnees_gps": [ + 50.4435308346, + 2.85832933206 + ], + "libelle_d_acheminement": "LOISON SOUS LENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85832933206, + 50.4435308346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28297e175f4cea59d30655adb3896f9eed350312", + "fields": { + "code_commune_insee": "62527", + "nom_de_la_commune": "LONGVILLIERS", + "code_postal": "62630", + "coordonnees_gps": [ + 50.5350281811, + 1.74349784296 + ], + "libelle_d_acheminement": "LONGVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74349784296, + 50.5350281811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "217a2370fe0e7fffe001da1f0941f90d3c337acb", + "fields": { + "code_commune_insee": "62528", + "nom_de_la_commune": "LOOS EN GOHELLE", + "code_postal": "62750", + "coordonnees_gps": [ + 50.4567931082, + 2.78572759998 + ], + "libelle_d_acheminement": "LOOS EN GOHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78572759998, + 50.4567931082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01e87ff2933da41a230e8943078a926cfc83bbd6", + "fields": { + "code_commune_insee": "62529", + "nom_de_la_commune": "LORGIES", + "code_postal": "62840", + "coordonnees_gps": [ + 50.5665642235, + 2.79775803436 + ], + "libelle_d_acheminement": "LORGIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79775803436, + 50.5665642235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0ba4dd159ac0df11ef681ac329dd73a029b16e5", + "fields": { + "code_commune_insee": "62533", + "nom_de_la_commune": "LUGY", + "code_postal": "62310", + "coordonnees_gps": [ + 50.5217114727, + 2.17428495837 + ], + "libelle_d_acheminement": "LUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17428495837, + 50.5217114727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "587d8e380b9b54d48a54df86ed50f9b0e3a0294c", + "fields": { + "code_commune_insee": "62540", + "nom_de_la_commune": "MAISNIL LES RUITZ", + "code_postal": "62620", + "coordonnees_gps": [ + 50.4477765466, + 2.57828775042 + ], + "libelle_d_acheminement": "MAISNIL LES RUITZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57828775042, + 50.4477765466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7752835117ca9ba18a72c9f004de49287e8f6c6", + "fields": { + "code_commune_insee": "62542", + "nom_de_la_commune": "MAIZIERES", + "code_postal": "62127", + "coordonnees_gps": [ + 50.32212095, + 2.44126600282 + ], + "libelle_d_acheminement": "MAIZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44126600282, + 50.32212095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a7b5c1ceeb9118ad19955ff6cb97505ebb83b14", + "fields": { + "code_commune_insee": "62546", + "nom_de_la_commune": "MANINGHEN HENNE", + "code_postal": "62250", + "coordonnees_gps": [ + 50.7698364522, + 1.6724792037 + ], + "libelle_d_acheminement": "MANINGHEN HENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6724792037, + 50.7698364522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7df91c84a2d779eba672e1f99c6cd6e9df4c1299", + "fields": { + "code_commune_insee": "62548", + "nom_de_la_commune": "MARCK", + "code_postal": "62730", + "coordonnees_gps": [ + 50.9539156079, + 1.94945765215 + ], + "libelle_d_acheminement": "MARCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94945765215, + 50.9539156079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a8eb96ad6337696d0d030e02e98b89043cbdd65", + "fields": { + "code_commune_insee": "62555", + "nom_de_la_commune": "MARLES LES MINES", + "code_postal": "62540", + "coordonnees_gps": [ + 50.5020046484, + 2.50636353506 + ], + "libelle_d_acheminement": "MARLES LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50636353506, + 50.5020046484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03e87a5567bf9b719364b3dd9cbf6f100250a703", + "fields": { + "code_commune_insee": "62557", + "nom_de_la_commune": "MAROEUIL", + "code_postal": "62161", + "coordonnees_gps": [ + 50.3306055435, + 2.71035583524 + ], + "libelle_d_acheminement": "MAROEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71035583524, + 50.3306055435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d03c6aedf39383a4ca366e008f650ed155ec50f", + "fields": { + "code_commune_insee": "62559", + "nom_de_la_commune": "MARQUION", + "code_postal": "62860", + "coordonnees_gps": [ + 50.2041974457, + 3.09602784111 + ], + "libelle_d_acheminement": "MARQUION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09602784111, + 50.2041974457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c594f32aac0cb6f0a7d098d4c2307549bb909b9e", + "fields": { + "code_commune_insee": "62561", + "nom_de_la_commune": "MARTINPUICH", + "code_postal": "62450", + "coordonnees_gps": [ + 50.0511586041, + 2.76881719032 + ], + "libelle_d_acheminement": "MARTINPUICH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76881719032, + 50.0511586041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8249f7000e6608e44ad892806610a8603864370b", + "fields": { + "code_commune_insee": "62573", + "nom_de_la_commune": "MEURCHIN", + "code_postal": "62410", + "coordonnees_gps": [ + 50.4942234674, + 2.89430512766 + ], + "libelle_d_acheminement": "MEURCHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89430512766, + 50.4942234674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8f7718e7fd12a1b55ddfce65f22bbb6f6ec165e", + "fields": { + "code_commune_insee": "62574", + "nom_de_la_commune": "MINGOVAL", + "code_postal": "62690", + "coordonnees_gps": [ + 50.376078209, + 2.56887018606 + ], + "libelle_d_acheminement": "MINGOVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56887018606, + 50.376078209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9d10b8d3171348c54c522aba2066ba4121f199c", + "fields": { + "code_commune_insee": "62586", + "nom_de_la_commune": "MONTENESCOURT", + "code_postal": "62123", + "coordonnees_gps": [ + 50.2927140041, + 2.62902405219 + ], + "libelle_d_acheminement": "MONTENESCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62902405219, + 50.2927140041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d497be0544fe3c05c9eb434c2e8ec0dfe8c6f2d", + "fields": { + "code_commune_insee": "62587", + "nom_de_la_commune": "MONTIGNY EN GOHELLE", + "code_postal": "62640", + "coordonnees_gps": [ + 50.4280892859, + 2.93038201383 + ], + "libelle_d_acheminement": "MONTIGNY EN GOHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93038201383, + 50.4280892859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a926329d479d6c3a74c482683cd6aa6d1915619", + "fields": { + "code_commune_insee": "62588", + "nom_de_la_commune": "MONTREUIL", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4655272073, + 1.77098646216 + ], + "libelle_d_acheminement": "MONTREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77098646216, + 50.4655272073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63510936760d02ed7fc78ebdc055dfa70c8d2cf8", + "fields": { + "code_commune_insee": "62598", + "nom_de_la_commune": "MUNCQ NIEURLET", + "code_postal": "62890", + "coordonnees_gps": [ + 50.8391311985, + 2.11817509259 + ], + "libelle_d_acheminement": "MUNCQ NIEURLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11817509259, + 50.8391311985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "213d1760c12fd88d7757815d1c009483373259bc", + "fields": { + "code_commune_insee": "62602", + "nom_de_la_commune": "NEMPONT ST FIRMIN", + "code_postal": "62180", + "coordonnees_gps": [ + 50.3613146343, + 1.7392353846 + ], + "libelle_d_acheminement": "NEMPONT ST FIRMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7392353846, + 50.3613146343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f23c4e6039e06df0c6b2b1034bcebe87757ce4ec", + "fields": { + "code_commune_insee": "62603", + "nom_de_la_commune": "NESLES", + "code_postal": "62152", + "coordonnees_gps": [ + 50.6227064448, + 1.66004463955 + ], + "libelle_d_acheminement": "NESLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66004463955, + 50.6227064448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a65166d900f34a39987c2c038afd294fd349aee", + "fields": { + "ligne_5": "HARDELOT PLAGE", + "code_commune_insee": "62604", + "libelle_d_acheminement": "NEUFCHATEL HARDELOT", + "code_postal": "62152", + "nom_de_la_commune": "NEUFCHATEL HARDELOT", + "coordonnees_gps": [ + 50.6171328385, + 1.61729338887 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61729338887, + 50.6171328385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "accdd2db99017d23c02b357aa68304fbf2c7f27f", + "fields": { + "code_commune_insee": "62605", + "nom_de_la_commune": "NEULETTE", + "code_postal": "62770", + "coordonnees_gps": [ + 50.3813194274, + 2.16664316221 + ], + "libelle_d_acheminement": "NEULETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16664316221, + 50.3813194274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8c4b9d442a1a817a1ba1b33305759247ea7af4c", + "fields": { + "code_commune_insee": "62615", + "nom_de_la_commune": "NIELLES LES CALAIS", + "code_postal": "62185", + "coordonnees_gps": [ + 50.9070271437, + 1.83253644288 + ], + "libelle_d_acheminement": "NIELLES LES CALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83253644288, + 50.9070271437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "266bb287650a60a83811a783aabcd1da72b1152d", + "fields": { + "code_commune_insee": "62617", + "nom_de_la_commune": "NOEUX LES MINES", + "code_postal": "62290", + "coordonnees_gps": [ + 50.4751015881, + 2.66285501357 + ], + "libelle_d_acheminement": "NOEUX LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66285501357, + 50.4751015881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4cd9242851d8f7f916b9d3abe685d4e347de251", + "fields": { + "code_commune_insee": "62621", + "nom_de_la_commune": "NORTKERQUE", + "code_postal": "62370", + "coordonnees_gps": [ + 50.8781972257, + 2.03311083061 + ], + "libelle_d_acheminement": "NORTKERQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03311083061, + 50.8781972257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fef3d0f1e35ff884ea8edf0ea6c21e3e66349ae2", + "fields": { + "code_commune_insee": "62626", + "nom_de_la_commune": "NOYELLES LES VERMELLES", + "code_postal": "62980", + "coordonnees_gps": [ + 50.4912262518, + 2.72838985487 + ], + "libelle_d_acheminement": "NOYELLES LES VERMELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72838985487, + 50.4912262518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a7e97586dce796f55cc8f2859e22b06c076f3f1", + "fields": { + "code_commune_insee": "62627", + "nom_de_la_commune": "NOYELLES SOUS BELLONNE", + "code_postal": "62490", + "coordonnees_gps": [ + 50.3091545259, + 3.02186108116 + ], + "libelle_d_acheminement": "NOYELLES SOUS BELLONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02186108116, + 50.3091545259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adfd1e0355ef6549aae35c196e2a2201bf7611ea", + "fields": { + "code_commune_insee": "62645", + "nom_de_la_commune": "OYE PLAGE", + "code_postal": "62215", + "coordonnees_gps": [ + 50.9812329903, + 2.03930688594 + ], + "libelle_d_acheminement": "OYE PLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03930688594, + 50.9812329903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f61ececeac04f8caba9985b680eacede31ef2811", + "fields": { + "code_commune_insee": "62649", + "nom_de_la_commune": "PAS EN ARTOIS", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1524799226, + 2.4911616268 + ], + "libelle_d_acheminement": "PAS EN ARTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4911616268, + 50.1524799226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f061c1f09c966d2efe14c440dfbe7bdc665ea2f", + "fields": { + "code_commune_insee": "62651", + "nom_de_la_commune": "PENIN", + "code_postal": "62127", + "coordonnees_gps": [ + 50.3304741478, + 2.487971772 + ], + "libelle_d_acheminement": "PENIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.487971772, + 50.3304741478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3237c8b47eb0969a0244b8d7afe8a2e035dff1a9", + "fields": { + "code_commune_insee": "62652", + "nom_de_la_commune": "PERNES", + "code_postal": "62550", + "coordonnees_gps": [ + 50.4869916511, + 2.402530406 + ], + "libelle_d_acheminement": "PERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.402530406, + 50.4869916511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab0ddfb05483c168f30fde8062504ba41364786c", + "fields": { + "code_commune_insee": "62653", + "nom_de_la_commune": "PERNES LES BOULOGNE", + "code_postal": "62126", + "coordonnees_gps": [ + 50.7487764703, + 1.69726351984 + ], + "libelle_d_acheminement": "PERNES LES BOULOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69726351984, + 50.7487764703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0509f914ed2b8737c5bb2a2dcb40e3de31985fa1", + "fields": { + "code_commune_insee": "62660", + "nom_de_la_commune": "PLOUVAIN", + "code_postal": "62118", + "coordonnees_gps": [ + 50.3059557939, + 2.91794786158 + ], + "libelle_d_acheminement": "PLOUVAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91794786158, + 50.3059557939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c46377f9ebc9d7ca2aa417260d61fda549f23916", + "fields": { + "code_commune_insee": "62661", + "nom_de_la_commune": "BOUIN PLUMOISON", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3760980886, + 1.98171782386 + ], + "libelle_d_acheminement": "BOUIN PLUMOISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98171782386, + 50.3760980886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72439eaf19017786ac26b8fcd7742100c36d84d1", + "fields": { + "ligne_5": "BOUIN", + "code_commune_insee": "62661", + "libelle_d_acheminement": "BOUIN PLUMOISON", + "code_postal": "62140", + "nom_de_la_commune": "BOUIN PLUMOISON", + "coordonnees_gps": [ + 50.3760980886, + 1.98171782386 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98171782386, + 50.3760980886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9adcf98524f41d7f21cdc05530a523de38fde557", + "fields": { + "code_commune_insee": "62664", + "nom_de_la_commune": "POMMIER", + "code_postal": "62111", + "coordonnees_gps": [ + 50.1813083697, + 2.59512513056 + ], + "libelle_d_acheminement": "POMMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59512513056, + 50.1813083697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b85b321d979660edeb30b07fef14d17e1a36d92", + "fields": { + "code_commune_insee": "62668", + "nom_de_la_commune": "PREDEFIN", + "code_postal": "62134", + "coordonnees_gps": [ + 50.5049426008, + 2.25899233284 + ], + "libelle_d_acheminement": "PREDEFIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25899233284, + 50.5049426008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3aa4197a0c0061de1451b8d276f9aac1e3e9980", + "fields": { + "code_commune_insee": "62670", + "nom_de_la_commune": "PREURES", + "code_postal": "62650", + "coordonnees_gps": [ + 50.573370398, + 1.88208837787 + ], + "libelle_d_acheminement": "PREURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88208837787, + 50.573370398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73f1461bf541de454fdb09c58f00415dfde71ea4", + "fields": { + "ligne_5": "HAUT MAINIL", + "code_commune_insee": "62683", + "libelle_d_acheminement": "QUOEUX HAUT MAINIL", + "code_postal": "62390", + "nom_de_la_commune": "QUOEUX HAUT MAINIL", + "coordonnees_gps": [ + 50.3010617239, + 2.10429355404 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10429355404, + 50.3010617239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ecd639a23fda600c8aa13c16e57a5d382853bd0", + "fields": { + "ligne_5": "REBECQUES", + "code_commune_insee": "62691", + "libelle_d_acheminement": "ST AUGUSTIN", + "code_postal": "62120", + "nom_de_la_commune": "ST AUGUSTIN", + "coordonnees_gps": [ + 50.6486142358, + 2.30256500172 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30256500172, + 50.6486142358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37a8565f8f45200e7fbef69556cd2a3949f4f9ff", + "fields": { + "ligne_5": "RANCHICOURT", + "code_commune_insee": "62693", + "libelle_d_acheminement": "REBREUVE RANCHICOURT", + "code_postal": "62150", + "nom_de_la_commune": "REBREUVE RANCHICOURT", + "coordonnees_gps": [ + 50.4315349497, + 2.54883254933 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54883254933, + 50.4315349497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cf9c990ce32922e6e9f876c976bb28d59584711", + "fields": { + "code_commune_insee": "62703", + "nom_de_la_commune": "REMY", + "code_postal": "62156", + "coordonnees_gps": [ + 50.257089455, + 2.95881684722 + ], + "libelle_d_acheminement": "REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95881684722, + 50.257089455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d96dec678f263d1c46f19a795ec40fbc35381e8", + "fields": { + "code_commune_insee": "62705", + "nom_de_la_commune": "RETY", + "code_postal": "62720", + "coordonnees_gps": [ + 50.7933479687, + 1.78478453099 + ], + "libelle_d_acheminement": "RETY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78478453099, + 50.7933479687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c3d08823eb17ce357640b74cc794e83cf61f1c0", + "fields": { + "code_commune_insee": "62714", + "nom_de_la_commune": "ROCLINCOURT", + "code_postal": "62223", + "coordonnees_gps": [ + 50.3298536154, + 2.78984756836 + ], + "libelle_d_acheminement": "ROCLINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78984756836, + 50.3298536154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf84b37ef5a5e186feeda12b0a55ca5b73053a8a", + "fields": { + "code_commune_insee": "62722", + "nom_de_la_commune": "ROUGEFAY", + "code_postal": "62390", + "coordonnees_gps": [ + 50.2763576271, + 2.16980912233 + ], + "libelle_d_acheminement": "ROUGEFAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16980912233, + 50.2763576271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "712b7e0fd909b54cc15edc6e3882679a46fdf375", + "fields": { + "code_commune_insee": "62725", + "nom_de_la_commune": "ROYON", + "code_postal": "62990", + "coordonnees_gps": [ + 50.4726572315, + 1.99966116605 + ], + "libelle_d_acheminement": "ROYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99966116605, + 50.4726572315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3e42c2bbab723e8f4ca60fd2bc91e2b1112be51", + "fields": { + "code_commune_insee": "62726", + "nom_de_la_commune": "RUISSEAUVILLE", + "code_postal": "62310", + "coordonnees_gps": [ + 50.4836257391, + 2.11590995942 + ], + "libelle_d_acheminement": "RUISSEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11590995942, + 50.4836257391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b369495a876bfe845818560f327f54654c4a7df0", + "fields": { + "code_commune_insee": "62730", + "nom_de_la_commune": "RUMINGHEM", + "code_postal": "62370", + "coordonnees_gps": [ + 50.8561596741, + 2.16768057488 + ], + "libelle_d_acheminement": "RUMINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16768057488, + 50.8561596741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4181dcd7289794c01444fba583d19b2bbaa5d61", + "fields": { + "code_commune_insee": "62732", + "nom_de_la_commune": "SACHIN", + "code_postal": "62550", + "coordonnees_gps": [ + 50.4927168142, + 2.36659910024 + ], + "libelle_d_acheminement": "SACHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36659910024, + 50.4927168142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96c2c58d030f34a34d2f8db164e3dbf17cf5e329", + "fields": { + "code_commune_insee": "62746", + "nom_de_la_commune": "ST ETIENNE AU MONT", + "code_postal": "62360", + "coordonnees_gps": [ + 50.6654810277, + 1.6018617047 + ], + "libelle_d_acheminement": "PONT DE BRIQUES ST ETIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6018617047, + 50.6654810277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e6842b89809846ad6eb75f6446e0f229fe76edc", + "fields": { + "code_commune_insee": "62756", + "nom_de_la_commune": "STE MARIE KERQUE", + "code_postal": "62370", + "coordonnees_gps": [ + 50.8925108938, + 2.15129692928 + ], + "libelle_d_acheminement": "STE MARIE KERQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15129692928, + 50.8925108938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e58c4f8fe2995ca3f960b424e4cad47e5f5d3090", + "fields": { + "ligne_5": "TATINGHEM", + "code_commune_insee": "62757", + "libelle_d_acheminement": "ST MARTIN LEZ TATINGHEM", + "code_postal": "62500", + "nom_de_la_commune": "ST MARTIN LEZ TATINGHEM", + "coordonnees_gps": [ + 50.7568801196, + 2.2297072767 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2297072767, + 50.7568801196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa8d0f8b8763d6edd076d41415d0d97c85ebebea", + "fields": { + "code_commune_insee": "62759", + "nom_de_la_commune": "ST MARTIN CHOQUEL", + "code_postal": "62240", + "coordonnees_gps": [ + 50.6684714182, + 1.88754948653 + ], + "libelle_d_acheminement": "ST MARTIN CHOQUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88754948653, + 50.6684714182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7118dab7603c0562e2b334703510249d14718c0", + "fields": { + "code_commune_insee": "62761", + "nom_de_la_commune": "ST MARTIN SUR COJEUL", + "code_postal": "62128", + "coordonnees_gps": [ + 50.228647822, + 2.85191979354 + ], + "libelle_d_acheminement": "ST MARTIN SUR COJEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85191979354, + 50.228647822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "273bd15fcc0ba14b05933b24aabf2908284276ce", + "fields": { + "code_commune_insee": "62764", + "nom_de_la_commune": "ST NICOLAS", + "code_postal": "62223", + "coordonnees_gps": [ + 50.3086770117, + 2.78508314188 + ], + "libelle_d_acheminement": "ST NICOLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78508314188, + 50.3086770117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a401402059fdedb12cc27549ed04b34bba48dae3", + "fields": { + "code_commune_insee": "62770", + "nom_de_la_commune": "ST VENANT", + "code_postal": "62350", + "coordonnees_gps": [ + 50.6225931834, + 2.52541265716 + ], + "libelle_d_acheminement": "ST VENANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52541265716, + 50.6225931834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "256fea1bc8d1b9d34163413e059f6ecbd12d0015", + "fields": { + "code_commune_insee": "62773", + "nom_de_la_commune": "SAMER", + "code_postal": "62830", + "coordonnees_gps": [ + 50.6338926429, + 1.75485002535 + ], + "libelle_d_acheminement": "SAMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75485002535, + 50.6338926429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "477253e38d2fbabd417fe72aff9455a677d6d783", + "fields": { + "code_commune_insee": "62774", + "nom_de_la_commune": "SANGATTE", + "code_postal": "62231", + "coordonnees_gps": [ + 50.9410415453, + 1.76958356617 + ], + "libelle_d_acheminement": "SANGATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76958356617, + 50.9410415453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11e41697b6e1c639bec0795390a9c4cb577973a4", + "fields": { + "code_commune_insee": "62778", + "nom_de_la_commune": "SARS LE BOIS", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2975025898, + 2.43161426138 + ], + "libelle_d_acheminement": "SARS LE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43161426138, + 50.2975025898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c35a2dba3869a3efffc6625ac1f2867d0d6e155", + "fields": { + "code_commune_insee": "62780", + "nom_de_la_commune": "SAUCHY CAUCHY", + "code_postal": "62860", + "coordonnees_gps": [ + 50.2357972637, + 3.09028659809 + ], + "libelle_d_acheminement": "SAUCHY CAUCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09028659809, + 50.2357972637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7ab945c2fa35e254f6422cc1df8639467ea3774", + "fields": { + "code_commune_insee": "62782", + "nom_de_la_commune": "SAUDEMONT", + "code_postal": "62860", + "coordonnees_gps": [ + 50.238640039, + 3.03137519569 + ], + "libelle_d_acheminement": "SAUDEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03137519569, + 50.238640039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "635b940d0fd111170861c327c6cf56bd513bf11e", + "fields": { + "code_commune_insee": "62790", + "nom_de_la_commune": "SENLIS", + "code_postal": "62310", + "coordonnees_gps": [ + 50.5345389344, + 2.14734408463 + ], + "libelle_d_acheminement": "SENLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14734408463, + 50.5345389344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4a9b0dfa4b7b4aa737cd0b5aa0eb6b77b26d200", + "fields": { + "code_commune_insee": "62812", + "nom_de_la_commune": "THIEMBRONNE", + "code_postal": "62560", + "coordonnees_gps": [ + 50.6239861501, + 2.04691534962 + ], + "libelle_d_acheminement": "THIEMBRONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04691534962, + 50.6239861501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76ede5eaf3b7a85fb94e78b88d32a484fabe12dc", + "fields": { + "code_commune_insee": "62819", + "nom_de_la_commune": "TILQUES", + "code_postal": "62500", + "coordonnees_gps": [ + 50.7728122391, + 2.20152463188 + ], + "libelle_d_acheminement": "TILQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20152463188, + 50.7728122391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79a8c4465640d6b8cbd6a5a56812cd4435fbf5e6", + "fields": { + "code_commune_insee": "62823", + "nom_de_la_commune": "TORCY", + "code_postal": "62310", + "coordonnees_gps": [ + 50.483966834, + 2.02072690969 + ], + "libelle_d_acheminement": "TORCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02072690969, + 50.483966834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8d4c0a2c815e97d5268471b79bddf46da06dd58", + "fields": { + "ligne_5": "ERQUIERES", + "code_commune_insee": "62834", + "libelle_d_acheminement": "VACQUERIETTE ERQUIERES", + "code_postal": "62140", + "nom_de_la_commune": "VACQUERIETTE ERQUIERES", + "coordonnees_gps": [ + 50.3228879351, + 2.07435637725 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07435637725, + 50.3228879351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c18942f661f87a34572c241de8062720992239c", + "fields": { + "code_commune_insee": "62837", + "nom_de_la_commune": "VAUDRINGHEM", + "code_postal": "62380", + "coordonnees_gps": [ + 50.6540835736, + 2.02409481692 + ], + "libelle_d_acheminement": "VAUDRINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02409481692, + 50.6540835736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3213f13d1b8166677e8648cf686b943d6d0ad27", + "fields": { + "code_commune_insee": "62841", + "nom_de_la_commune": "VENDIN LES BETHUNE", + "code_postal": "62232", + "coordonnees_gps": [ + 50.5464095644, + 2.60682652334 + ], + "libelle_d_acheminement": "VENDIN LES BETHUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60682652334, + 50.5464095644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caf76b32b4b31576e53ec04cfe9f9ca0fbeae2f0", + "fields": { + "code_commune_insee": "62844", + "nom_de_la_commune": "VERCHOCQ", + "code_postal": "62560", + "coordonnees_gps": [ + 50.5548367541, + 2.04003605108 + ], + "libelle_d_acheminement": "VERCHOCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04003605108, + 50.5548367541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c93f382e605d376803ea6c8c38bcb10318830da", + "fields": { + "code_commune_insee": "62847", + "nom_de_la_commune": "VERQUIGNEUL", + "code_postal": "62113", + "coordonnees_gps": [ + 50.5030883097, + 2.66214119709 + ], + "libelle_d_acheminement": "VERQUIGNEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66214119709, + 50.5030883097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "643dc7410f7b96f17bcc3b8b7809617a59064e29", + "fields": { + "code_commune_insee": "62850", + "nom_de_la_commune": "VIEIL HESDIN", + "code_postal": "62770", + "coordonnees_gps": [ + 50.3632756728, + 2.1130630782 + ], + "libelle_d_acheminement": "VIEIL HESDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1130630782, + 50.3632756728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a348fddbd8b848e8afa2d89a4fdacfa5055a14f5", + "fields": { + "code_commune_insee": "62851", + "nom_de_la_commune": "VIEILLE CHAPELLE", + "code_postal": "62136", + "coordonnees_gps": [ + 50.5929100116, + 2.71744022097 + ], + "libelle_d_acheminement": "VIEILLE CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71744022097, + 50.5929100116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c23b878c14c958de575d9e1e1d776e66a889fa4", + "fields": { + "code_commune_insee": "62852", + "nom_de_la_commune": "VIEILLE EGLISE", + "code_postal": "62162", + "coordonnees_gps": [ + 50.9332624726, + 2.07653957537 + ], + "libelle_d_acheminement": "VIEILLE EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07653957537, + 50.9332624726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cd1b9900ea3b4df77e870a40f5557565670eec7", + "fields": { + "code_commune_insee": "62868", + "nom_de_la_commune": "WAIL", + "code_postal": "62770", + "coordonnees_gps": [ + 50.3377712798, + 2.11915213609 + ], + "libelle_d_acheminement": "WAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11915213609, + 50.3377712798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "118b9b0282763e00963969bcbb04befacf07966e", + "fields": { + "code_commune_insee": "62869", + "nom_de_la_commune": "WAILLY", + "code_postal": "62217", + "coordonnees_gps": [ + 50.249116803, + 2.72419041642 + ], + "libelle_d_acheminement": "WAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72419041642, + 50.249116803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15bb90cd94c2bb198d7acae69fdce6837227345f", + "fields": { + "code_commune_insee": "62870", + "nom_de_la_commune": "WAILLY BEAUCAMP", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4082282743, + 1.73011785449 + ], + "libelle_d_acheminement": "WAILLY BEAUCAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73011785449, + 50.4082282743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8a5f558b9d07c0f10bf5436e65a2816f69c131e", + "fields": { + "code_commune_insee": "62882", + "nom_de_la_commune": "WAVRANS SUR L AA", + "code_postal": "62380", + "coordonnees_gps": [ + 50.6749530079, + 2.13817752788 + ], + "libelle_d_acheminement": "WAVRANS SUR L AA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13817752788, + 50.6749530079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7292cfb86a9d1880eafb53a3b4f6794e222eee94", + "fields": { + "code_commune_insee": "62883", + "nom_de_la_commune": "WAVRANS SUR TERNOISE", + "code_postal": "62130", + "coordonnees_gps": [ + 50.409386121, + 2.2840999024 + ], + "libelle_d_acheminement": "WAVRANS SUR TERNOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2840999024, + 50.409386121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81dc9aeb6dcdf6d0c2c49e35638055402598a4a3", + "fields": { + "code_commune_insee": "62890", + "nom_de_la_commune": "WILLEMAN", + "code_postal": "62770", + "coordonnees_gps": [ + 50.3594087947, + 2.16281250365 + ], + "libelle_d_acheminement": "WILLEMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16281250365, + 50.3594087947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58c402509dd1767f140100ccc4a86e1a664c3fd3", + "fields": { + "code_commune_insee": "62897", + "nom_de_la_commune": "WISMES", + "code_postal": "62380", + "coordonnees_gps": [ + 50.6613559583, + 2.07972084711 + ], + "libelle_d_acheminement": "WISMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07972084711, + 50.6613559583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd6447e186db99e7041a46e473908418a131b253", + "fields": { + "code_commune_insee": "62902", + "nom_de_la_commune": "WIZERNES", + "code_postal": "62570", + "coordonnees_gps": [ + 50.7153325042, + 2.22913159655 + ], + "libelle_d_acheminement": "WIZERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22913159655, + 50.7153325042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6ac31dd532e626bf5401e52fe7019a37e6767df", + "fields": { + "code_commune_insee": "62904", + "nom_de_la_commune": "ZOUAFQUES", + "code_postal": "62890", + "coordonnees_gps": [ + 50.8228097659, + 2.05320953187 + ], + "libelle_d_acheminement": "ZOUAFQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05320953187, + 50.8228097659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc8c2096cce53bff4e15b717f1a423dfa14eb027", + "fields": { + "code_commune_insee": "62906", + "nom_de_la_commune": "ZUTKERQUE", + "code_postal": "62370", + "coordonnees_gps": [ + 50.8528869572, + 2.05960239074 + ], + "libelle_d_acheminement": "ZUTKERQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05960239074, + 50.8528869572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a480d2d57b7677b744741466bf61d06636f5bee1", + "fields": { + "code_commune_insee": "62907", + "nom_de_la_commune": "LIBERCOURT", + "code_postal": "62820", + "coordonnees_gps": [ + 50.482031915, + 2.99971382524 + ], + "libelle_d_acheminement": "LIBERCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99971382524, + 50.482031915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef1a1ffa587ed73be654a5d36c5516970f0ef943", + "fields": { + "code_commune_insee": "62909", + "nom_de_la_commune": "YTRES", + "code_postal": "62124", + "coordonnees_gps": [ + 50.0647969783, + 2.99626975733 + ], + "libelle_d_acheminement": "YTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99626975733, + 50.0647969783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88e10374d4d53ec207b6dae5dccc3dbd26e9bf98", + "fields": { + "code_commune_insee": "63008", + "nom_de_la_commune": "ARCONSAT", + "code_postal": "63250", + "coordonnees_gps": [ + 45.8981332955, + 3.71595849831 + ], + "libelle_d_acheminement": "ARCONSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71595849831, + 45.8981332955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cad2ff2689d856fa570bbaf3eca583574f7f96a", + "fields": { + "code_commune_insee": "63009", + "nom_de_la_commune": "ARDES", + "code_postal": "63420", + "coordonnees_gps": [ + 45.3984149619, + 3.11786009543 + ], + "libelle_d_acheminement": "ARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11786009543, + 45.3984149619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "405f5f22baa739bad02e07c8a5a59e509c576382", + "fields": { + "code_commune_insee": "63010", + "nom_de_la_commune": "ARLANC", + "code_postal": "63220", + "coordonnees_gps": [ + 45.4207986655, + 3.72311154214 + ], + "libelle_d_acheminement": "ARLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72311154214, + 45.4207986655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a3e7bbba60232f954cbdffd0aa1fc8408201476", + "fields": { + "code_commune_insee": "63013", + "nom_de_la_commune": "AUBIAT", + "code_postal": "63260", + "coordonnees_gps": [ + 45.9806227322, + 3.19256070994 + ], + "libelle_d_acheminement": "AUBIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19256070994, + 45.9806227322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2b251d2d0efa25c373f300a4d0f2a2782119613", + "fields": { + "code_commune_insee": "63021", + "nom_de_la_commune": "AUTHEZAT", + "code_postal": "63114", + "coordonnees_gps": [ + 45.6385828582, + 3.19313623822 + ], + "libelle_d_acheminement": "AUTHEZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19313623822, + 45.6385828582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f120f12bf9402f36050f0d060fc2517c18c8d72", + "fields": { + "code_commune_insee": "63030", + "nom_de_la_commune": "BAS ET LEZAT", + "code_postal": "63310", + "coordonnees_gps": [ + 46.0370937855, + 3.30812552626 + ], + "libelle_d_acheminement": "BAS ET LEZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30812552626, + 46.0370937855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8dca679db2924c932df810c3554ba9b8340cc86", + "fields": { + "code_commune_insee": "63036", + "nom_de_la_commune": "BERGONNE", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5097308749, + 3.21674790663 + ], + "libelle_d_acheminement": "BERGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21674790663, + 45.5097308749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef7b5ea5076192f82ae9a2520d92723a33cdf318", + "fields": { + "code_commune_insee": "63043", + "nom_de_la_commune": "BLOT L EGLISE", + "code_postal": "63440", + "coordonnees_gps": [ + 46.0337566478, + 2.95773350422 + ], + "libelle_d_acheminement": "BLOT L EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95773350422, + 46.0337566478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38851febfd3b66eab43e80b32138ceef7015e4c8", + "fields": { + "code_commune_insee": "63059", + "nom_de_la_commune": "BUSSEOL", + "code_postal": "63270", + "coordonnees_gps": [ + 45.6933391482, + 3.2623134791 + ], + "libelle_d_acheminement": "BUSSEOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2623134791, + 45.6933391482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00a1bff59704b78d1b12d5cad2270483a62d0899", + "fields": { + "code_commune_insee": "63060", + "nom_de_la_commune": "BUSSIERES", + "code_postal": "63330", + "coordonnees_gps": [ + 46.0639164771, + 2.64739056246 + ], + "libelle_d_acheminement": "BUSSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64739056246, + 46.0639164771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea3cde7128edc5f81a137f8147500dcddf4b06ca", + "fields": { + "code_commune_insee": "63063", + "nom_de_la_commune": "CEBAZAT", + "code_postal": "63118", + "coordonnees_gps": [ + 45.8318909179, + 3.10802814876 + ], + "libelle_d_acheminement": "CEBAZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10802814876, + 45.8318909179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "016f9c5fdc19a91d5370d7ca9b5009172442b809", + "fields": { + "ligne_5": "LES SARRAIX", + "code_commune_insee": "63066", + "libelle_d_acheminement": "CELLES SUR DUROLLE", + "code_postal": "63250", + "nom_de_la_commune": "CELLES SUR DUROLLE", + "coordonnees_gps": [ + 45.8720497687, + 3.65199036079 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65199036079, + 45.8720497687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "352e0108c5360b2d197fcac62a13a3e9bb2b1587", + "fields": { + "code_commune_insee": "63070", + "nom_de_la_commune": "CEYRAT", + "code_postal": "63122", + "coordonnees_gps": [ + 45.7385665795, + 3.06427177861 + ], + "libelle_d_acheminement": "CEYRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06427177861, + 45.7385665795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "081c66a23f68d47e66c25391dde256fc3c6d81ba", + "fields": { + "code_commune_insee": "63081", + "nom_de_la_commune": "CHAMPETIERES", + "code_postal": "63600", + "coordonnees_gps": [ + 45.5157534837, + 3.67868280607 + ], + "libelle_d_acheminement": "CHAMPETIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67868280607, + 45.5157534837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1926f011dc2ea9a160504836d31b00ef77119f4a", + "fields": { + "code_commune_insee": "63082", + "nom_de_la_commune": "CHAMPS", + "code_postal": "63440", + "coordonnees_gps": [ + 46.0616676024, + 3.09345321573 + ], + "libelle_d_acheminement": "CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09345321573, + 46.0616676024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a472862d71a5d3ea9fb200ebf3df135711008f5", + "fields": { + "code_commune_insee": "63085", + "nom_de_la_commune": "CHAPDES BEAUFORT", + "code_postal": "63230", + "coordonnees_gps": [ + 45.8923408221, + 2.85542542398 + ], + "libelle_d_acheminement": "CHAPDES BEAUFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85542542398, + 45.8923408221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45a4fbe76f905a37ced6e16d21e2151ff50792ee", + "fields": { + "code_commune_insee": "63086", + "nom_de_la_commune": "LA CHAPELLE AGNON", + "code_postal": "63590", + "coordonnees_gps": [ + 45.6297458616, + 3.62896943409 + ], + "libelle_d_acheminement": "LA CHAPELLE AGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62896943409, + 45.6297458616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c943943eed3a396b41c4eb70a2aea1dab1ec4f6", + "fields": { + "code_commune_insee": "63100", + "nom_de_la_commune": "CHATEAUNEUF LES BAINS", + "code_postal": "63390", + "coordonnees_gps": [ + 46.0254681643, + 2.88743233345 + ], + "libelle_d_acheminement": "CHATEAUNEUF LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88743233345, + 46.0254681643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "284a4eda728694d1107cc561977b7b786b2d1ba7", + "fields": { + "code_commune_insee": "63113", + "nom_de_la_commune": "CLERMONT FERRAND", + "code_postal": "63000", + "coordonnees_gps": [ + 45.7856492991, + 3.11554542903 + ], + "libelle_d_acheminement": "CLERMONT FERRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11554542903, + 45.7856492991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8f7d957c55f71904d7502571d226bd3c72bc4c4", + "fields": { + "code_commune_insee": "63116", + "nom_de_la_commune": "COMBRONDE", + "code_postal": "63460", + "coordonnees_gps": [ + 45.9858171361, + 3.08063423598 + ], + "libelle_d_acheminement": "COMBRONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08063423598, + 45.9858171361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "573fe8542939311dae9725e3733e4e1ebaaa1c4f", + "fields": { + "code_commune_insee": "63119", + "nom_de_la_commune": "CONDAT LES MONTBOISSIER", + "code_postal": "63490", + "coordonnees_gps": [ + 45.5577736133, + 3.47788895135 + ], + "libelle_d_acheminement": "CONDAT LES MONTBOISSIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47788895135, + 45.5577736133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bdf676497d04e42d04cea30848b8f3e24ba0584", + "fields": { + "code_commune_insee": "63125", + "nom_de_la_commune": "COURPIERE", + "code_postal": "63120", + "coordonnees_gps": [ + 45.7580183795, + 3.54121734983 + ], + "libelle_d_acheminement": "COURPIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54121734983, + 45.7580183795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cda0943e927e5bd5f54f1a6bd54546b18c0e634", + "fields": { + "code_commune_insee": "63129", + "nom_de_la_commune": "CROS", + "code_postal": "63810", + "coordonnees_gps": [ + 45.466906332, + 2.60796346653 + ], + "libelle_d_acheminement": "CROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60796346653, + 45.466906332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94203c98e45ea23e55b0ad51414675b93c4a6691", + "fields": { + "code_commune_insee": "63135", + "nom_de_la_commune": "DAVAYAT", + "code_postal": "63200", + "coordonnees_gps": [ + 45.9471124393, + 3.11541506144 + ], + "libelle_d_acheminement": "DAVAYAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11541506144, + 45.9471124393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "411e05a1df4702f5defdfebe4147d7cf2a2672c6", + "fields": { + "code_commune_insee": "63136", + "nom_de_la_commune": "DOMAIZE", + "code_postal": "63520", + "coordonnees_gps": [ + 45.686410901, + 3.53308767944 + ], + "libelle_d_acheminement": "DOMAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53308767944, + 45.686410901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9a81be25deab8a1596f54cc9c6a304bcfdbf500", + "fields": { + "code_commune_insee": "63138", + "nom_de_la_commune": "DORAT", + "code_postal": "63300", + "coordonnees_gps": [ + 45.8956338419, + 3.48091335909 + ], + "libelle_d_acheminement": "DORAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48091335909, + 45.8956338419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9485394745d89d5cd46607549ac0723951359df6", + "fields": { + "code_commune_insee": "63139", + "nom_de_la_commune": "DORE L EGLISE", + "code_postal": "63220", + "coordonnees_gps": [ + 45.3776442028, + 3.75676812672 + ], + "libelle_d_acheminement": "DORE L EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75676812672, + 45.3776442028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cddca456669a79ef37ef9392bf074dbd3ec56adc", + "fields": { + "code_commune_insee": "63140", + "nom_de_la_commune": "DURMIGNAT", + "code_postal": "63700", + "coordonnees_gps": [ + 46.1968182287, + 2.89315984455 + ], + "libelle_d_acheminement": "DURMIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89315984455, + 46.1968182287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b06b254f0e2d893f756f983fc684a9ec2efe7105", + "fields": { + "code_commune_insee": "63145", + "nom_de_la_commune": "EGLISENEUVE DES LIARDS", + "code_postal": "63490", + "coordonnees_gps": [ + 45.5658772497, + 3.42053251866 + ], + "libelle_d_acheminement": "EGLISENEUVE DES LIARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42053251866, + 45.5658772497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d73fa1ccf694f5cb7a4cdee5c607f2e83af913a6", + "fields": { + "code_commune_insee": "63146", + "nom_de_la_commune": "EGLISENEUVE PRES BILLOM", + "code_postal": "63160", + "coordonnees_gps": [ + 45.7163424749, + 3.38987095565 + ], + "libelle_d_acheminement": "EGLISENEUVE PRES BILLOM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38987095565, + 45.7163424749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54392ba458d7877f2d50ce040c2f11355f230701", + "fields": { + "code_commune_insee": "63149", + "nom_de_la_commune": "ENTRAIGUES", + "code_postal": "63720", + "coordonnees_gps": [ + 45.8842162628, + 3.26384627263 + ], + "libelle_d_acheminement": "ENTRAIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26384627263, + 45.8842162628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b01a3c5b00739dceba20df703c897265c0a45075", + "fields": { + "code_commune_insee": "63150", + "nom_de_la_commune": "ENVAL", + "code_postal": "63530", + "coordonnees_gps": [ + 45.8971595331, + 3.05295746173 + ], + "libelle_d_acheminement": "ENVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05295746173, + 45.8971595331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78ca94a0803022a48f2ec13d68f6e2686d4f0407", + "fields": { + "code_commune_insee": "63152", + "nom_de_la_commune": "ESPINASSE", + "code_postal": "63390", + "coordonnees_gps": [ + 46.0340938449, + 2.71073825365 + ], + "libelle_d_acheminement": "ESPINASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71073825365, + 46.0340938449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3ffd4a768097cf034c8afec2a61be8c433df18f", + "fields": { + "code_commune_insee": "63162", + "nom_de_la_commune": "FOURNOLS", + "code_postal": "63980", + "coordonnees_gps": [ + 45.5212211477, + 3.58921545609 + ], + "libelle_d_acheminement": "FOURNOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58921545609, + 45.5212211477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06f41114e830b957e430643429348538b39833ba", + "fields": { + "code_commune_insee": "63167", + "nom_de_la_commune": "GIMEAUX", + "code_postal": "63200", + "coordonnees_gps": [ + 45.9488128227, + 3.09815848902 + ], + "libelle_d_acheminement": "GIMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09815848902, + 45.9488128227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ad673c8640a505f037633690f383cefa3af2493", + "fields": { + "code_commune_insee": "63175", + "nom_de_la_commune": "HERMENT", + "code_postal": "63470", + "coordonnees_gps": [ + 45.7634315003, + 2.56960581546 + ], + "libelle_d_acheminement": "HERMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56960581546, + 45.7634315003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24ae5becbcf6847efd1a488cec2ea4a6547c8eef", + "fields": { + "code_commune_insee": "63177", + "nom_de_la_commune": "ISSERTEAUX", + "code_postal": "63270", + "coordonnees_gps": [ + 45.653140809, + 3.38111745386 + ], + "libelle_d_acheminement": "ISSERTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38111745386, + 45.653140809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a898886c3e51ac7cf70c0891e1305d327b19b59", + "fields": { + "code_commune_insee": "63183", + "nom_de_la_commune": "LABESSETTE", + "code_postal": "63690", + "coordonnees_gps": [ + 45.4961438957, + 2.53609023312 + ], + "libelle_d_acheminement": "LABESSETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53609023312, + 45.4961438957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "033cef0effe1d0fc0949d84509861234e839c181", + "fields": { + "code_commune_insee": "63188", + "nom_de_la_commune": "LAPS", + "code_postal": "63270", + "coordonnees_gps": [ + 45.6712957114, + 3.26837509243 + ], + "libelle_d_acheminement": "LAPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26837509243, + 45.6712957114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "079530e63eb35858c879a011b38dc66efb3ca708", + "fields": { + "code_commune_insee": "63190", + "nom_de_la_commune": "LARODDE", + "code_postal": "63690", + "coordonnees_gps": [ + 45.5243871141, + 2.55410927855 + ], + "libelle_d_acheminement": "LARODDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55410927855, + 45.5243871141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc081a7bc78e60d0b351ab96a2c34bb9f7957a0a", + "fields": { + "code_commune_insee": "63192", + "nom_de_la_commune": "LA TOUR D AUVERGNE", + "code_postal": "63680", + "coordonnees_gps": [ + 45.544240217, + 2.70757823914 + ], + "libelle_d_acheminement": "LA TOUR D AUVERGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70757823914, + 45.544240217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9cd9324aa0c40912721c37fbdf467ba434f4beb", + "fields": { + "code_commune_insee": "63196", + "nom_de_la_commune": "LIMONS", + "code_postal": "63290", + "coordonnees_gps": [ + 45.9761150757, + 3.44572241084 + ], + "libelle_d_acheminement": "LIMONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44572241084, + 45.9761150757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f375330c46fdca64f0fa42772f13480bcb95e914", + "fields": { + "code_commune_insee": "63198", + "nom_de_la_commune": "LOUBEYRAT", + "code_postal": "63410", + "coordonnees_gps": [ + 45.9367572324, + 3.00677386083 + ], + "libelle_d_acheminement": "LOUBEYRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00677386083, + 45.9367572324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4189e7e950f7ab5391ffa2e8389d11435f1dc123", + "fields": { + "code_commune_insee": "63199", + "nom_de_la_commune": "LUDESSE", + "code_postal": "63320", + "coordonnees_gps": [ + 45.6156818862, + 3.09887261026 + ], + "libelle_d_acheminement": "LUDESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09887261026, + 45.6156818862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4700af4368a5d28ab68118e304607c14a57d21de", + "fields": { + "code_commune_insee": "63218", + "nom_de_la_commune": "MAYRES", + "code_postal": "63220", + "coordonnees_gps": [ + 45.3868702112, + 3.69971432703 + ], + "libelle_d_acheminement": "MAYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69971432703, + 45.3868702112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48a18b3832e43dbd3386109b91c0d5edf570e45a", + "fields": { + "code_commune_insee": "63220", + "nom_de_la_commune": "MAZOIRES", + "code_postal": "63420", + "coordonnees_gps": [ + 45.3952258023, + 3.04773640705 + ], + "libelle_d_acheminement": "MAZOIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04773640705, + 45.3952258023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94e6dfb35c5e8cbb98f726af7ab1543b0909033d", + "fields": { + "code_commune_insee": "63222", + "nom_de_la_commune": "MEILHAUD", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5429995885, + 3.16590025212 + ], + "libelle_d_acheminement": "MEILHAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16590025212, + 45.5429995885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c4888426bd7d613c5984735b874ac895443e52b", + "fields": { + "ligne_5": "BOGROS", + "code_commune_insee": "63225", + "libelle_d_acheminement": "MESSEIX", + "code_postal": "63750", + "nom_de_la_commune": "MESSEIX", + "coordonnees_gps": [ + 45.6122699559, + 2.533971784 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.533971784, + 45.6122699559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81245654b868ae342160e58eceed2a9870923ac1", + "fields": { + "code_commune_insee": "63234", + "nom_de_la_commune": "MONTAIGUT LE BLANC", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5863850519, + 3.07925191624 + ], + "libelle_d_acheminement": "MONTAIGUT LE BLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07925191624, + 45.5863850519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7561120685be13f15cb6482da646dfad3e88769", + "fields": { + "code_commune_insee": "63236", + "nom_de_la_commune": "MONT DORE", + "code_postal": "63240", + "coordonnees_gps": [ + 45.5760999131, + 2.80995918175 + ], + "libelle_d_acheminement": "LE MONT DORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80995918175, + 45.5760999131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1a374315370859a5a3b875c01375392ac19dcad", + "fields": { + "code_commune_insee": "63237", + "nom_de_la_commune": "MONTEL DE GELAT", + "code_postal": "63380", + "coordonnees_gps": [ + 45.9390596742, + 2.58561989591 + ], + "libelle_d_acheminement": "MONTEL DE GELAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58561989591, + 45.9390596742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7da1f6015ec0dccf00508a55a72d32bf9b5a71d1", + "fields": { + "code_commune_insee": "63243", + "nom_de_la_commune": "MOUREUILLE", + "code_postal": "63700", + "coordonnees_gps": [ + 46.1626033559, + 2.89026644721 + ], + "libelle_d_acheminement": "MOUREUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89026644721, + 46.1626033559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e385efe1ff343199fbecfc3face35cc4ce941ae", + "fields": { + "code_commune_insee": "63247", + "nom_de_la_commune": "MUROL", + "code_postal": "63790", + "coordonnees_gps": [ + 45.5865050744, + 2.92277959567 + ], + "libelle_d_acheminement": "MUROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92277959567, + 45.5865050744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71b3b91110f23e22b3c61872d06e7339d977d396", + "fields": { + "code_commune_insee": "63250", + "nom_de_la_commune": "NESCHERS", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5918097021, + 3.16530927442 + ], + "libelle_d_acheminement": "NESCHERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16530927442, + 45.5918097021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59604862382a2b4da22e98b04abc128b8b416a75", + "fields": { + "ligne_5": "NONETTE", + "code_commune_insee": "63255", + "libelle_d_acheminement": "NONETTE ORSONNETTE", + "code_postal": "63340", + "nom_de_la_commune": "NONETTE ORSONNETTE", + "coordonnees_gps": [ + 45.4846982805, + 3.28374300124 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28374300124, + 45.4846982805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7a942ff122ed1b6c58d1f82d5b3c49671645f93", + "fields": { + "code_commune_insee": "63262", + "nom_de_la_commune": "ORCET", + "code_postal": "63670", + "coordonnees_gps": [ + 45.7054352684, + 3.1740367528 + ], + "libelle_d_acheminement": "ORCET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1740367528, + 45.7054352684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6822c731048e5c13212e0f820474a24f7ef2574", + "fields": { + "code_commune_insee": "63263", + "nom_de_la_commune": "ORCINES", + "code_postal": "63870", + "coordonnees_gps": [ + 45.7867473066, + 2.99703586023 + ], + "libelle_d_acheminement": "ORCINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99703586023, + 45.7867473066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09381c8032909b750e342cf82601f3338430abeb", + "fields": { + "code_commune_insee": "63276", + "nom_de_la_commune": "PESCHADOIRES", + "code_postal": "63920", + "coordonnees_gps": [ + 45.8269406268, + 3.4811849091 + ], + "libelle_d_acheminement": "PESCHADOIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4811849091, + 45.8269406268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e65b6ee9f1cad58d51f00e9913c4774feaccbe8", + "fields": { + "code_commune_insee": "63279", + "nom_de_la_commune": "PICHERANDE", + "code_postal": "63113", + "coordonnees_gps": [ + 45.4694847916, + 2.79202815154 + ], + "libelle_d_acheminement": "PICHERANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79202815154, + 45.4694847916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be0c116c1e0b3cbf8fe91bd641e326542152bbf4", + "fields": { + "code_commune_insee": "63280", + "nom_de_la_commune": "PIGNOLS", + "code_postal": "63270", + "coordonnees_gps": [ + 45.6495248205, + 3.28545392206 + ], + "libelle_d_acheminement": "PIGNOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28545392206, + 45.6495248205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05d58e2fc8c168c9a22be37650b294820393a3dc", + "fields": { + "code_commune_insee": "63287", + "nom_de_la_commune": "LES PRADEAUX", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5132697587, + 3.29159884788 + ], + "libelle_d_acheminement": "LES PRADEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29159884788, + 45.5132697587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9121f6ddcbf4092261ce46e5ea2a796070e6051", + "fields": { + "code_commune_insee": "63288", + "nom_de_la_commune": "PROMPSAT", + "code_postal": "63200", + "coordonnees_gps": [ + 45.9450364846, + 3.07223860162 + ], + "libelle_d_acheminement": "PROMPSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07223860162, + 45.9450364846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f2d92376d972401aa8a67cf692e0021a6f32f29", + "fields": { + "code_commune_insee": "63291", + "nom_de_la_commune": "PUY GUILLAUME", + "code_postal": "63290", + "coordonnees_gps": [ + 45.9610998338, + 3.49732173113 + ], + "libelle_d_acheminement": "PUY GUILLAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49732173113, + 45.9610998338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92ff7178e262e2019b8668f9b4a183d3f89570f7", + "fields": { + "code_commune_insee": "63293", + "nom_de_la_commune": "LE QUARTIER", + "code_postal": "63330", + "coordonnees_gps": [ + 46.1220166679, + 2.76068293896 + ], + "libelle_d_acheminement": "LE QUARTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76068293896, + 46.1220166679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "292d2e9917e334845bdb624a2e73da96deeb5a16", + "fields": { + "code_commune_insee": "63294", + "nom_de_la_commune": "QUEUILLE", + "code_postal": "63780", + "coordonnees_gps": [ + 45.9728708366, + 2.83726186484 + ], + "libelle_d_acheminement": "QUEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83726186484, + 45.9728708366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64417b5783a4d0c9ee4123b4acd3b3cf45497d31", + "fields": { + "code_commune_insee": "63295", + "nom_de_la_commune": "RANDAN", + "code_postal": "63310", + "coordonnees_gps": [ + 46.0116125087, + 3.36364426205 + ], + "libelle_d_acheminement": "RANDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36364426205, + 46.0116125087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cb7d65bd529b966e34ceb04d85048e852a2e4e3", + "fields": { + "code_commune_insee": "63298", + "nom_de_la_commune": "LA RENAUDIE", + "code_postal": "63930", + "coordonnees_gps": [ + 45.7414767056, + 3.70950857493 + ], + "libelle_d_acheminement": "LA RENAUDIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70950857493, + 45.7414767056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b64931e5811c9138a1a2493b979809115c278a14", + "fields": { + "code_commune_insee": "63299", + "nom_de_la_commune": "RENTIERES", + "code_postal": "63420", + "coordonnees_gps": [ + 45.4251236978, + 3.11962739468 + ], + "libelle_d_acheminement": "RENTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11962739468, + 45.4251236978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb1568b8280ed1d6b6468978ce40fe8135d05ce9", + "fields": { + "ligne_5": "LA MAYRAND", + "code_commune_insee": "63303", + "libelle_d_acheminement": "ROCHE CHARLES LA MAYRAND", + "code_postal": "63420", + "nom_de_la_commune": "ROCHE CHARLES LA MAYRAND", + "coordonnees_gps": [ + 45.447450625, + 3.02047016292 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02047016292, + 45.447450625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bb935c124a0822299d8b911b830014a278ac31c", + "fields": { + "code_commune_insee": "63306", + "nom_de_la_commune": "LA ROCHE NOIRE", + "code_postal": "63800", + "coordonnees_gps": [ + 45.7136067003, + 3.22320975881 + ], + "libelle_d_acheminement": "LA ROCHE NOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22320975881, + 45.7136067003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89db0acc1492df8fb040942df5a5896f1139a02e", + "fields": { + "code_commune_insee": "63307", + "nom_de_la_commune": "ROMAGNAT", + "code_postal": "63540", + "coordonnees_gps": [ + 45.7210583634, + 3.08824671856 + ], + "libelle_d_acheminement": "ROMAGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08824671856, + 45.7210583634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9663eb257459a2d0d005dcb8e5ef27165ddb49ad", + "fields": { + "code_commune_insee": "63321", + "nom_de_la_commune": "ST BABEL", + "code_postal": "63500", + "coordonnees_gps": [ + 45.6026972387, + 3.30047875727 + ], + "libelle_d_acheminement": "ST BABEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30047875727, + 45.6026972387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b0713f36bd29db93aef02a375775e76f984a62c", + "fields": { + "code_commune_insee": "63322", + "nom_de_la_commune": "ST BEAUZIRE", + "code_postal": "63360", + "coordonnees_gps": [ + 45.8545444146, + 3.184257017 + ], + "libelle_d_acheminement": "ST BEAUZIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.184257017, + 45.8545444146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b344863082e1873581983bf31e20e7f304f1dcf8", + "fields": { + "code_commune_insee": "63327", + "nom_de_la_commune": "ST BONNET PRES RIOM", + "code_postal": "63200", + "coordonnees_gps": [ + 45.9285193382, + 3.11628669554 + ], + "libelle_d_acheminement": "ST BONNET PRES RIOM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11628669554, + 45.9285193382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27f16dc3d79b70bb84aaa4128220b9f50f0aea05", + "fields": { + "ligne_5": "CRESTE", + "code_commune_insee": "63335", + "libelle_d_acheminement": "ST DIERY", + "code_postal": "63320", + "nom_de_la_commune": "ST DIERY", + "coordonnees_gps": [ + 45.5401220112, + 3.00891497802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00891497802, + 45.5401220112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbe5301f4201191d372e506355a14577615853b4", + "fields": { + "code_commune_insee": "63340", + "nom_de_la_commune": "ST ETIENNE SUR USSON", + "code_postal": "63580", + "coordonnees_gps": [ + 45.5076408755, + 3.40099762607 + ], + "libelle_d_acheminement": "ST ETIENNE SUR USSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40099762607, + 45.5076408755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f891a116e62996015ac536bf5a9b9f487b9ce6f4", + "fields": { + "code_commune_insee": "63343", + "nom_de_la_commune": "ST FLOUR L ETANG", + "code_postal": "63520", + "coordonnees_gps": [ + 45.7110854172, + 3.51007845153 + ], + "libelle_d_acheminement": "ST FLOUR L ETANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51007845153, + 45.7110854172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d0aef6b3b3bba6bb49682856d810eed98fefe94", + "fields": { + "ligne_5": "FONT FREYDE", + "code_commune_insee": "63345", + "libelle_d_acheminement": "ST GENES CHAMPANELLE", + "code_postal": "63122", + "nom_de_la_commune": "ST GENES CHAMPANELLE", + "coordonnees_gps": [ + 45.722927873, + 2.99890145376 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99890145376, + 45.722927873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b8d46926a20bdba2e4162305b307f4b58ea2d54", + "fields": { + "ligne_5": "THEIX", + "code_commune_insee": "63345", + "libelle_d_acheminement": "ST GENES CHAMPANELLE", + "code_postal": "63122", + "nom_de_la_commune": "ST GENES CHAMPANELLE", + "coordonnees_gps": [ + 45.722927873, + 2.99890145376 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99890145376, + 45.722927873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27943a9dc372eba9800e26e699ac422aba15f1f8", + "fields": { + "code_commune_insee": "63350", + "nom_de_la_commune": "ST GEORGES SUR ALLIER", + "code_postal": "63800", + "coordonnees_gps": [ + 45.7146185494, + 3.26081077344 + ], + "libelle_d_acheminement": "ST GEORGES SUR ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26081077344, + 45.7146185494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc6d27ac003f92561cc2549529798aea45d580ac", + "fields": { + "code_commune_insee": "63353", + "nom_de_la_commune": "ST GERMAIN L HERM", + "code_postal": "63630", + "coordonnees_gps": [ + 45.4628350355, + 3.54468862687 + ], + "libelle_d_acheminement": "ST GERMAIN L HERM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54468862687, + 45.4628350355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30d635e05f914ede8b03fc513edfcdb62090c7d4", + "fields": { + "code_commune_insee": "63356", + "nom_de_la_commune": "ST GERVAZY", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4012733362, + 3.21294721972 + ], + "libelle_d_acheminement": "ST GERVAZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21294721972, + 45.4012733362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac1a5124de52e9f0319dfbaa854e412548de46a2", + "fields": { + "code_commune_insee": "63364", + "nom_de_la_commune": "ST JEAN D HEURS", + "code_postal": "63190", + "coordonnees_gps": [ + 45.8149832501, + 3.44648739262 + ], + "libelle_d_acheminement": "ST JEAN D HEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44648739262, + 45.8149832501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a667f15f330bcecec91194c9578f2a617aed141", + "fields": { + "code_commune_insee": "63365", + "nom_de_la_commune": "ST JEAN DES OLLIERES", + "code_postal": "63520", + "coordonnees_gps": [ + 45.6417405578, + 3.43719352048 + ], + "libelle_d_acheminement": "ST JEAN DES OLLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43719352048, + 45.6417405578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0170b751eef1e65ce697c37ee018db65ec0ada82", + "fields": { + "code_commune_insee": "63366", + "nom_de_la_commune": "ST JEAN EN VAL", + "code_postal": "63490", + "coordonnees_gps": [ + 45.512805827, + 3.36496437735 + ], + "libelle_d_acheminement": "ST JEAN EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36496437735, + 45.512805827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5baeef73c4061b904d87a479e7e194addab01666", + "fields": { + "code_commune_insee": "63371", + "nom_de_la_commune": "ST JUST", + "code_postal": "63600", + "coordonnees_gps": [ + 45.4584826405, + 3.80945921845 + ], + "libelle_d_acheminement": "ST JUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80945921845, + 45.4584826405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5ab096da8742e9ca3be1f4dc3c9e861246504f4", + "fields": { + "code_commune_insee": "63374", + "nom_de_la_commune": "ST MARTIN DES OLMES", + "code_postal": "63600", + "coordonnees_gps": [ + 45.5270156748, + 3.80419164583 + ], + "libelle_d_acheminement": "ST MARTIN DES OLMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80419164583, + 45.5270156748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f7acdbfded0ac06e976a4147fa15bb80932a331", + "fields": { + "code_commune_insee": "63375", + "nom_de_la_commune": "ST MARTIN DES PLAINS", + "code_postal": "63570", + "coordonnees_gps": [ + 45.4950315603, + 3.311046762 + ], + "libelle_d_acheminement": "ST MARTIN DES PLAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.311046762, + 45.4950315603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3ead99cf9fc65ad8060a90b7b4a6dc6c17d6012", + "fields": { + "code_commune_insee": "63384", + "nom_de_la_commune": "ST PIERRE LA BOURLHONNE", + "code_postal": "63480", + "coordonnees_gps": [ + 45.6770583346, + 3.75497395692 + ], + "libelle_d_acheminement": "ST PIERRE LA BOURLHONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75497395692, + 45.6770583346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f7ed46d8e1c254f1837adc8b6185e93353e9afb", + "fields": { + "code_commune_insee": "63389", + "nom_de_la_commune": "ST QUENTIN SUR SAUXILLANGES", + "code_postal": "63490", + "coordonnees_gps": [ + 45.5452461177, + 3.41588566339 + ], + "libelle_d_acheminement": "ST QUENTIN SUR SAUXILLANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41588566339, + 45.5452461177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "924aa3cbb7349eb7995e2a1cd23eb8e16917d577", + "fields": { + "code_commune_insee": "63390", + "nom_de_la_commune": "ST QUINTIN SUR SIOULE", + "code_postal": "63440", + "coordonnees_gps": [ + 46.0925408247, + 3.06946747154 + ], + "libelle_d_acheminement": "ST QUINTIN SUR SIOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06946747154, + 46.0925408247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae52a7cea64e77e95edfd081ecc83aaff8421c2c", + "fields": { + "code_commune_insee": "63392", + "nom_de_la_commune": "ST REMY DE CHARGNAT", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5095851539, + 3.32523243931 + ], + "libelle_d_acheminement": "ST REMY DE CHARGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32523243931, + 45.5095851539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1f4b29347e5ad065102c1da66a0813eeef71583", + "fields": { + "code_commune_insee": "63403", + "nom_de_la_commune": "ST VINCENT", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5472176594, + 3.12590149636 + ], + "libelle_d_acheminement": "ST VINCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12590149636, + 45.5472176594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afab0c134479ed2cc1120f67e25b3f6b0b296e04", + "fields": { + "code_commune_insee": "63405", + "nom_de_la_commune": "SALLEDES", + "code_postal": "63270", + "coordonnees_gps": [ + 45.6462597262, + 3.32585901323 + ], + "libelle_d_acheminement": "SALLEDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32585901323, + 45.6462597262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "638e3e5287ab878d3f3622dc8c4c5311f16caa05", + "fields": { + "code_commune_insee": "63409", + "nom_de_la_commune": "SAURIER", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5357694302, + 3.05522089662 + ], + "libelle_d_acheminement": "SAURIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05522089662, + 45.5357694302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c1852b0958d7c5c10f7134e84a32ee45dfd1dcc", + "fields": { + "code_commune_insee": "63416", + "nom_de_la_commune": "SAVENNES", + "code_postal": "63750", + "coordonnees_gps": [ + 45.5804099944, + 2.49690892919 + ], + "libelle_d_acheminement": "SAVENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49690892919, + 45.5804099944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b22b0cb8ca04360ac35e9606a374918070020fad", + "fields": { + "code_commune_insee": "63418", + "nom_de_la_commune": "SERMENTIZON", + "code_postal": "63120", + "coordonnees_gps": [ + 45.7640786806, + 3.48570267684 + ], + "libelle_d_acheminement": "SERMENTIZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48570267684, + 45.7640786806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a13dd3a244d9e6980b6167e33b45acec869f95cc", + "fields": { + "code_commune_insee": "63420", + "nom_de_la_commune": "SEYCHALLES", + "code_postal": "63190", + "coordonnees_gps": [ + 45.8064341619, + 3.33651456543 + ], + "libelle_d_acheminement": "SEYCHALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33651456543, + 45.8064341619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d46983d768829419608b90cc0d0fe85e0c4ffe15", + "fields": { + "code_commune_insee": "63421", + "nom_de_la_commune": "SINGLES", + "code_postal": "63690", + "coordonnees_gps": [ + 45.5600798415, + 2.55206331215 + ], + "libelle_d_acheminement": "SINGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55206331215, + 45.5600798415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "256d45e6b7beeed0435338a5b4759a05ccaffb68", + "fields": { + "code_commune_insee": "63422", + "nom_de_la_commune": "SOLIGNAT", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5234450562, + 3.18541001355 + ], + "libelle_d_acheminement": "SOLIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18541001355, + 45.5234450562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c16f9edf5815ee7ff21717aa43d72586cf45ea1", + "fields": { + "code_commune_insee": "63425", + "nom_de_la_commune": "TALLENDE", + "code_postal": "63450", + "coordonnees_gps": [ + 45.661669969, + 3.13374681277 + ], + "libelle_d_acheminement": "TALLENDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13374681277, + 45.661669969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b42df1a46b1559a806c96f743fe7cfd3161779a", + "fields": { + "code_commune_insee": "63432", + "nom_de_la_commune": "THURET", + "code_postal": "63260", + "coordonnees_gps": [ + 45.9738532514, + 3.26184697421 + ], + "libelle_d_acheminement": "THURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26184697421, + 45.9738532514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "050ce2f1fcbbc41c29a1b021f37d12a96cc5b0c3", + "fields": { + "code_commune_insee": "63434", + "nom_de_la_commune": "TOURS SUR MEYMONT", + "code_postal": "63590", + "coordonnees_gps": [ + 45.6740219658, + 3.57621725614 + ], + "libelle_d_acheminement": "TOURS SUR MEYMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57621725614, + 45.6740219658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "596a87e5b0ae38ee3963358e3c0a78524dc6f40c", + "fields": { + "code_commune_insee": "63445", + "nom_de_la_commune": "VASSEL", + "code_postal": "63910", + "coordonnees_gps": [ + 45.7605313754, + 3.31232153494 + ], + "libelle_d_acheminement": "VASSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31232153494, + 45.7605313754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cb811b9f60b62c418f25fedd796b67b8ee0dcbe", + "fields": { + "code_commune_insee": "63447", + "nom_de_la_commune": "VERGHEAS", + "code_postal": "63330", + "coordonnees_gps": [ + 46.0244493253, + 2.62233135761 + ], + "libelle_d_acheminement": "VERGHEAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62233135761, + 46.0244493253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79e43e11e2d8be54940fff2e919a0eb0a76059ed", + "fields": { + "code_commune_insee": "63450", + "nom_de_la_commune": "VERNEUGHEOL", + "code_postal": "63470", + "coordonnees_gps": [ + 45.7554248044, + 2.52012470345 + ], + "libelle_d_acheminement": "VERNEUGHEOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52012470345, + 45.7554248044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d280fa617c4e3d93d5c97267b7095a7b4c257f8", + "fields": { + "code_commune_insee": "63451", + "nom_de_la_commune": "VERNINES", + "code_postal": "63210", + "coordonnees_gps": [ + 45.6674200897, + 2.87779660364 + ], + "libelle_d_acheminement": "VERNINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87779660364, + 45.6674200897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f18603ab62a4962dc69b8549e66971a568511a1f", + "fields": { + "ligne_5": "LONGUES", + "code_commune_insee": "63457", + "libelle_d_acheminement": "VIC LE COMTE", + "code_postal": "63270", + "nom_de_la_commune": "VIC LE COMTE", + "coordonnees_gps": [ + 45.6440673683, + 3.24047430326 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24047430326, + 45.6440673683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c7292b438de220bebf14621894524dd00149303", + "fields": { + "code_commune_insee": "63464", + "nom_de_la_commune": "VITRAC", + "code_postal": "63410", + "coordonnees_gps": [ + 45.9786269052, + 2.89497191528 + ], + "libelle_d_acheminement": "VITRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89497191528, + 45.9786269052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "590b8af7c74bb66be91c8b406b303dcb31978063", + "fields": { + "code_commune_insee": "63465", + "nom_de_la_commune": "VIVEROLS", + "code_postal": "63840", + "coordonnees_gps": [ + 45.4323678185, + 3.88146996654 + ], + "libelle_d_acheminement": "VIVEROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88146996654, + 45.4323678185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dc6165e9c6296ef0868661413534ee054ed0667", + "fields": { + "code_commune_insee": "63466", + "nom_de_la_commune": "VODABLE", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5041326781, + 3.13460645088 + ], + "libelle_d_acheminement": "VODABLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13460645088, + 45.5041326781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6ea94fd023cea0b419452ab6092c495ce984c1d", + "fields": { + "code_commune_insee": "63467", + "nom_de_la_commune": "VOINGT", + "code_postal": "63620", + "coordonnees_gps": [ + 45.8061372767, + 2.54054574233 + ], + "libelle_d_acheminement": "VOINGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54054574233, + 45.8061372767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d749debdf41343cf06316acaa141da14c15531f", + "fields": { + "code_commune_insee": "63470", + "nom_de_la_commune": "VOLVIC", + "code_postal": "63530", + "coordonnees_gps": [ + 45.8681922975, + 3.01900139762 + ], + "libelle_d_acheminement": "VOLVIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01900139762, + 45.8681922975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b6c5fcfaf0c3bc274b5891f25ed9ddc7877a628", + "fields": { + "code_commune_insee": "64001", + "nom_de_la_commune": "AAST", + "code_postal": "64460", + "coordonnees_gps": [ + 43.2908772184, + -0.0817726913902 + ], + "libelle_d_acheminement": "AAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0817726913902, + 43.2908772184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "870e9137479b5c8942f1ec9af1812158635f1ac9", + "fields": { + "code_commune_insee": "64006", + "nom_de_la_commune": "ACCOUS", + "code_postal": "64490", + "coordonnees_gps": [ + 42.9398080836, + -0.579066514702 + ], + "libelle_d_acheminement": "ACCOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.579066514702, + 42.9398080836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ffb2fd3c64803b7dd670ede0a3b145807923f52", + "fields": { + "code_commune_insee": "64007", + "nom_de_la_commune": "AGNOS", + "code_postal": "64400", + "coordonnees_gps": [ + 43.1539224601, + -0.62932795894 + ], + "libelle_d_acheminement": "AGNOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62932795894, + 43.1539224601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bb4e5a85726fc6d20ed5b322d689c0459719c78", + "fields": { + "code_commune_insee": "64022", + "nom_de_la_commune": "ANDREIN", + "code_postal": "64390", + "coordonnees_gps": [ + 43.3997122836, + -0.889281632405 + ], + "libelle_d_acheminement": "ANDREIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889281632405, + 43.3997122836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb8d6aabdc9ede108d8a7dd14b4e3961e0ddd765", + "fields": { + "code_commune_insee": "64040", + "nom_de_la_commune": "ARETTE", + "code_postal": "64570", + "coordonnees_gps": [ + 43.0398698092, + -0.735693683266 + ], + "libelle_d_acheminement": "ARETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.735693683266, + 43.0398698092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0479d2f3201cba1a9864588775b1654313c3bbf5", + "fields": { + "code_commune_insee": "64051", + "nom_de_la_commune": "ARRAUTE CHARRITTE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.419824465, + -1.11344095243 + ], + "libelle_d_acheminement": "ARRAUTE CHARRITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11344095243, + 43.419824465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e4233ee266385b08eaf7bc380fc62ed7473aab4", + "fields": { + "code_commune_insee": "64054", + "nom_de_la_commune": "ARROS DE NAY", + "code_postal": "64800", + "coordonnees_gps": [ + 43.1823198948, + -0.294968827477 + ], + "libelle_d_acheminement": "ARROS DE NAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.294968827477, + 43.1823198948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22ac68fa61ce7665a85e35ff4fede229688456cd", + "fields": { + "code_commune_insee": "64060", + "nom_de_la_commune": "ARTIGUELOUVE", + "code_postal": "64230", + "coordonnees_gps": [ + 43.3137207808, + -0.473057611318 + ], + "libelle_d_acheminement": "ARTIGUELOUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.473057611318, + 43.3137207808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "129ea5dea13f67861158f6727d7bce2f100be4c2", + "fields": { + "code_commune_insee": "64063", + "nom_de_la_commune": "ARZACQ ARRAZIGUET", + "code_postal": "64410", + "coordonnees_gps": [ + 43.5410756338, + -0.424773783669 + ], + "libelle_d_acheminement": "ARZACQ ARRAZIGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.424773783669, + 43.5410756338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b64147ba6cc5b629d22bd8e644ccda93fa7c3c55", + "fields": { + "code_commune_insee": "64066", + "nom_de_la_commune": "ASCARAT", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1831619914, + -1.26301579695 + ], + "libelle_d_acheminement": "ASCARAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26301579695, + 43.1831619914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "516766e05548145661f15b83e08f9793153e61bc", + "fields": { + "code_commune_insee": "64078", + "nom_de_la_commune": "AURIAC", + "code_postal": "64450", + "coordonnees_gps": [ + 43.4534554702, + -0.319474009911 + ], + "libelle_d_acheminement": "AURIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.319474009911, + 43.4534554702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8492b27e63b0c211799cb64890a05365fb343e82", + "fields": { + "code_commune_insee": "64079", + "nom_de_la_commune": "AURIONS IDERNES", + "code_postal": "64350", + "coordonnees_gps": [ + 43.53116782, + -0.130770309579 + ], + "libelle_d_acheminement": "AURIONS IDERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.130770309579, + 43.53116782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b096df73011e75cb1ff5beb3a417c4426fb206a", + "fields": { + "code_commune_insee": "64080", + "nom_de_la_commune": "AUSSEVIELLE", + "code_postal": "64230", + "coordonnees_gps": [ + 43.3584012455, + -0.479170118376 + ], + "libelle_d_acheminement": "AUSSEVIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479170118376, + 43.3584012455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66d422e9bfcb276f7f1aa007e2a2410d1abf9afb", + "fields": { + "code_commune_insee": "64081", + "nom_de_la_commune": "AUSSURUCQ", + "code_postal": "64130", + "coordonnees_gps": [ + 43.1289596051, + -0.978843273973 + ], + "libelle_d_acheminement": "AUSSURUCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.978843273973, + 43.1289596051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13f27bccebdb4b88cffa46881679e2f0a635d0bc", + "fields": { + "code_commune_insee": "64091", + "nom_de_la_commune": "BALIROS", + "code_postal": "64510", + "coordonnees_gps": [ + 43.2285177341, + -0.308318533909 + ], + "libelle_d_acheminement": "BALIROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.308318533909, + 43.2285177341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f776cf84c0a0424a14a87a17306fddd7857b918", + "fields": { + "code_commune_insee": "64092", + "nom_de_la_commune": "BANCA", + "code_postal": "64430", + "coordonnees_gps": [ + 43.1001307168, + -1.37160784191 + ], + "libelle_d_acheminement": "BANCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37160784191, + 43.1001307168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf24a4d9a3e1d2395a718686f37730026af5757f", + "fields": { + "code_commune_insee": "64093", + "nom_de_la_commune": "BARCUS", + "code_postal": "64130", + "coordonnees_gps": [ + 43.1772515324, + -0.794679831418 + ], + "libelle_d_acheminement": "BARCUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.794679831418, + 43.1772515324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de2a0966d919a35c59114951b46ef80dcb2353e6", + "fields": { + "code_commune_insee": "64099", + "nom_de_la_commune": "BASTANES", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3528261826, + -0.752484725384 + ], + "libelle_d_acheminement": "BASTANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.752484725384, + 43.3528261826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18c8048f6bf65100800e1f091944a04ea083810f", + "fields": { + "code_commune_insee": "64101", + "nom_de_la_commune": "BAUDREIX", + "code_postal": "64800", + "coordonnees_gps": [ + 43.2056641864, + -0.258861524454 + ], + "libelle_d_acheminement": "BAUDREIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.258861524454, + 43.2056641864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6373419d130c46e142c2b67445db6bdef8f8aff0", + "fields": { + "code_commune_insee": "64104", + "nom_de_la_commune": "BEDOUS", + "code_postal": "64490", + "coordonnees_gps": [ + 43.0056214728, + -0.588165067203 + ], + "libelle_d_acheminement": "BEDOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.588165067203, + 43.0056214728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d18d6e4252520aec3fafd512502b906b6f084eb1", + "fields": { + "code_commune_insee": "64105", + "nom_de_la_commune": "BEGUIOS", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3510821409, + -1.09745249473 + ], + "libelle_d_acheminement": "BEGUIOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09745249473, + 43.3510821409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a31eee65b12cdc873a4860f43432532029e00ee6", + "fields": { + "code_commune_insee": "64108", + "nom_de_la_commune": "BELLOCQ", + "code_postal": "64270", + "coordonnees_gps": [ + 43.5092272402, + -0.921264118611 + ], + "libelle_d_acheminement": "BELLOCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.921264118611, + 43.5092272402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "994ce4cdf83797e8c134da8ff7f4947550235c90", + "fields": { + "code_commune_insee": "64113", + "nom_de_la_commune": "BERGOUEY VIELLENAVE", + "code_postal": "64270", + "coordonnees_gps": [ + 43.4248305248, + -1.06247099125 + ], + "libelle_d_acheminement": "BERGOUEY VIELLENAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06247099125, + 43.4248305248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed5eb099efb01e9f4befe726c2c72107243ae2ac", + "fields": { + "code_commune_insee": "64117", + "nom_de_la_commune": "BESINGRAND", + "code_postal": "64150", + "coordonnees_gps": [ + 43.3742085086, + -0.568868568942 + ], + "libelle_d_acheminement": "BESINGRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.568868568942, + 43.3742085086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75a7501505ed335e56243f7a459ff29159a8d1fc", + "fields": { + "code_commune_insee": "64120", + "nom_de_la_commune": "BEYRIE SUR JOYEUSE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3108779849, + -1.09656956349 + ], + "libelle_d_acheminement": "BEYRIE SUR JOYEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09656956349, + 43.3108779849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66ea6bcbd884df57352da6a9d68c61d826f16cc5", + "fields": { + "code_commune_insee": "64140", + "nom_de_la_commune": "BOUCAU", + "code_postal": "64340", + "coordonnees_gps": [ + 43.52540846, + -1.48001541381 + ], + "libelle_d_acheminement": "BOUCAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48001541381, + 43.52540846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb83bacbc11a06e13db03df518f7da73d48ef27e", + "fields": { + "code_commune_insee": "64142", + "nom_de_la_commune": "BOUGARBER", + "code_postal": "64230", + "coordonnees_gps": [ + 43.3916441338, + -0.469336082949 + ], + "libelle_d_acheminement": "BOUGARBER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.469336082949, + 43.3916441338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56ab62078c036434b999840f1100fb926e68ff8d", + "fields": { + "code_commune_insee": "64145", + "nom_de_la_commune": "BOURDETTES", + "code_postal": "64800", + "coordonnees_gps": [ + 43.1941285363, + -0.270250092047 + ], + "libelle_d_acheminement": "BOURDETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.270250092047, + 43.1941285363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0beb22680a7f19983922acfb8b38054c0e26700", + "fields": { + "code_commune_insee": "64147", + "nom_de_la_commune": "BRISCOUS", + "code_postal": "64240", + "coordonnees_gps": [ + 43.4564293033, + -1.32475876534 + ], + "libelle_d_acheminement": "BRISCOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32475876534, + 43.4564293033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28ca979df5363495b9441aa929fe32aa147d94b6", + "fields": { + "code_commune_insee": "64148", + "nom_de_la_commune": "BRUGES CAPBIS MIFAGET", + "code_postal": "64800", + "coordonnees_gps": [ + 43.1253072219, + -0.303486553374 + ], + "libelle_d_acheminement": "BRUGES CAPBIS MIFAGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.303486553374, + 43.1253072219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b2fbcac524594bb004b158da075f85c3f82ea3a", + "fields": { + "ligne_5": "CAPBIS", + "code_commune_insee": "64148", + "libelle_d_acheminement": "BRUGES CAPBIS MIFAGET", + "code_postal": "64800", + "nom_de_la_commune": "BRUGES CAPBIS MIFAGET", + "coordonnees_gps": [ + 43.1253072219, + -0.303486553374 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.303486553374, + 43.1253072219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e6b71775002fb272fa18d97ae351acdd458296a", + "fields": { + "code_commune_insee": "64158", + "nom_de_la_commune": "CABIDOS", + "code_postal": "64410", + "coordonnees_gps": [ + 43.5396790369, + -0.463748067374 + ], + "libelle_d_acheminement": "CABIDOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.463748067374, + 43.5396790369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c44c10e35e4ccd02dd46bd43cfa7bd95e04a518d", + "fields": { + "code_commune_insee": "64162", + "nom_de_la_commune": "CAMOU CIHIGUE", + "code_postal": "64470", + "coordonnees_gps": [ + 43.1187601878, + -0.921772960752 + ], + "libelle_d_acheminement": "CAMOU CIHIGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.921772960752, + 43.1187601878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b918577ca2b76fc68d4f61b4674b67494e966bd6", + "fields": { + "code_commune_insee": "64176", + "nom_de_la_commune": "CASTETBON", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3972591089, + -0.792417128449 + ], + "libelle_d_acheminement": "CASTETBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.792417128449, + 43.3972591089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a16d45efc2162e22b6e74bd2548e49acd7e72ed7", + "fields": { + "code_commune_insee": "64178", + "nom_de_la_commune": "CASTETNAU CAMBLONG", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3227014971, + -0.797193541473 + ], + "libelle_d_acheminement": "CASTETNAU CAMBLONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.797193541473, + 43.3227014971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "757b5965193ea721007f8e87da2ec958ef87ac73", + "fields": { + "code_commune_insee": "64185", + "nom_de_la_commune": "CETTE EYGUN", + "code_postal": "64490", + "coordonnees_gps": [ + 42.9364187767, + -0.568555169226 + ], + "libelle_d_acheminement": "CETTE EYGUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.568555169226, + 42.9364187767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de283e9cd71bc7cc2e3b1c324e71ca5b1277c17d", + "fields": { + "code_commune_insee": "64189", + "nom_de_la_commune": "CIBOURE", + "code_postal": "64500", + "coordonnees_gps": [ + 43.3749892489, + -1.66133753626 + ], + "libelle_d_acheminement": "CIBOURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66133753626, + 43.3749892489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "755b16832f9cf243d433ddf3f7dfe5e4ddcb6658", + "fields": { + "code_commune_insee": "64192", + "nom_de_la_commune": "CONCHEZ DE BEARN", + "code_postal": "64330", + "coordonnees_gps": [ + 43.546390844, + -0.168607821774 + ], + "libelle_d_acheminement": "CONCHEZ DE BEARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.168607821774, + 43.546390844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f180c84948d2d26e41a9a24bb65dbdb35fdd4d6f", + "fields": { + "code_commune_insee": "64194", + "nom_de_la_commune": "COSLEDAA LUBE BOAST", + "code_postal": "64160", + "coordonnees_gps": [ + 43.4521878366, + -0.22859543445 + ], + "libelle_d_acheminement": "COSLEDAA LUBE BOAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22859543445, + 43.4521878366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d8faa1ed32ac888a2edf028cf447301c9f5868e", + "fields": { + "code_commune_insee": "64202", + "nom_de_la_commune": "DOMEZAIN BERRAUTE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3266580674, + -0.966401773594 + ], + "libelle_d_acheminement": "DOMEZAIN BERRAUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.966401773594, + 43.3266580674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b44517c728978be0181d73a52805a02e7fece983", + "fields": { + "code_commune_insee": "64204", + "nom_de_la_commune": "EAUX BONNES", + "code_postal": "64440", + "coordonnees_gps": [ + 42.9515491129, + -0.358104565434 + ], + "libelle_d_acheminement": "EAUX BONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.358104565434, + 42.9515491129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b04b5f4b4d0b62a3706b8e8156ae1a99a0836dcf", + "fields": { + "code_commune_insee": "64206", + "nom_de_la_commune": "ESCOT", + "code_postal": "64490", + "coordonnees_gps": [ + 43.0782488645, + -0.565384866739 + ], + "libelle_d_acheminement": "ESCOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.565384866739, + 43.0782488645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8692321f553f616ada716cfd00ab0ba67a6cf101", + "fields": { + "code_commune_insee": "64208", + "nom_de_la_commune": "ESCOUBES", + "code_postal": "64160", + "coordonnees_gps": [ + 43.4184592644, + -0.243028871952 + ], + "libelle_d_acheminement": "ESCOUBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.243028871952, + 43.4184592644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2deb04b5ce0d50bb8f4d06cf7c395a18c2944b33", + "fields": { + "code_commune_insee": "64211", + "nom_de_la_commune": "ESLOURENTIES DABAN", + "code_postal": "64420", + "coordonnees_gps": [ + 43.2999541228, + -0.14066779788 + ], + "libelle_d_acheminement": "ESLOURENTIES DABAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14066779788, + 43.2999541228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10a01c5ecf3f63145da5f129b6d2715e2f8466cc", + "fields": { + "code_commune_insee": "64218", + "nom_de_la_commune": "ESTERENCUBY", + "code_postal": "64220", + "coordonnees_gps": [ + 43.0817332803, + -1.18186745197 + ], + "libelle_d_acheminement": "ESTERENCUBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18186745197, + 43.0817332803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f360a7d139a87eb0fa17822ed064fe4ab0092a8d", + "fields": { + "code_commune_insee": "64219", + "nom_de_la_commune": "ESTIALESCQ", + "code_postal": "64290", + "coordonnees_gps": [ + 43.220867957, + -0.551869962929 + ], + "libelle_d_acheminement": "ESTIALESCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.551869962929, + 43.220867957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a83428b14c7f999b11c58096e058aaabb979e56", + "fields": { + "code_commune_insee": "64224", + "nom_de_la_commune": "EYSUS", + "code_postal": "64400", + "coordonnees_gps": [ + 43.1367809349, + -0.583842190325 + ], + "libelle_d_acheminement": "EYSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.583842190325, + 43.1367809349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45f23eff28001d56d91d7e42f7c7ff04776b1410", + "fields": { + "code_commune_insee": "64227", + "nom_de_la_commune": "GABASTON", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3574296466, + -0.215532898213 + ], + "libelle_d_acheminement": "GABASTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.215532898213, + 43.3574296466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "254e5d2913a387b2739ceb2b0072777daa27c5cf", + "fields": { + "code_commune_insee": "64229", + "nom_de_la_commune": "GAMARTHE", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1951524207, + -1.13016306002 + ], + "libelle_d_acheminement": "GAMARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13016306002, + 43.1951524207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "326c806e6e1a2e90b54476c19776199ef09fc13f", + "fields": { + "code_commune_insee": "64233", + "nom_de_la_commune": "GARLIN", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5599586619, + -0.272296457605 + ], + "libelle_d_acheminement": "GARLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.272296457605, + 43.5599586619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "badb4b4d3dc330a87702090be410267dc5aafd5d", + "fields": { + "code_commune_insee": "64239", + "nom_de_la_commune": "GERDEREST", + "code_postal": "64160", + "coordonnees_gps": [ + 43.4091904721, + -0.170896858069 + ], + "libelle_d_acheminement": "GERDEREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.170896858069, + 43.4091904721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf98b103c517c0c3e575e8ad65b2fd1b426124ca", + "fields": { + "code_commune_insee": "64240", + "nom_de_la_commune": "GERE BELESTEN", + "code_postal": "64260", + "coordonnees_gps": [ + 43.0216111241, + -0.446673264564 + ], + "libelle_d_acheminement": "GERE BELESTEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.446673264564, + 43.0216111241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "700f37f02b30b25095d3410a929dece992f4c0d0", + "fields": { + "code_commune_insee": "64249", + "nom_de_la_commune": "GUETHARY", + "code_postal": "64210", + "coordonnees_gps": [ + 43.4216284725, + -1.61035485945 + ], + "libelle_d_acheminement": "GUETHARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61035485945, + 43.4216284725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "721dd4af2d27a4a894fa59ac523b4ff3f7eb5ffc", + "fields": { + "code_commune_insee": "64268", + "nom_de_la_commune": "IDAUX MENDY", + "code_postal": "64130", + "coordonnees_gps": [ + 43.1737848926, + -0.922656463962 + ], + "libelle_d_acheminement": "IDAUX MENDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.922656463962, + 43.1737848926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2011a70fd9cbb05d4327a080cc4dba6a281b07b9", + "fields": { + "code_commune_insee": "64270", + "nom_de_la_commune": "IGON", + "code_postal": "64800", + "coordonnees_gps": [ + 43.153240594, + -0.232545768454 + ], + "libelle_d_acheminement": "IGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.232545768454, + 43.153240594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8385200d1bb34b7f15ab122f464345eddbd82466", + "fields": { + "code_commune_insee": "64271", + "nom_de_la_commune": "IHOLDY", + "code_postal": "64640", + "coordonnees_gps": [ + 43.2735914336, + -1.17738320434 + ], + "libelle_d_acheminement": "IHOLDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17738320434, + 43.2735914336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53f6887e450ef73bde8a6311dc0ae3a9a93f088f", + "fields": { + "code_commune_insee": "64272", + "nom_de_la_commune": "ILHARRE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.4021965208, + -1.03242626315 + ], + "libelle_d_acheminement": "ILHARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03242626315, + 43.4021965208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a8312aa7ed65fa8dbce76834102a6954cb84032", + "fields": { + "code_commune_insee": "64276", + "nom_de_la_commune": "ISSOR", + "code_postal": "64570", + "coordonnees_gps": [ + 43.0901244813, + -0.658271988701 + ], + "libelle_d_acheminement": "ISSOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658271988701, + 43.0901244813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9102065f9de300dafaa5c30fb43f9305ae5fcbc7", + "fields": { + "code_commune_insee": "64292", + "nom_de_la_commune": "LABATMALE", + "code_postal": "64530", + "coordonnees_gps": [ + 43.1829361776, + -0.150153111393 + ], + "libelle_d_acheminement": "LABATMALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.150153111393, + 43.1829361776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5c5bb35fb9d81de6c4e158031cd6603207bcd51", + "fields": { + "code_commune_insee": "64315", + "nom_de_la_commune": "LAROIN", + "code_postal": "64110", + "coordonnees_gps": [ + 43.2974492378, + -0.436584051431 + ], + "libelle_d_acheminement": "LAROIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.436584051431, + 43.2974492378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4694cd389c1440291f16fb5aaa8136e222879fe6", + "fields": { + "code_commune_insee": "64319", + "nom_de_la_commune": "LARRIBAR SORHAPURU", + "code_postal": "64120", + "coordonnees_gps": [ + 43.290356098, + -1.00299694901 + ], + "libelle_d_acheminement": "LARRIBAR SORHAPURU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00299694901, + 43.290356098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "467c08217598b432ad7b5c4c1a6e454e2a241e62", + "fields": { + "ligne_5": "GABAS", + "code_commune_insee": "64320", + "libelle_d_acheminement": "LARUNS", + "code_postal": "64440", + "nom_de_la_commune": "LARUNS", + "coordonnees_gps": [ + 42.8923840962, + -0.419704380499 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.419704380499, + 42.8923840962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1ca3139fcf896168b885db7fc2a34e69f644fa0", + "fields": { + "code_commune_insee": "64321", + "nom_de_la_commune": "LASCLAVERIES", + "code_postal": "64450", + "coordonnees_gps": [ + 43.4339584385, + -0.291563063654 + ], + "libelle_d_acheminement": "LASCLAVERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.291563063654, + 43.4339584385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccaecbb1f0a680fcb849ec17a019952363015055", + "fields": { + "code_commune_insee": "64334", + "nom_de_la_commune": "LEREN", + "code_postal": "64270", + "coordonnees_gps": [ + 43.503711716, + -1.0502356112 + ], + "libelle_d_acheminement": "LEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0502356112, + 43.503711716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16c0c50713b87d545465ea838488c34bf1ced634", + "fields": { + "code_commune_insee": "64339", + "nom_de_la_commune": "LESTELLE BETHARRAM", + "code_postal": "64800", + "coordonnees_gps": [ + 43.1218161618, + -0.213848358539 + ], + "libelle_d_acheminement": "LESTELLE BETHARRAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.213848358539, + 43.1218161618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1211ca7f86e10be467bfabe6415d35ba98416f24", + "fields": { + "code_commune_insee": "64340", + "nom_de_la_commune": "LICHANS SUNHAR", + "code_postal": "64470", + "coordonnees_gps": [ + 43.0928633026, + -0.881047174356 + ], + "libelle_d_acheminement": "LICHANS SUNHAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.881047174356, + 43.0928633026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b864ef13ad8a8b9db45a002c69225e3e7d0486fa", + "fields": { + "code_commune_insee": "64342", + "nom_de_la_commune": "LICQ ATHEREY", + "code_postal": "64560", + "coordonnees_gps": [ + 43.0554346058, + -0.87881299213 + ], + "libelle_d_acheminement": "LICQ ATHEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87881299213, + 43.0554346058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48a5be8ea07294f1a87225f1e187ef5713963fd6", + "fields": { + "code_commune_insee": "64347", + "nom_de_la_commune": "LONCON", + "code_postal": "64410", + "coordonnees_gps": [ + 43.4709402635, + -0.419531707158 + ], + "libelle_d_acheminement": "LONCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.419531707158, + 43.4709402635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c9a6e0c5d11ddf1c8b9832287309f9caa686a8f", + "fields": { + "code_commune_insee": "64357", + "nom_de_la_commune": "LUCARRE", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4036827051, + -0.0849144725176 + ], + "libelle_d_acheminement": "LUCARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0849144725176, + 43.4036827051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "372ee7741c2468f3e50811b611364004a5f6c36b", + "fields": { + "code_commune_insee": "64361", + "nom_de_la_commune": "LUSSAGNET LUSSON", + "code_postal": "64160", + "coordonnees_gps": [ + 43.4423563274, + -0.199025557867 + ], + "libelle_d_acheminement": "LUSSAGNET LUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.199025557867, + 43.4423563274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5fd06ebd06a0e0be1622318e72594d36bb2f455", + "fields": { + "code_commune_insee": "64367", + "nom_de_la_commune": "MASLACQ", + "code_postal": "64300", + "coordonnees_gps": [ + 43.42655357, + -0.698940013436 + ], + "libelle_d_acheminement": "MASLACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.698940013436, + 43.42655357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f14b90eae903c9343b322bfdae1b8b058105fe8", + "fields": { + "code_commune_insee": "64373", + "nom_de_la_commune": "MAZERES LEZONS", + "code_postal": "64110", + "coordonnees_gps": [ + 43.2732972829, + -0.35479385766 + ], + "libelle_d_acheminement": "MAZERES LEZONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35479385766, + 43.2732972829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0bc49ad4e7e3d6f91946bab5bf13c1b4d249d19", + "fields": { + "code_commune_insee": "64374", + "nom_de_la_commune": "MAZEROLLES", + "code_postal": "64230", + "coordonnees_gps": [ + 43.443213137, + -0.478568880464 + ], + "libelle_d_acheminement": "MAZEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.478568880464, + 43.443213137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fe19f2de6010b8bec281fcf944237f9b60880f2", + "fields": { + "code_commune_insee": "64375", + "nom_de_la_commune": "MEHARIN", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3311255336, + -1.15068722067 + ], + "libelle_d_acheminement": "MEHARIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15068722067, + 43.3311255336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac3fb687abe997135e939d5e87abf8bbd4160291", + "fields": { + "code_commune_insee": "64376", + "nom_de_la_commune": "MEILLON", + "code_postal": "64510", + "coordonnees_gps": [ + 43.2702297083, + -0.307769641145 + ], + "libelle_d_acheminement": "MEILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.307769641145, + 43.2702297083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0c8345c3a3d748508e26f5c7f0e750d0db93808", + "fields": { + "code_commune_insee": "64378", + "nom_de_la_commune": "MENDITTE", + "code_postal": "64130", + "coordonnees_gps": [ + 43.1686396764, + -0.886409522024 + ], + "libelle_d_acheminement": "MENDITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.886409522024, + 43.1686396764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08de5ba5c19b8893749c47571c0403634d7cdd1b", + "fields": { + "code_commune_insee": "64387", + "nom_de_la_commune": "MOMAS", + "code_postal": "64230", + "coordonnees_gps": [ + 43.4440655322, + -0.442604552796 + ], + "libelle_d_acheminement": "MOMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.442604552796, + 43.4440655322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5590f3e24c319864479c4420d60b468dc997ac94", + "fields": { + "code_commune_insee": "64389", + "nom_de_la_commune": "MONASSUT AUDIRACQ", + "code_postal": "64160", + "coordonnees_gps": [ + 43.4131575035, + -0.203083854292 + ], + "libelle_d_acheminement": "MONASSUT AUDIRACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.203083854292, + 43.4131575035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72e4c28b318a6136a98aa2f0e3d3930bae3ff0b1", + "fields": { + "code_commune_insee": "64396", + "nom_de_la_commune": "MONT", + "code_postal": "64300", + "coordonnees_gps": [ + 43.4270216184, + -0.659420644515 + ], + "libelle_d_acheminement": "MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.659420644515, + 43.4270216184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3796f10a8e1d6fba1805db932f7866dedb419b4b", + "fields": { + "code_commune_insee": "64399", + "nom_de_la_commune": "MONTARDON", + "code_postal": "64121", + "coordonnees_gps": [ + 43.3651274671, + -0.35046748696 + ], + "libelle_d_acheminement": "MONTARDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35046748696, + 43.3651274671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e667757917d7a898f26a458271ee3bd47931d8f6", + "fields": { + "code_commune_insee": "64413", + "nom_de_la_commune": "NARCASTET", + "code_postal": "64510", + "coordonnees_gps": [ + 43.2417207618, + -0.32056723288 + ], + "libelle_d_acheminement": "NARCASTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32056723288, + 43.2417207618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b757b42f561dda121985bd6cb4b3bc68c924522", + "fields": { + "code_commune_insee": "64420", + "nom_de_la_commune": "OGENNE CAMPTORT", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3175789585, + -0.697599330645 + ], + "libelle_d_acheminement": "OGENNE CAMPTORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.697599330645, + 43.3175789585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7386dd600a3e6509d77e2fc93e1dc611194563fb", + "fields": { + "code_commune_insee": "64421", + "nom_de_la_commune": "OGEU LES BAINS", + "code_postal": "64680", + "coordonnees_gps": [ + 43.1558515448, + -0.504099362447 + ], + "libelle_d_acheminement": "OGEU LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.504099362447, + 43.1558515448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e958a24f0a7b696ef7cb4cd46877cfa946ed4520", + "fields": { + "code_commune_insee": "64423", + "nom_de_la_commune": "ORAAS", + "code_postal": "64390", + "coordonnees_gps": [ + 43.4353751917, + -0.965928475713 + ], + "libelle_d_acheminement": "ORAAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.965928475713, + 43.4353751917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81d53587b82eb059ea346e4ed1d3bee72f2c811e", + "fields": { + "code_commune_insee": "64426", + "nom_de_la_commune": "ORIN", + "code_postal": "64400", + "coordonnees_gps": [ + 43.2264680608, + -0.675557185765 + ], + "libelle_d_acheminement": "ORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.675557185765, + 43.2264680608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "054ebbab284bcbc6e78cd75e7a24716c1f3e2e07", + "fields": { + "code_commune_insee": "64427", + "nom_de_la_commune": "ORION", + "code_postal": "64390", + "coordonnees_gps": [ + 43.4207738426, + -0.863152653996 + ], + "libelle_d_acheminement": "ORION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863152653996, + 43.4207738426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "315e82290b743a7dbfca090cbdfdf89b67d88b6c", + "fields": { + "ligne_5": "STE SUZANNE", + "code_commune_insee": "64430", + "libelle_d_acheminement": "ORTHEZ", + "code_postal": "64300", + "nom_de_la_commune": "ORTHEZ", + "coordonnees_gps": [ + 43.4943173399, + -0.779874853399 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.779874853399, + 43.4943173399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9ec087abcb5eb07d018b207266ab62ff22f5868", + "fields": { + "code_commune_insee": "64431", + "nom_de_la_commune": "OS MARSILLON", + "code_postal": "64150", + "coordonnees_gps": [ + 43.3890752479, + -0.613461851871 + ], + "libelle_d_acheminement": "OS MARSILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.613461851871, + 43.3890752479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5ecee0c42f6d0063c4cea3c62a8778c3cdf0950", + "fields": { + "code_commune_insee": "64440", + "nom_de_la_commune": "OZENX MONTESTRUCQ", + "code_postal": "64300", + "coordonnees_gps": [ + 43.434296626, + -0.807501200009 + ], + "libelle_d_acheminement": "OZENX MONTESTRUCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.807501200009, + 43.434296626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0e01dd41ece0cc54689c66675d599b3cbcd1816", + "fields": { + "code_commune_insee": "64448", + "nom_de_la_commune": "POEY DE LESCAR", + "code_postal": "64230", + "coordonnees_gps": [ + 43.3557464475, + -0.457046076502 + ], + "libelle_d_acheminement": "POEY DE LESCAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.457046076502, + 43.3557464475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cecf5e326ca06ace96cf22090f2b55fa37e9b65", + "fields": { + "code_commune_insee": "64449", + "nom_de_la_commune": "POEY D OLORON", + "code_postal": "64400", + "coordonnees_gps": [ + 43.2467550092, + -0.663213521181 + ], + "libelle_d_acheminement": "POEY D OLORON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.663213521181, + 43.2467550092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65b0e8f019b2ec66e9b3ff7f65d08d88f3c462c4", + "fields": { + "code_commune_insee": "64452", + "nom_de_la_commune": "PONSON DESSUS", + "code_postal": "64460", + "coordonnees_gps": [ + 43.3055844611, + -0.0546726184157 + ], + "libelle_d_acheminement": "PONSON DESSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0546726184157, + 43.3055844611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b29ac70460908b589d5db74d6aa1e08e03567ff6", + "fields": { + "code_commune_insee": "64454", + "nom_de_la_commune": "PONTIACQ VIELLEPINTE", + "code_postal": "64460", + "coordonnees_gps": [ + 43.3632011271, + -0.0568079986553 + ], + "libelle_d_acheminement": "PONTIACQ VIELLEPINTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0568079986553, + 43.3632011271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "457734b55a4264172a25c3d078d2209ba912d433", + "fields": { + "code_commune_insee": "64455", + "nom_de_la_commune": "PORTET", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5781162021, + -0.186908454571 + ], + "libelle_d_acheminement": "PORTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.186908454571, + 43.5781162021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "059ac89925ad8a8d502f820665364b0c63313c8a", + "fields": { + "code_commune_insee": "64461", + "nom_de_la_commune": "PUYOO", + "code_postal": "64270", + "coordonnees_gps": [ + 43.5360452479, + -0.904449154165 + ], + "libelle_d_acheminement": "PUYOO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.904449154165, + 43.5360452479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9272ca490292a8e23f758d1a2a76400cfa9fa6ee", + "fields": { + "code_commune_insee": "64470", + "nom_de_la_commune": "ST ARMOU", + "code_postal": "64160", + "coordonnees_gps": [ + 43.4075976721, + -0.306568669389 + ], + "libelle_d_acheminement": "ST ARMOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.306568669389, + 43.4075976721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "200f10b5159858904aaa49a9bc53eff190684987", + "fields": { + "code_commune_insee": "64475", + "nom_de_la_commune": "STE ENGRACE", + "code_postal": "64560", + "coordonnees_gps": [ + 42.9943132999, + -0.839892143116 + ], + "libelle_d_acheminement": "STE ENGRACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.839892143116, + 42.9943132999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e40749c3b48b48f3f7992b5a2268615ad969344a", + "fields": { + "code_commune_insee": "64479", + "nom_de_la_commune": "ST GIRONS EN BEARN", + "code_postal": "64300", + "coordonnees_gps": [ + 43.5505790546, + -0.823806052996 + ], + "libelle_d_acheminement": "ST GIRONS EN BEARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.823806052996, + 43.5505790546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71e266f88bae746d197ba5ff57c68a04f9837346", + "fields": { + "code_commune_insee": "64481", + "nom_de_la_commune": "ST GOIN", + "code_postal": "64400", + "coordonnees_gps": [ + 43.2312012156, + -0.725099267035 + ], + "libelle_d_acheminement": "ST GOIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.725099267035, + 43.2312012156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5052a5dc96531ca14b34ac0e1adbcbe3883aaf1", + "fields": { + "code_commune_insee": "64484", + "nom_de_la_commune": "ST JEAN LE VIEUX", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1714110881, + -1.20732334378 + ], + "libelle_d_acheminement": "ST JEAN LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20732334378, + 43.1714110881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a770afd8a71d1f1e1ab2b561f605355c93c848b", + "fields": { + "code_commune_insee": "64499", + "nom_de_la_commune": "SALIES DE BEARN", + "code_postal": "64270", + "coordonnees_gps": [ + 43.4683239252, + -0.917789447505 + ], + "libelle_d_acheminement": "SALIES DE BEARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.917789447505, + 43.4683239252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95cf59226138bfd1e8aa79686331d3bdaee73d03", + "fields": { + "code_commune_insee": "64509", + "nom_de_la_commune": "SAUGUIS ST ETIENNE", + "code_postal": "64470", + "coordonnees_gps": [ + 43.1581269508, + -0.873283147655 + ], + "libelle_d_acheminement": "SAUGUIS ST ETIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.873283147655, + 43.1581269508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b2ff93cab2f2fb9abbddb3ff8f45cd322dc1f44", + "fields": { + "code_commune_insee": "64515", + "nom_de_la_commune": "SEDZE MAUBECQ", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3560996127, + -0.120159115391 + ], + "libelle_d_acheminement": "SEDZE MAUBECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.120159115391, + 43.3560996127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b697489fe948b6b66338a5053f0f31d42038fcd0", + "fields": { + "code_commune_insee": "64516", + "nom_de_la_commune": "SEDZERE", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3402761138, + -0.180181129359 + ], + "libelle_d_acheminement": "SEDZERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.180181129359, + 43.3402761138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87eae47fa2cdf57376b98bb03c61a4c3e0dac4d4", + "fields": { + "code_commune_insee": "64521", + "nom_de_la_commune": "SERRES STE MARIE", + "code_postal": "64170", + "coordonnees_gps": [ + 43.4169790488, + -0.558512355562 + ], + "libelle_d_acheminement": "SERRES STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.558512355562, + 43.4169790488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c572caac15ff6949467c97a9495dff47188e55f", + "fields": { + "code_commune_insee": "64523", + "nom_de_la_commune": "SEVIGNACQ", + "code_postal": "64160", + "coordonnees_gps": [ + 43.4525350572, + -0.260345256329 + ], + "libelle_d_acheminement": "SEVIGNACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.260345256329, + 43.4525350572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d82e677c970180f2c763979d2876e588424c318e", + "fields": { + "code_commune_insee": "64524", + "nom_de_la_commune": "SIMACOURBE", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4470512005, + -0.167424687354 + ], + "libelle_d_acheminement": "SIMACOURBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.167424687354, + 43.4470512005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "754793af33151f76433f3c41cb36fe0165a02b64", + "fields": { + "code_commune_insee": "64541", + "nom_de_la_commune": "URDES", + "code_postal": "64370", + "coordonnees_gps": [ + 43.4397491635, + -0.578016104788 + ], + "libelle_d_acheminement": "URDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.578016104788, + 43.4397491635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca4f02fa6ac621795410057b488172333eab29e0", + "fields": { + "code_commune_insee": "64542", + "nom_de_la_commune": "URDOS", + "code_postal": "64490", + "coordonnees_gps": [ + 42.8354449559, + -0.535288457262 + ], + "libelle_d_acheminement": "URDOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.535288457262, + 42.8354449559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b91f4fae66d99debc9522510a90567692584776e", + "fields": { + "code_commune_insee": "64543", + "nom_de_la_commune": "UREPEL", + "code_postal": "64430", + "coordonnees_gps": [ + 43.0588257518, + -1.40540454935 + ], + "libelle_d_acheminement": "UREPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40540454935, + 43.0588257518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12991494887fa3c648f8b01f587fa7a7a89c3172", + "fields": { + "code_commune_insee": "64552", + "nom_de_la_commune": "VIALER", + "code_postal": "64330", + "coordonnees_gps": [ + 43.508736032, + -0.178980532106 + ], + "libelle_d_acheminement": "VIALER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.178980532106, + 43.508736032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58303201c228e75f2701aace0a5a506f77b9d78c", + "fields": { + "code_commune_insee": "64555", + "nom_de_la_commune": "VIELLENAVE DE NAVARRENX", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3365594073, + -0.807320933148 + ], + "libelle_d_acheminement": "VIELLENAVE DE NAVARRENX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.807320933148, + 43.3365594073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9509a4b7c00d27d1cf95e084af5f83f550466b84", + "fields": { + "code_commune_insee": "64556", + "nom_de_la_commune": "VIELLESEGURE", + "code_postal": "64150", + "coordonnees_gps": [ + 43.3559621275, + -0.702432499401 + ], + "libelle_d_acheminement": "VIELLESEGURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.702432499401, + 43.3559621275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d65f7d5b37795f2280ae636fedd684d18321bc0e", + "fields": { + "code_commune_insee": "64557", + "nom_de_la_commune": "VIGNES", + "code_postal": "64410", + "coordonnees_gps": [ + 43.5230729966, + -0.410534963551 + ], + "libelle_d_acheminement": "VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.410534963551, + 43.5230729966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "394d000a30251d821de7d2c476d460e95447987e", + "fields": { + "ligne_5": "POUCHERGUES", + "code_commune_insee": "65003", + "libelle_d_acheminement": "ADERVIELLE POUCHERGUES", + "code_postal": "65240", + "nom_de_la_commune": "ADERVIELLE POUCHERGUES", + "coordonnees_gps": [ + 42.8017280148, + 0.389922766373 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.389922766373, + 42.8017280148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15dca2601edde3fa9748eb014e66d8d918e9c2dc", + "fields": { + "code_commune_insee": "65006", + "nom_de_la_commune": "ANCIZAN", + "code_postal": "65440", + "coordonnees_gps": [ + 42.8993345679, + 0.283796847933 + ], + "libelle_d_acheminement": "ANCIZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.283796847933, + 42.8993345679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85e65e33cd03a1ffa77892be6adb9f160c7510e2", + "fields": { + "code_commune_insee": "65012", + "nom_de_la_commune": "ANLA", + "code_postal": "65370", + "coordonnees_gps": [ + 43.0053698793, + 0.591471549126 + ], + "libelle_d_acheminement": "ANLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.591471549126, + 43.0053698793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d751653c29a20ed46315509e9f615e1e78637ed", + "fields": { + "code_commune_insee": "65022", + "nom_de_la_commune": "ARCIZANS DESSUS", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9960153605, + -0.160782379853 + ], + "libelle_d_acheminement": "ARCIZANS DESSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.160782379853, + 42.9960153605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4455cad84f9d5972721bdd205b59f8631778aa0", + "fields": { + "code_commune_insee": "65024", + "nom_de_la_commune": "ARGELES BAGNERES", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0917474714, + 0.196734819269 + ], + "libelle_d_acheminement": "ARGELES BAGNERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.196734819269, + 43.0917474714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6644fb12dbcf2a6443cdf8f1eb6db58789d7e96", + "fields": { + "code_commune_insee": "65032", + "nom_de_la_commune": "ARRENS MARSOUS", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9104049352, + -0.260439991296 + ], + "libelle_d_acheminement": "ARRENS MARSOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.260439991296, + 42.9104049352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c8faca7e7e71fc71a1a940c4b8d3a032065a8ce", + "fields": { + "ligne_5": "MARSOUS", + "code_commune_insee": "65032", + "libelle_d_acheminement": "ARRENS MARSOUS", + "code_postal": "65400", + "nom_de_la_commune": "ARRENS MARSOUS", + "coordonnees_gps": [ + 42.9104049352, + -0.260439991296 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.260439991296, + 42.9104049352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b805cbd4367a0cfe0e1a80ce3141bfa226f0114", + "fields": { + "code_commune_insee": "65039", + "nom_de_la_commune": "ASPIN AURE", + "code_postal": "65240", + "coordonnees_gps": [ + 42.936099418, + 0.327349916156 + ], + "libelle_d_acheminement": "ASPIN AURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.327349916156, + 42.936099418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95a86eb79e919a1c6eca2a31a9ff34fa27466193", + "fields": { + "code_commune_insee": "65045", + "nom_de_la_commune": "AUCUN", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9857652582, + -0.201428304348 + ], + "libelle_d_acheminement": "AUCUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.201428304348, + 42.9857652582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90ebe482ca87c5eed6a0d8412a101e6e380b89fd", + "fields": { + "code_commune_insee": "65054", + "nom_de_la_commune": "AVEZAC PRAT LAHITTE", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0649077619, + 0.3352681161 + ], + "libelle_d_acheminement": "AVEZAC PRAT LAHITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.3352681161, + 43.0649077619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a61d945bc2c97759524c7eb9db62320b3ecdec5f", + "fields": { + "code_commune_insee": "65055", + "nom_de_la_commune": "AYROS ARBOUIX", + "code_postal": "65400", + "coordonnees_gps": [ + 43.0013594606, + -0.0676362867002 + ], + "libelle_d_acheminement": "AYROS ARBOUIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0676362867002, + 43.0013594606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a7fa12dd27eb4d53ee26486bf946f20c03aa7b9", + "fields": { + "code_commune_insee": "65056", + "nom_de_la_commune": "AYZAC OST", + "code_postal": "65400", + "coordonnees_gps": [ + 43.0227077194, + -0.0922337556025 + ], + "libelle_d_acheminement": "AYZAC OST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0922337556025, + 43.0227077194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e7f7ff0008090cdafc455efe209648941eda9d9", + "fields": { + "code_commune_insee": "65063", + "nom_de_la_commune": "BARBAZAN DESSUS", + "code_postal": "65360", + "coordonnees_gps": [ + 43.1640011198, + 0.143871058767 + ], + "libelle_d_acheminement": "BARBAZAN DESSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.143871058767, + 43.1640011198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5801c1733dde74c74a37ebd5ccbd2ddcec0872b", + "fields": { + "code_commune_insee": "65067", + "nom_de_la_commune": "BARRY", + "code_postal": "65380", + "coordonnees_gps": [ + 43.1386668818, + 0.0200105013053 + ], + "libelle_d_acheminement": "BARRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0200105013053, + 43.1386668818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec12ce76b53daa63a8f6bf37b8e52563488b7538", + "fields": { + "code_commune_insee": "65070", + "nom_de_la_commune": "BARTRES", + "code_postal": "65100", + "coordonnees_gps": [ + 43.1330236195, + -0.0546585429956 + ], + "libelle_d_acheminement": "BARTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0546585429956, + 43.1330236195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb58dfe10750262959a08ee0dff8cdafdd54d4f6", + "fields": { + "code_commune_insee": "65076", + "nom_de_la_commune": "BAZUS NESTE", + "code_postal": "65250", + "coordonnees_gps": [ + 43.0313000488, + 0.387437561885 + ], + "libelle_d_acheminement": "BAZUS NESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.387437561885, + 43.0313000488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef0f9b7e948d5473f7776a66128057d56e7309b7", + "fields": { + "code_commune_insee": "65077", + "nom_de_la_commune": "BEAUCENS", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9521147799, + 0.0226628621288 + ], + "libelle_d_acheminement": "BEAUCENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0226628621288, + 42.9521147799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "161633a15b3d0a741774df71700408b8e74e739a", + "fields": { + "code_commune_insee": "65078", + "nom_de_la_commune": "BEAUDEAN", + "code_postal": "65710", + "coordonnees_gps": [ + 42.9933681218, + 0.137569111909 + ], + "libelle_d_acheminement": "BEAUDEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.137569111909, + 42.9933681218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7abda96f4e2b81ee23526a5d225595d013d1a32", + "fields": { + "code_commune_insee": "65080", + "nom_de_la_commune": "BENAC", + "code_postal": "65380", + "coordonnees_gps": [ + 43.1528922473, + 0.0296198137787 + ], + "libelle_d_acheminement": "BENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0296198137787, + 43.1528922473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bee47df9dae8b6d53355176e4fc41bd67a353e90", + "fields": { + "code_commune_insee": "65084", + "nom_de_la_commune": "BERNAC DESSUS", + "code_postal": "65360", + "coordonnees_gps": [ + 43.1546695111, + 0.12835220741 + ], + "libelle_d_acheminement": "BERNAC DESSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12835220741, + 43.1546695111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e45a2b7a1ee4eda97886162860ea854259fe20b3", + "fields": { + "code_commune_insee": "65085", + "nom_de_la_commune": "BERNADETS DEBAT", + "code_postal": "65220", + "coordonnees_gps": [ + 43.3513205406, + 0.318165574549 + ], + "libelle_d_acheminement": "BERNADETS DEBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.318165574549, + 43.3513205406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab32fc5e692b60912118d5c480f2531d93c4aca6", + "fields": { + "code_commune_insee": "65099", + "nom_de_la_commune": "BORDERES LOURON", + "code_postal": "65590", + "coordonnees_gps": [ + 42.8676970923, + 0.416690191608 + ], + "libelle_d_acheminement": "BORDERES LOURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.416690191608, + 42.8676970923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "257e2ae528563ec4a6bde5cbb3fad1d09298a40c", + "fields": { + "ligne_5": "ILHAN", + "code_commune_insee": "65099", + "libelle_d_acheminement": "BORDERES LOURON", + "code_postal": "65590", + "nom_de_la_commune": "BORDERES LOURON", + "coordonnees_gps": [ + 42.8676970923, + 0.416690191608 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.416690191608, + 42.8676970923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c71819a5ed22275432f7490c68a25ae25201bc4", + "fields": { + "code_commune_insee": "65104", + "nom_de_la_commune": "BOULIN", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2540490794, + 0.135324700722 + ], + "libelle_d_acheminement": "BOULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.135324700722, + 43.2540490794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adc8a97bcfbfe14bd4fa3b2f2b1b869c295a4f55", + "fields": { + "code_commune_insee": "65110", + "nom_de_la_commune": "BUGARD", + "code_postal": "65220", + "coordonnees_gps": [ + 43.2552558483, + 0.311328173985 + ], + "libelle_d_acheminement": "BUGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.311328173985, + 43.2552558483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59e6e84536ee45a025205975d4c5f951f195a612", + "fields": { + "code_commune_insee": "65112", + "nom_de_la_commune": "BUN", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9697185212, + -0.16335034646 + ], + "libelle_d_acheminement": "BUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16335034646, + 42.9697185212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f84417082c104f9e79f52a3cf4b748212b2c6cb1", + "fields": { + "code_commune_insee": "65119", + "nom_de_la_commune": "CAIXON", + "code_postal": "65500", + "coordonnees_gps": [ + 43.408563662, + 0.0204351091089 + ], + "libelle_d_acheminement": "CAIXON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0204351091089, + 43.408563662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d0ea395dfbe9149c085cf31945f675030d5de45", + "fields": { + "code_commune_insee": "65125", + "nom_de_la_commune": "CAMPISTROUS", + "code_postal": "65300", + "coordonnees_gps": [ + 43.1446272812, + 0.374575615028 + ], + "libelle_d_acheminement": "CAMPISTROUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.374575615028, + 43.1446272812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2acc0445fc115b9659a5fdd003a625621876a41d", + "fields": { + "code_commune_insee": "65128", + "nom_de_la_commune": "CASTELBAJAC", + "code_postal": "65330", + "coordonnees_gps": [ + 43.1819809472, + 0.356269583215 + ], + "libelle_d_acheminement": "CASTELBAJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.356269583215, + 43.1819809472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5657f33ce374f78e771e0def033928ee251d12de", + "fields": { + "code_commune_insee": "65141", + "nom_de_la_commune": "CAZAUX FRECHET ANERAN CAMORS", + "code_postal": "65240", + "coordonnees_gps": [ + 42.8433198052, + 0.433537773802 + ], + "libelle_d_acheminement": "CAZAUX FRECHET ANERAN CAMORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.433537773802, + 42.8433198052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a2e926c5bf4b2120f28e8423f0da0d09f88e6e7", + "fields": { + "code_commune_insee": "65142", + "nom_de_la_commune": "CHELLE DEBAT", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2976885835, + 0.239089634968 + ], + "libelle_d_acheminement": "CHELLE DEBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.239089634968, + 43.2976885835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dec946a0b9a5a1994edcb5d92766dd6753e26499", + "fields": { + "code_commune_insee": "65144", + "nom_de_la_commune": "CHEUST", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0559325042, + 0.029784427126 + ], + "libelle_d_acheminement": "CHEUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.029784427126, + 43.0559325042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38be86f7f16969079744bb13191ab5395cd9a864", + "fields": { + "code_commune_insee": "65150", + "nom_de_la_commune": "CLARENS", + "code_postal": "65300", + "coordonnees_gps": [ + 43.1538418103, + 0.41213626371 + ], + "libelle_d_acheminement": "CLARENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41213626371, + 43.1538418103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70dd981eec31520533c6e98243d62ac01c1dc7ec", + "fields": { + "code_commune_insee": "65154", + "nom_de_la_commune": "CRECHETS", + "code_postal": "65370", + "coordonnees_gps": [ + 43.0010267056, + 0.570074903594 + ], + "libelle_d_acheminement": "CRECHETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.570074903594, + 43.0010267056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb7d6bdd01425d3636c98e92cc189cf95572d311", + "fields": { + "code_commune_insee": "65160", + "nom_de_la_commune": "ESCAUNETS", + "code_postal": "65500", + "coordonnees_gps": [ + 43.346344736, + -0.0768293180694 + ], + "libelle_d_acheminement": "ESCAUNETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0768293180694, + 43.346344736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3df4c0a9b9fa9eda6265589459670e896cde42e8", + "fields": { + "code_commune_insee": "65162", + "nom_de_la_commune": "ESCONNETS", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0712735338, + 0.231228181694 + ], + "libelle_d_acheminement": "ESCONNETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.231228181694, + 43.0712735338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c93d9cb95b9a8e7e97b51b539e07a7666a6a6d2b", + "fields": { + "code_commune_insee": "65170", + "nom_de_la_commune": "ESTAMPURES", + "code_postal": "65220", + "coordonnees_gps": [ + 43.3759426738, + 0.285547480034 + ], + "libelle_d_acheminement": "ESTAMPURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.285547480034, + 43.3759426738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5851fe06ea2724d94ca7a12023166744ac1c65d7", + "fields": { + "code_commune_insee": "65171", + "nom_de_la_commune": "ESTARVIELLE", + "code_postal": "65240", + "coordonnees_gps": [ + 42.8207156581, + 0.415397234999 + ], + "libelle_d_acheminement": "ESTARVIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.415397234999, + 42.8207156581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe264b708996f5eccfc6f814cc3501c8cea233dc", + "fields": { + "code_commune_insee": "65172", + "nom_de_la_commune": "ESTENSAN", + "code_postal": "65170", + "coordonnees_gps": [ + 42.8164167593, + 0.344902286039 + ], + "libelle_d_acheminement": "ESTENSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.344902286039, + 42.8164167593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dc6c4716b741abc8a2790e925a00bcf4a728caa", + "fields": { + "code_commune_insee": "65174", + "nom_de_la_commune": "ESTIRAC", + "code_postal": "65700", + "coordonnees_gps": [ + 43.4990637725, + 0.0289743472032 + ], + "libelle_d_acheminement": "ESTIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0289743472032, + 43.4990637725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3eaf042d1a41362b6ebcabbf9cd5b2c6bee7da0c", + "fields": { + "code_commune_insee": "65179", + "nom_de_la_commune": "FRECHENDETS", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0613932621, + 0.234135249528 + ], + "libelle_d_acheminement": "FRECHENDETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.234135249528, + 43.0613932621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56a9dc7e19065ec924a9db5d937174812baa72b9", + "fields": { + "code_commune_insee": "65191", + "nom_de_la_commune": "GAZOST", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0007012116, + 0.0235191133565 + ], + "libelle_d_acheminement": "GAZOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0235191133565, + 43.0007012116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8775f832dbbebc5bcfb6e748abc871b37cd9b935", + "fields": { + "code_commune_insee": "65194", + "nom_de_la_commune": "GENEREST", + "code_postal": "65150", + "coordonnees_gps": [ + 43.025453129, + 0.516625299091 + ], + "libelle_d_acheminement": "GENEREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.516625299091, + 43.025453129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2538290efc469459c13a35a7155aa63c9a1bd20b", + "fields": { + "code_commune_insee": "65205", + "nom_de_la_commune": "GOUAUX", + "code_postal": "65240", + "coordonnees_gps": [ + 42.8566434469, + 0.373155272179 + ], + "libelle_d_acheminement": "GOUAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.373155272179, + 42.8566434469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc1806a9a64c1527efabacc993b3db3bce6711f7", + "fields": { + "code_commune_insee": "65218", + "nom_de_la_commune": "HECHES", + "code_postal": "65250", + "coordonnees_gps": [ + 42.9998996047, + 0.373888635101 + ], + "libelle_d_acheminement": "HECHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.373888635101, + 42.9998996047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "387853423a4d64b883b0785cf315167a010a688b", + "fields": { + "code_commune_insee": "65223", + "nom_de_la_commune": "HORGUES", + "code_postal": "65310", + "coordonnees_gps": [ + 43.1893086126, + 0.0801941893697 + ], + "libelle_d_acheminement": "HORGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0801941893697, + 43.1893086126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0c421e25b9a22e6c58b688ecee2efd3ade3b4b1", + "fields": { + "code_commune_insee": "65224", + "nom_de_la_commune": "HOUEYDETS", + "code_postal": "65330", + "coordonnees_gps": [ + 43.1547737607, + 0.353267560435 + ], + "libelle_d_acheminement": "HOUEYDETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.353267560435, + 43.1547737607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c55b9192a845d1203d5be3a2eb29a50fcbe1c7be", + "fields": { + "code_commune_insee": "65230", + "nom_de_la_commune": "IZAOURT", + "code_postal": "65370", + "coordonnees_gps": [ + 43.0158308851, + 0.602750524708 + ], + "libelle_d_acheminement": "IZAOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.602750524708, + 43.0158308851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14a2f8ab70eb8cdbf818d32e93585602213727f5", + "fields": { + "code_commune_insee": "65231", + "nom_de_la_commune": "IZAUX", + "code_postal": "65250", + "coordonnees_gps": [ + 43.0578535178, + 0.377272900491 + ], + "libelle_d_acheminement": "IZAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.377272900491, + 43.0578535178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "695ac85f6c4490c5dd96ef3bf2acb6f57500df2f", + "fields": { + "code_commune_insee": "65233", + "nom_de_la_commune": "JARRET", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0746279828, + -0.0165977313964 + ], + "libelle_d_acheminement": "JARRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0165977313964, + 43.0746279828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84e33c77ab83e939e2220f2209255f70f0e4d76c", + "fields": { + "code_commune_insee": "65242", + "nom_de_la_commune": "LACASSAGNE", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3558671594, + 0.154037265829 + ], + "libelle_d_acheminement": "LACASSAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.154037265829, + 43.3558671594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5260943151ff74dba41bed60119070635664d353", + "fields": { + "code_commune_insee": "65245", + "nom_de_la_commune": "LAGRANGE", + "code_postal": "65300", + "coordonnees_gps": [ + 43.1291634355, + 0.348603751912 + ], + "libelle_d_acheminement": "LAGRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.348603751912, + 43.1291634355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b80f5f622383972a1e0e078ea7252b2a68e8244f", + "fields": { + "code_commune_insee": "65247", + "nom_de_la_commune": "ARRAYOU LAHITTE", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0934147227, + 0.0446631806438 + ], + "libelle_d_acheminement": "ARRAYOU LAHITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0446631806438, + 43.0934147227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "239c158f762d5c06301079f920aa5f77f7285efb", + "fields": { + "code_commune_insee": "65254", + "nom_de_la_commune": "LAMEAC", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3322074148, + 0.231252614188 + ], + "libelle_d_acheminement": "LAMEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.231252614188, + 43.3322074148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f13014722a91a1528820d95723b518444ddbb15", + "fields": { + "code_commune_insee": "65256", + "nom_de_la_commune": "LANESPEDE", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1658354923, + 0.272925172208 + ], + "libelle_d_acheminement": "LANESPEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.272925172208, + 43.1658354923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cad2a084e51002c294cc8da4dda5e1a65b45856c", + "fields": { + "code_commune_insee": "65257", + "nom_de_la_commune": "LANNE", + "code_postal": "65380", + "coordonnees_gps": [ + 43.162653619, + 0.00193180240761 + ], + "libelle_d_acheminement": "LANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00193180240761, + 43.162653619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6ec950edce467fa4d7a157d3595562946431abd", + "fields": { + "code_commune_insee": "65260", + "nom_de_la_commune": "LAPEYRE", + "code_postal": "65220", + "coordonnees_gps": [ + 43.3245708913, + 0.331017237637 + ], + "libelle_d_acheminement": "LAPEYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.331017237637, + 43.3245708913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26be5d99cd09311115880cbcfe95ef82d7185934", + "fields": { + "code_commune_insee": "65263", + "nom_de_la_commune": "LARROQUE", + "code_postal": "65230", + "coordonnees_gps": [ + 43.3134878152, + 0.487635169542 + ], + "libelle_d_acheminement": "LARROQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.487635169542, + 43.3134878152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29dc87ca9e39adf8d4552fc97297aa9637b51929", + "fields": { + "code_commune_insee": "65272", + "nom_de_la_commune": "LHEZ", + "code_postal": "65190", + "coordonnees_gps": [ + 43.2024093618, + 0.19484559668 + ], + "libelle_d_acheminement": "LHEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19484559668, + 43.2024093618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b607b1ba54e759b2749764f96a8a5b8380809b7", + "fields": { + "code_commune_insee": "65273", + "nom_de_la_commune": "LIAC", + "code_postal": "65140", + "coordonnees_gps": [ + 43.4145828325, + 0.100583360751 + ], + "libelle_d_acheminement": "LIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.100583360751, + 43.4145828325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f349fb90c0066c829f1c9f686222bc1d9563825c", + "fields": { + "code_commune_insee": "65274", + "nom_de_la_commune": "LIBAROS", + "code_postal": "65330", + "coordonnees_gps": [ + 43.2485668256, + 0.391971117997 + ], + "libelle_d_acheminement": "LIBAROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.391971117997, + 43.2485668256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab8bbd67ec6f0ba99c49b9ac82860c79ef90a300", + "fields": { + "code_commune_insee": "65275", + "nom_de_la_commune": "LIES", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0617961938, + 0.204542612711 + ], + "libelle_d_acheminement": "LIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.204542612711, + 43.0617961938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdfe9dadad8ac088bc29a1c24257638c0c559097", + "fields": { + "code_commune_insee": "65278", + "nom_de_la_commune": "LOMNE", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0469492307, + 0.302892887123 + ], + "libelle_d_acheminement": "LOMNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.302892887123, + 43.0469492307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec33cda5134d5c6b8eb8721ea889aa028b62fb34", + "fields": { + "code_commune_insee": "65280", + "nom_de_la_commune": "LOUBAJAC", + "code_postal": "65100", + "coordonnees_gps": [ + 43.1385999855, + -0.0829246154989 + ], + "libelle_d_acheminement": "LOUBAJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0829246154989, + 43.1385999855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ba7c7a9063ebcd19e378f76331d3224282b9617", + "fields": { + "code_commune_insee": "65283", + "nom_de_la_commune": "LOUDERVIELLE", + "code_postal": "65240", + "coordonnees_gps": [ + 42.8019156527, + 0.439491770073 + ], + "libelle_d_acheminement": "LOUDERVIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.439491770073, + 42.8019156527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af2e14ba5bb7eba9a3eda24604299ebf48a37d26", + "fields": { + "code_commune_insee": "65285", + "nom_de_la_commune": "LOUIT", + "code_postal": "65350", + "coordonnees_gps": [ + 43.3006855002, + 0.16086842567 + ], + "libelle_d_acheminement": "LOUIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16086842567, + 43.3006855002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f23a08bc1cfd1a144d88d9ec77b54125a250b6a4", + "fields": { + "code_commune_insee": "65296", + "nom_de_la_commune": "MADIRAN", + "code_postal": "65700", + "coordonnees_gps": [ + 43.5517824555, + -0.057201539613 + ], + "libelle_d_acheminement": "MADIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.057201539613, + 43.5517824555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91b84d4a66203b809336837f3c9f4f8dea140ddd", + "fields": { + "code_commune_insee": "65303", + "nom_de_la_commune": "MASCARAS", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1923766337, + 0.174125977844 + ], + "libelle_d_acheminement": "MASCARAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.174125977844, + 43.1923766337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31184c042b11ef4e6fb4acee5341efca894f9c1d", + "fields": { + "code_commune_insee": "65308", + "nom_de_la_commune": "MAZEROLLES", + "code_postal": "65220", + "coordonnees_gps": [ + 43.3546128947, + 0.286551798965 + ], + "libelle_d_acheminement": "MAZEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.286551798965, + 43.3546128947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60f001c045dbb72a1150aa54e7753d66dcc7603a", + "fields": { + "code_commune_insee": "65315", + "nom_de_la_commune": "MONLEON MAGNOAC", + "code_postal": "65670", + "coordonnees_gps": [ + 43.2361837361, + 0.517312861957 + ], + "libelle_d_acheminement": "MONLEON MAGNOAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.517312861957, + 43.2361837361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93544e0555e49c34e87db5c1963788e4671bfaf9", + "fields": { + "code_commune_insee": "65316", + "nom_de_la_commune": "MONLONG", + "code_postal": "65670", + "coordonnees_gps": [ + 43.1979666498, + 0.468864803299 + ], + "libelle_d_acheminement": "MONLONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.468864803299, + 43.1979666498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaacd731f527f6bc6a5ab6093a99d26e1f1ad4bb", + "fields": { + "code_commune_insee": "65320", + "nom_de_la_commune": "MONTGAILLARD", + "code_postal": "65200", + "coordonnees_gps": [ + 43.1232297746, + 0.111048955498 + ], + "libelle_d_acheminement": "MONTGAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.111048955498, + 43.1232297746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bea570c401222f5d72307e2a580bcb823f52247", + "fields": { + "code_commune_insee": "65322", + "nom_de_la_commune": "MONTOUSSE", + "code_postal": "65250", + "coordonnees_gps": [ + 43.062664756, + 0.41311893726 + ], + "libelle_d_acheminement": "MONTOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41311893726, + 43.062664756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dce3f3a60c270308b26b23abd94eb34e4f6ffab", + "fields": { + "code_commune_insee": "65327", + "nom_de_la_commune": "NESTIER", + "code_postal": "65150", + "coordonnees_gps": [ + 43.0596221545, + 0.478343318065 + ], + "libelle_d_acheminement": "NESTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.478343318065, + 43.0596221545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec4145037c2dcf64e4cb981702c36d21e5a341b0", + "fields": { + "code_commune_insee": "65330", + "nom_de_la_commune": "NOUILHAN", + "code_postal": "65500", + "coordonnees_gps": [ + 43.4272288534, + 0.0420506166777 + ], + "libelle_d_acheminement": "NOUILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0420506166777, + 43.4272288534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74264bd1ff81dba1b2a61cc417fde97d732329f8", + "fields": { + "code_commune_insee": "65331", + "nom_de_la_commune": "ODOS", + "code_postal": "65310", + "coordonnees_gps": [ + 43.1944738978, + 0.0557112263144 + ], + "libelle_d_acheminement": "ODOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0557112263144, + 43.1944738978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f23ab73349c3bfe67ffb7f14d3ce0583e4f18d7f", + "fields": { + "code_commune_insee": "65335", + "nom_de_la_commune": "ORDIZAN", + "code_postal": "65200", + "coordonnees_gps": [ + 43.1071734446, + 0.141440645856 + ], + "libelle_d_acheminement": "ORDIZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.141440645856, + 43.1071734446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66b6fd53e99e52e92e7b87a30d96252ad63a402f", + "fields": { + "code_commune_insee": "65346", + "nom_de_la_commune": "OUEILLOUX", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1751943141, + 0.181896926196 + ], + "libelle_d_acheminement": "OUEILLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.181896926196, + 43.1751943141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d4fb6b57bb207d3851589a9f0de4ca37e896772", + "fields": { + "code_commune_insee": "65348", + "nom_de_la_commune": "OURDIS COTDOUSSAN", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0400793386, + 0.0282367657448 + ], + "libelle_d_acheminement": "OURDIS COTDOUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0282367657448, + 43.0400793386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "415aadb51ece1c2e8e480316628ebf06fa330d8a", + "fields": { + "code_commune_insee": "65358", + "nom_de_la_commune": "PEYRET ST ANDRE", + "code_postal": "65230", + "coordonnees_gps": [ + 43.3207713084, + 0.512445880132 + ], + "libelle_d_acheminement": "PEYRET ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.512445880132, + 43.3207713084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a25adacae1efe222ce47a794c5108560b1440c27", + "fields": { + "code_commune_insee": "65367", + "nom_de_la_commune": "POUMAROUS", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1556409444, + 0.215770472747 + ], + "libelle_d_acheminement": "POUMAROUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.215770472747, + 43.1556409444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18e59e56d57a67492436108045a6e1be011e130b", + "fields": { + "code_commune_insee": "65369", + "nom_de_la_commune": "POUYASTRUC", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2680458723, + 0.171366694638 + ], + "libelle_d_acheminement": "POUYASTRUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.171366694638, + 43.2680458723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a13a4b38a4a989309679bba23bac3487de028d8", + "fields": { + "code_commune_insee": "65373", + "nom_de_la_commune": "PUNTOUS", + "code_postal": "65230", + "coordonnees_gps": [ + 43.3027199473, + 0.460801407548 + ], + "libelle_d_acheminement": "PUNTOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.460801407548, + 43.3027199473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adfc3d58f9d979f6a912a11e6fea78e4d35569b8", + "fields": { + "code_commune_insee": "65381", + "nom_de_la_commune": "SABARROS", + "code_postal": "65330", + "coordonnees_gps": [ + 43.2384256329, + 0.438784416094 + ], + "libelle_d_acheminement": "SABARROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.438784416094, + 43.2384256329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57e8d9c9ee4bf10b8d63186fb4c4306129d2246a", + "fields": { + "code_commune_insee": "65386", + "nom_de_la_commune": "ST CREAC", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0606630739, + -0.023210441963 + ], + "libelle_d_acheminement": "ST CREAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.023210441963, + 43.0606630739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4baa15828979edf23b70e413218a53cd1cd6ddd9", + "fields": { + "code_commune_insee": "65398", + "nom_de_la_commune": "SALECHAN", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9551950512, + 0.629639120312 + ], + "libelle_d_acheminement": "SALECHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.629639120312, + 42.9551950512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef1ec46049866259a665c8aa190ac22c3060b9b4", + "fields": { + "code_commune_insee": "65399", + "nom_de_la_commune": "SALIGOS", + "code_postal": "65120", + "coordonnees_gps": [ + 42.9015701967, + -0.0144385336677 + ], + "libelle_d_acheminement": "SALIGOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0144385336677, + 42.9015701967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e42b14a516de5526f9d297862a6a35333a8901e0", + "fields": { + "code_commune_insee": "65405", + "nom_de_la_commune": "SARLABOUS", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0753620802, + 0.279815388021 + ], + "libelle_d_acheminement": "SARLABOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.279815388021, + 43.0753620802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4720bad1c785d15f1a2b781aed1ec4cda033770", + "fields": { + "code_commune_insee": "65406", + "nom_de_la_commune": "SARNIGUET", + "code_postal": "65390", + "coordonnees_gps": [ + 43.3191202591, + 0.0882106064948 + ], + "libelle_d_acheminement": "SARNIGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0882106064948, + 43.3191202591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7265fea43b54c639d8027da6b81c78560a377ed", + "fields": { + "code_commune_insee": "65411", + "nom_de_la_commune": "SASSIS", + "code_postal": "65120", + "coordonnees_gps": [ + 42.8770355921, + -0.0167783465633 + ], + "libelle_d_acheminement": "SASSIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0167783465633, + 42.8770355921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59046d69d7e9dd313b9e49e7d024c27ebc0a94aa", + "fields": { + "code_commune_insee": "65413", + "nom_de_la_commune": "SAZOS", + "code_postal": "65120", + "coordonnees_gps": [ + 42.8560542087, + -0.0430560934464 + ], + "libelle_d_acheminement": "SAZOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0430560934464, + 42.8560542087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad9bfff7d0a145e6739cab3c567dece224bbf769", + "fields": { + "code_commune_insee": "65414", + "nom_de_la_commune": "SEGALAS", + "code_postal": "65140", + "coordonnees_gps": [ + 43.4098505398, + 0.130234005775 + ], + "libelle_d_acheminement": "SEGALAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.130234005775, + 43.4098505398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f27d7fb0b59f5a54270692af2095c847e306dbc", + "fields": { + "code_commune_insee": "65428", + "nom_de_la_commune": "SIREIX", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9660849304, + -0.15464025939 + ], + "libelle_d_acheminement": "SIREIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15464025939, + 42.9660849304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be95927a65f39e60eace797f7dbb685814ed6b7e", + "fields": { + "code_commune_insee": "65447", + "nom_de_la_commune": "TOURNAY", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1857191109, + 0.247816207827 + ], + "libelle_d_acheminement": "TOURNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.247816207827, + 43.1857191109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4348f1bc747a7589e9e0bf1e10f4d0813d29767", + "fields": { + "code_commune_insee": "65458", + "nom_de_la_commune": "UZ", + "code_postal": "65400", + "coordonnees_gps": [ + 42.957459306, + -0.0905524703645 + ], + "libelle_d_acheminement": "UZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0905524703645, + 42.957459306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee0c2d0cb5321ce651b8d7bb2e08c06e117c4d03", + "fields": { + "code_commune_insee": "65460", + "nom_de_la_commune": "VIC EN BIGORRE", + "code_postal": "65500", + "coordonnees_gps": [ + 43.3910708794, + 0.0554734768116 + ], + "libelle_d_acheminement": "VIC EN BIGORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0554734768116, + 43.3910708794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d62bf289e54530cfb899130214a861950f9cc23c", + "fields": { + "code_commune_insee": "65463", + "nom_de_la_commune": "VIELLA", + "code_postal": "65120", + "coordonnees_gps": [ + 42.8710887537, + 0.0248813179111 + ], + "libelle_d_acheminement": "VIELLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0248813179111, + 42.8710887537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae35b456d9049f40d63cce1850044adf91b71982", + "fields": { + "code_commune_insee": "65464", + "nom_de_la_commune": "VIELLE ADOUR", + "code_postal": "65360", + "coordonnees_gps": [ + 43.1428451906, + 0.128121780681 + ], + "libelle_d_acheminement": "VIELLE ADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.128121780681, + 43.1428451906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f548126a6cb7c62b4337178613c03565802a910e", + "fields": { + "code_commune_insee": "65465", + "nom_de_la_commune": "VIELLE AURE", + "code_postal": "65170", + "coordonnees_gps": [ + 42.8492746267, + 0.208155528446 + ], + "libelle_d_acheminement": "VIELLE AURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.208155528446, + 42.8492746267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bfdd66e34fe075b9d8d8706bf614477430d0a8e", + "fields": { + "code_commune_insee": "66001", + "nom_de_la_commune": "L ALBERE", + "code_postal": "66480", + "coordonnees_gps": [ + 42.4760146426, + 2.89621584171 + ], + "libelle_d_acheminement": "L ALBERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89621584171, + 42.4760146426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b6a40704cc94a889d19bfe6a25e75d91b7c5765", + "fields": { + "code_commune_insee": "66006", + "nom_de_la_commune": "ANSIGNAN", + "code_postal": "66220", + "coordonnees_gps": [ + 42.7627016726, + 2.52092387991 + ], + "libelle_d_acheminement": "ANSIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52092387991, + 42.7627016726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37e035ada999180b113a7ee382fb358eb47c375a", + "fields": { + "code_commune_insee": "66009", + "nom_de_la_commune": "ARLES SUR TECH", + "code_postal": "66150", + "coordonnees_gps": [ + 42.4498186611, + 2.62632454224 + ], + "libelle_d_acheminement": "ARLES SUR TECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62632454224, + 42.4498186611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "821fc779c0e49ce8af3eaf24d93a5128f3660050", + "fields": { + "code_commune_insee": "66010", + "nom_de_la_commune": "AYGUATEBIA TALAU", + "code_postal": "66360", + "coordonnees_gps": [ + 42.5529817606, + 2.18299990224 + ], + "libelle_d_acheminement": "AYGUATEBIA TALAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18299990224, + 42.5529817606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bdb331c4d7540ec75d0c0f79797bca2f6db577a", + "fields": { + "code_commune_insee": "66012", + "nom_de_la_commune": "BAHO", + "code_postal": "66540", + "coordonnees_gps": [ + 42.705784148, + 2.82066588737 + ], + "libelle_d_acheminement": "BAHO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82066588737, + 42.705784148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c64fc50eea9fdd3e8e39e4e783189ae014c79d3a", + "fields": { + "ligne_5": "SUPERBOLQUERE", + "code_commune_insee": "66020", + "libelle_d_acheminement": "BOLQUERE", + "code_postal": "66210", + "nom_de_la_commune": "BOLQUERE", + "coordonnees_gps": [ + 42.5221194704, + 2.06518824241 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06518824241, + 42.5221194704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "942aee0ae07cfe31724186fd4114be6b3b2edbe2", + "fields": { + "code_commune_insee": "66027", + "nom_de_la_commune": "LA CABANASSE", + "code_postal": "66210", + "coordonnees_gps": [ + 42.5024173109, + 2.10678145362 + ], + "libelle_d_acheminement": "LA CABANASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10678145362, + 42.5024173109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e48dabf40a6352a94d93c5cff3d07cfcd37bb05", + "fields": { + "code_commune_insee": "66032", + "nom_de_la_commune": "CALMEILLES", + "code_postal": "66400", + "coordonnees_gps": [ + 42.5519868705, + 2.67154077315 + ], + "libelle_d_acheminement": "CALMEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67154077315, + 42.5519868705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cce45f2b796d5452e6d6e3dcefe047b86d72038", + "fields": { + "code_commune_insee": "66035", + "nom_de_la_commune": "CAMPOUSSY", + "code_postal": "66730", + "coordonnees_gps": [ + 42.6951710472, + 2.45222227409 + ], + "libelle_d_acheminement": "CAMPOUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45222227409, + 42.6951710472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efe6d616928a75e34a157be8837b02f7170da79a", + "fields": { + "code_commune_insee": "66036", + "nom_de_la_commune": "CANAVEILLES", + "code_postal": "66360", + "coordonnees_gps": [ + 42.5344206968, + 2.2238422292 + ], + "libelle_d_acheminement": "CANAVEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2238422292, + 42.5344206968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ce63708f47c7d74951611ceb150f30275cffc27", + "fields": { + "code_commune_insee": "66050", + "nom_de_la_commune": "CLAIRA", + "code_postal": "66530", + "coordonnees_gps": [ + 42.7641982638, + 2.94476145253 + ], + "libelle_d_acheminement": "CLAIRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94476145253, + 42.7641982638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16b1fffc6d7a1988da02d3ee9eae5a8a876ec498", + "fields": { + "code_commune_insee": "66054", + "nom_de_la_commune": "CONAT", + "code_postal": "66500", + "coordonnees_gps": [ + 42.6169400651, + 2.33899950618 + ], + "libelle_d_acheminement": "CONAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33899950618, + 42.6169400651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96079023984d71e5d4a63c47364d8e5c3a0c4819", + "fields": { + "code_commune_insee": "66056", + "nom_de_la_commune": "CORBERE LES CABANES", + "code_postal": "66130", + "coordonnees_gps": [ + 42.659851515, + 2.6824784207 + ], + "libelle_d_acheminement": "CORBERE LES CABANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6824784207, + 42.659851515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6830d28b0992c1c9bac583a72be0bfd81fcaacd1", + "fields": { + "code_commune_insee": "66062", + "nom_de_la_commune": "DORRES", + "code_postal": "66760", + "coordonnees_gps": [ + 42.513691127, + 1.92704781601 + ], + "libelle_d_acheminement": "DORRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92704781601, + 42.513691127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96b3a86b143adb8b9476b3fa2020bce12099d4ba", + "fields": { + "code_commune_insee": "66066", + "nom_de_la_commune": "ENVEITG", + "code_postal": "66760", + "coordonnees_gps": [ + 42.4961765884, + 1.89318419154 + ], + "libelle_d_acheminement": "ENVEITG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89318419154, + 42.4961765884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "863d4a5592418c85a913ae03ee47210e72a1a368", + "fields": { + "code_commune_insee": "66092", + "nom_de_la_commune": "LANSAC", + "code_postal": "66720", + "coordonnees_gps": [ + 42.768061594, + 2.56512635708 + ], + "libelle_d_acheminement": "LANSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56512635708, + 42.768061594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49bfe2adab868f3533a6678507fbd5465281d90b", + "fields": { + "code_commune_insee": "66093", + "nom_de_la_commune": "LAROQUE DES ALBERES", + "code_postal": "66740", + "coordonnees_gps": [ + 42.5116805013, + 2.93303085148 + ], + "libelle_d_acheminement": "LAROQUE DES ALBERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93303085148, + 42.5116805013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9299830f5c4120f4dd3bd18badc28631c8680c5c", + "fields": { + "code_commune_insee": "66096", + "nom_de_la_commune": "LATOUR DE FRANCE", + "code_postal": "66720", + "coordonnees_gps": [ + 42.7704659309, + 2.65156604374 + ], + "libelle_d_acheminement": "LATOUR DE FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65156604374, + 42.7704659309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bec7a7ce282b7b6239359ecf118f404990857246", + "fields": { + "code_commune_insee": "66108", + "nom_de_la_commune": "MILLAS", + "code_postal": "66170", + "coordonnees_gps": [ + 42.6989825431, + 2.68991104341 + ], + "libelle_d_acheminement": "MILLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68991104341, + 42.6989825431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7f99a235e985593a39436d072735925a756c551", + "fields": { + "code_commune_insee": "66112", + "nom_de_la_commune": "MONTAURIOL", + "code_postal": "66300", + "coordonnees_gps": [ + 42.5766990784, + 2.72388992762 + ], + "libelle_d_acheminement": "MONTAURIOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72388992762, + 42.5766990784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c8b1da9aed5335ee1818d9286e66356bc82f656", + "fields": { + "code_commune_insee": "66115", + "nom_de_la_commune": "MONTESQUIEU DES ALBERES", + "code_postal": "66740", + "coordonnees_gps": [ + 42.5181506161, + 2.8737459407 + ], + "libelle_d_acheminement": "MONTESQUIEU DES ALBERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8737459407, + 42.5181506161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43b74ffb24b361c7b882d1365c1adbaf6ccfd9db", + "fields": { + "code_commune_insee": "66123", + "nom_de_la_commune": "NYER", + "code_postal": "66360", + "coordonnees_gps": [ + 42.5010890315, + 2.27403031665 + ], + "libelle_d_acheminement": "NYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27403031665, + 42.5010890315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d03b1172b73e397be50f03306c9bd260da7cebb", + "fields": { + "ligne_5": "ODEILLO VIA", + "code_commune_insee": "66124", + "libelle_d_acheminement": "FONT ROMEU ODEILLO VIA", + "code_postal": "66120", + "nom_de_la_commune": "FONT ROMEU ODEILLO VIA", + "coordonnees_gps": [ + 42.513242501, + 2.02697700093 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02697700093, + 42.513242501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be05695716508657a80883226414ad271e7abbdf", + "fields": { + "ligne_5": "PERILLOS", + "code_commune_insee": "66127", + "libelle_d_acheminement": "OPOUL PERILLOS", + "code_postal": "66600", + "nom_de_la_commune": "OPOUL PERILLOS", + "coordonnees_gps": [ + 42.8800628012, + 2.85805113344 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85805113344, + 42.8800628012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "073db72a7a2786b0727d432862317fbeb1ebf9e3", + "fields": { + "code_commune_insee": "66130", + "nom_de_la_commune": "OSSEJA", + "code_postal": "66340", + "coordonnees_gps": [ + 42.3951873215, + 1.99778156297 + ], + "libelle_d_acheminement": "OSSEJA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99778156297, + 42.3951873215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea3ad62e0fccc60eec832aa98e07eeacec4fe63e", + "fields": { + "code_commune_insee": "66136", + "nom_de_la_commune": "PERPIGNAN", + "code_postal": "66100", + "coordonnees_gps": [ + 42.6965954131, + 2.89936953979 + ], + "libelle_d_acheminement": "PERPIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89936953979, + 42.6965954131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faaf82331c1a274cbc266073fb934723fd2992ad", + "fields": { + "code_commune_insee": "66138", + "nom_de_la_commune": "PEYRESTORTES", + "code_postal": "66600", + "coordonnees_gps": [ + 42.7483532712, + 2.8456847121 + ], + "libelle_d_acheminement": "PEYRESTORTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8456847121, + 42.7483532712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3a90f27aa59f1abd09449c47836b12a064894bc", + "fields": { + "code_commune_insee": "66142", + "nom_de_la_commune": "PLANES", + "code_postal": "66210", + "coordonnees_gps": [ + 42.4728951595, + 2.14556980825 + ], + "libelle_d_acheminement": "PLANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14556980825, + 42.4728951595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b670a4095cf2d6191a3fb923dbf6c6e5ca0081a2", + "fields": { + "code_commune_insee": "66147", + "nom_de_la_commune": "PORTE PUYMORENS", + "code_postal": "66760", + "coordonnees_gps": [ + 42.555415554, + 1.83547052209 + ], + "libelle_d_acheminement": "PORTE PUYMORENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83547052209, + 42.555415554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84cdedbd6a1726ef8a118159bf7600af956d4889", + "fields": { + "code_commune_insee": "66148", + "nom_de_la_commune": "PORT VENDRES", + "code_postal": "66660", + "coordonnees_gps": [ + 42.5025817829, + 3.10455891207 + ], + "libelle_d_acheminement": "PORT VENDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10455891207, + 42.5025817829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0557c418d564f37c45b5856ae26527b762193056", + "fields": { + "ligne_5": "LA PRESTE", + "code_commune_insee": "66150", + "libelle_d_acheminement": "PRATS DE MOLLO LA PRESTE", + "code_postal": "66230", + "nom_de_la_commune": "PRATS DE MOLLO LA PRESTE", + "coordonnees_gps": [ + 42.4201535171, + 2.44098964514 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44098964514, + 42.4201535171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9579a1c4183725e2d65fe984a2f7d707a727f4fe", + "fields": { + "code_commune_insee": "66161", + "nom_de_la_commune": "RIA SIRACH", + "code_postal": "66500", + "coordonnees_gps": [ + 42.6128760298, + 2.38920846568 + ], + "libelle_d_acheminement": "RIA SIRACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38920846568, + 42.6128760298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd83ab57ee4c44db821b244511e06c8a9285a04c", + "fields": { + "code_commune_insee": "66164", + "nom_de_la_commune": "RIVESALTES", + "code_postal": "66600", + "coordonnees_gps": [ + 42.7785910442, + 2.87687296538 + ], + "libelle_d_acheminement": "RIVESALTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87687296538, + 42.7785910442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c72e49265a41bf96f55aed1d4b428f5ccb5b7bc", + "fields": { + "code_commune_insee": "66165", + "nom_de_la_commune": "RODES", + "code_postal": "66320", + "coordonnees_gps": [ + 42.6564198443, + 2.55013246871 + ], + "libelle_d_acheminement": "RODES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55013246871, + 42.6564198443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cea3cc26ae2a240ca16feaf5b8ca2c7003b48928", + "fields": { + "code_commune_insee": "66167", + "nom_de_la_commune": "SAILLAGOUSE", + "code_postal": "66800", + "coordonnees_gps": [ + 42.459329456, + 2.03972104811 + ], + "libelle_d_acheminement": "SAILLAGOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03972104811, + 42.459329456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8a40a8cfc6871edeaef0bf2f6c8349bca79ac0f", + "fields": { + "code_commune_insee": "66169", + "nom_de_la_commune": "ST ARNAC", + "code_postal": "66220", + "coordonnees_gps": [ + 42.7767967015, + 2.53565116152 + ], + "libelle_d_acheminement": "ST ARNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53565116152, + 42.7767967015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aad58eb7abf2009af2e0dcca4958069e2c7b35f", + "fields": { + "code_commune_insee": "66170", + "nom_de_la_commune": "STE COLOMBE DE LA COMMANDERIE", + "code_postal": "66300", + "coordonnees_gps": [ + 42.6154060137, + 2.73987613858 + ], + "libelle_d_acheminement": "STE COLOMBE DE LA COMMANDERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73987613858, + 42.6154060137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c773ea08f802ad259dcef60ef48a292bf41f4197", + "fields": { + "code_commune_insee": "66177", + "nom_de_la_commune": "ST JEAN LASSEILLE", + "code_postal": "66300", + "coordonnees_gps": [ + 42.5862325168, + 2.86488169804 + ], + "libelle_d_acheminement": "ST JEAN LASSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86488169804, + 42.5862325168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3be7f9ec8c7f9d1a25ab9c3857ca5f8d2ea1a852", + "fields": { + "code_commune_insee": "66183", + "nom_de_la_commune": "ST MARSAL", + "code_postal": "66110", + "coordonnees_gps": [ + 42.5276130849, + 2.61404559524 + ], + "libelle_d_acheminement": "ST MARSAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61404559524, + 42.5276130849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ec2ef8fa99d072d9385aa9616d7423f3b2c565d", + "fields": { + "code_commune_insee": "66192", + "nom_de_la_commune": "SAUTO", + "code_postal": "66210", + "coordonnees_gps": [ + 42.5155748521, + 2.14916955893 + ], + "libelle_d_acheminement": "SAUTO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14916955893, + 42.5155748521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94797f6f03de844b2cd093ae5af38d0ce4ab14d0", + "fields": { + "code_commune_insee": "66197", + "nom_de_la_commune": "SOUANYAS", + "code_postal": "66360", + "coordonnees_gps": [ + 42.5480499348, + 2.28418328185 + ], + "libelle_d_acheminement": "SOUANYAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28418328185, + 42.5480499348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60fcf45b68eda45b3c39ca78d2ea75690cd0bb35", + "fields": { + "code_commune_insee": "66209", + "nom_de_la_commune": "THUES ENTRE VALLS", + "code_postal": "66360", + "coordonnees_gps": [ + 42.5040638697, + 2.22986633977 + ], + "libelle_d_acheminement": "THUES ENTRE VALLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22986633977, + 42.5040638697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5954746bdf5ca12505cfc5ae1873908d2a19d0b", + "fields": { + "code_commune_insee": "66215", + "nom_de_la_commune": "TREVILLACH", + "code_postal": "66130", + "coordonnees_gps": [ + 42.7095753054, + 2.50886341936 + ], + "libelle_d_acheminement": "TREVILLACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50886341936, + 42.7095753054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45d604e61ce9f9588ef458268195e7eae9999cbe", + "fields": { + "code_commune_insee": "66217", + "nom_de_la_commune": "TROUILLAS", + "code_postal": "66300", + "coordonnees_gps": [ + 42.6064392439, + 2.82021173802 + ], + "libelle_d_acheminement": "TROUILLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82021173802, + 42.6064392439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c414dbf9e3e6ba52680cfa75b857f00efd66ba31", + "fields": { + "code_commune_insee": "67002", + "nom_de_la_commune": "ADAMSWILLER", + "code_postal": "67320", + "coordonnees_gps": [ + 48.9062078499, + 7.20176753115 + ], + "libelle_d_acheminement": "ADAMSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20176753115, + 48.9062078499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6427da6945805240cf4d284e1a03ab153966859c", + "fields": { + "ligne_5": "SALENTHAL", + "code_commune_insee": "67004", + "libelle_d_acheminement": "SOMMERAU", + "code_postal": "67440", + "nom_de_la_commune": "SOMMERAU", + "coordonnees_gps": [ + 48.6536185967, + 7.36691370722 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36691370722, + 48.6536185967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0762dd184a1df2ed23c25bb322562f867ade6450", + "fields": { + "code_commune_insee": "67008", + "nom_de_la_commune": "ALTORF", + "code_postal": "67120", + "coordonnees_gps": [ + 48.5247239067, + 7.53898226259 + ], + "libelle_d_acheminement": "ALTORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53898226259, + 48.5247239067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "337262e26b5c524224323fbd64868163aa243e65", + "fields": { + "code_commune_insee": "67011", + "nom_de_la_commune": "ARTOLSHEIM", + "code_postal": "67390", + "coordonnees_gps": [ + 48.2079373474, + 7.60004702604 + ], + "libelle_d_acheminement": "ARTOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60004702604, + 48.2079373474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b6ba57fa7b999c5c44b186f5dd22a659189b067", + "fields": { + "code_commune_insee": "67012", + "nom_de_la_commune": "ASCHBACH", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9421865958, + 7.98028356812 + ], + "libelle_d_acheminement": "ASCHBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.98028356812, + 48.9421865958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "096cf039fc76e4bd9c2d6c4fddfc48fbc42e0ddc", + "fields": { + "code_commune_insee": "67021", + "nom_de_la_commune": "BARR", + "code_postal": "67140", + "coordonnees_gps": [ + 48.4149512356, + 7.39930438782 + ], + "libelle_d_acheminement": "BARR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39930438782, + 48.4149512356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bafa07ccb398d238f0299e0c92232e9289ca806", + "fields": { + "code_commune_insee": "67023", + "nom_de_la_commune": "BATZENDORF", + "code_postal": "67500", + "coordonnees_gps": [ + 48.7820553601, + 7.70964609521 + ], + "libelle_d_acheminement": "BATZENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70964609521, + 48.7820553601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14c9fb384f539a8f4f45a1471a7ba6015b9db9ac", + "fields": { + "code_commune_insee": "67025", + "nom_de_la_commune": "BEINHEIM", + "code_postal": "67930", + "coordonnees_gps": [ + 48.8543766678, + 8.09164601373 + ], + "libelle_d_acheminement": "BEINHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.09164601373, + 48.8543766678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4859933ef1b702ee1d8428640c55e0f5a4c0b01b", + "fields": { + "code_commune_insee": "67026", + "nom_de_la_commune": "BELLEFOSSE", + "code_postal": "67130", + "coordonnees_gps": [ + 48.39467045, + 7.23463416375 + ], + "libelle_d_acheminement": "BELLEFOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23463416375, + 48.39467045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e021d311299ef9bf8846671502b62b9a5c354d0", + "fields": { + "code_commune_insee": "67046", + "nom_de_la_commune": "BISCHWILLER", + "code_postal": "67240", + "coordonnees_gps": [ + 48.7581317312, + 7.8599836461 + ], + "libelle_d_acheminement": "BISCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8599836461, + 48.7581317312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b9ac91839a038f42e34150c02f16ed83b0315c9", + "fields": { + "code_commune_insee": "67047", + "nom_de_la_commune": "BISSERT", + "code_postal": "67260", + "coordonnees_gps": [ + 48.9461819262, + 7.01770386276 + ], + "libelle_d_acheminement": "BISSERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01770386276, + 48.9461819262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3bf5b88ccf8eb5962440ff19d4872dbb4a17b0f", + "fields": { + "code_commune_insee": "67050", + "nom_de_la_commune": "BLANCHERUPT", + "code_postal": "67130", + "coordonnees_gps": [ + 48.4071095997, + 7.19552856029 + ], + "libelle_d_acheminement": "BLANCHERUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19552856029, + 48.4071095997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f61d0bbdda38d299143d9526666e11fc0fc3716c", + "fields": { + "ligne_5": "KLINGENTHAL", + "code_commune_insee": "67052", + "libelle_d_acheminement": "BOERSCH", + "code_postal": "67530", + "nom_de_la_commune": "BOERSCH", + "coordonnees_gps": [ + 48.4664860323, + 7.37505113728 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37505113728, + 48.4664860323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbb4ec9d2d03674f25287420941acc82d983d7f3", + "fields": { + "code_commune_insee": "67054", + "nom_de_la_commune": "BOLSENHEIM", + "code_postal": "67150", + "coordonnees_gps": [ + 48.425239497, + 7.6039565984 + ], + "libelle_d_acheminement": "BOLSENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6039565984, + 48.425239497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5b8c32a597b85937a0089d8f3546f7a7a3b81db", + "fields": { + "code_commune_insee": "67056", + "nom_de_la_commune": "BOOTZHEIM", + "code_postal": "67390", + "coordonnees_gps": [ + 48.1932692623, + 7.58948440794 + ], + "libelle_d_acheminement": "BOOTZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58948440794, + 48.1932692623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "674b5703240db7740b719d0ee6e36f0570fa4f0b", + "fields": { + "code_commune_insee": "67059", + "nom_de_la_commune": "BOURG BRUCHE", + "code_postal": "67420", + "coordonnees_gps": [ + 48.358768312, + 7.143716963 + ], + "libelle_d_acheminement": "BOURG BRUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.143716963, + 48.358768312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2610e4df3ba79afaa353456a44d67d0c8b9501e3", + "fields": { + "ligne_5": "RIEDHEIM", + "code_commune_insee": "67061", + "libelle_d_acheminement": "BOUXWILLER", + "code_postal": "67330", + "nom_de_la_commune": "BOUXWILLER", + "coordonnees_gps": [ + 48.8172998086, + 7.46488021539 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46488021539, + 48.8172998086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b865652dc7492f5d371ae6b8ed233444feeedb7", + "fields": { + "ligne_5": "FRECONRUPT", + "code_commune_insee": "67066", + "libelle_d_acheminement": "LA BROQUE", + "code_postal": "67130", + "nom_de_la_commune": "LA BROQUE", + "coordonnees_gps": [ + 48.4601655449, + 7.17283025504 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17283025504, + 48.4601655449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ad04ea7a9acf99aa8efad5262735a8731e4f05d", + "fields": { + "code_commune_insee": "67067", + "nom_de_la_commune": "BRUMATH", + "code_postal": "67170", + "coordonnees_gps": [ + 48.7204656106, + 7.71740193625 + ], + "libelle_d_acheminement": "BRUMATH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71740193625, + 48.7204656106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cb3f4fe68fc4f95ff9cc2847fe52d89b89a3d17", + "fields": { + "code_commune_insee": "67068", + "nom_de_la_commune": "BUSWILLER", + "code_postal": "67350", + "coordonnees_gps": [ + 48.8219680597, + 7.56228814034 + ], + "libelle_d_acheminement": "BUSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56228814034, + 48.8219680597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d104d9892db1ec1284da7bf03016d342dc928b38", + "fields": { + "code_commune_insee": "67076", + "nom_de_la_commune": "COLROY LA ROCHE", + "code_postal": "67420", + "coordonnees_gps": [ + 48.39149749, + 7.17386084704 + ], + "libelle_d_acheminement": "COLROY LA ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17386084704, + 48.39149749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cb4be7632f4965414878145eacd353ab0ff8d54", + "fields": { + "code_commune_insee": "67077", + "nom_de_la_commune": "COSSWILLER", + "code_postal": "67310", + "coordonnees_gps": [ + 48.6086737459, + 7.36224872367 + ], + "libelle_d_acheminement": "COSSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36224872367, + 48.6086737459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d29b4cc4c72eb76f9d7d1c8258778e443e5c9b0", + "fields": { + "code_commune_insee": "67079", + "nom_de_la_commune": "CROETTWILLER", + "code_postal": "67470", + "coordonnees_gps": [ + 48.9315378409, + 8.03790255661 + ], + "libelle_d_acheminement": "CROETTWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.03790255661, + 48.9315378409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "778d973422fadcb81bd8543d8def9f1aeaeb00af", + "fields": { + "code_commune_insee": "67092", + "nom_de_la_commune": "DIEFFENBACH AU VAL", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3144024513, + 7.32599641876 + ], + "libelle_d_acheminement": "DIEFFENBACH AU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32599641876, + 48.3144024513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee9e7ccc502f00b5312107d145d973bc78326c6c", + "fields": { + "code_commune_insee": "67096", + "nom_de_la_commune": "DIMBSTHAL", + "code_postal": "67440", + "coordonnees_gps": [ + 48.6729223187, + 7.35414815294 + ], + "libelle_d_acheminement": "DIMBSTHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35414815294, + 48.6729223187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dc601145b458a10387162512f43006cc18a93b1", + "fields": { + "code_commune_insee": "67107", + "nom_de_la_commune": "DUNTZENHEIM", + "code_postal": "67270", + "coordonnees_gps": [ + 48.7134280666, + 7.54291307036 + ], + "libelle_d_acheminement": "DUNTZENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54291307036, + 48.7134280666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e275026cf2fd653813547af5f486caebf999578a", + "fields": { + "ligne_5": "WOLFSTHAL", + "code_commune_insee": "67122", + "libelle_d_acheminement": "WANGENBOURG ENGENTHAL", + "code_postal": "67710", + "nom_de_la_commune": "WANGENBOURG ENGENTHAL", + "coordonnees_gps": [ + 48.6212665024, + 7.30505408726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30505408726, + 48.6212665024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f28203f419b14b7531a8dec2245372ce97f71fb", + "fields": { + "code_commune_insee": "67133", + "nom_de_la_commune": "ESCHBOURG", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8226852369, + 7.29080380579 + ], + "libelle_d_acheminement": "ESCHBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29080380579, + 48.8226852369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abffd433776fc398581f1a898415177bd997255b", + "fields": { + "code_commune_insee": "67140", + "nom_de_la_commune": "FORSTFELD", + "code_postal": "67480", + "coordonnees_gps": [ + 48.8631078852, + 8.04746930377 + ], + "libelle_d_acheminement": "FORSTFELD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.04746930377, + 48.8631078852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f98d4a7fc88cd429be2e3c1ff771dc34c383cd31", + "fields": { + "code_commune_insee": "67143", + "nom_de_la_commune": "FOUCHY", + "code_postal": "67220", + "coordonnees_gps": [ + 48.316102651, + 7.24660740823 + ], + "libelle_d_acheminement": "FOUCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24660740823, + 48.316102651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3638146201b38ab67e6cd65d71c274723897270f", + "fields": { + "code_commune_insee": "67145", + "nom_de_la_commune": "FRIEDOLSHEIM", + "code_postal": "67490", + "coordonnees_gps": [ + 48.7070325284, + 7.48727340354 + ], + "libelle_d_acheminement": "FRIEDOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48727340354, + 48.7070325284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40ce36fc2300f4c48c6ed2cb07f0f4f8824b292c", + "fields": { + "code_commune_insee": "67152", + "nom_de_la_commune": "GEISPOLSHEIM", + "code_postal": "67118", + "coordonnees_gps": [ + 48.5143463092, + 7.65806561244 + ], + "libelle_d_acheminement": "GEISPOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.65806561244, + 48.5143463092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f53f2faa9ee0fe92e2e3fc38d6abc8f8b0980b7d", + "fields": { + "ligne_5": "GEISWILLER", + "code_commune_insee": "67153", + "libelle_d_acheminement": "GEISWILLER ZOEBERSDORF", + "code_postal": "67270", + "nom_de_la_commune": "GEISWILLER ZOEBERSDORF", + "coordonnees_gps": [ + 48.7904561114, + 7.50050784514 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50050784514, + 48.7904561114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac9338e8aa13245b36ec7d3b301194fb3b3367e0", + "fields": { + "code_commune_insee": "67154", + "nom_de_la_commune": "GERSTHEIM", + "code_postal": "67150", + "coordonnees_gps": [ + 48.3807788366, + 7.70453174528 + ], + "libelle_d_acheminement": "GERSTHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70453174528, + 48.3807788366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbe9677cca86f56c85aca58bfe2c9598ef93abdc", + "fields": { + "code_commune_insee": "67166", + "nom_de_la_commune": "GRASSENDORF", + "code_postal": "67350", + "coordonnees_gps": [ + 48.8148050236, + 7.61013928029 + ], + "libelle_d_acheminement": "GRASSENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61013928029, + 48.8148050236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15c1e82643fa1c79078a28cd24aa837894c21274", + "fields": { + "code_commune_insee": "67182", + "nom_de_la_commune": "HANGENBIETEN", + "code_postal": "67980", + "coordonnees_gps": [ + 48.55700945, + 7.61194013862 + ], + "libelle_d_acheminement": "HANGENBIETEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61194013862, + 48.55700945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3097446e24f4c287985143e7accedfb91e8f1cff", + "fields": { + "code_commune_insee": "67184", + "nom_de_la_commune": "HATTEN", + "code_postal": "67690", + "coordonnees_gps": [ + 48.8939645842, + 8.00687514269 + ], + "libelle_d_acheminement": "HATTEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.00687514269, + 48.8939645842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06dc5149dd50c3e3af1b4d20fc20d3a840f05f3b", + "fields": { + "code_commune_insee": "67187", + "nom_de_la_commune": "HEIDOLSHEIM", + "code_postal": "67390", + "coordonnees_gps": [ + 48.2041501521, + 7.51093457658 + ], + "libelle_d_acheminement": "HEIDOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51093457658, + 48.2041501521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce153576b3df300f48c4607e2fdf17b8d9c1e4fc", + "fields": { + "code_commune_insee": "67188", + "nom_de_la_commune": "HEILIGENBERG", + "code_postal": "67190", + "coordonnees_gps": [ + 48.5371724214, + 7.37789459868 + ], + "libelle_d_acheminement": "HEILIGENBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37789459868, + 48.5371724214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f45129f330a3a487ccff071dc2a71fc322309cd", + "fields": { + "code_commune_insee": "67189", + "nom_de_la_commune": "HEILIGENSTEIN", + "code_postal": "67140", + "coordonnees_gps": [ + 48.4220772866, + 7.44087809076 + ], + "libelle_d_acheminement": "HEILIGENSTEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44087809076, + 48.4220772866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "245e81821ec56178e52eb106452b8dae19c5c66b", + "fields": { + "code_commune_insee": "67190", + "nom_de_la_commune": "HENGWILLER", + "code_postal": "67440", + "coordonnees_gps": [ + 48.6676339453, + 7.328558621 + ], + "libelle_d_acheminement": "HENGWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.328558621, + 48.6676339453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f71e4e760892275f52bd3c2618decd60c3ef9b7", + "fields": { + "code_commune_insee": "67199", + "nom_de_la_commune": "HINSINGEN", + "code_postal": "67260", + "coordonnees_gps": [ + 48.9511717259, + 6.99896336486 + ], + "libelle_d_acheminement": "HINSINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99896336486, + 48.9511717259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70b106d3cd7bf72493156f7d6ce1bef4681ddb96", + "fields": { + "code_commune_insee": "67206", + "nom_de_la_commune": "HOFFEN", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9330135449, + 7.93276702942 + ], + "libelle_d_acheminement": "HOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93276702942, + 48.9330135449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa34926bb3f4328d189f01d0360b5a43bb1ff384", + "fields": { + "code_commune_insee": "67210", + "nom_de_la_commune": "LE HOHWALD", + "code_postal": "67140", + "coordonnees_gps": [ + 48.4006621261, + 7.31029962192 + ], + "libelle_d_acheminement": "LE HOHWALD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31029962192, + 48.4006621261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56ac37fa20946c84242675ea435f33add6743587", + "fields": { + "code_commune_insee": "67212", + "nom_de_la_commune": "HOLTZHEIM", + "code_postal": "67810", + "coordonnees_gps": [ + 48.5567634132, + 7.64425286816 + ], + "libelle_d_acheminement": "HOLTZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64425286816, + 48.5567634132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba321737e45e9df631ed2fc21991a79386b61077", + "fields": { + "code_commune_insee": "67217", + "nom_de_la_commune": "ICHTRATZHEIM", + "code_postal": "67640", + "coordonnees_gps": [ + 48.47895733, + 7.67769353417 + ], + "libelle_d_acheminement": "ICHTRATZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67769353417, + 48.47895733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28ec40934a6f37ddc49e97b024b7ac059cf63a71", + "fields": { + "code_commune_insee": "67218", + "nom_de_la_commune": "ILLKIRCH GRAFFENSTADEN", + "code_postal": "67400", + "coordonnees_gps": [ + 48.5200498962, + 7.73129588098 + ], + "libelle_d_acheminement": "ILLKIRCH GRAFFENSTADEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73129588098, + 48.5200498962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cce5b3509d428d00248e449d5115e4d9afb005f8", + "fields": { + "code_commune_insee": "67221", + "nom_de_la_commune": "INGOLSHEIM", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9708439784, + 7.92975610012 + ], + "libelle_d_acheminement": "INGOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.92975610012, + 48.9708439784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2dd6583e812aa6c417352c185dcf69e1120d849", + "fields": { + "code_commune_insee": "67225", + "nom_de_la_commune": "ISSENHAUSEN", + "code_postal": "67330", + "coordonnees_gps": [ + 48.8042772362, + 7.53366478397 + ], + "libelle_d_acheminement": "ISSENHAUSEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53366478397, + 48.8042772362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "458721afaa24b7bce49c255f0dfcfbc11123ff15", + "fields": { + "code_commune_insee": "67228", + "nom_de_la_commune": "NEUGARTHEIM ITTLENHEIM", + "code_postal": "67370", + "coordonnees_gps": [ + 48.6565369611, + 7.5414687691 + ], + "libelle_d_acheminement": "NEUGARTHEIM ITTLENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5414687691, + 48.6565369611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c98d1581e4f99fdeb9bc0b87dd2d534c5d61096", + "fields": { + "code_commune_insee": "67236", + "nom_de_la_commune": "KIENHEIM", + "code_postal": "67270", + "coordonnees_gps": [ + 48.6881585203, + 7.58568269941 + ], + "libelle_d_acheminement": "KIENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58568269941, + 48.6881585203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "938f7c9638d84b8f9f51e7bc7f9466597a609acd", + "fields": { + "code_commune_insee": "67238", + "nom_de_la_commune": "KINDWILLER", + "code_postal": "67350", + "coordonnees_gps": [ + 48.8612754447, + 7.59545058526 + ], + "libelle_d_acheminement": "KINDWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59545058526, + 48.8612754447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c5296c5c24f26b85d4692f600dc22e01edf1107", + "fields": { + "code_commune_insee": "67244", + "nom_de_la_commune": "KLEINGOEFT", + "code_postal": "67440", + "coordonnees_gps": [ + 48.6939893775, + 7.44201331166 + ], + "libelle_d_acheminement": "KLEINGOEFT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44201331166, + 48.6939893775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7397bba2338fafbf95a0b3d546ec3c61eec467a9", + "fields": { + "code_commune_insee": "67245", + "nom_de_la_commune": "KNOERSHEIM", + "code_postal": "67310", + "coordonnees_gps": [ + 48.6796467865, + 7.45825135776 + ], + "libelle_d_acheminement": "KNOERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45825135776, + 48.6796467865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7810f38ce0074ceac415be81a27deae80c845824", + "fields": { + "ligne_5": "OBERKUTZENHAUSEN", + "code_commune_insee": "67254", + "libelle_d_acheminement": "KUTZENHAUSEN", + "code_postal": "67250", + "nom_de_la_commune": "KUTZENHAUSEN", + "coordonnees_gps": [ + 48.9388573117, + 7.8491381943 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8491381943, + 48.9388573117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ad2da5c220b845d8d6050b891a5fe8d3cd16272", + "fields": { + "code_commune_insee": "67257", + "nom_de_la_commune": "LAMPERTSLOCH", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9704665444, + 7.82012664257 + ], + "libelle_d_acheminement": "LAMPERTSLOCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.82012664257, + 48.9704665444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6718bc5f8287d5d3023ea55fc9c65ec129b04f98", + "fields": { + "code_commune_insee": "67259", + "nom_de_la_commune": "LANGENSOULTZBACH", + "code_postal": "67360", + "coordonnees_gps": [ + 48.9742908393, + 7.73045198292 + ], + "libelle_d_acheminement": "LANGENSOULTZBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73045198292, + 48.9742908393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db6a8711b6de20f3e818b54f40cebfa9f585bef4", + "fields": { + "code_commune_insee": "67260", + "nom_de_la_commune": "LAUBACH", + "code_postal": "67580", + "coordonnees_gps": [ + 48.8796848057, + 7.71816160797 + ], + "libelle_d_acheminement": "LAUBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71816160797, + 48.8796848057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99dba2f8573e57bc546c1e9cd596d3b34c6a7619", + "fields": { + "code_commune_insee": "67261", + "nom_de_la_commune": "LAUTERBOURG", + "code_postal": "67630", + "coordonnees_gps": [ + 48.9637116345, + 8.18637725776 + ], + "libelle_d_acheminement": "LAUTERBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.18637725776, + 48.9637116345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b18effa8c2e62c8c5931dc1715169b19f5bb104f", + "fields": { + "ligne_5": "MATTSTALL", + "code_commune_insee": "67263", + "libelle_d_acheminement": "LEMBACH", + "code_postal": "67510", + "nom_de_la_commune": "LEMBACH", + "coordonnees_gps": [ + 49.0124690471, + 7.768432419 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.768432419, + 49.0124690471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5185974f0c1ab94c8b86117d98b0ebf699d9f76", + "fields": { + "code_commune_insee": "67264", + "nom_de_la_commune": "LEUTENHEIM", + "code_postal": "67480", + "coordonnees_gps": [ + 48.851706744, + 8.00007828567 + ], + "libelle_d_acheminement": "LEUTENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.00007828567, + 48.851706744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26a5e218af15f0c981091bd76947da4870299c3e", + "fields": { + "code_commune_insee": "67265", + "nom_de_la_commune": "LICHTENBERG", + "code_postal": "67340", + "coordonnees_gps": [ + 48.9218797672, + 7.48346810796 + ], + "libelle_d_acheminement": "LICHTENBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48346810796, + 48.9218797672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "968ec32790dccf87bd9b4de1ecfdf4ec25f18112", + "fields": { + "code_commune_insee": "67266", + "nom_de_la_commune": "LIMERSHEIM", + "code_postal": "67150", + "coordonnees_gps": [ + 48.4538179541, + 7.63089115629 + ], + "libelle_d_acheminement": "LIMERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63089115629, + 48.4538179541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c06be6280715e2caa7f38573dd6e1dfc88aa47f", + "fields": { + "code_commune_insee": "67271", + "nom_de_la_commune": "LOBSANN", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9632390551, + 7.84358548339 + ], + "libelle_d_acheminement": "LOBSANN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.84358548339, + 48.9632390551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1333030e821091c49735246e2282b6042fc01eb9", + "fields": { + "code_commune_insee": "67277", + "nom_de_la_commune": "MACKENHEIM", + "code_postal": "67390", + "coordonnees_gps": [ + 48.1826180117, + 7.58253183432 + ], + "libelle_d_acheminement": "MACKENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58253183432, + 48.1826180117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed2885a1a8f2b2ffa54cdbf226c563e29fc16cba", + "fields": { + "code_commune_insee": "67279", + "nom_de_la_commune": "MAENNOLSHEIM", + "code_postal": "67700", + "coordonnees_gps": [ + 48.6975871317, + 7.47193118415 + ], + "libelle_d_acheminement": "MAENNOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47193118415, + 48.6975871317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c82c159fa0f8b7b2b41770c5b747c274e3d59fa", + "fields": { + "ligne_5": "WAGENBACH", + "code_commune_insee": "67280", + "libelle_d_acheminement": "MAISONSGOUTTE", + "code_postal": "67220", + "nom_de_la_commune": "MAISONSGOUTTE", + "coordonnees_gps": [ + 48.3535462593, + 7.25920729014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25920729014, + 48.3535462593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9704195c3c92d649df7477db38964fd22d4c7fad", + "fields": { + "code_commune_insee": "67285", + "nom_de_la_commune": "MATZENHEIM", + "code_postal": "67150", + "coordonnees_gps": [ + 48.3845019495, + 7.63534088675 + ], + "libelle_d_acheminement": "MATZENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63534088675, + 48.3845019495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebd37bbc30cb06896de9243ff5735a302f377373", + "fields": { + "ligne_5": "HAEUSERN", + "code_commune_insee": "67285", + "libelle_d_acheminement": "MATZENHEIM", + "code_postal": "67150", + "nom_de_la_commune": "MATZENHEIM", + "coordonnees_gps": [ + 48.3845019495, + 7.63534088675 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63534088675, + 48.3845019495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eef10984cec8f331dca1c8d91ba560a6af5f1ae1", + "fields": { + "code_commune_insee": "67287", + "nom_de_la_commune": "MELSHEIM", + "code_postal": "67270", + "coordonnees_gps": [ + 48.763931845, + 7.51498324586 + ], + "libelle_d_acheminement": "MELSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51498324586, + 48.763931845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a29e4645b30806e40efea3caf82b76146fbd349c", + "fields": { + "code_commune_insee": "67290", + "nom_de_la_commune": "MERKWILLER PECHELBRONN", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9286722006, + 7.8291529606 + ], + "libelle_d_acheminement": "MERKWILLER PECHELBRONN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8291529606, + 48.9286722006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0febc64f111caba67204beaaed76d56bc9210cac", + "fields": { + "ligne_5": "HOELSCHLOCH", + "code_commune_insee": "67290", + "libelle_d_acheminement": "MERKWILLER PECHELBRONN", + "code_postal": "67250", + "nom_de_la_commune": "MERKWILLER PECHELBRONN", + "coordonnees_gps": [ + 48.9286722006, + 7.8291529606 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8291529606, + 48.9286722006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e1d2090d852688df960364c3108bcfbefa4d122", + "fields": { + "code_commune_insee": "67296", + "nom_de_la_commune": "MITTELHAUSBERGEN", + "code_postal": "67206", + "coordonnees_gps": [ + 48.6144088918, + 7.69388360837 + ], + "libelle_d_acheminement": "MITTELHAUSBERGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69388360837, + 48.6144088918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "924b0f62f3a9c29d9aa1bfc3dfda3c0da9a8125f", + "fields": { + "code_commune_insee": "67300", + "nom_de_la_commune": "MOLSHEIM", + "code_postal": "67120", + "coordonnees_gps": [ + 48.5447196161, + 7.4995001297 + ], + "libelle_d_acheminement": "MOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4995001297, + 48.5447196161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e89653d4521a778503b24720666329454a2bad5", + "fields": { + "code_commune_insee": "67302", + "nom_de_la_commune": "MONSWILLER", + "code_postal": "67700", + "coordonnees_gps": [ + 48.7521963056, + 7.38626447438 + ], + "libelle_d_acheminement": "MONSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38626447438, + 48.7521963056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53040681aef1104eb08db3b501802d0bb6998925", + "fields": { + "code_commune_insee": "67303", + "nom_de_la_commune": "MORSBRONN LES BAINS", + "code_postal": "67360", + "coordonnees_gps": [ + 48.9099424, + 7.73456137399 + ], + "libelle_d_acheminement": "MORSBRONN LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73456137399, + 48.9099424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c6c85b34e27e0ddb32aec61ee78132a01afc7d0", + "fields": { + "code_commune_insee": "67308", + "nom_de_la_commune": "MUNCHHAUSEN", + "code_postal": "67470", + "coordonnees_gps": [ + 48.9149378138, + 8.14501372175 + ], + "libelle_d_acheminement": "MUNCHHAUSEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.14501372175, + 48.9149378138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e2739d35912dcfde7c3daa14c0cc57536841f56", + "fields": { + "code_commune_insee": "67309", + "nom_de_la_commune": "MUNDOLSHEIM", + "code_postal": "67450", + "coordonnees_gps": [ + 48.6395028241, + 7.71495900977 + ], + "libelle_d_acheminement": "MUNDOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71495900977, + 48.6395028241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b107c7fc48dcb10caaa6a846acf4199b8701bf44", + "fields": { + "code_commune_insee": "67320", + "nom_de_la_commune": "NEUVE EGLISE", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3261151153, + 7.31059686746 + ], + "libelle_d_acheminement": "NEUVE EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31059686746, + 48.3261151153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fc6058ef84dd053e385d04633c74c1042ac10d3", + "fields": { + "code_commune_insee": "67325", + "nom_de_la_commune": "NIEDERHASLACH", + "code_postal": "67280", + "coordonnees_gps": [ + 48.5356531709, + 7.35017404112 + ], + "libelle_d_acheminement": "NIEDERHASLACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35017404112, + 48.5356531709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5af28c7acbc04081d5b8a0126ed1c901fed5d930", + "fields": { + "code_commune_insee": "67334", + "nom_de_la_commune": "NIEDERSTEINBACH", + "code_postal": "67510", + "coordonnees_gps": [ + 49.0382020834, + 7.71349059998 + ], + "libelle_d_acheminement": "NIEDERSTEINBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71349059998, + 49.0382020834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f60a88f020ed847917e0738ead37c36fd93da719", + "fields": { + "code_commune_insee": "67335", + "nom_de_la_commune": "NORDHEIM", + "code_postal": "67520", + "coordonnees_gps": [ + 48.6396017162, + 7.50080829789 + ], + "libelle_d_acheminement": "NORDHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50080829789, + 48.6396017162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d74952f92f892bc4f3b8e6fe2e0541bc39cb6a99", + "fields": { + "code_commune_insee": "67338", + "nom_de_la_commune": "OBENHEIM", + "code_postal": "67230", + "coordonnees_gps": [ + 48.3562350534, + 7.68497044431 + ], + "libelle_d_acheminement": "OBENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68497044431, + 48.3562350534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e3d8b063ec58e2881992c6130bca9acabe7e07d", + "fields": { + "code_commune_insee": "67341", + "nom_de_la_commune": "OBERDORF SPACHBACH", + "code_postal": "67360", + "coordonnees_gps": [ + 48.9274480651, + 7.76852769166 + ], + "libelle_d_acheminement": "OBERDORF SPACHBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76852769166, + 48.9274480651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f06c86d74415920fcae71ed72fa6492510ac9b7", + "fields": { + "code_commune_insee": "67343", + "nom_de_la_commune": "OBERHAUSBERGEN", + "code_postal": "67205", + "coordonnees_gps": [ + 48.6073002945, + 7.68309913156 + ], + "libelle_d_acheminement": "OBERHAUSBERGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68309913156, + 48.6073002945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0a7103b896f12b49a847ec63f7f0c65d03ffe39", + "fields": { + "ligne_5": "OBERMODERN", + "code_commune_insee": "67347", + "libelle_d_acheminement": "OBERMODERN ZUTZENDORF", + "code_postal": "67330", + "nom_de_la_commune": "OBERMODERN ZUTZENDORF", + "coordonnees_gps": [ + 48.8479068198, + 7.54015464948 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54015464948, + 48.8479068198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c8b5412287a8ee5c8a1b1926258c6486666f32e", + "fields": { + "code_commune_insee": "67355", + "nom_de_la_commune": "OERMINGEN", + "code_postal": "67970", + "coordonnees_gps": [ + 48.9984271369, + 7.11950944283 + ], + "libelle_d_acheminement": "OERMINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11950944283, + 48.9984271369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "508045772ba6e892d2173462d21f261b7cecbc22", + "fields": { + "code_commune_insee": "67360", + "nom_de_la_commune": "OHNENHEIM", + "code_postal": "67390", + "coordonnees_gps": [ + 48.1873821568, + 7.50382215032 + ], + "libelle_d_acheminement": "OHNENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50382215032, + 48.1873821568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8f5346c24b7f65ac1ca0a0da356d2862954c006", + "fields": { + "code_commune_insee": "67364", + "nom_de_la_commune": "OSTHOUSE", + "code_postal": "67150", + "coordonnees_gps": [ + 48.394273648, + 7.65078439355 + ], + "libelle_d_acheminement": "OSTHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.65078439355, + 48.394273648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8fb0e0ba3a8b4de13e7b9427062ded48f6101a0", + "fields": { + "code_commune_insee": "67366", + "nom_de_la_commune": "OTTERSTHAL", + "code_postal": "67700", + "coordonnees_gps": [ + 48.7589616687, + 7.34210158035 + ], + "libelle_d_acheminement": "OTTERSTHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34210158035, + 48.7589616687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40b0516c9900e8b85d884d5482135b430a38d062", + "fields": { + "code_commune_insee": "67371", + "nom_de_la_commune": "LA PETITE PIERRE", + "code_postal": "67290", + "coordonnees_gps": [ + 48.8657597248, + 7.32734776032 + ], + "libelle_d_acheminement": "LA PETITE PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32734776032, + 48.8657597248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34ab7c7db3b6c7ebbddf9d875ab1a1f626810db7", + "fields": { + "ligne_5": "LA WALCK", + "code_commune_insee": "67372", + "libelle_d_acheminement": "VAL DE MODER", + "code_postal": "67350", + "nom_de_la_commune": "VAL DE MODER", + "coordonnees_gps": [ + 48.8432047964, + 7.59893121728 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59893121728, + 48.8432047964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "351a5313a4059a6841a555183a27b1f83e731b5e", + "fields": { + "code_commune_insee": "67377", + "nom_de_la_commune": "PLAINE", + "code_postal": "67420", + "coordonnees_gps": [ + 48.4242524376, + 7.136828953 + ], + "libelle_d_acheminement": "PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.136828953, + 48.4242524376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce056893868facd3970d79cdfe8d8f1b3d086b20", + "fields": { + "ligne_5": "POUTAY", + "code_commune_insee": "67377", + "libelle_d_acheminement": "PLAINE", + "code_postal": "67420", + "nom_de_la_commune": "PLAINE", + "coordonnees_gps": [ + 48.4242524376, + 7.136828953 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.136828953, + 48.4242524376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88cd786cf47c76ebb2db904a671cb4879516e239", + "fields": { + "code_commune_insee": "67380", + "nom_de_la_commune": "PRINTZHEIM", + "code_postal": "67490", + "coordonnees_gps": [ + 48.7920916691, + 7.47697747581 + ], + "libelle_d_acheminement": "PRINTZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47697747581, + 48.7920916691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8adf462d8c6cc8127100f9ab744ac57799e9c733", + "fields": { + "code_commune_insee": "67381", + "nom_de_la_commune": "PUBERG", + "code_postal": "67290", + "coordonnees_gps": [ + 48.9155823913, + 7.30719707129 + ], + "libelle_d_acheminement": "PUBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30719707129, + 48.9155823913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82edcbf5dc41bffd7a87503e15028ea4a25a49af", + "fields": { + "code_commune_insee": "67385", + "nom_de_la_commune": "RATZWILLER", + "code_postal": "67430", + "coordonnees_gps": [ + 48.9511834886, + 7.25526644462 + ], + "libelle_d_acheminement": "RATZWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25526644462, + 48.9511834886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06545fc316374087b7983e0f52c9a38bab64c569", + "fields": { + "code_commune_insee": "67387", + "nom_de_la_commune": "REICHSFELD", + "code_postal": "67140", + "coordonnees_gps": [ + 48.3632176114, + 7.38013240259 + ], + "libelle_d_acheminement": "REICHSFELD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38013240259, + 48.3632176114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37d4d965158b05c9ba75f103e0203c977f7a5a57", + "fields": { + "code_commune_insee": "67388", + "nom_de_la_commune": "REICHSHOFFEN", + "code_postal": "67110", + "coordonnees_gps": [ + 48.9374738141, + 7.67524392533 + ], + "libelle_d_acheminement": "REICHSHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67524392533, + 48.9374738141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce4b0f83db73f4b928d48fc462010cb80423a175", + "fields": { + "ligne_5": "NEHWILLER", + "code_commune_insee": "67388", + "libelle_d_acheminement": "REICHSHOFFEN", + "code_postal": "67110", + "nom_de_la_commune": "REICHSHOFFEN", + "coordonnees_gps": [ + 48.9374738141, + 7.67524392533 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67524392533, + 48.9374738141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4122d20578818c7fffe24672d8982f1baba8763", + "fields": { + "code_commune_insee": "67398", + "nom_de_la_commune": "RICHTOLSHEIM", + "code_postal": "67390", + "coordonnees_gps": [ + 48.2238657703, + 7.60386287362 + ], + "libelle_d_acheminement": "RICHTOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60386287362, + 48.2238657703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "233011fa2fe1fa8ecc048854830ba8df3a0864ff", + "fields": { + "code_commune_insee": "67401", + "nom_de_la_commune": "RIMSDORF", + "code_postal": "67260", + "coordonnees_gps": [ + 48.9288350756, + 7.11724868007 + ], + "libelle_d_acheminement": "RIMSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11724868007, + 48.9288350756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7908e20cb5526334293351c6dbd8977dd74248bf", + "fields": { + "code_commune_insee": "67408", + "nom_de_la_commune": "ROMANSWILLER", + "code_postal": "67310", + "coordonnees_gps": [ + 48.6407597718, + 7.38032558505 + ], + "libelle_d_acheminement": "ROMANSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38032558505, + 48.6407597718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "356d72d8448ab4f39ee5e7d3d02b849d71b32e3c", + "fields": { + "ligne_5": "ZORNTHAL", + "code_commune_insee": "67437", + "libelle_d_acheminement": "SAVERNE", + "code_postal": "67700", + "nom_de_la_commune": "SAVERNE", + "coordonnees_gps": [ + 48.7402250066, + 7.34206238199 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34206238199, + 48.7402250066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62f778762d07611db65ab7e4be4de59175ec144b", + "fields": { + "code_commune_insee": "67441", + "nom_de_la_commune": "SCHALKENDORF", + "code_postal": "67350", + "coordonnees_gps": [ + 48.8369254712, + 7.56834375318 + ], + "libelle_d_acheminement": "SCHALKENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56834375318, + 48.8369254712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ba065e0672ef114791649e0764c25b2ce656e6f", + "fields": { + "ligne_5": "WACKENBACH", + "code_commune_insee": "67448", + "libelle_d_acheminement": "SCHIRMECK", + "code_postal": "67130", + "nom_de_la_commune": "SCHIRMECK", + "coordonnees_gps": [ + 48.4922866758, + 7.19802185316 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19802185316, + 48.4922866758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28c18c0f3388739a1a681b0262ba2aaf0432f949", + "fields": { + "code_commune_insee": "67451", + "nom_de_la_commune": "SCHLEITHAL", + "code_postal": "67160", + "coordonnees_gps": [ + 48.9866877882, + 8.03245786047 + ], + "libelle_d_acheminement": "SCHLEITHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.03245786047, + 48.9866877882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b51c72a527402e0027045c2b09481297c742dad7", + "fields": { + "code_commune_insee": "67452", + "nom_de_la_commune": "SCHNERSHEIM", + "code_postal": "67370", + "coordonnees_gps": [ + 48.6601653977, + 7.56876364377 + ], + "libelle_d_acheminement": "SCHNERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56876364377, + 48.6601653977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b96f977456710028163fdb4c5e5f1ac7f6474601", + "fields": { + "code_commune_insee": "67474", + "nom_de_la_commune": "SOULTZ SOUS FORETS", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9461642075, + 7.87359864642 + ], + "libelle_d_acheminement": "SOULTZ SOUS FORETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.87359864642, + 48.9461642075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30e5c0b1f5924e7803a5cfd0f3c56c147948a903", + "fields": { + "code_commune_insee": "67475", + "nom_de_la_commune": "SPARSBACH", + "code_postal": "67340", + "coordonnees_gps": [ + 48.8795880756, + 7.40029606816 + ], + "libelle_d_acheminement": "SPARSBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40029606816, + 48.8795880756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09850bf447170fbea549d0d62e50469db7c0ef5b", + "fields": { + "code_commune_insee": "67477", + "nom_de_la_commune": "STEIGE", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3628206219, + 7.22974408388 + ], + "libelle_d_acheminement": "STEIGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22974408388, + 48.3628206219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "890daa920cf243f897f410d290406e5f86577466", + "fields": { + "code_commune_insee": "67483", + "nom_de_la_commune": "STRUTH", + "code_postal": "67290", + "coordonnees_gps": [ + 48.8951838329, + 7.26857056944 + ], + "libelle_d_acheminement": "STRUTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26857056944, + 48.8951838329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f90f18ef3faa29e89e9fa09949053ec79d193207", + "fields": { + "ligne_5": "OFFENHEIM", + "code_commune_insee": "67485", + "libelle_d_acheminement": "STUTZHEIM OFFENHEIM", + "code_postal": "67370", + "nom_de_la_commune": "STUTZHEIM OFFENHEIM", + "coordonnees_gps": [ + 48.6266854677, + 7.62711611103 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62711611103, + 48.6266854677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c50c228b1222567efb1e119b3e7b18b49e357f31", + "fields": { + "code_commune_insee": "67493", + "nom_de_la_commune": "TRIEMBACH AU VAL", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3434265529, + 7.33416002911 + ], + "libelle_d_acheminement": "TRIEMBACH AU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33416002911, + 48.3434265529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4edb0cb63708ab3a726696b3ad12c459d94c9d72", + "fields": { + "ligne_5": "NIEDERALTDORF", + "code_commune_insee": "67497", + "libelle_d_acheminement": "UHLWILLER", + "code_postal": "67350", + "nom_de_la_commune": "UHLWILLER", + "coordonnees_gps": [ + 48.8202578689, + 7.67470803749 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67470803749, + 48.8202578689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c99a3b8881cde78e57c306a7babd07e9a0aafea2", + "fields": { + "code_commune_insee": "67500", + "nom_de_la_commune": "URMATT", + "code_postal": "67280", + "coordonnees_gps": [ + 48.5390014537, + 7.29527991151 + ], + "libelle_d_acheminement": "URMATT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29527991151, + 48.5390014537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39bdcae60dc46099a3f468c3a94b2ff5563ddd93", + "fields": { + "code_commune_insee": "67503", + "nom_de_la_commune": "UTTWILLER", + "code_postal": "67330", + "coordonnees_gps": [ + 48.8464668751, + 7.49650290601 + ], + "libelle_d_acheminement": "UTTWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49650290601, + 48.8464668751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53a28f846892763967aab3468a5d77131eeb6485", + "fields": { + "code_commune_insee": "67516", + "nom_de_la_commune": "WALTENHEIM SUR ZORN", + "code_postal": "67670", + "coordonnees_gps": [ + 48.7430310189, + 7.62201950135 + ], + "libelle_d_acheminement": "WALTENHEIM SUR ZORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62201950135, + 48.7430310189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b6612be12cf2e8a03717d83e85f995afb96d803", + "fields": { + "code_commune_insee": "67524", + "nom_de_la_commune": "WEITERSWILLER", + "code_postal": "67340", + "coordonnees_gps": [ + 48.8549695809, + 7.40901430205 + ], + "libelle_d_acheminement": "WEITERSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40901430205, + 48.8549695809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "140e5f4346dcb34bb3d8eb6d4a4d609e26076c47", + "fields": { + "code_commune_insee": "67525", + "nom_de_la_commune": "WESTHOFFEN", + "code_postal": "67310", + "coordonnees_gps": [ + 48.6050551631, + 7.41483819754 + ], + "libelle_d_acheminement": "WESTHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41483819754, + 48.6050551631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d1d1acc1458f0b129d02a83bd1e63f4c3609f05", + "fields": { + "code_commune_insee": "67527", + "nom_de_la_commune": "WESTHOUSE MARMOUTIER", + "code_postal": "67440", + "coordonnees_gps": [ + 48.6858047247, + 7.45416585837 + ], + "libelle_d_acheminement": "WESTHOUSE MARMOUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45416585837, + 48.6858047247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "002830cc7d07517ed28e88a559857e60211e71d8", + "fields": { + "code_commune_insee": "67538", + "nom_de_la_commune": "WINGEN SUR MODER", + "code_postal": "67290", + "coordonnees_gps": [ + 48.9254902407, + 7.37022391783 + ], + "libelle_d_acheminement": "WINGEN SUR MODER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37022391783, + 48.9254902407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "248bd1d6c46cda118b8d13b7761e9f8007cb1352", + "fields": { + "code_commune_insee": "67552", + "nom_de_la_commune": "WOLFSKIRCHEN", + "code_postal": "67260", + "coordonnees_gps": [ + 48.8758422712, + 7.08071824299 + ], + "libelle_d_acheminement": "WOLFSKIRCHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08071824299, + 48.8758422712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "435a788212b39acc17e43f3441bd0cdb6230d75c", + "fields": { + "code_commune_insee": "67555", + "nom_de_la_commune": "ZEHNACKER", + "code_postal": "67310", + "coordonnees_gps": [ + 48.670402343, + 7.45043435206 + ], + "libelle_d_acheminement": "ZEHNACKER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45043435206, + 48.670402343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea4f8cdc2aaaf8e47d84e97c7b7d1ae18006d599", + "fields": { + "code_commune_insee": "68001", + "nom_de_la_commune": "ALGOLSHEIM", + "code_postal": "68600", + "coordonnees_gps": [ + 48.0034942953, + 7.54980840525 + ], + "libelle_d_acheminement": "ALGOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54980840525, + 48.0034942953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "417473c93042c39a00914333cb5df66e71a1f2c5", + "fields": { + "code_commune_insee": "68004", + "nom_de_la_commune": "ALTKIRCH", + "code_postal": "68130", + "coordonnees_gps": [ + 47.6210336538, + 7.24484329622 + ], + "libelle_d_acheminement": "ALTKIRCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24484329622, + 47.6210336538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94a45c05da2047b9e921efec8e218e4ea8ae71aa", + "fields": { + "code_commune_insee": "68008", + "nom_de_la_commune": "APPENWIHR", + "code_postal": "68280", + "coordonnees_gps": [ + 48.0252709837, + 7.45257417009 + ], + "libelle_d_acheminement": "APPENWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45257417009, + 48.0252709837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50aae5274c2265634c8aa031359df7375647d7bc", + "fields": { + "code_commune_insee": "68011", + "nom_de_la_commune": "ASPACH LE BAS", + "code_postal": "68700", + "coordonnees_gps": [ + 47.7664940616, + 7.15106009452 + ], + "libelle_d_acheminement": "ASPACH LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15106009452, + 47.7664940616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc06d31df071d1d00d43eb89cc323c6f023c008a", + "fields": { + "code_commune_insee": "68014", + "nom_de_la_commune": "AUBURE", + "code_postal": "68150", + "coordonnees_gps": [ + 48.204266087, + 7.21127661313 + ], + "libelle_d_acheminement": "AUBURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21127661313, + 48.204266087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6731024a7c15ee231c643125cd9d197d5ac57041", + "fields": { + "code_commune_insee": "68030", + "nom_de_la_commune": "BERGHOLTZZELL", + "code_postal": "68500", + "coordonnees_gps": [ + 47.9270613981, + 7.22577933017 + ], + "libelle_d_acheminement": "BERGHOLTZZELL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22577933017, + 47.9270613981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94580b3cd7b2602f8315e9633aab4bf09bec0c6d", + "fields": { + "code_commune_insee": "68052", + "nom_de_la_commune": "BRETTEN", + "code_postal": "68780", + "coordonnees_gps": [ + 47.7056292411, + 7.0643418397 + ], + "libelle_d_acheminement": "BRETTEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0643418397, + 47.7056292411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3da5ceaa60be76f32455fab2ef294375b7088707", + "fields": { + "code_commune_insee": "68059", + "nom_de_la_commune": "BURNHAUPT LE BAS", + "code_postal": "68520", + "coordonnees_gps": [ + 47.7164544837, + 7.15440584349 + ], + "libelle_d_acheminement": "BURNHAUPT LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15440584349, + 47.7164544837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18be7b5f915998110fd9dee6ac1c243a108ae17b", + "fields": { + "code_commune_insee": "68062", + "nom_de_la_commune": "CARSPACH", + "code_postal": "68130", + "coordonnees_gps": [ + 47.6224935398, + 7.19502984795 + ], + "libelle_d_acheminement": "CARSPACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19502984795, + 47.6224935398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4b4b624740a2086abe030bb11bf5abc53bb8973", + "fields": { + "code_commune_insee": "68065", + "nom_de_la_commune": "CHAVANNES SUR L ETANG", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6396468352, + 7.03103737458 + ], + "libelle_d_acheminement": "CHAVANNES SUR L ETANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03103737458, + 47.6396468352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed6f5e8c3fa591c5c3ac72a4d6a23cfb9ec9e8fc", + "fields": { + "code_commune_insee": "68067", + "nom_de_la_commune": "COURTAVON", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4694045712, + 7.20007884538 + ], + "libelle_d_acheminement": "COURTAVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20007884538, + 47.4694045712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dc51de54b63b0532c55949eff49e0e320ed1103", + "fields": { + "code_commune_insee": "68078", + "nom_de_la_commune": "EGUISHEIM", + "code_postal": "68420", + "coordonnees_gps": [ + 48.0371183049, + 7.30052876111 + ], + "libelle_d_acheminement": "EGUISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30052876111, + 48.0371183049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8888b586cede76e5f678f44af1836cb9dcb25292", + "fields": { + "code_commune_insee": "68083", + "nom_de_la_commune": "ESCHBACH AU VAL", + "code_postal": "68140", + "coordonnees_gps": [ + 48.0218694285, + 7.1465502338 + ], + "libelle_d_acheminement": "ESCHBACH AU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1465502338, + 48.0218694285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ad9c204a7d92b179a5852cfe56bb1a77766ae70", + "fields": { + "code_commune_insee": "68090", + "nom_de_la_commune": "FERRETTE", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4935597154, + 7.3158338091 + ], + "libelle_d_acheminement": "FERRETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3158338091, + 47.4935597154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e78f3e17366969ece0d2b0e114ba664ab31f92dd", + "fields": { + "code_commune_insee": "68092", + "nom_de_la_commune": "FISLIS", + "code_postal": "68480", + "coordonnees_gps": [ + 47.5137490196, + 7.38210815031 + ], + "libelle_d_acheminement": "FISLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38210815031, + 47.5137490196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2ba0bc15d3baf05da13606eb39c7facd878a5c2", + "fields": { + "code_commune_insee": "68103", + "nom_de_la_commune": "GEISPITZEN", + "code_postal": "68510", + "coordonnees_gps": [ + 47.6738405843, + 7.43812251633 + ], + "libelle_d_acheminement": "GEISPITZEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43812251633, + 47.6738405843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c05d8e8a4c996b066841befa62533b79b03946b9", + "fields": { + "code_commune_insee": "68105", + "nom_de_la_commune": "GILDWILLER", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6967983198, + 7.14022952947 + ], + "libelle_d_acheminement": "GILDWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14022952947, + 47.6967983198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c14a392b16d76b6b7db2381b68e59d6f3a2e539", + "fields": { + "code_commune_insee": "68110", + "nom_de_la_commune": "GRUSSENHEIM", + "code_postal": "68320", + "coordonnees_gps": [ + 48.1464465778, + 7.49149736481 + ], + "libelle_d_acheminement": "GRUSSENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49149736481, + 48.1464465778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64b9c2db2932cd185e750f09bcb03591d9a7d1df", + "fields": { + "code_commune_insee": "68112", + "nom_de_la_commune": "GUEBWILLER", + "code_postal": "68500", + "coordonnees_gps": [ + 47.9096692207, + 7.21013500007 + ], + "libelle_d_acheminement": "GUEBWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21013500007, + 47.9096692207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a02956f7d3ad64452b63ea43b5325d5c1b475a9", + "fields": { + "code_commune_insee": "68128", + "nom_de_la_commune": "HEIMERSDORF", + "code_postal": "68560", + "coordonnees_gps": [ + 47.563206505, + 7.23667862006 + ], + "libelle_d_acheminement": "HEIMERSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23667862006, + 47.563206505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78038ff3746345ffb673d5fd840d65d69a413822", + "fields": { + "code_commune_insee": "68149", + "nom_de_la_commune": "HUNINGUE", + "code_postal": "68330", + "coordonnees_gps": [ + 47.5888753858, + 7.58124251727 + ], + "libelle_d_acheminement": "HUNINGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58124251727, + 47.5888753858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77003000e25c24bbb6cce5d8aec9c05ece1ece3d", + "fields": { + "code_commune_insee": "68159", + "nom_de_la_commune": "JUNGHOLTZ", + "code_postal": "68500", + "coordonnees_gps": [ + 47.8885904335, + 7.18875486257 + ], + "libelle_d_acheminement": "JUNGHOLTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18875486257, + 47.8885904335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b03a9a062c6272514e5a35d4621c6deca437f429", + "fields": { + "code_commune_insee": "68169", + "nom_de_la_commune": "KOESTLACH", + "code_postal": "68480", + "coordonnees_gps": [ + 47.5117644426, + 7.2711596241 + ], + "libelle_d_acheminement": "KOESTLACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2711596241, + 47.5117644426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fc1495c902680fa94b10db4cabebbc4ca7fd2d5", + "fields": { + "code_commune_insee": "68193", + "nom_de_la_commune": "LUTTENBACH PRES MUNSTER", + "code_postal": "68140", + "coordonnees_gps": [ + 48.0152724586, + 7.12389564467 + ], + "libelle_d_acheminement": "LUTTENBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12389564467, + 48.0152724586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88ba97051c8004fb00c557877d7cccdb89ae1f0a", + "fields": { + "code_commune_insee": "68197", + "nom_de_la_commune": "MAGSTATT LE BAS", + "code_postal": "68510", + "coordonnees_gps": [ + 47.6388902604, + 7.41296468612 + ], + "libelle_d_acheminement": "MAGSTATT LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41296468612, + 47.6388902604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4d40f12ac0ef3d457ea4daa1a4112d665efd811", + "fields": { + "code_commune_insee": "68205", + "nom_de_la_commune": "MEYENHEIM", + "code_postal": "68890", + "coordonnees_gps": [ + 47.915595397, + 7.37703268493 + ], + "libelle_d_acheminement": "MEYENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37703268493, + 47.915595397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f72cdc7b51c6dc3da7f57c9adc7d19e159aa2cb", + "fields": { + "code_commune_insee": "68212", + "nom_de_la_commune": "MOERNACH", + "code_postal": "68480", + "coordonnees_gps": [ + 47.5098929884, + 7.24557465368 + ], + "libelle_d_acheminement": "MOERNACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24557465368, + 47.5098929884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87b8120b6857f6ac583ead90fd66c6109135507f", + "fields": { + "code_commune_insee": "68213", + "nom_de_la_commune": "MOLLAU", + "code_postal": "68470", + "coordonnees_gps": [ + 47.8586174298, + 6.96580213544 + ], + "libelle_d_acheminement": "MOLLAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96580213544, + 47.8586174298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2b8d6c53cecc19ab534e50818f5bc5ab473d7d7", + "fields": { + "code_commune_insee": "68215", + "nom_de_la_commune": "MONTREUX VIEUX", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6201798388, + 7.02170889357 + ], + "libelle_d_acheminement": "MONTREUX VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02170889357, + 47.6201798388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cde2f269e44f3e6a5fcc0ab35e3f1326ba49d129", + "fields": { + "ligne_5": "SOPPE LE HAUT", + "code_commune_insee": "68219", + "libelle_d_acheminement": "LE HAUT SOULTZBACH", + "code_postal": "68780", + "nom_de_la_commune": "LE HAUT SOULTZBACH", + "coordonnees_gps": [ + 47.7386585258, + 7.03380849733 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03380849733, + 47.7386585258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4085f16a296bf3a7168f0326b857d8efe764278", + "fields": { + "code_commune_insee": "68224", + "nom_de_la_commune": "MULHOUSE", + "code_postal": "68100", + "coordonnees_gps": [ + 47.749163303, + 7.32570047509 + ], + "libelle_d_acheminement": "MULHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32570047509, + 47.749163303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06764f9fbaca3835e85c292ba2d1cb5440244d26", + "fields": { + "code_commune_insee": "68230", + "nom_de_la_commune": "NAMBSHEIM", + "code_postal": "68740", + "coordonnees_gps": [ + 47.9414821541, + 7.5652223292 + ], + "libelle_d_acheminement": "NAMBSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5652223292, + 47.9414821541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9123d8e9df540f9f00576f31afa8ce00783a484", + "fields": { + "code_commune_insee": "68237", + "nom_de_la_commune": "NIEDERMORSCHWIHR", + "code_postal": "68230", + "coordonnees_gps": [ + 48.1007803247, + 7.25909420396 + ], + "libelle_d_acheminement": "NIEDERMORSCHWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25909420396, + 48.1007803247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe9daa7a828491a75407a202b67b2597c16a1ffb", + "fields": { + "code_commune_insee": "68238", + "nom_de_la_commune": "NIFFER", + "code_postal": "68680", + "coordonnees_gps": [ + 47.7142446878, + 7.49844781169 + ], + "libelle_d_acheminement": "NIFFER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49844781169, + 47.7142446878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d0bd6f0afe32b7648170fa33f52c1c9693862c9", + "fields": { + "code_commune_insee": "68270", + "nom_de_la_commune": "RICHWILLER", + "code_postal": "68120", + "coordonnees_gps": [ + 47.7845885966, + 7.28219452046 + ], + "libelle_d_acheminement": "RICHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28219452046, + 47.7845885966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d88d1a9d0b63ab8242a383d08205ae6beb5279b8", + "fields": { + "code_commune_insee": "68292", + "nom_de_la_commune": "ST AMARIN", + "code_postal": "68550", + "coordonnees_gps": [ + 47.887678929, + 7.04124424443 + ], + "libelle_d_acheminement": "ST AMARIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04124424443, + 47.887678929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d48b03bf5be2a2f26bd4ac0cbd3219a459c37268", + "fields": { + "code_commune_insee": "68315", + "nom_de_la_commune": "SOULTZ HAUT RHIN", + "code_postal": "68360", + "coordonnees_gps": [ + 47.8827772059, + 7.17897878271 + ], + "libelle_d_acheminement": "SOULTZ HAUT RHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17897878271, + 47.8827772059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcbded084144ae937214a6e1ec3ada891f615a07", + "fields": { + "code_commune_insee": "68322", + "nom_de_la_commune": "STEINBACH", + "code_postal": "68700", + "coordonnees_gps": [ + 47.8218078225, + 7.13920916637 + ], + "libelle_d_acheminement": "STEINBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13920916637, + 47.8218078225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea7bdeb93ff03afec7b79f6423eaece472007804", + "fields": { + "code_commune_insee": "68326", + "nom_de_la_commune": "STERNENBERG", + "code_postal": "68780", + "coordonnees_gps": [ + 47.6949071937, + 7.09088157788 + ], + "libelle_d_acheminement": "STERNENBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09088157788, + 47.6949071937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55cb1c8f3e85e128041f97177397dff76c3a18e4", + "fields": { + "code_commune_insee": "68333", + "nom_de_la_commune": "TAGSDORF", + "code_postal": "68130", + "coordonnees_gps": [ + 47.6202385096, + 7.30048484717 + ], + "libelle_d_acheminement": "TAGSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30048484717, + 47.6202385096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c535b8fd874a8801f1f1441e49020b1bb19c3ab", + "fields": { + "code_commune_insee": "01004", + "nom_de_la_commune": "AMBERIEU EN BUGEY", + "code_postal": "01500", + "coordonnees_gps": [ + 45.9608475114, + 5.3729257777 + ], + "libelle_d_acheminement": "AMBERIEU EN BUGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3729257777, + 45.9608475114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60ec8e153fd1dae8db09308c95dcef7e7a29836e", + "fields": { + "code_commune_insee": "01008", + "nom_de_la_commune": "AMBUTRIX", + "code_postal": "01500", + "coordonnees_gps": [ + 45.9367134524, + 5.3328092349 + ], + "libelle_d_acheminement": "AMBUTRIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3328092349, + 45.9367134524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a499405b7273bf33265de31f3e8c8f770857b737", + "fields": { + "ligne_5": "ST BOIS", + "code_commune_insee": "01015", + "libelle_d_acheminement": "ARBOYS EN BUGEY", + "code_postal": "01300", + "nom_de_la_commune": "ARBOYS EN BUGEY", + "coordonnees_gps": [ + 45.7237621545, + 5.65263086429 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65263086429, + 45.7237621545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7af047b53af8f8e8c8a8518bb14a88aa7882b5b", + "fields": { + "code_commune_insee": "01017", + "nom_de_la_commune": "ARGIS", + "code_postal": "01230", + "coordonnees_gps": [ + 45.9337182132, + 5.48251100314 + ], + "libelle_d_acheminement": "ARGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48251100314, + 45.9337182132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75b4293f4938479498a2bc8ffbd1a84668481d67", + "fields": { + "code_commune_insee": "01019", + "nom_de_la_commune": "ARMIX", + "code_postal": "01510", + "coordonnees_gps": [ + 45.8541838459, + 5.58357838695 + ], + "libelle_d_acheminement": "ARMIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58357838695, + 45.8541838459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54fbf39715c0a3bedfe45f3f7319e280de4a6561", + "fields": { + "code_commune_insee": "01022", + "nom_de_la_commune": "ARTEMARE", + "code_postal": "01510", + "coordonnees_gps": [ + 45.8695891748, + 5.69065283943 + ], + "libelle_d_acheminement": "ARTEMARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69065283943, + 45.8695891748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01ac0ea237d0227dabb6f6b59f4a96e7f7f90c42", + "fields": { + "ligne_5": "CHATILLON EN MICHAILLE", + "code_commune_insee": "01033", + "libelle_d_acheminement": "VALSERHONE", + "code_postal": "01200", + "nom_de_la_commune": "VALSERHONE", + "coordonnees_gps": [ + 46.1067901755, + 5.83202736464 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83202736464, + 46.1067901755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc81125eb093b99da4f7f0b86694a181963b4dc2", + "fields": { + "ligne_5": "VIEU", + "code_commune_insee": "01036", + "libelle_d_acheminement": "VALROMEY SUR SERAN", + "code_postal": "01260", + "nom_de_la_commune": "VALROMEY SUR SERAN", + "coordonnees_gps": [ + 45.8847475883, + 5.65115788055 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65115788055, + 45.8847475883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4ec9678f3faf0b892852ead43f77263add44312", + "fields": { + "code_commune_insee": "01044", + "nom_de_la_commune": "BILLIAT", + "code_postal": "01200", + "coordonnees_gps": [ + 46.0791346715, + 5.76591818163 + ], + "libelle_d_acheminement": "BILLIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76591818163, + 46.0791346715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17c8b8eb075742ae878ae7f09b4c589e6c774ab5", + "fields": { + "code_commune_insee": "01047", + "nom_de_la_commune": "BLYES", + "code_postal": "01150", + "coordonnees_gps": [ + 45.8469686113, + 5.25166055884 + ], + "libelle_d_acheminement": "BLYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25166055884, + 45.8469686113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b27204de7eb6c049103c22ca7d7e25c5b843d6d", + "fields": { + "code_commune_insee": "01051", + "nom_de_la_commune": "BOLOZON", + "code_postal": "01450", + "coordonnees_gps": [ + 46.1960338503, + 5.47095075411 + ], + "libelle_d_acheminement": "BOLOZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47095075411, + 46.1960338503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79bbd0ed56623b1b9871b4ea6c2abbc9ac1063d9", + "fields": { + "code_commune_insee": "01053", + "nom_de_la_commune": "BOURG EN BRESSE", + "code_postal": "01000", + "coordonnees_gps": [ + 46.2051520382, + 5.24602125501 + ], + "libelle_d_acheminement": "BOURG EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24602125501, + 46.2051520382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b18c3b050060b2f3d2ca8e607c0e1557e1bb1868", + "fields": { + "ligne_5": "MARFOZ", + "code_commune_insee": "01054", + "libelle_d_acheminement": "BOURG ST CHRISTOPHE", + "code_postal": "01800", + "nom_de_la_commune": "BOURG ST CHRISTOPHE", + "coordonnees_gps": [ + 45.8861934456, + 5.14349196896 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14349196896, + 45.8861934456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "786161bd417a01bacb9ab90369ac0766a53c513f", + "fields": { + "code_commune_insee": "01064", + "nom_de_la_commune": "BRIORD", + "code_postal": "01470", + "coordonnees_gps": [ + 45.7708330939, + 5.48537461884 + ], + "libelle_d_acheminement": "BRIORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48537461884, + 45.7708330939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e1708aa828ea0e112e9ac3736dd0d18db7d0bee", + "fields": { + "ligne_5": "CHAMPDOR", + "code_commune_insee": "01080", + "libelle_d_acheminement": "CHAMPDOR CORCELLES", + "code_postal": "01110", + "nom_de_la_commune": "CHAMPDOR CORCELLES", + "coordonnees_gps": [ + 46.0198844188, + 5.60008759722 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60008759722, + 46.0198844188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c3582d2b47a19877d1f92367513ecfaaf6006b8", + "fields": { + "code_commune_insee": "01084", + "nom_de_la_commune": "CHANOZ CHATENAY", + "code_postal": "01400", + "coordonnees_gps": [ + 46.1861812234, + 5.02807719246 + ], + "libelle_d_acheminement": "CHANOZ CHATENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02807719246, + 46.1861812234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "536356e4ee364cdbc9b4c2808edaa4abf089e4d1", + "fields": { + "code_commune_insee": "01090", + "nom_de_la_commune": "CHATENAY", + "code_postal": "01320", + "coordonnees_gps": [ + 46.0259402155, + 5.2048590395 + ], + "libelle_d_acheminement": "CHATENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2048590395, + 46.0259402155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dd7bed1fdf9162cd219b4ef559dd4876cdf8d50", + "fields": { + "code_commune_insee": "01093", + "nom_de_la_commune": "CHATILLON SUR CHALARONNE", + "code_postal": "01400", + "coordonnees_gps": [ + 46.1232390685, + 4.95810003714 + ], + "libelle_d_acheminement": "CHATILLON SUR CHALARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95810003714, + 46.1232390685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebce79bf87357340863bbdc75d5f057066f18964", + "fields": { + "code_commune_insee": "01100", + "nom_de_la_commune": "CHEIGNIEU LA BALME", + "code_postal": "01510", + "coordonnees_gps": [ + 45.8227204334, + 5.6050023969 + ], + "libelle_d_acheminement": "CHEIGNIEU LA BALME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6050023969, + 45.8227204334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b99818af93b1b06d830e4ac5c0e96f758ee75b15", + "fields": { + "code_commune_insee": "01104", + "nom_de_la_commune": "CHEZERY FORENS", + "code_postal": "01200", + "coordonnees_gps": [ + 46.222573373, + 5.87248105275 + ], + "libelle_d_acheminement": "CHEZERY FORENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87248105275, + 46.222573373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e664471a0bf9017d656f8d652602fd194385d3e7", + "fields": { + "code_commune_insee": "01107", + "nom_de_la_commune": "CLEYZIEU", + "code_postal": "01230", + "coordonnees_gps": [ + 45.902146623, + 5.43272695486 + ], + "libelle_d_acheminement": "CLEYZIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43272695486, + 45.902146623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95f5e1977bda5c3003c44ce3c31d11d2354d4c56", + "fields": { + "code_commune_insee": "01108", + "nom_de_la_commune": "COLIGNY", + "code_postal": "01270", + "coordonnees_gps": [ + 46.3866637865, + 5.3308227014 + ], + "libelle_d_acheminement": "COLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3308227014, + 46.3866637865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a8cdace5511ef1d3ee1f4fd7192bc655ac3e9ae", + "fields": { + "code_commune_insee": "01109", + "nom_de_la_commune": "COLLONGES", + "code_postal": "01550", + "coordonnees_gps": [ + 46.1419227898, + 5.90040256654 + ], + "libelle_d_acheminement": "COLLONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90040256654, + 46.1419227898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c3653662a03a0923083596e890e7f4d0a3de966", + "fields": { + "code_commune_insee": "01114", + "nom_de_la_commune": "CONFORT", + "code_postal": "01200", + "coordonnees_gps": [ + 46.1543700156, + 5.83319395258 + ], + "libelle_d_acheminement": "CONFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83319395258, + 46.1543700156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f79c13589930840747c01b223e40b88d77d4259", + "fields": { + "code_commune_insee": "01138", + "nom_de_la_commune": "CULOZ", + "code_postal": "01350", + "coordonnees_gps": [ + 45.8559966843, + 5.78398308932 + ], + "libelle_d_acheminement": "CULOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78398308932, + 45.8559966843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08282080497640cfd74e6b4c4c6537a6cb872965", + "fields": { + "code_commune_insee": "01143", + "nom_de_la_commune": "DIVONNE LES BAINS", + "code_postal": "01220", + "coordonnees_gps": [ + 46.3756333495, + 6.1158647611 + ], + "libelle_d_acheminement": "DIVONNE LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1158647611, + 46.3756333495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0007fb05d8d75ae514743e2dc0ece164795eebc1", + "fields": { + "code_commune_insee": "01146", + "nom_de_la_commune": "DOMPIERRE SUR CHALARONNE", + "code_postal": "01400", + "coordonnees_gps": [ + 46.1415406621, + 4.90141714714 + ], + "libelle_d_acheminement": "DOMPIERRE SUR CHALARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90141714714, + 46.1415406621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a058871350f5a8e1c4c851c42f3ad58f2a158e7", + "fields": { + "code_commune_insee": "01147", + "nom_de_la_commune": "DOMSURE", + "code_postal": "01270", + "coordonnees_gps": [ + 46.4244066427, + 5.29313479651 + ], + "libelle_d_acheminement": "DOMSURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29313479651, + 46.4244066427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9332670327b1d9534d06be72248c9b8cb494fba", + "fields": { + "code_commune_insee": "01156", + "nom_de_la_commune": "FARAMANS", + "code_postal": "01800", + "coordonnees_gps": [ + 45.9104942091, + 5.1249258559 + ], + "libelle_d_acheminement": "FARAMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1249258559, + 45.9104942091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6d07197ff979dd9c8bca29fb973587a03d74404", + "fields": { + "code_commune_insee": "01157", + "nom_de_la_commune": "FAREINS", + "code_postal": "01480", + "coordonnees_gps": [ + 46.020997974, + 4.7620080898 + ], + "libelle_d_acheminement": "FAREINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7620080898, + 46.020997974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ebc608423d52d38374918c83a61ef5a291549c2", + "fields": { + "code_commune_insee": "01166", + "nom_de_la_commune": "FRANS", + "code_postal": "01480", + "coordonnees_gps": [ + 45.9939065077, + 4.78033196905 + ], + "libelle_d_acheminement": "FRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78033196905, + 45.9939065077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8831bb197222c68261c592de17b2b26854624570", + "fields": { + "code_commune_insee": "01173", + "nom_de_la_commune": "GEX", + "code_postal": "01170", + "coordonnees_gps": [ + 46.3471891747, + 6.04650555568 + ], + "libelle_d_acheminement": "GEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04650555568, + 46.3471891747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eccb5fbdca51cf8a0e2fe0b61cdb6543bd0a1aeb", + "fields": { + "ligne_5": "CORMARANCHE EN BUGEY", + "code_commune_insee": "01185", + "libelle_d_acheminement": "PLATEAU D HAUTEVILLE", + "code_postal": "01110", + "nom_de_la_commune": "PLATEAU D HAUTEVILLE", + "coordonnees_gps": [ + 45.9696520061, + 5.57627261783 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57627261783, + 45.9696520061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "549e94f79308741fb5fc52ffec9c8dfd4f093c5b", + "fields": { + "ligne_5": "LE PETIT ABERGEMENT", + "code_commune_insee": "01187", + "libelle_d_acheminement": "HAUT VALROMEY", + "code_postal": "01260", + "nom_de_la_commune": "HAUT VALROMEY", + "coordonnees_gps": [ + 46.0317412192, + 5.70267027388 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70267027388, + 46.0317412192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3f6a96e1605d1321fcedb086fb4cf5466344996", + "fields": { + "code_commune_insee": "01197", + "nom_de_la_commune": "JOURNANS", + "code_postal": "01250", + "coordonnees_gps": [ + 46.1464982407, + 5.33452833151 + ], + "libelle_d_acheminement": "JOURNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33452833151, + 46.1464982407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "909f193d96b8a13853247253d390270941c50dba", + "fields": { + "code_commune_insee": "01211", + "nom_de_la_commune": "LENT", + "code_postal": "01240", + "coordonnees_gps": [ + 46.1160216305, + 5.20200684747 + ], + "libelle_d_acheminement": "LENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20200684747, + 46.1160216305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98a43e189c1b73af4ea6486fe016e885f89e61ab", + "fields": { + "code_commune_insee": "01212", + "nom_de_la_commune": "LESCHEROUX", + "code_postal": "01560", + "coordonnees_gps": [ + 46.4114892731, + 5.15107164478 + ], + "libelle_d_acheminement": "LESCHEROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15107164478, + 46.4114892731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abca84fdb16cd3e69d5eaf8e8c2ff8afccb5af2c", + "fields": { + "code_commune_insee": "01216", + "nom_de_la_commune": "LHUIS", + "code_postal": "01680", + "coordonnees_gps": [ + 45.7444141403, + 5.53602066955 + ], + "libelle_d_acheminement": "LHUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53602066955, + 45.7444141403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6292c16bd8dd9525d94b4c59bf13d8c51454b899", + "fields": { + "code_commune_insee": "01219", + "nom_de_la_commune": "LOMPNAS", + "code_postal": "01680", + "coordonnees_gps": [ + 45.8105943351, + 5.52320457866 + ], + "libelle_d_acheminement": "LOMPNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52320457866, + 45.8105943351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffa831fbee62145faf40ab5dfffe3438a4ef4a36", + "fields": { + "code_commune_insee": "01224", + "nom_de_la_commune": "LOYETTES", + "code_postal": "01360", + "coordonnees_gps": [ + 45.7921564114, + 5.21770971647 + ], + "libelle_d_acheminement": "LOYETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21770971647, + 45.7921564114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3868acc4915e039a7098a696a0ad8149c7f7a388", + "fields": { + "code_commune_insee": "01231", + "nom_de_la_commune": "MANZIAT", + "code_postal": "01570", + "coordonnees_gps": [ + 46.3643830585, + 4.90242777155 + ], + "libelle_d_acheminement": "MANZIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90242777155, + 46.3643830585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "056d0d770a522fd1d9c2fc1ffb05953012949cff", + "fields": { + "code_commune_insee": "01240", + "nom_de_la_commune": "MATAFELON GRANGES", + "code_postal": "01580", + "coordonnees_gps": [ + 46.2565319445, + 5.53958933702 + ], + "libelle_d_acheminement": "MATAFELON GRANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53958933702, + 46.2565319445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b137acd3c169e5c2d56900df7fc2277c146dcb72", + "fields": { + "ligne_5": "BOHAS", + "code_commune_insee": "01245", + "libelle_d_acheminement": "BOHAS MEYRIAT RIGNAT", + "code_postal": "01250", + "nom_de_la_commune": "BOHAS MEYRIAT RIGNAT", + "coordonnees_gps": [ + 46.1427060662, + 5.3780109646 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3780109646, + 46.1427060662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd553d34d6b354d35fb0241e26425c999b260a23", + "fields": { + "code_commune_insee": "01250", + "nom_de_la_commune": "MISERIEUX", + "code_postal": "01600", + "coordonnees_gps": [ + 45.9762325343, + 4.81028471711 + ], + "libelle_d_acheminement": "MISERIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81028471711, + 45.9762325343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e86c1893a96e6411052ec9f4a5c91ec958b6c80", + "fields": { + "code_commune_insee": "01257", + "nom_de_la_commune": "MONTANGES", + "code_postal": "01200", + "coordonnees_gps": [ + 46.17325293, + 5.79006091307 + ], + "libelle_d_acheminement": "MONTANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79006091307, + 46.17325293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec24e975098bb0fd5e529273ceb7a45736e44c8c", + "fields": { + "code_commune_insee": "01260", + "nom_de_la_commune": "LE MONTELLIER", + "code_postal": "01800", + "coordonnees_gps": [ + 45.9287482486, + 5.07092815964 + ], + "libelle_d_acheminement": "LE MONTELLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07092815964, + 45.9287482486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "732b812ff0239bfdf874fced83764047ce7ce208", + "fields": { + "code_commune_insee": "01266", + "nom_de_la_commune": "MONTREVEL EN BRESSE", + "code_postal": "01340", + "coordonnees_gps": [ + 46.3252811442, + 5.11295966315 + ], + "libelle_d_acheminement": "MONTREVEL EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11295966315, + 46.3252811442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bb26a1c73b636106f083b01ff8b6d244f17dae6", + "fields": { + "code_commune_insee": "01267", + "nom_de_la_commune": "NURIEUX VOLOGNAT", + "code_postal": "01460", + "coordonnees_gps": [ + 46.1830720992, + 5.51435812316 + ], + "libelle_d_acheminement": "NURIEUX VOLOGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51435812316, + 46.1830720992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11c9cf7a217cf22972cd630da22631dcbed996e7", + "fields": { + "code_commune_insee": "01269", + "nom_de_la_commune": "NANTUA", + "code_postal": "01460", + "coordonnees_gps": [ + 46.1537845403, + 5.61352793799 + ], + "libelle_d_acheminement": "NANTUA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61352793799, + 46.1537845403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfdb33907dbfdbebee1686e15fee7c9b4149792e", + "fields": { + "code_commune_insee": "01275", + "nom_de_la_commune": "NEYRON", + "code_postal": "01700", + "coordonnees_gps": [ + 45.8184192468, + 4.9309045685 + ], + "libelle_d_acheminement": "NEYRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9309045685, + 45.8184192468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9988ed92ce8e0a7caaf9593dbf15a45087ae0fb0", + "fields": { + "code_commune_insee": "01298", + "nom_de_la_commune": "PLAGNE", + "code_postal": "01130", + "coordonnees_gps": [ + 46.1883038423, + 5.71763811249 + ], + "libelle_d_acheminement": "PLAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71763811249, + 46.1883038423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "525757338b109b0d672bfea465a7504714cbee3c", + "fields": { + "code_commune_insee": "01318", + "nom_de_la_commune": "RANCE", + "code_postal": "01390", + "coordonnees_gps": [ + 45.9673905154, + 4.86343025951 + ], + "libelle_d_acheminement": "RANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86343025951, + 45.9673905154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "648a5f2ea370fc27e2e404867426b572c2befc05", + "fields": { + "code_commune_insee": "01325", + "nom_de_la_commune": "RIGNIEUX LE FRANC", + "code_postal": "01800", + "coordonnees_gps": [ + 45.9518762734, + 5.16936671105 + ], + "libelle_d_acheminement": "RIGNIEUX LE FRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16936671105, + 45.9518762734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de07970b964757866b3ee8616f355ccef82f8535", + "fields": { + "code_commune_insee": "01331", + "nom_de_la_commune": "ST ALBAN", + "code_postal": "01450", + "coordonnees_gps": [ + 46.0983335519, + 5.45573839846 + ], + "libelle_d_acheminement": "ST ALBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45573839846, + 46.0983335519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8263743801a2fba21143295eb1005ebe7d071ca", + "fields": { + "code_commune_insee": "01339", + "nom_de_la_commune": "ST BERNARD", + "code_postal": "01600", + "coordonnees_gps": [ + 45.9493830581, + 4.74276628471 + ], + "libelle_d_acheminement": "ST BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74276628471, + 45.9493830581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c4d13b12f5cff4fafab7ec481cdb4fefea5a6e2", + "fields": { + "code_commune_insee": "01348", + "nom_de_la_commune": "ST DIDIER SUR CHALARONNE", + "code_postal": "01140", + "coordonnees_gps": [ + 46.1840408682, + 4.81645666173 + ], + "libelle_d_acheminement": "ST DIDIER SUR CHALARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81645666173, + 46.1840408682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2be6802767f8128fc894462592208d9f068374a1", + "fields": { + "code_commune_insee": "01350", + "nom_de_la_commune": "ST ETIENNE DU BOIS", + "code_postal": "01370", + "coordonnees_gps": [ + 46.2749447261, + 5.28428557632 + ], + "libelle_d_acheminement": "ST ETIENNE DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28428557632, + 46.2749447261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11b52121675097d3c789c5e86d664ebd7207fdff", + "fields": { + "code_commune_insee": "01357", + "nom_de_la_commune": "ST GERMAIN DE JOUX", + "code_postal": "01130", + "coordonnees_gps": [ + 46.1821955394, + 5.74672259773 + ], + "libelle_d_acheminement": "ST GERMAIN DE JOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74672259773, + 46.1821955394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d31e9b76f1bceaea80c8ecd0ab2f57e28fd76703", + "fields": { + "code_commune_insee": "01359", + "nom_de_la_commune": "ST GERMAIN SUR RENON", + "code_postal": "01240", + "coordonnees_gps": [ + 46.0797285417, + 5.06090903982 + ], + "libelle_d_acheminement": "ST GERMAIN SUR RENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06090903982, + 46.0797285417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8dced7da709ab0d208e3a2e2becc273bef755b0", + "fields": { + "code_commune_insee": "01362", + "nom_de_la_commune": "ST JEAN DE THURIGNEUX", + "code_postal": "01390", + "coordonnees_gps": [ + 45.9598424323, + 4.89936410681 + ], + "libelle_d_acheminement": "ST JEAN DE THURIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89936410681, + 45.9598424323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eae9ff62b5c2ba7037fbd874bcde11fe7a8745c", + "fields": { + "code_commune_insee": "01367", + "nom_de_la_commune": "ST JULIEN SUR REYSSOUZE", + "code_postal": "01560", + "coordonnees_gps": [ + 46.3997655501, + 5.10354296019 + ], + "libelle_d_acheminement": "ST JULIEN SUR REYSSOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10354296019, + 46.3997655501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fea80470bb34639b5fa40c5ed05b5618cf5d3920", + "fields": { + "code_commune_insee": "01380", + "nom_de_la_commune": "ST NIZIER LE BOUCHOUX", + "code_postal": "01560", + "coordonnees_gps": [ + 46.4528537121, + 5.1759906585 + ], + "libelle_d_acheminement": "ST NIZIER LE BOUCHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1759906585, + 46.4528537121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04eea6cf9087116aae8ffd53584acc8f24ca908b", + "fields": { + "code_commune_insee": "01384", + "nom_de_la_commune": "ST RAMBERT EN BUGEY", + "code_postal": "01230", + "coordonnees_gps": [ + 45.9504631708, + 5.44017084612 + ], + "libelle_d_acheminement": "ST RAMBERT EN BUGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44017084612, + 45.9504631708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9f008bb4f229d89671e2f99781018a280da46e6", + "fields": { + "code_commune_insee": "01386", + "nom_de_la_commune": "ST SORLIN EN BUGEY", + "code_postal": "01150", + "coordonnees_gps": [ + 45.886308438, + 5.37608915006 + ], + "libelle_d_acheminement": "ST SORLIN EN BUGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37608915006, + 45.886308438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "accadf81b285a11a9bb3743288db622e545c96a9", + "fields": { + "code_commune_insee": "01398", + "nom_de_la_commune": "SAVIGNEUX", + "code_postal": "01480", + "coordonnees_gps": [ + 45.997346828, + 4.8576200906 + ], + "libelle_d_acheminement": "SAVIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8576200906, + 45.997346828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66c3adf1f22e5894c2471d871176987552f33031", + "fields": { + "code_commune_insee": "01399", + "nom_de_la_commune": "SEGNY", + "code_postal": "01170", + "coordonnees_gps": [ + 46.2935928404, + 6.07287743792 + ], + "libelle_d_acheminement": "SEGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07287743792, + 46.2935928404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca7c246582ab96973fc5191021db65b3b1c00f4e", + "fields": { + "code_commune_insee": "01404", + "nom_de_la_commune": "SERRIERES SUR AIN", + "code_postal": "01450", + "coordonnees_gps": [ + 46.1466977757, + 5.45023362942 + ], + "libelle_d_acheminement": "SERRIERES SUR AIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45023362942, + 46.1466977757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "208420f4284bfd5b3732df1014384e34afe09e52", + "fields": { + "code_commune_insee": "01407", + "nom_de_la_commune": "SEYSSEL", + "code_postal": "01420", + "coordonnees_gps": [ + 45.9484118176, + 5.82616979887 + ], + "libelle_d_acheminement": "SEYSSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82616979887, + 45.9484118176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "277de00175d37f63178a51e6437bd802cca328ab", + "fields": { + "code_commune_insee": "01421", + "nom_de_la_commune": "TORCIEU", + "code_postal": "01230", + "coordonnees_gps": [ + 45.92125055, + 5.40400282244 + ], + "libelle_d_acheminement": "TORCIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40400282244, + 45.92125055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a09d4426a6848ce556645782365b02e9cdc6db9", + "fields": { + "ligne_5": "PRESSIAT", + "code_commune_insee": "01426", + "libelle_d_acheminement": "VAL REVERMONT", + "code_postal": "01370", + "nom_de_la_commune": "VAL REVERMONT", + "coordonnees_gps": [ + 46.2803281838, + 5.36083165162 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36083165162, + 46.2803281838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32b3dd654d320142cd1bcd4e28d57d346891fa70", + "fields": { + "code_commune_insee": "01427", + "nom_de_la_commune": "TREVOUX", + "code_postal": "01600", + "coordonnees_gps": [ + 45.940671655, + 4.7714415007 + ], + "libelle_d_acheminement": "TREVOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7714415007, + 45.940671655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cbaeeeb757b09e7f9a6d188728fe4321d8c00b8", + "fields": { + "code_commune_insee": "01431", + "nom_de_la_commune": "VAUX EN BUGEY", + "code_postal": "01150", + "coordonnees_gps": [ + 45.9201205456, + 5.36353184193 + ], + "libelle_d_acheminement": "VAUX EN BUGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36353184193, + 45.9201205456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25b583098e36160bebd6dba3604902e256d2b029", + "fields": { + "ligne_5": "LOYES", + "code_commune_insee": "01450", + "libelle_d_acheminement": "VILLIEU LOYES MOLLON", + "code_postal": "01800", + "nom_de_la_commune": "VILLIEU LOYES MOLLON", + "coordonnees_gps": [ + 45.932014998, + 5.22953071636 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22953071636, + 45.932014998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4031ce12ba30d8caa37f596353daa3e27f82fee", + "fields": { + "code_commune_insee": "01451", + "nom_de_la_commune": "VIRIAT", + "code_postal": "01440", + "coordonnees_gps": [ + 46.2508985632, + 5.22302249216 + ], + "libelle_d_acheminement": "VIRIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22302249216, + 46.2508985632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "effb03140141e3bc6610c5962dd8d1dfd1d889e3", + "fields": { + "ligne_5": "BRENAZ", + "code_commune_insee": "01453", + "libelle_d_acheminement": "ARVIERE EN VALROMEY", + "code_postal": "01260", + "nom_de_la_commune": "ARVIERE EN VALROMEY", + "coordonnees_gps": [ + 45.9063608209, + 5.73707051523 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73707051523, + 45.9063608209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57ada04bf8a811f8fde0297450bc37e63d46fdee", + "fields": { + "ligne_5": "CHAVORNAY", + "code_commune_insee": "01453", + "libelle_d_acheminement": "ARVIERE EN VALROMEY", + "code_postal": "01510", + "nom_de_la_commune": "ARVIERE EN VALROMEY", + "coordonnees_gps": [ + 45.9063608209, + 5.73707051523 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73707051523, + 45.9063608209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b951ad0c5cce4b81fd0b5336eefae132b8d3cd2", + "fields": { + "code_commune_insee": "02001", + "nom_de_la_commune": "ABBECOURT", + "code_postal": "02300", + "coordonnees_gps": [ + 49.5991518653, + 3.17708232927 + ], + "libelle_d_acheminement": "ABBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17708232927, + 49.5991518653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf343bb1cf3e13594b0119fb6fd861c3034fe7e7", + "fields": { + "ligne_5": "JOUY", + "code_commune_insee": "02008", + "libelle_d_acheminement": "AIZY JOUY", + "code_postal": "02370", + "nom_de_la_commune": "AIZY JOUY", + "coordonnees_gps": [ + 49.4384256824, + 3.51149185429 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51149185429, + 49.4384256824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f9cd07ee60460c8aa262811125931d8a882e1bf", + "fields": { + "code_commune_insee": "02009", + "nom_de_la_commune": "ALAINCOURT", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7667120841, + 3.36639043616 + ], + "libelle_d_acheminement": "ALAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36639043616, + 49.7667120841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da6fbbfd2f39b96152b0b1c65227dc4688bcfc44", + "fields": { + "ligne_5": "ANIZY LE CHATEAU", + "code_commune_insee": "02018", + "libelle_d_acheminement": "ANIZY LE GRAND", + "code_postal": "02320", + "nom_de_la_commune": "ANIZY LE GRAND", + "coordonnees_gps": [ + 49.5045058305, + 3.43129584952 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43129584952, + 49.5045058305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42042eab1282a1d94fb82d00c7f57b9857dab996", + "fields": { + "code_commune_insee": "02033", + "nom_de_la_commune": "AUBIGNY EN LAONNOIS", + "code_postal": "02820", + "coordonnees_gps": [ + 49.4968821185, + 3.79282850765 + ], + "libelle_d_acheminement": "AUBIGNY EN LAONNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79282850765, + 49.4968821185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7319459b4f2da0cde6f5130fcf0175702107187b", + "fields": { + "code_commune_insee": "02034", + "nom_de_la_commune": "AUDIGNICOURT", + "code_postal": "02300", + "coordonnees_gps": [ + 49.4777157214, + 3.12718502825 + ], + "libelle_d_acheminement": "AUDIGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12718502825, + 49.4777157214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f094862c77206f33b724561e3e89b38f6500822a", + "fields": { + "code_commune_insee": "02038", + "nom_de_la_commune": "LES AUTELS", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7608855336, + 4.22422505762 + ], + "libelle_d_acheminement": "LES AUTELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22422505762, + 49.7608855336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed45030ee2d090fe20843a17d0c986ef9d7d1a54", + "fields": { + "code_commune_insee": "02043", + "nom_de_la_commune": "BAGNEUX", + "code_postal": "02290", + "coordonnees_gps": [ + 49.4601139731, + 3.27945330014 + ], + "libelle_d_acheminement": "BAGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27945330014, + 49.4601139731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "619ada42780f7c44bdedf1321cf86041958bbc8d", + "fields": { + "code_commune_insee": "02049", + "nom_de_la_commune": "BARISIS AUX BOIS", + "code_postal": "02700", + "coordonnees_gps": [ + 49.577979369, + 3.32804487461 + ], + "libelle_d_acheminement": "BARISIS AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32804487461, + 49.577979369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8965e85ad93b9bad3de976f2ea3596d2f61de71a", + "fields": { + "ligne_5": "LA CHAPELLE MONTHODON", + "code_commune_insee": "02053", + "libelle_d_acheminement": "VALLEES EN CHAMPAGNE", + "code_postal": "02330", + "nom_de_la_commune": "VALLEES EN CHAMPAGNE", + "coordonnees_gps": [ + 48.9896915811, + 3.60486686026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60486686026, + 48.9896915811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "396988c6c650f641ae07c17f593f9a2df05ec4ed", + "fields": { + "code_commune_insee": "02057", + "nom_de_la_commune": "BEAUREVOIR", + "code_postal": "02110", + "coordonnees_gps": [ + 49.9965608612, + 3.32970842537 + ], + "libelle_d_acheminement": "BEAUREVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32970842537, + 49.9965608612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e093b889212e15680725ad5dda626e22fba40227", + "fields": { + "code_commune_insee": "02062", + "nom_de_la_commune": "BELLEAU", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0829128265, + 3.30049173293 + ], + "libelle_d_acheminement": "BELLEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30049173293, + 49.0829128265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd3ae33845d0b5a7687f57d6f0b526a6591890b2", + "fields": { + "code_commune_insee": "02063", + "nom_de_la_commune": "BELLENGLISE", + "code_postal": "02420", + "coordonnees_gps": [ + 49.9261057081, + 3.2441994692 + ], + "libelle_d_acheminement": "BELLENGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2441994692, + 49.9261057081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c90654452486cd76fdfdce8daaf5de52f8e70074", + "fields": { + "code_commune_insee": "02070", + "nom_de_la_commune": "BERNOT", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8793651304, + 3.48665456392 + ], + "libelle_d_acheminement": "BERNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48665456392, + 49.8793651304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ecd04ac922c2d3f50111b60c131e7a20eaeedad", + "fields": { + "code_commune_insee": "02073", + "nom_de_la_commune": "BERRY AU BAC", + "code_postal": "02190", + "coordonnees_gps": [ + 49.4084985083, + 3.8985497785 + ], + "libelle_d_acheminement": "BERRY AU BAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8985497785, + 49.4084985083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b8b2aed8da5bd29b4ec55c93ff0e433c511e33e", + "fields": { + "code_commune_insee": "02078", + "nom_de_la_commune": "BESME", + "code_postal": "02300", + "coordonnees_gps": [ + 49.5341682819, + 3.16474171361 + ], + "libelle_d_acheminement": "BESME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16474171361, + 49.5341682819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ff3b2c721ba03891c9d3a711ba1059d1ad253b4", + "fields": { + "code_commune_insee": "02080", + "nom_de_la_commune": "BESNY ET LOIZY", + "code_postal": "02870", + "coordonnees_gps": [ + 49.5928792816, + 3.57657238799 + ], + "libelle_d_acheminement": "BESNY ET LOIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57657238799, + 49.5928792816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c0f4327be2510fa663c9c80e28bde24fa0f4f15", + "fields": { + "code_commune_insee": "02081", + "nom_de_la_commune": "BETHANCOURT EN VAUX", + "code_postal": "02300", + "coordonnees_gps": [ + 49.6290547772, + 3.14064657935 + ], + "libelle_d_acheminement": "BETHANCOURT EN VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14064657935, + 49.6290547772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0279d0c8b95ed6dcb7b85bb1db64e4555374a0c5", + "fields": { + "code_commune_insee": "02088", + "nom_de_la_commune": "BIEVRES", + "code_postal": "02860", + "coordonnees_gps": [ + 49.4921822965, + 3.7137356904 + ], + "libelle_d_acheminement": "BIEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7137356904, + 49.4921822965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8fbb074650beba6a9c085be7579d2d95461d492", + "fields": { + "code_commune_insee": "02093", + "nom_de_la_commune": "BLERANCOURT", + "code_postal": "02300", + "coordonnees_gps": [ + 49.5076223945, + 3.15179502187 + ], + "libelle_d_acheminement": "BLERANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15179502187, + 49.5076223945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d2eec758477213ebc65914ed7675cbb1bb02c2f", + "fields": { + "code_commune_insee": "02103", + "nom_de_la_commune": "BOUE", + "code_postal": "02450", + "coordonnees_gps": [ + 50.0114554001, + 3.71432024852 + ], + "libelle_d_acheminement": "BOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71432024852, + 50.0114554001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69495deba6c4e60252db4d88a196770ce8dd3648", + "fields": { + "code_commune_insee": "02105", + "nom_de_la_commune": "BOURESCHES", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0671787396, + 3.31728226934 + ], + "libelle_d_acheminement": "BOURESCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31728226934, + 49.0671787396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3725fcfc0cb064b9861723cf88a5284744efb32", + "fields": { + "code_commune_insee": "02116", + "nom_de_la_commune": "BRAYE EN THIERACHE", + "code_postal": "02140", + "coordonnees_gps": [ + 49.7675470994, + 3.96265841899 + ], + "libelle_d_acheminement": "BRAYE EN THIERACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96265841899, + 49.7675470994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69811dd2a98e5178ae47653914c4ecda95db120f", + "fields": { + "code_commune_insee": "02118", + "nom_de_la_commune": "BRAYE", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4221361409, + 3.37829006511 + ], + "libelle_d_acheminement": "BRAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37829006511, + 49.4221361409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0767f9f8684063d76febdbc8ca55d82fb229938", + "fields": { + "code_commune_insee": "02142", + "nom_de_la_commune": "CASTRES", + "code_postal": "02680", + "coordonnees_gps": [ + 49.8013894137, + 3.25325245088 + ], + "libelle_d_acheminement": "CASTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25325245088, + 49.8013894137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db242886881905009b14593ec28a2b0f32d2cb7c", + "fields": { + "code_commune_insee": "02149", + "nom_de_la_commune": "CERIZY", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7670333979, + 3.33255021354 + ], + "libelle_d_acheminement": "CERIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33255021354, + 49.7670333979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "220f45eda13fd80dfaeb4acf93f31e3c4058ada2", + "fields": { + "code_commune_insee": "02152", + "nom_de_la_commune": "CERSEUIL", + "code_postal": "02220", + "coordonnees_gps": [ + 49.324784775, + 3.51746919082 + ], + "libelle_d_acheminement": "CERSEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51746919082, + 49.324784775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3079f6af1da8676e569ad02ae93e3b032838dde", + "fields": { + "code_commune_insee": "02154", + "nom_de_la_commune": "CHACRISE", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3002009035, + 3.39759102537 + ], + "libelle_d_acheminement": "CHACRISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39759102537, + 49.3002009035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9068edac1cd1f4e35619550603679e248638dd7", + "fields": { + "code_commune_insee": "02157", + "nom_de_la_commune": "CHAMBRY", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5986366056, + 3.67200832611 + ], + "libelle_d_acheminement": "CHAMBRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67200832611, + 49.5986366056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a319ca9311e5aa15bb9cda8da8e994f0de1ea3e", + "fields": { + "code_commune_insee": "02158", + "nom_de_la_commune": "CHAMOUILLE", + "code_postal": "02860", + "coordonnees_gps": [ + 49.4720646954, + 3.67062673062 + ], + "libelle_d_acheminement": "CHAMOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67062673062, + 49.4720646954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b65bb5e2242046e9cf236adc766b7e8a4cbbcf64", + "fields": { + "code_commune_insee": "02162", + "nom_de_la_commune": "LA CHAPELLE SUR CHEZY", + "code_postal": "02570", + "coordonnees_gps": [ + 48.9492049177, + 3.37662807022 + ], + "libelle_d_acheminement": "LA CHAPELLE SUR CHEZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37662807022, + 48.9492049177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6179d986efaaa4aa945f10373bbfd85e1b3a818f", + "fields": { + "code_commune_insee": "02168", + "nom_de_la_commune": "CHATEAU THIERRY", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0564070801, + 3.38160004843 + ], + "libelle_d_acheminement": "CHATEAU THIERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38160004843, + 49.0564070801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "056ad0b3c63c1e1cc8ceb0847e72502277626374", + "fields": { + "code_commune_insee": "02175", + "nom_de_la_commune": "CHAVIGNY", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4232730431, + 3.30567490669 + ], + "libelle_d_acheminement": "CHAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30567490669, + 49.4232730431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "043a523b1656ad96bda908bbe7048a2caefdc1ce", + "fields": { + "code_commune_insee": "02181", + "nom_de_la_commune": "CHERY LES ROZOY", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7222192886, + 4.1011989282 + ], + "libelle_d_acheminement": "CHERY LES ROZOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1011989282, + 49.7222192886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1001e0de1ee2a0e385812537c9bd9a21963ee43d", + "fields": { + "code_commune_insee": "02184", + "nom_de_la_commune": "CHEVRESIS MONCEAU", + "code_postal": "02270", + "coordonnees_gps": [ + 49.7616780422, + 3.5837583969 + ], + "libelle_d_acheminement": "CHEVRESIS MONCEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5837583969, + 49.7616780422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd6eedda8d3b54fa2977c67b3617a6084723059e", + "fields": { + "code_commune_insee": "02185", + "nom_de_la_commune": "CHEZY EN ORXOIS", + "code_postal": "02810", + "coordonnees_gps": [ + 49.1268031885, + 3.16759094422 + ], + "libelle_d_acheminement": "CHEZY EN ORXOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16759094422, + 49.1268031885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e2fbcf5fdc189f1929a53c233f5e4368beeaff9", + "fields": { + "code_commune_insee": "02189", + "nom_de_la_commune": "CHIVRES EN LAONNOIS", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6268606782, + 3.85603255601 + ], + "libelle_d_acheminement": "CHIVRES EN LAONNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85603255601, + 49.6268606782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce7471a7791f176d4ec1df209c4cd9af54c29221", + "fields": { + "code_commune_insee": "02195", + "nom_de_la_commune": "CIRY SALSOGNE", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3674868367, + 3.46778299062 + ], + "libelle_d_acheminement": "CIRY SALSOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46778299062, + 49.3674868367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c591900dd2c8e13ebb28859e9965ae2e0591be1", + "fields": { + "code_commune_insee": "02197", + "nom_de_la_commune": "CLAIRFONTAINE", + "code_postal": "02260", + "coordonnees_gps": [ + 49.9739945177, + 3.98660655282 + ], + "libelle_d_acheminement": "CLAIRFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98660655282, + 49.9739945177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0bad0caca53857e80928a9c4099c1fbe8d7bff2", + "fields": { + "code_commune_insee": "02199", + "nom_de_la_commune": "CLASTRES", + "code_postal": "02440", + "coordonnees_gps": [ + 49.7488769741, + 3.2302033407 + ], + "libelle_d_acheminement": "CLASTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2302033407, + 49.7488769741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28f144a68bc7d7a7aeba0784128327c9c2c5bfc1", + "fields": { + "code_commune_insee": "02208", + "nom_de_la_commune": "CONCEVREUX", + "code_postal": "02160", + "coordonnees_gps": [ + 49.3764478648, + 3.78830446161 + ], + "libelle_d_acheminement": "CONCEVREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78830446161, + 49.3764478648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43ecdd7dd3c5d98ecb468022ef8ad958ce83b8ec", + "fields": { + "code_commune_insee": "02211", + "nom_de_la_commune": "CONDE SUR SUIPPE", + "code_postal": "02190", + "coordonnees_gps": [ + 49.4138370327, + 3.94498449027 + ], + "libelle_d_acheminement": "CONDE SUR SUIPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94498449027, + 49.4138370327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d307ffc36e349119039c1e487992991cb1f26758", + "fields": { + "code_commune_insee": "02213", + "nom_de_la_commune": "CONNIGIS", + "code_postal": "02330", + "coordonnees_gps": [ + 49.0359363932, + 3.53287282671 + ], + "libelle_d_acheminement": "CONNIGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53287282671, + 49.0359363932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58234f8b38dffb3ffc7fcd33f2f4d6c6a1b2eab3", + "fields": { + "code_commune_insee": "02216", + "nom_de_la_commune": "CORCY", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2549892095, + 3.19724367023 + ], + "libelle_d_acheminement": "CORCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19724367023, + 49.2549892095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5e3b3cc6243f28e2dd27cf6c38d7ecf0cffb634", + "fields": { + "code_commune_insee": "02218", + "nom_de_la_commune": "COUCY LES EPPES", + "code_postal": "02840", + "coordonnees_gps": [ + 49.5566159059, + 3.77716711865 + ], + "libelle_d_acheminement": "COUCY LES EPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77716711865, + 49.5566159059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e3adf5cf9f5f792068b78f05b5216a5f77fccc4", + "fields": { + "ligne_5": "COHAN", + "code_commune_insee": "02220", + "libelle_d_acheminement": "COULONGES COHAN", + "code_postal": "02130", + "nom_de_la_commune": "COULONGES COHAN", + "coordonnees_gps": [ + 49.1980463524, + 3.62776592985 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62776592985, + 49.1980463524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a8c75d6a96ed819bc053d7a739f412ec7e6b7f5", + "fields": { + "code_commune_insee": "02223", + "nom_de_la_commune": "COURBOIN", + "code_postal": "02330", + "coordonnees_gps": [ + 48.9960917184, + 3.50690687861 + ], + "libelle_d_acheminement": "COURBOIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50690687861, + 48.9960917184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3054d0a2426bb16ab501e0666e699dcc31c79565", + "fields": { + "code_commune_insee": "02224", + "nom_de_la_commune": "COURCELLES SUR VESLE", + "code_postal": "02220", + "coordonnees_gps": [ + 49.348025885, + 3.57684035869 + ], + "libelle_d_acheminement": "COURCELLES SUR VESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57684035869, + 49.348025885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d429239b69d40a5953576739738ba4db873518b9", + "fields": { + "code_commune_insee": "02227", + "nom_de_la_commune": "COURMONT", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1377444173, + 3.57546880498 + ], + "libelle_d_acheminement": "COURMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57546880498, + 49.1377444173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45235da7c66eb553d2f59153230005d0309d5239", + "fields": { + "code_commune_insee": "02230", + "nom_de_la_commune": "COUVRELLES", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3339841009, + 3.48486954064 + ], + "libelle_d_acheminement": "COUVRELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48486954064, + 49.3339841009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f952f3e478a6e145e1dc13189dd5698ed5b81aed", + "fields": { + "code_commune_insee": "02244", + "nom_de_la_commune": "CRUPILLY", + "code_postal": "02120", + "coordonnees_gps": [ + 49.9313828796, + 3.75249198254 + ], + "libelle_d_acheminement": "CRUPILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75249198254, + 49.9313828796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a93e3af82c1a3ec1aa9657bec48438b5c2e9804", + "fields": { + "code_commune_insee": "02254", + "nom_de_la_commune": "CUTRY", + "code_postal": "02600", + "coordonnees_gps": [ + 49.3442753875, + 3.19127169549 + ], + "libelle_d_acheminement": "CUTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19127169549, + 49.3442753875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a47583b5d6d357b57b15e6e436f58f6e93b9e8e6", + "fields": { + "code_commune_insee": "02258", + "nom_de_la_commune": "DAMMARD", + "code_postal": "02470", + "coordonnees_gps": [ + 49.1470522556, + 3.17719709632 + ], + "libelle_d_acheminement": "DAMMARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17719709632, + 49.1470522556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bed34016e2ee2f1c72ce8ce38b88b719e9df9646", + "fields": { + "code_commune_insee": "02263", + "nom_de_la_commune": "DHUIZEL", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3602201297, + 3.61487590771 + ], + "libelle_d_acheminement": "DHUIZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61487590771, + 49.3602201297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be9b144e65f029c1bf9e123f494bf4986a404484", + "fields": { + "code_commune_insee": "02273", + "nom_de_la_commune": "DURY", + "code_postal": "02480", + "coordonnees_gps": [ + 49.751235296, + 3.13377121735 + ], + "libelle_d_acheminement": "DURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13377121735, + 49.751235296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba0b0012cfbdbb1598db8845a34e1d9913c794cc", + "fields": { + "code_commune_insee": "02279", + "nom_de_la_commune": "EPAUX BEZU", + "code_postal": "02400", + "coordonnees_gps": [ + 49.1029988371, + 3.35359350285 + ], + "libelle_d_acheminement": "EPAUX BEZU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35359350285, + 49.1029988371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be4c79bd12d808c7f07e35ef3d6d5a876f38cd27", + "fields": { + "code_commune_insee": "02280", + "nom_de_la_commune": "EPIEDS", + "code_postal": "02400", + "coordonnees_gps": [ + 49.1045180167, + 3.45072347386 + ], + "libelle_d_acheminement": "EPIEDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45072347386, + 49.1045180167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ab9e8fe27ab656bea3cddf6426a8936c43e7a18", + "fields": { + "code_commune_insee": "02282", + "nom_de_la_commune": "EPPES", + "code_postal": "02840", + "coordonnees_gps": [ + 49.5523855068, + 3.73980858367 + ], + "libelle_d_acheminement": "EPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73980858367, + 49.5523855068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e0af8eb17b4f660bc65428b4dc34d719919ba67", + "fields": { + "code_commune_insee": "02284", + "nom_de_la_commune": "ERLOY", + "code_postal": "02260", + "coordonnees_gps": [ + 49.9195909244, + 3.83764920476 + ], + "libelle_d_acheminement": "ERLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83764920476, + 49.9195909244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b5bc43b8c356213f73c1deb31488dbaaf9a5616", + "fields": { + "code_commune_insee": "02288", + "nom_de_la_commune": "ESSIGNY LE PETIT", + "code_postal": "02100", + "coordonnees_gps": [ + 49.8961825414, + 3.36742260207 + ], + "libelle_d_acheminement": "ESSIGNY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36742260207, + 49.8961825414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eabb35a49315eb9b44f33abca8db2deb9f0769cc", + "fields": { + "code_commune_insee": "02291", + "nom_de_la_commune": "ESTREES", + "code_postal": "02420", + "coordonnees_gps": [ + 49.9705842912, + 3.2801536166 + ], + "libelle_d_acheminement": "ESTREES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2801536166, + 49.9705842912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92ef976c360c65626ffc1759fbb81bfa4e8f8cdf", + "fields": { + "code_commune_insee": "02296", + "nom_de_la_commune": "ETREILLERS", + "code_postal": "02590", + "coordonnees_gps": [ + 49.8325776228, + 3.15800068609 + ], + "libelle_d_acheminement": "ETREILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15800068609, + 49.8325776228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3931b7a3ba86c74987818359b8b423598926fa7", + "fields": { + "code_commune_insee": "02303", + "nom_de_la_commune": "FAYET", + "code_postal": "02100", + "coordonnees_gps": [ + 49.8710844824, + 3.25278845948 + ], + "libelle_d_acheminement": "FAYET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25278845948, + 49.8710844824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac50729b21feb006a029ffa6de11bd1212fb523b", + "fields": { + "code_commune_insee": "02308", + "nom_de_la_commune": "FESMY LE SART", + "code_postal": "02450", + "coordonnees_gps": [ + 50.0482154856, + 3.69825469199 + ], + "libelle_d_acheminement": "FESMY LE SART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69825469199, + 50.0482154856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad28baadf2c4fe6e9251cca4a3718e9aee195ce5", + "fields": { + "code_commune_insee": "02311", + "nom_de_la_commune": "FILAIN", + "code_postal": "02000", + "coordonnees_gps": [ + 49.4528807514, + 3.5574063541 + ], + "libelle_d_acheminement": "FILAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5574063541, + 49.4528807514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83339866eff5a2239d4abbf2ce511e20fa83177b", + "fields": { + "code_commune_insee": "02315", + "nom_de_la_commune": "FLAVY LE MARTEL", + "code_postal": "02520", + "coordonnees_gps": [ + 49.7047240534, + 3.19451403575 + ], + "libelle_d_acheminement": "FLAVY LE MARTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19451403575, + 49.7047240534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bb97c9dff6a727dcc07cf6b2e5eb3f0154b595c", + "fields": { + "code_commune_insee": "02317", + "nom_de_la_commune": "FLUQUIERES", + "code_postal": "02590", + "coordonnees_gps": [ + 49.800435087, + 3.15658582012 + ], + "libelle_d_acheminement": "FLUQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15658582012, + 49.800435087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca40d9b65ca1000bb389a724ea4a2ee378595f9", + "fields": { + "code_commune_insee": "02318", + "nom_de_la_commune": "FOLEMBRAY", + "code_postal": "02670", + "coordonnees_gps": [ + 49.5492820594, + 3.29319165625 + ], + "libelle_d_acheminement": "FOLEMBRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29319165625, + 49.5492820594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bed49d9fc2695c6aff1c1a1c87a6db2687dfdff2", + "fields": { + "code_commune_insee": "02319", + "nom_de_la_commune": "FONSOMME", + "code_postal": "02110", + "coordonnees_gps": [ + 49.9012467271, + 3.39650664791 + ], + "libelle_d_acheminement": "FONSOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39650664791, + 49.9012467271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7c037f8b0cb800e56699d073d91cdcb6750e679", + "fields": { + "code_commune_insee": "02321", + "nom_de_la_commune": "FONTAINE LES VERVINS", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8537390603, + 3.90543025367 + ], + "libelle_d_acheminement": "FONTAINE LES VERVINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90543025367, + 49.8537390603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dfc5fdceac76b3e998bb408c33759c5f42744f4", + "fields": { + "code_commune_insee": "02326", + "nom_de_la_commune": "FONTENOY", + "code_postal": "02290", + "coordonnees_gps": [ + 49.4099999437, + 3.19454758662 + ], + "libelle_d_acheminement": "FONTENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19454758662, + 49.4099999437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10cb01b24741cad57b421fb072ce99ceae62f3f1", + "fields": { + "code_commune_insee": "02339", + "nom_de_la_commune": "GANDELU", + "code_postal": "02810", + "coordonnees_gps": [ + 49.0832089104, + 3.18156231552 + ], + "libelle_d_acheminement": "GANDELU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18156231552, + 49.0832089104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35f92cfcb4a63dee9ab7cf7ddb1f22d6fd447e64", + "fields": { + "code_commune_insee": "02347", + "nom_de_la_commune": "GLAND", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0579740538, + 3.45713931457 + ], + "libelle_d_acheminement": "GLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45713931457, + 49.0579740538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "224c0f126fed95fcd348e34c788184f9c3200e05", + "fields": { + "code_commune_insee": "02349", + "nom_de_la_commune": "GOUDELANCOURT LES BERRIEUX", + "code_postal": "02820", + "coordonnees_gps": [ + 49.4946764579, + 3.85858670968 + ], + "libelle_d_acheminement": "GOUDELANCOURT LES BERRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85858670968, + 49.4946764579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc864c15c14cf65b6e8d7ff0815bbd2d125552d9", + "fields": { + "code_commune_insee": "02350", + "nom_de_la_commune": "GOUDELANCOURT LES PIERREPONT", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6783296824, + 3.85162740345 + ], + "libelle_d_acheminement": "GOUDELANCOURT LES PIERREPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85162740345, + 49.6783296824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d3c6fd416e982f3bec249156fdbae8276d81585", + "fields": { + "code_commune_insee": "02351", + "nom_de_la_commune": "GOUSSANCOURT", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1608459229, + 3.65658681802 + ], + "libelle_d_acheminement": "GOUSSANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65658681802, + 49.1608459229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a31b0656393d7f4e396c75189a078f6bc393802e", + "fields": { + "code_commune_insee": "02361", + "nom_de_la_commune": "GUISE", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8960415076, + 3.62476062929 + ], + "libelle_d_acheminement": "GUISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62476062929, + 49.8960415076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae60afcb37045455528379a1f264adf76bb0d63d", + "fields": { + "code_commune_insee": "02363", + "nom_de_la_commune": "GUNY", + "code_postal": "02300", + "coordonnees_gps": [ + 49.5120153085, + 3.26082658052 + ], + "libelle_d_acheminement": "GUNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26082658052, + 49.5120153085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaa3aba2d2b29bcac4f04acc50637395a76e96be", + "fields": { + "code_commune_insee": "02366", + "nom_de_la_commune": "HANNAPES", + "code_postal": "02510", + "coordonnees_gps": [ + 49.9771158104, + 3.61442642232 + ], + "libelle_d_acheminement": "HANNAPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61442642232, + 49.9771158104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "711dc323073dc85c360ac74335052d4e2c3bcf42", + "fields": { + "code_commune_insee": "02367", + "nom_de_la_commune": "HAPPENCOURT", + "code_postal": "02480", + "coordonnees_gps": [ + 49.7825905619, + 3.1831286327 + ], + "libelle_d_acheminement": "HAPPENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1831286327, + 49.7825905619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43957f6b72ccc3643809bc7461995ee27f252a65", + "fields": { + "code_commune_insee": "02372", + "nom_de_la_commune": "HARTENNES ET TAUX", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2789534457, + 3.35763287633 + ], + "libelle_d_acheminement": "HARTENNES ET TAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35763287633, + 49.2789534457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d195ae7c15e17008b75a5341dae2d6d9fec4da8", + "fields": { + "code_commune_insee": "02378", + "nom_de_la_commune": "LA HERIE", + "code_postal": "02500", + "coordonnees_gps": [ + 49.8838269882, + 4.04360657052 + ], + "libelle_d_acheminement": "LA HERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04360657052, + 49.8838269882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23a30c27ac143d81eeae2b17387866acf6c26156", + "fields": { + "code_commune_insee": "02382", + "nom_de_la_commune": "HOLNON", + "code_postal": "02760", + "coordonnees_gps": [ + 49.8612556888, + 3.20085325892 + ], + "libelle_d_acheminement": "HOLNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20085325892, + 49.8612556888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74f064fc19180a3d98576ef721313c47506a6594", + "fields": { + "code_commune_insee": "02398", + "nom_de_la_commune": "JUVIGNY", + "code_postal": "02880", + "coordonnees_gps": [ + 49.44857677, + 3.31533781107 + ], + "libelle_d_acheminement": "JUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31533781107, + 49.44857677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7571183baf964ebde081bc9f04141bcef18685ba", + "fields": { + "code_commune_insee": "02400", + "nom_de_la_commune": "LAFFAUX", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4494770874, + 3.42995693216 + ], + "libelle_d_acheminement": "LAFFAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42995693216, + 49.4494770874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59b2e9f2af6bea5500454aa6287ef1d6264c3472", + "fields": { + "code_commune_insee": "02406", + "nom_de_la_commune": "LANDRICOURT", + "code_postal": "02380", + "coordonnees_gps": [ + 49.505420346, + 3.36950507041 + ], + "libelle_d_acheminement": "LANDRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36950507041, + 49.505420346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aac9f1b228b79a96b0e77dc1132adb7bf307c58", + "fields": { + "code_commune_insee": "02412", + "nom_de_la_commune": "LAUNOY", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2629984132, + 3.4054374314 + ], + "libelle_d_acheminement": "LAUNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4054374314, + 49.2629984132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa3a2084c49f5fa56b2b23e80e01c7c29b8faff3", + "fields": { + "code_commune_insee": "02433", + "nom_de_la_commune": "LISLET", + "code_postal": "02340", + "coordonnees_gps": [ + 49.6757265054, + 4.02084295692 + ], + "libelle_d_acheminement": "LISLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02084295692, + 49.6757265054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16ceffdc2328145dea4aeae8256360d2d61bb2d5", + "fields": { + "ligne_5": "LONGUEVAL BARBONVAL", + "code_commune_insee": "02439", + "libelle_d_acheminement": "LES SEPTVALLONS", + "code_postal": "02160", + "nom_de_la_commune": "LES SEPTVALLONS", + "coordonnees_gps": [ + 49.3603355862, + 3.65567844397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65567844397, + 49.3603355862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd90c9d0b164d3ad1f534e8500604a8185e25fea", + "fields": { + "ligne_5": "PERLES", + "code_commune_insee": "02439", + "libelle_d_acheminement": "LES SEPTVALLONS", + "code_postal": "02160", + "nom_de_la_commune": "LES SEPTVALLONS", + "coordonnees_gps": [ + 49.3603355862, + 3.65567844397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65567844397, + 49.3603355862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21941f724ea92749bd68d098a92648f85b4ae407", + "fields": { + "ligne_5": "REVILLON", + "code_commune_insee": "02439", + "libelle_d_acheminement": "LES SEPTVALLONS", + "code_postal": "02160", + "nom_de_la_commune": "LES SEPTVALLONS", + "coordonnees_gps": [ + 49.3603355862, + 3.65567844397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65567844397, + 49.3603355862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a15420bf931b002f2194eef7aacd97f1e69f873", + "fields": { + "code_commune_insee": "02442", + "nom_de_la_commune": "LOUPEIGNE", + "code_postal": "02130", + "coordonnees_gps": [ + 49.2411071956, + 3.5251073823 + ], + "libelle_d_acheminement": "LOUPEIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5251073823, + 49.2411071956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb19c61db21917e2dd6604ffe5abbc80d84a1b91", + "fields": { + "code_commune_insee": "02450", + "nom_de_la_commune": "MACQUIGNY", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8732387452, + 3.57070489565 + ], + "libelle_d_acheminement": "MACQUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57070489565, + 49.8732387452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4912f97ed8dca4b85db145374d8ea66947309a2f", + "fields": { + "code_commune_insee": "02451", + "nom_de_la_commune": "MAGNY LA FOSSE", + "code_postal": "02420", + "coordonnees_gps": [ + 49.9371259007, + 3.27654031882 + ], + "libelle_d_acheminement": "MAGNY LA FOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27654031882, + 49.9371259007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a5e458d95a5c1e7a373738f29ab44a531ff1a8f", + "fields": { + "code_commune_insee": "02452", + "nom_de_la_commune": "MAISSEMY", + "code_postal": "02490", + "coordonnees_gps": [ + 49.8929443672, + 3.1890371838 + ], + "libelle_d_acheminement": "MAISSEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1890371838, + 49.8929443672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2dc7af20b2085b3daedf81212c409100f5ef5dc", + "fields": { + "code_commune_insee": "02465", + "nom_de_la_commune": "MARIGNY EN ORXOIS", + "code_postal": "02810", + "coordonnees_gps": [ + 49.0526386182, + 3.22281001734 + ], + "libelle_d_acheminement": "MARIGNY EN ORXOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22281001734, + 49.0526386182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19559b6fd273bc1f306059525b8d5367750b7072", + "fields": { + "code_commune_insee": "02466", + "nom_de_la_commune": "MARIZY STE GENEVIEVE", + "code_postal": "02470", + "coordonnees_gps": [ + 49.1825477943, + 3.19814247608 + ], + "libelle_d_acheminement": "MARIZY STE GENEVIEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19814247608, + 49.1825477943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b03f8f4cda1c8820c728560d8e5098b81ffff3b", + "fields": { + "code_commune_insee": "02467", + "nom_de_la_commune": "MARIZY ST MARD", + "code_postal": "02470", + "coordonnees_gps": [ + 49.1822693098, + 3.22799114728 + ], + "libelle_d_acheminement": "MARIZY ST MARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22799114728, + 49.1822693098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "334df2fc783cd5128fd82170a2baa539229d57ae", + "fields": { + "code_commune_insee": "02483", + "nom_de_la_commune": "MEZIERES SUR OISE", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7918999939, + 3.38740833653 + ], + "libelle_d_acheminement": "MEZIERES SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38740833653, + 49.7918999939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6621f01cc7847aa8faf9f8e15613be772e3ed72f", + "fields": { + "code_commune_insee": "02484", + "nom_de_la_commune": "MEZY MOULINS", + "code_postal": "02650", + "coordonnees_gps": [ + 49.0630074888, + 3.5122782761 + ], + "libelle_d_acheminement": "MEZY MOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5122782761, + 49.0630074888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36ee4d5c2aeec395bc5127b6e7f2b399d97b040c", + "fields": { + "code_commune_insee": "02497", + "nom_de_la_commune": "MONS EN LAONNOIS", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5379451828, + 3.55478457954 + ], + "libelle_d_acheminement": "MONS EN LAONNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55478457954, + 49.5379451828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74bbbb979b2907e77aeda090dea4c144b3d88c2d", + "fields": { + "code_commune_insee": "02499", + "nom_de_la_commune": "MONTBAVIN", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5295376592, + 3.51319789821 + ], + "libelle_d_acheminement": "MONTBAVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51319789821, + 49.5295376592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2ee270fbf8ec18ff6bab5327f5c10789ac73ae3", + "fields": { + "code_commune_insee": "02501", + "nom_de_la_commune": "MONTCHALONS", + "code_postal": "02860", + "coordonnees_gps": [ + 49.5131917425, + 3.72718965805 + ], + "libelle_d_acheminement": "MONTCHALONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72718965805, + 49.5131917425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e77b0283da9258808e53bca166c7944aa5e61c52", + "fields": { + "code_commune_insee": "02505", + "nom_de_la_commune": "MONTFAUCON", + "code_postal": "02540", + "coordonnees_gps": [ + 48.9466694844, + 3.43192398845 + ], + "libelle_d_acheminement": "MONTFAUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43192398845, + 48.9466694844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d565c0d3ed85f2b5fc2888f10016aed40198d15", + "fields": { + "code_commune_insee": "02506", + "nom_de_la_commune": "MONTGOBERT", + "code_postal": "02600", + "coordonnees_gps": [ + 49.289626635, + 3.17404129063 + ], + "libelle_d_acheminement": "MONTGOBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17404129063, + 49.289626635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49c008cfebae847c93b4f807935e6f54666c7f83", + "fields": { + "code_commune_insee": "02510", + "nom_de_la_commune": "MONTHUREL", + "code_postal": "02330", + "coordonnees_gps": [ + 49.0275310805, + 3.55187396803 + ], + "libelle_d_acheminement": "MONTHUREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55187396803, + 49.0275310805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "857851af110b31c3c4e33f41fa296519dcdcc4c1", + "fields": { + "code_commune_insee": "02513", + "nom_de_la_commune": "MONTIGNY LE FRANC", + "code_postal": "02250", + "coordonnees_gps": [ + 49.6874788196, + 3.9183982393 + ], + "libelle_d_acheminement": "MONTIGNY LE FRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9183982393, + 49.6874788196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0e9fea1d8e863e570031ba0ad24da08064b4e7c", + "fields": { + "code_commune_insee": "02535", + "nom_de_la_commune": "NAMPCELLES LA COUR", + "code_postal": "02140", + "coordonnees_gps": [ + 49.7765756098, + 4.00209910519 + ], + "libelle_d_acheminement": "NAMPCELLES LA COUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00209910519, + 49.7765756098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ddcc3b4f6c76be7df80325f7584856d4c60c47b", + "fields": { + "code_commune_insee": "02537", + "nom_de_la_commune": "NANTEUIL LA FOSSE", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4338010814, + 3.44800041437 + ], + "libelle_d_acheminement": "NANTEUIL LA FOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44800041437, + 49.4338010814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c155648f049f0790e7bb2edc012dba193fe9a98f", + "fields": { + "code_commune_insee": "02542", + "nom_de_la_commune": "NEUFLIEUX", + "code_postal": "02300", + "coordonnees_gps": [ + 49.6163788231, + 3.15996849471 + ], + "libelle_d_acheminement": "NEUFLIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15996849471, + 49.6163788231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eb6198d188b1d91f450c52b4f907c26ba313b7b", + "fields": { + "code_commune_insee": "02552", + "nom_de_la_commune": "NEUVILLETTE", + "code_postal": "02390", + "coordonnees_gps": [ + 49.8554002239, + 3.46831298648 + ], + "libelle_d_acheminement": "NEUVILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46831298648, + 49.8554002239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5656bf0846637c56bb06c847cba26c2dc724f33e", + "fields": { + "code_commune_insee": "02559", + "nom_de_la_commune": "NOUVION ET CATILLON", + "code_postal": "02270", + "coordonnees_gps": [ + 49.7075667391, + 3.49359729343 + ], + "libelle_d_acheminement": "NOUVION ET CATILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49359729343, + 49.7075667391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "144b692cbe4fb6f1c31998c91b55ba117945cfb1", + "fields": { + "code_commune_insee": "02560", + "nom_de_la_commune": "NOUVION LE COMTE", + "code_postal": "02800", + "coordonnees_gps": [ + 49.7079830783, + 3.46084868911 + ], + "libelle_d_acheminement": "NOUVION LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46084868911, + 49.7079830783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3e282d25a48c351e59a2bd9cdb4ebf0ff8cacd6", + "fields": { + "code_commune_insee": "02564", + "nom_de_la_commune": "NOYANT ET ACONIN", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3319620657, + 3.33416303776 + ], + "libelle_d_acheminement": "NOYANT ET ACONIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33416303776, + 49.3319620657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68f8dc26f28439960d798f018eb7a85cd93cd575", + "fields": { + "code_commune_insee": "02567", + "nom_de_la_commune": "OHIS", + "code_postal": "02500", + "coordonnees_gps": [ + 49.9184307239, + 4.01170912127 + ], + "libelle_d_acheminement": "OHIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01170912127, + 49.9184307239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "142354ddab3125c1eec3440ea365cdde9dd21e4a", + "fields": { + "code_commune_insee": "02570", + "nom_de_la_commune": "OLLEZY", + "code_postal": "02480", + "coordonnees_gps": [ + 49.729996536, + 3.14607261695 + ], + "libelle_d_acheminement": "OLLEZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14607261695, + 49.729996536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ad097b8d68bc9a0fd4645622e9cb15539945938", + "fields": { + "code_commune_insee": "02576", + "nom_de_la_commune": "OSLY COURTIL", + "code_postal": "02290", + "coordonnees_gps": [ + 49.3995301311, + 3.23736511582 + ], + "libelle_d_acheminement": "OSLY COURTIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23736511582, + 49.3995301311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14eb2c9c33aa6bafc5fdbe0b23d71c48daad9a3a", + "fields": { + "code_commune_insee": "02587", + "nom_de_la_commune": "PARFONDRU", + "code_postal": "02840", + "coordonnees_gps": [ + 49.5385213412, + 3.70351915315 + ], + "libelle_d_acheminement": "PARFONDRU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70351915315, + 49.5385213412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf0161bdaa218bf3755ee7d09dcd58a460f642c7", + "fields": { + "code_commune_insee": "02588", + "nom_de_la_commune": "PARGNAN", + "code_postal": "02160", + "coordonnees_gps": [ + 49.3942391486, + 3.70308940891 + ], + "libelle_d_acheminement": "PARGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70308940891, + 49.3942391486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76e4852a673cff60c3bfed65c296666c869b8c3c", + "fields": { + "code_commune_insee": "02590", + "nom_de_la_commune": "PARGNY LA DHUYS", + "code_postal": "02330", + "coordonnees_gps": [ + 48.9545509576, + 3.56357370593 + ], + "libelle_d_acheminement": "PARGNY LA DHUYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56357370593, + 48.9545509576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2e46e26fc22652f079c20373b3ac25d0f1216c3", + "fields": { + "code_commune_insee": "02605", + "nom_de_la_commune": "PLEINE SELVE", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7965883398, + 3.5260425643 + ], + "libelle_d_acheminement": "PLEINE SELVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5260425643, + 49.7965883398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26c97888ef78eb1e1aa8a392637557456977f3cb", + "fields": { + "code_commune_insee": "02608", + "nom_de_la_commune": "PLOMION", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8188816623, + 4.01999597737 + ], + "libelle_d_acheminement": "PLOMION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01999597737, + 49.8188816623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "051ecd660f5540fea20b4906e0fe28df8248de9e", + "fields": { + "code_commune_insee": "02618", + "nom_de_la_commune": "PREMONT", + "code_postal": "02110", + "coordonnees_gps": [ + 50.0143067533, + 3.39725258008 + ], + "libelle_d_acheminement": "PREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39725258008, + 50.0143067533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3577fbb8882926687585ec8b886b9cd9ca931cca", + "fields": { + "code_commune_insee": "02620", + "nom_de_la_commune": "PRESLES ET BOVES", + "code_postal": "02370", + "coordonnees_gps": [ + 49.3900726835, + 3.54013980029 + ], + "libelle_d_acheminement": "PRESLES ET BOVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54013980029, + 49.3900726835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bcb70363aa8a55e5b4ac9aa511e5c71d65f5385", + "fields": { + "code_commune_insee": "02623", + "nom_de_la_commune": "PRISCES", + "code_postal": "02140", + "coordonnees_gps": [ + 49.7721688271, + 3.86274146906 + ], + "libelle_d_acheminement": "PRISCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86274146906, + 49.7721688271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fedcde67c207071782dca35515e0b86510c69616", + "fields": { + "code_commune_insee": "02626", + "nom_de_la_commune": "PROUVAIS", + "code_postal": "02190", + "coordonnees_gps": [ + 49.4760906978, + 3.97215349857 + ], + "libelle_d_acheminement": "PROUVAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97215349857, + 49.4760906978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b74254fc827c2fb63c147299f61d2d37731c5b0c", + "fields": { + "code_commune_insee": "02635", + "nom_de_la_commune": "RAMICOURT", + "code_postal": "02110", + "coordonnees_gps": [ + 49.9579684711, + 3.33105686967 + ], + "libelle_d_acheminement": "RAMICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33105686967, + 49.9579684711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51e1cdf86f8762fd236e75f65d5b57e948c87612", + "fields": { + "code_commune_insee": "02643", + "nom_de_la_commune": "RESSONS LE LONG", + "code_postal": "02290", + "coordonnees_gps": [ + 49.3881779495, + 3.1411755288 + ], + "libelle_d_acheminement": "RESSONS LE LONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1411755288, + 49.3881779495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ebf47d192195f222b78df6169ff655cdb8edbcd", + "fields": { + "code_commune_insee": "02645", + "nom_de_la_commune": "REUILLY SAUVIGNY", + "code_postal": "02850", + "coordonnees_gps": [ + 49.0506024106, + 3.56448771259 + ], + "libelle_d_acheminement": "REUILLY SAUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56448771259, + 49.0506024106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d3ce586033dc7bd14bee3dd3111ea276575b805", + "fields": { + "code_commune_insee": "02649", + "nom_de_la_commune": "ROCOURT ST MARTIN", + "code_postal": "02210", + "coordonnees_gps": [ + 49.1453872803, + 3.3891401292 + ], + "libelle_d_acheminement": "ROCOURT ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3891401292, + 49.1453872803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "270b3ccc5658cb4b7f280910b6a2664affa2acfc", + "fields": { + "code_commune_insee": "02670", + "nom_de_la_commune": "ST ALGIS", + "code_postal": "02260", + "coordonnees_gps": [ + 49.8944330304, + 3.82546447463 + ], + "libelle_d_acheminement": "ST ALGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82546447463, + 49.8944330304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7825440b05b77b6d823a55a2d9924a4ecd1013bb", + "fields": { + "code_commune_insee": "02672", + "nom_de_la_commune": "ST BANDRY", + "code_postal": "02290", + "coordonnees_gps": [ + 49.3638994868, + 3.14949009826 + ], + "libelle_d_acheminement": "ST BANDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14949009826, + 49.3638994868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faf121f313fc561178d597f38feae6efb750a15e", + "fields": { + "code_commune_insee": "02675", + "nom_de_la_commune": "STE CROIX", + "code_postal": "02820", + "coordonnees_gps": [ + 49.4800538584, + 3.78129682642 + ], + "libelle_d_acheminement": "STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78129682642, + 49.4800538584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f82098c285b101a680d8451f9f868e1c71afe73", + "fields": { + "code_commune_insee": "02676", + "nom_de_la_commune": "ST ERME OUTRE ET RAMECOURT", + "code_postal": "02820", + "coordonnees_gps": [ + 49.5182833727, + 3.86386406835 + ], + "libelle_d_acheminement": "ST ERME OUTRE ET RAMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86386406835, + 49.5182833727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b7c5f0a672d59b95eb6022c9292be731fe81ae5", + "fields": { + "code_commune_insee": "02680", + "nom_de_la_commune": "ST GOBAIN", + "code_postal": "02410", + "coordonnees_gps": [ + 49.5953887213, + 3.39411143672 + ], + "libelle_d_acheminement": "ST GOBAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39411143672, + 49.5953887213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c90471d00d6d43a50eb2d354e8ec6353033d806", + "fields": { + "code_commune_insee": "02681", + "nom_de_la_commune": "ST GOBERT", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8037605968, + 3.83219152047 + ], + "libelle_d_acheminement": "ST GOBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83219152047, + 49.8037605968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe4cba27e4c0a53f6652b5f18706d336820d3671", + "fields": { + "code_commune_insee": "02685", + "nom_de_la_commune": "ST NICOLAS AUX BOIS", + "code_postal": "02410", + "coordonnees_gps": [ + 49.5970302282, + 3.43898003392 + ], + "libelle_d_acheminement": "ST NICOLAS AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43898003392, + 49.5970302282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3b7f134b6e82c524a9aca175805ac3e46cce985", + "fields": { + "code_commune_insee": "02695", + "nom_de_la_commune": "ST THIBAUT", + "code_postal": "02220", + "coordonnees_gps": [ + 49.2891405131, + 3.61650327087 + ], + "libelle_d_acheminement": "ST THIBAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61650327087, + 49.2891405131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7d8475455767311bc2fd75019c9d0a094e02ce1", + "fields": { + "code_commune_insee": "02699", + "nom_de_la_commune": "SAPONAY", + "code_postal": "02130", + "coordonnees_gps": [ + 49.2143831516, + 3.48437985358 + ], + "libelle_d_acheminement": "SAPONAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48437985358, + 49.2143831516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40362d165ed477202fb3d707b1576cce766fea37", + "fields": { + "code_commune_insee": "02701", + "nom_de_la_commune": "SAULCHERY", + "code_postal": "02310", + "coordonnees_gps": [ + 48.9756405479, + 3.31260850509 + ], + "libelle_d_acheminement": "SAULCHERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31260850509, + 48.9756405479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e2711c0c1104b25c912be3c73880fee5861a55a", + "fields": { + "code_commune_insee": "02716", + "nom_de_la_commune": "SERVAIS", + "code_postal": "02700", + "coordonnees_gps": [ + 49.6194083182, + 3.34197325752 + ], + "libelle_d_acheminement": "SERVAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34197325752, + 49.6194083182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d5de7cdb2d3a46e54c936e2ece1d400ded686bb", + "fields": { + "code_commune_insee": "02720", + "nom_de_la_commune": "SISSONNE", + "code_postal": "02150", + "coordonnees_gps": [ + 49.5639648451, + 3.92032139579 + ], + "libelle_d_acheminement": "SISSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92032139579, + 49.5639648451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f269c21c931e9722e7994820e12fce1f3981881b", + "fields": { + "code_commune_insee": "02728", + "nom_de_la_commune": "SORBAIS", + "code_postal": "02580", + "coordonnees_gps": [ + 49.9137614487, + 3.88302482521 + ], + "libelle_d_acheminement": "SORBAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88302482521, + 49.9137614487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ad6e61118cbcd89d7d481ce2c994798721f431c", + "fields": { + "code_commune_insee": "02749", + "nom_de_la_commune": "TROESNES", + "code_postal": "02460", + "coordonnees_gps": [ + 49.1981484588, + 3.1768274022 + ], + "libelle_d_acheminement": "TROESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1768274022, + 49.1981484588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69bc8b9e64062c1072fae9a030773dfc152952bd", + "fields": { + "code_commune_insee": "02754", + "nom_de_la_commune": "UGNY LE GAY", + "code_postal": "02300", + "coordonnees_gps": [ + 49.6610045264, + 3.15663213439 + ], + "libelle_d_acheminement": "UGNY LE GAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15663213439, + 49.6610045264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b32156f7fc71e7fd8b001e8f152e627814f01036", + "fields": { + "code_commune_insee": "02757", + "nom_de_la_commune": "VADENCOURT", + "code_postal": "02120", + "coordonnees_gps": [ + 49.9229771613, + 3.57386118846 + ], + "libelle_d_acheminement": "VADENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57386118846, + 49.9229771613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd84b7e3624067a36608f260beac16c3c6481f64", + "fields": { + "code_commune_insee": "02758", + "nom_de_la_commune": "VAILLY SUR AISNE", + "code_postal": "02370", + "coordonnees_gps": [ + 49.4108623288, + 3.52012059802 + ], + "libelle_d_acheminement": "VAILLY SUR AISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52012059802, + 49.4108623288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0989bc5ba29789fe135f4daa4ddc52aca52ee1f9", + "fields": { + "code_commune_insee": "02759", + "nom_de_la_commune": "LA VALLEE AU BLE", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8571725081, + 3.794382858 + ], + "libelle_d_acheminement": "LA VALLEE AU BLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.794382858, + 49.8571725081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05beba83f956e23e31fef2b7050b8e8ccbcaa841", + "fields": { + "code_commune_insee": "02779", + "nom_de_la_commune": "VENEROLLES", + "code_postal": "02510", + "coordonnees_gps": [ + 49.9903433031, + 3.63008652624 + ], + "libelle_d_acheminement": "VENEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63008652624, + 49.9903433031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfc3b3808cb08c249ee1c6c4b666894b71df149a", + "fields": { + "code_commune_insee": "02780", + "nom_de_la_commune": "VENIZEL", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3676425771, + 3.39248543249 + ], + "libelle_d_acheminement": "VENIZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39248543249, + 49.3676425771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "168cbaaf2be20ffa728378d4eb9616ba5e253bc1", + "fields": { + "code_commune_insee": "02794", + "nom_de_la_commune": "VEZILLY", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1874443601, + 3.68274149419 + ], + "libelle_d_acheminement": "VEZILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68274149419, + 49.1874443601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ae9badbf3fc1a9116fdbf6e4a1fd1c9fa47bed8", + "fields": { + "code_commune_insee": "02802", + "nom_de_la_commune": "LA VILLE AUX BOIS LES DIZY", + "code_postal": "02340", + "coordonnees_gps": [ + 49.6626572968, + 3.98152083729 + ], + "libelle_d_acheminement": "LA VILLE AUX BOIS LES DIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98152083729, + 49.6626572968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fb7566dcfa98c458a88406c552bf18e08870cbf", + "fields": { + "code_commune_insee": "02803", + "nom_de_la_commune": "LA VILLE AUX BOIS LES PONTAVERT", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4265972983, + 3.85108262844 + ], + "libelle_d_acheminement": "LA VILLE AUX BOIS LES PONTAVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85108262844, + 49.4265972983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "649d3cbd929af4ff5423aafe36322c1cae7f28d0", + "fields": { + "code_commune_insee": "02807", + "nom_de_la_commune": "VILLEQUIER AUMONT", + "code_postal": "02300", + "coordonnees_gps": [ + 49.6606240148, + 3.19834244186 + ], + "libelle_d_acheminement": "VILLEQUIER AUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19834244186, + 49.6606240148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06fa00d1178b626b492bc7c26a35d3fb08b4cd2c", + "fields": { + "code_commune_insee": "02812", + "nom_de_la_commune": "VILLERS HELON", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2649355463, + 3.26786134731 + ], + "libelle_d_acheminement": "VILLERS HELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26786134731, + 49.2649355463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd13ea9cd73e40ff973ba5076fd4cdedff005733", + "fields": { + "code_commune_insee": "02826", + "nom_de_la_commune": "VOULPAIX", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8387507375, + 3.83266238617 + ], + "libelle_d_acheminement": "VOULPAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83266238617, + 49.8387507375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2beb60d8e1d1fa901fff76ab20a546639be8dd97", + "fields": { + "code_commune_insee": "02827", + "nom_de_la_commune": "VOYENNE", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7158793314, + 3.73841251024 + ], + "libelle_d_acheminement": "VOYENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73841251024, + 49.7158793314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72b68a8c20b7f9b5bb03e380865af62682425a2b", + "fields": { + "code_commune_insee": "02831", + "nom_de_la_commune": "WATIGNY", + "code_postal": "02830", + "coordonnees_gps": [ + 49.9163639357, + 4.20040317785 + ], + "libelle_d_acheminement": "WATIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20040317785, + 49.9163639357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3954548052d0a4976e9f0fe72319ea3c099a805e", + "fields": { + "code_commune_insee": "03006", + "nom_de_la_commune": "ARFEUILLES", + "code_postal": "03120", + "coordonnees_gps": [ + 46.1431515084, + 3.74329110559 + ], + "libelle_d_acheminement": "ARFEUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74329110559, + 46.1431515084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08429ccf1cff4e74028dc7d99687bcab8d018965", + "fields": { + "code_commune_insee": "03017", + "nom_de_la_commune": "BARRAIS BUSSOLLES", + "code_postal": "03120", + "coordonnees_gps": [ + 46.2837408507, + 3.69766013244 + ], + "libelle_d_acheminement": "BARRAIS BUSSOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69766013244, + 46.2837408507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "923cedfb270b8f2ecca4b647753acad4c6b7854e", + "fields": { + "code_commune_insee": "03028", + "nom_de_la_commune": "BILLEZOIS", + "code_postal": "03120", + "coordonnees_gps": [ + 46.2094826701, + 3.57688265252 + ], + "libelle_d_acheminement": "BILLEZOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57688265252, + 46.2094826701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b7b03f2d8100a9113d87b0334bbb7938c2f564c", + "fields": { + "code_commune_insee": "03029", + "nom_de_la_commune": "BILLY", + "code_postal": "03260", + "coordonnees_gps": [ + 46.2315363963, + 3.43994128747 + ], + "libelle_d_acheminement": "BILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43994128747, + 46.2315363963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50f6faae7fddd850db39f21256fcc2288b942703", + "fields": { + "code_commune_insee": "03039", + "nom_de_la_commune": "BRESNAY", + "code_postal": "03210", + "coordonnees_gps": [ + 46.4335692397, + 3.24899330539 + ], + "libelle_d_acheminement": "BRESNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24899330539, + 46.4335692397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a760874f6996dccea0d799e58de8165bd902452", + "fields": { + "code_commune_insee": "03049", + "nom_de_la_commune": "CESSET", + "code_postal": "03500", + "coordonnees_gps": [ + 46.2993847548, + 3.19908944342 + ], + "libelle_d_acheminement": "CESSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19908944342, + 46.2993847548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61ab5f56d0e484b1538955ef4ebed72469435b89", + "fields": { + "code_commune_insee": "03054", + "nom_de_la_commune": "CHAPEAU", + "code_postal": "03340", + "coordonnees_gps": [ + 46.4922208672, + 3.51548779612 + ], + "libelle_d_acheminement": "CHAPEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51548779612, + 46.4922208672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6243fd88fb6b49ac9e0bcbc095b9f7360eeea8a5", + "fields": { + "code_commune_insee": "03056", + "nom_de_la_commune": "LA CHAPELLE", + "code_postal": "03300", + "coordonnees_gps": [ + 46.0889341496, + 3.5877712092 + ], + "libelle_d_acheminement": "LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5877712092, + 46.0889341496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d66605110257166bfb8cf18044a4dcf98096f06a", + "fields": { + "code_commune_insee": "03057", + "nom_de_la_commune": "LA CHAPELLE AUX CHASSES", + "code_postal": "03230", + "coordonnees_gps": [ + 46.6598285232, + 3.53021703178 + ], + "libelle_d_acheminement": "LA CHAPELLE AUX CHASSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53021703178, + 46.6598285232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09c070f97950537dde24c6a835f989aa0e612998", + "fields": { + "code_commune_insee": "03060", + "nom_de_la_commune": "CHARMEIL", + "code_postal": "03110", + "coordonnees_gps": [ + 46.1598815241, + 3.39334670689 + ], + "libelle_d_acheminement": "CHARMEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39334670689, + 46.1598815241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b70f2ca0ad2735c56168d5617ccf8e7615b2da3e", + "fields": { + "code_commune_insee": "03067", + "nom_de_la_commune": "CHATELPERRON", + "code_postal": "03220", + "coordonnees_gps": [ + 46.3968658739, + 3.63313760873 + ], + "libelle_d_acheminement": "CHATELPERRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63313760873, + 46.3968658739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03fadeadf1512ed6ec55aa4b2aac8058c4c76929", + "fields": { + "code_commune_insee": "03077", + "nom_de_la_commune": "CHIRAT L EGLISE", + "code_postal": "03330", + "coordonnees_gps": [ + 46.2460009301, + 3.03251610569 + ], + "libelle_d_acheminement": "CHIRAT L EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03251610569, + 46.2460009301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "798e480b9b2b27b6a7071bb5e9b132902fd8f781", + "fields": { + "code_commune_insee": "03079", + "nom_de_la_commune": "CINDRE", + "code_postal": "03220", + "coordonnees_gps": [ + 46.3230930256, + 3.55110289744 + ], + "libelle_d_acheminement": "CINDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55110289744, + 46.3230930256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8ac917363baeae949a51e3c9d97fedcea42e8bb", + "fields": { + "code_commune_insee": "03082", + "nom_de_la_commune": "COMMENTRY", + "code_postal": "03600", + "coordonnees_gps": [ + 46.2787466852, + 2.74916734673 + ], + "libelle_d_acheminement": "COMMENTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74916734673, + 46.2787466852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f575c65d0929283b235fb064b8b7d941665d27b5", + "fields": { + "code_commune_insee": "03083", + "nom_de_la_commune": "CONTIGNY", + "code_postal": "03500", + "coordonnees_gps": [ + 46.3463711102, + 3.31483781041 + ], + "libelle_d_acheminement": "CONTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31483781041, + 46.3463711102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "065d03f69fce5500634c4cc541b4e6cf0e40e438", + "fields": { + "code_commune_insee": "03085", + "nom_de_la_commune": "COULANDON", + "code_postal": "03000", + "coordonnees_gps": [ + 46.5546535461, + 3.24541387326 + ], + "libelle_d_acheminement": "COULANDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24541387326, + 46.5546535461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f4c953a04374609a2c1e4e89b08d85f6bdd100c", + "fields": { + "code_commune_insee": "03086", + "nom_de_la_commune": "COULANGES", + "code_postal": "03470", + "coordonnees_gps": [ + 46.4751096526, + 3.86330653833 + ], + "libelle_d_acheminement": "COULANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86330653833, + 46.4751096526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99300b0e0f4c6c053e934bd7f97d99aee2bb3998", + "fields": { + "code_commune_insee": "03091", + "nom_de_la_commune": "CRECHY", + "code_postal": "03150", + "coordonnees_gps": [ + 46.2696885601, + 3.42387984399 + ], + "libelle_d_acheminement": "CRECHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42387984399, + 46.2696885601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "794168fc88ac3edeb6a36928dbd42b12a2855907", + "fields": { + "code_commune_insee": "03095", + "nom_de_la_commune": "CUSSET", + "code_postal": "03300", + "coordonnees_gps": [ + 46.1377738304, + 3.48296708451 + ], + "libelle_d_acheminement": "CUSSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48296708451, + 46.1377738304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2529707776195cecbe3e4c07b91e3e6965ff9a28", + "fields": { + "code_commune_insee": "03099", + "nom_de_la_commune": "DEUX CHAISES", + "code_postal": "03240", + "coordonnees_gps": [ + 46.3749069193, + 3.04059198306 + ], + "libelle_d_acheminement": "DEUX CHAISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04059198306, + 46.3749069193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b389b18e508bf3231b8ea6ed7602bb5e15fd5ed5", + "fields": { + "code_commune_insee": "03100", + "nom_de_la_commune": "DIOU", + "code_postal": "03290", + "coordonnees_gps": [ + 46.5226236257, + 3.7367345302 + ], + "libelle_d_acheminement": "DIOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7367345302, + 46.5226236257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e1aea4b23b9cc1d6df7dfc1b16b4a6699bb230e", + "fields": { + "code_commune_insee": "03101", + "nom_de_la_commune": "DOMERAT", + "code_postal": "03410", + "coordonnees_gps": [ + 46.3681510176, + 2.54346219645 + ], + "libelle_d_acheminement": "DOMERAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54346219645, + 46.3681510176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6fab174672bbef5f97d68118986abff4e900ebb", + "fields": { + "code_commune_insee": "03104", + "nom_de_la_commune": "DOYET", + "code_postal": "03170", + "coordonnees_gps": [ + 46.3433946285, + 2.79161075003 + ], + "libelle_d_acheminement": "DOYET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79161075003, + 46.3433946285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "962566e4932edd5e9214de02838f46e4fbd21116", + "fields": { + "code_commune_insee": "03108", + "nom_de_la_commune": "ECHASSIERES", + "code_postal": "03330", + "coordonnees_gps": [ + 46.1956641038, + 2.94596916837 + ], + "libelle_d_acheminement": "ECHASSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94596916837, + 46.1956641038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a736c0d1696b42d9a411d9e0e0f65632d811b14", + "fields": { + "code_commune_insee": "03114", + "nom_de_la_commune": "LA FERTE HAUTERIVE", + "code_postal": "03340", + "coordonnees_gps": [ + 46.396159353, + 3.3355449517 + ], + "libelle_d_acheminement": "LA FERTE HAUTERIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3355449517, + 46.396159353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a865773661a322f3a8a67ab959dc3f2379909f2f", + "fields": { + "code_commune_insee": "03115", + "nom_de_la_commune": "FLEURIEL", + "code_postal": "03140", + "coordonnees_gps": [ + 46.2870292399, + 3.16169451004 + ], + "libelle_d_acheminement": "FLEURIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16169451004, + 46.2870292399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5498a92cd098d126ef75d418c3205f665380c787", + "fields": { + "code_commune_insee": "03117", + "nom_de_la_commune": "FRANCHESSE", + "code_postal": "03160", + "coordonnees_gps": [ + 46.6436566411, + 3.03662004358 + ], + "libelle_d_acheminement": "FRANCHESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03662004358, + 46.6436566411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f88fc893b762a954863b5c12970f28f59e8f255", + "fields": { + "code_commune_insee": "03120", + "nom_de_la_commune": "GARNAT SUR ENGIEVRE", + "code_postal": "03230", + "coordonnees_gps": [ + 46.6348166525, + 3.66797467464 + ], + "libelle_d_acheminement": "GARNAT SUR ENGIEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66797467464, + 46.6348166525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "688637cddc19fbe210234517da79fc218dfedaea", + "fields": { + "code_commune_insee": "03121", + "nom_de_la_commune": "GENNETINES", + "code_postal": "03400", + "coordonnees_gps": [ + 46.6296398798, + 3.40498318638 + ], + "libelle_d_acheminement": "GENNETINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40498318638, + 46.6296398798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9607aac6ac0c5e53fddaa8c9bb9351b54f2ae96a", + "fields": { + "code_commune_insee": "03128", + "nom_de_la_commune": "HURIEL", + "code_postal": "03380", + "coordonnees_gps": [ + 46.3770986154, + 2.48198364823 + ], + "libelle_d_acheminement": "HURIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48198364823, + 46.3770986154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db04d443aa4f12061dd2948bf54afcd290f1b411", + "fields": { + "code_commune_insee": "03131", + "nom_de_la_commune": "ISSERPENT", + "code_postal": "03120", + "coordonnees_gps": [ + 46.1542955213, + 3.61825876933 + ], + "libelle_d_acheminement": "ISSERPENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61825876933, + 46.1542955213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4d80602f124427d8807f564b08a8bb83502a4ca", + "fields": { + "code_commune_insee": "03135", + "nom_de_la_commune": "LALIZOLLE", + "code_postal": "03450", + "coordonnees_gps": [ + 46.1646303512, + 3.00825559496 + ], + "libelle_d_acheminement": "LALIZOLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00825559496, + 46.1646303512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b4253528e9e9b7f90e51582395399aa98752786", + "fields": { + "code_commune_insee": "03136", + "nom_de_la_commune": "LAMAIDS", + "code_postal": "03380", + "coordonnees_gps": [ + 46.3040091673, + 2.43816762566 + ], + "libelle_d_acheminement": "LAMAIDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43816762566, + 46.3040091673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "007b9b4981c4174871399575bf7012593ffd5566", + "fields": { + "code_commune_insee": "03137", + "nom_de_la_commune": "LANGY", + "code_postal": "03150", + "coordonnees_gps": [ + 46.2728774328, + 3.46181153336 + ], + "libelle_d_acheminement": "LANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46181153336, + 46.2728774328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a08b16bcab1c71b64627949b086f6ec886aece3a", + "fields": { + "code_commune_insee": "03139", + "nom_de_la_commune": "LAPRUGNE", + "code_postal": "03250", + "coordonnees_gps": [ + 45.9937136705, + 3.76308018051 + ], + "libelle_d_acheminement": "LAPRUGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76308018051, + 45.9937136705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51554db000f197792c3e3bc435c681041eb8885c", + "fields": { + "code_commune_insee": "03140", + "nom_de_la_commune": "LAVAULT STE ANNE", + "code_postal": "03100", + "coordonnees_gps": [ + 46.3086016059, + 2.60160340266 + ], + "libelle_d_acheminement": "LAVAULT STE ANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60160340266, + 46.3086016059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67e8857765a0cd24ab1631a722aff2e643d482c4", + "fields": { + "code_commune_insee": "03142", + "nom_de_la_commune": "LENAX", + "code_postal": "03130", + "coordonnees_gps": [ + 46.3039709752, + 3.83067027438 + ], + "libelle_d_acheminement": "LENAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83067027438, + 46.3039709752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84d044cf95568cf9e24c913423c272891eb93643", + "fields": { + "code_commune_insee": "03143", + "nom_de_la_commune": "LETELON", + "code_postal": "03360", + "coordonnees_gps": [ + 46.6563542672, + 2.59495618457 + ], + "libelle_d_acheminement": "LETELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59495618457, + 46.6563542672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "effa0540b847ba71af99058da74240e4b4a22515", + "fields": { + "code_commune_insee": "03146", + "nom_de_la_commune": "LIMOISE", + "code_postal": "03320", + "coordonnees_gps": [ + 46.6841966516, + 3.05488887781 + ], + "libelle_d_acheminement": "LIMOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05488887781, + 46.6841966516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a71894b52b62920704e02bf128228b2f7d3e4d91", + "fields": { + "code_commune_insee": "03150", + "nom_de_la_commune": "LOUROUX BOURBONNAIS", + "code_postal": "03350", + "coordonnees_gps": [ + 46.5340787528, + 2.8385482758 + ], + "libelle_d_acheminement": "LOUROUX BOURBONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8385482758, + 46.5340787528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f7ec36d874e0cc1d7104d87f66cf7ca72417bab", + "fields": { + "code_commune_insee": "03156", + "nom_de_la_commune": "LUSIGNY", + "code_postal": "03230", + "coordonnees_gps": [ + 46.5717045071, + 3.48949898102 + ], + "libelle_d_acheminement": "LUSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48949898102, + 46.5717045071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21f3a2736d0847db46da838ced584773be986044", + "fields": { + "ligne_5": "LOUROUX HODEMENT", + "code_commune_insee": "03158", + "libelle_d_acheminement": "HAUT BOCAGE", + "code_postal": "03190", + "nom_de_la_commune": "HAUT BOCAGE", + "coordonnees_gps": [ + 46.4928636302, + 2.65852361334 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65852361334, + 46.4928636302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07bfde01be6a95808197b85c524a91f7420d90dc", + "fields": { + "ligne_5": "MAILLET", + "code_commune_insee": "03158", + "libelle_d_acheminement": "HAUT BOCAGE", + "code_postal": "03190", + "nom_de_la_commune": "HAUT BOCAGE", + "coordonnees_gps": [ + 46.4928636302, + 2.65852361334 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65852361334, + 46.4928636302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ac27bfd2307789956b6a384176ae6611e7a9016", + "fields": { + "code_commune_insee": "03159", + "nom_de_la_commune": "MALICORNE", + "code_postal": "03600", + "coordonnees_gps": [ + 46.3072678602, + 2.77027684739 + ], + "libelle_d_acheminement": "MALICORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77027684739, + 46.3072678602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96682c7c80ec1d913772293012901bfacbe40417", + "fields": { + "code_commune_insee": "03160", + "nom_de_la_commune": "MARCENAT", + "code_postal": "03260", + "coordonnees_gps": [ + 46.237174267, + 3.39703242692 + ], + "libelle_d_acheminement": "MARCENAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39703242692, + 46.237174267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9df236744fb4740033280a631273ac506dd53340", + "fields": { + "code_commune_insee": "03165", + "nom_de_la_commune": "LE MAYET DE MONTAGNE", + "code_postal": "03250", + "coordonnees_gps": [ + 46.0602181682, + 3.65546570851 + ], + "libelle_d_acheminement": "LE MAYET DE MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65546570851, + 46.0602181682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b48c96cccb574408c37ec51adef5220409cc086", + "fields": { + "code_commune_insee": "03167", + "nom_de_la_commune": "MAZIRAT", + "code_postal": "03420", + "coordonnees_gps": [ + 46.2185045574, + 2.55398563 + ], + "libelle_d_acheminement": "MAZIRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55398563, + 46.2185045574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d0b640d3854f09868e2e7ae8e6ae466f4dcc4df", + "fields": { + "code_commune_insee": "03174", + "nom_de_la_commune": "MOLLES", + "code_postal": "03300", + "coordonnees_gps": [ + 46.1150413617, + 3.55648495184 + ], + "libelle_d_acheminement": "MOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55648495184, + 46.1150413617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc2764842a9e33ca14155459ba33b92309631192", + "fields": { + "code_commune_insee": "03176", + "nom_de_la_commune": "MONETAY SUR ALLIER", + "code_postal": "03500", + "coordonnees_gps": [ + 46.3810175167, + 3.28932554471 + ], + "libelle_d_acheminement": "MONETAY SUR ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28932554471, + 46.3810175167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b6aa5ab23b195f8f6f681cfbac35fb6df6ffc0e", + "fields": { + "code_commune_insee": "03181", + "nom_de_la_commune": "MONTCOMBROUX LES MINES", + "code_postal": "03130", + "coordonnees_gps": [ + 46.3606934499, + 3.72808957144 + ], + "libelle_d_acheminement": "MONTCOMBROUX LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72808957144, + 46.3606934499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86d270cad078c3763747491a7b87f2605c9c25cb", + "fields": { + "code_commune_insee": "03189", + "nom_de_la_commune": "MONTVICQ", + "code_postal": "03170", + "coordonnees_gps": [ + 46.315678912, + 2.82223124184 + ], + "libelle_d_acheminement": "MONTVICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82223124184, + 46.315678912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a963421f33d556a35ea364faea2463e04fae4c62", + "fields": { + "code_commune_insee": "03202", + "nom_de_la_commune": "NOYANT D ALLIER", + "code_postal": "03210", + "coordonnees_gps": [ + 46.4796760503, + 3.11878325467 + ], + "libelle_d_acheminement": "NOYANT D ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11878325467, + 46.4796760503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a398cc453dcb7d60ae47eb75cf23e2facba116e0", + "fields": { + "code_commune_insee": "03208", + "nom_de_la_commune": "LE PIN", + "code_postal": "03130", + "coordonnees_gps": [ + 46.4222179747, + 3.88958660139 + ], + "libelle_d_acheminement": "LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88958660139, + 46.4222179747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2970acf9364a2b28461b31175548e8ee2f7c007f", + "fields": { + "code_commune_insee": "03213", + "nom_de_la_commune": "REUGNY", + "code_postal": "03190", + "coordonnees_gps": [ + 46.458404964, + 2.61328894387 + ], + "libelle_d_acheminement": "REUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61328894387, + 46.458404964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6a722d6a598d37638a1e3167a9a46099d73aab3", + "fields": { + "code_commune_insee": "03214", + "nom_de_la_commune": "ROCLES", + "code_postal": "03240", + "coordonnees_gps": [ + 46.4445146062, + 3.03677199137 + ], + "libelle_d_acheminement": "ROCLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03677199137, + 46.4445146062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f24ce5a105976761ba8cd524b0cbe8754d52b8b", + "fields": { + "code_commune_insee": "03219", + "nom_de_la_commune": "ST BONNET DE FOUR", + "code_postal": "03390", + "coordonnees_gps": [ + 46.314979417, + 2.90455342628 + ], + "libelle_d_acheminement": "ST BONNET DE FOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90455342628, + 46.314979417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50becee5f034aa246704598823e0e1bdedc97d73", + "fields": { + "code_commune_insee": "03224", + "nom_de_la_commune": "ST CLEMENT", + "code_postal": "03250", + "coordonnees_gps": [ + 46.0577534847, + 3.7219179861 + ], + "libelle_d_acheminement": "ST CLEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7219179861, + 46.0577534847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a66cce89e8f1841f7ef79ad38aeeb33f3a37ce1", + "fields": { + "code_commune_insee": "03229", + "nom_de_la_commune": "ST ENNEMOND", + "code_postal": "03400", + "coordonnees_gps": [ + 46.6808991637, + 3.40446807688 + ], + "libelle_d_acheminement": "ST ENNEMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40446807688, + 46.6808991637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "629b8c15d4e192c26d5853868585443bf8dd0a98", + "fields": { + "code_commune_insee": "03231", + "nom_de_la_commune": "ST FARGEOL", + "code_postal": "03420", + "coordonnees_gps": [ + 46.1343424286, + 2.63071732014 + ], + "libelle_d_acheminement": "ST FARGEOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63071732014, + 46.1343424286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1627598cd18f27971af9eb826879ae004504f5ea", + "fields": { + "code_commune_insee": "03233", + "nom_de_la_commune": "ST GENEST", + "code_postal": "03310", + "coordonnees_gps": [ + 46.2634149323, + 2.60320533651 + ], + "libelle_d_acheminement": "ST GENEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60320533651, + 46.2634149323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01c47b73c840ff24cddff038a36315cd6818316c", + "fields": { + "code_commune_insee": "03237", + "nom_de_la_commune": "ST GERMAIN DE SALLES", + "code_postal": "03140", + "coordonnees_gps": [ + 46.1871001813, + 3.22053975584 + ], + "libelle_d_acheminement": "ST GERMAIN DE SALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22053975584, + 46.1871001813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aca7b9e63196e313c330e209fb12a73bf721802", + "fields": { + "code_commune_insee": "03243", + "nom_de_la_commune": "ST MARCEL EN MURAT", + "code_postal": "03390", + "coordonnees_gps": [ + 46.3216708939, + 3.00484402977 + ], + "libelle_d_acheminement": "ST MARCEL EN MURAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00484402977, + 46.3216708939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5adb61d882dcdd7f0a828f026ebb0248f7b710d9", + "fields": { + "code_commune_insee": "03249", + "nom_de_la_commune": "ST PALAIS", + "code_postal": "03370", + "coordonnees_gps": [ + 46.4403223251, + 2.30568571701 + ], + "libelle_d_acheminement": "ST PALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30568571701, + 46.4403223251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff8362c2dd1a58bc91abcf41ae81e0fd4118dbea", + "fields": { + "code_commune_insee": "03251", + "nom_de_la_commune": "ST PLAISIR", + "code_postal": "03160", + "coordonnees_gps": [ + 46.6243818392, + 2.95587034653 + ], + "libelle_d_acheminement": "ST PLAISIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95587034653, + 46.6243818392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d631740d34ebf73d413b4adc9cad1ba5511f0e57", + "fields": { + "code_commune_insee": "03253", + "nom_de_la_commune": "ST POURCAIN SUR BESBRE", + "code_postal": "03290", + "coordonnees_gps": [ + 46.4817772858, + 3.64933142149 + ], + "libelle_d_acheminement": "ST POURCAIN SUR BESBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64933142149, + 46.4817772858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b580a4a792d1d3c883bfc888a2158c7de6a5447", + "fields": { + "code_commune_insee": "03254", + "nom_de_la_commune": "ST POURCAIN SUR SIOULE", + "code_postal": "03500", + "coordonnees_gps": [ + 46.3045094327, + 3.30537827054 + ], + "libelle_d_acheminement": "ST POURCAIN SUR SIOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30537827054, + 46.3045094327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fe71dbf98116a4aa7651f36af9f64a68ef1618f", + "fields": { + "code_commune_insee": "03255", + "nom_de_la_commune": "ST PRIEST D ANDELOT", + "code_postal": "03800", + "coordonnees_gps": [ + 46.0765718864, + 3.15433929793 + ], + "libelle_d_acheminement": "ST PRIEST D ANDELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15433929793, + 46.0765718864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8c510740d2d7dbfaae2d17be6b07c78cbb74ad5", + "fields": { + "code_commune_insee": "03261", + "nom_de_la_commune": "STE THERENCE", + "code_postal": "03420", + "coordonnees_gps": [ + 46.2433906142, + 2.57271161868 + ], + "libelle_d_acheminement": "STE THERENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57271161868, + 46.2433906142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e11b21e51978cf7bbdca186786ae86f27999d180", + "fields": { + "code_commune_insee": "03262", + "nom_de_la_commune": "ST VICTOR", + "code_postal": "03410", + "coordonnees_gps": [ + 46.3882767935, + 2.60941319336 + ], + "libelle_d_acheminement": "ST VICTOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60941319336, + 46.3882767935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ee9b92d33a14a3bdea4b0cac654f18da229e78f", + "fields": { + "code_commune_insee": "03277", + "nom_de_la_commune": "TARGET", + "code_postal": "03140", + "coordonnees_gps": [ + 46.2848407144, + 3.04794632227 + ], + "libelle_d_acheminement": "TARGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04794632227, + 46.2848407144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81f169f37a47f9258e76623634d425ff4b6ff9cb", + "fields": { + "code_commune_insee": "03283", + "nom_de_la_commune": "THIEL SUR ACOLIN", + "code_postal": "03230", + "coordonnees_gps": [ + 46.5311020411, + 3.57823760672 + ], + "libelle_d_acheminement": "THIEL SUR ACOLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57823760672, + 46.5311020411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fbd3c40e3926cafe5edafb482ba80d96e4459fb", + "fields": { + "code_commune_insee": "03285", + "nom_de_la_commune": "TORTEZAIS", + "code_postal": "03430", + "coordonnees_gps": [ + 46.4456252579, + 2.87340721419 + ], + "libelle_d_acheminement": "TORTEZAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87340721419, + 46.4456252579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdd18c28ad12bb359cc8ccb65a1b22bde275f6bd", + "fields": { + "code_commune_insee": "03288", + "nom_de_la_commune": "TREIGNAT", + "code_postal": "03380", + "coordonnees_gps": [ + 46.3483905337, + 2.3521991874 + ], + "libelle_d_acheminement": "TREIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3521991874, + 46.3483905337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "389752d4c24b49ed6b0d13551474f6c3cd78cb31", + "fields": { + "code_commune_insee": "03289", + "nom_de_la_commune": "TRETEAU", + "code_postal": "03220", + "coordonnees_gps": [ + 46.3677104422, + 3.51996970707 + ], + "libelle_d_acheminement": "TRETEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51996970707, + 46.3677104422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d8a0c02f225bbc64e605a441e4d9c595ef9f93a", + "fields": { + "code_commune_insee": "03292", + "nom_de_la_commune": "TRONGET", + "code_postal": "03240", + "coordonnees_gps": [ + 46.418633391, + 3.08862365583 + ], + "libelle_d_acheminement": "TRONGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08862365583, + 46.418633391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9ad4bbaa1100fc34f0b35f56f155a7d80731f94", + "fields": { + "code_commune_insee": "03294", + "nom_de_la_commune": "USSEL D ALLIER", + "code_postal": "03140", + "coordonnees_gps": [ + 46.2103626484, + 3.18945634007 + ], + "libelle_d_acheminement": "USSEL D ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18945634007, + 46.2103626484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b6b2a90effc40d6e181a1ccc4ffae8e1461945c", + "fields": { + "code_commune_insee": "03296", + "nom_de_la_commune": "VALIGNY", + "code_postal": "03360", + "coordonnees_gps": [ + 46.7156221865, + 2.82039123195 + ], + "libelle_d_acheminement": "VALIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82039123195, + 46.7156221865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6d8310dc7572da2d2fcc762f43006ba7a5917f8", + "fields": { + "code_commune_insee": "03298", + "nom_de_la_commune": "VARENNES SUR ALLIER", + "code_postal": "03150", + "coordonnees_gps": [ + 46.3170256578, + 3.40012828582 + ], + "libelle_d_acheminement": "VARENNES SUR ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40012828582, + 46.3170256578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96e41544d54fc3b0a89c02e351bf598437c67b48", + "fields": { + "code_commune_insee": "03300", + "nom_de_la_commune": "VAUMAS", + "code_postal": "03220", + "coordonnees_gps": [ + 46.4484082735, + 3.6241176484 + ], + "libelle_d_acheminement": "VAUMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6241176484, + 46.4484082735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "494c00ab41115fde09e17b1e1e16f28aaa4e0dc1", + "fields": { + "code_commune_insee": "03310", + "nom_de_la_commune": "VICHY", + "code_postal": "03200", + "coordonnees_gps": [ + 46.1300051383, + 3.42442081174 + ], + "libelle_d_acheminement": "VICHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42442081174, + 46.1300051383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19426a935c5c51ddd5acd006141fa18b02d2dcbd", + "fields": { + "code_commune_insee": "03311", + "nom_de_la_commune": "VICQ", + "code_postal": "03450", + "coordonnees_gps": [ + 46.1471274068, + 3.09596954152 + ], + "libelle_d_acheminement": "VICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09596954152, + 46.1471274068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80b27bfbccff02b7ea70499755eff967c7593b42", + "fields": { + "code_commune_insee": "03317", + "nom_de_la_commune": "VIPLAIX", + "code_postal": "03370", + "coordonnees_gps": [ + 46.461810965, + 2.36975422763 + ], + "libelle_d_acheminement": "VIPLAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36975422763, + 46.461810965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e7eca583c441a716bd42c7b958768ed45aceb6b", + "fields": { + "code_commune_insee": "03319", + "nom_de_la_commune": "VOUSSAC", + "code_postal": "03140", + "coordonnees_gps": [ + 46.3256833709, + 3.07336455653 + ], + "libelle_d_acheminement": "VOUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07336455653, + 46.3256833709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9a611b0480996b10202319ce9fef894bbd863de", + "fields": { + "code_commune_insee": "04019", + "nom_de_la_commune": "BARCELONNETTE", + "code_postal": "04400", + "coordonnees_gps": [ + 44.3785614205, + 6.65215089713 + ], + "libelle_d_acheminement": "BARCELONNETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65215089713, + 44.3785614205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93d23d94b09f455b46cfa406bb32783dbef4c592", + "fields": { + "code_commune_insee": "04021", + "nom_de_la_commune": "BARRAS", + "code_postal": "04380", + "coordonnees_gps": [ + 44.1006575617, + 6.09850212835 + ], + "libelle_d_acheminement": "BARRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09850212835, + 44.1006575617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75faaa6b437fda4036041763776db3da5c818b5c", + "fields": { + "ligne_5": "ASTOIN", + "code_commune_insee": "04023", + "libelle_d_acheminement": "BAYONS", + "code_postal": "04250", + "nom_de_la_commune": "BAYONS", + "coordonnees_gps": [ + 44.3249277264, + 6.17282537759 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17282537759, + 44.3249277264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "873d76ea1ea8e2c48c79a784103dcd0f5611ef44", + "fields": { + "ligne_5": "REYNIER", + "code_commune_insee": "04023", + "libelle_d_acheminement": "BAYONS", + "code_postal": "04250", + "nom_de_la_commune": "BAYONS", + "coordonnees_gps": [ + 44.3249277264, + 6.17282537759 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17282537759, + 44.3249277264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e162e397e2151dc972db36096d14f95a1a1b4cc", + "fields": { + "code_commune_insee": "04024", + "nom_de_la_commune": "BEAUJEU", + "code_postal": "04420", + "coordonnees_gps": [ + 44.2185950386, + 6.37119806932 + ], + "libelle_d_acheminement": "BEAUJEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37119806932, + 44.2185950386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a51882ce497a8c1cec8d38b8cab0b3509ba0a1db", + "fields": { + "ligne_5": "ST VINCENT LES FORTS", + "code_commune_insee": "04033", + "libelle_d_acheminement": "UBAYE SERRE PONCON", + "code_postal": "04340", + "nom_de_la_commune": "UBAYE SERRE PONCON", + "coordonnees_gps": [ + 44.4434662119, + 6.28924750363 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28924750363, + 44.4434662119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1661a00be5aaef18e824d0c5b7fbd02f464060b5", + "fields": { + "code_commune_insee": "04039", + "nom_de_la_commune": "CASTELLANE", + "code_postal": "04120", + "coordonnees_gps": [ + 43.8449862174, + 6.49029842016 + ], + "libelle_d_acheminement": "CASTELLANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49029842016, + 43.8449862174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d019e78f702631e9fb1cba84b376a78dee8f622b", + "fields": { + "code_commune_insee": "04042", + "nom_de_la_commune": "CASTELLET LES SAUSSES", + "code_postal": "04320", + "coordonnees_gps": [ + 44.0403038573, + 6.73450900533 + ], + "libelle_d_acheminement": "CASTELLET LES SAUSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73450900533, + 44.0403038573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77f83947ea392d6851189c15100702ac1b505cc4", + "fields": { + "code_commune_insee": "04045", + "nom_de_la_commune": "CERESTE", + "code_postal": "04280", + "coordonnees_gps": [ + 43.8503161664, + 5.58976926214 + ], + "libelle_d_acheminement": "CERESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58976926214, + 43.8503161664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20a42b9494e16f0f10f76fe0456ae61059cf7dfb", + "fields": { + "code_commune_insee": "04047", + "nom_de_la_commune": "CHAMPTERCIER", + "code_postal": "04660", + "coordonnees_gps": [ + 44.096935134, + 6.14456451427 + ], + "libelle_d_acheminement": "CHAMPTERCIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14456451427, + 44.096935134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "619508a80b7f5fa744ae057c09f28dd2d969c173", + "fields": { + "ligne_5": "ST AUBAN", + "code_commune_insee": "04049", + "libelle_d_acheminement": "CHATEAU ARNOUX ST AUBAN", + "code_postal": "04600", + "nom_de_la_commune": "CHATEAU ARNOUX ST AUBAN", + "coordonnees_gps": [ + 44.0854706133, + 5.99239535024 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99239535024, + 44.0854706133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e4495a08a3924350341ab83d3a02a7708c424f1", + "fields": { + "code_commune_insee": "04068", + "nom_de_la_commune": "DAUPHIN", + "code_postal": "04300", + "coordonnees_gps": [ + 43.8932434369, + 5.776452248 + ], + "libelle_d_acheminement": "DAUPHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.776452248, + 43.8932434369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61bd2dfa5a994a1d53739aa9d6229ca4840b8366", + "fields": { + "code_commune_insee": "04069", + "nom_de_la_commune": "DEMANDOLX", + "code_postal": "04120", + "coordonnees_gps": [ + 43.8698630954, + 6.57440592456 + ], + "libelle_d_acheminement": "DEMANDOLX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57440592456, + 43.8698630954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23bb9b1c63ed2a82700550336f08b1ac8015cb9a", + "fields": { + "code_commune_insee": "04072", + "nom_de_la_commune": "DRAIX", + "code_postal": "04420", + "coordonnees_gps": [ + 44.1299391525, + 6.37179977607 + ], + "libelle_d_acheminement": "DRAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37179977607, + 44.1299391525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d65bfc04bae328e713fe30b3d2118f232af58259", + "fields": { + "code_commune_insee": "04074", + "nom_de_la_commune": "ENTRAGES", + "code_postal": "04000", + "coordonnees_gps": [ + 44.0379332734, + 6.26880026038 + ], + "libelle_d_acheminement": "ENTRAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26880026038, + 44.0379332734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62b5568ed160e67dd1e1909e3758c3f2607a0805", + "fields": { + "code_commune_insee": "04075", + "nom_de_la_commune": "ENTREPIERRES", + "code_postal": "04200", + "coordonnees_gps": [ + 44.1956537173, + 6.02224124199 + ], + "libelle_d_acheminement": "ENTREPIERRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02224124199, + 44.1956537173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdd2c84791208982d76f05a1b3b9554f354dc5bd", + "fields": { + "code_commune_insee": "04077", + "nom_de_la_commune": "ENTREVENNES", + "code_postal": "04700", + "coordonnees_gps": [ + 43.9378972717, + 6.03380903148 + ], + "libelle_d_acheminement": "ENTREVENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03380903148, + 43.9378972717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "191f3b515369435c075e775befb7507ce073c590", + "fields": { + "code_commune_insee": "04087", + "nom_de_la_commune": "FONTIENNE", + "code_postal": "04230", + "coordonnees_gps": [ + 44.0068634181, + 5.79382501149 + ], + "libelle_d_acheminement": "FONTIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79382501149, + 44.0068634181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "510b17d5b7be92a1a0c2af6698810e1a17f8541a", + "fields": { + "code_commune_insee": "04088", + "nom_de_la_commune": "FORCALQUIER", + "code_postal": "04300", + "coordonnees_gps": [ + 43.9599082374, + 5.7882827572 + ], + "libelle_d_acheminement": "FORCALQUIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7882827572, + 43.9599082374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71b7fc597a895f0712e9e0fc3df7d763795e75db", + "fields": { + "ligne_5": "CHENERILLES", + "code_commune_insee": "04108", + "libelle_d_acheminement": "MALIJAI", + "code_postal": "04510", + "nom_de_la_commune": "MALIJAI", + "coordonnees_gps": [ + 44.0336660524, + 6.0504243737 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0504243737, + 44.0336660524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df93cd2619c2dd5501f4c08bcc0b41db5074d304", + "fields": { + "code_commune_insee": "04112", + "nom_de_la_commune": "MANOSQUE", + "code_postal": "04100", + "coordonnees_gps": [ + 43.8354040831, + 5.79106654173 + ], + "libelle_d_acheminement": "MANOSQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79106654173, + 43.8354040831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d412a40f46b79b2647b284cb7c684d5b69801f5e", + "fields": { + "code_commune_insee": "04115", + "nom_de_la_commune": "MEAILLES", + "code_postal": "04240", + "coordonnees_gps": [ + 44.0401459693, + 6.64532905257 + ], + "libelle_d_acheminement": "MEAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64532905257, + 44.0401459693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6da61e1a35d4e7721c416d922d46ae57c702db0d", + "fields": { + "code_commune_insee": "04122", + "nom_de_la_commune": "MIRABEAU", + "code_postal": "04510", + "coordonnees_gps": [ + 44.0562295958, + 6.08015931568 + ], + "libelle_d_acheminement": "MIRABEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08015931568, + 44.0562295958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96edc0f68f2025bb09fe65727d111a0e36cfa789", + "fields": { + "code_commune_insee": "04140", + "nom_de_la_commune": "LES OMERGUES", + "code_postal": "04200", + "coordonnees_gps": [ + 44.1527454808, + 5.5893705894 + ], + "libelle_d_acheminement": "LES OMERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5893705894, + 44.1527454808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75d604ce077066d7a8cff3a8f6113c8e27c358a2", + "fields": { + "code_commune_insee": "04144", + "nom_de_la_commune": "LA PALUD SUR VERDON", + "code_postal": "04120", + "coordonnees_gps": [ + 43.796648297, + 6.32708874551 + ], + "libelle_d_acheminement": "LA PALUD SUR VERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32708874551, + 43.796648297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52a9d964acdc078def1cc87c4a102ac3c1986ab8", + "fields": { + "ligne_5": "LES BONS ENFANTS", + "code_commune_insee": "04145", + "libelle_d_acheminement": "PEIPIN", + "code_postal": "04200", + "nom_de_la_commune": "PEIPIN", + "coordonnees_gps": [ + 44.1413026547, + 5.9437147381 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9437147381, + 44.1413026547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5b8777020e713d09ededb5c8452bd65f0d18372", + "fields": { + "ligne_5": "REVEL", + "code_commune_insee": "04161", + "libelle_d_acheminement": "MEOLANS REVEL", + "code_postal": "04340", + "nom_de_la_commune": "MEOLANS REVEL", + "coordonnees_gps": [ + 44.3714312017, + 6.49846404885 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49846404885, + 44.3714312017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e53372d08928bee93e79b59c0fc1aee2a7d9d2f", + "fields": { + "code_commune_insee": "04166", + "nom_de_la_commune": "RIEZ", + "code_postal": "04500", + "coordonnees_gps": [ + 43.8284587474, + 6.08237819985 + ], + "libelle_d_acheminement": "RIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08237819985, + 43.8284587474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c54871c4b36982f7f6efcdf5110ad2f7174ed484", + "fields": { + "code_commune_insee": "04167", + "nom_de_la_commune": "LA ROBINE SUR GALABRE", + "code_postal": "04000", + "coordonnees_gps": [ + 44.1927329945, + 6.23038435702 + ], + "libelle_d_acheminement": "LA ROBINE SUR GALABRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23038435702, + 44.1927329945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1705149e3d7a8624cbd114151db46083454ebc76", + "fields": { + "ligne_5": "AINAC", + "code_commune_insee": "04167", + "libelle_d_acheminement": "LA ROBINE SUR GALABRE", + "code_postal": "04000", + "nom_de_la_commune": "LA ROBINE SUR GALABRE", + "coordonnees_gps": [ + 44.1927329945, + 6.23038435702 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23038435702, + 44.1927329945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e22c11a3676fe8e856aeb737a7d3f619cfe9085", + "fields": { + "ligne_5": "LAMBERT", + "code_commune_insee": "04167", + "libelle_d_acheminement": "LA ROBINE SUR GALABRE", + "code_postal": "04000", + "nom_de_la_commune": "LA ROBINE SUR GALABRE", + "coordonnees_gps": [ + 44.1927329945, + 6.23038435702 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23038435702, + 44.1927329945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "059f93be867f4257b09940f549357ad2ad239939", + "fields": { + "ligne_5": "TANARON", + "code_commune_insee": "04167", + "libelle_d_acheminement": "LA ROBINE SUR GALABRE", + "code_postal": "04000", + "nom_de_la_commune": "LA ROBINE SUR GALABRE", + "coordonnees_gps": [ + 44.1927329945, + 6.23038435702 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23038435702, + 44.1927329945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3792e9b64159b74a16721106cb9e52c0d975ea46", + "fields": { + "code_commune_insee": "04171", + "nom_de_la_commune": "ROUGON", + "code_postal": "04120", + "coordonnees_gps": [ + 43.7966594802, + 6.39318145128 + ], + "libelle_d_acheminement": "ROUGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39318145128, + 43.7966594802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a048661c1ebe173bc096af04a66c7315849cb0b", + "fields": { + "code_commune_insee": "04184", + "nom_de_la_commune": "ST JURS", + "code_postal": "04410", + "coordonnees_gps": [ + 43.8990474204, + 6.19288088982 + ], + "libelle_d_acheminement": "ST JURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19288088982, + 43.8990474204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7edee310ae1aa1dc08d7646eec4e48ac7bcf80a9", + "fields": { + "code_commune_insee": "04190", + "nom_de_la_commune": "ST MARTIN LES EAUX", + "code_postal": "04300", + "coordonnees_gps": [ + 43.8719702944, + 5.74137178032 + ], + "libelle_d_acheminement": "ST MARTIN LES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74137178032, + 43.8719702944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27261eb3c2d9d7baf92534fd0bc59697ab5b1b50", + "fields": { + "ligne_5": "LE POIL", + "code_commune_insee": "04204", + "libelle_d_acheminement": "SENEZ", + "code_postal": "04270", + "nom_de_la_commune": "SENEZ", + "coordonnees_gps": [ + 43.9224978199, + 6.36903371255 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36903371255, + 43.9224978199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "789946757b886f9cc188d0df182a335a2c16f005", + "fields": { + "code_commune_insee": "04214", + "nom_de_la_commune": "TARTONNE", + "code_postal": "04330", + "coordonnees_gps": [ + 44.0784663763, + 6.3839310068 + ], + "libelle_d_acheminement": "TARTONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3839310068, + 44.0784663763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "838b981e72db29361f9e78c90a2e3f0a9faa33df", + "fields": { + "code_commune_insee": "04217", + "nom_de_la_commune": "THOARD", + "code_postal": "04380", + "coordonnees_gps": [ + 44.1473006003, + 6.12401298333 + ], + "libelle_d_acheminement": "THOARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12401298333, + 44.1473006003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2703a109a977ee7421912c30fdc6e6ddef935632", + "fields": { + "ligne_5": "FOURS", + "code_commune_insee": "04226", + "libelle_d_acheminement": "UVERNET FOURS", + "code_postal": "04400", + "nom_de_la_commune": "UVERNET FOURS", + "coordonnees_gps": [ + 44.3191132083, + 6.67028443403 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67028443403, + 44.3191132083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "349188c0c9b9527af52d4801da249737d4f2d85e", + "fields": { + "code_commune_insee": "04227", + "nom_de_la_commune": "VACHERES", + "code_postal": "04110", + "coordonnees_gps": [ + 43.9467491617, + 5.63529437 + ], + "libelle_d_acheminement": "VACHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63529437, + 43.9467491617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "480a7b3de861fad603e4dbcef7c70de86b427091", + "fields": { + "code_commune_insee": "04229", + "nom_de_la_commune": "VALBELLE", + "code_postal": "04200", + "coordonnees_gps": [ + 44.1371207692, + 5.87627669795 + ], + "libelle_d_acheminement": "VALBELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87627669795, + 44.1371207692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "271c22762915a24483bcf903af153a5b85e32783", + "fields": { + "code_commune_insee": "04237", + "nom_de_la_commune": "LE VERNET", + "code_postal": "04140", + "coordonnees_gps": [ + 44.2766068334, + 6.40297525512 + ], + "libelle_d_acheminement": "LE VERNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40297525512, + 44.2766068334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6997c51f1eeb781f36d07e71af2ac5cf9882ec42", + "fields": { + "code_commune_insee": "04245", + "nom_de_la_commune": "VOLX", + "code_postal": "04130", + "coordonnees_gps": [ + 43.8706676132, + 5.83153973779 + ], + "libelle_d_acheminement": "VOLX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83153973779, + 43.8706676132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c41726727370068b2552bcd9de42deade5de4ffb", + "fields": { + "code_commune_insee": "05004", + "nom_de_la_commune": "ANCELLE", + "code_postal": "05260", + "coordonnees_gps": [ + 44.6190703929, + 6.22962169969 + ], + "libelle_d_acheminement": "ANCELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22962169969, + 44.6190703929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "318351ef6b56bd4076d92e0ff805cde471f95fe9", + "fields": { + "code_commune_insee": "05022", + "nom_de_la_commune": "BREZIERS", + "code_postal": "05190", + "coordonnees_gps": [ + 44.4210530909, + 6.22281621001 + ], + "libelle_d_acheminement": "BREZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22281621001, + 44.4210530909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7573f4afe82079eb64592d86e6f2f209f9b18c6f", + "fields": { + "ligne_5": "MONTMORIN", + "code_commune_insee": "05024", + "libelle_d_acheminement": "VALDOULE", + "code_postal": "05150", + "nom_de_la_commune": "VALDOULE", + "coordonnees_gps": [ + 44.4677366709, + 5.50388863719 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50388863719, + 44.4677366709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42e636a782626aed838420bd1bd57dc91605298e", + "fields": { + "ligne_5": "STE MARIE", + "code_commune_insee": "05024", + "libelle_d_acheminement": "VALDOULE", + "code_postal": "05150", + "nom_de_la_commune": "VALDOULE", + "coordonnees_gps": [ + 44.4677366709, + 5.50388863719 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50388863719, + 44.4677366709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74f10eb3dd6b39b13a46a22280b00ed1ce763dcb", + "fields": { + "code_commune_insee": "05028", + "nom_de_la_commune": "CHABESTAN", + "code_postal": "05400", + "coordonnees_gps": [ + 44.4775755934, + 5.78305319582 + ], + "libelle_d_acheminement": "CHABESTAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78305319582, + 44.4775755934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fda1c8215cbd3aa13edd8f7f514afb7e99f68f11", + "fields": { + "code_commune_insee": "05044", + "nom_de_la_commune": "CREVOUX", + "code_postal": "05200", + "coordonnees_gps": [ + 44.5376065379, + 6.62470372696 + ], + "libelle_d_acheminement": "CREVOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62470372696, + 44.5376065379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "733a870d2071885f3b3d645ef7f947bf05bab7ec", + "fields": { + "code_commune_insee": "05047", + "nom_de_la_commune": "EOURRES", + "code_postal": "05300", + "coordonnees_gps": [ + 44.2138373403, + 5.72894553965 + ], + "libelle_d_acheminement": "EOURRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72894553965, + 44.2138373403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0ea756127a73c0be36b6dcccfcbfbd0a16f2e79", + "fields": { + "code_commune_insee": "05048", + "nom_de_la_commune": "L EPINE", + "code_postal": "05700", + "coordonnees_gps": [ + 44.4248796516, + 5.61094352039 + ], + "libelle_d_acheminement": "L EPINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61094352039, + 44.4248796516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52c2e461e74b9fc865abfd17f83d4d6cb59f874e", + "fields": { + "code_commune_insee": "05063", + "nom_de_la_commune": "LA GRAVE", + "code_postal": "05320", + "coordonnees_gps": [ + 45.0601102401, + 6.28406977587 + ], + "libelle_d_acheminement": "LA GRAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28406977587, + 45.0601102401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a92f8e1a19187c9ed58ea985860d41275b4f128", + "fields": { + "code_commune_insee": "05070", + "nom_de_la_commune": "LARAGNE MONTEGLIN", + "code_postal": "05300", + "coordonnees_gps": [ + 44.3340345431, + 5.81650957133 + ], + "libelle_d_acheminement": "LARAGNE MONTEGLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81650957133, + 44.3340345431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3189959bb8af41eb5e4dea1ab06fb1a7016f09a8", + "fields": { + "code_commune_insee": "05074", + "nom_de_la_commune": "LETTRET", + "code_postal": "05130", + "coordonnees_gps": [ + 44.4811639998, + 6.07258452754 + ], + "libelle_d_acheminement": "LETTRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07258452754, + 44.4811639998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c77c2206f01cd6ee43c60c92dace3ce6f9b4fc05", + "fields": { + "code_commune_insee": "05075", + "nom_de_la_commune": "MANTEYER", + "code_postal": "05400", + "coordonnees_gps": [ + 44.5333321119, + 5.94989667477 + ], + "libelle_d_acheminement": "MANTEYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94989667477, + 44.5333321119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe65a89d0336e628d92123499612a2c542a1f449", + "fields": { + "code_commune_insee": "05076", + "nom_de_la_commune": "MEREUIL", + "code_postal": "05700", + "coordonnees_gps": [ + 44.3839741469, + 5.71259098721 + ], + "libelle_d_acheminement": "MEREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71259098721, + 44.3839741469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82b127baa1ccb3ab547401e2040153f52b8d6e07", + "fields": { + "code_commune_insee": "05090", + "nom_de_la_commune": "LA MOTTE EN CHAMPSAUR", + "code_postal": "05500", + "coordonnees_gps": [ + 44.7407367523, + 6.12930149849 + ], + "libelle_d_acheminement": "LA MOTTE EN CHAMPSAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12930149849, + 44.7407367523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e513ddc2feba7f0ec938d0f7c62bcdae46c4b3a3", + "fields": { + "code_commune_insee": "05102", + "nom_de_la_commune": "LA PIARRE", + "code_postal": "05700", + "coordonnees_gps": [ + 44.4784087163, + 5.64803205429 + ], + "libelle_d_acheminement": "LA PIARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64803205429, + 44.4784087163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2756c2d60a9bf51696de2c06e7a52e5c7f3589ab", + "fields": { + "code_commune_insee": "05104", + "nom_de_la_commune": "POLIGNY", + "code_postal": "05500", + "coordonnees_gps": [ + 44.6848876675, + 6.03431860597 + ], + "libelle_d_acheminement": "POLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03431860597, + 44.6848876675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03ab24a14db0e33cf6eb9cd975601a8c1190d3ef", + "fields": { + "code_commune_insee": "05127", + "nom_de_la_commune": "ROUSSET", + "code_postal": "05190", + "coordonnees_gps": [ + 44.4843785512, + 6.2666913091 + ], + "libelle_d_acheminement": "ROUSSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2666913091, + 44.4843785512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b54c0d1ec689b3f2e280d1918a66f67e2f5f0bd4", + "fields": { + "ligne_5": "BENEVENT ET CHARBILLAC", + "code_commune_insee": "05132", + "libelle_d_acheminement": "ST BONNET EN CHAMPSAUR", + "code_postal": "05500", + "nom_de_la_commune": "ST BONNET EN CHAMPSAUR", + "coordonnees_gps": [ + 44.6823269908, + 6.10286050171 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10286050171, + 44.6823269908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eec92198dcf70e3a984d83aaff0149810534d09a", + "fields": { + "code_commune_insee": "05135", + "nom_de_la_commune": "STE COLOMBE", + "code_postal": "05700", + "coordonnees_gps": [ + 44.2889272211, + 5.66834974647 + ], + "libelle_d_acheminement": "STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66834974647, + 44.2889272211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56a0c9704a9140466a41817639df0654b97069c9", + "fields": { + "code_commune_insee": "05142", + "nom_de_la_commune": "ST FIRMIN", + "code_postal": "05800", + "coordonnees_gps": [ + 44.7934858148, + 6.02571058056 + ], + "libelle_d_acheminement": "ST FIRMIN EN VALGODEMARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02571058056, + 44.7934858148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e399c4eaaadb4337ba8f6d0f6cb3811341094be", + "fields": { + "code_commune_insee": "05156", + "nom_de_la_commune": "ST SAUVEUR", + "code_postal": "05200", + "coordonnees_gps": [ + 44.5365820455, + 6.52920301665 + ], + "libelle_d_acheminement": "ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52920301665, + 44.5365820455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99404b05d8b0dbb8feb25aabc1cfd6f1b0fd9c6d", + "fields": { + "code_commune_insee": "05159", + "nom_de_la_commune": "SALEON", + "code_postal": "05300", + "coordonnees_gps": [ + 44.3201551058, + 5.77527169353 + ], + "libelle_d_acheminement": "SALEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77527169353, + 44.3201551058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60bd45e50891f4c7cb91e86d5e9b13a207f2c4cf", + "fields": { + "code_commune_insee": "05169", + "nom_de_la_commune": "SORBIERS", + "code_postal": "05150", + "coordonnees_gps": [ + 44.3625387102, + 5.57325324553 + ], + "libelle_d_acheminement": "SORBIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57325324553, + 44.3625387102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1da87d0bb27df0a8d79ed2edc0e73070607719d", + "fields": { + "code_commune_insee": "05179", + "nom_de_la_commune": "VEYNES", + "code_postal": "05400", + "coordonnees_gps": [ + 44.5571529708, + 5.82286002514 + ], + "libelle_d_acheminement": "VEYNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82286002514, + 44.5571529708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a06fb8f05ebbc7505c5f7657f282949fd87351a5", + "fields": { + "code_commune_insee": "05183", + "nom_de_la_commune": "VILLAR ST PANCRACE", + "code_postal": "05100", + "coordonnees_gps": [ + 44.8395685825, + 6.65048294053 + ], + "libelle_d_acheminement": "VILLAR ST PANCRACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65048294053, + 44.8395685825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23abe2e72bc780b0263aac263f2ad270cc6073ad", + "fields": { + "ligne_5": "THORENC", + "code_commune_insee": "06003", + "libelle_d_acheminement": "ANDON", + "code_postal": "06750", + "nom_de_la_commune": "ANDON", + "coordonnees_gps": [ + 43.7769856778, + 6.82318647257 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82318647257, + 43.7769856778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8d699f58e95449bb51b6759284d68952abdee0f", + "fields": { + "ligne_5": "JUAN LES PINS", + "code_commune_insee": "06004", + "libelle_d_acheminement": "ANTIBES", + "code_postal": "06160", + "nom_de_la_commune": "ANTIBES", + "coordonnees_gps": [ + 43.587465146, + 7.10635418256 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10635418256, + 43.587465146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "783928bde4babaceb754e903833032cb5f715376", + "fields": { + "code_commune_insee": "06005", + "nom_de_la_commune": "ASCROS", + "code_postal": "06260", + "coordonnees_gps": [ + 43.9193423, + 7.01550684755 + ], + "libelle_d_acheminement": "ASCROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01550684755, + 43.9193423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "565d00e2e8315bf517ddc03019177087d66b90c4", + "fields": { + "code_commune_insee": "06010", + "nom_de_la_commune": "LE BAR SUR LOUP", + "code_postal": "06620", + "coordonnees_gps": [ + 43.6992943088, + 6.96272779051 + ], + "libelle_d_acheminement": "LE BAR SUR LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96272779051, + 43.6992943088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae17cfa8583cf40a600b3ea819e153d3d574a748", + "fields": { + "code_commune_insee": "06013", + "nom_de_la_commune": "BELVEDERE", + "code_postal": "06450", + "coordonnees_gps": [ + 44.0564872239, + 7.37383120022 + ], + "libelle_d_acheminement": "BELVEDERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37383120022, + 44.0564872239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caf26732cd7b23a9b1f7e3e602703b9ac7654eff", + "fields": { + "code_commune_insee": "06027", + "nom_de_la_commune": "CAGNES SUR MER", + "code_postal": "06800", + "coordonnees_gps": [ + 43.6715162078, + 7.15275703379 + ], + "libelle_d_acheminement": "CAGNES SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15275703379, + 43.6715162078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69a74ba8ca3ff973338f7ac99e4af7b1aec419a6", + "fields": { + "code_commune_insee": "06032", + "nom_de_la_commune": "CAP D AIL", + "code_postal": "06320", + "coordonnees_gps": [ + 43.7247392327, + 7.40161617522 + ], + "libelle_d_acheminement": "CAP D AIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40161617522, + 43.7247392327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbf91b93a3704a69dc78e3a52ecee1b248f11769", + "fields": { + "code_commune_insee": "06035", + "nom_de_la_commune": "CASTELLAR", + "code_postal": "06500", + "coordonnees_gps": [ + 43.8220566609, + 7.49891571145 + ], + "libelle_d_acheminement": "CASTELLAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49891571145, + 43.8220566609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b2b59026b3b14c9f865b50855be7cc1fe24cf3e", + "fields": { + "code_commune_insee": "06036", + "nom_de_la_commune": "CASTILLON", + "code_postal": "06500", + "coordonnees_gps": [ + 43.8361451105, + 7.46455247487 + ], + "libelle_d_acheminement": "CASTILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46455247487, + 43.8361451105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1f6ebe22162f1754efbecd6d1837c432d873bfa", + "fields": { + "code_commune_insee": "06039", + "nom_de_la_commune": "CHATEAUNEUF VILLEVIEILLE", + "code_postal": "06390", + "coordonnees_gps": [ + 43.7999098278, + 7.29412423176 + ], + "libelle_d_acheminement": "CHATEAUNEUF VILLEVIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29412423176, + 43.7999098278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75a19bc724763edbd57183af2e979ffa53784208", + "fields": { + "code_commune_insee": "06045", + "nom_de_la_commune": "COLLONGUES", + "code_postal": "06910", + "coordonnees_gps": [ + 43.8935981177, + 6.86383142444 + ], + "libelle_d_acheminement": "COLLONGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86383142444, + 43.8935981177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ddee365b8512be850bb650fcc7f475553c13020", + "fields": { + "code_commune_insee": "06056", + "nom_de_la_commune": "ENTRAUNES", + "code_postal": "06470", + "coordonnees_gps": [ + 44.2146960621, + 6.76292204018 + ], + "libelle_d_acheminement": "ENTRAUNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76292204018, + 44.2146960621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32278417ce93b2022c7f331766440c5e964130d3", + "fields": { + "ligne_5": "ESTEING", + "code_commune_insee": "06056", + "libelle_d_acheminement": "ENTRAUNES", + "code_postal": "06470", + "nom_de_la_commune": "ENTRAUNES", + "coordonnees_gps": [ + 44.2146960621, + 6.76292204018 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76292204018, + 44.2146960621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eafb31c5fbbd05497d578917318b40042f991d32", + "fields": { + "code_commune_insee": "06058", + "nom_de_la_commune": "ESCRAGNOLLES", + "code_postal": "06460", + "coordonnees_gps": [ + 43.7294033373, + 6.7833728891 + ], + "libelle_d_acheminement": "ESCRAGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7833728891, + 43.7294033373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60e5f55f89d183a4b6346c20e5a64cd9bb05b9d8", + "fields": { + "code_commune_insee": "06066", + "nom_de_la_commune": "GILETTE", + "code_postal": "06830", + "coordonnees_gps": [ + 43.8481962471, + 7.1613234113 + ], + "libelle_d_acheminement": "GILETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1613234113, + 43.8481962471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1c704b78e5d06ce1216634fd83de0f5d7029a4c", + "fields": { + "code_commune_insee": "06067", + "nom_de_la_commune": "GORBIO", + "code_postal": "06500", + "coordonnees_gps": [ + 43.7860281963, + 7.44603824995 + ], + "libelle_d_acheminement": "GORBIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44603824995, + 43.7860281963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3503b96d18044f3910f5d28bd9ba6056c29499ca", + "fields": { + "code_commune_insee": "06068", + "nom_de_la_commune": "GOURDON", + "code_postal": "06620", + "coordonnees_gps": [ + 43.7242493778, + 6.96356065093 + ], + "libelle_d_acheminement": "GOURDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96356065093, + 43.7242493778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0450f1d9d16b8e165dbfb8797ee9de65ed98a92a", + "fields": { + "ligne_5": "LE PLAN DE GRASSE", + "code_commune_insee": "06069", + "libelle_d_acheminement": "GRASSE", + "code_postal": "06130", + "nom_de_la_commune": "GRASSE", + "coordonnees_gps": [ + 43.655639428, + 6.93190508233 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93190508233, + 43.655639428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e11649df830467cf674158c08e862f006596bdc", + "fields": { + "code_commune_insee": "06070", + "nom_de_la_commune": "GREOLIERES", + "code_postal": "06620", + "coordonnees_gps": [ + 43.8070006506, + 6.93196496167 + ], + "libelle_d_acheminement": "GREOLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93196496167, + 43.8070006506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f14507176189b2eda616f92d549d7019c77c62e0", + "fields": { + "code_commune_insee": "06071", + "nom_de_la_commune": "GUILLAUMES", + "code_postal": "06470", + "coordonnees_gps": [ + 44.088068317, + 6.87493501534 + ], + "libelle_d_acheminement": "GUILLAUMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87493501534, + 44.088068317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fa1ef8924bebfdc9faef093c69317f5676216cf", + "fields": { + "code_commune_insee": "06073", + "nom_de_la_commune": "ISOLA", + "code_postal": "06420", + "coordonnees_gps": [ + 44.1872585336, + 7.07488062255 + ], + "libelle_d_acheminement": "ISOLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07488062255, + 44.1872585336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c812111d6c046f7b7371f65e09274ad2a3f2467", + "fields": { + "code_commune_insee": "06074", + "nom_de_la_commune": "LANTOSQUE", + "code_postal": "06450", + "coordonnees_gps": [ + 43.9706457549, + 7.30485730116 + ], + "libelle_d_acheminement": "LANTOSQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30485730116, + 43.9706457549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9398303f4babf9881de46391f8011968c3dfde02", + "fields": { + "code_commune_insee": "06078", + "nom_de_la_commune": "MALAUSSENE", + "code_postal": "06710", + "coordonnees_gps": [ + 43.9153232562, + 7.14112063451 + ], + "libelle_d_acheminement": "MALAUSSENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14112063451, + 43.9153232562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75a33176ded580fe9a5cc74d3fa11ab310745d0d", + "fields": { + "code_commune_insee": "06079", + "nom_de_la_commune": "MANDELIEU LA NAPOULE", + "code_postal": "06210", + "coordonnees_gps": [ + 43.5380510468, + 6.91808936542 + ], + "libelle_d_acheminement": "MANDELIEU LA NAPOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91808936542, + 43.5380510468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd0d9dd95f3e285517f523883a171f0272f98dce", + "fields": { + "code_commune_insee": "06083", + "nom_de_la_commune": "MENTON", + "code_postal": "06500", + "coordonnees_gps": [ + 43.7908233727, + 7.49365612374 + ], + "libelle_d_acheminement": "MENTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49365612374, + 43.7908233727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0ffffe649988afb06954f7bf9ab59fe2f7c39e1", + "fields": { + "code_commune_insee": "06089", + "nom_de_la_commune": "OPIO", + "code_postal": "06650", + "coordonnees_gps": [ + 43.6575610719, + 7.00860864158 + ], + "libelle_d_acheminement": "OPIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00860864158, + 43.6575610719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "616ac41faec49670071e3d0d1af7e7ba752ce304", + "fields": { + "code_commune_insee": "06090", + "nom_de_la_commune": "PEGOMAS", + "code_postal": "06580", + "coordonnees_gps": [ + 43.5865553156, + 6.92224837943 + ], + "libelle_d_acheminement": "PEGOMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92224837943, + 43.5865553156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaf87114b81c23bcb1bc6de236df0b770d5eb6de", + "fields": { + "code_commune_insee": "06092", + "nom_de_la_commune": "PEILLON", + "code_postal": "06440", + "coordonnees_gps": [ + 43.7727352898, + 7.3714797073 + ], + "libelle_d_acheminement": "PEILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3714797073, + 43.7727352898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bca80659efe88029d2742bd086a6c55aac6aa080", + "fields": { + "code_commune_insee": "06095", + "nom_de_la_commune": "PEYMEINADE", + "code_postal": "06530", + "coordonnees_gps": [ + 43.6305294544, + 6.88166520884 + ], + "libelle_d_acheminement": "PEYMEINADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88166520884, + 43.6305294544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86dd7cacd398f317ff6e0772b7453e70d4ffa6f6", + "fields": { + "code_commune_insee": "06110", + "nom_de_la_commune": "ROUBION", + "code_postal": "06420", + "coordonnees_gps": [ + 44.1085047639, + 7.02802973178 + ], + "libelle_d_acheminement": "ROUBION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02802973178, + 44.1085047639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09310819f011c016d5a6a8f51aeab056993151f3", + "fields": { + "code_commune_insee": "06113", + "nom_de_la_commune": "STE AGNES", + "code_postal": "06500", + "coordonnees_gps": [ + 43.8055344567, + 7.46128496982 + ], + "libelle_d_acheminement": "STE AGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46128496982, + 43.8055344567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec85f90c901be8ed4d38238266648050e76c66f8", + "fields": { + "code_commune_insee": "06118", + "nom_de_la_commune": "ST CEZAIRE SUR SIAGNE", + "code_postal": "06530", + "coordonnees_gps": [ + 43.6594259137, + 6.80329376165 + ], + "libelle_d_acheminement": "ST CEZAIRE SUR SIAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80329376165, + 43.6594259137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc55c0eac71094db7f4d9da8e13360fecebbc324", + "fields": { + "code_commune_insee": "06130", + "nom_de_la_commune": "ST VALLIER DE THIEY", + "code_postal": "06460", + "coordonnees_gps": [ + 43.696895033, + 6.85062748704 + ], + "libelle_d_acheminement": "ST VALLIER DE THIEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85062748704, + 43.696895033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8196610d47dc40997c84efce08085b2bbea667d6", + "fields": { + "code_commune_insee": "06135", + "nom_de_la_commune": "SIGALE", + "code_postal": "06910", + "coordonnees_gps": [ + 43.8757999129, + 6.96558618108 + ], + "libelle_d_acheminement": "SIGALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96558618108, + 43.8757999129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc245be1800dbdc6c8dfdf991d0c10cfbaa56715", + "fields": { + "code_commune_insee": "06138", + "nom_de_la_commune": "THEOULE SUR MER", + "code_postal": "06590", + "coordonnees_gps": [ + 43.4985345439, + 6.92965248383 + ], + "libelle_d_acheminement": "THEOULE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92965248383, + 43.4985345439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34ec974ea99a231ac00e2d510536c9bd64d58ab9", + "fields": { + "code_commune_insee": "06142", + "nom_de_la_commune": "TOUET DE L ESCARENE", + "code_postal": "06440", + "coordonnees_gps": [ + 43.8520343234, + 7.37799210413 + ], + "libelle_d_acheminement": "TOUET DE L ESCARENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37799210413, + 43.8520343234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31b56dbe732987cdb10b0dd5c15060510658d906", + "fields": { + "code_commune_insee": "06144", + "nom_de_la_commune": "LA TOUR", + "code_postal": "06420", + "coordonnees_gps": [ + 43.9626877314, + 7.19994914649 + ], + "libelle_d_acheminement": "LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19994914649, + 43.9626877314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b05d792233db121b941738c877655d3bfa7e44fc", + "fields": { + "code_commune_insee": "06145", + "nom_de_la_commune": "TOURETTE DU CHATEAU", + "code_postal": "06830", + "coordonnees_gps": [ + 43.8782752079, + 7.13734511498 + ], + "libelle_d_acheminement": "TOURETTE DU CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13734511498, + 43.8782752079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d62010c215f62da2272d08e32ae545c9489f2d5", + "fields": { + "code_commune_insee": "06147", + "nom_de_la_commune": "TOURRETTE LEVENS", + "code_postal": "06690", + "coordonnees_gps": [ + 43.7860737213, + 7.2725568209 + ], + "libelle_d_acheminement": "TOURRETTE LEVENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2725568209, + 43.7860737213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bd936d95fffc54772ffe6c7bd5eae052c2e9b1c", + "fields": { + "code_commune_insee": "06153", + "nom_de_la_commune": "VALDEBLORE", + "code_postal": "06420", + "coordonnees_gps": [ + 44.1127596533, + 7.19571891201 + ], + "libelle_d_acheminement": "VALDEBLORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19571891201, + 44.1127596533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e69195923e4be1b4753bdac72c1008955475203d", + "fields": { + "code_commune_insee": "06163", + "nom_de_la_commune": "TENDE", + "code_postal": "06430", + "coordonnees_gps": [ + 44.0997669286, + 7.54053179417 + ], + "libelle_d_acheminement": "TENDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54053179417, + 44.0997669286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f3074bb4274be73ac41def5c9916291df2a32d1", + "fields": { + "ligne_5": "ST DALMAS DE TENDE", + "code_commune_insee": "06163", + "libelle_d_acheminement": "TENDE", + "code_postal": "06430", + "nom_de_la_commune": "TENDE", + "coordonnees_gps": [ + 44.0997669286, + 7.54053179417 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54053179417, + 44.0997669286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98d43071dd4f314f74c60b90e4247363bced836a", + "fields": { + "code_commune_insee": "07015", + "nom_de_la_commune": "ARRAS SUR RHONE", + "code_postal": "07370", + "coordonnees_gps": [ + 45.1436776654, + 4.8036312124 + ], + "libelle_d_acheminement": "ARRAS SUR RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8036312124, + 45.1436776654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8373d84b2353ed5ac54d76264e909b72eafcd7bc", + "fields": { + "code_commune_insee": "07017", + "nom_de_la_commune": "LES ASSIONS", + "code_postal": "07140", + "coordonnees_gps": [ + 44.4254776855, + 4.1848933711 + ], + "libelle_d_acheminement": "LES ASSIONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1848933711, + 44.4254776855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "941ba1c221d4c34ba24b19bc5fc14b06bb3e1745", + "fields": { + "code_commune_insee": "07019", + "nom_de_la_commune": "AUBENAS", + "code_postal": "07200", + "coordonnees_gps": [ + 44.6102127084, + 4.39638981424 + ], + "libelle_d_acheminement": "AUBENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39638981424, + 44.6102127084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dd95a23018afe9535a51cdc3ca9189661198082", + "fields": { + "code_commune_insee": "07022", + "nom_de_la_commune": "BAIX", + "code_postal": "07210", + "coordonnees_gps": [ + 44.7063788805, + 4.75106497533 + ], + "libelle_d_acheminement": "BAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75106497533, + 44.7063788805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c512d422961fcda635094a35ffd5cbc5cb0dab7", + "fields": { + "code_commune_insee": "07024", + "nom_de_la_commune": "BANNE", + "code_postal": "07460", + "coordonnees_gps": [ + 44.3607782702, + 4.15113804507 + ], + "libelle_d_acheminement": "BANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15113804507, + 44.3607782702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5125f9cd8229bde2b329afdb665d521b054b8083", + "fields": { + "code_commune_insee": "07027", + "nom_de_la_commune": "BEAUCHASTEL", + "code_postal": "07800", + "coordonnees_gps": [ + 44.8294995047, + 4.79715382132 + ], + "libelle_d_acheminement": "BEAUCHASTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79715382132, + 44.8294995047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2a9782f5c59665b485e0c0ee9c912cff9a16453", + "fields": { + "ligne_5": "CASTELJAU", + "code_commune_insee": "07031", + "libelle_d_acheminement": "BERRIAS ET CASTELJAU", + "code_postal": "07460", + "nom_de_la_commune": "BERRIAS ET CASTELJAU", + "coordonnees_gps": [ + 44.3832302552, + 4.20749715425 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20749715425, + 44.3832302552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "342182f3ca5c3c6ab2fe8c73b752c56591b3aa88", + "fields": { + "code_commune_insee": "07042", + "nom_de_la_commune": "BOURG ST ANDEOL", + "code_postal": "07700", + "coordonnees_gps": [ + 44.3830866916, + 4.61398365069 + ], + "libelle_d_acheminement": "BOURG ST ANDEOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61398365069, + 44.3830866916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d04b90520f7a8d2c9f119535c46e90fd16c4b13", + "fields": { + "code_commune_insee": "07060", + "nom_de_la_commune": "CHATEAUNEUF DE VERNOUX", + "code_postal": "07240", + "coordonnees_gps": [ + 44.9249240478, + 4.64219110032 + ], + "libelle_d_acheminement": "CHATEAUNEUF DE VERNOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64219110032, + 44.9249240478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c79a345577de21adb06834d7323cb1705178d59", + "fields": { + "code_commune_insee": "07065", + "nom_de_la_commune": "CHIROLS", + "code_postal": "07380", + "coordonnees_gps": [ + 44.6879981327, + 4.2951862476 + ], + "libelle_d_acheminement": "CHIROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2951862476, + 44.6879981327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a606f4dad2890716ecca2abedc26c164ca102a9c", + "fields": { + "code_commune_insee": "07070", + "nom_de_la_commune": "CORNAS", + "code_postal": "07130", + "coordonnees_gps": [ + 44.9664601048, + 4.84063933956 + ], + "libelle_d_acheminement": "CORNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84063933956, + 44.9664601048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22308edde51ecea30ef3223521a02ffb0d1b9b95", + "fields": { + "code_commune_insee": "07071", + "nom_de_la_commune": "COUCOURON", + "code_postal": "07470", + "coordonnees_gps": [ + 44.7949192399, + 3.96166497009 + ], + "libelle_d_acheminement": "COUCOURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96166497009, + 44.7949192399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bac57fa00b2ace3867f3501a5bcc6c875ce5f5fd", + "fields": { + "code_commune_insee": "07074", + "nom_de_la_commune": "CREYSSEILLES", + "code_postal": "07000", + "coordonnees_gps": [ + 44.7598496931, + 4.53023781121 + ], + "libelle_d_acheminement": "CREYSSEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53023781121, + 44.7598496931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ceb88293fbb14027454fd7785cbe29921b37097", + "fields": { + "code_commune_insee": "07080", + "nom_de_la_commune": "DEVESSET", + "code_postal": "07320", + "coordonnees_gps": [ + 45.0660987902, + 4.39288168953 + ], + "libelle_d_acheminement": "DEVESSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39288168953, + 45.0660987902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "148d0e7a1c61eac9e949123271bf7b157db78bd5", + "fields": { + "code_commune_insee": "07082", + "nom_de_la_commune": "DORNAS", + "code_postal": "07160", + "coordonnees_gps": [ + 44.8519150741, + 4.35842422121 + ], + "libelle_d_acheminement": "DORNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35842422121, + 44.8519150741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0238cfdf26c6cbe1a5386d0d92e8d0635e6172f7", + "fields": { + "code_commune_insee": "07084", + "nom_de_la_commune": "ECLASSAN", + "code_postal": "07370", + "coordonnees_gps": [ + 45.1606533164, + 4.74888485543 + ], + "libelle_d_acheminement": "ECLASSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74888485543, + 45.1606533164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "749eac8b4787db71760cd3b606db669c24b7afce", + "fields": { + "code_commune_insee": "07086", + "nom_de_la_commune": "ETABLES", + "code_postal": "07300", + "coordonnees_gps": [ + 45.0948570024, + 4.73950529738 + ], + "libelle_d_acheminement": "ETABLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73950529738, + 45.0948570024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57350136f7903cebbb4bf0882849b0b1a107a11a", + "fields": { + "code_commune_insee": "07089", + "nom_de_la_commune": "FELINES", + "code_postal": "07340", + "coordonnees_gps": [ + 45.3160676288, + 4.72706276274 + ], + "libelle_d_acheminement": "FELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72706276274, + 45.3160676288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f876e18dd35dacd515bcae89933208dfd5bb1e21", + "fields": { + "code_commune_insee": "07096", + "nom_de_la_commune": "GLUIRAS", + "code_postal": "07190", + "coordonnees_gps": [ + 44.8455602063, + 4.52583208054 + ], + "libelle_d_acheminement": "GLUIRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52583208054, + 44.8455602063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cc3f3dde48eb50c42504eacc8290cdf7ef9d047", + "fields": { + "code_commune_insee": "07097", + "nom_de_la_commune": "GLUN", + "code_postal": "07300", + "coordonnees_gps": [ + 45.0070163516, + 4.82465206981 + ], + "libelle_d_acheminement": "GLUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82465206981, + 45.0070163516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb38dc62b5f21404a0513066f9380da5638bc08d", + "fields": { + "code_commune_insee": "07101", + "nom_de_la_commune": "GROSPIERRES", + "code_postal": "07120", + "coordonnees_gps": [ + 44.3930827383, + 4.28692737418 + ], + "libelle_d_acheminement": "GROSPIERRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28692737418, + 44.3930827383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fecc9e18df09f052333285d7a05ab030e76416d", + "fields": { + "ligne_5": "INTRES", + "code_commune_insee": "07103", + "libelle_d_acheminement": "ST JULIEN D INTRES", + "code_postal": "07320", + "nom_de_la_commune": "ST JULIEN D INTRES", + "coordonnees_gps": [ + 44.9864739922, + 4.3441511813 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3441511813, + 44.9864739922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "173e68f988e0717424f75ad73f8dde9d4faabeaa", + "fields": { + "code_commune_insee": "07104", + "nom_de_la_commune": "ISSAMOULENC", + "code_postal": "07190", + "coordonnees_gps": [ + 44.7883137241, + 4.45570599159 + ], + "libelle_d_acheminement": "ISSAMOULENC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45570599159, + 44.7883137241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66b6989275625d5c7eba4ff24ae3b726a152bf49", + "fields": { + "code_commune_insee": "07105", + "nom_de_la_commune": "ISSANLAS", + "code_postal": "07510", + "coordonnees_gps": [ + 44.7669383227, + 4.01543417126 + ], + "libelle_d_acheminement": "ISSANLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01543417126, + 44.7669383227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03a51cfda27109e765628b7ab2e4345f3bda0015", + "fields": { + "code_commune_insee": "07107", + "nom_de_la_commune": "JAUJAC", + "code_postal": "07380", + "coordonnees_gps": [ + 44.6298203979, + 4.23815139749 + ], + "libelle_d_acheminement": "JAUJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23815139749, + 44.6298203979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2469a4d5489dcc4a08bc680f011d71c5f6c2e5d5", + "fields": { + "code_commune_insee": "07109", + "nom_de_la_commune": "JOANNAS", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5725478202, + 4.24633374271 + ], + "libelle_d_acheminement": "JOANNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24633374271, + 44.5725478202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0723fc2e3ba7fb969032aad00bbb8b7a2a740f3", + "fields": { + "code_commune_insee": "07111", + "nom_de_la_commune": "JUVINAS", + "code_postal": "07600", + "coordonnees_gps": [ + 44.7043758122, + 4.3072836289 + ], + "libelle_d_acheminement": "JUVINAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3072836289, + 44.7043758122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4f1955f74d1bd6a68869b571eea9fed44e14468", + "fields": { + "code_commune_insee": "07126", + "nom_de_la_commune": "LAGORCE", + "code_postal": "07150", + "coordonnees_gps": [ + 44.4449016448, + 4.43141639823 + ], + "libelle_d_acheminement": "LAGORCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43141639823, + 44.4449016448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c92d704ae0460dfb5e1367510eb8d8375ac3834", + "fields": { + "code_commune_insee": "07137", + "nom_de_la_commune": "LAVILLATTE", + "code_postal": "07660", + "coordonnees_gps": [ + 44.7411283435, + 3.95196079179 + ], + "libelle_d_acheminement": "LAVILLATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95196079179, + 44.7411283435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80ad6902e24def37528d3044d4d2c4244d7cddbb", + "fields": { + "code_commune_insee": "07142", + "nom_de_la_commune": "LESPERON", + "code_postal": "07660", + "coordonnees_gps": [ + 44.7342873614, + 3.89547616799 + ], + "libelle_d_acheminement": "LESPERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89547616799, + 44.7342873614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "949e303201a9d65f600e2e33785a34d946fad9fa", + "fields": { + "code_commune_insee": "07145", + "nom_de_la_commune": "LUSSAS", + "code_postal": "07170", + "coordonnees_gps": [ + 44.6192177092, + 4.46630461903 + ], + "libelle_d_acheminement": "LUSSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46630461903, + 44.6192177092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eed5d0878560a1eec6e31cfdd2f883da40a5b04e", + "fields": { + "code_commune_insee": "07146", + "nom_de_la_commune": "LYAS", + "code_postal": "07000", + "coordonnees_gps": [ + 44.7568405764, + 4.59691440375 + ], + "libelle_d_acheminement": "LYAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59691440375, + 44.7568405764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5b103531db9c0d93fcf4df69fdc660334bb8cec", + "fields": { + "code_commune_insee": "07150", + "nom_de_la_commune": "MARIAC", + "code_postal": "07160", + "coordonnees_gps": [ + 44.8859638189, + 4.35337034088 + ], + "libelle_d_acheminement": "MARIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35337034088, + 44.8859638189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1875039898efacf8e6d27c44aafb832bbeb3adbe", + "fields": { + "code_commune_insee": "07156", + "nom_de_la_commune": "MEYRAS", + "code_postal": "07380", + "coordonnees_gps": [ + 44.677562906, + 4.26001410237 + ], + "libelle_d_acheminement": "MEYRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26001410237, + 44.677562906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8139592a41236f538f489f8d71799d28092a6983", + "fields": { + "code_commune_insee": "07158", + "nom_de_la_commune": "MEZILHAC", + "code_postal": "07530", + "coordonnees_gps": [ + 44.8068921216, + 4.34184721755 + ], + "libelle_d_acheminement": "MEZILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34184721755, + 44.8068921216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e91e669e82726ee0dca45a14de4989e5951dd52", + "fields": { + "code_commune_insee": "07188", + "nom_de_la_commune": "QUINTENAS", + "code_postal": "07290", + "coordonnees_gps": [ + 45.1922513246, + 4.69504598366 + ], + "libelle_d_acheminement": "QUINTENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69504598366, + 45.1922513246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "705f1be07fd36b457f8e80bcd1a517312c75b11e", + "fields": { + "code_commune_insee": "07198", + "nom_de_la_commune": "ROMPON", + "code_postal": "07800", + "coordonnees_gps": [ + 44.7787195427, + 4.73009856646 + ], + "libelle_d_acheminement": "ROMPON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73009856646, + 44.7787195427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "479ce98e6537a3c16fbbfc22ac593a414188e4c2", + "fields": { + "code_commune_insee": "07199", + "nom_de_la_commune": "ROSIERES", + "code_postal": "07260", + "coordonnees_gps": [ + 44.492135712, + 4.26203943269 + ], + "libelle_d_acheminement": "ROSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26203943269, + 44.492135712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e9675bceb5eda36ffdcd94612accf32b0ed6946", + "fields": { + "code_commune_insee": "07201", + "nom_de_la_commune": "RUOMS", + "code_postal": "07120", + "coordonnees_gps": [ + 44.4479030757, + 4.34786189328 + ], + "libelle_d_acheminement": "RUOMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34786189328, + 44.4479030757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf9067f95742474a7b778a34b8aa116e5560e3a1", + "fields": { + "code_commune_insee": "07202", + "nom_de_la_commune": "SABLIERES", + "code_postal": "07260", + "coordonnees_gps": [ + 44.5437864312, + 4.06325976737 + ], + "libelle_d_acheminement": "SABLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06325976737, + 44.5437864312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f1b29605855c858d84c5a4154710e9a7cb13df7", + "fields": { + "code_commune_insee": "07203", + "nom_de_la_commune": "SAGNES ET GOUDOULET", + "code_postal": "07450", + "coordonnees_gps": [ + 44.8014042397, + 4.215812246 + ], + "libelle_d_acheminement": "SAGNES ET GOUDOULET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.215812246, + 44.8014042397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70e6e0934d293ddfe52770d6df68fce9a107579f", + "fields": { + "code_commune_insee": "07204", + "nom_de_la_commune": "ST AGREVE", + "code_postal": "07320", + "coordonnees_gps": [ + 45.0052980637, + 4.41285687419 + ], + "libelle_d_acheminement": "ST AGREVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41285687419, + 45.0052980637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0442f5973c42e6b38dfdfd3f1e25980e24e45c5", + "fields": { + "code_commune_insee": "07213", + "nom_de_la_commune": "ST ANDRE LACHAMP", + "code_postal": "07230", + "coordonnees_gps": [ + 44.5075453223, + 4.15221275695 + ], + "libelle_d_acheminement": "ST ANDRE LACHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15221275695, + 44.5075453223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fde8413b666d1876a039ec26ea6c254f6ec80a70", + "fields": { + "code_commune_insee": "07215", + "nom_de_la_commune": "ST BARTHELEMY LE MEIL", + "code_postal": "07160", + "coordonnees_gps": [ + 44.884662739, + 4.47884532485 + ], + "libelle_d_acheminement": "ST BARTHELEMY LE MEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47884532485, + 44.884662739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3fa477507cfb471cc4f035120cf2ddf990d4ccd", + "fields": { + "code_commune_insee": "07216", + "nom_de_la_commune": "ST BARTHELEMY GROZON", + "code_postal": "07270", + "coordonnees_gps": [ + 44.9596196474, + 4.64950098004 + ], + "libelle_d_acheminement": "ST BARTHELEMY GROZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64950098004, + 44.9596196474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7ac8b286936016c965b909e6865b143b0c3297e", + "fields": { + "code_commune_insee": "07218", + "nom_de_la_commune": "ST BASILE", + "code_postal": "07270", + "coordonnees_gps": [ + 44.9490355283, + 4.56160011901 + ], + "libelle_d_acheminement": "ST BASILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56160011901, + 44.9490355283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e603437ce7db3fd6582dc40ef082cfe450b6b9a", + "fields": { + "code_commune_insee": "07229", + "nom_de_la_commune": "ST DIDIER SOUS AUBENAS", + "code_postal": "07200", + "coordonnees_gps": [ + 44.6117595327, + 4.42022719051 + ], + "libelle_d_acheminement": "ST DIDIER SOUS AUBENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42022719051, + 44.6117595327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd1eabd00eb3dcfd33159a81fee37f566b385ccc", + "fields": { + "code_commune_insee": "07231", + "nom_de_la_commune": "ST ETIENNE DE FONTBELLON", + "code_postal": "07200", + "coordonnees_gps": [ + 44.5985890529, + 4.37388980251 + ], + "libelle_d_acheminement": "ST ETIENNE DE FONTBELLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37388980251, + 44.5985890529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d077c0dc91bd6620aa002f6215c3b3f6ce072e2f", + "fields": { + "code_commune_insee": "07238", + "nom_de_la_commune": "ST GENEST DE BEAUZON", + "code_postal": "07230", + "coordonnees_gps": [ + 44.4451273836, + 4.18697019048 + ], + "libelle_d_acheminement": "ST GENEST DE BEAUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18697019048, + 44.4451273836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c75851833f904de027b22701eb573be611bfec9", + "fields": { + "code_commune_insee": "07243", + "nom_de_la_commune": "ST JACQUES D ATTICIEUX", + "code_postal": "07340", + "coordonnees_gps": [ + 45.3318263343, + 4.66333060833 + ], + "libelle_d_acheminement": "ST JACQUES D ATTICIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66333060833, + 45.3318263343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1ac58e6e5cf481e5c924b071ff1487b4d3bb741", + "fields": { + "code_commune_insee": "07251", + "nom_de_la_commune": "ST JOSEPH DES BANCS", + "code_postal": "07530", + "coordonnees_gps": [ + 44.748161488, + 4.41397525518 + ], + "libelle_d_acheminement": "ST JOSEPH DES BANCS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41397525518, + 44.748161488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "799d6eb86a8e5445e62948f5c406dbca8bb09582", + "fields": { + "code_commune_insee": "07254", + "nom_de_la_commune": "ST JULIEN DU SERRE", + "code_postal": "07200", + "coordonnees_gps": [ + 44.6600211072, + 4.40395881158 + ], + "libelle_d_acheminement": "ST JULIEN DU SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40395881158, + 44.6600211072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9791e65f332e3a2a399e72fb52e5ac02468f95e4", + "fields": { + "ligne_5": "ST LAURENT LES BAINS", + "code_commune_insee": "07262", + "libelle_d_acheminement": "ST LAURENT BAINS LAVAL D AURELLE", + "code_postal": "07590", + "nom_de_la_commune": "ST LAURENT BAINS LAVAL D AURELLE", + "coordonnees_gps": [ + 44.5971365641, + 3.95806929863 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95806929863, + 44.5971365641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "102f2931484fb8e851f2bda5725a3ff6041b955c", + "fields": { + "code_commune_insee": "07263", + "nom_de_la_commune": "ST LAURENT SOUS COIRON", + "code_postal": "07170", + "coordonnees_gps": [ + 44.6641637879, + 4.48470756924 + ], + "libelle_d_acheminement": "ST LAURENT SOUS COIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48470756924, + 44.6641637879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a049482755f2ce5da8f142e56eeae4a84dbd5436", + "fields": { + "code_commune_insee": "07264", + "nom_de_la_commune": "ST MARCEL D ARDECHE", + "code_postal": "07700", + "coordonnees_gps": [ + 44.3299965394, + 4.60656490626 + ], + "libelle_d_acheminement": "ST MARCEL D ARDECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60656490626, + 44.3299965394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca2adc923810c2645d89f394cb4fb43fbd6df154", + "fields": { + "code_commune_insee": "07274", + "nom_de_la_commune": "ST MAURICE EN CHALENCON", + "code_postal": "07190", + "coordonnees_gps": [ + 44.8548081951, + 4.58245400667 + ], + "libelle_d_acheminement": "ST MAURICE EN CHALENCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58245400667, + 44.8548081951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8836f01e4d44dd3dea2137dcc59a63285707ab6", + "fields": { + "code_commune_insee": "07276", + "nom_de_la_commune": "ST MICHEL D AURANCE", + "code_postal": "07160", + "coordonnees_gps": [ + 44.8987179716, + 4.45675877839 + ], + "libelle_d_acheminement": "ST MICHEL D AURANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45675877839, + 44.8987179716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11ba71c6a5178c2edc9c318baf8216f2530d24a4", + "fields": { + "code_commune_insee": "07279", + "nom_de_la_commune": "ST MONTAN", + "code_postal": "07220", + "coordonnees_gps": [ + 44.4341193457, + 4.63258472487 + ], + "libelle_d_acheminement": "ST MONTAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63258472487, + 44.4341193457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a28bc322f9cae4ae800ca280eab727169d274f22", + "fields": { + "code_commune_insee": "07283", + "nom_de_la_commune": "ST PIERRE LA ROCHE", + "code_postal": "07400", + "coordonnees_gps": [ + 44.6539287603, + 4.6218849184 + ], + "libelle_d_acheminement": "ST PIERRE LA ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6218849184, + 44.6539287603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad0bd948d27c842c709e51d48a671c839773f788", + "fields": { + "code_commune_insee": "07288", + "nom_de_la_commune": "ST PRIEST", + "code_postal": "07000", + "coordonnees_gps": [ + 44.7131469303, + 4.53562187216 + ], + "libelle_d_acheminement": "ST PRIEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53562187216, + 44.7131469303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f62edcf3b04a2e949c3e1d0073b4a45eec88d233", + "fields": { + "code_commune_insee": "07294", + "nom_de_la_commune": "ST SAUVEUR DE CRUZIERES", + "code_postal": "07460", + "coordonnees_gps": [ + 44.2949958385, + 4.25831849321 + ], + "libelle_d_acheminement": "ST SAUVEUR DE CRUZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25831849321, + 44.2949958385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "512de168ff312eda934a7ddb013ae420c79f7766", + "fields": { + "code_commune_insee": "07296", + "nom_de_la_commune": "ST SERNIN", + "code_postal": "07200", + "coordonnees_gps": [ + 44.5764544041, + 4.38197564257 + ], + "libelle_d_acheminement": "ST SERNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38197564257, + 44.5764544041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e0a0d167b931d60cfeb9a11de4fdbef8622fad6", + "fields": { + "code_commune_insee": "07303", + "nom_de_la_commune": "ST VINCENT DE DURFORT", + "code_postal": "07360", + "coordonnees_gps": [ + 44.7919043427, + 4.63828690293 + ], + "libelle_d_acheminement": "ST VINCENT DE DURFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63828690293, + 44.7919043427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d491a4be64fb3199f3fffc9f80a9aa91654d686", + "fields": { + "code_commune_insee": "07308", + "nom_de_la_commune": "SARRAS", + "code_postal": "07370", + "coordonnees_gps": [ + 45.1872505321, + 4.78407766188 + ], + "libelle_d_acheminement": "SARRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78407766188, + 45.1872505321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb83b2f1ca915091cfa4c5093446914c123e314d", + "fields": { + "code_commune_insee": "07310", + "nom_de_la_commune": "SAVAS", + "code_postal": "07430", + "coordonnees_gps": [ + 45.3013144956, + 4.67282946981 + ], + "libelle_d_acheminement": "SAVAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67282946981, + 45.3013144956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9ed891a67ac6d2eff036a33f3f19aee22d33c2f", + "fields": { + "code_commune_insee": "07311", + "nom_de_la_commune": "SCEAUTRES", + "code_postal": "07400", + "coordonnees_gps": [ + 44.6167012065, + 4.60776940667 + ], + "libelle_d_acheminement": "SCEAUTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60776940667, + 44.6167012065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1e9ccd12fd44bce1926ebf74180b786dc572b9e", + "fields": { + "code_commune_insee": "07325", + "nom_de_la_commune": "UCEL", + "code_postal": "07200", + "coordonnees_gps": [ + 44.6426743916, + 4.38805305163 + ], + "libelle_d_acheminement": "UCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38805305163, + 44.6426743916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bff559e26d5a49e4ca4e5f71ae56cf05b7e36c8", + "fields": { + "code_commune_insee": "07328", + "nom_de_la_commune": "VAGNAS", + "code_postal": "07150", + "coordonnees_gps": [ + 44.3596132039, + 4.34424564679 + ], + "libelle_d_acheminement": "VAGNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34424564679, + 44.3596132039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b9eec0492703e78088346ab83024e43ebaed1cf", + "fields": { + "code_commune_insee": "07332", + "nom_de_la_commune": "VALVIGNERES", + "code_postal": "07400", + "coordonnees_gps": [ + 44.5005207324, + 4.56110237736 + ], + "libelle_d_acheminement": "VALVIGNERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56110237736, + 44.5005207324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4364cbc40403de893d5b09a73bc3bbe7765d6bad", + "fields": { + "ligne_5": "CHASSAGNES", + "code_commune_insee": "07334", + "libelle_d_acheminement": "LES VANS", + "code_postal": "07140", + "nom_de_la_commune": "LES VANS", + "coordonnees_gps": [ + 44.392206287, + 4.11524168722 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11524168722, + 44.392206287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d2b1f2d77790aa66a8bcd9e008b3028780feb55", + "fields": { + "code_commune_insee": "07335", + "nom_de_la_commune": "VAUDEVANT", + "code_postal": "07410", + "coordonnees_gps": [ + 45.1081841616, + 4.60737715144 + ], + "libelle_d_acheminement": "VAUDEVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60737715144, + 45.1081841616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ad0b3152a85ae222d94a929b1146fcf898838a3", + "fields": { + "code_commune_insee": "07336", + "nom_de_la_commune": "VERNON", + "code_postal": "07260", + "coordonnees_gps": [ + 44.506232057, + 4.2261837868 + ], + "libelle_d_acheminement": "VERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2261837868, + 44.506232057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85ada3ceb76f2417035d8a62cfaef2fbb2522143", + "fields": { + "code_commune_insee": "07341", + "nom_de_la_commune": "VILLENEUVE DE BERG", + "code_postal": "07170", + "coordonnees_gps": [ + 44.549017078, + 4.50337369457 + ], + "libelle_d_acheminement": "VILLENEUVE DE BERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50337369457, + 44.549017078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9330cdd069acb3284ace8dd02ec213b88f47c616", + "fields": { + "code_commune_insee": "07345", + "nom_de_la_commune": "VION", + "code_postal": "07610", + "coordonnees_gps": [ + 45.1117422465, + 4.79854763187 + ], + "libelle_d_acheminement": "VION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79854763187, + 45.1117422465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd7ff14c1ea185a31ad1c2ec1009abbec13dd3a2", + "fields": { + "code_commune_insee": "08004", + "nom_de_la_commune": "AIRE", + "code_postal": "08190", + "coordonnees_gps": [ + 49.4707483815, + 4.16388872575 + ], + "libelle_d_acheminement": "AIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16388872575, + 49.4707483815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be3f195f2f89cdbb34bc7073b56a407dbae9170f", + "fields": { + "code_commune_insee": "08011", + "nom_de_la_commune": "ANCHAMPS", + "code_postal": "08500", + "coordonnees_gps": [ + 49.9247359313, + 4.66426745168 + ], + "libelle_d_acheminement": "ANCHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66426745168, + 49.9247359313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b617d946971184642bf5fead3f0d0cc062e1735", + "fields": { + "code_commune_insee": "08013", + "nom_de_la_commune": "ANGECOURT", + "code_postal": "08450", + "coordonnees_gps": [ + 49.6350718482, + 4.97725786194 + ], + "libelle_d_acheminement": "ANGECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97725786194, + 49.6350718482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7b701836e9b36e44a5d3267f83acd283cccfb2c", + "fields": { + "code_commune_insee": "08018", + "nom_de_la_commune": "ARDEUIL ET MONTFAUXELLES", + "code_postal": "08400", + "coordonnees_gps": [ + 49.26723401, + 4.70481330264 + ], + "libelle_d_acheminement": "ARDEUIL ET MONTFAUXELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70481330264, + 49.26723401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "755ed09030b8f56706f5a0c11ae6824aa33b3086", + "fields": { + "code_commune_insee": "08032", + "nom_de_la_commune": "AUSSONCE", + "code_postal": "08310", + "coordonnees_gps": [ + 49.3455509602, + 4.32720413528 + ], + "libelle_d_acheminement": "AUSSONCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32720413528, + 49.3455509602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32852fec636f85bf54d7cdb2bbe67280616b1af5", + "fields": { + "code_commune_insee": "08040", + "nom_de_la_commune": "LES AYVELLES", + "code_postal": "08000", + "coordonnees_gps": [ + 49.7217923857, + 4.75240985606 + ], + "libelle_d_acheminement": "LES AYVELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75240985606, + 49.7217923857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7118810f8bc274ca148863f9eae7da783a49a924", + "fields": { + "code_commune_insee": "08045", + "nom_de_la_commune": "BALLAY", + "code_postal": "08400", + "coordonnees_gps": [ + 49.4216971928, + 4.75197348184 + ], + "libelle_d_acheminement": "BALLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75197348184, + 49.4216971928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f79a36135e83f66cc81d06a4b7964cadecf61884", + "fields": { + "code_commune_insee": "08047", + "nom_de_la_commune": "BARBAISE", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6766851443, + 4.57966392629 + ], + "libelle_d_acheminement": "BARBAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57966392629, + 49.6766851443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2791144676f87887dd25693117c586e27748a672", + "fields": { + "code_commune_insee": "08056", + "nom_de_la_commune": "BEFFU ET LE MORTHOMME", + "code_postal": "08250", + "coordonnees_gps": [ + 49.372094938, + 4.89223564312 + ], + "libelle_d_acheminement": "BEFFU ET LE MORTHOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89223564312, + 49.372094938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f21f4266dd3a2a6bbe6024058fbc279a447aee0a", + "fields": { + "code_commune_insee": "08061", + "nom_de_la_commune": "LA BERLIERE", + "code_postal": "08240", + "coordonnees_gps": [ + 49.526668904, + 4.93724494551 + ], + "libelle_d_acheminement": "LA BERLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93724494551, + 49.526668904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3df10f0ed351564256f42e009dd1afcf4eeb66b", + "fields": { + "code_commune_insee": "08062", + "nom_de_la_commune": "BERTONCOURT", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5391943846, + 4.40140045221 + ], + "libelle_d_acheminement": "BERTONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40140045221, + 49.5391943846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c7032f09644e411d182e0543c66ddd78195bd9a", + "fields": { + "code_commune_insee": "08067", + "nom_de_la_commune": "BLAGNY", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6239121874, + 5.19807738578 + ], + "libelle_d_acheminement": "BLAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19807738578, + 49.6239121874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b964df157cd3d672f9d11d5eb8656bc92a96f93", + "fields": { + "code_commune_insee": "08070", + "nom_de_la_commune": "BLANZY LA SALONNAISE", + "code_postal": "08190", + "coordonnees_gps": [ + 49.4878479316, + 4.19048684048 + ], + "libelle_d_acheminement": "BLANZY LA SALONNAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19048684048, + 49.4878479316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d488434a4498bca5d9ada6dbfe824b2425cc3ca", + "fields": { + "code_commune_insee": "08077", + "nom_de_la_commune": "BOURCQ", + "code_postal": "08400", + "coordonnees_gps": [ + 49.3822218647, + 4.61799279484 + ], + "libelle_d_acheminement": "BOURCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61799279484, + 49.3822218647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc8b44e40ffa261349471e54b038c2b3942d48c6", + "fields": { + "code_commune_insee": "08090", + "nom_de_la_commune": "CARIGNAN", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6387329311, + 5.1718269254 + ], + "libelle_d_acheminement": "CARIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1718269254, + 49.6387329311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a81e0da75f6e3ca0d7c644071baaf67c0c36d249", + "fields": { + "code_commune_insee": "08092", + "nom_de_la_commune": "CAUROY", + "code_postal": "08310", + "coordonnees_gps": [ + 49.3512411409, + 4.45940865282 + ], + "libelle_d_acheminement": "CAUROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45940865282, + 49.3512411409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccc2e88f8d34791c1128233ffaf10a0c0668a42b", + "fields": { + "code_commune_insee": "08103", + "nom_de_la_commune": "CHARBOGNE", + "code_postal": "08130", + "coordonnees_gps": [ + 49.5061470622, + 4.59006670557 + ], + "libelle_d_acheminement": "CHARBOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59006670557, + 49.5061470622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f574e9aa73f46e79b287e0787b1060db1a451ffd", + "fields": { + "code_commune_insee": "08104", + "nom_de_la_commune": "CHARDENY", + "code_postal": "08400", + "coordonnees_gps": [ + 49.4194659277, + 4.59579314559 + ], + "libelle_d_acheminement": "CHARDENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59579314559, + 49.4194659277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc90e306958a9b03d23527ffea2f7f3acbb6ca78", + "fields": { + "code_commune_insee": "08105", + "nom_de_la_commune": "CHARLEVILLE MEZIERES", + "code_postal": "08000", + "coordonnees_gps": [ + 49.7752965803, + 4.71724655966 + ], + "libelle_d_acheminement": "CHARLEVILLE MEZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71724655966, + 49.7752965803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a3e90260825903adfa0b9611fa8ba4a100a6a31", + "fields": { + "ligne_5": "WADIMONT", + "code_commune_insee": "08113", + "libelle_d_acheminement": "CHAUMONT PORCIEN", + "code_postal": "08220", + "nom_de_la_commune": "CHAUMONT PORCIEN", + "coordonnees_gps": [ + 49.6486344865, + 4.23823742678 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23823742678, + 49.6486344865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d44ed3ad2b90999096fa32cd23e224347198cfe9", + "fields": { + "code_commune_insee": "08133", + "nom_de_la_commune": "COUCY", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5095800024, + 4.46207840046 + ], + "libelle_d_acheminement": "COUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46207840046, + 49.5095800024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feca549ff75925c9950ea035e6a0b0a6b7ed0ad2", + "fields": { + "code_commune_insee": "08148", + "nom_de_la_commune": "L ECAILLE", + "code_postal": "08300", + "coordonnees_gps": [ + 49.4095997981, + 4.20955430997 + ], + "libelle_d_acheminement": "L ECAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20955430997, + 49.4095997981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9213c9d1e2e4c3b8b189fa21c62ba4a0a36ce045", + "fields": { + "code_commune_insee": "08151", + "nom_de_la_commune": "ECORDAL", + "code_postal": "08130", + "coordonnees_gps": [ + 49.5343083794, + 4.58778435914 + ], + "libelle_d_acheminement": "ECORDAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58778435914, + 49.5343083794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1b7b2818428d3377c4ae4fda48885cb81c6c781", + "fields": { + "code_commune_insee": "08154", + "nom_de_la_commune": "ESTREBAY", + "code_postal": "08260", + "coordonnees_gps": [ + 49.8253440088, + 4.34568774297 + ], + "libelle_d_acheminement": "ESTREBAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34568774297, + 49.8253440088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f43faeb32bb40ce2977d3dd561780bc2f7bd27a", + "fields": { + "code_commune_insee": "08156", + "nom_de_la_commune": "ETEIGNIERES", + "code_postal": "08260", + "coordonnees_gps": [ + 49.8907338972, + 4.40306549202 + ], + "libelle_d_acheminement": "ETEIGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40306549202, + 49.8907338972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e39cbe809fe9a3b919d964e280619477719a623", + "fields": { + "code_commune_insee": "08162", + "nom_de_la_commune": "FAGNON", + "code_postal": "08090", + "coordonnees_gps": [ + 49.7325267992, + 4.61914614937 + ], + "libelle_d_acheminement": "FAGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61914614937, + 49.7325267992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d24bc23ddbc92f38f8d661113925f7efafae4e1", + "fields": { + "code_commune_insee": "08166", + "nom_de_la_commune": "FEPIN", + "code_postal": "08170", + "coordonnees_gps": [ + 50.0221616884, + 4.70723354036 + ], + "libelle_d_acheminement": "FEPIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70723354036, + 50.0221616884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15a2efad0114babb4e1417c5f50d1fdd83dd5e89", + "fields": { + "code_commune_insee": "08168", + "nom_de_la_commune": "LA FERTE SUR CHIERS", + "code_postal": "08370", + "coordonnees_gps": [ + 49.5723724698, + 5.24000841484 + ], + "libelle_d_acheminement": "LA FERTE SUR CHIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24000841484, + 49.5723724698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b810ecb3a54ec2ad2b1270d9c2bf609bba388090", + "fields": { + "ligne_5": "HAVYS", + "code_commune_insee": "08169", + "libelle_d_acheminement": "FLAIGNES HAVYS", + "code_postal": "08260", + "nom_de_la_commune": "FLAIGNES HAVYS", + "coordonnees_gps": [ + 49.8189516311, + 4.39912003911 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39912003911, + 49.8189516311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81ffcd10ba35b5c02a1ca9fc497a521b811fcd4d", + "fields": { + "code_commune_insee": "08170", + "nom_de_la_commune": "FLEIGNEUX", + "code_postal": "08200", + "coordonnees_gps": [ + 49.7761707649, + 4.96364089015 + ], + "libelle_d_acheminement": "FLEIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96364089015, + 49.7761707649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3eb2c9cdf2ab6d5c2b50156a71efb9da97e8d40d", + "fields": { + "code_commune_insee": "08173", + "nom_de_la_commune": "FLIZE", + "code_postal": "08160", + "coordonnees_gps": [ + 49.6952977524, + 4.77517346922 + ], + "libelle_d_acheminement": "FLIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77517346922, + 49.6952977524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea658ad1357260b21648b6eccf16f0d2d9b0cd7a", + "fields": { + "code_commune_insee": "08174", + "nom_de_la_commune": "FLOING", + "code_postal": "08200", + "coordonnees_gps": [ + 49.7233281136, + 4.93287278052 + ], + "libelle_d_acheminement": "FLOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93287278052, + 49.7233281136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52d106a0870909c6fb3fdbda8f905f2e1942027d", + "fields": { + "code_commune_insee": "08175", + "nom_de_la_commune": "FOISCHES", + "code_postal": "08600", + "coordonnees_gps": [ + 50.129087843, + 4.77469221045 + ], + "libelle_d_acheminement": "FOISCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77469221045, + 50.129087843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de000f21a94a5ea808c667fc6106083730c30e89", + "fields": { + "code_commune_insee": "08184", + "nom_de_la_commune": "FROMY", + "code_postal": "08370", + "coordonnees_gps": [ + 49.6013937108, + 5.25624601587 + ], + "libelle_d_acheminement": "FROMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25624601587, + 49.6013937108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89563d43406bec13b06b464c6a4befdf5d127d9f", + "fields": { + "code_commune_insee": "08187", + "nom_de_la_commune": "GERNELLE", + "code_postal": "08440", + "coordonnees_gps": [ + 49.7731869901, + 4.82389442529 + ], + "libelle_d_acheminement": "GERNELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82389442529, + 49.7731869901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4299e9bfbbf221b8c9f98299c45c1c6d1da53489", + "fields": { + "code_commune_insee": "08191", + "nom_de_la_commune": "GIVONNE", + "code_postal": "08200", + "coordonnees_gps": [ + 49.732476511, + 4.99727933761 + ], + "libelle_d_acheminement": "GIVONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99727933761, + 49.732476511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6704fc91cd8d7a3cdc8e0ff4240a4e5664ddbdc", + "fields": { + "code_commune_insee": "08196", + "nom_de_la_commune": "GRANDCHAMP", + "code_postal": "08270", + "coordonnees_gps": [ + 49.6525314481, + 4.40676539021 + ], + "libelle_d_acheminement": "GRANDCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40676539021, + 49.6525314481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ce0c90a95adc5e2605346626894f39f1122aa03", + "fields": { + "code_commune_insee": "08219", + "nom_de_la_commune": "HAUTEVILLE", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5827671359, + 4.2987122942 + ], + "libelle_d_acheminement": "HAUTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2987122942, + 49.5827671359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08657c12d47325474c799ef71a425d18f30563ed", + "fields": { + "code_commune_insee": "08230", + "nom_de_la_commune": "HOULDIZY", + "code_postal": "08090", + "coordonnees_gps": [ + 49.812785683, + 4.6695029327 + ], + "libelle_d_acheminement": "HOULDIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6695029327, + 49.812785683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "307cd446e0872847ac80a939ed2bbf9a58150222", + "fields": { + "code_commune_insee": "08232", + "nom_de_la_commune": "ILLY", + "code_postal": "08200", + "coordonnees_gps": [ + 49.7575218759, + 4.98043472837 + ], + "libelle_d_acheminement": "ILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98043472837, + 49.7575218759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8344b43bd4ed894ef2011228c34e4e210ccb1dc6", + "fields": { + "code_commune_insee": "08233", + "nom_de_la_commune": "IMECOURT", + "code_postal": "08240", + "coordonnees_gps": [ + 49.3711784415, + 4.97493982778 + ], + "libelle_d_acheminement": "IMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97493982778, + 49.3711784415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ead3b8ec244f8785d0b732be0f0d510b50670cdd", + "fields": { + "code_commune_insee": "08234", + "nom_de_la_commune": "INAUMONT", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5628562714, + 4.31902902428 + ], + "libelle_d_acheminement": "INAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31902902428, + 49.5628562714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd6c7bf9f051bd6432094a3e7dd569397f096115", + "fields": { + "code_commune_insee": "08242", + "nom_de_la_commune": "LAIFOUR", + "code_postal": "08800", + "coordonnees_gps": [ + 49.902088382, + 4.69565397804 + ], + "libelle_d_acheminement": "LAIFOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69565397804, + 49.902088382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cbd1ab9e2dd0fcdd6e3b63c44de715e00d40304", + "fields": { + "code_commune_insee": "08249", + "nom_de_la_commune": "LAVAL MORENCY", + "code_postal": "08150", + "coordonnees_gps": [ + 49.8301398821, + 4.49355605109 + ], + "libelle_d_acheminement": "LAVAL MORENCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49355605109, + 49.8301398821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e1a6067712de157936f551995fded92576ea828", + "fields": { + "code_commune_insee": "08272", + "nom_de_la_commune": "MARANWEZ", + "code_postal": "08460", + "coordonnees_gps": [ + 49.727693434, + 4.34150288978 + ], + "libelle_d_acheminement": "MARANWEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34150288978, + 49.727693434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42c2006a3d68840542db61c5b8dacecd51237f38", + "fields": { + "code_commune_insee": "08281", + "nom_de_la_commune": "MATTON ET CLEMENCY", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6763970622, + 5.22558942774 + ], + "libelle_d_acheminement": "MATTON ET CLEMENCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22558942774, + 49.6763970622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce78e6145e66c1c5fee7468343bca0b070c7df85", + "fields": { + "code_commune_insee": "08288", + "nom_de_la_commune": "MESMONT", + "code_postal": "08270", + "coordonnees_gps": [ + 49.6185115837, + 4.3990996122 + ], + "libelle_d_acheminement": "MESMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3990996122, + 49.6185115837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8742d5f1b19a9b2f72e3b4e4ab1722a975c2751d", + "fields": { + "code_commune_insee": "08293", + "nom_de_la_commune": "MOIRY", + "code_postal": "08370", + "coordonnees_gps": [ + 49.6001021932, + 5.27891887123 + ], + "libelle_d_acheminement": "MOIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27891887123, + 49.6001021932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a76590f5111b3a8f47b3587e7fc41b54f2c9117", + "fields": { + "code_commune_insee": "08298", + "nom_de_la_commune": "MONTCY NOTRE DAME", + "code_postal": "08090", + "coordonnees_gps": [ + 49.7906751202, + 4.74345986239 + ], + "libelle_d_acheminement": "MONTCY NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74345986239, + 49.7906751202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b3e8550b1a194fdfb6fcf559005469faf64ce24", + "fields": { + "ligne_5": "LES HAUTS BUTTES", + "code_commune_insee": "08302", + "libelle_d_acheminement": "MONTHERME", + "code_postal": "08800", + "nom_de_la_commune": "MONTHERME", + "coordonnees_gps": [ + 49.8995880396, + 4.74792062514 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74792062514, + 49.8995880396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b55b172253b3f2668cb45129601cb659e86a36c", + "fields": { + "code_commune_insee": "08304", + "nom_de_la_commune": "MONTIGNY SUR MEUSE", + "code_postal": "08170", + "coordonnees_gps": [ + 50.047712335, + 4.7107437226 + ], + "libelle_d_acheminement": "MONTIGNY SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7107437226, + 50.047712335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fe784ad37b4393bf255e5d687b91bff3c17dbe4", + "fields": { + "code_commune_insee": "08305", + "nom_de_la_commune": "MONTIGNY SUR VENCE", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6451389564, + 4.61254914109 + ], + "libelle_d_acheminement": "MONTIGNY SUR VENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61254914109, + 49.6451389564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04bc7b1bf8053e81dbe30670015f7a220d935ab7", + "fields": { + "code_commune_insee": "08306", + "nom_de_la_commune": "MONT LAURENT", + "code_postal": "08130", + "coordonnees_gps": [ + 49.4637340301, + 4.47834727509 + ], + "libelle_d_acheminement": "MONT LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47834727509, + 49.4637340301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd2a2d6ae0ab2ab1d3b12b3bc3fc9c3bd154754a", + "fields": { + "code_commune_insee": "08309", + "nom_de_la_commune": "MONT ST REMY", + "code_postal": "08310", + "coordonnees_gps": [ + 49.3867440492, + 4.4768822942 + ], + "libelle_d_acheminement": "MONT ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4768822942, + 49.3867440492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72c59cd7bd41d6aebb147053ec6ea3fb2c137d79", + "fields": { + "code_commune_insee": "08310", + "nom_de_la_commune": "MOURON", + "code_postal": "08250", + "coordonnees_gps": [ + 49.3152143572, + 4.78476402519 + ], + "libelle_d_acheminement": "MOURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78476402519, + 49.3152143572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46135995cac08ebfbf7651f7dd7c413832366184", + "fields": { + "code_commune_insee": "08321", + "nom_de_la_commune": "NEUVILLE DAY", + "code_postal": "08130", + "coordonnees_gps": [ + 49.5000423938, + 4.69190726788 + ], + "libelle_d_acheminement": "NEUVILLE DAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69190726788, + 49.5000423938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52fda9ab1e4a6c8fed4b1aa3f004e0fc5890fde3", + "fields": { + "code_commune_insee": "08322", + "nom_de_la_commune": "NEUVILLE LES THIS", + "code_postal": "08090", + "coordonnees_gps": [ + 49.7327847632, + 4.58984068094 + ], + "libelle_d_acheminement": "NEUVILLE LES THIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58984068094, + 49.7327847632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d2acb347777f3b9cc7102ff59098fe3b5e9b9c8", + "fields": { + "code_commune_insee": "08326", + "nom_de_la_commune": "NOUART", + "code_postal": "08240", + "coordonnees_gps": [ + 49.4505639742, + 5.05484805727 + ], + "libelle_d_acheminement": "NOUART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05484805727, + 49.4505639742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a6eceaa91c5de53101e41f98d8515b2bbcc510f", + "fields": { + "code_commune_insee": "08330", + "nom_de_la_commune": "NOVY CHEVRIERES", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5461151318, + 4.44233077955 + ], + "libelle_d_acheminement": "NOVY CHEVRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44233077955, + 49.5461151318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c0101e8577f42e834a766409de6ef4c2188eec3", + "fields": { + "code_commune_insee": "08332", + "nom_de_la_commune": "OCHES", + "code_postal": "08240", + "coordonnees_gps": [ + 49.5072452442, + 4.92861182903 + ], + "libelle_d_acheminement": "OCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92861182903, + 49.5072452442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a73accd7a59b2bd8c450aefffd420fa493c7085", + "fields": { + "ligne_5": "PRIMAT", + "code_commune_insee": "08333", + "libelle_d_acheminement": "OLIZY PRIMAT", + "code_postal": "08250", + "nom_de_la_commune": "OLIZY PRIMAT", + "coordonnees_gps": [ + 49.3578421825, + 4.78297338685 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78297338685, + 49.3578421825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d9b5c792def617757bd9341f7c53d3270502796", + "fields": { + "code_commune_insee": "08339", + "nom_de_la_commune": "PERTHES", + "code_postal": "08300", + "coordonnees_gps": [ + 49.4486431408, + 4.35514092983 + ], + "libelle_d_acheminement": "PERTHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35514092983, + 49.4486431408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e4a273f118c83365649058f685fbd0bcaf4f99b", + "fields": { + "code_commune_insee": "08342", + "nom_de_la_commune": "POURU AUX BOIS", + "code_postal": "08140", + "coordonnees_gps": [ + 49.7100198144, + 5.09834036842 + ], + "libelle_d_acheminement": "POURU AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09834036842, + 49.7100198144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33719a42df3fcf414d7ab2b2e55c919cedbffc37", + "fields": { + "code_commune_insee": "08343", + "nom_de_la_commune": "POURU ST REMY", + "code_postal": "08140", + "coordonnees_gps": [ + 49.6809685609, + 5.08867231139 + ], + "libelle_d_acheminement": "POURU ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08867231139, + 49.6809685609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76faee928201110b540de817aa8273ab443a3c11", + "fields": { + "ligne_5": "LA CERLEAU", + "code_commune_insee": "08344", + "libelle_d_acheminement": "PREZ", + "code_postal": "08290", + "nom_de_la_commune": "PREZ", + "coordonnees_gps": [ + 49.8014597717, + 4.36121089611 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36121089611, + 49.8014597717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a22b5cc4573995f1111e3338b3619b6865876c6c", + "fields": { + "code_commune_insee": "08347", + "nom_de_la_commune": "PUILLY ET CHARBEAUX", + "code_postal": "08370", + "coordonnees_gps": [ + 49.6363781013, + 5.27519284704 + ], + "libelle_d_acheminement": "PUILLY ET CHARBEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27519284704, + 49.6363781013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e959332e52e2ae505900de9ed36e1200e0da955", + "fields": { + "code_commune_insee": "08356", + "nom_de_la_commune": "REMAUCOURT", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6012128351, + 4.23209127771 + ], + "libelle_d_acheminement": "REMAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23209127771, + 49.6012128351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "474098c1b3c6b6985d9bba82cc04a12afa8ecf31", + "fields": { + "code_commune_insee": "08358", + "nom_de_la_commune": "REMILLY LES POTHEES", + "code_postal": "08150", + "coordonnees_gps": [ + 49.7839350894, + 4.54735597538 + ], + "libelle_d_acheminement": "REMILLY LES POTHEES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54735597538, + 49.7839350894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7396424f63e5d53a55b31a30e12ce84deee1011", + "fields": { + "code_commune_insee": "08365", + "nom_de_la_commune": "RIMOGNE", + "code_postal": "08150", + "coordonnees_gps": [ + 49.8387403616, + 4.53539067168 + ], + "libelle_d_acheminement": "RIMOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53539067168, + 49.8387403616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1d5091ee1897ab89eaddeea2e0eb9f02498e123", + "fields": { + "code_commune_insee": "08366", + "nom_de_la_commune": "ROCQUIGNY", + "code_postal": "08220", + "coordonnees_gps": [ + 49.7003603712, + 4.24698300901 + ], + "libelle_d_acheminement": "ROCQUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24698300901, + 49.7003603712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63e18e4b5d10596a19d7d4d9be9e7cfaefd75a72", + "fields": { + "code_commune_insee": "08367", + "nom_de_la_commune": "ROCROI", + "code_postal": "08230", + "coordonnees_gps": [ + 49.9315002925, + 4.55842430748 + ], + "libelle_d_acheminement": "ROCROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55842430748, + 49.9315002925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cef861f24b1639881a854238da8a00f89fa60d2", + "fields": { + "code_commune_insee": "08368", + "nom_de_la_commune": "ROIZY", + "code_postal": "08190", + "coordonnees_gps": [ + 49.4259330532, + 4.18557721616 + ], + "libelle_d_acheminement": "ROIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18557721616, + 49.4259330532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6aebea522dc503197c4d0e073b223f3dabb0795", + "fields": { + "ligne_5": "SERVION", + "code_commune_insee": "08370", + "libelle_d_acheminement": "ROUVROY SUR AUDRY", + "code_postal": "08150", + "nom_de_la_commune": "ROUVROY SUR AUDRY", + "coordonnees_gps": [ + 49.7853360056, + 4.50242620208 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50242620208, + 49.7853360056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e8580c98307b2c31f01f8f9cf87273d1fd458e5", + "fields": { + "code_commune_insee": "08383", + "nom_de_la_commune": "ST JUVIN", + "code_postal": "08250", + "coordonnees_gps": [ + 49.3375839286, + 4.95354630856 + ], + "libelle_d_acheminement": "ST JUVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95354630856, + 49.3375839286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a0649ecc491b9d195b160a57f688a538e69873a", + "fields": { + "code_commune_insee": "08384", + "nom_de_la_commune": "ST LAMBERT ET MONT DE JEUX", + "code_postal": "08130", + "coordonnees_gps": [ + 49.4980282741, + 4.62474617403 + ], + "libelle_d_acheminement": "ST LAMBERT ET MONT DE JEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62474617403, + 49.4980282741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51f1cd437bfdf4a2647c967373b3c174bcb571e6", + "fields": { + "code_commune_insee": "08386", + "nom_de_la_commune": "ST LOUP EN CHAMPAGNE", + "code_postal": "08300", + "coordonnees_gps": [ + 49.4528238096, + 4.21534946763 + ], + "libelle_d_acheminement": "ST LOUP EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21534946763, + 49.4528238096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8fd90351aa3fc08415a71664d777ab17b68e649", + "fields": { + "code_commune_insee": "08392", + "nom_de_la_commune": "ST MOREL", + "code_postal": "08400", + "coordonnees_gps": [ + 49.3388158737, + 4.69739675474 + ], + "libelle_d_acheminement": "ST MOREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69739675474, + 49.3388158737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6de2aa236d3f7db67f3e86914d649bfb93bb9c6", + "fields": { + "code_commune_insee": "08406", + "nom_de_la_commune": "SAVIGNY SUR AISNE", + "code_postal": "08400", + "coordonnees_gps": [ + 49.359523814, + 4.72150823362 + ], + "libelle_d_acheminement": "SAVIGNY SUR AISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72150823362, + 49.359523814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81fc1941f9bfd2c4a94bb3014fab386a9fe0c043", + "fields": { + "code_commune_insee": "08411", + "nom_de_la_commune": "SEMUY", + "code_postal": "08130", + "coordonnees_gps": [ + 49.4956881485, + 4.66294910211 + ], + "libelle_d_acheminement": "SEMUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66294910211, + 49.4956881485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dce91a866b0e20d6af724a07074758eabbf8cdf", + "fields": { + "ligne_5": "LIBRECY", + "code_commune_insee": "08419", + "libelle_d_acheminement": "SIGNY L ABBAYE", + "code_postal": "08460", + "nom_de_la_commune": "SIGNY L ABBAYE", + "coordonnees_gps": [ + 49.7029435011, + 4.40415204398 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40415204398, + 49.7029435011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a223a2ef4032ecfcd93652cdd02446e5ab84a7ba", + "fields": { + "ligne_5": "LA GRUERIE", + "code_commune_insee": "08420", + "libelle_d_acheminement": "SIGNY LE PETIT", + "code_postal": "08380", + "nom_de_la_commune": "SIGNY LE PETIT", + "coordonnees_gps": [ + 49.9309499097, + 4.2990463026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2990463026, + 49.9309499097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c689f01d9738a9e2b9620379499110c89ca6492a", + "fields": { + "code_commune_insee": "08428", + "nom_de_la_commune": "SORCY BAUTHEMONT", + "code_postal": "08270", + "coordonnees_gps": [ + 49.5413667574, + 4.53840369427 + ], + "libelle_d_acheminement": "SORCY BAUTHEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53840369427, + 49.5413667574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0af8afc49868ebbcdb6c6981830bcc4a76534daf", + "fields": { + "code_commune_insee": "08436", + "nom_de_la_commune": "TAILLETTE", + "code_postal": "08230", + "coordonnees_gps": [ + 49.9272427923, + 4.47480367257 + ], + "libelle_d_acheminement": "TAILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47480367257, + 49.9272427923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "415e50cc126738ffbde5814bd7c6ea51de47308b", + "fields": { + "ligne_5": "BARRICOURT", + "code_commune_insee": "08437", + "libelle_d_acheminement": "TAILLY", + "code_postal": "08240", + "nom_de_la_commune": "TAILLY", + "coordonnees_gps": [ + 49.4074530876, + 5.06834679927 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06834679927, + 49.4074530876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df0d3bb74d683570166f381eb0142da188f60686", + "fields": { + "code_commune_insee": "08440", + "nom_de_la_commune": "TARZY", + "code_postal": "08380", + "coordonnees_gps": [ + 49.8762495136, + 4.29660246007 + ], + "libelle_d_acheminement": "TARZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29660246007, + 49.8762495136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "783d872865b06896402762ebd1741d30dbfe694f", + "fields": { + "code_commune_insee": "08445", + "nom_de_la_commune": "THELONNE", + "code_postal": "08350", + "coordonnees_gps": [ + 49.6482212901, + 4.94566360048 + ], + "libelle_d_acheminement": "THELONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94566360048, + 49.6482212901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88adc49fce7d73b4917f027dd59e18c238e82899", + "fields": { + "code_commune_insee": "08446", + "nom_de_la_commune": "THENORGUES", + "code_postal": "08240", + "coordonnees_gps": [ + 49.4060946457, + 4.92137626366 + ], + "libelle_d_acheminement": "THENORGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92137626366, + 49.4060946457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad1bd146e29e925d3bc3e8789a2affae00c25f7f", + "fields": { + "code_commune_insee": "08457", + "nom_de_la_commune": "TOURNES", + "code_postal": "08090", + "coordonnees_gps": [ + 49.7992413246, + 4.63988652343 + ], + "libelle_d_acheminement": "TOURNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63988652343, + 49.7992413246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d8d5fb71a8470be339948f44d7ecbb16914afb1", + "fields": { + "code_commune_insee": "08463", + "nom_de_la_commune": "VAUX EN DIEULET", + "code_postal": "08240", + "coordonnees_gps": [ + 49.4785340396, + 4.9918664976 + ], + "libelle_d_acheminement": "VAUX EN DIEULET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9918664976, + 49.4785340396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfadf4dffeaa2bef24c1c2acf6b70c430a50a348", + "fields": { + "code_commune_insee": "08465", + "nom_de_la_commune": "VAUX LES RUBIGNY", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6904205323, + 4.18309988343 + ], + "libelle_d_acheminement": "VAUX LES RUBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18309988343, + 49.6904205323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23405f20c49679d19fe22d2e2245124927b5dec4", + "fields": { + "code_commune_insee": "08469", + "nom_de_la_commune": "VENDRESSE", + "code_postal": "08160", + "coordonnees_gps": [ + 49.6036580688, + 4.79161432829 + ], + "libelle_d_acheminement": "VENDRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79161432829, + 49.6036580688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4084e610425bda7754e6e29775296de5081ac41e", + "fields": { + "ligne_5": "LA CASSINE", + "code_commune_insee": "08469", + "libelle_d_acheminement": "VENDRESSE", + "code_postal": "08160", + "nom_de_la_commune": "VENDRESSE", + "coordonnees_gps": [ + 49.6036580688, + 4.79161432829 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79161432829, + 49.6036580688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9910d072878025b494f6f8bbe28e3b044e38b5b7", + "fields": { + "code_commune_insee": "08471", + "nom_de_la_commune": "VERRIERES", + "code_postal": "08390", + "coordonnees_gps": [ + 49.4959923626, + 4.88538309039 + ], + "libelle_d_acheminement": "VERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88538309039, + 49.4959923626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2627f058c0b016da12ff110be93be57584543a2e", + "fields": { + "code_commune_insee": "08472", + "nom_de_la_commune": "VIEL ST REMY", + "code_postal": "08270", + "coordonnees_gps": [ + 49.632572198, + 4.48367438059 + ], + "libelle_d_acheminement": "VIEL ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48367438059, + 49.632572198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e3e6fc41161921945f2a54acbd5e6532b2c4ce2", + "fields": { + "code_commune_insee": "08473", + "nom_de_la_commune": "VIEUX LES ASFELD", + "code_postal": "08190", + "coordonnees_gps": [ + 49.4510393454, + 4.10610399621 + ], + "libelle_d_acheminement": "VIEUX LES ASFELD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10610399621, + 49.4510393454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f120c22d70e08f93e15b930bf0b163cda4b71dd8", + "fields": { + "code_commune_insee": "08479", + "nom_de_la_commune": "VILLERS LE TOURNEUR", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6220295169, + 4.56406530841 + ], + "libelle_d_acheminement": "VILLERS LE TOURNEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56406530841, + 49.6220295169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9ef281842e4da7c122dab749775f2de69c556dd", + "fields": { + "code_commune_insee": "08481", + "nom_de_la_commune": "VILLERS SUR BAR", + "code_postal": "08350", + "coordonnees_gps": [ + 49.6817820293, + 4.85514229057 + ], + "libelle_d_acheminement": "VILLERS SUR BAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85514229057, + 49.6817820293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43bc1bdff8c31bfe68c39c082b65e78e25bda7ca", + "fields": { + "code_commune_insee": "08485", + "nom_de_la_commune": "VILLY", + "code_postal": "08370", + "coordonnees_gps": [ + 49.59384897, + 5.2214022788 + ], + "libelle_d_acheminement": "VILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2214022788, + 49.59384897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b8f68dfd14675d7f087106275bf6a3f866bcf61", + "fields": { + "ligne_5": "BLAISE", + "code_commune_insee": "08490", + "libelle_d_acheminement": "VOUZIERS", + "code_postal": "08400", + "nom_de_la_commune": "VOUZIERS", + "coordonnees_gps": [ + 49.4000316087, + 4.70126283768 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70126283768, + 49.4000316087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ad71bb17795156bd5d188d2500677e8a90f748d", + "fields": { + "code_commune_insee": "08491", + "nom_de_la_commune": "VRIGNE AUX BOIS", + "code_postal": "08330", + "coordonnees_gps": [ + 49.7370150528, + 4.85605381662 + ], + "libelle_d_acheminement": "VRIGNE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85605381662, + 49.7370150528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d1f32023059e687a8add14307ab9ea767fa8fb7", + "fields": { + "code_commune_insee": "08494", + "nom_de_la_commune": "WADELINCOURT", + "code_postal": "08200", + "coordonnees_gps": [ + 49.6805479174, + 4.93056331877 + ], + "libelle_d_acheminement": "WADELINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93056331877, + 49.6805479174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c4a36ab484e55ca2ecb746456e184f3c7d26a7c", + "fields": { + "code_commune_insee": "09002", + "nom_de_la_commune": "AIGUES VIVES", + "code_postal": "09600", + "coordonnees_gps": [ + 43.0006575328, + 1.87695638902 + ], + "libelle_d_acheminement": "AIGUES VIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87695638902, + 43.0006575328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f49e7a39a9cf685d72d8acd3ae2522e33d7067a0", + "fields": { + "code_commune_insee": "09003", + "nom_de_la_commune": "L AIGUILLON", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9097070011, + 1.90052351136 + ], + "libelle_d_acheminement": "L AIGUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90052351136, + 42.9097070011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e65b9d4d2cfa7b537541a8e80adcb28da5997e62", + "fields": { + "code_commune_insee": "09005", + "nom_de_la_commune": "ALEU", + "code_postal": "09320", + "coordonnees_gps": [ + 42.893742098, + 1.26749393485 + ], + "libelle_d_acheminement": "ALEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26749393485, + 42.893742098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "436e3007b27b1f9d9089a1d805c01484878645ed", + "fields": { + "code_commune_insee": "09006", + "nom_de_la_commune": "ALLIAT", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8159020056, + 1.58114167435 + ], + "libelle_d_acheminement": "ALLIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58114167435, + 42.8159020056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a01361dd091e5f1685d495a8de203c4c7d3bab9d", + "fields": { + "code_commune_insee": "09019", + "nom_de_la_commune": "ARTIGAT", + "code_postal": "09130", + "coordonnees_gps": [ + 43.1431527184, + 1.44685366225 + ], + "libelle_d_acheminement": "ARTIGAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44685366225, + 43.1431527184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b505577a40716f66121a5ea1bfb6d76c12932f8", + "fields": { + "code_commune_insee": "09031", + "nom_de_la_commune": "AXIAT", + "code_postal": "09250", + "coordonnees_gps": [ + 42.7997046069, + 1.76100321573 + ], + "libelle_d_acheminement": "AXIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76100321573, + 42.7997046069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b654e30ce2c878feb3257c930ea4dce4f7070c8", + "fields": { + "code_commune_insee": "09032", + "nom_de_la_commune": "AX LES THERMES", + "code_postal": "09110", + "coordonnees_gps": [ + 42.6873576342, + 1.81825994194 + ], + "libelle_d_acheminement": "AX LES THERMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81825994194, + 42.6873576342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cdd6f971852ea0cfb9de91b617940f25484745a", + "fields": { + "code_commune_insee": "09039", + "nom_de_la_commune": "LA BASTIDE DE BOUSIGNAC", + "code_postal": "09500", + "coordonnees_gps": [ + 43.0585487701, + 1.88443383803 + ], + "libelle_d_acheminement": "LA BASTIDE DE BOUSIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88443383803, + 43.0585487701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59f9abf8e527d73a87c51623d593c1eab8f0d0b9", + "fields": { + "code_commune_insee": "09041", + "nom_de_la_commune": "LA BASTIDE DU SALAT", + "code_postal": "09160", + "coordonnees_gps": [ + 43.0614872214, + 1.00017697542 + ], + "libelle_d_acheminement": "LA BASTIDE DU SALAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00017697542, + 43.0614872214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "946eda76cb8d82f4406535b7d2c89050ae2f8565", + "fields": { + "code_commune_insee": "09045", + "nom_de_la_commune": "BEDEILHAC ET AYNAT", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8795852019, + 1.56719798954 + ], + "libelle_d_acheminement": "BEDEILHAC ET AYNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56719798954, + 42.8795852019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c6228dbf16a08ebf2ee6f7f6c809fc6729912a4", + "fields": { + "ligne_5": "UCHENTEIN", + "code_commune_insee": "09062", + "libelle_d_acheminement": "BORDES UCHENTEIN", + "code_postal": "09800", + "nom_de_la_commune": "BORDES UCHENTEIN", + "coordonnees_gps": [ + 42.8335034576, + 1.03424218178 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03424218178, + 42.8335034576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a74b06e7c095ca7864ba2a70e7a218281b4fd233", + "fields": { + "code_commune_insee": "09065", + "nom_de_la_commune": "BOUSSENAC", + "code_postal": "09320", + "coordonnees_gps": [ + 42.9078454205, + 1.39109839522 + ], + "libelle_d_acheminement": "BOUSSENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39109839522, + 42.9078454205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48882f49ccf5aa34bfc7edf8bd2d3bdff2953314", + "fields": { + "code_commune_insee": "09073", + "nom_de_la_commune": "CAMARADE", + "code_postal": "09290", + "coordonnees_gps": [ + 43.0693773441, + 1.27737161361 + ], + "libelle_d_acheminement": "CAMARADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27737161361, + 43.0693773441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba7607a79d468e7ed1ea2d350cddaddba7d0d1ca", + "fields": { + "code_commune_insee": "09081", + "nom_de_la_commune": "LE CARLARET", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1307609911, + 1.69416376028 + ], + "libelle_d_acheminement": "LE CARLARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69416376028, + 43.1307609911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5868e7509127f34ff9405ac90de6c9d683613228", + "fields": { + "code_commune_insee": "09084", + "nom_de_la_commune": "CASTEX", + "code_postal": "09350", + "coordonnees_gps": [ + 43.1657585272, + 1.31957552098 + ], + "libelle_d_acheminement": "CASTEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31957552098, + 43.1657585272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0be6ff90fb11f488e488f3a4f81ad21b90310347", + "fields": { + "code_commune_insee": "09087", + "nom_de_la_commune": "CAUSSOU", + "code_postal": "09250", + "coordonnees_gps": [ + 42.7721552831, + 1.82193324504 + ], + "libelle_d_acheminement": "CAUSSOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82193324504, + 42.7721552831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "580e6150840dc65c10440686c4bf5f1d26d4f2e1", + "fields": { + "code_commune_insee": "09093", + "nom_de_la_commune": "CELLES", + "code_postal": "09000", + "coordonnees_gps": [ + 42.916897965, + 1.6969424831 + ], + "libelle_d_acheminement": "CELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6969424831, + 42.916897965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67762616da85e224ad69d24b227680b43d9d491a", + "fields": { + "code_commune_insee": "09099", + "nom_de_la_commune": "COS", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9801592841, + 1.56921939947 + ], + "libelle_d_acheminement": "COS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56921939947, + 42.9801592841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bca744312535cb96865d17092a953f97404e6cac", + "fields": { + "code_commune_insee": "09101", + "nom_de_la_commune": "COUSSA", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0646378158, + 1.68939869661 + ], + "libelle_d_acheminement": "COUSSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68939869661, + 43.0646378158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c38f87d6ffdf07d7ccc338a8a9991e303e0da853", + "fields": { + "ligne_5": "MERVIEL", + "code_commune_insee": "09107", + "libelle_d_acheminement": "DUN", + "code_postal": "09600", + "nom_de_la_commune": "DUN", + "coordonnees_gps": [ + 43.0256431764, + 1.79296928754 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79296928754, + 43.0256431764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9defd80248f9429592acdd52f98d2b826fc147e", + "fields": { + "code_commune_insee": "09113", + "nom_de_la_commune": "ERCE", + "code_postal": "09140", + "coordonnees_gps": [ + 42.8341376861, + 1.30310687762 + ], + "libelle_d_acheminement": "ERCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30310687762, + 42.8341376861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "042e636e2d95c27b3d600542ee1d198a04820f14", + "fields": { + "code_commune_insee": "09124", + "nom_de_la_commune": "LE FOSSAT", + "code_postal": "09130", + "coordonnees_gps": [ + 43.1796907844, + 1.41506357343 + ], + "libelle_d_acheminement": "LE FOSSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41506357343, + 43.1796907844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3140c143fcd1e00d63da6f53760e86b5b28e625b", + "fields": { + "code_commune_insee": "09143", + "nom_de_la_commune": "ILLIER ET LARAMADE", + "code_postal": "09220", + "coordonnees_gps": [ + 42.7879303453, + 1.54250853578 + ], + "libelle_d_acheminement": "ILLIER ET LARAMADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54250853578, + 42.7879303453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2339ad810ffea87fb7c17f6812012156f24b49e", + "fields": { + "code_commune_insee": "09165", + "nom_de_la_commune": "LESPARROU", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9276359247, + 1.93926031529 + ], + "libelle_d_acheminement": "LESPARROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93926031529, + 42.9276359247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9d95df09d7337b080a8a119336235ec761db6b4", + "fields": { + "code_commune_insee": "09169", + "nom_de_la_commune": "LIMBRASSAC", + "code_postal": "09600", + "coordonnees_gps": [ + 43.0110104704, + 1.84353239924 + ], + "libelle_d_acheminement": "LIMBRASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84353239924, + 43.0110104704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d833818a5ac101ab737a1963a482170ac43d5c3", + "fields": { + "code_commune_insee": "09174", + "nom_de_la_commune": "LOUBIERES", + "code_postal": "09000", + "coordonnees_gps": [ + 43.0097766189, + 1.59427619307 + ], + "libelle_d_acheminement": "LOUBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59427619307, + 43.0097766189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "555a437ab02affcd68d0d640c2ee33abfad83422", + "fields": { + "code_commune_insee": "09175", + "nom_de_la_commune": "LUDIES", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1204279792, + 1.71727869146 + ], + "libelle_d_acheminement": "LUDIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71727869146, + 43.1204279792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c9a1f025de0456609b6bc1c784f77c765950d2c", + "fields": { + "code_commune_insee": "09184", + "nom_de_la_commune": "MAUVEZIN DE STE CROIX", + "code_postal": "09230", + "coordonnees_gps": [ + 43.0768014168, + 1.23243008757 + ], + "libelle_d_acheminement": "MAUVEZIN DE STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23243008757, + 43.0768014168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "034da617962e2fe660bcabc1a595159373cb2d46", + "fields": { + "code_commune_insee": "09188", + "nom_de_la_commune": "MERCUS GARRABET", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8795171828, + 1.6442180232 + ], + "libelle_d_acheminement": "MERCUS GARRABET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6442180232, + 42.8795171828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5b26eec98ce2393cc1d3d0677a56e510481a6b6", + "fields": { + "code_commune_insee": "09189", + "nom_de_la_commune": "MERENS LES VALS", + "code_postal": "09110", + "coordonnees_gps": [ + 42.6279300711, + 1.83436205641 + ], + "libelle_d_acheminement": "MERENS LES VALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83436205641, + 42.6279300711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6de0209965de0f313ff55e7cc0230926abf4ef9", + "fields": { + "code_commune_insee": "09196", + "nom_de_la_commune": "MONTAGAGNE", + "code_postal": "09240", + "coordonnees_gps": [ + 42.9638469564, + 1.41313214864 + ], + "libelle_d_acheminement": "MONTAGAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41313214864, + 42.9638469564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c7fa81719c9e3d811b36a909218383697904527", + "fields": { + "code_commune_insee": "09198", + "nom_de_la_commune": "MONTARDIT", + "code_postal": "09230", + "coordonnees_gps": [ + 43.0695601112, + 1.18585733449 + ], + "libelle_d_acheminement": "MONTARDIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18585733449, + 43.0695601112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0305490d172d56611dc2ede4b8aa4db3ca6b0056", + "fields": { + "code_commune_insee": "09203", + "nom_de_la_commune": "MONTELS", + "code_postal": "09240", + "coordonnees_gps": [ + 43.0059500308, + 1.46985998541 + ], + "libelle_d_acheminement": "MONTELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46985998541, + 43.0059500308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d53c8981b1104e0da325f19083f0efa2675a82b", + "fields": { + "code_commune_insee": "09214", + "nom_de_la_commune": "MOULIS", + "code_postal": "09200", + "coordonnees_gps": [ + 42.9438845213, + 1.09852869482 + ], + "libelle_d_acheminement": "MOULIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09852869482, + 42.9438845213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e68bacefec87c507698d89976bd3438563727379", + "fields": { + "code_commune_insee": "09234", + "nom_de_la_commune": "PRADIERES", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9611572235, + 1.65602192048 + ], + "libelle_d_acheminement": "PRADIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65602192048, + 42.9611572235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05faf632f16907764ab71818a7083c655cb801e4", + "fields": { + "code_commune_insee": "09238", + "nom_de_la_commune": "LES PUJOLS", + "code_postal": "09100", + "coordonnees_gps": [ + 43.0917243273, + 1.71845001991 + ], + "libelle_d_acheminement": "LES PUJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71845001991, + 43.0917243273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70a95298b2c69230ebfe5e4d34a3aab35bc99ffb", + "fields": { + "code_commune_insee": "09239", + "nom_de_la_commune": "QUERIGUT", + "code_postal": "09460", + "coordonnees_gps": [ + 42.6833720456, + 2.11436748471 + ], + "libelle_d_acheminement": "QUERIGUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11436748471, + 42.6833720456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3d95c3095bcb3534cb481176577700168c71706", + "fields": { + "code_commune_insee": "09251", + "nom_de_la_commune": "ROUMENGOUX", + "code_postal": "09500", + "coordonnees_gps": [ + 43.0761211234, + 1.92438263558 + ], + "libelle_d_acheminement": "ROUMENGOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92438263558, + 43.0761211234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "762edba81b70e7a6da47e79a7138b9559fcd9b5f", + "fields": { + "code_commune_insee": "09254", + "nom_de_la_commune": "ST AMADOU", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1112959391, + 1.71491289388 + ], + "libelle_d_acheminement": "ST AMADOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71491289388, + 43.1112959391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36ed4bf82b4e779aad5d1e6301f9c61a3c470331", + "fields": { + "code_commune_insee": "09255", + "nom_de_la_commune": "ST AMANS", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1595834502, + 1.5479581856 + ], + "libelle_d_acheminement": "ST AMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5479581856, + 43.1595834502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00f2eccc296e7e357054503c4bd2c7d6b715a83e", + "fields": { + "code_commune_insee": "09258", + "nom_de_la_commune": "ST FELIX DE RIEUTORD", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0441550256, + 1.66977441855 + ], + "libelle_d_acheminement": "ST FELIX DE RIEUTORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66977441855, + 43.0441550256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e8045c375a31d1a516e4d3c236878a76428a915", + "fields": { + "code_commune_insee": "09260", + "nom_de_la_commune": "STE FOI", + "code_postal": "09500", + "coordonnees_gps": [ + 43.1257603127, + 1.9172086969 + ], + "libelle_d_acheminement": "STE FOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9172086969, + 43.1257603127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3877ac3066a194444676a687429ed61b6c26e50e", + "fields": { + "code_commune_insee": "09261", + "nom_de_la_commune": "ST GIRONS", + "code_postal": "09200", + "coordonnees_gps": [ + 42.9752923045, + 1.15326595533 + ], + "libelle_d_acheminement": "ST GIRONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15326595533, + 42.9752923045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c93e9032e165ff8dae27a8c52b9ad2b334590901", + "fields": { + "code_commune_insee": "09268", + "nom_de_la_commune": "ST LIZIER", + "code_postal": "09190", + "coordonnees_gps": [ + 42.9998808556, + 1.12929754476 + ], + "libelle_d_acheminement": "ST LIZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12929754476, + 42.9998808556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e72078f2e0f4da37abc4a691f3a57b0d43e21436", + "fields": { + "code_commune_insee": "09269", + "nom_de_la_commune": "ST MARTIN DE CARALP", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9919399277, + 1.53796781616 + ], + "libelle_d_acheminement": "ST MARTIN DE CARALP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53796781616, + 42.9919399277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3399c3743249c65c1049e6a2d29d8fbc37a696aa", + "fields": { + "code_commune_insee": "09279", + "nom_de_la_commune": "SALSEIN", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9042685919, + 1.00165723674 + ], + "libelle_d_acheminement": "SALSEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00165723674, + 42.9042685919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a0e8aedfd98eccd42f5029296e3a1fd75b12453", + "fields": { + "ligne_5": "PRAT COMMUNAL", + "code_commune_insee": "09280", + "libelle_d_acheminement": "SAURAT", + "code_postal": "09400", + "nom_de_la_commune": "SAURAT", + "coordonnees_gps": [ + 42.883738441, + 1.50479848751 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50479848751, + 42.883738441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b90b3ca06e8a270a73dfbb1d6d6b5f5a72f4ee3", + "fields": { + "code_commune_insee": "09284", + "nom_de_la_commune": "SEGURA", + "code_postal": "09120", + "coordonnees_gps": [ + 43.032230727, + 1.69275443805 + ], + "libelle_d_acheminement": "SEGURA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69275443805, + 43.032230727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "000fc469e67eaf645513edbee9e6b8dc0c0d2fe1", + "fields": { + "code_commune_insee": "09290", + "nom_de_la_commune": "SENTEIN", + "code_postal": "09800", + "coordonnees_gps": [ + 42.8358878297, + 0.920341995173 + ], + "libelle_d_acheminement": "SENTEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.920341995173, + 42.8358878297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e3dec53346b67788e86204e019bf528880daebd", + "fields": { + "code_commune_insee": "09291", + "nom_de_la_commune": "SENTENAC D OUST", + "code_postal": "09140", + "coordonnees_gps": [ + 42.8662042438, + 1.14021822329 + ], + "libelle_d_acheminement": "SENTENAC D OUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14021822329, + 42.8662042438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "623bf5d4c40966a5bb014bfe8ada62c06fa73732", + "fields": { + "code_commune_insee": "09293", + "nom_de_la_commune": "SERRES SUR ARGET", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9701435492, + 1.5043958432 + ], + "libelle_d_acheminement": "SERRES SUR ARGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5043958432, + 42.9701435492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1de3cc0651cba0eaa76b31b5c8ad6754bfdafb47", + "fields": { + "code_commune_insee": "09294", + "nom_de_la_commune": "SIEURAS", + "code_postal": "09130", + "coordonnees_gps": [ + 43.1922641286, + 1.34376526117 + ], + "libelle_d_acheminement": "SIEURAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34376526117, + 43.1922641286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2637ab33f81a22a634bf1d127fc46321019d2463", + "fields": { + "ligne_5": "SINSAT", + "code_commune_insee": "09296", + "libelle_d_acheminement": "AULOS SINSAT", + "code_postal": "09310", + "nom_de_la_commune": "AULOS SINSAT", + "coordonnees_gps": [ + 42.8010692971, + 1.66015755913 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66015755913, + 42.8010692971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb958db04ec1bd4445402af61d7025fc69de9aae", + "fields": { + "code_commune_insee": "09300", + "nom_de_la_commune": "SOULA", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9407714858, + 1.69062685843 + ], + "libelle_d_acheminement": "SOULA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69062685843, + 42.9407714858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee9e0520cd9bd600d0608d8e02672d7ebdbdd009", + "fields": { + "code_commune_insee": "09305", + "nom_de_la_commune": "TABRE", + "code_postal": "09600", + "coordonnees_gps": [ + 42.9887730653, + 1.85527536591 + ], + "libelle_d_acheminement": "TABRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85527536591, + 42.9887730653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12f44b5e8d2c3793696c3d96bf30515146ce05c5", + "fields": { + "ligne_5": "BANAT", + "code_commune_insee": "09306", + "libelle_d_acheminement": "TARASCON SUR ARIEGE", + "code_postal": "09400", + "nom_de_la_commune": "TARASCON SUR ARIEGE", + "coordonnees_gps": [ + 42.8461514685, + 1.59648461871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59648461871, + 42.8461514685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f90c9d27f96f16bdbd163b98648057499dc2459", + "fields": { + "code_commune_insee": "09308", + "nom_de_la_commune": "TAURIGNAN VIEUX", + "code_postal": "09190", + "coordonnees_gps": [ + 43.0434128319, + 1.11433094449 + ], + "libelle_d_acheminement": "TAURIGNAN VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11433094449, + 43.0434128319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "483e4dd4100c82e3fe3e52b9cf62a5e70ffee4de", + "fields": { + "code_commune_insee": "09309", + "nom_de_la_commune": "TEILHET", + "code_postal": "09500", + "coordonnees_gps": [ + 43.0973378632, + 1.78252133871 + ], + "libelle_d_acheminement": "TEILHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78252133871, + 43.0973378632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5501bf53ce5ddd4b38395fb854fb02c152e35f8e", + "fields": { + "code_commune_insee": "09311", + "nom_de_la_commune": "TIGNAC", + "code_postal": "09110", + "coordonnees_gps": [ + 42.7506713601, + 1.79915182635 + ], + "libelle_d_acheminement": "TIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79915182635, + 42.7506713601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5433d77996a4678a49130a3b09e562e93a247c6b", + "fields": { + "code_commune_insee": "09313", + "nom_de_la_commune": "TOURTOUSE", + "code_postal": "09230", + "coordonnees_gps": [ + 43.090555845, + 1.13719287262 + ], + "libelle_d_acheminement": "TOURTOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13719287262, + 43.090555845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86ffc61444410df8bb9a161c8138035f85070ee2", + "fields": { + "code_commune_insee": "09316", + "nom_de_la_commune": "TROYE D ARIEGE", + "code_postal": "09500", + "coordonnees_gps": [ + 43.0211388767, + 1.88727210169 + ], + "libelle_d_acheminement": "TROYE D ARIEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88727210169, + 43.0211388767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5526653c1a68ea7c26688ecf0cd2380e8eed44c3", + "fields": { + "code_commune_insee": "09321", + "nom_de_la_commune": "USSAT", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8339319836, + 1.62186318062 + ], + "libelle_d_acheminement": "USSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62186318062, + 42.8339319836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd1e14d555b8167684bb9b2c8ccc53cce0da71b6", + "fields": { + "code_commune_insee": "09326", + "nom_de_la_commune": "VEBRE", + "code_postal": "09310", + "coordonnees_gps": [ + 42.7696976304, + 1.71781381664 + ], + "libelle_d_acheminement": "VEBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71781381664, + 42.7696976304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd7b5c6bbfb2db53db121dcdcc1bb7c2ca94c7a5", + "fields": { + "ligne_5": "VICDESSOS", + "code_commune_insee": "09334", + "libelle_d_acheminement": "VAL DE SOS", + "code_postal": "09220", + "nom_de_la_commune": "VAL DE SOS", + "coordonnees_gps": [ + 42.7733893717, + 1.51114862986 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51114862986, + 42.7733893717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66bb2ff6373ce14107942d509c282b3ea9ecde72", + "fields": { + "code_commune_insee": "09335", + "nom_de_la_commune": "VILLENEUVE", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9501020691, + 0.983231865255 + ], + "libelle_d_acheminement": "VILLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.983231865255, + 42.9501020691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e8a62f56132fb62096aa7188d3b82cebe988d75", + "fields": { + "code_commune_insee": "09336", + "nom_de_la_commune": "VILLENEUVE D OLMES", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9114883664, + 1.82063042142 + ], + "libelle_d_acheminement": "VILLENEUVE D OLMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82063042142, + 42.9114883664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31fbd0b9464311cbc3b971cc3725dff2679adb4a", + "fields": { + "code_commune_insee": "10011", + "nom_de_la_commune": "ARRENTIERES", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2679922026, + 4.73910370169 + ], + "libelle_d_acheminement": "ARRENTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73910370169, + 48.2679922026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36bc902c69b48e76f2c541673051c2aaf35f8c69", + "fields": { + "code_commune_insee": "10018", + "nom_de_la_commune": "AUXON", + "code_postal": "10130", + "coordonnees_gps": [ + 48.0923181622, + 3.92346188322 + ], + "libelle_d_acheminement": "AUXON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92346188322, + 48.0923181622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9cc5b1f67e67d9162998d31f55eed4391d795ed", + "fields": { + "ligne_5": "VILLEHARDOUIN", + "code_commune_insee": "10019", + "libelle_d_acheminement": "VAL D AUZON", + "code_postal": "10220", + "nom_de_la_commune": "VAL D AUZON", + "coordonnees_gps": [ + 48.4004769736, + 4.35930739825 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35930739825, + 48.4004769736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30dfa4419f538d2faf65c3bb80c288b989a168c4", + "fields": { + "code_commune_insee": "10022", + "nom_de_la_commune": "AVIREY LINGEY", + "code_postal": "10340", + "coordonnees_gps": [ + 48.028003129, + 4.29702645691 + ], + "libelle_d_acheminement": "AVIREY LINGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29702645691, + 48.028003129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb0133bda19d2c3b00febfc946a78df9a0c2d216", + "fields": { + "code_commune_insee": "10029", + "nom_de_la_commune": "BALNOT SUR LAIGNES", + "code_postal": "10110", + "coordonnees_gps": [ + 48.0369726727, + 4.35269608813 + ], + "libelle_d_acheminement": "BALNOT SUR LAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35269608813, + 48.0369726727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95ffbf7c0fe8630109f79eb7255550b8109305b6", + "fields": { + "ligne_5": "COURTAVANT", + "code_commune_insee": "10031", + "libelle_d_acheminement": "BARBUISE", + "code_postal": "10400", + "nom_de_la_commune": "BARBUISE", + "coordonnees_gps": [ + 48.5509217232, + 3.562035391 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.562035391, + 48.5509217232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fba4b724a837fca5671f48f6285bd35d1007588e", + "fields": { + "code_commune_insee": "10040", + "nom_de_la_commune": "BERNON", + "code_postal": "10130", + "coordonnees_gps": [ + 47.9870798337, + 3.99246812197 + ], + "libelle_d_acheminement": "BERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99246812197, + 47.9870798337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80379ffd98a94af9aa6ced9237387d5ee142bffc", + "fields": { + "code_commune_insee": "10041", + "nom_de_la_commune": "BERTIGNOLLES", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1367453807, + 4.51279936147 + ], + "libelle_d_acheminement": "BERTIGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51279936147, + 48.1367453807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61acd810d62ed253fa4a9e4b6d27cf7801c032e3", + "fields": { + "code_commune_insee": "10042", + "nom_de_la_commune": "BERULLE", + "code_postal": "10160", + "coordonnees_gps": [ + 48.1707680299, + 3.6716310036 + ], + "libelle_d_acheminement": "BERULLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6716310036, + 48.1707680299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3d2ca9a360e1c047c36833c56aae4a7dd0d4568", + "fields": { + "code_commune_insee": "10043", + "nom_de_la_commune": "BESSY", + "code_postal": "10170", + "coordonnees_gps": [ + 48.5413728268, + 4.02489066641 + ], + "libelle_d_acheminement": "BESSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02489066641, + 48.5413728268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3da63d2f3ac1d2a5b814694ff705bd0939a3afd2", + "fields": { + "code_commune_insee": "10045", + "nom_de_la_commune": "BEUREY", + "code_postal": "10140", + "coordonnees_gps": [ + 48.1758848753, + 4.47296130877 + ], + "libelle_d_acheminement": "BEUREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47296130877, + 48.1758848753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ea785d66a3cb2fd09f0191f95eb3f4ea3569204", + "fields": { + "code_commune_insee": "10052", + "nom_de_la_commune": "BOULAGES", + "code_postal": "10380", + "coordonnees_gps": [ + 48.5873035501, + 3.92269900337 + ], + "libelle_d_acheminement": "BOULAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92269900337, + 48.5873035501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "888ac2c903b6989dd32f429ce40deb767bcba5f3", + "fields": { + "code_commune_insee": "10056", + "nom_de_la_commune": "BOUY LUXEMBOURG", + "code_postal": "10220", + "coordonnees_gps": [ + 48.3750872651, + 4.24288832976 + ], + "libelle_d_acheminement": "BOUY LUXEMBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24288832976, + 48.3750872651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a2f6f647e4931705315e4e23ea97c1e9d6f4f00", + "fields": { + "ligne_5": "BEAUVOIR SUR SARCE", + "code_commune_insee": "10058", + "libelle_d_acheminement": "BRAGELOGNE BEAUVOIR", + "code_postal": "10340", + "nom_de_la_commune": "BRAGELOGNE BEAUVOIR", + "coordonnees_gps": [ + 47.9698706523, + 4.26657498666 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26657498666, + 47.9698706523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75553dd0cfb5755242b16b5711e4a4b61daa163f", + "fields": { + "code_commune_insee": "10074", + "nom_de_la_commune": "CHAMOY", + "code_postal": "10130", + "coordonnees_gps": [ + 48.1141180012, + 3.96559597097 + ], + "libelle_d_acheminement": "CHAMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96559597097, + 48.1141180012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5b7b4a1adf630f133ec5094ad044ec3bd83bdfa", + "fields": { + "code_commune_insee": "10079", + "nom_de_la_commune": "CHANNES", + "code_postal": "10340", + "coordonnees_gps": [ + 47.9409115952, + 4.26640819878 + ], + "libelle_d_acheminement": "CHANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26640819878, + 47.9409115952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "696cb486c36544a6a216bbc8a66ff31878ce82ec", + "fields": { + "code_commune_insee": "10080", + "nom_de_la_commune": "CHAOURCE", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0548103736, + 4.14007416764 + ], + "libelle_d_acheminement": "CHAOURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14007416764, + 48.0548103736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e58a2ac6722986abf387c129382b3dabbb5d5d8", + "fields": { + "code_commune_insee": "10082", + "nom_de_la_commune": "CHAPELLE VALLON", + "code_postal": "10700", + "coordonnees_gps": [ + 48.4345746566, + 4.04213440275 + ], + "libelle_d_acheminement": "CHAPELLE VALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04213440275, + 48.4345746566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbcd18a25cdc4412586fd5690b9b0b631afd9ca4", + "fields": { + "code_commune_insee": "10085", + "nom_de_la_commune": "CHARMOY", + "code_postal": "10290", + "coordonnees_gps": [ + 48.3932867782, + 3.58043109373 + ], + "libelle_d_acheminement": "CHARMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58043109373, + 48.3932867782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d18617ec6cb31ca6f2b2751b0951cc9938659467", + "fields": { + "code_commune_insee": "10086", + "nom_de_la_commune": "CHARNY LE BACHOT", + "code_postal": "10380", + "coordonnees_gps": [ + 48.5389297252, + 3.95231242172 + ], + "libelle_d_acheminement": "CHARNY LE BACHOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95231242172, + 48.5389297252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3276786242eb8a91f5ba1b4f9a1254038a1829d", + "fields": { + "code_commune_insee": "10091", + "nom_de_la_commune": "CHAUDREY", + "code_postal": "10240", + "coordonnees_gps": [ + 48.4851020119, + 4.24517454348 + ], + "libelle_d_acheminement": "CHAUDREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24517454348, + 48.4851020119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "846fd982e86136e7e2f4ccac5c63a7ed4565215d", + "fields": { + "code_commune_insee": "10095", + "nom_de_la_commune": "LE CHENE", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5628565037, + 4.17589544005 + ], + "libelle_d_acheminement": "LE CHENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17589544005, + 48.5628565037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ff70c4dc9153df86c9b6bd7e7f419736424a736", + "fields": { + "code_commune_insee": "10097", + "nom_de_la_commune": "CHERVEY", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1347612309, + 4.49011321758 + ], + "libelle_d_acheminement": "CHERVEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49011321758, + 48.1347612309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7618bf3ec4fd0fd08d0a5c5db139c12d531e7aa", + "fields": { + "code_commune_insee": "10102", + "nom_de_la_commune": "COLOMBE LA FOSSE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2710119286, + 4.79010684615 + ], + "libelle_d_acheminement": "COLOMBE LA FOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79010684615, + 48.2710119286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aab3de0da27b4e75a2babffd1c3253719b62c6db", + "fields": { + "code_commune_insee": "10104", + "nom_de_la_commune": "CORMOST", + "code_postal": "10800", + "coordonnees_gps": [ + 48.1565309093, + 4.13264501348 + ], + "libelle_d_acheminement": "CORMOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13264501348, + 48.1565309093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "977080828c1bf308a013eb7d9d0c3a2d33fbd737", + "fields": { + "code_commune_insee": "10106", + "nom_de_la_commune": "COURCEROY", + "code_postal": "10400", + "coordonnees_gps": [ + 48.4683742502, + 3.40826279907 + ], + "libelle_d_acheminement": "COURCEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40826279907, + 48.4683742502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cfcbfb2bcf4a2bf9b06f7e7dd58818d830cad29", + "fields": { + "code_commune_insee": "10109", + "nom_de_la_commune": "COURTENOT", + "code_postal": "10260", + "coordonnees_gps": [ + 48.1546612208, + 4.31372014435 + ], + "libelle_d_acheminement": "COURTENOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31372014435, + 48.1546612208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d304ed760138346f2bb3ead524ee23099b15aea5", + "fields": { + "code_commune_insee": "10116", + "nom_de_la_commune": "CRESANTIGNES", + "code_postal": "10320", + "coordonnees_gps": [ + 48.1427730557, + 4.02038435351 + ], + "libelle_d_acheminement": "CRESANTIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02038435351, + 48.1427730557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73e38ee2aa1b9e097b0b1012183eca1536d6c942", + "fields": { + "code_commune_insee": "10119", + "nom_de_la_commune": "CUNFIN", + "code_postal": "10360", + "coordonnees_gps": [ + 48.0441976568, + 4.66975092005 + ], + "libelle_d_acheminement": "CUNFIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66975092005, + 48.0441976568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6979eb55a9a6a30de32dade928e90503ceee1b07", + "fields": { + "code_commune_insee": "10131", + "nom_de_la_commune": "DROUPT ST BASLE", + "code_postal": "10170", + "coordonnees_gps": [ + 48.4804439943, + 3.95701676 + ], + "libelle_d_acheminement": "DROUPT ST BASLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95701676, + 48.4804439943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b7f39203975c621282adc3db89594ec298193d0", + "fields": { + "code_commune_insee": "10136", + "nom_de_la_commune": "EGUILLY SOUS BOIS", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1388297838, + 4.53815136871 + ], + "libelle_d_acheminement": "EGUILLY SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53815136871, + 48.1388297838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb30dd9c13405563ab7f0c5008013476fa3def97", + "fields": { + "code_commune_insee": "10153", + "nom_de_la_commune": "FONTAINE MACON", + "code_postal": "10400", + "coordonnees_gps": [ + 48.4575603934, + 3.5070361262 + ], + "libelle_d_acheminement": "FONTAINE MACON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5070361262, + 48.4575603934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "649a7a54c7cb86e6009a70500b762703f283850c", + "fields": { + "code_commune_insee": "10154", + "nom_de_la_commune": "FONTENAY DE BOSSERY", + "code_postal": "10400", + "coordonnees_gps": [ + 48.4502901876, + 3.4644594068 + ], + "libelle_d_acheminement": "FONTENAY DE BOSSERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4644594068, + 48.4502901876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b9faa7f81c85367b2cdac74f092912f7ec31031", + "fields": { + "code_commune_insee": "10155", + "nom_de_la_commune": "FONTETTE", + "code_postal": "10360", + "coordonnees_gps": [ + 48.0762843513, + 4.61637603965 + ], + "libelle_d_acheminement": "FONTETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61637603965, + 48.0762843513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90effb7f3552e82116a56954794478de1ba8b5e5", + "fields": { + "code_commune_insee": "10159", + "nom_de_la_commune": "FRALIGNES", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1641131783, + 4.37961204554 + ], + "libelle_d_acheminement": "FRALIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37961204554, + 48.1641131783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec10ef789eb3ead637bf2d644a61d2d8f36206ef", + "fields": { + "code_commune_insee": "10167", + "nom_de_la_commune": "GRANDVILLE", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5941600232, + 4.23537333825 + ], + "libelle_d_acheminement": "GRANDVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23537333825, + 48.5941600232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f821c3382d5eb40ba81e0062a5cc45df5452aa5", + "fields": { + "code_commune_insee": "10168", + "nom_de_la_commune": "LES GRANGES", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0567039113, + 4.06179024934 + ], + "libelle_d_acheminement": "LES GRANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06179024934, + 48.0567039113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "771709a5306cbf9d4e5de16662245d08a3e5d32a", + "fields": { + "code_commune_insee": "10170", + "nom_de_la_commune": "GYE SUR SEINE", + "code_postal": "10250", + "coordonnees_gps": [ + 48.0123873198, + 4.4395162779 + ], + "libelle_d_acheminement": "GYE SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4395162779, + 48.0123873198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81c85422ca1234023f678b88b00c552b0bae0231", + "fields": { + "code_commune_insee": "10176", + "nom_de_la_commune": "JAUCOURT", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2539202754, + 4.64112952114 + ], + "libelle_d_acheminement": "JAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64112952114, + 48.2539202754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9db23055b6913c09eb184a96497f1bf9ada1cb8", + "fields": { + "code_commune_insee": "10177", + "nom_de_la_commune": "JAVERNANT", + "code_postal": "10320", + "coordonnees_gps": [ + 48.1590647301, + 3.99847725785 + ], + "libelle_d_acheminement": "JAVERNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99847725785, + 48.1590647301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d6d1c9f5d3dbd8465cc0e19c78646553995c581", + "fields": { + "code_commune_insee": "10185", + "nom_de_la_commune": "LAGESSE", + "code_postal": "10210", + "coordonnees_gps": [ + 48.01607316, + 4.13301378601 + ], + "libelle_d_acheminement": "LAGESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13301378601, + 48.01607316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "778c4e203a5fbf4b781307bbb3f05ffc82ffde83", + "fields": { + "code_commune_insee": "10188", + "nom_de_la_commune": "LANTAGES", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0769887467, + 4.20669407653 + ], + "libelle_d_acheminement": "LANTAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20669407653, + 48.0769887467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32c56b165a1611fbf1aa4baa3f4dab80cf4d6108", + "fields": { + "code_commune_insee": "10192", + "nom_de_la_commune": "LENTILLES", + "code_postal": "10330", + "coordonnees_gps": [ + 48.4879545588, + 4.62902346103 + ], + "libelle_d_acheminement": "LENTILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62902346103, + 48.4879545588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b70734a48c9b2852f7b1976ca92e3e351ce596e", + "fields": { + "code_commune_insee": "10193", + "nom_de_la_commune": "LESMONT", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4302411801, + 4.42438844514 + ], + "libelle_d_acheminement": "LESMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42438844514, + 48.4302411801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89d8a0dc6d739dcec4330d6cc37e2922754dae98", + "fields": { + "code_commune_insee": "10201", + "nom_de_la_commune": "LA LOGE POMBLIN", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0675064407, + 4.04451121185 + ], + "libelle_d_acheminement": "LA LOGE POMBLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04451121185, + 48.0675064407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8018175132b72f024cbbb567560cb044256b6dc", + "fields": { + "ligne_5": "GRANGE L EVEQUE", + "code_commune_insee": "10211", + "libelle_d_acheminement": "MACEY", + "code_postal": "10300", + "nom_de_la_commune": "MACEY", + "coordonnees_gps": [ + 48.3057699165, + 3.91365964088 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91365964088, + 48.3057699165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d72649fed3acbc33987052a1303b094313d4b780", + "fields": { + "code_commune_insee": "10213", + "nom_de_la_commune": "MAGNANT", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1677499424, + 4.4209760731 + ], + "libelle_d_acheminement": "MAGNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4209760731, + 48.1677499424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd302725f7e994fc2ac8d28479f095e365f2f235", + "fields": { + "code_commune_insee": "10214", + "nom_de_la_commune": "MAGNICOURT", + "code_postal": "10240", + "coordonnees_gps": [ + 48.4585859701, + 4.38223049773 + ], + "libelle_d_acheminement": "MAGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38223049773, + 48.4585859701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b76dfc27b85b1361b6e8d8ddef51c352507bafe", + "fields": { + "code_commune_insee": "10215", + "nom_de_la_commune": "MAGNY FOUCHARD", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2350365053, + 4.54539283369 + ], + "libelle_d_acheminement": "MAGNY FOUCHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54539283369, + 48.2350365053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67de6a76215730a0d8a05d7f84ecf9ebe2853bcc", + "fields": { + "code_commune_insee": "10216", + "nom_de_la_commune": "MAILLY LE CAMP", + "code_postal": "10230", + "coordonnees_gps": [ + 48.6742219512, + 4.18559230801 + ], + "libelle_d_acheminement": "MAILLY LE CAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18559230801, + 48.6742219512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79c0b78773a8882cbf6d32ceb769db5a7b56ddde", + "fields": { + "code_commune_insee": "10223", + "nom_de_la_commune": "MARCILLY LE HAYER", + "code_postal": "10290", + "coordonnees_gps": [ + 48.3312815098, + 3.64419365693 + ], + "libelle_d_acheminement": "MARCILLY LE HAYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64419365693, + 48.3312815098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af67cdbe5e250edd078976e732fe476b0ef264be", + "fields": { + "code_commune_insee": "10228", + "nom_de_la_commune": "MATHAUX", + "code_postal": "10500", + "coordonnees_gps": [ + 48.3555193873, + 4.46117528248 + ], + "libelle_d_acheminement": "MATHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46117528248, + 48.3555193873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee1e5ba63ed4f9a38d55901c9d5c862a163b1f15", + "fields": { + "code_commune_insee": "10230", + "nom_de_la_commune": "MERGEY", + "code_postal": "10600", + "coordonnees_gps": [ + 48.395565383, + 4.03305791455 + ], + "libelle_d_acheminement": "MERGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03305791455, + 48.395565383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf8c3b1564bad2ded1678c0833461926781efe24", + "fields": { + "code_commune_insee": "10232", + "nom_de_la_commune": "MERREY SUR ARCE", + "code_postal": "10110", + "coordonnees_gps": [ + 48.0958413373, + 4.40492577623 + ], + "libelle_d_acheminement": "MERREY SUR ARCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40492577623, + 48.0958413373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20a8066d86c698dad1630517b880bb871c444bcc", + "fields": { + "code_commune_insee": "10239", + "nom_de_la_commune": "MESNIL SELLIERES", + "code_postal": "10220", + "coordonnees_gps": [ + 48.3358644177, + 4.20667057813 + ], + "libelle_d_acheminement": "MESNIL SELLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20667057813, + 48.3358644177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c194364a475ee700b047aee720c664cd8075a8c2", + "fields": { + "ligne_5": "DAUDES", + "code_commune_insee": "10245", + "libelle_d_acheminement": "MONTAULIN", + "code_postal": "10270", + "nom_de_la_commune": "MONTAULIN", + "coordonnees_gps": [ + 48.2479487774, + 4.1973065201 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1973065201, + 48.2479487774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4363314045c3840f6cd5a37afb835e588faf4308", + "fields": { + "code_commune_insee": "10262", + "nom_de_la_commune": "NEUVILLE SUR SEINE", + "code_postal": "10250", + "coordonnees_gps": [ + 48.0346867571, + 4.40826042704 + ], + "libelle_d_acheminement": "NEUVILLE SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40826042704, + 48.0346867571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "774a2b1c661a140927668f25a22a4630a8ba815a", + "fields": { + "code_commune_insee": "10265", + "nom_de_la_commune": "LES NOES PRES TROYES", + "code_postal": "10420", + "coordonnees_gps": [ + 48.3033387671, + 4.04203482801 + ], + "libelle_d_acheminement": "LES NOES PRES TROYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04203482801, + 48.3033387671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25151138884fcbdd2150c6f9c4e2361c3de4322c", + "fields": { + "code_commune_insee": "10268", + "nom_de_la_commune": "NOGENT SUR SEINE", + "code_postal": "10400", + "coordonnees_gps": [ + 48.4962576328, + 3.49983013092 + ], + "libelle_d_acheminement": "NOGENT SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49983013092, + 48.4962576328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd0df56df69bd80d133d46c69e028f6943c23cb5", + "fields": { + "code_commune_insee": "10274", + "nom_de_la_commune": "ORVILLIERS ST JULIEN", + "code_postal": "10170", + "coordonnees_gps": [ + 48.4387695312, + 3.82249131327 + ], + "libelle_d_acheminement": "ORVILLIERS ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82249131327, + 48.4387695312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd789d76ebbdaf1d651719b76303a34d8022e2dd", + "fields": { + "code_commune_insee": "10284", + "nom_de_la_commune": "PERIGNY LA ROSE", + "code_postal": "10400", + "coordonnees_gps": [ + 48.55364742, + 3.62433153025 + ], + "libelle_d_acheminement": "PERIGNY LA ROSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62433153025, + 48.55364742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bee87af4be9a6a982e688c8859d7a6f31f8ffcef", + "fields": { + "code_commune_insee": "10285", + "nom_de_la_commune": "PERTHES LES BRIENNE", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4340121047, + 4.54181585962 + ], + "libelle_d_acheminement": "PERTHES LES BRIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54181585962, + 48.4340121047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4c40e81cf7aa9bb8404da4958b5f3cef1c29982", + "fields": { + "code_commune_insee": "10290", + "nom_de_la_commune": "PLANTY", + "code_postal": "10160", + "coordonnees_gps": [ + 48.2679798119, + 3.65050759721 + ], + "libelle_d_acheminement": "PLANTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65050759721, + 48.2679798119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b4c079a1bbd79a70ec09970fad4b6d9251cf081", + "fields": { + "code_commune_insee": "10300", + "nom_de_la_commune": "POUGY", + "code_postal": "10240", + "coordonnees_gps": [ + 48.4368741428, + 4.3487522917 + ], + "libelle_d_acheminement": "POUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3487522917, + 48.4368741428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c76f205ee782f0d76e98e39bf06f6ce979b5936", + "fields": { + "code_commune_insee": "10306", + "nom_de_la_commune": "PROVERVILLE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2326139251, + 4.67236770859 + ], + "libelle_d_acheminement": "PROVERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67236770859, + 48.2326139251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "818c17e7ae57fa2e0ab85132309a10e621a1cdef", + "fields": { + "code_commune_insee": "10315", + "nom_de_la_commune": "RANCES", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4620840236, + 4.55442425435 + ], + "libelle_d_acheminement": "RANCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55442425435, + 48.4620840236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c4af6160395e9657d376d3a724f7aad8cfb1b5b", + "fields": { + "code_commune_insee": "10318", + "nom_de_la_commune": "RIGNY LA NONNEUSE", + "code_postal": "10290", + "coordonnees_gps": [ + 48.4140043943, + 3.64891002916 + ], + "libelle_d_acheminement": "RIGNY LA NONNEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64891002916, + 48.4140043943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f420c2fb183e6b3843553bfe54646b64924d0378", + "fields": { + "code_commune_insee": "10319", + "nom_de_la_commune": "RIGNY LE FERRON", + "code_postal": "10160", + "coordonnees_gps": [ + 48.2023856771, + 3.62729053332 + ], + "libelle_d_acheminement": "RIGNY LE FERRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62729053332, + 48.2023856771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03a1b4eca0b4253f348b37b402bfbe4708ea5cac", + "fields": { + "code_commune_insee": "10320", + "nom_de_la_commune": "RILLY STE SYRE", + "code_postal": "10280", + "coordonnees_gps": [ + 48.4502459762, + 3.96773143034 + ], + "libelle_d_acheminement": "RILLY STE SYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96773143034, + 48.4502459762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbbd3549893df03490d89ebee6713660a3804873", + "fields": { + "code_commune_insee": "10323", + "nom_de_la_commune": "ROMILLY SUR SEINE", + "code_postal": "10100", + "coordonnees_gps": [ + 48.5185939749, + 3.72154151549 + ], + "libelle_d_acheminement": "ROMILLY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72154151549, + 48.5185939749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef6891fe66b7c39a6644c8374eaf7d88fddb046c", + "fields": { + "code_commune_insee": "10326", + "nom_de_la_commune": "ROSNAY L HOPITAL", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4577724478, + 4.50578895388 + ], + "libelle_d_acheminement": "ROSNAY L HOPITAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50578895388, + 48.4577724478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c3cdba9a5e08500f15320354613ec804cbe9277", + "fields": { + "code_commune_insee": "10329", + "nom_de_la_commune": "ROUILLY ST LOUP", + "code_postal": "10800", + "coordonnees_gps": [ + 48.2647207301, + 4.1494550348 + ], + "libelle_d_acheminement": "ROUILLY ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1494550348, + 48.2647207301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "178db491beed49ba5992eebc9624e11e8ef470de", + "fields": { + "ligne_5": "ROUILLEROT", + "code_commune_insee": "10329", + "libelle_d_acheminement": "ROUILLY ST LOUP", + "code_postal": "10800", + "nom_de_la_commune": "ROUILLY ST LOUP", + "coordonnees_gps": [ + 48.2647207301, + 4.1494550348 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1494550348, + 48.2647207301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12e8a194022695f4f0897738bb31400c7668ac73", + "fields": { + "code_commune_insee": "10332", + "nom_de_la_commune": "RUVIGNY", + "code_postal": "10410", + "coordonnees_gps": [ + 48.272139831, + 4.18869827764 + ], + "libelle_d_acheminement": "RUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18869827764, + 48.272139831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c099b164b6254a5b6a8f465ffd822aa3c139705", + "fields": { + "code_commune_insee": "10336", + "nom_de_la_commune": "ST BENOIT SUR SEINE", + "code_postal": "10180", + "coordonnees_gps": [ + 48.3800523103, + 4.05187885884 + ], + "libelle_d_acheminement": "ST BENOIT SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05187885884, + 48.3800523103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a968c981b0d8d784c17519c932de3930251301bd", + "fields": { + "code_commune_insee": "10339", + "nom_de_la_commune": "ST FLAVY", + "code_postal": "10350", + "coordonnees_gps": [ + 48.4064559956, + 3.77621221951 + ], + "libelle_d_acheminement": "ST FLAVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77621221951, + 48.4064559956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55af2a2e393d952f0ad30222623d9e0411d1596f", + "fields": { + "ligne_5": "CHEVILLELE", + "code_commune_insee": "10340", + "libelle_d_acheminement": "ST GERMAIN", + "code_postal": "10120", + "nom_de_la_commune": "ST GERMAIN", + "coordonnees_gps": [ + 48.2535079309, + 4.01065245328 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01065245328, + 48.2535079309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd401144e1e850970a51f461ef2305cffd24dd3a", + "fields": { + "code_commune_insee": "10346", + "nom_de_la_commune": "ST LEGER SOUS MARGERIE", + "code_postal": "10330", + "coordonnees_gps": [ + 48.530849094, + 4.48665807166 + ], + "libelle_d_acheminement": "ST LEGER SOUS MARGERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48665807166, + 48.530849094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "846b2f5b5b536c7a19fb05105df871cd356347af", + "fields": { + "code_commune_insee": "10353", + "nom_de_la_commune": "ST MESMIN", + "code_postal": "10280", + "coordonnees_gps": [ + 48.4369664082, + 3.89872863616 + ], + "libelle_d_acheminement": "ST MESMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89872863616, + 48.4369664082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19ae1099960cf77158765183f59913a22c81c951", + "fields": { + "code_commune_insee": "10356", + "nom_de_la_commune": "ST OULPH", + "code_postal": "10170", + "coordonnees_gps": [ + 48.5266441925, + 3.87406836475 + ], + "libelle_d_acheminement": "ST OULPH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87406836475, + 48.5266441925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a195b7631d6668dee7667c2d868648b43153101", + "fields": { + "code_commune_insee": "10367", + "nom_de_la_commune": "LA SAULSOTTE", + "code_postal": "10400", + "coordonnees_gps": [ + 48.5502087528, + 3.50552882992 + ], + "libelle_d_acheminement": "LA SAULSOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50552882992, + 48.5502087528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15fe22efc58f37bd83d2d31bb4133c7113a3100a", + "fields": { + "code_commune_insee": "10368", + "nom_de_la_commune": "SAVIERES", + "code_postal": "10600", + "coordonnees_gps": [ + 48.4057771573, + 3.935288338 + ], + "libelle_d_acheminement": "SAVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.935288338, + 48.4057771573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e9b0624bdff86ead73c227809365560b784d75d", + "fields": { + "code_commune_insee": "10369", + "nom_de_la_commune": "SEMOINE", + "code_postal": "10700", + "coordonnees_gps": [ + 48.6735130864, + 4.09378069924 + ], + "libelle_d_acheminement": "SEMOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09378069924, + 48.6735130864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cf37ac5f3d666b60bedee94082726debbb53dda", + "fields": { + "code_commune_insee": "10379", + "nom_de_la_commune": "TORCY LE GRAND", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5234326195, + 4.16799145735 + ], + "libelle_d_acheminement": "TORCY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16799145735, + 48.5234326195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf65a0d389ffe38935890ccb965d33cd2bcb8b71", + "fields": { + "code_commune_insee": "10383", + "nom_de_la_commune": "TRANCAULT", + "code_postal": "10290", + "coordonnees_gps": [ + 48.3711938779, + 3.53292444285 + ], + "libelle_d_acheminement": "TRANCAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53292444285, + 48.3711938779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f265e8359d89e81ca6669fa0d005da7f6e1bfb1e", + "fields": { + "code_commune_insee": "10391", + "nom_de_la_commune": "VAILLY", + "code_postal": "10150", + "coordonnees_gps": [ + 48.3723387031, + 4.12583904396 + ], + "libelle_d_acheminement": "VAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12583904396, + 48.3723387031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c7bb7c5da1a75d3ae6896715a3253f0149d26c5", + "fields": { + "code_commune_insee": "10397", + "nom_de_la_commune": "VAUCHONVILLIERS", + "code_postal": "10140", + "coordonnees_gps": [ + 48.266444897, + 4.53268851278 + ], + "libelle_d_acheminement": "VAUCHONVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53268851278, + 48.266444897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4e78b45ec6c8bbc07527ebde024b570086af77d", + "fields": { + "code_commune_insee": "10398", + "nom_de_la_commune": "VAUCOGNE", + "code_postal": "10240", + "coordonnees_gps": [ + 48.5333241035, + 4.34483013658 + ], + "libelle_d_acheminement": "VAUCOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34483013658, + 48.5333241035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33bbfcf1fe5ddbfccbcda274be24b5410fa4108d", + "fields": { + "code_commune_insee": "10400", + "nom_de_la_commune": "VAUPOISSON", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5007015249, + 4.216312839 + ], + "libelle_d_acheminement": "VAUPOISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.216312839, + 48.5007015249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe1468488ef99e9ba1c1c62f9523d61d379fa75f", + "fields": { + "code_commune_insee": "10401", + "nom_de_la_commune": "VENDEUVRE SUR BARSE", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2461425886, + 4.46090923858 + ], + "libelle_d_acheminement": "VENDEUVRE SUR BARSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46090923858, + 48.2461425886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7c45892c7718f76b327ac35d5336dd2d60f5cb2", + "fields": { + "code_commune_insee": "10403", + "nom_de_la_commune": "VERNONVILLIERS", + "code_postal": "10200", + "coordonnees_gps": [ + 48.3146477146, + 4.67938075644 + ], + "libelle_d_acheminement": "VERNONVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67938075644, + 48.3146477146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee1cc91355023aef193e2436d2036f582dd2f98a", + "fields": { + "code_commune_insee": "10405", + "nom_de_la_commune": "VERRICOURT", + "code_postal": "10240", + "coordonnees_gps": [ + 48.4529660787, + 4.33421102008 + ], + "libelle_d_acheminement": "VERRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33421102008, + 48.4529660787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00e4ce1287709736ba253f9d2ef3afba9593fba5", + "fields": { + "code_commune_insee": "10410", + "nom_de_la_commune": "VILLADIN", + "code_postal": "10290", + "coordonnees_gps": [ + 48.316863996, + 3.69033893209 + ], + "libelle_d_acheminement": "VILLADIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69033893209, + 48.316863996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "541adc2cd87f18c986016650b22b17ac58cbf82e", + "fields": { + "code_commune_insee": "10419", + "nom_de_la_commune": "VILLEMOYENNE", + "code_postal": "10260", + "coordonnees_gps": [ + 48.1878192236, + 4.24708790908 + ], + "libelle_d_acheminement": "VILLEMOYENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24708790908, + 48.1878192236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e51d629b427393d2819ddc81890b6bdebefd5f6f", + "fields": { + "code_commune_insee": "10420", + "nom_de_la_commune": "VILLENAUXE LA GRANDE", + "code_postal": "10370", + "coordonnees_gps": [ + 48.5945779935, + 3.5477753332 + ], + "libelle_d_acheminement": "VILLENAUXE LA GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5477753332, + 48.5945779935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e7fbf6270e11e91fbc6705650368882b5ab9014", + "fields": { + "code_commune_insee": "10430", + "nom_de_la_commune": "VILLIERS HERBISSE", + "code_postal": "10700", + "coordonnees_gps": [ + 48.6429563975, + 4.122661962 + ], + "libelle_d_acheminement": "VILLIERS HERBISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.122661962, + 48.6429563975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b5ce74aa165079cb2e089a4562152c3881bcc9e", + "fields": { + "code_commune_insee": "10431", + "nom_de_la_commune": "VILLIERS LE BOIS", + "code_postal": "10210", + "coordonnees_gps": [ + 47.9552225736, + 4.19042875753 + ], + "libelle_d_acheminement": "VILLIERS LE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19042875753, + 47.9552225736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "390ea281f524188e3f299b3449910bc55cec0323", + "fields": { + "code_commune_insee": "10436", + "nom_de_la_commune": "VINETS", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5452188766, + 4.22519162033 + ], + "libelle_d_acheminement": "VINETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22519162033, + 48.5452188766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bdafabbddb50cbfca5c1838dce39163e751919d", + "fields": { + "code_commune_insee": "10444", + "nom_de_la_commune": "VULAINES", + "code_postal": "10160", + "coordonnees_gps": [ + 48.2404690972, + 3.62649011278 + ], + "libelle_d_acheminement": "VULAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62649011278, + 48.2404690972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b7e6aa7eb542c0fe7c177d8d5561a6906270db5", + "fields": { + "code_commune_insee": "11002", + "nom_de_la_commune": "AIROUX", + "code_postal": "11320", + "coordonnees_gps": [ + 43.3676910136, + 1.87455000904 + ], + "libelle_d_acheminement": "AIROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87455000904, + 43.3676910136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f049df94812fca1152d1fc7bfc0e72f078b78bc6", + "fields": { + "code_commune_insee": "11003", + "nom_de_la_commune": "AJAC", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0449880503, + 2.13672463655 + ], + "libelle_d_acheminement": "AJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13672463655, + 43.0449880503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f388ef1ac2debdd933cfe9d4ed13da859f8d8c16", + "fields": { + "code_commune_insee": "11004", + "nom_de_la_commune": "ALAIGNE", + "code_postal": "11240", + "coordonnees_gps": [ + 43.0978286628, + 2.09203368421 + ], + "libelle_d_acheminement": "ALAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09203368421, + 43.0978286628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9b7fc173456afc2cd9db26f3570ba9465ac6dc4", + "fields": { + "code_commune_insee": "11005", + "nom_de_la_commune": "ALAIRAC", + "code_postal": "11290", + "coordonnees_gps": [ + 43.1820306523, + 2.2370439206 + ], + "libelle_d_acheminement": "ALAIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2370439206, + 43.1820306523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cadf39b33da46d2b9ebcc044e292897e5e75eff1", + "fields": { + "code_commune_insee": "11006", + "nom_de_la_commune": "ALBAS", + "code_postal": "11360", + "coordonnees_gps": [ + 43.0056644881, + 2.7267548127 + ], + "libelle_d_acheminement": "ALBAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7267548127, + 43.0056644881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c3b9275a6efbffcbb365128bcfa40ee2fae7710", + "fields": { + "code_commune_insee": "11009", + "nom_de_la_commune": "ALZONNE", + "code_postal": "11170", + "coordonnees_gps": [ + 43.2652998624, + 2.17459434048 + ], + "libelle_d_acheminement": "ALZONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17459434048, + 43.2652998624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b722b15771a91f4e206b5bd0c8b70b4a90f083d8", + "fields": { + "code_commune_insee": "11017", + "nom_de_la_commune": "ARTIGUES", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7912861146, + 2.20717290807 + ], + "libelle_d_acheminement": "ARTIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20717290807, + 42.7912861146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65c67a8caaea019fc86b35e044f88c92b26523ea", + "fields": { + "code_commune_insee": "11020", + "nom_de_la_commune": "AURIAC", + "code_postal": "11330", + "coordonnees_gps": [ + 42.9256351469, + 2.4945438405 + ], + "libelle_d_acheminement": "AURIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4945438405, + 42.9256351469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e05698e86a5eaee8e6af13ac265dcdbaefb63b9d", + "fields": { + "code_commune_insee": "11039", + "nom_de_la_commune": "LA BEZOLE", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0291058072, + 2.09555791235 + ], + "libelle_d_acheminement": "LA BEZOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09555791235, + 43.0291058072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "206dfe143eef34e7ee6011c799af7d32e5df2ebf", + "fields": { + "code_commune_insee": "11046", + "nom_de_la_commune": "BOURIGEOLE", + "code_postal": "11300", + "coordonnees_gps": [ + 42.9855167789, + 2.12392685607 + ], + "libelle_d_acheminement": "BOURIGEOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12392685607, + 42.9855167789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e7fa2c65f09b4c2c388964fc63217c43df6fe93", + "fields": { + "code_commune_insee": "11051", + "nom_de_la_commune": "BREZILHAC", + "code_postal": "11270", + "coordonnees_gps": [ + 43.1675996324, + 2.07535870975 + ], + "libelle_d_acheminement": "BREZILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07535870975, + 43.1675996324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bae4c6076a438f18e915c383000a2ab74af6a5f", + "fields": { + "code_commune_insee": "11056", + "nom_de_la_commune": "CABRESPINE", + "code_postal": "11160", + "coordonnees_gps": [ + 43.3764538568, + 2.47186785708 + ], + "libelle_d_acheminement": "CABRESPINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47186785708, + 43.3764538568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbdecde755835be84be897ed3d05925fdddf09dc", + "fields": { + "code_commune_insee": "11061", + "nom_de_la_commune": "CAMBIEURE", + "code_postal": "11240", + "coordonnees_gps": [ + 43.1266480601, + 2.12787543715 + ], + "libelle_d_acheminement": "CAMBIEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12787543715, + 43.1266480601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a51536ff0fbf0bd71d45f66cb20d4bbfab873e7d", + "fields": { + "code_commune_insee": "11068", + "nom_de_la_commune": "CAPENDU", + "code_postal": "11700", + "coordonnees_gps": [ + 43.1836102247, + 2.5538350475 + ], + "libelle_d_acheminement": "CAPENDU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5538350475, + 43.1836102247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d2157e9ec8df4d4bd3de149373c2aa72a9fadf8", + "fields": { + "code_commune_insee": "11069", + "nom_de_la_commune": "CARCASSONNE", + "code_postal": "11000", + "coordonnees_gps": [ + 43.2093798444, + 2.34398855385 + ], + "libelle_d_acheminement": "CARCASSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34398855385, + 43.2093798444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bd4d30512464313d1bea36e18902ebc8fe221b1", + "fields": { + "code_commune_insee": "11073", + "nom_de_la_commune": "CASSAIGNES", + "code_postal": "11190", + "coordonnees_gps": [ + 42.9479700119, + 2.29713238713 + ], + "libelle_d_acheminement": "CASSAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29713238713, + 42.9479700119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99876d45579b48f48aa5442669052da422f1f670", + "fields": { + "code_commune_insee": "11074", + "nom_de_la_commune": "LES CASSES", + "code_postal": "11320", + "coordonnees_gps": [ + 43.4266610754, + 1.86444537803 + ], + "libelle_d_acheminement": "LES CASSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86444537803, + 43.4266610754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17f50568761fa842955915f862db277eba9e3e7b", + "fields": { + "code_commune_insee": "11082", + "nom_de_la_commune": "CAUNETTE SUR LAUQUET", + "code_postal": "11250", + "coordonnees_gps": [ + 43.027894163, + 2.42690541874 + ], + "libelle_d_acheminement": "CAUNETTE SUR LAUQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42690541874, + 43.027894163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "937d806f46ff7da7ca5cdc9b9f9feae4ef37b02f", + "fields": { + "code_commune_insee": "11090", + "nom_de_la_commune": "CEPIE", + "code_postal": "11300", + "coordonnees_gps": [ + 43.1079654901, + 2.23811930779 + ], + "libelle_d_acheminement": "CEPIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23811930779, + 43.1079654901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "047f0f84719abf3a483132872439c91daa78fac6", + "fields": { + "code_commune_insee": "11091", + "nom_de_la_commune": "CHALABRE", + "code_postal": "11230", + "coordonnees_gps": [ + 42.9817651679, + 2.01049024009 + ], + "libelle_d_acheminement": "CHALABRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01049024009, + 42.9817651679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06c2e636dcbee853a8cfee4626026e576a2da40c", + "fields": { + "code_commune_insee": "11094", + "nom_de_la_commune": "CLERMONT SUR LAUQUET", + "code_postal": "11250", + "coordonnees_gps": [ + 43.0464846976, + 2.4293167495 + ], + "libelle_d_acheminement": "CLERMONT SUR LAUQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4293167495, + 43.0464846976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53072266fe61afbea2f77640a6a3aa0abc3a37f1", + "fields": { + "code_commune_insee": "11095", + "nom_de_la_commune": "COMIGNE", + "code_postal": "11700", + "coordonnees_gps": [ + 43.1656693314, + 2.58551535137 + ], + "libelle_d_acheminement": "COMIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58551535137, + 43.1656693314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45e56f024c9ef3f2da376e45792a3feb3bdcc472", + "fields": { + "code_commune_insee": "11104", + "nom_de_la_commune": "COUNOZOULS", + "code_postal": "11140", + "coordonnees_gps": [ + 42.701706795, + 2.23007242592 + ], + "libelle_d_acheminement": "COUNOZOULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23007242592, + 42.701706795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a2331009af3283799078a3beb1f5597423b6bab", + "fields": { + "code_commune_insee": "11110", + "nom_de_la_commune": "COUSTOUGE", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0570093399, + 2.74399307866 + ], + "libelle_d_acheminement": "COUSTOUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74399307866, + 43.0570093399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c0f54baee3517ecd2d1b35b0d2604ba3115883a", + "fields": { + "code_commune_insee": "11114", + "nom_de_la_commune": "CUMIES", + "code_postal": "11410", + "coordonnees_gps": [ + 43.2996308196, + 1.83222991092 + ], + "libelle_d_acheminement": "CUMIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83222991092, + 43.2996308196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bb763f4bd69eecd173bc7625e5f828a62c952b0", + "fields": { + "code_commune_insee": "11115", + "nom_de_la_commune": "CUXAC CABARDES", + "code_postal": "11390", + "coordonnees_gps": [ + 43.3915075028, + 2.2785219316 + ], + "libelle_d_acheminement": "CUXAC CABARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2785219316, + 43.3915075028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5826f51886b0b07742851596fe70cd667e9bb355", + "fields": { + "code_commune_insee": "11116", + "nom_de_la_commune": "CUXAC D AUDE", + "code_postal": "11590", + "coordonnees_gps": [ + 43.2578013318, + 3.00547549948 + ], + "libelle_d_acheminement": "CUXAC D AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00547549948, + 43.2578013318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c91005122c46b633c2a4ad8f68faa4bfee48e201", + "fields": { + "code_commune_insee": "11119", + "nom_de_la_commune": "LA DIGNE D AMONT", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0391924198, + 2.16079139515 + ], + "libelle_d_acheminement": "LA DIGNE D AMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16079139515, + 43.0391924198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27ea4f265331aa1eab656135af2f1f338082ee61", + "fields": { + "code_commune_insee": "11122", + "nom_de_la_commune": "DOUZENS", + "code_postal": "11700", + "coordonnees_gps": [ + 43.1792686737, + 2.61186266424 + ], + "libelle_d_acheminement": "DOUZENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61186266424, + 43.1792686737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9663a5ccc591a3e31150095042b9198cac61962", + "fields": { + "code_commune_insee": "11126", + "nom_de_la_commune": "ESCALES", + "code_postal": "11200", + "coordonnees_gps": [ + 43.2228544112, + 2.70834893328 + ], + "libelle_d_acheminement": "ESCALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70834893328, + 43.2228544112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dd5707070f251976a5ba613eb582443c2b757cf", + "fields": { + "code_commune_insee": "11130", + "nom_de_la_commune": "ESPEZEL", + "code_postal": "11340", + "coordonnees_gps": [ + 42.8429058129, + 2.02561550138 + ], + "libelle_d_acheminement": "ESPEZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02561550138, + 42.8429058129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bf537d57461e3b73517572daed01eccad7aa955", + "fields": { + "code_commune_insee": "11135", + "nom_de_la_commune": "LA FAJOLLE", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7525421686, + 1.96514650646 + ], + "libelle_d_acheminement": "LA FAJOLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96514650646, + 42.7525421686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09997e3a5915eb30386c71949d8bfaad261e81a2", + "fields": { + "code_commune_insee": "11139", + "nom_de_la_commune": "FENOUILLET DU RAZES", + "code_postal": "11240", + "coordonnees_gps": [ + 43.1559454776, + 2.02984840412 + ], + "libelle_d_acheminement": "FENOUILLET DU RAZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02984840412, + 43.1559454776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcc38d9e0704c4f5430f5d6725f46b889bfc8354", + "fields": { + "code_commune_insee": "11141", + "nom_de_la_commune": "FERRAN", + "code_postal": "11240", + "coordonnees_gps": [ + 43.1530485554, + 2.09024312493 + ], + "libelle_d_acheminement": "FERRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09024312493, + 43.1530485554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18c06353e6eed1b34df69d52dd5d16f7de2702ec", + "fields": { + "code_commune_insee": "11142", + "nom_de_la_commune": "FESTES ET ST ANDRE", + "code_postal": "11300", + "coordonnees_gps": [ + 42.9618144716, + 2.11582079753 + ], + "libelle_d_acheminement": "FESTES ET ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11582079753, + 42.9618144716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dbfad5d9cd387bde7216463c8dc359a270f9aad", + "fields": { + "code_commune_insee": "11149", + "nom_de_la_commune": "FONTERS DU RAZES", + "code_postal": "11400", + "coordonnees_gps": [ + 43.2377047151, + 1.92343159857 + ], + "libelle_d_acheminement": "FONTERS DU RAZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92343159857, + 43.2377047151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "663d43039d569f7a8ddccaf3d8bbfa39e059b7e2", + "fields": { + "code_commune_insee": "11150", + "nom_de_la_commune": "FONTIERS CABARDES", + "code_postal": "11390", + "coordonnees_gps": [ + 43.3746615673, + 2.25320474783 + ], + "libelle_d_acheminement": "FONTIERS CABARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25320474783, + 43.3746615673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ca5911aa07b4750252c116bdd90d9d990951f21", + "fields": { + "code_commune_insee": "11152", + "nom_de_la_commune": "FONTJONCOUSE", + "code_postal": "11360", + "coordonnees_gps": [ + 43.0447254649, + 2.79293722382 + ], + "libelle_d_acheminement": "FONTJONCOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79293722382, + 43.0447254649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9fbb33432af2d95fe2f5fad55658f23c130f09e", + "fields": { + "code_commune_insee": "11155", + "nom_de_la_commune": "FOURTOU", + "code_postal": "11190", + "coordonnees_gps": [ + 42.90966081, + 2.44256346248 + ], + "libelle_d_acheminement": "FOURTOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44256346248, + 42.90966081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e70e247fad76fb8ecad15db0b4beff7718afb34d", + "fields": { + "code_commune_insee": "11163", + "nom_de_la_commune": "GINCLA", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7642420371, + 2.33214858941 + ], + "libelle_d_acheminement": "GINCLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33214858941, + 42.7642420371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd0f8aade02029a027eabe74c9bf44733f71cab0", + "fields": { + "code_commune_insee": "11170", + "nom_de_la_commune": "GRUISSAN", + "code_postal": "11430", + "coordonnees_gps": [ + 43.1040163547, + 3.08229513652 + ], + "libelle_d_acheminement": "GRUISSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08229513652, + 43.1040163547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "930873c004baf1d57e3b0f44ffab872270f6b912", + "fields": { + "code_commune_insee": "11179", + "nom_de_la_commune": "LABASTIDE EN VAL", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0648889852, + 2.47120935323 + ], + "libelle_d_acheminement": "LABASTIDE EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47120935323, + 43.0648889852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ffcd10375e951aa689c168b83d3757278c3ca07", + "fields": { + "code_commune_insee": "11183", + "nom_de_la_commune": "LADERN SUR LAUQUET", + "code_postal": "11250", + "coordonnees_gps": [ + 43.1012521113, + 2.3863195178 + ], + "libelle_d_acheminement": "LADERN SUR LAUQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3863195178, + 43.1012521113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94f30ddcb48b0030563477e7af64069e8144bd41", + "fields": { + "code_commune_insee": "11188", + "nom_de_la_commune": "LA PALME", + "code_postal": "11480", + "coordonnees_gps": [ + 42.9660377916, + 2.99265326968 + ], + "libelle_d_acheminement": "LA PALME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99265326968, + 42.9660377916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "495310ebb1cdf355f9b089cf89b2c55c6b5064c7", + "fields": { + "code_commune_insee": "11189", + "nom_de_la_commune": "LAPRADE", + "code_postal": "11390", + "coordonnees_gps": [ + 43.440478585, + 2.25257707156 + ], + "libelle_d_acheminement": "LAPRADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25257707156, + 43.440478585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91546436bebfe17dbb235a34a92f7834a57eb8a2", + "fields": { + "code_commune_insee": "11202", + "nom_de_la_commune": "LEUCATE", + "code_postal": "11370", + "coordonnees_gps": [ + 42.8993650672, + 3.02676038573 + ], + "libelle_d_acheminement": "LEUCATE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02676038573, + 42.8993650672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b68894c28b7a90cb9e25f9ebb3077b1c357131f", + "fields": { + "code_commune_insee": "11206", + "nom_de_la_commune": "LIMOUX", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0499293279, + 2.23958811407 + ], + "libelle_d_acheminement": "LIMOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23958811407, + 43.0499293279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08af21ee223d16d9cba10db630cb70757b22e689", + "fields": { + "code_commune_insee": "11212", + "nom_de_la_commune": "MAILHAC", + "code_postal": "11120", + "coordonnees_gps": [ + 43.3076774057, + 2.83059491685 + ], + "libelle_d_acheminement": "MAILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83059491685, + 43.3076774057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a22c997c60463f427b7b773ebcfb6dbfef75e0e", + "fields": { + "code_commune_insee": "11216", + "nom_de_la_commune": "MALVIES", + "code_postal": "11300", + "coordonnees_gps": [ + 43.1174399011, + 2.18395387404 + ], + "libelle_d_acheminement": "MALVIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18395387404, + 43.1174399011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9acc607bda67c70a5ca419ae4a6be412a836fdaa", + "fields": { + "code_commune_insee": "11233", + "nom_de_la_commune": "MIREPEISSET", + "code_postal": "11120", + "coordonnees_gps": [ + 43.2844349747, + 2.89700023741 + ], + "libelle_d_acheminement": "MIREPEISSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89700023741, + 43.2844349747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c78032d4e5c6cb67ec252fda7c05cb1d3d7fc846", + "fields": { + "code_commune_insee": "11234", + "nom_de_la_commune": "MIREVAL LAURAGAIS", + "code_postal": "11400", + "coordonnees_gps": [ + 43.2640320173, + 1.96819488021 + ], + "libelle_d_acheminement": "MIREVAL LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96819488021, + 43.2640320173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e823de0fae173ef1ca61405519aeee4bc1352391", + "fields": { + "code_commune_insee": "11235", + "nom_de_la_commune": "MISSEGRE", + "code_postal": "11580", + "coordonnees_gps": [ + 43.0021750779, + 2.37277504963 + ], + "libelle_d_acheminement": "MISSEGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37277504963, + 43.0021750779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c44bbc60682d435e4ac57fa727b93767ad1e0c04", + "fields": { + "code_commune_insee": "11244", + "nom_de_la_commune": "MONTFORT SUR BOULZANE", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7299809586, + 2.3081472407 + ], + "libelle_d_acheminement": "MONTFORT SUR BOULZANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3081472407, + 42.7299809586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b94149da5b4680aaf8141a15760d0c458a46f10a", + "fields": { + "code_commune_insee": "11248", + "nom_de_la_commune": "MONTIRAT", + "code_postal": "11800", + "coordonnees_gps": [ + 43.168735923, + 2.4320979662 + ], + "libelle_d_acheminement": "MONTIRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4320979662, + 43.168735923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "211a79aa26910defbee0103e0bcbf76b24cb06aa", + "fields": { + "ligne_5": "PRADELLES EN VAL", + "code_commune_insee": "11251", + "libelle_d_acheminement": "VAL DE DAGNE", + "code_postal": "11220", + "nom_de_la_commune": "VAL DE DAGNE", + "coordonnees_gps": [ + 43.1285553787, + 2.56525134026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56525134026, + 43.1285553787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11e609f8df86de556a7dea384a132721bba3deda", + "fields": { + "code_commune_insee": "11270", + "nom_de_la_commune": "PADERN", + "code_postal": "11350", + "coordonnees_gps": [ + 42.8691333738, + 2.6512224935 + ], + "libelle_d_acheminement": "PADERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6512224935, + 42.8691333738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a151e183e9233d3f313fdec93d17f311cf306e7a", + "fields": { + "code_commune_insee": "11274", + "nom_de_la_commune": "PAULIGNE", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0749163178, + 2.14740375945 + ], + "libelle_d_acheminement": "PAULIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14740375945, + 43.0749163178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5152eb61ecee14d1c1e57c2aa9f047fab83c148", + "fields": { + "code_commune_insee": "11276", + "nom_de_la_commune": "PAZIOLS", + "code_postal": "11350", + "coordonnees_gps": [ + 42.8544727746, + 2.7156141334 + ], + "libelle_d_acheminement": "PAZIOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7156141334, + 42.8544727746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e3be22c76ebb314ed4b66ed095791eb4d6a06f4", + "fields": { + "code_commune_insee": "11285", + "nom_de_la_commune": "PEYRIAC DE MER", + "code_postal": "11440", + "coordonnees_gps": [ + 43.0903004686, + 2.9485053119 + ], + "libelle_d_acheminement": "PEYRIAC DE MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9485053119, + 43.0903004686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b4373fcc513b3188aea6a6562f1eec2ed68df6a", + "fields": { + "ligne_5": "BRENAC", + "code_commune_insee": "11304", + "libelle_d_acheminement": "QUILLAN", + "code_postal": "11500", + "nom_de_la_commune": "QUILLAN", + "coordonnees_gps": [ + 42.8757498926, + 2.19080612724 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19080612724, + 42.8757498926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c303c8f69fe43e2e8170fd7f894922c56357d5dd", + "fields": { + "code_commune_insee": "11305", + "nom_de_la_commune": "QUINTILLAN", + "code_postal": "11360", + "coordonnees_gps": [ + 42.9592603481, + 2.70315796115 + ], + "libelle_d_acheminement": "QUINTILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70315796115, + 42.9592603481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dbf3df28d23810d85d1b977512f882c57360fb6", + "fields": { + "code_commune_insee": "11313", + "nom_de_la_commune": "RICAUD", + "code_postal": "11400", + "coordonnees_gps": [ + 43.3468605546, + 1.89555306899 + ], + "libelle_d_acheminement": "RICAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89555306899, + 43.3468605546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "620c71324273c48809d868f8bff73ee16918d53f", + "fields": { + "code_commune_insee": "11321", + "nom_de_la_commune": "ROQUEFORT DE SAULT", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7387338006, + 2.19993961506 + ], + "libelle_d_acheminement": "ROQUEFORT DE SAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19993961506, + 42.7387338006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1630387eec5ce11a5f1a26aec9ef97c59396b423", + "fields": { + "ligne_5": "ROQUETAILLADE", + "code_commune_insee": "11323", + "libelle_d_acheminement": "ROQUETAILLADE ET CONILHAC", + "code_postal": "11300", + "nom_de_la_commune": "ROQUETAILLADE ET CONILHAC", + "coordonnees_gps": [ + 42.9986140318, + 2.20719582906 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20719582906, + 42.9986140318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b929662c34568f90b114153eca3513128b993d11", + "fields": { + "code_commune_insee": "11335", + "nom_de_la_commune": "STE COLOMBE SUR GUETTE", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7526963615, + 2.24828882061 + ], + "libelle_d_acheminement": "STE COLOMBE SUR GUETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24828882061, + 42.7526963615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ca093700f2c512213ae115fd4ffd446a17c9eb0", + "fields": { + "code_commune_insee": "11337", + "nom_de_la_commune": "ST COUAT D AUDE", + "code_postal": "11700", + "coordonnees_gps": [ + 43.2084644434, + 2.63710097186 + ], + "libelle_d_acheminement": "ST COUAT D AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63710097186, + 43.2084644434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15c578918c094c0709443bcd85a932bfba633c26", + "fields": { + "code_commune_insee": "11342", + "nom_de_la_commune": "ST FRICHOUX", + "code_postal": "11800", + "coordonnees_gps": [ + 43.2478259273, + 2.55888801821 + ], + "libelle_d_acheminement": "ST FRICHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55888801821, + 43.2478259273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c9c002f54ec7558b8a036deb5f00f5c84f47e6a", + "fields": { + "code_commune_insee": "11345", + "nom_de_la_commune": "ST JEAN DE BARROU", + "code_postal": "11360", + "coordonnees_gps": [ + 42.9606338061, + 2.82790440419 + ], + "libelle_d_acheminement": "ST JEAN DE BARROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82790440419, + 42.9606338061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ecb6facac7c61b8d286af01be86255c34210b7a", + "fields": { + "code_commune_insee": "11346", + "nom_de_la_commune": "ST JEAN DE PARACOL", + "code_postal": "11260", + "coordonnees_gps": [ + 42.9381797742, + 2.10903562937 + ], + "libelle_d_acheminement": "ST JEAN DE PARACOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10903562937, + 42.9381797742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b25b8f18ac6af3b204c5670c5736c45cfb1ec99", + "fields": { + "code_commune_insee": "11353", + "nom_de_la_commune": "ST MARCEL SUR AUDE", + "code_postal": "11120", + "coordonnees_gps": [ + 43.2513488574, + 2.92392517153 + ], + "libelle_d_acheminement": "ST MARCEL SUR AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92392517153, + 43.2513488574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f97a64b5853dcdd81f2541b0ec69cd3b4482f14", + "fields": { + "code_commune_insee": "11354", + "nom_de_la_commune": "ST MARTIN DES PUITS", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0366640999, + 2.57569156938 + ], + "libelle_d_acheminement": "ST MARTIN DES PUITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57569156938, + 43.0366640999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b64f9b829b7293232146280a2955096129a97a29", + "fields": { + "code_commune_insee": "11362", + "nom_de_la_commune": "ST PAULET", + "code_postal": "11320", + "coordonnees_gps": [ + 43.4046115427, + 1.88105647745 + ], + "libelle_d_acheminement": "ST PAULET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88105647745, + 43.4046115427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "876f6526aa8825e676f43ec9bc817ed357afa701", + "fields": { + "code_commune_insee": "11369", + "nom_de_la_commune": "SALLELES D AUDE", + "code_postal": "11590", + "coordonnees_gps": [ + 43.2700227368, + 2.93528136754 + ], + "libelle_d_acheminement": "SALLELES D AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93528136754, + 43.2700227368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3177a5e04fd80850d67a47ae2f8c51e017228cc", + "fields": { + "code_commune_insee": "11371", + "nom_de_la_commune": "SALLES SUR L HERS", + "code_postal": "11410", + "coordonnees_gps": [ + 43.29456777, + 1.78132422207 + ], + "libelle_d_acheminement": "SALLES SUR L HERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78132422207, + 43.29456777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80e0309207e11a0f6b4ac43633dc1e8af6721331", + "fields": { + "code_commune_insee": "11372", + "nom_de_la_commune": "SALSIGNE", + "code_postal": "11600", + "coordonnees_gps": [ + 43.3220104211, + 2.35660329319 + ], + "libelle_d_acheminement": "SALSIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35660329319, + 43.3220104211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3b7234162ae531ffae1fbca42dec43a3670ec8b", + "fields": { + "code_commune_insee": "11375", + "nom_de_la_commune": "SEIGNALENS", + "code_postal": "11240", + "coordonnees_gps": [ + 43.0990678158, + 1.96711035013 + ], + "libelle_d_acheminement": "SEIGNALENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96711035013, + 43.0990678158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "832ed9b417bdd7d4c859b2df25ca1fe9ea5d366f", + "fields": { + "code_commune_insee": "11383", + "nom_de_la_commune": "SOUILHE", + "code_postal": "11400", + "coordonnees_gps": [ + 43.3687280247, + 1.91691905449 + ], + "libelle_d_acheminement": "SOUILHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91691905449, + 43.3687280247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f4d829b06d3c96416e24e9de0eff46044b9ffbf", + "fields": { + "code_commune_insee": "11389", + "nom_de_la_commune": "TERROLES", + "code_postal": "11580", + "coordonnees_gps": [ + 42.9913709572, + 2.342696874 + ], + "libelle_d_acheminement": "TERROLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.342696874, + 42.9913709572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "001ae8f8a7f05e94e15887b247ae6254ac7d8693", + "fields": { + "code_commune_insee": "11390", + "nom_de_la_commune": "THEZAN DES CORBIERES", + "code_postal": "11200", + "coordonnees_gps": [ + 43.0893654385, + 2.78310314277 + ], + "libelle_d_acheminement": "THEZAN DES CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78310314277, + 43.0893654385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25b54e71b1c90d169671f7bfe699cfd8d5b88fd1", + "fields": { + "code_commune_insee": "11397", + "nom_de_la_commune": "TREBES", + "code_postal": "11800", + "coordonnees_gps": [ + 43.2054644637, + 2.45954102477 + ], + "libelle_d_acheminement": "TREBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45954102477, + 43.2054644637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7199f05f5639bf83b92124ccfbcee708e46d6f9a", + "fields": { + "code_commune_insee": "11401", + "nom_de_la_commune": "TUCHAN", + "code_postal": "11350", + "coordonnees_gps": [ + 42.9063160941, + 2.72809318439 + ], + "libelle_d_acheminement": "TUCHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72809318439, + 42.9063160941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a37b8ff91d4d0dcad281e83f5e2d6baee35525d6", + "fields": { + "code_commune_insee": "11407", + "nom_de_la_commune": "VERDUN EN LAURAGAIS", + "code_postal": "11400", + "coordonnees_gps": [ + 43.3677103686, + 2.07806580446 + ], + "libelle_d_acheminement": "VERDUN EN LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07806580446, + 43.3677103686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f95596447f005bd13c10e04765340791d315b8bc", + "fields": { + "code_commune_insee": "11408", + "nom_de_la_commune": "VERZEILLE", + "code_postal": "11250", + "coordonnees_gps": [ + 43.1202007028, + 2.32860736272 + ], + "libelle_d_acheminement": "VERZEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32860736272, + 43.1202007028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9acf53daed72163dcab54440e6f1c5ce56b7d7c", + "fields": { + "code_commune_insee": "11427", + "nom_de_la_commune": "VILLELONGUE D AUDE", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0554333537, + 2.09254975337 + ], + "libelle_d_acheminement": "VILLELONGUE D AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09254975337, + 43.0554333537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b082c37838d422a092cca5be3d4de32103c9bdb3", + "fields": { + "code_commune_insee": "11428", + "nom_de_la_commune": "VILLEMAGNE", + "code_postal": "11310", + "coordonnees_gps": [ + 43.3677856314, + 2.10938684579 + ], + "libelle_d_acheminement": "VILLEMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10938684579, + 43.3677856314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ed2c49783fe0bf609051401801b76813847ca2c", + "fields": { + "code_commune_insee": "11432", + "nom_de_la_commune": "VILLENEUVE LES MONTREAL", + "code_postal": "11290", + "coordonnees_gps": [ + 43.178928019, + 2.11283533112 + ], + "libelle_d_acheminement": "VILLENEUVE LES MONTREAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11283533112, + 43.178928019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45e686619843007be682fce821fa3bd222a3cdee", + "fields": { + "code_commune_insee": "11434", + "nom_de_la_commune": "VILLEPINTE", + "code_postal": "11150", + "coordonnees_gps": [ + 43.2808698633, + 2.09551779472 + ], + "libelle_d_acheminement": "VILLEPINTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09551779472, + 43.2808698633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29bb9b704ef16ec521430ef1a31426ae3a6dd8e8", + "fields": { + "code_commune_insee": "11436", + "nom_de_la_commune": "VILLESEQUE DES CORBIERES", + "code_postal": "11360", + "coordonnees_gps": [ + 43.0182115243, + 2.85759896438 + ], + "libelle_d_acheminement": "VILLESEQUE DES CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85759896438, + 43.0182115243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25735857fbd921c26a3386d194453f8a79e55888", + "fields": { + "code_commune_insee": "12002", + "nom_de_la_commune": "AGUESSAC", + "code_postal": "12520", + "coordonnees_gps": [ + 44.1613901609, + 3.06898957805 + ], + "libelle_d_acheminement": "AGUESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06898957805, + 44.1613901609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fd35aaa8ed58fe3d1bb8aa201c55f34ad5b6987", + "fields": { + "code_commune_insee": "12015", + "nom_de_la_commune": "AURIAC LAGAST", + "code_postal": "12120", + "coordonnees_gps": [ + 44.1446380176, + 2.59650757415 + ], + "libelle_d_acheminement": "AURIAC LAGAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59650757415, + 44.1446380176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29d766bbe767e79bd5ef668e78ac1d7445c704a0", + "fields": { + "code_commune_insee": "12018", + "nom_de_la_commune": "BALAGUIER D OLT", + "code_postal": "12260", + "coordonnees_gps": [ + 44.5189126443, + 1.97719263772 + ], + "libelle_d_acheminement": "BALAGUIER D OLT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97719263772, + 44.5189126443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40bbfcd18b0f81e80f00a37e470bff1fa20049dc", + "fields": { + "code_commune_insee": "12019", + "nom_de_la_commune": "BALAGUIER SUR RANCE", + "code_postal": "12380", + "coordonnees_gps": [ + 43.8958843359, + 2.576705609 + ], + "libelle_d_acheminement": "BALAGUIER SUR RANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.576705609, + 43.8958843359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ad2f6b2214ca2c1cbc5f7f2cff56e24ff231acb", + "fields": { + "code_commune_insee": "12029", + "nom_de_la_commune": "BOR ET BAR", + "code_postal": "12270", + "coordonnees_gps": [ + 44.2000941717, + 2.08598279329 + ], + "libelle_d_acheminement": "BOR ET BAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08598279329, + 44.2000941717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adf47494ae1b64647714463f24c7652bec5d862a", + "fields": { + "code_commune_insee": "12032", + "nom_de_la_commune": "BOUSSAC", + "code_postal": "12160", + "coordonnees_gps": [ + 44.2956919564, + 2.37751335609 + ], + "libelle_d_acheminement": "BOUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37751335609, + 44.2956919564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6afab971d6c43a0cf2e79cb43bde6f15a29ac8c", + "fields": { + "code_commune_insee": "12034", + "nom_de_la_commune": "BRANDONNET", + "code_postal": "12350", + "coordonnees_gps": [ + 44.3823756053, + 2.1374677844 + ], + "libelle_d_acheminement": "BRANDONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1374677844, + 44.3823756053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6eb1c8be5e6541eb2ef93f21f65d84eaf818b113", + "fields": { + "code_commune_insee": "12042", + "nom_de_la_commune": "CALMELS ET LE VIALA", + "code_postal": "12400", + "coordonnees_gps": [ + 43.95542291, + 2.75841981289 + ], + "libelle_d_acheminement": "CALMELS ET LE VIALA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75841981289, + 43.95542291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d238227e524d4cece1b1f3e99ea9291f8713318a", + "fields": { + "code_commune_insee": "12046", + "nom_de_la_commune": "CAMJAC", + "code_postal": "12800", + "coordonnees_gps": [ + 44.1792869286, + 2.39518735368 + ], + "libelle_d_acheminement": "CAMJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39518735368, + 44.1792869286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8c2738c616f58d3a2fcfa87057e0076084512e8", + "fields": { + "code_commune_insee": "12048", + "nom_de_la_commune": "CAMPOURIEZ", + "code_postal": "12140", + "coordonnees_gps": [ + 44.6808744001, + 2.60936956955 + ], + "libelle_d_acheminement": "CAMPOURIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60936956955, + 44.6808744001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33dc2af95080916ea8cc07562be1510cfff0b270", + "fields": { + "ligne_5": "VORS", + "code_commune_insee": "12056", + "libelle_d_acheminement": "BARAQUEVILLE", + "code_postal": "12160", + "nom_de_la_commune": "BARAQUEVILLE", + "coordonnees_gps": [ + 44.2810938954, + 2.44964862339 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44964862339, + 44.2810938954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eab1594d50ff6056b13908dae211ddd6628cd9ec", + "fields": { + "code_commune_insee": "12058", + "nom_de_la_commune": "CASSUEJOULS", + "code_postal": "12210", + "coordonnees_gps": [ + 44.7223970654, + 2.81116036535 + ], + "libelle_d_acheminement": "CASSUEJOULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81116036535, + 44.7223970654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd910f7bd4b86f0c155588286f9659a49ae647a0", + "fields": { + "code_commune_insee": "12063", + "nom_de_la_commune": "LA CAVALERIE", + "code_postal": "12230", + "coordonnees_gps": [ + 44.0119187928, + 3.1838932062 + ], + "libelle_d_acheminement": "LA CAVALERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1838932062, + 44.0119187928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40e0c05143e225d337848f24e3064a0314268ea2", + "fields": { + "ligne_5": "CONQUES", + "code_commune_insee": "12076", + "libelle_d_acheminement": "CONQUES EN ROUERGUE", + "code_postal": "12320", + "nom_de_la_commune": "CONQUES EN ROUERGUE", + "coordonnees_gps": [ + 44.5952473002, + 2.4201643341 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4201643341, + 44.5952473002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e26f68e0944aceeae20de774a8ef363a4cdc6212", + "fields": { + "code_commune_insee": "12088", + "nom_de_la_commune": "CURIERES", + "code_postal": "12210", + "coordonnees_gps": [ + 44.6493232738, + 2.89170192914 + ], + "libelle_d_acheminement": "CURIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89170192914, + 44.6493232738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7da72d5e3cc2619dc4fe827519da9b6e54d47da", + "fields": { + "code_commune_insee": "12095", + "nom_de_la_commune": "ESCANDOLIERES", + "code_postal": "12390", + "coordonnees_gps": [ + 44.4713685405, + 2.34981095365 + ], + "libelle_d_acheminement": "ESCANDOLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34981095365, + 44.4713685405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc8deb4f8321b91b66f5462d0020f3f3d063def7", + "fields": { + "code_commune_insee": "12100", + "nom_de_la_commune": "FIRMI", + "code_postal": "12300", + "coordonnees_gps": [ + 44.5476858944, + 2.32505415911 + ], + "libelle_d_acheminement": "FIRMI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32505415911, + 44.5476858944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "152864263cb59b2ada83c7a3f5a545a13fa6fae6", + "fields": { + "code_commune_insee": "12107", + "nom_de_la_commune": "GAILLAC D AVEYRON", + "code_postal": "12310", + "coordonnees_gps": [ + 44.3616362767, + 2.90279259177 + ], + "libelle_d_acheminement": "GAILLAC D AVEYRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90279259177, + 44.3616362767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12996c8642ab76d47de803926005803e7c6bfa5e", + "fields": { + "code_commune_insee": "12108", + "nom_de_la_commune": "GALGAN", + "code_postal": "12220", + "coordonnees_gps": [ + 44.5034642584, + 2.17991482623 + ], + "libelle_d_acheminement": "GALGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17991482623, + 44.5034642584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e55e76640184c7a7b8e7ea4b6b51661942402966", + "fields": { + "code_commune_insee": "12111", + "nom_de_la_commune": "GOUTRENS", + "code_postal": "12390", + "coordonnees_gps": [ + 44.4387236873, + 2.36634361552 + ], + "libelle_d_acheminement": "GOUTRENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36634361552, + 44.4387236873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "738c45ee20020baa29502f667d521cea158b98fa", + "fields": { + "code_commune_insee": "12118", + "nom_de_la_commune": "LACROIX BARREZ", + "code_postal": "12600", + "coordonnees_gps": [ + 44.7740969163, + 2.64249748711 + ], + "libelle_d_acheminement": "LACROIX BARREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64249748711, + 44.7740969163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ae278b56a8e1004ccca63f3155d528ed41ef015", + "fields": { + "code_commune_insee": "12121", + "nom_de_la_commune": "LANUEJOULS", + "code_postal": "12350", + "coordonnees_gps": [ + 44.4236494726, + 2.16109197679 + ], + "libelle_d_acheminement": "LANUEJOULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16109197679, + 44.4236494726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e88a51b0d00ca37a49f9cf9174c0e4afa1fb53a6", + "fields": { + "code_commune_insee": "12125", + "nom_de_la_commune": "LAVAL ROQUECEZIERE", + "code_postal": "12380", + "coordonnees_gps": [ + 43.8122894492, + 2.63515019916 + ], + "libelle_d_acheminement": "LAVAL ROQUECEZIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63515019916, + 43.8122894492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f60aa1f84d1f239e99c29c63780627c6cb65b398", + "fields": { + "code_commune_insee": "12130", + "nom_de_la_commune": "LIVINHAC LE HAUT", + "code_postal": "12300", + "coordonnees_gps": [ + 44.5972432577, + 2.21621082428 + ], + "libelle_d_acheminement": "LIVINHAC LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21621082428, + 44.5972432577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b194f7bc3cbc589af75d348f4b059f3b9e62de9", + "fields": { + "code_commune_insee": "12133", + "nom_de_la_commune": "LUC LA PRIMAUBE", + "code_postal": "12450", + "coordonnees_gps": [ + 44.3056658484, + 2.5364516694 + ], + "libelle_d_acheminement": "LUC LA PRIMAUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5364516694, + 44.3056658484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64c36f70331794da586fe3ff191798e047a8a47f", + "fields": { + "code_commune_insee": "12134", + "nom_de_la_commune": "LUGAN", + "code_postal": "12220", + "coordonnees_gps": [ + 44.4835018832, + 2.25588264756 + ], + "libelle_d_acheminement": "LUGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25588264756, + 44.4835018832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2beac7f8e5c2a7c03290ca4dc98eea50ac2011f1", + "fields": { + "code_commune_insee": "12135", + "nom_de_la_commune": "LUNAC", + "code_postal": "12270", + "coordonnees_gps": [ + 44.2405098268, + 2.10038614517 + ], + "libelle_d_acheminement": "LUNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10038614517, + 44.2405098268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd8c1ef3456add863be69867b368d53c0a06ccde", + "fields": { + "code_commune_insee": "12145", + "nom_de_la_commune": "MILLAU", + "code_postal": "12100", + "coordonnees_gps": [ + 44.0976252203, + 3.11705384129 + ], + "libelle_d_acheminement": "MILLAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11705384129, + 44.0976252203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e72f42fe2b24af43ae6747e84efce5194cff5909", + "fields": { + "code_commune_insee": "12156", + "nom_de_la_commune": "MONTPEYROUX", + "code_postal": "12210", + "coordonnees_gps": [ + 44.6349727499, + 2.78247380179 + ], + "libelle_d_acheminement": "MONTPEYROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78247380179, + 44.6349727499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48ded6c0835bff5c846dc8464f22b6cb12d8c366", + "fields": { + "code_commune_insee": "12157", + "nom_de_la_commune": "MONTROZIER", + "code_postal": "12630", + "coordonnees_gps": [ + 44.394981764, + 2.72127812252 + ], + "libelle_d_acheminement": "MONTROZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72127812252, + 44.394981764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5adf0c22768bf4af9eab2c742d845f1fcc2f2d82", + "fields": { + "ligne_5": "GAGES", + "code_commune_insee": "12157", + "libelle_d_acheminement": "MONTROZIER", + "code_postal": "12630", + "nom_de_la_commune": "MONTROZIER", + "coordonnees_gps": [ + 44.394981764, + 2.72127812252 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72127812252, + 44.394981764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee5babc96b5824f1c06e9d21c15cfa25e5f919fc", + "fields": { + "code_commune_insee": "12160", + "nom_de_la_commune": "MOSTUEJOULS", + "code_postal": "12720", + "coordonnees_gps": [ + 44.2252486217, + 3.18271814024 + ], + "libelle_d_acheminement": "MOSTUEJOULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18271814024, + 44.2252486217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d22dc44afdbc07b7f618dc0d591726f517dff8b8", + "fields": { + "code_commune_insee": "12172", + "nom_de_la_commune": "LE NAYRAC", + "code_postal": "12190", + "coordonnees_gps": [ + 44.605562454, + 2.66952444111 + ], + "libelle_d_acheminement": "LE NAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66952444111, + 44.605562454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98801df549d350cb0e6dfa0d0030e66e1777f9d0", + "fields": { + "code_commune_insee": "12174", + "nom_de_la_commune": "OLEMPS", + "code_postal": "12510", + "coordonnees_gps": [ + 44.338471851, + 2.54774198749 + ], + "libelle_d_acheminement": "OLEMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54774198749, + 44.338471851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4386728b9b5ca57524e11ae9877c446c09844267", + "fields": { + "code_commune_insee": "12182", + "nom_de_la_commune": "PIERREFICHE", + "code_postal": "12130", + "coordonnees_gps": [ + 44.4338467479, + 2.92167553343 + ], + "libelle_d_acheminement": "PIERREFICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92167553343, + 44.4338467479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "584bd73df9a7c667a0f4d7fc63ca2c6577df30ea", + "fields": { + "code_commune_insee": "12189", + "nom_de_la_commune": "PRADINAS", + "code_postal": "12240", + "coordonnees_gps": [ + 44.2472252922, + 2.26867905755 + ], + "libelle_d_acheminement": "PRADINAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26867905755, + 44.2472252922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e53fe305f28d21e1a6e1b512bc8654ab4e8102c2", + "fields": { + "code_commune_insee": "12200", + "nom_de_la_commune": "RIVIERE SUR TARN", + "code_postal": "12640", + "coordonnees_gps": [ + 44.2108724191, + 3.12758575217 + ], + "libelle_d_acheminement": "RIVIERE SUR TARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12758575217, + 44.2108724191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "295e66690c1f4620834f511575b3cf0faf161d96", + "fields": { + "code_commune_insee": "12202", + "nom_de_la_commune": "RODEZ", + "code_postal": "12000", + "coordonnees_gps": [ + 44.3582426254, + 2.5672793892 + ], + "libelle_d_acheminement": "RODEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5672793892, + 44.3582426254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3e75a3f7b649668c5e45fdd702fbdd8d2f55790", + "fields": { + "code_commune_insee": "12206", + "nom_de_la_commune": "ROUSSENNAC", + "code_postal": "12220", + "coordonnees_gps": [ + 44.4475523507, + 2.25412829032 + ], + "libelle_d_acheminement": "ROUSSENNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25412829032, + 44.4475523507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b4cac8b6bcf130e24eed91c7e47cfc53e772fa2", + "fields": { + "code_commune_insee": "12213", + "nom_de_la_commune": "ST BEAUZELY", + "code_postal": "12620", + "coordonnees_gps": [ + 44.1692617514, + 2.96666926692 + ], + "libelle_d_acheminement": "ST BEAUZELY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96666926692, + 44.1692617514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa7e8ac4d7781a2eedd3a1b33a5c16391da4934b", + "fields": { + "code_commune_insee": "12220", + "nom_de_la_commune": "STE EULALIE DE CERNON", + "code_postal": "12230", + "coordonnees_gps": [ + 43.960884427, + 3.13884690066 + ], + "libelle_d_acheminement": "STE EULALIE DE CERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13884690066, + 43.960884427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bae24298fc3df434d8341f304360c72dff33a870", + "fields": { + "ligne_5": "GRAISSAC", + "code_commune_insee": "12223", + "libelle_d_acheminement": "ARGENCES EN AUBRAC", + "code_postal": "12420", + "nom_de_la_commune": "ARGENCES EN AUBRAC", + "coordonnees_gps": [ + 44.8003905234, + 2.7434750028 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7434750028, + 44.8003905234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "557303aad00e769f37fc849e8ac4bc98466bdf32", + "fields": { + "ligne_5": "ST GENIEZ D OLT", + "code_commune_insee": "12224", + "libelle_d_acheminement": "ST GENIEZ D OLT ET D AUBRAC", + "code_postal": "12130", + "nom_de_la_commune": "ST GENIEZ D OLT ET D AUBRAC", + "coordonnees_gps": [ + 44.4732674724, + 2.98156818185 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98156818185, + 44.4732674724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34200750897261a1db328bc4970440849549f6fb", + "fields": { + "code_commune_insee": "12227", + "nom_de_la_commune": "ST IGEST", + "code_postal": "12260", + "coordonnees_gps": [ + 44.4455113511, + 2.09133013053 + ], + "libelle_d_acheminement": "ST IGEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09133013053, + 44.4455113511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d6e75223cbb4e3718671a25deb4b76dd2540bb8", + "fields": { + "code_commune_insee": "12229", + "nom_de_la_commune": "ST JEAN D ALCAPIES", + "code_postal": "12250", + "coordonnees_gps": [ + 43.9486517779, + 2.96702587366 + ], + "libelle_d_acheminement": "ST JEAN D ALCAPIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96702587366, + 43.9486517779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de26a326865897334fb1a182cbf262eb354e5118", + "fields": { + "code_commune_insee": "12236", + "nom_de_la_commune": "ST LAURENT DE LEVEZOU", + "code_postal": "12620", + "coordonnees_gps": [ + 44.2089764028, + 2.93837029184 + ], + "libelle_d_acheminement": "ST LAURENT DE LEVEZOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93837029184, + 44.2089764028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df44c7a1afa5e57318522953e7f29a6cf67aff06", + "fields": { + "code_commune_insee": "12238", + "nom_de_la_commune": "ST LEONS", + "code_postal": "12780", + "coordonnees_gps": [ + 44.2231129382, + 2.98202907949 + ], + "libelle_d_acheminement": "ST LEONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98202907949, + 44.2231129382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f58d7269a3283dbe6924e7e270b28dadd4837fe1", + "fields": { + "code_commune_insee": "12239", + "nom_de_la_commune": "ST MARTIN DE LENNE", + "code_postal": "12130", + "coordonnees_gps": [ + 44.4245376835, + 2.96547959933 + ], + "libelle_d_acheminement": "ST MARTIN DE LENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96547959933, + 44.4245376835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "288ecc059412c4a8566bcb27bc5130293c63c876", + "fields": { + "code_commune_insee": "12244", + "nom_de_la_commune": "ST ROME DE TARN", + "code_postal": "12490", + "coordonnees_gps": [ + 44.0328970436, + 2.8904868402 + ], + "libelle_d_acheminement": "ST ROME DE TARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8904868402, + 44.0328970436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a5fd36309bdd31e368099e26efc8a541498785d", + "fields": { + "code_commune_insee": "12246", + "nom_de_la_commune": "ST SANTIN", + "code_postal": "12300", + "coordonnees_gps": [ + 44.6433670294, + 2.25787660358 + ], + "libelle_d_acheminement": "ST SANTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25787660358, + 44.6433670294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6ac9369362955f8d38c32759df5881bdaa03fb1", + "fields": { + "code_commune_insee": "12250", + "nom_de_la_commune": "ST SYMPHORIEN DE THENIERES", + "code_postal": "12460", + "coordonnees_gps": [ + 44.7403646791, + 2.70823948666 + ], + "libelle_d_acheminement": "ST SYMPHORIEN DE THENIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70823948666, + 44.7403646791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b130f9a082e1066206ee7ef73544c9ea7d545b57", + "fields": { + "ligne_5": "ST GERVAIS", + "code_commune_insee": "12250", + "libelle_d_acheminement": "ST SYMPHORIEN DE THENIERES", + "code_postal": "12460", + "nom_de_la_commune": "ST SYMPHORIEN DE THENIERES", + "coordonnees_gps": [ + 44.7403646791, + 2.70823948666 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70823948666, + 44.7403646791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b939a7b81d2c90009dc5b68272eb2f689fbceb4", + "fields": { + "ligne_5": "GELLE", + "code_commune_insee": "12257", + "libelle_d_acheminement": "CAUSSE ET DIEGE", + "code_postal": "12700", + "nom_de_la_commune": "CAUSSE ET DIEGE", + "coordonnees_gps": [ + 44.5282954974, + 2.03482919718 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03482919718, + 44.5282954974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa793a8d6d49c940e8b1ab7a14e8d130cd55e0f3", + "fields": { + "ligne_5": "LAPANOUSE", + "code_commune_insee": "12270", + "libelle_d_acheminement": "SEVERAC D AVEYRON", + "code_postal": "12150", + "nom_de_la_commune": "SEVERAC D AVEYRON", + "coordonnees_gps": [ + 44.3000638764, + 3.08915100601 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08915100601, + 44.3000638764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b837e96447805e386a817e3c0376ff59ed1f51aa", + "fields": { + "code_commune_insee": "12280", + "nom_de_la_commune": "THERONDELS", + "code_postal": "12600", + "coordonnees_gps": [ + 44.8944584471, + 2.7419390961 + ], + "libelle_d_acheminement": "THERONDELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7419390961, + 44.8944584471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7005235f2a14f6bcad6d033154987bc70645df88", + "fields": { + "code_commune_insee": "12283", + "nom_de_la_commune": "TREMOUILLES", + "code_postal": "12290", + "coordonnees_gps": [ + 44.2395334463, + 2.63787503677 + ], + "libelle_d_acheminement": "TREMOUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63787503677, + 44.2395334463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39b787a4980731f27ed7d6ed295470ef81d9efc4", + "fields": { + "code_commune_insee": "12284", + "nom_de_la_commune": "LE TRUEL", + "code_postal": "12430", + "coordonnees_gps": [ + 44.0536064205, + 2.74751943168 + ], + "libelle_d_acheminement": "LE TRUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74751943168, + 44.0536064205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8e0b455da20121ef12bfb1b5260d1acff0b5a8f", + "fields": { + "code_commune_insee": "12298", + "nom_de_la_commune": "VILLECOMTAL", + "code_postal": "12580", + "coordonnees_gps": [ + 44.5432878165, + 2.57548637915 + ], + "libelle_d_acheminement": "VILLECOMTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57548637915, + 44.5432878165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05ffd0938badc6f5e57e5d69018ab2cfaeade2b0", + "fields": { + "code_commune_insee": "12307", + "nom_de_la_commune": "CURAN", + "code_postal": "12410", + "coordonnees_gps": [ + 44.1978533166, + 2.85380503746 + ], + "libelle_d_acheminement": "CURAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85380503746, + 44.1978533166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "568a2e01c82be7da2dbe7cc48e42ffe54cb76a94", + "fields": { + "ligne_5": "LE SAMBUC", + "code_commune_insee": "13004", + "libelle_d_acheminement": "ARLES", + "code_postal": "13200", + "nom_de_la_commune": "ARLES", + "coordonnees_gps": [ + 43.5468692378, + 4.66215642574 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66215642574, + 43.5468692378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dabb85b5137bef6ce7ce506a3bd84bb4c240efeb", + "fields": { + "ligne_5": "CHARREL", + "code_commune_insee": "13005", + "libelle_d_acheminement": "AUBAGNE", + "code_postal": "13400", + "nom_de_la_commune": "AUBAGNE", + "coordonnees_gps": [ + 43.2934843764, + 5.56331273477 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56331273477, + 43.2934843764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86d9fae74d21ffa52fb12b41792deaeba6562565", + "fields": { + "code_commune_insee": "13007", + "nom_de_la_commune": "AURIOL", + "code_postal": "13390", + "coordonnees_gps": [ + 43.3607946934, + 5.6583901873 + ], + "libelle_d_acheminement": "AURIOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6583901873, + 43.3607946934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d369d150bab577181e44587be6c3cfa03437db14", + "fields": { + "ligne_5": "LES BOYERS", + "code_commune_insee": "13016", + "libelle_d_acheminement": "LA BOUILLADISSE", + "code_postal": "13720", + "nom_de_la_commune": "LA BOUILLADISSE", + "coordonnees_gps": [ + 43.397192269, + 5.61980749093 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61980749093, + 43.397192269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67de020fbc025be040bfc19935e7a9187bc9bbd1", + "fields": { + "code_commune_insee": "13022", + "nom_de_la_commune": "CASSIS", + "code_postal": "13260", + "coordonnees_gps": [ + 43.2230470065, + 5.55117810991 + ], + "libelle_d_acheminement": "CASSIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55117810991, + 43.2230470065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca4f26df467aa3fae3bb4b31afcb1900293806f6", + "fields": { + "code_commune_insee": "13023", + "nom_de_la_commune": "CEYRESTE", + "code_postal": "13600", + "coordonnees_gps": [ + 43.2238501508, + 5.63636473345 + ], + "libelle_d_acheminement": "CEYRESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63636473345, + 43.2238501508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97dd2aedf87984dd31d554bc319ce2936dc859c7", + "fields": { + "code_commune_insee": "13025", + "nom_de_la_commune": "CHATEAUNEUF LE ROUGE", + "code_postal": "13790", + "coordonnees_gps": [ + 43.4912659702, + 5.56821681952 + ], + "libelle_d_acheminement": "CHATEAUNEUF LE ROUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56821681952, + 43.4912659702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b40b41a47d8570882ac6f442feddde7428b20beb", + "fields": { + "code_commune_insee": "13032", + "nom_de_la_commune": "EGUILLES", + "code_postal": "13510", + "coordonnees_gps": [ + 43.5711208794, + 5.32885751916 + ], + "libelle_d_acheminement": "EGUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32885751916, + 43.5711208794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70dcbb96c6d7ef521c93517352b945aeb05e5837", + "fields": { + "code_commune_insee": "13033", + "nom_de_la_commune": "ENSUES LA REDONNE", + "code_postal": "13820", + "coordonnees_gps": [ + 43.3536539601, + 5.19960307575 + ], + "libelle_d_acheminement": "ENSUES LA REDONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19960307575, + 43.3536539601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c25c022fdf940190e7b89000b5bcfdd98b28dd4e", + "fields": { + "code_commune_insee": "13040", + "nom_de_la_commune": "FUVEAU", + "code_postal": "13710", + "coordonnees_gps": [ + 43.4594948454, + 5.55305747206 + ], + "libelle_d_acheminement": "FUVEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55305747206, + 43.4594948454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f28893a7db17640df751157b45023f39d3f8eed0", + "fields": { + "ligne_5": "LA BARQUE", + "code_commune_insee": "13040", + "libelle_d_acheminement": "FUVEAU", + "code_postal": "13710", + "nom_de_la_commune": "FUVEAU", + "coordonnees_gps": [ + 43.4594948454, + 5.55305747206 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55305747206, + 43.4594948454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61ebd20fd7947b83edac2b8c4fc2da621bfde26b", + "fields": { + "ligne_5": "LAURE", + "code_commune_insee": "13043", + "libelle_d_acheminement": "GIGNAC LA NERTHE", + "code_postal": "13180", + "nom_de_la_commune": "GIGNAC LA NERTHE", + "coordonnees_gps": [ + 43.3905074118, + 5.22834752895 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22834752895, + 43.3905074118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "358c871a73c64be687ce49b7c2bab929bf423080", + "fields": { + "ligne_5": "LA COURONNE CARRO", + "code_commune_insee": "13056", + "libelle_d_acheminement": "MARTIGUES", + "code_postal": "13500", + "nom_de_la_commune": "MARTIGUES", + "coordonnees_gps": [ + 43.3798920489, + 5.04945402314 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04945402314, + 43.3798920489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d5a5c55eaf56b02ded91bd84461c56edb7d86c2", + "fields": { + "code_commune_insee": "13060", + "nom_de_la_commune": "MEYREUIL", + "code_postal": "13590", + "coordonnees_gps": [ + 43.4910522546, + 5.50062811927 + ], + "libelle_d_acheminement": "MEYREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50062811927, + 43.4910522546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ef20835b377c7430b831a8389239e4b72ff6678", + "fields": { + "code_commune_insee": "13062", + "nom_de_la_commune": "MIMET", + "code_postal": "13105", + "coordonnees_gps": [ + 43.4128431127, + 5.49899491017 + ], + "libelle_d_acheminement": "MIMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49899491017, + 43.4128431127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32f52a58a3170775a6526b2c450ca6443c8374a7", + "fields": { + "ligne_5": "LES CADENEAUX", + "code_commune_insee": "13071", + "libelle_d_acheminement": "LES PENNES MIRABEAU", + "code_postal": "13170", + "nom_de_la_commune": "LES PENNES MIRABEAU", + "coordonnees_gps": [ + 43.4026791235, + 5.31547094057 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31547094057, + 43.4026791235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2056d0da1e23c1f8879505bd3e26c4d2da4b82f0", + "fields": { + "code_commune_insee": "13076", + "nom_de_la_commune": "PLAN D ORGON", + "code_postal": "13750", + "coordonnees_gps": [ + 43.8181261115, + 5.00228183234 + ], + "libelle_d_acheminement": "PLAN D ORGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00228183234, + 43.8181261115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c94f2742ac9d0799432594b320c099bd2d2a74eb", + "fields": { + "code_commune_insee": "13084", + "nom_de_la_commune": "LA ROQUE D ANTHERON", + "code_postal": "13640", + "coordonnees_gps": [ + 43.7176409517, + 5.30157633559 + ], + "libelle_d_acheminement": "LA ROQUE D ANTHERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30157633559, + 43.7176409517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0116fb0022adfb199cb5f0ca88d20e8b8d1fd489", + "fields": { + "ligne_5": "ROQUEFORT", + "code_commune_insee": "13085", + "libelle_d_acheminement": "ROQUEFORT LA BEDOULE", + "code_postal": "13830", + "nom_de_la_commune": "ROQUEFORT LA BEDOULE", + "coordonnees_gps": [ + 43.2510907217, + 5.62904634328 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62904634328, + 43.2510907217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54c8011988bbcbde8fc2ad9832278007ce956283", + "fields": { + "code_commune_insee": "13089", + "nom_de_la_commune": "ST ANDIOL", + "code_postal": "13670", + "coordonnees_gps": [ + 43.8307575371, + 4.95027358923 + ], + "libelle_d_acheminement": "ST ANDIOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95027358923, + 43.8307575371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa10dba42414d8d75452e627445359a278c1573b", + "fields": { + "code_commune_insee": "13092", + "nom_de_la_commune": "ST CHAMAS", + "code_postal": "13250", + "coordonnees_gps": [ + 43.5436905217, + 5.07329988936 + ], + "libelle_d_acheminement": "ST CHAMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07329988936, + 43.5436905217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94e121f3af15582cd3bee93e0437f8e9e087686d", + "fields": { + "code_commune_insee": "13100", + "nom_de_la_commune": "ST REMY DE PROVENCE", + "code_postal": "13210", + "coordonnees_gps": [ + 43.7834249015, + 4.85366665286 + ], + "libelle_d_acheminement": "ST REMY DE PROVENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85366665286, + 43.7834249015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7da6e9a560213818d13373539db6c6f7cf3699b0", + "fields": { + "code_commune_insee": "13107", + "nom_de_la_commune": "SIMIANE COLLONGUE", + "code_postal": "13109", + "coordonnees_gps": [ + 43.411551859, + 5.43796924424 + ], + "libelle_d_acheminement": "SIMIANE COLLONGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43796924424, + 43.411551859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "610683add3ffedd5e96697fb08bdf6fdc4d9d861", + "fields": { + "code_commune_insee": "13109", + "nom_de_la_commune": "LE THOLONET", + "code_postal": "13100", + "coordonnees_gps": [ + 43.5196914136, + 5.50819253944 + ], + "libelle_d_acheminement": "LE THOLONET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50819253944, + 43.5196914136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "587797b185b3fa82b28304f14a0081fb14a8274a", + "fields": { + "code_commune_insee": "13114", + "nom_de_la_commune": "VENTABREN", + "code_postal": "13122", + "coordonnees_gps": [ + 43.5422528534, + 5.30622321985 + ], + "libelle_d_acheminement": "VENTABREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30622321985, + 43.5422528534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efc12f6afee78dedf96c6d58ec41ce327f52ccf3", + "fields": { + "code_commune_insee": "13116", + "nom_de_la_commune": "VERQUIERES", + "code_postal": "13670", + "coordonnees_gps": [ + 43.8386551607, + 4.9188995104 + ], + "libelle_d_acheminement": "VERQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9188995104, + 43.8386551607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8578d77d57da3210fb26594aaf10311079e8f5aa", + "fields": { + "code_commune_insee": "13117", + "nom_de_la_commune": "VITROLLES", + "code_postal": "13127", + "coordonnees_gps": [ + 43.4497831674, + 5.26357787665 + ], + "libelle_d_acheminement": "VITROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26357787665, + 43.4497831674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9184170ddd8226df0cfccf7d777dfb6d06ae4ef0", + "fields": { + "code_commune_insee": "13118", + "nom_de_la_commune": "COUDOUX", + "code_postal": "13111", + "coordonnees_gps": [ + 43.5600515363, + 5.25422160677 + ], + "libelle_d_acheminement": "COUDOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25422160677, + 43.5600515363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d28c81a2b0b5c28bc054725481ceccdbdbb2f5da", + "fields": { + "code_commune_insee": "13203", + "nom_de_la_commune": "MARSEILLE 03", + "code_postal": "13003", + "coordonnees_gps": [ + 43.3121200046, + 5.38010981423 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38010981423, + 43.3121200046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d84103b620984c57c00f777accb4112ecf6c90b", + "fields": { + "code_commune_insee": "13205", + "nom_de_la_commune": "MARSEILLE 05", + "code_postal": "13005", + "coordonnees_gps": [ + 43.2928061953, + 5.3975770959 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3975770959, + 43.2928061953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84032ced08855246b70ce908f07656e85d3adaa9", + "fields": { + "ligne_5": "LA VALENTINE", + "code_commune_insee": "13211", + "libelle_d_acheminement": "MARSEILLE", + "code_postal": "13011", + "nom_de_la_commune": "MARSEILLE 11", + "coordonnees_gps": [ + 43.2884471881, + 5.48381466229 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48381466229, + 43.2884471881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43ffebeb81418e923cbed3900e69e7d8a293cbcf", + "fields": { + "code_commune_insee": "13215", + "nom_de_la_commune": "MARSEILLE 15", + "code_postal": "13015", + "coordonnees_gps": [ + 43.358794754, + 5.363407897 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.363407897, + 43.358794754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "044a7762067e2eabdb961c69b758f318af03d7a1", + "fields": { + "code_commune_insee": "14003", + "nom_de_la_commune": "AGY", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2376795165, + -0.779194569684 + ], + "libelle_d_acheminement": "AGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.779194569684, + 49.2376795165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db902f8849cab9f33bba2587a1f09bf509d1fec0", + "fields": { + "code_commune_insee": "14006", + "nom_de_la_commune": "AMAYE SUR ORNE", + "code_postal": "14210", + "coordonnees_gps": [ + 49.0911214253, + -0.434224922695 + ], + "libelle_d_acheminement": "AMAYE SUR ORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.434224922695, + 49.0911214253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f695f6fe4c7410dd770b43eb38e3488281aa4861", + "fields": { + "code_commune_insee": "14012", + "nom_de_la_commune": "ANGERVILLE", + "code_postal": "14430", + "coordonnees_gps": [ + 49.2443066978, + -0.0275594103031 + ], + "libelle_d_acheminement": "ANGERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0275594103031, + 49.2443066978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aa78d7bfd29ee91ebd54471588b9980131a5e8e", + "fields": { + "ligne_5": "CAMPANDRE VALCONGRAIN", + "code_commune_insee": "14027", + "libelle_d_acheminement": "LES MONTS D AUNAY", + "code_postal": "14260", + "nom_de_la_commune": "LES MONTS D AUNAY", + "coordonnees_gps": [ + 49.0144785445, + -0.633929762668 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.633929762668, + 49.0144785445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "284af8700fba39f81600a15e19447647487a51bd", + "fields": { + "ligne_5": "ONDEFONTAINE", + "code_commune_insee": "14027", + "libelle_d_acheminement": "LES MONTS D AUNAY", + "code_postal": "14260", + "nom_de_la_commune": "LES MONTS D AUNAY", + "coordonnees_gps": [ + 49.0144785445, + -0.633929762668 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.633929762668, + 49.0144785445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8469a428df77fc017d7fe0e7d85f35bd89a50fd0", + "fields": { + "ligne_5": "ROUCAMPS", + "code_commune_insee": "14027", + "libelle_d_acheminement": "LES MONTS D AUNAY", + "code_postal": "14260", + "nom_de_la_commune": "LES MONTS D AUNAY", + "coordonnees_gps": [ + 49.0144785445, + -0.633929762668 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.633929762668, + 49.0144785445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96296f674f32c1000db590b90376ecb0f689e45a", + "fields": { + "ligne_5": "LE PLESSIS GRIMOULT", + "code_commune_insee": "14027", + "libelle_d_acheminement": "LES MONTS D AUNAY", + "code_postal": "14770", + "nom_de_la_commune": "LES MONTS D AUNAY", + "coordonnees_gps": [ + 49.0144785445, + -0.633929762668 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.633929762668, + 49.0144785445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f1fc637321a464a84cc755326a2b85c83420bdf", + "fields": { + "code_commune_insee": "14034", + "nom_de_la_commune": "AVENAY", + "code_postal": "14210", + "coordonnees_gps": [ + 49.0957497746, + -0.464408003458 + ], + "libelle_d_acheminement": "AVENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.464408003458, + 49.0957497746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edef5f91304220ffb5776ccb1c3dd9c25d67699a", + "fields": { + "code_commune_insee": "14038", + "nom_de_la_commune": "BANVILLE", + "code_postal": "14480", + "coordonnees_gps": [ + 49.3091629714, + -0.485951971964 + ], + "libelle_d_acheminement": "BANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.485951971964, + 49.3091629714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4bf04663ab70556575814a0e5f981b4e573cdb6", + "fields": { + "code_commune_insee": "14045", + "nom_de_la_commune": "BASSENEVILLE", + "code_postal": "14670", + "coordonnees_gps": [ + 49.2067455591, + -0.135002451422 + ], + "libelle_d_acheminement": "BASSENEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.135002451422, + 49.2067455591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8da2bb8750f462e59957c1fe86ff8a3e05cbdb15", + "fields": { + "code_commune_insee": "14047", + "nom_de_la_commune": "BAYEUX", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2776559195, + -0.704625495378 + ], + "libelle_d_acheminement": "BAYEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.704625495378, + 49.2776559195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "149680778ba7bce784bff062609adf7dbd820288", + "fields": { + "code_commune_insee": "14050", + "nom_de_la_commune": "LA BAZOQUE", + "code_postal": "14490", + "coordonnees_gps": [ + 49.1535081338, + -0.877591469858 + ], + "libelle_d_acheminement": "LA BAZOQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.877591469858, + 49.1535081338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5bae46c72937c4ddad70618480cb04d523a8090", + "fields": { + "ligne_5": "BEAULIEU", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "316b18648865bc8318c397fb976693bc0a5ba958", + "fields": { + "ligne_5": "LA FERRIERE AU DOYEN", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d41ad187e141e2e20b742d5cacd5dc815a46c71a", + "fields": { + "ligne_5": "MONTCHAUVET", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e9f9778393fc526878ff909b57b586c3c9fb649", + "fields": { + "ligne_5": "STE MARIE LAUMONT", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90a39038da23ea44224f3e24b5dadb7f8f800cb3", + "fields": { + "ligne_5": "ST MARTIN DES BESACES", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3b60ae8993984625f91456822cc21446a0cc6cb", + "fields": { + "code_commune_insee": "14078", + "nom_de_la_commune": "BLAY", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2804374516, + -0.836134690578 + ], + "libelle_d_acheminement": "BLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.836134690578, + 49.2804374516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c54fed3964f0e7070055dd2a473f515a9bfec374", + "fields": { + "code_commune_insee": "14090", + "nom_de_la_commune": "BOULON", + "code_postal": "14220", + "coordonnees_gps": [ + 49.047524459, + -0.37826606912 + ], + "libelle_d_acheminement": "BOULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37826606912, + 49.047524459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5ffd9063e0c704d19b055990788ef400254c4f3", + "fields": { + "code_commune_insee": "14097", + "nom_de_la_commune": "BRETTEVILLE LE RABET", + "code_postal": "14190", + "coordonnees_gps": [ + 49.0297158634, + -0.258286160153 + ], + "libelle_d_acheminement": "BRETTEVILLE LE RABET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.258286160153, + 49.0297158634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dc115b215183a77d1d6eeced992f247e3dadfa0", + "fields": { + "code_commune_insee": "14101", + "nom_de_la_commune": "BRETTEVILLE SUR ODON", + "code_postal": "14760", + "coordonnees_gps": [ + 49.1731671291, + -0.422220210671 + ], + "libelle_d_acheminement": "BRETTEVILLE SUR ODON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.422220210671, + 49.1731671291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3400d36bac4f13ee671306733503c2dc182716ef", + "fields": { + "code_commune_insee": "14102", + "nom_de_la_commune": "LE BREUIL EN AUGE", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2278153726, + 0.218766616218 + ], + "libelle_d_acheminement": "LE BREUIL EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.218766616218, + 49.2278153726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd71e30ff66a7c3344c8870bfb37818cf40914a7", + "fields": { + "code_commune_insee": "14103", + "nom_de_la_commune": "LE BREUIL EN BESSIN", + "code_postal": "14330", + "coordonnees_gps": [ + 49.2546153237, + -0.855456824722 + ], + "libelle_d_acheminement": "LE BREUIL EN BESSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.855456824722, + 49.2546153237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67564e9c4a30279f0ebe7392a880e31e7a4610f1", + "fields": { + "code_commune_insee": "14104", + "nom_de_la_commune": "LE BREVEDENT", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2269826384, + 0.293881828632 + ], + "libelle_d_acheminement": "LE BREVEDENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.293881828632, + 49.2269826384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f460ac22a547c08bd911839a9c9947b9af03964", + "fields": { + "code_commune_insee": "14106", + "nom_de_la_commune": "BREVILLE LES MONTS", + "code_postal": "14860", + "coordonnees_gps": [ + 49.2360824637, + -0.221042310396 + ], + "libelle_d_acheminement": "BREVILLE LES MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.221042310396, + 49.2360824637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4737976d1c0b6d5f1780d62a87bad405370be12", + "fields": { + "code_commune_insee": "14125", + "nom_de_la_commune": "CAMBES EN PLAINE", + "code_postal": "14610", + "coordonnees_gps": [ + 49.2314887593, + -0.383466697712 + ], + "libelle_d_acheminement": "CAMBES EN PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.383466697712, + 49.2314887593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6305a2b5f3b3a4a89afb59eabdd5bd8c6d69b1c3", + "fields": { + "code_commune_insee": "14126", + "nom_de_la_commune": "CAMBREMER", + "code_postal": "14340", + "coordonnees_gps": [ + 49.1466063945, + 0.0539056758479 + ], + "libelle_d_acheminement": "CAMBREMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0539056758479, + 49.1466063945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51e08579916496db38815fed46d0f16d4eecea84", + "fields": { + "ligne_5": "ST AUBIN SUR ALGOT", + "code_commune_insee": "14126", + "libelle_d_acheminement": "CAMBREMER", + "code_postal": "14340", + "nom_de_la_commune": "CAMBREMER", + "coordonnees_gps": [ + 49.1466063945, + 0.0539056758479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0539056758479, + 49.1466063945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dd05255164849ee6bdea8a6e32424484d036206", + "fields": { + "ligne_5": "ST LAURENT DU MONT", + "code_commune_insee": "14126", + "libelle_d_acheminement": "CAMBREMER", + "code_postal": "14340", + "nom_de_la_commune": "CAMBREMER", + "coordonnees_gps": [ + 49.1466063945, + 0.0539056758479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0539056758479, + 49.1466063945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "954a9de865c99042e0d6a5cc1413f473e10549d3", + "fields": { + "code_commune_insee": "14131", + "nom_de_la_commune": "CANAPVILLE", + "code_postal": "14800", + "coordonnees_gps": [ + 49.317093511, + 0.136082039095 + ], + "libelle_d_acheminement": "CANAPVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.136082039095, + 49.317093511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb3914d7346fdf23b6a53f7bc44561685bf00662", + "fields": { + "code_commune_insee": "14132", + "nom_de_la_commune": "CANCHY", + "code_postal": "14230", + "coordonnees_gps": [ + 49.3308597284, + -0.984893554822 + ], + "libelle_d_acheminement": "CANCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.984893554822, + 49.3308597284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "092b50d139a71e337e61beda00e70ae1008d5ef4", + "fields": { + "code_commune_insee": "14141", + "nom_de_la_commune": "CASTILLON EN AUGE", + "code_postal": "14140", + "coordonnees_gps": [ + 49.0346382534, + 0.0919325582529 + ], + "libelle_d_acheminement": "CASTILLON EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0919325582529, + 49.0346382534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77603dd831920c34d252035a289f08b5fadc77ff", + "fields": { + "ligne_5": "LA VACQUERIE", + "code_commune_insee": "14143", + "libelle_d_acheminement": "CAUMONT SUR AURE", + "code_postal": "14240", + "nom_de_la_commune": "CAUMONT SUR AURE", + "coordonnees_gps": [ + 49.0964311403, + -0.812430741234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.812430741234, + 49.0964311403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "742420a55c7a0f7455686abd0446b576ce0ff8f7", + "fields": { + "code_commune_insee": "14145", + "nom_de_la_commune": "CAUVICOURT", + "code_postal": "14190", + "coordonnees_gps": [ + 49.0475103086, + -0.259897379565 + ], + "libelle_d_acheminement": "CAUVICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.259897379565, + 49.0475103086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1df265cea59f122e3aaf3d02fe29479e47d86f3c", + "fields": { + "code_commune_insee": "14149", + "nom_de_la_commune": "CESNY AUX VIGNES", + "code_postal": "14270", + "coordonnees_gps": [ + 49.086293057, + -0.120979196135 + ], + "libelle_d_acheminement": "CESNY AUX VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.120979196135, + 49.086293057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bf6aa8a88b378605011c554125aef1ed3272e4b", + "fields": { + "ligne_5": "ACQUEVILLE", + "code_commune_insee": "14150", + "libelle_d_acheminement": "CESNY LES SOURCES", + "code_postal": "14220", + "nom_de_la_commune": "CESNY LES SOURCES", + "coordonnees_gps": [ + 48.9853267914, + -0.394469235831 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.394469235831, + 48.9853267914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d9c537a256718630c2c6f1c865526fc744dff53", + "fields": { + "code_commune_insee": "14172", + "nom_de_la_commune": "COMMES", + "code_postal": "14520", + "coordonnees_gps": [ + 49.3349999304, + -0.739011655856 + ], + "libelle_d_acheminement": "COMMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.739011655856, + 49.3349999304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80703795887ad7b2d7306dfcd7b43716e20f547a", + "fields": { + "ligne_5": "LENAULT", + "code_commune_insee": "14174", + "libelle_d_acheminement": "CONDE EN NORMANDIE", + "code_postal": "14770", + "nom_de_la_commune": "CONDE EN NORMANDIE", + "coordonnees_gps": [ + 48.8496985115, + -0.562504676497 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.562504676497, + 48.8496985115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95dc3189f9b2f9071c46528151f16abfc0aae302", + "fields": { + "code_commune_insee": "14182", + "nom_de_la_commune": "CORMOLAIN", + "code_postal": "14240", + "coordonnees_gps": [ + 49.1293685393, + -0.863042429184 + ], + "libelle_d_acheminement": "CORMOLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863042429184, + 49.1293685393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9e92e58fde1a1b2bb36ce1509727a74f64967a9", + "fields": { + "code_commune_insee": "14195", + "nom_de_la_commune": "COURVAUDON", + "code_postal": "14260", + "coordonnees_gps": [ + 49.026847125, + -0.573849021265 + ], + "libelle_d_acheminement": "COURVAUDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.573849021265, + 49.026847125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "106754c18f332245f97ed1e1b9d66dd20efbe218", + "fields": { + "code_commune_insee": "14214", + "nom_de_la_commune": "CUSSY", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2837425646, + -0.762152432612 + ], + "libelle_d_acheminement": "CUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.762152432612, + 49.2837425646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6fe82b5d05c97dffe0f85ae5faadeaa06fa2729", + "fields": { + "ligne_5": "BEAUFOUR", + "code_commune_insee": "14231", + "libelle_d_acheminement": "BEAUFOUR DRUVAL", + "code_postal": "14340", + "nom_de_la_commune": "BEAUFOUR DRUVAL", + "coordonnees_gps": [ + 49.21417643, + 0.0234847434149 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0234847434149, + 49.21417643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f4b33485a4e983d81d0657fba3ab646e874c9ff", + "fields": { + "ligne_5": "ST AUBIN LEBIZAY", + "code_commune_insee": "14231", + "libelle_d_acheminement": "BEAUFOUR DRUVAL", + "code_postal": "14340", + "nom_de_la_commune": "BEAUFOUR DRUVAL", + "coordonnees_gps": [ + 49.21417643, + 0.0234847434149 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0234847434149, + 49.21417643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "219c85c6d875202d7d44a16cddd3d5bee563f83e", + "fields": { + "code_commune_insee": "14236", + "nom_de_la_commune": "ELLON", + "code_postal": "14250", + "coordonnees_gps": [ + 49.2276401197, + -0.68136443609 + ], + "libelle_d_acheminement": "ELLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68136443609, + 49.2276401197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ed5c8baba23760473a577af036c7e6f19e0525c", + "fields": { + "code_commune_insee": "14245", + "nom_de_la_commune": "ERNES", + "code_postal": "14270", + "coordonnees_gps": [ + 49.0114314442, + -0.125222684946 + ], + "libelle_d_acheminement": "ERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.125222684946, + 49.0114314442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62b3bdab5ae2152b12d90c4455d7766de7619694", + "fields": { + "code_commune_insee": "14246", + "nom_de_la_commune": "ESCOVILLE", + "code_postal": "14850", + "coordonnees_gps": [ + 49.2057509185, + -0.245625093928 + ], + "libelle_d_acheminement": "ESCOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.245625093928, + 49.2057509185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04428233f09b5a92be3e405e693ccd3619ea5510", + "fields": { + "code_commune_insee": "14249", + "nom_de_la_commune": "ESQUAY NOTRE DAME", + "code_postal": "14210", + "coordonnees_gps": [ + 49.112806588, + -0.471107823804 + ], + "libelle_d_acheminement": "ESQUAY NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.471107823804, + 49.112806588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5c17977ec87bb6e4b9ff94b5bbb2ce8b9b34cc1", + "fields": { + "code_commune_insee": "14254", + "nom_de_la_commune": "ETERVILLE", + "code_postal": "14930", + "coordonnees_gps": [ + 49.1478744808, + -0.428813516348 + ], + "libelle_d_acheminement": "ETERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.428813516348, + 49.1478744808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33dfd29b7c08d64d4806e5a981bd3d8edfb1863a", + "fields": { + "code_commune_insee": "14266", + "nom_de_la_commune": "FEUGUEROLLES BULLY", + "code_postal": "14320", + "coordonnees_gps": [ + 49.1119321886, + -0.407584971568 + ], + "libelle_d_acheminement": "FEUGUEROLLES BULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.407584971568, + 49.1119321886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f246f5f85bed8eda01184d458f46c32cf737d0b", + "fields": { + "code_commune_insee": "14270", + "nom_de_la_commune": "FIRFOL", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1520628876, + 0.321640339093 + ], + "libelle_d_acheminement": "FIRFOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.321640339093, + 49.1520628876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a538dcbe3b3be415a54cf5b7e6537db740201686", + "fields": { + "code_commune_insee": "14276", + "nom_de_la_commune": "FONTAINE LE PIN", + "code_postal": "14190", + "coordonnees_gps": [ + 48.975148023, + -0.291372010508 + ], + "libelle_d_acheminement": "FONTAINE LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.291372010508, + 48.975148023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0a2ccafbe53f6f847daddfff022a487e6b42f31", + "fields": { + "code_commune_insee": "14277", + "nom_de_la_commune": "FONTENAY LE MARMION", + "code_postal": "14320", + "coordonnees_gps": [ + 49.0870178586, + -0.34496703891 + ], + "libelle_d_acheminement": "FONTENAY LE MARMION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34496703891, + 49.0870178586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08b8aa481ff56472c69aaf80e7fc0d0ddc74d8cf", + "fields": { + "code_commune_insee": "14278", + "nom_de_la_commune": "FONTENAY LE PESNEL", + "code_postal": "14250", + "coordonnees_gps": [ + 49.1736040754, + -0.580438390492 + ], + "libelle_d_acheminement": "FONTENAY LE PESNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.580438390492, + 49.1736040754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a65976b7120d1f3f8239e609a644de194c83355c", + "fields": { + "code_commune_insee": "14282", + "nom_de_la_commune": "FOULOGNES", + "code_postal": "14240", + "coordonnees_gps": [ + 49.1398449339, + -0.805956268367 + ], + "libelle_d_acheminement": "FOULOGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.805956268367, + 49.1398449339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fffc2ea657a5521407545e63bf9cae89bf9c41a", + "fields": { + "code_commune_insee": "14286", + "nom_de_la_commune": "FOURNEVILLE", + "code_postal": "14600", + "coordonnees_gps": [ + 49.3575079529, + 0.232481397585 + ], + "libelle_d_acheminement": "FOURNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.232481397585, + 49.3575079529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d07155e8ca52d39e07f9a13c69155a9a754b0227", + "fields": { + "code_commune_insee": "14288", + "nom_de_la_commune": "LE FRESNE CAMILLY", + "code_postal": "14480", + "coordonnees_gps": [ + 49.2562338542, + -0.487666830521 + ], + "libelle_d_acheminement": "LE FRESNE CAMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.487666830521, + 49.2562338542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4590ca31821e669e6b8027a41e8b6d7a29f0951c", + "fields": { + "code_commune_insee": "14291", + "nom_de_la_commune": "FRESNEY LE VIEUX", + "code_postal": "14220", + "coordonnees_gps": [ + 49.0051029939, + -0.38627329445 + ], + "libelle_d_acheminement": "FRESNEY LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38627329445, + 49.0051029939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a59e00ff8326bd3981e64a2edd6141ceb1af386d", + "fields": { + "code_commune_insee": "14293", + "nom_de_la_commune": "FUMICHON", + "code_postal": "14590", + "coordonnees_gps": [ + 49.1702401097, + 0.376680814752 + ], + "libelle_d_acheminement": "FUMICHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.376680814752, + 49.1702401097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d99102ee2b171732ec6cf7a77785836786288a31", + "fields": { + "code_commune_insee": "14305", + "nom_de_la_commune": "GONNEVILLE SUR MER", + "code_postal": "14510", + "coordonnees_gps": [ + 49.2895459348, + -0.0363153826405 + ], + "libelle_d_acheminement": "GONNEVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0363153826405, + 49.2895459348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3125c9669bc3b0f0b47a4ae0c3ff64e25ede9c12", + "fields": { + "code_commune_insee": "14312", + "nom_de_la_commune": "GRANDCAMP MAISY", + "code_postal": "14450", + "coordonnees_gps": [ + 49.3754390087, + -1.04464900141 + ], + "libelle_d_acheminement": "GRANDCAMP MAISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04464900141, + 49.3754390087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cd2cffc110128e288a1734121ddfaeb94a75709", + "fields": { + "code_commune_insee": "14329", + "nom_de_la_commune": "HEULAND", + "code_postal": "14430", + "coordonnees_gps": [ + 49.2648018759, + -0.00106358427932 + ], + "libelle_d_acheminement": "HEULAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00106358427932, + 49.2648018759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb0c3c826f1b401fd836c2ec81432aaca3815a92", + "fields": { + "code_commune_insee": "14336", + "nom_de_la_commune": "HOTTOT LES BAGUES", + "code_postal": "14250", + "coordonnees_gps": [ + 49.1460867246, + -0.653546590924 + ], + "libelle_d_acheminement": "HOTTOT LES BAGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.653546590924, + 49.1460867246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72f1ed01a48126a98622a64541e4b814b06be785", + "fields": { + "ligne_5": "NEUILLY LA FORET", + "code_commune_insee": "14342", + "libelle_d_acheminement": "ISIGNY SUR MER", + "code_postal": "14230", + "nom_de_la_commune": "ISIGNY SUR MER", + "coordonnees_gps": [ + 49.305761488, + -1.10256916512 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10256916512, + 49.305761488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5ed50a2ad24025585cff7877cd509d6c444cf13", + "fields": { + "ligne_5": "VOUILLY", + "code_commune_insee": "14342", + "libelle_d_acheminement": "ISIGNY SUR MER", + "code_postal": "14230", + "nom_de_la_commune": "ISIGNY SUR MER", + "coordonnees_gps": [ + 49.305761488, + -1.10256916512 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10256916512, + 49.305761488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3c7dc07c4763435e06dbd819d0dc76b151415b3", + "fields": { + "ligne_5": "ANNEBECQ", + "code_commune_insee": "14352", + "libelle_d_acheminement": "LANDELLES ET COUPIGNY", + "code_postal": "14380", + "nom_de_la_commune": "LANDELLES ET COUPIGNY", + "coordonnees_gps": [ + 48.8983991959, + -1.00295458631 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00295458631, + 48.8983991959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d97f57aeeba4d19518bce62d5ccdc32fc30cf934", + "fields": { + "ligne_5": "ST VIGOR DES MEZERETS", + "code_commune_insee": "14357", + "libelle_d_acheminement": "TERRES DE DRUANCE", + "code_postal": "14770", + "nom_de_la_commune": "TERRES DE DRUANCE", + "coordonnees_gps": [ + 48.9136477151, + -0.684142611751 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.684142611751, + 48.9136477151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28c5a6da784acfb75bea48fc81de4a8c9f9292c4", + "fields": { + "code_commune_insee": "14366", + "nom_de_la_commune": "LISIEUX", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1466628463, + 0.238274840452 + ], + "libelle_d_acheminement": "LISIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.238274840452, + 49.1466628463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd9649715005c114d0f19705a98055b3cd810560", + "fields": { + "ligne_5": "CHEFFREVILLE TONNENCOURT", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1986a13ef540333e97381f80bd32b545c1ae95f", + "fields": { + "ligne_5": "STE MARGUERITE DES LOGES", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2781a43e3dabadba07547479d4ab1ac9529da4fa", + "fields": { + "code_commune_insee": "14375", + "nom_de_la_commune": "LES LOGES SAULCES", + "code_postal": "14700", + "coordonnees_gps": [ + 48.8646988987, + -0.303404907346 + ], + "libelle_d_acheminement": "LES LOGES SAULCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.303404907346, + 48.8646988987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ce1e6dea795f280149726150e9bef0b16337160", + "fields": { + "code_commune_insee": "14377", + "nom_de_la_commune": "LONGUES SUR MER", + "code_postal": "14400", + "coordonnees_gps": [ + 49.3316737353, + -0.694238219905 + ], + "libelle_d_acheminement": "LONGUES SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.694238219905, + 49.3316737353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2ab32087d25f59bd147b4528d27420cc22ecbd2", + "fields": { + "code_commune_insee": "14381", + "nom_de_la_commune": "LOUVAGNY", + "code_postal": "14170", + "coordonnees_gps": [ + 48.9501421231, + -0.0465642056704 + ], + "libelle_d_acheminement": "LOUVAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0465642056704, + 48.9501421231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d58dea5a2d45409038fac1985b6e298d8ecbbc3", + "fields": { + "code_commune_insee": "14401", + "nom_de_la_commune": "MANVIEUX", + "code_postal": "14117", + "coordonnees_gps": [ + 49.337721845, + -0.658662548383 + ], + "libelle_d_acheminement": "MANVIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658662548383, + 49.337721845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7571ad332a42831fb2f519f78bf371c7aa26cdcb", + "fields": { + "code_commune_insee": "14402", + "nom_de_la_commune": "LE MARAIS LA CHAPELLE", + "code_postal": "14620", + "coordonnees_gps": [ + 48.8820216125, + -0.0225019105224 + ], + "libelle_d_acheminement": "LE MARAIS LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0225019105224, + 48.8820216125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a935422a65ae2b3a86a913b22387a9808b4ea9bd", + "fields": { + "ligne_5": "RUCQUEVILLE", + "code_commune_insee": "14406", + "libelle_d_acheminement": "MOULINS EN BESSIN", + "code_postal": "14480", + "nom_de_la_commune": "MOULINS EN BESSIN", + "coordonnees_gps": [ + 49.2486390509, + -0.60137367329 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60137367329, + 49.2486390509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "115e99a38363f59af6820214c8389ddf3f571276", + "fields": { + "code_commune_insee": "14408", + "nom_de_la_commune": "MAY SUR ORNE", + "code_postal": "14320", + "coordonnees_gps": [ + 49.0966958599, + -0.379270597736 + ], + "libelle_d_acheminement": "MAY SUR ORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.379270597736, + 49.0966958599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "680e968efb30f260200cf56df7f50f1160786f2a", + "fields": { + "code_commune_insee": "14411", + "nom_de_la_commune": "MESLAY", + "code_postal": "14220", + "coordonnees_gps": [ + 48.9539488574, + -0.392456343862 + ], + "libelle_d_acheminement": "MESLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.392456343862, + 48.9539488574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36e20b1c785d867804dd595272ecfdffa389e7e8", + "fields": { + "code_commune_insee": "14425", + "nom_de_la_commune": "LE MESNIL SIMON", + "code_postal": "14140", + "coordonnees_gps": [ + 49.0889837608, + 0.112641280521 + ], + "libelle_d_acheminement": "LE MESNIL SIMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.112641280521, + 49.0889837608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b033d4a64f50b870a48d6cf91309763c10fffa8", + "fields": { + "ligne_5": "ST JULIEN LE FAUCON", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ace2158248c8b543c23987b5b6041685e6c41f7", + "fields": { + "ligne_5": "LE MESNIL MAUGER", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14270", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3853dce96a0b8b8fd905f1f6ddbeb9bcce79d1c6", + "fields": { + "code_commune_insee": "14469", + "nom_de_la_commune": "NORREY EN AUGE", + "code_postal": "14620", + "coordonnees_gps": [ + 48.9134999987, + -0.015141118433 + ], + "libelle_d_acheminement": "NORREY EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.015141118433, + 48.9134999987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2346ae82b6d736e3eb9fb401eb8ed2830f811d43", + "fields": { + "code_commune_insee": "14473", + "nom_de_la_commune": "NOTRE DAME DE LIVAYE", + "code_postal": "14340", + "coordonnees_gps": [ + 49.1178873364, + 0.0412832698412 + ], + "libelle_d_acheminement": "NOTRE DAME DE LIVAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0412832698412, + 49.1178873364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "013d075ec893ea85ac337340ba210824cd55a4df", + "fields": { + "ligne_5": "LE LOCHEUR", + "code_commune_insee": "14475", + "libelle_d_acheminement": "VAL D ARRY", + "code_postal": "14210", + "nom_de_la_commune": "VAL D ARRY", + "coordonnees_gps": [ + 49.1241683725, + -0.575352839603 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.575352839603, + 49.1241683725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beb92eb5ae885506eb8baf3cbaaaf12c7f956414", + "fields": { + "ligne_5": "MISSY", + "code_commune_insee": "14475", + "libelle_d_acheminement": "VAL D ARRY", + "code_postal": "14210", + "nom_de_la_commune": "VAL D ARRY", + "coordonnees_gps": [ + 49.1241683725, + -0.575352839603 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.575352839603, + 49.1241683725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5df6de86199f07f0bbdc6b22834eb9b5adbdec89", + "fields": { + "code_commune_insee": "14476", + "nom_de_la_commune": "OLENDON", + "code_postal": "14170", + "coordonnees_gps": [ + 48.9685764486, + -0.173141593521 + ], + "libelle_d_acheminement": "OLENDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.173141593521, + 48.9685764486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dc69624736410da5d75ba1a927e7334e828f900", + "fields": { + "code_commune_insee": "14491", + "nom_de_la_commune": "PARFOURU SUR ODON", + "code_postal": "14310", + "coordonnees_gps": [ + 49.0889824331, + -0.608826965285 + ], + "libelle_d_acheminement": "PARFOURU SUR ODON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.608826965285, + 49.0889824331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb3baa8a70cce4e05658e045d99897510b7a3eeb", + "fields": { + "code_commune_insee": "14502", + "nom_de_la_commune": "PIERREPONT", + "code_postal": "14690", + "coordonnees_gps": [ + 48.8868297895, + -0.321333043754 + ], + "libelle_d_acheminement": "PIERREPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.321333043754, + 48.8868297895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74e456be4a0488e3a08438a7eea0f71855f273e9", + "fields": { + "code_commune_insee": "14506", + "nom_de_la_commune": "PLANQUERY", + "code_postal": "14490", + "coordonnees_gps": [ + 49.1624080403, + -0.826461213535 + ], + "libelle_d_acheminement": "PLANQUERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.826461213535, + 49.1624080403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56567963f1c6d692aef9964b4c4a72cfe8f30a22", + "fields": { + "ligne_5": "COUDRAY RABUT", + "code_commune_insee": "14514", + "libelle_d_acheminement": "PONT L EVEQUE", + "code_postal": "14130", + "nom_de_la_commune": "PONT L EVEQUE", + "coordonnees_gps": [ + 49.2805619214, + 0.187666368193 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.187666368193, + 49.2805619214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54ce6eba6243b10eed593bf355018b063cbce836", + "fields": { + "code_commune_insee": "14524", + "nom_de_la_commune": "PUTOT EN AUGE", + "code_postal": "14430", + "coordonnees_gps": [ + 49.2131086875, + -0.0664290983836 + ], + "libelle_d_acheminement": "PUTOT EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0664290983836, + 49.2131086875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6482fda67f80b987b387db15cb930e779cb8d4cb", + "fields": { + "ligne_5": "QUETIEVILLE", + "code_commune_insee": "14527", + "libelle_d_acheminement": "BELLE VIE EN AUGE", + "code_postal": "14270", + "nom_de_la_commune": "BELLE VIE EN AUGE", + "coordonnees_gps": [ + 49.116121463, + -0.0357079622156 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0357079622156, + 49.116121463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc22b684f689967f28d186a7d6bb6de60d2bca4a", + "fields": { + "ligne_5": "ST LOUP DE FRIBOIS", + "code_commune_insee": "14527", + "libelle_d_acheminement": "BELLE VIE EN AUGE", + "code_postal": "14340", + "nom_de_la_commune": "BELLE VIE EN AUGE", + "coordonnees_gps": [ + 49.116121463, + -0.0357079622156 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0357079622156, + 49.116121463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9370dac7fcc64cfbaa094391a2ea2c32b37eb1ab", + "fields": { + "code_commune_insee": "14529", + "nom_de_la_commune": "RANCHY", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2552732659, + -0.763716555064 + ], + "libelle_d_acheminement": "RANCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.763716555064, + 49.2552732659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbf70f40c14629f7f7bc0257347bf297085e6a22", + "fields": { + "code_commune_insee": "14530", + "nom_de_la_commune": "RANVILLE", + "code_postal": "14860", + "coordonnees_gps": [ + 49.2288226214, + -0.263538892207 + ], + "libelle_d_acheminement": "RANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.263538892207, + 49.2288226214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75aac15d6b6ee7e76e7f5bf428b8e89b9eb85413", + "fields": { + "code_commune_insee": "14533", + "nom_de_la_commune": "REPENTIGNY", + "code_postal": "14340", + "coordonnees_gps": [ + 49.1990064413, + 0.0426897498545 + ], + "libelle_d_acheminement": "REPENTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0426897498545, + 49.1990064413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05fdc258156aa932d6bbb904b943fb64429c19c0", + "fields": { + "code_commune_insee": "14534", + "nom_de_la_commune": "REUX", + "code_postal": "14130", + "coordonnees_gps": [ + 49.276489057, + 0.153456757288 + ], + "libelle_d_acheminement": "REUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.153456757288, + 49.276489057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ebb7d09dddcf872e99f55bc33c09eaaa4be9f27", + "fields": { + "ligne_5": "HUBERT FOLIE", + "code_commune_insee": "14538", + "libelle_d_acheminement": "CASTINE EN PLAINE", + "code_postal": "14540", + "nom_de_la_commune": "CASTINE EN PLAINE", + "coordonnees_gps": [ + 49.0957571442, + -0.317250308981 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.317250308981, + 49.0957571442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fb3d3085bc254acd7700cb81b6ee7bc67e6ec88", + "fields": { + "code_commune_insee": "14542", + "nom_de_la_commune": "ROSEL", + "code_postal": "14740", + "coordonnees_gps": [ + 49.2216532191, + -0.450027445398 + ], + "libelle_d_acheminement": "ROSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.450027445398, + 49.2216532191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00f22a574862aee54e3ea09c57c56c790186c209", + "fields": { + "code_commune_insee": "14547", + "nom_de_la_commune": "RUBERCY", + "code_postal": "14710", + "coordonnees_gps": [ + 49.2852909859, + -0.886321608466 + ], + "libelle_d_acheminement": "RUBERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.886321608466, + 49.2852909859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1e0cfdde2768ee8e7dbb9d7d36f775ab61e3d82", + "fields": { + "code_commune_insee": "14552", + "nom_de_la_commune": "RYES", + "code_postal": "14400", + "coordonnees_gps": [ + 49.3138908712, + -0.627906482519 + ], + "libelle_d_acheminement": "RYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.627906482519, + 49.3138908712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71c5c3fbd7bd3c6e571d9006b3a09448e4ba0ddc", + "fields": { + "code_commune_insee": "14558", + "nom_de_la_commune": "ST AUBIN D ARQUENAY", + "code_postal": "14970", + "coordonnees_gps": [ + 49.2610054485, + -0.283867469295 + ], + "libelle_d_acheminement": "ST AUBIN D ARQUENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.283867469295, + 49.2610054485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "508832678657b5926a9fa7dfa012c9bfc0965c27", + "fields": { + "code_commune_insee": "14563", + "nom_de_la_commune": "ST BENOIT D HEBERTOT", + "code_postal": "14130", + "coordonnees_gps": [ + 49.3249905572, + 0.272750820686 + ], + "libelle_d_acheminement": "ST BENOIT D HEBERTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.272750820686, + 49.3249905572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b646fb97f26f8864de606ce953ff417e874c610e", + "fields": { + "ligne_5": "ST CYR DU RONCERAY", + "code_commune_insee": "14570", + "libelle_d_acheminement": "VALORBIQUET", + "code_postal": "14290", + "nom_de_la_commune": "VALORBIQUET", + "coordonnees_gps": [ + 49.0508380133, + 0.301847275517 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301847275517, + 49.0508380133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "615c8a15c2eb949cc2cb668c6055e0e076d58a84", + "fields": { + "ligne_5": "ST JULIEN DE MAILLOC", + "code_commune_insee": "14570", + "libelle_d_acheminement": "VALORBIQUET", + "code_postal": "14290", + "nom_de_la_commune": "VALORBIQUET", + "coordonnees_gps": [ + 49.0508380133, + 0.301847275517 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301847275517, + 49.0508380133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e8032c75be53a397dced638976b1a24fb5419a7", + "fields": { + "ligne_5": "LA CHAPELLE HAUTE GRUE", + "code_commune_insee": "14576", + "libelle_d_acheminement": "VAL DE VIE", + "code_postal": "14140", + "nom_de_la_commune": "VAL DE VIE", + "coordonnees_gps": [ + 48.9587088015, + 0.163639221018 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.163639221018, + 48.9587088015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "148f3f1f14540e60c0edf17dddf27eac18561481", + "fields": { + "code_commune_insee": "14586", + "nom_de_la_commune": "ST GERMAIN DU PERT", + "code_postal": "14230", + "coordonnees_gps": [ + 49.3303064004, + -1.04253735344 + ], + "libelle_d_acheminement": "ST GERMAIN DU PERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04253735344, + 49.3303064004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60d9d195391d6d8c25dc7074553b6e21dd4437cf", + "fields": { + "code_commune_insee": "14590", + "nom_de_la_commune": "STE HONORINE DE DUCY", + "code_postal": "14240", + "coordonnees_gps": [ + 49.1373059818, + -0.785510429137 + ], + "libelle_d_acheminement": "STE HONORINE DE DUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.785510429137, + 49.1373059818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37b4b7a9aed7631b11c38a8bb52fa1351b413107", + "fields": { + "code_commune_insee": "14595", + "nom_de_la_commune": "ST JEAN DE LIVET", + "code_postal": "14100", + "coordonnees_gps": [ + 49.0933846739, + 0.242347762493 + ], + "libelle_d_acheminement": "ST JEAN DE LIVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.242347762493, + 49.0933846739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e5300c2573719c49323f7368405c0e3f76a75a1", + "fields": { + "code_commune_insee": "14601", + "nom_de_la_commune": "ST JULIEN SUR CALONNE", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2875577223, + 0.230516398049 + ], + "libelle_d_acheminement": "ST JULIEN SUR CALONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.230516398049, + 49.2875577223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b1fecf2f0a152a788529d13d9513ee3e9560bc0", + "fields": { + "ligne_5": "NORREY EN BESSIN", + "code_commune_insee": "14610", + "libelle_d_acheminement": "ST MANVIEU NORREY", + "code_postal": "14740", + "nom_de_la_commune": "ST MANVIEU NORREY", + "coordonnees_gps": [ + 49.1866187514, + -0.500649105973 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.500649105973, + 49.1866187514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c78efa7745bd83acd57834fd959dffaa506af24", + "fields": { + "code_commune_insee": "14613", + "nom_de_la_commune": "ST MARCOUF", + "code_postal": "14330", + "coordonnees_gps": [ + 49.2571002463, + -1.00212215315 + ], + "libelle_d_acheminement": "ST MARCOUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00212215315, + 49.2571002463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a9bbacfdec41a1dc623f89109418aa1859b7155", + "fields": { + "code_commune_insee": "14614", + "nom_de_la_commune": "STE MARGUERITE D ELLE", + "code_postal": "14330", + "coordonnees_gps": [ + 49.2157426905, + -0.986867595216 + ], + "libelle_d_acheminement": "STE MARGUERITE D ELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.986867595216, + 49.2157426905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae85083333062963fa6c05186446401e74065981", + "fields": { + "code_commune_insee": "14619", + "nom_de_la_commune": "STE MARIE OUTRE L EAU", + "code_postal": "14380", + "coordonnees_gps": [ + 48.9301625356, + -1.02129252507 + ], + "libelle_d_acheminement": "STE MARIE OUTRE L EAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02129252507, + 48.9301625356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb9e09b35adc7d2cc97f6f2ba59b2c114868d6ac", + "fields": { + "code_commune_insee": "14630", + "nom_de_la_commune": "ST MARTIN DES ENTREES", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2574506991, + -0.664949215648 + ], + "libelle_d_acheminement": "ST MARTIN DES ENTREES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.664949215648, + 49.2574506991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31e22e2da91c54d94992e5d6b7a7de6598b0edc0", + "fields": { + "ligne_5": "VIEUX PONT EN AUGE", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14140", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ce7558605cdb4695386a5720398294f551ebc32", + "fields": { + "code_commune_insee": "14668", + "nom_de_la_commune": "SAONNET", + "code_postal": "14330", + "coordonnees_gps": [ + 49.2721933862, + -0.880981294808 + ], + "libelle_d_acheminement": "SAONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.880981294808, + 49.2721933862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13f5341e2d1fd950e9e4764a1b5f1dd4b5931560", + "fields": { + "ligne_5": "LA LANDE SUR DROME", + "code_commune_insee": "14672", + "libelle_d_acheminement": "VAL DE DROME", + "code_postal": "14240", + "nom_de_la_commune": "VAL DE DROME", + "coordonnees_gps": [ + 49.0662712858, + -0.837770438371 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.837770438371, + 49.0662712858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99317b701c8d3cdf54562d2e4539dfb1f77251f7", + "fields": { + "ligne_5": "SEPT VENTS", + "code_commune_insee": "14672", + "libelle_d_acheminement": "VAL DE DROME", + "code_postal": "14240", + "nom_de_la_commune": "VAL DE DROME", + "coordonnees_gps": [ + 49.0662712858, + -0.837770438371 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.837770438371, + 49.0662712858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16c2db84d2203be0fe3ed002af3f79c9e41be658", + "fields": { + "ligne_5": "ST JEAN DES ESSARTIERS", + "code_commune_insee": "14672", + "libelle_d_acheminement": "VAL DE DROME", + "code_postal": "14350", + "nom_de_la_commune": "VAL DE DROME", + "coordonnees_gps": [ + 49.0662712858, + -0.837770438371 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.837770438371, + 49.0662712858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "005b95eb576b3d0b0b5e5246be38bf73b34a8297", + "fields": { + "code_commune_insee": "14677", + "nom_de_la_commune": "SOULANGY", + "code_postal": "14700", + "coordonnees_gps": [ + 48.9404810595, + -0.213994560503 + ], + "libelle_d_acheminement": "SOULANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.213994560503, + 48.9404810595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f4f61ecdc39d416315e0bf4211890a6793088d6", + "fields": { + "code_commune_insee": "14679", + "nom_de_la_commune": "SUBLES", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2391973351, + -0.749928429068 + ], + "libelle_d_acheminement": "SUBLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.749928429068, + 49.2391973351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb25cac5af37db4299634f284cedddf8227030a3", + "fields": { + "code_commune_insee": "14681", + "nom_de_la_commune": "SURRAIN", + "code_postal": "14710", + "coordonnees_gps": [ + 49.32844781, + -0.854850589431 + ], + "libelle_d_acheminement": "SURRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.854850589431, + 49.32844781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6de7d4ac9b6cbe4c7b651ba13b77524d74696e46", + "fields": { + "code_commune_insee": "14700", + "nom_de_la_commune": "TOUR EN BESSIN", + "code_postal": "14400", + "coordonnees_gps": [ + 49.293916906, + -0.783768105699 + ], + "libelle_d_acheminement": "TOUR EN BESSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.783768105699, + 49.293916906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa59f159893e69b47f018f63606cda4b6bc1bb96", + "fields": { + "code_commune_insee": "14715", + "nom_de_la_commune": "TROUVILLE SUR MER", + "code_postal": "14360", + "coordonnees_gps": [ + 49.3721246762, + 0.102123470052 + ], + "libelle_d_acheminement": "TROUVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.102123470052, + 49.3721246762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f596446b6e23e136854789de85c7ebc8dd0d29a7", + "fields": { + "code_commune_insee": "14723", + "nom_de_la_commune": "VALSEME", + "code_postal": "14340", + "coordonnees_gps": [ + 49.2376949859, + 0.0992010973025 + ], + "libelle_d_acheminement": "VALSEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0992010973025, + 49.2376949859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb2a731cc420fae500f247d4f21e24df2cf57628", + "fields": { + "code_commune_insee": "14724", + "nom_de_la_commune": "VARAVILLE", + "code_postal": "14390", + "coordonnees_gps": [ + 49.2631541111, + -0.145923580235 + ], + "libelle_d_acheminement": "VARAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.145923580235, + 49.2631541111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "179521ba46f0ed48ae7c29e32bf34e1947b7cba2", + "fields": { + "code_commune_insee": "14728", + "nom_de_la_commune": "VAUCELLES", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2838991523, + -0.735454508917 + ], + "libelle_d_acheminement": "VAUCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.735454508917, + 49.2838991523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96bebac824a7d2fa510c8f9d09a0859617856a12", + "fields": { + "code_commune_insee": "14731", + "nom_de_la_commune": "VAUVILLE", + "code_postal": "14800", + "coordonnees_gps": [ + 49.308998288, + 0.05853051607 + ], + "libelle_d_acheminement": "VAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.05853051607, + 49.308998288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6184a22138c8f057b2a23c1fe2023fe69a1f5ad6", + "fields": { + "code_commune_insee": "14733", + "nom_de_la_commune": "VAUX SUR SEULLES", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2615529375, + -0.627652636172 + ], + "libelle_d_acheminement": "VAUX SUR SEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.627652636172, + 49.2615529375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd594049219b4d17fca7e5097243f680f4a17cfb", + "fields": { + "ligne_5": "ESCURES SUR FAVIERES", + "code_commune_insee": "14735", + "libelle_d_acheminement": "VENDEUVRE", + "code_postal": "14170", + "nom_de_la_commune": "VENDEUVRE", + "coordonnees_gps": [ + 49.0067565786, + -0.0828921340383 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0828921340383, + 49.0067565786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbbdf8fd6c09b411939bc4d8556f50ebce306760", + "fields": { + "code_commune_insee": "14759", + "nom_de_la_commune": "VILLY LEZ FALAISE", + "code_postal": "14700", + "coordonnees_gps": [ + 48.9003361872, + -0.136145311949 + ], + "libelle_d_acheminement": "VILLY LEZ FALAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.136145311949, + 48.9003361872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b2eba8a9f1dcca6d4b8f05a2cbf8fed0d231f5c", + "fields": { + "code_commune_insee": "14761", + "nom_de_la_commune": "VIMONT", + "code_postal": "14370", + "coordonnees_gps": [ + 49.1416235427, + -0.194706905612 + ], + "libelle_d_acheminement": "VIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.194706905612, + 49.1416235427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88db2751c56997d97d744993413032137b4746c4", + "fields": { + "ligne_5": "ST GERMAIN DE TALLEVENDE", + "code_commune_insee": "14762", + "libelle_d_acheminement": "VIRE NORMANDIE", + "code_postal": "14500", + "nom_de_la_commune": "VIRE NORMANDIE", + "coordonnees_gps": [ + 48.8512498219, + -0.889601911342 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889601911342, + 48.8512498219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09f14093a99eae8e7496dee1bbba7750d6ee912c", + "fields": { + "ligne_5": "TRUTTEMER LE PETIT", + "code_commune_insee": "14762", + "libelle_d_acheminement": "VIRE NORMANDIE", + "code_postal": "14500", + "nom_de_la_commune": "VIRE NORMANDIE", + "coordonnees_gps": [ + 48.8512498219, + -0.889601911342 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889601911342, + 48.8512498219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "817140c1ebd5aac8bd3d096d06a5015533cd7519", + "fields": { + "code_commune_insee": "14764", + "nom_de_la_commune": "PONT D OUILLY", + "code_postal": "14690", + "coordonnees_gps": [ + 48.8768624805, + -0.409034326859 + ], + "libelle_d_acheminement": "PONT D OUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.409034326859, + 48.8768624805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8932a264b317c14ede1872d7dfe9d0f97dcbdc77", + "fields": { + "code_commune_insee": "15006", + "nom_de_la_commune": "ANGLARDS DE SALERS", + "code_postal": "15380", + "coordonnees_gps": [ + 45.1968681606, + 2.46563596922 + ], + "libelle_d_acheminement": "ANGLARDS DE SALERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46563596922, + 45.1968681606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d491691ea777a811faff358d808484893ba6b825", + "fields": { + "code_commune_insee": "15007", + "nom_de_la_commune": "ANTERRIEUX", + "code_postal": "15110", + "coordonnees_gps": [ + 44.8313754887, + 3.05707779467 + ], + "libelle_d_acheminement": "ANTERRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05707779467, + 44.8313754887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cee5cfe8a95f23e36102832c1c8a4f6b6aa4be5", + "fields": { + "code_commune_insee": "15009", + "nom_de_la_commune": "APCHON", + "code_postal": "15400", + "coordonnees_gps": [ + 45.24485231, + 2.69776842052 + ], + "libelle_d_acheminement": "APCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69776842052, + 45.24485231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c704ec1b76a77660800959fd7c1e9d6af56f215d", + "fields": { + "code_commune_insee": "15013", + "nom_de_la_commune": "AURIAC L EGLISE", + "code_postal": "15500", + "coordonnees_gps": [ + 45.264190905, + 3.12606134453 + ], + "libelle_d_acheminement": "AURIAC L EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12606134453, + 45.264190905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae2344ff42dbf57f8fb2b0b9c5f44ad8ee3df4e7", + "fields": { + "code_commune_insee": "15018", + "nom_de_la_commune": "BARRIAC LES BOSQUETS", + "code_postal": "15700", + "coordonnees_gps": [ + 45.1477013694, + 2.26530852152 + ], + "libelle_d_acheminement": "BARRIAC LES BOSQUETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26530852152, + 45.1477013694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d446ab546562c3877a3a3a5a06cfba2232a58cd", + "fields": { + "code_commune_insee": "15025", + "nom_de_la_commune": "ALBEPIERRE BREDONS", + "code_postal": "15300", + "coordonnees_gps": [ + 45.0773628092, + 2.82044100103 + ], + "libelle_d_acheminement": "ALBEPIERRE BREDONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82044100103, + 45.0773628092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bf24134858bf8f5835facf30aa4859e660fe3f7", + "fields": { + "code_commune_insee": "15034", + "nom_de_la_commune": "CHALIERS", + "code_postal": "15320", + "coordonnees_gps": [ + 44.9701617114, + 3.23790370512 + ], + "libelle_d_acheminement": "CHALIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23790370512, + 44.9701617114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86b9e3e68aa96ec280c4897c17fa3a716832ee71", + "fields": { + "ligne_5": "MARCHAL", + "code_commune_insee": "15038", + "libelle_d_acheminement": "CHAMPS SUR TARENTAINE MARCHAL", + "code_postal": "15270", + "nom_de_la_commune": "CHAMPS SUR TARENTAINE MARCHAL", + "coordonnees_gps": [ + 45.4040107728, + 2.60404165506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60404165506, + 45.4040107728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "739c2aedf1064e2da2275b5c6c8e2f17c3f56138", + "fields": { + "code_commune_insee": "15041", + "nom_de_la_commune": "LA CHAPELLE D ALAGNON", + "code_postal": "15300", + "coordonnees_gps": [ + 45.1050602104, + 2.90845752826 + ], + "libelle_d_acheminement": "LA CHAPELLE D ALAGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90845752826, + 45.1050602104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e07c8c636f887a763ade91f360bdcbd5e41b086", + "fields": { + "code_commune_insee": "15055", + "nom_de_la_commune": "COREN", + "code_postal": "15100", + "coordonnees_gps": [ + 45.0875492811, + 3.10817742662 + ], + "libelle_d_acheminement": "COREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10817742662, + 45.0875492811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa9fe0e53721db416798ce58e5b2944c9612f865", + "fields": { + "code_commune_insee": "15057", + "nom_de_la_commune": "CROS DE MONTVERT", + "code_postal": "15150", + "coordonnees_gps": [ + 45.0589618548, + 2.1589666532 + ], + "libelle_d_acheminement": "CROS DE MONTVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1589666532, + 45.0589618548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b814b0cf17756f45ac6aac321dfabc345c3daca0", + "fields": { + "code_commune_insee": "15061", + "nom_de_la_commune": "DIENNE", + "code_postal": "15300", + "coordonnees_gps": [ + 45.1652515543, + 2.8073654716 + ], + "libelle_d_acheminement": "DIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8073654716, + 45.1652515543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d3cc7d8d5f4ffc79bfedd5994db2bf07359af12", + "fields": { + "code_commune_insee": "15072", + "nom_de_la_commune": "FREIX ANGLARDS", + "code_postal": "15310", + "coordonnees_gps": [ + 45.0176478672, + 2.37730578519 + ], + "libelle_d_acheminement": "FREIX ANGLARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37730578519, + 45.0176478672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02acbddf0f0c3f036df8bd2fd336a7caf76786c2", + "fields": { + "code_commune_insee": "15085", + "nom_de_la_commune": "LABROUSSE", + "code_postal": "15130", + "coordonnees_gps": [ + 44.8520781165, + 2.54931356081 + ], + "libelle_d_acheminement": "LABROUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54931356081, + 44.8520781165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84a6d40eba39d228f56be4735cdc165fe46532f4", + "fields": { + "code_commune_insee": "15090", + "nom_de_la_commune": "LAFEUILLADE EN VEZIE", + "code_postal": "15130", + "coordonnees_gps": [ + 44.7932691483, + 2.44817059954 + ], + "libelle_d_acheminement": "LAFEUILLADE EN VEZIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44817059954, + 44.7932691483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "874f46f01c7849bb9a95d3e5621a33cb46060a2a", + "fields": { + "ligne_5": "GRANGES", + "code_commune_insee": "15092", + "libelle_d_acheminement": "LANOBRE", + "code_postal": "15270", + "nom_de_la_commune": "LANOBRE", + "coordonnees_gps": [ + 45.4344225439, + 2.54974390079 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54974390079, + 45.4344225439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36431a4806528bb2fe3dbf50204a66dbff3ed17b", + "fields": { + "code_commune_insee": "15093", + "nom_de_la_commune": "LAPEYRUGUE", + "code_postal": "15120", + "coordonnees_gps": [ + 44.7296807893, + 2.53384738931 + ], + "libelle_d_acheminement": "LAPEYRUGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53384738931, + 44.7296807893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37d637b7533bede7d92da54d284d3dd7896a3cb4", + "fields": { + "code_commune_insee": "15100", + "nom_de_la_commune": "LAVEISSENET", + "code_postal": "15300", + "coordonnees_gps": [ + 45.077034187, + 2.87823772951 + ], + "libelle_d_acheminement": "LAVEISSENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87823772951, + 45.077034187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3033e2de8ffadd08b8955af814593f6be34443f9", + "fields": { + "ligne_5": "LE LIORAN", + "code_commune_insee": "15101", + "libelle_d_acheminement": "LAVEISSIERE", + "code_postal": "15300", + "nom_de_la_commune": "LAVEISSIERE", + "coordonnees_gps": [ + 45.1035229375, + 2.78285034579 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78285034579, + 45.1035229375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e5f6a230fe5b626016da3dc6ebe191f2d94d02f", + "fields": { + "code_commune_insee": "15104", + "nom_de_la_commune": "LEYNHAC", + "code_postal": "15600", + "coordonnees_gps": [ + 44.740738643, + 2.28088383558 + ], + "libelle_d_acheminement": "LEYNHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28088383558, + 44.740738643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "363a89dfc76dc8374a9dcd3151cfdaf24bc94b2a", + "fields": { + "code_commune_insee": "15105", + "nom_de_la_commune": "LEYVAUX", + "code_postal": "43450", + "coordonnees_gps": [ + 45.3249295413, + 3.08895370131 + ], + "libelle_d_acheminement": "LEYVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08895370131, + 45.3249295413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30aedc003bf1418c0eae9dbdabe3642a2e611beb", + "fields": { + "ligne_5": "ST JUST", + "code_commune_insee": "15108", + "libelle_d_acheminement": "VAL D ARCOMIE", + "code_postal": "15320", + "nom_de_la_commune": "VAL D ARCOMIE", + "coordonnees_gps": [ + 44.9384891268, + 3.20556437292 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20556437292, + 44.9384891268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79a49482c04f51dc7822592e07f7d63173e87ffd", + "fields": { + "code_commune_insee": "15120", + "nom_de_la_commune": "MAURIAC", + "code_postal": "15200", + "coordonnees_gps": [ + 45.2183220694, + 2.31678475408 + ], + "libelle_d_acheminement": "MAURIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31678475408, + 45.2183220694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdf688f2fecea4b0e42bfb21c002bdbc8461951e", + "fields": { + "code_commune_insee": "15126", + "nom_de_la_commune": "MOLEDES", + "code_postal": "15500", + "coordonnees_gps": [ + 45.2669112637, + 3.04292536589 + ], + "libelle_d_acheminement": "MOLEDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04292536589, + 45.2669112637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fc7017f138430bbaa87a7d6ede5ee05376c18b1", + "fields": { + "code_commune_insee": "15131", + "nom_de_la_commune": "LE MONTEIL", + "code_postal": "15240", + "coordonnees_gps": [ + 45.2991575794, + 2.50786569253 + ], + "libelle_d_acheminement": "LE MONTEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50786569253, + 45.2991575794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51f5ee382db6bb2933d799efe76480feedb39fee", + "fields": { + "ligne_5": "CHALINARGUES", + "code_commune_insee": "15141", + "libelle_d_acheminement": "NEUSSARGUES EN PINATELLE", + "code_postal": "15170", + "nom_de_la_commune": "NEUSSARGUES EN PINATELLE", + "coordonnees_gps": [ + 45.1323703921, + 2.98529315948 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98529315948, + 45.1323703921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25f6e860c1581ff8dedd25ee540b55b08a901fb8", + "fields": { + "ligne_5": "SERIERS", + "code_commune_insee": "15142", + "libelle_d_acheminement": "NEUVEGLISE SUR TRUYERE", + "code_postal": "15100", + "nom_de_la_commune": "NEUVEGLISE SUR TRUYERE", + "coordonnees_gps": [ + 44.9309902257, + 2.97942663368 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97942663368, + 44.9309902257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1545bd21c249753c4deb2d804366f2cb5f24c5f2", + "fields": { + "code_commune_insee": "15147", + "nom_de_la_commune": "PARLAN", + "code_postal": "15290", + "coordonnees_gps": [ + 44.8274613306, + 2.17322961599 + ], + "libelle_d_acheminement": "PARLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17322961599, + 44.8274613306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6cc8f2ad9f04ce0e2c553e44bef95b8b8f3778e", + "fields": { + "code_commune_insee": "15153", + "nom_de_la_commune": "PLEAUX", + "code_postal": "15700", + "coordonnees_gps": [ + 45.1304319566, + 2.24934594486 + ], + "libelle_d_acheminement": "PLEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24934594486, + 45.1304319566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17095f7654ce6b845c481cf76aa9cbb81ae88627", + "fields": { + "ligne_5": "ST CHRISTOPHE LES GORGES", + "code_commune_insee": "15153", + "libelle_d_acheminement": "PLEAUX", + "code_postal": "15700", + "nom_de_la_commune": "PLEAUX", + "coordonnees_gps": [ + 45.1304319566, + 2.24934594486 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24934594486, + 45.1304319566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0edff67966c4285004b22b2b4f23bd6abd3d4fcd", + "fields": { + "ligne_5": "TOURNIAC", + "code_commune_insee": "15153", + "libelle_d_acheminement": "PLEAUX", + "code_postal": "15700", + "nom_de_la_commune": "PLEAUX", + "coordonnees_gps": [ + 45.1304319566, + 2.24934594486 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24934594486, + 45.1304319566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed08dc1d7aedb994d42e433bf21f395fd6dbcd00", + "fields": { + "code_commune_insee": "15156", + "nom_de_la_commune": "PRUNET", + "code_postal": "15130", + "coordonnees_gps": [ + 44.8227813134, + 2.47531798605 + ], + "libelle_d_acheminement": "PRUNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47531798605, + 44.8227813134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d0916117044f7523b59def663912e14228fc00f", + "fields": { + "code_commune_insee": "15159", + "nom_de_la_commune": "RAULHAC", + "code_postal": "15800", + "coordonnees_gps": [ + 44.9019840026, + 2.65720291985 + ], + "libelle_d_acheminement": "RAULHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65720291985, + 44.9019840026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aa93f45bd230ea015974042e2fe37b09d60c182", + "fields": { + "code_commune_insee": "15164", + "nom_de_la_commune": "ROFFIAC", + "code_postal": "15100", + "coordonnees_gps": [ + 45.04821174, + 3.01633980652 + ], + "libelle_d_acheminement": "ROFFIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01633980652, + 45.04821174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c02f16aa8d198f1e947bbc81fd890faf7bbff722", + "fields": { + "code_commune_insee": "15166", + "nom_de_la_commune": "ROUMEGOUX", + "code_postal": "15290", + "coordonnees_gps": [ + 44.8599842405, + 2.18842696551 + ], + "libelle_d_acheminement": "ROUMEGOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18842696551, + 44.8599842405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "677f9813d48d323a735a378a7d211d03760e3689", + "fields": { + "code_commune_insee": "15169", + "nom_de_la_commune": "SAIGNES", + "code_postal": "15240", + "coordonnees_gps": [ + 45.3309843638, + 2.48182368898 + ], + "libelle_d_acheminement": "SAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48182368898, + 45.3309843638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5a8e97d001f9100adfacdef68958b3e7a7c9b8a", + "fields": { + "code_commune_insee": "15173", + "nom_de_la_commune": "ST BONNET DE CONDAT", + "code_postal": "15190", + "coordonnees_gps": [ + 45.2809310303, + 2.8038235634 + ], + "libelle_d_acheminement": "ST BONNET DE CONDAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8038235634, + 45.2809310303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8b2227ea34ee33e5b5f34c5ba0982890bbb8ac6", + "fields": { + "code_commune_insee": "15179", + "nom_de_la_commune": "ST CIRGUES DE MALBERT", + "code_postal": "15140", + "coordonnees_gps": [ + 45.086472449, + 2.37952207311 + ], + "libelle_d_acheminement": "ST CIRGUES DE MALBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37952207311, + 45.086472449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f37421103c747dda86742f9ea9f52d57a9075c4", + "fields": { + "code_commune_insee": "15180", + "nom_de_la_commune": "ST CLEMENT", + "code_postal": "15800", + "coordonnees_gps": [ + 44.9753617677, + 2.6760260238 + ], + "libelle_d_acheminement": "ST CLEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6760260238, + 44.9753617677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0af53a306a5f77f463e2d8a42e8fd57a8db77460", + "fields": { + "code_commune_insee": "15182", + "nom_de_la_commune": "ST ETIENNE CANTALES", + "code_postal": "15150", + "coordonnees_gps": [ + 44.9496115234, + 2.2437307084 + ], + "libelle_d_acheminement": "ST ETIENNE CANTALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2437307084, + 44.9496115234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c636907198a42278e74ba8c9dc2bad692bed21f", + "fields": { + "code_commune_insee": "15185", + "nom_de_la_commune": "ST ETIENNE DE CHOMEIL", + "code_postal": "15400", + "coordonnees_gps": [ + 45.3443815045, + 2.61922055075 + ], + "libelle_d_acheminement": "ST ETIENNE DE CHOMEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61922055075, + 45.3443815045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca8e9bf23626341671f8486a2ec7a3262fae031", + "fields": { + "code_commune_insee": "15198", + "nom_de_la_commune": "STE MARIE", + "code_postal": "15230", + "coordonnees_gps": [ + 44.8925014312, + 2.88292989924 + ], + "libelle_d_acheminement": "STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88292989924, + 44.8925014312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cdd4b51b3ce278f19f3df03096fa138d1a651a8", + "fields": { + "code_commune_insee": "15204", + "nom_de_la_commune": "ST PAUL DES LANDES", + "code_postal": "15250", + "coordonnees_gps": [ + 44.9507306137, + 2.30039279193 + ], + "libelle_d_acheminement": "ST PAUL DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30039279193, + 44.9507306137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "116033d68c006a7e8956425efed183eb873b0e3e", + "fields": { + "code_commune_insee": "15218", + "nom_de_la_commune": "ST VINCENT DE SALERS", + "code_postal": "15380", + "coordonnees_gps": [ + 45.2074874318, + 2.53894340125 + ], + "libelle_d_acheminement": "ST VINCENT DE SALERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53894340125, + 45.2074874318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e31a241aac3a8f0dd6ba54c928b4433d60879d3", + "fields": { + "code_commune_insee": "15222", + "nom_de_la_commune": "SANSAC VEINAZES", + "code_postal": "15120", + "coordonnees_gps": [ + 44.745141044, + 2.42655661494 + ], + "libelle_d_acheminement": "SANSAC VEINAZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42655661494, + 44.745141044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fc32dc897c58eaeb13664f03f0ca7fb3b9cbc6c", + "fields": { + "code_commune_insee": "15223", + "nom_de_la_commune": "SAUVAT", + "code_postal": "15240", + "coordonnees_gps": [ + 45.3075112596, + 2.44172378671 + ], + "libelle_d_acheminement": "SAUVAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44172378671, + 45.3075112596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9120366b0675de7155a85d7c3fd67d50a8e12c27", + "fields": { + "code_commune_insee": "15226", + "nom_de_la_commune": "SENEZERGUES", + "code_postal": "15340", + "coordonnees_gps": [ + 44.7190472251, + 2.4072188609 + ], + "libelle_d_acheminement": "SENEZERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4072188609, + 44.7190472251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "930fab4a7411fd729f1ae6bea4afcb9726fe3ada", + "fields": { + "code_commune_insee": "15233", + "nom_de_la_commune": "TEISSIERES DE CORNET", + "code_postal": "15250", + "coordonnees_gps": [ + 44.9756690067, + 2.36199545657 + ], + "libelle_d_acheminement": "TEISSIERES DE CORNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36199545657, + 44.9756690067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93ffed696eba57c8b84be7ab69e53ce73087fd12", + "fields": { + "code_commune_insee": "15236", + "nom_de_la_commune": "THIEZAC", + "code_postal": "15800", + "coordonnees_gps": [ + 45.0180519173, + 2.6624257459 + ], + "libelle_d_acheminement": "THIEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6624257459, + 45.0180519173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28bd68997f7639e2d17d6db2c2ce7a061858425d", + "fields": { + "code_commune_insee": "15246", + "nom_de_la_commune": "VALETTE", + "code_postal": "15400", + "coordonnees_gps": [ + 45.2638149565, + 2.60128580793 + ], + "libelle_d_acheminement": "VALETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60128580793, + 45.2638149565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca848b750e73303606d6f1add74bee257c796947", + "fields": { + "code_commune_insee": "15253", + "nom_de_la_commune": "VERNOLS", + "code_postal": "15160", + "coordonnees_gps": [ + 45.2190007812, + 2.88326804068 + ], + "libelle_d_acheminement": "VERNOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88326804068, + 45.2190007812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a8f266baaeecf90d99ddad5a5526543cb9becb0", + "fields": { + "code_commune_insee": "15257", + "nom_de_la_commune": "VEZELS ROUSSY", + "code_postal": "15130", + "coordonnees_gps": [ + 44.8057590781, + 2.58172571715 + ], + "libelle_d_acheminement": "VEZELS ROUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58172571715, + 44.8057590781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f36dc3378539986b70f57085ec99580cdb8c4f19", + "fields": { + "code_commune_insee": "15269", + "nom_de_la_commune": "BESSE", + "code_postal": "15140", + "coordonnees_gps": [ + 45.1012134642, + 2.35475637278 + ], + "libelle_d_acheminement": "BESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35475637278, + 45.1012134642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16eee50d38f9cb27acef79d90a7731d73e13c550", + "fields": { + "code_commune_insee": "16003", + "nom_de_la_commune": "AGRIS", + "code_postal": "16110", + "coordonnees_gps": [ + 45.7764888287, + 0.328082067918 + ], + "libelle_d_acheminement": "AGRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.328082067918, + 45.7764888287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3dfb11812cccfcbd95d0b01c74964d032fd211c", + "fields": { + "code_commune_insee": "16008", + "nom_de_la_commune": "AMBERAC", + "code_postal": "16140", + "coordonnees_gps": [ + 45.8562404894, + 0.0591293874218 + ], + "libelle_d_acheminement": "AMBERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0591293874218, + 45.8562404894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ed98055c25a9c8553a7a74e8456b64ad3b4eb88", + "fields": { + "code_commune_insee": "16013", + "nom_de_la_commune": "ANGEAC CHARENTE", + "code_postal": "16120", + "coordonnees_gps": [ + 45.6230428074, + -0.0817275722505 + ], + "libelle_d_acheminement": "ANGEAC CHARENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0817275722505, + 45.6230428074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3338e8ccfb991429949c597ab89c5583f1eae582", + "fields": { + "code_commune_insee": "16015", + "nom_de_la_commune": "ANGOULEME", + "code_postal": "16000", + "coordonnees_gps": [ + 45.6472585146, + 0.14514490683 + ], + "libelle_d_acheminement": "ANGOULEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14514490683, + 45.6472585146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e3a16643e1d3ca15b1958cac8d8138e9e5f69bb", + "fields": { + "code_commune_insee": "16016", + "nom_de_la_commune": "ANSAC SUR VIENNE", + "code_postal": "16500", + "coordonnees_gps": [ + 45.9943029714, + 0.619730334325 + ], + "libelle_d_acheminement": "ANSAC SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.619730334325, + 45.9943029714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36afba7b9f115d782ed480bafa83bb2c37bffe40", + "fields": { + "code_commune_insee": "16020", + "nom_de_la_commune": "AUBETERRE SUR DRONNE", + "code_postal": "16390", + "coordonnees_gps": [ + 45.2609347512, + 0.16792049879 + ], + "libelle_d_acheminement": "AUBETERRE SUR DRONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16792049879, + 45.2609347512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1340da5ef38add5caf76a4d1c2bfb7af74a2baa9", + "fields": { + "ligne_5": "BAYERS", + "code_commune_insee": "16023", + "libelle_d_acheminement": "AUNAC SUR CHARENTE", + "code_postal": "16460", + "nom_de_la_commune": "AUNAC SUR CHARENTE", + "coordonnees_gps": [ + 45.9151202066, + 0.255788080504 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.255788080504, + 45.9151202066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fda5f0739b5733f6a8e1d5e5cb17bc37ecd662e", + "fields": { + "code_commune_insee": "16025", + "nom_de_la_commune": "BAIGNES STE RADEGONDE", + "code_postal": "16360", + "coordonnees_gps": [ + 45.374443862, + -0.254082617191 + ], + "libelle_d_acheminement": "BAIGNES STE RADEGONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.254082617191, + 45.374443862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30bf37955891c4688e0bf8800ba787d6d8fc9747", + "fields": { + "ligne_5": "ST HILAIRE", + "code_commune_insee": "16028", + "libelle_d_acheminement": "BARBEZIEUX ST HILAIRE", + "code_postal": "16300", + "nom_de_la_commune": "BARBEZIEUX ST HILAIRE", + "coordonnees_gps": [ + 45.4780382344, + -0.157746079718 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.157746079718, + 45.4780382344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb5dcb7a0cb382be276e5fb996617fb3c3cbed62", + "fields": { + "code_commune_insee": "16031", + "nom_de_la_commune": "BARRO", + "code_postal": "16700", + "coordonnees_gps": [ + 46.0050083194, + 0.235825640846 + ], + "libelle_d_acheminement": "BARRO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.235825640846, + 46.0050083194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2c0122f3585cc5447d450bd6a5a4ea2f87da343", + "fields": { + "code_commune_insee": "16039", + "nom_de_la_commune": "BERNAC", + "code_postal": "16700", + "coordonnees_gps": [ + 46.0522061088, + 0.170991094252 + ], + "libelle_d_acheminement": "BERNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.170991094252, + 46.0522061088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf45385916097009156fda98d11a44cf41796000", + "fields": { + "ligne_5": "ST LEGER", + "code_commune_insee": "16046", + "libelle_d_acheminement": "COTEAUX DU BLANZACAIS", + "code_postal": "16250", + "nom_de_la_commune": "COTEAUX DU BLANZACAIS", + "coordonnees_gps": [ + 45.4714654807, + 0.0236302142689 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0236302142689, + 45.4714654807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb7b0327bdfdde732f895a282b4510da117e994f", + "fields": { + "code_commune_insee": "16048", + "nom_de_la_commune": "BOISBRETEAU", + "code_postal": "16480", + "coordonnees_gps": [ + 45.3299592266, + -0.159147291583 + ], + "libelle_d_acheminement": "BOISBRETEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.159147291583, + 45.3299592266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe4aaf0fcdf6281d9ed7d6575fae97e4ebb00270", + "fields": { + "code_commune_insee": "16050", + "nom_de_la_commune": "BONNEUIL", + "code_postal": "16120", + "coordonnees_gps": [ + 45.5758801915, + -0.135149328713 + ], + "libelle_d_acheminement": "BONNEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.135149328713, + 45.5758801915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68072082666c186f477ab91b8a3847eb84c7d57b", + "fields": { + "code_commune_insee": "16055", + "nom_de_la_commune": "BOUEX", + "code_postal": "16410", + "coordonnees_gps": [ + 45.6246508567, + 0.318204980739 + ], + "libelle_d_acheminement": "BOUEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.318204980739, + 45.6246508567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbacfdb28ea3e192e883a1f7c5f6a8253d278f24", + "fields": { + "code_commune_insee": "16059", + "nom_de_la_commune": "BRETTES", + "code_postal": "16240", + "coordonnees_gps": [ + 45.9974723832, + 0.029182060624 + ], + "libelle_d_acheminement": "BRETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.029182060624, + 45.9974723832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a76649bcead672e214e8aaa97b067d3f9eccae13", + "fields": { + "code_commune_insee": "16064", + "nom_de_la_commune": "BRIGUEUIL", + "code_postal": "16420", + "coordonnees_gps": [ + 45.9509773487, + 0.869163472197 + ], + "libelle_d_acheminement": "BRIGUEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.869163472197, + 45.9509773487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ca962ad9346268fe83cb042737c7f27532a4efa", + "fields": { + "code_commune_insee": "16074", + "nom_de_la_commune": "CHALLIGNAC", + "code_postal": "16300", + "coordonnees_gps": [ + 45.4236400106, + -0.0845558170102 + ], + "libelle_d_acheminement": "CHALLIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0845558170102, + 45.4236400106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c436793b40dd124230a7bb3055ed7e43a754f86", + "fields": { + "code_commune_insee": "16079", + "nom_de_la_commune": "CHANTILLAC", + "code_postal": "16360", + "coordonnees_gps": [ + 45.3264411162, + -0.255453791343 + ], + "libelle_d_acheminement": "CHANTILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.255453791343, + 45.3264411162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "056741344b381e96729208dafda7541cb3e381c6", + "fields": { + "ligne_5": "CHARMANT", + "code_commune_insee": "16082", + "libelle_d_acheminement": "BOISNE LA TUDE", + "code_postal": "16320", + "nom_de_la_commune": "BOISNE LA TUDE", + "coordonnees_gps": [ + 45.4838960103, + 0.177074136817 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.177074136817, + 45.4838960103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "092d50578698078dd3f6ca2e5234995fe1e16111", + "fields": { + "ligne_5": "JUILLAGUET", + "code_commune_insee": "16082", + "libelle_d_acheminement": "BOISNE LA TUDE", + "code_postal": "16320", + "nom_de_la_commune": "BOISNE LA TUDE", + "coordonnees_gps": [ + 45.4838960103, + 0.177074136817 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.177074136817, + 45.4838960103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bee5f9f4115623b8191581df2022521c685d97d", + "fields": { + "code_commune_insee": "16085", + "nom_de_la_commune": "CHASSENEUIL SUR BONNIEURE", + "code_postal": "16260", + "coordonnees_gps": [ + 45.8243471539, + 0.441043431658 + ], + "libelle_d_acheminement": "CHASSENEUIL SUR BONNIEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.441043431658, + 45.8243471539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c175c689342ba1172ff4e79498e8b909c89b477a", + "fields": { + "code_commune_insee": "16088", + "nom_de_la_commune": "CHASSORS", + "code_postal": "16200", + "coordonnees_gps": [ + 45.7102602984, + -0.206803437363 + ], + "libelle_d_acheminement": "CHASSORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.206803437363, + 45.7102602984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f728fab7cd74887b39073e521bc9bdde826d4ec1", + "fields": { + "code_commune_insee": "16089", + "nom_de_la_commune": "CHATEAUBERNARD", + "code_postal": "16100", + "coordonnees_gps": [ + 45.6720237128, + -0.316074717824 + ], + "libelle_d_acheminement": "CHATEAUBERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.316074717824, + 45.6720237128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8072647a4fcdcb10143106e58738f8c3c086345", + "fields": { + "ligne_5": "RICHEMONT", + "code_commune_insee": "16097", + "libelle_d_acheminement": "CHERVES RICHEMONT", + "code_postal": "16370", + "nom_de_la_commune": "CHERVES RICHEMONT", + "coordonnees_gps": [ + 45.7450738873, + -0.337808012724 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.337808012724, + 45.7450738873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8247ab9fb62a618b048b532f49323af1f3ede2d7", + "fields": { + "code_commune_insee": "16101", + "nom_de_la_commune": "CLAIX", + "code_postal": "16440", + "coordonnees_gps": [ + 45.54965487, + 0.050592133605 + ], + "libelle_d_acheminement": "CLAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.050592133605, + 45.54965487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0fb2b34553fe62de58af7290b1cc75ae123fcbb", + "fields": { + "code_commune_insee": "16104", + "nom_de_la_commune": "CONDAC", + "code_postal": "16700", + "coordonnees_gps": [ + 46.028495802, + 0.227925503689 + ], + "libelle_d_acheminement": "CONDAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.227925503689, + 46.028495802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30f369d98f05e8312f88dff3319cb2283722210e", + "fields": { + "code_commune_insee": "16106", + "nom_de_la_commune": "CONFOLENS", + "code_postal": "16500", + "coordonnees_gps": [ + 46.0191386034, + 0.658522279035 + ], + "libelle_d_acheminement": "CONFOLENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.658522279035, + 46.0191386034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9abf105922290ddef45d823c9986478ed86ec02d", + "fields": { + "code_commune_insee": "16110", + "nom_de_la_commune": "COURCOME", + "code_postal": "16240", + "coordonnees_gps": [ + 45.9857430952, + 0.133351057987 + ], + "libelle_d_acheminement": "COURCOME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.133351057987, + 45.9857430952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ba45968d356d1a65cbc2145348fece3afb13db0", + "fields": { + "code_commune_insee": "16124", + "nom_de_la_commune": "ECURAS", + "code_postal": "16220", + "coordonnees_gps": [ + 45.6822174766, + 0.569930576994 + ], + "libelle_d_acheminement": "ECURAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.569930576994, + 45.6822174766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc95af87aab2735979117319ac789d5cca959ac0", + "fields": { + "code_commune_insee": "16135", + "nom_de_la_commune": "EYMOUTHIERS", + "code_postal": "16220", + "coordonnees_gps": [ + 45.6469383568, + 0.549961973717 + ], + "libelle_d_acheminement": "EYMOUTHIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.549961973717, + 45.6469383568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "967f578f7986f3ad3237c264d48b437d716aef6b", + "fields": { + "code_commune_insee": "16136", + "nom_de_la_commune": "LA FAYE", + "code_postal": "16700", + "coordonnees_gps": [ + 46.0198359959, + 0.159355852391 + ], + "libelle_d_acheminement": "LA FAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.159355852391, + 46.0198359959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69e7b6b8f550fad41690993da00083197fb835dc", + "fields": { + "code_commune_insee": "16140", + "nom_de_la_commune": "FONTCLAIREAU", + "code_postal": "16230", + "coordonnees_gps": [ + 45.8918936624, + 0.196980841137 + ], + "libelle_d_acheminement": "FONTCLAIREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.196980841137, + 45.8918936624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89e65694792123c15f99e483255e14ecfa4731b3", + "fields": { + "code_commune_insee": "16145", + "nom_de_la_commune": "FOUSSIGNAC", + "code_postal": "16200", + "coordonnees_gps": [ + 45.7127451252, + -0.125082004293 + ], + "libelle_d_acheminement": "FOUSSIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.125082004293, + 45.7127451252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "618931d515fbb64fa61bf5a3d0abfa5f3b793dcc", + "fields": { + "code_commune_insee": "16146", + "nom_de_la_commune": "GARAT", + "code_postal": "16410", + "coordonnees_gps": [ + 45.6261876475, + 0.267214788148 + ], + "libelle_d_acheminement": "GARAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.267214788148, + 45.6261876475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e4db8b8cdcaa3c4cdd74e11ff06b8bc3c1d7163", + "fields": { + "code_commune_insee": "16160", + "nom_de_la_commune": "GUIMPS", + "code_postal": "16300", + "coordonnees_gps": [ + 45.465898134, + -0.254673070491 + ], + "libelle_d_acheminement": "GUIMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.254673070491, + 45.465898134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24a5583b0557cf8da8543b1f353552ff76a2f6a9", + "fields": { + "code_commune_insee": "16163", + "nom_de_la_commune": "HIERSAC", + "code_postal": "16290", + "coordonnees_gps": [ + 45.6755505146, + 0.00754154202178 + ], + "libelle_d_acheminement": "HIERSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00754154202178, + 45.6755505146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c935f84198e89ea0cea8806c3e0733053794301", + "fields": { + "code_commune_insee": "16164", + "nom_de_la_commune": "HIESSE", + "code_postal": "16490", + "coordonnees_gps": [ + 46.0498472746, + 0.581727816732 + ], + "libelle_d_acheminement": "HIESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.581727816732, + 46.0498472746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8992a951c996447ef8b0ce3491bf5dcc53d1c7b4", + "fields": { + "code_commune_insee": "16166", + "nom_de_la_commune": "L ISLE D ESPAGNAC", + "code_postal": "16340", + "coordonnees_gps": [ + 45.6638640977, + 0.199231746573 + ], + "libelle_d_acheminement": "L ISLE D ESPAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.199231746573, + 45.6638640977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b7600d4d6b46aa1ae3789dfd2c98cb412c48761", + "fields": { + "code_commune_insee": "16167", + "nom_de_la_commune": "JARNAC", + "code_postal": "16200", + "coordonnees_gps": [ + 45.6865355311, + -0.164780604405 + ], + "libelle_d_acheminement": "JARNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.164780604405, + 45.6865355311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6541dc4143e0d7a794cc959cb4f9ae829d525747", + "fields": { + "ligne_5": "JURIGNAC", + "code_commune_insee": "16175", + "libelle_d_acheminement": "VAL DES VIGNES", + "code_postal": "16250", + "nom_de_la_commune": "VAL DES VIGNES", + "coordonnees_gps": [ + 45.5351688008, + -0.0353997702364 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0353997702364, + 45.5351688008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fda32bc7667d0068102c1b17f2f1e307b081b8d", + "fields": { + "ligne_5": "MAINFONDS", + "code_commune_insee": "16175", + "libelle_d_acheminement": "VAL DES VIGNES", + "code_postal": "16250", + "nom_de_la_commune": "VAL DES VIGNES", + "coordonnees_gps": [ + 45.5351688008, + -0.0353997702364 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0353997702364, + 45.5351688008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e096690671705d7e57180a842db36a3370250827", + "fields": { + "code_commune_insee": "16177", + "nom_de_la_commune": "LADIVILLE", + "code_postal": "16120", + "coordonnees_gps": [ + 45.5127200885, + -0.0639782676163 + ], + "libelle_d_acheminement": "LADIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0639782676163, + 45.5127200885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12a78c6aa49ed8e6c9914b96c1f077919fc3572a", + "fields": { + "code_commune_insee": "16180", + "nom_de_la_commune": "LAPRADE", + "code_postal": "16390", + "coordonnees_gps": [ + 45.2795486363, + 0.186050460414 + ], + "libelle_d_acheminement": "LAPRADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.186050460414, + 45.2795486363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7491bd06179a0b5b614c5dfd0feb37ddcf89de9c", + "fields": { + "code_commune_insee": "16181", + "nom_de_la_commune": "LESSAC", + "code_postal": "16500", + "coordonnees_gps": [ + 46.0698879321, + 0.6490709569 + ], + "libelle_d_acheminement": "LESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.6490709569, + 46.0698879321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "228b32a3690e85652cb905df90b1fa067800437d", + "fields": { + "code_commune_insee": "16184", + "nom_de_la_commune": "LICHERES", + "code_postal": "16460", + "coordonnees_gps": [ + 45.9042961914, + 0.215718804907 + ], + "libelle_d_acheminement": "LICHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.215718804907, + 45.9042961914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f504452f9858f8e2608c5570b84648536849262c", + "fields": { + "code_commune_insee": "16191", + "nom_de_la_commune": "LONNES", + "code_postal": "16230", + "coordonnees_gps": [ + 45.9391793197, + 0.181439974512 + ], + "libelle_d_acheminement": "LONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.181439974512, + 45.9391793197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fad05daadd5192ad7d6184643d045e53ea09c50", + "fields": { + "ligne_5": "SURIS", + "code_commune_insee": "16192", + "libelle_d_acheminement": "TERRES DE HAUTE CHARENTE", + "code_postal": "16270", + "nom_de_la_commune": "TERRES DE HAUTE CHARENTE", + "coordonnees_gps": [ + 45.9100102437, + 0.573121657498 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.573121657498, + 45.9100102437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3c93e08ee6401aad70ad7cb713786124e5e1b4d", + "fields": { + "code_commune_insee": "16200", + "nom_de_la_commune": "MAINE DE BOIXE", + "code_postal": "16230", + "coordonnees_gps": [ + 45.8484283573, + 0.17815797308 + ], + "libelle_d_acheminement": "MAINE DE BOIXE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17815797308, + 45.8484283573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4def5fbb49a2576545b198253895b158cb134155", + "fields": { + "ligne_5": "TOUZAC", + "code_commune_insee": "16204", + "libelle_d_acheminement": "BELLEVIGNE", + "code_postal": "16120", + "nom_de_la_commune": "BELLEVIGNE", + "coordonnees_gps": [ + 45.5525236965, + -0.103272182432 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.103272182432, + 45.5525236965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8eb306b63f7dd98f3978f128b4e9d53eb427fbd", + "fields": { + "code_commune_insee": "16207", + "nom_de_la_commune": "MARCILLAC LANVILLE", + "code_postal": "16140", + "coordonnees_gps": [ + 45.8574304005, + 0.0183289081135 + ], + "libelle_d_acheminement": "MARCILLAC LANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0183289081135, + 45.8574304005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59ff9dcc89a187e776036d7f58c60953ba3b70da", + "fields": { + "code_commune_insee": "16208", + "nom_de_la_commune": "MAREUIL", + "code_postal": "16170", + "coordonnees_gps": [ + 45.7724089753, + -0.135920647839 + ], + "libelle_d_acheminement": "MAREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.135920647839, + 45.7724089753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fc858d2ed3281acb0579c42358f5f30ddbad954", + "fields": { + "code_commune_insee": "16209", + "nom_de_la_commune": "MARILLAC LE FRANC", + "code_postal": "16110", + "coordonnees_gps": [ + 45.7307516041, + 0.432572221643 + ], + "libelle_d_acheminement": "MARILLAC LE FRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.432572221643, + 45.7307516041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2510bf045b5019c520cdb97c117abbf60bc06b24", + "fields": { + "code_commune_insee": "16210", + "nom_de_la_commune": "MARSAC", + "code_postal": "16570", + "coordonnees_gps": [ + 45.7432168829, + 0.075225440865 + ], + "libelle_d_acheminement": "MARSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.075225440865, + 45.7432168829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0137714644af92c35a9eff5a16d6e0cf21c2204a", + "fields": { + "code_commune_insee": "16217", + "nom_de_la_commune": "MERPINS", + "code_postal": "16100", + "coordonnees_gps": [ + 45.6698268314, + -0.371814331652 + ], + "libelle_d_acheminement": "MERPINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.371814331652, + 45.6698268314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca7bd3d61caa9204b88c94fc190ce3d3211b36be", + "fields": { + "ligne_5": "MONTMOREAU ST CYBARD", + "code_commune_insee": "16230", + "libelle_d_acheminement": "MONTMOREAU", + "code_postal": "16190", + "nom_de_la_commune": "MONTMOREAU", + "coordonnees_gps": [ + 45.4225777872, + 0.127349505692 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.127349505692, + 45.4225777872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaa0efe931147d923873538edc77a10d5db4fcb0", + "fields": { + "code_commune_insee": "16232", + "nom_de_la_commune": "MORNAC", + "code_postal": "16600", + "coordonnees_gps": [ + 45.6847658101, + 0.292715578408 + ], + "libelle_d_acheminement": "MORNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.292715578408, + 45.6847658101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81d7081df9108240b79eb36f46385433ec12abea", + "fields": { + "code_commune_insee": "16239", + "nom_de_la_commune": "MOUZON", + "code_postal": "16310", + "coordonnees_gps": [ + 45.7954811744, + 0.611080409863 + ], + "libelle_d_acheminement": "MOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.611080409863, + 45.7954811744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d53b8a18286d024620c5fca311fde770fcca92d", + "fields": { + "code_commune_insee": "16241", + "nom_de_la_commune": "NANCLARS", + "code_postal": "16230", + "coordonnees_gps": [ + 45.8437586253, + 0.223555807961 + ], + "libelle_d_acheminement": "NANCLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.223555807961, + 45.8437586253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca1c2164f5089a10845236db2e3c63d1941020b0", + "fields": { + "ligne_5": "MESSEUX", + "code_commune_insee": "16242", + "libelle_d_acheminement": "NANTEUIL EN VALLEE", + "code_postal": "16700", + "nom_de_la_commune": "NANTEUIL EN VALLEE", + "coordonnees_gps": [ + 46.0061029111, + 0.32369225522 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32369225522, + 46.0061029111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a87fece1e9ebce7e636f5dce9bae3b32f10dbea8", + "fields": { + "code_commune_insee": "16250", + "nom_de_la_commune": "ORGEDEUIL", + "code_postal": "16220", + "coordonnees_gps": [ + 45.698367411, + 0.486392578455 + ], + "libelle_d_acheminement": "ORGEDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.486392578455, + 45.698367411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f81374f6d68f35dae612728d827afa2fe445451", + "fields": { + "code_commune_insee": "16252", + "nom_de_la_commune": "ORIVAL", + "code_postal": "16210", + "coordonnees_gps": [ + 45.2829609263, + 0.0692144911966 + ], + "libelle_d_acheminement": "ORIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0692144911966, + 45.2829609263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef2b5352f15d3c814b2c338e31bc8ce74525ab13", + "fields": { + "code_commune_insee": "16260", + "nom_de_la_commune": "PILLAC", + "code_postal": "16390", + "coordonnees_gps": [ + 45.3189822009, + 0.18101331727 + ], + "libelle_d_acheminement": "PILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18101331727, + 45.3189822009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "036b6504abf4afd9513f5242ad1a8e34dbe018e2", + "fields": { + "code_commune_insee": "16267", + "nom_de_la_commune": "POULLIGNAC", + "code_postal": "16190", + "coordonnees_gps": [ + 45.3965100536, + -0.010889797481 + ], + "libelle_d_acheminement": "POULLIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.010889797481, + 45.3965100536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f5d48d67e75bffcdfe62f9d4f381388048f792d", + "fields": { + "code_commune_insee": "16280", + "nom_de_la_commune": "RIVIERES", + "code_postal": "16110", + "coordonnees_gps": [ + 45.7608747272, + 0.359373568678 + ], + "libelle_d_acheminement": "RIVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.359373568678, + 45.7608747272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ada43e54807f399ad47cc7b301a0915b6c83731a", + "fields": { + "ligne_5": "ST PROJET ST CONSTANT", + "code_commune_insee": "16281", + "libelle_d_acheminement": "LA ROCHEFOUCAULD EN ANGOUMOIS", + "code_postal": "16110", + "nom_de_la_commune": "LA ROCHEFOUCAULD EN ANGOUMOIS", + "coordonnees_gps": [ + 45.7334327476, + 0.3937027955 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.3937027955, + 45.7334327476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18326d14902d680814c8ae6a8040292b1485ef2b", + "fields": { + "code_commune_insee": "16284", + "nom_de_la_commune": "ROUFFIAC", + "code_postal": "16210", + "coordonnees_gps": [ + 45.2653712748, + 0.0982630036478 + ], + "libelle_d_acheminement": "ROUFFIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0982630036478, + 45.2653712748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a612a892f11bb1123bb27dc9f59bea23bc525792", + "fields": { + "code_commune_insee": "16285", + "nom_de_la_commune": "ROUGNAC", + "code_postal": "16320", + "coordonnees_gps": [ + 45.5371194351, + 0.354245072318 + ], + "libelle_d_acheminement": "ROUGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.354245072318, + 45.5371194351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af4b5ea6f388bda7e977b52df501d12252be440e", + "fields": { + "ligne_5": "ST ESTEPHE", + "code_commune_insee": "16287", + "libelle_d_acheminement": "ROULLET ST ESTEPHE", + "code_postal": "16440", + "nom_de_la_commune": "ROULLET ST ESTEPHE", + "coordonnees_gps": [ + 45.5803788491, + 0.0313550273594 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0313550273594, + 45.5803788491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f38724d2c8ec5a82bf4aa4ba3fef80d57f12802", + "fields": { + "code_commune_insee": "16293", + "nom_de_la_commune": "ST ADJUTORY", + "code_postal": "16310", + "coordonnees_gps": [ + 45.7687840494, + 0.478102533662 + ], + "libelle_d_acheminement": "ST ADJUTORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.478102533662, + 45.7687840494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad0faf6a41636d7eb7d07e9a54e51f70eead5871", + "fields": { + "code_commune_insee": "16301", + "nom_de_la_commune": "ST AULAIS LA CHAPELLE", + "code_postal": "16300", + "coordonnees_gps": [ + 45.4479230686, + -0.0520828628972 + ], + "libelle_d_acheminement": "ST AULAIS LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0520828628972, + 45.4479230686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c50329db5a70129c23507d1f7018198f0cf393fe", + "fields": { + "code_commune_insee": "16310", + "nom_de_la_commune": "ST COUTANT", + "code_postal": "16350", + "coordonnees_gps": [ + 45.9946101351, + 0.465813321452 + ], + "libelle_d_acheminement": "ST COUTANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.465813321452, + 45.9946101351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b3dca3f34aa0336ac3e150ca8a66e8603c8cb92", + "fields": { + "code_commune_insee": "16329", + "nom_de_la_commune": "ST LAURENT DE CERIS", + "code_postal": "16450", + "coordonnees_gps": [ + 45.9432646636, + 0.49869730659 + ], + "libelle_d_acheminement": "ST LAURENT DE CERIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49869730659, + 45.9432646636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "199b512464ecdb11b660b4d3a2102d2876d6c7b9", + "fields": { + "code_commune_insee": "16337", + "nom_de_la_commune": "ST MAURICE DES LIONS", + "code_postal": "16500", + "coordonnees_gps": [ + 45.9687818149, + 0.700155863505 + ], + "libelle_d_acheminement": "ST MAURICE DES LIONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.700155863505, + 45.9687818149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5164233beee1fdc811ec67d2779ba83cb4c2f4ae", + "fields": { + "ligne_5": "MONTIGNE", + "code_commune_insee": "16339", + "libelle_d_acheminement": "VAL D AUGE", + "code_postal": "16170", + "nom_de_la_commune": "VAL D AUGE", + "coordonnees_gps": [ + 45.8511416602, + -0.0872262855566 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0872262855566, + 45.8511416602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64f8ef2b182f01cbbe11b26dad3d5db9f1596989", + "fields": { + "code_commune_insee": "16341", + "nom_de_la_commune": "ST MICHEL", + "code_postal": "16470", + "coordonnees_gps": [ + 45.6398574836, + 0.110389548668 + ], + "libelle_d_acheminement": "ST MICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.110389548668, + 45.6398574836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58f22f0d3a2c7e3dd1a8773f43143f8e8844c818", + "fields": { + "code_commune_insee": "16347", + "nom_de_la_commune": "ST ROMAIN", + "code_postal": "16210", + "coordonnees_gps": [ + 45.2834371664, + 0.137230100319 + ], + "libelle_d_acheminement": "ST ROMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.137230100319, + 45.2834371664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f2ac2cedc7d6e4d13e297d0fed74ec536d51cb5", + "fields": { + "code_commune_insee": "16348", + "nom_de_la_commune": "ST SATURNIN", + "code_postal": "16290", + "coordonnees_gps": [ + 45.6676447323, + 0.0400326832597 + ], + "libelle_d_acheminement": "ST SATURNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0400326832597, + 45.6676447323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7698e2e773a00ffb96cd621932385f5d23d4b975", + "fields": { + "code_commune_insee": "16365", + "nom_de_la_commune": "SAUVIGNAC", + "code_postal": "16480", + "coordonnees_gps": [ + 45.2586469785, + -0.0772578283204 + ], + "libelle_d_acheminement": "SAUVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0772578283204, + 45.2586469785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a243aa7afdfbf186f4fe7d14c5123d92a7abc10d", + "fields": { + "code_commune_insee": "16372", + "nom_de_la_commune": "SOUFFRIGNAC", + "code_postal": "16380", + "coordonnees_gps": [ + 45.5866525328, + 0.498091026273 + ], + "libelle_d_acheminement": "SOUFFRIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.498091026273, + 45.5866525328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03e4943edc354ed2386b616c43b229d9fec8f496", + "fields": { + "code_commune_insee": "16381", + "nom_de_la_commune": "THEIL RABIER", + "code_postal": "16240", + "coordonnees_gps": [ + 46.0558979641, + 0.044130741302 + ], + "libelle_d_acheminement": "THEIL RABIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.044130741302, + 46.0558979641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1c25626aa50c64ed26d48420d79abee7d2869f9", + "fields": { + "code_commune_insee": "16393", + "nom_de_la_commune": "VARS", + "code_postal": "16330", + "coordonnees_gps": [ + 45.7564469034, + 0.136239937646 + ], + "libelle_d_acheminement": "VARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.136239937646, + 45.7564469034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f04d76a6386b7460843274e1d3c9199801e1ab8", + "fields": { + "code_commune_insee": "16397", + "nom_de_la_commune": "VERDILLE", + "code_postal": "16140", + "coordonnees_gps": [ + 45.8810519501, + -0.095445379465 + ], + "libelle_d_acheminement": "VERDILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.095445379465, + 45.8810519501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aae1f8a1f376e2ff97343e0c6833f18e671f036e", + "fields": { + "code_commune_insee": "16398", + "nom_de_la_commune": "VERNEUIL", + "code_postal": "16310", + "coordonnees_gps": [ + 45.7826832991, + 0.698625263391 + ], + "libelle_d_acheminement": "VERNEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.698625263391, + 45.7826832991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7714c44f109894fb5d4470c5ed87b8833d40d4f2", + "fields": { + "code_commune_insee": "16399", + "nom_de_la_commune": "VERRIERES", + "code_postal": "16130", + "coordonnees_gps": [ + 45.5635438011, + -0.262225205266 + ], + "libelle_d_acheminement": "VERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.262225205266, + 45.5635438011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d2b7457347e8aa77f255ab5c84a3e3ddc1d3b70", + "fields": { + "code_commune_insee": "16400", + "nom_de_la_commune": "VERTEUIL SUR CHARENTE", + "code_postal": "16510", + "coordonnees_gps": [ + 45.9780560567, + 0.226069473062 + ], + "libelle_d_acheminement": "VERTEUIL SUR CHARENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.226069473062, + 45.9780560567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0f804ab579d06e0aee8b798a2e60b49c26e9886", + "fields": { + "code_commune_insee": "16403", + "nom_de_la_commune": "LE VIEUX CERIER", + "code_postal": "16350", + "coordonnees_gps": [ + 45.9701910018, + 0.447706258418 + ], + "libelle_d_acheminement": "LE VIEUX CERIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.447706258418, + 45.9701910018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3acd4e29960fde0085443c038acdda177a78dbd2", + "fields": { + "ligne_5": "RANCOGNE", + "code_commune_insee": "16406", + "libelle_d_acheminement": "MOULINS SUR TARDOIRE", + "code_postal": "16110", + "nom_de_la_commune": "MOULINS SUR TARDOIRE", + "coordonnees_gps": [ + 45.6749371405, + 0.413690557733 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.413690557733, + 45.6749371405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef26e8361ca4e793cfdb45e7513d6f2b46d2e2e7", + "fields": { + "code_commune_insee": "16408", + "nom_de_la_commune": "VILLEBOIS LAVALETTE", + "code_postal": "16320", + "coordonnees_gps": [ + 45.4787469231, + 0.282759824793 + ], + "libelle_d_acheminement": "VILLEBOIS LAVALETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.282759824793, + 45.4787469231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54afa0c57b086cc748f71765f339603e3b587b76", + "fields": { + "code_commune_insee": "16421", + "nom_de_la_commune": "VOUTHON", + "code_postal": "16220", + "coordonnees_gps": [ + 45.660500114, + 0.447401075403 + ], + "libelle_d_acheminement": "VOUTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.447401075403, + 45.660500114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9d0df516fd3846411077117add075da46cb4fc5", + "fields": { + "code_commune_insee": "16422", + "nom_de_la_commune": "VOUZAN", + "code_postal": "16410", + "coordonnees_gps": [ + 45.6000909965, + 0.359871662145 + ], + "libelle_d_acheminement": "VOUZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.359871662145, + 45.6000909965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9638e010e319c589d946130fd07b3091611dd4f", + "fields": { + "code_commune_insee": "17006", + "nom_de_la_commune": "ALLAS CHAMPAGNE", + "code_postal": "17500", + "coordonnees_gps": [ + 45.4726406982, + -0.339612863623 + ], + "libelle_d_acheminement": "ALLAS CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.339612863623, + 45.4726406982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1adb118a6ed327a9612146951d1d272a9dd415f", + "fields": { + "code_commune_insee": "17018", + "nom_de_la_commune": "ARDILLIERES", + "code_postal": "17290", + "coordonnees_gps": [ + 46.0498769657, + -0.890135865297 + ], + "libelle_d_acheminement": "ARDILLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.890135865297, + 46.0498769657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c0199ffe055434b8b8349717a64e7d36a4094ad", + "fields": { + "code_commune_insee": "17022", + "nom_de_la_commune": "ASNIERES LA GIRAUD", + "code_postal": "17400", + "coordonnees_gps": [ + 45.8934744108, + -0.510489870265 + ], + "libelle_d_acheminement": "ASNIERES LA GIRAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.510489870265, + 45.8934744108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9de51272eb5ac9226f0ed355b6210839278504a3", + "fields": { + "ligne_5": "SALLES LES AULNAY", + "code_commune_insee": "17024", + "libelle_d_acheminement": "AULNAY", + "code_postal": "17470", + "nom_de_la_commune": "AULNAY", + "coordonnees_gps": [ + 46.0203377417, + -0.348095789107 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.348095789107, + 46.0203377417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dff65b9c9725ddcdd6983c0f00f039d94798c5d", + "fields": { + "code_commune_insee": "17025", + "nom_de_la_commune": "AUMAGNE", + "code_postal": "17770", + "coordonnees_gps": [ + 45.880093124, + -0.411702053139 + ], + "libelle_d_acheminement": "AUMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.411702053139, + 45.880093124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44f7c7e7b011d083c73092a15b1777487b6ca27b", + "fields": { + "code_commune_insee": "17026", + "nom_de_la_commune": "AUTHON EBEON", + "code_postal": "17770", + "coordonnees_gps": [ + 45.8418838316, + -0.426249552572 + ], + "libelle_d_acheminement": "AUTHON EBEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.426249552572, + 45.8418838316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce63db68a4232e98cfd3e54c96374e692800a34c", + "fields": { + "code_commune_insee": "17027", + "nom_de_la_commune": "AVY", + "code_postal": "17800", + "coordonnees_gps": [ + 45.5514357432, + -0.508678091517 + ], + "libelle_d_acheminement": "AVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.508678091517, + 45.5514357432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2768d36322f4de531e00ef18f160a0c862c790c7", + "fields": { + "code_commune_insee": "17044", + "nom_de_la_commune": "BERNEUIL", + "code_postal": "17460", + "coordonnees_gps": [ + 45.6570139489, + -0.598024601666 + ], + "libelle_d_acheminement": "BERNEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.598024601666, + 45.6570139489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fe8c4649ac5e12f57d2b27e178ca57ecff6145d", + "fields": { + "code_commune_insee": "17046", + "nom_de_la_commune": "BIGNAY", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9212951544, + -0.601162350534 + ], + "libelle_d_acheminement": "BIGNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.601162350534, + 45.9212951544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "411ef01d3cc9f372335ded4fc049415d6a802d34", + "fields": { + "code_commune_insee": "17049", + "nom_de_la_commune": "BLANZAY SUR BOUTONNE", + "code_postal": "17470", + "coordonnees_gps": [ + 46.0542310173, + -0.42559316503 + ], + "libelle_d_acheminement": "BLANZAY SUR BOUTONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42559316503, + 46.0542310173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1b745e5c9c053bbadf3efff9f5cc449dc069680", + "fields": { + "code_commune_insee": "17054", + "nom_de_la_commune": "BORESSE ET MARTRON", + "code_postal": "17270", + "coordonnees_gps": [ + 45.2732901399, + -0.126873222783 + ], + "libelle_d_acheminement": "BORESSE ET MARTRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.126873222783, + 45.2732901399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f5fdbce36db7d96981ae8b250f229c3326e19a4", + "fields": { + "code_commune_insee": "17055", + "nom_de_la_commune": "BOSCAMNANT", + "code_postal": "17360", + "coordonnees_gps": [ + 45.1918411913, + -0.0719487146419 + ], + "libelle_d_acheminement": "BOSCAMNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0719487146419, + 45.1918411913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aa634c5a639e885af9d564d5ee89a84bf0b9c40", + "fields": { + "code_commune_insee": "17058", + "nom_de_la_commune": "BOURCEFRANC LE CHAPUS", + "code_postal": "17560", + "coordonnees_gps": [ + 45.8473362816, + -1.13429637237 + ], + "libelle_d_acheminement": "BOURCEFRANC LE CHAPUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13429637237, + 45.8473362816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "072e9b3bcbdbf91dd44dc8bbf6b2ce40b8361840", + "fields": { + "code_commune_insee": "17062", + "nom_de_la_commune": "BRESDON", + "code_postal": "17490", + "coordonnees_gps": [ + 45.8650109231, + -0.145421933634 + ], + "libelle_d_acheminement": "BRESDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.145421933634, + 45.8650109231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a65003670b6dd36649036b5890190f8bb969bc4e", + "fields": { + "code_commune_insee": "17065", + "nom_de_la_commune": "BREUIL MAGNE", + "code_postal": "17870", + "coordonnees_gps": [ + 46.0002799003, + -0.966249355235 + ], + "libelle_d_acheminement": "BREUIL MAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.966249355235, + 46.0002799003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85c882862d3e2f1de76c6e1b3446f424047e00a8", + "fields": { + "code_commune_insee": "17081", + "nom_de_la_commune": "CHAMOUILLAC", + "code_postal": "17130", + "coordonnees_gps": [ + 45.3058629174, + -0.465409167934 + ], + "libelle_d_acheminement": "CHAMOUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.465409167934, + 45.3058629174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d802d3005b19f509ad4659d0cae4348d116c7ed8", + "fields": { + "code_commune_insee": "17084", + "nom_de_la_commune": "CHAMPAGNOLLES", + "code_postal": "17240", + "coordonnees_gps": [ + 45.5097912928, + -0.647721858096 + ], + "libelle_d_acheminement": "CHAMPAGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.647721858096, + 45.5097912928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8304e931f0f87f54a3ed82a974414a0d638e9eb3", + "fields": { + "code_commune_insee": "17093", + "nom_de_la_commune": "LE CHATEAU D OLERON", + "code_postal": "17480", + "coordonnees_gps": [ + 45.8813853125, + -1.2166234835 + ], + "libelle_d_acheminement": "LE CHATEAU D OLERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2166234835, + 45.8813853125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ac41b82a39192f3df5b51b973cc3e63eada7107", + "fields": { + "ligne_5": "LA GACONNIERE", + "code_commune_insee": "17093", + "libelle_d_acheminement": "LE CHATEAU D OLERON", + "code_postal": "17480", + "nom_de_la_commune": "LE CHATEAU D OLERON", + "coordonnees_gps": [ + 45.8813853125, + -1.2166234835 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2166234835, + 45.8813853125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba2abf4d0866f8d5f701ade9c7ea90fc364006a7", + "fields": { + "ligne_5": "ORS", + "code_commune_insee": "17093", + "libelle_d_acheminement": "LE CHATEAU D OLERON", + "code_postal": "17480", + "nom_de_la_commune": "LE CHATEAU D OLERON", + "coordonnees_gps": [ + 45.8813853125, + -1.2166234835 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2166234835, + 45.8813853125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e39fada351ada6e47b2a8ad49a386f6a1deb11d", + "fields": { + "code_commune_insee": "17094", + "nom_de_la_commune": "CHATELAILLON PLAGE", + "code_postal": "17340", + "coordonnees_gps": [ + 46.0727342481, + -1.08262101984 + ], + "libelle_d_acheminement": "CHATELAILLON PLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08262101984, + 46.0727342481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8899480259a98165e99bc0f145600c4d92da8ac", + "fields": { + "code_commune_insee": "17095", + "nom_de_la_commune": "CHATENET", + "code_postal": "17210", + "coordonnees_gps": [ + 45.2987522613, + -0.291493606073 + ], + "libelle_d_acheminement": "CHATENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.291493606073, + 45.2987522613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12b5758f903b8b0ff2dde1603d3c389ffed9223c", + "fields": { + "code_commune_insee": "17101", + "nom_de_la_commune": "CHERBONNIERES", + "code_postal": "17470", + "coordonnees_gps": [ + 45.9677756754, + -0.339891615561 + ], + "libelle_d_acheminement": "CHERBONNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.339891615561, + 45.9677756754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10a8f3a3fa92537c099c611f84aa5efa1dc82c31", + "fields": { + "code_commune_insee": "17108", + "nom_de_la_commune": "CLAM", + "code_postal": "17500", + "coordonnees_gps": [ + 45.492260471, + -0.444850950523 + ], + "libelle_d_acheminement": "CLAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.444850950523, + 45.492260471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99cb4e3a973c24a5a9f2a1f7664173b45959bd1d", + "fields": { + "code_commune_insee": "17109", + "nom_de_la_commune": "CLAVETTE", + "code_postal": "17220", + "coordonnees_gps": [ + 46.1423813762, + -1.03660142128 + ], + "libelle_d_acheminement": "CLAVETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03660142128, + 46.1423813762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "568a06938b6864b8b8706783a2ce89762423b12e", + "fields": { + "code_commune_insee": "17124", + "nom_de_la_commune": "COURANT", + "code_postal": "17330", + "coordonnees_gps": [ + 46.0375312829, + -0.587834905531 + ], + "libelle_d_acheminement": "COURANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.587834905531, + 46.0375312829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3928302375db425d556ff267b5d9d1cae44d4925", + "fields": { + "code_commune_insee": "17125", + "nom_de_la_commune": "COURCELLES", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9586702795, + -0.481078558771 + ], + "libelle_d_acheminement": "COURCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.481078558771, + 45.9586702795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb0619f3e9157ceaf6f1f5506da7afc26fa0cc99", + "fields": { + "code_commune_insee": "17126", + "nom_de_la_commune": "COURCERAC", + "code_postal": "17160", + "coordonnees_gps": [ + 45.8429574627, + -0.366358535503 + ], + "libelle_d_acheminement": "COURCERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.366358535503, + 45.8429574627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b11f1764925281598f0fcbcf5e5db4b1a493fb0", + "fields": { + "code_commune_insee": "17127", + "nom_de_la_commune": "COURCON", + "code_postal": "17170", + "coordonnees_gps": [ + 46.2550691794, + -0.795122277526 + ], + "libelle_d_acheminement": "COURCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.795122277526, + 46.2550691794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94af2bc69b75f166c17847d2c85c162d34a50444", + "fields": { + "code_commune_insee": "17134", + "nom_de_la_commune": "CRAZANNES", + "code_postal": "17350", + "coordonnees_gps": [ + 45.8503954667, + -0.705638764922 + ], + "libelle_d_acheminement": "CRAZANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.705638764922, + 45.8503954667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63e79d4fbe09ab392923154b08888f78df1f6849", + "fields": { + "code_commune_insee": "17139", + "nom_de_la_commune": "DOEUIL SUR LE MIGNON", + "code_postal": "17330", + "coordonnees_gps": [ + 46.1238616322, + -0.549321763075 + ], + "libelle_d_acheminement": "DOEUIL SUR LE MIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.549321763075, + 46.1238616322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcacbef96986b955a1a1504c1c5e0623b9bd635c", + "fields": { + "code_commune_insee": "17142", + "nom_de_la_commune": "DOMPIERRE SUR MER", + "code_postal": "17139", + "coordonnees_gps": [ + 46.1840946232, + -1.06784317719 + ], + "libelle_d_acheminement": "DOMPIERRE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06784317719, + 46.1840946232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3808587399bad71ce5a11375af4055824e91cd6", + "fields": { + "ligne_5": "CHAGNOLET", + "code_commune_insee": "17142", + "libelle_d_acheminement": "DOMPIERRE SUR MER", + "code_postal": "17139", + "nom_de_la_commune": "DOMPIERRE SUR MER", + "coordonnees_gps": [ + 46.1840946232, + -1.06784317719 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06784317719, + 46.1840946232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd40cde187681f6b5b4d5732a0b6548170e23aff", + "fields": { + "code_commune_insee": "17146", + "nom_de_la_commune": "ECHILLAIS", + "code_postal": "17620", + "coordonnees_gps": [ + 45.9024659097, + -0.953390493199 + ], + "libelle_d_acheminement": "ECHILLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.953390493199, + 45.9024659097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32e40bb0757297267d9137bc0433750a2397cced", + "fields": { + "code_commune_insee": "17151", + "nom_de_la_commune": "L EGUILLE", + "code_postal": "17600", + "coordonnees_gps": [ + 45.7019009166, + -0.979905969423 + ], + "libelle_d_acheminement": "L EGUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.979905969423, + 45.7019009166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a01c3f2c9fe3dd7ad4bd8758e1d14fa03b02e1d1", + "fields": { + "code_commune_insee": "17152", + "nom_de_la_commune": "EPARGNES", + "code_postal": "17120", + "coordonnees_gps": [ + 45.5457212602, + -0.795992154585 + ], + "libelle_d_acheminement": "EPARGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.795992154585, + 45.5457212602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6d14d63fdc5abab8db6115a8b910ee511d6a7b9", + "fields": { + "code_commune_insee": "17155", + "nom_de_la_commune": "ETAULES", + "code_postal": "17750", + "coordonnees_gps": [ + 45.7225172256, + -1.10053747379 + ], + "libelle_d_acheminement": "ETAULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10053747379, + 45.7225172256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16a036e0c77695d880020019dc8791822ad5f792", + "fields": { + "ligne_5": "ST ROMAIN SUR GIRONDE", + "code_commune_insee": "17160", + "libelle_d_acheminement": "FLOIRAC", + "code_postal": "17240", + "nom_de_la_commune": "FLOIRAC", + "coordonnees_gps": [ + 45.4763669964, + -0.747580624551 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.747580624551, + 45.4763669964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96c99cb386c9cc5ce3453f0c1a426e382d70b297", + "fields": { + "ligne_5": "PUYDROUARD", + "code_commune_insee": "17166", + "libelle_d_acheminement": "FORGES", + "code_postal": "17290", + "nom_de_la_commune": "FORGES", + "coordonnees_gps": [ + 46.1090753059, + -0.892101839793 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.892101839793, + 46.1090753059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ad08ae888203e1ce895bd8ede8aa217b5618b80", + "fields": { + "code_commune_insee": "17173", + "nom_de_la_commune": "LA GENETOUZE", + "code_postal": "17360", + "coordonnees_gps": [ + 45.2212946692, + -0.0522747983265 + ], + "libelle_d_acheminement": "LA GENETOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0522747983265, + 45.2212946692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "522e35721ba2d15445e978eb990eb4d611cd61d3", + "fields": { + "code_commune_insee": "17176", + "nom_de_la_commune": "GIBOURNE", + "code_postal": "17160", + "coordonnees_gps": [ + 45.9287373881, + -0.312106629697 + ], + "libelle_d_acheminement": "GIBOURNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.312106629697, + 45.9287373881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "361c7fff0d2b8407c779b89bdde21268b8105c23", + "fields": { + "code_commune_insee": "17179", + "nom_de_la_commune": "LES GONDS", + "code_postal": "17100", + "coordonnees_gps": [ + 45.7062633213, + -0.60684737481 + ], + "libelle_d_acheminement": "LES GONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60684737481, + 45.7062633213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8b6556cdc998aa343aa5a0e5a37c5b9953e6f64", + "fields": { + "code_commune_insee": "17187", + "nom_de_la_commune": "GUITINIERES", + "code_postal": "17500", + "coordonnees_gps": [ + 45.443029378, + -0.511210601117 + ], + "libelle_d_acheminement": "GUITINIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.511210601117, + 45.443029378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b9eedb4fdaa69c457202934a3b3156654e5ce6c", + "fields": { + "code_commune_insee": "17190", + "nom_de_la_commune": "L HOUMEAU", + "code_postal": "17137", + "coordonnees_gps": [ + 46.1935718627, + -1.18641543002 + ], + "libelle_d_acheminement": "L HOUMEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18641543002, + 46.1935718627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "865d9dbd7ae0c32a865872fc74944c64ddc6e695", + "fields": { + "code_commune_insee": "17195", + "nom_de_la_commune": "LA JARRIE AUDOUIN", + "code_postal": "17330", + "coordonnees_gps": [ + 46.035099239, + -0.480660269998 + ], + "libelle_d_acheminement": "LA JARRIE AUDOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.480660269998, + 46.035099239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c460c3b9dcb0b193bd0f6a246ac4375da04f95f3", + "fields": { + "code_commune_insee": "17202", + "nom_de_la_commune": "LANDES", + "code_postal": "17380", + "coordonnees_gps": [ + 45.9948050533, + -0.600345343347 + ], + "libelle_d_acheminement": "LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.600345343347, + 45.9948050533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3ac332f5b4bbee216ceef3b2fa170f17b4558aa", + "fields": { + "code_commune_insee": "17203", + "nom_de_la_commune": "LANDRAIS", + "code_postal": "17290", + "coordonnees_gps": [ + 46.0695634718, + -0.857047499487 + ], + "libelle_d_acheminement": "LANDRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.857047499487, + 46.0695634718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1580d95215f22be44a6e5550b64fe985219c80f7", + "fields": { + "code_commune_insee": "17204", + "nom_de_la_commune": "LEOVILLE", + "code_postal": "17500", + "coordonnees_gps": [ + 45.3778692779, + -0.333027025612 + ], + "libelle_d_acheminement": "LEOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.333027025612, + 45.3778692779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10f14c0ee03848cb594f3233f5a1cf12d29945f6", + "fields": { + "code_commune_insee": "17208", + "nom_de_la_commune": "LONGEVES", + "code_postal": "17230", + "coordonnees_gps": [ + 46.2376082044, + -0.974659436539 + ], + "libelle_d_acheminement": "LONGEVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.974659436539, + 46.2376082044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4abf03d04cf803ca903d0e00ab72aef52897c927", + "fields": { + "code_commune_insee": "17209", + "nom_de_la_commune": "LONZAC", + "code_postal": "17520", + "coordonnees_gps": [ + 45.5911112245, + -0.396064768995 + ], + "libelle_d_acheminement": "LONZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.396064768995, + 45.5911112245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "103a06efafeccbb962861cb924a53bb3d1465eb7", + "fields": { + "code_commune_insee": "17210", + "nom_de_la_commune": "LORIGNAC", + "code_postal": "17240", + "coordonnees_gps": [ + 45.4601958891, + -0.67473411902 + ], + "libelle_d_acheminement": "LORIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67473411902, + 45.4601958891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6575bce0def83d489ecc0d67399ff609b51ad8ba", + "fields": { + "code_commune_insee": "17218", + "nom_de_la_commune": "MARANS", + "code_postal": "17230", + "coordonnees_gps": [ + 46.3120332384, + -0.979496238951 + ], + "libelle_d_acheminement": "MARANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.979496238951, + 46.3120332384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ea33f66e873fa62f50f61b7a7a90b8c06e50beb", + "fields": { + "ligne_5": "MARENNES", + "code_commune_insee": "17219", + "libelle_d_acheminement": "MARENNES HIERS BROUAGE", + "code_postal": "17320", + "nom_de_la_commune": "MARENNES HIERS BROUAGE", + "coordonnees_gps": [ + 45.8221269588, + -1.10929995315 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10929995315, + 45.8221269588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc038da1c24571ea64c0da8de819f1793b62da5a", + "fields": { + "code_commune_insee": "17221", + "nom_de_la_commune": "MARSAIS", + "code_postal": "17700", + "coordonnees_gps": [ + 46.1217050535, + -0.619473280005 + ], + "libelle_d_acheminement": "MARSAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.619473280005, + 46.1217050535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92e7c4747f904ba6c07700a2e4b2a707f2a637c3", + "fields": { + "code_commune_insee": "17222", + "nom_de_la_commune": "MARSILLY", + "code_postal": "17137", + "coordonnees_gps": [ + 46.2279815939, + -1.13416579432 + ], + "libelle_d_acheminement": "MARSILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13416579432, + 46.2279815939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "828d8a9a2ec55fe391b5f598ce9a1376d0db3079", + "fields": { + "code_commune_insee": "17226", + "nom_de_la_commune": "MAZERAY", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9158199464, + -0.559708232455 + ], + "libelle_d_acheminement": "MAZERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.559708232455, + 45.9158199464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42b3006f849f0dee5c55818d8f5d3755c048cad6", + "fields": { + "code_commune_insee": "17227", + "nom_de_la_commune": "MAZEROLLES", + "code_postal": "17800", + "coordonnees_gps": [ + 45.5589092028, + -0.587964814148 + ], + "libelle_d_acheminement": "MAZEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.587964814148, + 45.5589092028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "516cf7b14ba9c48972ffab081d3d39f57a21734c", + "fields": { + "ligne_5": "PETIT NIORT", + "code_commune_insee": "17236", + "libelle_d_acheminement": "MIRAMBEAU", + "code_postal": "17150", + "nom_de_la_commune": "MIRAMBEAU", + "coordonnees_gps": [ + 45.364556119, + -0.565410361333 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.565410361333, + 45.364556119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a641bc151b48054ddc5a4970774e780221f1656b", + "fields": { + "code_commune_insee": "17237", + "nom_de_la_commune": "MOEZE", + "code_postal": "17780", + "coordonnees_gps": [ + 45.8887503165, + -1.05150894917 + ], + "libelle_d_acheminement": "MOEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05150894917, + 45.8887503165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0145ff1a4c9a16e83277f5899c6db9f498e71b0", + "fields": { + "code_commune_insee": "17252", + "nom_de_la_commune": "LE MUNG", + "code_postal": "17350", + "coordonnees_gps": [ + 45.8721844676, + -0.714571429678 + ], + "libelle_d_acheminement": "LE MUNG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.714571429678, + 45.8721844676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aebb30562949d6d19a5d0255507d591f3932a40", + "fields": { + "code_commune_insee": "17254", + "nom_de_la_commune": "NACHAMPS", + "code_postal": "17380", + "coordonnees_gps": [ + 46.0220340085, + -0.624302957376 + ], + "libelle_d_acheminement": "NACHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.624302957376, + 46.0220340085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "317fd0a311d4a2af4344b2525e6a9f79c7a89b1c", + "fields": { + "code_commune_insee": "17256", + "nom_de_la_commune": "NANTILLE", + "code_postal": "17770", + "coordonnees_gps": [ + 45.8614440922, + -0.48338081833 + ], + "libelle_d_acheminement": "NANTILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48338081833, + 45.8614440922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce964d2060959e3747b04448e23dd746ff1105d8", + "fields": { + "code_commune_insee": "17271", + "nom_de_la_commune": "PAILLE", + "code_postal": "17470", + "coordonnees_gps": [ + 45.9859836336, + -0.38918870806 + ], + "libelle_d_acheminement": "PAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38918870806, + 45.9859836336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81ac30ad4fc9abc4205f1dff12524240ee2997c5", + "fields": { + "code_commune_insee": "17290", + "nom_de_la_commune": "PRIGNAC", + "code_postal": "17160", + "coordonnees_gps": [ + 45.8325260204, + -0.347339600431 + ], + "libelle_d_acheminement": "PRIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.347339600431, + 45.8325260204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "415a07d81338f6734a162a6c0ed3e36519c38a31", + "fields": { + "code_commune_insee": "17291", + "nom_de_la_commune": "PUILBOREAU", + "code_postal": "17138", + "coordonnees_gps": [ + 46.1853935247, + -1.11393605159 + ], + "libelle_d_acheminement": "PUILBOREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11393605159, + 46.1853935247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a16e196ee372a5da570e6dd94eb5318b14cdca0c", + "fields": { + "ligne_5": "MOINGS", + "code_commune_insee": "17295", + "libelle_d_acheminement": "REAUX SUR TREFLE", + "code_postal": "17500", + "nom_de_la_commune": "REAUX SUR TREFLE", + "coordonnees_gps": [ + 45.4656327459, + -0.380359644815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.380359644815, + 45.4656327459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "957769068e6d553c5134ca410dc54faa1789342f", + "fields": { + "code_commune_insee": "17296", + "nom_de_la_commune": "RETAUD", + "code_postal": "17460", + "coordonnees_gps": [ + 45.6729776474, + -0.729506627362 + ], + "libelle_d_acheminement": "RETAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.729506627362, + 45.6729776474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e41b65c3f52adf1f1d9eecf33bc8521f16a5ee6c", + "fields": { + "code_commune_insee": "17297", + "nom_de_la_commune": "RIVEDOUX PLAGE", + "code_postal": "17940", + "coordonnees_gps": [ + 46.159061213, + -1.28302289715 + ], + "libelle_d_acheminement": "RIVEDOUX PLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28302289715, + 46.159061213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc0e934a5285a87336b3e1629fb605c8d189d84c", + "fields": { + "code_commune_insee": "17300", + "nom_de_la_commune": "LA ROCHELLE", + "code_postal": "17000", + "coordonnees_gps": [ + 46.1620643972, + -1.17465702836 + ], + "libelle_d_acheminement": "LA ROCHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17465702836, + 46.1620643972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac9a7b43b8ae082d486b5afa315f65d8c9f75541", + "fields": { + "code_commune_insee": "17302", + "nom_de_la_commune": "ROMEGOUX", + "code_postal": "17250", + "coordonnees_gps": [ + 45.861176417, + -0.80155939841 + ], + "libelle_d_acheminement": "ROMEGOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80155939841, + 45.861176417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12069a15e59d45f6a8c4ef1453d5d361cbb57020", + "fields": { + "code_commune_insee": "17304", + "nom_de_la_commune": "ROUFFIAC", + "code_postal": "17800", + "coordonnees_gps": [ + 45.682529052, + -0.492871184363 + ], + "libelle_d_acheminement": "ROUFFIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.492871184363, + 45.682529052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9af4809a1caf5ad494bec69098f085999aa386e", + "fields": { + "code_commune_insee": "17315", + "nom_de_la_commune": "ST CHRISTOPHE", + "code_postal": "17220", + "coordonnees_gps": [ + 46.1399234323, + -0.948048348977 + ], + "libelle_d_acheminement": "ST CHRISTOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.948048348977, + 46.1399234323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97410e7bf6b7cf8963b391a0fa796f4ed0468c6a", + "fields": { + "code_commune_insee": "17325", + "nom_de_la_commune": "ST DIZANT DU GUA", + "code_postal": "17240", + "coordonnees_gps": [ + 45.4259413548, + -0.710571856304 + ], + "libelle_d_acheminement": "ST DIZANT DU GUA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.710571856304, + 45.4259413548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11a0bb9a9b07d5b8b73f1157f6ba95ea1651bc77", + "fields": { + "code_commune_insee": "17328", + "nom_de_la_commune": "ST FORT SUR GIRONDE", + "code_postal": "17240", + "coordonnees_gps": [ + 45.461784663, + -0.722254131989 + ], + "libelle_d_acheminement": "ST FORT SUR GIRONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.722254131989, + 45.461784663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f1cfca0f6f9065d7333f436c9a9e0def1653a78", + "fields": { + "code_commune_insee": "17331", + "nom_de_la_commune": "ST GENIS DE SAINTONGE", + "code_postal": "17240", + "coordonnees_gps": [ + 45.4802811029, + -0.569721710177 + ], + "libelle_d_acheminement": "ST GENIS DE SAINTONGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.569721710177, + 45.4802811029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f46e4f0552f05b5a25d875ee741177f72e30019", + "fields": { + "code_commune_insee": "17334", + "nom_de_la_commune": "ST GEORGES DE LONGUEPIERRE", + "code_postal": "17470", + "coordonnees_gps": [ + 46.0423797576, + -0.396872256026 + ], + "libelle_d_acheminement": "ST GEORGES DE LONGUEPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.396872256026, + 46.0423797576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec76a9604a1cdd9cb1434e487da9ba2e26864984", + "fields": { + "code_commune_insee": "17342", + "nom_de_la_commune": "ST GERMAIN DU SEUDRE", + "code_postal": "17240", + "coordonnees_gps": [ + 45.5131586137, + -0.685698200166 + ], + "libelle_d_acheminement": "ST GERMAIN DU SEUDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.685698200166, + 45.5131586137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5689078c6ed2135ee73fd27ac9567db21926ac72", + "fields": { + "code_commune_insee": "17345", + "nom_de_la_commune": "ST HILAIRE DU BOIS", + "code_postal": "17500", + "coordonnees_gps": [ + 45.4287275956, + -0.488064971553 + ], + "libelle_d_acheminement": "ST HILAIRE DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.488064971553, + 45.4287275956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cae7135a892a4502cc6a968414441b19bfe231bd", + "fields": { + "code_commune_insee": "17351", + "nom_de_la_commune": "ST JUST LUZAC", + "code_postal": "17320", + "coordonnees_gps": [ + 45.7944979756, + -1.0542452381 + ], + "libelle_d_acheminement": "ST JUST LUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0542452381, + 45.7944979756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ef6387c52fec0012f3698c0287856031b2e0115", + "fields": { + "code_commune_insee": "17353", + "nom_de_la_commune": "ST LAURENT DE LA PREE", + "code_postal": "17450", + "coordonnees_gps": [ + 45.9878727507, + -1.02745670693 + ], + "libelle_d_acheminement": "ST LAURENT DE LA PREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02745670693, + 45.9878727507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "980890d5cdfe1e9d46512c8e72cbcb499ea5c992", + "fields": { + "code_commune_insee": "17357", + "nom_de_la_commune": "ST MAIGRIN", + "code_postal": "17520", + "coordonnees_gps": [ + 45.4152024373, + -0.278686157018 + ], + "libelle_d_acheminement": "ST MAIGRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.278686157018, + 45.4152024373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b7f46096e07bb494d8955e6262b79ce60651423", + "fields": { + "code_commune_insee": "17361", + "nom_de_la_commune": "ST MARTIAL", + "code_postal": "17330", + "coordonnees_gps": [ + 46.0456994785, + -0.456838157243 + ], + "libelle_d_acheminement": "ST MARTIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.456838157243, + 46.0456994785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3373e49d1c9d49e52ff87bbfcf011772a3af4337", + "fields": { + "code_commune_insee": "17363", + "nom_de_la_commune": "ST MARTIAL DE VITATERNE", + "code_postal": "17500", + "coordonnees_gps": [ + 45.4626102999, + -0.430235388703 + ], + "libelle_d_acheminement": "ST MARTIAL DE VITATERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.430235388703, + 45.4626102999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eed47118d050b87b1c2bace5582ade7abf7ab85", + "fields": { + "code_commune_insee": "17366", + "nom_de_la_commune": "ST MARTIN DE COUX", + "code_postal": "17360", + "coordonnees_gps": [ + 45.1455143902, + -0.11038952138 + ], + "libelle_d_acheminement": "ST MARTIN DE COUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11038952138, + 45.1455143902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24d6eb9d694a7bb3835a570401882f5fbada09c7", + "fields": { + "code_commune_insee": "17367", + "nom_de_la_commune": "ST MARTIN DE JUILLERS", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9389657843, + -0.344541979564 + ], + "libelle_d_acheminement": "ST MARTIN DE JUILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.344541979564, + 45.9389657843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb179d05426940cc3048ae7587ebba5811975942", + "fields": { + "code_commune_insee": "17369", + "nom_de_la_commune": "ST MARTIN DE RE", + "code_postal": "17410", + "coordonnees_gps": [ + 46.1990908569, + -1.36683779933 + ], + "libelle_d_acheminement": "ST MARTIN DE RE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36683779933, + 46.1990908569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9773926715f0720995fc76663123f7f49c1fea1", + "fields": { + "code_commune_insee": "17375", + "nom_de_la_commune": "ST NAZAIRE SUR CHARENTE", + "code_postal": "17780", + "coordonnees_gps": [ + 45.943056045, + -1.0281857286 + ], + "libelle_d_acheminement": "ST NAZAIRE SUR CHARENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0281857286, + 45.943056045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f23cb71f392321c17ec695643300b1e22177539", + "fields": { + "code_commune_insee": "17385", + "nom_de_la_commune": "ST PIERRE D OLERON", + "code_postal": "17310", + "coordonnees_gps": [ + 45.9396931461, + -1.30530935595 + ], + "libelle_d_acheminement": "ST PIERRE D OLERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30530935595, + 45.9396931461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d10e207563f181ba431b9689225aa3750f1df68", + "fields": { + "code_commune_insee": "17386", + "nom_de_la_commune": "ST PIERRE DU PALAIS", + "code_postal": "17270", + "coordonnees_gps": [ + 45.1589862484, + -0.150996652179 + ], + "libelle_d_acheminement": "ST PIERRE DU PALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.150996652179, + 45.1589862484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "186951df78879b5916ff02fb76c2daf5e18cce71", + "fields": { + "code_commune_insee": "17389", + "nom_de_la_commune": "STE RADEGONDE", + "code_postal": "17250", + "coordonnees_gps": [ + 45.8492187707, + -0.872725907585 + ], + "libelle_d_acheminement": "STE RADEGONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.872725907585, + 45.8492187707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49c2e2c6dab007834b4e340ba137b371a5cb757b", + "fields": { + "code_commune_insee": "17398", + "nom_de_la_commune": "ST SEURIN DE PALENNE", + "code_postal": "17800", + "coordonnees_gps": [ + 45.6222077247, + -0.513310420639 + ], + "libelle_d_acheminement": "ST SEURIN DE PALENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.513310420639, + 45.6222077247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6ecbc2bee3d0936593c4711e46c3cb53b39d7e5", + "fields": { + "code_commune_insee": "17401", + "nom_de_la_commune": "ST SEVERIN SUR BOUTONNE", + "code_postal": "17330", + "coordonnees_gps": [ + 46.089265514, + -0.428552923889 + ], + "libelle_d_acheminement": "ST SEVERIN SUR BOUTONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.428552923889, + 46.089265514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e9acf68bf9166539b92cfcef843107122063cc5", + "fields": { + "code_commune_insee": "17402", + "nom_de_la_commune": "ST SIGISMOND DE CLERMONT", + "code_postal": "17240", + "coordonnees_gps": [ + 45.4476679047, + -0.546072790481 + ], + "libelle_d_acheminement": "ST SIGISMOND DE CLERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.546072790481, + 45.4476679047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aad277d9d98ba450160b782796fc8533ee0272a2", + "fields": { + "code_commune_insee": "17404", + "nom_de_la_commune": "ST SIMON DE PELLOUAILLE", + "code_postal": "17260", + "coordonnees_gps": [ + 45.6096933438, + -0.675236020671 + ], + "libelle_d_acheminement": "ST SIMON DE PELLOUAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.675236020671, + 45.6096933438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b25b3a7da7c97905137447541148b9a47fa9d19", + "fields": { + "code_commune_insee": "17406", + "nom_de_la_commune": "ST SORNIN", + "code_postal": "17600", + "coordonnees_gps": [ + 45.770317043, + -0.975040646755 + ], + "libelle_d_acheminement": "ST SORNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.975040646755, + 45.770317043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44af3a50593cf1ac4cf101568a147fde7b350775", + "fields": { + "code_commune_insee": "17407", + "nom_de_la_commune": "STE SOULLE", + "code_postal": "17220", + "coordonnees_gps": [ + 46.1930484901, + -1.01648335022 + ], + "libelle_d_acheminement": "STE SOULLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01648335022, + 46.1930484901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efef23cc236bafa917f57f6fef80b772892afb02", + "fields": { + "ligne_5": "LES GRANDES RIVIERES", + "code_commune_insee": "17407", + "libelle_d_acheminement": "STE SOULLE", + "code_postal": "17220", + "nom_de_la_commune": "STE SOULLE", + "coordonnees_gps": [ + 46.1930484901, + -1.01648335022 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01648335022, + 46.1930484901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b950041b33442703bb9d449b27cd18e4bf63a2e8", + "fields": { + "code_commune_insee": "17408", + "nom_de_la_commune": "ST SULPICE D ARNOULT", + "code_postal": "17250", + "coordonnees_gps": [ + 45.8161997833, + -0.826983052585 + ], + "libelle_d_acheminement": "ST SULPICE D ARNOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.826983052585, + 45.8161997833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb5160bfd034662536d2355b4533b44e99f16a90", + "fields": { + "code_commune_insee": "17409", + "nom_de_la_commune": "ST SULPICE DE ROYAN", + "code_postal": "17200", + "coordonnees_gps": [ + 45.6735457263, + -1.00633243777 + ], + "libelle_d_acheminement": "ST SULPICE DE ROYAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00633243777, + 45.6735457263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3111c0ba1eb46c16ecf39aac8af7fa5ab820a7bb", + "fields": { + "code_commune_insee": "17411", + "nom_de_la_commune": "ST TROJAN LES BAINS", + "code_postal": "17370", + "coordonnees_gps": [ + 45.8319189499, + -1.22713007046 + ], + "libelle_d_acheminement": "ST TROJAN LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22713007046, + 45.8319189499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f55fa4daa9a1641066cc230e81c252bd8c21329a", + "fields": { + "code_commune_insee": "17421", + "nom_de_la_commune": "SAUJON", + "code_postal": "17600", + "coordonnees_gps": [ + 45.6754417186, + -0.936728980856 + ], + "libelle_d_acheminement": "SAUJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.936728980856, + 45.6754417186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12b198e92ad9f444837fc6a1153a819d33fac070", + "fields": { + "code_commune_insee": "17424", + "nom_de_la_commune": "SEMOUSSAC", + "code_postal": "17150", + "coordonnees_gps": [ + 45.3899137022, + -0.624747123124 + ], + "libelle_d_acheminement": "SEMOUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.624747123124, + 45.3899137022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39b117867ced9e22b675890bba7d91323456f866", + "fields": { + "code_commune_insee": "17428", + "nom_de_la_commune": "SONNAC", + "code_postal": "17160", + "coordonnees_gps": [ + 45.8306131038, + -0.282090626459 + ], + "libelle_d_acheminement": "SONNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.282090626459, + 45.8306131038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42c860d42ce09c366cf150c434615cb44da58a41", + "fields": { + "code_commune_insee": "17430", + "nom_de_la_commune": "SOUBRAN", + "code_postal": "17150", + "coordonnees_gps": [ + 45.3542631306, + -0.519282663835 + ], + "libelle_d_acheminement": "SOUBRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.519282663835, + 45.3542631306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3232de4dc01378157026e12d97538aab09751ea8", + "fields": { + "code_commune_insee": "17436", + "nom_de_la_commune": "TAILLEBOURG", + "code_postal": "17350", + "coordonnees_gps": [ + 45.8452927158, + -0.635939473122 + ], + "libelle_d_acheminement": "TAILLEBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.635939473122, + 45.8452927158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82eefe3267360ffa570f9df6202e1119a48acb57", + "fields": { + "code_commune_insee": "17447", + "nom_de_la_commune": "LE THOU", + "code_postal": "17290", + "coordonnees_gps": [ + 46.0868700947, + -0.937375206626 + ], + "libelle_d_acheminement": "LE THOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.937375206626, + 46.0868700947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89a6856355a2d1324f098f0046751020e72bb387", + "fields": { + "code_commune_insee": "17448", + "nom_de_la_commune": "TONNAY BOUTONNE", + "code_postal": "17380", + "coordonnees_gps": [ + 45.9748907338, + -0.710979318464 + ], + "libelle_d_acheminement": "TONNAY BOUTONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.710979318464, + 45.9748907338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee0908016df395e9c18cf32be4332f4d6f5effbf", + "fields": { + "code_commune_insee": "17451", + "nom_de_la_commune": "LES TOUCHES DE PERIGNY", + "code_postal": "17160", + "coordonnees_gps": [ + 45.9076315101, + -0.26562144892 + ], + "libelle_d_acheminement": "LES TOUCHES DE PERIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26562144892, + 45.9076315101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d82eea3a9fe06943c392a0543c48b299d923dd9b", + "fields": { + "ligne_5": "RONCE LES BAINS", + "code_commune_insee": "17452", + "libelle_d_acheminement": "LA TREMBLADE", + "code_postal": "17390", + "nom_de_la_commune": "LA TREMBLADE", + "coordonnees_gps": [ + 45.7595222262, + -1.19070707014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19070707014, + 45.7595222262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e20d7b01594c35153f8cae9126e682319c425a2", + "fields": { + "code_commune_insee": "17461", + "nom_de_la_commune": "VAUX SUR MER", + "code_postal": "17640", + "coordonnees_gps": [ + 45.6448017664, + -1.05853577703 + ], + "libelle_d_acheminement": "VAUX SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05853577703, + 45.6448017664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c598a7d949f7d5779895606b3987cb36d5c95f9", + "fields": { + "code_commune_insee": "17465", + "nom_de_la_commune": "LA VERGNE", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9708906994, + -0.567291200569 + ], + "libelle_d_acheminement": "LA VERGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.567291200569, + 45.9708906994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82cdcd06c54fcc5b7f30894be30d497833dedd98", + "fields": { + "code_commune_insee": "17472", + "nom_de_la_commune": "VILLEDOUX", + "code_postal": "17230", + "coordonnees_gps": [ + 46.2434012234, + -1.07321328867 + ], + "libelle_d_acheminement": "VILLEDOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07321328867, + 46.2434012234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2afea26ce62ccaba984ba9ae52098d65d234a9e", + "fields": { + "code_commune_insee": "17476", + "nom_de_la_commune": "VILLEXAVIER", + "code_postal": "17500", + "coordonnees_gps": [ + 45.3786120866, + -0.439687126824 + ], + "libelle_d_acheminement": "VILLEXAVIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.439687126824, + 45.3786120866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aa6a5b8801b90a3ae4e3d63bdcd14188a60ffdf", + "fields": { + "code_commune_insee": "17479", + "nom_de_la_commune": "VIROLLET", + "code_postal": "17260", + "coordonnees_gps": [ + 45.5376067131, + -0.728910757223 + ], + "libelle_d_acheminement": "VIROLLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.728910757223, + 45.5376067131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4ff037b29836831d80311bd0056b15bf3ba2ef6", + "fields": { + "code_commune_insee": "17480", + "nom_de_la_commune": "VIRSON", + "code_postal": "17290", + "coordonnees_gps": [ + 46.1388630308, + -0.88461577185 + ], + "libelle_d_acheminement": "VIRSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.88461577185, + 46.1388630308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44506f7b5097e8d4eb0fa08dc5022e2f1c24faf2", + "fields": { + "code_commune_insee": "17482", + "nom_de_la_commune": "VOUHE", + "code_postal": "17700", + "coordonnees_gps": [ + 46.1518956728, + -0.797123329244 + ], + "libelle_d_acheminement": "VOUHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.797123329244, + 46.1518956728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b810ff91c7428810f89e7c5f158e98e84e7ce99", + "fields": { + "code_commune_insee": "17484", + "nom_de_la_commune": "PORT DES BARQUES", + "code_postal": "17730", + "coordonnees_gps": [ + 45.9419529118, + -1.07230587054 + ], + "libelle_d_acheminement": "PORT DES BARQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07230587054, + 45.9419529118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4dd4c909efce96adfb18c682590c37362f2a22b", + "fields": { + "code_commune_insee": "17485", + "nom_de_la_commune": "LE GRAND VILLAGE PLAGE", + "code_postal": "17370", + "coordonnees_gps": [ + 45.8620787516, + -1.24274513266 + ], + "libelle_d_acheminement": "LE GRAND VILLAGE PLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24274513266, + 45.8620787516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd9b28b17e29bb8abade682f48ff64d508e97ca1", + "fields": { + "code_commune_insee": "18003", + "nom_de_la_commune": "LES AIX D ANGILLON", + "code_postal": "18220", + "coordonnees_gps": [ + 47.192968882, + 2.56146410193 + ], + "libelle_d_acheminement": "LES AIX D ANGILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56146410193, + 47.192968882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b36b99e21704bce20b5b768fe7a4cc1ffa469f7", + "fields": { + "code_commune_insee": "18009", + "nom_de_la_commune": "ARCOMPS", + "code_postal": "18200", + "coordonnees_gps": [ + 46.6760407934, + 2.42650950674 + ], + "libelle_d_acheminement": "ARCOMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42650950674, + 46.6760407934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29a3b43f9da43481ca394edfe871a001158d2da7", + "fields": { + "code_commune_insee": "18013", + "nom_de_la_commune": "ARPHEUILLES", + "code_postal": "18200", + "coordonnees_gps": [ + 46.791585762, + 2.56799217336 + ], + "libelle_d_acheminement": "ARPHEUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56799217336, + 46.791585762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "586284e3cba46e6b97a016f8997ea5b9b7e09fef", + "fields": { + "code_commune_insee": "18015", + "nom_de_la_commune": "AUBIGNY SUR NERE", + "code_postal": "18700", + "coordonnees_gps": [ + 47.4861718263, + 2.42121788452 + ], + "libelle_d_acheminement": "AUBIGNY SUR NERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42121788452, + 47.4861718263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adedd1430a2bc0a43211168f43298a56d1e48c3f", + "fields": { + "code_commune_insee": "18016", + "nom_de_la_commune": "AUBINGES", + "code_postal": "18220", + "coordonnees_gps": [ + 47.2193143403, + 2.58567212156 + ], + "libelle_d_acheminement": "AUBINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58567212156, + 47.2193143403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3739d9bb6b8bb3aadeaf6bfbc7711d9ce8d108b", + "fields": { + "code_commune_insee": "18020", + "nom_de_la_commune": "BANNAY", + "code_postal": "18300", + "coordonnees_gps": [ + 47.3833182076, + 2.87338903587 + ], + "libelle_d_acheminement": "BANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87338903587, + 47.3833182076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2165ec0e98c713ce43b74f00e7269732441fc4b2", + "fields": { + "code_commune_insee": "18024", + "nom_de_la_commune": "BEDDES", + "code_postal": "18370", + "coordonnees_gps": [ + 46.6084346256, + 2.2100404185 + ], + "libelle_d_acheminement": "BEDDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2100404185, + 46.6084346256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a70be8b9574840781af786fa99adad17d3f8baa3", + "fields": { + "code_commune_insee": "18031", + "nom_de_la_commune": "BLET", + "code_postal": "18350", + "coordonnees_gps": [ + 46.8822848044, + 2.73104674271 + ], + "libelle_d_acheminement": "BLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73104674271, + 46.8822848044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dfcbb7b561e3d4d5e6225b48b3aa2754f053ef0", + "fields": { + "code_commune_insee": "18033", + "nom_de_la_commune": "BOURGES", + "code_postal": "18000", + "coordonnees_gps": [ + 47.0749572013, + 2.40417137557 + ], + "libelle_d_acheminement": "BOURGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40417137557, + 47.0749572013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8498e6314d4c2559396cb0c697d814dd55b8b8c5", + "fields": { + "code_commune_insee": "18035", + "nom_de_la_commune": "BRECY", + "code_postal": "18220", + "coordonnees_gps": [ + 47.1299888038, + 2.63016565896 + ], + "libelle_d_acheminement": "BRECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63016565896, + 47.1299888038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d423fb32b86365c7c61b1e0ac82ae626384571c", + "fields": { + "code_commune_insee": "18042", + "nom_de_la_commune": "LA CELLE", + "code_postal": "18200", + "coordonnees_gps": [ + 46.770990086, + 2.45882023985 + ], + "libelle_d_acheminement": "LA CELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45882023985, + 46.770990086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "089c5a838252d8f96f39dda1b6d59579c36e9d17", + "fields": { + "code_commune_insee": "18046", + "nom_de_la_commune": "CHAMBON", + "code_postal": "18190", + "coordonnees_gps": [ + 46.7780830686, + 2.33442238043 + ], + "libelle_d_acheminement": "CHAMBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33442238043, + 46.7780830686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "803a391000be95f5badb13d3c2625300fe034e98", + "fields": { + "code_commune_insee": "18050", + "nom_de_la_commune": "LA CHAPELLE ST URSIN", + "code_postal": "18570", + "coordonnees_gps": [ + 47.0576566337, + 2.31864168106 + ], + "libelle_d_acheminement": "LA CHAPELLE ST URSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31864168106, + 47.0576566337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6ac62d27604de75251eb2fcd68cee765f4fa0de", + "fields": { + "code_commune_insee": "18051", + "nom_de_la_commune": "LA CHAPELOTTE", + "code_postal": "18250", + "coordonnees_gps": [ + 47.3342226318, + 2.5989427382 + ], + "libelle_d_acheminement": "LA CHAPELOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5989427382, + 47.3342226318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d148243dc6e70c26230d7bd57c639ec3203e0f06", + "fields": { + "code_commune_insee": "18054", + "nom_de_la_commune": "CHARLY", + "code_postal": "18350", + "coordonnees_gps": [ + 46.9023025969, + 2.76293801009 + ], + "libelle_d_acheminement": "CHARLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76293801009, + 46.9023025969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13508a63601d7db3ebf184efc94cd22cc9aa33a8", + "fields": { + "code_commune_insee": "18059", + "nom_de_la_commune": "LE CHATELET", + "code_postal": "18170", + "coordonnees_gps": [ + 46.6281920568, + 2.29315665601 + ], + "libelle_d_acheminement": "LE CHATELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29315665601, + 46.6281920568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51e02885a1255f865bae20ca49be5c06ea0f650c", + "fields": { + "code_commune_insee": "18065", + "nom_de_la_commune": "CHEZAL BENOIT", + "code_postal": "18160", + "coordonnees_gps": [ + 46.8317666343, + 2.11116982783 + ], + "libelle_d_acheminement": "CHEZAL BENOIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11116982783, + 46.8317666343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "535f6be531a48d0aa8981c8f918b9274782a4aa1", + "fields": { + "code_commune_insee": "18080", + "nom_de_la_commune": "CROISY", + "code_postal": "18350", + "coordonnees_gps": [ + 46.9301591235, + 2.82901791001 + ], + "libelle_d_acheminement": "CROISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82901791001, + 46.9301591235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d94517a1bf6af5560dadba29f5b2b9c932120fc", + "fields": { + "code_commune_insee": "18082", + "nom_de_la_commune": "CUFFY", + "code_postal": "18150", + "coordonnees_gps": [ + 46.9693684862, + 3.03803252226 + ], + "libelle_d_acheminement": "CUFFY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03803252226, + 46.9693684862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d719b1661aa0f571b34e0de82ec8236af1629c17", + "fields": { + "code_commune_insee": "18087", + "nom_de_la_commune": "DUN SUR AURON", + "code_postal": "18130", + "coordonnees_gps": [ + 46.8920491203, + 2.56065525402 + ], + "libelle_d_acheminement": "DUN SUR AURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56065525402, + 46.8920491203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a80a86aaaf0dead10902bcb8bafdd0af25b9f8d5", + "fields": { + "code_commune_insee": "18088", + "nom_de_la_commune": "ENNORDRES", + "code_postal": "18380", + "coordonnees_gps": [ + 47.4226900181, + 2.40992073564 + ], + "libelle_d_acheminement": "ENNORDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40992073564, + 47.4226900181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad50cdd3b2c693c246eb255698d2cf408bd98666", + "fields": { + "code_commune_insee": "18089", + "nom_de_la_commune": "EPINEUIL LE FLEURIEL", + "code_postal": "18360", + "coordonnees_gps": [ + 46.5709100191, + 2.55643995576 + ], + "libelle_d_acheminement": "EPINEUIL LE FLEURIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55643995576, + 46.5709100191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "baf0076a262ebe820981df22b870e08937c526ef", + "fields": { + "code_commune_insee": "18100", + "nom_de_la_commune": "GENOUILLY", + "code_postal": "18310", + "coordonnees_gps": [ + 47.1905784621, + 1.88477464044 + ], + "libelle_d_acheminement": "GENOUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88477464044, + 47.1905784621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1894c6e24cfc7680e78a76921a6925afaf603af", + "fields": { + "code_commune_insee": "18101", + "nom_de_la_commune": "GERMIGNY L EXEMPT", + "code_postal": "18150", + "coordonnees_gps": [ + 46.9149646451, + 2.88246532896 + ], + "libelle_d_acheminement": "GERMIGNY L EXEMPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88246532896, + 46.9149646451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31bad3816bf52df4e6491b4651a98b9081f9d551", + "fields": { + "code_commune_insee": "18102", + "nom_de_la_commune": "GIVARDON", + "code_postal": "18600", + "coordonnees_gps": [ + 46.83317184, + 2.80822119538 + ], + "libelle_d_acheminement": "GIVARDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80822119538, + 46.83317184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3b2e6f559884920171a852ae71df96e906a31ad", + "fields": { + "code_commune_insee": "18103", + "nom_de_la_commune": "GRACAY", + "code_postal": "18310", + "coordonnees_gps": [ + 47.1408422625, + 1.85668822147 + ], + "libelle_d_acheminement": "GRACAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85668822147, + 47.1408422625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f45caa909110c574f7069615c368282b92de77d", + "fields": { + "code_commune_insee": "18105", + "nom_de_la_commune": "GRON", + "code_postal": "18800", + "coordonnees_gps": [ + 47.1164919396, + 2.73659516033 + ], + "libelle_d_acheminement": "GRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73659516033, + 47.1164919396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea0c545c6b12468e3a5cebfcd6040907154ac008", + "fields": { + "code_commune_insee": "18117", + "nom_de_la_commune": "JARS", + "code_postal": "18260", + "coordonnees_gps": [ + 47.3912030155, + 2.66658069402 + ], + "libelle_d_acheminement": "JARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66658069402, + 47.3912030155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17cea1c332668a02c7ae96864ba9dcbc8718d00f", + "fields": { + "code_commune_insee": "18121", + "nom_de_la_commune": "LANTAN", + "code_postal": "18130", + "coordonnees_gps": [ + 46.9047420149, + 2.66151003852 + ], + "libelle_d_acheminement": "LANTAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66151003852, + 46.9047420149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "090a181f14cabd32c9752d4259ffba01bfc8cdd2", + "fields": { + "code_commune_insee": "18125", + "nom_de_la_commune": "LERE", + "code_postal": "18240", + "coordonnees_gps": [ + 47.4660367439, + 2.8732698385 + ], + "libelle_d_acheminement": "LERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8732698385, + 47.4660367439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01d8b20a514688d940605113d1b96540d0d7579f", + "fields": { + "code_commune_insee": "18128", + "nom_de_la_commune": "LIMEUX", + "code_postal": "18120", + "coordonnees_gps": [ + 47.0765880688, + 2.12482425358 + ], + "libelle_d_acheminement": "LIMEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12482425358, + 47.0765880688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7862168e230e3a6773afc756759e107ade33275e", + "fields": { + "code_commune_insee": "18132", + "nom_de_la_commune": "LUGNY CHAMPAGNE", + "code_postal": "18140", + "coordonnees_gps": [ + 47.177490889, + 2.82796687911 + ], + "libelle_d_acheminement": "LUGNY CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82796687911, + 47.177490889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44428fa73830def213251114ad7756e45080d2b0", + "fields": { + "code_commune_insee": "18134", + "nom_de_la_commune": "LURY SUR ARNON", + "code_postal": "18120", + "coordonnees_gps": [ + 47.1346444236, + 2.06403657777 + ], + "libelle_d_acheminement": "LURY SUR ARNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06403657777, + 47.1346444236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "968fe432462d8037551309eff0c4061c8be937c2", + "fields": { + "code_commune_insee": "18136", + "nom_de_la_commune": "MARCAIS", + "code_postal": "18170", + "coordonnees_gps": [ + 46.6961285977, + 2.35313080489 + ], + "libelle_d_acheminement": "MARCAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35313080489, + 46.6961285977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15bbb1c576c2ff27b743765454e3b76906d6117c", + "fields": { + "code_commune_insee": "18139", + "nom_de_la_commune": "MARSEILLES LES AUBIGNY", + "code_postal": "18320", + "coordonnees_gps": [ + 47.0700384029, + 2.9939315256 + ], + "libelle_d_acheminement": "MARSEILLES LES AUBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9939315256, + 47.0700384029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fcb94d70aee9887eadde7561e3b5cccf5a953d1", + "fields": { + "code_commune_insee": "18143", + "nom_de_la_commune": "MENETOU COUTURE", + "code_postal": "18320", + "coordonnees_gps": [ + 47.0419975114, + 2.93649799809 + ], + "libelle_d_acheminement": "MENETOU COUTURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93649799809, + 47.0419975114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3782f64f1568d3b74d042114ecf89d4b2fb1b40", + "fields": { + "code_commune_insee": "18145", + "nom_de_la_commune": "MENETOU SALON", + "code_postal": "18510", + "coordonnees_gps": [ + 47.241732115, + 2.49021091816 + ], + "libelle_d_acheminement": "MENETOU SALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49021091816, + 47.241732115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e834242e69e8c5f82a4f5e852f6a96ac044d818a", + "fields": { + "code_commune_insee": "18147", + "nom_de_la_commune": "MENETREOL SUR SAULDRE", + "code_postal": "18700", + "coordonnees_gps": [ + 47.4492645796, + 2.28919930446 + ], + "libelle_d_acheminement": "MENETREOL SUR SAULDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28919930446, + 47.4492645796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f285e68334ac271ee0c51e6260d1f2346440354", + "fields": { + "code_commune_insee": "18150", + "nom_de_la_commune": "MERY SUR CHER", + "code_postal": "18100", + "coordonnees_gps": [ + 47.2476860248, + 1.99385861671 + ], + "libelle_d_acheminement": "MERY SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99385861671, + 47.2476860248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48e21e5628d3c9cd865684f5a2019cb1368da614", + "fields": { + "code_commune_insee": "18153", + "nom_de_la_commune": "MORLAC", + "code_postal": "18170", + "coordonnees_gps": [ + 46.7269891169, + 2.31713642544 + ], + "libelle_d_acheminement": "MORLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31713642544, + 46.7269891169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e10aa2c931ff79edca400c5c3274008586ee061", + "fields": { + "code_commune_insee": "18154", + "nom_de_la_commune": "MORNAY BERRY", + "code_postal": "18350", + "coordonnees_gps": [ + 47.0542272715, + 2.86500900166 + ], + "libelle_d_acheminement": "MORNAY BERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86500900166, + 47.0542272715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13b6fe930869f5d5c4322ddea3abd187f132a679", + "fields": { + "code_commune_insee": "18155", + "nom_de_la_commune": "MORNAY SUR ALLIER", + "code_postal": "18600", + "coordonnees_gps": [ + 46.8163723965, + 3.01072708056 + ], + "libelle_d_acheminement": "MORNAY SUR ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01072708056, + 46.8163723965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f84b8703787072a086381ba64a5d9f1c11bf3f31", + "fields": { + "code_commune_insee": "18165", + "nom_de_la_commune": "NEUVY SUR BARANGEON", + "code_postal": "18330", + "coordonnees_gps": [ + 47.3220132955, + 2.2713674082 + ], + "libelle_d_acheminement": "NEUVY SUR BARANGEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2713674082, + 47.3220132955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4567775e9fcc92fe703e67b06eb5f111dedde2f0", + "fields": { + "code_commune_insee": "18168", + "nom_de_la_commune": "LE NOYER", + "code_postal": "18260", + "coordonnees_gps": [ + 47.3641996794, + 2.66561684391 + ], + "libelle_d_acheminement": "LE NOYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66561684391, + 47.3641996794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dad43b717b65e86c54679cbbeb20f876d8d64697", + "fields": { + "code_commune_insee": "18171", + "nom_de_la_commune": "ORCENAIS", + "code_postal": "18200", + "coordonnees_gps": [ + 46.7097819686, + 2.413665719 + ], + "libelle_d_acheminement": "ORCENAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.413665719, + 46.7097819686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "648c98f3d4de6ae03659f18010466e5298e031f4", + "fields": { + "code_commune_insee": "18172", + "nom_de_la_commune": "ORVAL", + "code_postal": "18200", + "coordonnees_gps": [ + 46.7220226061, + 2.46720008987 + ], + "libelle_d_acheminement": "ORVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46720008987, + 46.7220226061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "254fe059b169ad723c624dee57f1e43c8327dbe1", + "fields": { + "code_commune_insee": "18178", + "nom_de_la_commune": "LA PERCHE", + "code_postal": "18200", + "coordonnees_gps": [ + 46.6330688475, + 2.57380750974 + ], + "libelle_d_acheminement": "LA PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57380750974, + 46.6330688475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bb0bdcdee67a5c558dfda761ab51eea857b0547", + "fields": { + "code_commune_insee": "18180", + "nom_de_la_commune": "PLAIMPIED GIVAUDINS", + "code_postal": "18340", + "coordonnees_gps": [ + 47.0077517141, + 2.43617013189 + ], + "libelle_d_acheminement": "PLAIMPIED GIVAUDINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43617013189, + 47.0077517141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2108768c2604e9d142e267671fa9ccdd202f058", + "fields": { + "code_commune_insee": "18182", + "nom_de_la_commune": "POISIEUX", + "code_postal": "18290", + "coordonnees_gps": [ + 47.0315698276, + 2.08940222035 + ], + "libelle_d_acheminement": "POISIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08940222035, + 47.0315698276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a86e1bfcf0b8ab03a2f860e5d5f1d64914f814e8", + "fields": { + "code_commune_insee": "18185", + "nom_de_la_commune": "PRESLY", + "code_postal": "18380", + "coordonnees_gps": [ + 47.3870067033, + 2.32263755555 + ], + "libelle_d_acheminement": "PRESLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32263755555, + 47.3870067033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d4f499d5f2c12734a7f3cbb93530e4df5a37e80", + "fields": { + "code_commune_insee": "18186", + "nom_de_la_commune": "PREUILLY", + "code_postal": "18120", + "coordonnees_gps": [ + 47.0949322488, + 2.1637576201 + ], + "libelle_d_acheminement": "PREUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1637576201, + 47.0949322488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7f3be9cbdd2f841927e68cf0bc8a4d997093fae", + "fields": { + "code_commune_insee": "18187", + "nom_de_la_commune": "PREVERANGES", + "code_postal": "18370", + "coordonnees_gps": [ + 46.4533938495, + 2.25291754357 + ], + "libelle_d_acheminement": "PREVERANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25291754357, + 46.4533938495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eceadd9b97a9ff8dfd95587058aea7d054e916d", + "fields": { + "code_commune_insee": "18188", + "nom_de_la_commune": "PRIMELLES", + "code_postal": "18400", + "coordonnees_gps": [ + 46.9066203258, + 2.21272434941 + ], + "libelle_d_acheminement": "PRIMELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21272434941, + 46.9066203258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2c7800d57397e53269d1da4105ed5484ede83ea", + "fields": { + "code_commune_insee": "18198", + "nom_de_la_commune": "ST AMBROIX", + "code_postal": "18290", + "coordonnees_gps": [ + 46.935551772, + 2.12401478057 + ], + "libelle_d_acheminement": "ST AMBROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12401478057, + 46.935551772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "456092bb603f50863961603a819479f073ffae62", + "fields": { + "code_commune_insee": "18204", + "nom_de_la_commune": "ST DENIS DE PALIN", + "code_postal": "18130", + "coordonnees_gps": [ + 46.9330784286, + 2.51915760832 + ], + "libelle_d_acheminement": "ST DENIS DE PALIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51915760832, + 46.9330784286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d30dc671e97769bac039332f62e06ec5423d43c", + "fields": { + "code_commune_insee": "18206", + "nom_de_la_commune": "ST ELOY DE GY", + "code_postal": "18110", + "coordonnees_gps": [ + 47.1692906668, + 2.33076138218 + ], + "libelle_d_acheminement": "ST ELOY DE GY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33076138218, + 47.1692906668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6548f20c9d3ece5e7d4e701627bacb58ec0a699d", + "fields": { + "ligne_5": "ENTROIS", + "code_commune_insee": "18215", + "libelle_d_acheminement": "ST HILAIRE DE GONDILLY", + "code_postal": "18350", + "nom_de_la_commune": "ST HILAIRE DE GONDILLY", + "coordonnees_gps": [ + 47.0235769936, + 2.90253231971 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90253231971, + 47.0235769936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a2de167557dc115f17fff6748b03d246df05cfd", + "fields": { + "code_commune_insee": "18217", + "nom_de_la_commune": "ST JEANVRIN", + "code_postal": "18370", + "coordonnees_gps": [ + 46.5964376118, + 2.2422951827 + ], + "libelle_d_acheminement": "ST JEANVRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2422951827, + 46.5964376118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92e12b05abbff7c4561cb23c60891e1d01ba9901", + "fields": { + "code_commune_insee": "18225", + "nom_de_la_commune": "ST MAUR", + "code_postal": "18270", + "coordonnees_gps": [ + 46.568652329, + 2.28797208225 + ], + "libelle_d_acheminement": "ST MAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28797208225, + 46.568652329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "320bf41ac611e445df450d9366dddacd088e7614", + "fields": { + "code_commune_insee": "18236", + "nom_de_la_commune": "ST SYMPHORIEN", + "code_postal": "18190", + "coordonnees_gps": [ + 46.8074443579, + 2.3043522893 + ], + "libelle_d_acheminement": "ST SYMPHORIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3043522893, + 46.8074443579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ca1a03be9c528aec7256f051ae7c4314bca83ba", + "fields": { + "code_commune_insee": "18241", + "nom_de_la_commune": "SANCERRE", + "code_postal": "18300", + "coordonnees_gps": [ + 47.3256994042, + 2.82156691385 + ], + "libelle_d_acheminement": "SANCERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82156691385, + 47.3256994042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c57fc9f2c79d1cc988bcdcbec0f2dcfed4e088e", + "fields": { + "code_commune_insee": "18242", + "nom_de_la_commune": "SANCOINS", + "code_postal": "18600", + "coordonnees_gps": [ + 46.8245784906, + 2.91377950744 + ], + "libelle_d_acheminement": "SANCOINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91377950744, + 46.8245784906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3864031e93a0bda74090d0dd723d5bd529c0e9af", + "fields": { + "code_commune_insee": "18252", + "nom_de_la_commune": "SIDIAILLES", + "code_postal": "18270", + "coordonnees_gps": [ + 46.5116849197, + 2.31463159762 + ], + "libelle_d_acheminement": "SIDIAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31463159762, + 46.5116849197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "950ed64eec08a9ce43042ec70a6f12a2483dc41b", + "fields": { + "code_commune_insee": "18258", + "nom_de_la_commune": "SURY EN VAUX", + "code_postal": "18300", + "coordonnees_gps": [ + 47.3718751435, + 2.80397363416 + ], + "libelle_d_acheminement": "SURY EN VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80397363416, + 47.3718751435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "639d4670b3f68e49cad921da74d53d2e640b7496", + "fields": { + "code_commune_insee": "18262", + "nom_de_la_commune": "THAUVENAY", + "code_postal": "18300", + "coordonnees_gps": [ + 47.3006910629, + 2.87323352744 + ], + "libelle_d_acheminement": "THAUVENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87323352744, + 47.3006910629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5805518482bc8b84a23446e3d30362d9c978f83a", + "fields": { + "code_commune_insee": "18263", + "nom_de_la_commune": "THENIOUX", + "code_postal": "18100", + "coordonnees_gps": [ + 47.2616443934, + 1.93927302127 + ], + "libelle_d_acheminement": "THENIOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93927302127, + 47.2616443934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddac4670a4acb2cee3f9d24f9aba9c3d966abde5", + "fields": { + "code_commune_insee": "18265", + "nom_de_la_commune": "TORTERON", + "code_postal": "18320", + "coordonnees_gps": [ + 47.009472692, + 2.98349703012 + ], + "libelle_d_acheminement": "TORTERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98349703012, + 47.009472692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c9edbaefaf6a81e924f0e8a3fc2c5522053a644", + "fields": { + "code_commune_insee": "18266", + "nom_de_la_commune": "TOUCHAY", + "code_postal": "18160", + "coordonnees_gps": [ + 46.7151900372, + 2.21019388747 + ], + "libelle_d_acheminement": "TOUCHAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21019388747, + 46.7151900372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c5ada6ecdc33c91334412b01acccf1f4a62e563", + "fields": { + "code_commune_insee": "18267", + "nom_de_la_commune": "TROUY", + "code_postal": "18570", + "coordonnees_gps": [ + 47.0200069929, + 2.36619290348 + ], + "libelle_d_acheminement": "TROUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36619290348, + 47.0200069929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc8ae857adccc5ff857f7a4b6d5d7d1e47805464", + "fields": { + "code_commune_insee": "18275", + "nom_de_la_commune": "VEREAUX", + "code_postal": "18600", + "coordonnees_gps": [ + 46.8743707265, + 2.87737749635 + ], + "libelle_d_acheminement": "VEREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87737749635, + 46.8743707265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e800caf845a78f672976f2fdca519c053804976", + "fields": { + "code_commune_insee": "18280", + "nom_de_la_commune": "VIGNOUX SOUS LES AIX", + "code_postal": "18110", + "coordonnees_gps": [ + 47.1836612099, + 2.46965607598 + ], + "libelle_d_acheminement": "VIGNOUX SOUS LES AIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46965607598, + 47.1836612099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c21d909ccb18a81ed132fd59a255d333bdd88e79", + "fields": { + "code_commune_insee": "18286", + "nom_de_la_commune": "VILLEQUIERS", + "code_postal": "18800", + "coordonnees_gps": [ + 47.0782048668, + 2.79121093343 + ], + "libelle_d_acheminement": "VILLEQUIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79121093343, + 47.0782048668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35324830768d8e6bceafbdcb01c8a3b517759fce", + "fields": { + "code_commune_insee": "19001", + "nom_de_la_commune": "AFFIEUX", + "code_postal": "19260", + "coordonnees_gps": [ + 45.5079626044, + 1.76751292983 + ], + "libelle_d_acheminement": "AFFIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76751292983, + 45.5079626044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c21581f91c7e34b9575f6d6186767cba21363342", + "fields": { + "code_commune_insee": "19008", + "nom_de_la_commune": "AMBRUGEAT", + "code_postal": "19250", + "coordonnees_gps": [ + 45.5322152367, + 2.0852662893 + ], + "libelle_d_acheminement": "AMBRUGEAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0852662893, + 45.5322152367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "456e47f1dd1e85fd9440cfff5601605f0eafd596", + "fields": { + "code_commune_insee": "19009", + "nom_de_la_commune": "LES ANGLES SUR CORREZE", + "code_postal": "19000", + "coordonnees_gps": [ + 45.3096037325, + 1.80359667854 + ], + "libelle_d_acheminement": "LES ANGLES SUR CORREZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80359667854, + 45.3096037325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54e43b05197285b245442520681917cf134dae9d", + "fields": { + "code_commune_insee": "19011", + "nom_de_la_commune": "ARNAC POMPADOUR", + "code_postal": "19230", + "coordonnees_gps": [ + 45.410632637, + 1.36145818193 + ], + "libelle_d_acheminement": "ARNAC POMPADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36145818193, + 45.410632637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31df2bbaef7ff288f75407a1938fa26f6acb5f4f", + "fields": { + "code_commune_insee": "19018", + "nom_de_la_commune": "BASSIGNAC LE HAUT", + "code_postal": "19220", + "coordonnees_gps": [ + 45.1996282807, + 2.06735382659 + ], + "libelle_d_acheminement": "BASSIGNAC LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06735382659, + 45.1996282807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "605a04bcfff0216449d30d9bdb873ed9dea7fc10", + "fields": { + "code_commune_insee": "19020", + "nom_de_la_commune": "BEAUMONT", + "code_postal": "19390", + "coordonnees_gps": [ + 45.4239866507, + 1.79091632858 + ], + "libelle_d_acheminement": "BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79091632858, + 45.4239866507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ec3f461b5ad714cd01b7f6b8492594d0916dd5f", + "fields": { + "code_commune_insee": "19025", + "nom_de_la_commune": "BEYSSENAC", + "code_postal": "19230", + "coordonnees_gps": [ + 45.4022168067, + 1.30367937423 + ], + "libelle_d_acheminement": "BEYSSENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30367937423, + 45.4022168067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b675bd0b4382b727ef63dab874e9d72eebd34fa7", + "fields": { + "code_commune_insee": "19026", + "nom_de_la_commune": "BILHAC", + "code_postal": "19120", + "coordonnees_gps": [ + 44.9419839173, + 1.77725937607 + ], + "libelle_d_acheminement": "BILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77725937607, + 44.9419839173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e2b4a11d9635bbbfbb6b3ef3bd529fbdc5b7d67", + "fields": { + "code_commune_insee": "19027", + "nom_de_la_commune": "BONNEFOND", + "code_postal": "19170", + "coordonnees_gps": [ + 45.5259255035, + 1.9864406371 + ], + "libelle_d_acheminement": "BONNEFOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9864406371, + 45.5259255035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fa8719a859e9559168e641c4729d23cc0afa7a0", + "fields": { + "code_commune_insee": "19033", + "nom_de_la_commune": "BUGEAT", + "code_postal": "19170", + "coordonnees_gps": [ + 45.5900445661, + 1.93002669773 + ], + "libelle_d_acheminement": "BUGEAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93002669773, + 45.5900445661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65b391d37b935f9e137ab3dc4ebb5b14d021e8a4", + "fields": { + "code_commune_insee": "19034", + "nom_de_la_commune": "CAMPS ST MATHURIN LEOBAZEL", + "code_postal": "19430", + "coordonnees_gps": [ + 44.9925849683, + 1.99504075347 + ], + "libelle_d_acheminement": "CAMPS ST MATHURIN LEOBAZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99504075347, + 44.9925849683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd55fdbf248af7221b1d27d67d67d6c9a2333704", + "fields": { + "code_commune_insee": "19040", + "nom_de_la_commune": "CHAMPAGNAC LA PRUNE", + "code_postal": "19320", + "coordonnees_gps": [ + 45.1894490228, + 1.93781703813 + ], + "libelle_d_acheminement": "CHAMPAGNAC LA PRUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93781703813, + 45.1894490228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6930c57e3a7d8962f4bc2fcc080c3a796c94dec", + "fields": { + "code_commune_insee": "19046", + "nom_de_la_commune": "CHAPELLE SPINASSE", + "code_postal": "19300", + "coordonnees_gps": [ + 45.35845627, + 2.05247239518 + ], + "libelle_d_acheminement": "CHAPELLE SPINASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05247239518, + 45.35845627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "154be865b3871fd522ebf545b9587fe92f0cd9d9", + "fields": { + "code_commune_insee": "19055", + "nom_de_la_commune": "CHIRAC BELLEVUE", + "code_postal": "19160", + "coordonnees_gps": [ + 45.4528560123, + 2.30803671856 + ], + "libelle_d_acheminement": "CHIRAC BELLEVUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30803671856, + 45.4528560123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59a887a1d5a0e31b1e9ff4481330e31c23d31a1d", + "fields": { + "code_commune_insee": "19058", + "nom_de_la_commune": "COMBRESSOL", + "code_postal": "19250", + "coordonnees_gps": [ + 45.4687976652, + 2.16513566417 + ], + "libelle_d_acheminement": "COMBRESSOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16513566417, + 45.4687976652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8f38b169c784436ff21858276b66379db51095a", + "fields": { + "code_commune_insee": "19062", + "nom_de_la_commune": "CORREZE", + "code_postal": "19800", + "coordonnees_gps": [ + 45.3655110046, + 1.87090523159 + ], + "libelle_d_acheminement": "CORREZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87090523159, + 45.3655110046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8d2f2b57545dbe5502f6e5ccce9ac9cf83d3279", + "fields": { + "code_commune_insee": "19067", + "nom_de_la_commune": "CUREMONTE", + "code_postal": "19500", + "coordonnees_gps": [ + 45.0035299076, + 1.75465208697 + ], + "libelle_d_acheminement": "CUREMONTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75465208697, + 45.0035299076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd279c565805cbbf6e96e381a11fbc6ddbd53d18", + "fields": { + "code_commune_insee": "19073", + "nom_de_la_commune": "EGLETONS", + "code_postal": "19300", + "coordonnees_gps": [ + 45.4216623668, + 2.03629867165 + ], + "libelle_d_acheminement": "EGLETONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03629867165, + 45.4216623668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad6fce103d7ac2a747ca18a4bc94e6e67c26448e", + "fields": { + "code_commune_insee": "19080", + "nom_de_la_commune": "EYGURANDE", + "code_postal": "19340", + "coordonnees_gps": [ + 45.6767881141, + 2.42408510368 + ], + "libelle_d_acheminement": "EYGURANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42408510368, + 45.6767881141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e125ee95d4752931248f1004662cccf19d75a1e8", + "fields": { + "code_commune_insee": "19085", + "nom_de_la_commune": "GIMEL LES CASCADES", + "code_postal": "19800", + "coordonnees_gps": [ + 45.3041231992, + 1.84214988096 + ], + "libelle_d_acheminement": "GIMEL LES CASCADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84214988096, + 45.3041231992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "470e0cf2b44df1e41649e71364fdfc3ac39608c3", + "fields": { + "ligne_5": "MARC LA TOUR", + "code_commune_insee": "19098", + "libelle_d_acheminement": "LAGARDE MARC LA TOUR", + "code_postal": "19150", + "nom_de_la_commune": "LAGARDE MARC LA TOUR", + "coordonnees_gps": [ + 45.1855958017, + 1.81780911509 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81780911509, + 45.1855958017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edabab43846b390f1ba375c452f441236a4e5dac", + "fields": { + "ligne_5": "LAGUENNE", + "code_commune_insee": "19101", + "libelle_d_acheminement": "LAGUENNE SUR AVALOUZE", + "code_postal": "19150", + "nom_de_la_commune": "LAGUENNE SUR AVALOUZE", + "coordonnees_gps": [ + 45.2402545634, + 1.78668276464 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78668276464, + 45.2402545634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e15feca0446ef1ed5093d981b6494d59a211d8e6", + "fields": { + "ligne_5": "ST BONNET AVALOUZE", + "code_commune_insee": "19101", + "libelle_d_acheminement": "LAGUENNE SUR AVALOUZE", + "code_postal": "19150", + "nom_de_la_commune": "LAGUENNE SUR AVALOUZE", + "coordonnees_gps": [ + 45.2402545634, + 1.78668276464 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78668276464, + 45.2402545634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e4bf409fc7baadea0710a5f27d7768b942ef955", + "fields": { + "code_commune_insee": "19104", + "nom_de_la_commune": "LAMONGERIE", + "code_postal": "19510", + "coordonnees_gps": [ + 45.540833083, + 1.58011081843 + ], + "libelle_d_acheminement": "LAMONGERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58011081843, + 45.540833083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12759779f5aef98eb435da1977687aebd2091d6c", + "fields": { + "code_commune_insee": "19109", + "nom_de_la_commune": "LASCAUX", + "code_postal": "19130", + "coordonnees_gps": [ + 45.3405090712, + 1.37203323389 + ], + "libelle_d_acheminement": "LASCAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37203323389, + 45.3405090712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0031067d1165b7c8676a416cacfd958fda3c9ead", + "fields": { + "code_commune_insee": "19115", + "nom_de_la_commune": "LIGNEYRAC", + "code_postal": "19500", + "coordonnees_gps": [ + 45.0492268727, + 1.61825978828 + ], + "libelle_d_acheminement": "LIGNEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61825978828, + 45.0492268727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6980264c68bfc73b62c7618f22cc13b8fb15c455", + "fields": { + "code_commune_insee": "19119", + "nom_de_la_commune": "LOSTANGES", + "code_postal": "19500", + "coordonnees_gps": [ + 45.0685363268, + 1.77496658652 + ], + "libelle_d_acheminement": "LOSTANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77496658652, + 45.0685363268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee3e6fabf398bbe6122e4f40899aa12ab5787f50", + "fields": { + "code_commune_insee": "19128", + "nom_de_la_commune": "MARGERIDES", + "code_postal": "19200", + "coordonnees_gps": [ + 45.4564248108, + 2.41560570074 + ], + "libelle_d_acheminement": "MARGERIDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41560570074, + 45.4564248108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47c08fe6ea2fbeb59debe21ebb80c5c70b44f69a", + "fields": { + "code_commune_insee": "19131", + "nom_de_la_commune": "MEILHARDS", + "code_postal": "19510", + "coordonnees_gps": [ + 45.5471107848, + 1.63652060761 + ], + "libelle_d_acheminement": "MEILHARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63652060761, + 45.5471107848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "957de00a45c0cda0bc4274d6b2fc96b8dcc2c8cd", + "fields": { + "code_commune_insee": "19137", + "nom_de_la_commune": "MEYRIGNAC L EGLISE", + "code_postal": "19800", + "coordonnees_gps": [ + 45.4036167689, + 1.86043218765 + ], + "libelle_d_acheminement": "MEYRIGNAC L EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86043218765, + 45.4036167689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e36276678109c3831b9268dad0b16a88756245cb", + "fields": { + "code_commune_insee": "19151", + "nom_de_la_commune": "NOAILLES", + "code_postal": "19600", + "coordonnees_gps": [ + 45.0985911705, + 1.51852120349 + ], + "libelle_d_acheminement": "NOAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51852120349, + 45.0985911705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5cb4e04d12ec4af5ac5cf486e112d7ee2af12de", + "fields": { + "code_commune_insee": "19161", + "nom_de_la_commune": "PERPEZAC LE BLANC", + "code_postal": "19310", + "coordonnees_gps": [ + 45.2136295259, + 1.32740284551 + ], + "libelle_d_acheminement": "PERPEZAC LE BLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32740284551, + 45.2136295259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0bca1e60ed879c2d5da5428fcce23f8184e5368", + "fields": { + "code_commune_insee": "19167", + "nom_de_la_commune": "CONFOLENT PORT DIEU", + "code_postal": "19200", + "coordonnees_gps": [ + 45.5364773325, + 2.49849624237 + ], + "libelle_d_acheminement": "CONFOLENT PORT DIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49849624237, + 45.5364773325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6593c6ae03d090bb2d2be5bfbb328feb167057d2", + "fields": { + "code_commune_insee": "19169", + "nom_de_la_commune": "PUY D ARNAC", + "code_postal": "19120", + "coordonnees_gps": [ + 45.0254500765, + 1.77183790945 + ], + "libelle_d_acheminement": "PUY D ARNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77183790945, + 45.0254500765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "477f7e06f4d9d414340b38935ce332ab6a3b6539", + "fields": { + "code_commune_insee": "19202", + "nom_de_la_commune": "STE FEREOLE", + "code_postal": "19270", + "coordonnees_gps": [ + 45.2269634196, + 1.58885948296 + ], + "libelle_d_acheminement": "STE FEREOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58885948296, + 45.2269634196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69cd29f357d256c7b48c78725953ef747b18207e", + "fields": { + "code_commune_insee": "19209", + "nom_de_la_commune": "ST HILAIRE LES COURBES", + "code_postal": "19170", + "coordonnees_gps": [ + 45.5983709539, + 1.82144682815 + ], + "libelle_d_acheminement": "ST HILAIRE LES COURBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82144682815, + 45.5983709539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87719c5a8a868ce27910c74c166203f91d08d283", + "fields": { + "code_commune_insee": "19211", + "nom_de_la_commune": "ST HILAIRE PEYROUX", + "code_postal": "19560", + "coordonnees_gps": [ + 45.2103986023, + 1.64187495214 + ], + "libelle_d_acheminement": "ST HILAIRE PEYROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64187495214, + 45.2103986023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "354393d45b435ca95bfe7f91a8d2b61a89e96feb", + "fields": { + "code_commune_insee": "19216", + "nom_de_la_commune": "ST JULIEN LE VENDOMOIS", + "code_postal": "19210", + "coordonnees_gps": [ + 45.4578911899, + 1.32071021435 + ], + "libelle_d_acheminement": "ST JULIEN LE VENDOMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32071021435, + 45.4578911899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5848738630bd48faa7405343a69c0cc9ebd380b", + "fields": { + "code_commune_insee": "19219", + "nom_de_la_commune": "STE MARIE LAPANOUZE", + "code_postal": "19160", + "coordonnees_gps": [ + 45.4328750969, + 2.34596943981 + ], + "libelle_d_acheminement": "STE MARIE LAPANOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34596943981, + 45.4328750969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "206217a82a4df6bb9436cbb95a26e6f855d6bd2b", + "fields": { + "code_commune_insee": "19235", + "nom_de_la_commune": "ST PAUL", + "code_postal": "19150", + "coordonnees_gps": [ + 45.2063786861, + 1.89796054696 + ], + "libelle_d_acheminement": "ST PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89796054696, + 45.2063786861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0720c7a228e7d2eabb6b118f93871edc1a0e183", + "fields": { + "code_commune_insee": "19238", + "nom_de_la_commune": "ST REMY", + "code_postal": "19290", + "coordonnees_gps": [ + 45.6543418115, + 2.27375449222 + ], + "libelle_d_acheminement": "ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27375449222, + 45.6543418115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3f16e2504f64122271248141a5c2f4a98b8fdd1", + "fields": { + "code_commune_insee": "19243", + "nom_de_la_commune": "ST SORNIN LAVOLPS", + "code_postal": "19230", + "coordonnees_gps": [ + 45.3741557979, + 1.37135404677 + ], + "libelle_d_acheminement": "ST SORNIN LAVOLPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37135404677, + 45.3741557979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "becc2491863764b31733c56e3380ad5bdc3cfdb4", + "fields": { + "code_commune_insee": "19244", + "nom_de_la_commune": "ST SULPICE LES BOIS", + "code_postal": "19250", + "coordonnees_gps": [ + 45.613289994, + 2.14152354992 + ], + "libelle_d_acheminement": "ST SULPICE LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14152354992, + 45.613289994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7337925e1b718f7cf3798772f004aea253079e39", + "fields": { + "code_commune_insee": "19250", + "nom_de_la_commune": "SALON LA TOUR", + "code_postal": "19510", + "coordonnees_gps": [ + 45.5022179707, + 1.53380254271 + ], + "libelle_d_acheminement": "SALON LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53380254271, + 45.5022179707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bde2450552db413356402eaef59a77a76a68212", + "fields": { + "code_commune_insee": "19258", + "nom_de_la_commune": "SERVIERES LE CHATEAU", + "code_postal": "19220", + "coordonnees_gps": [ + 45.1398764504, + 2.02231486142 + ], + "libelle_d_acheminement": "SERVIERES LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02231486142, + 45.1398764504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7910434e8b02cf37944abd0a5656ff45acf1c1e7", + "fields": { + "code_commune_insee": "19265", + "nom_de_la_commune": "TARNAC", + "code_postal": "19170", + "coordonnees_gps": [ + 45.6728907622, + 1.95565232605 + ], + "libelle_d_acheminement": "TARNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95565232605, + 45.6728907622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d27ae1b35d19c890bf137f7e5dc3d6351f37e13", + "fields": { + "ligne_5": "LA TOURETTE", + "code_commune_insee": "19275", + "libelle_d_acheminement": "USSEL", + "code_postal": "19200", + "nom_de_la_commune": "USSEL", + "coordonnees_gps": [ + 45.5502290763, + 2.30449906488 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30449906488, + 45.5502290763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e4b122a84cda90b7824e90681f11068a1e31bec", + "fields": { + "code_commune_insee": "19276", + "nom_de_la_commune": "UZERCHE", + "code_postal": "19140", + "coordonnees_gps": [ + 45.4238857521, + 1.56525480659 + ], + "libelle_d_acheminement": "UZERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56525480659, + 45.4238857521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c55d087806b52a62940ffedc0b5c00193f4051f", + "fields": { + "code_commune_insee": "21003", + "nom_de_la_commune": "AHUY", + "code_postal": "21121", + "coordonnees_gps": [ + 47.3713563421, + 5.02129727446 + ], + "libelle_d_acheminement": "AHUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02129727446, + 47.3713563421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "016477d5bcf9a156817bb3ee5948f465c62983ca", + "fields": { + "code_commune_insee": "21022", + "nom_de_la_commune": "ARGILLY", + "code_postal": "21700", + "coordonnees_gps": [ + 47.0685552309, + 5.02486486976 + ], + "libelle_d_acheminement": "ARGILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02486486976, + 47.0685552309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bd2f4597fc759b6c119f0f0ef55e15973536e1a", + "fields": { + "code_commune_insee": "21043", + "nom_de_la_commune": "BAIGNEUX LES JUIFS", + "code_postal": "21450", + "coordonnees_gps": [ + 47.6010296046, + 4.6514540386 + ], + "libelle_d_acheminement": "BAIGNEUX LES JUIFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6514540386, + 47.6010296046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fd6a051600b371b24235f0b3240d9b7dad8113e", + "fields": { + "code_commune_insee": "21044", + "nom_de_la_commune": "BALOT", + "code_postal": "21330", + "coordonnees_gps": [ + 47.8198079163, + 4.44334432169 + ], + "libelle_d_acheminement": "BALOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44334432169, + 47.8198079163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c0ae80e9922fd41d9dae1d49a3bc36583a9932d", + "fields": { + "code_commune_insee": "21047", + "nom_de_la_commune": "BARD LES EPOISSES", + "code_postal": "21460", + "coordonnees_gps": [ + 47.5282299954, + 4.22511845186 + ], + "libelle_d_acheminement": "BARD LES EPOISSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22511845186, + 47.5282299954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "869c48bf1ec48174545ef26cca819976cb4a2acd", + "fields": { + "code_commune_insee": "21052", + "nom_de_la_commune": "BEAULIEU", + "code_postal": "21510", + "coordonnees_gps": [ + 47.7261392413, + 4.73343312021 + ], + "libelle_d_acheminement": "BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73343312021, + 47.7261392413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6ccb8106a846ff042020212f6988fb55914b691", + "fields": { + "code_commune_insee": "21056", + "nom_de_la_commune": "BEIRE LE CHATEL", + "code_postal": "21310", + "coordonnees_gps": [ + 47.4180183198, + 5.21317142788 + ], + "libelle_d_acheminement": "BEIRE LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21317142788, + 47.4180183198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f52d6a0645cc2be152cb68b9aa3595d92387fea", + "fields": { + "code_commune_insee": "21061", + "nom_de_la_commune": "BELLENOD SUR SEINE", + "code_postal": "21510", + "coordonnees_gps": [ + 47.6951717753, + 4.64536877264 + ], + "libelle_d_acheminement": "BELLENOD SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64536877264, + 47.6951717753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f6a88f28c3c66d224d858113f16586660c959dc", + "fields": { + "code_commune_insee": "21067", + "nom_de_la_commune": "BESSEY LES CITEAUX", + "code_postal": "21110", + "coordonnees_gps": [ + 47.1451368647, + 5.14759031997 + ], + "libelle_d_acheminement": "BESSEY LES CITEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14759031997, + 47.1451368647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcadc3478bdd4397647289f576bcef3a5d73862d", + "fields": { + "code_commune_insee": "21068", + "nom_de_la_commune": "BEUREY BAUGUAY", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2316421588, + 4.43039067853 + ], + "libelle_d_acheminement": "BEUREY BAUGUAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43039067853, + 47.2316421588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a33d7861d3deff615d11d6d7412abdec7b1617b", + "fields": { + "code_commune_insee": "21085", + "nom_de_la_commune": "BLIGNY LE SEC", + "code_postal": "21440", + "coordonnees_gps": [ + 47.4483490502, + 4.74031700396 + ], + "libelle_d_acheminement": "BLIGNY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74031700396, + 47.4483490502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28ee1a49fdaa01b4be828a2e81fe8afaf22cf863", + "fields": { + "code_commune_insee": "21089", + "nom_de_la_commune": "BONNENCONTRE", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0865135284, + 5.14243397683 + ], + "libelle_d_acheminement": "BONNENCONTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14243397683, + 47.0865135284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f972d1d670506b8edf9932491fa6d5d5cf11baa8", + "fields": { + "code_commune_insee": "21091", + "nom_de_la_commune": "BOUHEY", + "code_postal": "21360", + "coordonnees_gps": [ + 47.2011527973, + 4.6776500221 + ], + "libelle_d_acheminement": "BOUHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6776500221, + 47.2011527973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c409d34a0b6e3500725d91ceb425dbb4d2955a97", + "fields": { + "code_commune_insee": "21096", + "nom_de_la_commune": "BOUSSENOIS", + "code_postal": "21260", + "coordonnees_gps": [ + 47.6263032872, + 5.20576055486 + ], + "libelle_d_acheminement": "BOUSSENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20576055486, + 47.6263032872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a65c3d4681b6ba7258af6000a4477cdd065d753b", + "fields": { + "code_commune_insee": "21105", + "nom_de_la_commune": "BRESSEY SUR TILLE", + "code_postal": "21560", + "coordonnees_gps": [ + 47.3084523992, + 5.18436143116 + ], + "libelle_d_acheminement": "BRESSEY SUR TILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18436143116, + 47.3084523992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b054c150f82f84945f2d3194c5d31cd5f19e84ad", + "fields": { + "code_commune_insee": "21107", + "nom_de_la_commune": "BRETIGNY", + "code_postal": "21490", + "coordonnees_gps": [ + 47.3935524929, + 5.09969847149 + ], + "libelle_d_acheminement": "BRETIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09969847149, + 47.3935524929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d31ee8c042f4abfd49796367c981de9effb095f", + "fields": { + "code_commune_insee": "21110", + "nom_de_la_commune": "BROCHON", + "code_postal": "21220", + "coordonnees_gps": [ + 47.2386657395, + 4.95610732845 + ], + "libelle_d_acheminement": "BROCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95610732845, + 47.2386657395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3412c75a9a6daa828fb757b8241735268181972", + "fields": { + "code_commune_insee": "21112", + "nom_de_la_commune": "BROIN", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0864209474, + 5.10439169166 + ], + "libelle_d_acheminement": "BROIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10439169166, + 47.0864209474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca9be525e34e4fbe9890554d89e804bba65e934a", + "fields": { + "code_commune_insee": "21114", + "nom_de_la_commune": "BUFFON", + "code_postal": "21500", + "coordonnees_gps": [ + 47.6568975951, + 4.27470162202 + ], + "libelle_d_acheminement": "BUFFON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27470162202, + 47.6568975951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d609c25e41cd4e78fe079ca69adadb2120869368", + "fields": { + "code_commune_insee": "21117", + "nom_de_la_commune": "BUSSEAUT", + "code_postal": "21510", + "coordonnees_gps": [ + 47.7386819112, + 4.65218348231 + ], + "libelle_d_acheminement": "BUSSEAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65218348231, + 47.7386819112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab94be3dc20c6347c89b10e81634958039cf6bb4", + "fields": { + "code_commune_insee": "21122", + "nom_de_la_commune": "BUSSY LE GRAND", + "code_postal": "21150", + "coordonnees_gps": [ + 47.5762719733, + 4.52287854456 + ], + "libelle_d_acheminement": "BUSSY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52287854456, + 47.5762719733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36c8631aaec38a208ef4a50d38a2ade70f0423dd", + "fields": { + "code_commune_insee": "21126", + "nom_de_la_commune": "CESSEY SUR TILLE", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2826894363, + 5.22925864232 + ], + "libelle_d_acheminement": "CESSEY SUR TILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22925864232, + 47.2826894363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8d7042261170a5c869794694c2f049e27171f6e", + "fields": { + "code_commune_insee": "21147", + "nom_de_la_commune": "CHARNY", + "code_postal": "21350", + "coordonnees_gps": [ + 47.331944975, + 4.42573713876 + ], + "libelle_d_acheminement": "CHARNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42573713876, + 47.331944975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e49d13817a6fdabcb6a6e77a5311e2473102bf9e", + "fields": { + "code_commune_insee": "21150", + "nom_de_la_commune": "CHASSAGNE MONTRACHET", + "code_postal": "21190", + "coordonnees_gps": [ + 46.9323632752, + 4.72732420216 + ], + "libelle_d_acheminement": "CHASSAGNE MONTRACHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72732420216, + 46.9323632752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "858500bb2b143e33d57517d90c805cf3a3897fa3", + "fields": { + "code_commune_insee": "21151", + "nom_de_la_commune": "CHASSEY", + "code_postal": "21150", + "coordonnees_gps": [ + 47.4742431505, + 4.44465203399 + ], + "libelle_d_acheminement": "CHASSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44465203399, + 47.4742431505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ad5e6a5347266fa9aac1bade777c4d0a84d448", + "fields": { + "code_commune_insee": "21156", + "nom_de_la_commune": "CHAUDENAY LE CHATEAU", + "code_postal": "21360", + "coordonnees_gps": [ + 47.1794258557, + 4.64303707891 + ], + "libelle_d_acheminement": "CHAUDENAY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64303707891, + 47.1794258557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfa3e3babf7566019f3266c5aeae26242fd2f25b", + "fields": { + "code_commune_insee": "21165", + "nom_de_la_commune": "CHEMIN D AISEY", + "code_postal": "21400", + "coordonnees_gps": [ + 47.7323713365, + 4.55214602407 + ], + "libelle_d_acheminement": "CHEMIN D AISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55214602407, + 47.7323713365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ab3f060ea0b8644b4e00b4b50ce1133d4803218", + "fields": { + "code_commune_insee": "21166", + "nom_de_la_commune": "CHENOVE", + "code_postal": "21300", + "coordonnees_gps": [ + 47.2926136721, + 5.00488353457 + ], + "libelle_d_acheminement": "CHENOVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00488353457, + 47.2926136721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ecd002f003662acd73d0233031723e0b3eefc23", + "fields": { + "code_commune_insee": "21170", + "nom_de_la_commune": "CHEVIGNY EN VALIERE", + "code_postal": "21200", + "coordonnees_gps": [ + 46.9686024857, + 4.98151445256 + ], + "libelle_d_acheminement": "CHEVIGNY EN VALIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98151445256, + 46.9686024857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "907c083094b909bcb10ee716c616bb267610d92b", + "fields": { + "code_commune_insee": "21171", + "nom_de_la_commune": "CHEVIGNY ST SAUVEUR", + "code_postal": "21800", + "coordonnees_gps": [ + 47.2999007268, + 5.13656967893 + ], + "libelle_d_acheminement": "CHEVIGNY ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13656967893, + 47.2999007268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9acf81ceb76db00ab21aff8b511df9bdbad0326", + "fields": { + "code_commune_insee": "21175", + "nom_de_la_commune": "CIREY LES PONTAILLER", + "code_postal": "21270", + "coordonnees_gps": [ + 47.3029215077, + 5.30975861654 + ], + "libelle_d_acheminement": "CIREY LES PONTAILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30975861654, + 47.3029215077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bccc13602b159a2f45380e0f4ba41df8d2b47801", + "fields": { + "ligne_5": "CLEMENCEY", + "code_commune_insee": "21178", + "libelle_d_acheminement": "VALFORET", + "code_postal": "21220", + "nom_de_la_commune": "VALFORET", + "coordonnees_gps": [ + 47.2553233042, + 4.88465417983 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88465417983, + 47.2553233042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a850882839e19099110e62635559297c4cb606a", + "fields": { + "code_commune_insee": "21179", + "nom_de_la_commune": "CLENAY", + "code_postal": "21490", + "coordonnees_gps": [ + 47.4135413138, + 5.11448988395 + ], + "libelle_d_acheminement": "CLENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11448988395, + 47.4135413138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9697951ed5cc4a46f6bc95182040b585fb6d5aa", + "fields": { + "code_commune_insee": "21181", + "nom_de_la_commune": "CLOMOT", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1923530419, + 4.48684407065 + ], + "libelle_d_acheminement": "CLOMOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48684407065, + 47.1923530419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d3105b2c9e8b451ecc93f8ac33f594156b577d6", + "fields": { + "ligne_5": "COLLONGES LES PREMIERES", + "code_commune_insee": "21183", + "libelle_d_acheminement": "COLLONGES ET PREMIERES", + "code_postal": "21110", + "nom_de_la_commune": "COLLONGES ET PREMIERES", + "coordonnees_gps": [ + 47.2250095232, + 5.29242565659 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29242565659, + 47.2250095232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c5b243257b4dabfac07d0441b49fc5033c40e12", + "fields": { + "code_commune_insee": "21194", + "nom_de_la_commune": "CORGOLOIN", + "code_postal": "21700", + "coordonnees_gps": [ + 47.0819087095, + 4.93531164133 + ], + "libelle_d_acheminement": "CORGOLOIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93531164133, + 47.0819087095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "629ea079ad28047dd6012c3357f0b3e30c5e7d1a", + "fields": { + "ligne_5": "VAUCHIGNON", + "code_commune_insee": "21195", + "libelle_d_acheminement": "CORMOT VAUCHIGNON", + "code_postal": "21340", + "nom_de_la_commune": "CORMOT VAUCHIGNON", + "coordonnees_gps": [ + 46.9758355763, + 4.64101278682 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64101278682, + 46.9758355763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38eb3963486b259f525467f87171b726c76bf7be", + "fields": { + "code_commune_insee": "21211", + "nom_de_la_commune": "CRECEY SUR TILLE", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5701202623, + 5.14132427261 + ], + "libelle_d_acheminement": "CRECEY SUR TILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14132427261, + 47.5701202623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8536534c189daa48d83b76ae1fbf777021e8081", + "fields": { + "code_commune_insee": "21212", + "nom_de_la_commune": "CREPAND", + "code_postal": "21500", + "coordonnees_gps": [ + 47.6070603908, + 4.31019985069 + ], + "libelle_d_acheminement": "CREPAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31019985069, + 47.6070603908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "488d445678082350690a3e7053c0e8a7e1a740b2", + "fields": { + "code_commune_insee": "21214", + "nom_de_la_commune": "CRUGEY", + "code_postal": "21360", + "coordonnees_gps": [ + 47.1815437899, + 4.68076674992 + ], + "libelle_d_acheminement": "CRUGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68076674992, + 47.1815437899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e490c383960ab04b0ad234468f31f46260fefc4", + "fields": { + "code_commune_insee": "21218", + "nom_de_la_commune": "CURTIL ST SEINE", + "code_postal": "21380", + "coordonnees_gps": [ + 47.4607387752, + 4.92920241031 + ], + "libelle_d_acheminement": "CURTIL ST SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92920241031, + 47.4607387752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b71d8314f0e7b93f5ea79f77e3eb3af8e1b9a936", + "fields": { + "code_commune_insee": "21224", + "nom_de_la_commune": "DAMPIERRE EN MONTAGNE", + "code_postal": "21350", + "coordonnees_gps": [ + 47.438807648, + 4.55900692915 + ], + "libelle_d_acheminement": "DAMPIERRE EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55900692915, + 47.438807648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9895a70b5c1984c410c32990b54f5051e847db3", + "fields": { + "code_commune_insee": "21225", + "nom_de_la_commune": "DAMPIERRE ET FLEE", + "code_postal": "21310", + "coordonnees_gps": [ + 47.4802529906, + 5.35222754258 + ], + "libelle_d_acheminement": "DAMPIERRE ET FLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35222754258, + 47.4802529906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71d14c5addfb6abe5d69743eddd5edd5fbbb4a12", + "fields": { + "code_commune_insee": "21227", + "nom_de_la_commune": "DAROIS", + "code_postal": "21121", + "coordonnees_gps": [ + 47.3938381056, + 4.9323709651 + ], + "libelle_d_acheminement": "DAROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9323709651, + 47.3938381056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd1349013ae4dbe5db9721303ec6790cad178fd5", + "fields": { + "code_commune_insee": "21230", + "nom_de_la_commune": "DIENAY", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5223127059, + 5.05949122065 + ], + "libelle_d_acheminement": "DIENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05949122065, + 47.5223127059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "872eb7d8d0c7c3590689e0430bfe34b5b2a2c9db", + "fields": { + "code_commune_insee": "21231", + "nom_de_la_commune": "DIJON", + "code_postal": "21000", + "coordonnees_gps": [ + 47.3229437965, + 5.03788805877 + ], + "libelle_d_acheminement": "DIJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03788805877, + 47.3229437965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8969792a50974d5ba097ea91b7f9077a7f253411", + "fields": { + "code_commune_insee": "21238", + "nom_de_la_commune": "ECHANNAY", + "code_postal": "21540", + "coordonnees_gps": [ + 47.2810233886, + 4.68018125598 + ], + "libelle_d_acheminement": "ECHANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68018125598, + 47.2810233886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44073d258c67e26570cc311c6487a0ad5e40097d", + "fields": { + "code_commune_insee": "21241", + "nom_de_la_commune": "ECHEVRONNE", + "code_postal": "21420", + "coordonnees_gps": [ + 47.1076811377, + 4.83499706184 + ], + "libelle_d_acheminement": "ECHEVRONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83499706184, + 47.1076811377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75fcaa716cf1270a980e9a412fa3fb45148c644a", + "fields": { + "code_commune_insee": "21248", + "nom_de_la_commune": "ERINGES", + "code_postal": "21500", + "coordonnees_gps": [ + 47.5887565678, + 4.46703598761 + ], + "libelle_d_acheminement": "ERINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46703598761, + 47.5887565678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea18928468a0842395d9f8cc217b7e8919245f6d", + "fields": { + "code_commune_insee": "21253", + "nom_de_la_commune": "ETALANTE", + "code_postal": "21510", + "coordonnees_gps": [ + 47.629388545, + 4.76665603938 + ], + "libelle_d_acheminement": "ETALANTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76665603938, + 47.629388545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d5249003d32c7c40a965dfe567bca436d4493bd", + "fields": { + "code_commune_insee": "21256", + "nom_de_la_commune": "ETEVAUX", + "code_postal": "21270", + "coordonnees_gps": [ + 47.3235446456, + 5.32194001465 + ], + "libelle_d_acheminement": "ETEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32194001465, + 47.3235446456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f04da81d027c76f30f2553b746db536b5ba83338", + "fields": { + "code_commune_insee": "21263", + "nom_de_la_commune": "FENAY", + "code_postal": "21600", + "coordonnees_gps": [ + 47.2451587687, + 5.0541254561 + ], + "libelle_d_acheminement": "FENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0541254561, + 47.2451587687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8998915a0426ee121700f8a1b468cd25996d56eb", + "fields": { + "ligne_5": "FLEE", + "code_commune_insee": "21272", + "libelle_d_acheminement": "LE VAL LARREY", + "code_postal": "21140", + "nom_de_la_commune": "LE VAL LARREY", + "coordonnees_gps": [ + 47.4407816289, + 4.33705444779 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33705444779, + 47.4407816289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69421c001355d57a0c73789bde905946d6b33001", + "fields": { + "ligne_5": "BIERRE LES SEMUR", + "code_commune_insee": "21272", + "libelle_d_acheminement": "LE VAL LARREY", + "code_postal": "21390", + "nom_de_la_commune": "LE VAL LARREY", + "coordonnees_gps": [ + 47.4407816289, + 4.33705444779 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33705444779, + 47.4407816289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba1293091b8e9e700ab92c05ffb2501dc122a0b2", + "fields": { + "code_commune_insee": "21277", + "nom_de_la_commune": "FONTAINE FRANCAISE", + "code_postal": "21610", + "coordonnees_gps": [ + 47.5330200113, + 5.36407135172 + ], + "libelle_d_acheminement": "FONTAINE FRANCAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36407135172, + 47.5330200113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dc8fa3b371362beeca6c779fbb8cdadf7930ecd", + "fields": { + "code_commune_insee": "21285", + "nom_de_la_commune": "FRANXAULT", + "code_postal": "21170", + "coordonnees_gps": [ + 47.0475621038, + 5.26433353481 + ], + "libelle_d_acheminement": "FRANXAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26433353481, + 47.0475621038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f704060b471dd1afe92c4fb9ac46e23c05500326", + "fields": { + "code_commune_insee": "21310", + "nom_de_la_commune": "GROSBOIS EN MONTAGNE", + "code_postal": "21540", + "coordonnees_gps": [ + 47.3192163677, + 4.59964141298 + ], + "libelle_d_acheminement": "GROSBOIS EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59964141298, + 47.3192163677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29617b1e94579d6e855b7357b2ba54bbdea59ecc", + "fields": { + "code_commune_insee": "21315", + "nom_de_la_commune": "HAUTEVILLE LES DIJON", + "code_postal": "21121", + "coordonnees_gps": [ + 47.3757754757, + 4.98131727526 + ], + "libelle_d_acheminement": "HAUTEVILLE LES DIJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98131727526, + 47.3757754757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1abcff575cf04b8dc74157124c9c5ca70abcb625", + "fields": { + "code_commune_insee": "21320", + "nom_de_la_commune": "IZIER", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2813484064, + 5.19627066906 + ], + "libelle_d_acheminement": "IZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19627066906, + 47.2813484064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "635f134b13949d4c7f694efcdfd844a4efc0c169", + "fields": { + "code_commune_insee": "21322", + "nom_de_la_commune": "JALLANGES", + "code_postal": "21250", + "coordonnees_gps": [ + 46.9844079109, + 5.17269015437 + ], + "libelle_d_acheminement": "JALLANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17269015437, + 46.9844079109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0729d961ab16191fb761bde8bd2eb5a70c8e5d39", + "fields": { + "code_commune_insee": "21324", + "nom_de_la_commune": "JEUX LES BARD", + "code_postal": "21460", + "coordonnees_gps": [ + 47.5318872622, + 4.25532260801 + ], + "libelle_d_acheminement": "JEUX LES BARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25532260801, + 47.5318872622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88e4ee3c0ccd20ef7433622cf57800c067a1888d", + "fields": { + "ligne_5": "IVRY EN MONTAGNE", + "code_commune_insee": "21327", + "libelle_d_acheminement": "VAL MONT", + "code_postal": "21340", + "nom_de_la_commune": "VAL MONT", + "coordonnees_gps": [ + 47.0387310414, + 4.59082588585 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59082588585, + 47.0387310414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "836a180bf194a9cd6373a9ab8b5c84c805591cb8", + "fields": { + "ligne_5": "JOURS EN VAUX", + "code_commune_insee": "21327", + "libelle_d_acheminement": "VAL MONT", + "code_postal": "21340", + "nom_de_la_commune": "VAL MONT", + "coordonnees_gps": [ + 47.0387310414, + 4.59082588585 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59082588585, + 47.0387310414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e207f44585bf7a9698be24c4880a8e35fe8a2da", + "fields": { + "code_commune_insee": "21328", + "nom_de_la_commune": "JUILLENAY", + "code_postal": "21210", + "coordonnees_gps": [ + 47.3613728511, + 4.27210840782 + ], + "libelle_d_acheminement": "JUILLENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27210840782, + 47.3613728511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f9cff7106aae53c42aa9e904b93d6a2e7cef63e", + "fields": { + "code_commune_insee": "21331", + "nom_de_la_commune": "LABERGEMENT LES AUXONNE", + "code_postal": "21130", + "coordonnees_gps": [ + 47.1593953022, + 5.37863306845 + ], + "libelle_d_acheminement": "LABERGEMENT LES AUXONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37863306845, + 47.1593953022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fa9bb3ac10220fcb4dccdd492e60daabec63075", + "fields": { + "code_commune_insee": "21332", + "nom_de_la_commune": "LABERGEMENT LES SEURRE", + "code_postal": "21820", + "coordonnees_gps": [ + 46.9957329015, + 5.08792946182 + ], + "libelle_d_acheminement": "LABERGEMENT LES SEURRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08792946182, + 46.9957329015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95c897d8a9c8b54cc9db25e44fa8e10100859499", + "fields": { + "code_commune_insee": "21335", + "nom_de_la_commune": "LACOUR D ARCENAY", + "code_postal": "21210", + "coordonnees_gps": [ + 47.3599600361, + 4.23532067428 + ], + "libelle_d_acheminement": "LACOUR D ARCENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23532067428, + 47.3599600361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed8c605af79ea39730b777294a2b9bc55cef81cf", + "fields": { + "code_commune_insee": "21343", + "nom_de_la_commune": "LARREY", + "code_postal": "21330", + "coordonnees_gps": [ + 47.897345637, + 4.42446756868 + ], + "libelle_d_acheminement": "LARREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42446756868, + 47.897345637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "233190573d633bc04d6ccabbeb4dac4a1621697e", + "fields": { + "code_commune_insee": "21368", + "nom_de_la_commune": "MAGNY LES VILLERS", + "code_postal": "21700", + "coordonnees_gps": [ + 47.0941869069, + 4.87453394791 + ], + "libelle_d_acheminement": "MAGNY LES VILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87453394791, + 47.0941869069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c0030a963e05a49d4ae0408cd3288d326e91462", + "fields": { + "code_commune_insee": "21369", + "nom_de_la_commune": "MAGNY ST MEDARD", + "code_postal": "21310", + "coordonnees_gps": [ + 47.3813252899, + 5.24751740638 + ], + "libelle_d_acheminement": "MAGNY ST MEDARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24751740638, + 47.3813252899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "849db35b5f85c40d51aa2cd4e73628742b92f049", + "fields": { + "code_commune_insee": "21370", + "nom_de_la_commune": "MAGNY SUR TILLE", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2739632759, + 5.17279163884 + ], + "libelle_d_acheminement": "MAGNY SUR TILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17279163884, + 47.2739632759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da62c4e0d8b875f2c073fc4427fbdf90fc8bbb93", + "fields": { + "code_commune_insee": "21385", + "nom_de_la_commune": "MAREY SUR TILLE", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5943124661, + 5.08179187571 + ], + "libelle_d_acheminement": "MAREY SUR TILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08179187571, + 47.5943124661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6821da9a3162f7b4e519b09b31b9427216c739d3", + "fields": { + "code_commune_insee": "21386", + "nom_de_la_commune": "MARIGNY LE CAHOUET", + "code_postal": "21150", + "coordonnees_gps": [ + 47.4553560135, + 4.45343866835 + ], + "libelle_d_acheminement": "MARIGNY LE CAHOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45343866835, + 47.4553560135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab406ef1da8a3d644ae8c079ab75e7212ee9589b", + "fields": { + "code_commune_insee": "21394", + "nom_de_la_commune": "MASSINGY LES SEMUR", + "code_postal": "21140", + "coordonnees_gps": [ + 47.5164585084, + 4.40567595298 + ], + "libelle_d_acheminement": "MASSINGY LES SEMUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40567595298, + 47.5164585084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29c7497ab9601f1917b6b3a0f3a57221df3b3952", + "fields": { + "code_commune_insee": "21405", + "nom_de_la_commune": "MERCEUIL", + "code_postal": "21190", + "coordonnees_gps": [ + 46.9538298366, + 4.84790991199 + ], + "libelle_d_acheminement": "MERCEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84790991199, + 46.9538298366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7df0a71a29ba7ee8b81744ca62b49c0eeacf5842", + "fields": { + "code_commune_insee": "21406", + "nom_de_la_commune": "MESMONT", + "code_postal": "21540", + "coordonnees_gps": [ + 47.3122266518, + 4.74410039616 + ], + "libelle_d_acheminement": "MESMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74410039616, + 47.3122266518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82472c1e6a4ff17200433d3ac947eb860e414fbf", + "fields": { + "code_commune_insee": "21420", + "nom_de_la_commune": "MOLINOT", + "code_postal": "21340", + "coordonnees_gps": [ + 47.0112430427, + 4.57969818527 + ], + "libelle_d_acheminement": "MOLINOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57969818527, + 47.0112430427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b0eda761fcbc63272fe9ee8dd6ee699607b57cf", + "fields": { + "code_commune_insee": "21424", + "nom_de_la_commune": "MONTAGNY LES SEURRE", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0221158476, + 5.25126130211 + ], + "libelle_d_acheminement": "MONTAGNY LES SEURRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25126130211, + 47.0221158476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75b2419c1848de32c9171364e3c98f56b138e413", + "fields": { + "code_commune_insee": "21429", + "nom_de_la_commune": "MONTIGNY MONTFORT", + "code_postal": "21500", + "coordonnees_gps": [ + 47.5835649426, + 4.33909618195 + ], + "libelle_d_acheminement": "MONTIGNY MONTFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33909618195, + 47.5835649426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60b6f5cb0347ca9fed17f49e0a1a9abee8b855fe", + "fields": { + "code_commune_insee": "21430", + "nom_de_la_commune": "MONTIGNY ST BARTHELEMY", + "code_postal": "21390", + "coordonnees_gps": [ + 47.4200644388, + 4.26152648889 + ], + "libelle_d_acheminement": "MONTIGNY ST BARTHELEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26152648889, + 47.4200644388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a31ec962e82ecef5f73fe7ea66c2d14cf8564749", + "fields": { + "code_commune_insee": "21437", + "nom_de_la_commune": "MONTMANCON", + "code_postal": "21270", + "coordonnees_gps": [ + 47.355013072, + 5.37495539638 + ], + "libelle_d_acheminement": "MONTMANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37495539638, + 47.355013072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17b65463eb32e2e3a5180ba0c6a9cc82f985bb86", + "fields": { + "code_commune_insee": "21438", + "nom_de_la_commune": "MONTMOYEN", + "code_postal": "21290", + "coordonnees_gps": [ + 47.7302494396, + 4.79445159568 + ], + "libelle_d_acheminement": "MONTMOYEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79445159568, + 47.7302494396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d37d5f2a3ec92abff6449a581f077045587298e6", + "fields": { + "code_commune_insee": "21439", + "nom_de_la_commune": "MONTOILLOT", + "code_postal": "21540", + "coordonnees_gps": [ + 47.2727014053, + 4.65838043081 + ], + "libelle_d_acheminement": "MONTOILLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65838043081, + 47.2727014053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc8d233776fd9cc46ed5e90eebc0b994c8676f25", + "fields": { + "code_commune_insee": "21448", + "nom_de_la_commune": "MUSSY LA FOSSE", + "code_postal": "21150", + "coordonnees_gps": [ + 47.5214378007, + 4.44456513 + ], + "libelle_d_acheminement": "MUSSY LA FOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44456513, + 47.5214378007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c11c4a2644f690db31a523c4d43652c879e0bc1c", + "fields": { + "code_commune_insee": "21451", + "nom_de_la_commune": "NESLE ET MASSOULT", + "code_postal": "21330", + "coordonnees_gps": [ + 47.7780284045, + 4.42668944062 + ], + "libelle_d_acheminement": "NESLE ET MASSOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42668944062, + 47.7780284045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5850361e1137254cc229e4e2a0ad142d0d3a492", + "fields": { + "ligne_5": "CRIMOLOIS", + "code_commune_insee": "21452", + "libelle_d_acheminement": "NEUILLY CRIMOLOIS", + "code_postal": "21800", + "nom_de_la_commune": "NEUILLY CRIMOLOIS", + "coordonnees_gps": [ + 47.2764524522, + 5.10401476317 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10401476317, + 47.2764524522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aefba7d6c23ddb84575227d92900437b1cf1af7e", + "fields": { + "code_commune_insee": "21454", + "nom_de_la_commune": "NICEY", + "code_postal": "21330", + "coordonnees_gps": [ + 47.8654500555, + 4.29442620527 + ], + "libelle_d_acheminement": "NICEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29442620527, + 47.8654500555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d020bd6725a8b583b1880a07845f8e90638dfe0", + "fields": { + "code_commune_insee": "21455", + "nom_de_la_commune": "NOD SUR SEINE", + "code_postal": "21400", + "coordonnees_gps": [ + 47.7726814986, + 4.5989721378 + ], + "libelle_d_acheminement": "NOD SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5989721378, + 47.7726814986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8eef3f6a9d7202496317a5c53171ad0b170e602", + "fields": { + "code_commune_insee": "21456", + "nom_de_la_commune": "NOGENT LES MONTBARD", + "code_postal": "21500", + "coordonnees_gps": [ + 47.6042846627, + 4.36951243241 + ], + "libelle_d_acheminement": "NOGENT LES MONTBARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36951243241, + 47.6042846627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fc5be2ddf4ee3933a530ce9ea1c2c66c5d0139b", + "fields": { + "code_commune_insee": "21457", + "nom_de_la_commune": "NOIDAN", + "code_postal": "21390", + "coordonnees_gps": [ + 47.3467171158, + 4.40982170354 + ], + "libelle_d_acheminement": "NOIDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40982170354, + 47.3467171158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a8475db114f930e0cff2fe9eaa880d780562649", + "fields": { + "code_commune_insee": "21460", + "nom_de_la_commune": "NOIRON SUR SEINE", + "code_postal": "21400", + "coordonnees_gps": [ + 47.9386038243, + 4.46986601367 + ], + "libelle_d_acheminement": "NOIRON SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46986601367, + 47.9386038243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6efc42867adcc6daa309dab96ddb6578357cb8c", + "fields": { + "code_commune_insee": "21461", + "nom_de_la_commune": "NOLAY", + "code_postal": "21340", + "coordonnees_gps": [ + 46.958968613, + 4.61935844911 + ], + "libelle_d_acheminement": "NOLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61935844911, + 46.958968613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26515872c6c624238c5cd972729f951ae0abf9c9", + "fields": { + "ligne_5": "CIREY LES NOLAY", + "code_commune_insee": "21461", + "libelle_d_acheminement": "NOLAY", + "code_postal": "21340", + "nom_de_la_commune": "NOLAY", + "coordonnees_gps": [ + 46.958968613, + 4.61935844911 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61935844911, + 46.958968613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e3077c93e5ff45b9f2d9774d7257405832d0393", + "fields": { + "code_commune_insee": "21466", + "nom_de_la_commune": "OIGNY", + "code_postal": "21450", + "coordonnees_gps": [ + 47.5832673026, + 4.72467354211 + ], + "libelle_d_acheminement": "OIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72467354211, + 47.5832673026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2e3329f119e3422bd35fb75cb65c038b20f89d3", + "fields": { + "code_commune_insee": "21468", + "nom_de_la_commune": "ORAIN", + "code_postal": "21610", + "coordonnees_gps": [ + 47.6102265012, + 5.43501562658 + ], + "libelle_d_acheminement": "ORAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43501562658, + 47.6102265012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5de250ee731938e7eac40e8170e69b6b9cd077a6", + "fields": { + "code_commune_insee": "21479", + "nom_de_la_commune": "PELLEREY", + "code_postal": "21440", + "coordonnees_gps": [ + 47.511765818, + 4.78886869504 + ], + "libelle_d_acheminement": "PELLEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78886869504, + 47.511765818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ff2cdeb3c4b8cb85925c1da6d84956d2d954e07", + "fields": { + "code_commune_insee": "21483", + "nom_de_la_commune": "PICHANGES", + "code_postal": "21120", + "coordonnees_gps": [ + 47.4561192838, + 5.15835923398 + ], + "libelle_d_acheminement": "PICHANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15835923398, + 47.4561192838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac427e45aaac65aa4f6d805fc0253a335ba9ad5f", + "fields": { + "code_commune_insee": "21487", + "nom_de_la_commune": "PLUVET", + "code_postal": "21110", + "coordonnees_gps": [ + 47.1981396931, + 5.2636859618 + ], + "libelle_d_acheminement": "PLUVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2636859618, + 47.1981396931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "727ed07f3ef9e7f7e605806cbb8ca023f73289b7", + "fields": { + "code_commune_insee": "21489", + "nom_de_la_commune": "POISEUL LA GRANGE", + "code_postal": "21440", + "coordonnees_gps": [ + 47.5770887187, + 4.79359106349 + ], + "libelle_d_acheminement": "POISEUL LA GRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79359106349, + 47.5770887187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8d5beee1892a3a9b410ac01d4983e22ec37e95d", + "fields": { + "code_commune_insee": "21496", + "nom_de_la_commune": "PONTAILLER SUR SAONE", + "code_postal": "21270", + "coordonnees_gps": [ + 47.3015930017, + 5.41228237116 + ], + "libelle_d_acheminement": "PONTAILLER SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41228237116, + 47.3015930017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "441e3d974fa304c4a33733044037a0536e73a005", + "fields": { + "code_commune_insee": "21499", + "nom_de_la_commune": "POTHIERES", + "code_postal": "21400", + "coordonnees_gps": [ + 47.917342261, + 4.49676949979 + ], + "libelle_d_acheminement": "POTHIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49676949979, + 47.917342261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30c65e25c764f0c52b5efccb21d7d6ff571e38ea", + "fields": { + "code_commune_insee": "21500", + "nom_de_la_commune": "POUILLENAY", + "code_postal": "21150", + "coordonnees_gps": [ + 47.5031151334, + 4.46065492588 + ], + "libelle_d_acheminement": "POUILLENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46065492588, + 47.5031151334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66139ae2e3dd3beec17ae79be375a64340ecf469", + "fields": { + "code_commune_insee": "21503", + "nom_de_la_commune": "POUILLY SUR VINGEANNE", + "code_postal": "21610", + "coordonnees_gps": [ + 47.5403544137, + 5.45162179953 + ], + "libelle_d_acheminement": "POUILLY SUR VINGEANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45162179953, + 47.5403544137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "506935d194decfe372e1336eb13126d26b86c225", + "fields": { + "code_commune_insee": "21508", + "nom_de_la_commune": "PRENOIS", + "code_postal": "21370", + "coordonnees_gps": [ + 47.3750238747, + 4.90589671665 + ], + "libelle_d_acheminement": "PRENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90589671665, + 47.3750238747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b131923a50c27820e6962fbecd4918d271dcd4f6", + "fields": { + "code_commune_insee": "21511", + "nom_de_la_commune": "PUITS", + "code_postal": "21400", + "coordonnees_gps": [ + 47.7269454549, + 4.46741190187 + ], + "libelle_d_acheminement": "PUITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46741190187, + 47.7269454549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ad6d21284cc08341091679fae20e6c53f44c7be", + "fields": { + "code_commune_insee": "21512", + "nom_de_la_commune": "PULIGNY MONTRACHET", + "code_postal": "21190", + "coordonnees_gps": [ + 46.9467556144, + 4.75926217237 + ], + "libelle_d_acheminement": "PULIGNY MONTRACHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75926217237, + 46.9467556144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b246d7000211ebc8d9a6de4331a96c159a33154", + "fields": { + "code_commune_insee": "21514", + "nom_de_la_commune": "QUEMIGNY SUR SEINE", + "code_postal": "21510", + "coordonnees_gps": [ + 47.65567229, + 4.6594167963 + ], + "libelle_d_acheminement": "QUEMIGNY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6594167963, + 47.65567229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "647e440947819db6f5dcb1514615730bbb3eb0c3", + "fields": { + "code_commune_insee": "21515", + "nom_de_la_commune": "QUETIGNY", + "code_postal": "21800", + "coordonnees_gps": [ + 47.3195635398, + 5.11575310181 + ], + "libelle_d_acheminement": "QUETIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11575310181, + 47.3195635398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df9c4abc74d29213d34f030c0a260e53077ebb8c", + "fields": { + "code_commune_insee": "21520", + "nom_de_la_commune": "REMILLY EN MONTAGNE", + "code_postal": "21540", + "coordonnees_gps": [ + 47.29010269, + 4.72932529701 + ], + "libelle_d_acheminement": "REMILLY EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72932529701, + 47.29010269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db161b68f3355ed54943270e7c372b7680e9b44b", + "fields": { + "code_commune_insee": "21521", + "nom_de_la_commune": "REMILLY SUR TILLE", + "code_postal": "21560", + "coordonnees_gps": [ + 47.3073839906, + 5.23140523397 + ], + "libelle_d_acheminement": "REMILLY SUR TILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23140523397, + 47.3073839906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c37636357432adb41eae32da60f4e47728a23a9", + "fields": { + "code_commune_insee": "21527", + "nom_de_la_commune": "LA ROCHEPOT", + "code_postal": "21340", + "coordonnees_gps": [ + 46.9575762678, + 4.67620707547 + ], + "libelle_d_acheminement": "LA ROCHEPOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67620707547, + 46.9575762678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "798c885aad1bfaf812fb24b2ee19450c49ae5b31", + "fields": { + "code_commune_insee": "21528", + "nom_de_la_commune": "LA ROCHE VANNEAU", + "code_postal": "21150", + "coordonnees_gps": [ + 47.4708864303, + 4.52859660017 + ], + "libelle_d_acheminement": "LA ROCHE VANNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52859660017, + 47.4708864303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abe368a8cd9c8fe26bc631e1c2f9bc92ca50ad36", + "fields": { + "code_commune_insee": "21530", + "nom_de_la_commune": "ROUGEMONT", + "code_postal": "21500", + "coordonnees_gps": [ + 47.670003344, + 4.25730473718 + ], + "libelle_d_acheminement": "ROUGEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25730473718, + 47.670003344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "131a34e8920f83cbf349bc874634684f9245dff8", + "fields": { + "code_commune_insee": "21535", + "nom_de_la_commune": "RUFFEY LES ECHIREY", + "code_postal": "21490", + "coordonnees_gps": [ + 47.3676972071, + 5.08462624452 + ], + "libelle_d_acheminement": "RUFFEY LES ECHIREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08462624452, + 47.3676972071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c59c0bda5b94ccb0a0568fcd82f0ccd7fec9ae44", + "fields": { + "code_commune_insee": "21546", + "nom_de_la_commune": "ST DIDIER", + "code_postal": "21210", + "coordonnees_gps": [ + 47.3168067442, + 4.17339058953 + ], + "libelle_d_acheminement": "ST DIDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17339058953, + 47.3168067442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa87c6e8805447e2a2d9cd2b3033ef4764f12a73", + "fields": { + "code_commune_insee": "21554", + "nom_de_la_commune": "ST JEAN DE LOSNE", + "code_postal": "21170", + "coordonnees_gps": [ + 47.1017053631, + 5.26653480307 + ], + "libelle_d_acheminement": "ST JEAN DE LOSNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26653480307, + 47.1017053631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "effcdf7be4c9eb1ba438bbfe3e9d53b2c8cff894", + "fields": { + "code_commune_insee": "21557", + "nom_de_la_commune": "ST MARC SUR SEINE", + "code_postal": "21450", + "coordonnees_gps": [ + 47.7000984346, + 4.59972785822 + ], + "libelle_d_acheminement": "ST MARC SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59972785822, + 47.7000984346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f4dc9c6f477bd5f2f54eec0a78926ab69afcb35", + "fields": { + "code_commune_insee": "21558", + "nom_de_la_commune": "STE MARIE LA BLANCHE", + "code_postal": "21200", + "coordonnees_gps": [ + 46.9740829451, + 4.89156932927 + ], + "libelle_d_acheminement": "STE MARIE LA BLANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89156932927, + 46.9740829451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1755e01699696013467f032140ac437de59266d3", + "fields": { + "code_commune_insee": "21559", + "nom_de_la_commune": "STE MARIE SUR OUCHE", + "code_postal": "21410", + "coordonnees_gps": [ + 47.2887325943, + 4.80366866589 + ], + "libelle_d_acheminement": "STE MARIE SUR OUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80366866589, + 47.2887325943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "443c0ece6d4ac6842253e87a82d70a9ee353406c", + "fields": { + "code_commune_insee": "21581", + "nom_de_la_commune": "SAMEREY", + "code_postal": "21170", + "coordonnees_gps": [ + 47.0897010705, + 5.36611406242 + ], + "libelle_d_acheminement": "SAMEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36611406242, + 47.0897010705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "588a5abdf8cf14e92c1d7cefacdc7a8b244d8cfb", + "fields": { + "code_commune_insee": "21582", + "nom_de_la_commune": "SANTENAY", + "code_postal": "21590", + "coordonnees_gps": [ + 46.9174107559, + 4.6933727007 + ], + "libelle_d_acheminement": "SANTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6933727007, + 46.9174107559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74013f30188dbbf5bc2b16a387f6df9b0e4b5d1c", + "fields": { + "code_commune_insee": "21587", + "nom_de_la_commune": "SAULX LE DUC", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5504780732, + 5.02209606556 + ], + "libelle_d_acheminement": "SAULX LE DUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02209606556, + 47.5504780732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60916bb87f4bda7ccc9acf2ada4003d42edda121", + "fields": { + "code_commune_insee": "21592", + "nom_de_la_commune": "SAVIGNY SOUS MALAIN", + "code_postal": "21540", + "coordonnees_gps": [ + 47.3316328215, + 4.75386301231 + ], + "libelle_d_acheminement": "SAVIGNY SOUS MALAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75386301231, + 47.3316328215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb24bff27a9ccb04bed02c965048375e3ceb7424", + "fields": { + "code_commune_insee": "21597", + "nom_de_la_commune": "SEGROIS", + "code_postal": "21220", + "coordonnees_gps": [ + 47.1609641771, + 4.89333944973 + ], + "libelle_d_acheminement": "SEGROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89333944973, + 47.1609641771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c6d72d4202854a672e3acc02a20f74e92fb4b81", + "fields": { + "code_commune_insee": "21607", + "nom_de_la_commune": "SEURRE", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0074486166, + 5.15220213947 + ], + "libelle_d_acheminement": "SEURRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15220213947, + 47.0074486166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a00ef745fead3a18187989ecec579b05c0ab4dd", + "fields": { + "code_commune_insee": "21609", + "nom_de_la_commune": "SOIRANS", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2105383431, + 5.29909358295 + ], + "libelle_d_acheminement": "SOIRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29909358295, + 47.2105383431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42f3741d021404fbcd6b2e9bd237f8417b03d27e", + "fields": { + "code_commune_insee": "21614", + "nom_de_la_commune": "SPOY", + "code_postal": "21120", + "coordonnees_gps": [ + 47.4458196658, + 5.18698392171 + ], + "libelle_d_acheminement": "SPOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18698392171, + 47.4458196658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "536de54c813f2e925c82bd3c73c7fefcf331b6dc", + "fields": { + "ligne_5": "LE MAUPAS", + "code_commune_insee": "21615", + "libelle_d_acheminement": "SUSSEY", + "code_postal": "21430", + "nom_de_la_commune": "SUSSEY", + "coordonnees_gps": [ + 47.2149293227, + 4.37242208694 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37242208694, + 47.2149293227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "539793241622866e814ccfc5a9dd67f60c57a7b7", + "fields": { + "code_commune_insee": "21617", + "nom_de_la_commune": "TALANT", + "code_postal": "21240", + "coordonnees_gps": [ + 47.3388300285, + 4.99779516001 + ], + "libelle_d_acheminement": "TALANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99779516001, + 47.3388300285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0121523ec06dfe1921b4f5d525af6be3449239ea", + "fields": { + "code_commune_insee": "21629", + "nom_de_la_commune": "THOISY LA BERCHERE", + "code_postal": "21210", + "coordonnees_gps": [ + 47.2605521734, + 4.33200696212 + ], + "libelle_d_acheminement": "THOISY LA BERCHERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33200696212, + 47.2605521734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88f7838bed0127fdcede8ec0adc94f2622e87d2d", + "fields": { + "code_commune_insee": "21632", + "nom_de_la_commune": "THOREY EN PLAINE", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2150904574, + 5.13836316838 + ], + "libelle_d_acheminement": "THOREY EN PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13836316838, + 47.2150904574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3c1ffb8c203c028ef7a9b3ded8467f3f650afce", + "fields": { + "code_commune_insee": "21635", + "nom_de_la_commune": "THOSTE", + "code_postal": "21460", + "coordonnees_gps": [ + 47.4356430005, + 4.22726106818 + ], + "libelle_d_acheminement": "THOSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22726106818, + 47.4356430005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13af6277081c54dd5a608b458736c81386a799f0", + "fields": { + "code_commune_insee": "21638", + "nom_de_la_commune": "TIL CHATEL", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5191360715, + 5.17912297276 + ], + "libelle_d_acheminement": "TIL CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17912297276, + 47.5191360715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9527bd6dd1cb6f8753969b1f9ec9b9e86af48ab8", + "fields": { + "code_commune_insee": "21639", + "nom_de_la_commune": "TILLENAY", + "code_postal": "21130", + "coordonnees_gps": [ + 47.1889382841, + 5.3514431505 + ], + "libelle_d_acheminement": "TILLENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3514431505, + 47.1889382841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a323b2771f6e1f5d426b2aaa0a48d9a56f300c5", + "fields": { + "code_commune_insee": "21640", + "nom_de_la_commune": "TORCY ET POULIGNY", + "code_postal": "21460", + "coordonnees_gps": [ + 47.4974003502, + 4.23612600971 + ], + "libelle_d_acheminement": "TORCY ET POULIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23612600971, + 47.4974003502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa9e6b0e65c649dc7528822b0fd9f9fa241117f6", + "fields": { + "code_commune_insee": "21642", + "nom_de_la_commune": "TOUTRY", + "code_postal": "21460", + "coordonnees_gps": [ + 47.5014647498, + 4.12836956975 + ], + "libelle_d_acheminement": "TOUTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12836956975, + 47.5014647498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78e8fa168b975b56528839e39e979bb5ca3820b4", + "fields": { + "code_commune_insee": "21644", + "nom_de_la_commune": "TROCHERES", + "code_postal": "21310", + "coordonnees_gps": [ + 47.3481781981, + 5.31468752935 + ], + "libelle_d_acheminement": "TROCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31468752935, + 47.3481781981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e704bd85dd7074cec3bcdc2ff4695f1f2d21eb7", + "fields": { + "code_commune_insee": "21646", + "nom_de_la_commune": "TROUHAUT", + "code_postal": "21440", + "coordonnees_gps": [ + 47.3907339814, + 4.76320070709 + ], + "libelle_d_acheminement": "TROUHAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76320070709, + 47.3907339814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f136a9cddb1e3b2278a7bc9e4cd311cd0fa4159d", + "fields": { + "code_commune_insee": "21651", + "nom_de_la_commune": "VAL SUZON", + "code_postal": "21121", + "coordonnees_gps": [ + 47.4271421558, + 4.90886346086 + ], + "libelle_d_acheminement": "VAL SUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90886346086, + 47.4271421558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa06c15c864de5bc58696572d3f7033fb9979096", + "fields": { + "code_commune_insee": "21655", + "nom_de_la_commune": "VANVEY", + "code_postal": "21400", + "coordonnees_gps": [ + 47.8418840697, + 4.72616973539 + ], + "libelle_d_acheminement": "VANVEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72616973539, + 47.8418840697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ade776621409593f70335807524853273ef919a6", + "fields": { + "code_commune_insee": "21661", + "nom_de_la_commune": "VELARS SUR OUCHE", + "code_postal": "21370", + "coordonnees_gps": [ + 47.3186399344, + 4.90983945871 + ], + "libelle_d_acheminement": "VELARS SUR OUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90983945871, + 47.3186399344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af14b1b5f7ce9f6b2d9fb2284b5292eeba90967a", + "fields": { + "ligne_5": "LES LAUMES", + "code_commune_insee": "21663", + "libelle_d_acheminement": "VENAREY LES LAUMES", + "code_postal": "21150", + "nom_de_la_commune": "VENAREY LES LAUMES", + "coordonnees_gps": [ + 47.5377240472, + 4.43966492373 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43966492373, + 47.5377240472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a557d219b98b878d46317a69430d0cf9c2700393", + "fields": { + "code_commune_insee": "21665", + "nom_de_la_commune": "VERNOIS LES VESVRES", + "code_postal": "21260", + "coordonnees_gps": [ + 47.652604247, + 5.15024471811 + ], + "libelle_d_acheminement": "VERNOIS LES VESVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15024471811, + 47.652604247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0af64c1b2e71ad9477771c5579d173755813bab", + "fields": { + "code_commune_insee": "21666", + "nom_de_la_commune": "VERNOT", + "code_postal": "21120", + "coordonnees_gps": [ + 47.491246958, + 4.96330752528 + ], + "libelle_d_acheminement": "VERNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96330752528, + 47.491246958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c4e7285ba7d10049e150466d1805e8837f1ae79", + "fields": { + "code_commune_insee": "21667", + "nom_de_la_commune": "VERONNES", + "code_postal": "21260", + "coordonnees_gps": [ + 47.5355759344, + 5.23841425575 + ], + "libelle_d_acheminement": "VERONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23841425575, + 47.5355759344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42b41d658c9fe96589d858eb41a51712aac178bd", + "fields": { + "code_commune_insee": "21669", + "nom_de_la_commune": "VERREY SOUS DREE", + "code_postal": "21540", + "coordonnees_gps": [ + 47.368425324, + 4.68776283971 + ], + "libelle_d_acheminement": "VERREY SOUS DREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68776283971, + 47.368425324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62d7ec0b459b8912c08b851e0e5c8b5d51203aa8", + "fields": { + "code_commune_insee": "21670", + "nom_de_la_commune": "VERREY SOUS SALMAISE", + "code_postal": "21690", + "coordonnees_gps": [ + 47.4384612168, + 4.67446130828 + ], + "libelle_d_acheminement": "VERREY SOUS SALMAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67446130828, + 47.4384612168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ba6bd440e73fbca3a0a0fcc2bcd1bfc2bd0730f", + "fields": { + "code_commune_insee": "21689", + "nom_de_la_commune": "VILLARS ET VILLENOTTE", + "code_postal": "21140", + "coordonnees_gps": [ + 47.5089545362, + 4.37864819259 + ], + "libelle_d_acheminement": "VILLARS ET VILLENOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37864819259, + 47.5089545362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b51d908a75ace19ffdcc0b9bcff0578a9783c355", + "fields": { + "code_commune_insee": "21691", + "nom_de_la_commune": "VILLEBICHOT", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1401359622, + 5.04221971149 + ], + "libelle_d_acheminement": "VILLEBICHOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04221971149, + 47.1401359622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72ad9d42312cbf00450773ba04202c1ebae9d3af", + "fields": { + "code_commune_insee": "21693", + "nom_de_la_commune": "VILLEDIEU", + "code_postal": "21330", + "coordonnees_gps": [ + 47.9076292898, + 4.38350951271 + ], + "libelle_d_acheminement": "VILLEDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38350951271, + 47.9076292898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2408c30865baff7848371f20e97d05b84b207f25", + "fields": { + "code_commune_insee": "21696", + "nom_de_la_commune": "VILLENEUVE SOUS CHARIGNY", + "code_postal": "21140", + "coordonnees_gps": [ + 47.4364542441, + 4.39988256271 + ], + "libelle_d_acheminement": "VILLENEUVE SOUS CHARIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39988256271, + 47.4364542441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d69c91c6c6cc80a2ba8584c11961715b9feec0a", + "fields": { + "code_commune_insee": "21702", + "nom_de_la_commune": "VILLEY SUR TILLE", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5679614823, + 5.1093341205 + ], + "libelle_d_acheminement": "VILLEY SUR TILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1093341205, + 47.5679614823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e83df102c6a78e931c265050e01d28e12d81699", + "fields": { + "code_commune_insee": "21704", + "nom_de_la_commune": "VILLIERS LE DUC", + "code_postal": "21400", + "coordonnees_gps": [ + 47.792546579, + 4.70386832988 + ], + "libelle_d_acheminement": "VILLIERS LE DUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70386832988, + 47.792546579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b2273a9681b8e9ec7b1c8520e2940be3e708ed3", + "fields": { + "code_commune_insee": "21709", + "nom_de_la_commune": "VISERNY", + "code_postal": "21500", + "coordonnees_gps": [ + 47.5627164354, + 4.28367240429 + ], + "libelle_d_acheminement": "VISERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28367240429, + 47.5627164354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4879a0371d9bf2e1ec92d373ab171e98ba802d78", + "fields": { + "code_commune_insee": "21715", + "nom_de_la_commune": "VOUDENAY", + "code_postal": "21230", + "coordonnees_gps": [ + 47.0944234603, + 4.38030260977 + ], + "libelle_d_acheminement": "VOUDENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38030260977, + 47.0944234603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b926f54fd4341e5b2a260d16fe6cf42b6c072074", + "fields": { + "code_commune_insee": "22005", + "nom_de_la_commune": "BELLE ISLE EN TERRE", + "code_postal": "22810", + "coordonnees_gps": [ + 48.5310285208, + -3.38188859591 + ], + "libelle_d_acheminement": "BELLE ISLE EN TERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38188859591, + 48.5310285208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d302872a382503ecb828868f1dc47ba6dce3bf4", + "fields": { + "ligne_5": "LOCMARIA", + "code_commune_insee": "22005", + "libelle_d_acheminement": "BELLE ISLE EN TERRE", + "code_postal": "22810", + "nom_de_la_commune": "BELLE ISLE EN TERRE", + "coordonnees_gps": [ + 48.5310285208, + -3.38188859591 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38188859591, + 48.5310285208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98b0675a8b74d7749dcc5ca19911605994234527", + "fields": { + "code_commune_insee": "22027", + "nom_de_la_commune": "LE CAMBOUT", + "code_postal": "22210", + "coordonnees_gps": [ + 48.0588495692, + -2.62105802782 + ], + "libelle_d_acheminement": "LE CAMBOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.62105802782, + 48.0588495692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6947077711cb9703d19eb3c39acfed1e7893967", + "fields": { + "ligne_5": "LANVEZEAC", + "code_commune_insee": "22030", + "libelle_d_acheminement": "CAOUENNEC LANVEZEAC", + "code_postal": "22300", + "nom_de_la_commune": "CAOUENNEC LANVEZEAC", + "coordonnees_gps": [ + 48.7062365317, + -3.36791409215 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36791409215, + 48.7062365317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e493c41880a07e32dcc63771aa328ccc69b6970", + "fields": { + "code_commune_insee": "22034", + "nom_de_la_commune": "CAVAN", + "code_postal": "22140", + "coordonnees_gps": [ + 48.6827644007, + -3.35255264768 + ], + "libelle_d_acheminement": "CAVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.35255264768, + 48.6827644007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b32bcfa311ad6eca0bd4c3b5a61e51442224d00", + "fields": { + "code_commune_insee": "22037", + "nom_de_la_commune": "LA CHAPELLE NEUVE", + "code_postal": "22160", + "coordonnees_gps": [ + 48.4656069567, + -3.4406776147 + ], + "libelle_d_acheminement": "LA CHAPELLE NEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.4406776147, + 48.4656069567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e9e18fc577daf56655b8d59d1d8aed5d906dd42", + "fields": { + "code_commune_insee": "22040", + "nom_de_la_commune": "COADOUT", + "code_postal": "22970", + "coordonnees_gps": [ + 48.5151774425, + -3.17890331471 + ], + "libelle_d_acheminement": "COADOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.17890331471, + 48.5151774425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4537744be6c1160af410c444f63cacb6558c28e9", + "fields": { + "ligne_5": "LES HOPITAUX", + "code_commune_insee": "22054", + "libelle_d_acheminement": "ERQUY", + "code_postal": "22430", + "nom_de_la_commune": "ERQUY", + "coordonnees_gps": [ + 48.6194186311, + -2.45858442922 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45858442922, + 48.6194186311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26641dd509cde167c5c5ec9970ad01d04f355a4e", + "fields": { + "code_commune_insee": "22056", + "nom_de_la_commune": "EVRAN", + "code_postal": "22630", + "coordonnees_gps": [ + 48.3848559678, + -1.97961537709 + ], + "libelle_d_acheminement": "EVRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97961537709, + 48.3848559678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b95ce5e1910a1456b161a0ef2ae3829681d7536f", + "fields": { + "code_commune_insee": "22068", + "nom_de_la_commune": "GRACE UZEL", + "code_postal": "22460", + "coordonnees_gps": [ + 48.2502051876, + -2.79367583323 + ], + "libelle_d_acheminement": "GRACE UZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79367583323, + 48.2502051876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "612b170e7072a2c12c03f3ba24abec8253e3bbc7", + "fields": { + "code_commune_insee": "22070", + "nom_de_la_commune": "GUINGAMP", + "code_postal": "22200", + "coordonnees_gps": [ + 48.5612759498, + -3.15330223539 + ], + "libelle_d_acheminement": "GUINGAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15330223539, + 48.5612759498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0e894c1e3a70149b4e432e6feecf2a20700ce4e", + "fields": { + "ligne_5": "ST IGNEUC", + "code_commune_insee": "22084", + "libelle_d_acheminement": "JUGON LES LACS COMMUNE NOUVELLE", + "code_postal": "22270", + "nom_de_la_commune": "JUGON LES LACS COMMUNE NOUVELLE", + "coordonnees_gps": [ + 48.4166591067, + -2.32522349689 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.32522349689, + 48.4166591067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7386de979ce7eb9edcce8ca22122d812749352e2", + "fields": { + "code_commune_insee": "22087", + "nom_de_la_commune": "KERGRIST MOELOU", + "code_postal": "22110", + "coordonnees_gps": [ + 48.29472326, + -3.32538204171 + ], + "libelle_d_acheminement": "KERGRIST MOELOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.32538204171, + 48.29472326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a87dc8ac718dc2e56415ac6857b705ba6d803ad9", + "fields": { + "code_commune_insee": "22088", + "nom_de_la_commune": "KERIEN", + "code_postal": "22480", + "coordonnees_gps": [ + 48.4091455104, + -3.22991247823 + ], + "libelle_d_acheminement": "KERIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.22991247823, + 48.4091455104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91621efd2ca42129726364ae34960710f53b412c", + "fields": { + "code_commune_insee": "22090", + "nom_de_la_commune": "KERMARIA SULARD", + "code_postal": "22450", + "coordonnees_gps": [ + 48.7735327314, + -3.37254108422 + ], + "libelle_d_acheminement": "KERMARIA SULARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37254108422, + 48.7735327314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a40fa0b7110590a9bf9b6a5b27fbf5f87e9b3fcb", + "fields": { + "ligne_5": "LAMBALLE", + "code_commune_insee": "22093", + "libelle_d_acheminement": "LAMBALLE ARMOR", + "code_postal": "22400", + "nom_de_la_commune": "LAMBALLE ARMOR", + "coordonnees_gps": [ + 48.4684404751, + -2.49534815954 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49534815954, + 48.4684404751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0714f7d8e6055ae69c8fab1466ca595eca3b9fa1", + "fields": { + "ligne_5": "ST AARON", + "code_commune_insee": "22093", + "libelle_d_acheminement": "LAMBALLE ARMOR", + "code_postal": "22400", + "nom_de_la_commune": "LAMBALLE ARMOR", + "coordonnees_gps": [ + 48.4684404751, + -2.49534815954 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49534815954, + 48.4684404751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a12481e54b9dc6999651a05f94e03aee3a5c3e0b", + "fields": { + "ligne_5": "TREGOMAR", + "code_commune_insee": "22093", + "libelle_d_acheminement": "LAMBALLE ARMOR", + "code_postal": "22400", + "nom_de_la_commune": "LAMBALLE ARMOR", + "coordonnees_gps": [ + 48.4684404751, + -2.49534815954 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49534815954, + 48.4684404751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c37e0023cca6780fb405581fbbab071494a8d1cc", + "fields": { + "code_commune_insee": "22098", + "nom_de_la_commune": "LANDEHEN", + "code_postal": "22400", + "coordonnees_gps": [ + 48.4222879155, + -2.54229267406 + ], + "libelle_d_acheminement": "LANDEHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54229267406, + 48.4222879155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbe6dac397027d91dc74891220b12e669b2a2d6f", + "fields": { + "code_commune_insee": "22105", + "nom_de_la_commune": "LANGUENAN", + "code_postal": "22130", + "coordonnees_gps": [ + 48.5115119338, + -2.13296467458 + ], + "libelle_d_acheminement": "LANGUENAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.13296467458, + 48.5115119338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a7a9520617d63b87d83f8f6e8c964a94e457d18", + "fields": { + "ligne_5": "BEG LEGUER SERVEL", + "code_commune_insee": "22113", + "libelle_d_acheminement": "LANNION", + "code_postal": "22300", + "nom_de_la_commune": "LANNION", + "coordonnees_gps": [ + 48.7433496707, + -3.46159799691 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.46159799691, + 48.7433496707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cacc7c3ab707bb0a566c884408c92f645df8e84", + "fields": { + "ligne_5": "NOTRE DAME DE LA COUR", + "code_commune_insee": "22117", + "libelle_d_acheminement": "LANTIC", + "code_postal": "22410", + "nom_de_la_commune": "LANTIC", + "coordonnees_gps": [ + 48.6040161525, + -2.89860242151 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89860242151, + 48.6040161525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3524ea77369be9db64d1fdaedf7041daaeaa29eb", + "fields": { + "ligne_5": "ST SOLEN", + "code_commune_insee": "22118", + "libelle_d_acheminement": "LANVALLAY", + "code_postal": "22100", + "nom_de_la_commune": "LANVALLAY", + "coordonnees_gps": [ + 48.451759809, + -2.01053362747 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01053362747, + 48.451759809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cd5a734c8a385ecb85b4417d4e45596384dd944", + "fields": { + "ligne_5": "TRESSAINT", + "code_commune_insee": "22118", + "libelle_d_acheminement": "LANVALLAY", + "code_postal": "22100", + "nom_de_la_commune": "LANVALLAY", + "coordonnees_gps": [ + 48.451759809, + -2.01053362747 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01053362747, + 48.451759809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "513b157a9590fba69eb25be7dc96d40f0c4efc20", + "fields": { + "code_commune_insee": "22121", + "nom_de_la_commune": "LANVOLLON", + "code_postal": "22290", + "coordonnees_gps": [ + 48.6334353937, + -2.98974658224 + ], + "libelle_d_acheminement": "LANVOLLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98974658224, + 48.6334353937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ea4054a4a38429a10d19a8e947ffb713c36ec0d", + "fields": { + "code_commune_insee": "22128", + "nom_de_la_commune": "LOCARN", + "code_postal": "22340", + "coordonnees_gps": [ + 48.3325702433, + -3.41128829706 + ], + "libelle_d_acheminement": "LOCARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41128829706, + 48.3325702433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3775c7ee1f79bcb62458c214b9b813b92ed5d72", + "fields": { + "code_commune_insee": "22139", + "nom_de_la_commune": "MAGOAR", + "code_postal": "22480", + "coordonnees_gps": [ + 48.4014791797, + -3.17683150535 + ], + "libelle_d_acheminement": "MAGOAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.17683150535, + 48.4014791797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba36ed68a4ad223ebd3458cc36b2945db3b37e9e", + "fields": { + "code_commune_insee": "22146", + "nom_de_la_commune": "MELLIONNEC", + "code_postal": "22110", + "coordonnees_gps": [ + 48.1687655698, + -3.28980026504 + ], + "libelle_d_acheminement": "MELLIONNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.28980026504, + 48.1687655698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d3e6de55b09a633aa7d45313be79512d54585d4", + "fields": { + "code_commune_insee": "22148", + "nom_de_la_commune": "MERILLAC", + "code_postal": "22230", + "coordonnees_gps": [ + 48.249384359, + -2.39127521375 + ], + "libelle_d_acheminement": "MERILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39127521375, + 48.249384359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fffaabc88b3d70d75e6a5f3dffd30ced9d365bd", + "fields": { + "code_commune_insee": "22149", + "nom_de_la_commune": "MERLEAC", + "code_postal": "22460", + "coordonnees_gps": [ + 48.2725811849, + -2.91089143126 + ], + "libelle_d_acheminement": "MERLEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91089143126, + 48.2725811849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "645f34e6b6115a8d399b08908fd4ef9460249116", + "fields": { + "code_commune_insee": "22156", + "nom_de_la_commune": "MOUSTERU", + "code_postal": "22200", + "coordonnees_gps": [ + 48.5285458399, + -3.23462058455 + ], + "libelle_d_acheminement": "MOUSTERU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.23462058455, + 48.5285458399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a997a9f008e79eb5b0fc4342b43335ed891d010", + "fields": { + "code_commune_insee": "22157", + "nom_de_la_commune": "LE MOUSTOIR", + "code_postal": "22340", + "coordonnees_gps": [ + 48.2739501884, + -3.49152606471 + ], + "libelle_d_acheminement": "LE MOUSTOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.49152606471, + 48.2739501884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45f4f492bd93dff1df1bce278d0511264700fe41", + "fields": { + "code_commune_insee": "22162", + "nom_de_la_commune": "PAIMPOL", + "code_postal": "22500", + "coordonnees_gps": [ + 48.7733386239, + -3.05459397042 + ], + "libelle_d_acheminement": "PAIMPOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.05459397042, + 48.7733386239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a91376a6d098cdcd8cc02b6ea707930cb1bf2e0", + "fields": { + "ligne_5": "PORT BLANC", + "code_commune_insee": "22166", + "libelle_d_acheminement": "PENVENAN", + "code_postal": "22710", + "nom_de_la_commune": "PENVENAN", + "coordonnees_gps": [ + 48.816014407, + -3.30224745841 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.30224745841, + 48.816014407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2761d86fa1ed3ecaa3501ca9ab8ce6c0d7ab118f", + "fields": { + "code_commune_insee": "22170", + "nom_de_la_commune": "PLAINE HAUTE", + "code_postal": "22800", + "coordonnees_gps": [ + 48.4435359708, + -2.85882396738 + ], + "libelle_d_acheminement": "PLAINE HAUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.85882396738, + 48.4435359708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3537a42df2c0861e24a7ea3a31d303090fb38e8e", + "fields": { + "ligne_5": "ST LAURENT DE LA MER", + "code_commune_insee": "22187", + "libelle_d_acheminement": "PLERIN", + "code_postal": "22190", + "nom_de_la_commune": "PLERIN", + "coordonnees_gps": [ + 48.5441732134, + -2.77004635921 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77004635921, + 48.5441732134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d83b874504d626e97ff3e0a2b92784937f83a1c", + "fields": { + "ligne_5": "TRIGAVOU", + "code_commune_insee": "22190", + "libelle_d_acheminement": "PLESLIN TRIGAVOU", + "code_postal": "22490", + "nom_de_la_commune": "PLESLIN TRIGAVOU", + "coordonnees_gps": [ + 48.5279257425, + -2.07094753611 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07094753611, + 48.5279257425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "948ad6898caf7f3d3f777c85ea524d66bb17a834", + "fields": { + "ligne_5": "ILE GRANDE", + "code_commune_insee": "22198", + "libelle_d_acheminement": "PLEUMEUR BODOU", + "code_postal": "22560", + "nom_de_la_commune": "PLEUMEUR BODOU", + "coordonnees_gps": [ + 48.7852851364, + -3.51721058191 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.51721058191, + 48.7852851364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50844f3fbd59eb116be1c69385e481728cd76f73", + "fields": { + "code_commune_insee": "22202", + "nom_de_la_commune": "PLEVIN", + "code_postal": "22340", + "coordonnees_gps": [ + 48.2237458886, + -3.51633070374 + ], + "libelle_d_acheminement": "PLEVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.51633070374, + 48.2237458886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acbdc576904e2f0077d2967a691b1278a6d1ad48", + "fields": { + "code_commune_insee": "22207", + "nom_de_la_commune": "PLOUARET", + "code_postal": "22420", + "coordonnees_gps": [ + 48.6193915255, + -3.48297540773 + ], + "libelle_d_acheminement": "PLOUARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.48297540773, + 48.6193915255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aec18eb1b5026f4895b12a64afc3ed04856dcb27", + "fields": { + "code_commune_insee": "22208", + "nom_de_la_commune": "PLOUASNE", + "code_postal": "22830", + "coordonnees_gps": [ + 48.3117473235, + -2.00863040053 + ], + "libelle_d_acheminement": "PLOUASNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.00863040053, + 48.3117473235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc50a37ba0cb7c7ba5363636bdc20fc223ee3e35", + "fields": { + "code_commune_insee": "22211", + "nom_de_la_commune": "PLOUBEZRE", + "code_postal": "22300", + "coordonnees_gps": [ + 48.685519576, + -3.44839512307 + ], + "libelle_d_acheminement": "PLOUBEZRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44839512307, + 48.685519576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "407d5acaacd1aeed71ca8628b86f00792e286c8c", + "fields": { + "code_commune_insee": "22213", + "nom_de_la_commune": "PLOUER SUR RANCE", + "code_postal": "22490", + "coordonnees_gps": [ + 48.5248482927, + -2.00660319758 + ], + "libelle_d_acheminement": "PLOUER SUR RANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.00660319758, + 48.5248482927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ab0c6f69b7c31c03699dadaf8530ec2189a07b8", + "fields": { + "code_commune_insee": "22214", + "nom_de_la_commune": "PLOUEZEC", + "code_postal": "22470", + "coordonnees_gps": [ + 48.7387813748, + -2.9791439557 + ], + "libelle_d_acheminement": "PLOUEZEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.9791439557, + 48.7387813748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5eb9b0abaaa579f0697cf374497f162f7283c2dc", + "fields": { + "code_commune_insee": "22215", + "nom_de_la_commune": "PLOUFRAGAN", + "code_postal": "22440", + "coordonnees_gps": [ + 48.4877482968, + -2.80851630928 + ], + "libelle_d_acheminement": "PLOUFRAGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80851630928, + 48.4877482968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1563eb4f46d99475879e1a0e1eb64476624e5d63", + "fields": { + "code_commune_insee": "22228", + "nom_de_la_commune": "PLOUNEVEZ MOEDEC", + "code_postal": "22810", + "coordonnees_gps": [ + 48.5514852561, + -3.44431318727 + ], + "libelle_d_acheminement": "PLOUNEVEZ MOEDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44431318727, + 48.5514852561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4255fa585028ed0ee033842818e59604b8f9fd84", + "fields": { + "code_commune_insee": "22231", + "nom_de_la_commune": "PLOURAC H", + "code_postal": "22160", + "coordonnees_gps": [ + 48.4185427687, + -3.55150480178 + ], + "libelle_d_acheminement": "PLOURAC H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.55150480178, + 48.4185427687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ddc2fd58664d9fdaf661d5f69989523da1a52f9", + "fields": { + "code_commune_insee": "22240", + "nom_de_la_commune": "PLUMAUGAT", + "code_postal": "22250", + "coordonnees_gps": [ + 48.2450296898, + -2.23091188525 + ], + "libelle_d_acheminement": "PLUMAUGAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.23091188525, + 48.2450296898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b881b5028a7ac818f7ec859c1c162aebfaeb400", + "fields": { + "code_commune_insee": "22241", + "nom_de_la_commune": "PLUMIEUX", + "code_postal": "22210", + "coordonnees_gps": [ + 48.1061077392, + -2.59155562582 + ], + "libelle_d_acheminement": "PLUMIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.59155562582, + 48.1061077392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d18c3cdd7304ee14927bbd3d971b530a44d9e1b2", + "fields": { + "code_commune_insee": "22242", + "nom_de_la_commune": "PLURIEN", + "code_postal": "22240", + "coordonnees_gps": [ + 48.6095445151, + -2.39978553879 + ], + "libelle_d_acheminement": "PLURIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39978553879, + 48.6095445151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "378f5357687efa66076943988c5d0cea6f9ebd2f", + "fields": { + "code_commune_insee": "22250", + "nom_de_la_commune": "PONTRIEUX", + "code_postal": "22260", + "coordonnees_gps": [ + 48.6998384627, + -3.1590834016 + ], + "libelle_d_acheminement": "PONTRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.1590834016, + 48.6998384627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f403859fb60c4749642cc4fd8cb88de10f787d56", + "fields": { + "code_commune_insee": "22256", + "nom_de_la_commune": "QUEMPER GUEZENNEC", + "code_postal": "22260", + "coordonnees_gps": [ + 48.7006441281, + -3.10832259045 + ], + "libelle_d_acheminement": "QUEMPER GUEZENNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.10832259045, + 48.7006441281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5adfac56099318c77b54a9edadfb039d8848df21", + "fields": { + "code_commune_insee": "22258", + "nom_de_la_commune": "QUESSOY", + "code_postal": "22120", + "coordonnees_gps": [ + 48.4272969207, + -2.65707016677 + ], + "libelle_d_acheminement": "QUESSOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.65707016677, + 48.4272969207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49d76a4ebccd3380d826e419903fb6000e4869ab", + "fields": { + "ligne_5": "L AUBLETTE QUEVERT", + "code_commune_insee": "22259", + "libelle_d_acheminement": "QUEVERT", + "code_postal": "22100", + "nom_de_la_commune": "QUEVERT", + "coordonnees_gps": [ + 48.463126899, + -2.08562877928 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08562877928, + 48.463126899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b7f6967a512ddb16936cabfc6698635b2580712", + "fields": { + "code_commune_insee": "22265", + "nom_de_la_commune": "ROSPEZ", + "code_postal": "22300", + "coordonnees_gps": [ + 48.7363664722, + -3.38603599093 + ], + "libelle_d_acheminement": "ROSPEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38603599093, + 48.7363664722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e06ba9be273633cda0cfe270acc6f69ed3fcdb5e", + "fields": { + "code_commune_insee": "22268", + "nom_de_la_commune": "RUCA", + "code_postal": "22550", + "coordonnees_gps": [ + 48.5614490125, + -2.33540451705 + ], + "libelle_d_acheminement": "RUCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.33540451705, + 48.5614490125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b13eec8ff74c99b68ae1c0c9cbf37fcfbc69f8c", + "fields": { + "code_commune_insee": "22269", + "nom_de_la_commune": "RUNAN", + "code_postal": "22260", + "coordonnees_gps": [ + 48.6867514768, + -3.22734590799 + ], + "libelle_d_acheminement": "RUNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.22734590799, + 48.6867514768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "831e61467c6290954049e7bad32c03ee2f15ed40", + "fields": { + "code_commune_insee": "22272", + "nom_de_la_commune": "ST AGATHON", + "code_postal": "22200", + "coordonnees_gps": [ + 48.5628506514, + -3.10081732497 + ], + "libelle_d_acheminement": "ST AGATHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.10081732497, + 48.5628506514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da86fa45fcd1fd8d7237c4a956da7d4a5db60ee5", + "fields": { + "code_commune_insee": "22278", + "nom_de_la_commune": "ST BRIEUC", + "code_postal": "22000", + "coordonnees_gps": [ + 48.5149806053, + -2.76154552773 + ], + "libelle_d_acheminement": "ST BRIEUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76154552773, + 48.5149806053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ba19b8a29cc7c61a5fae7ae2647ae9fe68156a4", + "fields": { + "code_commune_insee": "22282", + "nom_de_la_commune": "ST CAST LE GUILDO", + "code_postal": "22380", + "coordonnees_gps": [ + 48.6037155601, + -2.24912296088 + ], + "libelle_d_acheminement": "ST CAST LE GUILDO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24912296088, + 48.6037155601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71d363123a516682cb9602dac4a54fd3ca01a072", + "fields": { + "ligne_5": "NOTRE DAME DU GUILDO", + "code_commune_insee": "22282", + "libelle_d_acheminement": "ST CAST LE GUILDO", + "code_postal": "22380", + "nom_de_la_commune": "ST CAST LE GUILDO", + "coordonnees_gps": [ + 48.6037155601, + -2.24912296088 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24912296088, + 48.6037155601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e05ee98fff54c906d1544bb4624eb7d47b5e223a", + "fields": { + "code_commune_insee": "22309", + "nom_de_la_commune": "ST LAUNEUC", + "code_postal": "22230", + "coordonnees_gps": [ + 48.2322069844, + -2.35423564217 + ], + "libelle_d_acheminement": "ST LAUNEUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.35423564217, + 48.2322069844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5e23d32df17023ec672cc60be3ea0179b079078", + "fields": { + "code_commune_insee": "22322", + "nom_de_la_commune": "ST PEVER", + "code_postal": "22720", + "coordonnees_gps": [ + 48.4822950613, + -3.09102052353 + ], + "libelle_d_acheminement": "ST PEVER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09102052353, + 48.4822950613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d878b7be8ebbb7d72a142c65f92bc817deeb908", + "fields": { + "code_commune_insee": "22325", + "nom_de_la_commune": "ST QUAY PORTRIEUX", + "code_postal": "22410", + "coordonnees_gps": [ + 48.6542475006, + -2.84382337656 + ], + "libelle_d_acheminement": "ST QUAY PORTRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84382337656, + 48.6542475006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba6ced2611d6f58a66d1d029c710453e1ad51a5f", + "fields": { + "code_commune_insee": "22341", + "nom_de_la_commune": "TRAMAIN", + "code_postal": "22640", + "coordonnees_gps": [ + 48.3998800442, + -2.38881241338 + ], + "libelle_d_acheminement": "TRAMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38881241338, + 48.3998800442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e4ddd2f30d6cc5ee966fb8edc5001a0c0f2b28c", + "fields": { + "code_commune_insee": "22348", + "nom_de_la_commune": "TREDIAS", + "code_postal": "22250", + "coordonnees_gps": [ + 48.3653903588, + -2.22290375179 + ], + "libelle_d_acheminement": "TREDIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.22290375179, + 48.3653903588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3fe47ebd6ee9e55595f583512bfbf0b6922304e", + "fields": { + "code_commune_insee": "22349", + "nom_de_la_commune": "TREDREZ LOCQUEMEAU", + "code_postal": "22300", + "coordonnees_gps": [ + 48.7075368111, + -3.56441252563 + ], + "libelle_d_acheminement": "TREDREZ LOCQUEMEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.56441252563, + 48.7075368111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0378ce1c588b8da100cd10d2d448ff8e4cadbd70", + "fields": { + "code_commune_insee": "22352", + "nom_de_la_commune": "TREFUMEL", + "code_postal": "22630", + "coordonnees_gps": [ + 48.3373946389, + -2.02418425238 + ], + "libelle_d_acheminement": "TREFUMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02418425238, + 48.3373946389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9053d296aef27d2192198901a63d1bc8058396f", + "fields": { + "code_commune_insee": "22358", + "nom_de_la_commune": "TREGONNEAU", + "code_postal": "22200", + "coordonnees_gps": [ + 48.6141977359, + -3.16293062562 + ], + "libelle_d_acheminement": "TREGONNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.16293062562, + 48.6141977359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a68d09e040e86c0f1a69b26f29fa91b7345c7626", + "fields": { + "code_commune_insee": "22359", + "nom_de_la_commune": "TREGROM", + "code_postal": "22420", + "coordonnees_gps": [ + 48.5946464284, + -3.40266097261 + ], + "libelle_d_acheminement": "TREGROM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.40266097261, + 48.5946464284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88afcbfdd55b34f7f6c41eef8f7739099fa0ba3a", + "fields": { + "code_commune_insee": "22360", + "nom_de_la_commune": "TREGUEUX", + "code_postal": "22950", + "coordonnees_gps": [ + 48.480075769, + -2.74506421541 + ], + "libelle_d_acheminement": "TREGUEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.74506421541, + 48.480075769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ecbb4015a8d6579430349aec96192764d799c71", + "fields": { + "code_commune_insee": "22368", + "nom_de_la_commune": "TREMEREUC", + "code_postal": "22490", + "coordonnees_gps": [ + 48.5608248662, + -2.06398861728 + ], + "libelle_d_acheminement": "TREMEREUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06398861728, + 48.5608248662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cc812cd89ec328cf3dbaccfeefc4b7e1a2dfa3a", + "fields": { + "code_commune_insee": "22377", + "nom_de_la_commune": "TREVENEUC", + "code_postal": "22410", + "coordonnees_gps": [ + 48.6598480306, + -2.87375934756 + ], + "libelle_d_acheminement": "TREVENEUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.87375934756, + 48.6598480306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad3874cdc8beb5fd9cb11a0a88966ac59a05143e", + "fields": { + "code_commune_insee": "22385", + "nom_de_la_commune": "LA VICOMTE SUR RANCE", + "code_postal": "22690", + "coordonnees_gps": [ + 48.4879334459, + -1.98287622329 + ], + "libelle_d_acheminement": "LA VICOMTE SUR RANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98287622329, + 48.4879334459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "655b51fb7f7f5594ee48d1f5feddb76c1084ec69", + "fields": { + "code_commune_insee": "22390", + "nom_de_la_commune": "YVIAS", + "code_postal": "22930", + "coordonnees_gps": [ + 48.7151767703, + -3.04560013662 + ], + "libelle_d_acheminement": "YVIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04560013662, + 48.7151767703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6dd6484fb7591bc60a7b2a12bc2b87a33fed9dd", + "fields": { + "code_commune_insee": "23001", + "nom_de_la_commune": "AHUN", + "code_postal": "23150", + "coordonnees_gps": [ + 46.0861690765, + 2.02430101436 + ], + "libelle_d_acheminement": "AHUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02430101436, + 46.0861690765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29fb51e8264c4b802d58f9c8a38fa55f70ba6fd1", + "fields": { + "code_commune_insee": "23002", + "nom_de_la_commune": "AJAIN", + "code_postal": "23380", + "coordonnees_gps": [ + 46.2109887646, + 1.9959623106 + ], + "libelle_d_acheminement": "AJAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9959623106, + 46.2109887646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58a8af66069d3aa6548358c969498dbbbe75407a", + "fields": { + "code_commune_insee": "23018", + "nom_de_la_commune": "BAZELAT", + "code_postal": "23160", + "coordonnees_gps": [ + 46.3502358102, + 1.53198134056 + ], + "libelle_d_acheminement": "BAZELAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53198134056, + 46.3502358102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3d8a74f29774c75840d519dd1ebfa43463c0d1b", + "fields": { + "code_commune_insee": "23025", + "nom_de_la_commune": "BONNAT", + "code_postal": "23220", + "coordonnees_gps": [ + 46.3230193342, + 1.91345063136 + ], + "libelle_d_acheminement": "BONNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91345063136, + 46.3230193342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6a604bf54892f5af5e008295facf205a6f3f605", + "fields": { + "code_commune_insee": "23026", + "nom_de_la_commune": "BORD ST GEORGES", + "code_postal": "23230", + "coordonnees_gps": [ + 46.2516533293, + 2.28716245928 + ], + "libelle_d_acheminement": "BORD ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28716245928, + 46.2516533293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "794a6867b3a75d5844f4648c93a43a7fb9b23b9a", + "fields": { + "code_commune_insee": "23027", + "nom_de_la_commune": "BOSMOREAU LES MINES", + "code_postal": "23400", + "coordonnees_gps": [ + 46.0023571531, + 1.754330245 + ], + "libelle_d_acheminement": "BOSMOREAU LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.754330245, + 46.0023571531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a92ecab66a714ce4b8c629b8b6fbd28cfa9dfc36", + "fields": { + "code_commune_insee": "23029", + "nom_de_la_commune": "LE BOURG D HEM", + "code_postal": "23220", + "coordonnees_gps": [ + 46.3013219598, + 1.84102963635 + ], + "libelle_d_acheminement": "LE BOURG D HEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84102963635, + 46.3013219598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afc2eedc18fca0062fb097970480487ef4251b94", + "fields": { + "code_commune_insee": "23038", + "nom_de_la_commune": "BUSSIERE ST GEORGES", + "code_postal": "23600", + "coordonnees_gps": [ + 46.4017907068, + 2.1551143589 + ], + "libelle_d_acheminement": "BUSSIERE ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1551143589, + 46.4017907068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "221bf08dd1ab9a8d2056907ff06a39a533a68874", + "fields": { + "code_commune_insee": "23043", + "nom_de_la_commune": "CHAMBERAUD", + "code_postal": "23480", + "coordonnees_gps": [ + 46.0500466747, + 2.04421088679 + ], + "libelle_d_acheminement": "CHAMBERAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04421088679, + 46.0500466747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a94c09c2b4f40714c5a9bdbac18c771850c22078", + "fields": { + "code_commune_insee": "23051", + "nom_de_la_commune": "LA CHAPELLE ST MARTIAL", + "code_postal": "23250", + "coordonnees_gps": [ + 46.0253131218, + 1.9223831649 + ], + "libelle_d_acheminement": "LA CHAPELLE ST MARTIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9223831649, + 46.0253131218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c34e81093081c0e88e2206bf52b14beaf3cc046", + "fields": { + "code_commune_insee": "23053", + "nom_de_la_commune": "CHARD", + "code_postal": "23700", + "coordonnees_gps": [ + 45.9497905818, + 2.49042284928 + ], + "libelle_d_acheminement": "CHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49042284928, + 45.9497905818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36561ac9a9711d2f740e49b28958a5e9da387e77", + "fields": { + "code_commune_insee": "23055", + "nom_de_la_commune": "CHATELARD", + "code_postal": "23700", + "coordonnees_gps": [ + 45.963784452, + 2.46736302039 + ], + "libelle_d_acheminement": "CHATELARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46736302039, + 45.963784452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb990a2bcfba6b33d25f0c84d458135ce8ac83fa", + "fields": { + "code_commune_insee": "23061", + "nom_de_la_commune": "CHENERAILLES", + "code_postal": "23130", + "coordonnees_gps": [ + 46.1127495212, + 2.17151822277 + ], + "libelle_d_acheminement": "CHENERAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17151822277, + 46.1127495212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae989a72e8a56925acb5395170095ea1eaac5980", + "fields": { + "code_commune_insee": "23062", + "nom_de_la_commune": "CHENIERS", + "code_postal": "23220", + "coordonnees_gps": [ + 46.3514072872, + 1.8276144193 + ], + "libelle_d_acheminement": "CHENIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8276144193, + 46.3514072872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71aa98bc1fd19c58286f4aa743456b3ce52f4854", + "fields": { + "code_commune_insee": "23073", + "nom_de_la_commune": "DONTREIX", + "code_postal": "23700", + "coordonnees_gps": [ + 45.978839337, + 2.5468586332 + ], + "libelle_d_acheminement": "DONTREIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5468586332, + 45.978839337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bde1f080778b25e3413839d7686603f61438fe16", + "fields": { + "code_commune_insee": "23074", + "nom_de_la_commune": "LE DONZEIL", + "code_postal": "23480", + "coordonnees_gps": [ + 46.03538708, + 1.98532939253 + ], + "libelle_d_acheminement": "LE DONZEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98532939253, + 46.03538708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82042a2ebf0fb403a5a878ce2079298d3183ed1d", + "fields": { + "code_commune_insee": "23079", + "nom_de_la_commune": "FELLETIN", + "code_postal": "23500", + "coordonnees_gps": [ + 45.889520976, + 2.18271124708 + ], + "libelle_d_acheminement": "FELLETIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18271124708, + 45.889520976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04a7fa827b50b33963f0d94922b4cb77dd07b58c", + "fields": { + "code_commune_insee": "23083", + "nom_de_la_commune": "FONTANIERES", + "code_postal": "23110", + "coordonnees_gps": [ + 46.1071405466, + 2.51926577888 + ], + "libelle_d_acheminement": "FONTANIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51926577888, + 46.1071405466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17d15bd94c1da75ce8d14b683bc5d90fde2e907d", + "fields": { + "ligne_5": "GOUZOUGNAT", + "code_commune_insee": "23093", + "libelle_d_acheminement": "GOUZON", + "code_postal": "23230", + "nom_de_la_commune": "GOUZON", + "coordonnees_gps": [ + 46.1872230665, + 2.23078389232 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23078389232, + 46.1872230665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f7d592360a482cc517e749a0df4f68e26c09307", + "fields": { + "code_commune_insee": "23099", + "nom_de_la_commune": "JANAILLAT", + "code_postal": "23250", + "coordonnees_gps": [ + 46.0480658385, + 1.77462877291 + ], + "libelle_d_acheminement": "JANAILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77462877291, + 46.0480658385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a828b273a8ef9b77f33ed428a01a888fb794e71e", + "fields": { + "code_commune_insee": "23101", + "nom_de_la_commune": "JOUILLAT", + "code_postal": "23220", + "coordonnees_gps": [ + 46.2681750557, + 1.93780051823 + ], + "libelle_d_acheminement": "JOUILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93780051823, + 46.2681750557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "926aa28ebad2f4159c009fed4193b070bc975c20", + "fields": { + "code_commune_insee": "23110", + "nom_de_la_commune": "LIOUX LES MONGES", + "code_postal": "23700", + "coordonnees_gps": [ + 45.9406455555, + 2.4446876759 + ], + "libelle_d_acheminement": "LIOUX LES MONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4446876759, + 45.9406455555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b31da0e8dc1fc96c0a51f182c4f6f7cd40934e17", + "fields": { + "code_commune_insee": "23119", + "nom_de_la_commune": "MALLERET", + "code_postal": "23260", + "coordonnees_gps": [ + 45.7623976444, + 2.32269567343 + ], + "libelle_d_acheminement": "MALLERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32269567343, + 45.7623976444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8090c1eda02093f9609f1bebabc02fc4d30f3e60", + "fields": { + "code_commune_insee": "23123", + "nom_de_la_commune": "LES MARS", + "code_postal": "23700", + "coordonnees_gps": [ + 45.9954123132, + 2.49152199993 + ], + "libelle_d_acheminement": "LES MARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49152199993, + 45.9954123132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d49b7c6e3c2f30a2dfec4c86202c84eb581abcad", + "fields": { + "code_commune_insee": "23129", + "nom_de_la_commune": "LA MAZIERE AUX BONS HOMMES", + "code_postal": "23260", + "coordonnees_gps": [ + 45.8897027199, + 2.44364829354 + ], + "libelle_d_acheminement": "MAZIERE AUX BONS HOMMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44364829354, + 45.8897027199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1435861e032f322c047d93ee403ba59b05b113df", + "fields": { + "code_commune_insee": "23130", + "nom_de_la_commune": "MEASNES", + "code_postal": "23360", + "coordonnees_gps": [ + 46.4230950685, + 1.77996331744 + ], + "libelle_d_acheminement": "MEASNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77996331744, + 46.4230950685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28ceb76af14aed193f3a09424c070599402b412a", + "fields": { + "code_commune_insee": "23132", + "nom_de_la_commune": "MONTAIGUT LE BLANC", + "code_postal": "23320", + "coordonnees_gps": [ + 46.1184508913, + 1.73277255271 + ], + "libelle_d_acheminement": "MONTAIGUT LE BLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73277255271, + 46.1184508913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a08835e1e8d73ceec0e196ae17f347301f98c7ce", + "fields": { + "code_commune_insee": "23134", + "nom_de_la_commune": "LE MONTEIL AU VICOMTE", + "code_postal": "23460", + "coordonnees_gps": [ + 45.9095469012, + 1.94488903825 + ], + "libelle_d_acheminement": "LE MONTEIL AU VICOMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94488903825, + 45.9095469012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f21546990ded98594b769c1344225d5af746de9", + "fields": { + "code_commune_insee": "23144", + "nom_de_la_commune": "LA NOUAILLE", + "code_postal": "23500", + "coordonnees_gps": [ + 45.8393812197, + 2.06990945927 + ], + "libelle_d_acheminement": "LA NOUAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06990945927, + 45.8393812197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d435b9f037c901fabb4d8289b98ee4e79730813", + "fields": { + "code_commune_insee": "23150", + "nom_de_la_commune": "PEYRABOUT", + "code_postal": "23000", + "coordonnees_gps": [ + 46.1007482768, + 1.91647736586 + ], + "libelle_d_acheminement": "PEYRABOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91647736586, + 46.1007482768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "160c28700fdf57ca33d1854df47500bc60a54009", + "fields": { + "code_commune_insee": "23151", + "nom_de_la_commune": "PEYRAT LA NONIERE", + "code_postal": "23130", + "coordonnees_gps": [ + 46.0802725066, + 2.25227584192 + ], + "libelle_d_acheminement": "PEYRAT LA NONIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25227584192, + 46.0802725066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae57a3ba7f3a7666dd2876c754d224b8b5e026d1", + "fields": { + "code_commune_insee": "23158", + "nom_de_la_commune": "POUSSANGES", + "code_postal": "23500", + "coordonnees_gps": [ + 45.8165124742, + 2.22140949104 + ], + "libelle_d_acheminement": "POUSSANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22140949104, + 45.8165124742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2940bce7107b4f5450367bc6271a4a5d1eb62603", + "fields": { + "code_commune_insee": "23162", + "nom_de_la_commune": "ROCHES", + "code_postal": "23270", + "coordonnees_gps": [ + 46.2810003098, + 1.99050170917 + ], + "libelle_d_acheminement": "ROCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99050170917, + 46.2810003098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3510fb1071b7cbc6f07011dab4336b2933f6eb8", + "fields": { + "code_commune_insee": "23180", + "nom_de_la_commune": "ST AMAND", + "code_postal": "23200", + "coordonnees_gps": [ + 45.9768729666, + 2.20679373252 + ], + "libelle_d_acheminement": "ST AMAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20679373252, + 45.9768729666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dd8dc568f51605da0d0fe388c674f6a58e691b7", + "fields": { + "code_commune_insee": "23181", + "nom_de_la_commune": "ST AMAND JARTOUDEIX", + "code_postal": "23400", + "coordonnees_gps": [ + 45.9176401302, + 1.66886742127 + ], + "libelle_d_acheminement": "ST AMAND JARTOUDEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66886742127, + 45.9176401302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0391c5d0d391b828daf81e5f2643b08973d6cc5e", + "fields": { + "code_commune_insee": "23182", + "nom_de_la_commune": "ST AVIT DE TARDES", + "code_postal": "23200", + "coordonnees_gps": [ + 45.9202464802, + 2.29914606711 + ], + "libelle_d_acheminement": "ST AVIT DE TARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29914606711, + 45.9202464802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7e15dec2ccb54a596b88e7eb59c9f31c3d6f364", + "fields": { + "code_commune_insee": "23183", + "nom_de_la_commune": "ST AVIT LE PAUVRE", + "code_postal": "23480", + "coordonnees_gps": [ + 45.993398023, + 2.04843748291 + ], + "libelle_d_acheminement": "ST AVIT LE PAUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04843748291, + 45.993398023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2b4890711cdebd1c4c4378b4c577356126d6b3b", + "fields": { + "code_commune_insee": "23186", + "nom_de_la_commune": "ST CHRISTOPHE", + "code_postal": "23000", + "coordonnees_gps": [ + 46.0966479541, + 1.86066366309 + ], + "libelle_d_acheminement": "ST CHRISTOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86066366309, + 46.0966479541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7884456161abdbed82d00e128c170e53bd2afb8a", + "fields": { + "ligne_5": "MASBARAUD MERIGNAT", + "code_commune_insee": "23189", + "libelle_d_acheminement": "ST DIZIER MASBARAUD", + "code_postal": "23400", + "nom_de_la_commune": "ST DIZIER MASBARAUD", + "coordonnees_gps": [ + 46.0272675127, + 1.70488354974 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70488354974, + 46.0272675127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "108ce32d86c7f015426baab60e5397be96b1ce1e", + "fields": { + "code_commune_insee": "23205", + "nom_de_la_commune": "ST JUNIEN LA BREGERE", + "code_postal": "23400", + "coordonnees_gps": [ + 45.8846270047, + 1.74417138808 + ], + "libelle_d_acheminement": "ST JUNIEN LA BREGERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74417138808, + 45.8846270047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d68256a6ac5f46010fe3aced613015110df0d7f5", + "fields": { + "code_commune_insee": "23207", + "nom_de_la_commune": "ST LEGER BRIDEREIX", + "code_postal": "23300", + "coordonnees_gps": [ + 46.2806353119, + 1.57830675905 + ], + "libelle_d_acheminement": "ST LEGER BRIDEREIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57830675905, + 46.2806353119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e4767eb53f27654ff1e8bc112afe20d1e0b5e45", + "fields": { + "ligne_5": "LE THEIL", + "code_commune_insee": "23217", + "libelle_d_acheminement": "ST MARTIN STE CATHERINE", + "code_postal": "23430", + "nom_de_la_commune": "ST MARTIN STE CATHERINE", + "coordonnees_gps": [ + 45.9426860436, + 1.56102508429 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56102508429, + 45.9426860436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a8e61cd1bf697e8a1a3e4290840a1f972341000", + "fields": { + "code_commune_insee": "23218", + "nom_de_la_commune": "ST MAURICE PRES CROCQ", + "code_postal": "23260", + "coordonnees_gps": [ + 45.8576074833, + 2.31542471203 + ], + "libelle_d_acheminement": "ST MAURICE PRES CROCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31542471203, + 45.8576074833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "707cca39b5681fa414a635830b879b3e52fa5933", + "fields": { + "code_commune_insee": "23221", + "nom_de_la_commune": "ST MERD LA BREUILLE", + "code_postal": "23100", + "coordonnees_gps": [ + 45.7335016527, + 2.4306254941 + ], + "libelle_d_acheminement": "ST MERD LA BREUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4306254941, + 45.7335016527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac37af0066c44e10cccdae93a14b684a8f534ea8", + "fields": { + "code_commune_insee": "23233", + "nom_de_la_commune": "ST PIERRE LE BOST", + "code_postal": "23600", + "coordonnees_gps": [ + 46.3965019066, + 2.26230447209 + ], + "libelle_d_acheminement": "ST PIERRE LE BOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26230447209, + 46.3965019066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fecd9ee04a830de15e249b19ac390a0814fb22d3", + "fields": { + "code_commune_insee": "23234", + "nom_de_la_commune": "ST PRIEST", + "code_postal": "23110", + "coordonnees_gps": [ + 46.0938953777, + 2.35623802038 + ], + "libelle_d_acheminement": "ST PRIEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35623802038, + 46.0938953777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac7a213b0a82e4e8e43559da2e3206f0abf57ff2", + "fields": { + "code_commune_insee": "23237", + "nom_de_la_commune": "ST PRIEST PALUS", + "code_postal": "23400", + "coordonnees_gps": [ + 45.8948915885, + 1.67641334578 + ], + "libelle_d_acheminement": "ST PRIEST PALUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67641334578, + 45.8948915885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a561d2cbf666694edc8679428c0df7b24853f16", + "fields": { + "code_commune_insee": "23241", + "nom_de_la_commune": "ST SILVAIN BELLEGARDE", + "code_postal": "23190", + "coordonnees_gps": [ + 45.9661631879, + 2.30737772119 + ], + "libelle_d_acheminement": "ST SILVAIN BELLEGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30737772119, + 45.9661631879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f258c9e7f7d9c909426b7266822ec09e450d296", + "fields": { + "code_commune_insee": "23247", + "nom_de_la_commune": "ST VAURY", + "code_postal": "23320", + "coordonnees_gps": [ + 46.1999085805, + 1.74904977519 + ], + "libelle_d_acheminement": "ST VAURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74904977519, + 46.1999085805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8660c37676c5e9b8107a10c2b018f7e6e06baa36", + "fields": { + "code_commune_insee": "23248", + "nom_de_la_commune": "ST VICTOR EN MARCHE", + "code_postal": "23000", + "coordonnees_gps": [ + 46.1180726796, + 1.79785648439 + ], + "libelle_d_acheminement": "ST VICTOR EN MARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79785648439, + 46.1180726796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77a17d87bea8aea96b4c371cf30739ff94816ffe", + "fields": { + "code_commune_insee": "23255", + "nom_de_la_commune": "TROIS FONDS", + "code_postal": "23230", + "coordonnees_gps": [ + 46.2431666421, + 2.23617811093 + ], + "libelle_d_acheminement": "TROIS FONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23617811093, + 46.2431666421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "265673629fce160460954384f19a61c5cea7acf2", + "fields": { + "code_commune_insee": "24001", + "nom_de_la_commune": "ABJAT SUR BANDIAT", + "code_postal": "24300", + "coordonnees_gps": [ + 45.5817657415, + 0.759998823063 + ], + "libelle_d_acheminement": "ABJAT SUR BANDIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.759998823063, + 45.5817657415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da6be6ca061528826b388ebd3e0a930c61f758ae", + "fields": { + "code_commune_insee": "24004", + "nom_de_la_commune": "AJAT", + "code_postal": "24210", + "coordonnees_gps": [ + 45.1611118041, + 1.02760334282 + ], + "libelle_d_acheminement": "AJAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02760334282, + 45.1611118041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72a3bc4f9a9a656c13793c9487a73e7118fc414e", + "fields": { + "code_commune_insee": "24005", + "nom_de_la_commune": "ALLES SUR DORDOGNE", + "code_postal": "24480", + "coordonnees_gps": [ + 44.861392005, + 0.874642007489 + ], + "libelle_d_acheminement": "ALLES SUR DORDOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.874642007489, + 44.861392005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "563ee65eb10b1dca4521704992cb4367748665c7", + "fields": { + "code_commune_insee": "24019", + "nom_de_la_commune": "AZERAT", + "code_postal": "24210", + "coordonnees_gps": [ + 45.1597230552, + 1.10636160477 + ], + "libelle_d_acheminement": "AZERAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10636160477, + 45.1597230552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "051b4ca74a91079e8798d8153f1ac7f839ffbce1", + "fields": { + "code_commune_insee": "24021", + "nom_de_la_commune": "BADEFOLS D ANS", + "code_postal": "24390", + "coordonnees_gps": [ + 45.2288608199, + 1.20372454119 + ], + "libelle_d_acheminement": "BADEFOLS D ANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20372454119, + 45.2288608199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9d6a9a744148bbd1ba10444dfc56cc0d631a582", + "fields": { + "code_commune_insee": "24024", + "nom_de_la_commune": "BARDOU", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7409359131, + 0.686088955421 + ], + "libelle_d_acheminement": "BARDOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.686088955421, + 44.7409359131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1fa24441e437787d86bd9755ea7627cf63fbdde", + "fields": { + "code_commune_insee": "24025", + "nom_de_la_commune": "BARS", + "code_postal": "24210", + "coordonnees_gps": [ + 45.0948929916, + 1.05073972207 + ], + "libelle_d_acheminement": "BARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05073972207, + 45.0948929916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c52c4e20bc953ed4edb4c6ad16cd70a71a6d8765", + "fields": { + "ligne_5": "MILHAC D AUBEROCHE", + "code_commune_insee": "24026", + "libelle_d_acheminement": "BASSILLAC ET AUBEROCHE", + "code_postal": "24330", + "nom_de_la_commune": "BASSILLAC ET AUBEROCHE", + "coordonnees_gps": [ + 45.1789592433, + 0.820956969026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.820956969026, + 45.1789592433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e7750e3effa27047c6fda7e3f31748546f7801d", + "fields": { + "code_commune_insee": "24036", + "nom_de_la_commune": "BERBIGUIERES", + "code_postal": "24220", + "coordonnees_gps": [ + 44.8394794581, + 1.04517998895 + ], + "libelle_d_acheminement": "BERBIGUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04517998895, + 44.8394794581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ab766d8990da1c865c40d62ceed2a8aaa9290d8", + "fields": { + "code_commune_insee": "24038", + "nom_de_la_commune": "BERTRIC BUREE", + "code_postal": "24320", + "coordonnees_gps": [ + 45.309051457, + 0.354531985356 + ], + "libelle_d_acheminement": "BERTRIC BUREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.354531985356, + 45.309051457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e051709cd46f600f48eee778d62856c93834dea", + "fields": { + "code_commune_insee": "24050", + "nom_de_la_commune": "BORREZE", + "code_postal": "24590", + "coordonnees_gps": [ + 44.9746545829, + 1.39100783698 + ], + "libelle_d_acheminement": "BORREZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39100783698, + 44.9746545829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9515033f23f9cee0a11717d9de7c7358ff13a680", + "fields": { + "ligne_5": "STE MARIE DE CHIGNAC", + "code_commune_insee": "24053", + "libelle_d_acheminement": "BOULAZAC ISLE MANOIRE", + "code_postal": "24330", + "nom_de_la_commune": "BOULAZAC ISLE MANOIRE", + "coordonnees_gps": [ + 45.1737726952, + 0.769368950586 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.769368950586, + 45.1737726952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d977b46be7cdf2ff1d3bad74ce2e754da380e8d8", + "fields": { + "ligne_5": "ST LAURENT SUR MANOIRE", + "code_commune_insee": "24053", + "libelle_d_acheminement": "BOULAZAC ISLE MANOIRE", + "code_postal": "24330", + "nom_de_la_commune": "BOULAZAC ISLE MANOIRE", + "coordonnees_gps": [ + 45.1737726952, + 0.769368950586 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.769368950586, + 45.1737726952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "597aa9554cd7059312776aad7fdd43e38252c51d", + "fields": { + "code_commune_insee": "24058", + "nom_de_la_commune": "BOURG DU BOST", + "code_postal": "24600", + "coordonnees_gps": [ + 45.2670647024, + 0.263235867564 + ], + "libelle_d_acheminement": "BOURG DU BOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.263235867564, + 45.2670647024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75983c3e931dbdeb17c06c9d1f2ee9e113346835", + "fields": { + "ligne_5": "BRANTOME", + "code_commune_insee": "24064", + "libelle_d_acheminement": "BRANTOME EN PERIGORD", + "code_postal": "24310", + "nom_de_la_commune": "BRANTOME EN PERIGORD", + "coordonnees_gps": [ + 45.360114867, + 0.65590360604 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65590360604, + 45.360114867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af5daa4aefb28edd468ff51570e01b900f64e719", + "fields": { + "code_commune_insee": "24066", + "nom_de_la_commune": "BROUCHAUD", + "code_postal": "24210", + "coordonnees_gps": [ + 45.2049887022, + 0.997159768342 + ], + "libelle_d_acheminement": "BROUCHAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.997159768342, + 45.2049887022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07e67fea7625a5474cabed63597a6751d258d382", + "fields": { + "ligne_5": "PALEYRAC", + "code_commune_insee": "24068", + "libelle_d_acheminement": "LE BUISSON DE CADOUIN", + "code_postal": "24480", + "nom_de_la_commune": "LE BUISSON DE CADOUIN", + "coordonnees_gps": [ + 44.8209697046, + 0.890058168742 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.890058168742, + 44.8209697046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1de31a08357f5d1caf56d16b3ddc750d22c1d94e", + "fields": { + "code_commune_insee": "24076", + "nom_de_la_commune": "CAMPAGNE", + "code_postal": "24260", + "coordonnees_gps": [ + 44.8978505909, + 0.977579666373 + ], + "libelle_d_acheminement": "CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.977579666373, + 44.8978505909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25b0ec3bd0b22fe314df0092a07c097cf0324722", + "fields": { + "code_commune_insee": "24077", + "nom_de_la_commune": "CAMPSEGRET", + "code_postal": "24140", + "coordonnees_gps": [ + 44.9423167258, + 0.567665908192 + ], + "libelle_d_acheminement": "CAMPSEGRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.567665908192, + 44.9423167258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a7e137996f3745b635d21b884214558529d44d2", + "fields": { + "code_commune_insee": "24081", + "nom_de_la_commune": "CARLUX", + "code_postal": "24370", + "coordonnees_gps": [ + 44.8869300675, + 1.35986365521 + ], + "libelle_d_acheminement": "CARLUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35986365521, + 44.8869300675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e40568ce2d33f47f9f5119780075bea84e7a11e3", + "fields": { + "code_commune_insee": "24086", + "nom_de_la_commune": "CASTELNAUD LA CHAPELLE", + "code_postal": "24250", + "coordonnees_gps": [ + 44.8017266303, + 1.13058711758 + ], + "libelle_d_acheminement": "CASTELNAUD LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13058711758, + 44.8017266303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cb73e0cea359be5647c7121573e9b284215e02d", + "fields": { + "code_commune_insee": "24089", + "nom_de_la_commune": "CAZOULES", + "code_postal": "24370", + "coordonnees_gps": [ + 44.882273616, + 1.42894748653 + ], + "libelle_d_acheminement": "CAZOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42894748653, + 44.882273616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00ed7dcb3a23b94998b3b6e66f2ca96bc4edb2c9", + "fields": { + "code_commune_insee": "24091", + "nom_de_la_commune": "CENAC ET ST JULIEN", + "code_postal": "24250", + "coordonnees_gps": [ + 44.7868370138, + 1.20346249044 + ], + "libelle_d_acheminement": "CENAC ET ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20346249044, + 44.7868370138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b11b490260a498f1b4e6c8a1874944853d2ae6e", + "fields": { + "code_commune_insee": "24098", + "nom_de_la_commune": "CHAMPCEVINEL", + "code_postal": "24750", + "coordonnees_gps": [ + 45.2212466708, + 0.725037549995 + ], + "libelle_d_acheminement": "CHAMPCEVINEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.725037549995, + 45.2212466708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c46cb7550499a75e58766d6d489784f151e4b6b", + "fields": { + "code_commune_insee": "24105", + "nom_de_la_commune": "CHAPDEUIL", + "code_postal": "24320", + "coordonnees_gps": [ + 45.3426145124, + 0.466888679679 + ], + "libelle_d_acheminement": "CHAPDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.466888679679, + 45.3426145124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e3f13019403c0a521139a423c841aab1fe82676", + "fields": { + "code_commune_insee": "24122", + "nom_de_la_commune": "CLADECH", + "code_postal": "24170", + "coordonnees_gps": [ + 44.808812009, + 1.07412405501 + ], + "libelle_d_acheminement": "CLADECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07412405501, + 44.808812009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25d5c59c119b0bf5fab59e01b835cf5ec1427572", + "fields": { + "code_commune_insee": "24123", + "nom_de_la_commune": "CLERMONT DE BEAUREGARD", + "code_postal": "24140", + "coordonnees_gps": [ + 44.9493110442, + 0.647710803163 + ], + "libelle_d_acheminement": "CLERMONT DE BEAUREGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.647710803163, + 44.9493110442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45ce899d8bbd4479777fdce0950acd9f5023c957", + "fields": { + "code_commune_insee": "24126", + "nom_de_la_commune": "COLOMBIER", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7822680004, + 0.517959139365 + ], + "libelle_d_acheminement": "COLOMBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.517959139365, + 44.7822680004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69d4d42a39aeafe3fc0dd0a0206532a9d7cc60c6", + "fields": { + "code_commune_insee": "24136", + "nom_de_la_commune": "COUBJOURS", + "code_postal": "24390", + "coordonnees_gps": [ + 45.2416866211, + 1.25356332891 + ], + "libelle_d_acheminement": "COUBJOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25356332891, + 45.2416866211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c925ffe0f73fcde89f47c9c0a3e00ee88144dac", + "fields": { + "code_commune_insee": "24144", + "nom_de_la_commune": "CREYSSAC", + "code_postal": "24350", + "coordonnees_gps": [ + 45.3128787513, + 0.549800150717 + ], + "libelle_d_acheminement": "CREYSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.549800150717, + 45.3128787513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff3efbb4776de8a9ca682ed2f02fdcf12e7f5b96", + "fields": { + "code_commune_insee": "24150", + "nom_de_la_commune": "DAGLAN", + "code_postal": "24250", + "coordonnees_gps": [ + 44.7481705464, + 1.18720141568 + ], + "libelle_d_acheminement": "DAGLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18720141568, + 44.7481705464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99574b4e774065c576164086fdca041f2694a9d9", + "fields": { + "code_commune_insee": "24155", + "nom_de_la_commune": "DOUVILLE", + "code_postal": "24140", + "coordonnees_gps": [ + 45.0019813607, + 0.595182446811 + ], + "libelle_d_acheminement": "DOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.595182446811, + 45.0019813607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5948c7d2841bc94f8d3a3f1961f4e17ac6ef469e", + "fields": { + "code_commune_insee": "24163", + "nom_de_la_commune": "ETOUARS", + "code_postal": "24360", + "coordonnees_gps": [ + 45.6088582273, + 0.615747812595 + ], + "libelle_d_acheminement": "ETOUARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.615747812595, + 45.6088582273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d41e9c76b41e25873d7fa781e905e471d6fffea", + "fields": { + "ligne_5": "MANAURIE", + "code_commune_insee": "24172", + "libelle_d_acheminement": "LES EYZIES", + "code_postal": "24620", + "nom_de_la_commune": "LES EYZIES", + "coordonnees_gps": [ + 44.9350703851, + 1.04035256381 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04035256381, + 44.9350703851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7512308432d1736abd88616ddb123f8eae8da111", + "fields": { + "code_commune_insee": "24174", + "nom_de_la_commune": "FANLAC", + "code_postal": "24290", + "coordonnees_gps": [ + 45.0690605544, + 1.09300790001 + ], + "libelle_d_acheminement": "FANLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09300790001, + 45.0690605544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "626edb0f40f19374cbee88489528dabc36cd9587", + "fields": { + "code_commune_insee": "24186", + "nom_de_la_commune": "FONROQUE", + "code_postal": "24500", + "coordonnees_gps": [ + 44.7047696483, + 0.40989488566 + ], + "libelle_d_acheminement": "FONROQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40989488566, + 44.7047696483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b7838776c9aa2c5845904c4d795b5dd4ff04778", + "fields": { + "code_commune_insee": "24199", + "nom_de_la_commune": "GOUT ROSSIGNOL", + "code_postal": "24320", + "coordonnees_gps": [ + 45.4163367159, + 0.40556165007 + ], + "libelle_d_acheminement": "GOUT ROSSIGNOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40556165007, + 45.4163367159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4b491b5bc2c7b1cd092f8025d6ea6cad202d416", + "fields": { + "code_commune_insee": "24208", + "nom_de_la_commune": "GRUN BORDAS", + "code_postal": "24380", + "coordonnees_gps": [ + 45.0461305125, + 0.642046080067 + ], + "libelle_d_acheminement": "GRUN BORDAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.642046080067, + 45.0461305125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "519308ea758ab79a7dfa0c0aa2441b20acfce359", + "fields": { + "code_commune_insee": "24218", + "nom_de_la_commune": "JUMILHAC LE GRAND", + "code_postal": "24630", + "coordonnees_gps": [ + 45.5051973113, + 1.08066464254 + ], + "libelle_d_acheminement": "JUMILHAC LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08066464254, + 45.5051973113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c70765d581ca9f35b4e4d35d76ba18e2d9abc37", + "fields": { + "code_commune_insee": "24223", + "nom_de_la_commune": "LALINDE", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8557735546, + 0.74158538401 + ], + "libelle_d_acheminement": "LALINDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74158538401, + 44.8557735546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b058e3179ef54b234f86520d15520e8287bc3d7", + "fields": { + "code_commune_insee": "24228", + "nom_de_la_commune": "LANQUAIS", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8142906911, + 0.668926310438 + ], + "libelle_d_acheminement": "LANQUAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.668926310438, + 44.8142906911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c1abb0523cc149cb87899d9dfe6d39c70e743b3", + "fields": { + "code_commune_insee": "24229", + "nom_de_la_commune": "LE LARDIN ST LAZARE", + "code_postal": "24570", + "coordonnees_gps": [ + 45.1363136207, + 1.23246240823 + ], + "libelle_d_acheminement": "LE LARDIN ST LAZARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23246240823, + 45.1363136207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b71e2474f6ed8eafa806b6434061eeef194c2985", + "fields": { + "code_commune_insee": "24232", + "nom_de_la_commune": "LAVAUR", + "code_postal": "24550", + "coordonnees_gps": [ + 44.6249045727, + 1.02459640897 + ], + "libelle_d_acheminement": "LAVAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02459640897, + 44.6249045727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f65134133c5a0a25c8158a04c2b3ef6f039419a6", + "fields": { + "code_commune_insee": "24236", + "nom_de_la_commune": "LEGUILLAC DE L AUCHE", + "code_postal": "24110", + "coordonnees_gps": [ + 45.1872234326, + 0.553068373507 + ], + "libelle_d_acheminement": "LEGUILLAC DE L AUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.553068373507, + 45.1872234326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfa72822589add3d361e76d6f4922d65b34a9ea8", + "fields": { + "code_commune_insee": "24240", + "nom_de_la_commune": "LIMEUIL", + "code_postal": "24510", + "coordonnees_gps": [ + 44.8968110738, + 0.895947678696 + ], + "libelle_d_acheminement": "LIMEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.895947678696, + 44.8968110738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd06b2aaa65421242f345df04773ef55779c9b68", + "fields": { + "code_commune_insee": "24241", + "nom_de_la_commune": "LIMEYRAT", + "code_postal": "24210", + "coordonnees_gps": [ + 45.1652433698, + 0.977335652741 + ], + "libelle_d_acheminement": "LIMEYRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.977335652741, + 45.1652433698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48e73a5bfbf81df11eac1f3c043d503b066c1f74", + "fields": { + "code_commune_insee": "24244", + "nom_de_la_commune": "LOLME", + "code_postal": "24540", + "coordonnees_gps": [ + 44.7104272337, + 0.846288269978 + ], + "libelle_d_acheminement": "LOLME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.846288269978, + 44.7104272337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a96021bef5d56963826c3b6ee26253e524f8c06c", + "fields": { + "code_commune_insee": "24262", + "nom_de_la_commune": "MAYAC", + "code_postal": "24420", + "coordonnees_gps": [ + 45.2792834899, + 0.951561736801 + ], + "libelle_d_acheminement": "MAYAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.951561736801, + 45.2792834899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6d33c705604507a054a1d536878fa36c60a89bb", + "fields": { + "code_commune_insee": "24266", + "nom_de_la_commune": "MENSIGNAC", + "code_postal": "24350", + "coordonnees_gps": [ + 45.221163286, + 0.55882117248 + ], + "libelle_d_acheminement": "MENSIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55882117248, + 45.221163286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d61bae0d3f1959a4c61cc98198dd267c940195bf", + "fields": { + "code_commune_insee": "24274", + "nom_de_la_commune": "MONBAZILLAC", + "code_postal": "24240", + "coordonnees_gps": [ + 44.7946831977, + 0.480958013552 + ], + "libelle_d_acheminement": "MONBAZILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.480958013552, + 44.7946831977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aea07ba5ebf6e166d450864c9adfa1b630215fb9", + "fields": { + "code_commune_insee": "24284", + "nom_de_la_commune": "MONTAGNAC D AUBEROCHE", + "code_postal": "24210", + "coordonnees_gps": [ + 45.1876962177, + 0.953868591338 + ], + "libelle_d_acheminement": "MONTAGNAC D AUBEROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.953868591338, + 45.1876962177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45199b50dfb746be5a6fdb69a223773a15a61aaf", + "fields": { + "code_commune_insee": "24300", + "nom_de_la_commune": "NABIRAT", + "code_postal": "24250", + "coordonnees_gps": [ + 44.7651982661, + 1.29075150159 + ], + "libelle_d_acheminement": "NABIRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29075150159, + 44.7651982661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aac239e13b0b56c84e06e4946028339768e9b29", + "fields": { + "code_commune_insee": "24305", + "nom_de_la_commune": "NANTHIAT", + "code_postal": "24800", + "coordonnees_gps": [ + 45.4081424618, + 0.985034812196 + ], + "libelle_d_acheminement": "NANTHIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.985034812196, + 45.4081424618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a5ab841aa1be795fb8f33959cf2efc083e52f8e", + "fields": { + "code_commune_insee": "24313", + "nom_de_la_commune": "ORLIAC", + "code_postal": "24170", + "coordonnees_gps": [ + 44.7131022876, + 1.06171600092 + ], + "libelle_d_acheminement": "ORLIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06171600092, + 44.7131022876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc21aa2d1b6087f4b33320943bb834d41cb6264d", + "fields": { + "code_commune_insee": "24320", + "nom_de_la_commune": "PAYZAC", + "code_postal": "24270", + "coordonnees_gps": [ + 45.4219045977, + 1.22669113048 + ], + "libelle_d_acheminement": "PAYZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22669113048, + 45.4219045977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb8ea1e3dafaf16c629dafbb719491718868c12b", + "fields": { + "code_commune_insee": "24321", + "nom_de_la_commune": "PAZAYAC", + "code_postal": "24120", + "coordonnees_gps": [ + 45.1245283179, + 1.37517151889 + ], + "libelle_d_acheminement": "PAZAYAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37517151889, + 45.1245283179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e363d9d4077752a8e065dd6a068205e002252c6e", + "fields": { + "code_commune_insee": "24325", + "nom_de_la_commune": "PEYRILLAC ET MILLAC", + "code_postal": "24370", + "coordonnees_gps": [ + 44.8912941721, + 1.4075345057 + ], + "libelle_d_acheminement": "PEYRILLAC ET MILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4075345057, + 44.8912941721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dfe2024b4db5d848e99efecac2b29ef08dd8db8", + "fields": { + "code_commune_insee": "24335", + "nom_de_la_commune": "PORT STE FOY ET PONCHAPT", + "code_postal": "33220", + "coordonnees_gps": [ + 44.8622535573, + 0.208854675888 + ], + "libelle_d_acheminement": "PORT STE FOY ET PONCHAPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.208854675888, + 44.8622535573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adffdbf3fcecb5ee45e363c091f1095aa3aa94a0", + "fields": { + "code_commune_insee": "24337", + "nom_de_la_commune": "PRATS DU PERIGORD", + "code_postal": "24550", + "coordonnees_gps": [ + 44.6850784903, + 1.06710028522 + ], + "libelle_d_acheminement": "PRATS DU PERIGORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06710028522, + 44.6850784903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69b26327e05dc4a3a817aea9eb3815a57ea0d017", + "fields": { + "code_commune_insee": "24341", + "nom_de_la_commune": "PROISSANS", + "code_postal": "24200", + "coordonnees_gps": [ + 44.9314130626, + 1.24431944303 + ], + "libelle_d_acheminement": "PROISSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24431944303, + 44.9314130626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d4814adc82b21ec1ac003c8a586920ac92dcbc1", + "fields": { + "code_commune_insee": "24350", + "nom_de_la_commune": "RAZAC SUR L ISLE", + "code_postal": "24430", + "coordonnees_gps": [ + 45.1605883444, + 0.615843501221 + ], + "libelle_d_acheminement": "RAZAC SUR L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.615843501221, + 45.1605883444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4246fbf99ac30f7ff61f02d87ae11d9f2b762a5", + "fields": { + "code_commune_insee": "24354", + "nom_de_la_commune": "LA ROCHE CHALAIS", + "code_postal": "24490", + "coordonnees_gps": [ + 45.1355934306, + 0.0550563261049 + ], + "libelle_d_acheminement": "LA ROCHE CHALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0550563261049, + 45.1355934306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66cacbd3ce8659a2eccbca82fb3f13c84db2e18e", + "fields": { + "ligne_5": "ST MICHEL DE RIVIERE", + "code_commune_insee": "24354", + "libelle_d_acheminement": "LA ROCHE CHALAIS", + "code_postal": "24490", + "nom_de_la_commune": "LA ROCHE CHALAIS", + "coordonnees_gps": [ + 45.1355934306, + 0.0550563261049 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0550563261049, + 45.1355934306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25101bbd3f7cb476fc298a703008281ddf6115f8", + "fields": { + "ligne_5": "ST CERNIN DE REILLAC", + "code_commune_insee": "24356", + "libelle_d_acheminement": "ROUFFIGNAC ST CERNIN DE REILHAC", + "code_postal": "24580", + "nom_de_la_commune": "ROUFFIGNAC ST CERNIN DE REILHAC", + "coordonnees_gps": [ + 45.0511195053, + 0.96628484329 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96628484329, + 45.0511195053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aea511831c4dd86b238a443c3383e79d3679f39c", + "fields": { + "code_commune_insee": "24359", + "nom_de_la_commune": "SADILLAC", + "code_postal": "24500", + "coordonnees_gps": [ + 44.729700474, + 0.490342737888 + ], + "libelle_d_acheminement": "SADILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.490342737888, + 44.729700474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b481ca24ac2901270fe1c8ec9f4297590f2d461b", + "fields": { + "ligne_5": "ST AMAND DE COLY", + "code_commune_insee": "24364", + "libelle_d_acheminement": "COLY ST AMAND", + "code_postal": "24290", + "nom_de_la_commune": "COLY ST AMAND", + "coordonnees_gps": [ + 45.0521923341, + 1.24653200545 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24653200545, + 45.0521923341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdda8471023694ca8058ce052bce5d7149bec69e", + "fields": { + "code_commune_insee": "24370", + "nom_de_la_commune": "ST ANTOINE DE BREUILH", + "code_postal": "24230", + "coordonnees_gps": [ + 44.8413756885, + 0.144778277474 + ], + "libelle_d_acheminement": "ST ANTOINE DE BREUILH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.144778277474, + 44.8413756885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6665c59b70293cde0e7fe14f1fee5f6297f45cc1", + "fields": { + "code_commune_insee": "24378", + "nom_de_la_commune": "ST AVIT RIVIERE", + "code_postal": "24540", + "coordonnees_gps": [ + 44.7401593829, + 0.906593699917 + ], + "libelle_d_acheminement": "ST AVIT RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.906593699917, + 44.7401593829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6857288409d3864e7e3c51335af71124e9ba81fc", + "fields": { + "code_commune_insee": "24380", + "nom_de_la_commune": "ST BARTHELEMY DE BELLEGARDE", + "code_postal": "24700", + "coordonnees_gps": [ + 45.0801047856, + 0.193152734323 + ], + "libelle_d_acheminement": "ST BARTHELEMY DE BELLEGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.193152734323, + 45.0801047856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0bf89c221da64f49606a0ca05b652c1fef148d7", + "fields": { + "code_commune_insee": "24393", + "nom_de_la_commune": "STE CROIX", + "code_postal": "24440", + "coordonnees_gps": [ + 44.7327105467, + 0.828547816645 + ], + "libelle_d_acheminement": "STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.828547816645, + 44.7327105467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef48ab1043474d37fa831269b8c12998f6290c17", + "fields": { + "code_commune_insee": "24394", + "nom_de_la_commune": "STE CROIX DE MAREUIL", + "code_postal": "24340", + "coordonnees_gps": [ + 45.4655946689, + 0.422846944104 + ], + "libelle_d_acheminement": "STE CROIX DE MAREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.422846944104, + 45.4655946689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d38c9950e0fa2ce0ae634f290bda094a6d56e4c4", + "fields": { + "code_commune_insee": "24398", + "nom_de_la_commune": "ST ESTEPHE", + "code_postal": "24360", + "coordonnees_gps": [ + 45.609832852, + 0.657993310994 + ], + "libelle_d_acheminement": "ST ESTEPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.657993310994, + 45.609832852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d43e5672ebdb7b359bc76b68e35951fb733939f", + "fields": { + "code_commune_insee": "24404", + "nom_de_la_commune": "ST FELIX DE REILLAC ET MORTEMART", + "code_postal": "24260", + "coordonnees_gps": [ + 45.0147855996, + 0.89152600187 + ], + "libelle_d_acheminement": "ST FELIX DE REILLAC ET MORTEMART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89152600187, + 45.0147855996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeae2fd8b1a19482308606479f6238b439ca6ae8", + "fields": { + "code_commune_insee": "24407", + "nom_de_la_commune": "STE FOY DE LONGAS", + "code_postal": "24510", + "coordonnees_gps": [ + 44.9286563489, + 0.755646260789 + ], + "libelle_d_acheminement": "STE FOY DE LONGAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.755646260789, + 44.9286563489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa0c94e5608e6d204b34d9439eadeee04eccd77e", + "fields": { + "code_commune_insee": "24409", + "nom_de_la_commune": "ST FRONT DE PRADOUX", + "code_postal": "24400", + "coordonnees_gps": [ + 45.0595554075, + 0.360152317983 + ], + "libelle_d_acheminement": "ST FRONT DE PRADOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.360152317983, + 45.0595554075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80564982c374ee0073992e0eb421db13b8bc1e04", + "fields": { + "code_commune_insee": "24413", + "nom_de_la_commune": "ST GEORGES BLANCANEIX", + "code_postal": "24130", + "coordonnees_gps": [ + 44.9178103997, + 0.356218213042 + ], + "libelle_d_acheminement": "ST GEORGES BLANCANEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.356218213042, + 44.9178103997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e57b613c7f13ebb167bf0ca6908d73a79e4cbad1", + "fields": { + "code_commune_insee": "24414", + "nom_de_la_commune": "ST GEORGES DE MONTCLARD", + "code_postal": "24140", + "coordonnees_gps": [ + 44.9331773121, + 0.610874864188 + ], + "libelle_d_acheminement": "ST GEORGES DE MONTCLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.610874864188, + 44.9331773121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9a886d53974625d1db0281f468d667008ad714c", + "fields": { + "code_commune_insee": "24417", + "nom_de_la_commune": "ST GERMAIN DES PRES", + "code_postal": "24160", + "coordonnees_gps": [ + 45.3458327209, + 1.00011342587 + ], + "libelle_d_acheminement": "ST GERMAIN DES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00011342587, + 45.3458327209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5de7f7459622dea0b02b0d7cea979ca1888ace86", + "fields": { + "ligne_5": "STE INNOCENCE", + "code_commune_insee": "24423", + "libelle_d_acheminement": "ST JULIEN INNOCENCE EULALIE", + "code_postal": "24500", + "nom_de_la_commune": "ST JULIEN INNOCENCE EULALIE", + "coordonnees_gps": [ + 44.7249335654, + 0.394228419824 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.394228419824, + 44.7249335654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c034e5f686c3215a93989295353b7e6e715e5ab5", + "fields": { + "code_commune_insee": "24446", + "nom_de_la_commune": "ST MARCORY", + "code_postal": "24540", + "coordonnees_gps": [ + 44.7229809189, + 0.927966166506 + ], + "libelle_d_acheminement": "ST MARCORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.927966166506, + 44.7229809189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c5d7983c3efc3fcda982891288ee55b0c9d8686", + "fields": { + "code_commune_insee": "24449", + "nom_de_la_commune": "ST MARTIAL D ARTENSET", + "code_postal": "24700", + "coordonnees_gps": [ + 45.0016039267, + 0.217039600164 + ], + "libelle_d_acheminement": "ST MARTIAL D ARTENSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.217039600164, + 45.0016039267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "048d62825cdc122a336399d5e9a28bbc44b230f7", + "fields": { + "code_commune_insee": "24458", + "nom_de_la_commune": "ST MARTIN LE PIN", + "code_postal": "24300", + "coordonnees_gps": [ + 45.552556707, + 0.625868911507 + ], + "libelle_d_acheminement": "ST MARTIN LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.625868911507, + 45.552556707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56bfc4fc5097aaf75200fe65f6b50eec55a2f269", + "fields": { + "code_commune_insee": "24461", + "nom_de_la_commune": "ST MEARD DE GURCON", + "code_postal": "24610", + "coordonnees_gps": [ + 44.9112714239, + 0.177925010262 + ], + "libelle_d_acheminement": "ST MEARD DE GURCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.177925010262, + 44.9112714239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7138cb8a622673d469edf121333faaa48400f1a1", + "fields": { + "code_commune_insee": "24463", + "nom_de_la_commune": "ST MEDARD D EXCIDEUIL", + "code_postal": "24160", + "coordonnees_gps": [ + 45.3470023438, + 1.0861340351 + ], + "libelle_d_acheminement": "ST MEDARD D EXCIDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0861340351, + 45.3470023438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3b10e02fe630ec865bcb91759f963a7ec567a96", + "fields": { + "code_commune_insee": "24473", + "nom_de_la_commune": "STE ORSE", + "code_postal": "24210", + "coordonnees_gps": [ + 45.2054528162, + 1.07317374722 + ], + "libelle_d_acheminement": "STE ORSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07317374722, + 45.2054528162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99516ca00f3d1d82178e000580d2df551369097c", + "fields": { + "code_commune_insee": "24478", + "nom_de_la_commune": "ST PARDOUX ET VIELVIC", + "code_postal": "24170", + "coordonnees_gps": [ + 44.7703624875, + 0.96095833872 + ], + "libelle_d_acheminement": "ST PARDOUX ET VIELVIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96095833872, + 44.7703624875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "180b4f65521945660726691f097369b74f7b2b36", + "fields": { + "code_commune_insee": "24484", + "nom_de_la_commune": "ST PIERRE DE CHIGNAC", + "code_postal": "24330", + "coordonnees_gps": [ + 45.110891602, + 0.863217911356 + ], + "libelle_d_acheminement": "ST PIERRE DE CHIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.863217911356, + 45.110891602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6be6623dde889af408189e0b18781ebc0a1188a2", + "fields": { + "code_commune_insee": "24488", + "nom_de_la_commune": "ST POMPONT", + "code_postal": "24170", + "coordonnees_gps": [ + 44.7148110231, + 1.13582118282 + ], + "libelle_d_acheminement": "ST POMPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13582118282, + 44.7148110231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efa8cf0035963d64b3d57e8b84997f987c025a3a", + "fields": { + "code_commune_insee": "24489", + "nom_de_la_commune": "ST PRIEST LES FOUGERES", + "code_postal": "24450", + "coordonnees_gps": [ + 45.5411692729, + 1.02433031105 + ], + "libelle_d_acheminement": "ST PRIEST LES FOUGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02433031105, + 45.5411692729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f76e5ade1abca6bb76f93df49a19a300e283a7b", + "fields": { + "ligne_5": "ST PRIVAT DES PRES", + "code_commune_insee": "24490", + "libelle_d_acheminement": "ST PRIVAT EN PERIGORD", + "code_postal": "24410", + "nom_de_la_commune": "ST PRIVAT EN PERIGORD", + "coordonnees_gps": [ + 45.2186240618, + 0.192239513618 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.192239513618, + 45.2186240618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a93d8f2a40c25664a1b567b595b4c9fa687f683b", + "fields": { + "code_commune_insee": "24491", + "nom_de_la_commune": "ST RABIER", + "code_postal": "24210", + "coordonnees_gps": [ + 45.1748183664, + 1.14559506206 + ], + "libelle_d_acheminement": "ST RABIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14559506206, + 45.1748183664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "835fa495d5d121a571474a1fa76333d7dfae51ce", + "fields": { + "code_commune_insee": "24499", + "nom_de_la_commune": "ST SAUVEUR", + "code_postal": "24520", + "coordonnees_gps": [ + 44.8734911381, + 0.583950004245 + ], + "libelle_d_acheminement": "ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.583950004245, + 44.8734911381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acd9297b53c81cd13a142639a07d2046973563a5", + "fields": { + "code_commune_insee": "24502", + "nom_de_la_commune": "ST SEVERIN D ESTISSAC", + "code_postal": "24190", + "coordonnees_gps": [ + 45.0508855162, + 0.473469569395 + ], + "libelle_d_acheminement": "ST SEVERIN D ESTISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.473469569395, + 45.0508855162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c92c844aa2830c8f383b7ace3cc1962b528234f", + "fields": { + "code_commune_insee": "24505", + "nom_de_la_commune": "ST SULPICE D EXCIDEUIL", + "code_postal": "24800", + "coordonnees_gps": [ + 45.3955893974, + 1.01725751316 + ], + "libelle_d_acheminement": "ST SULPICE D EXCIDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01725751316, + 45.3955893974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7dcabb08cfffaac083f3133de14a2d612708591", + "fields": { + "code_commune_insee": "24507", + "nom_de_la_commune": "STE TRIE", + "code_postal": "24160", + "coordonnees_gps": [ + 45.2931649261, + 1.21244167771 + ], + "libelle_d_acheminement": "STE TRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21244167771, + 45.2931649261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a245901a15f41185e0e3acec4e926f5a76b5441c", + "fields": { + "code_commune_insee": "24508", + "nom_de_la_commune": "ST VICTOR", + "code_postal": "24350", + "coordonnees_gps": [ + 45.2628084047, + 0.442634663994 + ], + "libelle_d_acheminement": "ST VICTOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.442634663994, + 45.2628084047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acbd81c97ab8c89ab773146493c67d74798a502f", + "fields": { + "code_commune_insee": "24512", + "nom_de_la_commune": "ST VINCENT LE PALUEL", + "code_postal": "24200", + "coordonnees_gps": [ + 44.8833667708, + 1.27542467394 + ], + "libelle_d_acheminement": "ST VINCENT LE PALUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27542467394, + 44.8833667708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5bbf5360d4dc1e0bb68cf4f348607ae6797aa34", + "fields": { + "code_commune_insee": "24515", + "nom_de_la_commune": "SALAGNAC", + "code_postal": "24160", + "coordonnees_gps": [ + 45.3155697873, + 1.21187713732 + ], + "libelle_d_acheminement": "SALAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21187713732, + 45.3155697873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a285bd064d00232bbed134506955b7ffb9169231", + "fields": { + "ligne_5": "CLAIRVIVRE", + "code_commune_insee": "24515", + "libelle_d_acheminement": "SALAGNAC", + "code_postal": "24160", + "nom_de_la_commune": "SALAGNAC", + "coordonnees_gps": [ + 45.3155697873, + 1.21187713732 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21187713732, + 45.3155697873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78326a950618e582d3d8e80ed121707267cbddd8", + "fields": { + "code_commune_insee": "24532", + "nom_de_la_commune": "SERRES ET MONTGUYARD", + "code_postal": "24500", + "coordonnees_gps": [ + 44.6757898351, + 0.44420320019 + ], + "libelle_d_acheminement": "SERRES ET MONTGUYARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.44420320019, + 44.6757898351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "195739cd73a051a872d5a9476bedb478ce237dbc", + "fields": { + "code_commune_insee": "24537", + "nom_de_la_commune": "SIORAC DE RIBERAC", + "code_postal": "24600", + "coordonnees_gps": [ + 45.1835928036, + 0.346380237367 + ], + "libelle_d_acheminement": "SIORAC DE RIBERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.346380237367, + 45.1835928036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b969b094e34ac4f9caf8e7f40bc3ab045cfc25e3", + "fields": { + "code_commune_insee": "24546", + "nom_de_la_commune": "TEMPLE LAGUYON", + "code_postal": "24390", + "coordonnees_gps": [ + 45.231240965, + 1.09729455909 + ], + "libelle_d_acheminement": "TEMPLE LAGUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09729455909, + 45.231240965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f8fc6b2ec0cdf63894a1e6fc83a8c9dc3d52f0c", + "fields": { + "code_commune_insee": "24547", + "nom_de_la_commune": "TERRASSON LAVILLEDIEU", + "code_postal": "24120", + "coordonnees_gps": [ + 45.1181463598, + 1.29916463367 + ], + "libelle_d_acheminement": "TERRASSON LAVILLEDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29916463367, + 45.1181463598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "165c952e06214ce1d039fcdc75249d1abb91f7be", + "fields": { + "code_commune_insee": "24560", + "nom_de_la_commune": "URVAL", + "code_postal": "24480", + "coordonnees_gps": [ + 44.7991868804, + 0.940823739952 + ], + "libelle_d_acheminement": "URVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.940823739952, + 44.7991868804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26e061c919cb86f746ba7f65fbd068e3771d9ac3", + "fields": { + "code_commune_insee": "24565", + "nom_de_la_commune": "VARAIGNES", + "code_postal": "24360", + "coordonnees_gps": [ + 45.6108636989, + 0.530300494504 + ], + "libelle_d_acheminement": "VARAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.530300494504, + 45.6108636989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31c5cd36b21177cc16201db58d969ac2bab6bcca", + "fields": { + "code_commune_insee": "24570", + "nom_de_la_commune": "VERDON", + "code_postal": "24520", + "coordonnees_gps": [ + 44.8143389523, + 0.630459003039 + ], + "libelle_d_acheminement": "VERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.630459003039, + 44.8143389523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fe52d9e9fb9c0d5206828cea9e2c567e4ec87cd", + "fields": { + "code_commune_insee": "24581", + "nom_de_la_commune": "VILLAMBLARD", + "code_postal": "24140", + "coordonnees_gps": [ + 45.0273572281, + 0.557956026355 + ], + "libelle_d_acheminement": "VILLAMBLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.557956026355, + 45.0273572281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23393be764e012c29ba6d2fed2d42542ff6f3ccb", + "fields": { + "code_commune_insee": "24584", + "nom_de_la_commune": "VILLEFRANCHE DE LONCHAT", + "code_postal": "24610", + "coordonnees_gps": [ + 44.9555044342, + 0.0588917910628 + ], + "libelle_d_acheminement": "VILLEFRANCHE DE LONCHAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0588917910628, + 44.9555044342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7597ad1c069125cf296b8a3911c04df944165df", + "fields": { + "code_commune_insee": "24586", + "nom_de_la_commune": "VILLETOUREIX", + "code_postal": "24600", + "coordonnees_gps": [ + 45.2729009279, + 0.359083456128 + ], + "libelle_d_acheminement": "VILLETOUREIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.359083456128, + 45.2729009279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eed1ca9ba5e53128adc97a0c1fc5df94c2a5f7b", + "fields": { + "code_commune_insee": "25003", + "nom_de_la_commune": "ABBENANS", + "code_postal": "25340", + "coordonnees_gps": [ + 47.4960879279, + 6.45060175112 + ], + "libelle_d_acheminement": "ABBENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45060175112, + 47.4960879279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed6ea1d93f104353036aa44d541a4eb0f283b44a", + "fields": { + "code_commune_insee": "25004", + "nom_de_la_commune": "ABBEVILLERS", + "code_postal": "25310", + "coordonnees_gps": [ + 47.427439192, + 6.92162186226 + ], + "libelle_d_acheminement": "ABBEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92162186226, + 47.427439192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87bbbe601e96edd772072a9ab60b992f363e20bb", + "fields": { + "code_commune_insee": "25013", + "nom_de_la_commune": "ALLONDANS", + "code_postal": "25550", + "coordonnees_gps": [ + 47.5223475188, + 6.75133390116 + ], + "libelle_d_acheminement": "ALLONDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75133390116, + 47.5223475188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60a314442f2eaf2fcf4d8ddd8ca409be4544eb79", + "fields": { + "code_commune_insee": "25017", + "nom_de_la_commune": "AMONDANS", + "code_postal": "25330", + "coordonnees_gps": [ + 47.0715292841, + 6.03510768705 + ], + "libelle_d_acheminement": "AMONDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03510768705, + 47.0715292841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed04168a4d8a4cd521cb45004b8c8fa122b95dfb", + "fields": { + "code_commune_insee": "25018", + "nom_de_la_commune": "ANTEUIL", + "code_postal": "25340", + "coordonnees_gps": [ + 47.3758227575, + 6.57605269789 + ], + "libelle_d_acheminement": "ANTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57605269789, + 47.3758227575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdcc62bb6c5d60927ac3bf8a4396e666d6779048", + "fields": { + "code_commune_insee": "25030", + "nom_de_la_commune": "AUDEUX", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2584882134, + 5.8691323825 + ], + "libelle_d_acheminement": "AUDEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8691323825, + 47.2584882134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e79d9bf8e40f154102b642e2346c1e3b70009d6", + "fields": { + "ligne_5": "AUXON DESSOUS", + "code_commune_insee": "25035", + "libelle_d_acheminement": "LES AUXONS", + "code_postal": "25870", + "nom_de_la_commune": "LES AUXONS", + "coordonnees_gps": [ + 47.3044311346, + 5.9681629274 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9681629274, + 47.3044311346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa7ca957e40bb987d97c2ef15e19683d4993ff48", + "fields": { + "code_commune_insee": "25039", + "nom_de_la_commune": "AVOUDREY", + "code_postal": "25690", + "coordonnees_gps": [ + 47.1384879691, + 6.43337259012 + ], + "libelle_d_acheminement": "AVOUDREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43337259012, + 47.1384879691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a890ee9473d7de0b46cf411afecbc8370523b875", + "fields": { + "code_commune_insee": "25040", + "nom_de_la_commune": "BADEVEL", + "code_postal": "25490", + "coordonnees_gps": [ + 47.5014450746, + 6.93860867226 + ], + "libelle_d_acheminement": "BADEVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93860867226, + 47.5014450746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0e96479e8845c1587929423eebb33f27d52849f", + "fields": { + "code_commune_insee": "25041", + "nom_de_la_commune": "BANNANS", + "code_postal": "25560", + "coordonnees_gps": [ + 46.899147439, + 6.23727233424 + ], + "libelle_d_acheminement": "BANNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23727233424, + 46.899147439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afd0337b4c1bba833957428183acf59762782467", + "fields": { + "code_commune_insee": "25042", + "nom_de_la_commune": "LE BARBOUX", + "code_postal": "25210", + "coordonnees_gps": [ + 47.1217397037, + 6.72580320278 + ], + "libelle_d_acheminement": "LE BARBOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72580320278, + 47.1217397037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac9e73919e141770976a35116e761330f43661bd", + "fields": { + "code_commune_insee": "25044", + "nom_de_la_commune": "BARTHERANS", + "code_postal": "25440", + "coordonnees_gps": [ + 47.03684296, + 5.9254921225 + ], + "libelle_d_acheminement": "BARTHERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9254921225, + 47.03684296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07c05cb5c340102b3e5e15ebdcc6823d027d9623", + "fields": { + "code_commune_insee": "25045", + "nom_de_la_commune": "BATTENANS LES MINES", + "code_postal": "25640", + "coordonnees_gps": [ + 47.4052335763, + 6.27229432169 + ], + "libelle_d_acheminement": "BATTENANS LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27229432169, + 47.4052335763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "740a33fa336dd191ecde72c8a1c9f510e0d75803", + "fields": { + "ligne_5": "CHAMPVANS LES BAUME", + "code_commune_insee": "25047", + "libelle_d_acheminement": "BAUME LES DAMES", + "code_postal": "25110", + "nom_de_la_commune": "BAUME LES DAMES", + "coordonnees_gps": [ + 47.3544401776, + 6.34345370275 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34345370275, + 47.3544401776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d974c1a03b7917b5460fa8ecea8bcb5f3d718f7", + "fields": { + "code_commune_insee": "25049", + "nom_de_la_commune": "BELFAYS", + "code_postal": "25470", + "coordonnees_gps": [ + 47.2593740587, + 6.90390396771 + ], + "libelle_d_acheminement": "BELFAYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90390396771, + 47.2593740587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e15496a99973a63f1cf70abd857ef5a7c83a9be5", + "fields": { + "code_commune_insee": "25052", + "nom_de_la_commune": "BELMONT", + "code_postal": "25530", + "coordonnees_gps": [ + 47.2190028003, + 6.36198595062 + ], + "libelle_d_acheminement": "BELMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36198595062, + 47.2190028003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5360be5fc2902f05bf50153ec5930888c1e308d0", + "fields": { + "code_commune_insee": "25062", + "nom_de_la_commune": "LE BIZOT", + "code_postal": "25210", + "coordonnees_gps": [ + 47.1364585701, + 6.67291290642 + ], + "libelle_d_acheminement": "LE BIZOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67291290642, + 47.1364585701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00b25adca8c2c5ec7cf74d80c95f6c475e8323f0", + "fields": { + "code_commune_insee": "25063", + "nom_de_la_commune": "BLAMONT", + "code_postal": "25310", + "coordonnees_gps": [ + 47.3898085939, + 6.85552174846 + ], + "libelle_d_acheminement": "BLAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85552174846, + 47.3898085939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb3a80ef8fbe45d219263a0a7d5de593d451866f", + "fields": { + "code_commune_insee": "25084", + "nom_de_la_commune": "BOUSSIERES", + "code_postal": "25320", + "coordonnees_gps": [ + 47.1514507148, + 5.90144299782 + ], + "libelle_d_acheminement": "BOUSSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90144299782, + 47.1514507148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "428443e898474653ab0e7df20b41998a2c4b4e2b", + "fields": { + "code_commune_insee": "25094", + "nom_de_la_commune": "BRETIGNEY NOTRE DAME", + "code_postal": "25110", + "coordonnees_gps": [ + 47.309289583, + 6.30363374981 + ], + "libelle_d_acheminement": "BRETIGNEY NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30363374981, + 47.309289583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43c92d0b7d1935f640d51b1e82598dd0af02602f", + "fields": { + "code_commune_insee": "25101", + "nom_de_la_commune": "BURGILLE", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2616950181, + 5.7819919512 + ], + "libelle_d_acheminement": "BURGILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7819919512, + 47.2616950181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ddb1ecc2cb09a0c57a5f46ab9dceabc76efe645", + "fields": { + "code_commune_insee": "25102", + "nom_de_la_commune": "BURNEVILLERS", + "code_postal": "25470", + "coordonnees_gps": [ + 47.3323007347, + 7.02071000712 + ], + "libelle_d_acheminement": "BURNEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02071000712, + 47.3323007347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc0be9d2e99d2aecdeaf1d5ed7588fb11bf40a23", + "fields": { + "code_commune_insee": "25105", + "nom_de_la_commune": "BYANS SUR DOUBS", + "code_postal": "25320", + "coordonnees_gps": [ + 47.1129773426, + 5.84743903869 + ], + "libelle_d_acheminement": "BYANS SUR DOUBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84743903869, + 47.1129773426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b96f9f2416a394b87e847f42ab72074d1695a101", + "fields": { + "code_commune_insee": "25106", + "nom_de_la_commune": "CADEMENE", + "code_postal": "25290", + "coordonnees_gps": [ + 47.095187126, + 6.02752897644 + ], + "libelle_d_acheminement": "CADEMENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02752897644, + 47.095187126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f9d5aa77c1d46d61928d48148ea4b7a717ab9c8", + "fields": { + "code_commune_insee": "25115", + "nom_de_la_commune": "CHAMPAGNEY", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2553049807, + 5.89205974379 + ], + "libelle_d_acheminement": "CHAMPAGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89205974379, + 47.2553049807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c68b94d974b0d2667e96cc7ab248f356cf01d0d", + "fields": { + "code_commune_insee": "25130", + "nom_de_la_commune": "CHATEAUVIEUX LES FOSSES", + "code_postal": "25840", + "coordonnees_gps": [ + 47.0577014117, + 6.20017409479 + ], + "libelle_d_acheminement": "CHATEAUVIEUX LES FOSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20017409479, + 47.0577014117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2b85152521ca67d818e4c59f93f24ffa309fc33", + "fields": { + "code_commune_insee": "25131", + "nom_de_la_commune": "CHATELBLANC", + "code_postal": "25240", + "coordonnees_gps": [ + 46.6650467334, + 6.10624023722 + ], + "libelle_d_acheminement": "CHATELBLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10624023722, + 46.6650467334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "481c875468d5eff0cdeec5e62faa8d1e22aabc24", + "fields": { + "code_commune_insee": "25138", + "nom_de_la_commune": "LES TERRES DE CHAUX", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3166269465, + 6.72873465263 + ], + "libelle_d_acheminement": "LES TERRES DE CHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72873465263, + 47.3166269465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bbcaf1b4d0d9ddfa5140a9a44cfdedca0115a23", + "fields": { + "code_commune_insee": "25139", + "nom_de_la_commune": "LA CHAUX", + "code_postal": "25650", + "coordonnees_gps": [ + 47.0192694963, + 6.41470158275 + ], + "libelle_d_acheminement": "LA CHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41470158275, + 47.0192694963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2e242b14de19f282f4db9cabfb4044aefcb6c23", + "fields": { + "code_commune_insee": "25150", + "nom_de_la_commune": "CHEVIGNEY SUR L OGNON", + "code_postal": "25170", + "coordonnees_gps": [ + 47.293137629, + 5.84651506697 + ], + "libelle_d_acheminement": "CHEVIGNEY SUR L OGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84651506697, + 47.293137629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c40c7b3e01f53cba052527e187712684f51a050d", + "fields": { + "code_commune_insee": "25157", + "nom_de_la_commune": "LA CLUSE ET MIJOUX", + "code_postal": "25300", + "coordonnees_gps": [ + 46.8683471293, + 6.39291993544 + ], + "libelle_d_acheminement": "LA CLUSE ET MIJOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39291993544, + 46.8683471293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7572499ea890aebc0d44dbc27793e8fa7f524025", + "fields": { + "code_commune_insee": "25159", + "nom_de_la_commune": "COLOMBIER FONTAINE", + "code_postal": "25260", + "coordonnees_gps": [ + 47.4473299299, + 6.69006728254 + ], + "libelle_d_acheminement": "COLOMBIER FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69006728254, + 47.4473299299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceee71223b4bec1addd6499134c93f3ef2a8a0b8", + "fields": { + "code_commune_insee": "25164", + "nom_de_la_commune": "CORCONDRAY", + "code_postal": "25410", + "coordonnees_gps": [ + 47.2259805171, + 5.8274819544 + ], + "libelle_d_acheminement": "CORCONDRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8274819544, + 47.2259805171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bae7ad31d842c557389a495c4e65e9ef4e93977", + "fields": { + "code_commune_insee": "25166", + "nom_de_la_commune": "COTEBRUNE", + "code_postal": "25360", + "coordonnees_gps": [ + 47.251986988, + 6.31062707998 + ], + "libelle_d_acheminement": "COTEBRUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31062707998, + 47.251986988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a66dfaa740111206a2f86039bdbe2d9bdb024d4", + "fields": { + "code_commune_insee": "25172", + "nom_de_la_commune": "COURCHAPON", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2583713466, + 5.75169248956 + ], + "libelle_d_acheminement": "COURCHAPON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75169248956, + 47.2583713466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acdc3a6386d4a2b22648aa71b6b5bd9c54b7418b", + "fields": { + "code_commune_insee": "25173", + "nom_de_la_commune": "COUR ST MAURICE", + "code_postal": "25380", + "coordonnees_gps": [ + 47.2638180328, + 6.70989733057 + ], + "libelle_d_acheminement": "COUR ST MAURICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70989733057, + 47.2638180328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bacd6d37d5637658e479e8ece30313a677af770", + "fields": { + "code_commune_insee": "25175", + "nom_de_la_commune": "COURTETAIN ET SALANS", + "code_postal": "25530", + "coordonnees_gps": [ + 47.2598307803, + 6.426501842 + ], + "libelle_d_acheminement": "COURTETAIN ET SALANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.426501842, + 47.2598307803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c190435f9e92830535cf3205e72fff0563c2575", + "fields": { + "code_commune_insee": "25186", + "nom_de_la_commune": "CUSSEY SUR L OGNON", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3277456972, + 5.94001490559 + ], + "libelle_d_acheminement": "CUSSEY SUR L OGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94001490559, + 47.3277456972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d7a6edcd72fe244fd89ea44c823ac5aed397cac", + "fields": { + "code_commune_insee": "25187", + "nom_de_la_commune": "DAMBELIN", + "code_postal": "25150", + "coordonnees_gps": [ + 47.3691799616, + 6.66774947853 + ], + "libelle_d_acheminement": "DAMBELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66774947853, + 47.3691799616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8899a1f74b9a81d552c82a848b01239b733e4ac6", + "fields": { + "code_commune_insee": "25192", + "nom_de_la_commune": "DAMPJOUX", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3387302294, + 6.74818152982 + ], + "libelle_d_acheminement": "DAMPJOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74818152982, + 47.3387302294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80316513cf73b971897200e6a367a2d27270a2cb", + "fields": { + "code_commune_insee": "25195", + "nom_de_la_commune": "DANNEMARIE SUR CRETE", + "code_postal": "25410", + "coordonnees_gps": [ + 47.2062426754, + 5.86495393288 + ], + "libelle_d_acheminement": "DANNEMARIE SUR CRETE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86495393288, + 47.2062426754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3553c6e45d469a2a701580dbb8d562f31f342c6f", + "fields": { + "code_commune_insee": "25198", + "nom_de_la_commune": "DESANDANS", + "code_postal": "25750", + "coordonnees_gps": [ + 47.5387786208, + 6.67184461827 + ], + "libelle_d_acheminement": "DESANDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67184461827, + 47.5387786208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29e75e717831cdb1ef6f59c0dc5d5cf065c1c8a8", + "fields": { + "code_commune_insee": "25199", + "nom_de_la_commune": "DESERVILLERS", + "code_postal": "25330", + "coordonnees_gps": [ + 46.999299694, + 6.0729610264 + ], + "libelle_d_acheminement": "DESERVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0729610264, + 46.999299694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "327978f87836cef45ea29d7d0d7789cf39386745", + "fields": { + "code_commune_insee": "25200", + "nom_de_la_commune": "DEVECEY", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3240979046, + 6.01735548201 + ], + "libelle_d_acheminement": "DEVECEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01735548201, + 47.3240979046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef3ebadbfe7ae7e0c2cfe6ef2fe067068de114b4", + "fields": { + "code_commune_insee": "25202", + "nom_de_la_commune": "DOMPIERRE LES TILLEULS", + "code_postal": "25560", + "coordonnees_gps": [ + 46.8866090769, + 6.16384701034 + ], + "libelle_d_acheminement": "DOMPIERRE LES TILLEULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16384701034, + 46.8866090769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2401311b7679e4cfe80e3e685afc75f1c0a99fad", + "fields": { + "code_commune_insee": "25203", + "nom_de_la_commune": "DOMPREL", + "code_postal": "25510", + "coordonnees_gps": [ + 47.1975252218, + 6.4793837741 + ], + "libelle_d_acheminement": "DOMPREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4793837741, + 47.1975252218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "768b3952725a283c429b01c6f84824dd0301611d", + "fields": { + "code_commune_insee": "25209", + "nom_de_la_commune": "ECHAY", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0470107099, + 5.94984491488 + ], + "libelle_d_acheminement": "ECHAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94984491488, + 47.0470107099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c58187ab6c531c5fb61994aac638c052bbe48117", + "fields": { + "code_commune_insee": "25210", + "nom_de_la_commune": "ECHENANS", + "code_postal": "25550", + "coordonnees_gps": [ + 47.527383331, + 6.69266176707 + ], + "libelle_d_acheminement": "ECHENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69266176707, + 47.527383331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aec0f63f9a5c08c4aa701ba2dfb8966a9d6eb7b8", + "fields": { + "code_commune_insee": "25212", + "nom_de_la_commune": "ECOLE VALENTIN", + "code_postal": "25480", + "coordonnees_gps": [ + 47.2744126676, + 5.98881788092 + ], + "libelle_d_acheminement": "ECOLE VALENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98881788092, + 47.2744126676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "894f33506e668be404572c7f29feb72eb471f63c", + "fields": { + "code_commune_insee": "25214", + "nom_de_la_commune": "ECOT", + "code_postal": "25150", + "coordonnees_gps": [ + 47.4230386547, + 6.73233189748 + ], + "libelle_d_acheminement": "ECOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73233189748, + 47.4230386547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71c3d7322a03366205ee4b0aebb7cf0f2091484a", + "fields": { + "code_commune_insee": "25219", + "nom_de_la_commune": "EPENOY", + "code_postal": "25800", + "coordonnees_gps": [ + 47.1339254136, + 6.38483756366 + ], + "libelle_d_acheminement": "EPENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38483756366, + 47.1339254136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "424968966766c6e2e0815d419ba713892259a2e5", + "fields": { + "code_commune_insee": "25227", + "nom_de_la_commune": "ETRAY", + "code_postal": "25800", + "coordonnees_gps": [ + 47.1243273869, + 6.33533326186 + ], + "libelle_d_acheminement": "ETRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33533326186, + 47.1243273869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8be6040cbdd8d15c95e5cbc7058a43577e1bef7", + "fields": { + "code_commune_insee": "25231", + "nom_de_la_commune": "EYSSON", + "code_postal": "25530", + "coordonnees_gps": [ + 47.2027293841, + 6.4306951805 + ], + "libelle_d_acheminement": "EYSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4306951805, + 47.2027293841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f53de9822bc552d75a1f52fad6759fa8b956cb8", + "fields": { + "code_commune_insee": "25232", + "nom_de_la_commune": "FAIMBE", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4837994752, + 6.61593943088 + ], + "libelle_d_acheminement": "FAIMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61593943088, + 47.4837994752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ce9108b3e31d006840923009e77ead09374ada1", + "fields": { + "code_commune_insee": "25238", + "nom_de_la_commune": "FESSEVILLERS", + "code_postal": "25470", + "coordonnees_gps": [ + 47.2807563461, + 6.91972627259 + ], + "libelle_d_acheminement": "FESSEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91972627259, + 47.2807563461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d8e496f0dbd006a6854d733b992b86c79ab926c", + "fields": { + "code_commune_insee": "25240", + "nom_de_la_commune": "LES FINS", + "code_postal": "25500", + "coordonnees_gps": [ + 47.0783776419, + 6.62882589619 + ], + "libelle_d_acheminement": "LES FINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62882589619, + 47.0783776419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f81638cc2977160ef5c6b6940892b3089ec5d23b", + "fields": { + "code_commune_insee": "25247", + "nom_de_la_commune": "FONTENELLE MONTBY", + "code_postal": "25340", + "coordonnees_gps": [ + 47.4482472127, + 6.41103507401 + ], + "libelle_d_acheminement": "FONTENELLE MONTBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41103507401, + 47.4482472127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d4d57007ea1b0ab32a89121fd9bfcd2007dd77c", + "fields": { + "code_commune_insee": "25248", + "nom_de_la_commune": "LES FONTENELLES", + "code_postal": "25210", + "coordonnees_gps": [ + 47.1921428841, + 6.75410194074 + ], + "libelle_d_acheminement": "LES FONTENELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75410194074, + 47.1921428841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8aa3806cc9e774052d39e3b2ad556657aac6dffa", + "fields": { + "code_commune_insee": "25249", + "nom_de_la_commune": "FONTENOTTE", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3757047558, + 6.31361871512 + ], + "libelle_d_acheminement": "FONTENOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31361871512, + 47.3757047558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a24dbdea9914b5b84938ab3d7b09cf8864fd94a0", + "fields": { + "code_commune_insee": "25258", + "nom_de_la_commune": "FRANOIS", + "code_postal": "25770", + "coordonnees_gps": [ + 47.2253616069, + 5.92497161799 + ], + "libelle_d_acheminement": "FRANOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92497161799, + 47.2253616069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2ae838759c8d59ec6a693366a4176cfa5f8bdc4", + "fields": { + "code_commune_insee": "25259", + "nom_de_la_commune": "FRASNE", + "code_postal": "25560", + "coordonnees_gps": [ + 46.852012619, + 6.14605787966 + ], + "libelle_d_acheminement": "FRASNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14605787966, + 46.852012619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85ffe5a14b99ceab75f75a6331084a4c64c9a55d", + "fields": { + "code_commune_insee": "25261", + "nom_de_la_commune": "FROIDEVAUX", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3004945102, + 6.69275819676 + ], + "libelle_d_acheminement": "FROIDEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69275819676, + 47.3004945102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a895785160ffda5b3a9480e92f5172d872f6fd72", + "fields": { + "code_commune_insee": "25265", + "nom_de_la_commune": "GENEUILLE", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3201113238, + 5.97104762863 + ], + "libelle_d_acheminement": "GENEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97104762863, + 47.3201113238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33fb6805dc7a818d39936fbd60978e58944fc305", + "fields": { + "code_commune_insee": "25271", + "nom_de_la_commune": "GILLEY", + "code_postal": "25650", + "coordonnees_gps": [ + 47.0543794362, + 6.48814154004 + ], + "libelle_d_acheminement": "GILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48814154004, + 47.0543794362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3849c3fa285c66f5ca20bd652e1e46d0ea2718d1", + "fields": { + "code_commune_insee": "25277", + "nom_de_la_commune": "GONDENANS LES MOULINS", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4652888265, + 6.38278266131 + ], + "libelle_d_acheminement": "GONDENANS LES MOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38278266131, + 47.4652888265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "739a87a24ab8a81281530bcf25604499ffaf06fb", + "fields": { + "code_commune_insee": "25281", + "nom_de_la_commune": "GOUX LES DAMBELIN", + "code_postal": "25150", + "coordonnees_gps": [ + 47.3975712606, + 6.67771122183 + ], + "libelle_d_acheminement": "GOUX LES DAMBELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67771122183, + 47.3975712606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3c9815a50ef7f8c370029a249f8913a9808e93b", + "fields": { + "code_commune_insee": "25284", + "nom_de_la_commune": "GRAND CHARMONT", + "code_postal": "25200", + "coordonnees_gps": [ + 47.5338572805, + 6.82318700398 + ], + "libelle_d_acheminement": "GRAND CHARMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82318700398, + 47.5338572805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5691d375defc87182b50ebe1503dba4bf704b583", + "fields": { + "ligne_5": "LUISANS", + "code_commune_insee": "25288", + "libelle_d_acheminement": "FOURNETS LUISANS", + "code_postal": "25390", + "nom_de_la_commune": "FOURNETS LUISANS", + "coordonnees_gps": [ + 47.1017956393, + 6.55927911483 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55927911483, + 47.1017956393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d3436890faa0c7b015ce9bbfef5f04b71f84ddd", + "fields": { + "code_commune_insee": "25290", + "nom_de_la_commune": "LA GRANGE", + "code_postal": "25380", + "coordonnees_gps": [ + 47.284355739, + 6.67077242827 + ], + "libelle_d_acheminement": "LA GRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67077242827, + 47.284355739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "970259b99f1f9fcb06e1900a42d41ad6b9319d32", + "fields": { + "code_commune_insee": "25298", + "nom_de_la_commune": "GROSBOIS", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3463250363, + 6.30460689266 + ], + "libelle_d_acheminement": "GROSBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30460689266, + 47.3463250363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d0ec15c6b5f86c021055b518b3ac98a5829d9d9", + "fields": { + "code_commune_insee": "25303", + "nom_de_la_commune": "HAUTERIVE LA FRESSE", + "code_postal": "25650", + "coordonnees_gps": [ + 46.9672807433, + 6.45727448334 + ], + "libelle_d_acheminement": "HAUTERIVE LA FRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45727448334, + 46.9672807433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b03f79d460ad8072ca4bc6f5728cc04e8e2e8c29", + "fields": { + "code_commune_insee": "25312", + "nom_de_la_commune": "HYEVRE MAGNY", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3605502302, + 6.43447037882 + ], + "libelle_d_acheminement": "HYEVRE MAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43447037882, + 47.3605502302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f7da3258b72e378b4087c954df7a64577a6b7b2", + "fields": { + "ligne_5": "BOIS LA VILLE", + "code_commune_insee": "25313", + "libelle_d_acheminement": "HYEVRE PAROISSE", + "code_postal": "25110", + "nom_de_la_commune": "HYEVRE PAROISSE", + "coordonnees_gps": [ + 47.3738771154, + 6.43305986527 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43305986527, + 47.3738771154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61ac4b3eb554ecde43508de3ce09a369eec95d97", + "fields": { + "code_commune_insee": "25315", + "nom_de_la_commune": "L ISLE SUR LE DOUBS", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4239335933, + 6.58904515422 + ], + "libelle_d_acheminement": "L ISLE SUR LE DOUBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58904515422, + 47.4239335933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "465f8811bce38367a74be7d4b2003acb2c33a212", + "fields": { + "code_commune_insee": "25317", + "nom_de_la_commune": "JALLERANGE", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2569810694, + 5.71944312657 + ], + "libelle_d_acheminement": "JALLERANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71944312657, + 47.2569810694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac484a7c8c8fcafe2ce0140af8fde7ae14d81b85", + "fields": { + "ligne_5": "GRANGES MAILLOT", + "code_commune_insee": "25334", + "libelle_d_acheminement": "LEVIER", + "code_postal": "25270", + "nom_de_la_commune": "LEVIER", + "coordonnees_gps": [ + 46.9571786318, + 6.11754093497 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11754093497, + 46.9571786318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45b2dc223adec872ffbfb5187050f3872723a6a3", + "fields": { + "code_commune_insee": "25335", + "nom_de_la_commune": "LIEBVILLERS", + "code_postal": "25190", + "coordonnees_gps": [ + 47.331104314, + 6.78398007896 + ], + "libelle_d_acheminement": "LIEBVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78398007896, + 47.331104314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "362683feb5ab65482bf2e766566f215239393714", + "fields": { + "code_commune_insee": "25339", + "nom_de_la_commune": "LODS", + "code_postal": "25930", + "coordonnees_gps": [ + 47.0494709187, + 6.25575647951 + ], + "libelle_d_acheminement": "LODS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25575647951, + 47.0494709187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6efe4dfef34018be23f572264464c9c60b2df010", + "fields": { + "code_commune_insee": "25344", + "nom_de_la_commune": "LONGEVELLE LES RUSSEY", + "code_postal": "25380", + "coordonnees_gps": [ + 47.2228806948, + 6.65562910931 + ], + "libelle_d_acheminement": "LONGEVELLE LES RUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65562910931, + 47.2228806948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0f331646754bde7a9957fd7584efa4934ea4f08", + "fields": { + "code_commune_insee": "25345", + "nom_de_la_commune": "LONGEVELLE SUR DOUBS", + "code_postal": "25260", + "coordonnees_gps": [ + 47.4597602248, + 6.64960735527 + ], + "libelle_d_acheminement": "LONGEVELLE SUR DOUBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64960735527, + 47.4597602248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbb385abb4d1c1f86065b86d5dc2242cfd3079a0", + "fields": { + "code_commune_insee": "25346", + "nom_de_la_commune": "LONGEVILLE", + "code_postal": "25330", + "coordonnees_gps": [ + 47.0287693296, + 6.22873559182 + ], + "libelle_d_acheminement": "LONGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22873559182, + 47.0287693296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bcfaa556b3ad0c1f154999da1ce0e4570b82d8b", + "fields": { + "code_commune_insee": "25347", + "nom_de_la_commune": "LA LONGEVILLE", + "code_postal": "25650", + "coordonnees_gps": [ + 47.0182144094, + 6.46715621587 + ], + "libelle_d_acheminement": "LA LONGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46715621587, + 47.0182144094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7e6b5ef4d272f5cd74a87d530c4a49fd7c6c7f9", + "fields": { + "ligne_5": "MARCHAUX", + "code_commune_insee": "25368", + "libelle_d_acheminement": "MARCHAUX CHAUDEFONTAINE", + "code_postal": "25640", + "nom_de_la_commune": "MARCHAUX CHAUDEFONTAINE", + "coordonnees_gps": [ + 47.3224782465, + 6.12169829591 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12169829591, + 47.3224782465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54482f8628c25b75b0f0c1b1fbe2e173aa7b85b3", + "fields": { + "code_commune_insee": "25374", + "nom_de_la_commune": "MERCEY LE GRAND", + "code_postal": "25410", + "coordonnees_gps": [ + 47.2119822043, + 5.75247892377 + ], + "libelle_d_acheminement": "MERCEY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75247892377, + 47.2119822043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6967845bce53b2a6a8bf25b5aca1ade6648a62d", + "fields": { + "code_commune_insee": "25377", + "nom_de_la_commune": "MESANDANS", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4298209681, + 6.37991516024 + ], + "libelle_d_acheminement": "MESANDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37991516024, + 47.4298209681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81438572e5d9fc0222dc51ed4f2a7fd1a56be1fc", + "fields": { + "code_commune_insee": "25380", + "nom_de_la_commune": "METABIEF", + "code_postal": "25370", + "coordonnees_gps": [ + 46.7648830862, + 6.35324497812 + ], + "libelle_d_acheminement": "METABIEF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35324497812, + 46.7648830862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1454e0b0146d5bcf85e6fdea95d4c7716ac7ea7b", + "fields": { + "code_commune_insee": "25382", + "nom_de_la_commune": "MONCEY", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3618627403, + 6.13558805053 + ], + "libelle_d_acheminement": "MONCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13558805053, + 47.3618627403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a8c443e98989264f9ad8d29e8d53b77e656561a", + "fields": { + "code_commune_insee": "25383", + "nom_de_la_commune": "MONCLEY", + "code_postal": "25170", + "coordonnees_gps": [ + 47.3031902882, + 5.90271359007 + ], + "libelle_d_acheminement": "MONCLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90271359007, + 47.3031902882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cadf65c9cf483ee7ec99fb90c2adae6a655d0ad8", + "fields": { + "code_commune_insee": "25386", + "nom_de_la_commune": "MONTANCY", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3558454875, + 7.03093441343 + ], + "libelle_d_acheminement": "MONTANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03093441343, + 47.3558454875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99544db35f2aa5502836fa547436e2d77605d7c6", + "fields": { + "code_commune_insee": "25387", + "nom_de_la_commune": "MONTANDON", + "code_postal": "25190", + "coordonnees_gps": [ + 47.2987632167, + 6.83499766381 + ], + "libelle_d_acheminement": "MONTANDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83499766381, + 47.2987632167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eae3bb95ae4186affa9fea6832738125bc5c7397", + "fields": { + "code_commune_insee": "25389", + "nom_de_la_commune": "MONTBELIARDOT", + "code_postal": "25210", + "coordonnees_gps": [ + 47.1811166643, + 6.67085756871 + ], + "libelle_d_acheminement": "MONTBELIARDOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67085756871, + 47.1811166643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e54842b48ac797704bd052ec6303df73026c86a", + "fields": { + "code_commune_insee": "25390", + "nom_de_la_commune": "MONTBENOIT", + "code_postal": "25650", + "coordonnees_gps": [ + 46.9835127856, + 6.46539409357 + ], + "libelle_d_acheminement": "MONTBENOIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46539409357, + 46.9835127856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f918a0648914a493346153864eb7f89b294df1f1", + "fields": { + "code_commune_insee": "25405", + "nom_de_la_commune": "MONTPERREUX", + "code_postal": "25160", + "coordonnees_gps": [ + 46.8204797871, + 6.34452081973 + ], + "libelle_d_acheminement": "MONTPERREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34452081973, + 46.8204797871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e13d0cee35b1477a486198ce6cc9429dc806f4c6", + "fields": { + "code_commune_insee": "25415", + "nom_de_la_commune": "MOUTHIER HAUTE PIERRE", + "code_postal": "25920", + "coordonnees_gps": [ + 47.033913371, + 6.27516743858 + ], + "libelle_d_acheminement": "MOUTHIER HAUTE PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27516743858, + 47.033913371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78f81168e39615638b1e0c503590e23efc8937c4", + "fields": { + "code_commune_insee": "25419", + "nom_de_la_commune": "NANS", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4763314915, + 6.41042032823 + ], + "libelle_d_acheminement": "NANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41042032823, + 47.4763314915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5a88ca993453e46e73da33317451221f2a74306", + "fields": { + "ligne_5": "ATHOSE", + "code_commune_insee": "25424", + "libelle_d_acheminement": "LES PREMIERS SAPINS", + "code_postal": "25580", + "nom_de_la_commune": "LES PREMIERS SAPINS", + "coordonnees_gps": [ + 47.0885558465, + 6.3501261359 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3501261359, + 47.0885558465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb31f4548ede6fc544a666ba334acc103c741104", + "fields": { + "ligne_5": "HAUTEPIERRE LE CHATELET", + "code_commune_insee": "25424", + "libelle_d_acheminement": "LES PREMIERS SAPINS", + "code_postal": "25580", + "nom_de_la_commune": "LES PREMIERS SAPINS", + "coordonnees_gps": [ + 47.0885558465, + 6.3501261359 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3501261359, + 47.0885558465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c2ad66953765beffc7b3a1a6891189c6bd56850", + "fields": { + "code_commune_insee": "25432", + "nom_de_la_commune": "ORCHAMPS VENNES", + "code_postal": "25390", + "coordonnees_gps": [ + 47.1113422758, + 6.51419326091 + ], + "libelle_d_acheminement": "ORCHAMPS VENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51419326091, + 47.1113422758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d07f3e5c17b13f78f3460d83c79561e16d6bb4b", + "fields": { + "ligne_5": "BONNEVAUX LE PRIEURE", + "code_commune_insee": "25434", + "libelle_d_acheminement": "ORNANS", + "code_postal": "25620", + "nom_de_la_commune": "ORNANS", + "coordonnees_gps": [ + 47.0978221604, + 6.15005274633 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15005274633, + 47.0978221604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9abad084d22fe02e3c4baa195d5de7f43727828", + "fields": { + "ligne_5": "OSSELLE", + "code_commune_insee": "25438", + "libelle_d_acheminement": "OSSELLE ROUTELLE", + "code_postal": "25320", + "nom_de_la_commune": "OSSELLE ROUTELLE", + "coordonnees_gps": [ + 47.1480275253, + 5.86345612302 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86345612302, + 47.1480275253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cb5ef614ecacb72d96071299fba4055de739de9", + "fields": { + "code_commune_insee": "25447", + "nom_de_la_commune": "PASSONFONTAINE", + "code_postal": "25690", + "coordonnees_gps": [ + 47.0942932136, + 6.42244619836 + ], + "libelle_d_acheminement": "PASSONFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42244619836, + 47.0942932136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "623396c2b847349e50e33d5ca8e8e2634338abad", + "fields": { + "code_commune_insee": "25456", + "nom_de_la_commune": "PLAIMBOIS DU MIROIR", + "code_postal": "25210", + "coordonnees_gps": [ + 47.1947537606, + 6.64914884876 + ], + "libelle_d_acheminement": "PLAIMBOIS DU MIROIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64914884876, + 47.1947537606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4449e1c4976f88ba15cde078ccb753d60927c258", + "fields": { + "code_commune_insee": "25457", + "nom_de_la_commune": "PLAIMBOIS VENNES", + "code_postal": "25390", + "coordonnees_gps": [ + 47.1838898249, + 6.54689658239 + ], + "libelle_d_acheminement": "PLAIMBOIS VENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54689658239, + 47.1838898249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c2b5bcfe7109d9fb5cf835a85dbcc30be0d5c04", + "fields": { + "code_commune_insee": "25459", + "nom_de_la_commune": "LA PLANEE", + "code_postal": "25160", + "coordonnees_gps": [ + 46.8422329336, + 6.27289248045 + ], + "libelle_d_acheminement": "LA PLANEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27289248045, + 46.8422329336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15e55a8b5e15d1298f6b07994c8025f6024d8720", + "fields": { + "code_commune_insee": "25467", + "nom_de_la_commune": "POUILLEY LES VIGNES", + "code_postal": "25115", + "coordonnees_gps": [ + 47.2602504664, + 5.93645991139 + ], + "libelle_d_acheminement": "POUILLEY LES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93645991139, + 47.2602504664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55bef4d14e5fc1f6a2992c2046cb65da8b0c4078", + "fields": { + "code_commune_insee": "25472", + "nom_de_la_commune": "PUESSANS", + "code_postal": "25680", + "coordonnees_gps": [ + 47.434521432, + 6.32409895511 + ], + "libelle_d_acheminement": "PUESSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32409895511, + 47.434521432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "461b0a8edc49e216354f70eac79ab5dd1fdf93e7", + "fields": { + "code_commune_insee": "25474", + "nom_de_la_commune": "LE PUY", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3456027875, + 6.23053427438 + ], + "libelle_d_acheminement": "LE PUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23053427438, + 47.3456027875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a22199703b5b50b7fac16e802533bed24cafda2", + "fields": { + "code_commune_insee": "25487", + "nom_de_la_commune": "RENEDALE", + "code_postal": "25520", + "coordonnees_gps": [ + 47.0151528366, + 6.27602313986 + ], + "libelle_d_acheminement": "RENEDALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27602313986, + 47.0151528366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d7bd56daf00066d4607806bf977965e2d4a06b2", + "fields": { + "code_commune_insee": "25489", + "nom_de_la_commune": "REUGNEY", + "code_postal": "25330", + "coordonnees_gps": [ + 47.0103494602, + 6.15267217668 + ], + "libelle_d_acheminement": "REUGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15267217668, + 47.0103494602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a37ea3eb798f9010df8f410b00df8f49922e88c", + "fields": { + "code_commune_insee": "25491", + "nom_de_la_commune": "RIGNOSOT", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3835277032, + 6.1996281942 + ], + "libelle_d_acheminement": "RIGNOSOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1996281942, + 47.3835277032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08f38c86f39e558a179fac8578f441ccb1faa5f1", + "fields": { + "code_commune_insee": "25492", + "nom_de_la_commune": "RILLANS", + "code_postal": "25110", + "coordonnees_gps": [ + 47.4134765055, + 6.36658431781 + ], + "libelle_d_acheminement": "RILLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36658431781, + 47.4134765055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "693d2b0afbca1826020e1e113c6393e538c6823b", + "fields": { + "code_commune_insee": "25495", + "nom_de_la_commune": "ROCHE LEZ BEAUPRE", + "code_postal": "25220", + "coordonnees_gps": [ + 47.2817555255, + 6.10801938836 + ], + "libelle_d_acheminement": "ROCHE LEZ BEAUPRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10801938836, + 47.2817555255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03554213610f574a5e4fa5149ce777c247aa8650", + "fields": { + "code_commune_insee": "25499", + "nom_de_la_commune": "ROMAIN", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4439581352, + 6.37976637275 + ], + "libelle_d_acheminement": "ROMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37976637275, + 47.4439581352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "157e2f8e43e8e417f226c417f42f5596d2d7c54c", + "fields": { + "ligne_5": "MORCHAMPS", + "code_commune_insee": "25505", + "libelle_d_acheminement": "ROUGEMONT", + "code_postal": "25680", + "nom_de_la_commune": "ROUGEMONT", + "coordonnees_gps": [ + 47.4795835178, + 6.34800687837 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34800687837, + 47.4795835178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89ca2e2f0388b40f4202c603e1de00c7340416a6", + "fields": { + "code_commune_insee": "25506", + "nom_de_la_commune": "ROUGEMONTOT", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3899184482, + 6.26250218169 + ], + "libelle_d_acheminement": "ROUGEMONTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26250218169, + 47.3899184482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e1414b8470e217cbba70b00375dd7fe55f4e37e", + "fields": { + "code_commune_insee": "25507", + "nom_de_la_commune": "ROUHE", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0820091949, + 5.96566947588 + ], + "libelle_d_acheminement": "ROUHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96566947588, + 47.0820091949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a2504e30ae80e465cddafec4e0557cce85ff0d3", + "fields": { + "code_commune_insee": "25510", + "nom_de_la_commune": "RUFFEY LE CHATEAU", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2827813349, + 5.8036207849 + ], + "libelle_d_acheminement": "RUFFEY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8036207849, + 47.2827813349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "057fdc7d4987e2f332acc73bbe530fc902ae149a", + "fields": { + "code_commune_insee": "25518", + "nom_de_la_commune": "ST HILAIRE", + "code_postal": "25640", + "coordonnees_gps": [ + 47.334610103, + 6.24519966915 + ], + "libelle_d_acheminement": "ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24519966915, + 47.334610103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbd2018aa37b1770269e0e46523ad7cd5a0575bc", + "fields": { + "code_commune_insee": "25523", + "nom_de_la_commune": "STE MARIE", + "code_postal": "25113", + "coordonnees_gps": [ + 47.5016165362, + 6.69552545899 + ], + "libelle_d_acheminement": "STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69552545899, + 47.5016165362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "687e89d1d46dd88e78468f9dd39f4eac615f68e8", + "fields": { + "code_commune_insee": "25527", + "nom_de_la_commune": "ST VIT", + "code_postal": "25410", + "coordonnees_gps": [ + 47.1854090254, + 5.82031300598 + ], + "libelle_d_acheminement": "ST VIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82031300598, + 47.1854090254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56e2f61c76b7cc1de0df14b5ff941d63e1b5f728", + "fields": { + "code_commune_insee": "25532", + "nom_de_la_commune": "SAONE", + "code_postal": "25660", + "coordonnees_gps": [ + 47.214147166, + 6.1131738065 + ], + "libelle_d_acheminement": "SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1131738065, + 47.214147166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d0b29ce0380e2f3362e80a94975d7f015dd1767", + "fields": { + "code_commune_insee": "25533", + "nom_de_la_commune": "SARAZ", + "code_postal": "25330", + "coordonnees_gps": [ + 46.9920963588, + 5.97458498115 + ], + "libelle_d_acheminement": "SARAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97458498115, + 46.9920963588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a82ef85b9194ee67919629e520d3cab7b82a4c4", + "fields": { + "code_commune_insee": "25534", + "nom_de_la_commune": "SARRAGEOIS", + "code_postal": "25240", + "coordonnees_gps": [ + 46.7039578947, + 6.23498989806 + ], + "libelle_d_acheminement": "SARRAGEOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23498989806, + 46.7039578947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "707f404d1565b3d112f988edc286d3e685fdfe99", + "fields": { + "code_commune_insee": "25538", + "nom_de_la_commune": "SECHIN", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3399206396, + 6.28584511436 + ], + "libelle_d_acheminement": "SECHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28584511436, + 47.3399206396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f04f5bc064a5764ae5626163e852af2ebb33128", + "fields": { + "code_commune_insee": "25548", + "nom_de_la_commune": "SOLEMONT", + "code_postal": "25190", + "coordonnees_gps": [ + 47.345000797, + 6.70680878537 + ], + "libelle_d_acheminement": "SOLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70680878537, + 47.345000797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec258c0c7953089571062b5773d5251f1aca8a5a", + "fields": { + "code_commune_insee": "25549", + "nom_de_la_commune": "SOMBACOUR", + "code_postal": "25520", + "coordonnees_gps": [ + 46.9502322879, + 6.24102046225 + ], + "libelle_d_acheminement": "SOMBACOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24102046225, + 46.9502322879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "515878eb0e223527793670f1b3879b13b3148b6c", + "fields": { + "code_commune_insee": "25571", + "nom_de_la_commune": "TREVILLERS", + "code_postal": "25470", + "coordonnees_gps": [ + 47.2838183983, + 6.87447144463 + ], + "libelle_d_acheminement": "TREVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87447144463, + 47.2838183983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "607fb7a58077544f83c16c1a201f1869c9c6fdd3", + "fields": { + "code_commune_insee": "25573", + "nom_de_la_commune": "URTIERE", + "code_postal": "25470", + "coordonnees_gps": [ + 47.2569443601, + 6.92336911492 + ], + "libelle_d_acheminement": "URTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92336911492, + 47.2569443601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a190618062161b48ff8743072941b8f89f0beb70", + "fields": { + "code_commune_insee": "25592", + "nom_de_la_commune": "VAUX ET CHANTEGRUE", + "code_postal": "25160", + "coordonnees_gps": [ + 46.7990861399, + 6.23427007701 + ], + "libelle_d_acheminement": "VAUX ET CHANTEGRUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23427007701, + 46.7990861399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82bd7ffdebf96816e953f3381cc122873f3e876a", + "fields": { + "code_commune_insee": "25611", + "nom_de_la_commune": "LA VEZE", + "code_postal": "25660", + "coordonnees_gps": [ + 47.1973736223, + 6.07326086918 + ], + "libelle_d_acheminement": "LA VEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07326086918, + 47.1973736223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca7f96304d9824afba79adfeb95fe9edf9900fed", + "fields": { + "code_commune_insee": "25613", + "nom_de_la_commune": "VIETHOREY", + "code_postal": "25340", + "coordonnees_gps": [ + 47.4208244987, + 6.42192640608 + ], + "libelle_d_acheminement": "VIETHOREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42192640608, + 47.4208244987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b53c0dd0070354201a9c9db30680d3cdb90664a2", + "fields": { + "code_commune_insee": "25619", + "nom_de_la_commune": "LES VILLEDIEU", + "code_postal": "25240", + "coordonnees_gps": [ + 46.7134756385, + 6.26609889484 + ], + "libelle_d_acheminement": "LES VILLEDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26609889484, + 46.7134756385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03042b4d6c9f7965c2e2cd019f8cf5a7d0310abe", + "fields": { + "code_commune_insee": "25623", + "nom_de_la_commune": "VILLERS CHIEF", + "code_postal": "25530", + "coordonnees_gps": [ + 47.2235047047, + 6.43819001348 + ], + "libelle_d_acheminement": "VILLERS CHIEF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43819001348, + 47.2235047047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a5b616f47a29fea5519fb2cc8626a446e163c90", + "fields": { + "code_commune_insee": "25625", + "nom_de_la_commune": "VILLERS LA COMBE", + "code_postal": "25510", + "coordonnees_gps": [ + 47.2405589115, + 6.47308632933 + ], + "libelle_d_acheminement": "VILLERS LA COMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47308632933, + 47.2405589115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bbdaaef513cae32adbf9dc4c78e35b07a14d4e5", + "fields": { + "code_commune_insee": "25627", + "nom_de_la_commune": "VILLERS SOUS CHALAMONT", + "code_postal": "25270", + "coordonnees_gps": [ + 46.9017661774, + 6.04590580745 + ], + "libelle_d_acheminement": "VILLERS SOUS CHALAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04590580745, + 46.9017661774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33e2d6c6cfe4afd283d6031d91c07f3768b8c017", + "fields": { + "code_commune_insee": "25632", + "nom_de_la_commune": "VOUJEAUCOURT", + "code_postal": "25420", + "coordonnees_gps": [ + 47.4733631824, + 6.78304416053 + ], + "libelle_d_acheminement": "VOUJEAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78304416053, + 47.4733631824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2208061cb899b2a6c5185d84520c8aa2c468e4b6", + "fields": { + "code_commune_insee": "25634", + "nom_de_la_commune": "VUILLECIN", + "code_postal": "25300", + "coordonnees_gps": [ + 46.9530445219, + 6.3333452653 + ], + "libelle_d_acheminement": "VUILLECIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3333452653, + 46.9530445219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0296368aaa4b5942d0f80d269807808b9058fa83", + "fields": { + "code_commune_insee": "26007", + "nom_de_la_commune": "AMBONIL", + "code_postal": "26800", + "coordonnees_gps": [ + 44.7918323658, + 4.90939338153 + ], + "libelle_d_acheminement": "AMBONIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90939338153, + 44.7918323658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "659b24ccf1bb1b0594f97c1a90898b3fd66efc60", + "fields": { + "code_commune_insee": "26012", + "nom_de_la_commune": "ARNAYON", + "code_postal": "26470", + "coordonnees_gps": [ + 44.4936243979, + 5.31166231331 + ], + "libelle_d_acheminement": "ARNAYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31166231331, + 44.4936243979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab9014e738e55887f92752ec646d13383977cba0", + "fields": { + "code_commune_insee": "26019", + "nom_de_la_commune": "AUREL", + "code_postal": "26340", + "coordonnees_gps": [ + 44.6925597423, + 5.29816067809 + ], + "libelle_d_acheminement": "AUREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29816067809, + 44.6925597423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45a5b823dfb14409c111e265baad2173c486ff53", + "fields": { + "code_commune_insee": "26021", + "nom_de_la_commune": "AUTICHAMP", + "code_postal": "26400", + "coordonnees_gps": [ + 44.6832370782, + 4.97341500658 + ], + "libelle_d_acheminement": "AUTICHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97341500658, + 44.6832370782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19c77b07b610b93323d024cc41ce86256d7d70b3", + "fields": { + "code_commune_insee": "26025", + "nom_de_la_commune": "BARNAVE", + "code_postal": "26310", + "coordonnees_gps": [ + 44.6573608737, + 5.3674248212 + ], + "libelle_d_acheminement": "BARNAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3674248212, + 44.6573608737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e200f75a368b5b5bc6affd268b960acb0492642c", + "fields": { + "code_commune_insee": "26036", + "nom_de_la_commune": "BEAUMONT EN DIOIS", + "code_postal": "26310", + "coordonnees_gps": [ + 44.564352829, + 5.47041349374 + ], + "libelle_d_acheminement": "BEAUMONT EN DIOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47041349374, + 44.564352829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2757fa69b870350b2d98cc7b67c9a8da94c2e9b7", + "fields": { + "code_commune_insee": "26037", + "nom_de_la_commune": "BEAUMONT LES VALENCE", + "code_postal": "26760", + "coordonnees_gps": [ + 44.8734831183, + 4.9471828168 + ], + "libelle_d_acheminement": "BEAUMONT LES VALENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9471828168, + 44.8734831183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bedaa98c4ec5ee04af4381e6cece5cbc1f72597", + "fields": { + "code_commune_insee": "26039", + "nom_de_la_commune": "BEAUREGARD BARET", + "code_postal": "26300", + "coordonnees_gps": [ + 45.0062739995, + 5.17662985645 + ], + "libelle_d_acheminement": "BEAUREGARD BARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17662985645, + 45.0062739995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95078363346d5ba00e57b9cf5775a6f7fa3b1cc9", + "fields": { + "code_commune_insee": "26040", + "nom_de_la_commune": "BEAURIERES", + "code_postal": "26310", + "coordonnees_gps": [ + 44.5601180012, + 5.55366934247 + ], + "libelle_d_acheminement": "BEAURIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55366934247, + 44.5601180012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b5da4fec9a14061370825fd561eff03a1420d21", + "fields": { + "code_commune_insee": "26042", + "nom_de_la_commune": "BEAUVALLON", + "code_postal": "26800", + "coordonnees_gps": [ + 44.8560524455, + 4.90520228557 + ], + "libelle_d_acheminement": "BEAUVALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90520228557, + 44.8560524455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f81ea1fd161aa56d905644006b8122c6affd732b", + "fields": { + "code_commune_insee": "26043", + "nom_de_la_commune": "BEAUVOISIN", + "code_postal": "26170", + "coordonnees_gps": [ + 44.3007007366, + 5.2126241299 + ], + "libelle_d_acheminement": "BEAUVOISIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2126241299, + 44.3007007366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a900adacc1ab1f3e38e5009bbebfa36e50f41296", + "fields": { + "code_commune_insee": "26052", + "nom_de_la_commune": "BONLIEU SUR ROUBION", + "code_postal": "26160", + "coordonnees_gps": [ + 44.5876371833, + 4.86759550989 + ], + "libelle_d_acheminement": "BONLIEU SUR ROUBION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86759550989, + 44.5876371833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "388da2fb6d57972b52f02a516c746fe4267913fd", + "fields": { + "code_commune_insee": "26055", + "nom_de_la_commune": "BOULC", + "code_postal": "26410", + "coordonnees_gps": [ + 44.6379699146, + 5.58442914276 + ], + "libelle_d_acheminement": "BOULC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58442914276, + 44.6379699146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96a0af174637a2e1cc26d79ecf41882197c7a8e5", + "fields": { + "code_commune_insee": "26059", + "nom_de_la_commune": "BOUVANTE", + "code_postal": "26190", + "coordonnees_gps": [ + 44.9352511723, + 5.30425747099 + ], + "libelle_d_acheminement": "BOUVANTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30425747099, + 44.9352511723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27e6cda7d37b7bd0637f5ff49d5a90dee0c22bef", + "fields": { + "code_commune_insee": "26063", + "nom_de_la_commune": "BUIS LES BARONNIES", + "code_postal": "26170", + "coordonnees_gps": [ + 44.276084918, + 5.27102720538 + ], + "libelle_d_acheminement": "BUIS LES BARONNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27102720538, + 44.276084918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d956d81311b3f2fa96389df19404fd76b30c516f", + "fields": { + "code_commune_insee": "26066", + "nom_de_la_commune": "LE CHAFFAL", + "code_postal": "26190", + "coordonnees_gps": [ + 44.8732571795, + 5.17850564774 + ], + "libelle_d_acheminement": "LE CHAFFAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17850564774, + 44.8732571795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7686dc91c2ec219df1221581288f036606895585", + "fields": { + "code_commune_insee": "26067", + "nom_de_la_commune": "CHALANCON", + "code_postal": "26470", + "coordonnees_gps": [ + 44.5274785721, + 5.33947845963 + ], + "libelle_d_acheminement": "CHALANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33947845963, + 44.5274785721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b0f8afaf247c4461b2236848dc930d6b0c2f605", + "fields": { + "code_commune_insee": "26068", + "nom_de_la_commune": "LE CHALON", + "code_postal": "26350", + "coordonnees_gps": [ + 45.1545545543, + 5.08934603191 + ], + "libelle_d_acheminement": "LE CHALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08934603191, + 45.1545545543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc4418fda65b46b3937ab4488e423ee911fe24dc", + "fields": { + "ligne_5": "ST DIDIER DE CHARPEY", + "code_commune_insee": "26079", + "libelle_d_acheminement": "CHARPEY", + "code_postal": "26300", + "nom_de_la_commune": "CHARPEY", + "coordonnees_gps": [ + 44.9434242792, + 5.07948371958 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07948371958, + 44.9434242792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "512feea1680e0e0a4e1f4ded7c60133a8b8acda9", + "fields": { + "code_commune_insee": "26081", + "nom_de_la_commune": "CHATEAUDOUBLE", + "code_postal": "26120", + "coordonnees_gps": [ + 44.8995418259, + 5.09042220366 + ], + "libelle_d_acheminement": "CHATEAUDOUBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09042220366, + 44.8995418259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d5be0be09534a60c64daf6481623098f24c97ba", + "fields": { + "code_commune_insee": "26088", + "nom_de_la_commune": "CHATUZANGE LE GOUBET", + "code_postal": "26300", + "coordonnees_gps": [ + 45.0109934947, + 5.09724548894 + ], + "libelle_d_acheminement": "CHATUZANGE LE GOUBET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09724548894, + 45.0109934947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea26d49d9f5caa768a90ea000bc14f5d28d3f842", + "fields": { + "ligne_5": "PIZANCON", + "code_commune_insee": "26088", + "libelle_d_acheminement": "CHATUZANGE LE GOUBET", + "code_postal": "26300", + "nom_de_la_commune": "CHATUZANGE LE GOUBET", + "coordonnees_gps": [ + 45.0109934947, + 5.09724548894 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09724548894, + 45.0109934947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "036823803333be41f1c2a2d3ff7490fda3293254", + "fields": { + "code_commune_insee": "26101", + "nom_de_la_commune": "COMPS", + "code_postal": "26220", + "coordonnees_gps": [ + 44.5517875724, + 5.1045697988 + ], + "libelle_d_acheminement": "COMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1045697988, + 44.5517875724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ccbf6a6090738f838f6b1e45b9dbd3eeeb041c6", + "fields": { + "code_commune_insee": "26104", + "nom_de_la_commune": "CORNILLAC", + "code_postal": "26510", + "coordonnees_gps": [ + 44.4397962744, + 5.40427048802 + ], + "libelle_d_acheminement": "CORNILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40427048802, + 44.4397962744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b65ff595014dd6ca56a10e47fa57e4a5b3ecf480", + "fields": { + "code_commune_insee": "26115", + "nom_de_la_commune": "DIVAJEU", + "code_postal": "26400", + "coordonnees_gps": [ + 44.6994155653, + 5.00951244768 + ], + "libelle_d_acheminement": "DIVAJEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00951244768, + 44.6994155653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2678cfa11d048b0fc489dc883fbce2c229f4aab9", + "fields": { + "code_commune_insee": "26119", + "nom_de_la_commune": "EROME", + "code_postal": "26600", + "coordonnees_gps": [ + 45.1267358937, + 4.8356936988 + ], + "libelle_d_acheminement": "EROME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8356936988, + 45.1267358937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cc138e5160a47330e9c07cff74dd755608d65e8", + "fields": { + "code_commune_insee": "26126", + "nom_de_la_commune": "EYGALAYES", + "code_postal": "26560", + "coordonnees_gps": [ + 44.2211440236, + 5.59423968429 + ], + "libelle_d_acheminement": "EYGALAYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59423968429, + 44.2211440236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "518c1bedd910537f6557109006bbb3084a6cea93", + "fields": { + "code_commune_insee": "26129", + "nom_de_la_commune": "EYMEUX", + "code_postal": "26730", + "coordonnees_gps": [ + 45.0663071333, + 5.18254259284 + ], + "libelle_d_acheminement": "EYMEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18254259284, + 45.0663071333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0cc09c560de20df0a29ee670e6ca720c0ca8be7", + "fields": { + "code_commune_insee": "26131", + "nom_de_la_commune": "EYZAHUT", + "code_postal": "26160", + "coordonnees_gps": [ + 44.5613261494, + 5.00354083733 + ], + "libelle_d_acheminement": "EYZAHUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00354083733, + 44.5613261494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46f783adeecdcd1eabdaebd6c78ce42c6e304aa8", + "fields": { + "ligne_5": "LA BATIE CREMEZIN", + "code_commune_insee": "26136", + "libelle_d_acheminement": "VAL MARAVEL", + "code_postal": "26310", + "nom_de_la_commune": "VAL MARAVEL", + "coordonnees_gps": [ + 44.5919888409, + 5.58664096693 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58664096693, + 44.5919888409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0db8347196b7e328520cf1be7b0dd888020ad54b", + "fields": { + "ligne_5": "LE PILHON", + "code_commune_insee": "26136", + "libelle_d_acheminement": "VAL MARAVEL", + "code_postal": "26310", + "nom_de_la_commune": "VAL MARAVEL", + "coordonnees_gps": [ + 44.5919888409, + 5.58664096693 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58664096693, + 44.5919888409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bf6e5c5eeadf5110d7c7bca224fe89bdda7e35c", + "fields": { + "code_commune_insee": "26137", + "nom_de_la_commune": "FRANCILLON SUR ROUBION", + "code_postal": "26400", + "coordonnees_gps": [ + 44.6168821671, + 5.07198362932 + ], + "libelle_d_acheminement": "FRANCILLON SUR ROUBION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07198362932, + 44.6168821671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42d323129f0e42e2e304685820004b63307103a5", + "fields": { + "code_commune_insee": "26138", + "nom_de_la_commune": "LA GARDE ADHEMAR", + "code_postal": "26700", + "coordonnees_gps": [ + 44.3910321281, + 4.74995521601 + ], + "libelle_d_acheminement": "LA GARDE ADHEMAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74995521601, + 44.3910321281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75c75b0f73b297642885152b6ccb409b47640e87", + "fields": { + "code_commune_insee": "26140", + "nom_de_la_commune": "GEYSSANS", + "code_postal": "26750", + "coordonnees_gps": [ + 45.1234537531, + 5.09201692077 + ], + "libelle_d_acheminement": "GEYSSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09201692077, + 45.1234537531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cfc0393ad8932469b04ca145cf5abda3ab5e21d", + "fields": { + "code_commune_insee": "26154", + "nom_de_la_commune": "LACHAU", + "code_postal": "26560", + "coordonnees_gps": [ + 44.2161718587, + 5.65182288638 + ], + "libelle_d_acheminement": "LACHAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65182288638, + 44.2161718587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed505469ea26825e719f23ce7b1f934333618ea4", + "fields": { + "code_commune_insee": "26155", + "nom_de_la_commune": "LAPEYROUSE MORNAY", + "code_postal": "26210", + "coordonnees_gps": [ + 45.3275989913, + 4.98910838258 + ], + "libelle_d_acheminement": "LAPEYROUSE MORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98910838258, + 45.3275989913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29813e654e0c12645f76207376f2b033dfc76aae", + "fields": { + "code_commune_insee": "26166", + "nom_de_la_commune": "LORIOL SUR DROME", + "code_postal": "26270", + "coordonnees_gps": [ + 44.7499742267, + 4.80530615488 + ], + "libelle_d_acheminement": "LORIOL SUR DROME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80530615488, + 44.7499742267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a97ab96d1935956d35d9da7e89feb4ebfdfc87a", + "fields": { + "code_commune_insee": "26176", + "nom_de_la_commune": "MARSANNE", + "code_postal": "26740", + "coordonnees_gps": [ + 44.640273082, + 4.88311372596 + ], + "libelle_d_acheminement": "MARSANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88311372596, + 44.640273082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e001460f56cfb6bcb1f605bfe0fee696f4aa548", + "fields": { + "code_commune_insee": "26178", + "nom_de_la_commune": "MENGLON", + "code_postal": "26410", + "coordonnees_gps": [ + 44.6581977014, + 5.47305848726 + ], + "libelle_d_acheminement": "MENGLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47305848726, + 44.6581977014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50c6c2f6376ced7c1606e8389fa69d982cd7564a", + "fields": { + "code_commune_insee": "26180", + "nom_de_la_commune": "MERINDOL LES OLIVIERS", + "code_postal": "26170", + "coordonnees_gps": [ + 44.2725055479, + 5.1684408091 + ], + "libelle_d_acheminement": "MERINDOL LES OLIVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1684408091, + 44.2725055479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "345521fde6a85dd0768980c6a90692ece456db6f", + "fields": { + "code_commune_insee": "26181", + "nom_de_la_commune": "MEVOUILLON", + "code_postal": "26560", + "coordonnees_gps": [ + 44.2346171686, + 5.47885128912 + ], + "libelle_d_acheminement": "MEVOUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47885128912, + 44.2346171686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04f2c2798af12e1c6c5f5203b142e3b746d0533d", + "fields": { + "code_commune_insee": "26186", + "nom_de_la_commune": "MISCON", + "code_postal": "26310", + "coordonnees_gps": [ + 44.6243253261, + 5.51425703083 + ], + "libelle_d_acheminement": "MISCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51425703083, + 44.6243253261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be09c90769665680c2aa0d6c51b09c494ac63f89", + "fields": { + "code_commune_insee": "26196", + "nom_de_la_commune": "MONTELEGER", + "code_postal": "26760", + "coordonnees_gps": [ + 44.8558469973, + 4.92784684928 + ], + "libelle_d_acheminement": "MONTELEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92784684928, + 44.8558469973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "114223ee07b407fdc425f1f8ce72870cb5afd346", + "fields": { + "ligne_5": "FAUCONNIERES", + "code_commune_insee": "26197", + "libelle_d_acheminement": "MONTELIER", + "code_postal": "26120", + "nom_de_la_commune": "MONTELIER", + "coordonnees_gps": [ + 44.9426423498, + 5.02096570564 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02096570564, + 44.9426423498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0db42df087bee1b7c0afe7515ad664370769a85c", + "fields": { + "code_commune_insee": "26205", + "nom_de_la_commune": "MONTMAUR EN DIOIS", + "code_postal": "26150", + "coordonnees_gps": [ + 44.6780171902, + 5.36466101369 + ], + "libelle_d_acheminement": "MONTMAUR EN DIOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36466101369, + 44.6780171902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae132d41f320d7dcf5573e57e1fd6ab7b735ac8a", + "fields": { + "code_commune_insee": "26211", + "nom_de_la_commune": "MONTSEGUR SUR LAUZON", + "code_postal": "26130", + "coordonnees_gps": [ + 44.3674930757, + 4.85732107832 + ], + "libelle_d_acheminement": "MONTSEGUR SUR LAUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85732107832, + 44.3674930757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b89fa401fd19aefa8b11611240259d83984efc4", + "fields": { + "code_commune_insee": "26213", + "nom_de_la_commune": "MORAS EN VALLOIRE", + "code_postal": "26210", + "coordonnees_gps": [ + 45.2853226876, + 4.99962084513 + ], + "libelle_d_acheminement": "MORAS EN VALLOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99962084513, + 45.2853226876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96b3504d5c20f0b307da44b28bcaa3b3e495a68c", + "fields": { + "code_commune_insee": "26216", + "nom_de_la_commune": "LA MOTTE DE GALAURE", + "code_postal": "26240", + "coordonnees_gps": [ + 45.1987797497, + 4.90084017437 + ], + "libelle_d_acheminement": "LA MOTTE DE GALAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90084017437, + 45.1987797497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8755e17592d1ae79ecabc5e3d198eedec441f73", + "fields": { + "code_commune_insee": "26222", + "nom_de_la_commune": "ORCINAS", + "code_postal": "26220", + "coordonnees_gps": [ + 44.5484783973, + 5.13762227553 + ], + "libelle_d_acheminement": "ORCINAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13762227553, + 44.5484783973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3ba68bc4b0dfd7f82638af0df85b6bc048a2a1b", + "fields": { + "code_commune_insee": "26223", + "nom_de_la_commune": "ORIOL EN ROYANS", + "code_postal": "26190", + "coordonnees_gps": [ + 44.9897441027, + 5.25074981876 + ], + "libelle_d_acheminement": "ORIOL EN ROYANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25074981876, + 44.9897441027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94e15789a0866ccf1340526f20be6895f40d0873", + "fields": { + "code_commune_insee": "26225", + "nom_de_la_commune": "PARNANS", + "code_postal": "26750", + "coordonnees_gps": [ + 45.1132787214, + 5.15915280668 + ], + "libelle_d_acheminement": "PARNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15915280668, + 45.1132787214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0c0eea7c5980dc07c1e8ba8c85d2db7a74a50c3", + "fields": { + "code_commune_insee": "26231", + "nom_de_la_commune": "PEYRINS", + "code_postal": "26380", + "coordonnees_gps": [ + 45.0998567072, + 5.04564040404 + ], + "libelle_d_acheminement": "PEYRINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04564040404, + 45.0998567072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95140be12840885bb017ccd1cfc91c9c6ba1dce5", + "fields": { + "code_commune_insee": "26233", + "nom_de_la_commune": "PIEGON", + "code_postal": "26110", + "coordonnees_gps": [ + 44.298616176, + 5.12425949306 + ], + "libelle_d_acheminement": "PIEGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12425949306, + 44.298616176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfd2023edb461055a6e5cf3ca296ad69926b4f1b", + "fields": { + "code_commune_insee": "26242", + "nom_de_la_commune": "LE POET EN PERCIP", + "code_postal": "26170", + "coordonnees_gps": [ + 44.2484174261, + 5.39418333523 + ], + "libelle_d_acheminement": "LE POET EN PERCIP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39418333523, + 44.2484174261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "901526ed64ffb3779e394a10d977c53ce1e2e295", + "fields": { + "code_commune_insee": "26246", + "nom_de_la_commune": "PONET ET ST AUBAN", + "code_postal": "26150", + "coordonnees_gps": [ + 44.7786630225, + 5.31353103618 + ], + "libelle_d_acheminement": "PONET ET ST AUBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31353103618, + 44.7786630225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19115eb88f14a68ee10fa414f18cba1febadcb2f", + "fields": { + "code_commune_insee": "26247", + "nom_de_la_commune": "PONSAS", + "code_postal": "26240", + "coordonnees_gps": [ + 45.1572964733, + 4.84232290007 + ], + "libelle_d_acheminement": "PONSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84232290007, + 45.1572964733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3688a4d5f52f45a9a9072a61b904bb82af9588bc", + "fields": { + "code_commune_insee": "26248", + "nom_de_la_commune": "PONTAIX", + "code_postal": "26150", + "coordonnees_gps": [ + 44.7530320262, + 5.25667519527 + ], + "libelle_d_acheminement": "PONTAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25667519527, + 44.7530320262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18a39781962d54978f4640d474beafbdb1b3291b", + "fields": { + "code_commune_insee": "26250", + "nom_de_la_commune": "PONT DE L ISERE", + "code_postal": "26600", + "coordonnees_gps": [ + 45.015193999, + 4.88159850923 + ], + "libelle_d_acheminement": "PONT DE L ISERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88159850923, + 45.015193999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "009811eabdb116a290c451425a0303be0d84a47f", + "fields": { + "code_commune_insee": "26253", + "nom_de_la_commune": "POYOLS", + "code_postal": "26310", + "coordonnees_gps": [ + 44.5978410842, + 5.41795435334 + ], + "libelle_d_acheminement": "POYOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41795435334, + 44.5978410842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "249c62e09e3a244bf9aa65f6875be9e0bdc5aaba", + "fields": { + "code_commune_insee": "26254", + "nom_de_la_commune": "PRADELLE", + "code_postal": "26340", + "coordonnees_gps": [ + 44.6207509256, + 5.28093626176 + ], + "libelle_d_acheminement": "PRADELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28093626176, + 44.6207509256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73226b273aa831e4d7e061905b0f6a9c4581c386", + "fields": { + "code_commune_insee": "26256", + "nom_de_la_commune": "PROPIAC", + "code_postal": "26170", + "coordonnees_gps": [ + 44.276584707, + 5.20940872423 + ], + "libelle_d_acheminement": "PROPIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20940872423, + 44.276584707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b36f9eb35311f3743c13a7d06855dafb59d84fb", + "fields": { + "code_commune_insee": "26258", + "nom_de_la_commune": "PUY ST MARTIN", + "code_postal": "26450", + "coordonnees_gps": [ + 44.6239658602, + 4.97170950071 + ], + "libelle_d_acheminement": "PUY ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97170950071, + 44.6239658602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf8a027ec8c5a3f5f89a6a963f79ea4b9017c38a", + "fields": { + "ligne_5": "BECONNE", + "code_commune_insee": "26276", + "libelle_d_acheminement": "ROCHE ST SECRET BECONNE", + "code_postal": "26770", + "nom_de_la_commune": "ROCHE ST SECRET BECONNE", + "coordonnees_gps": [ + 44.4794711138, + 5.04276010512 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04276010512, + 44.4794711138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06b36a22082f4c4d782528dcde6976bd06330258", + "fields": { + "code_commune_insee": "26283", + "nom_de_la_commune": "ROTTIER", + "code_postal": "26470", + "coordonnees_gps": [ + 44.4781523568, + 5.41659304244 + ], + "libelle_d_acheminement": "ROTTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41659304244, + 44.4781523568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5157ad9adfbfa11e1876ed25bed5e68ad021e2df", + "fields": { + "code_commune_insee": "26287", + "nom_de_la_commune": "ROYNAC", + "code_postal": "26450", + "coordonnees_gps": [ + 44.648273557, + 4.93406395958 + ], + "libelle_d_acheminement": "ROYNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93406395958, + 44.648273557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "457a6b65b75f4161d25c01f1c1efb232ca644d5e", + "fields": { + "code_commune_insee": "26289", + "nom_de_la_commune": "SAILLANS", + "code_postal": "26340", + "coordonnees_gps": [ + 44.6950992434, + 5.18821011414 + ], + "libelle_d_acheminement": "SAILLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18821011414, + 44.6950992434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75377461ae99a7ad4802c1cdad6e73b5502e7a1a", + "fields": { + "code_commune_insee": "26311", + "nom_de_la_commune": "ST LAURENT EN ROYANS", + "code_postal": "26190", + "coordonnees_gps": [ + 45.0096991551, + 5.34660172162 + ], + "libelle_d_acheminement": "ST LAURENT EN ROYANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34660172162, + 45.0096991551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc42fca0ce04ac42ff0bfa245e4c3f0425240a1a", + "fields": { + "code_commune_insee": "26318", + "nom_de_la_commune": "ST MAY", + "code_postal": "26510", + "coordonnees_gps": [ + 44.4246891734, + 5.32934515143 + ], + "libelle_d_acheminement": "ST MAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32934515143, + 44.4246891734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f93c0056ff43ac96d12ab794b1a173dddd961b8c", + "fields": { + "code_commune_insee": "26320", + "nom_de_la_commune": "ST NAZAIRE EN ROYANS", + "code_postal": "26190", + "coordonnees_gps": [ + 45.0573449267, + 5.24447209111 + ], + "libelle_d_acheminement": "ST NAZAIRE EN ROYANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24447209111, + 45.0573449267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "732f80c5f259c15af340d1cc6fd7e41b3c1b4b8d", + "fields": { + "code_commune_insee": "26323", + "nom_de_la_commune": "ST PAUL LES ROMANS", + "code_postal": "26750", + "coordonnees_gps": [ + 45.0586462417, + 5.12685510741 + ], + "libelle_d_acheminement": "ST PAUL LES ROMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12685510741, + 45.0586462417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "491a93ed49d6e2e99a493fcbb611a2a13ac3eff2", + "fields": { + "code_commune_insee": "26330", + "nom_de_la_commune": "ST SORLIN EN VALLOIRE", + "code_postal": "26210", + "coordonnees_gps": [ + 45.2782053024, + 4.95829922451 + ], + "libelle_d_acheminement": "ST SORLIN EN VALLOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95829922451, + 45.2782053024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76650022381ee57ed889f5f172f878bf7ca41ec1", + "fields": { + "code_commune_insee": "26331", + "nom_de_la_commune": "ST THOMAS EN ROYANS", + "code_postal": "26190", + "coordonnees_gps": [ + 45.049388788, + 5.29226972009 + ], + "libelle_d_acheminement": "ST THOMAS EN ROYANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29226972009, + 45.049388788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beb934325653a59a22e2e61bbed7a965479bcb77", + "fields": { + "code_commune_insee": "26333", + "nom_de_la_commune": "ST VALLIER", + "code_postal": "26240", + "coordonnees_gps": [ + 45.1794682912, + 4.8198371003 + ], + "libelle_d_acheminement": "ST VALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8198371003, + 45.1794682912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47963644ea46b4c4c1775b07327d46853613eeb2", + "fields": { + "code_commune_insee": "26340", + "nom_de_la_commune": "SEDERON", + "code_postal": "26560", + "coordonnees_gps": [ + 44.1975046499, + 5.55416093649 + ], + "libelle_d_acheminement": "SEDERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55416093649, + 44.1975046499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a6662eceac68e4d81c7274750bfbeb08bdf1d29", + "fields": { + "code_commune_insee": "26341", + "nom_de_la_commune": "SERVES SUR RHONE", + "code_postal": "26600", + "coordonnees_gps": [ + 45.1418386958, + 4.83109226677 + ], + "libelle_d_acheminement": "SERVES SUR RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83109226677, + 45.1418386958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0ccef5e4af265bb942e488e390a6e31fe64b8da", + "fields": { + "code_commune_insee": "26362", + "nom_de_la_commune": "VALENCE", + "code_postal": "26000", + "coordonnees_gps": [ + 44.9229811667, + 4.91444013136 + ], + "libelle_d_acheminement": "VALENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91444013136, + 44.9229811667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecffe86f4266361918f355370ef4c9d2649dbe11", + "fields": { + "code_commune_insee": "26364", + "nom_de_la_commune": "VASSIEUX EN VERCORS", + "code_postal": "26420", + "coordonnees_gps": [ + 44.8802743526, + 5.3741063802 + ], + "libelle_d_acheminement": "VASSIEUX EN VERCORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3741063802, + 44.8802743526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "974e947d287b82d9cc351c582469d26d5155d648", + "fields": { + "code_commune_insee": "26365", + "nom_de_la_commune": "VAUNAVEYS LA ROCHETTE", + "code_postal": "26400", + "coordonnees_gps": [ + 44.7780399465, + 5.03229421632 + ], + "libelle_d_acheminement": "VAUNAVEYS LA ROCHETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03229421632, + 44.7780399465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f72f3b259f80bcb20138c5fef1dff9335b4bc73b", + "fields": { + "code_commune_insee": "26374", + "nom_de_la_commune": "VILLEBOIS LES PINS", + "code_postal": "05700", + "coordonnees_gps": [ + 44.3195776951, + 5.59771630114 + ], + "libelle_d_acheminement": "VILLEBOIS LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59771630114, + 44.3195776951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44033ca8b1e84f399e27dcaf0bcce5a2d32e441e", + "fields": { + "code_commune_insee": "26378", + "nom_de_la_commune": "VOLVENT", + "code_postal": "26470", + "coordonnees_gps": [ + 44.5680273375, + 5.35010817768 + ], + "libelle_d_acheminement": "VOLVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35010817768, + 44.5680273375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e50a6e1a5a20d4bf3682bb96058e29efd9c4d84a", + "fields": { + "code_commune_insee": "26381", + "nom_de_la_commune": "JAILLANS", + "code_postal": "26300", + "coordonnees_gps": [ + 45.0288659081, + 5.16948509567 + ], + "libelle_d_acheminement": "JAILLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16948509567, + 45.0288659081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b5422529cb2d62fd5376eb75ee5daa60f861bea", + "fields": { + "code_commune_insee": "26382", + "nom_de_la_commune": "ST VINCENT LA COMMANDERIE", + "code_postal": "26300", + "coordonnees_gps": [ + 44.9323647343, + 5.12947887915 + ], + "libelle_d_acheminement": "ST VINCENT LA COMMANDERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12947887915, + 44.9323647343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93946972b7c6e6d7e018c1a4a3103329d6151ca4", + "fields": { + "code_commune_insee": "27004", + "nom_de_la_commune": "AIGLEVILLE", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0059752091, + 1.42580857291 + ], + "libelle_d_acheminement": "AIGLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42580857291, + 49.0059752091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feb0cb1e510c3ac67242b5e3eb10f469e424004b", + "fields": { + "code_commune_insee": "27009", + "nom_de_la_commune": "AMBENAY", + "code_postal": "27250", + "coordonnees_gps": [ + 48.8402151816, + 0.73972567335 + ], + "libelle_d_acheminement": "AMBENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73972567335, + 48.8402151816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e3e224b40eeb70e16a6ee006fb54a0926ba3e2d", + "fields": { + "code_commune_insee": "27016", + "nom_de_la_commune": "LES ANDELYS", + "code_postal": "27700", + "coordonnees_gps": [ + 49.2459086784, + 1.42805086604 + ], + "libelle_d_acheminement": "LES ANDELYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42805086604, + 49.2459086784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc19801cf2e5028a28ae9df2af45ece2d73cb65b", + "fields": { + "code_commune_insee": "27038", + "nom_de_la_commune": "LES BARILS", + "code_postal": "27130", + "coordonnees_gps": [ + 48.7252205742, + 0.8185826173 + ], + "libelle_d_acheminement": "LES BARILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.8185826173, + 48.7252205742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "800731aa5d34ffdaa32cf15441b70e2135f7b943", + "fields": { + "code_commune_insee": "27043", + "nom_de_la_commune": "LES BAUX DE BRETEUIL", + "code_postal": "27160", + "coordonnees_gps": [ + 48.8665244592, + 0.801607378601 + ], + "libelle_d_acheminement": "LES BAUX DE BRETEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.801607378601, + 48.8665244592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24db2d784f2e301f90a665a1465384c4431c147e", + "fields": { + "ligne_5": "BOSC RENOULT EN OUCHE", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27330", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd4314183e86c1194d1ebd77c03a2182ce396b53", + "fields": { + "ligne_5": "GISAY LA COUDRE", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27330", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cb13df3fedaf10a020af3e8e91577cd4a3d772e", + "fields": { + "ligne_5": "LA BARRE EN OUCHE", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27330", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b39bfb4ac32cdee7361e82f0f18e37a43884ee5f", + "fields": { + "ligne_5": "ST AUBIN DES HAYES", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27410", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b996534c862da129a69a47be7cdd2fa472dbeeec", + "fields": { + "code_commune_insee": "27055", + "nom_de_la_commune": "BERENGEVILLE LA CAMPAGNE", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1133913572, + 1.05847119892 + ], + "libelle_d_acheminement": "BERENGEVILLE LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05847119892, + 49.1133913572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e98241c2aedf7c54e277d90f306c788aa35d5de2", + "fields": { + "code_commune_insee": "27061", + "nom_de_la_commune": "BERTHOUVILLE", + "code_postal": "27800", + "coordonnees_gps": [ + 49.1711234427, + 0.622865365942 + ], + "libelle_d_acheminement": "BERTHOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.622865365942, + 49.1711234427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11b171a36108f819a48dc063eb7bec9d6027bc40", + "fields": { + "code_commune_insee": "27064", + "nom_de_la_commune": "BERVILLE SUR MER", + "code_postal": "27210", + "coordonnees_gps": [ + 49.4308635089, + 0.357667188037 + ], + "libelle_d_acheminement": "BERVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.357667188037, + 49.4308635089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a95ca61d211fd0806fc4e8d712cbc119e714525", + "fields": { + "code_commune_insee": "27067", + "nom_de_la_commune": "BEZU ST ELOI", + "code_postal": "27660", + "coordonnees_gps": [ + 49.304670197, + 1.68309214752 + ], + "libelle_d_acheminement": "BEZU ST ELOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68309214752, + 49.304670197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10e7767798245026a024558463b0f7b2c73cfdcb", + "fields": { + "ligne_5": "BOISEMONT", + "code_commune_insee": "27070", + "libelle_d_acheminement": "FRENELLES EN VEXIN", + "code_postal": "27150", + "nom_de_la_commune": "FRENELLES EN VEXIN", + "coordonnees_gps": [ + 49.2925439055, + 1.49018837893 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49018837893, + 49.2925439055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acbbcba30a18bd7f527342baa3d2a7c5580ccad7", + "fields": { + "code_commune_insee": "27077", + "nom_de_la_commune": "BOISSEY LE CHATEL", + "code_postal": "27520", + "coordonnees_gps": [ + 49.2718051513, + 0.781442206023 + ], + "libelle_d_acheminement": "BOISSEY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.781442206023, + 49.2718051513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8cb4ee3b732eaffafd3d66c8cabc9d48e3cb54b", + "fields": { + "code_commune_insee": "27083", + "nom_de_la_commune": "BONNEVILLE APTOT", + "code_postal": "27290", + "coordonnees_gps": [ + 49.2595144093, + 0.751526070144 + ], + "libelle_d_acheminement": "BONNEVILLE APTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.751526070144, + 49.2595144093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "126ba8a5551358c59264b80fa51d5aeec2b08a41", + "fields": { + "code_commune_insee": "27106", + "nom_de_la_commune": "BOURNAINVILLE FAVEROLLES", + "code_postal": "27230", + "coordonnees_gps": [ + 49.122899642, + 0.50099426931 + ], + "libelle_d_acheminement": "BOURNAINVILLE FAVEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50099426931, + 49.122899642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7cf1042904b8a1b7d56e91912b6a656151b8bea", + "fields": { + "code_commune_insee": "27110", + "nom_de_la_commune": "BRESTOT", + "code_postal": "27350", + "coordonnees_gps": [ + 49.3428492268, + 0.68056972384 + ], + "libelle_d_acheminement": "BRESTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68056972384, + 49.3428492268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd74912e9da227c8b77020a6c1177f53d1545323", + "fields": { + "code_commune_insee": "27111", + "nom_de_la_commune": "BRETAGNOLLES", + "code_postal": "27220", + "coordonnees_gps": [ + 48.946568834, + 1.34129302634 + ], + "libelle_d_acheminement": "BRETAGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34129302634, + 48.946568834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb5c55c4a0a016443fc1ede5e027341e5b51e2ff", + "fields": { + "ligne_5": "CINTRAY", + "code_commune_insee": "27112", + "libelle_d_acheminement": "BRETEUIL", + "code_postal": "27160", + "nom_de_la_commune": "BRETEUIL", + "coordonnees_gps": [ + 48.8525387012, + 0.899890466074 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.899890466074, + 48.8525387012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40631ab6d748b7012d435ab6f7ad50e5e5a173e8", + "fields": { + "ligne_5": "LA GUEROULDE", + "code_commune_insee": "27112", + "libelle_d_acheminement": "BRETEUIL", + "code_postal": "27160", + "nom_de_la_commune": "BRETEUIL", + "coordonnees_gps": [ + 48.8525387012, + 0.899890466074 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.899890466074, + 48.8525387012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aa3a3a215f8033c0166d8d5b9a49df0f43a548a", + "fields": { + "code_commune_insee": "27118", + "nom_de_la_commune": "BROSVILLE", + "code_postal": "27930", + "coordonnees_gps": [ + 49.1097913222, + 1.11344092166 + ], + "libelle_d_acheminement": "BROSVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11344092166, + 49.1097913222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "384706a81b17f5c80c5ce6746952da3e5289d44c", + "fields": { + "code_commune_insee": "27125", + "nom_de_la_commune": "CALLEVILLE", + "code_postal": "27800", + "coordonnees_gps": [ + 49.1904141623, + 0.7558527668 + ], + "libelle_d_acheminement": "CALLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7558527668, + 49.1904141623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3a6094f2828ddb3627ff4b36e2382c996b818f8", + "fields": { + "code_commune_insee": "27126", + "nom_de_la_commune": "CAMPIGNY", + "code_postal": "27500", + "coordonnees_gps": [ + 49.317818102, + 0.561573922841 + ], + "libelle_d_acheminement": "CAMPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.561573922841, + 49.317818102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ad7169820354710abc596375d64ac6d3ee76d69", + "fields": { + "code_commune_insee": "27142", + "nom_de_la_commune": "CHAMPENARD", + "code_postal": "27600", + "coordonnees_gps": [ + 49.1071396766, + 1.32806618446 + ], + "libelle_d_acheminement": "CHAMPENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32806618446, + 49.1071396766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce09f2bfbbcd27c8a5adb70144af008f7137c328", + "fields": { + "code_commune_insee": "27149", + "nom_de_la_commune": "LA CHAPELLE HARENG", + "code_postal": "27230", + "coordonnees_gps": [ + 49.1113997335, + 0.417172283408 + ], + "libelle_d_acheminement": "LA CHAPELLE HARENG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.417172283408, + 49.1113997335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad1021a3ca267030b91b5cbede99c5ad9ac7dbf4", + "fields": { + "code_commune_insee": "27153", + "nom_de_la_commune": "CHAUVINCOURT PROVEMONT", + "code_postal": "27150", + "coordonnees_gps": [ + 49.2808952315, + 1.64529134367 + ], + "libelle_d_acheminement": "CHAUVINCOURT PROVEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64529134367, + 49.2808952315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "616e4bcef23d277e1db2dea51265fa67a12b4930", + "fields": { + "code_commune_insee": "27154", + "nom_de_la_commune": "CHAVIGNY BAILLEUL", + "code_postal": "27220", + "coordonnees_gps": [ + 48.8800655781, + 1.19622692013 + ], + "libelle_d_acheminement": "CHAVIGNY BAILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19622692013, + 48.8800655781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "909d6b1ff518e1fe7efe918481642ea5c9760bdd", + "fields": { + "ligne_5": "ST DENIS DU BEHELAN", + "code_commune_insee": "27157", + "libelle_d_acheminement": "MARBOIS", + "code_postal": "27160", + "nom_de_la_commune": "MARBOIS", + "coordonnees_gps": [ + 48.8910449707, + 0.93590219795 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93590219795, + 48.8910449707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a84ac45787dbb8ade59da7127fa3b6cf00a21579", + "fields": { + "code_commune_insee": "27167", + "nom_de_la_commune": "CONDE SUR RISLE", + "code_postal": "27290", + "coordonnees_gps": [ + 49.3076008928, + 0.608409242024 + ], + "libelle_d_acheminement": "CONDE SUR RISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.608409242024, + 49.3076008928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "173744c085c2745f265d101e414c42e17e91b96f", + "fields": { + "code_commune_insee": "27171", + "nom_de_la_commune": "LE CORMIER", + "code_postal": "27120", + "coordonnees_gps": [ + 48.9848531397, + 1.29682786078 + ], + "libelle_d_acheminement": "LE CORMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29682786078, + 48.9848531397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab3ece842c45b0aed010cf2d6a96bc31ad5570ea", + "fields": { + "code_commune_insee": "27176", + "nom_de_la_commune": "COUDRAY", + "code_postal": "27150", + "coordonnees_gps": [ + 49.3432979436, + 1.49682466931 + ], + "libelle_d_acheminement": "COUDRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49682466931, + 49.3432979436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "261506b1fdcf98bc7516da1ffe2e80483a2c668a", + "fields": { + "code_commune_insee": "27190", + "nom_de_la_commune": "CROISY SUR EURE", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0260942354, + 1.34202925312 + ], + "libelle_d_acheminement": "CROISY SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34202925312, + 49.0260942354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "762fab92bf3095d2382a3b93ee83d1ad63c2dccf", + "fields": { + "ligne_5": "CRETON", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27240", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd85b20dd9db881cb9aeddaad1d747a2f7d5cb5e", + "fields": { + "code_commune_insee": "27203", + "nom_de_la_commune": "DOUAINS", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0439101379, + 1.43121534978 + ], + "libelle_d_acheminement": "DOUAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43121534978, + 49.0439101379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f39c0057698b225544b1122948b101c78e39946d", + "fields": { + "code_commune_insee": "27206", + "nom_de_la_commune": "DROISY", + "code_postal": "27320", + "coordonnees_gps": [ + 48.7975773096, + 1.1258906091 + ], + "libelle_d_acheminement": "DROISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1258906091, + 48.7975773096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28abd0b9a3191eac85096bf444e89ef5e0ca5b7c", + "fields": { + "ligne_5": "PANILLEUSE", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27510", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "182eef9a92dc3bd77c9b8ea70b33e726277b73fa", + "fields": { + "ligne_5": "FOURS EN VEXIN", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27630", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35b8f4176fa65ce37583ca1753d5ea005c09e47e", + "fields": { + "code_commune_insee": "27214", + "nom_de_la_commune": "ECOUIS", + "code_postal": "27440", + "coordonnees_gps": [ + 49.3066926655, + 1.42999721744 + ], + "libelle_d_acheminement": "ECOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42999721744, + 49.3066926655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18ce519656f4d92b04bbefa2248a6c6f2dd76c34", + "fields": { + "code_commune_insee": "27215", + "nom_de_la_commune": "ECQUETOT", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1695457019, + 1.01305919876 + ], + "libelle_d_acheminement": "ECQUETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01305919876, + 49.1695457019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e88fb33bbbc0899ade94fdcbe5fc32f830bb0c4e", + "fields": { + "code_commune_insee": "27222", + "nom_de_la_commune": "EPREVILLE EN LIEUVIN", + "code_postal": "27560", + "coordonnees_gps": [ + 49.2051733652, + 0.538408171627 + ], + "libelle_d_acheminement": "EPREVILLE EN LIEUVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.538408171627, + 49.2051733652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "004db2f5d47c9bfcd30c1aef15e03752c1b266a5", + "fields": { + "code_commune_insee": "27238", + "nom_de_la_commune": "FERRIERES HAUT CLOCHER", + "code_postal": "27190", + "coordonnees_gps": [ + 49.0203824794, + 0.987492004365 + ], + "libelle_d_acheminement": "FERRIERES HAUT CLOCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.987492004365, + 49.0203824794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79072eefcd1dba3b3de6b67c245ed9a62e83f9b3", + "fields": { + "code_commune_insee": "27239", + "nom_de_la_commune": "FERRIERES ST HILAIRE", + "code_postal": "27270", + "coordonnees_gps": [ + 49.0283010242, + 0.570153150904 + ], + "libelle_d_acheminement": "FERRIERES ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.570153150904, + 49.0283010242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d1f9bc9452b4eb3ec394e8eddbf48c44f9a7f2c", + "fields": { + "code_commune_insee": "27251", + "nom_de_la_commune": "FONTAINE L ABBE", + "code_postal": "27470", + "coordonnees_gps": [ + 49.0883291785, + 0.687966226442 + ], + "libelle_d_acheminement": "FONTAINE L ABBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.687966226442, + 49.0883291785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f0d9ccd271cef9f664e3dc26dd3db0916e937d5", + "fields": { + "ligne_5": "FOURMETOT", + "code_commune_insee": "27263", + "libelle_d_acheminement": "LE PERREY", + "code_postal": "27500", + "nom_de_la_commune": "LE PERREY", + "coordonnees_gps": [ + 49.3782168182, + 0.574020669603 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.574020669603, + 49.3782168182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "194e8558943da5114fd7e610ffd90354f5438aa8", + "fields": { + "ligne_5": "ST THURIEN", + "code_commune_insee": "27263", + "libelle_d_acheminement": "LE PERREY", + "code_postal": "27680", + "nom_de_la_commune": "LE PERREY", + "coordonnees_gps": [ + 49.3782168182, + 0.574020669603 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.574020669603, + 49.3782168182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1e47fddc3b59fe1ec1536512325b9502a7a80b0", + "fields": { + "code_commune_insee": "27267", + "nom_de_la_commune": "FRENEUSE SUR RISLE", + "code_postal": "27290", + "coordonnees_gps": [ + 49.2462632726, + 0.671497425624 + ], + "libelle_d_acheminement": "FRENEUSE SUR RISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.671497425624, + 49.2462632726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e936d821d8e1d4ddb7f7ff73a50b7f89ae336ed", + "fields": { + "ligne_5": "GARENCIERES", + "code_commune_insee": "27277", + "libelle_d_acheminement": "LA BARONNIE", + "code_postal": "27220", + "nom_de_la_commune": "LA BARONNIE", + "coordonnees_gps": [ + 48.9496964914, + 1.25678069483 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25678069483, + 48.9496964914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ee8e593714250f0034983f13cc2f78b7ad8d4a8", + "fields": { + "code_commune_insee": "27281", + "nom_de_la_commune": "GAUDREVILLE LA RIVIERE", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9601606074, + 1.0298861236 + ], + "libelle_d_acheminement": "GAUDREVILLE LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0298861236, + 48.9601606074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43f64cff630968b7b1ee32ebee45b55c54e22318", + "fields": { + "code_commune_insee": "27282", + "nom_de_la_commune": "GAUVILLE LA CAMPAGNE", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0492815413, + 1.08358712088 + ], + "libelle_d_acheminement": "GAUVILLE LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08358712088, + 49.0492815413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3b79cc754aac8632205fd5e20c1fd10ca0f5e79", + "fields": { + "code_commune_insee": "27285", + "nom_de_la_commune": "GIVERNY", + "code_postal": "27620", + "coordonnees_gps": [ + 49.0819438915, + 1.53288773518 + ], + "libelle_d_acheminement": "GIVERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53288773518, + 49.0819438915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9683a26e1aab42227cbfdd55399f911163da1e50", + "fields": { + "code_commune_insee": "27288", + "nom_de_la_commune": "GLOS SUR RISLE", + "code_postal": "27290", + "coordonnees_gps": [ + 49.2723717396, + 0.68457116182 + ], + "libelle_d_acheminement": "GLOS SUR RISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68457116182, + 49.2723717396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb63410feec0fbf4124c239b06ecd233c21c7a3a", + "fields": { + "ligne_5": "GOUPILLIERES", + "code_commune_insee": "27290", + "libelle_d_acheminement": "GOUPIL OTHON", + "code_postal": "27170", + "nom_de_la_commune": "GOUPIL OTHON", + "coordonnees_gps": [ + 49.1218249959, + 0.765958514912 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.765958514912, + 49.1218249959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c265d94c870a7df43e29c4de9e9c9dc4e1ed67c8", + "fields": { + "code_commune_insee": "27295", + "nom_de_la_commune": "GRAND CAMP", + "code_postal": "27270", + "coordonnees_gps": [ + 49.0440587541, + 0.533720192611 + ], + "libelle_d_acheminement": "GRAND CAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.533720192611, + 49.0440587541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "226c517cf70d0a35e0f5740687f92e429b2b3b05", + "fields": { + "code_commune_insee": "27307", + "nom_de_la_commune": "GUISENIERS", + "code_postal": "27700", + "coordonnees_gps": [ + 49.2141853933, + 1.47845934906 + ], + "libelle_d_acheminement": "GUISENIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47845934906, + 49.2141853933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a67c414f4a00bf209ce478b839b6a18e7f1120ce", + "fields": { + "code_commune_insee": "27310", + "nom_de_la_commune": "HACQUEVILLE", + "code_postal": "27150", + "coordonnees_gps": [ + 49.2818666204, + 1.55751068434 + ], + "libelle_d_acheminement": "HACQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55751068434, + 49.2818666204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9584db94f5420a184d7426f26877dc55bd43073b", + "fields": { + "code_commune_insee": "27322", + "nom_de_la_commune": "LA HAYE MALHERBE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.2372337967, + 1.06625693496 + ], + "libelle_d_acheminement": "LA HAYE MALHERBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06625693496, + 49.2372337967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b1a9573f4a1063add2d6396056e83f0a17e9e8d", + "fields": { + "code_commune_insee": "27330", + "nom_de_la_commune": "HERQUEVILLE", + "code_postal": "27430", + "coordonnees_gps": [ + 49.2438082894, + 1.2734536146 + ], + "libelle_d_acheminement": "HERQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2734536146, + 49.2438082894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb011a5b15312a35b3cf5dd3fbb23d7d456bcdd0", + "fields": { + "code_commune_insee": "27332", + "nom_de_la_commune": "HEUDEBOUVILLE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.1927471606, + 1.23713234517 + ], + "libelle_d_acheminement": "HEUDEBOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23713234517, + 49.1927471606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0cbfddd4b09ee17ec9b079091d6e48590321e57", + "fields": { + "code_commune_insee": "27335", + "nom_de_la_commune": "HEUDREVILLE SUR EURE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.1320841365, + 1.18870983275 + ], + "libelle_d_acheminement": "HEUDREVILLE SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18870983275, + 49.1320841365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "279163c2548a3cf338b55f66e689f8b68b1f31d4", + "fields": { + "code_commune_insee": "27337", + "nom_de_la_commune": "HEUQUEVILLE", + "code_postal": "27700", + "coordonnees_gps": [ + 49.2872109169, + 1.32070670028 + ], + "libelle_d_acheminement": "HEUQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32070670028, + 49.2872109169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4781e223498b7722c3d8c10069f417f2e71a6924", + "fields": { + "code_commune_insee": "27341", + "nom_de_la_commune": "L HOSMES", + "code_postal": "27570", + "coordonnees_gps": [ + 48.7896934052, + 1.03144650872 + ], + "libelle_d_acheminement": "L HOSMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03144650872, + 48.7896934052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "570d286ea4f869109f9238daeb415ffbed4bd6ae", + "fields": { + "code_commune_insee": "27345", + "nom_de_la_commune": "LA HOUSSAYE", + "code_postal": "27410", + "coordonnees_gps": [ + 48.9981469161, + 0.800464578361 + ], + "libelle_d_acheminement": "LA HOUSSAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.800464578361, + 48.9981469161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84b22860a8db22ab34601487735a0ed082cb51ed", + "fields": { + "code_commune_insee": "27347", + "nom_de_la_commune": "HUEST", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0369994127, + 1.20781487064 + ], + "libelle_d_acheminement": "HUEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20781487064, + 49.0369994127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6694d719a21bf36bcb3afef3b7212184f16c7310", + "fields": { + "code_commune_insee": "27349", + "nom_de_la_commune": "ILLEVILLE SUR MONTFORT", + "code_postal": "27290", + "coordonnees_gps": [ + 49.3191305181, + 0.709396511927 + ], + "libelle_d_acheminement": "ILLEVILLE SUR MONTFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.709396511927, + 49.3191305181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99c99a0e8c7ecb8a5be092b6ec07590cd4baa4fe", + "fields": { + "code_commune_insee": "27361", + "nom_de_la_commune": "LA LANDE ST LEGER", + "code_postal": "27210", + "coordonnees_gps": [ + 49.2976910975, + 0.336083900968 + ], + "libelle_d_acheminement": "LA LANDE ST LEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.336083900968, + 49.2976910975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bd1cdf0053937e8e55b07a695403841b779650e", + "fields": { + "code_commune_insee": "27363", + "nom_de_la_commune": "LE LANDIN", + "code_postal": "27350", + "coordonnees_gps": [ + 49.4067670559, + 0.803595521754 + ], + "libelle_d_acheminement": "LE LANDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.803595521754, + 49.4067670559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e4d1b1c274eb7a7efb4bac91bf320f1b3be5eb1", + "fields": { + "code_commune_insee": "27375", + "nom_de_la_commune": "LOUVIERS", + "code_postal": "27400", + "coordonnees_gps": [ + 49.2206099164, + 1.15340030158 + ], + "libelle_d_acheminement": "LOUVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15340030158, + 49.2206099164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e6228fa548f8af231e35fb88b1f3d65c0d2d653", + "fields": { + "code_commune_insee": "27384", + "nom_de_la_commune": "MANNEVILLE LA RAOULT", + "code_postal": "27210", + "coordonnees_gps": [ + 49.3687031435, + 0.327624616931 + ], + "libelle_d_acheminement": "MANNEVILLE LA RAOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.327624616931, + 49.3687031435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba6d709510173b1d4e44b9ed720210eeaa7c25f4", + "fields": { + "code_commune_insee": "27395", + "nom_de_la_commune": "MELICOURT", + "code_postal": "27390", + "coordonnees_gps": [ + 48.912160796, + 0.502460109315 + ], + "libelle_d_acheminement": "MELICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.502460109315, + 48.912160796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "392112bdcd691dfce75c7a176a8fc0d09e08df06", + "fields": { + "code_commune_insee": "27396", + "nom_de_la_commune": "MENESQUEVILLE", + "code_postal": "27850", + "coordonnees_gps": [ + 49.3574004646, + 1.40684415026 + ], + "libelle_d_acheminement": "MENESQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40684415026, + 49.3574004646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92e713970f9ba57747632433968d915a8ae0a96d", + "fields": { + "code_commune_insee": "27397", + "nom_de_la_commune": "MENILLES", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0388433559, + 1.37049652274 + ], + "libelle_d_acheminement": "MENILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37049652274, + 49.0388433559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e25b374f861d1c60cfa38ca204dacc199670bdb4", + "fields": { + "code_commune_insee": "27401", + "nom_de_la_commune": "LE MESNIL FUGUET", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0730545444, + 1.11399083502 + ], + "libelle_d_acheminement": "LE MESNIL FUGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11399083502, + 49.0730545444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56f5cfbf39c2c248b601cb42b066970099a35041", + "fields": { + "code_commune_insee": "27411", + "nom_de_la_commune": "MOISVILLE", + "code_postal": "27320", + "coordonnees_gps": [ + 48.8482003064, + 1.16604585189 + ], + "libelle_d_acheminement": "MOISVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16604585189, + 48.8482003064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8acafe0b6a9ccd16bea4286807689892678585e4", + "fields": { + "code_commune_insee": "27417", + "nom_de_la_commune": "MORGNY", + "code_postal": "27150", + "coordonnees_gps": [ + 49.377611169, + 1.57826158903 + ], + "libelle_d_acheminement": "MORGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57826158903, + 49.377611169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53d8c8db93c7cb57c1cebccaee84c81fc69ff404", + "fields": { + "code_commune_insee": "27420", + "nom_de_la_commune": "MOUFLAINES", + "code_postal": "27420", + "coordonnees_gps": [ + 49.2445398768, + 1.55531520317 + ], + "libelle_d_acheminement": "MOUFLAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55531520317, + 49.2445398768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e5cc2bba2edfb8b93786566c766544681a4199d", + "fields": { + "code_commune_insee": "27433", + "nom_de_la_commune": "NEUVILLE SUR AUTHOU", + "code_postal": "27800", + "coordonnees_gps": [ + 49.204972332, + 0.628757401036 + ], + "libelle_d_acheminement": "NEUVILLE SUR AUTHOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.628757401036, + 49.204972332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1933ce9a7f6c0472315a3354d964afa9f4168117", + "fields": { + "code_commune_insee": "27437", + "nom_de_la_commune": "NOJEON EN VEXIN", + "code_postal": "27150", + "coordonnees_gps": [ + 49.3291573194, + 1.55624296003 + ], + "libelle_d_acheminement": "NOJEON EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55624296003, + 49.3291573194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c94f000e799ac4040f5c3264988b23a47b2a2c2", + "fields": { + "code_commune_insee": "27444", + "nom_de_la_commune": "LE NOYER EN OUCHE", + "code_postal": "27410", + "coordonnees_gps": [ + 49.0060440557, + 0.761580792819 + ], + "libelle_d_acheminement": "LE NOYER EN OUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.761580792819, + 49.0060440557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6fc12631ed1dd210fb3dd53934fa7e4fe52601b", + "fields": { + "code_commune_insee": "27455", + "nom_de_la_commune": "PIENCOURT", + "code_postal": "27230", + "coordonnees_gps": [ + 49.1715184928, + 0.407698895643 + ], + "libelle_d_acheminement": "PIENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.407698895643, + 49.1715184928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33474a18f7b5ffcfcff350362568e1f5fee6d37a", + "fields": { + "code_commune_insee": "27457", + "nom_de_la_commune": "PISEUX", + "code_postal": "27130", + "coordonnees_gps": [ + 48.772122079, + 0.965747838797 + ], + "libelle_d_acheminement": "PISEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.965747838797, + 48.772122079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "925a0f9daf8f6282c47f48387b99c218fe06624c", + "fields": { + "code_commune_insee": "27466", + "nom_de_la_commune": "LE PLESSIS STE OPPORTUNE", + "code_postal": "27170", + "coordonnees_gps": [ + 49.0701628802, + 0.85595391396 + ], + "libelle_d_acheminement": "LE PLESSIS STE OPPORTUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.85595391396, + 49.0701628802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e33ede29ffd4127e4d00766044fe0c9d446096b", + "fields": { + "ligne_5": "ST GERMAIN VILLAGE", + "code_commune_insee": "27467", + "libelle_d_acheminement": "PONT AUDEMER", + "code_postal": "27500", + "nom_de_la_commune": "PONT AUDEMER", + "coordonnees_gps": [ + 49.3463869637, + 0.533874716445 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.533874716445, + 49.3463869637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "013003adc5b4576b2b8189fcc437643b83f16e86", + "fields": { + "ligne_5": "ST PAUL SUR RISLE", + "code_commune_insee": "27467", + "libelle_d_acheminement": "PONT AUDEMER", + "code_postal": "27500", + "nom_de_la_commune": "PONT AUDEMER", + "coordonnees_gps": [ + 49.3463869637, + 0.533874716445 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.533874716445, + 49.3463869637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3795b5a9f722602b29d064889255fd6f570fb977", + "fields": { + "code_commune_insee": "27468", + "nom_de_la_commune": "PONT AUTHOU", + "code_postal": "27290", + "coordonnees_gps": [ + 49.2423269123, + 0.702222226343 + ], + "libelle_d_acheminement": "PONT AUTHOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.702222226343, + 49.2423269123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e050467a286724bd36b506d4ec64df1da16a3d16", + "fields": { + "code_commune_insee": "27470", + "nom_de_la_commune": "PONT ST PIERRE", + "code_postal": "27360", + "coordonnees_gps": [ + 49.3427460262, + 1.28756480304 + ], + "libelle_d_acheminement": "PONT ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28756480304, + 49.3427460262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee140b863e6ca577e6b3cf323f7085edc2876f67", + "fields": { + "code_commune_insee": "27472", + "nom_de_la_commune": "PORTES", + "code_postal": "27190", + "coordonnees_gps": [ + 49.0251871299, + 0.948263813504 + ], + "libelle_d_acheminement": "PORTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.948263813504, + 49.0251871299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28efaeeeb353ef93a59b2e3ba296d2195e79831e", + "fields": { + "code_commune_insee": "27475", + "nom_de_la_commune": "LA POTERIE MATHIEU", + "code_postal": "27560", + "coordonnees_gps": [ + 49.2525189802, + 0.522008481634 + ], + "libelle_d_acheminement": "LA POTERIE MATHIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.522008481634, + 49.2525189802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff4a18637bab7a38efd4e93cd632bf40d9986140", + "fields": { + "code_commune_insee": "27480", + "nom_de_la_commune": "PUCHAY", + "code_postal": "27150", + "coordonnees_gps": [ + 49.3540348, + 1.52612367067 + ], + "libelle_d_acheminement": "PUCHAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52612367067, + 49.3540348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8430a13303fb0dc71c99e0bf2e58a24dbb66d9e6", + "fields": { + "code_commune_insee": "27483", + "nom_de_la_commune": "QUATREMARE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.1841622689, + 1.08114735197 + ], + "libelle_d_acheminement": "QUATREMARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08114735197, + 49.1841622689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be9c680c3eb25f890131f6dec50395df3e9dcac1", + "fields": { + "code_commune_insee": "27486", + "nom_de_la_commune": "QUITTEBEUF", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1073075931, + 1.00532238081 + ], + "libelle_d_acheminement": "QUITTEBEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00532238081, + 49.1073075931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3c5d7573b18bf4b48a64bac4eb3b157ce77c4bc", + "fields": { + "code_commune_insee": "27507", + "nom_de_la_commune": "ST ANDRE DE L EURE", + "code_postal": "27220", + "coordonnees_gps": [ + 48.9026554238, + 1.27831847187 + ], + "libelle_d_acheminement": "ST ANDRE DE L EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27831847187, + 48.9026554238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fa30c2f9d198e4f32a00a9a0741ce3bf30eaaea", + "fields": { + "code_commune_insee": "27511", + "nom_de_la_commune": "ST AUBIN D ECROSVILLE", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1431219204, + 0.986919369779 + ], + "libelle_d_acheminement": "ST AUBIN D ECROSVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.986919369779, + 49.1431219204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcb63864a956117f2e5f0f98f125baf42617b413", + "fields": { + "ligne_5": "ST AUBIN LE VERTUEUX", + "code_commune_insee": "27516", + "libelle_d_acheminement": "TREIS SANTS EN OUCHE", + "code_postal": "27300", + "nom_de_la_commune": "TREIS SANTS EN OUCHE", + "coordonnees_gps": [ + 49.0593510154, + 0.611660740223 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.611660740223, + 49.0593510154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f54004e4c058f2a2292b4b9f6b9a36e5fab61f5f", + "fields": { + "code_commune_insee": "27518", + "nom_de_la_commune": "ST AUBIN SUR QUILLEBEUF", + "code_postal": "27680", + "coordonnees_gps": [ + 49.4493583444, + 0.52491272728 + ], + "libelle_d_acheminement": "ST AUBIN SUR QUILLEBEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52491272728, + 49.4493583444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e000e4802ca109d85a95b5d4d38b76df9bc51e1", + "fields": { + "code_commune_insee": "27522", + "nom_de_la_commune": "ST CHRISTOPHE SUR CONDE", + "code_postal": "27450", + "coordonnees_gps": [ + 49.2853748479, + 0.600693146112 + ], + "libelle_d_acheminement": "ST CHRISTOPHE SUR CONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.600693146112, + 49.2853748479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c834fcefa9b48a9a60f4f2136bee9d6baeeb8238", + "fields": { + "code_commune_insee": "27527", + "nom_de_la_commune": "ST CYR DE SALERNE", + "code_postal": "27800", + "coordonnees_gps": [ + 49.1855526702, + 0.65343557534 + ], + "libelle_d_acheminement": "ST CYR DE SALERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65343557534, + 49.1855526702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "923d7f0c23686dcfc927ce9b6588cc936c627c8b", + "fields": { + "code_commune_insee": "27529", + "nom_de_la_commune": "ST CYR LA CAMPAGNE", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2504333852, + 1.01944802807 + ], + "libelle_d_acheminement": "ST CYR LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01944802807, + 49.2504333852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec656c9e2c73e7bd19a5c80abc524d491aef081b", + "fields": { + "code_commune_insee": "27535", + "nom_de_la_commune": "ST ELIER", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9837315688, + 0.961361003567 + ], + "libelle_d_acheminement": "ST ELIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.961361003567, + 48.9837315688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "353f719315ad751475470e5f5f9bbbdef7640903", + "fields": { + "ligne_5": "ST JEAN DE LA LEQUERAYE", + "code_commune_insee": "27541", + "libelle_d_acheminement": "LE MESNIL ST JEAN", + "code_postal": "27560", + "nom_de_la_commune": "LE MESNIL ST JEAN", + "coordonnees_gps": [ + 49.210758804, + 0.56657576286 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56657576286, + 49.210758804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9b6345473ecfbc6840622208c8ab15c229d3fce", + "fields": { + "code_commune_insee": "27543", + "nom_de_la_commune": "ST GEORGES MOTEL", + "code_postal": "27710", + "coordonnees_gps": [ + 48.7922570884, + 1.35958388782 + ], + "libelle_d_acheminement": "ST GEORGES MOTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35958388782, + 48.7922570884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a56df895ca03bfd4a124c0a0eda9cecfae86b8e1", + "fields": { + "code_commune_insee": "27547", + "nom_de_la_commune": "ST GERMAIN LA CAMPAGNE", + "code_postal": "27230", + "coordonnees_gps": [ + 49.0522921876, + 0.412852228157 + ], + "libelle_d_acheminement": "ST GERMAIN LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.412852228157, + 49.0522921876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9a08f2ef14d7df403d4d253fd4895b4abfbbb38", + "fields": { + "code_commune_insee": "27552", + "nom_de_la_commune": "ST JEAN DU THENNEY", + "code_postal": "27270", + "coordonnees_gps": [ + 49.0154059263, + 0.458622529157 + ], + "libelle_d_acheminement": "ST JEAN DU THENNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.458622529157, + 49.0154059263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9085a160f31897a81f1288aae6b44c003da1d0d", + "fields": { + "code_commune_insee": "27560", + "nom_de_la_commune": "ST LUC", + "code_postal": "27930", + "coordonnees_gps": [ + 48.9736657666, + 1.23335452626 + ], + "libelle_d_acheminement": "ST LUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23335452626, + 48.9736657666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "768d08f420d323a98e8df6d8289f7428a302333f", + "fields": { + "code_commune_insee": "27563", + "nom_de_la_commune": "ST MARDS DE BLACARVILLE", + "code_postal": "27500", + "coordonnees_gps": [ + 49.376852376, + 0.508559393935 + ], + "libelle_d_acheminement": "ST MARDS DE BLACARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.508559393935, + 49.376852376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69a5e5dc18ecc962fcdff4b9b39d5bdd9ecd1f2b", + "fields": { + "code_commune_insee": "27579", + "nom_de_la_commune": "ST OUEN DE PONTCHEUIL", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2347786793, + 0.950431640532 + ], + "libelle_d_acheminement": "ST OUEN DE PONTCHEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.950431640532, + 49.2347786793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb34fb27c4a347e653ca475ea8ea8c9d084d818f", + "fields": { + "code_commune_insee": "27612", + "nom_de_la_commune": "ST VINCENT DES BOIS", + "code_postal": "27950", + "coordonnees_gps": [ + 49.0600942614, + 1.39380009269 + ], + "libelle_d_acheminement": "ST VINCENT DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39380009269, + 49.0600942614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fae902b9278c0c597e3b0d4937c0fce764533927", + "fields": { + "code_commune_insee": "27624", + "nom_de_la_commune": "SURVILLE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.2013129731, + 1.10240662519 + ], + "libelle_d_acheminement": "SURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10240662519, + 49.2013129731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "120d4e6db6d6e5a5b906ec9ec275faed52b2116e", + "fields": { + "code_commune_insee": "27633", + "nom_de_la_commune": "LES THILLIERS EN VEXIN", + "code_postal": "27420", + "coordonnees_gps": [ + 49.2364605708, + 1.60505156907 + ], + "libelle_d_acheminement": "LES THILLIERS EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60505156907, + 49.2364605708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b1c09f67b45e2528d47196f870957daaa39dd4a", + "fields": { + "code_commune_insee": "27635", + "nom_de_la_commune": "LE THUIT", + "code_postal": "27700", + "coordonnees_gps": [ + 49.2597517999, + 1.367256434 + ], + "libelle_d_acheminement": "LE THUIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.367256434, + 49.2597517999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "136838a2899fabbaa7b83059c564338368840999", + "fields": { + "ligne_5": "LE THUIT ANGER", + "code_commune_insee": "27638", + "libelle_d_acheminement": "LE THUIT DE L OISON", + "code_postal": "27370", + "nom_de_la_commune": "LE THUIT DE L OISON", + "coordonnees_gps": [ + 49.2568957879, + 0.939183220001 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.939183220001, + 49.2568957879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d62aedaa3bbe555e5f3980be2c15f240a9da2ffa", + "fields": { + "code_commune_insee": "27652", + "nom_de_la_commune": "TOURNEVILLE", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0948484016, + 1.10594742714 + ], + "libelle_d_acheminement": "TOURNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10594742714, + 49.0948484016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e998c19a120f68aa0604bdd99172099460c2ae6e", + "fields": { + "code_commune_insee": "27656", + "nom_de_la_commune": "TOUTAINVILLE", + "code_postal": "27500", + "coordonnees_gps": [ + 49.3566331529, + 0.458677731967 + ], + "libelle_d_acheminement": "TOUTAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.458677731967, + 49.3566331529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e4bc1a5755d3f09b74bfd29da493c97ba75a7f3", + "fields": { + "code_commune_insee": "27661", + "nom_de_la_commune": "LA TRINITE DE THOUBERVILLE", + "code_postal": "27310", + "coordonnees_gps": [ + 49.3649602642, + 0.877572204781 + ], + "libelle_d_acheminement": "LA TRINITE DE THOUBERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.877572204781, + 49.3649602642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7f956eb5329d3d549ed2f938d18ecf3344d08a8", + "fields": { + "code_commune_insee": "27663", + "nom_de_la_commune": "LE TRONCQ", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1928851454, + 0.916869342267 + ], + "libelle_d_acheminement": "LE TRONCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.916869342267, + 49.1928851454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f872e7edafb4bf1cc19789e98a73d0928631048a", + "fields": { + "code_commune_insee": "27665", + "nom_de_la_commune": "TROUVILLE LA HAULE", + "code_postal": "27680", + "coordonnees_gps": [ + 49.4202682765, + 0.579988906072 + ], + "libelle_d_acheminement": "TROUVILLE LA HAULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.579988906072, + 49.4202682765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb8309009bd6b74af2e24b425afffc170633920e", + "fields": { + "code_commune_insee": "27667", + "nom_de_la_commune": "VALAILLES", + "code_postal": "27300", + "coordonnees_gps": [ + 49.1179826401, + 0.617010373701 + ], + "libelle_d_acheminement": "VALAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.617010373701, + 49.1179826401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8744de8962de98ce23a4ee1f232cbaeb972aa005", + "fields": { + "code_commune_insee": "27672", + "nom_de_la_commune": "VASCOEUIL", + "code_postal": "27910", + "coordonnees_gps": [ + 49.4459502042, + 1.38564792564 + ], + "libelle_d_acheminement": "VASCOEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38564792564, + 49.4459502042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd0449d1ebb736d86bc3ccc22ce48d1654ba3f9c", + "fields": { + "code_commune_insee": "27673", + "nom_de_la_commune": "VATTEVILLE", + "code_postal": "27430", + "coordonnees_gps": [ + 49.2802915027, + 1.28490028492 + ], + "libelle_d_acheminement": "VATTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28490028492, + 49.2802915027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42817b48f1498fe3ada42ef2ae3c683e3908433a", + "fields": { + "code_commune_insee": "27678", + "nom_de_la_commune": "LES VENTES", + "code_postal": "27180", + "coordonnees_gps": [ + 48.9558529022, + 1.06594660384 + ], + "libelle_d_acheminement": "LES VENTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06594660384, + 48.9558529022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32245f3dbb76736d511d4f7a8aa23aaa96b81113", + "fields": { + "ligne_5": "VERNEUIL SUR AVRE", + "code_commune_insee": "27679", + "libelle_d_acheminement": "VERNEUIL D AVRE ET D ITON", + "code_postal": "27130", + "nom_de_la_commune": "VERNEUIL D AVRE ET D ITON", + "coordonnees_gps": [ + 48.7377022151, + 0.924765167388 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.924765167388, + 48.7377022151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20adf8f516473bca06252f30928c870ac1dc4107", + "fields": { + "code_commune_insee": "27682", + "nom_de_la_commune": "VESLY", + "code_postal": "27870", + "coordonnees_gps": [ + 49.2426057527, + 1.6415768761 + ], + "libelle_d_acheminement": "VESLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6415768761, + 49.2426057527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec3b2de46892ea9ab9d47ab6190a2f3534899fd4", + "fields": { + "code_commune_insee": "27685", + "nom_de_la_commune": "LA VIEILLE LYRE", + "code_postal": "27330", + "coordonnees_gps": [ + 48.9215744552, + 0.750049343604 + ], + "libelle_d_acheminement": "LA VIEILLE LYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.750049343604, + 48.9215744552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27e3890183b2bb8e817ad64046a61bd462e2af90", + "fields": { + "code_commune_insee": "27691", + "nom_de_la_commune": "VILLERS SUR LE ROULE", + "code_postal": "27940", + "coordonnees_gps": [ + 49.1911682593, + 1.3195023232 + ], + "libelle_d_acheminement": "VILLERS SUR LE ROULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3195023232, + 49.1911682593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f910575e6346c52283bf607ff5b32f110241ea3c", + "fields": { + "code_commune_insee": "27696", + "nom_de_la_commune": "VILLIERS EN DESOEUVRE", + "code_postal": "27640", + "coordonnees_gps": [ + 48.9578709877, + 1.48073443882 + ], + "libelle_d_acheminement": "VILLIERS EN DESOEUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48073443882, + 48.9578709877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53e9792408968e6a591104c7f333ab70ec77c7a6", + "fields": { + "code_commune_insee": "27698", + "nom_de_la_commune": "VITOT", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1678035757, + 0.887186611829 + ], + "libelle_d_acheminement": "VITOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.887186611829, + 49.1678035757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cecffbbca04da704c2815741e5adebcb88d341d5", + "fields": { + "ligne_5": "ARROU", + "code_commune_insee": "28012", + "libelle_d_acheminement": "COMMUNE NOUVELLE D ARROU", + "code_postal": "28290", + "nom_de_la_commune": "COMMUNE NOUVELLE D ARROU", + "coordonnees_gps": [ + 48.1120067473, + 1.08598331855 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08598331855, + 48.1120067473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d030cf3c9696a564dd60236ade013edb04d4577", + "fields": { + "ligne_5": "COURTALAIN", + "code_commune_insee": "28012", + "libelle_d_acheminement": "COMMUNE NOUVELLE D ARROU", + "code_postal": "28290", + "nom_de_la_commune": "COMMUNE NOUVELLE D ARROU", + "coordonnees_gps": [ + 48.1120067473, + 1.08598331855 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08598331855, + 48.1120067473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55b752648a6139424f31c957b4ce4d58c914bcd1", + "fields": { + "code_commune_insee": "28013", + "nom_de_la_commune": "AUNAY SOUS AUNEAU", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4428553048, + 1.81371743832 + ], + "libelle_d_acheminement": "AUNAY SOUS AUNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81371743832, + 48.4428553048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32eb6c31f93fb73b8ba080b70472272a922e520c", + "fields": { + "code_commune_insee": "28022", + "nom_de_la_commune": "BAILLEAU L EVEQUE", + "code_postal": "28300", + "coordonnees_gps": [ + 48.4875827521, + 1.39655721577 + ], + "libelle_d_acheminement": "BAILLEAU L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39655721577, + 48.4875827521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6703194ca37559ffd958b4ded761b2aaf88375a", + "fields": { + "code_commune_insee": "28028", + "nom_de_la_commune": "BAZOCHES EN DUNOIS", + "code_postal": "28140", + "coordonnees_gps": [ + 48.0945521285, + 1.57159369016 + ], + "libelle_d_acheminement": "BAZOCHES EN DUNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57159369016, + 48.0945521285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bb4798baee72fb4253b47af5590bbecd44ff78d", + "fields": { + "code_commune_insee": "28030", + "nom_de_la_commune": "BEAUCHE", + "code_postal": "28270", + "coordonnees_gps": [ + 48.6775239767, + 0.979954691565 + ], + "libelle_d_acheminement": "BEAUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.979954691565, + 48.6775239767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a73ab4e55afa842a8c92442a77511a048045383", + "fields": { + "code_commune_insee": "28031", + "nom_de_la_commune": "BEAUMONT LES AUTELS", + "code_postal": "28480", + "coordonnees_gps": [ + 48.239618229, + 0.952240810191 + ], + "libelle_d_acheminement": "BEAUMONT LES AUTELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.952240810191, + 48.239618229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56db0fabf136b91c8a39370d2eb3ec11d48ca0b3", + "fields": { + "code_commune_insee": "28032", + "nom_de_la_commune": "BEAUVILLIERS", + "code_postal": "28150", + "coordonnees_gps": [ + 48.3006109163, + 1.6537618086 + ], + "libelle_d_acheminement": "BEAUVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6537618086, + 48.3006109163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb3c7b60f7a25182c7662401183ab1a3771cfdbe", + "fields": { + "code_commune_insee": "28040", + "nom_de_la_commune": "BILLANCELLES", + "code_postal": "28190", + "coordonnees_gps": [ + 48.4938554286, + 1.21326841082 + ], + "libelle_d_acheminement": "BILLANCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21326841082, + 48.4938554286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "777b76fb83cf9edffc9ddea5a3624cfb8d60cbb6", + "fields": { + "code_commune_insee": "28041", + "nom_de_la_commune": "BLANDAINVILLE", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3153780498, + 1.29204429237 + ], + "libelle_d_acheminement": "BLANDAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29204429237, + 48.3153780498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8796e9a23aa8859d131e1abd8a559c35e2081cb2", + "fields": { + "code_commune_insee": "28046", + "nom_de_la_commune": "BOISSY LES PERCHE", + "code_postal": "28340", + "coordonnees_gps": [ + 48.6806255579, + 0.901884911868 + ], + "libelle_d_acheminement": "BOISSY LES PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.901884911868, + 48.6806255579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d30fc18df0c78a73da2d67d4496cc60c00ae81e", + "fields": { + "code_commune_insee": "28048", + "nom_de_la_commune": "LA BOURDINIERE ST LOUP", + "code_postal": "28360", + "coordonnees_gps": [ + 48.3170148124, + 1.43019186424 + ], + "libelle_d_acheminement": "LA BOURDINIERE ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43019186424, + 48.3170148124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5689a257e72aaf797f9c77b308c00c4a74f2a2c", + "fields": { + "code_commune_insee": "28053", + "nom_de_la_commune": "LE BOULLAY LES DEUX EGLISES", + "code_postal": "28170", + "coordonnees_gps": [ + 48.6321325907, + 1.3266464472 + ], + "libelle_d_acheminement": "LE BOULLAY LES DEUX EGLISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3266464472, + 48.6321325907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e047adb356e4c7e6747ab8920e1edcaf85eb61ec", + "fields": { + "code_commune_insee": "28055", + "nom_de_la_commune": "LE BOULLAY THIERRY", + "code_postal": "28210", + "coordonnees_gps": [ + 48.6345919447, + 1.43287089864 + ], + "libelle_d_acheminement": "LE BOULLAY THIERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43287089864, + 48.6345919447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33e79afe44a9f025b8c4e4bf1a2a50820f2e5672", + "fields": { + "ligne_5": "PROUAIS", + "code_commune_insee": "28056", + "libelle_d_acheminement": "BOUTIGNY PROUAIS", + "code_postal": "28410", + "nom_de_la_commune": "BOUTIGNY PROUAIS", + "coordonnees_gps": [ + 48.7343916136, + 1.56955678251 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56955678251, + 48.7343916136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84992fb0890d6c8085f5913cfd92f5d7989164fa", + "fields": { + "code_commune_insee": "28058", + "nom_de_la_commune": "BRECHAMPS", + "code_postal": "28210", + "coordonnees_gps": [ + 48.67275991, + 1.52098330064 + ], + "libelle_d_acheminement": "BRECHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52098330064, + 48.67275991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19ce6e1983021735cbc6249ca6de6679dfa60f8b", + "fields": { + "code_commune_insee": "28061", + "nom_de_la_commune": "BROU", + "code_postal": "28160", + "coordonnees_gps": [ + 48.2174479455, + 1.15740318839 + ], + "libelle_d_acheminement": "BROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15740318839, + 48.2174479455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "239759bbb299dd76cacb801f263142d3595227c2", + "fields": { + "code_commune_insee": "28071", + "nom_de_la_commune": "CHAMPROND EN GATINE", + "code_postal": "28240", + "coordonnees_gps": [ + 48.3959360565, + 1.07458299345 + ], + "libelle_d_acheminement": "CHAMPROND EN GATINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07458299345, + 48.3959360565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10371324e89583bb6264f7909927e9484d63debe", + "fields": { + "code_commune_insee": "28073", + "nom_de_la_commune": "CHAMPSERU", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4910310864, + 1.64595417772 + ], + "libelle_d_acheminement": "CHAMPSERU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64595417772, + 48.4910310864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "141cdcad9276f637afd6f32497c1fb3fc9cfbd3b", + "fields": { + "code_commune_insee": "28080", + "nom_de_la_commune": "CHARBONNIERES", + "code_postal": "28330", + "coordonnees_gps": [ + 48.1895067201, + 0.944303356548 + ], + "libelle_d_acheminement": "CHARBONNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.944303356548, + 48.1895067201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16abfeac44c1ee1444baf9e3a54eb406725f42d3", + "fields": { + "code_commune_insee": "28082", + "nom_de_la_commune": "CHARPONT", + "code_postal": "28500", + "coordonnees_gps": [ + 48.6958429169, + 1.43243894312 + ], + "libelle_d_acheminement": "CHARPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43243894312, + 48.6958429169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62aa8fe2949398f564d9ffdcff364f5ecb49bafc", + "fields": { + "code_commune_insee": "28084", + "nom_de_la_commune": "CHARTAINVILLIERS", + "code_postal": "28130", + "coordonnees_gps": [ + 48.5430971453, + 1.54564862938 + ], + "libelle_d_acheminement": "CHARTAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54564862938, + 48.5430971453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c61af71886390d712a659d663ecfa2a436b46544", + "fields": { + "code_commune_insee": "28095", + "nom_de_la_commune": "CHAUFFOURS", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3944888938, + 1.33691872297 + ], + "libelle_d_acheminement": "CHAUFFOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33691872297, + 48.3944888938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22325686468b1cb40150802c0e6df88d7ade6ed8", + "fields": { + "code_commune_insee": "28098", + "nom_de_la_commune": "CHERISY", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7567062776, + 1.43470618307 + ], + "libelle_d_acheminement": "CHERISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43470618307, + 48.7567062776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2022662ca0824898a10d9641affcfed02772767e", + "fields": { + "ligne_5": "CHARRAY", + "code_commune_insee": "28103", + "libelle_d_acheminement": "CLOYES LES TROIS RIVIERES", + "code_postal": "28220", + "nom_de_la_commune": "CLOYES LES TROIS RIVIERES", + "coordonnees_gps": [ + 47.9934559542, + 1.22150535909 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22150535909, + 47.9934559542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf2d9c5c9c1b3d904649b5d3027f7eecb24d463f", + "fields": { + "ligne_5": "LA FERTE VILLENEUIL", + "code_commune_insee": "28103", + "libelle_d_acheminement": "CLOYES LES TROIS RIVIERES", + "code_postal": "28220", + "nom_de_la_commune": "CLOYES LES TROIS RIVIERES", + "coordonnees_gps": [ + 47.9934559542, + 1.22150535909 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22150535909, + 47.9934559542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9212b7cced02a4e2afa9d9c8b5da95637719540a", + "fields": { + "ligne_5": "LE MEE", + "code_commune_insee": "28103", + "libelle_d_acheminement": "CLOYES LES TROIS RIVIERES", + "code_postal": "28220", + "nom_de_la_commune": "CLOYES LES TROIS RIVIERES", + "coordonnees_gps": [ + 47.9934559542, + 1.22150535909 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22150535909, + 47.9934559542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1df32a0b24d572f133f914b285d28e9ee43acaed", + "fields": { + "code_commune_insee": "28105", + "nom_de_la_commune": "COMBRES", + "code_postal": "28480", + "coordonnees_gps": [ + 48.3366942783, + 1.06041193699 + ], + "libelle_d_acheminement": "COMBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06041193699, + 48.3366942783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7012dc8d0f5c9f8691d9f89e37974a728c0cd71d", + "fields": { + "code_commune_insee": "28106", + "nom_de_la_commune": "CONIE MOLITARD", + "code_postal": "28200", + "coordonnees_gps": [ + 48.1134838252, + 1.44167207684 + ], + "libelle_d_acheminement": "CONIE MOLITARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44167207684, + 48.1134838252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8c0966510d642e724c28c3353e7242150f224c7", + "fields": { + "code_commune_insee": "28107", + "nom_de_la_commune": "CORANCEZ", + "code_postal": "28630", + "coordonnees_gps": [ + 48.3673223163, + 1.5147876149 + ], + "libelle_d_acheminement": "CORANCEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5147876149, + 48.3673223163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e44cba0ff5ba23d42c3ec56b7e47e0b1e496b9e8", + "fields": { + "code_commune_insee": "28108", + "nom_de_la_commune": "CORMAINVILLE", + "code_postal": "28140", + "coordonnees_gps": [ + 48.1315186166, + 1.60577478136 + ], + "libelle_d_acheminement": "CORMAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60577478136, + 48.1315186166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7281bc7a5caa7415627f233e98678e731114ad7", + "fields": { + "code_commune_insee": "28117", + "nom_de_la_commune": "CRECY COUVE", + "code_postal": "28500", + "coordonnees_gps": [ + 48.6799400303, + 1.28280471955 + ], + "libelle_d_acheminement": "CRECY COUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28280471955, + 48.6799400303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e2d4b7181c116236b573de708db50946859aef4", + "fields": { + "ligne_5": "BULLOU", + "code_commune_insee": "28127", + "libelle_d_acheminement": "DANGEAU", + "code_postal": "28160", + "nom_de_la_commune": "DANGEAU", + "coordonnees_gps": [ + 48.1969504376, + 1.27633745372 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27633745372, + 48.1969504376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f8b41ac5fb22f8d060e6bbf045583e233352264", + "fields": { + "code_commune_insee": "28132", + "nom_de_la_commune": "DONNEMAIN ST MAMES", + "code_postal": "28200", + "coordonnees_gps": [ + 48.1003971896, + 1.36973493796 + ], + "libelle_d_acheminement": "DONNEMAIN ST MAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36973493796, + 48.1003971896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db7aef6e1128c70da4158cce2fc6634b7c60b797", + "fields": { + "code_commune_insee": "28135", + "nom_de_la_commune": "DROUE SUR DROUETTE", + "code_postal": "28230", + "coordonnees_gps": [ + 48.6019197892, + 1.70074924736 + ], + "libelle_d_acheminement": "DROUE SUR DROUETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70074924736, + 48.6019197892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f6ee4067e4c770e9fb1063def9490b94d62e435", + "fields": { + "code_commune_insee": "28136", + "nom_de_la_commune": "ECLUZELLES", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7084339399, + 1.42195083018 + ], + "libelle_d_acheminement": "ECLUZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42195083018, + 48.7084339399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20c9bf028145b9cdfd84a9d0ff0a603c6480320d", + "fields": { + "code_commune_insee": "28140", + "nom_de_la_commune": "EPERNON", + "code_postal": "28230", + "coordonnees_gps": [ + 48.5941135535, + 1.68537156703 + ], + "libelle_d_acheminement": "EPERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68537156703, + 48.5941135535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d325e147928c9d2e3f0c85703a37f01ab3adfd17", + "fields": { + "code_commune_insee": "28141", + "nom_de_la_commune": "ERMENONVILLE LA GRANDE", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3356889061, + 1.38093715514 + ], + "libelle_d_acheminement": "ERMENONVILLE LA GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38093715514, + 48.3356889061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba54843f9541cbfe3a2d7d5973d7bde7e900547b", + "fields": { + "code_commune_insee": "28153", + "nom_de_la_commune": "FLACEY", + "code_postal": "28800", + "coordonnees_gps": [ + 48.1513426394, + 1.33294278767 + ], + "libelle_d_acheminement": "FLACEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33294278767, + 48.1513426394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb78f87616be6f311cc02414341b3721acb3eba9", + "fields": { + "code_commune_insee": "28156", + "nom_de_la_commune": "FONTAINE SIMON", + "code_postal": "28240", + "coordonnees_gps": [ + 48.5088733732, + 0.992529524714 + ], + "libelle_d_acheminement": "FONTAINE SIMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.992529524714, + 48.5088733732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d12eb1a24da68e5b5a0b4f30bea163d50512478", + "fields": { + "code_commune_insee": "28158", + "nom_de_la_commune": "FONTENAY SUR EURE", + "code_postal": "28630", + "coordonnees_gps": [ + 48.4059853535, + 1.42241249487 + ], + "libelle_d_acheminement": "FONTENAY SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42241249487, + 48.4059853535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efe18ab96e6bd5c7dfaaa84639b6f209e2bc64ae", + "fields": { + "code_commune_insee": "28163", + "nom_de_la_commune": "FRESNAY LE GILMERT", + "code_postal": "28300", + "coordonnees_gps": [ + 48.5129802184, + 1.4182025742 + ], + "libelle_d_acheminement": "FRESNAY LE GILMERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4182025742, + 48.5129802184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6e98857f79da5e52967535867d7ccbc2b42d068", + "fields": { + "code_commune_insee": "28170", + "nom_de_la_commune": "GARANCIERES EN DROUAIS", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7027343223, + 1.28199977538 + ], + "libelle_d_acheminement": "GARANCIERES EN DROUAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28199977538, + 48.7027343223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "279bf3052b710d9408651f09267e17247d8cfc93", + "fields": { + "code_commune_insee": "28190", + "nom_de_la_commune": "GUILLONVILLE", + "code_postal": "28140", + "coordonnees_gps": [ + 48.0936096295, + 1.64289190439 + ], + "libelle_d_acheminement": "GUILLONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64289190439, + 48.0936096295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a8b2a2a3e60ebc5da46d52b0211bbe98f393ad5", + "fields": { + "code_commune_insee": "28192", + "nom_de_la_commune": "HAPPONVILLIERS", + "code_postal": "28480", + "coordonnees_gps": [ + 48.3299066055, + 1.10478004356 + ], + "libelle_d_acheminement": "HAPPONVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10478004356, + 48.3299066055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95fa680bdfa649e562fb196d817c7233cc671fdc", + "fields": { + "ligne_5": "JANVILLE", + "code_commune_insee": "28199", + "libelle_d_acheminement": "JANVILLE EN BEAUCE", + "code_postal": "28310", + "nom_de_la_commune": "JANVILLE EN BEAUCE", + "coordonnees_gps": [ + 48.200814518, + 1.89039239434 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89039239434, + 48.200814518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d160f4cc0210eb5556d4180c14fecf45587b4877", + "fields": { + "code_commune_insee": "28200", + "nom_de_la_commune": "JAUDRAIS", + "code_postal": "28250", + "coordonnees_gps": [ + 48.574248144, + 1.12322671781 + ], + "libelle_d_acheminement": "JAUDRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12322671781, + 48.574248144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53bd4e60124a73eee54508ee60d6ce5b899433bf", + "fields": { + "code_commune_insee": "28210", + "nom_de_la_commune": "LEVESVILLE LA CHENARD", + "code_postal": "28310", + "coordonnees_gps": [ + 48.3026078752, + 1.83081458653 + ], + "libelle_d_acheminement": "LEVESVILLE LA CHENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83081458653, + 48.3026078752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2736a3107e809f31a73b8ea3e988484c288964b5", + "fields": { + "code_commune_insee": "28213", + "nom_de_la_commune": "LORMAYE", + "code_postal": "28210", + "coordonnees_gps": [ + 48.6389252281, + 1.54309712562 + ], + "libelle_d_acheminement": "LORMAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54309712562, + 48.6389252281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca890e3a59cfddda368fe25c4b927c8bdb31072b", + "fields": { + "code_commune_insee": "28214", + "nom_de_la_commune": "LA LOUPE", + "code_postal": "28240", + "coordonnees_gps": [ + 48.473175806, + 1.02235330632 + ], + "libelle_d_acheminement": "LA LOUPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02235330632, + 48.473175806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7344512b6601a0bf43c4bec38ec8574fe0a10696", + "fields": { + "code_commune_insee": "28219", + "nom_de_la_commune": "LUIGNY", + "code_postal": "28480", + "coordonnees_gps": [ + 48.2366504401, + 1.02792441815 + ], + "libelle_d_acheminement": "LUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02792441815, + 48.2366504401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c8fb33725d1f498a6d60bd69c8310c50f50fe91", + "fields": { + "code_commune_insee": "28222", + "nom_de_la_commune": "LUPLANTE", + "code_postal": "28360", + "coordonnees_gps": [ + 48.2989041205, + 1.38417149076 + ], + "libelle_d_acheminement": "LUPLANTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38417149076, + 48.2989041205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f32cf801677d4cce2fb18683294685440773804", + "fields": { + "ligne_5": "BLEVY", + "code_commune_insee": "28226", + "libelle_d_acheminement": "MAILLEBOIS", + "code_postal": "28170", + "nom_de_la_commune": "MAILLEBOIS", + "coordonnees_gps": [ + 48.6321135718, + 1.1501161639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1501161639, + 48.6321135718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc1103fcf43a15868a0044d759642b31b31bcf05", + "fields": { + "ligne_5": "DAMPIERRE SUR BLEVY", + "code_commune_insee": "28226", + "libelle_d_acheminement": "MAILLEBOIS", + "code_postal": "28170", + "nom_de_la_commune": "MAILLEBOIS", + "coordonnees_gps": [ + 48.6321135718, + 1.1501161639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1501161639, + 48.6321135718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc583848d78db1854d3a868ce0dbe5f7ceddb28a", + "fields": { + "code_commune_insee": "28230", + "nom_de_la_commune": "MAISONS", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4036829881, + 1.84481413865 + ], + "libelle_d_acheminement": "MAISONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84481413865, + 48.4036829881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "967121cd1ccdfed002cd98b519caaa342d5e0d82", + "fields": { + "code_commune_insee": "28231", + "nom_de_la_commune": "LA MANCELIERE", + "code_postal": "28270", + "coordonnees_gps": [ + 48.6429568791, + 0.985217307956 + ], + "libelle_d_acheminement": "LA MANCELIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.985217307956, + 48.6429568791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "189ea85b3bc37af58d2186285898d27858a58e6f", + "fields": { + "code_commune_insee": "28235", + "nom_de_la_commune": "MARCHEZAIS", + "code_postal": "28410", + "coordonnees_gps": [ + 48.7749796746, + 1.51347142125 + ], + "libelle_d_acheminement": "MARCHEZAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51347142125, + 48.7749796746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74d66b4b0d4d54cb89dac434dd7666a12e6e6e83", + "fields": { + "code_commune_insee": "28248", + "nom_de_la_commune": "LE MESNIL THOMAS", + "code_postal": "28250", + "coordonnees_gps": [ + 48.5900545537, + 1.08955144793 + ], + "libelle_d_acheminement": "LE MESNIL THOMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08955144793, + 48.5900545537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f988e884300c5d17db48ad30ea6e72a8ea410353", + "fields": { + "code_commune_insee": "28259", + "nom_de_la_commune": "MONTBOISSIER", + "code_postal": "28800", + "coordonnees_gps": [ + 48.2296631604, + 1.40996586006 + ], + "libelle_d_acheminement": "MONTBOISSIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40996586006, + 48.2296631604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9e65aea0c4b7ad15f2ae3a718d30961e241b00f", + "fields": { + "code_commune_insee": "28268", + "nom_de_la_commune": "MORAINVILLE", + "code_postal": "28700", + "coordonnees_gps": [ + 48.3797470678, + 1.83370952065 + ], + "libelle_d_acheminement": "MORAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83370952065, + 48.3797470678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0937c0a564d6a3ca7060fef96e6ab3150014766c", + "fields": { + "code_commune_insee": "28274", + "nom_de_la_commune": "MOUTIERS", + "code_postal": "28150", + "coordonnees_gps": [ + 48.2956740987, + 1.76452451623 + ], + "libelle_d_acheminement": "MOUTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76452451623, + 48.2956740987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "314872da9604ee195ebc8f14c83ebd37a8401e96", + "fields": { + "code_commune_insee": "28277", + "nom_de_la_commune": "NEUVY EN DUNOIS", + "code_postal": "28800", + "coordonnees_gps": [ + 48.2026068926, + 1.53607016392 + ], + "libelle_d_acheminement": "NEUVY EN DUNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53607016392, + 48.2026068926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad05fbbea38fa1d8f7d62bf0c8c17842b87f7ae2", + "fields": { + "code_commune_insee": "28286", + "nom_de_la_commune": "OLLE", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3861713176, + 1.29676910004 + ], + "libelle_d_acheminement": "OLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29676910004, + 48.3861713176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28e5d9aff8d590ede141b261ae8872579540c1d9", + "fields": { + "code_commune_insee": "28293", + "nom_de_la_commune": "OULINS", + "code_postal": "28260", + "coordonnees_gps": [ + 48.8665989228, + 1.4893062268 + ], + "libelle_d_acheminement": "OULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4893062268, + 48.8665989228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ac95e8f2bca96f42702ddffe630dc471b14c847", + "fields": { + "code_commune_insee": "28300", + "nom_de_la_commune": "POINVILLE", + "code_postal": "28310", + "coordonnees_gps": [ + 48.1748951047, + 1.90040585204 + ], + "libelle_d_acheminement": "POINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90040585204, + 48.1748951047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ff924b317e0a4cd6a3fb815c4a29866c27d6790", + "fields": { + "code_commune_insee": "28301", + "nom_de_la_commune": "POISVILLIERS", + "code_postal": "28300", + "coordonnees_gps": [ + 48.5063843494, + 1.46123630371 + ], + "libelle_d_acheminement": "POISVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46123630371, + 48.5063843494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fc86cdaa882a81d47f9121cc85a9045aa59b2c4", + "fields": { + "code_commune_insee": "28310", + "nom_de_la_commune": "LA PUISAYE", + "code_postal": "28250", + "coordonnees_gps": [ + 48.6126007617, + 0.96980653651 + ], + "libelle_d_acheminement": "LA PUISAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96980653651, + 48.6126007617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e602b517cf3342da677439706990411756d984e", + "fields": { + "code_commune_insee": "28312", + "nom_de_la_commune": "PUISEUX", + "code_postal": "28170", + "coordonnees_gps": [ + 48.6389286317, + 1.36882043567 + ], + "libelle_d_acheminement": "PUISEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36882043567, + 48.6389286317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf799168912474e51642e33e2080182421ed550f", + "fields": { + "code_commune_insee": "28313", + "nom_de_la_commune": "RECLAINVILLE", + "code_postal": "28150", + "coordonnees_gps": [ + 48.3375337584, + 1.73962432713 + ], + "libelle_d_acheminement": "RECLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73962432713, + 48.3375337584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41f3eaa28dcfb2feaf1816933257dd2f5b802b84", + "fields": { + "code_commune_insee": "28314", + "nom_de_la_commune": "LES RESSUINTES", + "code_postal": "28340", + "coordonnees_gps": [ + 48.5952891998, + 0.926278842341 + ], + "libelle_d_acheminement": "LES RESSUINTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.926278842341, + 48.5952891998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "352191809915120a138368d0e4525ffcfc236f56", + "fields": { + "code_commune_insee": "28315", + "nom_de_la_commune": "REVERCOURT", + "code_postal": "28270", + "coordonnees_gps": [ + 48.7223591081, + 1.077287859 + ], + "libelle_d_acheminement": "REVERCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.077287859, + 48.7223591081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aedd2f8ddb3a954a123a5888ae6bab0583a811a4", + "fields": { + "code_commune_insee": "28316", + "nom_de_la_commune": "ROHAIRE", + "code_postal": "28340", + "coordonnees_gps": [ + 48.6667438404, + 0.839547342501 + ], + "libelle_d_acheminement": "ROHAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.839547342501, + 48.6667438404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "696b791409f442e42d048706d3306e851ed18c18", + "fields": { + "code_commune_insee": "28327", + "nom_de_la_commune": "ST BOMER", + "code_postal": "28330", + "coordonnees_gps": [ + 48.194965232, + 0.829197068789 + ], + "libelle_d_acheminement": "ST BOMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.829197068789, + 48.194965232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6769628a8e02cf458c1fee938b5f5ab3681dc262", + "fields": { + "code_commune_insee": "28343", + "nom_de_la_commune": "ST LAURENT LA GATINE", + "code_postal": "28210", + "coordonnees_gps": [ + 48.6932133379, + 1.54011525092 + ], + "libelle_d_acheminement": "ST LAURENT LA GATINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54011525092, + 48.6932133379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "581409ba0923d8d7f407f7fd46695a7d998ae327", + "fields": { + "code_commune_insee": "28351", + "nom_de_la_commune": "ST MAIXME HAUTERIVE", + "code_postal": "28170", + "coordonnees_gps": [ + 48.5930292363, + 1.19005684059 + ], + "libelle_d_acheminement": "ST MAIXME HAUTERIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19005684059, + 48.5930292363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b4f281cca4d0d95c7fbf8e7a703a9be817d228d", + "fields": { + "code_commune_insee": "28371", + "nom_de_la_commune": "SAUSSAY", + "code_postal": "28260", + "coordonnees_gps": [ + 48.8508071385, + 1.41035357724 + ], + "libelle_d_acheminement": "SAUSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41035357724, + 48.8508071385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eae3467f9956fc68f4e351c8f9170ac78a569afd", + "fields": { + "code_commune_insee": "28385", + "nom_de_la_commune": "LE THIEULIN", + "code_postal": "28240", + "coordonnees_gps": [ + 48.4073892468, + 1.13977357716 + ], + "libelle_d_acheminement": "LE THIEULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13977357716, + 48.4073892468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a6fda6946c9ad0709b9d0448ffdd70b822798e2", + "fields": { + "ligne_5": "CHENE CHENU", + "code_commune_insee": "28393", + "libelle_d_acheminement": "TREMBLAY LES VILLAGES", + "code_postal": "28170", + "nom_de_la_commune": "TREMBLAY LES VILLAGES", + "coordonnees_gps": [ + 48.5881626072, + 1.36867843258 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36867843258, + 48.5881626072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edb4abe580314687c80a5c65da16cfb682118e02", + "fields": { + "ligne_5": "ST CHERON DES CHAMPS", + "code_commune_insee": "28393", + "libelle_d_acheminement": "TREMBLAY LES VILLAGES", + "code_postal": "28170", + "nom_de_la_commune": "TREMBLAY LES VILLAGES", + "coordonnees_gps": [ + 48.5881626072, + 1.36867843258 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36867843258, + 48.5881626072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a16dc272a1ac5d315c8a1a7de1983525d1c9d42a", + "fields": { + "code_commune_insee": "28411", + "nom_de_la_commune": "VILLARS", + "code_postal": "28150", + "coordonnees_gps": [ + 48.2311272458, + 1.54414100936 + ], + "libelle_d_acheminement": "VILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54414100936, + 48.2311272458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c6c09fb8c84a30badc9e4c38e6775219146c694", + "fields": { + "ligne_5": "MONTAINVILLE", + "code_commune_insee": "28422", + "libelle_d_acheminement": "LES VILLAGES VOVEENS", + "code_postal": "28150", + "nom_de_la_commune": "LES VILLAGES VOVEENS", + "coordonnees_gps": [ + 48.269861494, + 1.6311008246 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6311008246, + 48.269861494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d2618957ea144ddc65de808866679cdae8571a4", + "fields": { + "code_commune_insee": "28425", + "nom_de_la_commune": "YMERAY", + "code_postal": "28320", + "coordonnees_gps": [ + 48.5089746618, + 1.7030629617 + ], + "libelle_d_acheminement": "YMERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7030629617, + 48.5089746618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de5164ab9f0bfedbc2f9b5c416d7cfaeb07de37c", + "fields": { + "code_commune_insee": "28426", + "nom_de_la_commune": "YMONVILLE", + "code_postal": "28150", + "coordonnees_gps": [ + 48.2495983689, + 1.75055866938 + ], + "libelle_d_acheminement": "YMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75055866938, + 48.2495983689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4ddebc6a2d24e0e21dd9bb943aeaaa10daf8b82", + "fields": { + "code_commune_insee": "29006", + "nom_de_la_commune": "BENODET", + "code_postal": "29950", + "coordonnees_gps": [ + 47.8780985371, + -4.07751294821 + ], + "libelle_d_acheminement": "BENODET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07751294821, + 47.8780985371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "169175cc48bf171cab61da7e67fb9a7b6c769f29", + "fields": { + "code_commune_insee": "29012", + "nom_de_la_commune": "BOLAZEC", + "code_postal": "29640", + "coordonnees_gps": [ + 48.4425412035, + -3.59509375301 + ], + "libelle_d_acheminement": "BOLAZEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.59509375301, + 48.4425412035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "689d13546c8c40e9f23fed7b22301d9ebb56c576", + "fields": { + "code_commune_insee": "29016", + "nom_de_la_commune": "BRASPARTS", + "code_postal": "29190", + "coordonnees_gps": [ + 48.319245053, + -3.95010933279 + ], + "libelle_d_acheminement": "BRASPARTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.95010933279, + 48.319245053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ad690165453a8df0702b0969f7d331d756f4163", + "fields": { + "code_commune_insee": "29020", + "nom_de_la_commune": "BRIEC", + "code_postal": "29510", + "coordonnees_gps": [ + 48.0935971343, + -4.02078477146 + ], + "libelle_d_acheminement": "BRIEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.02078477146, + 48.0935971343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b2e7fad7412c9c50aba083eb5a9ad7690f958d0", + "fields": { + "code_commune_insee": "29023", + "nom_de_la_commune": "CARANTEC", + "code_postal": "29660", + "coordonnees_gps": [ + 48.6553588661, + -3.91293697247 + ], + "libelle_d_acheminement": "CARANTEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.91293697247, + 48.6553588661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02d001fc84a7d7c8abc7385ae7805b9efbfc8c4d", + "fields": { + "code_commune_insee": "29027", + "nom_de_la_commune": "CHATEAUNEUF DU FAOU", + "code_postal": "29520", + "coordonnees_gps": [ + 48.1889732859, + -3.82126129764 + ], + "libelle_d_acheminement": "CHATEAUNEUF DU FAOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.82126129764, + 48.1889732859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09314f8c9d4fa651453aa8650807d5c4a97a8d5b", + "fields": { + "code_commune_insee": "29031", + "nom_de_la_commune": "CLOHARS CARNOET", + "code_postal": "29360", + "coordonnees_gps": [ + 47.7943407144, + -3.56681364982 + ], + "libelle_d_acheminement": "CLOHARS CARNOET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.56681364982, + 47.7943407144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65e01aebbcb3062d4ed9601e968f1d2354e1d5d0", + "fields": { + "code_commune_insee": "29033", + "nom_de_la_commune": "LE CLOITRE PLEYBEN", + "code_postal": "29190", + "coordonnees_gps": [ + 48.2580934437, + -3.89646330855 + ], + "libelle_d_acheminement": "LE CLOITRE PLEYBEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.89646330855, + 48.2580934437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5191dba8a7cc99347e76fc8e94bc1e04fed666f", + "fields": { + "ligne_5": "MORGAT", + "code_commune_insee": "29042", + "libelle_d_acheminement": "CROZON", + "code_postal": "29160", + "nom_de_la_commune": "CROZON", + "coordonnees_gps": [ + 48.2449715382, + -4.49170347769 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.49170347769, + 48.2449715382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5aa82ddf9daee8b2b2bd6dad96d41c0870eaf238", + "fields": { + "code_commune_insee": "29046", + "nom_de_la_commune": "DOUARNENEZ", + "code_postal": "29100", + "coordonnees_gps": [ + 48.0806526556, + -4.32784220122 + ], + "libelle_d_acheminement": "DOUARNENEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.32784220122, + 48.0806526556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b5b0d54c4535625cded2cc146e55b354db2adeb", + "fields": { + "ligne_5": "TREBOUL", + "code_commune_insee": "29046", + "libelle_d_acheminement": "DOUARNENEZ", + "code_postal": "29100", + "nom_de_la_commune": "DOUARNENEZ", + "coordonnees_gps": [ + 48.0806526556, + -4.32784220122 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.32784220122, + 48.0806526556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fe38204a69d65c85d0e74e7a010759b11249b3e", + "fields": { + "code_commune_insee": "29053", + "nom_de_la_commune": "LE FAOU", + "code_postal": "29590", + "coordonnees_gps": [ + 48.3059334041, + -4.1421494556 + ], + "libelle_d_acheminement": "LE FAOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.1421494556, + 48.3059334041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b387f503778b74849bed261733659e7b88e97fd5", + "fields": { + "code_commune_insee": "29057", + "nom_de_la_commune": "LA FORET FOUESNANT", + "code_postal": "29940", + "coordonnees_gps": [ + 47.9201547936, + -3.96862628403 + ], + "libelle_d_acheminement": "LA FORET FOUESNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.96862628403, + 47.9201547936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38389e56a4aecfbe884495d02796ec46ac3818c6", + "fields": { + "code_commune_insee": "29068", + "nom_de_la_commune": "GUICLAN", + "code_postal": "29410", + "coordonnees_gps": [ + 48.5431945117, + -3.97996345952 + ], + "libelle_d_acheminement": "GUICLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.97996345952, + 48.5431945117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adc4880555f8c0df113357b7c6c155ebd4440fdf", + "fields": { + "code_commune_insee": "29074", + "nom_de_la_commune": "GUIMILIAU", + "code_postal": "29400", + "coordonnees_gps": [ + 48.4813913832, + -3.99675935444 + ], + "libelle_d_acheminement": "GUIMILIAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.99675935444, + 48.4813913832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b511beb9910fd13173d7096609e4684278e21b5", + "fields": { + "code_commune_insee": "29079", + "nom_de_la_commune": "HENVIC", + "code_postal": "29670", + "coordonnees_gps": [ + 48.6328783034, + -3.93010149284 + ], + "libelle_d_acheminement": "HENVIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.93010149284, + 48.6328783034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3573715b86e0fdb6b4f213d885b5ddeaed06b0b4", + "fields": { + "code_commune_insee": "29091", + "nom_de_la_commune": "KERLOUAN", + "code_postal": "29890", + "coordonnees_gps": [ + 48.6474993428, + -4.37874276667 + ], + "libelle_d_acheminement": "KERLOUAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.37874276667, + 48.6474993428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35bd60fe1965343150f9783b38eef4c3f56d5254", + "fields": { + "code_commune_insee": "29095", + "nom_de_la_commune": "KERSAINT PLABENNEC", + "code_postal": "29860", + "coordonnees_gps": [ + 48.4792039548, + -4.36259963569 + ], + "libelle_d_acheminement": "KERSAINT PLABENNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.36259963569, + 48.4792039548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1b6ccac89ed2001533d492456bc606443d99d73", + "fields": { + "code_commune_insee": "29097", + "nom_de_la_commune": "LAMPAUL GUIMILIAU", + "code_postal": "29400", + "coordonnees_gps": [ + 48.4836867404, + -4.04069753915 + ], + "libelle_d_acheminement": "LAMPAUL GUIMILIAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.04069753915, + 48.4836867404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da84e83486b8cf0033753b1f4735cd3d60e6849f", + "fields": { + "code_commune_insee": "29102", + "nom_de_la_commune": "LANDELEAU", + "code_postal": "29530", + "coordonnees_gps": [ + 48.2527721686, + -3.73269779844 + ], + "libelle_d_acheminement": "LANDELEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.73269779844, + 48.2527721686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5afbd08cfe9c304479fb6bcf9270d6cb33d7e7d", + "fields": { + "code_commune_insee": "29104", + "nom_de_la_commune": "LANDEVENNEC", + "code_postal": "29560", + "coordonnees_gps": [ + 48.2809218863, + -4.31254922353 + ], + "libelle_d_acheminement": "LANDEVENNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.31254922353, + 48.2809218863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6ee8098d0002765f4647141d5890bebc434b92b", + "fields": { + "code_commune_insee": "29107", + "nom_de_la_commune": "LANDUDAL", + "code_postal": "29510", + "coordonnees_gps": [ + 48.0564737827, + -3.97703879663 + ], + "libelle_d_acheminement": "LANDUDAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.97703879663, + 48.0564737827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8a5779998d6b7c438fdbb2eef369d6feb5f7cc2", + "fields": { + "code_commune_insee": "29109", + "nom_de_la_commune": "LANDUNVEZ", + "code_postal": "29840", + "coordonnees_gps": [ + 48.5343990673, + -4.72936031932 + ], + "libelle_d_acheminement": "LANDUNVEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.72936031932, + 48.5343990673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cc2630e4bfdfb5105071e079223eb83010766dc", + "fields": { + "code_commune_insee": "29111", + "nom_de_la_commune": "LANHOUARNEAU", + "code_postal": "29430", + "coordonnees_gps": [ + 48.5756574548, + -4.20447791215 + ], + "libelle_d_acheminement": "LANHOUARNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.20447791215, + 48.5756574548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8591a6b16d6c74b449544a81799d1586aec4493", + "fields": { + "code_commune_insee": "29115", + "nom_de_la_commune": "LANNEDERN", + "code_postal": "29190", + "coordonnees_gps": [ + 48.2892302936, + -3.90201748494 + ], + "libelle_d_acheminement": "LANNEDERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.90201748494, + 48.2892302936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e09b159bb1b6ff0a96028bfa5024575dd668c98", + "fields": { + "code_commune_insee": "29116", + "nom_de_la_commune": "LANNEUFFRET", + "code_postal": "29400", + "coordonnees_gps": [ + 48.49529484, + -4.20213358144 + ], + "libelle_d_acheminement": "LANNEUFFRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.20213358144, + 48.49529484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7febc31b9d7881131f5d1b898bc1dbc45b3b481b", + "fields": { + "code_commune_insee": "29117", + "nom_de_la_commune": "LANNILIS", + "code_postal": "29870", + "coordonnees_gps": [ + 48.569680781, + -4.52393031535 + ], + "libelle_d_acheminement": "LANNILIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.52393031535, + 48.569680781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4acfc9805f5f390f8fe8d3d6a151ac1a88d95e00", + "fields": { + "code_commune_insee": "29123", + "nom_de_la_commune": "LENNON", + "code_postal": "29190", + "coordonnees_gps": [ + 48.2050048931, + -3.90339473931 + ], + "libelle_d_acheminement": "LENNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.90339473931, + 48.2050048931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7263a639e10ac4ff58c6f522512506b4ff51c3f5", + "fields": { + "code_commune_insee": "29124", + "nom_de_la_commune": "LESNEVEN", + "code_postal": "29260", + "coordonnees_gps": [ + 48.5801251196, + -4.31293757639 + ], + "libelle_d_acheminement": "LESNEVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.31293757639, + 48.5801251196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "544d78bfbd41196f15fcf5f6add07d966b9b7d77", + "fields": { + "code_commune_insee": "29125", + "nom_de_la_commune": "LEUHAN", + "code_postal": "29390", + "coordonnees_gps": [ + 48.1006333351, + -3.77816667644 + ], + "libelle_d_acheminement": "LEUHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.77816667644, + 48.1006333351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a53fada3808610c6b265bcd2fb8c518fd2a6579c", + "fields": { + "code_commune_insee": "29130", + "nom_de_la_commune": "LOCMARIA PLOUZANE", + "code_postal": "29280", + "coordonnees_gps": [ + 48.3707952955, + -4.65000050558 + ], + "libelle_d_acheminement": "LOCMARIA PLOUZANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.65000050558, + 48.3707952955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0dc5090f1256c8e2d393eb99668e14fc9fa39d6", + "fields": { + "code_commune_insee": "29134", + "nom_de_la_commune": "LOCRONAN", + "code_postal": "29180", + "coordonnees_gps": [ + 48.0978281716, + -4.21322277368 + ], + "libelle_d_acheminement": "LOCRONAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.21322277368, + 48.0978281716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ba82c4f0433372e1a0f5de5816392d406f5df89", + "fields": { + "code_commune_insee": "29137", + "nom_de_la_commune": "LOGONNA DAOULAS", + "code_postal": "29460", + "coordonnees_gps": [ + 48.3286587483, + -4.28895101549 + ], + "libelle_d_acheminement": "LOGONNA DAOULAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28895101549, + 48.3286587483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a7b271eeb9ae4a1389a533161227a7ddd6851a8", + "fields": { + "code_commune_insee": "29142", + "nom_de_la_commune": "LOTHEY", + "code_postal": "29190", + "coordonnees_gps": [ + 48.1833807935, + -4.02633181773 + ], + "libelle_d_acheminement": "LOTHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.02633181773, + 48.1833807935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42420976c74a43e96033d24afdfae2ba28272a5c", + "fields": { + "code_commune_insee": "29145", + "nom_de_la_commune": "CONFORT MEILARS", + "code_postal": "29790", + "coordonnees_gps": [ + 48.0555503715, + -4.43487649608 + ], + "libelle_d_acheminement": "CONFORT MEILARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.43487649608, + 48.0555503715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e23a61e3daa74f9472e052bb1f53beb056a95a23", + "fields": { + "code_commune_insee": "29146", + "nom_de_la_commune": "MELGVEN", + "code_postal": "29140", + "coordonnees_gps": [ + 47.9129471121, + -3.84206992486 + ], + "libelle_d_acheminement": "MELGVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.84206992486, + 47.9129471121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19b2873ecae64524e9b44e9adb9156b835cf952e", + "fields": { + "code_commune_insee": "29152", + "nom_de_la_commune": "MOTREFF", + "code_postal": "29270", + "coordonnees_gps": [ + 48.2197857067, + -3.56230710183 + ], + "libelle_d_acheminement": "MOTREFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.56230710183, + 48.2197857067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f493dd0e38db8370f75a9125b43ea812b6c27c05", + "fields": { + "code_commune_insee": "29159", + "nom_de_la_commune": "PEUMERIT", + "code_postal": "29710", + "coordonnees_gps": [ + 47.9464369545, + -4.29604672323 + ], + "libelle_d_acheminement": "PEUMERIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.29604672323, + 47.9464369545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "351ee89951fb263c4b21560dfb88dd6ee158db45", + "fields": { + "code_commune_insee": "29166", + "nom_de_la_commune": "PLOEVEN", + "code_postal": "29550", + "coordonnees_gps": [ + 48.1580700444, + -4.21291088253 + ], + "libelle_d_acheminement": "PLOEVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.21291088253, + 48.1580700444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "376bef2f65c2b0a2802f8792990910e3123688c9", + "fields": { + "code_commune_insee": "29170", + "nom_de_la_commune": "PLOMELIN", + "code_postal": "29700", + "coordonnees_gps": [ + 47.9356261766, + -4.15034793937 + ], + "libelle_d_acheminement": "PLOMELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.15034793937, + 47.9356261766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2f51889250d2813062f4fbccd41c701971d6622", + "fields": { + "code_commune_insee": "29174", + "nom_de_la_commune": "PLONEOUR LANVERN", + "code_postal": "29720", + "coordonnees_gps": [ + 47.9084114652, + -4.26536047982 + ], + "libelle_d_acheminement": "PLONEOUR LANVERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.26536047982, + 47.9084114652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01d0656587f8d583f1922962c72689725e2c6d32", + "fields": { + "code_commune_insee": "29176", + "nom_de_la_commune": "PLONEVEZ PORZAY", + "code_postal": "29550", + "coordonnees_gps": [ + 48.1272296746, + -4.23927606607 + ], + "libelle_d_acheminement": "PLONEVEZ PORZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.23927606607, + 48.1272296746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2d131508493778dd0e8d46d9f061ede419ed340", + "fields": { + "code_commune_insee": "29177", + "nom_de_la_commune": "PLOUARZEL", + "code_postal": "29810", + "coordonnees_gps": [ + 48.4388139541, + -4.72098791588 + ], + "libelle_d_acheminement": "PLOUARZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.72098791588, + 48.4388139541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc3c66e99f1b193e6576c1a9cabfbbf4da378bca", + "fields": { + "code_commune_insee": "29180", + "nom_de_la_commune": "PLOUDIRY", + "code_postal": "29800", + "coordonnees_gps": [ + 48.4572473494, + -4.12922591839 + ], + "libelle_d_acheminement": "PLOUDIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.12922591839, + 48.4572473494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d907dd493127a6bb8114a91f456266436e8e475", + "fields": { + "code_commune_insee": "29184", + "nom_de_la_commune": "PLOUENAN", + "code_postal": "29420", + "coordonnees_gps": [ + 48.6212293904, + -3.981458033 + ], + "libelle_d_acheminement": "PLOUENAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.981458033, + 48.6212293904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7af02dc308b8a8db31d9ffe7187f838b655ddd1a", + "fields": { + "code_commune_insee": "29187", + "nom_de_la_commune": "PLOUGAR", + "code_postal": "29440", + "coordonnees_gps": [ + 48.5563599197, + -4.12888327343 + ], + "libelle_d_acheminement": "PLOUGAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.12888327343, + 48.5563599197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e957155745f356f021e5877ca8d2ce80f3af3e66", + "fields": { + "ligne_5": "PRIMEL TREGASTEL", + "code_commune_insee": "29188", + "libelle_d_acheminement": "PLOUGASNOU", + "code_postal": "29630", + "nom_de_la_commune": "PLOUGASNOU", + "coordonnees_gps": [ + 48.6775667227, + -3.8123079305 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8123079305, + 48.6775667227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "343f01ba3ac647a53f6436c5347cfdd142c5a863", + "fields": { + "code_commune_insee": "29201", + "nom_de_la_commune": "PLOUMOGUER", + "code_postal": "29810", + "coordonnees_gps": [ + 48.3995302533, + -4.71529077573 + ], + "libelle_d_acheminement": "PLOUMOGUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.71529077573, + 48.3995302533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce9c30a91d89875fb7c1fb89c2dfd0cb94f7acb4", + "fields": { + "code_commune_insee": "29204", + "nom_de_la_commune": "PLOUNEVENTER", + "code_postal": "29400", + "coordonnees_gps": [ + 48.5209452812, + -4.2090017471 + ], + "libelle_d_acheminement": "PLOUNEVENTER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.2090017471, + 48.5209452812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a0fb88b35bc3f4e3bdbef792672f75f2916bf3c", + "fields": { + "code_commune_insee": "29205", + "nom_de_la_commune": "PLOUNEVEZEL", + "code_postal": "29270", + "coordonnees_gps": [ + 48.3124244266, + -3.57451157796 + ], + "libelle_d_acheminement": "PLOUNEVEZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.57451157796, + 48.3124244266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "106e25e5e61af52f11bcf8050cda7516ebc29cbf", + "fields": { + "code_commune_insee": "29206", + "nom_de_la_commune": "PLOUNEVEZ LOCHRIST", + "code_postal": "29430", + "coordonnees_gps": [ + 48.6198454528, + -4.19874644192 + ], + "libelle_d_acheminement": "PLOUNEVEZ LOCHRIST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.19874644192, + 48.6198454528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4419f4ee16bb1fd2d5ec271fe9eee7a705581e03", + "fields": { + "code_commune_insee": "29237", + "nom_de_la_commune": "LA ROCHE MAURICE", + "code_postal": "29800", + "coordonnees_gps": [ + 48.4731568512, + -4.19434003063 + ], + "libelle_d_acheminement": "LA ROCHE MAURICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.19434003063, + 48.4731568512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84890176354fb35de584727f064a839da03007b8", + "fields": { + "code_commune_insee": "29238", + "nom_de_la_commune": "ROSCANVEL", + "code_postal": "29570", + "coordonnees_gps": [ + 48.3183736714, + -4.55863270014 + ], + "libelle_d_acheminement": "ROSCANVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.55863270014, + 48.3183736714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d36635e750cb25daa5cf342479a828006d5478f7", + "fields": { + "ligne_5": "KERNEVEL", + "code_commune_insee": "29241", + "libelle_d_acheminement": "ROSPORDEN", + "code_postal": "29140", + "nom_de_la_commune": "ROSPORDEN", + "coordonnees_gps": [ + 47.9583041483, + -3.80153477736 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.80153477736, + 47.9583041483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be6598a1f194ded456e805fed834f02b6f6e43d0", + "fields": { + "code_commune_insee": "29246", + "nom_de_la_commune": "ST ELOY", + "code_postal": "29460", + "coordonnees_gps": [ + 48.3633240509, + -4.11570482602 + ], + "libelle_d_acheminement": "ST ELOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.11570482602, + 48.3633240509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "896b860b8271c2b463f7a532bfbdb2a5408a65af", + "fields": { + "code_commune_insee": "29248", + "nom_de_la_commune": "ST FREGANT", + "code_postal": "29260", + "coordonnees_gps": [ + 48.5988235193, + -4.37368796467 + ], + "libelle_d_acheminement": "ST FREGANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.37368796467, + 48.5988235193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffce1909f4cc0cd8ecd76f4cd81f3a0521dfe756", + "fields": { + "code_commune_insee": "29255", + "nom_de_la_commune": "ST MEEN", + "code_postal": "29260", + "coordonnees_gps": [ + 48.5552363692, + -4.25945997316 + ], + "libelle_d_acheminement": "ST MEEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.25945997316, + 48.5552363692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "848defdc355d5e3db53210baf8445480677c985f", + "fields": { + "code_commune_insee": "29262", + "nom_de_la_commune": "ST SAUVEUR", + "code_postal": "29400", + "coordonnees_gps": [ + 48.4485765331, + -4.00036157147 + ], + "libelle_d_acheminement": "ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.00036157147, + 48.4485765331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee62e23513063ca1d82b5371d3528b3699778405", + "fields": { + "ligne_5": "LOC EGUINER ST THEGONNEC", + "code_commune_insee": "29266", + "libelle_d_acheminement": "ST THEGONNEC LOC EGUINER", + "code_postal": "29410", + "nom_de_la_commune": "ST THEGONNEC LOC EGUINER", + "coordonnees_gps": [ + 48.5113171528, + -3.93813377559 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.93813377559, + 48.5113171528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4dd22c8eddfb80855bce8fc5a3c482496989792", + "fields": { + "code_commune_insee": "29268", + "nom_de_la_commune": "ST THONAN", + "code_postal": "29800", + "coordonnees_gps": [ + 48.4765748709, + -4.32223178766 + ], + "libelle_d_acheminement": "ST THONAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.32223178766, + 48.4765748709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eee7a057149411608a8658d9032979678f8c558", + "fields": { + "code_commune_insee": "29277", + "nom_de_la_commune": "SIZUN", + "code_postal": "29450", + "coordonnees_gps": [ + 48.3948012299, + -4.04497181745 + ], + "libelle_d_acheminement": "SIZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.04497181745, + 48.3948012299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a75eed0b2f37b3b6df428f75021330da3f649e8", + "fields": { + "code_commune_insee": "29281", + "nom_de_la_commune": "TOURCH", + "code_postal": "29140", + "coordonnees_gps": [ + 48.0265824234, + -3.82409792498 + ], + "libelle_d_acheminement": "TOURCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.82409792498, + 48.0265824234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7cfdced2178386a72c7cdc8245326973b22b8d8", + "fields": { + "code_commune_insee": "29288", + "nom_de_la_commune": "TREGARANTEC", + "code_postal": "29260", + "coordonnees_gps": [ + 48.549214184, + -4.28952698165 + ], + "libelle_d_acheminement": "TREGARANTEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28952698165, + 48.549214184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a9653e507315cd7dc63ffa590c02e7d49ec1e7b", + "fields": { + "code_commune_insee": "29295", + "nom_de_la_commune": "TREMAOUEZAN", + "code_postal": "29800", + "coordonnees_gps": [ + 48.5091527499, + -4.25573982304 + ], + "libelle_d_acheminement": "TREMAOUEZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.25573982304, + 48.5091527499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f860a4c9f16719d87c4019803085a38a409a13b4", + "fields": { + "code_commune_insee": "29297", + "nom_de_la_commune": "TREMEVEN", + "code_postal": "29300", + "coordonnees_gps": [ + 47.9020408602, + -3.52520567711 + ], + "libelle_d_acheminement": "TREMEVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.52520567711, + 47.9020408602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbe0d119fcc7bec3587af155060328acd0a76d18", + "fields": { + "code_commune_insee": "29302", + "nom_de_la_commune": "PONT DE BUIS LES QUIMERCH", + "code_postal": "29590", + "coordonnees_gps": [ + 48.2755785211, + -4.10701817475 + ], + "libelle_d_acheminement": "PONT DE BUIS LES QUIMERCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10701817475, + 48.2755785211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56f94b04cd58c36213f517ac0219bce6cbbf9fa8", + "fields": { + "ligne_5": "QUIMERCH", + "code_commune_insee": "29302", + "libelle_d_acheminement": "PONT DE BUIS LES QUIMERCH", + "code_postal": "29590", + "nom_de_la_commune": "PONT DE BUIS LES QUIMERCH", + "coordonnees_gps": [ + 48.2755785211, + -4.10701817475 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.10701817475, + 48.2755785211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a861095f703f74e7887809b9ce08d65a45ff6e4", + "fields": { + "ligne_5": "MEZZAVIA", + "code_commune_insee": "2A004", + "libelle_d_acheminement": "AJACCIO", + "code_postal": "20167", + "nom_de_la_commune": "AJACCIO", + "coordonnees_gps": [ + 41.9347926638, + 8.70132275974 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.70132275974, + 41.9347926638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0519b73a9ff452aa4e899fc1caff64c0056031de", + "fields": { + "code_commune_insee": "2A011", + "nom_de_la_commune": "ALTAGENE", + "code_postal": "20112", + "coordonnees_gps": [ + 41.7091975922, + 9.07705100575 + ], + "libelle_d_acheminement": "ALTAGENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.07705100575, + 41.7091975922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f554243eb990fb9dadee1b1ed7e00348700f54be", + "fields": { + "code_commune_insee": "2A027", + "nom_de_la_commune": "AZZANA", + "code_postal": "20121", + "coordonnees_gps": [ + 42.1129499138, + 8.93094346781 + ], + "libelle_d_acheminement": "AZZANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.93094346781, + 42.1129499138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7f6584fda25c53e286f327dc3ddb90c33e26015", + "fields": { + "code_commune_insee": "2A038", + "nom_de_la_commune": "BILIA", + "code_postal": "20100", + "coordonnees_gps": [ + 41.6222677793, + 8.90493830672 + ], + "libelle_d_acheminement": "BILIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.90493830672, + 41.6222677793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c377151c676a9c0a804da58c04df3f1dbbe77281", + "fields": { + "code_commune_insee": "2A071", + "nom_de_la_commune": "CASALABRIVA", + "code_postal": "20140", + "coordonnees_gps": [ + 41.7604107379, + 8.92486438361 + ], + "libelle_d_acheminement": "CASALABRIVA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.92486438361, + 41.7604107379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f72db5f60836b044f69791b0fa5a74bd56da125d", + "fields": { + "code_commune_insee": "2A085", + "nom_de_la_commune": "CAURO", + "code_postal": "20117", + "coordonnees_gps": [ + 41.9042036105, + 8.89390218223 + ], + "libelle_d_acheminement": "CAURO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.89390218223, + 41.9042036105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "701f31c38d48c8adc89101ac0f275af701a89a08", + "fields": { + "code_commune_insee": "2A104", + "nom_de_la_commune": "ECCICA SUARELLA", + "code_postal": "20117", + "coordonnees_gps": [ + 41.9231596216, + 8.89401261483 + ], + "libelle_d_acheminement": "ECCICA SUARELLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.89401261483, + 41.9231596216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b5df24a3db10e5580d76871f71107d81ee52507", + "fields": { + "code_commune_insee": "2A108", + "nom_de_la_commune": "EVISA", + "code_postal": "20126", + "coordonnees_gps": [ + 42.285250229, + 8.82039690418 + ], + "libelle_d_acheminement": "EVISA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.82039690418, + 42.285250229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8411c3f1251aadf3d7a9476f1aec15ca8e409452", + "fields": { + "code_commune_insee": "2A139", + "nom_de_la_commune": "LECCI", + "code_postal": "20137", + "coordonnees_gps": [ + 41.6654830708, + 9.31906773443 + ], + "libelle_d_acheminement": "LECCI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.31906773443, + 41.6654830708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9b80f7f3f4f5e1d97ed2b0354c47778c45f7eb3", + "fields": { + "code_commune_insee": "2A142", + "nom_de_la_commune": "LEVIE", + "code_postal": "20170", + "coordonnees_gps": [ + 41.6516390001, + 9.11567295923 + ], + "libelle_d_acheminement": "LEVIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.11567295923, + 41.6516390001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c4bbd4277183da3e3e94a3f0fdc293667a6f4d9", + "fields": { + "code_commune_insee": "2A158", + "nom_de_la_commune": "MELA", + "code_postal": "20112", + "coordonnees_gps": [ + 41.6843116353, + 9.09251801465 + ], + "libelle_d_acheminement": "MELA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.09251801465, + 41.6843116353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4c256634621472eb685cd06d4e36fcf34700304", + "fields": { + "code_commune_insee": "2A163", + "nom_de_la_commune": "MONACIA D AULLENE", + "code_postal": "20171", + "coordonnees_gps": [ + 41.5249319364, + 9.01194250381 + ], + "libelle_d_acheminement": "MONACIA D AULLENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.01194250381, + 41.5249319364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e08267c8a6ee0d68494e9603c309725ad6bf742a", + "fields": { + "ligne_5": "PORTO", + "code_commune_insee": "2A198", + "libelle_d_acheminement": "OTA", + "code_postal": "20150", + "nom_de_la_commune": "OTA", + "coordonnees_gps": [ + 42.2548660718, + 8.73294026195 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73294026195, + 42.2548660718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87bece3a4770ff8f0eacff8c2c0d9eab538026de", + "fields": { + "code_commune_insee": "2A204", + "nom_de_la_commune": "PASTRICCIOLA", + "code_postal": "20121", + "coordonnees_gps": [ + 42.1434520228, + 9.01623489472 + ], + "libelle_d_acheminement": "PASTRICCIOLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.01623489472, + 42.1434520228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4f0bb976223fb93614cf879c842c1ea076dd8cf", + "fields": { + "code_commune_insee": "2A232", + "nom_de_la_commune": "PILA CANALE", + "code_postal": "20123", + "coordonnees_gps": [ + 41.7923350727, + 8.89878366545 + ], + "libelle_d_acheminement": "PILA CANALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.89878366545, + 41.7923350727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67e782ab0b4978d96a2c70464ce54d2660fb91ed", + "fields": { + "code_commune_insee": "2A240", + "nom_de_la_commune": "POGGIOLO", + "code_postal": "20125", + "coordonnees_gps": [ + 42.1628161972, + 8.89848173922 + ], + "libelle_d_acheminement": "POGGIOLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.89848173922, + 42.1628161972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8744ba7089fd3d6d2b7eb96eeae0a3be3718f60e", + "fields": { + "code_commune_insee": "2A259", + "nom_de_la_commune": "REZZA", + "code_postal": "20121", + "coordonnees_gps": [ + 42.1240747257, + 8.95203254705 + ], + "libelle_d_acheminement": "REZZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.95203254705, + 42.1240747257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95aea8431b41db99e50be492727612b0b8c6f595", + "fields": { + "code_commune_insee": "2A266", + "nom_de_la_commune": "SALICE", + "code_postal": "20121", + "coordonnees_gps": [ + 42.1045072661, + 8.90188848529 + ], + "libelle_d_acheminement": "SALICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.90188848529, + 42.1045072661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49bea154fb69fa589fa5ae690ee7e075a58fa9ce", + "fields": { + "code_commune_insee": "2A279", + "nom_de_la_commune": "SERRIERA", + "code_postal": "20147", + "coordonnees_gps": [ + 42.307049386, + 8.73249922249 + ], + "libelle_d_acheminement": "SERRIERA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73249922249, + 42.307049386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "056071c039bf39a65f993e179b1494982b41e6f9", + "fields": { + "code_commune_insee": "2A282", + "nom_de_la_commune": "SOCCIA", + "code_postal": "20125", + "coordonnees_gps": [ + 42.2094271559, + 8.92258883331 + ], + "libelle_d_acheminement": "SOCCIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.92258883331, + 42.2094271559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09202aa58fae13b4c02249a3f8bda61dbd83552c", + "fields": { + "code_commune_insee": "2A308", + "nom_de_la_commune": "STE LUCIE DE TALLANO", + "code_postal": "20112", + "coordonnees_gps": [ + 41.6682904009, + 9.06116918689 + ], + "libelle_d_acheminement": "STE LUCIE DE TALLANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.06116918689, + 41.6682904009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9399662e3ece3e341a24ef56f6f7af3a26adc2f2", + "fields": { + "code_commune_insee": "2A323", + "nom_de_la_commune": "TAVACO", + "code_postal": "20167", + "coordonnees_gps": [ + 42.031523197, + 8.88435743542 + ], + "libelle_d_acheminement": "TAVACO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.88435743542, + 42.031523197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8ddd29575659659765f88bc563a14b4b21ce5fd", + "fields": { + "code_commune_insee": "2A324", + "nom_de_la_commune": "TAVERA", + "code_postal": "20163", + "coordonnees_gps": [ + 42.0697944697, + 9.01609349195 + ], + "libelle_d_acheminement": "TAVERA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.01609349195, + 42.0697944697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c3fb5ff468a266164d95ea432af1c117cfbd5ea", + "fields": { + "code_commune_insee": "2A330", + "nom_de_la_commune": "UCCIANI", + "code_postal": "20133", + "coordonnees_gps": [ + 42.0469909829, + 8.98239119896 + ], + "libelle_d_acheminement": "UCCIANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.98239119896, + 42.0469909829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1a35cfb0e6fcab7743e5c0d571ee3a6e9e5e62c", + "fields": { + "ligne_5": "SAGONE", + "code_commune_insee": "2A348", + "libelle_d_acheminement": "VICO", + "code_postal": "20118", + "nom_de_la_commune": "VICO", + "coordonnees_gps": [ + 42.1506390695, + 8.73051107045 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73051107045, + 42.1506390695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bea8977052901b86510aeb3676dc794d4394e1c8", + "fields": { + "code_commune_insee": "2A359", + "nom_de_la_commune": "ZICAVO", + "code_postal": "20132", + "coordonnees_gps": [ + 41.8845132229, + 9.1668409674 + ], + "libelle_d_acheminement": "ZICAVO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1668409674, + 41.8845132229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd45ef161b70dfa81d90b181c28974ff579e8cfd", + "fields": { + "code_commune_insee": "2B009", + "nom_de_la_commune": "ALERIA", + "code_postal": "20270", + "coordonnees_gps": [ + 42.1059105058, + 9.495645512 + ], + "libelle_d_acheminement": "ALERIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.495645512, + 42.1059105058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f91f4a261cfa0d2f285717b5672898ad71aca93", + "fields": { + "code_commune_insee": "2B012", + "nom_de_la_commune": "ALTIANI", + "code_postal": "20251", + "coordonnees_gps": [ + 42.2194492715, + 9.27831968193 + ], + "libelle_d_acheminement": "ALTIANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.27831968193, + 42.2194492715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9714bd37243d1bd5c6695098b982a83656fde971", + "fields": { + "code_commune_insee": "2B034", + "nom_de_la_commune": "BELGODERE", + "code_postal": "20226", + "coordonnees_gps": [ + 42.6078945875, + 9.01429591727 + ], + "libelle_d_acheminement": "BELGODERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.01429591727, + 42.6078945875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf274ec42ba3a923b16a7a8be04e5e0fec621186", + "fields": { + "code_commune_insee": "2B042", + "nom_de_la_commune": "BORGO", + "code_postal": "20290", + "coordonnees_gps": [ + 42.573930097, + 9.45690314359 + ], + "libelle_d_acheminement": "BORGO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45690314359, + 42.573930097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "462afc02a837ac02ffb615c70946697f1844c2dc", + "fields": { + "code_commune_insee": "2B045", + "nom_de_la_commune": "BUSTANICO", + "code_postal": "20212", + "coordonnees_gps": [ + 42.3272213954, + 9.30862060139 + ], + "libelle_d_acheminement": "BUSTANICO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.30862060139, + 42.3272213954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "537d9ae69a04558ad1fdf5ea4046b843970840c0", + "fields": { + "code_commune_insee": "2B049", + "nom_de_la_commune": "CALENZANA", + "code_postal": "20214", + "coordonnees_gps": [ + 42.4784267166, + 8.80369225001 + ], + "libelle_d_acheminement": "CALENZANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.80369225001, + 42.4784267166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47fe7efd536c6b237f197522cb7c5c1cf1c9cfca", + "fields": { + "code_commune_insee": "2B052", + "nom_de_la_commune": "CAMPANA", + "code_postal": "20229", + "coordonnees_gps": [ + 42.3886009558, + 9.33996817013 + ], + "libelle_d_acheminement": "CAMPANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.33996817013, + 42.3886009558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ce234ccc3182b75c274a9048af84ea8f707cee3", + "fields": { + "code_commune_insee": "2B054", + "nom_de_la_commune": "CAMPILE", + "code_postal": "20290", + "coordonnees_gps": [ + 42.4960198579, + 9.35529599495 + ], + "libelle_d_acheminement": "CAMPILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.35529599495, + 42.4960198579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22da75a3888878b0f728db410d5f7c393beaca2c", + "fields": { + "code_commune_insee": "2B057", + "nom_de_la_commune": "CANALE DI VERDE", + "code_postal": "20230", + "coordonnees_gps": [ + 42.2649423913, + 9.50202161228 + ], + "libelle_d_acheminement": "CANALE DI VERDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.50202161228, + 42.2649423913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd8c206017825695447438923e97189b937471cd", + "fields": { + "code_commune_insee": "2B080", + "nom_de_la_commune": "CASTIFAO", + "code_postal": "20218", + "coordonnees_gps": [ + 42.5259960689, + 9.11827028996 + ], + "libelle_d_acheminement": "CASTIFAO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.11827028996, + 42.5259960689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39da6e20feb389a6ffecf95eb1284e3b22ad580e", + "fields": { + "code_commune_insee": "2B081", + "nom_de_la_commune": "CASTIGLIONE", + "code_postal": "20218", + "coordonnees_gps": [ + 42.4094045132, + 9.11404108561 + ], + "libelle_d_acheminement": "CASTIGLIONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.11404108561, + 42.4094045132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "057217ef7cbf08826b90d5d60aea0407229f3b23", + "fields": { + "code_commune_insee": "2B086", + "nom_de_la_commune": "CENTURI", + "code_postal": "20238", + "coordonnees_gps": [ + 42.967184653, + 9.36449852317 + ], + "libelle_d_acheminement": "CENTURI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36449852317, + 42.967184653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b0b05a657bc69cd89bdc9f2d683ca7740b87907", + "fields": { + "ligne_5": "PRUNETE", + "code_commune_insee": "2B087", + "libelle_d_acheminement": "CERVIONE", + "code_postal": "20221", + "nom_de_la_commune": "CERVIONE", + "coordonnees_gps": [ + 42.3210930584, + 9.5154262188 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.5154262188, + 42.3210930584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "893e2124386a1060e43671c20c8cc7e99c01ed26", + "fields": { + "code_commune_insee": "2B110", + "nom_de_la_commune": "FAVALELLO", + "code_postal": "20212", + "coordonnees_gps": [ + 42.2881585012, + 9.24928255053 + ], + "libelle_d_acheminement": "FAVALELLO DE BOZIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.24928255053, + 42.2881585012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb64b8f7db78ea3087d194109409fc0520f5b664", + "fields": { + "code_commune_insee": "2B126", + "nom_de_la_commune": "GIUNCAGGIO", + "code_postal": "20251", + "coordonnees_gps": [ + 42.1914716312, + 9.38364577936 + ], + "libelle_d_acheminement": "GIUNCAGGIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.38364577936, + 42.1914716312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f706211f95840cd8469c832e5077d04aae09ee94", + "fields": { + "code_commune_insee": "2B134", + "nom_de_la_commune": "L ILE ROUSSE", + "code_postal": "20220", + "coordonnees_gps": [ + 42.631545096, + 8.93355970672 + ], + "libelle_d_acheminement": "L ILE ROUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.93355970672, + 42.631545096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adde0163b63315deff2ffa90a2a7531c310d8b62", + "fields": { + "code_commune_insee": "2B145", + "nom_de_la_commune": "LORETO DI CASINCA", + "code_postal": "20215", + "coordonnees_gps": [ + 42.4764297797, + 9.42503725117 + ], + "libelle_d_acheminement": "LORETO DI CASINCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42503725117, + 42.4764297797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c91252c7184dbfb0f4e536c0f0889e7b79fa5be", + "fields": { + "ligne_5": "CASAMOZZA", + "code_commune_insee": "2B148", + "libelle_d_acheminement": "LUCCIANA", + "code_postal": "20290", + "nom_de_la_commune": "LUCCIANA", + "coordonnees_gps": [ + 42.5413974263, + 9.47269139438 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.47269139438, + 42.5413974263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b2d9c7c05cba84d000d62a8e35e2b50cad0ce9d", + "fields": { + "code_commune_insee": "2B149", + "nom_de_la_commune": "LUGO DI NAZZA", + "code_postal": "20240", + "coordonnees_gps": [ + 42.0755704255, + 9.32349396148 + ], + "libelle_d_acheminement": "LUGO DI NAZZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.32349396148, + 42.0755704255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97ab7e14aef5ad4a0dcfd89a7a3f6e34ebaf20df", + "fields": { + "code_commune_insee": "2B161", + "nom_de_la_commune": "MOITA", + "code_postal": "20270", + "coordonnees_gps": [ + 42.2817067777, + 9.41036898711 + ], + "libelle_d_acheminement": "MOITA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.41036898711, + 42.2817067777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78f7779482cac455c86788aacf4aa57a6ec1c9e2", + "fields": { + "code_commune_insee": "2B162", + "nom_de_la_commune": "MOLTIFAO", + "code_postal": "20218", + "coordonnees_gps": [ + 42.4744158583, + 9.12322901577 + ], + "libelle_d_acheminement": "MOLTIFAO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.12322901577, + 42.4744158583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fc0e0060791e313376613f0bf8c364c912278d4", + "fields": { + "ligne_5": "ST RAINIER DE BALAGNE", + "code_commune_insee": "2B167", + "libelle_d_acheminement": "MONTEGROSSO", + "code_postal": "20214", + "nom_de_la_commune": "MONTEGROSSO", + "coordonnees_gps": [ + 42.543505718, + 8.85623474811 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.85623474811, + 42.543505718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18c79a34025b6a5fa4cf270f0a33f56606f0bc3a", + "fields": { + "code_commune_insee": "2B190", + "nom_de_la_commune": "OLMI CAPPELLA", + "code_postal": "20259", + "coordonnees_gps": [ + 42.5203092978, + 9.02008756946 + ], + "libelle_d_acheminement": "OLMI CAPPELLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.02008756946, + 42.5203092978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "908d210de1cf5969a9c2bc1da2c13941e8764cf9", + "fields": { + "code_commune_insee": "2B193", + "nom_de_la_commune": "OMESSA", + "code_postal": "20236", + "coordonnees_gps": [ + 42.3827760667, + 9.19362569461 + ], + "libelle_d_acheminement": "OMESSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.19362569461, + 42.3827760667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c66287a7574a6225a960eceaa249953d28cd829", + "fields": { + "code_commune_insee": "2B199", + "nom_de_la_commune": "PALASCA", + "code_postal": "20226", + "coordonnees_gps": [ + 42.63006979, + 9.05733396893 + ], + "libelle_d_acheminement": "PALASCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.05733396893, + 42.63006979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1647228ed8a95bfe602c67cc2d650d07cf58ea41", + "fields": { + "code_commune_insee": "2B221", + "nom_de_la_commune": "PIEDIPARTINO", + "code_postal": "20229", + "coordonnees_gps": [ + 42.3571679541, + 9.34439923246 + ], + "libelle_d_acheminement": "PIEDIPARTINO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.34439923246, + 42.3571679541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "977e26f7d744553aa0c86a2bf4aa9441b09eba4d", + "fields": { + "code_commune_insee": "2B224", + "nom_de_la_commune": "PIETRACORBARA", + "code_postal": "20233", + "coordonnees_gps": [ + 42.8446413084, + 9.43811996376 + ], + "libelle_d_acheminement": "PIETRACORBARA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43811996376, + 42.8446413084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ffc25efd197b6f22859e1e9c740c6f34426fd39", + "fields": { + "code_commune_insee": "2B226", + "nom_de_la_commune": "PIETRASERENA", + "code_postal": "20251", + "coordonnees_gps": [ + 42.2338486385, + 9.35461476082 + ], + "libelle_d_acheminement": "PIETRASERENA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.35461476082, + 42.2338486385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64fdb9d14f4e2286007b5d5a1a21e7fb852925ec", + "fields": { + "code_commune_insee": "2B234", + "nom_de_la_commune": "PIOBETTA", + "code_postal": "20234", + "coordonnees_gps": [ + 42.340337842, + 9.36784123009 + ], + "libelle_d_acheminement": "PIOBETTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36784123009, + 42.340337842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b2869e5a327d0f3c9ab44c8d112f49fa6ffd5dc", + "fields": { + "code_commune_insee": "2B235", + "nom_de_la_commune": "PIOGGIOLA", + "code_postal": "20259", + "coordonnees_gps": [ + 42.5232293967, + 8.97529988566 + ], + "libelle_d_acheminement": "PIOGGIOLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.97529988566, + 42.5232293967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0412379033b9f44b176120b1ad2a51d12d0ea2ae", + "fields": { + "code_commune_insee": "2B243", + "nom_de_la_commune": "POLVEROSO", + "code_postal": "20229", + "coordonnees_gps": [ + 42.4013407453, + 9.36126897942 + ], + "libelle_d_acheminement": "POLVEROSO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36126897942, + 42.4013407453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eb1aa70efda5ef00d1b214565ec3953d7cb4658", + "fields": { + "ligne_5": "MORTA", + "code_commune_insee": "2B251", + "libelle_d_acheminement": "PRUNELLI DI FIUMORBO", + "code_postal": "20243", + "nom_de_la_commune": "PRUNELLI DI FIUMORBO", + "coordonnees_gps": [ + 42.0072330034, + 9.36772895124 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36772895124, + 42.0072330034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30dc48a7099161e23574837b65552e02b885014b", + "fields": { + "code_commune_insee": "2B252", + "nom_de_la_commune": "PRUNO", + "code_postal": "20213", + "coordonnees_gps": [ + 42.4243509668, + 9.44755598733 + ], + "libelle_d_acheminement": "PRUNO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44755598733, + 42.4243509668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a528dd2a1a7ee28d54a3ee25e1e710d81282b90", + "fields": { + "ligne_5": "CHAMPLAN", + "code_commune_insee": "2B252", + "libelle_d_acheminement": "PRUNO", + "code_postal": "20213", + "nom_de_la_commune": "PRUNO", + "coordonnees_gps": [ + 42.4243509668, + 9.44755598733 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44755598733, + 42.4243509668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "307a7bc7c01cbfe5c06d9c33cd8920164c4d10a3", + "fields": { + "code_commune_insee": "2B263", + "nom_de_la_commune": "ROSPIGLIANI", + "code_postal": "20242", + "coordonnees_gps": [ + 42.1937798194, + 9.237935796 + ], + "libelle_d_acheminement": "ROSPIGLIANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.237935796, + 42.1937798194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11e137ee9d2dfe7ddd06af981cfd1727b8c4f541", + "fields": { + "code_commune_insee": "2B274", + "nom_de_la_commune": "SCOLCA", + "code_postal": "20290", + "coordonnees_gps": [ + 42.5393358572, + 9.36456503602 + ], + "libelle_d_acheminement": "SCOLCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36456503602, + 42.5393358572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d48c0f190dd79a67888e4de9fa04f0f870aaefcb", + "fields": { + "code_commune_insee": "2B286", + "nom_de_la_commune": "SORBO OCAGNANO", + "code_postal": "20213", + "coordonnees_gps": [ + 42.4824735958, + 9.48942771888 + ], + "libelle_d_acheminement": "SORBO OCAGNANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.48942771888, + 42.4824735958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "819d8469a6c0b1362868f305f1fbf6d084dff0c6", + "fields": { + "code_commune_insee": "2B298", + "nom_de_la_commune": "ST FLORENT", + "code_postal": "20217", + "coordonnees_gps": [ + 42.6872130129, + 9.28317002062 + ], + "libelle_d_acheminement": "ST FLORENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.28317002062, + 42.6872130129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b170e90ccb5d5da73a2aa5143337b9c2d3c67d4", + "fields": { + "code_commune_insee": "2B309", + "nom_de_la_commune": "SANTA MARIA DI LOTA", + "code_postal": "20200", + "coordonnees_gps": [ + 42.7511136181, + 9.42463745833 + ], + "libelle_d_acheminement": "SANTA MARIA DI LOTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42463745833, + 42.7511136181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb8b567ab750dbb1b104ebd7e2bd9675e055ee3e", + "fields": { + "code_commune_insee": "2B311", + "nom_de_la_commune": "SANTA MARIA POGGIO", + "code_postal": "20221", + "coordonnees_gps": [ + 42.3499153056, + 9.50880691499 + ], + "libelle_d_acheminement": "SANTA MARIA POGGIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.50880691499, + 42.3499153056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad81ca61b2e542deab2c3ef8aa52f2fa2204ffb4", + "fields": { + "code_commune_insee": "2B314", + "nom_de_la_commune": "SANTO PIETRO DI TENDA", + "code_postal": "20246", + "coordonnees_gps": [ + 42.6724371425, + 9.20380969804 + ], + "libelle_d_acheminement": "SANTO PIETRO DI TENDA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.20380969804, + 42.6724371425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f08e3974a6dcc443369c948acffa58a338f89a72", + "fields": { + "code_commune_insee": "2B319", + "nom_de_la_commune": "TALASANI", + "code_postal": "20230", + "coordonnees_gps": [ + 42.4178789576, + 9.50731616445 + ], + "libelle_d_acheminement": "TALASANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.50731616445, + 42.4178789576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "293e4774a5aa4909abad98d0108dcf0a1a668167", + "fields": { + "code_commune_insee": "2B321", + "nom_de_la_commune": "TARRANO", + "code_postal": "20234", + "coordonnees_gps": [ + 42.3442277413, + 9.40173128284 + ], + "libelle_d_acheminement": "TARRANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.40173128284, + 42.3442277413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78e76e4ee3d5e4e485397cdb6b647082c23e9f4b", + "fields": { + "code_commune_insee": "2B328", + "nom_de_la_commune": "TOX", + "code_postal": "20270", + "coordonnees_gps": [ + 42.2442032331, + 9.44292921906 + ], + "libelle_d_acheminement": "TOX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44292921906, + 42.2442032331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9754d555ab116381c368b833b7079f06ed905d2d", + "fields": { + "code_commune_insee": "2B337", + "nom_de_la_commune": "VALLE DI ROSTINO", + "code_postal": "20235", + "coordonnees_gps": [ + 42.4600748824, + 9.26425666892 + ], + "libelle_d_acheminement": "VALLE DI ROSTINO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.26425666892, + 42.4600748824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6b502dce86f6102bffb6f47f31832584071525c", + "fields": { + "code_commune_insee": "2B338", + "nom_de_la_commune": "VALLE D OREZZA", + "code_postal": "20229", + "coordonnees_gps": [ + 42.3623635376, + 9.40202286355 + ], + "libelle_d_acheminement": "VALLE D OREZZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.40202286355, + 42.3623635376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58d75935f40cb96f8f1b4119a199e573f325c32b", + "fields": { + "code_commune_insee": "2B354", + "nom_de_la_commune": "VIVARIO", + "code_postal": "20219", + "coordonnees_gps": [ + 42.1523820761, + 9.12065538823 + ], + "libelle_d_acheminement": "VIVARIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.12065538823, + 42.1523820761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1851fe23e93cf2901d8734bc090672957630ce60", + "fields": { + "ligne_5": "TATTONE", + "code_commune_insee": "2B354", + "libelle_d_acheminement": "VIVARIO", + "code_postal": "20219", + "nom_de_la_commune": "VIVARIO", + "coordonnees_gps": [ + 42.1523820761, + 9.12065538823 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.12065538823, + 42.1523820761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d9746e705b879a65f299fb03bc0ef8103874837", + "fields": { + "code_commune_insee": "2B361", + "nom_de_la_commune": "ZILIA", + "code_postal": "20214", + "coordonnees_gps": [ + 42.5186011027, + 8.90376320006 + ], + "libelle_d_acheminement": "ZILIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.90376320006, + 42.5186011027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8642a9c84a8c62a3794ecbdab6abdf1dca494dea", + "fields": { + "code_commune_insee": "2B364", + "nom_de_la_commune": "ZUANI", + "code_postal": "20272", + "coordonnees_gps": [ + 42.264826425, + 9.34126627348 + ], + "libelle_d_acheminement": "ZUANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.34126627348, + 42.264826425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71e787bdfbac556a6db8c882deb408c10bdde673", + "fields": { + "code_commune_insee": "30007", + "nom_de_la_commune": "ALES", + "code_postal": "30100", + "coordonnees_gps": [ + 44.1250099126, + 4.08828501262 + ], + "libelle_d_acheminement": "ALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08828501262, + 44.1250099126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "930e5bbbfa126f688e2a2b045426da96753c0f2c", + "fields": { + "code_commune_insee": "30014", + "nom_de_la_commune": "ARPAILLARGUES ET AUREILLAC", + "code_postal": "30700", + "coordonnees_gps": [ + 43.9996930612, + 4.36386339286 + ], + "libelle_d_acheminement": "ARPAILLARGUES ET AUREILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36386339286, + 43.9996930612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9feb9e6532ef419e3ebda77648e2d7d701f9f746", + "fields": { + "code_commune_insee": "30015", + "nom_de_la_commune": "ARPHY", + "code_postal": "30120", + "coordonnees_gps": [ + 44.0416960777, + 3.58679644026 + ], + "libelle_d_acheminement": "ARPHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58679644026, + 44.0416960777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f686bf0cc3f25205c981f28d11a3e7c95c6b0a0d", + "fields": { + "code_commune_insee": "30016", + "nom_de_la_commune": "ARRE", + "code_postal": "30120", + "coordonnees_gps": [ + 43.9579987719, + 3.51894390176 + ], + "libelle_d_acheminement": "ARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51894390176, + 43.9579987719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5067717201ef1f85e0ef05042536db80b6c504d", + "fields": { + "code_commune_insee": "30023", + "nom_de_la_commune": "AUJARGUES", + "code_postal": "30250", + "coordonnees_gps": [ + 43.7914361164, + 4.1286879695 + ], + "libelle_d_acheminement": "AUJARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1286879695, + 43.7914361164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "497999a78778708ece12649752f817d26587ea05", + "fields": { + "code_commune_insee": "30037", + "nom_de_la_commune": "BESSEGES", + "code_postal": "30160", + "coordonnees_gps": [ + 44.290395291, + 4.10784015546 + ], + "libelle_d_acheminement": "BESSEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10784015546, + 44.290395291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba59c134f3133b0fb6721c7b09a3adaa84678d2", + "fields": { + "code_commune_insee": "30048", + "nom_de_la_commune": "BOUQUET", + "code_postal": "30580", + "coordonnees_gps": [ + 44.1534538358, + 4.29248194802 + ], + "libelle_d_acheminement": "BOUQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29248194802, + 44.1534538358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9333a1e5ea79de42540b6cedb03b54427cc25d45", + "fields": { + "code_commune_insee": "30057", + "nom_de_la_commune": "CABRIERES", + "code_postal": "30210", + "coordonnees_gps": [ + 43.9078732541, + 4.46681487399 + ], + "libelle_d_acheminement": "CABRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46681487399, + 43.9078732541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "090fcb6738039291d01fdd16ac2166e09c8bbefb", + "fields": { + "code_commune_insee": "30060", + "nom_de_la_commune": "CAISSARGUES", + "code_postal": "30132", + "coordonnees_gps": [ + 43.7920118667, + 4.39549848347 + ], + "libelle_d_acheminement": "CAISSARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39549848347, + 43.7920118667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8752357f0d3e8afd67cf5ef55aff46dfa80ed3a8", + "fields": { + "code_commune_insee": "30062", + "nom_de_la_commune": "CALVISSON", + "code_postal": "30420", + "coordonnees_gps": [ + 43.7876770094, + 4.18871767018 + ], + "libelle_d_acheminement": "CALVISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18871767018, + 43.7876770094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5b85363b6e1e5e110f98e6c9de841e0d8c3bc24", + "fields": { + "code_commune_insee": "30064", + "nom_de_la_commune": "CAMPESTRE ET LUC", + "code_postal": "30770", + "coordonnees_gps": [ + 43.9384282987, + 3.40041205655 + ], + "libelle_d_acheminement": "CAMPESTRE ET LUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40041205655, + 43.9384282987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cb0f220bf464adc56f7565fe61d89230fb6290d", + "fields": { + "code_commune_insee": "30065", + "nom_de_la_commune": "CANAULES ET ARGENTIERES", + "code_postal": "30350", + "coordonnees_gps": [ + 43.9793142432, + 4.04842734125 + ], + "libelle_d_acheminement": "CANAULES ET ARGENTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04842734125, + 43.9793142432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aba22a836c860a2b49666d5cfd9c1d4c3ebcf933", + "fields": { + "code_commune_insee": "30068", + "nom_de_la_commune": "CARDET", + "code_postal": "30350", + "coordonnees_gps": [ + 44.014875409, + 4.08912365782 + ], + "libelle_d_acheminement": "CARDET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08912365782, + 44.014875409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afcd19472220ccd65bcb30b46972b5e70ddb7e99", + "fields": { + "code_commune_insee": "30083", + "nom_de_la_commune": "CODOGNAN", + "code_postal": "30920", + "coordonnees_gps": [ + 43.7226508777, + 4.2269417423 + ], + "libelle_d_acheminement": "CODOGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2269417423, + 43.7226508777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7138d23d2cf9d9076e2992e52ca1b26bdd72dd2b", + "fields": { + "code_commune_insee": "30094", + "nom_de_la_commune": "CORBES", + "code_postal": "30140", + "coordonnees_gps": [ + 44.0747158788, + 3.95441606687 + ], + "libelle_d_acheminement": "CORBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95441606687, + 44.0747158788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4988361017c3494cbfde99023bb1f46da99831ff", + "fields": { + "code_commune_insee": "30099", + "nom_de_la_commune": "CROS", + "code_postal": "30170", + "coordonnees_gps": [ + 44.0012514545, + 3.82331277161 + ], + "libelle_d_acheminement": "CROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82331277161, + 44.0012514545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77efb3c22e6ba1a7e7684c2a730eef58c27c2147", + "fields": { + "code_commune_insee": "30101", + "nom_de_la_commune": "DEAUX", + "code_postal": "30360", + "coordonnees_gps": [ + 44.0696746429, + 4.15790538028 + ], + "libelle_d_acheminement": "DEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15790538028, + 44.0696746429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e05ba88f55d6d8252a63701c7abcd9cc28fe1b37", + "fields": { + "code_commune_insee": "30104", + "nom_de_la_commune": "DOMESSARGUES", + "code_postal": "30350", + "coordonnees_gps": [ + 43.9732979744, + 4.16569285159 + ], + "libelle_d_acheminement": "DOMESSARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16569285159, + 43.9732979744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3986243b80f88a10d78fee72627f8b13a36bf799", + "fields": { + "code_commune_insee": "30106", + "nom_de_la_commune": "DURFORT ET ST MARTIN DE SOSSENAC", + "code_postal": "30170", + "coordonnees_gps": [ + 43.9854341188, + 3.95398099207 + ], + "libelle_d_acheminement": "DURFORT ET ST MARTIN DE SOSSENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95398099207, + 43.9854341188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d44e35ce5f31efca9314f7af80b48a3e9eb50b8a", + "fields": { + "code_commune_insee": "30110", + "nom_de_la_commune": "FLAUX", + "code_postal": "30700", + "coordonnees_gps": [ + 44.0133314652, + 4.51091483883 + ], + "libelle_d_acheminement": "FLAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51091483883, + 44.0133314652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "178ddf67ea8599676d8f824569e5cc222a35c40e", + "fields": { + "code_commune_insee": "30112", + "nom_de_la_commune": "FONS", + "code_postal": "30730", + "coordonnees_gps": [ + 43.9072744554, + 4.18054520529 + ], + "libelle_d_acheminement": "FONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18054520529, + 43.9072744554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "838da178839b33cd5ca1ae3aaf11d15f9f747b49", + "fields": { + "code_commune_insee": "30117", + "nom_de_la_commune": "FOURQUES", + "code_postal": "30300", + "coordonnees_gps": [ + 43.7116543785, + 4.54884323842 + ], + "libelle_d_acheminement": "FOURQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54884323842, + 43.7116543785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c5b8afd1b68880d26ffa0705c240d38391dd377", + "fields": { + "code_commune_insee": "30119", + "nom_de_la_commune": "FRESSAC", + "code_postal": "30170", + "coordonnees_gps": [ + 43.9964171524, + 3.9209656443 + ], + "libelle_d_acheminement": "FRESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9209656443, + 43.9964171524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c71199430d6c565c4fc08cee0b87b169d16a8b0a", + "fields": { + "code_commune_insee": "30121", + "nom_de_la_commune": "GAILHAN", + "code_postal": "30260", + "coordonnees_gps": [ + 43.8468404118, + 4.02923303341 + ], + "libelle_d_acheminement": "GAILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02923303341, + 43.8468404118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "026d827ed80837a19fdabf07a8f861b7e558f99d", + "fields": { + "code_commune_insee": "30122", + "nom_de_la_commune": "GAJAN", + "code_postal": "30730", + "coordonnees_gps": [ + 43.8985088246, + 4.22564270538 + ], + "libelle_d_acheminement": "GAJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22564270538, + 43.8985088246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df26b7273e89ddde88be1878177f45ea0687e897", + "fields": { + "code_commune_insee": "30135", + "nom_de_la_commune": "JONQUIERES ST VINCENT", + "code_postal": "30300", + "coordonnees_gps": [ + 43.8279005842, + 4.55775920877 + ], + "libelle_d_acheminement": "JONQUIERES ST VINCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55775920877, + 43.8279005842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c264e1af111e065e0b18a98cf8be73b82ab60127", + "fields": { + "code_commune_insee": "30136", + "nom_de_la_commune": "JUNAS", + "code_postal": "30250", + "coordonnees_gps": [ + 43.7615067362, + 4.11752159876 + ], + "libelle_d_acheminement": "JUNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11752159876, + 43.7615067362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6cd8a9e7d0d42f956a0e4e083ea670073397403", + "fields": { + "code_commune_insee": "30138", + "nom_de_la_commune": "LANGLADE", + "code_postal": "30980", + "coordonnees_gps": [ + 43.8045117845, + 4.25533661815 + ], + "libelle_d_acheminement": "LANGLADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25533661815, + 43.8045117845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83286753ed03a518923657cec7ac626076089a06", + "fields": { + "code_commune_insee": "30143", + "nom_de_la_commune": "LAVAL ST ROMAN", + "code_postal": "30760", + "coordonnees_gps": [ + 44.300208195, + 4.50443092507 + ], + "libelle_d_acheminement": "LAVAL ST ROMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50443092507, + 44.300208195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0c0a55874bd6df32ec260de1d4c5e6ef4411674", + "fields": { + "code_commune_insee": "30150", + "nom_de_la_commune": "LOGRIAN FLORIAN", + "code_postal": "30610", + "coordonnees_gps": [ + 43.946291935, + 4.02495373936 + ], + "libelle_d_acheminement": "LOGRIAN FLORIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02495373936, + 43.946291935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "624739e9cc0f0937f10e0e0acce45225d6367596", + "fields": { + "code_commune_insee": "30168", + "nom_de_la_commune": "MIALET", + "code_postal": "30140", + "coordonnees_gps": [ + 44.1249777837, + 3.93832235648 + ], + "libelle_d_acheminement": "MIALET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93832235648, + 44.1249777837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b403ad9cbb391a873ee26601a015f230ed2aef1", + "fields": { + "code_commune_insee": "30171", + "nom_de_la_commune": "MOLIERES SUR CEZE", + "code_postal": "30410", + "coordonnees_gps": [ + 44.261353293, + 4.14846746114 + ], + "libelle_d_acheminement": "MOLIERES SUR CEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14846746114, + 44.261353293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85e493b8d7a2b17928edab0505139723de51fd36", + "fields": { + "code_commune_insee": "30174", + "nom_de_la_commune": "MONTAREN ET ST MEDIERS", + "code_postal": "30700", + "coordonnees_gps": [ + 44.0446191857, + 4.38296878497 + ], + "libelle_d_acheminement": "MONTAREN ET ST MEDIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38296878497, + 44.0446191857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c39a7b6daf1749cae0a41f382119919e00bce598", + "fields": { + "code_commune_insee": "30179", + "nom_de_la_commune": "MONTFRIN", + "code_postal": "30490", + "coordonnees_gps": [ + 43.8750973783, + 4.59182307078 + ], + "libelle_d_acheminement": "MONTFRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59182307078, + 43.8750973783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee4ef195641098adb8f317f4b122bc142bcbd8a7", + "fields": { + "code_commune_insee": "30182", + "nom_de_la_commune": "MONTPEZAT", + "code_postal": "30730", + "coordonnees_gps": [ + 43.8539397379, + 4.15932886885 + ], + "libelle_d_acheminement": "MONTPEZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15932886885, + 43.8539397379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf2d715123f378388fc85578819b038266f455b1", + "fields": { + "code_commune_insee": "30183", + "nom_de_la_commune": "MOULEZAN", + "code_postal": "30350", + "coordonnees_gps": [ + 43.9255132059, + 4.12932302147 + ], + "libelle_d_acheminement": "MOULEZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12932302147, + 43.9255132059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19831b289f2086f8374b2ce6ca8e8daa5d77dade", + "fields": { + "code_commune_insee": "30184", + "nom_de_la_commune": "MOUSSAC", + "code_postal": "30190", + "coordonnees_gps": [ + 43.9775652657, + 4.23531660629 + ], + "libelle_d_acheminement": "MOUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23531660629, + 43.9775652657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fe6da4d5ceb0e4a0d52a6a14a392800a13cea50", + "fields": { + "code_commune_insee": "30187", + "nom_de_la_commune": "NAVACELLES", + "code_postal": "30580", + "coordonnees_gps": [ + 44.1655136913, + 4.23593579297 + ], + "libelle_d_acheminement": "NAVACELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23593579297, + 44.1655136913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91eb8fedb77f263eb6b8ca89d6d4f160045f8bff", + "fields": { + "ligne_5": "ST CESAIRE", + "code_commune_insee": "30189", + "libelle_d_acheminement": "NIMES", + "code_postal": "30900", + "nom_de_la_commune": "NIMES", + "coordonnees_gps": [ + 43.844938394, + 4.34806796996 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34806796996, + 43.844938394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4102adf1684d3a97981f3b712b34473e6fe48cd3", + "fields": { + "code_commune_insee": "30197", + "nom_de_la_commune": "LES PLANS", + "code_postal": "30340", + "coordonnees_gps": [ + 44.1405053543, + 4.21212255981 + ], + "libelle_d_acheminement": "LES PLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21212255981, + 44.1405053543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e75998f00e5a0089c8bca8f9a98d6ffe24170093", + "fields": { + "code_commune_insee": "30201", + "nom_de_la_commune": "PONTEILS ET BRESIS", + "code_postal": "30450", + "coordonnees_gps": [ + 44.3981409467, + 3.96697312804 + ], + "libelle_d_acheminement": "PONTEILS ET BRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96697312804, + 44.3981409467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3880fc774b54956f4d25d1296008c6b0c3cd1e21", + "fields": { + "code_commune_insee": "30202", + "nom_de_la_commune": "PONT ST ESPRIT", + "code_postal": "30130", + "coordonnees_gps": [ + 44.2526637065, + 4.63901945786 + ], + "libelle_d_acheminement": "PONT ST ESPRIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63901945786, + 44.2526637065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01828537d53db2f57dea12629a6af197e30a8397", + "fields": { + "code_commune_insee": "30204", + "nom_de_la_commune": "POTELIERES", + "code_postal": "30500", + "coordonnees_gps": [ + 44.2243968087, + 4.22738343545 + ], + "libelle_d_acheminement": "POTELIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22738343545, + 44.2243968087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66a757432cb9164fc6fc46073ca8708b1127c940", + "fields": { + "code_commune_insee": "30206", + "nom_de_la_commune": "POULX", + "code_postal": "30320", + "coordonnees_gps": [ + 43.9145982171, + 4.42394747626 + ], + "libelle_d_acheminement": "POULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42394747626, + 43.9145982171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "404ce30adefde574b3461d98735ea91d6beb1ddf", + "fields": { + "code_commune_insee": "30207", + "nom_de_la_commune": "POUZILHAC", + "code_postal": "30210", + "coordonnees_gps": [ + 44.0390457714, + 4.5813397789 + ], + "libelle_d_acheminement": "POUZILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5813397789, + 44.0390457714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1611cc4b7a51e207dd6bf3f7e7ca54e849f6b649", + "fields": { + "code_commune_insee": "30211", + "nom_de_la_commune": "REDESSAN", + "code_postal": "30129", + "coordonnees_gps": [ + 43.8345466774, + 4.51298942933 + ], + "libelle_d_acheminement": "REDESSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51298942933, + 43.8345466774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e94380e6637b52ede6acea265b061059c3efd4af", + "fields": { + "code_commune_insee": "30213", + "nom_de_la_commune": "REVENS", + "code_postal": "30750", + "coordonnees_gps": [ + 44.091237523, + 3.30243079472 + ], + "libelle_d_acheminement": "REVENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30243079472, + 44.091237523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c6f4d0d3a95a3008ac39d560eb0a8474d4dc224", + "fields": { + "code_commune_insee": "30214", + "nom_de_la_commune": "RIBAUTE LES TAVERNES", + "code_postal": "30720", + "coordonnees_gps": [ + 44.0418878865, + 4.08501586323 + ], + "libelle_d_acheminement": "RIBAUTE LES TAVERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08501586323, + 44.0418878865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4ba2433f6383635d1642b2afe1de0f5f113b41d", + "fields": { + "code_commune_insee": "30217", + "nom_de_la_commune": "ROCHEFORT DU GARD", + "code_postal": "30650", + "coordonnees_gps": [ + 43.9811688272, + 4.68155728487 + ], + "libelle_d_acheminement": "ROCHEFORT DU GARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68155728487, + 43.9811688272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4099b77ff515e657d2ab3b281b25ea3ededa5ec3", + "fields": { + "code_commune_insee": "30224", + "nom_de_la_commune": "LA ROUVIERE", + "code_postal": "30190", + "coordonnees_gps": [ + 43.9199042762, + 4.24092022842 + ], + "libelle_d_acheminement": "LA ROUVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24092022842, + 43.9199042762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "156b736cee1f0d23f27118f0d0b02ddd714c3bb9", + "fields": { + "code_commune_insee": "30226", + "nom_de_la_commune": "ST ALEXANDRE", + "code_postal": "30130", + "coordonnees_gps": [ + 44.2239447184, + 4.63170135907 + ], + "libelle_d_acheminement": "ST ALEXANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63170135907, + 44.2239447184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70a55246bf49ae1df508185abbef6b852e1ece73", + "fields": { + "code_commune_insee": "30228", + "nom_de_la_commune": "STE ANASTASIE", + "code_postal": "30190", + "coordonnees_gps": [ + 43.9319120085, + 4.34202199629 + ], + "libelle_d_acheminement": "STE ANASTASIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34202199629, + 43.9319120085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bef28fa26760b5fe65233a0fbe00aadb6ee6eac9", + "fields": { + "code_commune_insee": "30230", + "nom_de_la_commune": "ST ANDRE DE ROQUEPERTUIS", + "code_postal": "30630", + "coordonnees_gps": [ + 44.240660437, + 4.44801510807 + ], + "libelle_d_acheminement": "ST ANDRE DE ROQUEPERTUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44801510807, + 44.240660437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b220c4c5b0c790c602593e9b383919376e94a42a", + "fields": { + "code_commune_insee": "30232", + "nom_de_la_commune": "ST ANDRE D OLERARGUES", + "code_postal": "30330", + "coordonnees_gps": [ + 44.1653858318, + 4.4963265641 + ], + "libelle_d_acheminement": "ST ANDRE D OLERARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4963265641, + 44.1653858318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5abef845ec649ef6407a84f3248d63af78f86bdc", + "fields": { + "code_commune_insee": "30233", + "nom_de_la_commune": "ST BAUZELY", + "code_postal": "30730", + "coordonnees_gps": [ + 43.9219966134, + 4.19218594435 + ], + "libelle_d_acheminement": "ST BAUZELY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19218594435, + 43.9219966134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15da5822b50fec846662433e63a933b4a4f54f05", + "fields": { + "code_commune_insee": "30234", + "nom_de_la_commune": "ST BENEZET", + "code_postal": "30350", + "coordonnees_gps": [ + 43.9911168428, + 4.13585383193 + ], + "libelle_d_acheminement": "ST BENEZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13585383193, + 43.9911168428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3e9eeba606792e0537e941a5457bbe4ee819f77", + "fields": { + "code_commune_insee": "30235", + "nom_de_la_commune": "ST BONNET DU GARD", + "code_postal": "30210", + "coordonnees_gps": [ + 43.9271833861, + 4.53872495872 + ], + "libelle_d_acheminement": "ST BONNET DU GARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53872495872, + 43.9271833861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3206e4c3bc120bad9a4047ad69a5a00432f46340", + "fields": { + "code_commune_insee": "30254", + "nom_de_la_commune": "ST GENIES DE COMOLAS", + "code_postal": "30150", + "coordonnees_gps": [ + 44.0657349298, + 4.73124185894 + ], + "libelle_d_acheminement": "ST GENIES DE COMOLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73124185894, + 44.0657349298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fc533ff0fae40503bf86fe3ecbb13a269abaef1", + "fields": { + "code_commune_insee": "30255", + "nom_de_la_commune": "ST GENIES DE MALGOIRES", + "code_postal": "30190", + "coordonnees_gps": [ + 43.94623194, + 4.2131714959 + ], + "libelle_d_acheminement": "ST GENIES DE MALGOIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2131714959, + 43.94623194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8ad763fce5f961ef6a1b4fe54a5f383489b649e", + "fields": { + "code_commune_insee": "30263", + "nom_de_la_commune": "ST HIPPOLYTE DU FORT", + "code_postal": "30170", + "coordonnees_gps": [ + 43.9541335722, + 3.85306084784 + ], + "libelle_d_acheminement": "ST HIPPOLYTE DU FORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85306084784, + 43.9541335722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed832cb5b1b25f090149f74d85d70f8122dd1280", + "fields": { + "code_commune_insee": "30267", + "nom_de_la_commune": "ST JEAN DE SERRES", + "code_postal": "30350", + "coordonnees_gps": [ + 43.9898474305, + 4.0762512043 + ], + "libelle_d_acheminement": "ST JEAN DE SERRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0762512043, + 43.9898474305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b42d8a5147dae79ebcd3ec323f8acf80bcf5d96f", + "fields": { + "code_commune_insee": "30275", + "nom_de_la_commune": "ST JUST ET VACQUIERES", + "code_postal": "30580", + "coordonnees_gps": [ + 44.1005216678, + 4.23587499395 + ], + "libelle_d_acheminement": "ST JUST ET VACQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23587499395, + 44.1005216678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2988619730c2cc9e657fd7628f59844b345956f0", + "fields": { + "code_commune_insee": "30277", + "nom_de_la_commune": "ST LAURENT DE CARNOLS", + "code_postal": "30200", + "coordonnees_gps": [ + 44.2256485966, + 4.53204790849 + ], + "libelle_d_acheminement": "ST LAURENT DE CARNOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53204790849, + 44.2256485966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67e110fbfc723b0c74161a456375babf3629a89f", + "fields": { + "code_commune_insee": "30280", + "nom_de_la_commune": "ST LAURENT LE MINIER", + "code_postal": "30440", + "coordonnees_gps": [ + 43.9251433166, + 3.65288683571 + ], + "libelle_d_acheminement": "ST LAURENT LE MINIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65288683571, + 43.9251433166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f768cbb6d333009382b6bfaa263b7ef5e917115", + "fields": { + "code_commune_insee": "30299", + "nom_de_la_commune": "ST SIFFRET", + "code_postal": "30700", + "coordonnees_gps": [ + 44.0153596124, + 4.46857345963 + ], + "libelle_d_acheminement": "ST SIFFRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46857345963, + 44.0153596124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "996985a1edd376c2dcf7e03b0b351f51bad933f1", + "fields": { + "code_commune_insee": "30302", + "nom_de_la_commune": "ST VICTOR LA COSTE", + "code_postal": "30290", + "coordonnees_gps": [ + 44.0551218504, + 4.64162593876 + ], + "libelle_d_acheminement": "ST VICTOR LA COSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64162593876, + 44.0551218504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6382e2dd361b7c0ad084886418866a6c7f8b31a1", + "fields": { + "code_commune_insee": "30303", + "nom_de_la_commune": "ST VICTOR DE MALCAP", + "code_postal": "30500", + "coordonnees_gps": [ + 44.2544238833, + 4.23077320622 + ], + "libelle_d_acheminement": "ST VICTOR DE MALCAP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23077320622, + 44.2544238833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "252ac67e047112c390a52451b3bbd711ef0c1804", + "fields": { + "code_commune_insee": "30304", + "nom_de_la_commune": "SALAZAC", + "code_postal": "30760", + "coordonnees_gps": [ + 44.2565156091, + 4.53650899935 + ], + "libelle_d_acheminement": "SALAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53650899935, + 44.2565156091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "724bebcd02fe60500f55fc16933cee0c12574e8b", + "fields": { + "code_commune_insee": "30308", + "nom_de_la_commune": "SANILHAC SAGRIES", + "code_postal": "30700", + "coordonnees_gps": [ + 43.9548767362, + 4.4196061912 + ], + "libelle_d_acheminement": "SANILHAC SAGRIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4196061912, + 43.9548767362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d630e75663b939616d88cac64a9f000bf107855", + "fields": { + "code_commune_insee": "30312", + "nom_de_la_commune": "SAUVETERRE", + "code_postal": "30150", + "coordonnees_gps": [ + 44.0168058845, + 4.80890320388 + ], + "libelle_d_acheminement": "SAUVETERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80890320388, + 44.0168058845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a77061759f8ee8f8e97a155f3d665010b62ce67d", + "fields": { + "code_commune_insee": "30315", + "nom_de_la_commune": "SAZE", + "code_postal": "30650", + "coordonnees_gps": [ + 43.9447000008, + 4.69826538851 + ], + "libelle_d_acheminement": "SAZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69826538851, + 43.9447000008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "831909c22bededf63b2c88680866b691dd4e81e9", + "fields": { + "code_commune_insee": "30317", + "nom_de_la_commune": "SERNHAC", + "code_postal": "30210", + "coordonnees_gps": [ + 43.9119026242, + 4.56096710639 + ], + "libelle_d_acheminement": "SERNHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56096710639, + 43.9119026242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5fd2a777fa705f8a4ec054155f8e1c7883c254f", + "fields": { + "code_commune_insee": "30322", + "nom_de_la_commune": "SOUDORGUES", + "code_postal": "30460", + "coordonnees_gps": [ + 44.0661076711, + 3.80654189355 + ], + "libelle_d_acheminement": "SOUDORGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80654189355, + 44.0661076711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b271374b73ab34242165bde65bb7aadbcfca3f0b", + "fields": { + "code_commune_insee": "30332", + "nom_de_la_commune": "TREVES", + "code_postal": "30750", + "coordonnees_gps": [ + 44.0700313449, + 3.39129875689 + ], + "libelle_d_acheminement": "TREVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39129875689, + 44.0700313449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "478787704e88909bf281e16eb1d7ca224bb06c4f", + "fields": { + "code_commune_insee": "30337", + "nom_de_la_commune": "VALLABRIX", + "code_postal": "30700", + "coordonnees_gps": [ + 44.0656231815, + 4.48392568742 + ], + "libelle_d_acheminement": "VALLABRIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48392568742, + 44.0656231815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1002a30f8715c55b4e0610f5ac18a7d6a08a7fb0", + "fields": { + "ligne_5": "VALLERAUGUE", + "code_commune_insee": "30339", + "libelle_d_acheminement": "VAL D AIGOUAL", + "code_postal": "30570", + "nom_de_la_commune": "VAL D AIGOUAL", + "coordonnees_gps": [ + 44.0875534961, + 3.61946476562 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61946476562, + 44.0875534961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03845d96886139e053e50a3a94581f8173acbb7a", + "fields": { + "code_commune_insee": "30340", + "nom_de_la_commune": "VALLIGUIERES", + "code_postal": "30210", + "coordonnees_gps": [ + 44.0080792047, + 4.58999068542 + ], + "libelle_d_acheminement": "VALLIGUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58999068542, + 44.0080792047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95ad77a72db5f8fe5799f83651b7a9f6079ac111", + "fields": { + "ligne_5": "SYLVEREAL", + "code_commune_insee": "30341", + "libelle_d_acheminement": "VAUVERT", + "code_postal": "30600", + "nom_de_la_commune": "VAUVERT", + "coordonnees_gps": [ + 43.6258468531, + 4.30597093294 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30597093294, + 43.6258468531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc39db5b159c024bc0f0033e46c01f83aeef9b74", + "fields": { + "code_commune_insee": "30342", + "nom_de_la_commune": "VENEJAN", + "code_postal": "30200", + "coordonnees_gps": [ + 44.198514501, + 4.66816449365 + ], + "libelle_d_acheminement": "VENEJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66816449365, + 44.198514501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5f5f02a996f1a45963c25076c60f96f27484278", + "fields": { + "code_commune_insee": "30346", + "nom_de_la_commune": "VERS PONT DU GARD", + "code_postal": "30210", + "coordonnees_gps": [ + 43.9668458822, + 4.51945060223 + ], + "libelle_d_acheminement": "VERS PONT DU GARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51945060223, + 43.9668458822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbe0cad830c287bdc1975818f75c4c5f7bd08b8e", + "fields": { + "code_commune_insee": "30348", + "nom_de_la_commune": "VEZENOBRES", + "code_postal": "30360", + "coordonnees_gps": [ + 44.0510480255, + 4.13455182602 + ], + "libelle_d_acheminement": "VEZENOBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13455182602, + 44.0510480255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ccfe64e01c6701b74d445cddb95a3e87a458590", + "fields": { + "code_commune_insee": "30356", + "nom_de_la_commune": "RODILHAN", + "code_postal": "30230", + "coordonnees_gps": [ + 43.825503937, + 4.43410669109 + ], + "libelle_d_acheminement": "RODILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43410669109, + 43.825503937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e515c3e5206e7b0b1aee5dac00f86b898728b88", + "fields": { + "code_commune_insee": "31004", + "nom_de_la_commune": "AYGUESVIVES", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4290243945, + 1.59439448927 + ], + "libelle_d_acheminement": "AYGUESVIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59439448927, + 43.4290243945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d3c8d617651e7ea5e223f4f0e5c9162a21d2838", + "fields": { + "code_commune_insee": "31008", + "nom_de_la_commune": "ANAN", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3522518749, + 0.810075633308 + ], + "libelle_d_acheminement": "ANAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.810075633308, + 43.3522518749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a2fa5f2bb6ba21dfcecff7f1020d6b20e23747e", + "fields": { + "code_commune_insee": "31009", + "nom_de_la_commune": "ANTICHAN DE FRONTIGNES", + "code_postal": "31510", + "coordonnees_gps": [ + 42.9696953465, + 0.676907980365 + ], + "libelle_d_acheminement": "ANTICHAN DE FRONTIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.676907980365, + 42.9696953465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daf303e45df1dd217fdcf487a004db40f366cbe8", + "fields": { + "code_commune_insee": "31013", + "nom_de_la_commune": "ARDIEGE", + "code_postal": "31210", + "coordonnees_gps": [ + 43.0667699712, + 0.64401533309 + ], + "libelle_d_acheminement": "ARDIEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64401533309, + 43.0667699712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19862354e2a42fc729ca65dada9309801ca038aa", + "fields": { + "code_commune_insee": "31014", + "nom_de_la_commune": "ARGUENOS", + "code_postal": "31160", + "coordonnees_gps": [ + 42.9592233941, + 0.72693971703 + ], + "libelle_d_acheminement": "ARGUENOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72693971703, + 42.9592233941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14fde6cbc3fead5a4d872215361d1b994a2790cd", + "fields": { + "code_commune_insee": "31019", + "nom_de_la_commune": "ARTIGUE", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8264001411, + 0.63971982942 + ], + "libelle_d_acheminement": "ARTIGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63971982942, + 42.8264001411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e51e3623039a5f5856404506044208ce915907c", + "fields": { + "code_commune_insee": "31021", + "nom_de_la_commune": "ASPRET SARRAT", + "code_postal": "31800", + "coordonnees_gps": [ + 43.0698319191, + 0.720036788419 + ], + "libelle_d_acheminement": "ASPRET SARRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.720036788419, + 43.0698319191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f58debf65e8021e1c7d56ae916f80da2777551ce", + "fields": { + "code_commune_insee": "31023", + "nom_de_la_commune": "AULON", + "code_postal": "31420", + "coordonnees_gps": [ + 43.190035341, + 0.813417936999 + ], + "libelle_d_acheminement": "AULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.813417936999, + 43.190035341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc6ff0dd68f34ace056de725104bfbe125463aa3", + "fields": { + "code_commune_insee": "31026", + "nom_de_la_commune": "AURIAC SUR VENDINELLE", + "code_postal": "31460", + "coordonnees_gps": [ + 43.519408834, + 1.82440314638 + ], + "libelle_d_acheminement": "AURIAC SUR VENDINELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82440314638, + 43.519408834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2796da14c13505e8f6f422afb19747befdb0f94d", + "fields": { + "code_commune_insee": "31053", + "nom_de_la_commune": "BEAUPUY", + "code_postal": "31850", + "coordonnees_gps": [ + 43.6525825042, + 1.55869879525 + ], + "libelle_d_acheminement": "BEAUPUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55869879525, + 43.6525825042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e6c37109e336a71c7f8c39fdc0f5b7edc14e261", + "fields": { + "code_commune_insee": "31055", + "nom_de_la_commune": "BEAUVILLE", + "code_postal": "31460", + "coordonnees_gps": [ + 43.4675844934, + 1.7707274596 + ], + "libelle_d_acheminement": "BEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7707274596, + 43.4675844934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ec060777d3883d830f31d130680618f0bafe46a", + "fields": { + "code_commune_insee": "31057", + "nom_de_la_commune": "BELBERAUD", + "code_postal": "31450", + "coordonnees_gps": [ + 43.5037794316, + 1.56972339327 + ], + "libelle_d_acheminement": "BELBERAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56972339327, + 43.5037794316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cfd4e9efee4e0c5cd0073ca4f70e98d68650bba", + "fields": { + "code_commune_insee": "31059", + "nom_de_la_commune": "BELBEZE EN COMMINGES", + "code_postal": "31260", + "coordonnees_gps": [ + 43.133868235, + 1.02965888187 + ], + "libelle_d_acheminement": "BELBEZE EN COMMINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02965888187, + 43.133868235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c061b8787e887cebe71671b0d17c03a59d31d333", + "fields": { + "code_commune_insee": "31071", + "nom_de_la_commune": "BOIS DE LA PIERRE", + "code_postal": "31390", + "coordonnees_gps": [ + 43.3411967523, + 1.1619650342 + ], + "libelle_d_acheminement": "BOIS DE LA PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1619650342, + 43.3411967523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afe6a6bc85981b537b123694851ce182a4392f79", + "fields": { + "code_commune_insee": "31078", + "nom_de_la_commune": "BOUDRAC", + "code_postal": "31580", + "coordonnees_gps": [ + 43.1873792108, + 0.517345335704 + ], + "libelle_d_acheminement": "BOUDRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.517345335704, + 43.1873792108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a7132d0e44b4f34d5ae8502f25ca25e83b5769e", + "fields": { + "code_commune_insee": "31081", + "nom_de_la_commune": "BOURG D OUEIL", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8605605642, + 0.486883887759 + ], + "libelle_d_acheminement": "BOURG D OUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.486883887759, + 42.8605605642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "312f5d823c445db650e20043da3af1eb40e7797f", + "fields": { + "code_commune_insee": "31084", + "nom_de_la_commune": "BOUSSENS", + "code_postal": "31360", + "coordonnees_gps": [ + 43.1763531912, + 0.960371645513 + ], + "libelle_d_acheminement": "BOUSSENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.960371645513, + 43.1763531912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e89918e63268ef1cff4830a6bd172390f88d0b0", + "fields": { + "code_commune_insee": "31085", + "nom_de_la_commune": "BOUTX", + "code_postal": "31440", + "coordonnees_gps": [ + 42.9153786194, + 0.770355750474 + ], + "libelle_d_acheminement": "BOUTX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.770355750474, + 42.9153786194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2d8896a67d87be2ace5f77a4870ab4189d91137", + "fields": { + "code_commune_insee": "31088", + "nom_de_la_commune": "BRAX", + "code_postal": "31490", + "coordonnees_gps": [ + 43.6156942044, + 1.23194886903 + ], + "libelle_d_acheminement": "BRAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23194886903, + 43.6156942044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb34ec158e88c96b9c00e7c8250b681fdc212740", + "fields": { + "code_commune_insee": "31109", + "nom_de_la_commune": "CASSAGNABERE TOURNAS", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2311062604, + 0.799151440801 + ], + "libelle_d_acheminement": "CASSAGNABERE TOURNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.799151440801, + 43.2311062604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53dbdea5443c314c743824a467b8e5042b349022", + "fields": { + "code_commune_insee": "31113", + "nom_de_la_commune": "CASTANET TOLOSAN", + "code_postal": "31320", + "coordonnees_gps": [ + 43.5136166687, + 1.50383757047 + ], + "libelle_d_acheminement": "CASTANET TOLOSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50383757047, + 43.5136166687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "874717663af267ac0abb0e1c110bbeef7eef499e", + "fields": { + "code_commune_insee": "31114", + "nom_de_la_commune": "CASTELBIAGUE", + "code_postal": "31160", + "coordonnees_gps": [ + 43.0356678546, + 0.927325532514 + ], + "libelle_d_acheminement": "CASTELBIAGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.927325532514, + 43.0356678546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "525d7aead948e54abb8ead934614ae0b3488cada", + "fields": { + "code_commune_insee": "31117", + "nom_de_la_commune": "CASTELMAUROU", + "code_postal": "31180", + "coordonnees_gps": [ + 43.6845152261, + 1.53745049477 + ], + "libelle_d_acheminement": "CASTELMAUROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53745049477, + 43.6845152261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "462a341b2384d98904e662b41270eea61715d139", + "fields": { + "code_commune_insee": "31123", + "nom_de_la_commune": "CASTILLON DE LARBOUST", + "code_postal": "31110", + "coordonnees_gps": [ + 42.7401974688, + 0.557666969635 + ], + "libelle_d_acheminement": "CASTILLON DE LARBOUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.557666969635, + 42.7401974688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24c741a73dc9f083d8096575c24f221aae5df462", + "fields": { + "code_commune_insee": "31131", + "nom_de_la_commune": "CAZAUNOUS", + "code_postal": "31160", + "coordonnees_gps": [ + 42.9882048056, + 0.724729046231 + ], + "libelle_d_acheminement": "CAZAUNOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.724729046231, + 42.9882048056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6997bfdbca7cb9dfac598294f44e608e8590bc58", + "fields": { + "code_commune_insee": "31135", + "nom_de_la_commune": "CAZERES", + "code_postal": "31220", + "coordonnees_gps": [ + 43.2203354224, + 1.09307402728 + ], + "libelle_d_acheminement": "CAZERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09307402728, + 43.2203354224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3be12d4f59691406c48a9078856294d57908855b", + "fields": { + "code_commune_insee": "31143", + "nom_de_la_commune": "CIER DE RIVIERE", + "code_postal": "31510", + "coordonnees_gps": [ + 43.0582093702, + 0.626576681878 + ], + "libelle_d_acheminement": "CIER DE RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.626576681878, + 43.0582093702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44ec6339b2cb964c5dd3525e709431ae7ea90424", + "fields": { + "ligne_5": "GAUD", + "code_commune_insee": "31144", + "libelle_d_acheminement": "CIERP GAUD", + "code_postal": "31440", + "nom_de_la_commune": "CIERP GAUD", + "coordonnees_gps": [ + 42.9126857929, + 0.634654016295 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.634654016295, + 42.9126857929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe82f05e3ec22cff35189a4f36cda69ba13556c8", + "fields": { + "code_commune_insee": "31150", + "nom_de_la_commune": "CORNEBARRIEU", + "code_postal": "31700", + "coordonnees_gps": [ + 43.6486265729, + 1.32242964582 + ], + "libelle_d_acheminement": "CORNEBARRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32242964582, + 43.6486265729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28d588a4e12ee1081f3a25ecb75f35c654b13f78", + "fields": { + "code_commune_insee": "31151", + "nom_de_la_commune": "CORRONSAC", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4715894844, + 1.48988057955 + ], + "libelle_d_acheminement": "CORRONSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48988057955, + 43.4715894844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0d1fec5b25e8ac745424a13fc3e178f1fdbce6a", + "fields": { + "code_commune_insee": "31156", + "nom_de_la_commune": "COX", + "code_postal": "31480", + "coordonnees_gps": [ + 43.7604806634, + 1.04203619262 + ], + "libelle_d_acheminement": "COX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04203619262, + 43.7604806634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "128c885e94f9d55efd4ceb9bffe3fdc71a30d17c", + "fields": { + "code_commune_insee": "31174", + "nom_de_la_commune": "ESTADENS", + "code_postal": "31160", + "coordonnees_gps": [ + 43.0338015189, + 0.844111123426 + ], + "libelle_d_acheminement": "ESTADENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.844111123426, + 43.0338015189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6e8b62e8263ff3069cf53b5b12598cb6f9d5818", + "fields": { + "code_commune_insee": "31183", + "nom_de_la_commune": "FIGAROL", + "code_postal": "31260", + "coordonnees_gps": [ + 43.086105599, + 0.905126707725 + ], + "libelle_d_acheminement": "FIGAROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.905126707725, + 43.086105599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdf1999a457dbbb7a1b837048589afacd9dde126", + "fields": { + "code_commune_insee": "31185", + "nom_de_la_commune": "FOLCARDE", + "code_postal": "31290", + "coordonnees_gps": [ + 43.4059778673, + 1.79495498171 + ], + "libelle_d_acheminement": "FOLCARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79495498171, + 43.4059778673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9b6112138ec0f77cb8642cc21109271c52f6b49", + "fields": { + "code_commune_insee": "31187", + "nom_de_la_commune": "FONSORBES", + "code_postal": "31470", + "coordonnees_gps": [ + 43.5317695743, + 1.23863670585 + ], + "libelle_d_acheminement": "FONSORBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23863670585, + 43.5317695743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc23f480149cac1d6f18d6f5083e87edf1630f4a", + "fields": { + "code_commune_insee": "31206", + "nom_de_la_commune": "GAILLAC TOULZA", + "code_postal": "31550", + "coordonnees_gps": [ + 43.2567352836, + 1.45627950177 + ], + "libelle_d_acheminement": "GAILLAC TOULZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45627950177, + 43.2567352836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93a1f1e7187a53bb19164e1ba2443ec18501432e", + "fields": { + "code_commune_insee": "31208", + "nom_de_la_commune": "GANTIES", + "code_postal": "31160", + "coordonnees_gps": [ + 43.0640234495, + 0.836948319209 + ], + "libelle_d_acheminement": "GANTIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.836948319209, + 43.0640234495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c1ae11cf55d59d242e352b878470d95cc405afa", + "fields": { + "code_commune_insee": "31220", + "nom_de_la_commune": "GIBEL", + "code_postal": "31560", + "coordonnees_gps": [ + 43.3026504146, + 1.67636064192 + ], + "libelle_d_acheminement": "GIBEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67636064192, + 43.3026504146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8750f83883ce84383b109104fa48335a63fd595b", + "fields": { + "code_commune_insee": "31243", + "nom_de_la_commune": "JUZES", + "code_postal": "31540", + "coordonnees_gps": [ + 43.4471276111, + 1.79347652101 + ], + "libelle_d_acheminement": "JUZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79347652101, + 43.4471276111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9367affd8f2d9a036ae2f2da819958d18feeac5", + "fields": { + "code_commune_insee": "31245", + "nom_de_la_commune": "JUZET D IZAUT", + "code_postal": "31160", + "coordonnees_gps": [ + 42.9699962027, + 0.757388801207 + ], + "libelle_d_acheminement": "JUZET D IZAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.757388801207, + 42.9699962027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b333319b4d1a64159bdec54b791559d28b8190d", + "fields": { + "code_commune_insee": "31252", + "nom_de_la_commune": "LABASTIDE ST SERNIN", + "code_postal": "31620", + "coordonnees_gps": [ + 43.7357715003, + 1.4659716657 + ], + "libelle_d_acheminement": "LABASTIDE ST SERNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4659716657, + 43.7357715003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "708c373dfc38a118f9cc7274594e3c6504ff293f", + "fields": { + "code_commune_insee": "31254", + "nom_de_la_commune": "LABEGE", + "code_postal": "31670", + "coordonnees_gps": [ + 43.539137717, + 1.5206207109 + ], + "libelle_d_acheminement": "LABEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5206207109, + 43.539137717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c37b2aa1b5bded94a2358e13e8d06b8301a0356", + "fields": { + "code_commune_insee": "31268", + "nom_de_la_commune": "LALOURET LAFFITEAU", + "code_postal": "31800", + "coordonnees_gps": [ + 43.1867504971, + 0.700251649847 + ], + "libelle_d_acheminement": "LALOURET LAFFITEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.700251649847, + 43.1867504971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf17e08b65ddfb46d1644077b6bc9b19ecfe9906", + "fields": { + "code_commune_insee": "31282", + "nom_de_la_commune": "LAUNAGUET", + "code_postal": "31140", + "coordonnees_gps": [ + 43.6700766081, + 1.45516003737 + ], + "libelle_d_acheminement": "LAUNAGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45516003737, + 43.6700766081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e375a1a9135f30a15ba6d06de4b1b569a5e7c74", + "fields": { + "code_commune_insee": "31297", + "nom_de_la_commune": "LEVIGNAC", + "code_postal": "31530", + "coordonnees_gps": [ + 43.6593918197, + 1.20389227339 + ], + "libelle_d_acheminement": "LEVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20389227339, + 43.6593918197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f58648f23193514beba2fa40533fe4ff9e1a7df6", + "fields": { + "code_commune_insee": "31302", + "nom_de_la_commune": "LODES", + "code_postal": "31800", + "coordonnees_gps": [ + 43.1663358604, + 0.657578380319 + ], + "libelle_d_acheminement": "LODES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.657578380319, + 43.1663358604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf022a23e945f0af633f3172c3a8c551c21a769f", + "fields": { + "code_commune_insee": "31315", + "nom_de_la_commune": "MANE", + "code_postal": "31260", + "coordonnees_gps": [ + 43.080178576, + 0.9447955326 + ], + "libelle_d_acheminement": "MANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9447955326, + 43.080178576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e591dc3b22bc0b66c418509650e01381aa906b76", + "fields": { + "code_commune_insee": "31325", + "nom_de_la_commune": "MASCARVILLE", + "code_postal": "31460", + "coordonnees_gps": [ + 43.5587512833, + 1.75383087377 + ], + "libelle_d_acheminement": "MASCARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75383087377, + 43.5587512833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "320b8f5f533d4c81f08a4e024224a1aa94097139", + "fields": { + "code_commune_insee": "31334", + "nom_de_la_commune": "MAUZAC", + "code_postal": "31410", + "coordonnees_gps": [ + 43.3756100753, + 1.30283298461 + ], + "libelle_d_acheminement": "MAUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30283298461, + 43.3756100753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6ff3ec92e7b7f6fc2abe69ff2f3b2529ec81ccf", + "fields": { + "code_commune_insee": "31336", + "nom_de_la_commune": "MAZERES SUR SALAT", + "code_postal": "31260", + "coordonnees_gps": [ + 43.1324112099, + 0.963599428998 + ], + "libelle_d_acheminement": "MAZERES SUR SALAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.963599428998, + 43.1324112099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20f80dcb3b7ef29458366eb2a90a50e97d979dd9", + "fields": { + "code_commune_insee": "31343", + "nom_de_la_commune": "MIRAMBEAU", + "code_postal": "31230", + "coordonnees_gps": [ + 43.4059897744, + 0.863062543914 + ], + "libelle_d_acheminement": "MIRAMBEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.863062543914, + 43.4059897744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbe1a82e1d56287570d7db40a71012f5a547610c", + "fields": { + "code_commune_insee": "31348", + "nom_de_la_commune": "MONCAUP", + "code_postal": "31160", + "coordonnees_gps": [ + 42.9729218811, + 0.701637765798 + ], + "libelle_d_acheminement": "MONCAUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.701637765798, + 42.9729218811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e4eda3907ec39425df37a3b0ae7a972e3006636", + "fields": { + "code_commune_insee": "31356", + "nom_de_la_commune": "MONTAIGUT SUR SAVE", + "code_postal": "31530", + "coordonnees_gps": [ + 43.6803943619, + 1.2345663902 + ], + "libelle_d_acheminement": "MONTAIGUT SUR SAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2345663902, + 43.6803943619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be7befd04e31db3f385d003fedfb0cf44e684e64", + "fields": { + "code_commune_insee": "31359", + "nom_de_la_commune": "MONTASTRUC SAVES", + "code_postal": "31370", + "coordonnees_gps": [ + 43.3616344154, + 1.01900079597 + ], + "libelle_d_acheminement": "MONTASTRUC SAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01900079597, + 43.3616344154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e25696a43eddbaf53a8fbb8cbaa6bb8a00a9710", + "fields": { + "code_commune_insee": "31362", + "nom_de_la_commune": "MONTBERAUD", + "code_postal": "31220", + "coordonnees_gps": [ + 43.1595238311, + 1.15513584785 + ], + "libelle_d_acheminement": "MONTBERAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15513584785, + 43.1595238311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21c05795210939a33ea5295ec5c1ffb1f6a9d834", + "fields": { + "code_commune_insee": "31368", + "nom_de_la_commune": "MONTCLAR LAURAGAIS", + "code_postal": "31290", + "coordonnees_gps": [ + 43.362728431, + 1.71364639022 + ], + "libelle_d_acheminement": "MONTCLAR LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71364639022, + 43.362728431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "763b203ff30901583776f860a6607d9cb15bbb3a", + "fields": { + "code_commune_insee": "31371", + "nom_de_la_commune": "MONTEGUT LAURAGAIS", + "code_postal": "31540", + "coordonnees_gps": [ + 43.4775080465, + 1.93140539637 + ], + "libelle_d_acheminement": "MONTEGUT LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93140539637, + 43.4775080465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9478ee4174d497de068247e0637580ca2999b7ed", + "fields": { + "code_commune_insee": "31374", + "nom_de_la_commune": "MONTESQUIEU LAURAGAIS", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4073286541, + 1.62763249857 + ], + "libelle_d_acheminement": "MONTESQUIEU LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62763249857, + 43.4073286541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f56077e3cbd08cb9fbde2c5945a08a481052e82d", + "fields": { + "code_commune_insee": "31375", + "nom_de_la_commune": "MONTESQUIEU VOLVESTRE", + "code_postal": "31310", + "coordonnees_gps": [ + 43.192539602, + 1.21785196007 + ], + "libelle_d_acheminement": "MONTESQUIEU VOLVESTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21785196007, + 43.192539602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a01c83e8e0b52cdd9d232b26266056b02bdeb963", + "fields": { + "code_commune_insee": "31378", + "nom_de_la_commune": "MONTGAILLARD SUR SAVE", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2545847834, + 0.717487034111 + ], + "libelle_d_acheminement": "MONTGAILLARD SUR SAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.717487034111, + 43.2545847834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f827fa3111236725933b1af89b6fcb277d80bf7", + "fields": { + "code_commune_insee": "31380", + "nom_de_la_commune": "MONTGEARD", + "code_postal": "31560", + "coordonnees_gps": [ + 43.3434044557, + 1.64154767835 + ], + "libelle_d_acheminement": "MONTGEARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64154767835, + 43.3434044557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3d8f5b4310803758aa338d8583c3225b509f9b5", + "fields": { + "code_commune_insee": "31396", + "nom_de_la_commune": "NAILLOUX", + "code_postal": "31560", + "coordonnees_gps": [ + 43.3652413733, + 1.61316756794 + ], + "libelle_d_acheminement": "NAILLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61316756794, + 43.3652413733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2efb23ef7c5f6386e5f42824a09cec8dda6507b7", + "fields": { + "code_commune_insee": "31398", + "nom_de_la_commune": "NIZAN GESSE", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2304323776, + 0.596409287994 + ], + "libelle_d_acheminement": "NIZAN GESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.596409287994, + 43.2304323776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f52f6b445a9f2ce3b757de74cefd0ace793e8e2c", + "fields": { + "code_commune_insee": "31412", + "nom_de_la_commune": "PEGUILHAN", + "code_postal": "31350", + "coordonnees_gps": [ + 43.3182848209, + 0.703637578751 + ], + "libelle_d_acheminement": "PEGUILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.703637578751, + 43.3182848209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f93633f8b076b85c64b0b8af321e7c615a9a46d8", + "fields": { + "code_commune_insee": "31416", + "nom_de_la_commune": "PEYSSIES", + "code_postal": "31390", + "coordonnees_gps": [ + 43.3257060217, + 1.18484909158 + ], + "libelle_d_acheminement": "PEYSSIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18484909158, + 43.3257060217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05361a384e4e7d2587d552e3408de8e24c30e64a", + "fields": { + "code_commune_insee": "31423", + "nom_de_la_commune": "PLAGNOLE", + "code_postal": "31370", + "coordonnees_gps": [ + 43.4114527316, + 1.06388606316 + ], + "libelle_d_acheminement": "PLAGNOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06388606316, + 43.4114527316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fdbf5af49317a5523145e65e96d07e06e8a1d8f", + "fields": { + "code_commune_insee": "31424", + "nom_de_la_commune": "PLAISANCE DU TOUCH", + "code_postal": "31830", + "coordonnees_gps": [ + 43.557591642, + 1.28585811821 + ], + "libelle_d_acheminement": "PLAISANCE DU TOUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28585811821, + 43.557591642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cf031b9b246510857b3adc138cd58e156d10586", + "fields": { + "code_commune_insee": "31427", + "nom_de_la_commune": "POINTIS INARD", + "code_postal": "31800", + "coordonnees_gps": [ + 43.0835798216, + 0.79692777032 + ], + "libelle_d_acheminement": "POINTIS INARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79692777032, + 43.0835798216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d19b878f75b864727f64b2ea561f156f01b51829", + "fields": { + "code_commune_insee": "31430", + "nom_de_la_commune": "PONLAT TAILLEBOURG", + "code_postal": "31210", + "coordonnees_gps": [ + 43.1122469519, + 0.596250257433 + ], + "libelle_d_acheminement": "PONLAT TAILLEBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.596250257433, + 43.1122469519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa9f427b7f46b764d070015c1b2e30c9c22aa063", + "fields": { + "code_commune_insee": "31432", + "nom_de_la_commune": "PORTET DE LUCHON", + "code_postal": "31110", + "coordonnees_gps": [ + 42.811445173, + 0.47107519018 + ], + "libelle_d_acheminement": "PORTET DE LUCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47107519018, + 42.811445173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2320301273c7fd49e9f3430b2f6bcce35905fa4", + "fields": { + "code_commune_insee": "31433", + "nom_de_la_commune": "PORTET SUR GARONNE", + "code_postal": "31120", + "coordonnees_gps": [ + 43.529395272, + 1.40251955724 + ], + "libelle_d_acheminement": "PORTET SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40251955724, + 43.529395272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d041334653e44b159f215919e72a1ab58efe095", + "fields": { + "code_commune_insee": "31448", + "nom_de_la_commune": "REBIGUE", + "code_postal": "31320", + "coordonnees_gps": [ + 43.4900829382, + 1.47765829898 + ], + "libelle_d_acheminement": "REBIGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47765829898, + 43.4900829382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de542c4bc88e341c1f03e75c2096339976a1a454", + "fields": { + "code_commune_insee": "31449", + "nom_de_la_commune": "REGADES", + "code_postal": "31800", + "coordonnees_gps": [ + 43.0533534739, + 0.717699496738 + ], + "libelle_d_acheminement": "REGADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.717699496738, + 43.0533534739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1568cc56a12620de8669ed309808066f3884f03e", + "fields": { + "code_commune_insee": "31452", + "nom_de_la_commune": "RIEUCAZE", + "code_postal": "31800", + "coordonnees_gps": [ + 43.0758069309, + 0.75229643929 + ], + "libelle_d_acheminement": "RIEUCAZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75229643929, + 43.0758069309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46558a089657fbd70102532dc9a3d7c9f5e9a495", + "fields": { + "code_commune_insee": "31460", + "nom_de_la_commune": "ROQUETTES", + "code_postal": "31120", + "coordonnees_gps": [ + 43.4947364798, + 1.37416616378 + ], + "libelle_d_acheminement": "ROQUETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37416616378, + 43.4947364798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dfdf17ecab2e06d5cd5923a4145bcb5fbb30a6a", + "fields": { + "code_commune_insee": "31463", + "nom_de_la_commune": "ROUMENS", + "code_postal": "31540", + "coordonnees_gps": [ + 43.4646275014, + 1.93578142821 + ], + "libelle_d_acheminement": "ROUMENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93578142821, + 43.4646275014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff90da251201ffd61c4fe1a99696e880c1480d93", + "fields": { + "code_commune_insee": "31466", + "nom_de_la_commune": "SAIGUEDE", + "code_postal": "31470", + "coordonnees_gps": [ + 43.5233769475, + 1.14231751485 + ], + "libelle_d_acheminement": "SAIGUEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14231751485, + 43.5233769475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce438e1028af1e6588c2384deffb2c6ee46db8ea", + "fields": { + "code_commune_insee": "31468", + "nom_de_la_commune": "ST ANDRE", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2742895266, + 0.847168180191 + ], + "libelle_d_acheminement": "ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.847168180191, + 43.2742895266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f559426fde4f60b74d1c0986e7f3131649588ea6", + "fields": { + "code_commune_insee": "31470", + "nom_de_la_commune": "ST AVENTIN", + "code_postal": "31110", + "coordonnees_gps": [ + 42.7594170368, + 0.576677377934 + ], + "libelle_d_acheminement": "ST AVENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.576677377934, + 42.7594170368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "420c59650c7dd94ff392a9d0e6b091a8e14599c9", + "fields": { + "code_commune_insee": "31478", + "nom_de_la_commune": "ST FELIX LAURAGAIS", + "code_postal": "31540", + "coordonnees_gps": [ + 43.4505941916, + 1.90172958444 + ], + "libelle_d_acheminement": "ST FELIX LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90172958444, + 43.4505941916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d06c2d0a8aa1b6b2310473004fcc61d27bcd89c0", + "fields": { + "code_commune_insee": "31489", + "nom_de_la_commune": "ST JEAN LHERM", + "code_postal": "31380", + "coordonnees_gps": [ + 43.6977269896, + 1.61794512613 + ], + "libelle_d_acheminement": "ST JEAN LHERM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61794512613, + 43.6977269896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "535dbae495a31b791bbe2753a426283390eafbda", + "fields": { + "code_commune_insee": "31491", + "nom_de_la_commune": "ST JULIA", + "code_postal": "31540", + "coordonnees_gps": [ + 43.4940652738, + 1.89419935625 + ], + "libelle_d_acheminement": "ST JULIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89419935625, + 43.4940652738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9177e21e7cb2e6bb61ca6404a6b3692266abd576", + "fields": { + "code_commune_insee": "31493", + "nom_de_la_commune": "ST LARY BOUJEAN", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2218813039, + 0.740007283521 + ], + "libelle_d_acheminement": "ST LARY BOUJEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.740007283521, + 43.2218813039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76e2c3bd624ca7c2008c22c4ea15be695cceade3", + "fields": { + "code_commune_insee": "31495", + "nom_de_la_commune": "ST LEON", + "code_postal": "31560", + "coordonnees_gps": [ + 43.3970008535, + 1.56284460409 + ], + "libelle_d_acheminement": "ST LEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56284460409, + 43.3970008535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99a79c8849d9a11974dd492d219192db4fe24bb0", + "fields": { + "code_commune_insee": "31499", + "nom_de_la_commune": "ST LYS", + "code_postal": "31470", + "coordonnees_gps": [ + 43.5100073275, + 1.19955711914 + ], + "libelle_d_acheminement": "ST LYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19955711914, + 43.5100073275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "671573b223f8672948d3b42efc624b89ee4c5dc6", + "fields": { + "code_commune_insee": "31501", + "nom_de_la_commune": "ST MARCEL PAULEL", + "code_postal": "31590", + "coordonnees_gps": [ + 43.6566271869, + 1.61471686848 + ], + "libelle_d_acheminement": "ST MARCEL PAULEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61471686848, + 43.6566271869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "841cfe8aa48a045f2a98f06b3cb0b424ff7d7302", + "fields": { + "code_commune_insee": "31508", + "nom_de_la_commune": "ST PAUL D OUEIL", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8382523889, + 0.555644090408 + ], + "libelle_d_acheminement": "ST PAUL D OUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.555644090408, + 42.8382523889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "183ae5348d859a2ee0b5770c07b3a938fd6b61f4", + "fields": { + "code_commune_insee": "31511", + "nom_de_la_commune": "ST PIERRE", + "code_postal": "31590", + "coordonnees_gps": [ + 43.6368366534, + 1.64168080442 + ], + "libelle_d_acheminement": "ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64168080442, + 43.6368366534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68e5d96129f7b65542544506331e23840b287b05", + "fields": { + "code_commune_insee": "31514", + "nom_de_la_commune": "ST ROME", + "code_postal": "31290", + "coordonnees_gps": [ + 43.4150165631, + 1.67437209269 + ], + "libelle_d_acheminement": "ST ROME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67437209269, + 43.4150165631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a4f6f03a5a04ae88243a1c13c28cd60d17eace7", + "fields": { + "code_commune_insee": "31518", + "nom_de_la_commune": "ST THOMAS", + "code_postal": "31470", + "coordonnees_gps": [ + 43.5147776927, + 1.08883796695 + ], + "libelle_d_acheminement": "ST THOMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08883796695, + 43.5147776927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c8b08eb81c1a6775ecbf62a109c35f46f37de11", + "fields": { + "code_commune_insee": "31523", + "nom_de_la_commune": "SALIES DU SALAT", + "code_postal": "31260", + "coordonnees_gps": [ + 43.1013456235, + 0.962933495319 + ], + "libelle_d_acheminement": "SALIES DU SALAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.962933495319, + 43.1013456235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fe6a23f8994dc9621db20a2a5b91ea1e78e0ff0", + "fields": { + "code_commune_insee": "31525", + "nom_de_la_commune": "SALLES SUR GARONNE", + "code_postal": "31390", + "coordonnees_gps": [ + 43.2764220901, + 1.17237669844 + ], + "libelle_d_acheminement": "SALLES SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17237669844, + 43.2764220901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb25f888a6bcef08e3ad5076f6204531252ce39f", + "fields": { + "code_commune_insee": "31555", + "nom_de_la_commune": "TOULOUSE", + "code_postal": "31300", + "coordonnees_gps": [ + 43.5963814303, + 1.43167293364 + ], + "libelle_d_acheminement": "TOULOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43167293364, + 43.5963814303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57b8ebda6a5b1e3ba9ca62bff405b5aa09bd842b", + "fields": { + "code_commune_insee": "31564", + "nom_de_la_commune": "VALCABRERE", + "code_postal": "31510", + "coordonnees_gps": [ + 43.0300305757, + 0.586106281253 + ], + "libelle_d_acheminement": "VALCABRERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.586106281253, + 43.0300305757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b6e302655cae542163d3bb400f192ce2079d0dc", + "fields": { + "code_commune_insee": "31567", + "nom_de_la_commune": "VALLESVILLES", + "code_postal": "31570", + "coordonnees_gps": [ + 43.5947686475, + 1.64987135863 + ], + "libelle_d_acheminement": "VALLESVILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64987135863, + 43.5947686475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "229ddcbba262d20833858f949dfc0a1bafb47ddd", + "fields": { + "code_commune_insee": "31568", + "nom_de_la_commune": "VARENNES", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4764363476, + 1.69248446049 + ], + "libelle_d_acheminement": "VARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69248446049, + 43.4764363476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b38938a68d1a2013d459db46ecf8e59ccaca08a7", + "fields": { + "code_commune_insee": "31571", + "nom_de_la_commune": "VENDINE", + "code_postal": "31460", + "coordonnees_gps": [ + 43.5907350293, + 1.7654488225 + ], + "libelle_d_acheminement": "VENDINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7654488225, + 43.5907350293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be50463c97aa4378a6b94fca0cf2a04fabe86b7f", + "fields": { + "code_commune_insee": "31576", + "nom_de_la_commune": "VIEILLEVIGNE", + "code_postal": "31290", + "coordonnees_gps": [ + 43.407251234, + 1.6591257471 + ], + "libelle_d_acheminement": "VIEILLEVIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6591257471, + 43.407251234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a893ec0eb892d141de18ea9a40cda4bdf0a86045", + "fields": { + "code_commune_insee": "31580", + "nom_de_la_commune": "VILLATE", + "code_postal": "31860", + "coordonnees_gps": [ + 43.46763006, + 1.38192246692 + ], + "libelle_d_acheminement": "VILLATE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38192246692, + 43.46763006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e396e183dc1a1314d658064ae8bbc463e1aa8ac", + "fields": { + "code_commune_insee": "31581", + "nom_de_la_commune": "VILLAUDRIC", + "code_postal": "31620", + "coordonnees_gps": [ + 43.831729686, + 1.43579382014 + ], + "libelle_d_acheminement": "VILLAUDRIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43579382014, + 43.831729686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d7a032dbb74a0905925fe308253121800fd2625", + "fields": { + "code_commune_insee": "31585", + "nom_de_la_commune": "VILLENEUVE DE RIVIERE", + "code_postal": "31800", + "coordonnees_gps": [ + 43.1223437031, + 0.670046646703 + ], + "libelle_d_acheminement": "VILLENEUVE DE RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.670046646703, + 43.1223437031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7056a74efec2806ae714ea355ba8be570e2ce8a6", + "fields": { + "code_commune_insee": "31587", + "nom_de_la_commune": "VILLENEUVE LES BOULOC", + "code_postal": "31620", + "coordonnees_gps": [ + 43.7737816543, + 1.4238362081 + ], + "libelle_d_acheminement": "VILLENEUVE LES BOULOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4238362081, + 43.7737816543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b9982e54f6fad271b165d35de025bac89c048b1", + "fields": { + "code_commune_insee": "32004", + "nom_de_la_commune": "ARBLADE LE BAS", + "code_postal": "32720", + "coordonnees_gps": [ + 43.705221087, + -0.17265437468 + ], + "libelle_d_acheminement": "ARBLADE LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17265437468, + 43.705221087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c17a804ee7cc3da670461a04bd5865c8757f5da", + "fields": { + "code_commune_insee": "32007", + "nom_de_la_commune": "ARDIZAS", + "code_postal": "32430", + "coordonnees_gps": [ + 43.7236838876, + 0.998970035909 + ], + "libelle_d_acheminement": "ARDIZAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.998970035909, + 43.7236838876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbaf3f790aafc5839dd1b15d8428032ea154d943", + "fields": { + "code_commune_insee": "32008", + "nom_de_la_commune": "ARMENTIEUX", + "code_postal": "32230", + "coordonnees_gps": [ + 43.5222602975, + 0.0972571471232 + ], + "libelle_d_acheminement": "ARMENTIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0972571471232, + 43.5222602975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cf34c96cf7ecee7d734cc078d252c3dd9d54785", + "fields": { + "code_commune_insee": "32015", + "nom_de_la_commune": "AUJAN MOURNEDE", + "code_postal": "32300", + "coordonnees_gps": [ + 43.3758521622, + 0.501831576491 + ], + "libelle_d_acheminement": "AUJAN MOURNEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.501831576491, + 43.3758521622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aab87ba80a763458dfdb7d179943e75acaac024", + "fields": { + "code_commune_insee": "32026", + "nom_de_la_commune": "BAJONNETTE", + "code_postal": "32120", + "coordonnees_gps": [ + 43.8100195778, + 0.766169172651 + ], + "libelle_d_acheminement": "BAJONNETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.766169172651, + 43.8100195778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3874268c5b7adf5086195a5edaf6ffdd7e47380e", + "fields": { + "code_commune_insee": "32037", + "nom_de_la_commune": "BEAUMONT", + "code_postal": "32100", + "coordonnees_gps": [ + 43.9377749989, + 0.290830760764 + ], + "libelle_d_acheminement": "BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.290830760764, + 43.9377749989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7da6089f614dc819abf7538dcf764180d60ce4fa", + "fields": { + "code_commune_insee": "32040", + "nom_de_la_commune": "BEDECHAN", + "code_postal": "32450", + "coordonnees_gps": [ + 43.5735987591, + 0.792312827863 + ], + "libelle_d_acheminement": "BEDECHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.792312827863, + 43.5735987591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5eeb22fe36a8092d690dfb08a1ec3d05eb08e73", + "fields": { + "code_commune_insee": "32041", + "nom_de_la_commune": "BELLEGARDE", + "code_postal": "32140", + "coordonnees_gps": [ + 43.4269943275, + 0.632110124614 + ], + "libelle_d_acheminement": "BELLEGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.632110124614, + 43.4269943275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85edd1c4ee6e4ec56b29cf1e937bdae423d784e7", + "fields": { + "code_commune_insee": "32044", + "nom_de_la_commune": "BERAUT", + "code_postal": "32100", + "coordonnees_gps": [ + 43.924159928, + 0.407251427599 + ], + "libelle_d_acheminement": "BERAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.407251427599, + 43.924159928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "488284d5e53609340000df82284d9d56d867cf00", + "fields": { + "code_commune_insee": "32045", + "nom_de_la_commune": "BERDOUES", + "code_postal": "32300", + "coordonnees_gps": [ + 43.4719860449, + 0.399739334252 + ], + "libelle_d_acheminement": "BERDOUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.399739334252, + 43.4719860449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c9e567519ad08cafa37c882839c901adb698883", + "fields": { + "code_commune_insee": "32051", + "nom_de_la_commune": "BEZERIL", + "code_postal": "32130", + "coordonnees_gps": [ + 43.5354869926, + 0.880550052099 + ], + "libelle_d_acheminement": "BEZERIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.880550052099, + 43.5354869926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48dffe57a28d64521e7a9e320a93d34acf923684", + "fields": { + "code_commune_insee": "32054", + "nom_de_la_commune": "BIRAN", + "code_postal": "32350", + "coordonnees_gps": [ + 43.6946727542, + 0.404239086653 + ], + "libelle_d_acheminement": "BIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.404239086653, + 43.6946727542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a20c20548021cec759182b716a3ac545840df66d", + "fields": { + "code_commune_insee": "32055", + "nom_de_la_commune": "BIVES", + "code_postal": "32380", + "coordonnees_gps": [ + 43.8298621138, + 0.805981896154 + ], + "libelle_d_acheminement": "BIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.805981896154, + 43.8298621138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d9c297bebcb15976d4512181a34f0f010417320", + "fields": { + "code_commune_insee": "32059", + "nom_de_la_commune": "BONAS", + "code_postal": "32410", + "coordonnees_gps": [ + 43.7790627499, + 0.405172476722 + ], + "libelle_d_acheminement": "BONAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.405172476722, + 43.7790627499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3c5bda1b049cedacedf14cfca7e252c3c4cbc46", + "fields": { + "code_commune_insee": "32061", + "nom_de_la_commune": "BOULAUR", + "code_postal": "32450", + "coordonnees_gps": [ + 43.550997171, + 0.765003194409 + ], + "libelle_d_acheminement": "BOULAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.765003194409, + 43.550997171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54eff3e8a3d8f5fe6c9ae7e64108ce054745033c", + "fields": { + "code_commune_insee": "32073", + "nom_de_la_commune": "CAMPAGNE D ARMAGNAC", + "code_postal": "32800", + "coordonnees_gps": [ + 43.8609046088, + 0.00746700396669 + ], + "libelle_d_acheminement": "CAMPAGNE D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00746700396669, + 43.8609046088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c65e74a4ef1535f5df16085c55b123e492da5dd1", + "fields": { + "ligne_5": "LABARRERE", + "code_commune_insee": "32079", + "libelle_d_acheminement": "CASTELNAU D AUZAN LABARRERE", + "code_postal": "32250", + "nom_de_la_commune": "CASTELNAU D AUZAN LABARRERE", + "coordonnees_gps": [ + 43.9434923568, + 0.10186302495 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10186302495, + 43.9434923568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "892e819e61a3653de011c567dbefb4c6343ea806", + "fields": { + "code_commune_insee": "32080", + "nom_de_la_commune": "CASTELNAU SUR L AUVIGNON", + "code_postal": "32100", + "coordonnees_gps": [ + 43.9635207971, + 0.471654890782 + ], + "libelle_d_acheminement": "CASTELNAU SUR L AUVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.471654890782, + 43.9635207971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d79dde0b18f0b1e8b89a6222526ce8de808bf445", + "fields": { + "code_commune_insee": "32084", + "nom_de_la_commune": "CASTERON", + "code_postal": "32380", + "coordonnees_gps": [ + 43.9028241046, + 0.868621810839 + ], + "libelle_d_acheminement": "CASTERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.868621810839, + 43.9028241046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "452effe04171e701fc11f70833a9ff597ab00c0e", + "fields": { + "code_commune_insee": "32086", + "nom_de_la_commune": "CASTEX", + "code_postal": "32170", + "coordonnees_gps": [ + 43.3818340108, + 0.312547597054 + ], + "libelle_d_acheminement": "CASTEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.312547597054, + 43.3818340108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cbc0220ee8b2ec7ba9842345e1d5bda410dc973", + "fields": { + "code_commune_insee": "32090", + "nom_de_la_commune": "CASTILLON SAVES", + "code_postal": "32490", + "coordonnees_gps": [ + 43.5641317623, + 0.983556394242 + ], + "libelle_d_acheminement": "CASTILLON SAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.983556394242, + 43.5641317623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9751fa03f3adcc92d266a105b47ed33443e450c", + "fields": { + "code_commune_insee": "32092", + "nom_de_la_commune": "CATONVIELLE", + "code_postal": "32200", + "coordonnees_gps": [ + 43.6560806019, + 0.962548344082 + ], + "libelle_d_acheminement": "CATONVIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.962548344082, + 43.6560806019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "520fcd77e4bf2cb59aa084328446329cabc34b2b", + "fields": { + "code_commune_insee": "32095", + "nom_de_la_commune": "CAUSSENS", + "code_postal": "32100", + "coordonnees_gps": [ + 43.9471704365, + 0.441602960063 + ], + "libelle_d_acheminement": "CAUSSENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.441602960063, + 43.9471704365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc7b5aa0cf21e2c588f2950c26789b4e5b561023", + "fields": { + "code_commune_insee": "32098", + "nom_de_la_commune": "CAZAUX SAVES", + "code_postal": "32130", + "coordonnees_gps": [ + 43.5452047263, + 0.978268681087 + ], + "libelle_d_acheminement": "CAZAUX SAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.978268681087, + 43.5452047263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11bd94eafe62b1919e6a5e34d99a529de11ffd55", + "fields": { + "code_commune_insee": "32099", + "nom_de_la_commune": "CAZAUX VILLECOMTAL", + "code_postal": "32230", + "coordonnees_gps": [ + 43.4477367972, + 0.174336175469 + ], + "libelle_d_acheminement": "CAZAUX VILLECOMTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.174336175469, + 43.4477367972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc803ceb0c9f63481ef438f7b812306f754b5283", + "fields": { + "code_commune_insee": "32100", + "nom_de_la_commune": "CAZENEUVE", + "code_postal": "32800", + "coordonnees_gps": [ + 43.8897347457, + 0.163914639045 + ], + "libelle_d_acheminement": "CAZENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.163914639045, + 43.8897347457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3291dbcc972806354545243439f40e296a5e15e", + "fields": { + "code_commune_insee": "32103", + "nom_de_la_commune": "CHELAN", + "code_postal": "32140", + "coordonnees_gps": [ + 43.3513221997, + 0.545230571621 + ], + "libelle_d_acheminement": "CHELAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.545230571621, + 43.3513221997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "466e9e60cdde9c495b40cd91c0ca919404e92cf0", + "fields": { + "code_commune_insee": "32114", + "nom_de_la_commune": "CUELAS", + "code_postal": "32300", + "coordonnees_gps": [ + 43.352415623, + 0.451048381547 + ], + "libelle_d_acheminement": "CUELAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.451048381547, + 43.352415623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56c5984139db6961a4e8e0adf292b79370dc5313", + "fields": { + "code_commune_insee": "32115", + "nom_de_la_commune": "DEMU", + "code_postal": "32190", + "coordonnees_gps": [ + 43.7618537122, + 0.166713123878 + ], + "libelle_d_acheminement": "DEMU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.166713123878, + 43.7618537122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b301f5a7f70d2bf5f0b16e9b86a31ec61af9485", + "fields": { + "code_commune_insee": "32119", + "nom_de_la_commune": "EAUZE", + "code_postal": "32800", + "coordonnees_gps": [ + 43.8607370613, + 0.105730356401 + ], + "libelle_d_acheminement": "EAUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.105730356401, + 43.8607370613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fcbcea727dd482800351b8302884c22bd2c23bf", + "fields": { + "code_commune_insee": "32122", + "nom_de_la_commune": "ESCLASSAN LABASTIDE", + "code_postal": "32140", + "coordonnees_gps": [ + 43.4161811903, + 0.552126229054 + ], + "libelle_d_acheminement": "ESCLASSAN LABASTIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.552126229054, + 43.4161811903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0a3872d0b0b40ecbf609551409135af82d3611a", + "fields": { + "code_commune_insee": "32127", + "nom_de_la_commune": "ESTANG", + "code_postal": "32240", + "coordonnees_gps": [ + 43.8724476827, + -0.104454073266 + ], + "libelle_d_acheminement": "ESTANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.104454073266, + 43.8724476827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d35f539beb39d513ae3dd6a9a954d63e2948857", + "fields": { + "code_commune_insee": "32128", + "nom_de_la_commune": "ESTIPOUY", + "code_postal": "32300", + "coordonnees_gps": [ + 43.5489973187, + 0.387102294766 + ], + "libelle_d_acheminement": "ESTIPOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.387102294766, + 43.5489973187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "329821a34753232c8f03467c5bb362ec9e907ea3", + "fields": { + "code_commune_insee": "32129", + "nom_de_la_commune": "ESTRAMIAC", + "code_postal": "32380", + "coordonnees_gps": [ + 43.8350883642, + 0.849647373982 + ], + "libelle_d_acheminement": "ESTRAMIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.849647373982, + 43.8350883642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "226725ce5cda0f921abe91fed238b45f65404e3f", + "fields": { + "code_commune_insee": "32131", + "nom_de_la_commune": "FLAMARENS", + "code_postal": "32340", + "coordonnees_gps": [ + 44.0211871961, + 0.792404807363 + ], + "libelle_d_acheminement": "FLAMARENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.792404807363, + 44.0211871961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72ef603dfd25644ea5e1d71cc4e9ac2a14f772d6", + "fields": { + "code_commune_insee": "32142", + "nom_de_la_commune": "GAVARRET SUR AULOUSTE", + "code_postal": "32390", + "coordonnees_gps": [ + 43.7768059655, + 0.659322996742 + ], + "libelle_d_acheminement": "GAVARRET SUR AULOUSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659322996742, + 43.7768059655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3484183d350de6ae4484a264137b463a0809ba6", + "fields": { + "code_commune_insee": "32151", + "nom_de_la_commune": "GOUX", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6167487404, + -0.022105593973 + ], + "libelle_d_acheminement": "GOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.022105593973, + 43.6167487404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86fcc4b2e99661d67bb514820f6454547f82bd2b", + "fields": { + "code_commune_insee": "32152", + "nom_de_la_commune": "HAGET", + "code_postal": "32730", + "coordonnees_gps": [ + 43.4164577961, + 0.161717343606 + ], + "libelle_d_acheminement": "HAGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.161717343606, + 43.4164577961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b88a319a3b436ac6c82adb79d5679ddb1dd2d41c", + "fields": { + "code_commune_insee": "32155", + "nom_de_la_commune": "LE HOUGA", + "code_postal": "32460", + "coordonnees_gps": [ + 43.7695328695, + -0.185293783845 + ], + "libelle_d_acheminement": "LE HOUGA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.185293783845, + 43.7695328695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb4cb66156642c266d68867c4b36905c7b675a83", + "fields": { + "code_commune_insee": "32156", + "nom_de_la_commune": "IDRAC RESPAILLES", + "code_postal": "32300", + "coordonnees_gps": [ + 43.5147795841, + 0.463769960851 + ], + "libelle_d_acheminement": "IDRAC RESPAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.463769960851, + 43.5147795841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9e9fb0178f0b668d9e09443d8c107cba76fce13", + "fields": { + "code_commune_insee": "32157", + "nom_de_la_commune": "L ISLE ARNE", + "code_postal": "32270", + "coordonnees_gps": [ + 43.615929649, + 0.784325448468 + ], + "libelle_d_acheminement": "L ISLE ARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.784325448468, + 43.615929649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eaf7fd63229c247d109df147b95d61df4ff52ec", + "fields": { + "code_commune_insee": "32159", + "nom_de_la_commune": "L ISLE DE NOE", + "code_postal": "32300", + "coordonnees_gps": [ + 43.584897204, + 0.415082105161 + ], + "libelle_d_acheminement": "L ISLE DE NOE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.415082105161, + 43.584897204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46fbd27c0dc827edeb519037aeea815a50b3c7aa", + "fields": { + "code_commune_insee": "32169", + "nom_de_la_commune": "LABARTHE", + "code_postal": "32260", + "coordonnees_gps": [ + 43.4711783649, + 0.577639627041 + ], + "libelle_d_acheminement": "LABARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.577639627041, + 43.4711783649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f799ae8cfd0441000046d83bf4092e5bd7a7fe7", + "fields": { + "code_commune_insee": "32171", + "nom_de_la_commune": "LABASTIDE SAVES", + "code_postal": "32130", + "coordonnees_gps": [ + 43.5219724449, + 0.977226511284 + ], + "libelle_d_acheminement": "LABASTIDE SAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.977226511284, + 43.5219724449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a490e50c3cccbf135a1cb6c0c7b3bf229606ed3", + "fields": { + "code_commune_insee": "32181", + "nom_de_la_commune": "LAGUIAN MAZOUS", + "code_postal": "32170", + "coordonnees_gps": [ + 43.4163946487, + 0.251429144028 + ], + "libelle_d_acheminement": "LAGUIAN MAZOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.251429144028, + 43.4163946487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66e200829901c47464a46e0230956a07ecbc6d0d", + "fields": { + "code_commune_insee": "32186", + "nom_de_la_commune": "LAMAGUERE", + "code_postal": "32260", + "coordonnees_gps": [ + 43.4865684671, + 0.683135998236 + ], + "libelle_d_acheminement": "LAMAGUERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.683135998236, + 43.4865684671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f429138bfb1c0a0580d11020c605e9f124a47938", + "fields": { + "code_commune_insee": "32189", + "nom_de_la_commune": "LANNEMAIGNAN", + "code_postal": "32240", + "coordonnees_gps": [ + 43.8989950256, + -0.211156147496 + ], + "libelle_d_acheminement": "LANNEMAIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.211156147496, + 43.8989950256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac0293f36345c8407bd0100663fe3a856fecb717", + "fields": { + "code_commune_insee": "32190", + "nom_de_la_commune": "LANNEPAX", + "code_postal": "32190", + "coordonnees_gps": [ + 43.808107132, + 0.224965235255 + ], + "libelle_d_acheminement": "LANNEPAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.224965235255, + 43.808107132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23e88b98c0b05298fb7a09f6bc5893c34138e8ef", + "fields": { + "code_commune_insee": "32206", + "nom_de_la_commune": "LAYMONT", + "code_postal": "32220", + "coordonnees_gps": [ + 43.4213039567, + 0.99482495821 + ], + "libelle_d_acheminement": "LAYMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99482495821, + 43.4213039567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06a283261163abf82f3ace99482bf4118cdd0308", + "fields": { + "code_commune_insee": "32211", + "nom_de_la_commune": "LIAS D ARMAGNAC", + "code_postal": "32240", + "coordonnees_gps": [ + 43.8629702424, + -0.0620305105879 + ], + "libelle_d_acheminement": "LIAS D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0620305105879, + 43.8629702424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a20beeb4e391ade6e1d4a6f50ec2fed9fc9b7ce0", + "fields": { + "code_commune_insee": "32214", + "nom_de_la_commune": "LOUBEDAT", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7443131497, + 0.0317553412763 + ], + "libelle_d_acheminement": "LOUBEDAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0317553412763, + 43.7443131497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7752e6fac983d26e9273525fc89cc36e9af004b3", + "fields": { + "code_commune_insee": "32217", + "nom_de_la_commune": "LOUSLITGES", + "code_postal": "32230", + "coordonnees_gps": [ + 43.5994545053, + 0.156509791866 + ], + "libelle_d_acheminement": "LOUSLITGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.156509791866, + 43.5994545053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7888817355b7eaa690c13c26dfb1b336e78a40a6", + "fields": { + "code_commune_insee": "32218", + "nom_de_la_commune": "LOUSSOUS DEBAT", + "code_postal": "32290", + "coordonnees_gps": [ + 43.6567010743, + 0.0786423810254 + ], + "libelle_d_acheminement": "LOUSSOUS DEBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0786423810254, + 43.6567010743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1398304f7f3a85ae839c60e8a7bff7659daf0ce", + "fields": { + "code_commune_insee": "32227", + "nom_de_la_commune": "MANCIET", + "code_postal": "32370", + "coordonnees_gps": [ + 43.8178857934, + 0.0585536753476 + ], + "libelle_d_acheminement": "MANCIET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0585536753476, + 43.8178857934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2908ce59c532bc9cd2f3b691c981c792a5ed51db", + "fields": { + "code_commune_insee": "32228", + "nom_de_la_commune": "MANENT MONTANE", + "code_postal": "32140", + "coordonnees_gps": [ + 43.3340996973, + 0.604574455016 + ], + "libelle_d_acheminement": "MANENT MONTANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.604574455016, + 43.3340996973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f7e6902ec656683d0e2fa1fc7e7590ea7741e8a", + "fields": { + "code_commune_insee": "32235", + "nom_de_la_commune": "MARGOUET MEYMES", + "code_postal": "32290", + "coordonnees_gps": [ + 43.7253897531, + 0.117825300708 + ], + "libelle_d_acheminement": "MARGOUET MEYMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.117825300708, + 43.7253897531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ad52bbb40c39de019504443cb3bf4faef450595", + "fields": { + "code_commune_insee": "32242", + "nom_de_la_commune": "MASSEUBE", + "code_postal": "32140", + "coordonnees_gps": [ + 43.4317876537, + 0.586727332554 + ], + "libelle_d_acheminement": "MASSEUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.586727332554, + 43.4317876537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ac88b9417f515d7e54b8af6329926f43ebab526", + "fields": { + "code_commune_insee": "32276", + "nom_de_la_commune": "MONTADET", + "code_postal": "32220", + "coordonnees_gps": [ + 43.4355784077, + 0.904322141651 + ], + "libelle_d_acheminement": "MONTADET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.904322141651, + 43.4355784077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c61cde4e8c785497ca9521a8d36b552ffab1cf21", + "fields": { + "code_commune_insee": "32278", + "nom_de_la_commune": "MONTAUT", + "code_postal": "32300", + "coordonnees_gps": [ + 43.3996449694, + 0.421986128901 + ], + "libelle_d_acheminement": "MONTAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.421986128901, + 43.3996449694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "934f50680fe2d1f8f9f2ff2a7d8aa0a2d276e5a3", + "fields": { + "code_commune_insee": "32279", + "nom_de_la_commune": "MONTAUT LES CRENEAUX", + "code_postal": "32810", + "coordonnees_gps": [ + 43.7018933107, + 0.665181948592 + ], + "libelle_d_acheminement": "MONTAUT LES CRENEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.665181948592, + 43.7018933107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5bd0a63aca8ca5dee79ebd8eb3b1a5648741ae1", + "fields": { + "code_commune_insee": "32282", + "nom_de_la_commune": "MONTEGUT", + "code_postal": "32550", + "coordonnees_gps": [ + 43.6420882254, + 0.668712450968 + ], + "libelle_d_acheminement": "MONTEGUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.668712450968, + 43.6420882254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fbde55252edff575bf702c940da0234efb4dde3", + "fields": { + "code_commune_insee": "32291", + "nom_de_la_commune": "MORMES", + "code_postal": "32240", + "coordonnees_gps": [ + 43.7960870358, + -0.151124261308 + ], + "libelle_d_acheminement": "MORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.151124261308, + 43.7960870358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22473f2472975566ae440df0da560c74bd8e7f01", + "fields": { + "code_commune_insee": "32306", + "nom_de_la_commune": "PAUILHAC", + "code_postal": "32500", + "coordonnees_gps": [ + 43.8842839137, + 0.620708224899 + ], + "libelle_d_acheminement": "PAUILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.620708224899, + 43.8842839137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d91c78c28d7b4118eed6905dbef62f2931732bdc", + "fields": { + "code_commune_insee": "32312", + "nom_de_la_commune": "PESSAN", + "code_postal": "32550", + "coordonnees_gps": [ + 43.6087293249, + 0.664949028866 + ], + "libelle_d_acheminement": "PESSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.664949028866, + 43.6087293249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02c6726f294e5ce315436bfb29c2edd9dbd6bb95", + "fields": { + "code_commune_insee": "32314", + "nom_de_la_commune": "PEYRECAVE", + "code_postal": "32340", + "coordonnees_gps": [ + 43.9964330761, + 0.80968636062 + ], + "libelle_d_acheminement": "PEYRECAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80968636062, + 43.9964330761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb933086f1ff795b09277b204e70da138c97168d", + "fields": { + "code_commune_insee": "32317", + "nom_de_la_commune": "PEYRUSSE VIEILLE", + "code_postal": "32230", + "coordonnees_gps": [ + 43.6275468011, + 0.1757963589 + ], + "libelle_d_acheminement": "PEYRUSSE VIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1757963589, + 43.6275468011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f5a3d2a7154274ceafa7cdeade664adee67aa27", + "fields": { + "code_commune_insee": "32320", + "nom_de_la_commune": "PLIEUX", + "code_postal": "32340", + "coordonnees_gps": [ + 43.9527887439, + 0.742854267705 + ], + "libelle_d_acheminement": "PLIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.742854267705, + 43.9527887439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f86b5ba014352fb1075389aaf3d798a8fb84a45", + "fields": { + "code_commune_insee": "32321", + "nom_de_la_commune": "POLASTRON", + "code_postal": "32130", + "coordonnees_gps": [ + 43.5342676704, + 0.838990733571 + ], + "libelle_d_acheminement": "POLASTRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.838990733571, + 43.5342676704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1eaac378d29ab50f5ac761c4cc7f1d09fb45255", + "fields": { + "code_commune_insee": "32330", + "nom_de_la_commune": "PRECHAC SUR ADOUR", + "code_postal": "32160", + "coordonnees_gps": [ + 43.6019637021, + 0.000682000711766 + ], + "libelle_d_acheminement": "PRECHAC SUR ADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.000682000711766, + 43.6019637021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79030e686e164faaa37dbc052c45f7a2ea9a7d36", + "fields": { + "code_commune_insee": "32338", + "nom_de_la_commune": "RAMOUZENS", + "code_postal": "32800", + "coordonnees_gps": [ + 43.8102320971, + 0.189111394698 + ], + "libelle_d_acheminement": "RAMOUZENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.189111394698, + 43.8102320971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77b0d65ec39c744425f113a4993f1e6c07b2735a", + "fields": { + "code_commune_insee": "32340", + "nom_de_la_commune": "REANS", + "code_postal": "32800", + "coordonnees_gps": [ + 43.8713310328, + 0.0375331415529 + ], + "libelle_d_acheminement": "REANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0375331415529, + 43.8713310328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4a0e005257dbe8c4ffe64937b7c98ef764c86a2", + "fields": { + "code_commune_insee": "32341", + "nom_de_la_commune": "REJAUMONT", + "code_postal": "32390", + "coordonnees_gps": [ + 43.8138233726, + 0.5503994481 + ], + "libelle_d_acheminement": "REJAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.5503994481, + 43.8138233726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb1f046f0324ca346727d131d762660a349267d4", + "fields": { + "code_commune_insee": "32347", + "nom_de_la_commune": "ROQUEFORT", + "code_postal": "32390", + "coordonnees_gps": [ + 43.756872831, + 0.587561985041 + ], + "libelle_d_acheminement": "ROQUEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.587561985041, + 43.756872831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67eddc267b89d5dec62847626f84e0441d75aa09", + "fields": { + "code_commune_insee": "32351", + "nom_de_la_commune": "ROQUES", + "code_postal": "32310", + "coordonnees_gps": [ + 43.8412918051, + 0.297884331207 + ], + "libelle_d_acheminement": "ROQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.297884331207, + 43.8412918051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea8b3dec9e1c1f844e034fc61e74d97e9b43f0bd", + "fields": { + "code_commune_insee": "32356", + "nom_de_la_commune": "ST ANDRE", + "code_postal": "32200", + "coordonnees_gps": [ + 43.5589723069, + 0.858056071738 + ], + "libelle_d_acheminement": "ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.858056071738, + 43.5589723069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d6e908cb262add90a6fb3fa74a62a8f9df39729", + "fields": { + "code_commune_insee": "32358", + "nom_de_la_commune": "ST ANTOINE", + "code_postal": "32340", + "coordonnees_gps": [ + 44.0397973758, + 0.828235639409 + ], + "libelle_d_acheminement": "ST ANTOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.828235639409, + 44.0397973758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c70393c6c82a18c7c370784773546cd44bf3279e", + "fields": { + "code_commune_insee": "32362", + "nom_de_la_commune": "ST AUNIX LENGROS", + "code_postal": "32160", + "coordonnees_gps": [ + 43.5729419126, + 0.0566677604878 + ], + "libelle_d_acheminement": "ST AUNIX LENGROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0566677604878, + 43.5729419126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1b7b082fc28d7664fe0e56fce90adeb64670265", + "fields": { + "code_commune_insee": "32363", + "nom_de_la_commune": "STE AURENCE CAZAUX", + "code_postal": "32300", + "coordonnees_gps": [ + 43.371037849, + 0.428715124753 + ], + "libelle_d_acheminement": "STE AURENCE CAZAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.428715124753, + 43.371037849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa99d9d7790f0e9576a5cbcf5be671217149cba9", + "fields": { + "code_commune_insee": "32367", + "nom_de_la_commune": "ST CHRISTAUD", + "code_postal": "32320", + "coordonnees_gps": [ + 43.5257567477, + 0.261157404352 + ], + "libelle_d_acheminement": "ST CHRISTAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.261157404352, + 43.5257567477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7ce2646477a7dda9186d7ad36c48a513b53311f", + "fields": { + "code_commune_insee": "32371", + "nom_de_la_commune": "ST CREAC", + "code_postal": "32380", + "coordonnees_gps": [ + 43.9169566519, + 0.793230130965 + ], + "libelle_d_acheminement": "ST CREAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.793230130965, + 43.9169566519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef1c7118b6ba596038888d3297b822a754644748", + "fields": { + "code_commune_insee": "32373", + "nom_de_la_commune": "STE DODE", + "code_postal": "32170", + "coordonnees_gps": [ + 43.4164604134, + 0.364817830284 + ], + "libelle_d_acheminement": "STE DODE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.364817830284, + 43.4164604134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4846b3a0f788e8b98e5afce017c4c4f393a26e44", + "fields": { + "code_commune_insee": "32380", + "nom_de_la_commune": "ST GRIEDE", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7245038099, + -0.0964853387859 + ], + "libelle_d_acheminement": "ST GRIEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0964853387859, + 43.7245038099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "062796855cec8d6163d0e7fcb1017122076b3e48", + "fields": { + "code_commune_insee": "32382", + "nom_de_la_commune": "ST JEAN POUTGE", + "code_postal": "32190", + "coordonnees_gps": [ + 43.7345063644, + 0.381202830374 + ], + "libelle_d_acheminement": "ST JEAN POUTGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.381202830374, + 43.7345063644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92dffc63e6df9ea500bb7087ecf55d7a1da32fb3", + "fields": { + "code_commune_insee": "32384", + "nom_de_la_commune": "ST LARY", + "code_postal": "32360", + "coordonnees_gps": [ + 43.7203557859, + 0.4976745477 + ], + "libelle_d_acheminement": "ST LARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.4976745477, + 43.7203557859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78574c7d571a9cf2bccc53c3dda98b1fab274fea", + "fields": { + "code_commune_insee": "32428", + "nom_de_la_commune": "SEMEZIES CACHAN", + "code_postal": "32450", + "coordonnees_gps": [ + 43.5039796114, + 0.734910896244 + ], + "libelle_d_acheminement": "SEMEZIES CACHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.734910896244, + 43.5039796114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2445ab3e2e1c12d8d39214fd829fdbf4d99dc648", + "fields": { + "code_commune_insee": "32432", + "nom_de_la_commune": "SEYSSES SAVES", + "code_postal": "32130", + "coordonnees_gps": [ + 43.5120468834, + 1.04628669301 + ], + "libelle_d_acheminement": "SEYSSES SAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04628669301, + 43.5120468834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd561ed29e3f705d2d93d0a76ace2702cb02e2a8", + "fields": { + "code_commune_insee": "32434", + "nom_de_la_commune": "SION", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7385172252, + 0.00694029639365 + ], + "libelle_d_acheminement": "SION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00694029639365, + 43.7385172252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b41f99eb1b25f812fb9fa7e85360dc29e0738db", + "fields": { + "code_commune_insee": "32435", + "nom_de_la_commune": "SIRAC", + "code_postal": "32430", + "coordonnees_gps": [ + 43.703053309, + 0.954070394877 + ], + "libelle_d_acheminement": "SIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.954070394877, + 43.703053309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66ef374906f85138d57ab8475a94be43ece8848c", + "fields": { + "code_commune_insee": "32456", + "nom_de_la_commune": "TUDELLE", + "code_postal": "32190", + "coordonnees_gps": [ + 43.6815695476, + 0.287237004395 + ], + "libelle_d_acheminement": "TUDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.287237004395, + 43.6815695476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12b4db8a58d92a24b1b706e75e39796d8bc24dc0", + "fields": { + "code_commune_insee": "32461", + "nom_de_la_commune": "VERLUS", + "code_postal": "32400", + "coordonnees_gps": [ + 43.5997886169, + -0.1995913501 + ], + "libelle_d_acheminement": "VERLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1995913501, + 43.5997886169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8691b57545f7cfcaaa12c81eb4808e6d4dbaa6d", + "fields": { + "code_commune_insee": "33002", + "nom_de_la_commune": "AILLAS", + "code_postal": "33124", + "coordonnees_gps": [ + 44.4835265148, + -0.0662157307002 + ], + "libelle_d_acheminement": "AILLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0662157307002, + 44.4835265148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ed708ccd7e8d772d09a855d69061ed6c017e29f", + "fields": { + "code_commune_insee": "33005", + "nom_de_la_commune": "ANDERNOS LES BAINS", + "code_postal": "33510", + "coordonnees_gps": [ + 44.754520164, + -1.08109347037 + ], + "libelle_d_acheminement": "ANDERNOS LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08109347037, + 44.754520164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9e9166a952fe5bcd4e07ebe6dd4bac7b2139800", + "fields": { + "code_commune_insee": "33010", + "nom_de_la_commune": "ARCINS", + "code_postal": "33460", + "coordonnees_gps": [ + 45.0765827796, + -0.70962789405 + ], + "libelle_d_acheminement": "ARCINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70962789405, + 45.0765827796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2373c464c24da7d8158145a6fa937836204608b3", + "fields": { + "ligne_5": "AUBIE ET ESPESSAS", + "code_commune_insee": "33018", + "libelle_d_acheminement": "VAL DE VIRVEE", + "code_postal": "33240", + "nom_de_la_commune": "VAL DE VIRVEE", + "coordonnees_gps": [ + 45.0218017593, + -0.404998298287 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.404998298287, + 45.0218017593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efec507ce6a1b9b674664ecdf5d36661ef5bb0eb", + "fields": { + "code_commune_insee": "33021", + "nom_de_la_commune": "AUROS", + "code_postal": "33124", + "coordonnees_gps": [ + 44.5076532706, + -0.163740689311 + ], + "libelle_d_acheminement": "AUROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.163740689311, + 44.5076532706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c3358c82f2d4d5fe9b066c7711dd6e0eab75f62", + "fields": { + "code_commune_insee": "33042", + "nom_de_la_commune": "BELIN BELIET", + "code_postal": "33830", + "coordonnees_gps": [ + 44.4861918644, + -0.786911494042 + ], + "libelle_d_acheminement": "BELIN BELIET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.786911494042, + 44.4861918644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "608d39373b2d69f194c07ce150bb49f2ef714b03", + "fields": { + "ligne_5": "BELIET", + "code_commune_insee": "33042", + "libelle_d_acheminement": "BELIN BELIET", + "code_postal": "33830", + "nom_de_la_commune": "BELIN BELIET", + "coordonnees_gps": [ + 44.4861918644, + -0.786911494042 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.786911494042, + 44.4861918644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6379e760177dd32550970334ef809a0d1d06d6d6", + "fields": { + "code_commune_insee": "33052", + "nom_de_la_commune": "LES BILLAUX", + "code_postal": "33500", + "coordonnees_gps": [ + 44.962026014, + -0.242724056573 + ], + "libelle_d_acheminement": "LES BILLAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.242724056573, + 44.962026014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95af4d89329b57e027d6facab188105d67090860", + "fields": { + "code_commune_insee": "33058", + "nom_de_la_commune": "BLAYE", + "code_postal": "33390", + "coordonnees_gps": [ + 45.127899764, + -0.669707092291 + ], + "libelle_d_acheminement": "BLAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.669707092291, + 45.127899764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "064290268891caa83ae38057b345f77307078a6a", + "fields": { + "code_commune_insee": "33059", + "nom_de_la_commune": "BLESIGNAC", + "code_postal": "33670", + "coordonnees_gps": [ + 44.7773252644, + -0.254997261945 + ], + "libelle_d_acheminement": "BLESIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.254997261945, + 44.7773252644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a298087606e4268999b93797a4c271f5e2d05bcf", + "fields": { + "code_commune_insee": "33061", + "nom_de_la_commune": "BONNETAN", + "code_postal": "33370", + "coordonnees_gps": [ + 44.8193051355, + -0.410997563502 + ], + "libelle_d_acheminement": "BONNETAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.410997563502, + 44.8193051355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c646cc169492945dd5458b897f8afd209d52dc3", + "fields": { + "code_commune_insee": "33063", + "nom_de_la_commune": "BORDEAUX", + "code_postal": "33000", + "coordonnees_gps": [ + 44.8572445351, + -0.57369678116 + ], + "libelle_d_acheminement": "BORDEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57369678116, + 44.8572445351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92adfd66bbec68a8086fdc066622838cf11462d8", + "fields": { + "code_commune_insee": "33066", + "nom_de_la_commune": "BOURDELLES", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5585840825, + 0.00571308872513 + ], + "libelle_d_acheminement": "BOURDELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00571308872513, + 44.5585840825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5fff4e0053e7fa81d3e274333ca96b80cf5ff75", + "fields": { + "code_commune_insee": "33079", + "nom_de_la_commune": "CADARSAC", + "code_postal": "33750", + "coordonnees_gps": [ + 44.8620505289, + -0.283663613137 + ], + "libelle_d_acheminement": "CADARSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.283663613137, + 44.8620505289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a7fac76e6c3d4797464ef8b7f185c848fc9486f", + "fields": { + "code_commune_insee": "33082", + "nom_de_la_commune": "CADILLAC EN FRONSADAIS", + "code_postal": "33240", + "coordonnees_gps": [ + 44.9623132376, + -0.373407122831 + ], + "libelle_d_acheminement": "CADILLAC EN FRONSADAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.373407122831, + 44.9623132376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "211a2f4bd7d2de1d78e1ab6ce10c3657091c4383", + "fields": { + "code_commune_insee": "33083", + "nom_de_la_commune": "CAMARSAC", + "code_postal": "33750", + "coordonnees_gps": [ + 44.8255815323, + -0.368684633032 + ], + "libelle_d_acheminement": "CAMARSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.368684633032, + 44.8255815323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d38d9506939027aa3d262b83dd14538fee190abf", + "fields": { + "code_commune_insee": "33085", + "nom_de_la_commune": "CAMBLANES ET MEYNAC", + "code_postal": "33360", + "coordonnees_gps": [ + 44.7664526073, + -0.475866480687 + ], + "libelle_d_acheminement": "CAMBLANES ET MEYNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.475866480687, + 44.7664526073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6803fa091d57646cb5f4a81e4ecb19f753b2e871", + "fields": { + "code_commune_insee": "33095", + "nom_de_la_commune": "CAPTIEUX", + "code_postal": "33840", + "coordonnees_gps": [ + 44.2537330711, + -0.28409017243 + ], + "libelle_d_acheminement": "CAPTIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28409017243, + 44.2537330711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0a96fc92f37009a2f4079f8f148b2a41eadb7e7", + "fields": { + "ligne_5": "CARCANS PLAGE", + "code_commune_insee": "33097", + "libelle_d_acheminement": "CARCANS", + "code_postal": "33121", + "nom_de_la_commune": "CARCANS", + "coordonnees_gps": [ + 45.0847969006, + -1.04933512467 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04933512467, + 45.0847969006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d16152f91bfd4e49cf3ed9de30234b20c4ad68f1", + "fields": { + "code_commune_insee": "33099", + "nom_de_la_commune": "CARIGNAN DE BORDEAUX", + "code_postal": "33360", + "coordonnees_gps": [ + 44.8094507679, + -0.472244925995 + ], + "libelle_d_acheminement": "CARIGNAN DE BORDEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.472244925995, + 44.8094507679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b7106724727133d7e4c35d887217112ff61b455", + "fields": { + "code_commune_insee": "33105", + "nom_de_la_commune": "CASTELVIEL", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6665619029, + -0.152086542362 + ], + "libelle_d_acheminement": "CASTELVIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.152086542362, + 44.6665619029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "458865a737ee2e908450be97b0b306a3516b0073", + "fields": { + "code_commune_insee": "33108", + "nom_de_la_commune": "CASTILLON LA BATAILLE", + "code_postal": "33350", + "coordonnees_gps": [ + 44.8619054717, + -0.0287795124609 + ], + "libelle_d_acheminement": "CASTILLON LA BATAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0287795124609, + 44.8619054717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "606f7d1a0b5ac54b32f4cb4198b94228e8c8a399", + "fields": { + "code_commune_insee": "33112", + "nom_de_la_commune": "CAUMONT", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6957842338, + -0.0109965772154 + ], + "libelle_d_acheminement": "CAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0109965772154, + 44.6957842338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdaa89606082a2d0263c478e03a9ebc59c7c10c2", + "fields": { + "code_commune_insee": "33116", + "nom_de_la_commune": "CAZATS", + "code_postal": "33430", + "coordonnees_gps": [ + 44.473019034, + -0.203200932598 + ], + "libelle_d_acheminement": "CAZATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.203200932598, + 44.473019034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80a36f2c9650047fca22daa65e00375508258deb", + "fields": { + "code_commune_insee": "33123", + "nom_de_la_commune": "CEZAC", + "code_postal": "33620", + "coordonnees_gps": [ + 45.0855145427, + -0.431075960608 + ], + "libelle_d_acheminement": "CEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.431075960608, + 45.0855145427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8280a56d4220971034cac8052df7ccbfa2eff5b", + "fields": { + "code_commune_insee": "33126", + "nom_de_la_commune": "CIVRAC DE BLAYE", + "code_postal": "33920", + "coordonnees_gps": [ + 45.1112083478, + -0.461315031465 + ], + "libelle_d_acheminement": "CIVRAC DE BLAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.461315031465, + 45.1112083478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a557bbde9a12b1f5931836c545e8be52eeeab276", + "fields": { + "code_commune_insee": "33145", + "nom_de_la_commune": "CURSAN", + "code_postal": "33670", + "coordonnees_gps": [ + 44.7957089304, + -0.33460674853 + ], + "libelle_d_acheminement": "CURSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33460674853, + 44.7957089304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "505a3ac29aacbc728a09b754073dd2e009bbf574", + "fields": { + "code_commune_insee": "33148", + "nom_de_la_commune": "DARDENAC", + "code_postal": "33420", + "coordonnees_gps": [ + 44.7835125524, + -0.239650507452 + ], + "libelle_d_acheminement": "DARDENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.239650507452, + 44.7835125524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85228d27fdd1ed119d3f695c34ac34abc3cfcb72", + "fields": { + "code_commune_insee": "33151", + "nom_de_la_commune": "DONNEZAC", + "code_postal": "33860", + "coordonnees_gps": [ + 45.2339831114, + -0.445024799507 + ], + "libelle_d_acheminement": "DONNEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.445024799507, + 45.2339831114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa0f2804d9d1f47272be4f757fb869bbd7d53f60", + "fields": { + "code_commune_insee": "33155", + "nom_de_la_commune": "ESCAUDES", + "code_postal": "33840", + "coordonnees_gps": [ + 44.3127064082, + -0.208247896337 + ], + "libelle_d_acheminement": "ESCAUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.208247896337, + 44.3127064082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a19061c72e1d8dbd64563c823a7fd1968cfa0c94", + "fields": { + "code_commune_insee": "33156", + "nom_de_la_commune": "ESCOUSSANS", + "code_postal": "33760", + "coordonnees_gps": [ + 44.6790444082, + -0.275955218304 + ], + "libelle_d_acheminement": "ESCOUSSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.275955218304, + 44.6790444082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0c843093a369064d8abbf60ef744afb9abfb2f9", + "fields": { + "code_commune_insee": "33165", + "nom_de_la_commune": "FARGUES ST HILAIRE", + "code_postal": "33370", + "coordonnees_gps": [ + 44.819815277, + -0.439992385579 + ], + "libelle_d_acheminement": "FARGUES ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.439992385579, + 44.819815277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd7a3cb5b6863eeea7d5ad546f9f9920b3a0d60c", + "fields": { + "code_commune_insee": "33167", + "nom_de_la_commune": "FLOIRAC", + "code_postal": "33270", + "coordonnees_gps": [ + 44.8338094646, + -0.520646895866 + ], + "libelle_d_acheminement": "FLOIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.520646895866, + 44.8338094646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4c7c5a2ed12e4f084a827bdc6ec2a438d7c465b", + "fields": { + "code_commune_insee": "33180", + "nom_de_la_commune": "GANS", + "code_postal": "33430", + "coordonnees_gps": [ + 44.4543319425, + -0.132059806791 + ], + "libelle_d_acheminement": "GANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.132059806791, + 44.4543319425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "137f7d0868a19a49518d812cc225444e56a712bf", + "fields": { + "code_commune_insee": "33184", + "nom_de_la_commune": "GENERAC", + "code_postal": "33920", + "coordonnees_gps": [ + 45.1736695574, + -0.545835107473 + ], + "libelle_d_acheminement": "GENERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.545835107473, + 45.1736695574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32e445a30bb280ad4be5da209c4a504016e8dfe0", + "fields": { + "code_commune_insee": "33186", + "nom_de_la_commune": "GENSAC", + "code_postal": "33890", + "coordonnees_gps": [ + 44.7947598908, + 0.0843381724535 + ], + "libelle_d_acheminement": "GENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0843381724535, + 44.7947598908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0d3dbac432d5419b65180561e8c4c1e770f9ef4", + "fields": { + "code_commune_insee": "33187", + "nom_de_la_commune": "GIRONDE SUR DROPT", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5911619768, + -0.0876331035649 + ], + "libelle_d_acheminement": "GIRONDE SUR DROPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0876331035649, + 44.5911619768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aae7d1e7a66aa1fc0f2b57163a0130f99a56a89a", + "fields": { + "code_commune_insee": "33197", + "nom_de_la_commune": "GUILLOS", + "code_postal": "33720", + "coordonnees_gps": [ + 44.5519470973, + -0.518935394792 + ], + "libelle_d_acheminement": "GUILLOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.518935394792, + 44.5519470973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "263325a3fa1bdbf7cf7ae1038e0b520424202719", + "fields": { + "code_commune_insee": "33206", + "nom_de_la_commune": "ISLE ST GEORGES", + "code_postal": "33640", + "coordonnees_gps": [ + 44.726604598, + -0.473681984875 + ], + "libelle_d_acheminement": "ISLE ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.473681984875, + 44.726604598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54a8c7bd44e4a1ad809ea1303df55a24c51d3c44", + "fields": { + "code_commune_insee": "33216", + "nom_de_la_commune": "LADOS", + "code_postal": "33124", + "coordonnees_gps": [ + 44.4687250597, + -0.135994584664 + ], + "libelle_d_acheminement": "LADOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.135994584664, + 44.4687250597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2082ecd6c3c4f70a00df3ce3ea321cf74dc34eb6", + "fields": { + "code_commune_insee": "33221", + "nom_de_la_commune": "LAMOTHE LANDERRON", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5644466731, + 0.0611018511899 + ], + "libelle_d_acheminement": "LAMOTHE LANDERRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0611018511899, + 44.5644466731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "468699e0a27289fa114d57484d1441eaff2e3f2c", + "fields": { + "code_commune_insee": "33232", + "nom_de_la_commune": "LARTIGUE", + "code_postal": "33840", + "coordonnees_gps": [ + 44.252892627, + -0.0912924578468 + ], + "libelle_d_acheminement": "LARTIGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0912924578468, + 44.252892627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c98d1bed6f6da6dcc835b037024643345e4c7d2", + "fields": { + "code_commune_insee": "33238", + "nom_de_la_commune": "LEOGNAN", + "code_postal": "33850", + "coordonnees_gps": [ + 44.7191460436, + -0.614707683753 + ], + "libelle_d_acheminement": "LEOGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.614707683753, + 44.7191460436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b34622ab4b58e3e1990c164e6c94cb77f87612d5", + "fields": { + "code_commune_insee": "33239", + "nom_de_la_commune": "LERM ET MUSSET", + "code_postal": "33840", + "coordonnees_gps": [ + 44.340461313, + -0.151525582762 + ], + "libelle_d_acheminement": "LERM ET MUSSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.151525582762, + 44.340461313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40f9024c14133931238a712561f7b4a3d3cbb434", + "fields": { + "code_commune_insee": "33242", + "nom_de_la_commune": "LES LEVES ET THOUMEYRAGUES", + "code_postal": "33220", + "coordonnees_gps": [ + 44.7828737867, + 0.185216218657 + ], + "libelle_d_acheminement": "LES LEVES ET THOUMEYRAGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.185216218657, + 44.7828737867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30d0d1bcf6e2cb94427558897752c4834dff1260", + "fields": { + "code_commune_insee": "33247", + "nom_de_la_commune": "LISTRAC DE DUREZE", + "code_postal": "33790", + "coordonnees_gps": [ + 44.7607755904, + 0.0336581808427 + ], + "libelle_d_acheminement": "LISTRAC DE DUREZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0336581808427, + 44.7607755904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0af85db6de66641942b2d2e443bd732cff18225b", + "fields": { + "code_commune_insee": "33249", + "nom_de_la_commune": "LORMONT", + "code_postal": "33310", + "coordonnees_gps": [ + 44.8765972567, + -0.519774925453 + ], + "libelle_d_acheminement": "LORMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.519774925453, + 44.8765972567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bfb3555a3f9c3f774f327de28fe4f4228628630", + "fields": { + "code_commune_insee": "33252", + "nom_de_la_commune": "LOUPES", + "code_postal": "33370", + "coordonnees_gps": [ + 44.810050839, + -0.390948542123 + ], + "libelle_d_acheminement": "LOUPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.390948542123, + 44.810050839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0a6da5ce783dae63a633a3e89dc556743d7b649", + "fields": { + "code_commune_insee": "33253", + "nom_de_la_commune": "LOUPIAC", + "code_postal": "33410", + "coordonnees_gps": [ + 44.6282363269, + -0.287216072924 + ], + "libelle_d_acheminement": "LOUPIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.287216072924, + 44.6282363269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1d2a375ece624671ccbfda9e8c5fd71cfac76ff", + "fields": { + "code_commune_insee": "33255", + "nom_de_la_commune": "LUCMAU", + "code_postal": "33840", + "coordonnees_gps": [ + 44.2944038567, + -0.34085237286 + ], + "libelle_d_acheminement": "LUCMAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34085237286, + 44.2944038567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20118030e28826eabe43fb3df962d9d52a535f23", + "fields": { + "code_commune_insee": "33256", + "nom_de_la_commune": "LUDON MEDOC", + "code_postal": "33290", + "coordonnees_gps": [ + 44.9803239234, + -0.590569121795 + ], + "libelle_d_acheminement": "LUDON MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.590569121795, + 44.9803239234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f77f33330af63e7007890835933137e861861f92", + "fields": { + "code_commune_insee": "33266", + "nom_de_la_commune": "MARCENAIS", + "code_postal": "33620", + "coordonnees_gps": [ + 45.0595596341, + -0.344873421107 + ], + "libelle_d_acheminement": "MARCENAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.344873421107, + 45.0595596341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31e40cd8c48132bc7ded376555d849353c852a57", + "fields": { + "ligne_5": "CANTENAC", + "code_commune_insee": "33268", + "libelle_d_acheminement": "MARGAUX CANTENAC", + "code_postal": "33460", + "nom_de_la_commune": "MARGAUX CANTENAC", + "coordonnees_gps": [ + 45.0468275892, + -0.671911642441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.671911642441, + 45.0468275892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "224d22e36bcd3961cbc161e189a72ca2cbcb9e4b", + "fields": { + "code_commune_insee": "33279", + "nom_de_la_commune": "MAZERES", + "code_postal": "33210", + "coordonnees_gps": [ + 44.503806188, + -0.250077983098 + ], + "libelle_d_acheminement": "MAZERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.250077983098, + 44.503806188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f1a2087629d0562da708840da2c4f7904aa9355", + "fields": { + "code_commune_insee": "33281", + "nom_de_la_commune": "MERIGNAC", + "code_postal": "33700", + "coordonnees_gps": [ + 44.8322953289, + -0.681733084891 + ], + "libelle_d_acheminement": "MERIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.681733084891, + 44.8322953289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed168b627c80d1ad2fb6056aafd83d1bfd6cf3d4", + "fields": { + "code_commune_insee": "33293", + "nom_de_la_commune": "MONTUSSAN", + "code_postal": "33450", + "coordonnees_gps": [ + 44.8830118626, + -0.429149844535 + ], + "libelle_d_acheminement": "MONTUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.429149844535, + 44.8830118626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e80302115803dbf126a56caa8051b490f5fa0e0", + "fields": { + "code_commune_insee": "33295", + "nom_de_la_commune": "MOUILLAC", + "code_postal": "33240", + "coordonnees_gps": [ + 45.0062622298, + -0.348490908625 + ], + "libelle_d_acheminement": "MOUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.348490908625, + 45.0062622298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a4eda85627613e522adff6fad709cabfd030457", + "fields": { + "code_commune_insee": "33297", + "nom_de_la_commune": "MOULIS EN MEDOC", + "code_postal": "33480", + "coordonnees_gps": [ + 45.0531974317, + -0.784543632595 + ], + "libelle_d_acheminement": "MOULIS EN MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.784543632595, + 45.0531974317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "054cb8c58e5472988ca3ede2a8640f03001a393a", + "fields": { + "code_commune_insee": "33300", + "nom_de_la_commune": "NAUJAC SUR MER", + "code_postal": "33990", + "coordonnees_gps": [ + 45.2610002038, + -1.05592808876 + ], + "libelle_d_acheminement": "NAUJAC SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05592808876, + 45.2610002038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35bf91c26d0960b9ff7fc03e944a10611e00e183", + "fields": { + "code_commune_insee": "33301", + "nom_de_la_commune": "NAUJAN ET POSTIAC", + "code_postal": "33420", + "coordonnees_gps": [ + 44.7877867597, + -0.184238478251 + ], + "libelle_d_acheminement": "NAUJAN ET POSTIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.184238478251, + 44.7877867597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a571bad3d840bda8b9b51b21c01f57f845725715", + "fields": { + "code_commune_insee": "33308", + "nom_de_la_commune": "OMET", + "code_postal": "33410", + "coordonnees_gps": [ + 44.6554817395, + -0.286590923535 + ], + "libelle_d_acheminement": "OMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.286590923535, + 44.6554817395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e4f822257d0dd4a72d50b00f780a0b1015a9648", + "fields": { + "code_commune_insee": "33309", + "nom_de_la_commune": "ORDONNAC", + "code_postal": "33340", + "coordonnees_gps": [ + 45.3073708232, + -0.843285688562 + ], + "libelle_d_acheminement": "ORDONNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.843285688562, + 45.3073708232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "487e6df8f4ea06049004ae8946fa2a3f6cbf0c90", + "fields": { + "code_commune_insee": "33314", + "nom_de_la_commune": "PAUILLAC", + "code_postal": "33250", + "coordonnees_gps": [ + 45.1990068041, + -0.758200153521 + ], + "libelle_d_acheminement": "PAUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.758200153521, + 45.1990068041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fcc5d67ff73193a2f20eef0df3f6422a1b36439", + "fields": { + "code_commune_insee": "33323", + "nom_de_la_commune": "LE PIAN SUR GARONNE", + "code_postal": "33490", + "coordonnees_gps": [ + 44.5821324623, + -0.216934173908 + ], + "libelle_d_acheminement": "LE PIAN SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.216934173908, + 44.5821324623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e0a579c56f6320fce0eed17b64ad466fa8bbbc8", + "fields": { + "code_commune_insee": "33327", + "nom_de_la_commune": "PODENSAC", + "code_postal": "33720", + "coordonnees_gps": [ + 44.6459179766, + -0.358722392268 + ], + "libelle_d_acheminement": "PODENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.358722392268, + 44.6459179766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1614bf6916115b82a041a236c3c9703b76b8d5f1", + "fields": { + "code_commune_insee": "33331", + "nom_de_la_commune": "PONDAURAT", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5317947567, + -0.0798688844488 + ], + "libelle_d_acheminement": "PONDAURAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0798688844488, + 44.5317947567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dedbdf59666bf7a2f4ca75530297b061c955f97e", + "fields": { + "code_commune_insee": "33342", + "nom_de_la_commune": "PUISSEGUIN", + "code_postal": "33570", + "coordonnees_gps": [ + 44.9327886127, + -0.0632513144683 + ], + "libelle_d_acheminement": "PUISSEGUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0632513144683, + 44.9327886127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "609e36a0cd8fdb0d5c2beacd8d3112c57ceeb123", + "fields": { + "code_commune_insee": "33345", + "nom_de_la_commune": "LE PUY", + "code_postal": "33580", + "coordonnees_gps": [ + 44.6595382268, + 0.0603849385467 + ], + "libelle_d_acheminement": "LE PUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0603849385467, + 44.6595382268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f24c54c300e72422d7582393214a067a5c8374f2", + "fields": { + "code_commune_insee": "33350", + "nom_de_la_commune": "RAUZAN", + "code_postal": "33420", + "coordonnees_gps": [ + 44.7824119957, + -0.131058944697 + ], + "libelle_d_acheminement": "RAUZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.131058944697, + 44.7824119957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebb435f693bedb80204bac84a8aa09be316aa8c9", + "fields": { + "code_commune_insee": "33354", + "nom_de_la_commune": "RIOCAUD", + "code_postal": "33220", + "coordonnees_gps": [ + 44.7507112352, + 0.203198024954 + ], + "libelle_d_acheminement": "RIOCAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.203198024954, + 44.7507112352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0398f829504f82c47deff7b622f9d3e5f246207", + "fields": { + "code_commune_insee": "33358", + "nom_de_la_commune": "ROMAGNE", + "code_postal": "33760", + "coordonnees_gps": [ + 44.7639270453, + -0.204211440747 + ], + "libelle_d_acheminement": "ROMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.204211440747, + 44.7639270453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7616975efc9d0522b043fd8606aadbe6b587e8de", + "fields": { + "code_commune_insee": "33363", + "nom_de_la_commune": "SADIRAC", + "code_postal": "33670", + "coordonnees_gps": [ + 44.7827506267, + -0.38947986904 + ], + "libelle_d_acheminement": "SADIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38947986904, + 44.7827506267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b74ce138eb64d535a52fff73c79a4e67aacb22d", + "fields": { + "code_commune_insee": "33369", + "nom_de_la_commune": "ST ANDRE ET APPELLES", + "code_postal": "33220", + "coordonnees_gps": [ + 44.8105147656, + 0.199159623027 + ], + "libelle_d_acheminement": "ST ANDRE ET APPELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.199159623027, + 44.8105147656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca3c5f9eb6ec761683d051bf761f93ba40ef02af", + "fields": { + "code_commune_insee": "33370", + "nom_de_la_commune": "ST ANDRONY", + "code_postal": "33390", + "coordonnees_gps": [ + 45.2014736682, + -0.686129899592 + ], + "libelle_d_acheminement": "ST ANDRONY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.686129899592, + 45.2014736682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8424eb709262b981398e3e36352fdf4613fe282", + "fields": { + "code_commune_insee": "33377", + "nom_de_la_commune": "ST AVIT DE SOULEGE", + "code_postal": "33220", + "coordonnees_gps": [ + 44.8116266609, + 0.120263165999 + ], + "libelle_d_acheminement": "ST AVIT DE SOULEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.120263165999, + 44.8116266609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1c0b2a635cf7ce80324485e7202ff131a0f277e", + "fields": { + "ligne_5": "ST NAZAIRE", + "code_commune_insee": "33378", + "libelle_d_acheminement": "ST AVIT ST NAZAIRE", + "code_postal": "33220", + "nom_de_la_commune": "ST AVIT ST NAZAIRE", + "coordonnees_gps": [ + 44.8478527826, + 0.274744250182 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.274744250182, + 44.8478527826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a7bb220634002695a241124bf9fab05fe99f174", + "fields": { + "code_commune_insee": "33382", + "nom_de_la_commune": "ST CHRISTOLY DE BLAYE", + "code_postal": "33920", + "coordonnees_gps": [ + 45.1439978714, + -0.496519035518 + ], + "libelle_d_acheminement": "ST CHRISTOLY DE BLAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.496519035518, + 45.1439978714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a88a9428a3fa47e7cb9c21f92a90ed20e93a7b1", + "fields": { + "code_commune_insee": "33389", + "nom_de_la_commune": "ST CIERS SUR GIRONDE", + "code_postal": "33820", + "coordonnees_gps": [ + 45.2980782445, + -0.648058188533 + ], + "libelle_d_acheminement": "ST CIERS SUR GIRONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.648058188533, + 45.2980782445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77ab12257652e6ab2d379c36601a16e28e51b24d", + "fields": { + "code_commune_insee": "33390", + "nom_de_la_commune": "STE COLOMBE", + "code_postal": "33350", + "coordonnees_gps": [ + 44.8789588977, + -0.0634971172004 + ], + "libelle_d_acheminement": "STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0634971172004, + 44.8789588977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41df30f0e39f4bd906b063fce8f2dd71239ea682", + "fields": { + "code_commune_insee": "33391", + "nom_de_la_commune": "ST COME", + "code_postal": "33430", + "coordonnees_gps": [ + 44.4249739922, + -0.174304293799 + ], + "libelle_d_acheminement": "ST COME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.174304293799, + 44.4249739922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "800be47b19fc36fda388483d827819e78b2e981d", + "fields": { + "code_commune_insee": "33403", + "nom_de_la_commune": "STE FOY LA LONGUE", + "code_postal": "33490", + "coordonnees_gps": [ + 44.615535673, + -0.142468985592 + ], + "libelle_d_acheminement": "STE FOY LA LONGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.142468985592, + 44.615535673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c207033adf8fb2c373ff9bafaa4d8cc235b1999b", + "fields": { + "code_commune_insee": "33411", + "nom_de_la_commune": "ST GERMAIN DE GRAVE", + "code_postal": "33490", + "coordonnees_gps": [ + 44.6234269456, + -0.217898533174 + ], + "libelle_d_acheminement": "ST GERMAIN DE GRAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.217898533174, + 44.6234269456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81f566830c6f0a6a0d30cfa33228e00beffea7d1", + "fields": { + "code_commune_insee": "33412", + "nom_de_la_commune": "ST GERMAIN D ESTEUIL", + "code_postal": "33340", + "coordonnees_gps": [ + 45.2552033922, + -0.895235523992 + ], + "libelle_d_acheminement": "ST GERMAIN D ESTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.895235523992, + 45.2552033922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53ba8df7e6ca7fe76895cf58fc8b36d61a790b46", + "fields": { + "code_commune_insee": "33413", + "nom_de_la_commune": "ST GERMAIN DU PUCH", + "code_postal": "33750", + "coordonnees_gps": [ + 44.8518771746, + -0.334057269081 + ], + "libelle_d_acheminement": "ST GERMAIN DU PUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.334057269081, + 44.8518771746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b5fc0c1d3e1448d253e8af9d4ca4fa405cf19e1", + "fields": { + "code_commune_insee": "33417", + "nom_de_la_commune": "STE HELENE", + "code_postal": "33480", + "coordonnees_gps": [ + 44.9726615806, + -0.913525242529 + ], + "libelle_d_acheminement": "STE HELENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.913525242529, + 44.9726615806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a32a146aa7f022fc7b5c17c3e1e18000b1710072", + "fields": { + "code_commune_insee": "33419", + "nom_de_la_commune": "ST HILAIRE DU BOIS", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6612294768, + -0.0744756650033 + ], + "libelle_d_acheminement": "ST HILAIRE DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0744756650033, + 44.6612294768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6290935d668227ff063d3e0cca688b09ec332d1", + "fields": { + "code_commune_insee": "33424", + "nom_de_la_commune": "ST LAURENT MEDOC", + "code_postal": "33112", + "coordonnees_gps": [ + 45.1404040788, + -0.862340576235 + ], + "libelle_d_acheminement": "ST LAURENT MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.862340576235, + 45.1404040788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc959a63a6a6ff9f6cec114dfd02987a54adee75", + "fields": { + "code_commune_insee": "33431", + "nom_de_la_commune": "ST LEON", + "code_postal": "33670", + "coordonnees_gps": [ + 44.7665724734, + -0.276430909291 + ], + "libelle_d_acheminement": "ST LEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.276430909291, + 44.7665724734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ae34839e0c7d7bf77eedc721f7a6dc910f23c8e", + "fields": { + "code_commune_insee": "33438", + "nom_de_la_commune": "ST MAIXANT", + "code_postal": "33490", + "coordonnees_gps": [ + 44.5770246409, + -0.246142662745 + ], + "libelle_d_acheminement": "ST MAIXANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.246142662745, + 44.5770246409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00e32c752612c2a8537aa0db20bf5dbb2bfe4751", + "fields": { + "code_commune_insee": "33449", + "nom_de_la_commune": "ST MEDARD EN JALLES", + "code_postal": "33160", + "coordonnees_gps": [ + 44.8832620816, + -0.784239883546 + ], + "libelle_d_acheminement": "ST MEDARD EN JALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.784239883546, + 44.8832620816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cef15bfeae2bf52496861cde091fddde6c65056", + "fields": { + "code_commune_insee": "33451", + "nom_de_la_commune": "ST MICHEL DE FRONSAC", + "code_postal": "33126", + "coordonnees_gps": [ + 44.9260021181, + -0.303356529349 + ], + "libelle_d_acheminement": "ST MICHEL DE FRONSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.303356529349, + 44.9260021181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97f1525337be8190b4f04fc7840086fccf6850a6", + "fields": { + "code_commune_insee": "33456", + "nom_de_la_commune": "ST PALAIS", + "code_postal": "33820", + "coordonnees_gps": [ + 45.3095196447, + -0.598080918654 + ], + "libelle_d_acheminement": "ST PALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.598080918654, + 45.3095196447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1037c69e6e46f7aea125297030dce1e65f87f18d", + "fields": { + "code_commune_insee": "33458", + "nom_de_la_commune": "ST PAUL", + "code_postal": "33390", + "coordonnees_gps": [ + 45.1500987508, + -0.590143244865 + ], + "libelle_d_acheminement": "ST PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.590143244865, + 45.1500987508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63d074e7af75227f89252974316bb72f1bc05a7b", + "fields": { + "code_commune_insee": "33459", + "nom_de_la_commune": "ST PEY D ARMENS", + "code_postal": "33330", + "coordonnees_gps": [ + 44.8548887899, + -0.118107156946 + ], + "libelle_d_acheminement": "ST PEY D ARMENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.118107156946, + 44.8548887899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4d04f5c471637530ba73a78eac0a911042c6d15", + "fields": { + "code_commune_insee": "33463", + "nom_de_la_commune": "ST PIERRE D AURILLAC", + "code_postal": "33490", + "coordonnees_gps": [ + 44.5791928369, + -0.192914222319 + ], + "libelle_d_acheminement": "ST PIERRE D AURILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.192914222319, + 44.5791928369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "751b046e43ee2cb9b65ec6fd4a2d2f638a11b0d6", + "fields": { + "code_commune_insee": "33464", + "nom_de_la_commune": "ST PIERRE DE BAT", + "code_postal": "33760", + "coordonnees_gps": [ + 44.6700408345, + -0.219919179937 + ], + "libelle_d_acheminement": "ST PIERRE DE BAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.219919179937, + 44.6700408345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94dd6f2dd64cb0451ae33ecc79b9b39865f78c06", + "fields": { + "code_commune_insee": "33466", + "nom_de_la_commune": "ST QUENTIN DE BARON", + "code_postal": "33750", + "coordonnees_gps": [ + 44.8184515689, + -0.281173860387 + ], + "libelle_d_acheminement": "ST QUENTIN DE BARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.281173860387, + 44.8184515689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89b8c500661fc466784ffa12a722ba48a0ef2c14", + "fields": { + "code_commune_insee": "33468", + "nom_de_la_commune": "STE RADEGONDE", + "code_postal": "33350", + "coordonnees_gps": [ + 44.8030043488, + 0.0238709656269 + ], + "libelle_d_acheminement": "STE RADEGONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0238709656269, + 44.8030043488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9c14cfa29da0214c3340a3d563f7342f668f980", + "fields": { + "code_commune_insee": "33471", + "nom_de_la_commune": "ST SAUVEUR", + "code_postal": "33250", + "coordonnees_gps": [ + 45.1949204348, + -0.818681392214 + ], + "libelle_d_acheminement": "ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.818681392214, + 45.1949204348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3975e91e4d6eca0b4e191c2b05f872374dc434b3", + "fields": { + "code_commune_insee": "33477", + "nom_de_la_commune": "ST SEURIN DE CURSAC", + "code_postal": "33390", + "coordonnees_gps": [ + 45.1579570055, + -0.627426326593 + ], + "libelle_d_acheminement": "ST SEURIN DE CURSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.627426326593, + 45.1579570055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1bff076e289a115f9f31ff30c0c3f9d1d260d46", + "fields": { + "code_commune_insee": "33482", + "nom_de_la_commune": "ST SULPICE DE POMMIERS", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6759704977, + -0.113677268299 + ], + "libelle_d_acheminement": "ST SULPICE DE POMMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.113677268299, + 44.6759704977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "660415f93f224f894b241e725a84e91485c009f8", + "fields": { + "code_commune_insee": "33486", + "nom_de_la_commune": "ST TROJAN", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0900998302, + -0.580473676207 + ], + "libelle_d_acheminement": "ST TROJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.580473676207, + 45.0900998302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db453768368b20cb76c0fb83dee9240cec63fe47", + "fields": { + "code_commune_insee": "33487", + "nom_de_la_commune": "ST VINCENT DE PAUL", + "code_postal": "33440", + "coordonnees_gps": [ + 44.9735956651, + -0.481421340788 + ], + "libelle_d_acheminement": "ST VINCENT DE PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.481421340788, + 44.9735956651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efcc162e1c724800c5c25f5847a59188e443c450", + "fields": { + "code_commune_insee": "33489", + "nom_de_la_commune": "ST VIVIEN DE BLAYE", + "code_postal": "33920", + "coordonnees_gps": [ + 45.1041763192, + -0.507779257628 + ], + "libelle_d_acheminement": "ST VIVIEN DE BLAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.507779257628, + 45.1041763192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a8a0836230a7618fed7d3b3bc1dc652cd87d79f", + "fields": { + "code_commune_insee": "33493", + "nom_de_la_commune": "ST YZANS DE MEDOC", + "code_postal": "33340", + "coordonnees_gps": [ + 45.3263969958, + -0.813698621313 + ], + "libelle_d_acheminement": "ST YZANS DE MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.813698621313, + 45.3263969958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73e02d80f46245c49411bf7893f852a8caaf3936", + "fields": { + "code_commune_insee": "33505", + "nom_de_la_commune": "LA SAUVE", + "code_postal": "33670", + "coordonnees_gps": [ + 44.7629611039, + -0.311980129147 + ], + "libelle_d_acheminement": "LA SAUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.311980129147, + 44.7629611039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8cd187b8cac1e5f557d12d20b6350d752e3f3f8", + "fields": { + "code_commune_insee": "33511", + "nom_de_la_commune": "SENDETS", + "code_postal": "33690", + "coordonnees_gps": [ + 44.4268508366, + -0.0945303098396 + ], + "libelle_d_acheminement": "SENDETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0945303098396, + 44.4268508366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47ee5e06f6b7d83988747f50cc3cafc184e9cafa", + "fields": { + "code_commune_insee": "33522", + "nom_de_la_commune": "TALENCE", + "code_postal": "33400", + "coordonnees_gps": [ + 44.8060817507, + -0.591124592873 + ], + "libelle_d_acheminement": "TALENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.591124592873, + 44.8060817507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89d331d3d387d00997934884ea44f0715c588687", + "fields": { + "code_commune_insee": "33525", + "nom_de_la_commune": "TAURIAC", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0535176036, + -0.505943273443 + ], + "libelle_d_acheminement": "TAURIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.505943273443, + 45.0535176036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77bdd3ab70416b3c9c5e5fe8194ac357b5eaaf6c", + "fields": { + "code_commune_insee": "33527", + "nom_de_la_commune": "LE TEICH", + "code_postal": "33470", + "coordonnees_gps": [ + 44.5781043558, + -1.02426702104 + ], + "libelle_d_acheminement": "LE TEICH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02426702104, + 44.5781043558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "243806aba319b0ad03b669eb842064b2f87d4293", + "fields": { + "code_commune_insee": "33529", + "nom_de_la_commune": "LA TESTE DE BUCH", + "code_postal": "33260", + "coordonnees_gps": [ + 44.5561823053, + -1.17530826791 + ], + "libelle_d_acheminement": "LA TESTE DE BUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17530826791, + 44.5561823053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "031b15b600f09c1393a65cf1f53340f68b7e6131", + "fields": { + "code_commune_insee": "33530", + "nom_de_la_commune": "TEUILLAC", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0962146262, + -0.547066877584 + ], + "libelle_d_acheminement": "TEUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.547066877584, + 45.0962146262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80935112c2c7cb3c1d4b785846d152d96cb82bb5", + "fields": { + "code_commune_insee": "33535", + "nom_de_la_commune": "TRESSES", + "code_postal": "33370", + "coordonnees_gps": [ + 44.8419124871, + -0.469935856995 + ], + "libelle_d_acheminement": "TRESSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.469935856995, + 44.8419124871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aeed8bb050604c8f39a3faafca5420d3baa60b3", + "fields": { + "code_commune_insee": "33538", + "nom_de_la_commune": "VALEYRAC", + "code_postal": "33340", + "coordonnees_gps": [ + 45.3906041453, + -0.901076272339 + ], + "libelle_d_acheminement": "VALEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.901076272339, + 45.3906041453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6647e11ac077d9e94c010cf119aa4cc14bdc7bb3", + "fields": { + "code_commune_insee": "33542", + "nom_de_la_commune": "VERAC", + "code_postal": "33240", + "coordonnees_gps": [ + 44.9940061941, + -0.336975920597 + ], + "libelle_d_acheminement": "VERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.336975920597, + 44.9940061941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63db44accf07a5a9105a03e0e3bdf06206f5172f", + "fields": { + "code_commune_insee": "33548", + "nom_de_la_commune": "VILLEGOUGE", + "code_postal": "33141", + "coordonnees_gps": [ + 44.9726067996, + -0.312917809378 + ], + "libelle_d_acheminement": "VILLEGOUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.312917809378, + 44.9726067996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6976eb633f67558598e3954bb4e5dd415ad7807", + "fields": { + "code_commune_insee": "33550", + "nom_de_la_commune": "VILLENAVE D ORNON", + "code_postal": "33140", + "coordonnees_gps": [ + 44.773185218, + -0.558212256384 + ], + "libelle_d_acheminement": "VILLENAVE D ORNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.558212256384, + 44.773185218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "895daff0916cda76705365f6f49cfc93c1ccf6cd", + "fields": { + "code_commune_insee": "33553", + "nom_de_la_commune": "VIRSAC", + "code_postal": "33240", + "coordonnees_gps": [ + 45.0259020314, + -0.435395776761 + ], + "libelle_d_acheminement": "VIRSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.435395776761, + 45.0259020314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44ebae9a19e189b2a999593c3e051fa47e49e218", + "fields": { + "code_commune_insee": "33555", + "nom_de_la_commune": "MARCHEPRIME", + "code_postal": "33380", + "coordonnees_gps": [ + 44.7030054504, + -0.856342535157 + ], + "libelle_d_acheminement": "MARCHEPRIME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.856342535157, + 44.7030054504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b374419c1b3b5c2dcf9a7f93d8341faec4903eb3", + "fields": { + "code_commune_insee": "34013", + "nom_de_la_commune": "ASPIRAN", + "code_postal": "34800", + "coordonnees_gps": [ + 43.5672233099, + 3.4481611939 + ], + "libelle_d_acheminement": "ASPIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4481611939, + 43.5672233099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8301e7c241878f33d8999809b6d0ac9d6df58e43", + "fields": { + "code_commune_insee": "34016", + "nom_de_la_commune": "AUMELAS", + "code_postal": "34230", + "coordonnees_gps": [ + 43.5777908844, + 3.61727878859 + ], + "libelle_d_acheminement": "AUMELAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61727878859, + 43.5777908844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b9ffc30c7550e777c12d4374f473ca029d87749", + "fields": { + "code_commune_insee": "34020", + "nom_de_la_commune": "AZILLANET", + "code_postal": "34210", + "coordonnees_gps": [ + 43.3236122497, + 2.74504101895 + ], + "libelle_d_acheminement": "AZILLANET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74504101895, + 43.3236122497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb336d926a931b78db291d27c12c0666af811572", + "fields": { + "code_commune_insee": "34028", + "nom_de_la_commune": "BEDARIEUX", + "code_postal": "34600", + "coordonnees_gps": [ + 43.6125569074, + 3.16680787195 + ], + "libelle_d_acheminement": "BEDARIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16680787195, + 43.6125569074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03f8f9268f5aa2d52d54dd5877c7b6bb4d12c373", + "fields": { + "code_commune_insee": "34033", + "nom_de_la_commune": "BOISSERON", + "code_postal": "34160", + "coordonnees_gps": [ + 43.7523646952, + 4.07621075324 + ], + "libelle_d_acheminement": "BOISSERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07621075324, + 43.7523646952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f28a76c8ca26f73bb6a4d564ae3be900cf49607", + "fields": { + "code_commune_insee": "34041", + "nom_de_la_commune": "BRIGNAC", + "code_postal": "34800", + "coordonnees_gps": [ + 43.6219841604, + 3.47081573374 + ], + "libelle_d_acheminement": "BRIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47081573374, + 43.6219841604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de165953c540b793eb41abcbdb999633b9b1375c", + "fields": { + "code_commune_insee": "34048", + "nom_de_la_commune": "CAMPAGNE", + "code_postal": "34160", + "coordonnees_gps": [ + 43.7858302535, + 4.03449984137 + ], + "libelle_d_acheminement": "CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03449984137, + 43.7858302535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4fe120d0d8e07fdab04fce39a8e3b2b9b32b97d", + "fields": { + "code_commune_insee": "34073", + "nom_de_la_commune": "CERS", + "code_postal": "34420", + "coordonnees_gps": [ + 43.3302709569, + 3.31729573152 + ], + "libelle_d_acheminement": "CERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31729573152, + 43.3302709569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07037a31d8eb75525a76a9f6273cac766758e2de", + "fields": { + "code_commune_insee": "34077", + "nom_de_la_commune": "CLAPIERS", + "code_postal": "34830", + "coordonnees_gps": [ + 43.6620192267, + 3.88689748204 + ], + "libelle_d_acheminement": "CLAPIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88689748204, + 43.6620192267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddc137e17871c6b96eb6517641ec4390e9e552a8", + "fields": { + "code_commune_insee": "34078", + "nom_de_la_commune": "CLARET", + "code_postal": "34270", + "coordonnees_gps": [ + 43.8572510508, + 3.87648647293 + ], + "libelle_d_acheminement": "CLARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87648647293, + 43.8572510508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d864e63cb9478da1c58497abbf3ed7ad1846ea73", + "fields": { + "code_commune_insee": "34079", + "nom_de_la_commune": "CLERMONT L HERAULT", + "code_postal": "34800", + "coordonnees_gps": [ + 43.6338885209, + 3.41317415682 + ], + "libelle_d_acheminement": "CLERMONT L HERAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41317415682, + 43.6338885209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92cce7ac71045d7078a694c96fac0f48402ae5eb", + "fields": { + "code_commune_insee": "34081", + "nom_de_la_commune": "COLOMBIERS", + "code_postal": "34440", + "coordonnees_gps": [ + 43.3154427074, + 3.14408489609 + ], + "libelle_d_acheminement": "COLOMBIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14408489609, + 43.3154427074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b7e0f4629a4a84bcd2d365f57952ab9bbe7622c", + "fields": { + "code_commune_insee": "34085", + "nom_de_la_commune": "COULOBRES", + "code_postal": "34290", + "coordonnees_gps": [ + 43.4507697404, + 3.27495989155 + ], + "libelle_d_acheminement": "COULOBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27495989155, + 43.4507697404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "795e16beb9ae8bcf03b5a7e18a4a29d5ae055ce2", + "fields": { + "code_commune_insee": "34087", + "nom_de_la_commune": "COURNONSEC", + "code_postal": "34660", + "coordonnees_gps": [ + 43.5404276115, + 3.70276147936 + ], + "libelle_d_acheminement": "COURNONSEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70276147936, + 43.5404276115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "116b3b69301ba0452c455e59230b4e23e1b1c4b2", + "fields": { + "code_commune_insee": "34106", + "nom_de_la_commune": "FOZIERES", + "code_postal": "34700", + "coordonnees_gps": [ + 43.7508754164, + 3.35595982822 + ], + "libelle_d_acheminement": "FOZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35595982822, + 43.7508754164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39b6fd8d8612f5ea640bbf9df9075e8561009fc8", + "fields": { + "code_commune_insee": "34110", + "nom_de_la_commune": "GALARGUES", + "code_postal": "34160", + "coordonnees_gps": [ + 43.7823313364, + 4.00782608796 + ], + "libelle_d_acheminement": "GALARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00782608796, + 43.7823313364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbc5193d92d914e022b1cd667627a0a3d58203f1", + "fields": { + "code_commune_insee": "34114", + "nom_de_la_commune": "GIGNAC", + "code_postal": "34150", + "coordonnees_gps": [ + 43.6393937216, + 3.57384628868 + ], + "libelle_d_acheminement": "GIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57384628868, + 43.6393937216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36431a042b98a4b26d971ff0357fa4a049844313", + "fields": { + "code_commune_insee": "34130", + "nom_de_la_commune": "LAURENS", + "code_postal": "34480", + "coordonnees_gps": [ + 43.5218394157, + 3.1996305574 + ], + "libelle_d_acheminement": "LAURENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1996305574, + 43.5218394157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b37b28ef02df2083452651b8b8b41b1293b6e2f", + "fields": { + "code_commune_insee": "34131", + "nom_de_la_commune": "LAURET", + "code_postal": "34270", + "coordonnees_gps": [ + 43.8313701737, + 3.88187587 + ], + "libelle_d_acheminement": "LAURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88187587, + 43.8313701737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d94b55f9e26027f935ab858037834332692c0395", + "fields": { + "code_commune_insee": "34135", + "nom_de_la_commune": "LESPIGNAN", + "code_postal": "34710", + "coordonnees_gps": [ + 43.2737109255, + 3.16982256617 + ], + "libelle_d_acheminement": "LESPIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16982256617, + 43.2737109255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "956f2bbac78309924d9368c1f4c9d191019a6203", + "fields": { + "code_commune_insee": "34137", + "nom_de_la_commune": "LIAUSSON", + "code_postal": "34800", + "coordonnees_gps": [ + 43.6402749752, + 3.36044063892 + ], + "libelle_d_acheminement": "LIAUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36044063892, + 43.6402749752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3b742e134bc556df057ec9fe4f818973326d231", + "fields": { + "code_commune_insee": "34139", + "nom_de_la_commune": "LIEURAN LES BEZIERS", + "code_postal": "34290", + "coordonnees_gps": [ + 43.4122997013, + 3.23066232037 + ], + "libelle_d_acheminement": "LIEURAN LES BEZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23066232037, + 43.4122997013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "907f5a2c28f0ba6bd20ec00f3faa378bed3eb654", + "fields": { + "code_commune_insee": "34140", + "nom_de_la_commune": "LIGNAN SUR ORB", + "code_postal": "34490", + "coordonnees_gps": [ + 43.382486634, + 3.17270457784 + ], + "libelle_d_acheminement": "LIGNAN SUR ORB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17270457784, + 43.382486634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a97f7acee4994f116a6172a2c771541c11fe12a", + "fields": { + "code_commune_insee": "34142", + "nom_de_la_commune": "LODEVE", + "code_postal": "34700", + "coordonnees_gps": [ + 43.7307354901, + 3.30567667879 + ], + "libelle_d_acheminement": "LODEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30567667879, + 43.7307354901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc7c4b87effbc43df7b876060de253e87b5b2ef1", + "fields": { + "code_commune_insee": "34154", + "nom_de_la_commune": "MAUGUIO", + "code_postal": "34130", + "coordonnees_gps": [ + 43.5928279472, + 4.00425693337 + ], + "libelle_d_acheminement": "MAUGUIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00425693337, + 43.5928279472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3ee82f6862fbeaf09969732a5f05ef674151cd5", + "fields": { + "code_commune_insee": "34156", + "nom_de_la_commune": "MERIFONS", + "code_postal": "34800", + "coordonnees_gps": [ + 43.6355182849, + 3.28015799164 + ], + "libelle_d_acheminement": "MERIFONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28015799164, + 43.6355182849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5df1e000f6f6b31a6c860497c2493bac7182e1d", + "fields": { + "code_commune_insee": "34157", + "nom_de_la_commune": "MEZE", + "code_postal": "34140", + "coordonnees_gps": [ + 43.4292981138, + 3.57774572973 + ], + "libelle_d_acheminement": "MEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57774572973, + 43.4292981138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1f85e5615d3138137c95983a7d1de8bed4978c4", + "fields": { + "code_commune_insee": "34159", + "nom_de_la_commune": "MIREVAL", + "code_postal": "34110", + "coordonnees_gps": [ + 43.5170572388, + 3.80306531824 + ], + "libelle_d_acheminement": "MIREVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80306531824, + 43.5170572388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a38a72dff4645671254f25498b149dc0a4eca2e", + "fields": { + "code_commune_insee": "34160", + "nom_de_la_commune": "MONS", + "code_postal": "34390", + "coordonnees_gps": [ + 43.5698246812, + 2.96307448549 + ], + "libelle_d_acheminement": "MONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96307448549, + 43.5698246812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6081be342b50ef574915b0c6f1d64631b1c4f17", + "fields": { + "code_commune_insee": "34163", + "nom_de_la_commune": "MONTARNAUD", + "code_postal": "34570", + "coordonnees_gps": [ + 43.6470278582, + 3.69970280024 + ], + "libelle_d_acheminement": "MONTARNAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69970280024, + 43.6470278582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "248e8418b9fc05ff866ca0f96c43c2c57ea23dd5", + "fields": { + "code_commune_insee": "34165", + "nom_de_la_commune": "MONTBAZIN", + "code_postal": "34560", + "coordonnees_gps": [ + 43.5327997823, + 3.67193055324 + ], + "libelle_d_acheminement": "MONTBAZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67193055324, + 43.5327997823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0a8dffd9a295485dfa8a2a265c5cff6fe09473e", + "fields": { + "code_commune_insee": "34170", + "nom_de_la_commune": "MONTOULIERS", + "code_postal": "34310", + "coordonnees_gps": [ + 43.3353694214, + 2.90623639932 + ], + "libelle_d_acheminement": "MONTOULIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90623639932, + 43.3353694214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b82ee5765ec4cae13b97825f328b60c5d7a29fc", + "fields": { + "code_commune_insee": "34171", + "nom_de_la_commune": "MONTOULIEU", + "code_postal": "34190", + "coordonnees_gps": [ + 43.919242211, + 3.80187206005 + ], + "libelle_d_acheminement": "MONTOULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80187206005, + 43.919242211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f7b36003ce7b96afa9140900655cd621e3af55a", + "fields": { + "code_commune_insee": "34172", + "nom_de_la_commune": "MONTPELLIER", + "code_postal": "34000", + "coordonnees_gps": [ + 43.6134409138, + 3.86851657896 + ], + "libelle_d_acheminement": "MONTPELLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86851657896, + 43.6134409138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a166e0fe802c1979b7e4ccb95321998f5d1b887f", + "fields": { + "code_commune_insee": "34174", + "nom_de_la_commune": "MOULES ET BAUCELS", + "code_postal": "34190", + "coordonnees_gps": [ + 43.9497259922, + 3.75555165229 + ], + "libelle_d_acheminement": "MOULES ET BAUCELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75555165229, + 43.9497259922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "834576fd1b0c78d2c82d7cabf15b16df4d169509", + "fields": { + "code_commune_insee": "34175", + "nom_de_la_commune": "MOUREZE", + "code_postal": "34800", + "coordonnees_gps": [ + 43.6156849322, + 3.35101426907 + ], + "libelle_d_acheminement": "MOUREZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35101426907, + 43.6156849322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec19dcb4a30425ca3e9aeaef4c446bf9761a6d31", + "fields": { + "code_commune_insee": "34178", + "nom_de_la_commune": "MURVIEL LES BEZIERS", + "code_postal": "34490", + "coordonnees_gps": [ + 43.4576685107, + 3.13592247665 + ], + "libelle_d_acheminement": "MURVIEL LES BEZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13592247665, + 43.4576685107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48865ecad9798b96beefd3703bf915659d970481", + "fields": { + "code_commune_insee": "34183", + "nom_de_la_commune": "NISSAN LEZ ENSERUNE", + "code_postal": "34440", + "coordonnees_gps": [ + 43.2811833354, + 3.11227016 + ], + "libelle_d_acheminement": "NISSAN LEZ ENSERUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11227016, + 43.2811833354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43ca9da3b4d031bff7188fd044fd00a5b15b91ee", + "fields": { + "code_commune_insee": "34194", + "nom_de_la_commune": "PAULHAN", + "code_postal": "34230", + "coordonnees_gps": [ + 43.5382461437, + 3.45878001705 + ], + "libelle_d_acheminement": "PAULHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45878001705, + 43.5382461437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f0f104b0cec9818108c6778cc92472d6a5033ac", + "fields": { + "code_commune_insee": "34200", + "nom_de_la_commune": "PEZENES LES MINES", + "code_postal": "34600", + "coordonnees_gps": [ + 43.5990802709, + 3.24486558872 + ], + "libelle_d_acheminement": "PEZENES LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24486558872, + 43.5990802709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cb0af72ad86761ea0802b5abec72bc69fbfccaf", + "fields": { + "code_commune_insee": "34201", + "nom_de_la_commune": "PIERRERUE", + "code_postal": "34360", + "coordonnees_gps": [ + 43.4408898427, + 2.96353265776 + ], + "libelle_d_acheminement": "PIERRERUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96353265776, + 43.4408898427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c31599efbf394a876966ebd4c9a257dbf4db457", + "fields": { + "code_commune_insee": "34204", + "nom_de_la_commune": "PLAISSAN", + "code_postal": "34230", + "coordonnees_gps": [ + 43.5590614886, + 3.52978704961 + ], + "libelle_d_acheminement": "PLAISSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52978704961, + 43.5590614886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a04d7e5e3638ced658d44a53cd89c1a8d9e7d77d", + "fields": { + "code_commune_insee": "34208", + "nom_de_la_commune": "POPIAN", + "code_postal": "34230", + "coordonnees_gps": [ + 43.6241428585, + 3.53329416559 + ], + "libelle_d_acheminement": "POPIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53329416559, + 43.6241428585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc2090f283829a4264155888a9ad332851b2cd7b", + "fields": { + "code_commune_insee": "34213", + "nom_de_la_commune": "POUSSAN", + "code_postal": "34560", + "coordonnees_gps": [ + 43.4938682747, + 3.66060526328 + ], + "libelle_d_acheminement": "POUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66060526328, + 43.4938682747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "949b12f107c49068548bf84d6e02bbb33cf19273", + "fields": { + "code_commune_insee": "34227", + "nom_de_la_commune": "RESTINCLIERES", + "code_postal": "34160", + "coordonnees_gps": [ + 43.7241060431, + 4.04113886056 + ], + "libelle_d_acheminement": "RESTINCLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04113886056, + 43.7241060431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cee310d8ff630b50909fa83736f6b256b5d424af", + "fields": { + "code_commune_insee": "34228", + "nom_de_la_commune": "RIEUSSEC", + "code_postal": "34220", + "coordonnees_gps": [ + 43.4221214711, + 2.73234133546 + ], + "libelle_d_acheminement": "RIEUSSEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73234133546, + 43.4221214711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62eb3ca883ef261e9a2438bae354bb89704f07de", + "fields": { + "code_commune_insee": "34233", + "nom_de_la_commune": "ROQUEREDONDE", + "code_postal": "34650", + "coordonnees_gps": [ + 43.7962962251, + 3.20797377545 + ], + "libelle_d_acheminement": "ROQUEREDONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20797377545, + 43.7962962251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cd30423e969819fc5ecbcff56402795475a5609", + "fields": { + "code_commune_insee": "34235", + "nom_de_la_commune": "ROSIS", + "code_postal": "34610", + "coordonnees_gps": [ + 43.6281696619, + 2.99215452371 + ], + "libelle_d_acheminement": "ROSIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99215452371, + 43.6281696619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03a9170a1195f9805000b1376c3627cf4bdf03b3", + "fields": { + "code_commune_insee": "34240", + "nom_de_la_commune": "ST AUNES", + "code_postal": "34130", + "coordonnees_gps": [ + 43.6349513822, + 3.96578818387 + ], + "libelle_d_acheminement": "ST AUNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96578818387, + 43.6349513822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c92bbed52695516de78205d56f2e3337766f13b", + "fields": { + "code_commune_insee": "34244", + "nom_de_la_commune": "ST BRES", + "code_postal": "34670", + "coordonnees_gps": [ + 43.6665945893, + 4.03794071375 + ], + "libelle_d_acheminement": "ST BRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03794071375, + 43.6665945893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d1524744684d8384b547ec7326c82b3ce314f88", + "fields": { + "code_commune_insee": "34250", + "nom_de_la_commune": "ST ETIENNE D ALBAGNAN", + "code_postal": "34390", + "coordonnees_gps": [ + 43.5283591648, + 2.86528483537 + ], + "libelle_d_acheminement": "ST ETIENNE D ALBAGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86528483537, + 43.5283591648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d582de154e773899452736c4fa2a90575cc0937c", + "fields": { + "ligne_5": "PLAISANCE", + "code_commune_insee": "34257", + "libelle_d_acheminement": "ST GENIES DE VARENSAL", + "code_postal": "34610", + "nom_de_la_commune": "ST GENIES DE VARENSAL", + "coordonnees_gps": [ + 43.6879655757, + 3.00291654936 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00291654936, + 43.6879655757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a242298403131ea6d91fc0885bcecd20440addbd", + "fields": { + "code_commune_insee": "34268", + "nom_de_la_commune": "ST JEAN DE LA BLAQUIERE", + "code_postal": "34700", + "coordonnees_gps": [ + 43.7101712397, + 3.42987273184 + ], + "libelle_d_acheminement": "ST JEAN DE LA BLAQUIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42987273184, + 43.7101712397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6bc39583af50589de6c04083f21248d83f7f76e", + "fields": { + "code_commune_insee": "34269", + "nom_de_la_commune": "ST JEAN DE MINERVOIS", + "code_postal": "34360", + "coordonnees_gps": [ + 43.3998259676, + 2.8186318647 + ], + "libelle_d_acheminement": "ST JEAN DE MINERVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8186318647, + 43.3998259676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c1e178d0256cba5d29d21a2a3a3af8f4b6a7bdc", + "fields": { + "code_commune_insee": "34277", + "nom_de_la_commune": "ST MAURICE NAVACELLES", + "code_postal": "34190", + "coordonnees_gps": [ + 43.8448734239, + 3.5062650669 + ], + "libelle_d_acheminement": "ST MAURICE NAVACELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5062650669, + 43.8448734239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2867787c9b0322a6c3f3191407f217b3a8a5d42", + "fields": { + "code_commune_insee": "34279", + "nom_de_la_commune": "ST NAZAIRE DE LADAREZ", + "code_postal": "34490", + "coordonnees_gps": [ + 43.5174613218, + 3.08019366504 + ], + "libelle_d_acheminement": "ST NAZAIRE DE LADAREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08019366504, + 43.5174613218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db9a4a06230bf4690980af2fae54cd8b0690ec32", + "fields": { + "code_commune_insee": "34287", + "nom_de_la_commune": "ST SATURNIN DE LUCIAN", + "code_postal": "34725", + "coordonnees_gps": [ + 43.7020641243, + 3.46562017139 + ], + "libelle_d_acheminement": "ST SATURNIN DE LUCIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46562017139, + 43.7020641243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46cf83cf5e7be6700d3870381f038bf32fbfdaa4", + "fields": { + "code_commune_insee": "34291", + "nom_de_la_commune": "ST VINCENT D OLARGUES", + "code_postal": "34390", + "coordonnees_gps": [ + 43.5598159229, + 2.8730344645 + ], + "libelle_d_acheminement": "ST VINCENT D OLARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8730344645, + 43.5598159229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78ca918cbc7c0cadf8d4b3889855f21145fe94f1", + "fields": { + "code_commune_insee": "34297", + "nom_de_la_commune": "SAUTEYRARGUES", + "code_postal": "34270", + "coordonnees_gps": [ + 43.830914793, + 3.91858398089 + ], + "libelle_d_acheminement": "SAUTEYRARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91858398089, + 43.830914793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "449869e947137cf687121f20e84040972d4be36c", + "fields": { + "code_commune_insee": "34306", + "nom_de_la_commune": "SOUMONT", + "code_postal": "34700", + "coordonnees_gps": [ + 43.7254656283, + 3.34970945877 + ], + "libelle_d_acheminement": "SOUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34970945877, + 43.7254656283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afa5014191aa278fd4be1377102edde535526e3e", + "fields": { + "code_commune_insee": "34310", + "nom_de_la_commune": "THEZAN LES BEZIERS", + "code_postal": "34490", + "coordonnees_gps": [ + 43.4132925116, + 3.15810877475 + ], + "libelle_d_acheminement": "THEZAN LES BEZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15810877475, + 43.4132925116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8fa4f89a8b6c220710d1c2d4e99b88fbeb849ab", + "fields": { + "code_commune_insee": "34311", + "nom_de_la_commune": "TOURBES", + "code_postal": "34120", + "coordonnees_gps": [ + 43.4426128717, + 3.37325063166 + ], + "libelle_d_acheminement": "TOURBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37325063166, + 43.4426128717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d51057b2c4f05bfa3c91dbbb42d3ba8e5a7c68b4", + "fields": { + "code_commune_insee": "34314", + "nom_de_la_commune": "LE TRIADOU", + "code_postal": "34270", + "coordonnees_gps": [ + 43.7367810666, + 3.85739515015 + ], + "libelle_d_acheminement": "LE TRIADOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85739515015, + 43.7367810666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1cf7a3b2616b6d2f698a9a39cd83e92e4b59e46", + "fields": { + "code_commune_insee": "34315", + "nom_de_la_commune": "USCLAS D HERAULT", + "code_postal": "34230", + "coordonnees_gps": [ + 43.5218019107, + 3.46731273264 + ], + "libelle_d_acheminement": "USCLAS D HERAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46731273264, + 43.5218019107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5400fd74b35367939b4bf753e296f5fb7157d84a", + "fields": { + "code_commune_insee": "34331", + "nom_de_la_commune": "VERRERIES DE MOUSSANS", + "code_postal": "34220", + "coordonnees_gps": [ + 43.4493841395, + 2.67914780973 + ], + "libelle_d_acheminement": "VERRERIES DE MOUSSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67914780973, + 43.4493841395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88df3231dc82e385fd89f5425a703451b89dedba", + "fields": { + "code_commune_insee": "34336", + "nom_de_la_commune": "VILLENEUVE LES BEZIERS", + "code_postal": "34420", + "coordonnees_gps": [ + 43.3172489997, + 3.28958494349 + ], + "libelle_d_acheminement": "VILLENEUVE LES BEZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28958494349, + 43.3172489997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "825fdd27208e06dbb92860d3d1d9bf4a22a8ddc8", + "fields": { + "code_commune_insee": "34341", + "nom_de_la_commune": "VILLEVEYRAC", + "code_postal": "34560", + "coordonnees_gps": [ + 43.5001280333, + 3.59372946669 + ], + "libelle_d_acheminement": "VILLEVEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59372946669, + 43.5001280333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cb60c30680ecdae31b782c111d9a57c0e6fb830", + "fields": { + "code_commune_insee": "35007", + "nom_de_la_commune": "AUBIGNE", + "code_postal": "35250", + "coordonnees_gps": [ + 48.2991937889, + -1.63035557088 + ], + "libelle_d_acheminement": "AUBIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63035557088, + 48.2991937889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "941fcb2ed3181221c7f103f5165673ba6e1ba6f1", + "fields": { + "code_commune_insee": "35012", + "nom_de_la_commune": "BAIN DE BRETAGNE", + "code_postal": "35470", + "coordonnees_gps": [ + 47.8302948158, + -1.67649507218 + ], + "libelle_d_acheminement": "BAIN DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67649507218, + 47.8302948158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a80a85c46b8012d34351767157351087f9d261ce", + "fields": { + "code_commune_insee": "35013", + "nom_de_la_commune": "BAINS SUR OUST", + "code_postal": "35600", + "coordonnees_gps": [ + 47.7118573151, + -2.0751766873 + ], + "libelle_d_acheminement": "BAINS SUR OUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.0751766873, + 47.7118573151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f6c0037bb0ad5c07b2cc3ca51bbc6e9de877df3", + "fields": { + "code_commune_insee": "35017", + "nom_de_la_commune": "LA BAUSSAINE", + "code_postal": "35190", + "coordonnees_gps": [ + 48.3125973519, + -1.89690518191 + ], + "libelle_d_acheminement": "LA BAUSSAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89690518191, + 48.3125973519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b92db3caf831543735a58fb6b8abde56b633e8c", + "fields": { + "code_commune_insee": "35026", + "nom_de_la_commune": "BLERUAIS", + "code_postal": "35750", + "coordonnees_gps": [ + 48.116030785, + -2.11549706882 + ], + "libelle_d_acheminement": "BLERUAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.11549706882, + 48.116030785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "035cc82003099d240fc9e7ed1d927ccda2357ca0", + "fields": { + "code_commune_insee": "35030", + "nom_de_la_commune": "LA BOSSE DE BRETAGNE", + "code_postal": "35320", + "coordonnees_gps": [ + 47.8682982413, + -1.58824965901 + ], + "libelle_d_acheminement": "LA BOSSE DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58824965901, + 47.8682982413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9c78ceef2c59c345f99ab3f4c4a6a6b4dcc7597", + "fields": { + "code_commune_insee": "35035", + "nom_de_la_commune": "BOVEL", + "code_postal": "35330", + "coordonnees_gps": [ + 47.9563331223, + -1.95993951204 + ], + "libelle_d_acheminement": "BOVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95993951204, + 47.9563331223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9955c06c0484118aeffb1db1e9033de2e5e56475", + "fields": { + "ligne_5": "PONT REAN", + "code_commune_insee": "35047", + "libelle_d_acheminement": "BRUZ", + "code_postal": "35170", + "nom_de_la_commune": "BRUZ", + "coordonnees_gps": [ + 48.0261755313, + -1.74817480915 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74817480915, + 48.0261755313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a2b23f9c19c5ea54236fa84e35495fe20768169", + "fields": { + "code_commune_insee": "35055", + "nom_de_la_commune": "CHANTEPIE", + "code_postal": "35135", + "coordonnees_gps": [ + 48.0817134724, + -1.6038253094 + ], + "libelle_d_acheminement": "CHANTEPIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6038253094, + 48.0817134724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5211924e1a626e626e50ad6ed0043b260f7020f", + "fields": { + "code_commune_insee": "35058", + "nom_de_la_commune": "LA CHAPELLE CHAUSSEE", + "code_postal": "35630", + "coordonnees_gps": [ + 48.2664350425, + -1.86414756163 + ], + "libelle_d_acheminement": "LA CHAPELLE CHAUSSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86414756163, + 48.2664350425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "593e0644d54449e3d2a89025e6feecfbbe55d7e9", + "fields": { + "code_commune_insee": "35064", + "nom_de_la_commune": "LA CHAPELLE DE BRAIN", + "code_postal": "35660", + "coordonnees_gps": [ + 47.6972959919, + -1.93416464602 + ], + "libelle_d_acheminement": "LA CHAPELLE DE BRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93416464602, + 47.6972959919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c72823752b108e4e7af7d9ff2fba41f1031f0e6", + "fields": { + "ligne_5": "ST MELAINE", + "code_commune_insee": "35068", + "libelle_d_acheminement": "CHATEAUBOURG", + "code_postal": "35220", + "nom_de_la_commune": "CHATEAUBOURG", + "coordonnees_gps": [ + 48.120001247, + -1.40402096437 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40402096437, + 48.120001247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dccf416bfdae8d56fcaea0bf2eb44d9c8516fc3", + "fields": { + "ligne_5": "OSSE", + "code_commune_insee": "35069", + "libelle_d_acheminement": "CHATEAUGIRON", + "code_postal": "35410", + "nom_de_la_commune": "CHATEAUGIRON", + "coordonnees_gps": [ + 48.0441575779, + -1.50016256863 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50016256863, + 48.0441575779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a4aacef15791a5b44a1bbe0906ee682a809b627", + "fields": { + "code_commune_insee": "35071", + "nom_de_la_commune": "LE CHATELLIER", + "code_postal": "35133", + "coordonnees_gps": [ + 48.4263874529, + -1.24618917742 + ], + "libelle_d_acheminement": "LE CHATELLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24618917742, + 48.4263874529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6b6f4c04aca456f6addd1e527c8b92b3bc7ba07", + "fields": { + "code_commune_insee": "35084", + "nom_de_la_commune": "COMBLESSAC", + "code_postal": "35330", + "coordonnees_gps": [ + 47.872461539, + -2.08792248915 + ], + "libelle_d_acheminement": "COMBLESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08792248915, + 47.872461539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8871ec093bc154ca6f4dc48f754468a0ab46c07", + "fields": { + "code_commune_insee": "35085", + "nom_de_la_commune": "COMBOURG", + "code_postal": "35270", + "coordonnees_gps": [ + 48.4083560805, + -1.74519435019 + ], + "libelle_d_acheminement": "COMBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74519435019, + 48.4083560805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11782f3d3922ea69f0a22f3a3c014e818212feaa", + "fields": { + "code_commune_insee": "35086", + "nom_de_la_commune": "COMBOURTILLE", + "code_postal": "35210", + "coordonnees_gps": [ + 48.2659507718, + -1.26462449893 + ], + "libelle_d_acheminement": "COMBOURTILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26462449893, + 48.2659507718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e144453157638ed8a3d114e9a90b4de94e1e534e", + "fields": { + "code_commune_insee": "35090", + "nom_de_la_commune": "CREVIN", + "code_postal": "35320", + "coordonnees_gps": [ + 47.9303708982, + -1.65657334896 + ], + "libelle_d_acheminement": "CREVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65657334896, + 47.9303708982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ec77fff5c4b6ba4f0a624881b26d43b8efc6c8d", + "fields": { + "code_commune_insee": "35097", + "nom_de_la_commune": "DOMALAIN", + "code_postal": "35680", + "coordonnees_gps": [ + 47.9990883279, + -1.23942096028 + ], + "libelle_d_acheminement": "DOMALAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23942096028, + 47.9990883279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77f35e55aad7881a429752b7e3d8bc403d6e5d27", + "fields": { + "code_commune_insee": "35101", + "nom_de_la_commune": "DOURDAIN", + "code_postal": "35450", + "coordonnees_gps": [ + 48.1930816063, + -1.37940357602 + ], + "libelle_d_acheminement": "DOURDAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37940357602, + 48.1930816063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "625d909ea4b81a46183514a5753a0de6ab10cf53", + "fields": { + "code_commune_insee": "35104", + "nom_de_la_commune": "EPINIAC", + "code_postal": "35120", + "coordonnees_gps": [ + 48.4994671999, + -1.70334615041 + ], + "libelle_d_acheminement": "EPINIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.70334615041, + 48.4994671999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f99eee94341b3417231b61c10a83b9cfdd15e04", + "fields": { + "code_commune_insee": "35108", + "nom_de_la_commune": "ESSE", + "code_postal": "35150", + "coordonnees_gps": [ + 47.9478571796, + -1.43042922929 + ], + "libelle_d_acheminement": "ESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43042922929, + 47.9478571796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d604c1374c5df4731ee7dafd7b4b06f297a4bab7", + "fields": { + "code_commune_insee": "35121", + "nom_de_la_commune": "GOSNE", + "code_postal": "35140", + "coordonnees_gps": [ + 48.2503523895, + -1.45860853595 + ], + "libelle_d_acheminement": "GOSNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45860853595, + 48.2503523895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3336d48239c880dc9145bc70e26bb7fb3c27b2b", + "fields": { + "code_commune_insee": "35122", + "nom_de_la_commune": "LA GOUESNIERE", + "code_postal": "35350", + "coordonnees_gps": [ + 48.6030701902, + -1.88737306807 + ], + "libelle_d_acheminement": "LA GOUESNIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.88737306807, + 48.6030701902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d3f1cf2d1adee0f7496a4055b5d9fad55107506", + "fields": { + "ligne_5": "PONT REAN", + "code_commune_insee": "35126", + "libelle_d_acheminement": "GUICHEN", + "code_postal": "35580", + "nom_de_la_commune": "GUICHEN", + "coordonnees_gps": [ + 47.9653877316, + -1.79026270939 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79026270939, + 47.9653877316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dffa91a1cc1bb75acf7fb9f2c93c5cd506bd78f", + "fields": { + "code_commune_insee": "35128", + "nom_de_la_commune": "GUIPEL", + "code_postal": "35440", + "coordonnees_gps": [ + 48.2923904516, + -1.72349623823 + ], + "libelle_d_acheminement": "GUIPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72349623823, + 48.2923904516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08609c791c80ccafe47cf610d99fe9946c2a8b95", + "fields": { + "code_commune_insee": "35139", + "nom_de_la_commune": "LAILLE", + "code_postal": "35890", + "coordonnees_gps": [ + 47.9672360017, + -1.71452676529 + ], + "libelle_d_acheminement": "LAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71452676529, + 47.9672360017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67f8b2c33e7db8d9970e4c3b180d7370bc0eb543", + "fields": { + "code_commune_insee": "35140", + "nom_de_la_commune": "LALLEU", + "code_postal": "35320", + "coordonnees_gps": [ + 47.8562627684, + -1.52230618592 + ], + "libelle_d_acheminement": "LALLEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52230618592, + 47.8562627684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0b11708efa1255e829732ba3606bbc8dea9d8b6", + "fields": { + "code_commune_insee": "35154", + "nom_de_la_commune": "LIVRE SUR CHANGEON", + "code_postal": "35450", + "coordonnees_gps": [ + 48.2273048831, + -1.34883997825 + ], + "libelle_d_acheminement": "LIVRE SUR CHANGEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34883997825, + 48.2273048831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "095b3769a16b36f79087a8d2085fee32cffb2987", + "fields": { + "code_commune_insee": "35159", + "nom_de_la_commune": "LOURMAIS", + "code_postal": "35270", + "coordonnees_gps": [ + 48.4413517825, + -1.73312494265 + ], + "libelle_d_acheminement": "LOURMAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73312494265, + 48.4413517825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0581cf395c0487d2fb93ef07ae5ac9fd188837e3", + "fields": { + "code_commune_insee": "35164", + "nom_de_la_commune": "MARCILLE RAOUL", + "code_postal": "35560", + "coordonnees_gps": [ + 48.3743980511, + -1.6139420088 + ], + "libelle_d_acheminement": "MARCILLE RAOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6139420088, + 48.3743980511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "013e32df2499a66c7d4b5de8999e3ad17ae60f34", + "fields": { + "ligne_5": "CAMPEL", + "code_commune_insee": "35168", + "libelle_d_acheminement": "VAL D ANAST", + "code_postal": "35330", + "nom_de_la_commune": "VAL D ANAST", + "coordonnees_gps": [ + 47.8971012974, + -1.99867854689 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99867854689, + 47.8971012974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e0635746c1333fe9971c6b411535adf12cb1903", + "fields": { + "ligne_5": "COGLES", + "code_commune_insee": "35191", + "libelle_d_acheminement": "LES PORTES DU COGLAIS", + "code_postal": "35460", + "nom_de_la_commune": "LES PORTES DU COGLAIS", + "coordonnees_gps": [ + 48.4485377499, + -1.30298513536 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30298513536, + 48.4485377499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2cb0159c8536f0f3b83ca68896e33890eb10fbb", + "fields": { + "ligne_5": "LA SELLE EN COGLES", + "code_commune_insee": "35191", + "libelle_d_acheminement": "LES PORTES DU COGLAIS", + "code_postal": "35460", + "nom_de_la_commune": "LES PORTES DU COGLAIS", + "coordonnees_gps": [ + 48.4485377499, + -1.30298513536 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30298513536, + 48.4485377499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44c79f80813d6298c50f5d1c1721e04944d619fa", + "fields": { + "code_commune_insee": "35197", + "nom_de_la_commune": "MOUAZE", + "code_postal": "35250", + "coordonnees_gps": [ + 48.2185090762, + -1.60820353926 + ], + "libelle_d_acheminement": "MOUAZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60820353926, + 48.2185090762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63004d29d8d3a76a3b8134bb246f3b342e72a0b1", + "fields": { + "code_commune_insee": "35198", + "nom_de_la_commune": "MOULINS", + "code_postal": "35680", + "coordonnees_gps": [ + 48.0087571587, + -1.36287785518 + ], + "libelle_d_acheminement": "MOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36287785518, + 48.0087571587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16badbb6338b907566aa89cf157e0023527ff7ef", + "fields": { + "code_commune_insee": "35200", + "nom_de_la_commune": "MOUTIERS", + "code_postal": "35130", + "coordonnees_gps": [ + 47.9759859892, + -1.2051682133 + ], + "libelle_d_acheminement": "MOUTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2051682133, + 47.9759859892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "969933bd86c4893df6b004c2eb0873ee1efadc9a", + "fields": { + "ligne_5": "CHATILLON SUR SEICHE", + "code_commune_insee": "35206", + "libelle_d_acheminement": "NOYAL CHATILLON SUR SEICHE", + "code_postal": "35230", + "nom_de_la_commune": "NOYAL CHATILLON SUR SEICHE", + "coordonnees_gps": [ + 48.0524815273, + -1.6633106381 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6633106381, + 48.0524815273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71c654600ca0609b6ced9aafb07a05779c402768", + "fields": { + "code_commune_insee": "35224", + "nom_de_la_commune": "PLERGUER", + "code_postal": "35540", + "coordonnees_gps": [ + 48.5284745342, + -1.84558109365 + ], + "libelle_d_acheminement": "PLERGUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84558109365, + 48.5284745342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0978d949d3ef29fc659b4e71de13be530190123b", + "fields": { + "code_commune_insee": "35225", + "nom_de_la_commune": "PLESDER", + "code_postal": "35720", + "coordonnees_gps": [ + 48.4180951281, + -1.93003326564 + ], + "libelle_d_acheminement": "PLESDER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93003326564, + 48.4180951281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d9d71280239d34f9f08aa57aba00187488a3e7a", + "fields": { + "code_commune_insee": "35226", + "nom_de_la_commune": "PLEUGUENEUC", + "code_postal": "35720", + "coordonnees_gps": [ + 48.4045431671, + -1.88606418202 + ], + "libelle_d_acheminement": "PLEUGUENEUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.88606418202, + 48.4045431671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dec82b942dcd7c499cc1cbfd581da85efa109f48", + "fields": { + "code_commune_insee": "35227", + "nom_de_la_commune": "PLEUMELEUC", + "code_postal": "35137", + "coordonnees_gps": [ + 48.1830495916, + -1.8929319831 + ], + "libelle_d_acheminement": "PLEUMELEUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8929319831, + 48.1830495916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d486e5f7688f77e8fde62d8be6b1d9b477a3f67d", + "fields": { + "code_commune_insee": "35228", + "nom_de_la_commune": "PLEURTUIT", + "code_postal": "35730", + "coordonnees_gps": [ + 48.5827256783, + -2.05991444738 + ], + "libelle_d_acheminement": "PLEURTUIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05991444738, + 48.5827256783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78d00fef604577d465eb30944fe43d479d3d5eeb", + "fields": { + "code_commune_insee": "35239", + "nom_de_la_commune": "RETIERS", + "code_postal": "35240", + "coordonnees_gps": [ + 47.9060282888, + -1.34373706233 + ], + "libelle_d_acheminement": "RETIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34373706233, + 47.9060282888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "010a7309255c5718f22a25cf561d915af8414a79", + "fields": { + "ligne_5": "MOIGNE", + "code_commune_insee": "35240", + "libelle_d_acheminement": "LE RHEU", + "code_postal": "35650", + "nom_de_la_commune": "LE RHEU", + "coordonnees_gps": [ + 48.097397419, + -1.78149989185 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78149989185, + 48.097397419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bd603db3a3cb0cb6754f362b8252374729fcc84", + "fields": { + "code_commune_insee": "35249", + "nom_de_la_commune": "STE ANNE SUR VILAINE", + "code_postal": "35390", + "coordonnees_gps": [ + 47.7338101776, + -1.8052140064 + ], + "libelle_d_acheminement": "STE ANNE SUR VILAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8052140064, + 47.7338101776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff104848599fbd334dd19210e879ca8a058023e2", + "fields": { + "code_commune_insee": "35273", + "nom_de_la_commune": "ST GERMAIN EN COGLES", + "code_postal": "35133", + "coordonnees_gps": [ + 48.3974434735, + -1.26442564597 + ], + "libelle_d_acheminement": "ST GERMAIN EN COGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26442564597, + 48.3974434735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d13f4d7e5e8595b2e880c0e2757a9f68df53a25e", + "fields": { + "code_commune_insee": "35275", + "nom_de_la_commune": "ST GILLES", + "code_postal": "35590", + "coordonnees_gps": [ + 48.1520929859, + -1.85374690386 + ], + "libelle_d_acheminement": "ST GILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.85374690386, + 48.1520929859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac52aab8bad9055f38f03c23d479527c06638066", + "fields": { + "code_commune_insee": "35277", + "nom_de_la_commune": "ST GONLAY", + "code_postal": "35750", + "coordonnees_gps": [ + 48.1132469608, + -2.07658788542 + ], + "libelle_d_acheminement": "ST GONLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07658788542, + 48.1132469608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ea9bfa955d5ba46c8092dcc18ddb8c4428e52f8", + "fields": { + "code_commune_insee": "35279", + "nom_de_la_commune": "ST GUINOUX", + "code_postal": "35430", + "coordonnees_gps": [ + 48.5793096828, + -1.88805991274 + ], + "libelle_d_acheminement": "ST GUINOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.88805991274, + 48.5793096828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97e11294b3ba2f7576c99694d08d114f3e45a9ca", + "fields": { + "code_commune_insee": "35280", + "nom_de_la_commune": "ST HILAIRE DES LANDES", + "code_postal": "35140", + "coordonnees_gps": [ + 48.3383000653, + -1.36660733195 + ], + "libelle_d_acheminement": "ST HILAIRE DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36660733195, + 48.3383000653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "448368c68fa876dab90e4d4a538a81a2f39c5b15", + "fields": { + "code_commune_insee": "35285", + "nom_de_la_commune": "ST JUST", + "code_postal": "35550", + "coordonnees_gps": [ + 47.7645343074, + -1.96896648754 + ], + "libelle_d_acheminement": "ST JUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.96896648754, + 47.7645343074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cb46be74e50ed89038771b3db560ed10fbba8e6", + "fields": { + "ligne_5": "ST SERVAN SUR MER", + "code_commune_insee": "35288", + "libelle_d_acheminement": "ST MALO", + "code_postal": "35400", + "nom_de_la_commune": "ST MALO", + "coordonnees_gps": [ + 48.6400443482, + -1.98060627256 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98060627256, + 48.6400443482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3287b8d35585cce1b05221b759c2ffd1c2e996b", + "fields": { + "code_commune_insee": "35290", + "nom_de_la_commune": "ST MALON SUR MEL", + "code_postal": "35750", + "coordonnees_gps": [ + 48.0944048491, + -2.11182383067 + ], + "libelle_d_acheminement": "ST MALON SUR MEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.11182383067, + 48.0944048491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8c663ab2cb533db11516242f87fd9ba2e090745", + "fields": { + "code_commune_insee": "35309", + "nom_de_la_commune": "ST REMY DU PLAIN", + "code_postal": "35560", + "coordonnees_gps": [ + 48.3758019019, + -1.56690944074 + ], + "libelle_d_acheminement": "ST REMY DU PLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56690944074, + 48.3758019019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1594def9a33fa1ca0e65b929158e9653044c5cbc", + "fields": { + "code_commune_insee": "35311", + "nom_de_la_commune": "ST SEGLIN", + "code_postal": "35330", + "coordonnees_gps": [ + 47.8510645344, + -2.02652054855 + ], + "libelle_d_acheminement": "ST SEGLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02652054855, + 47.8510645344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ab7d3ad9898c9b8050f2570fd2909f866332a09", + "fields": { + "code_commune_insee": "35315", + "nom_de_la_commune": "ST SULPICE LA FORET", + "code_postal": "35250", + "coordonnees_gps": [ + 48.21225732, + -1.57663512362 + ], + "libelle_d_acheminement": "ST SULPICE LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57663512362, + 48.21225732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3e6982fceaecfe09259aa8daebd649240bea365", + "fields": { + "code_commune_insee": "35320", + "nom_de_la_commune": "ST UNIAC", + "code_postal": "35360", + "coordonnees_gps": [ + 48.1669783756, + -2.03378556474 + ], + "libelle_d_acheminement": "ST UNIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03378556474, + 48.1669783756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed837232b059460604e4800b22f024beee70144c", + "fields": { + "code_commune_insee": "35339", + "nom_de_la_commune": "TRANS LA FORET", + "code_postal": "35610", + "coordonnees_gps": [ + 48.4878512268, + -1.60369226136 + ], + "libelle_d_acheminement": "TRANS LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60369226136, + 48.4878512268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d60f5f8f1c4e5e37ee1cea8e1978a9efe3ac83ab", + "fields": { + "code_commune_insee": "36001", + "nom_de_la_commune": "AIGURANDE", + "code_postal": "36140", + "coordonnees_gps": [ + 46.455684191, + 1.83976972145 + ], + "libelle_d_acheminement": "AIGURANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83976972145, + 46.455684191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54e8b13ade06dec7bff7180670253ca3c26e4e39", + "fields": { + "code_commune_insee": "36006", + "nom_de_la_commune": "ARGENTON SUR CREUSE", + "code_postal": "36200", + "coordonnees_gps": [ + 46.5787862593, + 1.4926283101 + ], + "libelle_d_acheminement": "ARGENTON SUR CREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4926283101, + 46.5787862593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "500893cd2ad5a30ab6582e99681e5a4cd72e0ceb", + "fields": { + "code_commune_insee": "36010", + "nom_de_la_commune": "AZAY LE FERRON", + "code_postal": "36290", + "coordonnees_gps": [ + 46.8459784921, + 1.08124698726 + ], + "libelle_d_acheminement": "AZAY LE FERRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08124698726, + 46.8459784921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6792d6a3ed1ed1801958ccb6d9bb5902566fceb6", + "fields": { + "code_commune_insee": "36020", + "nom_de_la_commune": "BONNEUIL", + "code_postal": "36310", + "coordonnees_gps": [ + 46.3833216056, + 1.24155343607 + ], + "libelle_d_acheminement": "BONNEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24155343607, + 46.3833216056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fa85fd172b636846442fdfc46ddd9fead3ad59a", + "fields": { + "code_commune_insee": "36022", + "nom_de_la_commune": "BOUESSE", + "code_postal": "36200", + "coordonnees_gps": [ + 46.6263374879, + 1.68778572639 + ], + "libelle_d_acheminement": "BOUESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68778572639, + 46.6263374879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2364a38a46de70987e84caead8ce823900850b66", + "fields": { + "code_commune_insee": "36024", + "nom_de_la_commune": "BRETAGNE", + "code_postal": "36110", + "coordonnees_gps": [ + 46.999120025, + 1.69787130226 + ], + "libelle_d_acheminement": "BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69787130226, + 46.999120025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edcd911b88371273f1933c025127dfebe8b44d31", + "fields": { + "code_commune_insee": "36028", + "nom_de_la_commune": "LA BUXERETTE", + "code_postal": "36140", + "coordonnees_gps": [ + 46.4956309959, + 1.79829728284 + ], + "libelle_d_acheminement": "LA BUXERETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79829728284, + 46.4956309959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f182028399836d95591085f1f2c6c42f69fc6f4", + "fields": { + "code_commune_insee": "36032", + "nom_de_la_commune": "CEAULMONT", + "code_postal": "36200", + "coordonnees_gps": [ + 46.5302709049, + 1.55681464943 + ], + "libelle_d_acheminement": "CEAULMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55681464943, + 46.5302709049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f015e4246b4f7ec61677117eb31ed8b4401604f1", + "fields": { + "code_commune_insee": "36035", + "nom_de_la_commune": "CHAILLAC", + "code_postal": "36310", + "coordonnees_gps": [ + 46.4260014616, + 1.2915620907 + ], + "libelle_d_acheminement": "CHAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2915620907, + 46.4260014616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6ff93bf18c65f869885ca168f16450f697576f9", + "fields": { + "code_commune_insee": "36037", + "nom_de_la_commune": "LA CHAMPENOISE", + "code_postal": "36100", + "coordonnees_gps": [ + 46.9393942859, + 1.79291889355 + ], + "libelle_d_acheminement": "LA CHAMPENOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79291889355, + 46.9393942859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f9b880d0147904d9e050e4211304f12b05cd219", + "fields": { + "code_commune_insee": "36044", + "nom_de_la_commune": "CHATEAUROUX", + "code_postal": "36000", + "coordonnees_gps": [ + 46.8029617828, + 1.69399812001 + ], + "libelle_d_acheminement": "CHATEAUROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69399812001, + 46.8029617828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12a1ca3fe42df73ab833b27695ae7ce153606b19", + "fields": { + "code_commune_insee": "36056", + "nom_de_la_commune": "CLUIS", + "code_postal": "36340", + "coordonnees_gps": [ + 46.5352767635, + 1.74340331959 + ], + "libelle_d_acheminement": "CLUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74340331959, + 46.5352767635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c565cfd5bab24b9e425361a4b0a6cffdc0c215ec", + "fields": { + "code_commune_insee": "36059", + "nom_de_la_commune": "CONDE", + "code_postal": "36100", + "coordonnees_gps": [ + 46.8854658977, + 1.98706426644 + ], + "libelle_d_acheminement": "CONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98706426644, + 46.8854658977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4842fd078682469651d8865b09e4a8e00207df81", + "fields": { + "code_commune_insee": "36064", + "nom_de_la_commune": "DIORS", + "code_postal": "36130", + "coordonnees_gps": [ + 46.8294887211, + 1.81115700532 + ], + "libelle_d_acheminement": "DIORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81115700532, + 46.8294887211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6247bc9229ff5395b8655fee517bdda4768e549a", + "fields": { + "code_commune_insee": "36065", + "nom_de_la_commune": "DIOU", + "code_postal": "36260", + "coordonnees_gps": [ + 47.0454733452, + 2.00611539537 + ], + "libelle_d_acheminement": "DIOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00611539537, + 47.0454733452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92c2f01603b985e9ad715929f6af4031ff3f8b42", + "fields": { + "code_commune_insee": "36074", + "nom_de_la_commune": "FLERE LA RIVIERE", + "code_postal": "36700", + "coordonnees_gps": [ + 46.9965732721, + 1.09318209404 + ], + "libelle_d_acheminement": "FLERE LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09318209404, + 46.9965732721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5d842e7b3d4e2ba05c2ff7f6b3d34b360427b00", + "fields": { + "code_commune_insee": "36080", + "nom_de_la_commune": "FREDILLE", + "code_postal": "36180", + "coordonnees_gps": [ + 47.001803975, + 1.47736111614 + ], + "libelle_d_acheminement": "FREDILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47736111614, + 47.001803975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "509088470689b3a0a53b9390c3c65dedb81d1f2b", + "fields": { + "code_commune_insee": "36081", + "nom_de_la_commune": "GARGILESSE DAMPIERRE", + "code_postal": "36190", + "coordonnees_gps": [ + 46.5053300669, + 1.62060670843 + ], + "libelle_d_acheminement": "GARGILESSE DAMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62060670843, + 46.5053300669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afe374e01c331f805089025fcff6f279e452ed18", + "fields": { + "code_commune_insee": "36092", + "nom_de_la_commune": "LANGE", + "code_postal": "36600", + "coordonnees_gps": [ + 47.0739529202, + 1.50748224415 + ], + "libelle_d_acheminement": "LANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50748224415, + 47.0739529202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ecf92090e5e950e3cd2f5ac8c843a65003962b6", + "fields": { + "code_commune_insee": "36100", + "nom_de_la_commune": "LOUROUER ST LAURENT", + "code_postal": "36400", + "coordonnees_gps": [ + 46.6194091093, + 2.01790100072 + ], + "libelle_d_acheminement": "LOUROUER ST LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01790100072, + 46.6194091093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ecc4017d4527ad2a3b12a3f978e1e8c1c1aa498", + "fields": { + "code_commune_insee": "36105", + "nom_de_la_commune": "LUREUIL", + "code_postal": "36220", + "coordonnees_gps": [ + 46.7464715422, + 1.03810161496 + ], + "libelle_d_acheminement": "LUREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03810161496, + 46.7464715422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c75f75cd80f7d2a0f1a5e1e565250b6ef4b97e2c", + "fields": { + "code_commune_insee": "36106", + "nom_de_la_commune": "LUZERET", + "code_postal": "36800", + "coordonnees_gps": [ + 46.5476228385, + 1.38528688826 + ], + "libelle_d_acheminement": "LUZERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38528688826, + 46.5476228385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "337174104fdf1974504311283eb5d120a5cba42a", + "fields": { + "code_commune_insee": "36109", + "nom_de_la_commune": "LE MAGNY", + "code_postal": "36400", + "coordonnees_gps": [ + 46.5566903776, + 1.95895779843 + ], + "libelle_d_acheminement": "LE MAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95895779843, + 46.5566903776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d94593a60513d948ee1c2ba24eb8910cea1b24d1", + "fields": { + "code_commune_insee": "36110", + "nom_de_la_commune": "MAILLET", + "code_postal": "36340", + "coordonnees_gps": [ + 46.5804941943, + 1.67770625299 + ], + "libelle_d_acheminement": "MAILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67770625299, + 46.5804941943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bae9347c2f46c22129a2da43e7fad60af3d79c7e", + "fields": { + "code_commune_insee": "36111", + "nom_de_la_commune": "MALICORNAY", + "code_postal": "36340", + "coordonnees_gps": [ + 46.5692681843, + 1.64580646533 + ], + "libelle_d_acheminement": "MALICORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64580646533, + 46.5692681843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a7a152153b6c51850abd90b75ca24ce6ff181d6", + "fields": { + "code_commune_insee": "36119", + "nom_de_la_commune": "MERIGNY", + "code_postal": "36220", + "coordonnees_gps": [ + 46.6307715976, + 0.932899384485 + ], + "libelle_d_acheminement": "MERIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.932899384485, + 46.6307715976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59522131379b25e540f888f3ad154709623d82f2", + "fields": { + "code_commune_insee": "36120", + "nom_de_la_commune": "MERS SUR INDRE", + "code_postal": "36230", + "coordonnees_gps": [ + 46.6693679113, + 1.87334410692 + ], + "libelle_d_acheminement": "MERS SUR INDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87334410692, + 46.6693679113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac0002ad129f9e41d664c5fdc81f3fb6fcb458bf", + "fields": { + "code_commune_insee": "36121", + "nom_de_la_commune": "MEUNET PLANCHES", + "code_postal": "36100", + "coordonnees_gps": [ + 46.84026848, + 1.97384087757 + ], + "libelle_d_acheminement": "MEUNET PLANCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97384087757, + 46.84026848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "506d3e9e508eb5ee6b5e38dcce06dd6c274eceb9", + "fields": { + "code_commune_insee": "36123", + "nom_de_la_commune": "MEZIERES EN BRENNE", + "code_postal": "36290", + "coordonnees_gps": [ + 46.8120642094, + 1.25669191407 + ], + "libelle_d_acheminement": "MEZIERES EN BRENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25669191407, + 46.8120642094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81dc29ba10de5b4ce592e05e59b32bc7d420a417", + "fields": { + "code_commune_insee": "36126", + "nom_de_la_commune": "MONTCHEVRIER", + "code_postal": "36140", + "coordonnees_gps": [ + 46.4789542772, + 1.75403274632 + ], + "libelle_d_acheminement": "MONTCHEVRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75403274632, + 46.4789542772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50681bb94c8f8816a1c4e7749ee39992737482de", + "fields": { + "code_commune_insee": "36127", + "nom_de_la_commune": "MONTGIVRAY", + "code_postal": "36400", + "coordonnees_gps": [ + 46.5962273498, + 1.96629767733 + ], + "libelle_d_acheminement": "MONTGIVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96629767733, + 46.5962273498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0a2a72f0e065ed2ec6bb441dae185d95396a32a", + "fields": { + "code_commune_insee": "36129", + "nom_de_la_commune": "MONTIPOURET", + "code_postal": "36230", + "coordonnees_gps": [ + 46.6568299962, + 1.91357333323 + ], + "libelle_d_acheminement": "MONTIPOURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91357333323, + 46.6568299962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "800461f68c530b0429a1586838033acb848c8fed", + "fields": { + "code_commune_insee": "36157", + "nom_de_la_commune": "LA PEROUILLE", + "code_postal": "36350", + "coordonnees_gps": [ + 46.7096405826, + 1.51526051031 + ], + "libelle_d_acheminement": "LA PEROUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51526051031, + 46.7096405826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df7140f8cbc16e609f37efd136374fa20d154e2f", + "fields": { + "code_commune_insee": "36163", + "nom_de_la_commune": "POULIGNY NOTRE DAME", + "code_postal": "36160", + "coordonnees_gps": [ + 46.4730747606, + 2.00655850845 + ], + "libelle_d_acheminement": "POULIGNY NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00655850845, + 46.4730747606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c57ddf56583ee14cf668e6ff67800db1e2411aa", + "fields": { + "code_commune_insee": "36165", + "nom_de_la_commune": "POULIGNY ST PIERRE", + "code_postal": "36300", + "coordonnees_gps": [ + 46.684081947, + 1.04652871345 + ], + "libelle_d_acheminement": "POULIGNY ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04652871345, + 46.684081947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcb2f2d8060d6ba944a53bdfce284e4ffc2870ae", + "fields": { + "code_commune_insee": "36167", + "nom_de_la_commune": "PREUILLY LA VILLE", + "code_postal": "36220", + "coordonnees_gps": [ + 46.6980523069, + 0.980437469492 + ], + "libelle_d_acheminement": "PREUILLY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.980437469492, + 46.6980523069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7026619124316cdbb93399aee59a6c48d3c2b14", + "fields": { + "code_commune_insee": "36192", + "nom_de_la_commune": "ST GAULTIER", + "code_postal": "36800", + "coordonnees_gps": [ + 46.6480131941, + 1.43032381865 + ], + "libelle_d_acheminement": "ST GAULTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43032381865, + 46.6480131941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8cd031acb58a454f63ed4626818beade46509ab", + "fields": { + "ligne_5": "VILLERS LES ORMES", + "code_commune_insee": "36202", + "libelle_d_acheminement": "ST MAUR", + "code_postal": "36250", + "nom_de_la_commune": "ST MAUR", + "coordonnees_gps": [ + 46.7890918907, + 1.62343965566 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62343965566, + 46.7890918907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f124220e187c40a11359ee86f4131c9af5bac342", + "fields": { + "code_commune_insee": "36203", + "nom_de_la_commune": "ST MEDARD", + "code_postal": "36700", + "coordonnees_gps": [ + 47.0052566616, + 1.26515419638 + ], + "libelle_d_acheminement": "ST MEDARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26515419638, + 47.0052566616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "328530d634d10ccf876b7123385f89bea7e389d4", + "fields": { + "code_commune_insee": "36205", + "nom_de_la_commune": "ST PIERRE DE JARDS", + "code_postal": "36260", + "coordonnees_gps": [ + 47.1019578321, + 1.96965662578 + ], + "libelle_d_acheminement": "ST PIERRE DE JARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96965662578, + 47.1019578321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36140ff4648375806d495b5347c42a445e5d0043", + "fields": { + "code_commune_insee": "36207", + "nom_de_la_commune": "ST PLANTAIRE", + "code_postal": "36190", + "coordonnees_gps": [ + 46.432132753, + 1.64824478911 + ], + "libelle_d_acheminement": "ST PLANTAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64824478911, + 46.432132753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bbe54b6127ab3cb69947d6f6608ab6142a183fc", + "fields": { + "code_commune_insee": "36212", + "nom_de_la_commune": "SAULNAY", + "code_postal": "36290", + "coordonnees_gps": [ + 46.8684293874, + 1.25671383741 + ], + "libelle_d_acheminement": "SAULNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25671383741, + 46.8684293874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51158611516b74ecfccf4a50f6d8709479ad55e7", + "fields": { + "code_commune_insee": "36214", + "nom_de_la_commune": "SAZERAY", + "code_postal": "36160", + "coordonnees_gps": [ + 46.4467096197, + 2.04531579946 + ], + "libelle_d_acheminement": "SAZERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04531579946, + 46.4467096197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae5b811cedc35bbed1f31f8483e8ce4a88c4e71b", + "fields": { + "code_commune_insee": "36218", + "nom_de_la_commune": "SOUGE", + "code_postal": "36500", + "coordonnees_gps": [ + 46.9659142337, + 1.48046775044 + ], + "libelle_d_acheminement": "SOUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48046775044, + 46.9659142337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19f25675d6e0d9090d4954ef7e9aecfcc125ecc7", + "fields": { + "code_commune_insee": "36221", + "nom_de_la_commune": "THEVET ST JULIEN", + "code_postal": "36400", + "coordonnees_gps": [ + 46.6344948494, + 2.06994108021 + ], + "libelle_d_acheminement": "THEVET ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06994108021, + 46.6344948494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4380df905dac2008fc88a01d6631913e9a32867a", + "fields": { + "code_commune_insee": "36231", + "nom_de_la_commune": "VELLES", + "code_postal": "36330", + "coordonnees_gps": [ + 46.69976205, + 1.63686768845 + ], + "libelle_d_acheminement": "VELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63686768845, + 46.69976205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d9adf32b53704df59e5008287b6ca711c9ac146", + "fields": { + "code_commune_insee": "36235", + "nom_de_la_commune": "VEUIL", + "code_postal": "36600", + "coordonnees_gps": [ + 47.1325742708, + 1.50980110531 + ], + "libelle_d_acheminement": "VEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50980110531, + 47.1325742708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed2945f548060f38d465217a90f077132ef2d5cf", + "fields": { + "code_commune_insee": "36240", + "nom_de_la_commune": "VIJON", + "code_postal": "36160", + "coordonnees_gps": [ + 46.4364401153, + 2.12180186479 + ], + "libelle_d_acheminement": "VIJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12180186479, + 46.4364401153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bea78e138772a5a2c44e8045eb036973bfdcb1f7", + "fields": { + "code_commune_insee": "36243", + "nom_de_la_commune": "VILLEGOUIN", + "code_postal": "36500", + "coordonnees_gps": [ + 46.9735557689, + 1.35589306474 + ], + "libelle_d_acheminement": "VILLEGOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35589306474, + 46.9735557689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1d44b99b137e1b2c1f9914c3a66a35b879c6870", + "fields": { + "ligne_5": "FAVEROLLES EN BERRY", + "code_commune_insee": "36244", + "libelle_d_acheminement": "VILLENTROIS FAVEROLLES EN BERRY", + "code_postal": "36360", + "nom_de_la_commune": "VILLENTROIS FAVEROLLES EN BERRY", + "coordonnees_gps": [ + 47.1877948714, + 1.45972969397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45972969397, + 47.1877948714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17d2d973ad2fe576dd2139a58daffa0c49efa913", + "fields": { + "code_commune_insee": "36247", + "nom_de_la_commune": "VINEUIL", + "code_postal": "36110", + "coordonnees_gps": [ + 46.9074666618, + 1.65377312715 + ], + "libelle_d_acheminement": "VINEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65377312715, + 46.9074666618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a66879c00ac1547f55f6615ca991536f6c1a6d14", + "fields": { + "code_commune_insee": "37002", + "nom_de_la_commune": "AMBILLOU", + "code_postal": "37340", + "coordonnees_gps": [ + 47.4520562833, + 0.446595189261 + ], + "libelle_d_acheminement": "AMBILLOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.446595189261, + 47.4520562833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "938d412de646a102372523070f12b5c79f7da76d", + "fields": { + "code_commune_insee": "37028", + "nom_de_la_commune": "BOSSAY SUR CLAISE", + "code_postal": "37290", + "coordonnees_gps": [ + 46.8247426459, + 0.975476397199 + ], + "libelle_d_acheminement": "BOSSAY SUR CLAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.975476397199, + 46.8247426459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f22562c48c35a1d4d87a458a8bd943920ff8ee65", + "fields": { + "code_commune_insee": "37029", + "nom_de_la_commune": "BOSSEE", + "code_postal": "37240", + "coordonnees_gps": [ + 47.1125871267, + 0.733241640031 + ], + "libelle_d_acheminement": "BOSSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.733241640031, + 47.1125871267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00c79845e1e2a0861b4c246b48bf84c1eee3ba02", + "fields": { + "code_commune_insee": "37030", + "nom_de_la_commune": "LE BOULAY", + "code_postal": "37110", + "coordonnees_gps": [ + 47.5947862133, + 0.844355830752 + ], + "libelle_d_acheminement": "LE BOULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.844355830752, + 47.5947862133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ef3f6f72ce0a476e4eea46f5e6a413577b2d97f", + "fields": { + "code_commune_insee": "37032", + "nom_de_la_commune": "BOURNAN", + "code_postal": "37240", + "coordonnees_gps": [ + 47.0687895406, + 0.7310286673 + ], + "libelle_d_acheminement": "BOURNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7310286673, + 47.0687895406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dee0be641206641fd64d701b64bb1c4cdd22f22", + "fields": { + "code_commune_insee": "37038", + "nom_de_la_commune": "BREHEMONT", + "code_postal": "37130", + "coordonnees_gps": [ + 47.2893596195, + 0.361536652473 + ], + "libelle_d_acheminement": "BREHEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.361536652473, + 47.2893596195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5aa61bf2f8d1bcca73a36a0a714a348da3e1f76a", + "fields": { + "code_commune_insee": "37040", + "nom_de_la_commune": "BRIZAY", + "code_postal": "37220", + "coordonnees_gps": [ + 47.0963197931, + 0.38766475605 + ], + "libelle_d_acheminement": "BRIZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38766475605, + 47.0963197931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "198af975b123e89311d0142a529bef6a4d47134c", + "fields": { + "code_commune_insee": "37047", + "nom_de_la_commune": "CERELLES", + "code_postal": "37390", + "coordonnees_gps": [ + 47.5032297847, + 0.684878284494 + ], + "libelle_d_acheminement": "CERELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.684878284494, + 47.5032297847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce7dbb5dcf2a00839737c9a46083fd1ad43b4ccd", + "fields": { + "code_commune_insee": "37049", + "nom_de_la_commune": "CHAMBOURG SUR INDRE", + "code_postal": "37310", + "coordonnees_gps": [ + 47.1721202579, + 0.968767881944 + ], + "libelle_d_acheminement": "CHAMBOURG SUR INDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.968767881944, + 47.1721202579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19ca128f81c8aaa48a265a50e8ff0f9a38b1e9fb", + "fields": { + "code_commune_insee": "37050", + "nom_de_la_commune": "CHAMBRAY LES TOURS", + "code_postal": "37170", + "coordonnees_gps": [ + 47.3312652065, + 0.716803612336 + ], + "libelle_d_acheminement": "CHAMBRAY LES TOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.716803612336, + 47.3312652065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92a3e3055bf0dbee11031118e0f4accb069d9f5c", + "fields": { + "code_commune_insee": "37057", + "nom_de_la_commune": "LA CHAPELLE BLANCHE ST MARTIN", + "code_postal": "37240", + "coordonnees_gps": [ + 47.0841623177, + 0.784624904578 + ], + "libelle_d_acheminement": "LA CHAPELLE BLANCHE ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.784624904578, + 47.0841623177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cac1dd791893d8a72e46a4bee0ba385ab46235bb", + "fields": { + "code_commune_insee": "37058", + "nom_de_la_commune": "LA CHAPELLE SUR LOIRE", + "code_postal": "37140", + "coordonnees_gps": [ + 47.2509587327, + 0.215361451048 + ], + "libelle_d_acheminement": "LA CHAPELLE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.215361451048, + 47.2509587327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c7dc89d683b04bf2d4023a4142c41afd626b71a", + "fields": { + "code_commune_insee": "37063", + "nom_de_la_commune": "CHATEAU RENAULT", + "code_postal": "37110", + "coordonnees_gps": [ + 47.592456846, + 0.909725910608 + ], + "libelle_d_acheminement": "CHATEAU RENAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.909725910608, + 47.592456846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44eb2233ae4c7e780fb227f34b8d7205d4640f11", + "fields": { + "code_commune_insee": "37066", + "nom_de_la_commune": "CHEDIGNY", + "code_postal": "37310", + "coordonnees_gps": [ + 47.2225259343, + 0.991792696034 + ], + "libelle_d_acheminement": "CHEDIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.991792696034, + 47.2225259343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aec577480688bc64edda0e01210240039c3f50d9", + "fields": { + "code_commune_insee": "37067", + "nom_de_la_commune": "CHEILLE", + "code_postal": "37190", + "coordonnees_gps": [ + 47.2404359595, + 0.42271429375 + ], + "libelle_d_acheminement": "CHEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.42271429375, + 47.2404359595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2323470eb439ba63d525517286d595f2f9a10a5", + "fields": { + "code_commune_insee": "37070", + "nom_de_la_commune": "CHENONCEAUX", + "code_postal": "37150", + "coordonnees_gps": [ + 47.3396827189, + 1.07035126268 + ], + "libelle_d_acheminement": "CHENONCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07035126268, + 47.3396827189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b90743064d1dc3e163c60d92df28109aee10063", + "fields": { + "code_commune_insee": "37073", + "nom_de_la_commune": "CHISSEAUX", + "code_postal": "37150", + "coordonnees_gps": [ + 47.3494308209, + 1.09603138908 + ], + "libelle_d_acheminement": "CHISSEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09603138908, + 47.3494308209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41c41080eb9150ff86ac6cc7ef6131784f89bba6", + "fields": { + "code_commune_insee": "37079", + "nom_de_la_commune": "CIVRAY DE TOURAINE", + "code_postal": "37150", + "coordonnees_gps": [ + 47.3394574162, + 1.04082548728 + ], + "libelle_d_acheminement": "CIVRAY DE TOURAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04082548728, + 47.3394574162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5248486a2b489f8341768588096ad69de73a370", + "fields": { + "code_commune_insee": "37081", + "nom_de_la_commune": "CLERE LES PINS", + "code_postal": "37340", + "coordonnees_gps": [ + 47.4456343529, + 0.37899902505 + ], + "libelle_d_acheminement": "CLERE LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37899902505, + 47.4456343529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9236f837e4b2e1b86fb86ac68a60764a3cb14384", + "fields": { + "code_commune_insee": "37082", + "nom_de_la_commune": "CONTINVOIR", + "code_postal": "37340", + "coordonnees_gps": [ + 47.3679713688, + 0.235916489802 + ], + "libelle_d_acheminement": "CONTINVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.235916489802, + 47.3679713688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaba447e89e9242047491a9941c3ff699bd2e028", + "fields": { + "code_commune_insee": "37087", + "nom_de_la_commune": "COURCOUE", + "code_postal": "37120", + "coordonnees_gps": [ + 47.0300727285, + 0.399538654652 + ], + "libelle_d_acheminement": "COURCOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.399538654652, + 47.0300727285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5a35dbcc69922b977d3e54065e0c3ab985a347b", + "fields": { + "code_commune_insee": "37088", + "nom_de_la_commune": "COUZIERS", + "code_postal": "37500", + "coordonnees_gps": [ + 47.1679298412, + 0.0772163392705 + ], + "libelle_d_acheminement": "COUZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0772163392705, + 47.1679298412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "354b4a3552dedac5c9a12314e332e7772aa53ea1", + "fields": { + "code_commune_insee": "37090", + "nom_de_la_commune": "CRISSAY SUR MANSE", + "code_postal": "37220", + "coordonnees_gps": [ + 47.1665198004, + 0.494306101792 + ], + "libelle_d_acheminement": "CRISSAY SUR MANSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.494306101792, + 47.1665198004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eade18c9ca206247988446d5aa853afb12f96283", + "fields": { + "code_commune_insee": "37093", + "nom_de_la_commune": "CROUZILLES", + "code_postal": "37220", + "coordonnees_gps": [ + 47.1310109532, + 0.469231881313 + ], + "libelle_d_acheminement": "CROUZILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.469231881313, + 47.1310109532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3388c1fc02c36a314df47a3bfd5ee561aa1ad2a", + "fields": { + "code_commune_insee": "37104", + "nom_de_la_commune": "ESVRES", + "code_postal": "37320", + "coordonnees_gps": [ + 47.2932820552, + 0.79068276272 + ], + "libelle_d_acheminement": "ESVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79068276272, + 47.2932820552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "977f8623cf1a1f11d4258ae9bcbec3b3cb56391b", + "fields": { + "code_commune_insee": "37111", + "nom_de_la_commune": "GENILLE", + "code_postal": "37460", + "coordonnees_gps": [ + 47.1845516654, + 1.10886263698 + ], + "libelle_d_acheminement": "GENILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10886263698, + 47.1845516654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6eef1995019ab2c257dfb89e4c496a3c65bac86a", + "fields": { + "code_commune_insee": "37114", + "nom_de_la_commune": "LA GUERCHE", + "code_postal": "37350", + "coordonnees_gps": [ + 46.893743302, + 0.725400888064 + ], + "libelle_d_acheminement": "LA GUERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.725400888064, + 46.893743302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e325ca182769f4a85ba273f14b2b17d360ba8ff", + "fields": { + "code_commune_insee": "37121", + "nom_de_la_commune": "JAULNAY", + "code_postal": "37120", + "coordonnees_gps": [ + 46.9546212593, + 0.422081006076 + ], + "libelle_d_acheminement": "JAULNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.422081006076, + 46.9546212593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d62b5141d406e012933667b5c8e815e35614760", + "fields": { + "code_commune_insee": "37122", + "nom_de_la_commune": "JOUE LES TOURS", + "code_postal": "37300", + "coordonnees_gps": [ + 47.333556074, + 0.654546300116 + ], + "libelle_d_acheminement": "JOUE LES TOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.654546300116, + 47.333556074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2356452053dbba75db0efe8e30fe496399bb105", + "fields": { + "code_commune_insee": "37123", + "nom_de_la_commune": "LANGEAIS", + "code_postal": "37130", + "coordonnees_gps": [ + 47.3498571755, + 0.367495526989 + ], + "libelle_d_acheminement": "LANGEAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.367495526989, + 47.3498571755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90cc48475ea1f6140c85a0560431a8f1ddfb8ef8", + "fields": { + "code_commune_insee": "37127", + "nom_de_la_commune": "LE LIEGE", + "code_postal": "37460", + "coordonnees_gps": [ + 47.2287701789, + 1.10899354005 + ], + "libelle_d_acheminement": "LE LIEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10899354005, + 47.2287701789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a9c2ce9ca9f25da49076cb112904e7af323137c", + "fields": { + "code_commune_insee": "37134", + "nom_de_la_commune": "LOUANS", + "code_postal": "37320", + "coordonnees_gps": [ + 47.1794670914, + 0.739652182346 + ], + "libelle_d_acheminement": "LOUANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.739652182346, + 47.1794670914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac7cfe5adbb818bd52f9cc035df9fb64636e9988", + "fields": { + "code_commune_insee": "37140", + "nom_de_la_commune": "LUZE", + "code_postal": "37120", + "coordonnees_gps": [ + 47.015289486, + 0.468618290088 + ], + "libelle_d_acheminement": "LUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.468618290088, + 47.015289486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f69543f930f0ece55215f1cfd388e10abec3c69", + "fields": { + "code_commune_insee": "37155", + "nom_de_la_commune": "MONTHODON", + "code_postal": "37110", + "coordonnees_gps": [ + 47.6430916085, + 0.82248361857 + ], + "libelle_d_acheminement": "MONTHODON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82248361857, + 47.6430916085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb536dc017644292584da7cf3ab3b54ee037c930", + "fields": { + "code_commune_insee": "37159", + "nom_de_la_commune": "MONTS", + "code_postal": "37260", + "coordonnees_gps": [ + 47.2779892588, + 0.64548356483 + ], + "libelle_d_acheminement": "MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64548356483, + 47.2779892588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f84b5f921bb73e8602d1267381bb9eb0f1084659", + "fields": { + "code_commune_insee": "37160", + "nom_de_la_commune": "MORAND", + "code_postal": "37110", + "coordonnees_gps": [ + 47.5634515197, + 1.0077505003 + ], + "libelle_d_acheminement": "MORAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0077505003, + 47.5634515197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaec357f9aef8531b31ae2ce9310e8d5004c56f9", + "fields": { + "code_commune_insee": "37166", + "nom_de_la_commune": "NEUILLE LE LIERRE", + "code_postal": "37380", + "coordonnees_gps": [ + 47.5114791555, + 0.916388700015 + ], + "libelle_d_acheminement": "NEUILLE LE LIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.916388700015, + 47.5114791555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04a3ffc1943dea83ba3af836daa076d23053491b", + "fields": { + "code_commune_insee": "37167", + "nom_de_la_commune": "NEUILLE PONT PIERRE", + "code_postal": "37360", + "coordonnees_gps": [ + 47.5504384264, + 0.550024622575 + ], + "libelle_d_acheminement": "NEUILLE PONT PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.550024622575, + 47.5504384264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a99972ae9218f6ec74c425710a90768c118fc58", + "fields": { + "code_commune_insee": "37182", + "nom_de_la_commune": "PERNAY", + "code_postal": "37230", + "coordonnees_gps": [ + 47.4537949892, + 0.518019971725 + ], + "libelle_d_acheminement": "PERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.518019971725, + 47.4537949892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b5097f3a7ffb40748b596115ba2e3818ee621ae", + "fields": { + "code_commune_insee": "37186", + "nom_de_la_commune": "PONT DE RUAN", + "code_postal": "37260", + "coordonnees_gps": [ + 47.2649227442, + 0.564294280514 + ], + "libelle_d_acheminement": "PONT DE RUAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.564294280514, + 47.2649227442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20011031d8a83105c705090ab36153e6d0b1d99a", + "fields": { + "code_commune_insee": "37188", + "nom_de_la_commune": "POUZAY", + "code_postal": "37800", + "coordonnees_gps": [ + 47.0824835833, + 0.546990290456 + ], + "libelle_d_acheminement": "POUZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.546990290456, + 47.0824835833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f7b8b4a7bd42ca0a5898a23780873ca384fa24b", + "fields": { + "code_commune_insee": "37193", + "nom_de_la_commune": "RESTIGNE", + "code_postal": "37140", + "coordonnees_gps": [ + 47.2867984367, + 0.23554247776 + ], + "libelle_d_acheminement": "RESTIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23554247776, + 47.2867984367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f573ec9e61335ae96efb090e99909bd62af21ad", + "fields": { + "code_commune_insee": "37203", + "nom_de_la_commune": "ROCHECORBON", + "code_postal": "37210", + "coordonnees_gps": [ + 47.4295541891, + 0.760919667695 + ], + "libelle_d_acheminement": "ROCHECORBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.760919667695, + 47.4295541891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b19403d532572e7728b614151ee91098044cb35b", + "fields": { + "code_commune_insee": "37211", + "nom_de_la_commune": "ST BRANCHS", + "code_postal": "37320", + "coordonnees_gps": [ + 47.224480617, + 0.75823839932 + ], + "libelle_d_acheminement": "ST BRANCHS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75823839932, + 47.224480617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4aa0a50d5b07091a52f98ed95e7dfab1ea20b32", + "fields": { + "code_commune_insee": "37221", + "nom_de_la_commune": "ST HIPPOLYTE", + "code_postal": "37600", + "coordonnees_gps": [ + 47.0575770677, + 1.13256849166 + ], + "libelle_d_acheminement": "ST HIPPOLYTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13256849166, + 47.0575770677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4371de8b7ffacce428a3639154c6956542465b28", + "fields": { + "code_commune_insee": "37224", + "nom_de_la_commune": "ST LAURENT EN GATINES", + "code_postal": "37380", + "coordonnees_gps": [ + 47.5850036242, + 0.770610827293 + ], + "libelle_d_acheminement": "ST LAURENT EN GATINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.770610827293, + 47.5850036242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5a13728b7f0b2a6942723802b970572ba3a3031", + "fields": { + "code_commune_insee": "37225", + "nom_de_la_commune": "ST MARTIN LE BEAU", + "code_postal": "37270", + "coordonnees_gps": [ + 47.3613543999, + 0.909919604886 + ], + "libelle_d_acheminement": "ST MARTIN LE BEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.909919604886, + 47.3613543999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b25c4df94e22114a85cb1c2d8c2976dd46500a8a", + "fields": { + "code_commune_insee": "37228", + "nom_de_la_commune": "ST NICOLAS DE BOURGUEIL", + "code_postal": "37140", + "coordonnees_gps": [ + 47.2962592586, + 0.130334613981 + ], + "libelle_d_acheminement": "ST NICOLAS DE BOURGUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.130334613981, + 47.2962592586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efb185259e2e1a293405a5067cb102e62e09b22c", + "fields": { + "code_commune_insee": "37229", + "nom_de_la_commune": "ST NICOLAS DES MOTETS", + "code_postal": "37110", + "coordonnees_gps": [ + 47.5842753802, + 1.0342950178 + ], + "libelle_d_acheminement": "ST NICOLAS DES MOTETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0342950178, + 47.5842753802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "004be1b4bd22f347532b07ae763b0f342730e630", + "fields": { + "ligne_5": "ST PATRICE", + "code_commune_insee": "37232", + "libelle_d_acheminement": "COTEAUX SUR LOIRE", + "code_postal": "37130", + "nom_de_la_commune": "COTEAUX SUR LOIRE", + "coordonnees_gps": [ + 47.2909121663, + 0.301054429899 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301054429899, + 47.2909121663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd00fd59ce2654b10ae04332f41c5524c5420ca6", + "fields": { + "ligne_5": "INGRANDES DE TOURAINE", + "code_commune_insee": "37232", + "libelle_d_acheminement": "COTEAUX SUR LOIRE", + "code_postal": "37140", + "nom_de_la_commune": "COTEAUX SUR LOIRE", + "coordonnees_gps": [ + 47.2909121663, + 0.301054429899 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301054429899, + 47.2909121663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4d6217346df677c60da5f6e9e7c2b3987cd2daa", + "fields": { + "code_commune_insee": "37236", + "nom_de_la_commune": "ST REGLE", + "code_postal": "37530", + "coordonnees_gps": [ + 47.4099495964, + 1.04070768948 + ], + "libelle_d_acheminement": "ST REGLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04070768948, + 47.4099495964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01259c40ef08027aca3bc76f2c1d62dbfd82558f", + "fields": { + "ligne_5": "ST BAULD", + "code_commune_insee": "37254", + "libelle_d_acheminement": "TAUXIGNY ST BAULD", + "code_postal": "37310", + "nom_de_la_commune": "TAUXIGNY ST BAULD", + "coordonnees_gps": [ + 47.2077298094, + 0.829508341853 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.829508341853, + 47.2077298094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0527bc6d1ab8d054d6818087c77349c159db5208", + "fields": { + "code_commune_insee": "37257", + "nom_de_la_commune": "THILOUZE", + "code_postal": "37260", + "coordonnees_gps": [ + 47.2196901123, + 0.601021340969 + ], + "libelle_d_acheminement": "THILOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.601021340969, + 47.2196901123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea3ce657bd4c433583dfe52ecbab94237389fa71", + "fields": { + "code_commune_insee": "37260", + "nom_de_la_commune": "LA TOUR ST GELIN", + "code_postal": "37120", + "coordonnees_gps": [ + 47.0616135081, + 0.395504647146 + ], + "libelle_d_acheminement": "LA TOUR ST GELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.395504647146, + 47.0616135081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b316989d3ee6fc948ac7e77ab163bcfcbc088d6", + "fields": { + "code_commune_insee": "37268", + "nom_de_la_commune": "VERNEUIL LE CHATEAU", + "code_postal": "37120", + "coordonnees_gps": [ + 47.0424242806, + 0.457350796118 + ], + "libelle_d_acheminement": "VERNEUIL LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.457350796118, + 47.0424242806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5973254d32f6835075fa3857e09c85733b37fc28", + "fields": { + "code_commune_insee": "37272", + "nom_de_la_commune": "VILLANDRY", + "code_postal": "37510", + "coordonnees_gps": [ + 47.331363549, + 0.500326807176 + ], + "libelle_d_acheminement": "VILLANDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.500326807176, + 47.331363549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26f8ad0081b8ec23bac7eea7c11bad42773f753a", + "fields": { + "code_commune_insee": "37273", + "nom_de_la_commune": "LA VILLE AUX DAMES", + "code_postal": "37700", + "coordonnees_gps": [ + 47.3918448824, + 0.77454986041 + ], + "libelle_d_acheminement": "LA VILLE AUX DAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77454986041, + 47.3918448824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "821af71d916e2b58843de0c1ed60a2b8ab5d15f9", + "fields": { + "code_commune_insee": "37275", + "nom_de_la_commune": "VILLEDOMAIN", + "code_postal": "37460", + "coordonnees_gps": [ + 47.0438938302, + 1.25395399014 + ], + "libelle_d_acheminement": "VILLEDOMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25395399014, + 47.0438938302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d63a7753b0b650180b546c66dccf50d3ae4ee9a", + "fields": { + "code_commune_insee": "37281", + "nom_de_la_commune": "VOUVRAY", + "code_postal": "37210", + "coordonnees_gps": [ + 47.4270674878, + 0.803667208286 + ], + "libelle_d_acheminement": "VOUVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.803667208286, + 47.4270674878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "512d2139762e92956c646eec39d84d1b393efca6", + "fields": { + "ligne_5": "LA BATIE DIVISIN", + "code_commune_insee": "38001", + "libelle_d_acheminement": "LES ABRETS EN DAUPHINE", + "code_postal": "38490", + "nom_de_la_commune": "LES ABRETS EN DAUPHINE", + "coordonnees_gps": [ + 45.5418940561, + 5.59342426222 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59342426222, + 45.5418940561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7670cade5ee30757834f0399b4cd385ca222e9a5", + "fields": { + "ligne_5": "LES ABRETS", + "code_commune_insee": "38001", + "libelle_d_acheminement": "LES ABRETS EN DAUPHINE", + "code_postal": "38490", + "nom_de_la_commune": "LES ABRETS EN DAUPHINE", + "coordonnees_gps": [ + 45.5418940561, + 5.59342426222 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59342426222, + 45.5418940561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c6be8d66b522d02d35ad13b3b99bbd42703a3ea", + "fields": { + "code_commune_insee": "38002", + "nom_de_la_commune": "LES ADRETS", + "code_postal": "38190", + "coordonnees_gps": [ + 45.2586070645, + 5.99155979387 + ], + "libelle_d_acheminement": "LES ADRETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99155979387, + 45.2586070645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd731564e9e3b4444781ad714ea712f5db6b8b84", + "fields": { + "ligne_5": "PRAPOUTEL", + "code_commune_insee": "38002", + "libelle_d_acheminement": "LES ADRETS", + "code_postal": "38190", + "nom_de_la_commune": "LES ADRETS", + "coordonnees_gps": [ + 45.2586070645, + 5.99155979387 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99155979387, + 45.2586070645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86b07fc25eac036ba04ce2bfbeddafe804fd1e79", + "fields": { + "code_commune_insee": "38004", + "nom_de_la_commune": "L ALBENC", + "code_postal": "38470", + "coordonnees_gps": [ + 45.2189306254, + 5.45835784112 + ], + "libelle_d_acheminement": "L ALBENC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45835784112, + 45.2189306254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "356beab0a6ad24bc21c0c230d9f428014a65213c", + "fields": { + "code_commune_insee": "38008", + "nom_de_la_commune": "AMBEL", + "code_postal": "38970", + "coordonnees_gps": [ + 44.7995432334, + 5.93325975329 + ], + "libelle_d_acheminement": "AMBEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93325975329, + 44.7995432334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a233b51bcc96c1ec7ee171a3f6889d325a1bbb35", + "fields": { + "code_commune_insee": "38009", + "nom_de_la_commune": "ANJOU", + "code_postal": "38150", + "coordonnees_gps": [ + 45.3485883521, + 4.88275176327 + ], + "libelle_d_acheminement": "ANJOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88275176327, + 45.3485883521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a379b8adf080f2ed0df1f5973559b426d1f2a1d", + "fields": { + "code_commune_insee": "38010", + "nom_de_la_commune": "ANNOISIN CHATELANS", + "code_postal": "38460", + "coordonnees_gps": [ + 45.7607896686, + 5.29198081726 + ], + "libelle_d_acheminement": "ANNOISIN CHATELANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29198081726, + 45.7607896686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dc14c9fc2e4fbffb1d7af23c2bed41e434e725d", + "fields": { + "ligne_5": "VEYRINS THUELLIN", + "code_commune_insee": "38022", + "libelle_d_acheminement": "LES AVENIERES VEYRINS THUELLIN", + "code_postal": "38630", + "nom_de_la_commune": "LES AVENIERES VEYRINS THUELLIN", + "coordonnees_gps": [ + 45.6426437379, + 5.56958624007 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56958624007, + 45.6426437379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fc94ef424e0248140569cb8d48fb080b9c69700", + "fields": { + "code_commune_insee": "38027", + "nom_de_la_commune": "BARRAUX", + "code_postal": "38530", + "coordonnees_gps": [ + 45.4360335449, + 5.98047363076 + ], + "libelle_d_acheminement": "BARRAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98047363076, + 45.4360335449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23771ceed9ec8d0d4c2d298ca0d884a28d5a806b", + "fields": { + "code_commune_insee": "38029", + "nom_de_la_commune": "LA BATIE MONTGASCON", + "code_postal": "38110", + "coordonnees_gps": [ + 45.575480567, + 5.54140939412 + ], + "libelle_d_acheminement": "LA BATIE MONTGASCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54140939412, + 45.575480567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3698377ad440209715c1fffed8521ad07d33b6f", + "fields": { + "code_commune_insee": "38030", + "nom_de_la_commune": "BEAUCROISSANT", + "code_postal": "38140", + "coordonnees_gps": [ + 45.3427876459, + 5.46749723438 + ], + "libelle_d_acheminement": "BEAUCROISSANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46749723438, + 45.3427876459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f9d2186572e5be7b5d38f219a68ec6ab7ce8b57", + "fields": { + "code_commune_insee": "38036", + "nom_de_la_commune": "BEAUVOIR EN ROYANS", + "code_postal": "38160", + "coordonnees_gps": [ + 45.1173419609, + 5.35007651511 + ], + "libelle_d_acheminement": "BEAUVOIR EN ROYANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35007651511, + 45.1173419609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36c3cd71d2dcf3413cff7d97999516c71739df0c", + "fields": { + "code_commune_insee": "38038", + "nom_de_la_commune": "BELMONT", + "code_postal": "38690", + "coordonnees_gps": [ + 45.4741428026, + 5.36378238823 + ], + "libelle_d_acheminement": "BELMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36378238823, + 45.4741428026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f9f0ffe55907b12c96a269b6d5975020655f082", + "fields": { + "code_commune_insee": "38040", + "nom_de_la_commune": "BESSE", + "code_postal": "38142", + "coordonnees_gps": [ + 45.1044444895, + 6.20876758912 + ], + "libelle_d_acheminement": "BESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20876758912, + 45.1044444895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "354910a59f989f3fee396cca8b43da92502ec0c3", + "fields": { + "code_commune_insee": "38042", + "nom_de_la_commune": "BEVENAIS", + "code_postal": "38690", + "coordonnees_gps": [ + 45.3935194103, + 5.39259917103 + ], + "libelle_d_acheminement": "BEVENAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39259917103, + 45.3935194103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9ffda8af8ea03c74e05d87d82b31b600f5d2398", + "fields": { + "code_commune_insee": "38046", + "nom_de_la_commune": "BIZONNES", + "code_postal": "38690", + "coordonnees_gps": [ + 45.4468823262, + 5.37901659647 + ], + "libelle_d_acheminement": "BIZONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37901659647, + 45.4468823262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bddadd52a3aa89257349e6d993a1b909c570f85e", + "fields": { + "code_commune_insee": "38058", + "nom_de_la_commune": "BREZINS", + "code_postal": "38590", + "coordonnees_gps": [ + 45.3455407295, + 5.30808563402 + ], + "libelle_d_acheminement": "BREZINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30808563402, + 45.3455407295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90625aa49f810a0feeba094b4e9c3369725254f0", + "fields": { + "code_commune_insee": "38067", + "nom_de_la_commune": "CHAMAGNIEU", + "code_postal": "38460", + "coordonnees_gps": [ + 45.6881616804, + 5.16661541737 + ], + "libelle_d_acheminement": "CHAMAGNIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16661541737, + 45.6881616804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf4c909cbcb72aac9c0e746d69447f77ea58e82c", + "fields": { + "code_commune_insee": "38075", + "nom_de_la_commune": "CHAPAREILLAN", + "code_postal": "38530", + "coordonnees_gps": [ + 45.461591172, + 5.95800759236 + ], + "libelle_d_acheminement": "CHAPAREILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95800759236, + 45.461591172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5207747cc358d266a419866bd8dce98abe1bdcce", + "fields": { + "code_commune_insee": "38080", + "nom_de_la_commune": "CHARANCIEU", + "code_postal": "38490", + "coordonnees_gps": [ + 45.5205135437, + 5.57906529008 + ], + "libelle_d_acheminement": "CHARANCIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57906529008, + 45.5205135437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c810954e49310e996f5ab60f6c5514abf87debb6", + "fields": { + "code_commune_insee": "38081", + "nom_de_la_commune": "CHARANTONNAY", + "code_postal": "38790", + "coordonnees_gps": [ + 45.5380647102, + 5.11609065065 + ], + "libelle_d_acheminement": "CHARANTONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11609065065, + 45.5380647102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a369df23c5301259174bacacd0d5d50dac748577", + "fields": { + "code_commune_insee": "38086", + "nom_de_la_commune": "CHASSELAY", + "code_postal": "38470", + "coordonnees_gps": [ + 45.2605536513, + 5.34184461228 + ], + "libelle_d_acheminement": "CHASSELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34184461228, + 45.2605536513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d72480e42a3e25bd7f13619695d9b7058124ec2", + "fields": { + "code_commune_insee": "38101", + "nom_de_la_commune": "CHEYSSIEU", + "code_postal": "38550", + "coordonnees_gps": [ + 45.4259695237, + 4.8429128403 + ], + "libelle_d_acheminement": "CHEYSSIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8429128403, + 45.4259695237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39c86e143fdfaeb8552e3a9781a18d62228ceeb0", + "fields": { + "code_commune_insee": "38105", + "nom_de_la_commune": "CHIRENS", + "code_postal": "38850", + "coordonnees_gps": [ + 45.4166318565, + 5.556774983 + ], + "libelle_d_acheminement": "CHIRENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.556774983, + 45.4166318565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "633407eb6a95e11e6c24a0161beb6bf6f7d9049e", + "fields": { + "code_commune_insee": "38109", + "nom_de_la_commune": "CHOZEAU", + "code_postal": "38460", + "coordonnees_gps": [ + 45.6995373751, + 5.20945121769 + ], + "libelle_d_acheminement": "CHOZEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20945121769, + 45.6995373751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f98aa3d4a75b6d4811ee3b7a535b83771207a940", + "fields": { + "code_commune_insee": "38117", + "nom_de_la_commune": "COGNIN LES GORGES", + "code_postal": "38470", + "coordonnees_gps": [ + 45.1707745385, + 5.41758874544 + ], + "libelle_d_acheminement": "COGNIN LES GORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41758874544, + 45.1707745385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bc74da13408afd05554c204edfd7a2026c791e2", + "fields": { + "code_commune_insee": "38131", + "nom_de_la_commune": "LES COTES D AREY", + "code_postal": "38138", + "coordonnees_gps": [ + 45.4567699874, + 4.87918171813 + ], + "libelle_d_acheminement": "LES COTES D AREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87918171813, + 45.4567699874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "309ca4ae82fc4f93849bf02de301b22a1d574261", + "fields": { + "code_commune_insee": "38133", + "nom_de_la_commune": "COUBLEVIE", + "code_postal": "38500", + "coordonnees_gps": [ + 45.3567707495, + 5.61793464006 + ], + "libelle_d_acheminement": "COUBLEVIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61793464006, + 45.3567707495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a279bb301723d7dd020f7b5d62b67541cdd14e0", + "fields": { + "code_commune_insee": "38148", + "nom_de_la_commune": "DOLOMIEU", + "code_postal": "38110", + "coordonnees_gps": [ + 45.6153086109, + 5.48684166259 + ], + "libelle_d_acheminement": "DOLOMIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48684166259, + 45.6153086109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b29cbb1632858cb0613dbde2f52d4e9a550be57", + "fields": { + "code_commune_insee": "38150", + "nom_de_la_commune": "DOMENE", + "code_postal": "38420", + "coordonnees_gps": [ + 45.2040386681, + 5.83829604568 + ], + "libelle_d_acheminement": "DOMENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83829604568, + 45.2040386681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c32fadefadd96d85628e6a6a7a8762401b6880ae", + "fields": { + "code_commune_insee": "38155", + "nom_de_la_commune": "ENTRE DEUX GUIERS", + "code_postal": "38380", + "coordonnees_gps": [ + 45.4156254861, + 5.75636251084 + ], + "libelle_d_acheminement": "ENTRE DEUX GUIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75636251084, + 45.4156254861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c7139cf82aa5a8b0b90194de3afd8a7a110a12a", + "fields": { + "code_commune_insee": "38156", + "nom_de_la_commune": "LES EPARRES", + "code_postal": "38300", + "coordonnees_gps": [ + 45.5380944764, + 5.29246902351 + ], + "libelle_d_acheminement": "LES EPARRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29246902351, + 45.5380944764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99b21f75829deacd54d0e3610c75975f11c809d7", + "fields": { + "code_commune_insee": "38158", + "nom_de_la_commune": "EYBENS", + "code_postal": "38320", + "coordonnees_gps": [ + 45.1518093288, + 5.74847494189 + ], + "libelle_d_acheminement": "EYBENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74847494189, + 45.1518093288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a05cb42d9bbe8d3a1502f289c1097485f62a9f1b", + "fields": { + "code_commune_insee": "38161", + "nom_de_la_commune": "FARAMANS", + "code_postal": "38260", + "coordonnees_gps": [ + 45.3879958398, + 5.15388883556 + ], + "libelle_d_acheminement": "FARAMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15388883556, + 45.3879958398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4bd7f6d43cd46085e0f4ee6a9bc3a1722e4b01c", + "fields": { + "code_commune_insee": "38162", + "nom_de_la_commune": "FAVERGES DE LA TOUR", + "code_postal": "38110", + "coordonnees_gps": [ + 45.5942581619, + 5.51385290349 + ], + "libelle_d_acheminement": "FAVERGES DE LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51385290349, + 45.5942581619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49fb863e99c406bdc9fb815837e6fbf05dcf38c8", + "fields": { + "code_commune_insee": "38166", + "nom_de_la_commune": "LA FLACHERE", + "code_postal": "38530", + "coordonnees_gps": [ + 45.3994779329, + 5.96151992776 + ], + "libelle_d_acheminement": "LA FLACHERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96151992776, + 45.3994779329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6561640e10845abb696e3e2869b868d39dbd415", + "fields": { + "code_commune_insee": "38167", + "nom_de_la_commune": "FLACHERES", + "code_postal": "38690", + "coordonnees_gps": [ + 45.4696097996, + 5.31533464507 + ], + "libelle_d_acheminement": "FLACHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31533464507, + 45.4696097996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c695e136d4dfd88d2b2406407c5dfb668e336f4e", + "fields": { + "code_commune_insee": "38172", + "nom_de_la_commune": "FOUR", + "code_postal": "38080", + "coordonnees_gps": [ + 45.5768084385, + 5.19447045153 + ], + "libelle_d_acheminement": "FOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19447045153, + 45.5768084385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8474b4e118a96d091bc6a12a791c77f7d286c47", + "fields": { + "code_commune_insee": "38183", + "nom_de_la_commune": "GRANIEU", + "code_postal": "38490", + "coordonnees_gps": [ + 45.6003801471, + 5.58926385249 + ], + "libelle_d_acheminement": "GRANIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58926385249, + 45.6003801471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a60e66b3b245cdee84bdbec679a766f0306abe5e", + "fields": { + "code_commune_insee": "38184", + "nom_de_la_commune": "GRENAY", + "code_postal": "38540", + "coordonnees_gps": [ + 45.6618405786, + 5.07693625818 + ], + "libelle_d_acheminement": "GRENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07693625818, + 45.6618405786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20f8d1dce9577c4aa1cb8012ececc63d09086e89", + "fields": { + "code_commune_insee": "38188", + "nom_de_la_commune": "HERBEYS", + "code_postal": "38320", + "coordonnees_gps": [ + 45.1435049357, + 5.79740586224 + ], + "libelle_d_acheminement": "HERBEYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79740586224, + 45.1435049357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1073efe24704c016697f5e2f9976fe1a0c9415b1", + "fields": { + "code_commune_insee": "38190", + "nom_de_la_commune": "HIERES SUR AMBY", + "code_postal": "38118", + "coordonnees_gps": [ + 45.7996652612, + 5.29431190301 + ], + "libelle_d_acheminement": "HIERES SUR AMBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29431190301, + 45.7996652612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36a883473a4dff338c91b37987878a9313a9a8b2", + "fields": { + "ligne_5": "L ALPE D HUEZ", + "code_commune_insee": "38191", + "libelle_d_acheminement": "HUEZ", + "code_postal": "38750", + "nom_de_la_commune": "HUEZ", + "coordonnees_gps": [ + 45.0969425761, + 6.08474810987 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08474810987, + 45.0969425761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea4e65f9940f9950ddf3770736c115957a4ce72b", + "fields": { + "code_commune_insee": "38193", + "nom_de_la_commune": "L ISLE D ABEAU", + "code_postal": "38080", + "coordonnees_gps": [ + 45.6181733164, + 5.22290423925 + ], + "libelle_d_acheminement": "L ISLE D ABEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22290423925, + 45.6181733164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70114876bacdb6a9ca03a00c0442b2ee5790bde7", + "fields": { + "code_commune_insee": "38198", + "nom_de_la_commune": "JARCIEU", + "code_postal": "38270", + "coordonnees_gps": [ + 45.3353751556, + 4.94914192553 + ], + "libelle_d_acheminement": "JARCIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94914192553, + 45.3353751556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65072aaa9f0d4510deda4819e04d3ae40d4b1682", + "fields": { + "code_commune_insee": "38200", + "nom_de_la_commune": "JARRIE", + "code_postal": "38560", + "coordonnees_gps": [ + 45.1111027437, + 5.74674097991 + ], + "libelle_d_acheminement": "JARRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74674097991, + 45.1111027437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bba4dca7d753f891b1acb360d5f4900576b7cf1", + "fields": { + "code_commune_insee": "38205", + "nom_de_la_commune": "LANS EN VERCORS", + "code_postal": "38250", + "coordonnees_gps": [ + 45.1209452513, + 5.5907415298 + ], + "libelle_d_acheminement": "LANS EN VERCORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5907415298, + 45.1209452513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "638aec0c1dfa9e19495a0329d073cd3eaf4486e2", + "fields": { + "code_commune_insee": "38214", + "nom_de_la_commune": "LUMBIN", + "code_postal": "38660", + "coordonnees_gps": [ + 45.3040708213, + 5.91320283012 + ], + "libelle_d_acheminement": "LUMBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91320283012, + 45.3040708213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e08d2e4a1bea221877bfda4a6068dfe1e5266c9", + "fields": { + "code_commune_insee": "38216", + "nom_de_la_commune": "MALLEVAL EN VERCORS", + "code_postal": "38470", + "coordonnees_gps": [ + 45.1534944618, + 5.44421168332 + ], + "libelle_d_acheminement": "MALLEVAL EN VERCORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44421168332, + 45.1534944618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d72082414923ba4e54c727aeb20200f1e05e29a5", + "fields": { + "code_commune_insee": "38219", + "nom_de_la_commune": "MARCOLLIN", + "code_postal": "38270", + "coordonnees_gps": [ + 45.3104247313, + 5.08838951033 + ], + "libelle_d_acheminement": "MARCOLLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08838951033, + 45.3104247313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa28d0d74b098f93236ac6f350811aa634825a49", + "fields": { + "code_commune_insee": "38223", + "nom_de_la_commune": "MAUBEC", + "code_postal": "38300", + "coordonnees_gps": [ + 45.5660929436, + 5.25805770086 + ], + "libelle_d_acheminement": "MAUBEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25805770086, + 45.5660929436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cfbfb16fae90ff06e8ffb19ffc3b6b535947f13", + "fields": { + "ligne_5": "AUTRANS", + "code_commune_insee": "38225", + "libelle_d_acheminement": "AUTRANS MEAUDRE EN VERCORS", + "code_postal": "38880", + "nom_de_la_commune": "AUTRANS MEAUDRE EN VERCORS", + "coordonnees_gps": [ + 45.1321769623, + 5.52869303726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52869303726, + 45.1321769623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e020e10d8875fdaa7a89d4c2672a590d2db62418", + "fields": { + "code_commune_insee": "38238", + "nom_de_la_commune": "MOIDIEU DETOURBE", + "code_postal": "38440", + "coordonnees_gps": [ + 45.5125997972, + 5.02180537959 + ], + "libelle_d_acheminement": "MOIDIEU DETOURBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02180537959, + 45.5125997972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e8c0770ead19a3b3cf94fef177e36d9a756d689", + "fields": { + "code_commune_insee": "38242", + "nom_de_la_commune": "MONESTIER DE CLERMONT", + "code_postal": "38650", + "coordonnees_gps": [ + 44.9212938968, + 5.63637364417 + ], + "libelle_d_acheminement": "MONESTIER DE CLERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63637364417, + 44.9212938968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f40b8c76c71b67acf4c6efae68a47e0e1ed77e4", + "fields": { + "code_commune_insee": "38244", + "nom_de_la_commune": "MONSTEROUX MILIEU", + "code_postal": "38122", + "coordonnees_gps": [ + 45.4346067842, + 4.946596799 + ], + "libelle_d_acheminement": "MONSTEROUX MILIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.946596799, + 45.4346067842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01327ed21ef084d34f719818a9240e5c7e6ee843", + "fields": { + "code_commune_insee": "38248", + "nom_de_la_commune": "MONTAUD", + "code_postal": "38210", + "coordonnees_gps": [ + 45.2598175642, + 5.5618750133 + ], + "libelle_d_acheminement": "MONTAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5618750133, + 45.2598175642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92ed29f4da7b1e425687de1129910157effa558c", + "fields": { + "code_commune_insee": "38250", + "nom_de_la_commune": "MONTCARRA", + "code_postal": "38890", + "coordonnees_gps": [ + 45.6090751689, + 5.39984266254 + ], + "libelle_d_acheminement": "MONTCARRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39984266254, + 45.6090751689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccf61b70ffec23827d3d9130a631dea1d36fd15f", + "fields": { + "ligne_5": "VENOSC", + "code_commune_insee": "38253", + "libelle_d_acheminement": "LES DEUX ALPES", + "code_postal": "38520", + "nom_de_la_commune": "LES DEUX ALPES", + "coordonnees_gps": [ + 45.0159885994, + 6.13818619624 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13818619624, + 45.0159885994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bb0aea9d13b7cc034170bd33761aa2c91ef34a8", + "fields": { + "code_commune_insee": "38254", + "nom_de_la_commune": "MONTEYNARD", + "code_postal": "38770", + "coordonnees_gps": [ + 44.9804441631, + 5.70223795368 + ], + "libelle_d_acheminement": "MONTEYNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70223795368, + 44.9804441631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b09343c148a130d6011bac051deb114d85e0b2e0", + "fields": { + "code_commune_insee": "38264", + "nom_de_la_commune": "LA MORTE", + "code_postal": "38350", + "coordonnees_gps": [ + 45.0261280024, + 5.8619002551 + ], + "libelle_d_acheminement": "LA MORTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8619002551, + 45.0261280024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16fe8377859d8e2f1f3bda45e0f63cf0a6071b09", + "fields": { + "code_commune_insee": "38269", + "nom_de_la_commune": "LA MURE", + "code_postal": "38350", + "coordonnees_gps": [ + 44.9099172773, + 5.78817442937 + ], + "libelle_d_acheminement": "LA MURE D ISERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78817442937, + 44.9099172773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3510a31b666b6416fec1b26f433db66317b20b05", + "fields": { + "code_commune_insee": "38272", + "nom_de_la_commune": "MURINAIS", + "code_postal": "38160", + "coordonnees_gps": [ + 45.2105311405, + 5.31922284315 + ], + "libelle_d_acheminement": "MURINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31922284315, + 45.2105311405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcdc1269ff49b8e51ff82175ca161f165bb347da", + "fields": { + "code_commune_insee": "38279", + "nom_de_la_commune": "NOTRE DAME DE MESAGE", + "code_postal": "38220", + "coordonnees_gps": [ + 45.0706423659, + 5.75220646667 + ], + "libelle_d_acheminement": "NOTRE DAME DE MESAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75220646667, + 45.0706423659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd3eec573c0aa004e9c057d553e45baea2753369", + "fields": { + "code_commune_insee": "38280", + "nom_de_la_commune": "NOTRE DAME DE VAULX", + "code_postal": "38144", + "coordonnees_gps": [ + 44.9909492934, + 5.7414042236 + ], + "libelle_d_acheminement": "NOTRE DAME DE VAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7414042236, + 44.9909492934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe2fc59d8adddf8c965405a2d7cedeff4ae3259d", + "fields": { + "ligne_5": "BALBINS", + "code_commune_insee": "38284", + "libelle_d_acheminement": "ORNACIEUX BALBINS", + "code_postal": "38260", + "nom_de_la_commune": "ORNACIEUX BALBINS", + "coordonnees_gps": [ + 45.4048662888, + 5.21296646579 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21296646579, + 45.4048662888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b40ecd42e1805870269f2e41a1019389a6dd8b32", + "fields": { + "code_commune_insee": "38285", + "nom_de_la_commune": "ORNON", + "code_postal": "38520", + "coordonnees_gps": [ + 45.0400989796, + 5.9653991775 + ], + "libelle_d_acheminement": "ORNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9653991775, + 45.0400989796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac2214639991a2c80ae1d19673d6bc421681158b", + "fields": { + "code_commune_insee": "38291", + "nom_de_la_commune": "PAJAY", + "code_postal": "38260", + "coordonnees_gps": [ + 45.3585074391, + 5.12972839303 + ], + "libelle_d_acheminement": "PAJAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12972839303, + 45.3585074391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fd8965575513f2dc8980c70b3775633cbff2af8", + "fields": { + "ligne_5": "LE PIN", + "code_commune_insee": "38292", + "libelle_d_acheminement": "VILLAGES DU LAC DE PALADRU", + "code_postal": "38730", + "nom_de_la_commune": "VILLAGES DU LAC DE PALADRU", + "coordonnees_gps": [ + 45.4823189588, + 5.55281402751 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55281402751, + 45.4823189588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7896f96ab07c15a0e7f46581a176c1aa5c89c0b5", + "fields": { + "code_commune_insee": "38296", + "nom_de_la_commune": "LE PASSAGE", + "code_postal": "38490", + "coordonnees_gps": [ + 45.5254700733, + 5.51478241706 + ], + "libelle_d_acheminement": "LE PASSAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51478241706, + 45.5254700733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38436ed20663a463218158e6fb891e33b3192401", + "fields": { + "code_commune_insee": "38307", + "nom_de_la_commune": "PISIEU", + "code_postal": "38270", + "coordonnees_gps": [ + 45.3869511038, + 5.0738316923 + ], + "libelle_d_acheminement": "PISIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0738316923, + 45.3869511038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "304721d95ed591412002dd93bff220ab7178b4af", + "fields": { + "code_commune_insee": "38308", + "nom_de_la_commune": "PLAN", + "code_postal": "38590", + "coordonnees_gps": [ + 45.3171353918, + 5.39238954816 + ], + "libelle_d_acheminement": "PLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39238954816, + 45.3171353918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48c520dfad7544d514cc1876bafbfd6dc3d5c71b", + "fields": { + "code_commune_insee": "38313", + "nom_de_la_commune": "PONSONNAS", + "code_postal": "38350", + "coordonnees_gps": [ + 44.8891344285, + 5.79776361706 + ], + "libelle_d_acheminement": "PONSONNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79776361706, + 44.8891344285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "306c04d3a7906ec98ddd628d864e8c0bf40e05f9", + "fields": { + "code_commune_insee": "38320", + "nom_de_la_commune": "PORCIEU AMBLAGNIEU", + "code_postal": "38390", + "coordonnees_gps": [ + 45.8376455099, + 5.3925679772 + ], + "libelle_d_acheminement": "PORCIEU AMBLAGNIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3925679772, + 45.8376455099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae5f1d399efc61090dbfd6284a61bd4b2a6308a2", + "fields": { + "code_commune_insee": "38330", + "nom_de_la_commune": "QUINCIEU", + "code_postal": "38470", + "coordonnees_gps": [ + 45.2780969864, + 5.38636938666 + ], + "libelle_d_acheminement": "QUINCIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38636938666, + 45.2780969864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb044fd87b56d346a84befc17734e5b66f94c404", + "fields": { + "code_commune_insee": "38341", + "nom_de_la_commune": "ROCHETOIRIN", + "code_postal": "38110", + "coordonnees_gps": [ + 45.587700171, + 5.41599250559 + ], + "libelle_d_acheminement": "ROCHETOIRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41599250559, + 45.587700171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a792a09891ebd7aa58669a1b1000a1d3bfdb27e7", + "fields": { + "code_commune_insee": "38344", + "nom_de_la_commune": "ROUSSILLON", + "code_postal": "38150", + "coordonnees_gps": [ + 45.3783247724, + 4.81820898221 + ], + "libelle_d_acheminement": "ROUSSILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81820898221, + 45.3783247724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f051269b393546c43fc6e21f4480f2f6eeed5e3", + "fields": { + "code_commune_insee": "38347", + "nom_de_la_commune": "ROYBON", + "code_postal": "38940", + "coordonnees_gps": [ + 45.248160347, + 5.24908854809 + ], + "libelle_d_acheminement": "ROYBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24908854809, + 45.248160347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf09936ef5311ded67cde5cd74f1f5b27672324b", + "fields": { + "code_commune_insee": "38348", + "nom_de_la_commune": "RUY MONTCEAU", + "code_postal": "38300", + "coordonnees_gps": [ + 45.590349924, + 5.344319552 + ], + "libelle_d_acheminement": "RUY MONTCEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.344319552, + 45.590349924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f3d32c78c81a92cd804ce1449e19c9045bce970", + "fields": { + "code_commune_insee": "38356", + "nom_de_la_commune": "ST ANDRE EN ROYANS", + "code_postal": "38680", + "coordonnees_gps": [ + 45.0832051163, + 5.33670560585 + ], + "libelle_d_acheminement": "ST ANDRE EN ROYANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33670560585, + 45.0832051163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4629d8c58dbce05e622e911516de7424d9c1339", + "fields": { + "code_commune_insee": "38361", + "nom_de_la_commune": "ST AREY", + "code_postal": "38350", + "coordonnees_gps": [ + 44.8819813908, + 5.74254288729 + ], + "libelle_d_acheminement": "ST AREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74254288729, + 44.8819813908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66f28ee79ebc240da5f62b11f6364cf005c5d7ce", + "fields": { + "code_commune_insee": "38365", + "nom_de_la_commune": "ST BAUDILLE DE LA TOUR", + "code_postal": "38118", + "coordonnees_gps": [ + 45.7865412343, + 5.33779713984 + ], + "libelle_d_acheminement": "ST BAUDILLE DE LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33779713984, + 45.7865412343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9e575aeaae6c0be80fad432bebe5146a635dfe3", + "fields": { + "code_commune_insee": "38366", + "nom_de_la_commune": "ST BAUDILLE ET PIPET", + "code_postal": "38710", + "coordonnees_gps": [ + 44.7829562969, + 5.77824884395 + ], + "libelle_d_acheminement": "ST BAUDILLE ET PIPET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77824884395, + 44.7829562969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbafee348947a7c06587dc55cf31334c196d0a4d", + "fields": { + "code_commune_insee": "38369", + "nom_de_la_commune": "STE BLANDINE", + "code_postal": "38110", + "coordonnees_gps": [ + 45.5450974508, + 5.43494721601 + ], + "libelle_d_acheminement": "STE BLANDINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43494721601, + 45.5450974508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13a6b60381acedc786b1bb011d43328cabc362dd", + "fields": { + "code_commune_insee": "38386", + "nom_de_la_commune": "ST GEOIRE EN VALDAINE", + "code_postal": "38620", + "coordonnees_gps": [ + 45.4609404816, + 5.63629815728 + ], + "libelle_d_acheminement": "ST GEOIRE EN VALDAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63629815728, + 45.4609404816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beed9644b3e9023818319d5e092930772932f29b", + "fields": { + "ligne_5": "COMBE ROUSSE", + "code_commune_insee": "38389", + "libelle_d_acheminement": "ST GEORGES D ESPERANCHE", + "code_postal": "38790", + "nom_de_la_commune": "ST GEORGES D ESPERANCHE", + "coordonnees_gps": [ + 45.5603583404, + 5.0798569447 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0798569447, + 45.5603583404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da167ad078fa7256f00a3ad1cee34d45e8bc24fe", + "fields": { + "code_commune_insee": "38392", + "nom_de_la_commune": "ST HILAIRE DE BRENS", + "code_postal": "38460", + "coordonnees_gps": [ + 45.6755777946, + 5.2906631807 + ], + "libelle_d_acheminement": "ST HILAIRE DE BRENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2906631807, + 45.6755777946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "692ede64d5f7531e5814f4db2069fc219be2dd19", + "fields": { + "code_commune_insee": "38403", + "nom_de_la_commune": "ST JEAN D HERANS", + "code_postal": "38710", + "coordonnees_gps": [ + 44.854865998, + 5.75330936496 + ], + "libelle_d_acheminement": "ST JEAN D HERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75330936496, + 44.854865998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa49062d6bfa63d976884fa51816aebc38933779", + "fields": { + "code_commune_insee": "38413", + "nom_de_la_commune": "ST LAURENT EN BEAUMONT", + "code_postal": "38350", + "coordonnees_gps": [ + 44.8850127628, + 5.84545502817 + ], + "libelle_d_acheminement": "ST LAURENT EN BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84545502817, + 44.8850127628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78b4cf3ace57c75ce4841fb60402080f2272ffb0", + "fields": { + "code_commune_insee": "38414", + "nom_de_la_commune": "STE LUCE", + "code_postal": "38970", + "coordonnees_gps": [ + 44.8504153429, + 5.90543846045 + ], + "libelle_d_acheminement": "STE LUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90543846045, + 44.8504153429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcc081fb044d9bd72990c44511225ae2ad08cf28", + "fields": { + "code_commune_insee": "38415", + "nom_de_la_commune": "ST MARCEL BEL ACCUEIL", + "code_postal": "38080", + "coordonnees_gps": [ + 45.6480438859, + 5.23992920137 + ], + "libelle_d_acheminement": "ST MARCEL BEL ACCUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23992920137, + 45.6480438859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e76e3b796493a653e0834021c5fbd1f22113266b", + "fields": { + "code_commune_insee": "38417", + "nom_de_la_commune": "STE MARIE D ALLOIX", + "code_postal": "38660", + "coordonnees_gps": [ + 45.3845890951, + 5.97577742061 + ], + "libelle_d_acheminement": "STE MARIE D ALLOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97577742061, + 45.3845890951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35ef712ebfd6af8bf93fe9b6f1528ef4042b735c", + "fields": { + "code_commune_insee": "38425", + "nom_de_la_commune": "ST MAURICE L EXIL", + "code_postal": "38550", + "coordonnees_gps": [ + 45.3920113826, + 4.7770444785 + ], + "libelle_d_acheminement": "ST MAURICE L EXIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7770444785, + 45.3920113826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c004dbb4127c6a1557366bd9b03604759861e13f", + "fields": { + "code_commune_insee": "38428", + "nom_de_la_commune": "ST MICHEL EN BEAUMONT", + "code_postal": "38350", + "coordonnees_gps": [ + 44.8693565734, + 5.91329630908 + ], + "libelle_d_acheminement": "ST MICHEL EN BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91329630908, + 44.8693565734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d068eb1ca9d57cfac8a584a62552149092f5c9d4", + "fields": { + "code_commune_insee": "38431", + "nom_de_la_commune": "ST NAZAIRE LES EYMES", + "code_postal": "38330", + "coordonnees_gps": [ + 45.2585764238, + 5.85231370954 + ], + "libelle_d_acheminement": "ST NAZAIRE LES EYMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85231370954, + 45.2585764238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48f39dbebfa66424e4435d642e04a1b46098d9f2", + "fields": { + "code_commune_insee": "38433", + "nom_de_la_commune": "ST NIZIER DU MOUCHEROTTE", + "code_postal": "38250", + "coordonnees_gps": [ + 45.1653613173, + 5.63185360757 + ], + "libelle_d_acheminement": "ST NIZIER DU MOUCHEROTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63185360757, + 45.1653613173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5e73c2270e033f46d1f6bb6f0a16da765bea614", + "fields": { + "code_commune_insee": "38438", + "nom_de_la_commune": "ST PAUL LES MONESTIER", + "code_postal": "38650", + "coordonnees_gps": [ + 44.9274219036, + 5.61388149441 + ], + "libelle_d_acheminement": "ST PAUL LES MONESTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61388149441, + 44.9274219036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f974788f736863c4367a6d215d5b7aa2575557d", + "fields": { + "ligne_5": "MORETEL DE MAILLES", + "code_commune_insee": "38439", + "libelle_d_acheminement": "CRETS EN BELLEDONNE", + "code_postal": "38570", + "nom_de_la_commune": "CRETS EN BELLEDONNE", + "coordonnees_gps": [ + 45.3573537268, + 6.0451681388 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0451681388, + 45.3573537268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb0fd82b55d1c0d5668b5078e10945a8595abae5", + "fields": { + "code_commune_insee": "38449", + "nom_de_la_commune": "ST QUENTIN FALLAVIER", + "code_postal": "38070", + "coordonnees_gps": [ + 45.6396427762, + 5.10856784756 + ], + "libelle_d_acheminement": "ST QUENTIN FALLAVIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10856784756, + 45.6396427762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ebafac564d7b3b5ffa6ceacb730aa557302ab5e", + "fields": { + "ligne_5": "FALLAVIER", + "code_commune_insee": "38449", + "libelle_d_acheminement": "ST QUENTIN FALLAVIER", + "code_postal": "38070", + "nom_de_la_commune": "ST QUENTIN FALLAVIER", + "coordonnees_gps": [ + 45.6396427762, + 5.10856784756 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10856784756, + 45.6396427762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4997063311b367a6cb9017e0375a0f4bd130244", + "fields": { + "code_commune_insee": "38452", + "nom_de_la_commune": "ST ROMAIN DE SURIEU", + "code_postal": "38150", + "coordonnees_gps": [ + 45.3898709024, + 4.88929060852 + ], + "libelle_d_acheminement": "ST ROMAIN DE SURIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88929060852, + 45.3898709024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9caac2cb4f8d52c9cb2decc380e8bc42f2290d19", + "fields": { + "code_commune_insee": "38475", + "nom_de_la_commune": "SATOLAS ET BONCE", + "code_postal": "38290", + "coordonnees_gps": [ + 45.682504844, + 5.12584106732 + ], + "libelle_d_acheminement": "SATOLAS ET BONCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12584106732, + 45.682504844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "820439d8ec832053d66d5e88d970cc3fa8383294", + "fields": { + "ligne_5": "COMMELLE", + "code_commune_insee": "38479", + "libelle_d_acheminement": "PORTE DES BONNEVAUX", + "code_postal": "38260", + "nom_de_la_commune": "PORTE DES BONNEVAUX", + "coordonnees_gps": [ + 45.4317273834, + 5.19744019557 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19744019557, + 45.4317273834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39ac774e9ceb1605a2b93b8079ef3a659b246536", + "fields": { + "code_commune_insee": "38480", + "nom_de_la_commune": "SEPTEME", + "code_postal": "38780", + "coordonnees_gps": [ + 45.5481011598, + 4.98525636535 + ], + "libelle_d_acheminement": "SEPTEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98525636535, + 45.5481011598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a00b643c52e3171ada03d63371c5403985074a23", + "fields": { + "code_commune_insee": "38481", + "nom_de_la_commune": "SEREZIN DE LA TOUR", + "code_postal": "38300", + "coordonnees_gps": [ + 45.5546305415, + 5.34018745003 + ], + "libelle_d_acheminement": "SEREZIN DE LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34018745003, + 45.5546305415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64bbcf998acb21cefe4b538cbad50e4f4f12efec", + "fields": { + "code_commune_insee": "38485", + "nom_de_la_commune": "SEYSSINET PARISET", + "code_postal": "38170", + "coordonnees_gps": [ + 45.1731193462, + 5.66971556945 + ], + "libelle_d_acheminement": "SEYSSINET PARISET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66971556945, + 45.1731193462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc014f864136113367091bb8d89896334450cdb1", + "fields": { + "code_commune_insee": "38486", + "nom_de_la_commune": "SEYSSINS", + "code_postal": "38180", + "coordonnees_gps": [ + 45.1548597914, + 5.67545398227 + ], + "libelle_d_acheminement": "SEYSSINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67545398227, + 45.1548597914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02997aa47aec33543aef94e71b76aa86661c7e13", + "fields": { + "code_commune_insee": "38503", + "nom_de_la_commune": "LA TERRASSE", + "code_postal": "38660", + "coordonnees_gps": [ + 45.3253741747, + 5.93145053792 + ], + "libelle_d_acheminement": "LA TERRASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93145053792, + 45.3253741747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f85a29e7499ffe1b0248f2320fb5a360eff92b3", + "fields": { + "code_commune_insee": "38504", + "nom_de_la_commune": "THEYS", + "code_postal": "38570", + "coordonnees_gps": [ + 45.2975465976, + 6.01339575189 + ], + "libelle_d_acheminement": "THEYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01339575189, + 45.2975465976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f596144096e6ad5c2ceaad989ff59f44ff38d7d", + "fields": { + "code_commune_insee": "38505", + "nom_de_la_commune": "THODURE", + "code_postal": "38260", + "coordonnees_gps": [ + 45.3158079255, + 5.15549854064 + ], + "libelle_d_acheminement": "THODURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15549854064, + 45.3158079255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b751a54daf0ff80c0085fdc07bbe41a96ec5c8d2", + "fields": { + "code_commune_insee": "38513", + "nom_de_la_commune": "TREFFORT", + "code_postal": "38650", + "coordonnees_gps": [ + 44.9030153722, + 5.6617115745 + ], + "libelle_d_acheminement": "TREFFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6617115745, + 44.9030153722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df13091ebb9494773e2a8820f12d66eb874083d6", + "fields": { + "ligne_5": "FURES", + "code_commune_insee": "38517", + "libelle_d_acheminement": "TULLINS", + "code_postal": "38210", + "nom_de_la_commune": "TULLINS", + "coordonnees_gps": [ + 45.2938791725, + 5.49006158623 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49006158623, + 45.2938791725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f14191f260223f8a469f85895eb5a6401803a827", + "fields": { + "code_commune_insee": "38520", + "nom_de_la_commune": "VALENCOGNE", + "code_postal": "38730", + "coordonnees_gps": [ + 45.491469171, + 5.53064398602 + ], + "libelle_d_acheminement": "VALENCOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53064398602, + 45.491469171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20f3a2465f82ddd7fd8800b7f65d61e9151624ec", + "fields": { + "code_commune_insee": "38523", + "nom_de_la_commune": "VARACIEUX", + "code_postal": "38470", + "coordonnees_gps": [ + 45.2274015748, + 5.34211585345 + ], + "libelle_d_acheminement": "VARACIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34211585345, + 45.2274015748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b958f357f0b0294229837e0c26247a62bc7a19e8", + "fields": { + "code_commune_insee": "38525", + "nom_de_la_commune": "VASSELIN", + "code_postal": "38890", + "coordonnees_gps": [ + 45.6284390051, + 5.45056070487 + ], + "libelle_d_acheminement": "VASSELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45056070487, + 45.6284390051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a77b8700bbd0edc9fab6270887a74b70d1a691da", + "fields": { + "code_commune_insee": "38531", + "nom_de_la_commune": "VELANNE", + "code_postal": "38620", + "coordonnees_gps": [ + 45.4889494528, + 5.64628578808 + ], + "libelle_d_acheminement": "VELANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64628578808, + 45.4889494528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3d1d4b59f0aa7ad7891c7bec5c519fa72ac117c", + "fields": { + "code_commune_insee": "38532", + "nom_de_la_commune": "VENERIEU", + "code_postal": "38460", + "coordonnees_gps": [ + 45.6596953757, + 5.27623741722 + ], + "libelle_d_acheminement": "VENERIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27623741722, + 45.6596953757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c4d174ab4ee28d8421c7db107fecdf3711fd37e", + "fields": { + "code_commune_insee": "38540", + "nom_de_la_commune": "VEUREY VOROIZE", + "code_postal": "38113", + "coordonnees_gps": [ + 45.2694421656, + 5.60195085024 + ], + "libelle_d_acheminement": "VEUREY VOROIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60195085024, + 45.2694421656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a89cbfc480ec2fe6c4a0adf8028f0dce6777177d", + "fields": { + "code_commune_insee": "38543", + "nom_de_la_commune": "VEZERONCE CURTIN", + "code_postal": "38510", + "coordonnees_gps": [ + 45.6543775384, + 5.46996277663 + ], + "libelle_d_acheminement": "VEZERONCE CURTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46996277663, + 45.6543775384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b64e0b8102c3cf96a9d46447f8e7a03e063fa4eb", + "fields": { + "ligne_5": "CURTIN", + "code_commune_insee": "38543", + "libelle_d_acheminement": "VEZERONCE CURTIN", + "code_postal": "38510", + "nom_de_la_commune": "VEZERONCE CURTIN", + "coordonnees_gps": [ + 45.6543775384, + 5.46996277663 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46996277663, + 45.6543775384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b87fcf9fbba7598cf764249dd4e4fe7b358cd1c", + "fields": { + "ligne_5": "LANCEY", + "code_commune_insee": "38547", + "libelle_d_acheminement": "VILLARD BONNOT", + "code_postal": "38190", + "nom_de_la_commune": "VILLARD BONNOT", + "coordonnees_gps": [ + 45.2446205727, + 5.88906725424 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88906725424, + 45.2446205727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4cc4f2c21e570a06d8249a7a335b648008f5be7", + "fields": { + "code_commune_insee": "38551", + "nom_de_la_commune": "VILLARD REYMOND", + "code_postal": "38520", + "coordonnees_gps": [ + 45.0290416543, + 6.00823716098 + ], + "libelle_d_acheminement": "VILLARD REYMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00823716098, + 45.0290416543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bedb1fdcc60f92a0f80198cafe55a52381e5bc3e", + "fields": { + "code_commune_insee": "38557", + "nom_de_la_commune": "VILLETTE D ANTHON", + "code_postal": "38280", + "coordonnees_gps": [ + 45.7844347868, + 5.10742322844 + ], + "libelle_d_acheminement": "VILLETTE D ANTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10742322844, + 45.7844347868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57222ba1162d2408563765b86e3794b8b1186345", + "fields": { + "code_commune_insee": "38565", + "nom_de_la_commune": "VOREPPE", + "code_postal": "38340", + "coordonnees_gps": [ + 45.290046149, + 5.64284060664 + ], + "libelle_d_acheminement": "VOREPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64284060664, + 45.290046149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a72eae16488e536348f7733d32906326e2298a79", + "fields": { + "code_commune_insee": "39001", + "nom_de_la_commune": "ABERGEMENT LA RONCE", + "code_postal": "39500", + "coordonnees_gps": [ + 47.0649669593, + 5.37826421743 + ], + "libelle_d_acheminement": "ABERGEMENT LA RONCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37826421743, + 47.0649669593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1c8c63e3f47765da97223aa0efb38c73bf6ba2d", + "fields": { + "code_commune_insee": "39002", + "nom_de_la_commune": "ABERGEMENT LE GRAND", + "code_postal": "39600", + "coordonnees_gps": [ + 46.9142864988, + 5.67853452364 + ], + "libelle_d_acheminement": "ABERGEMENT LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67853452364, + 46.9142864988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12df332e219f21add5c56d9d3b40f2dbca191b84", + "fields": { + "code_commune_insee": "39008", + "nom_de_la_commune": "AMANGE", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1669744984, + 5.5649107588 + ], + "libelle_d_acheminement": "AMANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5649107588, + 47.1669744984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5f059dbbb9af0311e8e922cc309d40a30b9b2af", + "fields": { + "ligne_5": "CHISSERIA", + "code_commune_insee": "39016", + "libelle_d_acheminement": "ARINTHOD", + "code_postal": "39240", + "nom_de_la_commune": "ARINTHOD", + "coordonnees_gps": [ + 46.4000913267, + 5.58894022336 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58894022336, + 46.4000913267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23e9b6534e8124876faa261447e22d1e8abdc572", + "fields": { + "ligne_5": "ARTHENAS", + "code_commune_insee": "39021", + "libelle_d_acheminement": "LA CHAILLEUSE", + "code_postal": "39270", + "nom_de_la_commune": "LA CHAILLEUSE", + "coordonnees_gps": [ + 46.5722801296, + 5.52869424012 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52869424012, + 46.5722801296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fca47b92ccd6a41f2dfba701d740e5a08ed7935c", + "fields": { + "ligne_5": "ESSIA", + "code_commune_insee": "39021", + "libelle_d_acheminement": "LA CHAILLEUSE", + "code_postal": "39270", + "nom_de_la_commune": "LA CHAILLEUSE", + "coordonnees_gps": [ + 46.5722801296, + 5.52869424012 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52869424012, + 46.5722801296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3336aa33cd4cb7c97ff845fe50653645d52c0fb4", + "fields": { + "ligne_5": "ST LAURENT LA ROCHE", + "code_commune_insee": "39021", + "libelle_d_acheminement": "LA CHAILLEUSE", + "code_postal": "39570", + "nom_de_la_commune": "LA CHAILLEUSE", + "coordonnees_gps": [ + 46.5722801296, + 5.52869424012 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52869424012, + 46.5722801296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9550f77cfb51b72d8875222d8e484d1bb36dc32e", + "fields": { + "code_commune_insee": "39022", + "nom_de_la_commune": "ASNANS BEAUVOISIN", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9370009894, + 5.39677070986 + ], + "libelle_d_acheminement": "ASNANS BEAUVOISIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39677070986, + 46.9370009894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e017a13d20ddba267e0f58a271fb7996fde8262d", + "fields": { + "ligne_5": "BEAUVOISIN", + "code_commune_insee": "39022", + "libelle_d_acheminement": "ASNANS BEAUVOISIN", + "code_postal": "39120", + "nom_de_la_commune": "ASNANS BEAUVOISIN", + "coordonnees_gps": [ + 46.9370009894, + 5.39677070986 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39677070986, + 46.9370009894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0291611e804afd23e45dd95c7988e7059df3112b", + "fields": { + "code_commune_insee": "39034", + "nom_de_la_commune": "BALAISEAUX", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9676282435, + 5.46210050966 + ], + "libelle_d_acheminement": "BALAISEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46210050966, + 46.9676282435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaa94aca5ad91a9e4161cea8706555c717039af5", + "fields": { + "code_commune_insee": "39041", + "nom_de_la_commune": "BAUME LES MESSIEURS", + "code_postal": "39570", + "coordonnees_gps": [ + 46.7048674382, + 5.64562570074 + ], + "libelle_d_acheminement": "BAUME LES MESSIEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64562570074, + 46.7048674382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cee5e5610c2e9473ef22b2bfa33833cd454d15db", + "fields": { + "ligne_5": "ORBAGNA", + "code_commune_insee": "39043", + "libelle_d_acheminement": "BEAUFORT ORBAGNA", + "code_postal": "39190", + "nom_de_la_commune": "BEAUFORT ORBAGNA", + "coordonnees_gps": [ + 46.5858090332, + 5.43052572582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43052572582, + 46.5858090332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e1c014873ce2f3aff3a80238c99fe3ab670cfa7", + "fields": { + "code_commune_insee": "39057", + "nom_de_la_commune": "BLOIS SUR SEILLE", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7464228951, + 5.67040219514 + ], + "libelle_d_acheminement": "BLOIS SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67040219514, + 46.7464228951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e1cab10e9d62558dce90c973fe215917911d2c4", + "fields": { + "code_commune_insee": "39072", + "nom_de_la_commune": "BRACON", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9256272441, + 5.86757188108 + ], + "libelle_d_acheminement": "BRACON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86757188108, + 46.9256272441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1bca94f2c3fadcd44bff939100d23b046b6162b", + "fields": { + "code_commune_insee": "39077", + "nom_de_la_commune": "BRETENIERES", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9199425339, + 5.53800376406 + ], + "libelle_d_acheminement": "BRETENIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53800376406, + 46.9199425339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31573cfae32baa794cc924f77447d96cd1e002a9", + "fields": { + "code_commune_insee": "39093", + "nom_de_la_commune": "CHAMBLAY", + "code_postal": "39380", + "coordonnees_gps": [ + 46.9910483853, + 5.70335674232 + ], + "libelle_d_acheminement": "CHAMBLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70335674232, + 46.9910483853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0ea0f0d18ed7815d7a0e837a165af9890e9f25b", + "fields": { + "code_commune_insee": "39097", + "nom_de_la_commune": "CHAMPAGNOLE", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7445389751, + 5.8988102947 + ], + "libelle_d_acheminement": "CHAMPAGNOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8988102947, + 46.7445389751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cab350ed31957f1357b70246d62d84968de8dde3", + "fields": { + "code_commune_insee": "39102", + "nom_de_la_commune": "CHANCIA", + "code_postal": "01590", + "coordonnees_gps": [ + 46.3456617858, + 5.64248681911 + ], + "libelle_d_acheminement": "CHANCIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64248681911, + 46.3456617858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51617d3376bd70869839935b1a918c690f339645", + "fields": { + "code_commune_insee": "39103", + "nom_de_la_commune": "LA CHAPELLE SUR FURIEUSE", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9888982082, + 5.85798769424 + ], + "libelle_d_acheminement": "LA CHAPELLE SUR FURIEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85798769424, + 46.9888982082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "803311d5e326f3bdfa64afa39468d518a3f30f75", + "fields": { + "code_commune_insee": "39104", + "nom_de_la_commune": "CHAPELLE VOLAND", + "code_postal": "39140", + "coordonnees_gps": [ + 46.8008280334, + 5.38064900951 + ], + "libelle_d_acheminement": "CHAPELLE VOLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38064900951, + 46.8008280334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a30ed4b4fccd52e4a838122404fb0a0e8650b09e", + "fields": { + "code_commune_insee": "39118", + "nom_de_la_commune": "CHATEL DE JOUX", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5296472131, + 5.80925298746 + ], + "libelle_d_acheminement": "CHATEL DE JOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80925298746, + 46.5296472131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43f8ead24ebea1b005e3e7b19d8aa87b2bc6b254", + "fields": { + "ligne_5": "CHAUX DES PRES", + "code_commune_insee": "39130", + "libelle_d_acheminement": "NANCHEZ", + "code_postal": "39150", + "nom_de_la_commune": "NANCHEZ", + "coordonnees_gps": [ + 46.4998251911, + 5.8576069903 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8576069903, + 46.4998251911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e97d39ebd020d07ea819662061b2c7e3d064a5db", + "fields": { + "code_commune_insee": "39131", + "nom_de_la_commune": "LA CHAUX DU DOMBIEF", + "code_postal": "39150", + "coordonnees_gps": [ + 46.607697996, + 5.90655686239 + ], + "libelle_d_acheminement": "CHAUX DU DOMBIEF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90655686239, + 46.607697996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d575015db87de53285b38593cee6717ac57b1ac7", + "fields": { + "ligne_5": "ST HYMETIERE", + "code_commune_insee": "39137", + "libelle_d_acheminement": "ST HYMETIERE SUR VALOUSE", + "code_postal": "39240", + "nom_de_la_commune": "ST HYMETIERE SUR VALOUSE", + "coordonnees_gps": [ + 46.3507935799, + 5.55838223354 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55838223354, + 46.3507935799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e66657476994dcdec5bb6b571bbb4e10d908261e", + "fields": { + "code_commune_insee": "39142", + "nom_de_la_commune": "CHEVREAUX", + "code_postal": "39190", + "coordonnees_gps": [ + 46.5015228257, + 5.41955916196 + ], + "libelle_d_acheminement": "CHEVREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41955916196, + 46.5015228257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0a0a8f8a908caefeb4f2f1e289a98bfe2d8ef43", + "fields": { + "code_commune_insee": "39145", + "nom_de_la_commune": "CHILLE", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6933516322, + 5.57237754147 + ], + "libelle_d_acheminement": "CHILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57237754147, + 46.6933516322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f9fd23f9d249a6429042976a7fbfbeab713d8cb", + "fields": { + "code_commune_insee": "39149", + "nom_de_la_commune": "CHISSEY SUR LOUE", + "code_postal": "39380", + "coordonnees_gps": [ + 47.0603931252, + 5.74043299364 + ], + "libelle_d_acheminement": "CHISSEY SUR LOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74043299364, + 47.0603931252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3135d3f159018df6616d0ed72c7cd5681fd6a02a", + "fields": { + "code_commune_insee": "39150", + "nom_de_la_commune": "CHOISEY", + "code_postal": "39100", + "coordonnees_gps": [ + 47.0588384803, + 5.45057837104 + ], + "libelle_d_acheminement": "CHOISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45057837104, + 47.0588384803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5172b04f8e994894f050b524da60122580417eb", + "fields": { + "code_commune_insee": "39151", + "nom_de_la_commune": "CHOUX", + "code_postal": "39370", + "coordonnees_gps": [ + 46.301599898, + 5.77007174218 + ], + "libelle_d_acheminement": "CHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77007174218, + 46.301599898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a43d9348523e2c6450ef29c5db64cbf8a41a4de8", + "fields": { + "code_commune_insee": "39159", + "nom_de_la_commune": "COLONNE", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8790834868, + 5.57100296371 + ], + "libelle_d_acheminement": "COLONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57100296371, + 46.8790834868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2041bdb63a052995b08e7c42ce17cbc920f792ff", + "fields": { + "code_commune_insee": "39165", + "nom_de_la_commune": "CONTE", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7496326396, + 6.00775677762 + ], + "libelle_d_acheminement": "CONTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00775677762, + 46.7496326396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0798598a16ef1dea9b3a49083f14a7522d47f857", + "fields": { + "code_commune_insee": "39166", + "nom_de_la_commune": "CORNOD", + "code_postal": "39240", + "coordonnees_gps": [ + 46.3075990777, + 5.54745998941 + ], + "libelle_d_acheminement": "CORNOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54745998941, + 46.3075990777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cecf20d8df6de1838390869db3e3e8a84e75444", + "fields": { + "code_commune_insee": "39172", + "nom_de_la_commune": "COURTEFONTAINE", + "code_postal": "39700", + "coordonnees_gps": [ + 47.132605121, + 5.79331394408 + ], + "libelle_d_acheminement": "COURTEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79331394408, + 47.132605121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25cd5c086e95504d9c05d15c6d2236ae133945e1", + "fields": { + "code_commune_insee": "39180", + "nom_de_la_commune": "CRESSIA", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5268687403, + 5.48381777144 + ], + "libelle_d_acheminement": "CRESSIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48381777144, + 46.5268687403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87c48ff93ab812d83b8d1c090f253ded8f16f267", + "fields": { + "code_commune_insee": "39183", + "nom_de_la_commune": "CROTENAY", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7546647764, + 5.81374887948 + ], + "libelle_d_acheminement": "CROTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81374887948, + 46.7546647764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5df1df40287d11ca7f8a1c2f0f437457ed13168", + "fields": { + "code_commune_insee": "39185", + "nom_de_la_commune": "CUISIA", + "code_postal": "39190", + "coordonnees_gps": [ + 46.5467474362, + 5.40533542507 + ], + "libelle_d_acheminement": "CUISIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40533542507, + 46.5467474362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "566f76c6a2d1348007a622f6ed6888026ccc0fa7", + "fields": { + "code_commune_insee": "39193", + "nom_de_la_commune": "LE DESCHAUX", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9505140483, + 5.49877819906 + ], + "libelle_d_acheminement": "LE DESCHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49877819906, + 46.9505140483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54666e2af41c67d3b4c6f828afa88c028bd6d8ca", + "fields": { + "code_commune_insee": "39209", + "nom_de_la_commune": "VAL D EPY", + "code_postal": "39160", + "coordonnees_gps": [ + 46.3756497717, + 5.39068206826 + ], + "libelle_d_acheminement": "VAL D EPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39068206826, + 46.3756497717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d4b4ffab6c39a2f7d68daad969521b017fb8eb4", + "fields": { + "ligne_5": "POISOUX", + "code_commune_insee": "39209", + "libelle_d_acheminement": "VAL D EPY", + "code_postal": "39160", + "nom_de_la_commune": "VAL D EPY", + "coordonnees_gps": [ + 46.3756497717, + 5.39068206826 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39068206826, + 46.3756497717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7371a72476207d1028b7bb50e8685259e2f536b2", + "fields": { + "code_commune_insee": "39211", + "nom_de_la_commune": "LES ESSARDS TAIGNEVAUX", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9035384189, + 5.41523803268 + ], + "libelle_d_acheminement": "LES ESSARDS TAIGNEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41523803268, + 46.9035384189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99b94ca2e8ef1d17d30dbe525a0f5c34db69078d", + "fields": { + "code_commune_insee": "39221", + "nom_de_la_commune": "LA FAVIERE", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7481190667, + 6.03667883413 + ], + "libelle_d_acheminement": "LA FAVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03667883413, + 46.7481190667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec1178f3589912513fb5d0aea1435918e7306b95", + "fields": { + "code_commune_insee": "39228", + "nom_de_la_commune": "FONCINE LE HAUT", + "code_postal": "39460", + "coordonnees_gps": [ + 46.6590550612, + 6.06154968382 + ], + "libelle_d_acheminement": "FONCINE LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06154968382, + 46.6590550612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5adf96c1c7235589c151721b3d837aadbcfbafc6", + "fields": { + "code_commune_insee": "39230", + "nom_de_la_commune": "FONTENU", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6719633574, + 5.81528631175 + ], + "libelle_d_acheminement": "FONTENU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81528631175, + 46.6719633574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cd50fe86da8ef2b2e2e0ca39b53b20df6ca706b", + "fields": { + "code_commune_insee": "39237", + "nom_de_la_commune": "FRAROZ", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7287692147, + 6.09880430783 + ], + "libelle_d_acheminement": "FRAROZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09880430783, + 46.7287692147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a854313e239c5595f5dbaab51d92697615dae635", + "fields": { + "code_commune_insee": "39247", + "nom_de_la_commune": "GENOD", + "code_postal": "39240", + "coordonnees_gps": [ + 46.3574309784, + 5.52980105214 + ], + "libelle_d_acheminement": "GENOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52980105214, + 46.3574309784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fe687d158653673a0d5551f30ffe68242a88219", + "fields": { + "code_commune_insee": "39255", + "nom_de_la_commune": "GIZIA", + "code_postal": "39190", + "coordonnees_gps": [ + 46.5271746657, + 5.42480617606 + ], + "libelle_d_acheminement": "GIZIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42480617606, + 46.5271746657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5fc3c5b0f9b771e6ec8354f81c349526533607e", + "fields": { + "code_commune_insee": "39269", + "nom_de_la_commune": "JEURRE", + "code_postal": "39360", + "coordonnees_gps": [ + 46.3689937737, + 5.70478472529 + ], + "libelle_d_acheminement": "JEURRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70478472529, + 46.3689937737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f295a7eebee921bb0a384d07c45e54da825e297", + "fields": { + "ligne_5": "LAINS", + "code_commune_insee": "39273", + "libelle_d_acheminement": "MONTLAINSIA", + "code_postal": "39320", + "nom_de_la_commune": "MONTLAINSIA", + "coordonnees_gps": [ + 46.3895271897, + 5.48848801863 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48848801863, + 46.3895271897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ca335489b0e6a7aac862377329fcf51b5ac8b9d", + "fields": { + "code_commune_insee": "39274", + "nom_de_la_commune": "LAJOUX", + "code_postal": "01410", + "coordonnees_gps": [ + 46.3914322554, + 6.00896074386 + ], + "libelle_d_acheminement": "LAJOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00896074386, + 46.3914322554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af15ae86a70a880c97fa1bbd24953dccc510b81b", + "fields": { + "code_commune_insee": "39278", + "nom_de_la_commune": "LARGILLAY MARSONNAY", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5560198028, + 5.66558400939 + ], + "libelle_d_acheminement": "LARGILLAY MARSONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66558400939, + 46.5560198028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "381eb17302adcf1f8ca87c8a3ea2cd498a1ddd0b", + "fields": { + "code_commune_insee": "39279", + "nom_de_la_commune": "LARNAUD", + "code_postal": "39140", + "coordonnees_gps": [ + 46.7068129495, + 5.45782797835 + ], + "libelle_d_acheminement": "LARNAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45782797835, + 46.7068129495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7e8d971f67ddaedf170d80c43097831b5198bc2", + "fields": { + "code_commune_insee": "39284", + "nom_de_la_commune": "LAVANGEOT", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1511519623, + 5.60803139614 + ], + "libelle_d_acheminement": "LAVANGEOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60803139614, + 47.1511519623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70b3b5c9353832b884104b503524988c945c099d", + "fields": { + "ligne_5": "LIZON", + "code_commune_insee": "39286", + "libelle_d_acheminement": "LAVANS LES ST CLAUDE", + "code_postal": "39170", + "nom_de_la_commune": "LAVANS LES ST CLAUDE", + "coordonnees_gps": [ + 46.3901726307, + 5.77719970471 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77719970471, + 46.3901726307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a82d3ea44229e155212bbd55526c3e45238268b", + "fields": { + "ligne_5": "PRATZ", + "code_commune_insee": "39286", + "libelle_d_acheminement": "LAVANS LES ST CLAUDE", + "code_postal": "39170", + "nom_de_la_commune": "LAVANS LES ST CLAUDE", + "coordonnees_gps": [ + 46.3901726307, + 5.77719970471 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77719970471, + 46.3901726307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7fddb7e05eb48bf90d75861769f7a3b14a68495", + "fields": { + "ligne_5": "CHATONNAY", + "code_commune_insee": "39290", + "libelle_d_acheminement": "VALZIN EN PETITE MONTAGNE", + "code_postal": "39240", + "nom_de_la_commune": "VALZIN EN PETITE MONTAGNE", + "coordonnees_gps": [ + 46.4245328121, + 5.60694899546 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60694899546, + 46.4245328121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36b04b5a4629899de6742054f249c3cb3a245362", + "fields": { + "code_commune_insee": "39293", + "nom_de_la_commune": "LESCHERES", + "code_postal": "39170", + "coordonnees_gps": [ + 46.4602324129, + 5.829681829 + ], + "libelle_d_acheminement": "LESCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.829681829, + 46.4602324129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e3d9a4b4c214704e9da77fe6db9efbf078ff9f7", + "fields": { + "code_commune_insee": "39296", + "nom_de_la_commune": "LOMBARD", + "code_postal": "39230", + "coordonnees_gps": [ + 46.7840338435, + 5.50626178194 + ], + "libelle_d_acheminement": "LOMBARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50626178194, + 46.7840338435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "726ea7f749821d7d825b444f9169ceb0c58fffad", + "fields": { + "code_commune_insee": "39297", + "nom_de_la_commune": "LONGCHAUMOIS", + "code_postal": "39400", + "coordonnees_gps": [ + 46.4634160554, + 5.96337151696 + ], + "libelle_d_acheminement": "LONGCHAUMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96337151696, + 46.4634160554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7470f8e7f64b2a55dac813e86ed486b7c376c2f", + "fields": { + "code_commune_insee": "39304", + "nom_de_la_commune": "LE LOUVEROT", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7328180633, + 5.58174416388 + ], + "libelle_d_acheminement": "LE LOUVEROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58174416388, + 46.7328180633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8189e9fc8f7c5ac3bbe539f1c2e74737791e4a77", + "fields": { + "code_commune_insee": "39305", + "nom_de_la_commune": "LA LOYE", + "code_postal": "39380", + "coordonnees_gps": [ + 47.0305064268, + 5.55264274121 + ], + "libelle_d_acheminement": "LA LOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55264274121, + 47.0305064268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3697e350778b8edafde0fa0345b42c25167dc18", + "fields": { + "code_commune_insee": "39317", + "nom_de_la_commune": "LA MARRE", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7337108015, + 5.70313863162 + ], + "libelle_d_acheminement": "LA MARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70313863162, + 46.7337108015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84673176f05b201a967d6618eae12d69b80fdaaa", + "fields": { + "code_commune_insee": "39321", + "nom_de_la_commune": "MENETRU LE VIGNOBLE", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7745566014, + 5.63482619878 + ], + "libelle_d_acheminement": "MENETRU LE VIGNOBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63482619878, + 46.7745566014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eeb4cafadcf25bc376b282ac64896ad5873245d", + "fields": { + "code_commune_insee": "39336", + "nom_de_la_commune": "MOLAIN", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8251611212, + 5.81711896426 + ], + "libelle_d_acheminement": "MOLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81711896426, + 46.8251611212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49ba24947de9c4f5c1e0b11454ca546081e1b265", + "fields": { + "code_commune_insee": "39343", + "nom_de_la_commune": "MONNETAY", + "code_postal": "39320", + "coordonnees_gps": [ + 46.4576810006, + 5.51067177235 + ], + "libelle_d_acheminement": "MONNETAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51067177235, + 46.4576810006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d886880b9e440caf66a6071a44bf6136e903c1f", + "fields": { + "code_commune_insee": "39346", + "nom_de_la_commune": "MONTAGNA LE RECONDUIT", + "code_postal": "39160", + "coordonnees_gps": [ + 46.4549069839, + 5.39107165834 + ], + "libelle_d_acheminement": "MONTAGNA LE RECONDUIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39107165834, + 46.4549069839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45cd42d6a958a39c8ebeeee855f6ff33deaee448", + "fields": { + "code_commune_insee": "39348", + "nom_de_la_commune": "MONTAIGU", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6535706829, + 5.57330995671 + ], + "libelle_d_acheminement": "MONTAIGU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57330995671, + 46.6535706829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74f0494604d01f28ead45d408399803fe8835e07", + "fields": { + "code_commune_insee": "39352", + "nom_de_la_commune": "MONTEPLAIN", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1585531374, + 5.70976407571 + ], + "libelle_d_acheminement": "MONTEPLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70976407571, + 47.1585531374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96a13821e8485c00a90065c39bbd07edc04bac51", + "fields": { + "code_commune_insee": "39363", + "nom_de_la_commune": "MONTREVEL", + "code_postal": "39320", + "coordonnees_gps": [ + 46.4260235257, + 5.49493800211 + ], + "libelle_d_acheminement": "MONTREVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49493800211, + 46.4260235257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cb55d7e7daa898adb86a085db662efdfe9372cf", + "fields": { + "ligne_5": "TANCUA", + "code_commune_insee": "39367", + "libelle_d_acheminement": "MORBIER", + "code_postal": "39400", + "nom_de_la_commune": "MORBIER", + "coordonnees_gps": [ + 46.55692328, + 6.01610878304 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01610878304, + 46.55692328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6260b704e1bbbe4fc4a696da1d6fc0f43d872517", + "fields": { + "ligne_5": "CERTEMERY", + "code_commune_insee": "39370", + "libelle_d_acheminement": "MOUCHARD", + "code_postal": "39330", + "nom_de_la_commune": "MOUCHARD", + "coordonnees_gps": [ + 46.9775766117, + 5.78997395755 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78997395755, + 46.9775766117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41d71f7cb1792e3a6eda8f5e7e00290d7f6776b1", + "fields": { + "code_commune_insee": "39373", + "nom_de_la_commune": "LES MOUSSIERES", + "code_postal": "39310", + "coordonnees_gps": [ + 46.326906853, + 5.87285556861 + ], + "libelle_d_acheminement": "LES MOUSSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87285556861, + 46.326906853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "882866b2d721842904fc1ea418a7f56f2f76d1e0", + "fields": { + "code_commune_insee": "39375", + "nom_de_la_commune": "MOUTONNE", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5305097539, + 5.56657538643 + ], + "libelle_d_acheminement": "MOUTONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56657538643, + 46.5305097539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49da1d0879e9ddab03c4feac38b9c5529700f003", + "fields": { + "ligne_5": "L AUBEPIN", + "code_commune_insee": "39378", + "libelle_d_acheminement": "LES TROIS CHATEAUX", + "code_postal": "39160", + "nom_de_la_commune": "LES TROIS CHATEAUX", + "coordonnees_gps": [ + 46.4197619267, + 5.34914344308 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34914344308, + 46.4197619267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "845e6237e68149b6080717af6edaabe10157e18c", + "fields": { + "code_commune_insee": "39379", + "nom_de_la_commune": "NANCE", + "code_postal": "39140", + "coordonnees_gps": [ + 46.7487669868, + 5.42262133247 + ], + "libelle_d_acheminement": "NANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42262133247, + 46.7487669868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6961089114d2c0a9459ae0d4afb4afdb2489e3f", + "fields": { + "code_commune_insee": "39380", + "nom_de_la_commune": "NANCUISE", + "code_postal": "39270", + "coordonnees_gps": [ + 46.4735098453, + 5.52975664064 + ], + "libelle_d_acheminement": "NANCUISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52975664064, + 46.4735098453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fe649e21c46eb2c10abf4b60e18ca235e31088f", + "fields": { + "code_commune_insee": "39387", + "nom_de_la_commune": "NEVY LES DOLE", + "code_postal": "39380", + "coordonnees_gps": [ + 47.0024558065, + 5.5159174634 + ], + "libelle_d_acheminement": "NEVY LES DOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5159174634, + 47.0024558065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4d8f539cc06cf78c21eb3d8962c210e0dfe7560", + "fields": { + "code_commune_insee": "39388", + "nom_de_la_commune": "NEVY SUR SEILLE", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7343478982, + 5.64536782346 + ], + "libelle_d_acheminement": "NEVY SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64536782346, + 46.7343478982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab78cc3d8b82512234f965c54c7b180386e559a7", + "fields": { + "code_commune_insee": "39390", + "nom_de_la_commune": "NOGNA", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6029026515, + 5.64266648514 + ], + "libelle_d_acheminement": "NOGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64266648514, + 46.6029026515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a0ba4e5193e046276c2a18f75daedf7d7f64c94", + "fields": { + "code_commune_insee": "39392", + "nom_de_la_commune": "OFFLANGES", + "code_postal": "39290", + "coordonnees_gps": [ + 47.2038465796, + 5.56005963623 + ], + "libelle_d_acheminement": "OFFLANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56005963623, + 47.2038465796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f66806b119e8335d0e372d283cc5253e1298fa68", + "fields": { + "code_commune_insee": "39401", + "nom_de_la_commune": "OUSSIERES", + "code_postal": "39800", + "coordonnees_gps": [ + 46.914654871, + 5.5977384615 + ], + "libelle_d_acheminement": "OUSSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5977384615, + 46.914654871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8252895d48e03c3762afec4f68c9dff316eebc10", + "fields": { + "code_commune_insee": "39404", + "nom_de_la_commune": "PANNESSIERES", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6983683105, + 5.59466589018 + ], + "libelle_d_acheminement": "PANNESSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59466589018, + 46.6983683105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d72d21c7f9d29d7d8570f864ba217e632d6b583b", + "fields": { + "code_commune_insee": "39407", + "nom_de_la_commune": "PASSENANS", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8041484132, + 5.62414168281 + ], + "libelle_d_acheminement": "PASSENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62414168281, + 46.8041484132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaa54e52479aa204d63a76040f8f33a359c77516", + "fields": { + "code_commune_insee": "39409", + "nom_de_la_commune": "PEINTRE", + "code_postal": "39290", + "coordonnees_gps": [ + 47.1980003971, + 5.47297179075 + ], + "libelle_d_acheminement": "PEINTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47297179075, + 47.1980003971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b10b1a3797e9130254f0f39bbb2f460a2189002b", + "fields": { + "code_commune_insee": "39422", + "nom_de_la_commune": "PLAINOISEAU", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7252404633, + 5.55598412633 + ], + "libelle_d_acheminement": "PLAINOISEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55598412633, + 46.7252404633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f740353b287fad47517f48cd78e4dfd5701862ca", + "fields": { + "code_commune_insee": "39424", + "nom_de_la_commune": "LES PLANCHES EN MONTAGNE", + "code_postal": "39150", + "coordonnees_gps": [ + 46.6636417264, + 6.00067607182 + ], + "libelle_d_acheminement": "LES PLANCHES EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00067607182, + 46.6636417264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40a864368ff2ea889907d61b36f6f6a040e2b859", + "fields": { + "code_commune_insee": "39427", + "nom_de_la_commune": "PLENISE", + "code_postal": "39250", + "coordonnees_gps": [ + 46.8151075065, + 6.0199524043 + ], + "libelle_d_acheminement": "PLENISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0199524043, + 46.8151075065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73a941a885be80b4a92e407b09723788b8a9b129", + "fields": { + "code_commune_insee": "39434", + "nom_de_la_commune": "POLIGNY", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8222386118, + 5.73292565089 + ], + "libelle_d_acheminement": "POLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73292565089, + 46.8222386118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "180f62cb8f536b863d74bc932247cedc143349b1", + "fields": { + "ligne_5": "FONTENY", + "code_commune_insee": "39436", + "libelle_d_acheminement": "PONT D HERY", + "code_postal": "39110", + "nom_de_la_commune": "PONT D HERY", + "coordonnees_gps": [ + 46.8762807232, + 5.89928454106 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89928454106, + 46.8762807232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "391576ef2ce6ab5df9645be06d4c1b5a9dbce30e", + "fields": { + "ligne_5": "MOUTAINE", + "code_commune_insee": "39436", + "libelle_d_acheminement": "PONT D HERY", + "code_postal": "39110", + "nom_de_la_commune": "PONT D HERY", + "coordonnees_gps": [ + 46.8762807232, + 5.89928454106 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89928454106, + 46.8762807232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa95dc3ccfb8bd02b7fcdee19dc043da7bbb44d1", + "fields": { + "code_commune_insee": "39441", + "nom_de_la_commune": "PREMANON", + "code_postal": "39400", + "coordonnees_gps": [ + 46.4538422377, + 6.03492977371 + ], + "libelle_d_acheminement": "PREMANON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03492977371, + 46.4538422377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1d7ae85954c6f1a628f725d715fc9e5f150633f", + "fields": { + "code_commune_insee": "39443", + "nom_de_la_commune": "PRESILLY", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5577104313, + 5.58192329042 + ], + "libelle_d_acheminement": "PRESILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58192329042, + 46.5577104313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "580891ddf62ae541e1384d72d1906232224de702", + "fields": { + "code_commune_insee": "39454", + "nom_de_la_commune": "RECANOZ", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8075358585, + 5.50670929892 + ], + "libelle_d_acheminement": "RECANOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50670929892, + 46.8075358585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c014887b372810327f98593bf7c064992f9bcb49", + "fields": { + "code_commune_insee": "39463", + "nom_de_la_commune": "ROGNA", + "code_postal": "39360", + "coordonnees_gps": [ + 46.3276553176, + 5.74438712926 + ], + "libelle_d_acheminement": "ROGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74438712926, + 46.3276553176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16cca437c4731fe5ac20911eb58e032c8ca71381", + "fields": { + "code_commune_insee": "39468", + "nom_de_la_commune": "ROTHONAY", + "code_postal": "39270", + "coordonnees_gps": [ + 46.515255602, + 5.52762290044 + ], + "libelle_d_acheminement": "ROTHONAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52762290044, + 46.515255602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ade0b60807652ab8ff393c7a68d690f591bbae58", + "fields": { + "code_commune_insee": "39470", + "nom_de_la_commune": "LES ROUSSES", + "code_postal": "39220", + "coordonnees_gps": [ + 46.4984696055, + 6.07006530541 + ], + "libelle_d_acheminement": "LES ROUSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07006530541, + 46.4984696055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0529d327adcf8396151d3583c4dfd9cedca4ac60", + "fields": { + "ligne_5": "LES RIVIERES", + "code_commune_insee": "39470", + "libelle_d_acheminement": "LES ROUSSES", + "code_postal": "39400", + "nom_de_la_commune": "LES ROUSSES", + "coordonnees_gps": [ + 46.4984696055, + 6.07006530541 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07006530541, + 46.4984696055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4a7fe6287cbf0750eb809d24ef964d1f6ff532e", + "fields": { + "code_commune_insee": "39478", + "nom_de_la_commune": "ST CLAUDE", + "code_postal": "39200", + "coordonnees_gps": [ + 46.408600398, + 5.87556247635 + ], + "libelle_d_acheminement": "ST CLAUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87556247635, + 46.408600398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9cde9b45974ac8fb24061c26b2477ff2530ac8a", + "fields": { + "ligne_5": "CHAUMONT", + "code_commune_insee": "39478", + "libelle_d_acheminement": "ST CLAUDE", + "code_postal": "39200", + "nom_de_la_commune": "ST CLAUDE", + "coordonnees_gps": [ + 46.408600398, + 5.87556247635 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87556247635, + 46.408600398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05781548b11c425ff3cdc4af5ea43f43101e3cfe", + "fields": { + "ligne_5": "MONTMALIN", + "code_commune_insee": "39479", + "libelle_d_acheminement": "ST CYR MONTMALIN", + "code_postal": "39600", + "nom_de_la_commune": "ST CYR MONTMALIN", + "coordonnees_gps": [ + 46.959233635, + 5.72305044676 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72305044676, + 46.959233635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27e6ba91de85393fb846d1c8f00f8ba4fb71e450", + "fields": { + "ligne_5": "ST LUPICIN", + "code_commune_insee": "39491", + "libelle_d_acheminement": "COTEAUX DU LIZON", + "code_postal": "39170", + "nom_de_la_commune": "COTEAUX DU LIZON", + "coordonnees_gps": [ + 46.4096809138, + 5.7860900246 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7860900246, + 46.4096809138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abae1671ae204237a8080d208f21e4af64c5076e", + "fields": { + "ligne_5": "NERMIER", + "code_commune_insee": "39504", + "libelle_d_acheminement": "SARROGNA", + "code_postal": "39270", + "nom_de_la_commune": "SARROGNA", + "coordonnees_gps": [ + 46.4739811377, + 5.61763286818 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61763286818, + 46.4739811377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d584ed33a7575afabfd2ea604ffbe7ef8ee83cb", + "fields": { + "code_commune_insee": "39508", + "nom_de_la_commune": "SELLIERES", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8254197035, + 5.55675238512 + ], + "libelle_d_acheminement": "SELLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55675238512, + 46.8254197035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aa30a09d77bf662572ab556ecbe7703971893c9", + "fields": { + "ligne_5": "SEPTMONCEL", + "code_commune_insee": "39510", + "libelle_d_acheminement": "SEPTMONCEL LES MOLUNES", + "code_postal": "39310", + "nom_de_la_commune": "SEPTMONCEL LES MOLUNES", + "coordonnees_gps": [ + 46.3731296175, + 5.9231555329 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9231555329, + 46.3731296175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afb365788dc407c64837914b9b870c7307469102", + "fields": { + "code_commune_insee": "39522", + "nom_de_la_commune": "SUPT", + "code_postal": "39300", + "coordonnees_gps": [ + 46.8540902792, + 5.9817269733 + ], + "libelle_d_acheminement": "SUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9817269733, + 46.8540902792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adc46e6de0d6e5720b2515da4185e04bb61908b9", + "fields": { + "code_commune_insee": "39527", + "nom_de_la_commune": "TAXENNE", + "code_postal": "39350", + "coordonnees_gps": [ + 47.2216655725, + 5.68668052048 + ], + "libelle_d_acheminement": "TAXENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68668052048, + 47.2216655725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7931deaa1977c14b544b9de85eef0345f96747dc", + "fields": { + "code_commune_insee": "39529", + "nom_de_la_commune": "THESY", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9050803544, + 5.92892150176 + ], + "libelle_d_acheminement": "THESY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92892150176, + 46.9050803544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fa964e34b6d7be83fa5c887fdb5c1ad558393dc", + "fields": { + "ligne_5": "THOIRETTE", + "code_commune_insee": "39530", + "libelle_d_acheminement": "THOIRETTE COISIA", + "code_postal": "39240", + "nom_de_la_commune": "THOIRETTE COISIA", + "coordonnees_gps": [ + 46.2790299356, + 5.52403173219 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52403173219, + 46.2790299356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "178428894358eddd7aa8c20d6a48d73e7d8e85bb", + "fields": { + "code_commune_insee": "39534", + "nom_de_la_commune": "LA TOUR DU MEIX", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5234739504, + 5.66329877831 + ], + "libelle_d_acheminement": "LA TOUR DU MEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66329877831, + 46.5234739504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b25d811e1fdbe8cd1415fb93016416545f954ad6", + "fields": { + "code_commune_insee": "39546", + "nom_de_la_commune": "VAUDREY", + "code_postal": "39380", + "coordonnees_gps": [ + 46.9662782086, + 5.62672865692 + ], + "libelle_d_acheminement": "VAUDREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62672865692, + 46.9662782086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83fcd1a5f28ac54847ae303b9b220e42634d7229", + "fields": { + "code_commune_insee": "39559", + "nom_de_la_commune": "LA VIEILLE LOYE", + "code_postal": "39380", + "coordonnees_gps": [ + 47.05632725, + 5.63130626887 + ], + "libelle_d_acheminement": "LA VIEILLE LOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63130626887, + 47.05632725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d33b6f49fc176055a6b394891a38018545eb3036", + "fields": { + "code_commune_insee": "39573", + "nom_de_la_commune": "VILLETTE LES DOLE", + "code_postal": "39100", + "coordonnees_gps": [ + 47.0447105798, + 5.49409739566 + ], + "libelle_d_acheminement": "VILLETTE LES DOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49409739566, + 47.0447105798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42a44fc40a5c7bcddfe34fe2242dc3397793bd19", + "fields": { + "ligne_5": "BONNAUD", + "code_commune_insee": "39576", + "libelle_d_acheminement": "VAL SONNETTE", + "code_postal": "39190", + "nom_de_la_commune": "VAL SONNETTE", + "coordonnees_gps": [ + 46.606775751, + 5.46350720419 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46350720419, + 46.606775751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97d157ddf5e0d593a2ac5afd19f65eaa8c313143", + "fields": { + "ligne_5": "GRUSSE", + "code_commune_insee": "39576", + "libelle_d_acheminement": "VAL SONNETTE", + "code_postal": "39190", + "nom_de_la_commune": "VAL SONNETTE", + "coordonnees_gps": [ + 46.606775751, + 5.46350720419 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46350720419, + 46.606775751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "838c97dd0fdb25dafe700bca739184bb97fb8dc5", + "fields": { + "ligne_5": "VINCELLES", + "code_commune_insee": "39576", + "libelle_d_acheminement": "VAL SONNETTE", + "code_postal": "39190", + "nom_de_la_commune": "VAL SONNETTE", + "coordonnees_gps": [ + 46.606775751, + 5.46350720419 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46350720419, + 46.606775751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5407443e599b8ec7aebfd0e9ac96657c2d38e0b7", + "fields": { + "code_commune_insee": "39581", + "nom_de_la_commune": "VITREUX", + "code_postal": "39350", + "coordonnees_gps": [ + 47.2539408578, + 5.67565099235 + ], + "libelle_d_acheminement": "VITREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67565099235, + 47.2539408578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24ea4a593302c9b8ff342687c2321e7edb1c99ee", + "fields": { + "ligne_5": "VALFIN SUR VALOUSE", + "code_commune_insee": "39583", + "libelle_d_acheminement": "VOSBLES VALFIN", + "code_postal": "39240", + "nom_de_la_commune": "VOSBLES VALFIN", + "coordonnees_gps": [ + 46.330813164, + 5.52161214243 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52161214243, + 46.330813164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe83647d5e0241beea34a695379f79d8aafa7ff7", + "fields": { + "code_commune_insee": "39586", + "nom_de_la_commune": "ARESCHES", + "code_postal": "39110", + "coordonnees_gps": [ + 46.8933326292, + 5.91985610861 + ], + "libelle_d_acheminement": "ARESCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91985610861, + 46.8933326292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff775d7dd5d9bb0eab800f8e464f8d4f4987f224", + "fields": { + "code_commune_insee": "40003", + "nom_de_la_commune": "ANGOUME", + "code_postal": "40990", + "coordonnees_gps": [ + 43.7003558941, + -1.14195857021 + ], + "libelle_d_acheminement": "ANGOUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14195857021, + 43.7003558941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d47c7f320f0ddf265b2f85ec801e6c0ff4f09fe5", + "fields": { + "code_commune_insee": "40004", + "nom_de_la_commune": "ANGRESSE", + "code_postal": "40150", + "coordonnees_gps": [ + 43.6586092575, + -1.36340493112 + ], + "libelle_d_acheminement": "ANGRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36340493112, + 43.6586092575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce8b1c53a469765ac796900b0fe6f151c135ff28", + "fields": { + "code_commune_insee": "40016", + "nom_de_la_commune": "AUBAGNAN", + "code_postal": "40700", + "coordonnees_gps": [ + 43.66506931, + -0.496132903423 + ], + "libelle_d_acheminement": "AUBAGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.496132903423, + 43.66506931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "609897b26916130e4956c8c7a8310093edf509ff", + "fields": { + "code_commune_insee": "40019", + "nom_de_la_commune": "AUREILHAN", + "code_postal": "40200", + "coordonnees_gps": [ + 44.2117478981, + -1.1894638558 + ], + "libelle_d_acheminement": "AUREILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1894638558, + 44.2117478981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b3da1a50c291f5e5f2a621cc6573dc8f1f5f89f", + "fields": { + "code_commune_insee": "40021", + "nom_de_la_commune": "AZUR", + "code_postal": "40140", + "coordonnees_gps": [ + 43.798488604, + -1.29632205852 + ], + "libelle_d_acheminement": "AZUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29632205852, + 43.798488604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aed7e921b36205d92008c46bdffee1bb6487efb", + "fields": { + "code_commune_insee": "40022", + "nom_de_la_commune": "BAHUS SOUBIRAN", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6728345213, + -0.345658334641 + ], + "libelle_d_acheminement": "BAHUS SOUBIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.345658334641, + 43.6728345213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d247ce57ae887615b9674da15ebe47bba6f9c389", + "fields": { + "code_commune_insee": "40025", + "nom_de_la_commune": "BASCONS", + "code_postal": "40090", + "coordonnees_gps": [ + 43.8308003292, + -0.424817437129 + ], + "libelle_d_acheminement": "BASCONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.424817437129, + 43.8308003292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4ee640ca17a08d53f138ef948b5722922f1c75c", + "fields": { + "code_commune_insee": "40035", + "nom_de_la_commune": "BENESSE LES DAX", + "code_postal": "40180", + "coordonnees_gps": [ + 43.6437620659, + -1.03880590528 + ], + "libelle_d_acheminement": "BENESSE LES DAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03880590528, + 43.6437620659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e0998de5967048c4795768fbd17116431625c18", + "fields": { + "code_commune_insee": "40039", + "nom_de_la_commune": "BETBEZER D ARMAGNAC", + "code_postal": "40240", + "coordonnees_gps": [ + 43.9759245125, + -0.165215093559 + ], + "libelle_d_acheminement": "BETBEZER D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.165215093559, + 43.9759245125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ffaa62dae14710f0d97f5cb95abf2f567bc5fc2", + "fields": { + "code_commune_insee": "40041", + "nom_de_la_commune": "BEYRIES", + "code_postal": "40700", + "coordonnees_gps": [ + 43.5643183828, + -0.639849466335 + ], + "libelle_d_acheminement": "BEYRIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.639849466335, + 43.5643183828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2139f4c1988a891a31f129bb3c1bfdc7b5d0f35e", + "fields": { + "code_commune_insee": "40042", + "nom_de_la_commune": "BIARROTTE", + "code_postal": "40390", + "coordonnees_gps": [ + 43.5574062993, + -1.27377772361 + ], + "libelle_d_acheminement": "BIARROTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27377772361, + 43.5574062993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34634a180effd2137917ca03936f6fda7d8fb205", + "fields": { + "code_commune_insee": "40050", + "nom_de_la_commune": "BOSTENS", + "code_postal": "40090", + "coordonnees_gps": [ + 43.9697953116, + -0.369044479854 + ], + "libelle_d_acheminement": "BOSTENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.369044479854, + 43.9697953116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9e704190fc8043946e0c4f2c170dfda1d984e23", + "fields": { + "code_commune_insee": "40064", + "nom_de_la_commune": "CANENX ET REAUT", + "code_postal": "40090", + "coordonnees_gps": [ + 43.9990336487, + -0.464721878442 + ], + "libelle_d_acheminement": "CANENX ET REAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.464721878442, + 43.9990336487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ce2948f68dcea23b5d19c51ae71466b1ade6293", + "fields": { + "code_commune_insee": "40065", + "nom_de_la_commune": "CAPBRETON", + "code_postal": "40130", + "coordonnees_gps": [ + 43.6323255498, + -1.42907243956 + ], + "libelle_d_acheminement": "CAPBRETON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42907243956, + 43.6323255498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d281eaeae762acc38ea56ec8e3db98414d4bc659", + "fields": { + "code_commune_insee": "40070", + "nom_de_la_commune": "CASTANDET", + "code_postal": "40270", + "coordonnees_gps": [ + 43.8073545404, + -0.352224623353 + ], + "libelle_d_acheminement": "CASTANDET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.352224623353, + 43.8073545404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96ec4532106f57372a0333f7cced6f625023b787", + "fields": { + "code_commune_insee": "40071", + "nom_de_la_commune": "CASTELNAU CHALOSSE", + "code_postal": "40360", + "coordonnees_gps": [ + 43.6593581505, + -0.852237101621 + ], + "libelle_d_acheminement": "CASTELNAU CHALOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.852237101621, + 43.6593581505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db7b7fb41f3047312e498c9f40904c39f94783b7", + "fields": { + "code_commune_insee": "40076", + "nom_de_la_commune": "CAUNA", + "code_postal": "40500", + "coordonnees_gps": [ + 43.782855551, + -0.641043068936 + ], + "libelle_d_acheminement": "CAUNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.641043068936, + 43.782855551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c079e78c7994ccb42cf44233153dfb6acbdbb9c9", + "fields": { + "code_commune_insee": "40089", + "nom_de_la_commune": "DOAZIT", + "code_postal": "40700", + "coordonnees_gps": [ + 43.6926736265, + -0.645863331273 + ], + "libelle_d_acheminement": "DOAZIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.645863331273, + 43.6926736265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "476adfb26f032e2b9ad85a8e947b42486f7651be", + "fields": { + "code_commune_insee": "40090", + "nom_de_la_commune": "DONZACQ", + "code_postal": "40360", + "coordonnees_gps": [ + 43.6591843115, + -0.806382992086 + ], + "libelle_d_acheminement": "DONZACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.806382992086, + 43.6591843115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeb229cef8dac80525fbcafa113ac96cabbb767b", + "fields": { + "code_commune_insee": "40094", + "nom_de_la_commune": "ESCOURCE", + "code_postal": "40210", + "coordonnees_gps": [ + 44.1659417112, + -1.04071046156 + ], + "libelle_d_acheminement": "ESCOURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04071046156, + 44.1659417112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a34e879561015598ce70a879dfc2d00493902a93", + "fields": { + "code_commune_insee": "40098", + "nom_de_la_commune": "EYRES MONCUBE", + "code_postal": "40500", + "coordonnees_gps": [ + 43.7148219031, + -0.552172666549 + ], + "libelle_d_acheminement": "EYRES MONCUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.552172666549, + 43.7148219031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06bdc3d48be45b297ecaedebe750f57c764f4ac1", + "fields": { + "code_commune_insee": "40099", + "nom_de_la_commune": "FARGUES", + "code_postal": "40500", + "coordonnees_gps": [ + 43.7251767308, + -0.451258417068 + ], + "libelle_d_acheminement": "FARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.451258417068, + 43.7251767308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adcb1ae77870f8cdd94c2d1b26e9f5898f9ec48e", + "fields": { + "code_commune_insee": "40100", + "nom_de_la_commune": "LE FRECHE", + "code_postal": "40190", + "coordonnees_gps": [ + 43.92543698, + -0.244737215406 + ], + "libelle_d_acheminement": "LE FRECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.244737215406, + 43.92543698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e452a32be3084a5af04fbe0d6adfcf12beb8806", + "fields": { + "code_commune_insee": "40101", + "nom_de_la_commune": "GAAS", + "code_postal": "40350", + "coordonnees_gps": [ + 43.6103431996, + -1.04133365689 + ], + "libelle_d_acheminement": "GAAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04133365689, + 43.6103431996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "080ba31e1dc8a4056391042a1ac12b8c9bd6131f", + "fields": { + "code_commune_insee": "40104", + "nom_de_la_commune": "GAMARDE LES BAINS", + "code_postal": "40380", + "coordonnees_gps": [ + 43.7278148495, + -0.872597495596 + ], + "libelle_d_acheminement": "GAMARDE LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.872597495596, + 43.7278148495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af5986611f53191474055e65ba296d1f8b43f0e9", + "fields": { + "code_commune_insee": "40108", + "nom_de_la_commune": "GASTES", + "code_postal": "40160", + "coordonnees_gps": [ + 44.3206614614, + -1.19398557217 + ], + "libelle_d_acheminement": "GASTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19398557217, + 44.3206614614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9226017d9876500532c53bf837651af7df423a8", + "fields": { + "code_commune_insee": "40122", + "nom_de_la_commune": "HAUT MAUCO", + "code_postal": "40280", + "coordonnees_gps": [ + 43.8292265274, + -0.562242768558 + ], + "libelle_d_acheminement": "HAUT MAUCO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.562242768558, + 43.8292265274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a971355ac3d83b9f0feef08d630ef0270ebec1c", + "fields": { + "code_commune_insee": "40132", + "nom_de_la_commune": "LABATUT", + "code_postal": "40300", + "coordonnees_gps": [ + 43.5522821806, + -0.998234258589 + ], + "libelle_d_acheminement": "LABATUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.998234258589, + 43.5522821806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7ea45e2315573c5061cdbc15f8c3afd84ea4114", + "fields": { + "code_commune_insee": "40136", + "nom_de_la_commune": "LACAJUNTE", + "code_postal": "40320", + "coordonnees_gps": [ + 43.5898300632, + -0.418995024146 + ], + "libelle_d_acheminement": "LACAJUNTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.418995024146, + 43.5898300632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b9e81746d297968968c3e075b20d3eacfe3ad62", + "fields": { + "code_commune_insee": "40141", + "nom_de_la_commune": "LAHOSSE", + "code_postal": "40250", + "coordonnees_gps": [ + 43.7126711981, + -0.788723585467 + ], + "libelle_d_acheminement": "LAHOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.788723585467, + 43.7126711981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b38058fdf9608c040089ff3d8837b3f47b4e6f8a", + "fields": { + "code_commune_insee": "40143", + "nom_de_la_commune": "LAMOTHE", + "code_postal": "40250", + "coordonnees_gps": [ + 43.7965160092, + -0.660546557515 + ], + "libelle_d_acheminement": "LAMOTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.660546557515, + 43.7965160092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62960e2bf0fc7342abda83cac447da6d3047aa66", + "fields": { + "code_commune_insee": "40144", + "nom_de_la_commune": "LARBEY", + "code_postal": "40250", + "coordonnees_gps": [ + 43.7034733507, + -0.734220023815 + ], + "libelle_d_acheminement": "LARBEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.734220023815, + 43.7034733507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f91bda5907908a6933ed710a9f75e26e71e909e8", + "fields": { + "code_commune_insee": "40149", + "nom_de_la_commune": "LENCOUACQ", + "code_postal": "40120", + "coordonnees_gps": [ + 44.1499967564, + -0.390748526935 + ], + "libelle_d_acheminement": "LENCOUACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.390748526935, + 44.1499967564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "868bb20bc323c7e660458d22841247862fbeb8a2", + "fields": { + "code_commune_insee": "40157", + "nom_de_la_commune": "LIT ET MIXE", + "code_postal": "40170", + "coordonnees_gps": [ + 44.0200072678, + -1.2760654515 + ], + "libelle_d_acheminement": "LIT ET MIXE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2760654515, + 44.0200072678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c5d7d08625e3a31a035f6d07b00125dd6d9a782", + "fields": { + "code_commune_insee": "40160", + "nom_de_la_commune": "LOURQUEN", + "code_postal": "40250", + "coordonnees_gps": [ + 43.7319897674, + -0.793463231872 + ], + "libelle_d_acheminement": "LOURQUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.793463231872, + 43.7319897674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a742f8a56b948b5a5f13bbbf5596e59afd086bb7", + "fields": { + "code_commune_insee": "40163", + "nom_de_la_commune": "LUE", + "code_postal": "40210", + "coordonnees_gps": [ + 44.2377202505, + -0.9809457884 + ], + "libelle_d_acheminement": "LUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.9809457884, + 44.2377202505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24476a662dd681dbfeb7305faa614afe4d91725d", + "fields": { + "code_commune_insee": "40168", + "nom_de_la_commune": "MAGESCQ", + "code_postal": "40140", + "coordonnees_gps": [ + 43.7734560223, + -1.19972400188 + ], + "libelle_d_acheminement": "MAGESCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19972400188, + 43.7734560223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f25420fd1c484fe5884570aa9063ee2e7bf682e8", + "fields": { + "code_commune_insee": "40178", + "nom_de_la_commune": "MAZEROLLES", + "code_postal": "40090", + "coordonnees_gps": [ + 43.8855485291, + -0.435459254424 + ], + "libelle_d_acheminement": "MAZEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.435459254424, + 43.8855485291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5409aa6c85346b4753cb22641a73cbfbc255d2a9", + "fields": { + "code_commune_insee": "40188", + "nom_de_la_commune": "MOMUY", + "code_postal": "40700", + "coordonnees_gps": [ + 43.616711786, + -0.63979012639 + ], + "libelle_d_acheminement": "MOMUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63979012639, + 43.616711786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c50264284d698939031d95f6b8bd6906351d14cc", + "fields": { + "code_commune_insee": "40190", + "nom_de_la_commune": "MONSEGUR", + "code_postal": "40700", + "coordonnees_gps": [ + 43.6151818106, + -0.545319135414 + ], + "libelle_d_acheminement": "MONSEGUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.545319135414, + 43.6151818106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdbc604d4911a43c425c869a2afdfd77180a639e", + "fields": { + "code_commune_insee": "40194", + "nom_de_la_commune": "MONTFORT EN CHALOSSE", + "code_postal": "40380", + "coordonnees_gps": [ + 43.7042977993, + -0.836338362892 + ], + "libelle_d_acheminement": "MONTFORT EN CHALOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.836338362892, + 43.7042977993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a1dfc712e59b81f62352357fbe81dd09bdec56d", + "fields": { + "code_commune_insee": "40203", + "nom_de_la_commune": "NASSIET", + "code_postal": "40330", + "coordonnees_gps": [ + 43.5984910447, + -0.68911731976 + ], + "libelle_d_acheminement": "NASSIET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68911731976, + 43.5984910447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5888234ab1ce25087fc8afefc2bb4c814e738b3", + "fields": { + "code_commune_insee": "40206", + "nom_de_la_commune": "OEYREGAVE", + "code_postal": "40300", + "coordonnees_gps": [ + 43.5277445568, + -1.09893426227 + ], + "libelle_d_acheminement": "OEYREGAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09893426227, + 43.5277445568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33058c2bc619a95d60996dd6890ff3abf59588ff", + "fields": { + "code_commune_insee": "40217", + "nom_de_la_commune": "PARENTIS EN BORN", + "code_postal": "40160", + "coordonnees_gps": [ + 44.3452523952, + -1.06520105528 + ], + "libelle_d_acheminement": "PARENTIS EN BORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06520105528, + 44.3452523952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6570e9be5eb24309619dea5bc868cc6e0218d313", + "fields": { + "code_commune_insee": "40221", + "nom_de_la_commune": "PERQUIE", + "code_postal": "40190", + "coordonnees_gps": [ + 43.8652740787, + -0.259063965036 + ], + "libelle_d_acheminement": "PERQUIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.259063965036, + 43.8652740787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e42efea7c9bcecd1cb5bfef526c5c47b4396fb8", + "fields": { + "code_commune_insee": "40222", + "nom_de_la_commune": "PEY", + "code_postal": "40300", + "coordonnees_gps": [ + 43.6159999554, + -1.20840982876 + ], + "libelle_d_acheminement": "PEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20840982876, + 43.6159999554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b34bbefb0fa5757b6b0cafa3d5741f18be3d258", + "fields": { + "code_commune_insee": "40223", + "nom_de_la_commune": "PEYRE", + "code_postal": "40700", + "coordonnees_gps": [ + 43.571666656, + -0.557762855365 + ], + "libelle_d_acheminement": "PEYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.557762855365, + 43.571666656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "438061895735ea480255d9ed28b18bbe8bb4c913", + "fields": { + "code_commune_insee": "40224", + "nom_de_la_commune": "PEYREHORADE", + "code_postal": "40300", + "coordonnees_gps": [ + 43.5583873014, + -1.10698952951 + ], + "libelle_d_acheminement": "PEYREHORADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10698952951, + 43.5583873014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3e1f2fe13ab502ddaca89d66a9b8b310d05596f", + "fields": { + "code_commune_insee": "40229", + "nom_de_la_commune": "PONTENX LES FORGES", + "code_postal": "40200", + "coordonnees_gps": [ + 44.2548041372, + -1.08797105865 + ], + "libelle_d_acheminement": "PONTENX LES FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08797105865, + 44.2548041372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a85afaeb8b7ae78bf2e9cc710f157db6c831514d", + "fields": { + "code_commune_insee": "40234", + "nom_de_la_commune": "POUYDESSEAUX", + "code_postal": "40120", + "coordonnees_gps": [ + 43.9875783387, + -0.350021938022 + ], + "libelle_d_acheminement": "POUYDESSEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.350021938022, + 43.9875783387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eac3cdbe6adf0574b7deb3ec984cc2aa98c0fac3", + "fields": { + "code_commune_insee": "40236", + "nom_de_la_commune": "POYARTIN", + "code_postal": "40380", + "coordonnees_gps": [ + 43.6881465627, + -0.865094526104 + ], + "libelle_d_acheminement": "POYARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.865094526104, + 43.6881465627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7636cb0451dfe8edd90d1d8dc59efb9283a68c4d", + "fields": { + "code_commune_insee": "40238", + "nom_de_la_commune": "PUJO LE PLAN", + "code_postal": "40190", + "coordonnees_gps": [ + 43.8618194805, + -0.342281346691 + ], + "libelle_d_acheminement": "PUJO LE PLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.342281346691, + 43.8618194805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdeb0eb1777ea073182964c2abff957bace98d84", + "fields": { + "code_commune_insee": "40239", + "nom_de_la_commune": "PUYOL CAZALET", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6054018969, + -0.401096682723 + ], + "libelle_d_acheminement": "PUYOL CAZALET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.401096682723, + 43.6054018969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37ae6f1a254b3b3f4586232aaeb2e6d821aaca48", + "fields": { + "ligne_5": "BOOS", + "code_commune_insee": "40243", + "libelle_d_acheminement": "RION DES LANDES", + "code_postal": "40370", + "nom_de_la_commune": "RION DES LANDES", + "coordonnees_gps": [ + 43.9348192825, + -0.933954728483 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.933954728483, + 43.9348192825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c0a569fb3c17fab0b0278b01006881513fcab96", + "fields": { + "code_commune_insee": "40245", + "nom_de_la_commune": "ROQUEFORT", + "code_postal": "40120", + "coordonnees_gps": [ + 44.0367351546, + -0.326573945505 + ], + "libelle_d_acheminement": "ROQUEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.326573945505, + 44.0367351546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f976016d70a91271493e870d480122e477177141", + "fields": { + "code_commune_insee": "40258", + "nom_de_la_commune": "STE FOY", + "code_postal": "40190", + "coordonnees_gps": [ + 43.9353210525, + -0.326805898415 + ], + "libelle_d_acheminement": "STE FOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.326805898415, + 43.9353210525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf6a1ff25531a310a2138e54fec098fa3bf8e416", + "fields": { + "code_commune_insee": "40270", + "nom_de_la_commune": "ST LOUBOUER", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6802066346, + -0.418381695842 + ], + "libelle_d_acheminement": "ST LOUBOUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.418381695842, + 43.6802066346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdfbff354f941c88f8bcb29932921ca2f6b3b763", + "fields": { + "code_commune_insee": "40271", + "nom_de_la_commune": "STE MARIE DE GOSSE", + "code_postal": "40390", + "coordonnees_gps": [ + 43.5519446169, + -1.23258094215 + ], + "libelle_d_acheminement": "STE MARIE DE GOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23258094215, + 43.5519446169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee4e0da25151124c51ccd90a35570efc34612a5e", + "fields": { + "code_commune_insee": "40276", + "nom_de_la_commune": "ST MICHEL ESCALUS", + "code_postal": "40550", + "coordonnees_gps": [ + 43.8816211281, + -1.25173443274 + ], + "libelle_d_acheminement": "ST MICHEL ESCALUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25173443274, + 43.8816211281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "350b013a132c2b45189548a28cb3d9f35358dfab", + "fields": { + "code_commune_insee": "40280", + "nom_de_la_commune": "ST PERDON", + "code_postal": "40090", + "coordonnees_gps": [ + 43.876642393, + -0.592344644048 + ], + "libelle_d_acheminement": "ST PERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.592344644048, + 43.876642393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c8b70b182aeb6d8eefeea6bd308eecf48f5e8ff", + "fields": { + "code_commune_insee": "40284", + "nom_de_la_commune": "ST VINCENT DE TYROSSE", + "code_postal": "40230", + "coordonnees_gps": [ + 43.659126452, + -1.30038486512 + ], + "libelle_d_acheminement": "ST VINCENT DE TYROSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30038486512, + 43.659126452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ebfe6a649d2246e6d6a34af0fb8964688067c67", + "fields": { + "code_commune_insee": "40285", + "nom_de_la_commune": "ST YAGUEN", + "code_postal": "40400", + "coordonnees_gps": [ + 43.9021086709, + -0.742102443672 + ], + "libelle_d_acheminement": "ST YAGUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.742102443672, + 43.9021086709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "936b91c24efa2337884c83c952f03f5a1402d4d2", + "fields": { + "code_commune_insee": "40292", + "nom_de_la_commune": "SAUBRIGUES", + "code_postal": "40230", + "coordonnees_gps": [ + 43.6077345999, + -1.32232554723 + ], + "libelle_d_acheminement": "SAUBRIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32232554723, + 43.6077345999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8c1a5fba45a9618676f09b3caff18aef64fe0dc", + "fields": { + "code_commune_insee": "40295", + "nom_de_la_commune": "SAUGNACQ ET MURET", + "code_postal": "40410", + "coordonnees_gps": [ + 44.3899336803, + -0.855507920611 + ], + "libelle_d_acheminement": "SAUGNACQ ET MURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.855507920611, + 44.3899336803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c6a374a5040c4d7e43abe3f2a2d9cb9e0d80f2f", + "fields": { + "code_commune_insee": "40303", + "nom_de_la_commune": "SOLFERINO", + "code_postal": "40210", + "coordonnees_gps": [ + 44.1265617122, + -0.900366369017 + ], + "libelle_d_acheminement": "SOLFERINO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.900366369017, + 44.1265617122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b47efebef45f4e5fd1d4df4adc66691a0213244f", + "fields": { + "code_commune_insee": "40308", + "nom_de_la_commune": "SORT EN CHALOSSE", + "code_postal": "40180", + "coordonnees_gps": [ + 43.6822168772, + -0.92522663968 + ], + "libelle_d_acheminement": "SORT EN CHALOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92522663968, + 43.6822168772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23d96c5b7697e5e53c8e8231eed73142266fbb4b", + "fields": { + "code_commune_insee": "40322", + "nom_de_la_commune": "UZA", + "code_postal": "40170", + "coordonnees_gps": [ + 44.0334990797, + -1.19626378992 + ], + "libelle_d_acheminement": "UZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19626378992, + 44.0334990797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfaaee71735ffd2ea586e8b83038977ef5e4fcd3", + "fields": { + "code_commune_insee": "40323", + "nom_de_la_commune": "VERT", + "code_postal": "40420", + "coordonnees_gps": [ + 44.0943105586, + -0.611631223993 + ], + "libelle_d_acheminement": "VERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.611631223993, + 44.0943105586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59b4d5f4661fd3cc8e782b0390612086c5b73bab", + "fields": { + "code_commune_insee": "41006", + "nom_de_la_commune": "AUTAINVILLE", + "code_postal": "41240", + "coordonnees_gps": [ + 47.8843101298, + 1.42053868965 + ], + "libelle_d_acheminement": "AUTAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42053868965, + 47.8843101298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "885de3d1e60ee2431db7e3d3b0f9dee2b555bf67", + "fields": { + "code_commune_insee": "41012", + "nom_de_la_commune": "BAILLOU", + "code_postal": "41170", + "coordonnees_gps": [ + 47.9837179954, + 0.853704116727 + ], + "libelle_d_acheminement": "BAILLOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.853704116727, + 47.9837179954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38632c4e454cb5a97951fad8ccd552223e3b768a", + "fields": { + "code_commune_insee": "41022", + "nom_de_la_commune": "BOUFFRY", + "code_postal": "41270", + "coordonnees_gps": [ + 48.0100096651, + 1.088414927 + ], + "libelle_d_acheminement": "BOUFFRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.088414927, + 48.0100096651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "207f186f5fce502b84f86503b412c930ccdbec97", + "fields": { + "code_commune_insee": "41029", + "nom_de_la_commune": "CANDE SUR BEUVRON", + "code_postal": "41120", + "coordonnees_gps": [ + 47.5069378563, + 1.26560344876 + ], + "libelle_d_acheminement": "CANDE SUR BEUVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26560344876, + 47.5069378563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0199e59f0dd5dceb37cc1c04b0707572cccfe4df", + "fields": { + "code_commune_insee": "41032", + "nom_de_la_commune": "CHAILLES", + "code_postal": "41120", + "coordonnees_gps": [ + 47.5389507854, + 1.31598876114 + ], + "libelle_d_acheminement": "CHAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31598876114, + 47.5389507854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc7cbbd1cce87a5461462a2fb6e75e83e654739d", + "fields": { + "code_commune_insee": "41034", + "nom_de_la_commune": "CHAMBORD", + "code_postal": "41250", + "coordonnees_gps": [ + 47.6160275858, + 1.54153082337 + ], + "libelle_d_acheminement": "CHAMBORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54153082337, + 47.6160275858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0ef2743144e395a27f7d4a635e06f3ada02f627", + "fields": { + "code_commune_insee": "41041", + "nom_de_la_commune": "LA CHAPELLE VICOMTESSE", + "code_postal": "41270", + "coordonnees_gps": [ + 47.9859108878, + 1.03373014435 + ], + "libelle_d_acheminement": "LA CHAPELLE VICOMTESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03373014435, + 47.9859108878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97a0d3273ee5655016eaff85af308ce02cc57034", + "fields": { + "code_commune_insee": "41042", + "nom_de_la_commune": "CHATEAUVIEUX", + "code_postal": "41110", + "coordonnees_gps": [ + 47.2199501992, + 1.36069389103 + ], + "libelle_d_acheminement": "CHATEAUVIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36069389103, + 47.2199501992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0287b071c8ee5a5e9ba9523a690de924604308be", + "fields": { + "code_commune_insee": "41044", + "nom_de_la_commune": "CHATRES SUR CHER", + "code_postal": "41320", + "coordonnees_gps": [ + 47.2992883629, + 1.93011370714 + ], + "libelle_d_acheminement": "CHATRES SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93011370714, + 47.2992883629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "034c51d43c615019c26ec4dbaa3ee139ca6bff91", + "fields": { + "code_commune_insee": "41051", + "nom_de_la_commune": "CHISSAY EN TOURAINE", + "code_postal": "41400", + "coordonnees_gps": [ + 47.3535043561, + 1.13579761791 + ], + "libelle_d_acheminement": "CHISSAY EN TOURAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13579761791, + 47.3535043561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c05d2533a5ba5acd86a264cab61dbcdd3056fb37", + "fields": { + "ligne_5": "COULANGES", + "code_commune_insee": "41055", + "libelle_d_acheminement": "VALLOIRE SUR CISSE", + "code_postal": "41150", + "nom_de_la_commune": "VALLOIRE SUR CISSE", + "coordonnees_gps": [ + 47.5244470983, + 1.23897400473 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23897400473, + 47.5244470983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c9d7f57380f080e532a8a2e309c1024f98468ce", + "fields": { + "ligne_5": "CONTRES", + "code_commune_insee": "41059", + "libelle_d_acheminement": "LE CONTROIS EN SOLOGNE", + "code_postal": "41700", + "nom_de_la_commune": "LE CONTROIS EN SOLOGNE", + "coordonnees_gps": [ + 47.4210455026, + 1.43621364655 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43621364655, + 47.4210455026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "457f13a3d84681ccc7df5a20be10aadd56bb38ae", + "fields": { + "code_commune_insee": "41061", + "nom_de_la_commune": "CORMERAY", + "code_postal": "41120", + "coordonnees_gps": [ + 47.4861379273, + 1.40302326426 + ], + "libelle_d_acheminement": "CORMERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40302326426, + 47.4861379273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86ca982816c865291ed7007f34306c449a579730", + "fields": { + "code_commune_insee": "41063", + "nom_de_la_commune": "COUFFY", + "code_postal": "41110", + "coordonnees_gps": [ + 47.2486177348, + 1.43680361575 + ], + "libelle_d_acheminement": "COUFFY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43680361575, + 47.2486177348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e440724e9814596af676f4ebdb2c647d16ca3d78", + "fields": { + "code_commune_insee": "41068", + "nom_de_la_commune": "COURMEMIN", + "code_postal": "41230", + "coordonnees_gps": [ + 47.4697320137, + 1.6274781438 + ], + "libelle_d_acheminement": "COURMEMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6274781438, + 47.4697320137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64dacbd58b917aa6e159c7cb1e573531ecf27797", + "fields": { + "code_commune_insee": "41069", + "nom_de_la_commune": "COUR SUR LOIRE", + "code_postal": "41500", + "coordonnees_gps": [ + 47.657935319, + 1.41502499081 + ], + "libelle_d_acheminement": "COUR SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41502499081, + 47.657935319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec2ddaf40024d3ad0796fc6caebf555584f29392", + "fields": { + "ligne_5": "COUTURE SUR LOIR", + "code_commune_insee": "41070", + "libelle_d_acheminement": "VALLEE DE RONSARD", + "code_postal": "41800", + "nom_de_la_commune": "VALLEE DE RONSARD", + "coordonnees_gps": [ + 47.7491446758, + 0.685596092581 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.685596092581, + 47.7491446758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f4f1dff9e164a3cf85892914af8e141a0a67f57", + "fields": { + "code_commune_insee": "41078", + "nom_de_la_commune": "EPUISAY", + "code_postal": "41360", + "coordonnees_gps": [ + 47.8944978835, + 0.927766807558 + ], + "libelle_d_acheminement": "EPUISAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.927766807558, + 47.8944978835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "609acf0a896eb6c3f2e999d48b59d611ec5334f8", + "fields": { + "code_commune_insee": "41087", + "nom_de_la_commune": "FONTAINE LES COTEAUX", + "code_postal": "41800", + "coordonnees_gps": [ + 47.798872695, + 0.835689448447 + ], + "libelle_d_acheminement": "FONTAINE LES COTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.835689448447, + 47.798872695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dc38626dbadcbbf0d03fc664db194a3570c2a18", + "fields": { + "code_commune_insee": "41089", + "nom_de_la_commune": "LA FONTENELLE", + "code_postal": "41270", + "coordonnees_gps": [ + 48.0550550265, + 1.01388615653 + ], + "libelle_d_acheminement": "LA FONTENELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01388615653, + 48.0550550265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "039300b7751c697c539fac2684634c27b95ea123", + "fields": { + "code_commune_insee": "41091", + "nom_de_la_commune": "FOSSE", + "code_postal": "41330", + "coordonnees_gps": [ + 47.6307150923, + 1.27701587955 + ], + "libelle_d_acheminement": "FOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27701587955, + 47.6307150923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "765fc04d6e308c96f1c54e81bcdedfd184584b80", + "fields": { + "code_commune_insee": "41095", + "nom_de_la_commune": "FRETEVAL", + "code_postal": "41160", + "coordonnees_gps": [ + 47.8900107594, + 1.20628228428 + ], + "libelle_d_acheminement": "FRETEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20628228428, + 47.8900107594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a48a6525901c475171609dd2d0d9122bdd30d68b", + "fields": { + "code_commune_insee": "41098", + "nom_de_la_commune": "GOMBERGEAN", + "code_postal": "41310", + "coordonnees_gps": [ + 47.6521361252, + 1.07496641179 + ], + "libelle_d_acheminement": "GOMBERGEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07496641179, + 47.6521361252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97e803a77a6b877c731e49470ee8e1e440c9732f", + "fields": { + "code_commune_insee": "41103", + "nom_de_la_commune": "HUISSEAU EN BEAUCE", + "code_postal": "41310", + "coordonnees_gps": [ + 47.7228645102, + 1.01092284734 + ], + "libelle_d_acheminement": "HUISSEAU EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01092284734, + 47.7228645102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2595262780b2e25c74029b9b45a2624ea8d7b634", + "fields": { + "code_commune_insee": "41123", + "nom_de_la_commune": "MARCHENOIR", + "code_postal": "41370", + "coordonnees_gps": [ + 47.8340531045, + 1.41066062469 + ], + "libelle_d_acheminement": "MARCHENOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41066062469, + 47.8340531045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0df62b85e7dc77701465284239a0e7df71300c0f", + "fields": { + "code_commune_insee": "41126", + "nom_de_la_commune": "MAREUIL SUR CHER", + "code_postal": "41110", + "coordonnees_gps": [ + 47.2756208547, + 1.30313031356 + ], + "libelle_d_acheminement": "MAREUIL SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30313031356, + 47.2756208547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85133880fe83f79774e722fec0893074797236d9", + "fields": { + "code_commune_insee": "41131", + "nom_de_la_commune": "MAZANGE", + "code_postal": "41100", + "coordonnees_gps": [ + 47.8402255423, + 0.948834044312 + ], + "libelle_d_acheminement": "MAZANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.948834044312, + 47.8402255423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a4c897ccf1c01fa1094e2d995d681fa8975112e", + "fields": { + "code_commune_insee": "41136", + "nom_de_la_commune": "MER", + "code_postal": "41500", + "coordonnees_gps": [ + 47.7134200176, + 1.50398022578 + ], + "libelle_d_acheminement": "MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50398022578, + 47.7134200176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "267ab2a2796d49dff69ad0a23e43f5aa57bf8022", + "fields": { + "code_commune_insee": "41145", + "nom_de_la_commune": "MONTHOU SUR BIEVRE", + "code_postal": "41120", + "coordonnees_gps": [ + 47.4622240218, + 1.27087030683 + ], + "libelle_d_acheminement": "MONTHOU SUR BIEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27087030683, + 47.4622240218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ead1d3c4e7a9afd50430fef67caf6f9f078ed6ea", + "fields": { + "code_commune_insee": "41146", + "nom_de_la_commune": "MONTHOU SUR CHER", + "code_postal": "41400", + "coordonnees_gps": [ + 47.351720705, + 1.29095407473 + ], + "libelle_d_acheminement": "MONTHOU SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29095407473, + 47.351720705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6793e590547a3f98299090ebdeeca408de48988a", + "fields": { + "ligne_5": "ST QUENTIN LES TROO", + "code_commune_insee": "41149", + "libelle_d_acheminement": "MONTOIRE SUR LE LOIR", + "code_postal": "41800", + "nom_de_la_commune": "MONTOIRE SUR LE LOIR", + "coordonnees_gps": [ + 47.7650269644, + 0.854948191169 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.854948191169, + 47.7650269644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaf649ce3cf7dbb1063b36aed389e67748365cde", + "fields": { + "ligne_5": "BOURRE", + "code_commune_insee": "41151", + "libelle_d_acheminement": "MONTRICHARD VAL DE CHER", + "code_postal": "41400", + "nom_de_la_commune": "MONTRICHARD VAL DE CHER", + "coordonnees_gps": [ + 47.3602548411, + 1.1835710637 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1835710637, + 47.3602548411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99c1dbba48f34fe03ce2242b53ec2e59dab29eb8", + "fields": { + "ligne_5": "MONTRICHARD", + "code_commune_insee": "41151", + "libelle_d_acheminement": "MONTRICHARD VAL DE CHER", + "code_postal": "41400", + "nom_de_la_commune": "MONTRICHARD VAL DE CHER", + "coordonnees_gps": [ + 47.3602548411, + 1.1835710637 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1835710637, + 47.3602548411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf13dda4bb5d41efd0ae1b228df6b6d4f6560a02", + "fields": { + "code_commune_insee": "41155", + "nom_de_la_commune": "MUIDES SUR LOIRE", + "code_postal": "41500", + "coordonnees_gps": [ + 47.6651395103, + 1.53313366555 + ], + "libelle_d_acheminement": "MUIDES SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53313366555, + 47.6651395103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca090600dcc5536e9072690fcf61cb341ba5e030", + "fields": { + "code_commune_insee": "41160", + "nom_de_la_commune": "NEUVY", + "code_postal": "41250", + "coordonnees_gps": [ + 47.568021007, + 1.5863718132 + ], + "libelle_d_acheminement": "NEUVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5863718132, + 47.568021007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd4fe24ccf2ce46a410698ac2a9f9d4bb40accda", + "fields": { + "code_commune_insee": "41161", + "nom_de_la_commune": "NOUAN LE FUZELIER", + "code_postal": "41600", + "coordonnees_gps": [ + 47.5365531093, + 2.0295223621 + ], + "libelle_d_acheminement": "NOUAN LE FUZELIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0295223621, + 47.5365531093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7794bcf0fdb4af61cb3f478a548368d369f25c7", + "fields": { + "code_commune_insee": "41164", + "nom_de_la_commune": "NOYERS SUR CHER", + "code_postal": "41140", + "coordonnees_gps": [ + 47.2831417944, + 1.41063801702 + ], + "libelle_d_acheminement": "NOYERS SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41063801702, + 47.2831417944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99e4009abd9b7acd364f76a192859d22980e0e76", + "fields": { + "ligne_5": "ONZAIN", + "code_commune_insee": "41167", + "libelle_d_acheminement": "VEUZAIN SUR LOIRE", + "code_postal": "41150", + "nom_de_la_commune": "VEUZAIN SUR LOIRE", + "coordonnees_gps": [ + 47.5123997667, + 1.16507315908 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16507315908, + 47.5123997667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "822b2d2033b075acb85c89b0e8fda1b953592106", + "fields": { + "ligne_5": "STE GEMMES", + "code_commune_insee": "41171", + "libelle_d_acheminement": "OUCQUES LA NOUVELLE", + "code_postal": "41290", + "nom_de_la_commune": "OUCQUES LA NOUVELLE", + "coordonnees_gps": [ + 47.8191691674, + 1.29908240443 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29908240443, + 47.8191691674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c1105a5566768c95cf071b5461848fc9e9f3a7c", + "fields": { + "code_commune_insee": "41172", + "nom_de_la_commune": "OUZOUER LE DOYEN", + "code_postal": "41160", + "coordonnees_gps": [ + 47.9431198106, + 1.34205640205 + ], + "libelle_d_acheminement": "OUZOUER LE DOYEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34205640205, + 47.9431198106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b28ab0b9f4f3058a6c77d75bbc7abb8454dd498f", + "fields": { + "ligne_5": "SEMERVILLE", + "code_commune_insee": "41173", + "libelle_d_acheminement": "BEAUCE LA ROMAINE", + "code_postal": "41160", + "nom_de_la_commune": "BEAUCE LA ROMAINE", + "coordonnees_gps": [ + 47.9026361174, + 1.53361751623 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53361751623, + 47.9026361174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eada3d4c49ba9aa48f31a6bd5d8fd3570027c70", + "fields": { + "code_commune_insee": "41176", + "nom_de_la_commune": "PIERREFITTE SUR SAULDRE", + "code_postal": "41300", + "coordonnees_gps": [ + 47.5270515255, + 2.12726759593 + ], + "libelle_d_acheminement": "PIERREFITTE SUR SAULDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12726759593, + 47.5270515255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78a4b89b219029ac4fb511b26c750aae15e52d92", + "fields": { + "code_commune_insee": "41179", + "nom_de_la_commune": "LE POISLAY", + "code_postal": "41270", + "coordonnees_gps": [ + 48.0706482799, + 1.07027921906 + ], + "libelle_d_acheminement": "LE POISLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07027921906, + 48.0706482799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "000a3104395599947dca53f5f933b4ff6b947df2", + "fields": { + "code_commune_insee": "41180", + "nom_de_la_commune": "PONTLEVOY", + "code_postal": "41400", + "coordonnees_gps": [ + 47.3967107707, + 1.2300894563 + ], + "libelle_d_acheminement": "PONTLEVOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2300894563, + 47.3967107707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e270704c16389f11f168236b600005902fda92d9", + "fields": { + "code_commune_insee": "41182", + "nom_de_la_commune": "PRAY", + "code_postal": "41190", + "coordonnees_gps": [ + 47.6844730122, + 1.11113363302 + ], + "libelle_d_acheminement": "PRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11113363302, + 47.6844730122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be901f64697f0a05fc0a907d54544a49035baa83", + "fields": { + "code_commune_insee": "41195", + "nom_de_la_commune": "ROUGEOU", + "code_postal": "41230", + "coordonnees_gps": [ + 47.3612590702, + 1.54270279933 + ], + "libelle_d_acheminement": "ROUGEOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54270279933, + 47.3612590702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bbc9facaad4b28f8f273194894c73fff1992e18", + "fields": { + "code_commune_insee": "41203", + "nom_de_la_commune": "ST BOHAIRE", + "code_postal": "41330", + "coordonnees_gps": [ + 47.6438472496, + 1.23917912625 + ], + "libelle_d_acheminement": "ST BOHAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23917912625, + 47.6438472496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "307675512a64c8d591b6fb26fd4582d7042ff247", + "fields": { + "code_commune_insee": "41204", + "nom_de_la_commune": "ST CLAUDE DE DIRAY", + "code_postal": "41350", + "coordonnees_gps": [ + 47.6176924713, + 1.41960449512 + ], + "libelle_d_acheminement": "ST CLAUDE DE DIRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41960449512, + 47.6176924713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ee72fd56dbad0b4232a554f88f4d7b74b013754", + "fields": { + "code_commune_insee": "41208", + "nom_de_la_commune": "ST ETIENNE DES GUERETS", + "code_postal": "41190", + "coordonnees_gps": [ + 47.5981445724, + 1.06361410844 + ], + "libelle_d_acheminement": "ST ETIENNE DES GUERETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06361410844, + 47.5981445724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aca78a645b82073c82b09d27e3f5be3ee36fb9ac", + "fields": { + "code_commune_insee": "41222", + "nom_de_la_commune": "ST LOUP", + "code_postal": "41320", + "coordonnees_gps": [ + 47.2551705649, + 1.82390956625 + ], + "libelle_d_acheminement": "ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82390956625, + 47.2551705649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0a9f807a25bb753b416ede4ddbffc9fd5d77b46", + "fields": { + "code_commune_insee": "41226", + "nom_de_la_commune": "ST OUEN", + "code_postal": "41100", + "coordonnees_gps": [ + 47.8279128555, + 1.07133932119 + ], + "libelle_d_acheminement": "ST OUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07133932119, + 47.8279128555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d20f587b56653357315f562777ad1a75dc2ae82", + "fields": { + "code_commune_insee": "41231", + "nom_de_la_commune": "ST VIATRE", + "code_postal": "41210", + "coordonnees_gps": [ + 47.5143980793, + 1.93403680491 + ], + "libelle_d_acheminement": "ST VIATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93403680491, + 47.5143980793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7df20b523a6d168eb96ca2e277cbccb2f70245d4", + "fields": { + "code_commune_insee": "41232", + "nom_de_la_commune": "SALBRIS", + "code_postal": "41300", + "coordonnees_gps": [ + 47.4134591452, + 2.04499057381 + ], + "libelle_d_acheminement": "SALBRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04499057381, + 47.4134591452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12c2848ed4f2ddd85c738692f6650355e784ec3b", + "fields": { + "code_commune_insee": "41235", + "nom_de_la_commune": "SARGE SUR BRAYE", + "code_postal": "41170", + "coordonnees_gps": [ + 47.9281548503, + 0.863555438639 + ], + "libelle_d_acheminement": "SARGE SUR BRAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.863555438639, + 47.9281548503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a44b3b6ced89e989da49ef9cb180cac065cc4c6", + "fields": { + "code_commune_insee": "41237", + "nom_de_la_commune": "SASSAY", + "code_postal": "41700", + "coordonnees_gps": [ + 47.3923085381, + 1.44630857754 + ], + "libelle_d_acheminement": "SASSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44630857754, + 47.3923085381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d3c44c7b6fec95d29fe8ee9487b0af6ce8115f5", + "fields": { + "code_commune_insee": "41238", + "nom_de_la_commune": "SAVIGNY SUR BRAYE", + "code_postal": "41360", + "coordonnees_gps": [ + 47.86966042, + 0.831215929044 + ], + "libelle_d_acheminement": "SAVIGNY SUR BRAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.831215929044, + 47.86966042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da8e50c1085a45d32aafe3d0103e2461589dbc2e", + "fields": { + "code_commune_insee": "41245", + "nom_de_la_commune": "SERIS", + "code_postal": "41500", + "coordonnees_gps": [ + 47.7567732237, + 1.50775532778 + ], + "libelle_d_acheminement": "SERIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50775532778, + 47.7567732237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18fcb44e5bd5c7c3bbbebb4d0552b73a10daf7ab", + "fields": { + "code_commune_insee": "41246", + "nom_de_la_commune": "SEUR", + "code_postal": "41120", + "coordonnees_gps": [ + 47.5120775823, + 1.33780476755 + ], + "libelle_d_acheminement": "SEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33780476755, + 47.5120775823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16200f25147d9326a05f52e6992babecc151a322", + "fields": { + "code_commune_insee": "41247", + "nom_de_la_commune": "SOINGS EN SOLOGNE", + "code_postal": "41230", + "coordonnees_gps": [ + 47.4114968867, + 1.52845454728 + ], + "libelle_d_acheminement": "SOINGS EN SOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52845454728, + 47.4114968867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35f89f754736a7e537a66f3447384d8bd062ecd9", + "fields": { + "ligne_5": "ST AGIL", + "code_commune_insee": "41248", + "libelle_d_acheminement": "COUETRON AU PERCHE", + "code_postal": "41170", + "nom_de_la_commune": "COUETRON AU PERCHE", + "coordonnees_gps": [ + 48.0447092121, + 0.846594759389 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.846594759389, + 48.0447092121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0da38d12ed519be042dc4ba93cfd143d9670805", + "fields": { + "code_commune_insee": "41256", + "nom_de_la_commune": "THEILLAY", + "code_postal": "41300", + "coordonnees_gps": [ + 47.3189665938, + 2.0395588923 + ], + "libelle_d_acheminement": "THEILLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0395588923, + 47.3189665938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "083dc331e656206278fcbb24194d846e2b90cc00", + "fields": { + "code_commune_insee": "41260", + "nom_de_la_commune": "THOURY", + "code_postal": "41220", + "coordonnees_gps": [ + 47.6144182456, + 1.61074783397 + ], + "libelle_d_acheminement": "THOURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61074783397, + 47.6144182456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb71f219b3f0b02789097c73cae2d8db91f8801e", + "fields": { + "code_commune_insee": "41271", + "nom_de_la_commune": "VERNOU EN SOLOGNE", + "code_postal": "41230", + "coordonnees_gps": [ + 47.4985467561, + 1.69294036106 + ], + "libelle_d_acheminement": "VERNOU EN SOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69294036106, + 47.4985467561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31c347145d0a950b62f167635c61a756d21a16f0", + "fields": { + "code_commune_insee": "41275", + "nom_de_la_commune": "LA VILLE AUX CLERCS", + "code_postal": "41160", + "coordonnees_gps": [ + 47.9188435468, + 1.09671366028 + ], + "libelle_d_acheminement": "LA VILLE AUX CLERCS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09671366028, + 47.9188435468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1249cd288b80da5aec556190da371abd10d7ba5", + "fields": { + "code_commune_insee": "41277", + "nom_de_la_commune": "VILLEBOUT", + "code_postal": "41270", + "coordonnees_gps": [ + 47.9872618416, + 1.17317838683 + ], + "libelle_d_acheminement": "VILLEBOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17317838683, + 47.9872618416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f7cdc81328fe1d27b34bf724dd36a88b8791dda", + "fields": { + "code_commune_insee": "41278", + "nom_de_la_commune": "VILLECHAUVE", + "code_postal": "41310", + "coordonnees_gps": [ + 47.6438531799, + 0.949822221437 + ], + "libelle_d_acheminement": "VILLECHAUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.949822221437, + 47.6438531799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2760fdbf50a80af52aa53393825d23e047fb94c", + "fields": { + "code_commune_insee": "41280", + "nom_de_la_commune": "VILLEFRANCHE SUR CHER", + "code_postal": "41200", + "coordonnees_gps": [ + 47.3061059173, + 1.75364567539 + ], + "libelle_d_acheminement": "VILLEFRANCHE SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75364567539, + 47.3061059173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66bdf174c78a6e21d4f735f3ddd0c9abf4601f44", + "fields": { + "code_commune_insee": "41288", + "nom_de_la_commune": "VILLERBON", + "code_postal": "41000", + "coordonnees_gps": [ + 47.664005074, + 1.35678076769 + ], + "libelle_d_acheminement": "VILLERBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35678076769, + 47.664005074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20bf4979ee1b86ff7751eff4a2fa4db6ac908e60", + "fields": { + "code_commune_insee": "41290", + "nom_de_la_commune": "VILLEROMAIN", + "code_postal": "41100", + "coordonnees_gps": [ + 47.7179483833, + 1.14691831404 + ], + "libelle_d_acheminement": "VILLEROMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14691831404, + 47.7179483833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf55311feb90317a40ebf3c5c2d8511a775bb4f0", + "fields": { + "code_commune_insee": "42007", + "nom_de_la_commune": "ARCINGES", + "code_postal": "42460", + "coordonnees_gps": [ + 46.1346681524, + 4.28747149673 + ], + "libelle_d_acheminement": "ARCINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28747149673, + 46.1346681524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd67a55f36b7f044138bb5f76a219579dc84840e", + "fields": { + "code_commune_insee": "42014", + "nom_de_la_commune": "BELLEROCHE", + "code_postal": "42670", + "coordonnees_gps": [ + 46.1603955892, + 4.40905088553 + ], + "libelle_d_acheminement": "BELLEROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40905088553, + 46.1603955892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "240afd082b0c72bf54219b224a95dfbca553cdd9", + "fields": { + "code_commune_insee": "42019", + "nom_de_la_commune": "BOEN SUR LIGNON", + "code_postal": "42130", + "coordonnees_gps": [ + 45.7506601362, + 4.00890511945 + ], + "libelle_d_acheminement": "BOEN SUR LIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00890511945, + 45.7506601362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f80f101c854b958e8a722cb1aa6d01e27b9f43c3", + "fields": { + "code_commune_insee": "42026", + "nom_de_la_commune": "BRIENNON", + "code_postal": "42720", + "coordonnees_gps": [ + 46.1473425939, + 4.07729342349 + ], + "libelle_d_acheminement": "BRIENNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07729342349, + 46.1473425939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "459e28cd01db9627e9f168f1660cd2e271fc65a8", + "fields": { + "code_commune_insee": "42029", + "nom_de_la_commune": "BUSSIERES", + "code_postal": "42510", + "coordonnees_gps": [ + 45.8395855736, + 4.26450714832 + ], + "libelle_d_acheminement": "BUSSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26450714832, + 45.8395855736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c9adf2ee9ccf2bfda73bdc5e48beb44a2d7a730", + "fields": { + "code_commune_insee": "42031", + "nom_de_la_commune": "CALOIRE", + "code_postal": "42240", + "coordonnees_gps": [ + 45.4145267518, + 4.2349238858 + ], + "libelle_d_acheminement": "CALOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2349238858, + 45.4145267518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67774c632324ebfd8dde1ba495ecc2f615981aef", + "fields": { + "code_commune_insee": "42032", + "nom_de_la_commune": "CELLIEU", + "code_postal": "42320", + "coordonnees_gps": [ + 45.5213671549, + 4.53017673396 + ], + "libelle_d_acheminement": "CELLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53017673396, + 45.5213671549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d8f2d993a11e4eddca264776efb83beb495301f", + "fields": { + "code_commune_insee": "42035", + "nom_de_la_commune": "CEZAY", + "code_postal": "42130", + "coordonnees_gps": [ + 45.8025245236, + 3.96521124284 + ], + "libelle_d_acheminement": "CEZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96521124284, + 45.8025245236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3fc0899be4d1e870b7219dc71d867c8d13c6cdd", + "fields": { + "code_commune_insee": "42053", + "nom_de_la_commune": "CHATEAUNEUF", + "code_postal": "42800", + "coordonnees_gps": [ + 45.5146610622, + 4.63386392848 + ], + "libelle_d_acheminement": "CHATEAUNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63386392848, + 45.5146610622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c3d214d035301b1d733aedcf4d23301c85bbd85", + "fields": { + "code_commune_insee": "42064", + "nom_de_la_commune": "CHUYER", + "code_postal": "42410", + "coordonnees_gps": [ + 45.4555253092, + 4.70245486643 + ], + "libelle_d_acheminement": "CHUYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70245486643, + 45.4555253092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25fb0aa78887cec0924975e5ad11cd332df0b1e5", + "fields": { + "code_commune_insee": "42065", + "nom_de_la_commune": "CIVENS", + "code_postal": "42110", + "coordonnees_gps": [ + 45.7678114571, + 4.23353082374 + ], + "libelle_d_acheminement": "CIVENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23353082374, + 45.7678114571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99a0d0c9a6c5ab06386d245bdef44ee2079170ca", + "fields": { + "code_commune_insee": "42068", + "nom_de_la_commune": "COMBRE", + "code_postal": "42840", + "coordonnees_gps": [ + 46.0218651012, + 4.2635295 + ], + "libelle_d_acheminement": "COMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2635295, + 46.0218651012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "633eae5b15187f91e508251c75f08f59df694761", + "fields": { + "code_commune_insee": "42074", + "nom_de_la_commune": "COUTOUVRE", + "code_postal": "42460", + "coordonnees_gps": [ + 46.0732580486, + 4.20593657124 + ], + "libelle_d_acheminement": "COUTOUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20593657124, + 46.0732580486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d0477e335f531ee1c26c73469f799c53d5b5543", + "fields": { + "code_commune_insee": "42076", + "nom_de_la_commune": "CREMEAUX", + "code_postal": "42260", + "coordonnees_gps": [ + 45.9152976183, + 3.92450322981 + ], + "libelle_d_acheminement": "CREMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92450322981, + 45.9152976183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5cfba9b3ef0701bf426efbd4340ba7546e2bcba", + "fields": { + "code_commune_insee": "42079", + "nom_de_la_commune": "CUINZIER", + "code_postal": "42460", + "coordonnees_gps": [ + 46.1241485363, + 4.26553210603 + ], + "libelle_d_acheminement": "CUINZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26553210603, + 46.1241485363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4a24adfe366400f5a665252e0a556a1560e9a47", + "fields": { + "code_commune_insee": "42092", + "nom_de_la_commune": "L ETRAT", + "code_postal": "42580", + "coordonnees_gps": [ + 45.4943470893, + 4.37157976104 + ], + "libelle_d_acheminement": "L ETRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37157976104, + 45.4943470893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec033fada12d90be111188ad33a39abee369fa61", + "fields": { + "code_commune_insee": "42096", + "nom_de_la_commune": "FONTANES", + "code_postal": "42140", + "coordonnees_gps": [ + 45.5421701244, + 4.43125355325 + ], + "libelle_d_acheminement": "FONTANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43125355325, + 45.5421701244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4ac59b8b4f802329e78363f8105b52105ba1149", + "fields": { + "code_commune_insee": "42097", + "nom_de_la_commune": "LA FOUILLOUSE", + "code_postal": "42480", + "coordonnees_gps": [ + 45.5010028075, + 4.31920755114 + ], + "libelle_d_acheminement": "LA FOUILLOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31920755114, + 45.5010028075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c521b94acb6bcd3a234af0f5cdc8073b0f55fb05", + "fields": { + "code_commune_insee": "42105", + "nom_de_la_commune": "GREZIEUX LE FROMENTAL", + "code_postal": "42600", + "coordonnees_gps": [ + 45.6147736513, + 4.15456122619 + ], + "libelle_d_acheminement": "GREZIEUX LE FROMENTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15456122619, + 45.6147736513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff133c7dd27bd6dd6dfd035ab10ddf24ced0c65a", + "fields": { + "code_commune_insee": "42113", + "nom_de_la_commune": "JAS", + "code_postal": "42110", + "coordonnees_gps": [ + 45.7433214178, + 4.31929738485 + ], + "libelle_d_acheminement": "JAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31929738485, + 45.7433214178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba66d9a141cf879563384662f2ed80715a91c61", + "fields": { + "code_commune_insee": "42116", + "nom_de_la_commune": "JURE", + "code_postal": "42430", + "coordonnees_gps": [ + 45.8915714272, + 3.89406445527 + ], + "libelle_d_acheminement": "JURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89406445527, + 45.8915714272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "763bb418f99fe88a5f15af789547e8b0ec2ec0af", + "fields": { + "code_commune_insee": "42117", + "nom_de_la_commune": "LAVIEU", + "code_postal": "42560", + "coordonnees_gps": [ + 45.5403767442, + 4.04199917394 + ], + "libelle_d_acheminement": "LAVIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04199917394, + 45.5403767442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2303da0c4d6bde7da6e4bcb83c043259724d48d5", + "fields": { + "code_commune_insee": "42122", + "nom_de_la_commune": "LEZIGNEUX", + "code_postal": "42600", + "coordonnees_gps": [ + 45.5599481407, + 4.05663327551 + ], + "libelle_d_acheminement": "LEZIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05663327551, + 45.5599481407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "494e94826604921d6428cf834bfed6b8a1dfe3b6", + "fields": { + "code_commune_insee": "42126", + "nom_de_la_commune": "LURIECQ", + "code_postal": "42380", + "coordonnees_gps": [ + 45.4513938679, + 4.07349582691 + ], + "libelle_d_acheminement": "LURIECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07349582691, + 45.4513938679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93fed3506bd75689b0139119924b358c1b392f35", + "fields": { + "code_commune_insee": "42133", + "nom_de_la_commune": "MARCENOD", + "code_postal": "42140", + "coordonnees_gps": [ + 45.5728199532, + 4.48177097511 + ], + "libelle_d_acheminement": "MARCENOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48177097511, + 45.5728199532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "527e2715712a26abe70ebb2eb1abeac66b775e71", + "fields": { + "code_commune_insee": "42136", + "nom_de_la_commune": "MARCOUX", + "code_postal": "42130", + "coordonnees_gps": [ + 45.7040618289, + 3.99795142783 + ], + "libelle_d_acheminement": "MARCOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99795142783, + 45.7040618289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acd7b7d2f0f302f13272ea1589e19ec1b2929c75", + "fields": { + "code_commune_insee": "42137", + "nom_de_la_commune": "MARGERIE CHANTAGRET", + "code_postal": "42560", + "coordonnees_gps": [ + 45.5249803676, + 4.05302501039 + ], + "libelle_d_acheminement": "MARGERIE CHANTAGRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05302501039, + 45.5249803676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "023135cbb79c788aa759601777497f61cb620721", + "fields": { + "code_commune_insee": "42154", + "nom_de_la_commune": "NERONDE", + "code_postal": "42510", + "coordonnees_gps": [ + 45.8360580562, + 4.23058831333 + ], + "libelle_d_acheminement": "NERONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23058831333, + 45.8360580562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "018efb64f3a567ddb08b20efc26ada1337a940e3", + "fields": { + "code_commune_insee": "42166", + "nom_de_la_commune": "PARIGNY", + "code_postal": "42120", + "coordonnees_gps": [ + 45.9876941251, + 4.09212986006 + ], + "libelle_d_acheminement": "PARIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09212986006, + 45.9876941251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce45ace21743777da97a7b51cd8782aeb63a8582", + "fields": { + "code_commune_insee": "42180", + "nom_de_la_commune": "PRECIEUX", + "code_postal": "42600", + "coordonnees_gps": [ + 45.5884894185, + 4.14915558403 + ], + "libelle_d_acheminement": "PRECIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14915558403, + 45.5884894185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3c5fff9b50d81f0a6c2abdb1772fa8020f0dfd1", + "fields": { + "code_commune_insee": "42181", + "nom_de_la_commune": "REGNY", + "code_postal": "42630", + "coordonnees_gps": [ + 45.9973316564, + 4.21374559587 + ], + "libelle_d_acheminement": "REGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21374559587, + 45.9973316564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98b49c634d17cad67998635ad41917ca17ef3777", + "fields": { + "code_commune_insee": "42186", + "nom_de_la_commune": "RIVE DE GIER", + "code_postal": "42800", + "coordonnees_gps": [ + 45.5232368969, + 4.61000981421 + ], + "libelle_d_acheminement": "RIVE DE GIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61000981421, + 45.5232368969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d3bf9f672b7ba19eae767b16fd0ecae662e85d9", + "fields": { + "code_commune_insee": "42202", + "nom_de_la_commune": "ST BARTHELEMY LESTRA", + "code_postal": "42110", + "coordonnees_gps": [ + 45.718628364, + 4.32852077786 + ], + "libelle_d_acheminement": "ST BARTHELEMY LESTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32852077786, + 45.718628364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4d477fe88804348d6eeacf9ce5c817fe978e5b6", + "fields": { + "code_commune_insee": "42205", + "nom_de_la_commune": "ST BONNET LE COURREAU", + "code_postal": "42940", + "coordonnees_gps": [ + 45.655161946, + 3.9261116009 + ], + "libelle_d_acheminement": "ST BONNET LE COURREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9261116009, + 45.655161946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19a8d0fd0186354ad9b063a6caacfeb4b55c7f4b", + "fields": { + "code_commune_insee": "42207", + "nom_de_la_commune": "ST CHAMOND", + "code_postal": "42400", + "coordonnees_gps": [ + 45.4698319517, + 4.50184989506 + ], + "libelle_d_acheminement": "ST CHAMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50184989506, + 45.4698319517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "307b19cb605232d1222e8a18417018940232f0aa", + "fields": { + "code_commune_insee": "42218", + "nom_de_la_commune": "ST ETIENNE", + "code_postal": "42000", + "coordonnees_gps": [ + 45.4301235512, + 4.37913997076 + ], + "libelle_d_acheminement": "ST ETIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37913997076, + 45.4301235512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f57c6f730a9022bf9aa5814466a2fb14c1840ebd", + "fields": { + "ligne_5": "ST VICTOR SUR LOIRE", + "code_commune_insee": "42218", + "libelle_d_acheminement": "ST ETIENNE", + "code_postal": "42230", + "nom_de_la_commune": "ST ETIENNE", + "coordonnees_gps": [ + 45.4301235512, + 4.37913997076 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37913997076, + 45.4301235512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60c2223fb04ad1c5c15f008daf2f63d8cc2294cc", + "fields": { + "code_commune_insee": "42224", + "nom_de_la_commune": "ST GENEST MALIFAUX", + "code_postal": "42660", + "coordonnees_gps": [ + 45.3472458116, + 4.43132626452 + ], + "libelle_d_acheminement": "ST GENEST MALIFAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43132626452, + 45.3472458116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31cd8ecac434aba117424279eea3e5365869586e", + "fields": { + "code_commune_insee": "42225", + "nom_de_la_commune": "GENILAC", + "code_postal": "42800", + "coordonnees_gps": [ + 45.5351394274, + 4.57332962492 + ], + "libelle_d_acheminement": "GENILAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57332962492, + 45.5351394274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab16ac0fdcbce615b166aabcd7032af4429ae6da", + "fields": { + "code_commune_insee": "42235", + "nom_de_la_commune": "ST HILAIRE CUSSON LA VALMITTE", + "code_postal": "42380", + "coordonnees_gps": [ + 45.3679237574, + 4.05975538069 + ], + "libelle_d_acheminement": "ST HILAIRE CUSSON LA VALMITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05975538069, + 45.3679237574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e8b7ee58d3c43422384067cea17f30a569cfccb", + "fields": { + "code_commune_insee": "42240", + "nom_de_la_commune": "ST JEAN SOLEYMIEUX", + "code_postal": "42560", + "coordonnees_gps": [ + 45.500965191, + 4.01116096667 + ], + "libelle_d_acheminement": "ST JEAN SOLEYMIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01116096667, + 45.500965191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f7b0145e31c21dbe46919fd9aff5f5b68274725", + "fields": { + "code_commune_insee": "42241", + "nom_de_la_commune": "ST JODARD", + "code_postal": "42590", + "coordonnees_gps": [ + 45.8878181316, + 4.12707045019 + ], + "libelle_d_acheminement": "ST JODARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12707045019, + 45.8878181316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fceede7628429290ecc1cf1b1f5665e018fbd243", + "fields": { + "code_commune_insee": "42246", + "nom_de_la_commune": "ST JULIEN MOLIN MOLETTE", + "code_postal": "42220", + "coordonnees_gps": [ + 45.3215951313, + 4.61802793895 + ], + "libelle_d_acheminement": "ST JULIEN MOLIN MOLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61802793895, + 45.3215951313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "955b87f0580f9f88558cf2aa7e3004c2e32e01e8", + "fields": { + "code_commune_insee": "42249", + "nom_de_la_commune": "ST JUST LA PENDUE", + "code_postal": "42540", + "coordonnees_gps": [ + 45.8875493245, + 4.24162884175 + ], + "libelle_d_acheminement": "ST JUST LA PENDUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24162884175, + 45.8875493245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc2ed932447cc3361c66dd511ed92c15a1a2a658", + "fields": { + "code_commune_insee": "42259", + "nom_de_la_commune": "ST MARTIN LA PLAINE", + "code_postal": "42800", + "coordonnees_gps": [ + 45.5522879045, + 4.59128489318 + ], + "libelle_d_acheminement": "ST MARTIN LA PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59128489318, + 45.5522879045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "432301cf78841f0b7ad09ad4ffdf7e15f665c914", + "fields": { + "code_commune_insee": "42260", + "nom_de_la_commune": "ST MARTIN LA SAUVETE", + "code_postal": "42260", + "coordonnees_gps": [ + 45.8366527059, + 3.92057216059 + ], + "libelle_d_acheminement": "ST MARTIN LA SAUVETE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92057216059, + 45.8366527059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a08aa77f4064c844c0a97ddf7e2d7e9692f9af8", + "fields": { + "code_commune_insee": "42266", + "nom_de_la_commune": "ST NIZIER DE FORNAS", + "code_postal": "42380", + "coordonnees_gps": [ + 45.4047039086, + 4.0825460326 + ], + "libelle_d_acheminement": "ST NIZIER DE FORNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0825460326, + 45.4047039086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee265070205eac397ce4404a0963ea0bebcb04d4", + "fields": { + "code_commune_insee": "42267", + "nom_de_la_commune": "ST NIZIER SOUS CHARLIEU", + "code_postal": "42190", + "coordonnees_gps": [ + 46.1624812464, + 4.12649769645 + ], + "libelle_d_acheminement": "ST NIZIER SOUS CHARLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12649769645, + 46.1624812464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47e723ab768c1354fda44388785fbc4431c8f628", + "fields": { + "code_commune_insee": "42275", + "nom_de_la_commune": "ST PRIEST EN JAREZ", + "code_postal": "42270", + "coordonnees_gps": [ + 45.4752840967, + 4.37334466896 + ], + "libelle_d_acheminement": "ST PRIEST EN JAREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37334466896, + 45.4752840967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b0a4f3fdf3b17f01988d9477b5b5318e9a66c03", + "fields": { + "code_commune_insee": "42283", + "nom_de_la_commune": "ST ROMAIN EN JAREZ", + "code_postal": "42800", + "coordonnees_gps": [ + 45.5651376948, + 4.54150317464 + ], + "libelle_d_acheminement": "ST ROMAIN EN JAREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54150317464, + 45.5651376948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "647343c18d3a398bfa1143852553b5ada47efda7", + "fields": { + "code_commune_insee": "42290", + "nom_de_la_commune": "ST THOMAS LA GARDE", + "code_postal": "42600", + "coordonnees_gps": [ + 45.5713650794, + 4.08597131676 + ], + "libelle_d_acheminement": "ST THOMAS LA GARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08597131676, + 45.5713650794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9cf81084cc0c7b850fa29b9da3f45fd86a449f2", + "fields": { + "code_commune_insee": "42294", + "nom_de_la_commune": "ST VINCENT DE BOISSET", + "code_postal": "42120", + "coordonnees_gps": [ + 46.0087202985, + 4.11586749882 + ], + "libelle_d_acheminement": "ST VINCENT DE BOISSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11586749882, + 46.0087202985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d59d754343c4ebd76e73f8b59363aef9a6eb884b", + "fields": { + "code_commune_insee": "42318", + "nom_de_la_commune": "USSON EN FOREZ", + "code_postal": "42550", + "coordonnees_gps": [ + 45.3918648082, + 3.93424665058 + ], + "libelle_d_acheminement": "USSON EN FOREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93424665058, + 45.3918648082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c2ceb3b7856c0718be357d20ca02bd5fe7c69bb", + "fields": { + "code_commune_insee": "42336", + "nom_de_la_commune": "VIRIGNEUX", + "code_postal": "42140", + "coordonnees_gps": [ + 45.6872242929, + 4.34645637144 + ], + "libelle_d_acheminement": "VIRIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34645637144, + 45.6872242929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12e2729f8a388d2469f2d8b045bf25f8ea6664f3", + "fields": { + "code_commune_insee": "43006", + "nom_de_la_commune": "ALLY", + "code_postal": "43380", + "coordonnees_gps": [ + 45.1502850873, + 3.3167176948 + ], + "libelle_d_acheminement": "ALLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3167176948, + 45.1502850873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "039a26b4a06ebbb3633e9072e5ef45458190f40f", + "fields": { + "code_commune_insee": "43007", + "nom_de_la_commune": "ARAULES", + "code_postal": "43200", + "coordonnees_gps": [ + 45.0650385961, + 4.16874927244 + ], + "libelle_d_acheminement": "ARAULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16874927244, + 45.0650385961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b877d7e104466ecab160226b32f55c0766785dbd", + "fields": { + "code_commune_insee": "43011", + "nom_de_la_commune": "AUBAZAT", + "code_postal": "43380", + "coordonnees_gps": [ + 45.1283416697, + 3.44490053055 + ], + "libelle_d_acheminement": "AUBAZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44490053055, + 45.1283416697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "344ff1dd9dfdf3b00d72b02cc6f8b1d068033802", + "fields": { + "code_commune_insee": "43019", + "nom_de_la_commune": "BARGES", + "code_postal": "43340", + "coordonnees_gps": [ + 44.8340369786, + 3.88416858573 + ], + "libelle_d_acheminement": "BARGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88416858573, + 44.8340369786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a54c6c97d043e1ffbcd8ee82b8204ea1c3feb917", + "fields": { + "code_commune_insee": "43021", + "nom_de_la_commune": "BEAULIEU", + "code_postal": "43800", + "coordonnees_gps": [ + 45.1427890679, + 3.95088637654 + ], + "libelle_d_acheminement": "BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95088637654, + 45.1427890679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bc04f9d56d3bc48d5efa0fd9381fc43fa7c4150", + "fields": { + "code_commune_insee": "43023", + "nom_de_la_commune": "BEAUNE SUR ARZON", + "code_postal": "43500", + "coordonnees_gps": [ + 45.2883722336, + 3.82077578795 + ], + "libelle_d_acheminement": "BEAUNE SUR ARZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82077578795, + 45.2883722336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "312321d9e0efafb41809866c108ea7d5615cf4bf", + "fields": { + "code_commune_insee": "43028", + "nom_de_la_commune": "BESSAMOREL", + "code_postal": "43200", + "coordonnees_gps": [ + 45.1306448726, + 4.07952494849 + ], + "libelle_d_acheminement": "BESSAMOREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07952494849, + 45.1306448726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38aff3acbae8ef07ea530fcc46af0ef0d4d60103", + "fields": { + "code_commune_insee": "43031", + "nom_de_la_commune": "BLASSAC", + "code_postal": "43380", + "coordonnees_gps": [ + 45.1611462033, + 3.38427748233 + ], + "libelle_d_acheminement": "BLASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38427748233, + 45.1611462033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9102933d1d96a545983e5ac100bad1d9f92f3784", + "fields": { + "code_commune_insee": "43037", + "nom_de_la_commune": "LE BOUCHET ST NICOLAS", + "code_postal": "43510", + "coordonnees_gps": [ + 44.8870691928, + 3.78767619023 + ], + "libelle_d_acheminement": "LE BOUCHET ST NICOLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78767619023, + 44.8870691928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "204074b3df25a66dd20f68b3793fdb040816cc0f", + "fields": { + "code_commune_insee": "43044", + "nom_de_la_commune": "CERZAT", + "code_postal": "43380", + "coordonnees_gps": [ + 45.1591392099, + 3.47227025846 + ], + "libelle_d_acheminement": "CERZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47227025846, + 45.1591392099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09e1ba5f083c3c367c4ea73cafd64da4c4deccfd", + "fields": { + "code_commune_insee": "43045", + "nom_de_la_commune": "CEYSSAC", + "code_postal": "43000", + "coordonnees_gps": [ + 45.03515198, + 3.83028543045 + ], + "libelle_d_acheminement": "CEYSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83028543045, + 45.03515198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c86e1bf4875e1c34c7bef9834f4d4000c4aaca0b", + "fields": { + "code_commune_insee": "43049", + "nom_de_la_commune": "CHAMALIERES SUR LOIRE", + "code_postal": "43800", + "coordonnees_gps": [ + 45.1874021192, + 3.98106749222 + ], + "libelle_d_acheminement": "CHAMALIERES SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98106749222, + 45.1874021192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "034136fd53b8472d5b71e372a7bbba08ded61c71", + "fields": { + "code_commune_insee": "43051", + "nom_de_la_commune": "LE CHAMBON SUR LIGNON", + "code_postal": "43400", + "coordonnees_gps": [ + 45.0524632592, + 4.31966525163 + ], + "libelle_d_acheminement": "LE CHAMBON SUR LIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31966525163, + 45.0524632592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3778a0e6ffd38eda65f395c66ae8bcbacad975c", + "fields": { + "code_commune_insee": "43058", + "nom_de_la_commune": "LA CHAPELLE D AUREC", + "code_postal": "43120", + "coordonnees_gps": [ + 45.3308947174, + 4.205185256 + ], + "libelle_d_acheminement": "LA CHAPELLE D AUREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.205185256, + 45.3308947174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fdd48d20cf28fff314d311cebee25896724255c", + "fields": { + "code_commune_insee": "43059", + "nom_de_la_commune": "LA CHAPELLE GENESTE", + "code_postal": "43160", + "coordonnees_gps": [ + 45.3533341327, + 3.67413937548 + ], + "libelle_d_acheminement": "LA CHAPELLE GENESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67413937548, + 45.3533341327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44ddbb0790d99fb2cfef84d3175593b7ff2653f9", + "fields": { + "code_commune_insee": "43060", + "nom_de_la_commune": "CHARRAIX", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0254209003, + 3.55934731457 + ], + "libelle_d_acheminement": "CHARRAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55934731457, + 45.0254209003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecdd3c1f14c36d5cb58c4a35aa9901de5c5f621c", + "fields": { + "code_commune_insee": "43072", + "nom_de_la_commune": "LA CHOMETTE", + "code_postal": "43230", + "coordonnees_gps": [ + 45.2277308638, + 3.46727338521 + ], + "libelle_d_acheminement": "LA CHOMETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46727338521, + 45.2277308638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "681e2bc027f2281c25d892a7846b745c215c6d09", + "fields": { + "code_commune_insee": "43079", + "nom_de_la_commune": "COUTEUGES", + "code_postal": "43230", + "coordonnees_gps": [ + 45.1845653807, + 3.49674774 + ], + "libelle_d_acheminement": "COUTEUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49674774, + 45.1845653807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39fd6ad4097bef754733652cfb8a6a3cdee27b72", + "fields": { + "ligne_5": "VAZEILLES PRES SAUGUES", + "code_commune_insee": "43090", + "libelle_d_acheminement": "ESPLANTAS VAZEILLES", + "code_postal": "43580", + "nom_de_la_commune": "ESPLANTAS VAZEILLES", + "coordonnees_gps": [ + 44.9033054571, + 3.54670461918 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54670461918, + 44.9033054571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81caad88fbcfdd0adb8504cadb6c799fb30cd4ed", + "fields": { + "code_commune_insee": "43092", + "nom_de_la_commune": "FAY SUR LIGNON", + "code_postal": "43430", + "coordonnees_gps": [ + 44.9856971989, + 4.21170048593 + ], + "libelle_d_acheminement": "FAY SUR LIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21170048593, + 44.9856971989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55bb4681cc3f72ad4356528561eda854a79d7386", + "fields": { + "code_commune_insee": "43093", + "nom_de_la_commune": "FELINES", + "code_postal": "43160", + "coordonnees_gps": [ + 45.2648012481, + 3.7529763308 + ], + "libelle_d_acheminement": "FELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7529763308, + 45.2648012481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6db702e10d4b2b738789c990dc45d342f728192", + "fields": { + "code_commune_insee": "43094", + "nom_de_la_commune": "FERRUSSAC", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0855730719, + 3.40516664941 + ], + "libelle_d_acheminement": "FERRUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40516664941, + 45.0855730719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12641e59cc2bbad2f680d7a96f1e56b42c0199d8", + "fields": { + "code_commune_insee": "43098", + "nom_de_la_commune": "FREYCENET LA TOUR", + "code_postal": "43150", + "coordonnees_gps": [ + 44.9354123707, + 4.07021557989 + ], + "libelle_d_acheminement": "FREYCENET LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07021557989, + 44.9354123707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2350019353c2325048904c32f1b8f6a886fc547", + "fields": { + "code_commune_insee": "43100", + "nom_de_la_commune": "FRUGIERES LE PIN", + "code_postal": "43230", + "coordonnees_gps": [ + 45.2712815558, + 3.49959793979 + ], + "libelle_d_acheminement": "FRUGIERES LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49959793979, + 45.2712815558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67489254256f4b6a0e53d26a831ecbec5e45a394", + "fields": { + "code_commune_insee": "43101", + "nom_de_la_commune": "GOUDET", + "code_postal": "43150", + "coordonnees_gps": [ + 44.8933556241, + 3.92125459334 + ], + "libelle_d_acheminement": "GOUDET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92125459334, + 44.8933556241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8eeba3e7b7086c807054f8fcbcc3b5b40b1bcda", + "fields": { + "code_commune_insee": "43114", + "nom_de_la_commune": "LAPTE", + "code_postal": "43200", + "coordonnees_gps": [ + 45.1797852011, + 4.23494194876 + ], + "libelle_d_acheminement": "LAPTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23494194876, + 45.1797852011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "887f2a37b4159cd87b83c9043fa8dbb7a21330d3", + "fields": { + "code_commune_insee": "43116", + "nom_de_la_commune": "LAVAL SUR DOULON", + "code_postal": "43440", + "coordonnees_gps": [ + 45.3548249294, + 3.5677264526 + ], + "libelle_d_acheminement": "LAVAL SUR DOULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5677264526, + 45.3548249294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1818d8f19403d5fd638add1c053317d303111ba", + "fields": { + "code_commune_insee": "43136", + "nom_de_la_commune": "MONISTROL D ALLIER", + "code_postal": "43580", + "coordonnees_gps": [ + 44.9763403351, + 3.63605677462 + ], + "libelle_d_acheminement": "MONISTROL D ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63605677462, + 44.9763403351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87b18f6e93755ffe9abfc77fcb0565c02f25d8e2", + "fields": { + "code_commune_insee": "43137", + "nom_de_la_commune": "MONISTROL SUR LOIRE", + "code_postal": "43120", + "coordonnees_gps": [ + 45.2906264528, + 4.18362572726 + ], + "libelle_d_acheminement": "MONISTROL SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18362572726, + 45.2906264528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09d618a0eaf961afd5ffd91eb768409ad2770f8b", + "fields": { + "code_commune_insee": "43139", + "nom_de_la_commune": "MONTCLARD", + "code_postal": "43230", + "coordonnees_gps": [ + 45.2636813655, + 3.58054318044 + ], + "libelle_d_acheminement": "MONTCLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58054318044, + 45.2636813655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0d0c43f3d694f04bac84f2ac4531d982f060c46", + "fields": { + "code_commune_insee": "43141", + "nom_de_la_commune": "MONTFAUCON EN VELAY", + "code_postal": "43290", + "coordonnees_gps": [ + 45.1844564784, + 4.32318621334 + ], + "libelle_d_acheminement": "MONTFAUCON EN VELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32318621334, + 45.1844564784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17bc50eb0df9e345968920175029164c6f69cf05", + "fields": { + "code_commune_insee": "43151", + "nom_de_la_commune": "PINOLS", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0393522436, + 3.38513092079 + ], + "libelle_d_acheminement": "PINOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38513092079, + 45.0393522436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c83b5d1f85d821a3d5cc6eddae890e2269b7e9c3", + "fields": { + "code_commune_insee": "43158", + "nom_de_la_commune": "QUEYRIERES", + "code_postal": "43260", + "coordonnees_gps": [ + 45.0703483996, + 4.10438606163 + ], + "libelle_d_acheminement": "QUEYRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10438606163, + 45.0703483996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99f5fee6467c12bbf60cb3c860a496633a08ee0c", + "fields": { + "code_commune_insee": "43160", + "nom_de_la_commune": "RAURET", + "code_postal": "43340", + "coordonnees_gps": [ + 44.8046724953, + 3.80135032681 + ], + "libelle_d_acheminement": "RAURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80135032681, + 44.8046724953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1541d13ff83ec356c42b51e56edf0574e2feabc", + "fields": { + "code_commune_insee": "43169", + "nom_de_la_commune": "ST AUSTREMOINE", + "code_postal": "43380", + "coordonnees_gps": [ + 45.1191226529, + 3.35731362857 + ], + "libelle_d_acheminement": "ST AUSTREMOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35731362857, + 45.1191226529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc93c8234be18464ffce167a33bf2c7015aeddb0", + "fields": { + "code_commune_insee": "43175", + "nom_de_la_commune": "ST CIRGUES", + "code_postal": "43380", + "coordonnees_gps": [ + 45.1344047659, + 3.38998443053 + ], + "libelle_d_acheminement": "ST CIRGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38998443053, + 45.1344047659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2a1d89e5c255b250eb7b6c86c292dbc685488c8", + "fields": { + "code_commune_insee": "43182", + "nom_de_la_commune": "ST ETIENNE SUR BLESLE", + "code_postal": "43450", + "coordonnees_gps": [ + 45.3041441888, + 3.12573075931 + ], + "libelle_d_acheminement": "ST ETIENNE SUR BLESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12573075931, + 45.3041441888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc6a466ba340a9f9c03579dc019469f42148f164", + "fields": { + "code_commune_insee": "43183", + "nom_de_la_commune": "STE EUGENIE DE VILLENEUVE", + "code_postal": "43230", + "coordonnees_gps": [ + 45.1418528547, + 3.63036535323 + ], + "libelle_d_acheminement": "STE EUGENIE DE VILLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63036535323, + 45.1418528547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83c92502ccb1102cf77b3bc421795c9592d5e0a9", + "fields": { + "code_commune_insee": "43198", + "nom_de_la_commune": "ST JEAN LACHALM", + "code_postal": "43510", + "coordonnees_gps": [ + 44.9424426092, + 3.72370302131 + ], + "libelle_d_acheminement": "ST JEAN LACHALM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72370302131, + 44.9424426092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5608f6e9f5132c0ec353e5fdebe90959e715638c", + "fields": { + "code_commune_insee": "43200", + "nom_de_la_commune": "ST JULIEN CHAPTEUIL", + "code_postal": "43260", + "coordonnees_gps": [ + 45.0298500492, + 4.07958442261 + ], + "libelle_d_acheminement": "ST JULIEN CHAPTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07958442261, + 45.0298500492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c97beb157ab20208c8aeefa5409ac20421c6a38", + "fields": { + "code_commune_insee": "43207", + "nom_de_la_commune": "ST LAURENT CHABREUGES", + "code_postal": "43100", + "coordonnees_gps": [ + 45.2768738182, + 3.34696183552 + ], + "libelle_d_acheminement": "ST LAURENT CHABREUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34696183552, + 45.2768738182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d621b482445dc4b1b13de649abd7936aadf05efc", + "fields": { + "code_commune_insee": "43212", + "nom_de_la_commune": "ST PAL DE CHALENCON", + "code_postal": "43500", + "coordonnees_gps": [ + 45.3474785194, + 3.96287922674 + ], + "libelle_d_acheminement": "ST PAL DE CHALENCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96287922674, + 45.3474785194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ab30e26db6d766d1747436bd8bc28684c231a43", + "fields": { + "code_commune_insee": "43213", + "nom_de_la_commune": "ST PAL DE MONS", + "code_postal": "43620", + "coordonnees_gps": [ + 45.2420793243, + 4.28312816043 + ], + "libelle_d_acheminement": "ST PAL DE MONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28312816043, + 45.2420793243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd0588e510184e250cba2dddecfa132de8983ce8", + "fields": { + "code_commune_insee": "43217", + "nom_de_la_commune": "ST PIERRE DU CHAMP", + "code_postal": "43810", + "coordonnees_gps": [ + 45.2465337146, + 3.88792807023 + ], + "libelle_d_acheminement": "ST PIERRE DU CHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88792807023, + 45.2465337146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbfa16292ca972a96dd2584c5aacaa27340305ca", + "fields": { + "code_commune_insee": "43220", + "nom_de_la_commune": "ST PREJET D ALLIER", + "code_postal": "43580", + "coordonnees_gps": [ + 44.9200322739, + 3.6252137957 + ], + "libelle_d_acheminement": "ST PREJET D ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6252137957, + 44.9200322739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ba58bde7768ac1060ca65776d9135e3010b6a01", + "fields": { + "code_commune_insee": "43223", + "nom_de_la_commune": "ST ROMAIN LACHALM", + "code_postal": "43620", + "coordonnees_gps": [ + 45.2650235989, + 4.33989066795 + ], + "libelle_d_acheminement": "ST ROMAIN LACHALM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33989066795, + 45.2650235989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "046f6cacf70e0019d8aedb3d4bfa605dc24d96fe", + "fields": { + "code_commune_insee": "43226", + "nom_de_la_commune": "ST VERT", + "code_postal": "43440", + "coordonnees_gps": [ + 45.3769366563, + 3.54177146046 + ], + "libelle_d_acheminement": "ST VERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54177146046, + 45.3769366563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93fad29390b6e3a1aa9c33c0205760f642690b68", + "fields": { + "code_commune_insee": "43239", + "nom_de_la_commune": "SIAUGUES STE MARIE", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0787632702, + 3.62714763448 + ], + "libelle_d_acheminement": "SIAUGUES STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62714763448, + 45.0787632702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04d0c3c3a226d1dc0b79916e3d0581c445a55c18", + "fields": { + "ligne_5": "STE MARIE DES CHAZES", + "code_commune_insee": "43239", + "libelle_d_acheminement": "SIAUGUES STE MARIE", + "code_postal": "43300", + "nom_de_la_commune": "SIAUGUES STE MARIE", + "coordonnees_gps": [ + 45.0787632702, + 3.62714763448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62714763448, + 45.0787632702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88d2e08d3db489d59a5f0035f96e24400c1f843f", + "fields": { + "code_commune_insee": "43240", + "nom_de_la_commune": "SOLIGNAC SOUS ROCHE", + "code_postal": "43130", + "coordonnees_gps": [ + 45.2521425669, + 3.99655287323 + ], + "libelle_d_acheminement": "SOLIGNAC SOUS ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99655287323, + 45.2521425669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9283053ee30e9d6eb256c73174f2f8decd2689c3", + "fields": { + "code_commune_insee": "43242", + "nom_de_la_commune": "TAILHAC", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0498915029, + 3.4568585058 + ], + "libelle_d_acheminement": "TAILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4568585058, + 45.0498915029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f68d81cc8885211d9d06d122415d137a643df5f8", + "fields": { + "code_commune_insee": "43253", + "nom_de_la_commune": "LES VASTRES", + "code_postal": "43430", + "coordonnees_gps": [ + 44.9902033673, + 4.26962911111 + ], + "libelle_d_acheminement": "LES VASTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26962911111, + 44.9902033673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "620815fce278e570cd6c3295cc156b32f262ffdc", + "fields": { + "code_commune_insee": "43260", + "nom_de_la_commune": "LE VERNET", + "code_postal": "43320", + "coordonnees_gps": [ + 45.0385735501, + 3.66238494498 + ], + "libelle_d_acheminement": "LE VERNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66238494498, + 45.0385735501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52a78f76382f9ce160ef0efe530d5c5a137236e2", + "fields": { + "code_commune_insee": "43265", + "nom_de_la_commune": "LES VILLETTES", + "code_postal": "43600", + "coordonnees_gps": [ + 45.2404575715, + 4.17878792262 + ], + "libelle_d_acheminement": "LES VILLETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17878792262, + 45.2404575715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81253e72b5ef8b2eae49f07dd7158adda375b360", + "fields": { + "code_commune_insee": "43267", + "nom_de_la_commune": "VOREY", + "code_postal": "43800", + "coordonnees_gps": [ + 45.1929802448, + 3.90530679663 + ], + "libelle_d_acheminement": "VOREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90530679663, + 45.1929802448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82ac4ec62e8b2f4fa09456b519104234806213a0", + "fields": { + "code_commune_insee": "43268", + "nom_de_la_commune": "YSSINGEAUX", + "code_postal": "43200", + "coordonnees_gps": [ + 45.1393761299, + 4.13104937731 + ], + "libelle_d_acheminement": "YSSINGEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13104937731, + 45.1393761299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea490b7855602e7fbd21014b2e9b3f96da2d8bd6", + "fields": { + "ligne_5": "LA SICAUDAIS", + "code_commune_insee": "44005", + "libelle_d_acheminement": "CHAUMES EN RETZ", + "code_postal": "44320", + "nom_de_la_commune": "CHAUMES EN RETZ", + "coordonnees_gps": [ + 47.1592162214, + -1.95412512421 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95412512421, + 47.1592162214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "496cf854a17d4f00743886754f9e809eba7e909a", + "fields": { + "ligne_5": "CHEMERE", + "code_commune_insee": "44005", + "libelle_d_acheminement": "CHAUMES EN RETZ", + "code_postal": "44680", + "nom_de_la_commune": "CHAUMES EN RETZ", + "coordonnees_gps": [ + 47.1592162214, + -1.95412512421 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95412512421, + 47.1592162214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab0f99c2180cee13f7a4a56beefc08175acc0104", + "fields": { + "code_commune_insee": "44007", + "nom_de_la_commune": "AVESSAC", + "code_postal": "44460", + "coordonnees_gps": [ + 47.635436304, + -1.97050871505 + ], + "libelle_d_acheminement": "AVESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97050871505, + 47.635436304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cdeb45cd585d0feed287a06075f1c6a26d61b73", + "fields": { + "code_commune_insee": "44013", + "nom_de_la_commune": "BESNE", + "code_postal": "44160", + "coordonnees_gps": [ + 47.3800629578, + -2.07409913989 + ], + "libelle_d_acheminement": "BESNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07409913989, + 47.3800629578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bd046df44ec9788b4b325db6bfa2aca6e3f6488", + "fields": { + "code_commune_insee": "44014", + "nom_de_la_commune": "LE BIGNON", + "code_postal": "44140", + "coordonnees_gps": [ + 47.1004098153, + -1.50942309254 + ], + "libelle_d_acheminement": "LE BIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50942309254, + 47.1004098153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8327997fe68e8dcffdbcbd72a53b590759482c06", + "fields": { + "code_commune_insee": "44016", + "nom_de_la_commune": "LA BOISSIERE DU DORE", + "code_postal": "44430", + "coordonnees_gps": [ + 47.2350761826, + -1.20383839178 + ], + "libelle_d_acheminement": "LA BOISSIERE DU DORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20383839178, + 47.2350761826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "499f9b44d7e6a7746e8ec7a4126140c5869da1b7", + "fields": { + "code_commune_insee": "44020", + "nom_de_la_commune": "BOUGUENAIS", + "code_postal": "44340", + "coordonnees_gps": [ + 47.1709061678, + -1.61739752858 + ], + "libelle_d_acheminement": "BOUGUENAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61739752858, + 47.1709061678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6728c9ef78f3e779be50ef6c5a611381bfab6dc6", + "fields": { + "ligne_5": "BOURGNEUF EN RETZ", + "code_commune_insee": "44021", + "libelle_d_acheminement": "VILLENEUVE EN RETZ", + "code_postal": "44580", + "nom_de_la_commune": "VILLENEUVE EN RETZ", + "coordonnees_gps": [ + 47.0381472853, + -1.92586734325 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92586734325, + 47.0381472853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed296bf0a2493bafc5c417d7427a90783fd1305c", + "fields": { + "ligne_5": "ST CYR EN RETZ", + "code_commune_insee": "44021", + "libelle_d_acheminement": "VILLENEUVE EN RETZ", + "code_postal": "44580", + "nom_de_la_commune": "VILLENEUVE EN RETZ", + "coordonnees_gps": [ + 47.0381472853, + -1.92586734325 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92586734325, + 47.0381472853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6bca4893b5b75124944ea21bce0d6db012639f4", + "fields": { + "code_commune_insee": "44028", + "nom_de_la_commune": "LE CELLIER", + "code_postal": "44850", + "coordonnees_gps": [ + 47.3374810886, + -1.35950738339 + ], + "libelle_d_acheminement": "LE CELLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35950738339, + 47.3374810886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c177170e2228009531cf5ae5844f3b2b392576f7", + "fields": { + "code_commune_insee": "44031", + "nom_de_la_commune": "LA CHAPELLE GLAIN", + "code_postal": "44670", + "coordonnees_gps": [ + 47.6202560031, + -1.19540234544 + ], + "libelle_d_acheminement": "LA CHAPELLE GLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19540234544, + 47.6202560031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d94d90da343904cf0abb4897d54cb29c7eaf874b", + "fields": { + "code_commune_insee": "44038", + "nom_de_la_commune": "CHAUVE", + "code_postal": "44320", + "coordonnees_gps": [ + 47.1588661346, + -2.01200123653 + ], + "libelle_d_acheminement": "CHAUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01200123653, + 47.1588661346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a91e631e12952fa9d0fa9df7f53ece435e2ebdfb", + "fields": { + "code_commune_insee": "44047", + "nom_de_la_commune": "COUERON", + "code_postal": "44220", + "coordonnees_gps": [ + 47.2309985029, + -1.72929002573 + ], + "libelle_d_acheminement": "COUERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72929002573, + 47.2309985029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a577d7bcb520d16271b01d4c7c8809242f5373a", + "fields": { + "code_commune_insee": "44056", + "nom_de_la_commune": "FAY DE BRETAGNE", + "code_postal": "44130", + "coordonnees_gps": [ + 47.3905699563, + -1.79530261946 + ], + "libelle_d_acheminement": "FAY DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79530261946, + 47.3905699563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2595c729ce2d8901b6d5dc7310e20e3def9dd101", + "fields": { + "code_commune_insee": "44063", + "nom_de_la_commune": "GETIGNE", + "code_postal": "44190", + "coordonnees_gps": [ + 47.0812318041, + -1.21795705627 + ], + "libelle_d_acheminement": "GETIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21795705627, + 47.0812318041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34292dee9b2a7fbcb8e60e1d2f82da16be026fb0", + "fields": { + "code_commune_insee": "44068", + "nom_de_la_commune": "GUENROUET", + "code_postal": "44530", + "coordonnees_gps": [ + 47.5034137503, + -1.95561601434 + ], + "libelle_d_acheminement": "GUENROUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95561601434, + 47.5034137503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4511666abe7cb52aab1ad1a4bb74981b5ab4e673", + "fields": { + "code_commune_insee": "44075", + "nom_de_la_commune": "ISSE", + "code_postal": "44520", + "coordonnees_gps": [ + 47.6173601577, + -1.4560368491 + ], + "libelle_d_acheminement": "ISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4560368491, + 47.6173601577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4541331fca27f8563f54afbb151d0311dc344bee", + "fields": { + "code_commune_insee": "44083", + "nom_de_la_commune": "LA LIMOUZINIERE", + "code_postal": "44310", + "coordonnees_gps": [ + 46.9872257466, + -1.64166009462 + ], + "libelle_d_acheminement": "LA LIMOUZINIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64166009462, + 46.9872257466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9020ded182f3b1d889312a6ed0261b1b1ce02337", + "fields": { + "ligne_5": "MACHECOUL", + "code_commune_insee": "44087", + "libelle_d_acheminement": "MACHECOUL ST MEME", + "code_postal": "44270", + "nom_de_la_commune": "MACHECOUL ST MEME", + "coordonnees_gps": [ + 46.9910784513, + -1.82345670327 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82345670327, + 46.9910784513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f320d08f685cccb4b0cda4ed93ad9c4e3848ae99", + "fields": { + "code_commune_insee": "44089", + "nom_de_la_commune": "MALVILLE", + "code_postal": "44260", + "coordonnees_gps": [ + 47.3431404212, + -1.85411536756 + ], + "libelle_d_acheminement": "MALVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.85411536756, + 47.3431404212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c349377807b3451479ce0e350ce3ce58e11785d1", + "fields": { + "code_commune_insee": "44106", + "nom_de_la_commune": "LES MOUTIERS EN RETZ", + "code_postal": "44760", + "coordonnees_gps": [ + 47.0616219129, + -1.99001867615 + ], + "libelle_d_acheminement": "LES MOUTIERS EN RETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99001867615, + 47.0616219129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c3144c86fa5577e58fd16b1157beb724be6e10d", + "fields": { + "code_commune_insee": "44109", + "nom_de_la_commune": "NANTES", + "code_postal": "44000", + "coordonnees_gps": [ + 47.2316356767, + -1.54831008605 + ], + "libelle_d_acheminement": "NANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54831008605, + 47.2316356767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ae5c16c1081a2c88f048705b3e7f12b926916c3", + "fields": { + "code_commune_insee": "44109", + "nom_de_la_commune": "NANTES", + "code_postal": "44100", + "coordonnees_gps": [ + 47.2316356767, + -1.54831008605 + ], + "libelle_d_acheminement": "NANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54831008605, + 47.2316356767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a70e065f053ba81cb6bb75da10b39750107d2f0", + "fields": { + "code_commune_insee": "44113", + "nom_de_la_commune": "NOZAY", + "code_postal": "44170", + "coordonnees_gps": [ + 47.5728858483, + -1.60097664616 + ], + "libelle_d_acheminement": "NOZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60097664616, + 47.5728858483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1668ddd6448662f53300bf716c84a49608c8dab9", + "fields": { + "code_commune_insee": "44119", + "nom_de_la_commune": "PAULX", + "code_postal": "44270", + "coordonnees_gps": [ + 46.95778792, + -1.77844057969 + ], + "libelle_d_acheminement": "PAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77844057969, + 46.95778792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f86eac28f094cb2ef869b6a0ad343246886d10a3", + "fields": { + "code_commune_insee": "44120", + "nom_de_la_commune": "LE PELLERIN", + "code_postal": "44640", + "coordonnees_gps": [ + 47.2229017049, + -1.8250130027 + ], + "libelle_d_acheminement": "LE PELLERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8250130027, + 47.2229017049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "123a6e9fda08c488f649322d400b05691a6f23f7", + "fields": { + "ligne_5": "LE CLION SUR MER", + "code_commune_insee": "44131", + "libelle_d_acheminement": "PORNIC", + "code_postal": "44210", + "nom_de_la_commune": "PORNIC", + "coordonnees_gps": [ + 47.1223972452, + -2.05182334479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05182334479, + 47.1223972452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe53f78d3ad5f08dbe5e772e74e167b2f3aa0578", + "fields": { + "code_commune_insee": "44145", + "nom_de_la_commune": "ROUANS", + "code_postal": "44640", + "coordonnees_gps": [ + 47.1763592414, + -1.84313535499 + ], + "libelle_d_acheminement": "ROUANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84313535499, + 47.1763592414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7850b414b62640477fb2a5445eaeee93a27311e", + "fields": { + "code_commune_insee": "44159", + "nom_de_la_commune": "ST FIACRE SUR MAINE", + "code_postal": "44690", + "coordonnees_gps": [ + 47.1431877393, + -1.41565837757 + ], + "libelle_d_acheminement": "ST FIACRE SUR MAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41565837757, + 47.1431877393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4688dbc8807ac23c4e0b539fc1fbf3136ec388c6", + "fields": { + "code_commune_insee": "44173", + "nom_de_la_commune": "ST LUMINE DE CLISSON", + "code_postal": "44190", + "coordonnees_gps": [ + 47.0796411393, + -1.36298171094 + ], + "libelle_d_acheminement": "ST LUMINE DE CLISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36298171094, + 47.0796411393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ae50d3d96afe9ea8116f25251f6c46ad9656982", + "fields": { + "code_commune_insee": "44176", + "nom_de_la_commune": "ST MALO DE GUERSAC", + "code_postal": "44550", + "coordonnees_gps": [ + 47.3561985163, + -2.17203654541 + ], + "libelle_d_acheminement": "ST MALO DE GUERSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17203654541, + 47.3561985163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b75daf8bb696ed936765cbd0e5612ccc5568089", + "fields": { + "ligne_5": "MAUMUSSON", + "code_commune_insee": "44180", + "libelle_d_acheminement": "VALLONS DE L ERDRE", + "code_postal": "44540", + "nom_de_la_commune": "VALLONS DE L ERDRE", + "coordonnees_gps": [ + 47.5309227299, + -1.19441075506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19441075506, + 47.5309227299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3e90738f689445880ca03405fe68e073dd8e311", + "fields": { + "code_commune_insee": "44184", + "nom_de_la_commune": "ST NAZAIRE", + "code_postal": "44600", + "coordonnees_gps": [ + 47.2802857028, + -2.25379927249 + ], + "libelle_d_acheminement": "ST NAZAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.25379927249, + 47.2802857028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad4678b5fb0abda6e45b6149da7d36af3648b490", + "fields": { + "code_commune_insee": "44188", + "nom_de_la_commune": "ST PHILBERT DE GRAND LIEU", + "code_postal": "44310", + "coordonnees_gps": [ + 47.0602912538, + -1.65711361304 + ], + "libelle_d_acheminement": "ST PHILBERT DE GRAND LIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65711361304, + 47.0602912538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0467165e02a23228968f8f35520e4ac75c5ad3e9", + "fields": { + "code_commune_insee": "44197", + "nom_de_la_commune": "SION LES MINES", + "code_postal": "44590", + "coordonnees_gps": [ + 47.7291886842, + -1.58109954157 + ], + "libelle_d_acheminement": "SION LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58109954157, + 47.7291886842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d97c44c3b46335d3b6c41972e24559dcf40aa397", + "fields": { + "code_commune_insee": "44198", + "nom_de_la_commune": "LES SORINIERES", + "code_postal": "44840", + "coordonnees_gps": [ + 47.1414647152, + -1.5202224711 + ], + "libelle_d_acheminement": "LES SORINIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5202224711, + 47.1414647152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6a7fe29a8ff6d33cc820662be713542ffa06219", + "fields": { + "code_commune_insee": "44204", + "nom_de_la_commune": "THOUARE SUR LOIRE", + "code_postal": "44470", + "coordonnees_gps": [ + 47.2763256866, + -1.43162198248 + ], + "libelle_d_acheminement": "THOUARE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43162198248, + 47.2763256866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6fe14c86af7a7c7fdfc485f38cdf16dcec25c1c", + "fields": { + "code_commune_insee": "44205", + "nom_de_la_commune": "LES TOUCHES", + "code_postal": "44390", + "coordonnees_gps": [ + 47.4523563976, + -1.42756883238 + ], + "libelle_d_acheminement": "LES TOUCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42756883238, + 47.4523563976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a9297e18e3236ccc8feaf61659969d05c2cac24", + "fields": { + "code_commune_insee": "44210", + "nom_de_la_commune": "TRIGNAC", + "code_postal": "44570", + "coordonnees_gps": [ + 47.3125328416, + -2.20700045585 + ], + "libelle_d_acheminement": "TRIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.20700045585, + 47.3125328416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04c44f2d3bf7b8fe2e67b61dada2966caa769e45", + "fields": { + "code_commune_insee": "44220", + "nom_de_la_commune": "VUE", + "code_postal": "44640", + "coordonnees_gps": [ + 47.1941974605, + -1.9008768965 + ], + "libelle_d_acheminement": "VUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.9008768965, + 47.1941974605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cee5855068e50eff5890e8fd9a308a1527299bc", + "fields": { + "code_commune_insee": "44221", + "nom_de_la_commune": "LA CHEVALLERAIS", + "code_postal": "44810", + "coordonnees_gps": [ + 47.477183891, + -1.66493224738 + ], + "libelle_d_acheminement": "LA CHEVALLERAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66493224738, + 47.477183891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a6f8f264685858991425323e5a35ea05b02b69d", + "fields": { + "code_commune_insee": "45005", + "nom_de_la_commune": "ANDONVILLE", + "code_postal": "45480", + "coordonnees_gps": [ + 48.2740984762, + 2.02318881395 + ], + "libelle_d_acheminement": "ANDONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02318881395, + 48.2740984762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37529dd714de4607a47d422dfc04b56a1db931c4", + "fields": { + "code_commune_insee": "45009", + "nom_de_la_commune": "ASCHERES LE MARCHE", + "code_postal": "45170", + "coordonnees_gps": [ + 48.1120145126, + 2.01033081704 + ], + "libelle_d_acheminement": "ASCHERES LE MARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01033081704, + 48.1120145126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b040a742a4bcc63c94e48ea61a8a1d5f50dd45a", + "fields": { + "code_commune_insee": "45016", + "nom_de_la_commune": "AUTRY LE CHATEL", + "code_postal": "45500", + "coordonnees_gps": [ + 47.5949029716, + 2.60209574772 + ], + "libelle_d_acheminement": "AUTRY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60209574772, + 47.5949029716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e940feddf7570d4fe86c5d30afb372cd34014bd", + "fields": { + "code_commune_insee": "45017", + "nom_de_la_commune": "AUVILLIERS EN GATINAIS", + "code_postal": "45270", + "coordonnees_gps": [ + 47.9653555404, + 2.49120445064 + ], + "libelle_d_acheminement": "AUVILLIERS EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49120445064, + 47.9653555404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c30e8631d01178b36ce2cacdd514b5d0145d08e", + "fields": { + "code_commune_insee": "45024", + "nom_de_la_commune": "BAULE", + "code_postal": "45130", + "coordonnees_gps": [ + 47.8106703162, + 1.66824027351 + ], + "libelle_d_acheminement": "BAULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66824027351, + 47.8106703162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68b8bc9557e0a8e68e53d80e80ce6f8f67948ff4", + "fields": { + "code_commune_insee": "45036", + "nom_de_la_commune": "BOISMORAND", + "code_postal": "45290", + "coordonnees_gps": [ + 47.7798249576, + 2.72028920172 + ], + "libelle_d_acheminement": "BOISMORAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72028920172, + 47.7798249576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0caec06c0bbf4203a776b9877e3f2974855bd21", + "fields": { + "code_commune_insee": "45039", + "nom_de_la_commune": "BONNEE", + "code_postal": "45460", + "coordonnees_gps": [ + 47.7942659998, + 2.39324729287 + ], + "libelle_d_acheminement": "BONNEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39324729287, + 47.7942659998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6de96ed70ad259244f2a191f9c81a54f68d0015c", + "fields": { + "code_commune_insee": "45042", + "nom_de_la_commune": "LES BORDES", + "code_postal": "45460", + "coordonnees_gps": [ + 47.8163497112, + 2.43671034937 + ], + "libelle_d_acheminement": "LES BORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43671034937, + 47.8163497112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc7ad595fad70861b9e5d11aae390172e18e074b", + "fields": { + "code_commune_insee": "45043", + "nom_de_la_commune": "BOU", + "code_postal": "45430", + "coordonnees_gps": [ + 47.8704664522, + 2.04729734716 + ], + "libelle_d_acheminement": "BOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04729734716, + 47.8704664522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b03d64830bbcc128865b6afe16fe22e471ac4e3", + "fields": { + "code_commune_insee": "45045", + "nom_de_la_commune": "BOUILLY EN GATINAIS", + "code_postal": "45300", + "coordonnees_gps": [ + 48.0981078999, + 2.28756909213 + ], + "libelle_d_acheminement": "BOUILLY EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28756909213, + 48.0981078999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "937c3856cbe484f1f992c37e9d7439392b3600a7", + "fields": { + "code_commune_insee": "45047", + "nom_de_la_commune": "BOUZONVILLE AUX BOIS", + "code_postal": "45300", + "coordonnees_gps": [ + 48.1043167535, + 2.2461940499 + ], + "libelle_d_acheminement": "BOUZONVILLE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2461940499, + 48.1043167535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52053942a896c7fb73806c35a8155d4b76682e5f", + "fields": { + "code_commune_insee": "45053", + "nom_de_la_commune": "BRIARE", + "code_postal": "45250", + "coordonnees_gps": [ + 47.6450008152, + 2.74519258713 + ], + "libelle_d_acheminement": "BRIARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74519258713, + 47.6450008152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f24a57bebcccfeb3d7d9255924c3f8c1e9210202", + "fields": { + "code_commune_insee": "45063", + "nom_de_la_commune": "CERDON", + "code_postal": "45620", + "coordonnees_gps": [ + 47.6299186758, + 2.38147298677 + ], + "libelle_d_acheminement": "CERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38147298677, + 47.6299186758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5e126e7a1748b3d38053c53cbdab2d578c0e965", + "fields": { + "code_commune_insee": "45066", + "nom_de_la_commune": "CHAILLY EN GATINAIS", + "code_postal": "45260", + "coordonnees_gps": [ + 47.936543644, + 2.5277446897 + ], + "libelle_d_acheminement": "CHAILLY EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5277446897, + 47.936543644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceb44c012bd089830b7e3603c0d7e614078bf45f", + "fields": { + "code_commune_insee": "45069", + "nom_de_la_commune": "CHAMBON LA FORET", + "code_postal": "45340", + "coordonnees_gps": [ + 48.0490368743, + 2.28348190868 + ], + "libelle_d_acheminement": "CHAMBON LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28348190868, + 48.0490368743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91af4f43a58401ccbd3d12b727734552ae5f629b", + "fields": { + "code_commune_insee": "45077", + "nom_de_la_commune": "LA CHAPELLE SUR AVEYRON", + "code_postal": "45230", + "coordonnees_gps": [ + 47.8707521485, + 2.87448096563 + ], + "libelle_d_acheminement": "LA CHAPELLE SUR AVEYRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87448096563, + 47.8707521485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3675a51e7642d5839f829000c4e1fd3188bf4274", + "fields": { + "code_commune_insee": "45080", + "nom_de_la_commune": "CHARMONT EN BEAUCE", + "code_postal": "45480", + "coordonnees_gps": [ + 48.2376605763, + 2.11465872922 + ], + "libelle_d_acheminement": "CHARMONT EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11465872922, + 48.2376605763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d687bcfdc1c5765d45908091309bb735063893fb", + "fields": { + "code_commune_insee": "45082", + "nom_de_la_commune": "CHATEAUNEUF SUR LOIRE", + "code_postal": "45110", + "coordonnees_gps": [ + 47.8851472101, + 2.23195371871 + ], + "libelle_d_acheminement": "CHATEAUNEUF SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23195371871, + 47.8851472101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77687248bbdba3f964487c1cb23a6292d66f56fe", + "fields": { + "code_commune_insee": "45091", + "nom_de_la_commune": "CHEVANNES", + "code_postal": "45210", + "coordonnees_gps": [ + 48.1314865857, + 2.85958457085 + ], + "libelle_d_acheminement": "CHEVANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85958457085, + 48.1314865857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0952c02e1e71ac234fe40682d3b60d02b7e448e4", + "fields": { + "code_commune_insee": "45092", + "nom_de_la_commune": "CHEVILLON SUR HUILLARD", + "code_postal": "45700", + "coordonnees_gps": [ + 47.9668347404, + 2.62231250927 + ], + "libelle_d_acheminement": "CHEVILLON SUR HUILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62231250927, + 47.9668347404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fc33cf79cd2c12d11519f552ab21be02c8b2c28", + "fields": { + "code_commune_insee": "45095", + "nom_de_la_commune": "CHILLEURS AUX BOIS", + "code_postal": "45170", + "coordonnees_gps": [ + 48.0570941701, + 2.14189355578 + ], + "libelle_d_acheminement": "CHILLEURS AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14189355578, + 48.0570941701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90ac35918562b6de6f8686fcaeb9a84608c37f96", + "fields": { + "code_commune_insee": "45110", + "nom_de_la_commune": "COURCELLES LE ROI", + "code_postal": "45300", + "coordonnees_gps": [ + 48.0980883547, + 2.32759731775 + ], + "libelle_d_acheminement": "COURCELLES LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32759731775, + 48.0980883547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99df5a6ddbe744665e87f7d2e90e20ad4e31a81e", + "fields": { + "code_commune_insee": "45118", + "nom_de_la_commune": "CROTTES EN PITHIVERAIS", + "code_postal": "45170", + "coordonnees_gps": [ + 48.1141192289, + 2.06490558208 + ], + "libelle_d_acheminement": "CROTTES EN PITHIVERAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06490558208, + 48.1141192289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c00c5a376b9de1cee86e09ece75d51fd9b8ccd2d", + "fields": { + "code_commune_insee": "45119", + "nom_de_la_commune": "DADONVILLE", + "code_postal": "45300", + "coordonnees_gps": [ + 48.1525880159, + 2.26941914573 + ], + "libelle_d_acheminement": "DADONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26941914573, + 48.1525880159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4658ca3d9509e8a1f89af32c7a1647cf2c39af90", + "fields": { + "code_commune_insee": "45123", + "nom_de_la_commune": "DARVOY", + "code_postal": "45150", + "coordonnees_gps": [ + 47.8524672479, + 2.08968604599 + ], + "libelle_d_acheminement": "DARVOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08968604599, + 47.8524672479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d5eb3f1eea28c025f3794432c1fe4bb6d6a9a10", + "fields": { + "code_commune_insee": "45127", + "nom_de_la_commune": "DORDIVES", + "code_postal": "45680", + "coordonnees_gps": [ + 48.147384869, + 2.77436813203 + ], + "libelle_d_acheminement": "DORDIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77436813203, + 48.147384869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b965c441d00c000086acef8ffed847e1fbc20661", + "fields": { + "ligne_5": "DOUCHY", + "code_commune_insee": "45129", + "libelle_d_acheminement": "DOUCHY MONTCORBON", + "code_postal": "45220", + "nom_de_la_commune": "DOUCHY MONTCORBON", + "coordonnees_gps": [ + 47.941934324, + 3.04405678632 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04405678632, + 47.941934324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c3928354163fa1e9c6d31a52aa3ef24a3258f82", + "fields": { + "code_commune_insee": "45131", + "nom_de_la_commune": "ECHILLEUSES", + "code_postal": "45390", + "coordonnees_gps": [ + 48.1695380389, + 2.44182563479 + ], + "libelle_d_acheminement": "ECHILLEUSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44182563479, + 48.1695380389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8453e05b0ddbefbfdd6091230b4b49e647237f7", + "fields": { + "code_commune_insee": "45137", + "nom_de_la_commune": "ESCRENNES", + "code_postal": "45300", + "coordonnees_gps": [ + 48.1364055687, + 2.18433088094 + ], + "libelle_d_acheminement": "ESCRENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18433088094, + 48.1364055687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94c92c99c7e1911434db354f4bcc2a4c78c02341", + "fields": { + "code_commune_insee": "45146", + "nom_de_la_commune": "LA FERTE ST AUBIN", + "code_postal": "45240", + "coordonnees_gps": [ + 47.7119750833, + 1.92714666074 + ], + "libelle_d_acheminement": "LA FERTE ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92714666074, + 47.7119750833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff4cde2813bdf9a1c8534edad02b7bc19368fdb4", + "fields": { + "code_commune_insee": "45149", + "nom_de_la_commune": "FOUCHEROLLES", + "code_postal": "45320", + "coordonnees_gps": [ + 48.0971691274, + 3.0183707714 + ], + "libelle_d_acheminement": "FOUCHEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0183707714, + 48.0971691274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d02bd996f97cc96caeddc4c00a8a87e8e066299d", + "fields": { + "code_commune_insee": "45154", + "nom_de_la_commune": "GIDY", + "code_postal": "45520", + "coordonnees_gps": [ + 47.9913355091, + 1.83586877013 + ], + "libelle_d_acheminement": "GIDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83586877013, + 47.9913355091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ff182f50094180a80c12da6403401eef85f09ec", + "fields": { + "code_commune_insee": "45158", + "nom_de_la_commune": "GONDREVILLE", + "code_postal": "45490", + "coordonnees_gps": [ + 48.0527905601, + 2.65050023399 + ], + "libelle_d_acheminement": "GONDREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65050023399, + 48.0527905601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8dec4a35404b2b981433c87aeb455a2b339bf6c", + "fields": { + "code_commune_insee": "45160", + "nom_de_la_commune": "GRENEVILLE EN BEAUCE", + "code_postal": "45480", + "coordonnees_gps": [ + 48.189368971, + 2.11144995859 + ], + "libelle_d_acheminement": "GRENEVILLE EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11144995859, + 48.189368971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77f735f72a46fb155d5d8874c412adf5f512cc95", + "fields": { + "code_commune_insee": "45171", + "nom_de_la_commune": "ISDES", + "code_postal": "45620", + "coordonnees_gps": [ + 47.6638922012, + 2.2607343727 + ], + "libelle_d_acheminement": "ISDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2607343727, + 47.6638922012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5e5cd08328abe27533b5a83badbaa6f3c262881", + "fields": { + "code_commune_insee": "45174", + "nom_de_la_commune": "JOUY EN PITHIVERAIS", + "code_postal": "45480", + "coordonnees_gps": [ + 48.1497403128, + 2.13178750003 + ], + "libelle_d_acheminement": "JOUY EN PITHIVERAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13178750003, + 48.1497403128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc0031651217b93c4f87166b29c18ada6369cd00", + "fields": { + "code_commune_insee": "45175", + "nom_de_la_commune": "JOUY LE POTIER", + "code_postal": "45370", + "coordonnees_gps": [ + 47.747623391, + 1.80832266526 + ], + "libelle_d_acheminement": "JOUY LE POTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80832266526, + 47.747623391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14d70d72f807a8b4a75cc61450c282d079f4f942", + "fields": { + "code_commune_insee": "45178", + "nom_de_la_commune": "LADON", + "code_postal": "45270", + "coordonnees_gps": [ + 48.0095614328, + 2.52562698613 + ], + "libelle_d_acheminement": "LADON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52562698613, + 48.0095614328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfe8c3c595bc02a96f99ce246ba613a2a5551264", + "fields": { + "code_commune_insee": "45180", + "nom_de_la_commune": "LANGESSE", + "code_postal": "45290", + "coordonnees_gps": [ + 47.8171567468, + 2.6450051213 + ], + "libelle_d_acheminement": "LANGESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6450051213, + 47.8171567468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8009b86cfc51a2f0eb34d48e0bf6603e92c704f", + "fields": { + "code_commune_insee": "45181", + "nom_de_la_commune": "LEOUVILLE", + "code_postal": "45480", + "coordonnees_gps": [ + 48.2233393249, + 2.08701663707 + ], + "libelle_d_acheminement": "LEOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08701663707, + 48.2233393249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d9cef22f6892fea13635c10dcc8d4d57dac87bf", + "fields": { + "code_commune_insee": "45182", + "nom_de_la_commune": "LIGNY LE RIBAULT", + "code_postal": "45240", + "coordonnees_gps": [ + 47.6832812025, + 1.79078141951 + ], + "libelle_d_acheminement": "LIGNY LE RIBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79078141951, + 47.6832812025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c205c9f3a1c949e7293ef2b548deb41bddf1c30", + "fields": { + "code_commune_insee": "45185", + "nom_de_la_commune": "LOMBREUIL", + "code_postal": "45700", + "coordonnees_gps": [ + 47.9423074217, + 2.62713331194 + ], + "libelle_d_acheminement": "LOMBREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62713331194, + 47.9423074217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd3180283d8c001874ed03360625172a85acba7a", + "fields": { + "ligne_5": "COUDRAY", + "code_commune_insee": "45191", + "libelle_d_acheminement": "LE MALESHERBOIS", + "code_postal": "45330", + "nom_de_la_commune": "LE MALESHERBOIS", + "coordonnees_gps": [ + 48.2894150644, + 2.39799452821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39799452821, + 48.2894150644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c53fc2e015734b113e7cb92105c4cb75b6a38b60", + "fields": { + "ligne_5": "MALESHERBES", + "code_commune_insee": "45191", + "libelle_d_acheminement": "LE MALESHERBOIS", + "code_postal": "45330", + "nom_de_la_commune": "LE MALESHERBOIS", + "coordonnees_gps": [ + 48.2894150644, + 2.39799452821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39799452821, + 48.2894150644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f425102b15bc96448ab622fb6f4749d6843d8d75", + "fields": { + "code_commune_insee": "45202", + "nom_de_la_commune": "MESSAS", + "code_postal": "45190", + "coordonnees_gps": [ + 47.8085997033, + 1.63534579701 + ], + "libelle_d_acheminement": "MESSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63534579701, + 47.8085997033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65f72d927144776a284aa7ff686938578202dc5f", + "fields": { + "code_commune_insee": "45204", + "nom_de_la_commune": "MEZIERES LEZ CLERY", + "code_postal": "45370", + "coordonnees_gps": [ + 47.8109765649, + 1.81743017495 + ], + "libelle_d_acheminement": "MEZIERES LEZ CLERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81743017495, + 47.8109765649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22fb74255677e3fa1bb8a9af9c9e7f7a6b1f42bc", + "fields": { + "code_commune_insee": "45212", + "nom_de_la_commune": "MONTCRESSON", + "code_postal": "45700", + "coordonnees_gps": [ + 47.9110568348, + 2.8050629684 + ], + "libelle_d_acheminement": "MONTCRESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8050629684, + 47.9110568348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62c1b623ffbb57e8ba1753ab5c7f12fcbe096e55", + "fields": { + "code_commune_insee": "45217", + "nom_de_la_commune": "MORVILLE EN BEAUCE", + "code_postal": "45300", + "coordonnees_gps": [ + 48.2550792825, + 2.15858235508 + ], + "libelle_d_acheminement": "MORVILLE EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15858235508, + 48.2550792825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74e84fcca3878834eb5c2b5ef64fe8310b93062c", + "fields": { + "code_commune_insee": "45219", + "nom_de_la_commune": "MOULON", + "code_postal": "45270", + "coordonnees_gps": [ + 48.018833927, + 2.59545812326 + ], + "libelle_d_acheminement": "MOULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59545812326, + 48.018833927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "867e72d81aae36a0c606d9382ca78f342c646a9b", + "fields": { + "code_commune_insee": "45240", + "nom_de_la_commune": "OUTARVILLE", + "code_postal": "45480", + "coordonnees_gps": [ + 48.2142854596, + 2.02173092617 + ], + "libelle_d_acheminement": "OUTARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02173092617, + 48.2142854596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae8322db134ec68defd02f598f20d10dd652d8a1", + "fields": { + "code_commune_insee": "45244", + "nom_de_la_commune": "OUZOUER SUR LOIRE", + "code_postal": "45570", + "coordonnees_gps": [ + 47.7843937, + 2.47737458282 + ], + "libelle_d_acheminement": "OUZOUER SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47737458282, + 47.7843937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "389a31d1b9a8e65b7400db596bf4e70e9bc5d556", + "fields": { + "code_commune_insee": "45248", + "nom_de_la_commune": "PATAY", + "code_postal": "45310", + "coordonnees_gps": [ + 48.050944058, + 1.69412591416 + ], + "libelle_d_acheminement": "PATAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69412591416, + 48.050944058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b388c9707c937c0b1b79d6522942bc066828a7e", + "fields": { + "code_commune_insee": "45256", + "nom_de_la_commune": "PRESNOY", + "code_postal": "45260", + "coordonnees_gps": [ + 47.9580605247, + 2.5589554736 + ], + "libelle_d_acheminement": "PRESNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5589554736, + 47.9580605247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf58d7f696e5e0ddf376acb046d512cc9b763034", + "fields": { + "code_commune_insee": "45261", + "nom_de_la_commune": "REBRECHIEN", + "code_postal": "45470", + "coordonnees_gps": [ + 47.9935958151, + 2.02397089801 + ], + "libelle_d_acheminement": "REBRECHIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02397089801, + 47.9935958151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0bb813c1faf67162297ef2854a96a5f9ab8e3a3", + "fields": { + "code_commune_insee": "45263", + "nom_de_la_commune": "ROUVRES ST JEAN", + "code_postal": "45300", + "coordonnees_gps": [ + 48.3243507576, + 2.21045535164 + ], + "libelle_d_acheminement": "ROUVRES ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21045535164, + 48.3243507576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fac7b0d4f93cd9ec0e12f952bb49e829a2019f5", + "fields": { + "code_commune_insee": "45277", + "nom_de_la_commune": "ST FLORENT", + "code_postal": "45600", + "coordonnees_gps": [ + 47.6846303969, + 2.45341866592 + ], + "libelle_d_acheminement": "ST FLORENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45341866592, + 47.6846303969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8876b74fab79e7396cda663343ded29742ef2899", + "fields": { + "code_commune_insee": "45280", + "nom_de_la_commune": "ST GONDON", + "code_postal": "45500", + "coordonnees_gps": [ + 47.6883834117, + 2.53960539003 + ], + "libelle_d_acheminement": "ST GONDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53960539003, + 47.6883834117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9d9dfdee25dcfc95326576f56e9bfcb13d48f9b", + "fields": { + "code_commune_insee": "45282", + "nom_de_la_commune": "ST HILAIRE ST MESMIN", + "code_postal": "45160", + "coordonnees_gps": [ + 47.8500863067, + 1.83403154937 + ], + "libelle_d_acheminement": "ST HILAIRE ST MESMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83403154937, + 47.8500863067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6809242cdbb537553882b431153b2a1ca5c3a058", + "fields": { + "code_commune_insee": "45284", + "nom_de_la_commune": "ST JEAN DE BRAYE", + "code_postal": "45800", + "coordonnees_gps": [ + 47.9178497622, + 1.97241570235 + ], + "libelle_d_acheminement": "ST JEAN DE BRAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97241570235, + 47.9178497622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "056fb6e1b13251adb4e88f8b09025f9379ad70ad", + "fields": { + "code_commune_insee": "45285", + "nom_de_la_commune": "ST JEAN DE LA RUELLE", + "code_postal": "45140", + "coordonnees_gps": [ + 47.9116141172, + 1.87108144709 + ], + "libelle_d_acheminement": "ST JEAN DE LA RUELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87108144709, + 47.9116141172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "745df0cb3a72cb218b02411f576013ef9db23efb", + "fields": { + "code_commune_insee": "45288", + "nom_de_la_commune": "ST LOUP DES VIGNES", + "code_postal": "45340", + "coordonnees_gps": [ + 48.0412459451, + 2.42721936357 + ], + "libelle_d_acheminement": "ST LOUP DES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42721936357, + 48.0412459451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b30c7490a9b4c82bf57701c60c3d1fc9db544404", + "fields": { + "code_commune_insee": "45289", + "nom_de_la_commune": "ST LYE LA FORET", + "code_postal": "45170", + "coordonnees_gps": [ + 48.0349544365, + 1.9722303277 + ], + "libelle_d_acheminement": "ST LYE LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9722303277, + 48.0349544365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6c2176bb0611e7a819071814e27a181c58eda8a", + "fields": { + "code_commune_insee": "45294", + "nom_de_la_commune": "ST MICHEL", + "code_postal": "45340", + "coordonnees_gps": [ + 48.0638465323, + 2.37213193925 + ], + "libelle_d_acheminement": "ST MICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37213193925, + 48.0638465323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f5093dffa11ea319f0747baeb515babb8551e07", + "fields": { + "code_commune_insee": "45296", + "nom_de_la_commune": "ST PERAVY LA COLOMBE", + "code_postal": "45310", + "coordonnees_gps": [ + 48.0029552851, + 1.69290201478 + ], + "libelle_d_acheminement": "ST PERAVY LA COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69290201478, + 48.0029552851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22a8873192270c83adde5d23945e301bb6395ddd", + "fields": { + "code_commune_insee": "45311", + "nom_de_la_commune": "SIGLOY", + "code_postal": "45110", + "coordonnees_gps": [ + 47.839361227, + 2.22257822761 + ], + "libelle_d_acheminement": "SIGLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22257822761, + 47.839361227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f37e20e899fb3f5803e283989772c6934c86dfa6", + "fields": { + "code_commune_insee": "45316", + "nom_de_la_commune": "SURY AUX BOIS", + "code_postal": "45530", + "coordonnees_gps": [ + 47.9537349646, + 2.35973695052 + ], + "libelle_d_acheminement": "SURY AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35973695052, + 47.9537349646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dce012fb5df96bafc1c664efaab04b65ac6e7fb0", + "fields": { + "code_commune_insee": "45321", + "nom_de_la_commune": "THIMORY", + "code_postal": "45260", + "coordonnees_gps": [ + 47.9255273898, + 2.59448373377 + ], + "libelle_d_acheminement": "THIMORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59448373377, + 47.9255273898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff3ae7db32d90eb8e4e57cd2647c31b3ff48a001", + "fields": { + "code_commune_insee": "45327", + "nom_de_la_commune": "TRAINOU", + "code_postal": "45470", + "coordonnees_gps": [ + 47.9652949917, + 2.10398859914 + ], + "libelle_d_acheminement": "TRAINOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10398859914, + 47.9652949917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af17cb7797092c5d6b4d136d30b565407b2b9f55", + "fields": { + "code_commune_insee": "45331", + "nom_de_la_commune": "VANNES SUR COSSON", + "code_postal": "45510", + "coordonnees_gps": [ + 47.7179640819, + 2.20904913519 + ], + "libelle_d_acheminement": "VANNES SUR COSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20904913519, + 47.7179640819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30b9de9bf0e2f1c42ed8f6a52783700504dc1f68", + "fields": { + "code_commune_insee": "45336", + "nom_de_la_commune": "VIGLAIN", + "code_postal": "45600", + "coordonnees_gps": [ + 47.7320234498, + 2.29028303384 + ], + "libelle_d_acheminement": "VIGLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29028303384, + 47.7320234498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dae47a998545026335f9d875d237875cae84bb1", + "fields": { + "code_commune_insee": "45339", + "nom_de_la_commune": "VILLEMOUTIERS", + "code_postal": "45270", + "coordonnees_gps": [ + 47.9898633359, + 2.55885928957 + ], + "libelle_d_acheminement": "VILLEMOUTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55885928957, + 47.9898633359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfc2a2254b630402250677e9e8be046704b64c04", + "fields": { + "code_commune_insee": "45344", + "nom_de_la_commune": "VILLORCEAU", + "code_postal": "45190", + "coordonnees_gps": [ + 47.8000109233, + 1.59585305756 + ], + "libelle_d_acheminement": "VILLORCEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59585305756, + 47.8000109233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2714f5dfa72e6dad7140b9edd07e039918c57f0", + "fields": { + "code_commune_insee": "46003", + "nom_de_la_commune": "ALVIGNAC", + "code_postal": "46500", + "coordonnees_gps": [ + 44.8338975947, + 1.68546472783 + ], + "libelle_d_acheminement": "ALVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68546472783, + 44.8338975947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4bdd9d7e534e928f89460fed79d9cf4b946ca03", + "fields": { + "code_commune_insee": "46008", + "nom_de_la_commune": "LES ARQUES", + "code_postal": "46250", + "coordonnees_gps": [ + 44.5993732049, + 1.24553751761 + ], + "libelle_d_acheminement": "LES ARQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24553751761, + 44.5993732049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "945d7acb90f165079576e402bd99aa5787d44da6", + "fields": { + "code_commune_insee": "46013", + "nom_de_la_commune": "BACH", + "code_postal": "46230", + "coordonnees_gps": [ + 44.3460184133, + 1.68033699425 + ], + "libelle_d_acheminement": "BACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68033699425, + 44.3460184133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cea2ee142a20de157a4e3e2138bf027acac84716", + "fields": { + "code_commune_insee": "46017", + "nom_de_la_commune": "BANNES", + "code_postal": "46400", + "coordonnees_gps": [ + 44.8140344075, + 1.91798481725 + ], + "libelle_d_acheminement": "BANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91798481725, + 44.8140344075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ba86c409c3d1bb63e9d0a07a21000305e7f3495", + "fields": { + "code_commune_insee": "46018", + "nom_de_la_commune": "LE BASTIT", + "code_postal": "46500", + "coordonnees_gps": [ + 44.7155811431, + 1.67355931002 + ], + "libelle_d_acheminement": "LE BASTIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67355931002, + 44.7155811431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6e5ee24066962bb150df75e9cd43f1e9e8d7edd", + "fields": { + "code_commune_insee": "46026", + "nom_de_la_commune": "BELMONT STE FOI", + "code_postal": "46230", + "coordonnees_gps": [ + 44.2897689625, + 1.63023470112 + ], + "libelle_d_acheminement": "BELMONT STE FOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63023470112, + 44.2897689625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2d6c6addfd77bcca6f2526ee4a114bdad86ef8b", + "fields": { + "code_commune_insee": "46028", + "nom_de_la_commune": "BETAILLE", + "code_postal": "46110", + "coordonnees_gps": [ + 44.9424463587, + 1.73672663964 + ], + "libelle_d_acheminement": "BETAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73672663964, + 44.9424463587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96f3c481937f7618c35fb3f5ecf09bd0da3bba18", + "fields": { + "code_commune_insee": "46029", + "nom_de_la_commune": "BIARS SUR CERE", + "code_postal": "46130", + "coordonnees_gps": [ + 44.9281999917, + 1.85705877079 + ], + "libelle_d_acheminement": "BIARS SUR CERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85705877079, + 44.9281999917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f40ce7b522ef9a93131f2f7072ae7aa066403488", + "fields": { + "code_commune_insee": "46030", + "nom_de_la_commune": "BIO", + "code_postal": "46500", + "coordonnees_gps": [ + 44.777991663, + 1.78785016782 + ], + "libelle_d_acheminement": "BIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78785016782, + 44.777991663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92527079885f736c8c43a8b17e971b06c14611b9", + "fields": { + "code_commune_insee": "46042", + "nom_de_la_commune": "CAHORS", + "code_postal": "46000", + "coordonnees_gps": [ + 44.4507370916, + 1.44075837848 + ], + "libelle_d_acheminement": "CAHORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44075837848, + 44.4507370916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86bb6466f9b32d26fcd42ec736ffff75559861ae", + "fields": { + "code_commune_insee": "46045", + "nom_de_la_commune": "CAJARC", + "code_postal": "46160", + "coordonnees_gps": [ + 44.494117576, + 1.83859373388 + ], + "libelle_d_acheminement": "CAJARC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83859373388, + 44.494117576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f820427abac117b8e7511018fd77f109ceb742e", + "fields": { + "code_commune_insee": "46053", + "nom_de_la_commune": "CAMBURAT", + "code_postal": "46100", + "coordonnees_gps": [ + 44.6443373032, + 1.99856962596 + ], + "libelle_d_acheminement": "CAMBURAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99856962596, + 44.6443373032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee78d7f352419e7632e34fd2d0f692106d0890fc", + "fields": { + "code_commune_insee": "46058", + "nom_de_la_commune": "CARENNAC", + "code_postal": "46110", + "coordonnees_gps": [ + 44.9054973553, + 1.72378675129 + ], + "libelle_d_acheminement": "CARENNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72378675129, + 44.9054973553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07d28d3c15a95dce27ef69c4706334c00aeb8112", + "fields": { + "code_commune_insee": "46059", + "nom_de_la_commune": "CARLUCET", + "code_postal": "46500", + "coordonnees_gps": [ + 44.731542751, + 1.61018363639 + ], + "libelle_d_acheminement": "CARLUCET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61018363639, + 44.731542751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6012b6dd1a6b474e1f4fe76813c5353a0855e64", + "fields": { + "code_commune_insee": "46072", + "nom_de_la_commune": "CONCORES", + "code_postal": "46310", + "coordonnees_gps": [ + 44.6672951054, + 1.39090015895 + ], + "libelle_d_acheminement": "CONCORES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39090015895, + 44.6672951054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02fa4a2e5b3057cbef8cb6e4766d0ee537107435", + "fields": { + "code_commune_insee": "46073", + "nom_de_la_commune": "CONCOTS", + "code_postal": "46260", + "coordonnees_gps": [ + 44.3966512584, + 1.6428976522 + ], + "libelle_d_acheminement": "CONCOTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6428976522, + 44.3966512584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd0dbbcdb2978efae09dd42cd006dbb720eaea3d", + "fields": { + "code_commune_insee": "46076", + "nom_de_la_commune": "CORNAC", + "code_postal": "46130", + "coordonnees_gps": [ + 44.9018775155, + 1.9180519973 + ], + "libelle_d_acheminement": "CORNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9180519973, + 44.9018775155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9efbad975108a26cfcdc1a3e2141d6de11850a85", + "fields": { + "code_commune_insee": "46080", + "nom_de_la_commune": "CRAYSSAC", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5167654701, + 1.32994493249 + ], + "libelle_d_acheminement": "CRAYSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32994493249, + 44.5167654701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "548a5e65ab61834510b4e970c61699cc39514ed0", + "fields": { + "code_commune_insee": "46082", + "nom_de_la_commune": "CREMPS", + "code_postal": "46230", + "coordonnees_gps": [ + 44.3877412529, + 1.58297001651 + ], + "libelle_d_acheminement": "CREMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58297001651, + 44.3877412529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3c0baaddcdc4186e3feb02c7d3550a2d2cece2d", + "fields": { + "code_commune_insee": "46087", + "nom_de_la_commune": "DEGAGNAC", + "code_postal": "46340", + "coordonnees_gps": [ + 44.6693459592, + 1.32745596587 + ], + "libelle_d_acheminement": "DEGAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32745596587, + 44.6693459592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e434c9b9bfd3aecb3d8302a44233ddaccc543a5", + "fields": { + "code_commune_insee": "46088", + "nom_de_la_commune": "DOUELLE", + "code_postal": "46140", + "coordonnees_gps": [ + 44.4711707333, + 1.35541899313 + ], + "libelle_d_acheminement": "DOUELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35541899313, + 44.4711707333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99e54009557594d7c5c98e1a8896fd308cc4e168", + "fields": { + "code_commune_insee": "46096", + "nom_de_la_commune": "ESPEYROUX", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7651724416, + 1.9255839312 + ], + "libelle_d_acheminement": "ESPEYROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9255839312, + 44.7651724416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d102bbc36db3d0b8242766e2722dc65df723a82e", + "fields": { + "code_commune_insee": "46115", + "nom_de_la_commune": "FRAYSSINHES", + "code_postal": "46400", + "coordonnees_gps": [ + 44.8726104417, + 1.94132532683 + ], + "libelle_d_acheminement": "FRAYSSINHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94132532683, + 44.8726104417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea81ca84b2c2c692c59f24ca0ba042a4b43df9aa", + "fields": { + "code_commune_insee": "46125", + "nom_de_la_commune": "GORSES", + "code_postal": "46210", + "coordonnees_gps": [ + 44.7935683292, + 2.0315083819 + ], + "libelle_d_acheminement": "GORSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0315083819, + 44.7935683292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1134136dc8b7ea97ba6b4e735b155002bfa3660", + "fields": { + "code_commune_insee": "46129", + "nom_de_la_commune": "GREALOU", + "code_postal": "46160", + "coordonnees_gps": [ + 44.5419774396, + 1.8758160179 + ], + "libelle_d_acheminement": "GREALOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8758160179, + 44.5419774396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edf0ee1e051c734865ebddc423a924b7db59ae68", + "fields": { + "code_commune_insee": "46130", + "nom_de_la_commune": "GREZELS", + "code_postal": "46700", + "coordonnees_gps": [ + 44.4680281643, + 1.14965078788 + ], + "libelle_d_acheminement": "GREZELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14965078788, + 44.4680281643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6248a2bec4463908d17ab5c6a240757ec7abf830", + "fields": { + "code_commune_insee": "46136", + "nom_de_la_commune": "LABASTIDE DU VERT", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5151357381, + 1.26565315705 + ], + "libelle_d_acheminement": "LABASTIDE DU VERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26565315705, + 44.5151357381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f78fc0c9e4428df5a1672f48815e24a0aeb3de71", + "fields": { + "ligne_5": "ST SAUVEUR LA VALLEE", + "code_commune_insee": "46138", + "libelle_d_acheminement": "COEUR DE CAUSSE", + "code_postal": "46240", + "nom_de_la_commune": "COEUR DE CAUSSE", + "coordonnees_gps": [ + 44.6484325779, + 1.58028882268 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58028882268, + 44.6484325779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07f149f13b99784204ea59c19c085c7b6c8ca01f", + "fields": { + "ligne_5": "COURS", + "code_commune_insee": "46156", + "libelle_d_acheminement": "BELLEFONT LA RAUZE", + "code_postal": "46090", + "nom_de_la_commune": "BELLEFONT LA RAUZE", + "coordonnees_gps": [ + 44.4871654588, + 1.47065780509 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47065780509, + 44.4871654588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1ab52921c4a30823335f93a83c0c03e8e923392", + "fields": { + "ligne_5": "VALROUFIE", + "code_commune_insee": "46156", + "libelle_d_acheminement": "BELLEFONT LA RAUZE", + "code_postal": "46090", + "nom_de_la_commune": "BELLEFONT LA RAUZE", + "coordonnees_gps": [ + 44.4871654588, + 1.47065780509 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47065780509, + 44.4871654588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce1b074e2f244841fe3ea691538a66c8031fcab0", + "fields": { + "code_commune_insee": "46159", + "nom_de_la_commune": "LATOUILLE LENTILLAC", + "code_postal": "46400", + "coordonnees_gps": [ + 44.8510729625, + 1.98049668844 + ], + "libelle_d_acheminement": "LATOUILLE LENTILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98049668844, + 44.8510729625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a31086cffc788ba3d1d24be003d0c48c9e22e1f", + "fields": { + "code_commune_insee": "46171", + "nom_de_la_commune": "LHERM", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5699106208, + 1.24112071813 + ], + "libelle_d_acheminement": "LHERM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24112071813, + 44.5699106208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f10ab2a0e2bc24b69ac39a8c406834a4f336737", + "fields": { + "code_commune_insee": "46175", + "nom_de_la_commune": "LISSAC ET MOURET", + "code_postal": "46100", + "coordonnees_gps": [ + 44.6228358432, + 1.97160948476 + ], + "libelle_d_acheminement": "LISSAC ET MOURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97160948476, + 44.6228358432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66dcb892a9e470c2aacd1fa599188f971fc2cd82", + "fields": { + "code_commune_insee": "46180", + "nom_de_la_commune": "LUNAN", + "code_postal": "46100", + "coordonnees_gps": [ + 44.6107026353, + 2.08424669582 + ], + "libelle_d_acheminement": "LUNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08424669582, + 44.6107026353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91ce9222d36850f3f556f9ff308c6ec2fcee2954", + "fields": { + "code_commune_insee": "46188", + "nom_de_la_commune": "MAXOU", + "code_postal": "46090", + "coordonnees_gps": [ + 44.5460613398, + 1.44746075267 + ], + "libelle_d_acheminement": "MAXOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44746075267, + 44.5460613398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bd430214a473a72bbe091ecdff7307ec1de2052", + "fields": { + "code_commune_insee": "46196", + "nom_de_la_commune": "MONTAMEL", + "code_postal": "46310", + "coordonnees_gps": [ + 44.6081820856, + 1.46461699053 + ], + "libelle_d_acheminement": "MONTAMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46461699053, + 44.6081820856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "504f9d03c6c9ab1c7137e2d34f33570bd2c70319", + "fields": { + "code_commune_insee": "46200", + "nom_de_la_commune": "MONTCLERA", + "code_postal": "46250", + "coordonnees_gps": [ + 44.6203221327, + 1.19833953446 + ], + "libelle_d_acheminement": "MONTCLERA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19833953446, + 44.6203221327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5985362e48fdae6631de1e70ac293155d83da0ef", + "fields": { + "ligne_5": "STE CROIX", + "code_commune_insee": "46201", + "libelle_d_acheminement": "MONTCUQ EN QUERCY BLANC", + "code_postal": "46800", + "nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", + "coordonnees_gps": [ + 44.335497631, + 1.21192283879 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21192283879, + 44.335497631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52e1211bf7e03bedad084e2854dc764f27358ec8", + "fields": { + "code_commune_insee": "46207", + "nom_de_la_commune": "MONTREDON", + "code_postal": "46270", + "coordonnees_gps": [ + 44.6130585802, + 2.18467035164 + ], + "libelle_d_acheminement": "MONTREDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18467035164, + 44.6130585802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cca35e18937649b9c498a2151aa17fcf73482e0", + "fields": { + "code_commune_insee": "46208", + "nom_de_la_commune": "MONTVALENT", + "code_postal": "46600", + "coordonnees_gps": [ + 44.8740684333, + 1.63555769286 + ], + "libelle_d_acheminement": "MONTVALENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63555769286, + 44.8740684333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46b0b91be4a74bb16342b1741f4089d33f7491de", + "fields": { + "code_commune_insee": "46211", + "nom_de_la_commune": "NUZEJOULS", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5360995607, + 1.373984961 + ], + "libelle_d_acheminement": "NUZEJOULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.373984961, + 44.5360995607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8571918866a25b7da67fe0a81ef88148abe2941", + "fields": { + "code_commune_insee": "46212", + "nom_de_la_commune": "ORNIAC", + "code_postal": "46330", + "coordonnees_gps": [ + 44.5429306051, + 1.67747447618 + ], + "libelle_d_acheminement": "ORNIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67747447618, + 44.5429306051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d47ac279bf9eeb46a98502a498517fff15a4ebb", + "fields": { + "code_commune_insee": "46214", + "nom_de_la_commune": "PARNAC", + "code_postal": "46140", + "coordonnees_gps": [ + 44.4811948006, + 1.31867316292 + ], + "libelle_d_acheminement": "PARNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31867316292, + 44.4811948006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9008fe8bbd5e13821d0285cdb41193aad6d3d98a", + "fields": { + "code_commune_insee": "46218", + "nom_de_la_commune": "PESCADOIRES", + "code_postal": "46220", + "coordonnees_gps": [ + 44.4994584805, + 1.15835515488 + ], + "libelle_d_acheminement": "PESCADOIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15835515488, + 44.4994584805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a501b963229566645d6d194e3e67ce28f28e2f07", + "fields": { + "code_commune_insee": "46219", + "nom_de_la_commune": "PEYRILLES", + "code_postal": "46310", + "coordonnees_gps": [ + 44.6213062372, + 1.39338062663 + ], + "libelle_d_acheminement": "PEYRILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39338062663, + 44.6213062372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55f54e907e622d2d661a179355b548a2545e00c6", + "fields": { + "code_commune_insee": "46245", + "nom_de_la_commune": "SABADEL LAUZES", + "code_postal": "46360", + "coordonnees_gps": [ + 44.5597362449, + 1.6075760767 + ], + "libelle_d_acheminement": "SABADEL LAUZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6075760767, + 44.5597362449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a648bc7a5a8f662236c0d47d5c8a673c96d66a5d", + "fields": { + "ligne_5": "ST MARTIN DE VERS", + "code_commune_insee": "46252", + "libelle_d_acheminement": "LES PECHS DU VERS", + "code_postal": "46360", + "nom_de_la_commune": "LES PECHS DU VERS", + "coordonnees_gps": [ + 44.5992781487, + 1.58540945458 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58540945458, + 44.5992781487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1e814052de92d2eddcb5cd1551e4a643f8e68aa", + "fields": { + "code_commune_insee": "46253", + "nom_de_la_commune": "ST CHAMARAND", + "code_postal": "46310", + "coordonnees_gps": [ + 44.6842825979, + 1.45932378106 + ], + "libelle_d_acheminement": "ST CHAMARAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45932378106, + 44.6842825979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f079591d146a09a3f2ca772a50180d947c900bd7", + "fields": { + "ligne_5": "LASCABANES", + "code_commune_insee": "46262", + "libelle_d_acheminement": "LENDOU EN QUERCY", + "code_postal": "46800", + "nom_de_la_commune": "LENDOU EN QUERCY", + "coordonnees_gps": [ + 44.3040998679, + 1.26251296057 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26251296057, + 44.3040998679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80c2a5f23fe7f9ef5a9f8472bbabfdbb58a6e4c9", + "fields": { + "ligne_5": "BAGAT EN QUERCY", + "code_commune_insee": "46263", + "libelle_d_acheminement": "BARGUELONNE EN QUERCY", + "code_postal": "46800", + "nom_de_la_commune": "BARGUELONNE EN QUERCY", + "coordonnees_gps": [ + 44.3601858859, + 1.22469783155 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22469783155, + 44.3601858859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e0167310a1dec80d3f56959077f90f96ea9fe97", + "fields": { + "ligne_5": "ST PANTALEON", + "code_commune_insee": "46263", + "libelle_d_acheminement": "BARGUELONNE EN QUERCY", + "code_postal": "46800", + "nom_de_la_commune": "BARGUELONNE EN QUERCY", + "coordonnees_gps": [ + 44.3601858859, + 1.22469783155 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22469783155, + 44.3601858859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f7d5962a66c49b7e8211af2d31654334a0bbe04", + "fields": { + "code_commune_insee": "46269", + "nom_de_la_commune": "ST HILAIRE", + "code_postal": "46210", + "coordonnees_gps": [ + 44.7884633484, + 2.15008064769 + ], + "libelle_d_acheminement": "ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15008064769, + 44.7884633484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e57b53467443eaf74ef919a3edebb9c423971b9a", + "fields": { + "code_commune_insee": "46271", + "nom_de_la_commune": "ST JEAN LESPINASSE", + "code_postal": "46400", + "coordonnees_gps": [ + 44.8581768481, + 1.85968660028 + ], + "libelle_d_acheminement": "ST JEAN LESPINASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85968660028, + 44.8581768481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c923b076929341be2cbeb9fb32da37cb1724a499", + "fields": { + "code_commune_insee": "46280", + "nom_de_la_commune": "ST MEDARD", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5388913734, + 1.29488289178 + ], + "libelle_d_acheminement": "ST MEDARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29488289178, + 44.5388913734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba3b4c5736a60d0c0e8ec9ea3b16f480c92e4566", + "fields": { + "code_commune_insee": "46290", + "nom_de_la_commune": "ST PROJET", + "code_postal": "46300", + "coordonnees_gps": [ + 44.7472704411, + 1.51114352201 + ], + "libelle_d_acheminement": "ST PROJET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51114352201, + 44.7472704411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5d1b926d0a69beac1da8af70eaed575f476f6ca", + "fields": { + "code_commune_insee": "46293", + "nom_de_la_commune": "ST SOZY", + "code_postal": "46200", + "coordonnees_gps": [ + 44.8817461552, + 1.55074989769 + ], + "libelle_d_acheminement": "ST SOZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55074989769, + 44.8817461552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d57b5cd7fc79445013014de6a0d5cf8ac57dcdc", + "fields": { + "code_commune_insee": "46296", + "nom_de_la_commune": "ST VINCENT RIVE D OLT", + "code_postal": "46140", + "coordonnees_gps": [ + 44.4489621367, + 1.3138253164 + ], + "libelle_d_acheminement": "ST VINCENT RIVE D OLT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3138253164, + 44.4489621367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0fc562a73ce4c02da1944632c34ed90cd5a9de6", + "fields": { + "code_commune_insee": "46302", + "nom_de_la_commune": "SENAILLAC LATRONQUIERE", + "code_postal": "46210", + "coordonnees_gps": [ + 44.8362230698, + 2.07406186694 + ], + "libelle_d_acheminement": "SENAILLAC LATRONQUIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07406186694, + 44.8362230698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b624b8d6fb5eab725eed1ad49e6112989d9d7f5", + "fields": { + "code_commune_insee": "46314", + "nom_de_la_commune": "TERROU", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7824469874, + 1.97624209767 + ], + "libelle_d_acheminement": "TERROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97624209767, + 44.7824469874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "455d023a461ea082dc52ad344a647b7b06c4d665", + "fields": { + "code_commune_insee": "46317", + "nom_de_la_commune": "THEGRA", + "code_postal": "46500", + "coordonnees_gps": [ + 44.8242153584, + 1.75171823166 + ], + "libelle_d_acheminement": "THEGRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75171823166, + 44.8242153584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c40f3d14b3a5afcf9dab8d0943fc6da9f778e540", + "fields": { + "code_commune_insee": "46320", + "nom_de_la_commune": "TOUR DE FAURE", + "code_postal": "46330", + "coordonnees_gps": [ + 44.4763123907, + 1.68646550409 + ], + "libelle_d_acheminement": "TOUR DE FAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68646550409, + 44.4763123907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ba0fd9215dd30987c25b9f8d7de58e4932203ba", + "fields": { + "code_commune_insee": "46324", + "nom_de_la_commune": "UZECH", + "code_postal": "46310", + "coordonnees_gps": [ + 44.5932890914, + 1.38558218639 + ], + "libelle_d_acheminement": "UZECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38558218639, + 44.5932890914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fc215cc934c46cdc38c65da15f5a1c87d92ba5a", + "fields": { + "code_commune_insee": "47009", + "nom_de_la_commune": "ANDIRAN", + "code_postal": "47170", + "coordonnees_gps": [ + 44.1023256865, + 0.285513474394 + ], + "libelle_d_acheminement": "ANDIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.285513474394, + 44.1023256865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d43a17f401350f3b8fd56fffe8e69bfbe127901c", + "fields": { + "code_commune_insee": "47010", + "nom_de_la_commune": "ANTAGNAC", + "code_postal": "47700", + "coordonnees_gps": [ + 44.3562107379, + -0.00209058322762 + ], + "libelle_d_acheminement": "ANTAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00209058322762, + 44.3562107379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f40258562566d1247d91b2d47e1fe1c1f75676df", + "fields": { + "code_commune_insee": "47016", + "nom_de_la_commune": "AUBIAC", + "code_postal": "47310", + "coordonnees_gps": [ + 44.1378277846, + 0.568271708498 + ], + "libelle_d_acheminement": "AUBIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.568271708498, + 44.1378277846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7735c1a53f7c3b5d69ecddb2035cf35176134f90", + "fields": { + "code_commune_insee": "47024", + "nom_de_la_commune": "BEAUPUY", + "code_postal": "47200", + "coordonnees_gps": [ + 44.5332209299, + 0.144907707512 + ], + "libelle_d_acheminement": "BEAUPUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.144907707512, + 44.5332209299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f2eb37414530169840b4dafc193bfd50a05b4e2", + "fields": { + "code_commune_insee": "47029", + "nom_de_la_commune": "BLANQUEFORT SUR BRIOLANCE", + "code_postal": "47500", + "coordonnees_gps": [ + 44.6091963287, + 0.960434375937 + ], + "libelle_d_acheminement": "BLANQUEFORT SUR BRIOLANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.960434375937, + 44.6091963287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cf5e45589e0eedd6750555c67b271c201cb7fff", + "fields": { + "code_commune_insee": "47030", + "nom_de_la_commune": "BLAYMONT", + "code_postal": "47470", + "coordonnees_gps": [ + 44.29466299, + 0.859118613428 + ], + "libelle_d_acheminement": "BLAYMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.859118613428, + 44.29466299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31faaa7880586ae99ca9cd7edd4ecaf0269f7f09", + "fields": { + "code_commune_insee": "47037", + "nom_de_la_commune": "BOURNEL", + "code_postal": "47210", + "coordonnees_gps": [ + 44.6319527324, + 0.676958694096 + ], + "libelle_d_acheminement": "BOURNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.676958694096, + 44.6319527324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b89efb4d99512d6dc539c17b75bcdd9e082709ea", + "fields": { + "code_commune_insee": "47039", + "nom_de_la_commune": "BOUSSES", + "code_postal": "47420", + "coordonnees_gps": [ + 44.1540947001, + 0.0821269395994 + ], + "libelle_d_acheminement": "BOUSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0821269395994, + 44.1540947001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b406c2c97e7444bf70abf473dfe0dece2ccf9705", + "fields": { + "code_commune_insee": "47041", + "nom_de_la_commune": "BRUCH", + "code_postal": "47130", + "coordonnees_gps": [ + 44.20662795, + 0.405442754423 + ], + "libelle_d_acheminement": "BRUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.405442754423, + 44.20662795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f67129c5b060d0f50556d4e94e4b88b9527f3ca", + "fields": { + "code_commune_insee": "47047", + "nom_de_la_commune": "CAMBES", + "code_postal": "47350", + "coordonnees_gps": [ + 44.5962932231, + 0.277882299934 + ], + "libelle_d_acheminement": "CAMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.277882299934, + 44.5962932231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bde0a74a93873f047003b78417a92cf6214b65c0", + "fields": { + "code_commune_insee": "47048", + "nom_de_la_commune": "CANCON", + "code_postal": "47290", + "coordonnees_gps": [ + 44.5473985229, + 0.627800125632 + ], + "libelle_d_acheminement": "CANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.627800125632, + 44.5473985229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a88f79180ed0a8be6adb4e22006489e12a5de04", + "fields": { + "code_commune_insee": "47050", + "nom_de_la_commune": "CASSIGNAS", + "code_postal": "47340", + "coordonnees_gps": [ + 44.3000939624, + 0.781102690761 + ], + "libelle_d_acheminement": "CASSIGNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.781102690761, + 44.3000939624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd6b09a2749908b69060383ba147b07a8912db42", + "fields": { + "code_commune_insee": "47059", + "nom_de_la_commune": "CAUBON ST SAUVEUR", + "code_postal": "47120", + "coordonnees_gps": [ + 44.5927480005, + 0.184135065483 + ], + "libelle_d_acheminement": "CAUBON ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.184135065483, + 44.5927480005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a51157f73c57020bf5b36925a678dbde166df73", + "fields": { + "code_commune_insee": "47065", + "nom_de_la_commune": "CLAIRAC", + "code_postal": "47320", + "coordonnees_gps": [ + 44.371064569, + 0.38579130311 + ], + "libelle_d_acheminement": "CLAIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38579130311, + 44.371064569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea0b08151e8aa96e65f9a5a1c2cd240ae8fb987d", + "fields": { + "code_commune_insee": "47067", + "nom_de_la_commune": "CLERMONT SOUBIRAN", + "code_postal": "47270", + "coordonnees_gps": [ + 44.1412580934, + 0.848563434392 + ], + "libelle_d_acheminement": "CLERMONT SOUBIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.848563434392, + 44.1412580934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27d1618d9374bd3f35ce2ae12b959ac6ed02bba9", + "fields": { + "code_commune_insee": "47068", + "nom_de_la_commune": "COCUMONT", + "code_postal": "47250", + "coordonnees_gps": [ + 44.453586027, + 0.0335952053533 + ], + "libelle_d_acheminement": "COCUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0335952053533, + 44.453586027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98d07cbc589afa11a59ee3c21674a664751aad70", + "fields": { + "code_commune_insee": "47081", + "nom_de_la_commune": "DOLMAYRAC", + "code_postal": "47110", + "coordonnees_gps": [ + 44.3565526064, + 0.591606081403 + ], + "libelle_d_acheminement": "DOLMAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.591606081403, + 44.3565526064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "659996e68de71eec0a02ce28994409ad268ba2a9", + "fields": { + "code_commune_insee": "47086", + "nom_de_la_commune": "DURAS", + "code_postal": "47120", + "coordonnees_gps": [ + 44.6760156672, + 0.201414040802 + ], + "libelle_d_acheminement": "DURAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.201414040802, + 44.6760156672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44b4565ff44f9d765a50372a8dd6a7d6e827d177", + "fields": { + "code_commune_insee": "47092", + "nom_de_la_commune": "FALS", + "code_postal": "47220", + "coordonnees_gps": [ + 44.1052716002, + 0.689254546889 + ], + "libelle_d_acheminement": "FALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.689254546889, + 44.1052716002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b37ed1f9c202a0cf197d8eac210ab2385912c3c9", + "fields": { + "code_commune_insee": "47097", + "nom_de_la_commune": "FEUGAROLLES", + "code_postal": "47230", + "coordonnees_gps": [ + 44.2178235565, + 0.360960245348 + ], + "libelle_d_acheminement": "FEUGAROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.360960245348, + 44.2178235565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a365c11c51851691e3df58ec72a74525c6552ec0", + "fields": { + "code_commune_insee": "47099", + "nom_de_la_commune": "FONGRAVE", + "code_postal": "47260", + "coordonnees_gps": [ + 44.4050058325, + 0.529808285762 + ], + "libelle_d_acheminement": "FONGRAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.529808285762, + 44.4050058325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae6e8b948788fc883b657dc6ad937b679108f187", + "fields": { + "code_commune_insee": "47102", + "nom_de_la_commune": "FRANCESCAS", + "code_postal": "47600", + "coordonnees_gps": [ + 44.0678806491, + 0.428251345616 + ], + "libelle_d_acheminement": "FRANCESCAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.428251345616, + 44.0678806491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "591e19bfa937822c5227871a735b09c42c55486c", + "fields": { + "code_commune_insee": "47103", + "nom_de_la_commune": "FRECHOU", + "code_postal": "47600", + "coordonnees_gps": [ + 44.0838735477, + 0.334941623613 + ], + "libelle_d_acheminement": "FRECHOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.334941623613, + 44.0838735477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30d6b9523524a775861e5b83a414751161e40eec", + "fields": { + "code_commune_insee": "47108", + "nom_de_la_commune": "GAUJAC", + "code_postal": "47200", + "coordonnees_gps": [ + 44.4911956758, + 0.116008631379 + ], + "libelle_d_acheminement": "GAUJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.116008631379, + 44.4911956758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46f3fed5ea70a8ff10ad9a9d029d55e20a2c791f", + "fields": { + "code_commune_insee": "47120", + "nom_de_la_commune": "JUSIX", + "code_postal": "47180", + "coordonnees_gps": [ + 44.5392859765, + 0.0488579062154 + ], + "libelle_d_acheminement": "JUSIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0488579062154, + 44.5392859765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75ea2cb93e45445da8df416630b6f9c94953a068", + "fields": { + "code_commune_insee": "47122", + "nom_de_la_commune": "LABRETONIE", + "code_postal": "47350", + "coordonnees_gps": [ + 44.4898181572, + 0.372672787599 + ], + "libelle_d_acheminement": "LABRETONIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.372672787599, + 44.4898181572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba2179c6c986563b0e266657bd10fcaefcc5705f", + "fields": { + "code_commune_insee": "47128", + "nom_de_la_commune": "LAFOX", + "code_postal": "47240", + "coordonnees_gps": [ + 44.1653179706, + 0.699221003684 + ], + "libelle_d_acheminement": "LAFOX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.699221003684, + 44.1653179706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5854302e48e82f6a06e4b0431a582ac5e7af60b0", + "fields": { + "code_commune_insee": "47137", + "nom_de_la_commune": "LAPLUME", + "code_postal": "47310", + "coordonnees_gps": [ + 44.1172103179, + 0.538616105986 + ], + "libelle_d_acheminement": "LAPLUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.538616105986, + 44.1172103179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d13f38f21c4279842768e64870a6c549816e27d", + "fields": { + "code_commune_insee": "47143", + "nom_de_la_commune": "LAVARDAC", + "code_postal": "47230", + "coordonnees_gps": [ + 44.182938902, + 0.301778436575 + ], + "libelle_d_acheminement": "LAVARDAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301778436575, + 44.182938902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d60e63668a4c7b140abda0ef1a398f0787f89d77", + "fields": { + "code_commune_insee": "47161", + "nom_de_la_commune": "MASSELS", + "code_postal": "47140", + "coordonnees_gps": [ + 44.3174299116, + 0.856329698479 + ], + "libelle_d_acheminement": "MASSELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.856329698479, + 44.3174299116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbdfc6eca2d793c9b4419db2fc9c1782cdb10090", + "fields": { + "code_commune_insee": "47162", + "nom_de_la_commune": "MASSOULES", + "code_postal": "47140", + "coordonnees_gps": [ + 44.3404289337, + 0.870691115892 + ], + "libelle_d_acheminement": "MASSOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.870691115892, + 44.3404289337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "838dd28336b1504608b508e3962a0dd36cd76829", + "fields": { + "code_commune_insee": "47163", + "nom_de_la_commune": "MAUVEZIN SUR GUPIE", + "code_postal": "47200", + "coordonnees_gps": [ + 44.5607815958, + 0.175677075585 + ], + "libelle_d_acheminement": "MAUVEZIN SUR GUPIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.175677075585, + 44.5607815958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f22de0279512ecef7db581ad50907cac39bd97c", + "fields": { + "code_commune_insee": "47165", + "nom_de_la_commune": "MEILHAN SUR GARONNE", + "code_postal": "47180", + "coordonnees_gps": [ + 44.5066850051, + 0.0288921045777 + ], + "libelle_d_acheminement": "MEILHAN SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0288921045777, + 44.5066850051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f13e77828e52c4c6f3112a7b65670a362fc71d36", + "fields": { + "code_commune_insee": "47197", + "nom_de_la_commune": "NOMDIEU", + "code_postal": "47600", + "coordonnees_gps": [ + 44.0797133373, + 0.469920586067 + ], + "libelle_d_acheminement": "NOMDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.469920586067, + 44.0797133373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "672bd566790ae1a04a51cf93dd324f05e4a3541e", + "fields": { + "code_commune_insee": "47201", + "nom_de_la_commune": "LE PASSAGE", + "code_postal": "47520", + "coordonnees_gps": [ + 44.1921120609, + 0.594677375756 + ], + "libelle_d_acheminement": "LE PASSAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.594677375756, + 44.1921120609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9bcb271e6703b95869876c741eaef476a5cf016", + "fields": { + "code_commune_insee": "47203", + "nom_de_la_commune": "PENNE D AGENAIS", + "code_postal": "47140", + "coordonnees_gps": [ + 44.3792871944, + 0.839426839865 + ], + "libelle_d_acheminement": "PENNE D AGENAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.839426839865, + 44.3792871944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4206ea9c9ecdb512351fa95f1a4aee1642cacb34", + "fields": { + "code_commune_insee": "47214", + "nom_de_la_commune": "PUCH D AGENAIS", + "code_postal": "47160", + "coordonnees_gps": [ + 44.3292849237, + 0.260560126348 + ], + "libelle_d_acheminement": "PUCH D AGENAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.260560126348, + 44.3292849237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bd34d7c1dbe9682376e60018f0869cf18f0e17b", + "fields": { + "code_commune_insee": "47215", + "nom_de_la_commune": "PUJOLS", + "code_postal": "47300", + "coordonnees_gps": [ + 44.3705410959, + 0.698420769964 + ], + "libelle_d_acheminement": "PUJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.698420769964, + 44.3705410959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01a00403eb34bca8b5dc2846846d82d2439b0cd3", + "fields": { + "code_commune_insee": "47216", + "nom_de_la_commune": "PUYMICLAN", + "code_postal": "47350", + "coordonnees_gps": [ + 44.5134325386, + 0.314763378622 + ], + "libelle_d_acheminement": "PUYMICLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.314763378622, + 44.5134325386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bf77527daca3d9cc21f8f7561dcd6aeb83ed1ee", + "fields": { + "code_commune_insee": "47219", + "nom_de_la_commune": "RAYET", + "code_postal": "47210", + "coordonnees_gps": [ + 44.6694271783, + 0.76939339875 + ], + "libelle_d_acheminement": "RAYET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76939339875, + 44.6694271783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcc68ceb7e60b95f8c7203579eefc7867a144a24", + "fields": { + "code_commune_insee": "47220", + "nom_de_la_commune": "RAZIMET", + "code_postal": "47160", + "coordonnees_gps": [ + 44.3521277171, + 0.230708031809 + ], + "libelle_d_acheminement": "RAZIMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.230708031809, + 44.3521277171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e93e115e13113965a50a8fb0ba51026583b0af8b", + "fields": { + "code_commune_insee": "47221", + "nom_de_la_commune": "REAUP LISSE", + "code_postal": "47170", + "coordonnees_gps": [ + 44.1005390753, + 0.210196910865 + ], + "libelle_d_acheminement": "REAUP LISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.210196910865, + 44.1005390753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03a128261a7b9b0ce86470914076e3c922a49279", + "fields": { + "code_commune_insee": "47224", + "nom_de_la_commune": "ROMESTAING", + "code_postal": "47250", + "coordonnees_gps": [ + 44.4174259334, + 0.0188689173948 + ], + "libelle_d_acheminement": "ROMESTAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0188689173948, + 44.4174259334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "191080a6ccb9eb2c5f5bd1cf72248059f8d3a515", + "fields": { + "code_commune_insee": "47230", + "nom_de_la_commune": "ST AUBIN", + "code_postal": "47150", + "coordonnees_gps": [ + 44.4754463347, + 0.839909036314 + ], + "libelle_d_acheminement": "ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.839909036314, + 44.4754463347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "152f3e8cd18a8baf1d3a693de79ff91c9842342f", + "fields": { + "code_commune_insee": "47234", + "nom_de_la_commune": "ST CAPRAIS DE LERM", + "code_postal": "47270", + "coordonnees_gps": [ + 44.2154136367, + 0.755929667163 + ], + "libelle_d_acheminement": "ST CAPRAIS DE LERM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.755929667163, + 44.2154136367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "669a29079d25d337260eef8b6febee20e592468b", + "fields": { + "code_commune_insee": "47235", + "nom_de_la_commune": "ST COLOMB DE LAUZUN", + "code_postal": "47410", + "coordonnees_gps": [ + 44.6082356833, + 0.47829320163 + ], + "libelle_d_acheminement": "ST COLOMB DE LAUZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47829320163, + 44.6082356833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb7ad7c5f886f848d4edff12edd4ea98d6aa70fc", + "fields": { + "code_commune_insee": "47238", + "nom_de_la_commune": "STE COLOMBE EN BRUILHOIS", + "code_postal": "47310", + "coordonnees_gps": [ + 44.1868209409, + 0.516380488388 + ], + "libelle_d_acheminement": "STE COLOMBE EN BRUILHOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.516380488388, + 44.1868209409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92041bc595d84a87d4a060bb387f2fc02f960e47", + "fields": { + "code_commune_insee": "47248", + "nom_de_la_commune": "ST JEAN DE THURAC", + "code_postal": "47270", + "coordonnees_gps": [ + 44.1570353521, + 0.740266774824 + ], + "libelle_d_acheminement": "ST JEAN DE THURAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.740266774824, + 44.1570353521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beb4d00345cf888af9762849c39fe2cc498e86c5", + "fields": { + "code_commune_insee": "47259", + "nom_de_la_commune": "ST MAURICE DE LESTAPEL", + "code_postal": "47290", + "coordonnees_gps": [ + 44.5819605641, + 0.573856388093 + ], + "libelle_d_acheminement": "ST MAURICE DE LESTAPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.573856388093, + 44.5819605641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08eeb0d23c28fce9a89f2f1da889ae1cfee6edb5", + "fields": { + "code_commune_insee": "47263", + "nom_de_la_commune": "ST PARDOUX DU BREUIL", + "code_postal": "47200", + "coordonnees_gps": [ + 44.4713724451, + 0.199107066412 + ], + "libelle_d_acheminement": "ST PARDOUX DU BREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.199107066412, + 44.4713724451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "142873fb07cfcec8b0aa77cb263da9b7fc8656c4", + "fields": { + "code_commune_insee": "47271", + "nom_de_la_commune": "ST PIERRE SUR DROPT", + "code_postal": "47120", + "coordonnees_gps": [ + 44.6486668035, + 0.206503642426 + ], + "libelle_d_acheminement": "ST PIERRE SUR DROPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.206503642426, + 44.6486668035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a79ad3cff51ae18dc214ca9debe016ea822bb65", + "fields": { + "code_commune_insee": "47273", + "nom_de_la_commune": "ST ROBERT", + "code_postal": "47340", + "coordonnees_gps": [ + 44.2501427402, + 0.78976956588 + ], + "libelle_d_acheminement": "ST ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78976956588, + 44.2501427402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3078e801870a992b8f49b4ce2f008cf910859eee", + "fields": { + "code_commune_insee": "47278", + "nom_de_la_commune": "ST SERNIN", + "code_postal": "47120", + "coordonnees_gps": [ + 44.7063934803, + 0.238983913386 + ], + "libelle_d_acheminement": "ST SERNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.238983913386, + 44.7063934803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2be638c46ddb896d8666afba478e3a6a974416ea", + "fields": { + "code_commune_insee": "47283", + "nom_de_la_commune": "ST VITE", + "code_postal": "47500", + "coordonnees_gps": [ + 44.4672729873, + 0.933693165235 + ], + "libelle_d_acheminement": "ST VITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.933693165235, + 44.4672729873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7834b7fb9d202e33229bfd9897ec8c7092d309c", + "fields": { + "code_commune_insee": "47293", + "nom_de_la_commune": "SAUVETERRE ST DENIS", + "code_postal": "47220", + "coordonnees_gps": [ + 44.1498250979, + 0.700092181215 + ], + "libelle_d_acheminement": "SAUVETERRE ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.700092181215, + 44.1498250979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e2e656c09f9abf06b6a71ad9b3a70be63c5ff88", + "fields": { + "code_commune_insee": "47294", + "nom_de_la_commune": "SAVIGNAC DE DURAS", + "code_postal": "47120", + "coordonnees_gps": [ + 44.7173874905, + 0.184068178944 + ], + "libelle_d_acheminement": "SAVIGNAC DE DURAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.184068178944, + 44.7173874905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ae6b19e9fd4d8f258c90e12f1f20fd158c921da", + "fields": { + "ligne_5": "MEYLAN", + "code_commune_insee": "47302", + "libelle_d_acheminement": "SOS", + "code_postal": "47170", + "nom_de_la_commune": "SOS", + "coordonnees_gps": [ + 44.0568059441, + 0.125536637089 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.125536637089, + 44.0568059441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e26acdc752ca81bd90842fdf35b0301fe3db6d64", + "fields": { + "code_commune_insee": "47305", + "nom_de_la_commune": "TAYRAC", + "code_postal": "47270", + "coordonnees_gps": [ + 44.2060027013, + 0.836072075558 + ], + "libelle_d_acheminement": "TAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.836072075558, + 44.2060027013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ecd8b2d378041c5468257bc070731a0ce938cc6", + "fields": { + "code_commune_insee": "47306", + "nom_de_la_commune": "LE TEMPLE SUR LOT", + "code_postal": "47110", + "coordonnees_gps": [ + 44.3754139489, + 0.525660139927 + ], + "libelle_d_acheminement": "LE TEMPLE SUR LOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.525660139927, + 44.3754139489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d96dd82faa268ddd6fb33f7d87d56d5a6e45d6d7", + "fields": { + "code_commune_insee": "47310", + "nom_de_la_commune": "TONNEINS", + "code_postal": "47400", + "coordonnees_gps": [ + 44.3836784997, + 0.324905750145 + ], + "libelle_d_acheminement": "TONNEINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.324905750145, + 44.3836784997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "816425834c3418c583d9de826ea0a619266ca29b", + "fields": { + "code_commune_insee": "47311", + "nom_de_la_commune": "TOURLIAC", + "code_postal": "47210", + "coordonnees_gps": [ + 44.6842108376, + 0.806386025708 + ], + "libelle_d_acheminement": "TOURLIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.806386025708, + 44.6842108376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7ff01339d41515fe75e2a6f0b0e24f90ae6168c", + "fields": { + "code_commune_insee": "47318", + "nom_de_la_commune": "VIANNE", + "code_postal": "47230", + "coordonnees_gps": [ + 44.2122017906, + 0.322783861284 + ], + "libelle_d_acheminement": "VIANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.322783861284, + 44.2122017906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20022b18e9e7348688765bcc9ced5204369b9dfd", + "fields": { + "code_commune_insee": "47328", + "nom_de_la_commune": "ST GEORGES", + "code_postal": "47370", + "coordonnees_gps": [ + 44.4415435954, + 0.927467853868 + ], + "libelle_d_acheminement": "ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.927467853868, + 44.4415435954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbcc328f56789159ff0c3c6bc7d0151942a30f61", + "fields": { + "code_commune_insee": "48007", + "nom_de_la_commune": "ARZENC D APCHER", + "code_postal": "48310", + "coordonnees_gps": [ + 44.8446740951, + 3.11215598428 + ], + "libelle_d_acheminement": "ARZENC D APCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11215598428, + 44.8446740951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "921b994c42786970ebe9c77c5abfb9adfd8f65d8", + "fields": { + "ligne_5": "JAVOLS", + "code_commune_insee": "48009", + "libelle_d_acheminement": "PEYRE EN AUBRAC", + "code_postal": "48130", + "nom_de_la_commune": "PEYRE EN AUBRAC", + "coordonnees_gps": [ + 44.7233900467, + 3.28132614741 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28132614741, + 44.7233900467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b06067544f0e31e604338654fcc33891aa3cae38", + "fields": { + "code_commune_insee": "48012", + "nom_de_la_commune": "LES MONTS VERTS", + "code_postal": "48200", + "coordonnees_gps": [ + 44.8489134822, + 3.22180661807 + ], + "libelle_d_acheminement": "LES MONTS VERTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22180661807, + 44.8489134822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba4d79cce1f42f0b92e4356567daad12f4ad8c81", + "fields": { + "code_commune_insee": "48025", + "nom_de_la_commune": "LES BESSONS", + "code_postal": "48200", + "coordonnees_gps": [ + 44.77338024, + 3.24344025739 + ], + "libelle_d_acheminement": "LES BESSONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24344025739, + 44.77338024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89d000e586563d0cc1e8223e7913e63f46d9f91b", + "fields": { + "ligne_5": "BELVEZET", + "code_commune_insee": "48027", + "libelle_d_acheminement": "MONT LOZERE ET GOULET", + "code_postal": "48170", + "nom_de_la_commune": "MONT LOZERE ET GOULET", + "coordonnees_gps": [ + 44.5107452501, + 3.74294007436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74294007436, + 44.5107452501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe5d4cd122977f3ef234f13f68c53cd8176ac49d", + "fields": { + "ligne_5": "ST JULIEN DU TOURNEL", + "code_commune_insee": "48027", + "libelle_d_acheminement": "MONT LOZERE ET GOULET", + "code_postal": "48190", + "nom_de_la_commune": "MONT LOZERE ET GOULET", + "coordonnees_gps": [ + 44.5107452501, + 3.74294007436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74294007436, + 44.5107452501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbd371dffe2dc2b43714f14c5ab52f43e2847333", + "fields": { + "code_commune_insee": "48031", + "nom_de_la_commune": "BRION", + "code_postal": "48310", + "coordonnees_gps": [ + 44.7498734557, + 3.07854846372 + ], + "libelle_d_acheminement": "BRION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07854846372, + 44.7498734557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d71d26058a0438618eab60cff7d56a2320721d8", + "fields": { + "code_commune_insee": "48042", + "nom_de_la_commune": "CHASTEL NOUVEL", + "code_postal": "48000", + "coordonnees_gps": [ + 44.5707532071, + 3.49280598377 + ], + "libelle_d_acheminement": "CHASTEL NOUVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49280598377, + 44.5707532071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fd4d850cdfe635fb749acaa0efc654278388d68", + "fields": { + "code_commune_insee": "48048", + "nom_de_la_commune": "CHEYLARD L EVEQUE", + "code_postal": "48300", + "coordonnees_gps": [ + 44.6315294707, + 3.80974114923 + ], + "libelle_d_acheminement": "CHEYLARD L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80974114923, + 44.6315294707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae4c16999689eef55513a75df61f4b0090151bbe", + "fields": { + "code_commune_insee": "48051", + "nom_de_la_commune": "LE COLLET DE DEZE", + "code_postal": "48160", + "coordonnees_gps": [ + 44.2554480808, + 3.92521509971 + ], + "libelle_d_acheminement": "LE COLLET DE DEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92521509971, + 44.2554480808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c0658461c6546475eabda0b0798e44f52399d94", + "fields": { + "code_commune_insee": "48055", + "nom_de_la_commune": "CULTURES", + "code_postal": "48230", + "coordonnees_gps": [ + 44.4911701749, + 3.38102042197 + ], + "libelle_d_acheminement": "CULTURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38102042197, + 44.4911701749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "708cc262eafcb8966ed25958317138799e2cce06", + "fields": { + "code_commune_insee": "48070", + "nom_de_la_commune": "GRANDRIEU", + "code_postal": "48600", + "coordonnees_gps": [ + 44.7775011056, + 3.64068574736 + ], + "libelle_d_acheminement": "GRANDRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64068574736, + 44.7775011056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adf3a99c7bd805dcc6d83da53836bd7fb069a446", + "fields": { + "code_commune_insee": "48073", + "nom_de_la_commune": "LES HERMAUX", + "code_postal": "48340", + "coordonnees_gps": [ + 44.5235838442, + 3.13204161699 + ], + "libelle_d_acheminement": "LES HERMAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13204161699, + 44.5235838442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d5f3052e04bcd6ec9c5152a825cbb61fa5303c5", + "fields": { + "code_commune_insee": "48075", + "nom_de_la_commune": "ISPAGNAC", + "code_postal": "48320", + "coordonnees_gps": [ + 44.3984529023, + 3.53146290562 + ], + "libelle_d_acheminement": "ISPAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53146290562, + 44.3984529023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f85c5adae12a1c0d89d919e322226fcd7052f35b", + "fields": { + "code_commune_insee": "48097", + "nom_de_la_commune": "MOISSAC VALLEE FRANCAISE", + "code_postal": "48110", + "coordonnees_gps": [ + 44.157860146, + 3.79127521457 + ], + "libelle_d_acheminement": "MOISSAC VALLEE FRANCAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79127521457, + 44.157860146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7af4812e70e5b80a3d0a9b0a2d83b81e87c13805", + "fields": { + "code_commune_insee": "48103", + "nom_de_la_commune": "MONTRODAT", + "code_postal": "48100", + "coordonnees_gps": [ + 44.5574972812, + 3.32949888703 + ], + "libelle_d_acheminement": "MONTRODAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32949888703, + 44.5574972812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c79370f0b7a17e794d5df9a9d611929736f2f545", + "fields": { + "code_commune_insee": "48115", + "nom_de_la_commune": "LE POMPIDOU", + "code_postal": "48110", + "coordonnees_gps": [ + 44.2034836971, + 3.65983483372 + ], + "libelle_d_acheminement": "LE POMPIDOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65983483372, + 44.2034836971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd55a7d31ec31c9f149d8da27fb1472327bc96fb", + "fields": { + "code_commune_insee": "48117", + "nom_de_la_commune": "POURCHARESSES", + "code_postal": "48800", + "coordonnees_gps": [ + 44.434038613, + 3.89869744048 + ], + "libelle_d_acheminement": "POURCHARESSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89869744048, + 44.434038613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8095940bffd8b965b3c794b13bb31a965fe92670", + "fields": { + "ligne_5": "LA VILLEDIEU", + "code_commune_insee": "48127", + "libelle_d_acheminement": "MONTS DE RANDON", + "code_postal": "48700", + "nom_de_la_commune": "MONTS DE RANDON", + "coordonnees_gps": [ + 44.6238353175, + 3.4886504946 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4886504946, + 44.6238353175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be5bc8a43548a8fc80f69292611708de65a13a81", + "fields": { + "code_commune_insee": "48128", + "nom_de_la_commune": "RIMEIZE", + "code_postal": "48200", + "coordonnees_gps": [ + 44.764646204, + 3.31719285575 + ], + "libelle_d_acheminement": "RIMEIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31719285575, + 44.764646204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d99e41e9e895c7be0e2063ba3e8a5aace222221", + "fields": { + "code_commune_insee": "48129", + "nom_de_la_commune": "ROCLES", + "code_postal": "48300", + "coordonnees_gps": [ + 44.7026866095, + 3.78578869081 + ], + "libelle_d_acheminement": "ROCLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78578869081, + 44.7026866095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13fe1fbdb1e0a2f16e5f008fac1f81d3e231b8df", + "fields": { + "code_commune_insee": "48140", + "nom_de_la_commune": "ST CHELY D APCHER", + "code_postal": "48200", + "coordonnees_gps": [ + 44.8126363545, + 3.2751576154 + ], + "libelle_d_acheminement": "ST CHELY D APCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2751576154, + 44.8126363545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5230262a7fd4a8a0d0e1097f1da85a4a9dce5b7c", + "fields": { + "ligne_5": "PRADES", + "code_commune_insee": "48146", + "libelle_d_acheminement": "GORGES DU TARN CAUSSES", + "code_postal": "48210", + "nom_de_la_commune": "GORGES DU TARN CAUSSES", + "coordonnees_gps": [ + 44.3777129567, + 3.41934570392 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41934570392, + 44.3777129567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2622cdb231633ee86688d68e04a079a4432fd70", + "fields": { + "ligne_5": "STE ENIMIE", + "code_commune_insee": "48146", + "libelle_d_acheminement": "GORGES DU TARN CAUSSES", + "code_postal": "48210", + "nom_de_la_commune": "GORGES DU TARN CAUSSES", + "coordonnees_gps": [ + 44.3777129567, + 3.41934570392 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41934570392, + 44.3777129567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "920bab869f414fe58a47ba9b5e871422e3e4bc94", + "fields": { + "code_commune_insee": "48150", + "nom_de_la_commune": "ST FLOUR DE MERCOIRE", + "code_postal": "48300", + "coordonnees_gps": [ + 44.6814106122, + 3.82941959224 + ], + "libelle_d_acheminement": "ST FLOUR DE MERCOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82941959224, + 44.6814106122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f61d4654d8f6061e4c48846a6b652af68c2b95f8", + "fields": { + "code_commune_insee": "48156", + "nom_de_la_commune": "ST GERMAIN DU TEIL", + "code_postal": "48340", + "coordonnees_gps": [ + 44.48168833, + 3.17237902865 + ], + "libelle_d_acheminement": "ST GERMAIN DU TEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17237902865, + 44.48168833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a6bfed3de9bb96560d9bb5a92e1ca13e76fbdec", + "fields": { + "code_commune_insee": "48169", + "nom_de_la_commune": "ST LEGER DU MALZIEU", + "code_postal": "48140", + "coordonnees_gps": [ + 44.8986893937, + 3.31608500848 + ], + "libelle_d_acheminement": "ST LEGER DU MALZIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31608500848, + 44.8986893937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0439d5f04f54b92b7169aa29c607068a3d6bae30", + "fields": { + "code_commune_insee": "48171", + "nom_de_la_commune": "ST MARTIN DE LANSUSCLE", + "code_postal": "48110", + "coordonnees_gps": [ + 44.2230644532, + 3.75067066931 + ], + "libelle_d_acheminement": "ST MARTIN DE LANSUSCLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75067066931, + 44.2230644532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27f0dafa017fdc5bc4ef76fc450e30bf5bf17735", + "fields": { + "code_commune_insee": "48173", + "nom_de_la_commune": "ST MICHEL DE DEZE", + "code_postal": "48160", + "coordonnees_gps": [ + 44.240223078, + 3.88529361784 + ], + "libelle_d_acheminement": "ST MICHEL DE DEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88529361784, + 44.240223078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "003598d6bf0bf91b75a021881b747c38753597e0", + "fields": { + "code_commune_insee": "48176", + "nom_de_la_commune": "ST PIERRE DES TRIPIERS", + "code_postal": "48150", + "coordonnees_gps": [ + 44.2243200504, + 3.26998184024 + ], + "libelle_d_acheminement": "ST PIERRE DES TRIPIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26998184024, + 44.2243200504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57efd81169033d7a63072318672d1f2adb173d2b", + "fields": { + "code_commune_insee": "48177", + "nom_de_la_commune": "ST PIERRE LE VIEUX", + "code_postal": "48200", + "coordonnees_gps": [ + 44.844671879, + 3.30623246683 + ], + "libelle_d_acheminement": "ST PIERRE LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30623246683, + 44.844671879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10d9080872dcb223161bd4d68ef7d1dfaadc138b", + "fields": { + "code_commune_insee": "48179", + "nom_de_la_commune": "ST PRIVAT DU FAU", + "code_postal": "48140", + "coordonnees_gps": [ + 44.9186181805, + 3.35635253803 + ], + "libelle_d_acheminement": "ST PRIVAT DU FAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35635253803, + 44.9186181805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6c5f24edee1dc35b41bce1aee4177ebbece87c4", + "fields": { + "code_commune_insee": "48187", + "nom_de_la_commune": "LES SALCES", + "code_postal": "48100", + "coordonnees_gps": [ + 44.5611463487, + 3.13595674342 + ], + "libelle_d_acheminement": "LES SALCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13595674342, + 44.5611463487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb9410ef26dd624e50c18ce142741d4787453188", + "fields": { + "code_commune_insee": "48194", + "nom_de_la_commune": "VIALAS", + "code_postal": "48220", + "coordonnees_gps": [ + 44.3430125499, + 3.89043012589 + ], + "libelle_d_acheminement": "VIALAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89043012589, + 44.3430125499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb91a5deaf1c0d7ebe0323ffba632a8a78d4190e", + "fields": { + "code_commune_insee": "49007", + "nom_de_la_commune": "ANGERS", + "code_postal": "49100", + "coordonnees_gps": [ + 47.476837416, + -0.556125995444 + ], + "libelle_d_acheminement": "ANGERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.556125995444, + 47.476837416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3234d9ea88638af698b2108ba4e2735a7a244381", + "fields": { + "code_commune_insee": "49010", + "nom_de_la_commune": "ARMAILLE", + "code_postal": "49420", + "coordonnees_gps": [ + 47.7134820734, + -1.137864787 + ], + "libelle_d_acheminement": "ARMAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.137864787, + 47.7134820734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b02616aeda9403743a8a1e88233cb115d5ecb05", + "fields": { + "ligne_5": "BOCE", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dd6f4a68e9446486221a46a81efe2fe000b0012", + "fields": { + "ligne_5": "CLEFS", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93a7b176b4035ef25766f1019552b21ecafbcf92", + "fields": { + "ligne_5": "FOUGERE", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9419cbea2e927be3023f38e51c49be18c87edc44", + "fields": { + "ligne_5": "LE GUEDENIAU", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf364b21e28c33aa68b71718e412a15164eb5108", + "fields": { + "ligne_5": "LE VIEIL BAUGE", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70c41eb1b7202d44b098ba990523aaf41a40e069", + "fields": { + "ligne_5": "MONTPOLLIN", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a3e09549e6d2cb62516708643567e9f87b9ce52", + "fields": { + "ligne_5": "VAULANDRY", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "961b721779208eda0b865eee5084545b4802cc20", + "fields": { + "code_commune_insee": "49020", + "nom_de_la_commune": "BEAUCOUZE", + "code_postal": "49070", + "coordonnees_gps": [ + 47.4744512295, + -0.63405515785 + ], + "libelle_d_acheminement": "BEAUCOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63405515785, + 47.4744512295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd7f36e925870f1f95d6af76ed4363b5477ad3ae", + "fields": { + "ligne_5": "GEE", + "code_commune_insee": "49021", + "libelle_d_acheminement": "BEAUFORT EN ANJOU", + "code_postal": "49250", + "nom_de_la_commune": "BEAUFORT EN ANJOU", + "coordonnees_gps": [ + 47.4363863926, + -0.206986791966 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.206986791966, + 47.4363863926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "640509b1b0b8d66b1b7be9db0e23181c29f86be1", + "fields": { + "ligne_5": "LE PIN EN MAUGES", + "code_commune_insee": "49023", + "libelle_d_acheminement": "BEAUPREAU EN MAUGES", + "code_postal": "49110", + "nom_de_la_commune": "BEAUPREAU EN MAUGES", + "coordonnees_gps": [ + 47.2125984545, + -0.983619028639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.983619028639, + 47.2125984545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e684a6e7ddb6df2ba865bd00b0882d1050faad5", + "fields": { + "ligne_5": "JALLAIS", + "code_commune_insee": "49023", + "libelle_d_acheminement": "BEAUPREAU EN MAUGES", + "code_postal": "49510", + "nom_de_la_commune": "BEAUPREAU EN MAUGES", + "coordonnees_gps": [ + 47.2125984545, + -0.983619028639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.983619028639, + 47.2125984545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3716176853e97a48efd14f4fe36af37206515168", + "fields": { + "ligne_5": "LA POITEVINIERE", + "code_commune_insee": "49023", + "libelle_d_acheminement": "BEAUPREAU EN MAUGES", + "code_postal": "49510", + "nom_de_la_commune": "BEAUPREAU EN MAUGES", + "coordonnees_gps": [ + 47.2125984545, + -0.983619028639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.983619028639, + 47.2125984545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3ec0a86da5d46efa6161d4d477ca727b8097496", + "fields": { + "code_commune_insee": "49026", + "nom_de_la_commune": "BECON LES GRANITS", + "code_postal": "49370", + "coordonnees_gps": [ + 47.4995106103, + -0.799139218655 + ], + "libelle_d_acheminement": "BECON LES GRANITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.799139218655, + 47.4995106103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "173abeee9afcca830904ea4ad73c8b7ea1280220", + "fields": { + "ligne_5": "GOHIER", + "code_commune_insee": "49029", + "libelle_d_acheminement": "BLAISON ST SULPICE", + "code_postal": "49320", + "nom_de_la_commune": "BLAISON ST SULPICE", + "coordonnees_gps": [ + 47.3908187654, + -0.380019189582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.380019189582, + 47.3908187654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20fb1d813801da1a87b75f30561d67339ac48fa0", + "fields": { + "code_commune_insee": "49045", + "nom_de_la_commune": "LA BREILLE LES PINS", + "code_postal": "49390", + "coordonnees_gps": [ + 47.3510849572, + 0.0835955334414 + ], + "libelle_d_acheminement": "LA BREILLE LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0835955334414, + 47.3510849572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13c7263e5c167589ade94482207caa37ece2e2a4", + "fields": { + "ligne_5": "ST REMY LA VARENNE", + "code_commune_insee": "49050", + "libelle_d_acheminement": "BRISSAC LOIRE AUBANCE", + "code_postal": "49250", + "nom_de_la_commune": "BRISSAC LOIRE AUBANCE", + "coordonnees_gps": [ + 47.3416678749, + -0.441366325976 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441366325976, + 47.3416678749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6072b61b3c8a070124aa7c98bfca64f380be4c2", + "fields": { + "ligne_5": "BRISSAC QUINCE", + "code_commune_insee": "49050", + "libelle_d_acheminement": "BRISSAC LOIRE AUBANCE", + "code_postal": "49320", + "nom_de_la_commune": "BRISSAC LOIRE AUBANCE", + "coordonnees_gps": [ + 47.3416678749, + -0.441366325976 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441366325976, + 47.3416678749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87575d9adc1c9d528b6c265c63940331dbd99b0f", + "fields": { + "code_commune_insee": "49055", + "nom_de_la_commune": "CANTENAY EPINARD", + "code_postal": "49460", + "coordonnees_gps": [ + 47.5380581206, + -0.566473143041 + ], + "libelle_d_acheminement": "CANTENAY EPINARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.566473143041, + 47.5380581206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e39230a1a9aebc8e02fe2477282be54b9f1606b", + "fields": { + "code_commune_insee": "49056", + "nom_de_la_commune": "CARBAY", + "code_postal": "49420", + "coordonnees_gps": [ + 47.7315510459, + -1.2261277126 + ], + "libelle_d_acheminement": "CARBAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2261277126, + 47.7315510459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43137c5ffccdc1c1b62cb7d005b19ff06795ed43", + "fields": { + "ligne_5": "BREZE", + "code_commune_insee": "49060", + "libelle_d_acheminement": "BELLEVIGNE LES CHATEAUX", + "code_postal": "49260", + "nom_de_la_commune": "BELLEVIGNE LES CHATEAUX", + "coordonnees_gps": [ + 47.2066359278, + -0.0708098589193 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0708098589193, + 47.2066359278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a46bd04f00a9f4e731a6230f5c31e9a748213a3", + "fields": { + "ligne_5": "ST CYR EN BOURG", + "code_commune_insee": "49060", + "libelle_d_acheminement": "BELLEVIGNE LES CHATEAUX", + "code_postal": "49260", + "nom_de_la_commune": "BELLEVIGNE LES CHATEAUX", + "coordonnees_gps": [ + 47.2066359278, + -0.0708098589193 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0708098589193, + 47.2066359278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "079af47985fe05505c232a47c944f270638cfe9a", + "fields": { + "code_commune_insee": "49061", + "nom_de_la_commune": "CHALLAIN LA POTHERIE", + "code_postal": "49440", + "coordonnees_gps": [ + 47.6319922326, + -1.07146744794 + ], + "libelle_d_acheminement": "CHALLAIN LA POTHERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07146744794, + 47.6319922326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "012c4c980338655c44115bb74c502117da33d6a7", + "fields": { + "code_commune_insee": "49063", + "nom_de_la_commune": "CHALONNES SUR LOIRE", + "code_postal": "49290", + "coordonnees_gps": [ + 47.3494785235, + -0.772675582911 + ], + "libelle_d_acheminement": "CHALONNES SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.772675582911, + 47.3494785235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b654599ec6706d7194f1a94d215d2afb7ac77235", + "fields": { + "ligne_5": "CHATEAUNEUF SUR SARTHE", + "code_commune_insee": "49080", + "libelle_d_acheminement": "LES HAUTS D ANJOU", + "code_postal": "49330", + "nom_de_la_commune": "LES HAUTS D ANJOU", + "coordonnees_gps": [ + 47.6841712906, + -0.495930395639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.495930395639, + 47.6841712906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "099eee8f2c09b539702cd30adaf9196fd789dd14", + "fields": { + "ligne_5": "MARTIGNE BRIAND", + "code_commune_insee": "49086", + "libelle_d_acheminement": "TERRANJOU", + "code_postal": "49540", + "nom_de_la_commune": "TERRANJOU", + "coordonnees_gps": [ + 47.274007949, + -0.439804383087 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.439804383087, + 47.274007949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85997626f4d3ee0fd5be1a0256d338a449d45fb5", + "fields": { + "code_commune_insee": "49089", + "nom_de_la_commune": "CHAZE SUR ARGOS", + "code_postal": "49500", + "coordonnees_gps": [ + 47.6147680187, + -0.897982444715 + ], + "libelle_d_acheminement": "CHAZE SUR ARGOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.897982444715, + 47.6147680187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70a3cf8f9e2e643a5e55350f34d6c7fc261d64f3", + "fields": { + "ligne_5": "MELAY", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49120", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32a2441c3ccea480331af386a8922e91c426ab31", + "fields": { + "ligne_5": "CHANZEAUX", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49750", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db93c7472ea5f936c8eccc581c2a955286a58b85", + "fields": { + "code_commune_insee": "49100", + "nom_de_la_commune": "CIZAY LA MADELEINE", + "code_postal": "49700", + "coordonnees_gps": [ + 47.1826312611, + -0.184989396034 + ], + "libelle_d_acheminement": "CIZAY LA MADELEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.184989396034, + 47.1826312611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "853285c52a9b366913631d2cb4505566c3431798", + "fields": { + "code_commune_insee": "49109", + "nom_de_la_commune": "CORON", + "code_postal": "49690", + "coordonnees_gps": [ + 47.1203026416, + -0.63636371367 + ], + "libelle_d_acheminement": "CORON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63636371367, + 47.1203026416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d32b797d2c1e9628cb17adfb0e8fba7ee2269b45", + "fields": { + "code_commune_insee": "49120", + "nom_de_la_commune": "DENEE", + "code_postal": "49190", + "coordonnees_gps": [ + 47.3777256876, + -0.609937724094 + ], + "libelle_d_acheminement": "DENEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.609937724094, + 47.3777256876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4fb233ba116f9f08a1605725c4f1f062b983b0a", + "fields": { + "code_commune_insee": "49130", + "nom_de_la_commune": "ECUILLE", + "code_postal": "49460", + "coordonnees_gps": [ + 47.6151527391, + -0.560819094743 + ], + "libelle_d_acheminement": "ECUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.560819094743, + 47.6151527391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "175bd53668c119707083a2fe618bd01b75187a2b", + "fields": { + "ligne_5": "JARZE", + "code_commune_insee": "49163", + "libelle_d_acheminement": "JARZE VILLAGES", + "code_postal": "49140", + "nom_de_la_commune": "JARZE VILLAGES", + "coordonnees_gps": [ + 47.5576434301, + -0.24007574412 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24007574412, + 47.5576434301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4710474818f09e4a0f7f16c2dfd660b1a5f21d81", + "fields": { + "code_commune_insee": "49171", + "nom_de_la_commune": "LA LANDE CHASLES", + "code_postal": "49150", + "coordonnees_gps": [ + 47.4614234865, + -0.0676198362625 + ], + "libelle_d_acheminement": "LA LANDE CHASLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0676198362625, + 47.4614234865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c087d9fddc464ebac7d8eaf97dbae5106c79cdae", + "fields": { + "ligne_5": "VILLEMOISAN", + "code_commune_insee": "49183", + "libelle_d_acheminement": "VAL D ERDRE AUXENCE", + "code_postal": "49370", + "nom_de_la_commune": "VAL D ERDRE AUXENCE", + "coordonnees_gps": [ + 47.519040527, + -0.90137845396 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90137845396, + 47.519040527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24768e4ac99a1bf529c945a964b97fd68f1931d3", + "fields": { + "code_commune_insee": "49193", + "nom_de_la_commune": "LE MAY SUR EVRE", + "code_postal": "49122", + "coordonnees_gps": [ + 47.1327247986, + -0.875212635921 + ], + "libelle_d_acheminement": "LE MAY SUR EVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.875212635921, + 47.1327247986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f039e82930687fb370ac13ac843e24ea46b635f", + "fields": { + "code_commune_insee": "49211", + "nom_de_la_commune": "MONTILLIERS", + "code_postal": "49310", + "coordonnees_gps": [ + 47.1873187077, + -0.516413041747 + ], + "libelle_d_acheminement": "MONTILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.516413041747, + 47.1873187077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45f593a7020fe7538dc71fcda72801b8f2e1c003", + "fields": { + "ligne_5": "LA CHAUSSAIRE", + "code_commune_insee": "49218", + "libelle_d_acheminement": "MONTREVAULT SUR EVRE", + "code_postal": "49600", + "nom_de_la_commune": "MONTREVAULT SUR EVRE", + "coordonnees_gps": [ + 47.255395404, + -1.05160971025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05160971025, + 47.255395404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e953649ca82b75d82338e0c7e5d5ea970072b653", + "fields": { + "ligne_5": "CHEMIRE SUR SARTHE", + "code_commune_insee": "49220", + "libelle_d_acheminement": "MORANNES SUR SARTHE DAUMERAY", + "code_postal": "49640", + "nom_de_la_commune": "MORANNES SUR SARTHE DAUMERAY", + "coordonnees_gps": [ + 47.725500783, + -0.403190245491 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.403190245491, + 47.725500783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42aacf85396f4dcdeadadfb5122216f28cf85ee5", + "fields": { + "code_commune_insee": "49222", + "nom_de_la_commune": "MOZE SUR LOUET", + "code_postal": "49610", + "coordonnees_gps": [ + 47.3588616971, + -0.568969169001 + ], + "libelle_d_acheminement": "MOZE SUR LOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.568969169001, + 47.3588616971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2afb55d06a19bfc72296833654c18d81ff6fe52", + "fields": { + "code_commune_insee": "49224", + "nom_de_la_commune": "NEUILLE", + "code_postal": "49680", + "coordonnees_gps": [ + 47.3363897029, + -0.0184526935141 + ], + "libelle_d_acheminement": "NEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0184526935141, + 47.3363897029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd07b7beb8d7719801e1c9c8781a1851d735c7a9", + "fields": { + "ligne_5": "LASSE", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49490", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe6e2de5d5dc9640123c808d1d8581d6d575b86d", + "fields": { + "code_commune_insee": "49235", + "nom_de_la_commune": "PARNAY", + "code_postal": "49730", + "coordonnees_gps": [ + 47.2209572382, + 0.00402105248715 + ], + "libelle_d_acheminement": "PARNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00402105248715, + 47.2209572382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18ad3d7ba0dd2518d1dc097b08791ee27afade0b", + "fields": { + "code_commune_insee": "49237", + "nom_de_la_commune": "LA PELLERINE", + "code_postal": "49490", + "coordonnees_gps": [ + 47.459103434, + 0.131469619906 + ], + "libelle_d_acheminement": "LA PELLERINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.131469619906, + 47.459103434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8740e5cc965a5ca4f3f22a24a45a8287e743bebb", + "fields": { + "code_commune_insee": "49241", + "nom_de_la_commune": "LE PLESSIS GRAMMOIRE", + "code_postal": "49124", + "coordonnees_gps": [ + 47.4923950219, + -0.436285134541 + ], + "libelle_d_acheminement": "LE PLESSIS GRAMMOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.436285134541, + 47.4923950219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c00bf541bd0eff60dc162e9b9d78667a20902d4", + "fields": { + "ligne_5": "BOTZ EN MAUGES", + "code_commune_insee": "49244", + "libelle_d_acheminement": "MAUGES SUR LOIRE", + "code_postal": "49110", + "nom_de_la_commune": "MAUGES SUR LOIRE", + "coordonnees_gps": [ + 47.3429800481, + -0.869186945487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.869186945487, + 47.3429800481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cefae05055a1ee809aceb44b0331bfcdb9865706", + "fields": { + "ligne_5": "BEAUSSE", + "code_commune_insee": "49244", + "libelle_d_acheminement": "MAUGES SUR LOIRE", + "code_postal": "49410", + "nom_de_la_commune": "MAUGES SUR LOIRE", + "coordonnees_gps": [ + 47.3429800481, + -0.869186945487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.869186945487, + 47.3429800481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bab7b46848fc28964821940c08a2a2f7f998217b", + "fields": { + "ligne_5": "LA CHAPELLE HULLIN", + "code_commune_insee": "49248", + "libelle_d_acheminement": "OMBREE D ANJOU", + "code_postal": "49420", + "nom_de_la_commune": "OMBREE D ANJOU", + "coordonnees_gps": [ + 47.7629344972, + -1.19300189799 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19300189799, + 47.7629344972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbe92b533e0a8145111166cd6a034f9499cd6d85", + "fields": { + "code_commune_insee": "49253", + "nom_de_la_commune": "LE PUY NOTRE DAME", + "code_postal": "49260", + "coordonnees_gps": [ + 47.1140698471, + -0.229006138131 + ], + "libelle_d_acheminement": "LE PUY NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.229006138131, + 47.1140698471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8eecddd627d7daa37e27aa62f351f0b343e0972", + "fields": { + "ligne_5": "GENNES", + "code_commune_insee": "49261", + "libelle_d_acheminement": "GENNES VAL DE LOIRE", + "code_postal": "49350", + "nom_de_la_commune": "GENNES VAL DE LOIRE", + "coordonnees_gps": [ + 47.374115152, + -0.222562814963 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.222562814963, + 47.374115152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "338939465d59b8a7e8da25dc22adc748b03cc71c", + "fields": { + "code_commune_insee": "49283", + "nom_de_la_commune": "ST GEORGES SUR LOIRE", + "code_postal": "49170", + "coordonnees_gps": [ + 47.4024678993, + -0.756078071904 + ], + "libelle_d_acheminement": "ST GEORGES SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.756078071904, + 47.4024678993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05d0174236dd1a2c407df7fd9bdda8f592112719", + "fields": { + "code_commune_insee": "49294", + "nom_de_la_commune": "ST LAMBERT LA POTHERIE", + "code_postal": "49070", + "coordonnees_gps": [ + 47.4862725971, + -0.690818663562 + ], + "libelle_d_acheminement": "ST LAMBERT LA POTHERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.690818663562, + 47.4862725971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cb51284de3641a2734b0cd273552f04b63919ff", + "fields": { + "ligne_5": "MONTFAUCON MONTIGNE", + "code_commune_insee": "49301", + "libelle_d_acheminement": "SEVREMOINE", + "code_postal": "49230", + "nom_de_la_commune": "SEVREMOINE", + "coordonnees_gps": [ + 47.1256560392, + -0.998341815021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.998341815021, + 47.1256560392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e091c7364d8ca431ad07d4b1fd4fd8671e99f4a", + "fields": { + "ligne_5": "ST CRESPIN SUR MOINE", + "code_commune_insee": "49301", + "libelle_d_acheminement": "SEVREMOINE", + "code_postal": "49230", + "nom_de_la_commune": "SEVREMOINE", + "coordonnees_gps": [ + 47.1256560392, + -0.998341815021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.998341815021, + 47.1256560392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec216b2890c60c29e325088fcd880ac5bcc825ac", + "fields": { + "ligne_5": "TILLIERES", + "code_commune_insee": "49301", + "libelle_d_acheminement": "SEVREMOINE", + "code_postal": "49230", + "nom_de_la_commune": "SEVREMOINE", + "coordonnees_gps": [ + 47.1256560392, + -0.998341815021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.998341815021, + 47.1256560392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "524a4602822e30c188379426ec923300c522b57b", + "fields": { + "ligne_5": "ROUSSAY", + "code_commune_insee": "49301", + "libelle_d_acheminement": "SEVREMOINE", + "code_postal": "49450", + "nom_de_la_commune": "SEVREMOINE", + "coordonnees_gps": [ + 47.1256560392, + -0.998341815021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.998341815021, + 47.1256560392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87f454ce956afb9f343f7c6caf90736b7fe1b33c", + "fields": { + "ligne_5": "TORFOU", + "code_commune_insee": "49301", + "libelle_d_acheminement": "SEVREMOINE", + "code_postal": "49660", + "nom_de_la_commune": "SEVREMOINE", + "coordonnees_gps": [ + 47.1256560392, + -0.998341815021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.998341815021, + 47.1256560392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e658a36215d08176fabdc740a5e17125712ea6ba", + "fields": { + "ligne_5": "ANDARD", + "code_commune_insee": "49307", + "libelle_d_acheminement": "LOIRE AUTHION", + "code_postal": "49800", + "nom_de_la_commune": "LOIRE AUTHION", + "coordonnees_gps": [ + 47.4219645317, + -0.319673646947 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.319673646947, + 47.4219645317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fa7f78f0db407067caa0086df4d49c4e3d8fef1", + "fields": { + "ligne_5": "LA BOHALLE", + "code_commune_insee": "49307", + "libelle_d_acheminement": "LOIRE AUTHION", + "code_postal": "49800", + "nom_de_la_commune": "LOIRE AUTHION", + "coordonnees_gps": [ + 47.4219645317, + -0.319673646947 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.319673646947, + 47.4219645317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69f81e6e93cccce773b4eb40a5cabf83b82b0ec1", + "fields": { + "ligne_5": "LA DAGUENIERE", + "code_commune_insee": "49307", + "libelle_d_acheminement": "LOIRE AUTHION", + "code_postal": "49800", + "nom_de_la_commune": "LOIRE AUTHION", + "coordonnees_gps": [ + 47.4219645317, + -0.319673646947 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.319673646947, + 47.4219645317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "301cbb54e2b7a1455a011675e54f8d11bc35715f", + "fields": { + "code_commune_insee": "49311", + "nom_de_la_commune": "ST PHILBERT DU PEUPLE", + "code_postal": "49160", + "coordonnees_gps": [ + 47.3908362181, + -0.0435917623377 + ], + "libelle_d_acheminement": "ST PHILBERT DU PEUPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0435917623377, + 47.3908362181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da13ced2d8f236e14cc2f6785810c08ab4caf2cb", + "fields": { + "ligne_5": "ST LAMBERT DES LEVEES", + "code_commune_insee": "49328", + "libelle_d_acheminement": "SAUMUR", + "code_postal": "49400", + "nom_de_la_commune": "SAUMUR", + "coordonnees_gps": [ + 47.2673853525, + -0.0830410591988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0830410591988, + 47.2673853525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa2d0bbce89fb3230c6243f27003e3ccbbef9a66", + "fields": { + "ligne_5": "MONTGUILLON", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49500", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51f1bd6c750fd54116048ce638424c15cdd44bf5", + "fields": { + "ligne_5": "NYOISEAU", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49500", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb2581569da85a935522e913d9c520b8a78fb5a3", + "fields": { + "ligne_5": "SEGRE", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49500", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "877d82fdf7853976cb4fa5eb675e14029fd83bef", + "fields": { + "code_commune_insee": "49334", + "nom_de_la_commune": "SERMAISE", + "code_postal": "49140", + "coordonnees_gps": [ + 47.522658847, + -0.215904161416 + ], + "libelle_d_acheminement": "SERMAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.215904161416, + 47.522658847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5b20aedddb427c1c0d41770a63099b469df4394", + "fields": { + "code_commune_insee": "49336", + "nom_de_la_commune": "SOMLOIRE", + "code_postal": "49360", + "coordonnees_gps": [ + 47.0353125936, + -0.595627270209 + ], + "libelle_d_acheminement": "SOMLOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.595627270209, + 47.0353125936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe0a4bd121bde21c3e3528f2f8eaa705ea027b87", + "fields": { + "ligne_5": "FAYE D ANJOU", + "code_commune_insee": "49345", + "libelle_d_acheminement": "BELLEVIGNE EN LAYON", + "code_postal": "49380", + "nom_de_la_commune": "BELLEVIGNE EN LAYON", + "coordonnees_gps": [ + 47.2592682331, + -0.517923916545 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.517923916545, + 47.2592682331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1ee21cdc2bbc2cff6a9f4edb654aaa237433d5b", + "fields": { + "ligne_5": "THOUARCE", + "code_commune_insee": "49345", + "libelle_d_acheminement": "BELLEVIGNE EN LAYON", + "code_postal": "49380", + "nom_de_la_commune": "BELLEVIGNE EN LAYON", + "coordonnees_gps": [ + 47.2592682331, + -0.517923916545 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.517923916545, + 47.2592682331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c288d734589c4ba5e72ef0294f7f22867c48b71d", + "fields": { + "code_commune_insee": "49355", + "nom_de_la_commune": "TREMENTINES", + "code_postal": "49340", + "coordonnees_gps": [ + 47.1227107975, + -0.801475622875 + ], + "libelle_d_acheminement": "TREMENTINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.801475622875, + 47.1227107975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a65671f05068a60b77dc910818d24532734c4ce", + "fields": { + "code_commune_insee": "49359", + "nom_de_la_commune": "LES ULMES", + "code_postal": "49700", + "coordonnees_gps": [ + 47.2234666455, + -0.18231147008 + ], + "libelle_d_acheminement": "LES ULMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18231147008, + 47.2234666455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48f48160d55eb60635071c036c26dd337c9b7b33", + "fields": { + "code_commune_insee": "49374", + "nom_de_la_commune": "VILLEBERNIER", + "code_postal": "49400", + "coordonnees_gps": [ + 47.2624126293, + -0.0208277166686 + ], + "libelle_d_acheminement": "VILLEBERNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0208277166686, + 47.2624126293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81cd50b66d844b3c1388d337d73258add807ed01", + "fields": { + "ligne_5": "SOUCELLES", + "code_commune_insee": "49377", + "libelle_d_acheminement": "RIVES DU LOIR EN ANJOU", + "code_postal": "49140", + "nom_de_la_commune": "RIVES DU LOIR EN ANJOU", + "coordonnees_gps": [ + 47.5486542844, + -0.44694039674 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44694039674, + 47.5486542844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc41cb1d81fd2240f10210c0d97496586f4f3d8d", + "fields": { + "code_commune_insee": "49378", + "nom_de_la_commune": "VIVY", + "code_postal": "49680", + "coordonnees_gps": [ + 47.3228206835, + -0.0669608639815 + ], + "libelle_d_acheminement": "VIVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0669608639815, + 47.3228206835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9957a8a22846fe761482662651da8b7d74962071", + "fields": { + "code_commune_insee": "50013", + "nom_de_la_commune": "ANNEVILLE EN SAIRE", + "code_postal": "50760", + "coordonnees_gps": [ + 49.6362063201, + -1.2855537086 + ], + "libelle_d_acheminement": "ANNEVILLE EN SAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2855537086, + 49.6362063201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9faf410e2db781d78dbbacd1350561f8e1cf349", + "fields": { + "code_commune_insee": "50016", + "nom_de_la_commune": "APPEVILLE", + "code_postal": "50500", + "coordonnees_gps": [ + 49.3270407818, + -1.3359052724 + ], + "libelle_d_acheminement": "APPEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3359052724, + 49.3270407818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b035c70cc379682566a58fcec96ae462c384e94d", + "fields": { + "code_commune_insee": "50021", + "nom_de_la_commune": "AUDOUVILLE LA HUBERT", + "code_postal": "50480", + "coordonnees_gps": [ + 49.4170404243, + -1.22666547902 + ], + "libelle_d_acheminement": "AUDOUVILLE LA HUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22666547902, + 49.4170404243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeab937a0175c969e2a6015a3276236ea334df47", + "fields": { + "code_commune_insee": "50030", + "nom_de_la_commune": "BARFLEUR", + "code_postal": "50760", + "coordonnees_gps": [ + 49.6687321744, + -1.26330967066 + ], + "libelle_d_acheminement": "BARFLEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26330967066, + 49.6687321744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "529982a341fc3534a0b4d39f86c5950c0544364a", + "fields": { + "code_commune_insee": "50036", + "nom_de_la_commune": "BAUPTE", + "code_postal": "50500", + "coordonnees_gps": [ + 49.3098408956, + -1.36772622791 + ], + "libelle_d_acheminement": "BAUPTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36772622791, + 49.3098408956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cf2685dbad7c25eb0145ded5b3c6cdd01e7cac6", + "fields": { + "ligne_5": "ACQUEVILLE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f99958002f8ca851c78747b1c6effbb2c2d763f3", + "fields": { + "ligne_5": "AUDERVILLE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e43e65b16919bb52c4dc1f71884485167023bde", + "fields": { + "ligne_5": "BIVILLE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffeabd2e58029d9e9d25110f2a1c0fef5ad82339", + "fields": { + "ligne_5": "STE CROIX HAGUE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e9c88b5f985968b114d35bdd41c1dcf89483933", + "fields": { + "ligne_5": "TONNEVILLE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50460", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "095d0dd9b3bc71c446156fd9c5e7abbfdda52df6", + "fields": { + "ligne_5": "URVILLE NACQUEVILLE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50460", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef4febf2c4a9ac3f4fa1359d24e7621401b405a1", + "fields": { + "code_commune_insee": "50048", + "nom_de_la_commune": "BESLON", + "code_postal": "50800", + "coordonnees_gps": [ + 48.8582276716, + -1.15769236289 + ], + "libelle_d_acheminement": "BESLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15769236289, + 48.8582276716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "136b4557717d23326a6bd64f9694eb0ca8d1d58f", + "fields": { + "ligne_5": "ST MICHEL DES LOUPS", + "code_commune_insee": "50066", + "libelle_d_acheminement": "JULLOUVILLE", + "code_postal": "50610", + "nom_de_la_commune": "JULLOUVILLE", + "coordonnees_gps": [ + 48.7634529301, + -1.52729216893 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52729216893, + 48.7634529301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2669d5a832a25d7a5e181237abb71565b2cea985", + "fields": { + "code_commune_insee": "50072", + "nom_de_la_commune": "BRAINVILLE", + "code_postal": "50200", + "coordonnees_gps": [ + 49.0824569432, + -1.50021514683 + ], + "libelle_d_acheminement": "BRAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50021514683, + 49.0824569432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4232a280e0436bb6fcc5bf6f674138121067b0d", + "fields": { + "code_commune_insee": "50076", + "nom_de_la_commune": "BREHAL", + "code_postal": "50290", + "coordonnees_gps": [ + 48.8991054391, + -1.5329842418 + ], + "libelle_d_acheminement": "BREHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5329842418, + 48.8991054391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbe2fef1e4c46d6e1a74230aa527be1e6e1715c4", + "fields": { + "ligne_5": "ST MARTIN DE BREHAL", + "code_commune_insee": "50076", + "libelle_d_acheminement": "BREHAL", + "code_postal": "50290", + "nom_de_la_commune": "BREHAL", + "coordonnees_gps": [ + 48.8991054391, + -1.5329842418 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5329842418, + 48.8991054391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "360413effa12ae91baf45c143b69675f4c98e1ae", + "fields": { + "ligne_5": "LE VALDECIE", + "code_commune_insee": "50082", + "libelle_d_acheminement": "BRICQUEBEC EN COTENTIN", + "code_postal": "50260", + "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", + "coordonnees_gps": [ + 49.4699810492, + -1.63261585347 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63261585347, + 49.4699810492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "298d5b341222d0033046659836d68d75a9a1c1ea", + "fields": { + "ligne_5": "LE VRETOT", + "code_commune_insee": "50082", + "libelle_d_acheminement": "BRICQUEBEC EN COTENTIN", + "code_postal": "50260", + "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", + "coordonnees_gps": [ + 49.4699810492, + -1.63261585347 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63261585347, + 49.4699810492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13a7b95a87cba37b08e41f0963050108a5885411", + "fields": { + "code_commune_insee": "50084", + "nom_de_la_commune": "BRICQUEVILLE LA BLOUETTE", + "code_postal": "50200", + "coordonnees_gps": [ + 49.0380343461, + -1.47913007848 + ], + "libelle_d_acheminement": "BRICQUEVILLE LA BLOUETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47913007848, + 49.0380343461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dd201c62ba94358c2a7c851a8e7d1e6b4b0b9e1", + "fields": { + "code_commune_insee": "50095", + "nom_de_la_commune": "CANISY", + "code_postal": "50750", + "coordonnees_gps": [ + 49.0797681926, + -1.18008424272 + ], + "libelle_d_acheminement": "CANISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18008424272, + 49.0797681926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e363b777373c97e17b9b9c916ef5af1859d16b8d", + "fields": { + "code_commune_insee": "50097", + "nom_de_la_commune": "CANVILLE LA ROCQUE", + "code_postal": "50580", + "coordonnees_gps": [ + 49.3468037124, + -1.63643708504 + ], + "libelle_d_acheminement": "CANVILLE LA ROCQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63643708504, + 49.3468037124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f20b399c64a0f23ac3cd1163dfdc5c3b1322674e", + "fields": { + "code_commune_insee": "50098", + "nom_de_la_commune": "CARANTILLY", + "code_postal": "50570", + "coordonnees_gps": [ + 49.0661156491, + -1.24968371393 + ], + "libelle_d_acheminement": "CARANTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24968371393, + 49.0661156491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4098306634880f3ddc6ae2122e2cbdee1e383a86", + "fields": { + "ligne_5": "OCTEVILLE", + "code_commune_insee": "50129", + "libelle_d_acheminement": "CHERBOURG EN COTENTIN", + "code_postal": "50130", + "nom_de_la_commune": "CHERBOURG EN COTENTIN", + "coordonnees_gps": [ + 49.633412156, + -1.63390160204 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63390160204, + 49.633412156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1080947dba3d857137fa5b34ec8b0a8e53b5c28", + "fields": { + "code_commune_insee": "50137", + "nom_de_la_commune": "LA COLOMBE", + "code_postal": "50800", + "coordonnees_gps": [ + 48.8755777251, + -1.19526749563 + ], + "libelle_d_acheminement": "LA COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19526749563, + 48.8755777251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eff4ab016b9b5bd791b5cff56c4b278a8a1a9483", + "fields": { + "ligne_5": "LE MESNIL RAOULT", + "code_commune_insee": "50139", + "libelle_d_acheminement": "CONDE SUR VIRE", + "code_postal": "50420", + "nom_de_la_commune": "CONDE SUR VIRE", + "coordonnees_gps": [ + 49.0540546845, + -1.02453868309 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02453868309, + 49.0540546845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf1405543338584d35f75d6ddf538fc033bd544d", + "fields": { + "ligne_5": "NEVILLE SUR MER", + "code_commune_insee": "50142", + "libelle_d_acheminement": "VICQ SUR MER", + "code_postal": "50330", + "nom_de_la_commune": "VICQ SUR MER", + "coordonnees_gps": [ + 49.6915085353, + -1.4000999278 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4000999278, + 49.6915085353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0ccd5962bc22a1d5671911f21edd4819a042253", + "fields": { + "ligne_5": "RETHOVILLE", + "code_commune_insee": "50142", + "libelle_d_acheminement": "VICQ SUR MER", + "code_postal": "50330", + "nom_de_la_commune": "VICQ SUR MER", + "coordonnees_gps": [ + 49.6915085353, + -1.4000999278 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4000999278, + 49.6915085353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a0b88c910fc1ed5023404c49fdc66fb27650f73", + "fields": { + "code_commune_insee": "50150", + "nom_de_la_commune": "CRASVILLE", + "code_postal": "50630", + "coordonnees_gps": [ + 49.5541955641, + -1.33206905184 + ], + "libelle_d_acheminement": "CRASVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33206905184, + 49.5541955641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84b77435eebda49c567b3443f548ad33cacbda56", + "fields": { + "code_commune_insee": "50152", + "nom_de_la_commune": "LES CRESNAYS", + "code_postal": "50370", + "coordonnees_gps": [ + 48.7090600064, + -1.11382515634 + ], + "libelle_d_acheminement": "LES CRESNAYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11382515634, + 48.7090600064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d182c0c80c4768385bc4af7872f4530334df6557", + "fields": { + "code_commune_insee": "50183", + "nom_de_la_commune": "FIERVILLE LES MINES", + "code_postal": "50580", + "coordonnees_gps": [ + 49.3954757313, + -1.66642219384 + ], + "libelle_d_acheminement": "FIERVILLE LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66642219384, + 49.3954757313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f61dcb18f259658626689d7d97cd4c92e94b071d", + "fields": { + "code_commune_insee": "50190", + "nom_de_la_commune": "FONTENAY SUR MER", + "code_postal": "50310", + "coordonnees_gps": [ + 49.4935350272, + -1.30873681575 + ], + "libelle_d_acheminement": "FONTENAY SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30873681575, + 49.4935350272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dd928894f2754847ab68ef74dff3c4892c9da93", + "fields": { + "ligne_5": "GAVRAY", + "code_commune_insee": "50197", + "libelle_d_acheminement": "GAVRAY SUR SIENNE", + "code_postal": "50450", + "nom_de_la_commune": "GAVRAY SUR SIENNE", + "coordonnees_gps": [ + 48.901866947, + -1.32927187447 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32927187447, + 48.901866947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71b261cc407eec7c8bd9605499402333f21f2d97", + "fields": { + "code_commune_insee": "50198", + "nom_de_la_commune": "GEFFOSSES", + "code_postal": "50560", + "coordonnees_gps": [ + 49.1293350748, + -1.55102894919 + ], + "libelle_d_acheminement": "GEFFOSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55102894919, + 49.1293350748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb336616e6f328e58e71bf3ef83d0ebc2dc5bc00", + "fields": { + "ligne_5": "LE THEIL", + "code_commune_insee": "50209", + "libelle_d_acheminement": "GONNEVILLE LE THEIL", + "code_postal": "50330", + "nom_de_la_commune": "GONNEVILLE LE THEIL", + "coordonnees_gps": [ + 49.6319375816, + -1.47264089403 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47264089403, + 49.6319375816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f132a8bec2f2a9d5cac16465f0def16a149f1527", + "fields": { + "code_commune_insee": "50214", + "nom_de_la_commune": "GOUVETS", + "code_postal": "50420", + "coordonnees_gps": [ + 48.928521643, + -1.09363899793 + ], + "libelle_d_acheminement": "GOUVETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09363899793, + 48.928521643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f1f2cb88fe74ac4509adaedd7b34b66de7bd519", + "fields": { + "ligne_5": "MONTSURVENT", + "code_commune_insee": "50215", + "libelle_d_acheminement": "GOUVILLE SUR MER", + "code_postal": "50200", + "nom_de_la_commune": "GOUVILLE SUR MER", + "coordonnees_gps": [ + 49.0979435491, + -1.57923308824 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57923308824, + 49.0979435491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7798fba75c131758adc1e82a0d4f305701af459", + "fields": { + "code_commune_insee": "50219", + "nom_de_la_commune": "GRATOT", + "code_postal": "50200", + "coordonnees_gps": [ + 49.0683104391, + -1.49454774157 + ], + "libelle_d_acheminement": "GRATOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49454774157, + 49.0683104391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "826886e8efe267a534b3d707b81e723b87b21e44", + "fields": { + "code_commune_insee": "50227", + "nom_de_la_commune": "LE HAM", + "code_postal": "50310", + "coordonnees_gps": [ + 49.449950081, + -1.40982861072 + ], + "libelle_d_acheminement": "LE HAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40982861072, + 49.449950081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca60b5d315bcc7496fd149fcd67f2f5e37c4f73c", + "fields": { + "code_commune_insee": "67476", + "nom_de_la_commune": "STATTMATTEN", + "code_postal": "67770", + "coordonnees_gps": [ + 48.794852744, + 8.01771717593 + ], + "libelle_d_acheminement": "STATTMATTEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.01771717593, + 48.794852744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74fc850dded06b2c3a95024fcf50f4563d944515", + "fields": { + "code_commune_insee": "67487", + "nom_de_la_commune": "SURBOURG", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9102568228, + 7.83566149848 + ], + "libelle_d_acheminement": "SURBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.83566149848, + 48.9102568228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4794fd8e6d36de9b39890155f45d14653c868d7d", + "fields": { + "ligne_5": "ST GALL", + "code_commune_insee": "67489", + "libelle_d_acheminement": "THAL MARMOUTIER", + "code_postal": "67440", + "nom_de_la_commune": "THAL MARMOUTIER", + "coordonnees_gps": [ + 48.6960773859, + 7.34056735881 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34056735881, + 48.6960773859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a5626523794168e908b520766b3dffd121aafa6", + "fields": { + "code_commune_insee": "67504", + "nom_de_la_commune": "VALFF", + "code_postal": "67210", + "coordonnees_gps": [ + 48.4221033053, + 7.52644718944 + ], + "libelle_d_acheminement": "VALFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52644718944, + 48.4221033053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a54efb48effc3854dd8005e919481f3cea013a9", + "fields": { + "code_commune_insee": "67551", + "nom_de_la_commune": "WOLFISHEIM", + "code_postal": "67202", + "coordonnees_gps": [ + 48.5869426788, + 7.66313638698 + ], + "libelle_d_acheminement": "WOLFISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.66313638698, + 48.5869426788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "021d54a2902ad2a0a29cdfec032ece694f8dba2d", + "fields": { + "ligne_5": "CANAL", + "code_commune_insee": "67554", + "libelle_d_acheminement": "WOLXHEIM", + "code_postal": "67120", + "nom_de_la_commune": "WOLXHEIM", + "coordonnees_gps": [ + 48.5703058902, + 7.5074599373 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5074599373, + 48.5703058902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c28ec92c5fd489b629f006b2be14ce451ab3f581", + "fields": { + "code_commune_insee": "68016", + "nom_de_la_commune": "BALGAU", + "code_postal": "68740", + "coordonnees_gps": [ + 47.9272368478, + 7.53211500774 + ], + "libelle_d_acheminement": "BALGAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53211500774, + 47.9272368478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c7a4874d961fd3d0e048a24b15f53a9d01646e9", + "fields": { + "ligne_5": "BENNWIHR GARE", + "code_commune_insee": "68026", + "libelle_d_acheminement": "BENNWIHR MITTELWIHR", + "code_postal": "68126", + "nom_de_la_commune": "BENNWIHR", + "coordonnees_gps": [ + 48.1394469818, + 7.33981544547 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33981544547, + 48.1394469818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69697efcbff4f74d992ca8a797a009a41e91c716", + "fields": { + "code_commune_insee": "68033", + "nom_de_la_commune": "BETTENDORF", + "code_postal": "68560", + "coordonnees_gps": [ + 47.5833339186, + 7.28390346765 + ], + "libelle_d_acheminement": "BETTENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28390346765, + 47.5833339186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e96e3b8245d3313c32ec4531ab2444aa414d396", + "fields": { + "code_commune_insee": "68035", + "nom_de_la_commune": "BIEDERTHAL", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4709691234, + 7.43560956506 + ], + "libelle_d_acheminement": "BIEDERTHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43560956506, + 47.4709691234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bc4a86dd8a35ba8f3a2fc251475cf2e343bf36e", + "fields": { + "code_commune_insee": "68043", + "nom_de_la_commune": "BOLLWILLER", + "code_postal": "68540", + "coordonnees_gps": [ + 47.854030178, + 7.25159464138 + ], + "libelle_d_acheminement": "BOLLWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25159464138, + 47.854030178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a29f5bc8384a36724be226fedac7e1eca42cecb", + "fields": { + "code_commune_insee": "68049", + "nom_de_la_commune": "BOUXWILLER", + "code_postal": "68480", + "coordonnees_gps": [ + 47.5041559244, + 7.34056015721 + ], + "libelle_d_acheminement": "BOUXWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34056015721, + 47.5041559244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0159affa716215a8cc309b088897fa19859f4c11", + "fields": { + "ligne_5": "DIDENHEIM", + "code_commune_insee": "68056", + "libelle_d_acheminement": "BRUNSTATT DIDENHEIM", + "code_postal": "68350", + "nom_de_la_commune": "BRUNSTATT DIDENHEIM", + "coordonnees_gps": [ + 47.7151300366, + 7.32654596124 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32654596124, + 47.7151300366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "836ef046ff01830f682f9bc8cab0c44d0b227b25", + "fields": { + "code_commune_insee": "68061", + "nom_de_la_commune": "BUSCHWILLER", + "code_postal": "68220", + "coordonnees_gps": [ + 47.5567551191, + 7.49825587796 + ], + "libelle_d_acheminement": "BUSCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49825587796, + 47.5567551191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c448d690bc817a4f8a0909028ee1320d04c6336", + "fields": { + "code_commune_insee": "68081", + "nom_de_la_commune": "ST BERNARD", + "code_postal": "68720", + "coordonnees_gps": [ + 47.665884637, + 7.20435846737 + ], + "libelle_d_acheminement": "ST BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20435846737, + 47.665884637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cacccc267bfa22e56e690928af58a46de5be9912", + "fields": { + "code_commune_insee": "68085", + "nom_de_la_commune": "ETEIMBES", + "code_postal": "68210", + "coordonnees_gps": [ + 47.7059397365, + 7.04282420421 + ], + "libelle_d_acheminement": "ETEIMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04282420421, + 47.7059397365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdab25ec015d7d5b960fa4be46774a58092e9d98", + "fields": { + "ligne_5": "WESSERLING", + "code_commune_insee": "68089", + "libelle_d_acheminement": "FELLERING", + "code_postal": "68470", + "nom_de_la_commune": "FELLERING", + "coordonnees_gps": [ + 47.9157234129, + 6.95863361019 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95863361019, + 47.9157234129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7196d82c2c49cbe0674a04dca869a45a0497640b", + "fields": { + "code_commune_insee": "68129", + "nom_de_la_commune": "HEIMSBRUNN", + "code_postal": "68990", + "coordonnees_gps": [ + 47.7248268389, + 7.21972228432 + ], + "libelle_d_acheminement": "HEIMSBRUNN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21972228432, + 47.7248268389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e795ca96de721d41d75cff1138b535f0414dc6d1", + "fields": { + "code_commune_insee": "68156", + "nom_de_la_commune": "ISSENHEIM", + "code_postal": "68500", + "coordonnees_gps": [ + 47.9036358846, + 7.25786972805 + ], + "libelle_d_acheminement": "ISSENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25786972805, + 47.9036358846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "284ba9dd56958934713ebae1c023a7952f3b8de6", + "fields": { + "code_commune_insee": "68157", + "nom_de_la_commune": "JEBSHEIM", + "code_postal": "68320", + "coordonnees_gps": [ + 48.1233748841, + 7.48080925093 + ], + "libelle_d_acheminement": "JEBSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48080925093, + 48.1233748841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5970bdcc75e22a1104c636e4cc744b850e0f5da3", + "fields": { + "code_commune_insee": "68170", + "nom_de_la_commune": "KOETZINGUE", + "code_postal": "68510", + "coordonnees_gps": [ + 47.6485508091, + 7.39253593441 + ], + "libelle_d_acheminement": "KOETZINGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39253593441, + 47.6485508091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "882e28fb4b254d8a80245e94fae7916593838778", + "fields": { + "code_commune_insee": "68172", + "nom_de_la_commune": "KUNHEIM", + "code_postal": "68320", + "coordonnees_gps": [ + 48.0770763292, + 7.54694950755 + ], + "libelle_d_acheminement": "KUNHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54694950755, + 48.0770763292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1efb0a5aea61c889c7253f204a3967663684722a", + "fields": { + "code_commune_insee": "68175", + "nom_de_la_commune": "LAPOUTROIE", + "code_postal": "68650", + "coordonnees_gps": [ + 48.1597717593, + 7.15907651893 + ], + "libelle_d_acheminement": "LAPOUTROIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15907651893, + 48.1597717593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87a7a8c523c7aad8077b2a656e7674f790a1e287", + "fields": { + "code_commune_insee": "68184", + "nom_de_la_commune": "LIEBSDORF", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4789687972, + 7.2231472766 + ], + "libelle_d_acheminement": "LIEBSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2231472766, + 47.4789687972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05df0bc3c181b430c80657c06e042a4389a98e55", + "fields": { + "ligne_5": "VALDIEU", + "code_commune_insee": "68192", + "libelle_d_acheminement": "VALDIEU LUTRAN", + "code_postal": "68210", + "nom_de_la_commune": "VALDIEU LUTRAN", + "coordonnees_gps": [ + 47.6265524313, + 7.05577643274 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05577643274, + 47.6265524313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01169072fdbe830f4707b421c3b43798da7b83b3", + "fields": { + "code_commune_insee": "68195", + "nom_de_la_commune": "LUTTERBACH", + "code_postal": "68460", + "coordonnees_gps": [ + 47.7610968864, + 7.27261262553 + ], + "libelle_d_acheminement": "LUTTERBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27261262553, + 47.7610968864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86bf899542bd231e3b9d2b4dd8a70fe43e059140", + "fields": { + "code_commune_insee": "68202", + "nom_de_la_commune": "MERTZEN", + "code_postal": "68210", + "coordonnees_gps": [ + 47.586907289, + 7.12919776559 + ], + "libelle_d_acheminement": "MERTZEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12919776559, + 47.586907289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "026d1409b07d193f6b2256ff52afcfef880ae737", + "fields": { + "code_commune_insee": "68204", + "nom_de_la_commune": "METZERAL", + "code_postal": "68380", + "coordonnees_gps": [ + 47.9978920505, + 7.02528063902 + ], + "libelle_d_acheminement": "METZERAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02528063902, + 47.9978920505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5019a1ac4e5edd86410dfeb63e564ef34bab25a5", + "fields": { + "code_commune_insee": "68242", + "nom_de_la_commune": "OBERHERGHEIM", + "code_postal": "68127", + "coordonnees_gps": [ + 47.9692322968, + 7.40002707235 + ], + "libelle_d_acheminement": "OBERHERGHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40002707235, + 47.9692322968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e4b6f882c64b9968f95aa78b6a870bd0ec68a89", + "fields": { + "code_commune_insee": "68243", + "nom_de_la_commune": "OBERLARG", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4511026465, + 7.23130338788 + ], + "libelle_d_acheminement": "OBERLARG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23130338788, + 47.4511026465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22f4a33eff13aaeed009ee7b02545d5b3aa3b22b", + "fields": { + "code_commune_insee": "68252", + "nom_de_la_commune": "OSTHEIM", + "code_postal": "68150", + "coordonnees_gps": [ + 48.157155989, + 7.37273761525 + ], + "libelle_d_acheminement": "OSTHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37273761525, + 48.157155989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da0fedd5a5d686bfde04cc7543e7800df52ae1cd", + "fields": { + "code_commune_insee": "68265", + "nom_de_la_commune": "RANTZWILLER", + "code_postal": "68510", + "coordonnees_gps": [ + 47.6488310607, + 7.37119412138 + ], + "libelle_d_acheminement": "RANTZWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37119412138, + 47.6488310607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94b7953929ecde3ac9772f88c76e19a5744c1e8d", + "fields": { + "code_commune_insee": "68280", + "nom_de_la_commune": "RODERN", + "code_postal": "68590", + "coordonnees_gps": [ + 48.237574913, + 7.31340839704 + ], + "libelle_d_acheminement": "RODERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31340839704, + 48.237574913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09f2e63ae6f3a335c8f3d8ce149545b5f31318ac", + "fields": { + "code_commune_insee": "68287", + "nom_de_la_commune": "ROUFFACH", + "code_postal": "68250", + "coordonnees_gps": [ + 47.9688422434, + 7.27338874141 + ], + "libelle_d_acheminement": "ROUFFACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27338874141, + 47.9688422434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ca423f5dcebd1c1b734cb7d0aac2ab0d77490df", + "fields": { + "code_commune_insee": "68294", + "nom_de_la_commune": "STE CROIX AUX MINES", + "code_postal": "68160", + "coordonnees_gps": [ + 48.2683101517, + 7.20845022023 + ], + "libelle_d_acheminement": "STE CROIX AUX MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20845022023, + 48.2683101517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea77abd4b3937ba8bea555f67d309f722de3e7cd", + "fields": { + "code_commune_insee": "68317", + "nom_de_la_commune": "SOULTZEREN", + "code_postal": "68140", + "coordonnees_gps": [ + 48.0828918874, + 7.09256896947 + ], + "libelle_d_acheminement": "SOULTZEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09256896947, + 48.0828918874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48fc60d92a4bb8c38494c2ffda5a12d751d6f963", + "fields": { + "code_commune_insee": "68327", + "nom_de_la_commune": "STETTEN", + "code_postal": "68510", + "coordonnees_gps": [ + 47.6236636155, + 7.41905540349 + ], + "libelle_d_acheminement": "STETTEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41905540349, + 47.6236636155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ebde22908e5bf948423a85a142e83cc10b4f421", + "fields": { + "code_commune_insee": "68329", + "nom_de_la_commune": "STOSSWIHR", + "code_postal": "68140", + "coordonnees_gps": [ + 48.0552314981, + 7.06088975747 + ], + "libelle_d_acheminement": "STOSSWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06088975747, + 48.0552314981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b48a2e9f0233fe9fb4c292357d1e28b35d850141", + "fields": { + "ligne_5": "MEYTHET", + "code_commune_insee": "74010", + "libelle_d_acheminement": "ANNECY", + "code_postal": "74960", + "nom_de_la_commune": "ANNECY", + "coordonnees_gps": [ + 45.8906432566, + 6.12551773598 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12551773598, + 45.8906432566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6b28603ebeb10b16db04bc889b20e6a5021f712", + "fields": { + "code_commune_insee": "74030", + "nom_de_la_commune": "LA BAUME", + "code_postal": "74430", + "coordonnees_gps": [ + 46.2836072136, + 6.60860693452 + ], + "libelle_d_acheminement": "LA BAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60860693452, + 46.2836072136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d64d9e5e5c84d86fb24522083a516d899389a5d", + "fields": { + "code_commune_insee": "74033", + "nom_de_la_commune": "BERNEX", + "code_postal": "74500", + "coordonnees_gps": [ + 46.3566554818, + 6.69898825662 + ], + "libelle_d_acheminement": "BERNEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69898825662, + 46.3566554818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d94e845fcc70ca866dcd695360d940c8def3c189", + "fields": { + "code_commune_insee": "74056", + "nom_de_la_commune": "CHAMONIX MONT BLANC", + "code_postal": "74400", + "coordonnees_gps": [ + 45.9309819111, + 6.92360096711 + ], + "libelle_d_acheminement": "CHAMONIX MONT BLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92360096711, + 45.9309819111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89bcfeea85dae2aceaff1d3c5ceb0cd7f2f68d60", + "fields": { + "code_commune_insee": "74064", + "nom_de_la_commune": "CHATILLON SUR CLUSES", + "code_postal": "74300", + "coordonnees_gps": [ + 46.0893520244, + 6.57817291187 + ], + "libelle_d_acheminement": "CHATILLON SUR CLUSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57817291187, + 46.0893520244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3ecdb6d6bded603fe9fd2378be81ffe02b3e261", + "fields": { + "code_commune_insee": "74065", + "nom_de_la_commune": "CHAUMONT", + "code_postal": "74270", + "coordonnees_gps": [ + 46.044949243, + 5.94515955142 + ], + "libelle_d_acheminement": "CHAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94515955142, + 46.044949243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f356da943193f37bd4911cfcd18649f50f4ca1f", + "fields": { + "code_commune_insee": "74066", + "nom_de_la_commune": "CHAVANNAZ", + "code_postal": "74270", + "coordonnees_gps": [ + 46.0500384099, + 6.01652644319 + ], + "libelle_d_acheminement": "CHAVANNAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01652644319, + 46.0500384099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef94efca19b8c56919fedce7e73b1e02f37e9b1f", + "fields": { + "code_commune_insee": "74121", + "nom_de_la_commune": "EXCENEVEX", + "code_postal": "74140", + "coordonnees_gps": [ + 46.3467214365, + 6.34122172541 + ], + "libelle_d_acheminement": "EXCENEVEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34122172541, + 46.3467214365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e365b02f8c78af4ea5a5e6187913177b113f5352", + "fields": { + "ligne_5": "FAVERGES", + "code_commune_insee": "74123", + "libelle_d_acheminement": "FAVERGES SEYTHENEX", + "code_postal": "74210", + "nom_de_la_commune": "FAVERGES SEYTHENEX", + "coordonnees_gps": [ + 45.749197611, + 6.2852126691 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2852126691, + 45.749197611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b44c56dacf3d1b09dc08cdf66208de94fbfe6cd", + "fields": { + "code_commune_insee": "74128", + "nom_de_la_commune": "FILLINGES", + "code_postal": "74250", + "coordonnees_gps": [ + 46.1661884948, + 6.35020094115 + ], + "libelle_d_acheminement": "FILLINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35020094115, + 46.1661884948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab0695d00b15eb18dcdbed915e7970a36297df15", + "fields": { + "code_commune_insee": "74129", + "nom_de_la_commune": "LA FORCLAZ", + "code_postal": "74200", + "coordonnees_gps": [ + 46.3179930768, + 6.61587770566 + ], + "libelle_d_acheminement": "LA FORCLAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61587770566, + 46.3179930768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8676b9c8d5acbce47afb32b3b998db3dc961d8ef", + "fields": { + "code_commune_insee": "74141", + "nom_de_la_commune": "HAUTEVILLE SUR FIER", + "code_postal": "74150", + "coordonnees_gps": [ + 45.9053969154, + 5.97847450903 + ], + "libelle_d_acheminement": "HAUTEVILLE SUR FIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97847450903, + 45.9053969154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ee3bc0f2e58b122854b7d2609acc578183fd939", + "fields": { + "ligne_5": "FLAINE", + "code_commune_insee": "74159", + "libelle_d_acheminement": "MAGLAND", + "code_postal": "74300", + "nom_de_la_commune": "MAGLAND", + "coordonnees_gps": [ + 46.0010482843, + 6.63346275001 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63346275001, + 46.0010482843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "573251ef9d13084d5917eb73c272a34bd8412f2d", + "fields": { + "code_commune_insee": "74161", + "nom_de_la_commune": "MARCELLAZ ALBANAIS", + "code_postal": "74150", + "coordonnees_gps": [ + 45.8707666438, + 5.99966381928 + ], + "libelle_d_acheminement": "MARCELLAZ ALBANAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99966381928, + 45.8707666438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "665bf9250a7d5ee50dfad4f8b4b7c84380d7b151", + "fields": { + "code_commune_insee": "74168", + "nom_de_la_commune": "MARLIOZ", + "code_postal": "74270", + "coordonnees_gps": [ + 46.0270380688, + 6.00829884912 + ], + "libelle_d_acheminement": "MARLIOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00829884912, + 46.0270380688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b149abb8df603ee9e3721c78404bf16a535322a", + "fields": { + "code_commune_insee": "74179", + "nom_de_la_commune": "MESIGNY", + "code_postal": "74330", + "coordonnees_gps": [ + 45.9864538672, + 6.00616944554 + ], + "libelle_d_acheminement": "MESIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00616944554, + 45.9864538672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70ccedd5515da7d1f746c3e74ae09ef9c8c01bce", + "fields": { + "code_commune_insee": "74189", + "nom_de_la_commune": "MONT SAXONNEX", + "code_postal": "74130", + "coordonnees_gps": [ + 46.0351333935, + 6.47990420928 + ], + "libelle_d_acheminement": "MONT SAXONNEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47990420928, + 46.0351333935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7be7769d70ba757c5211a233f5c9a723563fc35c", + "fields": { + "code_commune_insee": "74199", + "nom_de_la_commune": "NERNIER", + "code_postal": "74140", + "coordonnees_gps": [ + 46.3615754637, + 6.30527066431 + ], + "libelle_d_acheminement": "NERNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30527066431, + 46.3615754637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42a4352246634704ba0751702174fc5c58a25a1f", + "fields": { + "code_commune_insee": "74206", + "nom_de_la_commune": "ORCIER", + "code_postal": "74550", + "coordonnees_gps": [ + 46.3132216712, + 6.50123814187 + ], + "libelle_d_acheminement": "ORCIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50123814187, + 46.3132216712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ba3f16a1e55d9c7512221b4c7c5f8d16424669e", + "fields": { + "ligne_5": "PLATEAU D ASSY", + "code_commune_insee": "74208", + "libelle_d_acheminement": "PASSY", + "code_postal": "74190", + "nom_de_la_commune": "PASSY", + "coordonnees_gps": [ + 45.9545838758, + 6.74056895873 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74056895873, + 45.9545838758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24fc9f0807014d4286d7b4a352fa35068e390221", + "fields": { + "code_commune_insee": "74221", + "nom_de_la_commune": "LE REPOSOIR", + "code_postal": "74950", + "coordonnees_gps": [ + 45.9970981338, + 6.52628371874 + ], + "libelle_d_acheminement": "LE REPOSOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52628371874, + 45.9970981338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0906151d8424541b17c71317e8d1fffdd10b5ce2", + "fields": { + "code_commune_insee": "74226", + "nom_de_la_commune": "ST ANDRE DE BOEGE", + "code_postal": "74420", + "coordonnees_gps": [ + 46.1932380604, + 6.3815476772 + ], + "libelle_d_acheminement": "ST ANDRE DE BOEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3815476772, + 46.1932380604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8b6e40a9f84b825245b558262fce515948e59fa", + "fields": { + "code_commune_insee": "74232", + "nom_de_la_commune": "ST EUSTACHE", + "code_postal": "74410", + "coordonnees_gps": [ + 45.7953730789, + 6.15214933541 + ], + "libelle_d_acheminement": "ST EUSTACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15214933541, + 45.7953730789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "030304fc0e096e848b24a1e8ffb52ee1c84f65b5", + "fields": { + "code_commune_insee": "74235", + "nom_de_la_commune": "ST GERMAIN SUR RHONE", + "code_postal": "74910", + "coordonnees_gps": [ + 46.0700297768, + 5.82592326437 + ], + "libelle_d_acheminement": "ST GERMAIN SUR RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82592326437, + 46.0700297768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c05c0b6fcbbf55fbca527e2f73d047b350ce23f0", + "fields": { + "code_commune_insee": "74243", + "nom_de_la_commune": "ST JULIEN EN GENEVOIS", + "code_postal": "74160", + "coordonnees_gps": [ + 46.139365545, + 6.07881171095 + ], + "libelle_d_acheminement": "ST JULIEN EN GENEVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07881171095, + 46.139365545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02657cb5418d7f7bea3a4f9bb9fe512d109668aa", + "fields": { + "code_commune_insee": "74249", + "nom_de_la_commune": "ST PAUL EN CHABLAIS", + "code_postal": "74500", + "coordonnees_gps": [ + 46.3693047939, + 6.63664025494 + ], + "libelle_d_acheminement": "ST PAUL EN CHABLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63664025494, + 46.3693047939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45c57de356ea95473014e2ba1a62f21dec436870", + "fields": { + "code_commune_insee": "74250", + "nom_de_la_commune": "ST PIERRE EN FAUCIGNY", + "code_postal": "74800", + "coordonnees_gps": [ + 46.063686335, + 6.37244945345 + ], + "libelle_d_acheminement": "ST PIERRE EN FAUCIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37244945345, + 46.063686335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33b7907ec96ccfd31bf33e617a4b8c8eb147d210", + "fields": { + "ligne_5": "ST MARTIN SUR ARVE", + "code_commune_insee": "74256", + "libelle_d_acheminement": "SALLANCHES", + "code_postal": "74700", + "nom_de_la_commune": "SALLANCHES", + "coordonnees_gps": [ + 45.9468155788, + 6.60711053078 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60711053078, + 45.9468155788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "383efdc0815a2b22dbf8f38402ea164f525fedab", + "fields": { + "code_commune_insee": "74263", + "nom_de_la_commune": "SCIEZ", + "code_postal": "74140", + "coordonnees_gps": [ + 46.3247332955, + 6.38071834154 + ], + "libelle_d_acheminement": "SCIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38071834154, + 46.3247332955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d94a14fbc7a1fc52cebf88f949ce853156ba76c7", + "fields": { + "code_commune_insee": "74267", + "nom_de_la_commune": "SEVRIER", + "code_postal": "74320", + "coordonnees_gps": [ + 45.8555012829, + 6.13806338899 + ], + "libelle_d_acheminement": "SEVRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13806338899, + 45.8555012829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c9f68f088558946b02569e219124265c451cad5", + "fields": { + "code_commune_insee": "74271", + "nom_de_la_commune": "SEYTROUX", + "code_postal": "74430", + "coordonnees_gps": [ + 46.2397817737, + 6.60295956835 + ], + "libelle_d_acheminement": "SEYTROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60295956835, + 46.2397817737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f63eae00c690bcf2309537a0bdac17474bcd7fa", + "fields": { + "ligne_5": "EVIRES", + "code_commune_insee": "74282", + "libelle_d_acheminement": "FILLIERE", + "code_postal": "74570", + "nom_de_la_commune": "FILLIERE", + "coordonnees_gps": [ + 45.9923733891, + 6.28837579239 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28837579239, + 45.9923733891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a691af07a365a6e3be3ea7e4683d87126627594b", + "fields": { + "code_commune_insee": "74287", + "nom_de_la_commune": "VAILLY", + "code_postal": "74470", + "coordonnees_gps": [ + 46.2936006568, + 6.55263148753 + ], + "libelle_d_acheminement": "VAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55263148753, + 46.2936006568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2829fddf4c0da25532243bfad91360a4c6ab0327", + "fields": { + "code_commune_insee": "74288", + "nom_de_la_commune": "VALLEIRY", + "code_postal": "74520", + "coordonnees_gps": [ + 46.1152145208, + 5.97022697234 + ], + "libelle_d_acheminement": "VALLEIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97022697234, + 46.1152145208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "829c361366cc16ef93405cf6c96f9661fca26720", + "fields": { + "ligne_5": "SION", + "code_commune_insee": "74289", + "libelle_d_acheminement": "VALLIERES SUR FIER", + "code_postal": "74150", + "nom_de_la_commune": "VALLIERES SUR FIER", + "coordonnees_gps": [ + 45.9052695634, + 5.94190689609 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94190689609, + 45.9052695634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9ee620aeeaf422fd17153a090c50651672d53d8", + "fields": { + "code_commune_insee": "74290", + "nom_de_la_commune": "VALLORCINE", + "code_postal": "74660", + "coordonnees_gps": [ + 46.025877178, + 6.90055556449 + ], + "libelle_d_acheminement": "VALLORCINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90055556449, + 46.025877178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36ac4351da74b21b4c87d8cdf554b244456239a4", + "fields": { + "code_commune_insee": "74312", + "nom_de_la_commune": "VOUGY", + "code_postal": "74130", + "coordonnees_gps": [ + 46.066690083, + 6.48527967486 + ], + "libelle_d_acheminement": "VOUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48527967486, + 46.066690083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52221de659cc917aaeb6a5e8bd4cde15171d0b0f", + "fields": { + "code_commune_insee": "74313", + "nom_de_la_commune": "VOVRAY EN BORNES", + "code_postal": "74350", + "coordonnees_gps": [ + 46.0630306503, + 6.14060275314 + ], + "libelle_d_acheminement": "VOVRAY EN BORNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14060275314, + 46.0630306503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffa88743aa000caad4d41ab5cac098b6f88c3b6c", + "fields": { + "code_commune_insee": "74314", + "nom_de_la_commune": "VULBENS", + "code_postal": "74520", + "coordonnees_gps": [ + 46.1094500847, + 5.9361888099 + ], + "libelle_d_acheminement": "VULBENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9361888099, + 46.1094500847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e457dc8b0156d21c4f8a5c0bbc4437cd27a1ea1a", + "fields": { + "code_commune_insee": "75106", + "nom_de_la_commune": "PARIS 06", + "code_postal": "75006", + "coordonnees_gps": [ + 48.8489680919, + 2.33267089859 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33267089859, + 48.8489680919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8054153282c9f4ba1708f9b69c96cba28d83a4c", + "fields": { + "code_commune_insee": "75112", + "nom_de_la_commune": "PARIS 12", + "code_postal": "75012", + "coordonnees_gps": [ + 48.8351562307, + 2.41980703497 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41980703497, + 48.8351562307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4266d10b3e2a6db93301df26b5bd3475c494551", + "fields": { + "code_commune_insee": "75113", + "nom_de_la_commune": "PARIS 13", + "code_postal": "75013", + "coordonnees_gps": [ + 48.8287176845, + 2.36246822852 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36246822852, + 48.8287176845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "035cce805de19a289dd55c5aba37274bb745f4a4", + "fields": { + "code_commune_insee": "75118", + "nom_de_la_commune": "PARIS 18", + "code_postal": "75018", + "coordonnees_gps": [ + 48.8927350746, + 2.34871193387 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34871193387, + 48.8927350746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84f86a40333cb25c2522e4f09f57631cab8b4d31", + "fields": { + "code_commune_insee": "76004", + "nom_de_la_commune": "AMBRUMESNIL", + "code_postal": "76550", + "coordonnees_gps": [ + 49.8584810142, + 0.983755211163 + ], + "libelle_d_acheminement": "AMBRUMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.983755211163, + 49.8584810142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b63f3648b521161df3c66e5238ce3e257234096", + "fields": { + "code_commune_insee": "76007", + "nom_de_la_commune": "ANCEAUMEVILLE", + "code_postal": "76710", + "coordonnees_gps": [ + 49.5695149287, + 1.06535432644 + ], + "libelle_d_acheminement": "ANCEAUMEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06535432644, + 49.5695149287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94d0c44b7bcb59113da4be0b8c1197c63f3e0d5d", + "fields": { + "code_commune_insee": "76008", + "nom_de_la_commune": "ANCOURT", + "code_postal": "76370", + "coordonnees_gps": [ + 49.9085547953, + 1.17898885458 + ], + "libelle_d_acheminement": "ANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17898885458, + 49.9085547953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b10bd7f11c11a04bc8c9030a860b693b2dd79e5", + "fields": { + "code_commune_insee": "76016", + "nom_de_la_commune": "ANGLESQUEVILLE LA BRAS LONG", + "code_postal": "76740", + "coordonnees_gps": [ + 49.7781234194, + 0.782574427799 + ], + "libelle_d_acheminement": "ANGLESQUEVILLE LA BRAS LONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.782574427799, + 49.7781234194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "307c402ab4bea60ad7d0af50e364fe933c48a255", + "fields": { + "code_commune_insee": "76022", + "nom_de_la_commune": "ANQUETIERVILLE", + "code_postal": "76490", + "coordonnees_gps": [ + 49.5363169279, + 0.632948005781 + ], + "libelle_d_acheminement": "ANQUETIERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.632948005781, + 49.5363169279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43c168335e9c072fe1b0efcf591942ae62bdc9cb", + "fields": { + "code_commune_insee": "76030", + "nom_de_la_commune": "AUBERMESNIL BEAUMAIS", + "code_postal": "76550", + "coordonnees_gps": [ + 49.847513728, + 1.12124254365 + ], + "libelle_d_acheminement": "AUBERMESNIL BEAUMAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12124254365, + 49.847513728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa4bdd01cc7d0ac2f67faef64fba48c0e8f7ef81", + "fields": { + "ligne_5": "CRESSY", + "code_commune_insee": "76034", + "libelle_d_acheminement": "VAL DE SCIE", + "code_postal": "76720", + "nom_de_la_commune": "VAL DE SCIE", + "coordonnees_gps": [ + 49.7124656757, + 1.11303892505 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11303892505, + 49.7124656757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f1da53978fcc2c5f976d01dc4a505e1491b0ac7", + "fields": { + "code_commune_insee": "76036", + "nom_de_la_commune": "AUPPEGARD", + "code_postal": "76730", + "coordonnees_gps": [ + 49.8306826854, + 1.03085104326 + ], + "libelle_d_acheminement": "AUPPEGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03085104326, + 49.8306826854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c0c0500c56ec894599bc50e5be1082eaa241244", + "fields": { + "code_commune_insee": "76038", + "nom_de_la_commune": "AUTHIEUX RATIEVILLE", + "code_postal": "76690", + "coordonnees_gps": [ + 49.5979881913, + 1.14626265264 + ], + "libelle_d_acheminement": "AUTHIEUX RATIEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14626265264, + 49.5979881913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ee92c3e12c67a9b3852d4eea6058c97f960a01f", + "fields": { + "code_commune_insee": "76046", + "nom_de_la_commune": "AUZOUVILLE SUR RY", + "code_postal": "76116", + "coordonnees_gps": [ + 49.4374386214, + 1.30966530446 + ], + "libelle_d_acheminement": "AUZOUVILLE SUR RY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30966530446, + 49.4374386214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "766f3f8b810f1a6380dcf6d44a021ef201954109", + "fields": { + "code_commune_insee": "76053", + "nom_de_la_commune": "BAILLOLET", + "code_postal": "76660", + "coordonnees_gps": [ + 49.7896330742, + 1.43139966694 + ], + "libelle_d_acheminement": "BAILLOLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43139966694, + 49.7896330742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31dfe74fa8c56f542154eb533d999169b7e9fba0", + "fields": { + "code_commune_insee": "76054", + "nom_de_la_commune": "BAILLY EN RIVIERE", + "code_postal": "76630", + "coordonnees_gps": [ + 49.9079295518, + 1.35035424549 + ], + "libelle_d_acheminement": "BAILLY EN RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35035424549, + 49.9079295518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "036209a4c5a0ec93f292fe7a6ec8bdecef35d64f", + "fields": { + "code_commune_insee": "76056", + "nom_de_la_commune": "BARDOUVILLE", + "code_postal": "76480", + "coordonnees_gps": [ + 49.4336284881, + 0.923414298372 + ], + "libelle_d_acheminement": "BARDOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.923414298372, + 49.4336284881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c81f6dd7767fe1da5879dc62f19dcf8e0467185f", + "fields": { + "code_commune_insee": "76059", + "nom_de_la_commune": "BAZINVAL", + "code_postal": "76340", + "coordonnees_gps": [ + 49.9483550946, + 1.54755894168 + ], + "libelle_d_acheminement": "BAZINVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54755894168, + 49.9483550946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ab02e4e766ce9a2b4f53ee7010ef9b9612b5ec5", + "fields": { + "code_commune_insee": "76071", + "nom_de_la_commune": "BELLENGREVILLE", + "code_postal": "76630", + "coordonnees_gps": [ + 49.9107866159, + 1.22780682049 + ], + "libelle_d_acheminement": "BELLENGREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22780682049, + 49.9107866159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bea2944212e77008770e22e6d0913a681e89eb0a", + "fields": { + "code_commune_insee": "76079", + "nom_de_la_commune": "BENOUVILLE", + "code_postal": "76790", + "coordonnees_gps": [ + 49.7173340214, + 0.246125602871 + ], + "libelle_d_acheminement": "BENOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.246125602871, + 49.7173340214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "152dd22af1a22cd9a1e4b3ecda0b702bb3a3229d", + "fields": { + "code_commune_insee": "76082", + "nom_de_la_commune": "BERNIERES", + "code_postal": "76210", + "coordonnees_gps": [ + 49.6223112672, + 0.4774389585 + ], + "libelle_d_acheminement": "BERNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.4774389585, + 49.6223112672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c65a860ec0a047741a5808007259fbda96a2adaa", + "fields": { + "code_commune_insee": "76084", + "nom_de_la_commune": "BERTREVILLE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.7666175851, + 0.580078332797 + ], + "libelle_d_acheminement": "BERTREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.580078332797, + 49.7666175851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53270e1c1ad977a9795bddd1f9718edda7c26a12", + "fields": { + "code_commune_insee": "76087", + "nom_de_la_commune": "BERVILLE EN CAUX", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7125106385, + 0.837054229311 + ], + "libelle_d_acheminement": "BERVILLE EN CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.837054229311, + 49.7125106385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ae9f97d15fc2743cc8b634bc5821041fa61b6e3", + "fields": { + "code_commune_insee": "76099", + "nom_de_la_commune": "BLACQUEVILLE", + "code_postal": "76190", + "coordonnees_gps": [ + 49.5573634495, + 0.848501057817 + ], + "libelle_d_acheminement": "BLACQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.848501057817, + 49.5573634495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acd7836cadfb25514e2ea4b4420cf9794f1ea988", + "fields": { + "code_commune_insee": "76108", + "nom_de_la_commune": "BOIS GUILLAUME", + "code_postal": "76230", + "coordonnees_gps": [ + 49.4717615714, + 1.12022637351 + ], + "libelle_d_acheminement": "BOIS GUILLAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12022637351, + 49.4717615714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f79117baff7534e1fd8629f342740c987350dc7f", + "fields": { + "code_commune_insee": "76112", + "nom_de_la_commune": "LE BOIS ROBERT", + "code_postal": "76590", + "coordonnees_gps": [ + 49.8380335572, + 1.14914842733 + ], + "libelle_d_acheminement": "LE BOIS ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14914842733, + 49.8380335572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca849693edfefdd462643fbb883e8e19f5c7f2a4", + "fields": { + "code_commune_insee": "76114", + "nom_de_la_commune": "BOLBEC", + "code_postal": "76210", + "coordonnees_gps": [ + 49.5754807674, + 0.484404802201 + ], + "libelle_d_acheminement": "BOLBEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.484404802201, + 49.5754807674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9b96bf289c1d55a5b81b3d2c5452e0997ad7e25", + "fields": { + "code_commune_insee": "76115", + "nom_de_la_commune": "BOLLEVILLE", + "code_postal": "76210", + "coordonnees_gps": [ + 49.6028335205, + 0.563968438854 + ], + "libelle_d_acheminement": "BOLLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.563968438854, + 49.6028335205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aa49cc421e87b289370ef392189c10d4733b9d2", + "fields": { + "code_commune_insee": "76117", + "nom_de_la_commune": "BORDEAUX ST CLAIR", + "code_postal": "76790", + "coordonnees_gps": [ + 49.697601016, + 0.242239200327 + ], + "libelle_d_acheminement": "BORDEAUX ST CLAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.242239200327, + 49.697601016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9ee2952bc3da3d9c4195f04462bc910225d6e33", + "fields": { + "code_commune_insee": "76120", + "nom_de_la_commune": "BOSC BORDEL", + "code_postal": "76750", + "coordonnees_gps": [ + 49.6049218358, + 1.40929431923 + ], + "libelle_d_acheminement": "BOSC BORDEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40929431923, + 49.6049218358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b0f9b17d5f875e4af8b9c267f3baf3a23d04bb1", + "fields": { + "code_commune_insee": "76121", + "nom_de_la_commune": "BOSC EDELINE", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5743992317, + 1.42966771181 + ], + "libelle_d_acheminement": "BOSC EDELINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42966771181, + 49.5743992317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf405b27e1cdace6eb36aa0b059d97946f3485d1", + "fields": { + "code_commune_insee": "76124", + "nom_de_la_commune": "BOSC HYONS", + "code_postal": "76220", + "coordonnees_gps": [ + 49.452101199, + 1.64984225358 + ], + "libelle_d_acheminement": "BOSC HYONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64984225358, + 49.452101199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f7b8b1ad5c9a6a80dbfdcf9b9f4bd3104684c3c", + "fields": { + "code_commune_insee": "76133", + "nom_de_la_commune": "LE BOURG DUN", + "code_postal": "76740", + "coordonnees_gps": [ + 49.8702714225, + 0.892619905742 + ], + "libelle_d_acheminement": "LE BOURG DUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.892619905742, + 49.8702714225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d5bf2407e66a62a8d40e291bd9a6d566bf41d25", + "fields": { + "code_commune_insee": "76135", + "nom_de_la_commune": "BOUVILLE", + "code_postal": "76360", + "coordonnees_gps": [ + 49.5571157424, + 0.894771210458 + ], + "libelle_d_acheminement": "BOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.894771210458, + 49.5571157424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d07d59a46e96ad0ad4b3d78a9e699564aff9cf9", + "fields": { + "code_commune_insee": "76136", + "nom_de_la_commune": "BRACHY", + "code_postal": "76730", + "coordonnees_gps": [ + 49.8165894771, + 0.948902356331 + ], + "libelle_d_acheminement": "BRACHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.948902356331, + 49.8165894771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3e30dcf8e5d26c8b3d059eb6813b63108cea32b", + "fields": { + "code_commune_insee": "76138", + "nom_de_la_commune": "BRACQUETUIT", + "code_postal": "76850", + "coordonnees_gps": [ + 49.6646732436, + 1.16974205815 + ], + "libelle_d_acheminement": "BRACQUETUIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16974205815, + 49.6646732436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fc7fd7642a7d3e22e1e8f619fad5d1d8bc29976", + "fields": { + "code_commune_insee": "76140", + "nom_de_la_commune": "BRAMETOT", + "code_postal": "76740", + "coordonnees_gps": [ + 49.7820847663, + 0.869852926704 + ], + "libelle_d_acheminement": "BRAMETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.869852926704, + 49.7820847663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41791dc3b4bde56de31fe365a2851f2a1c60b6a0", + "fields": { + "code_commune_insee": "76142", + "nom_de_la_commune": "BREMONTIER MERVAL", + "code_postal": "76220", + "coordonnees_gps": [ + 49.5143282668, + 1.6171922011 + ], + "libelle_d_acheminement": "BREMONTIER MERVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6171922011, + 49.5143282668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21880eab7408c22e38f32b5c0ada41a762e372e2", + "fields": { + "code_commune_insee": "76156", + "nom_de_la_commune": "CANOUVILLE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.8064199555, + 0.597683771595 + ], + "libelle_d_acheminement": "CANOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.597683771595, + 49.8064199555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a1a12513b31514c274ea032f40ac4edf8dc8e84", + "fields": { + "code_commune_insee": "76161", + "nom_de_la_commune": "CARVILLE POT DE FER", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7186680697, + 0.723155038419 + ], + "libelle_d_acheminement": "CARVILLE POT DE FER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.723155038419, + 49.7186680697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "279136409110ec73f7b4f45bf41994bffc8ad25e", + "fields": { + "code_commune_insee": "76162", + "nom_de_la_commune": "LE CATELIER", + "code_postal": "76590", + "coordonnees_gps": [ + 49.757012277, + 1.15667476755 + ], + "libelle_d_acheminement": "LE CATELIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15667476755, + 49.757012277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa985b0eacedd2f30cccb0518fdb2595c7eb23eb", + "fields": { + "code_commune_insee": "76167", + "nom_de_la_commune": "CAUVILLE SUR MER", + "code_postal": "76930", + "coordonnees_gps": [ + 49.593844191, + 0.144981167051 + ], + "libelle_d_acheminement": "CAUVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.144981167051, + 49.593844191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd3e7d2f986771228a005ea469a51f259eaeb90b", + "fields": { + "code_commune_insee": "76171", + "nom_de_la_commune": "LA CHAPELLE ST OUEN", + "code_postal": "76780", + "coordonnees_gps": [ + 49.521909857, + 1.42852895013 + ], + "libelle_d_acheminement": "LA CHAPELLE ST OUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42852895013, + 49.521909857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2260b812e4105465c8157e9f097b3db703000d7", + "fields": { + "code_commune_insee": "76178", + "nom_de_la_commune": "CLEON", + "code_postal": "76410", + "coordonnees_gps": [ + 49.316254089, + 1.03978678909 + ], + "libelle_d_acheminement": "CLEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03978678909, + 49.316254089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "719999ca1fb01acc8981914fee4ebbdddc44938b", + "fields": { + "code_commune_insee": "76185", + "nom_de_la_commune": "COMPAINVILLE", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6584559253, + 1.55975228232 + ], + "libelle_d_acheminement": "COMPAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55975228232, + 49.6584559253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eab63ff7696a4294e96253240e8b3368917b66dc", + "fields": { + "code_commune_insee": "76187", + "nom_de_la_commune": "CONTREMOULINS", + "code_postal": "76400", + "coordonnees_gps": [ + 49.7245988757, + 0.437780709173 + ], + "libelle_d_acheminement": "CONTREMOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.437780709173, + 49.7245988757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd43103109cfd6a52139a2d1afa04944c56c9459", + "fields": { + "code_commune_insee": "76189", + "nom_de_la_commune": "CRASVILLE LA MALLET", + "code_postal": "76450", + "coordonnees_gps": [ + 49.8050247312, + 0.716586925747 + ], + "libelle_d_acheminement": "CRASVILLE LA MALLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.716586925747, + 49.8050247312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebe62c235b7684f8b789c6d55e2c49055b5c0e15", + "fields": { + "code_commune_insee": "76193", + "nom_de_la_commune": "LA CRIQUE", + "code_postal": "76850", + "coordonnees_gps": [ + 49.6927272245, + 1.20350778809 + ], + "libelle_d_acheminement": "LA CRIQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20350778809, + 49.6927272245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dbf1dba76f9be47712a8e72040c9152316f3297", + "fields": { + "code_commune_insee": "76196", + "nom_de_la_commune": "CRIQUETOT L ESNEVAL", + "code_postal": "76280", + "coordonnees_gps": [ + 49.6368976314, + 0.267256823933 + ], + "libelle_d_acheminement": "CRIQUETOT L ESNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.267256823933, + 49.6368976314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67da24e767b2910a9adc24acacefb21dadc1a19d", + "fields": { + "code_commune_insee": "76207", + "nom_de_la_commune": "CUVERVILLE SUR YERES", + "code_postal": "76260", + "coordonnees_gps": [ + 49.9515780673, + 1.38873648961 + ], + "libelle_d_acheminement": "CUVERVILLE SUR YERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38873648961, + 49.9515780673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4352d9439c87b70d9576e5858e0ed87f607a0b61", + "fields": { + "code_commune_insee": "76210", + "nom_de_la_commune": "DAMPIERRE ST NICOLAS", + "code_postal": "76510", + "coordonnees_gps": [ + 49.857280446, + 1.2036925117 + ], + "libelle_d_acheminement": "DAMPIERRE ST NICOLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2036925117, + 49.857280446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee5ce0405260196edaf9533055585f0fbc600bf5", + "fields": { + "code_commune_insee": "76217", + "nom_de_la_commune": "DIEPPE", + "code_postal": "76370", + "coordonnees_gps": [ + 49.9222503951, + 1.08681168449 + ], + "libelle_d_acheminement": "DIEPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08681168449, + 49.9222503951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a7868c389cda927796fe101391b46755640c02a", + "fields": { + "code_commune_insee": "76218", + "nom_de_la_commune": "DOUDEAUVILLE", + "code_postal": "76220", + "coordonnees_gps": [ + 49.5662160766, + 1.69896452487 + ], + "libelle_d_acheminement": "DOUDEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69896452487, + 49.5662160766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44847a190d3d3b228840da6fc077189ebd389feb", + "fields": { + "code_commune_insee": "76223", + "nom_de_la_commune": "ECALLES ALIX", + "code_postal": "76190", + "coordonnees_gps": [ + 49.6173418426, + 0.809761271567 + ], + "libelle_d_acheminement": "ECALLES ALIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.809761271567, + 49.6173418426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50ebbbe8ea3dbd61f03089052349b74b4b8fdf4c", + "fields": { + "code_commune_insee": "76224", + "nom_de_la_commune": "ECRAINVILLE", + "code_postal": "76110", + "coordonnees_gps": [ + 49.646391607, + 0.313116494786 + ], + "libelle_d_acheminement": "ECRAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.313116494786, + 49.646391607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bcfab98e6e611b35c16f2075fdb2defc46c239e", + "fields": { + "code_commune_insee": "76226", + "nom_de_la_commune": "ECRETTEVILLE SUR MER", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7907895888, + 0.48599605683 + ], + "libelle_d_acheminement": "ECRETTEVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.48599605683, + 49.7907895888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a298abb5f8357917dbe47946eb0e7619d4c2a4f", + "fields": { + "code_commune_insee": "76235", + "nom_de_la_commune": "ENVERMEU", + "code_postal": "76630", + "coordonnees_gps": [ + 49.8982838543, + 1.26348988955 + ], + "libelle_d_acheminement": "ENVERMEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26348988955, + 49.8982838543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2612492547af6f51d563a46bc263d069d3994c82", + "fields": { + "code_commune_insee": "76236", + "nom_de_la_commune": "ENVRONVILLE", + "code_postal": "76640", + "coordonnees_gps": [ + 49.6585527629, + 0.670389261558 + ], + "libelle_d_acheminement": "ENVRONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.670389261558, + 49.6585527629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99f0f06a092339a627a8a1b45f657ff9c805fc4d", + "fields": { + "code_commune_insee": "76244", + "nom_de_la_commune": "ESCLAVELLES", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7050934258, + 1.38563696513 + ], + "libelle_d_acheminement": "ESCLAVELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38563696513, + 49.7050934258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea0e9b9d3c599c37eef68a8a6568505af6a6b3d5", + "fields": { + "code_commune_insee": "76252", + "nom_de_la_commune": "ETALONDES", + "code_postal": "76260", + "coordonnees_gps": [ + 50.0327111921, + 1.389654721 + ], + "libelle_d_acheminement": "ETALONDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.389654721, + 50.0327111921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8a9e6016cde691de6b53ff6b7dd1507aa07f78a", + "fields": { + "code_commune_insee": "76255", + "nom_de_la_commune": "EU", + "code_postal": "76260", + "coordonnees_gps": [ + 50.0413268784, + 1.42861757801 + ], + "libelle_d_acheminement": "EU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42861757801, + 50.0413268784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9cf34d606ad66d0ff7c742e31675947913bc5d9", + "fields": { + "code_commune_insee": "76260", + "nom_de_la_commune": "FERRIERES EN BRAY", + "code_postal": "76220", + "coordonnees_gps": [ + 49.4862193398, + 1.75819614475 + ], + "libelle_d_acheminement": "FERRIERES EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75819614475, + 49.4862193398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96b9aad88cf1dcaf03176ccecc4ec769085d9ce5", + "fields": { + "code_commune_insee": "76265", + "nom_de_la_commune": "FLAMETS FRETILS", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7256186457, + 1.58280844201 + ], + "libelle_d_acheminement": "FLAMETS FRETILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58280844201, + 49.7256186457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b542cd6cc2136e7a092dadb410af18a713e192c", + "fields": { + "code_commune_insee": "76270", + "nom_de_la_commune": "FONTAINE LA MALLET", + "code_postal": "76290", + "coordonnees_gps": [ + 49.5385360743, + 0.14056810162 + ], + "libelle_d_acheminement": "FONTAINE LA MALLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14056810162, + 49.5385360743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b330e70581b8244c9c25408373580b4b803d2ff7", + "fields": { + "code_commune_insee": "76281", + "nom_de_la_commune": "LA FRENAYE", + "code_postal": "76170", + "coordonnees_gps": [ + 49.5208360056, + 0.573461077843 + ], + "libelle_d_acheminement": "LA FRENAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.573461077843, + 49.5208360056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43e1273eb62b0229a8005169e7d71d2c4c252da1", + "fields": { + "code_commune_insee": "76288", + "nom_de_la_commune": "FREULLEVILLE", + "code_postal": "76510", + "coordonnees_gps": [ + 49.8188117486, + 1.21669243102 + ], + "libelle_d_acheminement": "FREULLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21669243102, + 49.8188117486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4be0c8fa7fb2b13f94e3a2f8393f3bcf29619b05", + "fields": { + "ligne_5": "BETTEVILLE", + "code_commune_insee": "76289", + "libelle_d_acheminement": "ST MARTIN DE L IF", + "code_postal": "76190", + "nom_de_la_commune": "ST MARTIN DE L IF", + "coordonnees_gps": [ + 49.5651631452, + 0.833069408864 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.833069408864, + 49.5651631452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a24733ba59b6af1f4d13ea24ce4fe536273df361", + "fields": { + "ligne_5": "FREVILLE", + "code_commune_insee": "76289", + "libelle_d_acheminement": "ST MARTIN DE L IF", + "code_postal": "76190", + "nom_de_la_commune": "ST MARTIN DE L IF", + "coordonnees_gps": [ + 49.5651631452, + 0.833069408864 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.833069408864, + 49.5651631452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9489906836d97b2bc2718756d4ca5c53e9c16fd8", + "fields": { + "code_commune_insee": "76295", + "nom_de_la_commune": "GAILLEFONTAINE", + "code_postal": "76870", + "coordonnees_gps": [ + 49.6566343122, + 1.62674922737 + ], + "libelle_d_acheminement": "GAILLEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62674922737, + 49.6566343122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af064f05ac76a003ec215062ea2385415c147f5f", + "fields": { + "code_commune_insee": "76307", + "nom_de_la_commune": "GONNEVILLE LA MALLET", + "code_postal": "76280", + "coordonnees_gps": [ + 49.6315125266, + 0.213546027187 + ], + "libelle_d_acheminement": "GONNEVILLE LA MALLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.213546027187, + 49.6315125266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd4560bba33693f30dc17ce082c0f6e70bf5f6f8", + "fields": { + "code_commune_insee": "76311", + "nom_de_la_commune": "GOUPILLIERES", + "code_postal": "76570", + "coordonnees_gps": [ + 49.5835705579, + 0.983266769608 + ], + "libelle_d_acheminement": "GOUPILLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.983266769608, + 49.5835705579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9adf7c9c49e1a5ee88ae9bea2ef51c0776f0a496", + "fields": { + "code_commune_insee": "76312", + "nom_de_la_commune": "GOURNAY EN BRAY", + "code_postal": "76220", + "coordonnees_gps": [ + 49.4798020531, + 1.71814645212 + ], + "libelle_d_acheminement": "GOURNAY EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71814645212, + 49.4798020531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4208ef80f6a94e31d53214f2a594fd2c63d0eb18", + "fields": { + "code_commune_insee": "76321", + "nom_de_la_commune": "LES GRANDES VENTES", + "code_postal": "76950", + "coordonnees_gps": [ + 49.7714742554, + 1.2346289662 + ], + "libelle_d_acheminement": "LES GRANDES VENTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2346289662, + 49.7714742554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0acef66f31759993852238fb6838208397ff4c77", + "fields": { + "code_commune_insee": "76325", + "nom_de_la_commune": "GREMONVILLE", + "code_postal": "76970", + "coordonnees_gps": [ + 49.6614794296, + 0.828880907854 + ], + "libelle_d_acheminement": "GREMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.828880907854, + 49.6614794296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f020360a89d1e21f2cbcba534acbb3428a134ff", + "fields": { + "ligne_5": "LE PETIT APPEVILLE", + "code_commune_insee": "76349", + "libelle_d_acheminement": "HAUTOT SUR MER", + "code_postal": "76550", + "nom_de_la_commune": "HAUTOT SUR MER", + "coordonnees_gps": [ + 49.902417401, + 1.04064541491 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04064541491, + 49.902417401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feae1a04b3d52432fc90fda147c17a095d7330f8", + "fields": { + "code_commune_insee": "76351", + "nom_de_la_commune": "LE HAVRE", + "code_postal": "76610", + "coordonnees_gps": [ + 49.498452502, + 0.140153719153 + ], + "libelle_d_acheminement": "LE HAVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.140153719153, + 49.498452502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04de6bbb300ef67120eda2c7b86617e8c3d439a6", + "fields": { + "code_commune_insee": "76355", + "nom_de_la_commune": "HERICOURT EN CAUX", + "code_postal": "76560", + "coordonnees_gps": [ + 49.6945647132, + 0.703298734705 + ], + "libelle_d_acheminement": "HERICOURT EN CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.703298734705, + 49.6945647132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4d28b26fb5f9b1c5ce8d2ab352561d848b66d95", + "fields": { + "code_commune_insee": "76358", + "nom_de_la_commune": "LE HERON", + "code_postal": "76780", + "coordonnees_gps": [ + 49.4921511515, + 1.40468099067 + ], + "libelle_d_acheminement": "LE HERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40468099067, + 49.4921511515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e033adad4e949d582db22cfe1ebf5b948020d3c", + "fields": { + "code_commune_insee": "76362", + "nom_de_la_commune": "HEURTEAUVILLE", + "code_postal": "76940", + "coordonnees_gps": [ + 49.4532160211, + 0.801910726458 + ], + "libelle_d_acheminement": "HEURTEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.801910726458, + 49.4532160211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "042a725280430c1e06bbf91afe5b3e893cfe5149", + "fields": { + "code_commune_insee": "76363", + "nom_de_la_commune": "HODENG AU BOSC", + "code_postal": "76340", + "coordonnees_gps": [ + 49.8719141783, + 1.69787362739 + ], + "libelle_d_acheminement": "HODENG AU BOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69787362739, + 49.8719141783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ef3054ec6eb096ac56cda324bfc0dfca7f88e2c", + "fields": { + "code_commune_insee": "76369", + "nom_de_la_commune": "LA HOUSSAYE BERANGER", + "code_postal": "76690", + "coordonnees_gps": [ + 49.629530026, + 1.08374590785 + ], + "libelle_d_acheminement": "LA HOUSSAYE BERANGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08374590785, + 49.629530026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1486477f7daffd073c4757708211fcb591e67cf6", + "fields": { + "code_commune_insee": "76373", + "nom_de_la_commune": "IMBLEVILLE", + "code_postal": "76890", + "coordonnees_gps": [ + 49.7139469343, + 0.943139932504 + ], + "libelle_d_acheminement": "IMBLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.943139932504, + 49.7139469343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "674bdeba319ddd95c1a0c8bf4a2f3fe13b3e6dfb", + "fields": { + "code_commune_insee": "76380", + "nom_de_la_commune": "LAMMERVILLE", + "code_postal": "76730", + "coordonnees_gps": [ + 49.7943437879, + 0.970888263334 + ], + "libelle_d_acheminement": "LAMMERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.970888263334, + 49.7943437879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "930f39395109ad1cf2712c47218c1f157069ad28", + "fields": { + "code_commune_insee": "76400", + "nom_de_la_commune": "LUNERAY", + "code_postal": "76810", + "coordonnees_gps": [ + 49.8227333447, + 0.917982419678 + ], + "libelle_d_acheminement": "LUNERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.917982419678, + 49.8227333447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4619deded907622003ccfacb2ebdf2b7c1ed4cc", + "fields": { + "code_commune_insee": "76405", + "nom_de_la_commune": "MANEHOUVILLE", + "code_postal": "76590", + "coordonnees_gps": [ + 49.832169289, + 1.06742872639 + ], + "libelle_d_acheminement": "MANEHOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06742872639, + 49.832169289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65ec2251931f3540d4aae5bc993a6bf4f775afe7", + "fields": { + "code_commune_insee": "76406", + "nom_de_la_commune": "MANIQUERVILLE", + "code_postal": "76400", + "coordonnees_gps": [ + 49.6944811187, + 0.346572121697 + ], + "libelle_d_acheminement": "MANIQUERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.346572121697, + 49.6944811187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f0269be032a35c53e886de11c20c2c3c2746f4d", + "fields": { + "ligne_5": "LA MAINE", + "code_commune_insee": "76410", + "libelle_d_acheminement": "MAROMME", + "code_postal": "76150", + "nom_de_la_commune": "MAROMME", + "coordonnees_gps": [ + 49.4769434634, + 1.03230514083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03230514083, + 49.4769434634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b69e0d45adcbbd7c36565d40ad728cd79178d84", + "fields": { + "code_commune_insee": "76411", + "nom_de_la_commune": "MARQUES", + "code_postal": "76390", + "coordonnees_gps": [ + 49.7798349093, + 1.68296751108 + ], + "libelle_d_acheminement": "MARQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68296751108, + 49.7798349093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d9189bd6e06690bd1ec7a1437da832da37e3e99", + "fields": { + "code_commune_insee": "76415", + "nom_de_la_commune": "MASSY", + "code_postal": "76270", + "coordonnees_gps": [ + 49.6878599018, + 1.39541182981 + ], + "libelle_d_acheminement": "MASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39541182981, + 49.6878599018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1368482aac6b6e9d66ca6e2f8a96fdd108b68f49", + "fields": { + "code_commune_insee": "76418", + "nom_de_la_commune": "MAULEVRIER STE GERTRUDE", + "code_postal": "76490", + "coordonnees_gps": [ + 49.5547380946, + 0.708077197955 + ], + "libelle_d_acheminement": "MAULEVRIER STE GERTRUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.708077197955, + 49.5547380946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17a1edf57a6ab3175e5420b72f5c6e037c661522", + "fields": { + "code_commune_insee": "76420", + "nom_de_la_commune": "MAUQUENCHY", + "code_postal": "76440", + "coordonnees_gps": [ + 49.5990574855, + 1.46080592913 + ], + "libelle_d_acheminement": "MAUQUENCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46080592913, + 49.5990574855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2e9e7dda704823c7ccfdbc7ceabfea6ff8ab56b", + "fields": { + "code_commune_insee": "76424", + "nom_de_la_commune": "MENONVAL", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7609797714, + 1.48093299574 + ], + "libelle_d_acheminement": "MENONVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48093299574, + 49.7609797714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05a9c53c0cd45b6b332b45fc49e8c9ff99ed0ef3", + "fields": { + "code_commune_insee": "76425", + "nom_de_la_commune": "MENTHEVILLE", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6915078139, + 0.40951682007 + ], + "libelle_d_acheminement": "MENTHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40951682007, + 49.6915078139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cf9f70eaad35c6c09f0c191adb70f532f8c7e1f", + "fields": { + "code_commune_insee": "76428", + "nom_de_la_commune": "LE MESNIL DURDENT", + "code_postal": "76460", + "coordonnees_gps": [ + 49.81771542, + 0.771137757772 + ], + "libelle_d_acheminement": "LE MESNIL DURDENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.771137757772, + 49.81771542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e842d65f992ccb61d9979a4c54b70ed13a28fbc4", + "fields": { + "code_commune_insee": "76432", + "nom_de_la_commune": "MESNIL MAUGER", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6699097849, + 1.52151036865 + ], + "libelle_d_acheminement": "MESNIL MAUGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52151036865, + 49.6699097849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1ec480d87c87363247a4a522b1b1c3cc8d12ea0", + "fields": { + "code_commune_insee": "76434", + "nom_de_la_commune": "MESNIL RAOUL", + "code_postal": "76520", + "coordonnees_gps": [ + 49.3972282851, + 1.27517747043 + ], + "libelle_d_acheminement": "MESNIL RAOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27517747043, + 49.3972282851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6c6736d9966ec98b9a1e645f9afd44957178869", + "fields": { + "code_commune_insee": "76435", + "nom_de_la_commune": "LE MESNIL REAUME", + "code_postal": "76260", + "coordonnees_gps": [ + 49.9716669882, + 1.44085369152 + ], + "libelle_d_acheminement": "LE MESNIL REAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44085369152, + 49.9716669882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65607ff1508904fc2ca73dbf5a002fb327383e56", + "fields": { + "code_commune_insee": "76452", + "nom_de_la_commune": "MONTVILLE", + "code_postal": "76710", + "coordonnees_gps": [ + 49.5460164645, + 1.0819460987 + ], + "libelle_d_acheminement": "MONTVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0819460987, + 49.5460164645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0075e9a423f4e8205ed9d08fcff9cd8ccb896371", + "fields": { + "code_commune_insee": "76454", + "nom_de_la_commune": "MORTEMER", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7444162467, + 1.54646531807 + ], + "libelle_d_acheminement": "MORTEMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54646531807, + 49.7444162467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33251d34c4697a092a1c2547b228b2e180bd5fc5", + "fields": { + "code_commune_insee": "76464", + "nom_de_la_commune": "LA NEUVILLE CHANT D OISEL", + "code_postal": "76520", + "coordonnees_gps": [ + 49.3692279184, + 1.2498939606 + ], + "libelle_d_acheminement": "LA NEUVILLE CHANT D OISEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2498939606, + 49.3692279184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c46bd17c7005c6a06520118fb52500dff108146", + "fields": { + "code_commune_insee": "76469", + "nom_de_la_commune": "NOLLEVAL", + "code_postal": "76780", + "coordonnees_gps": [ + 49.4939955432, + 1.48168594393 + ], + "libelle_d_acheminement": "NOLLEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48168594393, + 49.4939955432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aea5849afe501cd94227cbc7e625103ccb95e356", + "fields": { + "code_commune_insee": "76471", + "nom_de_la_commune": "NORVILLE", + "code_postal": "76330", + "coordonnees_gps": [ + 49.4816595994, + 0.643538536644 + ], + "libelle_d_acheminement": "NORVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.643538536644, + 49.4816595994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d211265143d8589cd563953d6fdad08f75d6690", + "fields": { + "ligne_5": "TOUFFREVILLE LA CABLE", + "code_commune_insee": "76476", + "libelle_d_acheminement": "PORT JEROME SUR SEINE", + "code_postal": "76170", + "nom_de_la_commune": "PORT JEROME SUR SEINE", + "coordonnees_gps": [ + 49.4895859593, + 0.572888177014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.572888177014, + 49.4895859593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "801bfefb550c1485b97cdc5fc7522044d085c2ba", + "fields": { + "ligne_5": "NOTRE DAME DE GRAVENCHON", + "code_commune_insee": "76476", + "libelle_d_acheminement": "PORT JEROME SUR SEINE", + "code_postal": "76330", + "nom_de_la_commune": "PORT JEROME SUR SEINE", + "coordonnees_gps": [ + 49.4895859593, + 0.572888177014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.572888177014, + 49.4895859593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4c9c6d7eae90d0a5d740cd58ac92b8df9474458", + "fields": { + "code_commune_insee": "76477", + "nom_de_la_commune": "NOTRE DAME DU BEC", + "code_postal": "76133", + "coordonnees_gps": [ + 49.5940970105, + 0.220671050793 + ], + "libelle_d_acheminement": "NOTRE DAME DU BEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.220671050793, + 49.5940970105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91bec0e1cc8e6caf73ae386d904683f234f56ccb", + "fields": { + "code_commune_insee": "76485", + "nom_de_la_commune": "OMONVILLE", + "code_postal": "76730", + "coordonnees_gps": [ + 49.7907329666, + 1.04880121771 + ], + "libelle_d_acheminement": "OMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04880121771, + 49.7907329666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2720959e3de2dce6dd6d5478c548e95d26c8250f", + "fields": { + "code_commune_insee": "76491", + "nom_de_la_commune": "OUVILLE L ABBAYE", + "code_postal": "76760", + "coordonnees_gps": [ + 49.6944501885, + 0.866542166561 + ], + "libelle_d_acheminement": "OUVILLE L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.866542166561, + 49.6944501885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73f5971c148c85b904fecadaf4ac99ac4c2497a4", + "fields": { + "code_commune_insee": "76492", + "nom_de_la_commune": "OUVILLE LA RIVIERE", + "code_postal": "76860", + "coordonnees_gps": [ + 49.8737511428, + 0.982537676244 + ], + "libelle_d_acheminement": "OUVILLE LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.982537676244, + 49.8737511428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b56b72eb95bd48b984cf5ef53734e08710e1fc28", + "fields": { + "code_commune_insee": "76498", + "nom_de_la_commune": "LE PETIT QUEVILLY", + "code_postal": "76140", + "coordonnees_gps": [ + 49.4238134718, + 1.06033289032 + ], + "libelle_d_acheminement": "LE PETIT QUEVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06033289032, + 49.4238134718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60cd55096ca53c8c3c105531a74fcf0dfdcf74c3", + "fields": { + "code_commune_insee": "76499", + "nom_de_la_commune": "PETIVILLE", + "code_postal": "76330", + "coordonnees_gps": [ + 49.4542024159, + 0.583953309592 + ], + "libelle_d_acheminement": "PETIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.583953309592, + 49.4542024159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2e173a9222f27dfbf3af0ba726bfac93710fda6", + "fields": { + "code_commune_insee": "76500", + "nom_de_la_commune": "PIERRECOURT", + "code_postal": "76340", + "coordonnees_gps": [ + 49.8882992444, + 1.6385300202 + ], + "libelle_d_acheminement": "PIERRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6385300202, + 49.8882992444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a79a7f624d22eef7e6fcd25cae546aa93e8cd53e", + "fields": { + "code_commune_insee": "76518", + "nom_de_la_commune": "RAFFETOT", + "code_postal": "76210", + "coordonnees_gps": [ + 49.6016087127, + 0.522532598893 + ], + "libelle_d_acheminement": "RAFFETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.522532598893, + 49.6016087127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "622176916e82d00a639ddcce3ced8148f829514a", + "fields": { + "code_commune_insee": "76526", + "nom_de_la_commune": "RICARVILLE DU VAL", + "code_postal": "76510", + "coordonnees_gps": [ + 49.7978934042, + 1.26880317772 + ], + "libelle_d_acheminement": "RICARVILLE DU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26880317772, + 49.7978934042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40a05e1fb5deac27f9e1c5560cd7ddb3434c8592", + "fields": { + "code_commune_insee": "76531", + "nom_de_la_commune": "ROCQUEFORT", + "code_postal": "76640", + "coordonnees_gps": [ + 49.6678070405, + 0.703178317701 + ], + "libelle_d_acheminement": "ROCQUEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.703178317701, + 49.6678070405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "329c8cd31f24f7257e776bf62737ed0054b925f6", + "fields": { + "code_commune_insee": "76536", + "nom_de_la_commune": "RONCHEROLLES SUR LE VIVIER", + "code_postal": "76160", + "coordonnees_gps": [ + 49.4643888008, + 1.18206780001 + ], + "libelle_d_acheminement": "RONCHEROLLES SUR LE VIVIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18206780001, + 49.4643888008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b011bc9dd28c8a856c590d9b82aec87a93f5a905", + "fields": { + "code_commune_insee": "76540", + "nom_de_la_commune": "ROUEN", + "code_postal": "76100", + "coordonnees_gps": [ + 49.4413460103, + 1.09256784278 + ], + "libelle_d_acheminement": "ROUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09256784278, + 49.4413460103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79f6c5849fe59fff690db0b5901bfc620762741a", + "fields": { + "code_commune_insee": "76553", + "nom_de_la_commune": "STE AGATHE D ALIERMONT", + "code_postal": "76660", + "coordonnees_gps": [ + 49.8251228166, + 1.33849691279 + ], + "libelle_d_acheminement": "STE AGATHE D ALIERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33849691279, + 49.8251228166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c384618a3fcba9594ecdd12564fc465a69372a7e", + "fields": { + "code_commune_insee": "76555", + "nom_de_la_commune": "ST ANDRE SUR CAILLY", + "code_postal": "76690", + "coordonnees_gps": [ + 49.5489369036, + 1.22162496884 + ], + "libelle_d_acheminement": "ST ANDRE SUR CAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22162496884, + 49.5489369036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78d3d085fe8776e777c49e86c0ca599b5900eba0", + "fields": { + "code_commune_insee": "76561", + "nom_de_la_commune": "ST AUBIN LES ELBEUF", + "code_postal": "76410", + "coordonnees_gps": [ + 49.3031255022, + 1.01820601482 + ], + "libelle_d_acheminement": "ST AUBIN LES ELBEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01820601482, + 49.3031255022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6de5f02ba29b0c72fc518879ee2f6a905b4d9825", + "fields": { + "code_commune_insee": "76565", + "nom_de_la_commune": "ST AUBIN SUR SCIE", + "code_postal": "76550", + "coordonnees_gps": [ + 49.8824960547, + 1.07805397506 + ], + "libelle_d_acheminement": "ST AUBIN SUR SCIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07805397506, + 49.8824960547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab27bb310e0801a2a6b5ba270b37b7e7918e0606", + "fields": { + "code_commune_insee": "76575", + "nom_de_la_commune": "ST ETIENNE DU ROUVRAY", + "code_postal": "76800", + "coordonnees_gps": [ + 49.3814944369, + 1.08976892912 + ], + "libelle_d_acheminement": "ST ETIENNE DU ROUVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08976892912, + 49.3814944369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c10a56a10899cbb961b8b6d7dcc6c1347af68b4c", + "fields": { + "code_commune_insee": "76578", + "nom_de_la_commune": "STE GENEVIEVE", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6585101081, + 1.42293352559 + ], + "libelle_d_acheminement": "STE GENEVIEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42293352559, + 49.6585101081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c874e8d8379f3f7c1390a61925d40b3f37240bed", + "fields": { + "code_commune_insee": "76584", + "nom_de_la_commune": "ST GERMAIN SUR EAULNE", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7659609183, + 1.51056712676 + ], + "libelle_d_acheminement": "ST GERMAIN SUR EAULNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51056712676, + 49.7659609183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "509158dfced5e3a166c2cd426138130637302ceb", + "fields": { + "code_commune_insee": "76597", + "nom_de_la_commune": "ST LAURENT EN CAUX", + "code_postal": "76560", + "coordonnees_gps": [ + 49.74310061, + 0.887020117235 + ], + "libelle_d_acheminement": "ST LAURENT EN CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.887020117235, + 49.74310061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d381937b33b641141a7f831dceaf41fbe66ccf59", + "fields": { + "code_commune_insee": "76600", + "nom_de_la_commune": "ST LEONARD", + "code_postal": "76400", + "coordonnees_gps": [ + 49.7321818322, + 0.341907614977 + ], + "libelle_d_acheminement": "ST LEONARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.341907614977, + 49.7321818322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fd9cde4a4c39d6350dd0d6fbc1e4e94fd7952a7", + "fields": { + "code_commune_insee": "76602", + "nom_de_la_commune": "ST MACLOU DE FOLLEVILLE", + "code_postal": "76890", + "coordonnees_gps": [ + 49.6759343416, + 1.09161187212 + ], + "libelle_d_acheminement": "ST MACLOU DE FOLLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09161187212, + 49.6759343416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b785a3dad329f7205cafc3b2d18058c68980d7f", + "fields": { + "code_commune_insee": "76608", + "nom_de_la_commune": "STE MARGUERITE SUR DUCLAIR", + "code_postal": "76480", + "coordonnees_gps": [ + 49.5122889935, + 0.821700775963 + ], + "libelle_d_acheminement": "STE MARGUERITE SUR DUCLAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.821700775963, + 49.5122889935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0247528e1b6ce127488f858d9f66619f123fadb", + "fields": { + "ligne_5": "BRACQUEMONT", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76370", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90c7ae5e4d67c2ba17eac258796c33d924b9820b", + "fields": { + "ligne_5": "BIVILLE SUR MER", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76630", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2439fb6460a77d0346f5428234ce13063c6dc49", + "fields": { + "ligne_5": "INTRAVILLE", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76630", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34b95ad6511bf566d8f5a06240083a9322493010", + "fields": { + "ligne_5": "TOURVILLE LA CHAPELLE", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76630", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b172af10c9d291b77a12e8a04a45079be5db80a", + "fields": { + "code_commune_insee": "76619", + "nom_de_la_commune": "ST MARTIN LE GAILLARD", + "code_postal": "76260", + "coordonnees_gps": [ + 49.9747722356, + 1.36740451033 + ], + "libelle_d_acheminement": "ST MARTIN LE GAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36740451033, + 49.9747722356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a62ef70cf6ae05019f64680865877f222c3b5bcc", + "fields": { + "code_commune_insee": "76626", + "nom_de_la_commune": "ST NICOLAS DE LA HAIE", + "code_postal": "76490", + "coordonnees_gps": [ + 49.5601616388, + 0.617932004482 + ], + "libelle_d_acheminement": "ST NICOLAS DE LA HAIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.617932004482, + 49.5601616388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d285afbcae00a247c7da3fed228f15711422c73", + "fields": { + "code_commune_insee": "76628", + "nom_de_la_commune": "ST OUEN DU BREUIL", + "code_postal": "76890", + "coordonnees_gps": [ + 49.6321260535, + 1.02390924063 + ], + "libelle_d_acheminement": "ST OUEN DU BREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02390924063, + 49.6321260535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b29882ed3f012bdbb725e48a473f6ea63889a88", + "fields": { + "code_commune_insee": "76630", + "nom_de_la_commune": "ST OUEN SOUS BAILLY", + "code_postal": "76630", + "coordonnees_gps": [ + 49.9029517365, + 1.30095112624 + ], + "libelle_d_acheminement": "ST OUEN SOUS BAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30095112624, + 49.9029517365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ded402efe2630f85ab436e9548bc8a561ce25332", + "fields": { + "code_commune_insee": "76638", + "nom_de_la_commune": "ST PIERRE EN VAL", + "code_postal": "76260", + "coordonnees_gps": [ + 50.0107632796, + 1.43978370706 + ], + "libelle_d_acheminement": "ST PIERRE EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43978370706, + 50.0107632796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e43c154647b3a5d0b1b1492063cf07ffafde67a5", + "fields": { + "code_commune_insee": "76648", + "nom_de_la_commune": "ST SAENS", + "code_postal": "76680", + "coordonnees_gps": [ + 49.6745670639, + 1.27720644287 + ], + "libelle_d_acheminement": "ST SAENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27720644287, + 49.6745670639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "228f7d201456d834c3fac50f392de08b141cf415", + "fields": { + "code_commune_insee": "76658", + "nom_de_la_commune": "ST VINCENT CRAMESNIL", + "code_postal": "76430", + "coordonnees_gps": [ + 49.5089339336, + 0.359848659438 + ], + "libelle_d_acheminement": "ST VINCENT CRAMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.359848659438, + 49.5089339336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e05669f028323c0ffbe0519e9e32e1de783c5b10", + "fields": { + "ligne_5": "LES GRANDES DALLES", + "code_commune_insee": "76663", + "libelle_d_acheminement": "SASSETOT LE MAUCONDUIT", + "code_postal": "76540", + "nom_de_la_commune": "SASSETOT LE MAUCONDUIT", + "coordonnees_gps": [ + 49.7993640965, + 0.528771172239 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.528771172239, + 49.7993640965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4d360a037a939d1b5fec1ac7498eff4769c8537", + "fields": { + "ligne_5": "LES PETITES DALLES", + "code_commune_insee": "76663", + "libelle_d_acheminement": "SASSETOT LE MAUCONDUIT", + "code_postal": "76540", + "nom_de_la_commune": "SASSETOT LE MAUCONDUIT", + "coordonnees_gps": [ + 49.7993640965, + 0.528771172239 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.528771172239, + 49.7993640965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90c6d475e0daebd789f74043d3d255954d4f5bc9", + "fields": { + "code_commune_insee": "76666", + "nom_de_la_commune": "SAUMONT LA POTERIE", + "code_postal": "76440", + "coordonnees_gps": [ + 49.5773305007, + 1.61490948438 + ], + "libelle_d_acheminement": "SAUMONT LA POTERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61490948438, + 49.5773305007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b8a049a4b9405ab5a7f7b145c63a665fba59b01", + "fields": { + "code_commune_insee": "76667", + "nom_de_la_commune": "SAUQUEVILLE", + "code_postal": "76550", + "coordonnees_gps": [ + 49.8482791922, + 1.05950261168 + ], + "libelle_d_acheminement": "SAUQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05950261168, + 49.8482791922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e019a233a51745976bb0c6b83dad4f47eba52cc", + "fields": { + "code_commune_insee": "76671", + "nom_de_la_commune": "SEPT MEULES", + "code_postal": "76260", + "coordonnees_gps": [ + 49.9467142291, + 1.41986298545 + ], + "libelle_d_acheminement": "SEPT MEULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41986298545, + 49.9467142291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cfa5d6eb8b7bc8f75078123aa36b2a90713872a", + "fields": { + "code_commune_insee": "76686", + "nom_de_la_commune": "THEUVILLE AUX MAILLOTS", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7617261157, + 0.546067666828 + ], + "libelle_d_acheminement": "THEUVILLE AUX MAILLOTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.546067666828, + 49.7617261157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55cdfd8ac4afacf92767c67380c7269e1269ddf1", + "fields": { + "code_commune_insee": "76690", + "nom_de_la_commune": "THIL MANNEVILLE", + "code_postal": "76730", + "coordonnees_gps": [ + 49.8398223371, + 0.995926540193 + ], + "libelle_d_acheminement": "THIL MANNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.995926540193, + 49.8398223371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c3909827f30c4ec0a99229d977c0228a594e993", + "fields": { + "code_commune_insee": "76706", + "nom_de_la_commune": "TOURVILLE LES IFS", + "code_postal": "76400", + "coordonnees_gps": [ + 49.7120375764, + 0.399997077372 + ], + "libelle_d_acheminement": "TOURVILLE LES IFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.399997077372, + 49.7120375764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9e05184ac816aac34c2da68edb0633b533e1592", + "fields": { + "code_commune_insee": "76711", + "nom_de_la_commune": "LE TREPORT", + "code_postal": "76470", + "coordonnees_gps": [ + 50.053376282, + 1.372617602 + ], + "libelle_d_acheminement": "LE TREPORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.372617602, + 50.053376282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1624075cad8cc70579c1dd7dcd1cdeb885272687", + "fields": { + "code_commune_insee": "76718", + "nom_de_la_commune": "VALLIQUERVILLE", + "code_postal": "76190", + "coordonnees_gps": [ + 49.6169921785, + 0.710791599011 + ], + "libelle_d_acheminement": "VALLIQUERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.710791599011, + 49.6169921785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bddbfa4d1b936591dae49ae6a98c0e48c4c62685", + "fields": { + "code_commune_insee": "76728", + "nom_de_la_commune": "LA VAUPALIERE", + "code_postal": "76150", + "coordonnees_gps": [ + 49.4817281, + 0.994239505882 + ], + "libelle_d_acheminement": "LA VAUPALIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.994239505882, + 49.4817281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a860453fdb88740edbe4665773d98c6a1f61341f", + "fields": { + "code_commune_insee": "76730", + "nom_de_la_commune": "VEAUVILLE LES QUELLES", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7379926109, + 0.711257382258 + ], + "libelle_d_acheminement": "VEAUVILLE LES QUELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.711257382258, + 49.7379926109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf0c8198063417dc94f8d716aa74997a4377605f", + "fields": { + "code_commune_insee": "76738", + "nom_de_la_commune": "VIEUX MANOIR", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5655818528, + 1.29487199478 + ], + "libelle_d_acheminement": "VIEUX MANOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29487199478, + 49.5655818528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61f2932785e0db0c443be770bc84e1a88eb78f2b", + "fields": { + "code_commune_insee": "76739", + "nom_de_la_commune": "VIEUX ROUEN SUR BRESLE", + "code_postal": "76390", + "coordonnees_gps": [ + 49.8321187176, + 1.70738128107 + ], + "libelle_d_acheminement": "VIEUX ROUEN SUR BRESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70738128107, + 49.8321187176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "270e2c3306d3ef1681ec5131092ad77585b965a1", + "fields": { + "code_commune_insee": "76752", + "nom_de_la_commune": "YERVILLE", + "code_postal": "76760", + "coordonnees_gps": [ + 49.6715515779, + 0.887001008089 + ], + "libelle_d_acheminement": "YERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.887001008089, + 49.6715515779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc40403c7542414e23f9a24a7cb4c295cee1ef0b", + "fields": { + "code_commune_insee": "76759", + "nom_de_la_commune": "YVILLE SUR SEINE", + "code_postal": "76530", + "coordonnees_gps": [ + 49.4126349869, + 0.882826992973 + ], + "libelle_d_acheminement": "YVILLE SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.882826992973, + 49.4126349869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17d777aa03c86a94844a91e65bbd2a27e679a309", + "fields": { + "code_commune_insee": "77009", + "nom_de_la_commune": "ARVILLE", + "code_postal": "77890", + "coordonnees_gps": [ + 48.1812755865, + 2.55657978 + ], + "libelle_d_acheminement": "ARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55657978, + 48.1812755865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb0d2fbc0cf38039129b7e16d4d9a912b9f836c0", + "fields": { + "code_commune_insee": "77010", + "nom_de_la_commune": "AUBEPIERRE OZOUER LE REPOS", + "code_postal": "77720", + "coordonnees_gps": [ + 48.620275445, + 2.90287523402 + ], + "libelle_d_acheminement": "AUBEPIERRE OZOUER LE REPOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90287523402, + 48.620275445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64a31e912d46d1af1594a9d6811ac72cf7e58858", + "fields": { + "code_commune_insee": "77015", + "nom_de_la_commune": "BABY", + "code_postal": "77480", + "coordonnees_gps": [ + 48.3894152157, + 3.3448043159 + ], + "libelle_d_acheminement": "BABY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3448043159, + 48.3894152157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1443709025906a83c0f4c12fb9643ce654cd212", + "fields": { + "code_commune_insee": "77018", + "nom_de_la_commune": "BAILLY ROMAINVILLIERS", + "code_postal": "77700", + "coordonnees_gps": [ + 48.8434284926, + 2.81665828126 + ], + "libelle_d_acheminement": "BAILLY ROMAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81665828126, + 48.8434284926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddf9ccc491f84ecafea81d9f0a1c7e4e42a3aa97", + "fields": { + "code_commune_insee": "77026", + "nom_de_la_commune": "BEAUCHERY ST MARTIN", + "code_postal": "77560", + "coordonnees_gps": [ + 48.6022245541, + 3.42081185296 + ], + "libelle_d_acheminement": "BEAUCHERY ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42081185296, + 48.6022245541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f41de7917f3344eebda2b80f6a2984a16f4f903c", + "fields": { + "code_commune_insee": "77034", + "nom_de_la_commune": "BLANDY", + "code_postal": "77115", + "coordonnees_gps": [ + 48.5601991238, + 2.79501080828 + ], + "libelle_d_acheminement": "BLANDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79501080828, + 48.5601991238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b90332bb2d637d7273717357c99f74127a9c77e", + "fields": { + "code_commune_insee": "77041", + "nom_de_la_commune": "BOISSY AUX CAILLES", + "code_postal": "77760", + "coordonnees_gps": [ + 48.3118839635, + 2.49277036234 + ], + "libelle_d_acheminement": "BOISSY AUX CAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49277036234, + 48.3118839635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bda9170da66a746eaef7226525bcca6e01ba35c6", + "fields": { + "code_commune_insee": "77047", + "nom_de_la_commune": "BOULEURS", + "code_postal": "77580", + "coordonnees_gps": [ + 48.879071424, + 2.90787920973 + ], + "libelle_d_acheminement": "BOULEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90787920973, + 48.879071424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4768d37aa04cdc9b980ccced5cf20fc01450f76c", + "fields": { + "code_commune_insee": "77066", + "nom_de_la_commune": "CERNEUX", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7047767033, + 3.34596512996 + ], + "libelle_d_acheminement": "CERNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34596512996, + 48.7047767033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4efae9313a48edc769e2ed275fa1b0dd6fa7ddda", + "fields": { + "code_commune_insee": "77069", + "nom_de_la_commune": "CHAILLY EN BIERE", + "code_postal": "77930", + "coordonnees_gps": [ + 48.4697661737, + 2.61164875379 + ], + "libelle_d_acheminement": "CHAILLY EN BIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61164875379, + 48.4697661737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b852f2b0d40ea5a40b030c6c485198e95c05fc5b", + "fields": { + "code_commune_insee": "77081", + "nom_de_la_commune": "CHAMPDEUIL", + "code_postal": "77390", + "coordonnees_gps": [ + 48.6222116922, + 2.73123167134 + ], + "libelle_d_acheminement": "CHAMPDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73123167134, + 48.6222116922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08222690cfeb88c977a551be78c9873384ba98e1", + "fields": { + "code_commune_insee": "77086", + "nom_de_la_commune": "LA CHAPELLE GAUTHIER", + "code_postal": "77720", + "coordonnees_gps": [ + 48.5306744733, + 2.86286787769 + ], + "libelle_d_acheminement": "LA CHAPELLE GAUTHIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86286787769, + 48.5306744733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "880fc51b2580450b634308fd2596e998d8b7de58", + "fields": { + "code_commune_insee": "77088", + "nom_de_la_commune": "LA CHAPELLE LA REINE", + "code_postal": "77760", + "coordonnees_gps": [ + 48.3159462288, + 2.56669707188 + ], + "libelle_d_acheminement": "LA CHAPELLE LA REINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56669707188, + 48.3159462288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff9ad96cdeb1cfb939af33b3b621425c492d68a6", + "fields": { + "code_commune_insee": "77095", + "nom_de_la_commune": "CHARNY", + "code_postal": "77410", + "coordonnees_gps": [ + 48.9697818712, + 2.7560033506 + ], + "libelle_d_acheminement": "CHARNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7560033506, + 48.9697818712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a42c4565eaf5c68c07db7c893867b9d5b809e72", + "fields": { + "code_commune_insee": "77100", + "nom_de_la_commune": "LE CHATELET EN BRIE", + "code_postal": "77820", + "coordonnees_gps": [ + 48.5016068676, + 2.80339101971 + ], + "libelle_d_acheminement": "LE CHATELET EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80339101971, + 48.5016068676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "561e1841580856fe5aa2224e55b5c135d55b5ff9", + "fields": { + "code_commune_insee": "77101", + "nom_de_la_commune": "CHATENAY SUR SEINE", + "code_postal": "77126", + "coordonnees_gps": [ + 48.4199405158, + 3.09453028466 + ], + "libelle_d_acheminement": "CHATENAY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09453028466, + 48.4199405158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dc6f9b864ef282ed795baa7e4da9cae5a5fb36c", + "fields": { + "ligne_5": "CHENOISE", + "code_commune_insee": "77109", + "libelle_d_acheminement": "CHENOISE CUCHARMOY", + "code_postal": "77160", + "nom_de_la_commune": "CHENOISE CUCHARMOY", + "coordonnees_gps": [ + 48.6221074853, + 3.19218767904 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19218767904, + 48.6221074853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aca7e4ae56813718139aa401ed01b8519c3be180", + "fields": { + "ligne_5": "COSSIGNY", + "code_commune_insee": "77114", + "libelle_d_acheminement": "CHEVRY COSSIGNY", + "code_postal": "77173", + "nom_de_la_commune": "CHEVRY COSSIGNY", + "coordonnees_gps": [ + 48.7228150234, + 2.67680477981 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67680477981, + 48.7228150234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dd34c49f117918e30fd82e30e43cf990f7fa924", + "fields": { + "code_commune_insee": "77126", + "nom_de_la_commune": "CONGIS SUR THEROUANNE", + "code_postal": "77440", + "coordonnees_gps": [ + 49.0125341698, + 2.97847858444 + ], + "libelle_d_acheminement": "CONGIS SUR THEROUANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97847858444, + 49.0125341698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d25f75849a4eb7d2d8162db091ca8620b9a2a87", + "fields": { + "code_commune_insee": "77127", + "nom_de_la_commune": "COUBERT", + "code_postal": "77170", + "coordonnees_gps": [ + 48.6782857887, + 2.70838590882 + ], + "libelle_d_acheminement": "COUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70838590882, + 48.6782857887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f8cf32bf6c5a95da291e2f942a112010063f9bc", + "fields": { + "code_commune_insee": "77171", + "nom_de_la_commune": "ESBLY", + "code_postal": "77450", + "coordonnees_gps": [ + 48.9005636441, + 2.81238845063 + ], + "libelle_d_acheminement": "ESBLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81238845063, + 48.9005636441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c35080d0f11e475be18f00e8732ee0a4e9f2e730", + "fields": { + "code_commune_insee": "77173", + "nom_de_la_commune": "ETREPILLY", + "code_postal": "77139", + "coordonnees_gps": [ + 49.0420868725, + 2.93051906568 + ], + "libelle_d_acheminement": "ETREPILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93051906568, + 49.0420868725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ead695ed33d98b6468cc560c4d20ea8972ee460", + "fields": { + "code_commune_insee": "77175", + "nom_de_la_commune": "EVRY GREGY SUR YERRE", + "code_postal": "77166", + "coordonnees_gps": [ + 48.6536042911, + 2.63969411828 + ], + "libelle_d_acheminement": "EVRY GREGY SUR YERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63969411828, + 48.6536042911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9de446d2045a4af2d4d33f31d57267d8f57fda5f", + "fields": { + "code_commune_insee": "77188", + "nom_de_la_commune": "FONTAINE LE PORT", + "code_postal": "77590", + "coordonnees_gps": [ + 48.4842448988, + 2.76706354211 + ], + "libelle_d_acheminement": "FONTAINE LE PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76706354211, + 48.4842448988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54d42a2438a221e3abfebcc9bbc191d7841a05e9", + "fields": { + "code_commune_insee": "77195", + "nom_de_la_commune": "FOUJU", + "code_postal": "77390", + "coordonnees_gps": [ + 48.5874212672, + 2.76525600537 + ], + "libelle_d_acheminement": "FOUJU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76525600537, + 48.5874212672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4994c2f4199b41dde48f7049ade8ffa3a48a4c08", + "fields": { + "code_commune_insee": "77203", + "nom_de_la_commune": "GERMIGNY L EVEQUE", + "code_postal": "77910", + "coordonnees_gps": [ + 48.9859507813, + 2.95833193991 + ], + "libelle_d_acheminement": "GERMIGNY L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95833193991, + 48.9859507813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4c1abef581c2fa3be0d39aa4ceebc3015d0359b", + "fields": { + "ligne_5": "BAILLY CARROIS", + "code_commune_insee": "77211", + "libelle_d_acheminement": "GRANDPUITS BAILLY CARROIS", + "code_postal": "77720", + "nom_de_la_commune": "GRANDPUITS BAILLY CARROIS", + "coordonnees_gps": [ + 48.5823205697, + 2.97582475865 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97582475865, + 48.5823205697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c557c040f87b23e4222354f01b0fed349ab2916c", + "fields": { + "code_commune_insee": "77212", + "nom_de_la_commune": "GRAVON", + "code_postal": "77118", + "coordonnees_gps": [ + 48.3882980468, + 3.12492603624 + ], + "libelle_d_acheminement": "GRAVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12492603624, + 48.3882980468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7d17ed2ec9d61694124dc9f4d769193d6fedee1", + "fields": { + "code_commune_insee": "77226", + "nom_de_la_commune": "HERICY", + "code_postal": "77850", + "coordonnees_gps": [ + 48.4418336444, + 2.7894248816 + ], + "libelle_d_acheminement": "HERICY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7894248816, + 48.4418336444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab04102213daf313dcb649b1e8afa5946b73959b", + "fields": { + "code_commune_insee": "77227", + "nom_de_la_commune": "HERME", + "code_postal": "77114", + "coordonnees_gps": [ + 48.4860963164, + 3.34599463077 + ], + "libelle_d_acheminement": "HERME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34599463077, + 48.4860963164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f5fcbec033bcb620b7513e9ad8f14105f8445e7", + "fields": { + "code_commune_insee": "77237", + "nom_de_la_commune": "JOSSIGNY", + "code_postal": "77600", + "coordonnees_gps": [ + 48.8311007596, + 2.76323402723 + ], + "libelle_d_acheminement": "JOSSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76323402723, + 48.8311007596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee250eea8178c4e6ed40a7461b829310e73ed2e7", + "fields": { + "code_commune_insee": "77240", + "nom_de_la_commune": "JOUY SUR MORIN", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7955034518, + 3.27252320756 + ], + "libelle_d_acheminement": "JOUY SUR MORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27252320756, + 48.7955034518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42fe3589f0a0a27986e4061cfd3ce04cdbd51cc1", + "fields": { + "code_commune_insee": "77243", + "nom_de_la_commune": "LAGNY SUR MARNE", + "code_postal": "77400", + "coordonnees_gps": [ + 48.8730701858, + 2.70978081313 + ], + "libelle_d_acheminement": "LAGNY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70978081313, + 48.8730701858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "227f98996c690949a5a3690665e572b1c3ab57bb", + "fields": { + "code_commune_insee": "77254", + "nom_de_la_commune": "LIVERDY EN BRIE", + "code_postal": "77220", + "coordonnees_gps": [ + 48.6956850464, + 2.78032213187 + ], + "libelle_d_acheminement": "LIVERDY EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78032213187, + 48.6956850464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "481536ead0a4ca94ecf7aa456f92e8853bc2167e", + "fields": { + "code_commune_insee": "77259", + "nom_de_la_commune": "LONGPERRIER", + "code_postal": "77230", + "coordonnees_gps": [ + 49.0509695359, + 2.65542471026 + ], + "libelle_d_acheminement": "LONGPERRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65542471026, + 49.0509695359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "895ae0735723175a6ab541bee08c9f53d9821ef9", + "fields": { + "code_commune_insee": "77267", + "nom_de_la_commune": "LA MADELEINE SUR LOING", + "code_postal": "77570", + "coordonnees_gps": [ + 48.2051069149, + 2.70184813969 + ], + "libelle_d_acheminement": "LA MADELEINE SUR LOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70184813969, + 48.2051069149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0428ea9a8b470ea96bd1f9faabe0cba779690cf5", + "fields": { + "code_commune_insee": "77278", + "nom_de_la_commune": "MAROLLES EN BRIE", + "code_postal": "77120", + "coordonnees_gps": [ + 48.7741847386, + 3.16145494015 + ], + "libelle_d_acheminement": "MAROLLES EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16145494015, + 48.7741847386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "117b3f2c91b88c0cf68df870e6ddfda581979038", + "fields": { + "code_commune_insee": "77279", + "nom_de_la_commune": "MAROLLES SUR SEINE", + "code_postal": "77130", + "coordonnees_gps": [ + 48.3838863955, + 3.03202165862 + ], + "libelle_d_acheminement": "MAROLLES SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03202165862, + 48.3838863955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "763d71bb37c154f8036aa65844b7ca7d56217998", + "fields": { + "code_commune_insee": "77283", + "nom_de_la_commune": "MAY EN MULTIEN", + "code_postal": "77145", + "coordonnees_gps": [ + 49.0699868201, + 3.02518523427 + ], + "libelle_d_acheminement": "MAY EN MULTIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02518523427, + 49.0699868201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7adb55bc2c0d57e51fa9adcd3c4b2ea087c828e", + "fields": { + "code_commune_insee": "77292", + "nom_de_la_commune": "MESSY", + "code_postal": "77410", + "coordonnees_gps": [ + 48.9671202326, + 2.70115983516 + ], + "libelle_d_acheminement": "MESSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70115983516, + 48.9671202326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f16c8b298f75b0e9f0d7019af04d8768c91bdf0", + "fields": { + "code_commune_insee": "77293", + "nom_de_la_commune": "MISY SUR YONNE", + "code_postal": "77130", + "coordonnees_gps": [ + 48.3656144275, + 3.0952436577 + ], + "libelle_d_acheminement": "MISY SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0952436577, + 48.3656144275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39f04fd84e748fba582b5d5bb0860123437a446b", + "fields": { + "code_commune_insee": "77295", + "nom_de_la_commune": "MOISENAY", + "code_postal": "77950", + "coordonnees_gps": [ + 48.5645621495, + 2.74111082771 + ], + "libelle_d_acheminement": "MOISENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74111082771, + 48.5645621495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa3871b73f8c55873b321a0d150eefdf2224e794", + "fields": { + "code_commune_insee": "77302", + "nom_de_la_commune": "MONTCOURT FROMONVILLE", + "code_postal": "77140", + "coordonnees_gps": [ + 48.2991784842, + 2.71237772012 + ], + "libelle_d_acheminement": "MONTCOURT FROMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71237772012, + 48.2991784842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8905d84111feae1d18ce7f14725f1f2f5a6fdf0", + "fields": { + "code_commune_insee": "77309", + "nom_de_la_commune": "MONTHYON", + "code_postal": "77122", + "coordonnees_gps": [ + 49.0101085628, + 2.83291898468 + ], + "libelle_d_acheminement": "MONTHYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83291898468, + 49.0101085628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80b8ca11f7256eabc220014d603f785dbfc3f408", + "fields": { + "code_commune_insee": "77310", + "nom_de_la_commune": "MONTIGNY LE GUESDIER", + "code_postal": "77480", + "coordonnees_gps": [ + 48.3812410409, + 3.24951033168 + ], + "libelle_d_acheminement": "MONTIGNY LE GUESDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24951033168, + 48.3812410409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66f35f9df066d54acdf3ec5d937358f8e71b77ba", + "fields": { + "code_commune_insee": "77311", + "nom_de_la_commune": "MONTIGNY LENCOUP", + "code_postal": "77520", + "coordonnees_gps": [ + 48.4543482078, + 3.05281640962 + ], + "libelle_d_acheminement": "MONTIGNY LENCOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05281640962, + 48.4543482078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20c6eb6cacab37e415b58ce606a137dba4a7b3f8", + "fields": { + "code_commune_insee": "77315", + "nom_de_la_commune": "MONTRY", + "code_postal": "77450", + "coordonnees_gps": [ + 48.8859315574, + 2.82319777839 + ], + "libelle_d_acheminement": "MONTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82319777839, + 48.8859315574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d60710357102d1bf3e41599e33f46eddc7f6b151", + "fields": { + "ligne_5": "ECUELLES", + "code_commune_insee": "77316", + "libelle_d_acheminement": "MORET LOING ET ORVANNE", + "code_postal": "77250", + "nom_de_la_commune": "MORET LOING ET ORVANNE", + "coordonnees_gps": [ + 48.365092921, + 2.81172585849 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81172585849, + 48.365092921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9020e92a1bc972bc9305d071e583c9b6f9d068c", + "fields": { + "code_commune_insee": "77321", + "nom_de_la_commune": "MOUSSEAUX LES BRAY", + "code_postal": "77480", + "coordonnees_gps": [ + 48.3959388077, + 3.22954318005 + ], + "libelle_d_acheminement": "MOUSSEAUX LES BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22954318005, + 48.3959388077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ac5dccd1482b2f151017a87e084e19683461ec2", + "fields": { + "code_commune_insee": "77326", + "nom_de_la_commune": "NANDY", + "code_postal": "77176", + "coordonnees_gps": [ + 48.5821287279, + 2.54782852721 + ], + "libelle_d_acheminement": "NANDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54782852721, + 48.5821287279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87c7d40c97f91dad78a75616374abd247fa6f8ff", + "fields": { + "ligne_5": "NEUFMONTIERS LES MEAUX", + "code_commune_insee": "77335", + "libelle_d_acheminement": "CHAUCONIN NEUFMONTIERS", + "code_postal": "77124", + "nom_de_la_commune": "CHAUCONIN NEUFMONTIERS", + "coordonnees_gps": [ + 48.9719332783, + 2.83158634864 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83158634864, + 48.9719332783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6caca0cd47cec605e44468ad8cf2f24b30750754", + "fields": { + "code_commune_insee": "77338", + "nom_de_la_commune": "NOISY RUDIGNON", + "code_postal": "77940", + "coordonnees_gps": [ + 48.3364793453, + 2.93408964722 + ], + "libelle_d_acheminement": "NOISY RUDIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93408964722, + 48.3364793453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5764c7a7d6fa20e2085ce5a3604ab19ba1a82a3", + "fields": { + "code_commune_insee": "77342", + "nom_de_la_commune": "OBSONVILLE", + "code_postal": "77890", + "coordonnees_gps": [ + 48.2165551692, + 2.56864950435 + ], + "libelle_d_acheminement": "OBSONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56864950435, + 48.2165551692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b10630ad46353cd224cd0ff52248cbd14b2d83fd", + "fields": { + "code_commune_insee": "77347", + "nom_de_la_commune": "LES ORMES SUR VOULZIE", + "code_postal": "77134", + "coordonnees_gps": [ + 48.4595788684, + 3.22503214094 + ], + "libelle_d_acheminement": "LES ORMES SUR VOULZIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22503214094, + 48.4595788684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "644eb88b4062552f4718c98a4f832172c0f09d32", + "fields": { + "code_commune_insee": "77353", + "nom_de_la_commune": "PALEY", + "code_postal": "77710", + "coordonnees_gps": [ + 48.2409902344, + 2.85393444453 + ], + "libelle_d_acheminement": "PALEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85393444453, + 48.2409902344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bd58f902c4e9d2134233aaef91422909404ac41", + "fields": { + "code_commune_insee": "77358", + "nom_de_la_commune": "PENCHARD", + "code_postal": "77124", + "coordonnees_gps": [ + 48.9907877063, + 2.85773717283 + ], + "libelle_d_acheminement": "PENCHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85773717283, + 48.9907877063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1991b8fc10a7de2fb87020cba134110dc8d1f03", + "fields": { + "code_commune_insee": "77364", + "nom_de_la_commune": "LE PLESSIS AUX BOIS", + "code_postal": "77165", + "coordonnees_gps": [ + 49.0037760261, + 2.76764045922 + ], + "libelle_d_acheminement": "LE PLESSIS AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76764045922, + 49.0037760261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "398570b302f07197a5fb687defb6128c59a5179e", + "fields": { + "code_commune_insee": "77372", + "nom_de_la_commune": "POMPONNE", + "code_postal": "77400", + "coordonnees_gps": [ + 48.8867221487, + 2.67487662086 + ], + "libelle_d_acheminement": "POMPONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67487662086, + 48.8867221487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2c330b605ade39c6e60e0025a8e2b17d0df5513", + "fields": { + "ligne_5": "LE PAVE DE PONTAULT", + "code_commune_insee": "77373", + "libelle_d_acheminement": "PONTAULT COMBAULT", + "code_postal": "77340", + "nom_de_la_commune": "PONTAULT COMBAULT", + "coordonnees_gps": [ + 48.7871411658, + 2.61407436985 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61407436985, + 48.7871411658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2319e08b9239cd52551917b726c22a5966d82fa2", + "fields": { + "code_commune_insee": "77383", + "nom_de_la_commune": "RAMPILLON", + "code_postal": "77370", + "coordonnees_gps": [ + 48.5410434258, + 3.07288099272 + ], + "libelle_d_acheminement": "RAMPILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07288099272, + 48.5410434258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05fec7c3246d8995521a22fbef60d5ba39bd31e0", + "fields": { + "code_commune_insee": "77390", + "nom_de_la_commune": "ROISSY EN BRIE", + "code_postal": "77680", + "coordonnees_gps": [ + 48.7900855424, + 2.66122415764 + ], + "libelle_d_acheminement": "ROISSY EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66122415764, + 48.7900855424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17df0c9bce171dc879b20630cc7d8660cc79e43c", + "fields": { + "code_commune_insee": "77398", + "nom_de_la_commune": "SABLONNIERES", + "code_postal": "77510", + "coordonnees_gps": [ + 48.8758526374, + 3.29342847866 + ], + "libelle_d_acheminement": "SABLONNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29342847866, + 48.8758526374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08b3868b64fbbe4da72ffecced73508c4f41b2e3", + "fields": { + "code_commune_insee": "77406", + "nom_de_la_commune": "ST DENIS LES REBAIS", + "code_postal": "77510", + "coordonnees_gps": [ + 48.845087486, + 3.19932466379 + ], + "libelle_d_acheminement": "ST DENIS LES REBAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19932466379, + 48.845087486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a7d577298427cb1cb880c391c402765ae178633", + "fields": { + "code_commune_insee": "77409", + "nom_de_la_commune": "ST GERMAIN LAVAL", + "code_postal": "77130", + "coordonnees_gps": [ + 48.4089652816, + 2.99481722359 + ], + "libelle_d_acheminement": "ST GERMAIN LAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99481722359, + 48.4089652816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37d1a6620250a050321f6cb76b75ca0429eb6475", + "fields": { + "code_commune_insee": "77420", + "nom_de_la_commune": "ST MARD", + "code_postal": "77230", + "coordonnees_gps": [ + 49.0387495499, + 2.69702650217 + ], + "libelle_d_acheminement": "ST MARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69702650217, + 49.0387495499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e42c6ad6c4709db4331ea5208220c508afc06de", + "fields": { + "code_commune_insee": "77424", + "nom_de_la_commune": "ST MARTIN DU BOSCHET", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7323588994, + 3.42880146544 + ], + "libelle_d_acheminement": "ST MARTIN DU BOSCHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42880146544, + 48.7323588994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "467338335d142eea2cd5a568f4ec734431fcb835", + "fields": { + "code_commune_insee": "77426", + "nom_de_la_commune": "ST MERY", + "code_postal": "77720", + "coordonnees_gps": [ + 48.570308165, + 2.83791524459 + ], + "libelle_d_acheminement": "ST MERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83791524459, + 48.570308165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e4c459886dcfaddd7fd9bc5c0ed7cd6cc954a49", + "fields": { + "ligne_5": "SAINTS", + "code_commune_insee": "77433", + "libelle_d_acheminement": "BEAUTHEIL SAINTS", + "code_postal": "77120", + "nom_de_la_commune": "BEAUTHEIL SAINTS", + "coordonnees_gps": [ + 48.7643724711, + 3.05922570921 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05922570921, + 48.7643724711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68b441bb4594a320dd1d6c5baf3fe542e0be9aaf", + "fields": { + "code_commune_insee": "77437", + "nom_de_la_commune": "ST SOUPPLETS", + "code_postal": "77165", + "coordonnees_gps": [ + 49.0367930626, + 2.80251354691 + ], + "libelle_d_acheminement": "ST SOUPPLETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80251354691, + 49.0367930626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9533fc44a454abd8970457575e8c83ea1be3d8e", + "fields": { + "code_commune_insee": "77441", + "nom_de_la_commune": "SAMOIS SUR SEINE", + "code_postal": "77920", + "coordonnees_gps": [ + 48.4550515717, + 2.75291155262 + ], + "libelle_d_acheminement": "SAMOIS SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75291155262, + 48.4550515717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "174737bbb305783721fb12bd58e09f96b5e1dcda", + "fields": { + "code_commune_insee": "77444", + "nom_de_la_commune": "SANCY LES PROVINS", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7095987707, + 3.39288392593 + ], + "libelle_d_acheminement": "SANCY LES PROVINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39288392593, + 48.7095987707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97b2157162fe3a81532a63ac68020696149d2526", + "fields": { + "code_commune_insee": "77446", + "nom_de_la_commune": "SAVINS", + "code_postal": "77650", + "coordonnees_gps": [ + 48.5115912505, + 3.20518344066 + ], + "libelle_d_acheminement": "SAVINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20518344066, + 48.5115912505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa5329541e501efa18845d6c9e0edb148b82577b", + "fields": { + "code_commune_insee": "77450", + "nom_de_la_commune": "SERVON", + "code_postal": "77170", + "coordonnees_gps": [ + 48.7150535859, + 2.59164264543 + ], + "libelle_d_acheminement": "SERVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59164264543, + 48.7150535859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ade9152fc1f34e79ac9952be13865b0a058cb829", + "fields": { + "code_commune_insee": "77452", + "nom_de_la_commune": "SIGY", + "code_postal": "77520", + "coordonnees_gps": [ + 48.4730612622, + 3.16363962665 + ], + "libelle_d_acheminement": "SIGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16363962665, + 48.4730612622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27059366518e6715886dddfca29e6b5b62618bb1", + "fields": { + "code_commune_insee": "77455", + "nom_de_la_commune": "SOIGNOLLES EN BRIE", + "code_postal": "77111", + "coordonnees_gps": [ + 48.645281445, + 2.70806809246 + ], + "libelle_d_acheminement": "SOIGNOLLES EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70806809246, + 48.645281445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4400021d5ab6f9cef4bf707da1bf64e569b57d9", + "fields": { + "code_commune_insee": "77456", + "nom_de_la_commune": "SOISY BOUY", + "code_postal": "77650", + "coordonnees_gps": [ + 48.5084866501, + 3.29987604926 + ], + "libelle_d_acheminement": "SOISY BOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29987604926, + 48.5084866501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec0dadf7688afcb1ace7f16130e0b1814e90d18c", + "fields": { + "code_commune_insee": "77460", + "nom_de_la_commune": "TANCROU", + "code_postal": "77440", + "coordonnees_gps": [ + 49.0038979102, + 3.07986260706 + ], + "libelle_d_acheminement": "TANCROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07986260706, + 49.0038979102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9a646941be8ae08315b269db164889f5a48bb1a", + "fields": { + "code_commune_insee": "77463", + "nom_de_la_commune": "THOMERY", + "code_postal": "77810", + "coordonnees_gps": [ + 48.4042073432, + 2.77997290314 + ], + "libelle_d_acheminement": "THOMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77997290314, + 48.4042073432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "893d8c522486514990f09ab6be058c797719e7e1", + "fields": { + "code_commune_insee": "77464", + "nom_de_la_commune": "THORIGNY SUR MARNE", + "code_postal": "77400", + "coordonnees_gps": [ + 48.8918979999, + 2.7123703432 + ], + "libelle_d_acheminement": "THORIGNY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7123703432, + 48.8918979999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db48e24e65089bedf8fe4dbfd9771236a8fa4822", + "fields": { + "code_commune_insee": "77465", + "nom_de_la_commune": "THOURY FEROTTES", + "code_postal": "77940", + "coordonnees_gps": [ + 48.2974586378, + 2.93972064778 + ], + "libelle_d_acheminement": "THOURY FEROTTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93972064778, + 48.2974586378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ee0feff92863e012942f30f12db5daa334f8320", + "fields": { + "code_commune_insee": "77472", + "nom_de_la_commune": "LA TRETOIRE", + "code_postal": "77510", + "coordonnees_gps": [ + 48.8788972003, + 3.24649489754 + ], + "libelle_d_acheminement": "LA TRETOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24649489754, + 48.8788972003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f90f98c1e0f217d704599b87ea510ff28dfc16d5", + "fields": { + "code_commune_insee": "77474", + "nom_de_la_commune": "TRILBARDOU", + "code_postal": "77450", + "coordonnees_gps": [ + 48.9487712002, + 2.80417897378 + ], + "libelle_d_acheminement": "TRILBARDOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80417897378, + 48.9487712002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76b543a117dbbf6addfa7e870768dfa9e1864454", + "fields": { + "code_commune_insee": "77476", + "nom_de_la_commune": "TROCY EN MULTIEN", + "code_postal": "77440", + "coordonnees_gps": [ + 49.04241911, + 2.96205647548 + ], + "libelle_d_acheminement": "TROCY EN MULTIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96205647548, + 49.04241911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "404ea1c1a3838697c9d04b039601233bf67351a5", + "fields": { + "code_commune_insee": "77482", + "nom_de_la_commune": "VARENNES SUR SEINE", + "code_postal": "77130", + "coordonnees_gps": [ + 48.3685393925, + 2.93052193046 + ], + "libelle_d_acheminement": "VARENNES SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93052193046, + 48.3685393925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "138299cd74d8354aaf0f8e83208abb90008ea903", + "fields": { + "code_commune_insee": "77487", + "nom_de_la_commune": "VAUX LE PENIL", + "code_postal": "77000", + "coordonnees_gps": [ + 48.5245871061, + 2.69727154378 + ], + "libelle_d_acheminement": "VAUX LE PENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69727154378, + 48.5245871061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57e1cb89e2895b05798bd664ce8bb023316169cb", + "fields": { + "code_commune_insee": "77492", + "nom_de_la_commune": "VERDELOT", + "code_postal": "77510", + "coordonnees_gps": [ + 48.8785255196, + 3.36521259688 + ], + "libelle_d_acheminement": "VERDELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36521259688, + 48.8785255196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4d348cde57afabdb2e1df784ef3f02c354fb1a6", + "fields": { + "ligne_5": "LA CELLE SUR SEINE", + "code_commune_insee": "77494", + "libelle_d_acheminement": "VERNOU LA CELLE SUR SEINE", + "code_postal": "77670", + "nom_de_la_commune": "VERNOU LA CELLE SUR SEINE", + "coordonnees_gps": [ + 48.4062374172, + 2.85382135685 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85382135685, + 48.4062374172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80ae2ed9ca345be678b5212b705ba28d72b49e44", + "fields": { + "code_commune_insee": "78015", + "nom_de_la_commune": "ANDRESY", + "code_postal": "78570", + "coordonnees_gps": [ + 48.9815454378, + 2.05025746939 + ], + "libelle_d_acheminement": "ANDRESY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05025746939, + 48.9815454378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bc5c2a95eafb66b6b837ca81119ddb35e5c0a40", + "fields": { + "ligne_5": "DENOUVAL", + "code_commune_insee": "78015", + "libelle_d_acheminement": "ANDRESY", + "code_postal": "78570", + "nom_de_la_commune": "ANDRESY", + "coordonnees_gps": [ + 48.9815454378, + 2.05025746939 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05025746939, + 48.9815454378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c22803a2d5782a7c1ccf74810b508820632c3249", + "fields": { + "code_commune_insee": "78062", + "nom_de_la_commune": "BEYNES", + "code_postal": "78650", + "coordonnees_gps": [ + 48.854444414, + 1.86989017513 + ], + "libelle_d_acheminement": "BEYNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86989017513, + 48.854444414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3208cbe853a0ee67eee71c48d7a593a3caccafb3", + "fields": { + "ligne_5": "LA MALADRERIE", + "code_commune_insee": "78062", + "libelle_d_acheminement": "BEYNES", + "code_postal": "78650", + "nom_de_la_commune": "BEYNES", + "coordonnees_gps": [ + 48.854444414, + 1.86989017513 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86989017513, + 48.854444414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb8c279e7f86bb4ebc9d201bcc16569f0b43d3f9", + "fields": { + "code_commune_insee": "78072", + "nom_de_la_commune": "BOINVILLIERS", + "code_postal": "78200", + "coordonnees_gps": [ + 48.9204900199, + 1.66289347528 + ], + "libelle_d_acheminement": "BOINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66289347528, + 48.9204900199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b73c787651ea7c642917ec09a6ec244f237996d", + "fields": { + "code_commune_insee": "78089", + "nom_de_la_commune": "BONNIERES SUR SEINE", + "code_postal": "78270", + "coordonnees_gps": [ + 49.0200145553, + 1.57058771832 + ], + "libelle_d_acheminement": "BONNIERES SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57058771832, + 49.0200145553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e434c23fbaf8c811538577771ef35c0a6694a239", + "fields": { + "code_commune_insee": "78118", + "nom_de_la_commune": "BUCHELAY", + "code_postal": "78200", + "coordonnees_gps": [ + 48.9837019552, + 1.67436909003 + ], + "libelle_d_acheminement": "BUCHELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67436909003, + 48.9837019552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b800368cb7681c4ba90d4d0e25e1c26fbf247be", + "fields": { + "code_commune_insee": "78140", + "nom_de_la_commune": "CHAPET", + "code_postal": "78130", + "coordonnees_gps": [ + 48.9681465305, + 1.9401229913 + ], + "libelle_d_acheminement": "CHAPET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9401229913, + 48.9681465305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37a32f7ebe69e8c68478c6f253dd72e74a1a9a01", + "fields": { + "code_commune_insee": "78146", + "nom_de_la_commune": "CHATOU", + "code_postal": "78400", + "coordonnees_gps": [ + 48.8965574645, + 2.15393458329 + ], + "libelle_d_acheminement": "CHATOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15393458329, + 48.8965574645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de2882565ccb71893c6699ff0f9990aff310df4f", + "fields": { + "code_commune_insee": "78152", + "nom_de_la_commune": "CHAVENAY", + "code_postal": "78450", + "coordonnees_gps": [ + 48.8483573502, + 1.98288004519 + ], + "libelle_d_acheminement": "CHAVENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98288004519, + 48.8483573502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ab80b5fd868aaa760fd0212a72ec2e21b562faf", + "fields": { + "code_commune_insee": "78172", + "nom_de_la_commune": "CONFLANS STE HONORINE", + "code_postal": "78700", + "coordonnees_gps": [ + 49.0001007823, + 2.0990719052 + ], + "libelle_d_acheminement": "CONFLANS STE HONORINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0990719052, + 49.0001007823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "397b45917d9c444c9a523357ce699c71f6132752", + "fields": { + "code_commune_insee": "78194", + "nom_de_la_commune": "DANNEMARIE", + "code_postal": "78550", + "coordonnees_gps": [ + 48.7639707435, + 1.60896965722 + ], + "libelle_d_acheminement": "DANNEMARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60896965722, + 48.7639707435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "080cbe506a834b399936c5262c64f7b098f417bb", + "fields": { + "code_commune_insee": "78202", + "nom_de_la_commune": "DROCOURT", + "code_postal": "78440", + "coordonnees_gps": [ + 49.0519623345, + 1.76822079992 + ], + "libelle_d_acheminement": "DROCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76822079992, + 49.0519623345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0cdbe9765600935e34ff1cd6c0080fb55113df7", + "fields": { + "code_commune_insee": "78206", + "nom_de_la_commune": "ECQUEVILLY", + "code_postal": "78920", + "coordonnees_gps": [ + 48.9459356042, + 1.92004051912 + ], + "libelle_d_acheminement": "ECQUEVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92004051912, + 48.9459356042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f45925444f4dc0be50d0ea42a8a87539831bcdc3", + "fields": { + "code_commune_insee": "78208", + "nom_de_la_commune": "ELANCOURT", + "code_postal": "78990", + "coordonnees_gps": [ + 48.7781596518, + 1.96049898519 + ], + "libelle_d_acheminement": "ELANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96049898519, + 48.7781596518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e15168472232fb7e281783576f6c026a66dc906", + "fields": { + "code_commune_insee": "78236", + "nom_de_la_commune": "FLEXANVILLE", + "code_postal": "78910", + "coordonnees_gps": [ + 48.8551084372, + 1.74312032703 + ], + "libelle_d_acheminement": "FLEXANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74312032703, + 48.8551084372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d14da8e1d26c15e1b5b7093e499de49368e822ae", + "fields": { + "code_commune_insee": "78255", + "nom_de_la_commune": "FRENEUSE", + "code_postal": "78840", + "coordonnees_gps": [ + 49.0495054013, + 1.61035317023 + ], + "libelle_d_acheminement": "FRENEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61035317023, + 49.0495054013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc0238ea8d5dc1d3ed4fa92429eaab6584f110aa", + "fields": { + "code_commune_insee": "78276", + "nom_de_la_commune": "GOMMECOURT", + "code_postal": "78270", + "coordonnees_gps": [ + 49.0711557318, + 1.5943070354 + ], + "libelle_d_acheminement": "GOMMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5943070354, + 49.0711557318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d1b1555a00a134b655a2af9463c5200b9bc4774", + "fields": { + "code_commune_insee": "78300", + "nom_de_la_commune": "HARGEVILLE", + "code_postal": "78790", + "coordonnees_gps": [ + 48.8952160962, + 1.74614665372 + ], + "libelle_d_acheminement": "HARGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74614665372, + 48.8952160962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "509e9c0e4f1ffe8b3c37c3eac04e6c5d722ecba5", + "fields": { + "code_commune_insee": "78305", + "nom_de_la_commune": "HERBEVILLE", + "code_postal": "78580", + "coordonnees_gps": [ + 48.9026044293, + 1.89020414118 + ], + "libelle_d_acheminement": "HERBEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89020414118, + 48.9026044293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e15d1348d8011987fb2fa5a2762d638e8fd48e2", + "fields": { + "code_commune_insee": "78311", + "nom_de_la_commune": "HOUILLES", + "code_postal": "78800", + "coordonnees_gps": [ + 48.9265781359, + 2.1874640255 + ], + "libelle_d_acheminement": "HOUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1874640255, + 48.9265781359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "558eebac2ef866733a1671d59d270ead544056a0", + "fields": { + "code_commune_insee": "78314", + "nom_de_la_commune": "ISSOU", + "code_postal": "78440", + "coordonnees_gps": [ + 48.9869955946, + 1.7891449839 + ], + "libelle_d_acheminement": "ISSOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7891449839, + 48.9869955946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1190af001937cb3f2a207845988f9488ce461e0d", + "fields": { + "ligne_5": "JEUFOSSE", + "code_commune_insee": "78320", + "libelle_d_acheminement": "NOTRE DAME DE LA MER", + "code_postal": "78270", + "nom_de_la_commune": "NOTRE DAME DE LA MER", + "coordonnees_gps": [ + 49.0353541387, + 1.53724970145 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53724970145, + 49.0353541387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2fdcc6fb33147f317b127dea1d6bad3d4f6c6b7", + "fields": { + "code_commune_insee": "78322", + "nom_de_la_commune": "JOUY EN JOSAS", + "code_postal": "78350", + "coordonnees_gps": [ + 48.7661635434, + 2.16266396041 + ], + "libelle_d_acheminement": "JOUY EN JOSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16266396041, + 48.7661635434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6421efc3c1bbb739d7c2eb489bdb74b2df448039", + "fields": { + "code_commune_insee": "78335", + "nom_de_la_commune": "LIMAY", + "code_postal": "78520", + "coordonnees_gps": [ + 48.9946438183, + 1.7398704848 + ], + "libelle_d_acheminement": "LIMAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7398704848, + 48.9946438183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9e23ed85235bef06bb0da26222cae4811e5913c", + "fields": { + "code_commune_insee": "78343", + "nom_de_la_commune": "LES LOGES EN JOSAS", + "code_postal": "78350", + "coordonnees_gps": [ + 48.7624385138, + 2.13911723694 + ], + "libelle_d_acheminement": "LES LOGES EN JOSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13911723694, + 48.7624385138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d811e5f91fe04b0639ab0198fce5d951091084b5", + "fields": { + "code_commune_insee": "78349", + "nom_de_la_commune": "LONGVILLIERS", + "code_postal": "78730", + "coordonnees_gps": [ + 48.5741940135, + 1.99920343837 + ], + "libelle_d_acheminement": "LONGVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99920343837, + 48.5741940135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34bd2a162d1f03620223500e97b6f724830525c8", + "fields": { + "code_commune_insee": "78361", + "nom_de_la_commune": "MANTES LA JOLIE", + "code_postal": "78200", + "coordonnees_gps": [ + 48.9981665392, + 1.69337806821 + ], + "libelle_d_acheminement": "MANTES LA JOLIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69337806821, + 48.9981665392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cc9357d6fe2b773a66bd7c41277f052a121ce5e", + "fields": { + "code_commune_insee": "78368", + "nom_de_la_commune": "MAREIL SUR MAULDRE", + "code_postal": "78124", + "coordonnees_gps": [ + 48.8886067884, + 1.87528129432 + ], + "libelle_d_acheminement": "MAREIL SUR MAULDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87528129432, + 48.8886067884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58fead073cc1f88bc38bb1f37f69d5c65fab1a1f", + "fields": { + "ligne_5": "THIONVILLE SUR OPTON", + "code_commune_insee": "78381", + "libelle_d_acheminement": "MAULETTE", + "code_postal": "78550", + "nom_de_la_commune": "MAULETTE", + "coordonnees_gps": [ + 48.7839119459, + 1.61644019132 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61644019132, + 48.7839119459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "493f70237613188d6944fe8136cf87151222c431", + "fields": { + "code_commune_insee": "78385", + "nom_de_la_commune": "MENERVILLE", + "code_postal": "78200", + "coordonnees_gps": [ + 48.9566835717, + 1.59610818145 + ], + "libelle_d_acheminement": "MENERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59610818145, + 48.9566835717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "782646dd603c934e18495099e0eff8e91b8bcdb2", + "fields": { + "code_commune_insee": "78391", + "nom_de_la_commune": "MERICOURT", + "code_postal": "78270", + "coordonnees_gps": [ + 49.0370419554, + 1.62393586388 + ], + "libelle_d_acheminement": "MERICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62393586388, + 49.0370419554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a6609226a701d38915caa34b9a2028fb0ac405a", + "fields": { + "ligne_5": "CARRIERES SOUS BOIS", + "code_commune_insee": "78396", + "libelle_d_acheminement": "LE MESNIL LE ROI", + "code_postal": "78600", + "nom_de_la_commune": "LE MESNIL LE ROI", + "coordonnees_gps": [ + 48.9257999518, + 2.1221732386 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1221732386, + 48.9257999518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91acc6b4bd3105d3a48c21405db54facae85568a", + "fields": { + "code_commune_insee": "78416", + "nom_de_la_commune": "MONTALET LE BOIS", + "code_postal": "78440", + "coordonnees_gps": [ + 49.0489897377, + 1.82996135013 + ], + "libelle_d_acheminement": "MONTALET LE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82996135013, + 49.0489897377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63122e12ec1c3c96e91bd347cb5656f315084708", + "fields": { + "code_commune_insee": "78423", + "nom_de_la_commune": "MONTIGNY LE BRETONNEUX", + "code_postal": "78180", + "coordonnees_gps": [ + 48.779658781, + 2.02952194549 + ], + "libelle_d_acheminement": "MONTIGNY LE BRETONNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02952194549, + 48.779658781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "117867aaf86f54c7fb25615b68becc589b7b23d3", + "fields": { + "code_commune_insee": "78451", + "nom_de_la_commune": "NEZEL", + "code_postal": "78410", + "coordonnees_gps": [ + 48.9422397324, + 1.83927892943 + ], + "libelle_d_acheminement": "NEZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83927892943, + 48.9422397324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d8ec401d53e48365ef45571e8787a23c6391c03", + "fields": { + "code_commune_insee": "78484", + "nom_de_la_commune": "PERDREAUVILLE", + "code_postal": "78200", + "coordonnees_gps": [ + 48.9704575821, + 1.61325162938 + ], + "libelle_d_acheminement": "PERDREAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61325162938, + 48.9704575821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af5c0434deb92d3ae4cb5a0a603ae502388be94a", + "fields": { + "code_commune_insee": "78506", + "nom_de_la_commune": "PRUNAY EN YVELINES", + "code_postal": "78660", + "coordonnees_gps": [ + 48.5267627187, + 1.80513972814 + ], + "libelle_d_acheminement": "PRUNAY EN YVELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80513972814, + 48.5267627187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58af809c756cff0ab8cb47cace4713650ac59b8f", + "fields": { + "code_commune_insee": "78516", + "nom_de_la_commune": "RAIZEUX", + "code_postal": "78125", + "coordonnees_gps": [ + 48.6356143673, + 1.68906925205 + ], + "libelle_d_acheminement": "RAIZEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68906925205, + 48.6356143673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3ba017c1dd91d601ce8a624487f158a59c8e2a0", + "fields": { + "code_commune_insee": "78536", + "nom_de_la_commune": "SAILLY", + "code_postal": "78440", + "coordonnees_gps": [ + 49.0430008047, + 1.79368235837 + ], + "libelle_d_acheminement": "SAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79368235837, + 49.0430008047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef494b5a4078682a8b7c4f1ee8623d5010d5afaa", + "fields": { + "code_commune_insee": "78557", + "nom_de_la_commune": "ST HILARION", + "code_postal": "78125", + "coordonnees_gps": [ + 48.6224983516, + 1.72861527853 + ], + "libelle_d_acheminement": "ST HILARION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72861527853, + 48.6224983516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7282df862ae457984104db8806f681798bc06fe0", + "fields": { + "code_commune_insee": "78561", + "nom_de_la_commune": "ST LAMBERT", + "code_postal": "78470", + "coordonnees_gps": [ + 48.7339427592, + 2.00622958047 + ], + "libelle_d_acheminement": "ST LAMBERT DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00622958047, + 48.7339427592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f0372d76a131fada16b6ced7d133c309baaca3e", + "fields": { + "code_commune_insee": "78565", + "nom_de_la_commune": "ST MARTIN DES CHAMPS", + "code_postal": "78790", + "coordonnees_gps": [ + 48.8778929255, + 1.7191676109 + ], + "libelle_d_acheminement": "ST MARTIN DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7191676109, + 48.8778929255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac8c749f98b969478645b30719087d539ce69549", + "fields": { + "ligne_5": "RHODON", + "code_commune_insee": "78575", + "libelle_d_acheminement": "ST REMY LES CHEVREUSE", + "code_postal": "78470", + "nom_de_la_commune": "ST REMY LES CHEVREUSE", + "coordonnees_gps": [ + 48.703873758, + 2.07898924956 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07898924956, + 48.703873758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c8663db0ce7ed9d5708e6a7e65fe9d64c35852d", + "fields": { + "code_commune_insee": "78605", + "nom_de_la_commune": "TACOIGNIERES", + "code_postal": "78910", + "coordonnees_gps": [ + 48.8331353956, + 1.66523067684 + ], + "libelle_d_acheminement": "TACOIGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66523067684, + 48.8331353956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9afa341a55625aef554256d5385ca90bfee4716", + "fields": { + "code_commune_insee": "78616", + "nom_de_la_commune": "THOIRY", + "code_postal": "78770", + "coordonnees_gps": [ + 48.8724624004, + 1.79780062062 + ], + "libelle_d_acheminement": "THOIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79780062062, + 48.8724624004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68e0303e4350c6bc69b2492b14ff5a45d13730e4", + "fields": { + "code_commune_insee": "78621", + "nom_de_la_commune": "TRAPPES", + "code_postal": "78190", + "coordonnees_gps": [ + 48.7750019561, + 1.99344014312 + ], + "libelle_d_acheminement": "TRAPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99344014312, + 48.7750019561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "870e51c71c46ebb574f8608b168ee8503079b3c7", + "fields": { + "code_commune_insee": "78623", + "nom_de_la_commune": "LE TREMBLAY SUR MAULDRE", + "code_postal": "78490", + "coordonnees_gps": [ + 48.7834999157, + 1.878022372 + ], + "libelle_d_acheminement": "LE TREMBLAY SUR MAULDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.878022372, + 48.7834999157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "823c80cf3769fe50e551f45714e4628686ba11dd", + "fields": { + "code_commune_insee": "78624", + "nom_de_la_commune": "TRIEL SUR SEINE", + "code_postal": "78510", + "coordonnees_gps": [ + 48.9780282513, + 2.00877051663 + ], + "libelle_d_acheminement": "TRIEL SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00877051663, + 48.9780282513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2449f861101adeecd72b7109760220c3c1fa283", + "fields": { + "ligne_5": "L HAUTIL", + "code_commune_insee": "78624", + "libelle_d_acheminement": "TRIEL SUR SEINE", + "code_postal": "78510", + "nom_de_la_commune": "TRIEL SUR SEINE", + "coordonnees_gps": [ + 48.9780282513, + 2.00877051663 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00877051663, + 48.9780282513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f4bae55cb144afd07ee3a1ab7689344501fe664", + "fields": { + "code_commune_insee": "78650", + "nom_de_la_commune": "LE VESINET", + "code_postal": "78110", + "coordonnees_gps": [ + 48.8938640591, + 2.13039312004 + ], + "libelle_d_acheminement": "LE VESINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13039312004, + 48.8938640591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f77996f16a78696a4f4cc5bb2488ebe00d993c1", + "fields": { + "code_commune_insee": "78688", + "nom_de_la_commune": "VOISINS LE BRETONNEUX", + "code_postal": "78960", + "coordonnees_gps": [ + 48.758677648, + 2.04850691768 + ], + "libelle_d_acheminement": "VOISINS LE BRETONNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04850691768, + 48.758677648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88a2885557ac17ed9cbe47680677df1db6afe913", + "fields": { + "code_commune_insee": "79001", + "nom_de_la_commune": "L ABSIE", + "code_postal": "79240", + "coordonnees_gps": [ + 46.6475867778, + -0.559273846456 + ], + "libelle_d_acheminement": "L ABSIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.559273846456, + 46.6475867778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1862a911582100f243a82ef0533167aec8b59ebe", + "fields": { + "code_commune_insee": "79003", + "nom_de_la_commune": "AIFFRES", + "code_postal": "79230", + "coordonnees_gps": [ + 46.2820504466, + -0.41429097467 + ], + "libelle_d_acheminement": "AIFFRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41429097467, + 46.2820504466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b31ced5734d881e8d30b40aa1942bef2e188f324", + "fields": { + "ligne_5": "BORCQ SUR AIRVAULT", + "code_commune_insee": "79005", + "libelle_d_acheminement": "AIRVAULT", + "code_postal": "79600", + "nom_de_la_commune": "AIRVAULT", + "coordonnees_gps": [ + 46.8329725103, + -0.135880248296 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.135880248296, + 46.8329725103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f904f29519e51d823b119becfae54d4bed223df", + "fields": { + "ligne_5": "SOULIEVRES", + "code_commune_insee": "79005", + "libelle_d_acheminement": "AIRVAULT", + "code_postal": "79600", + "nom_de_la_commune": "AIRVAULT", + "coordonnees_gps": [ + 46.8329725103, + -0.135880248296 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.135880248296, + 46.8329725103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "573d30c1123497025499f0f78e98816584968191", + "fields": { + "code_commune_insee": "79009", + "nom_de_la_commune": "AMURE", + "code_postal": "79210", + "coordonnees_gps": [ + 46.2569032806, + -0.608681235963 + ], + "libelle_d_acheminement": "AMURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.608681235963, + 46.2569032806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64802b180a4dca02866b673b6d406b2bea140963", + "fields": { + "ligne_5": "LA COUDRE", + "code_commune_insee": "79013", + "libelle_d_acheminement": "ARGENTONNAY", + "code_postal": "79150", + "nom_de_la_commune": "ARGENTONNAY", + "coordonnees_gps": [ + 46.9784261272, + -0.468875242934 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.468875242934, + 46.9784261272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52a7c514c9e32fb8858fee106c05800f45f4d02c", + "fields": { + "ligne_5": "ARGENTON L EGLISE", + "code_commune_insee": "79014", + "libelle_d_acheminement": "LORETZ D ARGENTON", + "code_postal": "79290", + "nom_de_la_commune": "LORETZ D ARGENTON", + "coordonnees_gps": [ + 47.0529717735, + -0.251510808352 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.251510808352, + 47.0529717735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3da660b115fd24097a3b0a0bfcb18635dcb5f890", + "fields": { + "code_commune_insee": "79018", + "nom_de_la_commune": "AUBIGNE", + "code_postal": "79110", + "coordonnees_gps": [ + 46.0427853144, + -0.146119185079 + ], + "libelle_d_acheminement": "AUBIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.146119185079, + 46.0427853144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "985e3278f332afa9a3e4f444810d09b8a8a63a37", + "fields": { + "ligne_5": "BEAUSSAIS", + "code_commune_insee": "79030", + "libelle_d_acheminement": "BEAUSSAIS VITRE", + "code_postal": "79370", + "nom_de_la_commune": "BEAUSSAIS VITRE", + "coordonnees_gps": [ + 46.2826295796, + -0.154592535008 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.154592535008, + 46.2826295796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f08463eade53574b437e81dc6c9c2d53ddb09c93", + "fields": { + "code_commune_insee": "79032", + "nom_de_la_commune": "BECELEUF", + "code_postal": "79160", + "coordonnees_gps": [ + 46.4795118674, + -0.509542625672 + ], + "libelle_d_acheminement": "BECELEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509542625672, + 46.4795118674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8412452328e39c092ace7e17b56d2ccafd22f834", + "fields": { + "ligne_5": "NOIRLIEU", + "code_commune_insee": "79049", + "libelle_d_acheminement": "BRESSUIRE", + "code_postal": "79300", + "nom_de_la_commune": "BRESSUIRE", + "coordonnees_gps": [ + 46.8545755683, + -0.479375922286 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479375922286, + 46.8545755683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf79b5fb4883cbf89ba63e5d347a250d1acc3e27", + "fields": { + "code_commune_insee": "79057", + "nom_de_la_commune": "BRIOUX SUR BOUTONNE", + "code_postal": "79170", + "coordonnees_gps": [ + 46.1418337503, + -0.218953610699 + ], + "libelle_d_acheminement": "BRIOUX SUR BOUTONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.218953610699, + 46.1418337503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da589e66c53fa3b1b6b791e4d5f86a89432264f2", + "fields": { + "code_commune_insee": "79060", + "nom_de_la_commune": "CAUNAY", + "code_postal": "79190", + "coordonnees_gps": [ + 46.2016740241, + 0.088702939979 + ], + "libelle_d_acheminement": "CAUNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.088702939979, + 46.2016740241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e310fcca8c6fecf10af6f26741a7a39ceb98736", + "fields": { + "ligne_5": "MONTIGNE", + "code_commune_insee": "79061", + "libelle_d_acheminement": "CELLES SUR BELLE", + "code_postal": "79370", + "nom_de_la_commune": "CELLES SUR BELLE", + "coordonnees_gps": [ + 46.2405369288, + -0.218181064771 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.218181064771, + 46.2405369288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "703449d8345949d459de2d90d90430616c5d78c0", + "fields": { + "ligne_5": "MASSAIS", + "code_commune_insee": "79063", + "libelle_d_acheminement": "VAL EN VIGNES", + "code_postal": "79150", + "nom_de_la_commune": "VAL EN VIGNES", + "coordonnees_gps": [ + 47.0601100117, + -0.36392979915 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36392979915, + 47.0601100117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b71cd0a93b3294acff917a25426e4bdc6fb565bb", + "fields": { + "ligne_5": "ST PIERRE A CHAMP", + "code_commune_insee": "79063", + "libelle_d_acheminement": "VAL EN VIGNES", + "code_postal": "79290", + "nom_de_la_commune": "VAL EN VIGNES", + "coordonnees_gps": [ + 47.0601100117, + -0.36392979915 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36392979915, + 47.0601100117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33020e89cffc3f6bb961981753c14997249a54e4", + "fields": { + "ligne_5": "SOMPT", + "code_commune_insee": "79064", + "libelle_d_acheminement": "FONTIVILLIE", + "code_postal": "79110", + "nom_de_la_commune": "FONTIVILLIE", + "coordonnees_gps": [ + 46.2032625224, + -0.0778790591165 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0778790591165, + 46.2032625224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "132a13ffb00e2d835cac1be967dce45ea78bb4b4", + "fields": { + "ligne_5": "ST DENIS", + "code_commune_insee": "79066", + "libelle_d_acheminement": "CHAMPDENIERS", + "code_postal": "79220", + "nom_de_la_commune": "CHAMPDENIERS", + "coordonnees_gps": [ + 46.48017177, + -0.38233277532 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38233277532, + 46.48017177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15f7057f047de8c03419c1151f9fbe5630bcf09e", + "fields": { + "code_commune_insee": "79074", + "nom_de_la_commune": "LA CHAPELLE POUILLOUX", + "code_postal": "79190", + "coordonnees_gps": [ + 46.1374212762, + 0.0481520171675 + ], + "libelle_d_acheminement": "LA CHAPELLE POUILLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0481520171675, + 46.1374212762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b32feff965a5faccb2ada752b48f59196fa28c25", + "fields": { + "ligne_5": "LA CHAPELLE THIREUIL", + "code_commune_insee": "79077", + "libelle_d_acheminement": "BEUGNON THIREUIL", + "code_postal": "79160", + "nom_de_la_commune": "BEUGNON THIREUIL", + "coordonnees_gps": [ + 46.5528411704, + -0.552963332142 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.552963332142, + 46.5528411704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2a80e8fe4c95fc9786a3c70a5183fb1d6805807", + "fields": { + "code_commune_insee": "79083", + "nom_de_la_commune": "CHEF BOUTONNE", + "code_postal": "79110", + "coordonnees_gps": [ + 46.1151550061, + -0.081086313145 + ], + "libelle_d_acheminement": "CHEF BOUTONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.081086313145, + 46.1151550061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1197d08a0e77f3f59196490b4478e9c3148c46c8", + "fields": { + "ligne_5": "CREZIERES", + "code_commune_insee": "79083", + "libelle_d_acheminement": "CHEF BOUTONNE", + "code_postal": "79110", + "nom_de_la_commune": "CHEF BOUTONNE", + "coordonnees_gps": [ + 46.1151550061, + -0.081086313145 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.081086313145, + 46.1151550061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c4a66274f7d84c949aa2ffa2216bb827d8e14c4", + "fields": { + "ligne_5": "TILLOU", + "code_commune_insee": "79083", + "libelle_d_acheminement": "CHEF BOUTONNE", + "code_postal": "79110", + "nom_de_la_commune": "CHEF BOUTONNE", + "coordonnees_gps": [ + 46.1151550061, + -0.081086313145 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.081086313145, + 46.1151550061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df6977239520124a36687e05db579c6bde46119c", + "fields": { + "code_commune_insee": "79086", + "nom_de_la_commune": "CHERVEUX", + "code_postal": "79410", + "coordonnees_gps": [ + 46.4212062389, + -0.353210570059 + ], + "libelle_d_acheminement": "CHERVEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.353210570059, + 46.4212062389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a689c659b7cdf50c5680ac9b94992db7708be02c", + "fields": { + "code_commune_insee": "79087", + "nom_de_la_commune": "CHEY", + "code_postal": "79120", + "coordonnees_gps": [ + 46.2935127706, + -0.049821520326 + ], + "libelle_d_acheminement": "CHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.049821520326, + 46.2935127706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35bc8502a64b8be60591b2804cdc343d10e32932", + "fields": { + "code_commune_insee": "79090", + "nom_de_la_commune": "CHIZE", + "code_postal": "79170", + "coordonnees_gps": [ + 46.1111767305, + -0.356732574606 + ], + "libelle_d_acheminement": "CHIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.356732574606, + 46.1111767305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d187b8a97f51b54b506d7cf5ac4633f064371dd5", + "fields": { + "code_commune_insee": "79094", + "nom_de_la_commune": "CLESSE", + "code_postal": "79350", + "coordonnees_gps": [ + 46.7247725873, + -0.401162719088 + ], + "libelle_d_acheminement": "CLESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.401162719088, + 46.7247725873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20bc8b8b2aa6687bd681f73d0b552b8be93d4463", + "fields": { + "code_commune_insee": "79095", + "nom_de_la_commune": "CLUSSAIS LA POMMERAIE", + "code_postal": "79190", + "coordonnees_gps": [ + 46.1862514257, + 0.0320581904981 + ], + "libelle_d_acheminement": "CLUSSAIS LA POMMERAIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0320581904981, + 46.1862514257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9a0205c221ab21a27cec0c2abc8a79397289082", + "fields": { + "code_commune_insee": "79096", + "nom_de_la_commune": "COMBRAND", + "code_postal": "79140", + "coordonnees_gps": [ + 46.8639718192, + -0.695632067582 + ], + "libelle_d_acheminement": "COMBRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.695632067582, + 46.8639718192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bfdec68329c6c31175ec35b5edf87ef9eb925ac", + "fields": { + "code_commune_insee": "79103", + "nom_de_la_commune": "COURLAY", + "code_postal": "79440", + "coordonnees_gps": [ + 46.7822684522, + -0.577979844225 + ], + "libelle_d_acheminement": "COURLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.577979844225, + 46.7822684522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e65533af2eda2707c63162424a5fe35d3908b00f", + "fields": { + "code_commune_insee": "79112", + "nom_de_la_commune": "EPANNES", + "code_postal": "79270", + "coordonnees_gps": [ + 46.2241677035, + -0.588710493017 + ], + "libelle_d_acheminement": "EPANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.588710493017, + 46.2241677035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2558e8072e05de653a2af2d0a5aeb61ea33510f1", + "fields": { + "code_commune_insee": "79114", + "nom_de_la_commune": "EXIREUIL", + "code_postal": "79400", + "coordonnees_gps": [ + 46.4537143363, + -0.177315480712 + ], + "libelle_d_acheminement": "EXIREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.177315480712, + 46.4537143363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85f176609700ab4b6f39e8df8e409c6173432a89", + "fields": { + "code_commune_insee": "79115", + "nom_de_la_commune": "EXOUDUN", + "code_postal": "79800", + "coordonnees_gps": [ + 46.3385004673, + -0.0727970199541 + ], + "libelle_d_acheminement": "EXOUDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0727970199541, + 46.3385004673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "360150caa202b04f3b146c5261da7eefb1756cae", + "fields": { + "ligne_5": "ST MARSAULT", + "code_commune_insee": "79123", + "libelle_d_acheminement": "LA FORET SUR SEVRE", + "code_postal": "79380", + "nom_de_la_commune": "LA FORET SUR SEVRE", + "coordonnees_gps": [ + 46.7587446345, + -0.648000879918 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.648000879918, + 46.7587446345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06dc7cfebc509cd8141bbb2c4a105a6a19c06a45", + "fields": { + "code_commune_insee": "79127", + "nom_de_la_commune": "LA FOYE MONJAULT", + "code_postal": "79360", + "coordonnees_gps": [ + 46.1870040122, + -0.533179423966 + ], + "libelle_d_acheminement": "LA FOYE MONJAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.533179423966, + 46.1870040122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40fdb749e4d62c8bf1d938b65f89591c0d910356", + "fields": { + "ligne_5": "HANC", + "code_commune_insee": "79140", + "libelle_d_acheminement": "VALDELAUME", + "code_postal": "79110", + "nom_de_la_commune": "VALDELAUME", + "coordonnees_gps": [ + 46.0832090401, + -0.000696246203395 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.000696246203395, + 46.0832090401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1080fcd03f66030801255f7b5dfadacbde99381", + "fields": { + "code_commune_insee": "79141", + "nom_de_la_commune": "IRAIS", + "code_postal": "79600", + "coordonnees_gps": [ + 46.8755153904, + -0.0957786406163 + ], + "libelle_d_acheminement": "IRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0957786406163, + 46.8755153904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebc388a735dfb181d7acd5579c8024948fd511ac", + "fields": { + "code_commune_insee": "79148", + "nom_de_la_commune": "LEZAY", + "code_postal": "79120", + "coordonnees_gps": [ + 46.2658473904, + -0.0196873311167 + ], + "libelle_d_acheminement": "LEZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0196873311167, + 46.2658473904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5672b765c136289e96081c8b9df3808298e436da", + "fields": { + "code_commune_insee": "79152", + "nom_de_la_commune": "LORIGNE", + "code_postal": "79190", + "coordonnees_gps": [ + 46.1065410411, + 0.069110436943 + ], + "libelle_d_acheminement": "LORIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.069110436943, + 46.1065410411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59526390b52380564e2af85ec3ba88015b608ead", + "fields": { + "code_commune_insee": "79154", + "nom_de_la_commune": "LOUBILLE", + "code_postal": "79110", + "coordonnees_gps": [ + 46.0438559656, + -0.064302714136 + ], + "libelle_d_acheminement": "LOUBILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.064302714136, + 46.0438559656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86e54ce4b8290fdfa0685ba2204d246cbb481381", + "fields": { + "code_commune_insee": "79156", + "nom_de_la_commune": "LOUIN", + "code_postal": "79600", + "coordonnees_gps": [ + 46.7830388919, + -0.207527070527 + ], + "libelle_d_acheminement": "LOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.207527070527, + 46.7830388919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd241c69e7857c344e04802d634ca2e197e366ef", + "fields": { + "code_commune_insee": "79157", + "nom_de_la_commune": "LOUZY", + "code_postal": "79100", + "coordonnees_gps": [ + 47.0176127367, + -0.180557135196 + ], + "libelle_d_acheminement": "LOUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.180557135196, + 47.0176127367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f5297117441256e38ca63e63986debbd249d582", + "fields": { + "code_commune_insee": "79159", + "nom_de_la_commune": "LUCHE THOUARSAIS", + "code_postal": "79330", + "coordonnees_gps": [ + 46.9128068822, + -0.304585380598 + ], + "libelle_d_acheminement": "LUCHE THOUARSAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.304585380598, + 46.9128068822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "325f6ab9895fe8b1e96eeb2f0e41d788476a4aea", + "fields": { + "code_commune_insee": "79162", + "nom_de_la_commune": "MAGNE", + "code_postal": "79460", + "coordonnees_gps": [ + 46.3095905952, + -0.558467673528 + ], + "libelle_d_acheminement": "MAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.558467673528, + 46.3095905952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee3fd859e8f04d587940993926e0460cb851d0cc", + "fields": { + "code_commune_insee": "79164", + "nom_de_la_commune": "MAISONNAY", + "code_postal": "79500", + "coordonnees_gps": [ + 46.1853348729, + -0.0509301728856 + ], + "libelle_d_acheminement": "MAISONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0509301728856, + 46.1853348729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57f4fdd5def2de41ef867b090f582e3a56dff613", + "fields": { + "code_commune_insee": "79166", + "nom_de_la_commune": "MARIGNY", + "code_postal": "79360", + "coordonnees_gps": [ + 46.1947992339, + -0.416618786711 + ], + "libelle_d_acheminement": "MARIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.416618786711, + 46.1947992339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf4e5c9a6579ccae0cbba9ba5ddd96013857c32f", + "fields": { + "code_commune_insee": "79170", + "nom_de_la_commune": "MAUZE SUR LE MIGNON", + "code_postal": "79210", + "coordonnees_gps": [ + 46.1920937817, + -0.644355409155 + ], + "libelle_d_acheminement": "MAUZE SUR LE MIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.644355409155, + 46.1920937817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e68b8b9386db79448139ab34e0160d5ba8679653", + "fields": { + "ligne_5": "MAZIERES SUR BERONNE", + "code_commune_insee": "79174", + "libelle_d_acheminement": "MELLE", + "code_postal": "79500", + "nom_de_la_commune": "MELLE", + "coordonnees_gps": [ + 46.2309583731, + -0.147888712984 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.147888712984, + 46.2309583731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0842326b184bfd4a6c9fb7d16dd29fa95d1fd77", + "fields": { + "ligne_5": "PUGNY", + "code_commune_insee": "79179", + "libelle_d_acheminement": "MONCOUTANT SUR SEVRE", + "code_postal": "79320", + "nom_de_la_commune": "MONCOUTANT SUR SEVRE", + "coordonnees_gps": [ + 46.7361693715, + -0.578776799054 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.578776799054, + 46.7361693715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31c64b419e7e7176b5f675aee2762ee27e615a72", + "fields": { + "code_commune_insee": "79180", + "nom_de_la_commune": "MONTALEMBERT", + "code_postal": "79190", + "coordonnees_gps": [ + 46.1021234288, + 0.170162348938 + ], + "libelle_d_acheminement": "MONTALEMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.170162348938, + 46.1021234288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "842b4f5bb0f920e1cc794ee7a1ba203b1524a3c8", + "fields": { + "code_commune_insee": "79183", + "nom_de_la_commune": "MONTRAVERS", + "code_postal": "79140", + "coordonnees_gps": [ + 46.8367681009, + -0.736426265237 + ], + "libelle_d_acheminement": "MONTRAVERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.736426265237, + 46.8367681009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fc4dd44d267621874d14a5525e251f89e8fa7c8", + "fields": { + "code_commune_insee": "79189", + "nom_de_la_commune": "NANTEUIL", + "code_postal": "79400", + "coordonnees_gps": [ + 46.4228145621, + -0.154504788508 + ], + "libelle_d_acheminement": "NANTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.154504788508, + 46.4228145621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de73a88433f0c315dd11e26a4124e4ac47854896", + "fields": { + "code_commune_insee": "79191", + "nom_de_la_commune": "NIORT", + "code_postal": "79000", + "coordonnees_gps": [ + 46.328260242, + -0.465353019369 + ], + "libelle_d_acheminement": "NIORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.465353019369, + 46.328260242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "820e2fe8e8876d9b3955e3936276588f341858f6", + "fields": { + "ligne_5": "TAIZE MAULAIS", + "code_commune_insee": "79196", + "libelle_d_acheminement": "PLAINE ET VALLEES", + "code_postal": "79100", + "nom_de_la_commune": "PLAINE ET VALLEES", + "coordonnees_gps": [ + 46.9369329202, + -0.0842351282064 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0842351282064, + 46.9369329202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "654677bf843baf16ddf580c5346f441dad1a6146", + "fields": { + "code_commune_insee": "79204", + "nom_de_la_commune": "PERIGNE", + "code_postal": "79170", + "coordonnees_gps": [ + 46.1857674388, + -0.245561860776 + ], + "libelle_d_acheminement": "PERIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.245561860776, + 46.1857674388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b314c5eeea4fb1f4d49c481a1206738700f55a9e", + "fields": { + "code_commune_insee": "79205", + "nom_de_la_commune": "PERS", + "code_postal": "79190", + "coordonnees_gps": [ + 46.2272985258, + 0.0665477663208 + ], + "libelle_d_acheminement": "PERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0665477663208, + 46.2272985258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55bdebc30d3097a1c6fdcb7ed1b85013840aab30", + "fields": { + "code_commune_insee": "79223", + "nom_de_la_commune": "PUIHARDY", + "code_postal": "79160", + "coordonnees_gps": [ + 46.5255351053, + -0.544548446285 + ], + "libelle_d_acheminement": "PUIHARDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.544548446285, + 46.5255351053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02595cc163f129b2fbb633cc4b356c778403ba1a", + "fields": { + "code_commune_insee": "79231", + "nom_de_la_commune": "ROMANS", + "code_postal": "79260", + "coordonnees_gps": [ + 46.3564424718, + -0.228510254531 + ], + "libelle_d_acheminement": "ROMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.228510254531, + 46.3564424718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54d41e6c9f1fb90410bd212f78cd21cf2cc86545", + "fields": { + "code_commune_insee": "79259", + "nom_de_la_commune": "ST JEAN DE THOUARS", + "code_postal": "79100", + "coordonnees_gps": [ + 46.9546725978, + -0.218962911821 + ], + "libelle_d_acheminement": "ST JEAN DE THOUARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.218962911821, + 46.9546725978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e035e7503fbe6007821cd7a87b37981240008cc", + "fields": { + "code_commune_insee": "79263", + "nom_de_la_commune": "ST LAURS", + "code_postal": "79160", + "coordonnees_gps": [ + 46.5276013407, + -0.580296745458 + ], + "libelle_d_acheminement": "ST LAURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.580296745458, + 46.5276013407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ae0b9a3d27e6fc58d1462d2ef2c57db47384bde", + "fields": { + "code_commune_insee": "79277", + "nom_de_la_commune": "ST MARTIN DE SANZAY", + "code_postal": "79290", + "coordonnees_gps": [ + 47.0747309996, + -0.194759847944 + ], + "libelle_d_acheminement": "ST MARTIN DE SANZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.194759847944, + 47.0747309996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c4e2951f4bd89c4bdaecd263b23f256f06cd0b0", + "fields": { + "ligne_5": "ETUSSON", + "code_commune_insee": "79280", + "libelle_d_acheminement": "ST MAURICE ETUSSON", + "code_postal": "79150", + "nom_de_la_commune": "ST MAURICE ETUSSON", + "coordonnees_gps": [ + 47.0496404823, + -0.508816707634 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.508816707634, + 47.0496404823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0fe0e0d2e85cb03afc4d84f6d669fb4866fc3df", + "fields": { + "code_commune_insee": "79281", + "nom_de_la_commune": "ST MAXIRE", + "code_postal": "79410", + "coordonnees_gps": [ + 46.3993679989, + -0.479989759702 + ], + "libelle_d_acheminement": "ST MAXIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479989759702, + 46.3993679989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "894b07a869f7b27e77949dfcd533f472ba1fe090", + "fields": { + "code_commune_insee": "79283", + "nom_de_la_commune": "STE NEOMAYE", + "code_postal": "79260", + "coordonnees_gps": [ + 46.3617084983, + -0.263692629127 + ], + "libelle_d_acheminement": "STE NEOMAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.263692629127, + 46.3617084983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c397ab46c14945256d0b29e51c279b1b061f85c0", + "fields": { + "code_commune_insee": "79295", + "nom_de_la_commune": "ST ROMANS LES MELLE", + "code_postal": "79500", + "coordonnees_gps": [ + 46.2066461108, + -0.196334503286 + ], + "libelle_d_acheminement": "ST ROMANS LES MELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.196334503286, + 46.2066461108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9601a701422186866af3a76b11a1b71e82846ac", + "fields": { + "code_commune_insee": "79302", + "nom_de_la_commune": "SAIVRES", + "code_postal": "79400", + "coordonnees_gps": [ + 46.4370891679, + -0.233108202857 + ], + "libelle_d_acheminement": "SAIVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.233108202857, + 46.4370891679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79b8bc88da2919430e184a5278a06c4bc2c1fe79", + "fields": { + "code_commune_insee": "79306", + "nom_de_la_commune": "SAURAIS", + "code_postal": "79200", + "coordonnees_gps": [ + 46.6235561265, + -0.135209285166 + ], + "libelle_d_acheminement": "SAURAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.135209285166, + 46.6235561265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3be13c369b2882b22492fa368dc4256ea6e0e98", + "fields": { + "code_commune_insee": "79310", + "nom_de_la_commune": "SECONDIGNE SUR BELLE", + "code_postal": "79170", + "coordonnees_gps": [ + 46.1625149847, + -0.314175852363 + ], + "libelle_d_acheminement": "SECONDIGNE SUR BELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.314175852363, + 46.1625149847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb3bf24b2e0a463cbc79637be05fc92916778e35", + "fields": { + "code_commune_insee": "79320", + "nom_de_la_commune": "SURIN", + "code_postal": "79220", + "coordonnees_gps": [ + 46.4686584041, + -0.46087902331 + ], + "libelle_d_acheminement": "SURIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46087902331, + 46.4686584041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7edbfa750a9802fab68e945ae273e0c3f133603d", + "fields": { + "ligne_5": "USSEAU", + "code_commune_insee": "79334", + "libelle_d_acheminement": "VAL DU MIGNON", + "code_postal": "79210", + "nom_de_la_commune": "VAL DU MIGNON", + "coordonnees_gps": [ + 46.1701185882, + -0.587199474671 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.587199474671, + 46.1701185882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34f8fdb16ab8f00289320bb6f710445b3861a52b", + "fields": { + "code_commune_insee": "79335", + "nom_de_la_commune": "VALLANS", + "code_postal": "79270", + "coordonnees_gps": [ + 46.2190224234, + -0.545587322341 + ], + "libelle_d_acheminement": "VALLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.545587322341, + 46.2190224234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01a852b2e90a97a7c0948a5a25d5c5dbde3c5cc9", + "fields": { + "code_commune_insee": "80004", + "nom_de_la_commune": "ACHEUX EN VIMEU", + "code_postal": "80210", + "coordonnees_gps": [ + 50.0660366423, + 1.67027205864 + ], + "libelle_d_acheminement": "ACHEUX EN VIMEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67027205864, + 50.0660366423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "745945091f605fa29840523e273f4a6dca552a8e", + "fields": { + "code_commune_insee": "80006", + "nom_de_la_commune": "AGENVILLERS", + "code_postal": "80150", + "coordonnees_gps": [ + 50.179281145, + 1.92367045048 + ], + "libelle_d_acheminement": "AGENVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92367045048, + 50.179281145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9d749d218e9f8546a01e8555683499554d997e5", + "fields": { + "code_commune_insee": "80010", + "nom_de_la_commune": "AILLY SUR NOYE", + "code_postal": "80250", + "coordonnees_gps": [ + 49.7466608044, + 2.34699446197 + ], + "libelle_d_acheminement": "AILLY SUR NOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34699446197, + 49.7466608044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35eba98d5a8e6cca5b41f4a93b831f5ab106688b", + "fields": { + "code_commune_insee": "80011", + "nom_de_la_commune": "AILLY SUR SOMME", + "code_postal": "80470", + "coordonnees_gps": [ + 49.9134876579, + 2.18609222746 + ], + "libelle_d_acheminement": "AILLY SUR SOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18609222746, + 49.9134876579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc22b6f49477dec9ec89d9875359f566cecadf60", + "fields": { + "code_commune_insee": "80014", + "nom_de_la_commune": "AIZECOURT LE BAS", + "code_postal": "80240", + "coordonnees_gps": [ + 49.9867768192, + 3.02909399369 + ], + "libelle_d_acheminement": "AIZECOURT LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02909399369, + 49.9867768192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e0db7a9bc591b958249cc958aa1448f502fd410", + "fields": { + "code_commune_insee": "80023", + "nom_de_la_commune": "ANDECHY", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7147246952, + 2.70662674377 + ], + "libelle_d_acheminement": "ANDECHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70662674377, + 49.7147246952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13fdec3fa487c54904fc090979d6bfd8a1568229", + "fields": { + "code_commune_insee": "80024", + "nom_de_la_commune": "ARGOEUVES", + "code_postal": "80470", + "coordonnees_gps": [ + 49.9413936849, + 2.24676238077 + ], + "libelle_d_acheminement": "ARGOEUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24676238077, + 49.9413936849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fad6cbc59c56f0152f6b972564fd95081a21467f", + "fields": { + "code_commune_insee": "80027", + "nom_de_la_commune": "ARMANCOURT", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6767593182, + 2.71293599073 + ], + "libelle_d_acheminement": "ARMANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71293599073, + 49.6767593182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3c66e4bf67305e26ff359428fa048331a2a9d5b", + "fields": { + "code_commune_insee": "80028", + "nom_de_la_commune": "ARQUEVES", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0728473755, + 2.47755633754 + ], + "libelle_d_acheminement": "ARQUEVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47755633754, + 50.0728473755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acc4bfeebf8d769fb07feb17a53d338d9a87e065", + "fields": { + "code_commune_insee": "80030", + "nom_de_la_commune": "ARRY", + "code_postal": "80120", + "coordonnees_gps": [ + 50.2821494192, + 1.72270579703 + ], + "libelle_d_acheminement": "ARRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72270579703, + 50.2821494192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca0c348d265041fc5b8f3b45cf0050c52a90ece1", + "fields": { + "code_commune_insee": "80033", + "nom_de_la_commune": "ASSEVILLERS", + "code_postal": "80200", + "coordonnees_gps": [ + 49.898435303, + 2.84165969588 + ], + "libelle_d_acheminement": "ASSEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84165969588, + 49.898435303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fd88d6c6dad25ecfa1648840e93f1cab794b7f1", + "fields": { + "code_commune_insee": "80034", + "nom_de_la_commune": "ATHIES", + "code_postal": "80200", + "coordonnees_gps": [ + 49.856991186, + 2.97748073745 + ], + "libelle_d_acheminement": "ATHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97748073745, + 49.856991186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1edc6094770336d094417b3d0fbd8e19deb1a8b7", + "fields": { + "code_commune_insee": "80047", + "nom_de_la_commune": "AVELUY", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0311586735, + 2.66043117023 + ], + "libelle_d_acheminement": "AVELUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66043117023, + 50.0311586735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12207ea0e3417e1ebad5571622f8c8be890352bf", + "fields": { + "code_commune_insee": "80048", + "nom_de_la_commune": "AVESNES CHAUSSOY", + "code_postal": "80140", + "coordonnees_gps": [ + 49.8930647455, + 1.86378410575 + ], + "libelle_d_acheminement": "AVESNES CHAUSSOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86378410575, + 49.8930647455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41c7177ca99e973c921a9f9683fdd7f5e72c9dd6", + "fields": { + "code_commune_insee": "80062", + "nom_de_la_commune": "BEAUCAMPS LE VIEUX", + "code_postal": "80430", + "coordonnees_gps": [ + 49.8435746385, + 1.77757240569 + ], + "libelle_d_acheminement": "BEAUCAMPS LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77757240569, + 49.8435746385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ffbcef819e97f4afd73b342a781293e0076660c", + "fields": { + "code_commune_insee": "80063", + "nom_de_la_commune": "BEAUCHAMPS", + "code_postal": "80770", + "coordonnees_gps": [ + 50.0192246753, + 1.52332437274 + ], + "libelle_d_acheminement": "BEAUCHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52332437274, + 50.0192246753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3090839532f2f42332c94e11e11ad9dc5ff13a56", + "fields": { + "code_commune_insee": "80070", + "nom_de_la_commune": "BEAUQUESNE", + "code_postal": "80600", + "coordonnees_gps": [ + 50.0811863069, + 2.37614485033 + ], + "libelle_d_acheminement": "BEAUQUESNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37614485033, + 50.0811863069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd54a516c03696276732ff434db29e8c613ba7f7", + "fields": { + "code_commune_insee": "80071", + "nom_de_la_commune": "BEAUVAL", + "code_postal": "80630", + "coordonnees_gps": [ + 50.1079177763, + 2.32862837789 + ], + "libelle_d_acheminement": "BEAUVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32862837789, + 50.1079177763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03f6252e1dc58de64c67b79ef6b59abc26de6f36", + "fields": { + "code_commune_insee": "80073", + "nom_de_la_commune": "BECORDEL BECOURT", + "code_postal": "80300", + "coordonnees_gps": [ + 49.9966789706, + 2.68706400892 + ], + "libelle_d_acheminement": "BECORDEL BECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68706400892, + 49.9966789706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d7a99b918f6f0872dcfa63f99b53784448b3d46", + "fields": { + "code_commune_insee": "80080", + "nom_de_la_commune": "BELLOY EN SANTERRE", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8846472208, + 2.85995670033 + ], + "libelle_d_acheminement": "BELLOY EN SANTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85995670033, + 49.8846472208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6cb0c0a99aa5bccaf27a133fe3c2c4e5ef2ee72", + "fields": { + "code_commune_insee": "80081", + "nom_de_la_commune": "BELLOY ST LEONARD", + "code_postal": "80270", + "coordonnees_gps": [ + 49.9048731038, + 1.91019659316 + ], + "libelle_d_acheminement": "BELLOY ST LEONARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91019659316, + 49.9048731038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b624a66b8fd4a66ec4295ae34b10c8414a2bf14", + "fields": { + "code_commune_insee": "80085", + "nom_de_la_commune": "BERNATRE", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1942289185, + 2.09783309423 + ], + "libelle_d_acheminement": "BERNATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09783309423, + 50.1942289185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c988495accefebeab82821ab17d86ca26e26693d", + "fields": { + "code_commune_insee": "80086", + "nom_de_la_commune": "BERNAVILLE", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1349359626, + 2.17571907159 + ], + "libelle_d_acheminement": "BERNAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17571907159, + 50.1349359626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60b0862f01ab1dc5b7339a286c3fe55905b65f81", + "fields": { + "code_commune_insee": "80092", + "nom_de_la_commune": "BERTANGLES", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9733253681, + 2.29150476832 + ], + "libelle_d_acheminement": "BERTANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29150476832, + 49.9733253681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eb6b3ef555480a2d19a2b326ece8e3982e28e76", + "fields": { + "code_commune_insee": "80095", + "nom_de_la_commune": "BERTRANCOURT", + "code_postal": "80560", + "coordonnees_gps": [ + 50.1008193458, + 2.56424991532 + ], + "libelle_d_acheminement": "BERTRANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56424991532, + 50.1008193458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d414f2193dc77169b10ba6de0daddd686b74ff4a", + "fields": { + "code_commune_insee": "80101", + "nom_de_la_commune": "BEUVRAIGNES", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6381423232, + 2.77599755384 + ], + "libelle_d_acheminement": "BEUVRAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77599755384, + 49.6381423232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c5b5199da182d330ff948f682448f45eb0076b0", + "fields": { + "code_commune_insee": "80104", + "nom_de_la_commune": "BIENCOURT", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9765483464, + 1.69314277635 + ], + "libelle_d_acheminement": "BIENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69314277635, + 49.9765483464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "547a722c61ea6e3d5c03b1433b1bd703f262e94f", + "fields": { + "code_commune_insee": "80115", + "nom_de_la_commune": "BOUCHAVESNES BERGEN", + "code_postal": "80200", + "coordonnees_gps": [ + 49.9924551007, + 2.92163834053 + ], + "libelle_d_acheminement": "BOUCHAVESNES BERGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92163834053, + 49.9924551007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba41bfeffd7fdc2a90b4b0b6a817c349c057a529", + "fields": { + "code_commune_insee": "80117", + "nom_de_la_commune": "BOUCHON", + "code_postal": "80830", + "coordonnees_gps": [ + 50.0402317999, + 2.0267416793 + ], + "libelle_d_acheminement": "BOUCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0267416793, + 50.0402317999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5add8769b45f91265cf2939d9cff946c87b0e68", + "fields": { + "code_commune_insee": "80121", + "nom_de_la_commune": "BOUILLANCOURT LA BATAILLE", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6969888721, + 2.52667991931 + ], + "libelle_d_acheminement": "BOUILLANCOURT LA BATAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52667991931, + 49.6969888721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef69f77f4daa89cc9a1eb9234c70797892e24e5d", + "fields": { + "code_commune_insee": "80122", + "nom_de_la_commune": "BOUQUEMAISON", + "code_postal": "80600", + "coordonnees_gps": [ + 50.215619756, + 2.3391533708 + ], + "libelle_d_acheminement": "BOUQUEMAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3391533708, + 50.215619756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05305e2b2d81bb021ea22ffc9e33b38e70d85058", + "fields": { + "code_commune_insee": "80124", + "nom_de_la_commune": "BOURSEVILLE", + "code_postal": "80130", + "coordonnees_gps": [ + 50.1053525119, + 1.52189150446 + ], + "libelle_d_acheminement": "BOURSEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52189150446, + 50.1053525119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b5666d76fa44aa3062df81e536cd8776d75c1b8", + "fields": { + "code_commune_insee": "80139", + "nom_de_la_commune": "BREUIL", + "code_postal": "80400", + "coordonnees_gps": [ + 49.7369102712, + 2.94902548563 + ], + "libelle_d_acheminement": "BREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94902548563, + 49.7369102712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e4022363b51ed66f67e0d5df35411633a6377de", + "fields": { + "code_commune_insee": "80141", + "nom_de_la_commune": "BRIE", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8792146401, + 2.94219919027 + ], + "libelle_d_acheminement": "BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94219919027, + 49.8792146401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9458dd2c8d415d7b27c555b5e1c1a04ae9008d37", + "fields": { + "code_commune_insee": "80154", + "nom_de_la_commune": "BUSSU", + "code_postal": "80200", + "coordonnees_gps": [ + 49.946447754, + 2.97567757191 + ], + "libelle_d_acheminement": "BUSSU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97567757191, + 49.946447754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40a870211e1a2a56c34f3fa9866dad0e3d7c5a8c", + "fields": { + "code_commune_insee": "80155", + "nom_de_la_commune": "BUSSUS BUSSUEL", + "code_postal": "80135", + "coordonnees_gps": [ + 50.1099366485, + 2.00778988725 + ], + "libelle_d_acheminement": "BUSSUS BUSSUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00778988725, + 50.1099366485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f90d2be214163629b066d13384805a7c176531eb", + "fields": { + "code_commune_insee": "80157", + "nom_de_la_commune": "BUSSY LES POIX", + "code_postal": "80290", + "coordonnees_gps": [ + 49.8174206612, + 2.01371818079 + ], + "libelle_d_acheminement": "BUSSY LES POIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01371818079, + 49.8174206612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dead07a52d6363924a761e7fe10ccd019ded61c8", + "fields": { + "code_commune_insee": "80158", + "nom_de_la_commune": "BUVERCHY", + "code_postal": "80400", + "coordonnees_gps": [ + 49.7274888762, + 2.97016764633 + ], + "libelle_d_acheminement": "BUVERCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97016764633, + 49.7274888762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b46e6fc63b355a49dbfbe718cd2ed5e4046e992", + "fields": { + "code_commune_insee": "80159", + "nom_de_la_commune": "CACHY", + "code_postal": "80800", + "coordonnees_gps": [ + 49.8574900096, + 2.47680531465 + ], + "libelle_d_acheminement": "CACHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47680531465, + 49.8574900096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e2498026090734ebf2c38b7664c8a298581e329", + "fields": { + "code_commune_insee": "80161", + "nom_de_la_commune": "CAHON", + "code_postal": "80132", + "coordonnees_gps": [ + 50.1196980622, + 1.7290169639 + ], + "libelle_d_acheminement": "CAHON GOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7290169639, + 50.1196980622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c405b6ae768c7006d8754804b28c279619c545b", + "fields": { + "code_commune_insee": "80165", + "nom_de_la_commune": "CAMPS EN AMIENOIS", + "code_postal": "80540", + "coordonnees_gps": [ + 49.8837326113, + 1.9644871607 + ], + "libelle_d_acheminement": "CAMPS EN AMIENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9644871607, + 49.8837326113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a7a2d3bd328d5fac5116307f450b528fa9d2f30", + "fields": { + "code_commune_insee": "80167", + "nom_de_la_commune": "CANCHY", + "code_postal": "80150", + "coordonnees_gps": [ + 50.1871744967, + 1.87350289906 + ], + "libelle_d_acheminement": "CANCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87350289906, + 50.1871744967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c26cfe41ae75d6b05c51a29939ed6e2a27ababc6", + "fields": { + "code_commune_insee": "80168", + "nom_de_la_commune": "CANDAS", + "code_postal": "80750", + "coordonnees_gps": [ + 50.0996928866, + 2.28044782688 + ], + "libelle_d_acheminement": "CANDAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28044782688, + 50.0996928866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "341c7edd6d9e80c95c9467caeeafbe9f07c3d78a", + "fields": { + "code_commune_insee": "80174", + "nom_de_la_commune": "LE CARDONNOIS", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6311653117, + 2.48308861146 + ], + "libelle_d_acheminement": "LE CARDONNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48308861146, + 49.6311653117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ccce3a753a3d46ea2e78a1fb29e4f84896d3534", + "fields": { + "code_commune_insee": "80177", + "nom_de_la_commune": "CARTIGNY", + "code_postal": "80200", + "coordonnees_gps": [ + 49.9086884167, + 3.0172741613 + ], + "libelle_d_acheminement": "CARTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0172741613, + 49.9086884167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c61bbb3977962257c0dea57560fffc58a5d8470", + "fields": { + "code_commune_insee": "80181", + "nom_de_la_commune": "CAYEUX EN SANTERRE", + "code_postal": "80800", + "coordonnees_gps": [ + 49.8125645731, + 2.60583040653 + ], + "libelle_d_acheminement": "CAYEUX EN SANTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60583040653, + 49.8125645731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "474914668f4fcd7c104ab760fa12fec2c663a950", + "fields": { + "code_commune_insee": "80183", + "nom_de_la_commune": "CERISY BULEUX", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9731167582, + 1.73718329436 + ], + "libelle_d_acheminement": "CERISY BULEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73718329436, + 49.9731167582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d83dedc1653787a7a142a274c3c97b43c6d2ddd2", + "fields": { + "code_commune_insee": "80192", + "nom_de_la_commune": "CHIPILLY", + "code_postal": "80800", + "coordonnees_gps": [ + 49.9179353408, + 2.65156030414 + ], + "libelle_d_acheminement": "CHIPILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65156030414, + 49.9179353408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8e529bc609a63a7eeddba13e310998b9f42a05c", + "fields": { + "code_commune_insee": "80199", + "nom_de_la_commune": "CLERY SUR SOMME", + "code_postal": "80200", + "coordonnees_gps": [ + 49.9622243429, + 2.88668323143 + ], + "libelle_d_acheminement": "CLERY SUR SOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88668323143, + 49.9622243429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "674efdf48ce93fd768be95b8022a0600f8578944", + "fields": { + "code_commune_insee": "80202", + "nom_de_la_commune": "COISY", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9654599063, + 2.33299519676 + ], + "libelle_d_acheminement": "COISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33299519676, + 49.9654599063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1ae07346c5ae0a31aae4eaae61a2ab8b80fc811", + "fields": { + "code_commune_insee": "80225", + "nom_de_la_commune": "CREUSE", + "code_postal": "80480", + "coordonnees_gps": [ + 49.8354296126, + 2.15949387069 + ], + "libelle_d_acheminement": "CREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15949387069, + 49.8354296126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f18c66da21f1a56f6cecd00425f294dc0995c360", + "fields": { + "code_commune_insee": "80229", + "nom_de_la_commune": "CROUY ST PIERRE", + "code_postal": "80310", + "coordonnees_gps": [ + 49.9600035643, + 2.09312731925 + ], + "libelle_d_acheminement": "CROUY ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09312731925, + 49.9600035643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9be6491309ae47ff8ebe78503250d41bc9caf2ad", + "fields": { + "ligne_5": "ST PIERRE A GOUY", + "code_commune_insee": "80229", + "libelle_d_acheminement": "CROUY ST PIERRE", + "code_postal": "80310", + "nom_de_la_commune": "CROUY ST PIERRE", + "coordonnees_gps": [ + 49.9600035643, + 2.09312731925 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09312731925, + 49.9600035643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15640cec5f19778db085a0fd2faa64221ba61670", + "fields": { + "code_commune_insee": "80235", + "nom_de_la_commune": "DARGNIES", + "code_postal": "80570", + "coordonnees_gps": [ + 50.0427980747, + 1.52971446889 + ], + "libelle_d_acheminement": "DARGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52971446889, + 50.0427980747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c03bddbf13103cee571f9d4d111884d9faecc9a1", + "fields": { + "code_commune_insee": "80241", + "nom_de_la_commune": "DOMART EN PONTHIEU", + "code_postal": "80620", + "coordonnees_gps": [ + 50.0757557319, + 2.12318895093 + ], + "libelle_d_acheminement": "DOMART EN PONTHIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12318895093, + 50.0757557319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c46b79a22ab499930fdb26d05426e8b91e2916fb", + "fields": { + "code_commune_insee": "80248", + "nom_de_la_commune": "DOMPIERRE SUR AUTHIE", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2951382167, + 1.92084016717 + ], + "libelle_d_acheminement": "DOMPIERRE SUR AUTHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92084016717, + 50.2951382167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "640bdb26ff1fd65c816e00fd86afb9bcbcd3b4dc", + "fields": { + "code_commune_insee": "80260", + "nom_de_la_commune": "DRUCAT", + "code_postal": "80132", + "coordonnees_gps": [ + 50.1459729311, + 1.86130040867 + ], + "libelle_d_acheminement": "DRUCAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86130040867, + 50.1459729311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea0fd57cd2acd6035310271227d847a6a1b1e5a9", + "fields": { + "code_commune_insee": "80276", + "nom_de_la_commune": "EQUENNES ERAMECOURT", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7278828186, + 1.95586225984 + ], + "libelle_d_acheminement": "EQUENNES ERAMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95586225984, + 49.7278828186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95cc02cb0c626bed19429f13ddf05134c0347d40", + "fields": { + "ligne_5": "ERAMECOURT", + "code_commune_insee": "80276", + "libelle_d_acheminement": "EQUENNES ERAMECOURT", + "code_postal": "80290", + "nom_de_la_commune": "EQUENNES ERAMECOURT", + "coordonnees_gps": [ + 49.7278828186, + 1.95586225984 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95586225984, + 49.7278828186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b977d769f308c76571484d6f16bfd591705c14de", + "fields": { + "code_commune_insee": "80278", + "nom_de_la_commune": "ERCHES", + "code_postal": "80500", + "coordonnees_gps": [ + 49.7243449482, + 2.67246538039 + ], + "libelle_d_acheminement": "ERCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67246538039, + 49.7243449482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36c68039eb5371ca5bdb28a017e9b6176c3e1ffd", + "fields": { + "code_commune_insee": "80279", + "nom_de_la_commune": "ERCHEU", + "code_postal": "80400", + "coordonnees_gps": [ + 49.7010057712, + 2.94654183178 + ], + "libelle_d_acheminement": "ERCHEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94654183178, + 49.7010057712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41e292079f198dbaa43f5c69285851d205201cb6", + "fields": { + "code_commune_insee": "80285", + "nom_de_la_commune": "ESSERTAUX", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7465663966, + 2.25808683879 + ], + "libelle_d_acheminement": "ESSERTAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25808683879, + 49.7465663966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f9929f5c9b73454feb065bb92a362a7378429b3", + "fields": { + "code_commune_insee": "80291", + "nom_de_la_commune": "ESTREES SUR NOYE", + "code_postal": "80250", + "coordonnees_gps": [ + 49.7842642884, + 2.33898041831 + ], + "libelle_d_acheminement": "ESTREES SUR NOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33898041831, + 49.7842642884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4b71ebae0225d56d27637c18d8ffa3793f915af", + "fields": { + "code_commune_insee": "80294", + "nom_de_la_commune": "ETERPIGNY", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8856524019, + 2.91602886525 + ], + "libelle_d_acheminement": "ETERPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91602886525, + 49.8856524019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a4ff45bd5239ad7165f9bd47d997d091494ad12", + "fields": { + "code_commune_insee": "80297", + "nom_de_la_commune": "ETREJUST", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9117893247, + 1.88724692625 + ], + "libelle_d_acheminement": "ETREJUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88724692625, + 49.9117893247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "038688b0981e64acc71b607a43ef0986339718c7", + "fields": { + "code_commune_insee": "80315", + "nom_de_la_commune": "FLERS SUR NOYE", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7293333092, + 2.25757976888 + ], + "libelle_d_acheminement": "FLERS SUR NOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25757976888, + 49.7293333092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07816b14275a85c42e3537fc61a630277073812a", + "fields": { + "code_commune_insee": "80319", + "nom_de_la_commune": "FLUY", + "code_postal": "80540", + "coordonnees_gps": [ + 49.8596757003, + 2.0859623346 + ], + "libelle_d_acheminement": "FLUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0859623346, + 49.8596757003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb824286e919aa873c4b4db844841034c4b0b06c", + "fields": { + "code_commune_insee": "80321", + "nom_de_la_commune": "FOLLEVILLE", + "code_postal": "80250", + "coordonnees_gps": [ + 49.6776909768, + 2.3550476043 + ], + "libelle_d_acheminement": "FOLLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3550476043, + 49.6776909768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51cbdf24531d1d491051694550c4542b3c82a147", + "fields": { + "code_commune_insee": "80322", + "nom_de_la_commune": "FONCHES FONCHETTE", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7761107379, + 2.82157926223 + ], + "libelle_d_acheminement": "FONCHES FONCHETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82157926223, + 49.7761107379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6382b0c0978bb2099d663e116697f8d25d14d7d", + "fields": { + "code_commune_insee": "80326", + "nom_de_la_commune": "FONTAINE SOUS MONTDIDIER", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6550724443, + 2.50539599355 + ], + "libelle_d_acheminement": "FONTAINE SOUS MONTDIDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50539599355, + 49.6550724443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e6c4b98eac78794e94d5eaa078f28c3e79122e3", + "fields": { + "code_commune_insee": "80328", + "nom_de_la_commune": "FONTAINE SUR SOMME", + "code_postal": "80510", + "coordonnees_gps": [ + 50.0246616547, + 1.94061931752 + ], + "libelle_d_acheminement": "FONTAINE SUR SOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94061931752, + 50.0246616547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c1b51a73dc6aef09ff64dde63e1516ced70d1e6", + "fields": { + "code_commune_insee": "80336", + "nom_de_la_commune": "FOUCAUCOURT HORS NESLE", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9175841672, + 1.71782480401 + ], + "libelle_d_acheminement": "FOUCAUCOURT HORS NESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71782480401, + 49.9175841672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e7d948a713d425a48413ce0323a001cc3d1d547", + "fields": { + "code_commune_insee": "80340", + "nom_de_la_commune": "FOURCIGNY", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7521286153, + 1.82506913189 + ], + "libelle_d_acheminement": "FOURCIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82506913189, + 49.7521286153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ab2bf1bd85407321f9f003beca39c7af7bbf281", + "fields": { + "code_commune_insee": "80346", + "nom_de_la_commune": "FRANQUEVILLE", + "code_postal": "80620", + "coordonnees_gps": [ + 50.0953559703, + 2.0966149018 + ], + "libelle_d_acheminement": "FRANQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0966149018, + 50.0953559703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f121479396ac9b26d111115fb57eac6c9b9f696", + "fields": { + "code_commune_insee": "80350", + "nom_de_la_commune": "FRANVILLERS", + "code_postal": "80800", + "coordonnees_gps": [ + 49.9701448943, + 2.4998796685 + ], + "libelle_d_acheminement": "FRANVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4998796685, + 49.9701448943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5c990f85e2effc3ab60776b189426d9b76e1c5d", + "fields": { + "code_commune_insee": "80353", + "nom_de_la_commune": "FRESNES MAZANCOURT", + "code_postal": "80320", + "coordonnees_gps": [ + 49.8513622783, + 2.86281953727 + ], + "libelle_d_acheminement": "FRESNES MAZANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86281953727, + 49.8513622783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6094a31bb1406daa8dc0d588b8acba498b18696", + "fields": { + "code_commune_insee": "80362", + "nom_de_la_commune": "FRETTEMEULE", + "code_postal": "80220", + "coordonnees_gps": [ + 49.9995897273, + 1.63939407213 + ], + "libelle_d_acheminement": "FRETTEMEULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63939407213, + 49.9995897273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db0af35397b4d00f212d0b0220a42f2965b8b3e6", + "fields": { + "code_commune_insee": "80368", + "nom_de_la_commune": "FRIVILLE ESCARBOTIN", + "code_postal": "80130", + "coordonnees_gps": [ + 50.0860775469, + 1.54350789133 + ], + "libelle_d_acheminement": "FRIVILLE ESCARBOTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54350789133, + 50.0860775469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31285d25ae2a5d55d47b5b051b2ec632fb8e1828", + "fields": { + "code_commune_insee": "80375", + "nom_de_la_commune": "GAUVILLE", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7808911184, + 1.78753302292 + ], + "libelle_d_acheminement": "GAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78753302292, + 49.7808911184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca5c597cd2f986fd3d52ad0febd91a3015ff7aaf", + "fields": { + "code_commune_insee": "80383", + "nom_de_la_commune": "GOYENCOURT", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7213872531, + 2.76641798574 + ], + "libelle_d_acheminement": "GOYENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76641798574, + 49.7213872531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9bb5d7fbab647e4ece0c84e1dd8ed04f23e8004", + "fields": { + "code_commune_insee": "80390", + "nom_de_la_commune": "GRIVESNES", + "code_postal": "80250", + "coordonnees_gps": [ + 49.6868458366, + 2.45819167099 + ], + "libelle_d_acheminement": "GRIVESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45819167099, + 49.6868458366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeb660a615e932e9c7c47a81a37af81926f2f8c4", + "fields": { + "code_commune_insee": "80396", + "nom_de_la_commune": "GUESCHART", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2375835901, + 2.01124506809 + ], + "libelle_d_acheminement": "GUESCHART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01124506809, + 50.2375835901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6834094b63ea2845fef8786970e7d3a97ded2cf", + "fields": { + "code_commune_insee": "80400", + "nom_de_la_commune": "GUILLAUCOURT", + "code_postal": "80170", + "coordonnees_gps": [ + 49.838727103, + 2.63430386505 + ], + "libelle_d_acheminement": "GUILLAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63430386505, + 49.838727103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a4108cad5058cfd0518863e593a227bf2a42cb6", + "fields": { + "code_commune_insee": "80407", + "nom_de_la_commune": "HALLIVILLERS", + "code_postal": "80250", + "coordonnees_gps": [ + 49.6961662022, + 2.2956542546 + ], + "libelle_d_acheminement": "HALLIVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2956542546, + 49.6961662022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a9049a7f1349602fca509cd21598554c2e02690", + "fields": { + "code_commune_insee": "80408", + "nom_de_la_commune": "HALLOY LES PERNOIS", + "code_postal": "80670", + "coordonnees_gps": [ + 50.0427875806, + 2.20337293934 + ], + "libelle_d_acheminement": "HALLOY LES PERNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20337293934, + 50.0427875806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bee3317af0daa682840b9ba664025edbfd7a8a0", + "fields": { + "code_commune_insee": "80410", + "nom_de_la_commune": "HAM", + "code_postal": "80400", + "coordonnees_gps": [ + 49.7534712622, + 3.07400676417 + ], + "libelle_d_acheminement": "HAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07400676417, + 49.7534712622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82dcfc983818a6c0aa0974a642083e4893fef33e", + "fields": { + "code_commune_insee": "80412", + "nom_de_la_commune": "HAMELET", + "code_postal": "80800", + "coordonnees_gps": [ + 49.8961736271, + 2.53311345885 + ], + "libelle_d_acheminement": "HAMELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53311345885, + 49.8961736271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a567e94c3dffefc3d143955422a51d0453a69f6e", + "fields": { + "code_commune_insee": "80416", + "nom_de_la_commune": "HANGEST SUR SOMME", + "code_postal": "80310", + "coordonnees_gps": [ + 49.9792304864, + 2.03810831861 + ], + "libelle_d_acheminement": "HANGEST SUR SOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03810831861, + 49.9792304864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98336cf6f49d1174df934bf93809335af7fc3ae4", + "fields": { + "code_commune_insee": "80431", + "nom_de_la_commune": "HERISSART", + "code_postal": "80260", + "coordonnees_gps": [ + 50.0286046388, + 2.41696809789 + ], + "libelle_d_acheminement": "HERISSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41696809789, + 50.0286046388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ab3c583b9959ba2001397ee670bcbef6835e6f5", + "fields": { + "code_commune_insee": "80432", + "nom_de_la_commune": "HERLEVILLE", + "code_postal": "80340", + "coordonnees_gps": [ + 49.8611385955, + 2.75111950285 + ], + "libelle_d_acheminement": "HERLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75111950285, + 49.8611385955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8b0521b27f94405113bc6a4dffac0aebd5e3399", + "fields": { + "code_commune_insee": "80434", + "nom_de_la_commune": "HERVILLY", + "code_postal": "80240", + "coordonnees_gps": [ + 49.9312998449, + 3.11712136373 + ], + "libelle_d_acheminement": "HERVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11712136373, + 49.9312998449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7df68c198b30f10637d4cbac2f6115cce7c43354", + "fields": { + "code_commune_insee": "80436", + "nom_de_la_commune": "HESCAMPS", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7288200657, + 1.87751507035 + ], + "libelle_d_acheminement": "HESCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87751507035, + 49.7288200657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32c2351401db45b75f8f6913e1b50407ee8f952b", + "fields": { + "ligne_5": "SOUPLICOURT", + "code_commune_insee": "80436", + "libelle_d_acheminement": "HESCAMPS", + "code_postal": "80290", + "nom_de_la_commune": "HESCAMPS", + "coordonnees_gps": [ + 49.7288200657, + 1.87751507035 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87751507035, + 49.7288200657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "154366b3b49a1d034626e4e966d671ae5a86c78e", + "fields": { + "code_commune_insee": "80437", + "nom_de_la_commune": "HEUCOURT CROQUOISON", + "code_postal": "80270", + "coordonnees_gps": [ + 49.9301375227, + 1.88243400291 + ], + "libelle_d_acheminement": "HEUCOURT CROQUOISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88243400291, + 49.9301375227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb6ace38413f9edcb077edf7af0047872f99cb59", + "fields": { + "code_commune_insee": "80443", + "nom_de_la_commune": "HORNOY LE BOURG", + "code_postal": "80640", + "coordonnees_gps": [ + 49.8474299808, + 1.90289897698 + ], + "libelle_d_acheminement": "HORNOY LE BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90289897698, + 49.8474299808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ef8cd3cb1c1a4fed2d38383d3dd650dbf7d83c5", + "fields": { + "ligne_5": "LINCHEUX HALLIVILLERS", + "code_commune_insee": "80443", + "libelle_d_acheminement": "HORNOY LE BOURG", + "code_postal": "80640", + "nom_de_la_commune": "HORNOY LE BOURG", + "coordonnees_gps": [ + 49.8474299808, + 1.90289897698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90289897698, + 49.8474299808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "792e9a3deb0cae43787f9df82b664feeeb136ee4", + "fields": { + "code_commune_insee": "80445", + "nom_de_la_commune": "HUMBERCOURT", + "code_postal": "80600", + "coordonnees_gps": [ + 50.2095577293, + 2.45741568724 + ], + "libelle_d_acheminement": "HUMBERCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45741568724, + 50.2095577293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b903206344372832352e491fdeb57c4a8bd72be6", + "fields": { + "code_commune_insee": "80455", + "nom_de_la_commune": "LACHAPELLE", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7617926645, + 1.95721881153 + ], + "libelle_d_acheminement": "LA CHAPELLE SOUS POIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95721881153, + 49.7617926645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "457e5cf8cba7aa708e7b355256c9f814fee418b9", + "fields": { + "ligne_5": "MONTMARQUET", + "code_commune_insee": "80456", + "libelle_d_acheminement": "LAFRESGUIMONT ST MARTIN", + "code_postal": "80430", + "nom_de_la_commune": "LAFRESGUIMONT ST MARTIN", + "coordonnees_gps": [ + 49.8233759898, + 1.81063672969 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81063672969, + 49.8233759898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "466cf3fd1597f342cfea9c5006ae944b2733883a", + "fields": { + "code_commune_insee": "80459", + "nom_de_la_commune": "LALEU", + "code_postal": "80270", + "coordonnees_gps": [ + 49.9424056241, + 1.9357914781 + ], + "libelle_d_acheminement": "LALEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9357914781, + 49.9424056241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b9410b1f0dfbbaef7eccec486e4e38b1d788238", + "fields": { + "code_commune_insee": "80465", + "nom_de_la_commune": "LANGUEVOISIN QUIQUERY", + "code_postal": "80190", + "coordonnees_gps": [ + 49.745698348, + 2.93309479139 + ], + "libelle_d_acheminement": "LANGUEVOISIN QUIQUERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93309479139, + 49.745698348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29195c1228d8f8ec20ba20aaed98e915beadbb49", + "fields": { + "code_commune_insee": "80467", + "nom_de_la_commune": "LAUCOURT", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6715986879, + 2.76264234534 + ], + "libelle_d_acheminement": "LAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76264234534, + 49.6715986879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65eb3b7504fa7e45b44b490f61c65492cba69314", + "fields": { + "code_commune_insee": "80469", + "nom_de_la_commune": "LAWARDE MAUGER L HORTOY", + "code_postal": "80250", + "coordonnees_gps": [ + 49.712060298, + 2.27144968439 + ], + "libelle_d_acheminement": "LAWARDE MAUGER L HORTOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27144968439, + 49.712060298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6985cecd4891865b70a31658d870cb329b340a00", + "fields": { + "code_commune_insee": "80481", + "nom_de_la_commune": "LIHONS", + "code_postal": "80320", + "coordonnees_gps": [ + 49.8281719483, + 2.75595093445 + ], + "libelle_d_acheminement": "LIHONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75595093445, + 49.8281719483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c27d3d90f94070df7691cc144c0f2eb9a658446", + "fields": { + "code_commune_insee": "80487", + "nom_de_la_commune": "LONGAVESNES", + "code_postal": "80240", + "coordonnees_gps": [ + 49.971796955, + 3.0617264877 + ], + "libelle_d_acheminement": "LONGAVESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0617264877, + 49.971796955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12bb4da9651ac7ae326666ec347da18272ebdb3c", + "fields": { + "code_commune_insee": "80490", + "nom_de_la_commune": "LONGUEVAL", + "code_postal": "80360", + "coordonnees_gps": [ + 50.0304280859, + 2.7989971298 + ], + "libelle_d_acheminement": "LONGUEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7989971298, + 50.0304280859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0f4a960801abd44089ff8531527188d3d0d894c", + "fields": { + "code_commune_insee": "80503", + "nom_de_la_commune": "MAIZICOURT", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1958444054, + 2.12689223316 + ], + "libelle_d_acheminement": "MAIZICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12689223316, + 50.1958444054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aa63d76c3f7947f67e48c34fc12435a74e89e91", + "fields": { + "ligne_5": "CARNOY", + "code_commune_insee": "80505", + "libelle_d_acheminement": "CARNOY MAMETZ", + "code_postal": "80300", + "nom_de_la_commune": "CARNOY MAMETZ", + "coordonnees_gps": [ + 50.0005695431, + 2.74579694332 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74579694332, + 50.0005695431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a90fd47b44aca551ffdc64714bea2824694d4d6f", + "fields": { + "ligne_5": "MAMETZ", + "code_commune_insee": "80505", + "libelle_d_acheminement": "CARNOY MAMETZ", + "code_postal": "80300", + "nom_de_la_commune": "CARNOY MAMETZ", + "coordonnees_gps": [ + 50.0005695431, + 2.74579694332 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74579694332, + 50.0005695431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83edab762c3732fad2f8e918f0e32bea11f71c9f", + "fields": { + "code_commune_insee": "80511", + "nom_de_la_commune": "MARESTMONTIERS", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6824759775, + 2.52108959814 + ], + "libelle_d_acheminement": "MARESTMONTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52108959814, + 49.6824759775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a766e49a42edd4710bf0b297acb76b2f0d8db09d", + "fields": { + "code_commune_insee": "80526", + "nom_de_la_commune": "LE MEILLARD", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1708867861, + 2.19859474382 + ], + "libelle_d_acheminement": "LE MEILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19859474382, + 50.1708867861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbddb27b46e6005f713f2de21dd3b187c5cc1f40", + "fields": { + "code_commune_insee": "80533", + "nom_de_la_commune": "MERS LES BAINS", + "code_postal": "80350", + "coordonnees_gps": [ + 50.0705181348, + 1.40473307328 + ], + "libelle_d_acheminement": "MERS LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40473307328, + 50.0705181348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3ca6a642fb69c3dc6956881046b1385ed288800", + "fields": { + "code_commune_insee": "80535", + "nom_de_la_commune": "LE MESGE", + "code_postal": "80310", + "coordonnees_gps": [ + 49.9405207986, + 2.04375733629 + ], + "libelle_d_acheminement": "LE MESGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04375733629, + 49.9405207986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a35e64404d5ba18e6f37ae64b391259b6b270639", + "fields": { + "code_commune_insee": "80536", + "nom_de_la_commune": "MESNIL BRUNTEL", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8979290525, + 2.96283579416 + ], + "libelle_d_acheminement": "MESNIL BRUNTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96283579416, + 49.8979290525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45107559d9db4912694ce1d6538d2ed9c33e9f4b", + "fields": { + "code_commune_insee": "80538", + "nom_de_la_commune": "MESNIL EN ARROUAISE", + "code_postal": "80360", + "coordonnees_gps": [ + 50.0364327239, + 2.95019239186 + ], + "libelle_d_acheminement": "MESNIL EN ARROUAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95019239186, + 50.0364327239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f23e70f01b98a230bfc87ff4ab533e1ce2af4b6", + "fields": { + "code_commune_insee": "80542", + "nom_de_la_commune": "MESNIL ST NICAISE", + "code_postal": "80190", + "coordonnees_gps": [ + 49.7784450103, + 2.91323187372 + ], + "libelle_d_acheminement": "MESNIL ST NICAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91323187372, + 49.7784450103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cee8b0414dfca943edebf3c2239c4969aa02ec04", + "fields": { + "ligne_5": "MEREAUCOURT", + "code_commune_insee": "80555", + "libelle_d_acheminement": "MONCHY LAGACHE", + "code_postal": "80200", + "nom_de_la_commune": "MONCHY LAGACHE", + "coordonnees_gps": [ + 49.850644033, + 3.04313545321 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04313545321, + 49.850644033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "068ffa2863b332d621624ba6a1f84e2c3ff301d4", + "fields": { + "code_commune_insee": "80562", + "nom_de_la_commune": "MONTIGNY SUR L HALLUE", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9854644167, + 2.42235764909 + ], + "libelle_d_acheminement": "MONTIGNY SUR L HALLUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42235764909, + 49.9854644167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2981075eda0f79cb2de03e846ed80013b283618", + "fields": { + "code_commune_insee": "80563", + "nom_de_la_commune": "MONTIGNY LES JONGLEURS", + "code_postal": "80370", + "coordonnees_gps": [ + 50.17823069, + 2.13581151088 + ], + "libelle_d_acheminement": "MONTIGNY LES JONGLEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13581151088, + 50.17823069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d321a6568a8bfe53a7e5385387dee7e76dd5f52", + "fields": { + "code_commune_insee": "80565", + "nom_de_la_commune": "MONTONVILLERS", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9964398506, + 2.29571982025 + ], + "libelle_d_acheminement": "MONTONVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29571982025, + 49.9964398506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff18da8267114ea82ed1bf48c8f621abff161443", + "fields": { + "code_commune_insee": "80568", + "nom_de_la_commune": "MORCHAIN", + "code_postal": "80190", + "coordonnees_gps": [ + 49.8003145856, + 2.92316556793 + ], + "libelle_d_acheminement": "MORCHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92316556793, + 49.8003145856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a43fcc1f7b1c46209bd406b36c1c557eaedc0a85", + "fields": { + "code_commune_insee": "80578", + "nom_de_la_commune": "MOYENNEVILLE", + "code_postal": "80870", + "coordonnees_gps": [ + 50.0763860952, + 1.75417829151 + ], + "libelle_d_acheminement": "MOYENNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75417829151, + 50.0763860952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4e7fa12774d4444508537ed01fd1b80dba587dd", + "fields": { + "code_commune_insee": "80582", + "nom_de_la_commune": "NAMPS MAISNIL", + "code_postal": "80290", + "coordonnees_gps": [ + 49.8061321479, + 2.1229976802 + ], + "libelle_d_acheminement": "NAMPS MAISNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1229976802, + 49.8061321479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "010d47449f8846be766d893abbab50ae1b9dad5e", + "fields": { + "code_commune_insee": "80583", + "nom_de_la_commune": "NAMPTY", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7893011328, + 2.21654250749 + ], + "libelle_d_acheminement": "NAMPTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21654250749, + 49.7893011328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae41d2821b347fa85c3bb8867ce16c9e37f235a3", + "fields": { + "code_commune_insee": "80592", + "nom_de_la_commune": "NEUVILLE COPPEGUEULE", + "code_postal": "80430", + "coordonnees_gps": [ + 49.856003312, + 1.73981391668 + ], + "libelle_d_acheminement": "NEUVILLE COPPEGUEULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73981391668, + 49.856003312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52fff4458dd59dccdf6305c19eff52b0b86e1bd1", + "fields": { + "code_commune_insee": "80595", + "nom_de_la_commune": "LA NEUVILLE SIRE BERNARD", + "code_postal": "80110", + "coordonnees_gps": [ + 49.7428027758, + 2.52313331423 + ], + "libelle_d_acheminement": "LA NEUVILLE SIRE BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52313331423, + 49.7428027758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8277a0b1ed14a91d1c112eb93f504c926aa94a02", + "fields": { + "code_commune_insee": "80597", + "nom_de_la_commune": "NIBAS", + "code_postal": "80390", + "coordonnees_gps": [ + 50.0944816863, + 1.58862291088 + ], + "libelle_d_acheminement": "NIBAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58862291088, + 50.0944816863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a90945ab49917031803a67623dfb94a2d1129cf9", + "fields": { + "code_commune_insee": "80602", + "nom_de_la_commune": "OCCOCHES", + "code_postal": "80600", + "coordonnees_gps": [ + 50.1823597887, + 2.28746052815 + ], + "libelle_d_acheminement": "OCCOCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28746052815, + 50.1823597887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38bae23663bc40aba60ad74fdc7267693b0e40e9", + "fields": { + "code_commune_insee": "80605", + "nom_de_la_commune": "OFFOY", + "code_postal": "80400", + "coordonnees_gps": [ + 49.7712497571, + 3.01663312935 + ], + "libelle_d_acheminement": "OFFOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01663312935, + 49.7712497571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91138e14024b329791037ebe3cdcd73c26b32803", + "fields": { + "code_commune_insee": "80606", + "nom_de_la_commune": "OISEMONT", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9551305817, + 1.76021998485 + ], + "libelle_d_acheminement": "OISEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76021998485, + 49.9551305817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1faf66798cce6d63a53640e6e98c9180e1ccebff", + "fields": { + "ligne_5": "HYENCOURT LE GRAND", + "code_commune_insee": "80621", + "libelle_d_acheminement": "HYPERCOURT", + "code_postal": "80320", + "nom_de_la_commune": "HYPERCOURT", + "coordonnees_gps": [ + 49.8059761599, + 2.86900836707 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86900836707, + 49.8059761599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f32178b1e81081084ba799344e7259f0e25d2d6e", + "fields": { + "code_commune_insee": "80627", + "nom_de_la_commune": "PLACHY BUYON", + "code_postal": "80160", + "coordonnees_gps": [ + 49.8120593535, + 2.22769892861 + ], + "libelle_d_acheminement": "PLACHY BUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22769892861, + 49.8120593535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "617f164f77afd199beae90ce42147480fca00b14", + "fields": { + "code_commune_insee": "80642", + "nom_de_la_commune": "PROUVILLE", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1557396605, + 2.12945547037 + ], + "libelle_d_acheminement": "PROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12945547037, + 50.1557396605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a91a9bc55955e05356b02d9d579e0b715968705", + "fields": { + "code_commune_insee": "80643", + "nom_de_la_commune": "PROUZEL", + "code_postal": "80160", + "coordonnees_gps": [ + 49.814090508, + 2.18958769704 + ], + "libelle_d_acheminement": "PROUZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18958769704, + 49.814090508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61686d16b04130dc3ba0e25c18a819ded74a8362", + "fields": { + "code_commune_insee": "80649", + "nom_de_la_commune": "QUEND", + "code_postal": "80120", + "coordonnees_gps": [ + 50.3216390021, + 1.61114189711 + ], + "libelle_d_acheminement": "QUEND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61114189711, + 50.3216390021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f41c4741571ecc150f8a222cc0a09d50716cc8cb", + "fields": { + "code_commune_insee": "80650", + "nom_de_la_commune": "QUERRIEU", + "code_postal": "80115", + "coordonnees_gps": [ + 49.9387328157, + 2.41366429954 + ], + "libelle_d_acheminement": "QUERRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41366429954, + 49.9387328157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1755d0c7e38362298a3893e846e11ab832f1ff67", + "fields": { + "code_commune_insee": "80655", + "nom_de_la_commune": "QUESNOY SUR AIRAINES", + "code_postal": "80270", + "coordonnees_gps": [ + 49.9493617833, + 1.99218828189 + ], + "libelle_d_acheminement": "QUESNOY SUR AIRAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99218828189, + 49.9493617833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "195fa18b79fe6e1363a8e4dbb475b697611558c7", + "fields": { + "code_commune_insee": "80666", + "nom_de_la_commune": "REMAISNIL", + "code_postal": "80600", + "coordonnees_gps": [ + 50.2057113096, + 2.24244191691 + ], + "libelle_d_acheminement": "REMAISNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24244191691, + 50.2057113096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b1c179389cb117b678a14e95d3c591fd60d2228", + "fields": { + "code_commune_insee": "80670", + "nom_de_la_commune": "REVELLES", + "code_postal": "80540", + "coordonnees_gps": [ + 49.8400277548, + 2.1143709231 + ], + "libelle_d_acheminement": "REVELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1143709231, + 49.8400277548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6102f75ce5c76caa6228fc53fd6e6712f65666a", + "fields": { + "code_commune_insee": "80671", + "nom_de_la_commune": "RIBEAUCOURT", + "code_postal": "80620", + "coordonnees_gps": [ + 50.119279536, + 2.11909340696 + ], + "libelle_d_acheminement": "RIBEAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11909340696, + 50.119279536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90436470094561c0a6cf14bf71a42ad39cfde32d", + "fields": { + "code_commune_insee": "80674", + "nom_de_la_commune": "RIVERY", + "code_postal": "80136", + "coordonnees_gps": [ + 49.9106434149, + 2.33962596148 + ], + "libelle_d_acheminement": "RIVERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33962596148, + 49.9106434149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e1cfc114ec4f3ebc89e15a6318bf850001292e9", + "fields": { + "code_commune_insee": "80680", + "nom_de_la_commune": "ROSIERES EN SANTERRE", + "code_postal": "80170", + "coordonnees_gps": [ + 49.8180169007, + 2.70364687243 + ], + "libelle_d_acheminement": "ROSIERES EN SANTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70364687243, + 49.8180169007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac15bf58d0a60645abe05217060809feb1a7904c", + "fields": { + "code_commune_insee": "80697", + "nom_de_la_commune": "ST ACHEUL", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1906465454, + 2.16266082179 + ], + "libelle_d_acheminement": "ST ACHEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16266082179, + 50.1906465454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a8610537f4556a1bb19c2b00706989249efad79", + "fields": { + "code_commune_insee": "80699", + "nom_de_la_commune": "ST AUBIN RIVIERE", + "code_postal": "80430", + "coordonnees_gps": [ + 49.8661495239, + 1.77940255587 + ], + "libelle_d_acheminement": "ST AUBIN RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77940255587, + 49.8661495239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb2f58b0cf8633d5bd2e56037b2dde3175894ded", + "fields": { + "code_commune_insee": "80705", + "nom_de_la_commune": "ST LEGER LES AUTHIE", + "code_postal": "80560", + "coordonnees_gps": [ + 50.1272430532, + 2.51346133932 + ], + "libelle_d_acheminement": "ST LEGER LES AUTHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51346133932, + 50.1272430532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "660f93822d7288866a466d4cb0d21c6b6303c558", + "fields": { + "code_commune_insee": "80709", + "nom_de_la_commune": "ST MAULVIS", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9023922509, + 1.82631005356 + ], + "libelle_d_acheminement": "ST MAULVIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82631005356, + 49.9023922509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f53887d809750031123a5319fac7a480ddca0578", + "fields": { + "code_commune_insee": "80723", + "nom_de_la_commune": "SAISSEVAL", + "code_postal": "80540", + "coordonnees_gps": [ + 49.9015320979, + 2.11887719645 + ], + "libelle_d_acheminement": "SAISSEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11887719645, + 49.9015320979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c9dea048ffa0849bd3b3fdb655d3d82f7b8eed9", + "fields": { + "code_commune_insee": "80732", + "nom_de_la_commune": "SENARPONT", + "code_postal": "80140", + "coordonnees_gps": [ + 49.8914351461, + 1.71834605369 + ], + "libelle_d_acheminement": "SENARPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71834605369, + 49.8914351461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c12b8ac492c10535e7b2d54c13dcbbe7ae936229", + "fields": { + "code_commune_insee": "80735", + "nom_de_la_commune": "SEUX", + "code_postal": "80540", + "coordonnees_gps": [ + 49.8768298923, + 2.1056017445 + ], + "libelle_d_acheminement": "SEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056017445, + 49.8768298923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48ff7cc63ad9a2198fa0abc1ec0b4ae8b9c95a21", + "fields": { + "code_commune_insee": "80744", + "nom_de_la_commune": "TAILLY", + "code_postal": "80270", + "coordonnees_gps": [ + 49.9346024966, + 1.94785661524 + ], + "libelle_d_acheminement": "TAILLY L ARBRE A MOUCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94785661524, + 49.9346024966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fa9d596f73da882c4c01354158597b33fe17e9d", + "fields": { + "code_commune_insee": "80753", + "nom_de_la_commune": "THIEPVAL", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0597825128, + 2.68781215568 + ], + "libelle_d_acheminement": "THIEPVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68781215568, + 50.0597825128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c84daf9506265f88951ab1c41c9412dacdd2adc8", + "fields": { + "code_commune_insee": "80757", + "nom_de_la_commune": "THOIX", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7039687787, + 2.06442641818 + ], + "libelle_d_acheminement": "THOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06442641818, + 49.7039687787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2605dcd5b3984849a825acbe34883cac96ab967", + "fields": { + "code_commune_insee": "80764", + "nom_de_la_commune": "TOEUFLES", + "code_postal": "80870", + "coordonnees_gps": [ + 50.0624444273, + 1.71192475287 + ], + "libelle_d_acheminement": "TOEUFLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71192475287, + 50.0624444273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fab6ee050f4f95be3b0c61efb550bd3a589b0636", + "fields": { + "code_commune_insee": "80773", + "nom_de_la_commune": "VADENCOURT", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0174902496, + 2.49046113345 + ], + "libelle_d_acheminement": "VADENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49046113345, + 50.0174902496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be425f9f71c62733aa1d5e43a63885e649fa3bbc", + "fields": { + "code_commune_insee": "80776", + "nom_de_la_commune": "VARENNES", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0455149826, + 2.51879170317 + ], + "libelle_d_acheminement": "VARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51879170317, + 50.0455149826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54362937e7a4d67a4895baf6f0b4287e434beeb1", + "fields": { + "code_commune_insee": "80778", + "nom_de_la_commune": "VAUCHELLES LES DOMART", + "code_postal": "80620", + "coordonnees_gps": [ + 50.0565678591, + 2.05807152774 + ], + "libelle_d_acheminement": "VAUCHELLES LES DOMART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05807152774, + 50.0565678591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33baab60116429ce07ba67fbe8860eca4d393531", + "fields": { + "code_commune_insee": "80779", + "nom_de_la_commune": "VAUCHELLES LES QUESNOY", + "code_postal": "80132", + "coordonnees_gps": [ + 50.103603975, + 1.88589423231 + ], + "libelle_d_acheminement": "VAUCHELLES LES QUESNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88589423231, + 50.103603975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40d4a87aee7ce2f32d5a60c69e604cac298afb50", + "fields": { + "code_commune_insee": "80796", + "nom_de_la_commune": "VILLEROY", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9393238443, + 1.72733691616 + ], + "libelle_d_acheminement": "VILLEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72733691616, + 49.9393238443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6abb6b88b1f038f4df7bacece7909520c0bbe59", + "fields": { + "code_commune_insee": "80799", + "nom_de_la_commune": "VILLERS BRETONNEUX", + "code_postal": "80800", + "coordonnees_gps": [ + 49.8649909699, + 2.51946641308 + ], + "libelle_d_acheminement": "VILLERS BRETONNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51946641308, + 49.8649909699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da081f0135af0b7c91519b953246e84b2c0fffd1", + "fields": { + "code_commune_insee": "80808", + "nom_de_la_commune": "VIRONCHAUX", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2981889645, + 1.82569820077 + ], + "libelle_d_acheminement": "VIRONCHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82569820077, + 50.2981889645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5de1ae7197c2810e7a3732f30c9e6ab4fa9754e1", + "fields": { + "code_commune_insee": "80812", + "nom_de_la_commune": "VRAIGNES EN VERMANDOIS", + "code_postal": "80240", + "coordonnees_gps": [ + 49.8862393392, + 3.06728625058 + ], + "libelle_d_acheminement": "VRAIGNES EN VERMANDOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06728625058, + 49.8862393392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d97e7e1238ac3193336c8a471c80b45c38ea01fd", + "fields": { + "code_commune_insee": "80813", + "nom_de_la_commune": "VRAIGNES LES HORNOY", + "code_postal": "80640", + "coordonnees_gps": [ + 49.8241090128, + 1.90869386757 + ], + "libelle_d_acheminement": "VRAIGNES LES HORNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90869386757, + 49.8241090128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e20634a36cce3537a482f27d0fe86d705da5b318", + "fields": { + "code_commune_insee": "80814", + "nom_de_la_commune": "VRELY", + "code_postal": "80170", + "coordonnees_gps": [ + 49.7966377319, + 2.68672946995 + ], + "libelle_d_acheminement": "VRELY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68672946995, + 49.7966377319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30ce682106fc40c6534d65038b8b5dcda237d5f1", + "fields": { + "code_commune_insee": "80819", + "nom_de_la_commune": "WARGNIES", + "code_postal": "80670", + "coordonnees_gps": [ + 50.0364524864, + 2.25088888285 + ], + "libelle_d_acheminement": "WARGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25088888285, + 50.0364524864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96cc27e4a69c4973996a67f6dd41f8b660524448", + "fields": { + "code_commune_insee": "80823", + "nom_de_la_commune": "WARVILLERS", + "code_postal": "80170", + "coordonnees_gps": [ + 49.7798160362, + 2.69111887108 + ], + "libelle_d_acheminement": "WARVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69111887108, + 49.7798160362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6dc1455ad38b5d5f1030bd9c0ff02dfc767bd6f", + "fields": { + "code_commune_insee": "80827", + "nom_de_la_commune": "WOINCOURT", + "code_postal": "80520", + "coordonnees_gps": [ + 50.0628349006, + 1.5410106177 + ], + "libelle_d_acheminement": "WOINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5410106177, + 50.0628349006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df5d34552977b35ef8444b6e1858f49b91d01818", + "fields": { + "code_commune_insee": "80835", + "nom_de_la_commune": "YZEUX", + "code_postal": "80310", + "coordonnees_gps": [ + 49.9793186736, + 2.11002578255 + ], + "libelle_d_acheminement": "YZEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11002578255, + 49.9793186736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b435be8686dc932f6d8ae22141dd113d645bb860", + "fields": { + "code_commune_insee": "81001", + "nom_de_la_commune": "AGUTS", + "code_postal": "81470", + "coordonnees_gps": [ + 43.5319239166, + 1.92450141388 + ], + "libelle_d_acheminement": "AGUTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92450141388, + 43.5319239166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b410c15617e0d7ae8472998452b9b634f3d25818", + "fields": { + "code_commune_insee": "81002", + "nom_de_la_commune": "AIGUEFONDE", + "code_postal": "81200", + "coordonnees_gps": [ + 43.4928550174, + 2.32315581418 + ], + "libelle_d_acheminement": "AIGUEFONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32315581418, + 43.4928550174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3a424be2304860e63947cd5f574ea896720cffe", + "fields": { + "code_commune_insee": "81007", + "nom_de_la_commune": "ALOS", + "code_postal": "81140", + "coordonnees_gps": [ + 44.0205135175, + 1.87448422002 + ], + "libelle_d_acheminement": "ALOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87448422002, + 44.0205135175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c89c1631efa892491bec49fba7a116125a95bc1d", + "fields": { + "code_commune_insee": "81011", + "nom_de_la_commune": "AMBRES", + "code_postal": "81500", + "coordonnees_gps": [ + 43.7287344791, + 1.83182396743 + ], + "libelle_d_acheminement": "AMBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83182396743, + 43.7287344791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dd4e80e00e2600c420adfdbd4f01740368e7b28", + "fields": { + "code_commune_insee": "81014", + "nom_de_la_commune": "ANGLES", + "code_postal": "81260", + "coordonnees_gps": [ + 43.550474503, + 2.58241545036 + ], + "libelle_d_acheminement": "ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58241545036, + 43.550474503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3db21d7dd6681b345bc84d10b6727a7fdc1c73a4", + "fields": { + "code_commune_insee": "81020", + "nom_de_la_commune": "AUSSAC", + "code_postal": "81600", + "coordonnees_gps": [ + 43.8628657084, + 2.03857774636 + ], + "libelle_d_acheminement": "AUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03857774636, + 43.8628657084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37f65fb64ecb7186df7e0c8af3d22c9e17c3075d", + "fields": { + "code_commune_insee": "81022", + "nom_de_la_commune": "BANNIERES", + "code_postal": "81500", + "coordonnees_gps": [ + 43.6190407005, + 1.75804967667 + ], + "libelle_d_acheminement": "BANNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75804967667, + 43.6190407005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d91d701a03cd0d6e8064bf8ff0a583c7ad3920af", + "fields": { + "code_commune_insee": "81034", + "nom_de_la_commune": "BOISSEZON", + "code_postal": "81490", + "coordonnees_gps": [ + 43.572194321, + 2.40561286973 + ], + "libelle_d_acheminement": "BOISSEZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40561286973, + 43.572194321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "479d57456e0302e266bdc7bca3a6ca18e612ff1d", + "fields": { + "code_commune_insee": "81035", + "nom_de_la_commune": "BOURNAZEL", + "code_postal": "81170", + "coordonnees_gps": [ + 44.1008171987, + 1.96845675967 + ], + "libelle_d_acheminement": "BOURNAZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96845675967, + 44.1008171987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f570f8b92d48452512aca0cf26cac811ace64634", + "fields": { + "code_commune_insee": "81047", + "nom_de_la_commune": "CADIX", + "code_postal": "81340", + "coordonnees_gps": [ + 43.9764011774, + 2.4705615004 + ], + "libelle_d_acheminement": "CADIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4705615004, + 43.9764011774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acd4383907801194037b2a616d32d218b1db087d", + "fields": { + "code_commune_insee": "81051", + "nom_de_la_commune": "CAHUZAC SUR VERE", + "code_postal": "81140", + "coordonnees_gps": [ + 43.9863939929, + 1.91547444957 + ], + "libelle_d_acheminement": "CAHUZAC SUR VERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91547444957, + 43.9863939929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e644a76563b57c44edb0ad83c96b16693e0b9fe0", + "fields": { + "code_commune_insee": "81053", + "nom_de_la_commune": "CAMBOUNES", + "code_postal": "81260", + "coordonnees_gps": [ + 43.5907432712, + 2.43974230887 + ], + "libelle_d_acheminement": "CAMBOUNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43974230887, + 43.5907432712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b440b3b86c59a7de15d3bcec5fcfd393d6cd1e47", + "fields": { + "code_commune_insee": "81055", + "nom_de_la_commune": "LES CAMMAZES", + "code_postal": "81540", + "coordonnees_gps": [ + 43.4110858173, + 2.07834620707 + ], + "libelle_d_acheminement": "LES CAMMAZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07834620707, + 43.4110858173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d08f641342f778d4884242420a221586d3f9e0e", + "fields": { + "code_commune_insee": "81065", + "nom_de_la_commune": "CASTRES", + "code_postal": "81100", + "coordonnees_gps": [ + 43.6156511237, + 2.23787231587 + ], + "libelle_d_acheminement": "CASTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23787231587, + 43.6156511237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65728b876b49a2fa44cfc5f46517e2a1bd966bf4", + "fields": { + "code_commune_insee": "81067", + "nom_de_la_commune": "CESTAYROLS", + "code_postal": "81150", + "coordonnees_gps": [ + 43.9825675453, + 1.98780845646 + ], + "libelle_d_acheminement": "CESTAYROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98780845646, + 43.9825675453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6d6f774c9ebc85328b9520b5894c74e286a4a2d", + "fields": { + "code_commune_insee": "81071", + "nom_de_la_commune": "COURRIS", + "code_postal": "81340", + "coordonnees_gps": [ + 43.9567412395, + 2.40226789495 + ], + "libelle_d_acheminement": "COURRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40226789495, + 43.9567412395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b52fb99e842fce2a7957775e13b73e79ae360576", + "fields": { + "code_commune_insee": "81074", + "nom_de_la_commune": "CUNAC", + "code_postal": "81990", + "coordonnees_gps": [ + 43.9274396398, + 2.22514974494 + ], + "libelle_d_acheminement": "CUNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22514974494, + 43.9274396398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bde0532b4fde131630aa44dee4e6a48b6fe8072c", + "fields": { + "code_commune_insee": "81084", + "nom_de_la_commune": "ESCOUSSENS", + "code_postal": "81290", + "coordonnees_gps": [ + 43.4822756264, + 2.22873305615 + ], + "libelle_d_acheminement": "ESCOUSSENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22873305615, + 43.4822756264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41054d26d089f83e6be2790ea0cd87a363f99f7e", + "fields": { + "code_commune_insee": "81086", + "nom_de_la_commune": "ESPERAUSSES", + "code_postal": "81260", + "coordonnees_gps": [ + 43.6998410233, + 2.52506371565 + ], + "libelle_d_acheminement": "ESPERAUSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52506371565, + 43.6998410233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "048e3c5a11ee462f7078b990778ae8e37fb682b0", + "fields": { + "code_commune_insee": "81097", + "nom_de_la_commune": "FREJAIROLLES", + "code_postal": "81990", + "coordonnees_gps": [ + 43.8786600972, + 2.23043162457 + ], + "libelle_d_acheminement": "FREJAIROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23043162457, + 43.8786600972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46d0c4c36ba9e5b846a41578654dafd1f0f4fb46", + "fields": { + "code_commune_insee": "81108", + "nom_de_la_commune": "ITZAC", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0506305724, + 1.84654889285 + ], + "libelle_d_acheminement": "ITZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84654889285, + 44.0506305724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11a72d0127c196f2d60b3088fe35cd0414cbf8f6", + "fields": { + "code_commune_insee": "81112", + "nom_de_la_commune": "LABASTIDE DE LEVIS", + "code_postal": "81150", + "coordonnees_gps": [ + 43.9310810991, + 2.00269049249 + ], + "libelle_d_acheminement": "LABASTIDE DE LEVIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00269049249, + 43.9310810991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0da315d5a661c9d0bf49f8f90bac7d2a741cfac", + "fields": { + "code_commune_insee": "81114", + "nom_de_la_commune": "LABASTIDE GABAUSSE", + "code_postal": "81400", + "coordonnees_gps": [ + 44.0310798873, + 2.09978207665 + ], + "libelle_d_acheminement": "LABASTIDE GABAUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09978207665, + 44.0310798873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2234093f041fa329a02d11590896a879d195c847", + "fields": { + "code_commune_insee": "81116", + "nom_de_la_commune": "LABASTIDE ST GEORGES", + "code_postal": "81500", + "coordonnees_gps": [ + 43.6998934044, + 1.84536170011 + ], + "libelle_d_acheminement": "LABASTIDE ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84536170011, + 43.6998934044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff7919443fd5ff1c7b17c191677938d80d290ee7", + "fields": { + "code_commune_insee": "81127", + "nom_de_la_commune": "LACROISILLE", + "code_postal": "81470", + "coordonnees_gps": [ + 43.58053089, + 1.92863316637 + ], + "libelle_d_acheminement": "LACROISILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92863316637, + 43.58053089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6fb9241bfce62035a63858afd38cc93b31e53ff", + "fields": { + "code_commune_insee": "81128", + "nom_de_la_commune": "LACROUZETTE", + "code_postal": "81210", + "coordonnees_gps": [ + 43.6622260196, + 2.36167467964 + ], + "libelle_d_acheminement": "LACROUZETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36167467964, + 43.6622260196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d67f7e040147f532fee7d58fa82ab507bd0ba53a", + "fields": { + "code_commune_insee": "81146", + "nom_de_la_commune": "LIVERS CAZELLES", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0494424357, + 2.00041907308 + ], + "libelle_d_acheminement": "LIVERS CAZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00041907308, + 44.0494424357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41a2007c440f4aeec743d19043483155ca99b365", + "fields": { + "code_commune_insee": "81154", + "nom_de_la_commune": "MARNAVES", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0959603431, + 1.87162676035 + ], + "libelle_d_acheminement": "MARNAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87162676035, + 44.0959603431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2767b4a55a0cf221aecdbc83fb7296c168f2002", + "fields": { + "code_commune_insee": "81170", + "nom_de_la_commune": "MONESTIES", + "code_postal": "81640", + "coordonnees_gps": [ + 44.0787915889, + 2.09845237087 + ], + "libelle_d_acheminement": "MONESTIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09845237087, + 44.0787915889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74fe9cb7909a6a39e093a07b66d08577a0540bca", + "fields": { + "code_commune_insee": "81185", + "nom_de_la_commune": "MONTVALEN", + "code_postal": "81630", + "coordonnees_gps": [ + 43.8568846629, + 1.59279252787 + ], + "libelle_d_acheminement": "MONTVALEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59279252787, + 43.8568846629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a1575db92fac62185de6ecb472570a3a33259de", + "fields": { + "code_commune_insee": "81186", + "nom_de_la_commune": "MOULARES", + "code_postal": "81190", + "coordonnees_gps": [ + 44.0770712635, + 2.28567831942 + ], + "libelle_d_acheminement": "MOULARES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28567831942, + 44.0770712635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c95dbb86a29dcf46a5d1ed48d4f7b74eb40ecf34", + "fields": { + "code_commune_insee": "81187", + "nom_de_la_commune": "MOULAYRES", + "code_postal": "81300", + "coordonnees_gps": [ + 43.7043614884, + 2.02400479753 + ], + "libelle_d_acheminement": "MOULAYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02400479753, + 43.7043614884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c47b2c5824904c2fa0b5f843a8dc572889e56efc", + "fields": { + "code_commune_insee": "81189", + "nom_de_la_commune": "MOUZENS", + "code_postal": "81470", + "coordonnees_gps": [ + 43.5319509322, + 1.88969318814 + ], + "libelle_d_acheminement": "MOUZENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88969318814, + 43.5319509322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "142e85f0778c72622ae474b048aec4b0a77e1720", + "fields": { + "code_commune_insee": "81196", + "nom_de_la_commune": "NOAILHAC", + "code_postal": "81490", + "coordonnees_gps": [ + 43.5760317808, + 2.35409410035 + ], + "libelle_d_acheminement": "NOAILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35409410035, + 43.5760317808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77902897f6d3e9f78990ada534fb4c285e2b305a", + "fields": { + "code_commune_insee": "81197", + "nom_de_la_commune": "NOAILLES", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0122054489, + 1.99020662698 + ], + "libelle_d_acheminement": "NOAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99020662698, + 44.0122054489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99ae0853ccaafd570b56fb80cdf2890175c31d57", + "fields": { + "code_commune_insee": "81198", + "nom_de_la_commune": "ORBAN", + "code_postal": "81120", + "coordonnees_gps": [ + 43.8372858734, + 2.0783975338 + ], + "libelle_d_acheminement": "ORBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0783975338, + 43.8372858734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "091490f472ceca860ed9849f22d9d9a1251032fa", + "fields": { + "code_commune_insee": "81203", + "nom_de_la_commune": "PAULINET", + "code_postal": "81250", + "coordonnees_gps": [ + 43.8471083699, + 2.43945006878 + ], + "libelle_d_acheminement": "PAULINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43945006878, + 43.8471083699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ada4197574f5566e78414912ae9b76e12f5c5ab", + "fields": { + "code_commune_insee": "81212", + "nom_de_la_commune": "PRADES", + "code_postal": "81220", + "coordonnees_gps": [ + 43.6119091506, + 1.9714190668 + ], + "libelle_d_acheminement": "PRADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9714190668, + 43.6119091506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5077f18b038d37b2fdf38987fc8389213048f22", + "fields": { + "code_commune_insee": "81214", + "nom_de_la_commune": "PUECHOURSI", + "code_postal": "81470", + "coordonnees_gps": [ + 43.5139823585, + 1.90748676323 + ], + "libelle_d_acheminement": "PUECHOURSI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90748676323, + 43.5139823585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92f8044790e3562ff5fce02e682ae920df4fb74a", + "fields": { + "code_commune_insee": "81215", + "nom_de_la_commune": "PUYBEGON", + "code_postal": "81390", + "coordonnees_gps": [ + 43.7801538016, + 1.89684517296 + ], + "libelle_d_acheminement": "PUYBEGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89684517296, + 43.7801538016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0401960754077b527103fa09983b9c1ee741df70", + "fields": { + "code_commune_insee": "81218", + "nom_de_la_commune": "PUYGOUZON", + "code_postal": "81990", + "coordonnees_gps": [ + 43.8884573228, + 2.16955643928 + ], + "libelle_d_acheminement": "PUYGOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16955643928, + 43.8884573228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a72626efccefb53838b998b9150edf3711f26244", + "fields": { + "code_commune_insee": "81227", + "nom_de_la_commune": "ROQUECOURBE", + "code_postal": "81210", + "coordonnees_gps": [ + 43.6726544083, + 2.27758521528 + ], + "libelle_d_acheminement": "ROQUECOURBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27758521528, + 43.6726544083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5ac7bc95d839cdbc76fc040278cd22595ba25dd", + "fields": { + "code_commune_insee": "81236", + "nom_de_la_commune": "ST AGNAN", + "code_postal": "81500", + "coordonnees_gps": [ + 43.6956511222, + 1.74062164664 + ], + "libelle_d_acheminement": "ST AGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74062164664, + 43.6956511222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "148c61940f2b19eb321bb0caec8ec1bb1496f396", + "fields": { + "code_commune_insee": "81240", + "nom_de_la_commune": "ST ANDRE", + "code_postal": "81250", + "coordonnees_gps": [ + 43.9326309582, + 2.45817547307 + ], + "libelle_d_acheminement": "ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45817547307, + 43.9326309582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b751e85148687c93344366e1f6c5ab6506c2695", + "fields": { + "code_commune_insee": "81248", + "nom_de_la_commune": "ST GAUZENS", + "code_postal": "81390", + "coordonnees_gps": [ + 43.7421086865, + 1.88132892487 + ], + "libelle_d_acheminement": "ST GAUZENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88132892487, + 43.7421086865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fad198d8e610bba2622b1206cf7fe7749e5b992d", + "fields": { + "code_commune_insee": "81257", + "nom_de_la_commune": "ST JUERY", + "code_postal": "81160", + "coordonnees_gps": [ + 43.9385571465, + 2.22614415314 + ], + "libelle_d_acheminement": "ST JUERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22614415314, + 43.9385571465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ea3f8f1e3a9c045d737e1f9295caea09549ffb7", + "fields": { + "code_commune_insee": "81264", + "nom_de_la_commune": "ST MICHEL LABADIE", + "code_postal": "81340", + "coordonnees_gps": [ + 44.0067895923, + 2.42805040105 + ], + "libelle_d_acheminement": "ST MICHEL LABADIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42805040105, + 44.0067895923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9456c5db83d117cf53ad5c05136b23c3d9f5f0e", + "fields": { + "code_commune_insee": "81268", + "nom_de_la_commune": "ST SALVI DE CARCAVES", + "code_postal": "81530", + "coordonnees_gps": [ + 43.7975079038, + 2.59502148525 + ], + "libelle_d_acheminement": "ST SALVI DE CARCAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59502148525, + 43.7975079038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbc97b8694a125a0a13a5f044d4d2614ad935822", + "fields": { + "code_commune_insee": "81272", + "nom_de_la_commune": "ST URCISSE", + "code_postal": "81630", + "coordonnees_gps": [ + 43.9335030171, + 1.60695307526 + ], + "libelle_d_acheminement": "ST URCISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60695307526, + 43.9335030171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2ac8bf284d4a1205b582a11a0df55a4765a98f4", + "fields": { + "code_commune_insee": "81278", + "nom_de_la_commune": "SAUVETERRE", + "code_postal": "81240", + "coordonnees_gps": [ + 43.4536167726, + 2.55991346733 + ], + "libelle_d_acheminement": "SAUVETERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55991346733, + 43.4536167726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab9d218827b16c91dbcee202d15fb1d792d240aa", + "fields": { + "code_commune_insee": "81280", + "nom_de_la_commune": "LE SEGUR", + "code_postal": "81640", + "coordonnees_gps": [ + 44.1078756116, + 2.06217652452 + ], + "libelle_d_acheminement": "LE SEGUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06217652452, + 44.1078756116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "437def97e771a29cd6af985dd9c9f6aaa901dc00", + "fields": { + "code_commune_insee": "81282", + "nom_de_la_commune": "SENAUX", + "code_postal": "81530", + "coordonnees_gps": [ + 43.7659564788, + 2.61566505316 + ], + "libelle_d_acheminement": "SENAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61566505316, + 43.7659564788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b1afb842171d85870f387e9879901b2d62954e1", + "fields": { + "code_commune_insee": "81284", + "nom_de_la_commune": "LE SEQUESTRE", + "code_postal": "81990", + "coordonnees_gps": [ + 43.9105402335, + 2.10655664211 + ], + "libelle_d_acheminement": "LE SEQUESTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10655664211, + 43.9105402335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45953910ee5b2d278057c89e6504a44c84d6745c", + "fields": { + "code_commune_insee": "81287", + "nom_de_la_commune": "SIEURAC", + "code_postal": "81120", + "coordonnees_gps": [ + 43.8097363863, + 2.08715323325 + ], + "libelle_d_acheminement": "SIEURAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08715323325, + 43.8097363863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c74052ae0cb14d02b19c2efb950dc2a1cd76544f", + "fields": { + "code_commune_insee": "81291", + "nom_de_la_commune": "TAIX", + "code_postal": "81130", + "coordonnees_gps": [ + 44.009592574, + 2.11973456275 + ], + "libelle_d_acheminement": "TAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11973456275, + 44.009592574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1879352f31d0aee5c096e8469a4b4dd122280770", + "fields": { + "code_commune_insee": "81294", + "nom_de_la_commune": "TECOU", + "code_postal": "81600", + "coordonnees_gps": [ + 43.8433118928, + 1.93529190709 + ], + "libelle_d_acheminement": "TECOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93529190709, + 43.8433118928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7493fd9ecbbe810307019d8e3289d87ad1880ec", + "fields": { + "code_commune_insee": "81307", + "nom_de_la_commune": "VALDURENQUE", + "code_postal": "81090", + "coordonnees_gps": [ + 43.5713585994, + 2.3109213574 + ], + "libelle_d_acheminement": "VALDURENQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3109213574, + 43.5713585994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8616a32cca2fb32f69de84d678db01e63811f21c", + "fields": { + "code_commune_insee": "81314", + "nom_de_la_commune": "VIANE", + "code_postal": "81530", + "coordonnees_gps": [ + 43.7463791863, + 2.58683700675 + ], + "libelle_d_acheminement": "VIANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58683700675, + 43.7463791863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eea49eb3e662edaa262494c4cc7073ac01be54b4", + "fields": { + "code_commune_insee": "81319", + "nom_de_la_commune": "VILLENEUVE SUR VERE", + "code_postal": "81130", + "coordonnees_gps": [ + 44.0063451197, + 2.03043286247 + ], + "libelle_d_acheminement": "VILLENEUVE SUR VERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03043286247, + 44.0063451197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4951828ffbd1975e255cc1510d77ef77cc72174a", + "fields": { + "code_commune_insee": "81320", + "nom_de_la_commune": "VINDRAC ALAYRAC", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0596168532, + 1.90210640065 + ], + "libelle_d_acheminement": "VINDRAC ALAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90210640065, + 44.0596168532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74f09e03f20cc81f2a8febd39154ab6b77b22373", + "fields": { + "code_commune_insee": "81323", + "nom_de_la_commune": "VITERBE", + "code_postal": "81220", + "coordonnees_gps": [ + 43.677590198, + 1.91623680192 + ], + "libelle_d_acheminement": "VITERBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91623680192, + 43.677590198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c9561741d54d0af66f12c889339601b4aa45bd0", + "fields": { + "code_commune_insee": "82003", + "nom_de_la_commune": "ANGEVILLE", + "code_postal": "82210", + "coordonnees_gps": [ + 43.9938181839, + 1.03112257966 + ], + "libelle_d_acheminement": "ANGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03112257966, + 43.9938181839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bdd4370efcdbc534fbdb673a3f3f1d6dfa9a9b5", + "fields": { + "code_commune_insee": "82006", + "nom_de_la_commune": "AUTERIVE", + "code_postal": "82500", + "coordonnees_gps": [ + 43.8551653218, + 0.970551762062 + ], + "libelle_d_acheminement": "AUTERIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.970551762062, + 43.8551653218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b2d999d45d24d96b8fcf2762905878930ec8dee", + "fields": { + "code_commune_insee": "82009", + "nom_de_la_commune": "BALIGNAC", + "code_postal": "82120", + "coordonnees_gps": [ + 43.9557351784, + 0.874892919974 + ], + "libelle_d_acheminement": "BALIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.874892919974, + 43.9557351784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8fa55b0ca21261102ee17393aafed85f5c35a1a", + "fields": { + "code_commune_insee": "82011", + "nom_de_la_commune": "BARRY D ISLEMADE", + "code_postal": "82290", + "coordonnees_gps": [ + 44.0727114625, + 1.25300673075 + ], + "libelle_d_acheminement": "BARRY D ISLEMADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25300673075, + 44.0727114625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3173000d37b99e66052dec416b5de7e1e9a91746", + "fields": { + "code_commune_insee": "82015", + "nom_de_la_commune": "BELBEZE EN LOMAGNE", + "code_postal": "82500", + "coordonnees_gps": [ + 43.9057808814, + 1.07014719349 + ], + "libelle_d_acheminement": "BELBEZE EN LOMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07014719349, + 43.9057808814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cac565059a98daedffc53ad0c03a7e6d67a3dce", + "fields": { + "code_commune_insee": "82019", + "nom_de_la_commune": "BOUDOU", + "code_postal": "82200", + "coordonnees_gps": [ + 44.1038305827, + 1.01575160815 + ], + "libelle_d_acheminement": "BOUDOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01575160815, + 44.1038305827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ea460170b867627922a220ea71d082c5a19b33b", + "fields": { + "code_commune_insee": "82025", + "nom_de_la_commune": "BRESSOLS", + "code_postal": "82710", + "coordonnees_gps": [ + 43.9544945655, + 1.31611180901 + ], + "libelle_d_acheminement": "BRESSOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31611180901, + 43.9544945655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e219a74923b46f37d91f1a43264bc1316bbadb21", + "fields": { + "code_commune_insee": "82026", + "nom_de_la_commune": "BRUNIQUEL", + "code_postal": "82800", + "coordonnees_gps": [ + 44.0521980341, + 1.66009719751 + ], + "libelle_d_acheminement": "BRUNIQUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66009719751, + 44.0521980341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b435ba96907b8c200a488575138817f3b667dd53", + "fields": { + "code_commune_insee": "82042", + "nom_de_la_commune": "CAZES MONDENARD", + "code_postal": "82110", + "coordonnees_gps": [ + 44.2128308252, + 1.21516583038 + ], + "libelle_d_acheminement": "CAZES MONDENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21516583038, + 44.2128308252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc2fe5c69302bf70a10581efe5552b65cd99540c", + "fields": { + "code_commune_insee": "82043", + "nom_de_la_commune": "COMBEROUGER", + "code_postal": "82600", + "coordonnees_gps": [ + 43.8719884875, + 1.09282788935 + ], + "libelle_d_acheminement": "COMBEROUGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09282788935, + 43.8719884875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dde900f24d38ab660b20867caaf0c89af3f93127", + "fields": { + "code_commune_insee": "82050", + "nom_de_la_commune": "DUNES", + "code_postal": "82340", + "coordonnees_gps": [ + 44.0864807376, + 0.773515942435 + ], + "libelle_d_acheminement": "DUNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.773515942435, + 44.0864807376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "357e034d74d69a5aa91b72f4e6ec86a755ebf619", + "fields": { + "code_commune_insee": "82053", + "nom_de_la_commune": "ESCAZEAUX", + "code_postal": "82500", + "coordonnees_gps": [ + 43.836046459, + 1.02957097257 + ], + "libelle_d_acheminement": "ESCAZEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02957097257, + 43.836046459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "478d08e56e8bb1ebbbdb4751082b6001adf90c21", + "fields": { + "code_commune_insee": "82062", + "nom_de_la_commune": "FINHAN", + "code_postal": "82700", + "coordonnees_gps": [ + 43.9126951654, + 1.21926326685 + ], + "libelle_d_acheminement": "FINHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21926326685, + 43.9126951654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17ef602f279f18a9bdee7c923f81ae27e46a499c", + "fields": { + "code_commune_insee": "82064", + "nom_de_la_commune": "GARIES", + "code_postal": "82500", + "coordonnees_gps": [ + 43.8107671631, + 1.03366935308 + ], + "libelle_d_acheminement": "GARIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03366935308, + 43.8107671631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "084d4ef2ad38959ef23ad3942023ded479e0cf7f", + "fields": { + "code_commune_insee": "82073", + "nom_de_la_commune": "GOUDOURVILLE", + "code_postal": "82400", + "coordonnees_gps": [ + 44.1130087288, + 0.925431531851 + ], + "libelle_d_acheminement": "GOUDOURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.925431531851, + 44.1130087288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa2e23a9599eec613f95e41a928e470e782af5be", + "fields": { + "code_commune_insee": "82077", + "nom_de_la_commune": "LABARTHE", + "code_postal": "82220", + "coordonnees_gps": [ + 44.2091624963, + 1.31689415927 + ], + "libelle_d_acheminement": "LABARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31689415927, + 44.2091624963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d541e56500e5a0aef82b03e091971096788371d", + "fields": { + "code_commune_insee": "82081", + "nom_de_la_commune": "LABOURGADE", + "code_postal": "82100", + "coordonnees_gps": [ + 43.9566434568, + 1.09237967165 + ], + "libelle_d_acheminement": "LABOURGADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09237967165, + 43.9566434568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b25a66010cac0ee16c41e6fbbd2ac74ad8d94a40", + "fields": { + "code_commune_insee": "82086", + "nom_de_la_commune": "LAFITTE", + "code_postal": "82100", + "coordonnees_gps": [ + 43.9737693786, + 1.10663393727 + ], + "libelle_d_acheminement": "LAFITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10663393727, + 43.9737693786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "416ed7998b69522097a0c1279ce0844e61fec569", + "fields": { + "code_commune_insee": "82090", + "nom_de_la_commune": "LAMOTHE CAPDEVILLE", + "code_postal": "82130", + "coordonnees_gps": [ + 44.0932619829, + 1.38976564928 + ], + "libelle_d_acheminement": "LAMOTHE CAPDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38976564928, + 44.0932619829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d967eb96be0d51e26edc69a36792f83cde3ad05", + "fields": { + "code_commune_insee": "82092", + "nom_de_la_commune": "LAPENCHE", + "code_postal": "82240", + "coordonnees_gps": [ + 44.223694472, + 1.5730652063 + ], + "libelle_d_acheminement": "LAPENCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5730652063, + 44.223694472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff9217e3405c9002ad51fe99f3a7047400292d72", + "fields": { + "code_commune_insee": "82103", + "nom_de_la_commune": "MARIGNAC", + "code_postal": "82500", + "coordonnees_gps": [ + 43.8418091084, + 0.916264916273 + ], + "libelle_d_acheminement": "MARIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.916264916273, + 43.8418091084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2b3c8df4c2dc16c12e610f2642803c92b6469bd", + "fields": { + "code_commune_insee": "82108", + "nom_de_la_commune": "MEAUZAC", + "code_postal": "82290", + "coordonnees_gps": [ + 44.0954617752, + 1.23041071919 + ], + "libelle_d_acheminement": "MEAUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23041071919, + 44.0954617752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ebc806cd888971500b4c58cdc65f3b9f2548f0d", + "fields": { + "code_commune_insee": "82109", + "nom_de_la_commune": "MERLES", + "code_postal": "82210", + "coordonnees_gps": [ + 44.0647889391, + 0.966661565341 + ], + "libelle_d_acheminement": "MERLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.966661565341, + 44.0647889391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d39630120d6d485ecdc9f379309045540e052ba", + "fields": { + "code_commune_insee": "82111", + "nom_de_la_commune": "MIRAMONT DE QUERCY", + "code_postal": "82190", + "coordonnees_gps": [ + 44.2285744993, + 1.05102472854 + ], + "libelle_d_acheminement": "MIRAMONT DE QUERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05102472854, + 44.2285744993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f6ebf736e227e5d83f1721f160ca537bab49533", + "fields": { + "code_commune_insee": "82128", + "nom_de_la_commune": "MONTFERMIER", + "code_postal": "82270", + "coordonnees_gps": [ + 44.2279188448, + 1.41564723711 + ], + "libelle_d_acheminement": "MONTFERMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41564723711, + 44.2279188448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0dae13af918f33422eb3ce86a77ff9167493d37", + "fields": { + "code_commune_insee": "82129", + "nom_de_la_commune": "MONTGAILLARD", + "code_postal": "82120", + "coordonnees_gps": [ + 43.9301148287, + 0.878320223678 + ], + "libelle_d_acheminement": "MONTGAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.878320223678, + 43.9301148287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b352af5484c623f966a513ceb8a2cd149aeabb7", + "fields": { + "code_commune_insee": "82144", + "nom_de_la_commune": "PUYCORNET", + "code_postal": "82220", + "coordonnees_gps": [ + 44.1546581959, + 1.32199868953 + ], + "libelle_d_acheminement": "PUYCORNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32199868953, + 44.1546581959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "504549d6bf923596cec60a0e1d245fa3844337ab", + "fields": { + "code_commune_insee": "82149", + "nom_de_la_commune": "REALVILLE", + "code_postal": "82440", + "coordonnees_gps": [ + 44.1281472573, + 1.48081390272 + ], + "libelle_d_acheminement": "REALVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48081390272, + 44.1281472573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98bd56d4b96506fed27e3ad5e827b55389f2492c", + "fields": { + "code_commune_insee": "82154", + "nom_de_la_commune": "ST AMANS DE PELLAGAL", + "code_postal": "82110", + "coordonnees_gps": [ + 44.2216170382, + 1.12813639744 + ], + "libelle_d_acheminement": "ST AMANS DE PELLAGAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12813639744, + 44.2216170382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d102426d0fae5e3116dfef2395eb648ccbaa6a8", + "fields": { + "code_commune_insee": "82165", + "nom_de_la_commune": "ST LOUP", + "code_postal": "82340", + "coordonnees_gps": [ + 44.0833269005, + 0.852281972741 + ], + "libelle_d_acheminement": "ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.852281972741, + 44.0833269005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73fc88f0ed8e1ef3b14c1388dcd6171dab1d9ec2", + "fields": { + "code_commune_insee": "82169", + "nom_de_la_commune": "ST NICOLAS DE LA GRAVE", + "code_postal": "82210", + "coordonnees_gps": [ + 44.0658425315, + 1.02023020877 + ], + "libelle_d_acheminement": "ST NICOLAS DE LA GRAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02023020877, + 44.0658425315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c45a50aea7c72cf544d05797e8a2495beebfcbf", + "fields": { + "code_commune_insee": "82172", + "nom_de_la_commune": "ST PROJET", + "code_postal": "82160", + "coordonnees_gps": [ + 44.3109210238, + 1.77087641196 + ], + "libelle_d_acheminement": "ST PROJET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77087641196, + 44.3109210238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d676b5cb2f86154fa971443163145b2bfad0f0c6", + "fields": { + "code_commune_insee": "82176", + "nom_de_la_commune": "LA SALVETAT BELMONTET", + "code_postal": "82230", + "coordonnees_gps": [ + 43.966657971, + 1.51277201419 + ], + "libelle_d_acheminement": "LA SALVETAT BELMONTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51277201419, + 43.966657971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f4f14dd9c4d9a117114cc6ab50c6a2202928671", + "fields": { + "code_commune_insee": "82179", + "nom_de_la_commune": "SEPTFONDS", + "code_postal": "82240", + "coordonnees_gps": [ + 44.1765759652, + 1.61739308656 + ], + "libelle_d_acheminement": "SEPTFONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61739308656, + 44.1765759652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fc0b65b1d80c58193484daf491982c7266e9909", + "fields": { + "code_commune_insee": "82180", + "nom_de_la_commune": "SERIGNAC", + "code_postal": "82500", + "coordonnees_gps": [ + 43.9244393445, + 1.02486200605 + ], + "libelle_d_acheminement": "SERIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02486200605, + 43.9244393445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6e8d515b9bc6e4b59279b0ea70dcad970b9245e", + "fields": { + "code_commune_insee": "82185", + "nom_de_la_commune": "VALEILLES", + "code_postal": "82150", + "coordonnees_gps": [ + 44.3624095008, + 0.915058269132 + ], + "libelle_d_acheminement": "VALEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.915058269132, + 44.3624095008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea833b3e1d3a8c0306745dc12d68b26d87563879", + "fields": { + "code_commune_insee": "83001", + "nom_de_la_commune": "LES ADRETS DE L ESTEREL", + "code_postal": "83600", + "coordonnees_gps": [ + 43.5356229284, + 6.8110879666 + ], + "libelle_d_acheminement": "LES ADRETS DE L ESTEREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8110879666, + 43.5356229284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2da9e83fe76f1efc27153e386574c5a0728dd8e0", + "fields": { + "code_commune_insee": "83004", + "nom_de_la_commune": "LES ARCS", + "code_postal": "83460", + "coordonnees_gps": [ + 43.4509882105, + 6.48970221222 + ], + "libelle_d_acheminement": "LES ARCS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48970221222, + 43.4509882105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "252a6cda25d894df69bcaca069145b8217ccfc73", + "fields": { + "code_commune_insee": "83013", + "nom_de_la_commune": "LA BASTIDE", + "code_postal": "83840", + "coordonnees_gps": [ + 43.7479175346, + 6.63264027806 + ], + "libelle_d_acheminement": "LA BASTIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63264027806, + 43.7479175346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31cf0cf23d0e15e628eea66d541bdc7fb634ae21", + "fields": { + "code_commune_insee": "83023", + "nom_de_la_commune": "BRIGNOLES", + "code_postal": "83170", + "coordonnees_gps": [ + 43.3992941902, + 6.07740244296 + ], + "libelle_d_acheminement": "BRIGNOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07740244296, + 43.3992941902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f576bae95c97b79be15d30b2dc47cf1ad8d44ff2", + "fields": { + "code_commune_insee": "83029", + "nom_de_la_commune": "CALLIAN", + "code_postal": "83440", + "coordonnees_gps": [ + 43.6125180228, + 6.75708895004 + ], + "libelle_d_acheminement": "CALLIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75708895004, + 43.6125180228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1085603791f73efeef4293570515c05764918052", + "fields": { + "ligne_5": "LAOUQUE", + "code_commune_insee": "83035", + "libelle_d_acheminement": "LE CASTELLET", + "code_postal": "83330", + "nom_de_la_commune": "LE CASTELLET", + "coordonnees_gps": [ + 43.227667489, + 5.76560108367 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76560108367, + 43.227667489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "976d3fcfb4f5d68885783fd82ce4e7596434ae07", + "fields": { + "ligne_5": "LE CAMP", + "code_commune_insee": "83035", + "libelle_d_acheminement": "LE CASTELLET", + "code_postal": "83330", + "nom_de_la_commune": "LE CASTELLET", + "coordonnees_gps": [ + 43.227667489, + 5.76560108367 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76560108367, + 43.227667489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60432ba12f4a6ba9a21d438b4c6fa2083b6280ba", + "fields": { + "code_commune_insee": "83037", + "nom_de_la_commune": "LA CELLE", + "code_postal": "83170", + "coordonnees_gps": [ + 43.384370351, + 5.99861411611 + ], + "libelle_d_acheminement": "LA CELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99861411611, + 43.384370351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bc57842fc198e79adc5b50f4af7b17d55d470b8", + "fields": { + "code_commune_insee": "83041", + "nom_de_la_commune": "CLAVIERS", + "code_postal": "83830", + "coordonnees_gps": [ + 43.5988361842, + 6.58569908601 + ], + "libelle_d_acheminement": "CLAVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58569908601, + 43.5988361842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67990725f12a62db015fd529e98fec85fe1c8315", + "fields": { + "code_commune_insee": "83046", + "nom_de_la_commune": "COTIGNAC", + "code_postal": "83570", + "coordonnees_gps": [ + 43.5233757149, + 6.14490029042 + ], + "libelle_d_acheminement": "COTIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14490029042, + 43.5233757149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bc09add05f545df56db9db76d606ce526f0f803", + "fields": { + "code_commune_insee": "83052", + "nom_de_la_commune": "ESPARRON", + "code_postal": "83560", + "coordonnees_gps": [ + 43.5874697743, + 5.84872066218 + ], + "libelle_d_acheminement": "ESPARRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84872066218, + 43.5874697743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1fb214fc6b3fe2efaba2b8a02c9cdd05c969913", + "fields": { + "code_commune_insee": "83055", + "nom_de_la_commune": "FAYENCE", + "code_postal": "83440", + "coordonnees_gps": [ + 43.6103345822, + 6.67843279926 + ], + "libelle_d_acheminement": "FAYENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67843279926, + 43.6103345822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "266782a311427efd465db67ed8cd2ad6ba59278c", + "fields": { + "code_commune_insee": "83061", + "nom_de_la_commune": "FREJUS", + "code_postal": "83600", + "coordonnees_gps": [ + 43.4719558114, + 6.76361597424 + ], + "libelle_d_acheminement": "FREJUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76361597424, + 43.4719558114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaacb935ca6bdfc25293c5503f616e5a0ddb071d", + "fields": { + "code_commune_insee": "83066", + "nom_de_la_commune": "GINASSERVIS", + "code_postal": "83560", + "coordonnees_gps": [ + 43.6592918147, + 5.83752000648 + ], + "libelle_d_acheminement": "GINASSERVIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83752000648, + 43.6592918147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91e44210c7b002b1d054d022769c6965816ae8cb", + "fields": { + "code_commune_insee": "83069", + "nom_de_la_commune": "HYERES", + "code_postal": "83400", + "coordonnees_gps": [ + 43.1018713534, + 6.18898508469 + ], + "libelle_d_acheminement": "HYERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18898508469, + 43.1018713534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26bfd830adb8312915060dce001eb4bf1f8f1e1b", + "fields": { + "ligne_5": "PORQUEROLLES", + "code_commune_insee": "83069", + "libelle_d_acheminement": "HYERES", + "code_postal": "83400", + "nom_de_la_commune": "HYERES", + "coordonnees_gps": [ + 43.1018713534, + 6.18898508469 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18898508469, + 43.1018713534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22d5236ab5309edba29dd4108fbbe374ad7a4d5f", + "fields": { + "ligne_5": "CAVALIERE", + "code_commune_insee": "83070", + "libelle_d_acheminement": "LE LAVANDOU", + "code_postal": "83980", + "nom_de_la_commune": "LE LAVANDOU", + "coordonnees_gps": [ + 43.1656102964, + 6.41231277863 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41231277863, + 43.1656102964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0d3a697897e625471f9d24af9e16dbb71bec9ee", + "fields": { + "code_commune_insee": "83080", + "nom_de_la_commune": "MONS", + "code_postal": "83440", + "coordonnees_gps": [ + 43.6989466461, + 6.70893258048 + ], + "libelle_d_acheminement": "MONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70893258048, + 43.6989466461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01553eda4d4b4cd2322f0a7b5b82910327c8dcc1", + "fields": { + "code_commune_insee": "83089", + "nom_de_la_commune": "OLLIERES", + "code_postal": "83470", + "coordonnees_gps": [ + 43.5101955138, + 5.81646293354 + ], + "libelle_d_acheminement": "OLLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81646293354, + 43.5101955138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a62484ae295626b702303f2a2b1155401075ecf", + "fields": { + "code_commune_insee": "83091", + "nom_de_la_commune": "PIERREFEU DU VAR", + "code_postal": "83390", + "coordonnees_gps": [ + 43.2345472455, + 6.17955823473 + ], + "libelle_d_acheminement": "PIERREFEU DU VAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17955823473, + 43.2345472455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9deb645e12219e976878d8934b2b4b482d7c0b70", + "fields": { + "code_commune_insee": "83096", + "nom_de_la_commune": "POURCIEUX", + "code_postal": "83470", + "coordonnees_gps": [ + 43.4646440633, + 5.78860890398 + ], + "libelle_d_acheminement": "POURCIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78860890398, + 43.4646440633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78de723818b4e2bacd9f549da5e7b0acfe6007df", + "fields": { + "code_commune_insee": "83099", + "nom_de_la_commune": "PUGET SUR ARGENS", + "code_postal": "83480", + "coordonnees_gps": [ + 43.4717671252, + 6.68628195857 + ], + "libelle_d_acheminement": "PUGET SUR ARGENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68628195857, + 43.4717671252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abe77861272fabfcc9c6370dd627fd2c4f5b9b87", + "fields": { + "code_commune_insee": "83102", + "nom_de_la_commune": "REGUSSE", + "code_postal": "83630", + "coordonnees_gps": [ + 43.6676978951, + 6.11814572566 + ], + "libelle_d_acheminement": "REGUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11814572566, + 43.6676978951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28476a156542f879193343106b8064c4d26c1a0a", + "fields": { + "code_commune_insee": "83104", + "nom_de_la_commune": "RIANS", + "code_postal": "83560", + "coordonnees_gps": [ + 43.6055023788, + 5.74132523759 + ], + "libelle_d_acheminement": "RIANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74132523759, + 43.6055023788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca65ae46bb1cdd7301dc2c2d2f71b528774564e8", + "fields": { + "ligne_5": "LA MADRAGUE", + "code_commune_insee": "83112", + "libelle_d_acheminement": "ST CYR SUR MER", + "code_postal": "83270", + "nom_de_la_commune": "ST CYR SUR MER", + "coordonnees_gps": [ + 43.1720355248, + 5.70832603708 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70832603708, + 43.1720355248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9aad6e9e6a8027818607362b97f56e5fbf925a8", + "fields": { + "ligne_5": "BOULOURIS", + "code_commune_insee": "83118", + "libelle_d_acheminement": "ST RAPHAEL", + "code_postal": "83700", + "nom_de_la_commune": "ST RAPHAEL", + "coordonnees_gps": [ + 43.4574625431, + 6.84734210398 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84734210398, + 43.4574625431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "864ec5e80c5621de4d54288e98932d17e0cd4373", + "fields": { + "code_commune_insee": "83121", + "nom_de_la_commune": "SALERNES", + "code_postal": "83690", + "coordonnees_gps": [ + 43.5621099339, + 6.22873067235 + ], + "libelle_d_acheminement": "SALERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22873067235, + 43.5621099339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec486f0450b180152ed39b6570e8c90f467c717a", + "fields": { + "code_commune_insee": "83123", + "nom_de_la_commune": "SANARY SUR MER", + "code_postal": "83110", + "coordonnees_gps": [ + 43.138282853, + 5.79588814177 + ], + "libelle_d_acheminement": "SANARY SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79588814177, + 43.138282853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cc6509d23f09b81f916a7e11cd8f8613ab90289", + "fields": { + "code_commune_insee": "83124", + "nom_de_la_commune": "SEILLANS", + "code_postal": "83440", + "coordonnees_gps": [ + 43.6466457482, + 6.61301408536 + ], + "libelle_d_acheminement": "SEILLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61301408536, + 43.6466457482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80c9b2de47cf81a87e2e775fa21e879c246d983e", + "fields": { + "code_commune_insee": "83128", + "nom_de_la_commune": "SILLANS LA CASCADE", + "code_postal": "83690", + "coordonnees_gps": [ + 43.5658824056, + 6.16515240575 + ], + "libelle_d_acheminement": "SILLANS LA CASCADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16515240575, + 43.5658824056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed7595de27ba599dd9d79b61ed4711372fc5bdda", + "fields": { + "code_commune_insee": "83137", + "nom_de_la_commune": "TOULON", + "code_postal": "83000", + "coordonnees_gps": [ + 43.1361589728, + 5.93239634249 + ], + "libelle_d_acheminement": "TOULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93239634249, + 43.1361589728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "070a0c5c8fe202ed2ec03d9cb181887596575cdd", + "fields": { + "code_commune_insee": "83139", + "nom_de_la_commune": "TOURTOUR", + "code_postal": "83690", + "coordonnees_gps": [ + 43.5935800875, + 6.310682972 + ], + "libelle_d_acheminement": "TOURTOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.310682972, + 43.5935800875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d2625a24c93c01e4078971208c3c643c556f1b1", + "fields": { + "code_commune_insee": "83142", + "nom_de_la_commune": "TRIGANCE", + "code_postal": "83840", + "coordonnees_gps": [ + 43.7414008338, + 6.43648594376 + ], + "libelle_d_acheminement": "TRIGANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43648594376, + 43.7414008338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33c20f30574946dd7410cf95011b71e40bc343d0", + "fields": { + "code_commune_insee": "83145", + "nom_de_la_commune": "VARAGES", + "code_postal": "83670", + "coordonnees_gps": [ + 43.5957332501, + 5.94441099712 + ], + "libelle_d_acheminement": "VARAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94441099712, + 43.5957332501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3a356e066fc28d76d02b239fcfef2508b2688de", + "fields": { + "code_commune_insee": "83147", + "nom_de_la_commune": "VERIGNON", + "code_postal": "83630", + "coordonnees_gps": [ + 43.6625284051, + 6.27650359244 + ], + "libelle_d_acheminement": "VERIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27650359244, + 43.6625284051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f69fa27e4293e16e532b0e93cb42fdbdc61cd23", + "fields": { + "code_commune_insee": "83148", + "nom_de_la_commune": "VIDAUBAN", + "code_postal": "83550", + "coordonnees_gps": [ + 43.4015046271, + 6.44908485499 + ], + "libelle_d_acheminement": "VIDAUBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44908485499, + 43.4015046271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69fff29ddec7aca6115d7fd15c93492c5c459383", + "fields": { + "code_commune_insee": "84001", + "nom_de_la_commune": "ALTHEN DES PALUDS", + "code_postal": "84210", + "coordonnees_gps": [ + 44.0048087082, + 4.95793804186 + ], + "libelle_d_acheminement": "ALTHEN DES PALUDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95793804186, + 44.0048087082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1378ceeade5ac829f41c58c2d77bb3a746b7952", + "fields": { + "code_commune_insee": "84018", + "nom_de_la_commune": "BLAUVAC", + "code_postal": "84570", + "coordonnees_gps": [ + 44.0369893716, + 5.24329379673 + ], + "libelle_d_acheminement": "BLAUVAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24329379673, + 44.0369893716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65d92fc8e7ff1789617134b6f43f5852c801d937", + "fields": { + "code_commune_insee": "84022", + "nom_de_la_commune": "BUISSON", + "code_postal": "84110", + "coordonnees_gps": [ + 44.2761846134, + 5.00180862169 + ], + "libelle_d_acheminement": "BUISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00180862169, + 44.2761846134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a86b7a1322c7d4d5bca5fd4a13b612952440e5f8", + "fields": { + "code_commune_insee": "84027", + "nom_de_la_commune": "CADEROUSSE", + "code_postal": "84860", + "coordonnees_gps": [ + 44.1099358763, + 4.74345046999 + ], + "libelle_d_acheminement": "CADEROUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74345046999, + 44.1099358763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "620229707ad8c248a67034597a25f9b22b02fef5", + "fields": { + "code_commune_insee": "84031", + "nom_de_la_commune": "CARPENTRAS", + "code_postal": "84200", + "coordonnees_gps": [ + 44.0593802565, + 5.06134844776 + ], + "libelle_d_acheminement": "CARPENTRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06134844776, + 44.0593802565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aad87a2acb4f4d925e07eca02146d585a4bc066c", + "fields": { + "code_commune_insee": "84035", + "nom_de_la_commune": "CAVAILLON", + "code_postal": "84300", + "coordonnees_gps": [ + 43.8508361826, + 5.03606300916 + ], + "libelle_d_acheminement": "CAVAILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03606300916, + 43.8508361826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a283e9dc23d117b9e97914f67d46c2d44aa64ca4", + "fields": { + "code_commune_insee": "84042", + "nom_de_la_commune": "CUCURON", + "code_postal": "84160", + "coordonnees_gps": [ + 43.778224355, + 5.44361580359 + ], + "libelle_d_acheminement": "CUCURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44361580359, + 43.778224355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf1c56b6296112dbdac552e4a99821b9e4053d23", + "fields": { + "code_commune_insee": "84044", + "nom_de_la_commune": "ENTRECHAUX", + "code_postal": "84340", + "coordonnees_gps": [ + 44.2224730765, + 5.13332490403 + ], + "libelle_d_acheminement": "ENTRECHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13332490403, + 44.2224730765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c557da27895dbfed1875a3f6d6c516d7506e998", + "fields": { + "code_commune_insee": "84045", + "nom_de_la_commune": "FAUCON", + "code_postal": "84110", + "coordonnees_gps": [ + 44.2524220745, + 5.14218487887 + ], + "libelle_d_acheminement": "FAUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14218487887, + 44.2524220745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4475a5e6d06f979cbc34617972fe1201641f6d5e", + "fields": { + "code_commune_insee": "84058", + "nom_de_la_commune": "LACOSTE", + "code_postal": "84480", + "coordonnees_gps": [ + 43.8257421042, + 5.26592271907 + ], + "libelle_d_acheminement": "LACOSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26592271907, + 43.8257421042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01883a0f1f7985a1de31e6691d6e6414c6375132", + "fields": { + "code_commune_insee": "84059", + "nom_de_la_commune": "LAFARE", + "code_postal": "84190", + "coordonnees_gps": [ + 44.1546199628, + 5.04972814303 + ], + "libelle_d_acheminement": "LAFARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04972814303, + 44.1546199628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7bf5bbc959b4fe06c724fcb5da61aabea07f411", + "fields": { + "code_commune_insee": "84063", + "nom_de_la_commune": "LAMOTTE DU RHONE", + "code_postal": "84840", + "coordonnees_gps": [ + 44.2761614284, + 4.67510511716 + ], + "libelle_d_acheminement": "LAMOTTE DU RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67510511716, + 44.2761614284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1822a2ae20c19ca73e0fe23911379b3882e0fc87", + "fields": { + "code_commune_insee": "84070", + "nom_de_la_commune": "MALEMORT DU COMTAT", + "code_postal": "84570", + "coordonnees_gps": [ + 44.0188189905, + 5.16741843804 + ], + "libelle_d_acheminement": "MALEMORT DU COMTAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16741843804, + 44.0188189905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f044e9885aab0da5784df706417fca7f28cb9ac", + "fields": { + "code_commune_insee": "84082", + "nom_de_la_commune": "MORMOIRON", + "code_postal": "84570", + "coordonnees_gps": [ + 44.0700058452, + 5.19092701239 + ], + "libelle_d_acheminement": "MORMOIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19092701239, + 44.0700058452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f95d53b83d8d986c86262b33ddc1c71352fc8909", + "fields": { + "code_commune_insee": "84090", + "nom_de_la_commune": "PEYPIN D AIGUES", + "code_postal": "84240", + "coordonnees_gps": [ + 43.7964408305, + 5.56003326924 + ], + "libelle_d_acheminement": "PEYPIN D AIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56003326924, + 43.7964408305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4056a3dba6bffeb0cf55e97ea8e647df02fcb0cb", + "fields": { + "code_commune_insee": "84093", + "nom_de_la_commune": "PUGET", + "code_postal": "84360", + "coordonnees_gps": [ + 43.7695336639, + 5.2569973443 + ], + "libelle_d_acheminement": "PUGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2569973443, + 43.7695336639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cab0f634a857bddc2e2173d31c8439df8f1f9462", + "fields": { + "code_commune_insee": "84097", + "nom_de_la_commune": "RICHERENCHES", + "code_postal": "84600", + "coordonnees_gps": [ + 44.3558133128, + 4.90386489809 + ], + "libelle_d_acheminement": "RICHERENCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90386489809, + 44.3558133128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43e903027cbcccef78404c462606d39caf76da54", + "fields": { + "code_commune_insee": "84101", + "nom_de_la_commune": "LA ROQUE SUR PERNES", + "code_postal": "84210", + "coordonnees_gps": [ + 43.9741947109, + 5.10175518845 + ], + "libelle_d_acheminement": "LA ROQUE SUR PERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10175518845, + 43.9741947109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a83a0e1738d389284d60f6f486b58908cbedb7b2", + "fields": { + "code_commune_insee": "84102", + "nom_de_la_commune": "ROUSSILLON", + "code_postal": "84220", + "coordonnees_gps": [ + 43.9012816878, + 5.29201885718 + ], + "libelle_d_acheminement": "ROUSSILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29201885718, + 43.9012816878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfe96e5d8cd3e7609862e362614ea007b17a2abd", + "fields": { + "code_commune_insee": "84104", + "nom_de_la_commune": "SABLET", + "code_postal": "84110", + "coordonnees_gps": [ + 44.1947680688, + 5.00118216056 + ], + "libelle_d_acheminement": "SABLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00118216056, + 44.1947680688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ba9b7e4f5ebb6f4ed4986b5eaf189771cd5094d", + "fields": { + "code_commune_insee": "84107", + "nom_de_la_commune": "ST CHRISTOL", + "code_postal": "84390", + "coordonnees_gps": [ + 44.0312802167, + 5.50324881102 + ], + "libelle_d_acheminement": "ST CHRISTOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50324881102, + 44.0312802167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9168d789752e70433b79cb285d165939fcc11819", + "fields": { + "code_commune_insee": "84118", + "nom_de_la_commune": "ST SATURNIN LES APT", + "code_postal": "84490", + "coordonnees_gps": [ + 43.9587368913, + 5.37325716104 + ], + "libelle_d_acheminement": "ST SATURNIN LES APT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37325716104, + 43.9587368913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c132c19915da3cea2f6ea1d70649eae68965ef7d", + "fields": { + "code_commune_insee": "84120", + "nom_de_la_commune": "ST TRINIT", + "code_postal": "84390", + "coordonnees_gps": [ + 44.0960361919, + 5.4788587888 + ], + "libelle_d_acheminement": "ST TRINIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4788587888, + 44.0960361919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e200bf37b63566185d37f21db1ebb89e0ae4fb63", + "fields": { + "code_commune_insee": "84121", + "nom_de_la_commune": "SANNES", + "code_postal": "84240", + "coordonnees_gps": [ + 43.7566978031, + 5.48858992739 + ], + "libelle_d_acheminement": "SANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48858992739, + 43.7566978031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4ff31d7ce31cc334aebe261456c4e5886503b40", + "fields": { + "code_commune_insee": "84122", + "nom_de_la_commune": "SARRIANS", + "code_postal": "84260", + "coordonnees_gps": [ + 44.0993149114, + 4.95726948743 + ], + "libelle_d_acheminement": "SARRIANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95726948743, + 44.0993149114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80c31679eca5171a53244c99aeaa15ff2e762f59", + "fields": { + "code_commune_insee": "84126", + "nom_de_la_commune": "SEGURET", + "code_postal": "84110", + "coordonnees_gps": [ + 44.2159640237, + 5.02881720149 + ], + "libelle_d_acheminement": "SEGURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02881720149, + 44.2159640237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3809cd70f2479525b0ca7a66e0fd2c91917cbba8", + "fields": { + "code_commune_insee": "84132", + "nom_de_la_commune": "LE THOR", + "code_postal": "84250", + "coordonnees_gps": [ + 43.928239832, + 4.99324123379 + ], + "libelle_d_acheminement": "LE THOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99324123379, + 43.928239832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c30a331bb7b17f87a0446759b90d7080612d083", + "fields": { + "code_commune_insee": "84133", + "nom_de_la_commune": "LA TOUR D AIGUES", + "code_postal": "84240", + "coordonnees_gps": [ + 43.7214835187, + 5.56734664063 + ], + "libelle_d_acheminement": "LA TOUR D AIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56734664063, + 43.7214835187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5087c4fb23bb692dc16f4391eaf730fd471de853", + "fields": { + "code_commune_insee": "84141", + "nom_de_la_commune": "VEDENE", + "code_postal": "84270", + "coordonnees_gps": [ + 43.9708612885, + 4.90327834789 + ], + "libelle_d_acheminement": "VEDENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90327834789, + 43.9708612885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71778670f5ff64f9abd5d2746f05d3f672444c10", + "fields": { + "code_commune_insee": "84151", + "nom_de_la_commune": "VITROLLES EN LUBERON", + "code_postal": "84240", + "coordonnees_gps": [ + 43.8137920989, + 5.59899946378 + ], + "libelle_d_acheminement": "VITROLLES EN LUBERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59899946378, + 43.8137920989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "619999ecbaefe724e739af35058b0c0cb54f349b", + "fields": { + "ligne_5": "AUBIGNY", + "code_commune_insee": "85008", + "libelle_d_acheminement": "AUBIGNY LES CLOUZEAUX", + "code_postal": "85430", + "nom_de_la_commune": "AUBIGNY LES CLOUZEAUX", + "coordonnees_gps": [ + 46.6028241769, + -1.46743549114 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46743549114, + 46.6028241769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eaf603119f261bced29b5dcdbdc1f7b779ffbda", + "fields": { + "ligne_5": "CHAIX", + "code_commune_insee": "85009", + "libelle_d_acheminement": "AUCHAY SUR VENDEE", + "code_postal": "85200", + "nom_de_la_commune": "AUCHAY SUR VENDEE", + "coordonnees_gps": [ + 46.4474386161, + -0.876574265149 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.876574265149, + 46.4474386161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a602f13867b8fd8103d7dacf259a86d094705d5c", + "fields": { + "code_commune_insee": "85016", + "nom_de_la_commune": "BEAULIEU SOUS LA ROCHE", + "code_postal": "85190", + "coordonnees_gps": [ + 46.6872087211, + -1.62355064963 + ], + "libelle_d_acheminement": "BEAULIEU SOUS LA ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62355064963, + 46.6872087211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e29e44f7bf41077d03dc17a1c6a0a63854577bf9", + "fields": { + "ligne_5": "SALIGNY", + "code_commune_insee": "85019", + "libelle_d_acheminement": "BELLEVIGNY", + "code_postal": "85170", + "nom_de_la_commune": "BELLEVIGNY", + "coordonnees_gps": [ + 46.7756383534, + -1.43313700054 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43313700054, + 46.7756383534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a87ecc336134009f3007205d3534ddef5b1d7b68", + "fields": { + "ligne_5": "STE CHRISTINE", + "code_commune_insee": "85020", + "libelle_d_acheminement": "BENET", + "code_postal": "85490", + "nom_de_la_commune": "BENET", + "coordonnees_gps": [ + 46.368873213, + -0.613959918706 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.613959918706, + 46.368873213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef5738684e85c6290f29a6091e10d0878b4fb848", + "fields": { + "code_commune_insee": "85022", + "nom_de_la_commune": "LE BERNARD", + "code_postal": "85560", + "coordonnees_gps": [ + 46.44832528, + -1.43979865314 + ], + "libelle_d_acheminement": "LE BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43979865314, + 46.44832528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cddc84e52707eedefd216c5f7294838664323c7", + "fields": { + "code_commune_insee": "85026", + "nom_de_la_commune": "LA BOISSIERE DES LANDES", + "code_postal": "85430", + "coordonnees_gps": [ + 46.5581861734, + -1.44371985689 + ], + "libelle_d_acheminement": "LA BOISSIERE DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44371985689, + 46.5581861734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6d079d9cf046be412626cd6f3fd52dccc208150", + "fields": { + "code_commune_insee": "85031", + "nom_de_la_commune": "LE BOUPERE", + "code_postal": "85510", + "coordonnees_gps": [ + 46.7877960262, + -0.930897406714 + ], + "libelle_d_acheminement": "LE BOUPERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.930897406714, + 46.7877960262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b95ce2b255c2cb0a657d9f2888591e45cc67f528", + "fields": { + "code_commune_insee": "85034", + "nom_de_la_commune": "BOURNEZEAU", + "code_postal": "85480", + "coordonnees_gps": [ + 46.6296975315, + -1.14101742229 + ], + "libelle_d_acheminement": "BOURNEZEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14101742229, + 46.6296975315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb2c5350d6bd8718d32c8d506ecfa5f974d54816", + "fields": { + "code_commune_insee": "85037", + "nom_de_la_commune": "BREUIL BARRET", + "code_postal": "85120", + "coordonnees_gps": [ + 46.6503266235, + -0.671948654426 + ], + "libelle_d_acheminement": "BREUIL BARRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.671948654426, + 46.6503266235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61d7ef301cbe5c32e1c2966988a03d462bf829fb", + "fields": { + "code_commune_insee": "85039", + "nom_de_la_commune": "LA BRUFFIERE", + "code_postal": "85530", + "coordonnees_gps": [ + 47.0148006973, + -1.18329758318 + ], + "libelle_d_acheminement": "LA BRUFFIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18329758318, + 47.0148006973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "464f703267faa8e6788c4233527e23467c421849", + "fields": { + "code_commune_insee": "85051", + "nom_de_la_commune": "CHANTONNAY", + "code_postal": "85110", + "coordonnees_gps": [ + 46.6690167793, + -1.04372588019 + ], + "libelle_d_acheminement": "CHANTONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04372588019, + 46.6690167793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7f6c57db2f93c4430ab8a21f317580d410a52c9", + "fields": { + "ligne_5": "ST PHILBERT DU PONT CHARRAULT", + "code_commune_insee": "85051", + "libelle_d_acheminement": "CHANTONNAY", + "code_postal": "85110", + "nom_de_la_commune": "CHANTONNAY", + "coordonnees_gps": [ + 46.6690167793, + -1.04372588019 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04372588019, + 46.6690167793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ac907fff4e48e962f01a025e065700ce08151f1", + "fields": { + "code_commune_insee": "85058", + "nom_de_la_commune": "CHASNAIS", + "code_postal": "85400", + "coordonnees_gps": [ + 46.4459908481, + -1.2385924923 + ], + "libelle_d_acheminement": "CHASNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2385924923, + 46.4459908481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4493d59a528eb2e2cae81beb5a99436c2f532ed1", + "fields": { + "code_commune_insee": "85064", + "nom_de_la_commune": "CHAUCHE", + "code_postal": "85140", + "coordonnees_gps": [ + 46.8282791899, + -1.27090860656 + ], + "libelle_d_acheminement": "CHAUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27090860656, + 46.8282791899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb3cf2210fae8679bce4c3d73ee8e24c3689169c", + "fields": { + "code_commune_insee": "85065", + "nom_de_la_commune": "CHAVAGNES EN PAILLERS", + "code_postal": "85250", + "coordonnees_gps": [ + 46.8951394423, + -1.24054768713 + ], + "libelle_d_acheminement": "CHAVAGNES EN PAILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24054768713, + 46.8951394423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4b4cb2fc86c0e95fcd32c1576b2d4616060fd4e", + "fields": { + "code_commune_insee": "85071", + "nom_de_la_commune": "COMMEQUIERS", + "code_postal": "85220", + "coordonnees_gps": [ + 46.7674752232, + -1.82534079642 + ], + "libelle_d_acheminement": "COMMEQUIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82534079642, + 46.7674752232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ce3439782e5fe9349ad1ecc22f2c3363c020058", + "fields": { + "code_commune_insee": "85074", + "nom_de_la_commune": "LA COUTURE", + "code_postal": "85320", + "coordonnees_gps": [ + 46.523938732, + -1.26493227292 + ], + "libelle_d_acheminement": "LA COUTURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26493227292, + 46.523938732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4b7c5fc97a1792083881c915f504c5b2559c71c", + "fields": { + "code_commune_insee": "85077", + "nom_de_la_commune": "CURZON", + "code_postal": "85540", + "coordonnees_gps": [ + 46.4512376923, + -1.30138059216 + ], + "libelle_d_acheminement": "CURZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30138059216, + 46.4512376923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aa942017dea38c0d35318beedc60ed3d93345b8", + "fields": { + "ligne_5": "FONTAINES", + "code_commune_insee": "85080", + "libelle_d_acheminement": "DOIX LES FONTAINES", + "code_postal": "85200", + "nom_de_la_commune": "DOIX LES FONTAINES", + "coordonnees_gps": [ + 46.3849492327, + -0.806840287485 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.806840287485, + 46.3849492327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37072b92812d70163ec1d46059758bb4a6f2df63", + "fields": { + "ligne_5": "STE FLORENCE", + "code_commune_insee": "85084", + "libelle_d_acheminement": "ESSARTS EN BOCAGE", + "code_postal": "85140", + "nom_de_la_commune": "ESSARTS EN BOCAGE", + "coordonnees_gps": [ + 46.7806739038, + -1.22925967851 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22925967851, + 46.7806739038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4291b40b8e53ef2801fca2de2bf1979a6e5ecc8d", + "fields": { + "code_commune_insee": "85089", + "nom_de_la_commune": "LA FERRIERE", + "code_postal": "85280", + "coordonnees_gps": [ + 46.7215872927, + -1.33469332327 + ], + "libelle_d_acheminement": "LA FERRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33469332327, + 46.7215872927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c3f3ad6c6c058e84f7c4f3b7fad3d05e11de74c", + "fields": { + "ligne_5": "LA FLOCELLIERE", + "code_commune_insee": "85090", + "libelle_d_acheminement": "SEVREMONT", + "code_postal": "85700", + "nom_de_la_commune": "SEVREMONT", + "coordonnees_gps": [ + 46.8211105864, + -0.854584153953 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.854584153953, + 46.8211105864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59af6840e2dacfcdda0252619c417d2c4645cdf4", + "fields": { + "ligne_5": "LA POMMERAIE SUR SEVRE", + "code_commune_insee": "85090", + "libelle_d_acheminement": "SEVREMONT", + "code_postal": "85700", + "nom_de_la_commune": "SEVREMONT", + "coordonnees_gps": [ + 46.8211105864, + -0.854584153953 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.854584153953, + 46.8211105864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a0283d75708b3fd88c132de2959201bd2b2094b", + "fields": { + "code_commune_insee": "85094", + "nom_de_la_commune": "FOUSSAIS PAYRE", + "code_postal": "85240", + "coordonnees_gps": [ + 46.5230750581, + -0.687135962627 + ], + "libelle_d_acheminement": "FOUSSAIS PAYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.687135962627, + 46.5230750581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e12a43094491b00c61c10f2ae0137fac2e7bc7ea", + "fields": { + "code_commune_insee": "85098", + "nom_de_la_commune": "LA GENETOUZE", + "code_postal": "85190", + "coordonnees_gps": [ + 46.7244524541, + -1.50410719693 + ], + "libelle_d_acheminement": "LA GENETOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50410719693, + 46.7244524541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "771f51a65520b632daa826b2fc18f0c471d3f4be", + "fields": { + "code_commune_insee": "85099", + "nom_de_la_commune": "LE GIROUARD", + "code_postal": "85150", + "coordonnees_gps": [ + 46.5726064909, + -1.58872487716 + ], + "libelle_d_acheminement": "LE GIROUARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58872487716, + 46.5726064909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "090cf3ca41a0fae163822dccab38c0f8aa378755", + "fields": { + "code_commune_insee": "85102", + "nom_de_la_commune": "GRAND LANDES", + "code_postal": "85670", + "coordonnees_gps": [ + 46.8483283063, + -1.64453002578 + ], + "libelle_d_acheminement": "GRAND LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64453002578, + 46.8483283063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee021184c9a41f2f72d3e569e2a6e42d7f0a8109", + "fields": { + "code_commune_insee": "85104", + "nom_de_la_commune": "GRUES", + "code_postal": "85580", + "coordonnees_gps": [ + 46.3813091348, + -1.32364519268 + ], + "libelle_d_acheminement": "GRUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32364519268, + 46.3813091348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e7bcb548f514f2b045e45910486df338ee2bd89", + "fields": { + "code_commune_insee": "85118", + "nom_de_la_commune": "LANDERONDE", + "code_postal": "85150", + "coordonnees_gps": [ + 46.6549237031, + -1.57351777893 + ], + "libelle_d_acheminement": "LANDERONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57351777893, + 46.6549237031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a5b6714b7a7f4dfaf7737a278de4b5941da5755", + "fields": { + "code_commune_insee": "85121", + "nom_de_la_commune": "LE LANGON", + "code_postal": "85370", + "coordonnees_gps": [ + 46.4393119039, + -0.947017086151 + ], + "libelle_d_acheminement": "LE LANGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.947017086151, + 46.4393119039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beec7f1f989ce9d9f70b86839d4a10463523ab1a", + "fields": { + "code_commune_insee": "85127", + "nom_de_la_commune": "LONGEVILLE SUR MER", + "code_postal": "85560", + "coordonnees_gps": [ + 46.4091029013, + -1.47711855345 + ], + "libelle_d_acheminement": "LONGEVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47711855345, + 46.4091029013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab1f3bb64d9b7d04423654aa6ed5099c03525953", + "fields": { + "code_commune_insee": "85129", + "nom_de_la_commune": "LES LUCS SUR BOULOGNE", + "code_postal": "85170", + "coordonnees_gps": [ + 46.8527299002, + -1.48398928084 + ], + "libelle_d_acheminement": "LES LUCS SUR BOULOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48398928084, + 46.8527299002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d6b80e5e61fc67f1e46425f120a10c6d94b3e3e", + "fields": { + "code_commune_insee": "85133", + "nom_de_la_commune": "MAILLEZAIS", + "code_postal": "85420", + "coordonnees_gps": [ + 46.3642178261, + -0.750260780443 + ], + "libelle_d_acheminement": "MAILLEZAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.750260780443, + 46.3642178261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15a87307d620001bedcfe30e19799268316846ce", + "fields": { + "code_commune_insee": "85144", + "nom_de_la_commune": "MESNARD LA BAROTIERE", + "code_postal": "85500", + "coordonnees_gps": [ + 46.851716793, + -1.10954466033 + ], + "libelle_d_acheminement": "MESNARD LA BAROTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10954466033, + 46.851716793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c898744927527fc39b2b5c374c2fc38cdbc898a", + "fields": { + "code_commune_insee": "85148", + "nom_de_la_commune": "MONTREUIL", + "code_postal": "85200", + "coordonnees_gps": [ + 46.3973419593, + -0.840846860992 + ], + "libelle_d_acheminement": "MONTREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.840846860992, + 46.3973419593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cc9ce9dbca10b117079b9b76c3c2b53d19427d5", + "fields": { + "code_commune_insee": "85149", + "nom_de_la_commune": "MOREILLES", + "code_postal": "85450", + "coordonnees_gps": [ + 46.4218721314, + -1.09404530407 + ], + "libelle_d_acheminement": "MOREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09404530407, + 46.4218721314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "182c886ef1a0faf6a11ce5893349bd1d64842928", + "fields": { + "ligne_5": "LA CHAPELLE ACHARD", + "code_commune_insee": "85152", + "libelle_d_acheminement": "LES ACHARDS", + "code_postal": "85150", + "nom_de_la_commune": "LES ACHARDS", + "coordonnees_gps": [ + 46.6163645636, + -1.65038156849 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65038156849, + 46.6163645636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d02842117de8ac1c8f473bdf4368ab1f4b6d4fd8", + "fields": { + "ligne_5": "LA MOTHE ACHARD", + "code_commune_insee": "85152", + "libelle_d_acheminement": "LES ACHARDS", + "code_postal": "85150", + "nom_de_la_commune": "LES ACHARDS", + "coordonnees_gps": [ + 46.6163645636, + -1.65038156849 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65038156849, + 46.6163645636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d74429c33c10038071d0b4c88b8d8a9430487206", + "fields": { + "ligne_5": "ST GERMAIN L AIGUILLER", + "code_commune_insee": "85154", + "libelle_d_acheminement": "MOUILLERON ST GERMAIN", + "code_postal": "85390", + "nom_de_la_commune": "MOUILLERON ST GERMAIN", + "coordonnees_gps": [ + 46.6612700667, + -0.846784201071 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.846784201071, + 46.6612700667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51f91e4ec7b2cc800c3162fc836aa61c02fd9eac", + "fields": { + "code_commune_insee": "85155", + "nom_de_la_commune": "MOUILLERON LE CAPTIF", + "code_postal": "85000", + "coordonnees_gps": [ + 46.7104764993, + -1.46129661418 + ], + "libelle_d_acheminement": "MOUILLERON LE CAPTIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46129661418, + 46.7104764993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c7e7428f41322e93351c63815e3992cd5a5257b", + "fields": { + "code_commune_insee": "85157", + "nom_de_la_commune": "MOUTIERS SUR LE LAY", + "code_postal": "85320", + "coordonnees_gps": [ + 46.5651677306, + -1.16826489836 + ], + "libelle_d_acheminement": "MOUTIERS SUR LE LAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16826489836, + 46.5651677306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c35059e70c59b22a41f5aa6fec3359332050101", + "fields": { + "ligne_5": "NIEUL SUR L AUTISE", + "code_commune_insee": "85162", + "libelle_d_acheminement": "RIVES D AUTISE", + "code_postal": "85240", + "nom_de_la_commune": "RIVES D AUTISE", + "coordonnees_gps": [ + 46.424726987, + -0.665995249042 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.665995249042, + 46.424726987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fecc5f7bb29d95440f9160900981e22278e14cfe", + "fields": { + "ligne_5": "OULMES", + "code_commune_insee": "85162", + "libelle_d_acheminement": "RIVES D AUTISE", + "code_postal": "85420", + "nom_de_la_commune": "RIVES D AUTISE", + "coordonnees_gps": [ + 46.424726987, + -0.665995249042 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.665995249042, + 46.424726987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76721597ba92921e355f476a884421764341f5ea", + "fields": { + "code_commune_insee": "85167", + "nom_de_la_commune": "L ORBRIE", + "code_postal": "85200", + "coordonnees_gps": [ + 46.4997145725, + -0.77427886573 + ], + "libelle_d_acheminement": "L ORBRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77427886573, + 46.4997145725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff4a87f290401b21e664b2664522ba16fcdfc778", + "fields": { + "code_commune_insee": "85169", + "nom_de_la_commune": "PALLUAU", + "code_postal": "85670", + "coordonnees_gps": [ + 46.8063002019, + -1.60225256402 + ], + "libelle_d_acheminement": "PALLUAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60225256402, + 46.8063002019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a492441810a8308dcb8291dec7dfee00e68afedb", + "fields": { + "code_commune_insee": "85184", + "nom_de_la_commune": "PUY DE SERRE", + "code_postal": "85240", + "coordonnees_gps": [ + 46.5650384637, + -0.680144631346 + ], + "libelle_d_acheminement": "PUY DE SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.680144631346, + 46.5650384637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46660eec9030c636d0848e8de4538f34b2928a8a", + "fields": { + "code_commune_insee": "85185", + "nom_de_la_commune": "PUYRAVAULT", + "code_postal": "85450", + "coordonnees_gps": [ + 46.3653834101, + -1.09115660367 + ], + "libelle_d_acheminement": "PUYRAVAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09115660367, + 46.3653834101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec58ef3023ccf6bd1d22cc53e6f06b6fe9b6f634", + "fields": { + "ligne_5": "CHATEAU D OLONNE", + "code_commune_insee": "85194", + "libelle_d_acheminement": "LES SABLES D OLONNE", + "code_postal": "85180", + "nom_de_la_commune": "LES SABLES D OLONNE", + "coordonnees_gps": [ + 46.5007612799, + -1.79255128677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79255128677, + 46.5007612799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2959d06f0571d0e4929acef6a7095b79d041924d", + "fields": { + "ligne_5": "OLONNE SUR MER", + "code_commune_insee": "85194", + "libelle_d_acheminement": "LES SABLES D OLONNE", + "code_postal": "85340", + "nom_de_la_commune": "LES SABLES D OLONNE", + "coordonnees_gps": [ + 46.5007612799, + -1.79255128677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79255128677, + 46.5007612799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91fd14a5387af7b6449d6eeafe306eae1f06e9dd", + "fields": { + "code_commune_insee": "85200", + "nom_de_la_commune": "ST AVAUGOURD DES LANDES", + "code_postal": "85540", + "coordonnees_gps": [ + 46.5136722903, + -1.47528120789 + ], + "libelle_d_acheminement": "ST AVAUGOURD DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47528120789, + 46.5136722903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0d614598d5e64d953347da5da6d39d27ce55609", + "fields": { + "code_commune_insee": "85206", + "nom_de_la_commune": "ST CYR EN TALMONDAIS", + "code_postal": "85540", + "coordonnees_gps": [ + 46.4597334032, + -1.33722144355 + ], + "libelle_d_acheminement": "ST CYR EN TALMONDAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33722144355, + 46.4597334032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1be35eff0c439a2d5787202526b1f51fd7c5170", + "fields": { + "code_commune_insee": "85208", + "nom_de_la_commune": "ST DENIS LA CHEVASSE", + "code_postal": "85170", + "coordonnees_gps": [ + 46.8325959261, + -1.3830312677 + ], + "libelle_d_acheminement": "ST DENIS LA CHEVASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3830312677, + 46.8325959261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2824ea0a9462d8770f93bc3da42760745a06d93b", + "fields": { + "code_commune_insee": "85215", + "nom_de_la_commune": "ST FULGENT", + "code_postal": "85250", + "coordonnees_gps": [ + 46.8705618525, + -1.16246465678 + ], + "libelle_d_acheminement": "ST FULGENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16246465678, + 46.8705618525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d85acbb63231e63c8714865fbd71cf1534df7bef", + "fields": { + "ligne_5": "ST NICOLAS DE BREM", + "code_commune_insee": "85243", + "libelle_d_acheminement": "BREM SUR MER", + "code_postal": "85470", + "nom_de_la_commune": "BREM SUR MER", + "coordonnees_gps": [ + 46.6118566989, + -1.81003917923 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.81003917923, + 46.6118566989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8f988eba881236e16c7229350cec940cf850be3", + "fields": { + "code_commune_insee": "85261", + "nom_de_la_commune": "STE PEXINE", + "code_postal": "85320", + "coordonnees_gps": [ + 46.5596018797, + -1.12406235901 + ], + "libelle_d_acheminement": "STE PEXINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12406235901, + 46.5596018797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce77f72236dbec631837cde474f54224e2e50783", + "fields": { + "code_commune_insee": "85262", + "nom_de_la_commune": "ST PHILBERT DE BOUAINE", + "code_postal": "85660", + "coordonnees_gps": [ + 46.9927907526, + -1.5073882242 + ], + "libelle_d_acheminement": "ST PHILBERT DE BOUAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5073882242, + 46.9927907526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1c055363c04c7b67814810b6209119edc7e4755", + "fields": { + "code_commune_insee": "85264", + "nom_de_la_commune": "ST PIERRE DU CHEMIN", + "code_postal": "85120", + "coordonnees_gps": [ + 46.6957771744, + -0.701777715154 + ], + "libelle_d_acheminement": "ST PIERRE DU CHEMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.701777715154, + 46.6957771744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "867a22c6d433c2b4916e0931ca75bf969d7bb988", + "fields": { + "code_commune_insee": "85266", + "nom_de_la_commune": "ST PROUANT", + "code_postal": "85110", + "coordonnees_gps": [ + 46.7502017421, + -0.974504061491 + ], + "libelle_d_acheminement": "ST PROUANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.974504061491, + 46.7502017421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d848efba190e267de6f38ae24c66dd57f0ce594", + "fields": { + "code_commune_insee": "85267", + "nom_de_la_commune": "STE RADEGONDE DES NOYERS", + "code_postal": "85450", + "coordonnees_gps": [ + 46.3694246909, + -1.06671995264 + ], + "libelle_d_acheminement": "STE RADEGONDE DES NOYERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06671995264, + 46.3694246909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d451158d4b38c66e115398e85e6e5ca6f8c39cd4", + "fields": { + "code_commune_insee": "85271", + "nom_de_la_commune": "ST SULPICE EN PAREDS", + "code_postal": "85410", + "coordonnees_gps": [ + 46.6130038733, + -0.8310839288 + ], + "libelle_d_acheminement": "ST SULPICE EN PAREDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8310839288, + 46.6130038733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f17bb75cdb18e4626446e8f2afd2f83bfcaabf7e", + "fields": { + "ligne_5": "ST HILAIRE DE TALMONT", + "code_commune_insee": "85288", + "libelle_d_acheminement": "TALMONT ST HILAIRE", + "code_postal": "85440", + "nom_de_la_commune": "TALMONT ST HILAIRE", + "coordonnees_gps": [ + 46.475786445, + -1.62751498166 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62751498166, + 46.475786445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a148c9daa524db7d58b1d5391e9aac0ef71fe43", + "fields": { + "code_commune_insee": "85290", + "nom_de_la_commune": "THIRE", + "code_postal": "85210", + "coordonnees_gps": [ + 46.5433098199, + -1.00699777534 + ], + "libelle_d_acheminement": "THIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00699777534, + 46.5433098199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9c826515e665ef59038075ad8352bd8d42df303", + "fields": { + "code_commune_insee": "85298", + "nom_de_la_commune": "VAIRE", + "code_postal": "85150", + "coordonnees_gps": [ + 46.6055340621, + -1.74863672042 + ], + "libelle_d_acheminement": "VAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74863672042, + 46.6055340621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5752669376afce437e6cc77f888833dc975203c0", + "fields": { + "code_commune_insee": "85301", + "nom_de_la_commune": "VENDRENNES", + "code_postal": "85250", + "coordonnees_gps": [ + 46.8226741756, + -1.11650982164 + ], + "libelle_d_acheminement": "VENDRENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11650982164, + 46.8226741756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df5c2bf5fac908d8618606d5f170301c6251a535", + "fields": { + "ligne_5": "CHAMBRETAUD", + "code_commune_insee": "85302", + "libelle_d_acheminement": "CHANVERRIE", + "code_postal": "85500", + "nom_de_la_commune": "CHANVERRIE", + "coordonnees_gps": [ + 46.9634774521, + -0.985340006089 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.985340006089, + 46.9634774521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bb2855f3ed47d708273e2b77041a01580faf1bd", + "fields": { + "code_commune_insee": "86007", + "nom_de_la_commune": "ANTRAN", + "code_postal": "86100", + "coordonnees_gps": [ + 46.877083076, + 0.530703043552 + ], + "libelle_d_acheminement": "ANTRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.530703043552, + 46.877083076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8749622b1ef8bb31d816ad978ad0f8d70fd5d766", + "fields": { + "ligne_5": "BEAUMONT", + "code_commune_insee": "86019", + "libelle_d_acheminement": "BEAUMONT ST CYR", + "code_postal": "86490", + "nom_de_la_commune": "BEAUMONT ST CYR", + "coordonnees_gps": [ + 46.7432070332, + 0.436999990753 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.436999990753, + 46.7432070332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f47866458e0b022f6cae2e80461a89105f90cce", + "fields": { + "code_commune_insee": "86022", + "nom_de_la_commune": "BERRIE", + "code_postal": "86120", + "coordonnees_gps": [ + 47.0594379159, + -0.0722827827808 + ], + "libelle_d_acheminement": "BERRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0722827827808, + 47.0594379159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8634fef4893af5b8d3b5462f053a8897d53fc389", + "fields": { + "code_commune_insee": "86027", + "nom_de_la_commune": "BIARD", + "code_postal": "86580", + "coordonnees_gps": [ + 46.5859914233, + 0.297504952601 + ], + "libelle_d_acheminement": "BIARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.297504952601, + 46.5859914233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a68af66015cfdbac7cdc67a1f9b38c06f48895f4", + "fields": { + "code_commune_insee": "86032", + "nom_de_la_commune": "BONNEUIL MATOURS", + "code_postal": "86210", + "coordonnees_gps": [ + 46.6795805197, + 0.566087021513 + ], + "libelle_d_acheminement": "BONNEUIL MATOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.566087021513, + 46.6795805197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8beb5ad1427df07f0f51046d8d2e91c1e6f3e9a1", + "fields": { + "code_commune_insee": "86050", + "nom_de_la_commune": "CHALANDRAY", + "code_postal": "86190", + "coordonnees_gps": [ + 46.6544747841, + -0.00687604114589 + ], + "libelle_d_acheminement": "CHALANDRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00687604114589, + 46.6544747841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66414b19aac9660c074c70478e3cfabaf5b3bddc", + "fields": { + "code_commune_insee": "86052", + "nom_de_la_commune": "CHAMPAGNE ST HILAIRE", + "code_postal": "86160", + "coordonnees_gps": [ + 46.3229827238, + 0.320405816347 + ], + "libelle_d_acheminement": "CHAMPAGNE ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.320405816347, + 46.3229827238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d348ba0c8a97d68c904f06e347d848d7b99c15e", + "fields": { + "code_commune_insee": "86070", + "nom_de_la_commune": "CHAUVIGNY", + "code_postal": "86300", + "coordonnees_gps": [ + 46.5545564256, + 0.678622247419 + ], + "libelle_d_acheminement": "CHAUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.678622247419, + 46.5545564256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d0ac71e8772b64acb595e8e0d6d7d9903c61b94", + "fields": { + "ligne_5": "CHATILLON", + "code_commune_insee": "86082", + "libelle_d_acheminement": "VALENCE EN POITOU", + "code_postal": "86700", + "nom_de_la_commune": "VALENCE EN POITOU", + "coordonnees_gps": [ + 46.2960515844, + 0.179497066899 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.179497066899, + 46.2960515844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4df93e8ae137700c68c6552170d068730be19368", + "fields": { + "ligne_5": "PAYRE", + "code_commune_insee": "86082", + "libelle_d_acheminement": "VALENCE EN POITOU", + "code_postal": "86700", + "nom_de_la_commune": "VALENCE EN POITOU", + "coordonnees_gps": [ + 46.2960515844, + 0.179497066899 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.179497066899, + 46.2960515844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "854749991496886ebf34212dd345d39c2b635a50", + "fields": { + "code_commune_insee": "86094", + "nom_de_la_commune": "DIENNE", + "code_postal": "86410", + "coordonnees_gps": [ + 46.4414393381, + 0.537436523079 + ], + "libelle_d_acheminement": "DIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.537436523079, + 46.4414393381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "facac78120749788c62b45190adcbe297c2274dd", + "fields": { + "code_commune_insee": "86099", + "nom_de_la_commune": "FLEURE", + "code_postal": "86340", + "coordonnees_gps": [ + 46.4832773182, + 0.522738191744 + ], + "libelle_d_acheminement": "FLEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.522738191744, + 46.4832773182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b22050ef333e84849795e089ebfc6d8af9aae59a", + "fields": { + "code_commune_insee": "86112", + "nom_de_la_commune": "L ISLE JOURDAIN", + "code_postal": "86150", + "coordonnees_gps": [ + 46.2384696934, + 0.698756501243 + ], + "libelle_d_acheminement": "L ISLE JOURDAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.698756501243, + 46.2384696934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9b2d2278b5c2bd38fc930af645e6817441267c4", + "fields": { + "ligne_5": "MARIGNY BRIZAY", + "code_commune_insee": "86115", + "libelle_d_acheminement": "JAUNAY MARIGNY", + "code_postal": "86380", + "nom_de_la_commune": "JAUNAY MARIGNY", + "coordonnees_gps": [ + 46.6935919998, + 0.356614754201 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.356614754201, + 46.6935919998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85328abe235d0c2d9aad1b3359ccf5746dd59cf0", + "fields": { + "code_commune_insee": "86117", + "nom_de_la_commune": "JOUHET", + "code_postal": "86500", + "coordonnees_gps": [ + 46.4893266692, + 0.873416912338 + ], + "libelle_d_acheminement": "JOUHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.873416912338, + 46.4893266692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bb646ccaaaad1dd0d4c7ff240df5a63b4a4c918", + "fields": { + "code_commune_insee": "86121", + "nom_de_la_commune": "LATILLE", + "code_postal": "86190", + "coordonnees_gps": [ + 46.6099211196, + 0.0623433314507 + ], + "libelle_d_acheminement": "LATILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0623433314507, + 46.6099211196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6d83374cc057b232edd4243d2c24970854bb22f", + "fields": { + "code_commune_insee": "86124", + "nom_de_la_commune": "LAVOUX", + "code_postal": "86800", + "coordonnees_gps": [ + 46.594305535, + 0.52295072833 + ], + "libelle_d_acheminement": "LAVOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.52295072833, + 46.594305535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d9e85f7f99ee04d6a34db4818f175e9459e30b0", + "fields": { + "code_commune_insee": "86128", + "nom_de_la_commune": "LENCLOITRE", + "code_postal": "86140", + "coordonnees_gps": [ + 46.8046486109, + 0.303557695444 + ], + "libelle_d_acheminement": "LENCLOITRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.303557695444, + 46.8046486109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "025359bb4b08e752a99f9c54601e46c9ff7f1e09", + "fields": { + "code_commune_insee": "86131", + "nom_de_la_commune": "LHOMMAIZE", + "code_postal": "86410", + "coordonnees_gps": [ + 46.4434246955, + 0.588807648526 + ], + "libelle_d_acheminement": "LHOMMAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.588807648526, + 46.4434246955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a572a5e307d9fd9d91697fd4d21a58afa3588b7d", + "fields": { + "code_commune_insee": "86135", + "nom_de_la_commune": "LINIERS", + "code_postal": "86800", + "coordonnees_gps": [ + 46.6179212567, + 0.530368469247 + ], + "libelle_d_acheminement": "LINIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.530368469247, + 46.6179212567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f51d7a341c273efcd819c47d855a36426f027f2c", + "fields": { + "code_commune_insee": "86153", + "nom_de_la_commune": "MAZEROLLES", + "code_postal": "86320", + "coordonnees_gps": [ + 46.3999686416, + 0.663328917773 + ], + "libelle_d_acheminement": "MAZEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.663328917773, + 46.3999686416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a98a9d444c9dd6a4cb91cb053d4139238637102e", + "fields": { + "code_commune_insee": "86160", + "nom_de_la_commune": "MIREBEAU", + "code_postal": "86110", + "coordonnees_gps": [ + 46.7891930308, + 0.198457182701 + ], + "libelle_d_acheminement": "MIREBEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.198457182701, + 46.7891930308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87889200c2356cef2650856c9f15b7f1a6df1288", + "fields": { + "code_commune_insee": "86163", + "nom_de_la_commune": "MONTAMISE", + "code_postal": "86360", + "coordonnees_gps": [ + 46.6285498081, + 0.434064496857 + ], + "libelle_d_acheminement": "MONTAMISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.434064496857, + 46.6285498081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f130e53243c0b92c504ff19643d9221e7dbf4977", + "fields": { + "code_commune_insee": "86170", + "nom_de_la_commune": "MOULISMES", + "code_postal": "86500", + "coordonnees_gps": [ + 46.3242835115, + 0.807504561259 + ], + "libelle_d_acheminement": "MOULISMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.807504561259, + 46.3242835115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12451c88f49d5123d2297aeb3722b38af8354649", + "fields": { + "code_commune_insee": "86174", + "nom_de_la_commune": "NAINTRE", + "code_postal": "86530", + "coordonnees_gps": [ + 46.7725487578, + 0.494183225778 + ], + "libelle_d_acheminement": "NAINTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.494183225778, + 46.7725487578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18f32df83f535e2d4eaa14e55aa03ad3d2b589e3", + "fields": { + "code_commune_insee": "86182", + "nom_de_la_commune": "ORCHES", + "code_postal": "86230", + "coordonnees_gps": [ + 46.8823632651, + 0.327354894566 + ], + "libelle_d_acheminement": "ORCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.327354894566, + 46.8823632651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe5e853c6835e520710c7f1e6dbf5574af53f0cf", + "fields": { + "code_commune_insee": "86184", + "nom_de_la_commune": "OUZILLY", + "code_postal": "86380", + "coordonnees_gps": [ + 46.7754878528, + 0.357821774595 + ], + "libelle_d_acheminement": "OUZILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.357821774595, + 46.7754878528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc5a3e7e5cf240fd66f963f7a27c50e2ed027963", + "fields": { + "code_commune_insee": "86189", + "nom_de_la_commune": "PAYROUX", + "code_postal": "86350", + "coordonnees_gps": [ + 46.2097919073, + 0.479434214777 + ], + "libelle_d_acheminement": "PAYROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.479434214777, + 46.2097919073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbb522984117088417bcdfca233163f1fd8a9c78", + "fields": { + "code_commune_insee": "86191", + "nom_de_la_commune": "PINDRAY", + "code_postal": "86500", + "coordonnees_gps": [ + 46.4740182126, + 0.815962349411 + ], + "libelle_d_acheminement": "PINDRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.815962349411, + 46.4740182126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a26e957ed38d9df59ed8305c66730bd5e3fb3c3", + "fields": { + "code_commune_insee": "86196", + "nom_de_la_commune": "POUANCAY", + "code_postal": "86120", + "coordonnees_gps": [ + 47.08788601, + -0.0810916620199 + ], + "libelle_d_acheminement": "POUANCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0810916620199, + 47.08788601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a06333f53b95a520c89de81e886b4d8b8e93a61", + "fields": { + "code_commune_insee": "86197", + "nom_de_la_commune": "POUANT", + "code_postal": "86200", + "coordonnees_gps": [ + 47.0188564261, + 0.278071701384 + ], + "libelle_d_acheminement": "POUANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.278071701384, + 47.0188564261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "390963be03593303ad353f164f013e5cf2acb2d4", + "fields": { + "code_commune_insee": "86198", + "nom_de_la_commune": "POUILLE", + "code_postal": "86800", + "coordonnees_gps": [ + 46.5420045023, + 0.578924687595 + ], + "libelle_d_acheminement": "POUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.578924687595, + 46.5420045023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aff131fa6a7b1b44aec2bfb6d6023bc2c3c5391f", + "fields": { + "code_commune_insee": "86206", + "nom_de_la_commune": "RASLAY", + "code_postal": "86120", + "coordonnees_gps": [ + 47.1122395658, + 0.00510983218856 + ], + "libelle_d_acheminement": "RASLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00510983218856, + 47.1122395658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19927f44d714cc1f70f2af3114b568c3d360fe00", + "fields": { + "code_commune_insee": "86210", + "nom_de_la_commune": "ROIFFE", + "code_postal": "86120", + "coordonnees_gps": [ + 47.1252100778, + 0.0517426061907 + ], + "libelle_d_acheminement": "ROIFFE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0517426061907, + 47.1252100778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75dbca25dd661494fe8084c42cc8d270112d547d", + "fields": { + "code_commune_insee": "86211", + "nom_de_la_commune": "ROMAGNE", + "code_postal": "86700", + "coordonnees_gps": [ + 46.2580654377, + 0.303101746455 + ], + "libelle_d_acheminement": "ROMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.303101746455, + 46.2580654377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8764e84a7107629789844a13fab6b788675d4274", + "fields": { + "code_commune_insee": "86222", + "nom_de_la_commune": "ST GEORGES LES BAILLARGEAUX", + "code_postal": "86130", + "coordonnees_gps": [ + 46.6640015374, + 0.435326068865 + ], + "libelle_d_acheminement": "ST GEORGES LES BAILLARGEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.435326068865, + 46.6640015374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a45c567874ef282fb82eea3ae5f35ac18a87201", + "fields": { + "code_commune_insee": "86227", + "nom_de_la_commune": "ST LAON", + "code_postal": "86200", + "coordonnees_gps": [ + 46.968403494, + -0.0199916630055 + ], + "libelle_d_acheminement": "ST LAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0199916630055, + 46.968403494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74cb101c7bf910eee308dc0a1bd3dda2bb2e29be", + "fields": { + "code_commune_insee": "86233", + "nom_de_la_commune": "VALDIVIENNE", + "code_postal": "86300", + "coordonnees_gps": [ + 46.4919287811, + 0.630612249319 + ], + "libelle_d_acheminement": "VALDIVIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.630612249319, + 46.4919287811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eb1dfc028dd06c5eda1d4900fe4fe7da913190e", + "fields": { + "code_commune_insee": "86253", + "nom_de_la_commune": "SANXAY", + "code_postal": "86600", + "coordonnees_gps": [ + 46.4960318018, + -0.00840229241339 + ], + "libelle_d_acheminement": "SANXAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00840229241339, + 46.4960318018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3975140ac6a2337dcb6a6bbcd996896332370cfe", + "fields": { + "code_commune_insee": "86264", + "nom_de_la_commune": "SOMMIERES DU CLAIN", + "code_postal": "86160", + "coordonnees_gps": [ + 46.2767515848, + 0.374035555116 + ], + "libelle_d_acheminement": "SOMMIERES DU CLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.374035555116, + 46.2767515848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8906a50e0e3bd45bb4348549e20f3c48a27d49a", + "fields": { + "code_commune_insee": "86268", + "nom_de_la_commune": "TERCE", + "code_postal": "86800", + "coordonnees_gps": [ + 46.514441058, + 0.554671027183 + ], + "libelle_d_acheminement": "TERCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.554671027183, + 46.514441058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fddcfc264f4bd16226ed74d9b61af112a144ba1", + "fields": { + "code_commune_insee": "86276", + "nom_de_la_commune": "USSON DU POITOU", + "code_postal": "86350", + "coordonnees_gps": [ + 46.2806798185, + 0.544510234533 + ], + "libelle_d_acheminement": "USSON DU POITOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.544510234533, + 46.2806798185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48de5153d428f562aceb4a3210e96280b9c6cfb6", + "fields": { + "ligne_5": "VARENNES", + "code_commune_insee": "86281", + "libelle_d_acheminement": "ST MARTIN LA PALLU", + "code_postal": "86110", + "nom_de_la_commune": "ST MARTIN LA PALLU", + "coordonnees_gps": [ + 46.7257294261, + 0.312684454169 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.312684454169, + 46.7257294261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "104a434587cc7217540bd07546399482703bde15", + "fields": { + "ligne_5": "BLASLAY", + "code_commune_insee": "86281", + "libelle_d_acheminement": "ST MARTIN LA PALLU", + "code_postal": "86170", + "nom_de_la_commune": "ST MARTIN LA PALLU", + "coordonnees_gps": [ + 46.7257294261, + 0.312684454169 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.312684454169, + 46.7257294261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "862e6768fcc923b0ead3b138d16b6b43d512ca46", + "fields": { + "code_commune_insee": "86284", + "nom_de_la_commune": "VERNON", + "code_postal": "86340", + "coordonnees_gps": [ + 46.4308038321, + 0.481683351308 + ], + "libelle_d_acheminement": "VERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.481683351308, + 46.4308038321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfe50e5e46f96dcd0f69ab28ad486c5ddad497e5", + "fields": { + "code_commune_insee": "86290", + "nom_de_la_commune": "LA VILLEDIEU DU CLAIN", + "code_postal": "86340", + "coordonnees_gps": [ + 46.4559900008, + 0.390374880157 + ], + "libelle_d_acheminement": "LA VILLEDIEU DU CLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.390374880157, + 46.4559900008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1bfca41a76be8d745b055c888ee7d010e497be6", + "fields": { + "code_commune_insee": "86300", + "nom_de_la_commune": "YVERSAY", + "code_postal": "86170", + "coordonnees_gps": [ + 46.6723327836, + 0.205575527157 + ], + "libelle_d_acheminement": "YVERSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.205575527157, + 46.6723327836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f61c155d65d7c822d11f10a693af6b0ea555ac1b", + "fields": { + "code_commune_insee": "87014", + "nom_de_la_commune": "BESSINES SUR GARTEMPE", + "code_postal": "87250", + "coordonnees_gps": [ + 46.1088644019, + 1.3601193629 + ], + "libelle_d_acheminement": "BESSINES SUR GARTEMPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3601193629, + 46.1088644019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7219caaebbd031d4e41c904d03129347e04f5c10", + "fields": { + "ligne_5": "MORTEROLLES SUR SEMME", + "code_commune_insee": "87014", + "libelle_d_acheminement": "BESSINES SUR GARTEMPE", + "code_postal": "87250", + "nom_de_la_commune": "BESSINES SUR GARTEMPE", + "coordonnees_gps": [ + 46.1088644019, + 1.3601193629 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3601193629, + 46.1088644019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62859b37cc4dac17e731fb90089637a01477657a", + "fields": { + "code_commune_insee": "87017", + "nom_de_la_commune": "BLANZAC", + "code_postal": "87300", + "coordonnees_gps": [ + 46.1275472261, + 1.1079991587 + ], + "libelle_d_acheminement": "BLANZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1079991587, + 46.1275472261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a17459c01aa47f4e6b03d9bb21a6d8aa1c1158e4", + "fields": { + "code_commune_insee": "87027", + "nom_de_la_commune": "BUSSIERE GALANT", + "code_postal": "87230", + "coordonnees_gps": [ + 45.6176010167, + 1.04599414637 + ], + "libelle_d_acheminement": "BUSSIERE GALANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04599414637, + 45.6176010167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef05ae1df8ceea2264b96aa69f212c624f612b7d", + "fields": { + "ligne_5": "BUSSIERE POITEVINE", + "code_commune_insee": "87028", + "libelle_d_acheminement": "VAL D OIRE ET GARTEMPE", + "code_postal": "87320", + "nom_de_la_commune": "VAL D OIRE ET GARTEMPE", + "coordonnees_gps": [ + 46.2418910166, + 0.90395962145 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90395962145, + 46.2418910166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b118f5b43d738a0a388503075426d40db8dd86e", + "fields": { + "code_commune_insee": "87033", + "nom_de_la_commune": "CHAMBORET", + "code_postal": "87140", + "coordonnees_gps": [ + 46.0056617581, + 1.12492081757 + ], + "libelle_d_acheminement": "CHAMBORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12492081757, + 46.0056617581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c49b31a3ce7d8845adcd276042f6b4354c00ba9", + "fields": { + "code_commune_insee": "87038", + "nom_de_la_commune": "CHAPTELAT", + "code_postal": "87270", + "coordonnees_gps": [ + 45.9176663551, + 1.24668895205 + ], + "libelle_d_acheminement": "CHAPTELAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24668895205, + 45.9176663551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2fb62158d1a7ee70ff4898243ff089ba3a7a0fd", + "fields": { + "code_commune_insee": "87046", + "nom_de_la_commune": "COGNAC LA FORET", + "code_postal": "87310", + "coordonnees_gps": [ + 45.8367288342, + 1.00502296001 + ], + "libelle_d_acheminement": "COGNAC LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00502296001, + 45.8367288342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d93da5f63b118f6d958e7e90f79ea013377bd146", + "fields": { + "code_commune_insee": "87047", + "nom_de_la_commune": "COMPREIGNAC", + "code_postal": "87140", + "coordonnees_gps": [ + 45.9974067585, + 1.28161840012 + ], + "libelle_d_acheminement": "COMPREIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28161840012, + 45.9974067585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a117c42415fe26e0e6f70d73be630f28e0e0749", + "fields": { + "code_commune_insee": "87058", + "nom_de_la_commune": "DOMPS", + "code_postal": "87120", + "coordonnees_gps": [ + 45.6554872653, + 1.71232934582 + ], + "libelle_d_acheminement": "DOMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71232934582, + 45.6554872653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e46793b06dac1bf317cca250ade7bf77a4f47036", + "fields": { + "code_commune_insee": "87059", + "nom_de_la_commune": "LE DORAT", + "code_postal": "87210", + "coordonnees_gps": [ + 46.2050923809, + 1.06774671416 + ], + "libelle_d_acheminement": "LE DORAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06774671416, + 46.2050923809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d37a7dfc3e69b51fb24f2838c4c1a2437d2eee63", + "fields": { + "code_commune_insee": "87067", + "nom_de_la_commune": "FOLLES", + "code_postal": "87250", + "coordonnees_gps": [ + 46.1248930681, + 1.45625971523 + ], + "libelle_d_acheminement": "FOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45625971523, + 46.1248930681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99a44f3759018294fce4104ec2363b7951bd42e2", + "fields": { + "code_commune_insee": "87075", + "nom_de_la_commune": "ISLE", + "code_postal": "87170", + "coordonnees_gps": [ + 45.8035870921, + 1.19524326117 + ], + "libelle_d_acheminement": "ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19524326117, + 45.8035870921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f84e3f44e197ab81fd2c4848866bd44e2f6bbbc9", + "fields": { + "code_commune_insee": "87076", + "nom_de_la_commune": "JABREILLES LES BORDES", + "code_postal": "87370", + "coordonnees_gps": [ + 46.0240636032, + 1.51487992944 + ], + "libelle_d_acheminement": "JABREILLES LES BORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51487992944, + 46.0240636032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d7fe2055a458d62ecda2ab332886f245155942e", + "fields": { + "code_commune_insee": "87080", + "nom_de_la_commune": "JOUAC", + "code_postal": "87890", + "coordonnees_gps": [ + 46.3495733978, + 1.25939888968 + ], + "libelle_d_acheminement": "JOUAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25939888968, + 46.3495733978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d335a90b0313bde03e7f86b5dec64f1bf5cc9d1", + "fields": { + "code_commune_insee": "87082", + "nom_de_la_commune": "LADIGNAC LE LONG", + "code_postal": "87500", + "coordonnees_gps": [ + 45.5883075573, + 1.10742594312 + ], + "libelle_d_acheminement": "LADIGNAC LE LONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10742594312, + 45.5883075573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "440b734aabcbae533012347676b6c63bd7b6a296", + "fields": { + "ligne_5": "LANDOUGE", + "code_commune_insee": "87085", + "libelle_d_acheminement": "LIMOGES", + "code_postal": "87100", + "nom_de_la_commune": "LIMOGES", + "coordonnees_gps": [ + 45.8542549589, + 1.2487579024 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2487579024, + 45.8542549589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aef00f1eba7eb8d2c2f15572a7a6c16988e9d908", + "fields": { + "ligne_5": "BEAUNE LES MINES", + "code_commune_insee": "87085", + "libelle_d_acheminement": "LIMOGES", + "code_postal": "87280", + "nom_de_la_commune": "LIMOGES", + "coordonnees_gps": [ + 45.8542549589, + 1.2487579024 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2487579024, + 45.8542549589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3b4cbbc03a556b6d3d44299e9004f57421d7105", + "fields": { + "code_commune_insee": "87088", + "nom_de_la_commune": "MAGNAC BOURG", + "code_postal": "87380", + "coordonnees_gps": [ + 45.6008431539, + 1.43562609799 + ], + "libelle_d_acheminement": "MAGNAC BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43562609799, + 45.6008431539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "868d2e174b8dff971a6ab2e871aafe94b8058ce7", + "fields": { + "code_commune_insee": "87089", + "nom_de_la_commune": "MAGNAC LAVAL", + "code_postal": "87190", + "coordonnees_gps": [ + 46.2285207281, + 1.17281064947 + ], + "libelle_d_acheminement": "MAGNAC LAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17281064947, + 46.2285207281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c41dc175b945b31d550f8ac53080b305726002b", + "fields": { + "code_commune_insee": "87091", + "nom_de_la_commune": "MAISONNAIS SUR TARDOIRE", + "code_postal": "87440", + "coordonnees_gps": [ + 45.7119603941, + 0.683803927182 + ], + "libelle_d_acheminement": "MAISONNAIS SUR TARDOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.683803927182, + 45.7119603941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da497415f3ee8443f50da967d5d8ffb47b3483af", + "fields": { + "code_commune_insee": "87096", + "nom_de_la_commune": "LA MEYZE", + "code_postal": "87800", + "coordonnees_gps": [ + 45.6078683969, + 1.19432359478 + ], + "libelle_d_acheminement": "LA MEYZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19432359478, + 45.6078683969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4563a066a8ba11ade9b29378d87af845c1e6325", + "fields": { + "code_commune_insee": "87103", + "nom_de_la_commune": "NANTIAT", + "code_postal": "87140", + "coordonnees_gps": [ + 46.0110925335, + 1.17367841667 + ], + "libelle_d_acheminement": "NANTIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17367841667, + 46.0110925335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a565311b8ccf944f7eccc914759e34d6dfb9f0d", + "fields": { + "code_commune_insee": "87104", + "nom_de_la_commune": "NEDDE", + "code_postal": "87120", + "coordonnees_gps": [ + 45.7207057772, + 1.82658375084 + ], + "libelle_d_acheminement": "NEDDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82658375084, + 45.7207057772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fd93690a200bb7dbcdad098a70b0531c8b3ad18", + "fields": { + "code_commune_insee": "87105", + "nom_de_la_commune": "NEUVIC ENTIER", + "code_postal": "87130", + "coordonnees_gps": [ + 45.7370504986, + 1.63875195833 + ], + "libelle_d_acheminement": "NEUVIC ENTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63875195833, + 45.7370504986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d36977eb77ac407a6f02380794d72d7f51d0f92b", + "fields": { + "code_commune_insee": "87114", + "nom_de_la_commune": "PANAZOL", + "code_postal": "87350", + "coordonnees_gps": [ + 45.8407332178, + 1.32357791715 + ], + "libelle_d_acheminement": "PANAZOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32357791715, + 45.8407332178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "949b5d802db9b28132114f5e68bd2fdf32dc3ef4", + "fields": { + "code_commune_insee": "87119", + "nom_de_la_commune": "PIERRE BUFFIERE", + "code_postal": "87260", + "coordonnees_gps": [ + 45.6911141635, + 1.36024166965 + ], + "libelle_d_acheminement": "PIERRE BUFFIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36024166965, + 45.6911141635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6af0d0ee0b72993493d8b6d2bf83d6e9ea73fc7e", + "fields": { + "code_commune_insee": "87121", + "nom_de_la_commune": "RANCON", + "code_postal": "87290", + "coordonnees_gps": [ + 46.1289799327, + 1.18027706382 + ], + "libelle_d_acheminement": "RANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18027706382, + 46.1289799327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8096009cb8c17f782cc04665ae344cc14262b838", + "fields": { + "code_commune_insee": "87126", + "nom_de_la_commune": "ROCHECHOUART", + "code_postal": "87600", + "coordonnees_gps": [ + 45.8236032815, + 0.84280512319 + ], + "libelle_d_acheminement": "ROCHECHOUART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84280512319, + 45.8236032815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d936c25a2a3b90284121d90a1d96fb0a94bb6659", + "fields": { + "ligne_5": "ST SYMPHORIEN SUR COUZE", + "code_commune_insee": "87128", + "libelle_d_acheminement": "ST PARDOUX LE LAC", + "code_postal": "87140", + "nom_de_la_commune": "ST PARDOUX LE LAC", + "coordonnees_gps": [ + 46.0716643434, + 1.19803600698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19803600698, + 46.0716643434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e34c0532fb9a0d812a3c3bc64649304a10485e3c", + "fields": { + "code_commune_insee": "87130", + "nom_de_la_commune": "ROZIERS ST GEORGES", + "code_postal": "87130", + "coordonnees_gps": [ + 45.7432695076, + 1.56065453243 + ], + "libelle_d_acheminement": "ROZIERS ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56065453243, + 45.7432695076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a0870bd9a9e3870bed98dfd2cb6c4c798d96465", + "fields": { + "code_commune_insee": "87131", + "nom_de_la_commune": "SAILLAT SUR VIENNE", + "code_postal": "87720", + "coordonnees_gps": [ + 45.8704899446, + 0.834066842263 + ], + "libelle_d_acheminement": "SAILLAT SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.834066842263, + 45.8704899446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cc38596c3fea18ee14a7fe388393a269c2700e3", + "fields": { + "code_commune_insee": "87132", + "nom_de_la_commune": "ST AMAND LE PETIT", + "code_postal": "87120", + "coordonnees_gps": [ + 45.7692929778, + 1.76751945612 + ], + "libelle_d_acheminement": "ST AMAND LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76751945612, + 45.7692929778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b502818fe04db34bc548d3e2addb454116a01203", + "fields": { + "code_commune_insee": "87137", + "nom_de_la_commune": "ST BAZILE", + "code_postal": "87150", + "coordonnees_gps": [ + 45.7346220066, + 0.807218203369 + ], + "libelle_d_acheminement": "ST BAZILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.807218203369, + 45.7346220066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0551a313761ae51e79605b2ead5f0a418e7c0564", + "fields": { + "code_commune_insee": "87139", + "nom_de_la_commune": "ST BONNET DE BELLAC", + "code_postal": "87300", + "coordonnees_gps": [ + 46.1636002439, + 0.93811461782 + ], + "libelle_d_acheminement": "ST BONNET DE BELLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93811461782, + 46.1636002439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8660ae21d8b62fc6ed2208c23e1be979b4fd8fc", + "fields": { + "code_commune_insee": "87142", + "nom_de_la_commune": "ST DENIS DES MURS", + "code_postal": "87400", + "coordonnees_gps": [ + 45.7797308115, + 1.53011084949 + ], + "libelle_d_acheminement": "ST DENIS DES MURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53011084949, + 45.7797308115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49a0981e7b0bbd0b2482ba9f041ad37a320b8639", + "fields": { + "code_commune_insee": "87155", + "nom_de_la_commune": "ST JUNIEN LES COMBES", + "code_postal": "87300", + "coordonnees_gps": [ + 46.0855473212, + 1.13424813789 + ], + "libelle_d_acheminement": "ST JUNIEN LES COMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13424813789, + 46.0855473212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57c696954e8c46854e5b28c65e68df89daa38722", + "fields": { + "code_commune_insee": "87158", + "nom_de_la_commune": "ST LAURENT SUR GORRE", + "code_postal": "87310", + "coordonnees_gps": [ + 45.7680643586, + 0.973319205658 + ], + "libelle_d_acheminement": "ST LAURENT SUR GORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.973319205658, + 45.7680643586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fd81c8958ff7bf3ba72e1f03a4a236331bd5883", + "fields": { + "code_commune_insee": "87159", + "nom_de_la_commune": "ST LEGER LA MONTAGNE", + "code_postal": "87340", + "coordonnees_gps": [ + 46.0305429413, + 1.42544791948 + ], + "libelle_d_acheminement": "ST LEGER LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42544791948, + 46.0305429413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03a328a5566f1a77e50c32a584c606ab3d7aa01b", + "fields": { + "code_commune_insee": "87160", + "nom_de_la_commune": "ST LEGER MAGNAZEIX", + "code_postal": "87190", + "coordonnees_gps": [ + 46.2880379698, + 1.23803752439 + ], + "libelle_d_acheminement": "ST LEGER MAGNAZEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23803752439, + 46.2880379698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cff13f86efa55355d1e10d362e4c173aa496ac4f", + "fields": { + "code_commune_insee": "87166", + "nom_de_la_commune": "ST MARTIN LE VIEUX", + "code_postal": "87700", + "coordonnees_gps": [ + 45.750523916, + 1.11900095506 + ], + "libelle_d_acheminement": "ST MARTIN LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11900095506, + 45.750523916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a7950b42535086c0e56fceb136c5ad75060f952", + "fields": { + "ligne_5": "ST PRIEST LE BETOUX", + "code_commune_insee": "87180", + "libelle_d_acheminement": "ST SORNIN LEULAC", + "code_postal": "87290", + "nom_de_la_commune": "ST SORNIN LEULAC", + "coordonnees_gps": [ + 46.1961790714, + 1.29766583914 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29766583914, + 46.1961790714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b076e27fc42e8b82962673f28df48635b93f5707", + "fields": { + "code_commune_insee": "87181", + "nom_de_la_commune": "ST SULPICE LAURIERE", + "code_postal": "87370", + "coordonnees_gps": [ + 46.0553034205, + 1.4770215698 + ], + "libelle_d_acheminement": "ST SULPICE LAURIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4770215698, + 46.0553034205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5dc219610a40d2a8dde7ee9659ee930c31dea0d", + "fields": { + "code_commune_insee": "87189", + "nom_de_la_commune": "LES SALLES LAVAUGUYON", + "code_postal": "87440", + "coordonnees_gps": [ + 45.7440613913, + 0.693496428456 + ], + "libelle_d_acheminement": "LES SALLES LAVAUGUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.693496428456, + 45.7440613913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3d3bb8c2e017044bb34db47be3ee49cde7e5be2", + "fields": { + "code_commune_insee": "87200", + "nom_de_la_commune": "VERNEUIL MOUSTIERS", + "code_postal": "87360", + "coordonnees_gps": [ + 46.3372063314, + 1.11643667308 + ], + "libelle_d_acheminement": "VERNEUIL MOUSTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11643667308, + 46.3372063314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f19ee07c4bc692778627496c73f1b8bd95294e5", + "fields": { + "code_commune_insee": "87201", + "nom_de_la_commune": "VERNEUIL SUR VIENNE", + "code_postal": "87430", + "coordonnees_gps": [ + 45.8504654455, + 1.12947772602 + ], + "libelle_d_acheminement": "VERNEUIL SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12947772602, + 45.8504654455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f1bb10435713d81dd4f9ad79d98e39c143b88f7", + "fields": { + "code_commune_insee": "87202", + "nom_de_la_commune": "VEYRAC", + "code_postal": "87520", + "coordonnees_gps": [ + 45.9034537819, + 1.09001899064 + ], + "libelle_d_acheminement": "VEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09001899064, + 45.9034537819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "426ee062ae6549448331d5e5f887627ecae64ee1", + "fields": { + "code_commune_insee": "88008", + "nom_de_la_commune": "ANGLEMONT", + "code_postal": "88700", + "coordonnees_gps": [ + 48.375772608, + 6.66844785634 + ], + "libelle_d_acheminement": "ANGLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66844785634, + 48.375772608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86086910d6153ae74f18387849cd5c8862ac20a4", + "fields": { + "code_commune_insee": "88012", + "nom_de_la_commune": "ARCHETTES", + "code_postal": "88380", + "coordonnees_gps": [ + 48.1321521406, + 6.54858727341 + ], + "libelle_d_acheminement": "ARCHETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54858727341, + 48.1321521406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aab02a853a6274913769da1fc8a0b9a6716d1760", + "fields": { + "code_commune_insee": "88016", + "nom_de_la_commune": "ATTIGNY", + "code_postal": "88260", + "coordonnees_gps": [ + 48.0615234718, + 6.02500764856 + ], + "libelle_d_acheminement": "ATTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02500764856, + 48.0615234718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4c09632b0d82997b49ecca6b0d36f7991f3de73", + "fields": { + "code_commune_insee": "88050", + "nom_de_la_commune": "BELMONT SUR BUTTANT", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2215096552, + 6.76849283806 + ], + "libelle_d_acheminement": "BELMONT SUR BUTTANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76849283806, + 48.2215096552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3255ad2e7ad89a01682a2fdfd0b6ab2126f5a91", + "fields": { + "code_commune_insee": "88056", + "nom_de_la_commune": "BETTONCOURT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3416039082, + 6.16622647862 + ], + "libelle_d_acheminement": "BETTONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16622647862, + 48.3416039082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6a4dae0e19290bfa13d89cc7bb386ca8ffc47a4", + "fields": { + "code_commune_insee": "88064", + "nom_de_la_commune": "BOIS DE CHAMP", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2415730449, + 6.80358451732 + ], + "libelle_d_acheminement": "BOIS DE CHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80358451732, + 48.2415730449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b2ad5bf71cf8cddf644816265120a2e241add01", + "fields": { + "code_commune_insee": "88070", + "nom_de_la_commune": "BOUXURULLES", + "code_postal": "88130", + "coordonnees_gps": [ + 48.331186787, + 6.23165699645 + ], + "libelle_d_acheminement": "BOUXURULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23165699645, + 48.331186787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "724521ab39e17ef2d0d311970240a4ee4025f96e", + "fields": { + "code_commune_insee": "88073", + "nom_de_la_commune": "BRANTIGNY", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3463519489, + 6.27689245872 + ], + "libelle_d_acheminement": "BRANTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27689245872, + 48.3463519489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fab0662d27dae138daa6bdba1e28982d682c053", + "fields": { + "code_commune_insee": "88076", + "nom_de_la_commune": "BROUVELIEURES", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2431644831, + 6.73071847115 + ], + "libelle_d_acheminement": "BROUVELIEURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73071847115, + 48.2431644831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb6b5f0c68401bfb5b1fa00216a6d4cee424040e", + "fields": { + "code_commune_insee": "88082", + "nom_de_la_commune": "CELLES SUR PLAINE", + "code_postal": "88110", + "coordonnees_gps": [ + 48.4499228234, + 6.96838114646 + ], + "libelle_d_acheminement": "CELLES SUR PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96838114646, + 48.4499228234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8033e5aaa4268a058fb88cbfc3be95c1b4b4818b", + "fields": { + "code_commune_insee": "88092", + "nom_de_la_commune": "CHARMOIS L ORGUEILLEUX", + "code_postal": "88270", + "coordonnees_gps": [ + 48.0912574478, + 6.26183235463 + ], + "libelle_d_acheminement": "CHARMOIS L ORGUEILLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26183235463, + 48.0912574478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ff3ef78dfe52c04640ec7ff977f4eaf0060eaf7", + "fields": { + "code_commune_insee": "88094", + "nom_de_la_commune": "CHATEL SUR MOSELLE", + "code_postal": "88330", + "coordonnees_gps": [ + 48.3198523928, + 6.40067968782 + ], + "libelle_d_acheminement": "CHATEL SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40067968782, + 48.3198523928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3067824807e884d6ca9f5a4155e0b059862c6f50", + "fields": { + "ligne_5": "VALAINCOURT", + "code_commune_insee": "88095", + "libelle_d_acheminement": "CHATENOIS", + "code_postal": "88170", + "nom_de_la_commune": "CHATENOIS", + "coordonnees_gps": [ + 48.309318088, + 5.82646017052 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82646017052, + 48.309318088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d73ac968473c6ae43334c743cdd85e85675e9bb", + "fields": { + "code_commune_insee": "88097", + "nom_de_la_commune": "CHAUFFECOURT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3335628199, + 6.15552797932 + ], + "libelle_d_acheminement": "CHAUFFECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15552797932, + 48.3335628199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd0efa69e169e21235c075437797e5dc7eb807b4", + "fields": { + "code_commune_insee": "88098", + "nom_de_la_commune": "CHAUMOUSEY", + "code_postal": "88390", + "coordonnees_gps": [ + 48.1734708065, + 6.33193477567 + ], + "libelle_d_acheminement": "CHAUMOUSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33193477567, + 48.1734708065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07fabd156f249c04949cf2d56798c82f7feeb71c", + "fields": { + "code_commune_insee": "88105", + "nom_de_la_commune": "CLAUDON", + "code_postal": "88410", + "coordonnees_gps": [ + 48.0323668803, + 6.04405426553 + ], + "libelle_d_acheminement": "CLAUDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04405426553, + 48.0323668803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a5e54bb82516e48a21c6b76b4bbb2ebd2758c6d", + "fields": { + "ligne_5": "BAN SUR MEURTHE", + "code_commune_insee": "88106", + "libelle_d_acheminement": "BAN SUR MEURTHE CLEFCY", + "code_postal": "88230", + "nom_de_la_commune": "BAN SUR MEURTHE CLEFCY", + "coordonnees_gps": [ + 48.1266851489, + 6.97520285406 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97520285406, + 48.1266851489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4faab16465e1e8f36d75a70110b949ab6d939ddb", + "fields": { + "code_commune_insee": "88107", + "nom_de_la_commune": "CLEREY LA COTE", + "code_postal": "88630", + "coordonnees_gps": [ + 48.4844162831, + 5.76197885517 + ], + "libelle_d_acheminement": "CLEREY LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76197885517, + 48.4844162831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71f4941442a203f56821ea7299e75b4b071a10b0", + "fields": { + "code_commune_insee": "88114", + "nom_de_la_commune": "CONTREXEVILLE", + "code_postal": "88140", + "coordonnees_gps": [ + 48.1854408113, + 5.89357999879 + ], + "libelle_d_acheminement": "CONTREXEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89357999879, + 48.1854408113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d53ae799167f18451f464b5244f87819c40434fb", + "fields": { + "code_commune_insee": "88118", + "nom_de_la_commune": "COUSSEY", + "code_postal": "88630", + "coordonnees_gps": [ + 48.4131072973, + 5.66796471132 + ], + "libelle_d_acheminement": "COUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66796471132, + 48.4131072973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86c81aafa46b03ca98dc035f9fbe0bfe94caa611", + "fields": { + "code_commune_insee": "88120", + "nom_de_la_commune": "LA CROIX AUX MINES", + "code_postal": "88520", + "coordonnees_gps": [ + 48.2017053519, + 7.06097682719 + ], + "libelle_d_acheminement": "LA CROIX AUX MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06097682719, + 48.2017053519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f70023d3b99d2b55208c88e34fb8c5e7ef7b42b", + "fields": { + "code_commune_insee": "88124", + "nom_de_la_commune": "DARNEY", + "code_postal": "88260", + "coordonnees_gps": [ + 48.0781497355, + 6.05418895113 + ], + "libelle_d_acheminement": "DARNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05418895113, + 48.0781497355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d473f01f1092a1229cd8f6e61a1bb41a2ed93a98", + "fields": { + "code_commune_insee": "88134", + "nom_de_la_commune": "DINOZE", + "code_postal": "88000", + "coordonnees_gps": [ + 48.1386457778, + 6.48137889563 + ], + "libelle_d_acheminement": "DINOZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48137889563, + 48.1386457778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bfc99224274f742887d0cba2589255bc1d935f0", + "fields": { + "code_commune_insee": "88137", + "nom_de_la_commune": "DOLAINCOURT", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3394348739, + 5.80990134614 + ], + "libelle_d_acheminement": "DOLAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80990134614, + 48.3394348739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af5f200ad517a7c9ff55a026c53ee381bf80ddda", + "fields": { + "code_commune_insee": "88146", + "nom_de_la_commune": "DOMJULIEN", + "code_postal": "88800", + "coordonnees_gps": [ + 48.2552201786, + 5.99477709505 + ], + "libelle_d_acheminement": "DOMJULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99477709505, + 48.2552201786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5a53e09ab2def65bf154d3251814a3b0e3bd75f", + "fields": { + "code_commune_insee": "88152", + "nom_de_la_commune": "DOMPIERRE", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2497287991, + 6.56736673982 + ], + "libelle_d_acheminement": "DOMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56736673982, + 48.2497287991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f55e6d999d54fb1f641d4bda58e8c714fbe74553", + "fields": { + "code_commune_insee": "88156", + "nom_de_la_commune": "DONCIERES", + "code_postal": "88700", + "coordonnees_gps": [ + 48.391632256, + 6.63746992341 + ], + "libelle_d_acheminement": "DONCIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63746992341, + 48.391632256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16f7943980b321a9393de1b0d2f4bee14ec976e4", + "fields": { + "code_commune_insee": "88157", + "nom_de_la_commune": "DOUNOUX", + "code_postal": "88220", + "coordonnees_gps": [ + 48.1074042749, + 6.43956295343 + ], + "libelle_d_acheminement": "DOUNOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43956295343, + 48.1074042749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf7d3df4b8ac6bd35ed88872425176bffd4a1767", + "fields": { + "code_commune_insee": "88160", + "nom_de_la_commune": "EPINAL", + "code_postal": "88000", + "coordonnees_gps": [ + 48.1631202656, + 6.47989286928 + ], + "libelle_d_acheminement": "EPINAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47989286928, + 48.1631202656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41377a0c3788ca8aeec041b27aec3b1fdc69e892", + "fields": { + "code_commune_insee": "88163", + "nom_de_la_commune": "ESSEGNEY", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3760416841, + 6.33310938156 + ], + "libelle_d_acheminement": "ESSEGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33310938156, + 48.3760416841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecd208692f638c6f91db2a666ba5ed72c1c82acc", + "fields": { + "code_commune_insee": "88164", + "nom_de_la_commune": "ESTRENNES", + "code_postal": "88500", + "coordonnees_gps": [ + 48.2597029699, + 6.05563322175 + ], + "libelle_d_acheminement": "ESTRENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05563322175, + 48.2597029699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24edda8c6d69992c8b2d4cae8125d45f3fcee365", + "fields": { + "code_commune_insee": "88167", + "nom_de_la_commune": "FAUCOMPIERRE", + "code_postal": "88460", + "coordonnees_gps": [ + 48.1402706744, + 6.66392055704 + ], + "libelle_d_acheminement": "FAUCOMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66392055704, + 48.1402706744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ae313404f5efc9ce120d0400cc4fa5c2e24d414", + "fields": { + "code_commune_insee": "88179", + "nom_de_la_commune": "FOUCHECOURT", + "code_postal": "88320", + "coordonnees_gps": [ + 48.0052492177, + 5.85929939461 + ], + "libelle_d_acheminement": "FOUCHECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85929939461, + 48.0052492177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f0556e5075f9fb264da8261df7458067e151f3c", + "fields": { + "code_commune_insee": "88181", + "nom_de_la_commune": "FRAIZE", + "code_postal": "88230", + "coordonnees_gps": [ + 48.1863177255, + 7.0180107121 + ], + "libelle_d_acheminement": "FRAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0180107121, + 48.1863177255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b3772b9a3098d0a8f7d5921606ebd62ccb50dbf", + "fields": { + "code_commune_insee": "88195", + "nom_de_la_commune": "GENDREVILLE", + "code_postal": "88140", + "coordonnees_gps": [ + 48.2354061751, + 5.71584808429 + ], + "libelle_d_acheminement": "GENDREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71584808429, + 48.2354061751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15facaafe086bde93a0acce33d935206a5f09e7b", + "fields": { + "code_commune_insee": "88198", + "nom_de_la_commune": "GERBEPAL", + "code_postal": "88430", + "coordonnees_gps": [ + 48.1306977983, + 6.9210025294 + ], + "libelle_d_acheminement": "GERBEPAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9210025294, + 48.1306977983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbae74e45e6115d9fd2281f192dfa1176420070a", + "fields": { + "code_commune_insee": "88199", + "nom_de_la_commune": "GIGNEVILLE", + "code_postal": "88320", + "coordonnees_gps": [ + 48.1123719506, + 5.91797417258 + ], + "libelle_d_acheminement": "GIGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91797417258, + 48.1123719506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08d08e32b2f75bb71a8e9e329a3f5920847f45b2", + "fields": { + "code_commune_insee": "88203", + "nom_de_la_commune": "GIRECOURT SUR DURBION", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2483163554, + 6.59863899407 + ], + "libelle_d_acheminement": "GIRECOURT SUR DURBION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59863899407, + 48.2483163554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f37495626fc2579871b499e45b5987cc5d589b3b", + "fields": { + "code_commune_insee": "88205", + "nom_de_la_commune": "GIRMONT VAL D AJOL", + "code_postal": "88340", + "coordonnees_gps": [ + 47.9501646541, + 6.56784449876 + ], + "libelle_d_acheminement": "GIRMONT VAL D AJOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56784449876, + 47.9501646541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ae08acbe09f32da6907fa959ca0c302cad9ccd8", + "fields": { + "code_commune_insee": "88213", + "nom_de_la_commune": "LA GRANDE FOSSE", + "code_postal": "88490", + "coordonnees_gps": [ + 48.3411124311, + 7.07741300394 + ], + "libelle_d_acheminement": "LA GRANDE FOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07741300394, + 48.3411124311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a7730b45bcb064c5ffaf6356dbd6bba1373926a", + "fields": { + "code_commune_insee": "88220", + "nom_de_la_commune": "GRIGNONCOURT", + "code_postal": "88410", + "coordonnees_gps": [ + 47.9603456501, + 5.90603737866 + ], + "libelle_d_acheminement": "GRIGNONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90603737866, + 47.9603456501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9df297f30671f59af05052c2383517d2d2a56819", + "fields": { + "code_commune_insee": "88223", + "nom_de_la_commune": "GUGNEY AUX AULX", + "code_postal": "88450", + "coordonnees_gps": [ + 48.2996214429, + 6.27117773923 + ], + "libelle_d_acheminement": "GUGNEY AUX AULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27117773923, + 48.2996214429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26b1ba49bad46abccb1ca5fcc85598e6f60d9232", + "fields": { + "code_commune_insee": "88231", + "nom_de_la_commune": "HAREVILLE", + "code_postal": "88800", + "coordonnees_gps": [ + 48.2037286203, + 6.01663834023 + ], + "libelle_d_acheminement": "HAREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01663834023, + 48.2037286203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a2b5aaf1d56aa59e8c784efa1f7102177de1ec9", + "fields": { + "code_commune_insee": "88237", + "nom_de_la_commune": "HENNECOURT", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2107215683, + 6.28992434859 + ], + "libelle_d_acheminement": "HENNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28992434859, + 48.2107215683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbc4103a8c34218689ebe6c6026774f541d1a0a2", + "fields": { + "code_commune_insee": "88240", + "nom_de_la_commune": "HERPELMONT", + "code_postal": "88600", + "coordonnees_gps": [ + 48.1645481826, + 6.73252039852 + ], + "libelle_d_acheminement": "HERPELMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73252039852, + 48.1645481826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1f8937394b643d10c525db14f673419e1a62114", + "fields": { + "code_commune_insee": "88241", + "nom_de_la_commune": "HOUECOURT", + "code_postal": "88170", + "coordonnees_gps": [ + 48.2930928111, + 5.90276215713 + ], + "libelle_d_acheminement": "HOUECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90276215713, + 48.2930928111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f01bba11d20bee2164ef30dca13c8ffcbe732052", + "fields": { + "code_commune_insee": "88244", + "nom_de_la_commune": "LA HOUSSIERE", + "code_postal": "88430", + "coordonnees_gps": [ + 48.2051817248, + 6.86143996065 + ], + "libelle_d_acheminement": "LA HOUSSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86143996065, + 48.2051817248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b442165df5338d13da9a19498469cd0ecafbfa4c", + "fields": { + "code_commune_insee": "88246", + "nom_de_la_commune": "HYMONT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.2640115227, + 6.13751849578 + ], + "libelle_d_acheminement": "HYMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13751849578, + 48.2640115227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4c14775f6ce61e8b0e8d24c7a0ed084e460043a", + "fields": { + "code_commune_insee": "88247", + "nom_de_la_commune": "IGNEY", + "code_postal": "88150", + "coordonnees_gps": [ + 48.276319758, + 6.39000589897 + ], + "libelle_d_acheminement": "IGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39000589897, + 48.276319758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cebccb64f19953c72a0fc53059c9f49f89d22f16", + "fields": { + "code_commune_insee": "88251", + "nom_de_la_commune": "JEANMENIL", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3307687041, + 6.71818019629 + ], + "libelle_d_acheminement": "JEANMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71818019629, + 48.3307687041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85f3d4522a5ec224334970e05e8d34b69678df26", + "fields": { + "code_commune_insee": "88263", + "nom_de_la_commune": "LAVELINE DU HOUX", + "code_postal": "88640", + "coordonnees_gps": [ + 48.1394463319, + 6.70838299375 + ], + "libelle_d_acheminement": "LAVELINE DU HOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70838299375, + 48.1394463319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1c2dbf01315ca5d0b6e31429d2ced5474a2942a", + "fields": { + "code_commune_insee": "88264", + "nom_de_la_commune": "LEGEVILLE ET BONFAYS", + "code_postal": "88270", + "coordonnees_gps": [ + 48.1866029628, + 6.15336139475 + ], + "libelle_d_acheminement": "LEGEVILLE ET BONFAYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15336139475, + 48.1866029628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "492356b136ec264fc6b8e5336d288eab94d8ade6", + "fields": { + "code_commune_insee": "88278", + "nom_de_la_commune": "MACONCOURT", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3621746967, + 5.93892201857 + ], + "libelle_d_acheminement": "MACONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93892201857, + 48.3621746967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3fc18f1b7f27fbb07033026f6fe15cd23f76084", + "fields": { + "code_commune_insee": "88289", + "nom_de_la_commune": "MARTIGNY LES BAINS", + "code_postal": "88320", + "coordonnees_gps": [ + 48.1103965406, + 5.81812933203 + ], + "libelle_d_acheminement": "MARTIGNY LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81812933203, + 48.1103965406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05f2d214b16a1c9c724cb74609010a7065dea27a", + "fields": { + "code_commune_insee": "88299", + "nom_de_la_commune": "MENIL EN XAINTOIS", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3027401506, + 5.97315674215 + ], + "libelle_d_acheminement": "MENIL EN XAINTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97315674215, + 48.3027401506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a59b74ce3a1923df6556e0f031022a29ab7a6d4", + "fields": { + "code_commune_insee": "88304", + "nom_de_la_commune": "MIRECOURT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.2935312144, + 6.12032421472 + ], + "libelle_d_acheminement": "MIRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12032421472, + 48.2935312144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1450a40f87ba21cda60fc9dd835b3898dfcee532", + "fields": { + "code_commune_insee": "88314", + "nom_de_la_commune": "MORIZECOURT", + "code_postal": "88320", + "coordonnees_gps": [ + 48.0718872896, + 5.85844834425 + ], + "libelle_d_acheminement": "MORIZECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85844834425, + 48.0718872896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f54bd4659e63b938c19b1b8d64edd193d86a86c9", + "fields": { + "code_commune_insee": "88324", + "nom_de_la_commune": "LA NEUVEVILLE SOUS CHATENOIS", + "code_postal": "88170", + "coordonnees_gps": [ + 48.2864760642, + 5.87204084332 + ], + "libelle_d_acheminement": "LA NEUVEVILLE SOUS CHATENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87204084332, + 48.2864760642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55550df000f2a52cdd69c774e7734b410183e47d", + "fields": { + "code_commune_insee": "88325", + "nom_de_la_commune": "LA NEUVEVILLE SOUS MONTFORT", + "code_postal": "88800", + "coordonnees_gps": [ + 48.2291302196, + 6.01738942152 + ], + "libelle_d_acheminement": "LA NEUVEVILLE SOUS MONTFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01738942152, + 48.2291302196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25f6c08b43819940cda2f1cac676761512556704", + "fields": { + "code_commune_insee": "88326", + "nom_de_la_commune": "NEUVILLERS SUR FAVE", + "code_postal": "88100", + "coordonnees_gps": [ + 48.2849702231, + 7.03413627809 + ], + "libelle_d_acheminement": "NEUVILLERS SUR FAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03413627809, + 48.2849702231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff24d49cffca471004169f1dba8f5d8971d19de2", + "fields": { + "code_commune_insee": "88343", + "nom_de_la_commune": "PAREY SOUS MONTFORT", + "code_postal": "88800", + "coordonnees_gps": [ + 48.2508324084, + 5.94558967092 + ], + "libelle_d_acheminement": "PAREY SOUS MONTFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94558967092, + 48.2508324084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b0c97a1cfeacb4d3d4f0b62162a6ccb462e35f3", + "fields": { + "code_commune_insee": "88347", + "nom_de_la_commune": "PIERREFITTE", + "code_postal": "88270", + "coordonnees_gps": [ + 48.1641794283, + 6.17433471969 + ], + "libelle_d_acheminement": "PIERREFITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17433471969, + 48.1641794283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad4d298f2d2bf024d71da899d7484521c6c64969", + "fields": { + "code_commune_insee": "88349", + "nom_de_la_commune": "PLAINFAING", + "code_postal": "88230", + "coordonnees_gps": [ + 48.1425830967, + 7.03749465114 + ], + "libelle_d_acheminement": "PLAINFAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03749465114, + 48.1425830967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d9f60b5101978348b08bfef91d11abc03d59fc4", + "fields": { + "code_commune_insee": "88350", + "nom_de_la_commune": "PLEUVEZAIN", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3765895082, + 5.91518537556 + ], + "libelle_d_acheminement": "PLEUVEZAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91518537556, + 48.3765895082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bf12984dd893d5d055a6e00177c7616ebbb32f6", + "fields": { + "code_commune_insee": "88351", + "nom_de_la_commune": "PLOMBIERES LES BAINS", + "code_postal": "88370", + "coordonnees_gps": [ + 47.9697475958, + 6.42879961974 + ], + "libelle_d_acheminement": "PLOMBIERES LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42879961974, + 47.9697475958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "010e0b9cabb63271a156c82579733f19d0382ba0", + "fields": { + "ligne_5": "RUAUX", + "code_commune_insee": "88351", + "libelle_d_acheminement": "PLOMBIERES LES BAINS", + "code_postal": "88370", + "nom_de_la_commune": "PLOMBIERES LES BAINS", + "coordonnees_gps": [ + 47.9697475958, + 6.42879961974 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42879961974, + 47.9697475958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77c2ee10cede517e7fd11519d24282e1a2f0b65e", + "fields": { + "code_commune_insee": "88356", + "nom_de_la_commune": "LES POULIERES", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2035855433, + 6.78630426171 + ], + "libelle_d_acheminement": "LES POULIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78630426171, + 48.2035855433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29e861b7f8f4bfe2fdcc16d818ed1c2ddb0a3713", + "fields": { + "code_commune_insee": "88379", + "nom_de_la_commune": "REHAINCOURT", + "code_postal": "88330", + "coordonnees_gps": [ + 48.3615254656, + 6.4703734495 + ], + "libelle_d_acheminement": "REHAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4703734495, + 48.3615254656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b1b7b6a3bb537e2ed1fd277bbacc1c9c085f276", + "fields": { + "code_commune_insee": "88381", + "nom_de_la_commune": "RELANGES", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1117050113, + 6.0162884596 + ], + "libelle_d_acheminement": "RELANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0162884596, + 48.1117050113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8a905008658d5d47aba1299207c2569cbe22756", + "fields": { + "code_commune_insee": "88393", + "nom_de_la_commune": "ROLLAINVILLE", + "code_postal": "88300", + "coordonnees_gps": [ + 48.3554764576, + 5.74054741265 + ], + "libelle_d_acheminement": "ROLLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74054741265, + 48.3554764576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "433c383a31fc3181ad4736107d62be1c22e4a39a", + "fields": { + "code_commune_insee": "88398", + "nom_de_la_commune": "LES ROUGES EAUX", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2654557112, + 6.82103671225 + ], + "libelle_d_acheminement": "LES ROUGES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82103671225, + 48.2654557112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "536ac8924f2dec00bde222a563f0f05f474aaef2", + "fields": { + "code_commune_insee": "88400", + "nom_de_la_commune": "ROUVRES EN XAINTOIS", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3043260772, + 6.02285815223 + ], + "libelle_d_acheminement": "ROUVRES EN XAINTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02285815223, + 48.3043260772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fd207905b6cdce9c29e7f4d3a1eaa9a5bd371e6", + "fields": { + "code_commune_insee": "88407", + "nom_de_la_commune": "RUPPES", + "code_postal": "88630", + "coordonnees_gps": [ + 48.4665956128, + 5.77125636552 + ], + "libelle_d_acheminement": "RUPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77125636552, + 48.4665956128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed0103972706ba4548cfb5abd140e10e962ff2e3", + "fields": { + "code_commune_insee": "88410", + "nom_de_la_commune": "STE BARBE", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3926409595, + 6.75215024324 + ], + "libelle_d_acheminement": "STE BARBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75215024324, + 48.3926409595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b9b2affd45bdc05ebaa461ee0f72bdac3a2aaaa", + "fields": { + "code_commune_insee": "88424", + "nom_de_la_commune": "STE MARGUERITE", + "code_postal": "88100", + "coordonnees_gps": [ + 48.2675581117, + 6.97340042686 + ], + "libelle_d_acheminement": "STE MARGUERITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97340042686, + 48.2675581117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f45292e4e6da1cdc22b4f16043684128a2f2a956", + "fields": { + "code_commune_insee": "88425", + "nom_de_la_commune": "ST MAURICE SUR MORTAGNE", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3917125307, + 6.57397194545 + ], + "libelle_d_acheminement": "ST MAURICE SUR MORTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57397194545, + 48.3917125307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "473bef78db079cfb2f3367ffbfa69c43100537e5", + "fields": { + "code_commune_insee": "88426", + "nom_de_la_commune": "ST MAURICE SUR MOSELLE", + "code_postal": "88560", + "coordonnees_gps": [ + 47.8462080674, + 6.85474549269 + ], + "libelle_d_acheminement": "ST MAURICE SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85474549269, + 47.8462080674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1254e8e87bdc8297777887923ad412b990ffab2a", + "fields": { + "code_commune_insee": "88427", + "nom_de_la_commune": "ST MENGE", + "code_postal": "88170", + "coordonnees_gps": [ + 48.288921727, + 5.95105661444 + ], + "libelle_d_acheminement": "ST MENGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95105661444, + 48.288921727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4de16b6b863cee442c9abc8ce8cc3241ed445fbc", + "fields": { + "code_commune_insee": "88439", + "nom_de_la_commune": "SANCHEY", + "code_postal": "88390", + "coordonnees_gps": [ + 48.1669458665, + 6.36802585662 + ], + "libelle_d_acheminement": "SANCHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36802585662, + 48.1669458665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c324bb0f4f76e0483dc30d9f4fc3dd1c8aedf38c", + "fields": { + "code_commune_insee": "88452", + "nom_de_la_commune": "SENONGES", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1425352488, + 6.05690466716 + ], + "libelle_d_acheminement": "SENONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05690466716, + 48.1425352488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30d3f458adde5ce480cbd10f5238a42ee8961812", + "fields": { + "code_commune_insee": "88457", + "nom_de_la_commune": "SIONNE", + "code_postal": "88630", + "coordonnees_gps": [ + 48.3981193359, + 5.62852785877 + ], + "libelle_d_acheminement": "SIONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62852785877, + 48.3981193359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f3e7134e15374731fce64f43262fa042169957d", + "fields": { + "code_commune_insee": "88459", + "nom_de_la_commune": "SONCOURT", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3879629966, + 5.90800491038 + ], + "libelle_d_acheminement": "SONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90800491038, + 48.3879629966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a825d4b17e3753f8e2a5b5018aa0d72389566f78", + "fields": { + "code_commune_insee": "88460", + "nom_de_la_commune": "SOULOSSE SOUS ST ELOPHE", + "code_postal": "88630", + "coordonnees_gps": [ + 48.4139044726, + 5.73896632817 + ], + "libelle_d_acheminement": "SOULOSSE SOUS ST ELOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73896632817, + 48.4139044726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dd740dee7534c6966a5d64122e71edf9fe0a9e9", + "fields": { + "ligne_5": "JULIENRUPT", + "code_commune_insee": "88462", + "libelle_d_acheminement": "LE SYNDICAT", + "code_postal": "88120", + "nom_de_la_commune": "LE SYNDICAT", + "coordonnees_gps": [ + 48.0311250324, + 6.69827202469 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69827202469, + 48.0311250324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac1ab4cc9db302b2070206898d203bdeeb7b443c", + "fields": { + "code_commune_insee": "88464", + "nom_de_la_commune": "TENDON", + "code_postal": "88460", + "coordonnees_gps": [ + 48.1081118464, + 6.67533830066 + ], + "libelle_d_acheminement": "TENDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67533830066, + 48.1081118464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "370273c6c88502dbd3080f5ae4cc57825279fb2a", + "fields": { + "ligne_5": "GIRMONT", + "code_commune_insee": "88465", + "libelle_d_acheminement": "CAPAVENIR VOSGES", + "code_postal": "88150", + "nom_de_la_commune": "CAPAVENIR VOSGES", + "coordonnees_gps": [ + 48.2495514114, + 6.40863836497 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40863836497, + 48.2495514114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce0cea92a1346fff1e49a75d379bca56cd790a12", + "fields": { + "ligne_5": "THAON LES VOSGES", + "code_commune_insee": "88465", + "libelle_d_acheminement": "CAPAVENIR VOSGES", + "code_postal": "88150", + "nom_de_la_commune": "CAPAVENIR VOSGES", + "coordonnees_gps": [ + 48.2495514114, + 6.40863836497 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40863836497, + 48.2495514114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27540ecfa2f7adbd19da9ed00b0f06263a4e737f", + "fields": { + "code_commune_insee": "88467", + "nom_de_la_commune": "THIEFOSSE", + "code_postal": "88290", + "coordonnees_gps": [ + 47.9659189559, + 6.72991911835 + ], + "libelle_d_acheminement": "THIEFOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72991911835, + 47.9659189559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58da292f060318c8a0772143fd6d396a7a10b485", + "fields": { + "code_commune_insee": "88468", + "nom_de_la_commune": "LE THILLOT", + "code_postal": "88160", + "coordonnees_gps": [ + 47.8795029889, + 6.76927057164 + ], + "libelle_d_acheminement": "LE THILLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76927057164, + 47.8795029889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c0fe355f3d03c1720dd093ad5e041da8debdfbb", + "fields": { + "code_commune_insee": "88469", + "nom_de_la_commune": "THIRAUCOURT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.292756795, + 6.07454050117 + ], + "libelle_d_acheminement": "THIRAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07454050117, + 48.292756795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c722beb515af2d124c91bc7ebeb1d2d3e679783", + "fields": { + "code_commune_insee": "88472", + "nom_de_la_commune": "THUILLIERES", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1533673161, + 6.01138810297 + ], + "libelle_d_acheminement": "THUILLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01138810297, + 48.1533673161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b85fbb1ab6031e1584842e9c7ed437a10adba616", + "fields": { + "code_commune_insee": "88473", + "nom_de_la_commune": "TIGNECOURT", + "code_postal": "88320", + "coordonnees_gps": [ + 48.0453029268, + 5.89454897704 + ], + "libelle_d_acheminement": "TIGNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89454897704, + 48.0453029268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b036d24ca82f935ed035510e2cfaef2889576ffd", + "fields": { + "code_commune_insee": "88480", + "nom_de_la_commune": "UBEXY", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3372090624, + 6.28045582806 + ], + "libelle_d_acheminement": "UBEXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28045582806, + 48.3372090624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74958f74cc4d8812786617e0588a3f4516f11dc1", + "fields": { + "code_commune_insee": "88483", + "nom_de_la_commune": "UXEGNEY", + "code_postal": "88390", + "coordonnees_gps": [ + 48.1963376541, + 6.38201358618 + ], + "libelle_d_acheminement": "UXEGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38201358618, + 48.1963376541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eb91d0721a2c50aab1b333e942d1ea837355c7c", + "fields": { + "code_commune_insee": "88497", + "nom_de_la_commune": "VAXONCOURT", + "code_postal": "88330", + "coordonnees_gps": [ + 48.2872881144, + 6.4200843281 + ], + "libelle_d_acheminement": "VAXONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4200843281, + 48.2872881144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7708c47b397168115ee90882b1eb63789218328", + "fields": { + "code_commune_insee": "88510", + "nom_de_la_commune": "VILLOTTE", + "code_postal": "88320", + "coordonnees_gps": [ + 48.1042926923, + 5.7690094936 + ], + "libelle_d_acheminement": "VILLOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7690094936, + 48.1042926923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e887a23bcc0097750c5614eb5b4e89e2c0ee4f37", + "fields": { + "code_commune_insee": "88514", + "nom_de_la_commune": "VIOCOURT", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3215627677, + 5.87101635049 + ], + "libelle_d_acheminement": "VIOCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87101635049, + 48.3215627677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1fcf70237f4f838bfda8bfc1278dacac73f50b7", + "fields": { + "code_commune_insee": "88520", + "nom_de_la_commune": "LES VOIVRES", + "code_postal": "88240", + "coordonnees_gps": [ + 48.0348359159, + 6.29572861072 + ], + "libelle_d_acheminement": "LES VOIVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29572861072, + 48.0348359159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86273d6612335152eaf3a558147b779b951c42ff", + "fields": { + "code_commune_insee": "88523", + "nom_de_la_commune": "VOUXEY", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3477921653, + 5.79087280043 + ], + "libelle_d_acheminement": "VOUXEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79087280043, + 48.3477921653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f1869833d293acab228a92ed7f507313ca1dbdc", + "fields": { + "ligne_5": "IMBRECOURT", + "code_commune_insee": "88523", + "libelle_d_acheminement": "VOUXEY", + "code_postal": "88170", + "nom_de_la_commune": "VOUXEY", + "coordonnees_gps": [ + 48.3477921653, + 5.79087280043 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79087280043, + 48.3477921653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c33c472076c7ec638af006620fb8b24177b082cc", + "fields": { + "code_commune_insee": "88524", + "nom_de_la_commune": "VRECOURT", + "code_postal": "88140", + "coordonnees_gps": [ + 48.1702434521, + 5.70465763455 + ], + "libelle_d_acheminement": "VRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70465763455, + 48.1702434521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a05a1eba96753fd310c66d760d360971fbe950a1", + "fields": { + "code_commune_insee": "88527", + "nom_de_la_commune": "XAFFEVILLERS", + "code_postal": "88700", + "coordonnees_gps": [ + 48.4106397675, + 6.60870252101 + ], + "libelle_d_acheminement": "XAFFEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60870252101, + 48.4106397675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ec42c067a1280c164301b652dc6ae48b36c629d", + "fields": { + "code_commune_insee": "88529", + "nom_de_la_commune": "XARONVAL", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3720629452, + 6.18667551387 + ], + "libelle_d_acheminement": "XARONVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18667551387, + 48.3720629452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cad75c21bcca57638adca2f5d2f6e394daa2712b", + "fields": { + "code_commune_insee": "88532", + "nom_de_la_commune": "ZINCOURT", + "code_postal": "88330", + "coordonnees_gps": [ + 48.3089875469, + 6.44246020697 + ], + "libelle_d_acheminement": "ZINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44246020697, + 48.3089875469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e9bbdf3c047d6b341a463d6eea50bbec22f09d1", + "fields": { + "ligne_5": "AILLANT SUR THOLON", + "code_commune_insee": "89003", + "libelle_d_acheminement": "MONTHOLON", + "code_postal": "89110", + "nom_de_la_commune": "MONTHOLON", + "coordonnees_gps": [ + 47.8710829792, + 3.32834802576 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32834802576, + 47.8710829792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4de0d4172a64dca9328798a535991abfb747403", + "fields": { + "ligne_5": "VILLIERS SUR THOLON", + "code_commune_insee": "89003", + "libelle_d_acheminement": "MONTHOLON", + "code_postal": "89110", + "nom_de_la_commune": "MONTHOLON", + "coordonnees_gps": [ + 47.8710829792, + 3.32834802576 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32834802576, + 47.8710829792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7920a7dde40ba8edf72d0029df0a1f72962efac", + "fields": { + "code_commune_insee": "89021", + "nom_de_la_commune": "ASQUINS", + "code_postal": "89450", + "coordonnees_gps": [ + 47.4878050152, + 3.74721603984 + ], + "libelle_d_acheminement": "ASQUINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74721603984, + 47.4878050152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1097130c4710daa9124437afde92306b701c8f95", + "fields": { + "code_commune_insee": "89036", + "nom_de_la_commune": "LA BELLIOLE", + "code_postal": "89150", + "coordonnees_gps": [ + 48.1448835973, + 3.08579739093 + ], + "libelle_d_acheminement": "LA BELLIOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08579739093, + 48.1448835973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f89f7fde030cd34dc051b6638bf8b29779c4f84", + "fields": { + "code_commune_insee": "89039", + "nom_de_la_commune": "BERU", + "code_postal": "89700", + "coordonnees_gps": [ + 47.8035904296, + 3.88582058467 + ], + "libelle_d_acheminement": "BERU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88582058467, + 47.8035904296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10b133d2c099f659ff1a02e282fa41e63b9249fa", + "fields": { + "code_commune_insee": "89048", + "nom_de_la_commune": "BOEURS EN OTHE", + "code_postal": "89770", + "coordonnees_gps": [ + 48.1398712988, + 3.70632804509 + ], + "libelle_d_acheminement": "BOEURS EN OTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70632804509, + 48.1398712988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab54f0208a9241fd560e72fb619b7db982865d6e", + "fields": { + "code_commune_insee": "89053", + "nom_de_la_commune": "BRANCHES", + "code_postal": "89113", + "coordonnees_gps": [ + 47.876336004, + 3.48199156683 + ], + "libelle_d_acheminement": "BRANCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48199156683, + 47.876336004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a00bb22bd0bf20cd75a64a6773dea7d1d61be86", + "fields": { + "code_commune_insee": "89058", + "nom_de_la_commune": "BUSSIERES", + "code_postal": "89630", + "coordonnees_gps": [ + 47.4274169611, + 4.05359315765 + ], + "libelle_d_acheminement": "BUSSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05359315765, + 47.4274169611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ba5f1dad988a680931c65dbb745a5eafa0ca63a", + "fields": { + "code_commune_insee": "89062", + "nom_de_la_commune": "CARISEY", + "code_postal": "89360", + "coordonnees_gps": [ + 47.9227804565, + 3.84516630553 + ], + "libelle_d_acheminement": "CARISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84516630553, + 47.9227804565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c80c558f0981def9d46b0835ec5edfc794ad4b5c", + "fields": { + "code_commune_insee": "89085", + "nom_de_la_commune": "CHARMOY", + "code_postal": "89400", + "coordonnees_gps": [ + 47.9415525641, + 3.49409153134 + ], + "libelle_d_acheminement": "CHARMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49409153134, + 47.9415525641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d53c46c19dc10ee288526a53004c8ce476bd1ab", + "fields": { + "ligne_5": "CHAMBEUGLE", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f5765189722501592ea6b9b8619331c35880881", + "fields": { + "ligne_5": "CHENE ARNOULT", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03a7cd44516673a9487ea673aeb1dd853e30b685", + "fields": { + "ligne_5": "DICY", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b334ce1ea8bd36ebaf6e8879077af2d76a02832c", + "fields": { + "ligne_5": "GRANDCHAMP", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "539a96e9c200c8e7ff25d9f5215ace3b292118da", + "fields": { + "ligne_5": "ST MARTIN SUR OUANNE", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b334499fa06519b0bb01b1f1d93c4225eca4b558", + "fields": { + "ligne_5": "VILLEFRANCHE", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86e46964ab95b4f3f70921b6be5c76f18b8ca7cb", + "fields": { + "code_commune_insee": "89099", + "nom_de_la_commune": "CHENY", + "code_postal": "89400", + "coordonnees_gps": [ + 47.944917825, + 3.53719621335 + ], + "libelle_d_acheminement": "CHENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53719621335, + 47.944917825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f26bdd3ea45894c1b6f6be42c47e32304019899c", + "fields": { + "code_commune_insee": "89105", + "nom_de_la_commune": "CHICHERY", + "code_postal": "89400", + "coordonnees_gps": [ + 47.9052375305, + 3.50840646597 + ], + "libelle_d_acheminement": "CHICHERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50840646597, + 47.9052375305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13bb990d6dc4d23d1090fc318cef164cc56494df", + "fields": { + "code_commune_insee": "89123", + "nom_de_la_commune": "COURGIS", + "code_postal": "89800", + "coordonnees_gps": [ + 47.7766945271, + 3.74350328185 + ], + "libelle_d_acheminement": "COURGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74350328185, + 47.7766945271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a862b204f90f4489a53430f4fc938b2094a3d0ed", + "fields": { + "code_commune_insee": "89128", + "nom_de_la_commune": "COUTARNOUX", + "code_postal": "89440", + "coordonnees_gps": [ + 47.6024812263, + 3.94209074467 + ], + "libelle_d_acheminement": "COUTARNOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94209074467, + 47.6024812263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b56cdc9fa1e5ae3bcb96bb1f78168f25f0172363", + "fields": { + "code_commune_insee": "89132", + "nom_de_la_commune": "CRY", + "code_postal": "89390", + "coordonnees_gps": [ + 47.7033445336, + 4.22891521589 + ], + "libelle_d_acheminement": "CRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22891521589, + 47.7033445336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "483ac2999a39f8b297b3fd2bfb5727fab57608c6", + "fields": { + "code_commune_insee": "89134", + "nom_de_la_commune": "CUSSY LES FORGES", + "code_postal": "89420", + "coordonnees_gps": [ + 47.4633590356, + 4.02245492798 + ], + "libelle_d_acheminement": "CUSSY LES FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02245492798, + 47.4633590356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8b32224ad4d254b2e580573a8a8c45db60c6efe", + "fields": { + "code_commune_insee": "89155", + "nom_de_la_commune": "ESCOLIVES STE CAMILLE", + "code_postal": "89290", + "coordonnees_gps": [ + 47.7225909756, + 3.60249190307 + ], + "libelle_d_acheminement": "ESCOLIVES STE CAMILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60249190307, + 47.7225909756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0480266e3fa37cc09948bb027e815a619789608", + "fields": { + "code_commune_insee": "89160", + "nom_de_la_commune": "ETIGNY", + "code_postal": "89510", + "coordonnees_gps": [ + 48.1368850036, + 3.27571313001 + ], + "libelle_d_acheminement": "ETIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27571313001, + 48.1368850036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "090dfa971f0be3bb76294b5f66f71c80a3e9ca08", + "fields": { + "code_commune_insee": "89163", + "nom_de_la_commune": "LA FERTE LOUPIERE", + "code_postal": "89110", + "coordonnees_gps": [ + 47.8869741845, + 3.23991180374 + ], + "libelle_d_acheminement": "LA FERTE LOUPIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23991180374, + 47.8869741845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b65898bb949a23083ce24dc06b3cd30b29f9cb9", + "fields": { + "code_commune_insee": "89165", + "nom_de_la_commune": "FLACY", + "code_postal": "89190", + "coordonnees_gps": [ + 48.2122713686, + 3.58723474642 + ], + "libelle_d_acheminement": "FLACY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58723474642, + 48.2122713686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a324091c570156adddf800f0902387a0df9d8be0", + "fields": { + "code_commune_insee": "89173", + "nom_de_la_commune": "FONTAINES", + "code_postal": "89130", + "coordonnees_gps": [ + 47.6926210411, + 3.25560632931 + ], + "libelle_d_acheminement": "FONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25560632931, + 47.6926210411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "960e08af1ba3345b3947dfda0b9ef56d87383ad7", + "fields": { + "code_commune_insee": "89176", + "nom_de_la_commune": "FONTENAY PRES VEZELAY", + "code_postal": "89450", + "coordonnees_gps": [ + 47.4155434556, + 3.73951403796 + ], + "libelle_d_acheminement": "FONTENAY PRES VEZELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73951403796, + 47.4155434556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddb065764f218e5166ed070ebd4b34bb5c8add52", + "fields": { + "code_commune_insee": "89180", + "nom_de_la_commune": "FOUCHERES", + "code_postal": "89150", + "coordonnees_gps": [ + 48.1744609196, + 3.14702856425 + ], + "libelle_d_acheminement": "FOUCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14702856425, + 48.1744609196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac9d6d3fcaeb49f6132f809637df463fbf40a489", + "fields": { + "code_commune_insee": "89184", + "nom_de_la_commune": "FULVY", + "code_postal": "89160", + "coordonnees_gps": [ + 47.7404530701, + 4.16212844857 + ], + "libelle_d_acheminement": "FULVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16212844857, + 47.7404530701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91d0ffef6e021ff0e4c728382b27032a1e8b9323", + "fields": { + "code_commune_insee": "89190", + "nom_de_la_commune": "GIVRY", + "code_postal": "89200", + "coordonnees_gps": [ + 47.5137032775, + 3.79475947222 + ], + "libelle_d_acheminement": "GIVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79475947222, + 47.5137032775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "713d119b1c24fa900724035c8fadc7c1ea6b13a2", + "fields": { + "ligne_5": "GUERCHY", + "code_commune_insee": "89196", + "libelle_d_acheminement": "VALRAVILLON", + "code_postal": "89113", + "nom_de_la_commune": "VALRAVILLON", + "coordonnees_gps": [ + 47.8968225975, + 3.42698733417 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42698733417, + 47.8968225975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a301603085b3761d35af2819b2fb21a10c83d9ea", + "fields": { + "ligne_5": "SCEAUX", + "code_commune_insee": "89197", + "libelle_d_acheminement": "GUILLON TERRE PLAINE", + "code_postal": "89420", + "nom_de_la_commune": "GUILLON TERRE PLAINE", + "coordonnees_gps": [ + 47.5289305152, + 4.09122331538 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09122331538, + 47.5289305152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "288e96efe0124e977628a01879c3fd88eae1236d", + "fields": { + "code_commune_insee": "89198", + "nom_de_la_commune": "GURGY", + "code_postal": "89250", + "coordonnees_gps": [ + 47.8782473912, + 3.55956207309 + ], + "libelle_d_acheminement": "GURGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55956207309, + 47.8782473912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9db0d55b50e80021ac801f36471955bba9db9723", + "fields": { + "code_commune_insee": "89233", + "nom_de_la_commune": "LUCY SUR CURE", + "code_postal": "89270", + "coordonnees_gps": [ + 47.637007629, + 3.76485740571 + ], + "libelle_d_acheminement": "LUCY SUR CURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76485740571, + 47.637007629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e7cb43c46822207c18cc9965a1bf9ced923f809", + "fields": { + "code_commune_insee": "89244", + "nom_de_la_commune": "MARMEAUX", + "code_postal": "89420", + "coordonnees_gps": [ + 47.5909987533, + 4.10578750687 + ], + "libelle_d_acheminement": "MARMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10578750687, + 47.5909987533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e576ff4f63680adcbd2a343310e5b3a3b7f647c", + "fields": { + "code_commune_insee": "89246", + "nom_de_la_commune": "MASSANGIS", + "code_postal": "89440", + "coordonnees_gps": [ + 47.6250901149, + 3.98513574014 + ], + "libelle_d_acheminement": "MASSANGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98513574014, + 47.6250901149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3f095709bef72c0030001191fd92bf159016673", + "fields": { + "code_commune_insee": "89250", + "nom_de_la_commune": "MERE", + "code_postal": "89144", + "coordonnees_gps": [ + 47.899133974, + 3.82008443141 + ], + "libelle_d_acheminement": "MERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82008443141, + 47.899133974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2258f5713d1c6d6e0e30e4da08cc576525fc1401", + "fields": { + "code_commune_insee": "89251", + "nom_de_la_commune": "MERRY LA VALLEE", + "code_postal": "89110", + "coordonnees_gps": [ + 47.7877688234, + 3.31454038152 + ], + "libelle_d_acheminement": "MERRY LA VALLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31454038152, + 47.7877688234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b62a538e31a685bc5d1c253be2c0fdea11682b5f", + "fields": { + "code_commune_insee": "89252", + "nom_de_la_commune": "MERRY SEC", + "code_postal": "89560", + "coordonnees_gps": [ + 47.6581928432, + 3.48553734083 + ], + "libelle_d_acheminement": "MERRY SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48553734083, + 47.6581928432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63ab80a38c5acbe6349def8ac0212d9aa222a0aa", + "fields": { + "code_commune_insee": "89254", + "nom_de_la_commune": "MEZILLES", + "code_postal": "89130", + "coordonnees_gps": [ + 47.6924002085, + 3.181097405 + ], + "libelle_d_acheminement": "MEZILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.181097405, + 47.6924002085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7721c87087716b74d81d346171cf4afad98f62c6", + "fields": { + "code_commune_insee": "89265", + "nom_de_la_commune": "MONTIGNY LA RESLE", + "code_postal": "89230", + "coordonnees_gps": [ + 47.8623795697, + 3.68202012303 + ], + "libelle_d_acheminement": "MONTIGNY LA RESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68202012303, + 47.8623795697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "294e4ffdf65989429da25300b603deb78b23ecf0", + "fields": { + "code_commune_insee": "89276", + "nom_de_la_commune": "NEUVY SAUTOUR", + "code_postal": "89570", + "coordonnees_gps": [ + 48.0446413017, + 3.78542965706 + ], + "libelle_d_acheminement": "NEUVY SAUTOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78542965706, + 48.0446413017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40637bc15c5507b7728a684dddbe1b18436b6f3c", + "fields": { + "code_commune_insee": "89284", + "nom_de_la_commune": "PACY SUR ARMANCON", + "code_postal": "89160", + "coordonnees_gps": [ + 47.7701973278, + 4.07902140785 + ], + "libelle_d_acheminement": "PACY SUR ARMANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07902140785, + 47.7701973278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad8ea55581ceecda747a166ebbdcea8b7fbe2fb8", + "fields": { + "code_commune_insee": "89289", + "nom_de_la_commune": "PAROY SUR THOLON", + "code_postal": "89300", + "coordonnees_gps": [ + 47.952420098, + 3.37491219132 + ], + "libelle_d_acheminement": "PAROY SUR THOLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37491219132, + 47.952420098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13ccbbda0b9af10b306cc9c8925827511eaafc8f", + "fields": { + "code_commune_insee": "89291", + "nom_de_la_commune": "PASSY", + "code_postal": "89510", + "coordonnees_gps": [ + 48.113257139, + 3.29533793656 + ], + "libelle_d_acheminement": "PASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29533793656, + 48.113257139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7346bd37a0b04e13a13d384b17b85a5e86d6ff2", + "fields": { + "code_commune_insee": "89298", + "nom_de_la_commune": "PIFFONDS", + "code_postal": "89330", + "coordonnees_gps": [ + 48.0571001875, + 3.14072115221 + ], + "libelle_d_acheminement": "PIFFONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14072115221, + 48.0571001875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ee6b32acec77039aa62a7f623eaec5d06aa0055", + "fields": { + "code_commune_insee": "89300", + "nom_de_la_commune": "PISY", + "code_postal": "89420", + "coordonnees_gps": [ + 47.5639786066, + 4.14212075944 + ], + "libelle_d_acheminement": "PISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14212075944, + 47.5639786066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0902827f87d4e8559865e99a2285e565f1e6fdec", + "fields": { + "code_commune_insee": "89303", + "nom_de_la_commune": "POILLY SUR SEREIN", + "code_postal": "89310", + "coordonnees_gps": [ + 47.764269044, + 3.89097240309 + ], + "libelle_d_acheminement": "POILLY SUR SEREIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89097240309, + 47.764269044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8f7e9c7348f2f1bb3d40f4b21da51635eb6b1fc", + "fields": { + "code_commune_insee": "89307", + "nom_de_la_commune": "PONTIGNY", + "code_postal": "89230", + "coordonnees_gps": [ + 47.9076877953, + 3.71694380417 + ], + "libelle_d_acheminement": "PONTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71694380417, + 47.9076877953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b8334e1e11d6da08343deac40eafb4bcc64c9b7", + "fields": { + "code_commune_insee": "89308", + "nom_de_la_commune": "PONT SUR VANNE", + "code_postal": "89190", + "coordonnees_gps": [ + 48.1958502799, + 3.43713511625 + ], + "libelle_d_acheminement": "PONT SUR VANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43713511625, + 48.1958502799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d58663b4c16c39765fbea3531fb023704b25d7d2", + "fields": { + "code_commune_insee": "89313", + "nom_de_la_commune": "PRECY SUR VRIN", + "code_postal": "89116", + "coordonnees_gps": [ + 47.9748965965, + 3.23292031908 + ], + "libelle_d_acheminement": "PRECY SUR VRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23292031908, + 47.9748965965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61697eb3398455eb0bdc5c3a9c4a0af95770189c", + "fields": { + "code_commune_insee": "89324", + "nom_de_la_commune": "ROGNY LES SEPT ECLUSES", + "code_postal": "89220", + "coordonnees_gps": [ + 47.7378445116, + 2.89070027765 + ], + "libelle_d_acheminement": "ROGNY LES SEPT ECLUSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89070027765, + 47.7378445116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "876d315f2a0a7777a00d1788d2a028566adebda2", + "fields": { + "code_commune_insee": "89326", + "nom_de_la_commune": "ROSOY", + "code_postal": "89100", + "coordonnees_gps": [ + 48.1486871821, + 3.31220740481 + ], + "libelle_d_acheminement": "ROSOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31220740481, + 48.1486871821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9862607f69a0d4e0027e0ce37137fac550918526", + "fields": { + "code_commune_insee": "89329", + "nom_de_la_commune": "RUGNY", + "code_postal": "89430", + "coordonnees_gps": [ + 47.8967756496, + 4.14997842918 + ], + "libelle_d_acheminement": "RUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14997842918, + 47.8967756496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7d74525d37a614e2690f31780de414421ca590f", + "fields": { + "code_commune_insee": "89331", + "nom_de_la_commune": "SAINPUITS", + "code_postal": "89520", + "coordonnees_gps": [ + 47.5126864446, + 3.25038757238 + ], + "libelle_d_acheminement": "SAINPUITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25038757238, + 47.5126864446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "401b51c54ba152155b0172fd167adb828294209f", + "fields": { + "code_commune_insee": "89339", + "nom_de_la_commune": "STE COLOMBE", + "code_postal": "89440", + "coordonnees_gps": [ + 47.5733326756, + 3.95597782049 + ], + "libelle_d_acheminement": "STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95597782049, + 47.5733326756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65accd84515d770f5f4634c4be2b8cc1705dc6ae", + "fields": { + "code_commune_insee": "89348", + "nom_de_la_commune": "ST JULIEN DU SAULT", + "code_postal": "89330", + "coordonnees_gps": [ + 48.0341276746, + 3.27521431804 + ], + "libelle_d_acheminement": "ST JULIEN DU SAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27521431804, + 48.0341276746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73e47b398f904dc643fd4a469d92912ab13a7a75", + "fields": { + "code_commune_insee": "89360", + "nom_de_la_commune": "ST MAURICE LE VIEIL", + "code_postal": "89110", + "coordonnees_gps": [ + 47.823467193, + 3.3678945863 + ], + "libelle_d_acheminement": "ST MAURICE LE VIEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3678945863, + 47.823467193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db5eaf41236f3067050402767f025cad18bf5882", + "fields": { + "code_commune_insee": "89361", + "nom_de_la_commune": "ST MAURICE THIZOUAILLE", + "code_postal": "89110", + "coordonnees_gps": [ + 47.8332646182, + 3.36323456172 + ], + "libelle_d_acheminement": "ST MAURICE THIZOUAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36323456172, + 47.8332646182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bd11fcd6fa3a659f747145886f3e4339be6a2a5", + "fields": { + "code_commune_insee": "89370", + "nom_de_la_commune": "ST VALERIEN", + "code_postal": "89150", + "coordonnees_gps": [ + 48.1818943604, + 3.09959245761 + ], + "libelle_d_acheminement": "ST VALERIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09959245761, + 48.1818943604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3848cdded7f220e1dafcd0f90d4e78d0c5a25b6f", + "fields": { + "code_commune_insee": "89373", + "nom_de_la_commune": "SALIGNY", + "code_postal": "89100", + "coordonnees_gps": [ + 48.2154264712, + 3.35240862773 + ], + "libelle_d_acheminement": "SALIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35240862773, + 48.2154264712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc0355fc4a294e3c852e5886e6641a7b2949bec5", + "fields": { + "code_commune_insee": "89377", + "nom_de_la_commune": "SAUVIGNY LE BEUREAL", + "code_postal": "89420", + "coordonnees_gps": [ + 47.4807022931, + 4.10703113936 + ], + "libelle_d_acheminement": "SAUVIGNY LE BEUREAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10703113936, + 47.4807022931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74bfa17c00d50e7faf039e9e99b3b3a2908483a3", + "fields": { + "code_commune_insee": "89378", + "nom_de_la_commune": "SAUVIGNY LE BOIS", + "code_postal": "89200", + "coordonnees_gps": [ + 47.5132454769, + 3.95639274581 + ], + "libelle_d_acheminement": "SAUVIGNY LE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95639274581, + 47.5132454769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "574605803c23c103cf8cc17ae8974dbcb620c284", + "fields": { + "code_commune_insee": "89400", + "nom_de_la_commune": "SOUGERES EN PUISAYE", + "code_postal": "89520", + "coordonnees_gps": [ + 47.5644811457, + 3.34935308016 + ], + "libelle_d_acheminement": "SOUGERES EN PUISAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34935308016, + 47.5644811457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e0f5471eadbcf2f72924a420ff4900f419da519", + "fields": { + "code_commune_insee": "89402", + "nom_de_la_commune": "SOUMAINTRAIN", + "code_postal": "89570", + "coordonnees_gps": [ + 48.0175798115, + 3.84030626845 + ], + "libelle_d_acheminement": "SOUMAINTRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84030626845, + 48.0175798115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56e852b9b37ef1bbf43440426924db0bf68084b3", + "fields": { + "code_commune_insee": "89403", + "nom_de_la_commune": "STIGNY", + "code_postal": "89160", + "coordonnees_gps": [ + 47.7795307025, + 4.2389047068 + ], + "libelle_d_acheminement": "STIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2389047068, + 47.7795307025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "549fdd40893dc85e6f1cb89772cc8c0b8684be89", + "fields": { + "code_commune_insee": "89404", + "nom_de_la_commune": "SUBLIGNY", + "code_postal": "89100", + "coordonnees_gps": [ + 48.1652984137, + 3.19780626537 + ], + "libelle_d_acheminement": "SUBLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19780626537, + 48.1652984137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15119e0d208b1512971d9390c149c55569a09f57", + "fields": { + "ligne_5": "MOLESMES", + "code_commune_insee": "89405", + "libelle_d_acheminement": "LES HAUTS DE FORTERRE", + "code_postal": "89560", + "nom_de_la_commune": "LES HAUTS DE FORTERRE", + "coordonnees_gps": [ + 47.6123914189, + 3.40803434271 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40803434271, + 47.6123914189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea0b2e5a0f9fbc119a886c7c3ab7f5c9bc7164f7", + "fields": { + "code_commune_insee": "89410", + "nom_de_la_commune": "THAROT", + "code_postal": "89200", + "coordonnees_gps": [ + 47.5350072163, + 3.86316278793 + ], + "libelle_d_acheminement": "THAROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86316278793, + 47.5350072163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa56e400f74bbb6c36d54a24c47574bfcbfb0659", + "fields": { + "ligne_5": "FLEURIGNY", + "code_commune_insee": "89414", + "libelle_d_acheminement": "THORIGNY SUR OREUSE", + "code_postal": "89260", + "nom_de_la_commune": "THORIGNY SUR OREUSE", + "coordonnees_gps": [ + 48.2981521482, + 3.3801934011 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3801934011, + 48.2981521482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "853bd893ae04e8d32480dcec99023e2364bf861b", + "fields": { + "code_commune_insee": "89424", + "nom_de_la_commune": "TRUCY SUR YONNE", + "code_postal": "89460", + "coordonnees_gps": [ + 47.6277404821, + 3.64573699559 + ], + "libelle_d_acheminement": "TRUCY SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64573699559, + 47.6277404821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92ba5bd4c34a8573bc899147c4a41c0474d39150", + "fields": { + "code_commune_insee": "89432", + "nom_de_la_commune": "VAUDEURS", + "code_postal": "89320", + "coordonnees_gps": [ + 48.1307279337, + 3.55662521835 + ], + "libelle_d_acheminement": "VAUDEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55662521835, + 48.1307279337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97befbf1dc63dc12714953df3859362ef3841129", + "fields": { + "code_commune_insee": "89436", + "nom_de_la_commune": "VENIZY", + "code_postal": "89210", + "coordonnees_gps": [ + 48.0660266782, + 3.67776590247 + ], + "libelle_d_acheminement": "VENIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67776590247, + 48.0660266782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b259afa3e702737f14f5fb7ffc1a77742498b81", + "fields": { + "code_commune_insee": "89453", + "nom_de_la_commune": "VILLEFARGEAU", + "code_postal": "89240", + "coordonnees_gps": [ + 47.7882906541, + 3.48637705982 + ], + "libelle_d_acheminement": "VILLEFARGEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48637705982, + 47.7882906541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b3755826f259cd3d5c6e25de9bfcfa79c18f353", + "fields": { + "code_commune_insee": "89456", + "nom_de_la_commune": "VILLEMANOCHE", + "code_postal": "89140", + "coordonnees_gps": [ + 48.2957047033, + 3.16898800512 + ], + "libelle_d_acheminement": "VILLEMANOCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16898800512, + 48.2957047033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eab91994756dd63f07fb58a00c98275bca10ebd1", + "fields": { + "code_commune_insee": "89459", + "nom_de_la_commune": "VILLENEUVE LA DONDAGRE", + "code_postal": "89150", + "coordonnees_gps": [ + 48.1413913646, + 3.13840843831 + ], + "libelle_d_acheminement": "VILLENEUVE LA DONDAGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13840843831, + 48.1413913646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "312d23cb1e2d7a206368f2b0f6414c2f6fca953a", + "fields": { + "ligne_5": "SOGNES", + "code_commune_insee": "89469", + "libelle_d_acheminement": "PERCENEIGE", + "code_postal": "89260", + "nom_de_la_commune": "PERCENEIGE", + "coordonnees_gps": [ + 48.3524100222, + 3.410424212 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.410424212, + 48.3524100222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5374464657a5658ae37aac7432e7603253e29bc1", + "fields": { + "ligne_5": "LA VILLOTTE", + "code_commune_insee": "89472", + "libelle_d_acheminement": "VILLIERS ST BENOIT", + "code_postal": "89130", + "nom_de_la_commune": "VILLIERS ST BENOIT", + "coordonnees_gps": [ + 47.7820741656, + 3.22439167522 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22439167522, + 47.7820741656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c1018a932904d45203b6de2267620860c609cd7", + "fields": { + "code_commune_insee": "89474", + "nom_de_la_commune": "VILLIERS VINEUX", + "code_postal": "89360", + "coordonnees_gps": [ + 47.9423289612, + 3.82464741849 + ], + "libelle_d_acheminement": "VILLIERS VINEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82464741849, + 47.9423289612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d76d7ed6ba6368e92177c4ffd9ecb39d0da83b35", + "fields": { + "code_commune_insee": "89475", + "nom_de_la_commune": "VILLON", + "code_postal": "89740", + "coordonnees_gps": [ + 47.8999233331, + 4.18645605887 + ], + "libelle_d_acheminement": "VILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18645605887, + 47.8999233331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4bb9994d4076821a14ebeccc50870e800de636d", + "fields": { + "code_commune_insee": "89479", + "nom_de_la_commune": "VINCELOTTES", + "code_postal": "89290", + "coordonnees_gps": [ + 47.7096174282, + 3.64165113268 + ], + "libelle_d_acheminement": "VINCELOTTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64165113268, + 47.7096174282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6dd5f5be7837fa11f85b33a27f4bb49aab54511", + "fields": { + "code_commune_insee": "89483", + "nom_de_la_commune": "VOISINES", + "code_postal": "89260", + "coordonnees_gps": [ + 48.2541143686, + 3.41070498223 + ], + "libelle_d_acheminement": "VOISINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41070498223, + 48.2541143686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "891e8886e0817579f0d2b081158124b7ecf84aff", + "fields": { + "code_commune_insee": "90009", + "nom_de_la_commune": "BEAUCOURT", + "code_postal": "90500", + "coordonnees_gps": [ + 47.4866458822, + 6.92526796011 + ], + "libelle_d_acheminement": "BEAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92526796011, + 47.4866458822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c3f6dcc45dac214c79ff5add8dce9784f570536", + "fields": { + "code_commune_insee": "90028", + "nom_de_la_commune": "COURTELEVANT", + "code_postal": "90100", + "coordonnees_gps": [ + 47.5252208202, + 7.08505338248 + ], + "libelle_d_acheminement": "COURTELEVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08505338248, + 47.5252208202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c43088b24447211190ecc58b66f82d8c2fe4ac8a", + "fields": { + "code_commune_insee": "90032", + "nom_de_la_commune": "DANJOUTIN", + "code_postal": "90400", + "coordonnees_gps": [ + 47.6179263286, + 6.86632266419 + ], + "libelle_d_acheminement": "DANJOUTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86632266419, + 47.6179263286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8503302d1940cd1ffc8c8e2d0ee30b12f8dbef3b", + "fields": { + "code_commune_insee": "90043", + "nom_de_la_commune": "FAVEROIS", + "code_postal": "90100", + "coordonnees_gps": [ + 47.5283156243, + 7.03649746611 + ], + "libelle_d_acheminement": "FAVEROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03649746611, + 47.5283156243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7af484f103557a7795bba2506ffbbdf208b1a5b", + "fields": { + "code_commune_insee": "90048", + "nom_de_la_commune": "FONTENELLE", + "code_postal": "90340", + "coordonnees_gps": [ + 47.6208281317, + 6.9563673377 + ], + "libelle_d_acheminement": "FONTENELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9563673377, + 47.6208281317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66ee442297236ba8dfa5dac0c560ae0683f146c8", + "fields": { + "code_commune_insee": "90051", + "nom_de_la_commune": "FROIDEFONTAINE", + "code_postal": "90140", + "coordonnees_gps": [ + 47.5634149229, + 6.95605250107 + ], + "libelle_d_acheminement": "FROIDEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95605250107, + 47.5634149229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6603348b82e13ca4122d6ec8ab369b4847cb7e0e", + "fields": { + "code_commune_insee": "90055", + "nom_de_la_commune": "GROSNE", + "code_postal": "90100", + "coordonnees_gps": [ + 47.571197367, + 6.99460817647 + ], + "libelle_d_acheminement": "GROSNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99460817647, + 47.571197367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8847d4e988dbd709a6186dc4f458f885e70ea10a", + "fields": { + "code_commune_insee": "90056", + "nom_de_la_commune": "JONCHEREY", + "code_postal": "90100", + "coordonnees_gps": [ + 47.5329509014, + 7.01087011883 + ], + "libelle_d_acheminement": "JONCHEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01087011883, + 47.5329509014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b4ba59eec582329a9f356fbc9f8505c3ea1988d", + "fields": { + "code_commune_insee": "90070", + "nom_de_la_commune": "MONTBOUTON", + "code_postal": "90500", + "coordonnees_gps": [ + 47.4687777002, + 6.92638107495 + ], + "libelle_d_acheminement": "MONTBOUTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92638107495, + 47.4687777002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7a025b28a3078feb300fd82963b35e7f18cc240", + "fields": { + "code_commune_insee": "90074", + "nom_de_la_commune": "NOVILLARD", + "code_postal": "90340", + "coordonnees_gps": [ + 47.6050025795, + 6.96134299185 + ], + "libelle_d_acheminement": "NOVILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96134299185, + 47.6050025795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97f425bb176c7f74d3ea900947ecca3f3439f323", + "fields": { + "code_commune_insee": "90086", + "nom_de_la_commune": "ROMAGNY SOUS ROUGEMONT", + "code_postal": "90110", + "coordonnees_gps": [ + 47.7186718403, + 6.96636692216 + ], + "libelle_d_acheminement": "ROMAGNY SOUS ROUGEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96636692216, + 47.7186718403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88626bfc099d477ef1d5d7319be45a8817e5948b", + "fields": { + "code_commune_insee": "90087", + "nom_de_la_commune": "ROPPE", + "code_postal": "90380", + "coordonnees_gps": [ + 47.6791103202, + 6.91008918124 + ], + "libelle_d_acheminement": "ROPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91008918124, + 47.6791103202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd8283dfc7d2f70fe91b3ed58b1c02fc5996a04d", + "fields": { + "code_commune_insee": "90096", + "nom_de_la_commune": "THIANCOURT", + "code_postal": "90100", + "coordonnees_gps": [ + 47.5200971035, + 6.98091530541 + ], + "libelle_d_acheminement": "THIANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98091530541, + 47.5200971035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26a938776f2a17654796bc60a9723cbecc478620", + "fields": { + "code_commune_insee": "90102", + "nom_de_la_commune": "VESCEMONT", + "code_postal": "90200", + "coordonnees_gps": [ + 47.7533939016, + 6.85248119382 + ], + "libelle_d_acheminement": "VESCEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85248119382, + 47.7533939016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b842ac1c42d6c868e1a0a0fea283a93a7f0a09f", + "fields": { + "code_commune_insee": "90103", + "nom_de_la_commune": "VETRIGNE", + "code_postal": "90300", + "coordonnees_gps": [ + 47.6690986224, + 6.89453808576 + ], + "libelle_d_acheminement": "VETRIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89453808576, + 47.6690986224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6ecc10745d66817b0205e3528b1810b850ddf07", + "fields": { + "code_commune_insee": "91017", + "nom_de_la_commune": "ANGERVILLIERS", + "code_postal": "91470", + "coordonnees_gps": [ + 48.5911202876, + 2.05864904136 + ], + "libelle_d_acheminement": "ANGERVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05864904136, + 48.5911202876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75ff960081612699a56fc40f57b1438b28f3f471", + "fields": { + "code_commune_insee": "91027", + "nom_de_la_commune": "ATHIS MONS", + "code_postal": "91200", + "coordonnees_gps": [ + 48.7092445775, + 2.38660492325 + ], + "libelle_d_acheminement": "ATHIS MONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38660492325, + 48.7092445775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e1a7c3a556bc5cdc7c4d64c623ccdf44f874b37", + "fields": { + "code_commune_insee": "91035", + "nom_de_la_commune": "AUTHON LA PLAINE", + "code_postal": "91410", + "coordonnees_gps": [ + 48.4534137641, + 1.95677183334 + ], + "libelle_d_acheminement": "AUTHON LA PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95677183334, + 48.4534137641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ded9045abc170c27be0f037e19ccccfe6b7c4f2", + "fields": { + "code_commune_insee": "91041", + "nom_de_la_commune": "AVRAINVILLE", + "code_postal": "91630", + "coordonnees_gps": [ + 48.5576520151, + 2.24428910412 + ], + "libelle_d_acheminement": "AVRAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24428910412, + 48.5576520151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e49f0c97b8e58a8266bb743707f58f55c62adda1", + "fields": { + "code_commune_insee": "91047", + "nom_de_la_commune": "BAULNE", + "code_postal": "91590", + "coordonnees_gps": [ + 48.4949687726, + 2.38140884118 + ], + "libelle_d_acheminement": "BAULNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38140884118, + 48.4949687726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58cae2ab769daf887e962e7af6bdf659fe81d707", + "fields": { + "code_commune_insee": "91067", + "nom_de_la_commune": "BLANDY", + "code_postal": "91150", + "coordonnees_gps": [ + 48.3237539135, + 2.25785911069 + ], + "libelle_d_acheminement": "BLANDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25785911069, + 48.3237539135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2de6a85286ecdbcd16bb623da97c00ab640dfa78", + "fields": { + "code_commune_insee": "91069", + "nom_de_la_commune": "BOIGNEVILLE", + "code_postal": "91720", + "coordonnees_gps": [ + 48.3281689535, + 2.36609167603 + ], + "libelle_d_acheminement": "BOIGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36609167603, + 48.3281689535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d7869e77fc2d34c0b989b592c83678d576bb2ba", + "fields": { + "code_commune_insee": "91079", + "nom_de_la_commune": "BOISSY LA RIVIERE", + "code_postal": "91690", + "coordonnees_gps": [ + 48.3824146625, + 2.17005086721 + ], + "libelle_d_acheminement": "BOISSY LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17005086721, + 48.3824146625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6777dfe5498a73af5ad59f4622c05d1a038ff6c6", + "fields": { + "code_commune_insee": "91109", + "nom_de_la_commune": "BRIERES LES SCELLES", + "code_postal": "91150", + "coordonnees_gps": [ + 48.4636769085, + 2.14290097216 + ], + "libelle_d_acheminement": "BRIERES LES SCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14290097216, + 48.4636769085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b29dfb1c6b0405ee7f09017d6e16d788af3028cf", + "fields": { + "code_commune_insee": "91112", + "nom_de_la_commune": "BROUY", + "code_postal": "91150", + "coordonnees_gps": [ + 48.3264481207, + 2.28927890389 + ], + "libelle_d_acheminement": "BROUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28927890389, + 48.3264481207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f8b72a842326a4eadbf3e1d5005ddb8ae08288e", + "fields": { + "ligne_5": "MONTJAY", + "code_commune_insee": "91122", + "libelle_d_acheminement": "BURES SUR YVETTE", + "code_postal": "91440", + "nom_de_la_commune": "BURES SUR YVETTE", + "coordonnees_gps": [ + 48.6929979919, + 2.15838686116 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15838686116, + 48.6929979919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9e60c054b336531fbdf1357eb1c5970c46511ab", + "fields": { + "code_commune_insee": "91148", + "nom_de_la_commune": "CHAUFFOUR LES ETRECHY", + "code_postal": "91580", + "coordonnees_gps": [ + 48.5078619555, + 2.16843822281 + ], + "libelle_d_acheminement": "CHAUFFOUR LES ETRECHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16843822281, + 48.5078619555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c974ae767ab35a1999ff3904a332a3a6e01af24", + "fields": { + "code_commune_insee": "91201", + "nom_de_la_commune": "DRAVEIL", + "code_postal": "91210", + "coordonnees_gps": [ + 48.6778413772, + 2.42197801862 + ], + "libelle_d_acheminement": "DRAVEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42197801862, + 48.6778413772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57a35238468413a3b7c4bdeac2f008a94e367f9d", + "fields": { + "ligne_5": "MAINVILLE", + "code_commune_insee": "91201", + "libelle_d_acheminement": "DRAVEIL", + "code_postal": "91210", + "nom_de_la_commune": "DRAVEIL", + "coordonnees_gps": [ + 48.6778413772, + 2.42197801862 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42197801862, + 48.6778413772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a078f1c01f79f1823a831e2d8867ef61efff25d", + "fields": { + "code_commune_insee": "91216", + "nom_de_la_commune": "EPINAY SUR ORGE", + "code_postal": "91360", + "coordonnees_gps": [ + 48.672618112, + 2.31834586071 + ], + "libelle_d_acheminement": "EPINAY SUR ORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31834586071, + 48.672618112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af016ab827f805f9c604a5a65526b59fac2aa63d", + "fields": { + "code_commune_insee": "91226", + "nom_de_la_commune": "ETRECHY", + "code_postal": "91580", + "coordonnees_gps": [ + 48.4924832389, + 2.17928848122 + ], + "libelle_d_acheminement": "ETRECHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17928848122, + 48.4924832389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c7314bbfd33ee32dd883093dd8f95a6fb31dc5f", + "fields": { + "code_commune_insee": "91249", + "nom_de_la_commune": "FORGES LES BAINS", + "code_postal": "91470", + "coordonnees_gps": [ + 48.619866924, + 2.08295423107 + ], + "libelle_d_acheminement": "FORGES LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08295423107, + 48.619866924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31f2b51ca83c6f31347d1ecdca99f6532ce6c296", + "fields": { + "code_commune_insee": "91293", + "nom_de_la_commune": "GUIGNEVILLE SUR ESSONNE", + "code_postal": "91590", + "coordonnees_gps": [ + 48.4638589713, + 2.37103830296 + ], + "libelle_d_acheminement": "GUIGNEVILLE SUR ESSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37103830296, + 48.4638589713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "783de8532937980424c382b3f731599d85e531af", + "fields": { + "ligne_5": "GOMMONVILLIERS", + "code_commune_insee": "91312", + "libelle_d_acheminement": "IGNY", + "code_postal": "91430", + "nom_de_la_commune": "IGNY", + "coordonnees_gps": [ + 48.7362250613, + 2.22442021749 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22442021749, + 48.7362250613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86f26a6bd7a3ef8b1648da977eb36c585e05cf7f", + "fields": { + "code_commune_insee": "91332", + "nom_de_la_commune": "LEUDEVILLE", + "code_postal": "91630", + "coordonnees_gps": [ + 48.5707254105, + 2.32774257442 + ], + "libelle_d_acheminement": "LEUDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32774257442, + 48.5707254105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a930a098f5cc522ce154d2a4df3a23915e5393fd", + "fields": { + "ligne_5": "BALIZY", + "code_commune_insee": "91345", + "libelle_d_acheminement": "LONGJUMEAU", + "code_postal": "91160", + "nom_de_la_commune": "LONGJUMEAU", + "coordonnees_gps": [ + 48.6900488045, + 2.30247056719 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30247056719, + 48.6900488045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60a5416e03e490d0effdbec714d0d1047452c4dc", + "fields": { + "ligne_5": "MEREVILLE", + "code_commune_insee": "91390", + "libelle_d_acheminement": "LE MEREVILLOIS", + "code_postal": "91660", + "nom_de_la_commune": "LE MEREVILLOIS", + "coordonnees_gps": [ + 48.3183780776, + 2.07369929257 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07369929257, + 48.3183780776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea65cef39ef93dd0312465a2a2c0f967acafc550", + "fields": { + "code_commune_insee": "91408", + "nom_de_la_commune": "MOIGNY SUR ECOLE", + "code_postal": "91490", + "coordonnees_gps": [ + 48.4371290941, + 2.43964124963 + ], + "libelle_d_acheminement": "MOIGNY SUR ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43964124963, + 48.4371290941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19f4e4d15cd6725d4884db8b167692674e54faea", + "fields": { + "code_commune_insee": "91425", + "nom_de_la_commune": "MONTLHERY", + "code_postal": "91310", + "coordonnees_gps": [ + 48.6422562554, + 2.26812085232 + ], + "libelle_d_acheminement": "MONTLHERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26812085232, + 48.6422562554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79c1e5703ae5ea0ba844e0546e145ecc0606635a", + "fields": { + "code_commune_insee": "91434", + "nom_de_la_commune": "MORSANG SUR ORGE", + "code_postal": "91390", + "coordonnees_gps": [ + 48.6562855194, + 2.35088739655 + ], + "libelle_d_acheminement": "MORSANG SUR ORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35088739655, + 48.6562855194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dd00357ad079d9128b655230a3214f7cedc8bca", + "fields": { + "code_commune_insee": "91473", + "nom_de_la_commune": "ORVEAU", + "code_postal": "91590", + "coordonnees_gps": [ + 48.4491758886, + 2.29666744574 + ], + "libelle_d_acheminement": "ORVEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29666744574, + 48.4491758886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "051cd09adad9acaaf2dafcefc34ff410fad13eee", + "fields": { + "code_commune_insee": "91479", + "nom_de_la_commune": "PARAY VIEILLE POSTE", + "code_postal": "91550", + "coordonnees_gps": [ + 48.7241848219, + 2.3598349385 + ], + "libelle_d_acheminement": "PARAY VIEILLE POSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3598349385, + 48.7241848219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83efb05d2818dd935b27adbc664c6dd0b701aba1", + "fields": { + "code_commune_insee": "91495", + "nom_de_la_commune": "PLESSIS ST BENOIST", + "code_postal": "91410", + "coordonnees_gps": [ + 48.4451994125, + 2.0030499524 + ], + "libelle_d_acheminement": "PLESSIS ST BENOIST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0030499524, + 48.4451994125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d289dc3e23895d0232e1aa724533a0533e807f82", + "fields": { + "code_commune_insee": "91508", + "nom_de_la_commune": "PUISELET LE MARAIS", + "code_postal": "91150", + "coordonnees_gps": [ + 48.3993237404, + 2.26344473532 + ], + "libelle_d_acheminement": "PUISELET LE MARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26344473532, + 48.3993237404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d89432f0f5347c7f498bf02233842f74d121e3a", + "fields": { + "code_commune_insee": "91533", + "nom_de_la_commune": "SACLAS", + "code_postal": "91690", + "coordonnees_gps": [ + 48.3583856207, + 2.11333214124 + ], + "libelle_d_acheminement": "SACLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11333214124, + 48.3583856207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cecddbadeb995c63a416ea57f6b04fdd5e7c001e", + "fields": { + "ligne_5": "LE VAL D ALBIAN", + "code_commune_insee": "91534", + "libelle_d_acheminement": "SACLAY", + "code_postal": "91400", + "nom_de_la_commune": "SACLAY", + "coordonnees_gps": [ + 48.7354339366, + 2.1663021309 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1663021309, + 48.7354339366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e571b861b333a5b66ffd8f0dc68f3535163ec84", + "fields": { + "code_commune_insee": "91538", + "nom_de_la_commune": "ST AUBIN", + "code_postal": "91190", + "coordonnees_gps": [ + 48.7149626666, + 2.1395315453 + ], + "libelle_d_acheminement": "ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1395315453, + 48.7149626666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "836c43eacd8d59dfee2aebcf855e142d012ea61c", + "fields": { + "ligne_5": "VILLERAS", + "code_commune_insee": "91538", + "libelle_d_acheminement": "ST AUBIN", + "code_postal": "91190", + "nom_de_la_commune": "ST AUBIN", + "coordonnees_gps": [ + 48.7149626666, + 2.1395315453 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1395315453, + 48.7149626666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6feb21fe0ce2d9b9de53b15444254e2f8bfae06", + "fields": { + "code_commune_insee": "91546", + "nom_de_la_commune": "ST CYR SOUS DOURDAN", + "code_postal": "91410", + "coordonnees_gps": [ + 48.5655061412, + 2.03782109729 + ], + "libelle_d_acheminement": "ST CYR SOUS DOURDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03782109729, + 48.5655061412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82a12e893d48335737262786dc78741c1e1fb619", + "fields": { + "code_commune_insee": "91547", + "nom_de_la_commune": "ST ESCOBILLE", + "code_postal": "91410", + "coordonnees_gps": [ + 48.4224153678, + 1.95796421561 + ], + "libelle_d_acheminement": "ST ESCOBILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95796421561, + 48.4224153678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76f24be3d805eafef8002094c13a4d10fb08b05f", + "fields": { + "code_commune_insee": "91573", + "nom_de_la_commune": "ST PIERRE DU PERRAY", + "code_postal": "91280", + "coordonnees_gps": [ + 48.6058282604, + 2.51614926696 + ], + "libelle_d_acheminement": "ST PIERRE DU PERRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51614926696, + 48.6058282604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba76dbc5f31a41d09e0f3057a6b8b4e8e31cfcc7", + "fields": { + "code_commune_insee": "91581", + "nom_de_la_commune": "ST YON", + "code_postal": "91650", + "coordonnees_gps": [ + 48.5610752043, + 2.19243577473 + ], + "libelle_d_acheminement": "ST YON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19243577473, + 48.5610752043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "716b6da5e0063d4b89b3aaafbbb1610e7325aa79", + "fields": { + "code_commune_insee": "91589", + "nom_de_la_commune": "SAVIGNY SUR ORGE", + "code_postal": "91600", + "coordonnees_gps": [ + 48.684228392, + 2.34873862215 + ], + "libelle_d_acheminement": "SAVIGNY SUR ORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34873862215, + 48.684228392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "938fa1898753e88e9f20f270c88498a6f6944b07", + "fields": { + "code_commune_insee": "91617", + "nom_de_la_commune": "TIGERY", + "code_postal": "91250", + "coordonnees_gps": [ + 48.6444988439, + 2.51906038006 + ], + "libelle_d_acheminement": "TIGERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51906038006, + 48.6444988439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08b7f4640e1dc5f962d2fe032ca34d406cb7cec3", + "fields": { + "code_commune_insee": "91635", + "nom_de_la_commune": "VAUHALLAN", + "code_postal": "91430", + "coordonnees_gps": [ + 48.7307999031, + 2.19905265979 + ], + "libelle_d_acheminement": "VAUHALLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19905265979, + 48.7307999031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41ed0a2c2f363c2f900e548905c82a2b1c3c37b5", + "fields": { + "code_commune_insee": "91645", + "nom_de_la_commune": "VERRIERES LE BUISSON", + "code_postal": "91370", + "coordonnees_gps": [ + 48.75044312, + 2.25171297214 + ], + "libelle_d_acheminement": "VERRIERES LE BUISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25171297214, + 48.75044312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cda55d9f80d5e2551e3a61878956e77c64a7163b", + "fields": { + "code_commune_insee": "91649", + "nom_de_la_commune": "VERT LE PETIT", + "code_postal": "91710", + "coordonnees_gps": [ + 48.552025472, + 2.36598547883 + ], + "libelle_d_acheminement": "VERT LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36598547883, + 48.552025472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79a2e57b03168463975810a2c6119d7c1447e0d9", + "fields": { + "code_commune_insee": "91662", + "nom_de_la_commune": "VILLECONIN", + "code_postal": "91580", + "coordonnees_gps": [ + 48.5019182614, + 2.12813043077 + ], + "libelle_d_acheminement": "VILLECONIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12813043077, + 48.5019182614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3ff10978000615ac7c93e7f91fa726512295a64", + "fields": { + "code_commune_insee": "91667", + "nom_de_la_commune": "VILLEMOISSON SUR ORGE", + "code_postal": "91360", + "coordonnees_gps": [ + 48.6613107676, + 2.33108879096 + ], + "libelle_d_acheminement": "VILLEMOISSON SUR ORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33108879096, + 48.6613107676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d0d7341b1178c33e912329a7bf8c08e7b1b3074", + "fields": { + "code_commune_insee": "91691", + "nom_de_la_commune": "YERRES", + "code_postal": "91330", + "coordonnees_gps": [ + 48.7157210712, + 2.49273020271 + ], + "libelle_d_acheminement": "YERRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49273020271, + 48.7157210712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b06b3a8dcc2f392481800876f258ec211ad7b73e", + "fields": { + "code_commune_insee": "92007", + "nom_de_la_commune": "BAGNEUX", + "code_postal": "92220", + "coordonnees_gps": [ + 48.7983229866, + 2.30989995212 + ], + "libelle_d_acheminement": "BAGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30989995212, + 48.7983229866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9bb23e6354445396650bcfcdd45bed43275bc2a", + "fields": { + "code_commune_insee": "92020", + "nom_de_la_commune": "CHATILLON", + "code_postal": "92320", + "coordonnees_gps": [ + 48.8034091756, + 2.28799131883 + ], + "libelle_d_acheminement": "CHATILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28799131883, + 48.8034091756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c0e473ce68e46f9a9a4080a7731c2fae2675b86", + "fields": { + "code_commune_insee": "92047", + "nom_de_la_commune": "MARNES LA COQUETTE", + "code_postal": "92430", + "coordonnees_gps": [ + 48.830271264, + 2.16647261735 + ], + "libelle_d_acheminement": "MARNES LA COQUETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16647261735, + 48.830271264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e168be3edff6ec4c63c51d617684045064072d7", + "fields": { + "code_commune_insee": "92048", + "nom_de_la_commune": "MEUDON", + "code_postal": "92190", + "coordonnees_gps": [ + 48.8037275796, + 2.22696287829 + ], + "libelle_d_acheminement": "MEUDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22696287829, + 48.8037275796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2886cb7f985419998d4ee341c4abaf36aca2706f", + "fields": { + "code_commune_insee": "92051", + "nom_de_la_commune": "NEUILLY SUR SEINE", + "code_postal": "92200", + "coordonnees_gps": [ + 48.8853719688, + 2.26642584746 + ], + "libelle_d_acheminement": "NEUILLY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26642584746, + 48.8853719688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc15780232ccd3c44274d5f3e10d6feb3001132d", + "fields": { + "code_commune_insee": "92076", + "nom_de_la_commune": "VAUCRESSON", + "code_postal": "92420", + "coordonnees_gps": [ + 48.8410515899, + 2.16026455161 + ], + "libelle_d_acheminement": "VAUCRESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16026455161, + 48.8410515899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0805cba484537d83cf2dbfbe58910ba03d2aef23", + "fields": { + "code_commune_insee": "92077", + "nom_de_la_commune": "VILLE D AVRAY", + "code_postal": "92410", + "coordonnees_gps": [ + 48.8215895592, + 2.17761311514 + ], + "libelle_d_acheminement": "VILLE D AVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17761311514, + 48.8215895592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b1685eb57cb7f5f82a433b52344befaed68981a", + "fields": { + "code_commune_insee": "93005", + "nom_de_la_commune": "AULNAY SOUS BOIS", + "code_postal": "93600", + "coordonnees_gps": [ + 48.9458384367, + 2.49329041687 + ], + "libelle_d_acheminement": "AULNAY SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49329041687, + 48.9458384367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59a712b32fe0231b9117db9c7df386437f4ecc9b", + "fields": { + "code_commune_insee": "93010", + "nom_de_la_commune": "BONDY", + "code_postal": "93140", + "coordonnees_gps": [ + 48.9023234526, + 2.4837276939 + ], + "libelle_d_acheminement": "BONDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4837276939, + 48.9023234526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9ef21376910170ea33c25e0e2933a06802532ab", + "fields": { + "code_commune_insee": "93029", + "nom_de_la_commune": "DRANCY", + "code_postal": "93700", + "coordonnees_gps": [ + 48.9234246259, + 2.44492688692 + ], + "libelle_d_acheminement": "DRANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44492688692, + 48.9234246259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1313c714d2f89f71db83eccdb6695a93c3e4ebd1", + "fields": { + "code_commune_insee": "93046", + "nom_de_la_commune": "LIVRY GARGAN", + "code_postal": "93190", + "coordonnees_gps": [ + 48.9197633213, + 2.53486592332 + ], + "libelle_d_acheminement": "LIVRY GARGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53486592332, + 48.9197633213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03fdf53b915df98b18f220f029e250a754eee355", + "fields": { + "code_commune_insee": "93062", + "nom_de_la_commune": "LE RAINCY", + "code_postal": "93340", + "coordonnees_gps": [ + 48.8967447585, + 2.51973664021 + ], + "libelle_d_acheminement": "LE RAINCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51973664021, + 48.8967447585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61dc945b764e386f5bda69c21226fc2d24b7c225", + "fields": { + "code_commune_insee": "93063", + "nom_de_la_commune": "ROMAINVILLE", + "code_postal": "93230", + "coordonnees_gps": [ + 48.8852118968, + 2.43767884231 + ], + "libelle_d_acheminement": "ROMAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43767884231, + 48.8852118968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b45f33195941f6a962719973a9a1304dba67ac46", + "fields": { + "code_commune_insee": "93073", + "nom_de_la_commune": "TREMBLAY EN FRANCE", + "code_postal": "93290", + "coordonnees_gps": [ + 48.9784304121, + 2.55468501543 + ], + "libelle_d_acheminement": "TREMBLAY EN FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55468501543, + 48.9784304121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "585eb535c8ec673d61520a5a040388d4ca494e8e", + "fields": { + "code_commune_insee": "93077", + "nom_de_la_commune": "VILLEMOMBLE", + "code_postal": "93250", + "coordonnees_gps": [ + 48.8848370021, + 2.50893406035 + ], + "libelle_d_acheminement": "VILLEMOMBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50893406035, + 48.8848370021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8f45dabf0d239d6bdae1fe97e0addb4aa41b2fd", + "fields": { + "code_commune_insee": "93078", + "nom_de_la_commune": "VILLEPINTE", + "code_postal": "93420", + "coordonnees_gps": [ + 48.9590202538, + 2.53630634206 + ], + "libelle_d_acheminement": "VILLEPINTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53630634206, + 48.9590202538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdda9060bf432ae97d03f640466203eb3ba70992", + "fields": { + "code_commune_insee": "94003", + "nom_de_la_commune": "ARCUEIL", + "code_postal": "94110", + "coordonnees_gps": [ + 48.8058803597, + 2.33351024984 + ], + "libelle_d_acheminement": "ARCUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33351024984, + 48.8058803597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82c19d0550e6cb7bc68203e0e30cae9cf627c851", + "fields": { + "code_commune_insee": "94015", + "nom_de_la_commune": "BRY SUR MARNE", + "code_postal": "94360", + "coordonnees_gps": [ + 48.8384095661, + 2.52319657626 + ], + "libelle_d_acheminement": "BRY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52319657626, + 48.8384095661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e2bfed51f2b57ccb2f47ed8d3050c30c98ef341", + "fields": { + "code_commune_insee": "94043", + "nom_de_la_commune": "LE KREMLIN BICETRE", + "code_postal": "94270", + "coordonnees_gps": [ + 48.809220102, + 2.35657965243 + ], + "libelle_d_acheminement": "LE KREMLIN BICETRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35657965243, + 48.809220102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f6928df2499788faedb81910c220b4eb69c58c6", + "fields": { + "code_commune_insee": "94044", + "nom_de_la_commune": "LIMEIL BREVANNES", + "code_postal": "94450", + "coordonnees_gps": [ + 48.7450357782, + 2.48936184357 + ], + "libelle_d_acheminement": "LIMEIL BREVANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48936184357, + 48.7450357782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e18328c06f27f4493a5e7a2c5b1471c6910aba52", + "fields": { + "code_commune_insee": "94048", + "nom_de_la_commune": "MAROLLES EN BRIE", + "code_postal": "94440", + "coordonnees_gps": [ + 48.7394780616, + 2.55491338455 + ], + "libelle_d_acheminement": "MAROLLES EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55491338455, + 48.7394780616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d629ce4569c71abc4fc84e0fa79e2e999a3d7a2b", + "fields": { + "code_commune_insee": "94054", + "nom_de_la_commune": "ORLY", + "code_postal": "94310", + "coordonnees_gps": [ + 48.7429320073, + 2.39468296999 + ], + "libelle_d_acheminement": "ORLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39468296999, + 48.7429320073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "186fc74ad2c55cecbf00075986a0b0f7850fda0d", + "fields": { + "code_commune_insee": "94056", + "nom_de_la_commune": "PERIGNY", + "code_postal": "94520", + "coordonnees_gps": [ + 48.6968359635, + 2.56167940426 + ], + "libelle_d_acheminement": "PERIGNY SUR YERRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56167940426, + 48.6968359635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51f719fecbd007a0b45037f31bc336e8c92ed943", + "fields": { + "ligne_5": "VAL POMPADOUR", + "code_commune_insee": "94074", + "libelle_d_acheminement": "VALENTON", + "code_postal": "94460", + "nom_de_la_commune": "VALENTON", + "coordonnees_gps": [ + 48.752872402, + 2.46129479573 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46129479573, + 48.752872402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7552a90766d535dc72231564d5d6d6e48790e81b", + "fields": { + "code_commune_insee": "94075", + "nom_de_la_commune": "VILLECRESNES", + "code_postal": "94440", + "coordonnees_gps": [ + 48.7208692486, + 2.53157741439 + ], + "libelle_d_acheminement": "VILLECRESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53157741439, + 48.7208692486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc566975c4c8a55e61ba1c6851e9228049b1eaad", + "fields": { + "code_commune_insee": "94077", + "nom_de_la_commune": "VILLENEUVE LE ROI", + "code_postal": "94290", + "coordonnees_gps": [ + 48.7320914576, + 2.41037420069 + ], + "libelle_d_acheminement": "VILLENEUVE LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41037420069, + 48.7320914576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c12cbc9e8de8b8ba7e7c2c1b932e757e78864346", + "fields": { + "ligne_5": "LE VAUMION", + "code_commune_insee": "95011", + "libelle_d_acheminement": "AMBLEVILLE", + "code_postal": "95420", + "nom_de_la_commune": "AMBLEVILLE", + "coordonnees_gps": [ + 49.1509533273, + 1.69495333477 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69495333477, + 49.1509533273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ded098bb754c50c4de8a95ab55c392cd57caaece", + "fields": { + "code_commune_insee": "95019", + "nom_de_la_commune": "ARNOUVILLE", + "code_postal": "95400", + "coordonnees_gps": [ + 48.9858270233, + 2.41714370822 + ], + "libelle_d_acheminement": "ARNOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41714370822, + 48.9858270233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "913a86860df4853e5cce199e74dfb508d19c7255", + "fields": { + "code_commune_insee": "95024", + "nom_de_la_commune": "ARTHIES", + "code_postal": "95420", + "coordonnees_gps": [ + 49.0949860681, + 1.79726253732 + ], + "libelle_d_acheminement": "ARTHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79726253732, + 49.0949860681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eb5a8f7cafad7b7becacfe8b215a75e74e5f2db", + "fields": { + "code_commune_insee": "95054", + "nom_de_la_commune": "LE BELLAY EN VEXIN", + "code_postal": "95750", + "coordonnees_gps": [ + 49.149355833, + 1.87860817105 + ], + "libelle_d_acheminement": "LE BELLAY EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87860817105, + 49.149355833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e770b7a65a306e21f1c233f6967151b81b9724d9", + "fields": { + "code_commune_insee": "95060", + "nom_de_la_commune": "BESSANCOURT", + "code_postal": "95550", + "coordonnees_gps": [ + 49.0373082647, + 2.19851000707 + ], + "libelle_d_acheminement": "BESSANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19851000707, + 49.0373082647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc683db4a34748f8927035f6282922bddfca8c13", + "fields": { + "code_commune_insee": "95061", + "nom_de_la_commune": "BETHEMONT LA FORET", + "code_postal": "95840", + "coordonnees_gps": [ + 49.0543170878, + 2.25114028557 + ], + "libelle_d_acheminement": "BETHEMONT LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25114028557, + 49.0543170878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2bb5d2b5b3a2987658f3888d1f0771eef1d29b1", + "fields": { + "code_commune_insee": "95078", + "nom_de_la_commune": "BOISSY L AILLERIE", + "code_postal": "95650", + "coordonnees_gps": [ + 49.0831174161, + 2.03269283542 + ], + "libelle_d_acheminement": "BOISSY L AILLERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03269283542, + 49.0831174161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fb8bf3829e635929077e6e40f1b8001478f7185", + "fields": { + "code_commune_insee": "95110", + "nom_de_la_commune": "BRIGNANCOURT", + "code_postal": "95640", + "coordonnees_gps": [ + 49.1395537337, + 1.94352100236 + ], + "libelle_d_acheminement": "BRIGNANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94352100236, + 49.1395537337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bda4a7fca0ebe5231be3f528b74ea34938380e66", + "fields": { + "code_commune_insee": "95120", + "nom_de_la_commune": "BUTRY SUR OISE", + "code_postal": "95430", + "coordonnees_gps": [ + 49.083906326, + 2.19184448916 + ], + "libelle_d_acheminement": "BUTRY SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19184448916, + 49.083906326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6be9869a5a4da753cba8bb9ad54fb7a3d33f0a40", + "fields": { + "ligne_5": "MENANDON", + "code_commune_insee": "95127", + "libelle_d_acheminement": "CERGY", + "code_postal": "95000", + "nom_de_la_commune": "CERGY", + "coordonnees_gps": [ + 49.0401131567, + 2.05082123731 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05082123731, + 49.0401131567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f681a08f5fa5cebcbcf984f7c32af24bbd3d6ce", + "fields": { + "code_commune_insee": "95149", + "nom_de_la_commune": "CHAUMONTEL", + "code_postal": "95270", + "coordonnees_gps": [ + 49.1289962967, + 2.43643330005 + ], + "libelle_d_acheminement": "CHAUMONTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43643330005, + 49.1289962967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e99fcaa939a36e5957e1f15b4dabcc3100bb062a", + "fields": { + "code_commune_insee": "95151", + "nom_de_la_commune": "CHAUVRY", + "code_postal": "95560", + "coordonnees_gps": [ + 49.0530490833, + 2.26887039033 + ], + "libelle_d_acheminement": "CHAUVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26887039033, + 49.0530490833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48e9ecd2a89f972a9dbef5b3dce52780f60a75af", + "fields": { + "code_commune_insee": "95157", + "nom_de_la_commune": "CHERENCE", + "code_postal": "95510", + "coordonnees_gps": [ + 49.0911714832, + 1.68127200467 + ], + "libelle_d_acheminement": "CHERENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68127200467, + 49.0911714832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc8ab0387cae60decaf5e0d6692966f8a7937076", + "fields": { + "code_commune_insee": "95169", + "nom_de_la_commune": "COMMENY", + "code_postal": "95450", + "coordonnees_gps": [ + 49.126580535, + 1.88800469417 + ], + "libelle_d_acheminement": "COMMENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88800469417, + 49.126580535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3f631a846aee666cde50371fb76d605d2cf8bac", + "fields": { + "code_commune_insee": "95203", + "nom_de_la_commune": "EAUBONNE", + "code_postal": "95600", + "coordonnees_gps": [ + 48.9909940165, + 2.27800925488 + ], + "libelle_d_acheminement": "EAUBONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27800925488, + 48.9909940165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c3730357253a5f9d6230ba833473d81e96da9d8", + "fields": { + "code_commune_insee": "95252", + "nom_de_la_commune": "FRANCONVILLE", + "code_postal": "95130", + "coordonnees_gps": [ + 48.9884161105, + 2.2238932062 + ], + "libelle_d_acheminement": "FRANCONVILLE LA GARENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2238932062, + 48.9884161105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "593ac3c043b12da02b5b8801eca60fa5cd3442af", + "fields": { + "code_commune_insee": "95277", + "nom_de_la_commune": "GONESSE", + "code_postal": "95500", + "coordonnees_gps": [ + 48.9864903049, + 2.4569899628 + ], + "libelle_d_acheminement": "GONESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4569899628, + 48.9864903049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b772fd2470ebd391fd729c7bf4d83871dcfdab1", + "fields": { + "code_commune_insee": "95280", + "nom_de_la_commune": "GOUSSAINVILLE", + "code_postal": "95190", + "coordonnees_gps": [ + 49.024343017, + 2.46619848866 + ], + "libelle_d_acheminement": "GOUSSAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46619848866, + 49.024343017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0e8c86ab13999444edf7a79233d48648c7ee151", + "fields": { + "code_commune_insee": "95287", + "nom_de_la_commune": "GRISY LES PLATRES", + "code_postal": "95810", + "coordonnees_gps": [ + 49.1332346678, + 2.0484611533 + ], + "libelle_d_acheminement": "GRISY LES PLATRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0484611533, + 49.1332346678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9af2e8eaf389a5046b8234a88060469b71767cf0", + "fields": { + "code_commune_insee": "95295", + "nom_de_la_commune": "GUIRY EN VEXIN", + "code_postal": "95450", + "coordonnees_gps": [ + 49.1158466771, + 1.85568912619 + ], + "libelle_d_acheminement": "GUIRY EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85568912619, + 49.1158466771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d91a1def211fb4b70d2fa3ebf737342b92bbcfc1", + "fields": { + "code_commune_insee": "95316", + "nom_de_la_commune": "JAGNY SOUS BOIS", + "code_postal": "95850", + "coordonnees_gps": [ + 49.0814278078, + 2.44399511411 + ], + "libelle_d_acheminement": "JAGNY SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44399511411, + 49.0814278078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5d2a1553bc5b8fa10495ed58c12e6dd6170a45e", + "fields": { + "ligne_5": "VINCOURT", + "code_commune_insee": "95323", + "libelle_d_acheminement": "JOUY LE MOUTIER", + "code_postal": "95280", + "nom_de_la_commune": "JOUY LE MOUTIER", + "coordonnees_gps": [ + 49.0113625056, + 2.03408317867 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03408317867, + 49.0113625056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "347886ee81cc2ce7845de8fb730edd54c8fd94ee", + "fields": { + "code_commune_insee": "95351", + "nom_de_la_commune": "LOUVRES", + "code_postal": "95380", + "coordonnees_gps": [ + 49.0422977702, + 2.50358491408 + ], + "libelle_d_acheminement": "LOUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50358491408, + 49.0422977702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc1db401611a889dbbe467615371c084f81fe19b", + "fields": { + "code_commune_insee": "95352", + "nom_de_la_commune": "LUZARCHES", + "code_postal": "95270", + "coordonnees_gps": [ + 49.1151211125, + 2.44082640954 + ], + "libelle_d_acheminement": "LUZARCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44082640954, + 49.1151211125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0b519bd8eec19043ea2d2bb51595c3216d21264", + "fields": { + "code_commune_insee": "95394", + "nom_de_la_commune": "MERY SUR OISE", + "code_postal": "95540", + "coordonnees_gps": [ + 49.0548422566, + 2.17397254184 + ], + "libelle_d_acheminement": "MERY SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17397254184, + 49.0548422566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f33091d27f4a24b7c771aeda5b1647cb76d7c04", + "fields": { + "code_commune_insee": "95395", + "nom_de_la_commune": "LE MESNIL AUBRY", + "code_postal": "95720", + "coordonnees_gps": [ + 49.0535430501, + 2.39230869097 + ], + "libelle_d_acheminement": "LE MESNIL AUBRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39230869097, + 49.0535430501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21cb4cd1cd1e202eb1a41f805303902e24600052", + "fields": { + "code_commune_insee": "95438", + "nom_de_la_commune": "MOUSSY", + "code_postal": "95640", + "coordonnees_gps": [ + 49.1349938099, + 1.90868035748 + ], + "libelle_d_acheminement": "MOUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90868035748, + 49.1349938099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11a8f074cfdb3982b8481bfa7a8d3d6d2bb3f1ea", + "fields": { + "code_commune_insee": "95445", + "nom_de_la_commune": "NERVILLE LA FORET", + "code_postal": "95590", + "coordonnees_gps": [ + 49.0903513665, + 2.27625010335 + ], + "libelle_d_acheminement": "NERVILLE LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27625010335, + 49.0903513665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7350117b8bd7876b41fd73f8ccde01ef7375bbd2", + "fields": { + "code_commune_insee": "95446", + "nom_de_la_commune": "NESLES LA VALLEE", + "code_postal": "95690", + "coordonnees_gps": [ + 49.1260403898, + 2.17176267252 + ], + "libelle_d_acheminement": "NESLES LA VALLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17176267252, + 49.1260403898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb2ecdf8bd9d39ae73c5ef56dcfc900e0f61162f", + "fields": { + "code_commune_insee": "95456", + "nom_de_la_commune": "NOISY SUR OISE", + "code_postal": "95270", + "coordonnees_gps": [ + 49.1346676659, + 2.32848304396 + ], + "libelle_d_acheminement": "NOISY SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32848304396, + 49.1346676659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0490d7cc5a40c775ac466fb3eafea0c3b759f6f", + "fields": { + "code_commune_insee": "95487", + "nom_de_la_commune": "PERSAN", + "code_postal": "95340", + "coordonnees_gps": [ + 49.1497441715, + 2.26978393249 + ], + "libelle_d_acheminement": "PERSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26978393249, + 49.1497441715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e593fd1477c6bf6f1dc1149835850f779f1ea265", + "fields": { + "code_commune_insee": "95488", + "nom_de_la_commune": "PIERRELAYE", + "code_postal": "95220", + "coordonnees_gps": [ + 49.0194444023, + 2.16105557777 + ], + "libelle_d_acheminement": "PIERRELAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16105557777, + 49.0194444023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "587afd17e9cae40de7232bc9a34e534f298312b7", + "fields": { + "code_commune_insee": "95488", + "nom_de_la_commune": "PIERRELAYE", + "code_postal": "95480", + "coordonnees_gps": [ + 49.0194444023, + 2.16105557777 + ], + "libelle_d_acheminement": "PIERRELAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16105557777, + 49.0194444023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78906832de5578fb500ea0c51ddb5a38ede8aeaa", + "fields": { + "code_commune_insee": "95491", + "nom_de_la_commune": "LE PLESSIS BOUCHARD", + "code_postal": "95130", + "coordonnees_gps": [ + 49.0032793478, + 2.23401999637 + ], + "libelle_d_acheminement": "LE PLESSIS BOUCHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23401999637, + 49.0032793478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e18b941e6ec8cbfc8b27f394d3c8e6a5f9f0918a", + "fields": { + "code_commune_insee": "95504", + "nom_de_la_commune": "PRESLES", + "code_postal": "95590", + "coordonnees_gps": [ + 49.1118569843, + 2.28674437908 + ], + "libelle_d_acheminement": "PRESLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28674437908, + 49.1118569843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2d88748ee8916ab457e0d6637d1514c06d067d7", + "fields": { + "code_commune_insee": "95509", + "nom_de_la_commune": "PUISEUX EN FRANCE", + "code_postal": "95380", + "coordonnees_gps": [ + 49.0668504076, + 2.48852340935 + ], + "libelle_d_acheminement": "PUISEUX EN FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48852340935, + 49.0668504076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e65e99738a8b3b35e5809e8716b05bfe93c42eeb", + "fields": { + "ligne_5": "ROISSY AEROPORT CHARLES DE GAULLE", + "code_commune_insee": "95527", + "libelle_d_acheminement": "ROISSY EN FRANCE", + "code_postal": "95700", + "nom_de_la_commune": "ROISSY EN FRANCE", + "coordonnees_gps": [ + 49.00660444, + 2.51417743519 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51417743519, + 49.00660444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3605de73f0698daef1041e1514e7455cfdda936", + "fields": { + "code_commune_insee": "95585", + "nom_de_la_commune": "SARCELLES", + "code_postal": "95200", + "coordonnees_gps": [ + 48.9902250437, + 2.38160272749 + ], + "libelle_d_acheminement": "SARCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38160272749, + 48.9902250437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdc68294325cdcc0d01161fc72bd7e87ff5a5941", + "fields": { + "code_commune_insee": "95604", + "nom_de_la_commune": "SURVILLIERS", + "code_postal": "95470", + "coordonnees_gps": [ + 49.1059736219, + 2.54410742752 + ], + "libelle_d_acheminement": "SURVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54410742752, + 49.1059736219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e33285d5f86ab98733721b69100164998e345e06", + "fields": { + "code_commune_insee": "95610", + "nom_de_la_commune": "THEMERICOURT", + "code_postal": "95450", + "coordonnees_gps": [ + 49.0903809548, + 1.90532262834 + ], + "libelle_d_acheminement": "THEMERICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90532262834, + 49.0903809548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9161676e7b3e4bcd7e9ec545ed969b04e65a9416", + "fields": { + "code_commune_insee": "95660", + "nom_de_la_commune": "VILLAINES SOUS BOIS", + "code_postal": "95570", + "coordonnees_gps": [ + 49.0753739915, + 2.35663670214 + ], + "libelle_d_acheminement": "VILLAINES SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35663670214, + 49.0753739915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e548de0c78ecb0369740d59b21a3e80b8395c1dd", + "fields": { + "code_commune_insee": "97101", + "nom_de_la_commune": "LES ABYMES", + "code_postal": "97142", + "coordonnees_gps": [ + 16.2727794035, + -61.5017044974 + ], + "libelle_d_acheminement": "LES ABYMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.5017044974, + 16.2727794035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cf7f44e34ed61b68c829ce345fd1be1e12372a2", + "fields": { + "code_commune_insee": "97103", + "nom_de_la_commune": "BAIE MAHAULT", + "code_postal": "97122", + "coordonnees_gps": [ + 16.251171116, + -61.5929355877 + ], + "libelle_d_acheminement": "BAIE MAHAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.5929355877, + 16.251171116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa7eb547f811d81a1366f27f42704b05c678ac01", + "fields": { + "code_commune_insee": "97111", + "nom_de_la_commune": "DESHAIES", + "code_postal": "97126", + "coordonnees_gps": [ + 16.3037984071, + -61.7795787226 + ], + "libelle_d_acheminement": "DESHAIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.7795787226, + 16.3037984071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "016e988fad4e50e36c05d543838ac49989776160", + "fields": { + "code_commune_insee": "97117", + "nom_de_la_commune": "LE MOULE", + "code_postal": "97160", + "coordonnees_gps": [ + 16.3204595682, + -61.3718985191 + ], + "libelle_d_acheminement": "LE MOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.3718985191, + 16.3204595682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ced805963ef366100de8e4f38e82753f1be73750", + "fields": { + "ligne_5": "DOUVILLE", + "code_commune_insee": "97128", + "libelle_d_acheminement": "STE ANNE", + "code_postal": "97180", + "nom_de_la_commune": "STE ANNE", + "coordonnees_gps": [ + 16.2572300868, + -61.3874730054 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.3874730054, + 16.2572300868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bce7958326501c40854db91c761f371ab0b93e9", + "fields": { + "code_commune_insee": "97131", + "nom_de_la_commune": "TERRE DE HAUT", + "code_postal": "97137", + "coordonnees_gps": [ + 15.8653892358, + -61.5842592994 + ], + "libelle_d_acheminement": "TERRE DE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.5842592994, + 15.8653892358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1a1ec938647b3bff710fd3cfdec119374b23ed0", + "fields": { + "code_commune_insee": "97132", + "nom_de_la_commune": "TROIS RIVIERES", + "code_postal": "97114", + "coordonnees_gps": [ + 15.9908100557, + -61.6479632247 + ], + "libelle_d_acheminement": "TROIS RIVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.6479632247, + 15.9908100557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61be11a9ddd02b5d32c54e6a826a07633f0b3b02", + "fields": { + "code_commune_insee": "97205", + "nom_de_la_commune": "CASE PILOTE", + "code_postal": "97222", + "coordonnees_gps": [ + 14.6586961722, + -61.1253927105 + ], + "libelle_d_acheminement": "CASE PILOTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.1253927105, + 14.6586961722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfd0d33b4e6dc7f064b1d4db067f69d606fb9da1", + "fields": { + "code_commune_insee": "97207", + "nom_de_la_commune": "DUCOS", + "code_postal": "97224", + "coordonnees_gps": [ + 14.5777851381, + -60.9676704441 + ], + "libelle_d_acheminement": "DUCOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.9676704441, + 14.5777851381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "807bd2079915563ac2cdd346c481635fe961b6dd", + "fields": { + "code_commune_insee": "97211", + "nom_de_la_commune": "GRAND RIVIERE", + "code_postal": "97218", + "coordonnees_gps": [ + 14.8500162757, + -61.1794005082 + ], + "libelle_d_acheminement": "GRAND RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.1794005082, + 14.8500162757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14b7906013fcf0f9a14ee185b8a92b23c9d92223", + "fields": { + "code_commune_insee": "97215", + "nom_de_la_commune": "MACOUBA", + "code_postal": "97218", + "coordonnees_gps": [ + 14.8550940199, + -61.151590278 + ], + "libelle_d_acheminement": "MACOUBA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.151590278, + 14.8550940199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f657ddc63da4df9cd94f4a5323773c062a6ce7e", + "fields": { + "code_commune_insee": "97216", + "nom_de_la_commune": "LE MARIGOT", + "code_postal": "97225", + "coordonnees_gps": [ + 14.7808848923, + -61.0507940924 + ], + "libelle_d_acheminement": "LE MARIGOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.0507940924, + 14.7808848923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be4555f0a72ed2ed36d46628a6b4924da20558e3", + "fields": { + "code_commune_insee": "97217", + "nom_de_la_commune": "LE MARIN", + "code_postal": "97290", + "coordonnees_gps": [ + 14.4840254458, + -60.8579380107 + ], + "libelle_d_acheminement": "LE MARIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8579380107, + 14.4840254458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f989921de22ec3a83052cf500b4073a054ee96fc", + "fields": { + "code_commune_insee": "97226", + "nom_de_la_commune": "STE ANNE", + "code_postal": "97227", + "coordonnees_gps": [ + 14.4366363772, + -60.8550865047 + ], + "libelle_d_acheminement": "STE ANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8550865047, + 14.4366363772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "699b1e918b715d0633ab0012d68e2d7304f4745a", + "fields": { + "code_commune_insee": "97228", + "nom_de_la_commune": "STE MARIE", + "code_postal": "97230", + "coordonnees_gps": [ + 14.7689902687, + -61.0169082223 + ], + "libelle_d_acheminement": "STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.0169082223, + 14.7689902687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a01800e22d80b28eb561e1dec05b7d72cd8a95a4", + "fields": { + "ligne_5": "STE MARIE MORNE DES ESSES", + "code_commune_insee": "97228", + "libelle_d_acheminement": "STE MARIE", + "code_postal": "97230", + "nom_de_la_commune": "STE MARIE", + "coordonnees_gps": [ + 14.7689902687, + -61.0169082223 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.0169082223, + 14.7689902687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06382cdad740ff29a259f93386d326edc678fc2e", + "fields": { + "code_commune_insee": "97310", + "nom_de_la_commune": "ROURA", + "code_postal": "97311", + "coordonnees_gps": [ + 4.46468598944, + -52.5128388412 + ], + "libelle_d_acheminement": "ROURA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.5128388412, + 4.46468598944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2353787f16e4d917a85ebd3e5d4d76395ea597e9", + "fields": { + "code_commune_insee": "97314", + "nom_de_la_commune": "OUANARY", + "code_postal": "97380", + "coordonnees_gps": [ + 4.19095709482, + -51.8100673748 + ], + "libelle_d_acheminement": "OUANARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -51.8100673748, + 4.19095709482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d0d717bf851c74a45a33581148a5bf1846e4204", + "fields": { + "code_commune_insee": "97360", + "nom_de_la_commune": "APATOU", + "code_postal": "97317", + "coordonnees_gps": [ + 4.83044768998, + -54.2705505503 + ], + "libelle_d_acheminement": "APATOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.2705505503, + 4.83044768998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04e3751c4f05884d95e7a3b60c44b927c24518cc", + "fields": { + "code_commune_insee": "97408", + "nom_de_la_commune": "LA POSSESSION", + "code_postal": "97419", + "coordonnees_gps": [ + -20.9940292693, + 55.3975084985 + ], + "libelle_d_acheminement": "LA POSSESSION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3975084985, + -20.9940292693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b84b26a1925b10007afbfe660ee254cc817fbd41", + "fields": { + "ligne_5": "LA CRESSONNIERE", + "code_commune_insee": "97409", + "libelle_d_acheminement": "ST ANDRE", + "code_postal": "97440", + "nom_de_la_commune": "ST ANDRE", + "coordonnees_gps": [ + -20.9630406732, + 55.6427328786 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.6427328786, + -20.9630406732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c758829adec48206f48d288f23a7de76f42d6b76", + "fields": { + "code_commune_insee": "97411", + "nom_de_la_commune": "ST DENIS", + "code_postal": "97400", + "coordonnees_gps": [ + -20.9329708192, + 55.446867167 + ], + "libelle_d_acheminement": "ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.446867167, + -20.9329708192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba64bb8e7ed0e9c895ab3a16f5f0ab93899b1f99", + "fields": { + "ligne_5": "BELLE PIERRE", + "code_commune_insee": "97411", + "libelle_d_acheminement": "ST DENIS", + "code_postal": "97400", + "nom_de_la_commune": "ST DENIS", + "coordonnees_gps": [ + -20.9329708192, + 55.446867167 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.446867167, + -20.9329708192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da4eeec25a6d100cdce13651d807340d84a7418a", + "fields": { + "ligne_5": "BOIS DE NEFLES ST DENIS", + "code_commune_insee": "97411", + "libelle_d_acheminement": "ST DENIS", + "code_postal": "97490", + "nom_de_la_commune": "ST DENIS", + "coordonnees_gps": [ + -20.9329708192, + 55.446867167 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.446867167, + -20.9329708192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5f036fe4b99d34a5788e9ef114fe23d11b3d3eb", + "fields": { + "ligne_5": "LES LIANES", + "code_commune_insee": "97412", + "libelle_d_acheminement": "ST JOSEPH", + "code_postal": "97480", + "nom_de_la_commune": "ST JOSEPH", + "coordonnees_gps": [ + -21.3063550443, + 55.6420686506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.6420686506, + -21.3063550443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8464f51dc4e9f18f812b5c0c789bb7d379a8578", + "fields": { + "ligne_5": "LA CHALOUPE", + "code_commune_insee": "97413", + "libelle_d_acheminement": "ST LEU", + "code_postal": "97416", + "nom_de_la_commune": "ST LEU", + "coordonnees_gps": [ + -21.1665966424, + 55.3331335776 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3331335776, + -21.1665966424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "887a266b5331422fbd5b94c41e0e442073e5a6ba", + "fields": { + "ligne_5": "LE PITON ST LEU", + "code_commune_insee": "97413", + "libelle_d_acheminement": "ST LEU", + "code_postal": "97424", + "nom_de_la_commune": "ST LEU", + "coordonnees_gps": [ + -21.1665966424, + 55.3331335776 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3331335776, + -21.1665966424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d12573cfcef9d146f3452b1a1ef11acd9aa3ac5", + "fields": { + "code_commune_insee": "97413", + "nom_de_la_commune": "ST LEU", + "code_postal": "97436", + "coordonnees_gps": [ + -21.1665966424, + 55.3331335776 + ], + "libelle_d_acheminement": "ST LEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3331335776, + -21.1665966424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6526985a8a511cb1b3ae7aa91e6d9a53b66cab0", + "fields": { + "ligne_5": "LA RIVIERE", + "code_commune_insee": "97414", + "libelle_d_acheminement": "ST LOUIS", + "code_postal": "97421", + "nom_de_la_commune": "ST LOUIS", + "coordonnees_gps": [ + -21.2339268494, + 55.4213388686 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.4213388686, + -21.2339268494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf87c9e2f9c849b572e50e9865566d1bd5ad6654", + "fields": { + "code_commune_insee": "97414", + "nom_de_la_commune": "ST LOUIS", + "code_postal": "97450", + "coordonnees_gps": [ + -21.2339268494, + 55.4213388686 + ], + "libelle_d_acheminement": "ST LOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.4213388686, + -21.2339268494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03bebbd752b119ad4ba81d36cc3946b310710c5e", + "fields": { + "ligne_5": "LE GUILLAUME", + "code_commune_insee": "97415", + "libelle_d_acheminement": "ST PAUL", + "code_postal": "97423", + "nom_de_la_commune": "ST PAUL", + "coordonnees_gps": [ + -21.0445317522, + 55.3223334298 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3223334298, + -21.0445317522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2da4232ff3cc2bedf18ae2763c3eb30740bef95", + "fields": { + "ligne_5": "ST GILLES LES BAINS", + "code_commune_insee": "97415", + "libelle_d_acheminement": "ST PAUL", + "code_postal": "97434", + "nom_de_la_commune": "ST PAUL", + "coordonnees_gps": [ + -21.0445317522, + 55.3223334298 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3223334298, + -21.0445317522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7255953921523bac56dfab17e3e9ba1d20b83b1e", + "fields": { + "ligne_5": "TAN ROUGE", + "code_commune_insee": "97415", + "libelle_d_acheminement": "ST PAUL", + "code_postal": "97435", + "nom_de_la_commune": "ST PAUL", + "coordonnees_gps": [ + -21.0445317522, + 55.3223334298 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3223334298, + -21.0445317522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a61bd03df0d8cb016a23b75c8ae329ae2db82a9", + "fields": { + "ligne_5": "PLATEAU CAILLOUX", + "code_commune_insee": "97415", + "libelle_d_acheminement": "ST PAUL", + "code_postal": "97460", + "nom_de_la_commune": "ST PAUL", + "coordonnees_gps": [ + -21.0445317522, + 55.3223334298 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3223334298, + -21.0445317522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a18dba53f3c068d9bc423ed1081443f2ea47e8d", + "fields": { + "ligne_5": "BASSE TERRE", + "code_commune_insee": "97416", + "libelle_d_acheminement": "ST PIERRE", + "code_postal": "97410", + "nom_de_la_commune": "ST PIERRE", + "coordonnees_gps": [ + -21.3123242427, + 55.4936155164 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.4936155164, + -21.3123242427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5a2b630cc2f9892dd4cb234ae6b47af4d10b069", + "fields": { + "ligne_5": "TAMPON 14EME KM", + "code_commune_insee": "97422", + "libelle_d_acheminement": "LE TAMPON", + "code_postal": "97430", + "nom_de_la_commune": "LE TAMPON", + "coordonnees_gps": [ + -21.223274585, + 55.5584875266 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5584875266, + -21.223274585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea0dc654c5834bd889038d97d71c588f7af6d689", + "fields": { + "ligne_5": "PALMISTE ROUGE", + "code_commune_insee": "97424", + "libelle_d_acheminement": "CILAOS", + "code_postal": "97413", + "nom_de_la_commune": "CILAOS", + "coordonnees_gps": [ + -21.1441659144, + 55.4586035944 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.4586035944, + -21.1441659144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf8b7dedaeabd74fb28d24fc21f41093b151a365", + "fields": { + "nom_de_la_commune": "MIQUELON LANGLADE", + "ligne_5": "MIQUELON LANGLADE", + "code_postal": "97500", + "code_commune_insee": "97501", + "libelle_d_acheminement": "ST PIERRE ET MIQUELON" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07cc6994c348aaccf94bf97b30c402585814e73e", + "fields": { + "code_commune_insee": "97602", + "nom_de_la_commune": "BANDRABOUA", + "code_postal": "97650", + "coordonnees_gps": [ + -12.7232292527, + 45.1181212208 + ], + "libelle_d_acheminement": "BANDRABOUA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1181212208, + -12.7232292527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dbc66969a1524ec162ffd6998a08790359adf8e", + "fields": { + "code_commune_insee": "97603", + "nom_de_la_commune": "BANDRELE", + "code_postal": "97660", + "coordonnees_gps": [ + -12.9305468714, + 45.1775042961 + ], + "libelle_d_acheminement": "BANDRELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1775042961, + -12.9305468714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ccf50ff01799cc40d4f2b557caa1e080b1903e0", + "fields": { + "code_commune_insee": "97611", + "nom_de_la_commune": "MAMOUDZOU", + "code_postal": "97600", + "coordonnees_gps": [ + -12.7899979586, + 45.1932456026 + ], + "libelle_d_acheminement": "MAMOUDZOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1932456026, + -12.7899979586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69badcec3f3103e3beb73b9d69f17369dcf3c716", + "fields": { + "ligne_5": "PASSAMAINTI", + "code_commune_insee": "97611", + "libelle_d_acheminement": "MAMOUDZOU", + "code_postal": "97605", + "nom_de_la_commune": "MAMOUDZOU", + "coordonnees_gps": [ + -12.7899979586, + 45.1932456026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1932456026, + -12.7899979586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "167063e0bf02b4196a4bcf3c150159ab0c38b21d", + "fields": { + "nom_de_la_commune": "ANAA", + "ligne_5": "ANAA", + "code_postal": "98790", + "code_commune_insee": "98711", + "libelle_d_acheminement": "TEPUPAHEA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3164dab0d54cb2d9f4d2786941d4aab0e9544167", + "fields": { + "nom_de_la_commune": "FAKARAVA", + "ligne_5": "FAKARAVA", + "code_postal": "98790", + "code_commune_insee": "98716", + "libelle_d_acheminement": "TOAU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2cb61001f6aea48ac60c6935d11f1f0b48237cb", + "fields": { + "nom_de_la_commune": "FANGATAU", + "ligne_5": "FANGATAU", + "code_postal": "98765", + "code_commune_insee": "98717", + "libelle_d_acheminement": "TEANA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd67c3206771da94613ea1fc45f6c67d63020a6e", + "fields": { + "nom_de_la_commune": "FANGATAU", + "ligne_5": "FANGATAU", + "code_postal": "98766", + "code_commune_insee": "98717", + "libelle_d_acheminement": "TARIONE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "718d33011b35cc4d4a1d11e6f4a3fdff5b589f91", + "fields": { + "nom_de_la_commune": "FATU HIVA", + "ligne_5": "FATU HIVA", + "code_postal": "98740", + "code_commune_insee": "98718", + "libelle_d_acheminement": "OMOA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5063fd4d3388d847ccfd22f56bc9ea785111fd0c", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98755", + "code_commune_insee": "98719", + "libelle_d_acheminement": "MANGAREVA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1d58732915226342ba8f3c7ec9f9f2475277e9d", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98755", + "code_commune_insee": "98719", + "libelle_d_acheminement": "TARAVAI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "480ed41c1b68298d52f1390a6739722ec1f0bba7", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98792", + "code_commune_insee": "98719", + "libelle_d_acheminement": "MORANE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd76ce557d8f255e34228a7b660ccaa657347aee", + "fields": { + "nom_de_la_commune": "HAO", + "ligne_5": "HAO", + "code_postal": "98767", + "code_commune_insee": "98720", + "libelle_d_acheminement": "OTEPA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abac4806a0fb2f929c17f324597ebd8edf889602", + "fields": { + "nom_de_la_commune": "HITIAA O TE RA", + "ligne_5": "HITIAA O TE RA", + "code_postal": "98708", + "code_commune_insee": "98722", + "libelle_d_acheminement": "TIAREI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9250bde7bdb915f92dd428300fe4268ef741502", + "fields": { + "nom_de_la_commune": "HUAHINE", + "code_postal": "98731", + "code_commune_insee": "98724", + "libelle_d_acheminement": "HUAHINE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdc08eb5219bb7dadd91e09ff15595f067c5abb4", + "fields": { + "nom_de_la_commune": "HUAHINE", + "ligne_5": "HUAHINE", + "code_postal": "98731", + "code_commune_insee": "98724", + "libelle_d_acheminement": "TEFARERII" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6380b8eaa56698dde6ad50aa9860f46a7bdf1a17", + "fields": { + "nom_de_la_commune": "HUAHINE", + "ligne_5": "HUAHINE", + "code_postal": "98731", + "code_commune_insee": "98724", + "libelle_d_acheminement": "MAEVA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "448f566ad16683087db68173fc11d2dfc089a88c", + "fields": { + "nom_de_la_commune": "MAKEMO", + "ligne_5": "MAKEMO", + "code_postal": "98789", + "code_commune_insee": "98726", + "libelle_d_acheminement": "HITIANAU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56d20f231ee1c24e3b0d9dd8ffb64183dfdca99b", + "fields": { + "nom_de_la_commune": "MAUPITI", + "ligne_5": "MAUPITI", + "code_postal": "98732", + "code_commune_insee": "98728", + "libelle_d_acheminement": "MOPELIA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea3594bbc7f7bb7aa8a851333980034656e5d291", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98728", + "code_commune_insee": "98729", + "libelle_d_acheminement": "TEAVARO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e4d2df060efd54f19213595e50bf2edc65e6c93", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98728", + "code_commune_insee": "98729", + "libelle_d_acheminement": "TIAIA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab49680f56c350a42ec573b4c92cd2482dc10f9c", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98729", + "code_commune_insee": "98729", + "libelle_d_acheminement": "PIHAENA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e95c3522458ede74a1e5677fad7430848e084708", + "fields": { + "nom_de_la_commune": "NUKU HIVA", + "ligne_5": "NUKU HIVA", + "code_postal": "98742", + "code_commune_insee": "98731", + "libelle_d_acheminement": "NUKUATAHA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86464300b421bdba263c1f5d7945684a602a4655", + "fields": { + "nom_de_la_commune": "NUKU HIVA", + "ligne_5": "NUKU HIVA", + "code_postal": "98742", + "code_commune_insee": "98731", + "libelle_d_acheminement": "TERRE DESERTE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba2306f79c9dbac4e7920d5ad1f77dacd849d04a", + "fields": { + "nom_de_la_commune": "NUKU HIVA", + "ligne_5": "NUKU HIVA", + "code_postal": "98748", + "code_commune_insee": "98731", + "libelle_d_acheminement": "HATIHEU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b57aace2400bfa9b2e91259fa8c1412c23a7bf5", + "fields": { + "nom_de_la_commune": "NUKU HIVA", + "ligne_5": "NUKU HIVA", + "code_postal": "98796", + "code_commune_insee": "98731", + "libelle_d_acheminement": "HATUTAA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4697b578c13fc71a3ff49e14186d15e732bf0182", + "fields": { + "nom_de_la_commune": "PUKAPUKA", + "ligne_5": "PUKAPUKA", + "code_postal": "98774", + "code_commune_insee": "98737", + "libelle_d_acheminement": "TEONEMAHINA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e15e2974e099552e466689f666ac60d454270eb0", + "fields": { + "nom_de_la_commune": "RANGIROA", + "ligne_5": "RANGIROA", + "code_postal": "98777", + "code_commune_insee": "98740", + "libelle_d_acheminement": "PAHUA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38aa1eadabef8bf3879d3fc52a7c943302b4d323", + "fields": { + "nom_de_la_commune": "RAPA", + "ligne_5": "RAPA", + "code_postal": "98751", + "code_commune_insee": "98741", + "libelle_d_acheminement": "AHUREI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efc546e6520e6e76f96e7154ee648a572708629b", + "fields": { + "nom_de_la_commune": "RAPA", + "ligne_5": "RAPA", + "code_postal": "98794", + "code_commune_insee": "98741", + "libelle_d_acheminement": "MAROTIRI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0755d28bc143e016ff051047ff2b275fc1684aa1", + "fields": { + "nom_de_la_commune": "RURUTU", + "ligne_5": "RURUTU", + "code_postal": "98753", + "code_commune_insee": "98744", + "libelle_d_acheminement": "MOERAI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c936e5b1fdb2281115ba7e9a41c1d0945659ad8", + "fields": { + "nom_de_la_commune": "TAHAA", + "ligne_5": "TAHAA", + "code_postal": "98733", + "code_commune_insee": "98745", + "libelle_d_acheminement": "TIVA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "749d3c32b796421ba25593650996095268706104", + "fields": { + "nom_de_la_commune": "TAHAA", + "ligne_5": "TAHAA", + "code_postal": "98734", + "code_commune_insee": "98745", + "libelle_d_acheminement": "HAAMENE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71823fcaed7ca97e1c64c14c9ede10c6c7e50819", + "fields": { + "nom_de_la_commune": "TAHAA", + "ligne_5": "TAHAA", + "code_postal": "98734", + "code_commune_insee": "98745", + "libelle_d_acheminement": "FAAAHA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24e8bddd3360e78354920b6cec37129221e06440", + "fields": { + "nom_de_la_commune": "TAIARAPU EST", + "ligne_5": "TAIARAPU EST", + "code_postal": "98719", + "code_commune_insee": "98747", + "libelle_d_acheminement": "TARAVAO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a418343cbc44a1eee5cf08fb54d6e1a60dd18fb7", + "fields": { + "nom_de_la_commune": "TAKAROA", + "ligne_5": "TAKAROA", + "code_postal": "98790", + "code_commune_insee": "98749", + "libelle_d_acheminement": "TIKEI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa32f5c9ded5af04a756f6c6506b4b40b17a1e35", + "fields": { + "nom_de_la_commune": "TUMARAA", + "ligne_5": "TUMARAA", + "code_postal": "98735", + "code_commune_insee": "98754", + "libelle_d_acheminement": "TEHURUI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "402e3e14d065499808bc202c5ed5041717d94607", + "fields": { + "nom_de_la_commune": "UA POU", + "ligne_5": "UA POU", + "code_postal": "98746", + "code_commune_insee": "98757", + "libelle_d_acheminement": "HAKAMAII" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b7b44e8a5be12adb2e6f2cd1d91ab62438098ec", + "fields": { + "nom_de_la_commune": "BELEP", + "code_postal": "98811", + "code_commune_insee": "98801", + "libelle_d_acheminement": "BELEP" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e5b887117cc2f5e60d3d19246f023ed86773d5f", + "fields": { + "nom_de_la_commune": "BOURAIL", + "code_postal": "98870", + "code_commune_insee": "98803", + "libelle_d_acheminement": "BOURAIL" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abc38c23a4c5be01eeb5157f0ac4368375a7ef8b", + "fields": { + "nom_de_la_commune": "DUMBEA", + "code_postal": "98837", + "code_commune_insee": "98805", + "libelle_d_acheminement": "DUMBEA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b78898b28262ee998030960b41179cf0799d56e4", + "fields": { + "nom_de_la_commune": "DUMBEA", + "code_postal": "98839", + "code_commune_insee": "98805", + "libelle_d_acheminement": "DUMBEA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05f2466e6e99a1668c2055cfde59b1511c6c91dc", + "fields": { + "nom_de_la_commune": "HOUAILOU", + "code_postal": "98816", + "code_commune_insee": "98808", + "libelle_d_acheminement": "HOUAILOU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db0e184bd985cbeaa90377c5768da0d42b63c3fd", + "fields": { + "nom_de_la_commune": "KONE", + "code_postal": "98860", + "code_commune_insee": "98811", + "libelle_d_acheminement": "KONE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10d38fc541c4f026a570656bef33671d01e68d2b", + "fields": { + "nom_de_la_commune": "KOUMAC", + "code_postal": "98850", + "code_commune_insee": "98812", + "libelle_d_acheminement": "KOUMAC" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53ba37b554bf153fd9cc029dfb7432fe787d0646", + "fields": { + "nom_de_la_commune": "LE MONT DORE", + "code_postal": "98809", + "code_commune_insee": "98817", + "libelle_d_acheminement": "MONT DORE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a9eda5d9b900993cfa6dea25f3fdda353a712e4", + "fields": { + "nom_de_la_commune": "OUVEA", + "ligne_5": "OUVEA", + "code_postal": "98814", + "code_commune_insee": "98820", + "libelle_d_acheminement": "FAYAOUE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4146b4cf271875abe3e5353cf9bd3bcb0dcdf945", + "fields": { + "nom_de_la_commune": "POUM", + "code_postal": "98826", + "code_commune_insee": "98826", + "libelle_d_acheminement": "POUM" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c2181ddb78ccb29ff4ec13742f95d62240874e1", + "fields": { + "nom_de_la_commune": "VOH", + "ligne_5": "VOH", + "code_postal": "98883", + "code_commune_insee": "98831", + "libelle_d_acheminement": "OUACO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d22bc4b4cdd7a895c402c53846cc6db07bbc49d", + "fields": { + "nom_de_la_commune": "KOUAOUA", + "code_postal": "98818", + "code_commune_insee": "98833", + "libelle_d_acheminement": "KOUAOUA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c72e72f64f7fc18de8e091c35199ca92dcce5a2e", + "fields": { + "code_commune_insee": "01009", + "nom_de_la_commune": "ANDERT ET CONDON", + "code_postal": "01300", + "coordonnees_gps": [ + 45.7873565333, + 5.65788307924 + ], + "libelle_d_acheminement": "ANDERT ET CONDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65788307924, + 45.7873565333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e27b5491ecc54cb768dce5fe9ae01325f61293a8", + "fields": { + "code_commune_insee": "01012", + "nom_de_la_commune": "ARANC", + "code_postal": "01110", + "coordonnees_gps": [ + 46.0015344029, + 5.51130637511 + ], + "libelle_d_acheminement": "ARANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51130637511, + 46.0015344029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a67f009637f9c357e977699de2772bef90c250f8", + "fields": { + "code_commune_insee": "01023", + "nom_de_la_commune": "ASNIERES SUR SAONE", + "code_postal": "01570", + "coordonnees_gps": [ + 46.3857281418, + 4.88387478623 + ], + "libelle_d_acheminement": "ASNIERES SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88387478623, + 46.3857281418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67df49a5dc5d8deb49a909152931f3c23886fb9f", + "fields": { + "code_commune_insee": "01029", + "nom_de_la_commune": "BEAUPONT", + "code_postal": "01270", + "coordonnees_gps": [ + 46.4288360203, + 5.26003405676 + ], + "libelle_d_acheminement": "BEAUPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26003405676, + 46.4288360203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a34760f8e970bb53dc8d18d62f692770ef346814", + "fields": { + "code_commune_insee": "01032", + "nom_de_la_commune": "BELIGNEUX", + "code_postal": "01360", + "coordonnees_gps": [ + 45.8591464826, + 5.13989505865 + ], + "libelle_d_acheminement": "BELIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13989505865, + 45.8591464826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0690e844e3b5e22c88f9d8d9db26d8622a0e02a7", + "fields": { + "ligne_5": "OCHIAZ", + "code_commune_insee": "01033", + "libelle_d_acheminement": "VALSERHONE", + "code_postal": "01200", + "nom_de_la_commune": "VALSERHONE", + "coordonnees_gps": [ + 46.1067901755, + 5.83202736464 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83202736464, + 46.1067901755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1db19c61cffb8955581b4bf13ffd512a6d87a2c", + "fields": { + "ligne_5": "BELMONT LUTHEZIEU", + "code_commune_insee": "01036", + "libelle_d_acheminement": "VALROMEY SUR SERAN", + "code_postal": "01260", + "nom_de_la_commune": "VALROMEY SUR SERAN", + "coordonnees_gps": [ + 45.8847475883, + 5.65115788055 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65115788055, + 45.8847475883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cb7447ef711488b6f005e1eb03f056a2910e3d1", + "fields": { + "ligne_5": "LOMPNIEU", + "code_commune_insee": "01036", + "libelle_d_acheminement": "VALROMEY SUR SERAN", + "code_postal": "01260", + "nom_de_la_commune": "VALROMEY SUR SERAN", + "coordonnees_gps": [ + 45.8847475883, + 5.65115788055 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65115788055, + 45.8847475883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afd622b8b1cc2809b0efce476f658e597ad34edf", + "fields": { + "ligne_5": "LUTHEZIEU", + "code_commune_insee": "01036", + "libelle_d_acheminement": "VALROMEY SUR SERAN", + "code_postal": "01260", + "nom_de_la_commune": "VALROMEY SUR SERAN", + "coordonnees_gps": [ + 45.8847475883, + 5.65115788055 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65115788055, + 45.8847475883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "152f47778cc34987f15f8c0e2d89344c8641437e", + "fields": { + "ligne_5": "SUTRIEU", + "code_commune_insee": "01036", + "libelle_d_acheminement": "VALROMEY SUR SERAN", + "code_postal": "01260", + "nom_de_la_commune": "VALROMEY SUR SERAN", + "coordonnees_gps": [ + 45.8847475883, + 5.65115788055 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65115788055, + 45.8847475883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40ac7938ece10c56a1fd21259f188e73603bedc4", + "fields": { + "code_commune_insee": "01045", + "nom_de_la_commune": "BIRIEUX", + "code_postal": "01330", + "coordonnees_gps": [ + 45.9533995502, + 5.03666479984 + ], + "libelle_d_acheminement": "BIRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03666479984, + 45.9533995502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3469b293ad256bf192bc942a0ffd3085b5a31bb", + "fields": { + "code_commune_insee": "01049", + "nom_de_la_commune": "LA BOISSE", + "code_postal": "01120", + "coordonnees_gps": [ + 45.8446213549, + 5.02783224111 + ], + "libelle_d_acheminement": "LA BOISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02783224111, + 45.8446213549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "427ed22a15cc2c0bf80cade52b751a3b4b9bdb68", + "fields": { + "code_commune_insee": "01050", + "nom_de_la_commune": "BOISSEY", + "code_postal": "01190", + "coordonnees_gps": [ + 46.3727973545, + 4.9989764059 + ], + "libelle_d_acheminement": "BOISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9989764059, + 46.3727973545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eedfa9517cbb770244134d61810a161381f052a", + "fields": { + "code_commune_insee": "01054", + "nom_de_la_commune": "BOURG ST CHRISTOPHE", + "code_postal": "01800", + "coordonnees_gps": [ + 45.8861934456, + 5.14349196896 + ], + "libelle_d_acheminement": "BOURG ST CHRISTOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14349196896, + 45.8861934456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adc09801f0232671632ed8fc57f99194712ac2ef", + "fields": { + "code_commune_insee": "01066", + "nom_de_la_commune": "LA BURBANCHE", + "code_postal": "01510", + "coordonnees_gps": [ + 45.8598709332, + 5.54609714598 + ], + "libelle_d_acheminement": "LA BURBANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54609714598, + 45.8598709332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43dcb96e4cecdf17ff416a511d9b945231d978c2", + "fields": { + "code_commune_insee": "01078", + "nom_de_la_commune": "CHALLEX", + "code_postal": "01630", + "coordonnees_gps": [ + 46.1768358327, + 5.97115092939 + ], + "libelle_d_acheminement": "CHALLEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97115092939, + 46.1768358327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b6153ef33e38d611e5100ce6e1bf3f5b656670e", + "fields": { + "code_commune_insee": "01079", + "nom_de_la_commune": "CHAMPAGNE EN VALROMEY", + "code_postal": "01260", + "coordonnees_gps": [ + 45.9316447397, + 5.69321890072 + ], + "libelle_d_acheminement": "CHAMPAGNE EN VALROMEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69321890072, + 45.9316447397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b03966aa4c67a0b217a4ff83bf02861957356369", + "fields": { + "ligne_5": "LILIGNOD", + "code_commune_insee": "01079", + "libelle_d_acheminement": "CHAMPAGNE EN VALROMEY", + "code_postal": "01260", + "nom_de_la_commune": "CHAMPAGNE EN VALROMEY", + "coordonnees_gps": [ + 45.9316447397, + 5.69321890072 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69321890072, + 45.9316447397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9e8bd9f94e15e66a1bcae3d5662b74b841b79ac", + "fields": { + "code_commune_insee": "01085", + "nom_de_la_commune": "LA CHAPELLE DU CHATELARD", + "code_postal": "01240", + "coordonnees_gps": [ + 46.0744536905, + 5.02162055898 + ], + "libelle_d_acheminement": "LA CHAPELLE DU CHATELARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02162055898, + 46.0744536905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b592067b9d10e282de019c2dfdae0ea2fb8b2d30", + "fields": { + "code_commune_insee": "01101", + "nom_de_la_commune": "CHEVILLARD", + "code_postal": "01430", + "coordonnees_gps": [ + 46.1103512578, + 5.58116056005 + ], + "libelle_d_acheminement": "CHEVILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58116056005, + 46.1103512578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02791cac8429df9606c0c34d8921cc04d33991d8", + "fields": { + "code_commune_insee": "01105", + "nom_de_la_commune": "CIVRIEUX", + "code_postal": "01390", + "coordonnees_gps": [ + 45.922467454, + 4.88633786877 + ], + "libelle_d_acheminement": "CIVRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88633786877, + 45.922467454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e88005c3d5a17ef2dd75b4edfb4e1496591b9ac1", + "fields": { + "code_commune_insee": "01115", + "nom_de_la_commune": "CONFRANCON", + "code_postal": "01310", + "coordonnees_gps": [ + 46.270304175, + 5.05775217893 + ], + "libelle_d_acheminement": "CONFRANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05775217893, + 46.270304175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6693f77c0975830afd9241b95bfdd1eb2ee43786", + "fields": { + "code_commune_insee": "01125", + "nom_de_la_commune": "CORVEISSIAT", + "code_postal": "01250", + "coordonnees_gps": [ + 46.2505107235, + 5.47152467919 + ], + "libelle_d_acheminement": "CORVEISSIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47152467919, + 46.2505107235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4fcbec4a64f906caa5933ddeb312ff22323ba2c", + "fields": { + "code_commune_insee": "01127", + "nom_de_la_commune": "COURMANGOUX", + "code_postal": "01370", + "coordonnees_gps": [ + 46.3267864521, + 5.35558241812 + ], + "libelle_d_acheminement": "COURMANGOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35558241812, + 46.3267864521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09e657cd940730e3eed928375716182e7827796f", + "fields": { + "code_commune_insee": "01129", + "nom_de_la_commune": "CRANS", + "code_postal": "01320", + "coordonnees_gps": [ + 45.9663793103, + 5.19490390871 + ], + "libelle_d_acheminement": "CRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19490390871, + 45.9663793103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01748eedb46b22a5bee695ef79390bbd97e4fd7f", + "fields": { + "ligne_5": "CRAS SUR REYSSOUZE", + "code_commune_insee": "01130", + "libelle_d_acheminement": "BRESSE VALLONS", + "code_postal": "01340", + "nom_de_la_commune": "BRESSE VALLONS", + "coordonnees_gps": [ + 46.3130831891, + 5.17796707174 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17796707174, + 46.3130831891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25e49beb71baf989472c3d6b5b3dd30e34c1d43b", + "fields": { + "code_commune_insee": "01141", + "nom_de_la_commune": "CUZIEU", + "code_postal": "01300", + "coordonnees_gps": [ + 45.8200002803, + 5.6765554896 + ], + "libelle_d_acheminement": "CUZIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6765554896, + 45.8200002803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dcd65239714f96fc6ca3e4eab3d9244db8b0772", + "fields": { + "code_commune_insee": "01145", + "nom_de_la_commune": "DOMPIERRE SUR VEYLE", + "code_postal": "01240", + "coordonnees_gps": [ + 46.0667883703, + 5.21665199666 + ], + "libelle_d_acheminement": "DOMPIERRE SUR VEYLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21665199666, + 46.0667883703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3d44069503208f67f9bce1a3d4d47842bf1d33d", + "fields": { + "code_commune_insee": "01149", + "nom_de_la_commune": "DOUVRES", + "code_postal": "01500", + "coordonnees_gps": [ + 45.984297392, + 5.37106901673 + ], + "libelle_d_acheminement": "DOUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37106901673, + 45.984297392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb73ecf2a01c26bd00fae15f5561ddd8640431d3", + "fields": { + "code_commune_insee": "01151", + "nom_de_la_commune": "DRUILLAT", + "code_postal": "01160", + "coordonnees_gps": [ + 46.067579544, + 5.29361666429 + ], + "libelle_d_acheminement": "DRUILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29361666429, + 46.067579544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "967992f671d8b046afce005e10b0a226e06a7b86", + "fields": { + "code_commune_insee": "01155", + "nom_de_la_commune": "EVOSGES", + "code_postal": "01230", + "coordonnees_gps": [ + 45.965147537, + 5.50283599885 + ], + "libelle_d_acheminement": "EVOSGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50283599885, + 45.965147537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "087cb1feab6914643a080b337dd1aaa64b9fe1a6", + "fields": { + "code_commune_insee": "01160", + "nom_de_la_commune": "FERNEY VOLTAIRE", + "code_postal": "01210", + "coordonnees_gps": [ + 46.2519789243, + 6.10826403805 + ], + "libelle_d_acheminement": "FERNEY VOLTAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10826403805, + 46.2519789243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa22f39a1e85025a8b6ad93aa9bebde0b88161d8", + "fields": { + "code_commune_insee": "01162", + "nom_de_la_commune": "FLAXIEU", + "code_postal": "01350", + "coordonnees_gps": [ + 45.8113298005, + 5.74459048839 + ], + "libelle_d_acheminement": "FLAXIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74459048839, + 45.8113298005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3662d8e1da286545f17d04a95472f1142145b87b", + "fields": { + "code_commune_insee": "01169", + "nom_de_la_commune": "GENOUILLEUX", + "code_postal": "01090", + "coordonnees_gps": [ + 46.1201611728, + 4.79288195016 + ], + "libelle_d_acheminement": "GENOUILLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79288195016, + 46.1201611728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c53d961362d2ae5b3040c5c7bd8cbb7e8af1582", + "fields": { + "code_commune_insee": "01170", + "nom_de_la_commune": "BEARD GEOVREISSIAT", + "code_postal": "01460", + "coordonnees_gps": [ + 46.1896733539, + 5.55139781353 + ], + "libelle_d_acheminement": "BEARD GEOVREISSIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55139781353, + 46.1896733539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd69c4626090a53b062d44d0f4fe43716094d725", + "fields": { + "code_commune_insee": "01174", + "nom_de_la_commune": "GIRON", + "code_postal": "01130", + "coordonnees_gps": [ + 46.2227121191, + 5.78049809256 + ], + "libelle_d_acheminement": "GIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78049809256, + 46.2227121191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38eb29aac3e5989d2f6abd8e905690a039affd37", + "fields": { + "code_commune_insee": "01184", + "nom_de_la_commune": "HAUTECOURT ROMANECHE", + "code_postal": "01250", + "coordonnees_gps": [ + 46.1611241927, + 5.42944457639 + ], + "libelle_d_acheminement": "HAUTECOURT ROMANECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42944457639, + 46.1611241927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95bc05bd24c61342be166e6bd2e4867f7e39cd3c", + "fields": { + "ligne_5": "ROMANECHE", + "code_commune_insee": "01184", + "libelle_d_acheminement": "HAUTECOURT ROMANECHE", + "code_postal": "01250", + "nom_de_la_commune": "HAUTECOURT ROMANECHE", + "coordonnees_gps": [ + 46.1611241927, + 5.42944457639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42944457639, + 46.1611241927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eee3d820f658e51e74f4b1b208d6c0774c3432bb", + "fields": { + "code_commune_insee": "01188", + "nom_de_la_commune": "ILLIAT", + "code_postal": "01140", + "coordonnees_gps": [ + 46.1866986838, + 4.88840344003 + ], + "libelle_d_acheminement": "ILLIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88840344003, + 46.1866986838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7721e66706fa60816ce92d8444d0e2a7453a4c14", + "fields": { + "code_commune_insee": "01194", + "nom_de_la_commune": "JASSANS RIOTTIER", + "code_postal": "01480", + "coordonnees_gps": [ + 45.9777239103, + 4.75984637871 + ], + "libelle_d_acheminement": "JASSANS RIOTTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75984637871, + 45.9777239103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e0e20062cb7888838f60d1514b6d861a6fa27a7", + "fields": { + "code_commune_insee": "01195", + "nom_de_la_commune": "JASSERON", + "code_postal": "01250", + "coordonnees_gps": [ + 46.2150037064, + 5.31215372338 + ], + "libelle_d_acheminement": "JASSERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31215372338, + 46.2150037064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9afdf461a6fda808372b0277fdaf4bbf8248e73a", + "fields": { + "code_commune_insee": "01206", + "nom_de_la_commune": "LANTENAY", + "code_postal": "01430", + "coordonnees_gps": [ + 46.0544405897, + 5.54127421165 + ], + "libelle_d_acheminement": "LANTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54127421165, + 46.0544405897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1adc02b61862da6e7b12d1495cd470cf2229e250", + "fields": { + "code_commune_insee": "01209", + "nom_de_la_commune": "LEAZ", + "code_postal": "01200", + "coordonnees_gps": [ + 46.1086518044, + 5.87649017888 + ], + "libelle_d_acheminement": "LEAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87649017888, + 46.1086518044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fbb12eb0cd48a661b524b39f04cf27c64221c84", + "fields": { + "code_commune_insee": "01225", + "nom_de_la_commune": "LURCY", + "code_postal": "01090", + "coordonnees_gps": [ + 46.061730034, + 4.78075207026 + ], + "libelle_d_acheminement": "LURCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78075207026, + 46.061730034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d464c8e3359d57492d02f0d8d77dfccc545d5ad", + "fields": { + "code_commune_insee": "01229", + "nom_de_la_commune": "MALAFRETAZ", + "code_postal": "01340", + "coordonnees_gps": [ + 46.3295545661, + 5.14386299599 + ], + "libelle_d_acheminement": "MALAFRETAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14386299599, + 46.3295545661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fd87a2af78cb24180f9b9838cdbcabb479788fd", + "fields": { + "code_commune_insee": "01230", + "nom_de_la_commune": "MANTENAY MONTLIN", + "code_postal": "01560", + "coordonnees_gps": [ + 46.4302754511, + 5.10675899732 + ], + "libelle_d_acheminement": "MANTENAY MONTLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10675899732, + 46.4302754511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "343da207dfa5da8f393f24979e5ed402c3f52b85", + "fields": { + "code_commune_insee": "01236", + "nom_de_la_commune": "MARSONNAS", + "code_postal": "01340", + "coordonnees_gps": [ + 46.3409117711, + 5.06434294764 + ], + "libelle_d_acheminement": "MARSONNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06434294764, + 46.3409117711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20d416a8b5135aca6eea438a3687363e700acd84", + "fields": { + "code_commune_insee": "01237", + "nom_de_la_commune": "MARTIGNAT", + "code_postal": "01100", + "coordonnees_gps": [ + 46.2030768095, + 5.61384033805 + ], + "libelle_d_acheminement": "MARTIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61384033805, + 46.2030768095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a456609f16faa44e55575cf2906cd20542790433", + "fields": { + "code_commune_insee": "01242", + "nom_de_la_commune": "MERIGNAT", + "code_postal": "01450", + "coordonnees_gps": [ + 46.0648564341, + 5.44210660051 + ], + "libelle_d_acheminement": "MERIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44210660051, + 46.0648564341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6c642b19b2fd0e194c64554b8370c8b04f3fa02", + "fields": { + "code_commune_insee": "01243", + "nom_de_la_commune": "MESSIMY SUR SAONE", + "code_postal": "01480", + "coordonnees_gps": [ + 46.0472670758, + 4.75935643933 + ], + "libelle_d_acheminement": "MESSIMY SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75935643933, + 46.0472670758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b3c6e31116911517d47e57ef2895e50b66ff8ee", + "fields": { + "code_commune_insee": "01244", + "nom_de_la_commune": "MEXIMIEUX", + "code_postal": "01800", + "coordonnees_gps": [ + 45.9060530318, + 5.20404833653 + ], + "libelle_d_acheminement": "MEXIMIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20404833653, + 45.9060530318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17d23ff6564da605b8a7fbb6710ebeb3f61678a8", + "fields": { + "ligne_5": "RIGNAT", + "code_commune_insee": "01245", + "libelle_d_acheminement": "BOHAS MEYRIAT RIGNAT", + "code_postal": "01250", + "nom_de_la_commune": "BOHAS MEYRIAT RIGNAT", + "coordonnees_gps": [ + 46.1427060662, + 5.3780109646 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3780109646, + 46.1427060662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5715a68b8ba94de0e128477c65f56d3ad54c8ac", + "fields": { + "code_commune_insee": "01248", + "nom_de_la_commune": "MIONNAY", + "code_postal": "01390", + "coordonnees_gps": [ + 45.8955939299, + 4.92416967439 + ], + "libelle_d_acheminement": "MIONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92416967439, + 45.8955939299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9249a1fa3540a660b00dfae63bdeaf25199b3483", + "fields": { + "code_commune_insee": "01249", + "nom_de_la_commune": "MIRIBEL", + "code_postal": "01700", + "coordonnees_gps": [ + 45.8442099203, + 4.94106746787 + ], + "libelle_d_acheminement": "MIRIBEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94106746787, + 45.8442099203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85f4dcd6ccd596b4f0a67704d1d80aaad09d8cab", + "fields": { + "ligne_5": "LE MAS RILLIER", + "code_commune_insee": "01249", + "libelle_d_acheminement": "MIRIBEL", + "code_postal": "01700", + "nom_de_la_commune": "MIRIBEL", + "coordonnees_gps": [ + 45.8442099203, + 4.94106746787 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94106746787, + 45.8442099203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e546df9e78db7a4335ae519b5ad0f1a3782370ef", + "fields": { + "code_commune_insee": "01258", + "nom_de_la_commune": "MONTCEAUX", + "code_postal": "01090", + "coordonnees_gps": [ + 46.0962893261, + 4.80453564172 + ], + "libelle_d_acheminement": "MONTCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80453564172, + 46.0962893261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "179414a9bc81c2d1f4c70948609f87d6b13c58ca", + "fields": { + "code_commune_insee": "01263", + "nom_de_la_commune": "MONTMERLE SUR SAONE", + "code_postal": "01090", + "coordonnees_gps": [ + 46.0849573236, + 4.7608579486 + ], + "libelle_d_acheminement": "MONTMERLE SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7608579486, + 46.0849573236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62cbc478140b3d5681d0a3b5b1a18a4d65c5143e", + "fields": { + "code_commune_insee": "01269", + "nom_de_la_commune": "NANTUA", + "code_postal": "01130", + "coordonnees_gps": [ + 46.1537845403, + 5.61352793799 + ], + "libelle_d_acheminement": "NANTUA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61352793799, + 46.1537845403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e06cc6a25f77fb28a50a5a94fa928adaa57ed62", + "fields": { + "code_commune_insee": "01273", + "nom_de_la_commune": "NEUVILLE SUR AIN", + "code_postal": "01160", + "coordonnees_gps": [ + 46.0909654813, + 5.37349784691 + ], + "libelle_d_acheminement": "NEUVILLE SUR AIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37349784691, + 46.0909654813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9124436610aa9133380892e43e6c61db17de0b2", + "fields": { + "code_commune_insee": "01274", + "nom_de_la_commune": "LES NEYROLLES", + "code_postal": "01130", + "coordonnees_gps": [ + 46.1342937114, + 5.63714517869 + ], + "libelle_d_acheminement": "LES NEYROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63714517869, + 46.1342937114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c46d0d6b4e32517b1915d89c1ae39e2fea9c5792", + "fields": { + "code_commune_insee": "01277", + "nom_de_la_commune": "NIVOLLET MONTGRIFFON", + "code_postal": "01230", + "coordonnees_gps": [ + 45.9999448244, + 5.45847815374 + ], + "libelle_d_acheminement": "NIVOLLET MONTGRIFFON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45847815374, + 45.9999448244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07f0253a82b4410261d54c0d0959287f450c354e", + "fields": { + "code_commune_insee": "01280", + "nom_de_la_commune": "ORDONNAZ", + "code_postal": "01510", + "coordonnees_gps": [ + 45.8339690378, + 5.5395794296 + ], + "libelle_d_acheminement": "ORDONNAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5395794296, + 45.8339690378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "818b30cad9a7d5e6f011af945524383665dde5ab", + "fields": { + "ligne_5": "VEYZIAT", + "code_commune_insee": "01283", + "libelle_d_acheminement": "OYONNAX", + "code_postal": "01100", + "nom_de_la_commune": "OYONNAX", + "coordonnees_gps": [ + 46.2605435859, + 5.65344320923 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65344320923, + 46.2605435859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c246f2034058b884f88cb4770d7a02f85608025b", + "fields": { + "code_commune_insee": "01284", + "nom_de_la_commune": "OZAN", + "code_postal": "01190", + "coordonnees_gps": [ + 46.3867168877, + 4.91805840196 + ], + "libelle_d_acheminement": "OZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91805840196, + 46.3867168877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe94cc2ecd89715ebb9b04edf9f8775a5e005343", + "fields": { + "code_commune_insee": "01290", + "nom_de_la_commune": "PEROUGES", + "code_postal": "01800", + "coordonnees_gps": [ + 45.8803945768, + 5.17955874977 + ], + "libelle_d_acheminement": "PEROUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17955874977, + 45.8803945768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8175f160bf0a2f5b8ebac2cbc0689a50c7917b25", + "fields": { + "code_commune_insee": "01304", + "nom_de_la_commune": "PONT D AIN", + "code_postal": "01160", + "coordonnees_gps": [ + 46.0542077091, + 5.34703652618 + ], + "libelle_d_acheminement": "PONT D AIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34703652618, + 46.0542077091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daf878e03186b78130570939dab5cf1b46122237", + "fields": { + "code_commune_insee": "01307", + "nom_de_la_commune": "PORT", + "code_postal": "01460", + "coordonnees_gps": [ + 46.155963139, + 5.57615832883 + ], + "libelle_d_acheminement": "PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57615832883, + 46.155963139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d06096a552ef10d2fef249a1555bf227b31bbbc", + "fields": { + "code_commune_insee": "01308", + "nom_de_la_commune": "POUGNY", + "code_postal": "01550", + "coordonnees_gps": [ + 46.1450914685, + 5.95100479291 + ], + "libelle_d_acheminement": "POUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95100479291, + 46.1450914685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c520e55a2808c784982650063e1f2e02c1e75bbf", + "fields": { + "code_commune_insee": "01310", + "nom_de_la_commune": "PREMEYZEL", + "code_postal": "01300", + "coordonnees_gps": [ + 45.6806263123, + 5.64396081449 + ], + "libelle_d_acheminement": "PREMEYZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64396081449, + 45.6806263123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "baf9d39d93fe29c387ee9a1c8fbede92da06c697", + "fields": { + "code_commune_insee": "01313", + "nom_de_la_commune": "PREVESSIN MOENS", + "code_postal": "01280", + "coordonnees_gps": [ + 46.25827228, + 6.07223251859 + ], + "libelle_d_acheminement": "PREVESSIN MOENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07223251859, + 46.25827228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65e1637fef9cb341082b4ab63815f03578b7ce71", + "fields": { + "ligne_5": "MOENS", + "code_commune_insee": "01313", + "libelle_d_acheminement": "PREVESSIN MOENS", + "code_postal": "01280", + "nom_de_la_commune": "PREVESSIN MOENS", + "coordonnees_gps": [ + 46.25827228, + 6.07223251859 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07223251859, + 46.25827228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8303df408a648b988d54fb601a245ee4c4f6d025", + "fields": { + "code_commune_insee": "01317", + "nom_de_la_commune": "RAMASSE", + "code_postal": "01250", + "coordonnees_gps": [ + 46.1905550894, + 5.35572056985 + ], + "libelle_d_acheminement": "RAMASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35572056985, + 46.1905550894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63ab4d6885c6df2704730ee2eb0248ae4926d6cb", + "fields": { + "code_commune_insee": "01320", + "nom_de_la_commune": "REPLONGES", + "code_postal": "01750", + "coordonnees_gps": [ + 46.3077356023, + 4.8746938271 + ], + "libelle_d_acheminement": "REPLONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8746938271, + 46.3077356023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "455828f88d57a9c933892550664a325b5e5aa012", + "fields": { + "code_commune_insee": "01344", + "nom_de_la_commune": "ST DENIS LES BOURG", + "code_postal": "01000", + "coordonnees_gps": [ + 46.2111998453, + 5.18462806771 + ], + "libelle_d_acheminement": "ST DENIS LES BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18462806771, + 46.2111998453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "648eb6c5013b1e149a18bba105356f38104c691d", + "fields": { + "code_commune_insee": "01349", + "nom_de_la_commune": "ST ELOI", + "code_postal": "01800", + "coordonnees_gps": [ + 45.9322494861, + 5.15187041178 + ], + "libelle_d_acheminement": "ST ELOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15187041178, + 45.9322494861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7fd869bd70acce7d4930f297b86edf86dc20c69", + "fields": { + "code_commune_insee": "01353", + "nom_de_la_commune": "STE EUPHEMIE", + "code_postal": "01600", + "coordonnees_gps": [ + 45.9669798317, + 4.79478189169 + ], + "libelle_d_acheminement": "STE EUPHEMIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79478189169, + 45.9669798317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c94c8cb72ed5109ff801afb3c647a61403570c2", + "fields": { + "code_commune_insee": "01354", + "nom_de_la_commune": "ST GENIS POUILLY", + "code_postal": "01630", + "coordonnees_gps": [ + 46.254539333, + 6.0362907345 + ], + "libelle_d_acheminement": "ST GENIS POUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0362907345, + 46.254539333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00ea1d13a369186ae3a69afccf9359bc4456a2e3", + "fields": { + "code_commune_insee": "01360", + "nom_de_la_commune": "ST JEAN DE GONVILLE", + "code_postal": "01630", + "coordonnees_gps": [ + 46.2178585727, + 5.94203093769 + ], + "libelle_d_acheminement": "ST JEAN DE GONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94203093769, + 46.2178585727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff9e5c86e4cafecd15592ac1e5bef29bc95da28d", + "fields": { + "code_commune_insee": "01366", + "nom_de_la_commune": "STE JULIE", + "code_postal": "01150", + "coordonnees_gps": [ + 45.8819723176, + 5.28452304614 + ], + "libelle_d_acheminement": "STE JULIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28452304614, + 45.8819723176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aa241855e5a6996b7ae528e79ae7825773ed6fa", + "fields": { + "code_commune_insee": "01368", + "nom_de_la_commune": "ST JULIEN SUR VEYLE", + "code_postal": "01540", + "coordonnees_gps": [ + 46.2014862081, + 4.959356342 + ], + "libelle_d_acheminement": "ST JULIEN SUR VEYLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.959356342, + 46.2014862081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05a69b8d5b3986cf27eeb722b68eab6c8efe45c0", + "fields": { + "code_commune_insee": "01371", + "nom_de_la_commune": "ST MARCEL", + "code_postal": "01390", + "coordonnees_gps": [ + 45.9485803654, + 4.9896671017 + ], + "libelle_d_acheminement": "ST MARCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9896671017, + 45.9485803654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2483d54fd0b781fe8769abafcce9a7c14220c2a", + "fields": { + "code_commune_insee": "01373", + "nom_de_la_commune": "ST MARTIN DU FRENE", + "code_postal": "01430", + "coordonnees_gps": [ + 46.135983782, + 5.57106016428 + ], + "libelle_d_acheminement": "ST MARTIN DU FRENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57106016428, + 46.135983782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b07ec1d6f86dfca88163df157873a0afbd0a3fad", + "fields": { + "code_commune_insee": "01374", + "nom_de_la_commune": "ST MARTIN DU MONT", + "code_postal": "01160", + "coordonnees_gps": [ + 46.1061500835, + 5.32551470817 + ], + "libelle_d_acheminement": "ST MARTIN DU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32551470817, + 46.1061500835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06b99e332c81015e4622960c1d3c9a4abae0343c", + "fields": { + "code_commune_insee": "01375", + "nom_de_la_commune": "ST MARTIN LE CHATEL", + "code_postal": "01310", + "coordonnees_gps": [ + 46.291445874, + 5.12291715091 + ], + "libelle_d_acheminement": "ST MARTIN LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12291715091, + 46.291445874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c2103fc7e134e477c635185725ba628c7111303", + "fields": { + "code_commune_insee": "01376", + "nom_de_la_commune": "ST MAURICE DE BEYNOST", + "code_postal": "01700", + "coordonnees_gps": [ + 45.8343709108, + 4.97726215174 + ], + "libelle_d_acheminement": "ST MAURICE DE BEYNOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97726215174, + 45.8343709108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "604204b76b27d8fd1220a86052f85a54c4beb02b", + "fields": { + "code_commune_insee": "01385", + "nom_de_la_commune": "ST REMY", + "code_postal": "01310", + "coordonnees_gps": [ + 46.1846642149, + 5.16771354778 + ], + "libelle_d_acheminement": "ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16771354778, + 46.1846642149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb6f338d79b6449f7b20864148eae606b3e0b6c7", + "fields": { + "code_commune_insee": "01390", + "nom_de_la_commune": "ST VULBAS", + "code_postal": "01150", + "coordonnees_gps": [ + 45.8222315102, + 5.27019602929 + ], + "libelle_d_acheminement": "ST VULBAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27019602929, + 45.8222315102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1921823f6141795eac3c2dc591be4ff298ad61b4", + "fields": { + "code_commune_insee": "01392", + "nom_de_la_commune": "SAMOGNAT", + "code_postal": "01580", + "coordonnees_gps": [ + 46.2648715781, + 5.58607689306 + ], + "libelle_d_acheminement": "SAMOGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58607689306, + 46.2648715781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d82e35be8524f54f233fc4bfdcc64d7130b702ed", + "fields": { + "code_commune_insee": "01396", + "nom_de_la_commune": "SAULT BRENAZ", + "code_postal": "01150", + "coordonnees_gps": [ + 45.8654038798, + 5.40416104083 + ], + "libelle_d_acheminement": "SAULT BRENAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40416104083, + 45.8654038798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58d06e2034709ec47108f08019080906eef8037d", + "fields": { + "code_commune_insee": "01401", + "nom_de_la_commune": "SERGY", + "code_postal": "01630", + "coordonnees_gps": [ + 46.2626243003, + 5.98914553194 + ], + "libelle_d_acheminement": "SERGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98914553194, + 46.2626243003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49f9ede2e1d45ee5c9445cde8d7e18dcf0c6e2cb", + "fields": { + "code_commune_insee": "01403", + "nom_de_la_commune": "SERRIERES DE BRIORD", + "code_postal": "01470", + "coordonnees_gps": [ + 45.8133219416, + 5.44125880379 + ], + "libelle_d_acheminement": "SERRIERES DE BRIORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44125880379, + 45.8133219416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bde42c5ce0916ba4930b12622fb4a008f423a57", + "fields": { + "code_commune_insee": "01405", + "nom_de_la_commune": "SERVAS", + "code_postal": "01960", + "coordonnees_gps": [ + 46.1385540577, + 5.17887070992 + ], + "libelle_d_acheminement": "SERVAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17887070992, + 46.1385540577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c005694d94d8391ba058f309bb9424624315a95", + "fields": { + "ligne_5": "NAPT", + "code_commune_insee": "01410", + "libelle_d_acheminement": "SONTHONNAX LA MONTAGNE", + "code_postal": "01580", + "nom_de_la_commune": "SONTHONNAX LA MONTAGNE", + "coordonnees_gps": [ + 46.2229768712, + 5.50566888767 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50566888767, + 46.2229768712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cb542b43baf9017918a1679e590a13a74b0da39", + "fields": { + "code_commune_insee": "01411", + "nom_de_la_commune": "SOUCLIN", + "code_postal": "01150", + "coordonnees_gps": [ + 45.8781798572, + 5.43058627512 + ], + "libelle_d_acheminement": "SOUCLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43058627512, + 45.8781798572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc3c4c17f74ea26a5a30618560f65056b66ee28b", + "fields": { + "code_commune_insee": "01435", + "nom_de_la_commune": "VERSONNEX", + "code_postal": "01210", + "coordonnees_gps": [ + 46.2997631425, + 6.10057952207 + ], + "libelle_d_acheminement": "VERSONNEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10057952207, + 46.2997631425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b75995da04ae160b6606763358896a42ba35f9b7", + "fields": { + "code_commune_insee": "01444", + "nom_de_la_commune": "VILLEBOIS", + "code_postal": "01150", + "coordonnees_gps": [ + 45.8485624628, + 5.44711117486 + ], + "libelle_d_acheminement": "VILLEBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44711117486, + 45.8485624628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c330f928883d7ae8e6c482b6113c0376524af29d", + "fields": { + "code_commune_insee": "01446", + "nom_de_la_commune": "VILLENEUVE", + "code_postal": "01480", + "coordonnees_gps": [ + 46.0319048788, + 4.85182526102 + ], + "libelle_d_acheminement": "VILLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85182526102, + 46.0319048788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83572018ee43390ff0d61ceafa3c792c2539fd20", + "fields": { + "code_commune_insee": "01449", + "nom_de_la_commune": "VILLETTE SUR AIN", + "code_postal": "01320", + "coordonnees_gps": [ + 46.0099989032, + 5.25214547187 + ], + "libelle_d_acheminement": "VILLETTE SUR AIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25214547187, + 46.0099989032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaea2f448da5f145c18a651a263f057280349a2e", + "fields": { + "code_commune_insee": "01450", + "nom_de_la_commune": "VILLIEU LOYES MOLLON", + "code_postal": "01800", + "coordonnees_gps": [ + 45.932014998, + 5.22953071636 + ], + "libelle_d_acheminement": "VILLIEU LOYES MOLLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22953071636, + 45.932014998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fe4575f0429fa38c4323506ccb016fe08e03e73", + "fields": { + "ligne_5": "LOCHIEU", + "code_commune_insee": "01453", + "libelle_d_acheminement": "ARVIERE EN VALROMEY", + "code_postal": "01260", + "nom_de_la_commune": "ARVIERE EN VALROMEY", + "coordonnees_gps": [ + 45.9063608209, + 5.73707051523 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73707051523, + 45.9063608209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc5b7ea554024e8e9e171d32710031d7db12a949", + "fields": { + "code_commune_insee": "01457", + "nom_de_la_commune": "VONNAS", + "code_postal": "01540", + "coordonnees_gps": [ + 46.2168871367, + 4.99744373712 + ], + "libelle_d_acheminement": "VONNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99744373712, + 46.2168871367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cca7cc511f80303ca7a61f82463ea59d306eae0", + "fields": { + "code_commune_insee": "02006", + "nom_de_la_commune": "AISONVILLE ET BERNOVILLE", + "code_postal": "02110", + "coordonnees_gps": [ + 49.930148162, + 3.51120205593 + ], + "libelle_d_acheminement": "AISONVILLE ET BERNOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51120205593, + 49.930148162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74388ca768a617f8e4ead0550568a275b8aa6db4", + "fields": { + "code_commune_insee": "02008", + "nom_de_la_commune": "AIZY JOUY", + "code_postal": "02370", + "coordonnees_gps": [ + 49.4384256824, + 3.51149185429 + ], + "libelle_d_acheminement": "AIZY JOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51149185429, + 49.4384256824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc23594b8158fcf723aa4cf4614e9e3ff2e1b9cc", + "fields": { + "code_commune_insee": "02017", + "nom_de_la_commune": "ANGUILCOURT LE SART", + "code_postal": "02800", + "coordonnees_gps": [ + 49.6940879195, + 3.42823182437 + ], + "libelle_d_acheminement": "ANGUILCOURT LE SART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42823182437, + 49.6940879195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cbdc2755f0efd3e3263d655364c4ead0b9ba6bd", + "fields": { + "code_commune_insee": "02019", + "nom_de_la_commune": "ANNOIS", + "code_postal": "02480", + "coordonnees_gps": [ + 49.7210674108, + 3.17611501401 + ], + "libelle_d_acheminement": "ANNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17611501401, + 49.7210674108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dc3c8a2bf26adac10f0b23d40483e24a5395830", + "fields": { + "code_commune_insee": "02021", + "nom_de_la_commune": "ARCHON", + "code_postal": "02360", + "coordonnees_gps": [ + 49.744126618, + 4.11908765808 + ], + "libelle_d_acheminement": "ARCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11908765808, + 49.744126618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a7a992ae2faf2f3d0839e96def42b938db88c35", + "fields": { + "code_commune_insee": "02023", + "nom_de_la_commune": "ARMENTIERES SUR OURCQ", + "code_postal": "02210", + "coordonnees_gps": [ + 49.1734232511, + 3.38789647903 + ], + "libelle_d_acheminement": "ARMENTIERES SUR OURCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38789647903, + 49.1734232511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ddbac18fee28861c92c4f9b43d3f8b91b93dbd0", + "fields": { + "code_commune_insee": "02024", + "nom_de_la_commune": "ARRANCY", + "code_postal": "02860", + "coordonnees_gps": [ + 49.4989016398, + 3.7647230005 + ], + "libelle_d_acheminement": "ARRANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7647230005, + 49.4989016398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5aa276663f168a1d7b284d7ca91dbc10d4ad900", + "fields": { + "code_commune_insee": "02031", + "nom_de_la_commune": "AUBENTON", + "code_postal": "02500", + "coordonnees_gps": [ + 49.8252306759, + 4.19066939985 + ], + "libelle_d_acheminement": "AUBENTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19066939985, + 49.8252306759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99e801994e840ed049257101d7c1cd4a55e1e81a", + "fields": { + "code_commune_insee": "02039", + "nom_de_la_commune": "AUTREMENCOURT", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7051244442, + 3.79419867292 + ], + "libelle_d_acheminement": "AUTREMENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79419867292, + 49.7051244442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7344efaa64c87341e77f9547e6d183af1019e65", + "fields": { + "code_commune_insee": "02040", + "nom_de_la_commune": "AUTREPPES", + "code_postal": "02580", + "coordonnees_gps": [ + 49.8969849321, + 3.85601033505 + ], + "libelle_d_acheminement": "AUTREPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85601033505, + 49.8969849321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "971f030dda17076013ff0f63541f39981ea1822c", + "fields": { + "code_commune_insee": "02054", + "nom_de_la_commune": "BAZOCHES SUR VESLES", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3070586788, + 3.61583126589 + ], + "libelle_d_acheminement": "BAZOCHES SUR VESLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61583126589, + 49.3070586788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6154edc422310d14fddb4582971897405429ea94", + "fields": { + "code_commune_insee": "02059", + "nom_de_la_commune": "BEAUTOR", + "code_postal": "02800", + "coordonnees_gps": [ + 49.648319958, + 3.33811188104 + ], + "libelle_d_acheminement": "BEAUTOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33811188104, + 49.648319958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d03aa62151a7dd2168cad93c34f6ffd9aafc14d9", + "fields": { + "code_commune_insee": "02067", + "nom_de_la_commune": "BERGUES SUR SAMBRE", + "code_postal": "02450", + "coordonnees_gps": [ + 50.0294686238, + 3.711371001 + ], + "libelle_d_acheminement": "BERGUES SUR SAMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.711371001, + 50.0294686238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae0ee704a155f4874260c6055b2a221236b61807", + "fields": { + "code_commune_insee": "02076", + "nom_de_la_commune": "BERTRICOURT", + "code_postal": "02190", + "coordonnees_gps": [ + 49.3975285682, + 4.01146178698 + ], + "libelle_d_acheminement": "BERTRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01146178698, + 49.3975285682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "544125a65bfef323521b67547b8e10df4d7a1862", + "fields": { + "code_commune_insee": "02079", + "nom_de_la_commune": "BESMONT", + "code_postal": "02500", + "coordonnees_gps": [ + 49.823361306, + 4.11768907822 + ], + "libelle_d_acheminement": "BESMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11768907822, + 49.823361306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f443f1de8e2ed4a072010a53aa11be704e77c7a9", + "fields": { + "code_commune_insee": "02094", + "nom_de_la_commune": "BLESMES", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0264919363, + 3.46405474705 + ], + "libelle_d_acheminement": "BLESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46405474705, + 49.0264919363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfe0614d543622d98acc3586ae648f3d0b14d713", + "fields": { + "code_commune_insee": "02097", + "nom_de_la_commune": "BONCOURT", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6264861998, + 3.956447719 + ], + "libelle_d_acheminement": "BONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.956447719, + 49.6264861998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8817f0a0b1231f9ec042e88979d57a6f1f36ec1", + "fields": { + "code_commune_insee": "02104", + "nom_de_la_commune": "BOUFFIGNEREUX", + "code_postal": "02160", + "coordonnees_gps": [ + 49.3788374998, + 3.84626014622 + ], + "libelle_d_acheminement": "BOUFFIGNEREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84626014622, + 49.3788374998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54742d3d6e8398ab342492d873e626b85dd8508f", + "fields": { + "code_commune_insee": "02108", + "nom_de_la_commune": "BOURGUIGNON SOUS MONTBAVIN", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5288056883, + 3.53777236106 + ], + "libelle_d_acheminement": "BOURGUIGNON SOUS MONTBAVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53777236106, + 49.5288056883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bc11077461b960ba24ceec8fd6a9fd0273db91f", + "fields": { + "code_commune_insee": "02111", + "nom_de_la_commune": "BRANCOURT EN LAONNOIS", + "code_postal": "02320", + "coordonnees_gps": [ + 49.5176286609, + 3.41282321335 + ], + "libelle_d_acheminement": "BRANCOURT EN LAONNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41282321335, + 49.5176286609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7515c52ae37d65094608ac64b87fccfd49d88aaa", + "fields": { + "code_commune_insee": "02121", + "nom_de_la_commune": "BRENY", + "code_postal": "02210", + "coordonnees_gps": [ + 49.1842783438, + 3.34972495405 + ], + "libelle_d_acheminement": "BRENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34972495405, + 49.1842783438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f12e116d1b2e1952c3159f364accc53b2c6ac8d9", + "fields": { + "code_commune_insee": "02127", + "nom_de_la_commune": "BRUYERES SUR FERE", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1996571467, + 3.44535846468 + ], + "libelle_d_acheminement": "BRUYERES SUR FERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44535846468, + 49.1996571467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbea660c3d97b938765f35c6fea180c204fa567f", + "fields": { + "code_commune_insee": "02130", + "nom_de_la_commune": "BUCILLY", + "code_postal": "02500", + "coordonnees_gps": [ + 49.8658103548, + 4.09323369949 + ], + "libelle_d_acheminement": "BUCILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09323369949, + 49.8658103548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "895854d8c552b019f09d0c2a44128a2698db1a77", + "fields": { + "code_commune_insee": "02135", + "nom_de_la_commune": "BUIRONFOSSE", + "code_postal": "02620", + "coordonnees_gps": [ + 49.9577111138, + 3.838016082 + ], + "libelle_d_acheminement": "BUIRONFOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.838016082, + 49.9577111138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "268a3424ac1e58eb7104083cc125c0008c94402d", + "fields": { + "code_commune_insee": "02139", + "nom_de_la_commune": "CAILLOUEL CREPIGNY", + "code_postal": "02300", + "coordonnees_gps": [ + 49.6176055636, + 3.12169527347 + ], + "libelle_d_acheminement": "CAILLOUEL CREPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12169527347, + 49.6176055636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f20267bfd894d323d1292c4b8098d0c69d5e8929", + "fields": { + "ligne_5": "LOMBRAY", + "code_commune_insee": "02140", + "libelle_d_acheminement": "CAMELIN", + "code_postal": "02300", + "nom_de_la_commune": "CAMELIN", + "coordonnees_gps": [ + 49.5205248253, + 3.12854853594 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12854853594, + 49.5205248253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bb5a4a417dc2a1f9716a68a84e4119b8f725503", + "fields": { + "code_commune_insee": "02146", + "nom_de_la_commune": "CELLES LES CONDE", + "code_postal": "02330", + "coordonnees_gps": [ + 49.0148161041, + 3.57007423847 + ], + "libelle_d_acheminement": "CELLES LES CONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57007423847, + 49.0148161041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3c6f2526d0bc038f33c6d2e8135c325f987f049", + "fields": { + "code_commune_insee": "02151", + "nom_de_la_commune": "CERNY LES BUCY", + "code_postal": "02870", + "coordonnees_gps": [ + 49.5778658953, + 3.54646763896 + ], + "libelle_d_acheminement": "CERNY LES BUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54646763896, + 49.5778658953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "148350159170073afbbba20406ac1abfadb8b1f2", + "fields": { + "code_commune_insee": "02155", + "nom_de_la_commune": "CHAILLEVOIS", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5081654549, + 3.52234605948 + ], + "libelle_d_acheminement": "CHAILLEVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52234605948, + 49.5081654549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fd13754eacfa66f99ab6c6e2a7cf3aecbec3644", + "fields": { + "code_commune_insee": "02159", + "nom_de_la_commune": "CHAMPS", + "code_postal": "02670", + "coordonnees_gps": [ + 49.5434967943, + 3.2618311238 + ], + "libelle_d_acheminement": "CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2618311238, + 49.5434967943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d47cc8ea4683eb3891510f909537031d1abaf96", + "fields": { + "code_commune_insee": "02163", + "nom_de_la_commune": "CHARLY SUR MARNE", + "code_postal": "02310", + "coordonnees_gps": [ + 48.9898678258, + 3.29365157876 + ], + "libelle_d_acheminement": "CHARLY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29365157876, + 48.9898678258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "445cb103ae6b35a28e9334ba5865821aad33b8ee", + "fields": { + "code_commune_insee": "02172", + "nom_de_la_commune": "CHAUDUN", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3150223009, + 3.25276338247 + ], + "libelle_d_acheminement": "CHAUDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25276338247, + 49.3150223009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ca8ff103baee459793a4f0e6b770dd4749685ab", + "fields": { + "code_commune_insee": "02176", + "nom_de_la_commune": "CHAVONNE", + "code_postal": "02370", + "coordonnees_gps": [ + 49.4073162185, + 3.56243209622 + ], + "libelle_d_acheminement": "CHAVONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56243209622, + 49.4073162185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "211f2004b1d789f83eba4de08e44054faf2add7d", + "fields": { + "code_commune_insee": "02178", + "nom_de_la_commune": "CHERMIZY AILLES", + "code_postal": "02860", + "coordonnees_gps": [ + 49.4629888139, + 3.71995479046 + ], + "libelle_d_acheminement": "CHERMIZY AILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71995479046, + 49.4629888139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d9aea900ed7417cda29f64d7150cc56c3348e0d", + "fields": { + "code_commune_insee": "02180", + "nom_de_la_commune": "CHERY LES POUILLY", + "code_postal": "02000", + "coordonnees_gps": [ + 49.6488389918, + 3.59416271271 + ], + "libelle_d_acheminement": "CHERY LES POUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59416271271, + 49.6488389918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6abe8c0e71c07bb5ba90441635c3bce93ae75b68", + "fields": { + "code_commune_insee": "02182", + "nom_de_la_commune": "CHEVENNES", + "code_postal": "02250", + "coordonnees_gps": [ + 49.818366417, + 3.7371313317 + ], + "libelle_d_acheminement": "CHEVENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7371313317, + 49.818366417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21be24316f79c6c321050b07152a435714bbb740", + "fields": { + "code_commune_insee": "02187", + "nom_de_la_commune": "CHIERRY", + "code_postal": "02400", + "coordonnees_gps": [ + 49.035155356, + 3.43302324278 + ], + "libelle_d_acheminement": "CHIERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43302324278, + 49.035155356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea8b1bf3580a172886a0c245944a5b98f468fd9b", + "fields": { + "code_commune_insee": "02191", + "nom_de_la_commune": "CHIVY LES ETOUVELLES", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5326303582, + 3.58562168803 + ], + "libelle_d_acheminement": "CHIVY LES ETOUVELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58562168803, + 49.5326303582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2706183efa827efdf238f51923a7a4455e968536", + "fields": { + "code_commune_insee": "02192", + "nom_de_la_commune": "CHOUY", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2167334121, + 3.24708004454 + ], + "libelle_d_acheminement": "CHOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24708004454, + 49.2167334121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47c4598ac4bfa7da64c03bc5728884da6dbb1702", + "fields": { + "code_commune_insee": "02194", + "nom_de_la_commune": "CILLY", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7490011958, + 3.84000022806 + ], + "libelle_d_acheminement": "CILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84000022806, + 49.7490011958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb2f883240ff2efb9d11a36310c863568cb915ff", + "fields": { + "code_commune_insee": "02196", + "nom_de_la_commune": "CLACY ET THIERRET", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5524137158, + 3.56557185412 + ], + "libelle_d_acheminement": "CLACY ET THIERRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56557185412, + 49.5524137158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "770b52d3481a5d4f093bc8d4221e4fd6f7765433", + "fields": { + "code_commune_insee": "02204", + "nom_de_la_commune": "COINGT", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7923246397, + 4.09591303887 + ], + "libelle_d_acheminement": "COINGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09591303887, + 49.7923246397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97a521dab50f6186b0e69b9902671c6c20ebc2dd", + "fields": { + "code_commune_insee": "02206", + "nom_de_la_commune": "COLONFAY", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8584586783, + 3.71138683561 + ], + "libelle_d_acheminement": "COLONFAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71138683561, + 49.8584586783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "869dce44983fea53192e6d62b8687df3f80ff289", + "fields": { + "code_commune_insee": "02215", + "nom_de_la_commune": "CORBENY", + "code_postal": "02820", + "coordonnees_gps": [ + 49.4620558975, + 3.82654082441 + ], + "libelle_d_acheminement": "CORBENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82654082441, + 49.4620558975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "308236898ddf46f4bf6cfb9b20abbd43ce645ecd", + "fields": { + "code_commune_insee": "02217", + "nom_de_la_commune": "COUCY LE CHATEAU AUFFRIQUE", + "code_postal": "02380", + "coordonnees_gps": [ + 49.5159709578, + 3.31548892957 + ], + "libelle_d_acheminement": "COUCY LE CHATEAU AUFFRIQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31548892957, + 49.5159709578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72b3227ad0a20f518a017a72a0cd7b75078ba9bc", + "fields": { + "code_commune_insee": "02219", + "nom_de_la_commune": "COUCY LA VILLE", + "code_postal": "02380", + "coordonnees_gps": [ + 49.5405792355, + 3.34372156034 + ], + "libelle_d_acheminement": "COUCY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34372156034, + 49.5405792355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29abcab30c2f23c7ddf4aafddc82f3e5390a0852", + "fields": { + "code_commune_insee": "02231", + "nom_de_la_commune": "COUVRON ET AUMENCOURT", + "code_postal": "02270", + "coordonnees_gps": [ + 49.6458776473, + 3.52446684584 + ], + "libelle_d_acheminement": "COUVRON ET AUMENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52446684584, + 49.6458776473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acda7e61d135e3a6f5517ad6319d8741329ba295", + "fields": { + "code_commune_insee": "02232", + "nom_de_la_commune": "COYOLLES", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2133089693, + 3.01306173751 + ], + "libelle_d_acheminement": "COYOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01306173751, + 49.2133089693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a617c95703dcf8878ebd08ef0119e2224c4e0389", + "fields": { + "code_commune_insee": "02243", + "nom_de_la_commune": "CROUY", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4078535405, + 3.36640020468 + ], + "libelle_d_acheminement": "CROUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36640020468, + 49.4078535405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b266c80b31df4c351dc6fc5c90e369dc6b1b96a", + "fields": { + "code_commune_insee": "02245", + "nom_de_la_commune": "CUFFIES", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4081126802, + 3.32236958826 + ], + "libelle_d_acheminement": "CUFFIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32236958826, + 49.4081126802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55b2752cd5beb351dd14c2918699b4924f067ad4", + "fields": { + "code_commune_insee": "02246", + "nom_de_la_commune": "CUGNY", + "code_postal": "02480", + "coordonnees_gps": [ + 49.7031009123, + 3.15424498862 + ], + "libelle_d_acheminement": "CUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15424498862, + 49.7031009123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2be8dd5e83fe1e474548fd65a5c7e2b9df51c0b", + "fields": { + "code_commune_insee": "02250", + "nom_de_la_commune": "CUIRY LES CHAUDARDES", + "code_postal": "02160", + "coordonnees_gps": [ + 49.3897631676, + 3.76227512623 + ], + "libelle_d_acheminement": "CUIRY LES CHAUDARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76227512623, + 49.3897631676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eef9cf1b98658c590eefdbbb18030df76eb1d1e8", + "fields": { + "code_commune_insee": "02251", + "nom_de_la_commune": "CUIRY LES IVIERS", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7661751176, + 4.10397751712 + ], + "libelle_d_acheminement": "CUIRY LES IVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10397751712, + 49.7661751176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d16e0b9d39e1cd1044a6c1eb9186dfb389a29f6f", + "fields": { + "code_commune_insee": "02257", + "nom_de_la_commune": "DALLON", + "code_postal": "02680", + "coordonnees_gps": [ + 49.8240617542, + 3.23031219742 + ], + "libelle_d_acheminement": "DALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23031219742, + 49.8240617542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2b20af34988006f21fcbe209aa8a42daa1b0845", + "fields": { + "code_commune_insee": "02259", + "nom_de_la_commune": "DAMPLEUX", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2414407733, + 3.14413128827 + ], + "libelle_d_acheminement": "DAMPLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14413128827, + 49.2414407733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8116ec662e16414bfe891fc00619a1d2d96ab68e", + "fields": { + "code_commune_insee": "02264", + "nom_de_la_commune": "DIZY LE GROS", + "code_postal": "02340", + "coordonnees_gps": [ + 49.6355575735, + 4.01312880234 + ], + "libelle_d_acheminement": "DIZY LE GROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01312880234, + 49.6355575735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "037e26c4b208e6357cb3dbfbe1c2a37e207dfe10", + "fields": { + "code_commune_insee": "02266", + "nom_de_la_commune": "DOLIGNON", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7338298517, + 4.08637882793 + ], + "libelle_d_acheminement": "DOLIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08637882793, + 49.7338298517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26c9a417ee10dc9829f009949b62bd94321c4234", + "fields": { + "code_commune_insee": "02267", + "nom_de_la_commune": "DOMMIERS", + "code_postal": "02600", + "coordonnees_gps": [ + 49.3290731499, + 3.21634686939 + ], + "libelle_d_acheminement": "DOMMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21634686939, + 49.3290731499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f10072fd815c6703633c29f52931d67955401cc0", + "fields": { + "code_commune_insee": "02269", + "nom_de_la_commune": "DORENGT", + "code_postal": "02450", + "coordonnees_gps": [ + 49.9652064178, + 3.7033753973 + ], + "libelle_d_acheminement": "DORENGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7033753973, + 49.9652064178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8de1b1c4232b5eb5db093846a0eea2d53f9ad88c", + "fields": { + "code_commune_insee": "02275", + "nom_de_la_commune": "EFFRY", + "code_postal": "02500", + "coordonnees_gps": [ + 49.9191180654, + 3.98790173223 + ], + "libelle_d_acheminement": "EFFRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98790173223, + 49.9191180654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7715b83bb2769443e488c2d2c0051bf49210b3eb", + "fields": { + "code_commune_insee": "02281", + "nom_de_la_commune": "L EPINE AUX BOIS", + "code_postal": "02540", + "coordonnees_gps": [ + 48.8992804015, + 3.44384138078 + ], + "libelle_d_acheminement": "L EPINE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44384138078, + 48.8992804015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec46bd509306f649e38fd26f7dad72c271526492", + "fields": { + "code_commune_insee": "02283", + "nom_de_la_commune": "ERLON", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7348278249, + 3.70534450333 + ], + "libelle_d_acheminement": "ERLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70534450333, + 49.7348278249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "625003979ebab3b1b09a410c03ffa321729e0c6f", + "fields": { + "code_commune_insee": "02290", + "nom_de_la_commune": "ESSOMES SUR MARNE", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0341132047, + 3.34014174183 + ], + "libelle_d_acheminement": "ESSOMES SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34014174183, + 49.0341132047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fba9eb4f4fc00466fa771cb32c6da9c21e91766d", + "fields": { + "code_commune_insee": "02298", + "nom_de_la_commune": "ETREUX", + "code_postal": "02510", + "coordonnees_gps": [ + 49.9996010721, + 3.65890491685 + ], + "libelle_d_acheminement": "ETREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65890491685, + 49.9996010721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c35e348b894f8c476dd934675f983e5c0ae2724", + "fields": { + "code_commune_insee": "02304", + "nom_de_la_commune": "LA FERE", + "code_postal": "02800", + "coordonnees_gps": [ + 49.6662828073, + 3.36938834693 + ], + "libelle_d_acheminement": "LA FERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36938834693, + 49.6662828073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02bad33a898e699bd461d3c5c6e01a8640b774a1", + "fields": { + "code_commune_insee": "02309", + "nom_de_la_commune": "FESTIEUX", + "code_postal": "02840", + "coordonnees_gps": [ + 49.5252642949, + 3.76013631694 + ], + "libelle_d_acheminement": "FESTIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76013631694, + 49.5252642949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0a26dbc0d2f69bbbb56a17125a64e69d2e9ff19", + "fields": { + "code_commune_insee": "02313", + "nom_de_la_commune": "FLAVIGNY LE GRAND ET BEAURAIN", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8865505663, + 3.67406409367 + ], + "libelle_d_acheminement": "FLAVIGNY LE GRAND ET BEAURAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67406409367, + 49.8865505663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a5bd986ff86bf728d96b2e9a9ad6e9e202a8d13", + "fields": { + "code_commune_insee": "02320", + "nom_de_la_commune": "FONTAINE LES CLERCS", + "code_postal": "02680", + "coordonnees_gps": [ + 49.8078439274, + 3.21253412905 + ], + "libelle_d_acheminement": "FONTAINE LES CLERCS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21253412905, + 49.8078439274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f16a681200e238c1968522a41b54e3b1908cac4", + "fields": { + "code_commune_insee": "02322", + "nom_de_la_commune": "FONTAINE NOTRE DAME", + "code_postal": "02110", + "coordonnees_gps": [ + 49.8785724713, + 3.42380596752 + ], + "libelle_d_acheminement": "FONTAINE NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42380596752, + 49.8785724713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f63cfd1005d99089bba079c31444d069702c1218", + "fields": { + "code_commune_insee": "02327", + "nom_de_la_commune": "FORESTE", + "code_postal": "02590", + "coordonnees_gps": [ + 49.8055794029, + 3.09615936707 + ], + "libelle_d_acheminement": "FORESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09615936707, + 49.8055794029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9ce3f2d65b8972f4c42ca9a8a22b0d713e951f0", + "fields": { + "code_commune_insee": "02328", + "nom_de_la_commune": "FOSSOY", + "code_postal": "02650", + "coordonnees_gps": [ + 49.044990122, + 3.48523126715 + ], + "libelle_d_acheminement": "FOSSOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48523126715, + 49.044990122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6afcba2bc58ffb4015528b28c9a77f9c0b630b25", + "fields": { + "code_commune_insee": "02331", + "nom_de_la_commune": "FRANQUEVILLE", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8164125588, + 3.79770261738 + ], + "libelle_d_acheminement": "FRANQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79770261738, + 49.8164125588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65bf5c7257cd472f54ec2e37db18a132ae40fba2", + "fields": { + "code_commune_insee": "02337", + "nom_de_la_commune": "FROIDESTREES", + "code_postal": "02260", + "coordonnees_gps": [ + 49.9427092508, + 3.91032175248 + ], + "libelle_d_acheminement": "FROIDESTREES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91032175248, + 49.9427092508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa044cce20e1954030d9445688dfac4273dbe50f", + "fields": { + "code_commune_insee": "02338", + "nom_de_la_commune": "FROIDMONT COHARTILLE", + "code_postal": "02270", + "coordonnees_gps": [ + 49.6818768902, + 3.72070844849 + ], + "libelle_d_acheminement": "FROIDMONT COHARTILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72070844849, + 49.6818768902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05c2fb46ed0dc2e82710b932334583277a7dc677", + "fields": { + "code_commune_insee": "02341", + "nom_de_la_commune": "GERCY", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8158108138, + 3.87133277309 + ], + "libelle_d_acheminement": "GERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87133277309, + 49.8158108138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21b97af06a70d0ca2d8e2cf5ed8fe72de56b3d46", + "fields": { + "code_commune_insee": "02352", + "nom_de_la_commune": "GOUY", + "code_postal": "02420", + "coordonnees_gps": [ + 49.9987486908, + 3.26458305638 + ], + "libelle_d_acheminement": "GOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26458305638, + 49.9987486908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8105d2e17351d4532ee24d4cd5e821584e1e150", + "fields": { + "code_commune_insee": "02357", + "nom_de_la_commune": "GRONARD", + "code_postal": "02140", + "coordonnees_gps": [ + 49.7963196915, + 3.88176918551 + ], + "libelle_d_acheminement": "GRONARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88176918551, + 49.7963196915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6a06d65dcba270a3ad3117702626f05c2d30c2c", + "fields": { + "code_commune_insee": "02358", + "nom_de_la_commune": "GROUGIS", + "code_postal": "02110", + "coordonnees_gps": [ + 49.9508110437, + 3.53098081744 + ], + "libelle_d_acheminement": "GROUGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53098081744, + 49.9508110437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1c2f28cd0d2509fd6c8f524af3e2c85e75fb771", + "fields": { + "code_commune_insee": "02359", + "nom_de_la_commune": "GRUGIES", + "code_postal": "02680", + "coordonnees_gps": [ + 49.8100941328, + 3.2751623814 + ], + "libelle_d_acheminement": "GRUGIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2751623814, + 49.8100941328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b0231362269aa22a2b473b6e42ba669545e3683", + "fields": { + "code_commune_insee": "02371", + "nom_de_la_commune": "HARLY", + "code_postal": "02100", + "coordonnees_gps": [ + 49.8407051764, + 3.33484724239 + ], + "libelle_d_acheminement": "HARLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33484724239, + 49.8407051764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5c66275955f93cd115b6359b3a401b7a89b2079", + "fields": { + "code_commune_insee": "02383", + "nom_de_la_commune": "HOMBLIERES", + "code_postal": "02720", + "coordonnees_gps": [ + 49.8577543083, + 3.37495127984 + ], + "libelle_d_acheminement": "HOMBLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37495127984, + 49.8577543083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06548932399140ab5a0a9b23601126b2f6a921c3", + "fields": { + "code_commune_insee": "02384", + "nom_de_la_commune": "HOURY", + "code_postal": "02140", + "coordonnees_gps": [ + 49.7861780633, + 3.84806416077 + ], + "libelle_d_acheminement": "HOURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84806416077, + 49.7861780633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68d150e4963a2f73a5edb1c42a84b9849bf8e718", + "fields": { + "code_commune_insee": "02386", + "nom_de_la_commune": "IRON", + "code_postal": "02510", + "coordonnees_gps": [ + 49.9504309458, + 3.6652978953 + ], + "libelle_d_acheminement": "IRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6652978953, + 49.9504309458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9c4901044a212b50194c3cc0fd64810a38e7c2c", + "fields": { + "code_commune_insee": "02387", + "nom_de_la_commune": "ITANCOURT", + "code_postal": "02240", + "coordonnees_gps": [ + 49.803442885, + 3.34942752527 + ], + "libelle_d_acheminement": "ITANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34942752527, + 49.803442885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bea58771dad5bd73def95a9f6e7fb50dcdf5c8f", + "fields": { + "code_commune_insee": "02388", + "nom_de_la_commune": "IVIERS", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7858863872, + 4.13552902559 + ], + "libelle_d_acheminement": "IVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13552902559, + 49.7858863872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce672ab4eca98ef3ba0a1cdf9e9eae614207b249", + "fields": { + "code_commune_insee": "02389", + "nom_de_la_commune": "JAULGONNE", + "code_postal": "02850", + "coordonnees_gps": [ + 49.0895236955, + 3.53359601877 + ], + "libelle_d_acheminement": "JAULGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53359601877, + 49.0895236955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0412b25ccede6a077d879edf34cf69e8a231b81", + "fields": { + "code_commune_insee": "02401", + "nom_de_la_commune": "LAIGNY", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8631466398, + 3.86133626518 + ], + "libelle_d_acheminement": "LAIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86133626518, + 49.8631466398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33df9e38b46a8e0fe1071b1ee4fe6a8bf14d4dcf", + "fields": { + "code_commune_insee": "02403", + "nom_de_la_commune": "LANDIFAY ET BERTAIGNEMONT", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8255553996, + 3.60399989958 + ], + "libelle_d_acheminement": "LANDIFAY ET BERTAIGNEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60399989958, + 49.8255553996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47ca7d0f044c494767772e04e5a3597651325bd5", + "fields": { + "code_commune_insee": "02405", + "nom_de_la_commune": "LANDOUZY LA VILLE", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8562890185, + 4.05045506584 + ], + "libelle_d_acheminement": "LANDOUZY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05045506584, + 49.8562890185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f13114707669792439ce7b5cdd150205936580e5", + "fields": { + "code_commune_insee": "02415", + "nom_de_la_commune": "LAVERSINE", + "code_postal": "02600", + "coordonnees_gps": [ + 49.3528718857, + 3.15459651522 + ], + "libelle_d_acheminement": "LAVERSINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15459651522, + 49.3528718857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13a809fc5c9d29715d150f8af9988248c9832f14", + "fields": { + "code_commune_insee": "02424", + "nom_de_la_commune": "LEURY", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4269529918, + 3.34130922178 + ], + "libelle_d_acheminement": "LEURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34130922178, + 49.4269529918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a127dd03e02b767f3da3197405f8a7d3bf6981bc", + "fields": { + "code_commune_insee": "02425", + "nom_de_la_commune": "LEUZE", + "code_postal": "02500", + "coordonnees_gps": [ + 49.8578215993, + 4.16963845435 + ], + "libelle_d_acheminement": "LEUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16963845435, + 49.8578215993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa57a04ea5b2b73b69e20c3e6a7946f76681c0ec", + "fields": { + "code_commune_insee": "02426", + "nom_de_la_commune": "LEVERGIES", + "code_postal": "02420", + "coordonnees_gps": [ + 49.9345380686, + 3.31185579217 + ], + "libelle_d_acheminement": "LEVERGIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31185579217, + 49.9345380686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50bedcb35b83e326bff2f8fcad94c67e4ece0ae7", + "fields": { + "code_commune_insee": "02427", + "nom_de_la_commune": "LHUYS", + "code_postal": "02220", + "coordonnees_gps": [ + 49.2728528048, + 3.54230635286 + ], + "libelle_d_acheminement": "LHUYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54230635286, + 49.2728528048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab41827e6dbe95c6e7f3c611049147d5bffa0ed0", + "fields": { + "code_commune_insee": "02428", + "nom_de_la_commune": "LICY CLIGNON", + "code_postal": "02810", + "coordonnees_gps": [ + 49.102123319, + 3.26534900839 + ], + "libelle_d_acheminement": "LICY CLIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26534900839, + 49.102123319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7732263dddcb1c4199155ef5f262bed2a7d52e9e", + "fields": { + "code_commune_insee": "02429", + "nom_de_la_commune": "LIERVAL", + "code_postal": "02860", + "coordonnees_gps": [ + 49.4874867517, + 3.62227691789 + ], + "libelle_d_acheminement": "LIERVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62227691789, + 49.4874867517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a89bdf4d4a11482555be4a777a23efaff79aaa24", + "fields": { + "code_commune_insee": "02431", + "nom_de_la_commune": "LIEZ", + "code_postal": "02700", + "coordonnees_gps": [ + 49.6923509874, + 3.30017368966 + ], + "libelle_d_acheminement": "LIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30017368966, + 49.6923509874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1789a4721726e5b62b03a4c86ab23ea132a1713e", + "fields": { + "code_commune_insee": "02443", + "nom_de_la_commune": "LUCY LE BOCAGE", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0549612755, + 3.27616704555 + ], + "libelle_d_acheminement": "LUCY LE BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27616704555, + 49.0549612755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e01a463849035a119568482b7f1c3e6045e56710", + "fields": { + "code_commune_insee": "02445", + "nom_de_la_commune": "LUZOIR", + "code_postal": "02500", + "coordonnees_gps": [ + 49.9271348987, + 3.96025090337 + ], + "libelle_d_acheminement": "LUZOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96025090337, + 49.9271348987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7db74cf546242b7a46b4d167b421351e04ce95ef", + "fields": { + "ligne_5": "FONTENELLE EN BRIE", + "code_commune_insee": "02458", + "libelle_d_acheminement": "DHUYS ET MORIN EN BRIE", + "code_postal": "02540", + "nom_de_la_commune": "DHUYS ET MORIN EN BRIE", + "coordonnees_gps": [ + 48.8935786183, + 3.49268121283 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49268121283, + 48.8935786183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afb9b9d82f79edebdd9271366974348611326633", + "fields": { + "code_commune_insee": "02464", + "nom_de_la_commune": "MARGIVAL", + "code_postal": "02880", + "coordonnees_gps": [ + 49.432719029, + 3.40572977303 + ], + "libelle_d_acheminement": "MARGIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40572977303, + 49.432719029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a0b9e15a5ebdb448308b30e1746c0c2590819fb", + "fields": { + "code_commune_insee": "02472", + "nom_de_la_commune": "MAUREGNY EN HAYE", + "code_postal": "02820", + "coordonnees_gps": [ + 49.5406230877, + 3.79762834314 + ], + "libelle_d_acheminement": "MAUREGNY EN HAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79762834314, + 49.5406230877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db822bab360f4290ff90ef6a4f30d2e2ba403e71", + "fields": { + "code_commune_insee": "02478", + "nom_de_la_commune": "MERLIEUX ET FOUQUEROLLES", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5137172169, + 3.49932983224 + ], + "libelle_d_acheminement": "MERLIEUX ET FOUQUEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49932983224, + 49.5137172169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b78f241fdebffb99ae6012f9a3bd0d9fe7f3f99", + "fields": { + "code_commune_insee": "02482", + "nom_de_la_commune": "MEURIVAL", + "code_postal": "02160", + "coordonnees_gps": [ + 49.3567698663, + 3.7590616765 + ], + "libelle_d_acheminement": "MEURIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7590616765, + 49.3567698663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26d463276e14ba8131e8786dd7e28c734c67c973", + "fields": { + "code_commune_insee": "02490", + "nom_de_la_commune": "MONAMPTEUIL", + "code_postal": "02000", + "coordonnees_gps": [ + 49.4760084468, + 3.57360176783 + ], + "libelle_d_acheminement": "MONAMPTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57360176783, + 49.4760084468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76fc1c7534e4497d198c15bc0128543e7ba0da0d", + "fields": { + "code_commune_insee": "02498", + "nom_de_la_commune": "MONTAIGU", + "code_postal": "02820", + "coordonnees_gps": [ + 49.5531328831, + 3.84439779259 + ], + "libelle_d_acheminement": "MONTAIGU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84439779259, + 49.5531328831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e516899a92cf6211b154f4ab8c565a2c8295f306", + "fields": { + "code_commune_insee": "02503", + "nom_de_la_commune": "MONT D ORIGNY", + "code_postal": "02390", + "coordonnees_gps": [ + 49.8514997521, + 3.52673568406 + ], + "libelle_d_acheminement": "MONT D ORIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52673568406, + 49.8514997521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d893dfe47b83c588b7d3b94d80f2fe7d7847934", + "fields": { + "code_commune_insee": "02516", + "nom_de_la_commune": "MONTIGNY SOUS MARLE", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7411090858, + 3.80397947574 + ], + "libelle_d_acheminement": "MONTIGNY SOUS MARLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80397947574, + 49.7411090858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "763f4321a07c29788a31e1bbeffca0e48d54ddad", + "fields": { + "code_commune_insee": "02520", + "nom_de_la_commune": "MONT NOTRE DAME", + "code_postal": "02220", + "coordonnees_gps": [ + 49.2921467742, + 3.5821661713 + ], + "libelle_d_acheminement": "MONT NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5821661713, + 49.2921467742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9686df792fb2fa975e70eaa33979764be995fa22", + "fields": { + "code_commune_insee": "02523", + "nom_de_la_commune": "MONT ST MARTIN", + "code_postal": "02220", + "coordonnees_gps": [ + 49.2747967442, + 3.64275042996 + ], + "libelle_d_acheminement": "MONT ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64275042996, + 49.2747967442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d9258de663ef1596a882c2ba1c79de15bdf0801", + "fields": { + "code_commune_insee": "02524", + "nom_de_la_commune": "MONT ST PERE", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0816980947, + 3.47715449247 + ], + "libelle_d_acheminement": "MONT ST PERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47715449247, + 49.0816980947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "059fe281dd878ff617acc351ecf4b09b2a10b3e6", + "fields": { + "code_commune_insee": "02526", + "nom_de_la_commune": "MORGNY EN THIERACHE", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7544947391, + 4.07631392389 + ], + "libelle_d_acheminement": "MORGNY EN THIERACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07631392389, + 49.7544947391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22ffe1ec82c30f7a0bd4fa8ebd15959943e56ffb", + "fields": { + "code_commune_insee": "02532", + "nom_de_la_commune": "MOY DE L AISNE", + "code_postal": "02610", + "coordonnees_gps": [ + 49.750274961, + 3.35100553228 + ], + "libelle_d_acheminement": "MOY DE L AISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35100553228, + 49.750274961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb3083d6937430f015170feb1ec2d2f8f41b31aa", + "fields": { + "code_commune_insee": "02534", + "nom_de_la_commune": "MUSCOURT", + "code_postal": "02160", + "coordonnees_gps": [ + 49.3595795698, + 3.74350239233 + ], + "libelle_d_acheminement": "MUSCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74350239233, + 49.3595795698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a54dfc9a3100eeefd94b819a6dcd82b59b22ba1", + "fields": { + "code_commune_insee": "02539", + "nom_de_la_commune": "NAUROY", + "code_postal": "02420", + "coordonnees_gps": [ + 49.9508154668, + 3.25861980976 + ], + "libelle_d_acheminement": "NAUROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25861980976, + 49.9508154668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6734c579f4aceeb3316c224d0c264126565d83cc", + "fields": { + "code_commune_insee": "02543", + "nom_de_la_commune": "NEUILLY ST FRONT", + "code_postal": "02470", + "coordonnees_gps": [ + 49.1626366671, + 3.26436269893 + ], + "libelle_d_acheminement": "NEUILLY ST FRONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26436269893, + 49.1626366671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bf97aa2ed9dd8e263ff2c5f163637d334aa0a71", + "fields": { + "code_commune_insee": "02544", + "nom_de_la_commune": "NEUVE MAISON", + "code_postal": "02500", + "coordonnees_gps": [ + 49.9286429779, + 4.04086730255 + ], + "libelle_d_acheminement": "NEUVE MAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04086730255, + 49.9286429779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e972205ae2798aa7f02b8bfa46f37e307c38838b", + "fields": { + "code_commune_insee": "02546", + "nom_de_la_commune": "LA NEUVILLE EN BEINE", + "code_postal": "02300", + "coordonnees_gps": [ + 49.6762298475, + 3.15600362361 + ], + "libelle_d_acheminement": "LA NEUVILLE EN BEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15600362361, + 49.6762298475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90bfc79f066580787fd9848fa46d06c4561979fb", + "fields": { + "code_commune_insee": "02553", + "nom_de_la_commune": "NIZY LE COMTE", + "code_postal": "02150", + "coordonnees_gps": [ + 49.574361853, + 4.03064818206 + ], + "libelle_d_acheminement": "NIZY LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03064818206, + 49.574361853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "728dc22628af3abb169ea22ad739758849ed7173", + "fields": { + "code_commune_insee": "02557", + "nom_de_la_commune": "NOROY SUR OURCQ", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2041824443, + 3.20698565652 + ], + "libelle_d_acheminement": "NOROY SUR OURCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20698565652, + 49.2041824443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbbee4028825c3a45bc5e8c507fcff1e8fdaf2b7", + "fields": { + "code_commune_insee": "02566", + "nom_de_la_commune": "OGNES", + "code_postal": "02300", + "coordonnees_gps": [ + 49.6136864694, + 3.19142372904 + ], + "libelle_d_acheminement": "OGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19142372904, + 49.6136864694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "623ee25a88a4fa0ea872f61d9e3e31c184eea180", + "fields": { + "code_commune_insee": "02568", + "nom_de_la_commune": "OIGNY EN VALOIS", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2137237953, + 3.1302728623 + ], + "libelle_d_acheminement": "OIGNY EN VALOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1302728623, + 49.2137237953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b7748c3a35132738699333a59bd319b833ea806", + "fields": { + "code_commune_insee": "02572", + "nom_de_la_commune": "ORAINVILLE", + "code_postal": "02190", + "coordonnees_gps": [ + 49.3759679828, + 4.01565856496 + ], + "libelle_d_acheminement": "ORAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01565856496, + 49.3759679828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "569c4a947c7417856234c9c0278718528a421525", + "fields": { + "ligne_5": "CUGNY LES CROUTTES", + "code_commune_insee": "02580", + "libelle_d_acheminement": "OULCHY LE CHATEAU", + "code_postal": "02210", + "nom_de_la_commune": "OULCHY LE CHATEAU", + "coordonnees_gps": [ + 49.2070701806, + 3.38202413773 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38202413773, + 49.2070701806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3478b198bef26aa7119f5012b0123cab328f5849", + "fields": { + "code_commune_insee": "02581", + "nom_de_la_commune": "PAARS", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3302779346, + 3.60267922049 + ], + "libelle_d_acheminement": "PAARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60267922049, + 49.3302779346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd61f2dd0a7cb4434bc747c547e45806f5a86be0", + "fields": { + "code_commune_insee": "02583", + "nom_de_la_commune": "PANCY COURTECON", + "code_postal": "02860", + "coordonnees_gps": [ + 49.4606885919, + 3.64987795196 + ], + "libelle_d_acheminement": "PANCY COURTECON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64987795196, + 49.4606885919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5959ad33ead8bc2598ab8bf6b62a66db1d8d0c98", + "fields": { + "code_commune_insee": "02586", + "nom_de_la_commune": "PARFONDEVAL", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7443573688, + 4.16145285338 + ], + "libelle_d_acheminement": "PARFONDEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16145285338, + 49.7443573688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eabfb9af9b966932861f280109abe1bcb50d023", + "fields": { + "code_commune_insee": "02594", + "nom_de_la_commune": "PASSY EN VALOIS", + "code_postal": "02470", + "coordonnees_gps": [ + 49.1621618332, + 3.18418881622 + ], + "libelle_d_acheminement": "PASSY EN VALOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18418881622, + 49.1621618332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2f2657a476e9fff95df89bf597f7609a4f3888b", + "fields": { + "code_commune_insee": "02595", + "nom_de_la_commune": "PASSY SUR MARNE", + "code_postal": "02850", + "coordonnees_gps": [ + 49.0663377762, + 3.57438808256 + ], + "libelle_d_acheminement": "PASSY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57438808256, + 49.0663377762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d41997891e75f6334e429692bd7af0f45d475d2", + "fields": { + "code_commune_insee": "02596", + "nom_de_la_commune": "PAVANT", + "code_postal": "02310", + "coordonnees_gps": [ + 48.9528924605, + 3.28390382889 + ], + "libelle_d_acheminement": "PAVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28390382889, + 48.9528924605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "763c420cdc36899e02bd29ade39a97307dca06fa", + "fields": { + "code_commune_insee": "02601", + "nom_de_la_commune": "PIGNICOURT", + "code_postal": "02190", + "coordonnees_gps": [ + 49.4091910952, + 4.0300596148 + ], + "libelle_d_acheminement": "PIGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0300596148, + 49.4091910952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ff748331ed4664921d15dee78504ac97215000f", + "fields": { + "code_commune_insee": "02606", + "nom_de_la_commune": "LE PLESSIER HULEU", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2388752756, + 3.34814266149 + ], + "libelle_d_acheminement": "LE PLESSIER HULEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34814266149, + 49.2388752756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79866cc658c78319738289c8734fa829798b987e", + "fields": { + "code_commune_insee": "02613", + "nom_de_la_commune": "PONTAVERT", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4176198194, + 3.82051815377 + ], + "libelle_d_acheminement": "PONTAVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82051815377, + 49.4176198194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c72d0da71adc5654a676aaac187ca76c43a9b87", + "fields": { + "code_commune_insee": "02616", + "nom_de_la_commune": "PONT ST MARD", + "code_postal": "02380", + "coordonnees_gps": [ + 49.493979148, + 3.27934093822 + ], + "libelle_d_acheminement": "PONT ST MARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27934093822, + 49.493979148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31e1e56b3dc3944d5181f6e43f41791e1a9f39c9", + "fields": { + "code_commune_insee": "02628", + "nom_de_la_commune": "PUISEUX EN RETZ", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2925861417, + 3.13448879571 + ], + "libelle_d_acheminement": "PUISEUX EN RETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13448879571, + 49.2925861417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a78805a3e4ec595c74863e6b499da0b84450b9c5", + "fields": { + "code_commune_insee": "02633", + "nom_de_la_commune": "QUINCY SOUS LE MONT", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3082323924, + 3.55906421912 + ], + "libelle_d_acheminement": "QUINCY SOUS LE MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55906421912, + 49.3082323924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e551d7d646d2b83a5e9859050fa08ae8c8a5e995", + "fields": { + "code_commune_insee": "02640", + "nom_de_la_commune": "RENANSART", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7340931411, + 3.45338513198 + ], + "libelle_d_acheminement": "RENANSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45338513198, + 49.7340931411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d82e5fe99491fe162dd52e895d92976c7ab71c68", + "fields": { + "code_commune_insee": "02642", + "nom_de_la_commune": "RESIGNY", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7413860683, + 4.21000271409 + ], + "libelle_d_acheminement": "RESIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21000271409, + 49.7413860683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44ca49faabeed08a54bc07367cb963425e6d1229", + "fields": { + "code_commune_insee": "02644", + "nom_de_la_commune": "RETHEUIL", + "code_postal": "02600", + "coordonnees_gps": [ + 49.318909114, + 3.00378064988 + ], + "libelle_d_acheminement": "RETHEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00378064988, + 49.318909114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7546e5d3bc8b88985d3b01ee0fb3c71b4928c73c", + "fields": { + "code_commune_insee": "02650", + "nom_de_la_commune": "ROCQUIGNY", + "code_postal": "02260", + "coordonnees_gps": [ + 50.0193341952, + 3.97342250903 + ], + "libelle_d_acheminement": "ROCQUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97342250903, + 50.0193341952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac28c4ea0521b8161e1c2ed66f49e1f1d577b2f6", + "fields": { + "code_commune_insee": "02656", + "nom_de_la_commune": "ROUCY", + "code_postal": "02160", + "coordonnees_gps": [ + 49.3745878159, + 3.82024502091 + ], + "libelle_d_acheminement": "ROUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82024502091, + 49.3745878159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebb7a47a46cb026ad75f69e06b54d00d7e00dfcb", + "fields": { + "code_commune_insee": "02659", + "nom_de_la_commune": "ROUVROY", + "code_postal": "02100", + "coordonnees_gps": [ + 49.8579447094, + 3.33298681219 + ], + "libelle_d_acheminement": "ROUVROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33298681219, + 49.8579447094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4e43f75d9e2fddde89231b88cca0a64dd81d382", + "fields": { + "code_commune_insee": "02660", + "nom_de_la_commune": "ROUVROY SUR SERRE", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7153670931, + 4.17597798145 + ], + "libelle_d_acheminement": "ROUVROY SUR SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17597798145, + 49.7153670931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62e6a2ee4b18284b27d72ce1f10d00b037c448b9", + "fields": { + "code_commune_insee": "02662", + "nom_de_la_commune": "ROZET ST ALBIN", + "code_postal": "02210", + "coordonnees_gps": [ + 49.1982180685, + 3.29738760461 + ], + "libelle_d_acheminement": "ROZET ST ALBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29738760461, + 49.1982180685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88ab7c04394b2467df008550373e03d634d8d30b", + "fields": { + "code_commune_insee": "02664", + "nom_de_la_commune": "ROZOY BELLEVALLE", + "code_postal": "02540", + "coordonnees_gps": [ + 48.9244622578, + 3.45003603667 + ], + "libelle_d_acheminement": "ROZOY BELLEVALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45003603667, + 48.9244622578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d13d16c9a2245c4f3aa594d5582eea0fea7eb21e", + "fields": { + "code_commune_insee": "02671", + "nom_de_la_commune": "ST AUBIN", + "code_postal": "02300", + "coordonnees_gps": [ + 49.5099540337, + 3.18837580055 + ], + "libelle_d_acheminement": "ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18837580055, + 49.5099540337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1ec90a2d229fe1809183c07cb34a5383f81ba24", + "fields": { + "code_commune_insee": "02679", + "nom_de_la_commune": "ST GENGOULPH", + "code_postal": "02810", + "coordonnees_gps": [ + 49.1189499126, + 3.21526676033 + ], + "libelle_d_acheminement": "ST GENGOULPH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21526676033, + 49.1189499126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "529156c4fa214a59d8e49de4de63c602f45c88a6", + "fields": { + "code_commune_insee": "02684", + "nom_de_la_commune": "ST MICHEL", + "code_postal": "02830", + "coordonnees_gps": [ + 49.9259700696, + 4.15288229364 + ], + "libelle_d_acheminement": "ST MICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15288229364, + 49.9259700696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "149be392d26794e91eac84651b8ea0c19c202edc", + "fields": { + "code_commune_insee": "02689", + "nom_de_la_commune": "ST PIERREMONT", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7138800989, + 3.8761235335 + ], + "libelle_d_acheminement": "ST PIERREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8761235335, + 49.7138800989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea703d7016d567ed9faa8b4b7acd7693d825b408", + "fields": { + "code_commune_insee": "02696", + "nom_de_la_commune": "ST THOMAS", + "code_postal": "02820", + "coordonnees_gps": [ + 49.5014100438, + 3.81925378492 + ], + "libelle_d_acheminement": "ST THOMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81925378492, + 49.5014100438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c165edd7658e2bd4b07a89085ffa5b2533bde38c", + "fields": { + "code_commune_insee": "02697", + "nom_de_la_commune": "SAMOUSSY", + "code_postal": "02840", + "coordonnees_gps": [ + 49.5868706589, + 3.74329094453 + ], + "libelle_d_acheminement": "SAMOUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74329094453, + 49.5868706589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2995f3733b37cfa43dc06d9ec95a1070d4b5d293", + "fields": { + "code_commune_insee": "02702", + "nom_de_la_commune": "SAVY", + "code_postal": "02590", + "coordonnees_gps": [ + 49.8343646886, + 3.19764190963 + ], + "libelle_d_acheminement": "SAVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19764190963, + 49.8343646886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8773ed77152e1e05298bfaace344029c5c7054f6", + "fields": { + "code_commune_insee": "02706", + "nom_de_la_commune": "SEPTMONTS", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3384597812, + 3.36210276584 + ], + "libelle_d_acheminement": "SEPTMONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36210276584, + 49.3384597812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5a2c501ff260e9f3e97a43677cf1e337727f47d", + "fields": { + "code_commune_insee": "02707", + "nom_de_la_commune": "SEPTVAUX", + "code_postal": "02410", + "coordonnees_gps": [ + 49.5697880929, + 3.38679579518 + ], + "libelle_d_acheminement": "SEPTVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38679579518, + 49.5697880929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2102610d644dfa3ddb08b262790a37406711f98f", + "fields": { + "code_commune_insee": "02708", + "nom_de_la_commune": "SEQUEHART", + "code_postal": "02420", + "coordonnees_gps": [ + 49.9320260511, + 3.34096519199 + ], + "libelle_d_acheminement": "SEQUEHART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34096519199, + 49.9320260511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be034d9fe381f51e040df7b6ec768d1edaddc563", + "fields": { + "code_commune_insee": "02712", + "nom_de_la_commune": "SERGY", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1828178666, + 3.57092215608 + ], + "libelle_d_acheminement": "SERGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57092215608, + 49.1828178666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14faf71d0dc99a6ca0c1456433302aca651e439a", + "fields": { + "code_commune_insee": "02729", + "nom_de_la_commune": "SOUCY", + "code_postal": "02600", + "coordonnees_gps": [ + 49.3209750175, + 3.12324909086 + ], + "libelle_d_acheminement": "SOUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12324909086, + 49.3209750175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c588943b223d2db584b63e367b75189f1f49ead9", + "fields": { + "code_commune_insee": "02738", + "nom_de_la_commune": "TERGNIER", + "code_postal": "02700", + "coordonnees_gps": [ + 49.6572646109, + 3.29924077478 + ], + "libelle_d_acheminement": "TERGNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29924077478, + 49.6572646109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30d2706063351eb43dbb347c6c53344fc18fdbe1", + "fields": { + "code_commune_insee": "02740", + "nom_de_la_commune": "THENAILLES", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8149576709, + 3.95232479493 + ], + "libelle_d_acheminement": "THENAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95232479493, + 49.8149576709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2baf14d73245d9ca0b9c10ab5777097e07e452e", + "fields": { + "code_commune_insee": "02742", + "nom_de_la_commune": "THIERNU", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7649515663, + 3.77987535834 + ], + "libelle_d_acheminement": "THIERNU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77987535834, + 49.7649515663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdaee8970b703b2b7047779b7710798f4ef36051", + "fields": { + "code_commune_insee": "02745", + "nom_de_la_commune": "TOULIS ET ATTENCOURT", + "code_postal": "02250", + "coordonnees_gps": [ + 49.6970260523, + 3.75052883427 + ], + "libelle_d_acheminement": "TOULIS ET ATTENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75052883427, + 49.6970260523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b28fcd25320cd998a95f213c39783e7ea58b220", + "fields": { + "code_commune_insee": "02756", + "nom_de_la_commune": "URVILLERS", + "code_postal": "02690", + "coordonnees_gps": [ + 49.7897507931, + 3.31629966887 + ], + "libelle_d_acheminement": "URVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31629966887, + 49.7897507931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df8f335ca9059858d1233b92a486c1c395095d4a", + "fields": { + "code_commune_insee": "02767", + "nom_de_la_commune": "VAUXREZIS", + "code_postal": "02200", + "coordonnees_gps": [ + 49.4205077489, + 3.27709335238 + ], + "libelle_d_acheminement": "VAUXREZIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27709335238, + 49.4205077489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2418f3a81b8245e74776e286ded804594bf78433", + "fields": { + "code_commune_insee": "02769", + "nom_de_la_commune": "VAUX ANDIGNY", + "code_postal": "02110", + "coordonnees_gps": [ + 50.0111472485, + 3.52295400201 + ], + "libelle_d_acheminement": "VAUX ANDIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52295400201, + 50.0111472485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "136c3e22a8c9b3b581a180ade80352317d194b8d", + "fields": { + "code_commune_insee": "02770", + "nom_de_la_commune": "VAUXBUIN", + "code_postal": "02200", + "coordonnees_gps": [ + 49.357283338, + 3.29549391938 + ], + "libelle_d_acheminement": "VAUXBUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29549391938, + 49.357283338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97acefd0b82d8196c8b47d6c8f369771dfb95e3c", + "fields": { + "code_commune_insee": "02774", + "nom_de_la_commune": "VENDELLES", + "code_postal": "02490", + "coordonnees_gps": [ + 49.9078313873, + 3.1381693574 + ], + "libelle_d_acheminement": "VENDELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1381693574, + 49.9078313873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "086da413b1e6b653361ad0e14cd26bdb92497139", + "fields": { + "code_commune_insee": "02776", + "nom_de_la_commune": "VENDHUILE", + "code_postal": "02420", + "coordonnees_gps": [ + 50.0120254621, + 3.20888614063 + ], + "libelle_d_acheminement": "VENDHUILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20888614063, + 50.0120254621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a14518ae9dd3742b1f64095c9af13d061ac2f0a", + "fields": { + "code_commune_insee": "02778", + "nom_de_la_commune": "VENDRESSE BEAULNE", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4317132906, + 3.65690243676 + ], + "libelle_d_acheminement": "VENDRESSE BEAULNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65690243676, + 49.4317132906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9ba677c654cf970291d16f97a46189226f38abd", + "fields": { + "code_commune_insee": "02789", + "nom_de_la_commune": "VERVINS", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8351798708, + 3.92522602825 + ], + "libelle_d_acheminement": "VERVINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92522602825, + 49.8351798708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92ae0dbfbec7711b6daed67fe4685c36fab31b8c", + "fields": { + "code_commune_insee": "02791", + "nom_de_la_commune": "VESLUD", + "code_postal": "02840", + "coordonnees_gps": [ + 49.5387490108, + 3.73067663493 + ], + "libelle_d_acheminement": "VESLUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73067663493, + 49.5387490108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be2ebeceb6218ffcc4b5d95bb0b6a4b9fee9f3b1", + "fields": { + "code_commune_insee": "02793", + "nom_de_la_commune": "VEZAPONIN", + "code_postal": "02290", + "coordonnees_gps": [ + 49.4667498193, + 3.22298094528 + ], + "libelle_d_acheminement": "VEZAPONIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22298094528, + 49.4667498193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a96d53c1cce41f6a0c8c5197ee2c9a32da6cf360", + "fields": { + "code_commune_insee": "02798", + "nom_de_la_commune": "VIELS MAISONS", + "code_postal": "02540", + "coordonnees_gps": [ + 48.9070425737, + 3.39571892839 + ], + "libelle_d_acheminement": "VIELS MAISONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39571892839, + 48.9070425737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "551aebbb7f2ed5d5c8d91f8b8f91636116b39bbf", + "fields": { + "code_commune_insee": "02816", + "nom_de_la_commune": "VILLERS SUR FERE", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1715150184, + 3.53152683586 + ], + "libelle_d_acheminement": "VILLERS SUR FERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53152683586, + 49.1715150184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a901db74b50b0e65d9bfc9e02d04070fc6c285c", + "fields": { + "code_commune_insee": "02817", + "nom_de_la_commune": "VILLE SAVOYE", + "code_postal": "02220", + "coordonnees_gps": [ + 49.2929807511, + 3.63762361829 + ], + "libelle_d_acheminement": "VILLE SAVOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63762361829, + 49.2929807511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7248f5feabe51daa14f456745889220bb4193243", + "fields": { + "code_commune_insee": "02824", + "nom_de_la_commune": "VORGES", + "code_postal": "02860", + "coordonnees_gps": [ + 49.5175796033, + 3.65105369026 + ], + "libelle_d_acheminement": "VORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65105369026, + 49.5175796033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bbb80dfd4af73e693d6f846dd2a6486eb8e3f9c", + "fields": { + "code_commune_insee": "02830", + "nom_de_la_commune": "WASSIGNY", + "code_postal": "02630", + "coordonnees_gps": [ + 50.017642986, + 3.59944731539 + ], + "libelle_d_acheminement": "WASSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59944731539, + 50.017642986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e66abbedbe311b99213be235f774b29f5115305", + "fields": { + "code_commune_insee": "02832", + "nom_de_la_commune": "WIEGE FATY", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8827986391, + 3.7134240171 + ], + "libelle_d_acheminement": "WIEGE FATY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7134240171, + 49.8827986391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3bb6137dc2f27335da0237a1cf80345bbe70d21", + "fields": { + "code_commune_insee": "03001", + "nom_de_la_commune": "ABREST", + "code_postal": "03200", + "coordonnees_gps": [ + 46.0955766716, + 3.45052482175 + ], + "libelle_d_acheminement": "ABREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45052482175, + 46.0955766716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f920a0283e17f060150e7b7a91264d1f0ee0cd71", + "fields": { + "code_commune_insee": "03002", + "nom_de_la_commune": "AGONGES", + "code_postal": "03210", + "coordonnees_gps": [ + 46.6180197037, + 3.14884278466 + ], + "libelle_d_acheminement": "AGONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14884278466, + 46.6180197037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2545d04c4ed8fc57a5d1b2e2f253278d430f239d", + "fields": { + "code_commune_insee": "03004", + "nom_de_la_commune": "ANDELAROCHE", + "code_postal": "03120", + "coordonnees_gps": [ + 46.2501153137, + 3.74613192809 + ], + "libelle_d_acheminement": "ANDELAROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74613192809, + 46.2501153137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fcf4ba344acd5ef87f42ad80e8eeab978470fb8", + "fields": { + "code_commune_insee": "03009", + "nom_de_la_commune": "AUBIGNY", + "code_postal": "03460", + "coordonnees_gps": [ + 46.6733055007, + 3.16204245022 + ], + "libelle_d_acheminement": "AUBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16204245022, + 46.6733055007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ddf17eacb87cbfea489243a86a67163ae23cdc0", + "fields": { + "code_commune_insee": "03011", + "nom_de_la_commune": "AUROUER", + "code_postal": "03460", + "coordonnees_gps": [ + 46.6830651059, + 3.30496843823 + ], + "libelle_d_acheminement": "AUROUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30496843823, + 46.6830651059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cc7b24f1189bbe6aeee78c07fc9b00d5a87056c", + "fields": { + "code_commune_insee": "03013", + "nom_de_la_commune": "AVERMES", + "code_postal": "03000", + "coordonnees_gps": [ + 46.5983891991, + 3.3186329397 + ], + "libelle_d_acheminement": "AVERMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3186329397, + 46.5983891991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb5d01a3ed336e5c398bfa246a78f4c391c20a8c", + "fields": { + "code_commune_insee": "03021", + "nom_de_la_commune": "BEGUES", + "code_postal": "03800", + "coordonnees_gps": [ + 46.1229614254, + 3.14273582877 + ], + "libelle_d_acheminement": "BEGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14273582877, + 46.1229614254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdb4dff5c52240f44a963dc0a6d1e62631bc4b94", + "fields": { + "code_commune_insee": "03022", + "nom_de_la_commune": "BELLENAVES", + "code_postal": "03330", + "coordonnees_gps": [ + 46.2055132294, + 3.06605990143 + ], + "libelle_d_acheminement": "BELLENAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06605990143, + 46.2055132294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "894404746908d6f503636e2e4b6a637c57675b27", + "fields": { + "code_commune_insee": "03023", + "nom_de_la_commune": "BELLERIVE SUR ALLIER", + "code_postal": "03700", + "coordonnees_gps": [ + 46.1214944433, + 3.39719062136 + ], + "libelle_d_acheminement": "BELLERIVE SUR ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39719062136, + 46.1214944433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cc2338f733563aaae22ac2948bcb37cef82bf4e", + "fields": { + "code_commune_insee": "03025", + "nom_de_la_commune": "BESSAY SUR ALLIER", + "code_postal": "03340", + "coordonnees_gps": [ + 46.4507552937, + 3.36752338544 + ], + "libelle_d_acheminement": "BESSAY SUR ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36752338544, + 46.4507552937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c482c0877c9529bde705aa41abb3766f23e7da8", + "fields": { + "code_commune_insee": "03026", + "nom_de_la_commune": "BESSON", + "code_postal": "03210", + "coordonnees_gps": [ + 46.4808588768, + 3.25477616923 + ], + "libelle_d_acheminement": "BESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25477616923, + 46.4808588768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "658c21f82fd5c4f1c710fac7d91d77ce5621b84f", + "fields": { + "code_commune_insee": "03032", + "nom_de_la_commune": "BLOMARD", + "code_postal": "03390", + "coordonnees_gps": [ + 46.2883371774, + 2.9626756681 + ], + "libelle_d_acheminement": "BLOMARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9626756681, + 46.2883371774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7bcdb9938c49eacb3a79b1671caa37aba7857d1", + "fields": { + "code_commune_insee": "03035", + "nom_de_la_commune": "LE BOUCHAUD", + "code_postal": "03130", + "coordonnees_gps": [ + 46.3073055814, + 3.90705346696 + ], + "libelle_d_acheminement": "LE BOUCHAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90705346696, + 46.3073055814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73e4089d7554a298334760dbed84195c662bf99d", + "fields": { + "code_commune_insee": "03036", + "nom_de_la_commune": "BOURBON L ARCHAMBAULT", + "code_postal": "03160", + "coordonnees_gps": [ + 46.5836819113, + 3.05141625983 + ], + "libelle_d_acheminement": "BOURBON L ARCHAMBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05141625983, + 46.5836819113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a842fed0865c276939b43db1b330666b0eb51c84", + "fields": { + "code_commune_insee": "03045", + "nom_de_la_commune": "BUSSET", + "code_postal": "03270", + "coordonnees_gps": [ + 46.0568912652, + 3.51533127883 + ], + "libelle_d_acheminement": "BUSSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51533127883, + 46.0568912652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d23ba82321b54d1099f57976b68fb5f6e67d4897", + "fields": { + "code_commune_insee": "03047", + "nom_de_la_commune": "LA CELLE", + "code_postal": "03600", + "coordonnees_gps": [ + 46.2278844579, + 2.77894118647 + ], + "libelle_d_acheminement": "LA CELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77894118647, + 46.2278844579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b888cf14d2a454b86b6943593c0516c79440194", + "fields": { + "code_commune_insee": "03059", + "nom_de_la_commune": "CHAREIL CINTRAT", + "code_postal": "03140", + "coordonnees_gps": [ + 46.2662583678, + 3.2297935311 + ], + "libelle_d_acheminement": "CHAREIL CINTRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2297935311, + 46.2662583678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29d1ea64c7dbbf093106d02ad2cbb4be0bcb2cff", + "fields": { + "code_commune_insee": "03065", + "nom_de_la_commune": "CHATEL DE NEUVRE", + "code_postal": "03500", + "coordonnees_gps": [ + 46.4160449941, + 3.29822520917 + ], + "libelle_d_acheminement": "CHATEL DE NEUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29822520917, + 46.4160449941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "266fcd9ea1295343d0b2638e280e0170064f2a92", + "fields": { + "code_commune_insee": "03071", + "nom_de_la_commune": "CHAVROCHES", + "code_postal": "03220", + "coordonnees_gps": [ + 46.353495459, + 3.59684840219 + ], + "libelle_d_acheminement": "CHAVROCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59684840219, + 46.353495459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb7b7a2689001a529001de8b46bf2024518c3e25", + "fields": { + "code_commune_insee": "03072", + "nom_de_la_commune": "CHAZEMAIS", + "code_postal": "03370", + "coordonnees_gps": [ + 46.4871767183, + 2.51910449046 + ], + "libelle_d_acheminement": "CHAZEMAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51910449046, + 46.4871767183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "311094daf115beefacfca23d4704741c01394914", + "fields": { + "code_commune_insee": "03073", + "nom_de_la_commune": "CHEMILLY", + "code_postal": "03210", + "coordonnees_gps": [ + 46.4783424537, + 3.31267906143 + ], + "libelle_d_acheminement": "CHEMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31267906143, + 46.4783424537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "183c89f61cea5d4e2bf197d8db2fa91f7bb1e3a1", + "fields": { + "code_commune_insee": "03075", + "nom_de_la_commune": "CHEZELLE", + "code_postal": "03140", + "coordonnees_gps": [ + 46.2129757558, + 3.11154820906 + ], + "libelle_d_acheminement": "CHEZELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11154820906, + 46.2129757558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab7e0a29594b9662322285b3c67ab129e0ee2796", + "fields": { + "code_commune_insee": "03078", + "nom_de_la_commune": "CHOUVIGNY", + "code_postal": "03450", + "coordonnees_gps": [ + 46.1257380444, + 3.00492464249 + ], + "libelle_d_acheminement": "CHOUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00492464249, + 46.1257380444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1e7a6d48498f0b8795d9d895811fe1b8e6dc1e7", + "fields": { + "code_commune_insee": "03080", + "nom_de_la_commune": "COGNAT LYONNE", + "code_postal": "03110", + "coordonnees_gps": [ + 46.1074095478, + 3.29764762028 + ], + "libelle_d_acheminement": "COGNAT LYONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29764762028, + 46.1074095478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e581ea26d0cb32ebd19a3fb4f5a347177a95b7af", + "fields": { + "code_commune_insee": "03084", + "nom_de_la_commune": "COSNE D ALLIER", + "code_postal": "03430", + "coordonnees_gps": [ + 46.482962805, + 2.82323006329 + ], + "libelle_d_acheminement": "COSNE D ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82323006329, + 46.482962805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1c4fdf29416e93e7ba977184a4e60d481793103", + "fields": { + "code_commune_insee": "03088", + "nom_de_la_commune": "COURCAIS", + "code_postal": "03370", + "coordonnees_gps": [ + 46.463962183, + 2.44909172775 + ], + "libelle_d_acheminement": "COURCAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44909172775, + 46.463962183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec602fbc7a21c3c0559e9d059e572c32c7a5c7d6", + "fields": { + "code_commune_insee": "03089", + "nom_de_la_commune": "COUTANSOUZE", + "code_postal": "03330", + "coordonnees_gps": [ + 46.205276583, + 3.00755651899 + ], + "libelle_d_acheminement": "COUTANSOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00755651899, + 46.205276583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9502fde77933ef7d723731a109598a2e630868d1", + "fields": { + "code_commune_insee": "03093", + "nom_de_la_commune": "CREUZIER LE NEUF", + "code_postal": "03300", + "coordonnees_gps": [ + 46.1781234697, + 3.46274147991 + ], + "libelle_d_acheminement": "CREUZIER LE NEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46274147991, + 46.1781234697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d3053a06dd82233b48529f3c622233006cb1b7b", + "fields": { + "code_commune_insee": "03098", + "nom_de_la_commune": "DESERTINES", + "code_postal": "03630", + "coordonnees_gps": [ + 46.3569236858, + 2.62735601895 + ], + "libelle_d_acheminement": "DESERTINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62735601895, + 46.3569236858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1edba873f5e895be00068855b75d7e6f4f01f77a", + "fields": { + "code_commune_insee": "03102", + "nom_de_la_commune": "DOMPIERRE SUR BESBRE", + "code_postal": "03290", + "coordonnees_gps": [ + 46.5305895294, + 3.67644076991 + ], + "libelle_d_acheminement": "DOMPIERRE SUR BESBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67644076991, + 46.5305895294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d37ac9df7671f8cdf91fbc2566d7725071862c08", + "fields": { + "code_commune_insee": "03103", + "nom_de_la_commune": "LE DONJON", + "code_postal": "03130", + "coordonnees_gps": [ + 46.3449718057, + 3.7999456795 + ], + "libelle_d_acheminement": "LE DONJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7999456795, + 46.3449718057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9061b9b0e4bfdc122f77c0cafde7c4233737f10c", + "fields": { + "code_commune_insee": "03105", + "nom_de_la_commune": "DROITURIER", + "code_postal": "03120", + "coordonnees_gps": [ + 46.2267468451, + 3.70488868966 + ], + "libelle_d_acheminement": "DROITURIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70488868966, + 46.2267468451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a3edffdf3b310da5c1e238b10dd926341028c4d", + "fields": { + "code_commune_insee": "03112", + "nom_de_la_commune": "ETROUSSAT", + "code_postal": "03140", + "coordonnees_gps": [ + 46.2202976466, + 3.22102195142 + ], + "libelle_d_acheminement": "ETROUSSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22102195142, + 46.2202976466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15c56468c1bfe0208c66b4b562421168a244d889", + "fields": { + "code_commune_insee": "03127", + "nom_de_la_commune": "HERISSON", + "code_postal": "03190", + "coordonnees_gps": [ + 46.5199077449, + 2.71052889853 + ], + "libelle_d_acheminement": "HERISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71052889853, + 46.5199077449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "962d82a34e44ea7063a94350b0607b9283385216", + "fields": { + "code_commune_insee": "03129", + "nom_de_la_commune": "HYDS", + "code_postal": "03600", + "coordonnees_gps": [ + 46.273205648, + 2.8280145759 + ], + "libelle_d_acheminement": "HYDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8280145759, + 46.273205648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa80f46c4e187ed7754653b9068b7bc686b7a16d", + "fields": { + "code_commune_insee": "03138", + "nom_de_la_commune": "LAPALISSE", + "code_postal": "03120", + "coordonnees_gps": [ + 46.264846808, + 3.63838425184 + ], + "libelle_d_acheminement": "LAPALISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63838425184, + 46.264846808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81423d5f678985bc8e1623899739566b7d982dd1", + "fields": { + "code_commune_insee": "03147", + "nom_de_la_commune": "LODDES", + "code_postal": "03130", + "coordonnees_gps": [ + 46.2946168116, + 3.76081551954 + ], + "libelle_d_acheminement": "LODDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76081551954, + 46.2946168116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45619bd67a9176fe2344634a56d25bfbcff485db", + "fields": { + "code_commune_insee": "03163", + "nom_de_la_commune": "MARIOL", + "code_postal": "03270", + "coordonnees_gps": [ + 46.0252722149, + 3.48652009889 + ], + "libelle_d_acheminement": "MARIOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48652009889, + 46.0252722149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f238968ed8a917d255413875913fdad986acf854", + "fields": { + "code_commune_insee": "03164", + "nom_de_la_commune": "LE MAYET D ECOLE", + "code_postal": "03800", + "coordonnees_gps": [ + 46.1649554035, + 3.24084567902 + ], + "libelle_d_acheminement": "LE MAYET D ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24084567902, + 46.1649554035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa87eb834532bb4d935540182c2d02221505f9a3", + "fields": { + "code_commune_insee": "03169", + "nom_de_la_commune": "MEILLARD", + "code_postal": "03500", + "coordonnees_gps": [ + 46.3881490513, + 3.23168900799 + ], + "libelle_d_acheminement": "MEILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23168900799, + 46.3881490513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad561305926e93094c0457d2baf7c0a1ededf6fe", + "fields": { + "code_commune_insee": "03171", + "nom_de_la_commune": "MERCY", + "code_postal": "03340", + "coordonnees_gps": [ + 46.4511354301, + 3.52416501976 + ], + "libelle_d_acheminement": "MERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52416501976, + 46.4511354301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "465b1fc3e9907c8a636664b1355738dda045ef8e", + "fields": { + "code_commune_insee": "03172", + "nom_de_la_commune": "MESPLES", + "code_postal": "03370", + "coordonnees_gps": [ + 46.4272621161, + 2.36441867083 + ], + "libelle_d_acheminement": "MESPLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36441867083, + 46.4272621161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fd91a0e5bcf426629bce167e7a6852ad3c59781", + "fields": { + "code_commune_insee": "03175", + "nom_de_la_commune": "MONESTIER", + "code_postal": "03140", + "coordonnees_gps": [ + 46.2628525623, + 3.10440007037 + ], + "libelle_d_acheminement": "MONESTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10440007037, + 46.2628525623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51baf13608c27530e5137e88a3bf8d6e7e55217d", + "fields": { + "code_commune_insee": "03180", + "nom_de_la_commune": "MONTBEUGNY", + "code_postal": "03340", + "coordonnees_gps": [ + 46.5282061849, + 3.47422921423 + ], + "libelle_d_acheminement": "MONTBEUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47422921423, + 46.5282061849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f9f8286787a39785b9c22de2e05076df3bc2759", + "fields": { + "code_commune_insee": "03215", + "nom_de_la_commune": "RONGERES", + "code_postal": "03150", + "coordonnees_gps": [ + 46.2976179231, + 3.4520098944 + ], + "libelle_d_acheminement": "RONGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4520098944, + 46.2976179231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "488749cec78333467c99cfe87c8a83cbc680cdef", + "fields": { + "code_commune_insee": "03223", + "nom_de_la_commune": "ST CHRISTOPHE", + "code_postal": "03120", + "coordonnees_gps": [ + 46.1663162062, + 3.57800809692 + ], + "libelle_d_acheminement": "ST CHRISTOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57800809692, + 46.1663162062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b15f901cfcb97c0ba2eff4fa3b98a4132abdc232", + "fields": { + "code_commune_insee": "03225", + "nom_de_la_commune": "ST DESIRE", + "code_postal": "03370", + "coordonnees_gps": [ + 46.5074397829, + 2.44986211954 + ], + "libelle_d_acheminement": "ST DESIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44986211954, + 46.5074397829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f77a750fd9e19a5bcaff8e1614f9ce50cd9be97a", + "fields": { + "code_commune_insee": "03228", + "nom_de_la_commune": "ST ELOY D ALLIER", + "code_postal": "03370", + "coordonnees_gps": [ + 46.4967909945, + 2.36296544008 + ], + "libelle_d_acheminement": "ST ELOY D ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36296544008, + 46.4967909945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87ba602fcb730e60128940565e538b8393c5ec6d", + "fields": { + "code_commune_insee": "03234", + "nom_de_la_commune": "ST GERAND DE VAUX", + "code_postal": "03340", + "coordonnees_gps": [ + 46.3838249809, + 3.40743256191 + ], + "libelle_d_acheminement": "ST GERAND DE VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40743256191, + 46.3838249809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc66e4afcae84f797c1ef5ea61158966d2901525", + "fields": { + "code_commune_insee": "03238", + "nom_de_la_commune": "ST HILAIRE", + "code_postal": "03440", + "coordonnees_gps": [ + 46.4866887035, + 3.01543389624 + ], + "libelle_d_acheminement": "ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01543389624, + 46.4866887035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bef1912785efde2430946ae27eba2bd1652714b7", + "fields": { + "code_commune_insee": "03241", + "nom_de_la_commune": "ST LEOPARDIN D AUGY", + "code_postal": "03160", + "coordonnees_gps": [ + 46.6979502806, + 3.10551355591 + ], + "libelle_d_acheminement": "ST LEOPARDIN D AUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10551355591, + 46.6979502806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6064f41d28805410969181a580ba5d6d0c2d42a6", + "fields": { + "code_commune_insee": "03245", + "nom_de_la_commune": "ST MARTIN DES LAIS", + "code_postal": "03230", + "coordonnees_gps": [ + 46.6742609191, + 3.65661845694 + ], + "libelle_d_acheminement": "ST MARTIN DES LAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65661845694, + 46.6742609191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4ba8a23bc72324ab390939f1c584348124047b1", + "fields": { + "code_commune_insee": "03266", + "nom_de_la_commune": "SANSSAT", + "code_postal": "03150", + "coordonnees_gps": [ + 46.2504085675, + 3.46770686659 + ], + "libelle_d_acheminement": "SANSSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46770686659, + 46.2504085675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fe8e3f41a53f63b67a7b9975b1ad98261be7f98", + "fields": { + "code_commune_insee": "03267", + "nom_de_la_commune": "SAULCET", + "code_postal": "03500", + "coordonnees_gps": [ + 46.3294310458, + 3.26694921793 + ], + "libelle_d_acheminement": "SAULCET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26694921793, + 46.3294310458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d010f695a3a73e10e9be66c04e11e8c1b70c3351", + "fields": { + "code_commune_insee": "03270", + "nom_de_la_commune": "SAZERET", + "code_postal": "03390", + "coordonnees_gps": [ + 46.3468702581, + 2.96976112683 + ], + "libelle_d_acheminement": "SAZERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96976112683, + 46.3468702581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53ea16e8e12216d5159a0f71bd5869afa96242f1", + "fields": { + "code_commune_insee": "03271", + "nom_de_la_commune": "SERBANNES", + "code_postal": "03700", + "coordonnees_gps": [ + 46.098919682, + 3.35245745606 + ], + "libelle_d_acheminement": "SERBANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35245745606, + 46.098919682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b34a6fce88756f93b3ca61205fb91a7d6407d5cb", + "fields": { + "code_commune_insee": "03272", + "nom_de_la_commune": "SERVILLY", + "code_postal": "03120", + "coordonnees_gps": [ + 46.2802589797, + 3.58979684003 + ], + "libelle_d_acheminement": "SERVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58979684003, + 46.2802589797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c36f0c5411bbaba61e85541304ec9e3e696a4870", + "fields": { + "code_commune_insee": "03274", + "nom_de_la_commune": "SORBIER", + "code_postal": "03220", + "coordonnees_gps": [ + 46.3613185647, + 3.65747930664 + ], + "libelle_d_acheminement": "SORBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65747930664, + 46.3613185647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4c3cf0fa48b1e6dade7e48a37e3dd0cfac57849", + "fields": { + "code_commune_insee": "03275", + "nom_de_la_commune": "SOUVIGNY", + "code_postal": "03210", + "coordonnees_gps": [ + 46.5243440423, + 3.18992960249 + ], + "libelle_d_acheminement": "SOUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18992960249, + 46.5243440423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c88ac838dc2e7558297aa690cced483c9a356548", + "fields": { + "code_commune_insee": "03276", + "nom_de_la_commune": "SUSSAT", + "code_postal": "03450", + "coordonnees_gps": [ + 46.1523532024, + 3.05584411459 + ], + "libelle_d_acheminement": "SUSSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05584411459, + 46.1523532024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db70dc8a3fbcb4f0c3b66a671649dd46161b1842", + "fields": { + "code_commune_insee": "03287", + "nom_de_la_commune": "TREBAN", + "code_postal": "03240", + "coordonnees_gps": [ + 46.3993644498, + 3.1654172286 + ], + "libelle_d_acheminement": "TREBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1654172286, + 46.3993644498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "271b985ce955540746e09a00033497f0648bdd63", + "fields": { + "code_commune_insee": "03293", + "nom_de_la_commune": "URCAY", + "code_postal": "03360", + "coordonnees_gps": [ + 46.6340748365, + 2.61371570998 + ], + "libelle_d_acheminement": "URCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61371570998, + 46.6340748365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "462d9dc62f2ca050e747fcba298e02715f6b50ed", + "fields": { + "code_commune_insee": "03308", + "nom_de_la_commune": "VERNUSSE", + "code_postal": "03390", + "coordonnees_gps": [ + 46.2602732838, + 2.97167741847 + ], + "libelle_d_acheminement": "VERNUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97167741847, + 46.2602732838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36b6a6b69bea29d43239cc038d0de06f4c6f6cea", + "fields": { + "code_commune_insee": "03309", + "nom_de_la_commune": "LE VEURDRE", + "code_postal": "03320", + "coordonnees_gps": [ + 46.7427276777, + 3.04259770031 + ], + "libelle_d_acheminement": "LE VEURDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04259770031, + 46.7427276777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9383c0d3a76023f055a35cdf3c4c9d4106acfd8", + "fields": { + "code_commune_insee": "03314", + "nom_de_la_commune": "VILLEBRET", + "code_postal": "03310", + "coordonnees_gps": [ + 46.277798684, + 2.63276519171 + ], + "libelle_d_acheminement": "VILLEBRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63276519171, + 46.277798684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d2088cf28fd0738bc54425e1669a520434d8a8e", + "fields": { + "code_commune_insee": "03316", + "nom_de_la_commune": "VILLENEUVE SUR ALLIER", + "code_postal": "03460", + "coordonnees_gps": [ + 46.6741150218, + 3.25033675035 + ], + "libelle_d_acheminement": "VILLENEUVE SUR ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25033675035, + 46.6741150218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7f60499eaf6543cbf67a8cd76efcc6c9771fca7", + "fields": { + "code_commune_insee": "03321", + "nom_de_la_commune": "YZEURE", + "code_postal": "03400", + "coordonnees_gps": [ + 46.5636456232, + 3.37978160133 + ], + "libelle_d_acheminement": "YZEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37978160133, + 46.5636456232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbb6ebf9c3187dd5f74b20d71a7d94a70d946382", + "fields": { + "code_commune_insee": "04007", + "nom_de_la_commune": "ANGLES", + "code_postal": "04170", + "coordonnees_gps": [ + 43.9443293069, + 6.55232063474 + ], + "libelle_d_acheminement": "ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55232063474, + 43.9443293069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f660df5441951d58bedbba73de948ddca6429e7a", + "fields": { + "code_commune_insee": "04017", + "nom_de_la_commune": "AUZET", + "code_postal": "04140", + "coordonnees_gps": [ + 44.3054001563, + 6.31115592449 + ], + "libelle_d_acheminement": "AUZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31115592449, + 44.3054001563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c1ee2d19620e4107c6e9347107a3d35fba57edb", + "fields": { + "code_commune_insee": "04018", + "nom_de_la_commune": "BANON", + "code_postal": "04150", + "coordonnees_gps": [ + 44.0269448077, + 5.64964715248 + ], + "libelle_d_acheminement": "BANON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64964715248, + 44.0269448077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e4e1cf76dd4c862f635c856f81fbdd619c40c67", + "fields": { + "code_commune_insee": "04022", + "nom_de_la_commune": "BARREME", + "code_postal": "04330", + "coordonnees_gps": [ + 43.9462808705, + 6.37811558709 + ], + "libelle_d_acheminement": "BARREME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37811558709, + 43.9462808705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df86629d6a1325597cda729bc13999322b30dc69", + "fields": { + "code_commune_insee": "04023", + "nom_de_la_commune": "BAYONS", + "code_postal": "04250", + "coordonnees_gps": [ + 44.3249277264, + 6.17282537759 + ], + "libelle_d_acheminement": "BAYONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17282537759, + 44.3249277264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7972836fd329007bd631e9cdaa39fc3407e3500", + "fields": { + "code_commune_insee": "04026", + "nom_de_la_commune": "BELLAFFAIRE", + "code_postal": "04250", + "coordonnees_gps": [ + 44.4043915253, + 6.19420304469 + ], + "libelle_d_acheminement": "BELLAFFAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19420304469, + 44.4043915253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cff456730c71d564f923fb11e5039057294c6fd", + "fields": { + "ligne_5": "LA BREOLE", + "code_commune_insee": "04033", + "libelle_d_acheminement": "UBAYE SERRE PONCON", + "code_postal": "04340", + "nom_de_la_commune": "UBAYE SERRE PONCON", + "coordonnees_gps": [ + 44.4434662119, + 6.28924750363 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28924750363, + 44.4434662119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34d6bff54a16e3e209ee55c3749ccdcf15871682", + "fields": { + "ligne_5": "ROBION", + "code_commune_insee": "04039", + "libelle_d_acheminement": "CASTELLANE", + "code_postal": "04120", + "nom_de_la_commune": "CASTELLANE", + "coordonnees_gps": [ + 43.8449862174, + 6.49029842016 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49029842016, + 43.8449862174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43621d2f93a6c7fc01a41b2ace479b11c41043c8", + "fields": { + "code_commune_insee": "04041", + "nom_de_la_commune": "LE CASTELLET", + "code_postal": "04700", + "coordonnees_gps": [ + 43.9198884936, + 5.97900495307 + ], + "libelle_d_acheminement": "LE CASTELLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97900495307, + 43.9198884936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "341e9b8c6be4dfed9e6d64d3f825d7b31b3bc741", + "fields": { + "code_commune_insee": "04059", + "nom_de_la_commune": "CLUMANC", + "code_postal": "04330", + "coordonnees_gps": [ + 44.0220942583, + 6.37764321053 + ], + "libelle_d_acheminement": "CLUMANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37764321053, + 44.0220942583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8ebc1169aca74c4f73a14f6c7ea110b57d73649", + "fields": { + "code_commune_insee": "04063", + "nom_de_la_commune": "CORBIERES EN PROVENCE", + "code_postal": "04220", + "coordonnees_gps": [ + 43.7606909826, + 5.74590452535 + ], + "libelle_d_acheminement": "CORBIERES EN PROVENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74590452535, + 43.7606909826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f0494878df6d8f544113f2653e4f23042ef739d", + "fields": { + "ligne_5": "TREVANS", + "code_commune_insee": "04084", + "libelle_d_acheminement": "ESTOUBLON", + "code_postal": "04270", + "nom_de_la_commune": "ESTOUBLON", + "coordonnees_gps": [ + 43.943168614, + 6.19407821084 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19407821084, + 43.943168614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d214033b3f150bdfa0f6ca536e0f8ca98bf9d98", + "fields": { + "code_commune_insee": "04092", + "nom_de_la_commune": "LA GARDE", + "code_postal": "04120", + "coordonnees_gps": [ + 43.8298617013, + 6.57154524239 + ], + "libelle_d_acheminement": "LA GARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57154524239, + 43.8298617013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac864bc16724597d597cce9aed162aa3176acc50", + "fields": { + "code_commune_insee": "04101", + "nom_de_la_commune": "LARDIERS", + "code_postal": "04230", + "coordonnees_gps": [ + 44.0850792894, + 5.72691612181 + ], + "libelle_d_acheminement": "LARDIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72691612181, + 44.0850792894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5da65a77ad4bc6a65ab6b03e9ebe9bc44ada746", + "fields": { + "code_commune_insee": "04107", + "nom_de_la_commune": "MAJASTRES", + "code_postal": "04270", + "coordonnees_gps": [ + 43.8980780342, + 6.2836913455 + ], + "libelle_d_acheminement": "MAJASTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2836913455, + 43.8980780342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f70b86aef30515003ce0c4fd392aa3f1510a8ed3", + "fields": { + "code_commune_insee": "04108", + "nom_de_la_commune": "MALIJAI", + "code_postal": "04350", + "coordonnees_gps": [ + 44.0336660524, + 6.0504243737 + ], + "libelle_d_acheminement": "MALIJAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0504243737, + 44.0336660524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63e395b9dd44a43d5f43b3da9ba092db2a63330b", + "fields": { + "code_commune_insee": "04110", + "nom_de_la_commune": "MALLEMOISSON", + "code_postal": "04510", + "coordonnees_gps": [ + 44.0420071966, + 6.11807147192 + ], + "libelle_d_acheminement": "MALLEMOISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11807147192, + 44.0420071966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8348d6a9a6257266d0d6905bb65804bd876a680b", + "fields": { + "ligne_5": "LARCHE", + "code_commune_insee": "04120", + "libelle_d_acheminement": "VAL D ORONAYE", + "code_postal": "04530", + "nom_de_la_commune": "VAL D ORONAYE", + "coordonnees_gps": [ + 44.4730642294, + 6.81114702697 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81114702697, + 44.4730642294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5a8f01d84aaba94eab4b55c102a61587a7aea53", + "fields": { + "code_commune_insee": "04124", + "nom_de_la_commune": "MONTAGNAC MONTPEZAT", + "code_postal": "04500", + "coordonnees_gps": [ + 43.766525069, + 6.09454805934 + ], + "libelle_d_acheminement": "MONTAGNAC MONTPEZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09454805934, + 43.766525069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0728d1f4987ab452aa9868441f28ba20741f699c", + "fields": { + "ligne_5": "MONTPEZAT", + "code_commune_insee": "04124", + "libelle_d_acheminement": "MONTAGNAC MONTPEZAT", + "code_postal": "04500", + "nom_de_la_commune": "MONTAGNAC MONTPEZAT", + "coordonnees_gps": [ + 43.766525069, + 6.09454805934 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09454805934, + 43.766525069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce1861b077eecb3758c61d987ace1101036c8fb7", + "fields": { + "code_commune_insee": "04127", + "nom_de_la_commune": "MONTFORT", + "code_postal": "04600", + "coordonnees_gps": [ + 44.0591709898, + 5.95286093626 + ], + "libelle_d_acheminement": "MONTFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95286093626, + 44.0591709898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89f0748aff7dc63938cbce2a5df0f9a570e1395b", + "fields": { + "code_commune_insee": "04130", + "nom_de_la_commune": "MONTLAUX", + "code_postal": "04230", + "coordonnees_gps": [ + 44.0407923753, + 5.85016627036 + ], + "libelle_d_acheminement": "MONTLAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85016627036, + 44.0407923753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "073a70c3ebe25168f8121604c1ae3eb4668189d7", + "fields": { + "ligne_5": "ARGENS", + "code_commune_insee": "04136", + "libelle_d_acheminement": "LA MURE ARGENS", + "code_postal": "04170", + "nom_de_la_commune": "LA MURE ARGENS", + "coordonnees_gps": [ + 44.0166107784, + 6.53196701824 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53196701824, + 44.0166107784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8b8c9d83fe640395f4c6aaaebffdde3ce25b8a6", + "fields": { + "ligne_5": "CHATEAUNEUF LES MOUSTIERS", + "code_commune_insee": "04144", + "libelle_d_acheminement": "LA PALUD SUR VERDON", + "code_postal": "04120", + "nom_de_la_commune": "LA PALUD SUR VERDON", + "coordonnees_gps": [ + 43.796648297, + 6.32708874551 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32708874551, + 43.796648297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "accb701d21927816396581466568bf1057ddaa73", + "fields": { + "code_commune_insee": "04148", + "nom_de_la_commune": "PEYROULES", + "code_postal": "04120", + "coordonnees_gps": [ + 43.8169194662, + 6.64310114729 + ], + "libelle_d_acheminement": "PEYROULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64310114729, + 43.8169194662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23cd99d00cade002196ee54bd06153abb51bcb3c", + "fields": { + "code_commune_insee": "04154", + "nom_de_la_commune": "PONTIS", + "code_postal": "05160", + "coordonnees_gps": [ + 44.4956918963, + 6.36523776593 + ], + "libelle_d_acheminement": "PONTIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36523776593, + 44.4956918963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85e81064367100e611516c177b9a900400840d19", + "fields": { + "code_commune_insee": "04161", + "nom_de_la_commune": "MEOLANS REVEL", + "code_postal": "04340", + "coordonnees_gps": [ + 44.3714312017, + 6.49846404885 + ], + "libelle_d_acheminement": "MEOLANS REVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49846404885, + 44.3714312017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eb3e6faa9c5e368b36de955af3afa66b1cfaad0", + "fields": { + "code_commune_insee": "04163", + "nom_de_la_commune": "REVEST DU BION", + "code_postal": "04150", + "coordonnees_gps": [ + 44.0940903498, + 5.54050938545 + ], + "libelle_d_acheminement": "REVEST DU BION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54050938545, + 44.0940903498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e95f6b2f66e0fb6381854deab908e011a93aabad", + "fields": { + "code_commune_insee": "04164", + "nom_de_la_commune": "REVEST ST MARTIN", + "code_postal": "04230", + "coordonnees_gps": [ + 44.0198482775, + 5.82298621297 + ], + "libelle_d_acheminement": "REVEST ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82298621297, + 44.0198482775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30ea64fa5a0f9e2bd1631eec4fc4f318dfc47350", + "fields": { + "code_commune_insee": "04170", + "nom_de_la_commune": "LA ROCHETTE", + "code_postal": "06260", + "coordonnees_gps": [ + 43.9122760348, + 6.88070058923 + ], + "libelle_d_acheminement": "LA ROCHETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88070058923, + 43.9122760348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "312021117e481567f7c7f47555431b05e793ae8d", + "fields": { + "code_commune_insee": "04175", + "nom_de_la_commune": "STE CROIX A LAUZE", + "code_postal": "04110", + "coordonnees_gps": [ + 43.9042070968, + 5.61568170523 + ], + "libelle_d_acheminement": "STE CROIX A LAUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61568170523, + 43.9042070968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b54f7688dc6e0e56e74e4f88682dc0a48c60ae29", + "fields": { + "ligne_5": "AURIBEAU", + "code_commune_insee": "04177", + "libelle_d_acheminement": "HAUTES DUYES", + "code_postal": "04380", + "nom_de_la_commune": "HAUTES DUYES", + "coordonnees_gps": [ + 44.1949051654, + 6.17423380965 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17423380965, + 44.1949051654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52e153ec49653045ba6883986263cb2cff92c7e8", + "fields": { + "code_commune_insee": "04178", + "nom_de_la_commune": "ST ETIENNE LES ORGUES", + "code_postal": "04230", + "coordonnees_gps": [ + 44.0670149849, + 5.78046052827 + ], + "libelle_d_acheminement": "ST ETIENNE LES ORGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78046052827, + 44.0670149849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd5f0bd8d24071a9752fcf686ba8ac7b892a7146", + "fields": { + "code_commune_insee": "04183", + "nom_de_la_commune": "ST JULIEN DU VERDON", + "code_postal": "04170", + "coordonnees_gps": [ + 43.9097626116, + 6.54605900451 + ], + "libelle_d_acheminement": "ST JULIEN DU VERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54605900451, + 43.9097626116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1584df0b88367ae7bfab41b0d6f2a4a68aa7513e", + "fields": { + "code_commune_insee": "04200", + "nom_de_la_commune": "SALIGNAC", + "code_postal": "04290", + "coordonnees_gps": [ + 44.1571681055, + 5.98824785964 + ], + "libelle_d_acheminement": "SALIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98824785964, + 44.1571681055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "609a621170c98e27a55b3b22a56abff3c4d910be", + "fields": { + "code_commune_insee": "04202", + "nom_de_la_commune": "SAUSSES", + "code_postal": "04320", + "coordonnees_gps": [ + 44.0122711291, + 6.77936939324 + ], + "libelle_d_acheminement": "SAUSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77936939324, + 44.0122711291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bd29cd4511050daafa8797c19e33efabea48f5f", + "fields": { + "code_commune_insee": "04203", + "nom_de_la_commune": "SELONNET", + "code_postal": "04140", + "coordonnees_gps": [ + 44.3717210833, + 6.29379329975 + ], + "libelle_d_acheminement": "SELONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29379329975, + 44.3717210833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cf557703d16a7ee1d4332f7881484115abde2d4", + "fields": { + "code_commune_insee": "04204", + "nom_de_la_commune": "SENEZ", + "code_postal": "04330", + "coordonnees_gps": [ + 43.9224978199, + 6.36903371255 + ], + "libelle_d_acheminement": "SENEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36903371255, + 43.9224978199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c2fdaac3c29f69ff991af18a1794e9840bde54b", + "fields": { + "code_commune_insee": "04205", + "nom_de_la_commune": "SEYNE", + "code_postal": "04140", + "coordonnees_gps": [ + 44.3390108176, + 6.38482796835 + ], + "libelle_d_acheminement": "SEYNE LES ALPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38482796835, + 44.3390108176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c83c45092c3fed7af14a964e98b1cc2dcd9e3b64", + "fields": { + "ligne_5": "VALSAINTES", + "code_commune_insee": "04208", + "libelle_d_acheminement": "SIMIANE LA ROTONDE", + "code_postal": "04150", + "nom_de_la_commune": "SIMIANE LA ROTONDE", + "coordonnees_gps": [ + 43.9838128235, + 5.56248994589 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56248994589, + 43.9838128235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce78136b17c592236d271d6cd8e5ab22f488f576", + "fields": { + "code_commune_insee": "04211", + "nom_de_la_commune": "SOURRIBES", + "code_postal": "04290", + "coordonnees_gps": [ + 44.1588664818, + 6.04430204786 + ], + "libelle_d_acheminement": "SOURRIBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04430204786, + 44.1588664818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "097894358d3a2a47c22fd57ebe7423eabfaf4db2", + "fields": { + "ligne_5": "LA PERUSSE", + "code_commune_insee": "04217", + "libelle_d_acheminement": "THOARD", + "code_postal": "04380", + "nom_de_la_commune": "THOARD", + "coordonnees_gps": [ + 44.1473006003, + 6.12401298333 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12401298333, + 44.1473006003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "913c793ac82932c4b362632238c137db18b74482", + "fields": { + "code_commune_insee": "04219", + "nom_de_la_commune": "THORAME HAUTE", + "code_postal": "04170", + "coordonnees_gps": [ + 44.0855014984, + 6.60128741508 + ], + "libelle_d_acheminement": "THORAME HAUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60128741508, + 44.0855014984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbe8a9070048126d7f628f29dd73fc6cd624c02f", + "fields": { + "ligne_5": "ST MICHEL PEYRESQ", + "code_commune_insee": "04219", + "libelle_d_acheminement": "THORAME HAUTE", + "code_postal": "04170", + "nom_de_la_commune": "THORAME HAUTE", + "coordonnees_gps": [ + 44.0855014984, + 6.60128741508 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60128741508, + 44.0855014984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d25cf65e0872ccf2b1ac72b6994fb4231b21ab47", + "fields": { + "code_commune_insee": "04224", + "nom_de_la_commune": "UBRAYE", + "code_postal": "04240", + "coordonnees_gps": [ + 43.9070446741, + 6.68718463205 + ], + "libelle_d_acheminement": "UBRAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68718463205, + 43.9070446741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf86b331bbca40eb9a5096ee40f2f27f31a2239f", + "fields": { + "ligne_5": "PRA LOUP", + "code_commune_insee": "04226", + "libelle_d_acheminement": "UVERNET FOURS", + "code_postal": "04400", + "nom_de_la_commune": "UVERNET FOURS", + "coordonnees_gps": [ + 44.3191132083, + 6.67028443403 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67028443403, + 44.3191132083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afb29f113e2308652e5d54e1817c05e30c6ad725", + "fields": { + "code_commune_insee": "04231", + "nom_de_la_commune": "VALERNES", + "code_postal": "04200", + "coordonnees_gps": [ + 44.2515589736, + 5.969547642 + ], + "libelle_d_acheminement": "VALERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.969547642, + 44.2515589736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b28ee16981952301981356b8a89b104d661a4b2f", + "fields": { + "code_commune_insee": "05007", + "nom_de_la_commune": "ARVIEUX", + "code_postal": "05350", + "coordonnees_gps": [ + 44.7638980345, + 6.72230859416 + ], + "libelle_d_acheminement": "ARVIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72230859416, + 44.7638980345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37a6beb840b4215bb411bb6753acd143b12b2d87", + "fields": { + "code_commune_insee": "05023", + "nom_de_la_commune": "BRIANCON", + "code_postal": "05100", + "coordonnees_gps": [ + 44.8994986041, + 6.64947524018 + ], + "libelle_d_acheminement": "BRIANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64947524018, + 44.8994986041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fbef466a983374786d948342ba710e941aca159", + "fields": { + "code_commune_insee": "05025", + "nom_de_la_commune": "BUISSARD", + "code_postal": "05500", + "coordonnees_gps": [ + 44.6575269333, + 6.14755068818 + ], + "libelle_d_acheminement": "BUISSARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14755068818, + 44.6575269333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0c69d85e707e48f65d1a4bde19b7c8878e9cb81", + "fields": { + "code_commune_insee": "05027", + "nom_de_la_commune": "CERVIERES", + "code_postal": "05100", + "coordonnees_gps": [ + 44.8532848504, + 6.76486547281 + ], + "libelle_d_acheminement": "CERVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76486547281, + 44.8532848504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed6afb9e5199f9ffe3f22e2f0d6707a7dbe20c8e", + "fields": { + "code_commune_insee": "05032", + "nom_de_la_commune": "CHAMPOLEON", + "code_postal": "05260", + "coordonnees_gps": [ + 44.7457461011, + 6.27312209866 + ], + "libelle_d_acheminement": "CHAMPOLEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27312209866, + 44.7457461011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9865acb4347c0bf91df4a1af059b72ecad44c3b4", + "fields": { + "code_commune_insee": "05033", + "nom_de_la_commune": "CHANOUSSE", + "code_postal": "05700", + "coordonnees_gps": [ + 44.3646760156, + 5.66013922855 + ], + "libelle_d_acheminement": "CHANOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66013922855, + 44.3646760156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cce67575e3a2dc06bddc1f4d22e726db3556b8d", + "fields": { + "code_commune_insee": "05036", + "nom_de_la_commune": "CHATEAUROUX LES ALPES", + "code_postal": "05380", + "coordonnees_gps": [ + 44.6423670958, + 6.48290823337 + ], + "libelle_d_acheminement": "CHATEAUROUX LES ALPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48290823337, + 44.6423670958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07441aa9695d613282f59853f711438b1830a3c2", + "fields": { + "ligne_5": "LES COSTES", + "code_commune_insee": "05039", + "libelle_d_acheminement": "AUBESSAGNE", + "code_postal": "05500", + "nom_de_la_commune": "AUBESSAGNE", + "coordonnees_gps": [ + 44.7581501379, + 6.01187494014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01187494014, + 44.7581501379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74d8bccd8faca46fe7f5f57d01f7a19373781fca", + "fields": { + "ligne_5": "ST EUSEBE EN CHAMPSAUR", + "code_commune_insee": "05039", + "libelle_d_acheminement": "AUBESSAGNE", + "code_postal": "05500", + "nom_de_la_commune": "AUBESSAGNE", + "coordonnees_gps": [ + 44.7581501379, + 6.01187494014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01187494014, + 44.7581501379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40be1c80b9dcd3af28d01b97c7bd6af27143670e", + "fields": { + "code_commune_insee": "05040", + "nom_de_la_commune": "CHORGES", + "code_postal": "05230", + "coordonnees_gps": [ + 44.5455124295, + 6.28782392595 + ], + "libelle_d_acheminement": "CHORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28782392595, + 44.5455124295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ef1e43dc51f9596841103c90d08c4847c839d7d", + "fields": { + "code_commune_insee": "05045", + "nom_de_la_commune": "CROTS", + "code_postal": "05200", + "coordonnees_gps": [ + 44.496293828, + 6.46197152572 + ], + "libelle_d_acheminement": "CROTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46197152572, + 44.496293828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c473c037f450b830ad73202b57da580069d896d", + "fields": { + "code_commune_insee": "05046", + "nom_de_la_commune": "EMBRUN", + "code_postal": "05200", + "coordonnees_gps": [ + 44.5804294908, + 6.47559298927 + ], + "libelle_d_acheminement": "EMBRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47559298927, + 44.5804294908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6381f30c3f7e86493f31173d868fecd90032f912", + "fields": { + "ligne_5": "LAGRAND", + "code_commune_insee": "05053", + "libelle_d_acheminement": "GARDE COLOMBE", + "code_postal": "05300", + "nom_de_la_commune": "GARDE COLOMBE", + "coordonnees_gps": [ + 44.3570512046, + 5.78336490177 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78336490177, + 44.3570512046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c9510afe7aaa5f42a227d2483121ab1f3214498", + "fields": { + "code_commune_insee": "05054", + "nom_de_la_commune": "LA FARE EN CHAMPSAUR", + "code_postal": "05500", + "coordonnees_gps": [ + 44.6653766254, + 6.05826038858 + ], + "libelle_d_acheminement": "LA FARE EN CHAMPSAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05826038858, + 44.6653766254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b76b1fa4d72e4bb334f3554f17737ec03c79b93", + "fields": { + "code_commune_insee": "05058", + "nom_de_la_commune": "FREISSINIERES", + "code_postal": "05310", + "coordonnees_gps": [ + 44.7364921825, + 6.45937704084 + ], + "libelle_d_acheminement": "FREISSINIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45937704084, + 44.7364921825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df3435e39ac868422f54f3bc8f1655136d80af7b", + "fields": { + "code_commune_insee": "05060", + "nom_de_la_commune": "FURMEYER", + "code_postal": "05400", + "coordonnees_gps": [ + 44.5368984209, + 5.87585358829 + ], + "libelle_d_acheminement": "FURMEYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87585358829, + 44.5368984209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c300f3b5f0283074d20481623fa116defcbaf0b", + "fields": { + "code_commune_insee": "05062", + "nom_de_la_commune": "LE GLAIZIL", + "code_postal": "05800", + "coordonnees_gps": [ + 44.7481922763, + 5.97487247782 + ], + "libelle_d_acheminement": "LE GLAIZIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97487247782, + 44.7481922763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e98c232b99d777ffd653765bfab2f01755173bc", + "fields": { + "code_commune_insee": "05066", + "nom_de_la_commune": "LA HAUTE BEAUME", + "code_postal": "05140", + "coordonnees_gps": [ + 44.5686788407, + 5.62845703761 + ], + "libelle_d_acheminement": "LA HAUTE BEAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62845703761, + 44.5686788407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e442bc76d1e1cd70a87a48b9e87924c467d787e2", + "fields": { + "code_commune_insee": "05078", + "nom_de_la_commune": "MONETIER ALLEMONT", + "code_postal": "05110", + "coordonnees_gps": [ + 44.3930962547, + 5.93397190265 + ], + "libelle_d_acheminement": "MONETIER ALLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93397190265, + 44.3930962547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbb271a0d42f865279b7d1c785ad44f620e65743", + "fields": { + "code_commune_insee": "05080", + "nom_de_la_commune": "MONTBRAND", + "code_postal": "05140", + "coordonnees_gps": [ + 44.5915829146, + 5.66765951559 + ], + "libelle_d_acheminement": "MONTBRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66765951559, + 44.5915829146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20e2aa05e05d1649228494ccbceb4d05d79f35b2", + "fields": { + "code_commune_insee": "05082", + "nom_de_la_commune": "MONT DAUPHIN", + "code_postal": "05600", + "coordonnees_gps": [ + 44.6690562408, + 6.62465091015 + ], + "libelle_d_acheminement": "MONT DAUPHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62465091015, + 44.6690562408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6848157c1bbf14ce6daf3fa18cff72d480bf13a0", + "fields": { + "code_commune_insee": "05086", + "nom_de_la_commune": "MONTJAY", + "code_postal": "05150", + "coordonnees_gps": [ + 44.3664380919, + 5.61455270536 + ], + "libelle_d_acheminement": "MONTJAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61455270536, + 44.3664380919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d849ce9acbfce4eba767fe645b846fcd6f6afd7", + "fields": { + "code_commune_insee": "05087", + "nom_de_la_commune": "MONTMAUR", + "code_postal": "05400", + "coordonnees_gps": [ + 44.5897361415, + 5.88561114683 + ], + "libelle_d_acheminement": "MONTMAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88561114683, + 44.5897361415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1c62529144320c468b031912f1a362562d62e0a", + "fields": { + "code_commune_insee": "05091", + "nom_de_la_commune": "MOYDANS", + "code_postal": "05150", + "coordonnees_gps": [ + 44.4099745186, + 5.50897346198 + ], + "libelle_d_acheminement": "MOYDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50897346198, + 44.4099745186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1217db9432646d8f779b46f02990c44d8f50ca6f", + "fields": { + "code_commune_insee": "05092", + "nom_de_la_commune": "NEFFES", + "code_postal": "05000", + "coordonnees_gps": [ + 44.4958417609, + 6.02550737641 + ], + "libelle_d_acheminement": "NEFFES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02550737641, + 44.4958417609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9103c952f3f87c2bac5bf83ad2a00aa814e0850f", + "fields": { + "code_commune_insee": "05093", + "nom_de_la_commune": "NEVACHE", + "code_postal": "05100", + "coordonnees_gps": [ + 45.0441286352, + 6.59862935541 + ], + "libelle_d_acheminement": "NEVACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59862935541, + 45.0441286352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83c9e1819805f2a666b5b978d60b5f4757beca6a", + "fields": { + "code_commune_insee": "05098", + "nom_de_la_commune": "LES ORRES", + "code_postal": "05200", + "coordonnees_gps": [ + 44.4850666477, + 6.57973142216 + ], + "libelle_d_acheminement": "LES ORRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57973142216, + 44.4850666477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a1a5aa789b9f323b7d43e543feb600d2d6f0eaf", + "fields": { + "code_commune_insee": "05112", + "nom_de_la_commune": "RABOU", + "code_postal": "05400", + "coordonnees_gps": [ + 44.6061461258, + 6.01077928936 + ], + "libelle_d_acheminement": "RABOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01077928936, + 44.6061461258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f530d5e98cd532c09b812a86ab8046c6aa4a2256", + "fields": { + "code_commune_insee": "05131", + "nom_de_la_commune": "ST AUBAN D OZE", + "code_postal": "05400", + "coordonnees_gps": [ + 44.4883156877, + 5.84847801019 + ], + "libelle_d_acheminement": "ST AUBAN D OZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84847801019, + 44.4883156877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f40e9dff4ebe7441891ec3aa2283aedf5f3d0277", + "fields": { + "code_commune_insee": "05133", + "nom_de_la_commune": "ST CHAFFREY", + "code_postal": "05330", + "coordonnees_gps": [ + 44.9346479572, + 6.60139023926 + ], + "libelle_d_acheminement": "ST CHAFFREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60139023926, + 44.9346479572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a06e9890dfc806aad8e992eaea9ef771bad078a3", + "fields": { + "code_commune_insee": "05134", + "nom_de_la_commune": "ST CLEMENT SUR DURANCE", + "code_postal": "05600", + "coordonnees_gps": [ + 44.6478034969, + 6.56074041767 + ], + "libelle_d_acheminement": "ST CLEMENT SUR DURANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56074041767, + 44.6478034969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "712e13e2f05631afc844ec131189dde619df11d2", + "fields": { + "code_commune_insee": "05154", + "nom_de_la_commune": "ST PIERRE D ARGENCON", + "code_postal": "05140", + "coordonnees_gps": [ + 44.5199464873, + 5.69046512909 + ], + "libelle_d_acheminement": "ST PIERRE D ARGENCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69046512909, + 44.5199464873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c15e8794d6b9e6a760a2a5181faa6a94f59e2bbc", + "fields": { + "code_commune_insee": "05157", + "nom_de_la_commune": "ST VERAN", + "code_postal": "05350", + "coordonnees_gps": [ + 44.684530806, + 6.8905743766 + ], + "libelle_d_acheminement": "ST VERAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8905743766, + 44.684530806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "161fcc14409902ad65c0915470da6e8ca947519f", + "fields": { + "code_commune_insee": "05161", + "nom_de_la_commune": "LA SALLE LES ALPES", + "code_postal": "05240", + "coordonnees_gps": [ + 44.9526685727, + 6.5653564178 + ], + "libelle_d_acheminement": "LA SALLE LES ALPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5653564178, + 44.9526685727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d6a8dcaa2ddc9cae071824197eba441b6e4fdf3", + "fields": { + "code_commune_insee": "05163", + "nom_de_la_commune": "LE SAUZE DU LAC", + "code_postal": "05160", + "coordonnees_gps": [ + 44.485574244, + 6.32317639258 + ], + "libelle_d_acheminement": "LE SAUZE DU LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32317639258, + 44.485574244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e44949e35acf038bd0ada1007d204d4639adf586", + "fields": { + "code_commune_insee": "05164", + "nom_de_la_commune": "SAVINES LE LAC", + "code_postal": "05160", + "coordonnees_gps": [ + 44.5273256992, + 6.39368059257 + ], + "libelle_d_acheminement": "SAVINES LE LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39368059257, + 44.5273256992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aff6914fe3612190c3171c6d3149662796a93fb8", + "fields": { + "code_commune_insee": "05165", + "nom_de_la_commune": "SAVOURNON", + "code_postal": "05700", + "coordonnees_gps": [ + 44.4240775993, + 5.79927741464 + ], + "libelle_d_acheminement": "SAVOURNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79927741464, + 44.4240775993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1369215e1ac2c5e1bd0079062bfe8cd7827e4e6f", + "fields": { + "code_commune_insee": "05167", + "nom_de_la_commune": "SIGOTTIER", + "code_postal": "05700", + "coordonnees_gps": [ + 44.458049604, + 5.68531113946 + ], + "libelle_d_acheminement": "SIGOTTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68531113946, + 44.458049604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4e389ff5dfbc783db479e8e0f038d70a712aa2d", + "fields": { + "code_commune_insee": "05172", + "nom_de_la_commune": "TRESCLEOUX", + "code_postal": "05700", + "coordonnees_gps": [ + 44.3549508677, + 5.71825730245 + ], + "libelle_d_acheminement": "TRESCLEOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71825730245, + 44.3549508677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26f55b472bc02036f712fa002d15bee220fbec79", + "fields": { + "code_commune_insee": "05178", + "nom_de_la_commune": "VENTAVON", + "code_postal": "05300", + "coordonnees_gps": [ + 44.3856656442, + 5.88845374579 + ], + "libelle_d_acheminement": "VENTAVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88845374579, + 44.3856656442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88962a22e309fcb4797b3f3d5cd35e5ff91d42ff", + "fields": { + "code_commune_insee": "05180", + "nom_de_la_commune": "LES VIGNEAUX", + "code_postal": "05120", + "coordonnees_gps": [ + 44.8212773186, + 6.53677172828 + ], + "libelle_d_acheminement": "LES VIGNEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53677172828, + 44.8212773186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6eefd6879451594068d80311633f3efe7ab32d1", + "fields": { + "code_commune_insee": "06014", + "nom_de_la_commune": "BENDEJUN", + "code_postal": "06390", + "coordonnees_gps": [ + 43.8303269547, + 7.28447130629 + ], + "libelle_d_acheminement": "BENDEJUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28447130629, + 43.8303269547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfe43cad5bbd2e5a1cd793e0a69ffaa30603472e", + "fields": { + "code_commune_insee": "06016", + "nom_de_la_commune": "BEUIL", + "code_postal": "06470", + "coordonnees_gps": [ + 44.1081242884, + 6.97212458083 + ], + "libelle_d_acheminement": "BEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97212458083, + 44.1081242884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88e112bc1de91ea2cb4f8c08514fb277f16a5992", + "fields": { + "code_commune_insee": "06018", + "nom_de_la_commune": "BIOT", + "code_postal": "06410", + "coordonnees_gps": [ + 43.6276558141, + 7.08318612891 + ], + "libelle_d_acheminement": "BIOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08318612891, + 43.6276558141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce2c4169a1a8967e11682bea711bbd182c6e3449", + "fields": { + "code_commune_insee": "06019", + "nom_de_la_commune": "BLAUSASC", + "code_postal": "06440", + "coordonnees_gps": [ + 43.7934680936, + 7.36033477624 + ], + "libelle_d_acheminement": "BLAUSASC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36033477624, + 43.7934680936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed4cd7a73a0ec28abf3e2432a7084a7ba533a6dd", + "fields": { + "code_commune_insee": "06022", + "nom_de_la_commune": "BOUYON", + "code_postal": "06510", + "coordonnees_gps": [ + 43.8254399796, + 7.12553872813 + ], + "libelle_d_acheminement": "BOUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12553872813, + 43.8254399796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8497ba241eb3ae3f36bf90742084affa9f37fd0b", + "fields": { + "code_commune_insee": "06029", + "nom_de_la_commune": "CANNES", + "code_postal": "06400", + "coordonnees_gps": [ + 43.5526202843, + 7.00427592728 + ], + "libelle_d_acheminement": "CANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00427592728, + 43.5526202843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe78bd03fb0a13e22dadef2e950b26a7dadc00e8", + "fields": { + "code_commune_insee": "06030", + "nom_de_la_commune": "LE CANNET", + "code_postal": "06110", + "coordonnees_gps": [ + 43.5729768613, + 7.00642057758 + ], + "libelle_d_acheminement": "LE CANNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00642057758, + 43.5729768613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "867ebbbf27aab18da1f33a474904f10c3f9a6c71", + "fields": { + "ligne_5": "ROCHEVILLE", + "code_commune_insee": "06030", + "libelle_d_acheminement": "LE CANNET", + "code_postal": "06110", + "nom_de_la_commune": "LE CANNET", + "coordonnees_gps": [ + 43.5729768613, + 7.00642057758 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00642057758, + 43.5729768613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27877c3e51a5bda6c61e572ade6182629d7ac412", + "fields": { + "code_commune_insee": "06034", + "nom_de_la_commune": "CASTAGNIERS", + "code_postal": "06670", + "coordonnees_gps": [ + 43.7921108913, + 7.2277413307 + ], + "libelle_d_acheminement": "CASTAGNIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2277413307, + 43.7921108913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0729e61f89e28aa8e3ad177b25e63313a4ad7873", + "fields": { + "code_commune_insee": "06041", + "nom_de_la_commune": "CIPIERES", + "code_postal": "06620", + "coordonnees_gps": [ + 43.7695926923, + 6.92814526285 + ], + "libelle_d_acheminement": "CIPIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92814526285, + 43.7695926923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0035b4e96d8109414e464636167a1b293216bad4", + "fields": { + "code_commune_insee": "06046", + "nom_de_la_commune": "COLOMARS", + "code_postal": "06670", + "coordonnees_gps": [ + 43.7594234187, + 7.22263249849 + ], + "libelle_d_acheminement": "COLOMARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22263249849, + 43.7594234187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cee3475d9d66d86a41525924da1624883b3d6d65", + "fields": { + "code_commune_insee": "06047", + "nom_de_la_commune": "CONSEGUDES", + "code_postal": "06510", + "coordonnees_gps": [ + 43.8406957218, + 7.04503670887 + ], + "libelle_d_acheminement": "CONSEGUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04503670887, + 43.8406957218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ab426a2c14f6bf61f8591dc88b1bc9cc04301f9", + "fields": { + "code_commune_insee": "06059", + "nom_de_la_commune": "EZE", + "code_postal": "06360", + "coordonnees_gps": [ + 43.7289260198, + 7.36057188413 + ], + "libelle_d_acheminement": "EZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36057188413, + 43.7289260198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a82c7e327d2a64647809ae03961c01f6812f754b", + "fields": { + "code_commune_insee": "06076", + "nom_de_la_commune": "LIEUCHE", + "code_postal": "06260", + "coordonnees_gps": [ + 44.0015669365, + 7.03241078566 + ], + "libelle_d_acheminement": "LIEUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03241078566, + 44.0015669365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea9e89a13ef41dac2d2d4cb9ed25c774b474989b", + "fields": { + "code_commune_insee": "06077", + "nom_de_la_commune": "LUCERAM", + "code_postal": "06440", + "coordonnees_gps": [ + 43.9005726905, + 7.35265575307 + ], + "libelle_d_acheminement": "LUCERAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35265575307, + 43.9005726905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11c8c408306c395e5c2659fd30a9fb79376fa737", + "fields": { + "ligne_5": "LA NAPOULE", + "code_commune_insee": "06079", + "libelle_d_acheminement": "MANDELIEU LA NAPOULE", + "code_postal": "06210", + "nom_de_la_commune": "MANDELIEU LA NAPOULE", + "coordonnees_gps": [ + 43.5380510468, + 6.91808936542 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91808936542, + 43.5380510468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eadfffc0d805e11330be1cedefecdd827055748", + "fields": { + "code_commune_insee": "06081", + "nom_de_la_commune": "LE MAS", + "code_postal": "06910", + "coordonnees_gps": [ + 43.8369129507, + 6.85894074749 + ], + "libelle_d_acheminement": "LE MAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85894074749, + 43.8369129507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53a30c5b06b11f136da564a69c86b47b2d7dcebf", + "fields": { + "code_commune_insee": "06082", + "nom_de_la_commune": "MASSOINS", + "code_postal": "06710", + "coordonnees_gps": [ + 43.9477022711, + 7.12430252381 + ], + "libelle_d_acheminement": "MASSOINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12430252381, + 43.9477022711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1960ba4455e3d062de584193af0fcf665d26a73b", + "fields": { + "code_commune_insee": "06088", + "nom_de_la_commune": "NICE", + "code_postal": "06200", + "coordonnees_gps": [ + 43.7119992661, + 7.23826889465 + ], + "libelle_d_acheminement": "NICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23826889465, + 43.7119992661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c74166c201c328a07e243c343aba22a44e0a26f8", + "fields": { + "ligne_5": "LA GRAVE DE PEILLE", + "code_commune_insee": "06091", + "libelle_d_acheminement": "PEILLE", + "code_postal": "06440", + "nom_de_la_commune": "PEILLE", + "coordonnees_gps": [ + 43.8064648293, + 7.41111016741 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41111016741, + 43.8064648293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f3b97c074e4d17949ee57d5d7cc3b81e4982f62", + "fields": { + "code_commune_insee": "06098", + "nom_de_la_commune": "PUGET ROSTANG", + "code_postal": "06260", + "coordonnees_gps": [ + 43.9872004758, + 6.93685582204 + ], + "libelle_d_acheminement": "PUGET ROSTANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93685582204, + 43.9872004758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ad6ce9049442aec642cd4287800ae044d1914e1", + "fields": { + "code_commune_insee": "06101", + "nom_de_la_commune": "RIGAUD", + "code_postal": "06260", + "coordonnees_gps": [ + 43.9929332886, + 6.97505083413 + ], + "libelle_d_acheminement": "RIGAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97505083413, + 43.9929332886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09c78daa9fecd5ee4295d4db9de266c3d731e1d8", + "fields": { + "code_commune_insee": "06104", + "nom_de_la_commune": "ROQUEBRUNE CAP MARTIN", + "code_postal": "06190", + "coordonnees_gps": [ + 43.7638278953, + 7.4587361611 + ], + "libelle_d_acheminement": "ROQUEBRUNE CAP MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4587361611, + 43.7638278953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dac68bfaa1ab2962688516463fbbcaa16d841f07", + "fields": { + "ligne_5": "CARNOLES", + "code_commune_insee": "06104", + "libelle_d_acheminement": "ROQUEBRUNE CAP MARTIN", + "code_postal": "06190", + "nom_de_la_commune": "ROQUEBRUNE CAP MARTIN", + "coordonnees_gps": [ + 43.7638278953, + 7.4587361611 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4587361611, + 43.7638278953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1e2e16dfe5824dc6d26750c6426d9b17cd86b22", + "fields": { + "code_commune_insee": "06106", + "nom_de_la_commune": "ROQUESTERON", + "code_postal": "06910", + "coordonnees_gps": [ + 43.8677906196, + 7.02413611655 + ], + "libelle_d_acheminement": "ROQUESTERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02413611655, + 43.8677906196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95ac73dbaaefef0d386e1acc3d1dd3f145a80055", + "fields": { + "code_commune_insee": "06115", + "nom_de_la_commune": "ST ANTONIN", + "code_postal": "06260", + "coordonnees_gps": [ + 43.9078444006, + 6.97661268948 + ], + "libelle_d_acheminement": "ST ANTONIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97661268948, + 43.9078444006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f320de5942a53e52695eea7e0fccd9973527d5b", + "fields": { + "code_commune_insee": "06117", + "nom_de_la_commune": "ST BLAISE", + "code_postal": "06670", + "coordonnees_gps": [ + 43.8129337899, + 7.23022336252 + ], + "libelle_d_acheminement": "ST BLAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23022336252, + 43.8129337899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62b8668d452088ba60f8a5ad50ef5231769c96d3", + "fields": { + "code_commune_insee": "06120", + "nom_de_la_commune": "ST ETIENNE DE TINEE", + "code_postal": "06660", + "coordonnees_gps": [ + 44.2491492809, + 6.92452445063 + ], + "libelle_d_acheminement": "ST ETIENNE DE TINEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92452445063, + 44.2491492809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "992ff3c13421077cc266c64c3614785fee37c122", + "fields": { + "code_commune_insee": "06121", + "nom_de_la_commune": "ST JEAN CAP FERRAT", + "code_postal": "06230", + "coordonnees_gps": [ + 43.687178893, + 7.32993632437 + ], + "libelle_d_acheminement": "ST JEAN CAP FERRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32993632437, + 43.687178893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c8c09852cc723f91f8492912a926ee47b38c473", + "fields": { + "code_commune_insee": "06126", + "nom_de_la_commune": "ST MARTIN DU VAR", + "code_postal": "06670", + "coordonnees_gps": [ + 43.8166172421, + 7.19929220425 + ], + "libelle_d_acheminement": "ST MARTIN DU VAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19929220425, + 43.8166172421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0589163bf3c9623fc1da245125f058c352b8e868", + "fields": { + "ligne_5": "LE BOREON", + "code_commune_insee": "06127", + "libelle_d_acheminement": "ST MARTIN VESUBIE", + "code_postal": "06450", + "nom_de_la_commune": "ST MARTIN VESUBIE", + "coordonnees_gps": [ + 44.1020722047, + 7.30244071608 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30244071608, + 44.1020722047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21994fa2d82b76c1205825260ba265ea31b65f6e", + "fields": { + "code_commune_insee": "06129", + "nom_de_la_commune": "ST SAUVEUR SUR TINEE", + "code_postal": "06420", + "coordonnees_gps": [ + 44.1210676615, + 7.11814485955 + ], + "libelle_d_acheminement": "ST SAUVEUR SUR TINEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11814485955, + 44.1210676615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "678155d0a7acce72b453dec20d5846f594e3db37", + "fields": { + "code_commune_insee": "06131", + "nom_de_la_commune": "SALLAGRIFFON", + "code_postal": "06910", + "coordonnees_gps": [ + 43.8807695445, + 6.91373768806 + ], + "libelle_d_acheminement": "SALLAGRIFFON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91373768806, + 43.8807695445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd4ee8a3139f0b173c81a5f348bcdcd395d745bd", + "fields": { + "ligne_5": "MIRAMAR", + "code_commune_insee": "06138", + "libelle_d_acheminement": "THEOULE SUR MER", + "code_postal": "06590", + "nom_de_la_commune": "THEOULE SUR MER", + "coordonnees_gps": [ + 43.4985345439, + 6.92965248383 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92965248383, + 43.4985345439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cfa4d7ec15e21f28b38bf061533f3da81be7525", + "fields": { + "code_commune_insee": "06143", + "nom_de_la_commune": "TOUET SUR VAR", + "code_postal": "06710", + "coordonnees_gps": [ + 43.9433123484, + 7.01347640084 + ], + "libelle_d_acheminement": "TOUET SUR VAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01347640084, + 43.9433123484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dd67e38dbe2440575c8b1c43de23580f56ec772", + "fields": { + "code_commune_insee": "06146", + "nom_de_la_commune": "TOURNEFORT", + "code_postal": "06420", + "coordonnees_gps": [ + 43.9413988757, + 7.15850315093 + ], + "libelle_d_acheminement": "TOURNEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15850315093, + 43.9413988757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5993f4b7ba5ab649cd2210d728b0e14fc50583ba", + "fields": { + "code_commune_insee": "06148", + "nom_de_la_commune": "TOURRETTES SUR LOUP", + "code_postal": "06140", + "coordonnees_gps": [ + 43.7174536642, + 7.03989376281 + ], + "libelle_d_acheminement": "TOURRETTES SUR LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03989376281, + 43.7174536642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e52b31475d4c9365362ac30227a83092c61d4ec", + "fields": { + "ligne_5": "LE GOLFE JUAN", + "code_commune_insee": "06155", + "libelle_d_acheminement": "VALLAURIS", + "code_postal": "06220", + "nom_de_la_commune": "VALLAURIS", + "coordonnees_gps": [ + 43.5766472999, + 7.05836612893 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05836612893, + 43.5766472999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd35fd4a3e2dcd0cb3f71e19647dcf1ee8afe063", + "fields": { + "code_commune_insee": "06160", + "nom_de_la_commune": "VILLENEUVE D ENTRAUNES", + "code_postal": "06470", + "coordonnees_gps": [ + 44.1221416341, + 6.78190515159 + ], + "libelle_d_acheminement": "VILLENEUVE D ENTRAUNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78190515159, + 44.1221416341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98a9345407425ee5df724a5a94ed21766ec84aa9", + "fields": { + "code_commune_insee": "07002", + "nom_de_la_commune": "AILHON", + "code_postal": "07200", + "coordonnees_gps": [ + 44.5986106793, + 4.33305809833 + ], + "libelle_d_acheminement": "AILHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33305809833, + 44.5986106793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25d29e535fb48b3427dc7780dbac77adff82ee15", + "fields": { + "code_commune_insee": "07010", + "nom_de_la_commune": "ANNONAY", + "code_postal": "07100", + "coordonnees_gps": [ + 45.2460902392, + 4.65026947295 + ], + "libelle_d_acheminement": "ANNONAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65026947295, + 45.2460902392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d41db48e3380140b1c31651e9558bb69aba4c664", + "fields": { + "code_commune_insee": "07014", + "nom_de_la_commune": "ARLEBOSC", + "code_postal": "07410", + "coordonnees_gps": [ + 45.0403037816, + 4.63051185018 + ], + "libelle_d_acheminement": "ARLEBOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63051185018, + 45.0403037816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76fd6abda695fb4b4dc80c1025d39888697f339b", + "fields": { + "code_commune_insee": "07029", + "nom_de_la_commune": "BEAUMONT", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5426503498, + 4.17181045381 + ], + "libelle_d_acheminement": "BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17181045381, + 44.5426503498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8cd6f06e80a3183899dcf6ef211bb3e2e369010", + "fields": { + "code_commune_insee": "07036", + "nom_de_la_commune": "BOGY", + "code_postal": "07340", + "coordonnees_gps": [ + 45.2801067144, + 4.76743317012 + ], + "libelle_d_acheminement": "BOGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76743317012, + 45.2801067144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b77d02558c988c2cefca98439d9b996a8eb3a587", + "fields": { + "code_commune_insee": "07039", + "nom_de_la_commune": "BOZAS", + "code_postal": "07410", + "coordonnees_gps": [ + 45.0587357457, + 4.64835888675 + ], + "libelle_d_acheminement": "BOZAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64835888675, + 45.0587357457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58eface1d0e3012f7c88576c3e0df8acbb2bab76", + "fields": { + "code_commune_insee": "07044", + "nom_de_la_commune": "BROSSAINC", + "code_postal": "07340", + "coordonnees_gps": [ + 45.3271714387, + 4.67851483083 + ], + "libelle_d_acheminement": "BROSSAINC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67851483083, + 45.3271714387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66b555f90f344e698a73af6bcea262d88190e4a5", + "fields": { + "code_commune_insee": "07050", + "nom_de_la_commune": "CHAMBONAS", + "code_postal": "07140", + "coordonnees_gps": [ + 44.4263051358, + 4.12909504882 + ], + "libelle_d_acheminement": "CHAMBONAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12909504882, + 44.4263051358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c31f2b1882188808b043486b17b14ec5d59c623", + "fields": { + "code_commune_insee": "07051", + "nom_de_la_commune": "CHAMPAGNE", + "code_postal": "07340", + "coordonnees_gps": [ + 45.2767867383, + 4.79826211581 + ], + "libelle_d_acheminement": "CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79826211581, + 45.2767867383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b7590c727973e58bf956d40f74c57b3b26773a4", + "fields": { + "code_commune_insee": "07053", + "nom_de_la_commune": "CHANDOLAS", + "code_postal": "07230", + "coordonnees_gps": [ + 44.4136372398, + 4.24331144158 + ], + "libelle_d_acheminement": "CHANDOLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24331144158, + 44.4136372398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b5550fd5d48d14f226096710a1b3d5f5b318603", + "fields": { + "code_commune_insee": "07055", + "nom_de_la_commune": "CHARMES SUR RHONE", + "code_postal": "07800", + "coordonnees_gps": [ + 44.8667597066, + 4.83342054458 + ], + "libelle_d_acheminement": "CHARMES SUR RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83342054458, + 44.8667597066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43e579867c83692ed8e1dd780c83513ca8ca9687", + "fields": { + "code_commune_insee": "07058", + "nom_de_la_commune": "CHASSIERS", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5660636279, + 4.30216796986 + ], + "libelle_d_acheminement": "CHASSIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30216796986, + 44.5660636279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcacd51f38489ff6f4fa96495bebc4fe75919695", + "fields": { + "code_commune_insee": "07059", + "nom_de_la_commune": "CHATEAUBOURG", + "code_postal": "07130", + "coordonnees_gps": [ + 44.9874244104, + 4.83836116211 + ], + "libelle_d_acheminement": "CHATEAUBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83836116211, + 44.9874244104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "085d66cfc585c8a83ef7ce3b73fed2ee099786a1", + "fields": { + "code_commune_insee": "07062", + "nom_de_la_commune": "CHAZEAUX", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5951061566, + 4.2977955993 + ], + "libelle_d_acheminement": "CHAZEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2977955993, + 44.5951061566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f3fc50c9b541c248910ca428f10cc61b4e60d30", + "fields": { + "code_commune_insee": "07063", + "nom_de_la_commune": "CHEMINAS", + "code_postal": "07300", + "coordonnees_gps": [ + 45.1307657233, + 4.74087907307 + ], + "libelle_d_acheminement": "CHEMINAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74087907307, + 45.1307657233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2be0c98f1554ecdb77550486daac8ffec649b7db", + "fields": { + "code_commune_insee": "07066", + "nom_de_la_commune": "CHOMERAC", + "code_postal": "07210", + "coordonnees_gps": [ + 44.7102364616, + 4.67022375795 + ], + "libelle_d_acheminement": "CHOMERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67022375795, + 44.7102364616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "899b600df1740595b677fc02fb0d042338fb6aeb", + "fields": { + "code_commune_insee": "07069", + "nom_de_la_commune": "COLOMBIER LE VIEUX", + "code_postal": "07410", + "coordonnees_gps": [ + 45.0590148291, + 4.69898079433 + ], + "libelle_d_acheminement": "COLOMBIER LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69898079433, + 45.0590148291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9925701d48d759b9796ca041996c6c2d10a82e40", + "fields": { + "code_commune_insee": "07073", + "nom_de_la_commune": "LE CRESTET", + "code_postal": "07270", + "coordonnees_gps": [ + 45.0098651232, + 4.63903742378 + ], + "libelle_d_acheminement": "LE CRESTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63903742378, + 45.0098651232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8b0a44b9e3ac2b3e34c9fa0be1cb5c49a265f16", + "fields": { + "code_commune_insee": "07076", + "nom_de_la_commune": "CRUAS", + "code_postal": "07350", + "coordonnees_gps": [ + 44.6566420857, + 4.75658824385 + ], + "libelle_d_acheminement": "CRUAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75658824385, + 44.6566420857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6774abf87ca71ae6253a7d10cf2c05d3d73dfa9a", + "fields": { + "code_commune_insee": "07081", + "nom_de_la_commune": "DOMPNAC", + "code_postal": "07260", + "coordonnees_gps": [ + 44.5628656588, + 4.1071679513 + ], + "libelle_d_acheminement": "DOMPNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1071679513, + 44.5628656588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "415eaa390181992e1b945c4f1686f1b0c9381767", + "fields": { + "code_commune_insee": "07083", + "nom_de_la_commune": "DUNIERE SUR EYRIEUX", + "code_postal": "07360", + "coordonnees_gps": [ + 44.8344426554, + 4.65115576904 + ], + "libelle_d_acheminement": "DUNIERE SUR EYRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65115576904, + 44.8344426554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbfb7aaaef42d8cd4a722db77ebb400f0f136c77", + "fields": { + "code_commune_insee": "07085", + "nom_de_la_commune": "EMPURANY", + "code_postal": "07270", + "coordonnees_gps": [ + 45.026338574, + 4.59724737009 + ], + "libelle_d_acheminement": "EMPURANY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59724737009, + 45.026338574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9ed6c40cdb8dfde19ba92450a1f481b5725a76f", + "fields": { + "code_commune_insee": "07090", + "nom_de_la_commune": "FLAVIAC", + "code_postal": "07000", + "coordonnees_gps": [ + 44.7507352776, + 4.66001992522 + ], + "libelle_d_acheminement": "FLAVIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66001992522, + 44.7507352776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5982c2ae91cd4f0bb62fd954096b3bd9ea14ba23", + "fields": { + "code_commune_insee": "07091", + "nom_de_la_commune": "FONS", + "code_postal": "07200", + "coordonnees_gps": [ + 44.5814496268, + 4.34709805042 + ], + "libelle_d_acheminement": "FONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34709805042, + 44.5814496268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4d404f219d876ece5e7205ab07d9adc92bf29ea", + "fields": { + "code_commune_insee": "07115", + "nom_de_la_commune": "LABEAUME", + "code_postal": "07120", + "coordonnees_gps": [ + 44.4680870605, + 4.31105082566 + ], + "libelle_d_acheminement": "LABEAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31105082566, + 44.4680870605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "515577f32720d471b5fa47ed58099dd14b049f2a", + "fields": { + "code_commune_insee": "07120", + "nom_de_la_commune": "LACHAMP RAPHAEL", + "code_postal": "07530", + "coordonnees_gps": [ + 44.8006451695, + 4.28759440522 + ], + "libelle_d_acheminement": "LACHAMP RAPHAEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28759440522, + 44.8006451695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50b18549606960f03601dba91d16879d72958886", + "fields": { + "code_commune_insee": "07129", + "nom_de_la_commune": "LAMASTRE", + "code_postal": "07270", + "coordonnees_gps": [ + 44.9822539936, + 4.59081075503 + ], + "libelle_d_acheminement": "LAMASTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59081075503, + 44.9822539936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e392edce8a331393f1431c0f29d21ac4bf64f35e", + "fields": { + "code_commune_insee": "07147", + "nom_de_la_commune": "MALARCE SUR LA THINES", + "code_postal": "07140", + "coordonnees_gps": [ + 44.4780272206, + 4.05011924136 + ], + "libelle_d_acheminement": "MALARCE SUR LA THINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05011924136, + 44.4780272206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abe3f6f070377ca85b8aa5ecc07606032259a307", + "fields": { + "ligne_5": "THINES", + "code_commune_insee": "07147", + "libelle_d_acheminement": "MALARCE SUR LA THINES", + "code_postal": "07140", + "nom_de_la_commune": "MALARCE SUR LA THINES", + "coordonnees_gps": [ + 44.4780272206, + 4.05011924136 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05011924136, + 44.4780272206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72fd4d6fbbb4467241e0c82cd890a3aeb018d837", + "fields": { + "code_commune_insee": "07148", + "nom_de_la_commune": "MALBOSC", + "code_postal": "07140", + "coordonnees_gps": [ + 44.349514949, + 4.07246027808 + ], + "libelle_d_acheminement": "MALBOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07246027808, + 44.349514949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdf3746db74085d0214b95c142b0f49f370db7b8", + "fields": { + "code_commune_insee": "07155", + "nom_de_la_commune": "MERCUER", + "code_postal": "07200", + "coordonnees_gps": [ + 44.6260697061, + 4.35077904415 + ], + "libelle_d_acheminement": "MERCUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35077904415, + 44.6260697061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "099c9d925399f8c0901cdfbbb1a8905a9f96a01c", + "fields": { + "code_commune_insee": "07162", + "nom_de_la_commune": "MONTREAL", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5182302311, + 4.29420556332 + ], + "libelle_d_acheminement": "MONTREAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29420556332, + 44.5182302311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e90fa2332070688d5f144e189d50aa70ec68e00", + "fields": { + "code_commune_insee": "07167", + "nom_de_la_commune": "LES OLLIERES SUR EYRIEUX", + "code_postal": "07360", + "coordonnees_gps": [ + 44.8101851934, + 4.61974464994 + ], + "libelle_d_acheminement": "LES OLLIERES SUR EYRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61974464994, + 44.8101851934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77e7f5b9e6d4b2acd97d88a82248e83fd6ea431b", + "fields": { + "code_commune_insee": "07169", + "nom_de_la_commune": "OZON", + "code_postal": "07370", + "coordonnees_gps": [ + 45.1631858608, + 4.79658585866 + ], + "libelle_d_acheminement": "OZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79658585866, + 45.1631858608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9666e7b3131a47819742a4a89d1838a9fb15e747", + "fields": { + "code_commune_insee": "07177", + "nom_de_la_commune": "PLATS", + "code_postal": "07300", + "coordonnees_gps": [ + 45.0156478685, + 4.78034594921 + ], + "libelle_d_acheminement": "PLATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78034594921, + 45.0156478685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fdfa38286daf86c8e5fb8884b67ca4f7694476b", + "fields": { + "code_commune_insee": "07198", + "nom_de_la_commune": "ROMPON", + "code_postal": "07250", + "coordonnees_gps": [ + 44.7787195427, + 4.73009856646 + ], + "libelle_d_acheminement": "ROMPON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73009856646, + 44.7787195427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfdaba6242c77f28ab0a6ff2a00646bc474e6cc4", + "fields": { + "code_commune_insee": "07205", + "nom_de_la_commune": "ST ALBAN D AY", + "code_postal": "07790", + "coordonnees_gps": [ + 45.1862322828, + 4.63179784217 + ], + "libelle_d_acheminement": "ST ALBAN D AY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63179784217, + 45.1862322828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67e10c77fc8f29e3f1723133336f5a351c553735", + "fields": { + "code_commune_insee": "07206", + "nom_de_la_commune": "ST ALBAN EN MONTAGNE", + "code_postal": "07590", + "coordonnees_gps": [ + 44.7104160839, + 3.91795005767 + ], + "libelle_d_acheminement": "ST ALBAN EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91795005767, + 44.7104160839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3835277ff111ab17be682c6a280f43aee5c20ff0", + "fields": { + "ligne_5": "AURIOLLES", + "code_commune_insee": "07207", + "libelle_d_acheminement": "ST ALBAN AURIOLLES", + "code_postal": "07120", + "nom_de_la_commune": "ST ALBAN AURIOLLES", + "coordonnees_gps": [ + 44.4342653055, + 4.29515757348 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29515757348, + 44.4342653055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0329ba5198add8c15efc03583b00fc973e86441d", + "fields": { + "code_commune_insee": "07208", + "nom_de_la_commune": "ST ANDEOL DE BERG", + "code_postal": "07170", + "coordonnees_gps": [ + 44.530020748, + 4.53661194159 + ], + "libelle_d_acheminement": "ST ANDEOL DE BERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53661194159, + 44.530020748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed11b30e76ad1304189824a893089f71fcf15032", + "fields": { + "code_commune_insee": "07211", + "nom_de_la_commune": "ST ANDRE DE CRUZIERES", + "code_postal": "07460", + "coordonnees_gps": [ + 44.315163637, + 4.21241172389 + ], + "libelle_d_acheminement": "ST ANDRE DE CRUZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21241172389, + 44.315163637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd971ee5a4fa57c946987b50217d7a9dd0f27990", + "fields": { + "code_commune_insee": "07214", + "nom_de_la_commune": "ST APOLLINAIRE DE RIAS", + "code_postal": "07240", + "coordonnees_gps": [ + 44.9204690722, + 4.59052402464 + ], + "libelle_d_acheminement": "ST APOLLINAIRE DE RIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59052402464, + 44.9204690722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bcc83421f5624f15409b8195b5575ac89a71469", + "fields": { + "code_commune_insee": "07222", + "nom_de_la_commune": "ST CIERGE SOUS LE CHEYLARD", + "code_postal": "07160", + "coordonnees_gps": [ + 44.926149144, + 4.45359829884 + ], + "libelle_d_acheminement": "ST CIERGE SOUS LE CHEYLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45359829884, + 44.926149144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e8f25a6b438621fbeacb2539d696fcc0ccf7919", + "fields": { + "code_commune_insee": "07227", + "nom_de_la_commune": "ST CYR", + "code_postal": "07430", + "coordonnees_gps": [ + 45.2490601224, + 4.73642640952 + ], + "libelle_d_acheminement": "ST CYR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73642640952, + 45.2490601224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e086af3e7ff7385cfa9df797b2bfd0f087cf795c", + "fields": { + "code_commune_insee": "07242", + "nom_de_la_commune": "ST GINEYS EN COIRON", + "code_postal": "07580", + "coordonnees_gps": [ + 44.6337066136, + 4.53894294674 + ], + "libelle_d_acheminement": "ST GINEYS EN COIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53894294674, + 44.6337066136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "518d97e8da710c7f97caeedd411da9dbf156fa35", + "fields": { + "code_commune_insee": "07249", + "nom_de_la_commune": "ST JEURE D ANDAURE", + "code_postal": "07320", + "coordonnees_gps": [ + 45.0478373681, + 4.46395685246 + ], + "libelle_d_acheminement": "ST JEURE D ANDAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46395685246, + 45.0478373681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "077c7a65807bbf20a38dc42f70cdf7e77135e458", + "fields": { + "code_commune_insee": "07257", + "nom_de_la_commune": "ST JULIEN LE ROUX", + "code_postal": "07240", + "coordonnees_gps": [ + 44.8675203578, + 4.67592482949 + ], + "libelle_d_acheminement": "ST JULIEN LE ROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67592482949, + 44.8675203578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a407efdd7f24c08c76eca74c9af6c7c467704da3", + "fields": { + "code_commune_insee": "07258", + "nom_de_la_commune": "ST JULIEN VOCANCE", + "code_postal": "07690", + "coordonnees_gps": [ + 45.167010931, + 4.4877776042 + ], + "libelle_d_acheminement": "ST JULIEN VOCANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4877776042, + 45.167010931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39814c43fbb214796f4d55ac2bd8d4f47adf2f4b", + "fields": { + "ligne_5": "LAVAL D AURELLE", + "code_commune_insee": "07262", + "libelle_d_acheminement": "ST LAURENT BAINS LAVAL D AURELLE", + "code_postal": "07590", + "nom_de_la_commune": "ST LAURENT BAINS LAVAL D AURELLE", + "coordonnees_gps": [ + 44.5971365641, + 3.95806929863 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95806929863, + 44.5971365641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5651e4c5af7c0fde3432dc3df5d0d48475259127", + "fields": { + "code_commune_insee": "07265", + "nom_de_la_commune": "ST MARCEL LES ANNONAY", + "code_postal": "07100", + "coordonnees_gps": [ + 45.2885682592, + 4.62947742876 + ], + "libelle_d_acheminement": "ST MARCEL LES ANNONAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62947742876, + 45.2885682592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b72c2daed5af47450aa76d247f5b7eea8cddf885", + "fields": { + "code_commune_insee": "07266", + "nom_de_la_commune": "STE MARGUERITE LAFIGERE", + "code_postal": "07140", + "coordonnees_gps": [ + 44.4845583529, + 3.99775571578 + ], + "libelle_d_acheminement": "STE MARGUERITE LAFIGERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99775571578, + 44.4845583529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d726e1353cb2eef01d93ce5678124daa5bed974", + "fields": { + "code_commune_insee": "07270", + "nom_de_la_commune": "ST MARTIN SUR LAVEZON", + "code_postal": "07400", + "coordonnees_gps": [ + 44.6347374682, + 4.65644801966 + ], + "libelle_d_acheminement": "ST MARTIN SUR LAVEZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65644801966, + 44.6347374682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "468b8ffb97f66417c5cf208e2021514c6f0e2317", + "fields": { + "ligne_5": "ST MARTIN L INFERIEUR", + "code_commune_insee": "07270", + "libelle_d_acheminement": "ST MARTIN SUR LAVEZON", + "code_postal": "07400", + "nom_de_la_commune": "ST MARTIN SUR LAVEZON", + "coordonnees_gps": [ + 44.6347374682, + 4.65644801966 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65644801966, + 44.6347374682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e81cccb4471a4d180de3250c1278d5fed66633b", + "fields": { + "code_commune_insee": "07280", + "nom_de_la_commune": "ST PAUL LE JEUNE", + "code_postal": "07460", + "coordonnees_gps": [ + 44.3323751475, + 4.15520621175 + ], + "libelle_d_acheminement": "ST PAUL LE JEUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15520621175, + 44.3323751475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ddc0e2942f5bda91e89f80576d1af48792ea295", + "fields": { + "code_commune_insee": "07281", + "nom_de_la_commune": "ST PERAY", + "code_postal": "07130", + "coordonnees_gps": [ + 44.9410716967, + 4.82459034307 + ], + "libelle_d_acheminement": "ST PERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82459034307, + 44.9410716967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e09f380e2afdc543f94b15516d2e663c5dc20d3f", + "fields": { + "ligne_5": "ST JEAN DE POURCHARESSE", + "code_commune_insee": "07284", + "libelle_d_acheminement": "ST PIERRE ST JEAN", + "code_postal": "07140", + "nom_de_la_commune": "ST PIERRE ST JEAN", + "coordonnees_gps": [ + 44.4825896332, + 4.10164484089 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10164484089, + 44.4825896332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a30a416b95617546ad0f04319866efcb13ba8e61", + "fields": { + "code_commune_insee": "07287", + "nom_de_la_commune": "ST PONS", + "code_postal": "07580", + "coordonnees_gps": [ + 44.5987337858, + 4.57192531163 + ], + "libelle_d_acheminement": "ST PONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57192531163, + 44.5987337858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d55bb67afe5095f679a6f53be6209772e923f237", + "fields": { + "code_commune_insee": "07289", + "nom_de_la_commune": "ST PRIVAT", + "code_postal": "07200", + "coordonnees_gps": [ + 44.6285700497, + 4.42285507734 + ], + "libelle_d_acheminement": "ST PRIVAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42285507734, + 44.6285700497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82dfdadbfe3b0ba4864baddf236cf2d250dd039c", + "fields": { + "code_commune_insee": "07290", + "nom_de_la_commune": "ST PRIX", + "code_postal": "07270", + "coordonnees_gps": [ + 44.9471894695, + 4.50107572096 + ], + "libelle_d_acheminement": "ST PRIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50107572096, + 44.9471894695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "529a1c5f143186d262f42c35f04dfe3fcd37b055", + "fields": { + "code_commune_insee": "07299", + "nom_de_la_commune": "ST SYMPHORIEN DE MAHUN", + "code_postal": "07290", + "coordonnees_gps": [ + 45.1563624084, + 4.54974393041 + ], + "libelle_d_acheminement": "ST SYMPHORIEN DE MAHUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54974393041, + 45.1563624084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c735312e5649e3337a63da82041c3a5262ccbe7a", + "fields": { + "code_commune_insee": "07316", + "nom_de_la_commune": "SOYONS", + "code_postal": "07130", + "coordonnees_gps": [ + 44.8920478488, + 4.85094581265 + ], + "libelle_d_acheminement": "SOYONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85094581265, + 44.8920478488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ef7c01d0f21c590602ee87bd30af7ae571a1b38", + "fields": { + "code_commune_insee": "07318", + "nom_de_la_commune": "TAURIERS", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5518944269, + 4.2730187542 + ], + "libelle_d_acheminement": "TAURIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2730187542, + 44.5518944269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b274bc719f2e2536097642c6405d2bbe827600d", + "fields": { + "code_commune_insee": "07319", + "nom_de_la_commune": "LE TEIL", + "code_postal": "07400", + "coordonnees_gps": [ + 44.5432149708, + 4.66470569343 + ], + "libelle_d_acheminement": "LE TEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66470569343, + 44.5432149708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7670c0cdaf9b6330ec16c02b3b742637e1023303", + "fields": { + "code_commune_insee": "07323", + "nom_de_la_commune": "TOULAUD", + "code_postal": "07130", + "coordonnees_gps": [ + 44.9021816561, + 4.79271125843 + ], + "libelle_d_acheminement": "TOULAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79271125843, + 44.9021816561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e443e0d7f8ca0ee9ac191e884167709feca7817", + "fields": { + "code_commune_insee": "07327", + "nom_de_la_commune": "UZER", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5176949506, + 4.3270953047 + ], + "libelle_d_acheminement": "UZER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3270953047, + 44.5176949506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f3f1391068f02876e213e5d5fd970789da4a248", + "fields": { + "code_commune_insee": "07329", + "nom_de_la_commune": "VALGORGE", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5942570326, + 4.11258793798 + ], + "libelle_d_acheminement": "VALGORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11258793798, + 44.5942570326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0a060ea028a8db5c037a2bd62aa31e14f4a5853", + "fields": { + "ligne_5": "NAVES", + "code_commune_insee": "07334", + "libelle_d_acheminement": "LES VANS", + "code_postal": "07140", + "nom_de_la_commune": "LES VANS", + "coordonnees_gps": [ + 44.392206287, + 4.11524168722 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11524168722, + 44.392206287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c178b736f29edcb414000dc6815208a18b55087", + "fields": { + "code_commune_insee": "07339", + "nom_de_la_commune": "VESSEAUX", + "code_postal": "07200", + "coordonnees_gps": [ + 44.6575169192, + 4.44419824196 + ], + "libelle_d_acheminement": "VESSEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44419824196, + 44.6575169192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58352d225fa5f8b7ade78dbebb0bfad2993f80ae", + "fields": { + "code_commune_insee": "07347", + "nom_de_la_commune": "VOCANCE", + "code_postal": "07690", + "coordonnees_gps": [ + 45.1946478686, + 4.56450150023 + ], + "libelle_d_acheminement": "VOCANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56450150023, + 45.1946478686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dbafe98389fc127efcd87da94362a959de35c85", + "fields": { + "code_commune_insee": "07348", + "nom_de_la_commune": "VOGUE", + "code_postal": "07200", + "coordonnees_gps": [ + 44.5576610723, + 4.41089587827 + ], + "libelle_d_acheminement": "VOGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41089587827, + 44.5576610723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1353bfd15e6cb2d90c9c73a6402f1844cdee8c5a", + "fields": { + "code_commune_insee": "08006", + "nom_de_la_commune": "ALLAND HUY ET SAUSSEUIL", + "code_postal": "08130", + "coordonnees_gps": [ + 49.5119483771, + 4.54919404707 + ], + "libelle_d_acheminement": "ALLAND HUY ET SAUSSEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54919404707, + 49.5119483771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f489cae4fc37a8be3aa40a345908297ad08f3f7", + "fields": { + "code_commune_insee": "08015", + "nom_de_la_commune": "ANTHENY", + "code_postal": "08260", + "coordonnees_gps": [ + 49.8444301625, + 4.30477603028 + ], + "libelle_d_acheminement": "ANTHENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30477603028, + 49.8444301625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2f52f068dfe3cdae4945d291d4fb878dfb0f678", + "fields": { + "code_commune_insee": "08017", + "nom_de_la_commune": "APREMONT", + "code_postal": "08250", + "coordonnees_gps": [ + 49.259356566, + 4.96764027649 + ], + "libelle_d_acheminement": "APREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96764027649, + 49.259356566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cda86814b5580a2982952c0a26f416dd3c8d63a2", + "fields": { + "code_commune_insee": "08019", + "nom_de_la_commune": "LES GRANDES ARMOISES", + "code_postal": "08390", + "coordonnees_gps": [ + 49.5292881443, + 4.89884201753 + ], + "libelle_d_acheminement": "LES GRANDES ARMOISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89884201753, + 49.5292881443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a623f69a697fb5ee6cb315a68dde72cb1e10e76", + "fields": { + "code_commune_insee": "08020", + "nom_de_la_commune": "LES PETITES ARMOISES", + "code_postal": "08390", + "coordonnees_gps": [ + 49.500852413, + 4.82851805787 + ], + "libelle_d_acheminement": "LES PETITES ARMOISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82851805787, + 49.500852413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "def957fa9176b07d5ceee5d9bb7aecc1e7751c70", + "fields": { + "code_commune_insee": "08022", + "nom_de_la_commune": "ARREUX", + "code_postal": "08090", + "coordonnees_gps": [ + 49.8258643025, + 4.6613050432 + ], + "libelle_d_acheminement": "ARREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6613050432, + 49.8258643025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f9fe514b9c05f84547896730634f600b4c3155a", + "fields": { + "code_commune_insee": "08027", + "nom_de_la_commune": "AUBONCOURT VAUZELLES", + "code_postal": "08270", + "coordonnees_gps": [ + 49.5558989331, + 4.48296681132 + ], + "libelle_d_acheminement": "AUBONCOURT VAUZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48296681132, + 49.5558989331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2504bfe7b45d70992240c43bb77a10ccd4eac9bd", + "fields": { + "code_commune_insee": "08037", + "nom_de_la_commune": "AUVILLERS LES FORGES", + "code_postal": "08260", + "coordonnees_gps": [ + 49.8661184339, + 4.36077137657 + ], + "libelle_d_acheminement": "AUVILLERS LES FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36077137657, + 49.8661184339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f222d5f9c9441d264a5eebfe0f3f45a6758a0b7", + "fields": { + "code_commune_insee": "08038", + "nom_de_la_commune": "AVANCON", + "code_postal": "08300", + "coordonnees_gps": [ + 49.4808582492, + 4.25135015983 + ], + "libelle_d_acheminement": "AVANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25135015983, + 49.4808582492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edfc715f876058f947ec52dd71e05d76da9b0a79", + "fields": { + "code_commune_insee": "08041", + "nom_de_la_commune": "BAALONS", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6016790531, + 4.66754593239 + ], + "libelle_d_acheminement": "BAALONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66754593239, + 49.6016790531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0952a0183f6a20fbc185df95a7e01782481ab574", + "fields": { + "ligne_5": "BAY", + "code_commune_insee": "08069", + "libelle_d_acheminement": "BLANCHEFOSSE ET BAY", + "code_postal": "08290", + "nom_de_la_commune": "BLANCHEFOSSE ET BAY", + "coordonnees_gps": [ + 49.7665831974, + 4.25235197584 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25235197584, + 49.7665831974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d72ecc330e06ab27705e7cfb418c25bb38a33e15", + "fields": { + "code_commune_insee": "08075", + "nom_de_la_commune": "BOULT AUX BOIS", + "code_postal": "08240", + "coordonnees_gps": [ + 49.4191409109, + 4.83535525707 + ], + "libelle_d_acheminement": "BOULT AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83535525707, + 49.4191409109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52ea60313e99f64ab59b71762d00be2f37ebbcf7", + "fields": { + "code_commune_insee": "08076", + "nom_de_la_commune": "BOULZICOURT", + "code_postal": "08410", + "coordonnees_gps": [ + 49.6898690039, + 4.69742034088 + ], + "libelle_d_acheminement": "BOULZICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69742034088, + 49.6898690039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35b73afc77bd97f0cd41168fe03c628e61051ed9", + "fields": { + "code_commune_insee": "08083", + "nom_de_la_commune": "BREVILLY", + "code_postal": "08140", + "coordonnees_gps": [ + 49.6589910342, + 5.07963407809 + ], + "libelle_d_acheminement": "BREVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07963407809, + 49.6589910342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "814ba4fc849a203d3aa537ac61d5fb648e7bc67f", + "fields": { + "code_commune_insee": "08086", + "nom_de_la_commune": "BRIQUENAY", + "code_postal": "08240", + "coordonnees_gps": [ + 49.4034934616, + 4.86933971508 + ], + "libelle_d_acheminement": "BRIQUENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86933971508, + 49.4034934616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "863f072d5ce7647807889b8d115865fe27d74def", + "fields": { + "code_commune_insee": "08094", + "nom_de_la_commune": "CERNION", + "code_postal": "08260", + "coordonnees_gps": [ + 49.7993830158, + 4.42616779121 + ], + "libelle_d_acheminement": "CERNION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42616779121, + 49.7993830158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50e6b3203db7b6e07fe97a20dc5ce2cd6fd0ff96", + "fields": { + "code_commune_insee": "08095", + "nom_de_la_commune": "CHAGNY", + "code_postal": "08430", + "coordonnees_gps": [ + 49.5720292475, + 4.69971401833 + ], + "libelle_d_acheminement": "CHAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69971401833, + 49.5720292475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3a3c0999269da02e8b30955f3897d0a63a13985", + "fields": { + "code_commune_insee": "08106", + "nom_de_la_commune": "CHARNOIS", + "code_postal": "08600", + "coordonnees_gps": [ + 50.1025146166, + 4.83111370773 + ], + "libelle_d_acheminement": "CHARNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83111370773, + 50.1025146166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90a919a3c000aca28b7093f00e6d0c82ed0ba076", + "fields": { + "code_commune_insee": "08107", + "nom_de_la_commune": "CHATEAU PORCIEN", + "code_postal": "08360", + "coordonnees_gps": [ + 49.5340250071, + 4.24761875411 + ], + "libelle_d_acheminement": "CHATEAU PORCIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24761875411, + 49.5340250071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1cf2b33204c3121e0a5003fa8c96d374dc2e0a1", + "fields": { + "code_commune_insee": "08117", + "nom_de_la_commune": "CHESNOIS AUBONCOURT", + "code_postal": "08270", + "coordonnees_gps": [ + 49.5610454523, + 4.56741706583 + ], + "libelle_d_acheminement": "CHESNOIS AUBONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56741706583, + 49.5610454523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30add2d1fae4a381566968d0a19d8809a5b9385a", + "fields": { + "code_commune_insee": "08121", + "nom_de_la_commune": "CHILLY", + "code_postal": "08260", + "coordonnees_gps": [ + 49.8419441004, + 4.47063788106 + ], + "libelle_d_acheminement": "CHILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47063788106, + 49.8419441004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d7239bcc94c3ce86ebdc3878dd479c4d62d9ba0", + "fields": { + "code_commune_insee": "08137", + "nom_de_la_commune": "DAMOUZY", + "code_postal": "08090", + "coordonnees_gps": [ + 49.8078625356, + 4.68275479067 + ], + "libelle_d_acheminement": "DAMOUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68275479067, + 49.8078625356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72b860c97c4ab24e8f311ce882f27681f7014305", + "fields": { + "code_commune_insee": "08145", + "nom_de_la_commune": "DOUZY", + "code_postal": "08140", + "coordonnees_gps": [ + 49.6732112, + 5.03586246087 + ], + "libelle_d_acheminement": "DOUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03586246087, + 49.6732112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fef9cd11b91ed48a31728f7c8091b6fb2709e919", + "fields": { + "ligne_5": "MAIRY", + "code_commune_insee": "08145", + "libelle_d_acheminement": "DOUZY", + "code_postal": "08140", + "nom_de_la_commune": "DOUZY", + "coordonnees_gps": [ + 49.6732112, + 5.03586246087 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03586246087, + 49.6732112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27a3af2b72de943dd0f5bd9457e69d09c396bffd", + "fields": { + "code_commune_insee": "08149", + "nom_de_la_commune": "L ECHELLE", + "code_postal": "08150", + "coordonnees_gps": [ + 49.8052823927, + 4.48398953543 + ], + "libelle_d_acheminement": "L ECHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48398953543, + 49.8052823927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccb9ae6d13b52a40f595d2ebae59e490b80690c0", + "fields": { + "ligne_5": "BALAIVES ET BUTZ", + "code_commune_insee": "08173", + "libelle_d_acheminement": "FLIZE", + "code_postal": "08160", + "nom_de_la_commune": "FLIZE", + "coordonnees_gps": [ + 49.6952977524, + 4.77517346922 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77517346922, + 49.6952977524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49cd136424a1fdddd16eae52fc13fbd0c4674a08", + "fields": { + "code_commune_insee": "08176", + "nom_de_la_commune": "FOSSE", + "code_postal": "08240", + "coordonnees_gps": [ + 49.4497857688, + 5.00506242697 + ], + "libelle_d_acheminement": "FOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00506242697, + 49.4497857688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "476cdebbf811db76421a7e22ab4e2ec9b8cfdcbb", + "fields": { + "code_commune_insee": "08178", + "nom_de_la_commune": "FRAILLICOURT", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6642796699, + 4.1683433147 + ], + "libelle_d_acheminement": "FRAILLICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1683433147, + 49.6642796699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55101091fc7d2a1e9cb918924a163eb7dbc3fc96", + "fields": { + "code_commune_insee": "08183", + "nom_de_la_commune": "FROMELENNES", + "code_postal": "08600", + "coordonnees_gps": [ + 50.114956311, + 4.86298935774 + ], + "libelle_d_acheminement": "FROMELENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86298935774, + 50.114956311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7566954228fcde27b0db81e822077888dd2451db", + "fields": { + "ligne_5": "FLOHIMONT", + "code_commune_insee": "08183", + "libelle_d_acheminement": "FROMELENNES", + "code_postal": "08600", + "nom_de_la_commune": "FROMELENNES", + "coordonnees_gps": [ + 50.114956311, + 4.86298935774 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86298935774, + 50.114956311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a218a86e57795a8ed1af7a39a269dee00263e75", + "fields": { + "ligne_5": "FOULZY", + "code_commune_insee": "08189", + "libelle_d_acheminement": "GIRONDELLE", + "code_postal": "08260", + "nom_de_la_commune": "GIRONDELLE", + "coordonnees_gps": [ + 49.8523190175, + 4.38644508861 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38644508861, + 49.8523190175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "619e3e7ad3c0967c734bff5cbea35009e0c47718", + "fields": { + "code_commune_insee": "08190", + "nom_de_la_commune": "GIVET", + "code_postal": "08600", + "coordonnees_gps": [ + 50.1424845969, + 4.83512248031 + ], + "libelle_d_acheminement": "GIVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83512248031, + 50.1424845969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d835d7905d9b1ed89410d65d0089d144e4550a77", + "fields": { + "code_commune_insee": "08195", + "nom_de_la_commune": "GOMONT", + "code_postal": "08190", + "coordonnees_gps": [ + 49.5102104714, + 4.1678828444 + ], + "libelle_d_acheminement": "GOMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1678828444, + 49.5102104714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98a813e42bde029bdc283c08ed88893ac2bc01e9", + "fields": { + "code_commune_insee": "08200", + "nom_de_la_commune": "GRIVY LOISY", + "code_postal": "08400", + "coordonnees_gps": [ + 49.426649562, + 4.64037015346 + ], + "libelle_d_acheminement": "GRIVY LOISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64037015346, + 49.426649562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0ab94610cad5036d5e522f111a38c064f472b15", + "fields": { + "code_commune_insee": "08206", + "nom_de_la_commune": "HAM LES MOINES", + "code_postal": "08090", + "coordonnees_gps": [ + 49.7946547958, + 4.58829051555 + ], + "libelle_d_acheminement": "HAM LES MOINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58829051555, + 49.7946547958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "646d538fdb3dec446596fa88de6da360c6a9e164", + "fields": { + "code_commune_insee": "08211", + "nom_de_la_commune": "HARAUCOURT", + "code_postal": "08450", + "coordonnees_gps": [ + 49.6241121193, + 4.95360724408 + ], + "libelle_d_acheminement": "HARAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95360724408, + 49.6241121193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dfb9551d947d98f3be76539ab2c2954f0b311dd", + "fields": { + "code_commune_insee": "08215", + "nom_de_la_commune": "HARRICOURT", + "code_postal": "08240", + "coordonnees_gps": [ + 49.439083054, + 4.92347818635 + ], + "libelle_d_acheminement": "HARRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92347818635, + 49.439083054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "241eb98b768b54449f28cb3f58ae8e9cf0242015", + "fields": { + "code_commune_insee": "08216", + "nom_de_la_commune": "HAUDRECY", + "code_postal": "08090", + "coordonnees_gps": [ + 49.7836785457, + 4.61216217842 + ], + "libelle_d_acheminement": "HAUDRECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61216217842, + 49.7836785457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4315d586f91343f71633643fc520930b7ba3093a", + "fields": { + "code_commune_insee": "08218", + "nom_de_la_commune": "LES HAUTES RIVIERES", + "code_postal": "08800", + "coordonnees_gps": [ + 49.9089878632, + 4.84738950465 + ], + "libelle_d_acheminement": "LES HAUTES RIVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84738950465, + 49.9089878632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9266eab9f0644224234bb70db8d0e8cb33d3a4db", + "fields": { + "ligne_5": "LINCHAMPS", + "code_commune_insee": "08218", + "libelle_d_acheminement": "LES HAUTES RIVIERES", + "code_postal": "08800", + "nom_de_la_commune": "LES HAUTES RIVIERES", + "coordonnees_gps": [ + 49.9089878632, + 4.84738950465 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84738950465, + 49.9089878632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22a7df85b4fb08a0646a3281af23f39d0d4d9ed7", + "fields": { + "code_commune_insee": "08228", + "nom_de_la_commune": "LA HORGNE", + "code_postal": "08430", + "coordonnees_gps": [ + 49.623710068, + 4.67671887567 + ], + "libelle_d_acheminement": "LA HORGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67671887567, + 49.623710068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9252549728e80697d657b7ece7812d1208eec225", + "fields": { + "code_commune_insee": "08235", + "nom_de_la_commune": "ISSANCOURT ET RUMEL", + "code_postal": "08440", + "coordonnees_gps": [ + 49.756913062, + 4.82778351995 + ], + "libelle_d_acheminement": "ISSANCOURT ET RUMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82778351995, + 49.756913062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e2ae031a1cff894e0023459cadab3425bb8cc17", + "fields": { + "code_commune_insee": "08236", + "nom_de_la_commune": "JANDUN", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6747371177, + 4.55946990967 + ], + "libelle_d_acheminement": "JANDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55946990967, + 49.6747371177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d25c02ecbfb4bcd46560e35f7070b4867dc212da", + "fields": { + "code_commune_insee": "08237", + "nom_de_la_commune": "JOIGNY SUR MEUSE", + "code_postal": "08700", + "coordonnees_gps": [ + 49.8321076843, + 4.76385704202 + ], + "libelle_d_acheminement": "JOIGNY SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76385704202, + 49.8321076843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eb46c3cc07eeaf5b8875db50845591533e035b2", + "fields": { + "code_commune_insee": "08243", + "nom_de_la_commune": "LALOBBE", + "code_postal": "08460", + "coordonnees_gps": [ + 49.6690137375, + 4.37030357977 + ], + "libelle_d_acheminement": "LALOBBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37030357977, + 49.6690137375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72d367637dfc26c0d4fea79963d85cddabbb1bfb", + "fields": { + "code_commune_insee": "08245", + "nom_de_la_commune": "LANCON", + "code_postal": "08250", + "coordonnees_gps": [ + 49.2748052641, + 4.88800053643 + ], + "libelle_d_acheminement": "LANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88800053643, + 49.2748052641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8aa2fd301b932ad21a3fbe1d1e72f4c3ec6c4cc1", + "fields": { + "code_commune_insee": "08248", + "nom_de_la_commune": "LAUNOIS SUR VENCE", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6645721589, + 4.52730784056 + ], + "libelle_d_acheminement": "LAUNOIS SUR VENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52730784056, + 49.6645721589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08ef2399294f803455a8fccc6d0d7c9a0620ca5f", + "fields": { + "code_commune_insee": "08252", + "nom_de_la_commune": "LETANNE", + "code_postal": "08210", + "coordonnees_gps": [ + 49.5441296129, + 5.08001114382 + ], + "libelle_d_acheminement": "LETANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08001114382, + 49.5441296129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b5c1d730fd71fa7228f0d396c2d9b879772fb46", + "fields": { + "code_commune_insee": "08257", + "nom_de_la_commune": "LOGNY BOGNY", + "code_postal": "08150", + "coordonnees_gps": [ + 49.7757948758, + 4.38773514062 + ], + "libelle_d_acheminement": "LOGNY BOGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38773514062, + 49.7757948758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67873b3507c69652444eaf248ad166c70e4cb738", + "fields": { + "code_commune_insee": "08259", + "nom_de_la_commune": "LONGWE", + "code_postal": "08400", + "coordonnees_gps": [ + 49.3862720162, + 4.80042380919 + ], + "libelle_d_acheminement": "LONGWE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80042380919, + 49.3862720162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a3f163d0e1af7370c4a18210cf6e5032311d591", + "fields": { + "code_commune_insee": "08260", + "nom_de_la_commune": "LONNY", + "code_postal": "08150", + "coordonnees_gps": [ + 49.8154069628, + 4.58567968969 + ], + "libelle_d_acheminement": "LONNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58567968969, + 49.8154069628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3249992091505ab9edf843bd965d3bbbe349ca5", + "fields": { + "code_commune_insee": "08268", + "nom_de_la_commune": "MAISONCELLE ET VILLERS", + "code_postal": "08450", + "coordonnees_gps": [ + 49.5898272419, + 4.91848316067 + ], + "libelle_d_acheminement": "MAISONCELLE ET VILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91848316067, + 49.5898272419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb1cd26f53940c9b8238d009b9f008a2e35130a3", + "fields": { + "code_commune_insee": "08276", + "nom_de_la_commune": "MARGUT", + "code_postal": "08370", + "coordonnees_gps": [ + 49.5804831297, + 5.2715842279 + ], + "libelle_d_acheminement": "MARGUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2715842279, + 49.5804831297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7058b05aaadffbe5c733469875bc66ae391e645", + "fields": { + "code_commune_insee": "08277", + "nom_de_la_commune": "MARLEMONT", + "code_postal": "08290", + "coordonnees_gps": [ + 49.7465157727, + 4.3812273313 + ], + "libelle_d_acheminement": "MARLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3812273313, + 49.7465157727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33b7c5d72419638001ecac815fda939c21d1ca77", + "fields": { + "code_commune_insee": "08291", + "nom_de_la_commune": "MOGUES", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6597587514, + 5.28307640436 + ], + "libelle_d_acheminement": "MOGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28307640436, + 49.6597587514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2075a7011d5564f6641e7cc226a11cbf40fcddd", + "fields": { + "code_commune_insee": "08294", + "nom_de_la_commune": "LA MONCELLE", + "code_postal": "08140", + "coordonnees_gps": [ + 49.6929049378, + 4.99641991785 + ], + "libelle_d_acheminement": "LA MONCELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99641991785, + 49.6929049378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9924e7aef150c12696ab58e7b6a468f3161f25b9", + "fields": { + "code_commune_insee": "08307", + "nom_de_la_commune": "MONTMEILLANT", + "code_postal": "08220", + "coordonnees_gps": [ + 49.7025931592, + 4.32852997041 + ], + "libelle_d_acheminement": "MONTMEILLANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32852997041, + 49.7025931592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61f40a82560e699989538e79f0218c2382c29f7c", + "fields": { + "code_commune_insee": "08316", + "nom_de_la_commune": "NEUFMANIL", + "code_postal": "08700", + "coordonnees_gps": [ + 49.8226585503, + 4.8066677893 + ], + "libelle_d_acheminement": "NEUFMANIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8066677893, + 49.8226585503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccf22354380e6695f654602e5a74559c35f6c524", + "fields": { + "code_commune_insee": "08317", + "nom_de_la_commune": "LA NEUVILLE A MAIRE", + "code_postal": "08450", + "coordonnees_gps": [ + 49.579703757, + 4.8560124833 + ], + "libelle_d_acheminement": "LA NEUVILLE A MAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8560124833, + 49.579703757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57a11d82f5730ccc89397b215bb9be9466648d43", + "fields": { + "code_commune_insee": "08319", + "nom_de_la_commune": "NEUVILLE LEZ BEAULIEU", + "code_postal": "08380", + "coordonnees_gps": [ + 49.9062756338, + 4.35291936249 + ], + "libelle_d_acheminement": "NEUVILLE LEZ BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35291936249, + 49.9062756338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "350523c10f3c9c7c0143fcc2e8396a207b157c8c", + "fields": { + "code_commune_insee": "08320", + "nom_de_la_commune": "LA NEUVILLE EN TOURNE A FUY", + "code_postal": "08310", + "coordonnees_gps": [ + 49.3465795894, + 4.3925824819 + ], + "libelle_d_acheminement": "NEUVILLE EN TOURNE A FUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3925824819, + 49.3465795894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5f3d51b2d312636e8346d77bef4d94d779fedc1", + "fields": { + "code_commune_insee": "08323", + "nom_de_la_commune": "LA NEUVILLE LES WASIGNY", + "code_postal": "08270", + "coordonnees_gps": [ + 49.6473588097, + 4.35965112592 + ], + "libelle_d_acheminement": "LA NEUVILLE LES WASIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35965112592, + 49.6473588097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "639b201541bd65b01c316b38c8cf95a0a7901462", + "fields": { + "code_commune_insee": "08325", + "nom_de_la_commune": "NOIRVAL", + "code_postal": "08400", + "coordonnees_gps": [ + 49.4583795403, + 4.79434525791 + ], + "libelle_d_acheminement": "NOIRVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79434525791, + 49.4583795403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24ecd92b33007547b02f79dadc626a0fb34a01c2", + "fields": { + "ligne_5": "PROVISY", + "code_commune_insee": "08329", + "libelle_d_acheminement": "NOVION PORCIEN", + "code_postal": "08270", + "nom_de_la_commune": "NOVION PORCIEN", + "coordonnees_gps": [ + 49.5959529049, + 4.42856653433 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42856653433, + 49.5959529049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d04d0b2bbc8a1d05c54863a275bb2b29a9731066", + "fields": { + "code_commune_insee": "08331", + "nom_de_la_commune": "NOYERS PONT MAUGIS", + "code_postal": "08350", + "coordonnees_gps": [ + 49.6588347678, + 4.9300445508 + ], + "libelle_d_acheminement": "NOYERS PONT MAUGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9300445508, + 49.6588347678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de31b8d3778e99ea6a4fdfced1d33818ed9d0a81", + "fields": { + "code_commune_insee": "08346", + "nom_de_la_commune": "PRIX LES MEZIERES", + "code_postal": "08000", + "coordonnees_gps": [ + 49.7480987384, + 4.6856741205 + ], + "libelle_d_acheminement": "PRIX LES MEZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6856741205, + 49.7480987384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d788432295bd6ad5327c0dfc29aa0aecc8e7b39d", + "fields": { + "code_commune_insee": "08353", + "nom_de_la_commune": "RANCENNES", + "code_postal": "08600", + "coordonnees_gps": [ + 50.1212664141, + 4.82244516309 + ], + "libelle_d_acheminement": "RANCENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82244516309, + 50.1212664141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d53a7bbcb3fb932da4fb7a868964c5c158ef3c3", + "fields": { + "code_commune_insee": "08354", + "nom_de_la_commune": "RAUCOURT ET FLABA", + "code_postal": "08450", + "coordonnees_gps": [ + 49.5891690543, + 4.96192418756 + ], + "libelle_d_acheminement": "RAUCOURT ET FLABA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96192418756, + 49.5891690543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48d8bebaa5f35abd2e5daa826f7ea46978a120c9", + "fields": { + "ligne_5": "LA HARDOYE", + "code_commune_insee": "08366", + "libelle_d_acheminement": "ROCQUIGNY", + "code_postal": "08220", + "nom_de_la_commune": "ROCQUIGNY", + "coordonnees_gps": [ + 49.7003603712, + 4.24698300901 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24698300901, + 49.7003603712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c3011a8cd5b683a6c08da996b496a06db92d24d", + "fields": { + "ligne_5": "MAINBRESSON", + "code_commune_insee": "08366", + "libelle_d_acheminement": "ROCQUIGNY", + "code_postal": "08220", + "nom_de_la_commune": "ROCQUIGNY", + "coordonnees_gps": [ + 49.7003603712, + 4.24698300901 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24698300901, + 49.7003603712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86db6c6cf847c1ac15c783d14eb74fd664f5a2ba", + "fields": { + "ligne_5": "MAINBRESSY", + "code_commune_insee": "08366", + "libelle_d_acheminement": "ROCQUIGNY", + "code_postal": "08220", + "nom_de_la_commune": "ROCQUIGNY", + "coordonnees_gps": [ + 49.7003603712, + 4.24698300901 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24698300901, + 49.7003603712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1febccc09d3d92f9044cf1f2b42598f59d4ab1a", + "fields": { + "ligne_5": "HIRAUMONT", + "code_commune_insee": "08367", + "libelle_d_acheminement": "ROCROI", + "code_postal": "08230", + "nom_de_la_commune": "ROCROI", + "coordonnees_gps": [ + 49.9315002925, + 4.55842430748 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55842430748, + 49.9315002925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b601f39a85a9c27f7e7108852296b3aa6b1e4090", + "fields": { + "code_commune_insee": "08372", + "nom_de_la_commune": "RUBIGNY", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6884295021, + 4.20625864095 + ], + "libelle_d_acheminement": "RUBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20625864095, + 49.6884295021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46df3d94de69a77fad9ad614be08e3a2570f1667", + "fields": { + "code_commune_insee": "08375", + "nom_de_la_commune": "SACHY", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6698224813, + 5.12802048203 + ], + "libelle_d_acheminement": "SACHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12802048203, + 49.6698224813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b97a6a43a0a0b6e6e9f7497c2a7dc6a515e14dd0", + "fields": { + "code_commune_insee": "08378", + "nom_de_la_commune": "ST CLEMENT A ARNES", + "code_postal": "08310", + "coordonnees_gps": [ + 49.296522428, + 4.43477270417 + ], + "libelle_d_acheminement": "ST CLEMENT A ARNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43477270417, + 49.296522428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5418a5b73bc11a850f510f69a36c53feea79e115", + "fields": { + "code_commune_insee": "08382", + "nom_de_la_commune": "ST JEAN AUX BOIS", + "code_postal": "08220", + "coordonnees_gps": [ + 49.7249592025, + 4.30626886123 + ], + "libelle_d_acheminement": "ST JEAN AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30626886123, + 49.7249592025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e29be83493aa58f9a1b7c067259290f4adc137f2", + "fields": { + "code_commune_insee": "08387", + "nom_de_la_commune": "ST LOUP TERRIER", + "code_postal": "08130", + "coordonnees_gps": [ + 49.5716750699, + 4.61321601262 + ], + "libelle_d_acheminement": "ST LOUP TERRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61321601262, + 49.5716750699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09f5731b5c628a85b44d0757470bfd80e58b0cac", + "fields": { + "code_commune_insee": "08389", + "nom_de_la_commune": "ST MARCEL", + "code_postal": "08460", + "coordonnees_gps": [ + 49.7678945166, + 4.57513627257 + ], + "libelle_d_acheminement": "ST MARCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57513627257, + 49.7678945166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a58df6e6667917790eb399243b873f860ede0532", + "fields": { + "code_commune_insee": "08395", + "nom_de_la_commune": "ST PIERRE SUR VENCE", + "code_postal": "08430", + "coordonnees_gps": [ + 49.7017731605, + 4.68314991741 + ], + "libelle_d_acheminement": "ST PIERRE SUR VENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68314991741, + 49.7017731605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e4e08045e8edff2322d937c2d9d78d145ea45f9", + "fields": { + "code_commune_insee": "08396", + "nom_de_la_commune": "ST QUENTIN LE PETIT", + "code_postal": "08220", + "coordonnees_gps": [ + 49.5855722435, + 4.08056425414 + ], + "libelle_d_acheminement": "ST QUENTIN LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08056425414, + 49.5855722435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feaa23176ea66e126bc12f97eaa53e692571d9ad", + "fields": { + "code_commune_insee": "08400", + "nom_de_la_commune": "SAPOGNE ET FEUCHERES", + "code_postal": "08160", + "coordonnees_gps": [ + 49.6594664485, + 4.80045594688 + ], + "libelle_d_acheminement": "SAPOGNE ET FEUCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80045594688, + 49.6594664485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f656de812eebb03942db3549fef0eaece5205e0", + "fields": { + "code_commune_insee": "08403", + "nom_de_la_commune": "SAULT LES RETHEL", + "code_postal": "08300", + "coordonnees_gps": [ + 49.4872135038, + 4.35605993632 + ], + "libelle_d_acheminement": "SAULT LES RETHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35605993632, + 49.4872135038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79f02eb36c150b4175d344a0c2963b14966d86fb", + "fields": { + "code_commune_insee": "08408", + "nom_de_la_commune": "SECHEVAL", + "code_postal": "08150", + "coordonnees_gps": [ + 49.859604641, + 4.66995420304 + ], + "libelle_d_acheminement": "SECHEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66995420304, + 49.859604641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ef0560ed34447b735bd6c9b9f89563d124c51f3", + "fields": { + "code_commune_insee": "08409", + "nom_de_la_commune": "SEDAN", + "code_postal": "08200", + "coordonnees_gps": [ + 49.697058875, + 4.9298505244 + ], + "libelle_d_acheminement": "SEDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9298505244, + 49.697058875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff17dc6ad945c57f36f247a29c96562e0158766b", + "fields": { + "code_commune_insee": "08418", + "nom_de_la_commune": "SEVIGNY WALEPPE", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6171678844, + 4.08045801984 + ], + "libelle_d_acheminement": "SEVIGNY WALEPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08045801984, + 49.6171678844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d142c941622629f8150f5c343d83ebde40d2aa3", + "fields": { + "code_commune_insee": "08419", + "nom_de_la_commune": "SIGNY L ABBAYE", + "code_postal": "08460", + "coordonnees_gps": [ + 49.7029435011, + 4.40415204398 + ], + "libelle_d_acheminement": "SIGNY L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40415204398, + 49.7029435011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16c1c2f4a9d0277dceb45ae3ed7f956411932828", + "fields": { + "code_commune_insee": "08422", + "nom_de_la_commune": "SINGLY", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6418383616, + 4.70598126209 + ], + "libelle_d_acheminement": "SINGLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70598126209, + 49.6418383616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "689bf367fd9b938271a4bf380ea81ab48f979d17", + "fields": { + "code_commune_insee": "08432", + "nom_de_la_commune": "SURY", + "code_postal": "08090", + "coordonnees_gps": [ + 49.7658504549, + 4.61209618307 + ], + "libelle_d_acheminement": "SURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61209618307, + 49.7658504549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ade3098916729a688b49e675a32ae075e1ee4472", + "fields": { + "code_commune_insee": "08437", + "nom_de_la_commune": "TAILLY", + "code_postal": "08240", + "coordonnees_gps": [ + 49.4074530876, + 5.06834679927 + ], + "libelle_d_acheminement": "TAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06834679927, + 49.4074530876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d794d3d3a74cfc9de7cdc538407f2c7858ffbf3", + "fields": { + "code_commune_insee": "08439", + "nom_de_la_commune": "TANNAY", + "code_postal": "08390", + "coordonnees_gps": [ + 49.5244351516, + 4.82484959766 + ], + "libelle_d_acheminement": "TANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82484959766, + 49.5244351516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b0ecb034faef0a08280f7286fab1003501438c4", + "fields": { + "code_commune_insee": "08451", + "nom_de_la_commune": "LE THOUR", + "code_postal": "08190", + "coordonnees_gps": [ + 49.5452885038, + 4.09027414774 + ], + "libelle_d_acheminement": "LE THOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09027414774, + 49.5452885038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b53457d549b5a9523e5aa3621e9f5d040b47f4b", + "fields": { + "code_commune_insee": "08455", + "nom_de_la_commune": "TOURCELLES CHAUMONT", + "code_postal": "08400", + "coordonnees_gps": [ + 49.3980524816, + 4.60160757563 + ], + "libelle_d_acheminement": "TOURCELLES CHAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60160757563, + 49.3980524816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80d9f83b6b6bf58c41fb67203af1967129b28c23", + "fields": { + "code_commune_insee": "08464", + "nom_de_la_commune": "VAUX LES MOURON", + "code_postal": "08250", + "coordonnees_gps": [ + 49.2980685273, + 4.78431750699 + ], + "libelle_d_acheminement": "VAUX LES MOURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78431750699, + 49.2980685273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dda0adbd8c3a186b886180aeb2c6cff4d9ceb18c", + "fields": { + "code_commune_insee": "08477", + "nom_de_la_commune": "VILLERS DEVANT MOUZON", + "code_postal": "08210", + "coordonnees_gps": [ + 49.6273486226, + 5.01783217122 + ], + "libelle_d_acheminement": "VILLERS DEVANT MOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01783217122, + 49.6273486226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cada1b08a6a1e67b1eb88160108994ebf90dee5", + "fields": { + "code_commune_insee": "08482", + "nom_de_la_commune": "VILLERS SUR LE MONT", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6632700126, + 4.67936469498 + ], + "libelle_d_acheminement": "VILLERS SUR LE MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67936469498, + 49.6632700126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7de5f07624fdc643664377c9dbe4c2aa2811d808", + "fields": { + "code_commune_insee": "08487", + "nom_de_la_commune": "VIREUX WALLERAND", + "code_postal": "08320", + "coordonnees_gps": [ + 50.0568483332, + 4.74702825636 + ], + "libelle_d_acheminement": "VIREUX WALLERAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74702825636, + 50.0568483332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a189e0aa280d70ca8ae075df0228da5ef9c11d63", + "fields": { + "code_commune_insee": "08489", + "nom_de_la_commune": "VONCQ", + "code_postal": "08400", + "coordonnees_gps": [ + 49.4736949482, + 4.68141832029 + ], + "libelle_d_acheminement": "VONCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68141832029, + 49.4736949482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "302200238812c2b72acb04fc1436e639dbaa3d71", + "fields": { + "code_commune_insee": "08490", + "nom_de_la_commune": "VOUZIERS", + "code_postal": "08400", + "coordonnees_gps": [ + 49.4000316087, + 4.70126283768 + ], + "libelle_d_acheminement": "VOUZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70126283768, + 49.4000316087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "681171e46343b5d9a6cc16e6cb276e8fb839296c", + "fields": { + "ligne_5": "BOSSEVAL ET BRIANCOURT", + "code_commune_insee": "08491", + "libelle_d_acheminement": "VRIGNE AUX BOIS", + "code_postal": "08350", + "nom_de_la_commune": "VRIGNE AUX BOIS", + "coordonnees_gps": [ + 49.7370150528, + 4.85605381662 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85605381662, + 49.7370150528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d54cbf30a4f0352a370188eacef74cc1e9dd718d", + "fields": { + "code_commune_insee": "08492", + "nom_de_la_commune": "VRIGNE MEUSE", + "code_postal": "08350", + "coordonnees_gps": [ + 49.704875935, + 4.83462850241 + ], + "libelle_d_acheminement": "VRIGNE MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83462850241, + 49.704875935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9efca5b66cffe4e7329d4cd40c64564ce376dc7", + "fields": { + "code_commune_insee": "08499", + "nom_de_la_commune": "WASIGNY", + "code_postal": "08270", + "coordonnees_gps": [ + 49.6279041536, + 4.35768813318 + ], + "libelle_d_acheminement": "WASIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35768813318, + 49.6279041536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b5ed7b45eb11e093b3d6315ee971212029b16b0", + "fields": { + "code_commune_insee": "08502", + "nom_de_la_commune": "YONCQ", + "code_postal": "08210", + "coordonnees_gps": [ + 49.5680543716, + 5.01664912304 + ], + "libelle_d_acheminement": "YONCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01664912304, + 49.5680543716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efd8cff143c025ade02e21f79b88b78d30b1a0a3", + "fields": { + "code_commune_insee": "09008", + "nom_de_la_commune": "ALOS", + "code_postal": "09200", + "coordonnees_gps": [ + 42.8984884142, + 1.12940450041 + ], + "libelle_d_acheminement": "ALOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12940450041, + 42.8984884142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52a7e2e9142ee5fb07b3f7e5e3c905600e889055", + "fields": { + "code_commune_insee": "09011", + "nom_de_la_commune": "ANTRAS", + "code_postal": "09800", + "coordonnees_gps": [ + 42.8732630887, + 0.901092072285 + ], + "libelle_d_acheminement": "ANTRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.901092072285, + 42.8732630887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60af5f67efbcfd1ce839ec251ed2fe7f599bab18", + "fields": { + "code_commune_insee": "09015", + "nom_de_la_commune": "ARIGNAC", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8760950162, + 1.5950781123 + ], + "libelle_d_acheminement": "ARIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5950781123, + 42.8760950162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "011dad82535cac39f0f78ae05fae4139754e63d2", + "fields": { + "code_commune_insee": "09016", + "nom_de_la_commune": "ARNAVE", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8522962517, + 1.64611606147 + ], + "libelle_d_acheminement": "ARNAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64611606147, + 42.8522962517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e434fa45b7bc76e75ce1fddc3a326d28bf39a35c", + "fields": { + "code_commune_insee": "09021", + "nom_de_la_commune": "ARTIX", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0669064267, + 1.56256658589 + ], + "libelle_d_acheminement": "ARTIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56256658589, + 43.0669064267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5fa9dda602b49b64d5edb34e0ffde5a8aef3e3d", + "fields": { + "code_commune_insee": "09029", + "nom_de_la_commune": "AULUS LES BAINS", + "code_postal": "09140", + "coordonnees_gps": [ + 42.7666138667, + 1.35664183654 + ], + "libelle_d_acheminement": "AULUS LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35664183654, + 42.7666138667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df3378b2d886ff8c62f484957a4d65cd2d386d95", + "fields": { + "code_commune_insee": "09040", + "nom_de_la_commune": "LA BASTIDE DE LORDAT", + "code_postal": "09700", + "coordonnees_gps": [ + 43.1401849075, + 1.71514606106 + ], + "libelle_d_acheminement": "LA BASTIDE DE LORDAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71514606106, + 43.1401849075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3955842a88ed6f9d569be1e019e5be1106dc365f", + "fields": { + "code_commune_insee": "09046", + "nom_de_la_commune": "BEDEILLE", + "code_postal": "09230", + "coordonnees_gps": [ + 43.0834902757, + 1.10102979799 + ], + "libelle_d_acheminement": "BEDEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10102979799, + 43.0834902757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "459c7934723a1197ce229c2d5cee5c40fa2a6a90", + "fields": { + "code_commune_insee": "09056", + "nom_de_la_commune": "BEZAC", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1525065182, + 1.57354933771 + ], + "libelle_d_acheminement": "BEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57354933771, + 43.1525065182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05d9105e4e9acceb11ed7df8610c9ac9687ef914", + "fields": { + "code_commune_insee": "09059", + "nom_de_la_commune": "BONAC IRAZEIN", + "code_postal": "09800", + "coordonnees_gps": [ + 42.840844647, + 0.982612922888 + ], + "libelle_d_acheminement": "BONAC IRAZEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.982612922888, + 42.840844647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b9de8ee38b2a015514a00529543b60d3e269504", + "fields": { + "code_commune_insee": "09061", + "nom_de_la_commune": "LES BORDES SUR ARIZE", + "code_postal": "09350", + "coordonnees_gps": [ + 43.1130459282, + 1.36643495416 + ], + "libelle_d_acheminement": "LES BORDES SUR ARIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36643495416, + 43.1130459282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56e7ff33771f30b4d6df0f40b3b8c31287d0d47f", + "fields": { + "ligne_5": "LES BORDES SUR LEZ", + "code_commune_insee": "09062", + "libelle_d_acheminement": "BORDES UCHENTEIN", + "code_postal": "09800", + "nom_de_la_commune": "BORDES UCHENTEIN", + "coordonnees_gps": [ + 42.8335034576, + 1.03424218178 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03424218178, + 42.8335034576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdacf581e88eea3bc5acd531bec79716551c15a7", + "fields": { + "code_commune_insee": "09064", + "nom_de_la_commune": "BOUAN", + "code_postal": "09310", + "coordonnees_gps": [ + 42.7934480459, + 1.644027623 + ], + "libelle_d_acheminement": "BOUAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.644027623, + 42.7934480459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc33500c8de4f4578f08526228fb09fe8307b579", + "fields": { + "code_commune_insee": "09068", + "nom_de_la_commune": "BURRET", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9518821093, + 1.47226587915 + ], + "libelle_d_acheminement": "BURRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47226587915, + 42.9518821093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e4ee21521c152aa581e95e257907ed96fdf5038", + "fields": { + "code_commune_insee": "09077", + "nom_de_la_commune": "CAPOULET ET JUNAC", + "code_postal": "09400", + "coordonnees_gps": [ + 42.7919607747, + 1.57570997337 + ], + "libelle_d_acheminement": "CAPOULET ET JUNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57570997337, + 42.7919607747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6497e2d5da60cb7f954207cd803c94a82ca770bb", + "fields": { + "code_commune_insee": "09078", + "nom_de_la_commune": "CARCANIERES", + "code_postal": "09460", + "coordonnees_gps": [ + 42.7083661653, + 2.12368180993 + ], + "libelle_d_acheminement": "CARCANIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12368180993, + 42.7083661653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c87a8a0f279964953fe57ceb28ad3cd8acfc4aa6", + "fields": { + "code_commune_insee": "09079", + "nom_de_la_commune": "CARLA BAYLE", + "code_postal": "09130", + "coordonnees_gps": [ + 43.1575348436, + 1.37254711167 + ], + "libelle_d_acheminement": "CARLA BAYLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37254711167, + 43.1575348436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "573034453314b31918fbc2ab8bdb61876737c412", + "fields": { + "code_commune_insee": "09083", + "nom_de_la_commune": "CASTERAS", + "code_postal": "09130", + "coordonnees_gps": [ + 43.1273605512, + 1.40393071226 + ], + "libelle_d_acheminement": "CASTERAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40393071226, + 43.1273605512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "378981681b1df9f48a51e998fa7c0cb47f6edd9a", + "fields": { + "code_commune_insee": "09092", + "nom_de_la_commune": "CAZENAVE SERRES ET ALLENS", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8420776047, + 1.6911129703 + ], + "libelle_d_acheminement": "CAZENAVE SERRES ET ALLENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6911129703, + 42.8420776047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d26fdbbb0175d6a1c8db173d80026eae34342cd", + "fields": { + "code_commune_insee": "09096", + "nom_de_la_commune": "CHATEAU VERDUN", + "code_postal": "09310", + "coordonnees_gps": [ + 42.7815593895, + 1.67722786249 + ], + "libelle_d_acheminement": "CHATEAU VERDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67722786249, + 42.7815593895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c241ca820904256abe7c0f1e090ffef8f53ec13", + "fields": { + "code_commune_insee": "09098", + "nom_de_la_commune": "CONTRAZY", + "code_postal": "09230", + "coordonnees_gps": [ + 43.0578787696, + 1.20695998398 + ], + "libelle_d_acheminement": "CONTRAZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20695998398, + 43.0578787696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4165a5bf291cd27f71b8cf85c8d389bbd5d8bc72", + "fields": { + "code_commune_insee": "09100", + "nom_de_la_commune": "COUFLENS", + "code_postal": "09140", + "coordonnees_gps": [ + 42.7531759671, + 1.18280630585 + ], + "libelle_d_acheminement": "COUFLENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18280630585, + 42.7531759671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8725fc8e7b8258ccc925127aefd6786a11008ef6", + "fields": { + "ligne_5": "SALAU", + "code_commune_insee": "09100", + "libelle_d_acheminement": "COUFLENS", + "code_postal": "09140", + "nom_de_la_commune": "COUFLENS", + "coordonnees_gps": [ + 42.7531759671, + 1.18280630585 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18280630585, + 42.7531759671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "662af89d78106bf33d6712b51267af99633b12cf", + "fields": { + "code_commune_insee": "09107", + "nom_de_la_commune": "DUN", + "code_postal": "09600", + "coordonnees_gps": [ + 43.0256431764, + 1.79296928754 + ], + "libelle_d_acheminement": "DUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79296928754, + 43.0256431764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f5d679f702d266b3e83b89ea2c3177300ca7677", + "fields": { + "code_commune_insee": "09111", + "nom_de_la_commune": "ENGOMER", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9396656596, + 1.06331255023 + ], + "libelle_d_acheminement": "ENGOMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06331255023, + 42.9396656596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6055979623c9d51cb4696fb28e93d558630b8a1", + "fields": { + "code_commune_insee": "09116", + "nom_de_la_commune": "ESCOSSE", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1280159573, + 1.54879602096 + ], + "libelle_d_acheminement": "ESCOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54879602096, + 43.1280159573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9864c4081dc678e20d5dddb931cddd244cefda28", + "fields": { + "code_commune_insee": "09118", + "nom_de_la_commune": "ESPLAS DE SEROU", + "code_postal": "09420", + "coordonnees_gps": [ + 42.9593666989, + 1.35387826212 + ], + "libelle_d_acheminement": "ESPLAS DE SEROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35387826212, + 42.9593666989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42ee41f9fa4979eae5ef12b3c07ecd634f1ce96e", + "fields": { + "code_commune_insee": "09121", + "nom_de_la_commune": "FERRIERES SUR ARIEGE", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9382958572, + 1.60726284155 + ], + "libelle_d_acheminement": "FERRIERES SUR ARIEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60726284155, + 42.9382958572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "799e7f9bb93e56e5cad6c3fc8c29f5905dcbb643", + "fields": { + "code_commune_insee": "09122", + "nom_de_la_commune": "FOIX", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9658502274, + 1.61037495894 + ], + "libelle_d_acheminement": "FOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61037495894, + 42.9658502274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c69c626868031f85172479f48d26b8b29434a0f0", + "fields": { + "code_commune_insee": "09126", + "nom_de_la_commune": "FREYCHENET", + "code_postal": "09300", + "coordonnees_gps": [ + 42.8918256148, + 1.73000481921 + ], + "libelle_d_acheminement": "FREYCHENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73000481921, + 42.8918256148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d5ed015565bb50cbb8e22866efd06aaedcea279", + "fields": { + "code_commune_insee": "09127", + "nom_de_la_commune": "GABRE", + "code_postal": "09290", + "coordonnees_gps": [ + 43.0659024827, + 1.42088834338 + ], + "libelle_d_acheminement": "GABRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42088834338, + 43.0659024827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b385f8361be7ec671a3d57566009c90bf282a9e", + "fields": { + "code_commune_insee": "09132", + "nom_de_la_commune": "GAUDIES", + "code_postal": "09700", + "coordonnees_gps": [ + 43.173172647, + 1.73046105986 + ], + "libelle_d_acheminement": "GAUDIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73046105986, + 43.173172647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89fd32c3c0d0d70babfab898ee5a66b351c2305c", + "fields": { + "code_commune_insee": "09133", + "nom_de_la_commune": "GENAT", + "code_postal": "09400", + "coordonnees_gps": [ + 42.828781368, + 1.56589342437 + ], + "libelle_d_acheminement": "GENAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56589342437, + 42.828781368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee74e2d4a672325cdbbe73dd6e0fbeafff954e48", + "fields": { + "code_commune_insee": "09134", + "nom_de_la_commune": "GESTIES", + "code_postal": "09220", + "coordonnees_gps": [ + 42.7184954311, + 1.58490734862 + ], + "libelle_d_acheminement": "GESTIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58490734862, + 42.7184954311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "302f73b60e549457cfcc978a8b9d91247694cf2a", + "fields": { + "code_commune_insee": "09137", + "nom_de_la_commune": "GUDAS", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0023566445, + 1.6795837904 + ], + "libelle_d_acheminement": "GUDAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6795837904, + 43.0023566445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83c529b7868a18571d0139c47aac30145ed548cc", + "fields": { + "code_commune_insee": "09138", + "nom_de_la_commune": "L HERM", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9730292924, + 1.67888356727 + ], + "libelle_d_acheminement": "L HERM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67888356727, + 42.9730292924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01fbea931badbe65bd62b0032038a9db0d2a4442", + "fields": { + "code_commune_insee": "09146", + "nom_de_la_commune": "JUSTINIAC", + "code_postal": "09700", + "coordonnees_gps": [ + 43.2144559342, + 1.48880175894 + ], + "libelle_d_acheminement": "JUSTINIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48880175894, + 43.2144559342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e3c75098cad570dc549993b9d639c72eb8122a7", + "fields": { + "code_commune_insee": "09148", + "nom_de_la_commune": "LACAVE", + "code_postal": "09160", + "coordonnees_gps": [ + 43.0470411913, + 1.01294653058 + ], + "libelle_d_acheminement": "LACAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01294653058, + 43.0470411913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c9b5ac788de446bf393b49c7d569e2d5859a1db", + "fields": { + "code_commune_insee": "09152", + "nom_de_la_commune": "LAPEGE", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8044576552, + 1.55503910056 + ], + "libelle_d_acheminement": "LAPEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55503910056, + 42.8044576552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c8daaf457c607497e4c5dd5846e31c20f5155ca", + "fields": { + "code_commune_insee": "09153", + "nom_de_la_commune": "LAPENNE", + "code_postal": "09500", + "coordonnees_gps": [ + 43.1445048252, + 1.77562717427 + ], + "libelle_d_acheminement": "LAPENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77562717427, + 43.1445048252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0fad3716197792e296663bcb8a3afeda5095c2d", + "fields": { + "code_commune_insee": "09157", + "nom_de_la_commune": "LAROQUE D OLMES", + "code_postal": "09600", + "coordonnees_gps": [ + 42.9675623246, + 1.87181602964 + ], + "libelle_d_acheminement": "LAROQUE D OLMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87181602964, + 42.9675623246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91938b21d6f7d79cb4f820b2d4a2a519fd309c35", + "fields": { + "code_commune_insee": "09160", + "nom_de_la_commune": "LAVELANET", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9336867312, + 1.84586953504 + ], + "libelle_d_acheminement": "LAVELANET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84586953504, + 42.9336867312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb41c349b7340d78ff124a4ea684d4c17ea9b9e4", + "fields": { + "code_commune_insee": "09170", + "nom_de_la_commune": "LISSAC", + "code_postal": "09700", + "coordonnees_gps": [ + 43.267238666, + 1.51045674353 + ], + "libelle_d_acheminement": "LISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51045674353, + 43.267238666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6f2483bed8514bf20383baaff27e2b6a3a6f3e7", + "fields": { + "code_commune_insee": "09180", + "nom_de_la_commune": "MANSES", + "code_postal": "09500", + "coordonnees_gps": [ + 43.1073463894, + 1.8140686681 + ], + "libelle_d_acheminement": "MANSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8140686681, + 43.1073463894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b6188890cc15e9fb42560c5bde4aa81cef23186", + "fields": { + "code_commune_insee": "09185", + "nom_de_la_commune": "MAZERES", + "code_postal": "09270", + "coordonnees_gps": [ + 43.2305454388, + 1.67905538155 + ], + "libelle_d_acheminement": "MAZERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67905538155, + 43.2305454388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19d6990be1a47f03f2d20fc7f8322bdcca15134c", + "fields": { + "code_commune_insee": "09187", + "nom_de_la_commune": "MERCENAC", + "code_postal": "09160", + "coordonnees_gps": [ + 43.0533409773, + 1.06840881939 + ], + "libelle_d_acheminement": "MERCENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06840881939, + 43.0533409773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "282bb3ea304db2c049ccb73521ab1fbc702319e9", + "fields": { + "ligne_5": "AMPLAING", + "code_commune_insee": "09188", + "libelle_d_acheminement": "MERCUS GARRABET", + "code_postal": "09400", + "nom_de_la_commune": "MERCUS GARRABET", + "coordonnees_gps": [ + 42.8795171828, + 1.6442180232 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6442180232, + 42.8795171828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15f62aeba0eaeab4be9a31afc8540cf045e565a6", + "fields": { + "code_commune_insee": "09197", + "nom_de_la_commune": "MONTAILLOU", + "code_postal": "09110", + "coordonnees_gps": [ + 42.7801887504, + 1.90255667259 + ], + "libelle_d_acheminement": "MONTAILLOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90255667259, + 42.7801887504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3ef57a39ec1eaeef823e68c3bfaa4da9b2c6281", + "fields": { + "code_commune_insee": "09201", + "nom_de_la_commune": "MONTEGUT EN COUSERANS", + "code_postal": "09200", + "coordonnees_gps": [ + 42.9834376015, + 1.09301526592 + ], + "libelle_d_acheminement": "MONTEGUT EN COUSERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09301526592, + 42.9834376015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d14814747ff72b336e0e70f0fb69515a3fe9d5d4", + "fields": { + "code_commune_insee": "09208", + "nom_de_la_commune": "MONTGAUCH", + "code_postal": "09160", + "coordonnees_gps": [ + 42.9945304885, + 1.07283965181 + ], + "libelle_d_acheminement": "MONTGAUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07283965181, + 42.9945304885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf24556ef47184c5ff59afb3c39ea04d06baa7e0", + "fields": { + "code_commune_insee": "09210", + "nom_de_la_commune": "MONTOULIEU", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9040427071, + 1.60501449774 + ], + "libelle_d_acheminement": "MONTOULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60501449774, + 42.9040427071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f83e7c4fd2e4223d7357390be815ea63d1fe2ff6", + "fields": { + "code_commune_insee": "09215", + "nom_de_la_commune": "NALZEN", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9192383655, + 1.74790658512 + ], + "libelle_d_acheminement": "NALZEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74790658512, + 42.9192383655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2fd388baf4347ae04ced0f8ea22f75f9b159280", + "fields": { + "code_commune_insee": "09221", + "nom_de_la_commune": "ORNOLAC USSAT LES BAINS", + "code_postal": "09400", + "coordonnees_gps": [ + 42.822281281, + 1.64644484913 + ], + "libelle_d_acheminement": "ORNOLAC USSAT LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64644484913, + 42.822281281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bff39b0e77dcd4271a310d009854e748e9863962", + "fields": { + "code_commune_insee": "09222", + "nom_de_la_commune": "ORUS", + "code_postal": "09220", + "coordonnees_gps": [ + 42.7941338895, + 1.51226852239 + ], + "libelle_d_acheminement": "ORUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51226852239, + 42.7941338895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dc24ba0280f7823e1e924e434f35cf516c5e31a", + "fields": { + "code_commune_insee": "09230", + "nom_de_la_commune": "LE PLA", + "code_postal": "09460", + "coordonnees_gps": [ + 42.6879125968, + 2.05616287931 + ], + "libelle_d_acheminement": "LE PLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05616287931, + 42.6879125968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5772a105daf4da5853ea2cf14ffd299310ce85cf", + "fields": { + "code_commune_insee": "09231", + "nom_de_la_commune": "LE PORT", + "code_postal": "09320", + "coordonnees_gps": [ + 42.8356989476, + 1.38584993584 + ], + "libelle_d_acheminement": "LE PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38584993584, + 42.8356989476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84cd9606120f1b9025974f829bc3c9a2d42f427d", + "fields": { + "code_commune_insee": "09233", + "nom_de_la_commune": "PRADETTES", + "code_postal": "09600", + "coordonnees_gps": [ + 42.9912311784, + 1.82115951779 + ], + "libelle_d_acheminement": "PRADETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82115951779, + 42.9912311784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "902940c6d25dbeca5046deeda5277537ec1e81cd", + "fields": { + "code_commune_insee": "09236", + "nom_de_la_commune": "PRAYOLS", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9217087412, + 1.60137253645 + ], + "libelle_d_acheminement": "PRAYOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60137253645, + 42.9217087412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0187538cf4062076ebb5d7bda31fbf1a3a376945", + "fields": { + "code_commune_insee": "09242", + "nom_de_la_commune": "RAISSAC", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9416681862, + 1.81553522822 + ], + "libelle_d_acheminement": "RAISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81553522822, + 42.9416681862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eebdd2ff558bec7e4c106dbd2386123115e54bd", + "fields": { + "code_commune_insee": "09250", + "nom_de_la_commune": "ROQUEFORT LES CASCADES", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9610533574, + 1.74338927244 + ], + "libelle_d_acheminement": "ROQUEFORT LES CASCADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74338927244, + 42.9610533574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f0ba2868db82073495a1a4675f895816fb134a9", + "fields": { + "code_commune_insee": "09252", + "nom_de_la_commune": "ROUZE", + "code_postal": "09460", + "coordonnees_gps": [ + 42.740259004, + 2.07130727473 + ], + "libelle_d_acheminement": "ROUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07130727473, + 42.740259004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80f525233635ec96db9111d72c62df78e7cea8ab", + "fields": { + "code_commune_insee": "09257", + "nom_de_la_commune": "STE CROIX VOLVESTRE", + "code_postal": "09230", + "coordonnees_gps": [ + 43.1197309589, + 1.17100553891 + ], + "libelle_d_acheminement": "STE CROIX VOLVESTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17100553891, + 43.1197309589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bf4b9e689f66d039f07bea9b86605670a68d1e1", + "fields": { + "code_commune_insee": "09259", + "nom_de_la_commune": "ST FELIX DE TOURNEGAT", + "code_postal": "09500", + "coordonnees_gps": [ + 43.1236879845, + 1.75631301429 + ], + "libelle_d_acheminement": "ST FELIX DE TOURNEGAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75631301429, + 43.1236879845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fd896648899d6be2828c6a1a0d6f5e89856ff23", + "fields": { + "code_commune_insee": "09264", + "nom_de_la_commune": "ST JEAN DE VERGES", + "code_postal": "09000", + "coordonnees_gps": [ + 43.0129896461, + 1.63277165832 + ], + "libelle_d_acheminement": "ST JEAN DE VERGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63277165832, + 43.0129896461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c12778d1faa97d50c552b4cb16e57cadcc7a50b", + "fields": { + "code_commune_insee": "09275", + "nom_de_la_commune": "ST QUIRC", + "code_postal": "09700", + "coordonnees_gps": [ + 43.2790165591, + 1.50232499606 + ], + "libelle_d_acheminement": "ST QUIRC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50232499606, + 43.2790165591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6e1365dc9746fd9997a392e98af1820f620f1c8", + "fields": { + "code_commune_insee": "09276", + "nom_de_la_commune": "ST VICTOR ROUZAUD", + "code_postal": "09100", + "coordonnees_gps": [ + 43.0879036515, + 1.54799869593 + ], + "libelle_d_acheminement": "ST VICTOR ROUZAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54799869593, + 43.0879036515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6944f032fb3d8865e60cd2f55359294270290d22", + "fields": { + "code_commune_insee": "09285", + "nom_de_la_commune": "SEIX", + "code_postal": "09140", + "coordonnees_gps": [ + 42.8178331497, + 1.14814568291 + ], + "libelle_d_acheminement": "SEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14814568291, + 42.8178331497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36f3c32392481a04d577ac70ec89f3eee4a3c4fb", + "fields": { + "code_commune_insee": "09287", + "nom_de_la_commune": "SENCONAC", + "code_postal": "09250", + "coordonnees_gps": [ + 42.8128619696, + 1.71656632425 + ], + "libelle_d_acheminement": "SENCONAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71656632425, + 42.8128619696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6c6b1eae1aa8aa0f74be2055eaf61840253b70e", + "fields": { + "code_commune_insee": "09289", + "nom_de_la_commune": "LORP SENTARAILLE", + "code_postal": "09190", + "coordonnees_gps": [ + 43.0159566285, + 1.10827434601 + ], + "libelle_d_acheminement": "LORP SENTARAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10827434601, + 43.0159566285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78fa679cd80d4491ec9edcfbd4ad539c961b912b", + "fields": { + "code_commune_insee": "09295", + "nom_de_la_commune": "SIGUER", + "code_postal": "09220", + "coordonnees_gps": [ + 42.7082898185, + 1.55315444474 + ], + "libelle_d_acheminement": "SIGUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55315444474, + 42.7082898185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82f8cc407ce0cce5284c56287ec52c7580334497", + "fields": { + "code_commune_insee": "09315", + "nom_de_la_commune": "TREMOULET", + "code_postal": "09700", + "coordonnees_gps": [ + 43.1581445353, + 1.71715487166 + ], + "libelle_d_acheminement": "TREMOULET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71715487166, + 43.1581445353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5d98c17bcc953d3634673714f9bfb30b8c937b3", + "fields": { + "code_commune_insee": "09318", + "nom_de_la_commune": "UNAC", + "code_postal": "09250", + "coordonnees_gps": [ + 42.7587499994, + 1.77948818668 + ], + "libelle_d_acheminement": "UNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77948818668, + 42.7587499994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80998ee0a6be51e1ab08a65c526adc88cc381c98", + "fields": { + "code_commune_insee": "09319", + "nom_de_la_commune": "UNZENT", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1713840996, + 1.53294419243 + ], + "libelle_d_acheminement": "UNZENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53294419243, + 43.1713840996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f3241521b0111691a71aa1af16ef31c8f252ea4", + "fields": { + "ligne_5": "TREIN D USTOU", + "code_commune_insee": "09322", + "libelle_d_acheminement": "USTOU", + "code_postal": "09140", + "nom_de_la_commune": "USTOU", + "coordonnees_gps": [ + 42.7738686412, + 1.2631778859 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2631778859, + 42.7738686412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61c06a4895d0a593b8dbb7f3d9927f1f21676162", + "fields": { + "code_commune_insee": "09324", + "nom_de_la_commune": "VARILHES", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0547690657, + 1.63364245482 + ], + "libelle_d_acheminement": "VARILHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63364245482, + 43.0547690657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fd741526a262df261244ca7212a4c0db1e1ee23", + "fields": { + "code_commune_insee": "09330", + "nom_de_la_commune": "VERNAUX", + "code_postal": "09250", + "coordonnees_gps": [ + 42.786305834, + 1.78239713936 + ], + "libelle_d_acheminement": "VERNAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78239713936, + 42.786305834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb0a43ed89dcf7026358c0a3fa6a9df77f9d191c", + "fields": { + "code_commune_insee": "10002", + "nom_de_la_commune": "AILLEVILLE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2549995704, + 4.69449329268 + ], + "libelle_d_acheminement": "AILLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69449329268, + 48.2549995704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1009db22392cbc3e820de6ec24a005e118b85b09", + "fields": { + "ligne_5": "AIX EN OTHE", + "code_commune_insee": "10003", + "libelle_d_acheminement": "AIX VILLEMAUR PALIS", + "code_postal": "10160", + "nom_de_la_commune": "AIX VILLEMAUR PALIS", + "coordonnees_gps": [ + 48.1975745771, + 3.73632794113 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73632794113, + 48.1975745771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa53bd184ccff4f5429e1bee3ec6b4ffa9882b4f", + "fields": { + "ligne_5": "VILLEMAUR SUR VANNE", + "code_commune_insee": "10003", + "libelle_d_acheminement": "AIX VILLEMAUR PALIS", + "code_postal": "10190", + "nom_de_la_commune": "AIX VILLEMAUR PALIS", + "coordonnees_gps": [ + 48.1975745771, + 3.73632794113 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73632794113, + 48.1975745771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0207af108bbad25b1380c833b319df357e91b40", + "fields": { + "code_commune_insee": "10010", + "nom_de_la_commune": "ARREMBECOURT", + "code_postal": "10330", + "coordonnees_gps": [ + 48.5432958598, + 4.60648952219 + ], + "libelle_d_acheminement": "ARREMBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60648952219, + 48.5432958598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8834912fa75c433a70dbf0b718c0361a40f6bc4", + "fields": { + "code_commune_insee": "10020", + "nom_de_la_commune": "AVANT LES MARCILLY", + "code_postal": "10400", + "coordonnees_gps": [ + 48.432335175, + 3.56013369363 + ], + "libelle_d_acheminement": "AVANT LES MARCILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56013369363, + 48.432335175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02c9a284d20c76489af4bf14b3e0b7289f7365c7", + "fields": { + "code_commune_insee": "10021", + "nom_de_la_commune": "AVANT LES RAMERUPT", + "code_postal": "10240", + "coordonnees_gps": [ + 48.4485130831, + 4.25845008745 + ], + "libelle_d_acheminement": "AVANT LES RAMERUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25845008745, + 48.4485130831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05df920f1a78be935714001123aed0f26bd4c0d6", + "fields": { + "code_commune_insee": "10026", + "nom_de_la_commune": "BAILLY LE FRANC", + "code_postal": "10330", + "coordonnees_gps": [ + 48.5224912363, + 4.65913360168 + ], + "libelle_d_acheminement": "BAILLY LE FRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65913360168, + 48.5224912363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "941ce74de86a4689bbbd6c333d72976c13b238b8", + "fields": { + "code_commune_insee": "10033", + "nom_de_la_commune": "BAR SUR AUBE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2339751025, + 4.71595700167 + ], + "libelle_d_acheminement": "BAR SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71595700167, + 48.2339751025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38ac50646eb951bdd5320a923414d464cc37461b", + "fields": { + "code_commune_insee": "10035", + "nom_de_la_commune": "BAYEL", + "code_postal": "10310", + "coordonnees_gps": [ + 48.1924942272, + 4.79087455896 + ], + "libelle_d_acheminement": "BAYEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79087455896, + 48.1924942272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfe72f51991f1738b4c75b2e875c92990601dde5", + "fields": { + "code_commune_insee": "10037", + "nom_de_la_commune": "BERCENAY EN OTHE", + "code_postal": "10190", + "coordonnees_gps": [ + 48.1931400495, + 3.89760036901 + ], + "libelle_d_acheminement": "BERCENAY EN OTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89760036901, + 48.1931400495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e935b41a6d332c010d494dbeba6df1421f4003e", + "fields": { + "code_commune_insee": "10047", + "nom_de_la_commune": "BLIGNICOURT", + "code_postal": "10500", + "coordonnees_gps": [ + 48.453428637, + 4.54117489655 + ], + "libelle_d_acheminement": "BLIGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54117489655, + 48.453428637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eab3e098a4ca805686fdf66a173fd51c0ef9031c", + "fields": { + "code_commune_insee": "10054", + "nom_de_la_commune": "BOURDENAY", + "code_postal": "10290", + "coordonnees_gps": [ + 48.36105163, + 3.59076650047 + ], + "libelle_d_acheminement": "BOURDENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59076650047, + 48.36105163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63d4fd32bf2955cfd0f8e25e1b16ae0e9496d0e8", + "fields": { + "code_commune_insee": "10059", + "nom_de_la_commune": "BRAUX", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4830951533, + 4.45819017109 + ], + "libelle_d_acheminement": "BRAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45819017109, + 48.4830951533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d48afc46ac8446d0ec2ba77bdfe17b3b82ee4dc1", + "fields": { + "code_commune_insee": "10063", + "nom_de_la_commune": "BRIENNE LA VIEILLE", + "code_postal": "10500", + "coordonnees_gps": [ + 48.3730744162, + 4.54688493664 + ], + "libelle_d_acheminement": "BRIENNE LA VIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54688493664, + 48.3730744162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ef1aef092a24a3572cfd329b5c3dee45818461b", + "fields": { + "code_commune_insee": "10066", + "nom_de_la_commune": "BUCEY EN OTHE", + "code_postal": "10190", + "coordonnees_gps": [ + 48.2547509425, + 3.86739826398 + ], + "libelle_d_acheminement": "BUCEY EN OTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86739826398, + 48.2547509425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca0bfd79cddd372b1170ebf1c48a1707751b080c", + "fields": { + "ligne_5": "COURGERENNES", + "code_commune_insee": "10067", + "libelle_d_acheminement": "BUCHERES", + "code_postal": "10800", + "nom_de_la_commune": "BUCHERES", + "coordonnees_gps": [ + 48.2364830009, + 4.11414103262 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11414103262, + 48.2364830009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79421ff9c9524f0718e48d4a1717f69e164f496c", + "fields": { + "code_commune_insee": "10077", + "nom_de_la_commune": "CHAMPIGNY SUR AUBE", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5677006703, + 4.07229528495 + ], + "libelle_d_acheminement": "CHAMPIGNY SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07229528495, + 48.5677006703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b5799099b0c07e09ef2278495e22e8292635907", + "fields": { + "code_commune_insee": "10078", + "nom_de_la_commune": "CHAMP SUR BARSE", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2389704336, + 4.41368768098 + ], + "libelle_d_acheminement": "CHAMP SUR BARSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41368768098, + 48.2389704336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ee79c31da914183291ced33b632a730622ca4bd", + "fields": { + "code_commune_insee": "10089", + "nom_de_la_commune": "CHATRES", + "code_postal": "10510", + "coordonnees_gps": [ + 48.4931286007, + 3.83670871212 + ], + "libelle_d_acheminement": "CHATRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83670871212, + 48.4931286007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0b89f42f4b84be1ce4d135408591761a3b3008d", + "fields": { + "code_commune_insee": "10093", + "nom_de_la_commune": "CHAUMESNIL", + "code_postal": "10500", + "coordonnees_gps": [ + 48.3578609264, + 4.61254890669 + ], + "libelle_d_acheminement": "CHAUMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61254890669, + 48.3578609264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e93d84c65664a56cee65d9de4c5c71d0df35992", + "fields": { + "code_commune_insee": "10098", + "nom_de_la_commune": "CHESLEY", + "code_postal": "10210", + "coordonnees_gps": [ + 47.9769865279, + 4.11159585943 + ], + "libelle_d_acheminement": "CHESLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11159585943, + 47.9769865279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c69fcf292867ac2cba235bf4ec6d9203c2e534d7", + "fields": { + "code_commune_insee": "10100", + "nom_de_la_commune": "CLEREY", + "code_postal": "10390", + "coordonnees_gps": [ + 48.208429876, + 4.1939087968 + ], + "libelle_d_acheminement": "CLEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1939087968, + 48.208429876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fd010d93ad26b11927fad0c4b229fdffaf3f760", + "fields": { + "code_commune_insee": "10112", + "nom_de_la_commune": "COUSSEGREY", + "code_postal": "10210", + "coordonnees_gps": [ + 47.95007971, + 4.03054692613 + ], + "libelle_d_acheminement": "COUSSEGREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03054692613, + 47.95007971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddfda9b9c1fa9155d4a331e8aa8ba6ea9281e9e3", + "fields": { + "code_commune_insee": "10124", + "nom_de_la_commune": "DIERREY ST JULIEN", + "code_postal": "10190", + "coordonnees_gps": [ + 48.3050645625, + 3.83470708192 + ], + "libelle_d_acheminement": "DIERREY ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83470708192, + 48.3050645625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b79337e46ca1de0e6b5d51176b476f00c46566bc", + "fields": { + "code_commune_insee": "10127", + "nom_de_la_commune": "DOMMARTIN LE COQ", + "code_postal": "10240", + "coordonnees_gps": [ + 48.4976185098, + 4.35585501464 + ], + "libelle_d_acheminement": "DOMMARTIN LE COQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35585501464, + 48.4976185098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d427b91e9f571e2b710a49f1c756f3812e7cc6c", + "fields": { + "code_commune_insee": "10133", + "nom_de_la_commune": "EAUX PUISEAUX", + "code_postal": "10130", + "coordonnees_gps": [ + 48.1167185548, + 3.88681885834 + ], + "libelle_d_acheminement": "EAUX PUISEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88681885834, + 48.1167185548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf4d12e4f108f54c09d1c364360aa9895182dc5a", + "fields": { + "code_commune_insee": "10134", + "nom_de_la_commune": "ECHEMINES", + "code_postal": "10350", + "coordonnees_gps": [ + 48.3904941746, + 3.83580680573 + ], + "libelle_d_acheminement": "ECHEMINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83580680573, + 48.3904941746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b165627209684a6fb015f07320d8e0fdcdab47e", + "fields": { + "code_commune_insee": "10135", + "nom_de_la_commune": "ECLANCE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.3074667085, + 4.64323131646 + ], + "libelle_d_acheminement": "ECLANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64323131646, + 48.3074667085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9950ca0d0143f3c6cb16ca201a9b62afc0cca7b4", + "fields": { + "code_commune_insee": "10138", + "nom_de_la_commune": "EPAGNE", + "code_postal": "10500", + "coordonnees_gps": [ + 48.3975318023, + 4.4698095219 + ], + "libelle_d_acheminement": "EPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4698095219, + 48.3975318023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88068ed7f766441eedff283df13875d04e244aee", + "fields": { + "code_commune_insee": "10143", + "nom_de_la_commune": "ETOURVY", + "code_postal": "10210", + "coordonnees_gps": [ + 47.9506558304, + 4.12736391483 + ], + "libelle_d_acheminement": "ETOURVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12736391483, + 47.9506558304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcf2070ae0d48e669137d99bc9957bca8e4ad936", + "fields": { + "code_commune_insee": "10146", + "nom_de_la_commune": "FAY LES MARCILLY", + "code_postal": "10290", + "coordonnees_gps": [ + 48.401359163, + 3.60590310441 + ], + "libelle_d_acheminement": "FAY LES MARCILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60590310441, + 48.401359163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74138865dc323036aaf01356d691dbf7c9c48afc", + "fields": { + "code_commune_insee": "10147", + "nom_de_la_commune": "FAYS LA CHAPELLE", + "code_postal": "10320", + "coordonnees_gps": [ + 48.1311314696, + 4.0199211207 + ], + "libelle_d_acheminement": "FAYS LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0199211207, + 48.1311314696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68235276a391eb9f8ea6c2ccbdf330c319cbdf16", + "fields": { + "ligne_5": "QUINCEY", + "code_commune_insee": "10148", + "libelle_d_acheminement": "FERREUX QUINCEY", + "code_postal": "10400", + "nom_de_la_commune": "FERREUX QUINCEY", + "coordonnees_gps": [ + 48.4624429856, + 3.60107070347 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60107070347, + 48.4624429856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fb96d34843236ad779d6e1236cc2f88259d9412", + "fields": { + "code_commune_insee": "10150", + "nom_de_la_commune": "FONTAINE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2092891642, + 4.71805068623 + ], + "libelle_d_acheminement": "FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71805068623, + 48.2092891642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23896175449ec44db738716ccce85e16c18687bd", + "fields": { + "code_commune_insee": "10151", + "nom_de_la_commune": "FONTAINE LES GRES", + "code_postal": "10280", + "coordonnees_gps": [ + 48.4128351962, + 3.88910514408 + ], + "libelle_d_acheminement": "FONTAINE LES GRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88910514408, + 48.4128351962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ea57455f7ca6e94be851fc8ad00f9a25571509a", + "fields": { + "code_commune_insee": "10157", + "nom_de_la_commune": "LA FOSSE CORDUAN", + "code_postal": "10100", + "coordonnees_gps": [ + 48.4404732902, + 3.6537864039 + ], + "libelle_d_acheminement": "LA FOSSE CORDUAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6537864039, + 48.4404732902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2ccbe005ac31365221e027d377f462c76e880f8", + "fields": { + "code_commune_insee": "10158", + "nom_de_la_commune": "FOUCHERES", + "code_postal": "10260", + "coordonnees_gps": [ + 48.1485731236, + 4.27075945691 + ], + "libelle_d_acheminement": "FOUCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27075945691, + 48.1485731236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11c3318e80b7bb2f438901683b1bbb62311eb93e", + "fields": { + "code_commune_insee": "10161", + "nom_de_la_commune": "FRESNAY", + "code_postal": "10200", + "coordonnees_gps": [ + 48.3091765405, + 4.75726662976 + ], + "libelle_d_acheminement": "FRESNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75726662976, + 48.3091765405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f58c9aa8cbbb4a251a40d2acdcf187c4b2d926e3", + "fields": { + "code_commune_insee": "10186", + "nom_de_la_commune": "LAINES AUX BOIS", + "code_postal": "10120", + "coordonnees_gps": [ + 48.2286422657, + 3.97898834535 + ], + "libelle_d_acheminement": "LAINES AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97898834535, + 48.2286422657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b354f0d3ead681c9a7d54512bddbb764ecbcd26", + "fields": { + "code_commune_insee": "10187", + "nom_de_la_commune": "LANDREVILLE", + "code_postal": "10110", + "coordonnees_gps": [ + 48.0711739648, + 4.46588961717 + ], + "libelle_d_acheminement": "LANDREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46588961717, + 48.0711739648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a1defcc0654ac492c906b3fd2dcdc6035caef03", + "fields": { + "code_commune_insee": "10190", + "nom_de_la_commune": "LAUBRESSEL", + "code_postal": "10270", + "coordonnees_gps": [ + 48.3004850515, + 4.22586095829 + ], + "libelle_d_acheminement": "LAUBRESSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22586095829, + 48.3004850515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f78d5550e9d0f70e7c9cf6f3a300653bc79c5de", + "fields": { + "code_commune_insee": "10191", + "nom_de_la_commune": "LAVAU", + "code_postal": "10150", + "coordonnees_gps": [ + 48.3334867186, + 4.09283972542 + ], + "libelle_d_acheminement": "LAVAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09283972542, + 48.3334867186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8470764edb8ab238f1c46c9fec8d37ce114bf187", + "fields": { + "code_commune_insee": "10203", + "nom_de_la_commune": "LONGCHAMP SUR AUJON", + "code_postal": "10310", + "coordonnees_gps": [ + 48.1525191193, + 4.81837981298 + ], + "libelle_d_acheminement": "LONGCHAMP SUR AUJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81837981298, + 48.1525191193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32bc9da17ad22f4dc38154579f35548c17bb7943", + "fields": { + "code_commune_insee": "10218", + "nom_de_la_commune": "MAISONS LES CHAOURCE", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0086838705, + 4.16340357951 + ], + "libelle_d_acheminement": "MAISONS LES CHAOURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16340357951, + 48.0086838705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "693f2590d78f759ec74d8c77899a13fce3ddd673", + "fields": { + "code_commune_insee": "10220", + "nom_de_la_commune": "MAIZIERES LA GRANDE PAROISSE", + "code_postal": "10510", + "coordonnees_gps": [ + 48.5043607411, + 3.78940830122 + ], + "libelle_d_acheminement": "MAIZIERES LA GRANDE PAROISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78940830122, + 48.5043607411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3da82bbbcdc197d399d40726e18e877c93f617a4", + "fields": { + "ligne_5": "LES GRANGES", + "code_commune_insee": "10220", + "libelle_d_acheminement": "MAIZIERES LA GRANDE PAROISSE", + "code_postal": "10510", + "nom_de_la_commune": "MAIZIERES LA GRANDE PAROISSE", + "coordonnees_gps": [ + 48.5043607411, + 3.78940830122 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78940830122, + 48.5043607411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4aeac71a36a5df1d0af00aca32c3c0d21a69b7dc", + "fields": { + "code_commune_insee": "10222", + "nom_de_la_commune": "MARAYE EN OTHE", + "code_postal": "10160", + "coordonnees_gps": [ + 48.1523036289, + 3.86532738324 + ], + "libelle_d_acheminement": "MARAYE EN OTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86532738324, + 48.1523036289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a34c2e6a913b33141834b5175ca3ccb87c281ee", + "fields": { + "code_commune_insee": "10225", + "nom_de_la_commune": "MARNAY SUR SEINE", + "code_postal": "10400", + "coordonnees_gps": [ + 48.5151408738, + 3.55397183293 + ], + "libelle_d_acheminement": "MARNAY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55397183293, + 48.5151408738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bf25f1ef03f4edc6570fe0048e0ec0a4f67ced0", + "fields": { + "code_commune_insee": "10226", + "nom_de_la_commune": "MAROLLES LES BAILLY", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1841528588, + 4.34621650756 + ], + "libelle_d_acheminement": "MAROLLES LES BAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34621650756, + 48.1841528588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a584e7b7011006926eccc8ec1e21ee60edc4bec3", + "fields": { + "code_commune_insee": "10229", + "nom_de_la_commune": "MAUPAS", + "code_postal": "10320", + "coordonnees_gps": [ + 48.137803272, + 4.07882418849 + ], + "libelle_d_acheminement": "MAUPAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07882418849, + 48.137803272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f64eb64e19e82770f1b06d19815fa0679a084469", + "fields": { + "code_commune_insee": "10242", + "nom_de_la_commune": "MEURVILLE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2042902297, + 4.60493225781 + ], + "libelle_d_acheminement": "MEURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60493225781, + 48.2042902297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "618dbac81581d3b43b41cf6774695249937aa151", + "fields": { + "code_commune_insee": "10247", + "nom_de_la_commune": "MONTFEY", + "code_postal": "10130", + "coordonnees_gps": [ + 48.0665324378, + 3.87246147303 + ], + "libelle_d_acheminement": "MONTFEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87246147303, + 48.0665324378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de5279639b2d0e73223b320a6f324e278877e77b", + "fields": { + "code_commune_insee": "10248", + "nom_de_la_commune": "MONTGUEUX", + "code_postal": "10300", + "coordonnees_gps": [ + 48.2976863348, + 3.95463268701 + ], + "libelle_d_acheminement": "MONTGUEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95463268701, + 48.2976863348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f576cc99ebb87fee88b487415ba3a73dfb7b00b5", + "fields": { + "code_commune_insee": "10254", + "nom_de_la_commune": "MONTPOTHIER", + "code_postal": "10400", + "coordonnees_gps": [ + 48.5762344915, + 3.51599225081 + ], + "libelle_d_acheminement": "MONTPOTHIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51599225081, + 48.5762344915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07ca43e7648317f6408138111bc104abd23ddd98", + "fields": { + "code_commune_insee": "10258", + "nom_de_la_commune": "MORVILLIERS", + "code_postal": "10500", + "coordonnees_gps": [ + 48.3786765454, + 4.63547205459 + ], + "libelle_d_acheminement": "MORVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63547205459, + 48.3786765454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c18987c2dbf8282ec285cd17d8a4c2b9a4b6bbb", + "fields": { + "code_commune_insee": "10260", + "nom_de_la_commune": "MOUSSEY", + "code_postal": "10800", + "coordonnees_gps": [ + 48.2189146741, + 4.09309786071 + ], + "libelle_d_acheminement": "MOUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09309786071, + 48.2189146741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7edaaf23e93dd59e7d693531b2bf3a56cbb8c016", + "fields": { + "code_commune_insee": "10263", + "nom_de_la_commune": "NEUVILLE SUR VANNE", + "code_postal": "10190", + "coordonnees_gps": [ + 48.2525559272, + 3.77471634627 + ], + "libelle_d_acheminement": "NEUVILLE SUR VANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77471634627, + 48.2525559272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae5d6ad528cb6df63190da49ebe841f1b76fb4fd", + "fields": { + "code_commune_insee": "10287", + "nom_de_la_commune": "PINEY", + "code_postal": "10220", + "coordonnees_gps": [ + 48.3314574257, + 4.35909414684 + ], + "libelle_d_acheminement": "PINEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35909414684, + 48.3314574257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1627decee7519be478390545bfbd2df9335db60", + "fields": { + "code_commune_insee": "10297", + "nom_de_la_commune": "PONT STE MARIE", + "code_postal": "10150", + "coordonnees_gps": [ + 48.3193392667, + 4.09949303348 + ], + "libelle_d_acheminement": "PONT STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09949303348, + 48.3193392667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d33658ebdbe79eceda28c7e9c18451a90106f2e9", + "fields": { + "code_commune_insee": "10310", + "nom_de_la_commune": "PUITS ET NUISEMENT", + "code_postal": "10140", + "coordonnees_gps": [ + 48.215021538, + 4.51130773229 + ], + "libelle_d_acheminement": "PUITS ET NUISEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51130773229, + 48.215021538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a6de367f28c4e683c73732b9bef0e6fc12f0da1", + "fields": { + "code_commune_insee": "10314", + "nom_de_la_commune": "RAMERUPT", + "code_postal": "10240", + "coordonnees_gps": [ + 48.5223260562, + 4.30433768781 + ], + "libelle_d_acheminement": "RAMERUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30433768781, + 48.5223260562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b194969412b92cc4f17b0fc5a0e16d281f525f89", + "fields": { + "ligne_5": "ROMAINES", + "code_commune_insee": "10314", + "libelle_d_acheminement": "RAMERUPT", + "code_postal": "10240", + "nom_de_la_commune": "RAMERUPT", + "coordonnees_gps": [ + 48.5223260562, + 4.30433768781 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30433768781, + 48.5223260562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13ee4db93df3547b8c0f6418656ae45dee4559ff", + "fields": { + "code_commune_insee": "10321", + "nom_de_la_commune": "LA RIVIERE DE CORPS", + "code_postal": "10440", + "coordonnees_gps": [ + 48.2801548843, + 4.0140574686 + ], + "libelle_d_acheminement": "LA RIVIERE DE CORPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0140574686, + 48.2801548843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a62d9c3eb639de7089d5f150b10949cce4e8f9d1", + "fields": { + "code_commune_insee": "10334", + "nom_de_la_commune": "ST AUBIN", + "code_postal": "10400", + "coordonnees_gps": [ + 48.4828875357, + 3.55326963748 + ], + "libelle_d_acheminement": "ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55326963748, + 48.4828875357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84830ed494d0b0996799cc2e43e2cb61b2559758", + "fields": { + "code_commune_insee": "10337", + "nom_de_la_commune": "ST CHRISTOPHE DODINICOURT", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4331543584, + 4.47362272662 + ], + "libelle_d_acheminement": "ST CHRISTOPHE DODINICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47362272662, + 48.4331543584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d659da383c212041d9749a487caf0a303314f948", + "fields": { + "code_commune_insee": "10349", + "nom_de_la_commune": "ST LYE", + "code_postal": "10180", + "coordonnees_gps": [ + 48.3442113534, + 3.9810222993 + ], + "libelle_d_acheminement": "ST LYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9810222993, + 48.3442113534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cace455116aebad44e7f66ce56beae91ceb144c", + "fields": { + "code_commune_insee": "10351", + "nom_de_la_commune": "ST MARTIN DE BOSSENAY", + "code_postal": "10100", + "coordonnees_gps": [ + 48.4444963623, + 3.68962305417 + ], + "libelle_d_acheminement": "ST MARTIN DE BOSSENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68962305417, + 48.4444963623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10fa8bcaf6bd872ac60114d1f6a0a7efd1f95647", + "fields": { + "code_commune_insee": "10354", + "nom_de_la_commune": "ST NABORD SUR AUBE", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5128918959, + 4.20166023679 + ], + "libelle_d_acheminement": "ST NABORD SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20166023679, + 48.5128918959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b3ed17d4ddd3bdb6a60d8df0170ac0d6901ced8", + "fields": { + "code_commune_insee": "10355", + "nom_de_la_commune": "ST NICOLAS LA CHAPELLE", + "code_postal": "10400", + "coordonnees_gps": [ + 48.5229300856, + 3.47856484513 + ], + "libelle_d_acheminement": "ST NICOLAS LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47856484513, + 48.5229300856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37140bf95c359e22915a1f046799597b0f11a682", + "fields": { + "code_commune_insee": "10362", + "nom_de_la_commune": "STE SAVINE", + "code_postal": "10300", + "coordonnees_gps": [ + 48.2963408998, + 4.02333022061 + ], + "libelle_d_acheminement": "STE SAVINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02333022061, + 48.2963408998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4e6899bd4d8ec667e3f031afc42cee90fb3756b", + "fields": { + "code_commune_insee": "10365", + "nom_de_la_commune": "SALON", + "code_postal": "10700", + "coordonnees_gps": [ + 48.6427112307, + 4.01781744354 + ], + "libelle_d_acheminement": "SALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01781744354, + 48.6427112307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87096ce52202d7c5ebc0c76762f444fac35c61c6", + "fields": { + "code_commune_insee": "10372", + "nom_de_la_commune": "SOULAINES DHUYS", + "code_postal": "10200", + "coordonnees_gps": [ + 48.3784420023, + 4.71797387888 + ], + "libelle_d_acheminement": "SOULAINES DHUYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71797387888, + 48.3784420023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4448377ca5ce297d8ea25c059f5ea8024528bd34", + "fields": { + "code_commune_insee": "10374", + "nom_de_la_commune": "SPOY", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2276371502, + 4.61406016756 + ], + "libelle_d_acheminement": "SPOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61406016756, + 48.2276371502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1419796e04ae9da826b94697145f66eac3f34f9", + "fields": { + "code_commune_insee": "10375", + "nom_de_la_commune": "THENNELIERES", + "code_postal": "10410", + "coordonnees_gps": [ + 48.2893448693, + 4.18526592573 + ], + "libelle_d_acheminement": "THENNELIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18526592573, + 48.2893448693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96a621d9b175154819b66b578e8fa369b01265e3", + "fields": { + "code_commune_insee": "10378", + "nom_de_la_commune": "THORS", + "code_postal": "10200", + "coordonnees_gps": [ + 48.3080677394, + 4.80493827415 + ], + "libelle_d_acheminement": "THORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80493827415, + 48.3080677394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0411c1943060d31b5cdefa3d5fd3c180a782854", + "fields": { + "ligne_5": "TROUAN LE GRAND", + "code_commune_insee": "10386", + "libelle_d_acheminement": "TROUANS", + "code_postal": "10700", + "nom_de_la_commune": "TROUANS", + "coordonnees_gps": [ + 48.6388005085, + 4.24987699201 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24987699201, + 48.6388005085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6679061ff81f033aa95be8ad3ed81871b36412cc", + "fields": { + "code_commune_insee": "10387", + "nom_de_la_commune": "TROYES", + "code_postal": "10000", + "coordonnees_gps": [ + 48.2967099637, + 4.07827967525 + ], + "libelle_d_acheminement": "TROYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07827967525, + 48.2967099637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd5c9687f334c6a89b282a217c1e360fad63374d", + "fields": { + "code_commune_insee": "10395", + "nom_de_la_commune": "VANLAY", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0188179751, + 4.01889408699 + ], + "libelle_d_acheminement": "VANLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01889408699, + 48.0188179751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "384fb46e08499498aa63e33003588ad9b765347d", + "fields": { + "code_commune_insee": "10408", + "nom_de_la_commune": "VIAPRES LE PETIT", + "code_postal": "10380", + "coordonnees_gps": [ + 48.5822319187, + 4.05387093659 + ], + "libelle_d_acheminement": "VIAPRES LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05387093659, + 48.5822319187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f90fb97cfcb273df7a84f4f70fc3e6c3c4ed924", + "fields": { + "code_commune_insee": "10414", + "nom_de_la_commune": "VILLELOUP", + "code_postal": "10350", + "coordonnees_gps": [ + 48.3546192059, + 3.86858896275 + ], + "libelle_d_acheminement": "VILLELOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86858896275, + 48.3546192059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1724c886c1144377c575c610574ef6add5d5c400", + "fields": { + "code_commune_insee": "10422", + "nom_de_la_commune": "VILLENEUVE AU CHEMIN", + "code_postal": "10130", + "coordonnees_gps": [ + 48.089137016, + 3.83985245464 + ], + "libelle_d_acheminement": "VILLENEUVE AU CHEMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83985245464, + 48.089137016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45d2283f54f2c395f6bee18d0fa3ca0b567691aa", + "fields": { + "code_commune_insee": "10434", + "nom_de_la_commune": "VILLY LE BOIS", + "code_postal": "10800", + "coordonnees_gps": [ + 48.1675453288, + 4.08980540279 + ], + "libelle_d_acheminement": "VILLY LE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08980540279, + 48.1675453288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "284a3c3b7c7d1945f929717947b65328ba54e5ba", + "fields": { + "code_commune_insee": "10437", + "nom_de_la_commune": "VIREY SOUS BAR", + "code_postal": "10260", + "coordonnees_gps": [ + 48.1344044788, + 4.30578605656 + ], + "libelle_d_acheminement": "VIREY SOUS BAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30578605656, + 48.1344044788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d79208976769c50d3546d842da2933388482c146", + "fields": { + "code_commune_insee": "10440", + "nom_de_la_commune": "VOIGNY", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2360883713, + 4.76532474234 + ], + "libelle_d_acheminement": "VOIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76532474234, + 48.2360883713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbd9bfd9c2c2b03e03f21a23e1f3023f4aab5b86", + "fields": { + "code_commune_insee": "10441", + "nom_de_la_commune": "VOSNON", + "code_postal": "10130", + "coordonnees_gps": [ + 48.1085969671, + 3.83539152599 + ], + "libelle_d_acheminement": "VOSNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83539152599, + 48.1085969671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fb760b00e2c5f88c8f03ff359dfd52e54fc29bd", + "fields": { + "code_commune_insee": "10445", + "nom_de_la_commune": "YEVRES LE PETIT", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4793934797, + 4.49202256762 + ], + "libelle_d_acheminement": "YEVRES LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49202256762, + 48.4793934797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82db951e1819d4b1d396fb292fad64991ac82cd7", + "fields": { + "code_commune_insee": "11008", + "nom_de_la_commune": "ALET LES BAINS", + "code_postal": "11580", + "coordonnees_gps": [ + 42.9943909775, + 2.25844650226 + ], + "libelle_d_acheminement": "ALET LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25844650226, + 42.9943909775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb499c0c684980583cad7a19a135ebd7bdb5b97b", + "fields": { + "code_commune_insee": "11011", + "nom_de_la_commune": "ARAGON", + "code_postal": "11600", + "coordonnees_gps": [ + 43.298766565, + 2.30707240315 + ], + "libelle_d_acheminement": "ARAGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30707240315, + 43.298766565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7acfd13197256ffe1465b131427515c6b056f2b3", + "fields": { + "code_commune_insee": "11021", + "nom_de_la_commune": "AXAT", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7974645623, + 2.24059640574 + ], + "libelle_d_acheminement": "AXAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24059640574, + 42.7974645623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fc09969d987ca3fcd6512d226fdc0e2996e6237", + "fields": { + "code_commune_insee": "11038", + "nom_de_la_commune": "BESSEDE DE SAULT", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7846761103, + 2.13835524399 + ], + "libelle_d_acheminement": "BESSEDE DE SAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13835524399, + 42.7846761103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bb83446cdad57855b4b6647dc803fad09ec585c", + "fields": { + "code_commune_insee": "11044", + "nom_de_la_commune": "BOUISSE", + "code_postal": "11330", + "coordonnees_gps": [ + 42.9841940805, + 2.43400425918 + ], + "libelle_d_acheminement": "BOUISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43400425918, + 42.9841940805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df1f5ef531b5ef41456d612c1951c985698518a2", + "fields": { + "code_commune_insee": "11048", + "nom_de_la_commune": "BOUTENAC", + "code_postal": "11200", + "coordonnees_gps": [ + 43.1464757563, + 2.79815661148 + ], + "libelle_d_acheminement": "BOUTENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79815661148, + 43.1464757563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1c9c503148c107d7ee2c39d06b25f1e9b44466b", + "fields": { + "code_commune_insee": "11049", + "nom_de_la_commune": "BRAM", + "code_postal": "11150", + "coordonnees_gps": [ + 43.2514206471, + 2.11029895207 + ], + "libelle_d_acheminement": "BRAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11029895207, + 43.2514206471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c1cbca12a0baf605655b0198f6b11b3a886a85c", + "fields": { + "code_commune_insee": "11052", + "nom_de_la_commune": "BROUSSES ET VILLARET", + "code_postal": "11390", + "coordonnees_gps": [ + 43.3433075784, + 2.24334040085 + ], + "libelle_d_acheminement": "BROUSSES ET VILLARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24334040085, + 43.3433075784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d710f9ede28ef521fe5e09a563bfd451f9a7a899", + "fields": { + "code_commune_insee": "11053", + "nom_de_la_commune": "BRUGAIROLLES", + "code_postal": "11300", + "coordonnees_gps": [ + 43.1356849654, + 2.16049752521 + ], + "libelle_d_acheminement": "BRUGAIROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16049752521, + 43.1356849654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9278c503066cd54776d1f0b8bac7579857ea3ac8", + "fields": { + "code_commune_insee": "11055", + "nom_de_la_commune": "BUGARACH", + "code_postal": "11190", + "coordonnees_gps": [ + 42.8784709373, + 2.35059589731 + ], + "libelle_d_acheminement": "BUGARACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35059589731, + 42.8784709373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce2f1305b7e4d7691d1046d53723ca340b3e21b6", + "fields": { + "code_commune_insee": "11062", + "nom_de_la_commune": "CAMPAGNA DE SAULT", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7583797479, + 2.04379622139 + ], + "libelle_d_acheminement": "CAMPAGNA DE SAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04379622139, + 42.7583797479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9942efe7337ba552e4bf453c77babc1020c202e9", + "fields": { + "code_commune_insee": "11063", + "nom_de_la_commune": "CAMPAGNE SUR AUDE", + "code_postal": "11260", + "coordonnees_gps": [ + 42.9155446824, + 2.20241626572 + ], + "libelle_d_acheminement": "CAMPAGNE SUR AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20241626572, + 42.9155446824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84d11e5bf761d7262ca2e060bbdda1a1bea6f066", + "fields": { + "ligne_5": "GREZES HERMINIS", + "code_commune_insee": "11069", + "libelle_d_acheminement": "CARCASSONNE", + "code_postal": "11000", + "nom_de_la_commune": "CARCASSONNE", + "coordonnees_gps": [ + 43.2093798444, + 2.34398855385 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34398855385, + 43.2093798444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec51d86ac03d58f88f28017bb654873b1eb09ded", + "fields": { + "code_commune_insee": "11070", + "nom_de_la_commune": "CARLIPA", + "code_postal": "11170", + "coordonnees_gps": [ + 43.306335097, + 2.12148270363 + ], + "libelle_d_acheminement": "CARLIPA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12148270363, + 43.306335097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45a35315aa32d946d83d95d91e6af99ae5237011", + "fields": { + "code_commune_insee": "11085", + "nom_de_la_commune": "CAVANAC", + "code_postal": "11570", + "coordonnees_gps": [ + 43.1689835434, + 2.33479005955 + ], + "libelle_d_acheminement": "CAVANAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33479005955, + 43.1689835434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3294157e7ff4906841c8ede9a80d2ad5b14c087", + "fields": { + "code_commune_insee": "11086", + "nom_de_la_commune": "CAVES", + "code_postal": "11510", + "coordonnees_gps": [ + 42.9370852126, + 2.96042838757 + ], + "libelle_d_acheminement": "CAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96042838757, + 42.9370852126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "636e63cd18dfa301f9bf1228cf8d85f613de72ec", + "fields": { + "code_commune_insee": "11108", + "nom_de_la_commune": "LA COURTETE", + "code_postal": "11240", + "coordonnees_gps": [ + 43.1421990579, + 2.03235561707 + ], + "libelle_d_acheminement": "LA COURTETE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03235561707, + 43.1421990579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83f35942230fff0e271b1daac30a5a29814e178a", + "fields": { + "code_commune_insee": "11111", + "nom_de_la_commune": "CRUSCADES", + "code_postal": "11200", + "coordonnees_gps": [ + 43.200032094, + 2.81675386265 + ], + "libelle_d_acheminement": "CRUSCADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81675386265, + 43.200032094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "717f5f607e852b90a2522fae0d85a12af41d002d", + "fields": { + "code_commune_insee": "11117", + "nom_de_la_commune": "DAVEJEAN", + "code_postal": "11330", + "coordonnees_gps": [ + 42.9586371128, + 2.60630831881 + ], + "libelle_d_acheminement": "DAVEJEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60630831881, + 42.9586371128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09b9d240c3c8b207c18a6f7105c491e323fca4e3", + "fields": { + "code_commune_insee": "11118", + "nom_de_la_commune": "DERNACUEILLETTE", + "code_postal": "11330", + "coordonnees_gps": [ + 42.9287190285, + 2.59769588441 + ], + "libelle_d_acheminement": "DERNACUEILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59769588441, + 42.9287190285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "908e82fe53b51dcf9fe15e8a505f11bf991eba47", + "fields": { + "code_commune_insee": "11127", + "nom_de_la_commune": "ESCOULOUBRE", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7315992556, + 2.1323327803 + ], + "libelle_d_acheminement": "ESCOULOUBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1323327803, + 42.7315992556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "846a52d7ba7daa510e233a92ab275f80d50218f5", + "fields": { + "code_commune_insee": "11129", + "nom_de_la_commune": "ESPERAZA", + "code_postal": "11260", + "coordonnees_gps": [ + 42.9316895316, + 2.22104640259 + ], + "libelle_d_acheminement": "ESPERAZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22104640259, + 42.9316895316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fedf9312138a9ff1ba70aed4e180d6bf120d1130", + "fields": { + "ligne_5": "FA", + "code_commune_insee": "11131", + "libelle_d_acheminement": "VAL DU FABY", + "code_postal": "11260", + "nom_de_la_commune": "VAL DU FABY", + "coordonnees_gps": [ + 42.9276860891, + 2.17956693905 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17956693905, + 42.9276860891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a53c231d64c7dc069037c6ddfc19f11d622cf390", + "fields": { + "code_commune_insee": "11133", + "nom_de_la_commune": "FAJAC EN VAL", + "code_postal": "11220", + "coordonnees_gps": [ + 43.1210342703, + 2.46311809989 + ], + "libelle_d_acheminement": "FAJAC EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46311809989, + 43.1210342703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70411a7415fc6364f2792dd890c10ccb7b0ffbb7", + "fields": { + "code_commune_insee": "11140", + "nom_de_la_commune": "FERRALS LES CORBIERES", + "code_postal": "11200", + "coordonnees_gps": [ + 43.1431544039, + 2.7387140866 + ], + "libelle_d_acheminement": "FERRALS LES CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7387140866, + 43.1431544039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86693b332bd030e90d88bb37a2bed1658d09cdd5", + "fields": { + "code_commune_insee": "11145", + "nom_de_la_commune": "FLEURY", + "code_postal": "11560", + "coordonnees_gps": [ + 43.214412802, + 3.17666583157 + ], + "libelle_d_acheminement": "FLEURY D AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17666583157, + 43.214412802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b13f9da8b06b2e9531907ab69731b544724b4d08", + "fields": { + "ligne_5": "ST PIERRE LA MER", + "code_commune_insee": "11145", + "libelle_d_acheminement": "FLEURY D AUDE", + "code_postal": "11560", + "nom_de_la_commune": "FLEURY", + "coordonnees_gps": [ + 43.214412802, + 3.17666583157 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17666583157, + 43.214412802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cd40fb866a2a0947701d8c603ca10305f6f89e6", + "fields": { + "code_commune_insee": "11153", + "nom_de_la_commune": "LA FORCE", + "code_postal": "11270", + "coordonnees_gps": [ + 43.1975835427, + 2.08437892262 + ], + "libelle_d_acheminement": "LA FORCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08437892262, + 43.1975835427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ae2d26aebb6557c567a2af81393911762a4ca04", + "fields": { + "code_commune_insee": "11160", + "nom_de_la_commune": "GALINAGUES", + "code_postal": "11140", + "coordonnees_gps": [ + 42.8064138721, + 2.04766915652 + ], + "libelle_d_acheminement": "GALINAGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04766915652, + 42.8064138721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be6f067fe15166e064dcf20d3c3483c17f42ff09", + "fields": { + "code_commune_insee": "11164", + "nom_de_la_commune": "GINESTAS", + "code_postal": "11120", + "coordonnees_gps": [ + 43.2758588523, + 2.87717593442 + ], + "libelle_d_acheminement": "GINESTAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87717593442, + 43.2758588523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5fd1e681cdfbf8ea7314d9065aeeec8e65cda4d", + "fields": { + "code_commune_insee": "11167", + "nom_de_la_commune": "GRAMAZIE", + "code_postal": "11240", + "coordonnees_gps": [ + 43.1373081633, + 2.09746996303 + ], + "libelle_d_acheminement": "GRAMAZIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09746996303, + 43.1373081633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "945c231c4e1791ba5c2e38ee02d0d68f5c42c027", + "fields": { + "code_commune_insee": "11174", + "nom_de_la_commune": "LES ILHES", + "code_postal": "11380", + "coordonnees_gps": [ + 43.3583194485, + 2.37506698668 + ], + "libelle_d_acheminement": "LES ILHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37506698668, + 43.3583194485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5770f919cae7cac9689a138f0036dd9474054960", + "fields": { + "code_commune_insee": "11175", + "nom_de_la_commune": "ISSEL", + "code_postal": "11400", + "coordonnees_gps": [ + 43.3675679616, + 1.99804792983 + ], + "libelle_d_acheminement": "ISSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99804792983, + 43.3675679616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6290fa46eb300065bed8ca454b06ac36e11c5af1", + "fields": { + "code_commune_insee": "11176", + "nom_de_la_commune": "JONQUIERES", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0394758457, + 2.72351814266 + ], + "libelle_d_acheminement": "JONQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72351814266, + 43.0394758457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b263ead6d13d40abba7ce2a63988ccef3ac1fe78", + "fields": { + "code_commune_insee": "11177", + "nom_de_la_commune": "JOUCOU", + "code_postal": "11140", + "coordonnees_gps": [ + 42.82469022, + 2.08483548472 + ], + "libelle_d_acheminement": "JOUCOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08483548472, + 42.82469022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76bb8fd7dee9887119ac98dc73ff302c6f395830", + "fields": { + "code_commune_insee": "11178", + "nom_de_la_commune": "LABASTIDE D ANJOU", + "code_postal": "11320", + "coordonnees_gps": [ + 43.3468106616, + 1.85317961566 + ], + "libelle_d_acheminement": "LABASTIDE D ANJOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85317961566, + 43.3468106616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46b5915ed128ccc4d490b38f0a4e04ea3310406a", + "fields": { + "code_commune_insee": "11187", + "nom_de_la_commune": "LANET", + "code_postal": "11330", + "coordonnees_gps": [ + 42.9662795152, + 2.48612053622 + ], + "libelle_d_acheminement": "LANET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48612053622, + 42.9662795152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ad3a5b84f4348aa50cb6747c20ba3e54abee234", + "fields": { + "code_commune_insee": "11190", + "nom_de_la_commune": "LA REDORTE", + "code_postal": "11700", + "coordonnees_gps": [ + 43.2477384944, + 2.64987073042 + ], + "libelle_d_acheminement": "LA REDORTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64987073042, + 43.2477384944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f704f02ffd5d9efe0cbf56e2d15da54b974c2bd8", + "fields": { + "code_commune_insee": "11191", + "nom_de_la_commune": "LAROQUE DE FA", + "code_postal": "11330", + "coordonnees_gps": [ + 42.9503532669, + 2.55912967767 + ], + "libelle_d_acheminement": "LAROQUE DE FA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55912967767, + 42.9503532669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "059a17f110b0f0c3101f05a774437aea8f00a0d6", + "fields": { + "code_commune_insee": "11196", + "nom_de_la_commune": "LAURAC", + "code_postal": "11270", + "coordonnees_gps": [ + 43.2303422976, + 1.9693292407 + ], + "libelle_d_acheminement": "LAURAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9693292407, + 43.2303422976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65ba5e3cda06463cd14ef76e123a02206d333e21", + "fields": { + "code_commune_insee": "11198", + "nom_de_la_commune": "LAURE MINERVOIS", + "code_postal": "11800", + "coordonnees_gps": [ + 43.271055447, + 2.50991120089 + ], + "libelle_d_acheminement": "LAURE MINERVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50991120089, + 43.271055447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a72f7522fcfb079436947eae994cdb2aa5d364b", + "fields": { + "ligne_5": "PORT LEUCATE", + "code_commune_insee": "11202", + "libelle_d_acheminement": "LEUCATE", + "code_postal": "11370", + "nom_de_la_commune": "LEUCATE", + "coordonnees_gps": [ + 42.8993650672, + 3.02676038573 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02676038573, + 42.8993650672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "661f57e40ab7d12a86580b559a82a66e9d90b8fc", + "fields": { + "code_commune_insee": "11207", + "nom_de_la_commune": "LOUPIA", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0619787093, + 2.12549217524 + ], + "libelle_d_acheminement": "LOUPIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12549217524, + 43.0619787093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "499a4549a1ed323d69eef08a68d5edee03d0ee19", + "fields": { + "code_commune_insee": "11209", + "nom_de_la_commune": "LUC SUR AUDE", + "code_postal": "11190", + "coordonnees_gps": [ + 42.9640628627, + 2.28123974033 + ], + "libelle_d_acheminement": "LUC SUR AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28123974033, + 42.9640628627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a0b7954dc5113c076abb0f00043ae9fc7dc3cd2", + "fields": { + "code_commune_insee": "11211", + "nom_de_la_commune": "MAGRIE", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0249180261, + 2.20415031047 + ], + "libelle_d_acheminement": "MAGRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20415031047, + 43.0249180261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf2fd0ba5021783dd5b800614094613a7eac00d2", + "fields": { + "code_commune_insee": "11213", + "nom_de_la_commune": "MAISONS", + "code_postal": "11330", + "coordonnees_gps": [ + 42.9292639263, + 2.64024224391 + ], + "libelle_d_acheminement": "MAISONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64024224391, + 42.9292639263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb1beae84da965ecd438afc7fd945abc5e2f0710", + "fields": { + "code_commune_insee": "11215", + "nom_de_la_commune": "MALVES EN MINERVOIS", + "code_postal": "11600", + "coordonnees_gps": [ + 43.250190518, + 2.45343864014 + ], + "libelle_d_acheminement": "MALVES EN MINERVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45343864014, + 43.250190518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "152b3cea678c9144e0438dc3a7c6db5ca87661a6", + "fields": { + "code_commune_insee": "11223", + "nom_de_la_commune": "MAS DES COURS", + "code_postal": "11570", + "coordonnees_gps": [ + 43.1316087577, + 2.42671683067 + ], + "libelle_d_acheminement": "MAS DES COURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42671683067, + 43.1316087577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f20f19d12ff175bc9bab908087f1e9c8cf07ede0", + "fields": { + "code_commune_insee": "11228", + "nom_de_la_commune": "MAZEROLLES DU RAZES", + "code_postal": "11240", + "coordonnees_gps": [ + 43.1364410454, + 2.06601390083 + ], + "libelle_d_acheminement": "MAZEROLLES DU RAZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06601390083, + 43.1364410454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "868c29738f2879397798a3c1385c540f11086be3", + "fields": { + "code_commune_insee": "11230", + "nom_de_la_commune": "MERIAL", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7713628009, + 1.96356419202 + ], + "libelle_d_acheminement": "MERIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96356419202, + 42.7713628009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "379c43339651559a6d58039f2589cdd81c597456", + "fields": { + "code_commune_insee": "11232", + "nom_de_la_commune": "MIRAVAL CABARDES", + "code_postal": "11380", + "coordonnees_gps": [ + 43.3813815441, + 2.34060793315 + ], + "libelle_d_acheminement": "MIRAVAL CABARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34060793315, + 43.3813815441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e4da855fa3fac85257d87eaec0cb03c3e48a4ea", + "fields": { + "code_commune_insee": "11238", + "nom_de_la_commune": "MOLLEVILLE", + "code_postal": "11410", + "coordonnees_gps": [ + 43.3122283518, + 1.83599327392 + ], + "libelle_d_acheminement": "MOLLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83599327392, + 43.3122283518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd38dbae7ef559a580f821a629cab2bbc639f346", + "fields": { + "code_commune_insee": "11239", + "nom_de_la_commune": "MONTAURIOL", + "code_postal": "11410", + "coordonnees_gps": [ + 43.2752849467, + 1.83225943159 + ], + "libelle_d_acheminement": "MONTAURIOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83225943159, + 43.2752849467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89c807822214478a9cf733b1d36d5d6d0ae55c82", + "fields": { + "code_commune_insee": "11240", + "nom_de_la_commune": "MONTAZELS", + "code_postal": "11190", + "coordonnees_gps": [ + 42.9517592122, + 2.24298643273 + ], + "libelle_d_acheminement": "MONTAZELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24298643273, + 42.9517592122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ea4b723955194858886a0b3b41708d70922df8c", + "fields": { + "code_commune_insee": "11241", + "nom_de_la_commune": "MONTBRUN DES CORBIERES", + "code_postal": "11700", + "coordonnees_gps": [ + 43.2010816161, + 2.6810058702 + ], + "libelle_d_acheminement": "MONTBRUN DES CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6810058702, + 43.2010816161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "748ff387a3f8e4677fd36efb58e9c4ca070abf81", + "fields": { + "code_commune_insee": "11247", + "nom_de_la_commune": "MONTHAUT", + "code_postal": "11240", + "coordonnees_gps": [ + 43.0818910359, + 2.05925585786 + ], + "libelle_d_acheminement": "MONTHAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05925585786, + 43.0818910359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b12d98e963c670e861903fabcb1100048b7ae96d", + "fields": { + "code_commune_insee": "11259", + "nom_de_la_commune": "MOUSSOULENS", + "code_postal": "11170", + "coordonnees_gps": [ + 43.2811009539, + 2.23830032758 + ], + "libelle_d_acheminement": "MOUSSOULENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23830032758, + 43.2811009539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db46c52c57b55abee69e82df9b608122d2cc0ba3", + "fields": { + "code_commune_insee": "11264", + "nom_de_la_commune": "NEVIAN", + "code_postal": "11200", + "coordonnees_gps": [ + 43.2036456469, + 2.88578890635 + ], + "libelle_d_acheminement": "NEVIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88578890635, + 43.2036456469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "965f6b474ae7dc2d602d5a96c92c8c71628d6923", + "fields": { + "code_commune_insee": "11266", + "nom_de_la_commune": "PORT LA NOUVELLE", + "code_postal": "11210", + "coordonnees_gps": [ + 43.0210644931, + 3.03976442192 + ], + "libelle_d_acheminement": "PORT LA NOUVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03976442192, + 43.0210644931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa2145e9559024efbdb3e6290bcf07fd02ef447d", + "fields": { + "code_commune_insee": "11280", + "nom_de_la_commune": "PEPIEUX", + "code_postal": "11700", + "coordonnees_gps": [ + 43.2970451526, + 2.6863317434 + ], + "libelle_d_acheminement": "PEPIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6863317434, + 43.2970451526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "494683d4863c7d46bcdd070707c76a062e49daff", + "fields": { + "code_commune_insee": "11282", + "nom_de_la_commune": "PEYREFITTE DU RAZES", + "code_postal": "11230", + "coordonnees_gps": [ + 43.05907818, + 2.02221796276 + ], + "libelle_d_acheminement": "PEYREFITTE DU RAZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02221796276, + 43.05907818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a102b27a8242924d756075fa00b0f6d2ec8c3ef", + "fields": { + "code_commune_insee": "11283", + "nom_de_la_commune": "PEYREFITTE SUR L HERS", + "code_postal": "11420", + "coordonnees_gps": [ + 43.2460152327, + 1.81716569517 + ], + "libelle_d_acheminement": "PEYREFITTE SUR L HERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81716569517, + 43.2460152327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ed8097f9c9f6e469ea56779dc725a84b63fc035", + "fields": { + "code_commune_insee": "11287", + "nom_de_la_commune": "PEYROLLES", + "code_postal": "11190", + "coordonnees_gps": [ + 42.9635540616, + 2.33849254211 + ], + "libelle_d_acheminement": "PEYROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33849254211, + 42.9635540616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "764ad725264eee321b708ff23998dfe8d8f108d9", + "fields": { + "code_commune_insee": "11289", + "nom_de_la_commune": "PIEUSSE", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0830763343, + 2.25477345035 + ], + "libelle_d_acheminement": "PIEUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25477345035, + 43.0830763343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8047c61d4c3df5af1951c0e7ab3271206e4dd017", + "fields": { + "code_commune_insee": "11292", + "nom_de_la_commune": "LA POMAREDE", + "code_postal": "11400", + "coordonnees_gps": [ + 43.4072581456, + 1.94393147936 + ], + "libelle_d_acheminement": "LA POMAREDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94393147936, + 43.4072581456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc47b969b2a8cb007cd6b40a1dbe5e9ac53e04df", + "fields": { + "code_commune_insee": "11315", + "nom_de_la_commune": "RIEUX MINERVOIS", + "code_postal": "11160", + "coordonnees_gps": [ + 43.2683807595, + 2.59121140963 + ], + "libelle_d_acheminement": "RIEUX MINERVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59121140963, + 43.2683807595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc41d3458a91fcc34ac977b1ac9ecdb475ff7dbc", + "fields": { + "code_commune_insee": "11316", + "nom_de_la_commune": "RIVEL", + "code_postal": "11230", + "coordonnees_gps": [ + 42.9209596609, + 2.00316756108 + ], + "libelle_d_acheminement": "RIVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00316756108, + 42.9209596609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54bcb40c7ce33f78dfa7e4c2bc4b23765f773bdd", + "fields": { + "code_commune_insee": "11318", + "nom_de_la_commune": "ROQUECOURBE MINERVOIS", + "code_postal": "11700", + "coordonnees_gps": [ + 43.2149762004, + 2.65409823353 + ], + "libelle_d_acheminement": "ROQUECOURBE MINERVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65409823353, + 43.2149762004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53bb7b13e2f683fbb1c3c5c05082b9680558c4b8", + "fields": { + "code_commune_insee": "11324", + "nom_de_la_commune": "ROUBIA", + "code_postal": "11200", + "coordonnees_gps": [ + 43.2494642548, + 2.79738174883 + ], + "libelle_d_acheminement": "ROUBIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79738174883, + 43.2494642548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b410f3e63a8b2b39b6d442a90c777bd2a24f862", + "fields": { + "code_commune_insee": "11325", + "nom_de_la_commune": "ROUFFIAC D AUDE", + "code_postal": "11250", + "coordonnees_gps": [ + 43.1246778558, + 2.28305296985 + ], + "libelle_d_acheminement": "ROUFFIAC D AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28305296985, + 43.1246778558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91c6a823146e2e689c957afb6a9730e0fbe89a68", + "fields": { + "code_commune_insee": "11326", + "nom_de_la_commune": "ROUFFIAC DES CORBIERES", + "code_postal": "11350", + "coordonnees_gps": [ + 42.8890175915, + 2.55494937495 + ], + "libelle_d_acheminement": "ROUFFIAC DES CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55494937495, + 42.8890175915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f50cc6737fbc1dedfea3842269a10eb82df63ac", + "fields": { + "code_commune_insee": "11328", + "nom_de_la_commune": "ROUTIER", + "code_postal": "11240", + "coordonnees_gps": [ + 43.1062544863, + 2.13189477025 + ], + "libelle_d_acheminement": "ROUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13189477025, + 43.1062544863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff6cdac49ec11cd1b22cb72381a4a4dbd9384401", + "fields": { + "code_commune_insee": "11341", + "nom_de_la_commune": "ST FERRIOL", + "code_postal": "11500", + "coordonnees_gps": [ + 42.8955156292, + 2.22569769963 + ], + "libelle_d_acheminement": "ST FERRIOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22569769963, + 42.8955156292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d03e93abd6f1ed3a45316747625e52aa1f47c71a", + "fields": { + "code_commune_insee": "11347", + "nom_de_la_commune": "ST JULIA DE BEC", + "code_postal": "11500", + "coordonnees_gps": [ + 42.8601894521, + 2.25401672855 + ], + "libelle_d_acheminement": "ST JULIA DE BEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25401672855, + 42.8601894521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6af5c1b80c272654aa9bdbc331d3b003b6296ce4", + "fields": { + "code_commune_insee": "11348", + "nom_de_la_commune": "ST JULIEN DE BRIOLA", + "code_postal": "11270", + "coordonnees_gps": [ + 43.160649081, + 1.9453680798 + ], + "libelle_d_acheminement": "ST JULIEN DE BRIOLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9453680798, + 43.160649081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e24702d2abb11e1a32c29d7ad7a07e17d0104d75", + "fields": { + "code_commune_insee": "11364", + "nom_de_la_commune": "ST POLYCARPE", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0331548632, + 2.30004919732 + ], + "libelle_d_acheminement": "ST POLYCARPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30004919732, + 43.0331548632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5049436e6e250259be90124010440bb3bb827e0f", + "fields": { + "code_commune_insee": "11366", + "nom_de_la_commune": "STE VALIERE", + "code_postal": "11120", + "coordonnees_gps": [ + 43.2746311471, + 2.84527328137 + ], + "libelle_d_acheminement": "STE VALIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84527328137, + 43.2746311471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3e1cb97ff1b5a0ae06542a6abb3e1af6ca3f0d7", + "fields": { + "code_commune_insee": "11380", + "nom_de_la_commune": "SONNAC SUR L HERS", + "code_postal": "11230", + "coordonnees_gps": [ + 43.0152206316, + 2.00202806625 + ], + "libelle_d_acheminement": "SONNAC SUR L HERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00202806625, + 43.0152206316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a159a1f6cd57d57f010ef8e30be86cf30117f3d", + "fields": { + "code_commune_insee": "11381", + "nom_de_la_commune": "SOUGRAIGNE", + "code_postal": "11190", + "coordonnees_gps": [ + 42.9048326016, + 2.37483494186 + ], + "libelle_d_acheminement": "SOUGRAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37483494186, + 42.9048326016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4993930c7a6834c0c86f1ea68e82decbbe2a5e51", + "fields": { + "code_commune_insee": "11384", + "nom_de_la_commune": "SOULATGE", + "code_postal": "11330", + "coordonnees_gps": [ + 42.879514086, + 2.50365865424 + ], + "libelle_d_acheminement": "SOULATGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50365865424, + 42.879514086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f68cad974932ff20b3fb5df66b9d3ee68185412", + "fields": { + "code_commune_insee": "11386", + "nom_de_la_commune": "TALAIRAN", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0299409472, + 2.66938593164 + ], + "libelle_d_acheminement": "TALAIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66938593164, + 43.0299409472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7795b42195f87748570396fa595b835499c38fcd", + "fields": { + "code_commune_insee": "11394", + "nom_de_la_commune": "TOURREILLES", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0200947771, + 2.16958923912 + ], + "libelle_d_acheminement": "TOURREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16958923912, + 43.0200947771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4879c501a730e3fc50351a642b76a3b261ce99a", + "fields": { + "code_commune_insee": "11395", + "nom_de_la_commune": "TRASSANEL", + "code_postal": "11160", + "coordonnees_gps": [ + 43.3480032097, + 2.44282271412 + ], + "libelle_d_acheminement": "TRASSANEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44282271412, + 43.3480032097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37b4d8808578e3850a555565dd1e32388d8d0599", + "fields": { + "code_commune_insee": "11396", + "nom_de_la_commune": "TRAUSSE", + "code_postal": "11160", + "coordonnees_gps": [ + 43.318218657, + 2.56855106815 + ], + "libelle_d_acheminement": "TRAUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56855106815, + 43.318218657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "828cff30b9cf51d9489ed6582d7b34b6bedcce7e", + "fields": { + "code_commune_insee": "11415", + "nom_de_la_commune": "VILLAR ST ANSELME", + "code_postal": "11250", + "coordonnees_gps": [ + 43.0573045654, + 2.29925892511 + ], + "libelle_d_acheminement": "VILLAR ST ANSELME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29925892511, + 43.0573045654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb3e0245170760d7d392346ea94bde9684b78875", + "fields": { + "code_commune_insee": "11418", + "nom_de_la_commune": "VILLASAVARY", + "code_postal": "11150", + "coordonnees_gps": [ + 43.2319320444, + 2.03314267274 + ], + "libelle_d_acheminement": "VILLASAVARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03314267274, + 43.2319320444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca0c652b92eb7990a3c568daa71af63b05c97a04", + "fields": { + "code_commune_insee": "11419", + "nom_de_la_commune": "VILLAUTOU", + "code_postal": "11420", + "coordonnees_gps": [ + 43.1617806666, + 1.83707235249 + ], + "libelle_d_acheminement": "VILLAUTOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83707235249, + 43.1617806666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2156242270f91f61d84a78039e9735571dc349d0", + "fields": { + "code_commune_insee": "11420", + "nom_de_la_commune": "VILLEBAZY", + "code_postal": "11250", + "coordonnees_gps": [ + 43.0558531373, + 2.33940629653 + ], + "libelle_d_acheminement": "VILLEBAZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33940629653, + 43.0558531373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1398b565f039f2d8df99aeae8c389e66643efe0e", + "fields": { + "code_commune_insee": "11433", + "nom_de_la_commune": "VILLENEUVE MINERVOIS", + "code_postal": "11160", + "coordonnees_gps": [ + 43.3289695308, + 2.46851612776 + ], + "libelle_d_acheminement": "VILLENEUVE MINERVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46851612776, + 43.3289695308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a5ce300774294969f5ab16410272927ced56d4f", + "fields": { + "code_commune_insee": "11435", + "nom_de_la_commune": "VILLEROUGE TERMENES", + "code_postal": "11330", + "coordonnees_gps": [ + 43.0054052099, + 2.63468678953 + ], + "libelle_d_acheminement": "VILLEROUGE TERMENES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63468678953, + 43.0054052099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3fc14f033eac9ffdb44bcc1e34cb4a6515e0279", + "fields": { + "code_commune_insee": "11441", + "nom_de_la_commune": "VINASSAN", + "code_postal": "11110", + "coordonnees_gps": [ + 43.2054224322, + 3.09538889939 + ], + "libelle_d_acheminement": "VINASSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09538889939, + 43.2054224322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47e58c72d143095284bd67d631000fc639c12e2b", + "fields": { + "code_commune_insee": "12008", + "nom_de_la_commune": "ANGLARS ST FELIX", + "code_postal": "12390", + "coordonnees_gps": [ + 44.41616534, + 2.2384963959 + ], + "libelle_d_acheminement": "ANGLARS ST FELIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2384963959, + 44.41616534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "195ca53eb7e998cff8ebb1d0fbf6e4e5687bd4fe", + "fields": { + "code_commune_insee": "12010", + "nom_de_la_commune": "ARQUES", + "code_postal": "12290", + "coordonnees_gps": [ + 44.3220848863, + 2.80404631161 + ], + "libelle_d_acheminement": "ARQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80404631161, + 44.3220848863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0aa0b4f1de32218090c2ad963e05c723ea14345", + "fields": { + "ligne_5": "LE GUA", + "code_commune_insee": "12013", + "libelle_d_acheminement": "AUBIN", + "code_postal": "12110", + "nom_de_la_commune": "AUBIN", + "coordonnees_gps": [ + 44.5318545051, + 2.25591796926 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25591796926, + 44.5318545051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f69d9ccd1bc4ffcd3aa3ba68437eacfa9890835", + "fields": { + "ligne_5": "ST SALVADOU", + "code_commune_insee": "12021", + "libelle_d_acheminement": "LE BAS SEGALA", + "code_postal": "12200", + "nom_de_la_commune": "LE BAS SEGALA", + "coordonnees_gps": [ + 44.3386235465, + 2.14341113213 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14341113213, + 44.3386235465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93c4c5ddc79a4e658da64f5472f3e06b9ab1571c", + "fields": { + "code_commune_insee": "12023", + "nom_de_la_commune": "LA BASTIDE SOLAGES", + "code_postal": "12550", + "coordonnees_gps": [ + 43.9499780867, + 2.52484421466 + ], + "libelle_d_acheminement": "LA BASTIDE SOLAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52484421466, + 43.9499780867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dea829eb70503cc62c08d36585782e9f44ac5e1f", + "fields": { + "code_commune_insee": "12024", + "nom_de_la_commune": "BELCASTEL", + "code_postal": "12390", + "coordonnees_gps": [ + 44.3944148302, + 2.33164860958 + ], + "libelle_d_acheminement": "BELCASTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33164860958, + 44.3944148302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2b80ec5113f0c1ad232d814dac583b7745f425d", + "fields": { + "code_commune_insee": "12028", + "nom_de_la_commune": "BOISSE PENCHOT", + "code_postal": "12300", + "coordonnees_gps": [ + 44.5806056647, + 2.21149187356 + ], + "libelle_d_acheminement": "BOISSE PENCHOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21149187356, + 44.5806056647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4edc23f99353e46f94ab65151da268ab32bbe77e", + "fields": { + "code_commune_insee": "12030", + "nom_de_la_commune": "BOUILLAC", + "code_postal": "12300", + "coordonnees_gps": [ + 44.5734390459, + 2.17431868785 + ], + "libelle_d_acheminement": "BOUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17431868785, + 44.5734390459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "557b98a3e3aefb4893f309a04d57cadad54acc93", + "fields": { + "code_commune_insee": "12036", + "nom_de_la_commune": "BROMMAT", + "code_postal": "12600", + "coordonnees_gps": [ + 44.8284548691, + 2.70476777705 + ], + "libelle_d_acheminement": "BROMMAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70476777705, + 44.8284548691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c7548981b6581cd6e60a5969b663e97bb517783", + "fields": { + "code_commune_insee": "12038", + "nom_de_la_commune": "BROUSSE LE CHATEAU", + "code_postal": "12480", + "coordonnees_gps": [ + 44.0062723535, + 2.63789868887 + ], + "libelle_d_acheminement": "BROUSSE LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63789868887, + 44.0062723535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d38dbbc50a0ea30ac7493c10c80c67902c51458d", + "fields": { + "code_commune_insee": "12043", + "nom_de_la_commune": "CALMONT", + "code_postal": "12450", + "coordonnees_gps": [ + 44.2590321912, + 2.52423447426 + ], + "libelle_d_acheminement": "CALMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52423447426, + 44.2590321912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85abc3bd767e1b70c2820eb4cb639d15c4c08cd3", + "fields": { + "code_commune_insee": "12044", + "nom_de_la_commune": "CAMARES", + "code_postal": "12360", + "coordonnees_gps": [ + 43.8183603178, + 2.88523152665 + ], + "libelle_d_acheminement": "CAMARES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88523152665, + 43.8183603178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "526d11eebb3c972887f639135d8f6c8ed5c20b51", + "fields": { + "code_commune_insee": "12049", + "nom_de_la_commune": "CAMPUAC", + "code_postal": "12580", + "coordonnees_gps": [ + 44.5663603478, + 2.5847677536 + ], + "libelle_d_acheminement": "CAMPUAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5847677536, + 44.5663603478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3faebb8666f91c363297fdc2dec6201aee64b6cf", + "fields": { + "code_commune_insee": "12070", + "nom_de_la_commune": "COMPEYRE", + "code_postal": "12520", + "coordonnees_gps": [ + 44.175783777, + 3.10274106819 + ], + "libelle_d_acheminement": "COMPEYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10274106819, + 44.175783777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a01ebc43757b9dc370f8eec4df275b5fbbce7edf", + "fields": { + "code_commune_insee": "12073", + "nom_de_la_commune": "COMPS LA GRAND VILLE", + "code_postal": "12120", + "coordonnees_gps": [ + 44.2241967002, + 2.56911408448 + ], + "libelle_d_acheminement": "COMPS LA GRAND VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56911408448, + 44.2241967002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5904f187322ebc39b5825e78232409e3818c073", + "fields": { + "ligne_5": "GRAND VABRE", + "code_commune_insee": "12076", + "libelle_d_acheminement": "CONQUES EN ROUERGUE", + "code_postal": "12320", + "nom_de_la_commune": "CONQUES EN ROUERGUE", + "coordonnees_gps": [ + 44.5952473002, + 2.4201643341 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4201643341, + 44.5952473002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f46f7000473b7da970233034a1682dfeca30cdc", + "fields": { + "ligne_5": "NOAILHAC", + "code_commune_insee": "12076", + "libelle_d_acheminement": "CONQUES EN ROUERGUE", + "code_postal": "12320", + "nom_de_la_commune": "CONQUES EN ROUERGUE", + "coordonnees_gps": [ + 44.5952473002, + 2.4201643341 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4201643341, + 44.5952473002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea49f02ecf47124c45108f052bc9750b67b76819", + "fields": { + "code_commune_insee": "12079", + "nom_de_la_commune": "COUBISOU", + "code_postal": "12190", + "coordonnees_gps": [ + 44.5755974174, + 2.73237270649 + ], + "libelle_d_acheminement": "COUBISOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73237270649, + 44.5755974174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22cf4f8521fc9caff9450458532b9ec730ca724d", + "fields": { + "code_commune_insee": "12084", + "nom_de_la_commune": "CREISSELS", + "code_postal": "12100", + "coordonnees_gps": [ + 44.064990103, + 3.05961986973 + ], + "libelle_d_acheminement": "CREISSELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05961986973, + 44.064990103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48f077fb52814ee91f337a93c0f6607fa9b16acd", + "fields": { + "code_commune_insee": "12085", + "nom_de_la_commune": "CRESPIN", + "code_postal": "12800", + "coordonnees_gps": [ + 44.153846974, + 2.25678856386 + ], + "libelle_d_acheminement": "CRESPIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25678856386, + 44.153846974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "267003fb6699ad820b03b9e6b04586b8be4f9173", + "fields": { + "code_commune_insee": "12092", + "nom_de_la_commune": "DURENQUE", + "code_postal": "12170", + "coordonnees_gps": [ + 44.10079135, + 2.62177074145 + ], + "libelle_d_acheminement": "DURENQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62177074145, + 44.10079135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c0e2af8bbe0b0cc662f9dcd612b86f91faee24f", + "fields": { + "code_commune_insee": "12104", + "nom_de_la_commune": "FOISSAC", + "code_postal": "12260", + "coordonnees_gps": [ + 44.5065119928, + 2.00769890689 + ], + "libelle_d_acheminement": "FOISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00769890689, + 44.5065119928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f800bd38a504bba0c24d10dc6ec2e1c65cd46683", + "fields": { + "code_commune_insee": "12105", + "nom_de_la_commune": "LA FOUILLADE", + "code_postal": "12270", + "coordonnees_gps": [ + 44.2345851449, + 2.04784404559 + ], + "libelle_d_acheminement": "LA FOUILLADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04784404559, + 44.2345851449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57eececbb94ac51875ba5f7aee8b834d43510b3b", + "fields": { + "code_commune_insee": "12113", + "nom_de_la_commune": "GRAMOND", + "code_postal": "12160", + "coordonnees_gps": [ + 44.2633838194, + 2.3681220954 + ], + "libelle_d_acheminement": "GRAMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3681220954, + 44.2633838194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f25ec879b132f82bb83e18f468ad7a495711847", + "fields": { + "code_commune_insee": "12116", + "nom_de_la_commune": "HUPARLAC", + "code_postal": "12460", + "coordonnees_gps": [ + 44.7114576875, + 2.75356213678 + ], + "libelle_d_acheminement": "HUPARLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75356213678, + 44.7114576875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4953d8228c0ae01be3822a9b51aa4aaec0997fd7", + "fields": { + "code_commune_insee": "12124", + "nom_de_la_commune": "LASSOUTS", + "code_postal": "12500", + "coordonnees_gps": [ + 44.4866947453, + 2.85455705942 + ], + "libelle_d_acheminement": "LASSOUTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85455705942, + 44.4866947453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4ad1764cedc2afc7e065d5c842ceedcdd87123c", + "fields": { + "code_commune_insee": "12129", + "nom_de_la_commune": "LESTRADE ET THOUELS", + "code_postal": "12430", + "coordonnees_gps": [ + 44.054162276, + 2.64776017353 + ], + "libelle_d_acheminement": "LESTRADE ET THOUELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64776017353, + 44.054162276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "209f88b1ca8bf0374a5a859b4293a6bf733c197f", + "fields": { + "ligne_5": "LA PRIMAUBE", + "code_commune_insee": "12133", + "libelle_d_acheminement": "LUC LA PRIMAUBE", + "code_postal": "12450", + "nom_de_la_commune": "LUC LA PRIMAUBE", + "coordonnees_gps": [ + 44.3056658484, + 2.5364516694 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5364516694, + 44.3056658484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3acc0c4335f61a2f85c578ee1ca7c50fcbfee316", + "fields": { + "code_commune_insee": "12136", + "nom_de_la_commune": "MALEVILLE", + "code_postal": "12350", + "coordonnees_gps": [ + 44.3999943584, + 2.10361790019 + ], + "libelle_d_acheminement": "MALEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10361790019, + 44.3999943584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99e50858a08d4934c622e783470bc19d2c37da3c", + "fields": { + "code_commune_insee": "12153", + "nom_de_la_commune": "MONTJAUX", + "code_postal": "12490", + "coordonnees_gps": [ + 44.100139359, + 2.90415727953 + ], + "libelle_d_acheminement": "MONTJAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90415727953, + 44.100139359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4630507db67d432609f18032fd6abd77ad6b447c", + "fields": { + "code_commune_insee": "12154", + "nom_de_la_commune": "MONTLAUR", + "code_postal": "12400", + "coordonnees_gps": [ + 43.8651798638, + 2.83361605924 + ], + "libelle_d_acheminement": "MONTLAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83361605924, + 43.8651798638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c53d8a2af17f00535a218a5607946c1d8f39518", + "fields": { + "code_commune_insee": "12166", + "nom_de_la_commune": "MUROLS", + "code_postal": "12600", + "coordonnees_gps": [ + 44.7608204119, + 2.5775403488 + ], + "libelle_d_acheminement": "MUROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5775403488, + 44.7608204119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97fc0587503334782c620f4769b816402f22fdf6", + "fields": { + "code_commune_insee": "12168", + "nom_de_la_commune": "NANT", + "code_postal": "12230", + "coordonnees_gps": [ + 44.0206117427, + 3.28565334346 + ], + "libelle_d_acheminement": "NANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28565334346, + 44.0206117427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48339f5f852acbecfe5bbe4dd8417cacdcc5f26b", + "fields": { + "code_commune_insee": "12169", + "nom_de_la_commune": "NAUCELLE", + "code_postal": "12800", + "coordonnees_gps": [ + 44.1898575403, + 2.34366368782 + ], + "libelle_d_acheminement": "NAUCELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34366368782, + 44.1898575403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33a574fbcbd618745e80d14912daee8172b3f84f", + "fields": { + "ligne_5": "COUSSERGUES", + "code_commune_insee": "12177", + "libelle_d_acheminement": "PALMAS D AVEYRON", + "code_postal": "12310", + "nom_de_la_commune": "PALMAS D AVEYRON", + "coordonnees_gps": [ + 44.4009437729, + 2.84225329377 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84225329377, + 44.4009437729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47fe276c64851e633e9f9ce80698944fddfa2d50", + "fields": { + "ligne_5": "PALMAS", + "code_commune_insee": "12177", + "libelle_d_acheminement": "PALMAS D AVEYRON", + "code_postal": "12310", + "nom_de_la_commune": "PALMAS D AVEYRON", + "coordonnees_gps": [ + 44.4009437729, + 2.84225329377 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84225329377, + 44.4009437729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d87dda0e162d6c833481bbf2f3c8cc18cb4ed8c", + "fields": { + "code_commune_insee": "12180", + "nom_de_la_commune": "PEYRELEAU", + "code_postal": "12720", + "coordonnees_gps": [ + 44.1757756277, + 3.20495893117 + ], + "libelle_d_acheminement": "PEYRELEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20495893117, + 44.1757756277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24c37693bcb239350b148046d57c620dac059fb1", + "fields": { + "code_commune_insee": "12181", + "nom_de_la_commune": "PEYRUSSE LE ROC", + "code_postal": "12220", + "coordonnees_gps": [ + 44.5026320672, + 2.13437459711 + ], + "libelle_d_acheminement": "PEYRUSSE LE ROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13437459711, + 44.5026320672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "764a22fe4ae32cd6cd8c0072ee6447ddb351f7c7", + "fields": { + "code_commune_insee": "12184", + "nom_de_la_commune": "POMAYROLS", + "code_postal": "12130", + "coordonnees_gps": [ + 44.4867594811, + 3.05866574301 + ], + "libelle_d_acheminement": "POMAYROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05866574301, + 44.4867594811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "526e22de1901da032999b905589753a7c7c15b4e", + "fields": { + "ligne_5": "LA MOTHE", + "code_commune_insee": "12194", + "libelle_d_acheminement": "QUINS", + "code_postal": "12800", + "nom_de_la_commune": "QUINS", + "coordonnees_gps": [ + 44.2295906034, + 2.37852465105 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37852465105, + 44.2295906034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3deba031a2c1a1686c326ad5710c404bbc24430c", + "fields": { + "code_commune_insee": "12195", + "nom_de_la_commune": "REBOURGUIL", + "code_postal": "12400", + "coordonnees_gps": [ + 43.8850659251, + 2.75663967565 + ], + "libelle_d_acheminement": "REBOURGUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75663967565, + 43.8850659251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea48b8029c05250d61a4f15878bb8a6aefb625ee", + "fields": { + "code_commune_insee": "12197", + "nom_de_la_commune": "REQUISTA", + "code_postal": "12170", + "coordonnees_gps": [ + 44.031961026, + 2.54899148777 + ], + "libelle_d_acheminement": "REQUISTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54899148777, + 44.031961026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd303d44972fe80c30cf30abbd70fb8416821ed5", + "fields": { + "code_commune_insee": "12204", + "nom_de_la_commune": "LA ROQUE STE MARGUERITE", + "code_postal": "12100", + "coordonnees_gps": [ + 44.1093444691, + 3.24200220208 + ], + "libelle_d_acheminement": "LA ROQUE STE MARGUERITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24200220208, + 44.1093444691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "270b502b128828b02a1aca96cdbd120cd14d8ef5", + "fields": { + "code_commune_insee": "12205", + "nom_de_la_commune": "LA ROUQUETTE", + "code_postal": "12200", + "coordonnees_gps": [ + 44.3097319748, + 1.9747853664 + ], + "libelle_d_acheminement": "LA ROUQUETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9747853664, + 44.3097319748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e81285e6bf8c28e67b49747dbd51b481fe017fa9", + "fields": { + "code_commune_insee": "12207", + "nom_de_la_commune": "RULLAC ST CIRQ", + "code_postal": "12120", + "coordonnees_gps": [ + 44.1192120935, + 2.47693953343 + ], + "libelle_d_acheminement": "RULLAC ST CIRQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47693953343, + 44.1192120935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f79036c24fc7e3f2f0f1f5e599c0b6f0a1686996", + "fields": { + "code_commune_insee": "12208", + "nom_de_la_commune": "ST AFFRIQUE", + "code_postal": "12400", + "coordonnees_gps": [ + 43.9656694471, + 2.86653125625 + ], + "libelle_d_acheminement": "ST AFFRIQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86653125625, + 43.9656694471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17e079bdfb0e1912bb832411e292413e803de4ac", + "fields": { + "code_commune_insee": "12215", + "nom_de_la_commune": "ST CHRISTOPHE VALLON", + "code_postal": "12330", + "coordonnees_gps": [ + 44.4799129535, + 2.39660455917 + ], + "libelle_d_acheminement": "ST CHRISTOPHE VALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39660455917, + 44.4799129535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86f48f5e3fd27770e28a833588549cb84f78408b", + "fields": { + "code_commune_insee": "12216", + "nom_de_la_commune": "ST COME D OLT", + "code_postal": "12500", + "coordonnees_gps": [ + 44.5314215162, + 2.82190819996 + ], + "libelle_d_acheminement": "ST COME D OLT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82190819996, + 44.5314215162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43483441be282848d020c4be1d900e68bc76e3a6", + "fields": { + "ligne_5": "VITRAC EN VIADENE", + "code_commune_insee": "12223", + "libelle_d_acheminement": "ARGENCES EN AUBRAC", + "code_postal": "12420", + "nom_de_la_commune": "ARGENCES EN AUBRAC", + "coordonnees_gps": [ + 44.8003905234, + 2.7434750028 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7434750028, + 44.8003905234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcae2a75758cff9732efadf574351c4940363345", + "fields": { + "ligne_5": "AURELLE VERLAC", + "code_commune_insee": "12224", + "libelle_d_acheminement": "ST GENIEZ D OLT ET D AUBRAC", + "code_postal": "12130", + "nom_de_la_commune": "ST GENIEZ D OLT ET D AUBRAC", + "coordonnees_gps": [ + 44.4732674724, + 2.98156818185 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98156818185, + 44.4732674724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a986da878d711d2edf9e9c3e41779d823c2fd04", + "fields": { + "code_commune_insee": "12225", + "nom_de_la_commune": "ST GEORGES DE LUZENCON", + "code_postal": "12100", + "coordonnees_gps": [ + 44.0565556182, + 2.98714381525 + ], + "libelle_d_acheminement": "ST GEORGES DE LUZENCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98714381525, + 44.0565556182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7315ecac5154002f75126c7ea7747e6a4bc7841a", + "fields": { + "code_commune_insee": "12235", + "nom_de_la_commune": "ST JUST SUR VIAUR", + "code_postal": "12800", + "coordonnees_gps": [ + 44.1200489541, + 2.37849533385 + ], + "libelle_d_acheminement": "ST JUST SUR VIAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37849533385, + 44.1200489541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e4c787f4cf2893ca73590b4dc4c344828c64d39", + "fields": { + "code_commune_insee": "12237", + "nom_de_la_commune": "ST LAURENT D OLT", + "code_postal": "12560", + "coordonnees_gps": [ + 44.4481544099, + 3.10140451864 + ], + "libelle_d_acheminement": "ST LAURENT D OLT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10140451864, + 44.4481544099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dd47cfdf4ea231db807ca6939b9b2dc9f9d2d95", + "fields": { + "code_commune_insee": "12242", + "nom_de_la_commune": "ST REMY", + "code_postal": "12200", + "coordonnees_gps": [ + 44.3952055876, + 2.04173574254 + ], + "libelle_d_acheminement": "ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04173574254, + 44.3952055876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea22bb32b9cb01e5cc98e838c3006941b65e4fb1", + "fields": { + "code_commune_insee": "12247", + "nom_de_la_commune": "ST SATURNIN DE LENNE", + "code_postal": "12560", + "coordonnees_gps": [ + 44.409127962, + 3.02218493838 + ], + "libelle_d_acheminement": "ST SATURNIN DE LENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02218493838, + 44.409127962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52aa0cade7c54550086d73f5dce3df05a312a08d", + "fields": { + "code_commune_insee": "12248", + "nom_de_la_commune": "ST SERNIN SUR RANCE", + "code_postal": "12380", + "coordonnees_gps": [ + 43.8788015376, + 2.62311158409 + ], + "libelle_d_acheminement": "ST SERNIN SUR RANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62311158409, + 43.8788015376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb438ce98c396a2f09522e8bb73d32c7be597b84", + "fields": { + "ligne_5": "MELVIEU", + "code_commune_insee": "12251", + "libelle_d_acheminement": "ST VICTOR ET MELVIEU", + "code_postal": "12400", + "nom_de_la_commune": "ST VICTOR ET MELVIEU", + "coordonnees_gps": [ + 44.0507837492, + 2.81021922503 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81021922503, + 44.0507837492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40359d3631f28ee62d481b03414a726302748ea2", + "fields": { + "code_commune_insee": "12256", + "nom_de_la_commune": "SALVAGNAC CAJARC", + "code_postal": "12260", + "coordonnees_gps": [ + 44.4543375215, + 1.87232547648 + ], + "libelle_d_acheminement": "SALVAGNAC CAJARC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87232547648, + 44.4543375215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f08f86338ac3f765f3fddd493993ac61b1ce890", + "fields": { + "code_commune_insee": "12260", + "nom_de_la_commune": "SAUCLIERES", + "code_postal": "12230", + "coordonnees_gps": [ + 43.9797470303, + 3.37516953256 + ], + "libelle_d_acheminement": "SAUCLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37516953256, + 43.9797470303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb11ef26a10fb60cd3603e14c1b210118b8fefe8", + "fields": { + "code_commune_insee": "12269", + "nom_de_la_commune": "LA SERRE", + "code_postal": "12380", + "coordonnees_gps": [ + 43.8936026764, + 2.65558670644 + ], + "libelle_d_acheminement": "LA SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65558670644, + 43.8936026764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b4d52bd5d6053a7dde397f17a4cd22867f129cb", + "fields": { + "code_commune_insee": "12274", + "nom_de_la_commune": "SYLVANES", + "code_postal": "12360", + "coordonnees_gps": [ + 43.8251925157, + 2.95288652879 + ], + "libelle_d_acheminement": "SYLVANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95288652879, + 43.8251925157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f407f40cc6d125eefec96a94bd0c163c4f65bd4b", + "fields": { + "code_commune_insee": "12277", + "nom_de_la_commune": "TAUSSAC", + "code_postal": "12600", + "coordonnees_gps": [ + 44.8248753514, + 2.63587650055 + ], + "libelle_d_acheminement": "TAUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63587650055, + 44.8248753514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f905e8fd0995ac0e9404843aaf0b016fd66ca2cf", + "fields": { + "code_commune_insee": "12288", + "nom_de_la_commune": "VALADY", + "code_postal": "12330", + "coordonnees_gps": [ + 44.4471578876, + 2.44255701566 + ], + "libelle_d_acheminement": "VALADY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44255701566, + 44.4471578876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "057d47ed543e6bf0cf4736630a8f438dc7696d1c", + "fields": { + "code_commune_insee": "12289", + "nom_de_la_commune": "VALZERGUES", + "code_postal": "12220", + "coordonnees_gps": [ + 44.5055186879, + 2.22147187127 + ], + "libelle_d_acheminement": "VALZERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22147187127, + 44.5055186879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54a234a51ebd89854c96a21ff4499fe9b07f7abf", + "fields": { + "code_commune_insee": "12290", + "nom_de_la_commune": "VAUREILLES", + "code_postal": "12220", + "coordonnees_gps": [ + 44.4533693497, + 2.18642390603 + ], + "libelle_d_acheminement": "VAUREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18642390603, + 44.4533693497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c5059fdd73684c7b2a8511c6c2944d22def5c3b", + "fields": { + "code_commune_insee": "12291", + "nom_de_la_commune": "VERRIERES", + "code_postal": "12520", + "coordonnees_gps": [ + 44.2168374801, + 3.05097559285 + ], + "libelle_d_acheminement": "VERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05097559285, + 44.2168374801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46bdf883e433ea70c024a3457f324d7dc3556895", + "fields": { + "code_commune_insee": "12294", + "nom_de_la_commune": "VEZINS DE LEVEZOU", + "code_postal": "12780", + "coordonnees_gps": [ + 44.2679981187, + 2.92575800141 + ], + "libelle_d_acheminement": "VEZINS DE LEVEZOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92575800141, + 44.2679981187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fd3a119db77b5dd02c77bb3cf885504cd584399", + "fields": { + "code_commune_insee": "12295", + "nom_de_la_commune": "VIALA DU PAS DE JAUX", + "code_postal": "12250", + "coordonnees_gps": [ + 43.9592074418, + 3.06767634768 + ], + "libelle_d_acheminement": "VIALA DU PAS DE JAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06767634768, + 43.9592074418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e13f9d56b60a20d2f0e9ef2612f023e0058f0fe", + "fields": { + "code_commune_insee": "12301", + "nom_de_la_commune": "VILLENEUVE", + "code_postal": "12260", + "coordonnees_gps": [ + 44.4470516334, + 2.0285315392 + ], + "libelle_d_acheminement": "VILLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0285315392, + 44.4470516334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ff1eccea69dced589c38c000b5f700c483501f2", + "fields": { + "code_commune_insee": "13001", + "nom_de_la_commune": "AIX EN PROVENCE", + "code_postal": "13090", + "coordonnees_gps": [ + 43.5360708378, + 5.39857444582 + ], + "libelle_d_acheminement": "AIX EN PROVENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39857444582, + 43.5360708378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74fca905c4a5cf6eca80251719624f378aec1223", + "fields": { + "ligne_5": "LA DURANNE", + "code_commune_insee": "13001", + "libelle_d_acheminement": "AIX EN PROVENCE", + "code_postal": "13100", + "nom_de_la_commune": "AIX EN PROVENCE", + "coordonnees_gps": [ + 43.5360708378, + 5.39857444582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39857444582, + 43.5360708378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d87b3c5fd3909009c876eb850b5ff66075cb2218", + "fields": { + "ligne_5": "MOULES", + "code_commune_insee": "13004", + "libelle_d_acheminement": "ARLES", + "code_postal": "13280", + "nom_de_la_commune": "ARLES", + "coordonnees_gps": [ + 43.5468692378, + 4.66215642574 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66215642574, + 43.5468692378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94475701391027467d41db3ac8817d60b3f48615", + "fields": { + "code_commune_insee": "13010", + "nom_de_la_commune": "BARBENTANE", + "code_postal": "13570", + "coordonnees_gps": [ + 43.894724982, + 4.74934042876 + ], + "libelle_d_acheminement": "BARBENTANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74934042876, + 43.894724982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e979ec84a32c23d927bb71914fe0a1a1e3a2c42", + "fields": { + "ligne_5": "LA POMME", + "code_commune_insee": "13013", + "libelle_d_acheminement": "BELCODENE", + "code_postal": "13720", + "nom_de_la_commune": "BELCODENE", + "coordonnees_gps": [ + 43.4220302139, + 5.58376148513 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58376148513, + 43.4220302139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd3112fe7665cc0a07f157ac492d250c6b1392f5", + "fields": { + "code_commune_insee": "13014", + "nom_de_la_commune": "BERRE L ETANG", + "code_postal": "13130", + "coordonnees_gps": [ + 43.5036442498, + 5.1606136975 + ], + "libelle_d_acheminement": "BERRE L ETANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1606136975, + 43.5036442498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b23eb70547112682466f81bc22ee1bd3f142e177", + "fields": { + "ligne_5": "LES GORGUETTES", + "code_commune_insee": "13016", + "libelle_d_acheminement": "LA BOUILLADISSE", + "code_postal": "13720", + "nom_de_la_commune": "LA BOUILLADISSE", + "coordonnees_gps": [ + 43.397192269, + 5.61980749093 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61980749093, + 43.397192269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e585592f403a13ac311f3faf1c29a75cd1f0b7ee", + "fields": { + "code_commune_insee": "13018", + "nom_de_la_commune": "CABANNES", + "code_postal": "13440", + "coordonnees_gps": [ + 43.8584804516, + 4.95793402726 + ], + "libelle_d_acheminement": "CABANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95793402726, + 43.8584804516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b656729a8e649413d1ca258990c592703b155505", + "fields": { + "code_commune_insee": "13019", + "nom_de_la_commune": "CABRIES", + "code_postal": "13480", + "coordonnees_gps": [ + 43.4496421919, + 5.34976663984 + ], + "libelle_d_acheminement": "CABRIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34976663984, + 43.4496421919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef509c5f17676d334b72a0023e6e86e4871f1070", + "fields": { + "ligne_5": "CALAS", + "code_commune_insee": "13019", + "libelle_d_acheminement": "CABRIES", + "code_postal": "13480", + "nom_de_la_commune": "CABRIES", + "coordonnees_gps": [ + 43.4496421919, + 5.34976663984 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34976663984, + 43.4496421919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b4ce4922c1c41e1b3bf68cd136b8ded6ab47d3d", + "fields": { + "code_commune_insee": "13020", + "nom_de_la_commune": "CADOLIVE", + "code_postal": "13950", + "coordonnees_gps": [ + 43.3941966153, + 5.53223354589 + ], + "libelle_d_acheminement": "CADOLIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53223354589, + 43.3941966153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "849bf13941dca0eb479123636bc65946c717b126", + "fields": { + "code_commune_insee": "13024", + "nom_de_la_commune": "CHARLEVAL", + "code_postal": "13350", + "coordonnees_gps": [ + 43.721111879, + 5.24576645287 + ], + "libelle_d_acheminement": "CHARLEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24576645287, + 43.721111879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ff84541114c2771ffb90182fe2cffa2386845c1", + "fields": { + "ligne_5": "LA MEDE", + "code_commune_insee": "13026", + "libelle_d_acheminement": "CHATEAUNEUF LES MARTIGUES", + "code_postal": "13220", + "nom_de_la_commune": "CHATEAUNEUF LES MARTIGUES", + "coordonnees_gps": [ + 43.3865906403, + 5.14753822568 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14753822568, + 43.3865906403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86153bc84980d28dfc6df9ab735105c544762343", + "fields": { + "code_commune_insee": "13030", + "nom_de_la_commune": "CUGES LES PINS", + "code_postal": "13780", + "coordonnees_gps": [ + 43.2805717043, + 5.71024615753 + ], + "libelle_d_acheminement": "CUGES LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71024615753, + 43.2805717043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "167eb84e5f0d1c3026aa684342e84b617d9f6da3", + "fields": { + "code_commune_insee": "13034", + "nom_de_la_commune": "EYGALIERES", + "code_postal": "13810", + "coordonnees_gps": [ + 43.7617047487, + 4.95211983638 + ], + "libelle_d_acheminement": "EYGALIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95211983638, + 43.7617047487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cac361ccb8beafdb16dfe3a3423ac8f15cfa93a9", + "fields": { + "code_commune_insee": "13035", + "nom_de_la_commune": "EYGUIERES", + "code_postal": "13430", + "coordonnees_gps": [ + 43.7025562953, + 5.01557705248 + ], + "libelle_d_acheminement": "EYGUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01557705248, + 43.7025562953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "176c9c5ebfa9aad63dd8deaae5dd4044cd84d3a0", + "fields": { + "code_commune_insee": "13037", + "nom_de_la_commune": "LA FARE LES OLIVIERS", + "code_postal": "13580", + "coordonnees_gps": [ + 43.5544485185, + 5.20247621443 + ], + "libelle_d_acheminement": "LA FARE LES OLIVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20247621443, + 43.5544485185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35b12264bf5f0d6969deb9af5d724f0e83e9f09b", + "fields": { + "code_commune_insee": "13039", + "nom_de_la_commune": "FOS SUR MER", + "code_postal": "13270", + "coordonnees_gps": [ + 43.4556812107, + 4.90452133912 + ], + "libelle_d_acheminement": "FOS SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90452133912, + 43.4556812107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff58768c21fd0a17b977d1b0d57533b20afdf16d", + "fields": { + "code_commune_insee": "13041", + "nom_de_la_commune": "GARDANNE", + "code_postal": "13120", + "coordonnees_gps": [ + 43.4526063249, + 5.47963860272 + ], + "libelle_d_acheminement": "GARDANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47963860272, + 43.4526063249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c666bcd946d8040f27f3260ee58278bbddb42645", + "fields": { + "code_commune_insee": "13042", + "nom_de_la_commune": "GEMENOS", + "code_postal": "13420", + "coordonnees_gps": [ + 43.2981044185, + 5.64391464048 + ], + "libelle_d_acheminement": "GEMENOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64391464048, + 43.2981044185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c10779a76f189149e87aac0d0295758ef566aa5", + "fields": { + "code_commune_insee": "13049", + "nom_de_la_commune": "LAMANON", + "code_postal": "13113", + "coordonnees_gps": [ + 43.704757813, + 5.0886270398 + ], + "libelle_d_acheminement": "LAMANON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0886270398, + 43.704757813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fb38bd196c029609badf4268ba2f9a84f3d9844", + "fields": { + "code_commune_insee": "13054", + "nom_de_la_commune": "MARIGNANE", + "code_postal": "13700", + "coordonnees_gps": [ + 43.4172068362, + 5.21221904548 + ], + "libelle_d_acheminement": "MARIGNANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21221904548, + 43.4172068362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff608b0780bd1fe873af675b8790e64d92d208d2", + "fields": { + "ligne_5": "LAVERA", + "code_commune_insee": "13056", + "libelle_d_acheminement": "MARTIGUES", + "code_postal": "13117", + "nom_de_la_commune": "MARTIGUES", + "coordonnees_gps": [ + 43.3798920489, + 5.04945402314 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04945402314, + 43.3798920489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5b2e2ff909de06e02f324c05dbd276180bfcdf1", + "fields": { + "code_commune_insee": "13064", + "nom_de_la_commune": "MOLLEGES", + "code_postal": "13940", + "coordonnees_gps": [ + 43.8053410404, + 4.9488694514 + ], + "libelle_d_acheminement": "MOLLEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9488694514, + 43.8053410404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de36afca54b881721fa3865e0959834c3cf03781", + "fields": { + "code_commune_insee": "13067", + "nom_de_la_commune": "ORGON", + "code_postal": "13660", + "coordonnees_gps": [ + 43.779613013, + 5.02340520998 + ], + "libelle_d_acheminement": "ORGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02340520998, + 43.779613013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8910ddb96cb1ed6b7b801313a31185c4cddb3e1", + "fields": { + "code_commune_insee": "13070", + "nom_de_la_commune": "LA PENNE SUR HUVEAUNE", + "code_postal": "13821", + "coordonnees_gps": [ + 43.2772079729, + 5.51850914394 + ], + "libelle_d_acheminement": "LA PENNE SUR HUVEAUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51850914394, + 43.2772079729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e056cf13b53f224ff06548ea6bd1a6bde38fabd8", + "fields": { + "ligne_5": "LES MICHELS", + "code_commune_insee": "13072", + "libelle_d_acheminement": "PEYNIER", + "code_postal": "13790", + "nom_de_la_commune": "PEYNIER", + "coordonnees_gps": [ + 43.439686405, + 5.62516789037 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62516789037, + 43.439686405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdc1b48bd566be0d564ba23e580720d180c0a855", + "fields": { + "code_commune_insee": "13086", + "nom_de_la_commune": "ROQUEVAIRE", + "code_postal": "13360", + "coordonnees_gps": [ + 43.3437864693, + 5.59772643152 + ], + "libelle_d_acheminement": "ROQUEVAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59772643152, + 43.3437864693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19a47f3d026fb4e4e622bb124f845e0c3c10577a", + "fields": { + "ligne_5": "LA BEGUDE", + "code_commune_insee": "13086", + "libelle_d_acheminement": "ROQUEVAIRE", + "code_postal": "13360", + "nom_de_la_commune": "ROQUEVAIRE", + "coordonnees_gps": [ + 43.3437864693, + 5.59772643152 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59772643152, + 43.3437864693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04f80e06a868e55f9c33bbbbf73006606fbd7584", + "fields": { + "ligne_5": "LE PIGEONNIER", + "code_commune_insee": "13088", + "libelle_d_acheminement": "LE ROVE", + "code_postal": "13740", + "nom_de_la_commune": "LE ROVE", + "coordonnees_gps": [ + 43.3653374562, + 5.25292240431 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25292240431, + 43.3653374562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6f6b0a1ea11abfacb5fa0c32f9bb9354ab159c4", + "fields": { + "code_commune_insee": "13094", + "nom_de_la_commune": "ST ETIENNE DU GRES", + "code_postal": "13103", + "coordonnees_gps": [ + 43.7849429124, + 4.73566400662 + ], + "libelle_d_acheminement": "ST ETIENNE DU GRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73566400662, + 43.7849429124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ef919a54280277631ba3a0707918180d8830a03", + "fields": { + "code_commune_insee": "13095", + "nom_de_la_commune": "ST MARC JAUMEGARDE", + "code_postal": "13100", + "coordonnees_gps": [ + 43.5561849254, + 5.52206993794 + ], + "libelle_d_acheminement": "ST MARC JAUMEGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52206993794, + 43.5561849254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a118b492a7f8c4da1d84b6b125c34e32c3ae7a6", + "fields": { + "code_commune_insee": "13099", + "nom_de_la_commune": "ST PAUL LES DURANCE", + "code_postal": "13115", + "coordonnees_gps": [ + 43.6854814023, + 5.75372558845 + ], + "libelle_d_acheminement": "ST PAUL LES DURANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75372558845, + 43.6854814023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d02c3a29942e2b19dfb9098dbca89479bac997fe", + "fields": { + "code_commune_insee": "13104", + "nom_de_la_commune": "SAUSSET LES PINS", + "code_postal": "13960", + "coordonnees_gps": [ + 43.3456690305, + 5.11765506999 + ], + "libelle_d_acheminement": "SAUSSET LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11765506999, + 43.3456690305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe2936dd96bc0ebef2fea5fd1bc4d23626b2e730", + "fields": { + "ligne_5": "LA ROUGIERE", + "code_commune_insee": "13106", + "libelle_d_acheminement": "SEPTEMES LES VALLONS", + "code_postal": "13240", + "nom_de_la_commune": "SEPTEMES LES VALLONS", + "coordonnees_gps": [ + 43.3934944571, + 5.3808040555 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3808040555, + 43.3934944571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f82a161b4d3ee37e5af8281a504b3c7a6495ea1a", + "fields": { + "code_commune_insee": "13108", + "nom_de_la_commune": "TARASCON", + "code_postal": "13150", + "coordonnees_gps": [ + 43.7939885332, + 4.68614849204 + ], + "libelle_d_acheminement": "TARASCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68614849204, + 43.7939885332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05461840cbadcf143b7ea7539c0eaaf5cf4371c4", + "fields": { + "code_commune_insee": "13110", + "nom_de_la_commune": "TRETS", + "code_postal": "13530", + "coordonnees_gps": [ + 43.4378087269, + 5.6999524319 + ], + "libelle_d_acheminement": "TRETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6999524319, + 43.4378087269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3885c37744fa417269509b05d0201cf09e1da0e4", + "fields": { + "code_commune_insee": "13111", + "nom_de_la_commune": "VAUVENARGUES", + "code_postal": "13126", + "coordonnees_gps": [ + 43.559011599, + 5.61324103718 + ], + "libelle_d_acheminement": "VAUVENARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61324103718, + 43.559011599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "757ea295fb07f2eebf5294aede6bf1ab07f6b94f", + "fields": { + "code_commune_insee": "13113", + "nom_de_la_commune": "VENELLES", + "code_postal": "13770", + "coordonnees_gps": [ + 43.5928673895, + 5.49138381609 + ], + "libelle_d_acheminement": "VENELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49138381609, + 43.5928673895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14e7545ce570ffb310a41f52d737540bf7218830", + "fields": { + "code_commune_insee": "13207", + "nom_de_la_commune": "MARSEILLE 07", + "code_postal": "13007", + "coordonnees_gps": [ + 43.28251778, + 5.36323440435 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36323440435, + 43.28251778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a59ffb7d510b3b8c3c135b7d1ad60e5d0ebc6d2", + "fields": { + "ligne_5": "VAUFREGE", + "code_commune_insee": "13209", + "libelle_d_acheminement": "MARSEILLE", + "code_postal": "13009", + "nom_de_la_commune": "MARSEILLE 09", + "coordonnees_gps": [ + 43.2340834927, + 5.45249683067 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45249683067, + 43.2340834927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e397d562f4e71db19e36ff5606b257e8380bbef", + "fields": { + "code_commune_insee": "13212", + "nom_de_la_commune": "MARSEILLE 12", + "code_postal": "13012", + "coordonnees_gps": [ + 43.3077683678, + 5.43991567678 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43991567678, + 43.3077683678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ee468f459a7b4da972213efa3080ea48f2bc314", + "fields": { + "ligne_5": "FIERVILLE BRAY", + "code_commune_insee": "14005", + "libelle_d_acheminement": "VALAMBRAY", + "code_postal": "14190", + "nom_de_la_commune": "VALAMBRAY", + "coordonnees_gps": [ + 49.0953124219, + -0.145440484479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.145440484479, + 49.0953124219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "382142a7a1031d3e16f64f7a8bf74cd16b0aa67b", + "fields": { + "code_commune_insee": "14007", + "nom_de_la_commune": "AMAYE SUR SEULLES", + "code_postal": "14310", + "coordonnees_gps": [ + 49.0820646121, + -0.717699539626 + ], + "libelle_d_acheminement": "AMAYE SUR SEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.717699539626, + 49.0820646121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "922e1eac885011614380c3a2021c3c261ea7efa2", + "fields": { + "ligne_5": "ANCTOVILLE", + "code_commune_insee": "14011", + "libelle_d_acheminement": "AURSEULLES", + "code_postal": "14240", + "nom_de_la_commune": "AURSEULLES", + "coordonnees_gps": [ + 49.1129887811, + -0.690829418472 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.690829418472, + 49.1129887811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d68c9c1a3d1bd49c0b3375829232acb1f968105", + "fields": { + "ligne_5": "ORBOIS", + "code_commune_insee": "14011", + "libelle_d_acheminement": "AURSEULLES", + "code_postal": "14240", + "nom_de_la_commune": "AURSEULLES", + "coordonnees_gps": [ + 49.1129887811, + -0.690829418472 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.690829418472, + 49.1129887811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f30c1329f7b94f50b6e6c3b0951e419082b6ce69", + "fields": { + "ligne_5": "COLOMBY SUR THAON", + "code_commune_insee": "14014", + "libelle_d_acheminement": "COLOMBY ANGUERNY", + "code_postal": "14610", + "nom_de_la_commune": "COLOMBY ANGUERNY", + "coordonnees_gps": [ + 49.2653517186, + -0.396935454008 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.396935454008, + 49.2653517186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e26965e835041e795d6cce52ddf8e0ea9bf8907b", + "fields": { + "code_commune_insee": "14016", + "nom_de_la_commune": "ANNEBAULT", + "code_postal": "14430", + "coordonnees_gps": [ + 49.248966024, + 0.054049962802 + ], + "libelle_d_acheminement": "ANNEBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.054049962802, + 49.248966024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64315320d1312f25b6bcd8c90b0c87d63dcef211", + "fields": { + "code_commune_insee": "14019", + "nom_de_la_commune": "ARGANCHY", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2299804943, + -0.731623390683 + ], + "libelle_d_acheminement": "ARGANCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.731623390683, + 49.2299804943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dad30cc64e78ad3e2ab16872d0610395b71bd8ba", + "fields": { + "code_commune_insee": "14022", + "nom_de_la_commune": "ASNELLES", + "code_postal": "14960", + "coordonnees_gps": [ + 49.3336519158, + -0.584632970661 + ], + "libelle_d_acheminement": "ASNELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.584632970661, + 49.3336519158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa44ff4b3c63593b4a3d0824c361bfa83cfe5815", + "fields": { + "code_commune_insee": "14026", + "nom_de_la_commune": "AUDRIEU", + "code_postal": "14250", + "coordonnees_gps": [ + 49.2046566574, + -0.604235735984 + ], + "libelle_d_acheminement": "AUDRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.604235735984, + 49.2046566574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7c3b0d3248fd7ac9821553b055313012e4a7d40", + "fields": { + "ligne_5": "BAUQUAY", + "code_commune_insee": "14027", + "libelle_d_acheminement": "LES MONTS D AUNAY", + "code_postal": "14260", + "nom_de_la_commune": "LES MONTS D AUNAY", + "coordonnees_gps": [ + 49.0144785445, + -0.633929762668 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.633929762668, + 49.0144785445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79871586fb8e3a9e22e5972cb7a11b25c8c370e8", + "fields": { + "code_commune_insee": "14049", + "nom_de_la_commune": "BAZENVILLE", + "code_postal": "14480", + "coordonnees_gps": [ + 49.3006069672, + -0.584555830953 + ], + "libelle_d_acheminement": "BAZENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.584555830953, + 49.3006069672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d431554a018d6dc07cfb62e0cf4e8692efe49a8", + "fields": { + "ligne_5": "LE TOURNEUR", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95ff645474fb06a0f2e95b29e92d67a88e5e540c", + "fields": { + "ligne_5": "MALLOUE", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c84ce3869b533deb83b0fe40cd8e6eb5d4aad03", + "fields": { + "ligne_5": "MONT BERTRAND", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0842fd90153a89958fe46e262cff3981370f5864", + "fields": { + "ligne_5": "ST OUEN DES BESACES", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d911cbbe526078e3452957b21d08728afa85d94d", + "fields": { + "code_commune_insee": "14070", + "nom_de_la_commune": "BEUVRON EN AUGE", + "code_postal": "14430", + "coordonnees_gps": [ + 49.1960004062, + -0.042455878979 + ], + "libelle_d_acheminement": "BEUVRON EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.042455878979, + 49.1960004062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3098187127ea47d86e8b9deef8d59b0aced126c", + "fields": { + "code_commune_insee": "14082", + "nom_de_la_commune": "LA BOISSIERE", + "code_postal": "14340", + "coordonnees_gps": [ + 49.129950391, + 0.132026565149 + ], + "libelle_d_acheminement": "LA BOISSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.132026565149, + 49.129950391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b6e61b3f0ad0abcd2d82e5fdad080a6805ea112", + "fields": { + "code_commune_insee": "14089", + "nom_de_la_commune": "BOUGY", + "code_postal": "14210", + "coordonnees_gps": [ + 49.1086067044, + -0.522373258036 + ], + "libelle_d_acheminement": "BOUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.522373258036, + 49.1086067044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f0ebbc02168627b7055877e517ff5c46ba84ddf", + "fields": { + "ligne_5": "BRETTEVILLE L ORGUEILLEUSE", + "code_commune_insee": "14098", + "libelle_d_acheminement": "THUE ET MUE", + "code_postal": "14740", + "nom_de_la_commune": "THUE ET MUE", + "coordonnees_gps": [ + 49.2151517714, + -0.51673661621 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51673661621, + 49.2151517714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd551ba99152f117b155c7ced5ef51addd30c354", + "fields": { + "ligne_5": "PUTOT EN BESSIN", + "code_commune_insee": "14098", + "libelle_d_acheminement": "THUE ET MUE", + "code_postal": "14740", + "nom_de_la_commune": "THUE ET MUE", + "coordonnees_gps": [ + 49.2151517714, + -0.51673661621 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51673661621, + 49.2151517714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab8dda7c72602fd2a150cfb598b5b0003dcfa5e4", + "fields": { + "ligne_5": "STE CROIX GRAND TONNE", + "code_commune_insee": "14098", + "libelle_d_acheminement": "THUE ET MUE", + "code_postal": "14740", + "nom_de_la_commune": "THUE ET MUE", + "coordonnees_gps": [ + 49.2151517714, + -0.51673661621 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51673661621, + 49.2151517714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94632a68412bf5462fa0ab294466dc21eb7115b7", + "fields": { + "code_commune_insee": "14107", + "nom_de_la_commune": "BRICQUEVILLE", + "code_postal": "14710", + "coordonnees_gps": [ + 49.2893189025, + -0.956918427952 + ], + "libelle_d_acheminement": "BRICQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.956918427952, + 49.2893189025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d956add0ebe76a124215f6d154073535765f776", + "fields": { + "code_commune_insee": "14123", + "nom_de_la_commune": "CAIRON", + "code_postal": "14610", + "coordonnees_gps": [ + 49.2341225093, + -0.437898319221 + ], + "libelle_d_acheminement": "CAIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.437898319221, + 49.2341225093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dca35dd6d3ad6b829daf69fceb33edb205e7e2dd", + "fields": { + "ligne_5": "GRANDOUET", + "code_commune_insee": "14126", + "libelle_d_acheminement": "CAMBREMER", + "code_postal": "14340", + "nom_de_la_commune": "CAMBREMER", + "coordonnees_gps": [ + 49.1466063945, + 0.0539056758479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0539056758479, + 49.1466063945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6be0f83300f7167531a104f6a0c73ecb3fee2b94", + "fields": { + "ligne_5": "ST PAIR DU MONT", + "code_commune_insee": "14126", + "libelle_d_acheminement": "CAMBREMER", + "code_postal": "14340", + "nom_de_la_commune": "CAMBREMER", + "coordonnees_gps": [ + 49.1466063945, + 0.0539056758479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0539056758479, + 49.1466063945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd91567c6e00d75f6d1bf07cfaca923fb7f72f54", + "fields": { + "code_commune_insee": "14127", + "nom_de_la_commune": "CAMPAGNOLLES", + "code_postal": "14500", + "coordonnees_gps": [ + 48.8893011028, + -0.935281266873 + ], + "libelle_d_acheminement": "CAMPAGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.935281266873, + 48.8893011028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2df80c641b6ed6e59651ecbe553b1f6d03ed0815", + "fields": { + "code_commune_insee": "14134", + "nom_de_la_commune": "CANTELOUP", + "code_postal": "14370", + "coordonnees_gps": [ + 49.1366110489, + -0.121312594699 + ], + "libelle_d_acheminement": "CANTELOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.121312594699, + 49.1366110489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6d134d39f02ccace1c9262daac6f462669b0df4", + "fields": { + "code_commune_insee": "14136", + "nom_de_la_commune": "CARDONVILLE", + "code_postal": "14230", + "coordonnees_gps": [ + 49.3459718219, + -1.05341223436 + ], + "libelle_d_acheminement": "CARDONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05341223436, + 49.3459718219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea7b9b8ee58b7f00349f13debf1dc68ae6604e18", + "fields": { + "code_commune_insee": "14137", + "nom_de_la_commune": "CARPIQUET", + "code_postal": "14650", + "coordonnees_gps": [ + 49.1866163191, + -0.451124708669 + ], + "libelle_d_acheminement": "CARPIQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.451124708669, + 49.1866163191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0894b2917970d8f79f8a6770d0474538abbccbf7", + "fields": { + "code_commune_insee": "14138", + "nom_de_la_commune": "CARTIGNY L EPINAY", + "code_postal": "14330", + "coordonnees_gps": [ + 49.2392752495, + -1.00695398636 + ], + "libelle_d_acheminement": "CARTIGNY L EPINAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00695398636, + 49.2392752495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5beed57383a27d8498e52e14a3fa36159a57f5c", + "fields": { + "ligne_5": "CAUMONT L EVENTE", + "code_commune_insee": "14143", + "libelle_d_acheminement": "CAUMONT SUR AURE", + "code_postal": "14240", + "nom_de_la_commune": "CAUMONT SUR AURE", + "coordonnees_gps": [ + 49.0964311403, + -0.812430741234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.812430741234, + 49.0964311403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9dc6cef7aa79fce700f7ad18228737f2b6883ae", + "fields": { + "ligne_5": "PARFOURU L ECLIN", + "code_commune_insee": "14143", + "libelle_d_acheminement": "CAUMONT SUR AURE", + "code_postal": "14240", + "nom_de_la_commune": "CAUMONT SUR AURE", + "coordonnees_gps": [ + 49.0964311403, + -0.812430741234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.812430741234, + 49.0964311403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad8b7750922e0679f06bc4adb656506007a97047", + "fields": { + "code_commune_insee": "14146", + "nom_de_la_commune": "CAUVILLE", + "code_postal": "14770", + "coordonnees_gps": [ + 48.9518531525, + -0.564152577979 + ], + "libelle_d_acheminement": "CAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.564152577979, + 48.9518531525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "410e1c3baf1804113196b919b1b4982900059af1", + "fields": { + "code_commune_insee": "14159", + "nom_de_la_commune": "CHOUAIN", + "code_postal": "14250", + "coordonnees_gps": [ + 49.2097153188, + -0.640731980971 + ], + "libelle_d_acheminement": "CHOUAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.640731980971, + 49.2097153188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2215cb24ea94fa41cb3ded0b760fec4f29b82ed", + "fields": { + "code_commune_insee": "14160", + "nom_de_la_commune": "CINTHEAUX", + "code_postal": "14680", + "coordonnees_gps": [ + 49.0657733566, + -0.283693859149 + ], + "libelle_d_acheminement": "CINTHEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.283693859149, + 49.0657733566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68235195b2ac54eb11242c9a21eb80faac5cd5ae", + "fields": { + "code_commune_insee": "14162", + "nom_de_la_commune": "CLECY", + "code_postal": "14570", + "coordonnees_gps": [ + 48.9025554763, + -0.493582660892 + ], + "libelle_d_acheminement": "CLECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.493582660892, + 48.9025554763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "217f5bfa4830a59162ba4b7852eb2ebbe9936b2d", + "fields": { + "code_commune_insee": "14165", + "nom_de_la_commune": "COLLEVILLE SUR MER", + "code_postal": "14710", + "coordonnees_gps": [ + 49.3503236918, + -0.848462469065 + ], + "libelle_d_acheminement": "COLLEVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.848462469065, + 49.3503236918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6a62a9d206690c49d846cd56377c51d5213359f", + "fields": { + "code_commune_insee": "14166", + "nom_de_la_commune": "COLLEVILLE MONTGOMERY", + "code_postal": "14880", + "coordonnees_gps": [ + 49.2745125128, + -0.301395397787 + ], + "libelle_d_acheminement": "COLLEVILLE MONTGOMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.301395397787, + 49.2745125128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07594752a6926f825c93e0a790769094ed1c3eec", + "fields": { + "ligne_5": "PROUSSY", + "code_commune_insee": "14174", + "libelle_d_acheminement": "CONDE EN NORMANDIE", + "code_postal": "14110", + "nom_de_la_commune": "CONDE EN NORMANDIE", + "coordonnees_gps": [ + 48.8496985115, + -0.562504676497 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.562504676497, + 48.8496985115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52b4791b0cf408744cb4e48a4a177bcd7b4ee54d", + "fields": { + "code_commune_insee": "14177", + "nom_de_la_commune": "COQUAINVILLIERS", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2024600046, + 0.197315117058 + ], + "libelle_d_acheminement": "COQUAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.197315117058, + 49.2024600046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e09a49ed03137eb4125540f0d47b96a1e324f1d", + "fields": { + "code_commune_insee": "14180", + "nom_de_la_commune": "CORDEY", + "code_postal": "14700", + "coordonnees_gps": [ + 48.8516569717, + -0.222722260888 + ], + "libelle_d_acheminement": "CORDEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.222722260888, + 48.8516569717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c669ea6f9b76e42d68a345ffc86ad201d8da7fb", + "fields": { + "code_commune_insee": "14191", + "nom_de_la_commune": "COURSEULLES SUR MER", + "code_postal": "14470", + "coordonnees_gps": [ + 49.3205636426, + -0.44837253643 + ], + "libelle_d_acheminement": "COURSEULLES SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44837253643, + 49.3205636426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58a8015f437b7d892584a8d0696d7bb45106ef47", + "fields": { + "ligne_5": "ST GABRIEL BRECY", + "code_commune_insee": "14200", + "libelle_d_acheminement": "CREULLY SUR SEULLES", + "code_postal": "14480", + "nom_de_la_commune": "CREULLY SUR SEULLES", + "coordonnees_gps": [ + 49.2864524812, + -0.543327621635 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.543327621635, + 49.2864524812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f94bd60a8765db62343e34c30d19c982b52dacb6", + "fields": { + "code_commune_insee": "14206", + "nom_de_la_commune": "CROCY", + "code_postal": "14620", + "coordonnees_gps": [ + 48.8770844881, + -0.0517680920662 + ], + "libelle_d_acheminement": "CROCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0517680920662, + 48.8770844881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3445c9680d352d78894054f4271ea158c089dc81", + "fields": { + "code_commune_insee": "14211", + "nom_de_la_commune": "CULEY LE PATRY", + "code_postal": "14220", + "coordonnees_gps": [ + 48.9563571016, + -0.531158873693 + ], + "libelle_d_acheminement": "CULEY LE PATRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.531158873693, + 48.9563571016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d28397da91d7be71a9786e21e944a1af07e52125", + "fields": { + "code_commune_insee": "14220", + "nom_de_la_commune": "DEAUVILLE", + "code_postal": "14800", + "coordonnees_gps": [ + 49.3543800887, + 0.0744665786308 + ], + "libelle_d_acheminement": "DEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0744665786308, + 49.3543800887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "188e651560e719f9272cb2d384d337b3689111e0", + "fields": { + "code_commune_insee": "14225", + "nom_de_la_commune": "DIVES SUR MER", + "code_postal": "14160", + "coordonnees_gps": [ + 49.2829553851, + -0.0891775344573 + ], + "libelle_d_acheminement": "DIVES SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0891775344573, + 49.2829553851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9141ccf0f7bbbfc24a275b5d0a1d40621f3ede7", + "fields": { + "code_commune_insee": "14228", + "nom_de_la_commune": "DOUVRES LA DELIVRANDE", + "code_postal": "14440", + "coordonnees_gps": [ + 49.2895943056, + -0.39232887843 + ], + "libelle_d_acheminement": "DOUVRES LA DELIVRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39232887843, + 49.2895943056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ebd3f1cbf049e285ecb30a1abdb56fbe167c815", + "fields": { + "ligne_5": "TAILLEVILLE", + "code_commune_insee": "14228", + "libelle_d_acheminement": "DOUVRES LA DELIVRANDE", + "code_postal": "14440", + "nom_de_la_commune": "DOUVRES LA DELIVRANDE", + "coordonnees_gps": [ + 49.2895943056, + -0.39232887843 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39232887843, + 49.2895943056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f872e7acd763fa8152f42702e84a4cd52aff42ca", + "fields": { + "code_commune_insee": "14229", + "nom_de_la_commune": "DOZULE", + "code_postal": "14430", + "coordonnees_gps": [ + 49.2290318466, + -0.0448932247721 + ], + "libelle_d_acheminement": "DOZULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0448932247721, + 49.2290318466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67e8ab807478ebbbc5c7d23752106b3387ae6c51", + "fields": { + "code_commune_insee": "14230", + "nom_de_la_commune": "DRUBEC", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2496863496, + 0.104043882828 + ], + "libelle_d_acheminement": "DRUBEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.104043882828, + 49.2496863496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f53d622d4b6fff73e28ee3c04d2949265c5d16cb", + "fields": { + "code_commune_insee": "14231", + "nom_de_la_commune": "BEAUFOUR DRUVAL", + "code_postal": "14340", + "coordonnees_gps": [ + 49.21417643, + 0.0234847434149 + ], + "libelle_d_acheminement": "BEAUFOUR DRUVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0234847434149, + 49.21417643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a8c4f82d71f8c1c9e809d6925f5a1bb641e4a2d", + "fields": { + "code_commune_insee": "14250", + "nom_de_la_commune": "ESQUAY SUR SEULLES", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2716519336, + -0.622418899697 + ], + "libelle_d_acheminement": "ESQUAY SUR SEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.622418899697, + 49.2716519336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f482e27452853ddc17825119d30a9934819d2ae4", + "fields": { + "code_commune_insee": "14261", + "nom_de_la_commune": "LE FAULQ", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2387229175, + 0.317924575048 + ], + "libelle_d_acheminement": "LE FAULQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.317924575048, + 49.2387229175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d3122d984d40d829e258cc067d0c61464fb7c6a", + "fields": { + "code_commune_insee": "14272", + "nom_de_la_commune": "LA FOLIE", + "code_postal": "14710", + "coordonnees_gps": [ + 49.2627408591, + -0.970341008154 + ], + "libelle_d_acheminement": "LA FOLIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.970341008154, + 49.2627408591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca3e29a4c45fc647fd83b7cd407b3d41ae92876d", + "fields": { + "code_commune_insee": "14285", + "nom_de_la_commune": "LE FOURNET", + "code_postal": "14340", + "coordonnees_gps": [ + 49.2002891187, + 0.111722528216 + ], + "libelle_d_acheminement": "LE FOURNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.111722528216, + 49.2002891187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0631025bff214b5e9c68b22c2ed42b0288db87bf", + "fields": { + "code_commune_insee": "14308", + "nom_de_la_commune": "GOUSTRANVILLE", + "code_postal": "14430", + "coordonnees_gps": [ + 49.2227892778, + -0.108383385209 + ], + "libelle_d_acheminement": "GOUSTRANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.108383385209, + 49.2227892778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acf1629facb3e5da0d5a96a12354fb7c4b788fe4", + "fields": { + "code_commune_insee": "14310", + "nom_de_la_commune": "GRAINVILLE LANGANNERIE", + "code_postal": "14190", + "coordonnees_gps": [ + 49.009033334, + -0.271865445173 + ], + "libelle_d_acheminement": "GRAINVILLE LANGANNERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.271865445173, + 49.009033334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af84b3029010b3599be88ab3e075e6c825ab574f", + "fields": { + "code_commune_insee": "14311", + "nom_de_la_commune": "GRAINVILLE SUR ODON", + "code_postal": "14210", + "coordonnees_gps": [ + 49.1386270116, + -0.531672189444 + ], + "libelle_d_acheminement": "GRAINVILLE SUR ODON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.531672189444, + 49.1386270116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44bade38bec58667d6d23a4eff0dd5f64f71cd29", + "fields": { + "ligne_5": "MAISY", + "code_commune_insee": "14312", + "libelle_d_acheminement": "GRANDCAMP MAISY", + "code_postal": "14450", + "nom_de_la_commune": "GRANDCAMP MAISY", + "coordonnees_gps": [ + 49.3754390087, + -1.04464900141 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04464900141, + 49.3754390087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c36e941439b3fc0352bda086d80facd1d46d281", + "fields": { + "code_commune_insee": "14318", + "nom_de_la_commune": "GRAYE SUR MER", + "code_postal": "14470", + "coordonnees_gps": [ + 49.3293694096, + -0.486683718791 + ], + "libelle_d_acheminement": "GRAYE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.486683718791, + 49.3293694096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12974fb938854c70544f01b8ff5357e2c45e2594", + "fields": { + "ligne_5": "VASOUY", + "code_commune_insee": "14333", + "libelle_d_acheminement": "HONFLEUR", + "code_postal": "14600", + "nom_de_la_commune": "HONFLEUR", + "coordonnees_gps": [ + 49.4129449727, + 0.237579361279 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.237579361279, + 49.4129449727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8ab8da35c59ad6ed91108b970d5a1aa3da90dc9", + "fields": { + "code_commune_insee": "14334", + "nom_de_la_commune": "L HOTELLERIE", + "code_postal": "14100", + "coordonnees_gps": [ + 49.140980571, + 0.407126860632 + ], + "libelle_d_acheminement": "L HOTELLERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.407126860632, + 49.140980571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0791f9687018f0706f856bc9b7a3971636b3928", + "fields": { + "ligne_5": "CASTILLY", + "code_commune_insee": "14342", + "libelle_d_acheminement": "ISIGNY SUR MER", + "code_postal": "14330", + "nom_de_la_commune": "ISIGNY SUR MER", + "coordonnees_gps": [ + 49.305761488, + -1.10256916512 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10256916512, + 49.305761488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af91acc85ea177fea1f99af54b08565049ec2fcd", + "fields": { + "code_commune_insee": "14343", + "nom_de_la_commune": "LES ISLES BARDEL", + "code_postal": "14690", + "coordonnees_gps": [ + 48.837428826, + -0.349054919014 + ], + "libelle_d_acheminement": "LES ISLES BARDEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.349054919014, + 48.837428826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dab096ea5e3a1d1bafcabcc705e6599d028e363", + "fields": { + "code_commune_insee": "14344", + "nom_de_la_commune": "JANVILLE", + "code_postal": "14670", + "coordonnees_gps": [ + 49.1637989299, + -0.16374713319 + ], + "libelle_d_acheminement": "JANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16374713319, + 49.1637989299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d93f10bb20530bd32417ee6ff311a9917423f679", + "fields": { + "ligne_5": "LE MESNIL AUZOUF", + "code_commune_insee": "14347", + "libelle_d_acheminement": "DIALAN SUR CHAINE", + "code_postal": "14260", + "nom_de_la_commune": "DIALAN SUR CHAINE", + "coordonnees_gps": [ + 49.0211940681, + -0.745768584372 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.745768584372, + 49.0211940681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e2a9100c1843c448c9bb383beecffea2e92150b", + "fields": { + "ligne_5": "CLINCHAMPS SUR ORNE", + "code_commune_insee": "14349", + "libelle_d_acheminement": "LAIZE CLINCHAMPS", + "code_postal": "14320", + "nom_de_la_commune": "LAIZE CLINCHAMPS", + "coordonnees_gps": [ + 49.0801189772, + -0.380625006843 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.380625006843, + 49.0801189772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b19f926f26e41d6c0ae571e7fe84e21219db078c", + "fields": { + "ligne_5": "AMBLIE", + "code_commune_insee": "14355", + "libelle_d_acheminement": "PONTS SUR SEULLES", + "code_postal": "14480", + "nom_de_la_commune": "PONTS SUR SEULLES", + "coordonnees_gps": [ + 49.2671813698, + -0.516107321362 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.516107321362, + 49.2671813698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76c0147f58292547fbc4548fe10c0b764c0845f8", + "fields": { + "ligne_5": "TIERCEVILLE", + "code_commune_insee": "14355", + "libelle_d_acheminement": "PONTS SUR SEULLES", + "code_postal": "14480", + "nom_de_la_commune": "PONTS SUR SEULLES", + "coordonnees_gps": [ + 49.2671813698, + -0.516107321362 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.516107321362, + 49.2671813698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73dae44b2d1dff911ec249256064dd4048aaa7a6", + "fields": { + "ligne_5": "ST JEAN LE BLANC", + "code_commune_insee": "14357", + "libelle_d_acheminement": "TERRES DE DRUANCE", + "code_postal": "14770", + "nom_de_la_commune": "TERRES DE DRUANCE", + "coordonnees_gps": [ + 48.9136477151, + -0.684142611751 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.684142611751, + 48.9136477151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb9c6f191ff33e5e2e450c37c74fbc944d7bcf66", + "fields": { + "code_commune_insee": "14368", + "nom_de_la_commune": "LISORES", + "code_postal": "14140", + "coordonnees_gps": [ + 48.956342574, + 0.211979306387 + ], + "libelle_d_acheminement": "LISORES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.211979306387, + 48.956342574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "892c0ad439a3f946640b79f2b04a29969bee16cd", + "fields": { + "code_commune_insee": "14369", + "nom_de_la_commune": "LITTEAU", + "code_postal": "14490", + "coordonnees_gps": [ + 49.1530752731, + -0.909894193512 + ], + "libelle_d_acheminement": "LITTEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.909894193512, + 49.1530752731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84e2090e3fe430c23d2c14939a80e93c9ad345c0", + "fields": { + "ligne_5": "AUQUAINVILLE", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "865cdcd69f710a285e94d34d03e5b65a4ad59a38", + "fields": { + "ligne_5": "HEURTEVENT", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab503d8f2dd0f9ec5e64afce5c5a9f6c09d29827", + "fields": { + "ligne_5": "LIVAROT", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "685eccd551c039bda1263222c679bf0405595ebe", + "fields": { + "ligne_5": "TORTISAMBERT", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47e3c82e58719796a4fb1cb7889bf01f3c2dac6b", + "fields": { + "ligne_5": "CERQUEUX", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14290", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84a23baf0b118b77c8d9e094e29a757fc2187797", + "fields": { + "ligne_5": "FAMILLY", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14290", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60b3578a8e9cd98ea62ad09af7612d6f5763fbe5", + "fields": { + "code_commune_insee": "14379", + "nom_de_la_commune": "LONGVILLERS", + "code_postal": "14310", + "coordonnees_gps": [ + 49.0464617085, + -0.644154381572 + ], + "libelle_d_acheminement": "LONGVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.644154381572, + 49.0464617085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17b0132c643d1dd27a2880da36cdd63fff69cbc9", + "fields": { + "code_commune_insee": "14403", + "nom_de_la_commune": "MAROLLES", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1378592392, + 0.3690277836 + ], + "libelle_d_acheminement": "MAROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.3690277836, + 49.1378592392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9388538cd84d4a844a39df2bca4c56a35569f878", + "fields": { + "ligne_5": "MARTRAGNY", + "code_commune_insee": "14406", + "libelle_d_acheminement": "MOULINS EN BESSIN", + "code_postal": "14740", + "nom_de_la_commune": "MOULINS EN BESSIN", + "coordonnees_gps": [ + 49.2486390509, + -0.60137367329 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60137367329, + 49.2486390509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35037953a91d2ae181a934ca61948571807ffc87", + "fields": { + "ligne_5": "MAGNY LA CAMPAGNE", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14270", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a98aae265b34754f7ef07f817d32e1d70b363227", + "fields": { + "ligne_5": "PERCY EN AUGE", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14270", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cd12732c5c8379b33bd7dd59bc0d28c098e1ba2", + "fields": { + "ligne_5": "CROISSANVILLE", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14370", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c15afbf2ceaea48953e6b309c0bc50ce26427af1", + "fields": { + "code_commune_insee": "14445", + "nom_de_la_commune": "MONTFIQUET", + "code_postal": "14490", + "coordonnees_gps": [ + 49.1850644814, + -0.888869892598 + ], + "libelle_d_acheminement": "MONTFIQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.888869892598, + 49.1850644814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "258c65ab8c711970828ee31419776c68c1b37217", + "fields": { + "code_commune_insee": "14446", + "nom_de_la_commune": "MONTIGNY", + "code_postal": "14210", + "coordonnees_gps": [ + 49.0408244826, + -0.534452490976 + ], + "libelle_d_acheminement": "MONTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.534452490976, + 49.0408244826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46a83731133f6310f8b7e859c39578e026c0e36c", + "fields": { + "code_commune_insee": "14460", + "nom_de_la_commune": "MOYAUX", + "code_postal": "14590", + "coordonnees_gps": [ + 49.1950035194, + 0.351238827177 + ], + "libelle_d_acheminement": "MOYAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.351238827177, + 49.1950035194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0adcdd2157a3354e6cf88c2a353f32b91b0a9c06", + "fields": { + "code_commune_insee": "14461", + "nom_de_la_commune": "MUTRECY", + "code_postal": "14220", + "coordonnees_gps": [ + 49.064377424, + -0.422482448584 + ], + "libelle_d_acheminement": "MUTRECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.422482448584, + 49.064377424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef23db5d84918f276c62c83c16176dd3a3afe543", + "fields": { + "code_commune_insee": "14468", + "nom_de_la_commune": "NORON LA POTERIE", + "code_postal": "14490", + "coordonnees_gps": [ + 49.2239444771, + -0.775339384776 + ], + "libelle_d_acheminement": "NORON LA POTERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.775339384776, + 49.2239444771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd7ddbd30de7b7d6e7e582d4c86c2b375a1d19e6", + "fields": { + "code_commune_insee": "14480", + "nom_de_la_commune": "OSMANVILLE", + "code_postal": "14230", + "coordonnees_gps": [ + 49.3339813037, + -1.08866221246 + ], + "libelle_d_acheminement": "OSMANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08866221246, + 49.3339813037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23e7d6a31c2171068b8eac7d5f21572d0d88df18", + "fields": { + "code_commune_insee": "14483", + "nom_de_la_commune": "OUFFIERES", + "code_postal": "14220", + "coordonnees_gps": [ + 49.0248508277, + -0.488986897039 + ], + "libelle_d_acheminement": "OUFFIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.488986897039, + 49.0248508277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37b83fcc6c46c4cb1fa8fc4ef84314dbfdc155e5", + "fields": { + "code_commune_insee": "14492", + "nom_de_la_commune": "PENNEDEPIE", + "code_postal": "14600", + "coordonnees_gps": [ + 49.4016561749, + 0.164048692054 + ], + "libelle_d_acheminement": "PENNEDEPIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.164048692054, + 49.4016561749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f30f44fd3a627c18570865e147c75d5f640b655c", + "fields": { + "code_commune_insee": "14495", + "nom_de_la_commune": "PERIERS SUR LE DAN", + "code_postal": "14112", + "coordonnees_gps": [ + 49.2572933332, + -0.337426191669 + ], + "libelle_d_acheminement": "PERIERS SUR LE DAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.337426191669, + 49.2572933332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f373121635d39efcdaaa7252fba44dc75738e67", + "fields": { + "code_commune_insee": "14496", + "nom_de_la_commune": "PERIGNY", + "code_postal": "14770", + "coordonnees_gps": [ + 48.9188949047, + -0.605057928006 + ], + "libelle_d_acheminement": "PERIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.605057928006, + 48.9188949047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e523c7f16c9dc676fe7675d459738e9e4d406cb", + "fields": { + "code_commune_insee": "14501", + "nom_de_la_commune": "PIERREFITTE EN CINGLAIS", + "code_postal": "14690", + "coordonnees_gps": [ + 48.9047122291, + -0.38866024742 + ], + "libelle_d_acheminement": "PIERREFITTE EN CINGLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38866024742, + 48.9047122291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb740c3b73f05e4b65c5701ea0f150585df63249", + "fields": { + "code_commune_insee": "14511", + "nom_de_la_commune": "PONT BELLANGER", + "code_postal": "14380", + "coordonnees_gps": [ + 48.9351528941, + -0.982806859823 + ], + "libelle_d_acheminement": "PONT BELLANGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.982806859823, + 48.9351528941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89914afc25b9db595cd25982f8451671d80999be", + "fields": { + "code_commune_insee": "14515", + "nom_de_la_commune": "PORT EN BESSIN HUPPAIN", + "code_postal": "14520", + "coordonnees_gps": [ + 49.3396014282, + -0.772708434394 + ], + "libelle_d_acheminement": "PORT EN BESSIN HUPPAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.772708434394, + 49.3396014282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b30de5cb73014075bc9d47dd025e869a4799c77", + "fields": { + "code_commune_insee": "14516", + "nom_de_la_commune": "POTIGNY", + "code_postal": "14420", + "coordonnees_gps": [ + 48.9706322834, + -0.247353467356 + ], + "libelle_d_acheminement": "POTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.247353467356, + 48.9706322834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b12d028ad48b8e56af93db31d0438052c674570", + "fields": { + "code_commune_insee": "14522", + "nom_de_la_commune": "PRETREVILLE", + "code_postal": "14140", + "coordonnees_gps": [ + 49.0722122018, + 0.25860530707 + ], + "libelle_d_acheminement": "PRETREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25860530707, + 49.0722122018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86a131d9428edb9234bc9549d90cfc83c6c8019a", + "fields": { + "ligne_5": "LASSON", + "code_commune_insee": "14543", + "libelle_d_acheminement": "ROTS", + "code_postal": "14740", + "nom_de_la_commune": "ROTS", + "coordonnees_gps": [ + 49.2060587409, + -0.474725507611 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.474725507611, + 49.2060587409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51ca4cbce8c7a350d6af8e0c30ee1cd0b1f62827", + "fields": { + "code_commune_insee": "14546", + "nom_de_la_commune": "ROUVRES", + "code_postal": "14190", + "coordonnees_gps": [ + 49.0036507919, + -0.186702872571 + ], + "libelle_d_acheminement": "ROUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.186702872571, + 49.0036507919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cda148e3277a553b55c37f5e174c04e0ec6a7f0a", + "fields": { + "code_commune_insee": "14557", + "nom_de_la_commune": "ST ARNOULT", + "code_postal": "14800", + "coordonnees_gps": [ + 49.3316309924, + 0.0895728543881 + ], + "libelle_d_acheminement": "ST ARNOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0895728543881, + 49.3316309924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0553d90dc81ced49ee7377f784187722ee2adb63", + "fields": { + "code_commune_insee": "14559", + "nom_de_la_commune": "ST AUBIN DES BOIS", + "code_postal": "14380", + "coordonnees_gps": [ + 48.8324042173, + -1.1311665271 + ], + "libelle_d_acheminement": "ST AUBIN DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1311665271, + 48.8324042173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed81fc3c0d954c4f04be20a9832cc69f12ac83b8", + "fields": { + "code_commune_insee": "14566", + "nom_de_la_commune": "ST CONTEST", + "code_postal": "14280", + "coordonnees_gps": [ + 49.2154597119, + -0.400916151699 + ], + "libelle_d_acheminement": "ST CONTEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.400916151699, + 49.2154597119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d46d3a148cfe87b15f68c2e8d9a052ccc75e8f0", + "fields": { + "code_commune_insee": "14575", + "nom_de_la_commune": "ST ETIENNE LA THILLAYE", + "code_postal": "14950", + "coordonnees_gps": [ + 49.2916915945, + 0.117829362713 + ], + "libelle_d_acheminement": "ST ETIENNE LA THILLAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.117829362713, + 49.2916915945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efa8b7c3ef28b388f574a31467f08c12dd206ff6", + "fields": { + "ligne_5": "LA BIGNE", + "code_commune_insee": "14579", + "libelle_d_acheminement": "SEULLINE", + "code_postal": "14260", + "nom_de_la_commune": "SEULLINE", + "coordonnees_gps": [ + 49.0267772033, + -0.688629006888 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.688629006888, + 49.0267772033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4401e09078c2b366376519c3993187c99987053", + "fields": { + "ligne_5": "COULVAIN", + "code_commune_insee": "14579", + "libelle_d_acheminement": "SEULLINE", + "code_postal": "14310", + "nom_de_la_commune": "SEULLINE", + "coordonnees_gps": [ + 49.0267772033, + -0.688629006888 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.688629006888, + 49.0267772033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "877fc06a7a77ba8cc9cd7202271fb71ea3d0160a", + "fields": { + "code_commune_insee": "14582", + "nom_de_la_commune": "ST GERMAIN DE LIVET", + "code_postal": "14100", + "coordonnees_gps": [ + 49.0768259488, + 0.197537877277 + ], + "libelle_d_acheminement": "ST GERMAIN DE LIVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.197537877277, + 49.0768259488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c0cbad6c1a96456d9fd51aa82624aeff4b6d7c1", + "fields": { + "code_commune_insee": "14588", + "nom_de_la_commune": "ST GERMAIN LANGOT", + "code_postal": "14700", + "coordonnees_gps": [ + 48.9223267272, + -0.327291220475 + ], + "libelle_d_acheminement": "ST GERMAIN LANGOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.327291220475, + 48.9223267272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc1a16672c7ac70be16108392b8950088c6624a2", + "fields": { + "ligne_5": "ECOTS", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b56c9e13fca60ab283ec76e25f9e2536b77eeec", + "fields": { + "ligne_5": "L OUDON", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5cd8ecf80d9c12ec52448bc53696e8750227d8b", + "fields": { + "ligne_5": "MITTOIS", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04d16b29a887451f819e57481877b3e3639f295f", + "fields": { + "ligne_5": "LE GAST", + "code_commune_insee": "14658", + "libelle_d_acheminement": "NOUES DE SIENNE", + "code_postal": "14380", + "nom_de_la_commune": "NOUES DE SIENNE", + "coordonnees_gps": [ + 48.8217597918, + -1.04661139436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04661139436, + 48.8217597918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea92cc8f0d3f852cfecb67d2bbe27e62736d9eac", + "fields": { + "ligne_5": "ST SEVER CALVADOS", + "code_commune_insee": "14658", + "libelle_d_acheminement": "NOUES DE SIENNE", + "code_postal": "14380", + "nom_de_la_commune": "NOUES DE SIENNE", + "coordonnees_gps": [ + 48.8217597918, + -1.04661139436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04661139436, + 48.8217597918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52b521b0cd82c2c4cab3cebcdb4808f803c2f8c8", + "fields": { + "ligne_5": "DAMPIERRE", + "code_commune_insee": "14672", + "libelle_d_acheminement": "VAL DE DROME", + "code_postal": "14350", + "nom_de_la_commune": "VAL DE DROME", + "coordonnees_gps": [ + 49.0662712858, + -0.837770438371 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.837770438371, + 49.0662712858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e00b4f7f1ca3d432e632ed4c5014ea38a646a73", + "fields": { + "code_commune_insee": "14678", + "nom_de_la_commune": "SOUMONT ST QUENTIN", + "code_postal": "14420", + "coordonnees_gps": [ + 48.979239508, + -0.234726368793 + ], + "libelle_d_acheminement": "SOUMONT ST QUENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.234726368793, + 48.979239508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "011ecc26e3f3cf1b1e4ff3ab822dd4727be63375", + "fields": { + "code_commune_insee": "14680", + "nom_de_la_commune": "SULLY", + "code_postal": "14400", + "coordonnees_gps": [ + 49.3003989779, + -0.741732815376 + ], + "libelle_d_acheminement": "SULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.741732815376, + 49.3003989779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3233375b0c16886f83f9420de5d0d684dc032493", + "fields": { + "code_commune_insee": "14684", + "nom_de_la_commune": "TESSEL", + "code_postal": "14250", + "coordonnees_gps": [ + 49.1509531087, + -0.568040470496 + ], + "libelle_d_acheminement": "TESSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.568040470496, + 49.1509531087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d58c7bf6b0b018346e5b397bc5a64af01b9b9a9", + "fields": { + "code_commune_insee": "14710", + "nom_de_la_commune": "TREPREL", + "code_postal": "14690", + "coordonnees_gps": [ + 48.8986031258, + -0.346809551963 + ], + "libelle_d_acheminement": "TREPREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.346809551963, + 48.8986031258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dfc9c435cafdfaba7806ab1d0b2d21cf21a96c2", + "fields": { + "code_commune_insee": "14714", + "nom_de_la_commune": "LE TRONQUAY", + "code_postal": "14490", + "coordonnees_gps": [ + 49.2271134585, + -0.819798634317 + ], + "libelle_d_acheminement": "LE TRONQUAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.819798634317, + 49.2271134585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d1ec36b21911a6953511005d6f1cc0a17cc8a95", + "fields": { + "ligne_5": "ST CHARLES DE PERCY", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14350", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "537186c3f8c5cf767ddf5fd58f52946f46657cff", + "fields": { + "ligne_5": "BURCY", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14410", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69c6afa9c6fd7f18adaadffd0faf0248a3f41d91", + "fields": { + "ligne_5": "LA ROCQUE", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14410", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99ffa9ae1b28f353126948ef3e5cf92436a0c9d4", + "fields": { + "ligne_5": "LE THEIL BOCAGE", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14410", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e4cf8f913633f08ceb4f9cfd5cef21eeb6d6711", + "fields": { + "ligne_5": "VASSY", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14410", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98ee76bf49fbcb544b8f97e8163e3c6e99fbf11a", + "fields": { + "code_commune_insee": "14737", + "nom_de_la_commune": "VERSAINVILLE", + "code_postal": "14700", + "coordonnees_gps": [ + 48.9197726496, + -0.171525463565 + ], + "libelle_d_acheminement": "VERSAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.171525463565, + 48.9197726496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76e2f6767f04022dbaaed0a58cd492e464e7819b", + "fields": { + "code_commune_insee": "14739", + "nom_de_la_commune": "VER SUR MER", + "code_postal": "14114", + "coordonnees_gps": [ + 49.3338501523, + -0.528813485245 + ], + "libelle_d_acheminement": "VER SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.528813485245, + 49.3338501523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b401bc2ab2e2b7b54bc4ef57451cdf32557866b2", + "fields": { + "ligne_5": "FRIARDEL", + "code_commune_insee": "14740", + "libelle_d_acheminement": "LA VESPIERE FRIARDEL", + "code_postal": "14290", + "nom_de_la_commune": "LA VESPIERE FRIARDEL", + "coordonnees_gps": [ + 49.0111903523, + 0.424749958219 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.424749958219, + 49.0111903523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d46415f6e137ea48ce7fb2090d9e3cdcdcff1629", + "fields": { + "code_commune_insee": "14742", + "nom_de_la_commune": "VICQUES", + "code_postal": "14170", + "coordonnees_gps": [ + 48.953167057, + -0.0742489726679 + ], + "libelle_d_acheminement": "VICQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0742489726679, + 48.953167057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "458248bb556f3b776a22409564e59855206eae70", + "fields": { + "code_commune_insee": "14754", + "nom_de_la_commune": "VILLERS SUR MER", + "code_postal": "14640", + "coordonnees_gps": [ + 49.3110756382, + 0.00599012303306 + ], + "libelle_d_acheminement": "VILLERS SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00599012303306, + 49.3110756382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e64df7550ae11b6e2f1417c4c4d80f8b943520c2", + "fields": { + "code_commune_insee": "14755", + "nom_de_la_commune": "VILLERVILLE", + "code_postal": "14113", + "coordonnees_gps": [ + 49.3908763153, + 0.123148235679 + ], + "libelle_d_acheminement": "VILLERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.123148235679, + 49.3908763153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74bde9cec3459abbf1b824176b9447dd68d98696", + "fields": { + "ligne_5": "ST MARTIN DE TALLEVENDE", + "code_commune_insee": "14762", + "libelle_d_acheminement": "VIRE NORMANDIE", + "code_postal": "14500", + "nom_de_la_commune": "VIRE NORMANDIE", + "coordonnees_gps": [ + 48.8512498219, + -0.889601911342 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889601911342, + 48.8512498219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "522c49545005d46f8b873e0851aaaa26b93de6f7", + "fields": { + "code_commune_insee": "15012", + "nom_de_la_commune": "ARPAJON SUR CERE", + "code_postal": "15130", + "coordonnees_gps": [ + 44.8763047408, + 2.46427067251 + ], + "libelle_d_acheminement": "ARPAJON SUR CERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46427067251, + 44.8763047408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbd3e9f47150e8e035b6bf24a86a110563b8f30f", + "fields": { + "code_commune_insee": "15015", + "nom_de_la_commune": "AUZERS", + "code_postal": "15240", + "coordonnees_gps": [ + 45.2759935312, + 2.46518628982 + ], + "libelle_d_acheminement": "AUZERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46518628982, + 45.2759935312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e8a389847f2e8aad9c0421f0149d7da7415b442", + "fields": { + "code_commune_insee": "15020", + "nom_de_la_commune": "BEAULIEU", + "code_postal": "15270", + "coordonnees_gps": [ + 45.4651616363, + 2.52086997748 + ], + "libelle_d_acheminement": "BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52086997748, + 45.4651616363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bb29ca581b1d4850ef821c7d0ba8226f3a158f9", + "fields": { + "code_commune_insee": "15021", + "nom_de_la_commune": "BOISSET", + "code_postal": "15600", + "coordonnees_gps": [ + 44.7857362078, + 2.25506235075 + ], + "libelle_d_acheminement": "BOISSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25506235075, + 44.7857362078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8c8037d199bb1daaa726b0f448798499b4c6796", + "fields": { + "code_commune_insee": "15024", + "nom_de_la_commune": "BRAGEAC", + "code_postal": "15700", + "coordonnees_gps": [ + 45.2038604898, + 2.26559675808 + ], + "libelle_d_acheminement": "BRAGEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26559675808, + 45.2038604898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ab6652f0a02f1d7ea464b2e98ba7d4af981fec6", + "fields": { + "code_commune_insee": "15029", + "nom_de_la_commune": "CASSANIOUZE", + "code_postal": "15340", + "coordonnees_gps": [ + 44.673900395, + 2.38094248357 + ], + "libelle_d_acheminement": "CASSANIOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38094248357, + 44.673900395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a38d556d46359a829b5b62d29cf1c579b0bcb00", + "fields": { + "code_commune_insee": "15030", + "nom_de_la_commune": "CAYROLS", + "code_postal": "15290", + "coordonnees_gps": [ + 44.8285518718, + 2.22684718249 + ], + "libelle_d_acheminement": "CAYROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22684718249, + 44.8285518718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebc892b4577c0114f417db92c8ccd51a7659ae9d", + "fields": { + "code_commune_insee": "15038", + "nom_de_la_commune": "CHAMPS SUR TARENTAINE MARCHAL", + "code_postal": "15270", + "coordonnees_gps": [ + 45.4040107728, + 2.60404165506 + ], + "libelle_d_acheminement": "CHAMPS SUR TARENTAINE MARCHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60404165506, + 45.4040107728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47e8708a6f3ec3f6fbf94bba50ddd42e27476d86", + "fields": { + "code_commune_insee": "15042", + "nom_de_la_commune": "LA CHAPELLE LAURENT", + "code_postal": "15500", + "coordonnees_gps": [ + 45.1837226378, + 3.24249081953 + ], + "libelle_d_acheminement": "LA CHAPELLE LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24249081953, + 45.1837226378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec2f58865cb8b38d2e11c1746a15c6f7574318b9", + "fields": { + "code_commune_insee": "15052", + "nom_de_la_commune": "COLLANDRES", + "code_postal": "15400", + "coordonnees_gps": [ + 45.2155092221, + 2.64103296391 + ], + "libelle_d_acheminement": "COLLANDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64103296391, + 45.2155092221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff03025ad265a6c13c94d81a499deb284d405160", + "fields": { + "code_commune_insee": "15053", + "nom_de_la_commune": "COLTINES", + "code_postal": "15170", + "coordonnees_gps": [ + 45.0930970766, + 2.9967659946 + ], + "libelle_d_acheminement": "COLTINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9967659946, + 45.0930970766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38d5b7986fede2d1cd455e0b14791549e3d316ce", + "fields": { + "code_commune_insee": "15059", + "nom_de_la_commune": "CUSSAC", + "code_postal": "15430", + "coordonnees_gps": [ + 44.981338765, + 2.93616298746 + ], + "libelle_d_acheminement": "CUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93616298746, + 44.981338765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b620a24ff1f38888cb857edfddac82017eb14a1", + "fields": { + "code_commune_insee": "15060", + "nom_de_la_commune": "DEUX VERGES", + "code_postal": "15110", + "coordonnees_gps": [ + 44.7997732435, + 3.01819855071 + ], + "libelle_d_acheminement": "DEUX VERGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01819855071, + 44.7997732435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2147efe96e4ee858b5afa73dd33eda92dfbc901f", + "fields": { + "code_commune_insee": "15063", + "nom_de_la_commune": "DRUGEAC", + "code_postal": "15140", + "coordonnees_gps": [ + 45.1625110675, + 2.38866153977 + ], + "libelle_d_acheminement": "DRUGEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38866153977, + 45.1625110675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5fd824e068d647e97541deaa714c8c48702eafb", + "fields": { + "code_commune_insee": "15069", + "nom_de_la_commune": "FERRIERES ST MARY", + "code_postal": "15170", + "coordonnees_gps": [ + 45.1721196123, + 3.08204262828 + ], + "libelle_d_acheminement": "FERRIERES ST MARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08204262828, + 45.1721196123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1c0a9c05504271cef58af085ad012f884508bfd", + "fields": { + "code_commune_insee": "15076", + "nom_de_la_commune": "GLENAT", + "code_postal": "15150", + "coordonnees_gps": [ + 44.9040297506, + 2.1719411094 + ], + "libelle_d_acheminement": "GLENAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1719411094, + 44.9040297506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7318e10364db9148a858ed3a9f1873ce82c23687", + "fields": { + "code_commune_insee": "15084", + "nom_de_la_commune": "LABESSERETTE", + "code_postal": "15120", + "coordonnees_gps": [ + 44.7413427756, + 2.4803305695 + ], + "libelle_d_acheminement": "LABESSERETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4803305695, + 44.7413427756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7def771dd55e8b9f8dbc2c45df15dfc4d65ec797", + "fields": { + "code_commune_insee": "15098", + "nom_de_la_commune": "LAURIE", + "code_postal": "15500", + "coordonnees_gps": [ + 45.2848648325, + 3.08243685205 + ], + "libelle_d_acheminement": "LAURIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08243685205, + 45.2848648325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cd145eaa262fd3f37a860f1c87f4a760524aba6", + "fields": { + "ligne_5": "SUPER LIORAN", + "code_commune_insee": "15101", + "libelle_d_acheminement": "LAVEISSIERE", + "code_postal": "15300", + "nom_de_la_commune": "LAVEISSIERE", + "coordonnees_gps": [ + 45.1035229375, + 2.78285034579 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78285034579, + 45.1035229375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1316f9b895a27625ca26726c3fd538f6d4abc61c", + "fields": { + "code_commune_insee": "15106", + "nom_de_la_commune": "LIEUTADES", + "code_postal": "15110", + "coordonnees_gps": [ + 44.8309397731, + 2.89836316505 + ], + "libelle_d_acheminement": "LIEUTADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89836316505, + 44.8309397731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4a1ead105c34b2e14dd28899303669ca2be2e19", + "fields": { + "code_commune_insee": "15107", + "nom_de_la_commune": "LORCIERES", + "code_postal": "15320", + "coordonnees_gps": [ + 44.9525593557, + 3.29080870665 + ], + "libelle_d_acheminement": "LORCIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29080870665, + 44.9525593557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bd20106fd8b000e68a0ad6a5b1e9a488ef28c33", + "fields": { + "ligne_5": "BOURNONCLES", + "code_commune_insee": "15108", + "libelle_d_acheminement": "VAL D ARCOMIE", + "code_postal": "15320", + "nom_de_la_commune": "VAL D ARCOMIE", + "coordonnees_gps": [ + 44.9384891268, + 3.20556437292 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20556437292, + 44.9384891268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efe503731707bda9c723567c1e2760e054dce259", + "fields": { + "ligne_5": "FAVEROLLES", + "code_commune_insee": "15108", + "libelle_d_acheminement": "VAL D ARCOMIE", + "code_postal": "15320", + "nom_de_la_commune": "VAL D ARCOMIE", + "coordonnees_gps": [ + 44.9384891268, + 3.20556437292 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20556437292, + 44.9384891268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d964036cc51f495aa5455f68d5af2c96ef2ea625", + "fields": { + "code_commune_insee": "15112", + "nom_de_la_commune": "MALBO", + "code_postal": "15230", + "coordonnees_gps": [ + 44.9805509198, + 2.752942179 + ], + "libelle_d_acheminement": "MALBO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.752942179, + 44.9805509198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29c0d029dc7823eb276e33848182ef6288d5a9c4", + "fields": { + "code_commune_insee": "15116", + "nom_de_la_commune": "MARCHASTEL", + "code_postal": "15400", + "coordonnees_gps": [ + 45.273977504, + 2.72930331123 + ], + "libelle_d_acheminement": "MARCHASTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72930331123, + 45.273977504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22cd25b5d02f0a2b21574b43f68b5e85a1110e67", + "fields": { + "code_commune_insee": "15119", + "nom_de_la_commune": "MASSIAC", + "code_postal": "15500", + "coordonnees_gps": [ + 45.2454117687, + 3.19978709447 + ], + "libelle_d_acheminement": "MASSIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19978709447, + 45.2454117687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7273120be4971a434923d896ffc32bc10176003", + "fields": { + "code_commune_insee": "15134", + "nom_de_la_commune": "MONTSALVY", + "code_postal": "15120", + "coordonnees_gps": [ + 44.6956739577, + 2.49434704088 + ], + "libelle_d_acheminement": "MONTSALVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49434704088, + 44.6956739577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7860df04e4e47f036333d97d714ed0d3c3822a56", + "fields": { + "code_commune_insee": "15138", + "nom_de_la_commune": "MURAT", + "code_postal": "15300", + "coordonnees_gps": [ + 45.1111408605, + 2.86065494152 + ], + "libelle_d_acheminement": "MURAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86065494152, + 45.1111408605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fb4094c2333935e581d8b628acc92cb74cd1eb6", + "fields": { + "ligne_5": "NEUSSARGUES MOISSAC", + "code_commune_insee": "15141", + "libelle_d_acheminement": "NEUSSARGUES EN PINATELLE", + "code_postal": "15170", + "nom_de_la_commune": "NEUSSARGUES EN PINATELLE", + "coordonnees_gps": [ + 45.1323703921, + 2.98529315948 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98529315948, + 45.1323703921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "122b98399bf2bf2a0684a458c491a7250c098b9c", + "fields": { + "ligne_5": "STE ANASTASIE", + "code_commune_insee": "15141", + "libelle_d_acheminement": "NEUSSARGUES EN PINATELLE", + "code_postal": "15170", + "nom_de_la_commune": "NEUSSARGUES EN PINATELLE", + "coordonnees_gps": [ + 45.1323703921, + 2.98529315948 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98529315948, + 45.1323703921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4b6c4c959dc8308762cc5a1fa1a02cab069d1f3", + "fields": { + "ligne_5": "CHAVAGNAC", + "code_commune_insee": "15141", + "libelle_d_acheminement": "NEUSSARGUES EN PINATELLE", + "code_postal": "15300", + "nom_de_la_commune": "NEUSSARGUES EN PINATELLE", + "coordonnees_gps": [ + 45.1323703921, + 2.98529315948 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98529315948, + 45.1323703921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e77231f6c9dd3373c1404fefa942f60d1e030eb7", + "fields": { + "code_commune_insee": "15148", + "nom_de_la_commune": "PAULHAC", + "code_postal": "15430", + "coordonnees_gps": [ + 45.0202868074, + 2.88735170231 + ], + "libelle_d_acheminement": "PAULHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88735170231, + 45.0202868074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1153b9f5afff39e2519352dbf20888a5b15c4029", + "fields": { + "code_commune_insee": "15151", + "nom_de_la_commune": "PEYRUSSE", + "code_postal": "15170", + "coordonnees_gps": [ + 45.2109595955, + 3.03006287758 + ], + "libelle_d_acheminement": "PEYRUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03006287758, + 45.2109595955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68af67e797af8f07472c27b19def7436baae093d", + "fields": { + "code_commune_insee": "15158", + "nom_de_la_commune": "RAGEADE", + "code_postal": "15500", + "coordonnees_gps": [ + 45.114689469, + 3.26841308091 + ], + "libelle_d_acheminement": "RAGEADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26841308091, + 45.114689469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a6c50aa7ab73fcbfd30032af91dc9f6458782d2", + "fields": { + "code_commune_insee": "15163", + "nom_de_la_commune": "ROANNES ST MARY", + "code_postal": "15220", + "coordonnees_gps": [ + 44.8450017276, + 2.39860201238 + ], + "libelle_d_acheminement": "ROANNES ST MARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39860201238, + 44.8450017276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60f06eb9cbf26701db22ae7d8c3d14c317879740", + "fields": { + "code_commune_insee": "15165", + "nom_de_la_commune": "ROUFFIAC", + "code_postal": "15150", + "coordonnees_gps": [ + 45.0286072517, + 2.14375536336 + ], + "libelle_d_acheminement": "ROUFFIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14375536336, + 45.0286072517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b93fcd046aac423bb319cf393159b8506383024", + "fields": { + "ligne_5": "FOURNOULES", + "code_commune_insee": "15181", + "libelle_d_acheminement": "ST CONSTANT FOURNOULES", + "code_postal": "15600", + "nom_de_la_commune": "ST CONSTANT FOURNOULES", + "coordonnees_gps": [ + 44.6885284522, + 2.24626593038 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24626593038, + 44.6885284522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0eca3790533c64ee5e1b602385bddf4e7c23309", + "fields": { + "ligne_5": "ST CONSTANT", + "code_commune_insee": "15181", + "libelle_d_acheminement": "ST CONSTANT FOURNOULES", + "code_postal": "15600", + "nom_de_la_commune": "ST CONSTANT FOURNOULES", + "coordonnees_gps": [ + 44.6885284522, + 2.24626593038 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24626593038, + 44.6885284522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faacab9bbb5a5f3b42fda5410ec6e9f3500fb90c", + "fields": { + "code_commune_insee": "15194", + "nom_de_la_commune": "ST JULIEN DE TOURSAC", + "code_postal": "15600", + "coordonnees_gps": [ + 44.7745665182, + 2.20161181896 + ], + "libelle_d_acheminement": "ST JULIEN DE TOURSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20161181896, + 44.7745665182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ea96087ed33524ee9e2228c3904593644cbc618", + "fields": { + "ligne_5": "ST REMY DE SALERS", + "code_commune_insee": "15202", + "libelle_d_acheminement": "ST MARTIN VALMEROUX", + "code_postal": "15140", + "nom_de_la_commune": "ST MARTIN VALMEROUX", + "coordonnees_gps": [ + 45.1201305737, + 2.44307130609 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44307130609, + 45.1201305737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "533267b2b0a57228212dfe17920c02fe87488db4", + "fields": { + "code_commune_insee": "15217", + "nom_de_la_commune": "ST VICTOR", + "code_postal": "15150", + "coordonnees_gps": [ + 45.0097901662, + 2.2880455218 + ], + "libelle_d_acheminement": "ST VICTOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2880455218, + 45.0097901662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3dc0a3122dd3a9730591bdab531ffd0bb169412", + "fields": { + "code_commune_insee": "15228", + "nom_de_la_commune": "SIRAN", + "code_postal": "15150", + "coordonnees_gps": [ + 44.9505638532, + 2.12045291632 + ], + "libelle_d_acheminement": "SIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12045291632, + 44.9505638532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ef138ec6a3e09e25134b34a969b6b90339a3e28", + "fields": { + "code_commune_insee": "15242", + "nom_de_la_commune": "LE TRIOULOU", + "code_postal": "15600", + "coordonnees_gps": [ + 44.671238319, + 2.19126428388 + ], + "libelle_d_acheminement": "LE TRIOULOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19126428388, + 44.671238319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dd2f6b73e4f991215867502d77c6b95c19f20d1", + "fields": { + "code_commune_insee": "15244", + "nom_de_la_commune": "USSEL", + "code_postal": "15300", + "coordonnees_gps": [ + 45.0740146626, + 2.95237927853 + ], + "libelle_d_acheminement": "USSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95237927853, + 45.0740146626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cabfdec615929c7575ca788c3e482b717a96c74c", + "fields": { + "code_commune_insee": "15247", + "nom_de_la_commune": "VALJOUZE", + "code_postal": "15170", + "coordonnees_gps": [ + 45.1637773707, + 3.0607165142 + ], + "libelle_d_acheminement": "VALJOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0607165142, + 45.1637773707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4454ae7a471a615507ae992cbb0c81bbda45856b", + "fields": { + "code_commune_insee": "15249", + "nom_de_la_commune": "LE VAULMIER", + "code_postal": "15380", + "coordonnees_gps": [ + 45.1838522202, + 2.58597218884 + ], + "libelle_d_acheminement": "LE VAULMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58597218884, + 45.1838522202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c07c78856c98de28cb945ff1da89cc4687948562", + "fields": { + "code_commune_insee": "15254", + "nom_de_la_commune": "VEYRIERES", + "code_postal": "15350", + "coordonnees_gps": [ + 45.3204825413, + 2.36848020715 + ], + "libelle_d_acheminement": "VEYRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36848020715, + 45.3204825413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5565818b22b993d8484559c434d95f7f3ea2981f", + "fields": { + "code_commune_insee": "15259", + "nom_de_la_commune": "VIEILLESPESSE", + "code_postal": "15500", + "coordonnees_gps": [ + 45.116971217, + 3.15878002374 + ], + "libelle_d_acheminement": "VIEILLESPESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15878002374, + 45.116971217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aae8d56f1db134518afa927022cba3cf484c4572", + "fields": { + "code_commune_insee": "15261", + "nom_de_la_commune": "LE VIGEAN", + "code_postal": "15200", + "coordonnees_gps": [ + 45.2234162063, + 2.3665656568 + ], + "libelle_d_acheminement": "LE VIGEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3665656568, + 45.2234162063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edcf93418b4c8817a20b9039eba1d040c5e5c09b", + "fields": { + "code_commune_insee": "15264", + "nom_de_la_commune": "VITRAC", + "code_postal": "15220", + "coordonnees_gps": [ + 44.8102298787, + 2.31375646936 + ], + "libelle_d_acheminement": "VITRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31375646936, + 44.8102298787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa3c01c1efdd795145efea2360b114c700d5fec9", + "fields": { + "code_commune_insee": "15267", + "nom_de_la_commune": "YTRAC", + "code_postal": "15130", + "coordonnees_gps": [ + 44.9161324548, + 2.36598098395 + ], + "libelle_d_acheminement": "YTRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36598098395, + 44.9161324548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc240eaa1ea4b6f718f05eeef70c3a8183f33e18", + "fields": { + "code_commune_insee": "16001", + "nom_de_la_commune": "ABZAC", + "code_postal": "16500", + "coordonnees_gps": [ + 46.0995520567, + 0.715822844014 + ], + "libelle_d_acheminement": "ABZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.715822844014, + 46.0995520567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ae7a75cc244628a8fd5c6cce7aa69ee9a7b3dc1", + "fields": { + "code_commune_insee": "16005", + "nom_de_la_commune": "AIGRE", + "code_postal": "16140", + "coordonnees_gps": [ + 45.8891702634, + -0.000376399361894 + ], + "libelle_d_acheminement": "AIGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.000376399361894, + 45.8891702634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89ed228d7427f10465d4c84d63e071c69ec7fab3", + "fields": { + "code_commune_insee": "16010", + "nom_de_la_commune": "AMBLEVILLE", + "code_postal": "16300", + "coordonnees_gps": [ + 45.5581634832, + -0.224518438236 + ], + "libelle_d_acheminement": "AMBLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.224518438236, + 45.5581634832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc7f2b495e54c2a0e1f4d4b5877eb85c43df7642", + "fields": { + "code_commune_insee": "16011", + "nom_de_la_commune": "ANAIS", + "code_postal": "16560", + "coordonnees_gps": [ + 45.7689915038, + 0.206024179916 + ], + "libelle_d_acheminement": "ANAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.206024179916, + 45.7689915038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94b7684dfb6ccff2721fb9f35f1d3d6f888e7a67", + "fields": { + "code_commune_insee": "16012", + "nom_de_la_commune": "ANGEAC CHAMPAGNE", + "code_postal": "16130", + "coordonnees_gps": [ + 45.6137559506, + -0.289585740498 + ], + "libelle_d_acheminement": "ANGEAC CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.289585740498, + 45.6137559506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc4c0316cff85ae525847bcd7f1ddac9501d67a8", + "fields": { + "code_commune_insee": "16019", + "nom_de_la_commune": "ASNIERES SUR NOUERE", + "code_postal": "16290", + "coordonnees_gps": [ + 45.7078415562, + 0.0487826997236 + ], + "libelle_d_acheminement": "ASNIERES SUR NOUERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0487826997236, + 45.7078415562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d83c9118493a9cc6c2c979a5bb3e964e78636024", + "fields": { + "code_commune_insee": "16027", + "nom_de_la_commune": "BARBEZIERES", + "code_postal": "16140", + "coordonnees_gps": [ + 45.9119778347, + -0.0882569539887 + ], + "libelle_d_acheminement": "BARBEZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0882569539887, + 45.9119778347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1323534f18a2f0da4de6482b4a5d35eb30714d7e", + "fields": { + "code_commune_insee": "16030", + "nom_de_la_commune": "BARRET", + "code_postal": "16300", + "coordonnees_gps": [ + 45.4891582999, + -0.206308254385 + ], + "libelle_d_acheminement": "BARRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.206308254385, + 45.4891582999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c109d62d43c280f9ec0230aad338188c9e0eebd8", + "fields": { + "code_commune_insee": "16036", + "nom_de_la_commune": "BECHERESSE", + "code_postal": "16250", + "coordonnees_gps": [ + 45.5015198955, + 0.0786797939692 + ], + "libelle_d_acheminement": "BECHERESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0786797939692, + 45.5015198955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cda51c8847e0abaf3cc7a6ec710fd557a868a755", + "fields": { + "code_commune_insee": "16041", + "nom_de_la_commune": "BESSAC", + "code_postal": "16250", + "coordonnees_gps": [ + 45.4311590741, + -0.0136973551346 + ], + "libelle_d_acheminement": "BESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0136973551346, + 45.4311590741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82bb68e24a05bde2405b73c3af4790d5624b6806", + "fields": { + "code_commune_insee": "16045", + "nom_de_la_commune": "BIRAC", + "code_postal": "16120", + "coordonnees_gps": [ + 45.5635790633, + -0.0550695799339 + ], + "libelle_d_acheminement": "BIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0550695799339, + 45.5635790633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba40e9463a6ae6fe98d68eb3adabad4924fd18d5", + "fields": { + "ligne_5": "CRESSAC ST GENIS", + "code_commune_insee": "16046", + "libelle_d_acheminement": "COTEAUX DU BLANZACAIS", + "code_postal": "16250", + "nom_de_la_commune": "COTEAUX DU BLANZACAIS", + "coordonnees_gps": [ + 45.4714654807, + 0.0236302142689 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0236302142689, + 45.4714654807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb4d70cb58213badc5ae81ca9b08cc26165fc000", + "fields": { + "code_commune_insee": "16061", + "nom_de_la_commune": "BRIE", + "code_postal": "16590", + "coordonnees_gps": [ + 45.7345393339, + 0.266852612131 + ], + "libelle_d_acheminement": "BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.266852612131, + 45.7345393339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce8f4d29fb3c25102b0fb09b8ed386d3e7701501", + "fields": { + "code_commune_insee": "16063", + "nom_de_la_commune": "BRIE SOUS CHALAIS", + "code_postal": "16210", + "coordonnees_gps": [ + 45.3203360527, + 0.0123563993642 + ], + "libelle_d_acheminement": "BRIE SOUS CHALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0123563993642, + 45.3203360527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64abd038dab646c3b950b962cf828f86dd033b6a", + "fields": { + "code_commune_insee": "16072", + "nom_de_la_commune": "CHADURIE", + "code_postal": "16250", + "coordonnees_gps": [ + 45.4963678637, + 0.142555563027 + ], + "libelle_d_acheminement": "CHADURIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.142555563027, + 45.4963678637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f26447ce983c47e496989c1fee799d1c8b0b445", + "fields": { + "code_commune_insee": "16084", + "nom_de_la_commune": "CHARRAS", + "code_postal": "16380", + "coordonnees_gps": [ + 45.5444379086, + 0.428737132242 + ], + "libelle_d_acheminement": "CHARRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.428737132242, + 45.5444379086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e5ec5768249fa22aa20152e0d05728881bc0daf", + "fields": { + "code_commune_insee": "16086", + "nom_de_la_commune": "CHASSENON", + "code_postal": "16150", + "coordonnees_gps": [ + 45.8513916699, + 0.773197167344 + ], + "libelle_d_acheminement": "CHASSENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.773197167344, + 45.8513916699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26e17f961a7d21ed936d60483cfee4f871927c5d", + "fields": { + "code_commune_insee": "16095", + "nom_de_la_commune": "CHENON", + "code_postal": "16460", + "coordonnees_gps": [ + 45.9440915736, + 0.222439257515 + ], + "libelle_d_acheminement": "CHENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.222439257515, + 45.9440915736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcd4a77dd9b65baaa51449062307852faff96ef2", + "fields": { + "code_commune_insee": "16099", + "nom_de_la_commune": "CHILLAC", + "code_postal": "16480", + "coordonnees_gps": [ + 45.3611763101, + -0.0902994967861 + ], + "libelle_d_acheminement": "CHILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0902994967861, + 45.3611763101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "981e761663e8f368d6fb0a0f753a2ae0b202d860", + "fields": { + "code_commune_insee": "16103", + "nom_de_la_commune": "COMBIERS", + "code_postal": "16320", + "coordonnees_gps": [ + 45.5110545763, + 0.408984921414 + ], + "libelle_d_acheminement": "COMBIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.408984921414, + 45.5110545763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d42e01cf3345b5ee5debd195dddf24fd67478a8", + "fields": { + "code_commune_insee": "16109", + "nom_de_la_commune": "COURBILLAC", + "code_postal": "16200", + "coordonnees_gps": [ + 45.7730344217, + -0.180841133968 + ], + "libelle_d_acheminement": "COURBILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.180841133968, + 45.7730344217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5517a8f87319a60638df5290fe1d329fa4f5ef44", + "fields": { + "code_commune_insee": "16112", + "nom_de_la_commune": "COURLAC", + "code_postal": "16210", + "coordonnees_gps": [ + 45.3012384064, + 0.0880679365563 + ], + "libelle_d_acheminement": "COURLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0880679365563, + 45.3012384064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe562cda7b03a38fcf608bab14f71b1a38094ce8", + "fields": { + "code_commune_insee": "16120", + "nom_de_la_commune": "DIRAC", + "code_postal": "16410", + "coordonnees_gps": [ + 45.5986667875, + 0.241731538574 + ], + "libelle_d_acheminement": "DIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.241731538574, + 45.5986667875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e02c704a3433bd3fc96a1662182121ccce619c9", + "fields": { + "code_commune_insee": "16127", + "nom_de_la_commune": "EMPURE", + "code_postal": "16240", + "coordonnees_gps": [ + 46.0245064509, + 0.0495912731396 + ], + "libelle_d_acheminement": "EMPURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0495912731396, + 46.0245064509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c32d9dcb53746246430849accde493f1c7bc3c5d", + "fields": { + "code_commune_insee": "16134", + "nom_de_la_commune": "EXIDEUIL SUR VIENNE", + "code_postal": "16150", + "coordonnees_gps": [ + 45.8801902004, + 0.663734809553 + ], + "libelle_d_acheminement": "EXIDEUIL SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.663734809553, + 45.8801902004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8013b53c7175b191be0b47e3ff142d254a272aac", + "fields": { + "code_commune_insee": "16141", + "nom_de_la_commune": "FONTENILLE", + "code_postal": "16230", + "coordonnees_gps": [ + 45.9129011037, + 0.174854978046 + ], + "libelle_d_acheminement": "FONTENILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.174854978046, + 45.9129011037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f759fc223bb84aa542f075a14a8f0acebe63190", + "fields": { + "code_commune_insee": "16142", + "nom_de_la_commune": "LA FORET DE TESSE", + "code_postal": "16240", + "coordonnees_gps": [ + 46.0765352941, + 0.0784986933953 + ], + "libelle_d_acheminement": "LA FORET DE TESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0784986933953, + 46.0765352941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "979ee090950a6b096d464c4969823b1b49b978ab", + "fields": { + "ligne_5": "PEREUIL", + "code_commune_insee": "16175", + "libelle_d_acheminement": "VAL DES VIGNES", + "code_postal": "16250", + "nom_de_la_commune": "VAL DES VIGNES", + "coordonnees_gps": [ + 45.5351688008, + -0.0353997702364 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0353997702364, + 45.5351688008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "460885e4a7634d1180c26cb8ad1b882172680bc5", + "fields": { + "code_commune_insee": "16178", + "nom_de_la_commune": "LAGARDE SUR LE NE", + "code_postal": "16300", + "coordonnees_gps": [ + 45.5153360206, + -0.205805463982 + ], + "libelle_d_acheminement": "LAGARDE SUR LE NE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.205805463982, + 45.5153360206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cef46ddfc3ab99599dc4108e112b8b7ff3e28bb", + "fields": { + "code_commune_insee": "16185", + "nom_de_la_commune": "LIGNE", + "code_postal": "16140", + "coordonnees_gps": [ + 45.9156691196, + 0.10397491034 + ], + "libelle_d_acheminement": "LIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10397491034, + 45.9156691196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25b2e117cac6b478030a4f57a82bf2a16a49e685", + "fields": { + "ligne_5": "LA PERUSE", + "code_commune_insee": "16192", + "libelle_d_acheminement": "TERRES DE HAUTE CHARENTE", + "code_postal": "16270", + "nom_de_la_commune": "TERRES DE HAUTE CHARENTE", + "coordonnees_gps": [ + 45.9100102437, + 0.573121657498 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.573121657498, + 45.9100102437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "937c2c0db1c70f52cb82fb4461b7e8ad26050fb2", + "fields": { + "code_commune_insee": "16198", + "nom_de_la_commune": "MAGNAC LAVALETTE VILLARS", + "code_postal": "16320", + "coordonnees_gps": [ + 45.5088381667, + 0.2552082811 + ], + "libelle_d_acheminement": "MAGNAC LAVALETTE VILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.2552082811, + 45.5088381667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2228c4993e98578999a5cc88b7ea925a1051d3a5", + "fields": { + "code_commune_insee": "16199", + "nom_de_la_commune": "MAGNAC SUR TOUVRE", + "code_postal": "16600", + "coordonnees_gps": [ + 45.6559132577, + 0.236141821195 + ], + "libelle_d_acheminement": "MAGNAC SUR TOUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236141821195, + 45.6559132577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c8a71b4aa1364b2bbee34973f9823924f68b87c", + "fields": { + "ligne_5": "ERAVILLE", + "code_commune_insee": "16204", + "libelle_d_acheminement": "BELLEVIGNE", + "code_postal": "16120", + "nom_de_la_commune": "BELLEVIGNE", + "coordonnees_gps": [ + 45.5525236965, + -0.103272182432 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.103272182432, + 45.5525236965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5a67f19860cfb652fb5a9de8c7f136fff109787", + "fields": { + "code_commune_insee": "16211", + "nom_de_la_commune": "MARTHON", + "code_postal": "16380", + "coordonnees_gps": [ + 45.6171874581, + 0.445486850648 + ], + "libelle_d_acheminement": "MARTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.445486850648, + 45.6171874581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e61d3dd58c2cd0fac8d29081ae47e6b5b3b6dd9", + "fields": { + "code_commune_insee": "16231", + "nom_de_la_commune": "MONTROLLET", + "code_postal": "16420", + "coordonnees_gps": [ + 45.9911418674, + 0.899879118608 + ], + "libelle_d_acheminement": "MONTROLLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.899879118608, + 45.9911418674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2209351646153c6cef875ada1fc77ae66e0cf01", + "fields": { + "code_commune_insee": "16233", + "nom_de_la_commune": "MOSNAC", + "code_postal": "16120", + "coordonnees_gps": [ + 45.615285295, + -0.0132218881439 + ], + "libelle_d_acheminement": "MOSNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0132218881439, + 45.615285295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb3f8e069023a6c869a2a5b7e43ef90412f92cce", + "fields": { + "code_commune_insee": "16240", + "nom_de_la_commune": "NABINAUD", + "code_postal": "16390", + "coordonnees_gps": [ + 45.2933421272, + 0.210125540377 + ], + "libelle_d_acheminement": "NABINAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.210125540377, + 45.2933421272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69c0e531abfab2ec965837344102434bddec0a99", + "fields": { + "ligne_5": "ST GERVAIS", + "code_commune_insee": "16242", + "libelle_d_acheminement": "NANTEUIL EN VALLEE", + "code_postal": "16700", + "nom_de_la_commune": "NANTEUIL EN VALLEE", + "coordonnees_gps": [ + 46.0061029111, + 0.32369225522 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32369225522, + 46.0061029111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ccb63a8f0226ca324c7f6c8ce6e0e0a9302b001", + "fields": { + "code_commune_insee": "16243", + "nom_de_la_commune": "NERCILLAC", + "code_postal": "16200", + "coordonnees_gps": [ + 45.7234512916, + -0.270638222071 + ], + "libelle_d_acheminement": "NERCILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.270638222071, + 45.7234512916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f821f91cc1eed478840b845001b79ffe96d8b1b", + "fields": { + "code_commune_insee": "16245", + "nom_de_la_commune": "NIEUIL", + "code_postal": "16270", + "coordonnees_gps": [ + 45.882845738, + 0.524200213781 + ], + "libelle_d_acheminement": "NIEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.524200213781, + 45.882845738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00467e50ef3fa024d6da6cc820c2800c9a3669e7", + "fields": { + "code_commune_insee": "16249", + "nom_de_la_commune": "ORADOUR FANAIS", + "code_postal": "16500", + "coordonnees_gps": [ + 46.1149553879, + 0.782507477296 + ], + "libelle_d_acheminement": "ORADOUR FANAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.782507477296, + 46.1149553879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6652aa0c8f704a5e2bca5b335669ba97af93ee7", + "fields": { + "code_commune_insee": "16258", + "nom_de_la_commune": "PERIGNAC", + "code_postal": "16250", + "coordonnees_gps": [ + 45.4667323949, + 0.0826496107901 + ], + "libelle_d_acheminement": "PERIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0826496107901, + 45.4667323949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0dbed3648ff6d1bb6462713c9f187db317166be", + "fields": { + "code_commune_insee": "16264", + "nom_de_la_commune": "PLEUVILLE", + "code_postal": "16490", + "coordonnees_gps": [ + 46.0971776924, + 0.492356946293 + ], + "libelle_d_acheminement": "PLEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.492356946293, + 46.0971776924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08118409095792580416cd8662f9a03b236e9d18", + "fields": { + "code_commune_insee": "16272", + "nom_de_la_commune": "PUYREAUX", + "code_postal": "16230", + "coordonnees_gps": [ + 45.86360531, + 0.210617195274 + ], + "libelle_d_acheminement": "PUYREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.210617195274, + 45.86360531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b15ee092895a351c64899374c89ee08d861fc2e4", + "fields": { + "code_commune_insee": "16279", + "nom_de_la_commune": "RIOUX MARTIN", + "code_postal": "16210", + "coordonnees_gps": [ + 45.2431688439, + -0.00417605640764 + ], + "libelle_d_acheminement": "RIOUX MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00417605640764, + 45.2431688439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfc4b86f4ae4680fa0c87db540376e2272ec3ed0", + "fields": { + "ligne_5": "LA ROCHEFOUCAULD", + "code_commune_insee": "16281", + "libelle_d_acheminement": "LA ROCHEFOUCAULD EN ANGOUMOIS", + "code_postal": "16110", + "nom_de_la_commune": "LA ROCHEFOUCAULD EN ANGOUMOIS", + "coordonnees_gps": [ + 45.7334327476, + 0.3937027955 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.3937027955, + 45.7334327476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "864c5293ba3faa61627951401f814be73638e39d", + "fields": { + "code_commune_insee": "16282", + "nom_de_la_commune": "LA ROCHETTE", + "code_postal": "16110", + "coordonnees_gps": [ + 45.7979119983, + 0.310269933524 + ], + "libelle_d_acheminement": "LA ROCHETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.310269933524, + 45.7979119983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cde895c5f7f97839034f8cc0a988b4e6235e45f", + "fields": { + "ligne_5": "PLAIZAC", + "code_commune_insee": "16286", + "libelle_d_acheminement": "ROUILLAC", + "code_postal": "16170", + "nom_de_la_commune": "ROUILLAC", + "coordonnees_gps": [ + 45.781947293, + -0.074390136916 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.074390136916, + 45.781947293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d71db18caeac0cde0064bcd6ec9cc724b8c98f5e", + "fields": { + "ligne_5": "SONNEVILLE", + "code_commune_insee": "16286", + "libelle_d_acheminement": "ROUILLAC", + "code_postal": "16170", + "nom_de_la_commune": "ROUILLAC", + "coordonnees_gps": [ + 45.781947293, + -0.074390136916 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.074390136916, + 45.781947293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6584df7bca1d120e1ada850e1d72f77bdcb27f07", + "fields": { + "code_commune_insee": "16295", + "nom_de_la_commune": "ST AMANT DE BOIXE", + "code_postal": "16330", + "coordonnees_gps": [ + 45.8023519655, + 0.139724725099 + ], + "libelle_d_acheminement": "ST AMANT DE BOIXE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.139724725099, + 45.8023519655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9387835b0b5ec35d606922c7e7fdf66659aebedc", + "fields": { + "ligne_5": "GRAVES", + "code_commune_insee": "16297", + "libelle_d_acheminement": "GRAVES ST AMANT", + "code_postal": "16120", + "nom_de_la_commune": "GRAVES ST AMANT", + "coordonnees_gps": [ + 45.6383664934, + -0.104970620109 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.104970620109, + 45.6383664934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45860bcb1d401b42216460e1ff9ba4c49862e5bb", + "fields": { + "code_commune_insee": "16298", + "nom_de_la_commune": "ST AMANT DE NOUERE", + "code_postal": "16170", + "coordonnees_gps": [ + 45.7363123323, + -0.00546098740035 + ], + "libelle_d_acheminement": "ST AMANT DE NOUERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00546098740035, + 45.7363123323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d05aa9c1ffa5eb0132fce2f174f505a92d63c5df", + "fields": { + "code_commune_insee": "16302", + "nom_de_la_commune": "ST AVIT", + "code_postal": "16210", + "coordonnees_gps": [ + 45.2438261772, + 0.0442847703212 + ], + "libelle_d_acheminement": "ST AVIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0442847703212, + 45.2438261772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a6309ba62a37d69d74be0d2676997cf33304fd1", + "fields": { + "code_commune_insee": "16306", + "nom_de_la_commune": "ST CHRISTOPHE", + "code_postal": "16420", + "coordonnees_gps": [ + 46.0040190503, + 0.849752490764 + ], + "libelle_d_acheminement": "ST CHRISTOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.849752490764, + 46.0040190503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "711e67f253eebdeeadd0f5474482a395c9bd83ca", + "fields": { + "code_commune_insee": "16317", + "nom_de_la_commune": "ST FRAIGNE", + "code_postal": "16140", + "coordonnees_gps": [ + 45.9572719379, + -0.0153853235153 + ], + "libelle_d_acheminement": "ST FRAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0153853235153, + 45.9572719379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4e7465f10e6337e30a32d668a9e77807cd44593", + "fields": { + "code_commune_insee": "16321", + "nom_de_la_commune": "ST GEORGES", + "code_postal": "16700", + "coordonnees_gps": [ + 45.9760746261, + 0.269280643049 + ], + "libelle_d_acheminement": "ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.269280643049, + 45.9760746261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2558c77e2ab1bdb3e03dcecaf1b03fc4b35e7452", + "fields": { + "code_commune_insee": "16326", + "nom_de_la_commune": "ST GROUX", + "code_postal": "16230", + "coordonnees_gps": [ + 45.8908643906, + 0.158281898668 + ], + "libelle_d_acheminement": "ST GROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.158281898668, + 45.8908643906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffa9149170fdda21b0649560116adc5862ec4830", + "fields": { + "code_commune_insee": "16336", + "nom_de_la_commune": "ST MARY", + "code_postal": "16260", + "coordonnees_gps": [ + 45.8452386598, + 0.362015823 + ], + "libelle_d_acheminement": "ST MARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.362015823, + 45.8452386598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b802f15378926e5bb685f7b8b33f389e43128d66", + "fields": { + "ligne_5": "ANVILLE", + "code_commune_insee": "16339", + "libelle_d_acheminement": "VAL D AUGE", + "code_postal": "16170", + "nom_de_la_commune": "VAL D AUGE", + "coordonnees_gps": [ + 45.8511416602, + -0.0872262855566 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0872262855566, + 45.8511416602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dc6f90d228157c77972de437f4b5c2cc9092d7a", + "fields": { + "code_commune_insee": "16343", + "nom_de_la_commune": "ST PREUIL", + "code_postal": "16130", + "coordonnees_gps": [ + 45.6007267045, + -0.172169004384 + ], + "libelle_d_acheminement": "ST PREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.172169004384, + 45.6007267045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc8456b62e6fa6c62140cae4cc4aa5b4be90f9d9", + "fields": { + "code_commune_insee": "16349", + "nom_de_la_commune": "STE SEVERE", + "code_postal": "16200", + "coordonnees_gps": [ + 45.7641596067, + -0.250325475008 + ], + "libelle_d_acheminement": "STE SEVERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.250325475008, + 45.7641596067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f0a480602d317cb5aa31a25104df9fffb185ede", + "fields": { + "code_commune_insee": "16352", + "nom_de_la_commune": "ST SIMON", + "code_postal": "16120", + "coordonnees_gps": [ + 45.6553833109, + -0.0748911541972 + ], + "libelle_d_acheminement": "ST SIMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0748911541972, + 45.6553833109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "463e1924cc9bf6f4aac8f76df6e9cc5036bfcad7", + "fields": { + "code_commune_insee": "16356", + "nom_de_la_commune": "ST SULPICE DE RUFFEC", + "code_postal": "16460", + "coordonnees_gps": [ + 45.9372570852, + 0.318948540786 + ], + "libelle_d_acheminement": "ST SULPICE DE RUFFEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.318948540786, + 45.9372570852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a870dbb2a31b38f072473760372d9420175d7dc", + "fields": { + "code_commune_insee": "16357", + "nom_de_la_commune": "ST VALLIER", + "code_postal": "16480", + "coordonnees_gps": [ + 45.2881730966, + -0.0840666739743 + ], + "libelle_d_acheminement": "ST VALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0840666739743, + 45.2881730966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b996965aa4d20b365264c78c9c28fa9848705239", + "fields": { + "code_commune_insee": "16359", + "nom_de_la_commune": "SALLES D ANGLES", + "code_postal": "16130", + "coordonnees_gps": [ + 45.6192884058, + -0.344548280548 + ], + "libelle_d_acheminement": "SALLES D ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.344548280548, + 45.6192884058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cc569186fa5c09c8ab86a24d71da127fdc73457", + "fields": { + "code_commune_insee": "16360", + "nom_de_la_commune": "SALLES DE BARBEZIEUX", + "code_postal": "16300", + "coordonnees_gps": [ + 45.4517011196, + -0.121693762991 + ], + "libelle_d_acheminement": "SALLES DE BARBEZIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.121693762991, + 45.4517011196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8277a6960ab5f7cc1402d932c48c9e714308db24", + "fields": { + "code_commune_insee": "16361", + "nom_de_la_commune": "SALLES DE VILLEFAGNAN", + "code_postal": "16700", + "coordonnees_gps": [ + 45.9599094427, + 0.17124025939 + ], + "libelle_d_acheminement": "SALLES DE VILLEFAGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17124025939, + 45.9599094427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d960e98b20253a1ab8f29636a2e751ad1e56706f", + "fields": { + "code_commune_insee": "16378", + "nom_de_la_commune": "TAIZE AIZIE", + "code_postal": "16700", + "coordonnees_gps": [ + 46.0636731179, + 0.247464724639 + ], + "libelle_d_acheminement": "TAIZE AIZIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.247464724639, + 46.0636731179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "171501513b4a232430dd49c84beb4235b3ff7c59", + "fields": { + "code_commune_insee": "16379", + "nom_de_la_commune": "TAPONNAT FLEURIGNAC", + "code_postal": "16110", + "coordonnees_gps": [ + 45.7739607246, + 0.417726239972 + ], + "libelle_d_acheminement": "TAPONNAT FLEURIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.417726239972, + 45.7739607246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7543167263d09e96160b25297d2ad713ad6f3ce8", + "fields": { + "code_commune_insee": "16384", + "nom_de_la_commune": "TOUVERAC", + "code_postal": "16360", + "coordonnees_gps": [ + 45.3740871149, + -0.201503841604 + ], + "libelle_d_acheminement": "TOUVERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.201503841604, + 45.3740871149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4a9979ec139fd2c6b79d7e92f4c295018351872", + "fields": { + "code_commune_insee": "16385", + "nom_de_la_commune": "TOUVRE", + "code_postal": "16600", + "coordonnees_gps": [ + 45.658185613, + 0.267862440841 + ], + "libelle_d_acheminement": "TOUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.267862440841, + 45.658185613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd7fa47e9d598052bbe0e060ba1daec6049bc6a0", + "fields": { + "ligne_5": "LANTIN", + "code_commune_insee": "16387", + "libelle_d_acheminement": "TRIAC LAUTRAIT", + "code_postal": "16200", + "nom_de_la_commune": "TRIAC LAUTRAIT", + "coordonnees_gps": [ + 45.6828749184, + -0.115750657737 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.115750657737, + 45.6828749184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6ac9c018c7f13ef56b3acf272786516065d25bd", + "fields": { + "code_commune_insee": "16402", + "nom_de_la_commune": "VIBRAC", + "code_postal": "16120", + "coordonnees_gps": [ + 45.6431019638, + -0.0593033677252 + ], + "libelle_d_acheminement": "VIBRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0593033677252, + 45.6431019638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cce0666f91239f797cb8230b4ef00ab7f8e8d863", + "fields": { + "ligne_5": "VILHONNEUR", + "code_commune_insee": "16406", + "libelle_d_acheminement": "MOULINS SUR TARDOIRE", + "code_postal": "16220", + "nom_de_la_commune": "MOULINS SUR TARDOIRE", + "coordonnees_gps": [ + 45.6749371405, + 0.413690557733 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.413690557733, + 45.6749371405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f56b469871a21817cd32d58bcaad52b1811f53e5", + "fields": { + "code_commune_insee": "17004", + "nom_de_la_commune": "ILE D AIX", + "code_postal": "17123", + "coordonnees_gps": [ + 46.0183336808, + -1.1696249203 + ], + "libelle_d_acheminement": "ILE D AIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1696249203, + 46.0183336808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cc699f6f086f80d2c8ebd42ef8e60e1ea7e7a74", + "fields": { + "code_commune_insee": "17023", + "nom_de_la_commune": "AUJAC", + "code_postal": "17770", + "coordonnees_gps": [ + 45.8475001891, + -0.394514249009 + ], + "libelle_d_acheminement": "AUJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.394514249009, + 45.8475001891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3c5071862f5e4f67faa81a708385d25153991a0", + "fields": { + "code_commune_insee": "17024", + "nom_de_la_commune": "AULNAY", + "code_postal": "17470", + "coordonnees_gps": [ + 46.0203377417, + -0.348095789107 + ], + "libelle_d_acheminement": "AULNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.348095789107, + 46.0203377417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "265b17366818d69b3574eab6d711bc991ade7ab0", + "fields": { + "code_commune_insee": "17028", + "nom_de_la_commune": "AYTRE", + "code_postal": "17440", + "coordonnees_gps": [ + 46.134271716, + -1.11454913295 + ], + "libelle_d_acheminement": "AYTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11454913295, + 46.134271716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22ea307f5cb3fa26f86d744543b8303968b1236a", + "fields": { + "code_commune_insee": "17031", + "nom_de_la_commune": "BALLANS", + "code_postal": "17160", + "coordonnees_gps": [ + 45.8083081016, + -0.225189641549 + ], + "libelle_d_acheminement": "BALLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.225189641549, + 45.8083081016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87c0911aa3320653655848aefa6537011462ccfd", + "fields": { + "code_commune_insee": "17036", + "nom_de_la_commune": "BEAUGEAY", + "code_postal": "17620", + "coordonnees_gps": [ + 45.8699571421, + -1.00817611338 + ], + "libelle_d_acheminement": "BEAUGEAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00817611338, + 45.8699571421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc7cf990d5a7362efa189576fabb9c8c4334487b", + "fields": { + "code_commune_insee": "17041", + "nom_de_la_commune": "BENON", + "code_postal": "17170", + "coordonnees_gps": [ + 46.1994730581, + -0.797193296126 + ], + "libelle_d_acheminement": "BENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.797193296126, + 46.1994730581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb8f085c4446fc0d5cc324b6d8d5924eef719dd7", + "fields": { + "code_commune_insee": "17047", + "nom_de_la_commune": "BIRON", + "code_postal": "17800", + "coordonnees_gps": [ + 45.5688029671, + -0.483837894622 + ], + "libelle_d_acheminement": "BIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.483837894622, + 45.5688029671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44124426b0acc416b9381a7ad7aa472a783ba773", + "fields": { + "code_commune_insee": "17051", + "nom_de_la_commune": "LE BOIS PLAGE EN RE", + "code_postal": "17580", + "coordonnees_gps": [ + 46.1825283655, + -1.37625908104 + ], + "libelle_d_acheminement": "LE BOIS PLAGE EN RE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37625908104, + 46.1825283655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82b37bffa11fe2bfdc1bd22eb96250cf6229ff13", + "fields": { + "code_commune_insee": "17053", + "nom_de_la_commune": "BORDS", + "code_postal": "17430", + "coordonnees_gps": [ + 45.8953761527, + -0.785050392193 + ], + "libelle_d_acheminement": "BORDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.785050392193, + 45.8953761527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec1e6c3039db2b85e99268f95c436e831eee948f", + "fields": { + "code_commune_insee": "17059", + "nom_de_la_commune": "BOURGNEUF", + "code_postal": "17220", + "coordonnees_gps": [ + 46.1681538525, + -1.02181156322 + ], + "libelle_d_acheminement": "BOURGNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02181156322, + 46.1681538525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ec1b0b9dc7bd620e8bfd78d285d307781f74ba7", + "fields": { + "code_commune_insee": "17060", + "nom_de_la_commune": "BOUTENAC TOUVENT", + "code_postal": "17120", + "coordonnees_gps": [ + 45.4989856627, + -0.760479056948 + ], + "libelle_d_acheminement": "BOUTENAC TOUVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.760479056948, + 45.4989856627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d17e65400455382c1a77e259028d9ade658e06a", + "fields": { + "code_commune_insee": "17061", + "nom_de_la_commune": "BRAN", + "code_postal": "17210", + "coordonnees_gps": [ + 45.3499135162, + -0.261698224631 + ], + "libelle_d_acheminement": "BRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.261698224631, + 45.3499135162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aabe2f2704d998f09d3d84330dcea03285d4d2df", + "fields": { + "code_commune_insee": "17078", + "nom_de_la_commune": "CHADENAC", + "code_postal": "17800", + "coordonnees_gps": [ + 45.5445094942, + -0.450256839324 + ], + "libelle_d_acheminement": "CHADENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.450256839324, + 45.5445094942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4687e0b1c31773e6a0fbc9c6a12c811ca4a3bf89", + "fields": { + "code_commune_insee": "17079", + "nom_de_la_commune": "CHAILLEVETTE", + "code_postal": "17890", + "coordonnees_gps": [ + 45.7303444149, + -1.06814190261 + ], + "libelle_d_acheminement": "CHAILLEVETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06814190261, + 45.7303444149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6f21f7c1f764154af0b441d9e3d03d5031d83bc", + "fields": { + "code_commune_insee": "17083", + "nom_de_la_commune": "CHAMPAGNE", + "code_postal": "17620", + "coordonnees_gps": [ + 45.8298794044, + -0.91672258016 + ], + "libelle_d_acheminement": "CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91672258016, + 45.8298794044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f030f3c98fe3ca3e278ec096ad837f044a0fb2b3", + "fields": { + "ligne_5": "LA CHEVALERIE", + "code_commune_insee": "17093", + "libelle_d_acheminement": "LE CHATEAU D OLERON", + "code_postal": "17480", + "nom_de_la_commune": "LE CHATEAU D OLERON", + "coordonnees_gps": [ + 45.8813853125, + -1.2166234835 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2166234835, + 45.8813853125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef2c5f8c08a5263f481a7fbee05b6a7a1d3d50c2", + "fields": { + "code_commune_insee": "17102", + "nom_de_la_commune": "CHERMIGNAC", + "code_postal": "17460", + "coordonnees_gps": [ + 45.6928090808, + -0.677270965738 + ], + "libelle_d_acheminement": "CHERMIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.677270965738, + 45.6928090808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd46ed85f33806fe8a3d23179de38a03d4f60544", + "fields": { + "code_commune_insee": "17113", + "nom_de_la_commune": "LA CLOTTE", + "code_postal": "17360", + "coordonnees_gps": [ + 45.1155746531, + -0.143215362973 + ], + "libelle_d_acheminement": "LA CLOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.143215362973, + 45.1155746531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04674070e5a4545fe8ad033b76c39551c40cd76c", + "fields": { + "code_commune_insee": "17115", + "nom_de_la_commune": "COLOMBIERS", + "code_postal": "17460", + "coordonnees_gps": [ + 45.6427817429, + -0.555075273986 + ], + "libelle_d_acheminement": "COLOMBIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.555075273986, + 45.6427817429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5d88d3f777abd8f2689e6505b84986bc733d474", + "fields": { + "code_commune_insee": "17132", + "nom_de_la_commune": "CRAMCHABAN", + "code_postal": "17170", + "coordonnees_gps": [ + 46.2148052495, + -0.718162593168 + ], + "libelle_d_acheminement": "CRAMCHABAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.718162593168, + 46.2148052495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab9139ed36c8cc86283d0701113ada3e4b630e47", + "fields": { + "code_commune_insee": "17135", + "nom_de_la_commune": "CRESSE", + "code_postal": "17160", + "coordonnees_gps": [ + 45.916026224, + -0.212186175866 + ], + "libelle_d_acheminement": "CRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.212186175866, + 45.916026224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8ef98b6c1402f38b14beefb04f93ffb34cda4e0", + "fields": { + "code_commune_insee": "17137", + "nom_de_la_commune": "LA CROIX COMTESSE", + "code_postal": "17330", + "coordonnees_gps": [ + 46.0824925841, + -0.504784352089 + ], + "libelle_d_acheminement": "LA CROIX COMTESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.504784352089, + 46.0824925841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcd34fb1652c603a9dc7fe38bfa805da56b2fc61", + "fields": { + "ligne_5": "LA RENAISSANCE", + "code_commune_insee": "17146", + "libelle_d_acheminement": "ECHILLAIS", + "code_postal": "17620", + "nom_de_la_commune": "ECHILLAIS", + "coordonnees_gps": [ + 45.9024659097, + -0.953390493199 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.953390493199, + 45.9024659097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d526ddd44645c687553b434762e665f36699bb3a", + "fields": { + "code_commune_insee": "17149", + "nom_de_la_commune": "LES EDUTS", + "code_postal": "17510", + "coordonnees_gps": [ + 45.9975741287, + -0.206497538135 + ], + "libelle_d_acheminement": "LES EDUTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.206497538135, + 45.9975741287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64cd41067e7599a32f1edc1306f23f3dd1cac328", + "fields": { + "code_commune_insee": "17156", + "nom_de_la_commune": "EXPIREMONT", + "code_postal": "17130", + "coordonnees_gps": [ + 45.3325890247, + -0.374711458705 + ], + "libelle_d_acheminement": "EXPIREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.374711458705, + 45.3325890247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9212700fbb338768499c7db32b84bea6b407870c", + "fields": { + "code_commune_insee": "17157", + "nom_de_la_commune": "FENIOUX", + "code_postal": "17350", + "coordonnees_gps": [ + 45.891354381, + -0.588645378204 + ], + "libelle_d_acheminement": "FENIOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.588645378204, + 45.891354381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3d22cd18ec33e6e9b67b563fc350b42fe26a41c", + "fields": { + "code_commune_insee": "17158", + "nom_de_la_commune": "FERRIERES", + "code_postal": "17170", + "coordonnees_gps": [ + 46.2293761837, + -0.854091719945 + ], + "libelle_d_acheminement": "FERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.854091719945, + 46.2293761837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e403799cca25c486852a55442a8b7af44de93a2b", + "fields": { + "code_commune_insee": "17159", + "nom_de_la_commune": "FLEAC SUR SEUGNE", + "code_postal": "17800", + "coordonnees_gps": [ + 45.5312541741, + -0.525777430829 + ], + "libelle_d_acheminement": "FLEAC SUR SEUGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.525777430829, + 45.5312541741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14894cd7bc109bd90c799cb21cab9085e9424a4b", + "fields": { + "code_commune_insee": "17164", + "nom_de_la_commune": "FONTCOUVERTE", + "code_postal": "17100", + "coordonnees_gps": [ + 45.767715256, + -0.590510817969 + ], + "libelle_d_acheminement": "FONTCOUVERTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.590510817969, + 45.767715256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac6521331fcece29f595adc1bae37202b07d602c", + "fields": { + "code_commune_insee": "17165", + "nom_de_la_commune": "FONTENET", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9056728003, + -0.463265177697 + ], + "libelle_d_acheminement": "FONTENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.463265177697, + 45.9056728003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7adc55638680fc647b2d0aa0026ccba88c87268", + "fields": { + "code_commune_insee": "17166", + "nom_de_la_commune": "FORGES", + "code_postal": "17290", + "coordonnees_gps": [ + 46.1090753059, + -0.892101839793 + ], + "libelle_d_acheminement": "FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.892101839793, + 46.1090753059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0247c76f9f2b3a1aa806faa26da4f419cf6f4229", + "fields": { + "code_commune_insee": "17171", + "nom_de_la_commune": "GEAY", + "code_postal": "17250", + "coordonnees_gps": [ + 45.8619856256, + -0.756393438538 + ], + "libelle_d_acheminement": "GEAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.756393438538, + 45.8619856256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3575d9af5b72b1fd24eb5da64002a2ae097ed631", + "fields": { + "code_commune_insee": "17175", + "nom_de_la_commune": "GERMIGNAC", + "code_postal": "17520", + "coordonnees_gps": [ + 45.5608582363, + -0.341121661221 + ], + "libelle_d_acheminement": "GERMIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.341121661221, + 45.5608582363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1d7bd11e4f45e93b8290fba1644810d14157283", + "fields": { + "code_commune_insee": "17182", + "nom_de_la_commune": "LA GREVE SUR MIGNON", + "code_postal": "17170", + "coordonnees_gps": [ + 46.2475550874, + -0.760121003243 + ], + "libelle_d_acheminement": "LA GREVE SUR MIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.760121003243, + 46.2475550874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c90568cdcfa0d9ab9c3119a75a07d3d51043116", + "fields": { + "code_commune_insee": "17184", + "nom_de_la_commune": "LA GRIPPERIE ST SYMPHORIEN", + "code_postal": "17620", + "coordonnees_gps": [ + 45.7918128326, + -0.952372788645 + ], + "libelle_d_acheminement": "LA GRIPPERIE ST SYMPHORIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.952372788645, + 45.7918128326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ada10aab21e50b6ca8b7ba49ddea978cd82ff31e", + "fields": { + "code_commune_insee": "17196", + "nom_de_la_commune": "JAZENNES", + "code_postal": "17260", + "coordonnees_gps": [ + 45.5828838035, + -0.615889273247 + ], + "libelle_d_acheminement": "JAZENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.615889273247, + 45.5828838035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e926485ecf4b2a289f21c0e4963b589d32df19a", + "fields": { + "code_commune_insee": "17199", + "nom_de_la_commune": "JUSSAS", + "code_postal": "17130", + "coordonnees_gps": [ + 45.2770542322, + -0.356321987805 + ], + "libelle_d_acheminement": "JUSSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.356321987805, + 45.2770542322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa93efa8acbaf891e2b53e5659456455fb44cea2", + "fields": { + "code_commune_insee": "17206", + "nom_de_la_commune": "LOIRE SUR NIE", + "code_postal": "17470", + "coordonnees_gps": [ + 45.9584075914, + -0.289572002705 + ], + "libelle_d_acheminement": "LOIRE SUR NIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.289572002705, + 45.9584075914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d003968630f68fd5bcdaf72df0e9c9ff0afe65d", + "fields": { + "ligne_5": "BROUAGE", + "code_commune_insee": "17219", + "libelle_d_acheminement": "MARENNES HIERS BROUAGE", + "code_postal": "17320", + "nom_de_la_commune": "MARENNES HIERS BROUAGE", + "coordonnees_gps": [ + 45.8221269588, + -1.10929995315 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10929995315, + 45.8221269588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fe67d559a8a2f39527bbb58a0d3fe746aff285a", + "fields": { + "ligne_5": "HIERS BROUAGE", + "code_commune_insee": "17219", + "libelle_d_acheminement": "MARENNES HIERS BROUAGE", + "code_postal": "17320", + "nom_de_la_commune": "MARENNES HIERS BROUAGE", + "coordonnees_gps": [ + 45.8221269588, + -1.10929995315 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10929995315, + 45.8221269588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca4f38cef283541f047ede4f68c949b56a275a9a", + "fields": { + "ligne_5": "BOISSE", + "code_commune_insee": "17221", + "libelle_d_acheminement": "MARSAIS", + "code_postal": "17700", + "nom_de_la_commune": "MARSAIS", + "coordonnees_gps": [ + 46.1217050535, + -0.619473280005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.619473280005, + 46.1217050535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23016214838a22535c12349ef9366cd646b4330f", + "fields": { + "code_commune_insee": "17223", + "nom_de_la_commune": "MASSAC", + "code_postal": "17490", + "coordonnees_gps": [ + 45.8631244023, + -0.217593308296 + ], + "libelle_d_acheminement": "MASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.217593308296, + 45.8631244023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd01784e15fef80fd847020f4aa45a5d0ca09896", + "fields": { + "code_commune_insee": "17225", + "nom_de_la_commune": "LES MATHES", + "code_postal": "17570", + "coordonnees_gps": [ + 45.7059879117, + -1.17086670363 + ], + "libelle_d_acheminement": "LES MATHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17086670363, + 45.7059879117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af04507a40c57244a9bdaaacc6324c632595e26b", + "fields": { + "code_commune_insee": "17228", + "nom_de_la_commune": "MEDIS", + "code_postal": "17600", + "coordonnees_gps": [ + 45.64232723, + -0.957332811747 + ], + "libelle_d_acheminement": "MEDIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.957332811747, + 45.64232723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da57bd5283f7f0b07230159f2c52e96ee77e82c8", + "fields": { + "code_commune_insee": "17229", + "nom_de_la_commune": "MERIGNAC", + "code_postal": "17210", + "coordonnees_gps": [ + 45.329823943, + -0.300959977347 + ], + "libelle_d_acheminement": "MERIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.300959977347, + 45.329823943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af17749da0a3fa6e2b588b9a19e8b3711b6bb130", + "fields": { + "code_commune_insee": "17234", + "nom_de_la_commune": "MIGRE", + "code_postal": "17330", + "coordonnees_gps": [ + 46.0822034021, + -0.558494277058 + ], + "libelle_d_acheminement": "MIGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.558494277058, + 46.0822034021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26c0cf8575a21eec733f9531a58652d242510feb", + "fields": { + "code_commune_insee": "17235", + "nom_de_la_commune": "MIGRON", + "code_postal": "17770", + "coordonnees_gps": [ + 45.8057541534, + -0.397192651315 + ], + "libelle_d_acheminement": "MIGRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.397192651315, + 45.8057541534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2cfaf7ab8d850a03dfe49c90d8f48670c5c60c5", + "fields": { + "code_commune_insee": "17241", + "nom_de_la_commune": "MONTGUYON", + "code_postal": "17270", + "coordonnees_gps": [ + 45.2102562362, + -0.16987214667 + ], + "libelle_d_acheminement": "MONTGUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.16987214667, + 45.2102562362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41e596ac95acc952601beec1ec3bb41f90220cca", + "fields": { + "code_commune_insee": "17245", + "nom_de_la_commune": "MONTROY", + "code_postal": "17220", + "coordonnees_gps": [ + 46.1551359156, + -1.01723607292 + ], + "libelle_d_acheminement": "MONTROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01723607292, + 46.1551359156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6200bc97f1b025e0b3c71cc3626c63c1bba2d639", + "fields": { + "code_commune_insee": "17249", + "nom_de_la_commune": "MORTIERS", + "code_postal": "17500", + "coordonnees_gps": [ + 45.3992961436, + -0.322350930618 + ], + "libelle_d_acheminement": "MORTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.322350930618, + 45.3992961436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "264aac6ce60e0c9b00004c4c7f2ad40b00626c11", + "fields": { + "code_commune_insee": "17257", + "nom_de_la_commune": "NERE", + "code_postal": "17510", + "coordonnees_gps": [ + 45.9770392382, + -0.242404369884 + ], + "libelle_d_acheminement": "NERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.242404369884, + 45.9770392382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c785ae0ed9c6d43b624980aba30c4e2177f476f", + "fields": { + "code_commune_insee": "17260", + "nom_de_la_commune": "NEUVICQ", + "code_postal": "17270", + "coordonnees_gps": [ + 45.2543430051, + -0.166383193961 + ], + "libelle_d_acheminement": "NEUVICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.166383193961, + 45.2543430051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94680c28042f91e8dcac375b15e1f7c257eb7de2", + "fields": { + "code_commune_insee": "17266", + "nom_de_la_commune": "LES NOUILLERS", + "code_postal": "17380", + "coordonnees_gps": [ + 45.9351578691, + -0.656955735884 + ], + "libelle_d_acheminement": "LES NOUILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.656955735884, + 45.9351578691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e39382d30a03d8b2e3e4103f846119a281922430", + "fields": { + "code_commune_insee": "17269", + "nom_de_la_commune": "ORIGNOLLES", + "code_postal": "17210", + "coordonnees_gps": [ + 45.2210229962, + -0.23417146354 + ], + "libelle_d_acheminement": "ORIGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23417146354, + 45.2210229962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6c5b6565e21f075252bcb76e6255a16df086a6a", + "fields": { + "code_commune_insee": "17275", + "nom_de_la_commune": "PESSINES", + "code_postal": "17810", + "coordonnees_gps": [ + 45.7245689026, + -0.710843452649 + ], + "libelle_d_acheminement": "PESSINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.710843452649, + 45.7245689026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "732e00879b23496164eaa50a55dc103428d26264", + "fields": { + "code_commune_insee": "17276", + "nom_de_la_commune": "LE PIN", + "code_postal": "17210", + "coordonnees_gps": [ + 45.3165769615, + -0.293306922217 + ], + "libelle_d_acheminement": "LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.293306922217, + 45.3165769615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eb17495d11257af772c03640b3a989c0ac95c94", + "fields": { + "ligne_5": "ST DENIS DU PIN", + "code_commune_insee": "17277", + "libelle_d_acheminement": "ESSOUVERT", + "code_postal": "17400", + "nom_de_la_commune": "ESSOUVERT", + "coordonnees_gps": [ + 45.9951682951, + -0.52001872758 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52001872758, + 45.9951682951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cce09dba6e3ba65927ede475d4c3fcce814e5930", + "fields": { + "code_commune_insee": "17285", + "nom_de_la_commune": "PORT D ENVAUX", + "code_postal": "17350", + "coordonnees_gps": [ + 45.818051845, + -0.672067298755 + ], + "libelle_d_acheminement": "PORT D ENVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.672067298755, + 45.818051845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d120b0a62c29a89c3d15e8e62fad6feb6c70646", + "fields": { + "code_commune_insee": "17287", + "nom_de_la_commune": "POUILLAC", + "code_postal": "17210", + "coordonnees_gps": [ + 45.2715894817, + -0.258813906971 + ], + "libelle_d_acheminement": "POUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.258813906971, + 45.2715894817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eef3fd46831e1f8a76d9101e485d33309918709", + "fields": { + "code_commune_insee": "17292", + "nom_de_la_commune": "PUY DU LAC", + "code_postal": "17380", + "coordonnees_gps": [ + 45.9446549466, + -0.753552985644 + ], + "libelle_d_acheminement": "PUY DU LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.753552985644, + 45.9446549466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80aec7ab1896bf42e5cedf0c1d65234f54a383ca", + "fields": { + "ligne_5": "REAUX", + "code_commune_insee": "17295", + "libelle_d_acheminement": "REAUX SUR TREFLE", + "code_postal": "17500", + "nom_de_la_commune": "REAUX SUR TREFLE", + "coordonnees_gps": [ + 45.4656327459, + -0.380359644815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.380359644815, + 45.4656327459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a41037d3d932910dc1407cefc940e46641f17307", + "fields": { + "ligne_5": "VILLENEUVE LES SALINES", + "code_commune_insee": "17300", + "libelle_d_acheminement": "LA ROCHELLE", + "code_postal": "17000", + "nom_de_la_commune": "LA ROCHELLE", + "coordonnees_gps": [ + 46.1620643972, + -1.17465702836 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17465702836, + 46.1620643972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31b37b124ba9e40d6b63b950905e06fdcb16730a", + "fields": { + "code_commune_insee": "17307", + "nom_de_la_commune": "SABLONCEAUX", + "code_postal": "17600", + "coordonnees_gps": [ + 45.7137265647, + -0.895448885479 + ], + "libelle_d_acheminement": "SABLONCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.895448885479, + 45.7137265647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce5d11c2b16ae1f4c9baae21b7c01335a63d1b64", + "fields": { + "code_commune_insee": "17312", + "nom_de_la_commune": "ST BONNET SUR GIRONDE", + "code_postal": "17150", + "coordonnees_gps": [ + 45.3405019965, + -0.644960130156 + ], + "libelle_d_acheminement": "ST BONNET SUR GIRONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.644960130156, + 45.3405019965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f2694f61847608ea47960f908b1fd8df5e2d22f", + "fields": { + "code_commune_insee": "17313", + "nom_de_la_commune": "ST BRIS DES BOIS", + "code_postal": "17770", + "coordonnees_gps": [ + 45.7690651719, + -0.472533882609 + ], + "libelle_d_acheminement": "ST BRIS DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.472533882609, + 45.7690651719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d0b8b4afbebca0b6ec337c83113f6bb86a02a15", + "fields": { + "code_commune_insee": "17324", + "nom_de_la_commune": "ST DIZANT DU BOIS", + "code_postal": "17150", + "coordonnees_gps": [ + 45.4008726045, + -0.570073818509 + ], + "libelle_d_acheminement": "ST DIZANT DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.570073818509, + 45.4008726045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf2c3c521b1b0c750791b6c6e541f67f7f15ec65", + "fields": { + "code_commune_insee": "17326", + "nom_de_la_commune": "ST EUGENE", + "code_postal": "17520", + "coordonnees_gps": [ + 45.498090644, + -0.274132847243 + ], + "libelle_d_acheminement": "ST EUGENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.274132847243, + 45.498090644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "188fba256560dd03b26da07c0b3d76b068389d7c", + "fields": { + "ligne_5": "ANTIGNAC", + "code_commune_insee": "17332", + "libelle_d_acheminement": "ST GEORGES ANTIGNAC", + "code_postal": "17240", + "nom_de_la_commune": "ST GEORGES ANTIGNAC", + "coordonnees_gps": [ + 45.4918057493, + -0.482750821829 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.482750821829, + 45.4918057493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5541472539106eb5cc4730d9e36ae41965610948", + "fields": { + "code_commune_insee": "17336", + "nom_de_la_commune": "ST GEORGES DES COTEAUX", + "code_postal": "17810", + "coordonnees_gps": [ + 45.7703624625, + -0.701151604065 + ], + "libelle_d_acheminement": "ST GEORGES DES COTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.701151604065, + 45.7703624625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38f5cc9d1edb39e8a3a11bf29b1e12e40c44d091", + "fields": { + "code_commune_insee": "17337", + "nom_de_la_commune": "ST GEORGES D OLERON", + "code_postal": "17190", + "coordonnees_gps": [ + 45.9762465553, + -1.32432969206 + ], + "libelle_d_acheminement": "ST GEORGES D OLERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32432969206, + 45.9762465553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce6385b793ce50a5ea6aa3057e9ec6d8de0c8d49", + "fields": { + "ligne_5": "BOYARDVILLE", + "code_commune_insee": "17337", + "libelle_d_acheminement": "ST GEORGES D OLERON", + "code_postal": "17190", + "nom_de_la_commune": "ST GEORGES D OLERON", + "coordonnees_gps": [ + 45.9762465553, + -1.32432969206 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32432969206, + 45.9762465553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "405994275daf09f14db7858eba25873dddaa74aa", + "fields": { + "ligne_5": "CHERAY", + "code_commune_insee": "17337", + "libelle_d_acheminement": "ST GEORGES D OLERON", + "code_postal": "17190", + "nom_de_la_commune": "ST GEORGES D OLERON", + "coordonnees_gps": [ + 45.9762465553, + -1.32432969206 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32432969206, + 45.9762465553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3e6345eac72df4af4aa2eb2bb4b5cbab51de108", + "fields": { + "ligne_5": "DOMINO", + "code_commune_insee": "17337", + "libelle_d_acheminement": "ST GEORGES D OLERON", + "code_postal": "17190", + "nom_de_la_commune": "ST GEORGES D OLERON", + "coordonnees_gps": [ + 45.9762465553, + -1.32432969206 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32432969206, + 45.9762465553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bebf433204e025165d435e012fdb2d958160cfc", + "fields": { + "code_commune_insee": "17344", + "nom_de_la_commune": "ST HILAIRE DE VILLEFRANCHE", + "code_postal": "17770", + "coordonnees_gps": [ + 45.8589827004, + -0.536045938535 + ], + "libelle_d_acheminement": "ST HILAIRE DE VILLEFRANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.536045938535, + 45.8589827004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b98fac69aad864eb8ed3c3e145e2a3a7a599c39e", + "fields": { + "ligne_5": "LA FREDIERE", + "code_commune_insee": "17344", + "libelle_d_acheminement": "ST HILAIRE DE VILLEFRANCHE", + "code_postal": "17770", + "nom_de_la_commune": "ST HILAIRE DE VILLEFRANCHE", + "coordonnees_gps": [ + 45.8589827004, + -0.536045938535 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.536045938535, + 45.8589827004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67366cf261555e7c1fc0a65c5b9d3e59b39ad09c", + "fields": { + "code_commune_insee": "17350", + "nom_de_la_commune": "ST JULIEN DE L ESCAP", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9286301344, + -0.485268545942 + ], + "libelle_d_acheminement": "ST JULIEN DE L ESCAP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.485268545942, + 45.9286301344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea8320f140d1c228b3e307f03d49e51b0e106a5f", + "fields": { + "code_commune_insee": "17362", + "nom_de_la_commune": "ST MARTIAL DE MIRAMBEAU", + "code_postal": "17150", + "coordonnees_gps": [ + 45.3780654315, + -0.594952157057 + ], + "libelle_d_acheminement": "ST MARTIAL DE MIRAMBEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.594952157057, + 45.3780654315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e68b540d7c8193a8af0296d0b0fac0e7b7ffc9a7", + "fields": { + "code_commune_insee": "17373", + "nom_de_la_commune": "ST MEDARD D AUNIS", + "code_postal": "17220", + "coordonnees_gps": [ + 46.1592023268, + -0.967137851085 + ], + "libelle_d_acheminement": "ST MEDARD D AUNIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.967137851085, + 46.1592023268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7972b7dea9aee2cea66c788e3a1d6f915d5b2ed", + "fields": { + "code_commune_insee": "17378", + "nom_de_la_commune": "ST PALAIS DE NEGRIGNAC", + "code_postal": "17210", + "coordonnees_gps": [ + 45.2745437517, + -0.201995089844 + ], + "libelle_d_acheminement": "ST PALAIS DE NEGRIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.201995089844, + 45.2745437517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9a6ed4c6c95ab79b86e65f62cdff200cdbcd5f8", + "fields": { + "code_commune_insee": "17387", + "nom_de_la_commune": "ST PORCHAIRE", + "code_postal": "17250", + "coordonnees_gps": [ + 45.8230381488, + -0.774633081138 + ], + "libelle_d_acheminement": "ST PORCHAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.774633081138, + 45.8230381488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "248fdfd4d6cfdeaf0d762e43bf9e20f2b6a4318f", + "fields": { + "code_commune_insee": "17391", + "nom_de_la_commune": "ST ROGATIEN", + "code_postal": "17220", + "coordonnees_gps": [ + 46.1454739, + -1.06187828787 + ], + "libelle_d_acheminement": "ST ROGATIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06187828787, + 46.1454739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e0b4f14cc81f9f668624ce97cd8df3fa4e81b2e", + "fields": { + "code_commune_insee": "17397", + "nom_de_la_commune": "ST SAVINIEN", + "code_postal": "17350", + "coordonnees_gps": [ + 45.8862799418, + -0.677457125043 + ], + "libelle_d_acheminement": "ST SAVINIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.677457125043, + 45.8862799418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b8805432c9c38ec941921949a94a4dc7715585f", + "fields": { + "code_commune_insee": "17400", + "nom_de_la_commune": "ST SEVER DE SAINTONGE", + "code_postal": "17800", + "coordonnees_gps": [ + 45.6909400588, + -0.52078042473 + ], + "libelle_d_acheminement": "ST SEVER DE SAINTONGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52078042473, + 45.6909400588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7dbb6d4315a0ae0b17fd55e6cd631f4526a408b", + "fields": { + "code_commune_insee": "17434", + "nom_de_la_commune": "SURGERES", + "code_postal": "17700", + "coordonnees_gps": [ + 46.1044773827, + -0.753715269757 + ], + "libelle_d_acheminement": "SURGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.753715269757, + 46.1044773827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62a5ed82b225c3e31bf7a26a0a9a6285f25e7fc4", + "fields": { + "code_commune_insee": "17439", + "nom_de_la_commune": "TAUGON", + "code_postal": "17170", + "coordonnees_gps": [ + 46.3172452775, + -0.831865741628 + ], + "libelle_d_acheminement": "TAUGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.831865741628, + 46.3172452775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fbd977bcd96386fc5fd204011fee911ad0985fc", + "fields": { + "code_commune_insee": "17440", + "nom_de_la_commune": "TERNANT", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9465741862, + -0.561311450959 + ], + "libelle_d_acheminement": "TERNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.561311450959, + 45.9465741862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1f72f29af8100bd9ff3ee62d3bd11e8591a9e43", + "fields": { + "code_commune_insee": "17442", + "nom_de_la_commune": "THAIMS", + "code_postal": "17120", + "coordonnees_gps": [ + 45.6155314276, + -0.791473092031 + ], + "libelle_d_acheminement": "THAIMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.791473092031, + 45.6155314276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2438a7f4c8eb50857a3f26d6155d86829461890f", + "fields": { + "code_commune_insee": "17453", + "nom_de_la_commune": "TRIZAY", + "code_postal": "17250", + "coordonnees_gps": [ + 45.8824159109, + -0.903805758025 + ], + "libelle_d_acheminement": "TRIZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.903805758025, + 45.8824159109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0b3ad4074fe5f00d904e296462a4c6e5b42c7ec", + "fields": { + "code_commune_insee": "17460", + "nom_de_la_commune": "VARZAY", + "code_postal": "17460", + "coordonnees_gps": [ + 45.7002243997, + -0.743043174473 + ], + "libelle_d_acheminement": "VARZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.743043174473, + 45.7002243997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7de298bef197eb144e608f162126b413a8224d86", + "fields": { + "code_commune_insee": "17469", + "nom_de_la_commune": "VILLARS EN PONS", + "code_postal": "17260", + "coordonnees_gps": [ + 45.6039717298, + -0.628988620843 + ], + "libelle_d_acheminement": "VILLARS EN PONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.628988620843, + 45.6039717298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a27264347db55b4fdb512b33ae399b1e3b703ad6", + "fields": { + "code_commune_insee": "17483", + "nom_de_la_commune": "YVES", + "code_postal": "17340", + "coordonnees_gps": [ + 46.0392686841, + -1.03449244286 + ], + "libelle_d_acheminement": "YVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03449244286, + 46.0392686841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6537f302b824d7090ac9d054807e78b34b142ce", + "fields": { + "ligne_5": "LES BOUCHOLEURS", + "code_commune_insee": "17483", + "libelle_d_acheminement": "YVES", + "code_postal": "17340", + "nom_de_la_commune": "YVES", + "coordonnees_gps": [ + 46.0392686841, + -1.03449244286 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03449244286, + 46.0392686841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "429ae8f2aa1d829c599cad11e193219d75975d53", + "fields": { + "code_commune_insee": "18001", + "nom_de_la_commune": "ACHERES", + "code_postal": "18250", + "coordonnees_gps": [ + 47.2826534372, + 2.45877786434 + ], + "libelle_d_acheminement": "ACHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45877786434, + 47.2826534372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f585888641a5d53891963b2bc4b8a2c965feb7d", + "fields": { + "code_commune_insee": "18004", + "nom_de_la_commune": "ALLOGNY", + "code_postal": "18110", + "coordonnees_gps": [ + 47.2339866645, + 2.30681136882 + ], + "libelle_d_acheminement": "ALLOGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30681136882, + 47.2339866645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19f14a0f76889eb4fed6b4e0dde3c5f0abe273cd", + "fields": { + "code_commune_insee": "18007", + "nom_de_la_commune": "APREMONT SUR ALLIER", + "code_postal": "18150", + "coordonnees_gps": [ + 46.9110862876, + 3.01870489401 + ], + "libelle_d_acheminement": "APREMONT SUR ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01870489401, + 46.9110862876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "874ec9ad24244f94773c6165cece86987f1198c3", + "fields": { + "ligne_5": "FOSSE NOUVELLE", + "code_commune_insee": "18009", + "libelle_d_acheminement": "ARCOMPS", + "code_postal": "18200", + "nom_de_la_commune": "ARCOMPS", + "coordonnees_gps": [ + 46.6760407934, + 2.42650950674 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42650950674, + 46.6760407934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d86dc31835a3e3ca0d907d708a6ddcc2cc3dc52d", + "fields": { + "code_commune_insee": "18010", + "nom_de_la_commune": "ARDENAIS", + "code_postal": "18170", + "coordonnees_gps": [ + 46.6450269496, + 2.3518517619 + ], + "libelle_d_acheminement": "ARDENAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3518517619, + 46.6450269496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e189727a06a420d2d473e9ddc0cbf455301873a", + "fields": { + "code_commune_insee": "18012", + "nom_de_la_commune": "ARGENVIERES", + "code_postal": "18140", + "coordonnees_gps": [ + 47.1407710364, + 2.99229956887 + ], + "libelle_d_acheminement": "ARGENVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99229956887, + 47.1407710364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6000ced60c4eb7bfd8696fc8353021e1c53f1a52", + "fields": { + "code_commune_insee": "18017", + "nom_de_la_commune": "AUGY SUR AUBOIS", + "code_postal": "18600", + "coordonnees_gps": [ + 46.7829151486, + 2.85715092019 + ], + "libelle_d_acheminement": "AUGY SUR AUBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85715092019, + 46.7829151486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b712be88977105975835e2422881e418749d365", + "fields": { + "code_commune_insee": "18027", + "nom_de_la_commune": "BENGY SUR CRAON", + "code_postal": "18520", + "coordonnees_gps": [ + 46.9996554419, + 2.73230531635 + ], + "libelle_d_acheminement": "BENGY SUR CRAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73230531635, + 46.9996554419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fb1d5e1d8492ba8841cb5e86247f46a72ce9f53", + "fields": { + "code_commune_insee": "18028", + "nom_de_la_commune": "BERRY BOUY", + "code_postal": "18500", + "coordonnees_gps": [ + 47.1305841465, + 2.29645039352 + ], + "libelle_d_acheminement": "BERRY BOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29645039352, + 47.1305841465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deec0024ba1b9bef5698de0f17765a8a9602ecca", + "fields": { + "code_commune_insee": "18030", + "nom_de_la_commune": "BLANCAFORT", + "code_postal": "18410", + "coordonnees_gps": [ + 47.5351356226, + 2.54166761341 + ], + "libelle_d_acheminement": "BLANCAFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54166761341, + 47.5351356226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c3b28252614f86a658b944eb0a3a76020c1804e", + "fields": { + "code_commune_insee": "18034", + "nom_de_la_commune": "BOUZAIS", + "code_postal": "18200", + "coordonnees_gps": [ + 46.704910988, + 2.47008751664 + ], + "libelle_d_acheminement": "BOUZAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47008751664, + 46.704910988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73672297682536620d9cd338117a509e9d2a233d", + "fields": { + "code_commune_insee": "18037", + "nom_de_la_commune": "BRINON SUR SAULDRE", + "code_postal": "18410", + "coordonnees_gps": [ + 47.5685456102, + 2.2264194575 + ], + "libelle_d_acheminement": "BRINON SUR SAULDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2264194575, + 47.5685456102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7634c3f403d00f692b6ff3895c0bf903caf573e", + "fields": { + "code_commune_insee": "18040", + "nom_de_la_commune": "BUSSY", + "code_postal": "18130", + "coordonnees_gps": [ + 46.8966843974, + 2.62063037796 + ], + "libelle_d_acheminement": "BUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62063037796, + 46.8966843974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e13f9df231f78652d35e3501e9ed7aa64cea2e1f", + "fields": { + "code_commune_insee": "18043", + "nom_de_la_commune": "LA CELLE CONDE", + "code_postal": "18160", + "coordonnees_gps": [ + 46.7891133076, + 2.176621696 + ], + "libelle_d_acheminement": "LA CELLE CONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.176621696, + 46.7891133076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91be589a327dda34860ae6ea5af88907dbcce929", + "fields": { + "code_commune_insee": "18049", + "nom_de_la_commune": "LA CHAPELLE MONTLINARD", + "code_postal": "18140", + "coordonnees_gps": [ + 47.1777742856, + 2.98551825153 + ], + "libelle_d_acheminement": "LA CHAPELLE MONTLINARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98551825153, + 47.1777742856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de0e2d21622a90b91328e88bd387a6d1584eb5c4", + "fields": { + "code_commune_insee": "18053", + "nom_de_la_commune": "CHARENTONNAY", + "code_postal": "18140", + "coordonnees_gps": [ + 47.1420284173, + 2.86948989988 + ], + "libelle_d_acheminement": "CHARENTONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86948989988, + 47.1420284173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6d40dacfd8ce9b8f8dca74841d381ada8ac1dfb", + "fields": { + "code_commune_insee": "18056", + "nom_de_la_commune": "CHASSY", + "code_postal": "18800", + "coordonnees_gps": [ + 47.0436728432, + 2.83281439128 + ], + "libelle_d_acheminement": "CHASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83281439128, + 47.0436728432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "903221850598096efc6baf599d5f5a983968577d", + "fields": { + "code_commune_insee": "18057", + "nom_de_la_commune": "CHATEAUMEILLANT", + "code_postal": "18370", + "coordonnees_gps": [ + 46.5546814085, + 2.20738539036 + ], + "libelle_d_acheminement": "CHATEAUMEILLANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20738539036, + 46.5546814085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e0002a5e0c16b5cadf313df565d45fc4d256b01", + "fields": { + "code_commune_insee": "18058", + "nom_de_la_commune": "CHATEAUNEUF SUR CHER", + "code_postal": "18190", + "coordonnees_gps": [ + 46.8663441588, + 2.34034434393 + ], + "libelle_d_acheminement": "CHATEAUNEUF SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34034434393, + 46.8663441588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a14f3fa396cbccd257069f2b99772b387550835e", + "fields": { + "code_commune_insee": "18063", + "nom_de_la_commune": "CHAVANNES", + "code_postal": "18190", + "coordonnees_gps": [ + 46.8639364325, + 2.4016571402 + ], + "libelle_d_acheminement": "CHAVANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4016571402, + 46.8639364325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ccd48fc8eb96029f04d5cdae7a2738367229db0", + "fields": { + "code_commune_insee": "18064", + "nom_de_la_commune": "CHERY", + "code_postal": "18120", + "coordonnees_gps": [ + 47.1163043248, + 2.02648760477 + ], + "libelle_d_acheminement": "CHERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02648760477, + 47.1163043248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7887cd9a43f682c21948abd41d468969656a104a", + "fields": { + "code_commune_insee": "18067", + "nom_de_la_commune": "CLEMONT", + "code_postal": "18410", + "coordonnees_gps": [ + 47.562852584, + 2.33055121422 + ], + "libelle_d_acheminement": "CLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33055121422, + 47.562852584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "085263e6ddc14d462ee2fdd3f9f0e40fc2d338bf", + "fields": { + "code_commune_insee": "18070", + "nom_de_la_commune": "CONCRESSAULT", + "code_postal": "18260", + "coordonnees_gps": [ + 47.4914771223, + 2.56973230744 + ], + "libelle_d_acheminement": "CONCRESSAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56973230744, + 47.4914771223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "206253da6988b046d558c68d29f1968f951b5c9e", + "fields": { + "code_commune_insee": "18071", + "nom_de_la_commune": "CONTRES", + "code_postal": "18130", + "coordonnees_gps": [ + 46.8574614784, + 2.49599485968 + ], + "libelle_d_acheminement": "CONTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49599485968, + 46.8574614784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "814e55a2db45b4e4eb1015e74c1eaa9be17f8a32", + "fields": { + "code_commune_insee": "18076", + "nom_de_la_commune": "COUST", + "code_postal": "18210", + "coordonnees_gps": [ + 46.683985112, + 2.5990481685 + ], + "libelle_d_acheminement": "COUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5990481685, + 46.683985112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce83d324778b8944ac49cca3ad0ad254b19c18f0", + "fields": { + "code_commune_insee": "18081", + "nom_de_la_commune": "CROSSES", + "code_postal": "18340", + "coordonnees_gps": [ + 47.0079967689, + 2.5680059159 + ], + "libelle_d_acheminement": "CROSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5680059159, + 47.0079967689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "336077167b0407dc5e6efe2e5de53d264fc4a84d", + "fields": { + "code_commune_insee": "18084", + "nom_de_la_commune": "DAMPIERRE EN CROT", + "code_postal": "18260", + "coordonnees_gps": [ + 47.4559955079, + 2.57410394358 + ], + "libelle_d_acheminement": "DAMPIERRE EN CROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57410394358, + 47.4559955079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3223fd16c8a7c4108d491622afafb4666d1f0ce", + "fields": { + "code_commune_insee": "18085", + "nom_de_la_commune": "DAMPIERRE EN GRACAY", + "code_postal": "18310", + "coordonnees_gps": [ + 47.1833400465, + 1.94119668443 + ], + "libelle_d_acheminement": "DAMPIERRE EN GRACAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94119668443, + 47.1833400465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58a6185356937a0dc3f136815265cdaac4819446", + "fields": { + "code_commune_insee": "18091", + "nom_de_la_commune": "FARGES ALLICHAMPS", + "code_postal": "18200", + "coordonnees_gps": [ + 46.7578876589, + 2.41076588761 + ], + "libelle_d_acheminement": "FARGES ALLICHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41076588761, + 46.7578876589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3005f7f87c10e78c61f9bd3fe9082ba9f8065d4b", + "fields": { + "code_commune_insee": "18093", + "nom_de_la_commune": "FAVERDINES", + "code_postal": "18360", + "coordonnees_gps": [ + 46.6369138943, + 2.45989211577 + ], + "libelle_d_acheminement": "FAVERDINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45989211577, + 46.6369138943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "529279b1bf6e7c66ef21f059afa89f41c12f08d9", + "fields": { + "code_commune_insee": "18097", + "nom_de_la_commune": "FUSSY", + "code_postal": "18110", + "coordonnees_gps": [ + 47.1409616832, + 2.42597712218 + ], + "libelle_d_acheminement": "FUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42597712218, + 47.1409616832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4604f011c3ff6a9dd68ffe81799d18ad6b9c263d", + "fields": { + "code_commune_insee": "18099", + "nom_de_la_commune": "GARIGNY", + "code_postal": "18140", + "coordonnees_gps": [ + 47.0876281649, + 2.88287839693 + ], + "libelle_d_acheminement": "GARIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88287839693, + 47.0876281649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f91ad6552d5b9822daa92da6068fd751687b0bec", + "fields": { + "code_commune_insee": "18107", + "nom_de_la_commune": "LA GROUTTE", + "code_postal": "18200", + "coordonnees_gps": [ + 46.689480572, + 2.5127413479 + ], + "libelle_d_acheminement": "LA GROUTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5127413479, + 46.689480572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd7990cbfbe05f52e31f100e76a49bca056f97bf", + "fields": { + "code_commune_insee": "18109", + "nom_de_la_commune": "HENRICHEMONT", + "code_postal": "18250", + "coordonnees_gps": [ + 47.2982614047, + 2.53601083137 + ], + "libelle_d_acheminement": "HENRICHEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53601083137, + 47.2982614047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dda984d140b4eeae15fd0a917793c91b254b5717", + "fields": { + "code_commune_insee": "18115", + "nom_de_la_commune": "IVOY LE PRE", + "code_postal": "18380", + "coordonnees_gps": [ + 47.355231934, + 2.5102170858 + ], + "libelle_d_acheminement": "IVOY LE PRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5102170858, + 47.355231934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5621826fd18be98f9a7a97af3e287ec83fa8da6f", + "fields": { + "code_commune_insee": "18116", + "nom_de_la_commune": "JALOGNES", + "code_postal": "18300", + "coordonnees_gps": [ + 47.2290743962, + 2.77827164434 + ], + "libelle_d_acheminement": "JALOGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77827164434, + 47.2290743962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9d5fa17ed68522efa118202eb0a465821628379", + "fields": { + "code_commune_insee": "18118", + "nom_de_la_commune": "JOUET SUR L AUBOIS", + "code_postal": "18320", + "coordonnees_gps": [ + 47.0454813599, + 3.00331831093 + ], + "libelle_d_acheminement": "JOUET SUR L AUBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00331831093, + 47.0454813599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a33744d1329e0ec1d7e01c470e755495a9ed7817", + "fields": { + "code_commune_insee": "18131", + "nom_de_la_commune": "LUGNY BOURBONNAIS", + "code_postal": "18350", + "coordonnees_gps": [ + 46.9350965146, + 2.70318159119 + ], + "libelle_d_acheminement": "LUGNY BOURBONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70318159119, + 46.9350965146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93847b59b4e2e272e232ba16a21b661519239a31", + "fields": { + "code_commune_insee": "18133", + "nom_de_la_commune": "LUNERY", + "code_postal": "18400", + "coordonnees_gps": [ + 46.9383928285, + 2.25765806502 + ], + "libelle_d_acheminement": "LUNERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25765806502, + 46.9383928285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62ed881f7503e4f49e19a6be8944478706fd756c", + "fields": { + "code_commune_insee": "18135", + "nom_de_la_commune": "MAISONNAIS", + "code_postal": "18170", + "coordonnees_gps": [ + 46.6480807843, + 2.21996762101 + ], + "libelle_d_acheminement": "MAISONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21996762101, + 46.6480807843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9652cdb8a3c8cac60edbffdffb1fc79f7d50dfc4", + "fields": { + "code_commune_insee": "18138", + "nom_de_la_commune": "MARMAGNE", + "code_postal": "18500", + "coordonnees_gps": [ + 47.0892553874, + 2.27075651411 + ], + "libelle_d_acheminement": "MARMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27075651411, + 47.0892553874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c861114a9cdca87b5899575b94d54a4bfe661317", + "fields": { + "code_commune_insee": "18140", + "nom_de_la_commune": "MASSAY", + "code_postal": "18120", + "coordonnees_gps": [ + 47.1549090518, + 1.98560116565 + ], + "libelle_d_acheminement": "MASSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98560116565, + 47.1549090518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62b8691bc6cab044f399066400c5af0c815310d5", + "fields": { + "code_commune_insee": "18141", + "nom_de_la_commune": "MEHUN SUR YEVRE", + "code_postal": "18500", + "coordonnees_gps": [ + 47.1356637883, + 2.22043045347 + ], + "libelle_d_acheminement": "MEHUN SUR YEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22043045347, + 47.1356637883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d129c8b4f9b01e69990edfba9a4851f63174af1", + "fields": { + "code_commune_insee": "18142", + "nom_de_la_commune": "MEILLANT", + "code_postal": "18200", + "coordonnees_gps": [ + 46.7812952674, + 2.5067896851 + ], + "libelle_d_acheminement": "MEILLANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5067896851, + 46.7812952674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8919dc914448805f3047dbd5a39137fce1d90009", + "fields": { + "code_commune_insee": "18152", + "nom_de_la_commune": "MONTLOUIS", + "code_postal": "18160", + "coordonnees_gps": [ + 46.8069612124, + 2.2474231379 + ], + "libelle_d_acheminement": "MONTLOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2474231379, + 46.8069612124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afdbe7437ca6771c56f0674ac671e5425d25ace9", + "fields": { + "code_commune_insee": "18163", + "nom_de_la_commune": "NEUVY DEUX CLOCHERS", + "code_postal": "18250", + "coordonnees_gps": [ + 47.2805836865, + 2.68919945423 + ], + "libelle_d_acheminement": "NEUVY DEUX CLOCHERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68919945423, + 47.2805836865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ba1eea3d73a364ec7aa7cb4e116b970ce25bb4", + "fields": { + "code_commune_insee": "18166", + "nom_de_la_commune": "NOHANT EN GOUT", + "code_postal": "18390", + "coordonnees_gps": [ + 47.0899990268, + 2.58066243646 + ], + "libelle_d_acheminement": "NOHANT EN GOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58066243646, + 47.0899990268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2c0957402edc9ac1718e78e860536f70cbd4a8a", + "fields": { + "code_commune_insee": "18170", + "nom_de_la_commune": "OIZON", + "code_postal": "18700", + "coordonnees_gps": [ + 47.4531780432, + 2.51260180785 + ], + "libelle_d_acheminement": "OIZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51260180785, + 47.4531780432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14bf6557c4e7a78e8f1918228ff840c14e9f5275", + "fields": { + "code_commune_insee": "18176", + "nom_de_la_commune": "PARASSY", + "code_postal": "18220", + "coordonnees_gps": [ + 47.2421364963, + 2.53814745107 + ], + "libelle_d_acheminement": "PARASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53814745107, + 47.2421364963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63390891ab651c916cd6966d5daeebe1beebfbb2", + "fields": { + "code_commune_insee": "18177", + "nom_de_la_commune": "PARNAY", + "code_postal": "18130", + "coordonnees_gps": [ + 46.8513776331, + 2.55606472439 + ], + "libelle_d_acheminement": "PARNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55606472439, + 46.8513776331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "233cdb9ab861573b044fd84a7f83a743bccaf93b", + "fields": { + "code_commune_insee": "18184", + "nom_de_la_commune": "PRECY", + "code_postal": "18140", + "coordonnees_gps": [ + 47.0904100974, + 2.92907066727 + ], + "libelle_d_acheminement": "PRECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92907066727, + 47.0904100974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0226c49d2dde46e23e8a7f08f86efa33b744014", + "fields": { + "code_commune_insee": "18189", + "nom_de_la_commune": "QUANTILLY", + "code_postal": "18110", + "coordonnees_gps": [ + 47.22453003, + 2.4453965974 + ], + "libelle_d_acheminement": "QUANTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4453965974, + 47.22453003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96b3ce3a37c4db12b57234699a193a0c8dece05a", + "fields": { + "code_commune_insee": "18190", + "nom_de_la_commune": "QUINCY", + "code_postal": "18120", + "coordonnees_gps": [ + 47.1301375038, + 2.15620533706 + ], + "libelle_d_acheminement": "QUINCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15620533706, + 47.1301375038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "729c43acb7e273d0c0ca77fc19fcf31aaba29f28", + "fields": { + "code_commune_insee": "18192", + "nom_de_la_commune": "REIGNY", + "code_postal": "18270", + "coordonnees_gps": [ + 46.5900399077, + 2.34226885465 + ], + "libelle_d_acheminement": "REIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34226885465, + 46.5900399077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "944002800618329ce5fcdf818a9892dd375c0e6b", + "fields": { + "code_commune_insee": "18194", + "nom_de_la_commune": "RIANS", + "code_postal": "18220", + "coordonnees_gps": [ + 47.184837825, + 2.6197112281 + ], + "libelle_d_acheminement": "RIANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6197112281, + 47.184837825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17e0f5faacd10014cfc5232b3fe7e5ab2e6ef3e9", + "fields": { + "code_commune_insee": "18197", + "nom_de_la_commune": "ST AMAND MONTROND", + "code_postal": "18200", + "coordonnees_gps": [ + 46.726171431, + 2.52013626979 + ], + "libelle_d_acheminement": "ST AMAND MONTROND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52013626979, + 46.726171431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1159c8113c27a2a697235ffc13a18fd38be3a482", + "fields": { + "code_commune_insee": "18199", + "nom_de_la_commune": "ST BAUDEL", + "code_postal": "18160", + "coordonnees_gps": [ + 46.8510186735, + 2.20484359931 + ], + "libelle_d_acheminement": "ST BAUDEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20484359931, + 46.8510186735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba7456c1b5190a159dca3c1507df7db477f26c8", + "fields": { + "code_commune_insee": "18205", + "nom_de_la_commune": "ST DOULCHARD", + "code_postal": "18230", + "coordonnees_gps": [ + 47.1109300599, + 2.35703710189 + ], + "libelle_d_acheminement": "ST DOULCHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35703710189, + 47.1109300599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e893f3d8bbfad33012c3b1e08f3b227b97dc602", + "fields": { + "code_commune_insee": "18208", + "nom_de_la_commune": "STE GEMME EN SANCERROIS", + "code_postal": "18240", + "coordonnees_gps": [ + 47.4003683857, + 2.82072264021 + ], + "libelle_d_acheminement": "STE GEMME EN SANCERROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82072264021, + 47.4003683857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a15e5e3bfe06bc3d3707982107cff62996b3f177", + "fields": { + "code_commune_insee": "18221", + "nom_de_la_commune": "ST LOUP DES CHAUMES", + "code_postal": "18190", + "coordonnees_gps": [ + 46.8257663512, + 2.38238392364 + ], + "libelle_d_acheminement": "ST LOUP DES CHAUMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38238392364, + 46.8257663512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f44b9de10fae08f60b890e365a40d2e643e961d", + "fields": { + "code_commune_insee": "18228", + "nom_de_la_commune": "ST OUTRILLE", + "code_postal": "18310", + "coordonnees_gps": [ + 47.1395164801, + 1.81121677425 + ], + "libelle_d_acheminement": "ST OUTRILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81121677425, + 47.1395164801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a82bd3f894b6b71398e9631f6babff9c0349ccb9", + "fields": { + "code_commune_insee": "18237", + "nom_de_la_commune": "STE THORETTE", + "code_postal": "18500", + "coordonnees_gps": [ + 47.0779345031, + 2.2069818556 + ], + "libelle_d_acheminement": "STE THORETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2069818556, + 47.0779345031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33b4d7935bf1893e22279cb3cb69908d8d25624f", + "fields": { + "code_commune_insee": "18243", + "nom_de_la_commune": "SANTRANGES", + "code_postal": "18240", + "coordonnees_gps": [ + 47.5028938123, + 2.75871821581 + ], + "libelle_d_acheminement": "SANTRANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75871821581, + 47.5028938123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "254ffd54445f2167e1d099a9643dde844bab1298", + "fields": { + "code_commune_insee": "18246", + "nom_de_la_commune": "SAVIGNY EN SANCERRE", + "code_postal": "18240", + "coordonnees_gps": [ + 47.4437813454, + 2.7982040526 + ], + "libelle_d_acheminement": "SAVIGNY EN SANCERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7982040526, + 47.4437813454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a66a0a035567f6bbddc5a5b50ea1cbdb47d8c83", + "fields": { + "code_commune_insee": "18247", + "nom_de_la_commune": "SAVIGNY EN SEPTAINE", + "code_postal": "18390", + "coordonnees_gps": [ + 47.0454926015, + 2.56818918732 + ], + "libelle_d_acheminement": "SAVIGNY EN SEPTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56818918732, + 47.0454926015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42bef4bb87bf19e94651544037a1e5bbe2d2c35c", + "fields": { + "code_commune_insee": "18254", + "nom_de_la_commune": "SOYE EN SEPTAINE", + "code_postal": "18340", + "coordonnees_gps": [ + 47.0306784477, + 2.48782583308 + ], + "libelle_d_acheminement": "SOYE EN SEPTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48782583308, + 47.0306784477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f7650771bdd74853f8e9827800935f85ef4dc38", + "fields": { + "code_commune_insee": "18259", + "nom_de_la_commune": "SURY ES BOIS", + "code_postal": "18260", + "coordonnees_gps": [ + 47.4600582347, + 2.71117919113 + ], + "libelle_d_acheminement": "SURY ES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71117919113, + 47.4600582347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e7cbd62ddc5f256dce7725dba766d0e0a3e1cca", + "fields": { + "code_commune_insee": "18260", + "nom_de_la_commune": "TENDRON", + "code_postal": "18350", + "coordonnees_gps": [ + 46.9797256032, + 2.82004963594 + ], + "libelle_d_acheminement": "TENDRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82004963594, + 46.9797256032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fc928ce25e103096b6c5efadb750fab48030f06", + "fields": { + "code_commune_insee": "18273", + "nom_de_la_commune": "VENESMES", + "code_postal": "18190", + "coordonnees_gps": [ + 46.8470958613, + 2.28228826634 + ], + "libelle_d_acheminement": "VENESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28228826634, + 46.8470958613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10627e19a6a3bdd4c0a07bd27e4296eb1ab94bd8", + "fields": { + "code_commune_insee": "18276", + "nom_de_la_commune": "VERNAIS", + "code_postal": "18210", + "coordonnees_gps": [ + 46.7670157945, + 2.70878494845 + ], + "libelle_d_acheminement": "VERNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70878494845, + 46.7670157945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2235a5c57acd7694bbe5edb8197b94a12d55a19", + "fields": { + "code_commune_insee": "18277", + "nom_de_la_commune": "VERNEUIL", + "code_postal": "18210", + "coordonnees_gps": [ + 46.8209400192, + 2.60143793073 + ], + "libelle_d_acheminement": "VERNEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60143793073, + 46.8209400192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f53731e57e10bc5bea6dc662d2ec993ab5d4fff5", + "fields": { + "code_commune_insee": "18283", + "nom_de_la_commune": "VILLECELIN", + "code_postal": "18160", + "coordonnees_gps": [ + 46.8208130106, + 2.19519297741 + ], + "libelle_d_acheminement": "VILLECELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19519297741, + 46.8208130106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1333dc1025ef62803422ee1eb1e5e0e10d98a9e4", + "fields": { + "code_commune_insee": "18285", + "nom_de_la_commune": "VILLENEUVE SUR CHER", + "code_postal": "18400", + "coordonnees_gps": [ + 47.0279195347, + 2.223362071 + ], + "libelle_d_acheminement": "VILLENEUVE SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.223362071, + 47.0279195347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec5094ec1365964da48cb0e782cb3c59a7da177e", + "fields": { + "code_commune_insee": "18287", + "nom_de_la_commune": "VINON", + "code_postal": "18300", + "coordonnees_gps": [ + 47.2824813545, + 2.83212165304 + ], + "libelle_d_acheminement": "VINON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83212165304, + 47.2824813545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "671c349fbe1f4e6c7d0d4ba033f2abbe2e30eecf", + "fields": { + "code_commune_insee": "18288", + "nom_de_la_commune": "VORLY", + "code_postal": "18340", + "coordonnees_gps": [ + 46.9399216057, + 2.4731491323 + ], + "libelle_d_acheminement": "VORLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4731491323, + 46.9399216057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f84c3d87b62a125d2bba2d710dbea782d60bfba6", + "fields": { + "code_commune_insee": "19005", + "nom_de_la_commune": "ALLASSAC", + "code_postal": "19240", + "coordonnees_gps": [ + 45.2556220149, + 1.46918061552 + ], + "libelle_d_acheminement": "ALLASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46918061552, + 45.2556220149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f7adc34f3124f1cccdff9d504e7132f246d2549", + "fields": { + "code_commune_insee": "19006", + "nom_de_la_commune": "ALLEYRAT", + "code_postal": "19200", + "coordonnees_gps": [ + 45.5636726085, + 2.21836208439 + ], + "libelle_d_acheminement": "ALLEYRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21836208439, + 45.5636726085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdd7a8284c8ffbfda9d7ffb4e8a5b0f73709de65", + "fields": { + "code_commune_insee": "19013", + "nom_de_la_commune": "AUBAZINES", + "code_postal": "19190", + "coordonnees_gps": [ + 45.1857945286, + 1.68640722366 + ], + "libelle_d_acheminement": "AUBAZINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68640722366, + 45.1857945286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1159a88bfc22f5d7d04b8ad12eb6a1bb5c0f89de", + "fields": { + "code_commune_insee": "19016", + "nom_de_la_commune": "BAR", + "code_postal": "19800", + "coordonnees_gps": [ + 45.3421541864, + 1.81469639235 + ], + "libelle_d_acheminement": "BAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81469639235, + 45.3421541864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab153519054117466e14abef830b65d03166a98e", + "fields": { + "code_commune_insee": "19030", + "nom_de_la_commune": "BRIGNAC LA PLAINE", + "code_postal": "19310", + "coordonnees_gps": [ + 45.1769208427, + 1.33285501672 + ], + "libelle_d_acheminement": "BRIGNAC LA PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33285501672, + 45.1769208427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6849954a14fcf6b21ddafdfacf397dc15c3f1b5", + "fields": { + "code_commune_insee": "19037", + "nom_de_la_commune": "CHAMBOULIVE", + "code_postal": "19450", + "coordonnees_gps": [ + 45.4270783097, + 1.70936524222 + ], + "libelle_d_acheminement": "CHAMBOULIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70936524222, + 45.4270783097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de2314a61d9886a11576e9c6fe3ecee2c19b430a", + "fields": { + "code_commune_insee": "19038", + "nom_de_la_commune": "CHAMEYRAT", + "code_postal": "19330", + "coordonnees_gps": [ + 45.2478873538, + 1.70626007972 + ], + "libelle_d_acheminement": "CHAMEYRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70626007972, + 45.2478873538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0f90cf3439642758becd5f07860361e0e0919a5", + "fields": { + "code_commune_insee": "19044", + "nom_de_la_commune": "LA CHAPELLE AUX SAINTS", + "code_postal": "19120", + "coordonnees_gps": [ + 44.9831181613, + 1.71908951558 + ], + "libelle_d_acheminement": "LA CHAPELLE AUX SAINTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71908951558, + 44.9831181613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14435fefbc5d0ed498e55e4cd6db5d948094f634", + "fields": { + "code_commune_insee": "19049", + "nom_de_la_commune": "CHASTEAUX", + "code_postal": "19600", + "coordonnees_gps": [ + 45.0828146271, + 1.46748876327 + ], + "libelle_d_acheminement": "CHASTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46748876327, + 45.0828146271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2015106af419a71ebf595a03eebdc0f69f6114c7", + "fields": { + "code_commune_insee": "19061", + "nom_de_la_commune": "CORNIL", + "code_postal": "19150", + "coordonnees_gps": [ + 45.2137162961, + 1.69660747239 + ], + "libelle_d_acheminement": "CORNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69660747239, + 45.2137162961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd6b49f99030f27a9516441ae55fc8ee209b897a", + "fields": { + "code_commune_insee": "19063", + "nom_de_la_commune": "COSNAC", + "code_postal": "19360", + "coordonnees_gps": [ + 45.1307416236, + 1.58601909494 + ], + "libelle_d_acheminement": "COSNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58601909494, + 45.1307416236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aae18ca567c37e492b08fa15edc68c910a2345bd", + "fields": { + "code_commune_insee": "19068", + "nom_de_la_commune": "DAMPNIAT", + "code_postal": "19360", + "coordonnees_gps": [ + 45.1638501631, + 1.63821621038 + ], + "libelle_d_acheminement": "DAMPNIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63821621038, + 45.1638501631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eb9f68f647fc9484a6a2d819e54f4052d9ad3bb", + "fields": { + "code_commune_insee": "19071", + "nom_de_la_commune": "DAVIGNAC", + "code_postal": "19250", + "coordonnees_gps": [ + 45.4911899589, + 2.07587737304 + ], + "libelle_d_acheminement": "DAVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07587737304, + 45.4911899589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ce9e7ef6a0a57247e1385569e01e2f20f0010cd", + "fields": { + "code_commune_insee": "19075", + "nom_de_la_commune": "ESPAGNAC", + "code_postal": "19150", + "coordonnees_gps": [ + 45.2408229294, + 1.89882225318 + ], + "libelle_d_acheminement": "ESPAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89882225318, + 45.2408229294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c492431c833c46b21aa2f6d2dd7efd4137a1470", + "fields": { + "code_commune_insee": "19083", + "nom_de_la_commune": "FEYT", + "code_postal": "19340", + "coordonnees_gps": [ + 45.6844902907, + 2.47902463461 + ], + "libelle_d_acheminement": "FEYT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47902463461, + 45.6844902907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "281c764f1c98fbd8bc9142030e6c3bbf70399f98", + "fields": { + "code_commune_insee": "19088", + "nom_de_la_commune": "GRANDSAIGNE", + "code_postal": "19300", + "coordonnees_gps": [ + 45.487529142, + 1.93017010413 + ], + "libelle_d_acheminement": "GRANDSAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93017010413, + 45.487529142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "961a90bc67649b6f671789752ca559ce05989f1d", + "fields": { + "code_commune_insee": "19089", + "nom_de_la_commune": "GROS CHASTANG", + "code_postal": "19320", + "coordonnees_gps": [ + 45.21473166, + 2.00326104775 + ], + "libelle_d_acheminement": "GROS CHASTANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00326104775, + 45.21473166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b95745e7ad2a889cb7d7a2d49b7eaf7cb559415c", + "fields": { + "code_commune_insee": "19090", + "nom_de_la_commune": "GUMOND", + "code_postal": "19320", + "coordonnees_gps": [ + 45.2198203568, + 1.96223391046 + ], + "libelle_d_acheminement": "GUMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96223391046, + 45.2198203568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5612a1796105fa8acede84badbd0a0bd13be3360", + "fields": { + "code_commune_insee": "19105", + "nom_de_la_commune": "LANTEUIL", + "code_postal": "19190", + "coordonnees_gps": [ + 45.1177049487, + 1.64002369199 + ], + "libelle_d_acheminement": "LANTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64002369199, + 45.1177049487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d9eb1f8c3955d0194675fc00c0953f905b744fd", + "fields": { + "code_commune_insee": "19106", + "nom_de_la_commune": "LAPLEAU", + "code_postal": "19550", + "coordonnees_gps": [ + 45.2972681387, + 2.15927130911 + ], + "libelle_d_acheminement": "LAPLEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15927130911, + 45.2972681387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e772d0029c4d8478cd58db07a976647ecf8d678", + "fields": { + "code_commune_insee": "19107", + "nom_de_la_commune": "LARCHE", + "code_postal": "19600", + "coordonnees_gps": [ + 45.1137863095, + 1.41998991347 + ], + "libelle_d_acheminement": "LARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41998991347, + 45.1137863095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39fa5beb6576af00b63c63944a905c25a228fe28", + "fields": { + "code_commune_insee": "19108", + "nom_de_la_commune": "LAROCHE PRES FEYT", + "code_postal": "19340", + "coordonnees_gps": [ + 45.7066868401, + 2.4992746244 + ], + "libelle_d_acheminement": "LAROCHE PRES FEYT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4992746244, + 45.7066868401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55096b07aa0dada015402bbb24b4813347678190", + "fields": { + "code_commune_insee": "19110", + "nom_de_la_commune": "LATRONCHE", + "code_postal": "19160", + "coordonnees_gps": [ + 45.3080469107, + 2.2400154033 + ], + "libelle_d_acheminement": "LATRONCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2400154033, + 45.3080469107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a73b5124f23ea9a9dc2c3ea5075109663ebe1e12", + "fields": { + "code_commune_insee": "19111", + "nom_de_la_commune": "LAVAL SUR LUZEGE", + "code_postal": "19550", + "coordonnees_gps": [ + 45.2541335786, + 2.14246404167 + ], + "libelle_d_acheminement": "LAVAL SUR LUZEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14246404167, + 45.2541335786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "617efeed827fb6d487e6d98c0478eef0772cdcc6", + "fields": { + "code_commune_insee": "19112", + "nom_de_la_commune": "LESTARDS", + "code_postal": "19170", + "coordonnees_gps": [ + 45.5412768254, + 1.86439774185 + ], + "libelle_d_acheminement": "LESTARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86439774185, + 45.5412768254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07bdd20cdea6a960e4dbb8a0d758bc577a233e4a", + "fields": { + "code_commune_insee": "19114", + "nom_de_la_commune": "LIGNAREIX", + "code_postal": "19200", + "coordonnees_gps": [ + 45.6137197457, + 2.30195936647 + ], + "libelle_d_acheminement": "LIGNAREIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30195936647, + 45.6137197457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b74352d12e9316aa6f1a549088e9f42f67722186", + "fields": { + "code_commune_insee": "19118", + "nom_de_la_commune": "LE LONZAC", + "code_postal": "19470", + "coordonnees_gps": [ + 45.4699663224, + 1.73115503451 + ], + "libelle_d_acheminement": "LE LONZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73115503451, + 45.4699663224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1650fa1e0058fdb650c57dbe7aa2c3c11db4427", + "fields": { + "code_commune_insee": "19120", + "nom_de_la_commune": "LOUIGNAC", + "code_postal": "19310", + "coordonnees_gps": [ + 45.2171199764, + 1.27073739721 + ], + "libelle_d_acheminement": "LOUIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27073739721, + 45.2171199764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b92bad8140b6cef4a033a6ff2fa1015635479e3e", + "fields": { + "ligne_5": "VENARSAL", + "code_commune_insee": "19123", + "libelle_d_acheminement": "MALEMORT", + "code_postal": "19360", + "nom_de_la_commune": "MALEMORT", + "coordonnees_gps": [ + 45.176099789, + 1.58386372231 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58386372231, + 45.176099789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "435ac619f8e9e2d7293b3f7b8275198f2aa4fcc3", + "fields": { + "code_commune_insee": "19124", + "nom_de_la_commune": "MANSAC", + "code_postal": "19520", + "coordonnees_gps": [ + 45.1603327019, + 1.38223903365 + ], + "libelle_d_acheminement": "MANSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38223903365, + 45.1603327019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26137ad19f317f096102440bfd0788ea78d53b13", + "fields": { + "code_commune_insee": "19130", + "nom_de_la_commune": "MAUSSAC", + "code_postal": "19250", + "coordonnees_gps": [ + 45.4704291606, + 2.12678268861 + ], + "libelle_d_acheminement": "MAUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12678268861, + 45.4704291606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a7904cc9bdb0e4b3cc0ae3ed0aa44af033b9b13", + "fields": { + "code_commune_insee": "19140", + "nom_de_la_commune": "MONCEAUX SUR DORDOGNE", + "code_postal": "19400", + "coordonnees_gps": [ + 45.07174218, + 1.88908252368 + ], + "libelle_d_acheminement": "MONCEAUX SUR DORDOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88908252368, + 45.07174218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f8807b28fa8bd5dcfc997d9b47c46e8180cf857", + "fields": { + "code_commune_insee": "19142", + "nom_de_la_commune": "MONESTIER PORT DIEU", + "code_postal": "19110", + "coordonnees_gps": [ + 45.496503482, + 2.48981642145 + ], + "libelle_d_acheminement": "MONESTIER PORT DIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48981642145, + 45.496503482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd9983681b03b6a9d1a5fc9bf12af04924b02cf8", + "fields": { + "code_commune_insee": "19147", + "nom_de_la_commune": "NESPOULS", + "code_postal": "19600", + "coordonnees_gps": [ + 45.0563342157, + 1.50252648148 + ], + "libelle_d_acheminement": "NESPOULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50252648148, + 45.0563342157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "680508b8e9c5b55e05cd7170536347aadf3d5593", + "fields": { + "code_commune_insee": "19149", + "nom_de_la_commune": "NEUVILLE", + "code_postal": "19380", + "coordonnees_gps": [ + 45.1095698093, + 1.84454335261 + ], + "libelle_d_acheminement": "NEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84454335261, + 45.1095698093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "887e5a5dc313b8ec02fe89c06f5444b1e012c375", + "fields": { + "code_commune_insee": "19152", + "nom_de_la_commune": "NONARDS", + "code_postal": "19120", + "coordonnees_gps": [ + 45.0199014556, + 1.80919700303 + ], + "libelle_d_acheminement": "NONARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80919700303, + 45.0199014556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "080e26b450451c892549af6f223af8f24e52d39e", + "fields": { + "code_commune_insee": "19153", + "nom_de_la_commune": "OBJAT", + "code_postal": "19130", + "coordonnees_gps": [ + 45.2632333605, + 1.41287237115 + ], + "libelle_d_acheminement": "OBJAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41287237115, + 45.2632333605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca66f9c91fb290d240154cb06b78bc001ffd9f52", + "fields": { + "code_commune_insee": "19157", + "nom_de_la_commune": "PALISSE", + "code_postal": "19160", + "coordonnees_gps": [ + 45.4339391784, + 2.20721338065 + ], + "libelle_d_acheminement": "PALISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20721338065, + 45.4339391784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4257ba509c0ed9ec7ef3795f069e117d67db953", + "fields": { + "code_commune_insee": "19158", + "nom_de_la_commune": "PANDRIGNES", + "code_postal": "19150", + "coordonnees_gps": [ + 45.2212791943, + 1.85894195894 + ], + "libelle_d_acheminement": "PANDRIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85894195894, + 45.2212791943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fd9b6bda5fac0be96ae4088defa7cdedd68b399", + "fields": { + "code_commune_insee": "19162", + "nom_de_la_commune": "PERPEZAC LE NOIR", + "code_postal": "19410", + "coordonnees_gps": [ + 45.3370896874, + 1.55340576295 + ], + "libelle_d_acheminement": "PERPEZAC LE NOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55340576295, + 45.3370896874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "131996b4fc1a681f1c6caf21ebc17508fa067924", + "fields": { + "code_commune_insee": "19164", + "nom_de_la_commune": "PEYRELEVADE", + "code_postal": "19290", + "coordonnees_gps": [ + 45.7101794638, + 2.03734286848 + ], + "libelle_d_acheminement": "PEYRELEVADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03734286848, + 45.7101794638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d43927a772078eec7e6e4acb13bb38103be1a559", + "fields": { + "code_commune_insee": "19166", + "nom_de_la_commune": "PIERREFITTE", + "code_postal": "19450", + "coordonnees_gps": [ + 45.4278645906, + 1.65028178088 + ], + "libelle_d_acheminement": "PIERREFITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65028178088, + 45.4278645906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeb4a37bbbdf4d8b42c79a9a5cf48702c33090f5", + "fields": { + "code_commune_insee": "19168", + "nom_de_la_commune": "PRADINES", + "code_postal": "19170", + "coordonnees_gps": [ + 45.5113262378, + 1.90969127344 + ], + "libelle_d_acheminement": "PRADINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90969127344, + 45.5113262378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e87be0d24a3f36c24668de44431290e9f6fb59ae", + "fields": { + "code_commune_insee": "19174", + "nom_de_la_commune": "LA ROCHE CANILLAC", + "code_postal": "19320", + "coordonnees_gps": [ + 45.1986182258, + 1.96353579663 + ], + "libelle_d_acheminement": "LA ROCHE CANILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96353579663, + 45.1986182258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fad3981a121821dac46ea9b928d93884ea5a8304", + "fields": { + "code_commune_insee": "19178", + "nom_de_la_commune": "SADROC", + "code_postal": "19270", + "coordonnees_gps": [ + 45.274045175, + 1.54972416906 + ], + "libelle_d_acheminement": "SADROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54972416906, + 45.274045175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1e60e650edb87b64131104229f9359934da19d2", + "fields": { + "code_commune_insee": "19187", + "nom_de_la_commune": "ST BONNET LA RIVIERE", + "code_postal": "19130", + "coordonnees_gps": [ + 45.2931005483, + 1.35936979218 + ], + "libelle_d_acheminement": "ST BONNET LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35936979218, + 45.2931005483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80a0439f225a3d5735155180dcc8b50ae6c933a3", + "fields": { + "code_commune_insee": "19206", + "nom_de_la_commune": "ST GERMAIN LAVOLPS", + "code_postal": "19290", + "coordonnees_gps": [ + 45.6074727471, + 2.2137903995 + ], + "libelle_d_acheminement": "ST GERMAIN LAVOLPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2137903995, + 45.6074727471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf6395b774af41ea65046dd18c9acf16fcbc2441", + "fields": { + "code_commune_insee": "19207", + "nom_de_la_commune": "ST GERMAIN LES VERGNES", + "code_postal": "19330", + "coordonnees_gps": [ + 45.2671975982, + 1.62099868397 + ], + "libelle_d_acheminement": "ST GERMAIN LES VERGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62099868397, + 45.2671975982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1c1422232b68f7e5b583226038ac4ee5bbcda4f", + "fields": { + "code_commune_insee": "19217", + "nom_de_la_commune": "ST JULIEN MAUMONT", + "code_postal": "19500", + "coordonnees_gps": [ + 45.034476008, + 1.70931422691 + ], + "libelle_d_acheminement": "ST JULIEN MAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70931422691, + 45.034476008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3927eaf08bd977da43ab9b8b0299c873cc7b6282", + "fields": { + "code_commune_insee": "19222", + "nom_de_la_commune": "ST MARTIN LA MEANNE", + "code_postal": "19320", + "coordonnees_gps": [ + 45.1711303234, + 1.99473483674 + ], + "libelle_d_acheminement": "ST MARTIN LA MEANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99473483674, + 45.1711303234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19b09224592c2d137aa1e60736159b4f683d8a06", + "fields": { + "code_commune_insee": "19226", + "nom_de_la_commune": "ST MERD LES OUSSINES", + "code_postal": "19170", + "coordonnees_gps": [ + 45.6228763461, + 2.03219704649 + ], + "libelle_d_acheminement": "ST MERD LES OUSSINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03219704649, + 45.6228763461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5e4333774cb2bf234d95c69fa0048090ddd2cca", + "fields": { + "code_commune_insee": "19227", + "nom_de_la_commune": "ST MEXANT", + "code_postal": "19330", + "coordonnees_gps": [ + 45.2895303019, + 1.67629634388 + ], + "libelle_d_acheminement": "ST MEXANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67629634388, + 45.2895303019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41d9ae7da9e512723088210d45bbcd5ebed0d59c", + "fields": { + "code_commune_insee": "19228", + "nom_de_la_commune": "ST PANTALEON DE LAPLEAU", + "code_postal": "19160", + "coordonnees_gps": [ + 45.32011422, + 2.20178736947 + ], + "libelle_d_acheminement": "ST PANTALEON DE LAPLEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20178736947, + 45.32011422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9265475133ad7da7c1d5483a76db6e4a6061d232", + "fields": { + "code_commune_insee": "19232", + "nom_de_la_commune": "ST PARDOUX LE NEUF", + "code_postal": "19200", + "coordonnees_gps": [ + 45.6127807921, + 2.33140885442 + ], + "libelle_d_acheminement": "ST PARDOUX LE NEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33140885442, + 45.6127807921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dba1754e767a140cd5af927699ee624303cf10e2", + "fields": { + "code_commune_insee": "19240", + "nom_de_la_commune": "ST SALVADOUR", + "code_postal": "19700", + "coordonnees_gps": [ + 45.3906265922, + 1.76634717247 + ], + "libelle_d_acheminement": "ST SALVADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76634717247, + 45.3906265922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa447e8b054aaa996911ed0813261146b5367002", + "fields": { + "code_commune_insee": "19241", + "nom_de_la_commune": "ST SETIERS", + "code_postal": "19290", + "coordonnees_gps": [ + 45.696753232, + 2.1173595487 + ], + "libelle_d_acheminement": "ST SETIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1173595487, + 45.696753232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59a5f4ec36cdff0a7f383d669f1a4d090f927505", + "fields": { + "code_commune_insee": "19247", + "nom_de_la_commune": "ST VICTOUR", + "code_postal": "19200", + "coordonnees_gps": [ + 45.4654766822, + 2.38592172613 + ], + "libelle_d_acheminement": "ST VICTOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38592172613, + 45.4654766822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e76fea1eedcbcb1c2df5e48f0aa094fdcd688ff", + "fields": { + "code_commune_insee": "19249", + "nom_de_la_commune": "ST YRIEIX LE DEJALAT", + "code_postal": "19300", + "coordonnees_gps": [ + 45.4549609024, + 1.96986165302 + ], + "libelle_d_acheminement": "ST YRIEIX LE DEJALAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96986165302, + 45.4549609024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef69bc991d9cb309386a8bf957efce91915377b3", + "fields": { + "code_commune_insee": "19251", + "nom_de_la_commune": "SARRAN", + "code_postal": "19800", + "coordonnees_gps": [ + 45.4121016966, + 1.93125887963 + ], + "libelle_d_acheminement": "SARRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93125887963, + 45.4121016966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15cfd07a1380f026c4ad1d3f00c72e7f54ed1f4e", + "fields": { + "ligne_5": "ST JULIEN PRES BORT", + "code_commune_insee": "19252", + "libelle_d_acheminement": "SARROUX ST JULIEN", + "code_postal": "19110", + "nom_de_la_commune": "SARROUX ST JULIEN", + "coordonnees_gps": [ + 45.4307878428, + 2.46791610907 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46791610907, + 45.4307878428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69f96cbf37b9b733f8bf73e88256c1a9c710a1cc", + "fields": { + "code_commune_insee": "19254", + "nom_de_la_commune": "SEGUR LE CHATEAU", + "code_postal": "19230", + "coordonnees_gps": [ + 45.427657429, + 1.30428297034 + ], + "libelle_d_acheminement": "SEGUR LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30428297034, + 45.427657429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc5cef4a1b7577d34522ab8a0b3e9c213a64fca2", + "fields": { + "code_commune_insee": "19263", + "nom_de_la_commune": "SOUDEILLES", + "code_postal": "19300", + "coordonnees_gps": [ + 45.4460190027, + 2.06358162972 + ], + "libelle_d_acheminement": "SOUDEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06358162972, + 45.4460190027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c316520e2bf0e14fbfa53a109ed3030827b0da1", + "fields": { + "code_commune_insee": "19268", + "nom_de_la_commune": "TOY VIAM", + "code_postal": "19170", + "coordonnees_gps": [ + 45.6453715634, + 1.93016871499 + ], + "libelle_d_acheminement": "TOY VIAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93016871499, + 45.6453715634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc8f7f36a3e561b5903e7afc6a298895372b9248", + "fields": { + "ligne_5": "ST DEZERY", + "code_commune_insee": "19275", + "libelle_d_acheminement": "USSEL", + "code_postal": "19200", + "nom_de_la_commune": "USSEL", + "coordonnees_gps": [ + 45.5502290763, + 2.30449906488 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30449906488, + 45.5502290763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0f5b71898a6cd557fd7b4131a57f8984c09636d", + "fields": { + "code_commune_insee": "19284", + "nom_de_la_commune": "VIAM", + "code_postal": "19170", + "coordonnees_gps": [ + 45.6182241437, + 1.88700559018 + ], + "libelle_d_acheminement": "VIAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88700559018, + 45.6182241437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7527fded4d1c991614a0ccbf4f3619efb4ae983", + "fields": { + "code_commune_insee": "21002", + "nom_de_la_commune": "AGEY", + "code_postal": "21410", + "coordonnees_gps": [ + 47.2873713877, + 4.76268467218 + ], + "libelle_d_acheminement": "AGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76268467218, + 47.2873713877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3501d6f5cee756166aba4c72a250787b1c8ddb5e", + "fields": { + "code_commune_insee": "21004", + "nom_de_la_commune": "AIGNAY LE DUC", + "code_postal": "21510", + "coordonnees_gps": [ + 47.6717538581, + 4.7507180753 + ], + "libelle_d_acheminement": "AIGNAY LE DUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7507180753, + 47.6717538581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3230a6dd4ff3128d1086a15c970d5cbcaa7ba1e0", + "fields": { + "code_commune_insee": "21009", + "nom_de_la_commune": "ALLEREY", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1905039427, + 4.42062511101 + ], + "libelle_d_acheminement": "ALLEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42062511101, + 47.1905039427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2b8cf0ef4221abd627f9a0ba4412b585ed0e61a", + "fields": { + "code_commune_insee": "21025", + "nom_de_la_commune": "ARRANS", + "code_postal": "21500", + "coordonnees_gps": [ + 47.6899641108, + 4.3280716946 + ], + "libelle_d_acheminement": "ARRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3280716946, + 47.6899641108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09cf34811560054099d3ff1f48b87d44fbb59859", + "fields": { + "code_commune_insee": "21036", + "nom_de_la_commune": "AUXANT", + "code_postal": "21360", + "coordonnees_gps": [ + 47.1298867764, + 4.61921408774 + ], + "libelle_d_acheminement": "AUXANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61921408774, + 47.1298867764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7113564ae5e30ea35328b147f2e5ee290b4ef5fd", + "fields": { + "code_commune_insee": "21045", + "nom_de_la_commune": "BARBIREY SUR OUCHE", + "code_postal": "21410", + "coordonnees_gps": [ + 47.2520386403, + 4.74025320877 + ], + "libelle_d_acheminement": "BARBIREY SUR OUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74025320877, + 47.2520386403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0fa6dbef4a61233287d9597fbe088b69f1839da", + "fields": { + "code_commune_insee": "21046", + "nom_de_la_commune": "BARD LE REGULIER", + "code_postal": "21430", + "coordonnees_gps": [ + 47.1461439865, + 4.3014564581 + ], + "libelle_d_acheminement": "BARD LE REGULIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3014564581, + 47.1461439865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c44322eb3cfe6e9cb21d60b790f976a2489e79df", + "fields": { + "code_commune_insee": "21054", + "nom_de_la_commune": "BEAUNE", + "code_postal": "21200", + "coordonnees_gps": [ + 47.0255189366, + 4.83767985985 + ], + "libelle_d_acheminement": "BEAUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83767985985, + 47.0255189366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa13e4dff485b903cf572d699460acc8d315c2ed", + "fields": { + "code_commune_insee": "21060", + "nom_de_la_commune": "BELLENEUVE", + "code_postal": "21310", + "coordonnees_gps": [ + 47.3575073832, + 5.27408508272 + ], + "libelle_d_acheminement": "BELLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27408508272, + 47.3575073832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fc3c43a463d4b59ff8cc8b1f0b81d5e02fbd3d8", + "fields": { + "code_commune_insee": "21062", + "nom_de_la_commune": "BELLENOT SOUS POUILLY", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2869221987, + 4.54627615974 + ], + "libelle_d_acheminement": "BELLENOT SOUS POUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54627615974, + 47.2869221987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db780e46ec4cf44e7d4af95a1268dc41bff41498", + "fields": { + "code_commune_insee": "21064", + "nom_de_la_commune": "BENOISEY", + "code_postal": "21500", + "coordonnees_gps": [ + 47.5769533201, + 4.39518979239 + ], + "libelle_d_acheminement": "BENOISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39518979239, + 47.5769533201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0242468d586f6a254b11b9de8c3611b01e11e001", + "fields": { + "code_commune_insee": "21069", + "nom_de_la_commune": "BEURIZOT", + "code_postal": "21350", + "coordonnees_gps": [ + 47.3555109503, + 4.49612543597 + ], + "libelle_d_acheminement": "BEURIZOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49612543597, + 47.3555109503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d42a0a25c1b35bc1f5e4c2c986e475b48f213da", + "fields": { + "code_commune_insee": "21072", + "nom_de_la_commune": "BEZOUOTTE", + "code_postal": "21310", + "coordonnees_gps": [ + 47.3838896873, + 5.3354189969 + ], + "libelle_d_acheminement": "BEZOUOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3354189969, + 47.3838896873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c262864cc189681e5e27e0daa909fe0e98caa945", + "fields": { + "code_commune_insee": "21077", + "nom_de_la_commune": "BISSEY LA COTE", + "code_postal": "21520", + "coordonnees_gps": [ + 47.9115041699, + 4.70686086144 + ], + "libelle_d_acheminement": "BISSEY LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70686086144, + 47.9115041699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4011c5991408678f79609b3fb3a7f50e902ff8ba", + "fields": { + "code_commune_insee": "21086", + "nom_de_la_commune": "BLIGNY LES BEAUNE", + "code_postal": "21200", + "coordonnees_gps": [ + 46.9826471816, + 4.82973563081 + ], + "libelle_d_acheminement": "BLIGNY LES BEAUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82973563081, + 46.9826471816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "febce8a4639771fbe3efb46fcb481195fc79cfa4", + "fields": { + "code_commune_insee": "21100", + "nom_de_la_commune": "BRAIN", + "code_postal": "21350", + "coordonnees_gps": [ + 47.4630889217, + 4.50508352891 + ], + "libelle_d_acheminement": "BRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50508352891, + 47.4630889217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1432b00ab02e186d103142ef044bab05f4d8076b", + "fields": { + "code_commune_insee": "21103", + "nom_de_la_commune": "BRAZEY EN PLAINE", + "code_postal": "21470", + "coordonnees_gps": [ + 47.1384086462, + 5.21195206146 + ], + "libelle_d_acheminement": "BRAZEY EN PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21195206146, + 47.1384086462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67317104878ff0abd33ddbd1bcaf45c4f537a214", + "fields": { + "code_commune_insee": "21104", + "nom_de_la_commune": "BREMUR ET VAUROIS", + "code_postal": "21400", + "coordonnees_gps": [ + 47.7295472183, + 4.60931120174 + ], + "libelle_d_acheminement": "BREMUR ET VAUROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60931120174, + 47.7295472183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fcfa7fcad68c4a5eb655a24b8c24e89b1f12026", + "fields": { + "code_commune_insee": "21106", + "nom_de_la_commune": "BRETENIERE", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2358783125, + 5.10342361177 + ], + "libelle_d_acheminement": "BRETENIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10342361177, + 47.2358783125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d2b63b3b6714caff6e20334ca9cbd8fab853323", + "fields": { + "code_commune_insee": "21119", + "nom_de_la_commune": "BUSSIERES", + "code_postal": "21580", + "coordonnees_gps": [ + 47.6606253629, + 4.9610123004 + ], + "libelle_d_acheminement": "BUSSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9610123004, + 47.6606253629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a9d70022d956f1324f9e8f5e2425c29d5070e69", + "fields": { + "code_commune_insee": "21125", + "nom_de_la_commune": "CERILLY", + "code_postal": "21330", + "coordonnees_gps": [ + 47.8557543819, + 4.48870489274 + ], + "libelle_d_acheminement": "CERILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48870489274, + 47.8557543819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a10dce72737ad4dcf7e3dd83578a00ad0c1d1893", + "fields": { + "code_commune_insee": "21128", + "nom_de_la_commune": "CHAILLY SUR ARMANCON", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2731849062, + 4.47732423155 + ], + "libelle_d_acheminement": "CHAILLY SUR ARMANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47732423155, + 47.2731849062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "953a5ed277cc617d0eedbf230ca5af5573693ff4", + "fields": { + "code_commune_insee": "21132", + "nom_de_la_commune": "CHAMBOEUF", + "code_postal": "21220", + "coordonnees_gps": [ + 47.227568941, + 4.90257555999 + ], + "libelle_d_acheminement": "CHAMBOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90257555999, + 47.227568941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd9f1323c45215aefd8d2555a5c39ae6c63f4f1d", + "fields": { + "code_commune_insee": "21139", + "nom_de_la_commune": "CHAMPEAU EN MORVAN", + "code_postal": "21210", + "coordonnees_gps": [ + 47.2729958688, + 4.15587880467 + ], + "libelle_d_acheminement": "CHAMPEAU EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15587880467, + 47.2729958688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37bbec7f8e4dff33d087d2581e89b7aded024d23", + "fields": { + "code_commune_insee": "21142", + "nom_de_la_commune": "CHANCEAUX", + "code_postal": "21440", + "coordonnees_gps": [ + 47.5252827866, + 4.7394570164 + ], + "libelle_d_acheminement": "CHANCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7394570164, + 47.5252827866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f423ce48b87fc054daada65819aa53651f97d8f", + "fields": { + "code_commune_insee": "21143", + "nom_de_la_commune": "CHANNAY", + "code_postal": "21330", + "coordonnees_gps": [ + 47.8910741862, + 4.31948318267 + ], + "libelle_d_acheminement": "CHANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31948318267, + 47.8910741862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5cc0723a44a5772e1139a8c26139fdf5aa236b2", + "fields": { + "code_commune_insee": "21155", + "nom_de_la_commune": "CHAUDENAY LA VILLE", + "code_postal": "21360", + "coordonnees_gps": [ + 47.1621875521, + 4.64388033261 + ], + "libelle_d_acheminement": "CHAUDENAY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64388033261, + 47.1621875521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "550aed3ada30097e7ad6680c17c6617c3526df64", + "fields": { + "code_commune_insee": "21161", + "nom_de_la_commune": "CHAUMONT LE BOIS", + "code_postal": "21400", + "coordonnees_gps": [ + 47.9345088372, + 4.59278668831 + ], + "libelle_d_acheminement": "CHAUMONT LE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59278668831, + 47.9345088372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83786044c7b77546c36fc629f2b0443ede6e9a70", + "fields": { + "code_commune_insee": "21167", + "nom_de_la_commune": "CHEUGE", + "code_postal": "21310", + "coordonnees_gps": [ + 47.3898873125, + 5.38120926401 + ], + "libelle_d_acheminement": "CHEUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38120926401, + 47.3898873125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "647871f667fad3c51d032eb8bb43edd37398694b", + "fields": { + "code_commune_insee": "21168", + "nom_de_la_commune": "CHEVANNAY", + "code_postal": "21540", + "coordonnees_gps": [ + 47.3905655203, + 4.65394687054 + ], + "libelle_d_acheminement": "CHEVANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65394687054, + 47.3905655203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d1856e13de1b59c134860078f732543ece16eb4", + "fields": { + "code_commune_insee": "21169", + "nom_de_la_commune": "CHEVANNES", + "code_postal": "21220", + "coordonnees_gps": [ + 47.1587967474, + 4.83357896263 + ], + "libelle_d_acheminement": "CHEVANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83357896263, + 47.1587967474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3e9eb97800e30be6293e0019ef76c720e4dd76e", + "fields": { + "code_commune_insee": "21176", + "nom_de_la_commune": "CIVRY EN MONTAGNE", + "code_postal": "21320", + "coordonnees_gps": [ + 47.289478828, + 4.60603583394 + ], + "libelle_d_acheminement": "CIVRY EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60603583394, + 47.289478828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43322c5ed0cd34e16a67281ffd3348e6161018a9", + "fields": { + "code_commune_insee": "21177", + "nom_de_la_commune": "CLAMEREY", + "code_postal": "21390", + "coordonnees_gps": [ + 47.3870569397, + 4.42237212486 + ], + "libelle_d_acheminement": "CLAMEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42237212486, + 47.3870569397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48c1d1428f44e9a4697d60564cfda2b7c1edebbc", + "fields": { + "code_commune_insee": "21180", + "nom_de_la_commune": "CLERY", + "code_postal": "21270", + "coordonnees_gps": [ + 47.2954771926, + 5.50214108598 + ], + "libelle_d_acheminement": "CLERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50214108598, + 47.2954771926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4e806daa57f3a4c59e95eaf63fa0b6f2b6bc400", + "fields": { + "code_commune_insee": "21182", + "nom_de_la_commune": "COLLONGES LES BEVY", + "code_postal": "21220", + "coordonnees_gps": [ + 47.1715437386, + 4.83755928779 + ], + "libelle_d_acheminement": "COLLONGES LES BEVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83755928779, + 47.1715437386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cc4c25c7c88b274a280c9a458878815870becfa", + "fields": { + "ligne_5": "CORMOT LE GRAND", + "code_commune_insee": "21195", + "libelle_d_acheminement": "CORMOT VAUCHIGNON", + "code_postal": "21340", + "nom_de_la_commune": "CORMOT VAUCHIGNON", + "coordonnees_gps": [ + 46.9758355763, + 4.64101278682 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64101278682, + 46.9758355763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbea1a40ea9dc1df7c83faf1b0756a5da0681960", + "fields": { + "code_commune_insee": "21204", + "nom_de_la_commune": "COURCELLES LES MONTBARD", + "code_postal": "21500", + "coordonnees_gps": [ + 47.5920415206, + 4.39246271634 + ], + "libelle_d_acheminement": "COURCELLES LES MONTBARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39246271634, + 47.5920415206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3147db1309cdf6dc27e7f2e551cf73db62b0c29", + "fields": { + "code_commune_insee": "21205", + "nom_de_la_commune": "COURCELLES LES SEMUR", + "code_postal": "21140", + "coordonnees_gps": [ + 47.4487720046, + 4.29278256716 + ], + "libelle_d_acheminement": "COURCELLES LES SEMUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29278256716, + 47.4487720046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f1e21543086c0d783f50a0e8a345e3d474be5b1", + "fields": { + "code_commune_insee": "21210", + "nom_de_la_commune": "CREANCEY", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2528641586, + 4.59321134854 + ], + "libelle_d_acheminement": "CREANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59321134854, + 47.2528641586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37b0a826214b03512fa5b75ddcfbac9ffd34d616", + "fields": { + "code_commune_insee": "21215", + "nom_de_la_commune": "CUISEREY", + "code_postal": "21310", + "coordonnees_gps": [ + 47.370648619, + 5.31774907926 + ], + "libelle_d_acheminement": "CUISEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31774907926, + 47.370648619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b311f3e206c89ead6b98b21318b0c8e16c5d9b07", + "fields": { + "code_commune_insee": "21220", + "nom_de_la_commune": "CUSSEY LES FORGES", + "code_postal": "21580", + "coordonnees_gps": [ + 47.6376201743, + 5.0838274211 + ], + "libelle_d_acheminement": "CUSSEY LES FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0838274211, + 47.6376201743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7cf7ac45c6bcd0fde32af290137609a9329f90a", + "fields": { + "code_commune_insee": "21233", + "nom_de_la_commune": "DRAMBON", + "code_postal": "21270", + "coordonnees_gps": [ + 47.3340095649, + 5.37849298375 + ], + "libelle_d_acheminement": "DRAMBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37849298375, + 47.3340095649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cd9f6755b94a591588f062df2869933baaaf940", + "fields": { + "code_commune_insee": "21236", + "nom_de_la_commune": "EBATY", + "code_postal": "21190", + "coordonnees_gps": [ + 46.9293787687, + 4.78013604846 + ], + "libelle_d_acheminement": "EBATY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78013604846, + 46.9293787687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d7c79d74bf06111fd533930f04b6b4f8a5d5689", + "fields": { + "code_commune_insee": "21247", + "nom_de_la_commune": "EPOISSES", + "code_postal": "21460", + "coordonnees_gps": [ + 47.5033289277, + 4.17120505436 + ], + "libelle_d_acheminement": "EPOISSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17120505436, + 47.5033289277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f593c23a79a16d3daf143f364713a8017722550f", + "fields": { + "code_commune_insee": "21249", + "nom_de_la_commune": "ESBARRES", + "code_postal": "21170", + "coordonnees_gps": [ + 47.0910694543, + 5.19824663928 + ], + "libelle_d_acheminement": "ESBARRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19824663928, + 47.0910694543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcf16877861cd1c056d764a6afa6abcb9008a3e0", + "fields": { + "code_commune_insee": "21251", + "nom_de_la_commune": "ESSEY", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2063506091, + 4.52226390582 + ], + "libelle_d_acheminement": "ESSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52226390582, + 47.2063506091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be069665b420790ce6a8f271e7bdb7dbfb3753e7", + "fields": { + "code_commune_insee": "21254", + "nom_de_la_commune": "L ETANG VERGY", + "code_postal": "21220", + "coordonnees_gps": [ + 47.1826265714, + 4.87602500249 + ], + "libelle_d_acheminement": "L ETANG VERGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87602500249, + 47.1826265714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "163d0a8d3327baf8c8fc2a5e1da4ed2c9f9bb404", + "fields": { + "code_commune_insee": "21255", + "nom_de_la_commune": "ETAULES", + "code_postal": "21121", + "coordonnees_gps": [ + 47.4105824508, + 4.95035757108 + ], + "libelle_d_acheminement": "ETAULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95035757108, + 47.4105824508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7b6b390dc8eeed35c7b6a23c798d706cb5c4e04", + "fields": { + "code_commune_insee": "21260", + "nom_de_la_commune": "FAIN LES MOUTIERS", + "code_postal": "21500", + "coordonnees_gps": [ + 47.5841078834, + 4.21121321982 + ], + "libelle_d_acheminement": "FAIN LES MOUTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21121321982, + 47.5841078834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "318c3d8d95e3cb2b4d9f5dfaa6f06c512000b863", + "fields": { + "code_commune_insee": "21261", + "nom_de_la_commune": "FAUVERNEY", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2625030215, + 5.15013738098 + ], + "libelle_d_acheminement": "FAUVERNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15013738098, + 47.2625030215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d9db8bd3ba69a4f882c1a5baabac497f34d0774", + "fields": { + "code_commune_insee": "21267", + "nom_de_la_commune": "FLAGEY ECHEZEAUX", + "code_postal": "21640", + "coordonnees_gps": [ + 47.1594712834, + 4.98251892542 + ], + "libelle_d_acheminement": "FLAGEY ECHEZEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98251892542, + 47.1594712834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92b0f062b11a8632176a8c48107903843d372295", + "fields": { + "code_commune_insee": "21270", + "nom_de_la_commune": "FLAVIGNEROT", + "code_postal": "21160", + "coordonnees_gps": [ + 47.2778682909, + 4.91791708848 + ], + "libelle_d_acheminement": "FLAVIGNEROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91791708848, + 47.2778682909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63e458793a9d1eeaf15fc7e5ca5e8d05e0756407", + "fields": { + "code_commune_insee": "21274", + "nom_de_la_commune": "FOISSY", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1251182221, + 4.55154801206 + ], + "libelle_d_acheminement": "FOISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55154801206, + 47.1251182221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80b86b9a1e252e896c880858448aa33bfed01c0a", + "fields": { + "code_commune_insee": "21282", + "nom_de_la_commune": "FORLEANS", + "code_postal": "21460", + "coordonnees_gps": [ + 47.4712138957, + 4.20681713671 + ], + "libelle_d_acheminement": "FORLEANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20681713671, + 47.4712138957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b6e42356317f0710d375405945bdd5cf1523c43", + "fields": { + "code_commune_insee": "21288", + "nom_de_la_commune": "FROLOIS", + "code_postal": "21150", + "coordonnees_gps": [ + 47.5293434145, + 4.6477491814 + ], + "libelle_d_acheminement": "FROLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6477491814, + 47.5293434145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "baadc4dcc8b7e667d5ebb6e16bfbcdf77cc0ed5d", + "fields": { + "code_commune_insee": "21290", + "nom_de_la_commune": "GEMEAUX", + "code_postal": "21120", + "coordonnees_gps": [ + 47.4772510476, + 5.14006797437 + ], + "libelle_d_acheminement": "GEMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14006797437, + 47.4772510476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88d69d7ce6e3ea02d11cc86aee82bca62f9c147a", + "fields": { + "code_commune_insee": "21293", + "nom_de_la_commune": "GERGUEIL", + "code_postal": "21410", + "coordonnees_gps": [ + 47.2376944982, + 4.81254550284 + ], + "libelle_d_acheminement": "GERGUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81254550284, + 47.2376944982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "049f6dcd661721f20779ffd4f8bb8772b67f70bc", + "fields": { + "code_commune_insee": "21295", + "nom_de_la_commune": "GEVREY CHAMBERTIN", + "code_postal": "21220", + "coordonnees_gps": [ + 47.2200822946, + 4.98301612333 + ], + "libelle_d_acheminement": "GEVREY CHAMBERTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98301612333, + 47.2200822946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a76088d4be9c08f8efba36f9e540b8163556995", + "fields": { + "code_commune_insee": "21297", + "nom_de_la_commune": "GILLY LES CITEAUX", + "code_postal": "21640", + "coordonnees_gps": [ + 47.1779786537, + 4.99751060917 + ], + "libelle_d_acheminement": "GILLY LES CITEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99751060917, + 47.1779786537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "871987c4ca04f0fc9a759d497c2293f264013147", + "fields": { + "ligne_5": "NEUVELLE LES GRANCEY", + "code_commune_insee": "21304", + "libelle_d_acheminement": "GRANCEY LE CHATEAU", + "code_postal": "21580", + "nom_de_la_commune": "GRANCEY LE CHATEAU NEUVELLE", + "coordonnees_gps": [ + 47.6736710294, + 5.02411190173 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02411190173, + 47.6736710294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b992b9b9b44c567ee9ff52590adbed821d01c2c5", + "fields": { + "code_commune_insee": "21305", + "nom_de_la_commune": "GRANCEY SUR OURCE", + "code_postal": "21570", + "coordonnees_gps": [ + 47.9996727259, + 4.57740862706 + ], + "libelle_d_acheminement": "GRANCEY SUR OURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57740862706, + 47.9996727259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c283503c7e9947bbf53126a0ef6a143896d9f9d7", + "fields": { + "code_commune_insee": "21321", + "nom_de_la_commune": "JAILLY LES MOULINS", + "code_postal": "21150", + "coordonnees_gps": [ + 47.4626863743, + 4.59400738183 + ], + "libelle_d_acheminement": "JAILLY LES MOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59400738183, + 47.4626863743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f8617ad85a9a01fd12e2ecb285807affeb895af", + "fields": { + "code_commune_insee": "21323", + "nom_de_la_commune": "JANCIGNY", + "code_postal": "21310", + "coordonnees_gps": [ + 47.3834784994, + 5.42112913608 + ], + "libelle_d_acheminement": "JANCIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42112913608, + 47.3834784994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79b58885d0b8a81a601065502002348c6bbd45aa", + "fields": { + "code_commune_insee": "21325", + "nom_de_la_commune": "JOUEY", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1581126666, + 4.4375513171 + ], + "libelle_d_acheminement": "JOUEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4375513171, + 47.1581126666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "886b78d1337750352f0f10a6dff458ba7ce50743", + "fields": { + "code_commune_insee": "21334", + "nom_de_la_commune": "LACANCHE", + "code_postal": "21230", + "coordonnees_gps": [ + 47.0750677068, + 4.55599388043 + ], + "libelle_d_acheminement": "LACANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55599388043, + 47.0750677068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "265efa81954eb4046cac9c51c6be113a9395499d", + "fields": { + "code_commune_insee": "21345", + "nom_de_la_commune": "LERY", + "code_postal": "21440", + "coordonnees_gps": [ + 47.5563340151, + 4.84629917449 + ], + "libelle_d_acheminement": "LERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84629917449, + 47.5563340151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1210eae4a88c975a3ec0a0e3dba9380d45d3c72", + "fields": { + "code_commune_insee": "21348", + "nom_de_la_commune": "LICEY SUR VINGEANNE", + "code_postal": "21610", + "coordonnees_gps": [ + 47.4868270493, + 5.37313028131 + ], + "libelle_d_acheminement": "LICEY SUR VINGEANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37313028131, + 47.4868270493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfffee3c0953ed24415dae9e424693e8704f2e40", + "fields": { + "ligne_5": "LONGEAULT", + "code_commune_insee": "21352", + "libelle_d_acheminement": "LONGEAULT PLUVAULT", + "code_postal": "21110", + "nom_de_la_commune": "LONGEAULT PLUVAULT", + "coordonnees_gps": [ + 47.2217035106, + 5.25044095624 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25044095624, + 47.2217035106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a75fb6c88dc033d97ee3ba1e752ce5eba2deea73", + "fields": { + "ligne_5": "PLUVAULT", + "code_commune_insee": "21352", + "libelle_d_acheminement": "LONGEAULT PLUVAULT", + "code_postal": "21110", + "nom_de_la_commune": "LONGEAULT PLUVAULT", + "coordonnees_gps": [ + 47.2217035106, + 5.25044095624 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25044095624, + 47.2217035106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a65eb3b04da1ca2b0a8b914cbcbb089dd2b8a228", + "fields": { + "code_commune_insee": "21354", + "nom_de_la_commune": "LONGECOURT LES CULETRE", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1604658111, + 4.55141809098 + ], + "libelle_d_acheminement": "LONGECOURT LES CULETRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55141809098, + 47.1604658111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d2168fac0a13abf4d7dd90113e141fe2ece0c4e", + "fields": { + "code_commune_insee": "21361", + "nom_de_la_commune": "LUX", + "code_postal": "21120", + "coordonnees_gps": [ + 47.4883380646, + 5.21763359421 + ], + "libelle_d_acheminement": "LUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21763359421, + 47.4883380646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dcd1ac2b1c4e45f275eeda684dfb5864953c452", + "fields": { + "code_commune_insee": "21363", + "nom_de_la_commune": "MAGNIEN", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1094556345, + 4.43331214138 + ], + "libelle_d_acheminement": "MAGNIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43331214138, + 47.1094556345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6a06705eac4e0c79a07ebf9bad2e7490d9adcb2", + "fields": { + "code_commune_insee": "21364", + "nom_de_la_commune": "MAGNY LAMBERT", + "code_postal": "21450", + "coordonnees_gps": [ + 47.6788317802, + 4.58658221612 + ], + "libelle_d_acheminement": "MAGNY LAMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58658221612, + 47.6788317802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a2b07e8562c8fabf869c031434a0bc85c34682b", + "fields": { + "code_commune_insee": "21365", + "nom_de_la_commune": "MAGNY LA VILLE", + "code_postal": "21140", + "coordonnees_gps": [ + 47.479838166, + 4.42998686533 + ], + "libelle_d_acheminement": "MAGNY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42998686533, + 47.479838166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b05379e90e2722503ab911c387ade25e5717917", + "fields": { + "code_commune_insee": "21371", + "nom_de_la_commune": "LES MAILLYS", + "code_postal": "21130", + "coordonnees_gps": [ + 47.1456968654, + 5.32935525121 + ], + "libelle_d_acheminement": "LES MAILLYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32935525121, + 47.1456968654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40155253727bc41b1e653159517943c059670020", + "fields": { + "code_commune_insee": "21373", + "nom_de_la_commune": "MALAIN", + "code_postal": "21410", + "coordonnees_gps": [ + 47.3212468007, + 4.79374280109 + ], + "libelle_d_acheminement": "MALAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79374280109, + 47.3212468007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2d0d2dea2dfd035967c71df14bae8573127b493", + "fields": { + "code_commune_insee": "21374", + "nom_de_la_commune": "MALIGNY", + "code_postal": "21230", + "coordonnees_gps": [ + 47.0845064806, + 4.50527523907 + ], + "libelle_d_acheminement": "MALIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50527523907, + 47.0845064806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2a6bdf040494d85372fc7d71f1345ed42dcbca4", + "fields": { + "code_commune_insee": "21377", + "nom_de_la_commune": "MARCELLOIS", + "code_postal": "21350", + "coordonnees_gps": [ + 47.3488163449, + 4.61557807923 + ], + "libelle_d_acheminement": "MARCELLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61557807923, + 47.3488163449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9c09c41ca9a866e7e027d0f9ea91d18bb349a36", + "fields": { + "code_commune_insee": "21378", + "nom_de_la_commune": "MARCENAY", + "code_postal": "21330", + "coordonnees_gps": [ + 47.8611145117, + 4.40461993622 + ], + "libelle_d_acheminement": "MARCENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40461993622, + 47.8611145117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "340a9e58b04ff7a3ea564da1d04124525d9f59ac", + "fields": { + "code_commune_insee": "21381", + "nom_de_la_commune": "MARCILLY ET DRACY", + "code_postal": "21350", + "coordonnees_gps": [ + 47.4053843394, + 4.49597262896 + ], + "libelle_d_acheminement": "MARCILLY ET DRACY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49597262896, + 47.4053843394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59fca0b9fc27339b95eb44a76df788bc5f4efcb6", + "fields": { + "code_commune_insee": "21384", + "nom_de_la_commune": "MAREY LES FUSSEY", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1216169151, + 4.86215236749 + ], + "libelle_d_acheminement": "MAREY LES FUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86215236749, + 47.1216169151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "effffcba15c144c5a040bbd8edc2e4d5ed6612b3", + "fields": { + "code_commune_insee": "21387", + "nom_de_la_commune": "MARIGNY LES REULLEE", + "code_postal": "21200", + "coordonnees_gps": [ + 47.0078863586, + 4.95818948974 + ], + "libelle_d_acheminement": "MARIGNY LES REULLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95818948974, + 47.0078863586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e24709253d31fac09bcdd046ae0a0219fb41526", + "fields": { + "code_commune_insee": "21388", + "nom_de_la_commune": "MARLIENS", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2164536426, + 5.17800484677 + ], + "libelle_d_acheminement": "MARLIENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17800484677, + 47.2164536426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "507f6b11d62284b2cf664b6c63ba842df9030dcb", + "fields": { + "code_commune_insee": "21390", + "nom_de_la_commune": "MARSANNAY LA COTE", + "code_postal": "21160", + "coordonnees_gps": [ + 47.2790059419, + 4.98450898516 + ], + "libelle_d_acheminement": "MARSANNAY LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98450898516, + 47.2790059419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab02f16b8adf5704070dc4dff3ae102f67d0b47e", + "fields": { + "code_commune_insee": "21399", + "nom_de_la_commune": "MEILLY SUR ROUVRES", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2060045019, + 4.55254034085 + ], + "libelle_d_acheminement": "MEILLY SUR ROUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55254034085, + 47.2060045019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de5a8f5c16c4eab5fbf2c533ea61c944e9d3940c", + "fields": { + "code_commune_insee": "21400", + "nom_de_la_commune": "LE MEIX", + "code_postal": "21580", + "coordonnees_gps": [ + 47.594167838, + 4.94307607169 + ], + "libelle_d_acheminement": "LE MEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94307607169, + 47.594167838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "716fc55c2d8cc1b16245526539ee6a41c2116e25", + "fields": { + "code_commune_insee": "21402", + "nom_de_la_commune": "MENESBLE", + "code_postal": "21290", + "coordonnees_gps": [ + 47.778606574, + 4.90206528914 + ], + "libelle_d_acheminement": "MENESBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90206528914, + 47.778606574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83377a54a891d3cbf02ffad22671f2a369894b1f", + "fields": { + "code_commune_insee": "21403", + "nom_de_la_commune": "MENESSAIRE", + "code_postal": "21430", + "coordonnees_gps": [ + 47.1335338458, + 4.15144155728 + ], + "libelle_d_acheminement": "MENESSAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15144155728, + 47.1335338458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5881e969e13c345b6b1484c2f744ee0f007f4178", + "fields": { + "code_commune_insee": "21404", + "nom_de_la_commune": "MENETREUX LE PITOIS", + "code_postal": "21150", + "coordonnees_gps": [ + 47.559690561, + 4.45956971302 + ], + "libelle_d_acheminement": "MENETREUX LE PITOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45956971302, + 47.559690561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bb430ae444e8a85cedc7f6dd766c59a0f1fc9c2", + "fields": { + "code_commune_insee": "21410", + "nom_de_la_commune": "MEULSON", + "code_postal": "21510", + "coordonnees_gps": [ + 47.6921345522, + 4.70218066483 + ], + "libelle_d_acheminement": "MEULSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70218066483, + 47.6921345522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfe454a6abbbe165cfc2378e3f47cf840b8e4ac9", + "fields": { + "code_commune_insee": "21414", + "nom_de_la_commune": "MIMEURE", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1523999496, + 4.49524544815 + ], + "libelle_d_acheminement": "MIMEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49524544815, + 47.1523999496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c667634faa9f6ecd1093e372e807911a53e92d9", + "fields": { + "code_commune_insee": "21419", + "nom_de_la_commune": "MOLESME", + "code_postal": "21330", + "coordonnees_gps": [ + 47.94702901, + 4.38133026701 + ], + "libelle_d_acheminement": "MOLESME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38133026701, + 47.94702901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bd3c537498244a87d032d33be9c565ca9089560", + "fields": { + "code_commune_insee": "21421", + "nom_de_la_commune": "MOLOY", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5393714062, + 4.92171403878 + ], + "libelle_d_acheminement": "MOLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92171403878, + 47.5393714062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e970dddeeb2c91f4e9005b222915033d69ecd12", + "fields": { + "code_commune_insee": "21423", + "nom_de_la_commune": "MONTAGNY LES BEAUNE", + "code_postal": "21200", + "coordonnees_gps": [ + 46.9849200277, + 4.8539733561 + ], + "libelle_d_acheminement": "MONTAGNY LES BEAUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8539733561, + 46.9849200277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "793890a2077dc585d9d2fdfc4cf546396ddb051c", + "fields": { + "code_commune_insee": "21432", + "nom_de_la_commune": "MONTIGNY SUR AUBE", + "code_postal": "21520", + "coordonnees_gps": [ + 47.9541936296, + 4.75595683457 + ], + "libelle_d_acheminement": "MONTIGNY SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75595683457, + 47.9541936296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05403b5c1a0653067c0cb1a0050d244dffb5fde3", + "fields": { + "code_commune_insee": "21434", + "nom_de_la_commune": "MONTLAY EN AUXOIS", + "code_postal": "21210", + "coordonnees_gps": [ + 47.3313381255, + 4.26775681243 + ], + "libelle_d_acheminement": "MONTLAY EN AUXOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26775681243, + 47.3313381255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc086622d10556797eaa0ffb2cf8a39bc8977def", + "fields": { + "code_commune_insee": "21436", + "nom_de_la_commune": "MONTMAIN", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0277836478, + 5.05930420641 + ], + "libelle_d_acheminement": "MONTMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05930420641, + 47.0277836478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bdb61999a61932027ecb68e1129671ed8817693", + "fields": { + "code_commune_insee": "21458", + "nom_de_la_commune": "NOIRON SOUS GEVREY", + "code_postal": "21910", + "coordonnees_gps": [ + 47.1883989512, + 5.08502769038 + ], + "libelle_d_acheminement": "NOIRON SOUS GEVREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08502769038, + 47.1883989512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6be58e27b7d2fd7e405ec18faaab3c379899d8db", + "fields": { + "code_commune_insee": "21459", + "nom_de_la_commune": "NOIRON SUR BEZE", + "code_postal": "21310", + "coordonnees_gps": [ + 47.4394112405, + 5.29872318112 + ], + "libelle_d_acheminement": "NOIRON SUR BEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29872318112, + 47.4394112405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b0d3e9f62f3dbcf56962e26055d337144400376", + "fields": { + "code_commune_insee": "21463", + "nom_de_la_commune": "NORMIER", + "code_postal": "21390", + "coordonnees_gps": [ + 47.3633828394, + 4.43446785437 + ], + "libelle_d_acheminement": "NORMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43446785437, + 47.3633828394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba0984d4cf5716fbfa7c9cba3a122de57ea2dea4", + "fields": { + "code_commune_insee": "21470", + "nom_de_la_commune": "ORIGNY", + "code_postal": "21510", + "coordonnees_gps": [ + 47.712880266, + 4.63220686716 + ], + "libelle_d_acheminement": "ORIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63220686716, + 47.712880266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be31d6ac85f15d3c7c375ef43dd0739cd59e6ce8", + "fields": { + "code_commune_insee": "21471", + "nom_de_la_commune": "ORRET", + "code_postal": "21450", + "coordonnees_gps": [ + 47.6088070958, + 4.7017226745 + ], + "libelle_d_acheminement": "ORRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7017226745, + 47.6088070958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "758a700b412e8ddcaae2b5a81e0921236e3f0f86", + "fields": { + "code_commune_insee": "21473", + "nom_de_la_commune": "OUGES", + "code_postal": "21600", + "coordonnees_gps": [ + 47.2613998117, + 5.0782109526 + ], + "libelle_d_acheminement": "OUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0782109526, + 47.2613998117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47808e5f23e7c62399ca63686492be910cd61982", + "fields": { + "code_commune_insee": "21477", + "nom_de_la_commune": "PANGES", + "code_postal": "21540", + "coordonnees_gps": [ + 47.3739134919, + 4.80267156096 + ], + "libelle_d_acheminement": "PANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80267156096, + 47.3739134919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c999691beb6876907e703aa2ae92d8a36f6a80a1", + "fields": { + "code_commune_insee": "21482", + "nom_de_la_commune": "PERRIGNY SUR L OGNON", + "code_postal": "21270", + "coordonnees_gps": [ + 47.3052827359, + 5.4638499105 + ], + "libelle_d_acheminement": "PERRIGNY SUR L OGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4638499105, + 47.3052827359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3922d422f97503578ca2af8012a2cf4dd71ca65", + "fields": { + "code_commune_insee": "21484", + "nom_de_la_commune": "PLANAY", + "code_postal": "21500", + "coordonnees_gps": [ + 47.7372836307, + 4.37480750049 + ], + "libelle_d_acheminement": "PLANAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37480750049, + 47.7372836307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd58eedea351c0c719bcaed6a2a423a8b930088f", + "fields": { + "code_commune_insee": "21488", + "nom_de_la_commune": "POINCON LES LARREY", + "code_postal": "21330", + "coordonnees_gps": [ + 47.8689387712, + 4.45628317014 + ], + "libelle_d_acheminement": "POINCON LES LARREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45628317014, + 47.8689387712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f97362ef1edf1c2a35f52f472d5243b2fe3edc14", + "fields": { + "code_commune_insee": "21493", + "nom_de_la_commune": "PONCEY LES ATHEE", + "code_postal": "21130", + "coordonnees_gps": [ + 47.2359787197, + 5.38473838617 + ], + "libelle_d_acheminement": "PONCEY LES ATHEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38473838617, + 47.2359787197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bf8217308e1bbf10cbec73033c35af8ce9ef356", + "fields": { + "code_commune_insee": "21501", + "nom_de_la_commune": "POUILLY EN AUXOIS", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2627722067, + 4.55560519834 + ], + "libelle_d_acheminement": "POUILLY EN AUXOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55560519834, + 47.2627722067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb608118e9cbf0860192290ea1cef0282ff8d81a", + "fields": { + "code_commune_insee": "21502", + "nom_de_la_commune": "POUILLY SUR SAONE", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0111994809, + 5.12146704894 + ], + "libelle_d_acheminement": "POUILLY SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12146704894, + 47.0111994809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb944c83bda75d4d98354cc78baf8a3f3858e4dd", + "fields": { + "code_commune_insee": "21506", + "nom_de_la_commune": "PREMEAUX PRISSEY", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1049527311, + 4.9428568446 + ], + "libelle_d_acheminement": "PREMEAUX PRISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9428568446, + 47.1049527311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2156503c47768757a1c219d37d4710f57fa5ce2a", + "fields": { + "code_commune_insee": "21510", + "nom_de_la_commune": "PRUSLY SUR OURCE", + "code_postal": "21400", + "coordonnees_gps": [ + 47.8802357803, + 4.64331266439 + ], + "libelle_d_acheminement": "PRUSLY SUR OURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64331266439, + 47.8802357803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f5f0360da72fb2dec0925eb5915e2de74602b72", + "fields": { + "code_commune_insee": "21516", + "nom_de_la_commune": "QUINCEROT", + "code_postal": "21500", + "coordonnees_gps": [ + 47.6174314295, + 4.27133698568 + ], + "libelle_d_acheminement": "QUINCEROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27133698568, + 47.6174314295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f82746a20c67d7da7484fe1f90e4241f4e3a2ec", + "fields": { + "code_commune_insee": "21519", + "nom_de_la_commune": "RECEY SUR OURCE", + "code_postal": "21290", + "coordonnees_gps": [ + 47.7803300768, + 4.86261547003 + ], + "libelle_d_acheminement": "RECEY SUR OURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86261547003, + 47.7803300768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "670c22d8c2c698a6b7e0de60716984328e9cb545", + "fields": { + "code_commune_insee": "21526", + "nom_de_la_commune": "ROCHEFORT SUR BREVON", + "code_postal": "21510", + "coordonnees_gps": [ + 47.7409734699, + 4.70623994168 + ], + "libelle_d_acheminement": "ROCHEFORT SUR BREVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70623994168, + 47.7409734699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71a2b6068f46ca58f598d04652368b29059c9271", + "fields": { + "code_commune_insee": "21529", + "nom_de_la_commune": "ROILLY", + "code_postal": "21390", + "coordonnees_gps": [ + 47.4171745779, + 4.34078793389 + ], + "libelle_d_acheminement": "ROILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34078793389, + 47.4171745779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90edfb7cbfc8aeb1d8428c79eb3d634909b5678a", + "fields": { + "code_commune_insee": "21536", + "nom_de_la_commune": "SACQUENAY", + "code_postal": "21260", + "coordonnees_gps": [ + 47.5842099756, + 5.32132637871 + ], + "libelle_d_acheminement": "SACQUENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32132637871, + 47.5842099756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ec3bf948c61c97c62c83b6a5f3f838e401b8bde", + "fields": { + "code_commune_insee": "21538", + "nom_de_la_commune": "ST ANDEUX", + "code_postal": "21530", + "coordonnees_gps": [ + 47.3957430173, + 4.0930702878 + ], + "libelle_d_acheminement": "ST ANDEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0930702878, + 47.3957430173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2067308dd2ba1ecb5bea36c7a3cc83e088c8d31", + "fields": { + "code_commune_insee": "21541", + "nom_de_la_commune": "ST AUBIN", + "code_postal": "21190", + "coordonnees_gps": [ + 46.9504940966, + 4.71144303201 + ], + "libelle_d_acheminement": "ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71144303201, + 46.9504940966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f99819c56f8d66e5e89d07c801ffcdde08e89bcb", + "fields": { + "code_commune_insee": "21543", + "nom_de_la_commune": "ST BROING LES MOINES", + "code_postal": "21290", + "coordonnees_gps": [ + 47.7009540963, + 4.84214518878 + ], + "libelle_d_acheminement": "ST BROING LES MOINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84214518878, + 47.7009540963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf3f1bc72261d6d74cec559694847ec9197873cb", + "fields": { + "code_commune_insee": "21548", + "nom_de_la_commune": "ST GERMAIN DE MODEON", + "code_postal": "21530", + "coordonnees_gps": [ + 47.3721000365, + 4.12417498472 + ], + "libelle_d_acheminement": "ST GERMAIN DE MODEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12417498472, + 47.3721000365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f52cdba5bec4f1e6755a3115953ad478f5f13d2", + "fields": { + "code_commune_insee": "21561", + "nom_de_la_commune": "ST MARTIN DU MONT", + "code_postal": "21440", + "coordonnees_gps": [ + 47.4148513561, + 4.81194710404 + ], + "libelle_d_acheminement": "ST MARTIN DU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81194710404, + 47.4148513561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc93a9d5749c43c6cfb9ceb93d387a695bfd6d42", + "fields": { + "code_commune_insee": "21562", + "nom_de_la_commune": "ST MAURICE SUR VINGEANNE", + "code_postal": "21610", + "coordonnees_gps": [ + 47.5793795925, + 5.39828562769 + ], + "libelle_d_acheminement": "ST MAURICE SUR VINGEANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39828562769, + 47.5793795925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7eebe3ada6490e523e8c32b997e0ca77f333658", + "fields": { + "code_commune_insee": "21568", + "nom_de_la_commune": "ST REMY", + "code_postal": "21500", + "coordonnees_gps": [ + 47.6514487621, + 4.30074825954 + ], + "libelle_d_acheminement": "ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30074825954, + 47.6514487621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c351823c0596c3b8228b0b04c5e981bd99d8942", + "fields": { + "code_commune_insee": "21570", + "nom_de_la_commune": "STE SABINE", + "code_postal": "21320", + "coordonnees_gps": [ + 47.1875125214, + 4.62169164492 + ], + "libelle_d_acheminement": "STE SABINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62169164492, + 47.1875125214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2df85fe4d10cd4c24af7e3ee668f66ae02e50b6f", + "fields": { + "code_commune_insee": "21573", + "nom_de_la_commune": "ST SEINE L ABBAYE", + "code_postal": "21440", + "coordonnees_gps": [ + 47.4414380051, + 4.7823076914 + ], + "libelle_d_acheminement": "ST SEINE L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7823076914, + 47.4414380051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "298673e84828e1aaf39a531027f50d8e5f77768f", + "fields": { + "code_commune_insee": "21578", + "nom_de_la_commune": "ST VICTOR SUR OUCHE", + "code_postal": "21410", + "coordonnees_gps": [ + 47.2323029806, + 4.74865693638 + ], + "libelle_d_acheminement": "ST VICTOR SUR OUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74865693638, + 47.2323029806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d77c367c587a87e200297992a5b76c595943cf4f", + "fields": { + "code_commune_insee": "21590", + "nom_de_la_commune": "SAVIGNY LES BEAUNE", + "code_postal": "21420", + "coordonnees_gps": [ + 47.0806321437, + 4.80342918013 + ], + "libelle_d_acheminement": "SAVIGNY LES BEAUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80342918013, + 47.0806321437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f98ee3149d9858dde53ed45d56447754dc010cfb", + "fields": { + "code_commune_insee": "21595", + "nom_de_la_commune": "SAVOLLES", + "code_postal": "21310", + "coordonnees_gps": [ + 47.3778180325, + 5.27546231852 + ], + "libelle_d_acheminement": "SAVOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27546231852, + 47.3778180325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d45c9415690d3c90f2f6dd6be21ec6a725eb694", + "fields": { + "code_commune_insee": "21610", + "nom_de_la_commune": "SOISSONS SUR NACEY", + "code_postal": "21270", + "coordonnees_gps": [ + 47.2498583278, + 5.46166675348 + ], + "libelle_d_acheminement": "SOISSONS SUR NACEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46166675348, + 47.2498583278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64f91fae35759e020c6c17ac06e42a9eba73e45d", + "fields": { + "code_commune_insee": "21618", + "nom_de_la_commune": "TALMAY", + "code_postal": "21270", + "coordonnees_gps": [ + 47.3663925379, + 5.46063337832 + ], + "libelle_d_acheminement": "TALMAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46063337832, + 47.3663925379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97f7d20bdd77e54019d8e848bb97cdce48cccecb", + "fields": { + "code_commune_insee": "21620", + "nom_de_la_commune": "TARSUL", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5185851932, + 4.9796405504 + ], + "libelle_d_acheminement": "TARSUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9796405504, + 47.5185851932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14e6c29759b6ea0357c89b0aaa20f373b20d9a11", + "fields": { + "ligne_5": "TART LE HAUT", + "code_commune_insee": "21623", + "libelle_d_acheminement": "TART", + "code_postal": "21110", + "nom_de_la_commune": "TART", + "coordonnees_gps": [ + 47.1958586219, + 5.20512336576 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20512336576, + 47.1958586219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b16fa3df421b975d44c132239d1b2261d9fc635c", + "fields": { + "code_commune_insee": "21627", + "nom_de_la_commune": "THENISSEY", + "code_postal": "21150", + "coordonnees_gps": [ + 47.4964918792, + 4.61948858454 + ], + "libelle_d_acheminement": "THENISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61948858454, + 47.4964918792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9820a660b133a82a50c7c8d205ca213d49f1a56e", + "fields": { + "code_commune_insee": "21630", + "nom_de_la_commune": "THOISY LE DESERT", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2496181728, + 4.5209241508 + ], + "libelle_d_acheminement": "THOISY LE DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5209241508, + 47.2496181728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa7e8c28069f7c20be7a8eb1fbb25a6198641cfc", + "fields": { + "code_commune_insee": "21631", + "nom_de_la_commune": "THOMIREY", + "code_postal": "21360", + "coordonnees_gps": [ + 47.0875870318, + 4.58687586309 + ], + "libelle_d_acheminement": "THOMIREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58687586309, + 47.0875870318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be8c3923b365f40f68107c85f6c3ca35948d1d6e", + "fields": { + "code_commune_insee": "21634", + "nom_de_la_commune": "THOREY SUR OUCHE", + "code_postal": "21360", + "coordonnees_gps": [ + 47.1486545288, + 4.693092626 + ], + "libelle_d_acheminement": "THOREY SUR OUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.693092626, + 47.1486545288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec01521629132a2f3a1a6388b8c8cbfe285d3ce9", + "fields": { + "code_commune_insee": "21641", + "nom_de_la_commune": "TOUILLON", + "code_postal": "21500", + "coordonnees_gps": [ + 47.6589160745, + 4.43658043241 + ], + "libelle_d_acheminement": "TOUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43658043241, + 47.6589160745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9754e22c9d22377fdc4b74919a8d8510cd97290", + "fields": { + "code_commune_insee": "21643", + "nom_de_la_commune": "TRECLUN", + "code_postal": "21130", + "coordonnees_gps": [ + 47.192371052, + 5.28848866288 + ], + "libelle_d_acheminement": "TRECLUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28848866288, + 47.192371052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9289004ea7198f731ccd061221714ea28341886", + "fields": { + "code_commune_insee": "21647", + "nom_de_la_commune": "TRUGNY", + "code_postal": "21250", + "coordonnees_gps": [ + 46.9718830068, + 5.14601366703 + ], + "libelle_d_acheminement": "TRUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14601366703, + 46.9718830068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b54d99f9626fbc8169098eb71eb389fe99a3533", + "fields": { + "code_commune_insee": "21657", + "nom_de_la_commune": "VAROIS ET CHAIGNOT", + "code_postal": "21490", + "coordonnees_gps": [ + 47.3554476666, + 5.1255645784 + ], + "libelle_d_acheminement": "VAROIS ET CHAIGNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1255645784, + 47.3554476666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "898254dc97387f0ab511f462418f2c500dd383e6", + "fields": { + "ligne_5": "VERONNES LES PETITES", + "code_commune_insee": "21667", + "libelle_d_acheminement": "VERONNES", + "code_postal": "21260", + "nom_de_la_commune": "VERONNES", + "coordonnees_gps": [ + 47.5355759344, + 5.23841425575 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23841425575, + 47.5355759344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c87d3a3a99ae4e54f9d91c44405971c4cde09e67", + "fields": { + "code_commune_insee": "21671", + "nom_de_la_commune": "VERTAULT", + "code_postal": "21330", + "coordonnees_gps": [ + 47.9246819197, + 4.32699218845 + ], + "libelle_d_acheminement": "VERTAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32699218845, + 47.9246819197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dce1f71c3a15409c37cc8a5066970b39c9963fc2", + "fields": { + "code_commune_insee": "21672", + "nom_de_la_commune": "VESVRES", + "code_postal": "21350", + "coordonnees_gps": [ + 47.3763024557, + 4.52885694721 + ], + "libelle_d_acheminement": "VESVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52885694721, + 47.3763024557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ec4d7040c4531ae7bc32bba3ec6410243dc8d9c", + "fields": { + "code_commune_insee": "21679", + "nom_de_la_commune": "VIEILMOULIN", + "code_postal": "21540", + "coordonnees_gps": [ + 47.3142426405, + 4.67284381693 + ], + "libelle_d_acheminement": "VIEILMOULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67284381693, + 47.3142426405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f88fa6afe15fb2b11a4ff1fd9e4f7b37b9e724f1", + "fields": { + "code_commune_insee": "21682", + "nom_de_la_commune": "VIEVIGNE", + "code_postal": "21310", + "coordonnees_gps": [ + 47.435689036, + 5.24044596193 + ], + "libelle_d_acheminement": "VIEVIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24044596193, + 47.435689036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3e85c892eb5ee3fb9c66d1b2a751966a06c30f9", + "fields": { + "code_commune_insee": "21688", + "nom_de_la_commune": "VILLARS FONTAINE", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1500426655, + 4.90096219055 + ], + "libelle_d_acheminement": "VILLARS FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90096219055, + 47.1500426655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52e263887151aef44a7f47d6deb101ce242f7ef2", + "fields": { + "code_commune_insee": "21690", + "nom_de_la_commune": "VILLEBERNY", + "code_postal": "21350", + "coordonnees_gps": [ + 47.4361931172, + 4.60070277203 + ], + "libelle_d_acheminement": "VILLEBERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60070277203, + 47.4361931172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccdc0675a16407b6039e356328415119be162d0b", + "fields": { + "code_commune_insee": "21695", + "nom_de_la_commune": "LA VILLENEUVE LES CONVERS", + "code_postal": "21450", + "coordonnees_gps": [ + 47.5761672449, + 4.59152552704 + ], + "libelle_d_acheminement": "LA VILLENEUVE LES CONVERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59152552704, + 47.5761672449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a3d5358ca54719a64f0d0847a200ca11d501d31", + "fields": { + "code_commune_insee": "21700", + "nom_de_la_commune": "VILLERS PATRAS", + "code_postal": "21400", + "coordonnees_gps": [ + 47.9345473428, + 4.5466694292 + ], + "libelle_d_acheminement": "VILLERS PATRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5466694292, + 47.9345473428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d0f0ec088fad36b7940da71fea59bfdcd0ebd8d", + "fields": { + "code_commune_insee": "21701", + "nom_de_la_commune": "VILLERS ROTIN", + "code_postal": "21130", + "coordonnees_gps": [ + 47.156020714, + 5.40682525494 + ], + "libelle_d_acheminement": "VILLERS ROTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40682525494, + 47.156020714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06e9c87ca9909f5f65fffc25bf07544adde75f69", + "fields": { + "ligne_5": "TREZELAN", + "code_commune_insee": "22004", + "libelle_d_acheminement": "BEGARD", + "code_postal": "22140", + "nom_de_la_commune": "BEGARD", + "coordonnees_gps": [ + 48.6345594689, + -3.29153247621 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29153247621, + 48.6345594689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93ef39bd4ee928fc0d72b67891d7927f958b97b0", + "fields": { + "code_commune_insee": "22011", + "nom_de_la_commune": "BOQUEHO", + "code_postal": "22170", + "coordonnees_gps": [ + 48.4679009136, + -2.98514567915 + ], + "libelle_d_acheminement": "BOQUEHO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98514567915, + 48.4679009136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67a75f9f63277a36781b8f2b920b2b869d41fe10", + "fields": { + "code_commune_insee": "22013", + "nom_de_la_commune": "BOURBRIAC", + "code_postal": "22390", + "coordonnees_gps": [ + 48.465978498, + -3.19983137965 + ], + "libelle_d_acheminement": "BOURBRIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.19983137965, + 48.465978498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "438556ca63ed85fc612656d2a84ac1e562ef527e", + "fields": { + "code_commune_insee": "22019", + "nom_de_la_commune": "BRINGOLO", + "code_postal": "22170", + "coordonnees_gps": [ + 48.5771136363, + -3.00615550724 + ], + "libelle_d_acheminement": "BRINGOLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00615550724, + 48.5771136363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27c7a9eb8f4fd123bd92b754bb6ad0a8b667c3af", + "fields": { + "code_commune_insee": "22029", + "nom_de_la_commune": "CANIHUEL", + "code_postal": "22480", + "coordonnees_gps": [ + 48.3372803987, + -3.09549135055 + ], + "libelle_d_acheminement": "CANIHUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09549135055, + 48.3372803987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8f70e180388d014d71bd5f7f18f7a79b32d47e6", + "fields": { + "code_commune_insee": "22031", + "nom_de_la_commune": "CARNOET", + "code_postal": "22160", + "coordonnees_gps": [ + 48.3597303691, + -3.53248136925 + ], + "libelle_d_acheminement": "CARNOET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.53248136925, + 48.3597303691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f98b8ba1701105d097d85683dce23a9521fc4bb", + "fields": { + "code_commune_insee": "22035", + "nom_de_la_commune": "LES CHAMPS GERAUX", + "code_postal": "22630", + "coordonnees_gps": [ + 48.4255779287, + -1.97788304243 + ], + "libelle_d_acheminement": "LES CHAMPS GERAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97788304243, + 48.4255779287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5bc51009cc483f5edbce64c0cf76ed75ffddc02", + "fields": { + "code_commune_insee": "22044", + "nom_de_la_commune": "COETMIEUX", + "code_postal": "22400", + "coordonnees_gps": [ + 48.4866224829, + -2.59223420538 + ], + "libelle_d_acheminement": "COETMIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.59223420538, + 48.4866224829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b7e5b9b27e8010098910c24dd989d55ef464b38", + "fields": { + "ligne_5": "COLLINEE", + "code_commune_insee": "22046", + "libelle_d_acheminement": "LE MENE", + "code_postal": "22330", + "nom_de_la_commune": "LE MENE", + "coordonnees_gps": [ + 48.2937312654, + -2.52246803693 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52246803693, + 48.2937312654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83d070063767acdceea8dcbe9509bf4d996350f3", + "fields": { + "ligne_5": "LANGOURLA", + "code_commune_insee": "22046", + "libelle_d_acheminement": "LE MENE", + "code_postal": "22330", + "nom_de_la_commune": "LE MENE", + "coordonnees_gps": [ + 48.2937312654, + -2.52246803693 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52246803693, + 48.2937312654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0290c138975482aed94df4e508a0da7d60897f2", + "fields": { + "ligne_5": "LE GOURAY", + "code_commune_insee": "22046", + "libelle_d_acheminement": "LE MENE", + "code_postal": "22330", + "nom_de_la_commune": "LE MENE", + "coordonnees_gps": [ + 48.2937312654, + -2.52246803693 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52246803693, + 48.2937312654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8c32c190ef991b769561b9fe4db3a210c3f51d4", + "fields": { + "ligne_5": "PLESSALA", + "code_commune_insee": "22046", + "libelle_d_acheminement": "LE MENE", + "code_postal": "22330", + "nom_de_la_commune": "LE MENE", + "coordonnees_gps": [ + 48.2937312654, + -2.52246803693 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52246803693, + 48.2937312654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "884ce0dc0f41e8b1e845a771be7012b3eadd5cce", + "fields": { + "code_commune_insee": "22047", + "nom_de_la_commune": "CORLAY", + "code_postal": "22320", + "coordonnees_gps": [ + 48.3097462956, + -3.0377460051 + ], + "libelle_d_acheminement": "CORLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.0377460051, + 48.3097462956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d239dd41d53284da9bb1773570ca546a4b9b6802", + "fields": { + "code_commune_insee": "22048", + "nom_de_la_commune": "CORSEUL", + "code_postal": "22130", + "coordonnees_gps": [ + 48.4828884637, + -2.16620752689 + ], + "libelle_d_acheminement": "CORSEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16620752689, + 48.4828884637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f7fb18c7b2bf13ac4061e986df097a9e7e144cb", + "fields": { + "code_commune_insee": "22049", + "nom_de_la_commune": "CREHEN", + "code_postal": "22130", + "coordonnees_gps": [ + 48.5403697104, + -2.19064428046 + ], + "libelle_d_acheminement": "CREHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.19064428046, + 48.5403697104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "facefb14b9e1a6a9a9eb944fe021b81da4fe752a", + "fields": { + "code_commune_insee": "22059", + "nom_de_la_commune": "LE FOEIL", + "code_postal": "22800", + "coordonnees_gps": [ + 48.4178424268, + -2.91449094191 + ], + "libelle_d_acheminement": "LE FOEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91449094191, + 48.4178424268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1246bc133dbecc4147c1fdd4dca81ddfa02d6a9", + "fields": { + "code_commune_insee": "22061", + "nom_de_la_commune": "GLOMEL", + "code_postal": "22110", + "coordonnees_gps": [ + 48.2058975829, + -3.38820300244 + ], + "libelle_d_acheminement": "GLOMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.38820300244, + 48.2058975829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6fafae9b696f61de8540139e211122d82ee303f", + "fields": { + "code_commune_insee": "22063", + "nom_de_la_commune": "GOMMENEC H", + "code_postal": "22290", + "coordonnees_gps": [ + 48.63755375, + -3.04800718456 + ], + "libelle_d_acheminement": "GOMMENEC H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04800718456, + 48.63755375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dcd54aba94998fb7f11ed0a42638d1af7ec83ae", + "fields": { + "code_commune_insee": "22064", + "nom_de_la_commune": "GOUAREC", + "code_postal": "22570", + "coordonnees_gps": [ + 48.2358108068, + -3.1953780576 + ], + "libelle_d_acheminement": "GOUAREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.1953780576, + 48.2358108068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a6385ab19a98aacd18440983c2fb4131ec027ae", + "fields": { + "code_commune_insee": "22071", + "nom_de_la_commune": "GUITTE", + "code_postal": "22350", + "coordonnees_gps": [ + 48.2908086069, + -2.10295058858 + ], + "libelle_d_acheminement": "GUITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.10295058858, + 48.2908086069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e10881137180109e4c0ff268b11372fe29bd2a83", + "fields": { + "code_commune_insee": "22076", + "nom_de_la_commune": "HENANBIHEN", + "code_postal": "22550", + "coordonnees_gps": [ + 48.557629556, + -2.38155761099 + ], + "libelle_d_acheminement": "HENANBIHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38155761099, + 48.557629556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bccb0732f49446e03828dc720fa86c350ee4d351", + "fields": { + "ligne_5": "LESCOUET JUGON", + "code_commune_insee": "22084", + "libelle_d_acheminement": "JUGON LES LACS COMMUNE NOUVELLE", + "code_postal": "22270", + "nom_de_la_commune": "JUGON LES LACS COMMUNE NOUVELLE", + "coordonnees_gps": [ + 48.4166591067, + -2.32522349689 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.32522349689, + 48.4166591067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d4a06b09f49d932af318060a8b9efbb5734239c", + "fields": { + "code_commune_insee": "22108", + "nom_de_la_commune": "LANLEFF", + "code_postal": "22290", + "coordonnees_gps": [ + 48.693037024, + -3.04509377932 + ], + "libelle_d_acheminement": "LANLEFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04509377932, + 48.693037024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72c55668245c969c0d234b5a9262738b3548f03b", + "fields": { + "code_commune_insee": "22109", + "nom_de_la_commune": "LANLOUP", + "code_postal": "22580", + "coordonnees_gps": [ + 48.7099285646, + -2.96884384171 + ], + "libelle_d_acheminement": "LANLOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96884384171, + 48.7099285646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80a59a027e1942ca29da7c90c878c3a59a19d752", + "fields": { + "code_commune_insee": "22119", + "nom_de_la_commune": "LANVELLEC", + "code_postal": "22420", + "coordonnees_gps": [ + 48.6072769742, + -3.52795086821 + ], + "libelle_d_acheminement": "LANVELLEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.52795086821, + 48.6072769742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec4747902c584cef6553b2e416b5c3b391bdcdaf", + "fields": { + "code_commune_insee": "22129", + "nom_de_la_commune": "LOC ENVEL", + "code_postal": "22810", + "coordonnees_gps": [ + 48.5098602173, + -3.40963775172 + ], + "libelle_d_acheminement": "LOC ENVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.40963775172, + 48.5098602173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39957ba92f4b4e282603617b01f598d077f298c8", + "fields": { + "code_commune_insee": "22132", + "nom_de_la_commune": "LOHUEC", + "code_postal": "22160", + "coordonnees_gps": [ + 48.4622299477, + -3.52706033812 + ], + "libelle_d_acheminement": "LOHUEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.52706033812, + 48.4622299477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53903ac1023e01b2d9c0c541a866c90e3321bf71", + "fields": { + "code_commune_insee": "22136", + "nom_de_la_commune": "LOUDEAC", + "code_postal": "22600", + "coordonnees_gps": [ + 48.1740293909, + -2.75097544378 + ], + "libelle_d_acheminement": "LOUDEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75097544378, + 48.1740293909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14c166ce09e2b3ccca0f82cd5c76bb8df1ddc53c", + "fields": { + "code_commune_insee": "22140", + "nom_de_la_commune": "LA MALHOURE", + "code_postal": "22640", + "coordonnees_gps": [ + 48.3961928659, + -2.49404154442 + ], + "libelle_d_acheminement": "LA MALHOURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49404154442, + 48.3961928659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdd19fb1a2a32466e458fdd571dc9c605df74f28", + "fields": { + "code_commune_insee": "22141", + "nom_de_la_commune": "MANTALLOT", + "code_postal": "22450", + "coordonnees_gps": [ + 48.7102228776, + -3.29192042144 + ], + "libelle_d_acheminement": "MANTALLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29192042144, + 48.7102228776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c58ef4ffa93b1b65b56dfdc78ec7264943c812db", + "fields": { + "code_commune_insee": "22147", + "nom_de_la_commune": "MERDRIGNAC", + "code_postal": "22230", + "coordonnees_gps": [ + 48.1936252026, + -2.39598361343 + ], + "libelle_d_acheminement": "MERDRIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39598361343, + 48.1936252026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eca28070ba0a148035dcd5cc786ecdb98d5860ad", + "fields": { + "code_commune_insee": "22150", + "nom_de_la_commune": "LE MERZER", + "code_postal": "22200", + "coordonnees_gps": [ + 48.5816215935, + -3.07507907802 + ], + "libelle_d_acheminement": "LE MERZER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07507907802, + 48.5816215935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35661c55cfc4842967bb1c47d5bb9ed3ec0bd77d", + "fields": { + "code_commune_insee": "22155", + "nom_de_la_commune": "LA MOTTE", + "code_postal": "22600", + "coordonnees_gps": [ + 48.2311050733, + -2.70470655082 + ], + "libelle_d_acheminement": "LA MOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.70470655082, + 48.2311050733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0f5c63e823d36c1a5b59071655d19e350de4b0f", + "fields": { + "ligne_5": "ST GUEN", + "code_commune_insee": "22158", + "libelle_d_acheminement": "GUERLEDAN", + "code_postal": "22530", + "nom_de_la_commune": "GUERLEDAN", + "coordonnees_gps": [ + 48.1957524474, + -2.9837108711 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.9837108711, + 48.1957524474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33ce013db8f775315289547358589979f5506b66", + "fields": { + "code_commune_insee": "22161", + "nom_de_la_commune": "PABU", + "code_postal": "22200", + "coordonnees_gps": [ + 48.58310885, + -3.14288475584 + ], + "libelle_d_acheminement": "PABU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.14288475584, + 48.58310885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d840050a87528e8520346ac619cac86ba541ff06", + "fields": { + "code_commune_insee": "22166", + "nom_de_la_commune": "PENVENAN", + "code_postal": "22710", + "coordonnees_gps": [ + 48.816014407, + -3.30224745841 + ], + "libelle_d_acheminement": "PENVENAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.30224745841, + 48.816014407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f40fcb7bb83900df54b074148ca8b5d0ae9b83cf", + "fields": { + "ligne_5": "PLOUMANACH", + "code_commune_insee": "22168", + "libelle_d_acheminement": "PERROS GUIREC", + "code_postal": "22700", + "nom_de_la_commune": "PERROS GUIREC", + "coordonnees_gps": [ + 48.8094393417, + -3.46769227891 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.46769227891, + 48.8094393417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1a43d5717c8de34c3ed6e50e24c2dc9056fe589", + "fields": { + "code_commune_insee": "22171", + "nom_de_la_commune": "PLAINTEL", + "code_postal": "22940", + "coordonnees_gps": [ + 48.4105972441, + -2.81039949193 + ], + "libelle_d_acheminement": "PLAINTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.81039949193, + 48.4105972441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8fc4461532684534d8d3804906e3cb99ec1d07b", + "fields": { + "code_commune_insee": "22179", + "nom_de_la_commune": "FREHEL", + "code_postal": "22240", + "coordonnees_gps": [ + 48.6348223959, + -2.36202603588 + ], + "libelle_d_acheminement": "FREHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.36202603588, + 48.6348223959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68548529ee2e95f3ae97289615bc75e18d989ef6", + "fields": { + "ligne_5": "ST JEAN PLELO", + "code_commune_insee": "22182", + "libelle_d_acheminement": "PLELO", + "code_postal": "22170", + "nom_de_la_commune": "PLELO", + "coordonnees_gps": [ + 48.5539490397, + -2.92735554544 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.92735554544, + 48.5539490397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a65d891c5934747feeec0dcc265cee022182a62", + "fields": { + "code_commune_insee": "22183", + "nom_de_la_commune": "PLEMET", + "code_postal": "22210", + "coordonnees_gps": [ + 48.1860837585, + -2.5859903316 + ], + "libelle_d_acheminement": "PLEMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.5859903316, + 48.1860837585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e8c3e00b0f5b3d62ee3bab6090813b83524967e", + "fields": { + "code_commune_insee": "22184", + "nom_de_la_commune": "PLEMY", + "code_postal": "22150", + "coordonnees_gps": [ + 48.3378874008, + -2.67639170288 + ], + "libelle_d_acheminement": "PLEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.67639170288, + 48.3378874008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "380ceca219c52f93d7caf1d94d3208a36fb37b34", + "fields": { + "ligne_5": "LES ROSAIRES", + "code_commune_insee": "22187", + "libelle_d_acheminement": "PLERIN", + "code_postal": "22190", + "nom_de_la_commune": "PLERIN", + "coordonnees_gps": [ + 48.5441732134, + -2.77004635921 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77004635921, + 48.5441732134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa58a6fc1de5a5ec3abb7dde86307abad4b4c947", + "fields": { + "code_commune_insee": "22196", + "nom_de_la_commune": "PLEUDANIEL", + "code_postal": "22740", + "coordonnees_gps": [ + 48.7611404918, + -3.15433424139 + ], + "libelle_d_acheminement": "PLEUDANIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15433424139, + 48.7611404918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "821e6ae1693589bfc9f403151fc307ef1fb72d83", + "fields": { + "code_commune_insee": "22197", + "nom_de_la_commune": "PLEUDIHEN SUR RANCE", + "code_postal": "22690", + "coordonnees_gps": [ + 48.5092937336, + -1.94145904907 + ], + "libelle_d_acheminement": "PLEUDIHEN SUR RANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.94145904907, + 48.5092937336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7a2d57d4525e3e24365ff881ee893c7b2e45c2c", + "fields": { + "code_commune_insee": "22198", + "nom_de_la_commune": "PLEUMEUR BODOU", + "code_postal": "22560", + "coordonnees_gps": [ + 48.7852851364, + -3.51721058191 + ], + "libelle_d_acheminement": "PLEUMEUR BODOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.51721058191, + 48.7852851364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "416dd9b294791397d143f751d433c24605579ad9", + "fields": { + "ligne_5": "LANDRELLEC", + "code_commune_insee": "22198", + "libelle_d_acheminement": "PLEUMEUR BODOU", + "code_postal": "22560", + "nom_de_la_commune": "PLEUMEUR BODOU", + "coordonnees_gps": [ + 48.7852851364, + -3.51721058191 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.51721058191, + 48.7852851364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39170ad6998d3feb3519e252e0c64e6f9f7ebf75", + "fields": { + "code_commune_insee": "22200", + "nom_de_la_commune": "PLEVEN", + "code_postal": "22130", + "coordonnees_gps": [ + 48.4911438301, + -2.32130813288 + ], + "libelle_d_acheminement": "PLEVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.32130813288, + 48.4911438301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fad2efec16c6c33f9ff19c68ef8148cbaf229e3", + "fields": { + "ligne_5": "LOGUIVY DE LA MER", + "code_commune_insee": "22210", + "libelle_d_acheminement": "PLOUBAZLANEC", + "code_postal": "22620", + "nom_de_la_commune": "PLOUBAZLANEC", + "coordonnees_gps": [ + 48.80535932, + -3.04524739912 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04524739912, + 48.80535932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6b5f78d04c31e574cf943a852b23cb8cd81a417", + "fields": { + "ligne_5": "LES CROIX", + "code_commune_insee": "22215", + "libelle_d_acheminement": "PLOUFRAGAN", + "code_postal": "22440", + "nom_de_la_commune": "PLOUFRAGAN", + "coordonnees_gps": [ + 48.4877482968, + -2.80851630928 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80851630928, + 48.4877482968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ed162ca8d3145650be17d303114cb5bc015b012", + "fields": { + "code_commune_insee": "22232", + "nom_de_la_commune": "PLOURHAN", + "code_postal": "22410", + "coordonnees_gps": [ + 48.6312552228, + -2.88203367765 + ], + "libelle_d_acheminement": "PLOURHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.88203367765, + 48.6312552228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0972154b8065097d3c5e9741b204c7c798e5c88c", + "fields": { + "code_commune_insee": "22243", + "nom_de_la_commune": "PLUSQUELLEC", + "code_postal": "22160", + "coordonnees_gps": [ + 48.3993408756, + -3.48393074891 + ], + "libelle_d_acheminement": "PLUSQUELLEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.48393074891, + 48.3993408756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f981003d82b30d474c129674b4509b00665e42fb", + "fields": { + "code_commune_insee": "22245", + "nom_de_la_commune": "PLUZUNET", + "code_postal": "22140", + "coordonnees_gps": [ + 48.6363773229, + -3.3712110927 + ], + "libelle_d_acheminement": "PLUZUNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.3712110927, + 48.6363773229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "700662a3c22c288612ac27638ab192b5e9b4342d", + "fields": { + "code_commune_insee": "22249", + "nom_de_la_commune": "PONT MELVEZ", + "code_postal": "22390", + "coordonnees_gps": [ + 48.4740063925, + -3.2849339382 + ], + "libelle_d_acheminement": "PONT MELVEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.2849339382, + 48.4740063925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6736c5cd4d2ba40f2bef5295be5e65757a0dab50", + "fields": { + "ligne_5": "LA VILLE LOUAIS", + "code_commune_insee": "22251", + "libelle_d_acheminement": "PORDIC", + "code_postal": "22590", + "nom_de_la_commune": "PORDIC", + "coordonnees_gps": [ + 48.5702275208, + -2.82517190036 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82517190036, + 48.5702275208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67fa82c2118cedba923ca1fbc4b3b19753035a35", + "fields": { + "code_commune_insee": "22255", + "nom_de_la_commune": "LA PRENESSAYE", + "code_postal": "22210", + "coordonnees_gps": [ + 48.185718113, + -2.64785441869 + ], + "libelle_d_acheminement": "LA PRENESSAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64785441869, + 48.185718113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fb962f8487672f99d924aa3742c6177520dcee0", + "fields": { + "code_commune_insee": "22263", + "nom_de_la_commune": "LE QUIOU", + "code_postal": "22630", + "coordonnees_gps": [ + 48.345885697, + -1.99810856153 + ], + "libelle_d_acheminement": "LE QUIOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99810856153, + 48.345885697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5b6f8a02e6c7f2cec8b8c3d8daec05e8f7a4a4e", + "fields": { + "ligne_5": "POULDOURAN", + "code_commune_insee": "22264", + "libelle_d_acheminement": "LA ROCHE JAUDY", + "code_postal": "22450", + "nom_de_la_commune": "LA ROCHE JAUDY", + "coordonnees_gps": [ + 48.7456370261, + -3.25762802773 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.25762802773, + 48.7456370261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2da5b6f5fbac89242e721141830f4b5173c31a6c", + "fields": { + "code_commune_insee": "22284", + "nom_de_la_commune": "ST CONNAN", + "code_postal": "22480", + "coordonnees_gps": [ + 48.412323087, + -3.07608940512 + ], + "libelle_d_acheminement": "ST CONNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07608940512, + 48.412323087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f93d8d5ebcc2ed0bc5375a69a6329855016bb60", + "fields": { + "code_commune_insee": "22286", + "nom_de_la_commune": "ST DENOUAL", + "code_postal": "22400", + "coordonnees_gps": [ + 48.5186895679, + -2.38405563335 + ], + "libelle_d_acheminement": "ST DENOUAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38405563335, + 48.5186895679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d39a2827e2e36ad5d4fac0e17cdcb1b492dbebaa", + "fields": { + "code_commune_insee": "22294", + "nom_de_la_commune": "ST GILLES PLIGEAUX", + "code_postal": "22480", + "coordonnees_gps": [ + 48.3796644952, + -3.08710992512 + ], + "libelle_d_acheminement": "ST GILLES PLIGEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.08710992512, + 48.3796644952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "093a79243ca1ad36b1be79dc45a3b14e158bf62a", + "fields": { + "code_commune_insee": "22296", + "nom_de_la_commune": "ST GLEN", + "code_postal": "22510", + "coordonnees_gps": [ + 48.3522657851, + -2.52156644539 + ], + "libelle_d_acheminement": "ST GLEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52156644539, + 48.3522657851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d43e3de888326203cca10307840011cdf84c5a08", + "fields": { + "code_commune_insee": "22299", + "nom_de_la_commune": "ST HELEN", + "code_postal": "22100", + "coordonnees_gps": [ + 48.4661154661, + -1.95919641216 + ], + "libelle_d_acheminement": "ST HELEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95919641216, + 48.4661154661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b7ed289b9fde4a0743c6a1fe4425514a4cdbead", + "fields": { + "code_commune_insee": "22304", + "nom_de_la_commune": "ST JEAN KERDANIEL", + "code_postal": "22170", + "coordonnees_gps": [ + 48.5525813879, + -3.03402824762 + ], + "libelle_d_acheminement": "ST JEAN KERDANIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.03402824762, + 48.5525813879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78074d05045f5d10fd88eec9867285ac64852353", + "fields": { + "code_commune_insee": "22305", + "nom_de_la_commune": "ST JOUAN DE L ISLE", + "code_postal": "22350", + "coordonnees_gps": [ + 48.266340555, + -2.17849741496 + ], + "libelle_d_acheminement": "ST JOUAN DE L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17849741496, + 48.266340555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6a6de1924117b7c755900f08940d8b643344319", + "fields": { + "code_commune_insee": "22318", + "nom_de_la_commune": "ST MICHEL DE PLELAN", + "code_postal": "22980", + "coordonnees_gps": [ + 48.4627340053, + -2.22149059682 + ], + "libelle_d_acheminement": "ST MICHEL DE PLELAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.22149059682, + 48.4627340053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d5d270af01a0f31f951b0d66f7806c4b529f9d0", + "fields": { + "code_commune_insee": "22324", + "nom_de_la_commune": "ST QUAY PERROS", + "code_postal": "22700", + "coordonnees_gps": [ + 48.7821597009, + -3.44898067096 + ], + "libelle_d_acheminement": "ST QUAY PERROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44898067096, + 48.7821597009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61bd72066b7d947e9934811ae8088eec2b920a7a", + "fields": { + "ligne_5": "LA HISSE ST SAMSON", + "code_commune_insee": "22327", + "libelle_d_acheminement": "ST SAMSON SUR RANCE", + "code_postal": "22100", + "nom_de_la_commune": "ST SAMSON SUR RANCE", + "coordonnees_gps": [ + 48.4914561731, + -2.01805917808 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01805917808, + 48.4914561731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02b434f56815f448f91f548ac2ea0d4fe574fc1f", + "fields": { + "code_commune_insee": "22328", + "nom_de_la_commune": "ST SERVAIS", + "code_postal": "22160", + "coordonnees_gps": [ + 48.3866899196, + -3.37424456505 + ], + "libelle_d_acheminement": "ST SERVAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37424456505, + 48.3866899196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "112b27fc5381a88aed774e4f87e2e496e2a88fb3", + "fields": { + "code_commune_insee": "22333", + "nom_de_la_commune": "ST VRAN", + "code_postal": "22230", + "coordonnees_gps": [ + 48.2433929784, + -2.45697339258 + ], + "libelle_d_acheminement": "ST VRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45697339258, + 48.2433929784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a48e460558ae00a6e58ba4a24138a8a5afbd2eff", + "fields": { + "code_commune_insee": "22347", + "nom_de_la_commune": "TREDARZEC", + "code_postal": "22220", + "coordonnees_gps": [ + 48.7908718928, + -3.20159345047 + ], + "libelle_d_acheminement": "TREDARZEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.20159345047, + 48.7908718928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c7e54e9aaa9d651c314d52d0f03f2c18e74bbc4", + "fields": { + "code_commune_insee": "22351", + "nom_de_la_commune": "TREFFRIN", + "code_postal": "22340", + "coordonnees_gps": [ + 48.2985314083, + -3.52731682316 + ], + "libelle_d_acheminement": "TREFFRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.52731682316, + 48.2985314083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b13753c3d55dc878e3971695a78c1d5a7ae880e", + "fields": { + "code_commune_insee": "22354", + "nom_de_la_commune": "TREGLAMUS", + "code_postal": "22540", + "coordonnees_gps": [ + 48.5568884006, + -3.25462345127 + ], + "libelle_d_acheminement": "TREGLAMUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.25462345127, + 48.5568884006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bf8a04625ea4762bf165d62022e4decfef7187b", + "fields": { + "code_commune_insee": "22363", + "nom_de_la_commune": "TRELEVERN", + "code_postal": "22660", + "coordonnees_gps": [ + 48.801785558, + -3.36967789456 + ], + "libelle_d_acheminement": "TRELEVERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36967789456, + 48.801785558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d91977011e5dededbc25208b3ff9544541a18b43", + "fields": { + "code_commune_insee": "22375", + "nom_de_la_commune": "TRESSIGNAUX", + "code_postal": "22290", + "coordonnees_gps": [ + 48.6103866448, + -2.97487593888 + ], + "libelle_d_acheminement": "TRESSIGNAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.97487593888, + 48.6103866448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80962beabb72fccf851306183b35e90188ac924f", + "fields": { + "code_commune_insee": "22384", + "nom_de_la_commune": "UZEL", + "code_postal": "22460", + "coordonnees_gps": [ + 48.2806260052, + -2.84761696775 + ], + "libelle_d_acheminement": "UZEL PRES L OUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84761696775, + 48.2806260052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1779161f2b90066803f4857315141e2c6d18cb2", + "fields": { + "code_commune_insee": "23011", + "nom_de_la_commune": "AULON", + "code_postal": "23210", + "coordonnees_gps": [ + 46.0918100257, + 1.69586417103 + ], + "libelle_d_acheminement": "AULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69586417103, + 46.0918100257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec759cca752912663e0b5243fe259da793cc5b75", + "fields": { + "code_commune_insee": "23017", + "nom_de_la_commune": "BASVILLE", + "code_postal": "23260", + "coordonnees_gps": [ + 45.8577538427, + 2.41245450186 + ], + "libelle_d_acheminement": "BASVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41245450186, + 45.8577538427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11c643ca345f3b686424fd27a7c7be982c55fcb6", + "fields": { + "code_commune_insee": "23024", + "nom_de_la_commune": "BLESSAC", + "code_postal": "23200", + "coordonnees_gps": [ + 45.9634823691, + 2.11186170514 + ], + "libelle_d_acheminement": "BLESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11186170514, + 45.9634823691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "635bf6a835519a4c716b8a95808f268ae3a5ab45", + "fields": { + "code_commune_insee": "23030", + "nom_de_la_commune": "BOURGANEUF", + "code_postal": "23400", + "coordonnees_gps": [ + 45.9488316106, + 1.74900640908 + ], + "libelle_d_acheminement": "BOURGANEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74900640908, + 45.9488316106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31dec9b33b9b4437a6ce4d8e3f2056767f4319c1", + "fields": { + "code_commune_insee": "23035", + "nom_de_la_commune": "BUDELIERE", + "code_postal": "23170", + "coordonnees_gps": [ + 46.2207179959, + 2.47512106932 + ], + "libelle_d_acheminement": "BUDELIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47512106932, + 46.2207179959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2af0b8705170db8e44e3a632661e5dd680efdc01", + "fields": { + "code_commune_insee": "23036", + "nom_de_la_commune": "BUSSIERE DUNOISE", + "code_postal": "23320", + "coordonnees_gps": [ + 46.2557563737, + 1.76028995506 + ], + "libelle_d_acheminement": "BUSSIERE DUNOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76028995506, + 46.2557563737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39e84d671a79a649809e3683330221571e38777b", + "fields": { + "code_commune_insee": "23039", + "nom_de_la_commune": "LA CELLE DUNOISE", + "code_postal": "23800", + "coordonnees_gps": [ + 46.311979886, + 1.78178481462 + ], + "libelle_d_acheminement": "LA CELLE DUNOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78178481462, + 46.311979886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae85e11a1b3fa8a905acf83b870f659e0175eaeb", + "fields": { + "code_commune_insee": "23044", + "nom_de_la_commune": "CHAMBON STE CROIX", + "code_postal": "23220", + "coordonnees_gps": [ + 46.3528332177, + 1.76950395174 + ], + "libelle_d_acheminement": "CHAMBON STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76950395174, + 46.3528332177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c74f0b81a0f10e0eb808666c80ba229e6c684d1d", + "fields": { + "code_commune_insee": "23045", + "nom_de_la_commune": "CHAMBON SUR VOUEIZE", + "code_postal": "23170", + "coordonnees_gps": [ + 46.1927327161, + 2.41857573125 + ], + "libelle_d_acheminement": "CHAMBON SUR VOUEIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41857573125, + 46.1927327161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e35f5e52156944974441bd36e06bbd1c5711649a", + "fields": { + "code_commune_insee": "23047", + "nom_de_la_commune": "CHAMBORAND", + "code_postal": "23240", + "coordonnees_gps": [ + 46.1570722156, + 1.57302585912 + ], + "libelle_d_acheminement": "CHAMBORAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57302585912, + 46.1570722156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ca49d5e1eea42191980eba4fb2a0599caec4c43", + "fields": { + "code_commune_insee": "23057", + "nom_de_la_commune": "CHATELUS MALVALEIX", + "code_postal": "23270", + "coordonnees_gps": [ + 46.2969350634, + 2.03300541639 + ], + "libelle_d_acheminement": "CHATELUS MALVALEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03300541639, + 46.2969350634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf9dc6d96c858bc378d728a3c8d6512beb72e41f", + "fields": { + "code_commune_insee": "23060", + "nom_de_la_commune": "CHAVANAT", + "code_postal": "23250", + "coordonnees_gps": [ + 45.9523570692, + 1.96630866887 + ], + "libelle_d_acheminement": "CHAVANAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96630866887, + 45.9523570692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d77fa1d48e71c030a03ad2af310432f5124a15e", + "fields": { + "code_commune_insee": "23063", + "nom_de_la_commune": "CLAIRAVAUX", + "code_postal": "23500", + "coordonnees_gps": [ + 45.7760335955, + 2.17700112411 + ], + "libelle_d_acheminement": "CLAIRAVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17700112411, + 45.7760335955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92378aa7d6fa39b5a3d4c1b5f46221f1ab9091fe", + "fields": { + "code_commune_insee": "23067", + "nom_de_la_commune": "LA COURTINE", + "code_postal": "23100", + "coordonnees_gps": [ + 45.7301505844, + 2.24382828385 + ], + "libelle_d_acheminement": "LA COURTINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24382828385, + 45.7301505844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49f18344aeb08e8dcda0a9cde8a081e51559ae29", + "fields": { + "code_commune_insee": "23068", + "nom_de_la_commune": "CRESSAT", + "code_postal": "23140", + "coordonnees_gps": [ + 46.1345372274, + 2.09295080536 + ], + "libelle_d_acheminement": "CRESSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09295080536, + 46.1345372274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee9823e50fff5a9d1fb75f2c73597ecec1a76239", + "fields": { + "code_commune_insee": "23069", + "nom_de_la_commune": "CROCQ", + "code_postal": "23260", + "coordonnees_gps": [ + 45.8502209227, + 2.36477428271 + ], + "libelle_d_acheminement": "CROCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36477428271, + 45.8502209227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26116096ad04f3899d99df14c195c8b49f313bcf", + "fields": { + "code_commune_insee": "23089", + "nom_de_la_commune": "GENOUILLAC", + "code_postal": "23350", + "coordonnees_gps": [ + 46.3446574595, + 1.9934844532 + ], + "libelle_d_acheminement": "GENOUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9934844532, + 46.3446574595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7124bc165456894a822479e978cc467c76186ca", + "fields": { + "ligne_5": "PIGEROLLES", + "code_commune_insee": "23090", + "libelle_d_acheminement": "GENTIOUX PIGEROLLES", + "code_postal": "23340", + "nom_de_la_commune": "GENTIOUX PIGEROLLES", + "coordonnees_gps": [ + 45.7846764541, + 2.00852107248 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00852107248, + 45.7846764541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a6e640020d80a25b1a63718d900e7ee1f93d3ce", + "fields": { + "code_commune_insee": "23093", + "nom_de_la_commune": "GOUZON", + "code_postal": "23230", + "coordonnees_gps": [ + 46.1872230665, + 2.23078389232 + ], + "libelle_d_acheminement": "GOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23078389232, + 46.1872230665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3abe74f597157cd165795f9e0269e722df8a008b", + "fields": { + "code_commune_insee": "23100", + "nom_de_la_commune": "JARNAGES", + "code_postal": "23140", + "coordonnees_gps": [ + 46.1901556115, + 2.0803969544 + ], + "libelle_d_acheminement": "JARNAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0803969544, + 46.1901556115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ef29e250db4a69a0e487f73ed11f9b2bd0853bf", + "fields": { + "code_commune_insee": "23104", + "nom_de_la_commune": "LAVAUFRANCHE", + "code_postal": "23600", + "coordonnees_gps": [ + 46.3054306554, + 2.27199399628 + ], + "libelle_d_acheminement": "LAVAUFRANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27199399628, + 46.3054306554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b28305731d3637965ef16a32c18ceeb2675f23c", + "fields": { + "code_commune_insee": "23105", + "nom_de_la_commune": "LAVAVEIX LES MINES", + "code_postal": "23150", + "coordonnees_gps": [ + 46.0743634605, + 2.09358271092 + ], + "libelle_d_acheminement": "LAVAVEIX LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09358271092, + 46.0743634605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f096ba77d27c0d5852b48f451448e56dbb69cb5e", + "fields": { + "code_commune_insee": "23107", + "nom_de_la_commune": "LEPINAS", + "code_postal": "23150", + "coordonnees_gps": [ + 46.0586619387, + 1.93693233899 + ], + "libelle_d_acheminement": "LEPINAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93693233899, + 46.0586619387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b7bc9bd8af4180ee23d36abf011345fc1340ecc", + "fields": { + "code_commune_insee": "23108", + "nom_de_la_commune": "LEYRAT", + "code_postal": "23600", + "coordonnees_gps": [ + 46.3583997455, + 2.29375289146 + ], + "libelle_d_acheminement": "LEYRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29375289146, + 46.3583997455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed06a1491fa7762286355d9439d901fecb96e50b", + "fields": { + "ligne_5": "LIGNAUD", + "code_commune_insee": "23112", + "libelle_d_acheminement": "LOURDOUEIX ST PIERRE", + "code_postal": "23360", + "nom_de_la_commune": "LOURDOUEIX ST PIERRE", + "coordonnees_gps": [ + 46.3997480565, + 1.82842448851 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82842448851, + 46.3997480565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0f0882b893ff78e596fe7f7ff8e571517a805a1", + "fields": { + "code_commune_insee": "23114", + "nom_de_la_commune": "LUSSAT", + "code_postal": "23170", + "coordonnees_gps": [ + 46.1860711865, + 2.33160367389 + ], + "libelle_d_acheminement": "LUSSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33160367389, + 46.1860711865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18477191d7e6b2d594b047f6578393f40936894a", + "fields": { + "code_commune_insee": "23116", + "nom_de_la_commune": "MAINSAT", + "code_postal": "23700", + "coordonnees_gps": [ + 46.0476583582, + 2.38634930311 + ], + "libelle_d_acheminement": "MAINSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38634930311, + 46.0476583582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e581ccf5f8a865061223814e4ac573ac6628b32", + "fields": { + "code_commune_insee": "23117", + "nom_de_la_commune": "MAISON FEYNE", + "code_postal": "23800", + "coordonnees_gps": [ + 46.3472689397, + 1.67021270506 + ], + "libelle_d_acheminement": "MAISON FEYNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67021270506, + 46.3472689397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "882e2e1148ea07162c8057602a4824d24d17eb30", + "fields": { + "code_commune_insee": "23133", + "nom_de_la_commune": "MONTBOUCHER", + "code_postal": "23400", + "coordonnees_gps": [ + 45.9478595748, + 1.68034287927 + ], + "libelle_d_acheminement": "MONTBOUCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68034287927, + 45.9478595748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c600e50425d797a637630669925dffabc7f558a", + "fields": { + "code_commune_insee": "23141", + "nom_de_la_commune": "NAILLAT", + "code_postal": "23800", + "coordonnees_gps": [ + 46.258586675, + 1.65007660909 + ], + "libelle_d_acheminement": "NAILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65007660909, + 46.258586675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed44050714f8578c0377e7ed51d2b032711c3ecc", + "fields": { + "code_commune_insee": "23142", + "nom_de_la_commune": "NEOUX", + "code_postal": "23200", + "coordonnees_gps": [ + 45.9157589917, + 2.26372873002 + ], + "libelle_d_acheminement": "NEOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26372873002, + 45.9157589917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8e3218ed8905722d7ccf5425e694d309e0acc9b", + "fields": { + "code_commune_insee": "23143", + "nom_de_la_commune": "NOTH", + "code_postal": "23300", + "coordonnees_gps": [ + 46.2422286438, + 1.58264517372 + ], + "libelle_d_acheminement": "NOTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58264517372, + 46.2422286438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f59f4ce4e07629fc1e664b0112daf0aef8d34261", + "fields": { + "ligne_5": "PARSAC", + "code_commune_insee": "23149", + "libelle_d_acheminement": "PARSAC RIMONDEIX", + "code_postal": "23140", + "nom_de_la_commune": "PARSAC RIMONDEIX", + "coordonnees_gps": [ + 46.1973815424, + 2.1397496521 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1397496521, + 46.1973815424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cb17ba4f9f5fa21f5db8f87644ecdb2fb07c9be", + "fields": { + "code_commune_insee": "23164", + "nom_de_la_commune": "ROUGNAT", + "code_postal": "23700", + "coordonnees_gps": [ + 46.0578019066, + 2.49617686559 + ], + "libelle_d_acheminement": "ROUGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49617686559, + 46.0578019066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbf5fe5e5ec49ddeb2f3e51391866d36aa0ae1eb", + "fields": { + "code_commune_insee": "23170", + "nom_de_la_commune": "SAVENNES", + "code_postal": "23000", + "coordonnees_gps": [ + 46.1090525957, + 1.88611350462 + ], + "libelle_d_acheminement": "SAVENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88611350462, + 46.1090525957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c8e79ce829aaea93a6c816cb952c4f1985e2402", + "fields": { + "code_commune_insee": "23190", + "nom_de_la_commune": "ST DOMET", + "code_postal": "23190", + "coordonnees_gps": [ + 46.050744775, + 2.29544986459 + ], + "libelle_d_acheminement": "ST DOMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29544986459, + 46.050744775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeae9216b72024cdf7df94e325ce9c4e59066278", + "fields": { + "code_commune_insee": "23195", + "nom_de_la_commune": "ST FIEL", + "code_postal": "23000", + "coordonnees_gps": [ + 46.2132149531, + 1.89527202748 + ], + "libelle_d_acheminement": "ST FIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89527202748, + 46.2132149531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdefa028c70f4e96e9ede7a5bc521e85f634307b", + "fields": { + "code_commune_insee": "23197", + "nom_de_la_commune": "ST GEORGES LA POUGE", + "code_postal": "23250", + "coordonnees_gps": [ + 45.9974282432, + 1.96275929639 + ], + "libelle_d_acheminement": "ST GEORGES LA POUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96275929639, + 45.9974282432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48ff1f710b1df29820d5defb9a1229ee302f9809", + "fields": { + "code_commune_insee": "23199", + "nom_de_la_commune": "ST GERMAIN BEAUPRE", + "code_postal": "23160", + "coordonnees_gps": [ + 46.3160359158, + 1.55742406465 + ], + "libelle_d_acheminement": "ST GERMAIN BEAUPRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55742406465, + 46.3160359158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56eec9286c4f2bc75f838e9ba285d7badecdb6f5", + "fields": { + "ligne_5": "FORGEVIEILLE", + "code_commune_insee": "23199", + "libelle_d_acheminement": "ST GERMAIN BEAUPRE", + "code_postal": "23160", + "nom_de_la_commune": "ST GERMAIN BEAUPRE", + "coordonnees_gps": [ + 46.3160359158, + 1.55742406465 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55742406465, + 46.3160359158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dcc25a2de1ffbe609764c7c5e91bac82d7da4e5", + "fields": { + "code_commune_insee": "23210", + "nom_de_la_commune": "ST MAIXANT", + "code_postal": "23200", + "coordonnees_gps": [ + 45.9987180402, + 2.19897902296 + ], + "libelle_d_acheminement": "ST MAIXANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19897902296, + 45.9987180402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee3f6a0880c644afc5de66af9ffc546f88a60727", + "fields": { + "code_commune_insee": "23216", + "nom_de_la_commune": "ST MARTIN CHATEAU", + "code_postal": "23460", + "coordonnees_gps": [ + 45.8498336813, + 1.81176141675 + ], + "libelle_d_acheminement": "ST MARTIN CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81176141675, + 45.8498336813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05a37f7d72c53a49e0d5791001a8f544f4ca288d", + "fields": { + "code_commune_insee": "23222", + "nom_de_la_commune": "ST MICHEL DE VEISSE", + "code_postal": "23480", + "coordonnees_gps": [ + 45.9536199326, + 2.05002532305 + ], + "libelle_d_acheminement": "ST MICHEL DE VEISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05002532305, + 45.9536199326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82b59213ca8faa13865cfaa44bf908f0e95ab61c", + "fields": { + "code_commune_insee": "23224", + "nom_de_la_commune": "ST ORADOUX DE CHIROUZE", + "code_postal": "23100", + "coordonnees_gps": [ + 45.7286217698, + 2.32501480873 + ], + "libelle_d_acheminement": "ST ORADOUX DE CHIROUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32501480873, + 45.7286217698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d18f7b5f3d3ecead6a84a407a88055acdc926a89", + "fields": { + "code_commune_insee": "23225", + "nom_de_la_commune": "ST ORADOUX PRES CROCQ", + "code_postal": "23260", + "coordonnees_gps": [ + 45.8887496199, + 2.37555654665 + ], + "libelle_d_acheminement": "ST ORADOUX PRES CROCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37555654665, + 45.8887496199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05a3586d849e6a1005f745d7583be4b34db9a3c8", + "fields": { + "code_commune_insee": "23229", + "nom_de_la_commune": "ST PARDOUX LES CARDS", + "code_postal": "23150", + "coordonnees_gps": [ + 46.0920870349, + 2.12456060893 + ], + "libelle_d_acheminement": "ST PARDOUX LES CARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12456060893, + 46.0920870349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97e13e9e6028ee313be9edaab0f3b46c89272181", + "fields": { + "code_commune_insee": "23258", + "nom_de_la_commune": "VAREILLES", + "code_postal": "23300", + "coordonnees_gps": [ + 46.3050162519, + 1.45603078301 + ], + "libelle_d_acheminement": "VAREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45603078301, + 46.3050162519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c3698faa9dc21e26d496c280ebce70a7e25d30c", + "fields": { + "code_commune_insee": "23261", + "nom_de_la_commune": "VIERSAT", + "code_postal": "23170", + "coordonnees_gps": [ + 46.2630214571, + 2.44518015435 + ], + "libelle_d_acheminement": "VIERSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44518015435, + 46.2630214571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9be19a5fdcf893d8c44cb7206aed24a48a6ba89e", + "fields": { + "code_commune_insee": "23262", + "nom_de_la_commune": "VIGEVILLE", + "code_postal": "23140", + "coordonnees_gps": [ + 46.1599934316, + 2.07290602418 + ], + "libelle_d_acheminement": "VIGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07290602418, + 46.1599934316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cee6c680bfbb4605f85150f4b1eb30e972017949", + "fields": { + "code_commune_insee": "24007", + "nom_de_la_commune": "ALLEMANS", + "code_postal": "24600", + "coordonnees_gps": [ + 45.288412571, + 0.305272710344 + ], + "libelle_d_acheminement": "ALLEMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.305272710344, + 45.288412571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2de52addf588fa0ca822e21770585e8c00c00df", + "fields": { + "code_commune_insee": "24014", + "nom_de_la_commune": "AUBAS", + "code_postal": "24290", + "coordonnees_gps": [ + 45.0793796872, + 1.19807010544 + ], + "libelle_d_acheminement": "AUBAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19807010544, + 45.0793796872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9da125d45317d6ac0c65fbe95a3a49278993e8fb", + "fields": { + "code_commune_insee": "24018", + "nom_de_la_commune": "AURIAC DU PERIGORD", + "code_postal": "24290", + "coordonnees_gps": [ + 45.1125569337, + 1.12728719792 + ], + "libelle_d_acheminement": "AURIAC DU PERIGORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12728719792, + 45.1125569337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8743f43ed4a31339632ee8f0ef5917aba083cdc5", + "fields": { + "ligne_5": "ST ANTOINE D AUBEROCHE", + "code_commune_insee": "24026", + "libelle_d_acheminement": "BASSILLAC ET AUBEROCHE", + "code_postal": "24330", + "nom_de_la_commune": "BASSILLAC ET AUBEROCHE", + "coordonnees_gps": [ + 45.1789592433, + 0.820956969026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.820956969026, + 45.1789592433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "701ca11222049c7666b612e9b2eb2b1c1dbe5e79", + "fields": { + "ligne_5": "BEAUMONT DU PERIGORD", + "code_commune_insee": "24028", + "libelle_d_acheminement": "BEAUMONTOIS EN PERIGORD", + "code_postal": "24440", + "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", + "coordonnees_gps": [ + 44.773801258, + 0.75409629331 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75409629331, + 44.773801258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0637c352c089ed74b2eaac9b48f7eb260f6bafea", + "fields": { + "ligne_5": "BORN DE CHAMPS", + "code_commune_insee": "24028", + "libelle_d_acheminement": "BEAUMONTOIS EN PERIGORD", + "code_postal": "24440", + "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", + "coordonnees_gps": [ + 44.773801258, + 0.75409629331 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75409629331, + 44.773801258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36c190f83b09fee6d1fadbbd7bec37cd05233c07", + "fields": { + "ligne_5": "STE SABINE BORN", + "code_commune_insee": "24028", + "libelle_d_acheminement": "BEAUMONTOIS EN PERIGORD", + "code_postal": "24440", + "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", + "coordonnees_gps": [ + 44.773801258, + 0.75409629331 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75409629331, + 44.773801258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5517f2b41ed6c15751b7d963d0bb002725897144", + "fields": { + "code_commune_insee": "24030", + "nom_de_la_commune": "BEAUREGARD DE TERRASSON", + "code_postal": "24120", + "coordonnees_gps": [ + 45.1558279291, + 1.22862494284 + ], + "libelle_d_acheminement": "BEAUREGARD DE TERRASSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22862494284, + 45.1558279291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "497f2b6fa29eba6bad0f69768f018ce91502bacf", + "fields": { + "code_commune_insee": "24031", + "nom_de_la_commune": "BEAUREGARD ET BASSAC", + "code_postal": "24140", + "coordonnees_gps": [ + 44.9936188028, + 0.632602848395 + ], + "libelle_d_acheminement": "BEAUREGARD ET BASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.632602848395, + 44.9936188028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c5b73379db96e49bebcbe79235b8b7a065fa0bd", + "fields": { + "code_commune_insee": "24034", + "nom_de_la_commune": "BELEYMAS", + "code_postal": "24140", + "coordonnees_gps": [ + 44.9869120353, + 0.491344255346 + ], + "libelle_d_acheminement": "BELEYMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.491344255346, + 44.9869120353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58e78a052b2bbad78e8f013c653c9f9b3d0f00e0", + "fields": { + "ligne_5": "FONGALOP", + "code_commune_insee": "24035", + "libelle_d_acheminement": "PAYS DE BELVES", + "code_postal": "24170", + "nom_de_la_commune": "PAYS DE BELVES", + "coordonnees_gps": [ + 44.7462034463, + 0.980486487157 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.980486487157, + 44.7462034463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2def5b25727a8497bd4b3d3cbd08b2a41ddf49c7", + "fields": { + "code_commune_insee": "24037", + "nom_de_la_commune": "BERGERAC", + "code_postal": "24100", + "coordonnees_gps": [ + 44.8543751872, + 0.486529423457 + ], + "libelle_d_acheminement": "BERGERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.486529423457, + 44.8543751872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d3c396b3b2f80b73e8242619b22b56ed7493cb2", + "fields": { + "code_commune_insee": "24040", + "nom_de_la_commune": "BEYNAC ET CAZENAC", + "code_postal": "24220", + "coordonnees_gps": [ + 44.8572702356, + 1.13222078955 + ], + "libelle_d_acheminement": "BEYNAC ET CAZENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13222078955, + 44.8572702356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0b26deddf6c34307dc8967990014bc07208caaa", + "fields": { + "code_commune_insee": "24045", + "nom_de_la_commune": "BOISSE", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7162436565, + 0.656505019107 + ], + "libelle_d_acheminement": "BOISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.656505019107, + 44.7162436565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14178b8cd28b6a5551c6b11b4fbe846dd7c10f5a", + "fields": { + "code_commune_insee": "24046", + "nom_de_la_commune": "BOISSEUILH", + "code_postal": "24390", + "coordonnees_gps": [ + 45.2814362613, + 1.17805421579 + ], + "libelle_d_acheminement": "BOISSEUILH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17805421579, + 45.2814362613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b5710062255c35e3aab654d1e80942942bfe565", + "fields": { + "code_commune_insee": "24052", + "nom_de_la_commune": "BOUILLAC", + "code_postal": "24480", + "coordonnees_gps": [ + 44.7652428032, + 0.920412186744 + ], + "libelle_d_acheminement": "BOUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.920412186744, + 44.7652428032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "717b93694c3f3d5f057ece598504e8e60b1928da", + "fields": { + "ligne_5": "BOULAZAC", + "code_commune_insee": "24053", + "libelle_d_acheminement": "BOULAZAC ISLE MANOIRE", + "code_postal": "24750", + "nom_de_la_commune": "BOULAZAC ISLE MANOIRE", + "coordonnees_gps": [ + 45.1737726952, + 0.769368950586 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.769368950586, + 45.1737726952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2b2d5da32cee4da0fcbd63cc53edd798f712ea0", + "fields": { + "code_commune_insee": "24061", + "nom_de_la_commune": "BOURROU", + "code_postal": "24110", + "coordonnees_gps": [ + 45.0481265841, + 0.604278043651 + ], + "libelle_d_acheminement": "BOURROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.604278043651, + 45.0481265841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b97709b98b6223801a5b2918656b396d6fadca72", + "fields": { + "ligne_5": "LA GONTERIE BOULOUNEIX", + "code_commune_insee": "24064", + "libelle_d_acheminement": "BRANTOME EN PERIGORD", + "code_postal": "24310", + "nom_de_la_commune": "BRANTOME EN PERIGORD", + "coordonnees_gps": [ + 45.360114867, + 0.65590360604 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65590360604, + 45.360114867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3974416a0e6a24a3799f77b26fae287ab0c7c885", + "fields": { + "code_commune_insee": "24068", + "nom_de_la_commune": "LE BUISSON DE CADOUIN", + "code_postal": "24480", + "coordonnees_gps": [ + 44.8209697046, + 0.890058168742 + ], + "libelle_d_acheminement": "LE BUISSON DE CADOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.890058168742, + 44.8209697046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "577f808b31b5443ddc82684260a3464fb9129592", + "fields": { + "ligne_5": "CADOUIN", + "code_commune_insee": "24068", + "libelle_d_acheminement": "LE BUISSON DE CADOUIN", + "code_postal": "24480", + "nom_de_la_commune": "LE BUISSON DE CADOUIN", + "coordonnees_gps": [ + 44.8209697046, + 0.890058168742 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.890058168742, + 44.8209697046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c424ceffa957c9742703c93ffcea6d78b0a295a", + "fields": { + "code_commune_insee": "24084", + "nom_de_la_commune": "CARVES", + "code_postal": "24170", + "coordonnees_gps": [ + 44.7854908288, + 1.06057699804 + ], + "libelle_d_acheminement": "CARVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06057699804, + 44.7854908288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "882bea81db1fc22aaa81be22462a4155e278f0ea", + "fields": { + "code_commune_insee": "24088", + "nom_de_la_commune": "CAUSE DE CLERANS", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8732898421, + 0.672743624139 + ], + "libelle_d_acheminement": "CAUSE DE CLERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.672743624139, + 44.8732898421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d405d0b2e0f9ac251e458666c893c59cd34f726b", + "fields": { + "code_commune_insee": "24090", + "nom_de_la_commune": "CELLES", + "code_postal": "24600", + "coordonnees_gps": [ + 45.2925292578, + 0.412424261019 + ], + "libelle_d_acheminement": "CELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.412424261019, + 45.2925292578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b7bd2dfac099a452a80086c16327c81ea1f9e73", + "fields": { + "code_commune_insee": "24096", + "nom_de_la_commune": "CHAMPAGNAC DE BELAIR", + "code_postal": "24530", + "coordonnees_gps": [ + 45.400469208, + 0.69507098451 + ], + "libelle_d_acheminement": "CHAMPAGNAC DE BELAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69507098451, + 45.400469208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e287018adcef23290634a36e4fa898c92ff91fe7", + "fields": { + "code_commune_insee": "24106", + "nom_de_la_commune": "LA CHAPELLE AUBAREIL", + "code_postal": "24290", + "coordonnees_gps": [ + 45.0104993556, + 1.18942636109 + ], + "libelle_d_acheminement": "LA CHAPELLE AUBAREIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18942636109, + 45.0104993556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99e5b9b0191ce0cce2250ad62a0df4d55dbed71f", + "fields": { + "code_commune_insee": "24110", + "nom_de_la_commune": "LA CHAPELLE MONTABOURLET", + "code_postal": "24320", + "coordonnees_gps": [ + 45.394949122, + 0.457653171852 + ], + "libelle_d_acheminement": "LA CHAPELLE MONTABOURLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.457653171852, + 45.394949122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "823d9595b037720815e1716ccc66d6f49757feb9", + "fields": { + "code_commune_insee": "24111", + "nom_de_la_commune": "LA CHAPELLE MONTMOREAU", + "code_postal": "24300", + "coordonnees_gps": [ + 45.4499413801, + 0.644225209813 + ], + "libelle_d_acheminement": "LA CHAPELLE MONTMOREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.644225209813, + 45.4499413801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c083e628be9609b821f23bc4c0506c06c088a14", + "fields": { + "code_commune_insee": "24113", + "nom_de_la_commune": "LA CHAPELLE ST JEAN", + "code_postal": "24390", + "coordonnees_gps": [ + 45.1954042265, + 1.16437857319 + ], + "libelle_d_acheminement": "LA CHAPELLE ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16437857319, + 45.1954042265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4aefb46b71c9df827095b41a5d587e1d1e20ec62", + "fields": { + "code_commune_insee": "24114", + "nom_de_la_commune": "CHASSAIGNES", + "code_postal": "24600", + "coordonnees_gps": [ + 45.2543656522, + 0.249815310877 + ], + "libelle_d_acheminement": "CHASSAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.249815310877, + 45.2543656522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ef1f57517135c710790549f8811012c6129a76e", + "fields": { + "code_commune_insee": "24115", + "nom_de_la_commune": "CHATEAU L EVEQUE", + "code_postal": "24460", + "coordonnees_gps": [ + 45.2584930468, + 0.686400919033 + ], + "libelle_d_acheminement": "CHATEAU L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.686400919033, + 45.2584930468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8acee3ffe98790a7211408df2f3a2b77f82ca205", + "fields": { + "code_commune_insee": "24116", + "nom_de_la_commune": "CHATRES", + "code_postal": "24120", + "coordonnees_gps": [ + 45.1873956526, + 1.19479801127 + ], + "libelle_d_acheminement": "CHATRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19479801127, + 45.1873956526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "070c044139709e529ee7fd1822458a5a4236927e", + "fields": { + "code_commune_insee": "24140", + "nom_de_la_commune": "COURS DE PILE", + "code_postal": "24520", + "coordonnees_gps": [ + 44.8364921675, + 0.557691807136 + ], + "libelle_d_acheminement": "COURS DE PILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.557691807136, + 44.8364921675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d89cbaed398a548325830c4d09025987459eaa9b", + "fields": { + "code_commune_insee": "24141", + "nom_de_la_commune": "COUTURES", + "code_postal": "24320", + "coordonnees_gps": [ + 45.3275321431, + 0.395477673293 + ], + "libelle_d_acheminement": "COUTURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.395477673293, + 45.3275321431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "753dfa0d11f5928fb27e8972838e4887f1766149", + "fields": { + "ligne_5": "COUX ET BIGAROQUE", + "code_commune_insee": "24142", + "libelle_d_acheminement": "COUX ET BIGAROQUE MOUZENS", + "code_postal": "24220", + "nom_de_la_commune": "COUX ET BIGAROQUE MOUZENS", + "coordonnees_gps": [ + 44.8481194805, + 0.967817151938 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.967817151938, + 44.8481194805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "508ac844c9460fb228c5b37a4d3ed16ddb466df0", + "fields": { + "ligne_5": "LA BOISSIERE D ANS", + "code_commune_insee": "24147", + "libelle_d_acheminement": "CUBJAC AUVEZERE VAL D ANS", + "code_postal": "24640", + "nom_de_la_commune": "CUBJAC AUVEZERE VAL D ANS", + "coordonnees_gps": [ + 45.2253686677, + 0.939009779749 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.939009779749, + 45.2253686677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eca11fa664597bb8e5ea6f6fa1b64327ec75692", + "fields": { + "code_commune_insee": "24167", + "nom_de_la_commune": "EYMET", + "code_postal": "24500", + "coordonnees_gps": [ + 44.6734878738, + 0.394630652209 + ], + "libelle_d_acheminement": "EYMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.394630652209, + 44.6734878738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5103411b2aa740fe53c00e6d4ed793afaf41b93", + "fields": { + "code_commune_insee": "24182", + "nom_de_la_commune": "LE FLEIX", + "code_postal": "24130", + "coordonnees_gps": [ + 44.880919054, + 0.262559942743 + ], + "libelle_d_acheminement": "LE FLEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.262559942743, + 44.880919054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61c4153d7f09a885392672ff0870e1c7e7395e03", + "fields": { + "code_commune_insee": "24195", + "nom_de_la_commune": "GAUGEAC", + "code_postal": "24540", + "coordonnees_gps": [ + 44.6662613577, + 0.879002663068 + ], + "libelle_d_acheminement": "GAUGEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.879002663068, + 44.6662613577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fd0cf6ebea2055b31de5fc2e5f7956eed7e6155", + "fields": { + "code_commune_insee": "24200", + "nom_de_la_commune": "GRAND BRASSAC", + "code_postal": "24350", + "coordonnees_gps": [ + 45.3001059626, + 0.485790051085 + ], + "libelle_d_acheminement": "GRAND BRASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.485790051085, + 45.3001059626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8aee85ada2f9f7f0ab683b0385018129f1e2e9a", + "fields": { + "code_commune_insee": "24207", + "nom_de_la_commune": "GROLEJAC", + "code_postal": "24250", + "coordonnees_gps": [ + 44.809654235, + 1.29264376506 + ], + "libelle_d_acheminement": "GROLEJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29264376506, + 44.809654235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e099ecff45d30d3e9126627d2a8081f456984e5", + "fields": { + "code_commune_insee": "24209", + "nom_de_la_commune": "HAUTEFAYE", + "code_postal": "24300", + "coordonnees_gps": [ + 45.5360605721, + 0.508242554831 + ], + "libelle_d_acheminement": "HAUTEFAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.508242554831, + 45.5360605721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e22ebe845a3bc074351dce1dc71da2f1958db0a2", + "fields": { + "code_commune_insee": "24211", + "nom_de_la_commune": "ISSAC", + "code_postal": "24400", + "coordonnees_gps": [ + 45.0150209065, + 0.451710444544 + ], + "libelle_d_acheminement": "ISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.451710444544, + 45.0150209065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63ff8a1e0aea9b62478b9a5677d4401ba5e94de0", + "fields": { + "code_commune_insee": "24213", + "nom_de_la_commune": "JAURE", + "code_postal": "24140", + "coordonnees_gps": [ + 45.0547363387, + 0.557056437586 + ], + "libelle_d_acheminement": "JAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.557056437586, + 45.0547363387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de1af02b83ccc1a87cd8a325d1044bc019efa76b", + "fields": { + "code_commune_insee": "24221", + "nom_de_la_commune": "RUDEAU LADOSSE", + "code_postal": "24340", + "coordonnees_gps": [ + 45.490529686, + 0.533061381093 + ], + "libelle_d_acheminement": "RUDEAU LADOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.533061381093, + 45.490529686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b8a7b4b983727ebb23a9be856cdec9134f05d52", + "fields": { + "code_commune_insee": "24224", + "nom_de_la_commune": "LAMONZIE MONTASTRUC", + "code_postal": "24520", + "coordonnees_gps": [ + 44.901484714, + 0.588394489219 + ], + "libelle_d_acheminement": "LAMONZIE MONTASTRUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.588394489219, + 44.901484714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "161466bcbb693a9205d6e42fee3b03a45ce462de", + "fields": { + "code_commune_insee": "24230", + "nom_de_la_commune": "LARZAC", + "code_postal": "24170", + "coordonnees_gps": [ + 44.7393792492, + 1.00004312034 + ], + "libelle_d_acheminement": "LARZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00004312034, + 44.7393792492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fe75f534d064074621a8306e5c3dd4af95fa7bc", + "fields": { + "code_commune_insee": "24243", + "nom_de_la_commune": "LISLE", + "code_postal": "24350", + "coordonnees_gps": [ + 45.2711447548, + 0.557283730215 + ], + "libelle_d_acheminement": "LISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.557283730215, + 45.2711447548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91a1c873979832728851c996b7744e54fdc5d474", + "fields": { + "code_commune_insee": "24245", + "nom_de_la_commune": "LOUBEJAC", + "code_postal": "24550", + "coordonnees_gps": [ + 44.6047590618, + 1.07450251604 + ], + "libelle_d_acheminement": "LOUBEJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07450251604, + 44.6047590618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01dfb936b990054a3e1898c83b9e11267f3f80ea", + "fields": { + "code_commune_insee": "24248", + "nom_de_la_commune": "LUSSAS ET NONTRONNEAU", + "code_postal": "24300", + "coordonnees_gps": [ + 45.5207501374, + 0.580509528779 + ], + "libelle_d_acheminement": "LUSSAS ET NONTRONNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.580509528779, + 45.5207501374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83cb61fcabe61c6a0ddc7a232b70c7284978e625", + "fields": { + "ligne_5": "LES GRAULGES", + "code_commune_insee": "24253", + "libelle_d_acheminement": "MAREUIL EN PERIGORD", + "code_postal": "24340", + "nom_de_la_commune": "MAREUIL EN PERIGORD", + "coordonnees_gps": [ + 45.4407517575, + 0.447904772653 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.447904772653, + 45.4407517575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b1ae7693fa75d55ac6f428f498736398fc793da", + "fields": { + "code_commune_insee": "24257", + "nom_de_la_commune": "MARSALES", + "code_postal": "24540", + "coordonnees_gps": [ + 44.699702929, + 0.890622734446 + ], + "libelle_d_acheminement": "MARSALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.890622734446, + 44.699702929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "125a85c37e1102b391b8893445ba8f58502701eb", + "fields": { + "ligne_5": "MAURENS", + "code_commune_insee": "24259", + "libelle_d_acheminement": "EYRAUD CREMPSE MAURENS", + "code_postal": "24140", + "nom_de_la_commune": "EYRAUD CREMPSE MAURENS", + "coordonnees_gps": [ + 44.9268775631, + 0.482243594531 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.482243594531, + 44.9268775631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34b53c968c21297bae1481d7728354349c6d091b", + "fields": { + "code_commune_insee": "24268", + "nom_de_la_commune": "MEYRALS", + "code_postal": "24220", + "coordonnees_gps": [ + 44.9077685753, + 1.07031759796 + ], + "libelle_d_acheminement": "MEYRALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07031759796, + 44.9077685753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef6909ca40adf73db677dda196b2c645cfd2e076", + "fields": { + "code_commune_insee": "24271", + "nom_de_la_commune": "MILHAC DE NONTRON", + "code_postal": "24470", + "coordonnees_gps": [ + 45.4728630664, + 0.791457302989 + ], + "libelle_d_acheminement": "MILHAC DE NONTRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.791457302989, + 45.4728630664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62397ffe8d11c09c2bb3d3c31832eaeff6a5e90d", + "fields": { + "code_commune_insee": "24278", + "nom_de_la_commune": "MONMADALES", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7682307722, + 0.617535162339 + ], + "libelle_d_acheminement": "MONMADALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.617535162339, + 44.7682307722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b712105771cf5633eab52c4d81c2caf02917f7b", + "fields": { + "code_commune_insee": "24279", + "nom_de_la_commune": "MONMARVES", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7052439204, + 0.611301484868 + ], + "libelle_d_acheminement": "MONMARVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.611301484868, + 44.7052439204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69c5500800400d6736a8077e6964b645bad72688", + "fields": { + "code_commune_insee": "24297", + "nom_de_la_commune": "MOULIN NEUF", + "code_postal": "24700", + "coordonnees_gps": [ + 45.0000110213, + 0.0583950714149 + ], + "libelle_d_acheminement": "MOULIN NEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0583950714149, + 45.0000110213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06e73e80c74210dcc1d098cbb58510edbb816a28", + "fields": { + "code_commune_insee": "24301", + "nom_de_la_commune": "NADAILLAC", + "code_postal": "24590", + "coordonnees_gps": [ + 45.0316530259, + 1.40035024166 + ], + "libelle_d_acheminement": "NADAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40035024166, + 45.0316530259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccad9d00ba4ecdc2cc58d6f848a9e1db51044850", + "fields": { + "code_commune_insee": "24307", + "nom_de_la_commune": "NAUSSANNES", + "code_postal": "24440", + "coordonnees_gps": [ + 44.7501679867, + 0.718768871608 + ], + "libelle_d_acheminement": "NAUSSANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.718768871608, + 44.7501679867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dde8c33a2f24ebf9ea47bc9f442b287642a25feb", + "fields": { + "ligne_5": "NOTRE DAME DE SANILHAC", + "code_commune_insee": "24312", + "libelle_d_acheminement": "SANILHAC", + "code_postal": "24660", + "nom_de_la_commune": "SANILHAC", + "coordonnees_gps": [ + 45.1273768173, + 0.712740186269 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.712740186269, + 45.1273768173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1596f78e850f23d52425e6497c4078c4e5638f7e", + "fields": { + "ligne_5": "CHENAUD", + "code_commune_insee": "24316", + "libelle_d_acheminement": "PARCOUL CHENAUD", + "code_postal": "24410", + "nom_de_la_commune": "PARCOUL CHENAUD", + "coordonnees_gps": [ + 45.1915224992, + 0.0356230850507 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0356230850507, + 45.1915224992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac78fd9f3d3d6b3e2fa3ebf55ddf145c4f7b47ee", + "fields": { + "code_commune_insee": "24324", + "nom_de_la_commune": "PEYRIGNAC", + "code_postal": "24210", + "coordonnees_gps": [ + 45.1587056018, + 1.19562965886 + ], + "libelle_d_acheminement": "PEYRIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19562965886, + 45.1587056018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e04b206a8fc53c05aa8c34f48e5091e1e32647d5", + "fields": { + "code_commune_insee": "24338", + "nom_de_la_commune": "PRESSIGNAC VICQ", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8939755718, + 0.727634787867 + ], + "libelle_d_acheminement": "PRESSIGNAC VICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.727634787867, + 44.8939755718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0143b2b0d441c7be231d45bfb0280264cd085fff", + "fields": { + "code_commune_insee": "24339", + "nom_de_la_commune": "PREYSSAC D EXCIDEUIL", + "code_postal": "24160", + "coordonnees_gps": [ + 45.3419567033, + 1.10725833882 + ], + "libelle_d_acheminement": "PREYSSAC D EXCIDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10725833882, + 45.3419567033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deb359bfb710a5212276692b730f06bd06dc96e3", + "fields": { + "code_commune_insee": "24340", + "nom_de_la_commune": "PRIGONRIEUX", + "code_postal": "24130", + "coordonnees_gps": [ + 44.8690011937, + 0.409883661138 + ], + "libelle_d_acheminement": "PRIGONRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.409883661138, + 44.8690011937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0c9b8a2042cbee58335fe30a87a6e7aa1c49fe0", + "fields": { + "code_commune_insee": "24345", + "nom_de_la_commune": "QUEYSSAC", + "code_postal": "24140", + "coordonnees_gps": [ + 44.9151488173, + 0.532361895474 + ], + "libelle_d_acheminement": "QUEYSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.532361895474, + 44.9151488173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45da68b304ac6a0bfefb57fd8e3027a6758fdf00", + "fields": { + "code_commune_insee": "24349", + "nom_de_la_commune": "RAZAC DE SAUSSIGNAC", + "code_postal": "24240", + "coordonnees_gps": [ + 44.8135434686, + 0.290129313866 + ], + "libelle_d_acheminement": "RAZAC DE SAUSSIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.290129313866, + 44.8135434686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7194627ff57a8c032c4822ae0dc4366778bae4fb", + "fields": { + "code_commune_insee": "24351", + "nom_de_la_commune": "RIBAGNAC", + "code_postal": "24240", + "coordonnees_gps": [ + 44.7574541307, + 0.485586188502 + ], + "libelle_d_acheminement": "RIBAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.485586188502, + 44.7574541307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f947ed9883431d0fe0edfa70a56950c9dcd18f28", + "fields": { + "code_commune_insee": "24356", + "nom_de_la_commune": "ROUFFIGNAC ST CERNIN DE REILHAC", + "code_postal": "24580", + "coordonnees_gps": [ + 45.0511195053, + 0.96628484329 + ], + "libelle_d_acheminement": "ROUFFIGNAC ST CERNIN DE REILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.96628484329, + 45.0511195053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1930bbb3ca1ed582b652d1cecf3a7413245c182", + "fields": { + "code_commune_insee": "24360", + "nom_de_la_commune": "SAGELAT", + "code_postal": "24170", + "coordonnees_gps": [ + 44.7848099741, + 1.02305020725 + ], + "libelle_d_acheminement": "SAGELAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02305020725, + 44.7848099741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee50d9453afb612fff27b5ce2f8e129a690e063e", + "fields": { + "code_commune_insee": "24361", + "nom_de_la_commune": "ST AGNE", + "code_postal": "24520", + "coordonnees_gps": [ + 44.8351095994, + 0.623652141486 + ], + "libelle_d_acheminement": "ST AGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.623652141486, + 44.8351095994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35195e692bce9e0914142a6f14782c4c659a65ff", + "fields": { + "ligne_5": "STE ALVERE ST LAURENT LES BATONS", + "code_commune_insee": "24362", + "libelle_d_acheminement": "VAL DE LOUYRE ET CAUDEAU", + "code_postal": "24510", + "nom_de_la_commune": "VAL DE LOUYRE ET CAUDEAU", + "coordonnees_gps": [ + 44.9471700299, + 0.810464512122 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.810464512122, + 44.9471700299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae37b6dcebd59364adc1170369deb18926e214ec", + "fields": { + "ligne_5": "COLY", + "code_commune_insee": "24364", + "libelle_d_acheminement": "COLY ST AMAND", + "code_postal": "24120", + "nom_de_la_commune": "COLY ST AMAND", + "coordonnees_gps": [ + 45.0521923341, + 1.24653200545 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24653200545, + 45.0521923341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f3e6266b2ff05b169614afba40b43e00a33ef52", + "fields": { + "ligne_5": "PUYMANGOU", + "code_commune_insee": "24376", + "libelle_d_acheminement": "ST AULAYE PUYMANGOU", + "code_postal": "24410", + "nom_de_la_commune": "ST AULAYE PUYMANGOU", + "coordonnees_gps": [ + 45.1823303924, + 0.136303399419 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.136303399419, + 45.1823303924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f04169bf849daaa0e008ec26f3316247f8f83830", + "fields": { + "code_commune_insee": "24379", + "nom_de_la_commune": "ST AVIT SENIEUR", + "code_postal": "24440", + "coordonnees_gps": [ + 44.7750925645, + 0.824289637501 + ], + "libelle_d_acheminement": "ST AVIT SENIEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.824289637501, + 44.7750925645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35a2a33b570721f1ab946e3f07e07af5ffb559d2", + "fields": { + "code_commune_insee": "24381", + "nom_de_la_commune": "ST BARTHELEMY DE BUSSIERE", + "code_postal": "24360", + "coordonnees_gps": [ + 45.6415499133, + 0.747042269307 + ], + "libelle_d_acheminement": "ST BARTHELEMY DE BUSSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.747042269307, + 45.6415499133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3191f78397850dfd6b30acb975f511df365c0b79", + "fields": { + "code_commune_insee": "24385", + "nom_de_la_commune": "ST CERNIN DE LABARDE", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7634460851, + 0.584640392889 + ], + "libelle_d_acheminement": "ST CERNIN DE LABARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.584640392889, + 44.7634460851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3618c5fd83bdb4c042963c5ddbe1e995b206cffd", + "fields": { + "code_commune_insee": "24388", + "nom_de_la_commune": "ST CHAMASSY", + "code_postal": "24260", + "coordonnees_gps": [ + 44.8725532878, + 0.921257476514 + ], + "libelle_d_acheminement": "ST CHAMASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.921257476514, + 44.8725532878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b53fdffd7579e8c0c1b6331550ad557a1367284e", + "fields": { + "code_commune_insee": "24403", + "nom_de_la_commune": "ST FELIX DE BOURDEILLES", + "code_postal": "24340", + "coordonnees_gps": [ + 45.4073734663, + 0.565567317606 + ], + "libelle_d_acheminement": "ST FELIX DE BOURDEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.565567317606, + 45.4073734663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81ea8ac1b1c9c724ab276950256681cd1e201a69", + "fields": { + "code_commune_insee": "24408", + "nom_de_la_commune": "ST FRONT D ALEMPS", + "code_postal": "24460", + "coordonnees_gps": [ + 45.324593189, + 0.78971362781 + ], + "libelle_d_acheminement": "ST FRONT D ALEMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78971362781, + 45.324593189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89884651bc56f7de9abdc141a291458d4ac9695e", + "fields": { + "code_commune_insee": "24410", + "nom_de_la_commune": "ST FRONT LA RIVIERE", + "code_postal": "24300", + "coordonnees_gps": [ + 45.4652036046, + 0.719685871549 + ], + "libelle_d_acheminement": "ST FRONT LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.719685871549, + 45.4652036046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3064fdd621162995e671f1f10a4c240e6591a40b", + "fields": { + "code_commune_insee": "24411", + "nom_de_la_commune": "ST FRONT SUR NIZONNE", + "code_postal": "24300", + "coordonnees_gps": [ + 45.477464175, + 0.627327027878 + ], + "libelle_d_acheminement": "ST FRONT SUR NIZONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.627327027878, + 45.477464175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35b75cdbbbc0450e6c6610ba4d0eefb433a29b4b", + "fields": { + "code_commune_insee": "24412", + "nom_de_la_commune": "ST GENIES", + "code_postal": "24590", + "coordonnees_gps": [ + 44.9950404568, + 1.24436332323 + ], + "libelle_d_acheminement": "ST GENIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24436332323, + 44.9950404568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f3d66c8efe14cb344c2937baaaeee7f8f5e62e4", + "fields": { + "code_commune_insee": "24421", + "nom_de_la_commune": "ST GEYRAC", + "code_postal": "24330", + "coordonnees_gps": [ + 45.0745744027, + 0.907034401577 + ], + "libelle_d_acheminement": "ST GEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.907034401577, + 45.0745744027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fc6f8970e411b5c10f34b61d85e6d6b1401f8ad", + "fields": { + "code_commune_insee": "24424", + "nom_de_la_commune": "ST JEAN D ATAUX", + "code_postal": "24190", + "coordonnees_gps": [ + 45.1344343643, + 0.394306386157 + ], + "libelle_d_acheminement": "ST JEAN D ATAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.394306386157, + 45.1344343643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6e541dc44ce22ced690f28d72001a206f8e5785", + "fields": { + "code_commune_insee": "24426", + "nom_de_la_commune": "ST JEAN D ESTISSAC", + "code_postal": "24140", + "coordonnees_gps": [ + 45.0375932892, + 0.504834756989 + ], + "libelle_d_acheminement": "ST JEAN D ESTISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.504834756989, + 45.0375932892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd212467c68acf84334ec46d0e8dd6b801122324", + "fields": { + "code_commune_insee": "24432", + "nom_de_la_commune": "ST JULIEN DE LAMPON", + "code_postal": "24370", + "coordonnees_gps": [ + 44.8619888633, + 1.38181461735 + ], + "libelle_d_acheminement": "ST JULIEN DE LAMPON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38181461735, + 44.8619888633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "483c795d5c1e6604bec43b3114686364fb6674f4", + "fields": { + "code_commune_insee": "24438", + "nom_de_la_commune": "ST LAURENT LA VALLEE", + "code_postal": "24170", + "coordonnees_gps": [ + 44.7515526653, + 1.11564221671 + ], + "libelle_d_acheminement": "ST LAURENT LA VALLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11564221671, + 44.7515526653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af2442985626ebdb3cd4914b3414f7cbf731b55a", + "fields": { + "code_commune_insee": "24441", + "nom_de_la_commune": "ST LEON D ISSIGEAC", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7210156479, + 0.699300856862 + ], + "libelle_d_acheminement": "ST LEON D ISSIGEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.699300856862, + 44.7210156479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a0e0c9dd9a3fd7f74a42de78c120ceade7d77b2", + "fields": { + "code_commune_insee": "24443", + "nom_de_la_commune": "ST LEON SUR VEZERE", + "code_postal": "24290", + "coordonnees_gps": [ + 45.0180206005, + 1.08035107771 + ], + "libelle_d_acheminement": "ST LEON SUR VEZERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08035107771, + 45.0180206005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "454ad9c19918284644c594d8ef3728ba84b466ac", + "fields": { + "code_commune_insee": "24454", + "nom_de_la_commune": "ST MARTIN DE GURSON", + "code_postal": "24610", + "coordonnees_gps": [ + 44.9613529177, + 0.116208017065 + ], + "libelle_d_acheminement": "ST MARTIN DE GURSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.116208017065, + 44.9613529177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d84f2514ad7ff8476673fd8da2396c52a42c9f33", + "fields": { + "code_commune_insee": "24460", + "nom_de_la_commune": "ST MEARD DE DRONE", + "code_postal": "24600", + "coordonnees_gps": [ + 45.2508643912, + 0.40995292242 + ], + "libelle_d_acheminement": "ST MEARD DE DRONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40995292242, + 45.2508643912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e49fe92de4d79347b0a239bab1fbd3923182dfc8", + "fields": { + "code_commune_insee": "24468", + "nom_de_la_commune": "ST MICHEL DE VILLADEIX", + "code_postal": "24380", + "coordonnees_gps": [ + 44.9924485985, + 0.731493013563 + ], + "libelle_d_acheminement": "ST MICHEL DE VILLADEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.731493013563, + 44.9924485985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b8f698ae395498f189b6b1cffd0e927bca8edcb", + "fields": { + "code_commune_insee": "24474", + "nom_de_la_commune": "ST PANCRACE", + "code_postal": "24530", + "coordonnees_gps": [ + 45.4239359504, + 0.665300930124 + ], + "libelle_d_acheminement": "ST PANCRACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.665300930124, + 45.4239359504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61a29fa9ebd5cbed10a3d56b71f7a0b29af946f9", + "fields": { + "code_commune_insee": "24479", + "nom_de_la_commune": "ST PARDOUX LA RIVIERE", + "code_postal": "24470", + "coordonnees_gps": [ + 45.5030521403, + 0.748077099274 + ], + "libelle_d_acheminement": "ST PARDOUX LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.748077099274, + 45.5030521403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5443a9606f5750c2b9e0e561e87e2dabfa9b45c7", + "fields": { + "ligne_5": "ST ANTOINE CUMOND", + "code_commune_insee": "24490", + "libelle_d_acheminement": "ST PRIVAT EN PERIGORD", + "code_postal": "24410", + "nom_de_la_commune": "ST PRIVAT EN PERIGORD", + "coordonnees_gps": [ + 45.2186240618, + 0.192239513618 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.192239513618, + 45.2186240618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c065e5dfc605aff1b5e3d3e55d2fe9064432111", + "fields": { + "code_commune_insee": "24493", + "nom_de_la_commune": "ST RAPHAEL", + "code_postal": "24160", + "coordonnees_gps": [ + 45.3040514722, + 1.07314023244 + ], + "libelle_d_acheminement": "ST RAPHAEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07314023244, + 45.3040514722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cd36fee3c989edb3a67b5459324beba9712122c", + "fields": { + "code_commune_insee": "24504", + "nom_de_la_commune": "ST SULPICE DE ROUMAGNAC", + "code_postal": "24600", + "coordonnees_gps": [ + 45.1997873183, + 0.396312149822 + ], + "libelle_d_acheminement": "ST SULPICE DE ROUMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.396312149822, + 45.1997873183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2a7b66ff494bca8c71b26a94da1d563af14e163", + "fields": { + "code_commune_insee": "24519", + "nom_de_la_commune": "SARLANDE", + "code_postal": "24270", + "coordonnees_gps": [ + 45.4503411384, + 1.11555486206 + ], + "libelle_d_acheminement": "SARLANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11555486206, + 45.4503411384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c47420be5e7db85e5bd55a7f48d5127deb61fb7", + "fields": { + "code_commune_insee": "24521", + "nom_de_la_commune": "SARLIAC SUR L ISLE", + "code_postal": "24420", + "coordonnees_gps": [ + 45.2398639331, + 0.866391236032 + ], + "libelle_d_acheminement": "SARLIAC SUR L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.866391236032, + 45.2398639331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5056c413108fa762bdfa3c7f187c00f00b81786", + "fields": { + "code_commune_insee": "24524", + "nom_de_la_commune": "SAVIGNAC DE MIREMONT", + "code_postal": "24260", + "coordonnees_gps": [ + 44.9640593259, + 0.946655287926 + ], + "libelle_d_acheminement": "SAVIGNAC DE MIREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.946655287926, + 44.9640593259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97948c8525528f1bb0e5e72fca700c12d24444eb", + "fields": { + "code_commune_insee": "24525", + "nom_de_la_commune": "SAVIGNAC DE NONTRON", + "code_postal": "24300", + "coordonnees_gps": [ + 45.5479530134, + 0.718268014166 + ], + "libelle_d_acheminement": "SAVIGNAC DE NONTRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.718268014166, + 45.5479530134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f61a620d0761b68cce0cb91ad9cce29099741229", + "fields": { + "code_commune_insee": "24536", + "nom_de_la_commune": "SINGLEYRAC", + "code_postal": "24500", + "coordonnees_gps": [ + 44.7349910503, + 0.462492025992 + ], + "libelle_d_acheminement": "SINGLEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.462492025992, + 44.7349910503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9addfce5425ac7329a55bada08c93f4c37a5a94e", + "fields": { + "code_commune_insee": "24541", + "nom_de_la_commune": "SOUDAT", + "code_postal": "24360", + "coordonnees_gps": [ + 45.6218935044, + 0.567963968853 + ], + "libelle_d_acheminement": "SOUDAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.567963968853, + 45.6218935044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45349e66083011213d1a5f3c0ea4a1a74f1e5ad0", + "fields": { + "code_commune_insee": "24543", + "nom_de_la_commune": "SOURZAC", + "code_postal": "24400", + "coordonnees_gps": [ + 45.0492143458, + 0.415407786838 + ], + "libelle_d_acheminement": "SOURZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.415407786838, + 45.0492143458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41edab67bcefa28ddb169b4dfac9f6c78ed0ca64", + "fields": { + "code_commune_insee": "24544", + "nom_de_la_commune": "TAMNIES", + "code_postal": "24620", + "coordonnees_gps": [ + 44.9766760202, + 1.14965103627 + ], + "libelle_d_acheminement": "TAMNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14965103627, + 44.9766760202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d73196c836a886ed2359328d18ac9563e06cf31", + "fields": { + "code_commune_insee": "24545", + "nom_de_la_commune": "TEILLOTS", + "code_postal": "24390", + "coordonnees_gps": [ + 45.2592697088, + 1.21947483225 + ], + "libelle_d_acheminement": "TEILLOTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21947483225, + 45.2592697088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23579bc6c15d2b478b2a6c462df8830f3ef322cd", + "fields": { + "code_commune_insee": "24550", + "nom_de_la_commune": "THENON", + "code_postal": "24210", + "coordonnees_gps": [ + 45.1324103618, + 1.06369846915 + ], + "libelle_d_acheminement": "THENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06369846915, + 45.1324103618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01428c36ec21ac2a96f6cc221e9e26f17d2f3622", + "fields": { + "code_commune_insee": "24558", + "nom_de_la_commune": "TREMOLAT", + "code_postal": "24510", + "coordonnees_gps": [ + 44.874717216, + 0.833953321497 + ], + "libelle_d_acheminement": "TREMOLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.833953321497, + 44.874717216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75b7985e6a893c7678f9b2967ca82742d6000c07", + "fields": { + "code_commune_insee": "24559", + "nom_de_la_commune": "TURSAC", + "code_postal": "24620", + "coordonnees_gps": [ + 44.9720327079, + 1.04234396021 + ], + "libelle_d_acheminement": "TURSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04234396021, + 44.9720327079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25d9e85d8e7732744d35bb72f112af10830255b3", + "fields": { + "code_commune_insee": "24567", + "nom_de_la_commune": "VAUNAC", + "code_postal": "24800", + "coordonnees_gps": [ + 45.3698317098, + 0.867627664361 + ], + "libelle_d_acheminement": "VAUNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.867627664361, + 45.3698317098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fc1dd27871ecea1048022c590d7dd01c5d3d239", + "fields": { + "code_commune_insee": "24571", + "nom_de_la_commune": "VERGT", + "code_postal": "24380", + "coordonnees_gps": [ + 45.0414204199, + 0.710309790886 + ], + "libelle_d_acheminement": "VERGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.710309790886, + 45.0414204199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b9c45ce710aefcd03c06be89c3b8728af46d6e7", + "fields": { + "code_commune_insee": "24580", + "nom_de_la_commune": "VILLAC", + "code_postal": "24120", + "coordonnees_gps": [ + 45.1842724664, + 1.24822097021 + ], + "libelle_d_acheminement": "VILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24822097021, + 45.1842724664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06093e1f2bd7abbfa874a3ff24ce677378fc2219", + "fields": { + "code_commune_insee": "25001", + "nom_de_la_commune": "ABBANS DESSOUS", + "code_postal": "25320", + "coordonnees_gps": [ + 47.1340668703, + 5.87286847337 + ], + "libelle_d_acheminement": "ABBANS DESSOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87286847337, + 47.1340668703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "397571ad2ef8ea8d4a76c8071e9e760aa82b819c", + "fields": { + "code_commune_insee": "25002", + "nom_de_la_commune": "ABBANS DESSUS", + "code_postal": "25440", + "coordonnees_gps": [ + 47.1269966057, + 5.88626408283 + ], + "libelle_d_acheminement": "ABBANS DESSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88626408283, + 47.1269966057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fd23416e07b6cef990891ec0b6e21c9dc067ec9", + "fields": { + "code_commune_insee": "25008", + "nom_de_la_commune": "AIBRE", + "code_postal": "25750", + "coordonnees_gps": [ + 47.5518330621, + 6.69787276239 + ], + "libelle_d_acheminement": "AIBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69787276239, + 47.5518330621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48bb75d4b3c7aed9497760befd58d143009b5c12", + "fields": { + "code_commune_insee": "25012", + "nom_de_la_commune": "LES ALLIES", + "code_postal": "25300", + "coordonnees_gps": [ + 46.9491879536, + 6.44757027908 + ], + "libelle_d_acheminement": "LES ALLIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44757027908, + 46.9491879536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5106f637e39cc19642562e74867ab38d6cd29d67", + "fields": { + "code_commune_insee": "25014", + "nom_de_la_commune": "AMAGNEY", + "code_postal": "25220", + "coordonnees_gps": [ + 47.3053386559, + 6.14827312973 + ], + "libelle_d_acheminement": "AMAGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14827312973, + 47.3053386559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1208cb5939b18074b57a2894811aa0b69f4d2d3", + "fields": { + "code_commune_insee": "25022", + "nom_de_la_commune": "ARCEY", + "code_postal": "25750", + "coordonnees_gps": [ + 47.5194914432, + 6.65186946515 + ], + "libelle_d_acheminement": "ARCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65186946515, + 47.5194914432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24096bb9b2177792efaea1cc2c10b5fcabd95775", + "fields": { + "code_commune_insee": "25029", + "nom_de_la_commune": "AUBONNE", + "code_postal": "25520", + "coordonnees_gps": [ + 47.0367261474, + 6.34292904726 + ], + "libelle_d_acheminement": "AUBONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34292904726, + 47.0367261474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21c6fef676ffad5d0787341ba9b0294a502a6706", + "fields": { + "code_commune_insee": "25032", + "nom_de_la_commune": "AUTECHAUX", + "code_postal": "25110", + "coordonnees_gps": [ + 47.380865842, + 6.38532434702 + ], + "libelle_d_acheminement": "AUTECHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38532434702, + 47.380865842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba9171e12a02c83407b900fba9a4dc839b4c9f5f", + "fields": { + "code_commune_insee": "25046", + "nom_de_la_commune": "BATTENANS VARIN", + "code_postal": "25380", + "coordonnees_gps": [ + 47.2421347156, + 6.71515082386 + ], + "libelle_d_acheminement": "BATTENANS VARIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71515082386, + 47.2421347156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4d9ff560c5479aafc168838a48ebb07c077cb81", + "fields": { + "code_commune_insee": "25048", + "nom_de_la_commune": "BAVANS", + "code_postal": "25550", + "coordonnees_gps": [ + 47.4835085219, + 6.72519340865 + ], + "libelle_d_acheminement": "BAVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72519340865, + 47.4835085219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e3959748dba668ef06918c14796d103d3e869f8", + "fields": { + "code_commune_insee": "25050", + "nom_de_la_commune": "LE BELIEU", + "code_postal": "25500", + "coordonnees_gps": [ + 47.1215194397, + 6.63156586666 + ], + "libelle_d_acheminement": "LE BELIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63156586666, + 47.1215194397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c244815d0f67826c3de4b05ca845ba5d3e8bee60", + "fields": { + "code_commune_insee": "25053", + "nom_de_la_commune": "BELVOIR", + "code_postal": "25430", + "coordonnees_gps": [ + 47.3204509984, + 6.61674302233 + ], + "libelle_d_acheminement": "BELVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61674302233, + 47.3204509984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eff55ce30fcd38df1a859b21e038f2e9f9137045", + "fields": { + "code_commune_insee": "25055", + "nom_de_la_commune": "BERTHELANGE", + "code_postal": "25410", + "coordonnees_gps": [ + 47.2012632054, + 5.78031837648 + ], + "libelle_d_acheminement": "BERTHELANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78031837648, + 47.2012632054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18ace11d1842de6442fab04e61675b19b87b06cc", + "fields": { + "code_commune_insee": "25057", + "nom_de_la_commune": "BETHONCOURT", + "code_postal": "25200", + "coordonnees_gps": [ + 47.5411126642, + 6.8003750959 + ], + "libelle_d_acheminement": "BETHONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8003750959, + 47.5411126642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "625c4260bb69509b9482d1c64eb4585c0a6b617a", + "fields": { + "code_commune_insee": "25065", + "nom_de_la_commune": "BLARIANS", + "code_postal": "25640", + "coordonnees_gps": [ + 47.4115548955, + 6.17767904595 + ], + "libelle_d_acheminement": "BLARIANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17767904595, + 47.4115548955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8336785a3730f2d46fac0ba5a7e74659df089445", + "fields": { + "code_commune_insee": "25082", + "nom_de_la_commune": "BOURGUIGNON", + "code_postal": "25150", + "coordonnees_gps": [ + 47.4128203171, + 6.77408413997 + ], + "libelle_d_acheminement": "BOURGUIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77408413997, + 47.4128203171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9420fc076e77f038cfc9351be372e767af4704c4", + "fields": { + "code_commune_insee": "25086", + "nom_de_la_commune": "BRAILLANS", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3119102403, + 6.08660032243 + ], + "libelle_d_acheminement": "BRAILLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08660032243, + 47.3119102403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "197d28575a587fbb0e598ca7a64145b26a7566d0", + "fields": { + "code_commune_insee": "25090", + "nom_de_la_commune": "BRERES", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0577166935, + 5.86441681721 + ], + "libelle_d_acheminement": "BRERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86441681721, + 47.0577166935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68a1c82f082d7e3b840bcdab99555193d2e302f2", + "fields": { + "code_commune_insee": "25121", + "nom_de_la_commune": "CHAPELLE DES BOIS", + "code_postal": "25240", + "coordonnees_gps": [ + 46.606672007, + 6.10775555362 + ], + "libelle_d_acheminement": "CHAPELLE DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10775555362, + 46.606672007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7c117d5c9fed2ad23e4ddbd13479470afdfd6fe", + "fields": { + "code_commune_insee": "25122", + "nom_de_la_commune": "CHAPELLE D HUIN", + "code_postal": "25270", + "coordonnees_gps": [ + 46.9339958875, + 6.16570353934 + ], + "libelle_d_acheminement": "CHAPELLE D HUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16570353934, + 46.9339958875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87702cebb755ab4b2619a4c422586073fdf4e629", + "fields": { + "code_commune_insee": "25127", + "nom_de_la_commune": "CHARQUEMONT", + "code_postal": "25140", + "coordonnees_gps": [ + 47.2015092122, + 6.84277738183 + ], + "libelle_d_acheminement": "CHARQUEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84277738183, + 47.2015092122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efcc5f28dc65dd4bdd270340a8213cd396a2a6fa", + "fields": { + "code_commune_insee": "25133", + "nom_de_la_commune": "CHATILLON LE DUC", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3060186922, + 6.00103214604 + ], + "libelle_d_acheminement": "CHATILLON LE DUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00103214604, + 47.3060186922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b957c4e6e72384ad18ede64d12847fd0234cca36", + "fields": { + "code_commune_insee": "25143", + "nom_de_la_commune": "CHAY", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0335238576, + 5.86151030657 + ], + "libelle_d_acheminement": "CHAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86151030657, + 47.0335238576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7d25ca2dadae8a7b2fa0349edb283e50dc2658b", + "fields": { + "code_commune_insee": "25152", + "nom_de_la_commune": "LA CHEVILLOTTE", + "code_postal": "25620", + "coordonnees_gps": [ + 47.2203448918, + 6.15732727631 + ], + "libelle_d_acheminement": "LA CHEVILLOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15732727631, + 47.2203448918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63737d37c363000de47e6a6c807d5ea03bc96950", + "fields": { + "code_commune_insee": "25155", + "nom_de_la_commune": "CLERON", + "code_postal": "25330", + "coordonnees_gps": [ + 47.0815649921, + 6.07062488637 + ], + "libelle_d_acheminement": "CLERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07062488637, + 47.0815649921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a9234ddca184e7ce7ae8996df0408ea70116051", + "fields": { + "code_commune_insee": "25163", + "nom_de_la_commune": "CORCELLE MIESLOT", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3615588639, + 6.18318655579 + ], + "libelle_d_acheminement": "CORCELLE MIESLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18318655579, + 47.3615588639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8b330233f9380d06d071bc343dd8d1517835699", + "fields": { + "code_commune_insee": "25176", + "nom_de_la_commune": "COURVIERES", + "code_postal": "25560", + "coordonnees_gps": [ + 46.8640134656, + 6.09939604174 + ], + "libelle_d_acheminement": "COURVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09939604174, + 46.8640134656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9440dd03fa2fd7262b07ce8ebb1dd107324ce20a", + "fields": { + "code_commune_insee": "25177", + "nom_de_la_commune": "CROSEY LE GRAND", + "code_postal": "25340", + "coordonnees_gps": [ + 47.3472420831, + 6.52726297298 + ], + "libelle_d_acheminement": "CROSEY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52726297298, + 47.3472420831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e6bb86780254fb5458d6e7f9fb7d8e00f6f7677", + "fields": { + "code_commune_insee": "25179", + "nom_de_la_commune": "LE CROUZET", + "code_postal": "25240", + "coordonnees_gps": [ + 46.7066820687, + 6.13160874463 + ], + "libelle_d_acheminement": "LE CROUZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13160874463, + 46.7066820687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4899ad9eec43bd9d98fcf5a0afc3b8c90056739b", + "fields": { + "code_commune_insee": "25183", + "nom_de_la_commune": "CUSANCE", + "code_postal": "25110", + "coordonnees_gps": [ + 47.322634572, + 6.43863811319 + ], + "libelle_d_acheminement": "CUSANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43863811319, + 47.322634572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c421ea5209153b22e456fed5d7ae3d5426980d3", + "fields": { + "code_commune_insee": "25185", + "nom_de_la_commune": "CUSSEY SUR LISON", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0622363983, + 5.95767179131 + ], + "libelle_d_acheminement": "CUSSEY SUR LISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95767179131, + 47.0622363983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9043d8090f4bc8d68aed511326bf66829dba316e", + "fields": { + "code_commune_insee": "25190", + "nom_de_la_commune": "DAMPIERRE LES BOIS", + "code_postal": "25490", + "coordonnees_gps": [ + 47.5074760402, + 6.91564600074 + ], + "libelle_d_acheminement": "DAMPIERRE LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91564600074, + 47.5074760402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "415fe43f1b3693c6952f10076ba0acfac75722b9", + "fields": { + "code_commune_insee": "25201", + "nom_de_la_commune": "DOMMARTIN", + "code_postal": "25300", + "coordonnees_gps": [ + 46.9289461841, + 6.30964767556 + ], + "libelle_d_acheminement": "DOMMARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30964767556, + 46.9289461841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "022378ed2686cabb4d5d1f2f4146b9dad83d343a", + "fields": { + "code_commune_insee": "25204", + "nom_de_la_commune": "DOUBS", + "code_postal": "25300", + "coordonnees_gps": [ + 46.9311755655, + 6.35996491031 + ], + "libelle_d_acheminement": "DOUBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35996491031, + 46.9311755655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddfd25c673797175e007164217e6a6325811046f", + "fields": { + "ligne_5": "VALENTIN", + "code_commune_insee": "25212", + "libelle_d_acheminement": "ECOLE VALENTIN", + "code_postal": "25480", + "nom_de_la_commune": "ECOLE VALENTIN", + "coordonnees_gps": [ + 47.2744126676, + 5.98881788092 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98881788092, + 47.2744126676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a606c2cbdf975f18a4518ba252fb41c35fcb5f02", + "fields": { + "code_commune_insee": "25221", + "nom_de_la_commune": "ESNANS", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3328813955, + 6.32371158656 + ], + "libelle_d_acheminement": "ESNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32371158656, + 47.3328813955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0745e25857969823d6b3d15634ae544e77274e6f", + "fields": { + "ligne_5": "CHARBONNIERES LES SAPINS", + "code_commune_insee": "25222", + "libelle_d_acheminement": "ETALANS", + "code_postal": "25620", + "nom_de_la_commune": "ETALANS", + "coordonnees_gps": [ + 47.1617288935, + 6.26148839275 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26148839275, + 47.1617288935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0de17a7c48e051ff06adc4582f63550db3ca14c0", + "fields": { + "code_commune_insee": "25223", + "nom_de_la_commune": "ETERNOZ", + "code_postal": "25330", + "coordonnees_gps": [ + 47.0155751982, + 6.00196889347 + ], + "libelle_d_acheminement": "ETERNOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00196889347, + 47.0155751982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5067b20bfd95cbbb4e4f622a19de4cafd9f1ce5e", + "fields": { + "code_commune_insee": "25226", + "nom_de_la_commune": "ETRAPPE", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4727580805, + 6.58015754257 + ], + "libelle_d_acheminement": "ETRAPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58015754257, + 47.4727580805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75af56295289a167c1ce34cdaea499c6c3f12780", + "fields": { + "code_commune_insee": "25241", + "nom_de_la_commune": "FLAGEY", + "code_postal": "25330", + "coordonnees_gps": [ + 47.047536026, + 6.11183883357 + ], + "libelle_d_acheminement": "FLAGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11183883357, + 47.047536026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9c22817bcea19142ec4574947501e613bd14053", + "fields": { + "code_commune_insee": "25242", + "nom_de_la_commune": "FLAGEY RIGNEY", + "code_postal": "25640", + "coordonnees_gps": [ + 47.4143951141, + 6.22003091799 + ], + "libelle_d_acheminement": "FLAGEY RIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22003091799, + 47.4143951141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8343ad07f4f6de3cf31a2833ad974c75ac9dcac3", + "fields": { + "code_commune_insee": "25244", + "nom_de_la_commune": "FLEUREY", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3010695647, + 6.77725606578 + ], + "libelle_d_acheminement": "FLEUREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77725606578, + 47.3010695647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e421ece94834022a3a63312338682e8965639b5", + "fields": { + "code_commune_insee": "25246", + "nom_de_la_commune": "FONTAINE LES CLERVAL", + "code_postal": "25340", + "coordonnees_gps": [ + 47.4214306838, + 6.46911668275 + ], + "libelle_d_acheminement": "FONTAINE LES CLERVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46911668275, + 47.4214306838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9e63fb15308405ddd6576de78be0119368756e3", + "fields": { + "code_commune_insee": "25264", + "nom_de_la_commune": "GEMONVAL", + "code_postal": "25250", + "coordonnees_gps": [ + 47.5346313053, + 6.59224255961 + ], + "libelle_d_acheminement": "GEMONVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59224255961, + 47.5346313053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4a24ccfc3c77b7df4f28c24f70fd8083ee083a9", + "fields": { + "code_commune_insee": "25266", + "nom_de_la_commune": "GENEY", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4831400587, + 6.565729093 + ], + "libelle_d_acheminement": "GENEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.565729093, + 47.4831400587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "044030f71d4791a3b150daba99b61523d5409797", + "fields": { + "code_commune_insee": "25268", + "nom_de_la_commune": "GERMEFONTAINE", + "code_postal": "25510", + "coordonnees_gps": [ + 47.2253724682, + 6.48362626311 + ], + "libelle_d_acheminement": "GERMEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48362626311, + 47.2253724682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e2e6b8960cc636e9cb60b30cad9abf1632d7fba", + "fields": { + "code_commune_insee": "25273", + "nom_de_la_commune": "GLAMONDANS", + "code_postal": "25360", + "coordonnees_gps": [ + 47.2663945557, + 6.28683241536 + ], + "libelle_d_acheminement": "GLAMONDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28683241536, + 47.2663945557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe259ad069619ddee7cad758a7ecdd55ad1cca62", + "fields": { + "code_commune_insee": "25275", + "nom_de_la_commune": "GLERE", + "code_postal": "25190", + "coordonnees_gps": [ + 47.348314704, + 6.98432644991 + ], + "libelle_d_acheminement": "GLERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98432644991, + 47.348314704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5022a38554439abc5df1c6eb1d1397568ee0507c", + "fields": { + "code_commune_insee": "25278", + "nom_de_la_commune": "GONSANS", + "code_postal": "25360", + "coordonnees_gps": [ + 47.2264643937, + 6.29743977089 + ], + "libelle_d_acheminement": "GONSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29743977089, + 47.2264643937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "468db6e5225aa3c6c6dd0992f876678256e4faed", + "fields": { + "code_commune_insee": "25285", + "nom_de_la_commune": "GRAND COMBE CHATELEU", + "code_postal": "25570", + "coordonnees_gps": [ + 47.0158422087, + 6.55961041125 + ], + "libelle_d_acheminement": "GRAND COMBE CHATELEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55961041125, + 47.0158422087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec3f58f47f5eb9776f494442c8b47859bb20b560", + "fields": { + "code_commune_insee": "25296", + "nom_de_la_commune": "LES GRAS", + "code_postal": "25790", + "coordonnees_gps": [ + 46.9868721802, + 6.53969439313 + ], + "libelle_d_acheminement": "LES GRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53969439313, + 46.9868721802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21158f1522954d4bac3d03548aacfe9e9bd26869", + "fields": { + "code_commune_insee": "25301", + "nom_de_la_commune": "GUYANS VENNES", + "code_postal": "25390", + "coordonnees_gps": [ + 47.1669293709, + 6.58340413101 + ], + "libelle_d_acheminement": "GUYANS VENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58340413101, + 47.1669293709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86c10213bab0e8781ff479c7187d1a1bf18026c2", + "fields": { + "code_commune_insee": "25310", + "nom_de_la_commune": "HUANNE MONTMARTIN", + "code_postal": "25680", + "coordonnees_gps": [ + 47.43194694, + 6.34212745604 + ], + "libelle_d_acheminement": "HUANNE MONTMARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34212745604, + 47.43194694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4952c813464cc8eee29dd152a431ed81dc50f833", + "fields": { + "code_commune_insee": "25330", + "nom_de_la_commune": "LAVANS QUINGEY", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0867490631, + 5.89657298007 + ], + "libelle_d_acheminement": "LAVANS QUINGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89657298007, + 47.0867490631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "332cc5a65aa220b9249d818e4833800206ccd289", + "fields": { + "ligne_5": "LABERGEMENT DU NAVOIS", + "code_commune_insee": "25334", + "libelle_d_acheminement": "LEVIER", + "code_postal": "25270", + "nom_de_la_commune": "LEVIER", + "coordonnees_gps": [ + 46.9571786318, + 6.11754093497 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11754093497, + 46.9571786318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "342629a4a02208b1521a6eee18a9277a6fce7f1b", + "fields": { + "code_commune_insee": "25338", + "nom_de_la_commune": "LIZINE", + "code_postal": "25330", + "coordonnees_gps": [ + 47.0547273161, + 5.99282066337 + ], + "libelle_d_acheminement": "LIZINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99282066337, + 47.0547273161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1a3b4bdc20a7a73c786098942811ff4d5440cfe", + "fields": { + "code_commune_insee": "25348", + "nom_de_la_commune": "LONGEVILLES MONT D OR", + "code_postal": "25370", + "coordonnees_gps": [ + 46.7450112683, + 6.3307842634 + ], + "libelle_d_acheminement": "LONGEVILLES MONT D OR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3307842634, + 46.7450112683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d1989cd0f553df1c27b0a8a9f919b171e72eede", + "fields": { + "code_commune_insee": "25349", + "nom_de_la_commune": "LORAY", + "code_postal": "25390", + "coordonnees_gps": [ + 47.1596505995, + 6.4966589281 + ], + "libelle_d_acheminement": "LORAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4966589281, + 47.1596505995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49bd037806b1e93dc806dede4f34cfbb561a8484", + "fields": { + "code_commune_insee": "25361", + "nom_de_la_commune": "MALBUISSON", + "code_postal": "25160", + "coordonnees_gps": [ + 46.7987711533, + 6.31210934151 + ], + "libelle_d_acheminement": "MALBUISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31210934151, + 46.7987711533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b077acb889e8b4cdf719114cb1b4128ba19c514d", + "fields": { + "code_commune_insee": "25362", + "nom_de_la_commune": "MALPAS", + "code_postal": "25160", + "coordonnees_gps": [ + 46.827268522, + 6.28836948347 + ], + "libelle_d_acheminement": "MALPAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28836948347, + 46.827268522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e39ef9418038805446a6b35e295a49290b2c594", + "fields": { + "code_commune_insee": "25365", + "nom_de_la_commune": "MANCENANS", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4633299289, + 6.54251300425 + ], + "libelle_d_acheminement": "MANCENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54251300425, + 47.4633299289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fdbcd864ae090ee974876bcbe0cc3cdaee55b6b", + "fields": { + "code_commune_insee": "25366", + "nom_de_la_commune": "MANCENANS LIZERNE", + "code_postal": "25120", + "coordonnees_gps": [ + 47.2580575467, + 6.7736680531 + ], + "libelle_d_acheminement": "MANCENANS LIZERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7736680531, + 47.2580575467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44717466c93a9ff4d30facffd91432b320a50c1b", + "fields": { + "ligne_5": "CHAUDEFONTAINE", + "code_commune_insee": "25368", + "libelle_d_acheminement": "MARCHAUX CHAUDEFONTAINE", + "code_postal": "25640", + "nom_de_la_commune": "MARCHAUX CHAUDEFONTAINE", + "coordonnees_gps": [ + 47.3224782465, + 6.12169829591 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12169829591, + 47.3224782465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "667ec84796d92b4fa5a65db9a554a749cbd9dfdc", + "fields": { + "code_commune_insee": "25370", + "nom_de_la_commune": "MATHAY", + "code_postal": "25700", + "coordonnees_gps": [ + 47.4423652641, + 6.77022580965 + ], + "libelle_d_acheminement": "MATHAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77022580965, + 47.4423652641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5679ff04373301361b434e28198a4f0ddd6cee1", + "fields": { + "code_commune_insee": "25372", + "nom_de_la_commune": "MEDIERE", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4632149393, + 6.60260963747 + ], + "libelle_d_acheminement": "MEDIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60260963747, + 47.4632149393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d9f4c08963478a10eeda0264ce7ac6766e4c0cc", + "fields": { + "ligne_5": "COTTIER", + "code_commune_insee": "25374", + "libelle_d_acheminement": "MERCEY LE GRAND", + "code_postal": "25410", + "nom_de_la_commune": "MERCEY LE GRAND", + "coordonnees_gps": [ + 47.2119822043, + 5.75247892377 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75247892377, + 47.2119822043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da1bb892641294de16eb9b1731ba3a0d837fa01a", + "fields": { + "code_commune_insee": "25381", + "nom_de_la_commune": "MISEREY SALINES", + "code_postal": "25480", + "coordonnees_gps": [ + 47.2878400774, + 5.97360872254 + ], + "libelle_d_acheminement": "MISEREY SALINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97360872254, + 47.2878400774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2156c3f4813aff04120f602ae369009b29d324c2", + "fields": { + "code_commune_insee": "25384", + "nom_de_la_commune": "MONDON", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4482880477, + 6.31212513097 + ], + "libelle_d_acheminement": "MONDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31212513097, + 47.4482880477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dfb53eec83b1aa90b88444e9b6b0d9e82aef1fe", + "fields": { + "code_commune_insee": "25385", + "nom_de_la_commune": "MONTAGNEY SERVIGNEY", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4668786084, + 6.30394133413 + ], + "libelle_d_acheminement": "MONTAGNEY SERVIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30394133413, + 47.4668786084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72f97fcb2761600a45fcc9e7b23c9093a0e956f6", + "fields": { + "code_commune_insee": "25392", + "nom_de_la_commune": "MONT DE VOUGNEY", + "code_postal": "25120", + "coordonnees_gps": [ + 47.2418796782, + 6.73992900985 + ], + "libelle_d_acheminement": "MONT DE VOUGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73992900985, + 47.2418796782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce0b4d0e93588cb1b81da6946f422cac58dda86f", + "fields": { + "code_commune_insee": "25395", + "nom_de_la_commune": "MONTFAUCON", + "code_postal": "25660", + "coordonnees_gps": [ + 47.2418571296, + 6.08660837587 + ], + "libelle_d_acheminement": "MONTFAUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08660837587, + 47.2418571296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4305da2e30da8a1d01e28ac47581d0997ec99a47", + "fields": { + "code_commune_insee": "25403", + "nom_de_la_commune": "MONTLEBON", + "code_postal": "25500", + "coordonnees_gps": [ + 47.023060564, + 6.62116670386 + ], + "libelle_d_acheminement": "MONTLEBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62116670386, + 47.023060564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a56aab743d13b2cfc8242771d1db6bfeeeea1c5", + "fields": { + "code_commune_insee": "25406", + "nom_de_la_commune": "MONTROND LE CHATEAU", + "code_postal": "25660", + "coordonnees_gps": [ + 47.1455882714, + 6.04310785947 + ], + "libelle_d_acheminement": "MONTROND LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04310785947, + 47.1455882714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "723cd40a99d648735373395f575fcf5f97302379", + "fields": { + "code_commune_insee": "25418", + "nom_de_la_commune": "NANCRAY", + "code_postal": "25360", + "coordonnees_gps": [ + 47.2500159074, + 6.17754148907 + ], + "libelle_d_acheminement": "NANCRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17754148907, + 47.2500159074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec12fdfeb781f8d55c3880cb05402c16e8660c97", + "fields": { + "ligne_5": "NODS", + "code_commune_insee": "25424", + "libelle_d_acheminement": "LES PREMIERS SAPINS", + "code_postal": "25580", + "nom_de_la_commune": "LES PREMIERS SAPINS", + "coordonnees_gps": [ + 47.0885558465, + 6.3501261359 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3501261359, + 47.0885558465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "849cb83d9dae0bbceaba54606c698bd2d5086c2b", + "fields": { + "code_commune_insee": "25425", + "nom_de_la_commune": "NOEL CERNEUX", + "code_postal": "25500", + "coordonnees_gps": [ + 47.1042523876, + 6.65938834993 + ], + "libelle_d_acheminement": "NOEL CERNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65938834993, + 47.1042523876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3836ce9d4ce07a99934b1981634168f6f43ff9e1", + "fields": { + "code_commune_insee": "25427", + "nom_de_la_commune": "NOIRONTE", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2734382771, + 5.87070017811 + ], + "libelle_d_acheminement": "NOIRONTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87070017811, + 47.2734382771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d65a886b0a2a5bb55c15298bc59f0d7e8772e85", + "fields": { + "code_commune_insee": "25428", + "nom_de_la_commune": "NOMMAY", + "code_postal": "25600", + "coordonnees_gps": [ + 47.5395755772, + 6.84698766674 + ], + "libelle_d_acheminement": "NOMMAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84698766674, + 47.5395755772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57902b57bdff63380f75129e929d816b2f1c4118", + "fields": { + "ligne_5": "ROUTELLE", + "code_commune_insee": "25438", + "libelle_d_acheminement": "OSSELLE ROUTELLE", + "code_postal": "25410", + "nom_de_la_commune": "OSSELLE ROUTELLE", + "coordonnees_gps": [ + 47.1480275253, + 5.86345612302 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86345612302, + 47.1480275253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f69d492fd49ad0827cfb5353c15892df11511038", + "fields": { + "code_commune_insee": "25440", + "nom_de_la_commune": "OUHANS", + "code_postal": "25520", + "coordonnees_gps": [ + 47.0012375922, + 6.30185859901 + ], + "libelle_d_acheminement": "OUHANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30185859901, + 47.0012375922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52d6e2b71344ed70ebcd128f34d6486466a9649c", + "fields": { + "code_commune_insee": "25442", + "nom_de_la_commune": "OYE ET PALLET", + "code_postal": "25160", + "coordonnees_gps": [ + 46.8519222715, + 6.33846967053 + ], + "libelle_d_acheminement": "OYE ET PALLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33846967053, + 46.8519222715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0529d988c0c8fdba3cdc9442b2e49dd542f52302", + "fields": { + "code_commune_insee": "25443", + "nom_de_la_commune": "PALANTINE", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0996048728, + 5.94145056885 + ], + "libelle_d_acheminement": "PALANTINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94145056885, + 47.0996048728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af8c2b453d9dc1609d620daa7b80d6ff2deab78d", + "fields": { + "code_commune_insee": "25444", + "nom_de_la_commune": "PALISE", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3657225036, + 6.09170359133 + ], + "libelle_d_acheminement": "PALISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09170359133, + 47.3657225036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63bd5876cd1a16840c653f362e5d67853e3a4def", + "fields": { + "code_commune_insee": "25449", + "nom_de_la_commune": "PESEUX", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3190983851, + 6.6862333778 + ], + "libelle_d_acheminement": "PESEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6862333778, + 47.3190983851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccf62f3d09fb28f25a5bebd1437d7f2aa0f06a41", + "fields": { + "code_commune_insee": "25451", + "nom_de_la_commune": "PETITE CHAUX", + "code_postal": "25240", + "coordonnees_gps": [ + 46.6790696272, + 6.16339396313 + ], + "libelle_d_acheminement": "PETITE CHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16339396313, + 46.6790696272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fec99454184af1a58e8984f252ded358ad1d559", + "fields": { + "code_commune_insee": "25462", + "nom_de_la_commune": "PONTARLIER", + "code_postal": "25300", + "coordonnees_gps": [ + 46.9119730882, + 6.38914602031 + ], + "libelle_d_acheminement": "PONTARLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38914602031, + 46.9119730882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "042862908f67ff74b2da5df35540f48c0ae20be4", + "fields": { + "ligne_5": "LUSANS", + "code_commune_insee": "25468", + "libelle_d_acheminement": "POULIGNEY LUSANS", + "code_postal": "25640", + "nom_de_la_commune": "POULIGNEY LUSANS", + "coordonnees_gps": [ + 47.3352091384, + 6.20063332873 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20063332873, + 47.3352091384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3f71696e845792d447872c9ee79683f4ac3dede", + "fields": { + "code_commune_insee": "25470", + "nom_de_la_commune": "LA PRETIERE", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4467319002, + 6.61016502451 + ], + "libelle_d_acheminement": "LA PRETIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61016502451, + 47.4467319002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ac7053e8d99c0b1499d51730ba4b336623f84e0", + "fields": { + "code_commune_insee": "25478", + "nom_de_la_commune": "RANDEVILLERS", + "code_postal": "25430", + "coordonnees_gps": [ + 47.3073217418, + 6.52699892784 + ], + "libelle_d_acheminement": "RANDEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52699892784, + 47.3073217418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adffae8de4728210d79c9c13e98ecd5f00b96d4d", + "fields": { + "code_commune_insee": "25486", + "nom_de_la_commune": "REMORAY BOUJEONS", + "code_postal": "25160", + "coordonnees_gps": [ + 46.7590078628, + 6.21661455982 + ], + "libelle_d_acheminement": "REMORAY BOUJEONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21661455982, + 46.7590078628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5914d48ce64c288da94363c9cae30170251a65c", + "fields": { + "code_commune_insee": "25501", + "nom_de_la_commune": "RONDEFONTAINE", + "code_postal": "25240", + "coordonnees_gps": [ + 46.7329359308, + 6.18194952328 + ], + "libelle_d_acheminement": "RONDEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18194952328, + 46.7329359308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d507b0014bc3e8d8e28275161a45d5c67b21e191", + "fields": { + "ligne_5": "MONTFERNEY", + "code_commune_insee": "25505", + "libelle_d_acheminement": "ROUGEMONT", + "code_postal": "25680", + "nom_de_la_commune": "ROUGEMONT", + "coordonnees_gps": [ + 47.4795835178, + 6.34800687837 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34800687837, + 47.4795835178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa2feb348ead26d49a68a69860ad24984c6da3aa", + "fields": { + "code_commune_insee": "25517", + "nom_de_la_commune": "ST GORGON MAIN", + "code_postal": "25520", + "coordonnees_gps": [ + 47.0172420756, + 6.33611929324 + ], + "libelle_d_acheminement": "ST GORGON MAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33611929324, + 47.0172420756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fbc25a203b63eda7a259039f990695bbbec3f9d", + "fields": { + "code_commune_insee": "25519", + "nom_de_la_commune": "ST HIPPOLYTE", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3121318128, + 6.81240649339 + ], + "libelle_d_acheminement": "ST HIPPOLYTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81240649339, + 47.3121318128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72792fb750d0195d1b4acd1ba1036c355f71dd85", + "fields": { + "code_commune_insee": "25521", + "nom_de_la_commune": "ST JULIEN LES MONTBELIARD", + "code_postal": "25550", + "coordonnees_gps": [ + 47.5191858536, + 6.7064941383 + ], + "libelle_d_acheminement": "ST JULIEN LES MONTBELIARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7064941383, + 47.5191858536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c42a065b3990a6155425c5d0b83d39106e9e4298", + "fields": { + "ligne_5": "COLOMBIER CHATELOT", + "code_commune_insee": "25524", + "libelle_d_acheminement": "ST MAURICE COLOMBIER", + "code_postal": "25260", + "nom_de_la_commune": "ST MAURICE COLOMBIER", + "coordonnees_gps": [ + 47.4316270724, + 6.65024114123 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65024114123, + 47.4316270724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1acb82eedb242b5c740cc7de5fbaf19fdd7da6d7", + "fields": { + "code_commune_insee": "25525", + "nom_de_la_commune": "ST POINT LAC", + "code_postal": "25160", + "coordonnees_gps": [ + 46.8101118248, + 6.29601510086 + ], + "libelle_d_acheminement": "ST POINT LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29601510086, + 46.8101118248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a87db3a38b9321066004d42ed045a5122838e5d", + "fields": { + "ligne_5": "SANCEY LE GRAND", + "code_commune_insee": "25529", + "libelle_d_acheminement": "SANCEY", + "code_postal": "25430", + "nom_de_la_commune": "SANCEY", + "coordonnees_gps": [ + 47.2902129246, + 6.5630744882 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5630744882, + 47.2902129246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c001748abbd898860896605c9e24c36d8ac4d350", + "fields": { + "code_commune_insee": "25536", + "nom_de_la_commune": "SAUVAGNEY", + "code_postal": "25170", + "coordonnees_gps": [ + 47.3218215365, + 5.91157630752 + ], + "libelle_d_acheminement": "SAUVAGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91157630752, + 47.3218215365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37941d6cb68725c30befe8e5379b270b3d9a0e5c", + "fields": { + "code_commune_insee": "25537", + "nom_de_la_commune": "SCEY MAISIERES", + "code_postal": "25290", + "coordonnees_gps": [ + 47.1092770576, + 6.07924521048 + ], + "libelle_d_acheminement": "SCEY MAISIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07924521048, + 47.1092770576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5869300c05edec4263a4188310b92e02b6a8004", + "fields": { + "code_commune_insee": "25541", + "nom_de_la_commune": "SEPTFONTAINES", + "code_postal": "25270", + "coordonnees_gps": [ + 46.9757494238, + 6.17849639031 + ], + "libelle_d_acheminement": "SEPTFONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17849639031, + 46.9757494238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42adce37942168495c8059e621b1511fbbe1169a", + "fields": { + "code_commune_insee": "25542", + "nom_de_la_commune": "SERRE LES SAPINS", + "code_postal": "25770", + "coordonnees_gps": [ + 47.2393718046, + 5.9349388655 + ], + "libelle_d_acheminement": "SERRE LES SAPINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9349388655, + 47.2393718046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "908f18defdfd90cf84fa74b3b9af8e2cd36fae92", + "fields": { + "code_commune_insee": "25545", + "nom_de_la_commune": "SILLEY AMANCEY", + "code_postal": "25330", + "coordonnees_gps": [ + 47.0325022535, + 6.13704551483 + ], + "libelle_d_acheminement": "SILLEY AMANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13704551483, + 47.0325022535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36266a7c963ca12758fdad2cba4f2791ff2689f9", + "fields": { + "code_commune_insee": "25546", + "nom_de_la_commune": "SILLEY BLEFOND", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3218769577, + 6.33058126061 + ], + "libelle_d_acheminement": "SILLEY BLEFOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33058126061, + 47.3218769577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73f8a680fbc4aec17396872850383f7cbdf9969d", + "fields": { + "code_commune_insee": "25547", + "nom_de_la_commune": "SOCHAUX", + "code_postal": "25600", + "coordonnees_gps": [ + 47.5147289222, + 6.82988348099 + ], + "libelle_d_acheminement": "SOCHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82988348099, + 47.5147289222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0aafaa6baab601232ef7fd1e43c1a9398ce1708", + "fields": { + "code_commune_insee": "25551", + "nom_de_la_commune": "SOULCE CERNAY", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3275454808, + 6.86807912248 + ], + "libelle_d_acheminement": "SOULCE CERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86807912248, + 47.3275454808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed18a2541824460ad0973727a4363ecb34acdbea", + "fields": { + "code_commune_insee": "25552", + "nom_de_la_commune": "SOURANS", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4100667582, + 6.64130121934 + ], + "libelle_d_acheminement": "SOURANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64130121934, + 47.4100667582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c920e3853dbce925ba174c28d31b69dbafc3f9d", + "fields": { + "code_commune_insee": "25554", + "nom_de_la_commune": "SURMONT", + "code_postal": "25380", + "coordonnees_gps": [ + 47.2726795746, + 6.61174843961 + ], + "libelle_d_acheminement": "SURMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61174843961, + 47.2726795746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "517d7452fd313bdec37011149f28ee700bec2294", + "fields": { + "ligne_5": "FOUCHERANS", + "code_commune_insee": "25558", + "libelle_d_acheminement": "TARCENAY FOUCHERANS", + "code_postal": "25620", + "nom_de_la_commune": "TARCENAY FOUCHERANS", + "coordonnees_gps": [ + 47.1661327751, + 6.10532851218 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10532851218, + 47.1661327751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2dacff0f59e578cebd95237ad10cd094288bd12", + "fields": { + "code_commune_insee": "25559", + "nom_de_la_commune": "THIEBOUHANS", + "code_postal": "25470", + "coordonnees_gps": [ + 47.2711359611, + 6.8433767391 + ], + "libelle_d_acheminement": "THIEBOUHANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8433767391, + 47.2711359611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79a2e8acecc8621c3b11d9af54804957ae6407a6", + "fields": { + "code_commune_insee": "25563", + "nom_de_la_commune": "THUREY LE MONT", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3753171699, + 6.13573809341 + ], + "libelle_d_acheminement": "THUREY LE MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13573809341, + 47.3753171699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d393e9d3a4243a4e55dd06ea3118fe5ec833f52a", + "fields": { + "code_commune_insee": "25565", + "nom_de_la_commune": "TOUILLON ET LOUTELET", + "code_postal": "25370", + "coordonnees_gps": [ + 46.7940131071, + 6.35258937692 + ], + "libelle_d_acheminement": "TOUILLON ET LOUTELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35258937692, + 46.7940131071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ad83f8eb8387e62ad671dcb3641ec3e83cfa68", + "fields": { + "code_commune_insee": "25567", + "nom_de_la_commune": "TOURNANS", + "code_postal": "25680", + "coordonnees_gps": [ + 47.3995202196, + 6.31218752509 + ], + "libelle_d_acheminement": "TOURNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31218752509, + 47.3995202196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69fa9a0546c08bdf346e8ec47bcc146ced611885", + "fields": { + "ligne_5": "ARCIER", + "code_commune_insee": "25575", + "libelle_d_acheminement": "VAIRE", + "code_postal": "25220", + "nom_de_la_commune": "VAIRE", + "coordonnees_gps": [ + 47.2751664682, + 6.15290244914 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15290244914, + 47.2751664682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3bda9e37902b2266201b75880cfbf2d1c5c8f0c", + "fields": { + "ligne_5": "VAIRE ARCIER", + "code_commune_insee": "25575", + "libelle_d_acheminement": "VAIRE", + "code_postal": "25220", + "nom_de_la_commune": "VAIRE", + "coordonnees_gps": [ + 47.2751664682, + 6.15290244914 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15290244914, + 47.2751664682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aa3eb8b978be42c626879a30b949c5357e07bbc", + "fields": { + "ligne_5": "VAIRE LE PETIT", + "code_commune_insee": "25575", + "libelle_d_acheminement": "VAIRE", + "code_postal": "25220", + "nom_de_la_commune": "VAIRE", + "coordonnees_gps": [ + 47.2751664682, + 6.15290244914 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15290244914, + 47.2751664682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c6355c479cb9a14a4adb3933d55bb8bf1eb509f", + "fields": { + "code_commune_insee": "25578", + "nom_de_la_commune": "VALDAHON", + "code_postal": "25800", + "coordonnees_gps": [ + 47.1633469819, + 6.33226254465 + ], + "libelle_d_acheminement": "VALDAHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33226254465, + 47.1633469819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13fe488a2d8ef2031f7587d9f8f3e15dd5f142ed", + "fields": { + "code_commune_insee": "25579", + "nom_de_la_commune": "VAL DE ROULANS", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3602096754, + 6.26791337918 + ], + "libelle_d_acheminement": "VAL DE ROULANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26791337918, + 47.3602096754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beb9f978480bf8ed193ee5c77abce9bcfbb640ef", + "fields": { + "code_commune_insee": "25580", + "nom_de_la_commune": "VALENTIGNEY", + "code_postal": "25700", + "coordonnees_gps": [ + 47.4647367767, + 6.82570788244 + ], + "libelle_d_acheminement": "VALENTIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82570788244, + 47.4647367767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09736d50b317bdea61f2dba36376959b57521321", + "fields": { + "code_commune_insee": "25582", + "nom_de_la_commune": "VALLEROY", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3860163944, + 6.12490691273 + ], + "libelle_d_acheminement": "VALLEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12490691273, + 47.3860163944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "600cb6a59e3393b8b0882763850354ece8c63edf", + "fields": { + "code_commune_insee": "25586", + "nom_de_la_commune": "VANDONCOURT", + "code_postal": "25230", + "coordonnees_gps": [ + 47.458634296, + 6.90721789075 + ], + "libelle_d_acheminement": "VANDONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90721789075, + 47.458634296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eba367ef181919c9c502596a01e232ad5a2a8ab", + "fields": { + "code_commune_insee": "25594", + "nom_de_la_commune": "VELESMES ESSARTS", + "code_postal": "25410", + "coordonnees_gps": [ + 47.1891068844, + 5.86952993228 + ], + "libelle_d_acheminement": "VELESMES ESSARTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86952993228, + 47.1891068844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbc79ceb2245226cf67fa9e0ed69f19ac6a146bf", + "fields": { + "code_commune_insee": "25597", + "nom_de_la_commune": "VELLEVANS", + "code_postal": "25430", + "coordonnees_gps": [ + 47.3069330762, + 6.50266698549 + ], + "libelle_d_acheminement": "VELLEVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50266698549, + 47.3069330762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b5146621613b0109eb449d09da6d2e49cdeafa7", + "fields": { + "code_commune_insee": "25609", + "nom_de_la_commune": "VERRIERES DE JOUX", + "code_postal": "25300", + "coordonnees_gps": [ + 46.886228497, + 6.44711021726 + ], + "libelle_d_acheminement": "VERRIERES DE JOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44711021726, + 46.886228497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe9ce065b7569a40f197f53cc44198a69c6cf7c7", + "fields": { + "code_commune_insee": "25620", + "nom_de_la_commune": "VILLE DU PONT", + "code_postal": "25650", + "coordonnees_gps": [ + 46.9996929987, + 6.49767988013 + ], + "libelle_d_acheminement": "VILLE DU PONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49767988013, + 46.9996929987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeab1d19aa0a443c4b4bf1c53337f4460a848936", + "fields": { + "code_commune_insee": "25622", + "nom_de_la_commune": "VILLERS BUZON", + "code_postal": "25170", + "coordonnees_gps": [ + 47.228690115, + 5.85222262162 + ], + "libelle_d_acheminement": "VILLERS BUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85222262162, + 47.228690115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b12acb27383b33bb7307e8f3d30d3517ff07f774", + "fields": { + "code_commune_insee": "25624", + "nom_de_la_commune": "VILLERS GRELOT", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3615500448, + 6.23513809301 + ], + "libelle_d_acheminement": "VILLERS GRELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23513809301, + 47.3615500448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb237dcc9004557c8341d3226d4ffe9695ebe641", + "fields": { + "code_commune_insee": "25631", + "nom_de_la_commune": "VORGES LES PINS", + "code_postal": "25320", + "coordonnees_gps": [ + 47.1527974661, + 5.92977645633 + ], + "libelle_d_acheminement": "VORGES LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92977645633, + 47.1527974661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a173a5f671a6943f375d3c540357e289901eda6", + "fields": { + "code_commune_insee": "25635", + "nom_de_la_commune": "VYT LES BELVOIR", + "code_postal": "25430", + "coordonnees_gps": [ + 47.34826508, + 6.62592546022 + ], + "libelle_d_acheminement": "VYT LES BELVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62592546022, + 47.34826508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c395c6a7f0433f1dff3dd0770f5e393c7fad18b0", + "fields": { + "code_commune_insee": "26003", + "nom_de_la_commune": "ALEYRAC", + "code_postal": "26770", + "coordonnees_gps": [ + 44.4989099133, + 4.94589832405 + ], + "libelle_d_acheminement": "ALEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94589832405, + 44.4989099133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eb72e6f1a81340d57b095beb65f3920166847d3", + "fields": { + "ligne_5": "CREUX DE LA THINE", + "code_commune_insee": "26009", + "libelle_d_acheminement": "ANDANCETTE", + "code_postal": "26140", + "nom_de_la_commune": "ANDANCETTE", + "coordonnees_gps": [ + 45.2464246163, + 4.81244292927 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81244292927, + 45.2464246163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfafb3e2170fb0f5a98c359f6dbc54f40464f54c", + "fields": { + "code_commune_insee": "26010", + "nom_de_la_commune": "ANNEYRON", + "code_postal": "26140", + "coordonnees_gps": [ + 45.2718637753, + 4.89169921081 + ], + "libelle_d_acheminement": "ANNEYRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89169921081, + 45.2718637753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4906d441237d2bfc35b40b49578473406ad3e315", + "fields": { + "code_commune_insee": "26016", + "nom_de_la_commune": "AUBRES", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3893044332, + 5.1543771035 + ], + "libelle_d_acheminement": "AUBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1543771035, + 44.3893044332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0240c0b8e7ac172e6f05cf6f27abf6890519c113", + "fields": { + "code_commune_insee": "26027", + "nom_de_la_commune": "BARSAC", + "code_postal": "26150", + "coordonnees_gps": [ + 44.7264116116, + 5.30407617795 + ], + "libelle_d_acheminement": "BARSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30407617795, + 44.7264116116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bd42ce482864a21458b25b357c83ccf8ce146e8", + "fields": { + "code_commune_insee": "26031", + "nom_de_la_commune": "LA BATIE ROLLAND", + "code_postal": "26160", + "coordonnees_gps": [ + 44.557639861, + 4.86691277503 + ], + "libelle_d_acheminement": "LA BATIE ROLLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86691277503, + 44.557639861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1db92a2030340443201a899ccf027ec8a78438fe", + "fields": { + "code_commune_insee": "26033", + "nom_de_la_commune": "LA BAUME DE TRANSIT", + "code_postal": "26790", + "coordonnees_gps": [ + 44.3277094008, + 4.86882973562 + ], + "libelle_d_acheminement": "LA BAUME DE TRANSIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86882973562, + 44.3277094008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e846ce62553d155e48bea91e827f5455cfc2f97a", + "fields": { + "code_commune_insee": "26035", + "nom_de_la_commune": "BEAUFORT SUR GERVANNE", + "code_postal": "26400", + "coordonnees_gps": [ + 44.7778627524, + 5.14914685983 + ], + "libelle_d_acheminement": "BEAUFORT SUR GERVANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14914685983, + 44.7778627524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31338d3c6d6454d01dbca554ed12e25c1cb648e4", + "fields": { + "code_commune_insee": "26056", + "nom_de_la_commune": "BOURDEAUX", + "code_postal": "26460", + "coordonnees_gps": [ + 44.5787747922, + 5.15114352176 + ], + "libelle_d_acheminement": "BOURDEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15114352176, + 44.5787747922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bbd5b2a4742db11efc0d5b88f92d1066f7f0e2b", + "fields": { + "code_commune_insee": "26061", + "nom_de_la_commune": "BREN", + "code_postal": "26260", + "coordonnees_gps": [ + 45.1431766661, + 4.94152540117 + ], + "libelle_d_acheminement": "BREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94152540117, + 45.1431766661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c6672c469406aa5138981e4c0433f6ddd8e072f", + "fields": { + "code_commune_insee": "26062", + "nom_de_la_commune": "BRETTE", + "code_postal": "26340", + "coordonnees_gps": [ + 44.592205773, + 5.32569722951 + ], + "libelle_d_acheminement": "BRETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32569722951, + 44.592205773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6215f9e1166ade01c8311a5bcd2f60b5a1c473db", + "fields": { + "ligne_5": "PARLANGES", + "code_commune_insee": "26064", + "libelle_d_acheminement": "CHABEUIL", + "code_postal": "26120", + "nom_de_la_commune": "CHABEUIL", + "coordonnees_gps": [ + 44.9082255842, + 5.00743034189 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00743034189, + 44.9082255842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f2cf3c66dd4dbcc5b9365d2894fa3d08f868602", + "fields": { + "code_commune_insee": "26070", + "nom_de_la_commune": "CHAMARET", + "code_postal": "26230", + "coordonnees_gps": [ + 44.3946636765, + 4.87604393903 + ], + "libelle_d_acheminement": "CHAMARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87604393903, + 44.3946636765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66aaf99f0dec726e9484dd473d9c978bc558829a", + "fields": { + "code_commune_insee": "26078", + "nom_de_la_commune": "CHAROLS", + "code_postal": "26450", + "coordonnees_gps": [ + 44.5895894991, + 4.95411000129 + ], + "libelle_d_acheminement": "CHAROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95411000129, + 44.5895894991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fa1f11e463eccdd223ca88aba059e0758e37022", + "fields": { + "code_commune_insee": "26079", + "nom_de_la_commune": "CHARPEY", + "code_postal": "26300", + "coordonnees_gps": [ + 44.9434242792, + 5.07948371958 + ], + "libelle_d_acheminement": "CHARPEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07948371958, + 44.9434242792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd64b5ab818d1222688010077b890c0ccd9aa496", + "fields": { + "code_commune_insee": "26080", + "nom_de_la_commune": "CHASTEL ARNAUD", + "code_postal": "26340", + "coordonnees_gps": [ + 44.6594105975, + 5.20902825087 + ], + "libelle_d_acheminement": "CHASTEL ARNAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20902825087, + 44.6594105975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b67b1b290abafc0c4e1d209b819dafa84835b4c", + "fields": { + "code_commune_insee": "26084", + "nom_de_la_commune": "CHATEAUNEUF SUR ISERE", + "code_postal": "26300", + "coordonnees_gps": [ + 45.0093944288, + 4.95283719514 + ], + "libelle_d_acheminement": "CHATEAUNEUF SUR ISERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95283719514, + 45.0093944288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "157ece2c8fb1f820c07e9b28435c815ebc87f7a5", + "fields": { + "code_commune_insee": "26085", + "nom_de_la_commune": "CHATEAUNEUF DU RHONE", + "code_postal": "26780", + "coordonnees_gps": [ + 44.5034768004, + 4.72492988631 + ], + "libelle_d_acheminement": "CHATEAUNEUF DU RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72492988631, + 44.5034768004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e2f44d1c74cddb28d2fca6fc64df63246c54ce5", + "fields": { + "code_commune_insee": "26089", + "nom_de_la_commune": "CHAUDEBONNE", + "code_postal": "26110", + "coordonnees_gps": [ + 44.4749699502, + 5.23878850401 + ], + "libelle_d_acheminement": "CHAUDEBONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23878850401, + 44.4749699502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "352e320b8573a6c4d1cf193d9cbf9ce609f071bc", + "fields": { + "ligne_5": "LAUX MONTAUX", + "code_commune_insee": "26091", + "libelle_d_acheminement": "CHAUVAC LAUX MONTAUX", + "code_postal": "26510", + "nom_de_la_commune": "CHAUVAC LAUX MONTAUX", + "coordonnees_gps": [ + 44.3222598989, + 5.53474260728 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53474260728, + 44.3222598989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f63ca664686e4dfeb2d26166823a19751ab1a5b9", + "fields": { + "code_commune_insee": "26095", + "nom_de_la_commune": "CLEON D ANDRAN", + "code_postal": "26450", + "coordonnees_gps": [ + 44.6098641585, + 4.93231560292 + ], + "libelle_d_acheminement": "CLEON D ANDRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93231560292, + 44.6098641585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81ed6b4788e032b9c548503e9cb4d3f0066f5a9e", + "fields": { + "code_commune_insee": "26098", + "nom_de_la_commune": "COBONNE", + "code_postal": "26400", + "coordonnees_gps": [ + 44.7564934592, + 5.07201219882 + ], + "libelle_d_acheminement": "COBONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07201219882, + 44.7564934592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46a11619c82227e522b8e94fc2bebb0421b316bb", + "fields": { + "code_commune_insee": "26099", + "nom_de_la_commune": "COLONZELLE", + "code_postal": "26230", + "coordonnees_gps": [ + 44.3849707988, + 4.89981524521 + ], + "libelle_d_acheminement": "COLONZELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89981524521, + 44.3849707988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dc3197b2fa952e9f3f7d20b1dee288af27a06b2", + "fields": { + "code_commune_insee": "26106", + "nom_de_la_commune": "LA COUCOURDE", + "code_postal": "26740", + "coordonnees_gps": [ + 44.6415506371, + 4.78559017675 + ], + "libelle_d_acheminement": "LA COUCOURDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78559017675, + 44.6415506371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d221b025a1b23b7f5b843cb9571e1240637cccd", + "fields": { + "code_commune_insee": "26123", + "nom_de_la_commune": "ESTABLET", + "code_postal": "26470", + "coordonnees_gps": [ + 44.5021554085, + 5.4402415482 + ], + "libelle_d_acheminement": "ESTABLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4402415482, + 44.5021554085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "438140193d111d83a281ca5634861bf8f0448cde", + "fields": { + "code_commune_insee": "26125", + "nom_de_la_commune": "EURRE", + "code_postal": "26400", + "coordonnees_gps": [ + 44.758262486, + 4.97623533568 + ], + "libelle_d_acheminement": "EURRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97623533568, + 44.758262486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "575a7e088172958b319017ba9fa84998f376f900", + "fields": { + "code_commune_insee": "26130", + "nom_de_la_commune": "EYROLES", + "code_postal": "26110", + "coordonnees_gps": [ + 44.417094329, + 5.24106129822 + ], + "libelle_d_acheminement": "EYROLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24106129822, + 44.417094329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afc96541b77d9ac44a49b2e844d5eee4e3715b18", + "fields": { + "code_commune_insee": "26136", + "nom_de_la_commune": "VAL MARAVEL", + "code_postal": "26310", + "coordonnees_gps": [ + 44.5919888409, + 5.58664096693 + ], + "libelle_d_acheminement": "VAL MARAVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58664096693, + 44.5919888409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3f37d9f3fe7193ad2863d10170cdd8f855dc065", + "fields": { + "code_commune_insee": "26144", + "nom_de_la_commune": "GRANE", + "code_postal": "26400", + "coordonnees_gps": [ + 44.7208645789, + 4.89731877792 + ], + "libelle_d_acheminement": "GRANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89731877792, + 44.7208645789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34d6d32d9047a56e851b81c9e1340a14e8b7f231", + "fields": { + "code_commune_insee": "26146", + "nom_de_la_commune": "GRIGNAN", + "code_postal": "26230", + "coordonnees_gps": [ + 44.4369175751, + 4.90180143483 + ], + "libelle_d_acheminement": "GRIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90180143483, + 44.4369175751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a164be9cf5d0c469c0f8298ce9dfced14c4d623", + "fields": { + "code_commune_insee": "26147", + "nom_de_la_commune": "GUMIANE", + "code_postal": "26470", + "coordonnees_gps": [ + 44.5072339417, + 5.26749702819 + ], + "libelle_d_acheminement": "GUMIANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26749702819, + 44.5072339417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8904d7db650b537fd443d347a0bd9a8fd9b8353", + "fields": { + "code_commune_insee": "26150", + "nom_de_la_commune": "IZON LA BRUISSE", + "code_postal": "26560", + "coordonnees_gps": [ + 44.2626520875, + 5.60226769891 + ], + "libelle_d_acheminement": "IZON LA BRUISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60226769891, + 44.2626520875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6719f39bd58e75365814a11ab7f5d81a47ccaba", + "fields": { + "code_commune_insee": "26152", + "nom_de_la_commune": "JONCHERES", + "code_postal": "26310", + "coordonnees_gps": [ + 44.5654041673, + 5.40190869751 + ], + "libelle_d_acheminement": "JONCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40190869751, + 44.5654041673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "260ab58783923dc2aa3b63b0418ba8e08e1e064c", + "fields": { + "code_commune_insee": "26153", + "nom_de_la_commune": "LABOREL", + "code_postal": "26560", + "coordonnees_gps": [ + 44.2884885903, + 5.59159509018 + ], + "libelle_d_acheminement": "LABOREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59159509018, + 44.2884885903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b04e984e9d724167f61a93f06d203e48c4764b1a", + "fields": { + "code_commune_insee": "26167", + "nom_de_la_commune": "LUC EN DIOIS", + "code_postal": "26310", + "coordonnees_gps": [ + 44.6107770597, + 5.45872622815 + ], + "libelle_d_acheminement": "LUC EN DIOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45872622815, + 44.6107770597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88eb45e181739dee74f0b71800856cec0c944290", + "fields": { + "code_commune_insee": "26171", + "nom_de_la_commune": "MANAS", + "code_postal": "26160", + "coordonnees_gps": [ + 44.6017015334, + 4.97988711048 + ], + "libelle_d_acheminement": "MANAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97988711048, + 44.6017015334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f7a7da722cea3013de90534c594ae04e1499367", + "fields": { + "code_commune_insee": "26190", + "nom_de_la_commune": "MONTAULIEU", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3578984951, + 5.21799658575 + ], + "libelle_d_acheminement": "MONTAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21799658575, + 44.3578984951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6d816da698f3dab7b20a1a1f142ad0b68138580", + "fields": { + "code_commune_insee": "26197", + "nom_de_la_commune": "MONTELIER", + "code_postal": "26120", + "coordonnees_gps": [ + 44.9426423498, + 5.02096570564 + ], + "libelle_d_acheminement": "MONTELIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02096570564, + 44.9426423498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4e08d584e96753a03d8ee9743932bdb935f6362", + "fields": { + "code_commune_insee": "26199", + "nom_de_la_commune": "MONTFERRAND LA FARE", + "code_postal": "26510", + "coordonnees_gps": [ + 44.3419027323, + 5.44998013402 + ], + "libelle_d_acheminement": "MONTFERRAND LA FARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44998013402, + 44.3419027323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b04de378f2fa917a9fab70b48f16f08e882cfa10", + "fields": { + "code_commune_insee": "26200", + "nom_de_la_commune": "MONTFROC", + "code_postal": "26560", + "coordonnees_gps": [ + 44.1708554906, + 5.64511167638 + ], + "libelle_d_acheminement": "MONTFROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64511167638, + 44.1708554906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dca9f65dfb9c69e114046fb012c3010355a81d2b", + "fields": { + "code_commune_insee": "26202", + "nom_de_la_commune": "MONTJOUX", + "code_postal": "26220", + "coordonnees_gps": [ + 44.4893401386, + 5.10300091233 + ], + "libelle_d_acheminement": "MONTJOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10300091233, + 44.4893401386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e438196d60e9002f15fb31cb1c26ec6599c96e97", + "fields": { + "code_commune_insee": "26212", + "nom_de_la_commune": "MONTVENDRE", + "code_postal": "26120", + "coordonnees_gps": [ + 44.8660693577, + 5.01205997736 + ], + "libelle_d_acheminement": "MONTVENDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01205997736, + 44.8660693577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d8e9b15a2ad50dc7551acab4444136b9cd7de9b", + "fields": { + "code_commune_insee": "26227", + "nom_de_la_commune": "PELONNE", + "code_postal": "26510", + "coordonnees_gps": [ + 44.3822334481, + 5.38062257159 + ], + "libelle_d_acheminement": "PELONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38062257159, + 44.3822334481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b126ef091760111e21015175720612a13205e980", + "fields": { + "code_commune_insee": "26234", + "nom_de_la_commune": "PIEGROS LA CLASTRE", + "code_postal": "26400", + "coordonnees_gps": [ + 44.6852387812, + 5.09750399955 + ], + "libelle_d_acheminement": "PIEGROS LA CLASTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09750399955, + 44.6852387812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4aae19b767958d25d0effaf40cee6a5b184597f2", + "fields": { + "code_commune_insee": "26235", + "nom_de_la_commune": "PIERRELATTE", + "code_postal": "26700", + "coordonnees_gps": [ + 44.3606937732, + 4.68715113615 + ], + "libelle_d_acheminement": "PIERRELATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68715113615, + 44.3606937732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76b548fbcb9c916f8ce44dd2d75dcfa3c3ced40c", + "fields": { + "code_commune_insee": "26239", + "nom_de_la_commune": "PLAISIANS", + "code_postal": "26170", + "coordonnees_gps": [ + 44.2251384838, + 5.337199685 + ], + "libelle_d_acheminement": "PLAISIANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.337199685, + 44.2251384838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f2c348662f7c1d6ccd73cb87113b9f62b96dd42", + "fields": { + "code_commune_insee": "26243", + "nom_de_la_commune": "LE POET LAVAL", + "code_postal": "26160", + "coordonnees_gps": [ + 44.5259749457, + 5.00162993339 + ], + "libelle_d_acheminement": "LE POET LAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00162993339, + 44.5259749457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcad7a48373dddcd02a52e6848518c24902db109", + "fields": { + "code_commune_insee": "26249", + "nom_de_la_commune": "PONT DE BARRET", + "code_postal": "26160", + "coordonnees_gps": [ + 44.5935802494, + 5.00432288162 + ], + "libelle_d_acheminement": "PONT DE BARRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00432288162, + 44.5935802494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e68728a476d41e7d427215bb288dedb9f0bf177e", + "fields": { + "code_commune_insee": "26255", + "nom_de_la_commune": "LES PRES", + "code_postal": "26310", + "coordonnees_gps": [ + 44.5345063882, + 5.57603358262 + ], + "libelle_d_acheminement": "LES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57603358262, + 44.5345063882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fafd92a8d10d9da76250d3638def8a9ea854bf1", + "fields": { + "code_commune_insee": "26257", + "nom_de_la_commune": "PUYGIRON", + "code_postal": "26160", + "coordonnees_gps": [ + 44.5400904645, + 4.85331314988 + ], + "libelle_d_acheminement": "PUYGIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85331314988, + 44.5400904645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9358e899395ec15c32396b88258a4ee8446af86", + "fields": { + "code_commune_insee": "26259", + "nom_de_la_commune": "RATIERES", + "code_postal": "26330", + "coordonnees_gps": [ + 45.1750778592, + 4.97082735127 + ], + "libelle_d_acheminement": "RATIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97082735127, + 45.1750778592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3676e84c6968efb58881b23577b10e713db51d23", + "fields": { + "code_commune_insee": "26266", + "nom_de_la_commune": "RIMON ET SAVEL", + "code_postal": "26340", + "coordonnees_gps": [ + 44.6628049106, + 5.31268642432 + ], + "libelle_d_acheminement": "RIMON ET SAVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31268642432, + 44.6628049106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb70d5ceedaa79655831a26417ecf009c50827fb", + "fields": { + "code_commune_insee": "26267", + "nom_de_la_commune": "RIOMS", + "code_postal": "26170", + "coordonnees_gps": [ + 44.2699144259, + 5.46075081243 + ], + "libelle_d_acheminement": "RIOMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46075081243, + 44.2699144259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "def9888358580c23675dd7153f73fc58e2ab3058", + "fields": { + "code_commune_insee": "26269", + "nom_de_la_commune": "ROCHEBRUNE", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3264290154, + 5.23698675047 + ], + "libelle_d_acheminement": "ROCHEBRUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23698675047, + 44.3264290154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eee4e54de89d7af966cd3c4050200cd973a6275", + "fields": { + "code_commune_insee": "26272", + "nom_de_la_commune": "ROCHEFORT EN VALDAINE", + "code_postal": "26160", + "coordonnees_gps": [ + 44.5125480322, + 4.85754422248 + ], + "libelle_d_acheminement": "ROCHEFORT EN VALDAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85754422248, + 44.5125480322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80243126688aad262a21ba5fc39dc965854a860b", + "fields": { + "code_commune_insee": "26276", + "nom_de_la_commune": "ROCHE ST SECRET BECONNE", + "code_postal": "26770", + "coordonnees_gps": [ + 44.4794711138, + 5.04276010512 + ], + "libelle_d_acheminement": "ROCHE ST SECRET BECONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04276010512, + 44.4794711138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e72fb4bc1753aa13c5cbb4924141d7c759c5c928", + "fields": { + "code_commune_insee": "26277", + "nom_de_la_commune": "LA ROCHE SUR GRANE", + "code_postal": "26400", + "coordonnees_gps": [ + 44.6750858387, + 4.94016512732 + ], + "libelle_d_acheminement": "LA ROCHE SUR GRANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94016512732, + 44.6750858387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c77e9a741308c15f30d499fb2289805eb20765fb", + "fields": { + "code_commune_insee": "26285", + "nom_de_la_commune": "ROUSSET LES VIGNES", + "code_postal": "26770", + "coordonnees_gps": [ + 44.4229909149, + 5.06698396202 + ], + "libelle_d_acheminement": "ROUSSET LES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06698396202, + 44.4229909149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b300d5c802c6b9857ed5b69759641054618cc57", + "fields": { + "code_commune_insee": "26288", + "nom_de_la_commune": "SAHUNE", + "code_postal": "26510", + "coordonnees_gps": [ + 44.4062765625, + 5.27186320127 + ], + "libelle_d_acheminement": "SAHUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27186320127, + 44.4062765625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42cc2365b6f2e8731641ec85a510fb570897dc98", + "fields": { + "ligne_5": "COL DE ROUSSET", + "code_commune_insee": "26290", + "libelle_d_acheminement": "ST AGNAN EN VERCORS", + "code_postal": "26420", + "nom_de_la_commune": "ST AGNAN EN VERCORS", + "coordonnees_gps": [ + 44.896792332, + 5.44160263815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44160263815, + 44.896792332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94f39206fd77ddb6b613913582f1b1b8592789ac", + "fields": { + "ligne_5": "ROUSSET EN VERCORS", + "code_commune_insee": "26290", + "libelle_d_acheminement": "ST AGNAN EN VERCORS", + "code_postal": "26420", + "nom_de_la_commune": "ST AGNAN EN VERCORS", + "coordonnees_gps": [ + 44.896792332, + 5.44160263815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44160263815, + 44.896792332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74ac624bf58a1a86f5fad0b6d46d311d49c8cf28", + "fields": { + "code_commune_insee": "26292", + "nom_de_la_commune": "ST AUBAN SUR L OUVEZE", + "code_postal": "26170", + "coordonnees_gps": [ + 44.2973942019, + 5.43012241748 + ], + "libelle_d_acheminement": "ST AUBAN SUR L OUVEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43012241748, + 44.2973942019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "011c0abecc9b472a727f40a6719fd6836cafc4a3", + "fields": { + "code_commune_insee": "26293", + "nom_de_la_commune": "ST AVIT", + "code_postal": "26330", + "coordonnees_gps": [ + 45.1990810013, + 4.96469186325 + ], + "libelle_d_acheminement": "ST AVIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96469186325, + 45.1990810013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52b0dc879e69249015bbd0480260c6e273872168", + "fields": { + "code_commune_insee": "26295", + "nom_de_la_commune": "ST BARTHELEMY DE VALS", + "code_postal": "26240", + "coordonnees_gps": [ + 45.1624784084, + 4.87594608232 + ], + "libelle_d_acheminement": "ST BARTHELEMY DE VALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87594608232, + 45.1624784084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f5d242ee77873a97b059070236e7f22422ed163", + "fields": { + "code_commune_insee": "26296", + "nom_de_la_commune": "ST BENOIT EN DIOIS", + "code_postal": "26340", + "coordonnees_gps": [ + 44.6553242476, + 5.26495865272 + ], + "libelle_d_acheminement": "ST BENOIT EN DIOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26495865272, + 44.6553242476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee1f26ff0592557e5118a0e257d81257f84326fe", + "fields": { + "code_commune_insee": "26303", + "nom_de_la_commune": "STE EUPHEMIE SUR OUVEZE", + "code_postal": "26170", + "coordonnees_gps": [ + 44.3011387229, + 5.3913641468 + ], + "libelle_d_acheminement": "STE EUPHEMIE SUR OUVEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3913641468, + 44.3011387229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8a5796d62a8451af0f59d05e24f38845e772d38", + "fields": { + "code_commune_insee": "26304", + "nom_de_la_commune": "ST FERREOL TRENTE PAS", + "code_postal": "26110", + "coordonnees_gps": [ + 44.4418058243, + 5.22377937288 + ], + "libelle_d_acheminement": "ST FERREOL TRENTE PAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22377937288, + 44.4418058243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7106784976a223fcb522fe0a35303433cdfe5f81", + "fields": { + "code_commune_insee": "26306", + "nom_de_la_commune": "STE JALLE", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3334508898, + 5.27890908641 + ], + "libelle_d_acheminement": "STE JALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27890908641, + 44.3334508898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b5a1d2bad687ddd3edc070b844203379b92c4d7", + "fields": { + "code_commune_insee": "26307", + "nom_de_la_commune": "ST JEAN EN ROYANS", + "code_postal": "26190", + "coordonnees_gps": [ + 45.0069955398, + 5.29934748057 + ], + "libelle_d_acheminement": "ST JEAN EN ROYANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29934748057, + 45.0069955398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4a6fc2dea4967cd6b39b70680f2ff38375fefd4", + "fields": { + "code_commune_insee": "26313", + "nom_de_la_commune": "ST MARCEL LES VALENCE", + "code_postal": "26320", + "coordonnees_gps": [ + 44.9723228658, + 4.95099042538 + ], + "libelle_d_acheminement": "ST MARCEL LES VALENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95099042538, + 44.9723228658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8bdeb7b9cc4281d56e0e43f7c53d5c797cbaa3e", + "fields": { + "code_commune_insee": "26321", + "nom_de_la_commune": "ST NAZAIRE LE DESERT", + "code_postal": "26340", + "coordonnees_gps": [ + 44.5598132934, + 5.27103009679 + ], + "libelle_d_acheminement": "ST NAZAIRE LE DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27103009679, + 44.5598132934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63237083bb7b84115a0b754da9608873d3a702e1", + "fields": { + "code_commune_insee": "26322", + "nom_de_la_commune": "ST PANTALEON LES VIGNES", + "code_postal": "26770", + "coordonnees_gps": [ + 44.3954034563, + 5.04330124496 + ], + "libelle_d_acheminement": "ST PANTALEON LES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04330124496, + 44.3954034563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3562951b819e58de6dc17b098cb0c5534724b24e", + "fields": { + "code_commune_insee": "26329", + "nom_de_la_commune": "ST SAUVEUR GOUVERNET", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3303880901, + 5.37614176075 + ], + "libelle_d_acheminement": "ST SAUVEUR GOUVERNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37614176075, + 44.3303880901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18081cd056fa414a1379964807f59fb7e43600f9", + "fields": { + "code_commune_insee": "26336", + "nom_de_la_commune": "SAOU", + "code_postal": "26400", + "coordonnees_gps": [ + 44.6470256973, + 5.11072905542 + ], + "libelle_d_acheminement": "SAOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11072905542, + 44.6470256973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c28fda43cab3222c29ff69f3fb9dccf22d810c36", + "fields": { + "code_commune_insee": "26339", + "nom_de_la_commune": "SAVASSE", + "code_postal": "26740", + "coordonnees_gps": [ + 44.6067336832, + 4.77822199887 + ], + "libelle_d_acheminement": "SAVASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77822199887, + 44.6067336832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fd7aaa78ca704d0f5956c3a0160d924d08bd44a", + "fields": { + "ligne_5": "L HOMME D ARMES", + "code_commune_insee": "26339", + "libelle_d_acheminement": "SAVASSE", + "code_postal": "26740", + "nom_de_la_commune": "SAVASSE", + "coordonnees_gps": [ + 44.6067336832, + 4.77822199887 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77822199887, + 44.6067336832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55d43806e7dd265fdcb40cff1a68e2e3c645040f", + "fields": { + "code_commune_insee": "26343", + "nom_de_la_commune": "SOUSPIERRE", + "code_postal": "26160", + "coordonnees_gps": [ + 44.538558166, + 4.96747535293 + ], + "libelle_d_acheminement": "SOUSPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96747535293, + 44.538558166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e211dccf6b6893f23aa239551acd869be6fcb2d5", + "fields": { + "code_commune_insee": "26345", + "nom_de_la_commune": "SUZE LA ROUSSE", + "code_postal": "26790", + "coordonnees_gps": [ + 44.2929309503, + 4.84420435248 + ], + "libelle_d_acheminement": "SUZE LA ROUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84420435248, + 44.2929309503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d85e013cead7d768b1ad575bc87c38562099ae91", + "fields": { + "code_commune_insee": "26353", + "nom_de_la_commune": "LES TOURRETTES", + "code_postal": "26740", + "coordonnees_gps": [ + 44.6648052297, + 4.80343747078 + ], + "libelle_d_acheminement": "LES TOURRETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80343747078, + 44.6648052297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9352732e5475a6f3f638f94c7e69abaff83f79a4", + "fields": { + "code_commune_insee": "26356", + "nom_de_la_commune": "TRUINAS", + "code_postal": "26460", + "coordonnees_gps": [ + 44.5767207491, + 5.08359812134 + ], + "libelle_d_acheminement": "TRUINAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08359812134, + 44.5767207491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fcecbfc59c544630322fb9676f138cdcf663218", + "fields": { + "code_commune_insee": "26357", + "nom_de_la_commune": "TULETTE", + "code_postal": "26790", + "coordonnees_gps": [ + 44.2840624868, + 4.93792582794 + ], + "libelle_d_acheminement": "TULETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93792582794, + 44.2840624868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c5f85b27925407e8bc146f455fefdbfe4e6b503", + "fields": { + "code_commune_insee": "26359", + "nom_de_la_commune": "VACHERES EN QUINT", + "code_postal": "26150", + "coordonnees_gps": [ + 44.7857176216, + 5.25018392974 + ], + "libelle_d_acheminement": "VACHERES EN QUINT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25018392974, + 44.7857176216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd9f521afcad88577ba3f523bdcd4a6e52e9634e", + "fields": { + "code_commune_insee": "26367", + "nom_de_la_commune": "VENTEROL", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3977805769, + 5.09846513358 + ], + "libelle_d_acheminement": "VENTEROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09846513358, + 44.3977805769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57ba7ee3695b804b6cf6bc1684c23911972dbe0a", + "fields": { + "code_commune_insee": "26372", + "nom_de_la_commune": "VERS SUR MEOUGE", + "code_postal": "26560", + "coordonnees_gps": [ + 44.2358606593, + 5.55110208603 + ], + "libelle_d_acheminement": "VERS SUR MEOUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55110208603, + 44.2358606593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f1db696bc998614f67a04e2c3b6d6f43a8fde34", + "fields": { + "code_commune_insee": "27001", + "nom_de_la_commune": "ACLOU", + "code_postal": "27800", + "coordonnees_gps": [ + 49.1655546426, + 0.698293841066 + ], + "libelle_d_acheminement": "ACLOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.698293841066, + 49.1655546426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25e3cf4db2567942d3cb9b2cf0327fe9a8e92183", + "fields": { + "code_commune_insee": "27002", + "nom_de_la_commune": "ACON", + "code_postal": "27570", + "coordonnees_gps": [ + 48.7694578544, + 1.10492466757 + ], + "libelle_d_acheminement": "ACON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10492466757, + 48.7694578544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1947a34572beb0a043aa620d74ad335e9482061", + "fields": { + "ligne_5": "AMFREVILLE LA CAMPAGNE", + "code_commune_insee": "27011", + "libelle_d_acheminement": "AMFREVILLE ST AMAND", + "code_postal": "27370", + "nom_de_la_commune": "AMFREVILLE ST AMAND", + "coordonnees_gps": [ + 49.2130667488, + 0.925129802159 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.925129802159, + 49.2130667488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4adcde1d0afc1c0c7ebb85a89df7b2da8a7300b5", + "fields": { + "ligne_5": "ST AMAND DES HAUTES TERRES", + "code_commune_insee": "27011", + "libelle_d_acheminement": "AMFREVILLE ST AMAND", + "code_postal": "27370", + "nom_de_la_commune": "AMFREVILLE ST AMAND", + "coordonnees_gps": [ + 49.2130667488, + 0.925129802159 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.925129802159, + 49.2130667488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cddee99d50aae44bc863432f4a48233b84706dda", + "fields": { + "code_commune_insee": "27015", + "nom_de_la_commune": "ANDE", + "code_postal": "27430", + "coordonnees_gps": [ + 49.2280273549, + 1.24535712004 + ], + "libelle_d_acheminement": "ANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24535712004, + 49.2280273549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55bae4f8ede8d5b1b170fbb68a130bb766b4b6c1", + "fields": { + "code_commune_insee": "27017", + "nom_de_la_commune": "ANGERVILLE LA CAMPAGNE", + "code_postal": "27930", + "coordonnees_gps": [ + 48.9889739894, + 1.15705136083 + ], + "libelle_d_acheminement": "ANGERVILLE LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15705136083, + 48.9889739894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eb7bc054995e73f1cf5a24f9c78f0ada0901070", + "fields": { + "code_commune_insee": "27025", + "nom_de_la_commune": "AUTHEUIL AUTHOUILLET", + "code_postal": "27490", + "coordonnees_gps": [ + 49.1004320886, + 1.2947778203 + ], + "libelle_d_acheminement": "AUTHEUIL AUTHOUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2947778203, + 49.1004320886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdbca59fadd70813362c1949d9408805ed2d3367", + "fields": { + "ligne_5": "THOMER LA SOGNE", + "code_commune_insee": "27032", + "libelle_d_acheminement": "CHAMBOIS", + "code_postal": "27240", + "nom_de_la_commune": "CHAMBOIS", + "coordonnees_gps": [ + 48.9282451292, + 1.14607632884 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14607632884, + 48.9282451292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06cf5e5ef1dc98123b3b6a8adb15f199b7b437e4", + "fields": { + "code_commune_insee": "27034", + "nom_de_la_commune": "BACQUEVILLE", + "code_postal": "27440", + "coordonnees_gps": [ + 49.3219203458, + 1.36658657658 + ], + "libelle_d_acheminement": "BACQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36658657658, + 49.3219203458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b99d8ef888ba37ec84423b9fcf4c69eb4ff13775", + "fields": { + "code_commune_insee": "27035", + "nom_de_la_commune": "BAILLEUL LA VALLEE", + "code_postal": "27260", + "coordonnees_gps": [ + 49.1971101863, + 0.431397706561 + ], + "libelle_d_acheminement": "BAILLEUL LA VALLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.431397706561, + 49.1971101863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17b8cea6c6b1ed3ec5d1487f5851c8e3ca3536cc", + "fields": { + "code_commune_insee": "27036", + "nom_de_la_commune": "BALINES", + "code_postal": "27130", + "coordonnees_gps": [ + 48.7482752525, + 0.977506777957 + ], + "libelle_d_acheminement": "BALINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.977506777957, + 48.7482752525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3edefb2c902e427089a175ad37cbdb1981981fd", + "fields": { + "code_commune_insee": "27037", + "nom_de_la_commune": "BARC", + "code_postal": "27170", + "coordonnees_gps": [ + 49.0794545996, + 0.824738866399 + ], + "libelle_d_acheminement": "BARC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.824738866399, + 49.0794545996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a62d803751643ad9d6af2c9193eaa6852a30f0e0", + "fields": { + "code_commune_insee": "27044", + "nom_de_la_commune": "LES BAUX STE CROIX", + "code_postal": "27180", + "coordonnees_gps": [ + 48.9670536048, + 1.10669165131 + ], + "libelle_d_acheminement": "LES BAUX STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10669165131, + 48.9670536048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d49960d21e464b6a3fa30a6482ef3027f8e91a7", + "fields": { + "code_commune_insee": "27048", + "nom_de_la_commune": "BEAUFICEL EN LYONS", + "code_postal": "27480", + "coordonnees_gps": [ + 49.4044391914, + 1.52480610334 + ], + "libelle_d_acheminement": "BEAUFICEL EN LYONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52480610334, + 49.4044391914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "031c32b4aee837af6f75e977d8ac0188126c1653", + "fields": { + "ligne_5": "LA ROUSSIERE", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27270", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d20d54a3630bccff69711167446bc58099fc3e9", + "fields": { + "ligne_5": "LANDEPEREUSE", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27410", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "835973d63a77e03df94078f69db0fb2fc589890a", + "fields": { + "code_commune_insee": "27051", + "nom_de_la_commune": "BEAUMONT LE ROGER", + "code_postal": "27170", + "coordonnees_gps": [ + 49.0592104532, + 0.754833574426 + ], + "libelle_d_acheminement": "BEAUMONT LE ROGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.754833574426, + 49.0592104532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "457c6538ec0704481a15d85f359af85b143dbcd3", + "fields": { + "code_commune_insee": "27057", + "nom_de_la_commune": "BERNIENVILLE", + "code_postal": "27180", + "coordonnees_gps": [ + 49.0744161962, + 1.02876644978 + ], + "libelle_d_acheminement": "BERNIENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02876644978, + 49.0744161962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a49445a0e8a1c9c6e99f642ad4a3531d3813997e", + "fields": { + "ligne_5": "HOULBEC PRES LE GROS THEIL", + "code_commune_insee": "27062", + "libelle_d_acheminement": "LES MONTS DU ROUMOIS", + "code_postal": "27370", + "nom_de_la_commune": "LES MONTS DU ROUMOIS", + "coordonnees_gps": [ + 49.2948046774, + 0.827614672405 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.827614672405, + 49.2948046774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4b0b0484fb7726553c9893ba23a6031a44a67a3", + "fields": { + "code_commune_insee": "27073", + "nom_de_la_commune": "BOIS LE ROI", + "code_postal": "27220", + "coordonnees_gps": [ + 48.8610331627, + 1.34099240808 + ], + "libelle_d_acheminement": "BOIS LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34099240808, + 48.8610331627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5c82d729865d18ab5613e8f9f80bb26ab19611b", + "fields": { + "code_commune_insee": "27074", + "nom_de_la_commune": "BOISNEY", + "code_postal": "27800", + "coordonnees_gps": [ + 49.1561456712, + 0.649696309423 + ], + "libelle_d_acheminement": "BOISNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.649696309423, + 49.1561456712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01f68ee7b72078692fd4d69c172981d9c9c28c8a", + "fields": { + "code_commune_insee": "27098", + "nom_de_la_commune": "BOUCHEVILLIERS", + "code_postal": "27150", + "coordonnees_gps": [ + 49.3984802284, + 1.71160727896 + ], + "libelle_d_acheminement": "BOUCHEVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71160727896, + 49.3984802284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d92bba92b8cd757979fd4f56048f401cf4f5309", + "fields": { + "ligne_5": "BOURGTHEROULDE INFREVILLE", + "code_commune_insee": "27105", + "libelle_d_acheminement": "GRAND BOURGTHEROULDE", + "code_postal": "27520", + "nom_de_la_commune": "GRAND BOURGTHEROULDE", + "coordonnees_gps": [ + 49.2995530921, + 0.876522751918 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.876522751918, + 49.2995530921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c31cc3bbc7bd0b1e2f689a259e8e34e0084de315", + "fields": { + "ligne_5": "INFREVILLE", + "code_commune_insee": "27105", + "libelle_d_acheminement": "GRAND BOURGTHEROULDE", + "code_postal": "27520", + "nom_de_la_commune": "GRAND BOURGTHEROULDE", + "coordonnees_gps": [ + 49.2995530921, + 0.876522751918 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.876522751918, + 49.2995530921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aa02cf7724afedbe503b3494c129bc893e0918b", + "fields": { + "ligne_5": "BRETEUIL SUR ITON", + "code_commune_insee": "27112", + "libelle_d_acheminement": "BRETEUIL", + "code_postal": "27160", + "nom_de_la_commune": "BRETEUIL", + "coordonnees_gps": [ + 48.8525387012, + 0.899890466074 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.899890466074, + 48.8525387012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c38e74dcd12ce351351984a09a989e149fe3942b", + "fields": { + "code_commune_insee": "27127", + "nom_de_la_commune": "CANAPPEVILLE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.1572590127, + 1.08933240354 + ], + "libelle_d_acheminement": "CANAPPEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08933240354, + 49.1572590127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8a7280caef1f111b6f4cc09ef788639cc4b56e3", + "fields": { + "ligne_5": "ST NICOLAS DU BOSC L ABBE", + "code_commune_insee": "27129", + "libelle_d_acheminement": "CAORCHES ST NICOLAS", + "code_postal": "27300", + "nom_de_la_commune": "CAORCHES ST NICOLAS", + "coordonnees_gps": [ + 49.0782233141, + 0.547592654037 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.547592654037, + 49.0782233141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36b6b270fdaee0659c1b387d9110454643a2a2a7", + "fields": { + "code_commune_insee": "27130", + "nom_de_la_commune": "CAPELLE LES GRANDS", + "code_postal": "27270", + "coordonnees_gps": [ + 49.0486679011, + 0.472112443094 + ], + "libelle_d_acheminement": "CAPELLE LES GRANDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.472112443094, + 49.0486679011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c62d9466c0e6ba812fa6ccfaa2578836e71e5968", + "fields": { + "code_commune_insee": "27140", + "nom_de_la_commune": "CHAMBRAY", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0800044787, + 1.31942825082 + ], + "libelle_d_acheminement": "CHAMBRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31942825082, + 49.0800044787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ce1a796ce1e12e24110a8d443bce3dec8bcc087", + "fields": { + "code_commune_insee": "27148", + "nom_de_la_commune": "LA CHAPELLE GAUTHIER", + "code_postal": "27270", + "coordonnees_gps": [ + 48.9851351393, + 0.463962400697 + ], + "libelle_d_acheminement": "LA CHAPELLE GAUTHIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.463962400697, + 48.9851351393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "298c687b84664f2251d4afb28634df1ad09f3295", + "fields": { + "ligne_5": "LES ESSARTS", + "code_commune_insee": "27157", + "libelle_d_acheminement": "MARBOIS", + "code_postal": "27240", + "nom_de_la_commune": "MARBOIS", + "coordonnees_gps": [ + 48.8910449707, + 0.93590219795 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93590219795, + 48.8910449707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2bb4e04c7c9c8786a41263d3ed5bea4dcddf8c8", + "fields": { + "code_commune_insee": "27161", + "nom_de_la_commune": "CLAVILLE", + "code_postal": "27180", + "coordonnees_gps": [ + 49.0485570128, + 1.01887133225 + ], + "libelle_d_acheminement": "CLAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01887133225, + 49.0485570128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38ce07ca32e04854a6faf7bb1529ac2112a5abec", + "fields": { + "code_commune_insee": "27164", + "nom_de_la_commune": "COMBON", + "code_postal": "27170", + "coordonnees_gps": [ + 49.0960144731, + 0.885456482131 + ], + "libelle_d_acheminement": "COMBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.885456482131, + 49.0960144731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf644c658587dcb557b9c7b57d67344623c9842f", + "fields": { + "code_commune_insee": "27165", + "nom_de_la_commune": "CONCHES EN OUCHE", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9547259686, + 0.93199579313 + ], + "libelle_d_acheminement": "CONCHES EN OUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93199579313, + 48.9547259686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf808d3297217058e30bc2c50b9a00ba7ac88bb2", + "fields": { + "code_commune_insee": "27169", + "nom_de_la_commune": "CONTEVILLE", + "code_postal": "27210", + "coordonnees_gps": [ + 49.4174960871, + 0.391276015721 + ], + "libelle_d_acheminement": "CONTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.391276015721, + 49.4174960871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9cb413857f578bed87bbb37229572171056e4da", + "fields": { + "code_commune_insee": "27180", + "nom_de_la_commune": "COURCELLES SUR SEINE", + "code_postal": "27940", + "coordonnees_gps": [ + 49.1852202831, + 1.36612835383 + ], + "libelle_d_acheminement": "COURCELLES SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36612835383, + 49.1852202831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1d22602fa27ca4019660ab2c39fa7c053177618", + "fields": { + "code_commune_insee": "27182", + "nom_de_la_commune": "COURTEILLES", + "code_postal": "27130", + "coordonnees_gps": [ + 48.7385427936, + 0.999904902723 + ], + "libelle_d_acheminement": "COURTEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.999904902723, + 48.7385427936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27ffc61b6f1043dc3bff4ab6a9618e4e51dae7db", + "fields": { + "code_commune_insee": "27185", + "nom_de_la_commune": "CRESTOT", + "code_postal": "27110", + "coordonnees_gps": [ + 49.2039621822, + 0.969531161079 + ], + "libelle_d_acheminement": "CRESTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.969531161079, + 49.2039621822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a94942207e3b817119657ea624210b79c4bc560b", + "fields": { + "code_commune_insee": "27187", + "nom_de_la_commune": "CRIQUEBEUF LA CAMPAGNE", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1985839238, + 0.997594751714 + ], + "libelle_d_acheminement": "CRIQUEBEUF LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.997594751714, + 49.1985839238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9425d9474b10922095690915a50ec221a90a4f6", + "fields": { + "code_commune_insee": "27192", + "nom_de_la_commune": "CROSVILLE LA VIEILLE", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1515342749, + 0.931538491399 + ], + "libelle_d_acheminement": "CROSVILLE LA VIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.931538491399, + 49.1515342749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f86a6b5e204b7366d202c1db02e04710af14865", + "fields": { + "code_commune_insee": "27196", + "nom_de_la_commune": "LES DAMPS", + "code_postal": "27340", + "coordonnees_gps": [ + 49.2941696239, + 1.17226957611 + ], + "libelle_d_acheminement": "LES DAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17226957611, + 49.2941696239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b23d47734a7c721a015543326866443f49ddf7ce", + "fields": { + "ligne_5": "HELLENVILLIERS", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27240", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09bc1161eacfe0a2d3ed7e0b8857ccd0b08e3eaa", + "fields": { + "ligne_5": "LE SACQ", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27240", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01ebf592a06e066660850c50f1333da0e6d07b9d", + "fields": { + "ligne_5": "MANTHELON", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27240", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6fb7e113458c79f5df46cdd66e101ed37b411b3", + "fields": { + "code_commune_insee": "27200", + "nom_de_la_commune": "DARDEZ", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0839988552, + 1.20732659473 + ], + "libelle_d_acheminement": "DARDEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20732659473, + 49.0839988552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94d2eb7fba8ef83e7e1821487bbd195a4b3efe12", + "fields": { + "code_commune_insee": "27201", + "nom_de_la_commune": "DAUBEUF LA CAMPAGNE", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1891854799, + 1.02944450993 + ], + "libelle_d_acheminement": "DAUBEUF LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02944450993, + 49.1891854799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cd7c41aaa53e5a857f359032c22f6f8b9f1aa46", + "fields": { + "code_commune_insee": "27202", + "nom_de_la_commune": "DAUBEUF PRES VATTEVILLE", + "code_postal": "27430", + "coordonnees_gps": [ + 49.2606303253, + 1.31083595676 + ], + "libelle_d_acheminement": "DAUBEUF PRES VATTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31083595676, + 49.2606303253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e936231f678df702e2591e899ce927779548a53", + "fields": { + "code_commune_insee": "27209", + "nom_de_la_commune": "ECAQUELON", + "code_postal": "27290", + "coordonnees_gps": [ + 49.2887544007, + 0.716950300267 + ], + "libelle_d_acheminement": "ECAQUELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.716950300267, + 49.2887544007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b3855fdfea464ed91df7bda4c1736cd41bb6376", + "fields": { + "code_commune_insee": "27210", + "nom_de_la_commune": "ECARDENVILLE LA CAMPAGNE", + "code_postal": "27170", + "coordonnees_gps": [ + 49.1239824474, + 0.834768267271 + ], + "libelle_d_acheminement": "ECARDENVILLE LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.834768267271, + 49.1239824474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0afe4fdd8599c7e9faad6462d1d3e9029e8710cb", + "fields": { + "ligne_5": "FONTENAY EN VEXIN", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27510", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7936f670be0e4001e262b52e3028362296ac1981", + "fields": { + "ligne_5": "GUITRY", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27510", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bbaa364241128d69293c4729faa0b0340ea490c", + "fields": { + "ligne_5": "BERTHENONVILLE", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27630", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcb42eba74590b07cb623d05ce547a1037f525ca", + "fields": { + "ligne_5": "BUS ST REMY", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27630", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a6d42b1645a10936a1c9236feb7cad214c5a25e", + "fields": { + "ligne_5": "CIVIERES", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27630", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b4fcb027e6253ab53a492f71f221286f889a214", + "fields": { + "ligne_5": "ECOS", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27630", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e92cbf631885de8a4f854e6b1d24e7ba2733600b", + "fields": { + "code_commune_insee": "27216", + "nom_de_la_commune": "EMALLEVILLE", + "code_postal": "27930", + "coordonnees_gps": [ + 49.1016649726, + 1.1570133623 + ], + "libelle_d_acheminement": "EMALLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1570133623, + 49.1016649726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3be2e5b0fca6b513744bdb7312ed1133c02fe26", + "fields": { + "code_commune_insee": "27217", + "nom_de_la_commune": "EMANVILLE", + "code_postal": "27190", + "coordonnees_gps": [ + 49.0589220607, + 0.906701238061 + ], + "libelle_d_acheminement": "EMANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.906701238061, + 49.0589220607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5eae14c09ff1c074dede24cdc465e34c1f4f72e0", + "fields": { + "code_commune_insee": "27228", + "nom_de_la_commune": "ETURQUERAYE", + "code_postal": "27350", + "coordonnees_gps": [ + 49.3693948332, + 0.688772409605 + ], + "libelle_d_acheminement": "ETURQUERAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.688772409605, + 49.3693948332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "926583705dabc6747b9d9e556169e3e521da67b5", + "fields": { + "code_commune_insee": "27230", + "nom_de_la_commune": "EZY SUR EURE", + "code_postal": "27530", + "coordonnees_gps": [ + 48.8709806514, + 1.41262980866 + ], + "libelle_d_acheminement": "EZY SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41262980866, + 48.8709806514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "937e08a78b9dda9e060d6a178f7a4696ed4a9607", + "fields": { + "code_commune_insee": "27235", + "nom_de_la_commune": "FAVEROLLES LA CAMPAGNE", + "code_postal": "27190", + "coordonnees_gps": [ + 49.0206303776, + 0.927054936984 + ], + "libelle_d_acheminement": "FAVEROLLES LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.927054936984, + 49.0206303776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57f57211194b28ab084a00ac4bfe6b25c7b844f7", + "fields": { + "code_commune_insee": "27237", + "nom_de_la_commune": "LE FAVRIL", + "code_postal": "27230", + "coordonnees_gps": [ + 49.1831075532, + 0.525458384869 + ], + "libelle_d_acheminement": "LE FAVRIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.525458384869, + 49.1831075532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7de355c9a5cc70e83aab07a961c5d608716dc45a", + "fields": { + "code_commune_insee": "27242", + "nom_de_la_commune": "LE FIDELAIRE", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9436797791, + 0.80246046702 + ], + "libelle_d_acheminement": "LE FIDELAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80246046702, + 48.9436797791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4aa40193e0aeeb1712bd6c7d5c63d60f898d01cd", + "fields": { + "code_commune_insee": "27248", + "nom_de_la_commune": "FOLLEVILLE", + "code_postal": "27230", + "coordonnees_gps": [ + 49.1581049505, + 0.524835316917 + ], + "libelle_d_acheminement": "FOLLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.524835316917, + 49.1581049505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77513a1b4340d372eb15aa4cb57b1ce60ec2b3ac", + "fields": { + "code_commune_insee": "27256", + "nom_de_la_commune": "LA FORET DU PARC", + "code_postal": "27220", + "coordonnees_gps": [ + 48.927613225, + 1.24035993264 + ], + "libelle_d_acheminement": "LA FORET DU PARC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24035993264, + 48.927613225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17d25e8e5bd64e4b57c4f3e185b712717318ea0b", + "fields": { + "code_commune_insee": "27261", + "nom_de_la_commune": "FOUQUEVILLE", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2221102, + 0.963471124164 + ], + "libelle_d_acheminement": "FOUQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.963471124164, + 49.2221102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1377ce8564b7fe62264abd72f56d2c28973cb60", + "fields": { + "ligne_5": "ST OUEN DES CHAMPS", + "code_commune_insee": "27263", + "libelle_d_acheminement": "LE PERREY", + "code_postal": "27680", + "nom_de_la_commune": "LE PERREY", + "coordonnees_gps": [ + 49.3782168182, + 0.574020669603 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.574020669603, + 49.3782168182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c44c280a603d6b12e5d0983e098aaf5574770380", + "fields": { + "code_commune_insee": "27266", + "nom_de_la_commune": "FRANQUEVILLE", + "code_postal": "27800", + "coordonnees_gps": [ + 49.1730511445, + 0.68581354676 + ], + "libelle_d_acheminement": "FRANQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68581354676, + 49.1730511445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6f085032be19c15b6548cd3016d8fb407ff37df", + "fields": { + "code_commune_insee": "27279", + "nom_de_la_commune": "GASNY", + "code_postal": "27620", + "coordonnees_gps": [ + 49.1020218463, + 1.59975187173 + ], + "libelle_d_acheminement": "GASNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59975187173, + 49.1020218463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dd752f6324efeba18f5375ac6270088849a46a9", + "fields": { + "code_commune_insee": "27289", + "nom_de_la_commune": "LA GOULAFRIERE", + "code_postal": "27390", + "coordonnees_gps": [ + 48.9480738928, + 0.432319912039 + ], + "libelle_d_acheminement": "LA GOULAFRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.432319912039, + 48.9480738928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f80cd0eec210a6059c20fe4cb9e1d77690ee5e0", + "fields": { + "code_commune_insee": "27299", + "nom_de_la_commune": "GRAVIGNY", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0522263912, + 1.16057059772 + ], + "libelle_d_acheminement": "GRAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16057059772, + 49.0522263912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2659caea3257223d8aaed0120a68a131bd2abe3c", + "fields": { + "code_commune_insee": "27312", + "nom_de_la_commune": "HARDENCOURT COCHEREL", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0418737569, + 1.31601000617 + ], + "libelle_d_acheminement": "HARDENCOURT COCHEREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31601000617, + 49.0418737569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "481104c47ddd45dbc252b42638d45bce0a8e2887", + "fields": { + "code_commune_insee": "27315", + "nom_de_la_commune": "HARQUENCY", + "code_postal": "27700", + "coordonnees_gps": [ + 49.2494239305, + 1.49992266549 + ], + "libelle_d_acheminement": "HARQUENCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49992266549, + 49.2494239305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e85d5c26a7518053b47ffb46aa3da718a5584f84", + "fields": { + "code_commune_insee": "27319", + "nom_de_la_commune": "LA HAYE DE ROUTOT", + "code_postal": "27350", + "coordonnees_gps": [ + 49.4030066708, + 0.728082467511 + ], + "libelle_d_acheminement": "LA HAYE DE ROUTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.728082467511, + 49.4030066708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "471e7217a53ea4c473ddbfc03c00daa3678e97a0", + "fields": { + "code_commune_insee": "27323", + "nom_de_la_commune": "LA HAYE ST SYLVESTRE", + "code_postal": "27330", + "coordonnees_gps": [ + 48.9110081722, + 0.593509071777 + ], + "libelle_d_acheminement": "LA HAYE ST SYLVESTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.593509071777, + 48.9110081722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fab823ae90e68e5ce735eb862182bd8eecc4203", + "fields": { + "code_commune_insee": "27331", + "nom_de_la_commune": "HEUBECOURT HARICOURT", + "code_postal": "27630", + "coordonnees_gps": [ + 49.1301336149, + 1.56459912242 + ], + "libelle_d_acheminement": "HEUBECOURT HARICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56459912242, + 49.1301336149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0da470674b882d505e6fc0bc9cdc7d14fe6dc13d", + "fields": { + "code_commune_insee": "27334", + "nom_de_la_commune": "HEUDREVILLE EN LIEUVIN", + "code_postal": "27230", + "coordonnees_gps": [ + 49.1933109292, + 0.503312662769 + ], + "libelle_d_acheminement": "HEUDREVILLE EN LIEUVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.503312662769, + 49.1933109292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c05c50954e38b887382ca51edbab65bb90d878f", + "fields": { + "code_commune_insee": "27339", + "nom_de_la_commune": "HONDOUVILLE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.1448656783, + 1.11623535424 + ], + "libelle_d_acheminement": "HONDOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11623535424, + 49.1448656783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41ecc264843e9f62e3b73e55bd7d274ddf25bd12", + "fields": { + "code_commune_insee": "27346", + "nom_de_la_commune": "HOUVILLE EN VEXIN", + "code_postal": "27440", + "coordonnees_gps": [ + 49.2999641721, + 1.35759066784 + ], + "libelle_d_acheminement": "HOUVILLE EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35759066784, + 49.2999641721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06b334fea42176d924aa46c47592052c8cd3c05f", + "fields": { + "code_commune_insee": "27354", + "nom_de_la_commune": "IVILLE", + "code_postal": "27110", + "coordonnees_gps": [ + 49.17694671, + 0.926307699955 + ], + "libelle_d_acheminement": "IVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.926307699955, + 49.17694671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc948c13560b7c1380e221f206e6e03cd12efebd", + "fields": { + "ligne_5": "ST LEGER SUR BONNEVILLE", + "code_commune_insee": "27361", + "libelle_d_acheminement": "LA LANDE ST LEGER", + "code_postal": "27210", + "nom_de_la_commune": "LA LANDE ST LEGER", + "coordonnees_gps": [ + 49.2976910975, + 0.336083900968 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.336083900968, + 49.2976910975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dac13b421f4760cc27d1df747b6a30e36365dadb", + "fields": { + "code_commune_insee": "27364", + "nom_de_la_commune": "LAUNAY", + "code_postal": "27470", + "coordonnees_gps": [ + 49.1080587131, + 0.737298458469 + ], + "libelle_d_acheminement": "LAUNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.737298458469, + 49.1080587131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81c2a56201eb0691abce266bfa70ad3a46fd6823", + "fields": { + "code_commune_insee": "27365", + "nom_de_la_commune": "LERY", + "code_postal": "27690", + "coordonnees_gps": [ + 49.2875848843, + 1.19524982012 + ], + "libelle_d_acheminement": "LERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19524982012, + 49.2875848843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffaa7fe75b43c64d1d8c9e3911a2f98c738caf82", + "fields": { + "code_commune_insee": "27373", + "nom_de_la_commune": "LORLEAU", + "code_postal": "27480", + "coordonnees_gps": [ + 49.4214416378, + 1.50486927146 + ], + "libelle_d_acheminement": "LORLEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50486927146, + 49.4214416378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "570be7f09328df90145142dfc8d5b8124951ff53", + "fields": { + "code_commune_insee": "27376", + "nom_de_la_commune": "LOUYE", + "code_postal": "27650", + "coordonnees_gps": [ + 48.7969011449, + 1.31913602258 + ], + "libelle_d_acheminement": "LOUYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31913602258, + 48.7969011449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcc61ec0a583253b5ee07e06f98890f7f3a2d1f9", + "fields": { + "code_commune_insee": "27400", + "nom_de_la_commune": "MEREY", + "code_postal": "27640", + "coordonnees_gps": [ + 48.9586730122, + 1.39284165552 + ], + "libelle_d_acheminement": "MEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39284165552, + 48.9586730122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ab6d361ae7fd9f2153a60c17cfa4ef8aa6b73ae", + "fields": { + "code_commune_insee": "27404", + "nom_de_la_commune": "MESNIL ROUSSET", + "code_postal": "27390", + "coordonnees_gps": [ + 48.8934556889, + 0.557278907345 + ], + "libelle_d_acheminement": "MESNIL ROUSSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.557278907345, + 48.8934556889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6d4e06bfbcc686c1a7606a1fdbc443d6197f1cd", + "fields": { + "code_commune_insee": "27405", + "nom_de_la_commune": "MESNIL SOUS VIENNE", + "code_postal": "27150", + "coordonnees_gps": [ + 49.3852334918, + 1.6675843732 + ], + "libelle_d_acheminement": "MESNIL SOUS VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6675843732, + 49.3852334918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d9bbcff4a4b71630459ddcf3a0159df9aed17d5", + "fields": { + "code_commune_insee": "27415", + "nom_de_la_commune": "MORAINVILLE JOUVEAUX", + "code_postal": "27260", + "coordonnees_gps": [ + 49.2227027964, + 0.443976742663 + ], + "libelle_d_acheminement": "MORAINVILLE JOUVEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.443976742663, + 49.2227027964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e6b106ca1b5b73d9a3b0864499a4e526e9f3a23", + "fields": { + "code_commune_insee": "27419", + "nom_de_la_commune": "MOUETTES", + "code_postal": "27220", + "coordonnees_gps": [ + 48.8886476337, + 1.36834248344 + ], + "libelle_d_acheminement": "MOUETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36834248344, + 48.8886476337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77b033eaf5a8ac0cf646bc19f3f2f3af06c9014f", + "fields": { + "code_commune_insee": "27421", + "nom_de_la_commune": "MOUSSEAUX NEUVILLE", + "code_postal": "27220", + "coordonnees_gps": [ + 48.90687343, + 1.33849084974 + ], + "libelle_d_acheminement": "MOUSSEAUX NEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33849084974, + 48.90687343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8742161fb46637b0ab83397c447cc23d804fe41f", + "fields": { + "code_commune_insee": "27423", + "nom_de_la_commune": "MUZY", + "code_postal": "27650", + "coordonnees_gps": [ + 48.7781253842, + 1.32569756656 + ], + "libelle_d_acheminement": "MUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32569756656, + 48.7781253842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf280c1b52cac6b99138d8337a00bc44c0d3111e", + "fields": { + "code_commune_insee": "27429", + "nom_de_la_commune": "NEUILLY", + "code_postal": "27730", + "coordonnees_gps": [ + 48.9295320189, + 1.41731024629 + ], + "libelle_d_acheminement": "NEUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41731024629, + 48.9295320189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2033a47845256fcf091cd6883054cde226baacaf", + "fields": { + "code_commune_insee": "27435", + "nom_de_la_commune": "LA NOE POULAIN", + "code_postal": "27560", + "coordonnees_gps": [ + 49.2706730509, + 0.519567816517 + ], + "libelle_d_acheminement": "LA NOE POULAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.519567816517, + 49.2706730509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9394be14ad4fec43a37b6440556d809db06dfd2", + "fields": { + "ligne_5": "LE FRESNE", + "code_commune_insee": "27447", + "libelle_d_acheminement": "LE VAL DORE", + "code_postal": "27190", + "nom_de_la_commune": "LE VAL DORE", + "coordonnees_gps": [ + 48.9412455696, + 1.02129449463 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02129449463, + 48.9412455696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4228f23f74ead9df0fb1eb3111edf8d219e29df", + "fields": { + "code_commune_insee": "27453", + "nom_de_la_commune": "PERRIERS SUR ANDELLE", + "code_postal": "27910", + "coordonnees_gps": [ + 49.4084277874, + 1.36331833867 + ], + "libelle_d_acheminement": "PERRIERS SUR ANDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36331833867, + 49.4084277874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ec13cf792ea28c8b17f88fded08b3d57002e642", + "fields": { + "code_commune_insee": "27462", + "nom_de_la_commune": "LE PLANQUAY", + "code_postal": "27230", + "coordonnees_gps": [ + 49.0943788554, + 0.426951723046 + ], + "libelle_d_acheminement": "LE PLANQUAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.426951723046, + 49.0943788554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b66fe13d37fb8d7984689466d56d816b12d82129", + "fields": { + "code_commune_insee": "27477", + "nom_de_la_commune": "PRESSAGNY L ORGUEILLEUX", + "code_postal": "27510", + "coordonnees_gps": [ + 49.1308034237, + 1.46515135716 + ], + "libelle_d_acheminement": "PRESSAGNY L ORGUEILLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46515135716, + 49.1308034237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d25f9b9401e129ee0c8ba229d0ce9f56b81b85b8", + "fields": { + "code_commune_insee": "27488", + "nom_de_la_commune": "RENNEVILLE", + "code_postal": "27910", + "coordonnees_gps": [ + 49.3960826717, + 1.32607128725 + ], + "libelle_d_acheminement": "RENNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32607128725, + 49.3960826717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d4503b4d5c57eca26af0c606aec0df4131ede4c", + "fields": { + "code_commune_insee": "27492", + "nom_de_la_commune": "ROMILLY LA PUTHENAYE", + "code_postal": "27170", + "coordonnees_gps": [ + 49.0132474819, + 0.837767280682 + ], + "libelle_d_acheminement": "ROMILLY LA PUTHENAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.837767280682, + 49.0132474819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bfcd473b4137c68835b9812f3d3905132a95a4a", + "fields": { + "code_commune_insee": "27501", + "nom_de_la_commune": "ROUVRAY", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0668656108, + 1.33964798484 + ], + "libelle_d_acheminement": "ROUVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33964798484, + 49.0668656108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8ca0c631c1dad9974892f3204bff630fab4740f", + "fields": { + "code_commune_insee": "27505", + "nom_de_la_commune": "ST AGNAN DE CERNIERES", + "code_postal": "27390", + "coordonnees_gps": [ + 48.9501046061, + 0.531514828879 + ], + "libelle_d_acheminement": "ST AGNAN DE CERNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.531514828879, + 48.9501046061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4a2065d9e7bc498de650a78bed2d7edcb564e95", + "fields": { + "code_commune_insee": "27517", + "nom_de_la_commune": "ST AUBIN SUR GAILLON", + "code_postal": "27600", + "coordonnees_gps": [ + 49.132834827, + 1.33624192382 + ], + "libelle_d_acheminement": "ST AUBIN SUR GAILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33624192382, + 49.132834827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e6cab1909908de34ac0a1321ae142af8652e0af", + "fields": { + "code_commune_insee": "27520", + "nom_de_la_commune": "ST BENOIT DES OMBRES", + "code_postal": "27450", + "coordonnees_gps": [ + 49.2265023608, + 0.618333897431 + ], + "libelle_d_acheminement": "ST BENOIT DES OMBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.618333897431, + 49.2265023608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d14bdf05956a351b97b0f8db1579980eb5d2be3f", + "fields": { + "code_commune_insee": "27521", + "nom_de_la_commune": "ST CHRISTOPHE SUR AVRE", + "code_postal": "27820", + "coordonnees_gps": [ + 48.6988286398, + 0.805102409427 + ], + "libelle_d_acheminement": "ST CHRISTOPHE SUR AVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.805102409427, + 48.6988286398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8c86a9b1b1d2e2fdeedbbae78cd388ce5324e94", + "fields": { + "code_commune_insee": "27528", + "nom_de_la_commune": "LE VAUDREUIL", + "code_postal": "27100", + "coordonnees_gps": [ + 49.2609960336, + 1.19894900143 + ], + "libelle_d_acheminement": "LE VAUDREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19894900143, + 49.2609960336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be452ede76f1344c420a524c2a07ddb422843c4c", + "fields": { + "code_commune_insee": "27531", + "nom_de_la_commune": "ST DENIS DES MONTS", + "code_postal": "27520", + "coordonnees_gps": [ + 49.256053123, + 0.806583378737 + ], + "libelle_d_acheminement": "ST DENIS DES MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.806583378737, + 49.256053123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1895c2e71bf5eccd587c093d71c0739052401e2", + "fields": { + "code_commune_insee": "27546", + "nom_de_la_commune": "ST GERMAIN DES ANGLES", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0884520129, + 1.13771355337 + ], + "libelle_d_acheminement": "ST GERMAIN DES ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13771355337, + 49.0884520129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0739fb014fc4dfd3fffcd9c0ed1637e87c5a307", + "fields": { + "code_commune_insee": "27548", + "nom_de_la_commune": "ST GERMAIN SUR AVRE", + "code_postal": "27320", + "coordonnees_gps": [ + 48.7727688563, + 1.26277953417 + ], + "libelle_d_acheminement": "ST GERMAIN SUR AVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26277953417, + 48.7727688563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e78a76029dca624166a4af4a4875cabb3447ad2", + "fields": { + "code_commune_insee": "27553", + "nom_de_la_commune": "ST JULIEN DE LA LIEGUE", + "code_postal": "27600", + "coordonnees_gps": [ + 49.1401487215, + 1.28700576113 + ], + "libelle_d_acheminement": "ST JULIEN DE LA LIEGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28700576113, + 49.1401487215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b248dcecffe5b450087334017b7eaa1e88d2469", + "fields": { + "ligne_5": "ST PIERRE D AUTILS", + "code_commune_insee": "27554", + "libelle_d_acheminement": "LA CHAPELLE LONGUEVILLE", + "code_postal": "27950", + "nom_de_la_commune": "LA CHAPELLE LONGUEVILLE", + "coordonnees_gps": [ + 49.1061858744, + 1.4332609397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4332609397, + 49.1061858744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bf91f876f2429a5fa2eecdb0a46c55dd594f8d3", + "fields": { + "code_commune_insee": "27558", + "nom_de_la_commune": "ST LEGER DU GENNETEY", + "code_postal": "27520", + "coordonnees_gps": [ + 49.2826233384, + 0.752219384803 + ], + "libelle_d_acheminement": "ST LEGER DU GENNETEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.752219384803, + 49.2826233384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "831aecec52eb1dfb634177e599a145c76c0cb5d9", + "fields": { + "code_commune_insee": "27562", + "nom_de_la_commune": "ST MARCEL", + "code_postal": "27950", + "coordonnees_gps": [ + 49.0915999954, + 1.43925560775 + ], + "libelle_d_acheminement": "ST MARCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43925560775, + 49.0915999954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e69a327ea56efd9b54fff1ec29e0f8b7e8ed3a1", + "fields": { + "code_commune_insee": "27564", + "nom_de_la_commune": "ST MARDS DE FRESNE", + "code_postal": "27230", + "coordonnees_gps": [ + 49.0805940442, + 0.454584726238 + ], + "libelle_d_acheminement": "ST MARDS DE FRESNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.454584726238, + 49.0805940442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f746fa53be775ac427652760b8a3fee3f75132c7", + "fields": { + "ligne_5": "STE MARGUERITE DE L AUTEL", + "code_commune_insee": "27565", + "libelle_d_acheminement": "LE LESME", + "code_postal": "27160", + "nom_de_la_commune": "LE LESME", + "coordonnees_gps": [ + 48.911287302, + 0.845987853541 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.845987853541, + 48.911287302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efad6956de5b0dd9406bf5b0e5fc99cb4d5e0674", + "fields": { + "code_commune_insee": "27569", + "nom_de_la_commune": "ST MARTIN DU TILLEUL", + "code_postal": "27300", + "coordonnees_gps": [ + 49.1062640143, + 0.526574332783 + ], + "libelle_d_acheminement": "ST MARTIN DU TILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.526574332783, + 49.1062640143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cee218b930043d7d463f8705eba31b4751491517", + "fields": { + "code_commune_insee": "27570", + "nom_de_la_commune": "ST MARTIN LA CAMPAGNE", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0651299646, + 1.07718638182 + ], + "libelle_d_acheminement": "ST MARTIN LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07718638182, + 49.0651299646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b1e1f0c2789b0fd018ba0053aae412d7e5c585b", + "fields": { + "code_commune_insee": "27571", + "nom_de_la_commune": "ST MARTIN ST FIRMIN", + "code_postal": "27450", + "coordonnees_gps": [ + 49.2935102103, + 0.559679927993 + ], + "libelle_d_acheminement": "ST MARTIN ST FIRMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.559679927993, + 49.2935102103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89db8b9b3a8640c3d35d1e51a889e220fa432fae", + "fields": { + "code_commune_insee": "27576", + "nom_de_la_commune": "STE OPPORTUNE DU BOSC", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1679377889, + 0.840374168625 + ], + "libelle_d_acheminement": "STE OPPORTUNE DU BOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.840374168625, + 49.1679377889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe0d73c75dafed679674691658951746296e4e6d", + "fields": { + "code_commune_insee": "27584", + "nom_de_la_commune": "ST PAUL DE FOURQUES", + "code_postal": "27800", + "coordonnees_gps": [ + 49.2179420109, + 0.794815809765 + ], + "libelle_d_acheminement": "ST PAUL DE FOURQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.794815809765, + 49.2179420109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "630758733c4e29850d1ef33f0ee0ea9b1a2bd06d", + "fields": { + "code_commune_insee": "27586", + "nom_de_la_commune": "ST PHILBERT SUR BOISSEY", + "code_postal": "27520", + "coordonnees_gps": [ + 49.2577068576, + 0.784330470452 + ], + "libelle_d_acheminement": "ST PHILBERT SUR BOISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.784330470452, + 49.2577068576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8da20d638c60667fdd38ef098b9ee782a27f8089", + "fields": { + "code_commune_insee": "27587", + "nom_de_la_commune": "ST PHILBERT SUR RISLE", + "code_postal": "27290", + "coordonnees_gps": [ + 49.2773818224, + 0.647386865123 + ], + "libelle_d_acheminement": "ST PHILBERT SUR RISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.647386865123, + 49.2773818224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03d3b706f209dc843159f6d459b4c3fbbed0a329", + "fields": { + "code_commune_insee": "27599", + "nom_de_la_commune": "ST PIERRE LA GARENNE", + "code_postal": "27600", + "coordonnees_gps": [ + 49.1475155899, + 1.3912826068 + ], + "libelle_d_acheminement": "ST PIERRE LA GARENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3912826068, + 49.1475155899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3ab02c849fc4dc51820babb623041b9cb9c47ca", + "fields": { + "code_commune_insee": "27611", + "nom_de_la_commune": "ST VIGOR", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0751768839, + 1.26002954032 + ], + "libelle_d_acheminement": "ST VIGOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26002954032, + 49.0751768839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84d602ae3efeb22243baae34b63c32cbe6815bb5", + "fields": { + "code_commune_insee": "27614", + "nom_de_la_commune": "SANCOURT", + "code_postal": "27150", + "coordonnees_gps": [ + 49.3535843441, + 1.67606825753 + ], + "libelle_d_acheminement": "SANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67606825753, + 49.3535843441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc4700c748131a919d9926ad80fdede12766fd73", + "fields": { + "code_commune_insee": "27615", + "nom_de_la_commune": "SASSEY", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0502192536, + 1.2227926418 + ], + "libelle_d_acheminement": "SASSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2227926418, + 49.0502192536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9188e2fb0dca3efbce12b557e1b55b767b72584e", + "fields": { + "code_commune_insee": "27618", + "nom_de_la_commune": "SEBECOURT", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9755682262, + 0.831363916278 + ], + "libelle_d_acheminement": "SEBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.831363916278, + 48.9755682262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "175d736274f4f25b10a97bb3c4622d36b439a4cf", + "fields": { + "code_commune_insee": "27622", + "nom_de_la_commune": "SERQUIGNY", + "code_postal": "27470", + "coordonnees_gps": [ + 49.1148167511, + 0.707564259681 + ], + "libelle_d_acheminement": "SERQUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.707564259681, + 49.1148167511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e4a220860af789767422d8b4124a38e63b2e7af", + "fields": { + "code_commune_insee": "27625", + "nom_de_la_commune": "SUZAY", + "code_postal": "27420", + "coordonnees_gps": [ + 49.2701087808, + 1.51348714459 + ], + "libelle_d_acheminement": "SUZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51348714459, + 49.2701087808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2343bb0b2b573a1950287d1cc72d0fe22da1766c", + "fields": { + "code_commune_insee": "27627", + "nom_de_la_commune": "LE THEIL NOLENT", + "code_postal": "27230", + "coordonnees_gps": [ + 49.1522591555, + 0.53418397178 + ], + "libelle_d_acheminement": "LE THEIL NOLENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53418397178, + 49.1522591555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2946abecd373472bf74d5caed7b51baa0c10ed58", + "fields": { + "code_commune_insee": "27629", + "nom_de_la_commune": "THIBERVILLE", + "code_postal": "27230", + "coordonnees_gps": [ + 49.1322455831, + 0.440825641328 + ], + "libelle_d_acheminement": "THIBERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.440825641328, + 49.1322455831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "221ee359cf0cb189d80f8b46df4f8defa32578ef", + "fields": { + "code_commune_insee": "27644", + "nom_de_la_commune": "TILLY", + "code_postal": "27510", + "coordonnees_gps": [ + 49.1423281336, + 1.52870047144 + ], + "libelle_d_acheminement": "TILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52870047144, + 49.1423281336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77d9193def1c488c7b84a96bba7f8487c897f31a", + "fields": { + "code_commune_insee": "27650", + "nom_de_la_commune": "TOURNEDOS BOIS HUBERT", + "code_postal": "27180", + "coordonnees_gps": [ + 49.0739979281, + 0.987864506785 + ], + "libelle_d_acheminement": "TOURNEDOS BOIS HUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.987864506785, + 49.0739979281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08691fe1be76752dfe469ac4ad516dd0f3f0173b", + "fields": { + "code_commune_insee": "27655", + "nom_de_la_commune": "TOURVILLE SUR PONT AUDEMER", + "code_postal": "27500", + "coordonnees_gps": [ + 49.3212693418, + 0.517360617762 + ], + "libelle_d_acheminement": "TOURVILLE SUR PONT AUDEMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.517360617762, + 49.3212693418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78e00501228160af22967c7c284dd7aa39cb1c23", + "fields": { + "code_commune_insee": "27660", + "nom_de_la_commune": "LA TRINITE DE REVILLE", + "code_postal": "27270", + "coordonnees_gps": [ + 48.9669200561, + 0.510644672881 + ], + "libelle_d_acheminement": "LA TRINITE DE REVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.510644672881, + 48.9669200561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b064324bb9625d96378957466f60b3e58a4469c", + "fields": { + "code_commune_insee": "27662", + "nom_de_la_commune": "TRIQUEVILLE", + "code_postal": "27500", + "coordonnees_gps": [ + 49.3298951973, + 0.437354872089 + ], + "libelle_d_acheminement": "TRIQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.437354872089, + 49.3298951973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "065570db5145b2aef04fd3b63a2dc79feb374e0f", + "fields": { + "code_commune_insee": "27668", + "nom_de_la_commune": "LE VAL DAVID", + "code_postal": "27120", + "coordonnees_gps": [ + 48.9788560101, + 1.26307012857 + ], + "libelle_d_acheminement": "LE VAL DAVID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26307012857, + 48.9788560101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "532ff95d1a3547401100a011df6a013625e72553", + "fields": { + "code_commune_insee": "27671", + "nom_de_la_commune": "VANNECROCQ", + "code_postal": "27210", + "coordonnees_gps": [ + 49.3030779386, + 0.428281652185 + ], + "libelle_d_acheminement": "VANNECROCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.428281652185, + 49.3030779386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e066e4f33b1417a179df31e1c49e861291376da", + "fields": { + "code_commune_insee": "27677", + "nom_de_la_commune": "VENON", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1731568906, + 1.0516279972 + ], + "libelle_d_acheminement": "VENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0516279972, + 49.1731568906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "502dbacfe449a881d2d4b3030353f4daae3addb7", + "fields": { + "code_commune_insee": "27680", + "nom_de_la_commune": "VERNEUSSES", + "code_postal": "27390", + "coordonnees_gps": [ + 48.9094606653, + 0.425364858539 + ], + "libelle_d_acheminement": "VERNEUSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.425364858539, + 48.9094606653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cb5f4ddd9748e1c723b26d7e2efb32f6f28d4ac", + "fields": { + "code_commune_insee": "27689", + "nom_de_la_commune": "VILLEGATS", + "code_postal": "27120", + "coordonnees_gps": [ + 48.9984526159, + 1.46395648175 + ], + "libelle_d_acheminement": "VILLEGATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46395648175, + 48.9984526159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e347d599fea008aeca12501320d215c0d9678209", + "fields": { + "code_commune_insee": "27690", + "nom_de_la_commune": "VILLERS EN VEXIN", + "code_postal": "27420", + "coordonnees_gps": [ + 49.249845153, + 1.59021278187 + ], + "libelle_d_acheminement": "VILLERS EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59021278187, + 49.249845153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36a08dacc190093d19e7a4032fece2f747a6b62b", + "fields": { + "ligne_5": "VILLALET", + "code_commune_insee": "27693", + "libelle_d_acheminement": "SYLVAINS LES MOULINS", + "code_postal": "27240", + "nom_de_la_commune": "SYLVAINS LES MOULINS", + "coordonnees_gps": [ + 48.9028184134, + 1.10269659898 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10269659898, + 48.9028184134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fbf09ce67104d3e12ce2fa56caac54e2315ae62", + "fields": { + "code_commune_insee": "27697", + "nom_de_la_commune": "VIRONVAY", + "code_postal": "27400", + "coordonnees_gps": [ + 49.2064207106, + 1.2196737257 + ], + "libelle_d_acheminement": "VIRONVAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2196737257, + 49.2064207106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0e601bb8de6191510aed32d1fb53abfcd9d3403", + "fields": { + "code_commune_insee": "27699", + "nom_de_la_commune": "VOISCREVILLE", + "code_postal": "27520", + "coordonnees_gps": [ + 49.2802991689, + 0.766898302367 + ], + "libelle_d_acheminement": "VOISCREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.766898302367, + 49.2802991689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbdd062fe4ba71929cf5d4ecfc39e7fd797a655e", + "fields": { + "code_commune_insee": "28006", + "nom_de_la_commune": "AMILLY", + "code_postal": "28300", + "coordonnees_gps": [ + 48.4423011417, + 1.40659215552 + ], + "libelle_d_acheminement": "AMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40659215552, + 48.4423011417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc7b073c19ba5897272d56b8b0f3d4a46f62022f", + "fields": { + "code_commune_insee": "28008", + "nom_de_la_commune": "ARDELLES", + "code_postal": "28170", + "coordonnees_gps": [ + 48.5460809864, + 1.17906298832 + ], + "libelle_d_acheminement": "ARDELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17906298832, + 48.5460809864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5b9c4e96f2112ec43c2a24d8019bc8bbf034de6", + "fields": { + "ligne_5": "LANGEY", + "code_commune_insee": "28012", + "libelle_d_acheminement": "COMMUNE NOUVELLE D ARROU", + "code_postal": "28220", + "nom_de_la_commune": "COMMUNE NOUVELLE D ARROU", + "coordonnees_gps": [ + 48.1120067473, + 1.08598331855 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08598331855, + 48.1120067473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80f7f85ebb1ae439daf3783e0be35b7a2d3b8bb5", + "fields": { + "ligne_5": "CHATILLON EN DUNOIS", + "code_commune_insee": "28012", + "libelle_d_acheminement": "COMMUNE NOUVELLE D ARROU", + "code_postal": "28290", + "nom_de_la_commune": "COMMUNE NOUVELLE D ARROU", + "coordonnees_gps": [ + 48.1120067473, + 1.08598331855 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08598331855, + 48.1120067473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc871811abecf5bdcd4f876a733170d8e9a95d7a", + "fields": { + "ligne_5": "AUNEAU", + "code_commune_insee": "28015", + "libelle_d_acheminement": "AUNEAU BLEURY ST SYMPHORIEN", + "code_postal": "28700", + "nom_de_la_commune": "AUNEAU BLEURY ST SYMPHORIEN", + "coordonnees_gps": [ + 48.4694338029, + 1.77316730051 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77316730051, + 48.4694338029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8718bf3815a3d239b23f6211361adfd925f962ee", + "fields": { + "code_commune_insee": "28019", + "nom_de_la_commune": "BAIGNEAUX", + "code_postal": "28140", + "coordonnees_gps": [ + 48.1283278233, + 1.82055061372 + ], + "libelle_d_acheminement": "BAIGNEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82055061372, + 48.1283278233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b4b05801e2cccc44b031f84ccd7f3ef1137127f", + "fields": { + "ligne_5": "ARMENONVILLE LES GATINEAUX", + "code_commune_insee": "28023", + "libelle_d_acheminement": "BAILLEAU ARMENONVILLE", + "code_postal": "28320", + "nom_de_la_commune": "BAILLEAU ARMENONVILLE", + "coordonnees_gps": [ + 48.527016484, + 1.64740884389 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64740884389, + 48.527016484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dc225c8c13330a213dccabb23d90595c4f2b9ad", + "fields": { + "code_commune_insee": "28029", + "nom_de_la_commune": "BAZOCHES LES HAUTES", + "code_postal": "28140", + "coordonnees_gps": [ + 48.159923395, + 1.82026354206 + ], + "libelle_d_acheminement": "BAZOCHES LES HAUTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82026354206, + 48.159923395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2a1fa19c9e9f4c9af26d7152d074ed3b133ae00", + "fields": { + "ligne_5": "ST GERMAIN LA GATINE", + "code_commune_insee": "28034", + "libelle_d_acheminement": "BERCHERES ST GERMAIN", + "code_postal": "28300", + "nom_de_la_commune": "BERCHERES ST GERMAIN", + "coordonnees_gps": [ + 48.5350712593, + 1.4681780093 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4681780093, + 48.5350712593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83ee1d816664249b0969349e874ff7950cb872d4", + "fields": { + "code_commune_insee": "28035", + "nom_de_la_commune": "BERCHERES LES PIERRES", + "code_postal": "28630", + "coordonnees_gps": [ + 48.3738944765, + 1.55553584326 + ], + "libelle_d_acheminement": "BERCHERES LES PIERRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55553584326, + 48.3738944765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb5876135a71d04dee23df45b7a9413a86f098f9", + "fields": { + "code_commune_insee": "28050", + "nom_de_la_commune": "BONCOURT", + "code_postal": "28260", + "coordonnees_gps": [ + 48.846510259, + 1.46368452192 + ], + "libelle_d_acheminement": "BONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46368452192, + 48.846510259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c584e891954b388d911feda29edeb5ad62a655be", + "fields": { + "code_commune_insee": "28052", + "nom_de_la_commune": "BOUGLAINVAL", + "code_postal": "28130", + "coordonnees_gps": [ + 48.5606379303, + 1.51011696561 + ], + "libelle_d_acheminement": "BOUGLAINVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51011696561, + 48.5606379303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69ab18d884fa70ce545ae4a22fa72888065561df", + "fields": { + "code_commune_insee": "28059", + "nom_de_la_commune": "BREZOLLES", + "code_postal": "28270", + "coordonnees_gps": [ + 48.6888038711, + 1.06430633901 + ], + "libelle_d_acheminement": "BREZOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06430633901, + 48.6888038711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9c90375f761cffe9aaf78250d4bbf86a485043a", + "fields": { + "code_commune_insee": "28068", + "nom_de_la_commune": "CHALLET", + "code_postal": "28300", + "coordonnees_gps": [ + 48.5557196797, + 1.42782660043 + ], + "libelle_d_acheminement": "CHALLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42782660043, + 48.5557196797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b806eff4b2a46301626b68f4bdf3b78253eb4bc", + "fields": { + "code_commune_insee": "28085", + "nom_de_la_commune": "CHARTRES", + "code_postal": "28000", + "coordonnees_gps": [ + 48.4471464884, + 1.50570610616 + ], + "libelle_d_acheminement": "CHARTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50570610616, + 48.4471464884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55c5f611ba284ef8d863b5999e362532b8ef8b8f", + "fields": { + "code_commune_insee": "28088", + "nom_de_la_commune": "CHATEAUDUN", + "code_postal": "28200", + "coordonnees_gps": [ + 48.0762457334, + 1.32636728625 + ], + "libelle_d_acheminement": "CHATEAUDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32636728625, + 48.0762457334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ae1922f580c477c3e07af6270e494002f2487d2", + "fields": { + "code_commune_insee": "28089", + "nom_de_la_commune": "CHATEAUNEUF EN THYMERAIS", + "code_postal": "28170", + "coordonnees_gps": [ + 48.589125049, + 1.23775016473 + ], + "libelle_d_acheminement": "CHATEAUNEUF EN THYMERAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23775016473, + 48.589125049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23eafaa90405364bc1a9aaa352c204f3f011ecba", + "fields": { + "code_commune_insee": "28090", + "nom_de_la_commune": "LES CHATELETS", + "code_postal": "28270", + "coordonnees_gps": [ + 48.6595742637, + 1.01827113343 + ], + "libelle_d_acheminement": "LES CHATELETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01827113343, + 48.6595742637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7e38e12d6cdc801b90482663709a27c5e46948e", + "fields": { + "code_commune_insee": "28092", + "nom_de_la_commune": "CHATENAY", + "code_postal": "28700", + "coordonnees_gps": [ + 48.3552348827, + 1.88349529404 + ], + "libelle_d_acheminement": "CHATENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88349529404, + 48.3552348827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf76bc3fbe7d56c76479594c58ba74b8d7bb1323", + "fields": { + "code_commune_insee": "28094", + "nom_de_la_commune": "CHAUDON", + "code_postal": "28210", + "coordonnees_gps": [ + 48.6542763925, + 1.49383187007 + ], + "libelle_d_acheminement": "CHAUDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49383187007, + 48.6542763925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7fa659eebbb40507682030e31a426eecf81adfa", + "fields": { + "code_commune_insee": "28116", + "nom_de_la_commune": "COURVILLE SUR EURE", + "code_postal": "28190", + "coordonnees_gps": [ + 48.4522710093, + 1.24921701438 + ], + "libelle_d_acheminement": "COURVILLE SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24921701438, + 48.4522710093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a5147e85d51b5ebe3955a989b57171fa68ef43a", + "fields": { + "code_commune_insee": "28121", + "nom_de_la_commune": "DAMBRON", + "code_postal": "28140", + "coordonnees_gps": [ + 48.1163250641, + 1.87193508112 + ], + "libelle_d_acheminement": "DAMBRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87193508112, + 48.1163250641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf2bef0be2d483a56766152cf5108401ce35d6be", + "fields": { + "code_commune_insee": "28123", + "nom_de_la_commune": "DAMPIERRE SOUS BROU", + "code_postal": "28160", + "coordonnees_gps": [ + 48.2244450667, + 1.10899937921 + ], + "libelle_d_acheminement": "DAMPIERRE SOUS BROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10899937921, + 48.2244450667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "025f32b4d323d8ae2dc93f5cc750cc3205b15d83", + "fields": { + "code_commune_insee": "28126", + "nom_de_la_commune": "DANCY", + "code_postal": "28800", + "coordonnees_gps": [ + 48.1527632149, + 1.46203314181 + ], + "libelle_d_acheminement": "DANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46203314181, + 48.1527632149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1d7653e670f1a72dafa8d2f8771efecf7d7143e", + "fields": { + "code_commune_insee": "28127", + "nom_de_la_commune": "DANGEAU", + "code_postal": "28160", + "coordonnees_gps": [ + 48.1969504376, + 1.27633745372 + ], + "libelle_d_acheminement": "DANGEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27633745372, + 48.1969504376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3859a8c547f32dd4dfdfc7ea95326d7f173660b4", + "fields": { + "code_commune_insee": "28137", + "nom_de_la_commune": "ECROSNES", + "code_postal": "28320", + "coordonnees_gps": [ + 48.5539831477, + 1.73345464654 + ], + "libelle_d_acheminement": "ECROSNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73345464654, + 48.5539831477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "136fc278e9d260942c28cdd0d094ff6e95f3d331", + "fields": { + "code_commune_insee": "28143", + "nom_de_la_commune": "ESCORPAIN", + "code_postal": "28270", + "coordonnees_gps": [ + 48.719747149, + 1.21490953697 + ], + "libelle_d_acheminement": "ESCORPAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21490953697, + 48.719747149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2f733af79cd511e1a7d3a5a582a6b8d20cc202c", + "fields": { + "code_commune_insee": "28146", + "nom_de_la_commune": "FAVEROLLES", + "code_postal": "28210", + "coordonnees_gps": [ + 48.6810277192, + 1.58421456616 + ], + "libelle_d_acheminement": "FAVEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58421456616, + 48.6810277192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1d8e0c85a4fb1895c5129975577842365e482b2", + "fields": { + "code_commune_insee": "28149", + "nom_de_la_commune": "LA FERTE VIDAME", + "code_postal": "28340", + "coordonnees_gps": [ + 48.6000288384, + 0.88283888665 + ], + "libelle_d_acheminement": "LA FERTE VIDAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88283888665, + 48.6000288384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3165222fbdf861ea6598fb85928cd168fb76a69a", + "fields": { + "code_commune_insee": "28157", + "nom_de_la_commune": "FONTENAY SUR CONIE", + "code_postal": "28140", + "coordonnees_gps": [ + 48.1656552776, + 1.68239888522 + ], + "libelle_d_acheminement": "FONTENAY SUR CONIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68239888522, + 48.1656552776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0f802c6484cefb722ca2ad40e73fb3ae991be72", + "fields": { + "code_commune_insee": "28159", + "nom_de_la_commune": "LA FRAMBOISIERE", + "code_postal": "28250", + "coordonnees_gps": [ + 48.597334686, + 1.01588556317 + ], + "libelle_d_acheminement": "LA FRAMBOISIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01588556317, + 48.597334686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4455ba25a1aae9fd6e923e10ef2dc26a0edac730", + "fields": { + "code_commune_insee": "28160", + "nom_de_la_commune": "FRANCOURVILLE", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4018212449, + 1.66249055604 + ], + "libelle_d_acheminement": "FRANCOURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66249055604, + 48.4018212449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dddf49f23d56d63d6216a3d35d9620a987bdedf", + "fields": { + "code_commune_insee": "28176", + "nom_de_la_commune": "LE GAULT ST DENIS", + "code_postal": "28800", + "coordonnees_gps": [ + 48.2461354624, + 1.48317191408 + ], + "libelle_d_acheminement": "LE GAULT ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48317191408, + 48.2461354624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10f0a70d96ebb395500302765dac07720b7fd61c", + "fields": { + "code_commune_insee": "28177", + "nom_de_la_commune": "GELLAINVILLE", + "code_postal": "28630", + "coordonnees_gps": [ + 48.4162199686, + 1.53530515243 + ], + "libelle_d_acheminement": "GELLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53530515243, + 48.4162199686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0be31486caf3d6e68973c37d4e722d3a4625aaf7", + "fields": { + "code_commune_insee": "28188", + "nom_de_la_commune": "LE GUE DE LONGROI", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4912723078, + 1.70789056431 + ], + "libelle_d_acheminement": "LE GUE DE LONGROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70789056431, + 48.4912723078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "600181dc281cb2493c58f209177e7dddaf404848", + "fields": { + "code_commune_insee": "28191", + "nom_de_la_commune": "HANCHES", + "code_postal": "28130", + "coordonnees_gps": [ + 48.5967671764, + 1.6482246442 + ], + "libelle_d_acheminement": "HANCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6482246442, + 48.5967671764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60c9c539edf3cbd0c46c80b118be3f99e85c213c", + "fields": { + "code_commune_insee": "28196", + "nom_de_la_commune": "ILLIERS COMBRAY", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3032872833, + 1.22693727509 + ], + "libelle_d_acheminement": "ILLIERS COMBRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22693727509, + 48.3032872833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7edc190ca1a56d5760838b8882aeae424c90578", + "fields": { + "code_commune_insee": "28197", + "nom_de_la_commune": "INTREVILLE", + "code_postal": "28310", + "coordonnees_gps": [ + 48.2982378814, + 1.93552953534 + ], + "libelle_d_acheminement": "INTREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93552953534, + 48.2982378814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43ab757868e0ee0c6296682868427fd3527a646f", + "fields": { + "ligne_5": "MERVILLIERS", + "code_commune_insee": "28199", + "libelle_d_acheminement": "JANVILLE EN BEAUCE", + "code_postal": "28310", + "nom_de_la_commune": "JANVILLE EN BEAUCE", + "coordonnees_gps": [ + 48.200814518, + 1.89039239434 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89039239434, + 48.200814518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36218500d416b6c167fd0ba873b3657e6edae242", + "fields": { + "code_commune_insee": "28202", + "nom_de_la_commune": "LAMBLORE", + "code_postal": "28340", + "coordonnees_gps": [ + 48.6259517253, + 0.915645729308 + ], + "libelle_d_acheminement": "LAMBLORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.915645729308, + 48.6259517253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a339a9eb3f88651e6ca0915fd96e4a68fa10282a", + "fields": { + "code_commune_insee": "28209", + "nom_de_la_commune": "LEVES", + "code_postal": "28300", + "coordonnees_gps": [ + 48.4799675774, + 1.46931768509 + ], + "libelle_d_acheminement": "LEVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46931768509, + 48.4799675774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc3f8e5809ebb8dcae46016a27f7b00278532beb", + "fields": { + "code_commune_insee": "28215", + "nom_de_la_commune": "LOUVILLE LA CHENARD", + "code_postal": "28150", + "coordonnees_gps": [ + 48.3262102975, + 1.79519469277 + ], + "libelle_d_acheminement": "LOUVILLE LA CHENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79519469277, + 48.3262102975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1adb762963f45656505f9516ea03a2d5098b45a6", + "fields": { + "code_commune_insee": "28220", + "nom_de_la_commune": "LUISANT", + "code_postal": "28600", + "coordonnees_gps": [ + 48.4232173062, + 1.46928323877 + ], + "libelle_d_acheminement": "LUISANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46928323877, + 48.4232173062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e01d5c19421af609f62d876562dc550c7ecded1", + "fields": { + "code_commune_insee": "28226", + "nom_de_la_commune": "MAILLEBOIS", + "code_postal": "28170", + "coordonnees_gps": [ + 48.6321135718, + 1.1501161639 + ], + "libelle_d_acheminement": "MAILLEBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1501161639, + 48.6321135718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9488d2b0d5707177e503a646543e79f26bc1d9e2", + "fields": { + "code_commune_insee": "28227", + "nom_de_la_commune": "MAINTENON", + "code_postal": "28130", + "coordonnees_gps": [ + 48.5838765563, + 1.58410337254 + ], + "libelle_d_acheminement": "MAINTENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58410337254, + 48.5838765563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9cc247b5a3f82a659e691ff20a80da2b25c52c4", + "fields": { + "code_commune_insee": "28233", + "nom_de_la_commune": "MARBOUE", + "code_postal": "28200", + "coordonnees_gps": [ + 48.1196433379, + 1.30776071957 + ], + "libelle_d_acheminement": "MARBOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30776071957, + 48.1196433379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94587768e0863bd67d97238502d9a3e51bd77cc4", + "fields": { + "ligne_5": "COUDRECEAU", + "code_commune_insee": "28236", + "libelle_d_acheminement": "ARCISSES", + "code_postal": "28400", + "nom_de_la_commune": "ARCISSES", + "coordonnees_gps": [ + 48.337398478, + 0.850887620161 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.850887620161, + 48.337398478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c05ff47077c5b5d7d7009601e5892087b67252f3", + "fields": { + "ligne_5": "MARGON", + "code_commune_insee": "28236", + "libelle_d_acheminement": "ARCISSES", + "code_postal": "28400", + "nom_de_la_commune": "ARCISSES", + "coordonnees_gps": [ + 48.337398478, + 0.850887620161 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.850887620161, + 48.337398478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c36ddcff721d19d199a4f9d4586fd7ee81369ebe", + "fields": { + "code_commune_insee": "28240", + "nom_de_la_commune": "MEAUCE", + "code_postal": "28240", + "coordonnees_gps": [ + 48.4843548386, + 0.985374374936 + ], + "libelle_d_acheminement": "MEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.985374374936, + 48.4843548386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdba80d2da27f7c1fb06957b1eb5ab05b1353233", + "fields": { + "code_commune_insee": "28242", + "nom_de_la_commune": "MEREGLISE", + "code_postal": "28120", + "coordonnees_gps": [ + 48.2935308635, + 1.18476040726 + ], + "libelle_d_acheminement": "MEREGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18476040726, + 48.2935308635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5899be825d6bc39daa539e185d6d42590cfccd9c", + "fields": { + "code_commune_insee": "28246", + "nom_de_la_commune": "MESLAY LE VIDAME", + "code_postal": "28360", + "coordonnees_gps": [ + 48.2778375421, + 1.48218731208 + ], + "libelle_d_acheminement": "MESLAY LE VIDAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48218731208, + 48.2778375421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "556c9e32e680a03140f93a720f1c9ae279a9efbf", + "fields": { + "code_commune_insee": "28251", + "nom_de_la_commune": "MEZIERES EN DROUAIS", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7254690446, + 1.4421064834 + ], + "libelle_d_acheminement": "MEZIERES EN DROUAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4421064834, + 48.7254690446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84c88669cfdf25c1baae381f602e0921e4a29a81", + "fields": { + "code_commune_insee": "28253", + "nom_de_la_commune": "MIGNIERES", + "code_postal": "28630", + "coordonnees_gps": [ + 48.3607988018, + 1.42399697169 + ], + "libelle_d_acheminement": "MIGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42399697169, + 48.3607988018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e524f339fcf7f15e6cb5dcec3f8ffb1f843df685", + "fields": { + "code_commune_insee": "28256", + "nom_de_la_commune": "MOLEANS", + "code_postal": "28200", + "coordonnees_gps": [ + 48.1124611479, + 1.40240862093 + ], + "libelle_d_acheminement": "MOLEANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40240862093, + 48.1124611479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ae880900e385526163c4f8115ac3672b8a678f8", + "fields": { + "ligne_5": "VACHERESSES LES BASSES", + "code_commune_insee": "28279", + "libelle_d_acheminement": "NOGENT LE ROI", + "code_postal": "28210", + "nom_de_la_commune": "NOGENT LE ROI", + "coordonnees_gps": [ + 48.6300718767, + 1.52405693927 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52405693927, + 48.6300718767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ae733eb6cdf591aa16707d94e3b5001cb10d3f7", + "fields": { + "code_commune_insee": "28283", + "nom_de_la_commune": "NOTTONVILLE", + "code_postal": "28140", + "coordonnees_gps": [ + 48.1245767113, + 1.52530460831 + ], + "libelle_d_acheminement": "NOTTONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52530460831, + 48.1245767113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74db6083509c8740e96f56fd293d3d54e5079baa", + "fields": { + "code_commune_insee": "28284", + "nom_de_la_commune": "OINVILLE ST LIPHARD", + "code_postal": "28310", + "coordonnees_gps": [ + 48.2356320829, + 1.92414549708 + ], + "libelle_d_acheminement": "OINVILLE ST LIPHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92414549708, + 48.2356320829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa15c567c24c609e2676fab0804d4824068c00c1", + "fields": { + "code_commune_insee": "28321", + "nom_de_la_commune": "ROUVRES", + "code_postal": "28260", + "coordonnees_gps": [ + 48.8322998, + 1.48070112621 + ], + "libelle_d_acheminement": "ROUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48070112621, + 48.8322998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18123e5f3a315bea7a59d9259ca5245512e8acd7", + "fields": { + "code_commune_insee": "28325", + "nom_de_la_commune": "ST AUBIN DES BOIS", + "code_postal": "28300", + "coordonnees_gps": [ + 48.4631418835, + 1.34544472164 + ], + "libelle_d_acheminement": "ST AUBIN DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34544472164, + 48.4631418835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7275987b8eb8f0f8c241839832461cdc23cb4698", + "fields": { + "code_commune_insee": "28332", + "nom_de_la_commune": "STE GEMME MORONVAL", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7355373578, + 1.41198816896 + ], + "libelle_d_acheminement": "STE GEMME MORONVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41198816896, + 48.7355373578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51a4fe20b66342eb7863fce1447bf6486052aa65", + "fields": { + "code_commune_insee": "28339", + "nom_de_la_commune": "ST GERMAIN LE GAILLARD", + "code_postal": "28190", + "coordonnees_gps": [ + 48.4242025077, + 1.25461736967 + ], + "libelle_d_acheminement": "ST GERMAIN LE GAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25461736967, + 48.4242025077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8699c72f531fc323f5aef83729ef3ca711f09c5", + "fields": { + "code_commune_insee": "28342", + "nom_de_la_commune": "ST JEAN PIERRE FIXTE", + "code_postal": "28400", + "coordonnees_gps": [ + 48.2924688955, + 0.830178092005 + ], + "libelle_d_acheminement": "ST JEAN PIERRE FIXTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.830178092005, + 48.2924688955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3df3fe224b519d48da5577e83e70bf2f9d9071be", + "fields": { + "code_commune_insee": "28344", + "nom_de_la_commune": "ST LEGER DES AUBEES", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4142778005, + 1.74991232981 + ], + "libelle_d_acheminement": "ST LEGER DES AUBEES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74991232981, + 48.4142778005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a99a3abb9dd1c9a802a7999bbdd8cfa596df3d8", + "fields": { + "code_commune_insee": "28347", + "nom_de_la_commune": "ST LUBIN DE LA HAYE", + "code_postal": "28410", + "coordonnees_gps": [ + 48.818368676, + 1.56052234981 + ], + "libelle_d_acheminement": "ST LUBIN DE LA HAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56052234981, + 48.818368676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd8b2cc97c9d9140e9aa1f94ba277c50bd02d0fa", + "fields": { + "code_commune_insee": "28355", + "nom_de_la_commune": "ST OUEN MARCHEFROY", + "code_postal": "28260", + "coordonnees_gps": [ + 48.8572176136, + 1.53020950146 + ], + "libelle_d_acheminement": "ST OUEN MARCHEFROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53020950146, + 48.8572176136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49f0046a49d9c0f78b7528c34bef0d4193fc9c71", + "fields": { + "code_commune_insee": "28362", + "nom_de_la_commune": "ST VICTOR DE BUTHON", + "code_postal": "28240", + "coordonnees_gps": [ + 48.408433137, + 0.979282290732 + ], + "libelle_d_acheminement": "ST VICTOR DE BUTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.979282290732, + 48.408433137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc8ce79bd74be2d405731fbec4b53c6786019842", + "fields": { + "code_commune_insee": "28363", + "nom_de_la_commune": "SAINVILLE", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4153857478, + 1.88200624319 + ], + "libelle_d_acheminement": "SAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88200624319, + 48.4153857478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c042da67d218fb8517e2dde511b76f7860334c1b", + "fields": { + "code_commune_insee": "28365", + "nom_de_la_commune": "SANDARVILLE", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3458662386, + 1.34877776164 + ], + "libelle_d_acheminement": "SANDARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34877776164, + 48.3458662386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89ff577c29b0cc950fea8df258537df059d7b62a", + "fields": { + "code_commune_insee": "28375", + "nom_de_la_commune": "SERVILLE", + "code_postal": "28410", + "coordonnees_gps": [ + 48.7695206769, + 1.48740784688 + ], + "libelle_d_acheminement": "SERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48740784688, + 48.7695206769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b806b80940c148f7a58005722e0b24d7a1f11902", + "fields": { + "code_commune_insee": "28377", + "nom_de_la_commune": "SOREL MOUSSEL", + "code_postal": "28260", + "coordonnees_gps": [ + 48.8293779269, + 1.39390446206 + ], + "libelle_d_acheminement": "SOREL MOUSSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39390446206, + 48.8293779269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a93473c2c0bfe6fcb7135bc6dc9d92ecf3e7e49", + "fields": { + "code_commune_insee": "28380", + "nom_de_la_commune": "SOURS", + "code_postal": "28630", + "coordonnees_gps": [ + 48.4134954931, + 1.59645296484 + ], + "libelle_d_acheminement": "SOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59645296484, + 48.4134954931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "194cf40ff8cb96e5baad9eb5962886a467422530", + "fields": { + "code_commune_insee": "28382", + "nom_de_la_commune": "TERMINIERS", + "code_postal": "28140", + "coordonnees_gps": [ + 48.0896452774, + 1.72961042495 + ], + "libelle_d_acheminement": "TERMINIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72961042495, + 48.0896452774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e56b7e4c8ca594a7453e89973fdfb0b9ad194c38", + "fields": { + "code_commune_insee": "28383", + "nom_de_la_commune": "THEUVILLE", + "code_postal": "28360", + "coordonnees_gps": [ + 48.3326223196, + 1.59154245059 + ], + "libelle_d_acheminement": "THEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59154245059, + 48.3326223196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7a17526599f7feeab2b4cc009034269bd78e065", + "fields": { + "code_commune_insee": "28389", + "nom_de_la_commune": "THIVILLE", + "code_postal": "28200", + "coordonnees_gps": [ + 48.0192686469, + 1.36596589142 + ], + "libelle_d_acheminement": "THIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36596589142, + 48.0192686469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9eca6d33f4e04ab95b2a72d79071d31abd2aec4e", + "fields": { + "code_commune_insee": "28393", + "nom_de_la_commune": "TREMBLAY LES VILLAGES", + "code_postal": "28170", + "coordonnees_gps": [ + 48.5881626072, + 1.36867843258 + ], + "libelle_d_acheminement": "TREMBLAY LES VILLAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36867843258, + 48.5881626072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99f04165b0ef4d2ee79423f3cb4647f17adb4f91", + "fields": { + "code_commune_insee": "28397", + "nom_de_la_commune": "UMPEAU", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4684563155, + 1.66580333613 + ], + "libelle_d_acheminement": "UMPEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66580333613, + 48.4684563155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cb8c99bbd6019221301cacb2819476eb9ed66eb", + "fields": { + "code_commune_insee": "28398", + "nom_de_la_commune": "UNVERRE", + "code_postal": "28160", + "coordonnees_gps": [ + 48.188963533, + 1.07242438332 + ], + "libelle_d_acheminement": "UNVERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07242438332, + 48.188963533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e979e23048f54285348d0206f0cc3786c91ed8ec", + "fields": { + "code_commune_insee": "28405", + "nom_de_la_commune": "VERT EN DROUAIS", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7510492874, + 1.29542201706 + ], + "libelle_d_acheminement": "VERT EN DROUAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29542201706, + 48.7510492874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "403ab7d56c48dc898011366ddc30dfa6e2892dd8", + "fields": { + "code_commune_insee": "28408", + "nom_de_la_commune": "VIERVILLE", + "code_postal": "28700", + "coordonnees_gps": [ + 48.3843640334, + 1.90039348579 + ], + "libelle_d_acheminement": "VIERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90039348579, + 48.3843640334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03d91ef4fa542347b23fb7254fc0c0505bea268e", + "fields": { + "code_commune_insee": "28409", + "nom_de_la_commune": "VIEUVICQ", + "code_postal": "28120", + "coordonnees_gps": [ + 48.2613605126, + 1.20658103343 + ], + "libelle_d_acheminement": "VIEUVICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20658103343, + 48.2613605126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "558202a57cf3b2d69f104964768b2be3c7f32c27", + "fields": { + "code_commune_insee": "28417", + "nom_de_la_commune": "VILLIERS LE MORHIER", + "code_postal": "28130", + "coordonnees_gps": [ + 48.6211492274, + 1.57247991458 + ], + "libelle_d_acheminement": "VILLIERS LE MORHIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57247991458, + 48.6211492274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec87f4da389cbbd88b0410e544d0e6949582516d", + "fields": { + "ligne_5": "ROUVRAY ST FLORENTIN", + "code_commune_insee": "28422", + "libelle_d_acheminement": "LES VILLAGES VOVEENS", + "code_postal": "28150", + "nom_de_la_commune": "LES VILLAGES VOVEENS", + "coordonnees_gps": [ + 48.269861494, + 1.6311008246 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6311008246, + 48.269861494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41bd32bfd167e579930b17c515cf1eb19b3bbf64", + "fields": { + "code_commune_insee": "29001", + "nom_de_la_commune": "ARGOL", + "code_postal": "29560", + "coordonnees_gps": [ + 48.2496052712, + -4.29867172624 + ], + "libelle_d_acheminement": "ARGOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.29867172624, + 48.2496052712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2f9769ebd6071ec205ac1c478687932a904a89a", + "fields": { + "code_commune_insee": "29004", + "nom_de_la_commune": "BANNALEC", + "code_postal": "29380", + "coordonnees_gps": [ + 47.9350863729, + -3.69536960662 + ], + "libelle_d_acheminement": "BANNALEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.69536960662, + 47.9350863729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cc70f6fddd1a18fc40ea8b309a795ea45d701ea", + "fields": { + "code_commune_insee": "29008", + "nom_de_la_commune": "BEUZEC CAP SIZUN", + "code_postal": "29790", + "coordonnees_gps": [ + 48.0717542642, + -4.50670939299 + ], + "libelle_d_acheminement": "BEUZEC CAP SIZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.50670939299, + 48.0717542642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb2aa50ebacded8b4504c95a295276b61345da65", + "fields": { + "code_commune_insee": "29018", + "nom_de_la_commune": "BRENNILIS", + "code_postal": "29690", + "coordonnees_gps": [ + 48.3596142812, + -3.85052670212 + ], + "libelle_d_acheminement": "BRENNILIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.85052670212, + 48.3596142812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4597278ea3d1d503e8b0e44983a0d2477b6d9f07", + "fields": { + "ligne_5": "PLOUNEOUR TREZ", + "code_commune_insee": "29021", + "libelle_d_acheminement": "PLOUNEOUR BRIGNOGAN PLAGES", + "code_postal": "29890", + "nom_de_la_commune": "PLOUNEOUR BRIGNOGAN PLAGES", + "coordonnees_gps": [ + 48.6673259175, + -4.33395670694 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.33395670694, + 48.6673259175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d6919aa8b178e0bd1bf09e807ba59145f12e3f8", + "fields": { + "ligne_5": "LE POULDU", + "code_commune_insee": "29031", + "libelle_d_acheminement": "CLOHARS CARNOET", + "code_postal": "29360", + "nom_de_la_commune": "CLOHARS CARNOET", + "coordonnees_gps": [ + 47.7943407144, + -3.56681364982 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.56681364982, + 47.7943407144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dc39910f5fd3fc08c44920bb44d40caf0b170c0", + "fields": { + "code_commune_insee": "29032", + "nom_de_la_commune": "CLOHARS FOUESNANT", + "code_postal": "29950", + "coordonnees_gps": [ + 47.8977205626, + -4.08306379638 + ], + "libelle_d_acheminement": "CLOHARS FOUESNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.08306379638, + 47.8977205626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ccce7b51a22fd038c878cf2544700f40df2f2a8", + "fields": { + "code_commune_insee": "29038", + "nom_de_la_commune": "COMMANA", + "code_postal": "29450", + "coordonnees_gps": [ + 48.4102306361, + -3.97012687185 + ], + "libelle_d_acheminement": "COMMANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.97012687185, + 48.4102306361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4de1a8d154ab946e98e998e49aec91072c91abf6", + "fields": { + "code_commune_insee": "29039", + "nom_de_la_commune": "CONCARNEAU", + "code_postal": "29900", + "coordonnees_gps": [ + 47.8966260003, + -3.90716871821 + ], + "libelle_d_acheminement": "CONCARNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.90716871821, + 47.8966260003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "701f07de75497405019c5fbb53e10c6d85b31736", + "fields": { + "code_commune_insee": "29040", + "nom_de_la_commune": "LE CONQUET", + "code_postal": "29217", + "coordonnees_gps": [ + 48.3555977933, + -4.76234204122 + ], + "libelle_d_acheminement": "LE CONQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.76234204122, + 48.3555977933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cddb3f0024dab3fdd1a14fb0181d5bc9a7c670a8", + "fields": { + "code_commune_insee": "29041", + "nom_de_la_commune": "CORAY", + "code_postal": "29370", + "coordonnees_gps": [ + 48.0658709885, + -3.85508306366 + ], + "libelle_d_acheminement": "CORAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.85508306366, + 48.0658709885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72d6ba49c48502975d59f269ca5134c2427c236d", + "fields": { + "code_commune_insee": "29047", + "nom_de_la_commune": "LE DRENNEC", + "code_postal": "29860", + "coordonnees_gps": [ + 48.5330700302, + -4.38126617487 + ], + "libelle_d_acheminement": "LE DRENNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.38126617487, + 48.5330700302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14d125c29360378403706af098dbc77121c14543", + "fields": { + "code_commune_insee": "29056", + "nom_de_la_commune": "LA FOREST LANDERNEAU", + "code_postal": "29800", + "coordonnees_gps": [ + 48.4342711427, + -4.31491864921 + ], + "libelle_d_acheminement": "LA FOREST LANDERNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.31491864921, + 48.4342711427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61502966a87b2349c0b578a5d09832b378c645d7", + "fields": { + "code_commune_insee": "29058", + "nom_de_la_commune": "FOUESNANT", + "code_postal": "29170", + "coordonnees_gps": [ + 47.8783078862, + -4.01834628474 + ], + "libelle_d_acheminement": "FOUESNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.01834628474, + 47.8783078862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "852f34b2042db27f97d39a41c7447f4d938d4028", + "fields": { + "code_commune_insee": "29060", + "nom_de_la_commune": "GOUESNACH", + "code_postal": "29950", + "coordonnees_gps": [ + 47.9170974917, + -4.11118575976 + ], + "libelle_d_acheminement": "GOUESNACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.11118575976, + 47.9170974917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63c4b58ebced605f074be256e39302cb68909a1a", + "fields": { + "code_commune_insee": "29064", + "nom_de_la_commune": "GOULVEN", + "code_postal": "29890", + "coordonnees_gps": [ + 48.6242161678, + -4.29555054376 + ], + "libelle_d_acheminement": "GOULVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.29555054376, + 48.6242161678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92a71df8e6a5679b89b16bf03fd7cc5c0065444d", + "fields": { + "code_commune_insee": "29069", + "nom_de_la_commune": "GUILERS", + "code_postal": "29820", + "coordonnees_gps": [ + 48.4189328656, + -4.56200695639 + ], + "libelle_d_acheminement": "GUILERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.56200695639, + 48.4189328656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f52fc447fc428d6bd8f2e21709a514ad3a6acb75", + "fields": { + "code_commune_insee": "29078", + "nom_de_la_commune": "HANVEC", + "code_postal": "29460", + "coordonnees_gps": [ + 48.330060559, + -4.13907964389 + ], + "libelle_d_acheminement": "HANVEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.13907964389, + 48.330060559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7831e8259154d99dac1bb1f9124f5cef7d094c0f", + "fields": { + "code_commune_insee": "29080", + "nom_de_la_commune": "HOPITAL CAMFROUT", + "code_postal": "29460", + "coordonnees_gps": [ + 48.3241129491, + -4.23905082012 + ], + "libelle_d_acheminement": "L HOPITAL CAMFROUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.23905082012, + 48.3241129491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0009891e22c098beeb6fbd769addb306333c1343", + "fields": { + "code_commune_insee": "29083", + "nom_de_la_commune": "ILE DE SEIN", + "code_postal": "29990", + "coordonnees_gps": [ + 48.0384480983, + -4.8577259366 + ], + "libelle_d_acheminement": "ILE DE SEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.8577259366, + 48.0384480983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a71eaf5c3ebe6dc246730329b011b9e3a73e59b", + "fields": { + "code_commune_insee": "29084", + "nom_de_la_commune": "ILE MOLENE", + "code_postal": "29259", + "coordonnees_gps": [ + 48.3954039142, + -4.96040618355 + ], + "libelle_d_acheminement": "ILE MOLENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.96040618355, + 48.3954039142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ee86300e549f759388a52967010e5e6f709894b", + "fields": { + "code_commune_insee": "29085", + "nom_de_la_commune": "ILE TUDY", + "code_postal": "29980", + "coordonnees_gps": [ + 47.8527643575, + -4.16160884308 + ], + "libelle_d_acheminement": "ILE TUDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.16160884308, + 47.8527643575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c73d4e9af9db6f8c9b6e90076dbfa59e94537257", + "fields": { + "code_commune_insee": "29101", + "nom_de_la_commune": "LANDEDA", + "code_postal": "29870", + "coordonnees_gps": [ + 48.5889449364, + -4.57696807959 + ], + "libelle_d_acheminement": "LANDEDA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.57696807959, + 48.5889449364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e01f3d3ba7dd6bc759f35a608beb31302e986489", + "fields": { + "code_commune_insee": "29106", + "nom_de_la_commune": "LANDREVARZEC", + "code_postal": "29510", + "coordonnees_gps": [ + 48.0895670142, + -4.0756482989 + ], + "libelle_d_acheminement": "LANDREVARZEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.0756482989, + 48.0895670142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a6595f1184a5f0c6c24975afd898bb11e35bb30", + "fields": { + "code_commune_insee": "29110", + "nom_de_la_commune": "LANGOLEN", + "code_postal": "29510", + "coordonnees_gps": [ + 48.0746211195, + -3.91654516046 + ], + "libelle_d_acheminement": "LANGOLEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.91654516046, + 48.0746211195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35dfb8724c57d596090feaccee698cd150b12adf", + "fields": { + "code_commune_insee": "29132", + "nom_de_la_commune": "LOCQUENOLE", + "code_postal": "29670", + "coordonnees_gps": [ + 48.6234794201, + -3.86347353268 + ], + "libelle_d_acheminement": "LOCQUENOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.86347353268, + 48.6234794201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a71ca58aa841966267ce620185f4d12d20dc158d", + "fields": { + "code_commune_insee": "29143", + "nom_de_la_commune": "MAHALON", + "code_postal": "29790", + "coordonnees_gps": [ + 48.0273634035, + -4.41897227168 + ], + "libelle_d_acheminement": "MAHALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.41897227168, + 48.0273634035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc08347041cb6c73dd1d2fe717a4d3a106b010a9", + "fields": { + "code_commune_insee": "29147", + "nom_de_la_commune": "MELLAC", + "code_postal": "29300", + "coordonnees_gps": [ + 47.8984536688, + -3.58813673533 + ], + "libelle_d_acheminement": "MELLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.58813673533, + 47.8984536688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5375a62247a1bd71692f5ca4a80d0ae21661baf2", + "fields": { + "code_commune_insee": "29148", + "nom_de_la_commune": "MESPAUL", + "code_postal": "29420", + "coordonnees_gps": [ + 48.6146743886, + -4.0326431567 + ], + "libelle_d_acheminement": "MESPAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.0326431567, + 48.6146743886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea0bc5e401645a12ffb88e5ab18c74ba9e115e4b", + "fields": { + "code_commune_insee": "29150", + "nom_de_la_commune": "MOELAN SUR MER", + "code_postal": "29350", + "coordonnees_gps": [ + 47.8061076978, + -3.64546918043 + ], + "libelle_d_acheminement": "MOELAN SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.64546918043, + 47.8061076978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c919acabdceab09983e09cef9dab4844905464f6", + "fields": { + "code_commune_insee": "29156", + "nom_de_la_commune": "PENCRAN", + "code_postal": "29800", + "coordonnees_gps": [ + 48.4436093794, + -4.22125825174 + ], + "libelle_d_acheminement": "PENCRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.22125825174, + 48.4436093794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e95e038e51abbb77643f00ea15cb50fb76ee572b", + "fields": { + "code_commune_insee": "29165", + "nom_de_la_commune": "PLOBANNALEC LESCONIL", + "code_postal": "29740", + "coordonnees_gps": [ + 47.8217825314, + -4.22818604821 + ], + "libelle_d_acheminement": "PLOBANNALEC LESCONIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.22818604821, + 47.8217825314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58a5b19f985af888f21f854667c13d1d56a91c44", + "fields": { + "code_commune_insee": "29168", + "nom_de_la_commune": "PLOGOFF", + "code_postal": "29770", + "coordonnees_gps": [ + 48.0349240899, + -4.68065084033 + ], + "libelle_d_acheminement": "PLOGOFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.68065084033, + 48.0349240899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9ea48d678398b780ccf42be476c7c8e7b4587c4", + "fields": { + "code_commune_insee": "29172", + "nom_de_la_commune": "PLOMODIERN", + "code_postal": "29550", + "coordonnees_gps": [ + 48.1808861007, + -4.21781568947 + ], + "libelle_d_acheminement": "PLOMODIERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.21781568947, + 48.1808861007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dea1dc7989f594d23be6835b4fe0f5f0a8e58a3", + "fields": { + "code_commune_insee": "29183", + "nom_de_la_commune": "PLOUEGAT MOYSAN", + "code_postal": "29650", + "coordonnees_gps": [ + 48.5695720823, + -3.61681684116 + ], + "libelle_d_acheminement": "PLOUEGAT MOYSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.61681684116, + 48.5695720823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "835e1f4bdd67ac7607d382a44b4c44d4f0a8628f", + "fields": { + "ligne_5": "ST MATHIEU", + "code_commune_insee": "29190", + "libelle_d_acheminement": "PLOUGONVELIN", + "code_postal": "29217", + "nom_de_la_commune": "PLOUGONVELIN", + "coordonnees_gps": [ + 48.3513274854, + -4.71760872698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.71760872698, + 48.3513274854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9076edc3c9f0cba2afd024951ba22c570750bfb", + "fields": { + "code_commune_insee": "29199", + "nom_de_la_commune": "PLOUIGNEAU", + "code_postal": "29610", + "coordonnees_gps": [ + 48.5736126699, + -3.7040741716 + ], + "libelle_d_acheminement": "PLOUIGNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.7040741716, + 48.5736126699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c789861651988c53522c451ac528ff9888e1b43b", + "fields": { + "code_commune_insee": "29207", + "nom_de_la_commune": "PLOURIN LES MORLAIX", + "code_postal": "29600", + "coordonnees_gps": [ + 48.5219190432, + -3.80057587276 + ], + "libelle_d_acheminement": "PLOURIN LES MORLAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.80057587276, + 48.5219190432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "684a1afe5811f0bba1134ed69329d5213ba2a65e", + "fields": { + "code_commune_insee": "29211", + "nom_de_la_commune": "PLOUYE", + "code_postal": "29690", + "coordonnees_gps": [ + 48.3207546118, + -3.73395205776 + ], + "libelle_d_acheminement": "PLOUYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.73395205776, + 48.3207546118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5c13c6b25652008720f945cebc4ac9134488a7f", + "fields": { + "code_commune_insee": "29215", + "nom_de_la_commune": "PLOZEVET", + "code_postal": "29710", + "coordonnees_gps": [ + 47.9832115947, + -4.40960157261 + ], + "libelle_d_acheminement": "PLOZEVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.40960157261, + 47.9832115947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85cd0ab46f74f7f4919de415bb75c21013ec6e3d", + "fields": { + "code_commune_insee": "29217", + "nom_de_la_commune": "PONT AVEN", + "code_postal": "29930", + "coordonnees_gps": [ + 47.8724810212, + -3.76601956645 + ], + "libelle_d_acheminement": "PONT AVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.76601956645, + 47.8724810212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e839292ef05b43f98a4081bf25b02f61f9808605", + "fields": { + "code_commune_insee": "29220", + "nom_de_la_commune": "PONT L ABBE", + "code_postal": "29120", + "coordonnees_gps": [ + 47.8654885488, + -4.21962319652 + ], + "libelle_d_acheminement": "PONT L ABBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.21962319652, + 47.8654885488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6b3e8ba194c9fcc815c7b97579ce3f6e20f7544", + "fields": { + "code_commune_insee": "29221", + "nom_de_la_commune": "PORSPODER", + "code_postal": "29840", + "coordonnees_gps": [ + 48.498709078, + -4.75352482968 + ], + "libelle_d_acheminement": "PORSPODER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.75352482968, + 48.498709078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "720bf29b97784e4e7b66a35187eea13d3b695aed", + "fields": { + "code_commune_insee": "29226", + "nom_de_la_commune": "POULLAN SUR MER", + "code_postal": "29100", + "coordonnees_gps": [ + 48.0772593161, + -4.39719631151 + ], + "libelle_d_acheminement": "POULLAN SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.39719631151, + 48.0772593161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a636827d6d47312466dde96892c3c167b303f204", + "fields": { + "code_commune_insee": "29227", + "nom_de_la_commune": "POULLAOUEN", + "code_postal": "29246", + "coordonnees_gps": [ + 48.3456851692, + -3.63011278827 + ], + "libelle_d_acheminement": "POULLAOUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.63011278827, + 48.3456851692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e22480b3bf8a1490789e4f575da1fd50be1ee3e2", + "fields": { + "ligne_5": "LOCMARIA BERRIEN", + "code_commune_insee": "29227", + "libelle_d_acheminement": "POULLAOUEN", + "code_postal": "29690", + "nom_de_la_commune": "POULLAOUEN", + "coordonnees_gps": [ + 48.3456851692, + -3.63011278827 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.63011278827, + 48.3456851692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ae97b7418f43380c1f5e50bfefb571909301e63", + "fields": { + "code_commune_insee": "29240", + "nom_de_la_commune": "ROSNOEN", + "code_postal": "29590", + "coordonnees_gps": [ + 48.2716564234, + -4.19913863918 + ], + "libelle_d_acheminement": "ROSNOEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.19913863918, + 48.2716564234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "811e0d2e17214eed29b68a6696ec582f205f6404", + "fields": { + "code_commune_insee": "29241", + "nom_de_la_commune": "ROSPORDEN", + "code_postal": "29140", + "coordonnees_gps": [ + 47.9583041483, + -3.80153477736 + ], + "libelle_d_acheminement": "ROSPORDEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.80153477736, + 47.9583041483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03d4b7bf78d03cc1cad05bbdd4a9f20063e14ade", + "fields": { + "code_commune_insee": "29250", + "nom_de_la_commune": "ST HERNIN", + "code_postal": "29270", + "coordonnees_gps": [ + 48.2085491476, + -3.61083616524 + ], + "libelle_d_acheminement": "ST HERNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.61083616524, + 48.2085491476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59a98b68835042c9ba304c077b1a52a9ab214614", + "fields": { + "code_commune_insee": "29256", + "nom_de_la_commune": "ST NIC", + "code_postal": "29550", + "coordonnees_gps": [ + 48.2101254198, + -4.28068132169 + ], + "libelle_d_acheminement": "ST NIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28068132169, + 48.2101254198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abf56888aec771fadb5c1b2a018987dceac926b7", + "fields": { + "code_commune_insee": "29269", + "nom_de_la_commune": "ST THURIEN", + "code_postal": "29380", + "coordonnees_gps": [ + 47.9568349353, + -3.62002977712 + ], + "libelle_d_acheminement": "ST THURIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.62002977712, + 47.9568349353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7af23ff6de00edabf8de908f175e3dafd5cadd0", + "fields": { + "code_commune_insee": "29275", + "nom_de_la_commune": "SCRIGNAC", + "code_postal": "29640", + "coordonnees_gps": [ + 48.4265058611, + -3.66856108678 + ], + "libelle_d_acheminement": "SCRIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.66856108678, + 48.4265058611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d29414cd1a86df4e5d314d93cf87da2d828627e", + "fields": { + "code_commune_insee": "29278", + "nom_de_la_commune": "SPEZET", + "code_postal": "29540", + "coordonnees_gps": [ + 48.1857593376, + -3.69132351095 + ], + "libelle_d_acheminement": "SPEZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.69132351095, + 48.1857593376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d00d631618f43c6fe798b645c25ce741d8f68f22", + "fields": { + "code_commune_insee": "29300", + "nom_de_la_commune": "LE TREVOUX", + "code_postal": "29380", + "coordonnees_gps": [ + 47.8886988261, + -3.65660819595 + ], + "libelle_d_acheminement": "LE TREVOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.65660819595, + 47.8886988261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c569a1616b3d9cdeffe184c4006d423dda786b07", + "fields": { + "code_commune_insee": "2A008", + "nom_de_la_commune": "ALBITRECCIA", + "code_postal": "20128", + "coordonnees_gps": [ + 41.860474641, + 8.87771179182 + ], + "libelle_d_acheminement": "ALBITRECCIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.87771179182, + 41.860474641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10a5abc29394a914c6bfc2bd94d1c9d1738c9d41", + "fields": { + "code_commune_insee": "2A018", + "nom_de_la_commune": "ARBELLARA", + "code_postal": "20110", + "coordonnees_gps": [ + 41.6711031024, + 8.98935818241 + ], + "libelle_d_acheminement": "ARBELLARA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.98935818241, + 41.6711031024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aea84c8f9a310373900b850a6f79a5733b97ece4", + "fields": { + "code_commune_insee": "2A021", + "nom_de_la_commune": "ARGIUSTA MORICCIO", + "code_postal": "20140", + "coordonnees_gps": [ + 41.815640033, + 9.0324658577 + ], + "libelle_d_acheminement": "ARGIUSTA MORICCIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0324658577, + 41.815640033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2263a9e8fa4a58e94be807bd331008d50fa75816", + "fields": { + "code_commune_insee": "2A089", + "nom_de_la_commune": "CIAMANNACCE", + "code_postal": "20134", + "coordonnees_gps": [ + 41.9728664628, + 9.13846288557 + ], + "libelle_d_acheminement": "CIAMANNACCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.13846288557, + 41.9728664628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9eddeb1df92a9dd0ad3f3872eb8134bdec698ac0", + "fields": { + "ligne_5": "SAGONE", + "code_commune_insee": "2A090", + "libelle_d_acheminement": "COGGIA", + "code_postal": "20118", + "nom_de_la_commune": "COGGIA", + "coordonnees_gps": [ + 42.1117512753, + 8.73524258056 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73524258056, + 42.1117512753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8463bf4e3a0dea4805256de4e3ed1f2eefefa0ec", + "fields": { + "ligne_5": "MARATO", + "code_commune_insee": "2A091", + "libelle_d_acheminement": "COGNOCOLI MONTICCHI", + "code_postal": "20166", + "nom_de_la_commune": "COGNOCOLI MONTICCHI", + "coordonnees_gps": [ + 41.8017412239, + 8.86559828533 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.86559828533, + 41.8017412239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54bee901f9a06d1a1652376fa377871e76ded5d2", + "fields": { + "code_commune_insee": "2A098", + "nom_de_la_commune": "COTI CHIAVARI", + "code_postal": "20138", + "coordonnees_gps": [ + 41.769023404, + 8.75300439301 + ], + "libelle_d_acheminement": "COTI CHIAVARI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.75300439301, + 41.769023404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "909db8b89ebf348790ffbb67d0fd3ce0d3e38300", + "fields": { + "code_commune_insee": "2A114", + "nom_de_la_commune": "FIGARI", + "code_postal": "20114", + "coordonnees_gps": [ + 41.5163043789, + 9.12059415829 + ], + "libelle_d_acheminement": "FIGARI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.12059415829, + 41.5163043789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b42e60b0097c8f9f7edc2ef3f8b057d6a11aa91c", + "fields": { + "code_commune_insee": "2A115", + "nom_de_la_commune": "FOCE", + "code_postal": "20100", + "coordonnees_gps": [ + 41.6219530665, + 9.03561496971 + ], + "libelle_d_acheminement": "FOCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.03561496971, + 41.6219530665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9a1e43299e80a84bd18e394cf4c473fb19b4b39", + "fields": { + "code_commune_insee": "2A127", + "nom_de_la_commune": "GIUNCHETO", + "code_postal": "20100", + "coordonnees_gps": [ + 41.5862596308, + 8.95720217701 + ], + "libelle_d_acheminement": "GIUNCHETO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.95720217701, + 41.5862596308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87c70c8000940fc21e63da7d9c860690ba6d5d7e", + "fields": { + "code_commune_insee": "2A131", + "nom_de_la_commune": "GUAGNO", + "code_postal": "20160", + "coordonnees_gps": [ + 42.1783646694, + 8.98389627863 + ], + "libelle_d_acheminement": "GUAGNO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.98389627863, + 42.1783646694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cdb3c92212a7e0e568ed3b44a5e3ae86bb81515", + "fields": { + "code_commune_insee": "2A133", + "nom_de_la_commune": "GUITERA LES BAINS", + "code_postal": "20153", + "coordonnees_gps": [ + 41.9219361648, + 9.07857366526 + ], + "libelle_d_acheminement": "GUITERA LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.07857366526, + 41.9219361648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1522e52869f6dc3da4ea85fb9191387df7b5dd0", + "fields": { + "code_commune_insee": "2A154", + "nom_de_la_commune": "MARIGNANA", + "code_postal": "20141", + "coordonnees_gps": [ + 42.2083267447, + 8.72012145017 + ], + "libelle_d_acheminement": "MARIGNANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.72012145017, + 42.2083267447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d675024438c8e284b392df6791f965f2d23cc226", + "fields": { + "code_commune_insee": "2A189", + "nom_de_la_commune": "OLMETO", + "code_postal": "20113", + "coordonnees_gps": [ + 41.7120554576, + 8.90482669447 + ], + "libelle_d_acheminement": "OLMETO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.90482669447, + 41.7120554576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edb0848f8f5e6b2b4666b0f352c34d01f0d3ef1c", + "fields": { + "code_commune_insee": "2A209", + "nom_de_la_commune": "PERI", + "code_postal": "20167", + "coordonnees_gps": [ + 42.003934282, + 8.91155032834 + ], + "libelle_d_acheminement": "PERI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.91155032834, + 42.003934282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95c7e903677b813a0437462796974eb68b8f3d5e", + "fields": { + "code_commune_insee": "2A215", + "nom_de_la_commune": "PIANOTTOLI CALDARELLO", + "code_postal": "20131", + "coordonnees_gps": [ + 41.5046258305, + 9.04899145818 + ], + "libelle_d_acheminement": "PIANOTTOLI CALDARELLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.04899145818, + 41.5046258305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ced33282700feb353e2fba1f7e25a4b10f683464", + "fields": { + "code_commune_insee": "2A228", + "nom_de_la_commune": "PIETROSELLA", + "code_postal": "20166", + "coordonnees_gps": [ + 41.8283411519, + 8.8134589974 + ], + "libelle_d_acheminement": "PIETROSELLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8134589974, + 41.8283411519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1409959dc64811783f552a1cbeb8ea1de1e49ce1", + "fields": { + "ligne_5": "PORTO POLLO", + "code_commune_insee": "2A276", + "libelle_d_acheminement": "SERRA DI FERRO", + "code_postal": "20140", + "nom_de_la_commune": "SERRA DI FERRO", + "coordonnees_gps": [ + 41.7410474334, + 8.81250812436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.81250812436, + 41.7410474334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa921d56ad28124e9b58fe8ae7ee45642dfce6cb", + "fields": { + "code_commune_insee": "2A288", + "nom_de_la_commune": "SOTTA", + "code_postal": "20146", + "coordonnees_gps": [ + 41.555960372, + 9.18208356103 + ], + "libelle_d_acheminement": "SOTTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.18208356103, + 41.555960372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "620936f9e1af1f8b78cd1a9f0eeebc27cf76e980", + "fields": { + "code_commune_insee": "2A322", + "nom_de_la_commune": "TASSO", + "code_postal": "20134", + "coordonnees_gps": [ + 41.9505880211, + 9.09337409973 + ], + "libelle_d_acheminement": "TASSO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.09337409973, + 41.9505880211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "928326f198d2856346e1b96913205c60ff384e76", + "fields": { + "code_commune_insee": "2A357", + "nom_de_la_commune": "ZERUBIA", + "code_postal": "20116", + "coordonnees_gps": [ + 41.7511203775, + 9.05738566611 + ], + "libelle_d_acheminement": "ZERUBIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.05738566611, + 41.7511203775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20f3ee3743dc54fdf446f58b4fffd5b3fc843f19", + "fields": { + "code_commune_insee": "2A360", + "nom_de_la_commune": "ZIGLIARA", + "code_postal": "20190", + "coordonnees_gps": [ + 41.8346717318, + 8.9837582773 + ], + "libelle_d_acheminement": "ZIGLIARA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9837582773, + 41.8346717318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1397c91707bd607dd24203d4e5bf1c29950a2120", + "fields": { + "code_commune_insee": "2A363", + "nom_de_la_commune": "ZOZA", + "code_postal": "20112", + "coordonnees_gps": [ + 41.721546993, + 9.07173348463 + ], + "libelle_d_acheminement": "ZOZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.07173348463, + 41.721546993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "469b7f334b8e63fb4c34ff906e11fc10cd898a32", + "fields": { + "code_commune_insee": "2B005", + "nom_de_la_commune": "ALANDO", + "code_postal": "20212", + "coordonnees_gps": [ + 42.3072494054, + 9.28630204632 + ], + "libelle_d_acheminement": "ALANDO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.28630204632, + 42.3072494054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbdcef6c014245ba1e32e48d3589d988f336d808", + "fields": { + "ligne_5": "VERGIO", + "code_commune_insee": "2B007", + "libelle_d_acheminement": "ALBERTACCE", + "code_postal": "20224", + "nom_de_la_commune": "ALBERTACCE", + "coordonnees_gps": [ + 42.3117941076, + 8.92423033485 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.92423033485, + 42.3117941076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b48e8462e516bec9582922195ed656fbbcbb88d1", + "fields": { + "code_commune_insee": "2B010", + "nom_de_la_commune": "ALGAJOLA", + "code_postal": "20220", + "coordonnees_gps": [ + 42.6050790894, + 8.85735931464 + ], + "libelle_d_acheminement": "ALGAJOLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.85735931464, + 42.6050790894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f61d625205764a16069fd1c0cba7a7b6c7a74748", + "fields": { + "code_commune_insee": "2B015", + "nom_de_la_commune": "AMPRIANI", + "code_postal": "20272", + "coordonnees_gps": [ + 42.2536571506, + 9.35731976414 + ], + "libelle_d_acheminement": "AMPRIANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.35731976414, + 42.2536571506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5acd659fdc80e04a05ac0e4710deb5d3aac6fe00", + "fields": { + "code_commune_insee": "2B033", + "nom_de_la_commune": "BASTIA", + "code_postal": "20600", + "coordonnees_gps": [ + 42.6864768806, + 9.42502133338 + ], + "libelle_d_acheminement": "BASTIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42502133338, + 42.6864768806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ac1c15cce6f248844799725e3fc81c40148ed6e", + "fields": { + "ligne_5": "CASATORRA", + "code_commune_insee": "2B037", + "libelle_d_acheminement": "BIGUGLIA", + "code_postal": "20620", + "nom_de_la_commune": "BIGUGLIA", + "coordonnees_gps": [ + 42.6164219998, + 9.44048317398 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44048317398, + 42.6164219998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fc7a4eaaf5131ca0cabcee4b1977a22e08ad458", + "fields": { + "ligne_5": "ERBALUNGA", + "code_commune_insee": "2B043", + "libelle_d_acheminement": "BRANDO", + "code_postal": "20222", + "nom_de_la_commune": "BRANDO", + "coordonnees_gps": [ + 42.7792996993, + 9.45029993821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45029993821, + 42.7792996993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b52b37dfba734d159ec26d3758d8825de968098f", + "fields": { + "code_commune_insee": "2B046", + "nom_de_la_commune": "CAGNANO", + "code_postal": "20228", + "coordonnees_gps": [ + 42.8719957241, + 9.44402317459 + ], + "libelle_d_acheminement": "CAGNANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44402317459, + 42.8719957241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2ad8af9731178fb2067927d9417066608bf84df", + "fields": { + "code_commune_insee": "2B051", + "nom_de_la_commune": "CAMBIA", + "code_postal": "20244", + "coordonnees_gps": [ + 42.3688581376, + 9.30244187201 + ], + "libelle_d_acheminement": "CAMBIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.30244187201, + 42.3688581376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19b3dda82fa62f571270009605913aea01e7473a", + "fields": { + "code_commune_insee": "2B058", + "nom_de_la_commune": "CANARI", + "code_postal": "20217", + "coordonnees_gps": [ + 42.8430542103, + 9.34556643621 + ], + "libelle_d_acheminement": "CANARI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.34556643621, + 42.8430542103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3316d4750128ef2083667d1e32e9b9fbfcbf20d", + "fields": { + "code_commune_insee": "2B068", + "nom_de_la_commune": "CARTICASI", + "code_postal": "20244", + "coordonnees_gps": [ + 42.3479242987, + 9.30372029952 + ], + "libelle_d_acheminement": "CARTICASI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.30372029952, + 42.3479242987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8eb338e8c47a829f0c0f5e104623884cffb9d6e", + "fields": { + "code_commune_insee": "2B069", + "nom_de_la_commune": "CASABIANCA", + "code_postal": "20237", + "coordonnees_gps": [ + 42.4472062738, + 9.37216855737 + ], + "libelle_d_acheminement": "CASABIANCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.37216855737, + 42.4472062738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd1b521857341be95387764035c32e8916e55338", + "fields": { + "code_commune_insee": "2B073", + "nom_de_la_commune": "CASAMACCIOLI", + "code_postal": "20224", + "coordonnees_gps": [ + 42.2828810078, + 8.9950833348 + ], + "libelle_d_acheminement": "CASAMACCIOLI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9950833348, + 42.2828810078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7d38f23444e9ba0995b9fb524c150eb262ffba8", + "fields": { + "code_commune_insee": "2B077", + "nom_de_la_commune": "CASTELLARE DI CASINCA", + "code_postal": "20213", + "coordonnees_gps": [ + 42.4705671665, + 9.50131455475 + ], + "libelle_d_acheminement": "CASTELLARE DI CASINCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.50131455475, + 42.4705671665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7d882adf4569c4857fdb9d19ee2403c197fcaca", + "fields": { + "code_commune_insee": "2B082", + "nom_de_la_commune": "CASTINETA", + "code_postal": "20218", + "coordonnees_gps": [ + 42.4281629327, + 9.27331954769 + ], + "libelle_d_acheminement": "CASTINETA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.27331954769, + 42.4281629327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d86825ee8734c698f249e054a288e06835575613", + "fields": { + "code_commune_insee": "2B093", + "nom_de_la_commune": "CORBARA", + "code_postal": "20220", + "coordonnees_gps": [ + 42.6171380337, + 8.90165227126 + ], + "libelle_d_acheminement": "CORBARA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.90165227126, + 42.6171380337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86fce28a49f17aa5f4811e305f5ba3fd35c3bb2c", + "fields": { + "code_commune_insee": "2B093", + "nom_de_la_commune": "CORBARA", + "code_postal": "20256", + "coordonnees_gps": [ + 42.6171380337, + 8.90165227126 + ], + "libelle_d_acheminement": "CORBARA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.90165227126, + 42.6171380337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2577e3d6d0478728381249bada97f177115c02cc", + "fields": { + "code_commune_insee": "2B102", + "nom_de_la_commune": "CROCICCHIA", + "code_postal": "20290", + "coordonnees_gps": [ + 42.4737480696, + 9.3523598624 + ], + "libelle_d_acheminement": "CROCICCHIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3523598624, + 42.4737480696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5fc891292324639280c17d5b9e18c06062452be", + "fields": { + "code_commune_insee": "2B106", + "nom_de_la_commune": "ERONE", + "code_postal": "20244", + "coordonnees_gps": [ + 42.3756203554, + 9.26708993339 + ], + "libelle_d_acheminement": "ERONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.26708993339, + 42.3756203554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32225813564c5e25822403d350c750c4b0f25d04", + "fields": { + "code_commune_insee": "2B107", + "nom_de_la_commune": "ERSA", + "code_postal": "20275", + "coordonnees_gps": [ + 42.9871049875, + 9.38235735891 + ], + "libelle_d_acheminement": "ERSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.38235735891, + 42.9871049875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77dba08e2651c1880b61bf934ae2da59e175e112", + "fields": { + "code_commune_insee": "2B109", + "nom_de_la_commune": "FARINOLE", + "code_postal": "20253", + "coordonnees_gps": [ + 42.7298003144, + 9.36530466703 + ], + "libelle_d_acheminement": "FARINOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36530466703, + 42.7298003144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be9573ec575a2e8db070d9de185f0d7de0d99608", + "fields": { + "code_commune_insee": "2B122", + "nom_de_la_commune": "GAVIGNANO", + "code_postal": "20218", + "coordonnees_gps": [ + 42.4228249345, + 9.25981637428 + ], + "libelle_d_acheminement": "GAVIGNANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.25981637428, + 42.4228249345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de1c1caf2dc4f3fe23969439066c86f965d523bd", + "fields": { + "code_commune_insee": "2B124", + "nom_de_la_commune": "GHISONI", + "code_postal": "20227", + "coordonnees_gps": [ + 42.0908261041, + 9.21026781601 + ], + "libelle_d_acheminement": "GHISONI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.21026781601, + 42.0908261041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "311d52a7af9ddcfee2b11884860f5f450c7b8bb5", + "fields": { + "code_commune_insee": "2B125", + "nom_de_la_commune": "GIOCATOJO", + "code_postal": "20237", + "coordonnees_gps": [ + 42.4437069082, + 9.34587387627 + ], + "libelle_d_acheminement": "GIOCATOJO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.34587387627, + 42.4437069082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d00af1b5fe64f1b6b81cce5e8fef09238cf217a", + "fields": { + "code_commune_insee": "2B135", + "nom_de_la_commune": "ISOLACCIO DI FIUMORBO", + "code_postal": "20243", + "coordonnees_gps": [ + 42.0157488768, + 9.26439576415 + ], + "libelle_d_acheminement": "ISOLACCIO DI FIUMORBO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.26439576415, + 42.0157488768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e73f1bece6c68d89692aa3d2b536a22237d1da70", + "fields": { + "code_commune_insee": "2B136", + "nom_de_la_commune": "LAMA", + "code_postal": "20218", + "coordonnees_gps": [ + 42.5804431828, + 9.16621069911 + ], + "libelle_d_acheminement": "LAMA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.16621069911, + 42.5804431828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8417e2b1308bf5df207c7c7254e0f77bcd718561", + "fields": { + "ligne_5": "BRAVONE", + "code_commune_insee": "2B143", + "libelle_d_acheminement": "LINGUIZZETTA", + "code_postal": "20230", + "nom_de_la_commune": "LINGUIZZETTA", + "coordonnees_gps": [ + 42.2176450793, + 9.51024497679 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.51024497679, + 42.2176450793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3f501d25e0ba3ef74334efa72e2529fc7effc11", + "fields": { + "code_commune_insee": "2B148", + "nom_de_la_commune": "LUCCIANA", + "code_postal": "20290", + "coordonnees_gps": [ + 42.5413974263, + 9.47269139438 + ], + "libelle_d_acheminement": "LUCCIANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.47269139438, + 42.5413974263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b3af94378ee4c1b4f1e55a71b3d2fd560db307e", + "fields": { + "ligne_5": "PORETTA", + "code_commune_insee": "2B148", + "libelle_d_acheminement": "LUCCIANA", + "code_postal": "20290", + "nom_de_la_commune": "LUCCIANA", + "coordonnees_gps": [ + 42.5413974263, + 9.47269139438 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.47269139438, + 42.5413974263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eec467b623e5a2e1327d36bf4984ce75755fd997", + "fields": { + "ligne_5": "SANTA SEVERA", + "code_commune_insee": "2B152", + "libelle_d_acheminement": "LURI", + "code_postal": "20228", + "nom_de_la_commune": "LURI", + "coordonnees_gps": [ + 42.8934435302, + 9.40987964362 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.40987964362, + 42.8934435302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f3d83c484c97c37a28e860a50eda5593f009691", + "fields": { + "code_commune_insee": "2B167", + "nom_de_la_commune": "MONTEGROSSO", + "code_postal": "20214", + "coordonnees_gps": [ + 42.543505718, + 8.85623474811 + ], + "libelle_d_acheminement": "MONTEGROSSO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.85623474811, + 42.543505718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04bd5ceab9cb81911ba197fcc56c17ecbf2ca279", + "fields": { + "ligne_5": "CASSANO", + "code_commune_insee": "2B167", + "libelle_d_acheminement": "MONTEGROSSO", + "code_postal": "20214", + "nom_de_la_commune": "MONTEGROSSO", + "coordonnees_gps": [ + 42.543505718, + 8.85623474811 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.85623474811, + 42.543505718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa07ccd7a250885177f5f680cfd4135bd3cbd3ed", + "fields": { + "ligne_5": "MONTEMAGGIORE", + "code_commune_insee": "2B167", + "libelle_d_acheminement": "MONTEGROSSO", + "code_postal": "20214", + "nom_de_la_commune": "MONTEGROSSO", + "coordonnees_gps": [ + 42.543505718, + 8.85623474811 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.85623474811, + 42.543505718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01a8441411733bd1ed6c164130ffbbb682024fa0", + "fields": { + "code_commune_insee": "2B168", + "nom_de_la_commune": "MONTICELLO", + "code_postal": "20220", + "coordonnees_gps": [ + 42.6216923341, + 8.96127656939 + ], + "libelle_d_acheminement": "MONTICELLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.96127656939, + 42.6216923341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01138644e8376a048165b9e1183136d783d21f87", + "fields": { + "code_commune_insee": "2B173", + "nom_de_la_commune": "MURO", + "code_postal": "20225", + "coordonnees_gps": [ + 42.5460439114, + 8.9171628153 + ], + "libelle_d_acheminement": "MURO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9171628153, + 42.5460439114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aef92b0666dbc8393537feda785dd6acda9a4a6", + "fields": { + "code_commune_insee": "2B175", + "nom_de_la_commune": "NESSA", + "code_postal": "20225", + "coordonnees_gps": [ + 42.5498317519, + 8.95572841625 + ], + "libelle_d_acheminement": "NESSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.95572841625, + 42.5498317519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "139d8d23f691540d08a19de1d28f7cb22c8d020c", + "fields": { + "code_commune_insee": "2B176", + "nom_de_la_commune": "NOCARIO", + "code_postal": "20229", + "coordonnees_gps": [ + 42.3951851178, + 9.34913150736 + ], + "libelle_d_acheminement": "NOCARIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.34913150736, + 42.3951851178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5da8474a79bd5c4c1b06a357aee691b9c13a2a24", + "fields": { + "code_commune_insee": "2B177", + "nom_de_la_commune": "NOCETA", + "code_postal": "20242", + "coordonnees_gps": [ + 42.2027615346, + 9.20974478492 + ], + "libelle_d_acheminement": "NOCETA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.20974478492, + 42.2027615346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d94b8d067df1496e1e806f9c7774ab014196da92", + "fields": { + "code_commune_insee": "2B182", + "nom_de_la_commune": "OCCHIATANA", + "code_postal": "20226", + "coordonnees_gps": [ + 42.59289857, + 9.00608149281 + ], + "libelle_d_acheminement": "OCCHIATANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.00608149281, + 42.59289857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97ee1e1e58549ac297fa80103f385f15d08b1c6a", + "fields": { + "code_commune_insee": "2B195", + "nom_de_la_commune": "ORTIPORIO", + "code_postal": "20290", + "coordonnees_gps": [ + 42.4562488801, + 9.34489704974 + ], + "libelle_d_acheminement": "ORTIPORIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.34489704974, + 42.4562488801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "683c1ccd7e84938922a590a5a52086a8f0fe9e8d", + "fields": { + "ligne_5": "FOLELLI", + "code_commune_insee": "2B207", + "libelle_d_acheminement": "PENTA DI CASINCA", + "code_postal": "20213", + "nom_de_la_commune": "PENTA DI CASINCA", + "coordonnees_gps": [ + 42.4548433729, + 9.49604243043 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.49604243043, + 42.4548433729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "099520c49f234342f3ce0f583b55ad09ff48afb6", + "fields": { + "code_commune_insee": "2B214", + "nom_de_la_commune": "PIANO", + "code_postal": "20215", + "coordonnees_gps": [ + 42.4410042851, + 9.39683527316 + ], + "libelle_d_acheminement": "PIANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.39683527316, + 42.4410042851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae779631b69571cae12da06d742683029dbb07e1", + "fields": { + "code_commune_insee": "2B218", + "nom_de_la_commune": "PIEDICORTE DI GAGGIO", + "code_postal": "20251", + "coordonnees_gps": [ + 42.2145192461, + 9.32336450937 + ], + "libelle_d_acheminement": "PIEDICORTE DI GAGGIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.32336450937, + 42.2145192461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cb1b14a5f8bcba14a076720e6020c532e9ca5de", + "fields": { + "code_commune_insee": "2B219", + "nom_de_la_commune": "PIEDICROCE", + "code_postal": "20229", + "coordonnees_gps": [ + 42.3839264526, + 9.36811133319 + ], + "libelle_d_acheminement": "PIEDICROCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36811133319, + 42.3839264526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6fcf71526923dd4f139e1930a2cc9190e3d761c", + "fields": { + "code_commune_insee": "2B229", + "nom_de_la_commune": "PIETROSO", + "code_postal": "20242", + "coordonnees_gps": [ + 42.1256196536, + 9.30101859911 + ], + "libelle_d_acheminement": "PIETROSO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.30101859911, + 42.1256196536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8417504ed6d5bf5f0796f0d35f2ec8a956f15fff", + "fields": { + "code_commune_insee": "2B231", + "nom_de_la_commune": "PIGNA", + "code_postal": "20220", + "coordonnees_gps": [ + 42.599340833, + 8.90040924261 + ], + "libelle_d_acheminement": "PIGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.90040924261, + 42.599340833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6504b0363d336bc84dd57fb46a4b42d2b3993680", + "fields": { + "code_commune_insee": "2B233", + "nom_de_la_commune": "PINO", + "code_postal": "20228", + "coordonnees_gps": [ + 42.9054355936, + 9.35409723128 + ], + "libelle_d_acheminement": "PINO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.35409723128, + 42.9054355936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6483bb5512d65218d830d7624910d78806dd9dd7", + "fields": { + "code_commune_insee": "2B236", + "nom_de_la_commune": "POGGIO DI NAZZA", + "code_postal": "20240", + "coordonnees_gps": [ + 42.052431318, + 9.29203820739 + ], + "libelle_d_acheminement": "POGGIO DI NAZZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.29203820739, + 42.052431318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47a689d5a864ee925cab9954ad7e43aad1ffa722", + "fields": { + "code_commune_insee": "2B239", + "nom_de_la_commune": "POGGIO D OLETTA", + "code_postal": "20232", + "coordonnees_gps": [ + 42.65726441, + 9.35851486603 + ], + "libelle_d_acheminement": "POGGIO D OLETTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.35851486603, + 42.65726441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dc7065a7a68335804a9a4a2aa4861371025af74", + "fields": { + "code_commune_insee": "2B245", + "nom_de_la_commune": "PORRI", + "code_postal": "20215", + "coordonnees_gps": [ + 42.4493786063, + 9.44236110212 + ], + "libelle_d_acheminement": "PORRI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44236110212, + 42.4493786063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d3a2fab183a5e38723babc246f7c22418584ff3", + "fields": { + "ligne_5": "ABBAZIA", + "code_commune_insee": "2B251", + "libelle_d_acheminement": "PRUNELLI DI FIUMORBO", + "code_postal": "20243", + "nom_de_la_commune": "PRUNELLI DI FIUMORBO", + "coordonnees_gps": [ + 42.0072330034, + 9.36772895124 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36772895124, + 42.0072330034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70c66e16e6084c4feb65a102b1c2437a67237419", + "fields": { + "code_commune_insee": "2B290", + "nom_de_la_commune": "SPELONCATO", + "code_postal": "20226", + "coordonnees_gps": [ + 42.5743163085, + 8.96966763769 + ], + "libelle_d_acheminement": "SPELONCATO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.96966763769, + 42.5743163085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bc53a72cf6f7713fa3d0adc6c48649a57175a16", + "fields": { + "code_commune_insee": "2B293", + "nom_de_la_commune": "SANT ANDREA DI COTONE", + "code_postal": "20221", + "coordonnees_gps": [ + 42.3152789524, + 9.47199287722 + ], + "libelle_d_acheminement": "SANT ANDREA DI COTONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.47199287722, + 42.3152789524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9e51a99b4e419db019bc3e88600454636393b2f", + "fields": { + "code_commune_insee": "2B302", + "nom_de_la_commune": "SAN GIOVANNI DI MORIANI", + "code_postal": "20230", + "coordonnees_gps": [ + 42.3730963312, + 9.46541508806 + ], + "libelle_d_acheminement": "SAN GIOVANNI DI MORIANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.46541508806, + 42.3730963312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61fadf9a724c88f675859bbd050a04fbcb9a8053", + "fields": { + "code_commune_insee": "2B303", + "nom_de_la_commune": "SAN GIULIANO", + "code_postal": "20230", + "coordonnees_gps": [ + 42.2880809404, + 9.52881178736 + ], + "libelle_d_acheminement": "SAN GIULIANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.52881178736, + 42.2880809404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "198b82799670dc37e668b78bfcae9f1bcc17ca8e", + "fields": { + "code_commune_insee": "2B305", + "nom_de_la_commune": "SAN MARTINO DI LOTA", + "code_postal": "20200", + "coordonnees_gps": [ + 42.7323992652, + 9.43163085599 + ], + "libelle_d_acheminement": "SAN MARTINO DI LOTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43163085599, + 42.7323992652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8129f48e459e264ecad7e98c5e23708d3eeccc91", + "fields": { + "code_commune_insee": "2B313", + "nom_de_la_commune": "SAN NICOLAO", + "code_postal": "20230", + "coordonnees_gps": [ + 42.3681811247, + 9.50945182928 + ], + "libelle_d_acheminement": "SAN NICOLAO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.50945182928, + 42.3681811247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97c67e43f06a802330b08324324f7760af91ecd1", + "fields": { + "code_commune_insee": "2B317", + "nom_de_la_commune": "SANTA REPARATA DI MORIANI", + "code_postal": "20230", + "coordonnees_gps": [ + 42.3511091684, + 9.45558469245 + ], + "libelle_d_acheminement": "SANTA REPARATA DI MORIANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45558469245, + 42.3511091684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99a044a90965801824d4f1b5bb97fa57aa3efdd6", + "fields": { + "ligne_5": "PIANICCIA", + "code_commune_insee": "2B320", + "libelle_d_acheminement": "TALLONE", + "code_postal": "20270", + "nom_de_la_commune": "TALLONE", + "coordonnees_gps": [ + 42.1844920407, + 9.46562453139 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.46562453139, + 42.1844920407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73ac82d2d4f0d2cff0dc81df7954a4cd58dc959d", + "fields": { + "code_commune_insee": "2B334", + "nom_de_la_commune": "VALLE D ALESANI", + "code_postal": "20234", + "coordonnees_gps": [ + 42.3279231457, + 9.43443873515 + ], + "libelle_d_acheminement": "VALLE D ALESANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43443873515, + 42.3279231457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ec14136e850723374a5f89954278cfb6a79b1cc", + "fields": { + "code_commune_insee": "2B339", + "nom_de_la_commune": "VALLICA", + "code_postal": "20259", + "coordonnees_gps": [ + 42.517352745, + 9.05742075675 + ], + "libelle_d_acheminement": "VALLICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.05742075675, + 42.517352745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe67fa209cfd32f462ba6e39b05deb83654111fa", + "fields": { + "code_commune_insee": "2B344", + "nom_de_la_commune": "VERDESE", + "code_postal": "20229", + "coordonnees_gps": [ + 42.3941662475, + 9.37311777417 + ], + "libelle_d_acheminement": "VERDESE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.37311777417, + 42.3941662475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "038d147df0e3df049e5d5e803eaab5f972cb0cf5", + "fields": { + "code_commune_insee": "2B346", + "nom_de_la_commune": "VESCOVATO", + "code_postal": "20215", + "coordonnees_gps": [ + 42.5156004933, + 9.47327679289 + ], + "libelle_d_acheminement": "VESCOVATO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.47327679289, + 42.5156004933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e97c0b06625a098bc9aaca13278912a3e69dde37", + "fields": { + "code_commune_insee": "2B350", + "nom_de_la_commune": "VIGNALE", + "code_postal": "20290", + "coordonnees_gps": [ + 42.5371661003, + 9.39510195579 + ], + "libelle_d_acheminement": "VIGNALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.39510195579, + 42.5371661003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29abe9be99957e732d692b9213cf835f4fe03cef", + "fields": { + "code_commune_insee": "2B355", + "nom_de_la_commune": "VOLPAJOLA", + "code_postal": "20290", + "coordonnees_gps": [ + 42.5200129525, + 9.36071505878 + ], + "libelle_d_acheminement": "VOLPAJOLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36071505878, + 42.5200129525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9488e3c511dbe87dcdfe3118b4735aa3bbd4e2bf", + "fields": { + "code_commune_insee": "30001", + "nom_de_la_commune": "AIGALIERS", + "code_postal": "30700", + "coordonnees_gps": [ + 44.0695522099, + 4.31087905786 + ], + "libelle_d_acheminement": "AIGALIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31087905786, + 44.0695522099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d63b1a542df7174d2d9cafa50a98bb4cde30ca01", + "fields": { + "code_commune_insee": "30004", + "nom_de_la_commune": "AIGUES VIVES", + "code_postal": "30670", + "coordonnees_gps": [ + 43.7345579232, + 4.19079446148 + ], + "libelle_d_acheminement": "AIGUES VIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19079446148, + 43.7345579232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cbfb724ed84bcd5cecc64b1225a7f8e02ca5de9", + "fields": { + "code_commune_insee": "30006", + "nom_de_la_commune": "AIMARGUES", + "code_postal": "30470", + "coordonnees_gps": [ + 43.6717803693, + 4.20375100125 + ], + "libelle_d_acheminement": "AIMARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20375100125, + 43.6717803693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46b45174429b77037706f749339a8b0adf2e8fe4", + "fields": { + "code_commune_insee": "30009", + "nom_de_la_commune": "ALZON", + "code_postal": "30770", + "coordonnees_gps": [ + 43.9742117823, + 3.44750179641 + ], + "libelle_d_acheminement": "ALZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44750179641, + 43.9742117823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa06d07e9f80e58341e3c3fb5cb27f2fd4a1b410", + "fields": { + "code_commune_insee": "30012", + "nom_de_la_commune": "ARAMON", + "code_postal": "30390", + "coordonnees_gps": [ + 43.904199015, + 4.68302001901 + ], + "libelle_d_acheminement": "ARAMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68302001901, + 43.904199015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78c6837d8e816cb03b81f8b76cad2f26183f30fe", + "fields": { + "code_commune_insee": "30018", + "nom_de_la_commune": "ASPERES", + "code_postal": "30250", + "coordonnees_gps": [ + 43.806765526, + 4.03867369104 + ], + "libelle_d_acheminement": "ASPERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03867369104, + 43.806765526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24e9acb1933e8dcbe8a1bc151aa6fb8eae94aa57", + "fields": { + "code_commune_insee": "30029", + "nom_de_la_commune": "BARJAC", + "code_postal": "30430", + "coordonnees_gps": [ + 44.3122415211, + 4.34841481782 + ], + "libelle_d_acheminement": "BARJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34841481782, + 44.3122415211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b92036d25bf9b62db4f4486fd94ba6139f99e70", + "fields": { + "code_commune_insee": "30032", + "nom_de_la_commune": "BEAUCAIRE", + "code_postal": "30300", + "coordonnees_gps": [ + 43.7797429509, + 4.59380296865 + ], + "libelle_d_acheminement": "BEAUCAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59380296865, + 43.7797429509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6f8ebf343c7021bdb21ba8a391c189abff4cf0a", + "fields": { + "code_commune_insee": "30033", + "nom_de_la_commune": "BEAUVOISIN", + "code_postal": "30640", + "coordonnees_gps": [ + 43.6962644399, + 4.32219796472 + ], + "libelle_d_acheminement": "BEAUVOISIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32219796472, + 43.6962644399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec6c74a4a067bf63aea3f22140ba3c65aceb9450", + "fields": { + "ligne_5": "FRANQUEVAUX", + "code_commune_insee": "30033", + "libelle_d_acheminement": "BEAUVOISIN", + "code_postal": "30640", + "nom_de_la_commune": "BEAUVOISIN", + "coordonnees_gps": [ + 43.6962644399, + 4.32219796472 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32219796472, + 43.6962644399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5cdadadb3daaf9b6350376bfb4e8252df497bf6", + "fields": { + "code_commune_insee": "30043", + "nom_de_la_commune": "BOISSIERES", + "code_postal": "30114", + "coordonnees_gps": [ + 43.7701911242, + 4.22986261144 + ], + "libelle_d_acheminement": "BOISSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22986261144, + 43.7701911242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "100f98b03369f00f3ee753f5e4067e2fb5f5eb6d", + "fields": { + "code_commune_insee": "30045", + "nom_de_la_commune": "BORDEZAC", + "code_postal": "30160", + "coordonnees_gps": [ + 44.3169443278, + 4.08675409339 + ], + "libelle_d_acheminement": "BORDEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08675409339, + 44.3169443278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bf86b54cbca65bd9ba650a80e5fff3e868e33b0", + "fields": { + "code_commune_insee": "30047", + "nom_de_la_commune": "BOUILLARGUES", + "code_postal": "30230", + "coordonnees_gps": [ + 43.801618461, + 4.4344842541 + ], + "libelle_d_acheminement": "BOUILLARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4344842541, + 43.801618461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dea81c4a6deb9799be95dc1db04668dc175a3789", + "fields": { + "code_commune_insee": "30049", + "nom_de_la_commune": "BOURDIC", + "code_postal": "30190", + "coordonnees_gps": [ + 43.978017691, + 4.33488113527 + ], + "libelle_d_acheminement": "BOURDIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33488113527, + 43.978017691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fe82b0eb65151bbd12e27bd25aa6613344f28dc", + "fields": { + "ligne_5": "BREAU ET SALAGOSSE", + "code_commune_insee": "30052", + "libelle_d_acheminement": "BREAU MARS", + "code_postal": "30120", + "nom_de_la_commune": "BREAU MARS", + "coordonnees_gps": [ + 44.0295400705, + 3.55673412919 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55673412919, + 44.0295400705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "525dadd3b8fd3d86a102ed31ad1f20a37d0d3fac", + "fields": { + "code_commune_insee": "30053", + "nom_de_la_commune": "BRIGNON", + "code_postal": "30190", + "coordonnees_gps": [ + 43.9965615202, + 4.21356610961 + ], + "libelle_d_acheminement": "BRIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21356610961, + 43.9965615202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce08e4b48dea68ca40b6945b2c7888a4758a9fce", + "fields": { + "code_commune_insee": "30056", + "nom_de_la_commune": "LA BRUGUIERE", + "code_postal": "30580", + "coordonnees_gps": [ + 44.1032125221, + 4.40195083358 + ], + "libelle_d_acheminement": "LA BRUGUIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40195083358, + 44.1032125221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fcfd03f3855fef3b465dcd00d0bf309a7651aa7", + "fields": { + "code_commune_insee": "30058", + "nom_de_la_commune": "LA CADIERE ET CAMBO", + "code_postal": "30170", + "coordonnees_gps": [ + 43.9631178166, + 3.80678957516 + ], + "libelle_d_acheminement": "LA CADIERE ET CAMBO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80678957516, + 43.9631178166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de48902319cbdd09bba0c33bf0803c847beea499", + "fields": { + "code_commune_insee": "30059", + "nom_de_la_commune": "LE CAILAR", + "code_postal": "30740", + "coordonnees_gps": [ + 43.6585975961, + 4.24246060862 + ], + "libelle_d_acheminement": "LE CAILAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24246060862, + 43.6585975961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92ab5f607b39b8b83ca7887e3473ead334112fe5", + "fields": { + "code_commune_insee": "30061", + "nom_de_la_commune": "LA CALMETTE", + "code_postal": "30190", + "coordonnees_gps": [ + 43.9263163144, + 4.26355372914 + ], + "libelle_d_acheminement": "LA CALMETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26355372914, + 43.9263163144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56d3934cb56a8874a95b8b1a78acf653a299c265", + "fields": { + "code_commune_insee": "30070", + "nom_de_la_commune": "CARSAN", + "code_postal": "30130", + "coordonnees_gps": [ + 44.2303398227, + 4.58526557136 + ], + "libelle_d_acheminement": "CARSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58526557136, + 44.2303398227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a8bfe87d8cadeea7a6068c3221d4cd025dc1e12", + "fields": { + "code_commune_insee": "30073", + "nom_de_la_commune": "CASTILLON DU GARD", + "code_postal": "30210", + "coordonnees_gps": [ + 43.9781824573, + 4.55612573863 + ], + "libelle_d_acheminement": "CASTILLON DU GARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55612573863, + 43.9781824573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c211b7c0541959a6a5d395c35ac1b2f874cfbb1a", + "fields": { + "code_commune_insee": "30077", + "nom_de_la_commune": "CENDRAS", + "code_postal": "30480", + "coordonnees_gps": [ + 44.150716856, + 4.03567283331 + ], + "libelle_d_acheminement": "CENDRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03567283331, + 44.150716856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a21c8fa99a4dfcb92b2faa770686cda80b0f19a", + "fields": { + "code_commune_insee": "30081", + "nom_de_la_commune": "CHUSCLAN", + "code_postal": "30200", + "coordonnees_gps": [ + 44.1543328002, + 4.6882962223 + ], + "libelle_d_acheminement": "CHUSCLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6882962223, + 44.1543328002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29f25e3653c22f37e2e7d94c8a396e4d698a5cf6", + "fields": { + "ligne_5": "MARCOULE", + "code_commune_insee": "30081", + "libelle_d_acheminement": "CHUSCLAN", + "code_postal": "30200", + "nom_de_la_commune": "CHUSCLAN", + "coordonnees_gps": [ + 44.1543328002, + 4.6882962223 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6882962223, + 44.1543328002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5376af61d1f99f1a5fb1ee42814637d195726da8", + "fields": { + "code_commune_insee": "30088", + "nom_de_la_commune": "COMBAS", + "code_postal": "30250", + "coordonnees_gps": [ + 43.8583420282, + 4.12087764486 + ], + "libelle_d_acheminement": "COMBAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12087764486, + 43.8583420282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e5f11468a7167edfba17ffe3dd45570dbedbc77", + "fields": { + "code_commune_insee": "30090", + "nom_de_la_commune": "CONCOULES", + "code_postal": "30450", + "coordonnees_gps": [ + 44.374273791, + 3.94567245426 + ], + "libelle_d_acheminement": "CONCOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94567245426, + 44.374273791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d82c6e7562403e83559927f4bf916942d115a3f5", + "fields": { + "code_commune_insee": "30091", + "nom_de_la_commune": "CONGENIES", + "code_postal": "30111", + "coordonnees_gps": [ + 43.7752563981, + 4.15881236462 + ], + "libelle_d_acheminement": "CONGENIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15881236462, + 43.7752563981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d76795b299adcdeae85f5257ebb06f545f97c09", + "fields": { + "code_commune_insee": "30092", + "nom_de_la_commune": "CONNAUX", + "code_postal": "30330", + "coordonnees_gps": [ + 44.0769164231, + 4.59924544378 + ], + "libelle_d_acheminement": "CONNAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59924544378, + 44.0769164231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e75a369bacc4b6cbee74616ecf4070bec39f16c9", + "fields": { + "code_commune_insee": "30093", + "nom_de_la_commune": "CONQUEYRAC", + "code_postal": "30170", + "coordonnees_gps": [ + 43.938263941, + 3.90634952219 + ], + "libelle_d_acheminement": "CONQUEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90634952219, + 43.938263941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46ee56a67d0711b33871ff3dbc7ea1578858a889", + "fields": { + "code_commune_insee": "30095", + "nom_de_la_commune": "CORCONNE", + "code_postal": "30260", + "coordonnees_gps": [ + 43.8722496037, + 3.9404508858 + ], + "libelle_d_acheminement": "CORCONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9404508858, + 43.8722496037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b02480e7c996075c8b0e7e8c4ba00b62ab7e29f", + "fields": { + "code_commune_insee": "30097", + "nom_de_la_commune": "COURRY", + "code_postal": "30500", + "coordonnees_gps": [ + 44.3027020253, + 4.16098011589 + ], + "libelle_d_acheminement": "COURRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16098011589, + 44.3027020253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27e8da9bfb1aa0d9db0e4fa40c5cc1d4892eba63", + "fields": { + "code_commune_insee": "30109", + "nom_de_la_commune": "EUZET", + "code_postal": "30360", + "coordonnees_gps": [ + 44.0738028889, + 4.23568352437 + ], + "libelle_d_acheminement": "EUZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23568352437, + 44.0738028889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a67ecf6d0c6051ee76a3df1e026e46d826d3441", + "fields": { + "code_commune_insee": "30111", + "nom_de_la_commune": "FOISSAC", + "code_postal": "30700", + "coordonnees_gps": [ + 44.0356153911, + 4.2996904256 + ], + "libelle_d_acheminement": "FOISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2996904256, + 44.0356153911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfe9fa570de23874808003e22474370121cf6776", + "fields": { + "code_commune_insee": "30127", + "nom_de_la_commune": "GAUJAC", + "code_postal": "30330", + "coordonnees_gps": [ + 44.0759473205, + 4.57117388121 + ], + "libelle_d_acheminement": "GAUJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57117388121, + 44.0759473205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efe30a5e612ed9dafa8448e2b3ca4923f115a367", + "fields": { + "code_commune_insee": "30129", + "nom_de_la_commune": "GENERARGUES", + "code_postal": "30140", + "coordonnees_gps": [ + 44.0802693972, + 3.99219597696 + ], + "libelle_d_acheminement": "GENERARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99219597696, + 44.0802693972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebcddf8614f6bde7e6eb574e103555d8360f7029", + "fields": { + "ligne_5": "LA LEVADE", + "code_commune_insee": "30132", + "libelle_d_acheminement": "LA GRAND COMBE", + "code_postal": "30110", + "nom_de_la_commune": "LA GRAND COMBE", + "coordonnees_gps": [ + 44.2271512171, + 4.02984902103 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02984902103, + 44.2271512171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08c536cb20044c0cf8ca643e5c01bb6913ea1121", + "fields": { + "code_commune_insee": "30139", + "nom_de_la_commune": "LANUEJOLS", + "code_postal": "30750", + "coordonnees_gps": [ + 44.1272274287, + 3.37586274913 + ], + "libelle_d_acheminement": "LANUEJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37586274913, + 44.1272274287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d17bfc35df9e659d6b837cecd36e74339238266", + "fields": { + "code_commune_insee": "30142", + "nom_de_la_commune": "LAVAL PRADEL", + "code_postal": "30110", + "coordonnees_gps": [ + 44.2151183634, + 4.0646367548 + ], + "libelle_d_acheminement": "LAVAL PRADEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0646367548, + 44.2151183634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d222b4a6b1d1cb0afdd4e73960557d64e81b9c37", + "fields": { + "code_commune_insee": "30145", + "nom_de_la_commune": "LEDENON", + "code_postal": "30210", + "coordonnees_gps": [ + 43.9087685833, + 4.5151493479 + ], + "libelle_d_acheminement": "LEDENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5151493479, + 43.9087685833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7bdea51b8822594677fd5701afeed02ae6cac6a", + "fields": { + "code_commune_insee": "30151", + "nom_de_la_commune": "LUSSAN", + "code_postal": "30580", + "coordonnees_gps": [ + 44.1667929571, + 4.37557833137 + ], + "libelle_d_acheminement": "LUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37557833137, + 44.1667929571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03706845ef993529ddd970a75fd507eb714a8e9c", + "fields": { + "code_commune_insee": "30159", + "nom_de_la_commune": "LE MARTINET", + "code_postal": "30960", + "coordonnees_gps": [ + 44.2550484499, + 4.08132775879 + ], + "libelle_d_acheminement": "LE MARTINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08132775879, + 44.2550484499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "713c3955d272e4956febdcd6d0e1779ecd9d66d0", + "fields": { + "code_commune_insee": "30160", + "nom_de_la_commune": "MARUEJOLS LES GARDON", + "code_postal": "30350", + "coordonnees_gps": [ + 44.0058651478, + 4.13598207367 + ], + "libelle_d_acheminement": "MARUEJOLS LES GARDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13598207367, + 44.0058651478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abf2dab0eaa85d85cfd89ba4e37c59c3bd361208", + "fields": { + "code_commune_insee": "30163", + "nom_de_la_commune": "MAURESSARGUES", + "code_postal": "30350", + "coordonnees_gps": [ + 43.9551103852, + 4.1622404326 + ], + "libelle_d_acheminement": "MAURESSARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1622404326, + 43.9551103852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ae4bafdb5eafef94a494ac07f9ef7487ee1775c", + "fields": { + "code_commune_insee": "30165", + "nom_de_la_commune": "MEJANNES LES ALES", + "code_postal": "30340", + "coordonnees_gps": [ + 44.10161097, + 4.15129605543 + ], + "libelle_d_acheminement": "MEJANNES LES ALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15129605543, + 44.10161097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0971347e4b7e09590679326bc30488f316f21faa", + "fields": { + "code_commune_insee": "30170", + "nom_de_la_commune": "MOLIERES CAVAILLAC", + "code_postal": "30120", + "coordonnees_gps": [ + 43.9707308268, + 3.571824012 + ], + "libelle_d_acheminement": "MOLIERES CAVAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.571824012, + 43.9707308268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24fbe433d397db4bc133b36ec17c34c35c14c36a", + "fields": { + "code_commune_insee": "30185", + "nom_de_la_commune": "MUS", + "code_postal": "30121", + "coordonnees_gps": [ + 43.7371547201, + 4.20278682851 + ], + "libelle_d_acheminement": "MUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20278682851, + 43.7371547201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9fcd998ef309b66e26b7c2ea4091d4950761693", + "fields": { + "code_commune_insee": "30191", + "nom_de_la_commune": "ORSAN", + "code_postal": "30200", + "coordonnees_gps": [ + 44.1348287261, + 4.66522827508 + ], + "libelle_d_acheminement": "ORSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66522827508, + 44.1348287261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fdbde8fd89a1ff491386ba6c946e79f6bd7e46e", + "fields": { + "code_commune_insee": "30193", + "nom_de_la_commune": "PARIGNARGUES", + "code_postal": "30730", + "coordonnees_gps": [ + 43.8696516481, + 4.21350667303 + ], + "libelle_d_acheminement": "PARIGNARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21350667303, + 43.8696516481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcca731993de1b2befd30e923f06810d8e0cc91f", + "fields": { + "code_commune_insee": "30199", + "nom_de_la_commune": "POMMIERS", + "code_postal": "30120", + "coordonnees_gps": [ + 43.9481975416, + 3.61575937112 + ], + "libelle_d_acheminement": "POMMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61575937112, + 43.9481975416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "016cd759cc300ae1e90f7a6e7b12aa2f24933d76", + "fields": { + "code_commune_insee": "30212", + "nom_de_la_commune": "REMOULINS", + "code_postal": "30210", + "coordonnees_gps": [ + 43.9405719288, + 4.56488938699 + ], + "libelle_d_acheminement": "REMOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56488938699, + 43.9405719288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54edc160a03973ed776b620126d213773524f0c4", + "fields": { + "code_commune_insee": "30216", + "nom_de_la_commune": "ROBIAC ROCHESSADOULE", + "code_postal": "30160", + "coordonnees_gps": [ + 44.272616356, + 4.10232819302 + ], + "libelle_d_acheminement": "ROBIAC ROCHESSADOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10232819302, + 44.272616356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cea71cc6df203e9f62a2f520e7dad110809072ad", + "fields": { + "code_commune_insee": "30218", + "nom_de_la_commune": "ROCHEGUDE", + "code_postal": "30430", + "coordonnees_gps": [ + 44.2390551255, + 4.28316039005 + ], + "libelle_d_acheminement": "ROCHEGUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28316039005, + 44.2390551255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2c69aea2c1748cad9f04748aae8f70f315f70c9", + "fields": { + "code_commune_insee": "30220", + "nom_de_la_commune": "ROQUEDUR", + "code_postal": "30440", + "coordonnees_gps": [ + 43.9784209094, + 3.66272021466 + ], + "libelle_d_acheminement": "ROQUEDUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66272021466, + 43.9784209094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e302f344dbc5cb9d8ba2a329dc80b89fc34d57ca", + "fields": { + "code_commune_insee": "30221", + "nom_de_la_commune": "ROQUEMAURE", + "code_postal": "30150", + "coordonnees_gps": [ + 44.0414756862, + 4.7565701251 + ], + "libelle_d_acheminement": "ROQUEMAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7565701251, + 44.0414756862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "193470c24de46520f951bb454eb180b137abca63", + "fields": { + "code_commune_insee": "30223", + "nom_de_la_commune": "ROUSSON", + "code_postal": "30340", + "coordonnees_gps": [ + 44.1972122109, + 4.15147892026 + ], + "libelle_d_acheminement": "ROUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15147892026, + 44.1972122109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f03d65a2c79b83d46d6e4290cd897c2ac45d58e4", + "fields": { + "code_commune_insee": "30237", + "nom_de_la_commune": "ST BRES", + "code_postal": "30500", + "coordonnees_gps": [ + 44.2826357657, + 4.19801867404 + ], + "libelle_d_acheminement": "ST BRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19801867404, + 44.2826357657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fc25b79dd98775633fe1c1079f4f40848b67fa8", + "fields": { + "code_commune_insee": "30238", + "nom_de_la_commune": "ST BRESSON", + "code_postal": "30440", + "coordonnees_gps": [ + 43.954635238, + 3.64404651872 + ], + "libelle_d_acheminement": "ST BRESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64404651872, + 43.954635238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7c44804dca04519c45b2297aea598bf56efaa3d", + "fields": { + "code_commune_insee": "30242", + "nom_de_la_commune": "ST CHRISTOL DE RODIERES", + "code_postal": "30760", + "coordonnees_gps": [ + 44.265811476, + 4.5140617936 + ], + "libelle_d_acheminement": "ST CHRISTOL DE RODIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5140617936, + 44.265811476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1148eaaea91be1aa193e945456a09dd34dff147f", + "fields": { + "code_commune_insee": "30245", + "nom_de_la_commune": "ST COME ET MARUEJOLS", + "code_postal": "30870", + "coordonnees_gps": [ + 43.8311717606, + 4.18822528852 + ], + "libelle_d_acheminement": "ST COME ET MARUEJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18822528852, + 43.8311717606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c836e36e8d04fbe042c109317eaac009ced7b90", + "fields": { + "code_commune_insee": "30247", + "nom_de_la_commune": "ST DENIS", + "code_postal": "30500", + "coordonnees_gps": [ + 44.2378320115, + 4.24892271537 + ], + "libelle_d_acheminement": "ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24892271537, + 44.2378320115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "296d4b750807a6472a2874b5c8f37c27f28a4ed0", + "fields": { + "code_commune_insee": "30249", + "nom_de_la_commune": "ST DIONISY", + "code_postal": "30980", + "coordonnees_gps": [ + 43.8046137629, + 4.22332689655 + ], + "libelle_d_acheminement": "ST DIONISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22332689655, + 43.8046137629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99ccc3a9a08eaa6de4452ac97d755f49d2ec86da", + "fields": { + "code_commune_insee": "30258", + "nom_de_la_commune": "ST GILLES", + "code_postal": "30800", + "coordonnees_gps": [ + 43.6582880911, + 4.4077842781 + ], + "libelle_d_acheminement": "ST GILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4077842781, + 43.6582880911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b9b9b0da3a9e99f90c983e94f6efe650f650fec", + "fields": { + "code_commune_insee": "30265", + "nom_de_la_commune": "ST JEAN DE CRIEULON", + "code_postal": "30610", + "coordonnees_gps": [ + 43.9658514695, + 3.99917970846 + ], + "libelle_d_acheminement": "ST JEAN DE CRIEULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99917970846, + 43.9658514695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b14e3575efa9e735d200b388ef9158182a8fcfb", + "fields": { + "code_commune_insee": "30268", + "nom_de_la_commune": "ST JEAN DE VALERISCLE", + "code_postal": "30960", + "coordonnees_gps": [ + 44.2344720067, + 4.14029617463 + ], + "libelle_d_acheminement": "ST JEAN DE VALERISCLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14029617463, + 44.2344720067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bcd05941a97471378b95577750922c69180bc67", + "fields": { + "code_commune_insee": "30270", + "nom_de_la_commune": "ST JEAN DU PIN", + "code_postal": "30140", + "coordonnees_gps": [ + 44.1164232741, + 4.0327398577 + ], + "libelle_d_acheminement": "ST JEAN DU PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0327398577, + 44.1164232741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8b92c599124ad0f7599e4a029bc86a85ff558b8", + "fields": { + "code_commune_insee": "30276", + "nom_de_la_commune": "ST LAURENT D AIGOUZE", + "code_postal": "30220", + "coordonnees_gps": [ + 43.5704667383, + 4.24257576884 + ], + "libelle_d_acheminement": "ST LAURENT D AIGOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24257576884, + 43.5704667383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5100ab101500e71565e745104bd7078c0227b56a", + "fields": { + "code_commune_insee": "30279", + "nom_de_la_commune": "ST LAURENT LA VERNEDE", + "code_postal": "30330", + "coordonnees_gps": [ + 44.1117248991, + 4.4613624707 + ], + "libelle_d_acheminement": "ST LAURENT LA VERNEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4613624707, + 44.1117248991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe196efb5e3719469f52ec2a806c02bed2fe1656", + "fields": { + "code_commune_insee": "30281", + "nom_de_la_commune": "ST MAMERT DU GARD", + "code_postal": "30730", + "coordonnees_gps": [ + 43.883428013, + 4.17283448952 + ], + "libelle_d_acheminement": "ST MAMERT DU GARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17283448952, + 43.883428013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9bf7ac903f885d6d1ee2830fd9b2293925171b9", + "fields": { + "code_commune_insee": "30284", + "nom_de_la_commune": "ST MARTIN DE VALGALGUES", + "code_postal": "30520", + "coordonnees_gps": [ + 44.1658828602, + 4.0750003608 + ], + "libelle_d_acheminement": "ST MARTIN DE VALGALGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0750003608, + 44.1658828602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e64719ceee106b80759a0cde714aefcc72b9d7a", + "fields": { + "code_commune_insee": "30289", + "nom_de_la_commune": "ST NAZAIRE DES GARDIES", + "code_postal": "30610", + "coordonnees_gps": [ + 43.9803874312, + 4.0156093485 + ], + "libelle_d_acheminement": "ST NAZAIRE DES GARDIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0156093485, + 43.9803874312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c137e00e7561a6dd57e6c40f6d45641d375eb69", + "fields": { + "code_commune_insee": "30293", + "nom_de_la_commune": "ST PRIVAT DE CHAMPCLOS", + "code_postal": "30430", + "coordonnees_gps": [ + 44.2763763526, + 4.35555026236 + ], + "libelle_d_acheminement": "ST PRIVAT DE CHAMPCLOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35555026236, + 44.2763763526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1141a123bc0050aa8396b9f71276875351d8ffac", + "fields": { + "code_commune_insee": "30296", + "nom_de_la_commune": "ST ROMAN DE CODIERES", + "code_postal": "30440", + "coordonnees_gps": [ + 44.0123424811, + 3.77355392484 + ], + "libelle_d_acheminement": "ST ROMAN DE CODIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77355392484, + 44.0123424811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5a578c5f497473aa8062d4fac12f16d267c9a82", + "fields": { + "code_commune_insee": "30306", + "nom_de_la_commune": "SALINELLES", + "code_postal": "30250", + "coordonnees_gps": [ + 43.8113201948, + 4.06673339715 + ], + "libelle_d_acheminement": "SALINELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06673339715, + 43.8113201948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5ed2008b5176f4f56e61c8a5a8005d8e6f65ed8", + "fields": { + "code_commune_insee": "30310", + "nom_de_la_commune": "SAUMANE", + "code_postal": "30125", + "coordonnees_gps": [ + 44.1191109205, + 3.76891045379 + ], + "libelle_d_acheminement": "SAUMANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76891045379, + 44.1191109205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02397f690ce6c768d9ddcdadb1f994792112251e", + "fields": { + "code_commune_insee": "30325", + "nom_de_la_commune": "SUMENE", + "code_postal": "30440", + "coordonnees_gps": [ + 43.9885776737, + 3.73217518553 + ], + "libelle_d_acheminement": "SUMENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73217518553, + 43.9885776737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2196d5a7b37e8b565271b4a0eb73688dc420ac1", + "fields": { + "code_commune_insee": "30328", + "nom_de_la_commune": "THEZIERS", + "code_postal": "30390", + "coordonnees_gps": [ + 43.9037474433, + 4.6260789572 + ], + "libelle_d_acheminement": "THEZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6260789572, + 43.9037474433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f531a5ddf6a043c2e0166b2e02875882ede5bfd", + "fields": { + "code_commune_insee": "30331", + "nom_de_la_commune": "TRESQUES", + "code_postal": "30330", + "coordonnees_gps": [ + 44.116981743, + 4.59282307489 + ], + "libelle_d_acheminement": "TRESQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59282307489, + 44.116981743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6efd849aacb048200c7cfe66d23d785da3ada6c7", + "fields": { + "ligne_5": "GALLICIAN", + "code_commune_insee": "30341", + "libelle_d_acheminement": "VAUVERT", + "code_postal": "30600", + "nom_de_la_commune": "VAUVERT", + "coordonnees_gps": [ + 43.6258468531, + 4.30597093294 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30597093294, + 43.6258468531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16d79bb69125f397dc88fa06b1268875c6b7ef9a", + "fields": { + "code_commune_insee": "30345", + "nom_de_la_commune": "LA VERNAREDE", + "code_postal": "30530", + "coordonnees_gps": [ + 44.2842521059, + 4.00752178813 + ], + "libelle_d_acheminement": "LA VERNAREDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00752178813, + 44.2842521059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bad258d79bbed5a7a079adda3b4c47673973459e", + "fields": { + "code_commune_insee": "30347", + "nom_de_la_commune": "VESTRIC ET CANDIAC", + "code_postal": "30600", + "coordonnees_gps": [ + 43.7360708726, + 4.26452194567 + ], + "libelle_d_acheminement": "VESTRIC ET CANDIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26452194567, + 43.7360708726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31e61b2717ff990e175c4e7926aa92451a75e6ed", + "fields": { + "code_commune_insee": "30350", + "nom_de_la_commune": "LE VIGAN", + "code_postal": "30120", + "coordonnees_gps": [ + 43.9886565575, + 3.62522883405 + ], + "libelle_d_acheminement": "LE VIGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62522883405, + 43.9886565575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd26473092b1f4c29139dac1b99986319e0e4497", + "fields": { + "code_commune_insee": "30355", + "nom_de_la_commune": "ST PAUL LES FONTS", + "code_postal": "30330", + "coordonnees_gps": [ + 44.0756512513, + 4.61675819093 + ], + "libelle_d_acheminement": "ST PAUL LES FONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61675819093, + 44.0756512513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8f4792fb61acb4aee47f798ae92fc2a927b526e", + "fields": { + "code_commune_insee": "31001", + "nom_de_la_commune": "AGASSAC", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3720949705, + 0.885301441873 + ], + "libelle_d_acheminement": "AGASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.885301441873, + 43.3720949705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1806d5f4ada4d3a053318531140e8e178c76f7d1", + "fields": { + "code_commune_insee": "31003", + "nom_de_la_commune": "AIGREFEUILLE", + "code_postal": "31280", + "coordonnees_gps": [ + 43.5693635882, + 1.58421445375 + ], + "libelle_d_acheminement": "AIGREFEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58421445375, + 43.5693635882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d45c5913c9768016314f93b5995cb2931280e5b", + "fields": { + "code_commune_insee": "31005", + "nom_de_la_commune": "ALAN", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2200878042, + 0.927625726585 + ], + "libelle_d_acheminement": "ALAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.927625726585, + 43.2200878042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ce7812b6831e27bc818a6612af1915110fa73a9", + "fields": { + "code_commune_insee": "31007", + "nom_de_la_commune": "AMBAX", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3680277125, + 0.937034657846 + ], + "libelle_d_acheminement": "AMBAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.937034657846, + 43.3680277125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad75e8a4c94604fd24f5984283d4d3a599fe45fa", + "fields": { + "code_commune_insee": "31017", + "nom_de_la_commune": "ARLOS", + "code_postal": "31440", + "coordonnees_gps": [ + 42.874241036, + 0.695211627437 + ], + "libelle_d_acheminement": "ARLOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.695211627437, + 42.874241036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5781188708d275aa5d2ffa90f763cf2c6338afe", + "fields": { + "code_commune_insee": "31022", + "nom_de_la_commune": "AUCAMVILLE", + "code_postal": "31140", + "coordonnees_gps": [ + 43.6713968117, + 1.42370910767 + ], + "libelle_d_acheminement": "AUCAMVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42370910767, + 43.6713968117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92eaace220ba0b3737b01b1a295b3c5678df8797", + "fields": { + "code_commune_insee": "31025", + "nom_de_la_commune": "AUREVILLE", + "code_postal": "31320", + "coordonnees_gps": [ + 43.4804161473, + 1.45712269625 + ], + "libelle_d_acheminement": "AUREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45712269625, + 43.4804161473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c806c4cc97b9ff276f2b5a995ea903bac6783cde", + "fields": { + "code_commune_insee": "31027", + "nom_de_la_commune": "AURIBAIL", + "code_postal": "31190", + "coordonnees_gps": [ + 43.3464885877, + 1.37524698634 + ], + "libelle_d_acheminement": "AURIBAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37524698634, + 43.3464885877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67ed0c10e1a2e6d259e7d4c5bb600cbacbf794f9", + "fields": { + "code_commune_insee": "31028", + "nom_de_la_commune": "AURIGNAC", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2137172821, + 0.871496161348 + ], + "libelle_d_acheminement": "AURIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.871496161348, + 43.2137172821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d45ee3786f3c21ecd0a8148627b4498f937b4f4", + "fields": { + "code_commune_insee": "31031", + "nom_de_la_commune": "AUSSON", + "code_postal": "31210", + "coordonnees_gps": [ + 43.0915876705, + 0.589975626665 + ], + "libelle_d_acheminement": "AUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.589975626665, + 43.0915876705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c66404bc27e9c18bea5de269a539aa5917d52b8", + "fields": { + "code_commune_insee": "31037", + "nom_de_la_commune": "AVIGNONET LAURAGAIS", + "code_postal": "31290", + "coordonnees_gps": [ + 43.3769712959, + 1.77272704833 + ], + "libelle_d_acheminement": "AVIGNONET LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77272704833, + 43.3769712959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "416cfb7cd9c01251bfd66069a699369572c8ee7e", + "fields": { + "code_commune_insee": "31045", + "nom_de_la_commune": "BARBAZAN", + "code_postal": "31510", + "coordonnees_gps": [ + 43.0349167562, + 0.621843270665 + ], + "libelle_d_acheminement": "BARBAZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.621843270665, + 43.0349167562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f54898ecfef3c9a9b550cf9caf7ac5eaef2e267", + "fields": { + "code_commune_insee": "31058", + "nom_de_la_commune": "BELBEZE DE LAURAGAIS", + "code_postal": "31450", + "coordonnees_gps": [ + 43.437002886, + 1.55679830955 + ], + "libelle_d_acheminement": "BELBEZE DE LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55679830955, + 43.437002886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a02b8d92ebd2d063b97fce5f77138c777df84a0f", + "fields": { + "code_commune_insee": "31066", + "nom_de_la_commune": "BESSIERES", + "code_postal": "31660", + "coordonnees_gps": [ + 43.796995756, + 1.58618244226 + ], + "libelle_d_acheminement": "BESSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58618244226, + 43.796995756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ea83796a7e0e73f711186c2a2965c4e8fc100dc", + "fields": { + "code_commune_insee": "31068", + "nom_de_la_commune": "BILLIERE", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8163998268, + 0.528501869101 + ], + "libelle_d_acheminement": "BILLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.528501869101, + 42.8163998268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "040a1b0683168e324ca35e1217f8b06f5f954a91", + "fields": { + "code_commune_insee": "31069", + "nom_de_la_commune": "BLAGNAC", + "code_postal": "31700", + "coordonnees_gps": [ + 43.6421867862, + 1.37886941086 + ], + "libelle_d_acheminement": "BLAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37886941086, + 43.6421867862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94a9687781cc454d93d226822ea5c9a1853c93e6", + "fields": { + "code_commune_insee": "31073", + "nom_de_la_commune": "BONDIGOUX", + "code_postal": "31340", + "coordonnees_gps": [ + 43.8426819067, + 1.5434822211 + ], + "libelle_d_acheminement": "BONDIGOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5434822211, + 43.8426819067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9195a33a48eef3797ce7e5e704c27943b0dd49e6", + "fields": { + "code_commune_insee": "31074", + "nom_de_la_commune": "BONREPOS RIQUET", + "code_postal": "31590", + "coordonnees_gps": [ + 43.6764879436, + 1.62258710313 + ], + "libelle_d_acheminement": "BONREPOS RIQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62258710313, + 43.6764879436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e538b9721f4ed93e54cba75eca369c2a33b22dfe", + "fields": { + "code_commune_insee": "31076", + "nom_de_la_commune": "BORDES DE RIVIERE", + "code_postal": "31210", + "coordonnees_gps": [ + 43.1236831368, + 0.634949755967 + ], + "libelle_d_acheminement": "BORDES DE RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.634949755967, + 43.1236831368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c558f3f57d6d4d7fff1530de9b6140a8ef6d6b6", + "fields": { + "code_commune_insee": "31077", + "nom_de_la_commune": "LE BORN", + "code_postal": "31340", + "coordonnees_gps": [ + 43.8958696677, + 1.53902789526 + ], + "libelle_d_acheminement": "LE BORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53902789526, + 43.8958696677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1caec3f1b0b567dd968a6e4363bf17e68d4243a0", + "fields": { + "ligne_5": "COULEDOUX", + "code_commune_insee": "31085", + "libelle_d_acheminement": "BOUTX", + "code_postal": "31160", + "nom_de_la_commune": "BOUTX", + "coordonnees_gps": [ + 42.9153786194, + 0.770355750474 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.770355750474, + 42.9153786194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd9a6b64cb73078d320d7c0e97a81f755898605e", + "fields": { + "code_commune_insee": "31086", + "nom_de_la_commune": "BOUZIN", + "code_postal": "31420", + "coordonnees_gps": [ + 43.1908302921, + 0.883064615225 + ], + "libelle_d_acheminement": "BOUZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.883064615225, + 43.1908302921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e18c63140934e27a56bcd7a2b82590e2fc86f743", + "fields": { + "code_commune_insee": "31087", + "nom_de_la_commune": "BRAGAYRAC", + "code_postal": "31470", + "coordonnees_gps": [ + 43.4884997538, + 1.07003816483 + ], + "libelle_d_acheminement": "BRAGAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07003816483, + 43.4884997538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "806218e40116c87bf3d49bf40949c0fdcde9fcd2", + "fields": { + "code_commune_insee": "31091", + "nom_de_la_commune": "BRUGUIERES", + "code_postal": "31150", + "coordonnees_gps": [ + 43.7271508931, + 1.40915818124 + ], + "libelle_d_acheminement": "BRUGUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40915818124, + 43.7271508931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3413cc351984dbfb7853c545f8fd627f3585fb5f", + "fields": { + "code_commune_insee": "31095", + "nom_de_la_commune": "CABANAC CAZAUX", + "code_postal": "31160", + "coordonnees_gps": [ + 43.0344383786, + 0.73986085522 + ], + "libelle_d_acheminement": "CABANAC CAZAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73986085522, + 43.0344383786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eb076e505f375f469e352bcfe1f6d6a2df8cbe9", + "fields": { + "code_commune_insee": "31105", + "nom_de_la_commune": "CARAGOUDES", + "code_postal": "31460", + "coordonnees_gps": [ + 43.5007296473, + 1.71348658169 + ], + "libelle_d_acheminement": "CARAGOUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71348658169, + 43.5007296473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe0bbee76719b5126da6ff9681077884d83f8ed0", + "fields": { + "code_commune_insee": "31107", + "nom_de_la_commune": "CARBONNE", + "code_postal": "31390", + "coordonnees_gps": [ + 43.3014494679, + 1.21849966052 + ], + "libelle_d_acheminement": "CARBONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21849966052, + 43.3014494679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f11324d0e95de532f7780f568ef2619816d3c98", + "fields": { + "code_commune_insee": "31108", + "nom_de_la_commune": "CARDEILHAC", + "code_postal": "31350", + "coordonnees_gps": [ + 43.1959659797, + 0.676356959979 + ], + "libelle_d_acheminement": "CARDEILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.676356959979, + 43.1959659797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d65d17d773f34078d48dfdd45fabcf8b2aed6ddb", + "fields": { + "code_commune_insee": "31134", + "nom_de_la_commune": "CAZENEUVE MONTAUT", + "code_postal": "31420", + "coordonnees_gps": [ + 43.181753746, + 0.862058674032 + ], + "libelle_d_acheminement": "CAZENEUVE MONTAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.862058674032, + 43.181753746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e2aed34e7786a18b6becca5337317ab62dd529a", + "fields": { + "code_commune_insee": "31140", + "nom_de_la_commune": "CHEIN DESSUS", + "code_postal": "31160", + "coordonnees_gps": [ + 43.0047959072, + 0.875406568776 + ], + "libelle_d_acheminement": "CHEIN DESSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.875406568776, + 43.0047959072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "339921af1a5ddbeb16d2ad60a46ad14ed8361c3f", + "fields": { + "code_commune_insee": "31144", + "nom_de_la_commune": "CIERP GAUD", + "code_postal": "31440", + "coordonnees_gps": [ + 42.9126857929, + 0.634654016295 + ], + "libelle_d_acheminement": "CIERP GAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.634654016295, + 42.9126857929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a5754850b03e0ac51f1753791c1c102aeea9fd9", + "fields": { + "code_commune_insee": "31162", + "nom_de_la_commune": "DONNEVILLE", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4727663351, + 1.55123674393 + ], + "libelle_d_acheminement": "DONNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55123674393, + 43.4727663351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da04d346cdd864971bf601d39d685f052cfbd12f", + "fields": { + "code_commune_insee": "31163", + "nom_de_la_commune": "DREMIL LAFAGE", + "code_postal": "31280", + "coordonnees_gps": [ + 43.5917450046, + 1.60317858456 + ], + "libelle_d_acheminement": "DREMIL LAFAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60317858456, + 43.5917450046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72f4037e410f05dc7978705acfea77527f32cf6d", + "fields": { + "code_commune_insee": "31164", + "nom_de_la_commune": "DRUDAS", + "code_postal": "31480", + "coordonnees_gps": [ + 43.7622728422, + 1.09790048233 + ], + "libelle_d_acheminement": "DRUDAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09790048233, + 43.7622728422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24744f6fb5ca46169c78ed3bab56576901ebee72", + "fields": { + "code_commune_insee": "31169", + "nom_de_la_commune": "ESCALQUENS", + "code_postal": "31750", + "coordonnees_gps": [ + 43.5209125935, + 1.55243226997 + ], + "libelle_d_acheminement": "ESCALQUENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55243226997, + 43.5209125935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e075c7f02b85e9efb78509596353d21943fc4ab", + "fields": { + "code_commune_insee": "31176", + "nom_de_la_commune": "ESTENOS", + "code_postal": "31440", + "coordonnees_gps": [ + 42.9408620061, + 0.635528965839 + ], + "libelle_d_acheminement": "ESTENOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.635528965839, + 42.9408620061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ae69498efcdd15716dc21964bd3f05ab34028b0", + "fields": { + "code_commune_insee": "31195", + "nom_de_la_commune": "FRANCAZAL", + "code_postal": "31260", + "coordonnees_gps": [ + 43.008007201, + 0.99694808241 + ], + "libelle_d_acheminement": "FRANCAZAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99694808241, + 43.008007201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3457cf03c07ec05cde37a9b195c3266d58f5580", + "fields": { + "code_commune_insee": "31198", + "nom_de_la_commune": "LE FRECHET", + "code_postal": "31360", + "coordonnees_gps": [ + 43.1898575519, + 0.931806959516 + ], + "libelle_d_acheminement": "LE FRECHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.931806959516, + 43.1898575519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "104562530d15118ad802d6c94853b992cfec2335", + "fields": { + "code_commune_insee": "31200", + "nom_de_la_commune": "FRONTIGNAN DE COMMINGES", + "code_postal": "31510", + "coordonnees_gps": [ + 42.9631400152, + 0.665864279596 + ], + "libelle_d_acheminement": "FRONTIGNAN DE COMMINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.665864279596, + 42.9631400152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31cd10d1d690d15c5195bcedb030fe9ec589503d", + "fields": { + "code_commune_insee": "31201", + "nom_de_la_commune": "FRONTIGNAN SAVES", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3992758372, + 0.912650779846 + ], + "libelle_d_acheminement": "FRONTIGNAN SAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.912650779846, + 43.3992758372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16c3781c41ed1b5037aa62317fcccb7b41d36c32", + "fields": { + "code_commune_insee": "31202", + "nom_de_la_commune": "FRONTON", + "code_postal": "31620", + "coordonnees_gps": [ + 43.8517933672, + 1.37926505581 + ], + "libelle_d_acheminement": "FRONTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37926505581, + 43.8517933672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "067a929839e23bbaff2ca183a94a86b439169ee6", + "fields": { + "code_commune_insee": "31205", + "nom_de_la_commune": "GAGNAC SUR GARONNE", + "code_postal": "31150", + "coordonnees_gps": [ + 43.7075932093, + 1.36359468155 + ], + "libelle_d_acheminement": "GAGNAC SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36359468155, + 43.7075932093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f69c36a0a9a342389f18f1db376450651749d02a", + "fields": { + "code_commune_insee": "31221", + "nom_de_la_commune": "GOUAUX DE LARBOUST", + "code_postal": "31110", + "coordonnees_gps": [ + 42.7805722795, + 0.477306280003 + ], + "libelle_d_acheminement": "GOUAUX DE LARBOUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.477306280003, + 42.7805722795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed09e727103f928f9f48a19de40d2568948aea2a", + "fields": { + "code_commune_insee": "31226", + "nom_de_la_commune": "GOUZENS", + "code_postal": "31310", + "coordonnees_gps": [ + 43.1791349745, + 1.18187382693 + ], + "libelle_d_acheminement": "GOUZENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18187382693, + 43.1791349745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f512d50bcce3df01ab1e3a8af636517f557d30a9", + "fields": { + "code_commune_insee": "31230", + "nom_de_la_commune": "GRATENTOUR", + "code_postal": "31150", + "coordonnees_gps": [ + 43.7204638549, + 1.43434867607 + ], + "libelle_d_acheminement": "GRATENTOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43434867607, + 43.7204638549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee86fa6cd0cd8770fe22abad58d4327c5d98e671", + "fields": { + "code_commune_insee": "31239", + "nom_de_la_commune": "L ISLE EN DODON", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3811500613, + 0.83387534106 + ], + "libelle_d_acheminement": "L ISLE EN DODON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.83387534106, + 43.3811500613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5439345034a0e141332f9816b170909c0b16b3b9", + "fields": { + "code_commune_insee": "31255", + "nom_de_la_commune": "LABROQUERE", + "code_postal": "31510", + "coordonnees_gps": [ + 43.0422164523, + 0.591584694208 + ], + "libelle_d_acheminement": "LABROQUERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.591584694208, + 43.0422164523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1ed7f351354ec48b7e996e915901672adb3fd90", + "fields": { + "code_commune_insee": "31258", + "nom_de_la_commune": "LACAUGNE", + "code_postal": "31390", + "coordonnees_gps": [ + 43.2812784348, + 1.28249585607 + ], + "libelle_d_acheminement": "LACAUGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28249585607, + 43.2812784348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9c670d5c81ddade21633f2bf5e189019e897eb8", + "fields": { + "code_commune_insee": "31263", + "nom_de_la_commune": "LAGARDELLE SUR LEZE", + "code_postal": "31870", + "coordonnees_gps": [ + 43.4146075746, + 1.39259285705 + ], + "libelle_d_acheminement": "LAGARDELLE SUR LEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39259285705, + 43.4146075746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3923258f9d7893f4f20ded473f9b2c22f363200c", + "fields": { + "code_commune_insee": "31266", + "nom_de_la_commune": "LAHAGE", + "code_postal": "31370", + "coordonnees_gps": [ + 43.4402741195, + 1.06577822679 + ], + "libelle_d_acheminement": "LAHAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06577822679, + 43.4402741195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ce4a57a9d8f1c7fbc8185e1369bc76bc432ae37", + "fields": { + "code_commune_insee": "31271", + "nom_de_la_commune": "LANTA", + "code_postal": "31570", + "coordonnees_gps": [ + 43.561512681, + 1.66802980553 + ], + "libelle_d_acheminement": "LANTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66802980553, + 43.561512681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdfb9a6206e32ca2614928962b67153b37549ed4", + "fields": { + "code_commune_insee": "31275", + "nom_de_la_commune": "LAREOLE", + "code_postal": "31480", + "coordonnees_gps": [ + 43.7417793374, + 1.02424859431 + ], + "libelle_d_acheminement": "LAREOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02424859431, + 43.7417793374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b2de0ea30d48edd59f80f18c126240d2080a842", + "fields": { + "ligne_5": "LASSERRE", + "code_commune_insee": "31277", + "libelle_d_acheminement": "LASSERRE PRADERE", + "code_postal": "31530", + "nom_de_la_commune": "LASSERRE PRADERE", + "coordonnees_gps": [ + 43.6358181095, + 1.19125199564 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19125199564, + 43.6358181095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9c2b3fe67fee88fec38ba24fc480244d20e5ac0", + "fields": { + "code_commune_insee": "31285", + "nom_de_la_commune": "LAVALETTE", + "code_postal": "31590", + "coordonnees_gps": [ + 43.6393734438, + 1.59168661555 + ], + "libelle_d_acheminement": "LAVALETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59168661555, + 43.6393734438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7bb8f1544d3b00679516eea281581595956e046", + "fields": { + "code_commune_insee": "31290", + "nom_de_la_commune": "LEGE", + "code_postal": "31440", + "coordonnees_gps": [ + 42.8790994163, + 0.599847832302 + ], + "libelle_d_acheminement": "LEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.599847832302, + 42.8790994163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab020e3cfa3ad2dc02a6fcc4d0b6f16f7e727d13", + "fields": { + "code_commune_insee": "31295", + "nom_de_la_commune": "LESPUGUE", + "code_postal": "31350", + "coordonnees_gps": [ + 43.229615539, + 0.666919835845 + ], + "libelle_d_acheminement": "LESPUGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.666919835845, + 43.229615539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c05a304b96070a62b6255d46359e28d757abc540", + "fields": { + "code_commune_insee": "31299", + "nom_de_la_commune": "LHERM", + "code_postal": "31600", + "coordonnees_gps": [ + 43.4293377218, + 1.22334236594 + ], + "libelle_d_acheminement": "LHERM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22334236594, + 43.4293377218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf21c13471d1f0b7b4cd4e29a9c0399ae1456f45", + "fields": { + "code_commune_insee": "31303", + "nom_de_la_commune": "LONGAGES", + "code_postal": "31410", + "coordonnees_gps": [ + 43.3574229585, + 1.21425495972 + ], + "libelle_d_acheminement": "LONGAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21425495972, + 43.3574229585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49fb6912a5b456e8dda66957db520dae77d38fd0", + "fields": { + "code_commune_insee": "31308", + "nom_de_la_commune": "LUSCAN", + "code_postal": "31510", + "coordonnees_gps": [ + 43.0133226155, + 0.626944464988 + ], + "libelle_d_acheminement": "LUSCAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.626944464988, + 43.0133226155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40e016f8538a0ef96250b459bd49c6f9fa8e024c", + "fields": { + "code_commune_insee": "31309", + "nom_de_la_commune": "LUSSAN ADEILHAC", + "code_postal": "31430", + "coordonnees_gps": [ + 43.2961912719, + 0.951967921196 + ], + "libelle_d_acheminement": "LUSSAN ADEILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.951967921196, + 43.2961912719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f955dad0fa09ee97278b525f38444926d69fb66", + "fields": { + "code_commune_insee": "31314", + "nom_de_la_commune": "MANCIOUX", + "code_postal": "31360", + "coordonnees_gps": [ + 43.1668578934, + 0.941756954338 + ], + "libelle_d_acheminement": "MANCIOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.941756954338, + 43.1668578934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab042b88701ef7b906b253bb9be9e172d0d29313", + "fields": { + "code_commune_insee": "31316", + "nom_de_la_commune": "MARIGNAC", + "code_postal": "31440", + "coordonnees_gps": [ + 42.8948589478, + 0.666041142898 + ], + "libelle_d_acheminement": "MARIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.666041142898, + 42.8948589478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4a2a010812aed0d14aa5987161005b4126a7169", + "fields": { + "code_commune_insee": "31318", + "nom_de_la_commune": "MARIGNAC LASPEYRES", + "code_postal": "31220", + "coordonnees_gps": [ + 43.2127779264, + 0.961748306481 + ], + "libelle_d_acheminement": "MARIGNAC LASPEYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.961748306481, + 43.2127779264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efed9c65628d643f01396dbaf34195386064746b", + "fields": { + "code_commune_insee": "31323", + "nom_de_la_commune": "MARTRES DE RIVIERE", + "code_postal": "31210", + "coordonnees_gps": [ + 43.0829629746, + 0.64483561143 + ], + "libelle_d_acheminement": "MARTRES DE RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64483561143, + 43.0829629746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3384d07c0bae9c6ec94edf71908ad9a422755a4f", + "fields": { + "code_commune_insee": "31324", + "nom_de_la_commune": "MARTRES TOLOSANE", + "code_postal": "31220", + "coordonnees_gps": [ + 43.2020024621, + 1.00117227256 + ], + "libelle_d_acheminement": "MARTRES TOLOSANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00117227256, + 43.2020024621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a6b69004334add05eb0768a6653b19b530d11e4", + "fields": { + "code_commune_insee": "31327", + "nom_de_la_commune": "MAURAN", + "code_postal": "31220", + "coordonnees_gps": [ + 43.1846795745, + 1.02272813927 + ], + "libelle_d_acheminement": "MAURAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02272813927, + 43.1846795745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b9de7ff77a9f5ee9b2bdb327cf6b8dc718fb119", + "fields": { + "code_commune_insee": "31332", + "nom_de_la_commune": "MAUVAISIN", + "code_postal": "31190", + "coordonnees_gps": [ + 43.3594273416, + 1.53862839097 + ], + "libelle_d_acheminement": "MAUVAISIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53862839097, + 43.3594273416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f4fb5c39a8fc7649bc60c0b8df4e323f12a55b3", + "fields": { + "code_commune_insee": "31349", + "nom_de_la_commune": "MONDAVEZAN", + "code_postal": "31220", + "coordonnees_gps": [ + 43.2413424227, + 1.04245489237 + ], + "libelle_d_acheminement": "MONDAVEZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04245489237, + 43.2413424227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9eabd06b7243c219d1203b6d8948497f0c2eb29a", + "fields": { + "code_commune_insee": "31351", + "nom_de_la_commune": "MONDONVILLE", + "code_postal": "31700", + "coordonnees_gps": [ + 43.6630816074, + 1.28127988411 + ], + "libelle_d_acheminement": "MONDONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28127988411, + 43.6630816074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6d000be876aba5de25f9a676bbe6dec7e80178e", + "fields": { + "code_commune_insee": "31365", + "nom_de_la_commune": "MONTBRUN BOCAGE", + "code_postal": "31310", + "coordonnees_gps": [ + 43.1195780479, + 1.24932023681 + ], + "libelle_d_acheminement": "MONTBRUN BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24932023681, + 43.1195780479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d036e03c6512f895df63aa01aa1cf94a99a9ab1", + "fields": { + "code_commune_insee": "31367", + "nom_de_la_commune": "MONTCLAR DE COMMINGES", + "code_postal": "31220", + "coordonnees_gps": [ + 43.1709624845, + 1.02937210204 + ], + "libelle_d_acheminement": "MONTCLAR DE COMMINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02937210204, + 43.1709624845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b79f6d9fba4543553949fbb1893bae28a9907dec", + "fields": { + "code_commune_insee": "31372", + "nom_de_la_commune": "MONTESPAN", + "code_postal": "31260", + "coordonnees_gps": [ + 43.085626713, + 0.859781561724 + ], + "libelle_d_acheminement": "MONTESPAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.859781561724, + 43.085626713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99531922ec29cca7764dbee2fdef84d3a2fb0760", + "fields": { + "code_commune_insee": "31379", + "nom_de_la_commune": "MONTGAZIN", + "code_postal": "31410", + "coordonnees_gps": [ + 43.3054212469, + 1.30333898897 + ], + "libelle_d_acheminement": "MONTGAZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30333898897, + 43.3054212469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dabb48ccb500527ff2b3e185cb4977d06a984564", + "fields": { + "code_commune_insee": "31383", + "nom_de_la_commune": "MONTJOIRE", + "code_postal": "31380", + "coordonnees_gps": [ + 43.7787304929, + 1.52666645507 + ], + "libelle_d_acheminement": "MONTJOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52666645507, + 43.7787304929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "207328921d8f91b8eedd50d63343a9f7170438ef", + "fields": { + "code_commune_insee": "31388", + "nom_de_la_commune": "MONTPITOL", + "code_postal": "31380", + "coordonnees_gps": [ + 43.7047230773, + 1.64247367519 + ], + "libelle_d_acheminement": "MONTPITOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64247367519, + 43.7047230773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e81f27e903618ab2d1fc4f64d30b9ece47607092", + "fields": { + "code_commune_insee": "31393", + "nom_de_la_commune": "MOURVILLES HAUTES", + "code_postal": "31540", + "coordonnees_gps": [ + 43.4244396823, + 1.81979265347 + ], + "libelle_d_acheminement": "MOURVILLES HAUTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81979265347, + 43.4244396823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e9a795f96c82d69526864fe01487d85f486cd3a", + "fields": { + "code_commune_insee": "31400", + "nom_de_la_commune": "NOGARET", + "code_postal": "31540", + "coordonnees_gps": [ + 43.4925754832, + 1.93375847468 + ], + "libelle_d_acheminement": "NOGARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93375847468, + 43.4925754832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f09a875af7cf422a6029a009608b0fb28510c55", + "fields": { + "code_commune_insee": "31401", + "nom_de_la_commune": "NOUEILLES", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4150222311, + 1.52583069326 + ], + "libelle_d_acheminement": "NOUEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52583069326, + 43.4150222311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "164f301b12f042d3e87b70feda2c9fd8bdc08cff", + "fields": { + "code_commune_insee": "31405", + "nom_de_la_commune": "ORE", + "code_postal": "31510", + "coordonnees_gps": [ + 42.9736103236, + 0.646200614078 + ], + "libelle_d_acheminement": "ORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.646200614078, + 42.9736103236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34918c2c6b8e081f81b466479b31f45ab460790a", + "fields": { + "code_commune_insee": "31407", + "nom_de_la_commune": "PAULHAC", + "code_postal": "31380", + "coordonnees_gps": [ + 43.7542223312, + 1.55478228901 + ], + "libelle_d_acheminement": "PAULHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55478228901, + 43.7542223312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c21e4291cca6aaea2ac971a68c1cc7a58bd22bb", + "fields": { + "code_commune_insee": "31414", + "nom_de_la_commune": "PEYRISSAS", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2881718442, + 0.911650250915 + ], + "libelle_d_acheminement": "PEYRISSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.911650250915, + 43.2881718442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "070ed29052b190271537e9fce224ef5962569d07", + "fields": { + "code_commune_insee": "31415", + "nom_de_la_commune": "PEYROUZET", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2079044252, + 0.832151962989 + ], + "libelle_d_acheminement": "PEYROUZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.832151962989, + 43.2079044252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e50db144e4667c2df56e0f5807b58341e85fcaf3", + "fields": { + "code_commune_insee": "31422", + "nom_de_la_commune": "PLAGNE", + "code_postal": "31220", + "coordonnees_gps": [ + 43.1609212435, + 1.0589815244 + ], + "libelle_d_acheminement": "PLAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0589815244, + 43.1609212435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d21703b2675f555f151375a0b4d7c14d3c85cdf", + "fields": { + "code_commune_insee": "31426", + "nom_de_la_commune": "POINTIS DE RIVIERE", + "code_postal": "31210", + "coordonnees_gps": [ + 43.0908571473, + 0.625846864385 + ], + "libelle_d_acheminement": "POINTIS DE RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.625846864385, + 43.0908571473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93caa6ae43dbaa1aa72d872fa6d9ebcdb0c10df5", + "fields": { + "code_commune_insee": "31428", + "nom_de_la_commune": "POLASTRON", + "code_postal": "31430", + "coordonnees_gps": [ + 43.3196170581, + 0.951660805068 + ], + "libelle_d_acheminement": "POLASTRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.951660805068, + 43.3196170581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b29f946a70242f95f4e3ae825e5e974c3ed7201f", + "fields": { + "code_commune_insee": "31434", + "nom_de_la_commune": "POUBEAU", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8277751816, + 0.492783211671 + ], + "libelle_d_acheminement": "POUBEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.492783211671, + 42.8277751816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d824bb1da05a86399838ce2c10499f5a3da87a65", + "fields": { + "code_commune_insee": "31435", + "nom_de_la_commune": "POUCHARRAMET", + "code_postal": "31370", + "coordonnees_gps": [ + 43.423058709, + 1.16684453964 + ], + "libelle_d_acheminement": "POUCHARRAMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16684453964, + 43.423058709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33b4e400b07b9153ad9ee21e1d98dcb5696db7ae", + "fields": { + "code_commune_insee": "31444", + "nom_de_la_commune": "PUYSSEGUR", + "code_postal": "31480", + "coordonnees_gps": [ + 43.7519671546, + 1.06615759128 + ], + "libelle_d_acheminement": "PUYSSEGUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06615759128, + 43.7519671546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83fcda2ab75a6cd164617c83da352ce7f990e69b", + "fields": { + "code_commune_insee": "31445", + "nom_de_la_commune": "QUINT FONSEGRIVES", + "code_postal": "31130", + "coordonnees_gps": [ + 43.5815682751, + 1.54212357917 + ], + "libelle_d_acheminement": "QUINT FONSEGRIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54212357917, + 43.5815682751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8aa438c6c2fd8f45c533fbb28c826a3639648b98", + "fields": { + "code_commune_insee": "31447", + "nom_de_la_commune": "RAZECUEILLE", + "code_postal": "31160", + "coordonnees_gps": [ + 42.9630940421, + 0.81413604771 + ], + "libelle_d_acheminement": "RAZECUEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81413604771, + 42.9630940421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51c89c76844829de9f8ebcccd7ad8d44cf6a3e55", + "fields": { + "code_commune_insee": "31455", + "nom_de_la_commune": "RIEUX VOLVESTRE", + "code_postal": "31310", + "coordonnees_gps": [ + 43.2555733864, + 1.20637769393 + ], + "libelle_d_acheminement": "RIEUX VOLVESTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20637769393, + 43.2555733864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87aae0f412e1e43c4c437df44397cfbd82a8c2f1", + "fields": { + "code_commune_insee": "31459", + "nom_de_la_commune": "ROQUESERIERE", + "code_postal": "31380", + "coordonnees_gps": [ + 43.7337247412, + 1.63773402286 + ], + "libelle_d_acheminement": "ROQUESERIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63773402286, + 43.7337247412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "092c5ab6af18451614419f87be989dd173c00754", + "fields": { + "code_commune_insee": "31461", + "nom_de_la_commune": "ROUEDE", + "code_postal": "31160", + "coordonnees_gps": [ + 43.0564508263, + 0.882775908719 + ], + "libelle_d_acheminement": "ROUEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.882775908719, + 43.0564508263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3937cb0a255dad1a9932b34e9d2740bc9b5bffb7", + "fields": { + "code_commune_insee": "31464", + "nom_de_la_commune": "SABONNERES", + "code_postal": "31370", + "coordonnees_gps": [ + 43.4686663563, + 1.05725626778 + ], + "libelle_d_acheminement": "SABONNERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05725626778, + 43.4686663563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "856afdd06919c091745905804410c72ef7af1474", + "fields": { + "code_commune_insee": "31465", + "nom_de_la_commune": "SACCOURVIELLE", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8184881907, + 0.568108332356 + ], + "libelle_d_acheminement": "SACCOURVIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.568108332356, + 42.8184881907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93fadf5197032c317b974576e0e75f40e70ebd9c", + "fields": { + "code_commune_insee": "31472", + "nom_de_la_commune": "ST BERTRAND DE COMMINGES", + "code_postal": "31510", + "coordonnees_gps": [ + 43.0239495224, + 0.552413106275 + ], + "libelle_d_acheminement": "ST BERTRAND DE COMMINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.552413106275, + 43.0239495224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45e8083ae0f9085eefe7163f366732cef3035626", + "fields": { + "code_commune_insee": "31473", + "nom_de_la_commune": "ST CEZERT", + "code_postal": "31330", + "coordonnees_gps": [ + 43.7809324067, + 1.19152811145 + ], + "libelle_d_acheminement": "ST CEZERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19152811145, + 43.7809324067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6172d1406a80a618fb34e04689654fa66d7a6060", + "fields": { + "code_commune_insee": "31474", + "nom_de_la_commune": "ST CHRISTAUD", + "code_postal": "31310", + "coordonnees_gps": [ + 43.1924235552, + 1.12803637637 + ], + "libelle_d_acheminement": "ST CHRISTAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12803637637, + 43.1924235552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feac8f7a83ef97e404c2ea55a50161d0c849f95b", + "fields": { + "code_commune_insee": "31485", + "nom_de_la_commune": "ST GERMIER", + "code_postal": "31290", + "coordonnees_gps": [ + 43.4690645012, + 1.7252032772 + ], + "libelle_d_acheminement": "ST GERMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7252032772, + 43.4690645012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4efe19ce6adb0b957f7159ab585f5146164b223a", + "fields": { + "code_commune_insee": "31486", + "nom_de_la_commune": "ST HILAIRE", + "code_postal": "31410", + "coordonnees_gps": [ + 43.4206504787, + 1.26875220211 + ], + "libelle_d_acheminement": "ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26875220211, + 43.4206504787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "743af102085c8935408d9ba7f31ec3435d4680f3", + "fields": { + "code_commune_insee": "31492", + "nom_de_la_commune": "ST JULIEN SUR GARONNE", + "code_postal": "31220", + "coordonnees_gps": [ + 43.2495379286, + 1.14676806452 + ], + "libelle_d_acheminement": "ST JULIEN SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14676806452, + 43.2495379286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e658933e2635dbf036c9a1ccd515e75c399dd8e1", + "fields": { + "code_commune_insee": "31500", + "nom_de_la_commune": "ST MAMET", + "code_postal": "31110", + "coordonnees_gps": [ + 42.7721497785, + 0.630003335404 + ], + "libelle_d_acheminement": "ST MAMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.630003335404, + 42.7721497785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f40c421fcceb9e9317ef7899689f8ff93a37e2f", + "fields": { + "code_commune_insee": "31502", + "nom_de_la_commune": "ST MARCET", + "code_postal": "31800", + "coordonnees_gps": [ + 43.1967853101, + 0.745570888474 + ], + "libelle_d_acheminement": "ST MARCET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.745570888474, + 43.1967853101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5069ee3a325d794bd7208de0480c98c41a84c69", + "fields": { + "code_commune_insee": "31505", + "nom_de_la_commune": "ST MICHEL", + "code_postal": "31220", + "coordonnees_gps": [ + 43.1590661919, + 1.08578310989 + ], + "libelle_d_acheminement": "ST MICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08578310989, + 43.1590661919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf787245d8e13b3bc612cde0cb6505f78aa615c8", + "fields": { + "code_commune_insee": "31512", + "nom_de_la_commune": "ST PIERRE DE LAGES", + "code_postal": "31570", + "coordonnees_gps": [ + 43.5681959478, + 1.62684494584 + ], + "libelle_d_acheminement": "ST PIERRE DE LAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62684494584, + 43.5681959478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e361b43ab69cc595fef156a449e156be13e3f14c", + "fields": { + "code_commune_insee": "31516", + "nom_de_la_commune": "ST SAUVEUR", + "code_postal": "31790", + "coordonnees_gps": [ + 43.7513409309, + 1.3957911718 + ], + "libelle_d_acheminement": "ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3957911718, + 43.7513409309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ce58f7db642ac21c8318b3bff1a81d19829c1fa", + "fields": { + "code_commune_insee": "31530", + "nom_de_la_commune": "SANA", + "code_postal": "31220", + "coordonnees_gps": [ + 43.2274229505, + 1.01117765255 + ], + "libelle_d_acheminement": "SANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01117765255, + 43.2274229505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbf8d022edd08903ae0fbc00ded5964cd585d3a9", + "fields": { + "code_commune_insee": "31532", + "nom_de_la_commune": "SARREMEZAN", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2114854426, + 0.662154429607 + ], + "libelle_d_acheminement": "SARREMEZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.662154429607, + 43.2114854426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71575e79d52fb018911ddf65181c94ff4935dd9a", + "fields": { + "code_commune_insee": "31534", + "nom_de_la_commune": "SAUSSENS", + "code_postal": "31460", + "coordonnees_gps": [ + 43.590855656, + 1.72440998002 + ], + "libelle_d_acheminement": "SAUSSENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72440998002, + 43.590855656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4a1113bd6b23bfd914d375f85dd66afa3b54be2", + "fields": { + "code_commune_insee": "31538", + "nom_de_la_commune": "SAVERES", + "code_postal": "31370", + "coordonnees_gps": [ + 43.3725748924, + 1.10003164798 + ], + "libelle_d_acheminement": "SAVERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10003164798, + 43.3725748924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c7991b253e9a707f6b176658728b2f46f666d77", + "fields": { + "code_commune_insee": "31539", + "nom_de_la_commune": "SEDEILHAC", + "code_postal": "31580", + "coordonnees_gps": [ + 43.1477203277, + 0.542746469406 + ], + "libelle_d_acheminement": "SEDEILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.542746469406, + 43.1477203277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cebffa6b2c1c8ac936144db3689f71c351ad8b90", + "fields": { + "code_commune_insee": "31542", + "nom_de_la_commune": "SEILHAN", + "code_postal": "31510", + "coordonnees_gps": [ + 43.0527421754, + 0.576818914765 + ], + "libelle_d_acheminement": "SEILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.576818914765, + 43.0527421754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89f80b740ed17afb11711de58e7869b20b15fd3a", + "fields": { + "code_commune_insee": "31547", + "nom_de_la_commune": "SEYSSES", + "code_postal": "31600", + "coordonnees_gps": [ + 43.4988915794, + 1.28690575634 + ], + "libelle_d_acheminement": "SEYSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28690575634, + 43.4988915794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb618783ff7e89c5482cc4aeb83f46eca8c2b95b", + "fields": { + "code_commune_insee": "31550", + "nom_de_la_commune": "SOUEICH", + "code_postal": "31160", + "coordonnees_gps": [ + 43.0509238346, + 0.782447684283 + ], + "libelle_d_acheminement": "SOUEICH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.782447684283, + 43.0509238346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd620e0724bde8905b32ceff808a9b4f7501802c", + "fields": { + "code_commune_insee": "31552", + "nom_de_la_commune": "TERREBASSE", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2393487064, + 0.972479677167 + ], + "libelle_d_acheminement": "TERREBASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.972479677167, + 43.2393487064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a73dc4f4397456080a07bf1b4f0a0bd99d5c679", + "fields": { + "code_commune_insee": "31553", + "nom_de_la_commune": "THIL", + "code_postal": "31530", + "coordonnees_gps": [ + 43.710151594, + 1.15302056631 + ], + "libelle_d_acheminement": "THIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15302056631, + 43.710151594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deedd6c3dd1a127c5b8a74779ce81b021e8dadb9", + "fields": { + "code_commune_insee": "31555", + "nom_de_la_commune": "TOULOUSE", + "code_postal": "31000", + "coordonnees_gps": [ + 43.5963814303, + 1.43167293364 + ], + "libelle_d_acheminement": "TOULOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43167293364, + 43.5963814303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9028bd0ab45a55e475aea975053524a0fb07fa94", + "fields": { + "code_commune_insee": "31556", + "nom_de_la_commune": "LES TOURREILLES", + "code_postal": "31210", + "coordonnees_gps": [ + 43.1120356478, + 0.549865240853 + ], + "libelle_d_acheminement": "LES TOURREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.549865240853, + 43.1120356478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8676aab3e78c8d48150f402e769ee27f679c3b0", + "fields": { + "code_commune_insee": "31559", + "nom_de_la_commune": "TREBONS DE LUCHON", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8038266545, + 0.568978868015 + ], + "libelle_d_acheminement": "TREBONS DE LUCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.568978868015, + 42.8038266545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4ac3f9d264d362482ba6847fbaf0f1191e36629", + "fields": { + "code_commune_insee": "31561", + "nom_de_la_commune": "L UNION", + "code_postal": "31240", + "coordonnees_gps": [ + 43.6542470428, + 1.48394847329 + ], + "libelle_d_acheminement": "L UNION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48394847329, + 43.6542470428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c0460f39f77ab965cbee55d2c9ebeac3b25bbfd", + "fields": { + "code_commune_insee": "31562", + "nom_de_la_commune": "URAU", + "code_postal": "31260", + "coordonnees_gps": [ + 43.0005006675, + 0.955560343394 + ], + "libelle_d_acheminement": "URAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.955560343394, + 43.0005006675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2484f6010f35328b07eafb7d380b4431d1bed1a1", + "fields": { + "code_commune_insee": "31566", + "nom_de_la_commune": "VALLEGUE", + "code_postal": "31290", + "coordonnees_gps": [ + 43.4256721332, + 1.75444745111 + ], + "libelle_d_acheminement": "VALLEGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75444745111, + 43.4256721332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "603e354e3d6c83abc02d0b7e2c7cb8ea4d224555", + "fields": { + "code_commune_insee": "31573", + "nom_de_la_commune": "VERFEIL", + "code_postal": "31590", + "coordonnees_gps": [ + 43.6637744377, + 1.67738560148 + ], + "libelle_d_acheminement": "VERFEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67738560148, + 43.6637744377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32e1bce21c4868524e41918c5f18c242193d8301", + "fields": { + "code_commune_insee": "31574", + "nom_de_la_commune": "VERNET", + "code_postal": "31810", + "coordonnees_gps": [ + 43.4279795368, + 1.42137431875 + ], + "libelle_d_acheminement": "VERNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42137431875, + 43.4279795368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83daddc01a0278ee6186c6270070becdbb7ccf18", + "fields": { + "code_commune_insee": "31575", + "nom_de_la_commune": "VIEILLE TOULOUSE", + "code_postal": "31320", + "coordonnees_gps": [ + 43.5275480052, + 1.43833639289 + ], + "libelle_d_acheminement": "VIEILLE TOULOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43833639289, + 43.5275480052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90f1309a6d9120a435d22a989f731768c58e81db", + "fields": { + "code_commune_insee": "31579", + "nom_de_la_commune": "VILLARIES", + "code_postal": "31380", + "coordonnees_gps": [ + 43.7508797408, + 1.49097697457 + ], + "libelle_d_acheminement": "VILLARIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49097697457, + 43.7508797408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deb5706241118393da6f3b84aaedf4f5cab0ddc8", + "fields": { + "code_commune_insee": "31586", + "nom_de_la_commune": "VILLENEUVE LECUSSAN", + "code_postal": "31580", + "coordonnees_gps": [ + 43.1343250681, + 0.485143916946 + ], + "libelle_d_acheminement": "VILLENEUVE LECUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.485143916946, + 43.1343250681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7b29689aae7110a9ddbb6a28d0862b23f146e1f", + "fields": { + "code_commune_insee": "31589", + "nom_de_la_commune": "VILLENOUVELLE", + "code_postal": "31290", + "coordonnees_gps": [ + 43.4379199394, + 1.66303514968 + ], + "libelle_d_acheminement": "VILLENOUVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66303514968, + 43.4379199394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a2a6f0730a5441130bb88aad9d34df46db7daa9", + "fields": { + "code_commune_insee": "32003", + "nom_de_la_commune": "ANTRAS", + "code_postal": "32360", + "coordonnees_gps": [ + 43.7297815118, + 0.444047087158 + ], + "libelle_d_acheminement": "ANTRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.444047087158, + 43.7297815118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edabe3a154dcab8aced483c044418c80cdc521c7", + "fields": { + "code_commune_insee": "32009", + "nom_de_la_commune": "ARMOUS ET CAU", + "code_postal": "32230", + "coordonnees_gps": [ + 43.5727169655, + 0.187336904275 + ], + "libelle_d_acheminement": "ARMOUS ET CAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.187336904275, + 43.5727169655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53027f25d297941ce3c34193719b76828d7752cc", + "fields": { + "code_commune_insee": "32014", + "nom_de_la_commune": "AUGNAX", + "code_postal": "32120", + "coordonnees_gps": [ + 43.7236889467, + 0.773788884179 + ], + "libelle_d_acheminement": "AUGNAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.773788884179, + 43.7236889467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57d4fedb941c616ede5895a6ee5f4c1a2f1df75d", + "fields": { + "code_commune_insee": "32020", + "nom_de_la_commune": "AUX AUSSAT", + "code_postal": "32170", + "coordonnees_gps": [ + 43.4412432224, + 0.26287182015 + ], + "libelle_d_acheminement": "AUX AUSSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.26287182015, + 43.4412432224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7657f3efa2c6e6e2f25ee2f395a71fb4b7fd1953", + "fields": { + "code_commune_insee": "32025", + "nom_de_la_commune": "AYZIEU", + "code_postal": "32800", + "coordonnees_gps": [ + 43.8583294171, + -0.0256162050251 + ], + "libelle_d_acheminement": "AYZIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0256162050251, + 43.8583294171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31c5a7d75e19d12b7864f49cca35c6e4da2fe939", + "fields": { + "code_commune_insee": "32029", + "nom_de_la_commune": "BARRAN", + "code_postal": "32350", + "coordonnees_gps": [ + 43.6220194252, + 0.448452323881 + ], + "libelle_d_acheminement": "BARRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.448452323881, + 43.6220194252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32d814e51cf074bb52370cb02cb1b90b745dee42", + "fields": { + "code_commune_insee": "32033", + "nom_de_la_commune": "BAZIAN", + "code_postal": "32320", + "coordonnees_gps": [ + 43.6685826026, + 0.317017713446 + ], + "libelle_d_acheminement": "BAZIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.317017713446, + 43.6685826026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24a7cd20420625c2ce97d79cf36aebcc07ab9ae4", + "fields": { + "code_commune_insee": "32034", + "nom_de_la_commune": "BAZUGUES", + "code_postal": "32170", + "coordonnees_gps": [ + 43.4509092165, + 0.34216662442 + ], + "libelle_d_acheminement": "BAZUGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.34216662442, + 43.4509092165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa3235d7d0e482f8f33357424c1280edf536f9f9", + "fields": { + "code_commune_insee": "32039", + "nom_de_la_commune": "BECCAS", + "code_postal": "32730", + "coordonnees_gps": [ + 43.4328989193, + 0.15708543205 + ], + "libelle_d_acheminement": "BECCAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15708543205, + 43.4328989193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "726613d7e4eb1388088ceb90f3743c91dd2612ee", + "fields": { + "code_commune_insee": "32043", + "nom_de_la_commune": "BELMONT", + "code_postal": "32190", + "coordonnees_gps": [ + 43.6885351272, + 0.247544246652 + ], + "libelle_d_acheminement": "BELMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.247544246652, + 43.6885351272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "737f8773e2c727a10f9fcb2ea9ba392cc2b442cc", + "fields": { + "code_commune_insee": "32047", + "nom_de_la_commune": "BERRAC", + "code_postal": "32480", + "coordonnees_gps": [ + 44.0109156469, + 0.549268735595 + ], + "libelle_d_acheminement": "BERRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.549268735595, + 44.0109156469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79fca181070c8ec093bd82d2a8e480e829dd10b0", + "fields": { + "code_commune_insee": "32052", + "nom_de_la_commune": "BEZOLLES", + "code_postal": "32310", + "coordonnees_gps": [ + 43.8198696672, + 0.349413989939 + ], + "libelle_d_acheminement": "BEZOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.349413989939, + 43.8198696672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87eeaa6243fa689492da506ec1c348c37de736b2", + "fields": { + "code_commune_insee": "32053", + "nom_de_la_commune": "BEZUES BAJON", + "code_postal": "32140", + "coordonnees_gps": [ + 43.3875155466, + 0.60816838305 + ], + "libelle_d_acheminement": "BEZUES BAJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60816838305, + 43.3875155466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e5e181bd71a4eb2dde17e081bc4bf3f012ffb2e", + "fields": { + "code_commune_insee": "32067", + "nom_de_la_commune": "CABAS LOUMASSES", + "code_postal": "32140", + "coordonnees_gps": [ + 43.3566837284, + 0.61023663197 + ], + "libelle_d_acheminement": "CABAS LOUMASSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.61023663197, + 43.3566837284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df98af7bc88c8c490681d20cfc2450d0517beb34", + "fields": { + "code_commune_insee": "32068", + "nom_de_la_commune": "CADEILHAN", + "code_postal": "32380", + "coordonnees_gps": [ + 43.8300563676, + 0.768446720469 + ], + "libelle_d_acheminement": "CADEILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.768446720469, + 43.8300563676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d054be73d4bcd0a0e8901a41580dd8c213d1e433", + "fields": { + "code_commune_insee": "32070", + "nom_de_la_commune": "CAHUZAC SUR ADOUR", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6366732371, + -0.0272638825571 + ], + "libelle_d_acheminement": "CAHUZAC SUR ADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0272638825571, + 43.6366732371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc623d721738ec021779d354d7de822cbe34483f", + "fields": { + "code_commune_insee": "32072", + "nom_de_la_commune": "CALLIAN", + "code_postal": "32190", + "coordonnees_gps": [ + 43.6320693939, + 0.264916820315 + ], + "libelle_d_acheminement": "CALLIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.264916820315, + 43.6320693939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aee28b8afcd966b23a7570f0759cf1a09752f42d", + "fields": { + "code_commune_insee": "32078", + "nom_de_la_commune": "CASTELNAU D ARBIEU", + "code_postal": "32500", + "coordonnees_gps": [ + 43.8845411475, + 0.690784048541 + ], + "libelle_d_acheminement": "CASTELNAU D ARBIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.690784048541, + 43.8845411475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8f0dc1d4d0fe8cd8b04094a23ef2ae4d8dcb64a", + "fields": { + "ligne_5": "CASTELNAU D AUZAN", + "code_commune_insee": "32079", + "libelle_d_acheminement": "CASTELNAU D AUZAN LABARRERE", + "code_postal": "32440", + "nom_de_la_commune": "CASTELNAU D AUZAN LABARRERE", + "coordonnees_gps": [ + 43.9434923568, + 0.10186302495 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10186302495, + 43.9434923568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7906d02ca58d4c36c4e58317b1c4c7da5b56ca17", + "fields": { + "code_commune_insee": "32082", + "nom_de_la_commune": "CASTERA LECTOUROIS", + "code_postal": "32700", + "coordonnees_gps": [ + 43.9893066009, + 0.611642801216 + ], + "libelle_d_acheminement": "CASTERA LECTOUROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.611642801216, + 43.9893066009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b769eb3b05925318c5e811e515618d2f1d34295", + "fields": { + "code_commune_insee": "32088", + "nom_de_la_commune": "CASTILLON DEBATS", + "code_postal": "32190", + "coordonnees_gps": [ + 43.7311656777, + 0.219388894885 + ], + "libelle_d_acheminement": "CASTILLON DEBATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.219388894885, + 43.7311656777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eafaf09dcbb5dcd67aa894b021d24b8d5be776c2", + "fields": { + "code_commune_insee": "32102", + "nom_de_la_commune": "CEZAN", + "code_postal": "32410", + "coordonnees_gps": [ + 43.803230782, + 0.49733255319 + ], + "libelle_d_acheminement": "CEZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49733255319, + 43.803230782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "587dcc8158159e0ff48a3ff7bff8b24664668d02", + "fields": { + "code_commune_insee": "32105", + "nom_de_la_commune": "CLERMONT SAVES", + "code_postal": "32600", + "coordonnees_gps": [ + 43.6225633147, + 1.01355219293 + ], + "libelle_d_acheminement": "CLERMONT SAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01355219293, + 43.6225633147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "266d53e25b32cb519e0d4cf4abd3e10432f116e5", + "fields": { + "code_commune_insee": "32123", + "nom_de_la_commune": "ESCORNEBOEUF", + "code_postal": "32200", + "coordonnees_gps": [ + 43.6455146384, + 0.911624650166 + ], + "libelle_d_acheminement": "ESCORNEBOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.911624650166, + 43.6455146384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99e9d48119c857f925b594cf62d4d234d795fadf", + "fields": { + "code_commune_insee": "32125", + "nom_de_la_commune": "ESPAS", + "code_postal": "32370", + "coordonnees_gps": [ + 43.7784871018, + 0.0948196132159 + ], + "libelle_d_acheminement": "ESPAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0948196132159, + 43.7784871018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc7c1770a31eb4c379ca97972458898b6dc8e815", + "fields": { + "code_commune_insee": "32132", + "nom_de_la_commune": "FLEURANCE", + "code_postal": "32500", + "coordonnees_gps": [ + 43.8402794076, + 0.64245586546 + ], + "libelle_d_acheminement": "FLEURANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64245586546, + 43.8402794076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d867a2ce509691497019fd1f4d0d000005badc8", + "fields": { + "code_commune_insee": "32135", + "nom_de_la_commune": "FUSTEROUAU", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6858644599, + 0.00594059782735 + ], + "libelle_d_acheminement": "FUSTEROUAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00594059782735, + 43.6858644599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "881127fbb9dd6bb9aed3f6583fe30292ef84a20e", + "fields": { + "code_commune_insee": "32136", + "nom_de_la_commune": "GALIAX", + "code_postal": "32160", + "coordonnees_gps": [ + 43.6125458385, + 0.0140366364635 + ], + "libelle_d_acheminement": "GALIAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0140366364635, + 43.6125458385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac13a6b757eaf25ce7d74e275be125ef390ada7b", + "fields": { + "code_commune_insee": "32141", + "nom_de_la_commune": "GAUJAN", + "code_postal": "32420", + "coordonnees_gps": [ + 43.4017018415, + 0.727114709215 + ], + "libelle_d_acheminement": "GAUJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.727114709215, + 43.4017018415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb7aba423d9d01ebdd3973ed589c519ce8046ee7", + "fields": { + "code_commune_insee": "32150", + "nom_de_la_commune": "GOUTZ", + "code_postal": "32500", + "coordonnees_gps": [ + 43.8098232902, + 0.732682485482 + ], + "libelle_d_acheminement": "GOUTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.732682485482, + 43.8098232902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44d31f3c013a1a5f85a514e2eb02cba05a3b1ff9", + "fields": { + "code_commune_insee": "32153", + "nom_de_la_commune": "HAULIES", + "code_postal": "32550", + "coordonnees_gps": [ + 43.5560180243, + 0.667262496662 + ], + "libelle_d_acheminement": "HAULIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.667262496662, + 43.5560180243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8220e2b5f7c084229fae8a2b2dc4c219e0d31e3", + "fields": { + "code_commune_insee": "32154", + "nom_de_la_commune": "HOMPS", + "code_postal": "32120", + "coordonnees_gps": [ + 43.8124316076, + 0.850387022005 + ], + "libelle_d_acheminement": "HOMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.850387022005, + 43.8124316076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c434819f6ef9a7e19a162a548d3bfae7b264b63", + "fields": { + "code_commune_insee": "32162", + "nom_de_la_commune": "JEGUN", + "code_postal": "32360", + "coordonnees_gps": [ + 43.7570244971, + 0.444927159956 + ], + "libelle_d_acheminement": "JEGUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.444927159956, + 43.7570244971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dfff25c58d0be0fe58cd0dc96615b4f62440dc5", + "fields": { + "code_commune_insee": "32163", + "nom_de_la_commune": "JU BELLOC", + "code_postal": "32160", + "coordonnees_gps": [ + 43.5761092184, + 0.0137806680297 + ], + "libelle_d_acheminement": "JU BELLOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0137806680297, + 43.5761092184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4844fa9b634419481d85fcf1c4a7a9c915af27c", + "fields": { + "code_commune_insee": "32166", + "nom_de_la_commune": "JUSTIAN", + "code_postal": "32190", + "coordonnees_gps": [ + 43.8146093181, + 0.30226086251 + ], + "libelle_d_acheminement": "JUSTIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30226086251, + 43.8146093181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89dd24634e79ac85c84cf48b73464e1b1cfc0efa", + "fields": { + "code_commune_insee": "32173", + "nom_de_la_commune": "LABRIHE", + "code_postal": "32120", + "coordonnees_gps": [ + 43.7634344802, + 0.881329271621 + ], + "libelle_d_acheminement": "LABRIHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.881329271621, + 43.7634344802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0f5e2122f1f88d5d51178e8fb0930df5a309469", + "fields": { + "code_commune_insee": "32177", + "nom_de_la_commune": "LAGARDE HACHAN", + "code_postal": "32300", + "coordonnees_gps": [ + 43.408755039, + 0.500171499744 + ], + "libelle_d_acheminement": "LAGARDE HACHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.500171499744, + 43.408755039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb7998df70bc07c3938d9d87c29466fdd836277e", + "fields": { + "code_commune_insee": "32184", + "nom_de_la_commune": "LALANNE", + "code_postal": "32500", + "coordonnees_gps": [ + 43.8047483333, + 0.675777091695 + ], + "libelle_d_acheminement": "LALANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.675777091695, + 43.8047483333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3256587089ea426ab912795de90893018116a95c", + "fields": { + "code_commune_insee": "32187", + "nom_de_la_commune": "LAMAZERE", + "code_postal": "32300", + "coordonnees_gps": [ + 43.5614869327, + 0.452273282674 + ], + "libelle_d_acheminement": "LAMAZERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.452273282674, + 43.5614869327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "723d10d1bcfb3a67edab114c83639e592383f5af", + "fields": { + "code_commune_insee": "32194", + "nom_de_la_commune": "LARRESSINGLE", + "code_postal": "32100", + "coordonnees_gps": [ + 43.9368488739, + 0.315969643669 + ], + "libelle_d_acheminement": "LARRESSINGLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.315969643669, + 43.9368488739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "933b244c4ea2d7598e18aa4639831412bc020612", + "fields": { + "code_commune_insee": "32219", + "nom_de_la_commune": "LUPIAC", + "code_postal": "32290", + "coordonnees_gps": [ + 43.6880530746, + 0.187356485668 + ], + "libelle_d_acheminement": "LUPIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.187356485668, + 43.6880530746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d490c7ec193fc85d71b9ad7bb1b6f78abfe35199", + "fields": { + "code_commune_insee": "32224", + "nom_de_la_commune": "MAIGNAUT TAUZIA", + "code_postal": "32310", + "coordonnees_gps": [ + 43.888506896, + 0.399761933288 + ], + "libelle_d_acheminement": "MAIGNAUT TAUZIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.399761933288, + 43.888506896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60b397d0ec14853df5e9206a2020f6d1fdbeddb5", + "fields": { + "code_commune_insee": "32230", + "nom_de_la_commune": "MANSENCOME", + "code_postal": "32310", + "coordonnees_gps": [ + 43.8747066073, + 0.330922370603 + ], + "libelle_d_acheminement": "MANSENCOME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.330922370603, + 43.8747066073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53392f5b4bec8bd8807b89551c35d114fc2081e4", + "fields": { + "code_commune_insee": "32233", + "nom_de_la_commune": "MARCIAC", + "code_postal": "32230", + "coordonnees_gps": [ + 43.521249291, + 0.156300856185 + ], + "libelle_d_acheminement": "MARCIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.156300856185, + 43.521249291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c437e4be394285aeeaaa7fa87aa23f86a7c82297", + "fields": { + "code_commune_insee": "32243", + "nom_de_la_commune": "MAULEON D ARMAGNAC", + "code_postal": "32240", + "coordonnees_gps": [ + 43.9063722257, + -0.153746683388 + ], + "libelle_d_acheminement": "MAULEON D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.153746683388, + 43.9063722257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60c7520632a3de0b2e0902d856736caf88003c4a", + "fields": { + "code_commune_insee": "32245", + "nom_de_la_commune": "MAUMUSSON LAGUIAN", + "code_postal": "32400", + "coordonnees_gps": [ + 43.608957239, + -0.0917440819432 + ], + "libelle_d_acheminement": "MAUMUSSON LAGUIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0917440819432, + 43.608957239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0f1bcf77d8f2c83bfc5f960e07f75489ba9d9be", + "fields": { + "code_commune_insee": "32247", + "nom_de_la_commune": "MAURENS", + "code_postal": "32200", + "coordonnees_gps": [ + 43.5849784687, + 0.916693670895 + ], + "libelle_d_acheminement": "MAURENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.916693670895, + 43.5849784687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ae4b2fc879f327eed0bce809c09bbfd7d8d94a5", + "fields": { + "code_commune_insee": "32254", + "nom_de_la_commune": "MIRAMONT D ASTARAC", + "code_postal": "32300", + "coordonnees_gps": [ + 43.5464182509, + 0.466668332736 + ], + "libelle_d_acheminement": "MIRAMONT D ASTARAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.466668332736, + 43.5464182509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1757d75ae06f996b383389f5e3a6e0fe04587b5f", + "fields": { + "code_commune_insee": "32258", + "nom_de_la_commune": "MIREPOIX", + "code_postal": "32390", + "coordonnees_gps": [ + 43.7442786824, + 0.670131677714 + ], + "libelle_d_acheminement": "MIREPOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.670131677714, + 43.7442786824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1770399988ba8e29e07c66c50a892c0ac949e536", + "fields": { + "code_commune_insee": "32262", + "nom_de_la_commune": "MONBRUN", + "code_postal": "32600", + "coordonnees_gps": [ + 43.6652583352, + 1.03071023904 + ], + "libelle_d_acheminement": "MONBRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03071023904, + 43.6652583352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35a0f9dc279d56746e374deafe4530075d4d888e", + "fields": { + "code_commune_insee": "32264", + "nom_de_la_commune": "MONCLAR", + "code_postal": "32150", + "coordonnees_gps": [ + 43.9137796457, + -0.100727155987 + ], + "libelle_d_acheminement": "MONCLAR D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.100727155987, + 43.9137796457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c6df0d281245a4965053c86c145a0689451453c", + "fields": { + "code_commune_insee": "32265", + "nom_de_la_commune": "MONCLAR SUR LOSSE", + "code_postal": "32300", + "coordonnees_gps": [ + 43.5233141934, + 0.341115496141 + ], + "libelle_d_acheminement": "MONCLAR SUR LOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.341115496141, + 43.5233141934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab3e3b0db3ff67fac52c0d93e841cb58f2cc3071", + "fields": { + "code_commune_insee": "32266", + "nom_de_la_commune": "MONCORNEIL GRAZAN", + "code_postal": "32260", + "coordonnees_gps": [ + 43.4518395248, + 0.649860096402 + ], + "libelle_d_acheminement": "MONCORNEIL GRAZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.649860096402, + 43.4518395248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29259256435c5746a01d7465843b9a531092a772", + "fields": { + "code_commune_insee": "32268", + "nom_de_la_commune": "MONFERRAN SAVES", + "code_postal": "32490", + "coordonnees_gps": [ + 43.6126690872, + 0.98080946812 + ], + "libelle_d_acheminement": "MONFERRAN SAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.98080946812, + 43.6126690872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c45601d3f1e252450e0f241c78ed22fcb58e3fc", + "fields": { + "code_commune_insee": "32270", + "nom_de_la_commune": "MONGAUSY", + "code_postal": "32220", + "coordonnees_gps": [ + 43.5015625507, + 0.811133329778 + ], + "libelle_d_acheminement": "MONGAUSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.811133329778, + 43.5015625507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b1c841f400591a0515ce532da6a4985d2e317eb", + "fields": { + "code_commune_insee": "32277", + "nom_de_la_commune": "MONTAMAT", + "code_postal": "32220", + "coordonnees_gps": [ + 43.4874990259, + 0.855058932049 + ], + "libelle_d_acheminement": "MONTAMAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.855058932049, + 43.4874990259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ccf5e655f3f11fb59dee1b561b3443e20d87c63", + "fields": { + "code_commune_insee": "32285", + "nom_de_la_commune": "MONTESQUIOU", + "code_postal": "32320", + "coordonnees_gps": [ + 43.5780506568, + 0.33230525991 + ], + "libelle_d_acheminement": "MONTESQUIOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33230525991, + 43.5780506568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e7e8a5f4044763ec582379512239ff849f2f98b", + "fields": { + "code_commune_insee": "32287", + "nom_de_la_commune": "MONTIES", + "code_postal": "32420", + "coordonnees_gps": [ + 43.3922616846, + 0.681459994602 + ], + "libelle_d_acheminement": "MONTIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.681459994602, + 43.3922616846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60b6fbafd95fc48b3f86c1540be4d71ce9923faf", + "fields": { + "code_commune_insee": "32288", + "nom_de_la_commune": "MONTIRON", + "code_postal": "32200", + "coordonnees_gps": [ + 43.5877135301, + 0.856761805705 + ], + "libelle_d_acheminement": "MONTIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.856761805705, + 43.5877135301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3786db7ade500efc74bae72bad96db4cf8ddada", + "fields": { + "code_commune_insee": "32289", + "nom_de_la_commune": "MONTPEZAT", + "code_postal": "32220", + "coordonnees_gps": [ + 43.3888998554, + 0.977281314352 + ], + "libelle_d_acheminement": "MONTPEZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.977281314352, + 43.3888998554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c45801088a43729e771c812b7ec91a3b8dfb49c", + "fields": { + "code_commune_insee": "32290", + "nom_de_la_commune": "MONTREAL", + "code_postal": "32250", + "coordonnees_gps": [ + 43.9513728334, + 0.199673132444 + ], + "libelle_d_acheminement": "MONTREAL DU GERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.199673132444, + 43.9513728334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96a4cbfc558b5a6f4d955cfe425f3569cab6446c", + "fields": { + "code_commune_insee": "32294", + "nom_de_la_commune": "MOUREDE", + "code_postal": "32190", + "coordonnees_gps": [ + 43.8007757314, + 0.288037071468 + ], + "libelle_d_acheminement": "MOUREDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.288037071468, + 43.8007757314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc66434ab651202f5988949111a6d5f6bd70d64c", + "fields": { + "code_commune_insee": "32296", + "nom_de_la_commune": "NOGARO", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7612028008, + -0.0306381303587 + ], + "libelle_d_acheminement": "NOGARO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0306381303587, + 43.7612028008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb366130b05345d0a6f9555e779195c18f810b62", + "fields": { + "code_commune_insee": "32297", + "nom_de_la_commune": "NOILHAN", + "code_postal": "32130", + "coordonnees_gps": [ + 43.5317727969, + 0.936447899241 + ], + "libelle_d_acheminement": "NOILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.936447899241, + 43.5317727969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d657eb5a2b5cebd16a36efd6f72bb6c3ad4744c", + "fields": { + "code_commune_insee": "32301", + "nom_de_la_commune": "ORDAN LARROQUE", + "code_postal": "32350", + "coordonnees_gps": [ + 43.6837953357, + 0.477177140595 + ], + "libelle_d_acheminement": "ORDAN LARROQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.477177140595, + 43.6837953357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "687ae1e14b08140943db0e5db0f7790b66ff8f3d", + "fields": { + "code_commune_insee": "32305", + "nom_de_la_commune": "PANJAS", + "code_postal": "32110", + "coordonnees_gps": [ + 43.8278400425, + -0.0758955881718 + ], + "libelle_d_acheminement": "PANJAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0758955881718, + 43.8278400425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e69639189d3e7f0607497651f540ad99cbac9ed", + "fields": { + "code_commune_insee": "32319", + "nom_de_la_commune": "PLAISANCE", + "code_postal": "32160", + "coordonnees_gps": [ + 43.6007929078, + 0.0437492719772 + ], + "libelle_d_acheminement": "PLAISANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0437492719772, + 43.6007929078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d60f67e7d2491db78d2630da85ae08a66c9b124a", + "fields": { + "code_commune_insee": "32324", + "nom_de_la_commune": "PONSAN SOUBIRAN", + "code_postal": "32300", + "coordonnees_gps": [ + 43.3504668886, + 0.47895342176 + ], + "libelle_d_acheminement": "PONSAN SOUBIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47895342176, + 43.3504668886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eb178aaf1e7660159b518a37a5950899e78c358", + "fields": { + "code_commune_insee": "32329", + "nom_de_la_commune": "PRECHAC", + "code_postal": "32390", + "coordonnees_gps": [ + 43.7937593553, + 0.571624025705 + ], + "libelle_d_acheminement": "PRECHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.571624025705, + 43.7937593553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aa69e0e98ef63a76ef109c1b52ed42b2698147f", + "fields": { + "code_commune_insee": "32332", + "nom_de_la_commune": "PRENERON", + "code_postal": "32190", + "coordonnees_gps": [ + 43.7274569495, + 0.269445355242 + ], + "libelle_d_acheminement": "PRENERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.269445355242, + 43.7274569495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4cdc6567530cc5bfa0580a20c335a6927996ff8", + "fields": { + "code_commune_insee": "32334", + "nom_de_la_commune": "PUJAUDRAN", + "code_postal": "32600", + "coordonnees_gps": [ + 43.5897953804, + 1.17106411645 + ], + "libelle_d_acheminement": "PUJAUDRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17106411645, + 43.5897953804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c87170941c45ecca0d5ef8b1f36ef45e863265e", + "fields": { + "code_commune_insee": "32335", + "nom_de_la_commune": "PUYCASQUIER", + "code_postal": "32120", + "coordonnees_gps": [ + 43.7472496042, + 0.74669365251 + ], + "libelle_d_acheminement": "PUYCASQUIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74669365251, + 43.7472496042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91d5f686d5d28b88ddfe76e177f6b7363f21958b", + "fields": { + "code_commune_insee": "32339", + "nom_de_la_commune": "RAZENGUES", + "code_postal": "32600", + "coordonnees_gps": [ + 43.644588775, + 0.985675925252 + ], + "libelle_d_acheminement": "RAZENGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.985675925252, + 43.644588775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8869400f72ff52331249d97c7116f4159f2cb7c", + "fields": { + "code_commune_insee": "32342", + "nom_de_la_commune": "RICOURT", + "code_postal": "32230", + "coordonnees_gps": [ + 43.4886092256, + 0.178113627524 + ], + "libelle_d_acheminement": "RICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.178113627524, + 43.4886092256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8806d6e382834399e1cd7a64a779cc541ab443da", + "fields": { + "ligne_5": "CANNET", + "code_commune_insee": "32344", + "libelle_d_acheminement": "RISCLE", + "code_postal": "32400", + "nom_de_la_commune": "RISCLE", + "coordonnees_gps": [ + 43.6454030402, + -0.078542343724 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.078542343724, + 43.6454030402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34e2444ae23a784a6ad60c5d1014dc9fca596603", + "fields": { + "code_commune_insee": "32345", + "nom_de_la_commune": "LA ROMIEU", + "code_postal": "32480", + "coordonnees_gps": [ + 43.9866068735, + 0.503612353282 + ], + "libelle_d_acheminement": "LA ROMIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.503612353282, + 43.9866068735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b75376b686eacd6788fcd11d6b3b13e15aa2ff1", + "fields": { + "code_commune_insee": "32354", + "nom_de_la_commune": "SABAZAN", + "code_postal": "32290", + "coordonnees_gps": [ + 43.7096249561, + 0.0519402206437 + ], + "libelle_d_acheminement": "SABAZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0519402206437, + 43.7096249561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d6d6a927a086ab165b9db890f9b54c2e557a208", + "fields": { + "code_commune_insee": "32359", + "nom_de_la_commune": "ST ANTONIN", + "code_postal": "32120", + "coordonnees_gps": [ + 43.7201944543, + 0.822219263011 + ], + "libelle_d_acheminement": "ST ANTONIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.822219263011, + 43.7201944543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4e8e42dba6c426d0f9c8c7364d28644ee709728", + "fields": { + "code_commune_insee": "32360", + "nom_de_la_commune": "ST ARAILLES", + "code_postal": "32350", + "coordonnees_gps": [ + 43.6244874174, + 0.347280500051 + ], + "libelle_d_acheminement": "ST ARAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.347280500051, + 43.6244874174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d5c1e8eb03bcd87a092f5be3d066f1da9b64ab5", + "fields": { + "code_commune_insee": "32365", + "nom_de_la_commune": "ST BLANCARD", + "code_postal": "32140", + "coordonnees_gps": [ + 43.3503699473, + 0.656853892371 + ], + "libelle_d_acheminement": "ST BLANCARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.656853892371, + 43.3503699473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42faaa03218ca6e1e17e5fd4ec60de55bfd3e2ea", + "fields": { + "code_commune_insee": "32366", + "nom_de_la_commune": "ST BRES", + "code_postal": "32120", + "coordonnees_gps": [ + 43.7829005093, + 0.769140998538 + ], + "libelle_d_acheminement": "ST BRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.769140998538, + 43.7829005093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fb1be4f06e6762bab1b825224338987660fd1ef", + "fields": { + "code_commune_insee": "32389", + "nom_de_la_commune": "ST MARTIN", + "code_postal": "32300", + "coordonnees_gps": [ + 43.5079691513, + 0.374354787173 + ], + "libelle_d_acheminement": "ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.374354787173, + 43.5079691513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5eafa555a00ffb7d361a337351c5ea02a3d9aeea", + "fields": { + "code_commune_insee": "32391", + "nom_de_la_commune": "ST MARTIN DE GOYNE", + "code_postal": "32480", + "coordonnees_gps": [ + 44.0032506931, + 0.574560917356 + ], + "libelle_d_acheminement": "ST MARTIN DE GOYNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.574560917356, + 44.0032506931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b29ba8d604e2299876c2285fd57e55473e9af118", + "fields": { + "code_commune_insee": "32393", + "nom_de_la_commune": "ST MAUR", + "code_postal": "32300", + "coordonnees_gps": [ + 43.4855046217, + 0.346681853223 + ], + "libelle_d_acheminement": "ST MAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.346681853223, + 43.4855046217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6de1e26547a4f19a0a1ec1e2afa49d50d1b9d16e", + "fields": { + "code_commune_insee": "32396", + "nom_de_la_commune": "ST MEZARD", + "code_postal": "32700", + "coordonnees_gps": [ + 44.0338368158, + 0.56893422575 + ], + "libelle_d_acheminement": "ST MEZARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56893422575, + 44.0338368158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "858df71e32eedd2613dd051227142e58f398c130", + "fields": { + "code_commune_insee": "32398", + "nom_de_la_commune": "ST MONT", + "code_postal": "32400", + "coordonnees_gps": [ + 43.644278367, + -0.140293846717 + ], + "libelle_d_acheminement": "ST MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.140293846717, + 43.644278367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c4a3b08aad99a5cde4f5c06249fc291b569543d", + "fields": { + "code_commune_insee": "32399", + "nom_de_la_commune": "ST ORENS", + "code_postal": "32120", + "coordonnees_gps": [ + 43.712737333, + 0.915812441349 + ], + "libelle_d_acheminement": "ST ORENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.915812441349, + 43.712737333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e8c0dd25bd688abea3f2e975bb8292e7ace7425", + "fields": { + "code_commune_insee": "32404", + "nom_de_la_commune": "ST PUY", + "code_postal": "32310", + "coordonnees_gps": [ + 43.8684997872, + 0.45938385688 + ], + "libelle_d_acheminement": "ST PUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45938385688, + 43.8684997872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "845f6e2edc612c8bfe198597878ed41fa11cb763", + "fields": { + "code_commune_insee": "32405", + "nom_de_la_commune": "STE RADEGONDE", + "code_postal": "32500", + "coordonnees_gps": [ + 43.8415690782, + 0.585585218157 + ], + "libelle_d_acheminement": "STE RADEGONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.585585218157, + 43.8415690782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "199d3f66c2550786d184dce0b56319823c8fd95a", + "fields": { + "code_commune_insee": "32409", + "nom_de_la_commune": "SAMARAN", + "code_postal": "32140", + "coordonnees_gps": [ + 43.3917650626, + 0.530680850308 + ], + "libelle_d_acheminement": "SAMARAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.530680850308, + 43.3917650626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01ba394c1314a35026f0e19d85890425ac37e667", + "fields": { + "code_commune_insee": "32411", + "nom_de_la_commune": "SANSAN", + "code_postal": "32260", + "coordonnees_gps": [ + 43.5278730462, + 0.612788955007 + ], + "libelle_d_acheminement": "SANSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.612788955007, + 43.5278730462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06d26a6fdc14e5be698a07ea8768da3952f76737", + "fields": { + "code_commune_insee": "32426", + "nom_de_la_commune": "SEISSAN", + "code_postal": "32260", + "coordonnees_gps": [ + 43.4981861217, + 0.571544728531 + ], + "libelle_d_acheminement": "SEISSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.571544728531, + 43.4981861217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1308049db53b3f304adfd316f565f4d678f73590", + "fields": { + "code_commune_insee": "32427", + "nom_de_la_commune": "SEMBOUES", + "code_postal": "32230", + "coordonnees_gps": [ + 43.4631952231, + 0.173358322537 + ], + "libelle_d_acheminement": "SEMBOUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.173358322537, + 43.4631952231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "069339133155e90283b7a01a7e7d136788ddc95e", + "fields": { + "code_commune_insee": "32431", + "nom_de_la_commune": "SEREMPUY", + "code_postal": "32120", + "coordonnees_gps": [ + 43.7615192489, + 0.821224548581 + ], + "libelle_d_acheminement": "SEREMPUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.821224548581, + 43.7615192489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef4e8ba88ecb6760aa9fb538e66f73cba3531358", + "fields": { + "code_commune_insee": "32438", + "nom_de_la_commune": "TACHOIRES", + "code_postal": "32260", + "coordonnees_gps": [ + 43.4721937352, + 0.660115776589 + ], + "libelle_d_acheminement": "TACHOIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.660115776589, + 43.4721937352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9862cbd062d793d9ea74d5d011a88d36f0c662e", + "fields": { + "code_commune_insee": "32441", + "nom_de_la_commune": "TAYBOSC", + "code_postal": "32120", + "coordonnees_gps": [ + 43.7860742927, + 0.741893706736 + ], + "libelle_d_acheminement": "TAYBOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.741893706736, + 43.7860742927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6cda5f992438745a4c7180e7de1dc3c9c03eb85", + "fields": { + "code_commune_insee": "32443", + "nom_de_la_commune": "TERMES D ARMAGNAC", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6736657601, + -0.0144861541884 + ], + "libelle_d_acheminement": "TERMES D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0144861541884, + 43.6736657601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e345bbb5d56f23165caf92ecb82538c85c3174e4", + "fields": { + "code_commune_insee": "32450", + "nom_de_la_commune": "TOURDUN", + "code_postal": "32230", + "coordonnees_gps": [ + 43.5472486577, + 0.160157307387 + ], + "libelle_d_acheminement": "TOURDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.160157307387, + 43.5472486577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1c06d45094aac5842d8a2987583bfbf6761eb49", + "fields": { + "code_commune_insee": "32453", + "nom_de_la_commune": "TOURRENQUETS", + "code_postal": "32390", + "coordonnees_gps": [ + 43.7491567368, + 0.701313757709 + ], + "libelle_d_acheminement": "TOURRENQUETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.701313757709, + 43.7491567368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "379d89f3039549aec6fd09050c2653651f8670ff", + "fields": { + "code_commune_insee": "32457", + "nom_de_la_commune": "URDENS", + "code_postal": "32500", + "coordonnees_gps": [ + 43.8627011865, + 0.712618673023 + ], + "libelle_d_acheminement": "URDENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.712618673023, + 43.8627011865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d71f823af4d67cc818092903d5db6d27cb3fcdd", + "fields": { + "code_commune_insee": "32459", + "nom_de_la_commune": "VALENCE SUR BAISE", + "code_postal": "32310", + "coordonnees_gps": [ + 43.8682182718, + 0.363460547299 + ], + "libelle_d_acheminement": "VALENCE SUR BAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.363460547299, + 43.8682182718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ae097b690be88b6bdd575f130f7d3b8ebf33dc5", + "fields": { + "code_commune_insee": "32460", + "nom_de_la_commune": "VERGOIGNAN", + "code_postal": "32720", + "coordonnees_gps": [ + 43.7235746425, + -0.188266221507 + ], + "libelle_d_acheminement": "VERGOIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.188266221507, + 43.7235746425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79bc96ab37f22f24a948581b637788bbc2b58d40", + "fields": { + "code_commune_insee": "32462", + "nom_de_la_commune": "VIC FEZENSAC", + "code_postal": "32190", + "coordonnees_gps": [ + 43.762029942, + 0.297842185088 + ], + "libelle_d_acheminement": "VIC FEZENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.297842185088, + 43.762029942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f79b522f164807d386c0d959291d8042fbe23ae2", + "fields": { + "code_commune_insee": "32465", + "nom_de_la_commune": "VILLEFRANCHE", + "code_postal": "32420", + "coordonnees_gps": [ + 43.4214250557, + 0.734034219047 + ], + "libelle_d_acheminement": "VILLEFRANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.734034219047, + 43.4214250557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45ed77ddaeaea30ddee328d1b03160aea9541fd6", + "fields": { + "code_commune_insee": "33001", + "nom_de_la_commune": "ABZAC", + "code_postal": "33230", + "coordonnees_gps": [ + 45.0106457764, + -0.130179806678 + ], + "libelle_d_acheminement": "ABZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.130179806678, + 45.0106457764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc183f22d9d66caafc8e1e6d7b0714065c091414", + "fields": { + "code_commune_insee": "33006", + "nom_de_la_commune": "ANGLADE", + "code_postal": "33390", + "coordonnees_gps": [ + 45.2115004641, + -0.638219671471 + ], + "libelle_d_acheminement": "ANGLADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.638219671471, + 45.2115004641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ad1d923f32f42d216d9509e45784325300c1024", + "fields": { + "code_commune_insee": "33009", + "nom_de_la_commune": "ARCACHON", + "code_postal": "33120", + "coordonnees_gps": [ + 44.6529002838, + -1.17429790933 + ], + "libelle_d_acheminement": "ARCACHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17429790933, + 44.6529002838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "585b5d25cde9bf199a412cfd2e96b8259b88747f", + "fields": { + "code_commune_insee": "33013", + "nom_de_la_commune": "ARTIGUES PRES BORDEAUX", + "code_postal": "33370", + "coordonnees_gps": [ + 44.8603385038, + -0.490377864769 + ], + "libelle_d_acheminement": "ARTIGUES PRES BORDEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.490377864769, + 44.8603385038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1756862556719d2f1e56bb672bd2acc21b90a00", + "fields": { + "ligne_5": "ST ANTOINE", + "code_commune_insee": "33018", + "libelle_d_acheminement": "VAL DE VIRVEE", + "code_postal": "33240", + "nom_de_la_commune": "VAL DE VIRVEE", + "coordonnees_gps": [ + 45.0218017593, + -0.404998298287 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.404998298287, + 45.0218017593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51b91993c3dbc7802ba894214c3e3226ba5b017f", + "fields": { + "code_commune_insee": "33026", + "nom_de_la_commune": "BALIZAC", + "code_postal": "33730", + "coordonnees_gps": [ + 44.4864307909, + -0.448728461334 + ], + "libelle_d_acheminement": "BALIZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.448728461334, + 44.4864307909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ab5f4633f0f541d067ecd5d787163063105fc4f", + "fields": { + "code_commune_insee": "33038", + "nom_de_la_commune": "BEGADAN", + "code_postal": "33340", + "coordonnees_gps": [ + 45.3670708459, + -0.8958001736 + ], + "libelle_d_acheminement": "BEGADAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8958001736, + 45.3670708459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6af87bafb1edfb4618d70f117516b55c5939ce3a", + "fields": { + "code_commune_insee": "33039", + "nom_de_la_commune": "BEGLES", + "code_postal": "33130", + "coordonnees_gps": [ + 44.8016009051, + -0.547755768448 + ], + "libelle_d_acheminement": "BEGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.547755768448, + 44.8016009051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20b33569073e7c5a08b6b06cfb61dc7b581492d5", + "fields": { + "code_commune_insee": "33046", + "nom_de_la_commune": "BERNOS BEAULAC", + "code_postal": "33430", + "coordonnees_gps": [ + 44.3630023376, + -0.259455361877 + ], + "libelle_d_acheminement": "BERNOS BEAULAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.259455361877, + 44.3630023376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b40841d55aba52c3c134b7d0ccaaccb9806a96a7", + "fields": { + "code_commune_insee": "33048", + "nom_de_la_commune": "BERTHEZ", + "code_postal": "33124", + "coordonnees_gps": [ + 44.4828924557, + -0.128085813135 + ], + "libelle_d_acheminement": "BERTHEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.128085813135, + 44.4828924557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fc17a5cf52f36d67361d2d5607b017cd46ed779", + "fields": { + "ligne_5": "FACTURE", + "code_commune_insee": "33051", + "libelle_d_acheminement": "BIGANOS", + "code_postal": "33380", + "nom_de_la_commune": "BIGANOS", + "coordonnees_gps": [ + 44.6611063153, + -0.948829442283 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.948829442283, + 44.6611063153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2945a1ccdd97f4b0d31c23d10b61120d691297ad", + "fields": { + "code_commune_insee": "33060", + "nom_de_la_commune": "BOMMES", + "code_postal": "33210", + "coordonnees_gps": [ + 44.5529791814, + -0.344933084862 + ], + "libelle_d_acheminement": "BOMMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.344933084862, + 44.5529791814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb616f56e5c9d75e7e1c37bf64ea45306f4c73df", + "fields": { + "code_commune_insee": "33063", + "nom_de_la_commune": "BORDEAUX", + "code_postal": "33200", + "coordonnees_gps": [ + 44.8572445351, + -0.57369678116 + ], + "libelle_d_acheminement": "BORDEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57369678116, + 44.8572445351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb19bf93ff81701b3bce535a491b58b3d2a0ca4e", + "fields": { + "code_commune_insee": "33065", + "nom_de_la_commune": "BOULIAC", + "code_postal": "33270", + "coordonnees_gps": [ + 44.8160953539, + -0.50487313207 + ], + "libelle_d_acheminement": "BOULIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50487313207, + 44.8160953539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a72d5591aaf9ac86cb061cc994be47f5e350e54", + "fields": { + "code_commune_insee": "33072", + "nom_de_la_commune": "BRANNENS", + "code_postal": "33124", + "coordonnees_gps": [ + 44.5220010151, + -0.152201164676 + ], + "libelle_d_acheminement": "BRANNENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.152201164676, + 44.5220010151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e196d10b9690be9d40c768946816237f4f7d5779", + "fields": { + "code_commune_insee": "33074", + "nom_de_la_commune": "BROUQUEYRAN", + "code_postal": "33124", + "coordonnees_gps": [ + 44.4879887371, + -0.177790358519 + ], + "libelle_d_acheminement": "BROUQUEYRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.177790358519, + 44.4879887371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65d02c1992919b1ce5720866085e4257994709cb", + "fields": { + "code_commune_insee": "33075", + "nom_de_la_commune": "BRUGES", + "code_postal": "33520", + "coordonnees_gps": [ + 44.8889469436, + -0.600427664273 + ], + "libelle_d_acheminement": "BRUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.600427664273, + 44.8889469436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "545c0fd61f697548f4edbe5c123e141f0754044a", + "fields": { + "code_commune_insee": "33081", + "nom_de_la_commune": "CADILLAC", + "code_postal": "33410", + "coordonnees_gps": [ + 44.640655028, + -0.305411766484 + ], + "libelle_d_acheminement": "CADILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.305411766484, + 44.640655028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "236597e825e0fcb0b175e1827ad8808dc15049f2", + "fields": { + "code_commune_insee": "33086", + "nom_de_la_commune": "CAMIAC ET ST DENIS", + "code_postal": "33420", + "coordonnees_gps": [ + 44.7961983028, + -0.292259095735 + ], + "libelle_d_acheminement": "CAMIAC ET ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.292259095735, + 44.7961983028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf198efef7b1ea6e2974cee070d84ca1df135539", + "fields": { + "code_commune_insee": "33087", + "nom_de_la_commune": "CAMIRAN", + "code_postal": "33190", + "coordonnees_gps": [ + 44.6347802416, + -0.0680146855411 + ], + "libelle_d_acheminement": "CAMIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0680146855411, + 44.6347802416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b771ab2e62ad892460f56254dd01109a1f4b07b4", + "fields": { + "code_commune_insee": "33093", + "nom_de_la_commune": "CAPIAN", + "code_postal": "33550", + "coordonnees_gps": [ + 44.716585777, + -0.327839975905 + ], + "libelle_d_acheminement": "CAPIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.327839975905, + 44.716585777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a05f42319ef935c92a9488da583cb715f501b00", + "fields": { + "code_commune_insee": "33118", + "nom_de_la_commune": "CENAC", + "code_postal": "33360", + "coordonnees_gps": [ + 44.7826946723, + -0.456684447802 + ], + "libelle_d_acheminement": "CENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.456684447802, + 44.7826946723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2f6399c0112d6dde977694820b9073137abc6d6", + "fields": { + "code_commune_insee": "33122", + "nom_de_la_commune": "CESTAS", + "code_postal": "33610", + "coordonnees_gps": [ + 44.7237410966, + -0.726825410115 + ], + "libelle_d_acheminement": "CESTAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.726825410115, + 44.7237410966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf18b1aab4fa6a67928bba16fbf38ec1e622a457", + "fields": { + "code_commune_insee": "33127", + "nom_de_la_commune": "CIVRAC SUR DORDOGNE", + "code_postal": "33350", + "coordonnees_gps": [ + 44.830355683, + -0.0779777729752 + ], + "libelle_d_acheminement": "CIVRAC SUR DORDOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0779777729752, + 44.830355683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ae4106ae35188b8a4836e7070e543cbfa2fb2e7", + "fields": { + "code_commune_insee": "33130", + "nom_de_la_commune": "COIMERES", + "code_postal": "33210", + "coordonnees_gps": [ + 44.5004950775, + -0.212633821506 + ], + "libelle_d_acheminement": "COIMERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.212633821506, + 44.5004950775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d04c2845e1caf0c08afef51eeef58e5774cb6205", + "fields": { + "code_commune_insee": "33131", + "nom_de_la_commune": "COIRAC", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6861124973, + -0.172140647906 + ], + "libelle_d_acheminement": "COIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.172140647906, + 44.6861124973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c54bfe5f89b0b67c00b55b79873d173bb25541e", + "fields": { + "code_commune_insee": "33135", + "nom_de_la_commune": "COURPIAC", + "code_postal": "33760", + "coordonnees_gps": [ + 44.7547642391, + -0.185776017902 + ], + "libelle_d_acheminement": "COURPIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.185776017902, + 44.7547642391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29b2fa702d48dfad380f51663fca1daa5c71febd", + "fields": { + "code_commune_insee": "33140", + "nom_de_la_commune": "CREON", + "code_postal": "33670", + "coordonnees_gps": [ + 44.770425384, + -0.343606134456 + ], + "libelle_d_acheminement": "CREON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.343606134456, + 44.770425384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3495f99ff916eefeeaafac5828e8549b65173e5", + "fields": { + "code_commune_insee": "33146", + "nom_de_la_commune": "CUSSAC FORT MEDOC", + "code_postal": "33460", + "coordonnees_gps": [ + 45.1199548347, + -0.72618379335 + ], + "libelle_d_acheminement": "CUSSAC FORT MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.72618379335, + 45.1199548347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fe05a8fc48d49177d5f157bb35d83b7c116b8d5", + "fields": { + "code_commune_insee": "33147", + "nom_de_la_commune": "DAIGNAC", + "code_postal": "33420", + "coordonnees_gps": [ + 44.7959422928, + -0.235707900811 + ], + "libelle_d_acheminement": "DAIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.235707900811, + 44.7959422928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e49988276fd6cfb5cfb59d2aef27d924b6da09b3", + "fields": { + "code_commune_insee": "33150", + "nom_de_la_commune": "DIEULIVOL", + "code_postal": "33580", + "coordonnees_gps": [ + 44.6779870781, + 0.103507198819 + ], + "libelle_d_acheminement": "DIEULIVOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.103507198819, + 44.6779870781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95fb399fb18b7c13b4e034827172146e2224aa64", + "fields": { + "code_commune_insee": "33162", + "nom_de_la_commune": "EYSINES", + "code_postal": "33320", + "coordonnees_gps": [ + 44.8797152377, + -0.647899474657 + ], + "libelle_d_acheminement": "EYSINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.647899474657, + 44.8797152377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fea07766dad0da498bbb0fc2d65f9f96cf6d50c", + "fields": { + "code_commune_insee": "33163", + "nom_de_la_commune": "FALEYRAS", + "code_postal": "33760", + "coordonnees_gps": [ + 44.7638937093, + -0.228692967915 + ], + "libelle_d_acheminement": "FALEYRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.228692967915, + 44.7638937093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61462f1f6f7c51ca166304a89b6fbe031e13795c", + "fields": { + "code_commune_insee": "33168", + "nom_de_la_commune": "FLAUJAGUES", + "code_postal": "33350", + "coordonnees_gps": [ + 44.8318741437, + 0.0243569080199 + ], + "libelle_d_acheminement": "FLAUJAGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0243569080199, + 44.8318741437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9abf31a0f55a2cfea88254cfa6b1e73eed9b194", + "fields": { + "code_commune_insee": "33169", + "nom_de_la_commune": "FLOUDES", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5700178825, + -0.0629604195492 + ], + "libelle_d_acheminement": "FLOUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0629604195492, + 44.5700178825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3107bee1690909fa1a700168c4b8014369ec7bb7", + "fields": { + "code_commune_insee": "33189", + "nom_de_la_commune": "GORNAC", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6632972482, + -0.1839383774 + ], + "libelle_d_acheminement": "GORNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1839383774, + 44.6632972482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e77f6f597b0c094ae9e669a455ff615785fb1b1", + "fields": { + "code_commune_insee": "33192", + "nom_de_la_commune": "GRADIGNAN", + "code_postal": "33170", + "coordonnees_gps": [ + 44.7709411201, + -0.616137682116 + ], + "libelle_d_acheminement": "GRADIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.616137682116, + 44.7709411201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3490c56f87ce70bdaca16b088c655829e1fd80bf", + "fields": { + "code_commune_insee": "33193", + "nom_de_la_commune": "GRAYAN ET L HOPITAL", + "code_postal": "33590", + "coordonnees_gps": [ + 45.4351862635, + -1.10881933696 + ], + "libelle_d_acheminement": "GRAYAN ET L HOPITAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10881933696, + 45.4351862635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62d59b15fb30705c003499e361e003ba62a1ea49", + "fields": { + "code_commune_insee": "33202", + "nom_de_la_commune": "HOSTENS", + "code_postal": "33125", + "coordonnees_gps": [ + 44.4849173448, + -0.656859781081 + ], + "libelle_d_acheminement": "HOSTENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.656859781081, + 44.4849173448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67f1658302eb2a1a96734664166bd9a61a77a035", + "fields": { + "code_commune_insee": "33204", + "nom_de_la_commune": "HURE", + "code_postal": "33190", + "coordonnees_gps": [ + 44.537084406, + -0.00499948026511 + ], + "libelle_d_acheminement": "HURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00499948026511, + 44.537084406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "908ae754e02b0a7313e4699b55eae413e2ed803a", + "fields": { + "code_commune_insee": "33207", + "nom_de_la_commune": "IZON", + "code_postal": "33450", + "coordonnees_gps": [ + 44.922024323, + -0.355652161244 + ], + "libelle_d_acheminement": "IZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.355652161244, + 44.922024323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "998fc1a29ee3ff48cd545411290a995e7ce44b18", + "fields": { + "code_commune_insee": "33215", + "nom_de_la_commune": "LADAUX", + "code_postal": "33760", + "coordonnees_gps": [ + 44.7032423261, + -0.246749239195 + ], + "libelle_d_acheminement": "LADAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.246749239195, + 44.7032423261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dffb7acdf6d9ccb25c9254d0bcf8b9566774930", + "fields": { + "code_commune_insee": "33218", + "nom_de_la_commune": "LAGORCE", + "code_postal": "33230", + "coordonnees_gps": [ + 45.0781941491, + -0.160779804845 + ], + "libelle_d_acheminement": "LAGORCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.160779804845, + 45.0781941491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6681f5470b18266276a710a51fafcae68ac50a8a", + "fields": { + "code_commune_insee": "33219", + "nom_de_la_commune": "LA LANDE DE FRONSAC", + "code_postal": "33240", + "coordonnees_gps": [ + 44.9839394849, + -0.380437424573 + ], + "libelle_d_acheminement": "LA LANDE DE FRONSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.380437424573, + 44.9839394849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb0b0321c7c7220423cdf486a09ce579e05a2eaf", + "fields": { + "code_commune_insee": "33224", + "nom_de_la_commune": "LANDERROUET SUR SEGUR", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6535808373, + -0.0206044198936 + ], + "libelle_d_acheminement": "LANDERROUET SUR SEGUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0206044198936, + 44.6535808373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "517fe6d1742c46040578083eba89c060d31bb876", + "fields": { + "code_commune_insee": "33228", + "nom_de_la_commune": "LANSAC", + "code_postal": "33710", + "coordonnees_gps": [ + 45.064093095, + -0.534857408079 + ], + "libelle_d_acheminement": "LANSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.534857408079, + 45.064093095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bcdbe3be7facd8017a8bc10e3f75b750dfbcf6c", + "fields": { + "code_commune_insee": "33236", + "nom_de_la_commune": "LEGE CAP FERRET", + "code_postal": "33950", + "coordonnees_gps": [ + 44.7609440223, + -1.19293697437 + ], + "libelle_d_acheminement": "LEGE CAP FERRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19293697437, + 44.7609440223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2120301e2de371cd3712581b593c479f2bc7b249", + "fields": { + "ligne_5": "LE CANON", + "code_commune_insee": "33236", + "libelle_d_acheminement": "LEGE CAP FERRET", + "code_postal": "33950", + "nom_de_la_commune": "LEGE CAP FERRET", + "coordonnees_gps": [ + 44.7609440223, + -1.19293697437 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19293697437, + 44.7609440223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c46c1f51ee4575f1dced17ec6bd11889efd436e", + "fields": { + "code_commune_insee": "33237", + "nom_de_la_commune": "LEOGEATS", + "code_postal": "33210", + "coordonnees_gps": [ + 44.5068605106, + -0.356393129904 + ], + "libelle_d_acheminement": "LEOGEATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.356393129904, + 44.5068605106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad8e436cc395777ea9bd090d375ebefcfebc2c31", + "fields": { + "code_commune_insee": "33245", + "nom_de_la_commune": "LIGNAN DE BORDEAUX", + "code_postal": "33360", + "coordonnees_gps": [ + 44.7951113982, + -0.429417377257 + ], + "libelle_d_acheminement": "LIGNAN DE BORDEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.429417377257, + 44.7951113982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1b421777c6d5e8b241c2ad71d979503ada29a94", + "fields": { + "code_commune_insee": "33251", + "nom_de_la_commune": "LOUCHATS", + "code_postal": "33125", + "coordonnees_gps": [ + 44.51328218, + -0.57113615369 + ], + "libelle_d_acheminement": "LOUCHATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57113615369, + 44.51328218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80c48c5541b1d7f207eb354826dbbbb1f935ef18", + "fields": { + "code_commune_insee": "33254", + "nom_de_la_commune": "LOUPIAC DE LA REOLE", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5412367139, + -0.0440895943133 + ], + "libelle_d_acheminement": "LOUPIAC DE LA REOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0440895943133, + 44.5412367139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d4cf88247683fff008fd80c9aaff55c253f41f4", + "fields": { + "code_commune_insee": "33263", + "nom_de_la_commune": "MADIRAC", + "code_postal": "33670", + "coordonnees_gps": [ + 44.7577269067, + -0.397181377193 + ], + "libelle_d_acheminement": "MADIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.397181377193, + 44.7577269067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "220e5862b9b5cc1c5f17ce27bca2612a2efa641d", + "fields": { + "ligne_5": "MARGAUX", + "code_commune_insee": "33268", + "libelle_d_acheminement": "MARGAUX CANTENAC", + "code_postal": "33460", + "nom_de_la_commune": "MARGAUX CANTENAC", + "coordonnees_gps": [ + 45.0468275892, + -0.671911642441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.671911642441, + 45.0468275892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51448a3b4b321486a62a95092252f1a8b76964a7", + "fields": { + "code_commune_insee": "33275", + "nom_de_la_commune": "MARTRES", + "code_postal": "33760", + "coordonnees_gps": [ + 44.7073917593, + -0.168195738605 + ], + "libelle_d_acheminement": "MARTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.168195738605, + 44.7073917593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83800e36a8df58284ef0ffdf2f4ad183ea581e83", + "fields": { + "code_commune_insee": "33283", + "nom_de_la_commune": "MESTERRIEUX", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6440577159, + -0.0111745984691 + ], + "libelle_d_acheminement": "MESTERRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0111745984691, + 44.6440577159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec4d468f7a42efb76127e45f55306f4421e6a264", + "fields": { + "code_commune_insee": "33285", + "nom_de_la_commune": "MOMBRIER", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0776862842, + -0.546789839877 + ], + "libelle_d_acheminement": "MOMBRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.546789839877, + 45.0776862842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "453a8a8998fd8efbd6979f3a9c71658030cd8101", + "fields": { + "code_commune_insee": "33289", + "nom_de_la_commune": "MONSEGUR", + "code_postal": "33580", + "coordonnees_gps": [ + 44.6462089079, + 0.0892904208174 + ], + "libelle_d_acheminement": "MONSEGUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0892904208174, + 44.6462089079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a932b17d46bf1b2543d0bed6d380044f072e0de", + "fields": { + "ligne_5": "ST GEORGES", + "code_commune_insee": "33290", + "libelle_d_acheminement": "MONTAGNE", + "code_postal": "33570", + "nom_de_la_commune": "MONTAGNE", + "coordonnees_gps": [ + 44.9320818849, + -0.126958398554 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.126958398554, + 44.9320818849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "678b6dfa869111eb5adedc078c9e96c91d332ddd", + "fields": { + "code_commune_insee": "33292", + "nom_de_la_commune": "MONTIGNAC", + "code_postal": "33760", + "coordonnees_gps": [ + 44.7130267691, + -0.217710701052 + ], + "libelle_d_acheminement": "MONTIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.217710701052, + 44.7130267691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5bffbaca83237867322b6bac86905ce22d80656", + "fields": { + "code_commune_insee": "33298", + "nom_de_la_commune": "MOULON", + "code_postal": "33420", + "coordonnees_gps": [ + 44.8575503157, + -0.220590516596 + ], + "libelle_d_acheminement": "MOULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.220590516596, + 44.8575503157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dfdcdca1ff4878885c47bd5a6b22e55cb876518", + "fields": { + "code_commune_insee": "33307", + "nom_de_la_commune": "NOAILLAN", + "code_postal": "33730", + "coordonnees_gps": [ + 44.4800097936, + -0.360121243141 + ], + "libelle_d_acheminement": "NOAILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.360121243141, + 44.4800097936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ede4031b11c8f47813617da4fafdf127bacda1cf", + "fields": { + "code_commune_insee": "33310", + "nom_de_la_commune": "ORIGNE", + "code_postal": "33113", + "coordonnees_gps": [ + 44.5038761051, + -0.509904943904 + ], + "libelle_d_acheminement": "ORIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509904943904, + 44.5038761051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddd461b9127f1aaada10b605dbe8e0764fa02aba", + "fields": { + "code_commune_insee": "33317", + "nom_de_la_commune": "PERISSAC", + "code_postal": "33240", + "coordonnees_gps": [ + 45.0242960787, + -0.316735068823 + ], + "libelle_d_acheminement": "PERISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.316735068823, + 45.0242960787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eb8b712a952d7b45681133e757feea001bc9e68", + "fields": { + "code_commune_insee": "33318", + "nom_de_la_commune": "PESSAC", + "code_postal": "33600", + "coordonnees_gps": [ + 44.7915990521, + -0.676303166277 + ], + "libelle_d_acheminement": "PESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.676303166277, + 44.7915990521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f68fa20e2e95b79caa2fbd892950bfcf28e4dde8", + "fields": { + "code_commune_insee": "33325", + "nom_de_la_commune": "PLASSAC", + "code_postal": "33390", + "coordonnees_gps": [ + 45.097903949, + -0.651002369546 + ], + "libelle_d_acheminement": "PLASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.651002369546, + 45.097903949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e1d68fb888d377b4795dfed6de5209cfd8599db", + "fields": { + "code_commune_insee": "33336", + "nom_de_la_commune": "PRECHAC", + "code_postal": "33730", + "coordonnees_gps": [ + 44.3872999991, + -0.36765609959 + ], + "libelle_d_acheminement": "PRECHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36765609959, + 44.3872999991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "345585540f6cf4cd654b8e87e7d700db29dc1319", + "fields": { + "code_commune_insee": "33337", + "nom_de_la_commune": "PREIGNAC", + "code_postal": "33210", + "coordonnees_gps": [ + 44.5701114534, + -0.309617244092 + ], + "libelle_d_acheminement": "PREIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.309617244092, + 44.5701114534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c69e4fe8b77c8a0c28e0f771e666b960ef2c0259", + "fields": { + "code_commune_insee": "33343", + "nom_de_la_commune": "PUJOLS SUR CIRON", + "code_postal": "33210", + "coordonnees_gps": [ + 44.5707365487, + -0.353176378763 + ], + "libelle_d_acheminement": "PUJOLS SUR CIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.353176378763, + 44.5707365487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96593e8d4ce891af0c9154cd05067d00d46a6dec", + "fields": { + "code_commune_insee": "33347", + "nom_de_la_commune": "PUYNORMAND", + "code_postal": "33660", + "coordonnees_gps": [ + 44.9814938189, + -0.00176034544232 + ], + "libelle_d_acheminement": "PUYNORMAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00176034544232, + 44.9814938189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5175598b3fb7eefd4fd316f13fff2c4c05b5f5ff", + "fields": { + "code_commune_insee": "33348", + "nom_de_la_commune": "QUEYRAC", + "code_postal": "33340", + "coordonnees_gps": [ + 45.3608901239, + -1.00082649674 + ], + "libelle_d_acheminement": "QUEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00082649674, + 45.3608901239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5102587b1fa3765ddb00dd20843a96e61126b73", + "fields": { + "code_commune_insee": "33352", + "nom_de_la_commune": "LA REOLE", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5860904495, + -0.042370404021 + ], + "libelle_d_acheminement": "LA REOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.042370404021, + 44.5860904495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d887cebfbb47bc13c1c1460e4728f91d923868f4", + "fields": { + "code_commune_insee": "33357", + "nom_de_la_commune": "ROAILLAN", + "code_postal": "33210", + "coordonnees_gps": [ + 44.5054989017, + -0.285142833143 + ], + "libelle_d_acheminement": "ROAILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.285142833143, + 44.5054989017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4b39645d48f2a4a1371dd1f0f0ebf220fe7924e", + "fields": { + "code_commune_insee": "33361", + "nom_de_la_commune": "RUCH", + "code_postal": "33350", + "coordonnees_gps": [ + 44.773827226, + -0.0332957025403 + ], + "libelle_d_acheminement": "RUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0332957025403, + 44.773827226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "888ef7c8ebb9db100dc389630fd414f02a3bbe69", + "fields": { + "code_commune_insee": "33364", + "nom_de_la_commune": "SAILLANS", + "code_postal": "33141", + "coordonnees_gps": [ + 44.9570462832, + -0.271169418164 + ], + "libelle_d_acheminement": "SAILLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.271169418164, + 44.9570462832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e0058258ea640d4843bd5eeff65b3691b774861", + "fields": { + "code_commune_insee": "33367", + "nom_de_la_commune": "ST ANDRE DU BOIS", + "code_postal": "33490", + "coordonnees_gps": [ + 44.6072494865, + -0.187082711636 + ], + "libelle_d_acheminement": "ST ANDRE DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.187082711636, + 44.6072494865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d2d2b21edfccdbf963bd9593f8f301f7b28b9da", + "fields": { + "code_commune_insee": "33372", + "nom_de_la_commune": "ST ANTOINE DU QUEYRET", + "code_postal": "33790", + "coordonnees_gps": [ + 44.7623588466, + 0.00922484290059 + ], + "libelle_d_acheminement": "ST ANTOINE DU QUEYRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00922484290059, + 44.7623588466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfe623d9fd4060d8c4c15b2ccd9039302d6f9076", + "fields": { + "code_commune_insee": "33378", + "nom_de_la_commune": "ST AVIT ST NAZAIRE", + "code_postal": "33220", + "coordonnees_gps": [ + 44.8478527826, + 0.274744250182 + ], + "libelle_d_acheminement": "ST AVIT ST NAZAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.274744250182, + 44.8478527826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf05fb042a9bcf9d2de0ceb74ac9d7c53296ec8f", + "fields": { + "ligne_5": "ST CAPRAIS DE BLAYE", + "code_commune_insee": "33380", + "libelle_d_acheminement": "VAL DE LIVENNE", + "code_postal": "33820", + "nom_de_la_commune": "VAL DE LIVENNE", + "coordonnees_gps": [ + 45.2880354799, + -0.566771692266 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.566771692266, + 45.2880354799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e46a63067c2d061427cd5c995ff7649002a50009", + "fields": { + "code_commune_insee": "33387", + "nom_de_la_commune": "ST CIERS D ABZAC", + "code_postal": "33910", + "coordonnees_gps": [ + 45.0354269369, + -0.288732170922 + ], + "libelle_d_acheminement": "ST CIERS D ABZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.288732170922, + 45.0354269369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5517619305562960c1259fc30914d6af48cc34c7", + "fields": { + "code_commune_insee": "33395", + "nom_de_la_commune": "ST ESTEPHE", + "code_postal": "33180", + "coordonnees_gps": [ + 45.2509775886, + -0.781613837384 + ], + "libelle_d_acheminement": "ST ESTEPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.781613837384, + 45.2509775886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbeb2ac27b6ddca43474682091f656396a7f1ac1", + "fields": { + "code_commune_insee": "33399", + "nom_de_la_commune": "ST FELIX DE FONCAUDE", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6525452619, + -0.104673473731 + ], + "libelle_d_acheminement": "ST FELIX DE FONCAUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.104673473731, + 44.6525452619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e80040b7972a49bafc3d72cad968bd50d3093b83", + "fields": { + "code_commune_insee": "33400", + "nom_de_la_commune": "ST FERME", + "code_postal": "33580", + "coordonnees_gps": [ + 44.6953149671, + 0.0615909665111 + ], + "libelle_d_acheminement": "ST FERME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0615909665111, + 44.6953149671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "351fb8a61f30fc2c6bbccb61e5c4eaf50866c0ba", + "fields": { + "code_commune_insee": "33409", + "nom_de_la_commune": "ST GENIS DU BOIS", + "code_postal": "33760", + "coordonnees_gps": [ + 44.6998143396, + -0.183471650836 + ], + "libelle_d_acheminement": "ST GENIS DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.183471650836, + 44.6998143396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "356dc3dc4277bd0e3256acebfabb298e840cb547", + "fields": { + "code_commune_insee": "33416", + "nom_de_la_commune": "ST GIRONS D AIGUEVIVES", + "code_postal": "33920", + "coordonnees_gps": [ + 45.1466416615, + -0.538156488225 + ], + "libelle_d_acheminement": "ST GIRONS D AIGUEVIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.538156488225, + 45.1466416615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfb982820b4aa9812062cf4f97ea2ef6b354b562", + "fields": { + "code_commune_insee": "33421", + "nom_de_la_commune": "ST JEAN DE BLAIGNAC", + "code_postal": "33420", + "coordonnees_gps": [ + 44.8093814613, + -0.132286748685 + ], + "libelle_d_acheminement": "ST JEAN DE BLAIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.132286748685, + 44.8093814613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a682b3c7e44af1defbc7d3b4014c14faf26936eb", + "fields": { + "code_commune_insee": "33426", + "nom_de_la_commune": "ST LAURENT DES COMBES", + "code_postal": "33330", + "coordonnees_gps": [ + 44.8731298275, + -0.138268824153 + ], + "libelle_d_acheminement": "ST LAURENT DES COMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.138268824153, + 44.8731298275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e631db2cc21e5db055fb74fa91f759d45628b38", + "fields": { + "code_commune_insee": "33427", + "nom_de_la_commune": "ST LAURENT DU BOIS", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6406776819, + -0.137803248191 + ], + "libelle_d_acheminement": "ST LAURENT DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.137803248191, + 44.6406776819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee3273c4b1313bf41d9fea59c18c7a590c89d79c", + "fields": { + "code_commune_insee": "33428", + "nom_de_la_commune": "ST LAURENT DU PLAN", + "code_postal": "33190", + "coordonnees_gps": [ + 44.6255670089, + -0.117013007902 + ], + "libelle_d_acheminement": "ST LAURENT DU PLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.117013007902, + 44.6255670089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc68480ef97a39d03bc23a6f06bd67845c09edea", + "fields": { + "code_commune_insee": "33436", + "nom_de_la_commune": "ST MAGNE", + "code_postal": "33125", + "coordonnees_gps": [ + 44.5545369985, + -0.658226760679 + ], + "libelle_d_acheminement": "ST MAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658226760679, + 44.5545369985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85e3a2a00c014711ece579fcd99bc013fe597d08", + "fields": { + "code_commune_insee": "33437", + "nom_de_la_commune": "ST MAGNE DE CASTILLON", + "code_postal": "33350", + "coordonnees_gps": [ + 44.8564111002, + -0.0738465578343 + ], + "libelle_d_acheminement": "ST MAGNE DE CASTILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0738465578343, + 44.8564111002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aa9ef584aae263f0741367e173bf462425506db", + "fields": { + "code_commune_insee": "33444", + "nom_de_la_commune": "ST MARTIN DE SESCAS", + "code_postal": "33490", + "coordonnees_gps": [ + 44.5868737063, + -0.165403223369 + ], + "libelle_d_acheminement": "ST MARTIN DE SESCAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.165403223369, + 44.5868737063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d0a3ef563f82632ae7ab20de5dce093d8049273", + "fields": { + "code_commune_insee": "33448", + "nom_de_la_commune": "ST MEDARD D EYRANS", + "code_postal": "33650", + "coordonnees_gps": [ + 44.7113116565, + -0.509379859547 + ], + "libelle_d_acheminement": "ST MEDARD D EYRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509379859547, + 44.7113116565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40ed19243b7473d951e3c01870e953bfb8764dc3", + "fields": { + "code_commune_insee": "33450", + "nom_de_la_commune": "ST MICHEL DE CASTELNAU", + "code_postal": "33840", + "coordonnees_gps": [ + 44.289942196, + -0.0867837653969 + ], + "libelle_d_acheminement": "ST MICHEL DE CASTELNAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0867837653969, + 44.289942196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "504585b97d4c5d7de5f19bd19a5dbaa239300c69", + "fields": { + "code_commune_insee": "33452", + "nom_de_la_commune": "ST MICHEL DE RIEUFRET", + "code_postal": "33720", + "coordonnees_gps": [ + 44.6247110153, + -0.441646554916 + ], + "libelle_d_acheminement": "ST MICHEL DE RIEUFRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441646554916, + 44.6247110153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2a8d94a6b086898fa1e0a0206956148b3da769c", + "fields": { + "code_commune_insee": "33453", + "nom_de_la_commune": "ST MICHEL DE LAPUJADE", + "code_postal": "33190", + "coordonnees_gps": [ + 44.587647568, + 0.0785219724491 + ], + "libelle_d_acheminement": "ST MICHEL DE LAPUJADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0785219724491, + 44.587647568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0d8a1eef4cf456780c08435f5012bc0a472e7a6", + "fields": { + "code_commune_insee": "33473", + "nom_de_la_commune": "ST SAVIN", + "code_postal": "33920", + "coordonnees_gps": [ + 45.1636697331, + -0.441034693146 + ], + "libelle_d_acheminement": "ST SAVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441034693146, + 45.1636697331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ecb3e216ce5d572e2ef43f09b4cf7cc9206e82c", + "fields": { + "code_commune_insee": "33475", + "nom_de_la_commune": "ST SEURIN DE BOURG", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0519405923, + -0.58173269823 + ], + "libelle_d_acheminement": "ST SEURIN DE BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58173269823, + 45.0519405923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa9c3f0b665e52b239701789b7f77b1f8300bab0", + "fields": { + "code_commune_insee": "33479", + "nom_de_la_commune": "ST SEVE", + "code_postal": "33190", + "coordonnees_gps": [ + 44.6068639564, + -0.0241032514519 + ], + "libelle_d_acheminement": "ST SEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0241032514519, + 44.6068639564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1534d46c892bae32cae7b798be2ea10eff9ad62", + "fields": { + "code_commune_insee": "33500", + "nom_de_la_commune": "SAMONAC", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0708411612, + -0.571604822734 + ], + "libelle_d_acheminement": "SAMONAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.571604822734, + 45.0708411612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcd3734e4a023453789f9f5aade18381ed1cdb3b", + "fields": { + "code_commune_insee": "33501", + "nom_de_la_commune": "SAUCATS", + "code_postal": "33650", + "coordonnees_gps": [ + 44.6513032071, + -0.631639793816 + ], + "libelle_d_acheminement": "SAUCATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.631639793816, + 44.6513032071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a7113d85f510338c58c6ef69b48f22624fb8992", + "fields": { + "code_commune_insee": "33502", + "nom_de_la_commune": "SAUGON", + "code_postal": "33920", + "coordonnees_gps": [ + 45.185092781, + -0.501188471075 + ], + "libelle_d_acheminement": "SAUGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.501188471075, + 45.185092781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b872bc5730cd42adcbea1f5330dc6ab999af48a9", + "fields": { + "code_commune_insee": "33503", + "nom_de_la_commune": "SAUMOS", + "code_postal": "33680", + "coordonnees_gps": [ + 44.9121930542, + -1.00529484975 + ], + "libelle_d_acheminement": "SAUMOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00529484975, + 44.9121930542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31fb90a96c3d992fb67149b7383ac8884ba3305a", + "fields": { + "code_commune_insee": "33506", + "nom_de_la_commune": "SAUVETERRE DE GUYENNE", + "code_postal": "33540", + "coordonnees_gps": [ + 44.7005227855, + -0.0766193491952 + ], + "libelle_d_acheminement": "SAUVETERRE DE GUYENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0766193491952, + 44.7005227855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c8b1c4c4abdfd1a07b14e012688e6822b178457", + "fields": { + "code_commune_insee": "33509", + "nom_de_la_commune": "SAVIGNAC DE L ISLE", + "code_postal": "33910", + "coordonnees_gps": [ + 44.9865629262, + -0.24028093176 + ], + "libelle_d_acheminement": "SAVIGNAC DE L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24028093176, + 44.9865629262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dca2317d8ea50f0b2d60e49896cc981324f2b981", + "fields": { + "code_commune_insee": "33512", + "nom_de_la_commune": "SIGALENS", + "code_postal": "33690", + "coordonnees_gps": [ + 44.4549781979, + -0.03281524291 + ], + "libelle_d_acheminement": "SIGALENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03281524291, + 44.4549781979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c2165fdfa0dcb60862c2da5adcdf358869839be", + "fields": { + "code_commune_insee": "33513", + "nom_de_la_commune": "SILLAS", + "code_postal": "33690", + "coordonnees_gps": [ + 44.3693679441, + -0.0585641941826 + ], + "libelle_d_acheminement": "SILLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0585641941826, + 44.3693679441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d02808c0f2d96c9b8a7a0b8a5ece1f351664454", + "fields": { + "code_commune_insee": "33524", + "nom_de_la_commune": "TARNES", + "code_postal": "33240", + "coordonnees_gps": [ + 44.9760038738, + -0.355091111216 + ], + "libelle_d_acheminement": "TARNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.355091111216, + 44.9760038738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1557f02aada6cf29c01db9f53e9062dda58b85dc", + "fields": { + "ligne_5": "PYLA PLAGE", + "code_commune_insee": "33529", + "libelle_d_acheminement": "LA TESTE DE BUCH", + "code_postal": "33115", + "nom_de_la_commune": "LA TESTE DE BUCH", + "coordonnees_gps": [ + 44.5561823053, + -1.17530826791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17530826791, + 44.5561823053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50dc95ca9e3d35fc8105255e6e7498b5598a23f3", + "fields": { + "ligne_5": "PYLA SUR MER", + "code_commune_insee": "33529", + "libelle_d_acheminement": "LA TESTE DE BUCH", + "code_postal": "33115", + "nom_de_la_commune": "LA TESTE DE BUCH", + "coordonnees_gps": [ + 44.5561823053, + -1.17530826791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17530826791, + 44.5561823053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "586e0e686a08453b1228a3ecc9d89b75ebc64984", + "fields": { + "ligne_5": "CAZAUX", + "code_commune_insee": "33529", + "libelle_d_acheminement": "LA TESTE DE BUCH", + "code_postal": "33260", + "nom_de_la_commune": "LA TESTE DE BUCH", + "coordonnees_gps": [ + 44.5561823053, + -1.17530826791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17530826791, + 44.5561823053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "878af6528149e4fd4e5675c61b5d97d8eb73a37d", + "fields": { + "code_commune_insee": "33531", + "nom_de_la_commune": "TIZAC DE CURTON", + "code_postal": "33420", + "coordonnees_gps": [ + 44.8247322767, + -0.242853466608 + ], + "libelle_d_acheminement": "TIZAC DE CURTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.242853466608, + 44.8247322767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1b50551a30e1bd0f8e0dfe7e41bec5dbdfd60df", + "fields": { + "code_commune_insee": "33532", + "nom_de_la_commune": "TIZAC DE LAPOUYADE", + "code_postal": "33620", + "coordonnees_gps": [ + 45.0701772537, + -0.314253428253 + ], + "libelle_d_acheminement": "TIZAC DE LAPOUYADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.314253428253, + 45.0701772537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2a6aacc38b68bccf6026f0242249ff55eaf0728", + "fields": { + "code_commune_insee": "33537", + "nom_de_la_commune": "UZESTE", + "code_postal": "33730", + "coordonnees_gps": [ + 44.4334139021, + -0.324575198234 + ], + "libelle_d_acheminement": "UZESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.324575198234, + 44.4334139021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88810b9964b18408fa99248e8cd0df07d1de611d", + "fields": { + "code_commune_insee": "33539", + "nom_de_la_commune": "VAYRES", + "code_postal": "33870", + "coordonnees_gps": [ + 44.8910656059, + -0.32583268578 + ], + "libelle_d_acheminement": "VAYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32583268578, + 44.8910656059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10355a0d8b8c3663c1a84412fb354efbbc2571dd", + "fields": { + "code_commune_insee": "33543", + "nom_de_la_commune": "VERDELAIS", + "code_postal": "33490", + "coordonnees_gps": [ + 44.592150286, + -0.248104423488 + ], + "libelle_d_acheminement": "VERDELAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.248104423488, + 44.592150286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ef5c61e512c397c1c5af9f54e5a555a7acfb8dd", + "fields": { + "code_commune_insee": "33546", + "nom_de_la_commune": "VIGNONET", + "code_postal": "33330", + "coordonnees_gps": [ + 44.8496333181, + -0.149970090399 + ], + "libelle_d_acheminement": "VIGNONET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.149970090399, + 44.8496333181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "531caee759429e9b3d72e88af7ebcd0dc2ac5f63", + "fields": { + "code_commune_insee": "33547", + "nom_de_la_commune": "VILLANDRAUT", + "code_postal": "33730", + "coordonnees_gps": [ + 44.4500209214, + -0.380716602185 + ], + "libelle_d_acheminement": "VILLANDRAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.380716602185, + 44.4500209214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6efec19537351f1511af781815e03e62d30ce3be", + "fields": { + "ligne_5": "LE CAP D AGDE", + "code_commune_insee": "34003", + "libelle_d_acheminement": "AGDE", + "code_postal": "34300", + "nom_de_la_commune": "AGDE", + "coordonnees_gps": [ + 43.309129116, + 3.48447903133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48447903133, + 43.309129116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "626ac532069bccca0229f13170bf227f835183a8", + "fields": { + "code_commune_insee": "34006", + "nom_de_la_commune": "AIGNE", + "code_postal": "34210", + "coordonnees_gps": [ + 43.3255517298, + 2.79308395136 + ], + "libelle_d_acheminement": "AIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79308395136, + 43.3255517298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c79910ea03cefed38b04fcc0ee59e012874bfaef", + "fields": { + "code_commune_insee": "34009", + "nom_de_la_commune": "ALIGNAN DU VENT", + "code_postal": "34290", + "coordonnees_gps": [ + 43.4688122746, + 3.33925724714 + ], + "libelle_d_acheminement": "ALIGNAN DU VENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33925724714, + 43.4688122746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3e07040172b9c383f56d6585097e5cdd808be29", + "fields": { + "code_commune_insee": "34017", + "nom_de_la_commune": "AUMES", + "code_postal": "34530", + "coordonnees_gps": [ + 43.4638784757, + 3.46993966613 + ], + "libelle_d_acheminement": "AUMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46993966613, + 43.4638784757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e38a0efb4d9052dfb91c8602d4b4c5e9fc811b3", + "fields": { + "code_commune_insee": "34021", + "nom_de_la_commune": "BABEAU BOULDOUX", + "code_postal": "34360", + "coordonnees_gps": [ + 43.4382106135, + 2.89298078323 + ], + "libelle_d_acheminement": "BABEAU BOULDOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89298078323, + 43.4382106135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4b923d5548b5ea8124b1d5526270848249c9ac1", + "fields": { + "code_commune_insee": "34024", + "nom_de_la_commune": "BALARUC LE VIEUX", + "code_postal": "34540", + "coordonnees_gps": [ + 43.4659799669, + 3.69713367505 + ], + "libelle_d_acheminement": "BALARUC LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69713367505, + 43.4659799669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63d496d1493a1fd3759d84927585c71ff3c3ce3a", + "fields": { + "code_commune_insee": "34026", + "nom_de_la_commune": "BEAUFORT", + "code_postal": "34210", + "coordonnees_gps": [ + 43.3040872042, + 2.76829342504 + ], + "libelle_d_acheminement": "BEAUFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76829342504, + 43.3040872042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea897e6e0f66e3eb018e57102f322a714ff0b376", + "fields": { + "code_commune_insee": "34029", + "nom_de_la_commune": "BELARGA", + "code_postal": "34230", + "coordonnees_gps": [ + 43.5541458971, + 3.50006172125 + ], + "libelle_d_acheminement": "BELARGA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50006172125, + 43.5541458971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49f4b1c28b0b4802ccb58c64d6943836a1829798", + "fields": { + "code_commune_insee": "34030", + "nom_de_la_commune": "BERLOU", + "code_postal": "34360", + "coordonnees_gps": [ + 43.4985990248, + 2.94998951427 + ], + "libelle_d_acheminement": "BERLOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94998951427, + 43.4985990248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e22983ee0758816a08426a3a852563428178130", + "fields": { + "code_commune_insee": "34034", + "nom_de_la_commune": "BOISSET", + "code_postal": "34220", + "coordonnees_gps": [ + 43.4017637442, + 2.69024605331 + ], + "libelle_d_acheminement": "BOISSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69024605331, + 43.4017637442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f520185c1f1d9a2cfc4ea67b1765d455f972d308", + "fields": { + "code_commune_insee": "34043", + "nom_de_la_commune": "BUZIGNARGUES", + "code_postal": "34160", + "coordonnees_gps": [ + 43.771599327, + 3.99491070508 + ], + "libelle_d_acheminement": "BUZIGNARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99491070508, + 43.771599327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e44cf5dd0a6cb66c7a43ab1a2681a4ad7d3f6516", + "fields": { + "code_commune_insee": "34046", + "nom_de_la_commune": "CAMBON ET SALVERGUES", + "code_postal": "34330", + "coordonnees_gps": [ + 43.625504452, + 2.89047084983 + ], + "libelle_d_acheminement": "CAMBON ET SALVERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89047084983, + 43.625504452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2facd369e40b566a721ba1dd01ad1d7704d1d02c", + "fields": { + "code_commune_insee": "34050", + "nom_de_la_commune": "CANDILLARGUES", + "code_postal": "34130", + "coordonnees_gps": [ + 43.6184336518, + 4.06397943606 + ], + "libelle_d_acheminement": "CANDILLARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06397943606, + 43.6184336518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0948ca3cd4ece1ede081af43c2aef1b47244fb4f", + "fields": { + "code_commune_insee": "34052", + "nom_de_la_commune": "CAPESTANG", + "code_postal": "34310", + "coordonnees_gps": [ + 43.3217608814, + 3.04813542922 + ], + "libelle_d_acheminement": "CAPESTANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04813542922, + 43.3217608814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ea82809532c5acc14075963338c9e1ea7c4a300", + "fields": { + "code_commune_insee": "34054", + "nom_de_la_commune": "CASSAGNOLES", + "code_postal": "34210", + "coordonnees_gps": [ + 43.3973278254, + 2.60178289175 + ], + "libelle_d_acheminement": "CASSAGNOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60178289175, + 43.3973278254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a1f83556f0f08d0ce2bf6f598b1e39478d2e47c", + "fields": { + "code_commune_insee": "34055", + "nom_de_la_commune": "CASTANET LE HAUT", + "code_postal": "34610", + "coordonnees_gps": [ + 43.6738023402, + 2.95490649454 + ], + "libelle_d_acheminement": "CASTANET LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95490649454, + 43.6738023402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b667b5e4b50f12ac54919fccdf271064b923510", + "fields": { + "code_commune_insee": "34057", + "nom_de_la_commune": "CASTELNAU LE LEZ", + "code_postal": "34170", + "coordonnees_gps": [ + 43.6380218809, + 3.91265416028 + ], + "libelle_d_acheminement": "CASTELNAU LE LEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91265416028, + 43.6380218809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e2d8d1c12baf95159683c87b77e89e17cdc7a62", + "fields": { + "code_commune_insee": "34058", + "nom_de_la_commune": "CASTRIES", + "code_postal": "34160", + "coordonnees_gps": [ + 43.6886913473, + 3.97909849679 + ], + "libelle_d_acheminement": "CASTRIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97909849679, + 43.6886913473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af3550d3f7f2aa3ec34c44ef61e733d4811a96cb", + "fields": { + "code_commune_insee": "34059", + "nom_de_la_commune": "LA CAUNETTE", + "code_postal": "34210", + "coordonnees_gps": [ + 43.3674487312, + 2.78721523132 + ], + "libelle_d_acheminement": "LA CAUNETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78721523132, + 43.3674487312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ecd5d810700f6983cfff55e14f7724f3b1a3f4a", + "fields": { + "code_commune_insee": "34060", + "nom_de_la_commune": "CAUSSE DE LA SELLE", + "code_postal": "34380", + "coordonnees_gps": [ + 43.793318405, + 3.62922803202 + ], + "libelle_d_acheminement": "CAUSSE DE LA SELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62922803202, + 43.793318405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4a9b5edb0fb0d15637019039422771eacff1fa8", + "fields": { + "code_commune_insee": "34062", + "nom_de_la_commune": "CAUSSINIOJOULS", + "code_postal": "34600", + "coordonnees_gps": [ + 43.5484030335, + 3.15563201931 + ], + "libelle_d_acheminement": "CAUSSINIOJOULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15563201931, + 43.5484030335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "655e2cfaed341f778b2c6265f158b0054e4e061d", + "fields": { + "code_commune_insee": "34065", + "nom_de_la_commune": "CAZEDARNES", + "code_postal": "34460", + "coordonnees_gps": [ + 43.4234094585, + 3.0282977991 + ], + "libelle_d_acheminement": "CAZEDARNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0282977991, + 43.4234094585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b68d1c0e1879701cbe1d22d3a31ad5a03d839378", + "fields": { + "code_commune_insee": "34069", + "nom_de_la_commune": "CAZOULS LES BEZIERS", + "code_postal": "34370", + "coordonnees_gps": [ + 43.3976310061, + 3.09968408339 + ], + "libelle_d_acheminement": "CAZOULS LES BEZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09968408339, + 43.3976310061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "342600eb5b1f8af2960e1d3307beee82a820964f", + "fields": { + "code_commune_insee": "34074", + "nom_de_la_commune": "CESSENON SUR ORB", + "code_postal": "34460", + "coordonnees_gps": [ + 43.454255953, + 3.04105685842 + ], + "libelle_d_acheminement": "CESSENON SUR ORB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04105685842, + 43.454255953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d86c025adff4a66b2ea16651fb11e5419f3cc423", + "fields": { + "code_commune_insee": "34082", + "nom_de_la_commune": "COMBAILLAUX", + "code_postal": "34980", + "coordonnees_gps": [ + 43.6724651023, + 3.77949432527 + ], + "libelle_d_acheminement": "COMBAILLAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77949432527, + 43.6724651023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aea3340c4e7c3ed04af730c383d7faba5f0686e8", + "fields": { + "code_commune_insee": "34084", + "nom_de_la_commune": "CORNEILHAN", + "code_postal": "34490", + "coordonnees_gps": [ + 43.4019158731, + 3.19646909988 + ], + "libelle_d_acheminement": "CORNEILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19646909988, + 43.4019158731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edb62d4843b3794866f14ce777ce303f3bdc1435", + "fields": { + "code_commune_insee": "34092", + "nom_de_la_commune": "CRUZY", + "code_postal": "34310", + "coordonnees_gps": [ + 43.3518501139, + 2.93451082669 + ], + "libelle_d_acheminement": "CRUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93451082669, + 43.3518501139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "410fae2b9aac48fc8697e39160ea042182a8d3f0", + "fields": { + "code_commune_insee": "34094", + "nom_de_la_commune": "ESPONDEILHAN", + "code_postal": "34290", + "coordonnees_gps": [ + 43.4372418767, + 3.25795790915 + ], + "libelle_d_acheminement": "ESPONDEILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25795790915, + 43.4372418767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bb676f7aa009eb58f3df44c91095f6fb35278a2", + "fields": { + "code_commune_insee": "34113", + "nom_de_la_commune": "GIGEAN", + "code_postal": "34770", + "coordonnees_gps": [ + 43.4940932526, + 3.72353998798 + ], + "libelle_d_acheminement": "GIGEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72353998798, + 43.4940932526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e1f0561e6fd9bf96491de872842e09f891939e3", + "fields": { + "code_commune_insee": "34124", + "nom_de_la_commune": "LACOSTE", + "code_postal": "34800", + "coordonnees_gps": [ + 43.6572095085, + 3.42316601881 + ], + "libelle_d_acheminement": "LACOSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42316601881, + 43.6572095085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00d53e4aa378d3e95b7a63448108decc54d77ce4", + "fields": { + "code_commune_insee": "34127", + "nom_de_la_commune": "LANSARGUES", + "code_postal": "34130", + "coordonnees_gps": [ + 43.6364436854, + 4.08270443666 + ], + "libelle_d_acheminement": "LANSARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08270443666, + 43.6364436854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bc2648474d214f290a5c58b91596a58c21f5abc", + "fields": { + "code_commune_insee": "34129", + "nom_de_la_commune": "LATTES", + "code_postal": "34970", + "coordonnees_gps": [ + 43.5638594056, + 3.90226222861 + ], + "libelle_d_acheminement": "LATTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90226222861, + 43.5638594056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0241f2c64947d1fbd8e79dcdcd1919a4904c29a", + "fields": { + "code_commune_insee": "34132", + "nom_de_la_commune": "LAUROUX", + "code_postal": "34700", + "coordonnees_gps": [ + 43.7915234446, + 3.27831492551 + ], + "libelle_d_acheminement": "LAUROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27831492551, + 43.7915234446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "698c75d39d5da2d7bc142f768711dd22f216bdb5", + "fields": { + "code_commune_insee": "34136", + "nom_de_la_commune": "LEZIGNAN LA CEBE", + "code_postal": "34120", + "coordonnees_gps": [ + 43.4922078632, + 3.43960981956 + ], + "libelle_d_acheminement": "LEZIGNAN LA CEBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43960981956, + 43.4922078632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6a31e05b009940b5900542014272585926fc745", + "fields": { + "code_commune_insee": "34143", + "nom_de_la_commune": "LOUPIAN", + "code_postal": "34140", + "coordonnees_gps": [ + 43.4494192218, + 3.62638267982 + ], + "libelle_d_acheminement": "LOUPIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62638267982, + 43.4494192218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07e4d894cdea4f1952376a3a6a2ed0ccf407cf39", + "fields": { + "code_commune_insee": "34145", + "nom_de_la_commune": "LUNEL", + "code_postal": "34400", + "coordonnees_gps": [ + 43.6820481757, + 4.13566472301 + ], + "libelle_d_acheminement": "LUNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13566472301, + 43.6820481757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "816e712f4de0128f9a3c071ffb1d2ce6067ed152", + "fields": { + "code_commune_insee": "34151", + "nom_de_la_commune": "MARSILLARGUES", + "code_postal": "34590", + "coordonnees_gps": [ + 43.6268280772, + 4.14781957357 + ], + "libelle_d_acheminement": "MARSILLARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14781957357, + 43.6268280772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "521b0210373b0c30af894bc542a1bdd6396ce538", + "fields": { + "code_commune_insee": "34152", + "nom_de_la_commune": "MAS DE LONDRES", + "code_postal": "34380", + "coordonnees_gps": [ + 43.7875830947, + 3.77381385903 + ], + "libelle_d_acheminement": "MAS DE LONDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77381385903, + 43.7875830947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a55ca24e746c03190371dff08d805dfe09f253be", + "fields": { + "code_commune_insee": "34158", + "nom_de_la_commune": "MINERVE", + "code_postal": "34210", + "coordonnees_gps": [ + 43.3629052396, + 2.72160547585 + ], + "libelle_d_acheminement": "MINERVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72160547585, + 43.3629052396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a5400ce3fb238d70f52408f5b76b3d1fc63b831", + "fields": { + "code_commune_insee": "34162", + "nom_de_la_commune": "MONTAGNAC", + "code_postal": "34530", + "coordonnees_gps": [ + 43.4745284586, + 3.51074216978 + ], + "libelle_d_acheminement": "MONTAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51074216978, + 43.4745284586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d60fdd315bf8bb03e2b86a8c1340b8e71fb47e4", + "fields": { + "code_commune_insee": "34164", + "nom_de_la_commune": "MONTAUD", + "code_postal": "34160", + "coordonnees_gps": [ + 43.7478625345, + 3.96019972895 + ], + "libelle_d_acheminement": "MONTAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96019972895, + 43.7478625345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28ffba50fd3b8e7b07b7cac4eb1ec2f92709e11c", + "fields": { + "code_commune_insee": "34172", + "nom_de_la_commune": "MONTPELLIER", + "code_postal": "34070", + "coordonnees_gps": [ + 43.6134409138, + 3.86851657896 + ], + "libelle_d_acheminement": "MONTPELLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86851657896, + 43.6134409138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68b93d383fd7f7d74440f770e1c5fba97afd7829", + "fields": { + "code_commune_insee": "34179", + "nom_de_la_commune": "MURVIEL LES MONTPELLIER", + "code_postal": "34570", + "coordonnees_gps": [ + 43.6095675101, + 3.73935842429 + ], + "libelle_d_acheminement": "MURVIEL LES MONTPELLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73935842429, + 43.6095675101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77a9517940d889c269770b4078ea7763429b4f49", + "fields": { + "code_commune_insee": "34186", + "nom_de_la_commune": "OCTON", + "code_postal": "34800", + "coordonnees_gps": [ + 43.6574397146, + 3.29580652136 + ], + "libelle_d_acheminement": "OCTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29580652136, + 43.6574397146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e195b2f77adb86a0f8e9341665be03d6d8bd618b", + "fields": { + "code_commune_insee": "34190", + "nom_de_la_commune": "OUPIA", + "code_postal": "34210", + "coordonnees_gps": [ + 43.2886870933, + 2.77613204437 + ], + "libelle_d_acheminement": "OUPIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77613204437, + 43.2886870933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd9f86548dad6c200bd41ebfb329605eb9b47096", + "fields": { + "code_commune_insee": "34191", + "nom_de_la_commune": "PAILHES", + "code_postal": "34490", + "coordonnees_gps": [ + 43.4371324494, + 3.18478770413 + ], + "libelle_d_acheminement": "PAILHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18478770413, + 43.4371324494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2190f5e25bb9e0eb4c4959d4bc3a95f09f6aee7e", + "fields": { + "code_commune_insee": "34192", + "nom_de_la_commune": "PALAVAS LES FLOTS", + "code_postal": "34250", + "coordonnees_gps": [ + 43.533536456, + 3.92620839566 + ], + "libelle_d_acheminement": "PALAVAS LES FLOTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92620839566, + 43.533536456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0395bd5e344cd9367847026f48b79a51e94e1a5e", + "fields": { + "code_commune_insee": "34203", + "nom_de_la_commune": "PINET", + "code_postal": "34850", + "coordonnees_gps": [ + 43.4090371213, + 3.51249503942 + ], + "libelle_d_acheminement": "PINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51249503942, + 43.4090371213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b07e39cf82bd29cf0221fd85d1092a7471b7781", + "fields": { + "code_commune_insee": "34206", + "nom_de_la_commune": "POILHES", + "code_postal": "34310", + "coordonnees_gps": [ + 43.3045807211, + 3.08955688711 + ], + "libelle_d_acheminement": "POILHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08955688711, + 43.3045807211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b95195167d7fa77c91876bbf4442cda46d7cf37c", + "fields": { + "code_commune_insee": "34215", + "nom_de_la_commune": "POUZOLS", + "code_postal": "34230", + "coordonnees_gps": [ + 43.6204813753, + 3.50913792041 + ], + "libelle_d_acheminement": "POUZOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50913792041, + 43.6204813753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b311c76950b2796a15917d10b4cc7156723b708", + "fields": { + "code_commune_insee": "34216", + "nom_de_la_commune": "LE PRADAL", + "code_postal": "34600", + "coordonnees_gps": [ + 43.6331733126, + 3.09603125078 + ], + "libelle_d_acheminement": "LE PRADAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09603125078, + 43.6331733126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59a972eae3cd64ea71e428eceac7fe6cc1c1cd8d", + "fields": { + "code_commune_insee": "34218", + "nom_de_la_commune": "PRADES SUR VERNAZOBRE", + "code_postal": "34360", + "coordonnees_gps": [ + 43.4587254561, + 2.97637908047 + ], + "libelle_d_acheminement": "PRADES SUR VERNAZOBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97637908047, + 43.4587254561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5703b2c9dddb269798baad3c02d3a738c42f07b8", + "fields": { + "code_commune_insee": "34220", + "nom_de_la_commune": "LE PUECH", + "code_postal": "34700", + "coordonnees_gps": [ + 43.6831429742, + 3.32501216649 + ], + "libelle_d_acheminement": "LE PUECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32501216649, + 43.6831429742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d104e188b2331176c7b414288b78b1e73d0fdcca", + "fields": { + "code_commune_insee": "34222", + "nom_de_la_commune": "PUILACHER", + "code_postal": "34230", + "coordonnees_gps": [ + 43.5667592874, + 3.50438177235 + ], + "libelle_d_acheminement": "PUILACHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50438177235, + 43.5667592874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b590666e97c33062ef189dd9358636940527a4a9", + "fields": { + "code_commune_insee": "34225", + "nom_de_la_commune": "PUISSERGUIER", + "code_postal": "34620", + "coordonnees_gps": [ + 43.3772339365, + 3.04590546447 + ], + "libelle_d_acheminement": "PUISSERGUIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04590546447, + 43.3772339365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c39a01491b686acf7ac59fda6d83916f1f8c3137", + "fields": { + "code_commune_insee": "34229", + "nom_de_la_commune": "RIOLS", + "code_postal": "34220", + "coordonnees_gps": [ + 43.5020076583, + 2.7978815483 + ], + "libelle_d_acheminement": "RIOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7978815483, + 43.5020076583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39d242302dec4098a60a3d9cd32eab800bbb6027", + "fields": { + "code_commune_insee": "34230", + "nom_de_la_commune": "LES RIVES", + "code_postal": "34520", + "coordonnees_gps": [ + 43.8557506126, + 3.26405102266 + ], + "libelle_d_acheminement": "LES RIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26405102266, + 43.8557506126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7d3f37ecf651a30fe6c55e895877b117d98af94", + "fields": { + "code_commune_insee": "34232", + "nom_de_la_commune": "ROQUEBRUN", + "code_postal": "34460", + "coordonnees_gps": [ + 43.5055301367, + 3.01020767963 + ], + "libelle_d_acheminement": "ROQUEBRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01020767963, + 43.5055301367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7eba308d84bbe512b4bedec7029d7980ec25f3f", + "fields": { + "code_commune_insee": "34239", + "nom_de_la_commune": "ST ANDRE DE SANGONIS", + "code_postal": "34725", + "coordonnees_gps": [ + 43.6502281651, + 3.50287642429 + ], + "libelle_d_acheminement": "ST ANDRE DE SANGONIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50287642429, + 43.6502281651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "625b6fb55f12747c0f9a45acb2320096fbc75b2f", + "fields": { + "code_commune_insee": "34243", + "nom_de_la_commune": "ST BAUZILLE DE PUTOIS", + "code_postal": "34190", + "coordonnees_gps": [ + 43.9007200249, + 3.75901045062 + ], + "libelle_d_acheminement": "ST BAUZILLE DE PUTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75901045062, + 43.9007200249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "033726f0dede788b8a2166c0226b4a0ec1a1bf3a", + "fields": { + "code_commune_insee": "34249", + "nom_de_la_commune": "ST DREZERY", + "code_postal": "34160", + "coordonnees_gps": [ + 43.7284558791, + 3.97774419373 + ], + "libelle_d_acheminement": "ST DREZERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97774419373, + 43.7284558791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d153c9269f6aa8d13f05edc251e1765b62cfb50", + "fields": { + "code_commune_insee": "34251", + "nom_de_la_commune": "ST ETIENNE DE GOURGAS", + "code_postal": "34700", + "coordonnees_gps": [ + 43.7836963728, + 3.38499935958 + ], + "libelle_d_acheminement": "ST ETIENNE DE GOURGAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38499935958, + 43.7836963728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d99a8f73641330d61648ee21149615cfb92c5af", + "fields": { + "code_commune_insee": "34259", + "nom_de_la_commune": "ST GEORGES D ORQUES", + "code_postal": "34680", + "coordonnees_gps": [ + 43.6168353652, + 3.77376629814 + ], + "libelle_d_acheminement": "ST GEORGES D ORQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77376629814, + 43.6168353652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d07139f4b8270c427a7a0ac9410e5df0fa675112", + "fields": { + "code_commune_insee": "34261", + "nom_de_la_commune": "ST GUILHEM LE DESERT", + "code_postal": "34150", + "coordonnees_gps": [ + 43.756664412, + 3.54505481445 + ], + "libelle_d_acheminement": "ST GUILHEM LE DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54505481445, + 43.756664412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64aa531e25e75cad3b497a5ab6fc024733367dd1", + "fields": { + "code_commune_insee": "34262", + "nom_de_la_commune": "ST GUIRAUD", + "code_postal": "34725", + "coordonnees_gps": [ + 43.6784032786, + 3.45134218605 + ], + "libelle_d_acheminement": "ST GUIRAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45134218605, + 43.6784032786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f3b55af09b1d793af45dd1474b4ddb2cc498736", + "fields": { + "code_commune_insee": "34264", + "nom_de_la_commune": "ST JEAN DE BUEGES", + "code_postal": "34380", + "coordonnees_gps": [ + 43.8341627793, + 3.60534795017 + ], + "libelle_d_acheminement": "ST JEAN DE BUEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60534795017, + 43.8341627793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "761756d109a6e12ee3f1eb7af1368e0d6e5b5b45", + "fields": { + "code_commune_insee": "34267", + "nom_de_la_commune": "ST JEAN DE FOS", + "code_postal": "34150", + "coordonnees_gps": [ + 43.6938600875, + 3.5464221395 + ], + "libelle_d_acheminement": "ST JEAN DE FOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5464221395, + 43.6938600875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95234fcf0d3b21bd084b2ca2baeaafb179d61340", + "fields": { + "code_commune_insee": "34271", + "nom_de_la_commune": "ST JULIEN", + "code_postal": "34390", + "coordonnees_gps": [ + 43.5848869061, + 2.9022163453 + ], + "libelle_d_acheminement": "ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9022163453, + 43.5848869061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e6db71409c465ff0d43a2295b05daa295606438", + "fields": { + "code_commune_insee": "34274", + "nom_de_la_commune": "ST MARTIN DE LONDRES", + "code_postal": "34380", + "coordonnees_gps": [ + 43.7926372953, + 3.70749671559 + ], + "libelle_d_acheminement": "ST MARTIN DE LONDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70749671559, + 43.7926372953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5289607cf4f9cacab822bf55812cdff581fb1b4c", + "fields": { + "code_commune_insee": "34281", + "nom_de_la_commune": "ST PARGOIRE", + "code_postal": "34230", + "coordonnees_gps": [ + 43.5312864116, + 3.54356674694 + ], + "libelle_d_acheminement": "ST PARGOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54356674694, + 43.5312864116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d477e8500c14a14d17ec172e1084f85bc1870cd1", + "fields": { + "code_commune_insee": "34296", + "nom_de_la_commune": "SAUSSINES", + "code_postal": "34160", + "coordonnees_gps": [ + 43.758954777, + 4.05038800559 + ], + "libelle_d_acheminement": "SAUSSINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05038800559, + 43.758954777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2764ce103058cbdb26397d1e14328773f73e0132", + "fields": { + "code_commune_insee": "34300", + "nom_de_la_commune": "SERVIAN", + "code_postal": "34290", + "coordonnees_gps": [ + 43.4143351267, + 3.30645261407 + ], + "libelle_d_acheminement": "SERVIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30645261407, + 43.4143351267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e92bc0624f02fa9560fd3ec7d23f7ed74fa44303", + "fields": { + "code_commune_insee": "34303", + "nom_de_la_commune": "SORBS", + "code_postal": "34520", + "coordonnees_gps": [ + 43.8909610556, + 3.40642995016 + ], + "libelle_d_acheminement": "SORBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40642995016, + 43.8909610556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fbc8dd852da5978c4e281bf1f2e62e81ae96479", + "fields": { + "code_commune_insee": "34308", + "nom_de_la_commune": "TAUSSAC LA BILLIERE", + "code_postal": "34600", + "coordonnees_gps": [ + 43.6330025046, + 3.07651674533 + ], + "libelle_d_acheminement": "TAUSSAC LA BILLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07651674533, + 43.6330025046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7c7512df68901f374ddd8b23b8f3fdd9c25281f", + "fields": { + "code_commune_insee": "34312", + "nom_de_la_commune": "LA TOUR SUR ORB", + "code_postal": "34260", + "coordonnees_gps": [ + 43.6555250797, + 3.15144431615 + ], + "libelle_d_acheminement": "LA TOUR SUR ORB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15144431615, + 43.6555250797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe8c18ed0334bc9c61191c1925889ccf3b65cf94", + "fields": { + "code_commune_insee": "34317", + "nom_de_la_commune": "LA VACQUERIE ET ST MARTIN DE CASTRIES", + "code_postal": "34520", + "coordonnees_gps": [ + 43.7940763777, + 3.481075382 + ], + "libelle_d_acheminement": "LA VACQUERIE ST MARTIN CASTRIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.481075382, + 43.7940763777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d986f169c798021559e443021a504b5d7a95013e", + "fields": { + "code_commune_insee": "34320", + "nom_de_la_commune": "VAILHAUQUES", + "code_postal": "34570", + "coordonnees_gps": [ + 43.6641779009, + 3.72842619012 + ], + "libelle_d_acheminement": "VAILHAUQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72842619012, + 43.6641779009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0ef171e4f3e6e78e56bead43329b0b7df0936b6", + "fields": { + "code_commune_insee": "34321", + "nom_de_la_commune": "VALERGUES", + "code_postal": "34130", + "coordonnees_gps": [ + 43.67240395, + 4.05870783975 + ], + "libelle_d_acheminement": "VALERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05870783975, + 43.67240395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d3c9cacb2100bf9ea3aaf58f2d8dc9a25aba5fc", + "fields": { + "code_commune_insee": "34329", + "nom_de_la_commune": "VENDRES", + "code_postal": "34350", + "coordonnees_gps": [ + 43.2581519414, + 3.22720260244 + ], + "libelle_d_acheminement": "VENDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22720260244, + 43.2581519414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c1a3d8164250e1b0ac44b9b5218bdc30e808acd", + "fields": { + "code_commune_insee": "34332", + "nom_de_la_commune": "VIAS", + "code_postal": "34450", + "coordonnees_gps": [ + 43.3131142636, + 3.39889710362 + ], + "libelle_d_acheminement": "VIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39889710362, + 43.3131142636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d7f57eec0d09c3c75cd880201e297b5bba403f5", + "fields": { + "code_commune_insee": "34334", + "nom_de_la_commune": "VIEUSSAN", + "code_postal": "34390", + "coordonnees_gps": [ + 43.5401854893, + 3.00065269263 + ], + "libelle_d_acheminement": "VIEUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00065269263, + 43.5401854893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "110300ae8828aba68abc5d9c7db91e0026f81b96", + "fields": { + "code_commune_insee": "34337", + "nom_de_la_commune": "VILLENEUVE LES MAGUELONE", + "code_postal": "34750", + "coordonnees_gps": [ + 43.5249723481, + 3.85846205367 + ], + "libelle_d_acheminement": "VILLENEUVE LES MAGUELONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85846205367, + 43.5249723481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00065db7c31c3109107c0e8448ce068851daa686", + "fields": { + "code_commune_insee": "34340", + "nom_de_la_commune": "VILLETELLE", + "code_postal": "34400", + "coordonnees_gps": [ + 43.7241089039, + 4.1368883121 + ], + "libelle_d_acheminement": "VILLETELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1368883121, + 43.7241089039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81408e18b7efad4ad08cfa3949c62f55b0010829", + "fields": { + "code_commune_insee": "34342", + "nom_de_la_commune": "VIOLS EN LAVAL", + "code_postal": "34380", + "coordonnees_gps": [ + 43.7448968901, + 3.74026730313 + ], + "libelle_d_acheminement": "VIOLS EN LAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74026730313, + 43.7448968901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fc89b5115767fa16b38fdaf2c424dac7c999200", + "fields": { + "code_commune_insee": "35001", + "nom_de_la_commune": "ACIGNE", + "code_postal": "35690", + "coordonnees_gps": [ + 48.1464008617, + -1.51879762112 + ], + "libelle_d_acheminement": "ACIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51879762112, + 48.1464008617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ebe15c6d5170cf55390b07c706155290c5f3129", + "fields": { + "ligne_5": "TREMBLAY", + "code_commune_insee": "35004", + "libelle_d_acheminement": "VAL COUESNON", + "code_postal": "35460", + "nom_de_la_commune": "VAL COUESNON", + "coordonnees_gps": [ + 48.4623399244, + -1.47875897631 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47875897631, + 48.4623399244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75582b16846d9f923976b128b6284eea0ee03bc4", + "fields": { + "code_commune_insee": "35005", + "nom_de_la_commune": "ARBRISSEL", + "code_postal": "35130", + "coordonnees_gps": [ + 47.9272051902, + -1.29532585223 + ], + "libelle_d_acheminement": "ARBRISSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29532585223, + 47.9272051902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c187e8fc188e92d46f6a00f45ef2ab2dc0eba28d", + "fields": { + "code_commune_insee": "35016", + "nom_de_la_commune": "BAULON", + "code_postal": "35580", + "coordonnees_gps": [ + 47.9948578338, + -1.92813623016 + ], + "libelle_d_acheminement": "BAULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92813623016, + 47.9948578338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84b409fe847f9ce4f44ba6f5eb6f4dd260d352c3", + "fields": { + "code_commune_insee": "35018", + "nom_de_la_commune": "LA BAZOUGE DU DESERT", + "code_postal": "35420", + "coordonnees_gps": [ + 48.4439442954, + -1.10950795869 + ], + "libelle_d_acheminement": "LA BAZOUGE DU DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10950795869, + 48.4439442954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21da74e4aaa841226d373872fa3caf136b4fc464", + "fields": { + "code_commune_insee": "35019", + "nom_de_la_commune": "BAZOUGES LA PEROUSE", + "code_postal": "35560", + "coordonnees_gps": [ + 48.4405619878, + -1.56381100666 + ], + "libelle_d_acheminement": "BAZOUGES LA PEROUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56381100666, + 48.4405619878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c73f9b882e90921f1cf334bad0a88d19870cc4c8", + "fields": { + "code_commune_insee": "35021", + "nom_de_la_commune": "BEAUCE", + "code_postal": "35133", + "coordonnees_gps": [ + 48.3472640722, + -1.15617278837 + ], + "libelle_d_acheminement": "BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15617278837, + 48.3472640722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af58b3619235fd1f0c6582603a8de2256d75aaef", + "fields": { + "code_commune_insee": "35027", + "nom_de_la_commune": "BOISGERVILLY", + "code_postal": "35360", + "coordonnees_gps": [ + 48.1663042024, + -2.08373655963 + ], + "libelle_d_acheminement": "BOISGERVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08373655963, + 48.1663042024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c5260040bdd98ac7a3d320a21cd37e908ac289f", + "fields": { + "code_commune_insee": "35041", + "nom_de_la_commune": "BRIE", + "code_postal": "35150", + "coordonnees_gps": [ + 47.9511752369, + -1.55057030783 + ], + "libelle_d_acheminement": "BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55057030783, + 47.9511752369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e88db58b40b99aa37b23472b8b6a73521fd290e", + "fields": { + "code_commune_insee": "35045", + "nom_de_la_commune": "BRUC SUR AFF", + "code_postal": "35550", + "coordonnees_gps": [ + 47.8141653768, + -2.00570754872 + ], + "libelle_d_acheminement": "BRUC SUR AFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.00570754872, + 47.8141653768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0f1858ccbbc478e68e7dd78d84a63900460c07a", + "fields": { + "code_commune_insee": "35049", + "nom_de_la_commune": "CANCALE", + "code_postal": "35260", + "coordonnees_gps": [ + 48.6835209896, + -1.8650827351 + ], + "libelle_d_acheminement": "CANCALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8650827351, + 48.6835209896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0399ae88fef2d8650e8f2d7f3dff6b0542b248f2", + "fields": { + "code_commune_insee": "35054", + "nom_de_la_commune": "CHANTELOUP", + "code_postal": "35150", + "coordonnees_gps": [ + 47.9537247439, + -1.62469972831 + ], + "libelle_d_acheminement": "CHANTELOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62469972831, + 47.9537247439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf0ea6ca09faefa1eafcdeb2916485e283a5a0ad", + "fields": { + "code_commune_insee": "35059", + "nom_de_la_commune": "LA CHAPELLE DES FOUGERETZ", + "code_postal": "35520", + "coordonnees_gps": [ + 48.1768937301, + -1.74067185823 + ], + "libelle_d_acheminement": "LA CHAPELLE DES FOUGERETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74067185823, + 48.1768937301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae4631a74fb27f5ae6137dedfb8f22e45399bfad", + "fields": { + "ligne_5": "ST AUBIN DU PAVAIL", + "code_commune_insee": "35069", + "libelle_d_acheminement": "CHATEAUGIRON", + "code_postal": "35410", + "nom_de_la_commune": "CHATEAUGIRON", + "coordonnees_gps": [ + 48.0441575779, + -1.50016256863 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50016256863, + 48.0441575779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8d69091a7dd6ee2f5dfe794bd0e28af8cc389ca", + "fields": { + "code_commune_insee": "35070", + "nom_de_la_commune": "CHATEAUNEUF D ILLE ET VILAINE", + "code_postal": "35430", + "coordonnees_gps": [ + 48.5578928672, + -1.92925036505 + ], + "libelle_d_acheminement": "CHATEAUNEUF D ILLE ET VILAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92925036505, + 48.5578928672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4539f20f6b8a48227ca053cfee8c70b9cc447363", + "fields": { + "code_commune_insee": "35076", + "nom_de_la_commune": "CHAVAGNE", + "code_postal": "35310", + "coordonnees_gps": [ + 48.0561574005, + -1.78649242036 + ], + "libelle_d_acheminement": "CHAVAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78649242036, + 48.0561574005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecb7a7736e6d1fb71c81135e49f037f1dc93193f", + "fields": { + "code_commune_insee": "35077", + "nom_de_la_commune": "CHELUN", + "code_postal": "35640", + "coordonnees_gps": [ + 47.8550873481, + -1.24349817887 + ], + "libelle_d_acheminement": "CHELUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24349817887, + 47.8550873481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95a60baf40be208c5b9f411465d6482c6776800a", + "fields": { + "code_commune_insee": "35080", + "nom_de_la_commune": "CINTRE", + "code_postal": "35310", + "coordonnees_gps": [ + 48.108708615, + -1.88667263001 + ], + "libelle_d_acheminement": "CINTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.88667263001, + 48.108708615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e66875791a744d40ceb8480e67b2b71d1f87c335", + "fields": { + "code_commune_insee": "35082", + "nom_de_la_commune": "COESMES", + "code_postal": "35134", + "coordonnees_gps": [ + 47.8725233348, + -1.41640449384 + ], + "libelle_d_acheminement": "COESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41640449384, + 47.8725233348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b367071169fcc4a017568351c356c785d466bd41", + "fields": { + "code_commune_insee": "35089", + "nom_de_la_commune": "LA COUYERE", + "code_postal": "35320", + "coordonnees_gps": [ + 47.8939265628, + -1.50149818667 + ], + "libelle_d_acheminement": "LA COUYERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50149818667, + 47.8939265628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98d2dbbe28038c46f72477c03e88d40ae3ef7fa2", + "fields": { + "code_commune_insee": "35093", + "nom_de_la_commune": "DINARD", + "code_postal": "35800", + "coordonnees_gps": [ + 48.6241805945, + -2.0619828606 + ], + "libelle_d_acheminement": "DINARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.0619828606, + 48.6241805945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d23c600e89c15311e99235cf152c51a8ec56f725", + "fields": { + "code_commune_insee": "35095", + "nom_de_la_commune": "DOL DE BRETAGNE", + "code_postal": "35120", + "coordonnees_gps": [ + 48.5364110141, + -1.74135530934 + ], + "libelle_d_acheminement": "DOL DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74135530934, + 48.5364110141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7dffffdc73b6df209f70bf6d05ffab42b127663", + "fields": { + "code_commune_insee": "35096", + "nom_de_la_commune": "DOMAGNE", + "code_postal": "35113", + "coordonnees_gps": [ + 48.0678122281, + -1.40586957147 + ], + "libelle_d_acheminement": "DOMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40586957147, + 48.0678122281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2782ab1b0cfaac095e7e57a066428c9904556a7f", + "fields": { + "code_commune_insee": "35105", + "nom_de_la_commune": "ERBREE", + "code_postal": "35500", + "coordonnees_gps": [ + 48.1094104255, + -1.11698541654 + ], + "libelle_d_acheminement": "ERBREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11698541654, + 48.1094104255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "206d4eb831893c22cde6ef2089fb476c2f153474", + "fields": { + "code_commune_insee": "35120", + "nom_de_la_commune": "GEVEZE", + "code_postal": "35850", + "coordonnees_gps": [ + 48.2133254705, + -1.79930703575 + ], + "libelle_d_acheminement": "GEVEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79930703575, + 48.2133254705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6177345a693a98a0b277fec080a17786a82f3e44", + "fields": { + "code_commune_insee": "35126", + "nom_de_la_commune": "GUICHEN", + "code_postal": "35580", + "coordonnees_gps": [ + 47.9653877316, + -1.79026270939 + ], + "libelle_d_acheminement": "GUICHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79026270939, + 47.9653877316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cb5ecdb61d6f07a7776011fc731688435a98c2d", + "fields": { + "ligne_5": "BAZOUGES SOUS HEDE", + "code_commune_insee": "35130", + "libelle_d_acheminement": "HEDE BAZOUGES", + "code_postal": "35630", + "nom_de_la_commune": "HEDE BAZOUGES", + "coordonnees_gps": [ + 48.3018808207, + -1.77748405021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77748405021, + 48.3018808207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7337a9270959b57ca334f7056e117030c9088afb", + "fields": { + "code_commune_insee": "35148", + "nom_de_la_commune": "LANRIGAN", + "code_postal": "35270", + "coordonnees_gps": [ + 48.3912514208, + -1.69125449269 + ], + "libelle_d_acheminement": "LANRIGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69125449269, + 48.3912514208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a907b0c40c866ea73d83404f3051285e276b27b1", + "fields": { + "code_commune_insee": "35152", + "nom_de_la_commune": "LIFFRE", + "code_postal": "35340", + "coordonnees_gps": [ + 48.204097581, + -1.51420907793 + ], + "libelle_d_acheminement": "LIFFRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51420907793, + 48.204097581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8355dc5042eaf67d3b40dffe6c7a3a3aafee0e77", + "fields": { + "code_commune_insee": "35156", + "nom_de_la_commune": "LONGAULNAY", + "code_postal": "35190", + "coordonnees_gps": [ + 48.3091791163, + -1.94199814381 + ], + "libelle_d_acheminement": "LONGAULNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.94199814381, + 48.3091791163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ac2332cb5f04fbe7af49d6a87f830452dcdd156", + "fields": { + "code_commune_insee": "35160", + "nom_de_la_commune": "LOUTEHEL", + "code_postal": "35330", + "coordonnees_gps": [ + 47.9372074975, + -2.08044398757 + ], + "libelle_d_acheminement": "LOUTEHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08044398757, + 47.9372074975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c03edd8b1156d7896bd7c5bd28789ac5ec52855", + "fields": { + "code_commune_insee": "35178", + "nom_de_la_commune": "MEZIERES SUR COUESNON", + "code_postal": "35140", + "coordonnees_gps": [ + 48.2971797234, + -1.43837213468 + ], + "libelle_d_acheminement": "MEZIERES SUR COUESNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43837213468, + 48.2971797234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d22a2c5b602ec6a7148cfbd44db6add461862efc", + "fields": { + "code_commune_insee": "35179", + "nom_de_la_commune": "MINIAC MORVAN", + "code_postal": "35540", + "coordonnees_gps": [ + 48.5246933441, + -1.89543357334 + ], + "libelle_d_acheminement": "MINIAC MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89543357334, + 48.5246933441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae16c31910b53127ec68703deb693ff3e3887c9c", + "fields": { + "ligne_5": "VIEUX BOURG", + "code_commune_insee": "35179", + "libelle_d_acheminement": "MINIAC MORVAN", + "code_postal": "35540", + "nom_de_la_commune": "MINIAC MORVAN", + "coordonnees_gps": [ + 48.5246933441, + -1.89543357334 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89543357334, + 48.5246933441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1783f1e249a5bdd079660f365333e77f203f4cca", + "fields": { + "code_commune_insee": "35180", + "nom_de_la_commune": "MINIAC SOUS BECHEREL", + "code_postal": "35190", + "coordonnees_gps": [ + 48.2810885875, + -1.92727123797 + ], + "libelle_d_acheminement": "MINIAC SOUS BECHEREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92727123797, + 48.2810885875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1902c5a810d530d863dbc9cfa7ccfb6ec15e332b", + "fields": { + "code_commune_insee": "35181", + "nom_de_la_commune": "LE MINIHIC SUR RANCE", + "code_postal": "35870", + "coordonnees_gps": [ + 48.5755697077, + -2.01309736708 + ], + "libelle_d_acheminement": "LE MINIHIC SUR RANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01309736708, + 48.5755697077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe91d9e16c16258b16a74d3548bb5b4115f36eb6", + "fields": { + "code_commune_insee": "35184", + "nom_de_la_commune": "MONTAUBAN DE BRETAGNE", + "code_postal": "35360", + "coordonnees_gps": [ + 48.2028996948, + -2.06476180878 + ], + "libelle_d_acheminement": "MONTAUBAN DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06476180878, + 48.2028996948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24c88d807409725d9a6db0b78f085dbab7d88e06", + "fields": { + "code_commune_insee": "35190", + "nom_de_la_commune": "MONTHAULT", + "code_postal": "35420", + "coordonnees_gps": [ + 48.5121983633, + -1.17562696085 + ], + "libelle_d_acheminement": "MONTHAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17562696085, + 48.5121983633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edea477004f85411f6a5f8095fa9fd3d14a0dde9", + "fields": { + "code_commune_insee": "35199", + "nom_de_la_commune": "MOUSSE", + "code_postal": "35130", + "coordonnees_gps": [ + 47.9176957127, + -1.27923276368 + ], + "libelle_d_acheminement": "MOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27923276368, + 47.9176957127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c5bd669af04dfd9218c100075162f1781c79d2d", + "fields": { + "code_commune_insee": "35201", + "nom_de_la_commune": "MUEL", + "code_postal": "35290", + "coordonnees_gps": [ + 48.119750069, + -2.16170563295 + ], + "libelle_d_acheminement": "MUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16170563295, + 48.119750069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64cd12f20c8099777f2bd39a5c26cdbed9e6bd01", + "fields": { + "code_commune_insee": "35207", + "nom_de_la_commune": "NOYAL SUR VILAINE", + "code_postal": "35530", + "coordonnees_gps": [ + 48.0914044616, + -1.50548866524 + ], + "libelle_d_acheminement": "NOYAL SUR VILAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50548866524, + 48.0914044616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fef5dedb4f7f16b3cc704451df03f5d7e29938a", + "fields": { + "code_commune_insee": "35214", + "nom_de_la_commune": "PARCE", + "code_postal": "35210", + "coordonnees_gps": [ + 48.2710203075, + -1.19491182796 + ], + "libelle_d_acheminement": "PARCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19491182796, + 48.2710203075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a627e37a4e73553d89523b859b79be1aeab2fa60", + "fields": { + "code_commune_insee": "35215", + "nom_de_la_commune": "PARIGNE", + "code_postal": "35133", + "coordonnees_gps": [ + 48.4254993536, + -1.19808031545 + ], + "libelle_d_acheminement": "PARIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19808031545, + 48.4254993536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "735c888e50565879300c9c735647eca4c899d9df", + "fields": { + "code_commune_insee": "35229", + "nom_de_la_commune": "POCE LES BOIS", + "code_postal": "35500", + "coordonnees_gps": [ + 48.115220187, + -1.25960973465 + ], + "libelle_d_acheminement": "POCE LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25960973465, + 48.115220187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7e30c6edf7a48c6f8c72338af4d80fd8ff731eb", + "fields": { + "code_commune_insee": "35233", + "nom_de_la_commune": "QUEBRIAC", + "code_postal": "35190", + "coordonnees_gps": [ + 48.3560951211, + -1.81258742693 + ], + "libelle_d_acheminement": "QUEBRIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.81258742693, + 48.3560951211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bd308e6e06270b6357d5b26e00aaa53049dbbe3", + "fields": { + "code_commune_insee": "35238", + "nom_de_la_commune": "RENNES", + "code_postal": "35000", + "coordonnees_gps": [ + 48.1119791219, + -1.68186449144 + ], + "libelle_d_acheminement": "RENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68186449144, + 48.1119791219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8ae0cfdaa68ca3f283bf5512c3d7145ad59a733", + "fields": { + "code_commune_insee": "35246", + "nom_de_la_commune": "ROZ LANDRIEUX", + "code_postal": "35120", + "coordonnees_gps": [ + 48.5458114056, + -1.81733391785 + ], + "libelle_d_acheminement": "ROZ LANDRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.81733391785, + 48.5458114056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95afb13bacbd2fd897328a05f8483368d42acb19", + "fields": { + "code_commune_insee": "35255", + "nom_de_la_commune": "ST BENOIT DES ONDES", + "code_postal": "35114", + "coordonnees_gps": [ + 48.613788991, + -1.86036735113 + ], + "libelle_d_acheminement": "ST BENOIT DES ONDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86036735113, + 48.613788991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9ed5a579380fb4ba61388c826ada58b91b42a47", + "fields": { + "ligne_5": "ST MARC SUR COUESNON", + "code_commune_insee": "35282", + "libelle_d_acheminement": "RIVES DU COUESNON", + "code_postal": "35140", + "nom_de_la_commune": "RIVES DU COUESNON", + "coordonnees_gps": [ + 48.2768095716, + -1.36810224872 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36810224872, + 48.2768095716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce3a2c358f82943e7dbd2cdc1f1baa1ce0cd260e", + "fields": { + "code_commune_insee": "35288", + "nom_de_la_commune": "ST MALO", + "code_postal": "35400", + "coordonnees_gps": [ + 48.6400443482, + -1.98060627256 + ], + "libelle_d_acheminement": "ST MALO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98060627256, + 48.6400443482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4333a120e62ddc0663e8096900f762c7eeabd289", + "fields": { + "code_commune_insee": "35295", + "nom_de_la_commune": "ST MAUGAN", + "code_postal": "35750", + "coordonnees_gps": [ + 48.1367408206, + -2.10234592553 + ], + "libelle_d_acheminement": "ST MAUGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.10234592553, + 48.1367408206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b90b87012889746753567479ae4f7a6813c2a25e", + "fields": { + "code_commune_insee": "35297", + "nom_de_la_commune": "ST MEEN LE GRAND", + "code_postal": "35290", + "coordonnees_gps": [ + 48.1925581351, + -2.19497591455 + ], + "libelle_d_acheminement": "ST MEEN LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.19497591455, + 48.1925581351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acb5dd7a3cd94d22496ac1d38c9fd685c8c1c179", + "fields": { + "code_commune_insee": "35299", + "nom_de_la_commune": "ST MELOIR DES ONDES", + "code_postal": "35350", + "coordonnees_gps": [ + 48.6387125438, + -1.90517612803 + ], + "libelle_d_acheminement": "ST MELOIR DES ONDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.90517612803, + 48.6387125438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eee6d397a5cc7450638a5e417481d11f9a0b774", + "fields": { + "code_commune_insee": "35300", + "nom_de_la_commune": "ST M HERVE", + "code_postal": "35500", + "coordonnees_gps": [ + 48.1724748255, + -1.11096874338 + ], + "libelle_d_acheminement": "ST M HERVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11096874338, + 48.1724748255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "084d9934217f023d2c94a1daa1532c0eb11f353f", + "fields": { + "ligne_5": "LANHELIN", + "code_commune_insee": "35308", + "libelle_d_acheminement": "MESNIL ROC H", + "code_postal": "35720", + "nom_de_la_commune": "MESNIL ROC H", + "coordonnees_gps": [ + 48.4550260435, + -1.88873891943 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.88873891943, + 48.4550260435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7358332447ac9a6f252d53f011a4f62081cee441", + "fields": { + "code_commune_insee": "35316", + "nom_de_la_commune": "ST SULPICE DES LANDES", + "code_postal": "35390", + "coordonnees_gps": [ + 47.7769253675, + -1.62552770861 + ], + "libelle_d_acheminement": "ST SULPICE DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62552770861, + 47.7769253675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c7f5143e79731d338395d10dc6b33815fb4d2f4", + "fields": { + "code_commune_insee": "35319", + "nom_de_la_commune": "ST THURIAL", + "code_postal": "35310", + "coordonnees_gps": [ + 48.0335297683, + -1.94037369583 + ], + "libelle_d_acheminement": "ST THURIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.94037369583, + 48.0335297683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e0f0baca95458256e42cba1fd51cb2a81e9ecc7", + "fields": { + "code_commune_insee": "35321", + "nom_de_la_commune": "SAULNIERES", + "code_postal": "35320", + "coordonnees_gps": [ + 47.9194668221, + -1.57761100368 + ], + "libelle_d_acheminement": "SAULNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57761100368, + 47.9194668221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f6d249f78bbd06e3d85f99a91290d69fe07bfa3", + "fields": { + "code_commune_insee": "35331", + "nom_de_la_commune": "TALENSAC", + "code_postal": "35160", + "coordonnees_gps": [ + 48.0906335682, + -1.92552544674 + ], + "libelle_d_acheminement": "TALENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92552544674, + 48.0906335682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12fccc5a6442df8e37fb0bbb18c1d2d67495f07b", + "fields": { + "code_commune_insee": "35338", + "nom_de_la_commune": "TORCE", + "code_postal": "35370", + "coordonnees_gps": [ + 48.06102043, + -1.27189716204 + ], + "libelle_d_acheminement": "TORCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27189716204, + 48.06102043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "771a2c17ab40bf3f96724f2bf406d63e9bc21d6c", + "fields": { + "code_commune_insee": "35352", + "nom_de_la_commune": "VERN SUR SEICHE", + "code_postal": "35770", + "coordonnees_gps": [ + 48.0525245014, + -1.60521106164 + ], + "libelle_d_acheminement": "VERN SUR SEICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60521106164, + 48.0525245014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df619b4d239bfaaac57781409de21e560b368782", + "fields": { + "code_commune_insee": "35362", + "nom_de_la_commune": "LE TRONCHET", + "code_postal": "35540", + "coordonnees_gps": [ + 48.4926615398, + -1.84121493446 + ], + "libelle_d_acheminement": "LE TRONCHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84121493446, + 48.4926615398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82c3b8f515c68677cb07bb64fd8da25a8c33094d", + "fields": { + "code_commune_insee": "36003", + "nom_de_la_commune": "AMBRAULT", + "code_postal": "36120", + "coordonnees_gps": [ + 46.7837338524, + 1.94971417939 + ], + "libelle_d_acheminement": "AMBRAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94971417939, + 46.7837338524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcc6b31eedc9fc80e19b9e271eaa29dce797854c", + "fields": { + "code_commune_insee": "36008", + "nom_de_la_commune": "ARPHEUILLES", + "code_postal": "36700", + "coordonnees_gps": [ + 46.8997863068, + 1.27397966099 + ], + "libelle_d_acheminement": "ARPHEUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27397966099, + 46.8997863068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32274ab9eb03b56a44688b1b889a2953f58f227f", + "fields": { + "code_commune_insee": "36009", + "nom_de_la_commune": "ARTHON", + "code_postal": "36330", + "coordonnees_gps": [ + 46.6931304896, + 1.71130740486 + ], + "libelle_d_acheminement": "ARTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71130740486, + 46.6931304896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56fc2c05f4dfa2269bec509f671daf7ab3c112fc", + "fields": { + "code_commune_insee": "36027", + "nom_de_la_commune": "BRIVES", + "code_postal": "36100", + "coordonnees_gps": [ + 46.8571427122, + 1.92583011127 + ], + "libelle_d_acheminement": "BRIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92583011127, + 46.8571427122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bda5a924f5fcf489f672cbde32e05b91db2a6e3a", + "fields": { + "code_commune_insee": "36034", + "nom_de_la_commune": "CHABRIS", + "code_postal": "36210", + "coordonnees_gps": [ + 47.2519122488, + 1.66198740226 + ], + "libelle_d_acheminement": "CHABRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66198740226, + 47.2519122488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43b48a567509517f175d90c84dd953aef8a3d3e6", + "fields": { + "code_commune_insee": "36038", + "nom_de_la_commune": "CHAMPILLET", + "code_postal": "36160", + "coordonnees_gps": [ + 46.5468094689, + 2.10739016471 + ], + "libelle_d_acheminement": "CHAMPILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10739016471, + 46.5468094689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbf813dfe2a06c5666e678054c740cdf4404ea0b", + "fields": { + "code_commune_insee": "36045", + "nom_de_la_commune": "CHATILLON SUR INDRE", + "code_postal": "36700", + "coordonnees_gps": [ + 46.9917064296, + 1.17509631629 + ], + "libelle_d_acheminement": "CHATILLON SUR INDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17509631629, + 46.9917064296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee2552b30baa7595aaa85741370360e1c536f20a", + "fields": { + "code_commune_insee": "36049", + "nom_de_la_commune": "CHAZELET", + "code_postal": "36170", + "coordonnees_gps": [ + 46.5082146993, + 1.43370852289 + ], + "libelle_d_acheminement": "CHAZELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43370852289, + 46.5082146993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2136b40910e427196cdc285b54c82a5d9660809d", + "fields": { + "code_commune_insee": "36050", + "nom_de_la_commune": "CHEZELLES", + "code_postal": "36500", + "coordonnees_gps": [ + 46.8939222483, + 1.56256220067 + ], + "libelle_d_acheminement": "CHEZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56256220067, + 46.8939222483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df8a9c6cfdf0443f0826893c128870d02ba25901", + "fields": { + "ligne_5": "SCOURY", + "code_commune_insee": "36053", + "libelle_d_acheminement": "CIRON", + "code_postal": "36300", + "nom_de_la_commune": "CIRON", + "coordonnees_gps": [ + 46.6323391701, + 1.26102864126 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26102864126, + 46.6323391701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82c5c1ac2168f7e8d60a7ff61e9b454dfada4b05", + "fields": { + "code_commune_insee": "36058", + "nom_de_la_commune": "CONCREMIERS", + "code_postal": "36300", + "coordonnees_gps": [ + 46.5939953457, + 1.01591887364 + ], + "libelle_d_acheminement": "CONCREMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01591887364, + 46.5939953457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f2231b8d7d608ab2e58b3aaf922428e548ba8db", + "fields": { + "code_commune_insee": "36062", + "nom_de_la_commune": "CUZION", + "code_postal": "36190", + "coordonnees_gps": [ + 46.4715144043, + 1.61693641258 + ], + "libelle_d_acheminement": "CUZION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61693641258, + 46.4715144043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b5f0c4d54b29d4b66a1fa20fd9c6164bed948b3", + "fields": { + "code_commune_insee": "36066", + "nom_de_la_commune": "DOUADIC", + "code_postal": "36300", + "coordonnees_gps": [ + 46.7039740517, + 1.1179251996 + ], + "libelle_d_acheminement": "DOUADIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1179251996, + 46.7039740517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09440183a37681b0f63ad8ccc6827a9088664a8b", + "fields": { + "code_commune_insee": "36067", + "nom_de_la_commune": "DUNET", + "code_postal": "36310", + "coordonnees_gps": [ + 46.4695171037, + 1.28603119899 + ], + "libelle_d_acheminement": "DUNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28603119899, + 46.4695171037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1d4dbdfb58cdb91d8bc8712beaa0f4f3d6e23e2", + "fields": { + "code_commune_insee": "36068", + "nom_de_la_commune": "DUN LE POELIER", + "code_postal": "36210", + "coordonnees_gps": [ + 47.2189643606, + 1.7473439973 + ], + "libelle_d_acheminement": "DUN LE POELIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7473439973, + 47.2189643606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "196f84f1a0a7e9ef2cccbba3b78b664875f6afcc", + "fields": { + "code_commune_insee": "36069", + "nom_de_la_commune": "ECUEILLE", + "code_postal": "36240", + "coordonnees_gps": [ + 47.0772111869, + 1.35366792893 + ], + "libelle_d_acheminement": "ECUEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35366792893, + 47.0772111869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07f7a1f7036413ef508032b26e62ebd3b1558084", + "fields": { + "code_commune_insee": "36083", + "nom_de_la_commune": "GIROUX", + "code_postal": "36150", + "coordonnees_gps": [ + 47.0650697963, + 1.90667075271 + ], + "libelle_d_acheminement": "GIROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90667075271, + 47.0650697963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0f3f4f70fad5a2afea79895bdb7c6a8a71290e7", + "fields": { + "code_commune_insee": "36088", + "nom_de_la_commune": "ISSOUDUN", + "code_postal": "36100", + "coordonnees_gps": [ + 46.9489390293, + 2.00053790133 + ], + "libelle_d_acheminement": "ISSOUDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00053790133, + 46.9489390293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f187527d151b763511763addcdeea8fecea646a5", + "fields": { + "code_commune_insee": "36089", + "nom_de_la_commune": "JEU LES BOIS", + "code_postal": "36120", + "coordonnees_gps": [ + 46.6818941747, + 1.79462790894 + ], + "libelle_d_acheminement": "JEU LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79462790894, + 46.6818941747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23c1d7c91fcd032a13c4341900efa8f93ef1d618", + "fields": { + "code_commune_insee": "36093", + "nom_de_la_commune": "LEVROUX", + "code_postal": "36110", + "coordonnees_gps": [ + 46.9727032392, + 1.63027138239 + ], + "libelle_d_acheminement": "LEVROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63027138239, + 46.9727032392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecf8b79d1c12db5b17266e13ea94fd1689ff684e", + "fields": { + "ligne_5": "ST PIERRE DE LAMPS", + "code_commune_insee": "36093", + "libelle_d_acheminement": "LEVROUX", + "code_postal": "36110", + "nom_de_la_commune": "LEVROUX", + "coordonnees_gps": [ + 46.9727032392, + 1.63027138239 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63027138239, + 46.9727032392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9641698d9497f0b5f1fa1eed7f5738fac61777d4", + "fields": { + "code_commune_insee": "36094", + "nom_de_la_commune": "LIGNAC", + "code_postal": "36370", + "coordonnees_gps": [ + 46.4761367692, + 1.20092870282 + ], + "libelle_d_acheminement": "LIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20092870282, + 46.4761367692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c70436a36cad64e0cc41b219a914cd31ca01bdc", + "fields": { + "code_commune_insee": "36095", + "nom_de_la_commune": "LIGNEROLLES", + "code_postal": "36160", + "coordonnees_gps": [ + 46.50077688, + 2.16356266069 + ], + "libelle_d_acheminement": "LIGNEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16356266069, + 46.50077688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f51dbfeb7be0bddcfdbae342cb55fe8ef313146", + "fields": { + "code_commune_insee": "36097", + "nom_de_la_commune": "LINIEZ", + "code_postal": "36150", + "coordonnees_gps": [ + 47.0142256884, + 1.75629782161 + ], + "libelle_d_acheminement": "LINIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75629782161, + 47.0142256884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3425f3da6aee17c47dbdd2084a268c396853c7db", + "fields": { + "code_commune_insee": "36114", + "nom_de_la_commune": "MAUVIERES", + "code_postal": "36370", + "coordonnees_gps": [ + 46.5783021107, + 1.10698917227 + ], + "libelle_d_acheminement": "MAUVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10698917227, + 46.5783021107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69fada38ab36bb0f29962cf049c5d0c07be3e91b", + "fields": { + "code_commune_insee": "36118", + "nom_de_la_commune": "MEOBECQ", + "code_postal": "36500", + "coordonnees_gps": [ + 46.741999261, + 1.41358055071 + ], + "libelle_d_acheminement": "MEOBECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41358055071, + 46.741999261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9cc7103e4f83e92eefc1e4e5909e4f8a7b211a9", + "fields": { + "code_commune_insee": "36133", + "nom_de_la_commune": "MOUHERS", + "code_postal": "36340", + "coordonnees_gps": [ + 46.5633034226, + 1.77994822174 + ], + "libelle_d_acheminement": "MOUHERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77994822174, + 46.5633034226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1be7728555d551be9029166b8396930d26363b37", + "fields": { + "code_commune_insee": "36134", + "nom_de_la_commune": "MOUHET", + "code_postal": "36170", + "coordonnees_gps": [ + 46.3892514963, + 1.44265053138 + ], + "libelle_d_acheminement": "MOUHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44265053138, + 46.3892514963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8af8cb3dbd0682a014ebf9a1c03591b93ddd401", + "fields": { + "code_commune_insee": "36135", + "nom_de_la_commune": "MOULINS SUR CEPHONS", + "code_postal": "36110", + "coordonnees_gps": [ + 47.0089111933, + 1.56079458695 + ], + "libelle_d_acheminement": "MOULINS SUR CEPHONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56079458695, + 47.0089111933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08ea7b9c9ad11cd18a12d3f9f878020c72129bfa", + "fields": { + "code_commune_insee": "36136", + "nom_de_la_commune": "MURS", + "code_postal": "36700", + "coordonnees_gps": [ + 46.925404896, + 1.16199898894 + ], + "libelle_d_acheminement": "MURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16199898894, + 46.925404896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd49aac662e3b0cb634078950f6b65984696a2dd", + "fields": { + "code_commune_insee": "36139", + "nom_de_la_commune": "NEUILLAY LES BOIS", + "code_postal": "36500", + "coordonnees_gps": [ + 46.7623476722, + 1.4785357393 + ], + "libelle_d_acheminement": "NEUILLAY LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4785357393, + 46.7623476722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e43c1e6a04df938cde7757b20e29f70b98ff9942", + "fields": { + "code_commune_insee": "36140", + "nom_de_la_commune": "NEUVY PAILLOUX", + "code_postal": "36100", + "coordonnees_gps": [ + 46.9035481163, + 1.85857404368 + ], + "libelle_d_acheminement": "NEUVY PAILLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85857404368, + 46.9035481163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13a6ff56460798454ab71fb8ec374a46387e12a6", + "fields": { + "code_commune_insee": "36142", + "nom_de_la_commune": "NIHERNE", + "code_postal": "36250", + "coordonnees_gps": [ + 46.8018622942, + 1.55801304217 + ], + "libelle_d_acheminement": "NIHERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55801304217, + 46.8018622942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59215ba94953c1af75a046f4b2e2bc42e7dc66de", + "fields": { + "code_commune_insee": "36145", + "nom_de_la_commune": "OBTERRE", + "code_postal": "36290", + "coordonnees_gps": [ + 46.9072520176, + 1.06310600327 + ], + "libelle_d_acheminement": "OBTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06310600327, + 46.9072520176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8c5334f60b29e361ccd8e9aeb48981bf864b0fb", + "fields": { + "code_commune_insee": "36154", + "nom_de_la_commune": "LE PECHEREAU", + "code_postal": "36200", + "coordonnees_gps": [ + 46.5845928645, + 1.57047280121 + ], + "libelle_d_acheminement": "LE PECHEREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57047280121, + 46.5845928645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2da2524bdc3deb3bf67b7a91a8c93410c90e225", + "fields": { + "code_commune_insee": "36156", + "nom_de_la_commune": "PERASSAY", + "code_postal": "36160", + "coordonnees_gps": [ + 46.4754394815, + 2.14469333686 + ], + "libelle_d_acheminement": "PERASSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14469333686, + 46.4754394815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0031b7c8182ab2109d85593bad87b0e482e25554", + "fields": { + "code_commune_insee": "36158", + "nom_de_la_commune": "BADECON LE PIN", + "code_postal": "36200", + "coordonnees_gps": [ + 46.532036139, + 1.60190321862 + ], + "libelle_d_acheminement": "BADECON LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60190321862, + 46.532036139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ebfa9d040ee887b6f0484e466e6903b7d232813", + "fields": { + "code_commune_insee": "36160", + "nom_de_la_commune": "POMMIERS", + "code_postal": "36190", + "coordonnees_gps": [ + 46.521846173, + 1.65349444143 + ], + "libelle_d_acheminement": "POMMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65349444143, + 46.521846173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64927987396188b2137492527d98eb587dbfd8fa", + "fields": { + "code_commune_insee": "36166", + "nom_de_la_commune": "PREAUX", + "code_postal": "36240", + "coordonnees_gps": [ + 47.0305164797, + 1.30603010451 + ], + "libelle_d_acheminement": "PREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30603010451, + 47.0305164797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d99aaaff9436459ef4eaa2aec0ba41bdcbc2f4d", + "fields": { + "code_commune_insee": "36173", + "nom_de_la_commune": "ROSNAY", + "code_postal": "36300", + "coordonnees_gps": [ + 46.7081092632, + 1.20629298649 + ], + "libelle_d_acheminement": "ROSNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20629298649, + 46.7081092632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f12e574aa743e9560c6a023c0a8bd008311c94a", + "fields": { + "code_commune_insee": "36176", + "nom_de_la_commune": "RUFFEC", + "code_postal": "36300", + "coordonnees_gps": [ + 46.6238195664, + 1.1836718516 + ], + "libelle_d_acheminement": "RUFFEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1836718516, + 46.6238195664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da1bb9c7c8cb34bf5c41d1395c745dacae4f9249", + "fields": { + "code_commune_insee": "36179", + "nom_de_la_commune": "ST AOUSTRILLE", + "code_postal": "36100", + "coordonnees_gps": [ + 46.9325345658, + 1.92998752621 + ], + "libelle_d_acheminement": "ST AOUSTRILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92998752621, + 46.9325345658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28b5815f10b136d68eab3215afb575980051c964", + "fields": { + "code_commune_insee": "36182", + "nom_de_la_commune": "ST BENOIT DU SAULT", + "code_postal": "36170", + "coordonnees_gps": [ + 46.4476641903, + 1.39936861789 + ], + "libelle_d_acheminement": "ST BENOIT DU SAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39936861789, + 46.4476641903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80e42fb18081aae13e30a987143dbd1eed3805a9", + "fields": { + "code_commune_insee": "36190", + "nom_de_la_commune": "STE FAUSTE", + "code_postal": "36100", + "coordonnees_gps": [ + 46.8545598385, + 1.87113964602 + ], + "libelle_d_acheminement": "STE FAUSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87113964602, + 46.8545598385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21f9a2dc981dd89752c5fa24ea5e24706c4ebca6", + "fields": { + "code_commune_insee": "36193", + "nom_de_la_commune": "STE GEMME", + "code_postal": "36500", + "coordonnees_gps": [ + 46.8595428398, + 1.33333500724 + ], + "libelle_d_acheminement": "STE GEMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33333500724, + 46.8595428398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72b9bd64d3ee558ede79a47c91af4922755d7e8c", + "fields": { + "code_commune_insee": "36196", + "nom_de_la_commune": "ST GILLES", + "code_postal": "36170", + "coordonnees_gps": [ + 46.4792987995, + 1.44895217006 + ], + "libelle_d_acheminement": "ST GILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44895217006, + 46.4792987995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e16c8ab175b4abf74968c777761075354dad793e", + "fields": { + "code_commune_insee": "36204", + "nom_de_la_commune": "ST MICHEL EN BRENNE", + "code_postal": "36290", + "coordonnees_gps": [ + 46.7879524316, + 1.1742571119 + ], + "libelle_d_acheminement": "ST MICHEL EN BRENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1742571119, + 46.7879524316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b506f35848adaa5ef80e4c2c1b6fb591fc294f34", + "fields": { + "code_commune_insee": "36220", + "nom_de_la_commune": "THENAY", + "code_postal": "36800", + "coordonnees_gps": [ + 46.5948540817, + 1.42889771052 + ], + "libelle_d_acheminement": "THENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42889771052, + 46.5948540817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e12c76f898db31fe1d93523b3de8dc0d0c3977a", + "fields": { + "code_commune_insee": "36225", + "nom_de_la_commune": "LE TRANGER", + "code_postal": "36700", + "coordonnees_gps": [ + 46.9730217907, + 1.24675037798 + ], + "libelle_d_acheminement": "LE TRANGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24675037798, + 46.9730217907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "427afbff40e65ea711dc7a8fe445c016f7315318", + "fields": { + "code_commune_insee": "36227", + "nom_de_la_commune": "URCIERS", + "code_postal": "36160", + "coordonnees_gps": [ + 46.528816556, + 2.14569047722 + ], + "libelle_d_acheminement": "URCIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14569047722, + 46.528816556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9277588b2c16382de5970633406d330aeed5c402", + "fields": { + "ligne_5": "PARPECAY", + "code_commune_insee": "36229", + "libelle_d_acheminement": "VAL FOUZON", + "code_postal": "36210", + "nom_de_la_commune": "VAL FOUZON", + "coordonnees_gps": [ + 47.2049167423, + 1.59155940646 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59155940646, + 47.2049167423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6779c2009cbd58d0182b20d86ec93b7b1d62cb7", + "fields": { + "ligne_5": "STE CECILE", + "code_commune_insee": "36229", + "libelle_d_acheminement": "VAL FOUZON", + "code_postal": "36210", + "nom_de_la_commune": "VAL FOUZON", + "coordonnees_gps": [ + 47.2049167423, + 1.59155940646 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59155940646, + 47.2049167423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3eb3b911792c01d8a21f8d3cdc2bb32445e46d5a", + "fields": { + "code_commune_insee": "36233", + "nom_de_la_commune": "LA VERNELLE", + "code_postal": "36600", + "coordonnees_gps": [ + 47.242881421, + 1.56367685749 + ], + "libelle_d_acheminement": "LA VERNELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56367685749, + 47.242881421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46b01a645f675f3210d723f318fff6bb78b418d7", + "fields": { + "code_commune_insee": "36234", + "nom_de_la_commune": "VERNEUIL SUR IGNERAIE", + "code_postal": "36400", + "coordonnees_gps": [ + 46.6542492124, + 2.01447840786 + ], + "libelle_d_acheminement": "VERNEUIL SUR IGNERAIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01447840786, + 46.6542492124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c1642a054c01f1cba40c50d21166e6fece9de48", + "fields": { + "code_commune_insee": "36238", + "nom_de_la_commune": "VIGOULANT", + "code_postal": "36160", + "coordonnees_gps": [ + 46.4389739269, + 2.08397250932 + ], + "libelle_d_acheminement": "VIGOULANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08397250932, + 46.4389739269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5b29e3d49dab9da8fbacbb120548c8c64148fdd", + "fields": { + "code_commune_insee": "37001", + "nom_de_la_commune": "ABILLY", + "code_postal": "37160", + "coordonnees_gps": [ + 46.9411244235, + 0.734787296451 + ], + "libelle_d_acheminement": "ABILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.734787296451, + 46.9411244235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9880c41df95ac42d95882e01a3ae28297c3580f2", + "fields": { + "code_commune_insee": "37009", + "nom_de_la_commune": "AUTRECHE", + "code_postal": "37110", + "coordonnees_gps": [ + 47.5225157675, + 1.00231924384 + ], + "libelle_d_acheminement": "AUTRECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00231924384, + 47.5225157675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00f424deeff992ddf39142b9d9bf0046664e39fa", + "fields": { + "code_commune_insee": "37015", + "nom_de_la_commune": "AZAY SUR CHER", + "code_postal": "37270", + "coordonnees_gps": [ + 47.3343646706, + 0.844886964045 + ], + "libelle_d_acheminement": "AZAY SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.844886964045, + 47.3343646706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e2b7186914c10d5cb33abb5c65740cc076b43fe", + "fields": { + "code_commune_insee": "37016", + "nom_de_la_commune": "AZAY SUR INDRE", + "code_postal": "37310", + "coordonnees_gps": [ + 47.2038896853, + 0.943284326846 + ], + "libelle_d_acheminement": "AZAY SUR INDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.943284326846, + 47.2038896853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffa31b654cd8f3bed7c17406f40f9cf887568580", + "fields": { + "code_commune_insee": "37018", + "nom_de_la_commune": "BALLAN MIRE", + "code_postal": "37510", + "coordonnees_gps": [ + 47.3367884418, + 0.601376208725 + ], + "libelle_d_acheminement": "BALLAN MIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.601376208725, + 47.3367884418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb26d13b247da237ae7efae7b3a5609eb382b050", + "fields": { + "code_commune_insee": "37025", + "nom_de_la_commune": "BERTHENAY", + "code_postal": "37510", + "coordonnees_gps": [ + 47.3604120561, + 0.525356323149 + ], + "libelle_d_acheminement": "BERTHENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.525356323149, + 47.3604120561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22598cbbbcb23b7a95e5dcc7c776163ddbadf3cd", + "fields": { + "code_commune_insee": "37034", + "nom_de_la_commune": "BRASLOU", + "code_postal": "37120", + "coordonnees_gps": [ + 46.9991365379, + 0.407502661528 + ], + "libelle_d_acheminement": "BRASLOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.407502661528, + 46.9991365379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79eda49be7e748de2e436d836ce09ab34ecb3981", + "fields": { + "code_commune_insee": "37042", + "nom_de_la_commune": "CANDES ST MARTIN", + "code_postal": "37500", + "coordonnees_gps": [ + 47.2026345011, + 0.0740845875144 + ], + "libelle_d_acheminement": "CANDES ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0740845875144, + 47.2026345011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4a05c49a16d47b9238eb16c3c249393fe8237e4", + "fields": { + "code_commune_insee": "37045", + "nom_de_la_commune": "LA CELLE ST AVANT", + "code_postal": "37160", + "coordonnees_gps": [ + 47.0207240474, + 0.615608165766 + ], + "libelle_d_acheminement": "LA CELLE ST AVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.615608165766, + 47.0207240474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00a5f45c7ced21c3e82e7e759dda7a216461de69", + "fields": { + "code_commune_insee": "37048", + "nom_de_la_commune": "CHAMBON", + "code_postal": "37290", + "coordonnees_gps": [ + 46.838530543, + 0.826201928032 + ], + "libelle_d_acheminement": "CHAMBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.826201928032, + 46.838530543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "341208147c4f73ad345c7aad2838b387a277511b", + "fields": { + "code_commune_insee": "37055", + "nom_de_la_commune": "CHANNAY SUR LATHAN", + "code_postal": "37330", + "coordonnees_gps": [ + 47.4777083311, + 0.253067103583 + ], + "libelle_d_acheminement": "CHANNAY SUR LATHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.253067103583, + 47.4777083311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4abb5291bae3c08bfc0be67e12692377e0d57392", + "fields": { + "code_commune_insee": "37056", + "nom_de_la_commune": "LA CHAPELLE AUX NAUX", + "code_postal": "37130", + "coordonnees_gps": [ + 47.3134280853, + 0.417814420608 + ], + "libelle_d_acheminement": "LA CHAPELLE AUX NAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.417814420608, + 47.3134280853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c35b55a44e3fecb43534a08cc4634db5f20d549", + "fields": { + "code_commune_insee": "37065", + "nom_de_la_commune": "CHAVEIGNES", + "code_postal": "37120", + "coordonnees_gps": [ + 47.0237454107, + 0.351516641316 + ], + "libelle_d_acheminement": "CHAVEIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.351516641316, + 47.0237454107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87350f7308614cfb6e7ab5d6a1656fb7ae744788", + "fields": { + "code_commune_insee": "37072", + "nom_de_la_commune": "CHINON", + "code_postal": "37500", + "coordonnees_gps": [ + 47.1723001595, + 0.245084664558 + ], + "libelle_d_acheminement": "CHINON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.245084664558, + 47.1723001595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2581335b3d04b681a229cb8f47ad582e626384a", + "fields": { + "code_commune_insee": "37089", + "nom_de_la_commune": "CRAVANT LES COTEAUX", + "code_postal": "37500", + "coordonnees_gps": [ + 47.1685788687, + 0.341605997967 + ], + "libelle_d_acheminement": "CRAVANT LES COTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.341605997967, + 47.1685788687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e039d2ca7295d3000e5af6c6938fb3b9ad820fc", + "fields": { + "code_commune_insee": "37092", + "nom_de_la_commune": "CROTELLES", + "code_postal": "37380", + "coordonnees_gps": [ + 47.5385005841, + 0.822690179098 + ], + "libelle_d_acheminement": "CROTELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.822690179098, + 47.5385005841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fceea94119d9846983d472618370007f0656cd6", + "fields": { + "code_commune_insee": "37105", + "nom_de_la_commune": "FAYE LA VINEUSE", + "code_postal": "37120", + "coordonnees_gps": [ + 46.952742358, + 0.343186442748 + ], + "libelle_d_acheminement": "FAYE LA VINEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.343186442748, + 46.952742358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "571df85ba125d7f1b05da50f253149a973dd4338", + "fields": { + "code_commune_insee": "37108", + "nom_de_la_commune": "FERRIERE SUR BEAULIEU", + "code_postal": "37600", + "coordonnees_gps": [ + 47.1454064832, + 1.04844455169 + ], + "libelle_d_acheminement": "FERRIERE SUR BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04844455169, + 47.1454064832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d716277a28b5886c8f1b0fc0da82aa427881f395", + "fields": { + "code_commune_insee": "37116", + "nom_de_la_commune": "LES HERMITES", + "code_postal": "37110", + "coordonnees_gps": [ + 47.668662913, + 0.760117303641 + ], + "libelle_d_acheminement": "LES HERMITES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.760117303641, + 47.668662913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33a532a99a48d302a467cf678d09570dea860a24", + "fields": { + "code_commune_insee": "37118", + "nom_de_la_commune": "HUISMES", + "code_postal": "37420", + "coordonnees_gps": [ + 47.2270033934, + 0.25509879488 + ], + "libelle_d_acheminement": "HUISMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25509879488, + 47.2270033934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "628747a84f07d0d4a743a3d5b0f45d9c3c6c6929", + "fields": { + "ligne_5": "LES ESSARDS", + "code_commune_insee": "37123", + "libelle_d_acheminement": "LANGEAIS", + "code_postal": "37130", + "nom_de_la_commune": "LANGEAIS", + "coordonnees_gps": [ + 47.3498571755, + 0.367495526989 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.367495526989, + 47.3498571755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d56af3003eb6278e7dbf4d5e07dd44b4eba9bac", + "fields": { + "code_commune_insee": "37131", + "nom_de_la_commune": "LIMERAY", + "code_postal": "37530", + "coordonnees_gps": [ + 47.4553218405, + 1.03130220301 + ], + "libelle_d_acheminement": "LIMERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03130220301, + 47.4553218405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b59a8f7514910448505df43c2bebcb19d7c50f2", + "fields": { + "code_commune_insee": "37136", + "nom_de_la_commune": "LE LOUROUX", + "code_postal": "37240", + "coordonnees_gps": [ + 47.1561046765, + 0.761738298456 + ], + "libelle_d_acheminement": "LE LOUROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.761738298456, + 47.1561046765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9e56f60c72f60e666c5a1c545d321c857c790ef", + "fields": { + "code_commune_insee": "37139", + "nom_de_la_commune": "LUYNES", + "code_postal": "37230", + "coordonnees_gps": [ + 47.4114770179, + 0.542304378191 + ], + "libelle_d_acheminement": "LUYNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.542304378191, + 47.4114770179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b93928e86fb63cc735424f8e26706996415bc5ba", + "fields": { + "code_commune_insee": "37151", + "nom_de_la_commune": "LA MEMBROLLE SUR CHOISILLE", + "code_postal": "37390", + "coordonnees_gps": [ + 47.4448360187, + 0.624543767532 + ], + "libelle_d_acheminement": "LA MEMBROLLE SUR CHOISILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.624543767532, + 47.4448360187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19527d164d2fa21dedfcc5f8d42f414d65a830a9", + "fields": { + "code_commune_insee": "37152", + "nom_de_la_commune": "METTRAY", + "code_postal": "37390", + "coordonnees_gps": [ + 47.4542179515, + 0.65946644246 + ], + "libelle_d_acheminement": "METTRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65946644246, + 47.4542179515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf1e3c8e72c25f7aa450747d38d1eb472d943aa2", + "fields": { + "code_commune_insee": "37154", + "nom_de_la_commune": "MONTBAZON", + "code_postal": "37250", + "coordonnees_gps": [ + 47.2839455811, + 0.706640870715 + ], + "libelle_d_acheminement": "MONTBAZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.706640870715, + 47.2839455811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2afebea91bc2cc7b539d46c1088f983a5990686e", + "fields": { + "code_commune_insee": "37157", + "nom_de_la_commune": "MONTRESOR", + "code_postal": "37460", + "coordonnees_gps": [ + 47.1526392935, + 1.20166068898 + ], + "libelle_d_acheminement": "MONTRESOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20166068898, + 47.1526392935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7a8834a6c2c61ee4fe66154c0a7678d59787a39", + "fields": { + "code_commune_insee": "37168", + "nom_de_la_commune": "NEUILLY LE BRIGNON", + "code_postal": "37160", + "coordonnees_gps": [ + 46.9710638354, + 0.781602671756 + ], + "libelle_d_acheminement": "NEUILLY LE BRIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.781602671756, + 46.9710638354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a8dc458679329434ac137bb512889ea6f89f6e8", + "fields": { + "code_commune_insee": "37169", + "nom_de_la_commune": "NEUVILLE SUR BRENNE", + "code_postal": "37110", + "coordonnees_gps": [ + 47.6147253318, + 0.916732764369 + ], + "libelle_d_acheminement": "NEUVILLE SUR BRENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.916732764369, + 47.6147253318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88797f7242eaed6699ac63d9e4e31a9ebccbe03f", + "fields": { + "code_commune_insee": "37173", + "nom_de_la_commune": "NOUANS LES FONTAINES", + "code_postal": "37460", + "coordonnees_gps": [ + 47.1332306828, + 1.31135598285 + ], + "libelle_d_acheminement": "NOUANS LES FONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31135598285, + 47.1332306828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e70d99b9231061a58e17cd5c262dc464232c8a0", + "fields": { + "code_commune_insee": "37177", + "nom_de_la_commune": "ORBIGNY", + "code_postal": "37460", + "coordonnees_gps": [ + 47.2149787074, + 1.25683944841 + ], + "libelle_d_acheminement": "ORBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25683944841, + 47.2149787074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fa9a642315082958460b8e965ae486091c97441", + "fields": { + "code_commune_insee": "37190", + "nom_de_la_commune": "PUSSIGNY", + "code_postal": "37800", + "coordonnees_gps": [ + 46.9896027807, + 0.54864410398 + ], + "libelle_d_acheminement": "PUSSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54864410398, + 46.9896027807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b628daf841abba18dcf9d526a6338af0a1684bb6", + "fields": { + "code_commune_insee": "37196", + "nom_de_la_commune": "RICHELIEU", + "code_postal": "37120", + "coordonnees_gps": [ + 47.0143945569, + 0.315628916983 + ], + "libelle_d_acheminement": "RICHELIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.315628916983, + 47.0143945569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f97f60067f7908442f1ee4d3daec77a9b5bfab48", + "fields": { + "code_commune_insee": "37206", + "nom_de_la_commune": "ST ANTOINE DU ROCHER", + "code_postal": "37360", + "coordonnees_gps": [ + 47.4959926483, + 0.631034135983 + ], + "libelle_d_acheminement": "ST ANTOINE DU ROCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.631034135983, + 47.4959926483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7e72166d6257107a130ebfec4fba5733429e693", + "fields": { + "code_commune_insee": "37212", + "nom_de_la_commune": "STE CATHERINE DE FIERBOIS", + "code_postal": "37800", + "coordonnees_gps": [ + 47.1566893573, + 0.676679379745 + ], + "libelle_d_acheminement": "STE CATHERINE DE FIERBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.676679379745, + 47.1566893573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e4c9fd72880460f7fb7f075ff4a209063f9ce99", + "fields": { + "code_commune_insee": "37214", + "nom_de_la_commune": "ST CYR SUR LOIRE", + "code_postal": "37540", + "coordonnees_gps": [ + 47.4185650638, + 0.657856616894 + ], + "libelle_d_acheminement": "ST CYR SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.657856616894, + 47.4185650638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17a69b206daa0ff29214cc240313dec8c375d028", + "fields": { + "code_commune_insee": "37216", + "nom_de_la_commune": "ST EPAIN", + "code_postal": "37800", + "coordonnees_gps": [ + 47.1529048549, + 0.578633849265 + ], + "libelle_d_acheminement": "ST EPAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.578633849265, + 47.1529048549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2441359145abe0d8e70753f642e05b4c184240a7", + "fields": { + "code_commune_insee": "37218", + "nom_de_la_commune": "ST FLOVIER", + "code_postal": "37600", + "coordonnees_gps": [ + 46.9710693566, + 1.02123750172 + ], + "libelle_d_acheminement": "ST FLOVIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02123750172, + 46.9710693566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8400472a364e902fea66007bef195ab0f83ce8d", + "fields": { + "code_commune_insee": "37219", + "nom_de_la_commune": "ST GENOUPH", + "code_postal": "37510", + "coordonnees_gps": [ + 47.3724173906, + 0.589386626061 + ], + "libelle_d_acheminement": "ST GENOUPH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.589386626061, + 47.3724173906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "015ddbf3bdc18d2c15b1a9c12062c6495e720658", + "fields": { + "code_commune_insee": "37220", + "nom_de_la_commune": "ST GERMAIN SUR VIENNE", + "code_postal": "37500", + "coordonnees_gps": [ + 47.1805914468, + 0.110524551892 + ], + "libelle_d_acheminement": "ST GERMAIN SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.110524551892, + 47.1805914468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89b95e406bf16d1415d01b0deaa1d5eaa3bdc43a", + "fields": { + "code_commune_insee": "37226", + "nom_de_la_commune": "STE MAURE DE TOURAINE", + "code_postal": "37800", + "coordonnees_gps": [ + 47.1150065072, + 0.638598437549 + ], + "libelle_d_acheminement": "STE MAURE DE TOURAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.638598437549, + 47.1150065072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1a3bd9f2f93e15bd96b8a519af6e7bb65c5e46e", + "fields": { + "code_commune_insee": "37238", + "nom_de_la_commune": "ST SENOCH", + "code_postal": "37600", + "coordonnees_gps": [ + 47.0564904332, + 0.953203885022 + ], + "libelle_d_acheminement": "ST SENOCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.953203885022, + 47.0564904332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c74b1c71f9af1e69f0a6ae19c07d3c050c212ec0", + "fields": { + "code_commune_insee": "37245", + "nom_de_la_commune": "SEMBLANCAY", + "code_postal": "37360", + "coordonnees_gps": [ + 47.5034499347, + 0.564845858172 + ], + "libelle_d_acheminement": "SEMBLANCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.564845858172, + 47.5034499347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e2d330f05958b9b4edf275e69b9e194eceb4efa", + "fields": { + "code_commune_insee": "37246", + "nom_de_la_commune": "SENNEVIERES", + "code_postal": "37600", + "coordonnees_gps": [ + 47.1126296687, + 1.10632859904 + ], + "libelle_d_acheminement": "SENNEVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10632859904, + 47.1126296687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b3e1b126462925fbaf869302f6a98597fa95efd", + "fields": { + "code_commune_insee": "37265", + "nom_de_la_commune": "VARENNES", + "code_postal": "37600", + "coordonnees_gps": [ + 47.0709398168, + 0.912799456944 + ], + "libelle_d_acheminement": "VARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.912799456944, + 47.0709398168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff56d63439510d3eb522e885a2e28585858af125", + "fields": { + "code_commune_insee": "37269", + "nom_de_la_commune": "VERNEUIL SUR INDRE", + "code_postal": "37600", + "coordonnees_gps": [ + 47.0358243641, + 1.0338624118 + ], + "libelle_d_acheminement": "VERNEUIL SUR INDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0338624118, + 47.0358243641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36c153d2ec1d549463d18f6156ed287d695baf86", + "fields": { + "code_commune_insee": "37278", + "nom_de_la_commune": "VILLEPERDUE", + "code_postal": "37260", + "coordonnees_gps": [ + 47.1974342509, + 0.638407189109 + ], + "libelle_d_acheminement": "VILLEPERDUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.638407189109, + 47.1974342509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51ebc1aff1dbf46f5b8cb26ff407cbcb1f05d282", + "fields": { + "code_commune_insee": "37279", + "nom_de_la_commune": "VILLIERS AU BOUIN", + "code_postal": "37330", + "coordonnees_gps": [ + 47.5831138552, + 0.283424137003 + ], + "libelle_d_acheminement": "VILLIERS AU BOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.283424137003, + 47.5831138552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21341810ba560059609c4c62bc751103c3fda29a", + "fields": { + "code_commune_insee": "37280", + "nom_de_la_commune": "VOU", + "code_postal": "37240", + "coordonnees_gps": [ + 47.0942514937, + 0.84684851199 + ], + "libelle_d_acheminement": "VOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84684851199, + 47.0942514937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc4f67f2c086b3d2cf54d081569ad03d79c9baa1", + "fields": { + "code_commune_insee": "38006", + "nom_de_la_commune": "ALLEVARD", + "code_postal": "38580", + "coordonnees_gps": [ + 45.3798822282, + 6.11410440285 + ], + "libelle_d_acheminement": "ALLEVARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11410440285, + 45.3798822282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bf26e2c59573e3e9636e34aac3e2a9ae032b8af", + "fields": { + "code_commune_insee": "38012", + "nom_de_la_commune": "AOSTE", + "code_postal": "38490", + "coordonnees_gps": [ + 45.5976216526, + 5.61289945248 + ], + "libelle_d_acheminement": "AOSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61289945248, + 45.5976216526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c93510a31e2c65cb6e0a8a3cd31da7d4336514f", + "fields": { + "code_commune_insee": "38013", + "nom_de_la_commune": "APPRIEU", + "code_postal": "38140", + "coordonnees_gps": [ + 45.3973605604, + 5.4963701967 + ], + "libelle_d_acheminement": "APPRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4963701967, + 45.3973605604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6ee60477ad082724eb339a175d7e7063bcc90ac", + "fields": { + "ligne_5": "LE RIVIER", + "code_commune_insee": "38013", + "libelle_d_acheminement": "APPRIEU", + "code_postal": "38140", + "nom_de_la_commune": "APPRIEU", + "coordonnees_gps": [ + 45.3973605604, + 5.4963701967 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4963701967, + 45.3973605604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d661ff450059bafad050c03772097f73d31b8e2", + "fields": { + "code_commune_insee": "38017", + "nom_de_la_commune": "ASSIEU", + "code_postal": "38150", + "coordonnees_gps": [ + 45.4098620584, + 4.87676181443 + ], + "libelle_d_acheminement": "ASSIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87676181443, + 45.4098620584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3b042064338700f49609bbb6533b1a6f5663ede", + "fields": { + "code_commune_insee": "38020", + "nom_de_la_commune": "AURIS", + "code_postal": "38142", + "coordonnees_gps": [ + 45.051711372, + 6.08358997481 + ], + "libelle_d_acheminement": "AURIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08358997481, + 45.051711372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d9d9970848c139af028b79d4366a1b36760a956", + "fields": { + "code_commune_insee": "38023", + "nom_de_la_commune": "AVIGNONET", + "code_postal": "38650", + "coordonnees_gps": [ + 44.9575987733, + 5.67358379925 + ], + "libelle_d_acheminement": "AVIGNONET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67358379925, + 44.9575987733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e83c03b1c2590694d9058f635842f019e83c396", + "fields": { + "code_commune_insee": "38056", + "nom_de_la_commune": "BRESSIEUX", + "code_postal": "38870", + "coordonnees_gps": [ + 45.3220838, + 5.2775300501 + ], + "libelle_d_acheminement": "BRESSIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2775300501, + 45.3220838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04e33df27e39f1d80f6d82cafc008b207492d952", + "fields": { + "code_commune_insee": "38061", + "nom_de_la_commune": "LA BUISSE", + "code_postal": "38500", + "coordonnees_gps": [ + 45.331138203, + 5.62356410613 + ], + "libelle_d_acheminement": "LA BUISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62356410613, + 45.331138203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ad0414bae4bbf4dc34c1344b684d28f4f0e1900", + "fields": { + "code_commune_insee": "38062", + "nom_de_la_commune": "LA BUISSIERE", + "code_postal": "38530", + "coordonnees_gps": [ + 45.4086712829, + 5.98572771448 + ], + "libelle_d_acheminement": "LA BUISSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98572771448, + 45.4086712829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3cd5cd3725a0bd162c141a3115e8c36382138d2", + "fields": { + "code_commune_insee": "38066", + "nom_de_la_commune": "CHALON", + "code_postal": "38122", + "coordonnees_gps": [ + 45.4519499171, + 4.9379744903 + ], + "libelle_d_acheminement": "CHALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9379744903, + 45.4519499171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f606385fc0c17fc19983275af2b2c090e36a2d6", + "fields": { + "ligne_5": "MIANGES", + "code_commune_insee": "38067", + "libelle_d_acheminement": "CHAMAGNIEU", + "code_postal": "38460", + "nom_de_la_commune": "CHAMAGNIEU", + "coordonnees_gps": [ + 45.6881616804, + 5.16661541737 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16661541737, + 45.6881616804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32143f75844b76e4aa9f2675da69654d4d5a4cb2", + "fields": { + "code_commune_insee": "38076", + "nom_de_la_commune": "LA CHAPELLE DE LA TOUR", + "code_postal": "38110", + "coordonnees_gps": [ + 45.5893265412, + 5.47141719996 + ], + "libelle_d_acheminement": "LA CHAPELLE DE LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47141719996, + 45.5893265412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a15989d2d231dbfa0116445e6f2970eb5ecea98", + "fields": { + "code_commune_insee": "38078", + "nom_de_la_commune": "LA CHAPELLE DU BARD", + "code_postal": "38580", + "coordonnees_gps": [ + 45.4025988849, + 6.13800529096 + ], + "libelle_d_acheminement": "LA CHAPELLE DU BARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13800529096, + 45.4025988849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4a32bdd51f8ab7a571699494fd7aa962277f690", + "fields": { + "code_commune_insee": "38083", + "nom_de_la_commune": "CHARETTE", + "code_postal": "38390", + "coordonnees_gps": [ + 45.8050684223, + 5.36209656875 + ], + "libelle_d_acheminement": "CHARETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36209656875, + 45.8050684223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cdd355c4dadf504d773e050bc5b389b00ef0bea", + "fields": { + "code_commune_insee": "38087", + "nom_de_la_commune": "CHASSE SUR RHONE", + "code_postal": "38670", + "coordonnees_gps": [ + 45.5797669773, + 4.81420294395 + ], + "libelle_d_acheminement": "CHASSE SUR RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81420294395, + 45.5797669773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3773bfa844a016b6f2645f50fd429baca812338d", + "fields": { + "code_commune_insee": "38090", + "nom_de_la_commune": "CHATEAU BERNARD", + "code_postal": "38650", + "coordonnees_gps": [ + 44.9815645437, + 5.56326109526 + ], + "libelle_d_acheminement": "CHATEAU BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56326109526, + 44.9815645437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "828159dcc5373105b9c0a1ec8a77cf3f598c04db", + "fields": { + "code_commune_insee": "38099", + "nom_de_la_commune": "CHEVRIERES", + "code_postal": "38160", + "coordonnees_gps": [ + 45.1924932061, + 5.29333995855 + ], + "libelle_d_acheminement": "CHEVRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29333995855, + 45.1924932061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "854804333fe69edf3251aa37b89913a26acf0d8a", + "fields": { + "code_commune_insee": "38102", + "nom_de_la_commune": "CHEZENEUVE", + "code_postal": "38300", + "coordonnees_gps": [ + 45.5611018876, + 5.21723441393 + ], + "libelle_d_acheminement": "CHEZENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21723441393, + 45.5611018876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a97616809673be5e2762b70488aee8fd2d6e042", + "fields": { + "code_commune_insee": "38113", + "nom_de_la_commune": "CLELLES", + "code_postal": "38930", + "coordonnees_gps": [ + 44.8246711556, + 5.62901849156 + ], + "libelle_d_acheminement": "CLELLES EN TRIEVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62901849156, + 44.8246711556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38f2a9b5ae568c761b6bd0683dcabdb7b11748ec", + "fields": { + "code_commune_insee": "38115", + "nom_de_la_commune": "ST MARTIN DE LA CLUZE", + "code_postal": "38650", + "coordonnees_gps": [ + 44.9895989377, + 5.66101914988 + ], + "libelle_d_acheminement": "ST MARTIN DE LA CLUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66101914988, + 44.9895989377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d6b19c3b1790611ec9edd8ad3eebddc6414a4d7", + "fields": { + "code_commune_insee": "38127", + "nom_de_la_commune": "CORNILLON EN TRIEVES", + "code_postal": "38710", + "coordonnees_gps": [ + 44.8352198682, + 5.70360682162 + ], + "libelle_d_acheminement": "CORNILLON EN TRIEVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70360682162, + 44.8352198682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34176f220b24ce13415e5edb323a1b9b7a2841ee", + "fields": { + "code_commune_insee": "38134", + "nom_de_la_commune": "COUR ET BUIS", + "code_postal": "38122", + "coordonnees_gps": [ + 45.4403886535, + 5.01870532467 + ], + "libelle_d_acheminement": "COUR ET BUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01870532467, + 45.4403886535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef646ad2f2ca9340f81924f113e207326910c3f1", + "fields": { + "code_commune_insee": "38139", + "nom_de_la_commune": "CREYS MEPIEU", + "code_postal": "38510", + "coordonnees_gps": [ + 45.7442083563, + 5.46517571315 + ], + "libelle_d_acheminement": "CREYS MEPIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46517571315, + 45.7442083563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0948f3a9eef97e146171bfe5339b23f7d2de3e6", + "fields": { + "code_commune_insee": "38147", + "nom_de_la_commune": "DOISSIN", + "code_postal": "38730", + "coordonnees_gps": [ + 45.5015004907, + 5.42840010455 + ], + "libelle_d_acheminement": "DOISSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42840010455, + 45.5015004907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8388d4fd7b31d21173d0aa0b848a11817b1c853", + "fields": { + "code_commune_insee": "38160", + "nom_de_la_commune": "EYZIN PINET", + "code_postal": "38780", + "coordonnees_gps": [ + 45.4781067325, + 4.99820728602 + ], + "libelle_d_acheminement": "EYZIN PINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99820728602, + 45.4781067325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74c7c78967313d97669bf5bcaccde6298a1a1f9a", + "fields": { + "code_commune_insee": "38170", + "nom_de_la_commune": "FONTANIL CORNILLON", + "code_postal": "38120", + "coordonnees_gps": [ + 45.2540718462, + 5.66423363739 + ], + "libelle_d_acheminement": "FONTANIL CORNILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66423363739, + 45.2540718462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2f4a43c0508be2a1627ac63e165728bc6715050", + "fields": { + "code_commune_insee": "38171", + "nom_de_la_commune": "LA FORTERESSE", + "code_postal": "38590", + "coordonnees_gps": [ + 45.2944764587, + 5.40801022079 + ], + "libelle_d_acheminement": "LA FORTERESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40801022079, + 45.2944764587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "584290fb9f096643f1688d038ef835335fdefa52", + "fields": { + "code_commune_insee": "38174", + "nom_de_la_commune": "LA FRETTE", + "code_postal": "38260", + "coordonnees_gps": [ + 45.387791522, + 5.36332803893 + ], + "libelle_d_acheminement": "LA FRETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36332803893, + 45.387791522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "898b23e143f8b6600297210628d1c45df8bb60e4", + "fields": { + "code_commune_insee": "38179", + "nom_de_la_commune": "GIERES", + "code_postal": "38610", + "coordonnees_gps": [ + 45.1823272189, + 5.79171566019 + ], + "libelle_d_acheminement": "GIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79171566019, + 45.1823272189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ec5fc9be723ef0440c59ef1e2bdab65b8d773f2", + "fields": { + "code_commune_insee": "38185", + "nom_de_la_commune": "GRENOBLE", + "code_postal": "38000", + "coordonnees_gps": [ + 45.1821215167, + 5.72133051752 + ], + "libelle_d_acheminement": "GRENOBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72133051752, + 45.1821215167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa997142f6a7425f067e7fff95de027c0c2ff100", + "fields": { + "code_commune_insee": "38185", + "nom_de_la_commune": "GRENOBLE", + "code_postal": "38100", + "coordonnees_gps": [ + 45.1821215167, + 5.72133051752 + ], + "libelle_d_acheminement": "GRENOBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72133051752, + 45.1821215167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e03f8ad3d40f5bfe13dbce132c77f3494704b56", + "fields": { + "code_commune_insee": "38186", + "nom_de_la_commune": "GRESSE EN VERCORS", + "code_postal": "38650", + "coordonnees_gps": [ + 44.8864255639, + 5.525804416 + ], + "libelle_d_acheminement": "GRESSE EN VERCORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.525804416, + 44.8864255639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "625ce1d773d572c6ec2ad2c3c47186eec9c15f92", + "fields": { + "code_commune_insee": "38191", + "nom_de_la_commune": "HUEZ", + "code_postal": "38750", + "coordonnees_gps": [ + 45.0969425761, + 6.08474810987 + ], + "libelle_d_acheminement": "HUEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08474810987, + 45.0969425761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "364f8ae412262688d357121782f82e505b3516fd", + "fields": { + "code_commune_insee": "38195", + "nom_de_la_commune": "IZERON", + "code_postal": "38160", + "coordonnees_gps": [ + 45.141987566, + 5.39486640938 + ], + "libelle_d_acheminement": "IZERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39486640938, + 45.141987566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00ee67193f6f8d1c396dd71206f0984ff2a9a4b0", + "fields": { + "code_commune_insee": "38197", + "nom_de_la_commune": "JANNEYRIAS", + "code_postal": "38280", + "coordonnees_gps": [ + 45.7512046013, + 5.11448312594 + ], + "libelle_d_acheminement": "JANNEYRIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11448312594, + 45.7512046013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7903d87004e89558f38b79ecf08e7f6befbed54a", + "fields": { + "code_commune_insee": "38199", + "nom_de_la_commune": "JARDIN", + "code_postal": "38200", + "coordonnees_gps": [ + 45.492806451, + 4.91094457963 + ], + "libelle_d_acheminement": "JARDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91094457963, + 45.492806451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53a38583c3df593903e10bd466917b3ecddf4509", + "fields": { + "code_commune_insee": "38206", + "nom_de_la_commune": "LAVAL EN BELLEDONNE", + "code_postal": "38190", + "coordonnees_gps": [ + 45.2359002175, + 5.98150477487 + ], + "libelle_d_acheminement": "LAVAL EN BELLEDONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98150477487, + 45.2359002175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8320cc556d743400dd6037380ecb243ef5595c93", + "fields": { + "code_commune_insee": "38210", + "nom_de_la_commune": "LEYRIEU", + "code_postal": "38460", + "coordonnees_gps": [ + 45.7563040682, + 5.25503498481 + ], + "libelle_d_acheminement": "LEYRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25503498481, + 45.7563040682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bc791ede605f043f63b1877ed8412a59d0bf287", + "fields": { + "ligne_5": "LIVET", + "code_commune_insee": "38212", + "libelle_d_acheminement": "LIVET ET GAVET", + "code_postal": "38220", + "nom_de_la_commune": "LIVET ET GAVET", + "coordonnees_gps": [ + 45.0905954329, + 5.91904092614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91904092614, + 45.0905954329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0796cd15b42bbe06e5ab0c922fac980f8c81789d", + "fields": { + "code_commune_insee": "38217", + "nom_de_la_commune": "MARCIEU", + "code_postal": "38350", + "coordonnees_gps": [ + 44.9175217316, + 5.69553334662 + ], + "libelle_d_acheminement": "MARCIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69553334662, + 44.9175217316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36f30b79096692452166e618089bfb3b4c80e6be", + "fields": { + "code_commune_insee": "38221", + "nom_de_la_commune": "MARNANS", + "code_postal": "38980", + "coordonnees_gps": [ + 45.2892320026, + 5.24958974003 + ], + "libelle_d_acheminement": "MARNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24958974003, + 45.2892320026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39f51052017dd3da1ab36ef8b710a699fae5c108", + "fields": { + "code_commune_insee": "38226", + "nom_de_la_commune": "MENS", + "code_postal": "38710", + "coordonnees_gps": [ + 44.8147716057, + 5.75218343717 + ], + "libelle_d_acheminement": "MENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75218343717, + 44.8147716057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe3cfa01614c163b3e7fd8c966a476e246d5d837", + "fields": { + "ligne_5": "ST GENIS", + "code_commune_insee": "38226", + "libelle_d_acheminement": "MENS", + "code_postal": "38710", + "nom_de_la_commune": "MENS", + "coordonnees_gps": [ + 44.8147716057, + 5.75218343717 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75218343717, + 44.8147716057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a79263b1f9ade3aec28f3b3bf7943f294849b7db", + "fields": { + "code_commune_insee": "38237", + "nom_de_la_commune": "MIZOEN", + "code_postal": "38142", + "coordonnees_gps": [ + 45.0437665644, + 6.1821306394 + ], + "libelle_d_acheminement": "MIZOEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1821306394, + 45.0437665644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c74391f9f8ff4ce510d98cad360f6d78a8190cb", + "fields": { + "ligne_5": "VENOSC LES DEUX ALPES", + "code_commune_insee": "38253", + "libelle_d_acheminement": "LES DEUX ALPES", + "code_postal": "38860", + "nom_de_la_commune": "LES DEUX ALPES", + "coordonnees_gps": [ + 45.0159885994, + 6.13818619624 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13818619624, + 45.0159885994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59e727e0363c3fc4da00bf559eb643b01ba59799", + "fields": { + "code_commune_insee": "38255", + "nom_de_la_commune": "MONTFALCON", + "code_postal": "38940", + "coordonnees_gps": [ + 45.2603695756, + 5.17123092674 + ], + "libelle_d_acheminement": "MONTFALCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17123092674, + 45.2603695756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "492f732b0d0c28f533dd972d6e7f2dc68f2163ab", + "fields": { + "code_commune_insee": "38256", + "nom_de_la_commune": "MONTFERRAT", + "code_postal": "38620", + "coordonnees_gps": [ + 45.4745293334, + 5.57778075316 + ], + "libelle_d_acheminement": "MONTFERRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57778075316, + 45.4745293334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4079d19ee0c48da8d6468a1009d4df7e41b939d", + "fields": { + "code_commune_insee": "38257", + "nom_de_la_commune": "MONTREVEL", + "code_postal": "38690", + "coordonnees_gps": [ + 45.4771327346, + 5.40739444993 + ], + "libelle_d_acheminement": "MONTREVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40739444993, + 45.4771327346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fff5c98f5905a89952190f8aa0f48e190a67594", + "fields": { + "code_commune_insee": "38265", + "nom_de_la_commune": "LA MOTTE D AVEILLANS", + "code_postal": "38770", + "coordonnees_gps": [ + 44.9538042858, + 5.74061628368 + ], + "libelle_d_acheminement": "LA MOTTE D AVEILLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74061628368, + 44.9538042858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0ede5523459fee67818ff98b55c6a59b5a7d8e7", + "fields": { + "code_commune_insee": "38270", + "nom_de_la_commune": "LA MURETTE", + "code_postal": "38140", + "coordonnees_gps": [ + 45.3817551694, + 5.54168814307 + ], + "libelle_d_acheminement": "LA MURETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54168814307, + 45.3817551694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "606dc704fd35bb7f9b44aac8f5d73a5a3e38a042", + "fields": { + "ligne_5": "PASSINS", + "code_commune_insee": "38297", + "libelle_d_acheminement": "ARANDON PASSINS", + "code_postal": "38510", + "nom_de_la_commune": "ARANDON PASSINS", + "coordonnees_gps": [ + 45.6918000182, + 5.42912409085 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42912409085, + 45.6918000182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "904c6ad60abc8a82f19867db6ea7cee4e8077bfa", + "fields": { + "code_commune_insee": "38299", + "nom_de_la_commune": "PELLAFOL", + "code_postal": "38970", + "coordonnees_gps": [ + 44.7819380023, + 5.88025716303 + ], + "libelle_d_acheminement": "PELLAFOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88025716303, + 44.7819380023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a81527ea3885ca6e301547b32e7d2532e400b1c9", + "fields": { + "code_commune_insee": "38300", + "nom_de_la_commune": "PENOL", + "code_postal": "38260", + "coordonnees_gps": [ + 45.3732511215, + 5.18172674953 + ], + "libelle_d_acheminement": "PENOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18172674953, + 45.3732511215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5179a316741d5840fa4ca8fc0357502e0afa2a1", + "fields": { + "code_commune_insee": "38304", + "nom_de_la_commune": "PIERRE CHATEL", + "code_postal": "38119", + "coordonnees_gps": [ + 44.9565648579, + 5.77432306035 + ], + "libelle_d_acheminement": "PIERRE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77432306035, + 44.9565648579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d3cbbb364de1f1168f94fa5e029b44085468b83", + "fields": { + "code_commune_insee": "38309", + "nom_de_la_commune": "POISAT", + "code_postal": "38320", + "coordonnees_gps": [ + 45.1541844702, + 5.77015327234 + ], + "libelle_d_acheminement": "POISAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77015327234, + 45.1541844702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ea82bd59b774f434429c71170d0ecc4e734aa8f", + "fields": { + "code_commune_insee": "38310", + "nom_de_la_commune": "POLIENAS", + "code_postal": "38210", + "coordonnees_gps": [ + 45.2499943618, + 5.4800749963 + ], + "libelle_d_acheminement": "POLIENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4800749963, + 45.2499943618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6058b34bacb1867e86760abe8bb59752bc49f4b6", + "fields": { + "code_commune_insee": "38314", + "nom_de_la_commune": "PONTCHARRA", + "code_postal": "38530", + "coordonnees_gps": [ + 45.4199322754, + 6.02051894838 + ], + "libelle_d_acheminement": "PONTCHARRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02051894838, + 45.4199322754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c6d951c083725770c064a486df67c769c534258", + "fields": { + "code_commune_insee": "38315", + "nom_de_la_commune": "LE PONT DE BEAUVOISIN", + "code_postal": "38480", + "coordonnees_gps": [ + 45.5318785509, + 5.66166638514 + ], + "libelle_d_acheminement": "LE PONT DE BEAUVOISIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66166638514, + 45.5318785509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bb245b43a8c280ee8b0b5a32f84ddbd6270f501", + "fields": { + "code_commune_insee": "38316", + "nom_de_la_commune": "PONT DE CHERUY", + "code_postal": "38230", + "coordonnees_gps": [ + 45.7516810527, + 5.17314203619 + ], + "libelle_d_acheminement": "PONT DE CHERUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17314203619, + 45.7516810527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d02ae692fd3e9e38d97c7fedab87b77ca886c0a", + "fields": { + "code_commune_insee": "38317", + "nom_de_la_commune": "LE PONT DE CLAIX", + "code_postal": "38800", + "coordonnees_gps": [ + 45.1259127487, + 5.70193593188 + ], + "libelle_d_acheminement": "LE PONT DE CLAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70193593188, + 45.1259127487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63884832d7fedd781f58a8c39ef6280cde1ddf2d", + "fields": { + "code_commune_insee": "38323", + "nom_de_la_commune": "PRESSINS", + "code_postal": "38480", + "coordonnees_gps": [ + 45.5266905652, + 5.63237187242 + ], + "libelle_d_acheminement": "PRESSINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63237187242, + 45.5266905652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08cd667a7f001a8c82cbd66406f71e4db370fd9a", + "fields": { + "code_commune_insee": "38332", + "nom_de_la_commune": "RENAGE", + "code_postal": "38140", + "coordonnees_gps": [ + 45.3315741246, + 5.49397401462 + ], + "libelle_d_acheminement": "RENAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49397401462, + 45.3315741246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c3a8ea12dfa757b065370e0d96039a889be23eb", + "fields": { + "code_commune_insee": "38336", + "nom_de_la_commune": "REVENTIN VAUGRIS", + "code_postal": "38121", + "coordonnees_gps": [ + 45.4796682069, + 4.84348243877 + ], + "libelle_d_acheminement": "REVENTIN VAUGRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84348243877, + 45.4796682069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86e1505c2503c1c6161eaddd36e9b74b39e63c05", + "fields": { + "code_commune_insee": "38346", + "nom_de_la_commune": "ROYAS", + "code_postal": "38440", + "coordonnees_gps": [ + 45.5045955755, + 5.10102856136 + ], + "libelle_d_acheminement": "ROYAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10102856136, + 45.5045955755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d4780710fb39d14a8606263570567369f66b061", + "fields": { + "code_commune_insee": "38349", + "nom_de_la_commune": "SABLONS", + "code_postal": "38550", + "coordonnees_gps": [ + 45.3212970524, + 4.78538205618 + ], + "libelle_d_acheminement": "SABLONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78538205618, + 45.3212970524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "506735662aaf0e3038a996512e69597e7ad2677c", + "fields": { + "code_commune_insee": "38354", + "nom_de_la_commune": "ST ALBIN DE VAULSERRE", + "code_postal": "38480", + "coordonnees_gps": [ + 45.5014621021, + 5.69777354102 + ], + "libelle_d_acheminement": "ST ALBIN DE VAULSERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69777354102, + 45.5014621021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22068e189f66725271356206f254c2876ff9c68d", + "fields": { + "code_commune_insee": "38357", + "nom_de_la_commune": "ST ANDRE LE GAZ", + "code_postal": "38490", + "coordonnees_gps": [ + 45.5473825383, + 5.53186055306 + ], + "libelle_d_acheminement": "ST ANDRE LE GAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53186055306, + 45.5473825383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70fc7fff4574faa212d4a432eac79de269a4c6fb", + "fields": { + "ligne_5": "DIONAY", + "code_commune_insee": "38359", + "libelle_d_acheminement": "ST ANTOINE L ABBAYE", + "code_postal": "38160", + "nom_de_la_commune": "ST ANTOINE L ABBAYE", + "coordonnees_gps": [ + 45.1722353559, + 5.21609050981 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21609050981, + 45.1722353559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9744f1b7f99636f9a51a16928c3b7d97e738fda9", + "fields": { + "code_commune_insee": "38368", + "nom_de_la_commune": "ST BLAISE DU BUIS", + "code_postal": "38140", + "coordonnees_gps": [ + 45.3803941059, + 5.51274680694 + ], + "libelle_d_acheminement": "ST BLAISE DU BUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51274680694, + 45.3803941059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73d14e4fea0b717488b60767a8a8cd8720171822", + "fields": { + "code_commune_insee": "38375", + "nom_de_la_commune": "ST CHRISTOPHE EN OISANS", + "code_postal": "38520", + "coordonnees_gps": [ + 44.9290846615, + 6.24454607842 + ], + "libelle_d_acheminement": "ST CHRISTOPHE EN OISANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24454607842, + 44.9290846615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca808548c81f3d48dc09e95b278f7a3abc6e51e", + "fields": { + "code_commune_insee": "38376", + "nom_de_la_commune": "ST CHRISTOPHE SUR GUIERS", + "code_postal": "38380", + "coordonnees_gps": [ + 45.4096520844, + 5.79306737331 + ], + "libelle_d_acheminement": "ST CHRISTOPHE SUR GUIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79306737331, + 45.4096520844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc4328cd5a53e799e05e8732424b4c493a28621c", + "fields": { + "code_commune_insee": "38378", + "nom_de_la_commune": "ST CLAIR DU RHONE", + "code_postal": "38370", + "coordonnees_gps": [ + 45.4354138205, + 4.77287890453 + ], + "libelle_d_acheminement": "ST CLAIR DU RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77287890453, + 45.4354138205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8266369619960ffbc31a30e4bb0a96a821e5579f", + "fields": { + "code_commune_insee": "38379", + "nom_de_la_commune": "ST CLAIR SUR GALAURE", + "code_postal": "38940", + "coordonnees_gps": [ + 45.2727108689, + 5.14759857127 + ], + "libelle_d_acheminement": "ST CLAIR SUR GALAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14759857127, + 45.2727108689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1577d94c8b556e0dbb196f04382de659b878004", + "fields": { + "code_commune_insee": "38387", + "nom_de_la_commune": "ST GEOIRS", + "code_postal": "38590", + "coordonnees_gps": [ + 45.3131912406, + 5.35408093497 + ], + "libelle_d_acheminement": "ST GEOIRS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35408093497, + 45.3131912406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84bb80a4ac1282bd17c199ce142415ef3d6d40a9", + "fields": { + "code_commune_insee": "38391", + "nom_de_la_commune": "ST GUILLAUME", + "code_postal": "38650", + "coordonnees_gps": [ + 44.9453659385, + 5.59084549964 + ], + "libelle_d_acheminement": "ST GUILLAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59084549964, + 44.9453659385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d121ca7f21102fb27c16a3d6cec817b8e0071de", + "fields": { + "code_commune_insee": "38394", + "nom_de_la_commune": "ST HILAIRE DU ROSIER", + "code_postal": "38840", + "coordonnees_gps": [ + 45.0907903238, + 5.25013852882 + ], + "libelle_d_acheminement": "ST HILAIRE DU ROSIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25013852882, + 45.0907903238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec8d7424fe7f7eeb4768f36e9612ba8eb3ee814f", + "fields": { + "ligne_5": "ST BERNARD", + "code_commune_insee": "38395", + "libelle_d_acheminement": "PLATEAU DES PETITES ROCHES", + "code_postal": "38660", + "nom_de_la_commune": "PLATEAU DES PETITES ROCHES", + "coordonnees_gps": [ + 45.3128224472, + 5.87842750871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87842750871, + 45.3128224472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "820d9362e132664098776032e5505a22340836af", + "fields": { + "code_commune_insee": "38396", + "nom_de_la_commune": "ST HONORE", + "code_postal": "38350", + "coordonnees_gps": [ + 44.9580518735, + 5.82026145034 + ], + "libelle_d_acheminement": "ST HONORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82026145034, + 44.9580518735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d657f167c91a0809024f32720bf0c250b24370c5", + "fields": { + "code_commune_insee": "38406", + "nom_de_la_commune": "ST JULIEN DE L HERMS", + "code_postal": "38122", + "coordonnees_gps": [ + 45.4314158549, + 5.08605594007 + ], + "libelle_d_acheminement": "ST JULIEN DE L HERMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08605594007, + 45.4314158549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f59d033bed20cbcc65318ae114ed87da183cc7ac", + "fields": { + "code_commune_insee": "38410", + "nom_de_la_commune": "ST LATTIER", + "code_postal": "38840", + "coordonnees_gps": [ + 45.0933060303, + 5.18523637419 + ], + "libelle_d_acheminement": "ST LATTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18523637419, + 45.0933060303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9f46f0aa55f8ec94b66b5c8334e1d0e49e53fc6", + "fields": { + "code_commune_insee": "38416", + "nom_de_la_commune": "ST MARCELLIN", + "code_postal": "38160", + "coordonnees_gps": [ + 45.1534136901, + 5.31720171085 + ], + "libelle_d_acheminement": "ST MARCELLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31720171085, + 45.1534136901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae08028637b38347bfb5e2ad5b79b92df2ef3087", + "fields": { + "code_commune_insee": "38427", + "nom_de_la_commune": "ST MICHEL DE ST GEOIRS", + "code_postal": "38590", + "coordonnees_gps": [ + 45.3005100986, + 5.35914982472 + ], + "libelle_d_acheminement": "ST MICHEL DE ST GEOIRS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35914982472, + 45.3005100986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f8b41ea9cc80b5f9c9f79de0170131b800d48de", + "fields": { + "code_commune_insee": "38432", + "nom_de_la_commune": "ST NICOLAS DE MACHERIN", + "code_postal": "38500", + "coordonnees_gps": [ + 45.4071927108, + 5.61586556764 + ], + "libelle_d_acheminement": "ST NICOLAS DE MACHERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61586556764, + 45.4071927108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bfdf17ba6c08dd5765b61073ceb087ce7390a9a", + "fields": { + "code_commune_insee": "38442", + "nom_de_la_commune": "ST PIERRE DE CHARTREUSE", + "code_postal": "38380", + "coordonnees_gps": [ + 45.331212571, + 5.79772583855 + ], + "libelle_d_acheminement": "ST PIERRE DE CHARTREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79772583855, + 45.331212571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56e8a38d250f22457983ee5789e74e53f72ffce4", + "fields": { + "code_commune_insee": "38445", + "nom_de_la_commune": "ST PIERRE DE MESAGE", + "code_postal": "38220", + "coordonnees_gps": [ + 45.048347708, + 5.76481736003 + ], + "libelle_d_acheminement": "ST PIERRE DE MESAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76481736003, + 45.048347708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb4d2a9d2c84e1ca8cc40b21879da0893075ff0e", + "fields": { + "code_commune_insee": "38448", + "nom_de_la_commune": "ST PRIM", + "code_postal": "38370", + "coordonnees_gps": [ + 45.4453169317, + 4.80093261008 + ], + "libelle_d_acheminement": "ST PRIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80093261008, + 45.4453169317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9190d2013c60e10436e2aad7d4998c16972908bf", + "fields": { + "code_commune_insee": "38450", + "nom_de_la_commune": "ST QUENTIN SUR ISERE", + "code_postal": "38210", + "coordonnees_gps": [ + 45.277528088, + 5.54771829456 + ], + "libelle_d_acheminement": "ST QUENTIN SUR ISERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54771829456, + 45.277528088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "954f5dd94177c2e7d057506bc6d89fb1a930ad0a", + "fields": { + "code_commune_insee": "38451", + "nom_de_la_commune": "ST ROMAIN DE JALIONAS", + "code_postal": "38460", + "coordonnees_gps": [ + 45.7520483819, + 5.22392059526 + ], + "libelle_d_acheminement": "ST ROMAIN DE JALIONAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22392059526, + 45.7520483819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfbaeab105577ec6554baa49f0bb4cf6acdc0e9c", + "fields": { + "code_commune_insee": "38459", + "nom_de_la_commune": "ST SORLIN DE VIENNE", + "code_postal": "38200", + "coordonnees_gps": [ + 45.4732844152, + 4.93813857629 + ], + "libelle_d_acheminement": "ST SORLIN DE VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93813857629, + 45.4732844152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d1bde816c946431b269f07d2f571f62d40fe733", + "fields": { + "code_commune_insee": "38460", + "nom_de_la_commune": "ST SULPICE DES RIVOIRES", + "code_postal": "38620", + "coordonnees_gps": [ + 45.4674837996, + 5.6039470428 + ], + "libelle_d_acheminement": "ST SULPICE DES RIVOIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6039470428, + 45.4674837996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b76adeb9cf08a77c3028f62c100a1cacf8f0042", + "fields": { + "code_commune_insee": "38462", + "nom_de_la_commune": "ST THEOFFREY", + "code_postal": "38119", + "coordonnees_gps": [ + 44.9910607379, + 5.77559158266 + ], + "libelle_d_acheminement": "ST THEOFFREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77559158266, + 44.9910607379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5af152f16619ff6f97d997fb58e63792d42b3cc", + "fields": { + "code_commune_insee": "38463", + "nom_de_la_commune": "ST VERAND", + "code_postal": "38160", + "coordonnees_gps": [ + 45.1823968662, + 5.34320073942 + ], + "libelle_d_acheminement": "ST VERAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34320073942, + 45.1823968662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57c4cded6c98bab4badcef9b45094011e9914663", + "fields": { + "code_commune_insee": "38465", + "nom_de_la_commune": "ST VICTOR DE MORESTEL", + "code_postal": "38510", + "coordonnees_gps": [ + 45.7025522178, + 5.49814056561 + ], + "libelle_d_acheminement": "ST VICTOR DE MORESTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49814056561, + 45.7025522178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "120ba92b785e59eb57ca048a59ebc929628a7915", + "fields": { + "code_commune_insee": "38468", + "nom_de_la_commune": "SALAISE SUR SANNE", + "code_postal": "38150", + "coordonnees_gps": [ + 45.3442511828, + 4.80860532784 + ], + "libelle_d_acheminement": "SALAISE SUR SANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80860532784, + 45.3442511828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24ce66350a6fca66a4eb7d912fe3f9d088f209a3", + "fields": { + "code_commune_insee": "38469", + "nom_de_la_commune": "LA SALETTE FALLAVAUX", + "code_postal": "38970", + "coordonnees_gps": [ + 44.8433178683, + 5.98498987593 + ], + "libelle_d_acheminement": "LA SALETTE FALLAVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98498987593, + 44.8433178683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f969bcf71422c7b37b1073c3a90bce6541c790a9", + "fields": { + "code_commune_insee": "38470", + "nom_de_la_commune": "LA SALLE EN BEAUMONT", + "code_postal": "38350", + "coordonnees_gps": [ + 44.8600222062, + 5.86073436298 + ], + "libelle_d_acheminement": "LA SALLE EN BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86073436298, + 44.8600222062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20cd43c823850bb4d7dbced35809b67b5442cf51", + "fields": { + "code_commune_insee": "38474", + "nom_de_la_commune": "SASSENAGE", + "code_postal": "38360", + "coordonnees_gps": [ + 45.2130962637, + 5.65242107292 + ], + "libelle_d_acheminement": "SASSENAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65242107292, + 45.2130962637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f43a122e5d3308b37392a8d371faad1e0794b85b", + "fields": { + "ligne_5": "NANTOIN", + "code_commune_insee": "38479", + "libelle_d_acheminement": "PORTE DES BONNEVAUX", + "code_postal": "38260", + "nom_de_la_commune": "PORTE DES BONNEVAUX", + "coordonnees_gps": [ + 45.4317273834, + 5.19744019557 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19744019557, + 45.4317273834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70cd379b04b0a827346721b3640f1eb1ea7ebdc3", + "fields": { + "ligne_5": "SEMONS", + "code_commune_insee": "38479", + "libelle_d_acheminement": "PORTE DES BONNEVAUX", + "code_postal": "38260", + "nom_de_la_commune": "PORTE DES BONNEVAUX", + "coordonnees_gps": [ + 45.4317273834, + 5.19744019557 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19744019557, + 45.4317273834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9090efdd1869cc2d4238c7f9bb5352cde946675f", + "fields": { + "code_commune_insee": "38487", + "nom_de_la_commune": "SEYSSUEL", + "code_postal": "38200", + "coordonnees_gps": [ + 45.5601358269, + 4.84416709965 + ], + "libelle_d_acheminement": "SEYSSUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84416709965, + 45.5601358269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee83d25a22e304c3429095ba58f71ccaf9a70265", + "fields": { + "code_commune_insee": "38498", + "nom_de_la_commune": "SUCCIEU", + "code_postal": "38300", + "coordonnees_gps": [ + 45.5295094349, + 5.34277529499 + ], + "libelle_d_acheminement": "SUCCIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34277529499, + 45.5295094349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9ed11ca116c456380eae665b25f178f7da57a1d", + "fields": { + "ligne_5": "JAMEYZIEU", + "code_commune_insee": "38507", + "libelle_d_acheminement": "TIGNIEU JAMEYZIEU", + "code_postal": "38230", + "nom_de_la_commune": "TIGNIEU JAMEYZIEU", + "coordonnees_gps": [ + 45.7344692085, + 5.18364277123 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18364277123, + 45.7344692085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d85e5ef6e53d329c519532ed0025ab807172fdac", + "fields": { + "code_commune_insee": "38508", + "nom_de_la_commune": "TORCHEFELON", + "code_postal": "38690", + "coordonnees_gps": [ + 45.5189293632, + 5.40282237683 + ], + "libelle_d_acheminement": "TORCHEFELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40282237683, + 45.5189293632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a9940eafd337754264a85b896674cac26ed8ee5", + "fields": { + "code_commune_insee": "38509", + "nom_de_la_commune": "LA TOUR DU PIN", + "code_postal": "38110", + "coordonnees_gps": [ + 45.5725876252, + 5.44527945798 + ], + "libelle_d_acheminement": "LA TOUR DU PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44527945798, + 45.5725876252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a738e743edcd9c35d1ab3fba465589e48d9409b", + "fields": { + "code_commune_insee": "38517", + "nom_de_la_commune": "TULLINS", + "code_postal": "38210", + "coordonnees_gps": [ + 45.2938791725, + 5.49006158623 + ], + "libelle_d_acheminement": "TULLINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49006158623, + 45.2938791725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcda73704d9dc15030dc1a4380e567f904d1fb03", + "fields": { + "code_commune_insee": "38530", + "nom_de_la_commune": "VAULX MILIEU", + "code_postal": "38090", + "coordonnees_gps": [ + 45.6155606962, + 5.18598476312 + ], + "libelle_d_acheminement": "VAULX MILIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18598476312, + 45.6155606962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "317bd8fead674b76c15f91ac74e7442e02e7f986", + "fields": { + "code_commune_insee": "38535", + "nom_de_la_commune": "VERNAS", + "code_postal": "38460", + "coordonnees_gps": [ + 45.7770907345, + 5.26765483745 + ], + "libelle_d_acheminement": "VERNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26765483745, + 45.7770907345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "140972d0976d8c14e497dd6481919eb7ec0adcde", + "fields": { + "code_commune_insee": "38537", + "nom_de_la_commune": "LA VERPILLIERE", + "code_postal": "38290", + "coordonnees_gps": [ + 45.637750025, + 5.14915516278 + ], + "libelle_d_acheminement": "LA VERPILLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14915516278, + 45.637750025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b996733d35aaa27b12305ecc9d5760d727156292", + "fields": { + "code_commune_insee": "38544", + "nom_de_la_commune": "VIENNE", + "code_postal": "38200", + "coordonnees_gps": [ + 45.520578372, + 4.88135156154 + ], + "libelle_d_acheminement": "VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88135156154, + 45.520578372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f079a1db7a77392d455d5d23c8abe965d9acbf05", + "fields": { + "code_commune_insee": "38545", + "nom_de_la_commune": "VIF", + "code_postal": "38450", + "coordonnees_gps": [ + 45.0430999483, + 5.67425076002 + ], + "libelle_d_acheminement": "VIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67425076002, + 45.0430999483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c7bca58d1443ba11deb42c52253823970759be6", + "fields": { + "code_commune_insee": "38550", + "nom_de_la_commune": "VILLARD RECULAS", + "code_postal": "38114", + "coordonnees_gps": [ + 45.0936836388, + 6.0372345748 + ], + "libelle_d_acheminement": "VILLARD RECULAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0372345748, + 45.0936836388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0633376280681d26515f6163dd4895eab6f4cb9e", + "fields": { + "code_commune_insee": "38553", + "nom_de_la_commune": "VILLEFONTAINE", + "code_postal": "38090", + "coordonnees_gps": [ + 45.6136289454, + 5.15547673355 + ], + "libelle_d_acheminement": "VILLEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15547673355, + 45.6136289454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85c4f237fa69b8ea9a02f4bcfcfefa44e0edf747", + "fields": { + "code_commune_insee": "38554", + "nom_de_la_commune": "VILLEMOIRIEU", + "code_postal": "38460", + "coordonnees_gps": [ + 45.7139810956, + 5.23197765072 + ], + "libelle_d_acheminement": "VILLEMOIRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23197765072, + 45.7139810956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf5803f4dc5055dda2e25ded0ddaa5f44504d39b", + "fields": { + "code_commune_insee": "38556", + "nom_de_la_commune": "VILLE SOUS ANJOU", + "code_postal": "38150", + "coordonnees_gps": [ + 45.3762742195, + 4.85882293241 + ], + "libelle_d_acheminement": "VILLE SOUS ANJOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85882293241, + 45.3762742195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ad6174c5f5cec8d9244167742779cd84e90e828", + "fields": { + "ligne_5": "PANISSAGE", + "code_commune_insee": "38560", + "libelle_d_acheminement": "VAL DE VIRIEU", + "code_postal": "38730", + "nom_de_la_commune": "VAL DE VIRIEU", + "coordonnees_gps": [ + 45.4710107219, + 5.47722792273 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47722792273, + 45.4710107219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "925fbd28cee5ceb27d4ec743bf693185620f443b", + "fields": { + "code_commune_insee": "38564", + "nom_de_la_commune": "VOISSANT", + "code_postal": "38620", + "coordonnees_gps": [ + 45.4793906375, + 5.70464271158 + ], + "libelle_d_acheminement": "VOISSANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70464271158, + 45.4793906375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e0cba00eba17803d339525a92bbe848098a8b61", + "fields": { + "code_commune_insee": "38567", + "nom_de_la_commune": "CHAMROUSSE", + "code_postal": "38410", + "coordonnees_gps": [ + 45.1197427134, + 5.89438297795 + ], + "libelle_d_acheminement": "CHAMROUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89438297795, + 45.1197427134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8673db1eb9b0544af6d054d1d237b139a1b8d04d", + "fields": { + "code_commune_insee": "39007", + "nom_de_la_commune": "ALIEZE", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5850122581, + 5.58578294146 + ], + "libelle_d_acheminement": "ALIEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58578294146, + 46.5850122581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc07d07b57f1a3d7404b4a01c94ab9db1ba69de7", + "fields": { + "ligne_5": "CEFFIA", + "code_commune_insee": "39018", + "libelle_d_acheminement": "AROMAS", + "code_postal": "39240", + "nom_de_la_commune": "AROMAS", + "coordonnees_gps": [ + 46.2931394653, + 5.4882078411 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4882078411, + 46.2931394653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fa9061b1a9ef3b7ed1054de2b182409f491c8da", + "fields": { + "code_commune_insee": "39019", + "nom_de_la_commune": "LES ARSURES", + "code_postal": "39600", + "coordonnees_gps": [ + 46.953105661, + 5.78430690832 + ], + "libelle_d_acheminement": "LES ARSURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78430690832, + 46.953105661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba63bd50a669cc30cf8aaf058db41b65c0ecf925", + "fields": { + "code_commune_insee": "39024", + "nom_de_la_commune": "AUDELANGE", + "code_postal": "39700", + "coordonnees_gps": [ + 47.14070332, + 5.58399367432 + ], + "libelle_d_acheminement": "AUDELANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58399367432, + 47.14070332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce7bc2a8b4fe16f28725a8b5d4dc42575f31fe47", + "fields": { + "code_commune_insee": "39027", + "nom_de_la_commune": "AUGISEY", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5548389482, + 5.49566271046 + ], + "libelle_d_acheminement": "AUGISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49566271046, + 46.5548389482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3bad0ecf62b69f1ceaa5c635e0b44f79ffc2186", + "fields": { + "code_commune_insee": "39035", + "nom_de_la_commune": "BALANOD", + "code_postal": "39160", + "coordonnees_gps": [ + 46.4554239007, + 5.35090483871 + ], + "libelle_d_acheminement": "BALANOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35090483871, + 46.4554239007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1073fb0d81f7da2be93a5ab90296b3086a623ff", + "fields": { + "code_commune_insee": "39037", + "nom_de_la_commune": "BANS", + "code_postal": "39380", + "coordonnees_gps": [ + 46.9829169242, + 5.58184356707 + ], + "libelle_d_acheminement": "BANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58184356707, + 46.9829169242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6673a0d5bb079aed5048a5cf2a23d44d766617c9", + "fields": { + "ligne_5": "BEAUFORT", + "code_commune_insee": "39043", + "libelle_d_acheminement": "BEAUFORT ORBAGNA", + "code_postal": "39190", + "nom_de_la_commune": "BEAUFORT ORBAGNA", + "coordonnees_gps": [ + 46.5858090332, + 5.43052572582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43052572582, + 46.5858090332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d615bbd64f2279e8234349bb62d81d45ed7fa93", + "fields": { + "code_commune_insee": "39045", + "nom_de_la_commune": "BEFFIA", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5315651436, + 5.54829278779 + ], + "libelle_d_acheminement": "BEFFIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54829278779, + 46.5315651436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ed7e6dd45e578677241e879622342ac0fbf4afd", + "fields": { + "code_commune_insee": "39047", + "nom_de_la_commune": "BELLEFONTAINE", + "code_postal": "39400", + "coordonnees_gps": [ + 46.5565262236, + 6.08239156513 + ], + "libelle_d_acheminement": "BELLEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08239156513, + 46.5565262236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33131a75e36af484900b93ddfd386af65832b530", + "fields": { + "code_commune_insee": "39050", + "nom_de_la_commune": "BESAIN", + "code_postal": "39800", + "coordonnees_gps": [ + 46.7859315795, + 5.79619936745 + ], + "libelle_d_acheminement": "BESAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79619936745, + 46.7859315795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6339d5e75285d4b2081aafe208060918b7fd1019", + "fields": { + "code_commune_insee": "39054", + "nom_de_la_commune": "BIEFMORIN", + "code_postal": "39800", + "coordonnees_gps": [ + 46.9030690106, + 5.52936210858 + ], + "libelle_d_acheminement": "BIEFMORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52936210858, + 46.9030690106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29295d03cf3f5231ef7c09677755fdae273bb741", + "fields": { + "code_commune_insee": "39058", + "nom_de_la_commune": "BLYE", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6284281077, + 5.69599874066 + ], + "libelle_d_acheminement": "BLYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69599874066, + 46.6284281077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ea398022a12d24403e5e71e30938d93eb84eee", + "fields": { + "code_commune_insee": "39066", + "nom_de_la_commune": "BORNAY", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6118982818, + 5.55324402199 + ], + "libelle_d_acheminement": "BORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55324402199, + 46.6118982818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5368eb1a5ab0a658251834b5b31741bfd73cb464", + "fields": { + "code_commune_insee": "39073", + "nom_de_la_commune": "BRAINANS", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8746666632, + 5.6278782462 + ], + "libelle_d_acheminement": "BRAINANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6278782462, + 46.8746666632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4047688c0a7d5d86f1c3fcc877f5e25d94f952cb", + "fields": { + "code_commune_insee": "39090", + "nom_de_la_commune": "CHAINEE DES COUPIS", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9220207447, + 5.43463248879 + ], + "libelle_d_acheminement": "CHAINEE DES COUPIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43463248879, + 46.9220207447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56382fb4bd893a004f5842ba97c6a660f4ac4658", + "fields": { + "code_commune_insee": "39092", + "nom_de_la_commune": "CHAMBERIA", + "code_postal": "39270", + "coordonnees_gps": [ + 46.4694472775, + 5.5703149623 + ], + "libelle_d_acheminement": "CHAMBERIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5703149623, + 46.4694472775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df187d9e38ceaa855d5a7a236897dbdbcc3c9ae2", + "fields": { + "code_commune_insee": "39108", + "nom_de_la_commune": "CHARENCY", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7665615855, + 5.99264951737 + ], + "libelle_d_acheminement": "CHARENCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99264951737, + 46.7665615855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d9b6368a9c68982d4507d4d638cdebad973e45a", + "fields": { + "code_commune_insee": "39110", + "nom_de_la_commune": "LA CHARME", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8485608193, + 5.54676526867 + ], + "libelle_d_acheminement": "LA CHARME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54676526867, + 46.8485608193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc87b1892d7de35528d47e6ba4b1dc6729bc4995", + "fields": { + "code_commune_insee": "39116", + "nom_de_la_commune": "LA CHATELAINE", + "code_postal": "39600", + "coordonnees_gps": [ + 46.8586081976, + 5.8248269042 + ], + "libelle_d_acheminement": "LA CHATELAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8248269042, + 46.8586081976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "722ad363e943e51838a09d0e7f409e02076666c9", + "fields": { + "code_commune_insee": "39117", + "nom_de_la_commune": "CHATELAY", + "code_postal": "39380", + "coordonnees_gps": [ + 47.0581445417, + 5.69769809053 + ], + "libelle_d_acheminement": "CHATELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69769809053, + 47.0581445417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5513f2bf7537a839cdaef8392fbd45ee9c1d2413", + "fields": { + "code_commune_insee": "39120", + "nom_de_la_commune": "CHATELNEUF", + "code_postal": "39300", + "coordonnees_gps": [ + 46.6660130297, + 5.91229926593 + ], + "libelle_d_acheminement": "CHATELNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91229926593, + 46.6660130297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e39b55081022937a2164953dba0c42b1e5605006", + "fields": { + "code_commune_insee": "39121", + "nom_de_la_commune": "CHATENOIS", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1503115201, + 5.54630681574 + ], + "libelle_d_acheminement": "CHATENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54630681574, + 47.1503115201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d21a051be6c38981e22d939ba1f41a296939a6fd", + "fields": { + "code_commune_insee": "39124", + "nom_de_la_commune": "CHAUMERGY", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8433857304, + 5.47463338737 + ], + "libelle_d_acheminement": "CHAUMERGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47463338737, + 46.8433857304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5782362ab1c499322fcb835649aa63b5995df15a", + "fields": { + "code_commune_insee": "39126", + "nom_de_la_commune": "LA CHAUMUSSE", + "code_postal": "39150", + "coordonnees_gps": [ + 46.6006202227, + 5.94399129597 + ], + "libelle_d_acheminement": "LA CHAUMUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94399129597, + 46.6006202227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6d341a1f698d6bc7670eab76ce6abe177d68000", + "fields": { + "code_commune_insee": "39127", + "nom_de_la_commune": "CHAUSSENANS", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8246686639, + 5.74543213223 + ], + "libelle_d_acheminement": "CHAUSSENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74543213223, + 46.8246686639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19ce2173643bb1e7db67a3d5192cf52b1c48c710", + "fields": { + "code_commune_insee": "39132", + "nom_de_la_commune": "LA CHAUX EN BRESSE", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8259443938, + 5.47657963096 + ], + "libelle_d_acheminement": "LA CHAUX EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47657963096, + 46.8259443938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5de58f3bd0fab6eefe6ad69f40986b90bb93a34", + "fields": { + "code_commune_insee": "39134", + "nom_de_la_commune": "CHAVERIA", + "code_postal": "39270", + "coordonnees_gps": [ + 46.4989504543, + 5.55730499833 + ], + "libelle_d_acheminement": "CHAVERIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55730499833, + 46.4989504543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa7bb10113a777803fdd4e8c7c901d7bfdaa64c1", + "fields": { + "code_commune_insee": "39136", + "nom_de_la_commune": "CHEMENOT", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8599600621, + 5.52969682759 + ], + "libelle_d_acheminement": "CHEMENOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52969682759, + 46.8599600621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54c3b8fbda67ca3fa45a2437001a23969b586c9d", + "fields": { + "ligne_5": "LAVANS SUR VALOUSE", + "code_commune_insee": "39137", + "libelle_d_acheminement": "ST HYMETIERE SUR VALOUSE", + "code_postal": "39240", + "nom_de_la_commune": "ST HYMETIERE SUR VALOUSE", + "coordonnees_gps": [ + 46.3507935799, + 5.55838223354 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55838223354, + 46.3507935799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "657c4f7337d38953d42545b3128ffbdde4827f2b", + "fields": { + "code_commune_insee": "39140", + "nom_de_la_commune": "CHENE SEC", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8480769432, + 5.44386002073 + ], + "libelle_d_acheminement": "CHENE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44386002073, + 46.8480769432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18b2f6f0119efaa2e9e23b518035247f2877db88", + "fields": { + "code_commune_insee": "39153", + "nom_de_la_commune": "CIZE", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7198972063, + 5.91999404872 + ], + "libelle_d_acheminement": "CIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91999404872, + 46.7198972063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d71e8348b74b3ed09a0b637f9df3965800657951", + "fields": { + "code_commune_insee": "39154", + "nom_de_la_commune": "CLAIRVAUX LES LACS", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5646560659, + 5.75476433887 + ], + "libelle_d_acheminement": "CLAIRVAUX LES LACS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75476433887, + 46.5646560659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34df08fbe35bce5473c26929b1ff9e5438b82ffb", + "fields": { + "code_commune_insee": "39155", + "nom_de_la_commune": "CLUCY", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9461704055, + 5.91685452628 + ], + "libelle_d_acheminement": "CLUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91685452628, + 46.9461704055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2950b17e4c307277b4aece29ef782fe321538e5b", + "fields": { + "code_commune_insee": "39156", + "nom_de_la_commune": "COGNA", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5867008206, + 5.77312051776 + ], + "libelle_d_acheminement": "COGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77312051776, + 46.5867008206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae0a9d2da7703369861633ac23fa75d97fe2a4af", + "fields": { + "code_commune_insee": "39157", + "nom_de_la_commune": "COISERETTE", + "code_postal": "39200", + "coordonnees_gps": [ + 46.3381325786, + 5.8257562121 + ], + "libelle_d_acheminement": "COISERETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8257562121, + 46.3381325786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd0ff9098d7754c33bcb3bd1e18e7c68c6b4ebeb", + "fields": { + "code_commune_insee": "39163", + "nom_de_la_commune": "CONDES", + "code_postal": "39240", + "coordonnees_gps": [ + 46.3305432517, + 5.61760194459 + ], + "libelle_d_acheminement": "CONDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61760194459, + 46.3305432517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "336514d7f4dad858b5269a7fbd16b68dec626a79", + "fields": { + "code_commune_insee": "39171", + "nom_de_la_commune": "COURLAOUX", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6694520389, + 5.44937543437 + ], + "libelle_d_acheminement": "COURLAOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44937543437, + 46.6694520389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22241e02f330fe23603dc81fd051517957beaeda", + "fields": { + "code_commune_insee": "39173", + "nom_de_la_commune": "COUSANCE", + "code_postal": "39190", + "coordonnees_gps": [ + 46.5333527445, + 5.37741644744 + ], + "libelle_d_acheminement": "COUSANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37741644744, + 46.5333527445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e7b89c47d976fe92285b60a4296d68666148849", + "fields": { + "code_commune_insee": "39174", + "nom_de_la_commune": "COYRIERE", + "code_postal": "39200", + "coordonnees_gps": [ + 46.3404621083, + 5.84504322935 + ], + "libelle_d_acheminement": "COYRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84504322935, + 46.3404621083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b7f6b2173f0b4c92b1e3291e25e6c6db3a7b7db", + "fields": { + "ligne_5": "MIREBEL", + "code_commune_insee": "39177", + "libelle_d_acheminement": "HAUTEROCHE", + "code_postal": "39570", + "nom_de_la_commune": "HAUTEROCHE", + "coordonnees_gps": [ + 46.6884401125, + 5.66906572619 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66906572619, + 46.6884401125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a39ff02fcb103587735b2cf83a7906e9ab04a03", + "fields": { + "code_commune_insee": "39187", + "nom_de_la_commune": "CUVIER", + "code_postal": "39250", + "coordonnees_gps": [ + 46.8392780314, + 6.06612873386 + ], + "libelle_d_acheminement": "CUVIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06612873386, + 46.8392780314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e269f03acd7971ca99fbed941d5379ecac4ccf56", + "fields": { + "code_commune_insee": "39192", + "nom_de_la_commune": "DENEZIERES", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6244113677, + 5.80050355357 + ], + "libelle_d_acheminement": "DENEZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80050355357, + 46.6244113677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4a1a2e9ea632d50de33ca62f42e8ff6279e4436", + "fields": { + "code_commune_insee": "39194", + "nom_de_la_commune": "DESNES", + "code_postal": "39140", + "coordonnees_gps": [ + 46.7681304523, + 5.46790509865 + ], + "libelle_d_acheminement": "DESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46790509865, + 46.7681304523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eb4a3bbf2843bac397763ddba6d03768950505e", + "fields": { + "code_commune_insee": "39196", + "nom_de_la_commune": "LES DEUX FAYS", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8854345992, + 5.48750372118 + ], + "libelle_d_acheminement": "LES DEUX FAYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48750372118, + 46.8854345992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b0f7ce9cc405432020f7afd0b953a0c3d0c97c4", + "fields": { + "code_commune_insee": "39198", + "nom_de_la_commune": "DOLE", + "code_postal": "39100", + "coordonnees_gps": [ + 47.0755452538, + 5.50062446099 + ], + "libelle_d_acheminement": "DOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50062446099, + 47.0755452538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2962ababa2375cdf951d00bef33e6a779fd2a01a", + "fields": { + "ligne_5": "ST YLIE", + "code_commune_insee": "39198", + "libelle_d_acheminement": "DOLE", + "code_postal": "39100", + "nom_de_la_commune": "DOLE", + "coordonnees_gps": [ + 47.0755452538, + 5.50062446099 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50062446099, + 47.0755452538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edf4ff8ae83d8c80b8a8ecc084a285ae7a9d8964", + "fields": { + "code_commune_insee": "39203", + "nom_de_la_commune": "DOYE", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7678938966, + 6.01401382033 + ], + "libelle_d_acheminement": "DOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01401382033, + 46.7678938966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87dd7fee1f8de46acd453d26b643f61cba5a9f6f", + "fields": { + "ligne_5": "FLORENTIA", + "code_commune_insee": "39209", + "libelle_d_acheminement": "VAL D EPY", + "code_postal": "39320", + "nom_de_la_commune": "VAL D EPY", + "coordonnees_gps": [ + 46.3756497717, + 5.39068206826 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39068206826, + 46.3756497717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f64675c73c00fab26bf2e67129756d7e8faa8c5d", + "fields": { + "code_commune_insee": "39216", + "nom_de_la_commune": "ETIVAL", + "code_postal": "39130", + "coordonnees_gps": [ + 46.4917221843, + 5.79388173937 + ], + "libelle_d_acheminement": "ETIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79388173937, + 46.4917221843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d889d7baa516e32b907f5014e658d01ebe0e127b", + "fields": { + "code_commune_insee": "39223", + "nom_de_la_commune": "LA FERTE", + "code_postal": "39600", + "coordonnees_gps": [ + 46.9403261024, + 5.65073456317 + ], + "libelle_d_acheminement": "LA FERTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65073456317, + 46.9403261024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecbef44ef21b23d5fef8c69ab1bb569d3b538882", + "fields": { + "code_commune_insee": "39239", + "nom_de_la_commune": "LA FRASNEE", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5611032871, + 5.80120457498 + ], + "libelle_d_acheminement": "LA FRASNEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80120457498, + 46.5611032871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2f01e1373e4a75b991890bfdfe398fa383b4d9f", + "fields": { + "code_commune_insee": "39248", + "nom_de_la_commune": "GERAISE", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9582339732, + 5.95511287439 + ], + "libelle_d_acheminement": "GERAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95511287439, + 46.9582339732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2e7b92ba30682546c36bf6c3361f6ad844bcf64", + "fields": { + "code_commune_insee": "39251", + "nom_de_la_commune": "GEVINGEY", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6375986496, + 5.50938673759 + ], + "libelle_d_acheminement": "GEVINGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50938673759, + 46.6375986496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "557f9c31ad7d65328536ceb3452116070109ea8c", + "fields": { + "ligne_5": "GRANDE RIVIERE", + "code_commune_insee": "39258", + "libelle_d_acheminement": "GRANDE RIVIERE CHATEAU", + "code_postal": "39150", + "nom_de_la_commune": "GRANDE RIVIERE CHATEAU", + "coordonnees_gps": [ + 46.5345269468, + 5.90836886735 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90836886735, + 46.5345269468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3245384c86be0bbec182168a09a8ae291add653f", + "fields": { + "ligne_5": "RIVIERE DEVANT", + "code_commune_insee": "39258", + "libelle_d_acheminement": "GRANDE RIVIERE CHATEAU", + "code_postal": "39150", + "nom_de_la_commune": "GRANDE RIVIERE CHATEAU", + "coordonnees_gps": [ + 46.5345269468, + 5.90836886735 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90836886735, + 46.5345269468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43946773711d26256c9dfc7c87be4c95a148c9db", + "fields": { + "code_commune_insee": "39266", + "nom_de_la_commune": "LES HAYS", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9085311513, + 5.39082220543 + ], + "libelle_d_acheminement": "LES HAYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39082220543, + 46.9085311513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9e41d7de513fb158d9a87c16daa00d927f0b4e6", + "fields": { + "code_commune_insee": "39267", + "nom_de_la_commune": "IVORY", + "code_postal": "39110", + "coordonnees_gps": [ + 46.8986920683, + 5.84966493712 + ], + "libelle_d_acheminement": "IVORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84966493712, + 46.8986920683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ab77678c192c83bc90cd18a617ab51b5e01385e", + "fields": { + "code_commune_insee": "39271", + "nom_de_la_commune": "LAC DES ROUGES TRUITES", + "code_postal": "39150", + "coordonnees_gps": [ + 46.6006239723, + 6.01003067778 + ], + "libelle_d_acheminement": "LAC DES ROUGES TRUITES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01003067778, + 46.6006239723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a82b12e4dda2816ae325678993596741e8fd14f", + "fields": { + "code_commune_insee": "39272", + "nom_de_la_commune": "LADOYE SUR SEILLE", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7668743064, + 5.68304960571 + ], + "libelle_d_acheminement": "LADOYE SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68304960571, + 46.7668743064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84d4b972f252727588fd042e9d1c8ed7788c2825", + "fields": { + "code_commune_insee": "39283", + "nom_de_la_commune": "LAVANCIA EPERCY", + "code_postal": "01590", + "coordonnees_gps": [ + 46.3364527437, + 5.68491757236 + ], + "libelle_d_acheminement": "LAVANCIA EPERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68491757236, + 46.3364527437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b0ae3ee482c2acab8a9b6416d5550b93ada182c", + "fields": { + "code_commune_insee": "39285", + "nom_de_la_commune": "LAVANS LES DOLE", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1556350974, + 5.63422877694 + ], + "libelle_d_acheminement": "LAVANS LES DOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63422877694, + 47.1556350974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ace0b3bd6c8dac3d8ffd64bc0c13aeb8df33b996", + "fields": { + "ligne_5": "PONTHOUX", + "code_commune_insee": "39286", + "libelle_d_acheminement": "LAVANS LES ST CLAUDE", + "code_postal": "39170", + "nom_de_la_commune": "LAVANS LES ST CLAUDE", + "coordonnees_gps": [ + 46.3901726307, + 5.77719970471 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77719970471, + 46.3901726307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b3639a5e2459cf86a5d9fb296cfbf3272bffc63", + "fields": { + "code_commune_insee": "39289", + "nom_de_la_commune": "LECT", + "code_postal": "39260", + "coordonnees_gps": [ + 46.3941077641, + 5.67259916552 + ], + "libelle_d_acheminement": "LECT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67259916552, + 46.3941077641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8247d40fb07285f2ec002835c9ea4b35feea864", + "fields": { + "ligne_5": "FETIGNY", + "code_commune_insee": "39290", + "libelle_d_acheminement": "VALZIN EN PETITE MONTAGNE", + "code_postal": "39240", + "nom_de_la_commune": "VALZIN EN PETITE MONTAGNE", + "coordonnees_gps": [ + 46.4245328121, + 5.60694899546 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60694899546, + 46.4245328121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f771717776a540fea406ebe498ee3171df3a4a5", + "fields": { + "code_commune_insee": "39291", + "nom_de_la_commune": "LEMUY", + "code_postal": "39110", + "coordonnees_gps": [ + 46.889073622, + 5.98241424914 + ], + "libelle_d_acheminement": "LEMUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98241424914, + 46.889073622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b92645611c3f7dd90cc8e42d2bdf1b2618ee332c", + "fields": { + "code_commune_insee": "39295", + "nom_de_la_commune": "LOISIA", + "code_postal": "39320", + "coordonnees_gps": [ + 46.4942321244, + 5.46231630746 + ], + "libelle_d_acheminement": "LOISIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46231630746, + 46.4942321244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37096859c13bb6970f5691b70e69b446e5632db3", + "fields": { + "code_commune_insee": "39298", + "nom_de_la_commune": "LONGCOCHON", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7705510024, + 6.07491619337 + ], + "libelle_d_acheminement": "LONGCOCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07491619337, + 46.7705510024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2297574fbb8fd9c4d419c31475d506203b70f7e", + "fields": { + "code_commune_insee": "39300", + "nom_de_la_commune": "LONS LE SAUNIER", + "code_postal": "39000", + "coordonnees_gps": [ + 46.6744796278, + 5.55733212947 + ], + "libelle_d_acheminement": "LONS LE SAUNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55733212947, + 46.6744796278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ca09b3d570d1bdb6fa7331972da70b1273a788a", + "fields": { + "code_commune_insee": "39301", + "nom_de_la_commune": "LOULLE", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7051852388, + 5.88350516541 + ], + "libelle_d_acheminement": "LOULLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88350516541, + 46.7051852388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a17e314a1dfb2317f662eb41f09f810e8f19fe90", + "fields": { + "code_commune_insee": "39308", + "nom_de_la_commune": "MALANGE", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1838419032, + 5.61461645047 + ], + "libelle_d_acheminement": "MALANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61461645047, + 47.1838419032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8578f1041d185af212cbf952bd006d6ed1d1b871", + "fields": { + "code_commune_insee": "39320", + "nom_de_la_commune": "MAYNAL", + "code_postal": "39190", + "coordonnees_gps": [ + 46.5672563014, + 5.4124890744 + ], + "libelle_d_acheminement": "MAYNAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4124890744, + 46.5672563014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f55f0fa90e05e232d3d5c955d8e99dabcfe62209", + "fields": { + "code_commune_insee": "39323", + "nom_de_la_commune": "MENOTEY", + "code_postal": "39290", + "coordonnees_gps": [ + 47.1678262318, + 5.50278789931 + ], + "libelle_d_acheminement": "MENOTEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50278789931, + 47.1678262318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ea96b0d8ac2412426086edad13d44c7c36c7dc9", + "fields": { + "code_commune_insee": "39325", + "nom_de_la_commune": "MESNAY", + "code_postal": "39600", + "coordonnees_gps": [ + 46.8999786113, + 5.81905626698 + ], + "libelle_d_acheminement": "MESNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81905626698, + 46.8999786113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ad036d217fc8e3a7baf3259f2b6abee30218eb6", + "fields": { + "code_commune_insee": "39327", + "nom_de_la_commune": "MESSIA SUR SORNE", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6631538185, + 5.51569429363 + ], + "libelle_d_acheminement": "MESSIA SUR SORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51569429363, + 46.6631538185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "251fbce5f2b6dea54aa2baf349a20598987972c0", + "fields": { + "code_commune_insee": "39328", + "nom_de_la_commune": "MEUSSIA", + "code_postal": "39260", + "coordonnees_gps": [ + 46.4947553205, + 5.73946111468 + ], + "libelle_d_acheminement": "MEUSSIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73946111468, + 46.4947553205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1c641b3aa8a532a7100be54c0b4c1017ab49794", + "fields": { + "code_commune_insee": "39330", + "nom_de_la_commune": "MIERY", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8065984707, + 5.66613178867 + ], + "libelle_d_acheminement": "MIERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66613178867, + 46.8065984707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "641f34b5287a723dcae03fb53aa78a78e453ddbd", + "fields": { + "ligne_5": "ESSAVILLY", + "code_commune_insee": "39331", + "libelle_d_acheminement": "MIGNOVILLARD", + "code_postal": "39250", + "nom_de_la_commune": "MIGNOVILLARD", + "coordonnees_gps": [ + 46.7758072369, + 6.14394186083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14394186083, + 46.7758072369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32149d62b55c5ad2c0207b3f660bdbea207448b6", + "fields": { + "code_commune_insee": "39334", + "nom_de_la_commune": "MOIRON", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6350035494, + 5.55979074338 + ], + "libelle_d_acheminement": "MOIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55979074338, + 46.6350035494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eab91c238d9ea21ba9aa0c854c76256a83137a6e", + "fields": { + "ligne_5": "MOLINGES", + "code_commune_insee": "39339", + "libelle_d_acheminement": "CHASSAL MOLINGES", + "code_postal": "39360", + "nom_de_la_commune": "CHASSAL MOLINGES", + "coordonnees_gps": [ + 46.35182997, + 5.76359169948 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76359169948, + 46.35182997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a766560889e330cbcd63ea1f0df430f6584c7f4e", + "fields": { + "code_commune_insee": "39359", + "nom_de_la_commune": "MONTMARLON", + "code_postal": "39110", + "coordonnees_gps": [ + 46.87302574, + 5.96629816097 + ], + "libelle_d_acheminement": "MONTMARLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96629816097, + 46.87302574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24742c5e30ba0d3b742ab2bac99dc68dd71ec1b7", + "fields": { + "code_commune_insee": "39361", + "nom_de_la_commune": "MONTMIREY LE CHATEAU", + "code_postal": "39290", + "coordonnees_gps": [ + 47.2299837949, + 5.53411913027 + ], + "libelle_d_acheminement": "MONTMIREY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53411913027, + 47.2299837949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c66c6a26af6fa094eb6fd9894b94c18c93f00fd9", + "fields": { + "ligne_5": "SAVAGNA", + "code_commune_insee": "39362", + "libelle_d_acheminement": "MONTMOROT", + "code_postal": "39570", + "nom_de_la_commune": "MONTMOROT", + "coordonnees_gps": [ + 46.6868843309, + 5.5196117795 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5196117795, + 46.6868843309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "010d9307309d2a30e3674a345703091a46260419", + "fields": { + "ligne_5": "LA MOUILLE", + "code_commune_insee": "39368", + "libelle_d_acheminement": "HAUTS DE BIENNE", + "code_postal": "39400", + "nom_de_la_commune": "HAUTS DE BIENNE", + "coordonnees_gps": [ + 46.5258425381, + 6.03328656487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03328656487, + 46.5258425381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ba2f5316ac564793b507412369748d59196298f", + "fields": { + "code_commune_insee": "39376", + "nom_de_la_commune": "MOUTOUX", + "code_postal": "39300", + "coordonnees_gps": [ + 46.790683672, + 5.94357919942 + ], + "libelle_d_acheminement": "MOUTOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94357919942, + 46.790683672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04b1b618dfa2dd3d97ab0b30b684bf8f2b97a4ce", + "fields": { + "ligne_5": "ST JEAN D ETREUX", + "code_commune_insee": "39378", + "libelle_d_acheminement": "LES TROIS CHATEAUX", + "code_postal": "39160", + "nom_de_la_commune": "LES TROIS CHATEAUX", + "coordonnees_gps": [ + 46.4197619267, + 5.34914344308 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34914344308, + 46.4197619267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d76fd9c44b77f8e3916427257958f9ae14cbff93", + "fields": { + "code_commune_insee": "39399", + "nom_de_la_commune": "OUNANS", + "code_postal": "39380", + "coordonnees_gps": [ + 46.9901386128, + 5.66317598705 + ], + "libelle_d_acheminement": "OUNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66317598705, + 46.9901386128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c2b95c971eada19a72b3b662865e895248f44e2", + "fields": { + "code_commune_insee": "39406", + "nom_de_la_commune": "LE PASQUIER", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7980920446, + 5.89702204167 + ], + "libelle_d_acheminement": "LE PASQUIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89702204167, + 46.7980920446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e506ea5734474f96920a19e15f1599c6c126983e", + "fields": { + "code_commune_insee": "39418", + "nom_de_la_commune": "PICARREAU", + "code_postal": "39800", + "coordonnees_gps": [ + 46.7547633976, + 5.7569978699 + ], + "libelle_d_acheminement": "PICARREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7569978699, + 46.7547633976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b37d383deba9b75ffcecd1173e1c6762bc1e580", + "fields": { + "code_commune_insee": "39436", + "nom_de_la_commune": "PONT D HERY", + "code_postal": "39110", + "coordonnees_gps": [ + 46.8762807232, + 5.89928454106 + ], + "libelle_d_acheminement": "PONT D HERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89928454106, + 46.8762807232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb1eac145eac3003c76d409054cd936150685a21", + "fields": { + "code_commune_insee": "39439", + "nom_de_la_commune": "PORT LESNEY", + "code_postal": "39330", + "coordonnees_gps": [ + 46.9984173967, + 5.81915102369 + ], + "libelle_d_acheminement": "PORT LESNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81915102369, + 46.9984173967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e4502e32e8ac978d247eb26d62a1cb35a4e0d8f", + "fields": { + "code_commune_insee": "39441", + "nom_de_la_commune": "PREMANON", + "code_postal": "39220", + "coordonnees_gps": [ + 46.4538422377, + 6.03492977371 + ], + "libelle_d_acheminement": "PREMANON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03492977371, + 46.4538422377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fcf241e5c8a09ccbdf29e42ce913d593403793f", + "fields": { + "code_commune_insee": "39444", + "nom_de_la_commune": "PRETIN", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9318790423, + 5.83502005911 + ], + "libelle_d_acheminement": "PRETIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83502005911, + 46.9318790423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6b641774caa659727595702f4b8262cc434fc69", + "fields": { + "code_commune_insee": "39448", + "nom_de_la_commune": "RAHON", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9938029264, + 5.47383936755 + ], + "libelle_d_acheminement": "RAHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47383936755, + 46.9938029264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23120c952bfe530d0f04fd425ac257a2478a588a", + "fields": { + "code_commune_insee": "39457", + "nom_de_la_commune": "LES REPOTS", + "code_postal": "39140", + "coordonnees_gps": [ + 46.6851813053, + 5.413825352 + ], + "libelle_d_acheminement": "LES REPOTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.413825352, + 46.6851813053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f39a5e5bf6f95d21905877b23077921ed33f9e8", + "fields": { + "code_commune_insee": "39470", + "nom_de_la_commune": "LES ROUSSES", + "code_postal": "39400", + "coordonnees_gps": [ + 46.4984696055, + 6.07006530541 + ], + "libelle_d_acheminement": "LES ROUSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07006530541, + 46.4984696055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9382422021674db9f7f99fc54367cf92b235372", + "fields": { + "ligne_5": "CHEVRY", + "code_commune_insee": "39478", + "libelle_d_acheminement": "ST CLAUDE", + "code_postal": "39200", + "nom_de_la_commune": "ST CLAUDE", + "coordonnees_gps": [ + 46.408600398, + 5.87556247635 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87556247635, + 46.408600398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dec4b46a04ab6dff0498b7bab1058b698221270b", + "fields": { + "code_commune_insee": "39479", + "nom_de_la_commune": "ST CYR MONTMALIN", + "code_postal": "39600", + "coordonnees_gps": [ + 46.959233635, + 5.72305044676 + ], + "libelle_d_acheminement": "ST CYR MONTMALIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72305044676, + 46.959233635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07b6f74f79f0e8da5c2a128855d03fb955d7a81c", + "fields": { + "ligne_5": "BOURCIA", + "code_commune_insee": "39485", + "libelle_d_acheminement": "VAL SURAN", + "code_postal": "39320", + "nom_de_la_commune": "VAL SURAN", + "coordonnees_gps": [ + 46.3963208, + 5.4577858737 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4577858737, + 46.3963208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe7c6f90b74be3f53363b122883759afa759ee51", + "fields": { + "code_commune_insee": "39490", + "nom_de_la_commune": "ST LOUP", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9965194373, + 5.30532053825 + ], + "libelle_d_acheminement": "ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30532053825, + 46.9965194373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9af5aed662a226c426d2a6ff76260b0e823967bc", + "fields": { + "code_commune_insee": "39493", + "nom_de_la_commune": "ST MAURICE CRILLAT", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5680782643, + 5.83386083988 + ], + "libelle_d_acheminement": "ST MAURICE CRILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83386083988, + 46.5680782643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3736363776332e1415d9cc15f65298b1774e4f83", + "fields": { + "ligne_5": "CRILLAT", + "code_commune_insee": "39493", + "libelle_d_acheminement": "ST MAURICE CRILLAT", + "code_postal": "39130", + "nom_de_la_commune": "ST MAURICE CRILLAT", + "coordonnees_gps": [ + 46.5680782643, + 5.83386083988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83386083988, + 46.5680782643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae7829006b54e0608006a5b40100451dfd4487f2", + "fields": { + "code_commune_insee": "39495", + "nom_de_la_commune": "ST THIEBAUD", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9717927523, + 5.8808709853 + ], + "libelle_d_acheminement": "ST THIEBAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8808709853, + 46.9717927523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1079201ef2b8a199a2fe47aac464373e37cfcd5", + "fields": { + "code_commune_insee": "39502", + "nom_de_la_commune": "SANTANS", + "code_postal": "39380", + "coordonnees_gps": [ + 47.0417658474, + 5.66601850009 + ], + "libelle_d_acheminement": "SANTANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66601850009, + 47.0417658474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "289b1b3b15448e084c6cb4c9073d294e5b3cb990", + "fields": { + "code_commune_insee": "39523", + "nom_de_la_commune": "SYAM", + "code_postal": "39300", + "coordonnees_gps": [ + 46.6963307591, + 5.95140796308 + ], + "libelle_d_acheminement": "SYAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95140796308, + 46.6963307591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c9f30930861ada2d5b094edeed1b35648bc32dd", + "fields": { + "code_commune_insee": "39525", + "nom_de_la_commune": "TASSENIERES", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9232742265, + 5.51257337685 + ], + "libelle_d_acheminement": "TASSENIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51257337685, + 46.9232742265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "622bd2ba45f71b326f7e50bf0898cb1f8bf34340", + "fields": { + "code_commune_insee": "39526", + "nom_de_la_commune": "TAVAUX", + "code_postal": "39500", + "coordonnees_gps": [ + 47.0377459686, + 5.40319060267 + ], + "libelle_d_acheminement": "TAVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40319060267, + 47.0377459686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "181756345ecb3f345bd602d480af6fdade53f717", + "fields": { + "code_commune_insee": "39528", + "nom_de_la_commune": "THERVAY", + "code_postal": "39290", + "coordonnees_gps": [ + 47.2404016854, + 5.609254394 + ], + "libelle_d_acheminement": "THERVAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.609254394, + 47.2404016854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "410df0c06baf150aff0f0293a3ffbf71214e921d", + "fields": { + "ligne_5": "COISIA", + "code_commune_insee": "39530", + "libelle_d_acheminement": "THOIRETTE COISIA", + "code_postal": "39240", + "nom_de_la_commune": "THOIRETTE COISIA", + "coordonnees_gps": [ + 46.2790299356, + 5.52403173219 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52403173219, + 46.2790299356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d88ebb4d292c14a1649ebe6697855bf12a364cba", + "fields": { + "code_commune_insee": "39531", + "nom_de_la_commune": "THOIRIA", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5197602704, + 5.74628964258 + ], + "libelle_d_acheminement": "THOIRIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74628964258, + 46.5197602704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bce840b20eb3ed0b1042d54255c66b190da81b5c", + "fields": { + "code_commune_insee": "39543", + "nom_de_la_commune": "VANNOZ", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7732781009, + 5.91191822689 + ], + "libelle_d_acheminement": "VANNOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91191822689, + 46.7732781009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c62b1f5a7be44672590a6726c8d47c4d7af8109", + "fields": { + "code_commune_insee": "39548", + "nom_de_la_commune": "VAUX SUR POLIGNY", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8230228356, + 5.72769447335 + ], + "libelle_d_acheminement": "VAUX SUR POLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72769447335, + 46.8230228356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4628b40fb8467d7712e405988ca9ebecb334dc55", + "fields": { + "code_commune_insee": "39550", + "nom_de_la_commune": "VERGES", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6591469123, + 5.68477020801 + ], + "libelle_d_acheminement": "VERGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68477020801, + 46.6591469123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "176928b6a3057a583f64cfdb50499c47a4cf2380", + "fields": { + "code_commune_insee": "39557", + "nom_de_la_commune": "VESCLES", + "code_postal": "39240", + "coordonnees_gps": [ + 46.3570164509, + 5.61102870166 + ], + "libelle_d_acheminement": "VESCLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61102870166, + 46.3570164509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "414042e83ef856768de84682d452421e589d3b34", + "fields": { + "code_commune_insee": "39567", + "nom_de_la_commune": "VILLENEUVE SOUS PYMONT", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6949967041, + 5.55277319697 + ], + "libelle_d_acheminement": "VILLENEUVE SOUS PYMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55277319697, + 46.6949967041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "744b7ebce4d26669fed846cda80c16c8abaae0c2", + "fields": { + "code_commune_insee": "39572", + "nom_de_la_commune": "VILLETTE LES ARBOIS", + "code_postal": "39600", + "coordonnees_gps": [ + 46.9336037574, + 5.74365046163 + ], + "libelle_d_acheminement": "VILLETTE LES ARBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74365046163, + 46.9336037574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "531db1dd47c1154ea0719d821431ab952f9a0eae", + "fields": { + "ligne_5": "VERCIA", + "code_commune_insee": "39576", + "libelle_d_acheminement": "VAL SONNETTE", + "code_postal": "39190", + "nom_de_la_commune": "VAL SONNETTE", + "coordonnees_gps": [ + 46.606775751, + 5.46350720419 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46350720419, + 46.606775751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3248c5e921911baa294a5c5a228f03b2f2698c16", + "fields": { + "code_commune_insee": "39584", + "nom_de_la_commune": "VRIANGE", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1836632309, + 5.58403876359 + ], + "libelle_d_acheminement": "VRIANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58403876359, + 47.1836632309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "859727299162868ab5a89eaf1312e557ca82f8f6", + "fields": { + "code_commune_insee": "40002", + "nom_de_la_commune": "AMOU", + "code_postal": "40330", + "coordonnees_gps": [ + 43.5938659835, + -0.743678079626 + ], + "libelle_d_acheminement": "AMOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.743678079626, + 43.5938659835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4ef72a35bde1c882b5e00108701500864c355d7", + "fields": { + "code_commune_insee": "40017", + "nom_de_la_commune": "AUDIGNON", + "code_postal": "40500", + "coordonnees_gps": [ + 43.7229002763, + -0.591261477363 + ], + "libelle_d_acheminement": "AUDIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.591261477363, + 43.7229002763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6857a27297ac6b7735d50fa4a0f9ccb3e55f3cf3", + "fields": { + "code_commune_insee": "40023", + "nom_de_la_commune": "BAIGTS", + "code_postal": "40380", + "coordonnees_gps": [ + 43.6872175637, + -0.792579105468 + ], + "libelle_d_acheminement": "BAIGTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.792579105468, + 43.6872175637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce6b5851409ddf37d872e86eb4833f1ce74dca63", + "fields": { + "code_commune_insee": "40026", + "nom_de_la_commune": "BAS MAUCO", + "code_postal": "40500", + "coordonnees_gps": [ + 43.794054808, + -0.555863442222 + ], + "libelle_d_acheminement": "BAS MAUCO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.555863442222, + 43.794054808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "574356d315a5afa3047ea2567452001efbc2bf5a", + "fields": { + "code_commune_insee": "40027", + "nom_de_la_commune": "BASSERCLES", + "code_postal": "40700", + "coordonnees_gps": [ + 43.559004732, + -0.610454626162 + ], + "libelle_d_acheminement": "BASSERCLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.610454626162, + 43.559004732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f245ba0fdf2e9adce8b994658d203a9cd8f2eea7", + "fields": { + "code_commune_insee": "40029", + "nom_de_la_commune": "BATS", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6533852455, + -0.463880939052 + ], + "libelle_d_acheminement": "BATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.463880939052, + 43.6533852455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6647ab30db4e2c8d3d7b0876c30b11b6bcb15cca", + "fields": { + "code_commune_insee": "40037", + "nom_de_la_commune": "BENQUET", + "code_postal": "40280", + "coordonnees_gps": [ + 43.8221288864, + -0.507091491966 + ], + "libelle_d_acheminement": "BENQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.507091491966, + 43.8221288864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdb723ae6cd016c59eca6e7260a1477c442c819a", + "fields": { + "code_commune_insee": "40040", + "nom_de_la_commune": "BEYLONGUE", + "code_postal": "40370", + "coordonnees_gps": [ + 43.9207244949, + -0.8280091119 + ], + "libelle_d_acheminement": "BEYLONGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8280091119, + 43.9207244949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9087aeeb54b1d643acc6a1b7e0d57c3ec7f04641", + "fields": { + "code_commune_insee": "40046", + "nom_de_la_commune": "BISCARROSSE", + "code_postal": "40600", + "coordonnees_gps": [ + 44.409080109, + -1.1773616947 + ], + "libelle_d_acheminement": "BISCARROSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1773616947, + 44.409080109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d789079e68a0dea1419a1cdf8d4f8118c16aa528", + "fields": { + "code_commune_insee": "40047", + "nom_de_la_commune": "BONNEGARDE", + "code_postal": "40330", + "coordonnees_gps": [ + 43.5640369667, + -0.712916423938 + ], + "libelle_d_acheminement": "BONNEGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.712916423938, + 43.5640369667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2422365d76b0cb7094376fee975916b8edc41c42", + "fields": { + "code_commune_insee": "40053", + "nom_de_la_commune": "BOURRIOT BERGONCE", + "code_postal": "40120", + "coordonnees_gps": [ + 44.1506739659, + -0.213232956554 + ], + "libelle_d_acheminement": "BOURRIOT BERGONCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.213232956554, + 44.1506739659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "542a8f39f54c8253b28fe53fe75cb75de717ac50", + "fields": { + "code_commune_insee": "40055", + "nom_de_la_commune": "BRETAGNE DE MARSAN", + "code_postal": "40280", + "coordonnees_gps": [ + 43.8365888593, + -0.46531772433 + ], + "libelle_d_acheminement": "BRETAGNE DE MARSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46531772433, + 43.8365888593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27645a8eea8655e36295e46b300b654a29796441", + "fields": { + "code_commune_insee": "40061", + "nom_de_la_commune": "CAMPAGNE", + "code_postal": "40090", + "coordonnees_gps": [ + 43.8621880955, + -0.639177519978 + ], + "libelle_d_acheminement": "CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.639177519978, + 43.8621880955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "622bd2db1041cc2c6490fdf408a7d65e7eab3c95", + "fields": { + "code_commune_insee": "40069", + "nom_de_la_commune": "CASTAIGNOS SOUSLENS", + "code_postal": "40700", + "coordonnees_gps": [ + 43.5873760564, + -0.648925857691 + ], + "libelle_d_acheminement": "CASTAIGNOS SOUSLENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.648925857691, + 43.5873760564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da9778ae1002a343cb5b8c17189d0b9323bc210d", + "fields": { + "code_commune_insee": "40084", + "nom_de_la_commune": "CLERMONT", + "code_postal": "40180", + "coordonnees_gps": [ + 43.6485435994, + -0.909862046514 + ], + "libelle_d_acheminement": "CLERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.909862046514, + 43.6485435994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d330961ee0a6127242a6551fb2b5f8d994a2fc2f", + "fields": { + "code_commune_insee": "40093", + "nom_de_la_commune": "ESCALANS", + "code_postal": "40310", + "coordonnees_gps": [ + 44.0058679413, + 0.0367153523007 + ], + "libelle_d_acheminement": "ESCALANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0367153523007, + 44.0058679413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d68c454e7628ea6c213ec948b3aea292bfeded67", + "fields": { + "code_commune_insee": "40097", + "nom_de_la_commune": "EUGENIE LES BAINS", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6942772667, + -0.382600517074 + ], + "libelle_d_acheminement": "EUGENIE LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.382600517074, + 43.6942772667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43155eec6c898c38c1f84addcebb6877917116a8", + "fields": { + "code_commune_insee": "40102", + "nom_de_la_commune": "GABARRET", + "code_postal": "40310", + "coordonnees_gps": [ + 43.986768841, + -0.00379328281561 + ], + "libelle_d_acheminement": "GABARRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00379328281561, + 43.986768841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8a035929f6e29a51ca2e472ae536c6e0eb7c30b", + "fields": { + "code_commune_insee": "40103", + "nom_de_la_commune": "GAILLERES", + "code_postal": "40090", + "coordonnees_gps": [ + 43.9379918755, + -0.3740739094 + ], + "libelle_d_acheminement": "GAILLERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.3740739094, + 43.9379918755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7183b120e54e950dd714fc73024e38e6cd127da9", + "fields": { + "code_commune_insee": "40109", + "nom_de_la_commune": "GAUJACQ", + "code_postal": "40330", + "coordonnees_gps": [ + 43.6385051915, + -0.741684144139 + ], + "libelle_d_acheminement": "GAUJACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.741684144139, + 43.6385051915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccc47db712e50d82a52dbbd8a1022d4532eea1ff", + "fields": { + "code_commune_insee": "40111", + "nom_de_la_commune": "GELOUX", + "code_postal": "40090", + "coordonnees_gps": [ + 43.9798766807, + -0.640212463679 + ], + "libelle_d_acheminement": "GELOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.640212463679, + 43.9798766807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b79fd98bf0a819ff65fb190764ba7bb59d27abab", + "fields": { + "code_commune_insee": "40117", + "nom_de_la_commune": "GRENADE SUR L ADOUR", + "code_postal": "40270", + "coordonnees_gps": [ + 43.792570586, + -0.422528940509 + ], + "libelle_d_acheminement": "GRENADE SUR L ADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.422528940509, + 43.792570586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed4597d14e344f13374121c577065f2b37c080b4", + "fields": { + "code_commune_insee": "40120", + "nom_de_la_commune": "HASTINGUES", + "code_postal": "40300", + "coordonnees_gps": [ + 43.5160536898, + -1.13714325683 + ], + "libelle_d_acheminement": "HASTINGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13714325683, + 43.5160536898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd1b10553f39daf03fd78d76dc0f0325565d7632", + "fields": { + "code_commune_insee": "40123", + "nom_de_la_commune": "HERM", + "code_postal": "40990", + "coordonnees_gps": [ + 43.8073328601, + -1.12483470338 + ], + "libelle_d_acheminement": "HERM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12483470338, + 43.8073328601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fb9bd04993fd243ca51851d21d424312ed40822", + "fields": { + "code_commune_insee": "40124", + "nom_de_la_commune": "HERRE", + "code_postal": "40310", + "coordonnees_gps": [ + 44.0211717099, + -0.0373071311054 + ], + "libelle_d_acheminement": "HERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0373071311054, + 44.0211717099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "453845a8b09e0fa904f654f872f5444f0856848e", + "fields": { + "code_commune_insee": "40125", + "nom_de_la_commune": "HEUGAS", + "code_postal": "40180", + "coordonnees_gps": [ + 43.6443078631, + -1.08178746791 + ], + "libelle_d_acheminement": "HEUGAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08178746791, + 43.6443078631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af3c1ab3f243694fbb7073c1e6e4a516a0075597", + "fields": { + "code_commune_insee": "40133", + "nom_de_la_commune": "LABENNE", + "code_postal": "40530", + "coordonnees_gps": [ + 43.5956638895, + -1.42969814773 + ], + "libelle_d_acheminement": "LABENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42969814773, + 43.5956638895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32188509c62b9b5eb46b8af69dd1a7ea221fef48", + "fields": { + "code_commune_insee": "40135", + "nom_de_la_commune": "LABRIT", + "code_postal": "40420", + "coordonnees_gps": [ + 44.1262391646, + -0.564277292069 + ], + "libelle_d_acheminement": "LABRIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.564277292069, + 44.1262391646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09c3444155f3776db6d1ca43cbf1ea708d604275", + "fields": { + "code_commune_insee": "40137", + "nom_de_la_commune": "LACQUY", + "code_postal": "40120", + "coordonnees_gps": [ + 43.9565859062, + -0.285182615294 + ], + "libelle_d_acheminement": "LACQUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.285182615294, + 43.9565859062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9ef4cec5ad521b7d46423fc9908eb5a34ec6296", + "fields": { + "code_commune_insee": "40138", + "nom_de_la_commune": "LACRABE", + "code_postal": "40700", + "coordonnees_gps": [ + 43.6100626829, + -0.592429512966 + ], + "libelle_d_acheminement": "LACRABE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.592429512966, + 43.6100626829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "437fd20ac702e2fec318490f9aedac97d53ea3da", + "fields": { + "code_commune_insee": "40139", + "nom_de_la_commune": "LAGLORIEUSE", + "code_postal": "40090", + "coordonnees_gps": [ + 43.8644095018, + -0.395751072937 + ], + "libelle_d_acheminement": "LAGLORIEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.395751072937, + 43.8644095018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8466607523470fab1de90fd8549bf9e98fe6bd26", + "fields": { + "code_commune_insee": "40140", + "nom_de_la_commune": "LAGRANGE", + "code_postal": "40240", + "coordonnees_gps": [ + 43.9663777626, + -0.0809775646535 + ], + "libelle_d_acheminement": "LAGRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0809775646535, + 43.9663777626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2ae47b67fe4bd21cd0b4f28e3f6ea3e80a53581", + "fields": { + "code_commune_insee": "40142", + "nom_de_la_commune": "LALUQUE", + "code_postal": "40465", + "coordonnees_gps": [ + 43.8510297418, + -0.986364609887 + ], + "libelle_d_acheminement": "LALUQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.986364609887, + 43.8510297418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "823dab3331b3069d62bb64183c8b1c7ecd39b481", + "fields": { + "code_commune_insee": "40152", + "nom_de_la_commune": "LESPERON", + "code_postal": "40260", + "coordonnees_gps": [ + 43.9630085483, + -1.07688098141 + ], + "libelle_d_acheminement": "LESPERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07688098141, + 43.9630085483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2d66478faff0ce7f454bda0bed08492705eaf7c", + "fields": { + "code_commune_insee": "40154", + "nom_de_la_commune": "LEVIGNACQ", + "code_postal": "40170", + "coordonnees_gps": [ + 44.009843871, + -1.15331315193 + ], + "libelle_d_acheminement": "LEVIGNACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15331315193, + 44.009843871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6643719a56cd158ce2d139b83fd3a748e11b2786", + "fields": { + "code_commune_insee": "40161", + "nom_de_la_commune": "LUBBON", + "code_postal": "40240", + "coordonnees_gps": [ + 44.1156975996, + -0.0167335813164 + ], + "libelle_d_acheminement": "LUBBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0167335813164, + 44.1156975996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b753c4280fbee80b272fe4d90321cc02eafaff8", + "fields": { + "code_commune_insee": "40164", + "nom_de_la_commune": "RETJONS", + "code_postal": "40120", + "coordonnees_gps": [ + 44.1358553322, + -0.302200932273 + ], + "libelle_d_acheminement": "RETJONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.302200932273, + 44.1358553322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "282563917fc7f6d700ef97b6c6535eb02866c3e8", + "fields": { + "code_commune_insee": "40171", + "nom_de_la_commune": "MANO", + "code_postal": "40410", + "coordonnees_gps": [ + 44.425096568, + -0.665908613551 + ], + "libelle_d_acheminement": "MANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.665908613551, + 44.425096568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4012cae4b61d02aa64d32e454ca004e0c8adda89", + "fields": { + "code_commune_insee": "40175", + "nom_de_la_commune": "MAURRIN", + "code_postal": "40270", + "coordonnees_gps": [ + 43.825810397, + -0.37207191745 + ], + "libelle_d_acheminement": "MAURRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37207191745, + 43.825810397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0be60b3243a619b043a5b7320244696b74ea83d", + "fields": { + "code_commune_insee": "40176", + "nom_de_la_commune": "MAUVEZIN D ARMAGNAC", + "code_postal": "40240", + "coordonnees_gps": [ + 43.958814539, + -0.131561949481 + ], + "libelle_d_acheminement": "MAUVEZIN D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.131561949481, + 43.958814539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e34386b2cdf16eaf87e8631570319149be232b4e", + "fields": { + "code_commune_insee": "40179", + "nom_de_la_commune": "MEES", + "code_postal": "40990", + "coordonnees_gps": [ + 43.7103483825, + -1.12243161714 + ], + "libelle_d_acheminement": "MEES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12243161714, + 43.7103483825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3761bdf9de01888d4ab37804f6e639abca6e4814", + "fields": { + "code_commune_insee": "40180", + "nom_de_la_commune": "MEILHAN", + "code_postal": "40400", + "coordonnees_gps": [ + 43.859612287, + -0.695576864864 + ], + "libelle_d_acheminement": "MEILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.695576864864, + 43.859612287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93b24c305cf57f51def1574eef65ade7c72fefc9", + "fields": { + "code_commune_insee": "40182", + "nom_de_la_commune": "MEZOS", + "code_postal": "40170", + "coordonnees_gps": [ + 44.0869839413, + -1.13332774767 + ], + "libelle_d_acheminement": "MEZOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13332774767, + 44.0869839413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27cbdea734d6e1212d67da7fbbf8703df3715b96", + "fields": { + "code_commune_insee": "40183", + "nom_de_la_commune": "MIMBASTE", + "code_postal": "40350", + "coordonnees_gps": [ + 43.646688515, + -0.958884857354 + ], + "libelle_d_acheminement": "MIMBASTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.958884857354, + 43.646688515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d75a34021bd96e651d3f1fe0839f22c6b852f0f", + "fields": { + "code_commune_insee": "40187", + "nom_de_la_commune": "MOLIETS ET MAA", + "code_postal": "40660", + "coordonnees_gps": [ + 43.8581452244, + -1.36096901357 + ], + "libelle_d_acheminement": "MOLIETS ET MAA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36096901357, + 43.8581452244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1104086259df415a3c04281cd16c5c69fdf1f41", + "fields": { + "code_commune_insee": "40196", + "nom_de_la_commune": "MONTSOUE", + "code_postal": "40500", + "coordonnees_gps": [ + 43.7303405646, + -0.506109191151 + ], + "libelle_d_acheminement": "MONTSOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.506109191151, + 43.7303405646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c089b4969b15a2dc1b0a942e0e25d291a8346fd4", + "fields": { + "ligne_5": "ARJUZANX", + "code_commune_insee": "40197", + "libelle_d_acheminement": "MORCENX LA NOUVELLE", + "code_postal": "40110", + "nom_de_la_commune": "MORCENX LA NOUVELLE", + "coordonnees_gps": [ + 44.0410936254, + -0.888623636398 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.888623636398, + 44.0410936254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f76f3a99c1dd3a07f922eaee832e0d9290abe661", + "fields": { + "ligne_5": "MORCENX", + "code_commune_insee": "40197", + "libelle_d_acheminement": "MORCENX LA NOUVELLE", + "code_postal": "40110", + "nom_de_la_commune": "MORCENX LA NOUVELLE", + "coordonnees_gps": [ + 44.0410936254, + -0.888623636398 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.888623636398, + 44.0410936254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a17027459acb4b810b0da64f35caf6c29ae41951", + "fields": { + "code_commune_insee": "40201", + "nom_de_la_commune": "MUGRON", + "code_postal": "40250", + "coordonnees_gps": [ + 43.7412885635, + -0.752690282166 + ], + "libelle_d_acheminement": "MUGRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.752690282166, + 43.7412885635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc5132cf72006ec1fe65e0996da27509d29b9a33", + "fields": { + "code_commune_insee": "40202", + "nom_de_la_commune": "NARROSSE", + "code_postal": "40180", + "coordonnees_gps": [ + 43.6936975467, + -1.00852335605 + ], + "libelle_d_acheminement": "NARROSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00852335605, + 43.6936975467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57f04704ab05331a0d56cf0bec5d0ecd7a6ccfc8", + "fields": { + "code_commune_insee": "40208", + "nom_de_la_commune": "ONARD", + "code_postal": "40380", + "coordonnees_gps": [ + 43.7780268218, + -0.832303249153 + ], + "libelle_d_acheminement": "ONARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.832303249153, + 43.7780268218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12ec0fc9d93ea686a9cb5d350448d96e2e8065b0", + "fields": { + "code_commune_insee": "40209", + "nom_de_la_commune": "ONDRES", + "code_postal": "40440", + "coordonnees_gps": [ + 43.5663586756, + -1.45381098217 + ], + "libelle_d_acheminement": "ONDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45381098217, + 43.5663586756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31f3d15f1225345a0a498cab8dd757aee102406e", + "fields": { + "ligne_5": "LAHARIE", + "code_commune_insee": "40210", + "libelle_d_acheminement": "ONESSE LAHARIE", + "code_postal": "40110", + "nom_de_la_commune": "ONESSE LAHARIE", + "coordonnees_gps": [ + 44.0721406576, + -1.02598711756 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02598711756, + 44.0721406576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4119c21c3c91d385b5e80cfa25d95a565e1f23bf", + "fields": { + "code_commune_insee": "40211", + "nom_de_la_commune": "ORIST", + "code_postal": "40300", + "coordonnees_gps": [ + 43.6383171694, + -1.17398532413 + ], + "libelle_d_acheminement": "ORIST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17398532413, + 43.6383171694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcf523f2d06e612ef70207f3fdfc75e093ffd90e", + "fields": { + "code_commune_insee": "40213", + "nom_de_la_commune": "ORX", + "code_postal": "40230", + "coordonnees_gps": [ + 43.6053566765, + -1.37144651708 + ], + "libelle_d_acheminement": "ORX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37144651708, + 43.6053566765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56ec661bb232155f9879f58a00ee6a155b0be865", + "fields": { + "code_commune_insee": "40218", + "nom_de_la_commune": "PARLEBOSCQ", + "code_postal": "40310", + "coordonnees_gps": [ + 43.9367664838, + 0.0351952892185 + ], + "libelle_d_acheminement": "PARLEBOSCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0351952892185, + 43.9367664838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8708a0aafedb8e7af816761e4340a8f41e71b17", + "fields": { + "code_commune_insee": "40225", + "nom_de_la_commune": "PHILONDENX", + "code_postal": "40320", + "coordonnees_gps": [ + 43.5680469696, + -0.429300751849 + ], + "libelle_d_acheminement": "PHILONDENX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.429300751849, + 43.5680469696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4b1e7597d314f6a93a8aa779dfd0618f44d6db4", + "fields": { + "ligne_5": "RICHET", + "code_commune_insee": "40227", + "libelle_d_acheminement": "PISSOS", + "code_postal": "40410", + "nom_de_la_commune": "PISSOS", + "coordonnees_gps": [ + 44.2958433032, + -0.780642494163 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.780642494163, + 44.2958433032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbe4eee28e7153b0643042c55e5dc2f0a9991e6b", + "fields": { + "code_commune_insee": "40228", + "nom_de_la_commune": "POMAREZ", + "code_postal": "40360", + "coordonnees_gps": [ + 43.6222065603, + -0.839267500115 + ], + "libelle_d_acheminement": "POMAREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.839267500115, + 43.6222065603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "081502f890a3c7db1b0261e7fb8c0138b1f79bdf", + "fields": { + "code_commune_insee": "40230", + "nom_de_la_commune": "PONTONX SUR L ADOUR", + "code_postal": "40465", + "coordonnees_gps": [ + 43.7980252651, + -0.940526888731 + ], + "libelle_d_acheminement": "PONTONX SUR L ADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.940526888731, + 43.7980252651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37de174a2eb12072f1fe02713ae7c722f3c39439", + "fields": { + "code_commune_insee": "40232", + "nom_de_la_commune": "POUDENX", + "code_postal": "40700", + "coordonnees_gps": [ + 43.5834078234, + -0.591490517984 + ], + "libelle_d_acheminement": "POUDENX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.591490517984, + 43.5834078234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb3341117baad4c8a8c7356d25c488a3ab832604", + "fields": { + "code_commune_insee": "40233", + "nom_de_la_commune": "POUILLON", + "code_postal": "40350", + "coordonnees_gps": [ + 43.606586426, + -1.00135872585 + ], + "libelle_d_acheminement": "POUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00135872585, + 43.606586426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d58a5331ff7be924085ab77ed6f0ef40c41056ac", + "fields": { + "code_commune_insee": "40244", + "nom_de_la_commune": "RIVIERE SAAS ET GOURBY", + "code_postal": "40180", + "coordonnees_gps": [ + 43.6990141458, + -1.17252770868 + ], + "libelle_d_acheminement": "RIVIERE SAAS ET GOURBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17252770868, + 43.6990141458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5436080c704575997d571a493301ad98dafb0741", + "fields": { + "code_commune_insee": "40246", + "nom_de_la_commune": "SABRES", + "code_postal": "40630", + "coordonnees_gps": [ + 44.1461218641, + -0.734828540641 + ], + "libelle_d_acheminement": "SABRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.734828540641, + 44.1461218641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eefc28ce07d5c632e2dfa1e251d83c16434fb486", + "fields": { + "code_commune_insee": "40249", + "nom_de_la_commune": "ST AUBIN", + "code_postal": "40250", + "coordonnees_gps": [ + 43.7176125498, + -0.720049420031 + ], + "libelle_d_acheminement": "ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.720049420031, + 43.7176125498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f0d07d5a9bc4bc90fff82dc46f065f2689a0f80", + "fields": { + "code_commune_insee": "40263", + "nom_de_la_commune": "ST JEAN DE LIER", + "code_postal": "40380", + "coordonnees_gps": [ + 43.7848343729, + -0.880086131984 + ], + "libelle_d_acheminement": "ST JEAN DE LIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.880086131984, + 43.7848343729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "464f581220a219ed8e61cd5d15bcda54d36f6645", + "fields": { + "code_commune_insee": "40267", + "nom_de_la_commune": "ST JUSTIN", + "code_postal": "40240", + "coordonnees_gps": [ + 43.998003454, + -0.23036582936 + ], + "libelle_d_acheminement": "ST JUSTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23036582936, + 43.998003454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95b60367d6174ffd246e05e1fc7ce02fa6876365", + "fields": { + "code_commune_insee": "40274", + "nom_de_la_commune": "ST MARTIN D ONEY", + "code_postal": "40090", + "coordonnees_gps": [ + 43.9290627258, + -0.652177788305 + ], + "libelle_d_acheminement": "ST MARTIN D ONEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.652177788305, + 43.9290627258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d5f2a8d89848a825f5ead443c4385a4c9b353ca", + "fields": { + "code_commune_insee": "40277", + "nom_de_la_commune": "ST PANDELON", + "code_postal": "40180", + "coordonnees_gps": [ + 43.66874805, + -1.03963619936 + ], + "libelle_d_acheminement": "ST PANDELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03963619936, + 43.66874805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c862a32f314d20484cbe7ac43d7abc33a323248", + "fields": { + "code_commune_insee": "40279", + "nom_de_la_commune": "ST PAUL LES DAX", + "code_postal": "40990", + "coordonnees_gps": [ + 43.7464083139, + -1.08127980711 + ], + "libelle_d_acheminement": "ST PAUL LES DAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08127980711, + 43.7464083139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2301b4d47f1482ede152a5cb06dde87483fca24e", + "fields": { + "code_commune_insee": "40281", + "nom_de_la_commune": "ST PIERRE DU MONT", + "code_postal": "40280", + "coordonnees_gps": [ + 43.8710155534, + -0.526374406295 + ], + "libelle_d_acheminement": "ST PIERRE DU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.526374406295, + 43.8710155534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "780c893303be0face0a460c033af6b1b29fee850", + "fields": { + "code_commune_insee": "40287", + "nom_de_la_commune": "SANGUINET", + "code_postal": "40460", + "coordonnees_gps": [ + 44.4778702748, + -1.06434519608 + ], + "libelle_d_acheminement": "SANGUINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06434519608, + 44.4778702748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3384765782d4af3b910c5ea020e09e223a27ea59", + "fields": { + "code_commune_insee": "40289", + "nom_de_la_commune": "SARRAZIET", + "code_postal": "40500", + "coordonnees_gps": [ + 43.7057325416, + -0.501112212066 + ], + "libelle_d_acheminement": "SARRAZIET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.501112212066, + 43.7057325416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "069d39385d41d88585ac5ad291d7408c9c5233db", + "fields": { + "code_commune_insee": "40291", + "nom_de_la_commune": "SAUBION", + "code_postal": "40230", + "coordonnees_gps": [ + 43.6734751398, + -1.33295419507 + ], + "libelle_d_acheminement": "SAUBION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33295419507, + 43.6734751398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80224c0fc957adf5ab937ce872084d09cdb3cc26", + "fields": { + "code_commune_insee": "40294", + "nom_de_la_commune": "SAUGNAC ET CAMBRAN", + "code_postal": "40180", + "coordonnees_gps": [ + 43.6729991208, + -0.98928168376 + ], + "libelle_d_acheminement": "SAUGNAC ET CAMBRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98928168376, + 43.6729991208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad4cf955b804984cd66f55dcec19c549b800f150", + "fields": { + "code_commune_insee": "40297", + "nom_de_la_commune": "LE SEN", + "code_postal": "40420", + "coordonnees_gps": [ + 44.1436565656, + -0.50070045838 + ], + "libelle_d_acheminement": "LE SEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50070045838, + 44.1436565656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "312c2520065a1dc6b72ebc0e32e2f81915997c8b", + "fields": { + "code_commune_insee": "40304", + "nom_de_la_commune": "SOORTS HOSSEGOR", + "code_postal": "40150", + "coordonnees_gps": [ + 43.6675688674, + -1.41245896656 + ], + "libelle_d_acheminement": "SOORTS HOSSEGOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41245896656, + 43.6675688674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "796a424762837e34a574ecf6bb70c432c13b32f7", + "fields": { + "code_commune_insee": "40307", + "nom_de_la_commune": "SORE", + "code_postal": "40430", + "coordonnees_gps": [ + 44.3064675641, + -0.611382672476 + ], + "libelle_d_acheminement": "SORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.611382672476, + 44.3064675641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d15e5bebd2b16cb5a4363278a94e99d87a9b6abc", + "fields": { + "code_commune_insee": "40309", + "nom_de_la_commune": "SOUPROSSE", + "code_postal": "40250", + "coordonnees_gps": [ + 43.792726714, + -0.716735897141 + ], + "libelle_d_acheminement": "SOUPROSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.716735897141, + 43.792726714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60cd33d6320ddf956aaf3eafee6f736000c0c8a6", + "fields": { + "code_commune_insee": "40310", + "nom_de_la_commune": "SOUSTONS", + "code_postal": "40140", + "coordonnees_gps": [ + 43.7498040758, + -1.3280117155 + ], + "libelle_d_acheminement": "SOUSTONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3280117155, + 43.7498040758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0edeea657e53968106796d8ce2eeef298f2c2f7", + "fields": { + "code_commune_insee": "40311", + "nom_de_la_commune": "TALLER", + "code_postal": "40260", + "coordonnees_gps": [ + 43.8849394587, + -1.06224013278 + ], + "libelle_d_acheminement": "TALLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06224013278, + 43.8849394587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc19e1012210c6eedcc3fcd596488e6da2d354af", + "fields": { + "code_commune_insee": "40312", + "nom_de_la_commune": "TARNOS", + "code_postal": "40220", + "coordonnees_gps": [ + 43.5367457997, + -1.4653189934 + ], + "libelle_d_acheminement": "TARNOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4653189934, + 43.5367457997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "723883cb47ee9c8846b9445194bae9f832954dc9", + "fields": { + "code_commune_insee": "40313", + "nom_de_la_commune": "TARTAS", + "code_postal": "40400", + "coordonnees_gps": [ + 43.8182878693, + -0.782895218669 + ], + "libelle_d_acheminement": "TARTAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.782895218669, + 43.8182878693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fe94bd8403bb647c6a43ff6e4ad4976040114c7", + "fields": { + "code_commune_insee": "40316", + "nom_de_la_commune": "TILH", + "code_postal": "40360", + "coordonnees_gps": [ + 43.5795107456, + -0.837064182098 + ], + "libelle_d_acheminement": "TILH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.837064182098, + 43.5795107456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d58882d85a7777116ede5086ee82f42577039574", + "fields": { + "code_commune_insee": "40319", + "nom_de_la_commune": "TRENSACQ", + "code_postal": "40630", + "coordonnees_gps": [ + 44.2234241155, + -0.715163717444 + ], + "libelle_d_acheminement": "TRENSACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.715163717444, + 44.2234241155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "706309ca43a38426bcd2680221f84ae9f2ca5cec", + "fields": { + "code_commune_insee": "40320", + "nom_de_la_commune": "UCHACQ ET PARENTIS", + "code_postal": "40090", + "coordonnees_gps": [ + 43.945851007, + -0.548232922366 + ], + "libelle_d_acheminement": "UCHACQ ET PARENTIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.548232922366, + 43.945851007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0535f57fe131dab7bf6ea7c3205ed40b8f2f845", + "fields": { + "code_commune_insee": "40328", + "nom_de_la_commune": "VIEUX BOUCAU LES BAINS", + "code_postal": "40480", + "coordonnees_gps": [ + 43.7874374515, + -1.39719537879 + ], + "libelle_d_acheminement": "VIEUX BOUCAU LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39719537879, + 43.7874374515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f966b6643684fe93ba069d15e30eae86966d34d5", + "fields": { + "code_commune_insee": "40332", + "nom_de_la_commune": "YCHOUX", + "code_postal": "40160", + "coordonnees_gps": [ + 44.3573888433, + -0.958507887991 + ], + "libelle_d_acheminement": "YCHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.958507887991, + 44.3573888433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b09a7302ce214b6893ec12b33f8c5178cd8af756", + "fields": { + "code_commune_insee": "41008", + "nom_de_la_commune": "AVARAY", + "code_postal": "41500", + "coordonnees_gps": [ + 47.7250804057, + 1.55500771639 + ], + "libelle_d_acheminement": "AVARAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55500771639, + 47.7250804057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62da874b89aaef548fecf84d1310219e69ed8d4d", + "fields": { + "code_commune_insee": "41027", + "nom_de_la_commune": "BRIOU", + "code_postal": "41370", + "coordonnees_gps": [ + 47.8157886971, + 1.47190975066 + ], + "libelle_d_acheminement": "BRIOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47190975066, + 47.8157886971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "277ace9ab98216329c0452b740948a559b955b1a", + "fields": { + "code_commune_insee": "41028", + "nom_de_la_commune": "BUSLOUP", + "code_postal": "41160", + "coordonnees_gps": [ + 47.9044276, + 1.13612513733 + ], + "libelle_d_acheminement": "BUSLOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13612513733, + 47.9044276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd10d7a59f5a5aae959adfc919422b91bf8131c8", + "fields": { + "code_commune_insee": "41035", + "nom_de_la_commune": "CHAMPIGNY EN BEAUCE", + "code_postal": "41330", + "coordonnees_gps": [ + 47.7177889703, + 1.25697557879 + ], + "libelle_d_acheminement": "CHAMPIGNY EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25697557879, + 47.7177889703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6ec2242daca7788c7f9acb7e907ba3612005488", + "fields": { + "ligne_5": "FEINGS", + "code_commune_insee": "41059", + "libelle_d_acheminement": "LE CONTROIS EN SOLOGNE", + "code_postal": "41120", + "nom_de_la_commune": "LE CONTROIS EN SOLOGNE", + "coordonnees_gps": [ + 47.4210455026, + 1.43621364655 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43621364655, + 47.4210455026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65f1f1062461db1ad96298abcdac71c39bbe39de", + "fields": { + "code_commune_insee": "41062", + "nom_de_la_commune": "COUDDES", + "code_postal": "41700", + "coordonnees_gps": [ + 47.3643474319, + 1.40421925055 + ], + "libelle_d_acheminement": "COUDDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40421925055, + 47.3643474319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8619be5a4ade02e035d603527c6ee6ed7629925", + "fields": { + "code_commune_insee": "41065", + "nom_de_la_commune": "COULOMMIERS LA TOUR", + "code_postal": "41100", + "coordonnees_gps": [ + 47.777833171, + 1.13328035122 + ], + "libelle_d_acheminement": "COULOMMIERS LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13328035122, + 47.777833171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c5497652fb519862c41c790269d708ff511dd5b", + "fields": { + "code_commune_insee": "41074", + "nom_de_la_commune": "DHUIZON", + "code_postal": "41220", + "coordonnees_gps": [ + 47.5875471453, + 1.67512625206 + ], + "libelle_d_acheminement": "DHUIZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67512625206, + 47.5875471453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd3d88f76a4933564e621d7b99d6c728c092c035", + "fields": { + "code_commune_insee": "41075", + "nom_de_la_commune": "DROUE", + "code_postal": "41270", + "coordonnees_gps": [ + 48.0341247129, + 1.06588244097 + ], + "libelle_d_acheminement": "DROUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06588244097, + 48.0341247129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a842ab4a062724533fbdf076db455ac7b715920", + "fields": { + "code_commune_insee": "41080", + "nom_de_la_commune": "FAVEROLLES SUR CHER", + "code_postal": "41400", + "coordonnees_gps": [ + 47.3121076909, + 1.18291506332 + ], + "libelle_d_acheminement": "FAVEROLLES SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18291506332, + 47.3121076909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "711b4e910f53d6f0d2fa95e91509c63ffca95c9a", + "fields": { + "code_commune_insee": "41081", + "nom_de_la_commune": "FAYE", + "code_postal": "41100", + "coordonnees_gps": [ + 47.8035457994, + 1.18892925408 + ], + "libelle_d_acheminement": "FAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18892925408, + 47.8035457994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47262baf30f864c3a9cc1894a7113af2aa1aa75b", + "fields": { + "code_commune_insee": "41113", + "nom_de_la_commune": "LAVARDIN", + "code_postal": "41800", + "coordonnees_gps": [ + 47.7369568868, + 0.886026450993 + ], + "libelle_d_acheminement": "LAVARDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.886026450993, + 47.7369568868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "261dbef254756e7fe461ce1011d186b3a9f623d0", + "fields": { + "code_commune_insee": "41115", + "nom_de_la_commune": "LIGNIERES", + "code_postal": "41160", + "coordonnees_gps": [ + 47.8628195017, + 1.19398273817 + ], + "libelle_d_acheminement": "LIGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19398273817, + 47.8628195017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e57a80de641558e7f99370fc98a582613a009ef", + "fields": { + "code_commune_insee": "41118", + "nom_de_la_commune": "LOREUX", + "code_postal": "41200", + "coordonnees_gps": [ + 47.4034848676, + 1.84312740656 + ], + "libelle_d_acheminement": "LOREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84312740656, + 47.4034848676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba30c3c8ae4d5cbb84fdd430c54739aed880d36", + "fields": { + "code_commune_insee": "41124", + "nom_de_la_commune": "MARCILLY EN BEAUCE", + "code_postal": "41100", + "coordonnees_gps": [ + 47.7585797087, + 1.00338364896 + ], + "libelle_d_acheminement": "MARCILLY EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00338364896, + 47.7585797087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d1b722689d4632115a90f780f69faeeba71ccd8", + "fields": { + "code_commune_insee": "41130", + "nom_de_la_commune": "MAVES", + "code_postal": "41500", + "coordonnees_gps": [ + 47.7379268366, + 1.35279251946 + ], + "libelle_d_acheminement": "MAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35279251946, + 47.7379268366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e6b95cabc18a534988624cfa02058412dcf44a7", + "fields": { + "code_commune_insee": "41134", + "nom_de_la_commune": "MENARS", + "code_postal": "41500", + "coordonnees_gps": [ + 47.6472843948, + 1.3998472166 + ], + "libelle_d_acheminement": "MENARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3998472166, + 47.6472843948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "804893573a39f563dd0182b108645c7d0443794f", + "fields": { + "code_commune_insee": "41135", + "nom_de_la_commune": "MENNETOU SUR CHER", + "code_postal": "41320", + "coordonnees_gps": [ + 47.2927801953, + 1.8752007489 + ], + "libelle_d_acheminement": "MENNETOU SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8752007489, + 47.2927801953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82a7853624b9c621eec97855f5ae3dddee3dd665", + "fields": { + "code_commune_insee": "41147", + "nom_de_la_commune": "LES MONTILS", + "code_postal": "41120", + "coordonnees_gps": [ + 47.5035507545, + 1.3044545594 + ], + "libelle_d_acheminement": "LES MONTILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3044545594, + 47.5035507545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "152598f4db5eaa841b63a7a60f8a48684e4e3220", + "fields": { + "code_commune_insee": "41149", + "nom_de_la_commune": "MONTOIRE SUR LE LOIR", + "code_postal": "41800", + "coordonnees_gps": [ + 47.7650269644, + 0.854948191169 + ], + "libelle_d_acheminement": "MONTOIRE SUR LE LOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.854948191169, + 47.7650269644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9606ae6e1607a19278ea0f595a3c49ecd0611b0b", + "fields": { + "code_commune_insee": "41150", + "nom_de_la_commune": "MONT PRES CHAMBORD", + "code_postal": "41250", + "coordonnees_gps": [ + 47.5576074814, + 1.44802815155 + ], + "libelle_d_acheminement": "MONT PRES CHAMBORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44802815155, + 47.5576074814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6ccfcd73015fb3a7944df4223c59ffdc4c8dc97", + "fields": { + "code_commune_insee": "41153", + "nom_de_la_commune": "MONTROUVEAU", + "code_postal": "41800", + "coordonnees_gps": [ + 47.7062763559, + 0.713887918524 + ], + "libelle_d_acheminement": "MONTROUVEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.713887918524, + 47.7062763559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00797efd3d81f5c4adf7575d8e6d7e73148c34de", + "fields": { + "code_commune_insee": "41154", + "nom_de_la_commune": "MOREE", + "code_postal": "41160", + "coordonnees_gps": [ + 47.9158762496, + 1.24887473197 + ], + "libelle_d_acheminement": "MOREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24887473197, + 47.9158762496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13d859c6af63d9b101278a5cf2abadd0098fb4fe", + "fields": { + "ligne_5": "LA COLOMBE", + "code_commune_insee": "41173", + "libelle_d_acheminement": "BEAUCE LA ROMAINE", + "code_postal": "41160", + "nom_de_la_commune": "BEAUCE LA ROMAINE", + "coordonnees_gps": [ + 47.9026361174, + 1.53361751623 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53361751623, + 47.9026361174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff5bd4820255f7020d5f5df5459af193668c5be3", + "fields": { + "ligne_5": "MEMBROLLES", + "code_commune_insee": "41173", + "libelle_d_acheminement": "BEAUCE LA ROMAINE", + "code_postal": "41240", + "nom_de_la_commune": "BEAUCE LA ROMAINE", + "coordonnees_gps": [ + 47.9026361174, + 1.53361751623 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53361751623, + 47.9026361174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66232a17b4f3356abdf263fa02ceb3a0ce535fbd", + "fields": { + "ligne_5": "OUZOUER LE MARCHE", + "code_commune_insee": "41173", + "libelle_d_acheminement": "BEAUCE LA ROMAINE", + "code_postal": "41240", + "nom_de_la_commune": "BEAUCE LA ROMAINE", + "coordonnees_gps": [ + 47.9026361174, + 1.53361751623 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53361751623, + 47.9026361174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff8e5afb259ddfa737d41fd528ee57c812caec6a", + "fields": { + "ligne_5": "VERDES", + "code_commune_insee": "41173", + "libelle_d_acheminement": "BEAUCE LA ROMAINE", + "code_postal": "41240", + "nom_de_la_commune": "BEAUCE LA ROMAINE", + "coordonnees_gps": [ + 47.9026361174, + 1.53361751623 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53361751623, + 47.9026361174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad5309a5c23cf229eb16ce647794de3db85f687a", + "fields": { + "code_commune_insee": "41189", + "nom_de_la_commune": "RILLY SUR LOIRE", + "code_postal": "41150", + "coordonnees_gps": [ + 47.4587549693, + 1.14496206826 + ], + "libelle_d_acheminement": "RILLY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14496206826, + 47.4587549693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e93835df0ae049c9d174d6caf499a0d6227c0f8e", + "fields": { + "code_commune_insee": "41198", + "nom_de_la_commune": "ST AIGNAN", + "code_postal": "41110", + "coordonnees_gps": [ + 47.2506398056, + 1.33425450761 + ], + "libelle_d_acheminement": "ST AIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33425450761, + 47.2506398056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "171033bf952f7ee16d8cb5a9cef4045ea8b1f3f1", + "fields": { + "code_commune_insee": "41205", + "nom_de_la_commune": "ST CYR DU GAULT", + "code_postal": "41190", + "coordonnees_gps": [ + 47.6208770485, + 1.02593703871 + ], + "libelle_d_acheminement": "ST CYR DU GAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02593703871, + 47.6208770485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "006a2bbbb1b0539b64089cd12d02853c22eb53bb", + "fields": { + "code_commune_insee": "41211", + "nom_de_la_commune": "ST GEORGES SUR CHER", + "code_postal": "41400", + "coordonnees_gps": [ + 47.3092315675, + 1.13723329231 + ], + "libelle_d_acheminement": "ST GEORGES SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13723329231, + 47.3092315675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2650a114c40356b4ad6d8844909d6223e0e8c558", + "fields": { + "code_commune_insee": "41229", + "nom_de_la_commune": "ST ROMAIN SUR CHER", + "code_postal": "41140", + "coordonnees_gps": [ + 47.318457927, + 1.38640795013 + ], + "libelle_d_acheminement": "ST ROMAIN SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38640795013, + 47.318457927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80dac9cd4cee5e8214d564298ba797715164ac50", + "fields": { + "code_commune_insee": "41241", + "nom_de_la_commune": "SELLES ST DENIS", + "code_postal": "41300", + "coordonnees_gps": [ + 47.3757781053, + 1.90655896666 + ], + "libelle_d_acheminement": "SELLES ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90655896666, + 47.3757781053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6ecd83632795c80f2e278fecc044588506ca0ea", + "fields": { + "code_commune_insee": "41249", + "nom_de_la_commune": "SOUESMES", + "code_postal": "41300", + "coordonnees_gps": [ + 47.4571829313, + 2.17085302343 + ], + "libelle_d_acheminement": "SOUESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17085302343, + 47.4571829313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4429108c08ad257500670b9ff7ffbc3df9ff544f", + "fields": { + "code_commune_insee": "41250", + "nom_de_la_commune": "SOUGE", + "code_postal": "41800", + "coordonnees_gps": [ + 47.7786428573, + 0.725882199174 + ], + "libelle_d_acheminement": "SOUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.725882199174, + 47.7786428573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e807ec1597389273abf903d4bca34da3d7de8672", + "fields": { + "code_commune_insee": "41267", + "nom_de_la_commune": "VALLIERES LES GRANDES", + "code_postal": "41400", + "coordonnees_gps": [ + 47.4108790791, + 1.14756502799 + ], + "libelle_d_acheminement": "VALLIERES LES GRANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14756502799, + 47.4108790791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bb306dd888c769b86852c629346c3f99dfdae18", + "fields": { + "ligne_5": "LA BOSSE", + "code_commune_insee": "41273", + "libelle_d_acheminement": "VIEVY LE RAYE", + "code_postal": "41290", + "nom_de_la_commune": "VIEVY LE RAYE", + "coordonnees_gps": [ + 47.8716770852, + 1.29829930078 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29829930078, + 47.8716770852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf1b6321e9a229d4733a22f990ed785be8615672", + "fields": { + "code_commune_insee": "41283", + "nom_de_la_commune": "VILLEMARDY", + "code_postal": "41100", + "coordonnees_gps": [ + 47.7277491747, + 1.1866948747 + ], + "libelle_d_acheminement": "VILLEMARDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1866948747, + 47.7277491747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8afee3d6d67f539c50bcb63d70a97f7d2c0a67ef", + "fields": { + "code_commune_insee": "41284", + "nom_de_la_commune": "VILLENEUVE FROUVILLE", + "code_postal": "41290", + "coordonnees_gps": [ + 47.7852258019, + 1.3172421296 + ], + "libelle_d_acheminement": "VILLENEUVE FROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3172421296, + 47.7852258019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb6eb714cd78c9e85f89830733d4446f344c08fe", + "fields": { + "code_commune_insee": "41292", + "nom_de_la_commune": "VILLEXANTON", + "code_postal": "41500", + "coordonnees_gps": [ + 47.7415309033, + 1.44574467546 + ], + "libelle_d_acheminement": "VILLEXANTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44574467546, + 47.7415309033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f32873a1a53371294085d1afd251bef551589860", + "fields": { + "code_commune_insee": "41297", + "nom_de_la_commune": "YVOY LE MARRON", + "code_postal": "41600", + "coordonnees_gps": [ + 47.6366514233, + 1.84803202811 + ], + "libelle_d_acheminement": "YVOY LE MARRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84803202811, + 47.6366514233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2925130ae9834beafaf95a8afb642e0a9daafb78", + "fields": { + "code_commune_insee": "42009", + "nom_de_la_commune": "ARTHUN", + "code_postal": "42130", + "coordonnees_gps": [ + 45.7685617882, + 4.03822937233 + ], + "libelle_d_acheminement": "ARTHUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03822937233, + 45.7685617882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cae1f2a46564a9ac47a7a8e9d73c2cb4716a04e4", + "fields": { + "code_commune_insee": "42010", + "nom_de_la_commune": "AVEIZIEUX", + "code_postal": "42330", + "coordonnees_gps": [ + 45.5692764354, + 4.37903111201 + ], + "libelle_d_acheminement": "AVEIZIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37903111201, + 45.5692764354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e9dbf8341d0da25f5577309d91a68e624f718a0", + "fields": { + "code_commune_insee": "42011", + "nom_de_la_commune": "BALBIGNY", + "code_postal": "42510", + "coordonnees_gps": [ + 45.8294764785, + 4.18332533699 + ], + "libelle_d_acheminement": "BALBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18332533699, + 45.8294764785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1533fbc09b3461cc262c8debea16412dbf928674", + "fields": { + "code_commune_insee": "42023", + "nom_de_la_commune": "BOURG ARGENTAL", + "code_postal": "42220", + "coordonnees_gps": [ + 45.3037339216, + 4.56653101213 + ], + "libelle_d_acheminement": "BOURG ARGENTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56653101213, + 45.3037339216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "349fec0e3332e0624474fa1c8c6bdcc47bbd63c4", + "fields": { + "code_commune_insee": "42033", + "nom_de_la_commune": "LE CERGNE", + "code_postal": "42460", + "coordonnees_gps": [ + 46.1207669259, + 4.30390743723 + ], + "libelle_d_acheminement": "LE CERGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30390743723, + 46.1207669259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3497467f70cfac2a376c5cd4c8fccec3d2e3a4d", + "fields": { + "code_commune_insee": "42038", + "nom_de_la_commune": "CHALAIN LE COMTAL", + "code_postal": "42600", + "coordonnees_gps": [ + 45.6411269141, + 4.17221132927 + ], + "libelle_d_acheminement": "CHALAIN LE COMTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17221132927, + 45.6411269141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3187e135468a7699301f837043ba841592ae8105", + "fields": { + "ligne_5": "CHALMAZEL", + "code_commune_insee": "42039", + "libelle_d_acheminement": "CHALMAZEL JEANSAGNIERE", + "code_postal": "42920", + "nom_de_la_commune": "CHALMAZEL JEANSAGNIERE", + "coordonnees_gps": [ + 45.6980828693, + 3.82450309755 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82450309755, + 45.6980828693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ba4dea6abc3f10d360f8d0eca77891d2f7c04a8", + "fields": { + "code_commune_insee": "42040", + "nom_de_la_commune": "LA CHAMBA", + "code_postal": "42440", + "coordonnees_gps": [ + 45.7553340997, + 3.76221120048 + ], + "libelle_d_acheminement": "LA CHAMBA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76221120048, + 45.7553340997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b1cb2ae935a92bdd023b654bbe5dc5f403ff936", + "fields": { + "code_commune_insee": "42044", + "nom_de_la_commune": "LE CHAMBON FEUGEROLLES", + "code_postal": "42500", + "coordonnees_gps": [ + 45.3886064564, + 4.33196255695 + ], + "libelle_d_acheminement": "LE CHAMBON FEUGEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33196255695, + 45.3886064564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52dca10fcb6d98d9e5b77b9fa5013b3c213c3ce3", + "fields": { + "code_commune_insee": "42046", + "nom_de_la_commune": "CHAMPDIEU", + "code_postal": "42600", + "coordonnees_gps": [ + 45.6413921035, + 4.0502490993 + ], + "libelle_d_acheminement": "CHAMPDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0502490993, + 45.6413921035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c738e1754bf2f0b8dfb3ea7cce1597b43a28547f", + "fields": { + "code_commune_insee": "42047", + "nom_de_la_commune": "CHAMPOLY", + "code_postal": "42430", + "coordonnees_gps": [ + 45.8535201477, + 3.84402489217 + ], + "libelle_d_acheminement": "CHAMPOLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84402489217, + 45.8535201477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dac043142ba5056f5fc2928dee34a6532317ea09", + "fields": { + "code_commune_insee": "42054", + "nom_de_la_commune": "CHATELNEUF", + "code_postal": "42940", + "coordonnees_gps": [ + 45.6388781024, + 3.97962390788 + ], + "libelle_d_acheminement": "CHATELNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97962390788, + 45.6388781024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffa65e938f7a509595f3e3433747f0cc36f13dbb", + "fields": { + "code_commune_insee": "42055", + "nom_de_la_commune": "CHATELUS", + "code_postal": "42140", + "coordonnees_gps": [ + 45.5897631201, + 4.46215474469 + ], + "libelle_d_acheminement": "CHATELUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46215474469, + 45.5897631201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "376eb31f43d46a58243a49dd5114e0e0dd9ac5fa", + "fields": { + "code_commune_insee": "42056", + "nom_de_la_commune": "CHAVANAY", + "code_postal": "42410", + "coordonnees_gps": [ + 45.4187757598, + 4.7287178869 + ], + "libelle_d_acheminement": "CHAVANAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7287178869, + 45.4187757598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5380ef083c1423df1c0be4f358e3403addb64de", + "fields": { + "code_commune_insee": "42058", + "nom_de_la_commune": "CHAZELLES SUR LAVIEU", + "code_postal": "42560", + "coordonnees_gps": [ + 45.5423204003, + 4.00189316326 + ], + "libelle_d_acheminement": "CHAZELLES SUR LAVIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00189316326, + 45.5423204003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0302dca6096931e1b6914294b710da2e9aee92a3", + "fields": { + "code_commune_insee": "42060", + "nom_de_la_commune": "CHENEREILLES", + "code_postal": "42560", + "coordonnees_gps": [ + 45.4862625628, + 4.08984378023 + ], + "libelle_d_acheminement": "CHENEREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08984378023, + 45.4862625628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4228f3e279a7b7dd0bdfd3fa15e3e401116d273f", + "fields": { + "code_commune_insee": "42072", + "nom_de_la_commune": "LA COTE EN COUZAN", + "code_postal": "42111", + "coordonnees_gps": [ + 45.7709475758, + 3.82885508011 + ], + "libelle_d_acheminement": "LA COTE EN COUZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82885508011, + 45.7709475758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afdb841f6cbc23c13d5a06c3465c961019e4d778", + "fields": { + "code_commune_insee": "42075", + "nom_de_la_commune": "CRAINTILLEUX", + "code_postal": "42210", + "coordonnees_gps": [ + 45.57428192, + 4.22555188945 + ], + "libelle_d_acheminement": "CRAINTILLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22555188945, + 45.57428192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a2a570d879363779e2d9db9c9836bfb069b8d86", + "fields": { + "code_commune_insee": "42086", + "nom_de_la_commune": "ECOCHE", + "code_postal": "42670", + "coordonnees_gps": [ + 46.1511332102, + 4.30522495875 + ], + "libelle_d_acheminement": "ECOCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30522495875, + 46.1511332102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53cf0ffe7a450b8f6918f57b4984d70acdf7e6e0", + "fields": { + "code_commune_insee": "42088", + "nom_de_la_commune": "EPERCIEUX ST PAUL", + "code_postal": "42110", + "coordonnees_gps": [ + 45.7905917572, + 4.20144222446 + ], + "libelle_d_acheminement": "EPERCIEUX ST PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20144222446, + 45.7905917572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbd89ab35482aba0cc976f4799e9ed7eddd8ae05", + "fields": { + "code_commune_insee": "42090", + "nom_de_la_commune": "ESSERTINES EN DONZY", + "code_postal": "42360", + "coordonnees_gps": [ + 45.7576341389, + 4.33837762975 + ], + "libelle_d_acheminement": "ESSERTINES EN DONZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33837762975, + 45.7576341389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "145b3f2a94b4af03a2b7d8b474e00f9d9ed4e7ad", + "fields": { + "code_commune_insee": "42093", + "nom_de_la_commune": "FARNAY", + "code_postal": "42320", + "coordonnees_gps": [ + 45.4850828855, + 4.60234719042 + ], + "libelle_d_acheminement": "FARNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60234719042, + 45.4850828855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "391ec9d56aaf6f02072bb7fa9be3b8886cb4a8a8", + "fields": { + "code_commune_insee": "42094", + "nom_de_la_commune": "FEURS", + "code_postal": "42110", + "coordonnees_gps": [ + 45.7323040855, + 4.22324153789 + ], + "libelle_d_acheminement": "FEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22324153789, + 45.7323040855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "491c3b0372f1d6a552b9d61d12224de0bd91935e", + "fields": { + "code_commune_insee": "42099", + "nom_de_la_commune": "FRAISSES", + "code_postal": "42490", + "coordonnees_gps": [ + 45.3843710509, + 4.26046841789 + ], + "libelle_d_acheminement": "FRAISSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26046841789, + 45.3843710509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14c8f890453dbcf58c693725ce4b27adc3013994", + "fields": { + "code_commune_insee": "42103", + "nom_de_la_commune": "LA GRAND CROIX", + "code_postal": "42320", + "coordonnees_gps": [ + 45.5040795864, + 4.55860381813 + ], + "libelle_d_acheminement": "LA GRAND CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55860381813, + 45.5040795864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea52aa11b7f2674cf17652b1195ea5e0a191a52b", + "fields": { + "code_commune_insee": "42118", + "nom_de_la_commune": "LAY", + "code_postal": "42470", + "coordonnees_gps": [ + 45.9686920698, + 4.24074411631 + ], + "libelle_d_acheminement": "LAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24074411631, + 45.9686920698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffcd97e6b9c861fa02d929677718a656cdf046d5", + "fields": { + "code_commune_insee": "42120", + "nom_de_la_commune": "LENTIGNY", + "code_postal": "42155", + "coordonnees_gps": [ + 45.9921445608, + 3.97528031163 + ], + "libelle_d_acheminement": "LENTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97528031163, + 45.9921445608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cf31a1c15285c172f378746000a833ab2c97595", + "fields": { + "code_commune_insee": "42139", + "nom_de_la_commune": "MARLHES", + "code_postal": "42660", + "coordonnees_gps": [ + 45.2930506564, + 4.39678475293 + ], + "libelle_d_acheminement": "MARLHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39678475293, + 45.2930506564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "211a431cddb33901fb3cccab8b8502d633153ae3", + "fields": { + "code_commune_insee": "42141", + "nom_de_la_commune": "MARS", + "code_postal": "42750", + "coordonnees_gps": [ + 46.1494620298, + 4.2514137726 + ], + "libelle_d_acheminement": "MARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2514137726, + 46.1494620298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51a25157fec10630868368c308939434fd504b2f", + "fields": { + "code_commune_insee": "42146", + "nom_de_la_commune": "MONTARCHER", + "code_postal": "42380", + "coordonnees_gps": [ + 45.458211291, + 3.99028156923 + ], + "libelle_d_acheminement": "MONTARCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99028156923, + 45.458211291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4126925c05be8344bc936d6fc63cfd909034e8dd", + "fields": { + "ligne_5": "MOINGT", + "code_commune_insee": "42147", + "libelle_d_acheminement": "MONTBRISON", + "code_postal": "42600", + "nom_de_la_commune": "MONTBRISON", + "coordonnees_gps": [ + 45.6008365515, + 4.0713982073 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0713982073, + 45.6008365515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18e80b365b4b737094b9e3d45696c5284ed6b5c8", + "fields": { + "code_commune_insee": "42148", + "nom_de_la_commune": "MONTCHAL", + "code_postal": "42360", + "coordonnees_gps": [ + 45.8240674151, + 4.32824050303 + ], + "libelle_d_acheminement": "MONTCHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32824050303, + 45.8240674151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7100cee0bebbafa939cc250aaf27cb8db34f0942", + "fields": { + "code_commune_insee": "42152", + "nom_de_la_commune": "NANDAX", + "code_postal": "42720", + "coordonnees_gps": [ + 46.0988370504, + 4.1699750449 + ], + "libelle_d_acheminement": "NANDAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1699750449, + 46.0988370504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91dc3fe5fc82971be64a85c39fee7114a5ab8997", + "fields": { + "code_commune_insee": "42161", + "nom_de_la_commune": "NOTRE DAME DE BOISSET", + "code_postal": "42120", + "coordonnees_gps": [ + 45.9892923941, + 4.13471430995 + ], + "libelle_d_acheminement": "NOTRE DAME DE BOISSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13471430995, + 45.9892923941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "347be93e245b63d3fe4d4eddd03e9bc6e2c89a38", + "fields": { + "code_commune_insee": "42162", + "nom_de_la_commune": "OUCHES", + "code_postal": "42155", + "coordonnees_gps": [ + 46.0133225099, + 3.9959200777 + ], + "libelle_d_acheminement": "OUCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9959200777, + 46.0133225099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a76981bb636c14730ba85c41b3e176c857aa5cc", + "fields": { + "code_commune_insee": "42182", + "nom_de_la_commune": "RENAISON", + "code_postal": "42370", + "coordonnees_gps": [ + 46.0476606321, + 3.90857597535 + ], + "libelle_d_acheminement": "RENAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90857597535, + 46.0476606321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfb1074e195d9b41f6c67372c2de1cb5b6e54352", + "fields": { + "code_commune_insee": "42191", + "nom_de_la_commune": "ROISEY", + "code_postal": "42520", + "coordonnees_gps": [ + 45.391280992, + 4.65752995946 + ], + "libelle_d_acheminement": "ROISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65752995946, + 45.391280992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "991e1d3cf4acdd7d0b2dccb54ef394149e666b69", + "fields": { + "code_commune_insee": "42198", + "nom_de_la_commune": "ST ALBAN LES EAUX", + "code_postal": "42370", + "coordonnees_gps": [ + 46.0060538443, + 3.93140741051 + ], + "libelle_d_acheminement": "ST ALBAN LES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93140741051, + 46.0060538443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de5412baa035cf7829863ddbe817f7c5d4ade5a3", + "fields": { + "code_commune_insee": "42200", + "nom_de_la_commune": "ST ANDRE LE PUY", + "code_postal": "42210", + "coordonnees_gps": [ + 45.646913833, + 4.26396291539 + ], + "libelle_d_acheminement": "ST ANDRE LE PUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26396291539, + 45.646913833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09a49f8c9e6f236f22e66459341e80283c8a5bba", + "fields": { + "ligne_5": "ST MARTIN EN COAILLEUX", + "code_commune_insee": "42207", + "libelle_d_acheminement": "ST CHAMOND", + "code_postal": "42400", + "nom_de_la_commune": "ST CHAMOND", + "coordonnees_gps": [ + 45.4698319517, + 4.50184989506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50184989506, + 45.4698319517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18d00e0136c533010d549cf548a5b8ddf0142675", + "fields": { + "code_commune_insee": "42208", + "nom_de_la_commune": "ST CHRISTO EN JAREZ", + "code_postal": "42320", + "coordonnees_gps": [ + 45.5362867258, + 4.4671653165 + ], + "libelle_d_acheminement": "ST CHRISTO EN JAREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4671653165, + 45.5362867258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cd488fdc6207e6c861cc37f5cf8ca9a736a6ba0", + "fields": { + "code_commune_insee": "42217", + "nom_de_la_commune": "ST DIDIER SUR ROCHEFORT", + "code_postal": "42111", + "coordonnees_gps": [ + 45.7934338068, + 3.86367748356 + ], + "libelle_d_acheminement": "ST DIDIER SUR ROCHEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86367748356, + 45.7934338068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e95427d6d4d1fc65a3ab7e77c95693ba12fbb692", + "fields": { + "ligne_5": "ROCHETAILLEE", + "code_commune_insee": "42218", + "libelle_d_acheminement": "ST ETIENNE", + "code_postal": "42100", + "nom_de_la_commune": "ST ETIENNE", + "coordonnees_gps": [ + 45.4301235512, + 4.37913997076 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37913997076, + 45.4301235512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aacae5cb4b05e7cd9ae8e8e719512a03400522fe", + "fields": { + "code_commune_insee": "42219", + "nom_de_la_commune": "ST ETIENNE LE MOLARD", + "code_postal": "42130", + "coordonnees_gps": [ + 45.739928029, + 4.09717656731 + ], + "libelle_d_acheminement": "ST ETIENNE LE MOLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09717656731, + 45.739928029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b82442431529f8a5e503c37e0955410aaeb58e3", + "fields": { + "code_commune_insee": "42229", + "nom_de_la_commune": "ST GERMAIN LA MONTAGNE", + "code_postal": "42670", + "coordonnees_gps": [ + 46.1990372012, + 4.39130879538 + ], + "libelle_d_acheminement": "ST GERMAIN LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39130879538, + 46.1990372012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c0efc28bf16b268862cc845fab7833771da4d98", + "fields": { + "code_commune_insee": "42230", + "nom_de_la_commune": "ST GERMAIN LAVAL", + "code_postal": "42260", + "coordonnees_gps": [ + 45.8308448728, + 4.01988837409 + ], + "libelle_d_acheminement": "ST GERMAIN LAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01988837409, + 45.8308448728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4901f64abded8efc96efe602561af132589f370a", + "fields": { + "code_commune_insee": "42253", + "nom_de_la_commune": "ST LEGER SUR ROANNE", + "code_postal": "42155", + "coordonnees_gps": [ + 46.0416783061, + 4.00124204353 + ], + "libelle_d_acheminement": "ST LEGER SUR ROANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00124204353, + 46.0416783061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "625eb0b41766c37fd01f73695c86fbd1f776920c", + "fields": { + "code_commune_insee": "42254", + "nom_de_la_commune": "ST MARCEL DE FELINES", + "code_postal": "42122", + "coordonnees_gps": [ + 45.8614554366, + 4.1876629386 + ], + "libelle_d_acheminement": "ST MARCEL DE FELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1876629386, + 45.8614554366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2194c375859beb0ec19db8ef0e131ec1fb5ea9b0", + "fields": { + "code_commune_insee": "42257", + "nom_de_la_commune": "ST MARTIN D ESTREAUX", + "code_postal": "42620", + "coordonnees_gps": [ + 46.2089488528, + 3.81781028236 + ], + "libelle_d_acheminement": "ST MARTIN D ESTREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81781028236, + 46.2089488528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f096a7dac60ce6e4aa5cd2a690265fd38a2b7863", + "fields": { + "code_commune_insee": "42261", + "nom_de_la_commune": "ST MARTIN LESTRA", + "code_postal": "42110", + "coordonnees_gps": [ + 45.731526312, + 4.3688277633 + ], + "libelle_d_acheminement": "ST MARTIN LESTRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3688277633, + 45.731526312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f198f9108d0e9653a3b040a8ef0e9e23ee7bba28", + "fields": { + "ligne_5": "AMIONS", + "code_commune_insee": "42268", + "libelle_d_acheminement": "VEZELIN SUR LOIRE", + "code_postal": "42260", + "nom_de_la_commune": "VEZELIN SUR LOIRE", + "coordonnees_gps": [ + 45.8892083156, + 4.08289919803 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08289919803, + 45.8892083156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bf62d4e50f0fb3e377a2d12ec66620795de2615", + "fields": { + "code_commune_insee": "42273", + "nom_de_la_commune": "ST PIERRE LA NOAILLE", + "code_postal": "42190", + "coordonnees_gps": [ + 46.182835478, + 4.10333966313 + ], + "libelle_d_acheminement": "ST PIERRE LA NOAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10333966313, + 46.182835478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7afb917210f8558e1d9e579197fbc5c79014daf3", + "fields": { + "code_commune_insee": "42279", + "nom_de_la_commune": "ST JUST ST RAMBERT", + "code_postal": "42170", + "coordonnees_gps": [ + 45.4903250932, + 4.25026509629 + ], + "libelle_d_acheminement": "ST JUST ST RAMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25026509629, + 45.4903250932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83dce0f09a94db740fce5d9b4fdfc0f6a72e7a13", + "fields": { + "code_commune_insee": "42285", + "nom_de_la_commune": "ST ROMAIN LE PUY", + "code_postal": "42610", + "coordonnees_gps": [ + 45.5569265459, + 4.13106130921 + ], + "libelle_d_acheminement": "ST ROMAIN LE PUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13106130921, + 45.5569265459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a638b878b39da522fe1cec3cdb517a281a8b0410", + "fields": { + "code_commune_insee": "42286", + "nom_de_la_commune": "ST ROMAIN LES ATHEUX", + "code_postal": "42660", + "coordonnees_gps": [ + 45.3660975776, + 4.37077848051 + ], + "libelle_d_acheminement": "ST ROMAIN LES ATHEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37077848051, + 45.3660975776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19fc05283d811a9592d03b482550de2c183db03e", + "fields": { + "code_commune_insee": "42287", + "nom_de_la_commune": "ST SAUVEUR EN RUE", + "code_postal": "42220", + "coordonnees_gps": [ + 45.2712880618, + 4.50055395379 + ], + "libelle_d_acheminement": "ST SAUVEUR EN RUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50055395379, + 45.2712880618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2266f9671a6164c13bf9c9fe165b5101a2449c49", + "fields": { + "code_commune_insee": "42289", + "nom_de_la_commune": "ST SYMPHORIEN DE LAY", + "code_postal": "42470", + "coordonnees_gps": [ + 45.9435843496, + 4.21665537628 + ], + "libelle_d_acheminement": "ST SYMPHORIEN DE LAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21665537628, + 45.9435843496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2fc02792c2df736ae79c5e1c4a0e3622dce29fe", + "fields": { + "code_commune_insee": "42296", + "nom_de_la_commune": "SALT EN DONZY", + "code_postal": "42110", + "coordonnees_gps": [ + 45.7335095274, + 4.28266323222 + ], + "libelle_d_acheminement": "SALT EN DONZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28266323222, + 45.7335095274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5f39ac9268ad26efa5afc083103ba02b9ef5eca", + "fields": { + "code_commune_insee": "42297", + "nom_de_la_commune": "SALVIZINET", + "code_postal": "42110", + "coordonnees_gps": [ + 45.7593642516, + 4.27548067122 + ], + "libelle_d_acheminement": "SALVIZINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27548067122, + 45.7593642516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10a18fc06ba143880b819f890546ba16e67bd480", + "fields": { + "code_commune_insee": "42299", + "nom_de_la_commune": "SAVIGNEUX", + "code_postal": "42600", + "coordonnees_gps": [ + 45.6223963471, + 4.1003957272 + ], + "libelle_d_acheminement": "SAVIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1003957272, + 45.6223963471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1d901274e195db05b711095d147c37ecad74636", + "fields": { + "code_commune_insee": "42303", + "nom_de_la_commune": "SOUTERNON", + "code_postal": "42260", + "coordonnees_gps": [ + 45.8803291451, + 3.99029716142 + ], + "libelle_d_acheminement": "SOUTERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99029716142, + 45.8803291451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd799a07607ac6cbe051d7484fcc4e54a777af4b", + "fields": { + "code_commune_insee": "42317", + "nom_de_la_commune": "URBISE", + "code_postal": "42310", + "coordonnees_gps": [ + 46.2509914533, + 3.88650116496 + ], + "libelle_d_acheminement": "URBISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88650116496, + 46.2509914533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b0f69760d0b96fe3f4ff49df47f3b86a5ed3955", + "fields": { + "code_commune_insee": "42323", + "nom_de_la_commune": "VEAUCHE", + "code_postal": "42340", + "coordonnees_gps": [ + 45.5621736685, + 4.28985644507 + ], + "libelle_d_acheminement": "VEAUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28985644507, + 45.5621736685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11f0bf51b9676c8aecb0463ac62dec50086ba40f", + "fields": { + "code_commune_insee": "42324", + "nom_de_la_commune": "VEAUCHETTE", + "code_postal": "42340", + "coordonnees_gps": [ + 45.5619081956, + 4.25092229875 + ], + "libelle_d_acheminement": "VEAUCHETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25092229875, + 45.5619081956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fb81629a640461941dba7863f91d8171c4320a6", + "fields": { + "code_commune_insee": "42326", + "nom_de_la_commune": "VERANNE", + "code_postal": "42520", + "coordonnees_gps": [ + 45.3722142523, + 4.63484498928 + ], + "libelle_d_acheminement": "VERANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63484498928, + 45.3722142523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a30f7fa7aba753059a686848d73f2768fa6b3c90", + "fields": { + "code_commune_insee": "42333", + "nom_de_la_commune": "VILLERS", + "code_postal": "42460", + "coordonnees_gps": [ + 46.1249923509, + 4.22717855984 + ], + "libelle_d_acheminement": "VILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22717855984, + 46.1249923509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "795936ecd68448af57035a44e9a69a905cb6a3fc", + "fields": { + "code_commune_insee": "43004", + "nom_de_la_commune": "ALLEYRAC", + "code_postal": "43150", + "coordonnees_gps": [ + 44.8944815222, + 3.98915009385 + ], + "libelle_d_acheminement": "ALLEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98915009385, + 44.8944815222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcb5851fb515e6201cbf948ad1db9bf43e40972f", + "fields": { + "code_commune_insee": "43005", + "nom_de_la_commune": "ALLEYRAS", + "code_postal": "43580", + "coordonnees_gps": [ + 44.9071449693, + 3.68020035357 + ], + "libelle_d_acheminement": "ALLEYRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68020035357, + 44.9071449693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f67c91d2065ec152c3bb25ba9dab3f1ff8baf1b", + "fields": { + "code_commune_insee": "43008", + "nom_de_la_commune": "ARLEMPDES", + "code_postal": "43490", + "coordonnees_gps": [ + 44.8669171298, + 3.90308376688 + ], + "libelle_d_acheminement": "ARLEMPDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90308376688, + 44.8669171298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cc34eef260deba8ef0c24495374e66859b2369d", + "fields": { + "code_commune_insee": "43013", + "nom_de_la_commune": "VISSAC AUTEYRAC", + "code_postal": "43300", + "coordonnees_gps": [ + 45.1163766085, + 3.62418252046 + ], + "libelle_d_acheminement": "VISSAC AUTEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62418252046, + 45.1163766085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "091e3be94362089e7cb90a2b31bc520a01542e9f", + "fields": { + "code_commune_insee": "43016", + "nom_de_la_commune": "AUZON", + "code_postal": "43390", + "coordonnees_gps": [ + 45.387357804, + 3.37851265715 + ], + "libelle_d_acheminement": "AUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37851265715, + 45.387357804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53e311cbfd3b738459bab097675ba007da5036c1", + "fields": { + "code_commune_insee": "43025", + "nom_de_la_commune": "BEAUZAC", + "code_postal": "43590", + "coordonnees_gps": [ + 45.2567472819, + 4.09279084729 + ], + "libelle_d_acheminement": "BEAUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09279084729, + 45.2567472819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19a3921bcbe70006cc728338f030e8de2811b1f7", + "fields": { + "code_commune_insee": "43030", + "nom_de_la_commune": "BLANZAC", + "code_postal": "43350", + "coordonnees_gps": [ + 45.1107801226, + 3.85037132513 + ], + "libelle_d_acheminement": "BLANZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85037132513, + 45.1107801226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c78526aa831f2215426537f5f2baa32eebcfd11", + "fields": { + "code_commune_insee": "43035", + "nom_de_la_commune": "BONNEVAL", + "code_postal": "43160", + "coordonnees_gps": [ + 45.3071974521, + 3.73265669732 + ], + "libelle_d_acheminement": "BONNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73265669732, + 45.3071974521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dac991f8447e0a1105530abac14fe3d88e2eeb3d", + "fields": { + "code_commune_insee": "43036", + "nom_de_la_commune": "BORNE", + "code_postal": "43350", + "coordonnees_gps": [ + 45.0944224247, + 3.7919088569 + ], + "libelle_d_acheminement": "BORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7919088569, + 45.0944224247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8789055a20d510d23cbcbe33f9a6bccd046db238", + "fields": { + "code_commune_insee": "43039", + "nom_de_la_commune": "LE BRIGNON", + "code_postal": "43370", + "coordonnees_gps": [ + 44.9156334152, + 3.87741582593 + ], + "libelle_d_acheminement": "LE BRIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87741582593, + 44.9156334152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eddbe35beb8135c6a1b25349b135824359d4faf", + "fields": { + "code_commune_insee": "43040", + "nom_de_la_commune": "BRIOUDE", + "code_postal": "43100", + "coordonnees_gps": [ + 45.2964378846, + 3.38526303303 + ], + "libelle_d_acheminement": "BRIOUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38526303303, + 45.2964378846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b516b21ed810b5e91cbf6ff11f215fef762bc03", + "fields": { + "code_commune_insee": "43043", + "nom_de_la_commune": "CEAUX D ALLEGRE", + "code_postal": "43270", + "coordonnees_gps": [ + 45.1831789556, + 3.7598519485 + ], + "libelle_d_acheminement": "CEAUX D ALLEGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7598519485, + 45.1831789556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57bb0dc834b38ccf569e457414bcc2a839d6fb0e", + "fields": { + "code_commune_insee": "43046", + "nom_de_la_commune": "CHADRAC", + "code_postal": "43770", + "coordonnees_gps": [ + 45.0610194806, + 3.90105321748 + ], + "libelle_d_acheminement": "CHADRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90105321748, + 45.0610194806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "239cd2feded1ac7cfa4a70f9fce536fad3a8c9d9", + "fields": { + "code_commune_insee": "43050", + "nom_de_la_commune": "CHAMBEZON", + "code_postal": "43410", + "coordonnees_gps": [ + 45.3818265401, + 3.24008015302 + ], + "libelle_d_acheminement": "CHAMBEZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24008015302, + 45.3818265401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2846ea224aba46f0c96a5183c62641954ccece7", + "fields": { + "code_commune_insee": "43052", + "nom_de_la_commune": "CHAMPAGNAC LE VIEUX", + "code_postal": "43440", + "coordonnees_gps": [ + 45.3545907565, + 3.50450522586 + ], + "libelle_d_acheminement": "CHAMPAGNAC LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50450522586, + 45.3545907565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e218e54ab2b25d2904ae3720735719f26db4038", + "fields": { + "code_commune_insee": "43057", + "nom_de_la_commune": "LA CHAPELLE BERTIN", + "code_postal": "43270", + "coordonnees_gps": [ + 45.2171452983, + 3.64756861773 + ], + "libelle_d_acheminement": "LA CHAPELLE BERTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64756861773, + 45.2171452983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "815cbf198675e0fe611c1c48b8e8d6c105c342bc", + "fields": { + "code_commune_insee": "43062", + "nom_de_la_commune": "CHASPUZAC", + "code_postal": "43320", + "coordonnees_gps": [ + 45.065005117, + 3.75027511306 + ], + "libelle_d_acheminement": "CHASPUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75027511306, + 45.065005117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b70d451e4cec566ad6862c0191cff16fbcca221c", + "fields": { + "code_commune_insee": "43064", + "nom_de_la_commune": "CHASSIGNOLLES", + "code_postal": "43440", + "coordonnees_gps": [ + 45.3998501161, + 3.48700463133 + ], + "libelle_d_acheminement": "CHASSIGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48700463133, + 45.3998501161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0a25f87d7c75f98bd66c72682d02e2d3c515102", + "fields": { + "code_commune_insee": "43066", + "nom_de_la_commune": "CHAUDEYROLLES", + "code_postal": "43430", + "coordonnees_gps": [ + 44.9461920956, + 4.19593297286 + ], + "libelle_d_acheminement": "CHAUDEYROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19593297286, + 44.9461920956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b44636525b25ec77557d5e383bacbc7496f5e9ce", + "fields": { + "code_commune_insee": "43071", + "nom_de_la_commune": "CHOMELIX", + "code_postal": "43500", + "coordonnees_gps": [ + 45.2590104905, + 3.82139785966 + ], + "libelle_d_acheminement": "CHOMELIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82139785966, + 45.2590104905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b8cecc7cbc72492ed8294c4fca013583e81a121", + "fields": { + "code_commune_insee": "43074", + "nom_de_la_commune": "COHADE", + "code_postal": "43100", + "coordonnees_gps": [ + 45.3350700352, + 3.3706620305 + ], + "libelle_d_acheminement": "COHADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3706620305, + 45.3350700352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1e3f8387d0914ca9f284739ab1764079d7e4d02", + "fields": { + "code_commune_insee": "43082", + "nom_de_la_commune": "CRONCE", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0823765645, + 3.36213253048 + ], + "libelle_d_acheminement": "CRONCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36213253048, + 45.0823765645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "673cb3f8ad51efbd76589882b9af1fbc204263d2", + "fields": { + "code_commune_insee": "43084", + "nom_de_la_commune": "CUSSAC SUR LOIRE", + "code_postal": "43370", + "coordonnees_gps": [ + 44.9849156994, + 3.87473452853 + ], + "libelle_d_acheminement": "CUSSAC SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87473452853, + 44.9849156994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "425121938f5575d6ac6ac7b3f3827c3993cf58d5", + "fields": { + "code_commune_insee": "43085", + "nom_de_la_commune": "DESGES", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0221277538, + 3.44215460004 + ], + "libelle_d_acheminement": "DESGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44215460004, + 45.0221277538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09b80036d8a3fc0228c24c9e0f3a40911ac00ad2", + "fields": { + "ligne_5": "ESPLANTAS", + "code_commune_insee": "43090", + "libelle_d_acheminement": "ESPLANTAS VAZEILLES", + "code_postal": "43170", + "nom_de_la_commune": "ESPLANTAS VAZEILLES", + "coordonnees_gps": [ + 44.9033054571, + 3.54670461918 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54670461918, + 44.9033054571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1131d35ea29972e29ff0b57a035d050760fe95c7", + "fields": { + "code_commune_insee": "43095", + "nom_de_la_commune": "FIX ST GENEYS", + "code_postal": "43320", + "coordonnees_gps": [ + 45.1415144345, + 3.66508807208 + ], + "libelle_d_acheminement": "FIX ST GENEYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66508807208, + 45.1415144345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a7d7745e8df10d95dc3e79832a06a3fbff5a68f", + "fields": { + "code_commune_insee": "43119", + "nom_de_la_commune": "LAVOUTE SUR LOIRE", + "code_postal": "43800", + "coordonnees_gps": [ + 45.1201169543, + 3.90303538058 + ], + "libelle_d_acheminement": "LAVOUTE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90303538058, + 45.1201169543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "032fea812a0fa9f75a68f5c945cc531d5048b45a", + "fields": { + "code_commune_insee": "43124", + "nom_de_la_commune": "LOUDES", + "code_postal": "43320", + "coordonnees_gps": [ + 45.0980880485, + 3.74470915932 + ], + "libelle_d_acheminement": "LOUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74470915932, + 45.0980880485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a90f6118b470453a35aeda1d5073849c64166350", + "fields": { + "ligne_5": "REILHAC", + "code_commune_insee": "43132", + "libelle_d_acheminement": "MAZEYRAT D ALLIER", + "code_postal": "43300", + "nom_de_la_commune": "MAZEYRAT D ALLIER", + "coordonnees_gps": [ + 45.128318526, + 3.52792705537 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52792705537, + 45.128318526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "645b4c809916a2fde3d8b016d3b22f49eda1e49f", + "fields": { + "code_commune_insee": "43135", + "nom_de_la_commune": "LE MONASTIER SUR GAZEILLE", + "code_postal": "43150", + "coordonnees_gps": [ + 44.9345419113, + 4.00710354299 + ], + "libelle_d_acheminement": "LE MONASTIER SUR GAZEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00710354299, + 44.9345419113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61c2e863214ca07d7c6142383c5496d47316b9d1", + "fields": { + "code_commune_insee": "43140", + "nom_de_la_commune": "LE MONTEIL", + "code_postal": "43700", + "coordonnees_gps": [ + 45.067076923, + 3.91276258788 + ], + "libelle_d_acheminement": "LE MONTEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91276258788, + 45.067076923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6ee1b3332e5f3cf2dfd5e5ee63d6bce511af266", + "fields": { + "code_commune_insee": "43144", + "nom_de_la_commune": "MOUDEYRES", + "code_postal": "43150", + "coordonnees_gps": [ + 44.9490292294, + 4.10321682269 + ], + "libelle_d_acheminement": "MOUDEYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10321682269, + 44.9490292294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c362327f570dfdfb67e3623f104f317afd98e34", + "fields": { + "code_commune_insee": "43152", + "nom_de_la_commune": "POLIGNAC", + "code_postal": "43000", + "coordonnees_gps": [ + 45.0800346307, + 3.8608598463 + ], + "libelle_d_acheminement": "POLIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8608598463, + 45.0800346307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfbc7961a50aca308e1bd147dab47553fcf5d625", + "fields": { + "code_commune_insee": "43164", + "nom_de_la_commune": "ROCHE EN REGNIER", + "code_postal": "43810", + "coordonnees_gps": [ + 45.2332759866, + 3.94803768811 + ], + "libelle_d_acheminement": "ROCHE EN REGNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94803768811, + 45.2332759866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b41cfc1ee026f7e791bc0c454bf7c9f5bfb71cb", + "fields": { + "code_commune_insee": "43166", + "nom_de_la_commune": "ST ANDRE DE CHALENCON", + "code_postal": "43130", + "coordonnees_gps": [ + 45.2750942654, + 3.95362357307 + ], + "libelle_d_acheminement": "ST ANDRE DE CHALENCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95362357307, + 45.2750942654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ec08b9e8751e2b4f767dc66c76d91c0fb011f04", + "fields": { + "code_commune_insee": "43171", + "nom_de_la_commune": "ST BERAIN", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0301711811, + 3.62996384671 + ], + "libelle_d_acheminement": "ST BERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62996384671, + 45.0301711811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dd8226833d8174d66e5681423aad8d9ee1d6348", + "fields": { + "code_commune_insee": "43174", + "nom_de_la_commune": "ST CHRISTOPHE SUR DOLAISON", + "code_postal": "43370", + "coordonnees_gps": [ + 44.9899054151, + 3.82630657587 + ], + "libelle_d_acheminement": "ST CHRISTOPHE SUR DOLAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82630657587, + 44.9899054151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84c22e94b4447629448b1654915e5dff9e44b18d", + "fields": { + "code_commune_insee": "43191", + "nom_de_la_commune": "ST GERON", + "code_postal": "43360", + "coordonnees_gps": [ + 45.3353129399, + 3.29409683606 + ], + "libelle_d_acheminement": "ST GERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29409683606, + 45.3353129399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cfabc3f86c5087ec22f7cb7dcb3dbab19d85c59", + "fields": { + "code_commune_insee": "43202", + "nom_de_la_commune": "ST JULIEN DES CHAZES", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0480264349, + 3.57559827157 + ], + "libelle_d_acheminement": "ST JULIEN DES CHAZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57559827157, + 45.0480264349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e81d9480ffe6ad2633c63b09ec92bc154c07a259", + "fields": { + "code_commune_insee": "43205", + "nom_de_la_commune": "ST JUST MALMONT", + "code_postal": "43240", + "coordonnees_gps": [ + 45.3464620965, + 4.32210479945 + ], + "libelle_d_acheminement": "ST JUST MALMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32210479945, + 45.3464620965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5558f4868da79d068bdbde7bde71981bec4bd218", + "fields": { + "code_commune_insee": "43210", + "nom_de_la_commune": "ST MARTIN DE FUGERES", + "code_postal": "43150", + "coordonnees_gps": [ + 44.9073562308, + 3.94556277638 + ], + "libelle_d_acheminement": "ST MARTIN DE FUGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94556277638, + 44.9073562308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02f51c14391681c8dcef224e14d0e2c372ff1d53", + "fields": { + "code_commune_insee": "43211", + "nom_de_la_commune": "ST MAURICE DE LIGNON", + "code_postal": "43200", + "coordonnees_gps": [ + 45.2200624958, + 4.1349880615 + ], + "libelle_d_acheminement": "ST MAURICE DE LIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1349880615, + 45.2200624958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c31868edc39d99fa70b979498280952b0f1972f", + "fields": { + "code_commune_insee": "43214", + "nom_de_la_commune": "ST PAL DE SENOUIRE", + "code_postal": "43160", + "coordonnees_gps": [ + 45.2575508782, + 3.64684459973 + ], + "libelle_d_acheminement": "ST PAL DE SENOUIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64684459973, + 45.2575508782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ac07466a97199121bb323dcc96059d4404841d2", + "fields": { + "code_commune_insee": "43218", + "nom_de_la_commune": "ST PIERRE EYNAC", + "code_postal": "43260", + "coordonnees_gps": [ + 45.0467218155, + 4.02721222555 + ], + "libelle_d_acheminement": "ST PIERRE EYNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02721222555, + 45.0467218155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "476ba200a63adfaf5e188f9fdf234e2f72af628f", + "fields": { + "ligne_5": "ST DIDIER D ALLIER", + "code_commune_insee": "43221", + "libelle_d_acheminement": "ST PRIVAT D ALLIER", + "code_postal": "43580", + "nom_de_la_commune": "ST PRIVAT D ALLIER", + "coordonnees_gps": [ + 45.0017025965, + 3.66961658789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66961658789, + 45.0017025965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2121d116484524d64dc2c0ce23c270bed82f8641", + "fields": { + "code_commune_insee": "43232", + "nom_de_la_commune": "SALZUIT", + "code_postal": "43230", + "coordonnees_gps": [ + 45.2095833426, + 3.48272203191 + ], + "libelle_d_acheminement": "SALZUIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48272203191, + 45.2095833426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "548cda20fcf03ac4039b1284996f8dc160dd7bd0", + "fields": { + "ligne_5": "CROISANCES", + "code_commune_insee": "43245", + "libelle_d_acheminement": "THORAS", + "code_postal": "43580", + "nom_de_la_commune": "THORAS", + "coordonnees_gps": [ + 44.859407492, + 3.56070986719 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56070986719, + 44.859407492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "589bc7674209051df13db303bed1420af3f6bf32", + "fields": { + "code_commune_insee": "43246", + "nom_de_la_commune": "TIRANGES", + "code_postal": "43530", + "coordonnees_gps": [ + 45.2875962706, + 4.01198563489 + ], + "libelle_d_acheminement": "TIRANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01198563489, + 45.2875962706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd4c67781d79bd7e1184178ec89d5203014f2da7", + "fields": { + "code_commune_insee": "43257", + "nom_de_la_commune": "VERGEZAC", + "code_postal": "43320", + "coordonnees_gps": [ + 45.0324468442, + 3.73446025932 + ], + "libelle_d_acheminement": "VERGEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73446025932, + 45.0324468442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5be94d827b285e71a9f9d570fd48e076fa3d422", + "fields": { + "code_commune_insee": "43259", + "nom_de_la_commune": "VERNASSAL", + "code_postal": "43270", + "coordonnees_gps": [ + 45.1465444602, + 3.71122620061 + ], + "libelle_d_acheminement": "VERNASSAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71122620061, + 45.1465444602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfe1abc3f8c2dce376250321be278ce26d906000", + "fields": { + "code_commune_insee": "44002", + "nom_de_la_commune": "AIGREFEUILLE SUR MAINE", + "code_postal": "44140", + "coordonnees_gps": [ + 47.0719256611, + -1.41556455507 + ], + "libelle_d_acheminement": "AIGREFEUILLE SUR MAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41556455507, + 47.0719256611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3f569da6f7490b4632e3b78f21a02e347893327", + "fields": { + "ligne_5": "ST GEREON", + "code_commune_insee": "44003", + "libelle_d_acheminement": "ANCENIS ST GEREON", + "code_postal": "44150", + "nom_de_la_commune": "ANCENIS ST GEREON", + "coordonnees_gps": [ + 47.3833270209, + -1.18241880879 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18241880879, + 47.3833270209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "776749c4ba0724825f5f9a623a1feab415b6d89b", + "fields": { + "ligne_5": "ARTHON EN RETZ", + "code_commune_insee": "44005", + "libelle_d_acheminement": "CHAUMES EN RETZ", + "code_postal": "44320", + "nom_de_la_commune": "CHAUMES EN RETZ", + "coordonnees_gps": [ + 47.1592162214, + -1.95412512421 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95412512421, + 47.1592162214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "322602ac6eded074da6eafedd672acf454901dbb", + "fields": { + "ligne_5": "PONT D ARMES", + "code_commune_insee": "44006", + "libelle_d_acheminement": "ASSERAC", + "code_postal": "44410", + "nom_de_la_commune": "ASSERAC", + "coordonnees_gps": [ + 47.4379772072, + -2.41272577216 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41272577216, + 47.4379772072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "538db9d50b05df44d633afe934e41d393fa6839f", + "fields": { + "code_commune_insee": "44009", + "nom_de_la_commune": "BASSE GOULAINE", + "code_postal": "44115", + "coordonnees_gps": [ + 47.2120137336, + -1.46246852595 + ], + "libelle_d_acheminement": "BASSE GOULAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46246852595, + 47.2120137336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11c40457af233255abbd5f81d69ba91a4be55825", + "fields": { + "code_commune_insee": "44012", + "nom_de_la_commune": "LA BERNERIE EN RETZ", + "code_postal": "44760", + "coordonnees_gps": [ + 47.0856704602, + -2.03170205961 + ], + "libelle_d_acheminement": "LA BERNERIE EN RETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.03170205961, + 47.0856704602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "694450e48faf9e968d2fcff3987d0bf46b7cc8fd", + "fields": { + "ligne_5": "ST OMER DE BLAIN", + "code_commune_insee": "44015", + "libelle_d_acheminement": "BLAIN", + "code_postal": "44130", + "nom_de_la_commune": "BLAIN", + "coordonnees_gps": [ + 47.4628210409, + -1.76789479614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76789479614, + 47.4628210409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d562697b4c7e440351a13038141b7040ad9b8ca3", + "fields": { + "ligne_5": "LES COUETS", + "code_commune_insee": "44020", + "libelle_d_acheminement": "BOUGUENAIS", + "code_postal": "44340", + "nom_de_la_commune": "BOUGUENAIS", + "coordonnees_gps": [ + 47.1709061678, + -1.61739752858 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61739752858, + 47.1709061678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b2d46b024fe757d7581ed602236837fc238afc7", + "fields": { + "code_commune_insee": "44022", + "nom_de_la_commune": "BOUSSAY", + "code_postal": "44190", + "coordonnees_gps": [ + 47.053455839, + -1.16316059855 + ], + "libelle_d_acheminement": "BOUSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16316059855, + 47.053455839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d6e9c12296a3a2a77dbd15cd68858958ae4d6aa", + "fields": { + "code_commune_insee": "44023", + "nom_de_la_commune": "BOUVRON", + "code_postal": "44130", + "coordonnees_gps": [ + 47.4171698448, + -1.87739194688 + ], + "libelle_d_acheminement": "BOUVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87739194688, + 47.4171698448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dc5b34bfbd018a7d1e662d70500ce446bab54b2", + "fields": { + "ligne_5": "BARBECHAT", + "code_commune_insee": "44029", + "libelle_d_acheminement": "DIVATTE SUR LOIRE", + "code_postal": "44450", + "nom_de_la_commune": "DIVATTE SUR LOIRE", + "coordonnees_gps": [ + 47.2808739279, + -1.34947633422 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34947633422, + 47.2808739279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51632c35de0a3461e831f2726df82ed18df340df", + "fields": { + "code_commune_insee": "44032", + "nom_de_la_commune": "LA CHAPELLE HEULIN", + "code_postal": "44330", + "coordonnees_gps": [ + 47.1722913827, + -1.34993806222 + ], + "libelle_d_acheminement": "LA CHAPELLE HEULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34993806222, + 47.1722913827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ffd107c45acf77ada5e27fad5d880f926a84562", + "fields": { + "code_commune_insee": "44036", + "nom_de_la_commune": "CHATEAUBRIANT", + "code_postal": "44110", + "coordonnees_gps": [ + 47.7221583524, + -1.38664809937 + ], + "libelle_d_acheminement": "CHATEAUBRIANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38664809937, + 47.7221583524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6790934214e031652790f93bd9e88560e37c8622", + "fields": { + "code_commune_insee": "44041", + "nom_de_la_commune": "LA CHEVROLIERE", + "code_postal": "44118", + "coordonnees_gps": [ + 47.0891104813, + -1.596195347 + ], + "libelle_d_acheminement": "LA CHEVROLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.596195347, + 47.0891104813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03d488e45b1f04a8c7440bb8b7394145bf4298cb", + "fields": { + "ligne_5": "PASSAY", + "code_commune_insee": "44041", + "libelle_d_acheminement": "LA CHEVROLIERE", + "code_postal": "44118", + "nom_de_la_commune": "LA CHEVROLIERE", + "coordonnees_gps": [ + 47.0891104813, + -1.596195347 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.596195347, + 47.0891104813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "146336a4ac50e03da7091e2b3309a610c50c8d92", + "fields": { + "code_commune_insee": "44050", + "nom_de_la_commune": "CROSSAC", + "code_postal": "44160", + "coordonnees_gps": [ + 47.4044611195, + -2.15336667516 + ], + "libelle_d_acheminement": "CROSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15336667516, + 47.4044611195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e58ceb3c0eea618ab058e73d75b9c4dd3a5eb2d", + "fields": { + "code_commune_insee": "44058", + "nom_de_la_commune": "FERCE", + "code_postal": "44660", + "coordonnees_gps": [ + 47.8000443229, + -1.38761214981 + ], + "libelle_d_acheminement": "FERCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38761214981, + 47.8000443229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86593e1da81b303b5ac7db5b90ceccdcee2f1a20", + "fields": { + "code_commune_insee": "44061", + "nom_de_la_commune": "FROSSAY", + "code_postal": "44320", + "coordonnees_gps": [ + 47.2455073631, + -1.93405826107 + ], + "libelle_d_acheminement": "FROSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93405826107, + 47.2455073631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03f1c7eaf745287f0533bf5ba64aa93ca33a5f93", + "fields": { + "code_commune_insee": "44062", + "nom_de_la_commune": "LE GAVRE", + "code_postal": "44130", + "coordonnees_gps": [ + 47.5279203716, + -1.79412055817 + ], + "libelle_d_acheminement": "LE GAVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79412055817, + 47.5279203716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98432c6f6ba20ac78f75fa662ee0840c7638b97a", + "fields": { + "code_commune_insee": "44069", + "nom_de_la_commune": "GUERANDE", + "code_postal": "44350", + "coordonnees_gps": [ + 47.3313320913, + -2.41703658813 + ], + "libelle_d_acheminement": "GUERANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41703658813, + 47.3313320913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90e16fce65d22c64d3b0e580262dabf9ae0515eb", + "fields": { + "ligne_5": "SAILLE", + "code_commune_insee": "44069", + "libelle_d_acheminement": "GUERANDE", + "code_postal": "44350", + "nom_de_la_commune": "GUERANDE", + "coordonnees_gps": [ + 47.3313320913, + -2.41703658813 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41703658813, + 47.3313320913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd25d7a275779ff1e52d170308dc8fe29d8ec781", + "fields": { + "code_commune_insee": "44071", + "nom_de_la_commune": "HAUTE GOULAINE", + "code_postal": "44115", + "coordonnees_gps": [ + 47.1960138107, + -1.41049118184 + ], + "libelle_d_acheminement": "HAUTE GOULAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41049118184, + 47.1960138107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbe730d7504c8bc05c4bef6807cd75b30bfcb973", + "fields": { + "code_commune_insee": "68341", + "nom_de_la_commune": "UFFHEIM", + "code_postal": "68510", + "coordonnees_gps": [ + 47.6442489721, + 7.43802014569 + ], + "libelle_d_acheminement": "UFFHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43802014569, + 47.6442489721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "913eb226f1a80576477d044cd8aa2fa588ebed0e", + "fields": { + "code_commune_insee": "68343", + "nom_de_la_commune": "UNGERSHEIM", + "code_postal": "68190", + "coordonnees_gps": [ + 47.8739838916, + 7.30532668717 + ], + "libelle_d_acheminement": "UNGERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30532668717, + 47.8739838916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28cafcc189d6d5a1b305b3331800324451f5db49", + "fields": { + "code_commune_insee": "68347", + "nom_de_la_commune": "VIEUX FERRETTE", + "code_postal": "68480", + "coordonnees_gps": [ + 47.5090177967, + 7.30400844003 + ], + "libelle_d_acheminement": "VIEUX FERRETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30400844003, + 47.5090177967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "462439ae1ed24bc5da05ce5d3322d2e60629121b", + "fields": { + "code_commune_insee": "68354", + "nom_de_la_commune": "WALBACH", + "code_postal": "68230", + "coordonnees_gps": [ + 48.0704719047, + 7.20730643508 + ], + "libelle_d_acheminement": "WALBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20730643508, + 48.0704719047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6441bd0b625c5d995816fe78a97bd7a6c39b06c2", + "fields": { + "code_commune_insee": "68359", + "nom_de_la_commune": "WATTWILLER", + "code_postal": "68700", + "coordonnees_gps": [ + 47.8421539165, + 7.17527188812 + ], + "libelle_d_acheminement": "WATTWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17527188812, + 47.8421539165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "735b0e30e00bfee2fe6c0f793e497f1f6abd35f6", + "fields": { + "code_commune_insee": "68363", + "nom_de_la_commune": "WERENTZHOUSE", + "code_postal": "68480", + "coordonnees_gps": [ + 47.5212216996, + 7.36266032447 + ], + "libelle_d_acheminement": "WERENTZHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36266032447, + 47.5212216996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15379b536001bd9888420db329be233b21f163d6", + "fields": { + "code_commune_insee": "68367", + "nom_de_la_commune": "WIDENSOLEN", + "code_postal": "68320", + "coordonnees_gps": [ + 48.0579869802, + 7.48257799635 + ], + "libelle_d_acheminement": "WIDENSOLEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48257799635, + 48.0579869802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c3a1634954aa8fcb20cdac707f2ede30eecfd98", + "fields": { + "code_commune_insee": "68368", + "nom_de_la_commune": "WIHR AU VAL", + "code_postal": "68230", + "coordonnees_gps": [ + 48.0553731067, + 7.19720465805 + ], + "libelle_d_acheminement": "WIHR AU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19720465805, + 48.0553731067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecb87c0aff4ac6a4113207e585bf09f9e3107ae1", + "fields": { + "ligne_5": "LOGELBACH", + "code_commune_insee": "68374", + "libelle_d_acheminement": "WINTZENHEIM", + "code_postal": "68124", + "nom_de_la_commune": "WINTZENHEIM", + "coordonnees_gps": [ + 48.0635575339, + 7.27168140769 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27168140769, + 48.0635575339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba0e16ac3439cb00b8ddc68fc5248dd99b87eca6", + "fields": { + "code_commune_insee": "68375", + "nom_de_la_commune": "WITTELSHEIM", + "code_postal": "68310", + "coordonnees_gps": [ + 47.7987366521, + 7.24011099826 + ], + "libelle_d_acheminement": "WITTELSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24011099826, + 47.7987366521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbee0ed828ee96db9d32ba337ec4907396c3859d", + "fields": { + "code_commune_insee": "68380", + "nom_de_la_commune": "WOLSCHWILLER", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4562913245, + 7.40696039971 + ], + "libelle_d_acheminement": "WOLSCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40696039971, + 47.4562913245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f171ad0651f651ea657d7964d310773809766a00", + "fields": { + "code_commune_insee": "68383", + "nom_de_la_commune": "ZELLENBERG", + "code_postal": "68340", + "coordonnees_gps": [ + 48.1735139596, + 7.34011573543 + ], + "libelle_d_acheminement": "ZELLENBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34011573543, + 48.1735139596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36c7a3a252633c74f8a20fe308bd6ea32cc51e8b", + "fields": { + "code_commune_insee": "68384", + "nom_de_la_commune": "ZILLISHEIM", + "code_postal": "68720", + "coordonnees_gps": [ + 47.6858083083, + 7.30319308149 + ], + "libelle_d_acheminement": "ZILLISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30319308149, + 47.6858083083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a20028f4e04a42aa126215739c665cdb007b4a1e", + "fields": { + "code_commune_insee": "68385", + "nom_de_la_commune": "ZIMMERBACH", + "code_postal": "68230", + "coordonnees_gps": [ + 48.0745599556, + 7.23005041952 + ], + "libelle_d_acheminement": "ZIMMERBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23005041952, + 48.0745599556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86595f78dd8c400b00ede194fdfcca47f769334e", + "fields": { + "code_commune_insee": "68386", + "nom_de_la_commune": "ZIMMERSHEIM", + "code_postal": "68440", + "coordonnees_gps": [ + 47.7187838073, + 7.38181973945 + ], + "libelle_d_acheminement": "ZIMMERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38181973945, + 47.7187838073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39c785c0243b1425778ec2694f66315fadde82ae", + "fields": { + "code_commune_insee": "69002", + "nom_de_la_commune": "AIGUEPERSE", + "code_postal": "69790", + "coordonnees_gps": [ + 46.2801268832, + 4.42330722719 + ], + "libelle_d_acheminement": "AIGUEPERSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42330722719, + 46.2801268832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a7e9496f45c6d28bb2fe5b8893f21fb374ae90c", + "fields": { + "code_commune_insee": "69008", + "nom_de_la_commune": "ANCY", + "code_postal": "69490", + "coordonnees_gps": [ + 45.8321615079, + 4.50376874726 + ], + "libelle_d_acheminement": "ANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50376874726, + 45.8321615079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f25750309f7cd9fa8589f77d227d48a1b8c4f413", + "fields": { + "ligne_5": "ST JEAN D ARDIERES", + "code_commune_insee": "69019", + "libelle_d_acheminement": "BELLEVILLE EN BEAUJOLAIS", + "code_postal": "69220", + "nom_de_la_commune": "BELLEVILLE EN BEAUJOLAIS", + "coordonnees_gps": [ + 46.1021561474, + 4.73105689691 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73105689691, + 46.1021561474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb314dbe3500ac13bc1b550edfdb3728e20aca9d", + "fields": { + "code_commune_insee": "69020", + "nom_de_la_commune": "BELMONT D AZERGUES", + "code_postal": "69380", + "coordonnees_gps": [ + 45.8674607353, + 4.66814290336 + ], + "libelle_d_acheminement": "BELMONT D AZERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66814290336, + 45.8674607353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5115a52e5aeebfd7facc38dd1107e2f6adbf2649", + "fields": { + "code_commune_insee": "69021", + "nom_de_la_commune": "BESSENAY", + "code_postal": "69690", + "coordonnees_gps": [ + 45.774361074, + 4.54738228306 + ], + "libelle_d_acheminement": "BESSENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54738228306, + 45.774361074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5db899e89dc6ea2f51bc620bdfe5b9c0f58c1691", + "fields": { + "ligne_5": "LA CALONNIERE", + "code_commune_insee": "69022", + "libelle_d_acheminement": "BIBOST", + "code_postal": "69690", + "nom_de_la_commune": "BIBOST", + "coordonnees_gps": [ + 45.7969461911, + 4.54895137965 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54895137965, + 45.7969461911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc065ad2a6f53187e9348817c09a7d873619553a", + "fields": { + "ligne_5": "OINGT", + "code_commune_insee": "69024", + "libelle_d_acheminement": "VAL D OINGT", + "code_postal": "69620", + "nom_de_la_commune": "VAL D OINGT", + "coordonnees_gps": [ + 45.9188737019, + 4.5787353944 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5787353944, + 45.9188737019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f4736cc26a90995729f2de689bdedaf11fca5f5", + "fields": { + "code_commune_insee": "69027", + "nom_de_la_commune": "BRIGNAIS", + "code_postal": "69530", + "coordonnees_gps": [ + 45.678117475, + 4.75268787981 + ], + "libelle_d_acheminement": "BRIGNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75268787981, + 45.678117475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be0be3d56d05e2da0c55e1f5e05c763571dcb932", + "fields": { + "ligne_5": "SEPT CHEMINS", + "code_commune_insee": "69027", + "libelle_d_acheminement": "BRIGNAIS", + "code_postal": "69530", + "nom_de_la_commune": "BRIGNAIS", + "coordonnees_gps": [ + 45.678117475, + 4.75268787981 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75268787981, + 45.678117475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efbbb7e4aaf1cd02d866171db0b087fc225db55b", + "fields": { + "code_commune_insee": "69029", + "nom_de_la_commune": "BRON", + "code_postal": "69500", + "coordonnees_gps": [ + 45.7344856902, + 4.91168159471 + ], + "libelle_d_acheminement": "BRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91168159471, + 45.7344856902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdd82cb86dbb36f32d88a91e852670e76e747cd6", + "fields": { + "code_commune_insee": "69046", + "nom_de_la_commune": "CHARLY", + "code_postal": "69390", + "coordonnees_gps": [ + 45.6508030162, + 4.78979572338 + ], + "libelle_d_acheminement": "CHARLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78979572338, + 45.6508030162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d46e27e671294251cd58335de00d41c256a50a73", + "fields": { + "code_commune_insee": "69047", + "nom_de_la_commune": "CHARNAY", + "code_postal": "69380", + "coordonnees_gps": [ + 45.891187551, + 4.66063186811 + ], + "libelle_d_acheminement": "CHARNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66063186811, + 45.891187551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03823e2fd2cb68786d65be014c891ef8d83d2340", + "fields": { + "code_commune_insee": "69055", + "nom_de_la_commune": "LES CHERES", + "code_postal": "69380", + "coordonnees_gps": [ + 45.893124529, + 4.74321692649 + ], + "libelle_d_acheminement": "LES CHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74321692649, + 45.893124529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1874fa71869bc9ad5f81ada1be41676266331a2b", + "fields": { + "code_commune_insee": "69061", + "nom_de_la_commune": "COGNY", + "code_postal": "69640", + "coordonnees_gps": [ + 45.987704614, + 4.61029755022 + ], + "libelle_d_acheminement": "COGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61029755022, + 45.987704614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "169c8731aa01ed5eaea3dc35b7aeffce7a93d0da", + "fields": { + "code_commune_insee": "69062", + "nom_de_la_commune": "COISE", + "code_postal": "69590", + "coordonnees_gps": [ + 45.6138333188, + 4.46902321077 + ], + "libelle_d_acheminement": "COISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46902321077, + 45.6138333188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "942fd9aa21eff1f8e19f4b9827c8d103e18bddee", + "fields": { + "code_commune_insee": "69064", + "nom_de_la_commune": "CONDRIEU", + "code_postal": "69420", + "coordonnees_gps": [ + 45.4743083818, + 4.75671075164 + ], + "libelle_d_acheminement": "CONDRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75671075164, + 45.4743083818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c38aa0650262640903d55202314ce44bd658a46", + "fields": { + "ligne_5": "LA VILLE", + "code_commune_insee": "69066", + "libelle_d_acheminement": "COURS", + "code_postal": "69470", + "nom_de_la_commune": "COURS", + "coordonnees_gps": [ + 46.1087135793, + 4.33699431774 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33699431774, + 46.1087135793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57bfb0a62734c028121835953c0e2f7ee97b2799", + "fields": { + "code_commune_insee": "69067", + "nom_de_la_commune": "COURZIEU", + "code_postal": "69690", + "coordonnees_gps": [ + 45.7410710306, + 4.5702660914 + ], + "libelle_d_acheminement": "COURZIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5702660914, + 45.7410710306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6a6f8057fa1e048c7f44f0b6263d8f4147c5110", + "fields": { + "code_commune_insee": "69070", + "nom_de_la_commune": "CUBLIZE", + "code_postal": "69550", + "coordonnees_gps": [ + 46.0245451147, + 4.3873320653 + ], + "libelle_d_acheminement": "CUBLIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3873320653, + 46.0245451147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b2b60a0c23264d0b89831140f830635ec5cb87b", + "fields": { + "code_commune_insee": "69088", + "nom_de_la_commune": "FONTAINES SUR SAONE", + "code_postal": "69270", + "coordonnees_gps": [ + 45.8282811054, + 4.85664595594 + ], + "libelle_d_acheminement": "FONTAINES SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85664595594, + 45.8282811054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "316dceb727792a0fa7d8fedeb33ae7a51f8398c5", + "fields": { + "code_commune_insee": "69089", + "nom_de_la_commune": "FRANCHEVILLE", + "code_postal": "69340", + "coordonnees_gps": [ + 45.7378794318, + 4.75508314041 + ], + "libelle_d_acheminement": "FRANCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75508314041, + 45.7378794318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3ede232b9ba7359147d720ee055d57a1efe237b", + "fields": { + "code_commune_insee": "69091", + "nom_de_la_commune": "GIVORS", + "code_postal": "69700", + "coordonnees_gps": [ + 45.5816626973, + 4.7572616296 + ], + "libelle_d_acheminement": "GIVORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7572616296, + 45.5816626973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dcac16c61da28d85f5c1b1197a2719d5e4ae136", + "fields": { + "code_commune_insee": "69095", + "nom_de_la_commune": "GREZIEU LE MARCHE", + "code_postal": "69610", + "coordonnees_gps": [ + 45.6625017112, + 4.42125665222 + ], + "libelle_d_acheminement": "GREZIEU LE MARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42125665222, + 45.6625017112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0112355a2d7ad83934f2716357287fc893d283d", + "fields": { + "code_commune_insee": "69113", + "nom_de_la_commune": "LETRA", + "code_postal": "69620", + "coordonnees_gps": [ + 45.9718911586, + 4.52615651956 + ], + "libelle_d_acheminement": "LETRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52615651956, + 45.9718911586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35b0592331876de94a7672239cab59de26798a17", + "fields": { + "code_commune_insee": "69126", + "nom_de_la_commune": "MARCY", + "code_postal": "69480", + "coordonnees_gps": [ + 45.9139105552, + 4.67605163558 + ], + "libelle_d_acheminement": "MARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67605163558, + 45.9139105552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "994bc1b215ccc87c59dd6dd751cdcac24a922cd0", + "fields": { + "code_commune_insee": "69133", + "nom_de_la_commune": "MILLERY", + "code_postal": "69390", + "coordonnees_gps": [ + 45.6304862126, + 4.77973349891 + ], + "libelle_d_acheminement": "MILLERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77973349891, + 45.6304862126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0933909f544e4267220d3435971bbd2df0b75a1f", + "fields": { + "code_commune_insee": "69134", + "nom_de_la_commune": "MOIRE", + "code_postal": "69620", + "coordonnees_gps": [ + 45.9262357159, + 4.60176770404 + ], + "libelle_d_acheminement": "MOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60176770404, + 45.9262357159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bf7b723b880883463fdfc4ae939dfaec211c2e6", + "fields": { + "ligne_5": "TRADES", + "code_commune_insee": "69135", + "libelle_d_acheminement": "DEUX GROSNES", + "code_postal": "69860", + "nom_de_la_commune": "DEUX GROSNES", + "coordonnees_gps": [ + 46.2227835629, + 4.51394181008 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51394181008, + 46.2227835629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bf5d3b1a69ffab0023c92e14a9cb8d69d4c21ed", + "fields": { + "code_commune_insee": "69137", + "nom_de_la_commune": "MONTMELAS ST SORLIN", + "code_postal": "69640", + "coordonnees_gps": [ + 46.0177480558, + 4.60181116926 + ], + "libelle_d_acheminement": "MONTMELAS ST SORLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60181116926, + 46.0177480558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "332549e7685db74751cfe564bd962ada0909aeff", + "fields": { + "code_commune_insee": "69139", + "nom_de_la_commune": "MONTROTTIER", + "code_postal": "69770", + "coordonnees_gps": [ + 45.8005219603, + 4.46362962057 + ], + "libelle_d_acheminement": "MONTROTTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46362962057, + 45.8005219603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b699198514f348f3b6d7aeb7c225da5a6e45a09e", + "fields": { + "ligne_5": "ST PIERRE", + "code_commune_insee": "69140", + "libelle_d_acheminement": "MORANCE", + "code_postal": "69480", + "nom_de_la_commune": "MORANCE", + "coordonnees_gps": [ + 45.8941529725, + 4.69976319866 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69976319866, + 45.8941529725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a0e7b78fba3051489e640b9168af38d1f5c8179", + "fields": { + "ligne_5": "LE ROSSEON", + "code_commune_insee": "69141", + "libelle_d_acheminement": "MORNANT", + "code_postal": "69440", + "nom_de_la_commune": "MORNANT", + "coordonnees_gps": [ + 45.6159773607, + 4.67379130422 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67379130422, + 45.6159773607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14a1f089117fb6d7943ede520b227b15c038764e", + "fields": { + "code_commune_insee": "69143", + "nom_de_la_commune": "NEUVILLE SUR SAONE", + "code_postal": "69250", + "coordonnees_gps": [ + 45.8829276204, + 4.84373616973 + ], + "libelle_d_acheminement": "NEUVILLE SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84373616973, + 45.8829276204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6dffa4d19f8af25c5c7ec73427811dd0ba00739", + "fields": { + "code_commune_insee": "69145", + "nom_de_la_commune": "ODENAS", + "code_postal": "69460", + "coordonnees_gps": [ + 46.0937833535, + 4.64506094432 + ], + "libelle_d_acheminement": "ODENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64506094432, + 46.0937833535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8195b517cb9c035a84be90b91f28cbe12b0ad65a", + "fields": { + "code_commune_insee": "69149", + "nom_de_la_commune": "OULLINS", + "code_postal": "69600", + "coordonnees_gps": [ + 45.7149665543, + 4.80299453846 + ], + "libelle_d_acheminement": "OULLINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80299453846, + 45.7149665543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0367e5c2fe9991db5e4da52de4224d5592ec56de", + "fields": { + "code_commune_insee": "69151", + "nom_de_la_commune": "LE PERREON", + "code_postal": "69460", + "coordonnees_gps": [ + 46.0696133822, + 4.58011470441 + ], + "libelle_d_acheminement": "LE PERREON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58011470441, + 46.0696133822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7605736a09d0f26aaa4cb77cac3f2020eb3e8030", + "fields": { + "ligne_5": "ST LOUP", + "code_commune_insee": "69157", + "libelle_d_acheminement": "VINDRY SUR TURDINE", + "code_postal": "69490", + "nom_de_la_commune": "VINDRY SUR TURDINE", + "coordonnees_gps": [ + 45.8770735618, + 4.49571511005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49571511005, + 45.8770735618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04c5e9e9aa0da237800a99b14f921915c1ba644f", + "fields": { + "ligne_5": "LA COMBE", + "code_commune_insee": "69159", + "libelle_d_acheminement": "PORTE DES PIERRES DOREES", + "code_postal": "69400", + "nom_de_la_commune": "PORTE DES PIERRES DOREES", + "coordonnees_gps": [ + 45.9554021029, + 4.64557594844 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64557594844, + 45.9554021029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3bd2c24dcf0202f3cebfdff04856b09b7e52940", + "fields": { + "code_commune_insee": "69160", + "nom_de_la_commune": "POULE LES ECHARMEAUX", + "code_postal": "69870", + "coordonnees_gps": [ + 46.1426190331, + 4.46070930029 + ], + "libelle_d_acheminement": "POULE LES ECHARMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46070930029, + 46.1426190331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14f3232e76b3a0f7b64f55ad59905d52344dc083", + "fields": { + "code_commune_insee": "69162", + "nom_de_la_commune": "QUINCIE EN BEAUJOLAIS", + "code_postal": "69430", + "coordonnees_gps": [ + 46.1132737898, + 4.60801374116 + ], + "libelle_d_acheminement": "QUINCIE EN BEAUJOLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60801374116, + 46.1132737898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b738b06a1b511860ca197f405aa1cc069d9e052a", + "fields": { + "code_commune_insee": "69171", + "nom_de_la_commune": "SAIN BEL", + "code_postal": "69210", + "coordonnees_gps": [ + 45.8121205501, + 4.59925971252 + ], + "libelle_d_acheminement": "SAIN BEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59925971252, + 45.8121205501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "378aaa83b2671de9e8192e918f35f817cd54e30e", + "fields": { + "code_commune_insee": "69173", + "nom_de_la_commune": "SARCEY", + "code_postal": "69490", + "coordonnees_gps": [ + 45.88508474, + 4.55500376864 + ], + "libelle_d_acheminement": "SARCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55500376864, + 45.88508474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad3afbe7d14d5222e73eb7746ea875ba2197a0a7", + "fields": { + "ligne_5": "CHASSAGNY", + "code_commune_insee": "69179", + "libelle_d_acheminement": "BEAUVALLON", + "code_postal": "69700", + "nom_de_la_commune": "BEAUVALLON", + "coordonnees_gps": [ + 45.5895638016, + 4.69551467475 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69551467475, + 45.5895638016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0cc56cba3f480af5110ed8462cb4f5ccda3e61e", + "fields": { + "code_commune_insee": "69183", + "nom_de_la_commune": "ST BONNET LE TRONCY", + "code_postal": "69870", + "coordonnees_gps": [ + 46.0764312104, + 4.41977426167 + ], + "libelle_d_acheminement": "ST BONNET LE TRONCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41977426167, + 46.0764312104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0d7ce7022762100ccffffb7f6f58a644eb46ad4", + "fields": { + "ligne_5": "BARROT", + "code_commune_insee": "69184", + "libelle_d_acheminement": "STE CATHERINE", + "code_postal": "69440", + "nom_de_la_commune": "STE CATHERINE", + "coordonnees_gps": [ + 45.6030568648, + 4.57279453276 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57279453276, + 45.6030568648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b23ea49997cb427b33aea1420e1d9b8b60702f6", + "fields": { + "code_commune_insee": "69187", + "nom_de_la_commune": "ST CLEMENT LES PLACES", + "code_postal": "69930", + "coordonnees_gps": [ + 45.756189691, + 4.42060424905 + ], + "libelle_d_acheminement": "ST CLEMENT LES PLACES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42060424905, + 45.756189691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bab01434d8ee7c6679a0296438cf16e2105b8ef", + "fields": { + "code_commune_insee": "69188", + "nom_de_la_commune": "ST CLEMENT SUR VALSONNE", + "code_postal": "69170", + "coordonnees_gps": [ + 45.9245957818, + 4.45989401825 + ], + "libelle_d_acheminement": "ST CLEMENT SUR VALSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45989401825, + 45.9245957818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5195430d7b2dcaf81457dd88d40320a3c9791c70", + "fields": { + "code_commune_insee": "69189", + "nom_de_la_commune": "STE COLOMBE", + "code_postal": "69560", + "coordonnees_gps": [ + 45.5250030617, + 4.85931457938 + ], + "libelle_d_acheminement": "STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85931457938, + 45.5250030617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49d1d635d1f119c06a981460de64a415ef8b6597", + "fields": { + "code_commune_insee": "69192", + "nom_de_la_commune": "ST CYR LE CHATOUX", + "code_postal": "69870", + "coordonnees_gps": [ + 46.0314296952, + 4.53865267532 + ], + "libelle_d_acheminement": "ST CYR LE CHATOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53865267532, + 46.0314296952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91dd12f63dedf9e1c8ede0565300b5e059a39ad8", + "fields": { + "code_commune_insee": "69197", + "nom_de_la_commune": "ST ETIENNE DES OULLIERES", + "code_postal": "69460", + "coordonnees_gps": [ + 46.0632060552, + 4.65601926022 + ], + "libelle_d_acheminement": "ST ETIENNE DES OULLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65601926022, + 46.0632060552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7862c5dedfc44daa1e7c28e66db3e00abf6b6c5d", + "fields": { + "code_commune_insee": "69207", + "nom_de_la_commune": "ST GERMAIN AU MONT D OR", + "code_postal": "69650", + "coordonnees_gps": [ + 45.8822105872, + 4.80144071839 + ], + "libelle_d_acheminement": "ST GERMAIN AU MONT D OR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80144071839, + 45.8822105872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68fe8c6e79bc687ade7bad791d7c41d01e10dc92", + "fields": { + "ligne_5": "NUELLES", + "code_commune_insee": "69208", + "libelle_d_acheminement": "ST GERMAIN NUELLES", + "code_postal": "69210", + "nom_de_la_commune": "ST GERMAIN NUELLES", + "coordonnees_gps": [ + 45.8643153659, + 4.6129807389 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6129807389, + 45.8643153659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c4c953e7aff6e6a8539df26dcd6ce6ea3630cb5", + "fields": { + "code_commune_insee": "69225", + "nom_de_la_commune": "ST MARCEL L ECLAIRE", + "code_postal": "69170", + "coordonnees_gps": [ + 45.8745331983, + 4.42248122756 + ], + "libelle_d_acheminement": "ST MARCEL L ECLAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42248122756, + 45.8745331983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bbd96950896da9d32fdb988e9bc56d828a9f84e", + "fields": { + "ligne_5": "ST MAURICE SUR DARGOIRE", + "code_commune_insee": "69228", + "libelle_d_acheminement": "CHABANIERE", + "code_postal": "69440", + "nom_de_la_commune": "CHABANIERE", + "coordonnees_gps": [ + 45.5781277955, + 4.64115905425 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64115905425, + 45.5781277955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f0caa906c1d967c345204523c182aaab4fb7d22", + "fields": { + "ligne_5": "ST SORLIN", + "code_commune_insee": "69228", + "libelle_d_acheminement": "CHABANIERE", + "code_postal": "69440", + "nom_de_la_commune": "CHABANIERE", + "coordonnees_gps": [ + 45.5781277955, + 4.64115905425 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64115905425, + 45.5781277955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c35ababeee86770e7bc39b6ebfa849a6cf0a5e7", + "fields": { + "code_commune_insee": "69229", + "nom_de_la_commune": "ST NIZIER D AZERGUES", + "code_postal": "69870", + "coordonnees_gps": [ + 46.0832387842, + 4.4623284164 + ], + "libelle_d_acheminement": "ST NIZIER D AZERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4623284164, + 46.0832387842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb92680079d7b7936836cf3b2f0c09dbfb70b989", + "fields": { + "code_commune_insee": "69231", + "nom_de_la_commune": "ST PIERRE LA PALUD", + "code_postal": "69210", + "coordonnees_gps": [ + 45.7818245427, + 4.61622468853 + ], + "libelle_d_acheminement": "ST PIERRE LA PALUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61622468853, + 45.7818245427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3562e3462d7e98fa56384d123e605a2ff0a04844", + "fields": { + "code_commune_insee": "69235", + "nom_de_la_commune": "ST ROMAIN EN GAL", + "code_postal": "69560", + "coordonnees_gps": [ + 45.5357749158, + 4.8261922699 + ], + "libelle_d_acheminement": "ST ROMAIN EN GAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8261922699, + 45.5357749158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58566a232e30a35a4658b9e5a33dcbd6da61d66f", + "fields": { + "code_commune_insee": "69239", + "nom_de_la_commune": "ST VERAND", + "code_postal": "69620", + "coordonnees_gps": [ + 45.9219304015, + 4.51963645902 + ], + "libelle_d_acheminement": "ST VERAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51963645902, + 45.9219304015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a38b918c39001d4d73df07d3320c925d060a1db", + "fields": { + "code_commune_insee": "69242", + "nom_de_la_commune": "TAPONAS", + "code_postal": "69220", + "coordonnees_gps": [ + 46.1258360429, + 4.76268144564 + ], + "libelle_d_acheminement": "TAPONAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76268144564, + 46.1258360429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0c782f6d76d03aa7e30a36dfb50ca97d01e5c90", + "fields": { + "code_commune_insee": "69248", + "nom_de_la_commune": "THIZY LES BOURGS", + "code_postal": "69240", + "coordonnees_gps": [ + 46.0302777714, + 4.31390305209 + ], + "libelle_d_acheminement": "THIZY LES BOURGS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31390305209, + 46.0302777714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2daf6cd37e553980839ea6e48b9817d47d2a70f", + "fields": { + "code_commune_insee": "69252", + "nom_de_la_commune": "TREVES", + "code_postal": "69420", + "coordonnees_gps": [ + 45.5348002841, + 4.68968539242 + ], + "libelle_d_acheminement": "TREVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68968539242, + 45.5348002841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eca3b22c9c234f3eef29de61194b5afa2dd1b7c8", + "fields": { + "code_commune_insee": "69253", + "nom_de_la_commune": "TUPIN ET SEMONS", + "code_postal": "69420", + "coordonnees_gps": [ + 45.4902621109, + 4.77454141311 + ], + "libelle_d_acheminement": "TUPIN ET SEMONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77454141311, + 45.4902621109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dd9fe58e18af4c530df3e0910d7e9d1ea9d44f9", + "fields": { + "code_commune_insee": "69254", + "nom_de_la_commune": "VALSONNE", + "code_postal": "69170", + "coordonnees_gps": [ + 45.946942199, + 4.42166698424 + ], + "libelle_d_acheminement": "VALSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42166698424, + 45.946942199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "106a547c1c3eba49b8c671e8ec3c4151d6183dc9", + "fields": { + "code_commune_insee": "69256", + "nom_de_la_commune": "VAULX EN VELIN", + "code_postal": "69120", + "coordonnees_gps": [ + 45.7858821061, + 4.92637767698 + ], + "libelle_d_acheminement": "VAULX EN VELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92637767698, + 45.7858821061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfca9995fd72e12206f461bc50a175dd5508103f", + "fields": { + "code_commune_insee": "69261", + "nom_de_la_commune": "VERNAY", + "code_postal": "69430", + "coordonnees_gps": [ + 46.1645022966, + 4.52661139979 + ], + "libelle_d_acheminement": "VERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52661139979, + 46.1645022966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d2d1e295cca6423f1cf60f5e5887fc216f629af", + "fields": { + "code_commune_insee": "69268", + "nom_de_la_commune": "VOURLES", + "code_postal": "69390", + "coordonnees_gps": [ + 45.6578547027, + 4.76815797121 + ], + "libelle_d_acheminement": "VOURLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76815797121, + 45.6578547027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02f1d52443a74ff92a418bd4e922136594dc4c05", + "fields": { + "code_commune_insee": "69272", + "nom_de_la_commune": "COMMUNAY", + "code_postal": "69360", + "coordonnees_gps": [ + 45.5981602115, + 4.83863440374 + ], + "libelle_d_acheminement": "COMMUNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83863440374, + 45.5981602115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e16f4d45d03e62af0a7a3380bb919d73c3298c0e", + "fields": { + "code_commune_insee": "69275", + "nom_de_la_commune": "DECINES CHARPIEU", + "code_postal": "69150", + "coordonnees_gps": [ + 45.7717277447, + 4.96142704635 + ], + "libelle_d_acheminement": "DECINES CHARPIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96142704635, + 45.7717277447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2af3322c326e32bd8a4d515d0b256fe8f2b6303", + "fields": { + "code_commune_insee": "69284", + "nom_de_la_commune": "MONTANAY", + "code_postal": "69250", + "coordonnees_gps": [ + 45.8771716527, + 4.86771013158 + ], + "libelle_d_acheminement": "MONTANAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86771013158, + 45.8771716527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a7e86679ec17fa2dccc6742c0cfbfa1fdf14c7b", + "fields": { + "code_commune_insee": "69285", + "nom_de_la_commune": "PUSIGNAN", + "code_postal": "69330", + "coordonnees_gps": [ + 45.7538862339, + 5.06707976453 + ], + "libelle_d_acheminement": "PUSIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06707976453, + 45.7538862339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3c0cbb64207e80b0882f4701394ca040ccaf4c7", + "fields": { + "code_commune_insee": "69296", + "nom_de_la_commune": "SOLAIZE", + "code_postal": "69360", + "coordonnees_gps": [ + 45.6460641774, + 4.83749103665 + ], + "libelle_d_acheminement": "SOLAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83749103665, + 45.6460641774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c455e496b3e6098c34f67c828768ed634543555c", + "fields": { + "code_commune_insee": "69297", + "nom_de_la_commune": "TERNAY", + "code_postal": "69360", + "coordonnees_gps": [ + 45.6055276798, + 4.80759320832 + ], + "libelle_d_acheminement": "TERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80759320832, + 45.6055276798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "635d30c5dabe8790df2be202e50a604212a438ae", + "fields": { + "code_commune_insee": "69386", + "nom_de_la_commune": "LYON 06", + "code_postal": "69006", + "coordonnees_gps": [ + 45.7728507239, + 4.85207911437 + ], + "libelle_d_acheminement": "LYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85207911437, + 45.7728507239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff51a68f09b7f41b40846adc739309fdaefa4b57", + "fields": { + "code_commune_insee": "70001", + "nom_de_la_commune": "ABELCOURT", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7934014233, + 6.27774541889 + ], + "libelle_d_acheminement": "ABELCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27774541889, + 47.7934014233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86cecac7a69a3ebebb4c60e4baffeb5505a44a7a", + "fields": { + "code_commune_insee": "70002", + "nom_de_la_commune": "ABONCOURT GESINCOURT", + "code_postal": "70500", + "coordonnees_gps": [ + 47.7683562569, + 5.97257332225 + ], + "libelle_d_acheminement": "ABONCOURT GESINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97257332225, + 47.7683562569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00090112aef4f522a201487eeaf8dfbfae9f3ec5", + "fields": { + "code_commune_insee": "70004", + "nom_de_la_commune": "ADELANS ET LE VAL DE BITHAINE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.7061573284, + 6.39427632304 + ], + "libelle_d_acheminement": "ADELANS ET LE VAL DE BITHAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39427632304, + 47.7061573284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bca269add1e4d809b53b3d1e8f1110d44d0da74", + "fields": { + "code_commune_insee": "70007", + "nom_de_la_commune": "AILLONCOURT", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7571786627, + 6.38881331969 + ], + "libelle_d_acheminement": "AILLONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38881331969, + 47.7571786627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3904d2e13faea4da0dd8c43a10ea4de1332c101b", + "fields": { + "code_commune_insee": "70008", + "nom_de_la_commune": "AINVELLE", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8479400704, + 6.24391333161 + ], + "libelle_d_acheminement": "AINVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24391333161, + 47.8479400704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b16000482eec34bbc96aba78d05750a3ba92f44", + "fields": { + "code_commune_insee": "70013", + "nom_de_la_commune": "AMBIEVILLERS", + "code_postal": "70210", + "coordonnees_gps": [ + 47.9958871896, + 6.14035780584 + ], + "libelle_d_acheminement": "AMBIEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14035780584, + 47.9958871896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d4b2dd1fcc341ed089365b710ff78f3f4995784", + "fields": { + "code_commune_insee": "70018", + "nom_de_la_commune": "ANCIER", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4440990959, + 5.63641501518 + ], + "libelle_d_acheminement": "ANCIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63641501518, + 47.4440990959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd55722275170e6f783f738ad05a3f521d72b0ac", + "fields": { + "code_commune_insee": "70022", + "nom_de_la_commune": "ANGIREY", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4548843773, + 5.77329895236 + ], + "libelle_d_acheminement": "ANGIREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77329895236, + 47.4548843773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02011ebb552c12af1988e30755e28719c722959c", + "fields": { + "code_commune_insee": "70028", + "nom_de_la_commune": "AROZ", + "code_postal": "70360", + "coordonnees_gps": [ + 47.6138842426, + 6.00554228377 + ], + "libelle_d_acheminement": "AROZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00554228377, + 47.6138842426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12ff9cc217818b18902d3047ed6bbb31d14e8b55", + "fields": { + "code_commune_insee": "70030", + "nom_de_la_commune": "ARSANS", + "code_postal": "70100", + "coordonnees_gps": [ + 47.3672852842, + 5.63154249443 + ], + "libelle_d_acheminement": "ARSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63154249443, + 47.3672852842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd28f8e6ade75876cdb50a66274f4ec9d8bacb4e", + "fields": { + "ligne_5": "ETROITEFONTAINE", + "code_commune_insee": "70031", + "libelle_d_acheminement": "ATHESANS ETROITEFONTAINE", + "code_postal": "70110", + "nom_de_la_commune": "ATHESANS ETROITEFONTAINE", + "coordonnees_gps": [ + 47.5942889134, + 6.51510882516 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51510882516, + 47.5942889134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "530bacdf771027f684ba20ec5402e9f648f05e79", + "fields": { + "code_commune_insee": "70050", + "nom_de_la_commune": "LA BARRE", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4076616681, + 6.17035977753 + ], + "libelle_d_acheminement": "LA BARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17035977753, + 47.4076616681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c92f27a3de5250191d3f509a9fce3ec94d1cdbc9", + "fields": { + "code_commune_insee": "70051", + "nom_de_la_commune": "LA BASSE VAIVRE", + "code_postal": "70210", + "coordonnees_gps": [ + 47.9478481115, + 6.05472696195 + ], + "libelle_d_acheminement": "LA BASSE VAIVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05472696195, + 47.9478481115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "281dec31650861da059ea859c6d0bbf8e9cf40d1", + "fields": { + "ligne_5": "QUITTEUR", + "code_commune_insee": "70058", + "libelle_d_acheminement": "BEAUJEU ET QUITTEUR", + "code_postal": "70100", + "nom_de_la_commune": "BEAUJEU ST VALLIER PIERREJUX QUITTEUR", + "coordonnees_gps": [ + 47.4986137613, + 5.69348817129 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69348817129, + 47.4986137613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0aaa741ec9eeee7dbe34735390a9ecfc25702be", + "fields": { + "code_commune_insee": "70059", + "nom_de_la_commune": "BEAUMOTTE AUBERTANS", + "code_postal": "70190", + "coordonnees_gps": [ + 47.433936502, + 6.16129269067 + ], + "libelle_d_acheminement": "BEAUMOTTE AUBERTANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16129269067, + 47.433936502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d804fba0631f7b4bcec875c16b8c35a9e0a1f8c3", + "fields": { + "code_commune_insee": "70063", + "nom_de_la_commune": "BELONCHAMP", + "code_postal": "70270", + "coordonnees_gps": [ + 47.7735452568, + 6.60867151106 + ], + "libelle_d_acheminement": "BELONCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60867151106, + 47.7735452568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "577954859a0d638ddcd21c398d55e16249c93515", + "fields": { + "code_commune_insee": "70070", + "nom_de_la_commune": "BETONCOURT SUR MANCE", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8378409607, + 5.75511684653 + ], + "libelle_d_acheminement": "BETONCOURT SUR MANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75511684653, + 47.8378409607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "409ff07d119380a0e5b7eb4ea9976a3a59e82713", + "fields": { + "code_commune_insee": "70082", + "nom_de_la_commune": "BOUHANS LES MONTBOZON", + "code_postal": "70230", + "coordonnees_gps": [ + 47.4858934785, + 6.28045727501 + ], + "libelle_d_acheminement": "BOUHANS LES MONTBOZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28045727501, + 47.4858934785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2ed51db17a321695ecb87ee51410102301c525f", + "fields": { + "code_commune_insee": "70100", + "nom_de_la_commune": "BROYE LES LOUPS ET VERFONTAINE", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4591753719, + 5.43034570007 + ], + "libelle_d_acheminement": "BROYE LES LOUPS ET VERFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43034570007, + 47.4591753719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b62c47219cad7eee9b9cd189d150620c0dc0d795", + "fields": { + "code_commune_insee": "70104", + "nom_de_la_commune": "BUCEY LES GY", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4054642999, + 5.86034681333 + ], + "libelle_d_acheminement": "BUCEY LES GY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86034681333, + 47.4054642999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cfbc5075fc0193eca6d9958d5098d8ae1715f7e", + "fields": { + "code_commune_insee": "70105", + "nom_de_la_commune": "BUCEY LES TRAVES", + "code_postal": "70360", + "coordonnees_gps": [ + 47.6291367702, + 5.98525127967 + ], + "libelle_d_acheminement": "BUCEY LES TRAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98525127967, + 47.6291367702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1206be2f8fdfdcf4fc736920949dc0bd68824b0", + "fields": { + "code_commune_insee": "70119", + "nom_de_la_commune": "CHAMBORNAY LES PIN", + "code_postal": "70150", + "coordonnees_gps": [ + 47.3392690795, + 5.91122430181 + ], + "libelle_d_acheminement": "CHAMBORNAY LES PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91122430181, + 47.3392690795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c40069e60888dd5c397f9f1c1528c0a022796174", + "fields": { + "code_commune_insee": "70122", + "nom_de_la_commune": "CHAMPLITTE", + "code_postal": "70600", + "coordonnees_gps": [ + 47.6322292317, + 5.51329036822 + ], + "libelle_d_acheminement": "CHAMPLITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51329036822, + 47.6322292317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b45718603873d686b05f04311afd8792ecb22fe5", + "fields": { + "ligne_5": "MARGILLEY", + "code_commune_insee": "70122", + "libelle_d_acheminement": "CHAMPLITTE", + "code_postal": "70600", + "nom_de_la_commune": "CHAMPLITTE", + "coordonnees_gps": [ + 47.6322292317, + 5.51329036822 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51329036822, + 47.6322292317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d478c75067307fe572fd5a9ed0c36ea9cd466444", + "fields": { + "code_commune_insee": "70127", + "nom_de_la_commune": "CHANTES", + "code_postal": "70360", + "coordonnees_gps": [ + 47.6237829598, + 5.92693390957 + ], + "libelle_d_acheminement": "CHANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92693390957, + 47.6237829598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dd8c89099de7f13e143bebc558bf841cb3e0cbd", + "fields": { + "code_commune_insee": "70153", + "nom_de_la_commune": "CINTREY", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7535156501, + 5.75205214351 + ], + "libelle_d_acheminement": "CINTREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75205214351, + 47.7535156501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27670ff4ab498c17cf021a74d4d37ccea166e912", + "fields": { + "code_commune_insee": "70157", + "nom_de_la_commune": "CLAIREGOUTTE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6628053162, + 6.63860014681 + ], + "libelle_d_acheminement": "CLAIREGOUTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63860014681, + 47.6628053162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7162cf11fe10be7442c2947e89d5511afa193db1", + "fields": { + "code_commune_insee": "70158", + "nom_de_la_commune": "CLANS", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5990510677, + 6.0303617469 + ], + "libelle_d_acheminement": "CLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0303617469, + 47.5990510677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "380a9e03a94ae64eee2aeb5d04ad69ab246253c0", + "fields": { + "code_commune_insee": "70159", + "nom_de_la_commune": "COGNIERES", + "code_postal": "70230", + "coordonnees_gps": [ + 47.4990115094, + 6.28635310536 + ], + "libelle_d_acheminement": "COGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28635310536, + 47.4990115094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59b94750edbf442db845c5b499b66904abfe820d", + "fields": { + "code_commune_insee": "70164", + "nom_de_la_commune": "COLOMBOTTE", + "code_postal": "70240", + "coordonnees_gps": [ + 47.66356733, + 6.28784995728 + ], + "libelle_d_acheminement": "COLOMBOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28784995728, + 47.66356733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e335d93503d14f4a8302cb8918a80dfbe117328", + "fields": { + "code_commune_insee": "70167", + "nom_de_la_commune": "CONFLANDEY", + "code_postal": "70170", + "coordonnees_gps": [ + 47.732302519, + 6.03515771131 + ], + "libelle_d_acheminement": "CONFLANDEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03515771131, + 47.732302519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c09ee1d88bf874827d2fefbd88b84a5f7208f1f", + "fields": { + "code_commune_insee": "70169", + "nom_de_la_commune": "CONFRACOURT", + "code_postal": "70120", + "coordonnees_gps": [ + 47.6738636873, + 5.88867029246 + ], + "libelle_d_acheminement": "CONFRACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88867029246, + 47.6738636873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ea6093860cfea8056bc2ac4b5c45c283ad9be72", + "fields": { + "code_commune_insee": "70171", + "nom_de_la_commune": "CORBENAY", + "code_postal": "70320", + "coordonnees_gps": [ + 47.8958414477, + 6.33319148205 + ], + "libelle_d_acheminement": "CORBENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33319148205, + 47.8958414477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ce93fc925146fbbad81f9e5be8b97dbb1d3e633", + "fields": { + "code_commune_insee": "70175", + "nom_de_la_commune": "CORNOT", + "code_postal": "70120", + "coordonnees_gps": [ + 47.6902160288, + 5.83898818583 + ], + "libelle_d_acheminement": "CORNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83898818583, + 47.6902160288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f285402a57f0b216c1cf5abea9e0950d724d70b", + "fields": { + "code_commune_insee": "70184", + "nom_de_la_commune": "COUTHENANS", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5901202306, + 6.72594262625 + ], + "libelle_d_acheminement": "COUTHENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72594262625, + 47.5901202306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1465e743d47a5c4ff7458a57c2aeb67d47fe895", + "fields": { + "code_commune_insee": "70188", + "nom_de_la_commune": "CREVENEY", + "code_postal": "70240", + "coordonnees_gps": [ + 47.6806121755, + 6.29286368281 + ], + "libelle_d_acheminement": "CREVENEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29286368281, + 47.6806121755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56a308d8d533d007169f25753829543a4857517c", + "fields": { + "code_commune_insee": "70189", + "nom_de_la_commune": "CROMARY", + "code_postal": "70190", + "coordonnees_gps": [ + 47.3651266059, + 6.06864570113 + ], + "libelle_d_acheminement": "CROMARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06864570113, + 47.3651266059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b2d4c13f4d90e71428d152a5dd496ca6a16727b", + "fields": { + "code_commune_insee": "70196", + "nom_de_la_commune": "DAMPIERRE LES CONFLANS", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8446617435, + 6.17930368282 + ], + "libelle_d_acheminement": "DAMPIERRE LES CONFLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17930368282, + 47.8446617435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a46318bb890476f3bf2e1e4d5cd6f5efdbe415f", + "fields": { + "code_commune_insee": "70199", + "nom_de_la_commune": "DAMPVALLEY LES COLOMBE", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6250131042, + 6.24487061258 + ], + "libelle_d_acheminement": "DAMPVALLEY LES COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24487061258, + 47.6250131042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b53d8d34a271adb0f428614f62e202a4dbd1ee64", + "fields": { + "code_commune_insee": "70200", + "nom_de_la_commune": "DAMPVALLEY ST PANCRAS", + "code_postal": "70210", + "coordonnees_gps": [ + 47.9127848555, + 6.20068326227 + ], + "libelle_d_acheminement": "DAMPVALLEY ST PANCRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20068326227, + 47.9127848555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f32e7eb79188bb2e72a6da576f25f972ee8a680d", + "fields": { + "code_commune_insee": "70204", + "nom_de_la_commune": "DENEVRE", + "code_postal": "70180", + "coordonnees_gps": [ + 47.5557164652, + 5.64493853194 + ], + "libelle_d_acheminement": "DENEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64493853194, + 47.5557164652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ff9f7ad3e1fc0865eaef8a5122b44d7f277ec0", + "fields": { + "code_commune_insee": "70206", + "nom_de_la_commune": "ECHENANS SOUS MONT VAUDOIS", + "code_postal": "70400", + "coordonnees_gps": [ + 47.6045802669, + 6.76783910472 + ], + "libelle_d_acheminement": "ECHENANS SOUS MONT VAUDOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76783910472, + 47.6045802669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c6ee29fb9fecc899a1f74a25a4f819bbc54bcdb", + "fields": { + "code_commune_insee": "70208", + "nom_de_la_commune": "ECHENOZ LE SEC", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5278583109, + 6.12143583046 + ], + "libelle_d_acheminement": "ECHENOZ LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12143583046, + 47.5278583109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53484e92d29f8dd037a2ab0eec1539138a557844", + "fields": { + "code_commune_insee": "70219", + "nom_de_la_commune": "ESPRELS", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5427842228, + 6.35948828395 + ], + "libelle_d_acheminement": "ESPRELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35948828395, + 47.5427842228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e22293ecfc06b4e9001ad02f254a42f508555aa", + "fields": { + "code_commune_insee": "70220", + "nom_de_la_commune": "ESSERTENNE ET CECEY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4004565715, + 5.46661383685 + ], + "libelle_d_acheminement": "ESSERTENNE ET CECEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46661383685, + 47.4004565715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de1abf7237dda8c60595308a5e0fcc50ddbacdc1", + "fields": { + "code_commune_insee": "70225", + "nom_de_la_commune": "FAHY LES AUTREY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.5121531962, + 5.47718136994 + ], + "libelle_d_acheminement": "FAHY LES AUTREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47718136994, + 47.5121531962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "406d302a007ec08183693d097f1b2706e7f3ce4a", + "fields": { + "code_commune_insee": "70235", + "nom_de_la_commune": "FLAGY", + "code_postal": "70000", + "coordonnees_gps": [ + 47.7001482374, + 6.18628045346 + ], + "libelle_d_acheminement": "FLAGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18628045346, + 47.7001482374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e71611f74e03bebda68ece9bc89b6be122a5b8e4", + "fields": { + "code_commune_insee": "70238", + "nom_de_la_commune": "FLEUREY LES ST LOUP", + "code_postal": "70800", + "coordonnees_gps": [ + 47.9236983038, + 6.29330075407 + ], + "libelle_d_acheminement": "FLEUREY LES ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29330075407, + 47.9236983038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c535075eebdd090b1f5d4160a7981bdbcee1274", + "fields": { + "code_commune_insee": "70243", + "nom_de_la_commune": "FONTENOIS LES MONTBOZON", + "code_postal": "70230", + "coordonnees_gps": [ + 47.4882877067, + 6.23457965284 + ], + "libelle_d_acheminement": "FONTENOIS LES MONTBOZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23457965284, + 47.4882877067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "352797ce97dbd44bd96f66681a1698b7ab6ff1ca", + "fields": { + "code_commune_insee": "70244", + "nom_de_la_commune": "FOUCHECOURT", + "code_postal": "70160", + "coordonnees_gps": [ + 47.7897792955, + 5.9864123843 + ], + "libelle_d_acheminement": "FOUCHECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9864123843, + 47.7897792955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b679ac9adaebc3c12d12910389a9b7d14651c418", + "fields": { + "ligne_5": "FOUVENT LE BAS", + "code_commune_insee": "70247", + "libelle_d_acheminement": "FOUVENT ST ANDOCHE", + "code_postal": "70600", + "nom_de_la_commune": "FOUVENT ST ANDOCHE", + "coordonnees_gps": [ + 47.6505541505, + 5.6722095809 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6722095809, + 47.6505541505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e61977b653c97c204644edde76d4363767b9bd2", + "fields": { + "ligne_5": "ST ANDOCHE", + "code_commune_insee": "70247", + "libelle_d_acheminement": "FOUVENT ST ANDOCHE", + "code_postal": "70600", + "nom_de_la_commune": "FOUVENT ST ANDOCHE", + "coordonnees_gps": [ + 47.6505541505, + 5.6722095809 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6722095809, + 47.6505541505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b3f4301eaa52501f59610cc9b7937739f66ea01", + "fields": { + "ligne_5": "MONT LE FRANOIS", + "code_commune_insee": "70252", + "libelle_d_acheminement": "FRAMONT", + "code_postal": "70600", + "nom_de_la_commune": "FRAMONT", + "coordonnees_gps": [ + 47.5716187406, + 5.5798394253 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5798394253, + 47.5716187406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7cfad25b61c4cf417df36b27e2ec3332a2a752c", + "fields": { + "code_commune_insee": "70263", + "nom_de_la_commune": "GENEVREY", + "code_postal": "70240", + "coordonnees_gps": [ + 47.7215124098, + 6.32711971667 + ], + "libelle_d_acheminement": "GENEVREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32711971667, + 47.7215124098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "201578a5e6cad0a5796d008ec0e64245cef92ba6", + "fields": { + "code_commune_insee": "70267", + "nom_de_la_commune": "GEVIGNEY ET MERCEY", + "code_postal": "70500", + "coordonnees_gps": [ + 47.794509649, + 5.94474334051 + ], + "libelle_d_acheminement": "GEVIGNEY ET MERCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94474334051, + 47.794509649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "526b33d56b567390c77700b3218a3f4fc5563d84", + "fields": { + "ligne_5": "BYANS", + "code_commune_insee": "70285", + "libelle_d_acheminement": "HERICOURT", + "code_postal": "70400", + "nom_de_la_commune": "HERICOURT", + "coordonnees_gps": [ + 47.5698613671, + 6.76517349246 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76517349246, + 47.5698613671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c23e17b8948b3e65efbda90415d205e126a8c0a5", + "fields": { + "code_commune_insee": "70289", + "nom_de_la_commune": "IGNY", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4821498978, + 5.75563674329 + ], + "libelle_d_acheminement": "IGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75563674329, + 47.4821498978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d41ee8b268ea2251c1e8b42e92f544a935f3982a", + "fields": { + "code_commune_insee": "70291", + "nom_de_la_commune": "JONVELLE", + "code_postal": "70500", + "coordonnees_gps": [ + 47.9286064746, + 5.91384412427 + ], + "libelle_d_acheminement": "JONVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91384412427, + 47.9286064746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f39f2e62b4ccf1d5c25abdf80cb568c669774b1", + "fields": { + "ligne_5": "NOROY LES JUSSEY", + "code_commune_insee": "70292", + "libelle_d_acheminement": "JUSSEY", + "code_postal": "70500", + "nom_de_la_commune": "JUSSEY", + "coordonnees_gps": [ + 47.8171454049, + 5.88977076116 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88977076116, + 47.8171454049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3096099375f9b3b7bb1f516651369e9bd95993c", + "fields": { + "code_commune_insee": "70294", + "nom_de_la_commune": "LANTENOT", + "code_postal": "70200", + "coordonnees_gps": [ + 47.7550142375, + 6.50401420408 + ], + "libelle_d_acheminement": "LANTENOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50401420408, + 47.7550142375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7594b93a61a00ad788a0c59826e86b215693e89", + "fields": { + "code_commune_insee": "70295", + "nom_de_la_commune": "LA LANTERNE ET LES ARMONTS", + "code_postal": "70270", + "coordonnees_gps": [ + 47.7866393321, + 6.52929225583 + ], + "libelle_d_acheminement": "LA LANTERNE ET LES ARMONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52929225583, + 47.7866393321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32e1888ecec40e5255c4301743264964c234b718", + "fields": { + "code_commune_insee": "70303", + "nom_de_la_commune": "LIEVANS", + "code_postal": "70240", + "coordonnees_gps": [ + 47.6356797971, + 6.34783020976 + ], + "libelle_d_acheminement": "LIEVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34783020976, + 47.6356797971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31421222d0c748f89e96953573e9d3f7d24b23d8", + "fields": { + "code_commune_insee": "70309", + "nom_de_la_commune": "LOULANS VERCHAMP", + "code_postal": "70230", + "coordonnees_gps": [ + 47.4450028639, + 6.20512225954 + ], + "libelle_d_acheminement": "LOULANS VERCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20512225954, + 47.4450028639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc4c84332f50ce2b57261a1ef01ac1f6409e4f20", + "fields": { + "code_commune_insee": "70310", + "nom_de_la_commune": "LURE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6851664568, + 6.49651910322 + ], + "libelle_d_acheminement": "LURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49651910322, + 47.6851664568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d1a6998da2ea66a227bf2e1fc1e150ff425c977", + "fields": { + "code_commune_insee": "70313", + "nom_de_la_commune": "LYOFFANS", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6439821096, + 6.5885519049 + ], + "libelle_d_acheminement": "LYOFFANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5885519049, + 47.6439821096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a0423c34bf4b670d1c61a543930d5d109626264", + "fields": { + "code_commune_insee": "70314", + "nom_de_la_commune": "MAGNIVRAY", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7814660016, + 6.4639195197 + ], + "libelle_d_acheminement": "MAGNIVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4639195197, + 47.7814660016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c411176c2d3ee224229a90f11edcf772b20bd189", + "fields": { + "code_commune_insee": "70317", + "nom_de_la_commune": "LES MAGNY", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5280243494, + 6.4414267438 + ], + "libelle_d_acheminement": "LES MAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4414267438, + 47.5280243494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04fa756507a4561d2e0f66fb487d84a6927d15bf", + "fields": { + "code_commune_insee": "70324", + "nom_de_la_commune": "MAILLEY ET CHAZELOT", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5301073689, + 6.05096098023 + ], + "libelle_d_acheminement": "MAILLEY ET CHAZELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05096098023, + 47.5301073689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1a1c1c6eeb916f216a55b6cffb8f212cff8b9a9", + "fields": { + "code_commune_insee": "70326", + "nom_de_la_commune": "LA MALACHERE", + "code_postal": "70190", + "coordonnees_gps": [ + 47.455249731, + 6.07203936643 + ], + "libelle_d_acheminement": "LA MALACHERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07203936643, + 47.455249731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17d03e5f756fba876a4953371466083392de9345", + "fields": { + "code_commune_insee": "70328", + "nom_de_la_commune": "MALBOUHANS", + "code_postal": "70200", + "coordonnees_gps": [ + 47.7110423982, + 6.58099580275 + ], + "libelle_d_acheminement": "MALBOUHANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58099580275, + 47.7110423982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da160f4b0b69897be30fc85dbd98a528e4e3a229", + "fields": { + "code_commune_insee": "70331", + "nom_de_la_commune": "MANTOCHE", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4262852629, + 5.52118852315 + ], + "libelle_d_acheminement": "MANTOCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52118852315, + 47.4262852629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9133f5e163c0860e52f374f602c8c7c06703f77c", + "fields": { + "code_commune_insee": "70336", + "nom_de_la_commune": "MELECEY", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5236383873, + 6.49028438138 + ], + "libelle_d_acheminement": "MELECEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49028438138, + 47.5236383873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ef0a17f3972d17b36984e9fe6a1053153a3a413", + "fields": { + "code_commune_insee": "70344", + "nom_de_la_commune": "MEURCOURT", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7660974032, + 6.23487689466 + ], + "libelle_d_acheminement": "MEURCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23487689466, + 47.7660974032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba3d946117c5026d7c2a7e1b226e08c838f81d4f", + "fields": { + "code_commune_insee": "70352", + "nom_de_la_commune": "LA MONTAGNE", + "code_postal": "70310", + "coordonnees_gps": [ + 47.9241751204, + 6.58996774592 + ], + "libelle_d_acheminement": "LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58996774592, + 47.9241751204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88856a1f7ac16c91969bd8ec929930c527bf5a25", + "fields": { + "code_commune_insee": "70359", + "nom_de_la_commune": "MONTCOURT", + "code_postal": "70500", + "coordonnees_gps": [ + 47.9307650179, + 5.96259842933 + ], + "libelle_d_acheminement": "MONTCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96259842933, + 47.9307650179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c719db278bd2a67c8e835101d0a76fdf52d9efa", + "fields": { + "code_commune_insee": "70364", + "nom_de_la_commune": "MONTJUSTIN ET VELOTTE", + "code_postal": "70110", + "coordonnees_gps": [ + 47.6187013351, + 6.3745985909 + ], + "libelle_d_acheminement": "MONTJUSTIN ET VELOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3745985909, + 47.6187013351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3c3e280d66232e8c36cc9419fe5f25681e82ed5", + "fields": { + "code_commune_insee": "70366", + "nom_de_la_commune": "VILLERS CHEMIN ET MONT LES ETRELLES", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4429990999, + 5.87604712509 + ], + "libelle_d_acheminement": "VILLERS CHEMIN MONT LES ETRELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87604712509, + 47.4429990999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2c98b346a46cc710833c36700d544f55fdc1cd9", + "fields": { + "code_commune_insee": "70371", + "nom_de_la_commune": "MONTUREUX ET PRANTIGNY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.5050359046, + 5.63005559923 + ], + "libelle_d_acheminement": "MONTUREUX ET PRANTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63005559923, + 47.5050359046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44febf0a2765a1a2c425cf85b602a02cf2c41538", + "fields": { + "ligne_5": "ST JULIEN", + "code_commune_insee": "70373", + "libelle_d_acheminement": "LA ROCHE MOREY", + "code_postal": "70120", + "nom_de_la_commune": "LA ROCHE MOREY", + "coordonnees_gps": [ + 47.6947168026, + 5.75337268526 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75337268526, + 47.6947168026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "415f36a9bb1c46de5bbfc3ce73487b98d1301fca", + "fields": { + "code_commune_insee": "70376", + "nom_de_la_commune": "NANTILLY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4579304083, + 5.52873315252 + ], + "libelle_d_acheminement": "NANTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52873315252, + 47.4579304083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad171e68cae3b189d1ddca0124d3ce0dd925a5c4", + "fields": { + "code_commune_insee": "70381", + "nom_de_la_commune": "NEUREY LES LA DEMIE", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5638711868, + 6.19561119742 + ], + "libelle_d_acheminement": "NEUREY LES LA DEMIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19561119742, + 47.5638711868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "404bae953b0c9d8a3eb1d8d9401b0954c4cc738c", + "fields": { + "code_commune_insee": "70385", + "nom_de_la_commune": "LA NEUVELLE LES LURE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.7156316858, + 6.55341236985 + ], + "libelle_d_acheminement": "LA NEUVELLE LES LURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55341236985, + 47.7156316858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8c35dbe25aea48d1e641919e69836ec75c6d79c", + "fields": { + "code_commune_insee": "70390", + "nom_de_la_commune": "NOROY LE BOURG", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6038475858, + 6.28890431672 + ], + "libelle_d_acheminement": "NOROY LE BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28890431672, + 47.6038475858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f5dca80046db579da83301a751a298fca1a620e", + "fields": { + "code_commune_insee": "70394", + "nom_de_la_commune": "ONAY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.3909626091, + 5.68585881387 + ], + "libelle_d_acheminement": "ONAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68585881387, + 47.3909626091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25b9057ec75922bbdd64eb2a97fb608bd242b074", + "fields": { + "code_commune_insee": "70395", + "nom_de_la_commune": "OPPENANS", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5826629253, + 6.38446372576 + ], + "libelle_d_acheminement": "OPPENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38446372576, + 47.5826629253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f336d2a9f464b6c96747fdc308d953735312be7c", + "fields": { + "code_commune_insee": "70397", + "nom_de_la_commune": "ORMENANS", + "code_postal": "70230", + "coordonnees_gps": [ + 47.4583413569, + 6.21351762142 + ], + "libelle_d_acheminement": "ORMENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21351762142, + 47.4583413569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35ee7bc9b071a69145975c2331abf5448feb1ac2", + "fields": { + "code_commune_insee": "70399", + "nom_de_la_commune": "ORMOY", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8850612988, + 5.99402771513 + ], + "libelle_d_acheminement": "ORMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99402771513, + 47.8850612988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a84330a238ba104fc6f9a1aaa384f5ea9cd4b9d0", + "fields": { + "code_commune_insee": "70405", + "nom_de_la_commune": "PENNESIERES", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4957736463, + 6.09574918717 + ], + "libelle_d_acheminement": "PENNESIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09574918717, + 47.4957736463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ceaa9f33ee17575a614801725be3797b9b7e6ef", + "fields": { + "code_commune_insee": "70408", + "nom_de_la_commune": "PESMES", + "code_postal": "70140", + "coordonnees_gps": [ + 47.2915778298, + 5.57274698135 + ], + "libelle_d_acheminement": "PESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57274698135, + 47.2915778298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "662c4ec6f8714d074a829475701450ae10d2c451", + "fields": { + "code_commune_insee": "70415", + "nom_de_la_commune": "POLAINCOURT ET CLAIREFONTAINE", + "code_postal": "70210", + "coordonnees_gps": [ + 47.875259179, + 6.06625530496 + ], + "libelle_d_acheminement": "POLAINCOURT ET CLAIREFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06625530496, + 47.875259179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "005d31c9e1cfdf0f53044e6f091c0b531e8bcee5", + "fields": { + "code_commune_insee": "70416", + "nom_de_la_commune": "POMOY", + "code_postal": "70240", + "coordonnees_gps": [ + 47.6592691879, + 6.34654369308 + ], + "libelle_d_acheminement": "POMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34654369308, + 47.6592691879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "298be67bebb233ceb7820309aa121eed45cbba9e", + "fields": { + "code_commune_insee": "70425", + "nom_de_la_commune": "LA PROISELIERE ET LANGLE", + "code_postal": "70310", + "coordonnees_gps": [ + 47.8134343067, + 6.49157329461 + ], + "libelle_d_acheminement": "LA PROISELIERE ET LANGLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49157329461, + 47.8134343067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b26f70b503861b4dfb5ae2decb3218d34a76154c", + "fields": { + "code_commune_insee": "70427", + "nom_de_la_commune": "PURGEROT", + "code_postal": "70160", + "coordonnees_gps": [ + 47.7492388888, + 5.99111141327 + ], + "libelle_d_acheminement": "PURGEROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99111141327, + 47.7492388888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e50a8ead5a1da2b64b503de027f83d30ff1dc4b", + "fields": { + "code_commune_insee": "70431", + "nom_de_la_commune": "QUENOCHE", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4644966479, + 6.10803014349 + ], + "libelle_d_acheminement": "QUENOCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10803014349, + 47.4644966479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9020763a3c66f167499490727705c6134606d0ed", + "fields": { + "code_commune_insee": "70435", + "nom_de_la_commune": "RADDON ET CHAPENDU", + "code_postal": "70280", + "coordonnees_gps": [ + 47.8553521671, + 6.4533442174 + ], + "libelle_d_acheminement": "RADDON ET CHAPENDU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4533442174, + 47.8553521671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7204def5447ccc2fc808452eada47a872c3e11b9", + "fields": { + "code_commune_insee": "70437", + "nom_de_la_commune": "RANZEVELLE", + "code_postal": "70500", + "coordonnees_gps": [ + 47.9064629009, + 5.98377333342 + ], + "libelle_d_acheminement": "RANZEVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98377333342, + 47.9064629009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a7652f2e421b0ba55eaf4be43574a21318856c9", + "fields": { + "code_commune_insee": "70439", + "nom_de_la_commune": "RAZE", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5810464367, + 6.00410324695 + ], + "libelle_d_acheminement": "RAZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00410324695, + 47.5810464367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36c300b05680eb69a7fc9af3f0de1c42ddf7fc81", + "fields": { + "code_commune_insee": "70440", + "nom_de_la_commune": "RECOLOGNE", + "code_postal": "70130", + "coordonnees_gps": [ + 47.5821627991, + 5.77361697832 + ], + "libelle_d_acheminement": "RECOLOGNE LES RAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77361697832, + 47.5821627991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "712b59db081984b3a45cc76506a441dfa9db4ba4", + "fields": { + "code_commune_insee": "70450", + "nom_de_la_commune": "LA ROCHELLE", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7523236949, + 5.72464823314 + ], + "libelle_d_acheminement": "LA ROCHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72464823314, + 47.7523236949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f4a171478688ac30ae573b2ea1910675d6ec359", + "fields": { + "code_commune_insee": "70459", + "nom_de_la_commune": "ST BARTHELEMY", + "code_postal": "70270", + "coordonnees_gps": [ + 47.7410393174, + 6.60409347666 + ], + "libelle_d_acheminement": "ST BARTHELEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60409347666, + 47.7410393174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4e5188e78aa06e9cc7668512ef1d171d966a594", + "fields": { + "ligne_5": "CORCELLES", + "code_commune_insee": "70477", + "libelle_d_acheminement": "SAULNOT", + "code_postal": "70400", + "nom_de_la_commune": "SAULNOT", + "coordonnees_gps": [ + 47.5703099756, + 6.62953525499 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62953525499, + 47.5703099756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6255b600617e6561407cab2ded969fcdde89b70e", + "fields": { + "code_commune_insee": "70483", + "nom_de_la_commune": "SCYE", + "code_postal": "70170", + "coordonnees_gps": [ + 47.6584667551, + 6.0572353758 + ], + "libelle_d_acheminement": "SCYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0572353758, + 47.6584667551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35f3cc2e458b0b3010d780f83969d9692d075d7d", + "fields": { + "code_commune_insee": "70488", + "nom_de_la_commune": "SENONCOURT", + "code_postal": "70160", + "coordonnees_gps": [ + 47.8367830368, + 6.05857627249 + ], + "libelle_d_acheminement": "SENONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05857627249, + 47.8367830368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53f8df89232b512c8e940c59ffdeb27d2a174d2e", + "fields": { + "code_commune_insee": "70499", + "nom_de_la_commune": "THEULEY", + "code_postal": "70120", + "coordonnees_gps": [ + 47.6226401654, + 5.82022410565 + ], + "libelle_d_acheminement": "THEULEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82022410565, + 47.6226401654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "582a38312a657560ec68d54931cf91ec3e59e6e2", + "fields": { + "code_commune_insee": "70510", + "nom_de_la_commune": "VADANS", + "code_postal": "70140", + "coordonnees_gps": [ + 47.3519943594, + 5.57942602132 + ], + "libelle_d_acheminement": "VADANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57942602132, + 47.3519943594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34028eb04ebb7a0bea865f3c6673bb1bb50dc21d", + "fields": { + "code_commune_insee": "70515", + "nom_de_la_commune": "LE VAL DE GOUHENANS", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6238998324, + 6.48703960291 + ], + "libelle_d_acheminement": "LE VAL DE GOUHENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48703960291, + 47.6238998324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3cd9c10b443e1bc9bc3e168e46a4358af0ccf6e", + "fields": { + "code_commune_insee": "70519", + "nom_de_la_commune": "VANDELANS", + "code_postal": "70190", + "coordonnees_gps": [ + 47.3997867498, + 6.16016748513 + ], + "libelle_d_acheminement": "VANDELANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16016748513, + 47.3997867498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fa8c53127d23c40e09813dde0f9c907fe93b691", + "fields": { + "code_commune_insee": "70520", + "nom_de_la_commune": "VANNE", + "code_postal": "70130", + "coordonnees_gps": [ + 47.6047607958, + 5.84690959522 + ], + "libelle_d_acheminement": "VANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84690959522, + 47.6047607958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a4a61144a37185c824b1c306acb8893870a1669", + "fields": { + "code_commune_insee": "70523", + "nom_de_la_commune": "VARS", + "code_postal": "70600", + "coordonnees_gps": [ + 47.5377653039, + 5.52005449376 + ], + "libelle_d_acheminement": "VARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52005449376, + 47.5377653039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "930bd5bcb8aa456974ff8503ff2dfb119ac053ff", + "fields": { + "code_commune_insee": "70524", + "nom_de_la_commune": "VAUCHOUX", + "code_postal": "70170", + "coordonnees_gps": [ + 47.6579709662, + 6.03308496328 + ], + "libelle_d_acheminement": "VAUCHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03308496328, + 47.6579709662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a8e47201c4e79382aeaf47cfbb64acaafaa0438", + "fields": { + "code_commune_insee": "70526", + "nom_de_la_commune": "VAUVILLERS", + "code_postal": "70210", + "coordonnees_gps": [ + 47.927696482, + 6.10999352598 + ], + "libelle_d_acheminement": "VAUVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10999352598, + 47.927696482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0476de2f00ed94683b7404b54ef818c685a6a1be", + "fields": { + "code_commune_insee": "70532", + "nom_de_la_commune": "VELLEFAUX", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5529035792, + 6.13885306049 + ], + "libelle_d_acheminement": "VELLEFAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13885306049, + 47.5529035792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5ed246023e0f8461dbca7a608fd181d03260927", + "fields": { + "code_commune_insee": "70538", + "nom_de_la_commune": "VELLEMOZ", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4766541807, + 5.79152233813 + ], + "libelle_d_acheminement": "VELLEMOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79152233813, + 47.4766541807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa034ca71d856d159b11e06d54954000be684bb5", + "fields": { + "code_commune_insee": "70542", + "nom_de_la_commune": "VENERE", + "code_postal": "70100", + "coordonnees_gps": [ + 47.3587412355, + 5.6767085991 + ], + "libelle_d_acheminement": "VENERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6767085991, + 47.3587412355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5e6501c8a1c9f47039982b2b96cd004ea17cfed", + "fields": { + "code_commune_insee": "70557", + "nom_de_la_commune": "VILLEFRANCON", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4129035904, + 5.74249429132 + ], + "libelle_d_acheminement": "VILLEFRANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74249429132, + 47.4129035904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "387041a3e293da0005185702837ac7acb161113c", + "fields": { + "code_commune_insee": "70567", + "nom_de_la_commune": "VILLERS SUR SAULNOT", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5481669716, + 6.64791604275 + ], + "libelle_d_acheminement": "VILLERS SUR SAULNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64791604275, + 47.5481669716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4836f30fca57bcfb32fe8609d254f661b6e1f3ca", + "fields": { + "code_commune_insee": "70569", + "nom_de_la_commune": "VILORY", + "code_postal": "70240", + "coordonnees_gps": [ + 47.7301466997, + 6.22337661531 + ], + "libelle_d_acheminement": "VILORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22337661531, + 47.7301466997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64ea95b5246e27121e179bf90145e426a7265d4c", + "fields": { + "code_commune_insee": "70577", + "nom_de_la_commune": "VOUHENANS", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6424367134, + 6.49403579676 + ], + "libelle_d_acheminement": "VOUHENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49403579676, + 47.6424367134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c514293869c8cff56c3642a67d25f7f15dcd60e", + "fields": { + "code_commune_insee": "70580", + "nom_de_la_commune": "VY LE FERROUX", + "code_postal": "70130", + "coordonnees_gps": [ + 47.5876286452, + 5.96724404567 + ], + "libelle_d_acheminement": "VY LE FERROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96724404567, + 47.5876286452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07f89eb994257d6e626200d43e2ca6367907c994", + "fields": { + "code_commune_insee": "71003", + "nom_de_la_commune": "ALLEREY SUR SAONE", + "code_postal": "71350", + "coordonnees_gps": [ + 46.9138309803, + 4.97484420794 + ], + "libelle_d_acheminement": "ALLEREY SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97484420794, + 46.9138309803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14d823b34f920b0b0ff4569710fbdc7a0c7c7cce", + "fields": { + "code_commune_insee": "71023", + "nom_de_la_commune": "BAUDRIERES", + "code_postal": "71370", + "coordonnees_gps": [ + 46.6659094039, + 5.00248487776 + ], + "libelle_d_acheminement": "BAUDRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00248487776, + 46.6659094039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a23b086e9edd8ff7261f1ecd96bc2ed628585ce9", + "fields": { + "code_commune_insee": "71024", + "nom_de_la_commune": "BAUGY", + "code_postal": "71110", + "coordonnees_gps": [ + 46.3075519171, + 4.03236080451 + ], + "libelle_d_acheminement": "BAUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03236080451, + 46.3075519171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b202134ea8825eba4a2e630b98a2059155bd1e48", + "fields": { + "code_commune_insee": "71032", + "nom_de_la_commune": "BERZE LA VILLE", + "code_postal": "71960", + "coordonnees_gps": [ + 46.3683212977, + 4.70227131172 + ], + "libelle_d_acheminement": "BERZE LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70227131172, + 46.3683212977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6387a4d9e86f59c2d9a8c9c9b5444b347f0b695f", + "fields": { + "code_commune_insee": "71035", + "nom_de_la_commune": "BISSY LA MACONNAISE", + "code_postal": "71260", + "coordonnees_gps": [ + 46.4854125388, + 4.77572068002 + ], + "libelle_d_acheminement": "BISSY LA MACONNAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77572068002, + 46.4854125388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa35aa3db5968d681d2aa86f82f8d80279e5181c", + "fields": { + "code_commune_insee": "71036", + "nom_de_la_commune": "BISSY SOUS UXELLES", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5685167956, + 4.72714301912 + ], + "libelle_d_acheminement": "BISSY SOUS UXELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72714301912, + 46.5685167956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d4ace8b2abd6a4cb3cc8808f37829bcec14c09a", + "fields": { + "code_commune_insee": "71040", + "nom_de_la_commune": "BLANZY", + "code_postal": "71450", + "coordonnees_gps": [ + 46.7042568403, + 4.39315980341 + ], + "libelle_d_acheminement": "BLANZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39315980341, + 46.7042568403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "971e2b198d4c310d70a095a180a21e6106458e77", + "fields": { + "code_commune_insee": "71058", + "nom_de_la_commune": "BRESSE SUR GROSNE", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5946563977, + 4.72811970624 + ], + "libelle_d_acheminement": "BRESSE SUR GROSNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72811970624, + 46.5946563977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "415d2f20d6bcce1302fb5168672da4e6f569415c", + "fields": { + "code_commune_insee": "71067", + "nom_de_la_commune": "BURNAND", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6019325058, + 4.63373013891 + ], + "libelle_d_acheminement": "BURNAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63373013891, + 46.6019325058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfeaee5a3f33c186ab7b3f337b0c2de01ee8ff75", + "fields": { + "code_commune_insee": "71074", + "nom_de_la_commune": "CHAINTRE", + "code_postal": "71570", + "coordonnees_gps": [ + 46.2582470143, + 4.77030455349 + ], + "libelle_d_acheminement": "CHAINTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77030455349, + 46.2582470143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c24462f3582d0fef3256f6e75ff74cb5e72b062", + "fields": { + "code_commune_insee": "71086", + "nom_de_la_commune": "CHANGY", + "code_postal": "71120", + "coordonnees_gps": [ + 46.4121876754, + 4.2519227256 + ], + "libelle_d_acheminement": "CHANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2519227256, + 46.4121876754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccf40d1a799fc6dabb50270f8ca4b4184f261204", + "fields": { + "code_commune_insee": "71089", + "nom_de_la_commune": "LA CHAPELLE DE BRAGNY", + "code_postal": "71240", + "coordonnees_gps": [ + 46.6195852003, + 4.75996353083 + ], + "libelle_d_acheminement": "LA CHAPELLE DE BRAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75996353083, + 46.6195852003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "434f26a0389c193ea301a921d440dc409005d059", + "fields": { + "code_commune_insee": "71090", + "nom_de_la_commune": "LA CHAPELLE DE GUINCHAY", + "code_postal": "71570", + "coordonnees_gps": [ + 46.2183395706, + 4.76075538674 + ], + "libelle_d_acheminement": "LA CHAPELLE DE GUINCHAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76075538674, + 46.2183395706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fd9389e7d938053d7ec3a3eeb08f55a8791503b", + "fields": { + "code_commune_insee": "71095", + "nom_de_la_commune": "LA CHAPELLE SOUS DUN", + "code_postal": "71800", + "coordonnees_gps": [ + 46.2638539851, + 4.29882173643 + ], + "libelle_d_acheminement": "LA CHAPELLE SOUS DUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29882173643, + 46.2638539851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebbbacf71e38033fed5cdd504f40ec331acf7c79", + "fields": { + "code_commune_insee": "71101", + "nom_de_la_commune": "CHARETTE VARENNES", + "code_postal": "71270", + "coordonnees_gps": [ + 46.9006196221, + 5.19727816775 + ], + "libelle_d_acheminement": "CHARETTE VARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19727816775, + 46.9006196221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9f561f43865139e5250e849476a685f83bd181f", + "fields": { + "code_commune_insee": "71104", + "nom_de_la_commune": "CHARNAY LES CHALON", + "code_postal": "71350", + "coordonnees_gps": [ + 46.9343265104, + 5.08431654646 + ], + "libelle_d_acheminement": "CHARNAY LES CHALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08431654646, + 46.9343265104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b3afb30e72ad2b6082948261aa05679ff542699", + "fields": { + "code_commune_insee": "71108", + "nom_de_la_commune": "CHASSELAS", + "code_postal": "71570", + "coordonnees_gps": [ + 46.2782503008, + 4.71871730618 + ], + "libelle_d_acheminement": "CHASSELAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71871730618, + 46.2782503008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed276b74049fe35f7c9c450e0a47ab2ecddb26bc", + "fields": { + "code_commune_insee": "71113", + "nom_de_la_commune": "CHATEAUNEUF", + "code_postal": "71740", + "coordonnees_gps": [ + 46.2104681552, + 4.26056533405 + ], + "libelle_d_acheminement": "CHATEAUNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26056533405, + 46.2104681552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e70b3bc016746e607193a911f3b6ac2666616ca7", + "fields": { + "code_commune_insee": "71123", + "nom_de_la_commune": "CHENAY LE CHATEL", + "code_postal": "71340", + "coordonnees_gps": [ + 46.228920415, + 3.93811744372 + ], + "libelle_d_acheminement": "CHENAY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93811744372, + 46.228920415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d83899b8ab60971fb88af8f67ff83069228fb1e", + "fields": { + "code_commune_insee": "71124", + "nom_de_la_commune": "CHENOVES", + "code_postal": "71390", + "coordonnees_gps": [ + 46.6662558007, + 4.70092580314 + ], + "libelle_d_acheminement": "CHENOVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70092580314, + 46.6662558007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dfe064357efc450793c4b4d8b7e4eb2f5ac5b09", + "fields": { + "code_commune_insee": "71126", + "nom_de_la_commune": "CHEVAGNY LES CHEVRIERES", + "code_postal": "71960", + "coordonnees_gps": [ + 46.3358003869, + 4.77205661745 + ], + "libelle_d_acheminement": "CHEVAGNY LES CHEVRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77205661745, + 46.3358003869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c88ba481af53ee0c68dec7095c728bd5e2ae4ecf", + "fields": { + "code_commune_insee": "71133", + "nom_de_la_commune": "LA CLAYETTE", + "code_postal": "71800", + "coordonnees_gps": [ + 46.2892944317, + 4.31079967145 + ], + "libelle_d_acheminement": "LA CLAYETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31079967145, + 46.2892944317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c9310854136b7de6feba8073dfe8dae19d941f7", + "fields": { + "code_commune_insee": "71144", + "nom_de_la_commune": "CORDESSE", + "code_postal": "71540", + "coordonnees_gps": [ + 47.043408177, + 4.33366013416 + ], + "libelle_d_acheminement": "CORDESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33366013416, + 47.043408177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bded50e73952aa72e34db656eb509b91c30d055b", + "fields": { + "code_commune_insee": "71145", + "nom_de_la_commune": "CORMATIN", + "code_postal": "71460", + "coordonnees_gps": [ + 46.535532183, + 4.69561266719 + ], + "libelle_d_acheminement": "CORMATIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69561266719, + 46.535532183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28f9af0434a51535a168906be8b3eb666f0d5a11", + "fields": { + "code_commune_insee": "71146", + "nom_de_la_commune": "CORTAMBERT", + "code_postal": "71250", + "coordonnees_gps": [ + 46.4704137076, + 4.69741359705 + ], + "libelle_d_acheminement": "CORTAMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69741359705, + 46.4704137076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36b0ac8a594419cc8e4b75fc95e3be69393aca95", + "fields": { + "code_commune_insee": "71148", + "nom_de_la_commune": "COUBLANC", + "code_postal": "71170", + "coordonnees_gps": [ + 46.1713810264, + 4.27380729464 + ], + "libelle_d_acheminement": "COUBLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27380729464, + 46.1713810264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31e65cb3dfc0c9694899f064d6dd6db4c9645fa0", + "fields": { + "code_commune_insee": "71152", + "nom_de_la_commune": "CRESSY SUR SOMME", + "code_postal": "71760", + "coordonnees_gps": [ + 46.7008961258, + 3.86729542324 + ], + "libelle_d_acheminement": "CRESSY SUR SOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86729542324, + 46.7008961258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a2dbb662c89de9d34740dcd2ffb234c0c72b97d", + "fields": { + "code_commune_insee": "71156", + "nom_de_la_commune": "CRUZILLE", + "code_postal": "71260", + "coordonnees_gps": [ + 46.5070246965, + 4.78675266634 + ], + "libelle_d_acheminement": "CRUZILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78675266634, + 46.5070246965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "684f0b5159ef80bae88d7fc0a416bab67d60120e", + "fields": { + "code_commune_insee": "71158", + "nom_de_la_commune": "CUISERY", + "code_postal": "71290", + "coordonnees_gps": [ + 46.5569799009, + 4.99361378862 + ], + "libelle_d_acheminement": "CUISERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99361378862, + 46.5569799009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80ff3d885f2dbb6e9633993ecbdff501cd51e459", + "fields": { + "code_commune_insee": "71160", + "nom_de_la_commune": "CURBIGNY", + "code_postal": "71800", + "coordonnees_gps": [ + 46.3116932174, + 4.31698207413 + ], + "libelle_d_acheminement": "CURBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31698207413, + 46.3116932174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa0d7ce34588fa2831bc53fd3e138dea5a345702", + "fields": { + "code_commune_insee": "71162", + "nom_de_la_commune": "CURGY", + "code_postal": "71400", + "coordonnees_gps": [ + 46.9886049961, + 4.38277730487 + ], + "libelle_d_acheminement": "CURGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38277730487, + 46.9886049961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48658fa0060b931b7d6e5dfa39d7d15d241ba4b7", + "fields": { + "code_commune_insee": "71164", + "nom_de_la_commune": "CURTIL SOUS BURNAND", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5832448679, + 4.6312448943 + ], + "libelle_d_acheminement": "CURTIL SOUS BURNAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6312448943, + 46.5832448679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aee9872f3ad2e544f28cb37b0a3ffb16c37aa36a", + "fields": { + "code_commune_insee": "71165", + "nom_de_la_commune": "CUSSY EN MORVAN", + "code_postal": "71550", + "coordonnees_gps": [ + 47.0930977975, + 4.1636345374 + ], + "libelle_d_acheminement": "CUSSY EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1636345374, + 47.0930977975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0545beb3fb20228768ed259ff4be77ec4e894eb", + "fields": { + "code_commune_insee": "71167", + "nom_de_la_commune": "DAMEREY", + "code_postal": "71620", + "coordonnees_gps": [ + 46.8344484396, + 4.99429761869 + ], + "libelle_d_acheminement": "DAMEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99429761869, + 46.8344484396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87825d134428d922bd82d8700e98d5026900e075", + "fields": { + "code_commune_insee": "71173", + "nom_de_la_commune": "DEVROUZE", + "code_postal": "71330", + "coordonnees_gps": [ + 46.7614578185, + 5.16719023343 + ], + "libelle_d_acheminement": "DEVROUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16719023343, + 46.7614578185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "632c4139c98ed2fb1ddcd71467cdbf6b2e54c1b4", + "fields": { + "code_commune_insee": "71176", + "nom_de_la_commune": "DIGOIN", + "code_postal": "71160", + "coordonnees_gps": [ + 46.4891651235, + 4.02511604849 + ], + "libelle_d_acheminement": "DIGOIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02511604849, + 46.4891651235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a89c05eae09340b462e2b1bf9c517f505f9244c", + "fields": { + "code_commune_insee": "71178", + "nom_de_la_commune": "DOMPIERRE LES ORMES", + "code_postal": "71520", + "coordonnees_gps": [ + 46.354950302, + 4.48081055025 + ], + "libelle_d_acheminement": "DOMPIERRE LES ORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48081055025, + 46.354950302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6d66b8bf44a7a0a3bc2c0ab33bdb0626c2bf9d5", + "fields": { + "ligne_5": "MEULIN", + "code_commune_insee": "71178", + "libelle_d_acheminement": "DOMPIERRE LES ORMES", + "code_postal": "71520", + "nom_de_la_commune": "DOMPIERRE LES ORMES", + "coordonnees_gps": [ + 46.354950302, + 4.48081055025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48081055025, + 46.354950302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5c4f5a404568424918044fbaff5af0c1d15838c", + "fields": { + "code_commune_insee": "71191", + "nom_de_la_commune": "ESSERTENNE", + "code_postal": "71510", + "coordonnees_gps": [ + 46.8109722514, + 4.54150474121 + ], + "libelle_d_acheminement": "ESSERTENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54150474121, + 46.8109722514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb79b2ea3ab25a88f0511e36694d1ccd0ef9e1f6", + "fields": { + "ligne_5": "LA LOYERE", + "code_commune_insee": "71204", + "libelle_d_acheminement": "FRAGNES LA LOYERE", + "code_postal": "71530", + "nom_de_la_commune": "FRAGNES LA LOYERE", + "coordonnees_gps": [ + 46.8312797426, + 4.84940221006 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84940221006, + 46.8312797426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7eebc1c87e3b41cfc7db1668667a300e86e1dce", + "fields": { + "code_commune_insee": "71216", + "nom_de_la_commune": "GERMAGNY", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6733437634, + 4.59764029825 + ], + "libelle_d_acheminement": "GERMAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59764029825, + 46.6733437634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b16f56c32b5339d072bf66db1c1f51d6e55bb404", + "fields": { + "code_commune_insee": "71218", + "nom_de_la_commune": "GIBLES", + "code_postal": "71800", + "coordonnees_gps": [ + 46.3179773987, + 4.38022998111 + ], + "libelle_d_acheminement": "GIBLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38022998111, + 46.3179773987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f095d7d6e8577351cd3ecb06e3374f23bdba869d", + "fields": { + "code_commune_insee": "71219", + "nom_de_la_commune": "GIGNY SUR SAONE", + "code_postal": "71240", + "coordonnees_gps": [ + 46.6538485126, + 4.93846686758 + ], + "libelle_d_acheminement": "GIGNY SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93846686758, + 46.6538485126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5009114f8dec9fbf879ccc606b24778159343e0", + "fields": { + "code_commune_insee": "71221", + "nom_de_la_commune": "GIVRY", + "code_postal": "71640", + "coordonnees_gps": [ + 46.7702122725, + 4.75441496992 + ], + "libelle_d_acheminement": "GIVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75441496992, + 46.7702122725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b16996ad0400adbb6200efdfb1a179e8cb8bc2cd", + "fields": { + "code_commune_insee": "71225", + "nom_de_la_commune": "GRANGES", + "code_postal": "71390", + "coordonnees_gps": [ + 46.7369347397, + 4.75217241831 + ], + "libelle_d_acheminement": "GRANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75217241831, + 46.7369347397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4bf9d13708ae006bfc1dfe23b36793c0c827c4e", + "fields": { + "code_commune_insee": "71227", + "nom_de_la_commune": "GRURY", + "code_postal": "71760", + "coordonnees_gps": [ + 46.6645308499, + 3.91335098661 + ], + "libelle_d_acheminement": "GRURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91335098661, + 46.6645308499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95235d5e45adc3a7566e938be04852637ffc7e0f", + "fields": { + "code_commune_insee": "71232", + "nom_de_la_commune": "HAUTEFOND", + "code_postal": "71600", + "coordonnees_gps": [ + 46.4353617469, + 4.17206207978 + ], + "libelle_d_acheminement": "HAUTEFOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17206207978, + 46.4353617469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d41433dbd49f43c97ee87f7461052f440be6d8c0", + "fields": { + "code_commune_insee": "71234", + "nom_de_la_commune": "HUILLY SUR SEILLE", + "code_postal": "71290", + "coordonnees_gps": [ + 46.6051659343, + 5.053133023 + ], + "libelle_d_acheminement": "HUILLY SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.053133023, + 46.6051659343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c4156206ebfbe795a934ef1379c1efcb0a61b02", + "fields": { + "code_commune_insee": "71242", + "nom_de_la_commune": "JONCY", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6145870121, + 4.55010993204 + ], + "libelle_d_acheminement": "JONCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55010993204, + 46.6145870121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be4b43ee472a57f701921c50a6bf89fdcbb3ec2d", + "fields": { + "code_commune_insee": "71243", + "nom_de_la_commune": "JOUDES", + "code_postal": "71480", + "coordonnees_gps": [ + 46.4732075841, + 5.33948956282 + ], + "libelle_d_acheminement": "JOUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33948956282, + 46.4732075841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f50c35ec158806fc55ea2e6b4c37de5d5a82a128", + "fields": { + "code_commune_insee": "71245", + "nom_de_la_commune": "JUGY", + "code_postal": "71240", + "coordonnees_gps": [ + 46.6044707808, + 4.86148307035 + ], + "libelle_d_acheminement": "JUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86148307035, + 46.6044707808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ad874fdc2dbe43753b121c262a2451f30b3b56e", + "fields": { + "code_commune_insee": "71246", + "nom_de_la_commune": "JUIF", + "code_postal": "71440", + "coordonnees_gps": [ + 46.6827335674, + 5.16245141859 + ], + "libelle_d_acheminement": "JUIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16245141859, + 46.6827335674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80248ebe6db82a69e5b74de71a20d1eb5b8e350e", + "fields": { + "code_commune_insee": "71254", + "nom_de_la_commune": "LAYS SUR LE DOUBS", + "code_postal": "71270", + "coordonnees_gps": [ + 46.9201256677, + 5.24330208466 + ], + "libelle_d_acheminement": "LAYS SUR LE DOUBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24330208466, + 46.9201256677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03af574570ee4f0e1b05fc4ed0608d962ad282a2", + "fields": { + "code_commune_insee": "71267", + "nom_de_la_commune": "LUGNY", + "code_postal": "71260", + "coordonnees_gps": [ + 46.4805805718, + 4.81912339905 + ], + "libelle_d_acheminement": "LUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81912339905, + 46.4805805718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88b5f2002ace1c5a41aa777962d4fac4f600a6c4", + "fields": { + "ligne_5": "FLACE LES MACON", + "code_commune_insee": "71270", + "libelle_d_acheminement": "MACON", + "code_postal": "71000", + "nom_de_la_commune": "MACON", + "coordonnees_gps": [ + 46.3205511756, + 4.81842529639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81842529639, + 46.3205511756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eea3f57bac156cc98cf8f3c09b7c6c56f9c38c5", + "fields": { + "code_commune_insee": "71271", + "nom_de_la_commune": "MAILLY", + "code_postal": "71340", + "coordonnees_gps": [ + 46.2279316064, + 4.11194727703 + ], + "libelle_d_acheminement": "MAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11194727703, + 46.2279316064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "764b1fe969609d5b041df2e4c132e690dfafc7c1", + "fields": { + "code_commune_insee": "71273", + "nom_de_la_commune": "MALTAT", + "code_postal": "71140", + "coordonnees_gps": [ + 46.6751423253, + 3.80940604841 + ], + "libelle_d_acheminement": "MALTAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80940604841, + 46.6751423253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3211f55f10814be97f483f0942763c6b8ecded15", + "fields": { + "code_commune_insee": "71274", + "nom_de_la_commune": "MANCEY", + "code_postal": "71240", + "coordonnees_gps": [ + 46.5696717803, + 4.84535325128 + ], + "libelle_d_acheminement": "MANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84535325128, + 46.5696717803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e762af7c688107ba35bf1f34c93a9c7421cdb49e", + "fields": { + "code_commune_insee": "71278", + "nom_de_la_commune": "MARIGNY", + "code_postal": "71300", + "coordonnees_gps": [ + 46.6807912321, + 4.46979546252 + ], + "libelle_d_acheminement": "MARIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46979546252, + 46.6807912321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bbb2fab4f9815a20f723560150eff612d321927", + "fields": { + "code_commune_insee": "71286", + "nom_de_la_commune": "MARY", + "code_postal": "71300", + "coordonnees_gps": [ + 46.6104508131, + 4.50041386834 + ], + "libelle_d_acheminement": "MARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50041386834, + 46.6104508131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6060c8d4774a9af1a5ded47a2925f555ca22f14c", + "fields": { + "code_commune_insee": "71289", + "nom_de_la_commune": "MATOUR", + "code_postal": "71520", + "coordonnees_gps": [ + 46.3110636207, + 4.47716868181 + ], + "libelle_d_acheminement": "MATOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47716868181, + 46.3110636207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6474060df92e24a71a61decfd17708fde921bde8", + "fields": { + "code_commune_insee": "71295", + "nom_de_la_commune": "MERVANS", + "code_postal": "71310", + "coordonnees_gps": [ + 46.7945134241, + 5.18412548455 + ], + "libelle_d_acheminement": "MERVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18412548455, + 46.7945134241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f73c844ba8a97902a43b1cac0228cb01b68ea8a", + "fields": { + "code_commune_insee": "71299", + "nom_de_la_commune": "MILLY LAMARTINE", + "code_postal": "71960", + "coordonnees_gps": [ + 46.3485783556, + 4.69624606174 + ], + "libelle_d_acheminement": "MILLY LAMARTINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69624606174, + 46.3485783556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "849a1d7e8ae21ea0366597ff5d9492ebaa76fc60", + "fields": { + "code_commune_insee": "71300", + "nom_de_la_commune": "LE MIROIR", + "code_postal": "71480", + "coordonnees_gps": [ + 46.5431506465, + 5.33864320841 + ], + "libelle_d_acheminement": "LE MIROIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33864320841, + 46.5431506465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dda2d7c1469b1883ad01ea893a9e2119df3d8585", + "fields": { + "code_commune_insee": "71308", + "nom_de_la_commune": "MONTCEAUX RAGNY", + "code_postal": "71240", + "coordonnees_gps": [ + 46.6203875932, + 4.84178033117 + ], + "libelle_d_acheminement": "MONTCEAUX RAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84178033117, + 46.6203875932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01e14024ddf8f9d8b031dc57780d43f8853c12bb", + "fields": { + "code_commune_insee": "71309", + "nom_de_la_commune": "MONTCENIS", + "code_postal": "71710", + "coordonnees_gps": [ + 46.786245174, + 4.39093818161 + ], + "libelle_d_acheminement": "MONTCENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39093818161, + 46.786245174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84ef2b1832804ca284bd8c633d8aedf2011f901f", + "fields": { + "code_commune_insee": "71315", + "nom_de_la_commune": "MONT LES SEURRE", + "code_postal": "71270", + "coordonnees_gps": [ + 46.9529037641, + 5.12901997473 + ], + "libelle_d_acheminement": "MONT LES SEURRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12901997473, + 46.9529037641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "154acffcd5faa3508cacd43400311b0de739524f", + "fields": { + "code_commune_insee": "71332", + "nom_de_la_commune": "ORMES", + "code_postal": "71290", + "coordonnees_gps": [ + 46.6333104747, + 4.96657248032 + ], + "libelle_d_acheminement": "ORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96657248032, + 46.6333104747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "191d99e35ad52b2d95a455bca96e82621b4e8bf8", + "fields": { + "code_commune_insee": "71338", + "nom_de_la_commune": "OZENAY", + "code_postal": "71700", + "coordonnees_gps": [ + 46.5352832941, + 4.84332783222 + ], + "libelle_d_acheminement": "OZENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84332783222, + 46.5352832941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c11662a86d46eb74440e6972b8edad9f9bc14a8d", + "fields": { + "code_commune_insee": "71348", + "nom_de_la_commune": "PERRIGNY SUR LOIRE", + "code_postal": "71160", + "coordonnees_gps": [ + 46.5434949213, + 3.85137583197 + ], + "libelle_d_acheminement": "PERRIGNY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85137583197, + 46.5434949213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deb47d555cd346841955560753c5df0214d658ab", + "fields": { + "ligne_5": "TERRANS", + "code_commune_insee": "71351", + "libelle_d_acheminement": "PIERRE DE BRESSE", + "code_postal": "71270", + "nom_de_la_commune": "PIERRE DE BRESSE", + "coordonnees_gps": [ + 46.8824879885, + 5.25265750532 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25265750532, + 46.8824879885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5846d14ddee1a2f7c9b30cda7803c05026a373f5", + "fields": { + "code_commune_insee": "71357", + "nom_de_la_commune": "POURLANS", + "code_postal": "71270", + "coordonnees_gps": [ + 46.9630221086, + 5.23663173279 + ], + "libelle_d_acheminement": "POURLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23663173279, + 46.9630221086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b7002b6e8540d2dfedfc349a6f72c2fa6bd7973", + "fields": { + "code_commune_insee": "71359", + "nom_de_la_commune": "PRETY", + "code_postal": "71290", + "coordonnees_gps": [ + 46.5394977837, + 4.95553905201 + ], + "libelle_d_acheminement": "PRETY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95553905201, + 46.5394977837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c791d46f74171a9906d017134923dbf7ea0749b", + "fields": { + "code_commune_insee": "71360", + "nom_de_la_commune": "PRISSE", + "code_postal": "71960", + "coordonnees_gps": [ + 46.3243137138, + 4.74816143404 + ], + "libelle_d_acheminement": "PRISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74816143404, + 46.3243137138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b700d4566425eb615dfde27c8ba2b2b8b9042d2", + "fields": { + "code_commune_insee": "71373", + "nom_de_la_commune": "ROMENAY", + "code_postal": "71470", + "coordonnees_gps": [ + 46.5142649874, + 5.08147006476 + ], + "libelle_d_acheminement": "ROMENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08147006476, + 46.5142649874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80eee6d72c168d2f080073677ff74b9737015926", + "fields": { + "code_commune_insee": "71376", + "nom_de_la_commune": "ROUSSILLON EN MORVAN", + "code_postal": "71550", + "coordonnees_gps": [ + 47.0214021445, + 4.10448328724 + ], + "libelle_d_acheminement": "ROUSSILLON EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10448328724, + 47.0214021445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75aa0930b94d0735759faa42d79233c019e3b15a", + "fields": { + "code_commune_insee": "71378", + "nom_de_la_commune": "RULLY", + "code_postal": "71150", + "coordonnees_gps": [ + 46.8728849421, + 4.75062759298 + ], + "libelle_d_acheminement": "RULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75062759298, + 46.8728849421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b08c113c482355e9f39fa613dd8e29e5a251729", + "fields": { + "code_commune_insee": "71381", + "nom_de_la_commune": "SAILLY", + "code_postal": "71250", + "coordonnees_gps": [ + 46.5326888362, + 4.56213978811 + ], + "libelle_d_acheminement": "SAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56213978811, + 46.5326888362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "854f942b9896e78bf2d33be1d73e6e4e7753b8da", + "fields": { + "code_commune_insee": "71387", + "nom_de_la_commune": "ST ANDRE LE DESERT", + "code_postal": "71220", + "coordonnees_gps": [ + 46.4997623512, + 4.53459884587 + ], + "libelle_d_acheminement": "ST ANDRE LE DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53459884587, + 46.4997623512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff9ee6418db59fa3c0dd363371a50f16037f6e31", + "fields": { + "code_commune_insee": "71393", + "nom_de_la_commune": "ST BONNET DE CRAY", + "code_postal": "71340", + "coordonnees_gps": [ + 46.202568549, + 4.16340067325 + ], + "libelle_d_acheminement": "ST BONNET DE CRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16340067325, + 46.202568549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5c7838710f396ecd8fd8247d35243c2df7cbe53", + "fields": { + "code_commune_insee": "71394", + "nom_de_la_commune": "ST BONNET DE JOUX", + "code_postal": "71220", + "coordonnees_gps": [ + 46.4782854677, + 4.43348327243 + ], + "libelle_d_acheminement": "ST BONNET DE JOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43348327243, + 46.4782854677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16983aba691d2394d87f3613aba9e94ba5d04025", + "fields": { + "code_commune_insee": "71398", + "nom_de_la_commune": "ST CHRISTOPHE EN BRESSE", + "code_postal": "71370", + "coordonnees_gps": [ + 46.7454161376, + 4.99090268478 + ], + "libelle_d_acheminement": "ST CHRISTOPHE EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99090268478, + 46.7454161376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35aa2c891ad6a2d557f89cc3b6cce9785a5f488a", + "fields": { + "code_commune_insee": "71399", + "nom_de_la_commune": "ST CHRISTOPHE EN BRIONNAIS", + "code_postal": "71800", + "coordonnees_gps": [ + 46.2848533492, + 4.19005721567 + ], + "libelle_d_acheminement": "ST CHRISTOPHE EN BRIONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19005721567, + 46.2848533492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "764bdf109f7ef129e3148cdf3d8670dea25b1742", + "fields": { + "code_commune_insee": "71401", + "nom_de_la_commune": "STE CROIX EN BRESSE", + "code_postal": "71470", + "coordonnees_gps": [ + 46.5587984571, + 5.23823090911 + ], + "libelle_d_acheminement": "STE CROIX EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23823090911, + 46.5587984571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aee8ca6a1a8f059c5252ec5a44575e862f8c22d1", + "fields": { + "code_commune_insee": "71412", + "nom_de_la_commune": "ST EUSEBE", + "code_postal": "71210", + "coordonnees_gps": [ + 46.7211446083, + 4.45443642854 + ], + "libelle_d_acheminement": "ST EUSEBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45443642854, + 46.7211446083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "279e9e27ee27bd2fe8affd3a9344c5a76858bf59", + "fields": { + "code_commune_insee": "71414", + "nom_de_la_commune": "ST FORGEOT", + "code_postal": "71400", + "coordonnees_gps": [ + 47.0016193102, + 4.28632347567 + ], + "libelle_d_acheminement": "ST FORGEOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28632347567, + 47.0016193102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bb10863fd8a26a79d8258de4588b20e36f1c9db", + "fields": { + "code_commune_insee": "71416", + "nom_de_la_commune": "ST GENGOUX DE SCISSE", + "code_postal": "71260", + "coordonnees_gps": [ + 46.4618494936, + 4.77147556185 + ], + "libelle_d_acheminement": "ST GENGOUX DE SCISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77147556185, + 46.4618494936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e18b8cd87f92f9a79de647ed59033f4a1a7e24b2", + "fields": { + "code_commune_insee": "71424", + "nom_de_la_commune": "ST GERVAIS SUR COUCHES", + "code_postal": "71490", + "coordonnees_gps": [ + 46.9241932116, + 4.56778879306 + ], + "libelle_d_acheminement": "ST GERVAIS SUR COUCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56778879306, + 46.9241932116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f01cc6e25db18ee42387547cdf3836e00e98733", + "fields": { + "code_commune_insee": "71425", + "nom_de_la_commune": "ST GILLES", + "code_postal": "71510", + "coordonnees_gps": [ + 46.8776228817, + 4.66403200389 + ], + "libelle_d_acheminement": "ST GILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66403200389, + 46.8776228817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c7abfef3e02e358d3effce5e2ab64ac9fe033e1", + "fields": { + "code_commune_insee": "71436", + "nom_de_la_commune": "ST LAURENT D ANDENAY", + "code_postal": "71210", + "coordonnees_gps": [ + 46.7305082565, + 4.51202776715 + ], + "libelle_d_acheminement": "ST LAURENT D ANDENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51202776715, + 46.7305082565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd2922b3cbda9af277690437cf18564aa9455c59", + "fields": { + "code_commune_insee": "71442", + "nom_de_la_commune": "ST LEGER SUR DHEUNE", + "code_postal": "71510", + "coordonnees_gps": [ + 46.8382241352, + 4.64131133343 + ], + "libelle_d_acheminement": "ST LEGER SUR DHEUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64131133343, + 46.8382241352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28eacbb707db6eebb999d27f91b892acbe0a2ae8", + "fields": { + "code_commune_insee": "71445", + "nom_de_la_commune": "ST MARCEL", + "code_postal": "71380", + "coordonnees_gps": [ + 46.77487928, + 4.88727108461 + ], + "libelle_d_acheminement": "ST MARCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88727108461, + 46.77487928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e70f1d31cd2d0ef2e76e99ec5628428a5a722ddb", + "fields": { + "code_commune_insee": "71449", + "nom_de_la_commune": "ST MARTIN D AUXY", + "code_postal": "71390", + "coordonnees_gps": [ + 46.7213262279, + 4.55075657116 + ], + "libelle_d_acheminement": "ST MARTIN D AUXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55075657116, + 46.7213262279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "624e1813297c7e0020987406ee9993e020f110ff", + "fields": { + "code_commune_insee": "71471", + "nom_de_la_commune": "ST PRIVE", + "code_postal": "71390", + "coordonnees_gps": [ + 46.6996790734, + 4.57526174797 + ], + "libelle_d_acheminement": "ST PRIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57526174797, + 46.6996790734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90b10990928f652c1d70e2a02dcce33fed4aac93", + "fields": { + "code_commune_insee": "71474", + "nom_de_la_commune": "STE RADEGONDE", + "code_postal": "71320", + "coordonnees_gps": [ + 46.6939905917, + 4.07946252508 + ], + "libelle_d_acheminement": "STE RADEGONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07946252508, + 46.6939905917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bad97748fea06901ce919c03195fde8cdc0ff7a", + "fields": { + "code_commune_insee": "71475", + "nom_de_la_commune": "ST REMY", + "code_postal": "71100", + "coordonnees_gps": [ + 46.7602643306, + 4.82122632524 + ], + "libelle_d_acheminement": "ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82122632524, + 46.7602643306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4439b6121d4e8895abce2c34397149e4f1cb7593", + "fields": { + "code_commune_insee": "71477", + "nom_de_la_commune": "ST ROMAIN SOUS GOURDON", + "code_postal": "71230", + "coordonnees_gps": [ + 46.6170899923, + 4.41147294378 + ], + "libelle_d_acheminement": "ST ROMAIN SOUS GOURDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41147294378, + 46.6170899923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d69a10a20cbe9cc44983bd22ee2b1d2f2293a401", + "fields": { + "code_commune_insee": "71479", + "nom_de_la_commune": "ST SERNIN DU BOIS", + "code_postal": "71200", + "coordonnees_gps": [ + 46.8386475435, + 4.42378430368 + ], + "libelle_d_acheminement": "ST SERNIN DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42378430368, + 46.8386475435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34272471619bf7d5317c5eb9f77172f39908b21d", + "fields": { + "code_commune_insee": "71481", + "nom_de_la_commune": "ST SYMPHORIEN D ANCELLES", + "code_postal": "71570", + "coordonnees_gps": [ + 46.1956267392, + 4.77196064471 + ], + "libelle_d_acheminement": "ST SYMPHORIEN D ANCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77196064471, + 46.1956267392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b012959c48f87a08314f3cdcd5bb21e3aa0b5bc2", + "fields": { + "ligne_5": "ST ROMAIN DES ILES", + "code_commune_insee": "71481", + "libelle_d_acheminement": "ST SYMPHORIEN D ANCELLES", + "code_postal": "71570", + "nom_de_la_commune": "ST SYMPHORIEN D ANCELLES", + "coordonnees_gps": [ + 46.1956267392, + 4.77196064471 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77196064471, + 46.1956267392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd226f875ec8830fd66a822a5bbf55fd7be7dfd9", + "fields": { + "ligne_5": "BRAGNY EN CHAROLLAIS", + "code_commune_insee": "71490", + "libelle_d_acheminement": "ST VINCENT BRAGNY", + "code_postal": "71430", + "nom_de_la_commune": "ST VINCENT BRAGNY", + "coordonnees_gps": [ + 46.5253910915, + 4.12604476033 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12604476033, + 46.5253910915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bf4300306158da21a89da03dcff580f695653e0", + "fields": { + "code_commune_insee": "71491", + "nom_de_la_commune": "ST YAN", + "code_postal": "71600", + "coordonnees_gps": [ + 46.4071746209, + 4.05766988687 + ], + "libelle_d_acheminement": "ST YAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05766988687, + 46.4071746209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94f833ae571a0133588ff1328cbc44f8d782f768", + "fields": { + "code_commune_insee": "71495", + "nom_de_la_commune": "SALORNAY SUR GUYE", + "code_postal": "71250", + "coordonnees_gps": [ + 46.5174514836, + 4.6006444858 + ], + "libelle_d_acheminement": "SALORNAY SUR GUYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6006444858, + 46.5174514836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec4cb87ba75b3ed4932ed74a4699b250352594d5", + "fields": { + "code_commune_insee": "71497", + "nom_de_la_commune": "SANCE", + "code_postal": "71000", + "coordonnees_gps": [ + 46.339587047, + 4.83540535119 + ], + "libelle_d_acheminement": "SANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83540535119, + 46.339587047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e60e033ec2bece9b2263756276dd61ad5a7a418b", + "fields": { + "code_commune_insee": "71509", + "nom_de_la_commune": "LA CELLE EN MORVAN", + "code_postal": "71400", + "coordonnees_gps": [ + 47.0074409579, + 4.17854772292 + ], + "libelle_d_acheminement": "LA CELLE EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17854772292, + 47.0074409579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe03fc7abfec6c2a3a2dce6862f5349882abfe7f", + "fields": { + "code_commune_insee": "71510", + "nom_de_la_commune": "SEMUR EN BRIONNAIS", + "code_postal": "71110", + "coordonnees_gps": [ + 46.2756396728, + 4.09014154762 + ], + "libelle_d_acheminement": "SEMUR EN BRIONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09014154762, + 46.2756396728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "879246d0940c3a665b76fcd865746308d198bf99", + "fields": { + "code_commune_insee": "71521", + "nom_de_la_commune": "SIGY LE CHATEL", + "code_postal": "71250", + "coordonnees_gps": [ + 46.5550063126, + 4.57085100441 + ], + "libelle_d_acheminement": "SIGY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57085100441, + 46.5550063126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2f028ba4afdd90e334b05df47ee94669572a859", + "fields": { + "code_commune_insee": "71527", + "nom_de_la_commune": "SOMMANT", + "code_postal": "71540", + "coordonnees_gps": [ + 47.0533646393, + 4.20964551396 + ], + "libelle_d_acheminement": "SOMMANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20964551396, + 47.0533646393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98f346b12fd95dbf081e1fe3e82d02fb1a078878", + "fields": { + "code_commune_insee": "71530", + "nom_de_la_commune": "SULLY", + "code_postal": "71360", + "coordonnees_gps": [ + 46.9880333381, + 4.45705111324 + ], + "libelle_d_acheminement": "SULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45705111324, + 46.9880333381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37a8ac26be4121d7160f170c6fa8b54008622688", + "fields": { + "code_commune_insee": "71535", + "nom_de_la_commune": "TAVERNAY", + "code_postal": "71400", + "coordonnees_gps": [ + 47.0078509175, + 4.23537137971 + ], + "libelle_d_acheminement": "TAVERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23537137971, + 47.0078509175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6be1ca49d9584552d987f7845afd6ce72f64f31b", + "fields": { + "code_commune_insee": "71546", + "nom_de_la_commune": "TRAMBLY", + "code_postal": "71520", + "coordonnees_gps": [ + 46.3310184112, + 4.53251400851 + ], + "libelle_d_acheminement": "TRAMBLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53251400851, + 46.3310184112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8415c82e5e015590e457ebe1a169e790c01c891f", + "fields": { + "code_commune_insee": "71549", + "nom_de_la_commune": "LA TRUCHERE", + "code_postal": "71290", + "coordonnees_gps": [ + 46.5167546433, + 4.95800393539 + ], + "libelle_d_acheminement": "LA TRUCHERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95800393539, + 46.5167546433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "123aab75c06a2d3c539990e38f4397d3d7fc095e", + "fields": { + "code_commune_insee": "71552", + "nom_de_la_commune": "UXEAU", + "code_postal": "71130", + "coordonnees_gps": [ + 46.6565301063, + 4.04556319316 + ], + "libelle_d_acheminement": "UXEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04556319316, + 46.6565301063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eebb8937dab81b35807e7057b580f23e624df3c4", + "fields": { + "code_commune_insee": "71559", + "nom_de_la_commune": "VARENNES SOUS DUN", + "code_postal": "71800", + "coordonnees_gps": [ + 46.2783435067, + 4.33879272705 + ], + "libelle_d_acheminement": "VARENNES SOUS DUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33879272705, + 46.2783435067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "501f9397ce0147078009281c353c6427fd797d31", + "fields": { + "code_commune_insee": "71561", + "nom_de_la_commune": "VAUBAN", + "code_postal": "71800", + "coordonnees_gps": [ + 46.2639696284, + 4.22242971083 + ], + "libelle_d_acheminement": "VAUBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22242971083, + 46.2639696284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a642f550b2582840b64d9963b28ab33fff1e71fb", + "fields": { + "code_commune_insee": "71572", + "nom_de_la_commune": "VERS", + "code_postal": "71240", + "coordonnees_gps": [ + 46.5829437707, + 4.85548745852 + ], + "libelle_d_acheminement": "VERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85548745852, + 46.5829437707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73772cd867891fb3839ad4eb49d33a1a037f5849", + "fields": { + "code_commune_insee": "71580", + "nom_de_la_commune": "VINCELLES", + "code_postal": "71500", + "coordonnees_gps": [ + 46.6645202679, + 5.22488404549 + ], + "libelle_d_acheminement": "VINCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22488404549, + 46.6645202679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "925a01d852a0ff944f6c91961c3c095d247087f5", + "fields": { + "code_commune_insee": "71584", + "nom_de_la_commune": "VIRE", + "code_postal": "71260", + "coordonnees_gps": [ + 46.4445923499, + 4.84966677485 + ], + "libelle_d_acheminement": "VIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84966677485, + 46.4445923499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bf97baea521e4a43b9edecddc502dc14aa7fb74", + "fields": { + "code_commune_insee": "71585", + "nom_de_la_commune": "VIREY LE GRAND", + "code_postal": "71530", + "coordonnees_gps": [ + 46.8524193794, + 4.86945646379 + ], + "libelle_d_acheminement": "VIREY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86945646379, + 46.8524193794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4efda50f442c971f64635dda6f1d26dd44ffa25", + "fields": { + "code_commune_insee": "71586", + "nom_de_la_commune": "VIRY", + "code_postal": "71120", + "coordonnees_gps": [ + 46.4724060725, + 4.33771715478 + ], + "libelle_d_acheminement": "VIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33771715478, + 46.4724060725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e472d6e5a2ac7f715896fe8faf8807a094b0441", + "fields": { + "code_commune_insee": "72006", + "nom_de_la_commune": "ARCONNAY", + "code_postal": "72610", + "coordonnees_gps": [ + 48.3954879492, + 0.0811301798508 + ], + "libelle_d_acheminement": "ARCONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0811301798508, + 48.3954879492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4156c4165e67dbc68594ed040b8fbb87e1a2dc6", + "fields": { + "code_commune_insee": "72011", + "nom_de_la_commune": "ASSE LE BOISNE", + "code_postal": "72130", + "coordonnees_gps": [ + 48.3216528559, + -0.00324343366865 + ], + "libelle_d_acheminement": "ASSE LE BOISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00324343366865, + 48.3216528559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cfcb9260eaa22a0559e5a19b78de9391215f449", + "fields": { + "code_commune_insee": "72017", + "nom_de_la_commune": "AUVERS SOUS MONTFAUCON", + "code_postal": "72540", + "coordonnees_gps": [ + 48.0011977503, + -0.0746551164135 + ], + "libelle_d_acheminement": "AUVERS SOUS MONTFAUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0746551164135, + 48.0011977503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffed6f82e99c00825fca1a8caa1cfb0dc5d0af87", + "fields": { + "code_commune_insee": "72020", + "nom_de_la_commune": "AVEZE", + "code_postal": "72400", + "coordonnees_gps": [ + 48.2343214233, + 0.672495766191 + ], + "libelle_d_acheminement": "AVEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.672495766191, + 48.2343214233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59cd3b83b6fdb3862dfe69f2204f1b02a1eceda9", + "fields": { + "ligne_5": "BAZOUGES SUR LE LOIR", + "code_commune_insee": "72025", + "libelle_d_acheminement": "BAZOUGES CRE SUR LOIR", + "code_postal": "72200", + "nom_de_la_commune": "BAZOUGES CRE SUR LOIR", + "coordonnees_gps": [ + 47.6856990287, + -0.172011886332 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.172011886332, + 47.6856990287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9935a77517f59e10a60682922b9d048887f9aa84", + "fields": { + "code_commune_insee": "72039", + "nom_de_la_commune": "BONNETABLE", + "code_postal": "72110", + "coordonnees_gps": [ + 48.18474164, + 0.452449305895 + ], + "libelle_d_acheminement": "BONNETABLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.452449305895, + 48.18474164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01d9a8e51fbb49d1efb2c62e527823c598d8cd6b", + "fields": { + "code_commune_insee": "72045", + "nom_de_la_commune": "BRAINS SUR GEE", + "code_postal": "72550", + "coordonnees_gps": [ + 48.0097032221, + -0.0269752604251 + ], + "libelle_d_acheminement": "BRAINS SUR GEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0269752604251, + 48.0097032221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aa10436636d33f9c07d968991825fc0578c834c", + "fields": { + "code_commune_insee": "72051", + "nom_de_la_commune": "CERANS FOULLETOURTE", + "code_postal": "72330", + "coordonnees_gps": [ + 47.8339032596, + 0.0696644872215 + ], + "libelle_d_acheminement": "CERANS FOULLETOURTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0696644872215, + 47.8339032596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c991e185bb208429772bef294f8f1a836e658c65", + "fields": { + "code_commune_insee": "72065", + "nom_de_la_commune": "LA CHAPELLE ST AUBIN", + "code_postal": "72650", + "coordonnees_gps": [ + 48.0357837611, + 0.156697987071 + ], + "libelle_d_acheminement": "LA CHAPELLE ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.156697987071, + 48.0357837611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24cba11a2124f7bfeca2a01cdc7d751293db3db3", + "fields": { + "code_commune_insee": "72070", + "nom_de_la_commune": "CHASSILLE", + "code_postal": "72540", + "coordonnees_gps": [ + 48.0213480631, + -0.127209826209 + ], + "libelle_d_acheminement": "CHASSILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.127209826209, + 48.0213480631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c17497ecb10d5d886f25d9171ee79f2dd9267bc1", + "fields": { + "code_commune_insee": "72072", + "nom_de_la_commune": "CHATEAU L HERMITAGE", + "code_postal": "72510", + "coordonnees_gps": [ + 47.8022785256, + 0.199179125064 + ], + "libelle_d_acheminement": "CHATEAU L HERMITAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.199179125064, + 47.8022785256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f61e2e361559e83312e4d87a1c3b717e9170a52", + "fields": { + "code_commune_insee": "72087", + "nom_de_la_commune": "CONFLANS SUR ANILLE", + "code_postal": "72120", + "coordonnees_gps": [ + 47.9722293803, + 0.726834150431 + ], + "libelle_d_acheminement": "CONFLANS SUR ANILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.726834150431, + 47.9722293803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "239c981bfa58f0dea87add98fd5eb89365890c6b", + "fields": { + "code_commune_insee": "72090", + "nom_de_la_commune": "CONNERRE", + "code_postal": "72160", + "coordonnees_gps": [ + 48.0507447506, + 0.467977281249 + ], + "libelle_d_acheminement": "CONNERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.467977281249, + 48.0507447506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44a416de28266100552a0c8ab4d811f9cbd2c271", + "fields": { + "code_commune_insee": "72102", + "nom_de_la_commune": "COURCIVAL", + "code_postal": "72110", + "coordonnees_gps": [ + 48.2356656614, + 0.391626010989 + ], + "libelle_d_acheminement": "COURCIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.391626010989, + 48.2356656614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faa5b1458b7880365626e231a55615db0b519c77", + "fields": { + "code_commune_insee": "72103", + "nom_de_la_commune": "COURDEMANCHE", + "code_postal": "72150", + "coordonnees_gps": [ + 47.8164349745, + 0.555120405736 + ], + "libelle_d_acheminement": "COURDEMANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.555120405736, + 47.8164349745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "312f88fd0586fe20991fe2caee77ed50bec7d30b", + "fields": { + "code_commune_insee": "72111", + "nom_de_la_commune": "CURES", + "code_postal": "72240", + "coordonnees_gps": [ + 48.0846394961, + 0.0166005701727 + ], + "libelle_d_acheminement": "CURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0166005701727, + 48.0846394961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df4b940126c37fce4fb80566265a6c34d2b01e43", + "fields": { + "code_commune_insee": "72112", + "nom_de_la_commune": "DANGEUL", + "code_postal": "72260", + "coordonnees_gps": [ + 48.2490170643, + 0.260997204151 + ], + "libelle_d_acheminement": "DANGEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.260997204151, + 48.2490170643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c922c9dfcbb8bcffae5a4a5f81634e2175428c71", + "fields": { + "code_commune_insee": "72115", + "nom_de_la_commune": "DISSAY SOUS COURCILLON", + "code_postal": "72500", + "coordonnees_gps": [ + 47.6664102233, + 0.484524622495 + ], + "libelle_d_acheminement": "DISSAY SOUS COURCILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.484524622495, + 47.6664102233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba42cb7694aa5b105a769a27a7e2644ad7e043d", + "fields": { + "code_commune_insee": "72129", + "nom_de_la_commune": "FATINES", + "code_postal": "72470", + "coordonnees_gps": [ + 48.0463106923, + 0.334777230729 + ], + "libelle_d_acheminement": "FATINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.334777230729, + 48.0463106923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d44b214479c492b7f8ba0083488b99a1abd397d", + "fields": { + "code_commune_insee": "72131", + "nom_de_la_commune": "FERCE SUR SARTHE", + "code_postal": "72430", + "coordonnees_gps": [ + 47.8973212837, + -0.0356446886658 + ], + "libelle_d_acheminement": "FERCE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0356446886658, + 47.8973212837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8bbd2881a52f4d1cb1e124999d7f9a6e16f7944", + "fields": { + "code_commune_insee": "72137", + "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", + "code_postal": "72600", + "coordonnees_gps": [ + 48.4380499533, + 0.236852667784 + ], + "libelle_d_acheminement": "VILLENEUVE EN PERSEIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236852667784, + 48.4380499533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "423ceb03ee1c777b621f9c1aba88cb1f55975a8c", + "fields": { + "ligne_5": "COULOMBIERS", + "code_commune_insee": "72138", + "libelle_d_acheminement": "FRESNAY SUR SARTHE", + "code_postal": "72130", + "nom_de_la_commune": "FRESNAY SUR SARTHE", + "coordonnees_gps": [ + 48.2817396551, + 0.0228368822752 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0228368822752, + 48.2817396551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "683a3a90ae2a5220824244ef946165f73eb5bfec", + "fields": { + "code_commune_insee": "72141", + "nom_de_la_commune": "GESNES LE GANDELIN", + "code_postal": "72130", + "coordonnees_gps": [ + 48.3576711707, + 0.0296457032236 + ], + "libelle_d_acheminement": "GESNES LE GANDELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0296457032236, + 48.3576711707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ca4d09af0f8024c8b82e555202cad87eddf0d84", + "fields": { + "code_commune_insee": "72142", + "nom_de_la_commune": "GRANDCHAMP", + "code_postal": "72610", + "coordonnees_gps": [ + 48.3069428443, + 0.181392823725 + ], + "libelle_d_acheminement": "GRANDCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.181392823725, + 48.3069428443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87df532acbf8be6a79d1951388b83f52ea5ab090", + "fields": { + "code_commune_insee": "72147", + "nom_de_la_commune": "LA GUIERCHE", + "code_postal": "72380", + "coordonnees_gps": [ + 48.1185093654, + 0.20108783128 + ], + "libelle_d_acheminement": "LA GUIERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20108783128, + 48.1185093654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c9942e6e012d3273047c33e534d6d2aafdfd5b8", + "fields": { + "code_commune_insee": "72155", + "nom_de_la_commune": "LAIGNE EN BELIN", + "code_postal": "72220", + "coordonnees_gps": [ + 47.8682405593, + 0.233744073595 + ], + "libelle_d_acheminement": "LAIGNE EN BELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.233744073595, + 47.8682405593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3de1c18e1eef7d77eb92b96662645449fb7074cb", + "fields": { + "code_commune_insee": "72161", + "nom_de_la_commune": "LHOMME", + "code_postal": "72340", + "coordonnees_gps": [ + 47.7605490341, + 0.563670508119 + ], + "libelle_d_acheminement": "LHOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.563670508119, + 47.7605490341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac230ef8ab2dbec5300439611d1a25d6fb4c51a4", + "fields": { + "code_commune_insee": "72165", + "nom_de_la_commune": "LOMBRON", + "code_postal": "72450", + "coordonnees_gps": [ + 48.0861652592, + 0.412614616268 + ], + "libelle_d_acheminement": "LOMBRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.412614616268, + 48.0861652592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c272ca4cf74f46a5a188e16d13b997138d78218a", + "fields": { + "code_commune_insee": "72167", + "nom_de_la_commune": "LOUAILLES", + "code_postal": "72300", + "coordonnees_gps": [ + 47.78323872, + -0.239390755386 + ], + "libelle_d_acheminement": "LOUAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.239390755386, + 47.78323872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adfb7757110cf7755e72e4b3c36fd56d2dbb7008", + "fields": { + "code_commune_insee": "72196", + "nom_de_la_commune": "MEZIERES SUR PONTHOUIN", + "code_postal": "72290", + "coordonnees_gps": [ + 48.2022359732, + 0.297930869305 + ], + "libelle_d_acheminement": "MEZIERES SUR PONTHOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.297930869305, + 48.2022359732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "438fa86ebae922715b7c1124fe1b5dce9cb14cd1", + "fields": { + "code_commune_insee": "72199", + "nom_de_la_commune": "MOITRON SUR SARTHE", + "code_postal": "72170", + "coordonnees_gps": [ + 48.247330734, + 0.0603406887736 + ], + "libelle_d_acheminement": "MOITRON SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0603406887736, + 48.247330734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e939a4c42d8a8690aa9db37ea08c3dafa0bd0bb5", + "fields": { + "code_commune_insee": "72208", + "nom_de_la_commune": "MONTMIRAIL", + "code_postal": "72320", + "coordonnees_gps": [ + 48.1072506737, + 0.771306974355 + ], + "libelle_d_acheminement": "MONTMIRAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.771306974355, + 48.1072506737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc90d58a59a5f89a735abaa184063df3bec5a312", + "fields": { + "code_commune_insee": "72215", + "nom_de_la_commune": "NEUFCHATEL EN SAOSNOIS", + "code_postal": "72600", + "coordonnees_gps": [ + 48.3875624138, + 0.245183264636 + ], + "libelle_d_acheminement": "NEUFCHATEL EN SAOSNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.245183264636, + 48.3875624138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b8ee7a1de4fad412b77de58835e7442397c2e77", + "fields": { + "code_commune_insee": "72217", + "nom_de_la_commune": "NEUVILLE SUR SARTHE", + "code_postal": "72190", + "coordonnees_gps": [ + 48.0756439927, + 0.214405547448 + ], + "libelle_d_acheminement": "NEUVILLE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.214405547448, + 48.0756439927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19b4e6debffd448f143bf71ff29ede4e99e853fa", + "fields": { + "code_commune_insee": "72218", + "nom_de_la_commune": "NEUVILLETTE EN CHARNIE", + "code_postal": "72140", + "coordonnees_gps": [ + 48.0874982634, + -0.207010580824 + ], + "libelle_d_acheminement": "NEUVILLETTE EN CHARNIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.207010580824, + 48.0874982634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28563da7ddb4ad4c41c1717797d61187bddd2fc4", + "fields": { + "code_commune_insee": "72220", + "nom_de_la_commune": "NOGENT LE BERNARD", + "code_postal": "72110", + "coordonnees_gps": [ + 48.2395023122, + 0.503482769952 + ], + "libelle_d_acheminement": "NOGENT LE BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.503482769952, + 48.2395023122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b28da8490c177e24374fb14f3dcfb8e70e6269d", + "fields": { + "code_commune_insee": "72225", + "nom_de_la_commune": "OISSEAU LE PETIT", + "code_postal": "72610", + "coordonnees_gps": [ + 48.3488422257, + 0.0741365485752 + ], + "libelle_d_acheminement": "OISSEAU LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0741365485752, + 48.3488422257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff806fae63e88553a9ccd8b0dd2b63c07635679e", + "fields": { + "code_commune_insee": "72230", + "nom_de_la_commune": "PARIGNE LE POLIN", + "code_postal": "72330", + "coordonnees_gps": [ + 47.8560377991, + 0.124440147574 + ], + "libelle_d_acheminement": "PARIGNE LE POLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.124440147574, + 47.8560377991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "973c284b6c7f3abb2cc50997a349509dfd66f530", + "fields": { + "code_commune_insee": "72233", + "nom_de_la_commune": "PERAY", + "code_postal": "72260", + "coordonnees_gps": [ + 48.2500157703, + 0.370719916731 + ], + "libelle_d_acheminement": "PERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.370719916731, + 48.2500157703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dadbc025950acd163ecacdab3b3e8a661e85e40", + "fields": { + "code_commune_insee": "72234", + "nom_de_la_commune": "PEZE LE ROBERT", + "code_postal": "72140", + "coordonnees_gps": [ + 48.202501305, + -0.0424195278143 + ], + "libelle_d_acheminement": "PEZE LE ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0424195278143, + 48.202501305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf04f6e3e2ee58c0fe9f92ae4991810a0061776d", + "fields": { + "code_commune_insee": "72251", + "nom_de_la_commune": "RENE", + "code_postal": "72260", + "coordonnees_gps": [ + 48.2766544769, + 0.217202160114 + ], + "libelle_d_acheminement": "RENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.217202160114, + 48.2766544769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52e3ca9e60df4b5441275c191bd99fbffa7c57a5", + "fields": { + "code_commune_insee": "72256", + "nom_de_la_commune": "ROUEZ", + "code_postal": "72140", + "coordonnees_gps": [ + 48.1376844826, + -0.119954104642 + ], + "libelle_d_acheminement": "ROUEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.119954104642, + 48.1376844826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd1bb5857e72bc8d0f20d16409834ac2954cd6b0", + "fields": { + "code_commune_insee": "72261", + "nom_de_la_commune": "RUILLE EN CHAMPAGNE", + "code_postal": "72240", + "coordonnees_gps": [ + 48.0569761583, + -0.11518703174 + ], + "libelle_d_acheminement": "RUILLE EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11518703174, + 48.0569761583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "660ef8302f20dc3051b1f0cb8128abb38a08b304", + "fields": { + "ligne_5": "PONT DE BRAYE", + "code_commune_insee": "72262", + "libelle_d_acheminement": "LOIR EN VALLEE", + "code_postal": "72340", + "nom_de_la_commune": "LOIR EN VALLEE", + "coordonnees_gps": [ + 47.7854221078, + 0.618393311988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.618393311988, + 47.7854221078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dde1a68bfbe9d433b59dc242229d81d2872730ba", + "fields": { + "ligne_5": "RUILLE SUR LOIR", + "code_commune_insee": "72262", + "libelle_d_acheminement": "LOIR EN VALLEE", + "code_postal": "72340", + "nom_de_la_commune": "LOIR EN VALLEE", + "coordonnees_gps": [ + 47.7854221078, + 0.618393311988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.618393311988, + 47.7854221078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f1c735b88a351b7d6e319bdb47054a87de04923", + "fields": { + "code_commune_insee": "72267", + "nom_de_la_commune": "ST AUBIN DES COUDRAIS", + "code_postal": "72400", + "coordonnees_gps": [ + 48.1788442585, + 0.579073483742 + ], + "libelle_d_acheminement": "ST AUBIN DES COUDRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.579073483742, + 48.1788442585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40964b073f3013b8c2db687e3eccc6d42c6717fd", + "fields": { + "code_commune_insee": "72271", + "nom_de_la_commune": "ST CELERIN", + "code_postal": "72110", + "coordonnees_gps": [ + 48.1258397672, + 0.433533893718 + ], + "libelle_d_acheminement": "ST CELERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.433533893718, + 48.1258397672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f33aef68d3499057b7405055a1b704ca4d557c09", + "fields": { + "code_commune_insee": "72278", + "nom_de_la_commune": "ST DENIS D ORQUES", + "code_postal": "72350", + "coordonnees_gps": [ + 48.0311233627, + -0.275648536634 + ], + "libelle_d_acheminement": "ST DENIS D ORQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.275648536634, + 48.0311233627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c05b0093ee1664c6ab4abcc5210a2964116d4ee", + "fields": { + "ligne_5": "ANTOIGNE", + "code_commune_insee": "72289", + "libelle_d_acheminement": "STE JAMME SUR SARTHE", + "code_postal": "72380", + "nom_de_la_commune": "STE JAMME SUR SARTHE", + "coordonnees_gps": [ + 48.138410724, + 0.158484582373 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.158484582373, + 48.138410724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb428cd23bcd1d36a2e71f264b665108bda721c7", + "fields": { + "code_commune_insee": "72290", + "nom_de_la_commune": "ST JEAN D ASSE", + "code_postal": "72380", + "coordonnees_gps": [ + 48.158356786, + 0.121471172036 + ], + "libelle_d_acheminement": "ST JEAN D ASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.121471172036, + 48.158356786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3b02de2e2b41a1da17293bf46560d5f12ac0a27", + "fields": { + "code_commune_insee": "72292", + "nom_de_la_commune": "ST JEAN DES ECHELLES", + "code_postal": "72320", + "coordonnees_gps": [ + 48.1309646826, + 0.733209725788 + ], + "libelle_d_acheminement": "ST JEAN DES ECHELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.733209725788, + 48.1309646826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2682af71b7f57eaa595e2511cbaac66986b5292", + "fields": { + "code_commune_insee": "72295", + "nom_de_la_commune": "ST LONGIS", + "code_postal": "72600", + "coordonnees_gps": [ + 48.3534054858, + 0.336993327744 + ], + "libelle_d_acheminement": "ST LONGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.336993327744, + 48.3534054858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cd8085193b1517bf7ae5cdd0a1d7960348432aa", + "fields": { + "code_commune_insee": "72298", + "nom_de_la_commune": "ST MARS DE LOCQUENAY", + "code_postal": "72440", + "coordonnees_gps": [ + 47.9317580131, + 0.506038620378 + ], + "libelle_d_acheminement": "ST MARS DE LOCQUENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.506038620378, + 47.9317580131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb6ea119e4c8f443a6861c2b5376d782f4b68149", + "fields": { + "code_commune_insee": "72300", + "nom_de_la_commune": "ST MARS LA BRIERE", + "code_postal": "72470", + "coordonnees_gps": [ + 48.0174931387, + 0.378790037048 + ], + "libelle_d_acheminement": "ST MARS LA BRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.378790037048, + 48.0174931387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "079db145a080ec451f2a55cd13522918768310ea", + "fields": { + "code_commune_insee": "72310", + "nom_de_la_commune": "ST PAVACE", + "code_postal": "72190", + "coordonnees_gps": [ + 48.0410090578, + 0.194891549504 + ], + "libelle_d_acheminement": "ST PAVACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.194891549504, + 48.0410090578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a7155a7e14524b3728c099b56d34578a051838c", + "fields": { + "code_commune_insee": "72315", + "nom_de_la_commune": "ST REMY DE SILLE", + "code_postal": "72140", + "coordonnees_gps": [ + 48.1814893411, + -0.102928256564 + ], + "libelle_d_acheminement": "ST REMY DE SILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.102928256564, + 48.1814893411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9b685ccfc8730d0c59d5c93d48c67f6ac098745", + "fields": { + "code_commune_insee": "72323", + "nom_de_la_commune": "ST VICTEUR", + "code_postal": "72130", + "coordonnees_gps": [ + 48.3169882456, + 0.0374842816825 + ], + "libelle_d_acheminement": "ST VICTEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0374842816825, + 48.3169882456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0329c2d76a69fd11f46fb92689d259d057645254", + "fields": { + "code_commune_insee": "72327", + "nom_de_la_commune": "SARCE", + "code_postal": "72360", + "coordonnees_gps": [ + 47.7223246034, + 0.228700458643 + ], + "libelle_d_acheminement": "SARCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.228700458643, + 47.7223246034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e73b59fc9836ae6dcef682e25c495f7a84458cc4", + "fields": { + "code_commune_insee": "72330", + "nom_de_la_commune": "SAVIGNE SOUS LE LUDE", + "code_postal": "72800", + "coordonnees_gps": [ + 47.629906916, + 0.0724159454527 + ], + "libelle_d_acheminement": "SAVIGNE SOUS LE LUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0724159454527, + 47.629906916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bbf529d96e1e0e738bd484ed08938a27dba2055", + "fields": { + "code_commune_insee": "72334", + "nom_de_la_commune": "SILLE LE GUILLAUME", + "code_postal": "72140", + "coordonnees_gps": [ + 48.1864769196, + -0.132591918679 + ], + "libelle_d_acheminement": "SILLE LE GUILLAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.132591918679, + 48.1864769196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e917d002d0d2e18c93eaf7aff23a5a9708d1e2d", + "fields": { + "code_commune_insee": "72337", + "nom_de_la_commune": "SOUGE LE GANELON", + "code_postal": "72130", + "coordonnees_gps": [ + 48.3147256299, + -0.0444490879879 + ], + "libelle_d_acheminement": "SOUGE LE GANELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0444490879879, + 48.3147256299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f9a6a3a36d307271a85604245b47f9a9a976338", + "fields": { + "code_commune_insee": "72338", + "nom_de_la_commune": "SOUILLE", + "code_postal": "72380", + "coordonnees_gps": [ + 48.1201531494, + 0.17339248534 + ], + "libelle_d_acheminement": "SOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17339248534, + 48.1201531494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "519745ab2d7688ff4877dfbfddca7bb6a3272074", + "fields": { + "code_commune_insee": "72353", + "nom_de_la_commune": "THELIGNY", + "code_postal": "72320", + "coordonnees_gps": [ + 48.1717914833, + 0.785600114205 + ], + "libelle_d_acheminement": "THELIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.785600114205, + 48.1717914833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd16bd28d05fe99672d127f961813dddadefa58c", + "fields": { + "code_commune_insee": "72355", + "nom_de_la_commune": "THOIRE SOUS CONTENSOR", + "code_postal": "72610", + "coordonnees_gps": [ + 48.3123639724, + 0.205432244367 + ], + "libelle_d_acheminement": "THOIRE SOUS CONTENSOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.205432244367, + 48.3123639724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72d7947a9cf50b0b0465b117dc4b84945b5f7e43", + "fields": { + "code_commune_insee": "72375", + "nom_de_la_commune": "VILLAINES LA GONAIS", + "code_postal": "72400", + "coordonnees_gps": [ + 48.13356803, + 0.608403023138 + ], + "libelle_d_acheminement": "VILLAINES LA GONAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.608403023138, + 48.13356803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b6146b2df098e7953e37f541c7b89c63362425e", + "fields": { + "code_commune_insee": "72378", + "nom_de_la_commune": "VION", + "code_postal": "72300", + "coordonnees_gps": [ + 47.8146942645, + -0.264230208564 + ], + "libelle_d_acheminement": "VION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.264230208564, + 47.8146942645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a7785918e80671920b6b1214dfbb7aa477cb0c5", + "fields": { + "code_commune_insee": "72385", + "nom_de_la_commune": "YVRE LE POLIN", + "code_postal": "72330", + "coordonnees_gps": [ + 47.8344620716, + 0.159510178703 + ], + "libelle_d_acheminement": "YVRE LE POLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.159510178703, + 47.8344620716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae0923bd592ffa544b08bc656fe300f33dfeb815", + "fields": { + "code_commune_insee": "72386", + "nom_de_la_commune": "YVRE L EVEQUE", + "code_postal": "72530", + "coordonnees_gps": [ + 48.0234127838, + 0.282137902604 + ], + "libelle_d_acheminement": "YVRE L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.282137902604, + 48.0234127838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32df1a8d0d67a06749c2a53bdb6f9fa4659535ef", + "fields": { + "ligne_5": "ST OYEN", + "code_commune_insee": "73003", + "libelle_d_acheminement": "GRAND AIGUEBLANCHE", + "code_postal": "73260", + "nom_de_la_commune": "GRAND AIGUEBLANCHE", + "coordonnees_gps": [ + 45.5198646844, + 6.51470725301 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51470725301, + 45.5198646844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61e7f8cfbd46d4971a88a8b28573beb37e4c92ef", + "fields": { + "code_commune_insee": "73005", + "nom_de_la_commune": "AILLON LE VIEUX", + "code_postal": "73340", + "coordonnees_gps": [ + 45.6506523863, + 6.08810624188 + ], + "libelle_d_acheminement": "AILLON LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08810624188, + 45.6506523863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee04af94bf1827fe1709ac1d85b3084c9b6d41ce", + "fields": { + "ligne_5": "LONGEFOY", + "code_commune_insee": "73006", + "libelle_d_acheminement": "AIME LA PLAGNE", + "code_postal": "73210", + "nom_de_la_commune": "AIME LA PLAGNE", + "coordonnees_gps": [ + 45.5525768932, + 6.61836974596 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61836974596, + 45.5525768932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc64a3a777b84a9f3c9ff1422a18202b9498651f", + "fields": { + "ligne_5": "MOGNARD", + "code_commune_insee": "73010", + "libelle_d_acheminement": "ENTRELACS", + "code_postal": "73410", + "nom_de_la_commune": "ENTRELACS", + "coordonnees_gps": [ + 45.789988746, + 5.93731067789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93731067789, + 45.789988746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6483d9f505eff8a956ac8e57f1bdc347a62d753a", + "fields": { + "code_commune_insee": "73020", + "nom_de_la_commune": "ARITH", + "code_postal": "73340", + "coordonnees_gps": [ + 45.7213212651, + 6.06342859728 + ], + "libelle_d_acheminement": "ARITH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06342859728, + 45.7213212651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44a8da882eed70589945866cb0426a3cd4b745ec", + "fields": { + "code_commune_insee": "73026", + "nom_de_la_commune": "AVRIEUX", + "code_postal": "73500", + "coordonnees_gps": [ + 45.1781016318, + 6.74676532189 + ], + "libelle_d_acheminement": "AVRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74676532189, + 45.1781016318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf244aa99dcaaf83a9b6281f3468533c4e65d818", + "fields": { + "code_commune_insee": "73027", + "nom_de_la_commune": "AYN", + "code_postal": "73470", + "coordonnees_gps": [ + 45.5715140758, + 5.74945889695 + ], + "libelle_d_acheminement": "AYN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74945889695, + 45.5715140758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c624176da985867a20a11c1d6b9fa2c9ca21276", + "fields": { + "code_commune_insee": "73042", + "nom_de_la_commune": "BILLIEME", + "code_postal": "73170", + "coordonnees_gps": [ + 45.7192241812, + 5.81460064999 + ], + "libelle_d_acheminement": "BILLIEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81460064999, + 45.7192241812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4dbb4400a92491dc13db91a5a0bf81d94e9f8c5", + "fields": { + "code_commune_insee": "73049", + "nom_de_la_commune": "BONVILLARET", + "code_postal": "73220", + "coordonnees_gps": [ + 45.5632077114, + 6.3154289465 + ], + "libelle_d_acheminement": "BONVILLARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3154289465, + 45.5632077114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4575317b16f7bf2a9b2bf15fb836f86a8243f851", + "fields": { + "code_commune_insee": "73051", + "nom_de_la_commune": "LE BOURGET DU LAC", + "code_postal": "73370", + "coordonnees_gps": [ + 45.6441486088, + 5.84622475132 + ], + "libelle_d_acheminement": "LE BOURGET DU LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84622475132, + 45.6441486088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d4d8ad9c8191e21e92110af339ebf588c22d378", + "fields": { + "code_commune_insee": "73053", + "nom_de_la_commune": "BOURGNEUF", + "code_postal": "73390", + "coordonnees_gps": [ + 45.552915929, + 6.24666170942 + ], + "libelle_d_acheminement": "BOURGNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24666170942, + 45.552915929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7605a8b2e1e90f4dfe90430994ffdc7e47201ee8", + "fields": { + "ligne_5": "LES ARCS", + "code_commune_insee": "73054", + "libelle_d_acheminement": "BOURG ST MAURICE", + "code_postal": "73700", + "nom_de_la_commune": "BOURG ST MAURICE", + "coordonnees_gps": [ + 45.6647980545, + 6.76637903907 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76637903907, + 45.6647980545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7a242e4e57f10fc997b94c1052d39d7b78f5fa2", + "fields": { + "code_commune_insee": "73067", + "nom_de_la_commune": "LA CHAMBRE", + "code_postal": "73130", + "coordonnees_gps": [ + 45.3669668762, + 6.29360957589 + ], + "libelle_d_acheminement": "LA CHAMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29360957589, + 45.3669668762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07aaed9d147821391ff3bfb96a2ba27a63b648f0", + "fields": { + "code_commune_insee": "73072", + "nom_de_la_commune": "CHAMP LAURENT", + "code_postal": "73390", + "coordonnees_gps": [ + 45.5074933777, + 6.20853295293 + ], + "libelle_d_acheminement": "CHAMP LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20853295293, + 45.5074933777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "672a75ef5c60a752db4de830bede6fa1c2200b0a", + "fields": { + "code_commune_insee": "73073", + "nom_de_la_commune": "CHANAZ", + "code_postal": "73310", + "coordonnees_gps": [ + 45.8034782998, + 5.79654546056 + ], + "libelle_d_acheminement": "CHANAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79654546056, + 45.8034782998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba3ebd1548eb5857dbf13ca1ada0c4c4ab85251d", + "fields": { + "code_commune_insee": "73084", + "nom_de_la_commune": "CHIGNIN", + "code_postal": "73800", + "coordonnees_gps": [ + 45.5235808519, + 6.0136049327 + ], + "libelle_d_acheminement": "CHIGNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0136049327, + 45.5235808519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "731372eea35761fa8adc9baa38066db83f3744c4", + "fields": { + "code_commune_insee": "73085", + "nom_de_la_commune": "CHINDRIEUX", + "code_postal": "73310", + "coordonnees_gps": [ + 45.8127166804, + 5.8446052441 + ], + "libelle_d_acheminement": "CHINDRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8446052441, + 45.8127166804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "193427da8ec8f6f2e4b220d0b2d0aa0b8bc37185", + "fields": { + "code_commune_insee": "73089", + "nom_de_la_commune": "COISE ST JEAN PIED GAUTHIER", + "code_postal": "73800", + "coordonnees_gps": [ + 45.5259224168, + 6.13092024983 + ], + "libelle_d_acheminement": "COISE ST JEAN PIED GAUTHIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13092024983, + 45.5259224168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2250c959bb62456a264a14a39ceb87060f5a08a", + "fields": { + "code_commune_insee": "73090", + "nom_de_la_commune": "LA COMPOTE", + "code_postal": "73630", + "coordonnees_gps": [ + 45.6597136497, + 6.14819976084 + ], + "libelle_d_acheminement": "LA COMPOTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14819976084, + 45.6597136497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00811920804ec73f372d01df35d1daec0102f270", + "fields": { + "code_commune_insee": "73095", + "nom_de_la_commune": "LA CROIX DE LA ROCHETTE", + "code_postal": "73110", + "coordonnees_gps": [ + 45.4746019888, + 6.11799818286 + ], + "libelle_d_acheminement": "LA CROIX DE LA ROCHETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11799818286, + 45.4746019888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42e72019307c6d1b201646386e108da20d9ca362", + "fields": { + "code_commune_insee": "73098", + "nom_de_la_commune": "LES DESERTS", + "code_postal": "73230", + "coordonnees_gps": [ + 45.6408440768, + 5.99604230711 + ], + "libelle_d_acheminement": "LES DESERTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99604230711, + 45.6408440768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22ac4725d848937644c7d2ae418c1b9446a40d40", + "fields": { + "code_commune_insee": "73104", + "nom_de_la_commune": "DULLIN", + "code_postal": "73610", + "coordonnees_gps": [ + 45.5511197543, + 5.74939054489 + ], + "libelle_d_acheminement": "DULLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74939054489, + 45.5511197543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e2e9e8caa96214a7d45fb27d375ecb81647315a", + "fields": { + "code_commune_insee": "73114", + "nom_de_la_commune": "FLUMET", + "code_postal": "73590", + "coordonnees_gps": [ + 45.8347717729, + 6.52972144353 + ], + "libelle_d_acheminement": "FLUMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52972144353, + 45.8347717729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8fcfacf69583632f968376c53cbc869c24fc929", + "fields": { + "code_commune_insee": "73117", + "nom_de_la_commune": "FOURNEAUX", + "code_postal": "73500", + "coordonnees_gps": [ + 45.1790051314, + 6.63768399812 + ], + "libelle_d_acheminement": "FOURNEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63768399812, + 45.1790051314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d69eaa71d85a68e000bf5b9417adb4d443decb25", + "fields": { + "code_commune_insee": "73121", + "nom_de_la_commune": "FRONTENEX", + "code_postal": "73460", + "coordonnees_gps": [ + 45.6328915156, + 6.31143524397 + ], + "libelle_d_acheminement": "FRONTENEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31143524397, + 45.6328915156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3c2ee63c3f236ded58384b3cd8111408fb9adee", + "fields": { + "code_commune_insee": "73122", + "nom_de_la_commune": "GERBAIX", + "code_postal": "73470", + "coordonnees_gps": [ + 45.6072180611, + 5.73727466441 + ], + "libelle_d_acheminement": "GERBAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73727466441, + 45.6072180611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce7bcdd501281890bfd3cc7b4a554d2cb221d982", + "fields": { + "code_commune_insee": "73131", + "nom_de_la_commune": "HAUTECOUR", + "code_postal": "73600", + "coordonnees_gps": [ + 45.5170974575, + 6.54362483947 + ], + "libelle_d_acheminement": "HAUTECOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54362483947, + 45.5170974575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f76838a5d762e802b258b621ec6eb55326260c4", + "fields": { + "code_commune_insee": "73139", + "nom_de_la_commune": "JARSY", + "code_postal": "73630", + "coordonnees_gps": [ + 45.669075325, + 6.21321879581 + ], + "libelle_d_acheminement": "JARSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21321879581, + 45.669075325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c450a646d4f5b52c9b9c1c6438c45265ce76852", + "fields": { + "code_commune_insee": "73140", + "nom_de_la_commune": "JONGIEUX", + "code_postal": "73170", + "coordonnees_gps": [ + 45.7366415454, + 5.80069130287 + ], + "libelle_d_acheminement": "JONGIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80069130287, + 45.7366415454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "091f46e3396c4da90254ac7cae6bc18f1d44a3d1", + "fields": { + "code_commune_insee": "73146", + "nom_de_la_commune": "LESCHERAINES", + "code_postal": "73340", + "coordonnees_gps": [ + 45.7071042341, + 6.10303709808 + ], + "libelle_d_acheminement": "LESCHERAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10303709808, + 45.7071042341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5724f3dffe240890b9bc895894eb1aeb1a679ad5", + "fields": { + "ligne_5": "LES MARCHES", + "code_commune_insee": "73151", + "libelle_d_acheminement": "PORTE DE SAVOIE", + "code_postal": "73800", + "nom_de_la_commune": "PORTE DE SAVOIE", + "coordonnees_gps": [ + 45.4923770493, + 5.9922950202 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9922950202, + 45.4923770493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9f2b9472fa8b170c6ef1107e41b17cb2c74bdae", + "fields": { + "code_commune_insee": "73168", + "nom_de_la_commune": "MONTGILBERT", + "code_postal": "73220", + "coordonnees_gps": [ + 45.5358137906, + 6.27545999399 + ], + "libelle_d_acheminement": "MONTGILBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27545999399, + 45.5358137906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a3cf4dddbbd733f92cbfbeaa19fd2b845020076", + "fields": { + "ligne_5": "LES KARELLIS", + "code_commune_insee": "73173", + "libelle_d_acheminement": "MONTRICHER ALBANNE", + "code_postal": "73870", + "nom_de_la_commune": "MONTRICHER ALBANNE", + "coordonnees_gps": [ + 45.2148500671, + 6.40795019067 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40795019067, + 45.2148500671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7dfc5aeb0e16733f1df4890f0be2abcf7f18257", + "fields": { + "code_commune_insee": "73177", + "nom_de_la_commune": "MONTVERNIER", + "code_postal": "73300", + "coordonnees_gps": [ + 45.3327756268, + 6.33500792788 + ], + "libelle_d_acheminement": "MONTVERNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33500792788, + 45.3327756268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95367a6738866854d139d944aeab6778f0f0ae32", + "fields": { + "code_commune_insee": "73183", + "nom_de_la_commune": "MYANS", + "code_postal": "73800", + "coordonnees_gps": [ + 45.5187852164, + 5.97843784098 + ], + "libelle_d_acheminement": "MYANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97843784098, + 45.5187852164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "428192cdb046fff245575fbbf861e3703cbae41a", + "fields": { + "ligne_5": "PUSSY", + "code_commune_insee": "73187", + "libelle_d_acheminement": "LA LECHERE", + "code_postal": "73260", + "nom_de_la_commune": "LA LECHERE", + "coordonnees_gps": [ + 45.5274218608, + 6.46078348062 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46078348062, + 45.5274218608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a338670ce8c96536f23c1959d3c3ac4ef12410f", + "fields": { + "code_commune_insee": "73197", + "nom_de_la_commune": "PEISEY NANCROIX", + "code_postal": "73210", + "coordonnees_gps": [ + 45.5103194255, + 6.81520574462 + ], + "libelle_d_acheminement": "PEISEY NANCROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81520574462, + 45.5103194255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "834fd1fb5e91e2b7f2568a0cb2b3f84b58f87de9", + "fields": { + "code_commune_insee": "73202", + "nom_de_la_commune": "PLANCHERINE", + "code_postal": "73200", + "coordonnees_gps": [ + 45.6784892181, + 6.2941466119 + ], + "libelle_d_acheminement": "PLANCHERINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2941466119, + 45.6784892181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d59392ec7e21e4fa83d4e8342fef7f21d7ee4b83", + "fields": { + "code_commune_insee": "73207", + "nom_de_la_commune": "PRESLE", + "code_postal": "73110", + "coordonnees_gps": [ + 45.4415501506, + 6.16915940279 + ], + "libelle_d_acheminement": "PRESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16915940279, + 45.4415501506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6056dec64d6913c604ef30a996fc9ef94ca3f2d", + "fields": { + "code_commune_insee": "73210", + "nom_de_la_commune": "PUYGROS", + "code_postal": "73190", + "coordonnees_gps": [ + 45.5690168338, + 6.04062707195 + ], + "libelle_d_acheminement": "PUYGROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04062707195, + 45.5690168338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec100443bda5c52b2fbb6f2316be29600015bf74", + "fields": { + "code_commune_insee": "73214", + "nom_de_la_commune": "ROCHEFORT", + "code_postal": "73240", + "coordonnees_gps": [ + 45.5807306821, + 5.71351336836 + ], + "libelle_d_acheminement": "ROCHEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71351336836, + 45.5807306821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ea6b837dc819ae33980c595bcbeef15e89b65c3", + "fields": { + "code_commune_insee": "73221", + "nom_de_la_commune": "ST ALBAN DES VILLARDS", + "code_postal": "73130", + "coordonnees_gps": [ + 45.314656637, + 6.23573224312 + ], + "libelle_d_acheminement": "ST ALBAN DES VILLARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23573224312, + 45.314656637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "780299b19db2c6bc89ce8e1f9eda9538d0cd88ff", + "fields": { + "code_commune_insee": "73235", + "nom_de_la_commune": "ST FRANCOIS LONGCHAMP", + "code_postal": "73130", + "coordonnees_gps": [ + 45.4121018734, + 6.37380621288 + ], + "libelle_d_acheminement": "ST FRANCOIS LONGCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37380621288, + 45.4121018734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "568f1858b6983f946ba14cd73544ea7b258102e2", + "fields": { + "code_commune_insee": "73253", + "nom_de_la_commune": "ST MARCEL", + "code_postal": "73600", + "coordonnees_gps": [ + 45.4979534787, + 6.56606269839 + ], + "libelle_d_acheminement": "ST MARCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56606269839, + 45.4979534787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bca19d38a7366ad0cb36fa587e6d602c5c5e7bc0", + "fields": { + "code_commune_insee": "73256", + "nom_de_la_commune": "ST MARTIN D ARC", + "code_postal": "73140", + "coordonnees_gps": [ + 45.206861554, + 6.45941152477 + ], + "libelle_d_acheminement": "ST MARTIN D ARC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45941152477, + 45.206861554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1538e5681b1c6c78d60f3408ca41e283c31abbf3", + "fields": { + "ligne_5": "VAL THORENS", + "code_commune_insee": "73257", + "libelle_d_acheminement": "LES BELLEVILLE", + "code_postal": "73440", + "nom_de_la_commune": "LES BELLEVILLE", + "coordonnees_gps": [ + 45.334431769, + 6.51686943075 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51686943075, + 45.334431769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48ca550ece7a19c68b71b4b9c8bab102d08ce579", + "fields": { + "ligne_5": "BEAUNE", + "code_commune_insee": "73261", + "libelle_d_acheminement": "ST MICHEL DE MAURIENNE", + "code_postal": "73140", + "nom_de_la_commune": "ST MICHEL DE MAURIENNE", + "coordonnees_gps": [ + 45.2382472621, + 6.49342053727 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49342053727, + 45.2382472621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8418643155119fcc4255ff9add2e4a2f33ba0c41", + "fields": { + "code_commune_insee": "73262", + "nom_de_la_commune": "ST NICOLAS LA CHAPELLE", + "code_postal": "73590", + "coordonnees_gps": [ + 45.8244727797, + 6.47927364341 + ], + "libelle_d_acheminement": "ST NICOLAS LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47927364341, + 45.8244727797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d36b9d69068b3651d611e160366c03dedbb97d5", + "fields": { + "code_commune_insee": "73263", + "nom_de_la_commune": "ST OFFENGE", + "code_postal": "73100", + "coordonnees_gps": [ + 45.7387543881, + 6.01018266121 + ], + "libelle_d_acheminement": "ST OFFENGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01018266121, + 45.7387543881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d97a7438a196b4acf1b7d6c3fade5481e6d90e1e", + "fields": { + "code_commune_insee": "73268", + "nom_de_la_commune": "ST PAUL SUR ISERE", + "code_postal": "73730", + "coordonnees_gps": [ + 45.5869203358, + 6.40696654722 + ], + "libelle_d_acheminement": "ST PAUL SUR ISERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40696654722, + 45.5869203358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "924103ca1365e682ac3b1d5065ec3daf99a2e8f4", + "fields": { + "code_commune_insee": "73272", + "nom_de_la_commune": "ST PIERRE DE BELLEVILLE", + "code_postal": "73220", + "coordonnees_gps": [ + 45.4537564041, + 6.25884593711 + ], + "libelle_d_acheminement": "ST PIERRE DE BELLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25884593711, + 45.4537564041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a78709fd11cd2fa4945df72fae67f03ee410886", + "fields": { + "code_commune_insee": "73276", + "nom_de_la_commune": "ST PIERRE DE SOUCY", + "code_postal": "73800", + "coordonnees_gps": [ + 45.4878241421, + 6.10513680462 + ], + "libelle_d_acheminement": "ST PIERRE DE SOUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10513680462, + 45.4878241421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "942d3704958893cd398aaa6551358248b6f66ba4", + "fields": { + "code_commune_insee": "73280", + "nom_de_la_commune": "ST SORLIN D ARVES", + "code_postal": "73530", + "coordonnees_gps": [ + 45.2010658466, + 6.20188332139 + ], + "libelle_d_acheminement": "ST SORLIN D ARVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20188332139, + 45.2010658466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f5ebf6858813a6a960ef576fb183a3be6e325dd", + "fields": { + "code_commune_insee": "73285", + "nom_de_la_commune": "SEEZ", + "code_postal": "73700", + "coordonnees_gps": [ + 45.6478054905, + 6.83575624707 + ], + "libelle_d_acheminement": "SEEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83575624707, + 45.6478054905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae34d5cb3137435e0948336fd7b25390c37b3d79", + "fields": { + "ligne_5": "LANSLEBOURG MONT CENIS", + "code_commune_insee": "73290", + "libelle_d_acheminement": "VAL CENIS", + "code_postal": "73480", + "nom_de_la_commune": "VAL CENIS", + "coordonnees_gps": [ + 45.3441528771, + 6.84789108583 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84789108583, + 45.3441528771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e58dff8a8be7649c2ed61910b7b3a1dfddb4668", + "fields": { + "code_commune_insee": "73296", + "nom_de_la_commune": "TIGNES", + "code_postal": "73320", + "coordonnees_gps": [ + 45.4816828491, + 6.93635513554 + ], + "libelle_d_acheminement": "TIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93635513554, + 45.4816828491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6b53c5f84031ef8fa2e1ee7313fe85c0304f48e", + "fields": { + "code_commune_insee": "73301", + "nom_de_la_commune": "TREVIGNIN", + "code_postal": "73100", + "coordonnees_gps": [ + 45.7047065922, + 5.96859856205 + ], + "libelle_d_acheminement": "TREVIGNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96859856205, + 45.7047065922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cac936770eeebea13d75ce9caa4f1ed4845c1d83", + "fields": { + "code_commune_insee": "73323", + "nom_de_la_commune": "VILLAROGER", + "code_postal": "73640", + "coordonnees_gps": [ + 45.5575226371, + 6.86910255537 + ], + "libelle_d_acheminement": "VILLAROGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86910255537, + 45.5575226371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c4393ab271b03b4d53d54f835bce020a3c5e704", + "fields": { + "code_commune_insee": "73329", + "nom_de_la_commune": "VOGLANS", + "code_postal": "73420", + "coordonnees_gps": [ + 45.6271741926, + 5.89111432564 + ], + "libelle_d_acheminement": "VOGLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89111432564, + 45.6271741926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "def1a1b52703af179a248cc16b14b056e943777d", + "fields": { + "code_commune_insee": "73330", + "nom_de_la_commune": "YENNE", + "code_postal": "73170", + "coordonnees_gps": [ + 45.7020470491, + 5.7646557504 + ], + "libelle_d_acheminement": "YENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7646557504, + 45.7020470491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0100a6f4aaf99f639e7474385a028c5937120c28", + "fields": { + "ligne_5": "JUSSY", + "code_commune_insee": "74009", + "libelle_d_acheminement": "ANDILLY", + "code_postal": "74350", + "nom_de_la_commune": "ANDILLY", + "coordonnees_gps": [ + 46.0702115695, + 6.0710017836 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0710017836, + 46.0702115695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f49159058145951bbcbed7448d5ece771bb8bd47", + "fields": { + "ligne_5": "SEYNOD", + "code_commune_insee": "74010", + "libelle_d_acheminement": "ANNECY", + "code_postal": "74600", + "nom_de_la_commune": "ANNECY", + "coordonnees_gps": [ + 45.8906432566, + 6.12551773598 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12551773598, + 45.8906432566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47d1569378bb4477d30a2fa2cfa95ab364f089c1", + "fields": { + "code_commune_insee": "74020", + "nom_de_la_commune": "ARMOY", + "code_postal": "74200", + "coordonnees_gps": [ + 46.3523619359, + 6.51159949942 + ], + "libelle_d_acheminement": "ARMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51159949942, + 46.3523619359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65a384c93635596eb9f70c54982e340ef5bf16a4", + "fields": { + "code_commune_insee": "74032", + "nom_de_la_commune": "BELLEVAUX", + "code_postal": "74470", + "coordonnees_gps": [ + 46.2276019394, + 6.55285416418 + ], + "libelle_d_acheminement": "BELLEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55285416418, + 46.2276019394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c10c21739d70b0e40b01b300c2029324a1584ea8", + "fields": { + "code_commune_insee": "74053", + "nom_de_la_commune": "CERVENS", + "code_postal": "74550", + "coordonnees_gps": [ + 46.28114425, + 6.44750930568 + ], + "libelle_d_acheminement": "CERVENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44750930568, + 46.28114425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf25d93c44ca693caa1ee8ee46ae9e9dfd575c4a", + "fields": { + "code_commune_insee": "74057", + "nom_de_la_commune": "CHAMPANGES", + "code_postal": "74500", + "coordonnees_gps": [ + 46.3715803084, + 6.55369978172 + ], + "libelle_d_acheminement": "CHAMPANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55369978172, + 46.3715803084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "471bb80b2782ad72089250ebe7932087575f92bc", + "fields": { + "code_commune_insee": "74059", + "nom_de_la_commune": "LA CHAPELLE RAMBAUD", + "code_postal": "74800", + "coordonnees_gps": [ + 46.0732040123, + 6.23904981825 + ], + "libelle_d_acheminement": "LA CHAPELLE RAMBAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23904981825, + 46.0732040123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d6b91998fb6b746742cbaad323b46b86f8e5155", + "fields": { + "code_commune_insee": "74071", + "nom_de_la_commune": "CHESSENAZ", + "code_postal": "74270", + "coordonnees_gps": [ + 46.0407218951, + 5.90635701971 + ], + "libelle_d_acheminement": "CHESSENAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90635701971, + 46.0407218951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a8842f031e6bdd60da43b781641a9301bbffd1d", + "fields": { + "code_commune_insee": "74075", + "nom_de_la_commune": "CHILLY", + "code_postal": "74270", + "coordonnees_gps": [ + 45.9892543857, + 5.95663892885 + ], + "libelle_d_acheminement": "CHILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95663892885, + 45.9892543857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b5bd51fe21a1dcf59d43765d4087b5fe8f18763", + "fields": { + "code_commune_insee": "74078", + "nom_de_la_commune": "CLERMONT", + "code_postal": "74270", + "coordonnees_gps": [ + 45.9734444894, + 5.90937510902 + ], + "libelle_d_acheminement": "CLERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90937510902, + 45.9734444894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b99948f52e15343f470c7c8a4260113d16c8f4d2", + "fields": { + "code_commune_insee": "74097", + "nom_de_la_commune": "CUSY", + "code_postal": "74540", + "coordonnees_gps": [ + 45.7584929074, + 6.0333103006 + ], + "libelle_d_acheminement": "CUSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0333103006, + 45.7584929074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b85e33d49816042533d80ec9c9e6a22fb38d239", + "fields": { + "code_commune_insee": "74098", + "nom_de_la_commune": "CUVAT", + "code_postal": "74350", + "coordonnees_gps": [ + 45.9769889587, + 6.10863397469 + ], + "libelle_d_acheminement": "CUVAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10863397469, + 45.9769889587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be87fb2b1e9b0b37b3f03af6029204d7a07a9bb1", + "fields": { + "code_commune_insee": "74104", + "nom_de_la_commune": "DOUSSARD", + "code_postal": "74210", + "coordonnees_gps": [ + 45.7709274033, + 6.22183215069 + ], + "libelle_d_acheminement": "DOUSSARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22183215069, + 45.7709274033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f9917e1586f7719f88f73792361082ea56930b3", + "fields": { + "code_commune_insee": "74105", + "nom_de_la_commune": "DOUVAINE", + "code_postal": "74140", + "coordonnees_gps": [ + 46.3063459721, + 6.29894207485 + ], + "libelle_d_acheminement": "DOUVAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29894207485, + 46.3063459721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e496dea68f8bdedda540ebf782ca6a1b959bc20", + "fields": { + "code_commune_insee": "74114", + "nom_de_la_commune": "ESSERT ROMAND", + "code_postal": "74110", + "coordonnees_gps": [ + 46.2023206067, + 6.660151187 + ], + "libelle_d_acheminement": "ESSERT ROMAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.660151187, + 46.2023206067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9007dea118840d36c3ed085f9c66ac4a9b072b52", + "fields": { + "code_commune_insee": "74117", + "nom_de_la_commune": "ETERCY", + "code_postal": "74150", + "coordonnees_gps": [ + 45.8924317262, + 6.0079458329 + ], + "libelle_d_acheminement": "ETERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0079458329, + 45.8924317262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90f64c46302f450b8f866a6e032c4d83363cc7d9", + "fields": { + "code_commune_insee": "74140", + "nom_de_la_commune": "HABERE POCHE", + "code_postal": "74420", + "coordonnees_gps": [ + 46.2555235551, + 6.47324374853 + ], + "libelle_d_acheminement": "HABERE POCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47324374853, + 46.2555235551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12800d601cb01551b1e894bb700ef2e8b5f4a85e", + "fields": { + "code_commune_insee": "74143", + "nom_de_la_commune": "LES HOUCHES", + "code_postal": "74310", + "coordonnees_gps": [ + 45.8968732063, + 6.8000932715 + ], + "libelle_d_acheminement": "LES HOUCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8000932715, + 45.8968732063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4f385fc9d9e3296719fe87d3794075ccbde1ec7", + "fields": { + "code_commune_insee": "74151", + "nom_de_la_commune": "LORNAY", + "code_postal": "74150", + "coordonnees_gps": [ + 45.9107999793, + 5.88954497297 + ], + "libelle_d_acheminement": "LORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88954497297, + 45.9107999793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24837c2494334a16a1f9cbe5b01efad22e746c26", + "fields": { + "code_commune_insee": "74152", + "nom_de_la_commune": "LOVAGNY", + "code_postal": "74330", + "coordonnees_gps": [ + 45.9038439081, + 6.03434039234 + ], + "libelle_d_acheminement": "LOVAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03434039234, + 45.9038439081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2db0daeec9dad63d8ded37eca716f68618f5919", + "fields": { + "code_commune_insee": "74163", + "nom_de_la_commune": "MARGENCEL", + "code_postal": "74200", + "coordonnees_gps": [ + 46.3315818048, + 6.42253424763 + ], + "libelle_d_acheminement": "MARGENCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42253424763, + 46.3315818048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "182ecc3d8ee88197a42a4652947d135a4a83ada6", + "fields": { + "code_commune_insee": "74169", + "nom_de_la_commune": "MARNAZ", + "code_postal": "74460", + "coordonnees_gps": [ + 46.0518903759, + 6.5224156191 + ], + "libelle_d_acheminement": "MARNAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5224156191, + 46.0518903759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d3cd9b592ace13667509c1a5d06c90126d1122c", + "fields": { + "code_commune_insee": "74174", + "nom_de_la_commune": "MEGEVETTE", + "code_postal": "74490", + "coordonnees_gps": [ + 46.208458258, + 6.51327068897 + ], + "libelle_d_acheminement": "MEGEVETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51327068897, + 46.208458258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d43383cf902dbb08b78ff16dad38c585ce148688", + "fields": { + "code_commune_insee": "74180", + "nom_de_la_commune": "MESSERY", + "code_postal": "74140", + "coordonnees_gps": [ + 46.3456509574, + 6.29932822194 + ], + "libelle_d_acheminement": "MESSERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29932822194, + 46.3456509574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7a79d15800cab2c052ec169ad726e95c47e31ee", + "fields": { + "code_commune_insee": "74198", + "nom_de_la_commune": "NAVES PARMELAN", + "code_postal": "74370", + "coordonnees_gps": [ + 45.9320249832, + 6.19716046431 + ], + "libelle_d_acheminement": "NAVES PARMELAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19716046431, + 45.9320249832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d00f0ace3445c5500e30bb1aa207d81d535a59c8", + "fields": { + "code_commune_insee": "74208", + "nom_de_la_commune": "PASSY", + "code_postal": "74190", + "coordonnees_gps": [ + 45.9545838758, + 6.74056895873 + ], + "libelle_d_acheminement": "PASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74056895873, + 45.9545838758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5592b7db7873f3c64476287afafeb003e22d7406", + "fields": { + "ligne_5": "MONT BLANC D ASSY", + "code_commune_insee": "74208", + "libelle_d_acheminement": "PASSY", + "code_postal": "74190", + "nom_de_la_commune": "PASSY", + "coordonnees_gps": [ + 45.9545838758, + 6.74056895873 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74056895873, + 45.9545838758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f308069175ec61c77f0ca3716c9685a152f8935", + "fields": { + "code_commune_insee": "44076", + "nom_de_la_commune": "JANS", + "code_postal": "44170", + "coordonnees_gps": [ + 47.6241270257, + -1.60441413686 + ], + "libelle_d_acheminement": "JANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60441413686, + 47.6241270257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70f6dc0a65af973b59c0cdc75927e742b5d831de", + "fields": { + "ligne_5": "NOTRE DAME DES LANGUEURS", + "code_commune_insee": "44077", + "libelle_d_acheminement": "JOUE SUR ERDRE", + "code_postal": "44440", + "nom_de_la_commune": "JOUE SUR ERDRE", + "coordonnees_gps": [ + 47.5092437538, + -1.42943494948 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42943494948, + 47.5092437538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "321eb0917109f082c6b4477abf23a22552b4896b", + "fields": { + "code_commune_insee": "44082", + "nom_de_la_commune": "LIGNE", + "code_postal": "44850", + "coordonnees_gps": [ + 47.4007599346, + -1.38128028486 + ], + "libelle_d_acheminement": "LIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38128028486, + 47.4007599346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5afc34446ea7abf4056d99e9326213235733232", + "fields": { + "code_commune_insee": "44092", + "nom_de_la_commune": "MASSERAC", + "code_postal": "44290", + "coordonnees_gps": [ + 47.6758102411, + -1.90458344966 + ], + "libelle_d_acheminement": "MASSERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.90458344966, + 47.6758102411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "391a2e41c0cb77dc7b927eec0e57d8532b6cb926", + "fields": { + "ligne_5": "QUIMIAC", + "code_commune_insee": "44097", + "libelle_d_acheminement": "MESQUER", + "code_postal": "44420", + "nom_de_la_commune": "MESQUER", + "coordonnees_gps": [ + 47.396034846, + -2.47063226926 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.47063226926, + 47.396034846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f20046faab8f3bd2e5808b9f6679c1f749e4281", + "fields": { + "code_commune_insee": "44103", + "nom_de_la_commune": "MONTOIR DE BRETAGNE", + "code_postal": "44550", + "coordonnees_gps": [ + 47.3232368527, + -2.1467366036 + ], + "libelle_d_acheminement": "MONTOIR DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1467366036, + 47.3232368527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "564e80fccbc1f786eb8dbdf46df3d1817e98a769", + "fields": { + "code_commune_insee": "44110", + "nom_de_la_commune": "NORT SUR ERDRE", + "code_postal": "44390", + "coordonnees_gps": [ + 47.447122285, + -1.51824792558 + ], + "libelle_d_acheminement": "NORT SUR ERDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51824792558, + 47.447122285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc0c4884567efe7a00b4b7434551f6d7221bcfaf", + "fields": { + "code_commune_insee": "44112", + "nom_de_la_commune": "NOYAL SUR BRUTZ", + "code_postal": "44110", + "coordonnees_gps": [ + 47.7711430561, + -1.343155162 + ], + "libelle_d_acheminement": "NOYAL SUR BRUTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.343155162, + 47.7711430561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d360ac5962dd8b626ea889d75f0053ab004f845", + "fields": { + "code_commune_insee": "44115", + "nom_de_la_commune": "OUDON", + "code_postal": "44521", + "coordonnees_gps": [ + 47.3554034497, + -1.27120259646 + ], + "libelle_d_acheminement": "OUDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27120259646, + 47.3554034497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79b816e8969fbf273b02f74b15040a7aafadfb20", + "fields": { + "code_commune_insee": "44118", + "nom_de_la_commune": "PANNECE", + "code_postal": "44440", + "coordonnees_gps": [ + 47.487718052, + -1.21642621731 + ], + "libelle_d_acheminement": "PANNECE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21642621731, + 47.487718052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a62e0f31167837d42d5de1708d9cb65b5d99847", + "fields": { + "code_commune_insee": "44122", + "nom_de_la_commune": "PETIT MARS", + "code_postal": "44390", + "coordonnees_gps": [ + 47.4051549703, + -1.45655214384 + ], + "libelle_d_acheminement": "PETIT MARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45655214384, + 47.4051549703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a69002d8033804d20c7175668b7377c225932a7a", + "fields": { + "code_commune_insee": "44123", + "nom_de_la_commune": "PIERRIC", + "code_postal": "44290", + "coordonnees_gps": [ + 47.6890990862, + -1.77486264797 + ], + "libelle_d_acheminement": "PIERRIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77486264797, + 47.6890990862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f67c990191a569b5484e58b18a3ee625c1cf1f2", + "fields": { + "code_commune_insee": "44125", + "nom_de_la_commune": "PIRIAC SUR MER", + "code_postal": "44420", + "coordonnees_gps": [ + 47.3778694474, + -2.51735551427 + ], + "libelle_d_acheminement": "PIRIAC SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.51735551427, + 47.3778694474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da46f3936b11a4869091d071df626e555558a4fe", + "fields": { + "ligne_5": "LE COUDRAY", + "code_commune_insee": "44128", + "libelle_d_acheminement": "PLESSE", + "code_postal": "44630", + "nom_de_la_commune": "PLESSE", + "coordonnees_gps": [ + 47.5557486835, + -1.89050130746 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89050130746, + 47.5557486835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55d2054900cc4c86b4bb4554bda2c36d37953268", + "fields": { + "ligne_5": "LE DRESNY", + "code_commune_insee": "44128", + "libelle_d_acheminement": "PLESSE", + "code_postal": "44630", + "nom_de_la_commune": "PLESSE", + "coordonnees_gps": [ + 47.5557486835, + -1.89050130746 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89050130746, + 47.5557486835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a29bcd22873c328cdbb58ecc85c0ec1a5384556", + "fields": { + "code_commune_insee": "44131", + "nom_de_la_commune": "PORNIC", + "code_postal": "44210", + "coordonnees_gps": [ + 47.1223972452, + -2.05182334479 + ], + "libelle_d_acheminement": "PORNIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05182334479, + 47.1223972452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8bdeaec6a7b44ca127faf4908607aa2a8ccbb78", + "fields": { + "code_commune_insee": "44132", + "nom_de_la_commune": "PORNICHET", + "code_postal": "44380", + "coordonnees_gps": [ + 47.2615791665, + -2.31415650821 + ], + "libelle_d_acheminement": "PORNICHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.31415650821, + 47.2615791665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bf5e7de53b388b3b547325c11d0d71c9839aeee", + "fields": { + "code_commune_insee": "44133", + "nom_de_la_commune": "PORT ST PERE", + "code_postal": "44710", + "coordonnees_gps": [ + 47.1406810974, + -1.76837740762 + ], + "libelle_d_acheminement": "PORT ST PERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76837740762, + 47.1406810974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d48e83c6b1f2a96fd05a5839907c96fdf1222f8", + "fields": { + "code_commune_insee": "44134", + "nom_de_la_commune": "POUILLE LES COTEAUX", + "code_postal": "44522", + "coordonnees_gps": [ + 47.4677099319, + -1.17461677561 + ], + "libelle_d_acheminement": "POUILLE LES COTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17461677561, + 47.4677099319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70a980c109afe5f7bac8ecf5bedb4de87527792f", + "fields": { + "code_commune_insee": "44136", + "nom_de_la_commune": "PREFAILLES", + "code_postal": "44770", + "coordonnees_gps": [ + 47.131466657, + -2.21391536402 + ], + "libelle_d_acheminement": "PREFAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21391536402, + 47.131466657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7f9416bb994a705685224b1be622022d1758b0b", + "fields": { + "code_commune_insee": "44143", + "nom_de_la_commune": "REZE", + "code_postal": "44400", + "coordonnees_gps": [ + 47.1762338904, + -1.54966399893 + ], + "libelle_d_acheminement": "REZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54966399893, + 47.1762338904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa0395dbdf7bd3352e9833cae84e86e24ebcb77d", + "fields": { + "ligne_5": "PONT ROUSSEAU", + "code_commune_insee": "44143", + "libelle_d_acheminement": "REZE", + "code_postal": "44400", + "nom_de_la_commune": "REZE", + "coordonnees_gps": [ + 47.1762338904, + -1.54966399893 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54966399893, + 47.1762338904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b6e83b9cf7aa2e6553b70692ef7410637fd2114", + "fields": { + "code_commune_insee": "44150", + "nom_de_la_commune": "ST AIGNAN GRANDLIEU", + "code_postal": "44860", + "coordonnees_gps": [ + 47.1331072085, + -1.62317141788 + ], + "libelle_d_acheminement": "ST AIGNAN GRANDLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62317141788, + 47.1331072085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dccaaf957caa12c2c7541ef788f25a97699f23f4", + "fields": { + "ligne_5": "MINDIN", + "code_commune_insee": "44154", + "libelle_d_acheminement": "ST BREVIN LES PINS", + "code_postal": "44250", + "nom_de_la_commune": "ST BREVIN LES PINS", + "coordonnees_gps": [ + 47.2380057754, + -2.1516650013 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1516650013, + 47.2380057754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37466b4077dfe4ed32fe63f81a8284782f7065dd", + "fields": { + "ligne_5": "LA BENATE", + "code_commune_insee": "44156", + "libelle_d_acheminement": "CORCOUE SUR LOGNE", + "code_postal": "44650", + "nom_de_la_commune": "CORCOUE SUR LOGNE", + "coordonnees_gps": [ + 46.9532455273, + -1.60060237938 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60060237938, + 46.9532455273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b68411c0450d408f05c73b60cd3e48d103ca0c3a", + "fields": { + "code_commune_insee": "44157", + "nom_de_la_commune": "ST ETIENNE DE MER MORTE", + "code_postal": "44270", + "coordonnees_gps": [ + 46.9452735798, + -1.71830813548 + ], + "libelle_d_acheminement": "ST ETIENNE DE MER MORTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71830813548, + 46.9452735798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3113ca6712f8b2a5d44647122311b4a91a865dfb", + "fields": { + "code_commune_insee": "44158", + "nom_de_la_commune": "ST ETIENNE DE MONTLUC", + "code_postal": "44360", + "coordonnees_gps": [ + 47.265112989, + -1.78426879748 + ], + "libelle_d_acheminement": "ST ETIENNE DE MONTLUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78426879748, + 47.265112989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e72b1ae747108bfa7b411a0eedd93bbdb59f202d", + "fields": { + "ligne_5": "ST HERBLON", + "code_commune_insee": "44163", + "libelle_d_acheminement": "VAIR SUR LOIRE", + "code_postal": "44150", + "nom_de_la_commune": "VAIR SUR LOIRE", + "coordonnees_gps": [ + 47.4063801215, + -1.11538134874 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11538134874, + 47.4063801215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a387f75bebe12e1475113326a771d1749b825a8c", + "fields": { + "code_commune_insee": "44171", + "nom_de_la_commune": "ST LEGER LES VIGNES", + "code_postal": "44710", + "coordonnees_gps": [ + 47.1429694401, + -1.7140364404 + ], + "libelle_d_acheminement": "ST LEGER LES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.7140364404, + 47.1429694401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad090d890510ec4f147f0edcbfd645c44707f435", + "fields": { + "code_commune_insee": "44182", + "nom_de_la_commune": "ST MICHEL CHEF CHEF", + "code_postal": "44730", + "coordonnees_gps": [ + 47.1755629767, + -2.12731093246 + ], + "libelle_d_acheminement": "ST MICHEL CHEF CHEF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12731093246, + 47.1755629767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f848ae09b95ab4a56ed6a369d62d0f02f9cb62a", + "fields": { + "ligne_5": "THARON PLAGE", + "code_commune_insee": "44182", + "libelle_d_acheminement": "ST MICHEL CHEF CHEF", + "code_postal": "44730", + "nom_de_la_commune": "ST MICHEL CHEF CHEF", + "coordonnees_gps": [ + 47.1755629767, + -2.12731093246 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12731093246, + 47.1755629767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c14f89c57b8462d738307873081dc1ac1ca3cb09", + "fields": { + "code_commune_insee": "44189", + "nom_de_la_commune": "STE REINE DE BRETAGNE", + "code_postal": "44160", + "coordonnees_gps": [ + 47.4437503517, + -2.18092999441 + ], + "libelle_d_acheminement": "STE REINE DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18092999441, + 47.4437503517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7ee842b270b64f834e0532e78f7882fec73c378", + "fields": { + "code_commune_insee": "44194", + "nom_de_la_commune": "SAUTRON", + "code_postal": "44880", + "coordonnees_gps": [ + 47.273226935, + -1.6804726586 + ], + "libelle_d_acheminement": "SAUTRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6804726586, + 47.273226935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e382638bf953165394f5b904da5fdf58123204a1", + "fields": { + "code_commune_insee": "44202", + "nom_de_la_commune": "TEILLE", + "code_postal": "44440", + "coordonnees_gps": [ + 47.4641557957, + -1.28707085178 + ], + "libelle_d_acheminement": "TEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28707085178, + 47.4641557957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99186a40b6adf2b9320a80988281312bf7abc4fd", + "fields": { + "code_commune_insee": "44203", + "nom_de_la_commune": "LE TEMPLE DE BRETAGNE", + "code_postal": "44360", + "coordonnees_gps": [ + 47.3284386017, + -1.79041386059 + ], + "libelle_d_acheminement": "LE TEMPLE DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79041386059, + 47.3284386017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a83b5d648939501160acdbc7c079f1284c9ea8a", + "fields": { + "code_commune_insee": "44208", + "nom_de_la_commune": "TREFFIEUX", + "code_postal": "44170", + "coordonnees_gps": [ + 47.6131430435, + -1.52831796122 + ], + "libelle_d_acheminement": "TREFFIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52831796122, + 47.6131430435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a0eb01e78f7942d2a7125e90ade17b6f9367bfb", + "fields": { + "code_commune_insee": "44209", + "nom_de_la_commune": "TREILLIERES", + "code_postal": "44119", + "coordonnees_gps": [ + 47.3178218372, + -1.62577302041 + ], + "libelle_d_acheminement": "TREILLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62577302041, + 47.3178218372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad6367f37e40256651b7e85bce6c73db4c9ca1c8", + "fields": { + "ligne_5": "TRESCALAN", + "code_commune_insee": "44211", + "libelle_d_acheminement": "LA TURBALLE", + "code_postal": "44420", + "nom_de_la_commune": "LA TURBALLE", + "coordonnees_gps": [ + 47.3507474102, + -2.48853439808 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.48853439808, + 47.3507474102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d6105006a6bda7b6d61a4a19d84ea4a4c8fb4eb", + "fields": { + "code_commune_insee": "44212", + "nom_de_la_commune": "VALLET", + "code_postal": "44330", + "coordonnees_gps": [ + 47.1715153308, + -1.26146566077 + ], + "libelle_d_acheminement": "VALLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26146566077, + 47.1715153308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed361a50caa3dfef23dc603e6b875274374743ed", + "fields": { + "code_commune_insee": "44216", + "nom_de_la_commune": "VIEILLEVIGNE", + "code_postal": "44116", + "coordonnees_gps": [ + 46.9713066859, + -1.41881822472 + ], + "libelle_d_acheminement": "VIEILLEVIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41881822472, + 46.9713066859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "814879f6e42f51113d5df622a6727a7b0b02c618", + "fields": { + "code_commune_insee": "44223", + "nom_de_la_commune": "GENESTON", + "code_postal": "44140", + "coordonnees_gps": [ + 47.0596610494, + -1.52602858693 + ], + "libelle_d_acheminement": "GENESTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52602858693, + 47.0596610494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "268c442d630c951be0cdb85a0641a3b7e0281698", + "fields": { + "code_commune_insee": "44224", + "nom_de_la_commune": "LA GRIGONNAIS", + "code_postal": "44170", + "coordonnees_gps": [ + 47.5178441484, + -1.67992818531 + ], + "libelle_d_acheminement": "LA GRIGONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67992818531, + 47.5178441484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49c521d1b8afcc62e48e0497d6f089cf2eb957c8", + "fields": { + "code_commune_insee": "45006", + "nom_de_la_commune": "ARDON", + "code_postal": "45160", + "coordonnees_gps": [ + 47.7881590342, + 1.88281454667 + ], + "libelle_d_acheminement": "ARDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88281454667, + 47.7881590342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf6cefd74271bcb700910420bf71a4fd83d5edba", + "fields": { + "code_commune_insee": "45008", + "nom_de_la_commune": "ARTENAY", + "code_postal": "45410", + "coordonnees_gps": [ + 48.076236639, + 1.88000171801 + ], + "libelle_d_acheminement": "ARTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88000171801, + 48.076236639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "237fa463228c69c91d455351203f86de7cbe596d", + "fields": { + "code_commune_insee": "45014", + "nom_de_la_commune": "AULNAY LA RIVIERE", + "code_postal": "45390", + "coordonnees_gps": [ + 48.2087279915, + 2.3732598732 + ], + "libelle_d_acheminement": "AULNAY LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3732598732, + 48.2087279915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc5a91e16320b75560776c32585d107d098bd75b", + "fields": { + "code_commune_insee": "45020", + "nom_de_la_commune": "LE BARDON", + "code_postal": "45130", + "coordonnees_gps": [ + 47.8419806069, + 1.64858410606 + ], + "libelle_d_acheminement": "LE BARDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64858410606, + 47.8419806069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "775ac44f9e3ebc23e039022806cf64474f07c993", + "fields": { + "code_commune_insee": "45025", + "nom_de_la_commune": "BAZOCHES LES GALLERANDES", + "code_postal": "45480", + "coordonnees_gps": [ + 48.1622351028, + 2.05200165302 + ], + "libelle_d_acheminement": "BAZOCHES LES GALLERANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05200165302, + 48.1622351028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03a854a2e4ddb1536d128657560acda9e3aa3e79", + "fields": { + "ligne_5": "IZY", + "code_commune_insee": "45025", + "libelle_d_acheminement": "BAZOCHES LES GALLERANDES", + "code_postal": "45480", + "nom_de_la_commune": "BAZOCHES LES GALLERANDES", + "coordonnees_gps": [ + 48.1622351028, + 2.05200165302 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05200165302, + 48.1622351028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "354750ada6e17730a01ed802dc6e66e94aafe99d", + "fields": { + "code_commune_insee": "45026", + "nom_de_la_commune": "BAZOCHES SUR LE BETZ", + "code_postal": "45210", + "coordonnees_gps": [ + 48.1323472577, + 2.99028877216 + ], + "libelle_d_acheminement": "BAZOCHES SUR LE BETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99028877216, + 48.1323472577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a66d9c1960388040ac0a97b404974bf37ed1602", + "fields": { + "code_commune_insee": "45029", + "nom_de_la_commune": "BEAULIEU SUR LOIRE", + "code_postal": "45630", + "coordonnees_gps": [ + 47.5351183131, + 2.80260257631 + ], + "libelle_d_acheminement": "BEAULIEU SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80260257631, + 47.5351183131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a05c387c2021c9b6b80bfcdbae2cb4835ebda399", + "fields": { + "code_commune_insee": "45032", + "nom_de_la_commune": "LE BIGNON MIRABEAU", + "code_postal": "45210", + "coordonnees_gps": [ + 48.1476188103, + 2.93466561379 + ], + "libelle_d_acheminement": "LE BIGNON MIRABEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93466561379, + 48.1476188103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d231043053a4426f4ae24fced70f748133c4ffc5", + "fields": { + "ligne_5": "LES BEZARDS", + "code_commune_insee": "45036", + "libelle_d_acheminement": "BOISMORAND", + "code_postal": "45290", + "nom_de_la_commune": "BOISMORAND", + "coordonnees_gps": [ + 47.7798249576, + 2.72028920172 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72028920172, + 47.7798249576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "677bafa59c814b24caa3219bdc0cab0c571c469f", + "fields": { + "code_commune_insee": "45046", + "nom_de_la_commune": "BOULAY LES BARRES", + "code_postal": "45140", + "coordonnees_gps": [ + 47.9749370817, + 1.77690207955 + ], + "libelle_d_acheminement": "BOULAY LES BARRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77690207955, + 47.9749370817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "207bdb3ad0b6efeb477e578c37618239f15a8d01", + "fields": { + "code_commune_insee": "45052", + "nom_de_la_commune": "BRETEAU", + "code_postal": "45250", + "coordonnees_gps": [ + 47.6770246795, + 2.88898357418 + ], + "libelle_d_acheminement": "BRETEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88898357418, + 47.6770246795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d67e61e4f3fcf755b5de2ba92ce3e99b12bfde8", + "fields": { + "code_commune_insee": "45058", + "nom_de_la_commune": "BUCY LE ROI", + "code_postal": "45410", + "coordonnees_gps": [ + 48.0594994911, + 1.92098402984 + ], + "libelle_d_acheminement": "BUCY LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92098402984, + 48.0594994911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cef10dfee4f82e66ff1561788dc4e4fb63df9ac", + "fields": { + "code_commune_insee": "45059", + "nom_de_la_commune": "BUCY ST LIPHARD", + "code_postal": "45140", + "coordonnees_gps": [ + 47.9390462233, + 1.75401078259 + ], + "libelle_d_acheminement": "BUCY ST LIPHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75401078259, + 47.9390462233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fbe39acc44f2b7773784316836c4d088a4f0c77", + "fields": { + "code_commune_insee": "45075", + "nom_de_la_commune": "LA CHAPELLE ST MESMIN", + "code_postal": "45380", + "coordonnees_gps": [ + 47.8887063362, + 1.82847184827 + ], + "libelle_d_acheminement": "LA CHAPELLE ST MESMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82847184827, + 47.8887063362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12b19f81f063efce8293579a02e8e48c11beee15", + "fields": { + "code_commune_insee": "45083", + "nom_de_la_commune": "CHATEAU RENARD", + "code_postal": "45220", + "coordonnees_gps": [ + 47.9266379127, + 2.92209191737 + ], + "libelle_d_acheminement": "CHATEAU RENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92209191737, + 47.9266379127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d1bf1a2e58777beae748c98289325828d62bc55", + "fields": { + "code_commune_insee": "45085", + "nom_de_la_commune": "CHATILLON COLIGNY", + "code_postal": "45230", + "coordonnees_gps": [ + 47.8233390876, + 2.87503736622 + ], + "libelle_d_acheminement": "CHATILLON COLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87503736622, + 47.8233390876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4002c0d39031dc42ca2ec8f0967485d3ef8b63b2", + "fields": { + "code_commune_insee": "45086", + "nom_de_la_commune": "CHATILLON LE ROI", + "code_postal": "45480", + "coordonnees_gps": [ + 48.1641485048, + 2.10220628219 + ], + "libelle_d_acheminement": "CHATILLON LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10220628219, + 48.1641485048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5cac3a4128a12408cfce2ad6b67ea633785e5b5", + "fields": { + "code_commune_insee": "45093", + "nom_de_la_commune": "CHEVILLY", + "code_postal": "45520", + "coordonnees_gps": [ + 48.0300099024, + 1.89353421396 + ], + "libelle_d_acheminement": "CHEVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89353421396, + 48.0300099024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b03441383bcbcaec7748c0f4b1ce308a44683dc2", + "fields": { + "code_commune_insee": "45104", + "nom_de_la_commune": "CORQUILLEROY", + "code_postal": "45120", + "coordonnees_gps": [ + 48.0408609614, + 2.69380653826 + ], + "libelle_d_acheminement": "CORQUILLEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69380653826, + 48.0408609614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fee1e5684ca61c9c858a95d1667d75e15d0e25bb", + "fields": { + "code_commune_insee": "45107", + "nom_de_la_commune": "COUDROY", + "code_postal": "45260", + "coordonnees_gps": [ + 47.9047107806, + 2.47473580534 + ], + "libelle_d_acheminement": "COUDROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47473580534, + 47.9047107806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0be11d2a80218be45cd4153cc7afde7f4b9a946", + "fields": { + "code_commune_insee": "45112", + "nom_de_la_commune": "LA COUR MARIGNY", + "code_postal": "45260", + "coordonnees_gps": [ + 47.8905390311, + 2.58364447475 + ], + "libelle_d_acheminement": "LA COUR MARIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58364447475, + 47.8905390311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a344774586b9fa1577c0c7e537cb951c81f60d7d", + "fields": { + "code_commune_insee": "45134", + "nom_de_la_commune": "EPIEDS EN BEAUCE", + "code_postal": "45130", + "coordonnees_gps": [ + 47.9627066917, + 1.60390030402 + ], + "libelle_d_acheminement": "EPIEDS EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60390030402, + 47.9627066917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99348e313e9c5510b273086a620e3eca290d8430", + "fields": { + "code_commune_insee": "45141", + "nom_de_la_commune": "FAVERELLES", + "code_postal": "45420", + "coordonnees_gps": [ + 47.5870072341, + 2.93687989156 + ], + "libelle_d_acheminement": "FAVERELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93687989156, + 47.5870072341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "010676918fe69f497f71144cadf56e3c9f1a4096", + "fields": { + "code_commune_insee": "45147", + "nom_de_la_commune": "FLEURY LES AUBRAIS", + "code_postal": "45400", + "coordonnees_gps": [ + 47.9389266189, + 1.9198911565 + ], + "libelle_d_acheminement": "FLEURY LES AUBRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9198911565, + 47.9389266189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5013b123e659be678b7331ccc387e69887f286fb", + "fields": { + "code_commune_insee": "45148", + "nom_de_la_commune": "FONTENAY SUR LOING", + "code_postal": "45210", + "coordonnees_gps": [ + 48.0832664847, + 2.76885759173 + ], + "libelle_d_acheminement": "FONTENAY SUR LOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76885759173, + 48.0832664847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d6a4119052f92978e9bcda04be5ec215cc8d352", + "fields": { + "ligne_5": "ARRABLOY", + "code_commune_insee": "45155", + "libelle_d_acheminement": "GIEN", + "code_postal": "45500", + "nom_de_la_commune": "GIEN", + "coordonnees_gps": [ + 47.71227944, + 2.66549550204 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66549550204, + 47.71227944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4778f6338bb5c1f3ccad3306eddb4a7ec2b82f47", + "fields": { + "code_commune_insee": "45156", + "nom_de_la_commune": "GIROLLES", + "code_postal": "45120", + "coordonnees_gps": [ + 48.0724580297, + 2.71767735428 + ], + "libelle_d_acheminement": "GIROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71767735428, + 48.0724580297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c913bda8b0636a9bde23c1670a5449d5b31465b3", + "fields": { + "ligne_5": "GUIGNONVILLE", + "code_commune_insee": "45160", + "libelle_d_acheminement": "GRENEVILLE EN BEAUCE", + "code_postal": "45480", + "nom_de_la_commune": "GRENEVILLE EN BEAUCE", + "coordonnees_gps": [ + 48.189368971, + 2.11144995859 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11144995859, + 48.189368971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3cf961c38ab90fffb6ba7b1c71b2b751109ee67", + "fields": { + "code_commune_insee": "45161", + "nom_de_la_commune": "GRISELLES", + "code_postal": "45210", + "coordonnees_gps": [ + 48.0735835169, + 2.83901936313 + ], + "libelle_d_acheminement": "GRISELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83901936313, + 48.0735835169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81e6d7c64520859ae5cb288a307d9214165446ae", + "fields": { + "code_commune_insee": "45162", + "nom_de_la_commune": "GUIGNEVILLE", + "code_postal": "45300", + "coordonnees_gps": [ + 48.2157779441, + 2.17390368051 + ], + "libelle_d_acheminement": "GUIGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17390368051, + 48.2157779441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "707f9a6cd51f132995b6ce41d4e217d717fc2f03", + "fields": { + "code_commune_insee": "45165", + "nom_de_la_commune": "GY LES NONAINS", + "code_postal": "45220", + "coordonnees_gps": [ + 47.9287539201, + 2.84603975187 + ], + "libelle_d_acheminement": "GY LES NONAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84603975187, + 47.9287539201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "585cf28c51d75b7db97fc54a6cf0413ab89f77ee", + "fields": { + "code_commune_insee": "45166", + "nom_de_la_commune": "HUETRE", + "code_postal": "45520", + "coordonnees_gps": [ + 48.0255590389, + 1.80141041043 + ], + "libelle_d_acheminement": "HUETRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80141041043, + 48.0255590389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f03ec8c072508d1c1ac9acdc05a1b9d6b70ecfc", + "fields": { + "code_commune_insee": "45167", + "nom_de_la_commune": "HUISSEAU SUR MAUVES", + "code_postal": "45130", + "coordonnees_gps": [ + 47.8939094608, + 1.70052467994 + ], + "libelle_d_acheminement": "HUISSEAU SUR MAUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70052467994, + 47.8939094608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adc922a0060659b79b973e83da742755ccb6a30f", + "fields": { + "code_commune_insee": "45168", + "nom_de_la_commune": "INGRANNES", + "code_postal": "45450", + "coordonnees_gps": [ + 47.9939802289, + 2.2247865408 + ], + "libelle_d_acheminement": "INGRANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2247865408, + 47.9939802289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "451ca1656f6ebacef4fdb71cc91141aab5675332", + "fields": { + "code_commune_insee": "45176", + "nom_de_la_commune": "JURANVILLE", + "code_postal": "45340", + "coordonnees_gps": [ + 48.0610597586, + 2.48280852307 + ], + "libelle_d_acheminement": "JURANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48280852307, + 48.0610597586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29af9b1cdd3164f201dfe81dc72ac592dc90e896", + "fields": { + "code_commune_insee": "45183", + "nom_de_la_commune": "LION EN BEAUCE", + "code_postal": "45410", + "coordonnees_gps": [ + 48.1323882717, + 1.93217383047 + ], + "libelle_d_acheminement": "LION EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93217383047, + 48.1323882717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f9e1c746204dd9c4eeba5ae81c6fdba9ed549a5", + "fields": { + "ligne_5": "MAINVILLIERS", + "code_commune_insee": "45191", + "libelle_d_acheminement": "LE MALESHERBOIS", + "code_postal": "45330", + "nom_de_la_commune": "LE MALESHERBOIS", + "coordonnees_gps": [ + 48.2894150644, + 2.39799452821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39799452821, + 48.2894150644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddf6ee94329c02b34c6ccd9055b77a88614ae81e", + "fields": { + "code_commune_insee": "45193", + "nom_de_la_commune": "MARCILLY EN VILLETTE", + "code_postal": "45240", + "coordonnees_gps": [ + 47.7717120414, + 2.03429227556 + ], + "libelle_d_acheminement": "MARCILLY EN VILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03429227556, + 47.7717120414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cb2abecdb505c3a2a5acc46c2c8f911fb524e00", + "fields": { + "code_commune_insee": "45195", + "nom_de_la_commune": "MAREAU AUX BOIS", + "code_postal": "45300", + "coordonnees_gps": [ + 48.0983163957, + 2.19061248638 + ], + "libelle_d_acheminement": "MAREAU AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19061248638, + 48.0983163957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f595b037c4271c2528a9d82b1c0d165aa1da95e4", + "fields": { + "code_commune_insee": "45203", + "nom_de_la_commune": "MEUNG SUR LOIRE", + "code_postal": "45130", + "coordonnees_gps": [ + 47.8397230739, + 1.69811579508 + ], + "libelle_d_acheminement": "MEUNG SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69811579508, + 47.8397230739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0abeb817ed62cb8dfd3edea9ece57f68b6309583", + "fields": { + "code_commune_insee": "45209", + "nom_de_la_commune": "MONTBARROIS", + "code_postal": "45340", + "coordonnees_gps": [ + 48.0489827491, + 2.39677087385 + ], + "libelle_d_acheminement": "MONTBARROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39677087385, + 48.0489827491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b86fa4bb905515e7ff25409ff5a8f97917f83598", + "fields": { + "code_commune_insee": "45213", + "nom_de_la_commune": "MONTEREAU", + "code_postal": "45260", + "coordonnees_gps": [ + 47.8353730505, + 2.56194977117 + ], + "libelle_d_acheminement": "MONTEREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56194977117, + 47.8353730505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd5745a60be737d2099df0fcd7cd5ae9cf2724e5", + "fields": { + "code_commune_insee": "45220", + "nom_de_la_commune": "NANCRAY SUR RIMARDE", + "code_postal": "45340", + "coordonnees_gps": [ + 48.0673023784, + 2.3232297826 + ], + "libelle_d_acheminement": "NANCRAY SUR RIMARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3232297826, + 48.0673023784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2f9e625d72ecbe5526084fa865d5828d16e9b3c", + "fields": { + "code_commune_insee": "45227", + "nom_de_la_commune": "NEVOY", + "code_postal": "45500", + "coordonnees_gps": [ + 47.7333698571, + 2.59240936936 + ], + "libelle_d_acheminement": "NEVOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59240936936, + 47.7333698571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c75a00f1c05e959770aeb8eadd35e8aae9c67ed", + "fields": { + "code_commune_insee": "45230", + "nom_de_la_commune": "NOYERS", + "code_postal": "45260", + "coordonnees_gps": [ + 47.9091167277, + 2.53634979888 + ], + "libelle_d_acheminement": "NOYERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53634979888, + 47.9091167277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1833166b767d071282d84437712442be91efb937", + "fields": { + "code_commune_insee": "45233", + "nom_de_la_commune": "ONDREVILLE SUR ESSONNE", + "code_postal": "45390", + "coordonnees_gps": [ + 48.198009658, + 2.41619329627 + ], + "libelle_d_acheminement": "ONDREVILLE SUR ESSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41619329627, + 48.198009658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "591df92a594fd186e931704582f2ad2c9061bd71", + "fields": { + "code_commune_insee": "45237", + "nom_de_la_commune": "ORVILLE", + "code_postal": "45390", + "coordonnees_gps": [ + 48.2420197745, + 2.45858952893 + ], + "libelle_d_acheminement": "ORVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45858952893, + 48.2420197745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bcdd6bffcac9cad79452d547051ba96731df6dd", + "fields": { + "code_commune_insee": "45242", + "nom_de_la_commune": "OUZOUER DES CHAMPS", + "code_postal": "45290", + "coordonnees_gps": [ + 47.8765424809, + 2.70945964762 + ], + "libelle_d_acheminement": "OUZOUER DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70945964762, + 47.8765424809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1be6bb740c34b5f45c8b11918dee1c0a45c4a67e", + "fields": { + "code_commune_insee": "45243", + "nom_de_la_commune": "OUZOUER SOUS BELLEGARDE", + "code_postal": "45270", + "coordonnees_gps": [ + 47.9891839789, + 2.4796703966 + ], + "libelle_d_acheminement": "OUZOUER SOUS BELLEGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4796703966, + 47.9891839789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73a766606f2da4774d271025853e7c392eb5abdf", + "fields": { + "code_commune_insee": "45252", + "nom_de_la_commune": "PITHIVIERS", + "code_postal": "45300", + "coordonnees_gps": [ + 48.1805102613, + 2.24994341572 + ], + "libelle_d_acheminement": "PITHIVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24994341572, + 48.1805102613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f9c91ed4f6c16011806b9d8dfe9b90d833e9fc7", + "fields": { + "ligne_5": "BOUZONVILLE EN BEAUCE", + "code_commune_insee": "45253", + "libelle_d_acheminement": "PITHIVIERS LE VIEIL", + "code_postal": "45300", + "nom_de_la_commune": "PITHIVIERS LE VIEIL", + "coordonnees_gps": [ + 48.1732947804, + 2.20648380316 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20648380316, + 48.1732947804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89e21754f9ee30c240ddf5a77a75da18377a562e", + "fields": { + "code_commune_insee": "45254", + "nom_de_la_commune": "POILLY LEZ GIEN", + "code_postal": "45500", + "coordonnees_gps": [ + 47.6604278925, + 2.59453051579 + ], + "libelle_d_acheminement": "POILLY LEZ GIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59453051579, + 47.6604278925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33a402cac66c5529ae770add8c4d712393f7e654", + "fields": { + "code_commune_insee": "45255", + "nom_de_la_commune": "PREFONTAINES", + "code_postal": "45490", + "coordonnees_gps": [ + 48.1067340084, + 2.69095308156 + ], + "libelle_d_acheminement": "PREFONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69095308156, + 48.1067340084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fac21834586c8e42d3562a07884b23639ee68229", + "fields": { + "code_commune_insee": "45266", + "nom_de_la_commune": "RUAN", + "code_postal": "45410", + "coordonnees_gps": [ + 48.1088949762, + 1.92407655033 + ], + "libelle_d_acheminement": "RUAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92407655033, + 48.1088949762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc23bb5b1b0dbdb492468f1ab2c97dc7f4b0104e", + "fields": { + "code_commune_insee": "45269", + "nom_de_la_commune": "ST AY", + "code_postal": "45130", + "coordonnees_gps": [ + 47.8651975362, + 1.74675988816 + ], + "libelle_d_acheminement": "ST AY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74675988816, + 47.8651975362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f45d94d00547949eeae4f1d4d3dfb4bfc7b4c881", + "fields": { + "code_commune_insee": "45278", + "nom_de_la_commune": "STE GENEVIEVE DES BOIS", + "code_postal": "45230", + "coordonnees_gps": [ + 47.8115452338, + 2.79379001836 + ], + "libelle_d_acheminement": "STE GENEVIEVE DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79379001836, + 47.8115452338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd3e6b590ba796de822b89cacbfe1ee4f6b41b9a", + "fields": { + "code_commune_insee": "45279", + "nom_de_la_commune": "ST GERMAIN DES PRES", + "code_postal": "45220", + "coordonnees_gps": [ + 47.9656628356, + 2.84890321782 + ], + "libelle_d_acheminement": "ST GERMAIN DES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84890321782, + 47.9656628356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0418be698270f72a6d55ba3651003e9d4990074b", + "fields": { + "code_commune_insee": "45281", + "nom_de_la_commune": "ST HILAIRE LES ANDRESIS", + "code_postal": "45320", + "coordonnees_gps": [ + 48.0545962538, + 3.01538737178 + ], + "libelle_d_acheminement": "ST HILAIRE LES ANDRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01538737178, + 48.0545962538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b558302a78dbd537bc1f045d71258bae65e65cb3", + "fields": { + "code_commune_insee": "45302", + "nom_de_la_commune": "SARAN", + "code_postal": "45770", + "coordonnees_gps": [ + 47.9498311047, + 1.87809693517 + ], + "libelle_d_acheminement": "SARAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87809693517, + 47.9498311047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7225fee7a7cae3b48dd1b55d02558737b2dfbe35", + "fields": { + "code_commune_insee": "45305", + "nom_de_la_commune": "SEICHEBRIERES", + "code_postal": "45530", + "coordonnees_gps": [ + 47.9818237634, + 2.27403899045 + ], + "libelle_d_acheminement": "SEICHEBRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27403899045, + 47.9818237634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4c0edbd5a5eed4248a5e278664c65c8ea4f4c2b", + "fields": { + "code_commune_insee": "45306", + "nom_de_la_commune": "LA SELLE EN HERMOY", + "code_postal": "45210", + "coordonnees_gps": [ + 48.0055574782, + 2.88981309888 + ], + "libelle_d_acheminement": "LA SELLE EN HERMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88981309888, + 48.0055574782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12510141a7562291edda4c6a2fba0d4d30bb91f7", + "fields": { + "code_commune_insee": "45307", + "nom_de_la_commune": "LA SELLE SUR LE BIED", + "code_postal": "45210", + "coordonnees_gps": [ + 48.0762829727, + 2.88839623055 + ], + "libelle_d_acheminement": "LA SELLE SUR LE BIED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88839623055, + 48.0762829727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9aa824bb8e1cec848414b9027174fbfb94ed208", + "fields": { + "code_commune_insee": "45312", + "nom_de_la_commune": "SOLTERRE", + "code_postal": "45700", + "coordonnees_gps": [ + 47.912040887, + 2.73568856223 + ], + "libelle_d_acheminement": "SOLTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73568856223, + 47.912040887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6e291ebb71e332b5f407fa58cb7b626610ae1e3", + "fields": { + "code_commune_insee": "45315", + "nom_de_la_commune": "SULLY SUR LOIRE", + "code_postal": "45600", + "coordonnees_gps": [ + 47.7526229305, + 2.35647713689 + ], + "libelle_d_acheminement": "SULLY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35647713689, + 47.7526229305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a0c88f4eb0a1d64e854b23ee02ddf1094907899", + "fields": { + "code_commune_insee": "45320", + "nom_de_la_commune": "THIGNONVILLE", + "code_postal": "45300", + "coordonnees_gps": [ + 48.2716724773, + 2.17538321237 + ], + "libelle_d_acheminement": "THIGNONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17538321237, + 48.2716724773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f1629d2c63e3984008ce69ad9c65a5083b9d5d9", + "fields": { + "code_commune_insee": "45329", + "nom_de_la_commune": "TRIGUERES", + "code_postal": "45220", + "coordonnees_gps": [ + 47.9392051381, + 2.99479900894 + ], + "libelle_d_acheminement": "TRIGUERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99479900894, + 47.9392051381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26482c037d2939c0f68aad56475f505245f08d00", + "fields": { + "code_commune_insee": "45330", + "nom_de_la_commune": "TRINAY", + "code_postal": "45410", + "coordonnees_gps": [ + 48.0843446656, + 1.95253961783 + ], + "libelle_d_acheminement": "TRINAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95253961783, + 48.0843446656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8232f0b0a45442cd50ef0e20e136876c6acf557", + "fields": { + "code_commune_insee": "45338", + "nom_de_la_commune": "VILLEMANDEUR", + "code_postal": "45700", + "coordonnees_gps": [ + 47.9830187489, + 2.70512428321 + ], + "libelle_d_acheminement": "VILLEMANDEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70512428321, + 47.9830187489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ded62a0d4ce51ad97f6456a7609fec6491153d89", + "fields": { + "code_commune_insee": "45347", + "nom_de_la_commune": "VRIGNY", + "code_postal": "45300", + "coordonnees_gps": [ + 48.0740801124, + 2.24775186267 + ], + "libelle_d_acheminement": "VRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24775186267, + 48.0740801124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b04a21baa49933289e2a6b86db789c5c16289ef2", + "fields": { + "code_commune_insee": "45348", + "nom_de_la_commune": "YEVRE LA VILLE", + "code_postal": "45300", + "coordonnees_gps": [ + 48.1427599293, + 2.32302626395 + ], + "libelle_d_acheminement": "YEVRE LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32302626395, + 48.1427599293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "018ec7f8933eec7a6397391fc1293a6bc478c7ca", + "fields": { + "code_commune_insee": "46001", + "nom_de_la_commune": "ALBAS", + "code_postal": "46140", + "coordonnees_gps": [ + 44.461394449, + 1.24016214719 + ], + "libelle_d_acheminement": "ALBAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24016214719, + 44.461394449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdf261dae684890ec2e16b57a9ca48cde7b9d946", + "fields": { + "code_commune_insee": "46002", + "nom_de_la_commune": "ALBIAC", + "code_postal": "46500", + "coordonnees_gps": [ + 44.7677846601, + 1.81316980755 + ], + "libelle_d_acheminement": "ALBIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81316980755, + 44.7677846601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e463d6b0fcbe8c66284d2b5761f0c45b017a9e37", + "fields": { + "code_commune_insee": "46007", + "nom_de_la_commune": "ARCAMBAL", + "code_postal": "46090", + "coordonnees_gps": [ + 44.4543698318, + 1.54748898105 + ], + "libelle_d_acheminement": "ARCAMBAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54748898105, + 44.4543698318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "306e36c17ec214b98b2fc00e0c53d7dffdcdf771", + "fields": { + "code_commune_insee": "46011", + "nom_de_la_commune": "AUTOIRE", + "code_postal": "46400", + "coordonnees_gps": [ + 44.8583081491, + 1.82558835092 + ], + "libelle_d_acheminement": "AUTOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82558835092, + 44.8583081491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eabdb9145c861f617ca38760cdb4f7c1f3c17064", + "fields": { + "code_commune_insee": "46012", + "nom_de_la_commune": "AYNAC", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7879676429, + 1.85677368836 + ], + "libelle_d_acheminement": "AYNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85677368836, + 44.7879676429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "303e99398ca3cd0fa135fef9bf560dc52576d029", + "fields": { + "code_commune_insee": "46021", + "nom_de_la_commune": "BEDUER", + "code_postal": "46100", + "coordonnees_gps": [ + 44.5711043331, + 1.92666440325 + ], + "libelle_d_acheminement": "BEDUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92666440325, + 44.5711043331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0e3a568ae26f82dcbd2f79111f9c24d83e93a64", + "fields": { + "ligne_5": "LE BOULVE", + "code_commune_insee": "46033", + "libelle_d_acheminement": "PORTE DU QUERCY", + "code_postal": "46800", + "nom_de_la_commune": "PORTE DU QUERCY", + "coordonnees_gps": [ + 44.4210869463, + 1.1472613313 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1472613313, + 44.4210869463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c823c56b4a51e5bd31fd18942655b17fa2be78a9", + "fields": { + "code_commune_insee": "46034", + "nom_de_la_commune": "LE BOURG", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7061859872, + 1.90968231759 + ], + "libelle_d_acheminement": "LE BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90968231759, + 44.7061859872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f32d1202e2118c74e243a2182529e971a4a7175", + "fields": { + "code_commune_insee": "46037", + "nom_de_la_commune": "BOUZIES", + "code_postal": "46330", + "coordonnees_gps": [ + 44.4798801695, + 1.63591249054 + ], + "libelle_d_acheminement": "BOUZIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63591249054, + 44.4798801695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59443db1719ee8854b3ca41ac31f08ee207d1843", + "fields": { + "code_commune_insee": "46038", + "nom_de_la_commune": "BRETENOUX", + "code_postal": "46130", + "coordonnees_gps": [ + 44.9142894383, + 1.84254876727 + ], + "libelle_d_acheminement": "BRETENOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84254876727, + 44.9142894383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de92a1e105cfff6349cfb26d5cd18d3ec917491c", + "fields": { + "code_commune_insee": "46047", + "nom_de_la_commune": "CALES", + "code_postal": "46350", + "coordonnees_gps": [ + 44.7953417042, + 1.54576222775 + ], + "libelle_d_acheminement": "CALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54576222775, + 44.7953417042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "838a614bf4e25f7bd6f0c4bfe340cfd45d157acf", + "fields": { + "code_commune_insee": "46050", + "nom_de_la_commune": "CAMBAYRAC", + "code_postal": "46140", + "coordonnees_gps": [ + 44.4298765431, + 1.28736987423 + ], + "libelle_d_acheminement": "CAMBAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28736987423, + 44.4298765431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62a6ddbcdc830d9cbbbdf148887a607e9249379e", + "fields": { + "code_commune_insee": "46061", + "nom_de_la_commune": "CASSAGNES", + "code_postal": "46700", + "coordonnees_gps": [ + 44.5630523777, + 1.1285177981 + ], + "libelle_d_acheminement": "CASSAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1285177981, + 44.5630523777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8524b1bc25c3093b16bfd1a1531eaeaaf0565e9f", + "fields": { + "ligne_5": "CASTELNAU MONTRATIER", + "code_commune_insee": "46063", + "libelle_d_acheminement": "CASTELNAU MONTRATIER STE ALAUZIE", + "code_postal": "46170", + "nom_de_la_commune": "CASTELNAU MONTRATIER STE ALAUZIE", + "coordonnees_gps": [ + 44.2618964554, + 1.34787377419 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34787377419, + 44.2618964554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10724053df84aa6f56362f1d3c324d397b248ca4", + "fields": { + "code_commune_insee": "46068", + "nom_de_la_commune": "CENEVIERES", + "code_postal": "46330", + "coordonnees_gps": [ + 44.4455008428, + 1.73871325371 + ], + "libelle_d_acheminement": "CENEVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73871325371, + 44.4455008428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "622fbb26150de4b8665dc63bed4f5670af625cce", + "fields": { + "code_commune_insee": "46070", + "nom_de_la_commune": "CIEURAC", + "code_postal": "46230", + "coordonnees_gps": [ + 44.3708750908, + 1.49838889295 + ], + "libelle_d_acheminement": "CIEURAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49838889295, + 44.3708750908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d6a6f73daf6d95d3d0b4980593fba222c2db3cf", + "fields": { + "code_commune_insee": "46078", + "nom_de_la_commune": "COUZOU", + "code_postal": "46500", + "coordonnees_gps": [ + 44.7694704061, + 1.63206532223 + ], + "libelle_d_acheminement": "COUZOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63206532223, + 44.7694704061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c6fa08829f16eb3f1f2b51e0c8c0746e94754cc", + "fields": { + "code_commune_insee": "46090", + "nom_de_la_commune": "DURBANS", + "code_postal": "46320", + "coordonnees_gps": [ + 44.6792000888, + 1.76742895294 + ], + "libelle_d_acheminement": "DURBANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76742895294, + 44.6792000888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc22cc1bda40644ebcda39c470f2b9a8942e7a94", + "fields": { + "code_commune_insee": "46092", + "nom_de_la_commune": "ESCLAUZELS", + "code_postal": "46090", + "coordonnees_gps": [ + 44.4322856045, + 1.59801365045 + ], + "libelle_d_acheminement": "ESCLAUZELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59801365045, + 44.4322856045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e78fb2959c1f0cab8cf9dc86282afeb7184698e", + "fields": { + "code_commune_insee": "46094", + "nom_de_la_commune": "ESPEDAILLAC", + "code_postal": "46320", + "coordonnees_gps": [ + 44.6313262107, + 1.77517916048 + ], + "libelle_d_acheminement": "ESPEDAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77517916048, + 44.6313262107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f84a1a474e22b3231900301e177355c9269e736", + "fields": { + "code_commune_insee": "46100", + "nom_de_la_commune": "FAYCELLES", + "code_postal": "46100", + "coordonnees_gps": [ + 44.5656631085, + 1.99228446364 + ], + "libelle_d_acheminement": "FAYCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99228446364, + 44.5656631085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76e2905efc054fcb63be6d09108ce01f8928fb34", + "fields": { + "code_commune_insee": "46101", + "nom_de_la_commune": "FELZINS", + "code_postal": "46270", + "coordonnees_gps": [ + 44.6095612656, + 2.15053532047 + ], + "libelle_d_acheminement": "FELZINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15053532047, + 44.6095612656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e2d784e183d6dcdbadbadd65b46bb1e44bdd113", + "fields": { + "ligne_5": "ST PAUL DE LOUBRESSAC", + "code_commune_insee": "46103", + "libelle_d_acheminement": "ST PAUL FLAUGNAC", + "code_postal": "46170", + "nom_de_la_commune": "ST PAUL FLAUGNAC", + "coordonnees_gps": [ + 44.2910612603, + 1.40914730428 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40914730428, + 44.2910612603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49ec846dac6b7390ee4702aec8d0d774585b6f8d", + "fields": { + "code_commune_insee": "46111", + "nom_de_la_commune": "FOURMAGNAC", + "code_postal": "46100", + "coordonnees_gps": [ + 44.6657638987, + 1.98087268416 + ], + "libelle_d_acheminement": "FOURMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98087268416, + 44.6657638987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61d35871ca26773e16a77a5fe8b557d5b5a29b4a", + "fields": { + "code_commune_insee": "46116", + "nom_de_la_commune": "FRONTENAC", + "code_postal": "46160", + "coordonnees_gps": [ + 44.5445619042, + 1.97060806346 + ], + "libelle_d_acheminement": "FRONTENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97060806346, + 44.5445619042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6882838ba7cfc4442f9342b57ee4eff63614aa9", + "fields": { + "code_commune_insee": "46120", + "nom_de_la_commune": "GINDOU", + "code_postal": "46250", + "coordonnees_gps": [ + 44.6266225054, + 1.26418092568 + ], + "libelle_d_acheminement": "GINDOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26418092568, + 44.6266225054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c0b5eaf51cdde616ba34406b0deec62d1cf5264", + "fields": { + "code_commune_insee": "46122", + "nom_de_la_commune": "GINTRAC", + "code_postal": "46130", + "coordonnees_gps": [ + 44.8834895326, + 1.75273757543 + ], + "libelle_d_acheminement": "GINTRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75273757543, + 44.8834895326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3b95d24917d2d7868ba897819113f9eb3ab8902", + "fields": { + "code_commune_insee": "46126", + "nom_de_la_commune": "GOUJOUNAC", + "code_postal": "46250", + "coordonnees_gps": [ + 44.5750476412, + 1.20089199371 + ], + "libelle_d_acheminement": "GOUJOUNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20089199371, + 44.5750476412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4e1dd62836f31d3e6547b6f111a89bac3d35b82", + "fields": { + "code_commune_insee": "46132", + "nom_de_la_commune": "ISSENDOLUS", + "code_postal": "46500", + "coordonnees_gps": [ + 44.7387423552, + 1.77955688281 + ], + "libelle_d_acheminement": "ISSENDOLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77955688281, + 44.7387423552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8f7aa6bb2fa3cee1a6528e914a88dc8f269f807", + "fields": { + "ligne_5": "FONTANES DU CAUSSE", + "code_commune_insee": "46138", + "libelle_d_acheminement": "COEUR DE CAUSSE", + "code_postal": "46240", + "nom_de_la_commune": "COEUR DE CAUSSE", + "coordonnees_gps": [ + 44.6484325779, + 1.58028882268 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58028882268, + 44.6484325779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ac5d5f5a2d32ba961ded1a9794e75133599a34d", + "fields": { + "code_commune_insee": "46140", + "nom_de_la_commune": "LABURGADE", + "code_postal": "46230", + "coordonnees_gps": [ + 44.3889348605, + 1.54038779175 + ], + "libelle_d_acheminement": "LABURGADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54038779175, + 44.3889348605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbf64105aebd94e6545f3bf925743f2065386e55", + "fields": { + "code_commune_insee": "46143", + "nom_de_la_commune": "LACAPELLE MARIVAL", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7253588918, + 1.93631584115 + ], + "libelle_d_acheminement": "LACAPELLE MARIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93631584115, + 44.7253588918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fde1c42d4a5c441e4723b86282c3d43fbbcf5aa", + "fields": { + "code_commune_insee": "46147", + "nom_de_la_commune": "LAGARDELLE", + "code_postal": "46220", + "coordonnees_gps": [ + 44.4870907058, + 1.17069333497 + ], + "libelle_d_acheminement": "LAGARDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17069333497, + 44.4870907058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d6277425b4f05b72432b44b2cb1b6de49aa4eef", + "fields": { + "code_commune_insee": "46149", + "nom_de_la_commune": "LAMAGDELAINE", + "code_postal": "46090", + "coordonnees_gps": [ + 44.4740446239, + 1.50163136259 + ], + "libelle_d_acheminement": "LAMAGDELAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50163136259, + 44.4740446239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92b4e50dc0bdbd4ebb755bb29d1ba39f353cce4a", + "fields": { + "code_commune_insee": "46155", + "nom_de_la_commune": "LARNAGOL", + "code_postal": "46160", + "coordonnees_gps": [ + 44.488515893, + 1.77727129228 + ], + "libelle_d_acheminement": "LARNAGOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77727129228, + 44.488515893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0ad17be81990c11cf54fcd7bd0f6e64faff2308", + "fields": { + "code_commune_insee": "46167", + "nom_de_la_commune": "LENTILLAC DU CAUSSE", + "code_postal": "46330", + "coordonnees_gps": [ + 44.5528093464, + 1.63790392885 + ], + "libelle_d_acheminement": "LENTILLAC DU CAUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63790392885, + 44.5528093464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "915d28deab6c601e75543a217f07a1b1fb36ff1c", + "fields": { + "code_commune_insee": "46173", + "nom_de_la_commune": "LIMOGNE EN QUERCY", + "code_postal": "46260", + "coordonnees_gps": [ + 44.3966427227, + 1.77829583648 + ], + "libelle_d_acheminement": "LIMOGNE EN QUERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77829583648, + 44.3966427227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23d53f93fa4d07c988a8448dff4ce831c7b0f3da", + "fields": { + "code_commune_insee": "46176", + "nom_de_la_commune": "LIVERNON", + "code_postal": "46320", + "coordonnees_gps": [ + 44.6474230613, + 1.84523595274 + ], + "libelle_d_acheminement": "LIVERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84523595274, + 44.6474230613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "628afa428227bf4610f0ff8a5cf29f7366026a3e", + "fields": { + "code_commune_insee": "46177", + "nom_de_la_commune": "LOUBRESSAC", + "code_postal": "46130", + "coordonnees_gps": [ + 44.8660989972, + 1.79065883803 + ], + "libelle_d_acheminement": "LOUBRESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79065883803, + 44.8660989972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3486e600ea397ff8c61a624b9ec9c218a93c4741", + "fields": { + "code_commune_insee": "46181", + "nom_de_la_commune": "LUNEGARDE", + "code_postal": "46240", + "coordonnees_gps": [ + 44.6839954762, + 1.69297449351 + ], + "libelle_d_acheminement": "LUNEGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69297449351, + 44.6839954762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4397c0b932552b346b0e08e7c2f5755d3e63d31e", + "fields": { + "code_commune_insee": "46191", + "nom_de_la_commune": "MERCUES", + "code_postal": "46090", + "coordonnees_gps": [ + 44.4979192471, + 1.38947522255 + ], + "libelle_d_acheminement": "MERCUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38947522255, + 44.4979192471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6a3d435f5e389b3d3dd6a0243472a2ed39e5563", + "fields": { + "code_commune_insee": "46195", + "nom_de_la_commune": "MOLIERES", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7900404678, + 1.94025068217 + ], + "libelle_d_acheminement": "MOLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94025068217, + 44.7900404678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "defcd629e70376d6e4b81959e6ae22d336d3e218", + "fields": { + "ligne_5": "BELMONTET", + "code_commune_insee": "46201", + "libelle_d_acheminement": "MONTCUQ EN QUERCY BLANC", + "code_postal": "46800", + "nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", + "coordonnees_gps": [ + 44.335497631, + 1.21192283879 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21192283879, + 44.335497631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "545f8fabb7b053f614b7a9b3d90ad5a288a99b44", + "fields": { + "ligne_5": "LEBREIL", + "code_commune_insee": "46201", + "libelle_d_acheminement": "MONTCUQ EN QUERCY BLANC", + "code_postal": "46800", + "nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", + "coordonnees_gps": [ + 44.335497631, + 1.21192283879 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21192283879, + 44.335497631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0540e6097ba20c99bd355977d89f7331b432ad2f", + "fields": { + "ligne_5": "MONTCUQ", + "code_commune_insee": "46201", + "libelle_d_acheminement": "MONTCUQ EN QUERCY BLANC", + "code_postal": "46800", + "nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", + "coordonnees_gps": [ + 44.335497631, + 1.21192283879 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21192283879, + 44.335497631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b9ce0e831dd52af800fa1f5fe2ad285aa5e7855", + "fields": { + "ligne_5": "VALPRIONDE", + "code_commune_insee": "46201", + "libelle_d_acheminement": "MONTCUQ EN QUERCY BLANC", + "code_postal": "46800", + "nom_de_la_commune": "MONTCUQ EN QUERCY BLANC", + "coordonnees_gps": [ + 44.335497631, + 1.21192283879 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21192283879, + 44.335497631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "671f1255a7c8fac3a67155400d03dfe70d7d267b", + "fields": { + "code_commune_insee": "46202", + "nom_de_la_commune": "MONTDOUMERC", + "code_postal": "46230", + "coordonnees_gps": [ + 44.2911561581, + 1.50143339699 + ], + "libelle_d_acheminement": "MONTDOUMERC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50143339699, + 44.2911561581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24dced2f218e2b019feecf21fdb19da954b89a26", + "fields": { + "code_commune_insee": "46204", + "nom_de_la_commune": "MONTFAUCON", + "code_postal": "46240", + "coordonnees_gps": [ + 44.6868814093, + 1.58516687281 + ], + "libelle_d_acheminement": "MONTFAUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58516687281, + 44.6868814093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2993baaad234e6afa04db30135aab86f7782aa1", + "fields": { + "code_commune_insee": "46205", + "nom_de_la_commune": "MONTGESTY", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5751144304, + 1.29312666435 + ], + "libelle_d_acheminement": "MONTGESTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29312666435, + 44.5751144304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f829590eb8cd233f55bd7ca355db89ab19c67e42", + "fields": { + "code_commune_insee": "46206", + "nom_de_la_commune": "MONTLAUZUN", + "code_postal": "46800", + "coordonnees_gps": [ + 44.296637625, + 1.19344943646 + ], + "libelle_d_acheminement": "MONTLAUZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19344943646, + 44.296637625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b2f19620cdb71a815ad730d35a5a4f0256e5550", + "fields": { + "code_commune_insee": "46210", + "nom_de_la_commune": "NADILLAC", + "code_postal": "46360", + "coordonnees_gps": [ + 44.5639146169, + 1.51053421394 + ], + "libelle_d_acheminement": "NADILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51053421394, + 44.5639146169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b3c0a0c2faa7309195a26368d6b74fd046ce678", + "fields": { + "code_commune_insee": "46217", + "nom_de_la_commune": "PERN", + "code_postal": "46170", + "coordonnees_gps": [ + 44.3345123172, + 1.40726154278 + ], + "libelle_d_acheminement": "PERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40726154278, + 44.3345123172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a6809ed9e955c150a20bbc36ed5a59ba99cfe71", + "fields": { + "code_commune_insee": "46220", + "nom_de_la_commune": "PINSAC", + "code_postal": "46200", + "coordonnees_gps": [ + 44.8610534659, + 1.51873154289 + ], + "libelle_d_acheminement": "PINSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51873154289, + 44.8610534659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2542e441ad7f07f82beba86ccbfffa0ebbf9f1ac", + "fields": { + "code_commune_insee": "46221", + "nom_de_la_commune": "PLANIOLES", + "code_postal": "46100", + "coordonnees_gps": [ + 44.6420092578, + 2.02813348021 + ], + "libelle_d_acheminement": "PLANIOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02813348021, + 44.6420092578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b8c2b66e7f932eb7d0275d64bce7abf188d06a8", + "fields": { + "code_commune_insee": "46224", + "nom_de_la_commune": "PRADINES", + "code_postal": "46090", + "coordonnees_gps": [ + 44.464606105, + 1.38849304756 + ], + "libelle_d_acheminement": "PRADINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38849304756, + 44.464606105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af9554f22577fc600c1970a405daa7502c302d22", + "fields": { + "ligne_5": "LES QUATRE ROUTES DU LOT", + "code_commune_insee": "46232", + "libelle_d_acheminement": "LE VIGNON EN QUERCY", + "code_postal": "46110", + "nom_de_la_commune": "LE VIGNON EN QUERCY", + "coordonnees_gps": [ + 44.9962499088, + 1.63795364343 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63795364343, + 44.9962499088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8864c3cc6b924a459f453ebeed21588cf3a5c48", + "fields": { + "ligne_5": "CAZILLAC", + "code_commune_insee": "46232", + "libelle_d_acheminement": "LE VIGNON EN QUERCY", + "code_postal": "46600", + "nom_de_la_commune": "LE VIGNON EN QUERCY", + "coordonnees_gps": [ + 44.9962499088, + 1.63795364343 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63795364343, + 44.9962499088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43db26e8c70ea37e0a40cd5c7d8049d60a96c8fd", + "fields": { + "code_commune_insee": "46234", + "nom_de_la_commune": "RAMPOUX", + "code_postal": "46340", + "coordonnees_gps": [ + 44.6398724646, + 1.29448075247 + ], + "libelle_d_acheminement": "RAMPOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29448075247, + 44.6398724646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dafbc97aa43b64f35ac4430189f7b73b71a8bab5", + "fields": { + "code_commune_insee": "46242", + "nom_de_la_commune": "RUDELLE", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7292835526, + 1.87794922914 + ], + "libelle_d_acheminement": "RUDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87794922914, + 44.7292835526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b61f3acd36448b9d956436b264402b6458676a2d", + "fields": { + "code_commune_insee": "46255", + "nom_de_la_commune": "ST CIRGUES", + "code_postal": "46210", + "coordonnees_gps": [ + 44.7359417432, + 2.11647884119 + ], + "libelle_d_acheminement": "ST CIRGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11647884119, + 44.7359417432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d93c899595e5ccc43be495d8b857450eb8fd027e", + "fields": { + "code_commune_insee": "46260", + "nom_de_la_commune": "STE COLOMBE", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7204297846, + 2.01266388255 + ], + "libelle_d_acheminement": "STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01266388255, + 44.7204297846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "826a17cabb6739625c4d5ff421587587e3d1e7fe", + "fields": { + "code_commune_insee": "46264", + "nom_de_la_commune": "ST DENIS CATUS", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5692422139, + 1.38819379343 + ], + "libelle_d_acheminement": "ST DENIS CATUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38819379343, + 44.5692422139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "395f417675d44816ca551550dca3a5923b6eee34", + "fields": { + "code_commune_insee": "46270", + "nom_de_la_commune": "ST JEAN DE LAUR", + "code_postal": "46260", + "coordonnees_gps": [ + 44.4301259055, + 1.83118318259 + ], + "libelle_d_acheminement": "ST JEAN DE LAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83118318259, + 44.4301259055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8d4082761670224042c54864dd4a1c78f542f5b", + "fields": { + "code_commune_insee": "46277", + "nom_de_la_commune": "ST MARTIN LE REDON", + "code_postal": "46700", + "coordonnees_gps": [ + 44.5343809724, + 1.03448043775 + ], + "libelle_d_acheminement": "ST MARTIN LE REDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03448043775, + 44.5343809724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65beda33cd52431c5b99be4b2f83644dc10a70e2", + "fields": { + "code_commune_insee": "46283", + "nom_de_la_commune": "ST MICHEL DE BANNIERES", + "code_postal": "46110", + "coordonnees_gps": [ + 44.9755608245, + 1.68434656642 + ], + "libelle_d_acheminement": "ST MICHEL DE BANNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68434656642, + 44.9755608245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81cff96a0bfd21f5cc50f7f663a840b31c6bb635", + "fields": { + "code_commune_insee": "46289", + "nom_de_la_commune": "ST PIERRE TOIRAC", + "code_postal": "46160", + "coordonnees_gps": [ + 44.5365701769, + 1.95356991688 + ], + "libelle_d_acheminement": "ST PIERRE TOIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95356991688, + 44.5365701769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f590dba0a28244cb573c898c44bdd39611d366e3", + "fields": { + "code_commune_insee": "46297", + "nom_de_la_commune": "SALVIAC", + "code_postal": "46340", + "coordonnees_gps": [ + 44.6854910837, + 1.26478802676 + ], + "libelle_d_acheminement": "SALVIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26478802676, + 44.6854910837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72cd8505089b197585965d5043a5f96f96a84dd2", + "fields": { + "code_commune_insee": "46303", + "nom_de_la_commune": "SENAILLAC LAUZES", + "code_postal": "46360", + "coordonnees_gps": [ + 44.58919537, + 1.65078295529 + ], + "libelle_d_acheminement": "SENAILLAC LAUZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65078295529, + 44.58919537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeeb70af8db85b7b926670ada9c74c3c703941ee", + "fields": { + "code_commune_insee": "46306", + "nom_de_la_commune": "SONAC", + "code_postal": "46320", + "coordonnees_gps": [ + 44.6924652342, + 1.85472288011 + ], + "libelle_d_acheminement": "SONAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85472288011, + 44.6924652342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b64480901892f37736722f9d98837a03e943f26", + "fields": { + "code_commune_insee": "46307", + "nom_de_la_commune": "SOTURAC", + "code_postal": "46700", + "coordonnees_gps": [ + 44.5081490577, + 1.023587785 + ], + "libelle_d_acheminement": "SOTURAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.023587785, + 44.5081490577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1885d42e33c99c5a425df2cf43c1bc7750f17e81", + "fields": { + "ligne_5": "COMIAC", + "code_commune_insee": "46311", + "libelle_d_acheminement": "SOUSCEYRAC EN QUERCY", + "code_postal": "46190", + "nom_de_la_commune": "SOUSCEYRAC EN QUERCY", + "coordonnees_gps": [ + 44.8806327764, + 2.03547276303 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03547276303, + 44.8806327764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f76c90bd4facd8ea21a40d74c1f35641944381f0", + "fields": { + "ligne_5": "LAMATIVIE", + "code_commune_insee": "46311", + "libelle_d_acheminement": "SOUSCEYRAC EN QUERCY", + "code_postal": "46190", + "nom_de_la_commune": "SOUSCEYRAC EN QUERCY", + "coordonnees_gps": [ + 44.8806327764, + 2.03547276303 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03547276303, + 44.8806327764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b626da019102fe94d02fbea92fe5db61ba8932a5", + "fields": { + "code_commune_insee": "46312", + "nom_de_la_commune": "STRENQUELS", + "code_postal": "46110", + "coordonnees_gps": [ + 44.974737052, + 1.63626757537 + ], + "libelle_d_acheminement": "STRENQUELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63626757537, + 44.974737052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe54104e6565c1cbfa8a71202b000a89f2765ec3", + "fields": { + "code_commune_insee": "46318", + "nom_de_la_commune": "THEMINES", + "code_postal": "46120", + "coordonnees_gps": [ + 44.736284304, + 1.82100865888 + ], + "libelle_d_acheminement": "THEMINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82100865888, + 44.736284304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b092b5aae94c0b5d57cb7a52a812424c1d01fdb", + "fields": { + "code_commune_insee": "46321", + "nom_de_la_commune": "TOUZAC", + "code_postal": "46700", + "coordonnees_gps": [ + 44.4962914866, + 1.05945113782 + ], + "libelle_d_acheminement": "TOUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05945113782, + 44.4962914866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0af0dd8af5adabd7d4ae7602ecabea5f1ac400d1", + "fields": { + "code_commune_insee": "46323", + "nom_de_la_commune": "USSEL", + "code_postal": "46240", + "coordonnees_gps": [ + 44.5918903079, + 1.49596449018 + ], + "libelle_d_acheminement": "USSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49596449018, + 44.5918903079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19885b9728f9f052e5045499863affffe8a1f8e1", + "fields": { + "code_commune_insee": "46330", + "nom_de_la_commune": "VAYRAC", + "code_postal": "46110", + "coordonnees_gps": [ + 44.9450597014, + 1.69320675098 + ], + "libelle_d_acheminement": "VAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69320675098, + 44.9450597014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa5d8eeed15ff99a4849359391bd35ebcf189d6a", + "fields": { + "code_commune_insee": "46335", + "nom_de_la_commune": "VILLESEQUE", + "code_postal": "46090", + "coordonnees_gps": [ + 44.3978080627, + 1.31439035193 + ], + "libelle_d_acheminement": "VILLESEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31439035193, + 44.3978080627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0580b8c48235d214437b0cbb56fa8c8d742c0ce", + "fields": { + "code_commune_insee": "46336", + "nom_de_la_commune": "VIRE SUR LOT", + "code_postal": "46700", + "coordonnees_gps": [ + 44.4878353451, + 1.09829144521 + ], + "libelle_d_acheminement": "VIRE SUR LOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09829144521, + 44.4878353451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e116b8b33eda1121ea4917a99427e7125502e5e", + "fields": { + "code_commune_insee": "46337", + "nom_de_la_commune": "MAYRAC", + "code_postal": "46200", + "coordonnees_gps": [ + 44.8995623407, + 1.54645622061 + ], + "libelle_d_acheminement": "MAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54645622061, + 44.8995623407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81be7c3ffd21d67b02b0a87a669620a32de3d9f6", + "fields": { + "code_commune_insee": "46340", + "nom_de_la_commune": "ST PIERRE LAFEUILLE", + "code_postal": "46090", + "coordonnees_gps": [ + 44.5174745884, + 1.45454544343 + ], + "libelle_d_acheminement": "ST PIERRE LAFEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45454544343, + 44.5174745884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76b24cf0e58f5fa2165f8155a3f09b21edac9db9", + "fields": { + "code_commune_insee": "47002", + "nom_de_la_commune": "AGME", + "code_postal": "47350", + "coordonnees_gps": [ + 44.4893814272, + 0.340441106525 + ], + "libelle_d_acheminement": "AGME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.340441106525, + 44.4893814272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c460844897c9f4f05720d0765a4a3372fb78322", + "fields": { + "code_commune_insee": "47004", + "nom_de_la_commune": "AIGUILLON", + "code_postal": "47190", + "coordonnees_gps": [ + 44.3012876866, + 0.358229103443 + ], + "libelle_d_acheminement": "AIGUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.358229103443, + 44.3012876866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afb80d5ef6e279956ef361074412e59c2229c2d9", + "fields": { + "code_commune_insee": "47008", + "nom_de_la_commune": "AMBRUS", + "code_postal": "47160", + "coordonnees_gps": [ + 44.2306453539, + 0.246322512881 + ], + "libelle_d_acheminement": "AMBRUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.246322512881, + 44.2306453539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66fc4e3f039cac58c68c3563d6c143ec2c798492", + "fields": { + "code_commune_insee": "47011", + "nom_de_la_commune": "ANTHE", + "code_postal": "47370", + "coordonnees_gps": [ + 44.3736020127, + 0.955224087107 + ], + "libelle_d_acheminement": "ANTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.955224087107, + 44.3736020127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a2283d60887d366afb299effa0ef15f0bdac4c4", + "fields": { + "code_commune_insee": "47015", + "nom_de_la_commune": "ASTAFFORT", + "code_postal": "47220", + "coordonnees_gps": [ + 44.0646686165, + 0.658006549076 + ], + "libelle_d_acheminement": "ASTAFFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.658006549076, + 44.0646686165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1faeabb3767eab5c696e4762460a2bc1791d491a", + "fields": { + "code_commune_insee": "47017", + "nom_de_la_commune": "AURADOU", + "code_postal": "47140", + "coordonnees_gps": [ + 44.3409556685, + 0.814792058208 + ], + "libelle_d_acheminement": "AURADOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.814792058208, + 44.3409556685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f4594f131dafee1286bf8bdaf798d4eb21d5119", + "fields": { + "code_commune_insee": "47025", + "nom_de_la_commune": "BEAUVILLE", + "code_postal": "47470", + "coordonnees_gps": [ + 44.2747735697, + 0.896478238641 + ], + "libelle_d_acheminement": "BEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.896478238641, + 44.2747735697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66038a78b35cdcd89ac79e789660965cc6c5837c", + "fields": { + "code_commune_insee": "47027", + "nom_de_la_commune": "BIAS", + "code_postal": "47300", + "coordonnees_gps": [ + 44.410110122, + 0.669751567768 + ], + "libelle_d_acheminement": "BIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.669751567768, + 44.410110122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c7e20f3540670b08bdc2cd5beeb7371dfb1fbdc", + "fields": { + "code_commune_insee": "47049", + "nom_de_la_commune": "CASSENEUIL", + "code_postal": "47440", + "coordonnees_gps": [ + 44.4480744833, + 0.62184226742 + ], + "libelle_d_acheminement": "CASSENEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.62184226742, + 44.4480744833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "205bde7b26e92818898a6719c590a2e1c3061624", + "fields": { + "code_commune_insee": "47053", + "nom_de_la_commune": "CASTELLA", + "code_postal": "47340", + "coordonnees_gps": [ + 44.3138960011, + 0.684442218715 + ], + "libelle_d_acheminement": "CASTELLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.684442218715, + 44.3138960011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33209f1aad6f4fc5723451b6c91a316788eaa3a2", + "fields": { + "code_commune_insee": "47054", + "nom_de_la_commune": "CASTELMORON SUR LOT", + "code_postal": "47260", + "coordonnees_gps": [ + 44.4077972964, + 0.481340704559 + ], + "libelle_d_acheminement": "CASTELMORON SUR LOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.481340704559, + 44.4077972964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8aca220f22b03fc7059fba8d7d6129d7eceae2cf", + "fields": { + "code_commune_insee": "47058", + "nom_de_la_commune": "CAUBEYRES", + "code_postal": "47160", + "coordonnees_gps": [ + 44.2579597615, + 0.21692393129 + ], + "libelle_d_acheminement": "CAUBEYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21692393129, + 44.2579597615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c18d121de12241b36a4ccc88ba862f10982987d6", + "fields": { + "code_commune_insee": "47064", + "nom_de_la_commune": "CAZIDEROQUE", + "code_postal": "47370", + "coordonnees_gps": [ + 44.4042830502, + 0.930041418738 + ], + "libelle_d_acheminement": "CAZIDEROQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.930041418738, + 44.4042830502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d805d9bea187c4667903803e280c3d1be46e3a5", + "fields": { + "code_commune_insee": "47069", + "nom_de_la_commune": "COLAYRAC ST CIRQ", + "code_postal": "47450", + "coordonnees_gps": [ + 44.232339238, + 0.567143268052 + ], + "libelle_d_acheminement": "COLAYRAC ST CIRQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.567143268052, + 44.232339238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c082e3eed36f14e684a1c4d2973c5ed38a070110", + "fields": { + "code_commune_insee": "47070", + "nom_de_la_commune": "CONDEZAYGUES", + "code_postal": "47500", + "coordonnees_gps": [ + 44.4875096841, + 0.909054769911 + ], + "libelle_d_acheminement": "CONDEZAYGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.909054769911, + 44.4875096841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21e4d031d9556afa90361ffb1dd0fb2f01e75d30", + "fields": { + "code_commune_insee": "47071", + "nom_de_la_commune": "COULX", + "code_postal": "47260", + "coordonnees_gps": [ + 44.4738657983, + 0.467367146854 + ], + "libelle_d_acheminement": "COULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.467367146854, + 44.4738657983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96cab6637876d1e16c426e73b9ab662ad2ec1d9b", + "fields": { + "code_commune_insee": "47075", + "nom_de_la_commune": "LA CROIX BLANCHE", + "code_postal": "47340", + "coordonnees_gps": [ + 44.2901521659, + 0.693082511784 + ], + "libelle_d_acheminement": "LA CROIX BLANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.693082511784, + 44.2901521659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ffc67c4f88550a8fb533abb7472a7b9a569119", + "fields": { + "code_commune_insee": "47080", + "nom_de_la_commune": "DEVILLAC", + "code_postal": "47210", + "coordonnees_gps": [ + 44.6084613514, + 0.808010274791 + ], + "libelle_d_acheminement": "DEVILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.808010274791, + 44.6084613514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52e766a5cb3f4bf1d85280b5f720b0da20a1bcfa", + "fields": { + "code_commune_insee": "47091", + "nom_de_la_commune": "ESTILLAC", + "code_postal": "47310", + "coordonnees_gps": [ + 44.1691562918, + 0.577334843387 + ], + "libelle_d_acheminement": "ESTILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.577334843387, + 44.1691562918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1909a9b78d9720fd935651ad7121717d89e67b8", + "fields": { + "code_commune_insee": "47095", + "nom_de_la_commune": "FAUILLET", + "code_postal": "47400", + "coordonnees_gps": [ + 44.4250095732, + 0.290885125541 + ], + "libelle_d_acheminement": "FAUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.290885125541, + 44.4250095732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "321b7ce9728261db5da075c71d17f67d5fbf1606", + "fields": { + "code_commune_insee": "47110", + "nom_de_la_commune": "GONTAUD DE NOGARET", + "code_postal": "47400", + "coordonnees_gps": [ + 44.4615606607, + 0.292147658255 + ], + "libelle_d_acheminement": "GONTAUD DE NOGARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.292147658255, + 44.4615606607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "381ba25de684795a1a0d26c5a243bc738d94c1a0", + "fields": { + "code_commune_insee": "47112", + "nom_de_la_commune": "GRATELOUP ST GAYRAND", + "code_postal": "47400", + "coordonnees_gps": [ + 44.4181613232, + 0.394930271449 + ], + "libelle_d_acheminement": "GRATELOUP ST GAYRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.394930271449, + 44.4181613232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "358a927fc96564bdeb36de1525c1b3a8cc619011", + "fields": { + "code_commune_insee": "47117", + "nom_de_la_commune": "HAUTEFAGE LA TOUR", + "code_postal": "47340", + "coordonnees_gps": [ + 44.3417684874, + 0.77342151475 + ], + "libelle_d_acheminement": "HAUTEFAGE LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77342151475, + 44.3417684874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09c1acaeaa01b85a6b94cad5e4eaa6256c3764ed", + "fields": { + "code_commune_insee": "47118", + "nom_de_la_commune": "HAUTESVIGNES", + "code_postal": "47400", + "coordonnees_gps": [ + 44.4602853307, + 0.347089526942 + ], + "libelle_d_acheminement": "HAUTESVIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.347089526942, + 44.4602853307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1c02b428be7988ce0d1fefc08a4cf23bab40930", + "fields": { + "code_commune_insee": "47134", + "nom_de_la_commune": "LANNES", + "code_postal": "47170", + "coordonnees_gps": [ + 44.0233573212, + 0.28577304123 + ], + "libelle_d_acheminement": "LANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28577304123, + 44.0233573212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acd0b81710f3b9e3f1309b66710c164c05345f01", + "fields": { + "code_commune_insee": "47138", + "nom_de_la_commune": "LAROQUE TIMBAUT", + "code_postal": "47340", + "coordonnees_gps": [ + 44.2774473869, + 0.755893948106 + ], + "libelle_d_acheminement": "LAROQUE TIMBAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.755893948106, + 44.2774473869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "152cb465a94bf4f24d1f570031d1518e945528c4", + "fields": { + "code_commune_insee": "47140", + "nom_de_la_commune": "LAUGNAC", + "code_postal": "47360", + "coordonnees_gps": [ + 44.299488439, + 0.608669377753 + ], + "libelle_d_acheminement": "LAUGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.608669377753, + 44.299488439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99ac0eebc0477eab623d85b89d02ea30e6a54ad0", + "fields": { + "code_commune_insee": "47141", + "nom_de_la_commune": "LAUSSOU", + "code_postal": "47150", + "coordonnees_gps": [ + 44.576580457, + 0.779457385145 + ], + "libelle_d_acheminement": "LAUSSOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.779457385145, + 44.576580457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "871e15fd0f9c029fa69e4658bd33a33be2495317", + "fields": { + "code_commune_insee": "47142", + "nom_de_la_commune": "LAUZUN", + "code_postal": "47410", + "coordonnees_gps": [ + 44.6453836626, + 0.470249599127 + ], + "libelle_d_acheminement": "LAUZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.470249599127, + 44.6453836626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95861001a84f3c1ebc2caf93715108a1cffb565d", + "fields": { + "code_commune_insee": "47156", + "nom_de_la_commune": "MARCELLUS", + "code_postal": "47200", + "coordonnees_gps": [ + 44.4802329351, + 0.075926421979 + ], + "libelle_d_acheminement": "MARCELLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.075926421979, + 44.4802329351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4210ff4e73d06f27c475e0cdcea0ae220ef9034", + "fields": { + "code_commune_insee": "47158", + "nom_de_la_commune": "MARMONT PACHAS", + "code_postal": "47220", + "coordonnees_gps": [ + 44.0932080837, + 0.589921736383 + ], + "libelle_d_acheminement": "MARMONT PACHAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.589921736383, + 44.0932080837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "780625eaebfa5346c425f877916e86ece7b78d49", + "fields": { + "code_commune_insee": "47169", + "nom_de_la_commune": "MOIRAX", + "code_postal": "47310", + "coordonnees_gps": [ + 44.1399410012, + 0.608405659619 + ], + "libelle_d_acheminement": "MOIRAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.608405659619, + 44.1399410012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e146a21241cd682704134795211669eb86e82cf9", + "fields": { + "code_commune_insee": "47172", + "nom_de_la_commune": "MONCAUT", + "code_postal": "47310", + "coordonnees_gps": [ + 44.1440174531, + 0.496996373302 + ], + "libelle_d_acheminement": "MONCAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.496996373302, + 44.1440174531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f7bdd0ca70e87cf4a29c0ac7e7ea7b2beb7e9ff", + "fields": { + "code_commune_insee": "47173", + "nom_de_la_commune": "MONCLAR", + "code_postal": "47380", + "coordonnees_gps": [ + 44.4444866326, + 0.520661988159 + ], + "libelle_d_acheminement": "MONCLAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.520661988159, + 44.4444866326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aab202220a52a75f02e62b512ddcfe9fd349849", + "fields": { + "code_commune_insee": "47176", + "nom_de_la_commune": "MONGAILLARD", + "code_postal": "47230", + "coordonnees_gps": [ + 44.2096650364, + 0.295708893452 + ], + "libelle_d_acheminement": "MONGAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.295708893452, + 44.2096650364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40cd713984e3bbd0e1d5f1bd2edc3c6a92b54235", + "fields": { + "code_commune_insee": "47179", + "nom_de_la_commune": "MONSEMPRON LIBOS", + "code_postal": "47500", + "coordonnees_gps": [ + 44.5013903927, + 0.930633157359 + ], + "libelle_d_acheminement": "MONSEMPRON LIBOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.930633157359, + 44.5013903927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bea092c66a1c15875ae78cec9f676e8e70aec29", + "fields": { + "code_commune_insee": "47181", + "nom_de_la_commune": "MONTAGNAC SUR LEDE", + "code_postal": "47150", + "coordonnees_gps": [ + 44.5376312229, + 0.847318852557 + ], + "libelle_d_acheminement": "MONTAGNAC SUR LEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.847318852557, + 44.5376312229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d03c1451b467f32b9ae0cbfc6157341f42e4c55c", + "fields": { + "code_commune_insee": "47186", + "nom_de_la_commune": "MONTESQUIEU", + "code_postal": "47130", + "coordonnees_gps": [ + 44.2108785728, + 0.45197105625 + ], + "libelle_d_acheminement": "MONTESQUIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45197105625, + 44.2108785728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88a1c92a65f7c48a29ac122c59eb8a2c43a3e30b", + "fields": { + "code_commune_insee": "47188", + "nom_de_la_commune": "MONTIGNAC DE LAUZUN", + "code_postal": "47800", + "coordonnees_gps": [ + 44.5694175834, + 0.472687225332 + ], + "libelle_d_acheminement": "MONTIGNAC DE LAUZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.472687225332, + 44.5694175834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba9087aea23293a8d8e46825bd09f1a32ddec86", + "fields": { + "code_commune_insee": "47199", + "nom_de_la_commune": "PARDAILLAN", + "code_postal": "47120", + "coordonnees_gps": [ + 44.6681214341, + 0.268212802868 + ], + "libelle_d_acheminement": "PARDAILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.268212802868, + 44.6681214341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee88f3b11a7c0e93f0eaa72e3a6c43dcd8bae7d5", + "fields": { + "code_commune_insee": "47204", + "nom_de_la_commune": "PEYRIERE", + "code_postal": "47350", + "coordonnees_gps": [ + 44.5764574409, + 0.304876574867 + ], + "libelle_d_acheminement": "PEYRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.304876574867, + 44.5764574409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "978b38707ae7759240b54042c851e2243ae6b0f8", + "fields": { + "code_commune_insee": "47217", + "nom_de_la_commune": "PUYMIROL", + "code_postal": "47270", + "coordonnees_gps": [ + 44.1878890197, + 0.805532157902 + ], + "libelle_d_acheminement": "PUYMIROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.805532157902, + 44.1878890197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc597acfc17ea1c526dfe10fcd250d29a04b979e", + "fields": { + "code_commune_insee": "47218", + "nom_de_la_commune": "PUYSSERAMPION", + "code_postal": "47800", + "coordonnees_gps": [ + 44.599458637, + 0.319375464096 + ], + "libelle_d_acheminement": "PUYSSERAMPION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.319375464096, + 44.599458637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d17e91cd1a2cfabede2c83ca1a6dd64a5b960db9", + "fields": { + "code_commune_insee": "47223", + "nom_de_la_commune": "RIVES", + "code_postal": "47210", + "coordonnees_gps": [ + 44.655524312, + 0.738165575634 + ], + "libelle_d_acheminement": "RIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.738165575634, + 44.655524312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86451d2a0eae9b054755e1c0e715c9b7ad82e006", + "fields": { + "code_commune_insee": "47226", + "nom_de_la_commune": "ROUMAGNE", + "code_postal": "47800", + "coordonnees_gps": [ + 44.6252081244, + 0.342065324394 + ], + "libelle_d_acheminement": "ROUMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.342065324394, + 44.6252081244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eaf59c03e33dec8d090a72d7e15cf5b036f7f65", + "fields": { + "code_commune_insee": "47227", + "nom_de_la_commune": "RUFFIAC", + "code_postal": "47700", + "coordonnees_gps": [ + 44.368227915, + 0.0368814395107 + ], + "libelle_d_acheminement": "RUFFIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0368814395107, + 44.368227915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "020aa161102b7dc00501de024d74a02290bfa4d4", + "fields": { + "code_commune_insee": "47229", + "nom_de_la_commune": "ST ASTIER", + "code_postal": "47120", + "coordonnees_gps": [ + 44.7283518416, + 0.27199901218 + ], + "libelle_d_acheminement": "ST ASTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.27199901218, + 44.7283518416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efc34f0c0f68d9624467b2f5a6102359164ed2f1", + "fields": { + "code_commune_insee": "47231", + "nom_de_la_commune": "ST AVIT", + "code_postal": "47350", + "coordonnees_gps": [ + 44.5763841705, + 0.222115057407 + ], + "libelle_d_acheminement": "ST AVIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.222115057407, + 44.5763841705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddca433f0c24b479367d0c8f541c90f9d17ac4f8", + "fields": { + "code_commune_insee": "47233", + "nom_de_la_commune": "STE BAZEILLE", + "code_postal": "47180", + "coordonnees_gps": [ + 44.5304887615, + 0.103191443155 + ], + "libelle_d_acheminement": "STE BAZEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.103191443155, + 44.5304887615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71c229387ef9938531c29c2e8c098381ea2ccdc3", + "fields": { + "code_commune_insee": "47244", + "nom_de_la_commune": "STE GEMME MARTAILLAC", + "code_postal": "47250", + "coordonnees_gps": [ + 44.3678329817, + 0.161788672712 + ], + "libelle_d_acheminement": "STE GEMME MARTAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.161788672712, + 44.3678329817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8510f4ae236a77f8731d34cecfd3cd4b2290817c", + "fields": { + "code_commune_insee": "47245", + "nom_de_la_commune": "ST GERAUD", + "code_postal": "47120", + "coordonnees_gps": [ + 44.6226768076, + 0.157164651677 + ], + "libelle_d_acheminement": "ST GERAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.157164651677, + 44.6226768076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7889c9f0bc9bcfdb0362ec87758315d7f69358d", + "fields": { + "code_commune_insee": "47251", + "nom_de_la_commune": "ST LEON", + "code_postal": "47160", + "coordonnees_gps": [ + 44.2871805336, + 0.239913996126 + ], + "libelle_d_acheminement": "ST LEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.239913996126, + 44.2871805336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "197a07443d1208b901d06222d8ba20749d3d2543", + "fields": { + "code_commune_insee": "47256", + "nom_de_la_commune": "ST MARTIN DE VILLEREAL", + "code_postal": "47210", + "coordonnees_gps": [ + 44.6406306447, + 0.813494311456 + ], + "libelle_d_acheminement": "ST MARTIN DE VILLEREAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.813494311456, + 44.6406306447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "847381a2ac7ca256a846adb2ee60f8ebdb35e57c", + "fields": { + "code_commune_insee": "47264", + "nom_de_la_commune": "ST PARDOUX ISAAC", + "code_postal": "47800", + "coordonnees_gps": [ + 44.6122576161, + 0.378163344287 + ], + "libelle_d_acheminement": "ST PARDOUX ISAAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.378163344287, + 44.6122576161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5870c23ad9a3811446b7d5423360ae332007bacd", + "fields": { + "code_commune_insee": "47272", + "nom_de_la_commune": "ST QUENTIN DU DROPT", + "code_postal": "47330", + "coordonnees_gps": [ + 44.6813277192, + 0.599100664337 + ], + "libelle_d_acheminement": "ST QUENTIN DU DROPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.599100664337, + 44.6813277192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d162d695fea7bfa215088208777aa3fcd9ce129", + "fields": { + "code_commune_insee": "47276", + "nom_de_la_commune": "ST SARDOS", + "code_postal": "47360", + "coordonnees_gps": [ + 44.3387503829, + 0.489881579397 + ], + "libelle_d_acheminement": "ST SARDOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.489881579397, + 44.3387503829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaedd721b94028634bfed8ffef098ae19c477399", + "fields": { + "code_commune_insee": "47279", + "nom_de_la_commune": "ST SIXTE", + "code_postal": "47220", + "coordonnees_gps": [ + 44.1281007992, + 0.783277975172 + ], + "libelle_d_acheminement": "ST SIXTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.783277975172, + 44.1281007992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "004b9684670dcabfba13463a9f35bc3777d69108", + "fields": { + "code_commune_insee": "47285", + "nom_de_la_commune": "SAMAZAN", + "code_postal": "47250", + "coordonnees_gps": [ + 44.4348291944, + 0.109706411573 + ], + "libelle_d_acheminement": "SAMAZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706411573, + 44.4348291944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6b87319b01041584dc0d1a7f9e0ac130732c7d3", + "fields": { + "code_commune_insee": "47291", + "nom_de_la_commune": "LA SAUVETAT SUR LEDE", + "code_postal": "47150", + "coordonnees_gps": [ + 44.4818655678, + 0.716683447873 + ], + "libelle_d_acheminement": "LA SAUVETAT SUR LEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.716683447873, + 44.4818655678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8529ee2340e9eeff1bd8163559b381a6d7b99db4", + "fields": { + "code_commune_insee": "47292", + "nom_de_la_commune": "SAUVETERRE LA LEMANCE", + "code_postal": "47500", + "coordonnees_gps": [ + 44.5874333431, + 1.03791242819 + ], + "libelle_d_acheminement": "SAUVETERRE LA LEMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03791242819, + 44.5874333431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38ccf15086479997f237e2da1099cb66a588e767", + "fields": { + "code_commune_insee": "47299", + "nom_de_la_commune": "SERIGNAC PEBOUDOU", + "code_postal": "47410", + "coordonnees_gps": [ + 44.6157569967, + 0.53170226693 + ], + "libelle_d_acheminement": "SERIGNAC PEBOUDOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53170226693, + 44.6157569967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc4e83060fff04d5a09400b66460ac4495fe2bb4", + "fields": { + "code_commune_insee": "47302", + "nom_de_la_commune": "SOS", + "code_postal": "47170", + "coordonnees_gps": [ + 44.0568059441, + 0.125536637089 + ], + "libelle_d_acheminement": "SOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.125536637089, + 44.0568059441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0506012dc8f2c69c43712cefbbbd31d246d82dd", + "fields": { + "code_commune_insee": "47304", + "nom_de_la_commune": "TAILLEBOURG", + "code_postal": "47200", + "coordonnees_gps": [ + 44.4466946358, + 0.203133379028 + ], + "libelle_d_acheminement": "TAILLEBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.203133379028, + 44.4466946358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ec1091c8838ff58a3f057bf41866aab8fb3aa3b", + "fields": { + "code_commune_insee": "47307", + "nom_de_la_commune": "THEZAC", + "code_postal": "47370", + "coordonnees_gps": [ + 44.4336390624, + 1.01578855539 + ], + "libelle_d_acheminement": "THEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01578855539, + 44.4336390624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f68051a5e7a0dc67d00049b40c4e29ef56c2f44c", + "fields": { + "code_commune_insee": "47312", + "nom_de_la_commune": "TOURNON D AGENAIS", + "code_postal": "47370", + "coordonnees_gps": [ + 44.3925100376, + 0.996018809285 + ], + "libelle_d_acheminement": "TOURNON D AGENAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.996018809285, + 44.3925100376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc939fcf8f39847a6c27829c9d7b39841d680a5a", + "fields": { + "code_commune_insee": "47327", + "nom_de_la_commune": "XAINTRAILLES", + "code_postal": "47230", + "coordonnees_gps": [ + 44.207500641, + 0.256573989587 + ], + "libelle_d_acheminement": "XAINTRAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.256573989587, + 44.207500641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "104ea574632048ff9444e7a18d569d9b9cdf66c2", + "fields": { + "code_commune_insee": "48002", + "nom_de_la_commune": "ALBARET STE MARIE", + "code_postal": "48200", + "coordonnees_gps": [ + 44.8864422814, + 3.25064355451 + ], + "libelle_d_acheminement": "ALBARET STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25064355451, + 44.8864422814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f49d7a127a16c51dab5a1aae62908a2a34595d6", + "fields": { + "ligne_5": "AUMONT AUBRAC", + "code_commune_insee": "48009", + "libelle_d_acheminement": "PEYRE EN AUBRAC", + "code_postal": "48130", + "nom_de_la_commune": "PEYRE EN AUBRAC", + "coordonnees_gps": [ + 44.7233900467, + 3.28132614741 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28132614741, + 44.7233900467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d828afc3b52dc803c7427910ab04c07fe15254b", + "fields": { + "ligne_5": "LA CHAZE DE PEYRE", + "code_commune_insee": "48009", + "libelle_d_acheminement": "PEYRE EN AUBRAC", + "code_postal": "48130", + "nom_de_la_commune": "PEYRE EN AUBRAC", + "coordonnees_gps": [ + 44.7233900467, + 3.28132614741 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28132614741, + 44.7233900467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "726b1f1614c515bf68150fd67661632092d39b34", + "fields": { + "ligne_5": "ST SAUVEUR DE PEYRE", + "code_commune_insee": "48009", + "libelle_d_acheminement": "PEYRE EN AUBRAC", + "code_postal": "48130", + "nom_de_la_commune": "PEYRE EN AUBRAC", + "coordonnees_gps": [ + 44.7233900467, + 3.28132614741 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28132614741, + 44.7233900467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1f9b829be90157981a60627d9eeb3857e913d0d", + "fields": { + "code_commune_insee": "48010", + "nom_de_la_commune": "AUROUX", + "code_postal": "48600", + "coordonnees_gps": [ + 44.7574886567, + 3.72694597224 + ], + "libelle_d_acheminement": "AUROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72694597224, + 44.7574886567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "038493ca6f39e28120945d9a1ab13425b9aa7f0b", + "fields": { + "ligne_5": "BERC", + "code_commune_insee": "48012", + "libelle_d_acheminement": "LES MONTS VERTS", + "code_postal": "48200", + "nom_de_la_commune": "LES MONTS VERTS", + "coordonnees_gps": [ + 44.8489134822, + 3.22180661807 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22180661807, + 44.8489134822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe2fa12848a0b875363fe657943a75f18f84cce8", + "fields": { + "code_commune_insee": "48016", + "nom_de_la_commune": "BALSIEGES", + "code_postal": "48000", + "coordonnees_gps": [ + 44.4754747624, + 3.44126913972 + ], + "libelle_d_acheminement": "BALSIEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44126913972, + 44.4754747624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0444f7d6958c7d4646b30785d819502555b3d6eb", + "fields": { + "ligne_5": "BANASSAC", + "code_commune_insee": "48017", + "libelle_d_acheminement": "BANASSAC CANILHAC", + "code_postal": "48500", + "nom_de_la_commune": "BANASSAC CANILHAC", + "coordonnees_gps": [ + 44.4325411696, + 3.17908745544 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17908745544, + 44.4325411696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "746f836604abe2b02bc96e6eed0989c7e2c54a62", + "fields": { + "ligne_5": "CANILHAC", + "code_commune_insee": "48017", + "libelle_d_acheminement": "BANASSAC CANILHAC", + "code_postal": "48500", + "nom_de_la_commune": "BANASSAC CANILHAC", + "coordonnees_gps": [ + 44.4325411696, + 3.17908745544 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17908745544, + 44.4325411696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6b36bec812bcfa5b4aaa8bfbcbe701b631b6d78", + "fields": { + "ligne_5": "BAGNOLS LES BAINS", + "code_commune_insee": "48027", + "libelle_d_acheminement": "MONT LOZERE ET GOULET", + "code_postal": "48190", + "nom_de_la_commune": "MONT LOZERE ET GOULET", + "coordonnees_gps": [ + 44.5107452501, + 3.74294007436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74294007436, + 44.5107452501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4da6ee0afe840daedb3a78ea5e7c38dc6ef519d", + "fields": { + "code_commune_insee": "48029", + "nom_de_la_commune": "LE BORN", + "code_postal": "48000", + "coordonnees_gps": [ + 44.587957569, + 3.55902737103 + ], + "libelle_d_acheminement": "LE BORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55902737103, + 44.587957569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f071b9089d3c0f65d54e493b35bb5ad061c51df", + "fields": { + "code_commune_insee": "48032", + "nom_de_la_commune": "LE BUISSON", + "code_postal": "48100", + "coordonnees_gps": [ + 44.6289447122, + 3.22357816109 + ], + "libelle_d_acheminement": "LE BUISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22357816109, + 44.6289447122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec775b7825e3c94313fc284579648b283e2c8043", + "fields": { + "code_commune_insee": "48034", + "nom_de_la_commune": "LA CANOURGUE", + "code_postal": "48500", + "coordonnees_gps": [ + 44.4193711769, + 3.25711827627 + ], + "libelle_d_acheminement": "LA CANOURGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25711827627, + 44.4193711769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc909bc08d53a3c93b21caaf931d02f1b99ec57e", + "fields": { + "code_commune_insee": "48056", + "nom_de_la_commune": "ESCLANEDES", + "code_postal": "48230", + "coordonnees_gps": [ + 44.4813587557, + 3.36743197603 + ], + "libelle_d_acheminement": "ESCLANEDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36743197603, + 44.4813587557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ab3e9244210ab984ebc5a4836d5cc209455a91b", + "fields": { + "code_commune_insee": "48059", + "nom_de_la_commune": "LA FAGE ST JULIEN", + "code_postal": "48200", + "coordonnees_gps": [ + 44.7994035281, + 3.20844931182 + ], + "libelle_d_acheminement": "LA FAGE ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20844931182, + 44.7994035281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4a3b184aa7f317a4a561e64c7618d955831ad84", + "fields": { + "code_commune_insee": "48063", + "nom_de_la_commune": "FONTANS", + "code_postal": "48700", + "coordonnees_gps": [ + 44.7447322312, + 3.37636258527 + ], + "libelle_d_acheminement": "FONTANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37636258527, + 44.7447322312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b8835079d69551cdd356c645231bcaa485816cc", + "fields": { + "code_commune_insee": "48064", + "nom_de_la_commune": "FOURNELS", + "code_postal": "48310", + "coordonnees_gps": [ + 44.8115219718, + 3.12932702251 + ], + "libelle_d_acheminement": "FOURNELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12932702251, + 44.8115219718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b7ba83da727e9ac508d5a408f40a1f458c62570", + "fields": { + "code_commune_insee": "48065", + "nom_de_la_commune": "FRAISSINET DE FOURQUES", + "code_postal": "48400", + "coordonnees_gps": [ + 44.2089087169, + 3.53134006271 + ], + "libelle_d_acheminement": "FRAISSINET DE FOURQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53134006271, + 44.2089087169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b1299449967027ccc5afc2de41f0ce54a138476", + "fields": { + "code_commune_insee": "48067", + "nom_de_la_commune": "GABRIAC", + "code_postal": "48110", + "coordonnees_gps": [ + 44.1784497946, + 3.71130756296 + ], + "libelle_d_acheminement": "GABRIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71130756296, + 44.1784497946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a96b96c759e059a998cc820d1a11af3e47056d23", + "fields": { + "code_commune_insee": "48071", + "nom_de_la_commune": "GRANDVALS", + "code_postal": "48260", + "coordonnees_gps": [ + 44.7313582398, + 3.05208837669 + ], + "libelle_d_acheminement": "GRANDVALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05208837669, + 44.7313582398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbfb782c1463096014290d676de49e1f73d9687c", + "fields": { + "code_commune_insee": "48082", + "nom_de_la_commune": "LAUBERT", + "code_postal": "48170", + "coordonnees_gps": [ + 44.5972040067, + 3.64498618428 + ], + "libelle_d_acheminement": "LAUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64498618428, + 44.5972040067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "990ed1126434f2e323ab6f712b9e99ab22cc555c", + "fields": { + "code_commune_insee": "48083", + "nom_de_la_commune": "LES LAUBIES", + "code_postal": "48700", + "coordonnees_gps": [ + 44.7021823175, + 3.44235183055 + ], + "libelle_d_acheminement": "LES LAUBIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44235183055, + 44.7021823175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23dc44c487db306b34a76579825acf3f459af786", + "fields": { + "code_commune_insee": "48085", + "nom_de_la_commune": "LAVAL DU TARN", + "code_postal": "48500", + "coordonnees_gps": [ + 44.3736109677, + 3.34460539469 + ], + "libelle_d_acheminement": "LAVAL DU TARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34460539469, + 44.3736109677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08d49d9de6996ef5d9674d5354ddd5393ee9c2cd", + "fields": { + "code_commune_insee": "48088", + "nom_de_la_commune": "LA MALENE", + "code_postal": "48210", + "coordonnees_gps": [ + 44.3020788352, + 3.31365173313 + ], + "libelle_d_acheminement": "LA MALENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31365173313, + 44.3020788352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b380018c81beb5b92ab1fb5130851e64021b2f8b", + "fields": { + "code_commune_insee": "48089", + "nom_de_la_commune": "LE MALZIEU FORAIN", + "code_postal": "48140", + "coordonnees_gps": [ + 44.8695737618, + 3.38991258654 + ], + "libelle_d_acheminement": "LE MALZIEU FORAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38991258654, + 44.8695737618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07fb850dddbd40313c2f33b417ccfd297036956c", + "fields": { + "code_commune_insee": "48090", + "nom_de_la_commune": "LE MALZIEU VILLE", + "code_postal": "48140", + "coordonnees_gps": [ + 44.8630758811, + 3.33643761858 + ], + "libelle_d_acheminement": "LE MALZIEU VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33643761858, + 44.8630758811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a83042b0a49b57ca83e32efab643165d854ef882", + "fields": { + "code_commune_insee": "48091", + "nom_de_la_commune": "MARCHASTEL", + "code_postal": "48260", + "coordonnees_gps": [ + 44.6417575332, + 3.10788054889 + ], + "libelle_d_acheminement": "MARCHASTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10788054889, + 44.6417575332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcc03a3c21a2e793d58abfe7004b210e3dd6cdf6", + "fields": { + "code_commune_insee": "48092", + "nom_de_la_commune": "MARVEJOLS", + "code_postal": "48100", + "coordonnees_gps": [ + 44.5581181858, + 3.28780886743 + ], + "libelle_d_acheminement": "MARVEJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28780886743, + 44.5581181858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0d27124541523e3b61223a737e3e72ae36ee58a", + "fields": { + "code_commune_insee": "48098", + "nom_de_la_commune": "MOLEZON", + "code_postal": "48110", + "coordonnees_gps": [ + 44.2188601955, + 3.69509468816 + ], + "libelle_d_acheminement": "MOLEZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69509468816, + 44.2188601955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc4ce522e96bd0312de28aaf80a0074dd5e8a302", + "fields": { + "code_commune_insee": "48100", + "nom_de_la_commune": "MONTBEL", + "code_postal": "48170", + "coordonnees_gps": [ + 44.5963342329, + 3.71249068186 + ], + "libelle_d_acheminement": "MONTBEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71249068186, + 44.5963342329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bb631189d7aa60c405a0484c992b773f4d9e002", + "fields": { + "code_commune_insee": "48104", + "nom_de_la_commune": "NASBINALS", + "code_postal": "48260", + "coordonnees_gps": [ + 44.6444140961, + 3.04893734063 + ], + "libelle_d_acheminement": "NASBINALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04893734063, + 44.6444140961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f82f5127b98529c6155fbc3a71b8b4c8399bd5a4", + "fields": { + "ligne_5": "NAUSSAC", + "code_commune_insee": "48105", + "libelle_d_acheminement": "NAUSSAC FONTANES", + "code_postal": "48300", + "nom_de_la_commune": "NAUSSAC FONTANES", + "coordonnees_gps": [ + 44.7573739721, + 3.8000356543 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8000356543, + 44.7573739721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a321f65a523d2b592b4ae1814107536e3175b1c", + "fields": { + "ligne_5": "LE PONT DE MONTVERT", + "code_commune_insee": "48116", + "libelle_d_acheminement": "PONT DE MONTVERT SUD MONT LOZERE", + "code_postal": "48220", + "nom_de_la_commune": "PONT DE MONTVERT SUD MONT LOZERE", + "coordonnees_gps": [ + 44.3742853816, + 3.76917997857 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76917997857, + 44.3742853816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fa2842d5491403f8a24520725415613b1c87183", + "fields": { + "code_commune_insee": "48119", + "nom_de_la_commune": "PREVENCHERES", + "code_postal": "48800", + "coordonnees_gps": [ + 44.5189016289, + 3.92049351127 + ], + "libelle_d_acheminement": "PREVENCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92049351127, + 44.5189016289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d26bdf09410ce30cd49224edcdb3ba2518ef102d", + "fields": { + "ligne_5": "LACHAMP", + "code_commune_insee": "48126", + "libelle_d_acheminement": "LACHAMP RIBENNES", + "code_postal": "48100", + "nom_de_la_commune": "LACHAMP RIBENNES", + "coordonnees_gps": [ + 44.6498972232, + 3.386003003 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.386003003, + 44.6498972232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b46fd613c8695de7f3a3f05651d5f5ff5d2433e", + "fields": { + "ligne_5": "RIEUTORT DE RANDON", + "code_commune_insee": "48127", + "libelle_d_acheminement": "MONTS DE RANDON", + "code_postal": "48700", + "nom_de_la_commune": "MONTS DE RANDON", + "coordonnees_gps": [ + 44.6238353175, + 3.4886504946 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4886504946, + 44.6238353175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b05dd72d49795f3cfd818d11ed2fea89243b6be9", + "fields": { + "ligne_5": "ST AMANS", + "code_commune_insee": "48127", + "libelle_d_acheminement": "MONTS DE RANDON", + "code_postal": "48700", + "nom_de_la_commune": "MONTS DE RANDON", + "coordonnees_gps": [ + 44.6238353175, + 3.4886504946 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4886504946, + 44.6238353175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adab3c4e7316e88511fd378e7a239dcbabfc641e", + "fields": { + "code_commune_insee": "48131", + "nom_de_la_commune": "LE ROZIER", + "code_postal": "48150", + "coordonnees_gps": [ + 44.1953326945, + 3.21846877697 + ], + "libelle_d_acheminement": "LE ROZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21846877697, + 44.1953326945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1461eaa29ebb8c09cbca4fa364b50ab36b4b94ec", + "fields": { + "code_commune_insee": "48135", + "nom_de_la_commune": "ST ANDRE CAPCEZE", + "code_postal": "48800", + "coordonnees_gps": [ + 44.4177897224, + 3.94229613948 + ], + "libelle_d_acheminement": "ST ANDRE CAPCEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94229613948, + 44.4177897224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8512c2ed9f0ead1f0b3ca48438f503322a29fa35", + "fields": { + "ligne_5": "MONTBRUN", + "code_commune_insee": "48146", + "libelle_d_acheminement": "GORGES DU TARN CAUSSES", + "code_postal": "48210", + "nom_de_la_commune": "GORGES DU TARN CAUSSES", + "coordonnees_gps": [ + 44.3777129567, + 3.41934570392 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41934570392, + 44.3777129567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "146a81ec2e22081915c19462b176fba490e381ad", + "fields": { + "ligne_5": "QUEZAC", + "code_commune_insee": "48146", + "libelle_d_acheminement": "GORGES DU TARN CAUSSES", + "code_postal": "48320", + "nom_de_la_commune": "GORGES DU TARN CAUSSES", + "coordonnees_gps": [ + 44.3777129567, + 3.41934570392 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41934570392, + 44.3777129567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a04b4406a2cd628aa3fa93dabd417369599fe67", + "fields": { + "code_commune_insee": "48165", + "nom_de_la_commune": "ST LAURENT DE MURET", + "code_postal": "48100", + "coordonnees_gps": [ + 44.5986955189, + 3.17537194079 + ], + "libelle_d_acheminement": "ST LAURENT DE MURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17537194079, + 44.5986955189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1930775767d3ec7c68e835f4e0e81e1a10195f3e", + "fields": { + "ligne_5": "ST JULIEN D ARPAON", + "code_commune_insee": "48166", + "libelle_d_acheminement": "CANS ET CEVENNES", + "code_postal": "48400", + "nom_de_la_commune": "CANS ET CEVENNES", + "coordonnees_gps": [ + 44.2744783106, + 3.6064413039 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6064413039, + 44.2744783106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8b89b780c2e17bb1b5a4af39463d82ccfba0d27", + "fields": { + "code_commune_insee": "48185", + "nom_de_la_commune": "LES SALELLES", + "code_postal": "48230", + "coordonnees_gps": [ + 44.4847386708, + 3.27413095434 + ], + "libelle_d_acheminement": "LES SALELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27413095434, + 44.4847386708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad3be484cb54831e3cdbaa683e899d354debccc3", + "fields": { + "ligne_5": "AMBILLOU CHATEAU", + "code_commune_insee": "49003", + "libelle_d_acheminement": "TUFFALUN", + "code_postal": "49700", + "nom_de_la_commune": "TUFFALUN", + "coordonnees_gps": [ + 47.2573828474, + -0.337427788842 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.337427788842, + 47.2573828474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "820a29af946b3d74a6f34ec579bbb2e8e8c51a4e", + "fields": { + "ligne_5": "BAUGE", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45f70dbf519ebcd972800d0a4a417a06358e4896", + "fields": { + "ligne_5": "CHEVIRE LE ROUGE", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77992083f531d341d6bef4120270ccebd0d3ed06", + "fields": { + "ligne_5": "ST PHILBERT EN MAUGES", + "code_commune_insee": "49023", + "libelle_d_acheminement": "BEAUPREAU EN MAUGES", + "code_postal": "49600", + "nom_de_la_commune": "BEAUPREAU EN MAUGES", + "coordonnees_gps": [ + 47.2125984545, + -0.983619028639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.983619028639, + 47.2125984545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf46e7439ef3fad4e49f3392d88717ed7dbc374d", + "fields": { + "code_commune_insee": "49028", + "nom_de_la_commune": "BEHUARD", + "code_postal": "49170", + "coordonnees_gps": [ + 47.376691016, + -0.653915821734 + ], + "libelle_d_acheminement": "BEHUARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.653915821734, + 47.376691016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b741e19c981672c06130b302483168edd6896710", + "fields": { + "ligne_5": "BLAISON GOHIER", + "code_commune_insee": "49029", + "libelle_d_acheminement": "BLAISON ST SULPICE", + "code_postal": "49320", + "nom_de_la_commune": "BLAISON ST SULPICE", + "coordonnees_gps": [ + 47.3908187654, + -0.380019189582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.380019189582, + 47.3908187654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "242f97fb1f10e38af9d26d32345afb5398aa1e3a", + "fields": { + "code_commune_insee": "49035", + "nom_de_la_commune": "BOUCHEMAINE", + "code_postal": "49080", + "coordonnees_gps": [ + 47.4307669874, + -0.627122133651 + ], + "libelle_d_acheminement": "BOUCHEMAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.627122133651, + 47.4307669874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66b1193fbcef0c01c537ac2fa2080dc81dc91f80", + "fields": { + "ligne_5": "COUTURES", + "code_commune_insee": "49050", + "libelle_d_acheminement": "BRISSAC LOIRE AUBANCE", + "code_postal": "49320", + "nom_de_la_commune": "BRISSAC LOIRE AUBANCE", + "coordonnees_gps": [ + 47.3416678749, + -0.441366325976 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441366325976, + 47.3416678749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "422c6cf86dc8714642162d9af24beeb40fc6d0a6", + "fields": { + "ligne_5": "LUIGNE", + "code_commune_insee": "49050", + "libelle_d_acheminement": "BRISSAC LOIRE AUBANCE", + "code_postal": "49320", + "nom_de_la_commune": "BRISSAC LOIRE AUBANCE", + "coordonnees_gps": [ + 47.3416678749, + -0.441366325976 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441366325976, + 47.3416678749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e07e04ad779765741ce7e8749f32837692da1bb", + "fields": { + "ligne_5": "SAULGE L HOPITAL", + "code_commune_insee": "49050", + "libelle_d_acheminement": "BRISSAC LOIRE AUBANCE", + "code_postal": "49320", + "nom_de_la_commune": "BRISSAC LOIRE AUBANCE", + "coordonnees_gps": [ + 47.3416678749, + -0.441366325976 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441366325976, + 47.3416678749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44371d15b536721b5f11c670a88c95cf1473ea62", + "fields": { + "ligne_5": "ST SATURNIN SUR LOIRE", + "code_commune_insee": "49050", + "libelle_d_acheminement": "BRISSAC LOIRE AUBANCE", + "code_postal": "49320", + "nom_de_la_commune": "BRISSAC LOIRE AUBANCE", + "coordonnees_gps": [ + 47.3416678749, + -0.441366325976 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441366325976, + 47.3416678749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61d60f88cf05f6a1bfd667330f0657d23b0622a9", + "fields": { + "code_commune_insee": "49054", + "nom_de_la_commune": "CANDE", + "code_postal": "49440", + "coordonnees_gps": [ + 47.5585230813, + -1.03503351449 + ], + "libelle_d_acheminement": "CANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03503351449, + 47.5585230813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "263631e659c2093a522f485ffb56e9fc1c75019d", + "fields": { + "ligne_5": "CHENILLE CHANGE", + "code_commune_insee": "49067", + "libelle_d_acheminement": "CHENILLE CHAMPTEUSSE", + "code_postal": "49220", + "nom_de_la_commune": "CHENILLE CHAMPTEUSSE", + "coordonnees_gps": [ + 47.6694970175, + -0.65425867074 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65425867074, + 47.6694970175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "834d6fc7a098e58f29765bbbdc51ace6a0dd2bf7", + "fields": { + "ligne_5": "ST CHRISTOPHE LA COUPERIE", + "code_commune_insee": "49069", + "libelle_d_acheminement": "OREE D ANJOU", + "code_postal": "49270", + "nom_de_la_commune": "OREE D ANJOU", + "coordonnees_gps": [ + 47.3218941947, + -1.26053581871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26053581871, + 47.3218941947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf1f2fef85c0b53c01227954e5f222f3ec581898", + "fields": { + "ligne_5": "ST SAUVEUR DE LANDEMONT", + "code_commune_insee": "49069", + "libelle_d_acheminement": "OREE D ANJOU", + "code_postal": "49270", + "nom_de_la_commune": "OREE D ANJOU", + "coordonnees_gps": [ + 47.3218941947, + -1.26053581871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26053581871, + 47.3218941947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb3c499250573a93e0a7ddfc65b5f1fd9760e0e2", + "fields": { + "ligne_5": "LIRE", + "code_commune_insee": "49069", + "libelle_d_acheminement": "OREE D ANJOU", + "code_postal": "49530", + "nom_de_la_commune": "OREE D ANJOU", + "coordonnees_gps": [ + 47.3218941947, + -1.26053581871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26053581871, + 47.3218941947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20d2cc15d484b73c5e0b043ab987a23f72fbad0f", + "fields": { + "ligne_5": "SOEURDRES", + "code_commune_insee": "49080", + "libelle_d_acheminement": "LES HAUTS D ANJOU", + "code_postal": "49330", + "nom_de_la_commune": "LES HAUTS D ANJOU", + "coordonnees_gps": [ + 47.6841712906, + -0.495930395639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.495930395639, + 47.6841712906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c1637c3967e00bb696c0e87386a8f03e94fa751", + "fields": { + "code_commune_insee": "49082", + "nom_de_la_commune": "CHAUDEFONDS SUR LAYON", + "code_postal": "49290", + "coordonnees_gps": [ + 47.3253239782, + -0.721782727229 + ], + "libelle_d_acheminement": "CHAUDEFONDS SUR LAYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.721782727229, + 47.3253239782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37a5a8fd1b5628c3fec64a7e2cdd09fd8b5e85c5", + "fields": { + "ligne_5": "CHEMILLE MELAY", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49120", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b795a0ef326c2c7f5c1642d4e461ac73bcc76756", + "fields": { + "ligne_5": "LA CHAPELLE ROUSSELIN", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49120", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81599f0096dccbb1ad635033b9c6525bde1b509b", + "fields": { + "ligne_5": "ST GEORGES DES GARDES", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49120", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c331e5d22094d6825bbee2bf60868aeff85fe07b", + "fields": { + "ligne_5": "ST LEZIN", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49120", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a629456c8a74d35ca71f6d8ec096c6516e4f775", + "fields": { + "code_commune_insee": "49099", + "nom_de_la_commune": "CHOLET", + "code_postal": "49300", + "coordonnees_gps": [ + 47.0454402992, + -0.877886189605 + ], + "libelle_d_acheminement": "CHOLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.877886189605, + 47.0454402992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d73fdd5b9a80c62ad206b9ca341a39cd07e64064", + "fields": { + "code_commune_insee": "49107", + "nom_de_la_commune": "CORNILLE LES CAVES", + "code_postal": "49140", + "coordonnees_gps": [ + 47.4923319626, + -0.303632794526 + ], + "libelle_d_acheminement": "CORNILLE LES CAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.303632794526, + 47.4923319626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcd806b60fcb15c3be75fe9a246fad3e3e14553e", + "fields": { + "code_commune_insee": "49114", + "nom_de_la_commune": "COURLEON", + "code_postal": "49390", + "coordonnees_gps": [ + 47.3809189651, + 0.146996845138 + ], + "libelle_d_acheminement": "COURLEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.146996845138, + 47.3809189651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05f12269102f9503da5aa4892ad264d46ceefe83", + "fields": { + "ligne_5": "LES VERCHERS SUR LAYON", + "code_commune_insee": "49125", + "libelle_d_acheminement": "DOUE EN ANJOU", + "code_postal": "49700", + "nom_de_la_commune": "DOUE EN ANJOU", + "coordonnees_gps": [ + 47.1914715686, + -0.278336056087 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.278336056087, + 47.1914715686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cacb6bdd08d4a036244b83144d728df744bd46e1", + "fields": { + "ligne_5": "MONTFORT", + "code_commune_insee": "49125", + "libelle_d_acheminement": "DOUE EN ANJOU", + "code_postal": "49700", + "nom_de_la_commune": "DOUE EN ANJOU", + "coordonnees_gps": [ + 47.1914715686, + -0.278336056087 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.278336056087, + 47.1914715686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b4d4095f09df14f36896cc27be10aa228b1b501", + "fields": { + "code_commune_insee": "49129", + "nom_de_la_commune": "ECOUFLANT", + "code_postal": "49000", + "coordonnees_gps": [ + 47.5286938274, + -0.518454771034 + ], + "libelle_d_acheminement": "ECOUFLANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.518454771034, + 47.5286938274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b449fdbd98af4f83ce44dc40aa3fca9e1d653487", + "fields": { + "ligne_5": "FONTAINE GUERIN", + "code_commune_insee": "49138", + "libelle_d_acheminement": "LES BOIS D ANJOU", + "code_postal": "49250", + "nom_de_la_commune": "LES BOIS D ANJOU", + "coordonnees_gps": [ + 47.4829167789, + -0.174198642479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.174198642479, + 47.4829167789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76010778423cd22d5c67dd9170ddfe7b81e68898", + "fields": { + "ligne_5": "JUIGNE SUR LOIRE", + "code_commune_insee": "49167", + "libelle_d_acheminement": "LES GARENNES SUR LOIRE", + "code_postal": "49610", + "nom_de_la_commune": "LES GARENNES SUR LOIRE", + "coordonnees_gps": [ + 47.40011602, + -0.484584915233 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.484584915233, + 47.40011602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e3f55175ee6cce35b783b6a41faa18788483356", + "fields": { + "ligne_5": "HUILLE", + "code_commune_insee": "49174", + "libelle_d_acheminement": "HUILLE LEZIGNE", + "code_postal": "49430", + "nom_de_la_commune": "HUILLE LEZIGNE", + "coordonnees_gps": [ + 47.6367744645, + -0.292940093919 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.292940093919, + 47.6367744645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6cbe1d4e7f0a901c33295f930ed268656899a9a", + "fields": { + "ligne_5": "LEZIGNE", + "code_commune_insee": "49174", + "libelle_d_acheminement": "HUILLE LEZIGNE", + "code_postal": "49430", + "nom_de_la_commune": "HUILLE LEZIGNE", + "coordonnees_gps": [ + 47.6367744645, + -0.292940093919 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.292940093919, + 47.6367744645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "803e37b7c4651731b7934c06c214022b469cd30d", + "fields": { + "code_commune_insee": "49176", + "nom_de_la_commune": "LE LION D ANGERS", + "code_postal": "49220", + "coordonnees_gps": [ + 47.6307737346, + -0.749881925184 + ], + "libelle_d_acheminement": "LE LION D ANGERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.749881925184, + 47.6307737346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1b99fa4d7298629e42e0f5c98d61f574e1ba026", + "fields": { + "code_commune_insee": "49182", + "nom_de_la_commune": "LOURESSE ROCHEMENIER", + "code_postal": "49700", + "coordonnees_gps": [ + 47.2417694387, + -0.307091096953 + ], + "libelle_d_acheminement": "LOURESSE ROCHEMENIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.307091096953, + 47.2417694387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff886cbf1b41fd6ab49caf1eee2ede73da33ad56", + "fields": { + "ligne_5": "MAZE", + "code_commune_insee": "49194", + "libelle_d_acheminement": "MAZE MILON", + "code_postal": "49630", + "nom_de_la_commune": "MAZE MILON", + "coordonnees_gps": [ + 47.4603950447, + -0.284298744303 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.284298744303, + 47.4603950447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31a5924bf92ef6a38defbb24ab40bf0de0e56798", + "fields": { + "code_commune_insee": "49209", + "nom_de_la_commune": "MONTIGNE LES RAIRIES", + "code_postal": "49430", + "coordonnees_gps": [ + 47.6256194713, + -0.214038609082 + ], + "libelle_d_acheminement": "MONTIGNE LES RAIRIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.214038609082, + 47.6256194713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b9285065baea19d3ae184ebdcd567e9854d9f7a", + "fields": { + "code_commune_insee": "49215", + "nom_de_la_commune": "MONTREUIL BELLAY", + "code_postal": "49260", + "coordonnees_gps": [ + 47.1287547622, + -0.125278817925 + ], + "libelle_d_acheminement": "MONTREUIL BELLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.125278817925, + 47.1287547622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad70ffd46bb40e25492774ef5fd26be3d1dafc2c", + "fields": { + "code_commune_insee": "49217", + "nom_de_la_commune": "MONTREUIL SUR MAINE", + "code_postal": "49220", + "coordonnees_gps": [ + 47.6603355661, + -0.71140770195 + ], + "libelle_d_acheminement": "MONTREUIL SUR MAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.71140770195, + 47.6603355661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6883544d1dae5f3e0afaf6d90eb9874e24b535f1", + "fields": { + "ligne_5": "ST PIERRE MONTLIMART", + "code_commune_insee": "49218", + "libelle_d_acheminement": "MONTREVAULT SUR EVRE", + "code_postal": "49110", + "nom_de_la_commune": "MONTREVAULT SUR EVRE", + "coordonnees_gps": [ + 47.255395404, + -1.05160971025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05160971025, + 47.255395404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47b211466e59c0469ba1a975e1ceb0ba5ff1b77d", + "fields": { + "ligne_5": "BREIL", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49490", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b47dadcf46ad304a8e5a5e60581a096d6bbd456f", + "fields": { + "ligne_5": "CHALONNES SOUS LE LUDE", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49490", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da3f1956b26c514cf1db301f168685a25c775746", + "fields": { + "ligne_5": "MEON", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49490", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d4bd150514565ace867f5bb18439bef19422747", + "fields": { + "ligne_5": "ST LAURENT DU MOTTAY", + "code_commune_insee": "49244", + "libelle_d_acheminement": "MAUGES SUR LOIRE", + "code_postal": "49410", + "nom_de_la_commune": "MAUGES SUR LOIRE", + "coordonnees_gps": [ + 47.3429800481, + -0.869186945487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.869186945487, + 47.3429800481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc7a6c582dc16089ae9e8bf8f950e5600f96d27d", + "fields": { + "code_commune_insee": "49247", + "nom_de_la_commune": "LA POSSONNIERE", + "code_postal": "49170", + "coordonnees_gps": [ + 47.3814407983, + -0.708738811093 + ], + "libelle_d_acheminement": "LA POSSONNIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.708738811093, + 47.3814407983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a86322bea3edbc9f6788cfe151bc1f6e1d9a33d", + "fields": { + "ligne_5": "POUANCE", + "code_commune_insee": "49248", + "libelle_d_acheminement": "OMBREE D ANJOU", + "code_postal": "49420", + "nom_de_la_commune": "OMBREE D ANJOU", + "coordonnees_gps": [ + 47.7629344972, + -1.19300189799 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19300189799, + 47.7629344972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7df304457d5233fe4558103b7454ea934e94d1c5", + "fields": { + "ligne_5": "VERGONNES", + "code_commune_insee": "49248", + "libelle_d_acheminement": "OMBREE D ANJOU", + "code_postal": "49420", + "nom_de_la_commune": "OMBREE D ANJOU", + "coordonnees_gps": [ + 47.7629344972, + -1.19300189799 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19300189799, + 47.7629344972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99b376f7c697fe626f16d8749279ca1db318c974", + "fields": { + "ligne_5": "COMBREE", + "code_commune_insee": "49248", + "libelle_d_acheminement": "OMBREE D ANJOU", + "code_postal": "49520", + "nom_de_la_commune": "OMBREE D ANJOU", + "coordonnees_gps": [ + 47.7629344972, + -1.19300189799 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19300189799, + 47.7629344972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fddfde34b83694d1265e997a193cb963df02d8fb", + "fields": { + "ligne_5": "GRUGE L HOPITAL", + "code_commune_insee": "49248", + "libelle_d_acheminement": "OMBREE D ANJOU", + "code_postal": "49520", + "nom_de_la_commune": "OMBREE D ANJOU", + "coordonnees_gps": [ + 47.7629344972, + -1.19300189799 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19300189799, + 47.7629344972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7a648c3d5f15bcabb7f5751499f71ecbeeca6ee", + "fields": { + "ligne_5": "LE TREMBLAY", + "code_commune_insee": "49248", + "libelle_d_acheminement": "OMBREE D ANJOU", + "code_postal": "49520", + "nom_de_la_commune": "OMBREE D ANJOU", + "coordonnees_gps": [ + 47.7629344972, + -1.19300189799 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19300189799, + 47.7629344972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1cf193eca643f8d28e9a6ce11eb77cf4dfc6e00", + "fields": { + "ligne_5": "GREZILLE", + "code_commune_insee": "49261", + "libelle_d_acheminement": "GENNES VAL DE LOIRE", + "code_postal": "49320", + "nom_de_la_commune": "GENNES VAL DE LOIRE", + "coordonnees_gps": [ + 47.374115152, + -0.222562814963 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.222562814963, + 47.374115152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06a8c9d38008ef6cca141db3a13b15f58701b14e", + "fields": { + "ligne_5": "LE THOUREIL", + "code_commune_insee": "49261", + "libelle_d_acheminement": "GENNES VAL DE LOIRE", + "code_postal": "49350", + "nom_de_la_commune": "GENNES VAL DE LOIRE", + "coordonnees_gps": [ + 47.374115152, + -0.222562814963 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.222562814963, + 47.374115152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffb4ed65b36284a235456ef91ad40191d82d6fee", + "fields": { + "ligne_5": "TREVES CUNAULT", + "code_commune_insee": "49261", + "libelle_d_acheminement": "GENNES VAL DE LOIRE", + "code_postal": "49350", + "nom_de_la_commune": "GENNES VAL DE LOIRE", + "coordonnees_gps": [ + 47.374115152, + -0.222562814963 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.222562814963, + 47.374115152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea86c675bafb9cea486ad2d51ae9712729bfb151", + "fields": { + "code_commune_insee": "49288", + "nom_de_la_commune": "ST JEAN DE LA CROIX", + "code_postal": "49130", + "coordonnees_gps": [ + 47.4108613803, + -0.588351617749 + ], + "libelle_d_acheminement": "ST JEAN DE LA CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.588351617749, + 47.4108613803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a87fe5b548d0155cd324ea77061b34c7376f03e", + "fields": { + "ligne_5": "ST ANDRE DE LA MARCHE", + "code_commune_insee": "49301", + "libelle_d_acheminement": "SEVREMOINE", + "code_postal": "49450", + "nom_de_la_commune": "SEVREMOINE", + "coordonnees_gps": [ + 47.1256560392, + -0.998341815021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.998341815021, + 47.1256560392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e24877531fa998a54f006c28cba7af5d4c4571d", + "fields": { + "ligne_5": "LE LONGERON", + "code_commune_insee": "49301", + "libelle_d_acheminement": "SEVREMOINE", + "code_postal": "49710", + "nom_de_la_commune": "SEVREMOINE", + "coordonnees_gps": [ + 47.1256560392, + -0.998341815021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.998341815021, + 47.1256560392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c15c062d1798a67d9b4a76585f397d1e8f63d142", + "fields": { + "ligne_5": "BAUNE", + "code_commune_insee": "49307", + "libelle_d_acheminement": "LOIRE AUTHION", + "code_postal": "49140", + "nom_de_la_commune": "LOIRE AUTHION", + "coordonnees_gps": [ + 47.4219645317, + -0.319673646947 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.319673646947, + 47.4219645317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6094268dfecee164730fec0262f4c949276c85b7", + "fields": { + "code_commune_insee": "49310", + "nom_de_la_commune": "ST PAUL DU BOIS", + "code_postal": "49310", + "coordonnees_gps": [ + 47.0892502591, + -0.541920339488 + ], + "libelle_d_acheminement": "ST PAUL DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.541920339488, + 47.0892502591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d90f41debbe88e1f30cffb9be06c6bc466d1fd0a", + "fields": { + "ligne_5": "PELLOUAILLES LES VIGNES", + "code_commune_insee": "49323", + "libelle_d_acheminement": "VERRIERES EN ANJOU", + "code_postal": "49112", + "nom_de_la_commune": "VERRIERES EN ANJOU", + "coordonnees_gps": [ + 47.5123317726, + -0.475837998559 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.475837998559, + 47.5123317726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffe68ec54300dae520bed7132f51fdcb9646e8ca", + "fields": { + "ligne_5": "BAGNEUX", + "code_commune_insee": "49328", + "libelle_d_acheminement": "SAUMUR", + "code_postal": "49400", + "nom_de_la_commune": "SAUMUR", + "coordonnees_gps": [ + 47.2673853525, + -0.0830410591988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0830410591988, + 47.2673853525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ba171ec6e7b8753f30a0e5424e757dff1292751", + "fields": { + "ligne_5": "ST SAUVEUR DE FLEE", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49500", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2b7cf4e9a8f620f40ef3b99d7b1263e5b117642", + "fields": { + "ligne_5": "CHATELAIS", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49520", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a1b5c9bfc24e88390f43fa0c5829f7bff3bbb42", + "fields": { + "code_commune_insee": "49332", + "nom_de_la_commune": "LA SEGUINIERE", + "code_postal": "49280", + "coordonnees_gps": [ + 47.0803772753, + -0.957722131472 + ], + "libelle_d_acheminement": "LA SEGUINIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.957722131472, + 47.0803772753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fab4a16e9fa305b8aeecdd3001a0f61054923e3a", + "fields": { + "code_commune_insee": "49339", + "nom_de_la_commune": "SOULAIRE ET BOURG", + "code_postal": "49460", + "coordonnees_gps": [ + 47.5798701651, + -0.542933611394 + ], + "libelle_d_acheminement": "SOULAIRE ET BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.542933611394, + 47.5798701651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fa04c32674a13cb2ef130300550f2fb9e4a00bd", + "fields": { + "ligne_5": "FAVERAYE MACHELLES", + "code_commune_insee": "49345", + "libelle_d_acheminement": "BELLEVIGNE EN LAYON", + "code_postal": "49380", + "nom_de_la_commune": "BELLEVIGNE EN LAYON", + "coordonnees_gps": [ + 47.2592682331, + -0.517923916545 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.517923916545, + 47.2592682331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "514dc551cdb2400e693402bebc60525734d5d91d", + "fields": { + "ligne_5": "RABLAY SUR LAYON", + "code_commune_insee": "49345", + "libelle_d_acheminement": "BELLEVIGNE EN LAYON", + "code_postal": "49750", + "nom_de_la_commune": "BELLEVIGNE EN LAYON", + "coordonnees_gps": [ + 47.2592682331, + -0.517923916545 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.517923916545, + 47.2592682331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9060f6e6c9418c0ddf0a17e8f112c48785ffe976", + "fields": { + "ligne_5": "BRAIN SUR LONGUENEE", + "code_commune_insee": "49367", + "libelle_d_acheminement": "ERDRE EN ANJOU", + "code_postal": "49220", + "nom_de_la_commune": "ERDRE EN ANJOU", + "coordonnees_gps": [ + 47.5882203908, + -0.849650865368 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.849650865368, + 47.5882203908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebfadaed2cfdd3d07cf040ac9fe5aac4bace80be", + "fields": { + "ligne_5": "GENE", + "code_commune_insee": "49367", + "libelle_d_acheminement": "ERDRE EN ANJOU", + "code_postal": "49220", + "nom_de_la_commune": "ERDRE EN ANJOU", + "coordonnees_gps": [ + 47.5882203908, + -0.849650865368 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.849650865368, + 47.5882203908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36c3e535f09990a606c2056e3745fd965e39f538", + "fields": { + "ligne_5": "LA POUEZE", + "code_commune_insee": "49367", + "libelle_d_acheminement": "ERDRE EN ANJOU", + "code_postal": "49370", + "nom_de_la_commune": "ERDRE EN ANJOU", + "coordonnees_gps": [ + 47.5882203908, + -0.849650865368 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.849650865368, + 47.5882203908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6f96074027eee4109203820f59a526f2783e34d", + "fields": { + "code_commune_insee": "49369", + "nom_de_la_commune": "VERNOIL LE FOURRIER", + "code_postal": "49390", + "coordonnees_gps": [ + 47.3961591368, + 0.097374002532 + ], + "libelle_d_acheminement": "VERNOIL LE FOURRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.097374002532, + 47.3961591368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "575af61df7cfa14cb2bfdc34eec1b0e55aacc508", + "fields": { + "code_commune_insee": "49370", + "nom_de_la_commune": "VERRIE", + "code_postal": "49400", + "coordonnees_gps": [ + 47.2685065312, + -0.186628431321 + ], + "libelle_d_acheminement": "VERRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.186628431321, + 47.2685065312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dada38f80c57aa01db1ea58c0b1a02c4b185a7a", + "fields": { + "ligne_5": "NUEIL SUR LAYON", + "code_commune_insee": "49373", + "libelle_d_acheminement": "LYS HAUT LAYON", + "code_postal": "49560", + "nom_de_la_commune": "LYS HAUT LAYON", + "coordonnees_gps": [ + 47.1373301524, + -0.559450064005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.559450064005, + 47.1373301524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3772b89b5ff891a9c88bf72550d891bea3c04c3a", + "fields": { + "code_commune_insee": "50025", + "nom_de_la_commune": "AVRANCHES", + "code_postal": "50300", + "coordonnees_gps": [ + 48.6884746717, + -1.35732338245 + ], + "libelle_d_acheminement": "AVRANCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35732338245, + 48.6884746717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00785932b47b6141bea83a10b26b21c3474aa30f", + "fields": { + "code_commune_insee": "50026", + "nom_de_la_commune": "AZEVILLE", + "code_postal": "50310", + "coordonnees_gps": [ + 49.4572780775, + -1.31285353585 + ], + "libelle_d_acheminement": "AZEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31285353585, + 49.4572780775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcd7b747ab28567e700cf90197a15c3a135af39d", + "fields": { + "code_commune_insee": "50029", + "nom_de_la_commune": "BARENTON", + "code_postal": "50720", + "coordonnees_gps": [ + 48.6083533868, + -0.830642245682 + ], + "libelle_d_acheminement": "BARENTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.830642245682, + 48.6083533868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be5c50afc80299edd52b3c3916d868716001b7eb", + "fields": { + "code_commune_insee": "50033", + "nom_de_la_commune": "BAUBIGNY", + "code_postal": "50270", + "coordonnees_gps": [ + 49.4277910269, + -1.80597357475 + ], + "libelle_d_acheminement": "BAUBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.80597357475, + 49.4277910269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8229a365e4454f5038b3726fcace251ace9c6d4", + "fields": { + "ligne_5": "BRANVILLE HAGUE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a31d325dd3484d01fbcbcc6e82948940884dc58c", + "fields": { + "ligne_5": "OMONVILLE LA ROGUE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff86b04eaab0fade6a02e5eb9153918b0c7c0b08", + "fields": { + "code_commune_insee": "50046", + "nom_de_la_commune": "BERIGNY", + "code_postal": "50810", + "coordonnees_gps": [ + 49.1372472004, + -0.947359698893 + ], + "libelle_d_acheminement": "BERIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.947359698893, + 49.1372472004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "974be0aa760a9deabeea80eb27ebf0ffc94b819e", + "fields": { + "code_commune_insee": "50060", + "nom_de_la_commune": "LA BLOUTIERE", + "code_postal": "50800", + "coordonnees_gps": [ + 48.8700905322, + -1.24787411802 + ], + "libelle_d_acheminement": "LA BLOUTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24787411802, + 48.8700905322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28fee9436c1af6407e983b81852ed0746ee82515", + "fields": { + "code_commune_insee": "50077", + "nom_de_la_commune": "BRETTEVILLE", + "code_postal": "50110", + "coordonnees_gps": [ + 49.6500323441, + -1.508274502 + ], + "libelle_d_acheminement": "BRETTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.508274502, + 49.6500323441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b98846e41177f19ecd59d3678109a83998b62522", + "fields": { + "code_commune_insee": "50078", + "nom_de_la_commune": "BRETTEVILLE SUR AY", + "code_postal": "50430", + "coordonnees_gps": [ + 49.257448557, + -1.62881599028 + ], + "libelle_d_acheminement": "BRETTEVILLE SUR AY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62881599028, + 49.257448557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52cea1a7a1768064a0e02c65a81f4cb61e373d80", + "fields": { + "code_commune_insee": "50083", + "nom_de_la_commune": "BRICQUEBOSQ", + "code_postal": "50340", + "coordonnees_gps": [ + 49.5357212716, + -1.71763641021 + ], + "libelle_d_acheminement": "BRICQUEBOSQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71763641021, + 49.5357212716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dca377ec67467d625d11d7fd5a7309122a9d59f1", + "fields": { + "code_commune_insee": "50086", + "nom_de_la_commune": "BRILLEVAST", + "code_postal": "50330", + "coordonnees_gps": [ + 49.6251847771, + -1.41274998692 + ], + "libelle_d_acheminement": "BRILLEVAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41274998692, + 49.6251847771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92c2cccccfadee958cbdcd9e9b183727fbd06e08", + "fields": { + "ligne_5": "ST SYMPHORIEN DES MONTS", + "code_commune_insee": "50090", + "libelle_d_acheminement": "BUAIS LES MONTS", + "code_postal": "50640", + "nom_de_la_commune": "BUAIS LES MONTS", + "coordonnees_gps": [ + 48.5185588487, + -0.971234303313 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.971234303313, + 48.5185588487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c618ad2a24436ca38a8d07c869b2c60cbe8587c", + "fields": { + "code_commune_insee": "50096", + "nom_de_la_commune": "CANTELOUP", + "code_postal": "50330", + "coordonnees_gps": [ + 49.6403205635, + -1.35985612981 + ], + "libelle_d_acheminement": "CANTELOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35985612981, + 49.6403205635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ee1bee15563175c0ac4c24ea970b0769133e09e", + "fields": { + "ligne_5": "BRUCHEVILLE", + "code_commune_insee": "50099", + "libelle_d_acheminement": "CARENTAN LES MARAIS", + "code_postal": "50480", + "nom_de_la_commune": "CARENTAN LES MARAIS", + "coordonnees_gps": [ + 49.2963250601, + -1.2559215726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2559215726, + 49.2963250601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3282f02f503dfd7471e109487fa9ff9d18db3de", + "fields": { + "code_commune_insee": "50108", + "nom_de_la_commune": "CEAUX", + "code_postal": "50220", + "coordonnees_gps": [ + 48.6305274048, + -1.38499101591 + ], + "libelle_d_acheminement": "CEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38499101591, + 48.6305274048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d9479fbdcad5cd97f30fa60c45adc5870181659", + "fields": { + "code_commune_insee": "50110", + "nom_de_la_commune": "CERISY LA FORET", + "code_postal": "50680", + "coordonnees_gps": [ + 49.1921145601, + -0.938538623187 + ], + "libelle_d_acheminement": "CERISY LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.938538623187, + 49.1921145601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5795cac756dd6efbd101083f0f67df17b4807f14", + "fields": { + "ligne_5": "CHERBOURG", + "code_commune_insee": "50129", + "libelle_d_acheminement": "CHERBOURG EN COTENTIN", + "code_postal": "50130", + "nom_de_la_commune": "CHERBOURG EN COTENTIN", + "coordonnees_gps": [ + 49.633412156, + -1.63390160204 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63390160204, + 49.633412156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb8445b1e69fb2243666b095b0b8b367e3f2ab14", + "fields": { + "code_commune_insee": "50139", + "nom_de_la_commune": "CONDE SUR VIRE", + "code_postal": "50890", + "coordonnees_gps": [ + 49.0540546845, + -1.02453868309 + ], + "libelle_d_acheminement": "CONDE SUR VIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02453868309, + 49.0540546845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63abd1ccaf9fbfbf789785dcebb1c99a6a5364c0", + "fields": { + "ligne_5": "COSQUEVILLE", + "code_commune_insee": "50142", + "libelle_d_acheminement": "VICQ SUR MER", + "code_postal": "50330", + "nom_de_la_commune": "VICQ SUR MER", + "coordonnees_gps": [ + 49.6915085353, + -1.4000999278 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4000999278, + 49.6915085353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcfd74928dca26119a0987189542d299b62f00b6", + "fields": { + "ligne_5": "GOUBERVILLE", + "code_commune_insee": "50142", + "libelle_d_acheminement": "VICQ SUR MER", + "code_postal": "50330", + "nom_de_la_commune": "VICQ SUR MER", + "coordonnees_gps": [ + 49.6915085353, + -1.4000999278 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4000999278, + 49.6915085353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac7f26e871206f77541faaec3c88698831caeedc", + "fields": { + "code_commune_insee": "50143", + "nom_de_la_commune": "COUDEVILLE SUR MER", + "code_postal": "50290", + "coordonnees_gps": [ + 48.8735234655, + -1.52424564985 + ], + "libelle_d_acheminement": "COUDEVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52424564985, + 48.8735234655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb76acaceab1ebd3b8d24a4312a6d9bb06252813", + "fields": { + "code_commune_insee": "50144", + "nom_de_la_commune": "COULOUVRAY BOISBENATRE", + "code_postal": "50670", + "coordonnees_gps": [ + 48.7821077073, + -1.10464666586 + ], + "libelle_d_acheminement": "COULOUVRAY BOISBENATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10464666586, + 48.7821077073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaf7c9a135fe931ed052c2e96bafc3c3da7f8e8c", + "fields": { + "code_commune_insee": "50145", + "nom_de_la_commune": "COURCY", + "code_postal": "50200", + "coordonnees_gps": [ + 49.0509362145, + -1.38869491395 + ], + "libelle_d_acheminement": "COURCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38869491395, + 49.0509362145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c7f43494efaaf8012066839b6b321736e076cf3", + "fields": { + "code_commune_insee": "50149", + "nom_de_la_commune": "COUVILLE", + "code_postal": "50690", + "coordonnees_gps": [ + 49.5583745259, + -1.68158460164 + ], + "libelle_d_acheminement": "COUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68158460164, + 49.5583745259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c74315aee791d71eb4c4da6c0c12928fcc9ed2d7", + "fields": { + "code_commune_insee": "50155", + "nom_de_la_commune": "CROLLON", + "code_postal": "50220", + "coordonnees_gps": [ + 48.5824076496, + -1.38068361185 + ], + "libelle_d_acheminement": "CROLLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38068361185, + 48.5824076496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a27f1e2ebd90fac144d06dd95b54adf5f1b83d8f", + "fields": { + "code_commune_insee": "50178", + "nom_de_la_commune": "FERMANVILLE", + "code_postal": "50840", + "coordonnees_gps": [ + 49.6810861003, + -1.45453917857 + ], + "libelle_d_acheminement": "FERMANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45453917857, + 49.6810861003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ce978fbe330e3f6a934ac457708c812ab3173b1", + "fields": { + "code_commune_insee": "50182", + "nom_de_la_commune": "LA FEUILLIE", + "code_postal": "50190", + "coordonnees_gps": [ + 49.1701790495, + -1.49237727633 + ], + "libelle_d_acheminement": "LA FEUILLIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49237727633, + 49.1701790495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dccd481d6cb9ba3063be12c54832c3fc8f372780", + "fields": { + "code_commune_insee": "50184", + "nom_de_la_commune": "FLAMANVILLE", + "code_postal": "50340", + "coordonnees_gps": [ + 49.530584299, + -1.86809875664 + ], + "libelle_d_acheminement": "FLAMANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86809875664, + 49.530584299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76f5eff210c63a2ee0868b895345421cbc17613d", + "fields": { + "code_commune_insee": "50192", + "nom_de_la_commune": "FOURNEAUX", + "code_postal": "50420", + "coordonnees_gps": [ + 48.9664383524, + -1.04146315344 + ], + "libelle_d_acheminement": "FOURNEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04146315344, + 48.9664383524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df75b793452642189c84af7ba0d355ee7fda0cf0", + "fields": { + "code_commune_insee": "50193", + "nom_de_la_commune": "LE FRESNE PORET", + "code_postal": "50850", + "coordonnees_gps": [ + 48.7082718798, + -0.820867832626 + ], + "libelle_d_acheminement": "LE FRESNE PORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.820867832626, + 48.7082718798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ee95e168a76ba48ceb1b8355de4c6912437a4e3", + "fields": { + "code_commune_insee": "50196", + "nom_de_la_commune": "GATTEVILLE LE PHARE", + "code_postal": "50760", + "coordonnees_gps": [ + 49.6796510681, + -1.29047452696 + ], + "libelle_d_acheminement": "GATTEVILLE LE PHARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29047452696, + 49.6796510681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5580aa090ea1cf174709149c1dce24d384e634b9", + "fields": { + "ligne_5": "LE MESNIL ROGUES", + "code_commune_insee": "50197", + "libelle_d_acheminement": "GAVRAY SUR SIENNE", + "code_postal": "50450", + "nom_de_la_commune": "GAVRAY SUR SIENNE", + "coordonnees_gps": [ + 48.901866947, + -1.32927187447 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32927187447, + 48.901866947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8149bbbe68fc18cf8aa5fa0407431b68084f59ec", + "fields": { + "code_commune_insee": "50200", + "nom_de_la_commune": "GER", + "code_postal": "50850", + "coordonnees_gps": [ + 48.6718461689, + -0.802951577458 + ], + "libelle_d_acheminement": "GER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.802951577458, + 48.6718461689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd2ebd0d44a624731925c60151ed55020b442c74", + "fields": { + "code_commune_insee": "50205", + "nom_de_la_commune": "LA GODEFROY", + "code_postal": "50300", + "coordonnees_gps": [ + 48.6905981848, + -1.28421561374 + ], + "libelle_d_acheminement": "LA GODEFROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28421561374, + 48.6905981848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12494b636ec3708e22e50efe5753ba0185677063", + "fields": { + "ligne_5": "GONNEVILLE", + "code_commune_insee": "50209", + "libelle_d_acheminement": "GONNEVILLE LE THEIL", + "code_postal": "50330", + "nom_de_la_commune": "GONNEVILLE LE THEIL", + "coordonnees_gps": [ + 49.6319375816, + -1.47264089403 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47264089403, + 49.6319375816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c90f3aec8aa654f9a8e341599147e0c92da6e98", + "fields": { + "ligne_5": "BOISROGER", + "code_commune_insee": "50215", + "libelle_d_acheminement": "GOUVILLE SUR MER", + "code_postal": "50200", + "nom_de_la_commune": "GOUVILLE SUR MER", + "coordonnees_gps": [ + 49.0979435491, + -1.57923308824 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57923308824, + 49.0979435491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38f3f32fb155792428c00fc0a1bbd370854b91c5", + "fields": { + "ligne_5": "SERVIGNY", + "code_commune_insee": "50215", + "libelle_d_acheminement": "GOUVILLE SUR MER", + "code_postal": "50200", + "nom_de_la_commune": "GOUVILLE SUR MER", + "coordonnees_gps": [ + 49.0979435491, + -1.57923308824 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57923308824, + 49.0979435491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83d68c9d86f87516a990115516809fea09171595", + "fields": { + "ligne_5": "ANNEVILLE SUR MER", + "code_commune_insee": "50215", + "libelle_d_acheminement": "GOUVILLE SUR MER", + "code_postal": "50560", + "nom_de_la_commune": "GOUVILLE SUR MER", + "coordonnees_gps": [ + 49.0979435491, + -1.57923308824 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57923308824, + 49.0979435491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a0cb88689f1364a7492b464fd59dca436357770", + "fields": { + "code_commune_insee": "50217", + "nom_de_la_commune": "LE GRAND CELLAND", + "code_postal": "50370", + "coordonnees_gps": [ + 48.6882059438, + -1.17301300163 + ], + "libelle_d_acheminement": "LE GRAND CELLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17301300163, + 48.6882059438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "016fa709a15e2125c2ec1d2af644dba3c619cfec", + "fields": { + "ligne_5": "ILES CHAUSEY", + "code_commune_insee": "50218", + "libelle_d_acheminement": "GRANVILLE", + "code_postal": "50400", + "nom_de_la_commune": "GRANVILLE", + "coordonnees_gps": [ + 48.8327078372, + -1.56670866413 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56670866413, + 48.8327078372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71043e719f65dd471c099a6beb2520ef1006f79d", + "fields": { + "code_commune_insee": "50221", + "nom_de_la_commune": "GRIMESNIL", + "code_postal": "50450", + "coordonnees_gps": [ + 48.9549115704, + -1.35072066889 + ], + "libelle_d_acheminement": "GRIMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35072066889, + 48.9549115704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2d083f7f2860b19d2953c45101bb4abcd6c1eb6", + "fields": { + "code_commune_insee": "50222", + "nom_de_la_commune": "GROSVILLE", + "code_postal": "50340", + "coordonnees_gps": [ + 49.5070631991, + -1.73298860614 + ], + "libelle_d_acheminement": "GROSVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73298860614, + 49.5070631991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94eec42a40048587d48fb3c32cca29fe55640619", + "fields": { + "code_commune_insee": "50228", + "nom_de_la_commune": "HAMBYE", + "code_postal": "50450", + "coordonnees_gps": [ + 48.947434282, + -1.25972475614 + ], + "libelle_d_acheminement": "HAMBYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25972475614, + 48.947434282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21851006170acd008006f9ed4a33ef6753567c51", + "fields": { + "ligne_5": "ZOLLINGEN", + "code_commune_insee": "67435", + "libelle_d_acheminement": "SARREWERDEN", + "code_postal": "67260", + "nom_de_la_commune": "SARREWERDEN", + "coordonnees_gps": [ + 48.9076740897, + 7.07306614237 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07306614237, + 48.9076740897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28d2a31c071755307ae72a835e4c9ff6e9820999", + "fields": { + "code_commune_insee": "67463", + "nom_de_la_commune": "SELTZ", + "code_postal": "67470", + "coordonnees_gps": [ + 48.8938553051, + 8.10498682501 + ], + "libelle_d_acheminement": "SELTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.10498682501, + 48.8938553051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f82e085c6a8aca46443972af8340c7a41939dce", + "fields": { + "code_commune_insee": "67466", + "nom_de_la_commune": "SIEGEN", + "code_postal": "67160", + "coordonnees_gps": [ + 48.957145226, + 8.03962378793 + ], + "libelle_d_acheminement": "SIEGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.03962378793, + 48.957145226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e53904a317137daa15e07df01e4696935ed38cb", + "fields": { + "code_commune_insee": "67482", + "nom_de_la_commune": "STRASBOURG", + "code_postal": "67000", + "coordonnees_gps": [ + 48.5712679849, + 7.76752679517 + ], + "libelle_d_acheminement": "STRASBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76752679517, + 48.5712679849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6a77d8564ab588c9e2db693ccacd4d3ced91c79", + "fields": { + "code_commune_insee": "73327", + "nom_de_la_commune": "VIONS", + "code_postal": "73310", + "coordonnees_gps": [ + 45.8310499663, + 5.80820031597 + ], + "libelle_d_acheminement": "VIONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80820031597, + 45.8310499663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef87ebd0e3ef94836cf6ffdd6dc45ae3c2abf0c8", + "fields": { + "code_commune_insee": "74003", + "nom_de_la_commune": "ALEX", + "code_postal": "74290", + "coordonnees_gps": [ + 45.8806920223, + 6.23633769093 + ], + "libelle_d_acheminement": "ALEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23633769093, + 45.8806920223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "114c723567b42119d733917950fed9932231bc79", + "fields": { + "code_commune_insee": "74025", + "nom_de_la_commune": "BALLAISON", + "code_postal": "74140", + "coordonnees_gps": [ + 46.2932587435, + 6.34400093687 + ], + "libelle_d_acheminement": "BALLAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34400093687, + 46.2932587435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "248466492cf123255231e05ce45ea2a7ab8a15d1", + "fields": { + "code_commune_insee": "74026", + "nom_de_la_commune": "LA BALME DE SILLINGY", + "code_postal": "74330", + "coordonnees_gps": [ + 45.9698450968, + 6.04498278395 + ], + "libelle_d_acheminement": "LA BALME DE SILLINGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04498278395, + 45.9698450968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a2a855e919fc284b87c5daea15f7a424aafa440", + "fields": { + "code_commune_insee": "74062", + "nom_de_la_commune": "CHARVONNEX", + "code_postal": "74370", + "coordonnees_gps": [ + 45.9825276436, + 6.15767160259 + ], + "libelle_d_acheminement": "CHARVONNEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15767160259, + 45.9825276436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f32b2e313a94712aa160e90588b77a9e55a63bf5", + "fields": { + "code_commune_insee": "74099", + "nom_de_la_commune": "DEMI QUARTIER", + "code_postal": "74120", + "coordonnees_gps": [ + 45.8739226707, + 6.6331062739 + ], + "libelle_d_acheminement": "DEMI QUARTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6331062739, + 45.8739226707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "686375c0dbdd38ea327d7c290e382cb33aa38131", + "fields": { + "code_commune_insee": "74100", + "nom_de_la_commune": "DESINGY", + "code_postal": "74270", + "coordonnees_gps": [ + 45.9994978895, + 5.88777092004 + ], + "libelle_d_acheminement": "DESINGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88777092004, + 45.9994978895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7316d8536846af48bb30d9ac169a61e4fdf072ea", + "fields": { + "ligne_5": "SEYTHENEX", + "code_commune_insee": "74123", + "libelle_d_acheminement": "FAVERGES SEYTHENEX", + "code_postal": "74210", + "nom_de_la_commune": "FAVERGES SEYTHENEX", + "coordonnees_gps": [ + 45.749197611, + 6.2852126691 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2852126691, + 45.749197611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6665c6b84aabf181f928256172c71914b685a652", + "fields": { + "code_commune_insee": "74134", + "nom_de_la_commune": "LES GETS", + "code_postal": "74260", + "coordonnees_gps": [ + 46.1542288253, + 6.66014566051 + ], + "libelle_d_acheminement": "LES GETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66014566051, + 46.1542288253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "316ed8b7f38695e04a7561c9547821f2e23b7e89", + "fields": { + "code_commune_insee": "74137", + "nom_de_la_commune": "GROISY", + "code_postal": "74570", + "coordonnees_gps": [ + 46.0176333128, + 6.17496504174 + ], + "libelle_d_acheminement": "GROISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17496504174, + 46.0176333128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4812f49f8237e6d23787b77f9001099446c945d3", + "fields": { + "ligne_5": "CONS STE COLOMBE", + "code_commune_insee": "74167", + "libelle_d_acheminement": "VAL DE CHAISE", + "code_postal": "74210", + "nom_de_la_commune": "VAL DE CHAISE", + "coordonnees_gps": [ + 45.7653898846, + 6.35142628779 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35142628779, + 45.7653898846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "861287f7957bf7afd8faa00c340c05101a943720", + "fields": { + "code_commune_insee": "74185", + "nom_de_la_commune": "MONNETIER MORNEX", + "code_postal": "74560", + "coordonnees_gps": [ + 46.1525800446, + 6.21241233878 + ], + "libelle_d_acheminement": "MONNETIER MORNEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21241233878, + 46.1525800446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5714915619f2076ad0813f874a626bad7ecfaf3f", + "fields": { + "code_commune_insee": "74191", + "nom_de_la_commune": "MORZINE", + "code_postal": "74110", + "coordonnees_gps": [ + 46.1732135057, + 6.74252144427 + ], + "libelle_d_acheminement": "MORZINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74252144427, + 46.1732135057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86ce6d90ba1da418fed2913d56796b946e258303", + "fields": { + "ligne_5": "ENTREMONT", + "code_commune_insee": "74212", + "libelle_d_acheminement": "GLIERES VAL DE BORNE", + "code_postal": "74130", + "nom_de_la_commune": "GLIERES VAL DE BORNE", + "coordonnees_gps": [ + 45.9971884762, + 6.3914422283 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3914422283, + 45.9971884762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d55f2e03e9116f155098fcdbade45c03ae366cc", + "fields": { + "ligne_5": "LE PETIT BORNAND LES GLIERES", + "code_commune_insee": "74212", + "libelle_d_acheminement": "GLIERES VAL DE BORNE", + "code_postal": "74130", + "nom_de_la_commune": "GLIERES VAL DE BORNE", + "coordonnees_gps": [ + 45.9971884762, + 6.3914422283 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3914422283, + 45.9971884762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fed4f0c1614eb43a259ab11655720cabfbda593", + "fields": { + "code_commune_insee": "74213", + "nom_de_la_commune": "POISY", + "code_postal": "74330", + "coordonnees_gps": [ + 45.9189291023, + 6.06312526002 + ], + "libelle_d_acheminement": "POISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06312526002, + 45.9189291023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3ed9f88dddb7e9ccb5b9fa4a443de2b77682de3", + "fields": { + "code_commune_insee": "74233", + "nom_de_la_commune": "ST FELIX", + "code_postal": "74540", + "coordonnees_gps": [ + 45.8078414616, + 5.97720329575 + ], + "libelle_d_acheminement": "ST FELIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97720329575, + 45.8078414616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "202bbfd2930bd4e5acc3d3856972b631011bad08", + "fields": { + "code_commune_insee": "74238", + "nom_de_la_commune": "ST JEAN D AULPS", + "code_postal": "74430", + "coordonnees_gps": [ + 46.2278739142, + 6.66076731793 + ], + "libelle_d_acheminement": "ST JEAN D AULPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66076731793, + 46.2278739142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "852f7ecddc624c7e532ba3010da6b48b8fbfff8e", + "fields": { + "code_commune_insee": "74240", + "nom_de_la_commune": "ST JEAN DE THOLOME", + "code_postal": "74250", + "coordonnees_gps": [ + 46.1107199959, + 6.41494686229 + ], + "libelle_d_acheminement": "ST JEAN DE THOLOME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41494686229, + 46.1107199959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51bb2b21591ec68d7e5096188fa67c9dce192267", + "fields": { + "code_commune_insee": "74252", + "nom_de_la_commune": "ST SIGISMOND", + "code_postal": "74300", + "coordonnees_gps": [ + 46.0753265855, + 6.61651398785 + ], + "libelle_d_acheminement": "ST SIGISMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61651398785, + 46.0753265855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a16709a9872ce2f0d9e9d3827bae9ed68118940e", + "fields": { + "code_commune_insee": "74256", + "nom_de_la_commune": "SALLANCHES", + "code_postal": "74700", + "coordonnees_gps": [ + 45.9468155788, + 6.60711053078 + ], + "libelle_d_acheminement": "SALLANCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60711053078, + 45.9468155788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "583443e9619ba568c0da4c603691545c07a7fa8c", + "fields": { + "code_commune_insee": "74264", + "nom_de_la_commune": "SCIONZIER", + "code_postal": "74950", + "coordonnees_gps": [ + 46.0486254419, + 6.54669166581 + ], + "libelle_d_acheminement": "SCIONZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54669166581, + 46.0486254419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2b4eab4dc787801f858b086e6b7ccb33677b33a", + "fields": { + "code_commune_insee": "74273", + "nom_de_la_commune": "SIXT FER A CHEVAL", + "code_postal": "74740", + "coordonnees_gps": [ + 46.0542010133, + 6.81232553172 + ], + "libelle_d_acheminement": "SIXT FER A CHEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81232553172, + 46.0542010133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c24f9b31000523900093ee450ee92dec5513d2e", + "fields": { + "ligne_5": "LE PRAZ DE LYS", + "code_commune_insee": "74276", + "libelle_d_acheminement": "TANINGES", + "code_postal": "74440", + "nom_de_la_commune": "TANINGES", + "coordonnees_gps": [ + 46.1265071577, + 6.60770716363 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60770716363, + 46.1265071577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "466ad67cbc22a2441ce26b5b32d1d13a48e38064", + "fields": { + "code_commune_insee": "74283", + "nom_de_la_commune": "THUSY", + "code_postal": "74150", + "coordonnees_gps": [ + 45.949872762, + 5.96377064209 + ], + "libelle_d_acheminement": "THUSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96377064209, + 45.949872762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d93a2b94c7aac8925f1b88b1e3dbab0feaf724e", + "fields": { + "code_commune_insee": "74284", + "nom_de_la_commune": "LA TOUR", + "code_postal": "74250", + "coordonnees_gps": [ + 46.1336564558, + 6.43183287509 + ], + "libelle_d_acheminement": "LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43183287509, + 46.1336564558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e42a03e561556749b6983d9d93e1bd85b6636b1", + "fields": { + "ligne_5": "ST ANDRE VAL DE FIER", + "code_commune_insee": "74289", + "libelle_d_acheminement": "VALLIERES SUR FIER", + "code_postal": "74150", + "nom_de_la_commune": "VALLIERES SUR FIER", + "coordonnees_gps": [ + 45.9052695634, + 5.94190689609 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94190689609, + 45.9052695634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "594da4e2bc03278ba1b1a840dcca58997a727047", + "fields": { + "ligne_5": "VAL DE FIER", + "code_commune_insee": "74289", + "libelle_d_acheminement": "VALLIERES SUR FIER", + "code_postal": "74150", + "nom_de_la_commune": "VALLIERES SUR FIER", + "coordonnees_gps": [ + 45.9052695634, + 5.94190689609 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94190689609, + 45.9052695634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5575536d3f7db5e74fba4f953011f0f3efd9f2e7", + "fields": { + "code_commune_insee": "74294", + "nom_de_la_commune": "VERCHAIX", + "code_postal": "74440", + "coordonnees_gps": [ + 46.1211763071, + 6.68814243155 + ], + "libelle_d_acheminement": "VERCHAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68814243155, + 46.1211763071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "807e24f2039ce2dbcd243e5e95ab4c90c7ceba9e", + "fields": { + "code_commune_insee": "74301", + "nom_de_la_commune": "VILLARD", + "code_postal": "74420", + "coordonnees_gps": [ + 46.2123462222, + 6.450248937 + ], + "libelle_d_acheminement": "VILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.450248937, + 46.2123462222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d68ae2ddc9228df47775188bcad8ad3b1f15640", + "fields": { + "code_commune_insee": "74303", + "nom_de_la_commune": "VILLAZ", + "code_postal": "74370", + "coordonnees_gps": [ + 45.9532681771, + 6.20133049908 + ], + "libelle_d_acheminement": "VILLAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20133049908, + 45.9532681771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b52e4f10101b502630a117d75902a605aa377f9a", + "fields": { + "code_commune_insee": "74306", + "nom_de_la_commune": "VILLY LE BOUVERET", + "code_postal": "74350", + "coordonnees_gps": [ + 46.0442515744, + 6.15921118422 + ], + "libelle_d_acheminement": "VILLY LE BOUVERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15921118422, + 46.0442515744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7171612fea101f6a9b922a8df4f507a0fe54e044", + "fields": { + "code_commune_insee": "75104", + "nom_de_la_commune": "PARIS 04", + "code_postal": "75004", + "coordonnees_gps": [ + 48.854228282, + 2.35736193814 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35736193814, + 48.854228282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b75abb49653e92d369c94b294b2355887059439", + "fields": { + "code_commune_insee": "75107", + "nom_de_la_commune": "PARIS 07", + "code_postal": "75007", + "coordonnees_gps": [ + 48.8560825982, + 2.31243868773 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31243868773, + 48.8560825982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54e5cbf19b8b61d6ca2d7c78a149924c3a47b307", + "fields": { + "code_commune_insee": "75111", + "nom_de_la_commune": "PARIS 11", + "code_postal": "75011", + "coordonnees_gps": [ + 48.8594154976, + 2.37874106024 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37874106024, + 48.8594154976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d87259c16ed9933d3b4361ba0104f24594fc094", + "fields": { + "code_commune_insee": "75115", + "nom_de_la_commune": "PARIS 15", + "code_postal": "75015", + "coordonnees_gps": [ + 48.8401554186, + 2.29355937244 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29355937244, + 48.8401554186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a7c9e2c57c74b3ddcd041d2e91c2c3fc9820d96", + "fields": { + "code_commune_insee": "75116", + "nom_de_la_commune": "PARIS 16", + "code_postal": "75116", + "coordonnees_gps": [ + 48.8603987604, + 2.2620995594 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2620995594, + 48.8603987604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3801d2fe3de6396eedce67cd13eb58d2d9ece94f", + "fields": { + "code_commune_insee": "75120", + "nom_de_la_commune": "PARIS 20", + "code_postal": "75020", + "coordonnees_gps": [ + 48.8631867774, + 2.40081982673 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40081982673, + 48.8631867774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca63a9bee20170dd83c755afbd748948b97ee25", + "fields": { + "code_commune_insee": "76001", + "nom_de_la_commune": "ALLOUVILLE BELLEFOSSE", + "code_postal": "76190", + "coordonnees_gps": [ + 49.5946409573, + 0.665436022637 + ], + "libelle_d_acheminement": "ALLOUVILLE BELLEFOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.665436022637, + 49.5946409573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f324b48f406d5d38a4c3cca98b4fe1ca86f49ba8", + "fields": { + "code_commune_insee": "76006", + "nom_de_la_commune": "AMFREVILLE LES CHAMPS", + "code_postal": "76560", + "coordonnees_gps": [ + 49.6985248041, + 0.826235482496 + ], + "libelle_d_acheminement": "AMFREVILLE LES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.826235482496, + 49.6985248041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae690202715b21a43f9ecbc924d309f569390de4", + "fields": { + "code_commune_insee": "76019", + "nom_de_la_commune": "ANNEVILLE SUR SCIE", + "code_postal": "76590", + "coordonnees_gps": [ + 49.8386907699, + 1.09303231826 + ], + "libelle_d_acheminement": "ANNEVILLE SUR SCIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09303231826, + 49.8386907699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "141a3a6b4234aa24293397c2f63cac735cc68e20", + "fields": { + "code_commune_insee": "76029", + "nom_de_la_commune": "AUBERMESNIL AUX ERABLES", + "code_postal": "76340", + "coordonnees_gps": [ + 49.807630976, + 1.56837335546 + ], + "libelle_d_acheminement": "AUBERMESNIL AUX ERABLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56837335546, + 49.807630976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ea346328b14be1edac382cfa14de8eafceb3756", + "fields": { + "code_commune_insee": "76039", + "nom_de_la_commune": "LES AUTHIEUX SUR LE PORT ST OUEN", + "code_postal": "76520", + "coordonnees_gps": [ + 49.338554973, + 1.13287875281 + ], + "libelle_d_acheminement": "LES AUTHIEUX SUR LE PORT ST OUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13287875281, + 49.338554973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d62d7359c5f6d7599f4d21eea5e0f1666716c60", + "fields": { + "ligne_5": "VEAUVILLE LES BAONS", + "code_commune_insee": "76041", + "libelle_d_acheminement": "LES HAUTS DE CAUX", + "code_postal": "76190", + "nom_de_la_commune": "LES HAUTS DE CAUX", + "coordonnees_gps": [ + 49.6553610045, + 0.7278467274 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7278467274, + 49.6553610045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2eb05271fac81a28c0fb826dfd0516d27862da3", + "fields": { + "code_commune_insee": "76049", + "nom_de_la_commune": "AVESNES EN VAL", + "code_postal": "76630", + "coordonnees_gps": [ + 49.9178206413, + 1.40811370828 + ], + "libelle_d_acheminement": "AVESNES EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40811370828, + 49.9178206413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e29cbd7a76cd1924abf96804e4f0d2662f4a180c", + "fields": { + "code_commune_insee": "76065", + "nom_de_la_commune": "BEAUSSAULT", + "code_postal": "76870", + "coordonnees_gps": [ + 49.6894037709, + 1.57537767873 + ], + "libelle_d_acheminement": "BEAUSSAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57537767873, + 49.6894037709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdbdb41f1d4418c9e3d5456b47ce96e12387eafa", + "fields": { + "code_commune_insee": "76067", + "nom_de_la_commune": "BEAUVOIR EN LYONS", + "code_postal": "76220", + "coordonnees_gps": [ + 49.484261541, + 1.58305968488 + ], + "libelle_d_acheminement": "BEAUVOIR EN LYONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58305968488, + 49.484261541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f181c9a4d3de46a3d793cccda6a990d810822c6", + "fields": { + "code_commune_insee": "76068", + "nom_de_la_commune": "BEC DE MORTAGNE", + "code_postal": "76110", + "coordonnees_gps": [ + 49.7046190137, + 0.449001538554 + ], + "libelle_d_acheminement": "BEC DE MORTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.449001538554, + 49.7046190137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ec80220654c1f0fb57cf859137f4509c1bf16cc", + "fields": { + "code_commune_insee": "76070", + "nom_de_la_commune": "BELLENCOMBRE", + "code_postal": "76680", + "coordonnees_gps": [ + 49.7178549713, + 1.23609035774 + ], + "libelle_d_acheminement": "BELLENCOMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23609035774, + 49.7178549713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c955ab823dc41af7bc20f3c110de76c49250a42", + "fields": { + "code_commune_insee": "76074", + "nom_de_la_commune": "LA BELLIERE", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6051086109, + 1.60262012686 + ], + "libelle_d_acheminement": "LA BELLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60262012686, + 49.6051086109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5457be35ced6432b49b06b83bc3349eacfb1fba", + "fields": { + "code_commune_insee": "76075", + "nom_de_la_commune": "BELMESNIL", + "code_postal": "76590", + "coordonnees_gps": [ + 49.7683532311, + 1.05014790136 + ], + "libelle_d_acheminement": "BELMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05014790136, + 49.7683532311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c64907c2b87c09695cb89cb784aab79df6c4478c", + "fields": { + "code_commune_insee": "76086", + "nom_de_la_commune": "BERTRIMONT", + "code_postal": "76890", + "coordonnees_gps": [ + 49.6700988872, + 0.997521273823 + ], + "libelle_d_acheminement": "BERTRIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.997521273823, + 49.6700988872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5352c50f87aa52ea010638014c80f33d093ef358", + "fields": { + "code_commune_insee": "76105", + "nom_de_la_commune": "LE BOCASSE", + "code_postal": "76690", + "coordonnees_gps": [ + 49.6088838198, + 1.0698762203 + ], + "libelle_d_acheminement": "LE BOCASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0698762203, + 49.6088838198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b130a39290d4e6c5891dbab324c32baf4bff0638", + "fields": { + "code_commune_insee": "76106", + "nom_de_la_commune": "BOIS D ENNEBOURG", + "code_postal": "76160", + "coordonnees_gps": [ + 49.4276209664, + 1.25861486789 + ], + "libelle_d_acheminement": "BOIS D ENNEBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25861486789, + 49.4276209664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a2d71ad263bd71ef3104a4b6b7d29e7ef731053", + "fields": { + "code_commune_insee": "76116", + "nom_de_la_commune": "BOOS", + "code_postal": "76520", + "coordonnees_gps": [ + 49.3807198893, + 1.20294822782 + ], + "libelle_d_acheminement": "BOOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20294822782, + 49.3807198893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae76215613805f0b5b098288bebe718f10753df0", + "fields": { + "ligne_5": "LES ESSARTS VARIMPRE", + "code_commune_insee": "76122", + "libelle_d_acheminement": "CALLENGEVILLE", + "code_postal": "76270", + "nom_de_la_commune": "CALLENGEVILLE", + "coordonnees_gps": [ + 49.8240856066, + 1.52206018014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52206018014, + 49.8240856066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d99c7522bdb08abcd61b2d713f8cc12d1ebcb4e1", + "fields": { + "code_commune_insee": "76126", + "nom_de_la_commune": "BOSC MESNIL", + "code_postal": "76680", + "coordonnees_gps": [ + 49.6687076974, + 1.3483005444 + ], + "libelle_d_acheminement": "BOSC MESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3483005444, + 49.6687076974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2a6cbe0428152c935dd56e9cf5013c035627e89", + "fields": { + "code_commune_insee": "76128", + "nom_de_la_commune": "BOSVILLE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.7629078501, + 0.684228513933 + ], + "libelle_d_acheminement": "BOSVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.684228513933, + 49.7629078501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "740d7456666d3d9470fa16586cceacfc5ce04ca6", + "fields": { + "code_commune_insee": "76132", + "nom_de_la_commune": "BOURDAINVILLE", + "code_postal": "76760", + "coordonnees_gps": [ + 49.6729057578, + 0.940094590995 + ], + "libelle_d_acheminement": "BOURDAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.940094590995, + 49.6729057578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3651d9fa59e2438bb5ef8247e2b3e4a05b4d5665", + "fields": { + "code_commune_insee": "76134", + "nom_de_la_commune": "BOURVILLE", + "code_postal": "76740", + "coordonnees_gps": [ + 49.795809684, + 0.82372418387 + ], + "libelle_d_acheminement": "BOURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82372418387, + 49.795809684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d677f315fc5ee547287182b1bbc67e0ebb1ee53", + "fields": { + "ligne_5": "BOSC ROGER SUR BUCHY", + "code_commune_insee": "76146", + "libelle_d_acheminement": "BUCHY", + "code_postal": "76750", + "nom_de_la_commune": "BUCHY", + "coordonnees_gps": [ + 49.5894942474, + 1.35094714044 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35094714044, + 49.5894942474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35723cf3b81cfda279db0972936a261879477138", + "fields": { + "ligne_5": "ESTOUTEVILLE ECALLES", + "code_commune_insee": "76146", + "libelle_d_acheminement": "BUCHY", + "code_postal": "76750", + "nom_de_la_commune": "BUCHY", + "coordonnees_gps": [ + 49.5894942474, + 1.35094714044 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35094714044, + 49.5894942474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3befa240478ae35ec88b3c8d873936eb66bd5d6", + "fields": { + "ligne_5": "DIEPPEDALLE CROISSET", + "code_commune_insee": "76157", + "libelle_d_acheminement": "CANTELEU", + "code_postal": "76380", + "nom_de_la_commune": "CANTELEU", + "coordonnees_gps": [ + 49.4330992435, + 1.01355208279 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01355208279, + 49.4330992435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16680e19cb9bcec8b2f5d0bc6f378744cb4d14de", + "fields": { + "code_commune_insee": "76159", + "nom_de_la_commune": "CANY BARVILLE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.7754431249, + 0.633291896241 + ], + "libelle_d_acheminement": "CANY BARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.633291896241, + 49.7754431249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c30bcf527c11b875626c28f1fc588d9f4680b14", + "fields": { + "code_commune_insee": "76163", + "nom_de_la_commune": "CATENAY", + "code_postal": "76116", + "coordonnees_gps": [ + 49.5106807185, + 1.32664847368 + ], + "libelle_d_acheminement": "CATENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32664847368, + 49.5106807185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "824f49be8eec52298defc56977392ef7780f3d37", + "fields": { + "ligne_5": "CAUDEBEC EN CAUX", + "code_commune_insee": "76164", + "libelle_d_acheminement": "RIVES EN SEINE", + "code_postal": "76490", + "nom_de_la_commune": "RIVES EN SEINE", + "coordonnees_gps": [ + 49.5305126235, + 0.734830682082 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.734830682082, + 49.5305126235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fc92e024a7f56af97a4ffdc4bb99c40b04ee382", + "fields": { + "ligne_5": "VILLEQUIER", + "code_commune_insee": "76164", + "libelle_d_acheminement": "RIVES EN SEINE", + "code_postal": "76490", + "nom_de_la_commune": "RIVES EN SEINE", + "coordonnees_gps": [ + 49.5305126235, + 0.734830682082 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.734830682082, + 49.5305126235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09338a7b28084f289e882421dfd08a08fbd7d3b9", + "fields": { + "code_commune_insee": "76180", + "nom_de_la_commune": "CLEUVILLE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.7035324199, + 0.647945239097 + ], + "libelle_d_acheminement": "CLEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.647945239097, + 49.7035324199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a0341e09e0b1cd85487533fdb068a69e6372dfc", + "fields": { + "code_commune_insee": "76192", + "nom_de_la_commune": "CRIEL SUR MER", + "code_postal": "76910", + "coordonnees_gps": [ + 50.0191932623, + 1.32368263071 + ], + "libelle_d_acheminement": "CRIEL SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32368263071, + 50.0191932623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd970b59346322fc532ae0ec82c40dfbd641919f", + "fields": { + "code_commune_insee": "76202", + "nom_de_la_commune": "CROIXDALLE", + "code_postal": "76660", + "coordonnees_gps": [ + 49.8027328398, + 1.36923442163 + ], + "libelle_d_acheminement": "CROIXDALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36923442163, + 49.8027328398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff7f6478ce15faeefb702496f9be64cc328def3e", + "fields": { + "code_commune_insee": "76204", + "nom_de_la_commune": "CROPUS", + "code_postal": "76720", + "coordonnees_gps": [ + 49.7369961062, + 1.14693756665 + ], + "libelle_d_acheminement": "CROPUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14693756665, + 49.7369961062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8269de97b88564907b51fff4eae051c05645f5c1", + "fields": { + "code_commune_insee": "76205", + "nom_de_la_commune": "CROSVILLE SUR SCIE", + "code_postal": "76590", + "coordonnees_gps": [ + 49.8193863387, + 1.08185669481 + ], + "libelle_d_acheminement": "CROSVILLE SUR SCIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08185669481, + 49.8193863387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42159843ab08fbe7fe4b47de77864aa9f1433d1e", + "fields": { + "code_commune_insee": "76206", + "nom_de_la_commune": "CUVERVILLE", + "code_postal": "76280", + "coordonnees_gps": [ + 49.6655519661, + 0.264080881787 + ], + "libelle_d_acheminement": "CUVERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.264080881787, + 49.6655519661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72949e3e020ae9e5368cec3e74ed528bdc6f7db2", + "fields": { + "code_commune_insee": "76220", + "nom_de_la_commune": "DOUVREND", + "code_postal": "76630", + "coordonnees_gps": [ + 49.8737591208, + 1.31959584474 + ], + "libelle_d_acheminement": "DOUVREND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31959584474, + 49.8737591208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22bfc5aeada7c5521689a944400c1aa7df236608", + "fields": { + "code_commune_insee": "76225", + "nom_de_la_commune": "ECRETTEVILLE LES BAONS", + "code_postal": "76190", + "coordonnees_gps": [ + 49.6297955951, + 0.67254078576 + ], + "libelle_d_acheminement": "ECRETTEVILLE LES BAONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67254078576, + 49.6297955951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9ed7edce9a79ba8295c37791c82670fdbfb463c", + "fields": { + "code_commune_insee": "76230", + "nom_de_la_commune": "ELBEUF SUR ANDELLE", + "code_postal": "76780", + "coordonnees_gps": [ + 49.4777269045, + 1.38078318171 + ], + "libelle_d_acheminement": "ELBEUF SUR ANDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38078318171, + 49.4777269045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b23483c3cc4d70dfbe4d462990161fa32660964e", + "fields": { + "code_commune_insee": "76241", + "nom_de_la_commune": "ERMENOUVILLE", + "code_postal": "76740", + "coordonnees_gps": [ + 49.8040097414, + 0.783829373731 + ], + "libelle_d_acheminement": "ERMENOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.783829373731, + 49.8040097414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d9cccd27240662ec0c95939f3d61e7e700a8d19", + "fields": { + "code_commune_insee": "76251", + "nom_de_la_commune": "ETALLEVILLE", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7326211245, + 0.825031387746 + ], + "libelle_d_acheminement": "ETALLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.825031387746, + 49.7326211245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1673a80f047bf0cea941b4ca6f00c925a489e4cc", + "fields": { + "ligne_5": "FAUVILLE EN CAUX", + "code_commune_insee": "76258", + "libelle_d_acheminement": "TERRES DE CAUX", + "code_postal": "76640", + "nom_de_la_commune": "TERRES DE CAUX", + "coordonnees_gps": [ + 49.6570851688, + 0.584829133473 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.584829133473, + 49.6570851688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e1b1c430dc5cde29f34fc8582353261c211cf69", + "fields": { + "ligne_5": "STE MARGUERITE SUR FAUVILLE", + "code_commune_insee": "76258", + "libelle_d_acheminement": "TERRES DE CAUX", + "code_postal": "76640", + "nom_de_la_commune": "TERRES DE CAUX", + "coordonnees_gps": [ + 49.6570851688, + 0.584829133473 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.584829133473, + 49.6570851688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "148087f7368c4804b5a0a9dbd307acc8ddcb32da", + "fields": { + "ligne_5": "ST PIERRE LAVIS", + "code_commune_insee": "76258", + "libelle_d_acheminement": "TERRES DE CAUX", + "code_postal": "76640", + "nom_de_la_commune": "TERRES DE CAUX", + "coordonnees_gps": [ + 49.6570851688, + 0.584829133473 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.584829133473, + 49.6570851688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f33da5902b2500380d33d8657ba773e8743735aa", + "fields": { + "code_commune_insee": "76264", + "nom_de_la_commune": "FLAMANVILLE", + "code_postal": "76970", + "coordonnees_gps": [ + 49.6312697717, + 0.832008310079 + ], + "libelle_d_acheminement": "FLAMANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.832008310079, + 49.6312697717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24eac4a79f0bd7e42fab8c8167940f53faf1a33d", + "fields": { + "code_commune_insee": "76266", + "nom_de_la_commune": "FLOCQUES", + "code_postal": "76260", + "coordonnees_gps": [ + 50.0348687665, + 1.36482281726 + ], + "libelle_d_acheminement": "FLOCQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36482281726, + 50.0348687665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2feadc0514b89c2e4771032a1d34b34ced21eab1", + "fields": { + "code_commune_insee": "76269", + "nom_de_la_commune": "FONTAINE EN BRAY", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6781243733, + 1.42208848927 + ], + "libelle_d_acheminement": "FONTAINE EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42208848927, + 49.6781243733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cca2feed3cfd85ce78545b8928ad8fdb3a7a220e", + "fields": { + "code_commune_insee": "76273", + "nom_de_la_commune": "FONTAINE SOUS PREAUX", + "code_postal": "76160", + "coordonnees_gps": [ + 49.485549107, + 1.16858781468 + ], + "libelle_d_acheminement": "FONTAINE SOUS PREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16858781468, + 49.485549107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a45ca5d66365ff9f6d68bcf3fbb337b1d9fd1c1", + "fields": { + "code_commune_insee": "76282", + "nom_de_la_commune": "FRENEUSE", + "code_postal": "76410", + "coordonnees_gps": [ + 49.3080967515, + 1.06803487468 + ], + "libelle_d_acheminement": "FRENEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06803487468, + 49.3080967515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea37badffeec9bff005419f8c7097ff9f4155bc3", + "fields": { + "code_commune_insee": "76290", + "nom_de_la_commune": "FRICHEMESNIL", + "code_postal": "76690", + "coordonnees_gps": [ + 49.6203720713, + 1.13252706678 + ], + "libelle_d_acheminement": "FRICHEMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13252706678, + 49.6203720713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15c9fc2732a43ba4a17f9f1c7af7b9f059643d63", + "fields": { + "code_commune_insee": "76298", + "nom_de_la_commune": "GANZEVILLE", + "code_postal": "76400", + "coordonnees_gps": [ + 49.7314996982, + 0.403637131189 + ], + "libelle_d_acheminement": "GANZEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.403637131189, + 49.7314996982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ee34389cbda6bb230dbcff88ebc1e878d2779d", + "fields": { + "code_commune_insee": "76303", + "nom_de_la_commune": "GOMMERVILLE", + "code_postal": "76430", + "coordonnees_gps": [ + 49.5524260707, + 0.359596092306 + ], + "libelle_d_acheminement": "GOMMERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.359596092306, + 49.5524260707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5868761d350bf5aac61dd61114fea224fd3e26ee", + "fields": { + "code_commune_insee": "76304", + "nom_de_la_commune": "GONFREVILLE CAILLOT", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6520308002, + 0.440253516483 + ], + "libelle_d_acheminement": "GONFREVILLE CAILLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.440253516483, + 49.6520308002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f98d0746bc8784f10207125cd46d1e6c6074e65", + "fields": { + "code_commune_insee": "76327", + "nom_de_la_commune": "GREUVILLE", + "code_postal": "76810", + "coordonnees_gps": [ + 49.8068524505, + 0.910034177313 + ], + "libelle_d_acheminement": "GREUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.910034177313, + 49.8068524505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7218986609f1a046b14ccb644a8628c7d27b60b8", + "fields": { + "code_commune_insee": "76328", + "nom_de_la_commune": "GRIGNEUSEVILLE", + "code_postal": "76850", + "coordonnees_gps": [ + 49.654891659, + 1.19239609151 + ], + "libelle_d_acheminement": "GRIGNEUSEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19239609151, + 49.654891659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeefeded358fe88ccf5ed539673f2524bc4c6117", + "fields": { + "code_commune_insee": "76330", + "nom_de_la_commune": "GRUCHET ST SIMEON", + "code_postal": "76810", + "coordonnees_gps": [ + 49.8224015028, + 0.891150990801 + ], + "libelle_d_acheminement": "GRUCHET ST SIMEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.891150990801, + 49.8224015028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0a9d28a63972803cb066cdea3b217fe87aa20a7", + "fields": { + "code_commune_insee": "76331", + "nom_de_la_commune": "GRUGNY", + "code_postal": "76690", + "coordonnees_gps": [ + 49.6181524638, + 1.10616826798 + ], + "libelle_d_acheminement": "GRUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10616826798, + 49.6181524638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c97677245dade26a157c236ca41eb5964c70c8aa", + "fields": { + "code_commune_insee": "76338", + "nom_de_la_commune": "LA HALLOTIERE", + "code_postal": "76780", + "coordonnees_gps": [ + 49.5217455492, + 1.47595225552 + ], + "libelle_d_acheminement": "LA HALLOTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47595225552, + 49.5217455492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39a92125a271e46d633d5dcd8ee6c77f7808add9", + "fields": { + "code_commune_insee": "76345", + "nom_de_la_commune": "HAUSSEZ", + "code_postal": "76440", + "coordonnees_gps": [ + 49.5875455354, + 1.67925587307 + ], + "libelle_d_acheminement": "HAUSSEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67925587307, + 49.5875455354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff9117da46cd22e7158d896aa2ac43e1a1ece8dd", + "fields": { + "code_commune_insee": "76347", + "nom_de_la_commune": "HAUTOT LE VATOIS", + "code_postal": "76190", + "coordonnees_gps": [ + 49.6464064549, + 0.702728853885 + ], + "libelle_d_acheminement": "HAUTOT LE VATOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.702728853885, + 49.6464064549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cccc48241711ba662fa3719086db459ac9029452", + "fields": { + "code_commune_insee": "76348", + "nom_de_la_commune": "HAUTOT ST SULPICE", + "code_postal": "76190", + "coordonnees_gps": [ + 49.6794269269, + 0.737684374658 + ], + "libelle_d_acheminement": "HAUTOT ST SULPICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.737684374658, + 49.6794269269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da846170eeee71b1fd3299c7ff3de1b386c6b368", + "fields": { + "code_commune_insee": "76351", + "nom_de_la_commune": "LE HAVRE", + "code_postal": "76600", + "coordonnees_gps": [ + 49.498452502, + 0.140153719153 + ], + "libelle_d_acheminement": "LE HAVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.140153719153, + 49.498452502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "573fe26f24d1ba67b3c28e9e6a1e054915e5b2bc", + "fields": { + "code_commune_insee": "76354", + "nom_de_la_commune": "HENOUVILLE", + "code_postal": "76840", + "coordonnees_gps": [ + 49.4750504907, + 0.951322211324 + ], + "libelle_d_acheminement": "HENOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.951322211324, + 49.4750504907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed3e81cfd1e27cae96cc6adbe36474e3731e2025", + "fields": { + "code_commune_insee": "76361", + "nom_de_la_commune": "HEUQUEVILLE", + "code_postal": "76280", + "coordonnees_gps": [ + 49.6176869296, + 0.152224099853 + ], + "libelle_d_acheminement": "HEUQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.152224099853, + 49.6176869296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e1c7dbf2c51754dea1976e90122d82c4b2eed0a", + "fields": { + "code_commune_insee": "76371", + "nom_de_la_commune": "LES IFS", + "code_postal": "76630", + "coordonnees_gps": [ + 49.8886770741, + 1.3968082009 + ], + "libelle_d_acheminement": "LES IFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3968082009, + 49.8886770741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0a437328318b0b2e22ff0819161942ad963e48e", + "fields": { + "code_commune_insee": "76372", + "nom_de_la_commune": "ILLOIS", + "code_postal": "76390", + "coordonnees_gps": [ + 49.7454018898, + 1.64586609284 + ], + "libelle_d_acheminement": "ILLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64586609284, + 49.7454018898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2372877d293b6d6403dbc3e31c09d20e428f8043", + "fields": { + "code_commune_insee": "76382", + "nom_de_la_commune": "LANQUETOT", + "code_postal": "76210", + "coordonnees_gps": [ + 49.5834156641, + 0.530353339323 + ], + "libelle_d_acheminement": "LANQUETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.530353339323, + 49.5834156641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21786c0d0cbf7febaaf291f192b13651c537ac8d", + "fields": { + "code_commune_insee": "76385", + "nom_de_la_commune": "LIMESY", + "code_postal": "76570", + "coordonnees_gps": [ + 49.6085021543, + 0.923810554768 + ], + "libelle_d_acheminement": "LIMESY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.923810554768, + 49.6085021543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dda0f1d88e31cce513c90aef29d0f1be2d8d67c0", + "fields": { + "code_commune_insee": "76390", + "nom_de_la_commune": "LES LOGES", + "code_postal": "76790", + "coordonnees_gps": [ + 49.6976413785, + 0.284739023894 + ], + "libelle_d_acheminement": "LES LOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.284739023894, + 49.6976413785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b5151aaa8f2a93cbfee5ef997d6de073abfe4da", + "fields": { + "code_commune_insee": "76391", + "nom_de_la_commune": "LA LONDE", + "code_postal": "76500", + "coordonnees_gps": [ + 49.323828876, + 0.920341905232 + ], + "libelle_d_acheminement": "LA LONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.920341905232, + 49.323828876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8874ff66df64eab22359760e57853dbc92ea016f", + "fields": { + "code_commune_insee": "76398", + "nom_de_la_commune": "LOUVETOT", + "code_postal": "76490", + "coordonnees_gps": [ + 49.5727111011, + 0.72336777386 + ], + "libelle_d_acheminement": "LOUVETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72336777386, + 49.5727111011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd0d24d0a376ea7fd745ae976cbeee4607ab6831", + "fields": { + "code_commune_insee": "76404", + "nom_de_la_commune": "MANEGLISE", + "code_postal": "76133", + "coordonnees_gps": [ + 49.5667618934, + 0.256787917963 + ], + "libelle_d_acheminement": "MANEGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.256787917963, + 49.5667618934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1062df507567c6379b00768d7db9ef3d51ef55f4", + "fields": { + "code_commune_insee": "76408", + "nom_de_la_commune": "MANNEVILLE LA GOUPIL", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6116014086, + 0.347552661099 + ], + "libelle_d_acheminement": "MANNEVILLE LA GOUPIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.347552661099, + 49.6116014086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ebd014e6161b42ca88bb85dd293521bb3e9e01e", + "fields": { + "code_commune_insee": "76409", + "nom_de_la_commune": "MANNEVILLETTE", + "code_postal": "76290", + "coordonnees_gps": [ + 49.5956720647, + 0.175390225182 + ], + "libelle_d_acheminement": "MANNEVILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.175390225182, + 49.5956720647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e94e389cf33c54560cf8ffe3937de554816bc742", + "fields": { + "code_commune_insee": "76416", + "nom_de_la_commune": "MATHONVILLE", + "code_postal": "76680", + "coordonnees_gps": [ + 49.6233003429, + 1.38237435878 + ], + "libelle_d_acheminement": "MATHONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38237435878, + 49.6233003429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "325a05e56a74dfe88b3690c84fc5a172b48c09fc", + "fields": { + "code_commune_insee": "76422", + "nom_de_la_commune": "MELLEVILLE", + "code_postal": "76260", + "coordonnees_gps": [ + 49.9605697459, + 1.47593522643 + ], + "libelle_d_acheminement": "MELLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47593522643, + 49.9605697459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aed381d3541c6dd17f8ec2618d23fd7d59182a22", + "fields": { + "code_commune_insee": "76426", + "nom_de_la_commune": "MESANGUEVILLE", + "code_postal": "76780", + "coordonnees_gps": [ + 49.5574830484, + 1.56955244985 + ], + "libelle_d_acheminement": "MESANGUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56955244985, + 49.5574830484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74b52aa546e7282c3ef9b4a055e825ec64f58e11", + "fields": { + "code_commune_insee": "76429", + "nom_de_la_commune": "LE MESNIL ESNARD", + "code_postal": "76240", + "coordonnees_gps": [ + 49.4135236522, + 1.14513058262 + ], + "libelle_d_acheminement": "LE MESNIL ESNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14513058262, + 49.4135236522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdc6ef3ea86c59489c123015688c57f650dea17a", + "fields": { + "code_commune_insee": "76438", + "nom_de_la_commune": "MILLEBOSC", + "code_postal": "76260", + "coordonnees_gps": [ + 49.9810567179, + 1.49762439806 + ], + "libelle_d_acheminement": "MILLEBOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49762439806, + 49.9810567179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fdeda3a3a3e52170e3264bc0fef2c5b01516a6c", + "fields": { + "code_commune_insee": "76442", + "nom_de_la_commune": "MONCHY SUR EU", + "code_postal": "76260", + "coordonnees_gps": [ + 49.9926780546, + 1.45920994382 + ], + "libelle_d_acheminement": "MONCHY SUR EU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45920994382, + 49.9926780546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e434e979767f59807d22551fec021b7727af7c4a", + "fields": { + "code_commune_insee": "76461", + "nom_de_la_commune": "NEUFBOSC", + "code_postal": "76680", + "coordonnees_gps": [ + 49.6462799246, + 1.36132710657 + ], + "libelle_d_acheminement": "NEUFBOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36132710657, + 49.6462799246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4173108a78a51bbce39f9d8648ee8f32cace34e4", + "fields": { + "code_commune_insee": "76463", + "nom_de_la_commune": "NEUF MARCHE", + "code_postal": "76220", + "coordonnees_gps": [ + 49.4223226363, + 1.69282497893 + ], + "libelle_d_acheminement": "NEUF MARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69282497893, + 49.4223226363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8a10dc17e95aee5672231d49bab7ff76c9d1599", + "fields": { + "code_commune_insee": "76467", + "nom_de_la_commune": "NEVILLE", + "code_postal": "76460", + "coordonnees_gps": [ + 49.8235682474, + 0.71056171755 + ], + "libelle_d_acheminement": "NEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71056171755, + 49.8235682474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb9be26abf4833951faba250680b4f701eaa3d38", + "fields": { + "code_commune_insee": "76475", + "nom_de_la_commune": "FRANQUEVILLE ST PIERRE", + "code_postal": "76520", + "coordonnees_gps": [ + 49.4038906151, + 1.18265367249 + ], + "libelle_d_acheminement": "FRANQUEVILLE ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18265367249, + 49.4038906151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01a0d032a40d8351fb5036158ff438a994f58db2", + "fields": { + "code_commune_insee": "76478", + "nom_de_la_commune": "NOTRE DAME DU PARC", + "code_postal": "76590", + "coordonnees_gps": [ + 49.7497846013, + 1.12889565067 + ], + "libelle_d_acheminement": "NOTRE DAME DU PARC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12889565067, + 49.7497846013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "359e8a7a655676595fe889246715b8a8b92298f9", + "fields": { + "code_commune_insee": "76480", + "nom_de_la_commune": "OCQUEVILLE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.797976245, + 0.685755731382 + ], + "libelle_d_acheminement": "OCQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.685755731382, + 49.797976245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "300b30b1d2021ed445703f28ca2c45acd86aca1d", + "fields": { + "code_commune_insee": "76490", + "nom_de_la_commune": "OURVILLE EN CAUX", + "code_postal": "76450", + "coordonnees_gps": [ + 49.7327387861, + 0.598993581488 + ], + "libelle_d_acheminement": "OURVILLE EN CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.598993581488, + 49.7327387861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "335707d06fad862405514568bdff07c181500dbc", + "fields": { + "code_commune_insee": "76493", + "nom_de_la_commune": "PALUEL", + "code_postal": "76450", + "coordonnees_gps": [ + 49.8443584396, + 0.630759269257 + ], + "libelle_d_acheminement": "PALUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.630759269257, + 49.8443584396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d17248e09960ca11b9c9daacbff911940d9b260", + "fields": { + "code_commune_insee": "76497", + "nom_de_la_commune": "PETIT COURONNE", + "code_postal": "76650", + "coordonnees_gps": [ + 49.3807622557, + 1.03422612047 + ], + "libelle_d_acheminement": "PETIT COURONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03422612047, + 49.3807622557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fa31aed718323935801bb77aef824dea1e0cccc", + "fields": { + "code_commune_insee": "76501", + "nom_de_la_commune": "PIERREFIQUES", + "code_postal": "76280", + "coordonnees_gps": [ + 49.6746159893, + 0.230254872539 + ], + "libelle_d_acheminement": "PIERREFIQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.230254872539, + 49.6746159893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "848361fc58f8df927e22a505a960dd9b9a58773d", + "fields": { + "code_commune_insee": "76503", + "nom_de_la_commune": "PISSY POVILLE", + "code_postal": "76360", + "coordonnees_gps": [ + 49.5338000532, + 1.00170847725 + ], + "libelle_d_acheminement": "PISSY POVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00170847725, + 49.5338000532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b58d016177b59fc1f4a2c209cd51073833d9277", + "fields": { + "code_commune_insee": "76513", + "nom_de_la_commune": "QUEVILLON", + "code_postal": "76840", + "coordonnees_gps": [ + 49.4150162102, + 0.960559393697 + ], + "libelle_d_acheminement": "QUEVILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.960559393697, + 49.4150162102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "295c6b7d5e503cafcbbc6ccab88987df77dfa6bd", + "fields": { + "code_commune_insee": "76517", + "nom_de_la_commune": "QUINCAMPOIX", + "code_postal": "76230", + "coordonnees_gps": [ + 49.5206144276, + 1.17779386986 + ], + "libelle_d_acheminement": "QUINCAMPOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17779386986, + 49.5206144276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eca7158a7be7c67d9116f43d716c471f95ffb07a", + "fields": { + "code_commune_insee": "76537", + "nom_de_la_commune": "RONCHOIS", + "code_postal": "76390", + "coordonnees_gps": [ + 49.7241000601, + 1.62317523533 + ], + "libelle_d_acheminement": "RONCHOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62317523533, + 49.7241000601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "920c7d9ba273e223b6f75bbc55a3bf5e037a2bdc", + "fields": { + "code_commune_insee": "76538", + "nom_de_la_commune": "ROSAY", + "code_postal": "76680", + "coordonnees_gps": [ + 49.6967765846, + 1.25569705203 + ], + "libelle_d_acheminement": "ROSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25569705203, + 49.6967765846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f31cdb56cfbb393e8431ad9c86eb08daad482a46", + "fields": { + "code_commune_insee": "76543", + "nom_de_la_commune": "ROUVILLE", + "code_postal": "76210", + "coordonnees_gps": [ + 49.6266913662, + 0.498324037116 + ], + "libelle_d_acheminement": "ROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.498324037116, + 49.6266913662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a5b275abe49d00d17894f8f0d8ee34d4e9d483a", + "fields": { + "code_commune_insee": "76545", + "nom_de_la_commune": "ROUXMESNIL BOUTEILLES", + "code_postal": "76370", + "coordonnees_gps": [ + 49.8998914455, + 1.09967062889 + ], + "libelle_d_acheminement": "ROUXMESNIL BOUTEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09967062889, + 49.8998914455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6727d40659477fbaeb58f1ad8f85f39f03820b2d", + "fields": { + "code_commune_insee": "76546", + "nom_de_la_commune": "ROYVILLE", + "code_postal": "76730", + "coordonnees_gps": [ + 49.7792247048, + 0.953001666034 + ], + "libelle_d_acheminement": "ROYVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.953001666034, + 49.7792247048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "242ed1606b8948b8a6feebfa0f8fc692d555f0da", + "fields": { + "code_commune_insee": "76547", + "nom_de_la_commune": "LA RUE ST PIERRE", + "code_postal": "76690", + "coordonnees_gps": [ + 49.5669983752, + 1.25404333908 + ], + "libelle_d_acheminement": "LA RUE ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25404333908, + 49.5669983752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a239eb5bd8b74732a5efe05367f97dd9a859c485", + "fields": { + "code_commune_insee": "76549", + "nom_de_la_commune": "SAANE ST JUST", + "code_postal": "76730", + "coordonnees_gps": [ + 49.7568971698, + 0.923549334119 + ], + "libelle_d_acheminement": "SAANE ST JUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.923549334119, + 49.7568971698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bc7b89407dc8e141eed3a3af3ab6de13465af16", + "fields": { + "code_commune_insee": "76551", + "nom_de_la_commune": "SAINNEVILLE", + "code_postal": "76430", + "coordonnees_gps": [ + 49.5524608595, + 0.292951344544 + ], + "libelle_d_acheminement": "SAINNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.292951344544, + 49.5524608595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afe884f658a553c0ee85a6c68f358565e3d3d837", + "fields": { + "code_commune_insee": "76557", + "nom_de_la_commune": "ST ARNOULT", + "code_postal": "76490", + "coordonnees_gps": [ + 49.5366520246, + 0.677043533438 + ], + "libelle_d_acheminement": "ST ARNOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.677043533438, + 49.5366520246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff930891aa9b7134ab6aebd1b8826d022ca0c5e5", + "fields": { + "code_commune_insee": "76558", + "nom_de_la_commune": "ST AUBIN CELLOVILLE", + "code_postal": "76520", + "coordonnees_gps": [ + 49.3755064036, + 1.16040863034 + ], + "libelle_d_acheminement": "ST AUBIN CELLOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16040863034, + 49.3755064036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20c5be0660be3f0c5ef25b9a02621d7dd58f8ddf", + "fields": { + "code_commune_insee": "76559", + "nom_de_la_commune": "ST AUBIN DE CRETOT", + "code_postal": "76190", + "coordonnees_gps": [ + 49.5726933909, + 0.630520111377 + ], + "libelle_d_acheminement": "ST AUBIN DE CRETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.630520111377, + 49.5726933909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdf2ce5b420456a0c80b5da4748f7ec1c00330cf", + "fields": { + "code_commune_insee": "76562", + "nom_de_la_commune": "ST AUBIN LE CAUF", + "code_postal": "76510", + "coordonnees_gps": [ + 49.8678815711, + 1.17642488577 + ], + "libelle_d_acheminement": "ST AUBIN LE CAUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17642488577, + 49.8678815711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4db3a77f06642e79f67a170248a8c232ae9ec1b2", + "fields": { + "code_commune_insee": "76563", + "nom_de_la_commune": "ST AUBIN ROUTOT", + "code_postal": "76430", + "coordonnees_gps": [ + 49.5224149868, + 0.318821441812 + ], + "libelle_d_acheminement": "ST AUBIN ROUTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.318821441812, + 49.5224149868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4409f174192559dee1f61731859f32cd1ff6f2f7", + "fields": { + "code_commune_insee": "76564", + "nom_de_la_commune": "ST AUBIN SUR MER", + "code_postal": "76740", + "coordonnees_gps": [ + 49.8888204893, + 0.875914099002 + ], + "libelle_d_acheminement": "ST AUBIN SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.875914099002, + 49.8888204893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01d33c5d811038a8183de54aea51772e35ae6231", + "fields": { + "code_commune_insee": "76567", + "nom_de_la_commune": "STE BEUVE EN RIVIERE", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7583870059, + 1.52758714381 + ], + "libelle_d_acheminement": "STE BEUVE EN RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52758714381, + 49.7583870059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2478f3ca9dc315dbba3b62f502a2b00611e77c6", + "fields": { + "code_commune_insee": "76568", + "nom_de_la_commune": "ST CLAIR SUR LES MONTS", + "code_postal": "76190", + "coordonnees_gps": [ + 49.6020863264, + 0.784520444283 + ], + "libelle_d_acheminement": "ST CLAIR SUR LES MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.784520444283, + 49.6020863264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2626fa6c1c1749f25110d610c2ef16234d6a2b14", + "fields": { + "code_commune_insee": "76576", + "nom_de_la_commune": "ST EUSTACHE LA FORET", + "code_postal": "76210", + "coordonnees_gps": [ + 49.5542884203, + 0.451368836604 + ], + "libelle_d_acheminement": "ST EUSTACHE LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.451368836604, + 49.5542884203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "388524ac69ac93666c3fbd659396888d7f82802a", + "fields": { + "code_commune_insee": "76577", + "nom_de_la_commune": "STE FOY", + "code_postal": "76590", + "coordonnees_gps": [ + 49.7989403084, + 1.1394452282 + ], + "libelle_d_acheminement": "STE FOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1394452282, + 49.7989403084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52b204712d7fce08aff047957315b3d687e56c10", + "fields": { + "code_commune_insee": "76583", + "nom_de_la_commune": "ST GERMAIN SOUS CAILLY", + "code_postal": "76690", + "coordonnees_gps": [ + 49.578635059, + 1.20932162589 + ], + "libelle_d_acheminement": "ST GERMAIN SOUS CAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20932162589, + 49.578635059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fd6b214120d3093d742ce4c8a452d05c01f6ae0", + "fields": { + "code_commune_insee": "76586", + "nom_de_la_commune": "ST GILLES DE LA NEUVILLE", + "code_postal": "76430", + "coordonnees_gps": [ + 49.5728995947, + 0.370560315612 + ], + "libelle_d_acheminement": "ST GILLES DE LA NEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.370560315612, + 49.5728995947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bdbc53272b521753ec18bec3a615047ab91ccfc", + "fields": { + "code_commune_insee": "76588", + "nom_de_la_commune": "ST HELLIER", + "code_postal": "76680", + "coordonnees_gps": [ + 49.739289577, + 1.19753481134 + ], + "libelle_d_acheminement": "ST HELLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19753481134, + 49.739289577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fa2cbb649d968a2edc3d6c59c1fa1c018d53fe0", + "fields": { + "code_commune_insee": "76589", + "nom_de_la_commune": "ST HONORE", + "code_postal": "76590", + "coordonnees_gps": [ + 49.7837336028, + 1.15649576765 + ], + "libelle_d_acheminement": "ST HONORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15649576765, + 49.7837336028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c97695acbf98657dcb728d36aa95957589a3ea7", + "fields": { + "code_commune_insee": "76594", + "nom_de_la_commune": "ST JEAN DU CARDONNAY", + "code_postal": "76150", + "coordonnees_gps": [ + 49.4997223949, + 1.01068314715 + ], + "libelle_d_acheminement": "ST JEAN DU CARDONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01068314715, + 49.4997223949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c7876d1d8adcca37b5d1222cede51c0a2a8aa2c", + "fields": { + "code_commune_insee": "76605", + "nom_de_la_commune": "STE MARGUERITE SUR MER", + "code_postal": "76119", + "coordonnees_gps": [ + 49.9065952849, + 0.955245965887 + ], + "libelle_d_acheminement": "STE MARGUERITE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.955245965887, + 49.9065952849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f7ab98178f87a486a5299a582c266c7cb9ff288", + "fields": { + "code_commune_insee": "76609", + "nom_de_la_commune": "STE MARIE AU BOSC", + "code_postal": "76280", + "coordonnees_gps": [ + 49.6652973868, + 0.204761684966 + ], + "libelle_d_acheminement": "STE MARIE AU BOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.204761684966, + 49.6652973868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a04953a720fa11ab519b94d19cc2b823ba0c486", + "fields": { + "code_commune_insee": "76616", + "nom_de_la_commune": "ST MARTIN DU MANOIR", + "code_postal": "76290", + "coordonnees_gps": [ + 49.5371452361, + 0.234830159946 + ], + "libelle_d_acheminement": "ST MARTIN DU MANOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.234830159946, + 49.5371452361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e3d9c47969f81a8bda67efa1924b6fb5c70119c", + "fields": { + "code_commune_insee": "76617", + "nom_de_la_commune": "ST MARTIN DU VIVIER", + "code_postal": "76160", + "coordonnees_gps": [ + 49.470396647, + 1.15533430797 + ], + "libelle_d_acheminement": "ST MARTIN DU VIVIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15533430797, + 49.470396647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c93ce3362a38e0177946062f77bb9afe41a9924e", + "fields": { + "ligne_5": "DERCHIGNY", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76370", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69b99e67f37d40d9c37ec748a322ec2caed9e6d1", + "fields": { + "ligne_5": "AUQUEMESNIL", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76630", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0ff60be5b6d70ff4a16363350125ec100ad1f2f", + "fields": { + "ligne_5": "ST QUENTIN AU BOSC", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76630", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bb797cf74fcad60bd01e7c3b6ca4f7708ed499c", + "fields": { + "code_commune_insee": "76622", + "nom_de_la_commune": "ST MAURICE D ETELAN", + "code_postal": "76330", + "coordonnees_gps": [ + 49.4585668505, + 0.625051868596 + ], + "libelle_d_acheminement": "ST MAURICE D ETELAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.625051868596, + 49.4585668505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40bcf0da2a1e415ae83913e7e5866ff2a26f3857", + "fields": { + "code_commune_insee": "76636", + "nom_de_la_commune": "ST PIERRE DE VARENGEVILLE", + "code_postal": "76480", + "coordonnees_gps": [ + 49.5016042328, + 0.923668432121 + ], + "libelle_d_acheminement": "ST PIERRE DE VARENGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.923668432121, + 49.5016042328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee6fb82f8d9887b5c2cfe414973941811f312faf", + "fields": { + "code_commune_insee": "76679", + "nom_de_la_commune": "SOMMESNIL", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7106673423, + 0.671152911759 + ], + "libelle_d_acheminement": "SOMMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.671152911759, + 49.7106673423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "522a8f14d18c72e3d1778ee7ad91ac4649ed587b", + "fields": { + "code_commune_insee": "76680", + "nom_de_la_commune": "SORQUAINVILLE", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7033186673, + 0.55523073972 + ], + "libelle_d_acheminement": "SORQUAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55523073972, + 49.7033186673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f053849514151fba75cc475a755ad45949a74d3", + "fields": { + "code_commune_insee": "76684", + "nom_de_la_commune": "TANCARVILLE", + "code_postal": "76430", + "coordonnees_gps": [ + 49.4813646581, + 0.451857547923 + ], + "libelle_d_acheminement": "TANCARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.451857547923, + 49.4813646581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acd9544c9f3366f3109d96cccd00de8ed202f00a", + "fields": { + "code_commune_insee": "76693", + "nom_de_la_commune": "LE TILLEUL", + "code_postal": "76790", + "coordonnees_gps": [ + 49.6856822888, + 0.204465863098 + ], + "libelle_d_acheminement": "LE TILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.204465863098, + 49.6856822888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3313f16914609963f438c693f1d9cd9d56317ea", + "fields": { + "code_commune_insee": "76698", + "nom_de_la_commune": "TORCY LE PETIT", + "code_postal": "76590", + "coordonnees_gps": [ + 49.8151632536, + 1.18043117883 + ], + "libelle_d_acheminement": "TORCY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18043117883, + 49.8151632536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "660a3ea2bdf1abdecaed9cfbc2060559f0867826", + "fields": { + "code_commune_insee": "76699", + "nom_de_la_commune": "LE TORP MESNIL", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7257071059, + 0.905083939964 + ], + "libelle_d_acheminement": "LE TORP MESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.905083939964, + 49.7257071059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c4007c0435578910bea426444ee426538dfc3c9", + "fields": { + "code_commune_insee": "76700", + "nom_de_la_commune": "TOTES", + "code_postal": "76890", + "coordonnees_gps": [ + 49.6835299658, + 1.04261362963 + ], + "libelle_d_acheminement": "TOTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04261362963, + 49.6835299658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ddcf936a007f1c2b32cd6c77b0e2f224302b750", + "fields": { + "code_commune_insee": "76705", + "nom_de_la_commune": "TOURVILLE LA RIVIERE", + "code_postal": "76410", + "coordonnees_gps": [ + 49.3274627821, + 1.09185339831 + ], + "libelle_d_acheminement": "TOURVILLE LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09185339831, + 49.3274627821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6501c3fa898e1602b3f06961337ed7f6f999b975", + "fields": { + "code_commune_insee": "76726", + "nom_de_la_commune": "VATTETOT SUR MER", + "code_postal": "76111", + "coordonnees_gps": [ + 49.7227434222, + 0.286309367017 + ], + "libelle_d_acheminement": "VATTETOT SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.286309367017, + 49.7227434222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34ab7eecf63dc844d25c6d7684cfaf3a373ddd5e", + "fields": { + "code_commune_insee": "76733", + "nom_de_la_commune": "VENTES ST REMY", + "code_postal": "76680", + "coordonnees_gps": [ + 49.7116173858, + 1.300245377 + ], + "libelle_d_acheminement": "VENTES ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.300245377, + 49.7116173858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82791ab676d6aef21d6f29c3ab0022fa56b0de6d", + "fields": { + "code_commune_insee": "76734", + "nom_de_la_commune": "VERGETOT", + "code_postal": "76280", + "coordonnees_gps": [ + 49.6115922738, + 0.28186227301 + ], + "libelle_d_acheminement": "VERGETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28186227301, + 49.6115922738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15dd8437ed823890e3d675bf5ca00502a3339c45", + "fields": { + "code_commune_insee": "76736", + "nom_de_la_commune": "VEULETTES SUR MER", + "code_postal": "76450", + "coordonnees_gps": [ + 49.8449825714, + 0.587479052642 + ], + "libelle_d_acheminement": "VEULETTES SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.587479052642, + 49.8449825714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b68c673a631c1b47bdcbf50abd2c3d684d1b4035", + "fields": { + "code_commune_insee": "76740", + "nom_de_la_commune": "LA VIEUX RUE", + "code_postal": "76160", + "coordonnees_gps": [ + 49.4963584129, + 1.24607289446 + ], + "libelle_d_acheminement": "LA VIEUX RUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24607289446, + 49.4963584129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2606c6386995c8c84aa73707e1844850d26696d7", + "fields": { + "code_commune_insee": "76743", + "nom_de_la_commune": "VILLERS ECALLES", + "code_postal": "76360", + "coordonnees_gps": [ + 49.5351967025, + 0.926845120481 + ], + "libelle_d_acheminement": "VILLERS ECALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.926845120481, + 49.5351967025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09480efed5bf4f8a767907c8bea0f463e18055b7", + "fields": { + "code_commune_insee": "76751", + "nom_de_la_commune": "YEBLERON", + "code_postal": "76640", + "coordonnees_gps": [ + 49.630973351, + 0.53381785323 + ], + "libelle_d_acheminement": "YEBLERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53381785323, + 49.630973351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "078ea3948a98bb9bacca6b7063911a2b646d95b0", + "fields": { + "code_commune_insee": "76755", + "nom_de_la_commune": "YPREVILLE BIVILLE", + "code_postal": "76540", + "coordonnees_gps": [ + 49.6944640581, + 0.530994381028 + ], + "libelle_d_acheminement": "YPREVILLE BIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.530994381028, + 49.6944640581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d972482173127f486367d8d3db4cc1c68c54008", + "fields": { + "code_commune_insee": "77001", + "nom_de_la_commune": "ACHERES LA FORET", + "code_postal": "77760", + "coordonnees_gps": [ + 48.348528561, + 2.56456686676 + ], + "libelle_d_acheminement": "ACHERES LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56456686676, + 48.348528561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7785415931fffc5e068c2bf4b8cccd3a8134bdbc", + "fields": { + "code_commune_insee": "77003", + "nom_de_la_commune": "AMPONVILLE", + "code_postal": "77760", + "coordonnees_gps": [ + 48.2874371683, + 2.53069073747 + ], + "libelle_d_acheminement": "AMPONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53069073747, + 48.2874371683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f224f5814e37d790abe6df19f4dc53002a9d765", + "fields": { + "code_commune_insee": "77004", + "nom_de_la_commune": "ANDREZEL", + "code_postal": "77390", + "coordonnees_gps": [ + 48.6145967279, + 2.8066323497 + ], + "libelle_d_acheminement": "ANDREZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8066323497, + 48.6145967279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae348cb26b0d29fcba616ccb75e7170a018dd743", + "fields": { + "code_commune_insee": "77012", + "nom_de_la_commune": "AUGERS EN BRIE", + "code_postal": "77560", + "coordonnees_gps": [ + 48.6668346631, + 3.35240178386 + ], + "libelle_d_acheminement": "AUGERS EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35240178386, + 48.6668346631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac7abd44b0de38e00e07a878b1e88ea4e1fc69ec", + "fields": { + "code_commune_insee": "77014", + "nom_de_la_commune": "AVON", + "code_postal": "77210", + "coordonnees_gps": [ + 48.4129699101, + 2.73351873997 + ], + "libelle_d_acheminement": "AVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73351873997, + 48.4129699101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a165ebd635df15a27848411cc0c54fe8e80472c0", + "fields": { + "code_commune_insee": "77029", + "nom_de_la_commune": "BEAUVOIR", + "code_postal": "77390", + "coordonnees_gps": [ + 48.6420172822, + 2.86359124408 + ], + "libelle_d_acheminement": "BEAUVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86359124408, + 48.6420172822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a928a2de0b1f841ea2921222cecd57e835f12dc1", + "fields": { + "code_commune_insee": "77036", + "nom_de_la_commune": "BOISDON", + "code_postal": "77970", + "coordonnees_gps": [ + 48.6755736092, + 3.2262301193 + ], + "libelle_d_acheminement": "BOISDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2262301193, + 48.6755736092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc7e525d3f10c7c144cb6e2160b1797eaab70389", + "fields": { + "code_commune_insee": "77042", + "nom_de_la_commune": "BOISSY LE CHATEL", + "code_postal": "77169", + "coordonnees_gps": [ + 48.8253832401, + 3.13705190167 + ], + "libelle_d_acheminement": "BOISSY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13705190167, + 48.8253832401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0257d015296f258b5822851b18000a72bdd9d4d0", + "fields": { + "code_commune_insee": "77043", + "nom_de_la_commune": "BOITRON", + "code_postal": "77750", + "coordonnees_gps": [ + 48.8965868598, + 3.26188355205 + ], + "libelle_d_acheminement": "BOITRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26188355205, + 48.8965868598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34c00c8ad87f8265ae34158369e56a874d776d3a", + "fields": { + "code_commune_insee": "77048", + "nom_de_la_commune": "BOURRON MARLOTTE", + "code_postal": "77780", + "coordonnees_gps": [ + 48.3352610776, + 2.70169993506 + ], + "libelle_d_acheminement": "BOURRON MARLOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70169993506, + 48.3352610776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2a851a0fd48db84b2063f71eb8a66a3b150b8ee", + "fields": { + "code_commune_insee": "77051", + "nom_de_la_commune": "BRAY SUR SEINE", + "code_postal": "77480", + "coordonnees_gps": [ + 48.4145972795, + 3.24389965363 + ], + "libelle_d_acheminement": "BRAY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24389965363, + 48.4145972795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aaa0b01a24d0ef27f9973e14e9a087d18bd93ae", + "fields": { + "code_commune_insee": "77054", + "nom_de_la_commune": "LA BROSSE MONTCEAUX", + "code_postal": "77940", + "coordonnees_gps": [ + 48.3389431289, + 3.02362728915 + ], + "libelle_d_acheminement": "LA BROSSE MONTCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02362728915, + 48.3389431289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89f80aea794909fffbee9d844b4b19c71eb4b71b", + "fields": { + "code_commune_insee": "77055", + "nom_de_la_commune": "BROU SUR CHANTEREINE", + "code_postal": "77177", + "coordonnees_gps": [ + 48.8901616457, + 2.63989859744 + ], + "libelle_d_acheminement": "BROU SUR CHANTEREINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63989859744, + 48.8901616457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad910a20d0f0e850e3fe01dd73676da6a5b0921d", + "fields": { + "code_commune_insee": "77061", + "nom_de_la_commune": "CANNES ECLUSE", + "code_postal": "77130", + "coordonnees_gps": [ + 48.3640376731, + 2.99078667983 + ], + "libelle_d_acheminement": "CANNES ECLUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99078667983, + 48.3640376731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d163835bf398cc32a19c0553bbac761316f43e0", + "fields": { + "code_commune_insee": "77063", + "nom_de_la_commune": "LA CELLE SUR MORIN", + "code_postal": "77515", + "coordonnees_gps": [ + 48.7964965898, + 2.97175354301 + ], + "libelle_d_acheminement": "LA CELLE SUR MORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97175354301, + 48.7964965898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7491496f5d160de2f2079462dca057dc6ad69838", + "fields": { + "code_commune_insee": "77076", + "nom_de_la_commune": "CHALMAISON", + "code_postal": "77650", + "coordonnees_gps": [ + 48.4901641224, + 3.25643675614 + ], + "libelle_d_acheminement": "CHALMAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25643675614, + 48.4901641224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65617b2a1e43c1a56c7675f2d58d6a5df878b3eb", + "fields": { + "code_commune_insee": "77080", + "nom_de_la_commune": "CHAMPCENEST", + "code_postal": "77560", + "coordonnees_gps": [ + 48.6709207707, + 3.27677023622 + ], + "libelle_d_acheminement": "CHAMPCENEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27677023622, + 48.6709207707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9620d7a174382df23f564b29720de0b7c23fa0d", + "fields": { + "code_commune_insee": "77082", + "nom_de_la_commune": "CHAMPEAUX", + "code_postal": "77720", + "coordonnees_gps": [ + 48.5919791102, + 2.81118299659 + ], + "libelle_d_acheminement": "CHAMPEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81118299659, + 48.5919791102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1d17f2fece20f47ead78a131ef6cbf7bfce4fce", + "fields": { + "code_commune_insee": "77083", + "nom_de_la_commune": "CHAMPS SUR MARNE", + "code_postal": "77420", + "coordonnees_gps": [ + 48.8483311726, + 2.59610325483 + ], + "libelle_d_acheminement": "CHAMPS SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59610325483, + 48.8483311726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c5e51805c008eadf3a8e78f468a2b8725a32a16", + "fields": { + "code_commune_insee": "77089", + "nom_de_la_commune": "LA CHAPELLE RABLAIS", + "code_postal": "77370", + "coordonnees_gps": [ + 48.5059176558, + 2.96075561449 + ], + "libelle_d_acheminement": "LA CHAPELLE RABLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96075561449, + 48.5059176558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cc246d31dd9e8d54ffe09bf7376121e33931134", + "fields": { + "code_commune_insee": "77091", + "nom_de_la_commune": "LES CHAPELLES BOURBON", + "code_postal": "77610", + "coordonnees_gps": [ + 48.7435938293, + 2.83654734794 + ], + "libelle_d_acheminement": "LES CHAPELLES BOURBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83654734794, + 48.7435938293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71a9b4a3b563c6c8bb4b4c372813f92528eea7bc", + "fields": { + "code_commune_insee": "77093", + "nom_de_la_commune": "LA CHAPELLE MOUTILS", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7774367045, + 3.38271618157 + ], + "libelle_d_acheminement": "LA CHAPELLE MOUTILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38271618157, + 48.7774367045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1982fc4431cb7f7e6321943ae5c7c0dea3c6486", + "fields": { + "code_commune_insee": "77094", + "nom_de_la_commune": "CHARMENTRAY", + "code_postal": "77410", + "coordonnees_gps": [ + 48.9509081872, + 2.77901265334 + ], + "libelle_d_acheminement": "CHARMENTRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77901265334, + 48.9509081872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc13f0e000750c31ae560a17d740262c951de647", + "fields": { + "code_commune_insee": "77099", + "nom_de_la_commune": "CHATEAU LANDON", + "code_postal": "77570", + "coordonnees_gps": [ + 48.1483667558, + 2.69970869665 + ], + "libelle_d_acheminement": "CHATEAU LANDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69970869665, + 48.1483667558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7506dd23ba268e7dad97067da54049cfbea4c57d", + "fields": { + "code_commune_insee": "77103", + "nom_de_la_commune": "CHATILLON LA BORDE", + "code_postal": "77820", + "coordonnees_gps": [ + 48.5377423569, + 2.82685181318 + ], + "libelle_d_acheminement": "CHATILLON LA BORDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82685181318, + 48.5377423569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0adb617d2c4d63f17474f4e87eacf6efb5b8682a", + "fields": { + "code_commune_insee": "77104", + "nom_de_la_commune": "CHATRES", + "code_postal": "77610", + "coordonnees_gps": [ + 48.7127586287, + 2.8158417118 + ], + "libelle_d_acheminement": "CHATRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8158417118, + 48.7127586287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed37af9c28ded10f2e8b63d791ca797697e41d97", + "fields": { + "code_commune_insee": "77108", + "nom_de_la_commune": "CHELLES", + "code_postal": "77500", + "coordonnees_gps": [ + 48.883962967, + 2.59686448583 + ], + "libelle_d_acheminement": "CHELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59686448583, + 48.883962967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d828a4396f05518a38954345d8a7e77d583e316", + "fields": { + "code_commune_insee": "77114", + "nom_de_la_commune": "CHEVRY COSSIGNY", + "code_postal": "77173", + "coordonnees_gps": [ + 48.7228150234, + 2.67680477981 + ], + "libelle_d_acheminement": "CHEVRY COSSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67680477981, + 48.7228150234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d341e18a3bdf7bcc0a5710d5c3df01ded9dc45c", + "fields": { + "code_commune_insee": "77116", + "nom_de_la_commune": "CHOISY EN BRIE", + "code_postal": "77320", + "coordonnees_gps": [ + 48.764988826, + 3.21324104844 + ], + "libelle_d_acheminement": "CHOISY EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21324104844, + 48.764988826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d90ef3634565dc69e7b1221fc71dcab216e58a6b", + "fields": { + "code_commune_insee": "77123", + "nom_de_la_commune": "COMPANS", + "code_postal": "77290", + "coordonnees_gps": [ + 48.9892298685, + 2.6561103822 + ], + "libelle_d_acheminement": "COMPANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6561103822, + 48.9892298685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ee86e54a971fe4ed91d17a61f2878930aad4688", + "fields": { + "code_commune_insee": "77124", + "nom_de_la_commune": "CONCHES SUR GONDOIRE", + "code_postal": "77600", + "coordonnees_gps": [ + 48.8575681036, + 2.71923246791 + ], + "libelle_d_acheminement": "CONCHES SUR GONDOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71923246791, + 48.8575681036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfdcfebfcccec24d8837a27307ed47f51f85dca9", + "fields": { + "code_commune_insee": "77128", + "nom_de_la_commune": "COUILLY PONT AUX DAMES", + "code_postal": "77860", + "coordonnees_gps": [ + 48.8816698375, + 2.86534000286 + ], + "libelle_d_acheminement": "COUILLY PONT AUX DAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86534000286, + 48.8816698375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8ea531fb4ea1607d6bb3eb88356ccdb90fbbeda", + "fields": { + "code_commune_insee": "77146", + "nom_de_la_commune": "CROISSY BEAUBOURG", + "code_postal": "77183", + "coordonnees_gps": [ + 48.8167092612, + 2.65547869791 + ], + "libelle_d_acheminement": "CROISSY BEAUBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65547869791, + 48.8167092612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfa655d20a86d900d2f17aa11e6dcd44a3ef4c73", + "fields": { + "ligne_5": "BEAUBOURG", + "code_commune_insee": "77146", + "libelle_d_acheminement": "CROISSY BEAUBOURG", + "code_postal": "77183", + "nom_de_la_commune": "CROISSY BEAUBOURG", + "coordonnees_gps": [ + 48.8167092612, + 2.65547869791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65547869791, + 48.8167092612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "047b1df989c9071927d8bfe61bc7afdbb6c83ad3", + "fields": { + "code_commune_insee": "77152", + "nom_de_la_commune": "DAMMARIE LES LYS", + "code_postal": "77190", + "coordonnees_gps": [ + 48.5138338655, + 2.62854374259 + ], + "libelle_d_acheminement": "DAMMARIE LES LYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62854374259, + 48.5138338655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2dc8b711f145ba1283e879235a3e747a49d950c", + "fields": { + "code_commune_insee": "77153", + "nom_de_la_commune": "DAMMARTIN EN GOELE", + "code_postal": "77230", + "coordonnees_gps": [ + 49.0541690491, + 2.67926104225 + ], + "libelle_d_acheminement": "DAMMARTIN EN GOELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67926104225, + 49.0541690491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88c4e7655540b4ba8917c83687098922f043e52f", + "fields": { + "code_commune_insee": "77155", + "nom_de_la_commune": "DAMPMART", + "code_postal": "77400", + "coordonnees_gps": [ + 48.8943626322, + 2.74598280906 + ], + "libelle_d_acheminement": "DAMPMART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74598280906, + 48.8943626322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02269ca8cf7716534f8cd0325a024f80c0ecde9e", + "fields": { + "code_commune_insee": "77159", + "nom_de_la_commune": "DONNEMARIE DONTILLY", + "code_postal": "77520", + "coordonnees_gps": [ + 48.4778429138, + 3.11825735705 + ], + "libelle_d_acheminement": "DONNEMARIE DONTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11825735705, + 48.4778429138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "003e102dd93e04a496cb87fbfd804ae64178ba44", + "fields": { + "code_commune_insee": "77163", + "nom_de_la_commune": "DOUY LA RAMEE", + "code_postal": "77139", + "coordonnees_gps": [ + 49.0618013972, + 2.88351463449 + ], + "libelle_d_acheminement": "DOUY LA RAMEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88351463449, + 49.0618013972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e78c033aa505acd9d9e20f167a7f08c49091ea89", + "fields": { + "ligne_5": "MALNOUE", + "code_commune_insee": "77169", + "libelle_d_acheminement": "EMERAINVILLE", + "code_postal": "77184", + "nom_de_la_commune": "EMERAINVILLE", + "coordonnees_gps": [ + 48.8197762376, + 2.60897006725 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60897006725, + 48.8197762376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1705fa90327c83102ff5e63fbc7ee9aec823855", + "fields": { + "code_commune_insee": "77176", + "nom_de_la_commune": "FAREMOUTIERS", + "code_postal": "77515", + "coordonnees_gps": [ + 48.7783722685, + 3.00021735955 + ], + "libelle_d_acheminement": "FAREMOUTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00021735955, + 48.7783722685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dba9338f9c415a6c6efb758eed0634474f938dc", + "fields": { + "code_commune_insee": "77179", + "nom_de_la_commune": "FERICY", + "code_postal": "77133", + "coordonnees_gps": [ + 48.4651858687, + 2.80348330714 + ], + "libelle_d_acheminement": "FERICY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80348330714, + 48.4651858687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7da024de71225c3b1790c8928f5887916f9d5fe", + "fields": { + "code_commune_insee": "77182", + "nom_de_la_commune": "LA FERTE GAUCHER", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7881786696, + 3.30423031275 + ], + "libelle_d_acheminement": "LA FERTE GAUCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30423031275, + 48.7881786696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "758942f0965f2e91a95a6e2b3de35aa752a729bf", + "fields": { + "code_commune_insee": "77191", + "nom_de_la_commune": "FONTENAILLES", + "code_postal": "77370", + "coordonnees_gps": [ + 48.5324483364, + 2.92730889492 + ], + "libelle_d_acheminement": "FONTENAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92730889492, + 48.5324483364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed559291f7d11eef79fe27fc3c7c40a5c62ed05b", + "fields": { + "code_commune_insee": "77202", + "nom_de_la_commune": "LA GENEVRAYE", + "code_postal": "77690", + "coordonnees_gps": [ + 48.3150277838, + 2.75296542795 + ], + "libelle_d_acheminement": "LA GENEVRAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75296542795, + 48.3150277838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d48aa9633e39b670fe73ae068247c0a4d7ad92b2", + "fields": { + "code_commune_insee": "77204", + "nom_de_la_commune": "GERMIGNY SOUS COULOMBS", + "code_postal": "77840", + "coordonnees_gps": [ + 49.0643954929, + 3.16141463916 + ], + "libelle_d_acheminement": "GERMIGNY SOUS COULOMBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16141463916, + 49.0643954929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34d05477d4114f5405ee9e3db2e58c7174fa9d1d", + "fields": { + "code_commune_insee": "77208", + "nom_de_la_commune": "GOUAIX", + "code_postal": "77114", + "coordonnees_gps": [ + 48.4760442904, + 3.2968135463 + ], + "libelle_d_acheminement": "GOUAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2968135463, + 48.4760442904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c2a579333541606a0254e4e24799a6d2ec9c4de", + "fields": { + "code_commune_insee": "77210", + "nom_de_la_commune": "LA GRANDE PAROISSE", + "code_postal": "77130", + "coordonnees_gps": [ + 48.3917544483, + 2.89831742058 + ], + "libelle_d_acheminement": "LA GRANDE PAROISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89831742058, + 48.3917544483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "defaf3f43ccdb71e5f23ea4e8088f592c4c7f008", + "fields": { + "ligne_5": "SUISNES", + "code_commune_insee": "77217", + "libelle_d_acheminement": "GRISY SUISNES", + "code_postal": "77166", + "nom_de_la_commune": "GRISY SUISNES", + "coordonnees_gps": [ + 48.6844503585, + 2.67647246485 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67647246485, + 48.6844503585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "272b95ae6c607466ca74af1712c85546c29d9d8a", + "fields": { + "code_commune_insee": "77218", + "nom_de_la_commune": "GRISY SUR SEINE", + "code_postal": "77480", + "coordonnees_gps": [ + 48.4392463445, + 3.31754499195 + ], + "libelle_d_acheminement": "GRISY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31754499195, + 48.4392463445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43952a82fb25690bcc5a3acce321d926713cb62c", + "fields": { + "code_commune_insee": "77219", + "nom_de_la_commune": "GUERARD", + "code_postal": "77580", + "coordonnees_gps": [ + 48.8187519127, + 2.95160900564 + ], + "libelle_d_acheminement": "GUERARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95160900564, + 48.8187519127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19e2f14cec6b9206589e7e5f5a29cdf20cb5e88c", + "fields": { + "code_commune_insee": "77223", + "nom_de_la_commune": "GURCY LE CHATEL", + "code_postal": "77520", + "coordonnees_gps": [ + 48.4844716006, + 3.0809062943 + ], + "libelle_d_acheminement": "GURCY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0809062943, + 48.4844716006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cf39e72eae2fd6c7aa3b87306d55b4cb48f0693", + "fields": { + "code_commune_insee": "77228", + "nom_de_la_commune": "HONDEVILLIERS", + "code_postal": "77510", + "coordonnees_gps": [ + 48.9036037972, + 3.31190232857 + ], + "libelle_d_acheminement": "HONDEVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31190232857, + 48.9036037972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55b2be35746108b60f5eaa0103df15e4c3dceac6", + "fields": { + "code_commune_insee": "77232", + "nom_de_la_commune": "ISLES LES VILLENOY", + "code_postal": "77450", + "coordonnees_gps": [ + 48.9170644276, + 2.83057358355 + ], + "libelle_d_acheminement": "ISLES LES VILLENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83057358355, + 48.9170644276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a95bd95ac154bb54a1ae1d3940825feb5b5a929", + "fields": { + "code_commune_insee": "77239", + "nom_de_la_commune": "JOUY LE CHATEL", + "code_postal": "77970", + "coordonnees_gps": [ + 48.6642848062, + 3.13507230422 + ], + "libelle_d_acheminement": "JOUY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13507230422, + 48.6642848062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cff6ad0dadf0d2e7d10fd7b28dfd72124c0f6028", + "fields": { + "code_commune_insee": "77245", + "nom_de_la_commune": "LAVAL EN BRIE", + "code_postal": "77148", + "coordonnees_gps": [ + 48.4552750724, + 2.97557988604 + ], + "libelle_d_acheminement": "LAVAL EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97557988604, + 48.4552750724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d47dbf7123e6d2565137101725a3739e31a3f32", + "fields": { + "code_commune_insee": "77251", + "nom_de_la_commune": "LIEUSAINT", + "code_postal": "77127", + "coordonnees_gps": [ + 48.6259910244, + 2.54994732668 + ], + "libelle_d_acheminement": "LIEUSAINT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54994732668, + 48.6259910244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f624051831a1f55ecdb88797ab0fda8d0239540", + "fields": { + "ligne_5": "PREAUX", + "code_commune_insee": "77261", + "libelle_d_acheminement": "LORREZ LE BOCAGE PREAUX", + "code_postal": "77710", + "nom_de_la_commune": "LORREZ LE BOCAGE PREAUX", + "coordonnees_gps": [ + 48.2397310097, + 2.89648812918 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89648812918, + 48.2397310097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b6a71a5deaa89743b75087689fb9d80859ec224", + "fields": { + "ligne_5": "VILLEGRUIS", + "code_commune_insee": "77262", + "libelle_d_acheminement": "LOUAN VILLEGRUIS FONTAINE", + "code_postal": "77560", + "nom_de_la_commune": "LOUAN VILLEGRUIS FONTAINE", + "coordonnees_gps": [ + 48.6145636708, + 3.48915109409 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48915109409, + 48.6145636708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bd7b27c1234b35c04fdea7f9ac48bf4ce882075", + "fields": { + "code_commune_insee": "77268", + "nom_de_la_commune": "MAGNY LE HONGRE", + "code_postal": "77700", + "coordonnees_gps": [ + 48.866827281, + 2.81442274783 + ], + "libelle_d_acheminement": "MAGNY LE HONGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81442274783, + 48.866827281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e65199baa3872a5c899692a4cf32299ed40be10", + "fields": { + "code_commune_insee": "77274", + "nom_de_la_commune": "MARCILLY", + "code_postal": "77139", + "coordonnees_gps": [ + 49.0370437307, + 2.88048254724 + ], + "libelle_d_acheminement": "MARCILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88048254724, + 49.0370437307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c7268b188620753cd1a290f340da0165d0e0425", + "fields": { + "code_commune_insee": "77282", + "nom_de_la_commune": "MAUREGARD", + "code_postal": "77990", + "coordonnees_gps": [ + 49.0288930356, + 2.57185471414 + ], + "libelle_d_acheminement": "MAUREGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57185471414, + 49.0288930356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae61f93423dded52aafef765ca544a2a7a543f30", + "fields": { + "code_commune_insee": "77284", + "nom_de_la_commune": "MEAUX", + "code_postal": "77100", + "coordonnees_gps": [ + 48.9570625667, + 2.90003097245 + ], + "libelle_d_acheminement": "MEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90003097245, + 48.9570625667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7054271f42ee950dbd42da19efdebd1ddd832725", + "fields": { + "code_commune_insee": "77287", + "nom_de_la_commune": "MEILLERAY", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7981344824, + 3.41720461603 + ], + "libelle_d_acheminement": "MEILLERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41720461603, + 48.7981344824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5df4dfe82e54e6b37709aea115d8f2bf6ab5dfb1", + "fields": { + "code_commune_insee": "77313", + "nom_de_la_commune": "MONTMACHOUX", + "code_postal": "77940", + "coordonnees_gps": [ + 48.3199642252, + 2.99238308461 + ], + "libelle_d_acheminement": "MONTMACHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99238308461, + 48.3199642252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00ee9f8c54a48693a878e6754793132caeafc325", + "fields": { + "code_commune_insee": "77314", + "nom_de_la_commune": "MONTOLIVET", + "code_postal": "77320", + "coordonnees_gps": [ + 48.8279632534, + 3.43159250475 + ], + "libelle_d_acheminement": "MONTOLIVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43159250475, + 48.8279632534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0867e6f24e2d625cf6ba0eecd95bc09d3f8d9ddc", + "fields": { + "ligne_5": "MORET SUR LOING", + "code_commune_insee": "77316", + "libelle_d_acheminement": "MORET LOING ET ORVANNE", + "code_postal": "77250", + "nom_de_la_commune": "MORET LOING ET ORVANNE", + "coordonnees_gps": [ + 48.365092921, + 2.81172585849 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81172585849, + 48.365092921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "340a926704bc4d7b069a3280976f4a5ba57c8e5c", + "fields": { + "code_commune_insee": "77322", + "nom_de_la_commune": "MOUSSY LE NEUF", + "code_postal": "77230", + "coordonnees_gps": [ + 49.0702568046, + 2.60754182712 + ], + "libelle_d_acheminement": "MOUSSY LE NEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60754182712, + 49.0702568046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69f1fdb8ce1ac3045e5f6e83aca865faae826d98", + "fields": { + "code_commune_insee": "77323", + "nom_de_la_commune": "MOUSSY LE VIEUX", + "code_postal": "77230", + "coordonnees_gps": [ + 49.047876566, + 2.62361968974 + ], + "libelle_d_acheminement": "MOUSSY LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62361968974, + 49.047876566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75faf0f94dc9addcf7fa864445dabf9681c50eb9", + "fields": { + "code_commune_insee": "77325", + "nom_de_la_commune": "MOUY SUR SEINE", + "code_postal": "77480", + "coordonnees_gps": [ + 48.4321477503, + 3.24604389645 + ], + "libelle_d_acheminement": "MOUY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24604389645, + 48.4321477503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd05764a5cc6bd7f314a69b875172b69e816f92a", + "fields": { + "code_commune_insee": "77329", + "nom_de_la_commune": "NANTEAU SUR LUNAIN", + "code_postal": "77710", + "coordonnees_gps": [ + 48.2542947605, + 2.81304078481 + ], + "libelle_d_acheminement": "NANTEAU SUR LUNAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81304078481, + 48.2542947605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6611ea0096b751f683e118bfa76b93af4ac445a", + "fields": { + "code_commune_insee": "77330", + "nom_de_la_commune": "NANTEUIL LES MEAUX", + "code_postal": "77100", + "coordonnees_gps": [ + 48.9285877665, + 2.8991405174 + ], + "libelle_d_acheminement": "NANTEUIL LES MEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8991405174, + 48.9285877665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bff9622f307417f8b3a99b0d00483935922ac6e", + "fields": { + "ligne_5": "CHAUCONIN", + "code_commune_insee": "77335", + "libelle_d_acheminement": "CHAUCONIN NEUFMONTIERS", + "code_postal": "77124", + "nom_de_la_commune": "CHAUCONIN NEUFMONTIERS", + "coordonnees_gps": [ + 48.9719332783, + 2.83158634864 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83158634864, + 48.9719332783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a0734935f4449777ce19b1f4344e022a9dfa7ed", + "fields": { + "code_commune_insee": "77345", + "nom_de_la_commune": "ORLY SUR MORIN", + "code_postal": "77750", + "coordonnees_gps": [ + 48.9011406989, + 3.22658496593 + ], + "libelle_d_acheminement": "ORLY SUR MORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22658496593, + 48.9011406989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d21712c95667333fc7082abf0d8894e96bf24e4c", + "fields": { + "code_commune_insee": "77359", + "nom_de_la_commune": "PERTHES", + "code_postal": "77930", + "coordonnees_gps": [ + 48.479730606, + 2.55038052003 + ], + "libelle_d_acheminement": "PERTHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55038052003, + 48.479730606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e78df6bf364399185ac420ce72748c407363d798", + "fields": { + "code_commune_insee": "77361", + "nom_de_la_commune": "PIERRE LEVEE", + "code_postal": "77580", + "coordonnees_gps": [ + 48.8973865093, + 3.03672367575 + ], + "libelle_d_acheminement": "PIERRE LEVEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03672367575, + 48.8973865093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "998df76cd6f10f0d0efb2db20c056b16adf34db0", + "fields": { + "code_commune_insee": "77374", + "nom_de_la_commune": "PONTCARRE", + "code_postal": "77135", + "coordonnees_gps": [ + 48.796292771, + 2.70744366503 + ], + "libelle_d_acheminement": "PONTCARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70744366503, + 48.796292771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88e09ef3a037b5cafe1ba3960e4d7548c088db29", + "fields": { + "code_commune_insee": "77381", + "nom_de_la_commune": "QUIERS", + "code_postal": "77720", + "coordonnees_gps": [ + 48.6142332217, + 2.96159846336 + ], + "libelle_d_acheminement": "QUIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96159846336, + 48.6142332217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b70398e946fc7c1eba2cdd1adaa0ae8a46557bdf", + "fields": { + "code_commune_insee": "77389", + "nom_de_la_commune": "LA ROCHETTE", + "code_postal": "77000", + "coordonnees_gps": [ + 48.5068460173, + 2.65955941883 + ], + "libelle_d_acheminement": "LA ROCHETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65955941883, + 48.5068460173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c5f933237d53dcbaf1a3736e0b2d7304f75ae2c", + "fields": { + "code_commune_insee": "77392", + "nom_de_la_commune": "ROUVRES", + "code_postal": "77230", + "coordonnees_gps": [ + 49.0637945293, + 2.71838722882 + ], + "libelle_d_acheminement": "ROUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71838722882, + 49.0637945293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66e24abdfa7140a844cb1522cc30611ae5abff10", + "fields": { + "code_commune_insee": "77396", + "nom_de_la_commune": "RUPEREUX", + "code_postal": "77560", + "coordonnees_gps": [ + 48.6426005299, + 3.32681043883 + ], + "libelle_d_acheminement": "RUPEREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32681043883, + 48.6426005299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b55ceae53f08ab83e8f2c9fa78b2830421524cb", + "fields": { + "code_commune_insee": "77407", + "nom_de_la_commune": "ST FARGEAU PONTHIERRY", + "code_postal": "77310", + "coordonnees_gps": [ + 48.5390914714, + 2.52499710746 + ], + "libelle_d_acheminement": "ST FARGEAU PONTHIERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52499710746, + 48.5390914714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c449b01863ed15e95d447a6b74e631bc84eaed6", + "fields": { + "code_commune_insee": "77412", + "nom_de_la_commune": "ST GERMAIN SUR ECOLE", + "code_postal": "77930", + "coordonnees_gps": [ + 48.4743072486, + 2.51078189836 + ], + "libelle_d_acheminement": "ST GERMAIN SUR ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51078189836, + 48.4743072486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0954d8453b1cc2f679a0f8b9ca9e92605111c5bf", + "fields": { + "code_commune_insee": "77413", + "nom_de_la_commune": "ST GERMAIN SUR MORIN", + "code_postal": "77860", + "coordonnees_gps": [ + 48.8752580652, + 2.84028985019 + ], + "libelle_d_acheminement": "ST GERMAIN SUR MORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84028985019, + 48.8752580652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db90b9b596621c9f68f62cdb9d113be8cbcb1d05", + "fields": { + "code_commune_insee": "77414", + "nom_de_la_commune": "ST HILLIERS", + "code_postal": "77160", + "coordonnees_gps": [ + 48.6289146411, + 3.25823552684 + ], + "libelle_d_acheminement": "ST HILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25823552684, + 48.6289146411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4757764200f38fa3480d9b7c42ae7b4ce4cf919b", + "fields": { + "code_commune_insee": "77417", + "nom_de_la_commune": "ST LEGER", + "code_postal": "77510", + "coordonnees_gps": [ + 48.8435888825, + 3.27123408518 + ], + "libelle_d_acheminement": "ST LEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27123408518, + 48.8435888825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60c0f3a3e2d88a288d7f07237edd0fc21577a2ac", + "fields": { + "code_commune_insee": "77419", + "nom_de_la_commune": "ST MAMMES", + "code_postal": "77670", + "coordonnees_gps": [ + 48.3867865582, + 2.81899706389 + ], + "libelle_d_acheminement": "ST MAMMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81899706389, + 48.3867865582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "086927d3a93d35ac15f1d3e944d9d11fc11f5c50", + "fields": { + "ligne_5": "VIEUX MAISONS", + "code_commune_insee": "77421", + "libelle_d_acheminement": "ST MARS VIEUX MAISONS", + "code_postal": "77320", + "nom_de_la_commune": "ST MARS VIEUX MAISONS", + "coordonnees_gps": [ + 48.7382088381, + 3.3197504668 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3197504668, + 48.7382088381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a34266b162cb325fafcbd701dbf87a0a817ded9f", + "fields": { + "code_commune_insee": "77432", + "nom_de_la_commune": "ST REMY LA VANNE", + "code_postal": "77320", + "coordonnees_gps": [ + 48.8125459558, + 3.24204081614 + ], + "libelle_d_acheminement": "ST REMY LA VANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24204081614, + 48.8125459558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c03edd81314dfe69a6390c2f784f5e2e74a43168", + "fields": { + "ligne_5": "BEAUTHEIL", + "code_commune_insee": "77433", + "libelle_d_acheminement": "BEAUTHEIL SAINTS", + "code_postal": "77120", + "nom_de_la_commune": "BEAUTHEIL SAINTS", + "coordonnees_gps": [ + 48.7643724711, + 3.05922570921 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05922570921, + 48.7643724711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e4f952be4c03283c6ba4dc6cd40545835aaf063", + "fields": { + "code_commune_insee": "77434", + "nom_de_la_commune": "ST SAUVEUR LES BRAY", + "code_postal": "77480", + "coordonnees_gps": [ + 48.4379889484, + 3.20463281198 + ], + "libelle_d_acheminement": "ST SAUVEUR LES BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20463281198, + 48.4379889484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b86fb5d3e98a0771727e660b2c7b1391c359bb3", + "fields": { + "code_commune_insee": "77435", + "nom_de_la_commune": "ST SAUVEUR SUR ECOLE", + "code_postal": "77930", + "coordonnees_gps": [ + 48.4997072373, + 2.53411876201 + ], + "libelle_d_acheminement": "ST SAUVEUR SUR ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53411876201, + 48.4997072373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d2a65e90ac1023f6a8fb5ca8311b8be143fe78e", + "fields": { + "code_commune_insee": "77440", + "nom_de_la_commune": "SAMMERON", + "code_postal": "77260", + "coordonnees_gps": [ + 48.9415743758, + 3.07701664102 + ], + "libelle_d_acheminement": "SAMMERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07701664102, + 48.9415743758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f23acce1044bf0b94447978b8ea281376526c4a", + "fields": { + "code_commune_insee": "77442", + "nom_de_la_commune": "SAMOREAU", + "code_postal": "77210", + "coordonnees_gps": [ + 48.4200104372, + 2.76978734105 + ], + "libelle_d_acheminement": "SAMOREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76978734105, + 48.4200104372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ec474086bd439d42a749434a8382a1bb0af574b", + "fields": { + "code_commune_insee": "77448", + "nom_de_la_commune": "SEPT SORTS", + "code_postal": "77260", + "coordonnees_gps": [ + 48.940158615, + 3.10627084315 + ], + "libelle_d_acheminement": "SEPT SORTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10627084315, + 48.940158615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dd37dc130f53327650b519af2ea756819da7ada", + "fields": { + "code_commune_insee": "77457", + "nom_de_la_commune": "SOLERS", + "code_postal": "77111", + "coordonnees_gps": [ + 48.6593859188, + 2.72669568972 + ], + "libelle_d_acheminement": "SOLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72669568972, + 48.6593859188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bad86a2e434e8385b4e530a524bc659cdc9e6e2e", + "fields": { + "code_commune_insee": "77459", + "nom_de_la_commune": "SOURDUN", + "code_postal": "77171", + "coordonnees_gps": [ + 48.5369434021, + 3.3628787539 + ], + "libelle_d_acheminement": "SOURDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3628787539, + 48.5369434021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9c792a1b304785ba28be7d3e16bbf21f423b805", + "fields": { + "code_commune_insee": "77468", + "nom_de_la_commune": "TORCY", + "code_postal": "77200", + "coordonnees_gps": [ + 48.8532553496, + 2.65123227423 + ], + "libelle_d_acheminement": "TORCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65123227423, + 48.8532553496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e288c546ae51dd3ff07f36527148efc87348251", + "fields": { + "code_commune_insee": "77470", + "nom_de_la_commune": "TOURNAN EN BRIE", + "code_postal": "77220", + "coordonnees_gps": [ + 48.739865817, + 2.77820566994 + ], + "libelle_d_acheminement": "TOURNAN EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77820566994, + 48.739865817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73bafb4239db1038643112f58a27b24afade6a3b", + "fields": { + "code_commune_insee": "77485", + "nom_de_la_commune": "LE VAUDOUE", + "code_postal": "77123", + "coordonnees_gps": [ + 48.3471336431, + 2.52187638095 + ], + "libelle_d_acheminement": "LE VAUDOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52187638095, + 48.3471336431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03fa4c3d1cdf92b0c61353fcfee3e11f2f1b3bb0", + "fields": { + "code_commune_insee": "77486", + "nom_de_la_commune": "VAUDOY EN BRIE", + "code_postal": "77141", + "coordonnees_gps": [ + 48.6975609206, + 3.08246340296 + ], + "libelle_d_acheminement": "VAUDOY EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08246340296, + 48.6975609206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acc56384cf946fb5c78cda0f7e3e8b6cc1a16b98", + "fields": { + "code_commune_insee": "77489", + "nom_de_la_commune": "VAUX SUR LUNAIN", + "code_postal": "77710", + "coordonnees_gps": [ + 48.2172127701, + 2.95608687154 + ], + "libelle_d_acheminement": "VAUX SUR LUNAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95608687154, + 48.2172127701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0550969d7ebe2b8621e3c713e6e4a4fed5548929", + "fields": { + "code_commune_insee": "77513", + "nom_de_la_commune": "VILLENOY", + "code_postal": "77124", + "coordonnees_gps": [ + 48.9414484528, + 2.85149852192 + ], + "libelle_d_acheminement": "VILLENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85149852192, + 48.9414484528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b42c6215b0be743efd997df86bd370e6ea61b43", + "fields": { + "code_commune_insee": "77515", + "nom_de_la_commune": "VILLEROY", + "code_postal": "77410", + "coordonnees_gps": [ + 48.9824706589, + 2.78307266843 + ], + "libelle_d_acheminement": "VILLEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78307266843, + 48.9824706589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7976247aa032d0bc8b9431b7ada809193cf28be6", + "fields": { + "code_commune_insee": "77519", + "nom_de_la_commune": "VILLIERS ST GEORGES", + "code_postal": "77560", + "coordonnees_gps": [ + 48.6516910276, + 3.40775745476 + ], + "libelle_d_acheminement": "VILLIERS ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40775745476, + 48.6516910276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ea8fd6054039ea80f5f8ea1fd4fd809b5bc0444", + "fields": { + "code_commune_insee": "77520", + "nom_de_la_commune": "VILLIERS SOUS GREZ", + "code_postal": "77760", + "coordonnees_gps": [ + 48.3144333448, + 2.6391835166 + ], + "libelle_d_acheminement": "VILLIERS SOUS GREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6391835166, + 48.3144333448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea9191eb5abc9b4f477b04329f52c69f970023c4", + "fields": { + "code_commune_insee": "77525", + "nom_de_la_commune": "VINANTES", + "code_postal": "77230", + "coordonnees_gps": [ + 49.0033668902, + 2.73993236891 + ], + "libelle_d_acheminement": "VINANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73993236891, + 49.0033668902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4226f6a463c975f67f12b74873acecc9d2332b3", + "fields": { + "code_commune_insee": "77530", + "nom_de_la_commune": "VOULTON", + "code_postal": "77560", + "coordonnees_gps": [ + 48.6116398027, + 3.3397616891 + ], + "libelle_d_acheminement": "VOULTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3397616891, + 48.6116398027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "995c8846e35b60015f64a939d1572dc3d55695f1", + "fields": { + "code_commune_insee": "77531", + "nom_de_la_commune": "VOULX", + "code_postal": "77940", + "coordonnees_gps": [ + 48.2852061062, + 2.96998252338 + ], + "libelle_d_acheminement": "VOULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96998252338, + 48.2852061062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07756484f3bbe93879b9cc3555c6478f6a9cd239", + "fields": { + "code_commune_insee": "78003", + "nom_de_la_commune": "ABLIS", + "code_postal": "78660", + "coordonnees_gps": [ + 48.5283257707, + 1.85096499421 + ], + "libelle_d_acheminement": "ABLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85096499421, + 48.5283257707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85d55e82cfc9f8a29b515753194cd966ae64a8cf", + "fields": { + "ligne_5": "ELISABETHVILLE", + "code_commune_insee": "78029", + "libelle_d_acheminement": "AUBERGENVILLE", + "code_postal": "78410", + "nom_de_la_commune": "AUBERGENVILLE", + "coordonnees_gps": [ + 48.9626916321, + 1.84870251915 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84870251915, + 48.9626916321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d48ce279dc4084297a583d46269abae1751b0b60", + "fields": { + "code_commune_insee": "78030", + "nom_de_la_commune": "AUFFARGIS", + "code_postal": "78610", + "coordonnees_gps": [ + 48.6842952632, + 1.90243823035 + ], + "libelle_d_acheminement": "AUFFARGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90243823035, + 48.6842952632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e02137e9169392d9d4ae4f449c7d77c07c4bccf5", + "fields": { + "code_commune_insee": "78036", + "nom_de_la_commune": "AUTOUILLET", + "code_postal": "78770", + "coordonnees_gps": [ + 48.8439307646, + 1.79700207496 + ], + "libelle_d_acheminement": "AUTOUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79700207496, + 48.8439307646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e76b8bc777149e8c1b73d5026094482b864c6a6", + "fields": { + "code_commune_insee": "78043", + "nom_de_la_commune": "BAILLY", + "code_postal": "78870", + "coordonnees_gps": [ + 48.8366896896, + 2.08067809572 + ], + "libelle_d_acheminement": "BAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08067809572, + 48.8366896896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "696388dd49093051423ced5f58055b0f7fc617f8", + "fields": { + "code_commune_insee": "78057", + "nom_de_la_commune": "BENNECOURT", + "code_postal": "78270", + "coordonnees_gps": [ + 49.0479974948, + 1.57232432462 + ], + "libelle_d_acheminement": "BENNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57232432462, + 49.0479974948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1d7ab44ad2ee739e819739a398458958bc57259", + "fields": { + "code_commune_insee": "78068", + "nom_de_la_commune": "BLARU", + "code_postal": "78270", + "coordonnees_gps": [ + 49.0407915695, + 1.48063662849 + ], + "libelle_d_acheminement": "BLARU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48063662849, + 49.0407915695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81a32cbe46a3fda614b15393963a9e52fdc21131", + "fields": { + "code_commune_insee": "78096", + "nom_de_la_commune": "BOURDONNE", + "code_postal": "78113", + "coordonnees_gps": [ + 48.7543239729, + 1.65394025504 + ], + "libelle_d_acheminement": "BOURDONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65394025504, + 48.7543239729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00ddcb6965a2cbc49b8f572269587fc195258a2a", + "fields": { + "code_commune_insee": "78107", + "nom_de_la_commune": "BREVAL", + "code_postal": "78980", + "coordonnees_gps": [ + 48.9549709174, + 1.54155385963 + ], + "libelle_d_acheminement": "BREVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54155385963, + 48.9549709174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6d0fcba98af339a4c946cb3d09d5de67efc46b6", + "fields": { + "code_commune_insee": "78113", + "nom_de_la_commune": "BRUEIL EN VEXIN", + "code_postal": "78440", + "coordonnees_gps": [ + 49.0264206637, + 1.81316986042 + ], + "libelle_d_acheminement": "BRUEIL EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81316986042, + 49.0264206637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14ad1e756532e828db0bc2a8f79b133797648391", + "fields": { + "code_commune_insee": "78117", + "nom_de_la_commune": "BUC", + "code_postal": "78530", + "coordonnees_gps": [ + 48.7718338876, + 2.12394286717 + ], + "libelle_d_acheminement": "BUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12394286717, + 48.7718338876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4a23aaee1a4f1b8a8e24f5649c498422fea1657", + "fields": { + "code_commune_insee": "78124", + "nom_de_la_commune": "CARRIERES SUR SEINE", + "code_postal": "78420", + "coordonnees_gps": [ + 48.9119335064, + 2.17838235323 + ], + "libelle_d_acheminement": "CARRIERES SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17838235323, + 48.9119335064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7ad5f023b3a8af7849bd57d43ff3c2885d094f9", + "fields": { + "code_commune_insee": "78126", + "nom_de_la_commune": "LA CELLE ST CLOUD", + "code_postal": "78170", + "coordonnees_gps": [ + 48.8469487124, + 2.13519126228 + ], + "libelle_d_acheminement": "LA CELLE ST CLOUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13519126228, + 48.8469487124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea8865c0d11f966ba1f70ec787729b5cc860bcd6", + "fields": { + "ligne_5": "PARLY", + "code_commune_insee": "78158", + "libelle_d_acheminement": "LE CHESNAY ROCQUENCOURT", + "code_postal": "78150", + "nom_de_la_commune": "LE CHESNAY ROCQUENCOURT", + "coordonnees_gps": [ + 48.8272397742, + 2.13014908209 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13014908209, + 48.8272397742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97c35bd45a4477e53ed48ee377d51dea7c76ba3a", + "fields": { + "code_commune_insee": "78160", + "nom_de_la_commune": "CHEVREUSE", + "code_postal": "78460", + "coordonnees_gps": [ + 48.707150143, + 2.03714431459 + ], + "libelle_d_acheminement": "CHEVREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03714431459, + 48.707150143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "159c9a33c8524427641122137bfc59542503d1bb", + "fields": { + "code_commune_insee": "78164", + "nom_de_la_commune": "CLAIREFONTAINE EN YVELINES", + "code_postal": "78120", + "coordonnees_gps": [ + 48.6167741818, + 1.90638035997 + ], + "libelle_d_acheminement": "CLAIREFONTAINE EN YVELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90638035997, + 48.6167741818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f60525a6ea156d704ce601ff56a2aac757349d5", + "fields": { + "code_commune_insee": "78188", + "nom_de_la_commune": "CRAVENT", + "code_postal": "78270", + "coordonnees_gps": [ + 48.9895744703, + 1.48459959094 + ], + "libelle_d_acheminement": "CRAVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48459959094, + 48.9895744703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ab9164ec36533ba876702bdd4a96c7fa5e98e40", + "fields": { + "code_commune_insee": "78190", + "nom_de_la_commune": "CROISSY SUR SEINE", + "code_postal": "78290", + "coordonnees_gps": [ + 48.8787825592, + 2.13541164589 + ], + "libelle_d_acheminement": "CROISSY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13541164589, + 48.8787825592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0428cec23dfccdfc3884441d2ea1fa2ec57d5326", + "fields": { + "ligne_5": "ST HUBERT LE ROI", + "code_commune_insee": "78220", + "libelle_d_acheminement": "LES ESSARTS LE ROI", + "code_postal": "78690", + "nom_de_la_commune": "LES ESSARTS LE ROI", + "coordonnees_gps": [ + 48.716019265, + 1.8952517006 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8952517006, + 48.716019265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54b7976275dfb2cf33f785724be485a9387c1846", + "fields": { + "code_commune_insee": "78231", + "nom_de_la_commune": "FAVRIEUX", + "code_postal": "78200", + "coordonnees_gps": [ + 48.9448446994, + 1.64166996008 + ], + "libelle_d_acheminement": "FAVRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64166996008, + 48.9448446994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b46f9f9def780114c0553f4519cdec819ecd0184", + "fields": { + "code_commune_insee": "78234", + "nom_de_la_commune": "FLACOURT", + "code_postal": "78200", + "coordonnees_gps": [ + 48.9323338229, + 1.64260422917 + ], + "libelle_d_acheminement": "FLACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64260422917, + 48.9323338229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c48799793bc8485918d0c7aab2616d1932b9ca1", + "fields": { + "code_commune_insee": "78261", + "nom_de_la_commune": "GAILLON SUR MONTCIENT", + "code_postal": "78250", + "coordonnees_gps": [ + 49.0298577394, + 1.89797446964 + ], + "libelle_d_acheminement": "GAILLON SUR MONTCIENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89797446964, + 49.0298577394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c807f96d0896ca1d5fca28cfdadbdf1e44b15046", + "fields": { + "code_commune_insee": "78289", + "nom_de_la_commune": "GROSROUVRE", + "code_postal": "78490", + "coordonnees_gps": [ + 48.7803262238, + 1.75722546892 + ], + "libelle_d_acheminement": "GROSROUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75722546892, + 48.7803262238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6246c217a21a797ad1095ac8963463b1b47cc9fb", + "fields": { + "code_commune_insee": "78290", + "nom_de_la_commune": "GUERNES", + "code_postal": "78520", + "coordonnees_gps": [ + 49.0153671856, + 1.64238528866 + ], + "libelle_d_acheminement": "GUERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64238528866, + 49.0153671856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2564a35e4f80de792452507dbd8780a1b429236c", + "fields": { + "code_commune_insee": "78302", + "nom_de_la_commune": "LA HAUTEVILLE", + "code_postal": "78113", + "coordonnees_gps": [ + 48.7048932149, + 1.62739461782 + ], + "libelle_d_acheminement": "LA HAUTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62739461782, + 48.7048932149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa67c073ab26b32b88f08ec6b532e9649c78ad1f", + "fields": { + "code_commune_insee": "78310", + "nom_de_la_commune": "HOUDAN", + "code_postal": "78550", + "coordonnees_gps": [ + 48.7988973157, + 1.59677099646 + ], + "libelle_d_acheminement": "HOUDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59677099646, + 48.7988973157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c515629ed9fe8aaffe1b93233713191f32e0caeb", + "fields": { + "code_commune_insee": "78334", + "nom_de_la_commune": "LEVIS ST NOM", + "code_postal": "78320", + "coordonnees_gps": [ + 48.7266074685, + 1.93544246617 + ], + "libelle_d_acheminement": "LEVIS ST NOM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93544246617, + 48.7266074685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3695753fd4d286f2caa4499f1c7a4112136a6b95", + "fields": { + "code_commune_insee": "78344", + "nom_de_la_commune": "LOMMOYE", + "code_postal": "78270", + "coordonnees_gps": [ + 48.9973952578, + 1.51644406225 + ], + "libelle_d_acheminement": "LOMMOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51644406225, + 48.9973952578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d01b29c3918964bee36188e254ee07be093c47c3", + "fields": { + "code_commune_insee": "78350", + "nom_de_la_commune": "LOUVECIENNES", + "code_postal": "78430", + "coordonnees_gps": [ + 48.8590188206, + 2.11364039022 + ], + "libelle_d_acheminement": "LOUVECIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11364039022, + 48.8590188206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d885ac9cc37a07161ec064048cbe4ec10a6e55c4", + "fields": { + "code_commune_insee": "78354", + "nom_de_la_commune": "MAGNANVILLE", + "code_postal": "78200", + "coordonnees_gps": [ + 48.9681925896, + 1.68567158514 + ], + "libelle_d_acheminement": "MAGNANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68567158514, + 48.9681925896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "688f0f459dd8ff3d985733b029e1fe6c50f8f09b", + "fields": { + "code_commune_insee": "78356", + "nom_de_la_commune": "MAGNY LES HAMEAUX", + "code_postal": "78114", + "coordonnees_gps": [ + 48.7410207273, + 2.0519793397 + ], + "libelle_d_acheminement": "MAGNY LES HAMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0519793397, + 48.7410207273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7b26d5f3a4dd1ff3bd38e5410d085faeef35428", + "fields": { + "code_commune_insee": "78364", + "nom_de_la_commune": "MARCQ", + "code_postal": "78770", + "coordonnees_gps": [ + 48.8642310591, + 1.82382085659 + ], + "libelle_d_acheminement": "MARCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82382085659, + 48.8642310591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5d8f5a6edc5f3005982d54a6c1bba9d86be3912", + "fields": { + "code_commune_insee": "78367", + "nom_de_la_commune": "MAREIL MARLY", + "code_postal": "78750", + "coordonnees_gps": [ + 48.8807836526, + 2.07668355901 + ], + "libelle_d_acheminement": "MAREIL MARLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07668355901, + 48.8807836526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74e41811c5494bf9ee9afe30d89c7662185443e6", + "fields": { + "code_commune_insee": "78382", + "nom_de_la_commune": "MAURECOURT", + "code_postal": "78780", + "coordonnees_gps": [ + 48.998753885, + 2.05297771853 + ], + "libelle_d_acheminement": "MAURECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05297771853, + 48.998753885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3322df22f221ef2ce69d63b6c75d63ecf738de0c", + "fields": { + "code_commune_insee": "78383", + "nom_de_la_commune": "MAUREPAS", + "code_postal": "78310", + "coordonnees_gps": [ + 48.7698393561, + 1.92404037065 + ], + "libelle_d_acheminement": "MAUREPAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92404037065, + 48.7698393561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60780e9dd3c539db09972183589a1a5b144cdd59", + "fields": { + "code_commune_insee": "78407", + "nom_de_la_commune": "MITTAINVILLE", + "code_postal": "78125", + "coordonnees_gps": [ + 48.6632271873, + 1.63564999259 + ], + "libelle_d_acheminement": "MITTAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63564999259, + 48.6632271873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b46bf5cca73e5fc4bcc94f4da8d6c71667660f1", + "fields": { + "code_commune_insee": "78410", + "nom_de_la_commune": "MOISSON", + "code_postal": "78840", + "coordonnees_gps": [ + 49.0682573401, + 1.66415011183 + ], + "libelle_d_acheminement": "MOISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66415011183, + 49.0682573401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be8b278aa463e38db0582b7dbcca3416cffee5ab", + "fields": { + "code_commune_insee": "78413", + "nom_de_la_commune": "MONDREVILLE", + "code_postal": "78980", + "coordonnees_gps": [ + 48.9042583015, + 1.55787016876 + ], + "libelle_d_acheminement": "MONDREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55787016876, + 48.9042583015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84307775b426b1908cc79c18479b18c6c87372db", + "fields": { + "code_commune_insee": "78418", + "nom_de_la_commune": "MONTESSON", + "code_postal": "78360", + "coordonnees_gps": [ + 48.9172263937, + 2.1399267913 + ], + "libelle_d_acheminement": "MONTESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1399267913, + 48.9172263937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d41e3286bdfda946aebc4b458ed82b785d3829d9", + "fields": { + "code_commune_insee": "78439", + "nom_de_la_commune": "MULCENT", + "code_postal": "78790", + "coordonnees_gps": [ + 48.8784123632, + 1.65209205778 + ], + "libelle_d_acheminement": "MULCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65209205778, + 48.8784123632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81d12155f57cd272f8b2159ab528d92a00ce58b6", + "fields": { + "code_commune_insee": "78444", + "nom_de_la_commune": "NEAUPHLETTE", + "code_postal": "78980", + "coordonnees_gps": [ + 48.935347635, + 1.54227113276 + ], + "libelle_d_acheminement": "NEAUPHLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54227113276, + 48.935347635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "927df93528ef41c424a420cf7e09a1efaf57e5b4", + "fields": { + "code_commune_insee": "78455", + "nom_de_la_commune": "NOISY LE ROI", + "code_postal": "78590", + "coordonnees_gps": [ + 48.8465154476, + 2.05479110499 + ], + "libelle_d_acheminement": "NOISY LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05479110499, + 48.8465154476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "813a63262d06fac961b0f6c465e2e3ff25b5c73f", + "fields": { + "code_commune_insee": "78466", + "nom_de_la_commune": "ORGEVAL", + "code_postal": "78630", + "coordonnees_gps": [ + 48.9164887331, + 1.96928773573 + ], + "libelle_d_acheminement": "ORGEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96928773573, + 48.9164887331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "401e657b4b21012417482f69fb4db464623b90a2", + "fields": { + "code_commune_insee": "78470", + "nom_de_la_commune": "ORPHIN", + "code_postal": "78125", + "coordonnees_gps": [ + 48.5760592256, + 1.78299740529 + ], + "libelle_d_acheminement": "ORPHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78299740529, + 48.5760592256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "222a947d99ac033b3e00bf69c473b65587a81877", + "fields": { + "code_commune_insee": "78478", + "nom_de_la_commune": "PARAY DOUAVILLE", + "code_postal": "78660", + "coordonnees_gps": [ + 48.4599663329, + 1.86291670006 + ], + "libelle_d_acheminement": "PARAY DOUAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86291670006, + 48.4599663329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bee2cd35e6a63c2e2c05d5618c3dc75f824ba28b", + "fields": { + "code_commune_insee": "78486", + "nom_de_la_commune": "LE PERRAY EN YVELINES", + "code_postal": "78610", + "coordonnees_gps": [ + 48.6968018136, + 1.84356131142 + ], + "libelle_d_acheminement": "LE PERRAY EN YVELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84356131142, + 48.6968018136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc4be0a5478a6abe871d86bff83333e42bc5cf8a", + "fields": { + "code_commune_insee": "78490", + "nom_de_la_commune": "PLAISIR", + "code_postal": "78370", + "coordonnees_gps": [ + 48.8126082296, + 1.94698515715 + ], + "libelle_d_acheminement": "PLAISIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94698515715, + 48.8126082296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e179da276f89d2e7ad36ff185b8a5289eb16d4be", + "fields": { + "code_commune_insee": "78505", + "nom_de_la_commune": "PRUNAY LE TEMPLE", + "code_postal": "78910", + "coordonnees_gps": [ + 48.8592898143, + 1.67130114666 + ], + "libelle_d_acheminement": "PRUNAY LE TEMPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67130114666, + 48.8592898143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a5abbd95e89c554148053039908c76877a375d3", + "fields": { + "ligne_5": "CRACHES", + "code_commune_insee": "78506", + "libelle_d_acheminement": "PRUNAY EN YVELINES", + "code_postal": "78660", + "nom_de_la_commune": "PRUNAY EN YVELINES", + "coordonnees_gps": [ + 48.5267627187, + 1.80513972814 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80513972814, + 48.5267627187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea960d2404c98019b80a8809e6712752ab8f8c2d", + "fields": { + "code_commune_insee": "78513", + "nom_de_la_commune": "LA QUEUE LES YVELINES", + "code_postal": "78940", + "coordonnees_gps": [ + 48.8027893482, + 1.76744000641 + ], + "libelle_d_acheminement": "LA QUEUE LES YVELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76744000641, + 48.8027893482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cc5f0da5ea882bfe180300221a2b31d85dc22d2", + "fields": { + "code_commune_insee": "78522", + "nom_de_la_commune": "ROCHEFORT EN YVELINES", + "code_postal": "78730", + "coordonnees_gps": [ + 48.5924280148, + 1.97977823093 + ], + "libelle_d_acheminement": "ROCHEFORT EN YVELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97977823093, + 48.5924280148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb6b0cff03050c6adbbda139a0446ac200326723", + "fields": { + "code_commune_insee": "78530", + "nom_de_la_commune": "ROSAY", + "code_postal": "78790", + "coordonnees_gps": [ + 48.9113105941, + 1.68395914645 + ], + "libelle_d_acheminement": "ROSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68395914645, + 48.9113105941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d170770979f2268eddd1f8aba065d8577e946efd", + "fields": { + "code_commune_insee": "78531", + "nom_de_la_commune": "ROSNY SUR SEINE", + "code_postal": "78710", + "coordonnees_gps": [ + 48.9964226633, + 1.60820077392 + ], + "libelle_d_acheminement": "ROSNY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60820077392, + 48.9964226633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de416d941d19b9e06d4d225126a5175dc9e0d40a", + "fields": { + "code_commune_insee": "78537", + "nom_de_la_commune": "ST ARNOULT EN YVELINES", + "code_postal": "78730", + "coordonnees_gps": [ + 48.5725220079, + 1.93463847942 + ], + "libelle_d_acheminement": "ST ARNOULT EN YVELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93463847942, + 48.5725220079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7084d232acb9f2d7808eb9930a6f789c050d1e5a", + "fields": { + "code_commune_insee": "78558", + "nom_de_la_commune": "ST ILLIERS LA VILLE", + "code_postal": "78980", + "coordonnees_gps": [ + 48.9776264452, + 1.5442103419 + ], + "libelle_d_acheminement": "ST ILLIERS LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5442103419, + 48.9776264452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "508df57c2306650e7ecb8dc23c97797a81b81349", + "fields": { + "code_commune_insee": "78564", + "nom_de_la_commune": "ST MARTIN DE BRETHENCOURT", + "code_postal": "78660", + "coordonnees_gps": [ + 48.5148592192, + 1.91568171795 + ], + "libelle_d_acheminement": "ST MARTIN DE BRETHENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91568171795, + 48.5148592192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4d170271b1cd7e83488e35413be36820d6368a8", + "fields": { + "code_commune_insee": "78571", + "nom_de_la_commune": "ST NOM LA BRETECHE", + "code_postal": "78860", + "coordonnees_gps": [ + 48.8634050098, + 2.01915428049 + ], + "libelle_d_acheminement": "ST NOM LA BRETECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01915428049, + 48.8634050098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf9851d210c95d5aa39809b1d974c8b27a01fb45", + "fields": { + "code_commune_insee": "78576", + "nom_de_la_commune": "ST REMY L HONORE", + "code_postal": "78690", + "coordonnees_gps": [ + 48.7487507773, + 1.87573805831 + ], + "libelle_d_acheminement": "ST REMY L HONORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87573805831, + 48.7487507773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65fca7c60367d027f73f0e9bc005a787cd175e22", + "fields": { + "code_commune_insee": "78597", + "nom_de_la_commune": "SOINDRES", + "code_postal": "78200", + "coordonnees_gps": [ + 48.9535424225, + 1.67168350661 + ], + "libelle_d_acheminement": "SOINDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67168350661, + 48.9535424225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bc1e53d37af68f4487499b79294431f1619fc9d", + "fields": { + "code_commune_insee": "78615", + "nom_de_la_commune": "THIVERVAL GRIGNON", + "code_postal": "78850", + "coordonnees_gps": [ + 48.8442697487, + 1.93387158899 + ], + "libelle_d_acheminement": "THIVERVAL GRIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93387158899, + 48.8442697487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ff486762226247afa3e7401d34125563d4ac1f1", + "fields": { + "ligne_5": "CHEVERCHEMONT", + "code_commune_insee": "78624", + "libelle_d_acheminement": "TRIEL SUR SEINE", + "code_postal": "78510", + "nom_de_la_commune": "TRIEL SUR SEINE", + "coordonnees_gps": [ + 48.9780282513, + 2.00877051663 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00877051663, + 48.9780282513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52e988c1759c7d582279ebdf98242847ffe95444", + "fields": { + "code_commune_insee": "78643", + "nom_de_la_commune": "VERNOUILLET", + "code_postal": "78540", + "coordonnees_gps": [ + 48.9655697167, + 1.97530302109 + ], + "libelle_d_acheminement": "VERNOUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97530302109, + 48.9655697167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c1aa79b4f90d41fe684c2acc031f0d473961246", + "fields": { + "code_commune_insee": "78644", + "nom_de_la_commune": "LA VERRIERE", + "code_postal": "78320", + "coordonnees_gps": [ + 48.7545862133, + 1.95133109322 + ], + "libelle_d_acheminement": "LA VERRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95133109322, + 48.7545862133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d05a13f08c5e247367590105683964001723792d", + "fields": { + "code_commune_insee": "78646", + "nom_de_la_commune": "VERSAILLES", + "code_postal": "78000", + "coordonnees_gps": [ + 48.8025669671, + 2.11789297191 + ], + "libelle_d_acheminement": "VERSAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11789297191, + 48.8025669671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab2719a4964fbae918238270988924c00ebf3e40", + "fields": { + "code_commune_insee": "78647", + "nom_de_la_commune": "VERT", + "code_postal": "78930", + "coordonnees_gps": [ + 48.9403014358, + 1.68320274306 + ], + "libelle_d_acheminement": "VERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68320274306, + 48.9403014358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c27fd567310ea66853a7b6245bb8bf076a220fe", + "fields": { + "code_commune_insee": "78668", + "nom_de_la_commune": "LA VILLENEUVE EN CHEVRIE", + "code_postal": "78270", + "coordonnees_gps": [ + 49.0171283911, + 1.53111618568 + ], + "libelle_d_acheminement": "LA VILLENEUVE EN CHEVRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53111618568, + 49.0171283911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2919f4e4c4f91ebf6befa636241500432b30b5f5", + "fields": { + "code_commune_insee": "78672", + "nom_de_la_commune": "VILLENNES SUR SEINE", + "code_postal": "78670", + "coordonnees_gps": [ + 48.9368195223, + 1.99586527491 + ], + "libelle_d_acheminement": "VILLENNES SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99586527491, + 48.9368195223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b36248dae2d5d2f55cb83f341ab5acbc76ef6f7", + "fields": { + "code_commune_insee": "78686", + "nom_de_la_commune": "VIROFLAY", + "code_postal": "78220", + "coordonnees_gps": [ + 48.802404069, + 2.17151291149 + ], + "libelle_d_acheminement": "VIROFLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17151291149, + 48.802404069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c7d2009578f5ea21a53644b8bf7958d81b865b4", + "fields": { + "code_commune_insee": "79007", + "nom_de_la_commune": "ALLONNE", + "code_postal": "79130", + "coordonnees_gps": [ + 46.5804441397, + -0.38171869398 + ], + "libelle_d_acheminement": "ALLONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38171869398, + 46.5804441397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1139b16b161c80b2b27df42443bb2212bd215efb", + "fields": { + "ligne_5": "SANZAY", + "code_commune_insee": "79013", + "libelle_d_acheminement": "ARGENTONNAY", + "code_postal": "79150", + "nom_de_la_commune": "ARGENTONNAY", + "coordonnees_gps": [ + 46.9784261272, + -0.468875242934 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.468875242934, + 46.9784261272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8371103a83b13d225503f439590b308a2ed2bb3", + "fields": { + "ligne_5": "BOUILLE LORETZ", + "code_commune_insee": "79014", + "libelle_d_acheminement": "LORETZ D ARGENTON", + "code_postal": "79290", + "nom_de_la_commune": "LORETZ D ARGENTON", + "coordonnees_gps": [ + 47.0529717735, + -0.251510808352 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.251510808352, + 47.0529717735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8890b9dff4e8ed23bb46da1d5a4494fe924dd813", + "fields": { + "code_commune_insee": "79016", + "nom_de_la_commune": "ASSAIS LES JUMEAUX", + "code_postal": "79600", + "coordonnees_gps": [ + 46.7918233643, + -0.0681160058394 + ], + "libelle_d_acheminement": "ASSAIS LES JUMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0681160058394, + 46.7918233643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "144c8759d16a1b8d04b8ea795a3be445a36ec12a", + "fields": { + "code_commune_insee": "79020", + "nom_de_la_commune": "AUGE", + "code_postal": "79400", + "coordonnees_gps": [ + 46.4497619282, + -0.288817537299 + ], + "libelle_d_acheminement": "AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.288817537299, + 46.4497619282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f987996c7f6ac894021eca4be40b2534289edec", + "fields": { + "code_commune_insee": "79023", + "nom_de_la_commune": "AVON", + "code_postal": "79800", + "coordonnees_gps": [ + 46.3723048467, + 0.00235793629943 + ], + "libelle_d_acheminement": "AVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00235793629943, + 46.3723048467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f50799b01f9440d850f44727d3bb43313170e03", + "fields": { + "ligne_5": "VITRE", + "code_commune_insee": "79030", + "libelle_d_acheminement": "BEAUSSAIS VITRE", + "code_postal": "79370", + "nom_de_la_commune": "BEAUSSAIS VITRE", + "coordonnees_gps": [ + 46.2826295796, + -0.154592535008 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.154592535008, + 46.2826295796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2281cab5597406f1a4ad79cc6733f976d872872", + "fields": { + "ligne_5": "LE CORMENIER", + "code_commune_insee": "79031", + "libelle_d_acheminement": "BEAUVOIR SUR NIORT", + "code_postal": "79360", + "nom_de_la_commune": "BEAUVOIR SUR NIORT", + "coordonnees_gps": [ + 46.180941644, + -0.473314553431 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.473314553431, + 46.180941644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7e5ba06d80dd9733a0d295afff90da5c2d96350", + "fields": { + "code_commune_insee": "79040", + "nom_de_la_commune": "LA BOISSIERE EN GATINE", + "code_postal": "79310", + "coordonnees_gps": [ + 46.5484127409, + -0.381035769407 + ], + "libelle_d_acheminement": "LA BOISSIERE EN GATINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.381035769407, + 46.5484127409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fec8d4cfbbca64638d9aab1bc346b85c37bb572", + "fields": { + "code_commune_insee": "79056", + "nom_de_la_commune": "BRION PRES THOUET", + "code_postal": "79290", + "coordonnees_gps": [ + 47.0500287565, + -0.188112073906 + ], + "libelle_d_acheminement": "BRION PRES THOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.188112073906, + 47.0500287565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52040a1c5a8186bd7f9ea42aebf24604ec0fe711", + "fields": { + "code_commune_insee": "79058", + "nom_de_la_commune": "BRULAIN", + "code_postal": "79230", + "coordonnees_gps": [ + 46.2053327297, + -0.314279915986 + ], + "libelle_d_acheminement": "BRULAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.314279915986, + 46.2053327297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e77ac3be11dc301ef44460b7f31416c263698b5", + "fields": { + "code_commune_insee": "79059", + "nom_de_la_commune": "LE BUSSEAU", + "code_postal": "79240", + "coordonnees_gps": [ + 46.5831261391, + -0.594466016248 + ], + "libelle_d_acheminement": "LE BUSSEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.594466016248, + 46.5831261391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bd9edb3f9828d335f2687c5a3b4a97fc175838e", + "fields": { + "ligne_5": "CERSAY", + "code_commune_insee": "79063", + "libelle_d_acheminement": "VAL EN VIGNES", + "code_postal": "79290", + "nom_de_la_commune": "VAL EN VIGNES", + "coordonnees_gps": [ + 47.0601100117, + -0.36392979915 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36392979915, + 47.0601100117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ae23142a7abb219a94bf04fb7e1f2ca6bb685a5", + "fields": { + "code_commune_insee": "79066", + "nom_de_la_commune": "CHAMPDENIERS", + "code_postal": "79220", + "coordonnees_gps": [ + 46.48017177, + -0.38233277532 + ], + "libelle_d_acheminement": "CHAMPDENIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38233277532, + 46.48017177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e706d7d5ff4655f13b61c5b81b0baecc5b7b772", + "fields": { + "ligne_5": "CHAMPEAUX", + "code_commune_insee": "79066", + "libelle_d_acheminement": "CHAMPDENIERS", + "code_postal": "79220", + "nom_de_la_commune": "CHAMPDENIERS", + "coordonnees_gps": [ + 46.48017177, + -0.38233277532 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38233277532, + 46.48017177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1e1fd641fb4fa3f89310bf9fcff6d0d9886a3e5", + "fields": { + "ligne_5": "PRISSE LA CHARRIERE", + "code_commune_insee": "79078", + "libelle_d_acheminement": "PLAINE D ARGENSON", + "code_postal": "79360", + "nom_de_la_commune": "PLAINE D ARGENSON", + "coordonnees_gps": [ + 46.1506834964, + -0.48413782937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48413782937, + 46.1506834964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39b352f21655e46c0a5c5939a8846b1f684cd14b", + "fields": { + "code_commune_insee": "79079", + "nom_de_la_commune": "MAULEON", + "code_postal": "79700", + "coordonnees_gps": [ + 46.946804716, + -0.747142973233 + ], + "libelle_d_acheminement": "MAULEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.747142973233, + 46.946804716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6056e602e8a3c5764ce620d81ed13adee623c6e", + "fields": { + "ligne_5": "LA CHAPELLE LARGEAU", + "code_commune_insee": "79079", + "libelle_d_acheminement": "MAULEON", + "code_postal": "79700", + "nom_de_la_commune": "MAULEON", + "coordonnees_gps": [ + 46.946804716, + -0.747142973233 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.747142973233, + 46.946804716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "325dad3aafb39dea03b34c615620da4c57a909bb", + "fields": { + "ligne_5": "MOULINS", + "code_commune_insee": "79079", + "libelle_d_acheminement": "MAULEON", + "code_postal": "79700", + "nom_de_la_commune": "MAULEON", + "coordonnees_gps": [ + 46.946804716, + -0.747142973233 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.747142973233, + 46.946804716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47b2591928d0d4d3c18cb33d0cf11f1e56afc066", + "fields": { + "ligne_5": "LA BATAILLE", + "code_commune_insee": "79083", + "libelle_d_acheminement": "CHEF BOUTONNE", + "code_postal": "79110", + "nom_de_la_commune": "CHEF BOUTONNE", + "coordonnees_gps": [ + 46.1151550061, + -0.081086313145 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.081086313145, + 46.1151550061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fcaecc94bccf9d42f8e5ef05fbcb78091092662", + "fields": { + "code_commune_insee": "79104", + "nom_de_la_commune": "COURS", + "code_postal": "79220", + "coordonnees_gps": [ + 46.5023506712, + -0.415189139601 + ], + "libelle_d_acheminement": "COURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.415189139601, + 46.5023506712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f96995f50a2deaf0057b59c4f87386a591fbbce", + "fields": { + "ligne_5": "CHANTECORPS", + "code_commune_insee": "79105", + "libelle_d_acheminement": "LES CHATELIERS", + "code_postal": "79340", + "nom_de_la_commune": "LES CHATELIERS", + "coordonnees_gps": [ + 46.4989423539, + -0.107332373635 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.107332373635, + 46.4989423539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f535c36ec1908cc138b730dfa3bad8758bbc27bc", + "fields": { + "code_commune_insee": "79116", + "nom_de_la_commune": "FAYE L ABBESSE", + "code_postal": "79350", + "coordonnees_gps": [ + 46.8344255301, + -0.343663613449 + ], + "libelle_d_acheminement": "FAYE L ABBESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.343663613449, + 46.8344255301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc3e74084cc5f8bc05397486363d36cfed33b1bf", + "fields": { + "code_commune_insee": "79122", + "nom_de_la_commune": "FONTENILLE ST MARTIN D ENTRAIGUES", + "code_postal": "79110", + "coordonnees_gps": [ + 46.1121201701, + -0.132411224833 + ], + "libelle_d_acheminement": "FONTENILLE ST MARTIN ENTRAIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.132411224833, + 46.1121201701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1121314a9c483f3af3b303acc9cb50ab2def03b", + "fields": { + "code_commune_insee": "79128", + "nom_de_la_commune": "FRANCOIS", + "code_postal": "79260", + "coordonnees_gps": [ + 46.3822106449, + -0.344073409629 + ], + "libelle_d_acheminement": "FRANCOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.344073409629, + 46.3822106449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f2ec7e4f556f2ab3c9be0034457ae03301f57ba", + "fields": { + "code_commune_insee": "79131", + "nom_de_la_commune": "GEAY", + "code_postal": "79330", + "coordonnees_gps": [ + 46.8691727621, + -0.348538487123 + ], + "libelle_d_acheminement": "GEAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.348538487123, + 46.8691727621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b783592511743a1cb319bcd3e768d5e57f1719d", + "fields": { + "code_commune_insee": "79133", + "nom_de_la_commune": "GERMOND ROUVRE", + "code_postal": "79220", + "coordonnees_gps": [ + 46.450571365, + -0.418072751644 + ], + "libelle_d_acheminement": "GERMOND ROUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.418072751644, + 46.450571365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4220b30cdb8608a2569eb49ddfb9a9bb13ac5a7", + "fields": { + "ligne_5": "LES ALLEUDS", + "code_commune_insee": "79136", + "libelle_d_acheminement": "ALLOINAY", + "code_postal": "79190", + "nom_de_la_commune": "ALLOINAY", + "coordonnees_gps": [ + 46.1501272552, + -0.0484413702112 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0484413702112, + 46.1501272552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c7e098027c814a1db7d2492641c939a06c72593", + "fields": { + "code_commune_insee": "79147", + "nom_de_la_commune": "LARGEASSE", + "code_postal": "79240", + "coordonnees_gps": [ + 46.6817186542, + -0.514612797017 + ], + "libelle_d_acheminement": "LARGEASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.514612797017, + 46.6817186542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e72bc25bf6d5ac99c35653a63f0131c2fa2aaaeb", + "fields": { + "code_commune_insee": "79153", + "nom_de_la_commune": "LOUBIGNE", + "code_postal": "79110", + "coordonnees_gps": [ + 46.0754688078, + -0.0821508831682 + ], + "libelle_d_acheminement": "LOUBIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0821508831682, + 46.0754688078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "507b974a3f0d5040bd1df9259c47a08c38f03791", + "fields": { + "ligne_5": "ST MARTIN LES MELLE", + "code_commune_insee": "79174", + "libelle_d_acheminement": "MELLE", + "code_postal": "79500", + "nom_de_la_commune": "MELLE", + "coordonnees_gps": [ + 46.2309583731, + -0.147888712984 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.147888712984, + 46.2309583731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "357a39eb716bdeb3b5315d5feb5360c81b6dd46c", + "fields": { + "code_commune_insee": "79175", + "nom_de_la_commune": "MELLERAN", + "code_postal": "79190", + "coordonnees_gps": [ + 46.1300825848, + 0.00534971717862 + ], + "libelle_d_acheminement": "MELLERAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00534971717862, + 46.1300825848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff4c96c49b835c17c58be4daffd9806f57142de4", + "fields": { + "ligne_5": "LA CHAPELLE ST ETIENNE", + "code_commune_insee": "79179", + "libelle_d_acheminement": "MONCOUTANT SUR SEVRE", + "code_postal": "79240", + "nom_de_la_commune": "MONCOUTANT SUR SEVRE", + "coordonnees_gps": [ + 46.7361693715, + -0.578776799054 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.578776799054, + 46.7361693715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37704b7505e5a415c51d62991bc81e3e34297c87", + "fields": { + "code_commune_insee": "79184", + "nom_de_la_commune": "LA MOTHE ST HERAY", + "code_postal": "79800", + "coordonnees_gps": [ + 46.3520802327, + -0.119337575815 + ], + "libelle_d_acheminement": "LA MOTHE ST HERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.119337575815, + 46.3520802327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a16c6e13f7b6ac87b603f4dea83dbc078fb38fca", + "fields": { + "code_commune_insee": "79190", + "nom_de_la_commune": "NEUVY BOUIN", + "code_postal": "79130", + "coordonnees_gps": [ + 46.6807933407, + -0.446564097269 + ], + "libelle_d_acheminement": "NEUVY BOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.446564097269, + 46.6807933407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb38e2958e2c8e4337ff072b8297c752c2fc9373", + "fields": { + "ligne_5": "ST FLORENT", + "code_commune_insee": "79191", + "libelle_d_acheminement": "NIORT", + "code_postal": "79000", + "nom_de_la_commune": "NIORT", + "coordonnees_gps": [ + 46.328260242, + -0.465353019369 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.465353019369, + 46.328260242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8426e1708a12d9b05be1ff732e801ae752cf1a8a", + "fields": { + "ligne_5": "BILAZAIS", + "code_commune_insee": "79196", + "libelle_d_acheminement": "PLAINE ET VALLEES", + "code_postal": "79100", + "nom_de_la_commune": "PLAINE ET VALLEES", + "coordonnees_gps": [ + 46.9369329202, + -0.0842351282064 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0842351282064, + 46.9369329202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f29c0325fe65ee46f69a324c2de6360e92ed93f7", + "fields": { + "code_commune_insee": "79197", + "nom_de_la_commune": "OROUX", + "code_postal": "79390", + "coordonnees_gps": [ + 46.6902823818, + -0.0938579683212 + ], + "libelle_d_acheminement": "OROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0938579683212, + 46.6902823818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a24e7391579e5eb0fbfb77920665f6a07bb30f56", + "fields": { + "ligne_5": "LA COUARDE", + "code_commune_insee": "79217", + "libelle_d_acheminement": "PRAILLES LA COUARDE", + "code_postal": "79800", + "nom_de_la_commune": "PRAILLES LA COUARDE", + "coordonnees_gps": [ + 46.3204184079, + -0.202251534086 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.202251534086, + 46.3204184079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae1d85283c8193f13cc17fa2a6640d2b473ae813", + "fields": { + "code_commune_insee": "79226", + "nom_de_la_commune": "LE RETAIL", + "code_postal": "79130", + "coordonnees_gps": [ + 46.5632946327, + -0.434627531061 + ], + "libelle_d_acheminement": "LE RETAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.434627531061, + 46.5632946327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0179a9eae1913a74a20e08845b2c69317418303e", + "fields": { + "code_commune_insee": "79239", + "nom_de_la_commune": "ST AUBIN LE CLOUD", + "code_postal": "79450", + "coordonnees_gps": [ + 46.6572663301, + -0.342791988653 + ], + "libelle_d_acheminement": "ST AUBIN LE CLOUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.342791988653, + 46.6572663301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f32d6f05932e191b019223d4aceaecff985f20a0", + "fields": { + "ligne_5": "VOULTEGON", + "code_commune_insee": "79242", + "libelle_d_acheminement": "VOULMENTIN", + "code_postal": "79150", + "nom_de_la_commune": "VOULMENTIN", + "coordonnees_gps": [ + 46.960771587, + -0.51496460613 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51496460613, + 46.960771587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e19300fe789a4b0c6515c55edbce46b4740d26b8", + "fields": { + "code_commune_insee": "79243", + "nom_de_la_commune": "ST COUTANT", + "code_postal": "79120", + "coordonnees_gps": [ + 46.2229123339, + 0.00585913479042 + ], + "libelle_d_acheminement": "ST COUTANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00585913479042, + 46.2229123339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ad3332aa7b92f416c13593c8efc033da5813710", + "fields": { + "code_commune_insee": "79249", + "nom_de_la_commune": "ST GELAIS", + "code_postal": "79410", + "coordonnees_gps": [ + 46.3783464917, + -0.388823361913 + ], + "libelle_d_acheminement": "ST GELAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.388823361913, + 46.3783464917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6a0de033d8b7f3e414f7336e8f6952b2b381167", + "fields": { + "code_commune_insee": "79250", + "nom_de_la_commune": "STE GEMME", + "code_postal": "79330", + "coordonnees_gps": [ + 46.8997139729, + -0.282960726169 + ], + "libelle_d_acheminement": "STE GEMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.282960726169, + 46.8997139729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b2b08da6dd932f153a6deabe4a068c20ee7932b", + "fields": { + "ligne_5": "POUFFONDS", + "code_commune_insee": "79251", + "libelle_d_acheminement": "MARCILLE", + "code_postal": "79500", + "nom_de_la_commune": "MARCILLE", + "coordonnees_gps": [ + 46.1863394074, + -0.134327171027 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.134327171027, + 46.1863394074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de65fd6009572abc5caff0d698d9b020e33bd71d", + "fields": { + "code_commune_insee": "79252", + "nom_de_la_commune": "ST GENEROUX", + "code_postal": "79600", + "coordonnees_gps": [ + 46.8857147211, + -0.146137280401 + ], + "libelle_d_acheminement": "ST GENEROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.146137280401, + 46.8857147211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57c91f85e69dd9d593f3e00bb9cdb1b086e45781", + "fields": { + "code_commune_insee": "79257", + "nom_de_la_commune": "ST HILAIRE LA PALUD", + "code_postal": "79210", + "coordonnees_gps": [ + 46.2614944894, + -0.715171830149 + ], + "libelle_d_acheminement": "ST HILAIRE LA PALUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.715171830149, + 46.2614944894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad731c292920e352520accb1c8929c39e949d975", + "fields": { + "code_commune_insee": "79271", + "nom_de_la_commune": "ST MARC LA LANDE", + "code_postal": "79310", + "coordonnees_gps": [ + 46.5253805702, + -0.359877373961 + ], + "libelle_d_acheminement": "ST MARC LA LANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.359877373961, + 46.5253805702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca2c1bb29648df6a03a9bb7c99bd6e96a963a04b", + "fields": { + "code_commune_insee": "79276", + "nom_de_la_commune": "ST MARTIN DE ST MAIXENT", + "code_postal": "79400", + "coordonnees_gps": [ + 46.3892461256, + -0.203596354099 + ], + "libelle_d_acheminement": "ST MARTIN DE ST MAIXENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.203596354099, + 46.3892461256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf3af81010700335c83a4de789a58f88646a39ec", + "fields": { + "ligne_5": "SOUTIERS", + "code_commune_insee": "79285", + "libelle_d_acheminement": "ST PARDOUX SOUTIERS", + "code_postal": "79310", + "nom_de_la_commune": "ST PARDOUX SOUTIERS", + "coordonnees_gps": [ + 46.5770616007, + -0.31674359278 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31674359278, + 46.5770616007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "458defa738c8260ca89b4da3717853ea205cf47e", + "fields": { + "code_commune_insee": "79299", + "nom_de_la_commune": "ST VARENT", + "code_postal": "79330", + "coordonnees_gps": [ + 46.8927639643, + -0.223311639048 + ], + "libelle_d_acheminement": "ST VARENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.223311639048, + 46.8927639643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6f01c87923b0c601a50c934fae2d356924b653a", + "fields": { + "code_commune_insee": "79303", + "nom_de_la_commune": "SALLES", + "code_postal": "79800", + "coordonnees_gps": [ + 46.3878556621, + -0.0976374643512 + ], + "libelle_d_acheminement": "SALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0976374643512, + 46.3878556621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75a8097c048de3912442af4c0790232222d525a8", + "fields": { + "code_commune_insee": "79309", + "nom_de_la_commune": "SCILLE", + "code_postal": "79240", + "coordonnees_gps": [ + 46.5996427928, + -0.556961185783 + ], + "libelle_d_acheminement": "SCILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.556961185783, + 46.5996427928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bb20fbce01dba58f96ddfdead5911e754b61602", + "fields": { + "code_commune_insee": "79319", + "nom_de_la_commune": "SOUVIGNE", + "code_postal": "79800", + "coordonnees_gps": [ + 46.358962328, + -0.170685104329 + ], + "libelle_d_acheminement": "SOUVIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.170685104329, + 46.358962328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c965f38ab435e36783dd86b90c4998cb30560ba", + "fields": { + "ligne_5": "THORIGNY SUR LE MIGNON", + "code_commune_insee": "79334", + "libelle_d_acheminement": "VAL DU MIGNON", + "code_postal": "79360", + "nom_de_la_commune": "VAL DU MIGNON", + "coordonnees_gps": [ + 46.1701185882, + -0.587199474671 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.587199474671, + 46.1701185882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da34bfe171758b38ac36b57e8ac1846228ffdc64", + "fields": { + "code_commune_insee": "79336", + "nom_de_la_commune": "VANCAIS", + "code_postal": "79120", + "coordonnees_gps": [ + 46.3039075076, + 0.0433281606115 + ], + "libelle_d_acheminement": "VANCAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0433281606115, + 46.3039075076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f3085c5e22ee377e219b41af113a2244a250041", + "fields": { + "code_commune_insee": "79339", + "nom_de_la_commune": "VASLES", + "code_postal": "79340", + "coordonnees_gps": [ + 46.5737648617, + -0.0494104571753 + ], + "libelle_d_acheminement": "VASLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0494104571753, + 46.5737648617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41fd63bf64cc99561869ecb150b41ac0b18ab8bc", + "fields": { + "code_commune_insee": "79341", + "nom_de_la_commune": "VAUTEBIS", + "code_postal": "79420", + "coordonnees_gps": [ + 46.5325405622, + -0.153027126045 + ], + "libelle_d_acheminement": "VAUTEBIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.153027126045, + 46.5325405622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11d617cf229edf6bbe3f379011030f22d5423105", + "fields": { + "code_commune_insee": "79342", + "nom_de_la_commune": "VERNOUX EN GATINE", + "code_postal": "79240", + "coordonnees_gps": [ + 46.6226441897, + -0.517127798933 + ], + "libelle_d_acheminement": "VERNOUX EN GATINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.517127798933, + 46.6226441897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "077c09b091e523470eb0a03ba45e64c0936437b9", + "fields": { + "code_commune_insee": "79346", + "nom_de_la_commune": "LE VERT", + "code_postal": "79170", + "coordonnees_gps": [ + 46.1044348487, + -0.398782793634 + ], + "libelle_d_acheminement": "LE VERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.398782793634, + 46.1044348487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2887e89f394ebdc0f5f86f294bb0dc209e460cd9", + "fields": { + "code_commune_insee": "79348", + "nom_de_la_commune": "VILLEFOLLET", + "code_postal": "79170", + "coordonnees_gps": [ + 46.1201543813, + -0.273287814164 + ], + "libelle_d_acheminement": "VILLEFOLLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.273287814164, + 46.1201543813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13e61e7bcb35901012bf5d201ac03ff1955dffc1", + "fields": { + "code_commune_insee": "79350", + "nom_de_la_commune": "VILLIERS EN BOIS", + "code_postal": "79360", + "coordonnees_gps": [ + 46.1418949381, + -0.408815332834 + ], + "libelle_d_acheminement": "VILLIERS EN BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.408815332834, + 46.1418949381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee529971e469c765e54e27893a5f36b2f6c0a334", + "fields": { + "code_commune_insee": "79354", + "nom_de_la_commune": "VOUHE", + "code_postal": "79310", + "coordonnees_gps": [ + 46.5598449488, + -0.25593190505 + ], + "libelle_d_acheminement": "VOUHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25593190505, + 46.5598449488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7124945b95c206eeb7af7aaeb62b2b1ec46254ec", + "fields": { + "code_commune_insee": "79355", + "nom_de_la_commune": "VOUILLE", + "code_postal": "79230", + "coordonnees_gps": [ + 46.3162898992, + -0.356117687455 + ], + "libelle_d_acheminement": "VOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.356117687455, + 46.3162898992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "813c9c2cf07e4d0a51fa7f3d3db9da57fff4b066", + "fields": { + "code_commune_insee": "80005", + "nom_de_la_commune": "AGENVILLE", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1718032322, + 2.10777026695 + ], + "libelle_d_acheminement": "AGENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10777026695, + 50.1718032322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d655bd8af2d86bd2544c9360a4916e7c949bd10e", + "fields": { + "code_commune_insee": "80026", + "nom_de_la_commune": "ARGUEL", + "code_postal": "80140", + "coordonnees_gps": [ + 49.8765831654, + 1.80743667237 + ], + "libelle_d_acheminement": "ARGUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80743667237, + 49.8765831654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06d3549aa273d2db2a87df22db3f3d36123a64bf", + "fields": { + "code_commune_insee": "80035", + "nom_de_la_commune": "AUBERCOURT", + "code_postal": "80110", + "coordonnees_gps": [ + 49.8378941809, + 2.54731400317 + ], + "libelle_d_acheminement": "AUBERCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54731400317, + 49.8378941809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00dddf2e278c871b5e20210ba9a3375add287996", + "fields": { + "code_commune_insee": "80037", + "nom_de_la_commune": "AUBVILLERS", + "code_postal": "80110", + "coordonnees_gps": [ + 49.7085691386, + 2.47932123 + ], + "libelle_d_acheminement": "AUBVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47932123, + 49.7085691386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "172002931461aeac64d1ae2b115479678fcf5d82", + "fields": { + "code_commune_insee": "80043", + "nom_de_la_commune": "AUTHIE", + "code_postal": "80560", + "coordonnees_gps": [ + 50.1184979132, + 2.4915242737 + ], + "libelle_d_acheminement": "AUTHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4915242737, + 50.1184979132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02093ea5a524fbcdd657bd0a7f8fbb6bc3d2c152", + "fields": { + "code_commune_insee": "80046", + "nom_de_la_commune": "AVELESGES", + "code_postal": "80270", + "coordonnees_gps": [ + 49.9032524695, + 1.93185720865 + ], + "libelle_d_acheminement": "AVELESGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93185720865, + 49.9032524695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "010a19ec3141008b632c1e15548e6ed0c49ea39b", + "fields": { + "code_commune_insee": "80049", + "nom_de_la_commune": "AYENCOURT", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6264865136, + 2.55113103063 + ], + "libelle_d_acheminement": "AYENCOURT LE MONCHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55113103063, + 49.6264865136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97080ae0ca767e055d318f05ef020e74394ec3bf", + "fields": { + "code_commune_insee": "80050", + "nom_de_la_commune": "BACOUEL SUR SELLE", + "code_postal": "80480", + "coordonnees_gps": [ + 49.8303379321, + 2.19407560384 + ], + "libelle_d_acheminement": "BACOUEL SUR SELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19407560384, + 49.8303379321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2427e31ea3ada8dc20bc1aebb123389bb961d7f", + "fields": { + "code_commune_insee": "80052", + "nom_de_la_commune": "BAIZIEUX", + "code_postal": "80300", + "coordonnees_gps": [ + 49.990475441, + 2.51255850083 + ], + "libelle_d_acheminement": "BAIZIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51255850083, + 49.990475441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f37f5a006e1b3bb43ef6d2d22d6595eca8e6e19b", + "fields": { + "code_commune_insee": "80054", + "nom_de_la_commune": "BARLEUX", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8976551923, + 2.89316410406 + ], + "libelle_d_acheminement": "BARLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89316410406, + 49.8976551923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ede93aec19ef9b21905d0e4229fed7494d87ba9", + "fields": { + "code_commune_insee": "80057", + "nom_de_la_commune": "BAYENCOURT", + "code_postal": "80560", + "coordonnees_gps": [ + 50.1316566885, + 2.57224230294 + ], + "libelle_d_acheminement": "BAYENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57224230294, + 50.1316566885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5de4e60673cf580504a8c5a0940c471317a2cfb", + "fields": { + "code_commune_insee": "80061", + "nom_de_la_commune": "BEAUCAMPS LE JEUNE", + "code_postal": "80430", + "coordonnees_gps": [ + 49.8168077628, + 1.77087038319 + ], + "libelle_d_acheminement": "BEAUCAMPS LE JEUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77087038319, + 49.8168077628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7f1db1c4452ad57abe692d07dfc2a41be5d3eee", + "fields": { + "code_commune_insee": "80065", + "nom_de_la_commune": "BEAUCOURT SUR L ANCRE", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0848116723, + 2.68398023051 + ], + "libelle_d_acheminement": "BEAUCOURT SUR L ANCRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68398023051, + 50.0848116723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "354570a31f0c1f8938e326317628a80cb301d477", + "fields": { + "code_commune_insee": "80067", + "nom_de_la_commune": "BEAUFORT EN SANTERRE", + "code_postal": "80170", + "coordonnees_gps": [ + 49.7816500284, + 2.66079679081 + ], + "libelle_d_acheminement": "BEAUFORT EN SANTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66079679081, + 49.7816500284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a139dece6b88f2e886682a06139cdc0f0f5471a", + "fields": { + "code_commune_insee": "80068", + "nom_de_la_commune": "BEAUMETZ", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1349354477, + 2.11024314398 + ], + "libelle_d_acheminement": "BEAUMETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11024314398, + 50.1349354477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "095b88b490c5d9e0a7ea72c6fa48117836880cd5", + "fields": { + "code_commune_insee": "80078", + "nom_de_la_commune": "BELLANCOURT", + "code_postal": "80132", + "coordonnees_gps": [ + 50.092743931, + 1.91271361466 + ], + "libelle_d_acheminement": "BELLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91271361466, + 50.092743931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ecea0c67fc850b903c7c5a082e4ef06e3eff01d", + "fields": { + "code_commune_insee": "80087", + "nom_de_la_commune": "BERNAY EN PONTHIEU", + "code_postal": "80120", + "coordonnees_gps": [ + 50.2637068045, + 1.75043603953 + ], + "libelle_d_acheminement": "BERNAY EN PONTHIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75043603953, + 50.2637068045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df6504254522e50c63cd3408ef8814a58f89cb66", + "fields": { + "code_commune_insee": "80088", + "nom_de_la_commune": "BERNES", + "code_postal": "80240", + "coordonnees_gps": [ + 49.9087174553, + 3.10186976194 + ], + "libelle_d_acheminement": "BERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10186976194, + 49.9087174553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09c117ac93625f07012732fd333d31d5bd29e102", + "fields": { + "code_commune_insee": "80089", + "nom_de_la_commune": "BERNEUIL", + "code_postal": "80620", + "coordonnees_gps": [ + 50.088214456, + 2.17360293131 + ], + "libelle_d_acheminement": "BERNEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17360293131, + 50.088214456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e33d053af4cd6e4e823e76c8436cfa6db3abe89", + "fields": { + "code_commune_insee": "80090", + "nom_de_la_commune": "BERNY EN SANTERRE", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8665475178, + 2.85058126397 + ], + "libelle_d_acheminement": "BERNY EN SANTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85058126397, + 49.8665475178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a6bc2605ba2a7b4824aba1e3bc22db384a40d42", + "fields": { + "code_commune_insee": "80093", + "nom_de_la_commune": "BERTEAUCOURT LES DAMES", + "code_postal": "80850", + "coordonnees_gps": [ + 50.0417860599, + 2.15714009582 + ], + "libelle_d_acheminement": "BERTEAUCOURT LES DAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15714009582, + 50.0417860599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e86e430c6204a88971030c678a728a7bc6672f89", + "fields": { + "code_commune_insee": "80097", + "nom_de_la_commune": "BETHENCOURT SUR SOMME", + "code_postal": "80190", + "coordonnees_gps": [ + 49.7926456622, + 2.95729064952 + ], + "libelle_d_acheminement": "BETHENCOURT SUR SOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95729064952, + 49.7926456622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df2898f09cb877d805f1caf7ff8fda10bd57a57e", + "fields": { + "code_commune_insee": "80103", + "nom_de_la_commune": "BIARRE", + "code_postal": "80190", + "coordonnees_gps": [ + 49.7219365982, + 2.88347659753 + ], + "libelle_d_acheminement": "BIARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88347659753, + 49.7219365982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9cc247a159607af02acb77f3e67dfa055e8d6ee", + "fields": { + "code_commune_insee": "80112", + "nom_de_la_commune": "BONNAY", + "code_postal": "80800", + "coordonnees_gps": [ + 49.9429089907, + 2.50691249555 + ], + "libelle_d_acheminement": "BONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50691249555, + 49.9429089907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "078c403003eb90568c64f126d29fa2240521770c", + "fields": { + "code_commune_insee": "80113", + "nom_de_la_commune": "BONNEVILLE", + "code_postal": "80670", + "coordonnees_gps": [ + 50.0778725403, + 2.26234835981 + ], + "libelle_d_acheminement": "BONNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26234835981, + 50.0778725403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45833f6e038de613ccabbb5f1d1af14f95b59c73", + "fields": { + "code_commune_insee": "80118", + "nom_de_la_commune": "BOUFFLERS", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2589447905, + 2.02128865897 + ], + "libelle_d_acheminement": "BOUFFLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02128865897, + 50.2589447905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5127d2245f03008aad7b9ea4da080c63a4d0a744", + "fields": { + "code_commune_insee": "80129", + "nom_de_la_commune": "BOUZINCOURT", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0233961176, + 2.61186283447 + ], + "libelle_d_acheminement": "BOUZINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61186283447, + 50.0233961176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a460ad89efd7babd436b0a6d20784d24a93df2c6", + "fields": { + "code_commune_insee": "80130", + "nom_de_la_commune": "BOVELLES", + "code_postal": "80540", + "coordonnees_gps": [ + 49.8897442971, + 2.14077801303 + ], + "libelle_d_acheminement": "BOVELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14077801303, + 49.8897442971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e610aa42e10acab82d4e7092215e735db12729e8", + "fields": { + "code_commune_insee": "80136", + "nom_de_la_commune": "BRAY SUR SOMME", + "code_postal": "80340", + "coordonnees_gps": [ + 49.9549092786, + 2.72156545459 + ], + "libelle_d_acheminement": "BRAY SUR SOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72156545459, + 49.9549092786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b59e279532b55872d24ccddb18d886f843436b2", + "fields": { + "code_commune_insee": "80144", + "nom_de_la_commune": "BROUCHY", + "code_postal": "80400", + "coordonnees_gps": [ + 49.7163704547, + 3.0972242101 + ], + "libelle_d_acheminement": "BROUCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0972242101, + 49.7163704547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ecf19bab8c240b7c12a95122f27de7c8692d12b", + "fields": { + "code_commune_insee": "80146", + "nom_de_la_commune": "BRUTELLES", + "code_postal": "80230", + "coordonnees_gps": [ + 50.1369120037, + 1.52031200615 + ], + "libelle_d_acheminement": "BRUTELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52031200615, + 50.1369120037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "322201e31f8b29ce8bba3c9e2f98e7e6cc07d2a3", + "fields": { + "code_commune_insee": "80150", + "nom_de_la_commune": "BUIRE COURCELLES", + "code_postal": "80200", + "coordonnees_gps": [ + 49.9332857649, + 3.00805695151 + ], + "libelle_d_acheminement": "BUIRE COURCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00805695151, + 49.9332857649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b81c33601473c56c4a1274cc09f422889a211bb7", + "fields": { + "code_commune_insee": "80151", + "nom_de_la_commune": "BUIRE SUR L ANCRE", + "code_postal": "80300", + "coordonnees_gps": [ + 49.9748538247, + 2.59295688367 + ], + "libelle_d_acheminement": "BUIRE SUR L ANCRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59295688367, + 49.9748538247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8972eb13df49b1b70c271ac3d7e8b503da41216c", + "fields": { + "code_commune_insee": "80163", + "nom_de_la_commune": "CAMBRON", + "code_postal": "80132", + "coordonnees_gps": [ + 50.1092631325, + 1.7656573387 + ], + "libelle_d_acheminement": "CAMBRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7656573387, + 50.1092631325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1f4f6650d4521d1d388a9db465bc1db6bd34288", + "fields": { + "code_commune_insee": "80172", + "nom_de_la_commune": "CAPPY", + "code_postal": "80340", + "coordonnees_gps": [ + 49.9256314774, + 2.76317841426 + ], + "libelle_d_acheminement": "CAPPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76317841426, + 49.9256314774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44125caf95bc166a62cdc381344d1257d32dc405", + "fields": { + "code_commune_insee": "80173", + "nom_de_la_commune": "CARDONNETTE", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9521802648, + 2.35601706384 + ], + "libelle_d_acheminement": "CARDONNETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35601706384, + 49.9521802648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a94a4b06d5defe2dad12ecfd6d2ab36ea9bad238", + "fields": { + "code_commune_insee": "80176", + "nom_de_la_commune": "CARREPUIS", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7045602877, + 2.81927389833 + ], + "libelle_d_acheminement": "CARREPUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81927389833, + 49.7045602877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b4eb364d850c3f4f1ba6024333a5155b4e70655", + "fields": { + "code_commune_insee": "80182", + "nom_de_la_commune": "CAYEUX SUR MER", + "code_postal": "80410", + "coordonnees_gps": [ + 50.1760397062, + 1.51571510783 + ], + "libelle_d_acheminement": "CAYEUX SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51571510783, + 50.1760397062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf5fa0a670142fdcaac1d5bcdf8142d82786b527", + "fields": { + "code_commune_insee": "80185", + "nom_de_la_commune": "CHAMPIEN", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6958546221, + 2.8583583655 + ], + "libelle_d_acheminement": "CHAMPIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8583583655, + 49.6958546221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c2e99fb17205fb323e5e365f276006e22b201a2", + "fields": { + "code_commune_insee": "80195", + "nom_de_la_commune": "CHUIGNOLLES", + "code_postal": "80340", + "coordonnees_gps": [ + 49.9016436586, + 2.72842552423 + ], + "libelle_d_acheminement": "CHUIGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72842552423, + 49.9016436586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c50bf38896ac9d68d16d370bfbedce2d6e254b2b", + "fields": { + "code_commune_insee": "80198", + "nom_de_la_commune": "CLAIRY SAULCHOIX", + "code_postal": "80540", + "coordonnees_gps": [ + 49.8546987793, + 2.1678833231 + ], + "libelle_d_acheminement": "CLAIRY SAULCHOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1678833231, + 49.8546987793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53e0e720309f96050b8a5b429b04e3cf5bdc6c26", + "fields": { + "code_commune_insee": "80200", + "nom_de_la_commune": "COCQUEREL", + "code_postal": "80510", + "coordonnees_gps": [ + 50.0556210694, + 1.96022632545 + ], + "libelle_d_acheminement": "COCQUEREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96022632545, + 50.0556210694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6ba07f5d4eb9f29ca0b5d2e77421aca53bb1e3b", + "fields": { + "code_commune_insee": "80201", + "nom_de_la_commune": "COIGNEUX", + "code_postal": "80560", + "coordonnees_gps": [ + 50.1301013343, + 2.55612696272 + ], + "libelle_d_acheminement": "COIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55612696272, + 50.1301013343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ec280fd9a32ac67f6b7589b870d4d3333f6567", + "fields": { + "code_commune_insee": "80204", + "nom_de_la_commune": "COMBLES", + "code_postal": "80360", + "coordonnees_gps": [ + 50.0100855412, + 2.87396008715 + ], + "libelle_d_acheminement": "COMBLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87396008715, + 50.0100855412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "728eef1212bf016bc649059ef0ac046fd08403c8", + "fields": { + "code_commune_insee": "80207", + "nom_de_la_commune": "CONTAY", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0098213909, + 2.46810358617 + ], + "libelle_d_acheminement": "CONTAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46810358617, + 50.0098213909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7b9c4005f69d9cb7efb4207f851f3a03403020b", + "fields": { + "code_commune_insee": "80217", + "nom_de_la_commune": "COURCELLES AU BOIS", + "code_postal": "80560", + "coordonnees_gps": [ + 50.1053551298, + 2.58253392704 + ], + "libelle_d_acheminement": "COURCELLES AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58253392704, + 50.1053551298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "277f8abe42f8591bb3af338defcc2c278e89f61f", + "fields": { + "ligne_5": "MARCHEVILLE", + "code_commune_insee": "80222", + "libelle_d_acheminement": "CRECY EN PONTHIEU", + "code_postal": "80150", + "nom_de_la_commune": "CRECY EN PONTHIEU", + "coordonnees_gps": [ + 50.2402128609, + 1.84519481744 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84519481744, + 50.2402128609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c663993b6842c5b94be3f80e390851079574085", + "fields": { + "code_commune_insee": "80226", + "nom_de_la_commune": "CROIX MOLIGNEAUX", + "code_postal": "80400", + "coordonnees_gps": [ + 49.8196677644, + 3.00036517518 + ], + "libelle_d_acheminement": "CROIX MOLIGNEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00036517518, + 49.8196677644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "207e7f437b7fb175494b1f35f9f1084f7d8f277d", + "fields": { + "ligne_5": "MANICOURT", + "code_commune_insee": "80230", + "libelle_d_acheminement": "CURCHY", + "code_postal": "80190", + "nom_de_la_commune": "CURCHY", + "coordonnees_gps": [ + 49.7790671802, + 2.86870993814 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86870993814, + 49.7790671802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8dd715a20542400db91b8710a0f0649ad185a27", + "fields": { + "code_commune_insee": "80236", + "nom_de_la_commune": "DAVENESCOURT", + "code_postal": "80500", + "coordonnees_gps": [ + 49.7141857195, + 2.5965399646 + ], + "libelle_d_acheminement": "DAVENESCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5965399646, + 49.7141857195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08d66f6b3f46a9e5f171600cc9dc2de1eadb76ec", + "fields": { + "code_commune_insee": "80238", + "nom_de_la_commune": "DERNANCOURT", + "code_postal": "80300", + "coordonnees_gps": [ + 49.9790238036, + 2.6233494587 + ], + "libelle_d_acheminement": "DERNANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6233494587, + 49.9790238036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c0f29fb3eaaa8c8e65ee8dcf28b212f8e5f7a86", + "fields": { + "code_commune_insee": "80244", + "nom_de_la_commune": "DOMINOIS", + "code_postal": "80120", + "coordonnees_gps": [ + 50.32820704, + 1.84903188251 + ], + "libelle_d_acheminement": "DOMINOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84903188251, + 50.32820704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29fbbe3f907d8526adc5d8ed79f44148ace893d3", + "fields": { + "code_commune_insee": "80256", + "nom_de_la_commune": "DREUIL LES AMIENS", + "code_postal": "80470", + "coordonnees_gps": [ + 49.915981632, + 2.22637033069 + ], + "libelle_d_acheminement": "DREUIL LES AMIENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22637033069, + 49.915981632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a7ef6799f7f0ca0ce507c5b3f3d355387c70dfb", + "fields": { + "code_commune_insee": "80262", + "nom_de_la_commune": "EAUCOURT SUR SOMME", + "code_postal": "80580", + "coordonnees_gps": [ + 50.0682542409, + 1.88826877108 + ], + "libelle_d_acheminement": "EAUCOURT SUR SOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88826877108, + 50.0682542409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cb2e1b24d3623b9913f95252540ab4f3902d7c5", + "fields": { + "code_commune_insee": "80266", + "nom_de_la_commune": "ENGLEBELMER", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0547930425, + 2.60796458137 + ], + "libelle_d_acheminement": "ENGLEBELMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60796458137, + 50.0547930425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "247133883c73971e5c9d772ad1ddf0076d2d9845", + "fields": { + "code_commune_insee": "80268", + "nom_de_la_commune": "EPAGNE EPAGNETTE", + "code_postal": "80580", + "coordonnees_gps": [ + 50.077303233, + 1.86764272017 + ], + "libelle_d_acheminement": "EPAGNE EPAGNETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86764272017, + 50.077303233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5054baacc77faad5aeed7bbeae7edf1a18c4115f", + "fields": { + "code_commune_insee": "80281", + "nom_de_la_commune": "ERGNIES", + "code_postal": "80690", + "coordonnees_gps": [ + 50.088353406, + 2.03216218477 + ], + "libelle_d_acheminement": "ERGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03216218477, + 50.088353406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24c6a164cea55eb22bc7ddccf00ef59b5bb24f19", + "fields": { + "code_commune_insee": "80283", + "nom_de_la_commune": "ESCLAINVILLERS", + "code_postal": "80250", + "coordonnees_gps": [ + 49.6903222746, + 2.39899082941 + ], + "libelle_d_acheminement": "ESCLAINVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39899082941, + 49.6903222746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c5f859c2a563805c1d169f462dbdee16d56bb21", + "fields": { + "code_commune_insee": "80293", + "nom_de_la_commune": "ETELFAY", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6643512814, + 2.61085791876 + ], + "libelle_d_acheminement": "ETELFAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61085791876, + 49.6643512814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e8b543bd8f8ce87d7ffbd6ebcfa6a279bd50cd5", + "fields": { + "code_commune_insee": "80307", + "nom_de_la_commune": "FEUILLERES", + "code_postal": "80200", + "coordonnees_gps": [ + 49.9413358686, + 2.85151703169 + ], + "libelle_d_acheminement": "FEUILLERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85151703169, + 49.9413358686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62860c77141ce624626b98aa10bc58bfd8af207f", + "fields": { + "code_commune_insee": "80311", + "nom_de_la_commune": "FIGNIERES", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6803491005, + 2.58545736222 + ], + "libelle_d_acheminement": "FIGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58545736222, + 49.6803491005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47f6962bad1984a50d55fa5ee71900ec976aad43", + "fields": { + "code_commune_insee": "80313", + "nom_de_la_commune": "FLAUCOURT", + "code_postal": "80200", + "coordonnees_gps": [ + 49.9174280416, + 2.86789374494 + ], + "libelle_d_acheminement": "FLAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86789374494, + 49.9174280416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cbe7233dd9066e05d9a37f3ef339c76d9cec1e9", + "fields": { + "code_commune_insee": "80318", + "nom_de_la_commune": "FLIXECOURT", + "code_postal": "80420", + "coordonnees_gps": [ + 50.0103212084, + 2.07964672237 + ], + "libelle_d_acheminement": "FLIXECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07964672237, + 50.0103212084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fada33b7914a853ba10a0027d921609598041f04", + "fields": { + "code_commune_insee": "80320", + "nom_de_la_commune": "FOLIES", + "code_postal": "80170", + "coordonnees_gps": [ + 49.7629825224, + 2.66649413989 + ], + "libelle_d_acheminement": "FOLIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66649413989, + 49.7629825224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "404049e6ecdfe50d5770e577d1ce600f28028421", + "fields": { + "code_commune_insee": "80331", + "nom_de_la_commune": "FOREST L ABBAYE", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2032978868, + 1.83242600147 + ], + "libelle_d_acheminement": "FOREST L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83242600147, + 50.2032978868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "938256fa6f693eea21f7545d3176da06dd55ada7", + "fields": { + "code_commune_insee": "80333", + "nom_de_la_commune": "FORT MAHON PLAGE", + "code_postal": "80120", + "coordonnees_gps": [ + 50.3450588351, + 1.5770676415 + ], + "libelle_d_acheminement": "FORT MAHON PLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5770676415, + 50.3450588351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9f9991f76969862253c3121b12f076de72d5312", + "fields": { + "code_commune_insee": "80347", + "nom_de_la_commune": "FRANSART", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7686241864, + 2.77384831691 + ], + "libelle_d_acheminement": "FRANSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77384831691, + 49.7686241864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24fce92245cbe17911ea97d6e6654b1fc5e430f5", + "fields": { + "code_commune_insee": "80348", + "nom_de_la_commune": "FRANSU", + "code_postal": "80620", + "coordonnees_gps": [ + 50.1129742666, + 2.0902535968 + ], + "libelle_d_acheminement": "FRANSU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0902535968, + 50.1129742666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be71ece0bb28c2d46c83fe0c23b0169b9ae52c9f", + "fields": { + "code_commune_insee": "80349", + "nom_de_la_commune": "FRANSURES", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7136759827, + 2.23410813996 + ], + "libelle_d_acheminement": "FRANSURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23410813996, + 49.7136759827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2f2fbf8d2ce6385c9e5d07db3ccb5152c7ce5c2", + "fields": { + "code_commune_insee": "80355", + "nom_de_la_commune": "FRESNEVILLE", + "code_postal": "80140", + "coordonnees_gps": [ + 49.887535881, + 1.83139582116 + ], + "libelle_d_acheminement": "FRESNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83139582116, + 49.887535881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41c96384076a838216d12eb38a58e6316d393fe8", + "fields": { + "code_commune_insee": "80360", + "nom_de_la_commune": "FRESSENNEVILLE", + "code_postal": "80390", + "coordonnees_gps": [ + 50.0612665592, + 1.56652824235 + ], + "libelle_d_acheminement": "FRESSENNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56652824235, + 50.0612665592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaf7a4227b92b8c8edbd3c2f3bdf6223e7d41227", + "fields": { + "code_commune_insee": "80361", + "nom_de_la_commune": "FRETTECUISSE", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9234423718, + 1.81014711359 + ], + "libelle_d_acheminement": "FRETTECUISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81014711359, + 49.9234423718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f4c8d6085351b56c7c392ca0c5b50bd30b8fda7", + "fields": { + "code_commune_insee": "80366", + "nom_de_la_commune": "FRICOURT", + "code_postal": "80300", + "coordonnees_gps": [ + 49.9963797801, + 2.71518439467 + ], + "libelle_d_acheminement": "FRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71518439467, + 49.9963797801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7af6762d9324616a84383a0041d4a0bee9b5921", + "fields": { + "code_commune_insee": "80367", + "nom_de_la_commune": "FRISE", + "code_postal": "80340", + "coordonnees_gps": [ + 49.940092522, + 2.81429548717 + ], + "libelle_d_acheminement": "FRISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81429548717, + 49.940092522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "833fbcd89f3946452920d85fc443617373021be1", + "fields": { + "code_commune_insee": "80372", + "nom_de_la_commune": "FRUCOURT", + "code_postal": "80490", + "coordonnees_gps": [ + 49.9984233646, + 1.81098988886 + ], + "libelle_d_acheminement": "FRUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81098988886, + 49.9984233646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acb157fd0215a1a5cc653a68fb251b487b76cd88", + "fields": { + "code_commune_insee": "80374", + "nom_de_la_commune": "GAPENNES", + "code_postal": "80150", + "coordonnees_gps": [ + 50.1783068722, + 1.95226014182 + ], + "libelle_d_acheminement": "GAPENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95226014182, + 50.1783068722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fb11aca06d1d60b2857eca63816c2164b520ac2", + "fields": { + "code_commune_insee": "80381", + "nom_de_la_commune": "GORGES", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1074433713, + 2.18310847965 + ], + "libelle_d_acheminement": "GORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18310847965, + 50.1074433713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0702c071ba84f06eba69fdb9a3283d9f233d31a", + "fields": { + "code_commune_insee": "80397", + "nom_de_la_commune": "GUEUDECOURT", + "code_postal": "80360", + "coordonnees_gps": [ + 50.0600984326, + 2.84338835573 + ], + "libelle_d_acheminement": "GUEUDECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84338835573, + 50.0600984326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3bdd8acfc081f7fe4203f948f9d4c30a0695f7a", + "fields": { + "code_commune_insee": "80399", + "nom_de_la_commune": "GUIGNEMICOURT", + "code_postal": "80540", + "coordonnees_gps": [ + 49.8712250283, + 2.16839769767 + ], + "libelle_d_acheminement": "GUIGNEMICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16839769767, + 49.8712250283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5b9becc546c0ec11b8597493eba74d249912712", + "fields": { + "code_commune_insee": "80406", + "nom_de_la_commune": "HALLENCOURT", + "code_postal": "80490", + "coordonnees_gps": [ + 49.9955608353, + 1.87489334789 + ], + "libelle_d_acheminement": "HALLENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87489334789, + 49.9955608353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11345b5c09ee5591a33499fb6446451f216fa8ff", + "fields": { + "code_commune_insee": "80411", + "nom_de_la_commune": "LE HAMEL", + "code_postal": "80800", + "coordonnees_gps": [ + 49.8958798781, + 2.57277507788 + ], + "libelle_d_acheminement": "LE HAMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57277507788, + 49.8958798781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac25a2ad1eea0a9be719ca585e62dedc14bc149e", + "fields": { + "code_commune_insee": "80413", + "nom_de_la_commune": "HANCOURT", + "code_postal": "80240", + "coordonnees_gps": [ + 49.9049407174, + 3.07066226495 + ], + "libelle_d_acheminement": "HANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07066226495, + 49.9049407174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8250fbe978994e5f2d91616bcaf1ac98b2e8b9e8", + "fields": { + "code_commune_insee": "80415", + "nom_de_la_commune": "HANGEST EN SANTERRE", + "code_postal": "80134", + "coordonnees_gps": [ + 49.7509609311, + 2.60213270744 + ], + "libelle_d_acheminement": "HANGEST EN SANTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60213270744, + 49.7509609311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0fd90763a1cef8157063d9606aeab9963373840", + "fields": { + "code_commune_insee": "80425", + "nom_de_la_commune": "HEDAUVILLE", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0483166875, + 2.56989757012 + ], + "libelle_d_acheminement": "HEDAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56989757012, + 50.0483166875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05eb7dc901d35c99188df6d4ac30a546fb6d0449", + "fields": { + "code_commune_insee": "80433", + "nom_de_la_commune": "HERLY", + "code_postal": "80190", + "coordonnees_gps": [ + 49.7525142116, + 2.87304441748 + ], + "libelle_d_acheminement": "HERLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87304441748, + 49.7525142116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84f25f69c17937f9c6e84775a0464fef5fa1b090", + "fields": { + "code_commune_insee": "80438", + "nom_de_la_commune": "HEUDICOURT", + "code_postal": "80122", + "coordonnees_gps": [ + 50.0270418566, + 3.09022844642 + ], + "libelle_d_acheminement": "HEUDICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09022844642, + 50.0270418566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96ac9d040ffbef6a671f47425149384fa122eb5e", + "fields": { + "code_commune_insee": "80439", + "nom_de_la_commune": "HEUZECOURT", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1654636247, + 2.16872936598 + ], + "libelle_d_acheminement": "HEUZECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16872936598, + 50.1654636247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "366267e6b5720c976fb31ed19e30de02fe240e58", + "fields": { + "code_commune_insee": "80442", + "nom_de_la_commune": "HOMBLEUX", + "code_postal": "80400", + "coordonnees_gps": [ + 49.743120483, + 2.99136474689 + ], + "libelle_d_acheminement": "HOMBLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99136474689, + 49.743120483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed3e56ec38037b0d9d5c5a82d82f536825d50afb", + "fields": { + "ligne_5": "GRECOURT", + "code_commune_insee": "80442", + "libelle_d_acheminement": "HOMBLEUX", + "code_postal": "80400", + "nom_de_la_commune": "HOMBLEUX", + "coordonnees_gps": [ + 49.743120483, + 2.99136474689 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99136474689, + 49.743120483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9740e41f22c34daff900ecccfc7c86f918565b71", + "fields": { + "ligne_5": "TRONCHOY", + "code_commune_insee": "80443", + "libelle_d_acheminement": "HORNOY LE BOURG", + "code_postal": "80640", + "nom_de_la_commune": "HORNOY LE BOURG", + "coordonnees_gps": [ + 49.8474299808, + 1.90289897698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90289897698, + 49.8474299808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e43a5897be550e6077866ea67c52a0e3f692634", + "fields": { + "code_commune_insee": "80446", + "nom_de_la_commune": "HUPPY", + "code_postal": "80140", + "coordonnees_gps": [ + 50.0240574056, + 1.76011940003 + ], + "libelle_d_acheminement": "HUPPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76011940003, + 50.0240574056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c1611baa3c6bece92cdc537cb348632a7cb1254", + "fields": { + "code_commune_insee": "80449", + "nom_de_la_commune": "IGNAUCOURT", + "code_postal": "80800", + "coordonnees_gps": [ + 49.817976943, + 2.57616977207 + ], + "libelle_d_acheminement": "IGNAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57616977207, + 49.817976943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd0c3aa3c46fefe5903a023a2b8f856fe80f66c1", + "fields": { + "code_commune_insee": "80464", + "nom_de_la_commune": "LANCHERES", + "code_postal": "80230", + "coordonnees_gps": [ + 50.163006057, + 1.55355178497 + ], + "libelle_d_acheminement": "LANCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55355178497, + 50.163006057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27db1ebd70451f40cef12c8f4c531d6008fa9ea5", + "fields": { + "code_commune_insee": "80468", + "nom_de_la_commune": "LAVIEVILLE", + "code_postal": "80300", + "coordonnees_gps": [ + 49.9913087444, + 2.57657970743 + ], + "libelle_d_acheminement": "LAVIEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57657970743, + 49.9913087444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6deb3d13476dce33ff27b59644db4faa4319e79e", + "fields": { + "code_commune_insee": "80470", + "nom_de_la_commune": "LEALVILLERS", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0684974222, + 2.50798343756 + ], + "libelle_d_acheminement": "LEALVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50798343756, + 50.0684974222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc5062172e8ec4e165f6c713faf2222e8c0dfa73", + "fields": { + "code_commune_insee": "80473", + "nom_de_la_commune": "LIANCOURT FOSSE", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7556819927, + 2.81451091711 + ], + "libelle_d_acheminement": "LIANCOURT FOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81451091711, + 49.7556819927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1908b5e9545b6956b0b45c84187247ba4bb2d04", + "fields": { + "code_commune_insee": "80478", + "nom_de_la_commune": "LIGNIERES", + "code_postal": "80500", + "coordonnees_gps": [ + 49.671563988, + 2.64871635653 + ], + "libelle_d_acheminement": "LIGNIERES LES ROYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64871635653, + 49.671563988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e455d69c0018c9606f400a79220f598c30ed9b7", + "fields": { + "code_commune_insee": "80479", + "nom_de_la_commune": "LIGNIERES CHATELAIN", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7760927135, + 1.86331037003 + ], + "libelle_d_acheminement": "LIGNIERES CHATELAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86331037003, + 49.7760927135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c279d19382509b095098ed31af5aa3bf34be4835", + "fields": { + "code_commune_insee": "80480", + "nom_de_la_commune": "LIGNIERES EN VIMEU", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9101863161, + 1.74567554549 + ], + "libelle_d_acheminement": "LIGNIERES EN VIMEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74567554549, + 49.9101863161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc51fb8dd28d32a79d1643ada1b97ae4b0b42eb9", + "fields": { + "code_commune_insee": "80482", + "nom_de_la_commune": "LIMEUX", + "code_postal": "80490", + "coordonnees_gps": [ + 50.0167557888, + 1.80810963751 + ], + "libelle_d_acheminement": "LIMEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80810963751, + 50.0167557888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f1f652c5cac28a18aae61ad47ebfae886cd2245", + "fields": { + "code_commune_insee": "80484", + "nom_de_la_commune": "LIOMER", + "code_postal": "80430", + "coordonnees_gps": [ + 49.859116583, + 1.808682674 + ], + "libelle_d_acheminement": "LIOMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.808682674, + 49.859116583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29eebb4be9572d51d827d00ca290411b1ab8596a", + "fields": { + "ligne_5": "NEUVILLE LES LOEUILLY", + "code_commune_insee": "80485", + "libelle_d_acheminement": "O DE SELLE", + "code_postal": "80160", + "nom_de_la_commune": "O DE SELLE", + "coordonnees_gps": [ + 49.7718632447, + 2.19570627328 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19570627328, + 49.7718632447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67a2ca7ab0450e46412d6f20d5e9dc5778675bdf", + "fields": { + "code_commune_insee": "80497", + "nom_de_la_commune": "MACHY", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2756243749, + 1.80219554847 + ], + "libelle_d_acheminement": "MACHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80219554847, + 50.2756243749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "289014607a229de523bfa25dad0093ddbda462ae", + "fields": { + "ligne_5": "MARCHELEPOT", + "code_commune_insee": "80509", + "libelle_d_acheminement": "MARCHELEPOT MISERY", + "code_postal": "80200", + "nom_de_la_commune": "MARCHELEPOT MISERY", + "coordonnees_gps": [ + 49.8310377933, + 2.86663557413 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86663557413, + 49.8310377933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d58af03603675836ff3128a4748ec883e1fa36b2", + "fields": { + "code_commune_insee": "80523", + "nom_de_la_commune": "MEAULTE", + "code_postal": "80300", + "coordonnees_gps": [ + 49.9748428064, + 2.66806300084 + ], + "libelle_d_acheminement": "MEAULTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66806300084, + 49.9748428064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e39bb38e1c318cd4b9d5fd188723839fb8ab6da2", + "fields": { + "code_commune_insee": "80540", + "nom_de_la_commune": "MESNIL MARTINSART", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0476233415, + 2.6395201945 + ], + "libelle_d_acheminement": "MESNIL MARTINSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6395201945, + 50.0476233415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e669d44a813a51a0abec6b80d5f8585641caa45a", + "fields": { + "code_commune_insee": "80541", + "nom_de_la_commune": "MESNIL ST GEORGES", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6408491861, + 2.52473977489 + ], + "libelle_d_acheminement": "MESNIL ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52473977489, + 49.6408491861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40a230e6ea83b63c083d09ecf02eef04b3d5c47e", + "fields": { + "code_commune_insee": "80543", + "nom_de_la_commune": "METIGNY", + "code_postal": "80270", + "coordonnees_gps": [ + 49.9367802972, + 1.91143330166 + ], + "libelle_d_acheminement": "METIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91143330166, + 49.9367802972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2a37307ea040bb80f781dfcfbec7308dfb785e7", + "fields": { + "code_commune_insee": "80545", + "nom_de_la_commune": "MEZIERES EN SANTERRE", + "code_postal": "80110", + "coordonnees_gps": [ + 49.7807995412, + 2.55149531899 + ], + "libelle_d_acheminement": "MEZIERES EN SANTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55149531899, + 49.7807995412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52fb25699bb71b6961a3eba28ab560208d09c4a6", + "fields": { + "code_commune_insee": "80548", + "nom_de_la_commune": "MILLENCOURT EN PONTHIEU", + "code_postal": "80135", + "coordonnees_gps": [ + 50.1499478257, + 1.91216864663 + ], + "libelle_d_acheminement": "MILLENCOURT EN PONTHIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91216864663, + 50.1499478257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e55cd55f1777be63a58ec139ea46fdbb8982b70", + "fields": { + "code_commune_insee": "80559", + "nom_de_la_commune": "MONTAGNE FAYEL", + "code_postal": "80540", + "coordonnees_gps": [ + 49.9111182672, + 1.98699952073 + ], + "libelle_d_acheminement": "MONTAGNE FAYEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98699952073, + 49.9111182672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19c716015af3569bafb458ffca6e3b85beb3a664", + "fields": { + "code_commune_insee": "80561", + "nom_de_la_commune": "MONTDIDIER", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6484417752, + 2.56889051669 + ], + "libelle_d_acheminement": "MONTDIDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56889051669, + 49.6484417752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "419a8c4d81f32a7bdfa34482e80f55cf570f357d", + "fields": { + "ligne_5": "FIEFFES", + "code_commune_insee": "80566", + "libelle_d_acheminement": "FIEFFES MONTRELET", + "code_postal": "80670", + "nom_de_la_commune": "FIEFFES MONTRELET", + "coordonnees_gps": [ + 50.0905993078, + 2.21690355063 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21690355063, + 50.0905993078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5f913b5048bfba444e809d40b031e502b19aa82", + "fields": { + "code_commune_insee": "80569", + "nom_de_la_commune": "MORCOURT", + "code_postal": "80340", + "coordonnees_gps": [ + 49.8856864737, + 2.65779356181 + ], + "libelle_d_acheminement": "MORCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65779356181, + 49.8856864737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fa30c4dfd108ae4b92246836e711c740dc73fde", + "fields": { + "code_commune_insee": "80570", + "nom_de_la_commune": "MOREUIL", + "code_postal": "80110", + "coordonnees_gps": [ + 49.7762271653, + 2.48422182173 + ], + "libelle_d_acheminement": "MOREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48422182173, + 49.7762271653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "232002177fb8f4ccc756bea77c2d8399ca280355", + "fields": { + "code_commune_insee": "80575", + "nom_de_la_commune": "MOUFLIERES", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9258646541, + 1.74240882463 + ], + "libelle_d_acheminement": "MOUFLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74240882463, + 49.9258646541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ceb7b928cee5059ebda87098b65ed79667503b7", + "fields": { + "code_commune_insee": "80585", + "nom_de_la_commune": "NESLE", + "code_postal": "80190", + "coordonnees_gps": [ + 49.7599586535, + 2.90989646519 + ], + "libelle_d_acheminement": "NESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90989646519, + 49.7599586535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f96c9efcaa3e6059c57690c01b044da0f6ca511", + "fields": { + "code_commune_insee": "80587", + "nom_de_la_commune": "NESLETTE", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9273386228, + 1.66463557857 + ], + "libelle_d_acheminement": "NESLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66463557857, + 49.9273386228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a498e55010add3a4af17bbcaf54604747594f0fe", + "fields": { + "code_commune_insee": "80599", + "nom_de_la_commune": "NOYELLES EN CHAUSSEE", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2112725157, + 1.98679883041 + ], + "libelle_d_acheminement": "NOYELLES EN CHAUSSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98679883041, + 50.2112725157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efe6a4dde88c8761dc7153b2097bbb938187f382", + "fields": { + "code_commune_insee": "80600", + "nom_de_la_commune": "NOYELLES SUR MER", + "code_postal": "80860", + "coordonnees_gps": [ + 50.1869678717, + 1.72060860177 + ], + "libelle_d_acheminement": "NOYELLES SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72060860177, + 50.1869678717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71347051244212560f54d7681389f57c1a08b546", + "fields": { + "code_commune_insee": "80604", + "nom_de_la_commune": "OFFIGNIES", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7944081036, + 1.85641454479 + ], + "libelle_d_acheminement": "OFFIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85641454479, + 49.7944081036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eec0ab04b862a565ff16e0ba6101053bbf89d72c", + "fields": { + "code_commune_insee": "80620", + "nom_de_la_commune": "PERONNE", + "code_postal": "80200", + "coordonnees_gps": [ + 49.928328669, + 2.93001266218 + ], + "libelle_d_acheminement": "PERONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93001266218, + 49.928328669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dec58c309d4181e7a753bc455bdb2d9f53d824e1", + "fields": { + "ligne_5": "OMIECOURT", + "code_commune_insee": "80621", + "libelle_d_acheminement": "HYPERCOURT", + "code_postal": "80320", + "nom_de_la_commune": "HYPERCOURT", + "coordonnees_gps": [ + 49.8059761599, + 2.86900836707 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86900836707, + 49.8059761599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e0b9a623023c20d131034345f2d206072b79a12", + "fields": { + "code_commune_insee": "80622", + "nom_de_la_commune": "PICQUIGNY", + "code_postal": "80310", + "coordonnees_gps": [ + 49.9329385183, + 2.13909509969 + ], + "libelle_d_acheminement": "PICQUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13909509969, + 49.9329385183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d98e84e5a7d6767a3279c6c515f382520b80171", + "fields": { + "code_commune_insee": "80629", + "nom_de_la_commune": "POEUILLY", + "code_postal": "80240", + "coordonnees_gps": [ + 49.8841196332, + 3.09642051056 + ], + "libelle_d_acheminement": "POEUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09642051056, + 49.8841196332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdd8b58c4e5146848743c025a774508c952c30f4", + "fields": { + "code_commune_insee": "80637", + "nom_de_la_commune": "PORT LE GRAND", + "code_postal": "80132", + "coordonnees_gps": [ + 50.1550933696, + 1.75978321125 + ], + "libelle_d_acheminement": "PORT LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75978321125, + 50.1550933696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b65e54c8359fc71089fca801f4bb194bc3a0ebc7", + "fields": { + "code_commune_insee": "80638", + "nom_de_la_commune": "POTTE", + "code_postal": "80190", + "coordonnees_gps": [ + 49.7983865709, + 2.8997143458 + ], + "libelle_d_acheminement": "POTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8997143458, + 49.7983865709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ec310f77777d8924e0caacbc70fd159deec077a", + "fields": { + "code_commune_insee": "80639", + "nom_de_la_commune": "POULAINVILLE", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9534990851, + 2.30852527468 + ], + "libelle_d_acheminement": "POULAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30852527468, + 49.9534990851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e040fd803dad29dfb7bf50ac9da8bb412d4cf00", + "fields": { + "code_commune_insee": "80645", + "nom_de_la_commune": "PUCHEVILLERS", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0550288029, + 2.41064200823 + ], + "libelle_d_acheminement": "PUCHEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41064200823, + 50.0550288029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2606930e00bbe618ee368bc4e5624928ee13e1e2", + "fields": { + "code_commune_insee": "80646", + "nom_de_la_commune": "PUNCHY", + "code_postal": "80320", + "coordonnees_gps": [ + 49.7919371127, + 2.80784010263 + ], + "libelle_d_acheminement": "PUNCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80784010263, + 49.7919371127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cccbf319a45ad312062ab530ba601ad2ce586ab1", + "fields": { + "code_commune_insee": "80651", + "nom_de_la_commune": "LE QUESNE", + "code_postal": "80430", + "coordonnees_gps": [ + 49.8602001575, + 1.79202557749 + ], + "libelle_d_acheminement": "LE QUESNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79202557749, + 49.8602001575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d630ad6f966aed07d747bfd32c6037a09acf906", + "fields": { + "code_commune_insee": "80658", + "nom_de_la_commune": "QUIVIERES", + "code_postal": "80400", + "coordonnees_gps": [ + 49.8238384226, + 3.0324181792 + ], + "libelle_d_acheminement": "QUIVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0324181792, + 49.8238384226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5d7c4d766bdc7f1b65c1680a5c428d6e86ac41f", + "fields": { + "code_commune_insee": "80659", + "nom_de_la_commune": "RAINCHEVAL", + "code_postal": "80600", + "coordonnees_gps": [ + 50.0756706246, + 2.43909935825 + ], + "libelle_d_acheminement": "RAINCHEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43909935825, + 50.0756706246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fdbad86052b51fe50d9bacb83f00b2e3759c3c2", + "fields": { + "code_commune_insee": "80662", + "nom_de_la_commune": "RAMBURELLES", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9672661423, + 1.70929896004 + ], + "libelle_d_acheminement": "RAMBURELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70929896004, + 49.9672661423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ac61588c440995300347dc5a1df52b408a4d54f", + "fields": { + "code_commune_insee": "80665", + "nom_de_la_commune": "REGNIERE ECLUSE", + "code_postal": "80120", + "coordonnees_gps": [ + 50.2869055108, + 1.76835866685 + ], + "libelle_d_acheminement": "REGNIERE ECLUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76835866685, + 50.2869055108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e57b9ae83282b8e1e3795a68f831a12f4ab0e3c", + "fields": { + "code_commune_insee": "80675", + "nom_de_la_commune": "ROGY", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7129601282, + 2.20475435684 + ], + "libelle_d_acheminement": "ROGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20475435684, + 49.7129601282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f750b4798e7b45dd08365b961da8f396fc395cf6", + "fields": { + "code_commune_insee": "80679", + "nom_de_la_commune": "RONSSOY", + "code_postal": "80740", + "coordonnees_gps": [ + 49.9815157292, + 3.16739555115 + ], + "libelle_d_acheminement": "LE RONSSOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16739555115, + 49.9815157292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "938ed7c1946790fcc935cf9c18660f407558cff6", + "fields": { + "code_commune_insee": "80692", + "nom_de_la_commune": "SAILLY FLIBEAUCOURT", + "code_postal": "80970", + "coordonnees_gps": [ + 50.1796300653, + 1.7706771654 + ], + "libelle_d_acheminement": "SAILLY FLIBEAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7706771654, + 50.1796300653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f774c5cf094f8c6f04f6cf2bb3a21b2c16da9fe2", + "fields": { + "code_commune_insee": "80700", + "nom_de_la_commune": "ST BLIMONT", + "code_postal": "80960", + "coordonnees_gps": [ + 50.1206557505, + 1.56512599712 + ], + "libelle_d_acheminement": "ST BLIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56512599712, + 50.1206557505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08a2418f223163650c4301a1937f205877678567", + "fields": { + "code_commune_insee": "80702", + "nom_de_la_commune": "ST FUSCIEN", + "code_postal": "80680", + "coordonnees_gps": [ + 49.8367821176, + 2.30201932317 + ], + "libelle_d_acheminement": "ST FUSCIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30201932317, + 49.8367821176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5227bef2daac48d1a1db1222fe03b464e143a113", + "fields": { + "code_commune_insee": "80703", + "nom_de_la_commune": "ST GERMAIN SUR BRESLE", + "code_postal": "80430", + "coordonnees_gps": [ + 49.8268454979, + 1.74609362795 + ], + "libelle_d_acheminement": "ST GERMAIN SUR BRESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74609362795, + 49.8268454979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a3349d249d7394359499f7497244abe587c49da", + "fields": { + "code_commune_insee": "80708", + "nom_de_la_commune": "ST MARD", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6891007736, + 2.7565588401 + ], + "libelle_d_acheminement": "ST MARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7565588401, + 49.6891007736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b650772716e552186091ec0ada51be88aad9e2e4", + "fields": { + "code_commune_insee": "80718", + "nom_de_la_commune": "ST SAUVEUR", + "code_postal": "80470", + "coordonnees_gps": [ + 49.9475408658, + 2.21117481051 + ], + "libelle_d_acheminement": "ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21117481051, + 49.9475408658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59340756e2d53c4e0955a29399091ae16f0d2668", + "fields": { + "code_commune_insee": "80724", + "nom_de_la_commune": "SALEUX", + "code_postal": "80480", + "coordonnees_gps": [ + 49.8620778346, + 2.21887634143 + ], + "libelle_d_acheminement": "SALEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21887634143, + 49.8620778346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1e14fa400f4a439710bb64c904841afb893f9dd", + "fields": { + "code_commune_insee": "80734", + "nom_de_la_commune": "SENTELIE", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7209616189, + 2.02322646104 + ], + "libelle_d_acheminement": "SENTELIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02322646104, + 49.7209616189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "267a16f9d18e5d6e207cc4c0c14946eaf4f9f7ec", + "fields": { + "code_commune_insee": "80740", + "nom_de_la_commune": "SOURDON", + "code_postal": "80250", + "coordonnees_gps": [ + 49.7078498657, + 2.40164840104 + ], + "libelle_d_acheminement": "SOURDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40164840104, + 49.7078498657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dbb0e8695b9c23476b046c9efbf5bd6d37fc45d", + "fields": { + "code_commune_insee": "80749", + "nom_de_la_commune": "TERRAMESNIL", + "code_postal": "80600", + "coordonnees_gps": [ + 50.1013778468, + 2.38475513979 + ], + "libelle_d_acheminement": "TERRAMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38475513979, + 50.1013778468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "493c09588d2808870b6b33ed6a1be0ec94380914", + "fields": { + "code_commune_insee": "80751", + "nom_de_la_commune": "THENNES", + "code_postal": "80110", + "coordonnees_gps": [ + 49.803442369, + 2.47935954884 + ], + "libelle_d_acheminement": "THENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47935954884, + 49.803442369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1be33ae7e8fcb11c81c0a8fc2a0d8867c2f13943", + "fields": { + "code_commune_insee": "80762", + "nom_de_la_commune": "TINCOURT BOUCLY", + "code_postal": "80240", + "coordonnees_gps": [ + 49.93851401, + 3.04921316346 + ], + "libelle_d_acheminement": "TINCOURT BOUCLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04921316346, + 49.93851401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "427db3de74f54e92abca57ba4bd9e6631f4e3ca2", + "fields": { + "code_commune_insee": "80771", + "nom_de_la_commune": "UGNY L EQUIPEE", + "code_postal": "80400", + "coordonnees_gps": [ + 49.8148197837, + 3.06721029435 + ], + "libelle_d_acheminement": "UGNY L EQUIPEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06721029435, + 49.8148197837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62dbfd3c00554199e56fc258ba528b444df8b19c", + "fields": { + "code_commune_insee": "80780", + "nom_de_la_commune": "VAUDRICOURT", + "code_postal": "80230", + "coordonnees_gps": [ + 50.1147458279, + 1.54855361274 + ], + "libelle_d_acheminement": "VAUDRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54855361274, + 50.1147458279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6cc61b71cb09c0b3c8f8f29a4bc1421ca149453", + "fields": { + "code_commune_insee": "80791", + "nom_de_la_commune": "VERS SUR SELLE", + "code_postal": "80480", + "coordonnees_gps": [ + 49.8423395184, + 2.22500540619 + ], + "libelle_d_acheminement": "VERS SUR SELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22500540619, + 49.8423395184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eee8f40ff013537853f491119b154ffcef1acde5", + "fields": { + "code_commune_insee": "80793", + "nom_de_la_commune": "VIGNACOURT", + "code_postal": "80650", + "coordonnees_gps": [ + 50.0085076196, + 2.1867884288 + ], + "libelle_d_acheminement": "VIGNACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1867884288, + 50.0085076196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c58be41689a68069b534b50a3a10a7c131ffc079", + "fields": { + "code_commune_insee": "80794", + "nom_de_la_commune": "VILLECOURT", + "code_postal": "80190", + "coordonnees_gps": [ + 49.7984263719, + 2.97270989609 + ], + "libelle_d_acheminement": "VILLECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97270989609, + 49.7984263719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85e7d3801075810ef8559b7b4a347507a028e26d", + "fields": { + "code_commune_insee": "80797", + "nom_de_la_commune": "VILLERS AUX ERABLES", + "code_postal": "80110", + "coordonnees_gps": [ + 49.7918542395, + 2.5288735418 + ], + "libelle_d_acheminement": "VILLERS AUX ERABLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5288735418, + 49.7918542395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58cb3311cc487be6ba498c7bbb8f7ff6ce2f0c21", + "fields": { + "code_commune_insee": "80801", + "nom_de_la_commune": "VILLERS CARBONNEL", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8705708799, + 2.89376668433 + ], + "libelle_d_acheminement": "VILLERS CARBONNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89376668433, + 49.8705708799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bed41f8af7c3e3d5ef406e0c41dd24a9ecf3b20c", + "fields": { + "code_commune_insee": "80802", + "nom_de_la_commune": "VILLERS FAUCON", + "code_postal": "80240", + "coordonnees_gps": [ + 49.9770164855, + 3.10650017982 + ], + "libelle_d_acheminement": "VILLERS FAUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10650017982, + 49.9770164855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef55286f9a8d72bf7d994cf426c26b6a81cdb969", + "fields": { + "code_commune_insee": "80806", + "nom_de_la_commune": "VILLERS SUR AUTHIE", + "code_postal": "80120", + "coordonnees_gps": [ + 50.3184395938, + 1.69211423716 + ], + "libelle_d_acheminement": "VILLERS SUR AUTHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69211423716, + 50.3184395938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fea7992b37d927bf7f8d4451f337934babf786a2", + "fields": { + "code_commune_insee": "80809", + "nom_de_la_commune": "VISMES", + "code_postal": "80140", + "coordonnees_gps": [ + 50.0029271112, + 1.6708655212 + ], + "libelle_d_acheminement": "VISMES AU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6708655212, + 50.0029271112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c8d3b79f84d9cff9939cd3bed0dbb80d97be1d4", + "fields": { + "code_commune_insee": "80810", + "nom_de_la_commune": "VITZ SUR AUTHIE", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2467291978, + 2.05531402827 + ], + "libelle_d_acheminement": "VITZ SUR AUTHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05531402827, + 50.2467291978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c313fe9438337241b2cff90fd54248064951bc4c", + "fields": { + "code_commune_insee": "80811", + "nom_de_la_commune": "VOYENNES", + "code_postal": "80400", + "coordonnees_gps": [ + 49.7690921443, + 2.9844476988 + ], + "libelle_d_acheminement": "VOYENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9844476988, + 49.7690921443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3818af56211ebe0d2a59c642b67be3e6b70bafda", + "fields": { + "code_commune_insee": "80821", + "nom_de_la_commune": "WARLUS", + "code_postal": "80270", + "coordonnees_gps": [ + 49.9175121218, + 1.95654713132 + ], + "libelle_d_acheminement": "WARLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95654713132, + 49.9175121218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28a3152d588c853f4d5863c570669a24ee2f697d", + "fields": { + "code_commune_insee": "80822", + "nom_de_la_commune": "WARSY", + "code_postal": "80500", + "coordonnees_gps": [ + 49.7057838726, + 2.64397079237 + ], + "libelle_d_acheminement": "WARSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64397079237, + 49.7057838726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6446f6e4c0bb41b14c1ae654ffb81b048edd6066", + "fields": { + "code_commune_insee": "80829", + "nom_de_la_commune": "Y", + "code_postal": "80190", + "coordonnees_gps": [ + 49.8021266521, + 2.98611736598 + ], + "libelle_d_acheminement": "Y" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98611736598, + 49.8021266521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daf574e51757143d9a2a997ef4ff556fc3c4cc6c", + "fields": { + "code_commune_insee": "80832", + "nom_de_la_commune": "YVRENCH", + "code_postal": "80150", + "coordonnees_gps": [ + 50.1846847389, + 2.01563427911 + ], + "libelle_d_acheminement": "YVRENCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01563427911, + 50.1846847389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "686a9e37ff14ad78120251735c3efdfaf368e95e", + "fields": { + "code_commune_insee": "81013", + "nom_de_la_commune": "ANDOUQUE", + "code_postal": "81350", + "coordonnees_gps": [ + 44.0085365227, + 2.30256637897 + ], + "libelle_d_acheminement": "ANDOUQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30256637897, + 44.0085365227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c18b7720e25983a9cb49bf66b23926acca8ecce1", + "fields": { + "code_commune_insee": "81025", + "nom_de_la_commune": "BELCASTEL", + "code_postal": "81500", + "coordonnees_gps": [ + 43.6490033004, + 1.7499203412 + ], + "libelle_d_acheminement": "BELCASTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7499203412, + 43.6490033004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f0819ef2bf3c8e06765803d37ca3320216034be", + "fields": { + "code_commune_insee": "81027", + "nom_de_la_commune": "BELLESERRE", + "code_postal": "81540", + "coordonnees_gps": [ + 43.4898977584, + 2.05991842969 + ], + "libelle_d_acheminement": "BELLESERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05991842969, + 43.4898977584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9697fe8959425282393f9ac2fed5b169e61b5ce3", + "fields": { + "code_commune_insee": "81029", + "nom_de_la_commune": "BERNAC", + "code_postal": "81150", + "coordonnees_gps": [ + 43.9532150821, + 2.02995456926 + ], + "libelle_d_acheminement": "BERNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02995456926, + 43.9532150821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b65fe30863f87ef0c565f1b498089dcf434fcd5", + "fields": { + "code_commune_insee": "81031", + "nom_de_la_commune": "LE BEZ", + "code_postal": "81260", + "coordonnees_gps": [ + 43.6222146708, + 2.45271515235 + ], + "libelle_d_acheminement": "LE BEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45271515235, + 43.6222146708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70abdfa124ce8850d01e46d5295cfc801d1247a3", + "fields": { + "code_commune_insee": "81032", + "nom_de_la_commune": "BLAN", + "code_postal": "81700", + "coordonnees_gps": [ + 43.5195201544, + 2.02369927552 + ], + "libelle_d_acheminement": "BLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02369927552, + 43.5195201544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4982d399afe85e7a644e8adff455fcd1c4bc8858", + "fields": { + "code_commune_insee": "81036", + "nom_de_la_commune": "BOUT DU PONT DE LARN", + "code_postal": "81660", + "coordonnees_gps": [ + 43.5015583238, + 2.42981143239 + ], + "libelle_d_acheminement": "BOUT DU PONT DE LARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42981143239, + 43.5015583238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efad660fe3ec63267984bc5414e23dc8852bb476", + "fields": { + "code_commune_insee": "81037", + "nom_de_la_commune": "BRASSAC", + "code_postal": "81260", + "coordonnees_gps": [ + 43.6117373541, + 2.51133931505 + ], + "libelle_d_acheminement": "BRASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51133931505, + 43.6117373541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca7be198e0bf30c350ceb57cd49c72a53b32351b", + "fields": { + "code_commune_insee": "81039", + "nom_de_la_commune": "BRIATEXTE", + "code_postal": "81390", + "coordonnees_gps": [ + 43.747193404, + 1.92377964856 + ], + "libelle_d_acheminement": "BRIATEXTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92377964856, + 43.747193404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5af1bdbcc9f2f6d3b1be09057aa51b3305da07d3", + "fields": { + "code_commune_insee": "81045", + "nom_de_la_commune": "LES CABANNES", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0758753553, + 1.928670835 + ], + "libelle_d_acheminement": "LES CABANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.928670835, + 44.0758753553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bdb5bf9446bc5867fbc39a12f28526a13e3c1f0", + "fields": { + "code_commune_insee": "81046", + "nom_de_la_commune": "CADALEN", + "code_postal": "81600", + "coordonnees_gps": [ + 43.8430473493, + 1.9835948491 + ], + "libelle_d_acheminement": "CADALEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9835948491, + 43.8430473493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d5a65798c9a7c399d71513383dc71503f7888b5", + "fields": { + "code_commune_insee": "81058", + "nom_de_la_commune": "CARBES", + "code_postal": "81570", + "coordonnees_gps": [ + 43.6353726667, + 2.15170395201 + ], + "libelle_d_acheminement": "CARBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15170395201, + 43.6353726667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "533a0559adf03ea3dd5801c5f28ddc99cc2b90ed", + "fields": { + "code_commune_insee": "81060", + "nom_de_la_commune": "CARMAUX", + "code_postal": "81400", + "coordonnees_gps": [ + 44.0566667256, + 2.16641418483 + ], + "libelle_d_acheminement": "CARMAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16641418483, + 44.0566667256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6a933fd516589a4c3eee1ee9843f6c30ed794ae", + "fields": { + "ligne_5": "LE MARGNES", + "code_commune_insee": "81062", + "libelle_d_acheminement": "FONTRIEU", + "code_postal": "81260", + "nom_de_la_commune": "FONTRIEU", + "coordonnees_gps": [ + 43.6578748652, + 2.52758390349 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52758390349, + 43.6578748652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "370d3e599187508eb2b5ca45196d439e3de5fcba", + "fields": { + "code_commune_insee": "81064", + "nom_de_la_commune": "CASTELNAU DE MONTMIRAL", + "code_postal": "81140", + "coordonnees_gps": [ + 43.9867805665, + 1.78310029174 + ], + "libelle_d_acheminement": "CASTELNAU DE MONTMIRAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78310029174, + 43.9867805665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa1b491900bcc16531d820444692665bf6ff1bb9", + "fields": { + "code_commune_insee": "81075", + "nom_de_la_commune": "CUQ", + "code_postal": "81570", + "coordonnees_gps": [ + 43.6534622232, + 2.08686344957 + ], + "libelle_d_acheminement": "CUQ LES VIELMUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08686344957, + 43.6534622232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bf259971e253114571c6a806c887625766aba7e", + "fields": { + "code_commune_insee": "81078", + "nom_de_la_commune": "DAMIATTE", + "code_postal": "81220", + "coordonnees_gps": [ + 43.6801644905, + 1.98487101085 + ], + "libelle_d_acheminement": "DAMIATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98487101085, + 43.6801644905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de8e7c8dbebacbbcd81f3859dd61c2b793ce39e4", + "fields": { + "code_commune_insee": "81079", + "nom_de_la_commune": "DENAT", + "code_postal": "81120", + "coordonnees_gps": [ + 43.8395342344, + 2.20292263193 + ], + "libelle_d_acheminement": "DENAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20292263193, + 43.8395342344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "963a003dec726aabbb09883186dcdf696fb6666b", + "fields": { + "code_commune_insee": "81083", + "nom_de_la_commune": "DURFORT", + "code_postal": "81540", + "coordonnees_gps": [ + 43.4316297615, + 2.07369430679 + ], + "libelle_d_acheminement": "DURFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07369430679, + 43.4316297615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25178e75e2144baacf6a96515273558dc99e6c52", + "fields": { + "code_commune_insee": "81090", + "nom_de_la_commune": "FENOLS", + "code_postal": "81600", + "coordonnees_gps": [ + 43.8495035215, + 2.0559946114 + ], + "libelle_d_acheminement": "FENOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0559946114, + 43.8495035215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d919a13c361fceab924877ba7e9abae39238eb4a", + "fields": { + "code_commune_insee": "81093", + "nom_de_la_commune": "FLORENTIN", + "code_postal": "81150", + "coordonnees_gps": [ + 43.8854183688, + 2.02985845557 + ], + "libelle_d_acheminement": "FLORENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02985845557, + 43.8854183688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4b0ddc051d5cc899d5c8c5bbb5a993fafe19d9a", + "fields": { + "code_commune_insee": "81101", + "nom_de_la_commune": "LE GARRIC", + "code_postal": "81450", + "coordonnees_gps": [ + 44.0037171687, + 2.17389452679 + ], + "libelle_d_acheminement": "LE GARRIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17389452679, + 44.0037171687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0adb94add1bcef2689ce49e8ad60982f3a1ef4f4", + "fields": { + "code_commune_insee": "81102", + "nom_de_la_commune": "GARRIGUES", + "code_postal": "81500", + "coordonnees_gps": [ + 43.7023216398, + 1.70252072015 + ], + "libelle_d_acheminement": "GARRIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70252072015, + 43.7023216398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "258437956b5cf50987fb1b9e3878c1cfe1f0ae50", + "fields": { + "code_commune_insee": "81103", + "nom_de_la_commune": "GIJOUNET", + "code_postal": "81530", + "coordonnees_gps": [ + 43.7086383837, + 2.6070098158 + ], + "libelle_d_acheminement": "GIJOUNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6070098158, + 43.7086383837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fa05d8ac3575988663d9ab5e10f2793ab74dc3a", + "fields": { + "code_commune_insee": "81104", + "nom_de_la_commune": "GIROUSSENS", + "code_postal": "81500", + "coordonnees_gps": [ + 43.769779769, + 1.7967421125 + ], + "libelle_d_acheminement": "GIROUSSENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7967421125, + 43.769779769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0570564de27a6cd9e93e10835615bbe6aa53c73c", + "fields": { + "code_commune_insee": "81117", + "nom_de_la_commune": "LABESSIERE CANDEIL", + "code_postal": "81300", + "coordonnees_gps": [ + 43.8006328321, + 2.02071432029 + ], + "libelle_d_acheminement": "LABESSIERE CANDEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02071432029, + 43.8006328321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77541872cdb7b487621009a8cce717504ff00a4d", + "fields": { + "code_commune_insee": "81131", + "nom_de_la_commune": "LAGRAVE", + "code_postal": "81150", + "coordonnees_gps": [ + 43.8931087297, + 1.99033789406 + ], + "libelle_d_acheminement": "LAGRAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99033789406, + 43.8931087297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "372d8c656777322e89ae07b7ab3ed999afbe6b31", + "fields": { + "code_commune_insee": "81132", + "nom_de_la_commune": "GUITALENS L ALBAREDE", + "code_postal": "81220", + "coordonnees_gps": [ + 43.6378592707, + 2.04358289042 + ], + "libelle_d_acheminement": "GUITALENS L ALBAREDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04358289042, + 43.6378592707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "805097f267aaba437cc56cd39c7435c64c94ed68", + "fields": { + "code_commune_insee": "81135", + "nom_de_la_commune": "LAPARROUQUIAL", + "code_postal": "81640", + "coordonnees_gps": [ + 44.1216197815, + 2.02846018136 + ], + "libelle_d_acheminement": "LAPARROUQUIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02846018136, + 44.1216197815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce104e39d8b503eb4f6c240c5644abce69a79f2d", + "fields": { + "code_commune_insee": "81139", + "nom_de_la_commune": "LAUTREC", + "code_postal": "81440", + "coordonnees_gps": [ + 43.7052468491, + 2.12929403349 + ], + "libelle_d_acheminement": "LAUTREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12929403349, + 43.7052468491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4747470fd6764363263eb2cf00ce0b8620df7eb0", + "fields": { + "code_commune_insee": "81142", + "nom_de_la_commune": "LEMPAUT", + "code_postal": "81700", + "coordonnees_gps": [ + 43.5250362218, + 2.06781659289 + ], + "libelle_d_acheminement": "LEMPAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06781659289, + 43.5250362218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3808a1cf1f8f27d05649bc5d204970bd23bfb978", + "fields": { + "code_commune_insee": "81145", + "nom_de_la_commune": "LISLE SUR TARN", + "code_postal": "81310", + "coordonnees_gps": [ + 43.8974980421, + 1.78200143861 + ], + "libelle_d_acheminement": "LISLE SUR TARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78200143861, + 43.8974980421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efa6b21fecf5ac6c20043ba6f8c38ff80defc437", + "fields": { + "code_commune_insee": "81147", + "nom_de_la_commune": "LOMBERS", + "code_postal": "81120", + "coordonnees_gps": [ + 43.8159438532, + 2.1438851027 + ], + "libelle_d_acheminement": "LOMBERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1438851027, + 43.8159438532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48e7ff37073492f1fdc953c5b3e71c1669f9b412", + "fields": { + "code_commune_insee": "81150", + "nom_de_la_commune": "LUGAN", + "code_postal": "81500", + "coordonnees_gps": [ + 43.7330225833, + 1.71750529961 + ], + "libelle_d_acheminement": "LUGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71750529961, + 43.7330225833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "113719d319e15c3437569273890885f8b6de093f", + "fields": { + "code_commune_insee": "81158", + "nom_de_la_commune": "LE MASNAU MASSUGUIES", + "code_postal": "81530", + "coordonnees_gps": [ + 43.8093121675, + 2.53889440751 + ], + "libelle_d_acheminement": "LE MASNAU MASSUGUIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53889440751, + 43.8093121675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50d0cf381b128b76da883d4077faa3cc18da1ba3", + "fields": { + "code_commune_insee": "81163", + "nom_de_la_commune": "MAZAMET", + "code_postal": "81200", + "coordonnees_gps": [ + 43.4578780341, + 2.3885346913 + ], + "libelle_d_acheminement": "MAZAMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3885346913, + 43.4578780341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41de748a3eed8fb415847a00a34520da91db3be3", + "fields": { + "code_commune_insee": "81169", + "nom_de_la_commune": "MISSECLE", + "code_postal": "81300", + "coordonnees_gps": [ + 43.7204559447, + 1.98643784492 + ], + "libelle_d_acheminement": "MISSECLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98643784492, + 43.7204559447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f0b63e48357f5a6433b65103dcd193a0ea82d8a", + "fields": { + "code_commune_insee": "81171", + "nom_de_la_commune": "MONTANS", + "code_postal": "81600", + "coordonnees_gps": [ + 43.850225684, + 1.86631554262 + ], + "libelle_d_acheminement": "MONTANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86631554262, + 43.850225684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "523a0e48eb6c46efd2a3548a0dfe95219cfab6b7", + "fields": { + "code_commune_insee": "81174", + "nom_de_la_commune": "MONTDRAGON", + "code_postal": "81440", + "coordonnees_gps": [ + 43.7753099488, + 2.09549518318 + ], + "libelle_d_acheminement": "MONTDRAGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09549518318, + 43.7753099488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "616a0e6418781587ef18b652379545c780a61e36", + "fields": { + "code_commune_insee": "81176", + "nom_de_la_commune": "MONTELS", + "code_postal": "81140", + "coordonnees_gps": [ + 43.9645484948, + 1.88698205993 + ], + "libelle_d_acheminement": "MONTELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88698205993, + 43.9645484948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e32846b58ef50c3c669d8f59d69a18b16e8b182", + "fields": { + "code_commune_insee": "81179", + "nom_de_la_commune": "MONTGEY", + "code_postal": "81470", + "coordonnees_gps": [ + 43.5093604, + 1.9451968725 + ], + "libelle_d_acheminement": "MONTGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9451968725, + 43.5093604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f83803296e10cecc38288e892f796732a52d5863", + "fields": { + "code_commune_insee": "81182", + "nom_de_la_commune": "MONTREDON LABESSONNIE", + "code_postal": "81360", + "coordonnees_gps": [ + 43.7243034141, + 2.32124891411 + ], + "libelle_d_acheminement": "MONTREDON LABESSONNIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32124891411, + 43.7243034141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88017dcddc97becb24034f29117d42a52c34cbd5", + "fields": { + "code_commune_insee": "81193", + "nom_de_la_commune": "NAGES", + "code_postal": "81320", + "coordonnees_gps": [ + 43.6552500553, + 2.77047071687 + ], + "libelle_d_acheminement": "NAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77047071687, + 43.6552500553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fcb6221b1f2b06c6e233e3a2d352e36c2db7428", + "fields": { + "code_commune_insee": "81210", + "nom_de_la_commune": "POUDIS", + "code_postal": "81700", + "coordonnees_gps": [ + 43.5242225907, + 1.98138103273 + ], + "libelle_d_acheminement": "POUDIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98138103273, + 43.5242225907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aadbd323ac62f6d0192225781210b88ec5ec578", + "fields": { + "ligne_5": "LABASTIDE DENAT", + "code_commune_insee": "81218", + "libelle_d_acheminement": "PUYGOUZON", + "code_postal": "81120", + "nom_de_la_commune": "PUYGOUZON", + "coordonnees_gps": [ + 43.8884573228, + 2.16955643928 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16955643928, + 43.8884573228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa12397b0bed26ad308b0673aa88ff902b82fbdf", + "fields": { + "code_commune_insee": "81221", + "nom_de_la_commune": "RAYSSAC", + "code_postal": "81330", + "coordonnees_gps": [ + 43.8037266652, + 2.42461409466 + ], + "libelle_d_acheminement": "RAYSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42461409466, + 43.8037266652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2cfeedb1b4d20d4a44b8997d90776cda7aac09c", + "fields": { + "code_commune_insee": "81229", + "nom_de_la_commune": "ROQUEVIDAL", + "code_postal": "81470", + "coordonnees_gps": [ + 43.6227131725, + 1.86053264834 + ], + "libelle_d_acheminement": "ROQUEVIDAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86053264834, + 43.6227131725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f50efff82580529dec0e7ecd009f270e1713bfac", + "fields": { + "code_commune_insee": "81230", + "nom_de_la_commune": "ROSIERES", + "code_postal": "81400", + "coordonnees_gps": [ + 44.0411555772, + 2.19724002021 + ], + "libelle_d_acheminement": "ROSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19724002021, + 44.0411555772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7516b48b6eea28f99ab4698d2696a7461ceaac9a", + "fields": { + "code_commune_insee": "81231", + "nom_de_la_commune": "ROUAIROUX", + "code_postal": "81240", + "coordonnees_gps": [ + 43.4951010568, + 2.56621532287 + ], + "libelle_d_acheminement": "ROUAIROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56621532287, + 43.4951010568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e57a700dce8cb44932fe676ec5600c361941cceb", + "fields": { + "ligne_5": "LE TRAVET", + "code_commune_insee": "81233", + "libelle_d_acheminement": "TERRE DE BANCALIE", + "code_postal": "81120", + "nom_de_la_commune": "TERRE DE BANCALIE", + "coordonnees_gps": [ + 43.8091924031, + 2.26353154386 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26353154386, + 43.8091924031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a59865a6e37dac5fa563b282cf415b241cc8da27", + "fields": { + "code_commune_insee": "81239", + "nom_de_la_commune": "ST AMANS VALTORET", + "code_postal": "81240", + "coordonnees_gps": [ + 43.506155075, + 2.50072448307 + ], + "libelle_d_acheminement": "ST AMANS VALTORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50072448307, + 43.506155075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69a106ce93b86ed0ba7a7b715a4e4aa148dc0878", + "fields": { + "code_commune_insee": "81244", + "nom_de_la_commune": "ST BENOIT DE CARMAUX", + "code_postal": "81400", + "coordonnees_gps": [ + 44.0544138951, + 2.12958421961 + ], + "libelle_d_acheminement": "ST BENOIT DE CARMAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12958421961, + 44.0544138951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "297a7ed3154d77d424e7197b437fa2a026963f41", + "fields": { + "code_commune_insee": "81245", + "nom_de_la_commune": "ST CHRISTOPHE", + "code_postal": "81190", + "coordonnees_gps": [ + 44.1526839554, + 2.0435980246 + ], + "libelle_d_acheminement": "ST CHRISTOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0435980246, + 44.1526839554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43e04b5b4e7daccbfeaea16b6807764eeb9859cb", + "fields": { + "code_commune_insee": "81251", + "nom_de_la_commune": "ST GERMAIN DES PRES", + "code_postal": "81700", + "coordonnees_gps": [ + 43.5628494713, + 2.07801085173 + ], + "libelle_d_acheminement": "ST GERMAIN DES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07801085173, + 43.5628494713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c41309be68fe2524ae43d454209b6ec3d2890bb5", + "fields": { + "code_commune_insee": "81252", + "nom_de_la_commune": "ST GERMIER", + "code_postal": "81210", + "coordonnees_gps": [ + 43.6768633717, + 2.23011176634 + ], + "libelle_d_acheminement": "ST GERMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23011176634, + 43.6768633717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b8b09f953e690cdaa6516ea9044aa803cab6684", + "fields": { + "code_commune_insee": "81262", + "nom_de_la_commune": "ST MARCEL CAMPES", + "code_postal": "81170", + "coordonnees_gps": [ + 44.083875553, + 2.00175106626 + ], + "libelle_d_acheminement": "ST MARCEL CAMPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00175106626, + 44.083875553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9da815df6b5814d9424a0bafa7c5f8fcfc3306b", + "fields": { + "code_commune_insee": "81269", + "nom_de_la_commune": "ST SALVY DE LA BALME", + "code_postal": "81490", + "coordonnees_gps": [ + 43.6117421353, + 2.37969793328 + ], + "libelle_d_acheminement": "ST SALVY DE LA BALME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37969793328, + 43.6117421353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dae77f01c4e7bb65e65d3d03fed8df5cb2126d8b", + "fields": { + "code_commune_insee": "81277", + "nom_de_la_commune": "SAUSSENAC", + "code_postal": "81350", + "coordonnees_gps": [ + 43.9932298671, + 2.2548403386 + ], + "libelle_d_acheminement": "SAUSSENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2548403386, + 43.9932298671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35312b3225fd184d31ee933093d5ebe4fb810424", + "fields": { + "code_commune_insee": "81279", + "nom_de_la_commune": "LA SAUZIERE ST JEAN", + "code_postal": "81630", + "coordonnees_gps": [ + 43.9540521322, + 1.64862996342 + ], + "libelle_d_acheminement": "LA SAUZIERE ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64862996342, + 43.9540521322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea8fc41c99123d3471b8c873410f06da261fe3bd", + "fields": { + "code_commune_insee": "81295", + "nom_de_la_commune": "TEILLET", + "code_postal": "81120", + "coordonnees_gps": [ + 43.8441490915, + 2.34648455097 + ], + "libelle_d_acheminement": "TEILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34648455097, + 43.8441490915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0da4216c7e3d4fb9b74a6e178528e7bcdd3552be", + "fields": { + "code_commune_insee": "81298", + "nom_de_la_commune": "TEULAT", + "code_postal": "81500", + "coordonnees_gps": [ + 43.636472694, + 1.71125634888 + ], + "libelle_d_acheminement": "TEULAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71125634888, + 43.636472694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b27c1b89b9cecbd345c58183750750b9674954a", + "fields": { + "code_commune_insee": "81303", + "nom_de_la_commune": "TREBAS", + "code_postal": "81340", + "coordonnees_gps": [ + 43.9548189483, + 2.48899274991 + ], + "libelle_d_acheminement": "TREBAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48899274991, + 43.9548189483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f21c1fb16de8ac55254af9da572cf223772659af", + "fields": { + "code_commune_insee": "81305", + "nom_de_la_commune": "VABRE", + "code_postal": "81330", + "coordonnees_gps": [ + 43.7055461062, + 2.42328565025 + ], + "libelle_d_acheminement": "VABRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42328565025, + 43.7055461062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e1970079ac08e23dcffa285f70d315391868fb9", + "fields": { + "code_commune_insee": "81306", + "nom_de_la_commune": "VALDERIES", + "code_postal": "81350", + "coordonnees_gps": [ + 44.0186880847, + 2.23180106024 + ], + "libelle_d_acheminement": "VALDERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23180106024, + 44.0186880847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d632e35e2e1367b050d9162da92618dad2e7d63", + "fields": { + "code_commune_insee": "81310", + "nom_de_la_commune": "VEILHES", + "code_postal": "81500", + "coordonnees_gps": [ + 43.6178149408, + 1.81786230309 + ], + "libelle_d_acheminement": "VEILHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81786230309, + 43.6178149408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31787b00a3fdc4f4013ab65cf7dde42a8c676ecd", + "fields": { + "code_commune_insee": "81313", + "nom_de_la_commune": "LE VERDIER", + "code_postal": "81140", + "coordonnees_gps": [ + 43.9942529468, + 1.83850790664 + ], + "libelle_d_acheminement": "LE VERDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83850790664, + 43.9942529468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71c617e94fd1853b89ddebfb20356245b65f29aa", + "fields": { + "code_commune_insee": "81317", + "nom_de_la_commune": "VILLEFRANCHE D ALBIGEOIS", + "code_postal": "81430", + "coordonnees_gps": [ + 43.8923990872, + 2.32246933503 + ], + "libelle_d_acheminement": "VILLEFRANCHE D ALBIGEOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32246933503, + 43.8923990872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7a58f3cfbe0ce08c022ffedd6fdc5312f146bd7", + "fields": { + "code_commune_insee": "81322", + "nom_de_la_commune": "VIRAC", + "code_postal": "81640", + "coordonnees_gps": [ + 44.0426130975, + 2.05366411688 + ], + "libelle_d_acheminement": "VIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05366411688, + 44.0426130975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06c673f6678914d3897b581015470a42f3fd4b97", + "fields": { + "code_commune_insee": "82002", + "nom_de_la_commune": "ALBIAS", + "code_postal": "82350", + "coordonnees_gps": [ + 44.0815971851, + 1.44856431622 + ], + "libelle_d_acheminement": "ALBIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44856431622, + 44.0815971851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ebb2b926f22f043a5d7f31d25967583acd1e807", + "fields": { + "code_commune_insee": "82007", + "nom_de_la_commune": "AUTY", + "code_postal": "82220", + "coordonnees_gps": [ + 44.1889226535, + 1.4694372153 + ], + "libelle_d_acheminement": "AUTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4694372153, + 44.1889226535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa7e0890ccadd06fc8ae141c5ec48b1d7ecf9837", + "fields": { + "code_commune_insee": "82008", + "nom_de_la_commune": "AUVILLAR", + "code_postal": "82340", + "coordonnees_gps": [ + 44.0585023466, + 0.887408574561 + ], + "libelle_d_acheminement": "AUVILLAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.887408574561, + 44.0585023466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01296fee67fd28c5581b00f00636a84fd388f6ba", + "fields": { + "code_commune_insee": "82010", + "nom_de_la_commune": "BARDIGUES", + "code_postal": "82340", + "coordonnees_gps": [ + 44.0297663201, + 0.891549889681 + ], + "libelle_d_acheminement": "BARDIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.891549889681, + 44.0297663201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73cc020439275d6b5f135ef95946b834550d2ab4", + "fields": { + "code_commune_insee": "82013", + "nom_de_la_commune": "BEAUMONT DE LOMAGNE", + "code_postal": "82500", + "coordonnees_gps": [ + 43.876728355, + 1.01059588806 + ], + "libelle_d_acheminement": "BEAUMONT DE LOMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01059588806, + 43.876728355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bd348ee054d561682911d84dc7faa475f744f6b", + "fields": { + "code_commune_insee": "82017", + "nom_de_la_commune": "BESSENS", + "code_postal": "82170", + "coordonnees_gps": [ + 43.8878683292, + 1.27054717739 + ], + "libelle_d_acheminement": "BESSENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27054717739, + 43.8878683292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80860830f452edc4258fe8c1fdbe210d4911b757", + "fields": { + "code_commune_insee": "82022", + "nom_de_la_commune": "BOURG DE VISA", + "code_postal": "82190", + "coordonnees_gps": [ + 44.250966127, + 0.949785780231 + ], + "libelle_d_acheminement": "BOURG DE VISA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.949785780231, + 44.250966127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35ee1bfd96ee6b804c47ffb122f59bafb94ca371", + "fields": { + "code_commune_insee": "82030", + "nom_de_la_commune": "CASTELFERRUS", + "code_postal": "82100", + "coordonnees_gps": [ + 44.0050177844, + 1.09114738889 + ], + "libelle_d_acheminement": "CASTELFERRUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09114738889, + 44.0050177844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11c7dc20deac12a3d1f3f5d45c9cbb922107363a", + "fields": { + "code_commune_insee": "82037", + "nom_de_la_commune": "CAUSSADE", + "code_postal": "82300", + "coordonnees_gps": [ + 44.1565421874, + 1.54351161487 + ], + "libelle_d_acheminement": "CAUSSADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54351161487, + 44.1565421874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a45b779910b5b08819156096710271753ebe96e5", + "fields": { + "code_commune_insee": "82038", + "nom_de_la_commune": "CAYLUS", + "code_postal": "82160", + "coordonnees_gps": [ + 44.2420637295, + 1.75360869362 + ], + "libelle_d_acheminement": "CAYLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75360869362, + 44.2420637295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e8d8eca5867d6cad9e77213fb374fdee2d530d1", + "fields": { + "code_commune_insee": "82051", + "nom_de_la_commune": "DURFORT LACAPELETTE", + "code_postal": "82390", + "coordonnees_gps": [ + 44.1832337484, + 1.14143724607 + ], + "libelle_d_acheminement": "DURFORT LACAPELETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14143724607, + 44.1832337484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce5aaf22ebdb404277822fd5d43cca75e56af579", + "fields": { + "code_commune_insee": "82054", + "nom_de_la_commune": "ESPALAIS", + "code_postal": "82400", + "coordonnees_gps": [ + 44.0763853292, + 0.914122599798 + ], + "libelle_d_acheminement": "ESPALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.914122599798, + 44.0763853292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2bcf2f52c90d46353cea6e02bf6e42e3f1637e0", + "fields": { + "code_commune_insee": "82055", + "nom_de_la_commune": "ESPARSAC", + "code_postal": "82500", + "coordonnees_gps": [ + 43.9115019162, + 0.947377490224 + ], + "libelle_d_acheminement": "ESPARSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.947377490224, + 43.9115019162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c27e913ed3ac276cadab2640069ce2de5972902", + "fields": { + "code_commune_insee": "82056", + "nom_de_la_commune": "ESPINAS", + "code_postal": "82160", + "coordonnees_gps": [ + 44.1967176562, + 1.7923386672 + ], + "libelle_d_acheminement": "ESPINAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7923386672, + 44.1967176562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f466641235fcbef03592a6546f3febee768c6df", + "fields": { + "code_commune_insee": "82059", + "nom_de_la_commune": "FAUDOAS", + "code_postal": "82500", + "coordonnees_gps": [ + 43.8335413145, + 0.967332331087 + ], + "libelle_d_acheminement": "FAUDOAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.967332331087, + 43.8335413145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a37eeb9ea4a4249156e5778c480036225296bc4", + "fields": { + "code_commune_insee": "82063", + "nom_de_la_commune": "GARGANVILLAR", + "code_postal": "82100", + "coordonnees_gps": [ + 43.9752270104, + 1.06428038626 + ], + "libelle_d_acheminement": "GARGANVILLAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06428038626, + 43.9752270104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfbf6933f54ee9665ab43d8374d2c7ade9461f1e", + "fields": { + "code_commune_insee": "82069", + "nom_de_la_commune": "GINALS", + "code_postal": "82330", + "coordonnees_gps": [ + 44.2198870277, + 1.87837880794 + ], + "libelle_d_acheminement": "GINALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87837880794, + 44.2198870277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e42be12d94592be53c68bed9220ac5685f137afd", + "fields": { + "code_commune_insee": "82070", + "nom_de_la_commune": "GLATENS", + "code_postal": "82500", + "coordonnees_gps": [ + 43.8944756908, + 0.919896857009 + ], + "libelle_d_acheminement": "GLATENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.919896857009, + 43.8944756908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96d687d426bf1a67d7b3d3d7fc3f73c0148a5ddf", + "fields": { + "code_commune_insee": "82071", + "nom_de_la_commune": "GOAS", + "code_postal": "82500", + "coordonnees_gps": [ + 43.8150768113, + 0.960854244996 + ], + "libelle_d_acheminement": "GOAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.960854244996, + 43.8150768113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeec4f8179280e620d6e2676c90a8ce164119e30", + "fields": { + "code_commune_insee": "82072", + "nom_de_la_commune": "GOLFECH", + "code_postal": "82400", + "coordonnees_gps": [ + 44.1100274334, + 0.856994008348 + ], + "libelle_d_acheminement": "GOLFECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.856994008348, + 44.1100274334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12a97865e5d147cbc96c9666190d94e1df24ec95", + "fields": { + "code_commune_insee": "82082", + "nom_de_la_commune": "LACAPELLE LIVRON", + "code_postal": "82160", + "coordonnees_gps": [ + 44.2719783963, + 1.79012954535 + ], + "libelle_d_acheminement": "LACAPELLE LIVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79012954535, + 44.2719783963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccca08504e1304fc921a4152af8eb2fdc645aad3", + "fields": { + "code_commune_insee": "82088", + "nom_de_la_commune": "LAGUEPIE", + "code_postal": "82250", + "coordonnees_gps": [ + 44.163304209, + 1.95842635186 + ], + "libelle_d_acheminement": "LAGUEPIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95842635186, + 44.163304209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "472a4fecdb052145e0e97f73d978c7d327163bb4", + "fields": { + "code_commune_insee": "82093", + "nom_de_la_commune": "LARRAZET", + "code_postal": "82500", + "coordonnees_gps": [ + 43.9324522931, + 1.08287865971 + ], + "libelle_d_acheminement": "LARRAZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08287865971, + 43.9324522931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76180fd83c2f767b62d6253cdc98da354cec4b93", + "fields": { + "code_commune_insee": "82094", + "nom_de_la_commune": "LAUZERTE", + "code_postal": "82110", + "coordonnees_gps": [ + 44.2642995725, + 1.12713270139 + ], + "libelle_d_acheminement": "LAUZERTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12713270139, + 44.2642995725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab1e56916fac75be17c242d3f7cdc1a90beebbb0", + "fields": { + "code_commune_insee": "82095", + "nom_de_la_commune": "LAVAURETTE", + "code_postal": "82240", + "coordonnees_gps": [ + 44.2073975213, + 1.66999511722 + ], + "libelle_d_acheminement": "LAVAURETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66999511722, + 44.2073975213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4151eaa53b75392a4d49a30a54442ec53680a783", + "fields": { + "code_commune_insee": "82097", + "nom_de_la_commune": "LAVIT", + "code_postal": "82120", + "coordonnees_gps": [ + 43.9560822139, + 0.925072043975 + ], + "libelle_d_acheminement": "LAVIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.925072043975, + 43.9560822139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53cf30d9d69ee1e3575402be4be56b3eaf94d27d", + "fields": { + "code_commune_insee": "82104", + "nom_de_la_commune": "MARSAC", + "code_postal": "82120", + "coordonnees_gps": [ + 43.9414664825, + 0.829474499399 + ], + "libelle_d_acheminement": "MARSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.829474499399, + 43.9414664825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afc568c956611610967fd78d67769c809762bfe6", + "fields": { + "code_commune_insee": "82106", + "nom_de_la_commune": "MAUBEC", + "code_postal": "82500", + "coordonnees_gps": [ + 43.8036755051, + 0.924111218572 + ], + "libelle_d_acheminement": "MAUBEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.924111218572, + 43.8036755051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c0cf089defaeee4f250adf93824c68460ae13d5", + "fields": { + "code_commune_insee": "82120", + "nom_de_la_commune": "MONTASTRUC", + "code_postal": "82130", + "coordonnees_gps": [ + 44.1037069376, + 1.29437012886 + ], + "libelle_d_acheminement": "MONTASTRUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29437012886, + 44.1037069376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fbebce7b7927210337ae20eaf70bd265796394c", + "fields": { + "code_commune_insee": "82122", + "nom_de_la_commune": "MONTBARLA", + "code_postal": "82110", + "coordonnees_gps": [ + 44.2136604431, + 1.08193556134 + ], + "libelle_d_acheminement": "MONTBARLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08193556134, + 44.2136604431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a7aa336fccfbf417a0d2d68489860adca791401", + "fields": { + "code_commune_insee": "82126", + "nom_de_la_commune": "MONTEILS", + "code_postal": "82300", + "coordonnees_gps": [ + 44.1717870381, + 1.56537726368 + ], + "libelle_d_acheminement": "MONTEILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56537726368, + 44.1717870381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72bf13bfa221a7626fa18d16ce6b3b1bec0e3614", + "fields": { + "code_commune_insee": "82138", + "nom_de_la_commune": "PERVILLE", + "code_postal": "82400", + "coordonnees_gps": [ + 44.1808489107, + 0.880636817107 + ], + "libelle_d_acheminement": "PERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.880636817107, + 44.1808489107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1ca7f043152476ed86e48e608d5325751cbb39a", + "fields": { + "code_commune_insee": "82139", + "nom_de_la_commune": "LE PIN", + "code_postal": "82340", + "coordonnees_gps": [ + 44.0376612636, + 0.975279136698 + ], + "libelle_d_acheminement": "LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.975279136698, + 44.0376612636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aef789e9d4e32b6cd6f9d2dddbb0a18bedb4ff69", + "fields": { + "code_commune_insee": "82148", + "nom_de_la_commune": "PUYLAROQUE", + "code_postal": "82240", + "coordonnees_gps": [ + 44.2515860138, + 1.63529811514 + ], + "libelle_d_acheminement": "PUYLAROQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63529811514, + 44.2515860138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6bce5eb7cd5aa801cc6fb712c8043dfacc230ed", + "fields": { + "code_commune_insee": "82150", + "nom_de_la_commune": "REYNIES", + "code_postal": "82370", + "coordonnees_gps": [ + 43.9261825292, + 1.41453449796 + ], + "libelle_d_acheminement": "REYNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41453449796, + 43.9261825292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "357c4ebafa99d198569e67b9e5134f06cb923c67", + "fields": { + "code_commune_insee": "82156", + "nom_de_la_commune": "ST ARROUMEX", + "code_postal": "82210", + "coordonnees_gps": [ + 43.9917173293, + 0.989292206916 + ], + "libelle_d_acheminement": "ST ARROUMEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.989292206916, + 43.9917173293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9773e360e5ec10e3d0c0abe5bba637a2755680be", + "fields": { + "code_commune_insee": "82157", + "nom_de_la_commune": "ST BEAUZEIL", + "code_postal": "82150", + "coordonnees_gps": [ + 44.3338919485, + 0.908627657621 + ], + "libelle_d_acheminement": "ST BEAUZEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.908627657621, + 44.3338919485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "934174e9a92befb616751711b90f482218981627", + "fields": { + "code_commune_insee": "82158", + "nom_de_la_commune": "ST CIRICE", + "code_postal": "82340", + "coordonnees_gps": [ + 44.0616740438, + 0.838811755985 + ], + "libelle_d_acheminement": "ST CIRICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.838811755985, + 44.0616740438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3becac60a19b5d21cc99e75f9b797380666d85f", + "fields": { + "code_commune_insee": "82160", + "nom_de_la_commune": "ST CLAIR", + "code_postal": "82400", + "coordonnees_gps": [ + 44.1524310269, + 0.942322871268 + ], + "libelle_d_acheminement": "ST CLAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.942322871268, + 44.1524310269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98292205a9f7dab3c0b858452c260f7f8ad62474", + "fields": { + "code_commune_insee": "82166", + "nom_de_la_commune": "ST MICHEL", + "code_postal": "82340", + "coordonnees_gps": [ + 44.0453516361, + 0.937520452505 + ], + "libelle_d_acheminement": "ST MICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.937520452505, + 44.0453516361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b69cba430696bef769a3e88968db70056a2b3e8", + "fields": { + "code_commune_insee": "82167", + "nom_de_la_commune": "ST NAUPHARY", + "code_postal": "82370", + "coordonnees_gps": [ + 43.95896731, + 1.44860158065 + ], + "libelle_d_acheminement": "ST NAUPHARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44860158065, + 43.95896731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "870e92a5cb4d7b75827d177ad500afd3dd8d4fb7", + "fields": { + "code_commune_insee": "82184", + "nom_de_la_commune": "VAISSAC", + "code_postal": "82800", + "coordonnees_gps": [ + 44.031662491, + 1.57065929853 + ], + "libelle_d_acheminement": "VAISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57065929853, + 44.031662491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23abb22284935a4c9fd1fddad2d25c0328d753e7", + "fields": { + "code_commune_insee": "82186", + "nom_de_la_commune": "VALENCE", + "code_postal": "82400", + "coordonnees_gps": [ + 44.1068332095, + 0.897921093494 + ], + "libelle_d_acheminement": "VALENCE D AGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.897921093494, + 44.1068332095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e2203b8d6b7e20754906d519a45aeab0f18e802", + "fields": { + "code_commune_insee": "83003", + "nom_de_la_commune": "AMPUS", + "code_postal": "83111", + "coordonnees_gps": [ + 43.628363684, + 6.3718765021 + ], + "libelle_d_acheminement": "AMPUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3718765021, + 43.628363684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbe5635e1ff0605b569467eab6a19436bebe4663", + "fields": { + "code_commune_insee": "83005", + "nom_de_la_commune": "ARTIGNOSC SUR VERDON", + "code_postal": "83630", + "coordonnees_gps": [ + 43.6940767712, + 6.10762159358 + ], + "libelle_d_acheminement": "ARTIGNOSC SUR VERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10762159358, + 43.6940767712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea8a6842ed65a55b9aa196b658fde019c701309c", + "fields": { + "code_commune_insee": "83007", + "nom_de_la_commune": "AUPS", + "code_postal": "83630", + "coordonnees_gps": [ + 43.6246326968, + 6.22132785585 + ], + "libelle_d_acheminement": "AUPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22132785585, + 43.6246326968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5743196d7fee642195e9abe5b4d23eaa3bfcc167", + "fields": { + "code_commune_insee": "83008", + "nom_de_la_commune": "BAGNOLS EN FORET", + "code_postal": "83600", + "coordonnees_gps": [ + 43.5330955002, + 6.70850106064 + ], + "libelle_d_acheminement": "BAGNOLS EN FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70850106064, + 43.5330955002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5de9a3c7d3e1c7e4008056e258c76f861ba5af32", + "fields": { + "code_commune_insee": "83010", + "nom_de_la_commune": "BARGEME", + "code_postal": "83840", + "coordonnees_gps": [ + 43.7301362684, + 6.5708673229 + ], + "libelle_d_acheminement": "BARGEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5708673229, + 43.7301362684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f10ea0ecad244e5f57712a440508488b0ab8335", + "fields": { + "code_commune_insee": "83012", + "nom_de_la_commune": "BARJOLS", + "code_postal": "83670", + "coordonnees_gps": [ + 43.5523879362, + 5.98777049612 + ], + "libelle_d_acheminement": "BARJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98777049612, + 43.5523879362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af23332583982a0ec205ea871d515554a0ad714b", + "fields": { + "code_commune_insee": "83015", + "nom_de_la_commune": "BAUDUEN", + "code_postal": "83630", + "coordonnees_gps": [ + 43.7157423488, + 6.20204455595 + ], + "libelle_d_acheminement": "BAUDUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20204455595, + 43.7157423488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13a4b10c14977683956581df3461526883715233", + "fields": { + "code_commune_insee": "83016", + "nom_de_la_commune": "LE BEAUSSET", + "code_postal": "83330", + "coordonnees_gps": [ + 43.2069315557, + 5.82020086096 + ], + "libelle_d_acheminement": "LE BEAUSSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82020086096, + 43.2069315557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60425303cf01ea27b3ece40a6d2c5076a6886055", + "fields": { + "code_commune_insee": "83018", + "nom_de_la_commune": "BESSE SUR ISSOLE", + "code_postal": "83890", + "coordonnees_gps": [ + 43.3399479171, + 6.17774949705 + ], + "libelle_d_acheminement": "BESSE SUR ISSOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17774949705, + 43.3399479171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a45c8ef7bda76039b102b75406335dff4296c6cf", + "fields": { + "code_commune_insee": "83031", + "nom_de_la_commune": "LE CANNET DES MAURES", + "code_postal": "83340", + "coordonnees_gps": [ + 43.3737632121, + 6.3755010333 + ], + "libelle_d_acheminement": "LE CANNET DES MAURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3755010333, + 43.3737632121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a55ecd78a517554a4004f91e688d8f5dd332714", + "fields": { + "code_commune_insee": "83035", + "nom_de_la_commune": "LE CASTELLET", + "code_postal": "83330", + "coordonnees_gps": [ + 43.227667489, + 5.76560108367 + ], + "libelle_d_acheminement": "LE CASTELLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76560108367, + 43.227667489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efaf001534eb7446f547d5c219f81334efa630b7", + "fields": { + "code_commune_insee": "83038", + "nom_de_la_commune": "CHATEAUDOUBLE", + "code_postal": "83300", + "coordonnees_gps": [ + 43.6234657127, + 6.43567132454 + ], + "libelle_d_acheminement": "CHATEAUDOUBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43567132454, + 43.6234657127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a988c13cf272f2b2e6980b976fc00ce4eb9e44f", + "fields": { + "code_commune_insee": "83042", + "nom_de_la_commune": "COGOLIN", + "code_postal": "83310", + "coordonnees_gps": [ + 43.2464550515, + 6.52192234084 + ], + "libelle_d_acheminement": "COGOLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52192234084, + 43.2464550515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f78044c5fd8ee5cf03bababe6a0bcc90f057a4a9", + "fields": { + "code_commune_insee": "83044", + "nom_de_la_commune": "COMPS SUR ARTUBY", + "code_postal": "83840", + "coordonnees_gps": [ + 43.7035520107, + 6.50293185659 + ], + "libelle_d_acheminement": "COMPS SUR ARTUBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50293185659, + 43.7035520107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a99ba72d28715d92a56b482ef948c347dc17d27c", + "fields": { + "code_commune_insee": "83049", + "nom_de_la_commune": "CUERS", + "code_postal": "83390", + "coordonnees_gps": [ + 43.2411645502, + 6.06856350453 + ], + "libelle_d_acheminement": "CUERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06856350453, + 43.2411645502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efa0bbb83cf0248f83a3cba916812bdc4911327c", + "fields": { + "code_commune_insee": "83050", + "nom_de_la_commune": "DRAGUIGNAN", + "code_postal": "83300", + "coordonnees_gps": [ + 43.5357513285, + 6.45436569191 + ], + "libelle_d_acheminement": "DRAGUIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45436569191, + 43.5357513285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abb218f4be463b65c3ab9256a3d8cb16a126f3ee", + "fields": { + "code_commune_insee": "83053", + "nom_de_la_commune": "EVENOS", + "code_postal": "83330", + "coordonnees_gps": [ + 43.1862421767, + 5.8730401354 + ], + "libelle_d_acheminement": "EVENOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8730401354, + 43.1862421767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3e183986434d0483ae635551abedff9a955a98c", + "fields": { + "code_commune_insee": "83057", + "nom_de_la_commune": "FLASSANS SUR ISSOLE", + "code_postal": "83340", + "coordonnees_gps": [ + 43.3760987922, + 6.22162416541 + ], + "libelle_d_acheminement": "FLASSANS SUR ISSOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22162416541, + 43.3760987922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f2f0683f24f829ab8c9af4e345f0f24f0b8fc12", + "fields": { + "code_commune_insee": "83067", + "nom_de_la_commune": "GONFARON", + "code_postal": "83590", + "coordonnees_gps": [ + 43.3206494882, + 6.30036862428 + ], + "libelle_d_acheminement": "GONFARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30036862428, + 43.3206494882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13d19e61a152d9ee79bc8de0dfa51fa9000209f3", + "fields": { + "code_commune_insee": "83071", + "nom_de_la_commune": "LA LONDE LES MAURES", + "code_postal": "83250", + "coordonnees_gps": [ + 43.1689213414, + 6.24285151023 + ], + "libelle_d_acheminement": "LA LONDE LES MAURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24285151023, + 43.1689213414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a513955da149e6e6afa17722f86aa66863d12c0a", + "fields": { + "code_commune_insee": "83075", + "nom_de_la_commune": "LES MAYONS", + "code_postal": "83340", + "coordonnees_gps": [ + 43.3069101873, + 6.35996172662 + ], + "libelle_d_acheminement": "LES MAYONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35996172662, + 43.3069101873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "591ec6a414e39756903664387630f97d9833f32b", + "fields": { + "code_commune_insee": "83077", + "nom_de_la_commune": "MEOUNES LES MONTRIEUX", + "code_postal": "83136", + "coordonnees_gps": [ + 43.273942519, + 5.96671080974 + ], + "libelle_d_acheminement": "MEOUNES LES MONTRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96671080974, + 43.273942519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e3929be504c58f6e11ab984f29e20d749fc6a8b", + "fields": { + "code_commune_insee": "83086", + "nom_de_la_commune": "LE MUY", + "code_postal": "83490", + "coordonnees_gps": [ + 43.4687307949, + 6.576949368 + ], + "libelle_d_acheminement": "LE MUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.576949368, + 43.4687307949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ec1df3c00bc50c8471b01ef067ef63ad339012c", + "fields": { + "code_commune_insee": "83088", + "nom_de_la_commune": "NEOULES", + "code_postal": "83136", + "coordonnees_gps": [ + 43.2945310996, + 6.02592739077 + ], + "libelle_d_acheminement": "NEOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02592739077, + 43.2945310996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e9f6443413346bdd4cd4da0828e733703ecbd67", + "fields": { + "code_commune_insee": "83090", + "nom_de_la_commune": "OLLIOULES", + "code_postal": "83190", + "coordonnees_gps": [ + 43.1386133658, + 5.85369204547 + ], + "libelle_d_acheminement": "OLLIOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85369204547, + 43.1386133658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "277dde92d1357580e5a2beb11fa764d72acbec8e", + "fields": { + "code_commune_insee": "83095", + "nom_de_la_commune": "PONTEVES", + "code_postal": "83670", + "coordonnees_gps": [ + 43.5507745472, + 6.0629204725 + ], + "libelle_d_acheminement": "PONTEVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0629204725, + 43.5507745472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21293367f38d5b27e8278df30d8707f7c3751671", + "fields": { + "code_commune_insee": "83097", + "nom_de_la_commune": "POURRIERES", + "code_postal": "83910", + "coordonnees_gps": [ + 43.4938863602, + 5.74717711665 + ], + "libelle_d_acheminement": "POURRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74717711665, + 43.4938863602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2af66cd5f75a44aa26b74ee1a001af5cf5f11043", + "fields": { + "code_commune_insee": "83105", + "nom_de_la_commune": "RIBOUX", + "code_postal": "13780", + "coordonnees_gps": [ + 43.3081877669, + 5.75722408785 + ], + "libelle_d_acheminement": "RIBOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75722408785, + 43.3081877669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "585d746bcc983686dee038268ea5fc9dba1499cc", + "fields": { + "code_commune_insee": "83112", + "nom_de_la_commune": "ST CYR SUR MER", + "code_postal": "83270", + "coordonnees_gps": [ + 43.1720355248, + 5.70832603708 + ], + "libelle_d_acheminement": "ST CYR SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70832603708, + 43.1720355248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26c04081fdbe04c67914054e151ef5ebc85b1938", + "fields": { + "code_commune_insee": "83117", + "nom_de_la_commune": "ST PAUL EN FORET", + "code_postal": "83440", + "coordonnees_gps": [ + 43.564768209, + 6.68269608083 + ], + "libelle_d_acheminement": "ST PAUL EN FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68269608083, + 43.564768209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8eb2eb3748d8ad6c68132d197ca3828d1c52ab1", + "fields": { + "code_commune_insee": "83118", + "nom_de_la_commune": "ST RAPHAEL", + "code_postal": "83700", + "coordonnees_gps": [ + 43.4574625431, + 6.84734210398 + ], + "libelle_d_acheminement": "ST RAPHAEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84734210398, + 43.4574625431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40a322f577e4972e29ac001ecc75ba37eaced692", + "fields": { + "code_commune_insee": "83125", + "nom_de_la_commune": "SEILLONS SOURCE D ARGENS", + "code_postal": "83470", + "coordonnees_gps": [ + 43.5150970565, + 5.87693570046 + ], + "libelle_d_acheminement": "SEILLONS SOURCE D ARGENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87693570046, + 43.5150970565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2001aa1a42e016e7e967ddb6a5d08512f0fa5fc8", + "fields": { + "code_commune_insee": "83126", + "nom_de_la_commune": "LA SEYNE SUR MER", + "code_postal": "83500", + "coordonnees_gps": [ + 43.0880294967, + 5.87089841754 + ], + "libelle_d_acheminement": "LA SEYNE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87089841754, + 43.0880294967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4056a7482e5c1c0994b47a7f07b830a70a3ba14d", + "fields": { + "code_commune_insee": "83129", + "nom_de_la_commune": "SIX FOURS LES PLAGES", + "code_postal": "83140", + "coordonnees_gps": [ + 43.086818602, + 5.82924464931 + ], + "libelle_d_acheminement": "SIX FOURS LES PLAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82924464931, + 43.086818602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52eecdcb14e13c276dd717db2fe9ca1d3fcd7fa4", + "fields": { + "code_commune_insee": "83136", + "nom_de_la_commune": "LE THORONET", + "code_postal": "83340", + "coordonnees_gps": [ + 43.458933028, + 6.28265623456 + ], + "libelle_d_acheminement": "LE THORONET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28265623456, + 43.458933028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5005c80250fdc499e3e86d8936312cd0e0b15efd", + "fields": { + "code_commune_insee": "83137", + "nom_de_la_commune": "TOULON", + "code_postal": "83200", + "coordonnees_gps": [ + 43.1361589728, + 5.93239634249 + ], + "libelle_d_acheminement": "TOULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93239634249, + 43.1361589728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e07b3e2338584121deb6f414d8fb0a4837bf2c5a", + "fields": { + "code_commune_insee": "84003", + "nom_de_la_commune": "APT", + "code_postal": "84400", + "coordonnees_gps": [ + 43.879393265, + 5.38921757843 + ], + "libelle_d_acheminement": "APT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38921757843, + 43.879393265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8103b829979f79826eb58d78a3c67ae0bd66d047", + "fields": { + "code_commune_insee": "84004", + "nom_de_la_commune": "AUBIGNAN", + "code_postal": "84810", + "coordonnees_gps": [ + 44.0977380589, + 5.03165676735 + ], + "libelle_d_acheminement": "AUBIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03165676735, + 44.0977380589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "151d82687bb31a50055fe66787f4b190dfc57ce3", + "fields": { + "code_commune_insee": "84012", + "nom_de_la_commune": "BEAUMES DE VENISE", + "code_postal": "84190", + "coordonnees_gps": [ + 44.1233856856, + 5.02875589827 + ], + "libelle_d_acheminement": "BEAUMES DE VENISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02875589827, + 44.1233856856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "066306d354e70437112cf459dbd8909db5b1ea11", + "fields": { + "code_commune_insee": "84015", + "nom_de_la_commune": "BEAUMONT DU VENTOUX", + "code_postal": "84340", + "coordonnees_gps": [ + 44.1826393714, + 5.21385670497 + ], + "libelle_d_acheminement": "BEAUMONT DU VENTOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21385670497, + 44.1826393714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "043a92ffc58448c671b7da29270147339d4633e9", + "fields": { + "code_commune_insee": "84016", + "nom_de_la_commune": "BEDARRIDES", + "code_postal": "84370", + "coordonnees_gps": [ + 44.0477457533, + 4.90804109098 + ], + "libelle_d_acheminement": "BEDARRIDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90804109098, + 44.0477457533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dd770b196e719bc689bca9aa1384a9a8f6d2d6b", + "fields": { + "code_commune_insee": "84024", + "nom_de_la_commune": "CABRIERES D AIGUES", + "code_postal": "84240", + "coordonnees_gps": [ + 43.7913015359, + 5.49177311487 + ], + "libelle_d_acheminement": "CABRIERES D AIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49177311487, + 43.7913015359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa7364a9fa919ee1c62cc2b8fcf02ab834845eeb", + "fields": { + "code_commune_insee": "84025", + "nom_de_la_commune": "CABRIERES D AVIGNON", + "code_postal": "84220", + "coordonnees_gps": [ + 43.8965322686, + 5.15279801626 + ], + "libelle_d_acheminement": "CABRIERES D AVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15279801626, + 43.8965322686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1672403acda3e0e4eb433f14db34fa1c9844804", + "fields": { + "code_commune_insee": "84028", + "nom_de_la_commune": "CAIRANNE", + "code_postal": "84290", + "coordonnees_gps": [ + 44.2302575549, + 4.93339996862 + ], + "libelle_d_acheminement": "CAIRANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93339996862, + 44.2302575549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27054ba7b7d6b85fa84b68afb14c323c0c7523e8", + "fields": { + "code_commune_insee": "84029", + "nom_de_la_commune": "CAMARET SUR AIGUES", + "code_postal": "84850", + "coordonnees_gps": [ + 44.1596814027, + 4.88410397503 + ], + "libelle_d_acheminement": "CAMARET SUR AIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88410397503, + 44.1596814027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e90c27ce914c9dce627dc8629d01c4d145f21795", + "fields": { + "code_commune_insee": "84030", + "nom_de_la_commune": "CAROMB", + "code_postal": "84330", + "coordonnees_gps": [ + 44.1124328753, + 5.10687040517 + ], + "libelle_d_acheminement": "CAROMB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10687040517, + 44.1124328753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2912454f388617d9f6d0b52dfa63bcbc980a6127", + "fields": { + "code_commune_insee": "84032", + "nom_de_la_commune": "CASENEUVE", + "code_postal": "84750", + "coordonnees_gps": [ + 43.8888688666, + 5.47985826048 + ], + "libelle_d_acheminement": "CASENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47985826048, + 43.8888688666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad47692b7e4531de56010cdf274ed0c8793701ca", + "fields": { + "code_commune_insee": "84034", + "nom_de_la_commune": "CAUMONT SUR DURANCE", + "code_postal": "84510", + "coordonnees_gps": [ + 43.8913580487, + 4.95633077332 + ], + "libelle_d_acheminement": "CAUMONT SUR DURANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95633077332, + 43.8913580487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cde0511716a0a568faf39d2292b9ac3be491fdc4", + "fields": { + "ligne_5": "LES VIGNERES", + "code_commune_insee": "84035", + "libelle_d_acheminement": "CAVAILLON", + "code_postal": "84300", + "nom_de_la_commune": "CAVAILLON", + "coordonnees_gps": [ + 43.8508361826, + 5.03606300916 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03606300916, + 43.8508361826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dc5829cfae215ae4942e1bb08f5c198421e622f", + "fields": { + "code_commune_insee": "84036", + "nom_de_la_commune": "CHATEAUNEUF DE GADAGNE", + "code_postal": "84470", + "coordonnees_gps": [ + 43.9276331683, + 4.94259114535 + ], + "libelle_d_acheminement": "CHATEAUNEUF DE GADAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94259114535, + 43.9276331683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32b00bf9a373c8617acab8ddef867163a9135423", + "fields": { + "code_commune_insee": "84038", + "nom_de_la_commune": "CHEVAL BLANC", + "code_postal": "84460", + "coordonnees_gps": [ + 43.7886782282, + 5.12410732071 + ], + "libelle_d_acheminement": "CHEVAL BLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12410732071, + 43.7886782282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ac0d4274fa3dbfead5bb2b7c97a597ad50bb1f9", + "fields": { + "code_commune_insee": "84040", + "nom_de_la_commune": "CRESTET", + "code_postal": "84110", + "coordonnees_gps": [ + 44.2097519132, + 5.08597487017 + ], + "libelle_d_acheminement": "CRESTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08597487017, + 44.2097519132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b53e240e02b3ebccf13d3ea8927cc116fa09b6ac", + "fields": { + "code_commune_insee": "84043", + "nom_de_la_commune": "ENTRAIGUES SUR LA SORGUE", + "code_postal": "84320", + "coordonnees_gps": [ + 43.9950173356, + 4.93295387179 + ], + "libelle_d_acheminement": "ENTRAIGUES SUR LA SORGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93295387179, + 43.9950173356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f34686aa72a86c3f1d77a849bd869ee3f19f1086", + "fields": { + "code_commune_insee": "84046", + "nom_de_la_commune": "FLASSAN", + "code_postal": "84410", + "coordonnees_gps": [ + 44.0985422058, + 5.26372029474 + ], + "libelle_d_acheminement": "FLASSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26372029474, + 44.0985422058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39b11871af22afdb33adab5e7cb2150cfdc75925", + "fields": { + "code_commune_insee": "84049", + "nom_de_la_commune": "GIGONDAS", + "code_postal": "84190", + "coordonnees_gps": [ + 44.1660983331, + 5.01231871802 + ], + "libelle_d_acheminement": "GIGONDAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01231871802, + 44.1660983331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3792f664747c95f6cec00189548f29508d69dbfe", + "fields": { + "code_commune_insee": "84057", + "nom_de_la_commune": "JOUCAS", + "code_postal": "84220", + "coordonnees_gps": [ + 43.9263664747, + 5.25260939996 + ], + "libelle_d_acheminement": "JOUCAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25260939996, + 43.9263664747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a192f482f081101719a5bd1705b9f168888be748", + "fields": { + "code_commune_insee": "84066", + "nom_de_la_commune": "LIOUX", + "code_postal": "84220", + "coordonnees_gps": [ + 43.9793335094, + 5.30939885306 + ], + "libelle_d_acheminement": "LIOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30939885306, + 43.9793335094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "454bb10ce726eb69b7640bba7dc0eb10b05946d1", + "fields": { + "code_commune_insee": "84067", + "nom_de_la_commune": "LORIOL DU COMTAT", + "code_postal": "84870", + "coordonnees_gps": [ + 44.0753500101, + 5.00514799731 + ], + "libelle_d_acheminement": "LORIOL DU COMTAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00514799731, + 44.0753500101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5147cf6ae1ee58247199a73b0a72767e7a5712f", + "fields": { + "code_commune_insee": "84073", + "nom_de_la_commune": "MENERBES", + "code_postal": "84560", + "coordonnees_gps": [ + 43.8243710342, + 5.22087170856 + ], + "libelle_d_acheminement": "MENERBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22087170856, + 43.8243710342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c24a49af36f5b2ab463b072f83be9ad2ac5e8623", + "fields": { + "code_commune_insee": "84075", + "nom_de_la_commune": "METHAMIS", + "code_postal": "84570", + "coordonnees_gps": [ + 44.0126367285, + 5.25299930239 + ], + "libelle_d_acheminement": "METHAMIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25299930239, + 44.0126367285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55e7d1c2c207bb618e9c7c71f492df5a3b8ca971", + "fields": { + "code_commune_insee": "84080", + "nom_de_la_commune": "MONTEUX", + "code_postal": "84170", + "coordonnees_gps": [ + 44.0335256003, + 4.9847476645 + ], + "libelle_d_acheminement": "MONTEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9847476645, + 44.0335256003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc2021656d761cb7436b76fed2825eb01f1dfcbf", + "fields": { + "code_commune_insee": "84087", + "nom_de_la_commune": "ORANGE", + "code_postal": "84100", + "coordonnees_gps": [ + 44.128913537, + 4.8098792403 + ], + "libelle_d_acheminement": "ORANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8098792403, + 44.128913537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ac9365c351592edafae0fcc132d8c375fb6cd13", + "fields": { + "code_commune_insee": "84089", + "nom_de_la_commune": "PERTUIS", + "code_postal": "84120", + "coordonnees_gps": [ + 43.6872357464, + 5.52052480281 + ], + "libelle_d_acheminement": "PERTUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52052480281, + 43.6872357464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caeb205a6984c13342427432fa205279c9a367d9", + "fields": { + "code_commune_insee": "84092", + "nom_de_la_commune": "LE PONTET", + "code_postal": "84130", + "coordonnees_gps": [ + 43.9683903531, + 4.86549590773 + ], + "libelle_d_acheminement": "LE PONTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86549590773, + 43.9683903531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f54c4a68f2195bea5a4337145b0e66c2e865e5f3", + "fields": { + "code_commune_insee": "84096", + "nom_de_la_commune": "RASTEAU", + "code_postal": "84110", + "coordonnees_gps": [ + 44.2322859605, + 4.98047268222 + ], + "libelle_d_acheminement": "RASTEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98047268222, + 44.2322859605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c449ab1ab58960105967741aa45ac2547703481", + "fields": { + "code_commune_insee": "84099", + "nom_de_la_commune": "ROBION", + "code_postal": "84440", + "coordonnees_gps": [ + 43.8519678718, + 5.11008684319 + ], + "libelle_d_acheminement": "ROBION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11008684319, + 43.8519678718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3af051681fc589387b3f2eba10317ca45822fe1b", + "fields": { + "code_commune_insee": "84117", + "nom_de_la_commune": "ST ROMAN DE MALEGARDE", + "code_postal": "84290", + "coordonnees_gps": [ + 44.2632239809, + 4.95674983862 + ], + "libelle_d_acheminement": "ST ROMAN DE MALEGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95674983862, + 44.2632239809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8aabb2804e94c66eb8e5aa244438ec82f89164f1", + "fields": { + "code_commune_insee": "84131", + "nom_de_la_commune": "TAILLADES", + "code_postal": "84300", + "coordonnees_gps": [ + 43.8315474513, + 5.09480690548 + ], + "libelle_d_acheminement": "TAILLADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09480690548, + 43.8315474513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2710d8351b87ac81d8f31d865f4ac7da8761a7ee", + "fields": { + "code_commune_insee": "84134", + "nom_de_la_commune": "TRAVAILLAN", + "code_postal": "84850", + "coordonnees_gps": [ + 44.1894500119, + 4.90856149407 + ], + "libelle_d_acheminement": "TRAVAILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90856149407, + 44.1894500119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bca53281c286196b8d55cf64e92757d582e9b721", + "fields": { + "code_commune_insee": "84138", + "nom_de_la_commune": "VALREAS", + "code_postal": "84600", + "coordonnees_gps": [ + 44.3771588623, + 4.99354936197 + ], + "libelle_d_acheminement": "VALREAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99354936197, + 44.3771588623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "684a197ac6d1babacc91be363bbeeb60ced0bf1f", + "fields": { + "code_commune_insee": "84143", + "nom_de_la_commune": "VENASQUE", + "code_postal": "84210", + "coordonnees_gps": [ + 43.9851237661, + 5.16506865588 + ], + "libelle_d_acheminement": "VENASQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16506865588, + 43.9851237661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "279f915f113fc1fcfdca5b1f00287fd7a6ae0b84", + "fields": { + "code_commune_insee": "84145", + "nom_de_la_commune": "VILLARS", + "code_postal": "84400", + "coordonnees_gps": [ + 43.9519813835, + 5.43334418436 + ], + "libelle_d_acheminement": "VILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43334418436, + 43.9519813835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0860c9b6de360abe54fec73edfe82a6ec8e45531", + "fields": { + "code_commune_insee": "84148", + "nom_de_la_commune": "VILLES SUR AUZON", + "code_postal": "84570", + "coordonnees_gps": [ + 44.0660605145, + 5.25707803023 + ], + "libelle_d_acheminement": "VILLES SUR AUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25707803023, + 44.0660605145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b88ef18637319729083b7adee140fa8a59033ac", + "fields": { + "code_commune_insee": "85002", + "nom_de_la_commune": "L AIGUILLON SUR VIE", + "code_postal": "85220", + "coordonnees_gps": [ + 46.6706426618, + -1.82599992318 + ], + "libelle_d_acheminement": "L AIGUILLON SUR VIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82599992318, + 46.6706426618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d4767d11f795b56628da217f6f3ab84a4977582", + "fields": { + "code_commune_insee": "85015", + "nom_de_la_commune": "BEAUFOU", + "code_postal": "85170", + "coordonnees_gps": [ + 46.8191122027, + -1.52479250801 + ], + "libelle_d_acheminement": "BEAUFOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52479250801, + 46.8191122027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae85735c088e6e47113fc7debd459b9e6008c881", + "fields": { + "code_commune_insee": "85028", + "nom_de_la_commune": "BOUILLE COURDAULT", + "code_postal": "85420", + "coordonnees_gps": [ + 46.3847932448, + -0.684917815779 + ], + "libelle_d_acheminement": "BOUILLE COURDAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.684917815779, + 46.3847932448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29799e7148c0ebce0925aad971b1014c28843097", + "fields": { + "ligne_5": "LA CLAYE", + "code_commune_insee": "85036", + "libelle_d_acheminement": "LA BRETONNIERE LA CLAYE", + "code_postal": "85320", + "nom_de_la_commune": "LA BRETONNIERE LA CLAYE", + "coordonnees_gps": [ + 46.4879459421, + -1.26773426545 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26773426545, + 46.4879459421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6de8a13d745e0464ee52140b1e89e337f75dadb0", + "fields": { + "code_commune_insee": "85040", + "nom_de_la_commune": "LA CAILLERE ST HILAIRE", + "code_postal": "85410", + "coordonnees_gps": [ + 46.6293907412, + -0.933153931505 + ], + "libelle_d_acheminement": "LA CAILLERE ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.933153931505, + 46.6293907412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44f0c392b55daaf8b526bd07d5b55513bea9c70f", + "fields": { + "ligne_5": "ST HILAIRE DU BOIS", + "code_commune_insee": "85040", + "libelle_d_acheminement": "LA CAILLERE ST HILAIRE", + "code_postal": "85410", + "nom_de_la_commune": "LA CAILLERE ST HILAIRE", + "coordonnees_gps": [ + 46.6293907412, + -0.933153931505 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.933153931505, + 46.6293907412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1166d656d92e08351159a2f184c51142bd35a91", + "fields": { + "code_commune_insee": "85042", + "nom_de_la_commune": "CHAILLE LES MARAIS", + "code_postal": "85450", + "coordonnees_gps": [ + 46.3853555319, + -1.01044079362 + ], + "libelle_d_acheminement": "CHAILLE LES MARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01044079362, + 46.3853555319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42ef2a3e41c567b55533bcd22698dd31b31b5f9d", + "fields": { + "ligne_5": "SABLEAU", + "code_commune_insee": "85042", + "libelle_d_acheminement": "CHAILLE LES MARAIS", + "code_postal": "85450", + "nom_de_la_commune": "CHAILLE LES MARAIS", + "coordonnees_gps": [ + 46.3853555319, + -1.01044079362 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01044079362, + 46.3853555319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "508e3532371007c4302abda6e222f7a4e7c29c40", + "fields": { + "code_commune_insee": "85056", + "nom_de_la_commune": "LA CHAPELLE THEMER", + "code_postal": "85210", + "coordonnees_gps": [ + 46.5639307793, + -0.960376685588 + ], + "libelle_d_acheminement": "LA CHAPELLE THEMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.960376685588, + 46.5639307793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef00042e8fa7160692c9fddd9c23b6226d46362c", + "fields": { + "code_commune_insee": "85070", + "nom_de_la_commune": "COEX", + "code_postal": "85220", + "coordonnees_gps": [ + 46.7078707764, + -1.75788339462 + ], + "libelle_d_acheminement": "COEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75788339462, + 46.7078707764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "222ca5a5c56391984db8b2334f62d30caae02077", + "fields": { + "code_commune_insee": "85073", + "nom_de_la_commune": "CORPE", + "code_postal": "85320", + "coordonnees_gps": [ + 46.5050234767, + -1.17034425311 + ], + "libelle_d_acheminement": "CORPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17034425311, + 46.5050234767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c124e8ad02a6171917acea35e50e57f0ac376e86", + "fields": { + "code_commune_insee": "85078", + "nom_de_la_commune": "DAMVIX", + "code_postal": "85420", + "coordonnees_gps": [ + 46.32063079, + -0.743504259797 + ], + "libelle_d_acheminement": "DAMVIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.743504259797, + 46.32063079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1d1e45bbd8b3e1bff32db929ca4f22277d2cd2e", + "fields": { + "ligne_5": "DOIX", + "code_commune_insee": "85080", + "libelle_d_acheminement": "DOIX LES FONTAINES", + "code_postal": "85200", + "nom_de_la_commune": "DOIX LES FONTAINES", + "coordonnees_gps": [ + 46.3849492327, + -0.806840287485 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.806840287485, + 46.3849492327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "593366b5c14f5a3d5dd5c222c30a91a048b584aa", + "fields": { + "code_commune_insee": "85081", + "nom_de_la_commune": "DOMPIERRE SUR YON", + "code_postal": "85170", + "coordonnees_gps": [ + 46.7599858068, + -1.37275519417 + ], + "libelle_d_acheminement": "DOMPIERRE SUR YON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37275519417, + 46.7599858068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7121e95ddd753a255fbe6090b24ead6f3a87e0e8", + "fields": { + "code_commune_insee": "85082", + "nom_de_la_commune": "LES EPESSES", + "code_postal": "85590", + "coordonnees_gps": [ + 46.8917166066, + -0.903422756546 + ], + "libelle_d_acheminement": "LES EPESSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.903422756546, + 46.8917166066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab48e93fad31d73e6db8592ebe8fef0486e09019", + "fields": { + "code_commune_insee": "85083", + "nom_de_la_commune": "L EPINE", + "code_postal": "85740", + "coordonnees_gps": [ + 46.9843405667, + -2.26449527608 + ], + "libelle_d_acheminement": "L EPINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.26449527608, + 46.9843405667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ae6d3f947b586d725b2d3b9b9a6c3ce4ef1eed6", + "fields": { + "ligne_5": "BOULOGNE", + "code_commune_insee": "85084", + "libelle_d_acheminement": "ESSARTS EN BOCAGE", + "code_postal": "85140", + "nom_de_la_commune": "ESSARTS EN BOCAGE", + "coordonnees_gps": [ + 46.7806739038, + -1.22925967851 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22925967851, + 46.7806739038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94ed900bae948c49d300ba910c7cd5d91ed1fd8b", + "fields": { + "ligne_5": "L OIE", + "code_commune_insee": "85084", + "libelle_d_acheminement": "ESSARTS EN BOCAGE", + "code_postal": "85140", + "nom_de_la_commune": "ESSARTS EN BOCAGE", + "coordonnees_gps": [ + 46.7806739038, + -1.22925967851 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22925967851, + 46.7806739038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c98f3d0df3d6915f569c8755c2cfc2964628a89", + "fields": { + "code_commune_insee": "85087", + "nom_de_la_commune": "FAYMOREAU", + "code_postal": "85240", + "coordonnees_gps": [ + 46.5427361252, + -0.624271378946 + ], + "libelle_d_acheminement": "FAYMOREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.624271378946, + 46.5427361252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cdc54bcad969cc2d33f2e093fab0318908333bd", + "fields": { + "ligne_5": "ST MICHEL MONT MERCURE", + "code_commune_insee": "85090", + "libelle_d_acheminement": "SEVREMONT", + "code_postal": "85700", + "nom_de_la_commune": "SEVREMONT", + "coordonnees_gps": [ + 46.8211105864, + -0.854584153953 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.854584153953, + 46.8211105864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c793ec2446ec0bdd696499e90fde1e35b15350b", + "fields": { + "ligne_5": "ST MEDARD DES PRES", + "code_commune_insee": "85092", + "libelle_d_acheminement": "FONTENAY LE COMTE", + "code_postal": "85200", + "nom_de_la_commune": "FONTENAY LE COMTE", + "coordonnees_gps": [ + 46.4563186117, + -0.793449510859 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.793449510859, + 46.4563186117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c68144aa48480a6b64a9f8cbbc6b8dae4e1b5220", + "fields": { + "code_commune_insee": "85103", + "nom_de_la_commune": "GROSBREUIL", + "code_postal": "85440", + "coordonnees_gps": [ + 46.5390090882, + -1.6072005484 + ], + "libelle_d_acheminement": "GROSBREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6072005484, + 46.5390090882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6987f575e0c77dd20237016dc15c515dc94aaaa3", + "fields": { + "code_commune_insee": "85108", + "nom_de_la_commune": "L HERBERGEMENT", + "code_postal": "85260", + "coordonnees_gps": [ + 46.9166207979, + -1.37033557148 + ], + "libelle_d_acheminement": "L HERBERGEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37033557148, + 46.9166207979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "298432fdd026712aca3ecefb289d0161478e2405", + "fields": { + "ligne_5": "PORT JOINVILLE", + "code_commune_insee": "85113", + "libelle_d_acheminement": "L ILE D YEU", + "code_postal": "85350", + "nom_de_la_commune": "L ILE D YEU", + "coordonnees_gps": [ + 46.7093514816, + -2.34712702345 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.34712702345, + 46.7093514816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3db7bcddc41d1d9611e80a1c9ed474033a0cb05b", + "fields": { + "code_commune_insee": "85117", + "nom_de_la_commune": "LAIROUX", + "code_postal": "85400", + "coordonnees_gps": [ + 46.4496842668, + -1.27114022202 + ], + "libelle_d_acheminement": "LAIROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27114022202, + 46.4496842668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f3665038dc53da9b3fadd51fe6dbcd78bc20420", + "fields": { + "code_commune_insee": "85125", + "nom_de_la_commune": "LOGE FOUGEREUSE", + "code_postal": "85120", + "coordonnees_gps": [ + 46.6180854641, + -0.6899276733 + ], + "libelle_d_acheminement": "LOGE FOUGEREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6899276733, + 46.6180854641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21701f7da2811f94c5b49353e7ad9ad3407db9a6", + "fields": { + "code_commune_insee": "85126", + "nom_de_la_commune": "LONGEVES", + "code_postal": "85200", + "coordonnees_gps": [ + 46.4722105292, + -0.858917690239 + ], + "libelle_d_acheminement": "LONGEVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.858917690239, + 46.4722105292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7a783df14ea5f460c6222481ec1876e3865f703", + "fields": { + "code_commune_insee": "85130", + "nom_de_la_commune": "MACHE", + "code_postal": "85190", + "coordonnees_gps": [ + 46.771364944, + -1.69526445062 + ], + "libelle_d_acheminement": "MACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69526445062, + 46.771364944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de85fbab7b31e0c078944ff51f7e6ef1ba03c219", + "fields": { + "code_commune_insee": "85132", + "nom_de_la_commune": "MAILLE", + "code_postal": "85420", + "coordonnees_gps": [ + 46.3417503082, + -0.787487297301 + ], + "libelle_d_acheminement": "MAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.787487297301, + 46.3417503082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0158631b33c45224553cae528acf6c8cbf5d199", + "fields": { + "code_commune_insee": "85135", + "nom_de_la_commune": "MAREUIL SUR LAY DISSAIS", + "code_postal": "85320", + "coordonnees_gps": [ + 46.5335825488, + -1.22688907859 + ], + "libelle_d_acheminement": "MAREUIL SUR LAY DISSAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22688907859, + 46.5335825488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9ef1c424fc4b82cf357d90fed51bf61b73dc77e", + "fields": { + "code_commune_insee": "85145", + "nom_de_la_commune": "MONSIREIGNE", + "code_postal": "85110", + "coordonnees_gps": [ + 46.7383480028, + -0.931953130855 + ], + "libelle_d_acheminement": "MONSIREIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.931953130855, + 46.7383480028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92d9a6de8dac5ae31e7ed1a0b8e2a6a934c99814", + "fields": { + "ligne_5": "LA GUYONNIERE", + "code_commune_insee": "85146", + "libelle_d_acheminement": "MONTAIGU VENDEE", + "code_postal": "85600", + "nom_de_la_commune": "MONTAIGU VENDEE", + "coordonnees_gps": [ + 46.9759800852, + -1.31364530268 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31364530268, + 46.9759800852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "092582042dba18831c422c1c498269e22e87edd0", + "fields": { + "ligne_5": "ST GEORGES DE MONTAIGU", + "code_commune_insee": "85146", + "libelle_d_acheminement": "MONTAIGU VENDEE", + "code_postal": "85600", + "nom_de_la_commune": "MONTAIGU VENDEE", + "coordonnees_gps": [ + 46.9759800852, + -1.31364530268 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31364530268, + 46.9759800852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e71408d1a5a1bd782f0680073bc0bad6d244a22b", + "fields": { + "code_commune_insee": "85171", + "nom_de_la_commune": "PEAULT", + "code_postal": "85320", + "coordonnees_gps": [ + 46.502029199, + -1.22708559855 + ], + "libelle_d_acheminement": "PEAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22708559855, + 46.502029199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30d39adc566fd7f479154d2de2d9623a7c616897", + "fields": { + "code_commune_insee": "85172", + "nom_de_la_commune": "LE PERRIER", + "code_postal": "85300", + "coordonnees_gps": [ + 46.8196487652, + -1.97926629071 + ], + "libelle_d_acheminement": "LE PERRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97926629071, + 46.8196487652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ad2152898330cd70189a84ebac41f86f39d74d2", + "fields": { + "code_commune_insee": "85186", + "nom_de_la_commune": "LA RABATELIERE", + "code_postal": "85250", + "coordonnees_gps": [ + 46.8584147661, + -1.2569733759 + ], + "libelle_d_acheminement": "LA RABATELIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2569733759, + 46.8584147661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee151301a7bc3c2d65c284cba995fcf616d22bc1", + "fields": { + "code_commune_insee": "85192", + "nom_de_la_commune": "ROCHETREJOUX", + "code_postal": "85510", + "coordonnees_gps": [ + 46.7852546732, + -0.996743019108 + ], + "libelle_d_acheminement": "ROCHETREJOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.996743019108, + 46.7852546732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9d9791d413dfce3c98bd427974faab0425b368c", + "fields": { + "code_commune_insee": "85194", + "nom_de_la_commune": "LES SABLES D OLONNE", + "code_postal": "85100", + "coordonnees_gps": [ + 46.5007612799, + -1.79255128677 + ], + "libelle_d_acheminement": "LES SABLES D OLONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79255128677, + 46.5007612799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10e6fb1b04e1dd145c47712874621b807b326857", + "fields": { + "ligne_5": "MORMAISON", + "code_commune_insee": "85197", + "libelle_d_acheminement": "MONTREVERD", + "code_postal": "85260", + "nom_de_la_commune": "MONTREVERD", + "coordonnees_gps": [ + 46.9277672307, + -1.4126154924 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4126154924, + 46.9277672307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e7452873d26c78d1e932c48ef20c7f45dcda44f", + "fields": { + "ligne_5": "ST ANDRE TREIZE VOIES", + "code_commune_insee": "85197", + "libelle_d_acheminement": "MONTREVERD", + "code_postal": "85260", + "nom_de_la_commune": "MONTREVERD", + "coordonnees_gps": [ + 46.9277672307, + -1.4126154924 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4126154924, + 46.9277672307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30437f31508cd8523c3011c1faf84b1ded3a7ea8", + "fields": { + "ligne_5": "ST SULPICE LE VERDON", + "code_commune_insee": "85197", + "libelle_d_acheminement": "MONTREVERD", + "code_postal": "85260", + "nom_de_la_commune": "MONTREVERD", + "coordonnees_gps": [ + 46.9277672307, + -1.4126154924 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4126154924, + 46.9277672307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c35770136ef1fbbc524f37e66669958b85ba63f", + "fields": { + "code_commune_insee": "85205", + "nom_de_la_commune": "ST CYR DES GATS", + "code_postal": "85410", + "coordonnees_gps": [ + 46.572397925, + -0.86344873853 + ], + "libelle_d_acheminement": "ST CYR DES GATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86344873853, + 46.572397925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2d702f2ec767e9c9fb66157c7acd44f2aa5d842", + "fields": { + "code_commune_insee": "85209", + "nom_de_la_commune": "ST ETIENNE DE BRILLOUET", + "code_postal": "85210", + "coordonnees_gps": [ + 46.5138850327, + -1.01157660374 + ], + "libelle_d_acheminement": "ST ETIENNE DE BRILLOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01157660374, + 46.5138850327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7b18108d098af7ae2e10b32a3e073fa62e570be", + "fields": { + "code_commune_insee": "85210", + "nom_de_la_commune": "ST ETIENNE DU BOIS", + "code_postal": "85670", + "coordonnees_gps": [ + 46.8418481774, + -1.59617737479 + ], + "libelle_d_acheminement": "ST ETIENNE DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59617737479, + 46.8418481774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "738d39edb1f14ba9d0275a309dbc183667f93984", + "fields": { + "code_commune_insee": "85211", + "nom_de_la_commune": "STE FLAIVE DES LOUPS", + "code_postal": "85150", + "coordonnees_gps": [ + 46.611019489, + -1.58031627863 + ], + "libelle_d_acheminement": "STE FLAIVE DES LOUPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58031627863, + 46.611019489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbe8763a96acaffeba49f0e1e18bfd55b70a6ca0", + "fields": { + "ligne_5": "ST FLORENT DES BOIS", + "code_commune_insee": "85213", + "libelle_d_acheminement": "RIVES DE L YON", + "code_postal": "85310", + "nom_de_la_commune": "RIVES DE L YON", + "coordonnees_gps": [ + 46.605637391, + -1.3354497172 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3354497172, + 46.605637391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ace35d7e728352e2f2a5c804cf3c3e77e36489f", + "fields": { + "code_commune_insee": "85214", + "nom_de_la_commune": "STE FOY", + "code_postal": "85150", + "coordonnees_gps": [ + 46.5327600427, + -1.69243074733 + ], + "libelle_d_acheminement": "STE FOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69243074733, + 46.5327600427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e18829acefa82386d64afc2dfc4ed8ce862d6ccc", + "fields": { + "code_commune_insee": "85232", + "nom_de_la_commune": "ST HILAIRE LE VOUHIS", + "code_postal": "85480", + "coordonnees_gps": [ + 46.6859198669, + -1.15222590884 + ], + "libelle_d_acheminement": "ST HILAIRE LE VOUHIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15222590884, + 46.6859198669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a66e591a47c1d827151105b8f6eb47cc018d66d5", + "fields": { + "code_commune_insee": "85236", + "nom_de_la_commune": "ST JULIEN DES LANDES", + "code_postal": "85150", + "coordonnees_gps": [ + 46.6395925444, + -1.7159724914 + ], + "libelle_d_acheminement": "ST JULIEN DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.7159724914, + 46.6395925444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d79d6303189bfe57d4f04eb353cd1774cf640bda", + "fields": { + "code_commune_insee": "85238", + "nom_de_la_commune": "ST LAURENT SUR SEVRE", + "code_postal": "85290", + "coordonnees_gps": [ + 46.9506837971, + -0.901123752328 + ], + "libelle_d_acheminement": "ST LAURENT SUR SEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.901123752328, + 46.9506837971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20c5d885fe3f1361dc1ceb4cabf27b08ca9f60eb", + "fields": { + "code_commune_insee": "85244", + "nom_de_la_commune": "ST MARTIN DE FRAIGNEAU", + "code_postal": "85200", + "coordonnees_gps": [ + 46.4289052087, + -0.758948963227 + ], + "libelle_d_acheminement": "ST MARTIN DE FRAIGNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.758948963227, + 46.4289052087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e6b208891ac87b69cafd662f110bc9e50d29abe", + "fields": { + "code_commune_insee": "85246", + "nom_de_la_commune": "ST MARTIN DES NOYERS", + "code_postal": "85140", + "coordonnees_gps": [ + 46.7239461187, + -1.20379080965 + ], + "libelle_d_acheminement": "ST MARTIN DES NOYERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20379080965, + 46.7239461187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1557d9defe42c45a900bfb88909e835e34f59412", + "fields": { + "code_commune_insee": "85252", + "nom_de_la_commune": "ST MAURICE LE GIRARD", + "code_postal": "85390", + "coordonnees_gps": [ + 46.6398624578, + -0.810875649028 + ], + "libelle_d_acheminement": "ST MAURICE LE GIRARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.810875649028, + 46.6398624578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd6c7fe3ce28d99eab6067624b1496f2005f6d6a", + "fields": { + "code_commune_insee": "85255", + "nom_de_la_commune": "ST MICHEL EN L HERM", + "code_postal": "85580", + "coordonnees_gps": [ + 46.3366903175, + -1.2483968538 + ], + "libelle_d_acheminement": "ST MICHEL EN L HERM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2483968538, + 46.3366903175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b58eff6f3e3c270d67a2b3fd64d3ace2ddeabf67", + "fields": { + "code_commune_insee": "85260", + "nom_de_la_commune": "ST PAUL MONT PENIT", + "code_postal": "85670", + "coordonnees_gps": [ + 46.8070059547, + -1.66964833149 + ], + "libelle_d_acheminement": "ST PAUL MONT PENIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66964833149, + 46.8070059547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2c13890ce2cd3a81cd2402e94288a3278b63063", + "fields": { + "code_commune_insee": "85265", + "nom_de_la_commune": "ST PIERRE LE VIEUX", + "code_postal": "85420", + "coordonnees_gps": [ + 46.4009643491, + -0.742816267425 + ], + "libelle_d_acheminement": "ST PIERRE LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.742816267425, + 46.4009643491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b26a4f92a9b5f30141fac7c9079df769aa623d87", + "fields": { + "code_commune_insee": "85268", + "nom_de_la_commune": "ST REVEREND", + "code_postal": "85220", + "coordonnees_gps": [ + 46.7057741864, + -1.83155480996 + ], + "libelle_d_acheminement": "ST REVEREND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83155480996, + 46.7057741864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08013283e30abb695113e5718e24d8330e45b6d8", + "fields": { + "code_commune_insee": "85277", + "nom_de_la_commune": "ST VINCENT SUR GRAON", + "code_postal": "85540", + "coordonnees_gps": [ + 46.5034756656, + -1.382954206 + ], + "libelle_d_acheminement": "ST VINCENT SUR GRAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.382954206, + 46.5034756656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10f960bb7cff6b943abb6d31673bf135811076c8", + "fields": { + "code_commune_insee": "85281", + "nom_de_la_commune": "SERIGNE", + "code_postal": "85200", + "coordonnees_gps": [ + 46.5054321828, + -0.848819460581 + ], + "libelle_d_acheminement": "SERIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.848819460581, + 46.5054321828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d541c6ccfc9d09054834f85b4b798457e09e76a", + "fields": { + "code_commune_insee": "85285", + "nom_de_la_commune": "LE TABLIER", + "code_postal": "85310", + "coordonnees_gps": [ + 46.5596307281, + -1.32788759657 + ], + "libelle_d_acheminement": "LE TABLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32788759657, + 46.5596307281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e583d282efbf60d2d16f290c2c3888a44cde9b69", + "fields": { + "code_commune_insee": "85287", + "nom_de_la_commune": "TALLUD STE GEMME", + "code_postal": "85390", + "coordonnees_gps": [ + 46.6949386862, + -0.886169517112 + ], + "libelle_d_acheminement": "TALLUD STE GEMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.886169517112, + 46.6949386862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "676b591843b8446dc651e44ba96e5acd72245c46", + "fields": { + "code_commune_insee": "85289", + "nom_de_la_commune": "LA TARDIERE", + "code_postal": "85120", + "coordonnees_gps": [ + 46.663737434, + -0.727562430214 + ], + "libelle_d_acheminement": "LA TARDIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.727562430214, + 46.663737434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c87d34c4b4e4f175f5b513cdab39e9e290f1262", + "fields": { + "code_commune_insee": "85292", + "nom_de_la_commune": "THOUARSAIS BOUILDROUX", + "code_postal": "85410", + "coordonnees_gps": [ + 46.6062740621, + -0.873461023865 + ], + "libelle_d_acheminement": "THOUARSAIS BOUILDROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.873461023865, + 46.6062740621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07de70c3bc60733d51d3ccfec656f278f5e95983", + "fields": { + "code_commune_insee": "85294", + "nom_de_la_commune": "LA TRANCHE SUR MER", + "code_postal": "85360", + "coordonnees_gps": [ + 46.3564601605, + -1.43136322126 + ], + "libelle_d_acheminement": "LA TRANCHE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43136322126, + 46.3564601605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "285106efd2d0a697943e365aeae316a547a4e1c9", + "fields": { + "code_commune_insee": "85304", + "nom_de_la_commune": "VOUILLE LES MARAIS", + "code_postal": "85450", + "coordonnees_gps": [ + 46.3891941167, + -0.968106001439 + ], + "libelle_d_acheminement": "VOUILLE LES MARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.968106001439, + 46.3891941167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bee9eafcab02e4357aa6f3142e83f7b70fb70a3d", + "fields": { + "code_commune_insee": "86005", + "nom_de_la_commune": "ANGLIERS", + "code_postal": "86330", + "coordonnees_gps": [ + 46.9385872919, + 0.102241708869 + ], + "libelle_d_acheminement": "ANGLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.102241708869, + 46.9385872919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7082ae37a092ffce3e35f72d561a743a0e841207", + "fields": { + "code_commune_insee": "86009", + "nom_de_la_commune": "ARCHIGNY", + "code_postal": "86210", + "coordonnees_gps": [ + 46.6715864043, + 0.681233798313 + ], + "libelle_d_acheminement": "ARCHIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.681233798313, + 46.6715864043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ff76a557449c52cfa441d6dd5fef3512b16c3a2", + "fields": { + "code_commune_insee": "86011", + "nom_de_la_commune": "ASNIERES SUR BLOUR", + "code_postal": "86430", + "coordonnees_gps": [ + 46.1500987488, + 0.78461771822 + ], + "libelle_d_acheminement": "ASNIERES SUR BLOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78461771822, + 46.1500987488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10e1136f414711a5f802326c19b68979082a9264", + "fields": { + "code_commune_insee": "86020", + "nom_de_la_commune": "BELLEFONDS", + "code_postal": "86210", + "coordonnees_gps": [ + 46.6504921965, + 0.607845231344 + ], + "libelle_d_acheminement": "BELLEFONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.607845231344, + 46.6504921965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86be6566b3e7715504dfb6a65eff8e8cc70065e8", + "fields": { + "code_commune_insee": "86028", + "nom_de_la_commune": "BIGNOUX", + "code_postal": "86800", + "coordonnees_gps": [ + 46.6032559543, + 0.465724619773 + ], + "libelle_d_acheminement": "BIGNOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.465724619773, + 46.6032559543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abe1538250ff1955c3551c5dc21cadcebe894917", + "fields": { + "code_commune_insee": "86039", + "nom_de_la_commune": "BRUX", + "code_postal": "86510", + "coordonnees_gps": [ + 46.2504690736, + 0.191737009106 + ], + "libelle_d_acheminement": "BRUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.191737009106, + 46.2504690736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc904d888525e9a039f95887015637daf6c93aec", + "fields": { + "code_commune_insee": "86044", + "nom_de_la_commune": "CEAUX EN LOUDUN", + "code_postal": "86200", + "coordonnees_gps": [ + 47.0334327292, + 0.229028665856 + ], + "libelle_d_acheminement": "CEAUX EN LOUDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.229028665856, + 47.0334327292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f087c6d3367a2f50684e4ec3432b9414397cc1b", + "fields": { + "code_commune_insee": "86049", + "nom_de_la_commune": "CHALAIS", + "code_postal": "86200", + "coordonnees_gps": [ + 46.9719782198, + 0.0979602730764 + ], + "libelle_d_acheminement": "CHALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0979602730764, + 46.9719782198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "514fb506e71d11c07a70ea7397c64a15514f2c7e", + "fields": { + "ligne_5": "CHAMPIGNY LE SEC", + "code_commune_insee": "86053", + "libelle_d_acheminement": "CHAMPIGNY EN ROCHEREAU", + "code_postal": "86170", + "nom_de_la_commune": "CHAMPIGNY EN ROCHEREAU", + "coordonnees_gps": [ + 46.7235017775, + 0.154205857563 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.154205857563, + 46.7235017775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d5c3bcfd75a581077cb34617aaea52b0f89c2da", + "fields": { + "ligne_5": "LE ROCHEREAU", + "code_commune_insee": "86053", + "libelle_d_acheminement": "CHAMPIGNY EN ROCHEREAU", + "code_postal": "86170", + "nom_de_la_commune": "CHAMPIGNY EN ROCHEREAU", + "coordonnees_gps": [ + 46.7235017775, + 0.154205857563 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.154205857563, + 46.7235017775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aecc0ac692f5b2ae2278b53e2da979817de49767", + "fields": { + "code_commune_insee": "86062", + "nom_de_la_commune": "CHASSENEUIL DU POITOU", + "code_postal": "86360", + "coordonnees_gps": [ + 46.6518600158, + 0.361722698793 + ], + "libelle_d_acheminement": "CHASSENEUIL DU POITOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.361722698793, + 46.6518600158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be0c2d63aa40d80d9da902a1429200237a31d702", + "fields": { + "code_commune_insee": "86066", + "nom_de_la_commune": "CHATELLERAULT", + "code_postal": "86100", + "coordonnees_gps": [ + 46.8156700185, + 0.552598976936 + ], + "libelle_d_acheminement": "CHATELLERAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.552598976936, + 46.8156700185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1c73957a43c5c8eea66f01c146febd3e812893d", + "fields": { + "code_commune_insee": "86068", + "nom_de_la_commune": "CHAUNAY", + "code_postal": "86510", + "coordonnees_gps": [ + 46.2051935313, + 0.158137798049 + ], + "libelle_d_acheminement": "CHAUNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.158137798049, + 46.2051935313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84594131b7781f67ba62e7d44698921402e58096", + "fields": { + "code_commune_insee": "86080", + "nom_de_la_commune": "CLOUE", + "code_postal": "86600", + "coordonnees_gps": [ + 46.4464190572, + 0.16406841425 + ], + "libelle_d_acheminement": "CLOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16406841425, + 46.4464190572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a563e04bb1b7569a9c838150f16e99a801ae0b81", + "fields": { + "code_commune_insee": "86089", + "nom_de_la_commune": "CUHON", + "code_postal": "86110", + "coordonnees_gps": [ + 46.7619647727, + 0.105709107422 + ], + "libelle_d_acheminement": "CUHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.105709107422, + 46.7619647727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09f4fae2dbcb6d7c2ebcd44ba9e775c4894c4ed2", + "fields": { + "code_commune_insee": "86091", + "nom_de_la_commune": "CURZAY SUR VONNE", + "code_postal": "86600", + "coordonnees_gps": [ + 46.4906519992, + 0.0413718312202 + ], + "libelle_d_acheminement": "CURZAY SUR VONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0413718312202, + 46.4906519992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9009908394e130a38fb181181d4896ab0d375ab4", + "fields": { + "code_commune_insee": "86100", + "nom_de_la_commune": "FONTAINE LE COMTE", + "code_postal": "86240", + "coordonnees_gps": [ + 46.5312436615, + 0.246086949225 + ], + "libelle_d_acheminement": "FONTAINE LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.246086949225, + 46.5312436615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f0c5d574f9cb69d8c4c460b4685d7d71dd2da9a", + "fields": { + "code_commune_insee": "86106", + "nom_de_la_commune": "GLENOUZE", + "code_postal": "86200", + "coordonnees_gps": [ + 47.007793926, + -0.00436588789691 + ], + "libelle_d_acheminement": "GLENOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00436588789691, + 47.007793926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68908e798e38ecaf1810d77bac56f1b58808a610", + "fields": { + "code_commune_insee": "86107", + "nom_de_la_commune": "GOUEX", + "code_postal": "86320", + "coordonnees_gps": [ + 46.368868035, + 0.664823680576 + ], + "libelle_d_acheminement": "GOUEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.664823680576, + 46.368868035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6cc55f12c39dfa93634c862ed0eb785cebc9e8e", + "fields": { + "code_commune_insee": "86114", + "nom_de_la_commune": "JARDRES", + "code_postal": "86800", + "coordonnees_gps": [ + 46.5676854108, + 0.569115337508 + ], + "libelle_d_acheminement": "JARDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.569115337508, + 46.5676854108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9376e00e4365907fd1df223b26abdbb3236143e2", + "fields": { + "ligne_5": "JAUNAY CLAN", + "code_commune_insee": "86115", + "libelle_d_acheminement": "JAUNAY MARIGNY", + "code_postal": "86130", + "nom_de_la_commune": "JAUNAY MARIGNY", + "coordonnees_gps": [ + 46.6935919998, + 0.356614754201 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.356614754201, + 46.6935919998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f2e07b9661acdeb6bceeeeb819db0d0132f1082", + "fields": { + "code_commune_insee": "86118", + "nom_de_la_commune": "JOURNET", + "code_postal": "86290", + "coordonnees_gps": [ + 46.469251343, + 0.974156008064 + ], + "libelle_d_acheminement": "JOURNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.974156008064, + 46.469251343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb44302117fd897875b7875eab8aa3f564e3a142", + "fields": { + "code_commune_insee": "86119", + "nom_de_la_commune": "JOUSSE", + "code_postal": "86350", + "coordonnees_gps": [ + 46.2241305163, + 0.457298281723 + ], + "libelle_d_acheminement": "JOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.457298281723, + 46.2241305163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1898afb7fbd0d4a47a61fa3f4abceb203df571ad", + "fields": { + "ligne_5": "ST REMY EN MONTMORILLON", + "code_commune_insee": "86120", + "libelle_d_acheminement": "LATHUS ST REMY", + "code_postal": "86390", + "nom_de_la_commune": "LATHUS ST REMY", + "coordonnees_gps": [ + 46.3208334605, + 0.944330571873 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.944330571873, + 46.3208334605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c01a4d68b2a8bcc3342699decdf6957575b5a480", + "fields": { + "ligne_5": "LA CHAPELLE MONTREUIL", + "code_commune_insee": "86123", + "libelle_d_acheminement": "BOIVRE LA VALLEE", + "code_postal": "86470", + "nom_de_la_commune": "BOIVRE LA VALLEE", + "coordonnees_gps": [ + 46.5433549804, + 0.0821497150944 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0821497150944, + 46.5433549804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3afc3abea2e9d2b1d0a06ee66c19a42614fd420d", + "fields": { + "code_commune_insee": "86133", + "nom_de_la_commune": "LIGUGE", + "code_postal": "86240", + "coordonnees_gps": [ + 46.5205840634, + 0.298086285921 + ], + "libelle_d_acheminement": "LIGUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.298086285921, + 46.5205840634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e1081814f08456ba1895ae765bf32f0f772337d", + "fields": { + "ligne_5": "ROSSAY", + "code_commune_insee": "86137", + "libelle_d_acheminement": "LOUDUN", + "code_postal": "86200", + "nom_de_la_commune": "LOUDUN", + "coordonnees_gps": [ + 47.0098072856, + 0.0990443124673 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0990443124673, + 47.0098072856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68a095cb6d4a9d194a16734d360f86a6f00e39fe", + "fields": { + "code_commune_insee": "86140", + "nom_de_la_commune": "LUSSAC LES CHATEAUX", + "code_postal": "86320", + "coordonnees_gps": [ + 46.4057829015, + 0.730122613714 + ], + "libelle_d_acheminement": "LUSSAC LES CHATEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.730122613714, + 46.4057829015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b31a4cd54ebbf3c54affb0a869c94bf5c189aad2", + "fields": { + "code_commune_insee": "86149", + "nom_de_la_commune": "MARTAIZE", + "code_postal": "86330", + "coordonnees_gps": [ + 46.9199511468, + 0.0501103603933 + ], + "libelle_d_acheminement": "MARTAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0501103603933, + 46.9199511468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3377a73a93d615252242e35b48c9828009d76429", + "fields": { + "code_commune_insee": "86151", + "nom_de_la_commune": "MAULAY", + "code_postal": "86200", + "coordonnees_gps": [ + 46.9685118414, + 0.216139412097 + ], + "libelle_d_acheminement": "MAULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.216139412097, + 46.9685118414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79f73bdc2d172c968ad0b1f0c6c4b6c3c886bd42", + "fields": { + "code_commune_insee": "86152", + "nom_de_la_commune": "MAUPREVOIR", + "code_postal": "86460", + "coordonnees_gps": [ + 46.1644495651, + 0.516322833549 + ], + "libelle_d_acheminement": "MAUPREVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.516322833549, + 46.1644495651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d3e4bd2b5d5e03753885c61fa8a2193ad6a4002", + "fields": { + "code_commune_insee": "86156", + "nom_de_la_commune": "MESSEME", + "code_postal": "86200", + "coordonnees_gps": [ + 47.0106163687, + 0.16882423682 + ], + "libelle_d_acheminement": "MESSEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16882423682, + 47.0106163687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71356e16ee10dc80a8c22ec674e5f65f37ec20a9", + "fields": { + "code_commune_insee": "86157", + "nom_de_la_commune": "MIGNALOUX BEAUVOIR", + "code_postal": "86550", + "coordonnees_gps": [ + 46.5483807431, + 0.415961339413 + ], + "libelle_d_acheminement": "MIGNALOUX BEAUVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.415961339413, + 46.5483807431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ab4d5a0744671c276c50ecd8f7e35ad57d51af7", + "fields": { + "code_commune_insee": "86169", + "nom_de_la_commune": "MORTON", + "code_postal": "86120", + "coordonnees_gps": [ + 47.1033528602, + -0.0128216662358 + ], + "libelle_d_acheminement": "MORTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0128216662358, + 47.1033528602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7076689273e63e266349346c8006d7202956b230", + "fields": { + "code_commune_insee": "86172", + "nom_de_la_commune": "MOUTERRE SUR BLOURDE", + "code_postal": "86430", + "coordonnees_gps": [ + 46.216506603, + 0.768458601228 + ], + "libelle_d_acheminement": "MOUTERRE SUR BLOURDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.768458601228, + 46.216506603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9223d89d2b1e091348baf5981419936866a9b83a", + "fields": { + "code_commune_insee": "86201", + "nom_de_la_commune": "PRINCAY", + "code_postal": "86420", + "coordonnees_gps": [ + 46.9289774841, + 0.253952307477 + ], + "libelle_d_acheminement": "PRINCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.253952307477, + 46.9289774841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3112cf47a2e09503d0abb348ed5508572a09f177", + "fields": { + "code_commune_insee": "86209", + "nom_de_la_commune": "ROCHES PREMARIE ANDILLE", + "code_postal": "86340", + "coordonnees_gps": [ + 46.4752381283, + 0.36777654204 + ], + "libelle_d_acheminement": "ROCHES PREMARIE ANDILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36777654204, + 46.4752381283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a505c216d98f17853cf22ce58cffe93ef98154fa", + "fields": { + "code_commune_insee": "86213", + "nom_de_la_commune": "ROUILLE", + "code_postal": "86480", + "coordonnees_gps": [ + 46.4200390624, + 0.0268226076765 + ], + "libelle_d_acheminement": "ROUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0268226076765, + 46.4200390624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16c2f3c505725ca01163e47f02cba85107c1c5f8", + "fields": { + "code_commune_insee": "86217", + "nom_de_la_commune": "ST CHRISTOPHE", + "code_postal": "86230", + "coordonnees_gps": [ + 46.9252807285, + 0.374730280796 + ], + "libelle_d_acheminement": "ST CHRISTOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.374730280796, + 46.9252807285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e0cb0ca815e54ce4d831be275c472ace41fc19d", + "fields": { + "code_commune_insee": "86220", + "nom_de_la_commune": "ST GAUDENT", + "code_postal": "86400", + "coordonnees_gps": [ + 46.1135869026, + 0.285066310291 + ], + "libelle_d_acheminement": "ST GAUDENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.285066310291, + 46.1135869026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9859326100a395741e60219d28c05331796f1ca", + "fields": { + "code_commune_insee": "86221", + "nom_de_la_commune": "ST GENEST D AMBIERE", + "code_postal": "86140", + "coordonnees_gps": [ + 46.8280251017, + 0.360852837882 + ], + "libelle_d_acheminement": "ST GENEST D AMBIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.360852837882, + 46.8280251017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dab0974d6791a390de0b1bf07f37b127e336302b", + "fields": { + "code_commune_insee": "86224", + "nom_de_la_commune": "ST GERVAIS LES TROIS CLOCHERS", + "code_postal": "86230", + "coordonnees_gps": [ + 46.8978345049, + 0.419446005432 + ], + "libelle_d_acheminement": "ST GERVAIS LES TROIS CLOCHERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.419446005432, + 46.8978345049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01bc6e29f6c34ce471abd56662aeba39a167a14d", + "fields": { + "code_commune_insee": "86225", + "nom_de_la_commune": "ST JEAN DE SAUVES", + "code_postal": "86330", + "coordonnees_gps": [ + 46.8393708515, + 0.0880509960566 + ], + "libelle_d_acheminement": "ST JEAN DE SAUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0880509960566, + 46.8393708515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de88776bab87c3e17316974a4527cb0b857b3285", + "fields": { + "code_commune_insee": "86228", + "nom_de_la_commune": "ST LAURENT DE JOURDES", + "code_postal": "86410", + "coordonnees_gps": [ + 46.390727985, + 0.539195755416 + ], + "libelle_d_acheminement": "ST LAURENT DE JOURDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.539195755416, + 46.390727985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9cbab685fbbed8dee7ab01a7308942b16da6e90", + "fields": { + "code_commune_insee": "86230", + "nom_de_la_commune": "ST LEOMER", + "code_postal": "86290", + "coordonnees_gps": [ + 46.4160960603, + 0.997218918187 + ], + "libelle_d_acheminement": "ST LEOMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.997218918187, + 46.4160960603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f33226df1d2bf895c4fdfabbf5824a8de6190f20", + "fields": { + "ligne_5": "CHAPELLE MORTHEMER", + "code_commune_insee": "86233", + "libelle_d_acheminement": "VALDIVIENNE", + "code_postal": "86300", + "nom_de_la_commune": "VALDIVIENNE", + "coordonnees_gps": [ + 46.4919287811, + 0.630612249319 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.630612249319, + 46.4919287811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dad33f7dbbd12df11ccca5c6a408ebbb1dd7f4a0", + "fields": { + "ligne_5": "MORTHEMER", + "code_commune_insee": "86233", + "libelle_d_acheminement": "VALDIVIENNE", + "code_postal": "86300", + "nom_de_la_commune": "VALDIVIENNE", + "coordonnees_gps": [ + 46.4919287811, + 0.630612249319 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.630612249319, + 46.4919287811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b44852bcc4c592a7b529cc70268470fb2d8e3ce", + "fields": { + "ligne_5": "SALLES EN TOULON", + "code_commune_insee": "86233", + "libelle_d_acheminement": "VALDIVIENNE", + "code_postal": "86300", + "nom_de_la_commune": "VALDIVIENNE", + "coordonnees_gps": [ + 46.4919287811, + 0.630612249319 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.630612249319, + 46.4919287811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0ad967f680e39c9828965212711453d5312a453", + "fields": { + "ligne_5": "ST MARTIN LA RIVIERE", + "code_commune_insee": "86233", + "libelle_d_acheminement": "VALDIVIENNE", + "code_postal": "86300", + "nom_de_la_commune": "VALDIVIENNE", + "coordonnees_gps": [ + 46.4919287811, + 0.630612249319 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.630612249319, + 46.4919287811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "054a4ee1452085af50e388a265ab7cb53eff3ed7", + "fields": { + "code_commune_insee": "86237", + "nom_de_la_commune": "ST PIERRE D EXIDEUIL", + "code_postal": "86400", + "coordonnees_gps": [ + 46.1597471009, + 0.258206658722 + ], + "libelle_d_acheminement": "ST PIERRE D EXIDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.258206658722, + 46.1597471009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85d753d479a987a265cab89926604bf8f6d5d5e7", + "fields": { + "ligne_5": "ST SAUVEUR", + "code_commune_insee": "86245", + "libelle_d_acheminement": "SENILLE ST SAUVEUR", + "code_postal": "86100", + "nom_de_la_commune": "SENILLE ST SAUVEUR", + "coordonnees_gps": [ + 46.8023769572, + 0.645222775662 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.645222775662, + 46.8023769572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52fb608edcff611ec6c94b197ef538b44aff27e6", + "fields": { + "code_commune_insee": "86257", + "nom_de_la_commune": "SAVIGNY SOUS FAYE", + "code_postal": "86140", + "coordonnees_gps": [ + 46.8700526474, + 0.290887370241 + ], + "libelle_d_acheminement": "SAVIGNY SOUS FAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.290887370241, + 46.8700526474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28471dd95badc271afa93e5abff760bb2fb6ae08", + "fields": { + "code_commune_insee": "86258", + "nom_de_la_commune": "SCORBE CLAIRVAUX", + "code_postal": "86140", + "coordonnees_gps": [ + 46.8070996218, + 0.410520780394 + ], + "libelle_d_acheminement": "SCORBE CLAIRVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.410520780394, + 46.8070996218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ed656b0ccdf7884f75ed7f27b0a215ac1cb0791", + "fields": { + "code_commune_insee": "86263", + "nom_de_la_commune": "SMARVES", + "code_postal": "86240", + "coordonnees_gps": [ + 46.5117860933, + 0.35738527373 + ], + "libelle_d_acheminement": "SMARVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35738527373, + 46.5117860933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "833aa6ca11356406f180d993f1aac0882e4d7544", + "fields": { + "code_commune_insee": "86266", + "nom_de_la_commune": "SURIN", + "code_postal": "86250", + "coordonnees_gps": [ + 46.078667272, + 0.375623854305 + ], + "libelle_d_acheminement": "SURIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.375623854305, + 46.078667272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b06a93d7f23b16da825529bdfbc22e9ce27afe7", + "fields": { + "ligne_5": "CHENECHE", + "code_commune_insee": "86281", + "libelle_d_acheminement": "ST MARTIN LA PALLU", + "code_postal": "86380", + "nom_de_la_commune": "ST MARTIN LA PALLU", + "coordonnees_gps": [ + 46.7257294261, + 0.312684454169 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.312684454169, + 46.7257294261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38c8917f24acc2172d5e5bef096ee6223e71de9d", + "fields": { + "code_commune_insee": "86285", + "nom_de_la_commune": "VERRIERES", + "code_postal": "86410", + "coordonnees_gps": [ + 46.4029509232, + 0.597094727763 + ], + "libelle_d_acheminement": "VERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.597094727763, + 46.4029509232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31b4ab062b3ea2aadcac68256739155b609f8162", + "fields": { + "code_commune_insee": "86286", + "nom_de_la_commune": "VERRUE", + "code_postal": "86420", + "coordonnees_gps": [ + 46.8695202148, + 0.178625363655 + ], + "libelle_d_acheminement": "VERRUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.178625363655, + 46.8695202148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e18cbb587fd86deb7b1304bb7302cbb840d8338", + "fields": { + "code_commune_insee": "86288", + "nom_de_la_commune": "VICQ SUR GARTEMPE", + "code_postal": "86260", + "coordonnees_gps": [ + 46.726218827, + 0.843611918005 + ], + "libelle_d_acheminement": "VICQ SUR GARTEMPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.843611918005, + 46.726218827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99724d0c963d45e5140902a9d65c624fba589f64", + "fields": { + "code_commune_insee": "86289", + "nom_de_la_commune": "LE VIGEANT", + "code_postal": "86150", + "coordonnees_gps": [ + 46.2207295456, + 0.637791389497 + ], + "libelle_d_acheminement": "LE VIGEANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.637791389497, + 46.2207295456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cadce4f95ff497e5387a8b209bfc44b73ec7f474", + "fields": { + "code_commune_insee": "86293", + "nom_de_la_commune": "VIVONNE", + "code_postal": "86370", + "coordonnees_gps": [ + 46.412040698, + 0.257005369348 + ], + "libelle_d_acheminement": "VIVONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.257005369348, + 46.412040698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85f75aa6ad6be8b810a93471bbfc8ce192cca22d", + "fields": { + "code_commune_insee": "87001", + "nom_de_la_commune": "AIXE SUR VIENNE", + "code_postal": "87700", + "coordonnees_gps": [ + 45.798115839, + 1.13256119886 + ], + "libelle_d_acheminement": "AIXE SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13256119886, + 45.798115839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb5ae9daf6b0d3a997741dc28ba648922f0788e5", + "fields": { + "code_commune_insee": "87007", + "nom_de_la_commune": "BALLEDENT", + "code_postal": "87290", + "coordonnees_gps": [ + 46.1086784953, + 1.21629867254 + ], + "libelle_d_acheminement": "BALLEDENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21629867254, + 46.1086784953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9125395bd327f48095c4c5673adaaa02d1979895", + "fields": { + "code_commune_insee": "87013", + "nom_de_la_commune": "BERSAC SUR RIVALIER", + "code_postal": "87370", + "coordonnees_gps": [ + 46.077935885, + 1.41763260464 + ], + "libelle_d_acheminement": "BERSAC SUR RIVALIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41763260464, + 46.077935885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdd409449fef5824ad44de771cf4f73426185351", + "fields": { + "code_commune_insee": "87016", + "nom_de_la_commune": "LES BILLANGES", + "code_postal": "87340", + "coordonnees_gps": [ + 45.977873784, + 1.53625205794 + ], + "libelle_d_acheminement": "LES BILLANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53625205794, + 45.977873784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e51ebaa5086b15200062353b50d7a33faf4050b", + "fields": { + "code_commune_insee": "87030", + "nom_de_la_commune": "CHAILLAC SUR VIENNE", + "code_postal": "87200", + "coordonnees_gps": [ + 45.8634763342, + 0.875471020076 + ], + "libelle_d_acheminement": "CHAILLAC SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.875471020076, + 45.8634763342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89451d5db5d8d0fe4476ee9437ba8f97a49be77a", + "fields": { + "code_commune_insee": "87031", + "nom_de_la_commune": "LE CHALARD", + "code_postal": "87500", + "coordonnees_gps": [ + 45.5540861274, + 1.12489435549 + ], + "libelle_d_acheminement": "LE CHALARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12489435549, + 45.5540861274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b811da9b7392490572ff3d7253967fc22a6d5b7b", + "fields": { + "code_commune_insee": "87032", + "nom_de_la_commune": "CHALUS", + "code_postal": "87230", + "coordonnees_gps": [ + 45.6572392985, + 0.964687507808 + ], + "libelle_d_acheminement": "CHALUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.964687507808, + 45.6572392985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "960eb7f3925dcff469087b2483df5e5b1d03057f", + "fields": { + "code_commune_insee": "87042", + "nom_de_la_commune": "LE CHATENET EN DOGNON", + "code_postal": "87400", + "coordonnees_gps": [ + 45.9046069243, + 1.50535263166 + ], + "libelle_d_acheminement": "LE CHATENET EN DOGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50535263166, + 45.9046069243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f13d0bad2bd10bcec20911742298613668a36b49", + "fields": { + "code_commune_insee": "87050", + "nom_de_la_commune": "COUZEIX", + "code_postal": "87270", + "coordonnees_gps": [ + 45.8830768403, + 1.22078165066 + ], + "libelle_d_acheminement": "COUZEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22078165066, + 45.8830768403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6385843ff70f5a4d7c967afc4bdc0625de89b897", + "fields": { + "code_commune_insee": "87053", + "nom_de_la_commune": "CROMAC", + "code_postal": "87160", + "coordonnees_gps": [ + 46.3601964498, + 1.31102488604 + ], + "libelle_d_acheminement": "CROMAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31102488604, + 46.3601964498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be75e701f0b355382e113791f56114ea763c61b4", + "fields": { + "code_commune_insee": "87057", + "nom_de_la_commune": "DOMPIERRE LES EGLISES", + "code_postal": "87190", + "coordonnees_gps": [ + 46.2151282851, + 1.24961324009 + ], + "libelle_d_acheminement": "DOMPIERRE LES EGLISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24961324009, + 46.2151282851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cd4ddcdae0fd016d35b46aa5b51c24e3051559a", + "fields": { + "code_commune_insee": "87061", + "nom_de_la_commune": "DROUX", + "code_postal": "87190", + "coordonnees_gps": [ + 46.1652051939, + 1.14857191289 + ], + "libelle_d_acheminement": "DROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14857191289, + 46.1652051939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a76e9315c8f3ba6d05fa4f478c21ca2ccbce9040", + "fields": { + "code_commune_insee": "87063", + "nom_de_la_commune": "EYJEAUX", + "code_postal": "87220", + "coordonnees_gps": [ + 45.7748713426, + 1.37728404596 + ], + "libelle_d_acheminement": "EYJEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37728404596, + 45.7748713426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "518030b0c86bcb20310acd91ff232f72a2640d19", + "fields": { + "code_commune_insee": "87064", + "nom_de_la_commune": "EYMOUTIERS", + "code_postal": "87120", + "coordonnees_gps": [ + 45.710854305, + 1.74020017189 + ], + "libelle_d_acheminement": "EYMOUTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74020017189, + 45.710854305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cea008c2fc9148ffe4606d4ed3101c9647fce04", + "fields": { + "code_commune_insee": "87068", + "nom_de_la_commune": "FROMENTAL", + "code_postal": "87250", + "coordonnees_gps": [ + 46.1583680673, + 1.41900576351 + ], + "libelle_d_acheminement": "FROMENTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41900576351, + 46.1583680673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e141dc01a684fb483ce92eeda54a74e25644621", + "fields": { + "code_commune_insee": "87070", + "nom_de_la_commune": "LA GENEYTOUSE", + "code_postal": "87400", + "coordonnees_gps": [ + 45.7872366834, + 1.45422781567 + ], + "libelle_d_acheminement": "LA GENEYTOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45422781567, + 45.7872366834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8ded6e7a7fc00eec847a1b8efa0e5ed8a9556ee", + "fields": { + "code_commune_insee": "87079", + "nom_de_la_commune": "LA JONCHERE ST MAURICE", + "code_postal": "87340", + "coordonnees_gps": [ + 46.0045426024, + 1.478589047 + ], + "libelle_d_acheminement": "LA JONCHERE ST MAURICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.478589047, + 46.0045426024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34f00ac4a25cb768e835d35ed2ba0afca3c2ff73", + "fields": { + "code_commune_insee": "87095", + "nom_de_la_commune": "MEUZAC", + "code_postal": "87380", + "coordonnees_gps": [ + 45.553088918, + 1.4167411148 + ], + "libelle_d_acheminement": "MEUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4167411148, + 45.553088918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "635a1922fb81a36a48fe030474b01f825a2093fb", + "fields": { + "code_commune_insee": "87099", + "nom_de_la_commune": "MOISSANNES", + "code_postal": "87400", + "coordonnees_gps": [ + 45.8745025564, + 1.55616505149 + ], + "libelle_d_acheminement": "MOISSANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55616505149, + 45.8745025564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c592fa046e01036ceb69e110cc2c259470f75e44", + "fields": { + "code_commune_insee": "87107", + "nom_de_la_commune": "NIEUL", + "code_postal": "87510", + "coordonnees_gps": [ + 45.9214559183, + 1.18018067279 + ], + "libelle_d_acheminement": "NIEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18018067279, + 45.9214559183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d134275f988ab7d7d4dd9f0359c1069533c2e0b", + "fields": { + "code_commune_insee": "87123", + "nom_de_la_commune": "REMPNAT", + "code_postal": "87120", + "coordonnees_gps": [ + 45.6849518305, + 1.86463083552 + ], + "libelle_d_acheminement": "REMPNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86463083552, + 45.6849518305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "380df657db9c487ba5dc92f9d57f943875e69c9a", + "fields": { + "code_commune_insee": "87125", + "nom_de_la_commune": "RILHAC RANCON", + "code_postal": "87570", + "coordonnees_gps": [ + 45.9077850023, + 1.33257526084 + ], + "libelle_d_acheminement": "RILHAC RANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33257526084, + 45.9077850023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac0046b0226dfd6cdcd578e12f489f50b8a56fc7", + "fields": { + "code_commune_insee": "87127", + "nom_de_la_commune": "LA ROCHE L ABEILLE", + "code_postal": "87800", + "coordonnees_gps": [ + 45.5937573874, + 1.25816254853 + ], + "libelle_d_acheminement": "LA ROCHE L ABEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25816254853, + 45.5937573874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bd689ea3bc089918884111322d8b14921632d93", + "fields": { + "code_commune_insee": "87129", + "nom_de_la_commune": "ROYERES", + "code_postal": "87400", + "coordonnees_gps": [ + 45.8513527828, + 1.43458779423 + ], + "libelle_d_acheminement": "ROYERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43458779423, + 45.8513527828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53f3907ba5e715232df761c01f7bcd1c84a18e01", + "fields": { + "code_commune_insee": "87141", + "nom_de_la_commune": "ST CYR", + "code_postal": "87310", + "coordonnees_gps": [ + 45.8021449265, + 0.982111467463 + ], + "libelle_d_acheminement": "ST CYR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.982111467463, + 45.8021449265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30e8a9d383b9eb05519c5cf65a450568d2129bd5", + "fields": { + "code_commune_insee": "87148", + "nom_de_la_commune": "ST HILAIRE BONNEVAL", + "code_postal": "87260", + "coordonnees_gps": [ + 45.7218835884, + 1.3678917188 + ], + "libelle_d_acheminement": "ST HILAIRE BONNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3678917188, + 45.7218835884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b4da01fe77a6f0809fa44f7f3f2da754875fb00", + "fields": { + "code_commune_insee": "87150", + "nom_de_la_commune": "ST HILAIRE LES PLACES", + "code_postal": "87800", + "coordonnees_gps": [ + 45.6362784516, + 1.15231983928 + ], + "libelle_d_acheminement": "ST HILAIRE LES PLACES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15231983928, + 45.6362784516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae71af1ea9e27bbdc28a2f5fc3f762ec9a400265", + "fields": { + "code_commune_insee": "87156", + "nom_de_la_commune": "ST JUST LE MARTEL", + "code_postal": "87590", + "coordonnees_gps": [ + 45.8525030992, + 1.38689307646 + ], + "libelle_d_acheminement": "ST JUST LE MARTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38689307646, + 45.8525030992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e0f5d8de0138be996b837a66d2059de6f606a26", + "fields": { + "code_commune_insee": "87162", + "nom_de_la_commune": "STE MARIE DE VAUX", + "code_postal": "87420", + "coordonnees_gps": [ + 45.8624690425, + 1.04112218143 + ], + "libelle_d_acheminement": "STE MARIE DE VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04112218143, + 45.8624690425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b64ed7b214c758923c0888e6bd58bd1513f8be1", + "fields": { + "code_commune_insee": "87168", + "nom_de_la_commune": "ST MATHIEU", + "code_postal": "87440", + "coordonnees_gps": [ + 45.7060063438, + 0.771764710017 + ], + "libelle_d_acheminement": "ST MATHIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.771764710017, + 45.7060063438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56aa6235acb5d3b82f7e95d5cc7df09fa973a216", + "fields": { + "code_commune_insee": "87169", + "nom_de_la_commune": "ST MAURICE LES BROUSSES", + "code_postal": "87800", + "coordonnees_gps": [ + 45.6997312165, + 1.24152185921 + ], + "libelle_d_acheminement": "ST MAURICE LES BROUSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24152185921, + 45.6997312165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4049642b9c3d4bdc186c0a1307c13ae1ae7c0985", + "fields": { + "code_commune_insee": "87176", + "nom_de_la_commune": "ST PRIEST LIGOURE", + "code_postal": "87800", + "coordonnees_gps": [ + 45.6262243469, + 1.300363986 + ], + "libelle_d_acheminement": "ST PRIEST LIGOURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.300363986, + 45.6262243469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abcb5db4915f8dc00d832a2ba6993a6307d68e41", + "fields": { + "code_commune_insee": "87177", + "nom_de_la_commune": "ST PRIEST SOUS AIXE", + "code_postal": "87700", + "coordonnees_gps": [ + 45.8204298381, + 1.08391374375 + ], + "libelle_d_acheminement": "ST PRIEST SOUS AIXE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08391374375, + 45.8204298381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b010af93d21d89313fe2aa1a7fc880b1145ddfb1", + "fields": { + "code_commune_insee": "87187", + "nom_de_la_commune": "ST YRIEIX LA PERCHE", + "code_postal": "87500", + "coordonnees_gps": [ + 45.5251111514, + 1.20386934296 + ], + "libelle_d_acheminement": "ST YRIEIX LA PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20386934296, + 45.5251111514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9433ee1278aa86a8665ff9678d245e9b5e7f98b", + "fields": { + "code_commune_insee": "87195", + "nom_de_la_commune": "TERSANNES", + "code_postal": "87360", + "coordonnees_gps": [ + 46.2907796223, + 1.12756743403 + ], + "libelle_d_acheminement": "TERSANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12756743403, + 46.2907796223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4d74a15dc4a73acb0c4df7319dc126e1ebd06e9", + "fields": { + "ligne_5": "LA BARRE DE VEYRAC", + "code_commune_insee": "87202", + "libelle_d_acheminement": "VEYRAC", + "code_postal": "87520", + "nom_de_la_commune": "VEYRAC", + "coordonnees_gps": [ + 45.9034537819, + 1.09001899064 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09001899064, + 45.9034537819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70599dd2afe3f1a0b06fbfb1183fd202dc7769bc", + "fields": { + "code_commune_insee": "87203", + "nom_de_la_commune": "VICQ SUR BREUILH", + "code_postal": "87260", + "coordonnees_gps": [ + 45.6495648123, + 1.39073762507 + ], + "libelle_d_acheminement": "VICQ SUR BREUILH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39073762507, + 45.6495648123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa18bc2e5c8fca7b413416b694c2cf8819b3cc56", + "fields": { + "code_commune_insee": "87206", + "nom_de_la_commune": "VILLEFAVARD", + "code_postal": "87190", + "coordonnees_gps": [ + 46.1696846397, + 1.2141520992 + ], + "libelle_d_acheminement": "VILLEFAVARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2141520992, + 46.1696846397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2481c5be009ccec847a2b45d9fd95301d3df39dd", + "fields": { + "code_commune_insee": "88009", + "nom_de_la_commune": "ANOULD", + "code_postal": "88650", + "coordonnees_gps": [ + 48.1847716703, + 6.94070062942 + ], + "libelle_d_acheminement": "ANOULD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94070062942, + 48.1847716703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32f7dd89fbbf8e47aa59954269c5060767bbb9a2", + "fields": { + "code_commune_insee": "88011", + "nom_de_la_commune": "ARCHES", + "code_postal": "88380", + "coordonnees_gps": [ + 48.1133336245, + 6.51405793958 + ], + "libelle_d_acheminement": "ARCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51405793958, + 48.1133336245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d12c09942266f054c4be47d857a40236c8461c4d", + "fields": { + "code_commune_insee": "88013", + "nom_de_la_commune": "AROFFE", + "code_postal": "88170", + "coordonnees_gps": [ + 48.4090826549, + 5.89970965405 + ], + "libelle_d_acheminement": "AROFFE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89970965405, + 48.4090826549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f23f600c8c2f199372b5093632bed504c844b0b", + "fields": { + "code_commune_insee": "88024", + "nom_de_la_commune": "AVRAINVILLE", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3781993079, + 6.22115791444 + ], + "libelle_d_acheminement": "AVRAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22115791444, + 48.3781993079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a71fa2830643ffb68de65734fe27b086406e38c", + "fields": { + "code_commune_insee": "88025", + "nom_de_la_commune": "AVRANVILLE", + "code_postal": "88630", + "coordonnees_gps": [ + 48.4179129108, + 5.53556252619 + ], + "libelle_d_acheminement": "AVRANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53556252619, + 48.4179129108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d5b3acccd9c999e9d38e604385a5865260f8aa0", + "fields": { + "code_commune_insee": "88027", + "nom_de_la_commune": "BADMENIL AUX BOIS", + "code_postal": "88330", + "coordonnees_gps": [ + 48.3112223131, + 6.52392431222 + ], + "libelle_d_acheminement": "BADMENIL AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52392431222, + 48.3112223131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "885d08eddb544305a81166d5fd6caed1b20ffc1f", + "fields": { + "code_commune_insee": "88032", + "nom_de_la_commune": "BAN DE LAVELINE", + "code_postal": "88520", + "coordonnees_gps": [ + 48.2280944054, + 7.08440511978 + ], + "libelle_d_acheminement": "BAN DE LAVELINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08440511978, + 48.2280944054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dd12fd6def7dfaa3360a60bf6a058ca2b7aca1e", + "fields": { + "code_commune_insee": "88035", + "nom_de_la_commune": "BARBEY SEROUX", + "code_postal": "88640", + "coordonnees_gps": [ + 48.1316873956, + 6.84739914597 + ], + "libelle_d_acheminement": "BARBEY SEROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84739914597, + 48.1316873956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97821e9cfe79e2b73b5ba6710952f1bc3a25a546", + "fields": { + "code_commune_insee": "88042", + "nom_de_la_commune": "BAZIEN", + "code_postal": "88700", + "coordonnees_gps": [ + 48.4149166, + 6.67611556388 + ], + "libelle_d_acheminement": "BAZIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67611556388, + 48.4149166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07c802db70b32d909b3924b9590bcb83c561b2a6", + "fields": { + "code_commune_insee": "88044", + "nom_de_la_commune": "BAZOILLES SUR MEUSE", + "code_postal": "88300", + "coordonnees_gps": [ + 48.3011735776, + 5.65035260146 + ], + "libelle_d_acheminement": "BAZOILLES SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65035260146, + 48.3011735776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "576ae29b84580aee80d7db8a679ef9f510239a56", + "fields": { + "code_commune_insee": "88051", + "nom_de_la_commune": "BELMONT SUR VAIR", + "code_postal": "88800", + "coordonnees_gps": [ + 48.2590063678, + 5.9158647649 + ], + "libelle_d_acheminement": "BELMONT SUR VAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9158647649, + 48.2590063678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b759afba8c3b31680d714616a8dbf2045e82c87", + "fields": { + "code_commune_insee": "88066", + "nom_de_la_commune": "BOULAINCOURT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3722153205, + 6.08621386332 + ], + "libelle_d_acheminement": "BOULAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08621386332, + 48.3722153205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "600a2fd772bc24c86d573bfc7bdbef6a1d94ee2c", + "fields": { + "code_commune_insee": "88079", + "nom_de_la_commune": "BULGNEVILLE", + "code_postal": "88140", + "coordonnees_gps": [ + 48.2103923658, + 5.84105562447 + ], + "libelle_d_acheminement": "BULGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84105562447, + 48.2103923658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "786c50813bf4c76fd11962b237dbdec8cc42c341", + "fields": { + "code_commune_insee": "88081", + "nom_de_la_commune": "BUSSANG", + "code_postal": "88540", + "coordonnees_gps": [ + 47.8913024927, + 6.87663647751 + ], + "libelle_d_acheminement": "BUSSANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87663647751, + 47.8913024927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3914c0639ef2f7f0dd550bda6a5cbd7fa8365452", + "fields": { + "code_commune_insee": "88086", + "nom_de_la_commune": "CHAMP LE DUC", + "code_postal": "88600", + "coordonnees_gps": [ + 48.1923697643, + 6.72962889202 + ], + "libelle_d_acheminement": "CHAMP LE DUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72962889202, + 48.1923697643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3a06e4015775311789d6a9d0a6e03ec29be0299", + "fields": { + "code_commune_insee": "88089", + "nom_de_la_commune": "LA CHAPELLE DEVANT BRUYERES", + "code_postal": "88600", + "coordonnees_gps": [ + 48.178743233, + 6.80624772393 + ], + "libelle_d_acheminement": "LA CHAPELLE DEVANT BRUYERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80624772393, + 48.178743233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7687a779fcc28a4534fac6a2bacedab8c27f0027", + "fields": { + "code_commune_insee": "88095", + "nom_de_la_commune": "CHATENOIS", + "code_postal": "88170", + "coordonnees_gps": [ + 48.309318088, + 5.82646017052 + ], + "libelle_d_acheminement": "CHATENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82646017052, + 48.309318088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c03e05f9d1d184c782744e28cfff3c3689029b8", + "fields": { + "code_commune_insee": "88102", + "nom_de_la_commune": "CHERMISEY", + "code_postal": "88630", + "coordonnees_gps": [ + 48.4148753305, + 5.56909625806 + ], + "libelle_d_acheminement": "CHERMISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56909625806, + 48.4148753305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd7a9462aa0e2d0e67d05ca45c5d99e5fda9c171", + "fields": { + "code_commune_insee": "88103", + "nom_de_la_commune": "CIRCOURT", + "code_postal": "88270", + "coordonnees_gps": [ + 48.249056578, + 6.28568512782 + ], + "libelle_d_acheminement": "CIRCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28568512782, + 48.249056578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf5b80bc9b37f5727ca7acb024893c5614815615", + "fields": { + "code_commune_insee": "88108", + "nom_de_la_commune": "LE CLERJUS", + "code_postal": "88240", + "coordonnees_gps": [ + 47.9756723942, + 6.33126246271 + ], + "libelle_d_acheminement": "LE CLERJUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33126246271, + 47.9756723942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bc59a672f88f3e824fe2c834b8f240ec52ef369", + "fields": { + "code_commune_insee": "88109", + "nom_de_la_commune": "CLEURIE", + "code_postal": "88120", + "coordonnees_gps": [ + 48.0561974173, + 6.6745100442 + ], + "libelle_d_acheminement": "CLEURIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6745100442, + 48.0561974173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2012fffc62887d7c1713221e06d43de43300c4a", + "fields": { + "code_commune_insee": "88130", + "nom_de_la_commune": "DESTORD", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2735636446, + 6.6180368502 + ], + "libelle_d_acheminement": "DESTORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6180368502, + 48.2735636446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49205da1ba6f4f9c0fb1b75ff579dc7a83a76887", + "fields": { + "code_commune_insee": "88131", + "nom_de_la_commune": "DEYCIMONT", + "code_postal": "88600", + "coordonnees_gps": [ + 48.1738809469, + 6.64106383013 + ], + "libelle_d_acheminement": "DEYCIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64106383013, + 48.1738809469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "927d231ed8169dfc4fe58d9595ce85f82e579bcd", + "fields": { + "code_commune_insee": "88136", + "nom_de_la_commune": "DOGNEVILLE", + "code_postal": "88000", + "coordonnees_gps": [ + 48.2215743919, + 6.4644885948 + ], + "libelle_d_acheminement": "DOGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4644885948, + 48.2215743919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "add1b1a190e078203abc0d75d5749178d33914a0", + "fields": { + "code_commune_insee": "88143", + "nom_de_la_commune": "DOMEVRE SUR DURBION", + "code_postal": "88330", + "coordonnees_gps": [ + 48.290163391, + 6.4826501202 + ], + "libelle_d_acheminement": "DOMEVRE SUR DURBION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4826501202, + 48.290163391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d0b4bc1c6d7b25f37885938cbdb28f55ed48322", + "fields": { + "code_commune_insee": "88147", + "nom_de_la_commune": "DOMMARTIN AUX BOIS", + "code_postal": "88390", + "coordonnees_gps": [ + 48.1502931822, + 6.28962914731 + ], + "libelle_d_acheminement": "DOMMARTIN AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28962914731, + 48.1502931822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63bd280087af20d4500f424a7b2065b1b0146451", + "fields": { + "code_commune_insee": "88148", + "nom_de_la_commune": "DOMMARTIN LES REMIREMONT", + "code_postal": "88200", + "coordonnees_gps": [ + 47.99107923, + 6.6482307377 + ], + "libelle_d_acheminement": "DOMMARTIN LES REMIREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6482307377, + 47.99107923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d461ed99ba006264fd1c533f90876715f0782c95", + "fields": { + "code_commune_insee": "88149", + "nom_de_la_commune": "DOMMARTIN LES VALLOIS", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1537141172, + 6.08556703588 + ], + "libelle_d_acheminement": "DOMMARTIN LES VALLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08556703588, + 48.1537141172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03ebb1a855005d714284c238788fed290e387f1f", + "fields": { + "code_commune_insee": "88158", + "nom_de_la_commune": "ELOYES", + "code_postal": "88510", + "coordonnees_gps": [ + 48.0931276197, + 6.62003407466 + ], + "libelle_d_acheminement": "ELOYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62003407466, + 48.0931276197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e9415a3b7bc34ee347d075e92a9f9e0c1981eb9", + "fields": { + "code_commune_insee": "88172", + "nom_de_la_commune": "FIMENIL", + "code_postal": "88600", + "coordonnees_gps": [ + 48.1749157278, + 6.70786220196 + ], + "libelle_d_acheminement": "FIMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70786220196, + 48.1749157278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cea3cc54cc04b702954bfa0c8f65fb7d0feca8f", + "fields": { + "code_commune_insee": "88173", + "nom_de_la_commune": "FLOREMONT", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3711842511, + 6.25282761176 + ], + "libelle_d_acheminement": "FLOREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25282761176, + 48.3711842511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c74ae1d680471b29dfc9d8355ace91d6af548fa", + "fields": { + "code_commune_insee": "88175", + "nom_de_la_commune": "FONTENAY", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2177866, + 6.59104686001 + ], + "libelle_d_acheminement": "FONTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59104686001, + 48.2177866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95b9454266595d4953f35c5eb31dfe66fc6b94e3", + "fields": { + "ligne_5": "LE MAGNY", + "code_commune_insee": "88176", + "libelle_d_acheminement": "FONTENOY LE CHATEAU", + "code_postal": "88240", + "nom_de_la_commune": "FONTENOY LE CHATEAU", + "coordonnees_gps": [ + 47.9788627789, + 6.20625008119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20625008119, + 47.9788627789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e35cfcee1138e7715e13d2f325b437a435ccc30f", + "fields": { + "code_commune_insee": "88184", + "nom_de_la_commune": "FREMIFONTAINE", + "code_postal": "88600", + "coordonnees_gps": [ + 48.261203018, + 6.70068031913 + ], + "libelle_d_acheminement": "FREMIFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70068031913, + 48.261203018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d11ed258f3f7e257d126b87a7d3a8f8da351892", + "fields": { + "code_commune_insee": "88192", + "nom_de_la_commune": "GELVECOURT ET ADOMPT", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2008667754, + 6.17865808407 + ], + "libelle_d_acheminement": "GELVECOURT ET ADOMPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17865808407, + 48.2008667754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5e1fd3f98a572132b9dd8639b130b4f6ddc8a5f", + "fields": { + "code_commune_insee": "88194", + "nom_de_la_commune": "GEMMELAINCOURT", + "code_postal": "88170", + "coordonnees_gps": [ + 48.2742122102, + 5.96709778619 + ], + "libelle_d_acheminement": "GEMMELAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96709778619, + 48.2742122102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6f60d1a36366e05c05e67fff375b73ee736408a", + "fields": { + "code_commune_insee": "88196", + "nom_de_la_commune": "GERARDMER", + "code_postal": "88400", + "coordonnees_gps": [ + 48.0653057669, + 6.85912240068 + ], + "libelle_d_acheminement": "GERARDMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85912240068, + 48.0653057669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7ae9991a8df5535d4bc52fc08e4bd6a747b5f82", + "fields": { + "code_commune_insee": "88209", + "nom_de_la_commune": "GOLBEY", + "code_postal": "88190", + "coordonnees_gps": [ + 48.2002428602, + 6.42545128144 + ], + "libelle_d_acheminement": "GOLBEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42545128144, + 48.2002428602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b24a4830740aa881f2e637d73004160cf42fff7", + "fields": { + "code_commune_insee": "88210", + "nom_de_la_commune": "GORHEY", + "code_postal": "88270", + "coordonnees_gps": [ + 48.1895575108, + 6.28833364652 + ], + "libelle_d_acheminement": "GORHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28833364652, + 48.1895575108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c87c3c6880ce89925f3a079eef32907077a90a22", + "fields": { + "ligne_5": "AUMONTZEY", + "code_commune_insee": "88218", + "libelle_d_acheminement": "GRANGES AUMONTZEY", + "code_postal": "88640", + "nom_de_la_commune": "GRANGES AUMONTZEY", + "coordonnees_gps": [ + 48.127602766, + 6.81014946226 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81014946226, + 48.127602766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7da6f6a1877605734e23be6f2de98862a4fae67", + "fields": { + "code_commune_insee": "88221", + "nom_de_la_commune": "GRUEY LES SURANCE", + "code_postal": "88240", + "coordonnees_gps": [ + 48.033984929, + 6.16990695895 + ], + "libelle_d_acheminement": "GRUEY LES SURANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16990695895, + 48.033984929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7c23638f6b19060350add5735a4de89e3df7e76", + "fields": { + "code_commune_insee": "88222", + "nom_de_la_commune": "GUGNECOURT", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2477055814, + 6.62283113618 + ], + "libelle_d_acheminement": "GUGNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62283113618, + 48.2477055814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25366a2c2adbbfac16c7bb9047f28e2705128eb6", + "fields": { + "code_commune_insee": "88224", + "nom_de_la_commune": "HADIGNY LES VERRIERES", + "code_postal": "88330", + "coordonnees_gps": [ + 48.3219668732, + 6.4778869001 + ], + "libelle_d_acheminement": "HADIGNY LES VERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4778869001, + 48.3219668732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "785a612d5eb05bbb7a0013b97475213788821c44", + "fields": { + "code_commune_insee": "88227", + "nom_de_la_commune": "HAGNEVILLE ET RONCOURT", + "code_postal": "88300", + "coordonnees_gps": [ + 48.2462613874, + 5.79111153508 + ], + "libelle_d_acheminement": "HAGNEVILLE ET RONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79111153508, + 48.2462613874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed4dc572dcf1f4786c90890cf97e5502f8c4b825", + "fields": { + "code_commune_insee": "88233", + "nom_de_la_commune": "HAROL", + "code_postal": "88270", + "coordonnees_gps": [ + 48.1441724953, + 6.24781667111 + ], + "libelle_d_acheminement": "HAROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24781667111, + 48.1441724953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3fbd60dba29bbe48ed5cca204dbf90debaabfa6", + "fields": { + "code_commune_insee": "88249", + "nom_de_la_commune": "JAINVILLOTTE", + "code_postal": "88300", + "coordonnees_gps": [ + 48.2594304053, + 5.70223863871 + ], + "libelle_d_acheminement": "JAINVILLOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70223863871, + 48.2594304053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4d0a171ddf4439dd04b40d7eacbce4463cbae3a", + "fields": { + "code_commune_insee": "88250", + "nom_de_la_commune": "JARMENIL", + "code_postal": "88550", + "coordonnees_gps": [ + 48.1143669208, + 6.59331561157 + ], + "libelle_d_acheminement": "JARMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59331561157, + 48.1143669208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8de0b0629c7a353342cc8e7001a2a378d6b50ac5", + "fields": { + "code_commune_insee": "88254", + "nom_de_la_commune": "JORXEY", + "code_postal": "88500", + "coordonnees_gps": [ + 48.303577564, + 6.23596280086 + ], + "libelle_d_acheminement": "JORXEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23596280086, + 48.303577564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f8c4fa6944c7e0f8d5ecc32480d5e9763ff088f", + "fields": { + "code_commune_insee": "88272", + "nom_de_la_commune": "LIRONCOURT", + "code_postal": "88410", + "coordonnees_gps": [ + 47.9710608513, + 5.87763408674 + ], + "libelle_d_acheminement": "LIRONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87763408674, + 47.9710608513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59e8ded2c51c9e451c1079aa1f3617c394a29230", + "fields": { + "code_commune_insee": "88275", + "nom_de_la_commune": "LUBINE", + "code_postal": "88490", + "coordonnees_gps": [ + 48.3176823306, + 7.16688865915 + ], + "libelle_d_acheminement": "LUBINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16688865915, + 48.3176823306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "346dd49197164c505dcf288ac231ce91f3984a6f", + "fields": { + "code_commune_insee": "88284", + "nom_de_la_commune": "MANDRAY", + "code_postal": "88650", + "coordonnees_gps": [ + 48.2136820328, + 7.00286781313 + ], + "libelle_d_acheminement": "MANDRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00286781313, + 48.2136820328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89c79e615376109d172c1bb365a656449c4f8d1a", + "fields": { + "code_commune_insee": "88286", + "nom_de_la_commune": "MARAINVILLE SUR MADON", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3969659004, + 6.16268175048 + ], + "libelle_d_acheminement": "MARAINVILLE SUR MADON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16268175048, + 48.3969659004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a73b2621bd0bf339214935a052c57bb33a25195", + "fields": { + "code_commune_insee": "88287", + "nom_de_la_commune": "MAREY", + "code_postal": "88320", + "coordonnees_gps": [ + 48.1032737559, + 5.90705245577 + ], + "libelle_d_acheminement": "MAREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90705245577, + 48.1032737559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bd4c87cf1da5c2e0d06608751d4cd89247bd699", + "fields": { + "code_commune_insee": "88294", + "nom_de_la_commune": "MAZELEY", + "code_postal": "88150", + "coordonnees_gps": [ + 48.2468678999, + 6.34350665623 + ], + "libelle_d_acheminement": "MAZELEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34350665623, + 48.2468678999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4de38d191bd30de283c73162aa5339684a76fc59", + "fields": { + "code_commune_insee": "88295", + "nom_de_la_commune": "MAZIROT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3210257674, + 6.15641355317 + ], + "libelle_d_acheminement": "MAZIROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15641355317, + 48.3210257674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cd3675c0cfc58e7aef46b21c39c89a9157709e3", + "fields": { + "code_commune_insee": "88301", + "nom_de_la_commune": "MENIL SUR BELVITTE", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3838870816, + 6.69616124594 + ], + "libelle_d_acheminement": "MENIL SUR BELVITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69616124594, + 48.3838870816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca0c0fcaf2795927ef155829f3294f1d90fb6d47", + "fields": { + "code_commune_insee": "88316", + "nom_de_la_commune": "MORVILLE", + "code_postal": "88140", + "coordonnees_gps": [ + 48.2347546949, + 5.79472191903 + ], + "libelle_d_acheminement": "MORVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79472191903, + 48.2347546949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3537cde5994d589e36a9f4c76581a0fded52fdf", + "fields": { + "code_commune_insee": "88321", + "nom_de_la_commune": "NEUFCHATEAU", + "code_postal": "88300", + "coordonnees_gps": [ + 48.3565023559, + 5.69131913979 + ], + "libelle_d_acheminement": "NEUFCHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69131913979, + 48.3565023559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0d07c6911b733e8137887b336f6e82326891045", + "fields": { + "code_commune_insee": "88322", + "nom_de_la_commune": "LA NEUVEVILLE DEVANT LEPANGES", + "code_postal": "88600", + "coordonnees_gps": [ + 48.1537248949, + 6.66634796718 + ], + "libelle_d_acheminement": "LA NEUVEVILLE DEVANT LEPANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66634796718, + 48.1537248949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66b9fb97021b59793cef77a38fb159727fe88fef", + "fields": { + "code_commune_insee": "88332", + "nom_de_la_commune": "NORROY", + "code_postal": "88800", + "coordonnees_gps": [ + 48.2140535521, + 5.91840801512 + ], + "libelle_d_acheminement": "NORROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91840801512, + 48.2140535521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5267b0035f43e326d2b3ce1359570da35fdf8b55", + "fields": { + "code_commune_insee": "88336", + "nom_de_la_commune": "OLLAINVILLE", + "code_postal": "88170", + "coordonnees_gps": [ + 48.2696863799, + 5.80439655202 + ], + "libelle_d_acheminement": "OLLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80439655202, + 48.2696863799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2485f55e6d33cf4e36fd9c0677fa89d12a852d0", + "fields": { + "code_commune_insee": "88340", + "nom_de_la_commune": "PADOUX", + "code_postal": "88700", + "coordonnees_gps": [ + 48.2874903327, + 6.56577166427 + ], + "libelle_d_acheminement": "PADOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56577166427, + 48.2874903327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecd9f4f6803e1fe8fd165991ed23aeb376043954", + "fields": { + "code_commune_insee": "88345", + "nom_de_la_commune": "LA PETITE FOSSE", + "code_postal": "88490", + "coordonnees_gps": [ + 48.3217854847, + 7.05050994917 + ], + "libelle_d_acheminement": "LA PETITE FOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05050994917, + 48.3217854847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53352006fc020d86ce2b9ec7ff83f2affda9682d", + "fields": { + "code_commune_insee": "88357", + "nom_de_la_commune": "POUSSAY", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3226145275, + 6.12077562905 + ], + "libelle_d_acheminement": "POUSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12077562905, + 48.3226145275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "291e9751817619b958a12e78e92af19fb2ecfb66", + "fields": { + "ligne_5": "PROVENCHERES SUR FAVE", + "code_commune_insee": "88361", + "libelle_d_acheminement": "PROVENCHERES ET COLROY", + "code_postal": "88490", + "nom_de_la_commune": "PROVENCHERES ET COLROY", + "coordonnees_gps": [ + 48.3153511081, + 7.07950479056 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07950479056, + 48.3153511081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7634d5e4c17ce353e839738462b1aebc95c29a33", + "fields": { + "code_commune_insee": "88370", + "nom_de_la_commune": "RANCOURT", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2200072778, + 6.10969836772 + ], + "libelle_d_acheminement": "RANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10969836772, + 48.2200072778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a005ff322fb76dc5cf0febaea569db4203111e13", + "fields": { + "code_commune_insee": "88374", + "nom_de_la_commune": "RAPEY", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3170560275, + 6.25241175461 + ], + "libelle_d_acheminement": "RAPEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25241175461, + 48.3170560275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d76fa5ad47ed5509ecdc63b1f3a9bf903ae1fcf7", + "fields": { + "code_commune_insee": "88376", + "nom_de_la_commune": "REBEUVILLE", + "code_postal": "88300", + "coordonnees_gps": [ + 48.3370016504, + 5.71877822287 + ], + "libelle_d_acheminement": "REBEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71877822287, + 48.3370016504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffb5e5e85da8b3630a1351effb0c24a2812cfcce", + "fields": { + "code_commune_insee": "88377", + "nom_de_la_commune": "REGNEVELLE", + "code_postal": "88410", + "coordonnees_gps": [ + 47.9878028534, + 5.9684410687 + ], + "libelle_d_acheminement": "REGNEVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9684410687, + 47.9878028534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7ac872da962b17fb9162146f571109fa60ae8ca", + "fields": { + "code_commune_insee": "88382", + "nom_de_la_commune": "REMICOURT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.2837744091, + 6.0633435435 + ], + "libelle_d_acheminement": "REMICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0633435435, + 48.2837744091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aa0776a55759fb854a7f1dd35b2f996f0610ee0", + "fields": { + "code_commune_insee": "88383", + "nom_de_la_commune": "REMIREMONT", + "code_postal": "88200", + "coordonnees_gps": [ + 48.0013090816, + 6.58128956332 + ], + "libelle_d_acheminement": "REMIREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58128956332, + 48.0013090816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "209a8fd665db2be9ab8c9203946fae52ce8fa6bb", + "fields": { + "code_commune_insee": "88390", + "nom_de_la_commune": "ROBECOURT", + "code_postal": "88320", + "coordonnees_gps": [ + 48.1374692528, + 5.7093887067 + ], + "libelle_d_acheminement": "ROBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7093887067, + 48.1374692528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f6b7cc4c260c2cea9d80c31f7612f8ed5911fa9", + "fields": { + "code_commune_insee": "88399", + "nom_de_la_commune": "LE ROULIER", + "code_postal": "88460", + "coordonnees_gps": [ + 48.1735701591, + 6.61592028644 + ], + "libelle_d_acheminement": "LE ROULIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61592028644, + 48.1735701591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e6363fb48dfd0b0cb966a7a941634f5d47b47d5", + "fields": { + "code_commune_insee": "88408", + "nom_de_la_commune": "RUPT SUR MOSELLE", + "code_postal": "88360", + "coordonnees_gps": [ + 47.933079987, + 6.6637417919 + ], + "libelle_d_acheminement": "RUPT SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6637417919, + 47.933079987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8148ff42d06bff77b4d843c52c60ef35604c32c", + "fields": { + "code_commune_insee": "88412", + "nom_de_la_commune": "ST BENOIT LA CHIPOTTE", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3554186756, + 6.74913973695 + ], + "libelle_d_acheminement": "ST BENOIT LA CHIPOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74913973695, + 48.3554186756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eed03d643122bd43d1c7c805dcd12f81216a0037", + "fields": { + "code_commune_insee": "88415", + "nom_de_la_commune": "ST ETIENNE LES REMIREMONT", + "code_postal": "88200", + "coordonnees_gps": [ + 48.0463713685, + 6.62527761065 + ], + "libelle_d_acheminement": "ST ETIENNE LES REMIREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62527761065, + 48.0463713685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91923c20b61309caa9536101af3627f2d597e23d", + "fields": { + "code_commune_insee": "88419", + "nom_de_la_commune": "ST JEAN D ORMONT", + "code_postal": "88210", + "coordonnees_gps": [ + 48.3294969817, + 6.98858773472 + ], + "libelle_d_acheminement": "ST JEAN D ORMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98858773472, + 48.3294969817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14cf60afa0dabd6b7b8d7dcd20437f58d45df409", + "fields": { + "code_commune_insee": "88423", + "nom_de_la_commune": "ST LEONARD", + "code_postal": "88650", + "coordonnees_gps": [ + 48.2151642613, + 6.91831630408 + ], + "libelle_d_acheminement": "ST LEONARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91831630408, + 48.2151642613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6df5ae681dd79380e56f7d1b85480ffcb39d2773", + "fields": { + "code_commune_insee": "88430", + "nom_de_la_commune": "ST OUEN LES PAREY", + "code_postal": "88140", + "coordonnees_gps": [ + 48.1737856169, + 5.77907312316 + ], + "libelle_d_acheminement": "ST OUEN LES PAREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77907312316, + 48.1737856169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69b0459f866875f92462c1c7a3a1f42b61fed1a6", + "fields": { + "code_commune_insee": "88431", + "nom_de_la_commune": "ST PAUL", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3309340459, + 5.8864017008 + ], + "libelle_d_acheminement": "ST PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8864017008, + 48.3309340459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cf7bfc1826ce8fa989716f393d394d53278019e", + "fields": { + "code_commune_insee": "88432", + "nom_de_la_commune": "ST PIERREMONT", + "code_postal": "88700", + "coordonnees_gps": [ + 48.4394574604, + 6.58332461812 + ], + "libelle_d_acheminement": "ST PIERREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58332461812, + 48.4394574604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50dfc6d2b95d2515eb40c349b72428c4cd42cd6c", + "fields": { + "code_commune_insee": "88435", + "nom_de_la_commune": "ST REMY", + "code_postal": "88480", + "coordonnees_gps": [ + 48.3429205688, + 6.81438794829 + ], + "libelle_d_acheminement": "ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81438794829, + 48.3429205688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "931e3e1faa8d3a8e3650609acb35d2423880d7a2", + "fields": { + "code_commune_insee": "88438", + "nom_de_la_commune": "LA SALLE", + "code_postal": "88470", + "coordonnees_gps": [ + 48.3240158454, + 6.81120161943 + ], + "libelle_d_acheminement": "LA SALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81120161943, + 48.3240158454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0105876695eb02527bb36dbe3d1421f246a9b626", + "fields": { + "code_commune_insee": "88442", + "nom_de_la_commune": "SAPOIS", + "code_postal": "88120", + "coordonnees_gps": [ + 48.0357712575, + 6.78229543437 + ], + "libelle_d_acheminement": "SAPOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78229543437, + 48.0357712575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1610047a7833675887552e94b46a24714e601770", + "fields": { + "code_commune_insee": "88444", + "nom_de_la_commune": "LE SAULCY", + "code_postal": "88210", + "coordonnees_gps": [ + 48.4235362189, + 7.06550788795 + ], + "libelle_d_acheminement": "LE SAULCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06550788795, + 48.4235362189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52d82eb0ad1e68d455a12c5254517ebfbc704392", + "fields": { + "code_commune_insee": "88458", + "nom_de_la_commune": "SOCOURT", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3963161508, + 6.24974565871 + ], + "libelle_d_acheminement": "SOCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24974565871, + 48.3963161508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d885a03b67b9cc3d300b12db8a687b109f8d0d95", + "fields": { + "code_commune_insee": "88462", + "nom_de_la_commune": "LE SYNDICAT", + "code_postal": "88120", + "coordonnees_gps": [ + 48.0311250324, + 6.69827202469 + ], + "libelle_d_acheminement": "LE SYNDICAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69827202469, + 48.0311250324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02e745dd5c084bb6a5f734cada639d660698be31", + "fields": { + "code_commune_insee": "88481", + "nom_de_la_commune": "URIMENIL", + "code_postal": "88220", + "coordonnees_gps": [ + 48.1038996334, + 6.40140571468 + ], + "libelle_d_acheminement": "URIMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40140571468, + 48.1038996334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c6ea64adcaf4d2d9e166e4daeaf66ff21bd0a2c", + "fields": { + "code_commune_insee": "88485", + "nom_de_la_commune": "LA VACHERESSE ET LA ROUILLIE", + "code_postal": "88140", + "coordonnees_gps": [ + 48.1460226049, + 5.79618923036 + ], + "libelle_d_acheminement": "LA VACHERESSE ET LA ROUILLIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79618923036, + 48.1460226049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c27270d353d07637edf7e3cfe4197254b82e21a6", + "fields": { + "code_commune_insee": "88487", + "nom_de_la_commune": "LE VAL D AJOL", + "code_postal": "88340", + "coordonnees_gps": [ + 47.9421994334, + 6.50504695363 + ], + "libelle_d_acheminement": "LE VAL D AJOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50504695363, + 47.9421994334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8b9200b4571eb44bf116c67129fb009dd7336a0", + "fields": { + "code_commune_insee": "88489", + "nom_de_la_commune": "VALLEROY AUX SAULES", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2439694822, + 6.13809039258 + ], + "libelle_d_acheminement": "VALLEROY AUX SAULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13809039258, + 48.2439694822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1197fc0bb43a337b09816fcb982caf23b72c02d", + "fields": { + "code_commune_insee": "88491", + "nom_de_la_commune": "LES VALLOIS", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1560227971, + 6.12111135495 + ], + "libelle_d_acheminement": "LES VALLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12111135495, + 48.1560227971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4c7f2fb12417e5741e8eb8aa55ead311a6a00d7", + "fields": { + "code_commune_insee": "88492", + "nom_de_la_commune": "LE VALTIN", + "code_postal": "88230", + "coordonnees_gps": [ + 48.0883852137, + 7.02878596323 + ], + "libelle_d_acheminement": "LE VALTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02878596323, + 48.0883852137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0a5a35a800b53194d175e5ff8f1c5aafad777f5", + "fields": { + "code_commune_insee": "88494", + "nom_de_la_commune": "VAUBEXY", + "code_postal": "88500", + "coordonnees_gps": [ + 48.283956514, + 6.23614210512 + ], + "libelle_d_acheminement": "VAUBEXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23614210512, + 48.283956514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6c3216a1a57b75fe88d802b7f6ce5a85139b050", + "fields": { + "code_commune_insee": "88508", + "nom_de_la_commune": "VILLE SUR ILLON", + "code_postal": "88270", + "coordonnees_gps": [ + 48.1703233891, + 6.21202219636 + ], + "libelle_d_acheminement": "VILLE SUR ILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21202219636, + 48.1703233891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f16ca6bbdeed489df2021fa3404ab256486380a", + "fields": { + "code_commune_insee": "88521", + "nom_de_la_commune": "VOMECOURT", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3135963536, + 6.61490143482 + ], + "libelle_d_acheminement": "VOMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61490143482, + 48.3135963536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e28b282b9be56cb57892041fccd64f723e299f40", + "fields": { + "code_commune_insee": "88522", + "nom_de_la_commune": "VOMECOURT SUR MADON", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3618465274, + 6.17001912809 + ], + "libelle_d_acheminement": "VOMECOURT SUR MADON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17001912809, + 48.3618465274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81ffd248bbb79d734ea878b0ced05c5c7db5e22a", + "fields": { + "ligne_5": "AMEREY", + "code_commune_insee": "88530", + "libelle_d_acheminement": "XERTIGNY", + "code_postal": "88220", + "nom_de_la_commune": "XERTIGNY", + "coordonnees_gps": [ + 48.0387121214, + 6.38237551394 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38237551394, + 48.0387121214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4e9d62e5a0e3ae76fa915791475adda682631cd", + "fields": { + "code_commune_insee": "89011", + "nom_de_la_commune": "ANNEOT", + "code_postal": "89200", + "coordonnees_gps": [ + 47.5167662768, + 3.87931663597 + ], + "libelle_d_acheminement": "ANNEOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87931663597, + 47.5167662768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "777d369d18873f5edef902252076afc67309d333", + "fields": { + "code_commune_insee": "89015", + "nom_de_la_commune": "ARCY SUR CURE", + "code_postal": "89270", + "coordonnees_gps": [ + 47.5964840331, + 3.76078082022 + ], + "libelle_d_acheminement": "ARCY SUR CURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76078082022, + 47.5964840331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b356e16b85abfc94e8a0220ffa4ebd159806bdba", + "fields": { + "code_commune_insee": "89022", + "nom_de_la_commune": "ATHIE", + "code_postal": "89440", + "coordonnees_gps": [ + 47.5394434653, + 3.99227435299 + ], + "libelle_d_acheminement": "ATHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99227435299, + 47.5394434653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b35edca67653d1deba73acef11d4b9574f9029c1", + "fields": { + "code_commune_insee": "89024", + "nom_de_la_commune": "AUXERRE", + "code_postal": "89000", + "coordonnees_gps": [ + 47.793488225, + 3.58168281761 + ], + "libelle_d_acheminement": "AUXERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58168281761, + 47.793488225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c6f16c32bcdbda664926e2c346d0ce6edd619f3", + "fields": { + "code_commune_insee": "89027", + "nom_de_la_commune": "BAGNEAUX", + "code_postal": "89190", + "coordonnees_gps": [ + 48.2544532478, + 3.59222346559 + ], + "libelle_d_acheminement": "BAGNEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59222346559, + 48.2544532478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c76f9091dd72d5ea61b32c6bdf74872c104c53f7", + "fields": { + "code_commune_insee": "89029", + "nom_de_la_commune": "BASSOU", + "code_postal": "89400", + "coordonnees_gps": [ + 47.9228104601, + 3.50819199068 + ], + "libelle_d_acheminement": "BASSOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50819199068, + 47.9228104601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d0dc60b506c32df309a1407b8760a29e4a36790", + "fields": { + "code_commune_insee": "89032", + "nom_de_la_commune": "BEAUVILLIERS", + "code_postal": "89630", + "coordonnees_gps": [ + 47.4132193226, + 4.03577832193 + ], + "libelle_d_acheminement": "BEAUVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03577832193, + 47.4132193226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cce576b5a91718fc6dfa37e6b4b79da556e6c73", + "fields": { + "code_commune_insee": "89035", + "nom_de_la_commune": "BELLECHAUME", + "code_postal": "89210", + "coordonnees_gps": [ + 48.053614787, + 3.58244232303 + ], + "libelle_d_acheminement": "BELLECHAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58244232303, + 48.053614787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60616bc117cec5581aafa35575fd01c4c668e55f", + "fields": { + "code_commune_insee": "89046", + "nom_de_la_commune": "BLENEAU", + "code_postal": "89220", + "coordonnees_gps": [ + 47.7030312917, + 2.94847810373 + ], + "libelle_d_acheminement": "BLENEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94847810373, + 47.7030312917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4a724651664daece5f4327c8396665ba7c75ad2", + "fields": { + "code_commune_insee": "89060", + "nom_de_la_commune": "BUSSY LE REPOS", + "code_postal": "89500", + "coordonnees_gps": [ + 48.0546456721, + 3.21957440415 + ], + "libelle_d_acheminement": "BUSSY LE REPOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21957440415, + 48.0546456721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7239512309e57f6b72dd4abbfb509ad83424d21", + "fields": { + "code_commune_insee": "89067", + "nom_de_la_commune": "CEZY", + "code_postal": "89410", + "coordonnees_gps": [ + 47.9958317123, + 3.31537354037 + ], + "libelle_d_acheminement": "CEZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31537354037, + 47.9958317123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78a111fd7f29fcf5f0d613afde174aefc60b8c27", + "fields": { + "code_commune_insee": "89069", + "nom_de_la_commune": "CHAILLEY", + "code_postal": "89770", + "coordonnees_gps": [ + 48.0904019735, + 3.68619871667 + ], + "libelle_d_acheminement": "CHAILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68619871667, + 48.0904019735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "373c7a9f19c5b4260a08b981e851fbd6d2695811", + "fields": { + "code_commune_insee": "89072", + "nom_de_la_commune": "CHAMPCEVRAIS", + "code_postal": "89220", + "coordonnees_gps": [ + 47.756125263, + 2.97843674082 + ], + "libelle_d_acheminement": "CHAMPCEVRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97843674082, + 47.756125263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bf5d890e175b54430dad64e80058aefb39682a0", + "fields": { + "code_commune_insee": "89079", + "nom_de_la_commune": "CHAMVRES", + "code_postal": "89300", + "coordonnees_gps": [ + 47.958898024, + 3.35363160513 + ], + "libelle_d_acheminement": "CHAMVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35363160513, + 47.958898024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c3ff9743318439ea7ddfb549d35575802c5332f", + "fields": { + "code_commune_insee": "89081", + "nom_de_la_commune": "LA CHAPELLE VAUPELTEIGNE", + "code_postal": "89800", + "coordonnees_gps": [ + 47.8433599438, + 3.76931059079 + ], + "libelle_d_acheminement": "LA CHAPELLE VAUPELTEIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76931059079, + 47.8433599438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "147244a9925f80285ec4851d7ee60d33305010aa", + "fields": { + "code_commune_insee": "89084", + "nom_de_la_commune": "CHARENTENAY", + "code_postal": "89580", + "coordonnees_gps": [ + 47.6441683642, + 3.55593528035 + ], + "libelle_d_acheminement": "CHARENTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55593528035, + 47.6441683642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f558b60355b1552ab086bab3a8819f00f38cc0f", + "fields": { + "ligne_5": "MARCHAIS BETON", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e761fac95c4414a9832c0509de5700d7bb781ed4", + "fields": { + "ligne_5": "PERREUX", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a382b90a2e20cfb09586466b1ef18ab08274fd3f", + "fields": { + "code_commune_insee": "89101", + "nom_de_la_commune": "CHEU", + "code_postal": "89600", + "coordonnees_gps": [ + 47.9741309455, + 3.7564449566 + ], + "libelle_d_acheminement": "CHEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7564449566, + 47.9741309455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ef403d0ea9936176a008e793b3af453bb110ae7", + "fields": { + "code_commune_insee": "89102", + "nom_de_la_commune": "CHEVANNES", + "code_postal": "89240", + "coordonnees_gps": [ + 47.7544217076, + 3.49168845995 + ], + "libelle_d_acheminement": "CHEVANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49168845995, + 47.7544217076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94d13ca250f6793a63fd38ff99698d27ca77d82a", + "fields": { + "code_commune_insee": "89115", + "nom_de_la_commune": "COMPIGNY", + "code_postal": "89140", + "coordonnees_gps": [ + 48.367152724, + 3.27965951388 + ], + "libelle_d_acheminement": "COMPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27965951388, + 48.367152724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22240aaec4660d216a73bb404c2369e7d6babc10", + "fields": { + "code_commune_insee": "89119", + "nom_de_la_commune": "COULANGES SUR YONNE", + "code_postal": "89480", + "coordonnees_gps": [ + 47.541473076, + 3.5245175695 + ], + "libelle_d_acheminement": "COULANGES SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5245175695, + 47.541473076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7613f31c2cf0822d838e5923216cae671f362cb4", + "fields": { + "code_commune_insee": "89122", + "nom_de_la_commune": "COURGENAY", + "code_postal": "89190", + "coordonnees_gps": [ + 48.2899389178, + 3.54620843356 + ], + "libelle_d_acheminement": "COURGENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54620843356, + 48.2899389178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea0407b8098a7c6857f481dd45d2f2a4fa0aebed", + "fields": { + "code_commune_insee": "89124", + "nom_de_la_commune": "COURLON SUR YONNE", + "code_postal": "89140", + "coordonnees_gps": [ + 48.3449808142, + 3.17786966598 + ], + "libelle_d_acheminement": "COURLON SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17786966598, + 48.3449808142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "603ce93df5c0ff97fa2124eb25dd8b2e9c0b6f6a", + "fields": { + "ligne_5": "ACCOLAY", + "code_commune_insee": "89130", + "libelle_d_acheminement": "DEUX RIVIERES", + "code_postal": "89460", + "nom_de_la_commune": "DEUX RIVIERES", + "coordonnees_gps": [ + 47.6934813801, + 3.71458684617 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71458684617, + 47.6934813801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8869b766472cc31b070735b48dec6a368f1bd0e", + "fields": { + "code_commune_insee": "89136", + "nom_de_la_commune": "CUY", + "code_postal": "89140", + "coordonnees_gps": [ + 48.2564967217, + 3.27293872125 + ], + "libelle_d_acheminement": "CUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27293872125, + 48.2564967217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba33d73c19d24b993035ba6d3084381ce2cde2fc", + "fields": { + "code_commune_insee": "89137", + "nom_de_la_commune": "DANNEMOINE", + "code_postal": "89700", + "coordonnees_gps": [ + 47.8990371208, + 3.98088333105 + ], + "libelle_d_acheminement": "DANNEMOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98088333105, + 47.8990371208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e884e95072685ea3a072ca90ba6345903f361d91", + "fields": { + "code_commune_insee": "89143", + "nom_de_la_commune": "DOLLOT", + "code_postal": "89150", + "coordonnees_gps": [ + 48.2099848495, + 3.06409212851 + ], + "libelle_d_acheminement": "DOLLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06409212851, + 48.2099848495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fd745bf5ec9c85c7a040c8696753e21e0aaac06", + "fields": { + "code_commune_insee": "89145", + "nom_de_la_commune": "DOMECY SUR CURE", + "code_postal": "89450", + "coordonnees_gps": [ + 47.4101947733, + 3.81331129972 + ], + "libelle_d_acheminement": "DOMECY SUR CURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81331129972, + 47.4101947733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "811c70c12a3fadf5eb93e86b0915d3e89f837b54", + "fields": { + "code_commune_insee": "89149", + "nom_de_la_commune": "DYE", + "code_postal": "89360", + "coordonnees_gps": [ + 47.8921704825, + 3.86284219994 + ], + "libelle_d_acheminement": "DYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86284219994, + 47.8921704825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbbb3d34b4a46c002ceba49c68bcd7bb297e1373", + "fields": { + "code_commune_insee": "89154", + "nom_de_la_commune": "ESCAMPS", + "code_postal": "89240", + "coordonnees_gps": [ + 47.7177692748, + 3.47307676969 + ], + "libelle_d_acheminement": "ESCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47307676969, + 47.7177692748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26c2195fbcd0aaab23612efc7bdd81e4514a67a9", + "fields": { + "code_commune_insee": "89158", + "nom_de_la_commune": "ETAIS LA SAUVIN", + "code_postal": "89480", + "coordonnees_gps": [ + 47.5119567987, + 3.34972153514 + ], + "libelle_d_acheminement": "ETAIS LA SAUVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34972153514, + 47.5119567987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3af0a4223c1294d25bc7571143a18ceb03e7e248", + "fields": { + "code_commune_insee": "89162", + "nom_de_la_commune": "EVRY", + "code_postal": "89140", + "coordonnees_gps": [ + 48.2685630682, + 3.25982109377 + ], + "libelle_d_acheminement": "EVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25982109377, + 48.2685630682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcbcde67accbba276336e3a2b55e26c501250dc5", + "fields": { + "code_commune_insee": "89167", + "nom_de_la_commune": "FLEURY LA VALLEE", + "code_postal": "89113", + "coordonnees_gps": [ + 47.8647388504, + 3.44469712443 + ], + "libelle_d_acheminement": "FLEURY LA VALLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44469712443, + 47.8647388504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe555aee23d40721dcc8b5c6f877d8656986dec5", + "fields": { + "code_commune_insee": "89169", + "nom_de_la_commune": "FLOGNY LA CHAPELLE", + "code_postal": "89360", + "coordonnees_gps": [ + 47.9610543696, + 3.88394679625 + ], + "libelle_d_acheminement": "FLOGNY LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88394679625, + 47.9610543696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25553762f77f878f71d5f140c3147c23023561c9", + "fields": { + "code_commune_insee": "89195", + "nom_de_la_commune": "GRON", + "code_postal": "89100", + "coordonnees_gps": [ + 48.1527042067, + 3.25754411225 + ], + "libelle_d_acheminement": "GRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25754411225, + 48.1527042067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c849879e55c41032fffcad78a1cd0b6d323c2b7", + "fields": { + "ligne_5": "LADUZ", + "code_commune_insee": "89196", + "libelle_d_acheminement": "VALRAVILLON", + "code_postal": "89110", + "nom_de_la_commune": "VALRAVILLON", + "coordonnees_gps": [ + 47.8968225975, + 3.42698733417 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42698733417, + 47.8968225975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "044006626d2a4de9a6ace037d8bb139859d33809", + "fields": { + "ligne_5": "CISERY", + "code_commune_insee": "89197", + "libelle_d_acheminement": "GUILLON TERRE PLAINE", + "code_postal": "89420", + "nom_de_la_commune": "GUILLON TERRE PLAINE", + "coordonnees_gps": [ + 47.5289305152, + 4.09122331538 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09122331538, + 47.5289305152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0b2daa65ce39dc0abb8c9a7665f52e28437ad33", + "fields": { + "ligne_5": "TREVILLY", + "code_commune_insee": "89197", + "libelle_d_acheminement": "GUILLON TERRE PLAINE", + "code_postal": "89420", + "nom_de_la_commune": "GUILLON TERRE PLAINE", + "coordonnees_gps": [ + 47.5289305152, + 4.09122331538 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09122331538, + 47.5289305152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9c6efc16b95d84eab9ed853137ebe408bc2a205", + "fields": { + "code_commune_insee": "89201", + "nom_de_la_commune": "HERY", + "code_postal": "89550", + "coordonnees_gps": [ + 47.8971703868, + 3.63734153028 + ], + "libelle_d_acheminement": "HERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63734153028, + 47.8971703868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23b40bfd033af8e8606cf951174c8fda3d9e0c28", + "fields": { + "code_commune_insee": "89205", + "nom_de_la_commune": "JAULGES", + "code_postal": "89360", + "coordonnees_gps": [ + 47.9592889403, + 3.78678091557 + ], + "libelle_d_acheminement": "JAULGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78678091557, + 47.9592889403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c58111c64d42b253066d303d2b02a47b076e249", + "fields": { + "code_commune_insee": "89211", + "nom_de_la_commune": "JUNAY", + "code_postal": "89700", + "coordonnees_gps": [ + 47.8785014633, + 3.94207319674 + ], + "libelle_d_acheminement": "JUNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94207319674, + 47.8785014633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffb0a44b9a3c326c89f65f04661757f1ea965832", + "fields": { + "code_commune_insee": "89212", + "nom_de_la_commune": "JUSSY", + "code_postal": "89290", + "coordonnees_gps": [ + 47.7166785125, + 3.5697968905 + ], + "libelle_d_acheminement": "JUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5697968905, + 47.7166785125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c719a86c395c7acb6ff0fef2c5694cea32223c2a", + "fields": { + "code_commune_insee": "89217", + "nom_de_la_commune": "LALANDE", + "code_postal": "89130", + "coordonnees_gps": [ + 47.6806210505, + 3.31236258541 + ], + "libelle_d_acheminement": "LALANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31236258541, + 47.6806210505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfc9a89bdeeab3d5a10cec7972da77f14919e9fc", + "fields": { + "code_commune_insee": "89221", + "nom_de_la_commune": "LEUGNY", + "code_postal": "89130", + "coordonnees_gps": [ + 47.6861199694, + 3.37458168586 + ], + "libelle_d_acheminement": "LEUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37458168586, + 47.6861199694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02f7eb396fa2bb263e02b31308d99adcfac19369", + "fields": { + "code_commune_insee": "89222", + "nom_de_la_commune": "LEVIS", + "code_postal": "89520", + "coordonnees_gps": [ + 47.6601955788, + 3.3333881952 + ], + "libelle_d_acheminement": "LEVIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3333881952, + 47.6601955788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b0c74fd9c163c55c660f2e7cbb1b6c01807817f", + "fields": { + "code_commune_insee": "89227", + "nom_de_la_commune": "LIGNY LE CHATEL", + "code_postal": "89144", + "coordonnees_gps": [ + 47.9199212394, + 3.75312409599 + ], + "libelle_d_acheminement": "LIGNY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75312409599, + 47.9199212394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cc5829c8c6e340e27b444a3993a485a9b316bdd", + "fields": { + "code_commune_insee": "89237", + "nom_de_la_commune": "MAILLY LA VILLE", + "code_postal": "89270", + "coordonnees_gps": [ + 47.5882858652, + 3.69391994411 + ], + "libelle_d_acheminement": "MAILLY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69391994411, + 47.5882858652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2be4f8869be2744d7120938d174fda848861dad", + "fields": { + "code_commune_insee": "89238", + "nom_de_la_commune": "MAILLY LE CHATEAU", + "code_postal": "89660", + "coordonnees_gps": [ + 47.5825000596, + 3.59908687076 + ], + "libelle_d_acheminement": "MAILLY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59908687076, + 47.5825000596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd62e7420a9793c4f510ded36d3704f464ebf886", + "fields": { + "ligne_5": "CIVRY SUR SEREIN", + "code_commune_insee": "89246", + "libelle_d_acheminement": "MASSANGIS", + "code_postal": "89440", + "nom_de_la_commune": "MASSANGIS", + "coordonnees_gps": [ + 47.6250901149, + 3.98513574014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98513574014, + 47.6250901149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "267c8b7d431c913f3ea6e10f997a86340674dbcd", + "fields": { + "code_commune_insee": "89257", + "nom_de_la_commune": "MIGENNES", + "code_postal": "89400", + "coordonnees_gps": [ + 47.9751844211, + 3.53087221846 + ], + "libelle_d_acheminement": "MIGENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53087221846, + 47.9751844211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a7660b8da6f7addff403ef21c37ab0974aa629e", + "fields": { + "code_commune_insee": "89264", + "nom_de_la_commune": "MONTACHER VILLEGARDIN", + "code_postal": "89150", + "coordonnees_gps": [ + 48.1679038657, + 3.03252223592 + ], + "libelle_d_acheminement": "MONTACHER VILLEGARDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03252223592, + 48.1679038657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9460f581c569bdb1d3b2d655da1baa075b32342e", + "fields": { + "code_commune_insee": "89266", + "nom_de_la_commune": "MONTILLOT", + "code_postal": "89660", + "coordonnees_gps": [ + 47.5078896106, + 3.71695452719 + ], + "libelle_d_acheminement": "MONTILLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71695452719, + 47.5078896106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bd04c681d57ef664205d63e7574c62e957e398a", + "fields": { + "code_commune_insee": "89287", + "nom_de_la_commune": "PARON", + "code_postal": "89100", + "coordonnees_gps": [ + 48.1852396311, + 3.23953037436 + ], + "libelle_d_acheminement": "PARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23953037436, + 48.1852396311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6c465568af196bc60ecb5c60e265f8462d22a5b", + "fields": { + "code_commune_insee": "89290", + "nom_de_la_commune": "PASILLY", + "code_postal": "89310", + "coordonnees_gps": [ + 47.7025345935, + 4.08341992562 + ], + "libelle_d_acheminement": "PASILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08341992562, + 47.7025345935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a9de83026db57c18ea2072422067f9a546cf1c0", + "fields": { + "code_commune_insee": "89292", + "nom_de_la_commune": "PERCEY", + "code_postal": "89360", + "coordonnees_gps": [ + 47.9687913844, + 3.8374991594 + ], + "libelle_d_acheminement": "PERCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8374991594, + 47.9687913844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "548de286ad0bcff896e50e13ebb9003762ae5d33", + "fields": { + "code_commune_insee": "89297", + "nom_de_la_commune": "PIERRE PERTHUIS", + "code_postal": "89450", + "coordonnees_gps": [ + 47.4326784841, + 3.79104636774 + ], + "libelle_d_acheminement": "PIERRE PERTHUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79104636774, + 47.4326784841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c1098a19ea5cb140fd6cceed4c872e6270ebb2a", + "fields": { + "code_commune_insee": "89299", + "nom_de_la_commune": "PIMELLES", + "code_postal": "89740", + "coordonnees_gps": [ + 47.8394757022, + 4.17196657767 + ], + "libelle_d_acheminement": "PIMELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17196657767, + 47.8394757022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "649d5dfe7c913a71dfb07e2fa16550a61caddbe8", + "fields": { + "code_commune_insee": "89309", + "nom_de_la_commune": "PONT SUR YONNE", + "code_postal": "89140", + "coordonnees_gps": [ + 48.2787429774, + 3.1934739546 + ], + "libelle_d_acheminement": "PONT SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1934739546, + 48.2787429774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f389fbe360ad972abc43b97512c3a8dd7031dfc", + "fields": { + "code_commune_insee": "89311", + "nom_de_la_commune": "POURRAIN", + "code_postal": "89240", + "coordonnees_gps": [ + 47.7657446745, + 3.41155845183 + ], + "libelle_d_acheminement": "POURRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41155845183, + 47.7657446745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "537b77a17c3ac9a6699ea4138136166443e0dc56", + "fields": { + "code_commune_insee": "89318", + "nom_de_la_commune": "QUARRE LES TOMBES", + "code_postal": "89630", + "coordonnees_gps": [ + 47.3577712365, + 4.00357546154 + ], + "libelle_d_acheminement": "QUARRE LES TOMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00357546154, + 47.3577712365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8625c72cdb3f4cd3ebbeefdd0d80b6eebadc09e", + "fields": { + "code_commune_insee": "89319", + "nom_de_la_commune": "QUENNE", + "code_postal": "89290", + "coordonnees_gps": [ + 47.779604419, + 3.65137450935 + ], + "libelle_d_acheminement": "QUENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65137450935, + 47.779604419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e757a9bce87aa3686fdaf75b303cd3ce8c75c444", + "fields": { + "code_commune_insee": "89332", + "nom_de_la_commune": "ST AGNAN", + "code_postal": "89340", + "coordonnees_gps": [ + 48.3007152806, + 3.05891454173 + ], + "libelle_d_acheminement": "ST AGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05891454173, + 48.3007152806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6841b5053bbe26a0d4c43d11ea6cc608cd78c4bc", + "fields": { + "code_commune_insee": "89336", + "nom_de_la_commune": "ST BRANCHER", + "code_postal": "89630", + "coordonnees_gps": [ + 47.4294751821, + 3.99056021345 + ], + "libelle_d_acheminement": "ST BRANCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99056021345, + 47.4294751821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b16df024f8a97ff1d19e476e4061648fdd3736b", + "fields": { + "code_commune_insee": "89344", + "nom_de_la_commune": "ST FARGEAU", + "code_postal": "89170", + "coordonnees_gps": [ + 47.6424423236, + 3.08488500512 + ], + "libelle_d_acheminement": "ST FARGEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08488500512, + 47.6424423236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e9d8a2307c8aa8ebfa73421d90db65ff049f3b3", + "fields": { + "code_commune_insee": "89346", + "nom_de_la_commune": "ST GEORGES SUR BAULCHE", + "code_postal": "89000", + "coordonnees_gps": [ + 47.8021809257, + 3.51709241008 + ], + "libelle_d_acheminement": "ST GEORGES SUR BAULCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51709241008, + 47.8021809257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "983ec897a2c1520a1653ccbddb33713f55ffbdf0", + "fields": { + "code_commune_insee": "89359", + "nom_de_la_commune": "ST MAURICE AUX RICHES HOMMES", + "code_postal": "89190", + "coordonnees_gps": [ + 48.3293750857, + 3.49859430256 + ], + "libelle_d_acheminement": "ST MAURICE AUX RICHES HOMMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49859430256, + 48.3293750857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62030ce25072c49cdfeb1382358034197208ce6e", + "fields": { + "code_commune_insee": "89362", + "nom_de_la_commune": "ST MORE", + "code_postal": "89270", + "coordonnees_gps": [ + 47.5765381901, + 3.77326623089 + ], + "libelle_d_acheminement": "ST MORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77326623089, + 47.5765381901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6db7f955a708a620cfb7c1be9a16096ec0f28ea7", + "fields": { + "code_commune_insee": "89363", + "nom_de_la_commune": "STE PALLAYE", + "code_postal": "89460", + "coordonnees_gps": [ + 47.6537787512, + 3.68064417073 + ], + "libelle_d_acheminement": "STE PALLAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68064417073, + 47.6537787512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cce423d59ac0aa8b7517322095e468ef48b57b5", + "fields": { + "code_commune_insee": "89365", + "nom_de_la_commune": "ST PRIVE", + "code_postal": "89220", + "coordonnees_gps": [ + 47.6895502074, + 3.0016873765 + ], + "libelle_d_acheminement": "ST PRIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0016873765, + 47.6895502074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8484ad2471dba655b57a689290b9d4a3d0cb4c29", + "fields": { + "code_commune_insee": "89374", + "nom_de_la_commune": "SAMBOURG", + "code_postal": "89160", + "coordonnees_gps": [ + 47.773945917, + 4.01023648072 + ], + "libelle_d_acheminement": "SAMBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01023648072, + 47.773945917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9f70f3717577051f86dbea4fca983b592cbb51e", + "fields": { + "code_commune_insee": "89376", + "nom_de_la_commune": "SARRY", + "code_postal": "89310", + "coordonnees_gps": [ + 47.6655179259, + 4.07573184934 + ], + "libelle_d_acheminement": "SARRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07573184934, + 47.6655179259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34a35b966dcdcbf94ba5c6549a50709fda443114", + "fields": { + "code_commune_insee": "89380", + "nom_de_la_commune": "SAVIGNY SUR CLAIRIS", + "code_postal": "89150", + "coordonnees_gps": [ + 48.0762765897, + 3.08345438352 + ], + "libelle_d_acheminement": "SAVIGNY SUR CLAIRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08345438352, + 48.0762765897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2774f24eb85a1fcc9fa031693809f82eea84368", + "fields": { + "code_commune_insee": "89386", + "nom_de_la_commune": "SENNEVOY LE HAUT", + "code_postal": "89160", + "coordonnees_gps": [ + 47.8116022646, + 4.26474148707 + ], + "libelle_d_acheminement": "SENNEVOY LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26474148707, + 47.8116022646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eec2c58ed56cb0c44dbcfb018e1634f170bd43e6", + "fields": { + "code_commune_insee": "89387", + "nom_de_la_commune": "SENS", + "code_postal": "89100", + "coordonnees_gps": [ + 48.1956727015, + 3.29793332552 + ], + "libelle_d_acheminement": "SENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29793332552, + 48.1956727015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42842d4d09f85a0444336062c7d0b595c0d40e31", + "fields": { + "code_commune_insee": "89395", + "nom_de_la_commune": "LES SIEGES", + "code_postal": "89190", + "coordonnees_gps": [ + 48.1724461499, + 3.53441319941 + ], + "libelle_d_acheminement": "LES SIEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53441319941, + 48.1724461499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "644c35d330c3db9340acb3aaf4a089bb7783fcc8", + "fields": { + "code_commune_insee": "89399", + "nom_de_la_commune": "SOUCY", + "code_postal": "89100", + "coordonnees_gps": [ + 48.2508138819, + 3.32683528652 + ], + "libelle_d_acheminement": "SOUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32683528652, + 48.2508138819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c2b31c864c6d8d5f0095e8dc5fc4fa962a3e912", + "fields": { + "ligne_5": "TAINGY", + "code_commune_insee": "89405", + "libelle_d_acheminement": "LES HAUTS DE FORTERRE", + "code_postal": "89560", + "nom_de_la_commune": "LES HAUTS DE FORTERRE", + "coordonnees_gps": [ + 47.6123914189, + 3.40803434271 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40803434271, + 47.6123914189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b478860091d0513251855b963405a2679f0cb82", + "fields": { + "code_commune_insee": "89406", + "nom_de_la_commune": "TALCY", + "code_postal": "89420", + "coordonnees_gps": [ + 47.5761707824, + 4.07521714273 + ], + "libelle_d_acheminement": "TALCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07521714273, + 47.5761707824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dcc4cb005a164438ea9c327c0618fc7e7c13bee", + "fields": { + "ligne_5": "ST VINNEMER", + "code_commune_insee": "89407", + "libelle_d_acheminement": "TANLAY", + "code_postal": "89430", + "nom_de_la_commune": "TANLAY", + "coordonnees_gps": [ + 47.844633852, + 4.08770006589 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08770006589, + 47.844633852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8513d398181e0c772f99cb22b6d06e388601ae1", + "fields": { + "code_commune_insee": "89408", + "nom_de_la_commune": "TANNERRE EN PUISAYE", + "code_postal": "89350", + "coordonnees_gps": [ + 47.7353917535, + 3.13906959587 + ], + "libelle_d_acheminement": "TANNERRE EN PUISAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13906959587, + 47.7353917535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5667c2606339ca5a06f45c7476dbec030245b89", + "fields": { + "code_commune_insee": "89412", + "nom_de_la_commune": "THIZY", + "code_postal": "89420", + "coordonnees_gps": [ + 47.58183768, + 4.05915393328 + ], + "libelle_d_acheminement": "THIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05915393328, + 47.58183768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba31094a0b3154a9fa0caabd60a797511e073887", + "fields": { + "code_commune_insee": "89415", + "nom_de_la_commune": "THORY", + "code_postal": "89200", + "coordonnees_gps": [ + 47.5710240128, + 3.91643466826 + ], + "libelle_d_acheminement": "THORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91643466826, + 47.5710240128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bcbb8858a6513671a0ce4dade0f0b556205d394", + "fields": { + "code_commune_insee": "89417", + "nom_de_la_commune": "TISSEY", + "code_postal": "89700", + "coordonnees_gps": [ + 47.8593082514, + 3.89981203629 + ], + "libelle_d_acheminement": "TISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89981203629, + 47.8593082514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edb1c69502568c1027e3b66cbb6a08bdeff596d0", + "fields": { + "code_commune_insee": "89428", + "nom_de_la_commune": "VALLERY", + "code_postal": "89150", + "coordonnees_gps": [ + 48.2338341776, + 3.04642439879 + ], + "libelle_d_acheminement": "VALLERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04642439879, + 48.2338341776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5947c885f62ebb2a619b4f1099fb4e8bd05d949", + "fields": { + "code_commune_insee": "89430", + "nom_de_la_commune": "VARENNES", + "code_postal": "89144", + "coordonnees_gps": [ + 47.9137837272, + 3.78515786219 + ], + "libelle_d_acheminement": "VARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78515786219, + 47.9137837272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "865f3da5f6756573626b5b126c1389d6cf3d4120", + "fields": { + "code_commune_insee": "89440", + "nom_de_la_commune": "VERLIN", + "code_postal": "89330", + "coordonnees_gps": [ + 48.0189121069, + 3.22311343074 + ], + "libelle_d_acheminement": "VERLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22311343074, + 48.0189121069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a606d9d1cadc1a88a499ab7d6cf51b3cec82aff", + "fields": { + "code_commune_insee": "89441", + "nom_de_la_commune": "VERMENTON", + "code_postal": "89270", + "coordonnees_gps": [ + 47.6729908911, + 3.7577164851 + ], + "libelle_d_acheminement": "VERMENTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7577164851, + 47.6729908911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8f991ee3fca2cc6cba83b9164382d027ca9639f", + "fields": { + "code_commune_insee": "89452", + "nom_de_la_commune": "VILLECIEN", + "code_postal": "89300", + "coordonnees_gps": [ + 48.0143094754, + 3.33899968576 + ], + "libelle_d_acheminement": "VILLECIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33899968576, + 48.0143094754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c856acda991eaf11abebc621ddb8a0098f625471", + "fields": { + "code_commune_insee": "89458", + "nom_de_la_commune": "VILLENAVOTTE", + "code_postal": "89140", + "coordonnees_gps": [ + 48.2436607589, + 3.23257648668 + ], + "libelle_d_acheminement": "VILLENAVOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23257648668, + 48.2436607589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "974e1453a9850b64dc64407f068d7ada38399cda", + "fields": { + "code_commune_insee": "89461", + "nom_de_la_commune": "VILLENEUVE L ARCHEVEQUE", + "code_postal": "89190", + "coordonnees_gps": [ + 48.2355837478, + 3.56315804862 + ], + "libelle_d_acheminement": "VILLENEUVE L ARCHEVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56315804862, + 48.2355837478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2f0a0875201330ca0d421cc6b2fc6a279abf4a5", + "fields": { + "ligne_5": "PLESSIS DU MEE", + "code_commune_insee": "89469", + "libelle_d_acheminement": "PERCENEIGE", + "code_postal": "89260", + "nom_de_la_commune": "PERCENEIGE", + "coordonnees_gps": [ + 48.3524100222, + 3.410424212 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.410424212, + 48.3524100222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23ae72e1d1cebddb3f012c2cfaf172cead21ec6c", + "fields": { + "code_commune_insee": "89470", + "nom_de_la_commune": "VILLIERS LES HAUTS", + "code_postal": "89160", + "coordonnees_gps": [ + 47.718668015, + 4.14977186887 + ], + "libelle_d_acheminement": "VILLIERS LES HAUTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14977186887, + 47.718668015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d060055c65041ca831f3b23af811f3b4f180f39", + "fields": { + "code_commune_insee": "89481", + "nom_de_la_commune": "VIREAUX", + "code_postal": "89160", + "coordonnees_gps": [ + 47.7883991862, + 4.03759334001 + ], + "libelle_d_acheminement": "VIREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03759334001, + 47.7883991862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1531dea61459f986b95de0b4352d096853b697f5", + "fields": { + "ligne_5": "FROIDEVAL", + "code_commune_insee": "90001", + "libelle_d_acheminement": "ANDELNANS", + "code_postal": "90400", + "nom_de_la_commune": "ANDELNANS", + "coordonnees_gps": [ + 47.6031655316, + 6.86569831996 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86569831996, + 47.6031655316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3c63be0eb73afef053cb5f38fd270874e039838", + "fields": { + "code_commune_insee": "90005", + "nom_de_la_commune": "AUXELLES BAS", + "code_postal": "90200", + "coordonnees_gps": [ + 47.7286757608, + 6.78389507054 + ], + "libelle_d_acheminement": "AUXELLES BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78389507054, + 47.7286757608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0047a6c78f5b29f5c9dc9f8e257ed2da4a88113f", + "fields": { + "code_commune_insee": "90008", + "nom_de_la_commune": "BAVILLIERS", + "code_postal": "90800", + "coordonnees_gps": [ + 47.6199695086, + 6.83065542168 + ], + "libelle_d_acheminement": "BAVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83065542168, + 47.6199695086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0f1570e7edb3e431c6ac97f0cf89de033cedf77", + "fields": { + "code_commune_insee": "90016", + "nom_de_la_commune": "BOURG SOUS CHATELET", + "code_postal": "90110", + "coordonnees_gps": [ + 47.7051448214, + 6.94870528663 + ], + "libelle_d_acheminement": "BOURG SOUS CHATELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94870528663, + 47.7051448214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59832263955e3113fa0afc39e20050240681b7b6", + "fields": { + "code_commune_insee": "90021", + "nom_de_la_commune": "CHARMOIS", + "code_postal": "90140", + "coordonnees_gps": [ + 47.5792626446, + 6.94147757264 + ], + "libelle_d_acheminement": "CHARMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94147757264, + 47.5792626446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad0947280de275c511baf32ebf8ff42e0f5cf252", + "fields": { + "code_commune_insee": "90025", + "nom_de_la_commune": "CHAVANNES LES GRANDS", + "code_postal": "90100", + "coordonnees_gps": [ + 47.5898992645, + 7.04916944322 + ], + "libelle_d_acheminement": "CHAVANNES LES GRANDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04916944322, + 47.5898992645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6084b02827541ea3522217e7acc72540529984a0", + "fields": { + "code_commune_insee": "90026", + "nom_de_la_commune": "CHEVREMONT", + "code_postal": "90340", + "coordonnees_gps": [ + 47.6278946489, + 6.92965534221 + ], + "libelle_d_acheminement": "CHEVREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92965534221, + 47.6278946489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8db61114c5d735059334a0f5edd957c6ea405a41", + "fields": { + "code_commune_insee": "90027", + "nom_de_la_commune": "COURCELLES", + "code_postal": "90100", + "coordonnees_gps": [ + 47.4989296387, + 7.07296297288 + ], + "libelle_d_acheminement": "COURCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07296297288, + 47.4989296387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e43a2c28319d88c134cea023c6d467c406ea98c", + "fields": { + "code_commune_insee": "90029", + "nom_de_la_commune": "CRAVANCHE", + "code_postal": "90300", + "coordonnees_gps": [ + 47.6518069558, + 6.82383810256 + ], + "libelle_d_acheminement": "CRAVANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82383810256, + 47.6518069558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61f4a8c502c7bd15dd16a1d89b221aa1828c629f", + "fields": { + "code_commune_insee": "90042", + "nom_de_la_commune": "EVETTE SALBERT", + "code_postal": "90350", + "coordonnees_gps": [ + 47.6726681014, + 6.79638657468 + ], + "libelle_d_acheminement": "EVETTE SALBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79638657468, + 47.6726681014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38f654a220a7cc52182564c2734067715366f88e", + "fields": { + "code_commune_insee": "90053", + "nom_de_la_commune": "GRANDVILLARS", + "code_postal": "90600", + "coordonnees_gps": [ + 47.5377831374, + 6.97050338546 + ], + "libelle_d_acheminement": "GRANDVILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97050338546, + 47.5377831374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b477bdd93c908e1f361bf2a060f0379f620f391", + "fields": { + "code_commune_insee": "90054", + "nom_de_la_commune": "GROSMAGNY", + "code_postal": "90200", + "coordonnees_gps": [ + 47.7184568018, + 6.88090479563 + ], + "libelle_d_acheminement": "GROSMAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88090479563, + 47.7184568018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40c1a5125a1bbf0030b6ab0d7056f2bbf9579c81", + "fields": { + "code_commune_insee": "90059", + "nom_de_la_commune": "LACOLLONGE", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6639071503, + 6.96032555343 + ], + "libelle_d_acheminement": "LACOLLONGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96032555343, + 47.6639071503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4c7b908524cca61de1bc80739c8dfbbdd4f66f9", + "fields": { + "code_commune_insee": "90071", + "nom_de_la_commune": "MONTREUX CHATEAU", + "code_postal": "90130", + "coordonnees_gps": [ + 47.6079194544, + 6.99446090768 + ], + "libelle_d_acheminement": "MONTREUX CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99446090768, + 47.6079194544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37833023f11b264a3886bf07f11b7ca7252222d8", + "fields": { + "code_commune_insee": "90078", + "nom_de_la_commune": "PETITEFONTAINE", + "code_postal": "90360", + "coordonnees_gps": [ + 47.7237763721, + 7.00757336099 + ], + "libelle_d_acheminement": "PETITEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00757336099, + 47.7237763721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db4cdb178719372720bf89d2f543be042c60bc5b", + "fields": { + "code_commune_insee": "90079", + "nom_de_la_commune": "PETITMAGNY", + "code_postal": "90170", + "coordonnees_gps": [ + 47.7236606703, + 6.89890832072 + ], + "libelle_d_acheminement": "PETITMAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89890832072, + 47.7236606703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cf70d2094f5ba0154a0ec568491149948a11979", + "fields": { + "code_commune_insee": "90084", + "nom_de_la_commune": "REPPE", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6629663825, + 7.02937822362 + ], + "libelle_d_acheminement": "REPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02937822362, + 47.6629663825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c69f7e678b2951f3586df278123ced1c787e9253", + "fields": { + "code_commune_insee": "90089", + "nom_de_la_commune": "ROUGEMONT LE CHATEAU", + "code_postal": "90110", + "coordonnees_gps": [ + 47.7460113941, + 6.95212889734 + ], + "libelle_d_acheminement": "ROUGEMONT LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95212889734, + 47.7460113941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4623cea72f4fedc930484c7ea04d42da90cd10e7", + "fields": { + "code_commune_insee": "90090", + "nom_de_la_commune": "ST DIZIER L EVEQUE", + "code_postal": "90100", + "coordonnees_gps": [ + 47.4674300962, + 6.96107878975 + ], + "libelle_d_acheminement": "ST DIZIER L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96107878975, + 47.4674300962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48ac2fa59d2cdd302a1bb360ea3c54827fe76879", + "fields": { + "code_commune_insee": "91001", + "nom_de_la_commune": "ABBEVILLE LA RIVIERE", + "code_postal": "91150", + "coordonnees_gps": [ + 48.3437461384, + 2.19127679346 + ], + "libelle_d_acheminement": "ABBEVILLE LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19127679346, + 48.3437461384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4f04525695d01ff57555a684d93b35aaae26ee9", + "fields": { + "code_commune_insee": "91016", + "nom_de_la_commune": "ANGERVILLE", + "code_postal": "91670", + "coordonnees_gps": [ + 48.3095627706, + 2.00619112268 + ], + "libelle_d_acheminement": "ANGERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00619112268, + 48.3095627706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c94824d17bb060c7b19a9f4082a31412315f8957", + "fields": { + "code_commune_insee": "91021", + "nom_de_la_commune": "ARPAJON", + "code_postal": "91290", + "coordonnees_gps": [ + 48.5908921647, + 2.24349117607 + ], + "libelle_d_acheminement": "ARPAJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24349117607, + 48.5908921647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ce641ac66bf7e491c6f0482ffb24e28146b3c11", + "fields": { + "code_commune_insee": "91037", + "nom_de_la_commune": "AUVERNAUX", + "code_postal": "91830", + "coordonnees_gps": [ + 48.5291181496, + 2.4879155112 + ], + "libelle_d_acheminement": "AUVERNAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4879155112, + 48.5291181496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b52cd35bf1e3551215ca67dd668f7d8a1d53eb82", + "fields": { + "code_commune_insee": "91038", + "nom_de_la_commune": "AUVERS ST GEORGES", + "code_postal": "91580", + "coordonnees_gps": [ + 48.4773721699, + 2.22600147466 + ], + "libelle_d_acheminement": "AUVERS ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22600147466, + 48.4773721699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "359cb7108430986112a95421005a5f8f0a1817d1", + "fields": { + "code_commune_insee": "91080", + "nom_de_la_commune": "BOISSY LE CUTTE", + "code_postal": "91590", + "coordonnees_gps": [ + 48.4702885961, + 2.28518160664 + ], + "libelle_d_acheminement": "BOISSY LE CUTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28518160664, + 48.4702885961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73ebc461f874a8ee9c160f26a1eee66ac4109c4e", + "fields": { + "code_commune_insee": "91098", + "nom_de_la_commune": "BOUTERVILLIERS", + "code_postal": "91150", + "coordonnees_gps": [ + 48.4555830213, + 2.05114682408 + ], + "libelle_d_acheminement": "BOUTERVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05114682408, + 48.4555830213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43d329a1a2fafd568f7355293cde62108e01cc74", + "fields": { + "code_commune_insee": "91099", + "nom_de_la_commune": "BOUTIGNY SUR ESSONNE", + "code_postal": "91820", + "coordonnees_gps": [ + 48.4361818403, + 2.3954223757 + ], + "libelle_d_acheminement": "BOUTIGNY SUR ESSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3954223757, + 48.4361818403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "054ef6ff9f7004dd2bd9bbaa506ba0c4c7624391", + "fields": { + "code_commune_insee": "91131", + "nom_de_la_commune": "CHALOU MOULINEUX", + "code_postal": "91740", + "coordonnees_gps": [ + 48.3803154982, + 2.02616711579 + ], + "libelle_d_acheminement": "CHALOU MOULINEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02616711579, + 48.3803154982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edf74f3ca21fd816fb5c58c6971efa564be8202e", + "fields": { + "code_commune_insee": "91135", + "nom_de_la_commune": "CHAMPCUEIL", + "code_postal": "91750", + "coordonnees_gps": [ + 48.5067693664, + 2.44815529587 + ], + "libelle_d_acheminement": "CHAMPCUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44815529587, + 48.5067693664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6a5c2774d962afcfc45dec602b53f6e0074cb5e", + "fields": { + "code_commune_insee": "91136", + "nom_de_la_commune": "CHAMPLAN", + "code_postal": "91160", + "coordonnees_gps": [ + 48.7083599746, + 2.27815398132 + ], + "libelle_d_acheminement": "CHAMPLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27815398132, + 48.7083599746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5216c332c30557077a69ea42e571c89f81fd98e", + "fields": { + "code_commune_insee": "91195", + "nom_de_la_commune": "DANNEMOIS", + "code_postal": "91490", + "coordonnees_gps": [ + 48.4597288126, + 2.46450828384 + ], + "libelle_d_acheminement": "DANNEMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46450828384, + 48.4597288126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17e53d154439d1e42fac43744eeb17613a989362", + "fields": { + "code_commune_insee": "91200", + "nom_de_la_commune": "DOURDAN", + "code_postal": "91410", + "coordonnees_gps": [ + 48.5359351532, + 1.99430156785 + ], + "libelle_d_acheminement": "DOURDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99430156785, + 48.5359351532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6f693e0c5dd4316c7aeb624624c89f6676ea184", + "fields": { + "code_commune_insee": "91207", + "nom_de_la_commune": "EGLY", + "code_postal": "91520", + "coordonnees_gps": [ + 48.5778313904, + 2.22141176606 + ], + "libelle_d_acheminement": "EGLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22141176606, + 48.5778313904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0fc7a6eb173c5b392fb16363edc63363dfcbe8a", + "fields": { + "code_commune_insee": "91232", + "nom_de_la_commune": "LA FERTE ALAIS", + "code_postal": "91590", + "coordonnees_gps": [ + 48.481221954, + 2.36734978463 + ], + "libelle_d_acheminement": "LA FERTE ALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36734978463, + 48.481221954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f83ed6caf6a71a3d7f2a3604cf1ae3489ccd6f0", + "fields": { + "code_commune_insee": "91235", + "nom_de_la_commune": "FLEURY MEROGIS", + "code_postal": "91700", + "coordonnees_gps": [ + 48.6333048682, + 2.36825308788 + ], + "libelle_d_acheminement": "FLEURY MEROGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36825308788, + 48.6333048682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5aaebffa8a0e1772ed7e8aca190df7ccc2b223cc", + "fields": { + "code_commune_insee": "91247", + "nom_de_la_commune": "LA FORET LE ROI", + "code_postal": "91410", + "coordonnees_gps": [ + 48.4755183328, + 2.0468515284 + ], + "libelle_d_acheminement": "LA FORET LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0468515284, + 48.4755183328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d78bec0ab2c6062e0dc4fbbf0f442e80ea8e6772", + "fields": { + "code_commune_insee": "91294", + "nom_de_la_commune": "GUILLERVAL", + "code_postal": "91690", + "coordonnees_gps": [ + 48.368305642, + 2.07601234971 + ], + "libelle_d_acheminement": "GUILLERVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07601234971, + 48.368305642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e4ca307a639c1a82663e2e3cf75359c8f5f6c73", + "fields": { + "code_commune_insee": "91319", + "nom_de_la_commune": "JANVRY", + "code_postal": "91640", + "coordonnees_gps": [ + 48.6461448761, + 2.15536092787 + ], + "libelle_d_acheminement": "JANVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15536092787, + 48.6461448761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c02268c0070f1e64e27dbf6c7073a76f5df1844a", + "fields": { + "code_commune_insee": "91345", + "nom_de_la_commune": "LONGJUMEAU", + "code_postal": "91160", + "coordonnees_gps": [ + 48.6900488045, + 2.30247056719 + ], + "libelle_d_acheminement": "LONGJUMEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30247056719, + 48.6900488045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f85d4dc7df4f613d3b95a28cff124675b8735782", + "fields": { + "code_commune_insee": "91359", + "nom_de_la_commune": "MAISSE", + "code_postal": "91720", + "coordonnees_gps": [ + 48.3958941333, + 2.37009405843 + ], + "libelle_d_acheminement": "MAISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37009405843, + 48.3958941333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcf4534a0e2314a9716717577be610ca3595d360", + "fields": { + "code_commune_insee": "91363", + "nom_de_la_commune": "MARCOUSSIS", + "code_postal": "91460", + "coordonnees_gps": [ + 48.6463321888, + 2.20621393661 + ], + "libelle_d_acheminement": "MARCOUSSIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20621393661, + 48.6463321888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62b24bd5c738022055e715396305e4579b55ab8d", + "fields": { + "code_commune_insee": "91399", + "nom_de_la_commune": "MESPUITS", + "code_postal": "91150", + "coordonnees_gps": [ + 48.3583012409, + 2.27660044339 + ], + "libelle_d_acheminement": "MESPUITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27660044339, + 48.3583012409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c2f7551ec0ff2df444010e780f5fe68302aed58", + "fields": { + "code_commune_insee": "91421", + "nom_de_la_commune": "MONTGERON", + "code_postal": "91230", + "coordonnees_gps": [ + 48.6951531801, + 2.46249881778 + ], + "libelle_d_acheminement": "MONTGERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46249881778, + 48.6951531801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54316936ad76ec9abc5859f50f0ba5cd6a7d10c8", + "fields": { + "code_commune_insee": "91435", + "nom_de_la_commune": "MORSANG SUR SEINE", + "code_postal": "91250", + "coordonnees_gps": [ + 48.5768153629, + 2.50087368249 + ], + "libelle_d_acheminement": "MORSANG SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50087368249, + 48.5768153629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04d623f54546a622006563d9f411fdae5cff2250", + "fields": { + "code_commune_insee": "91471", + "nom_de_la_commune": "ORSAY", + "code_postal": "91400", + "coordonnees_gps": [ + 48.7004093953, + 2.18737051177 + ], + "libelle_d_acheminement": "ORSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18737051177, + 48.7004093953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb88064c546f3d9118e8aed165dfd3ededdfe62d", + "fields": { + "code_commune_insee": "91482", + "nom_de_la_commune": "PECQUEUSE", + "code_postal": "91470", + "coordonnees_gps": [ + 48.6482785839, + 2.03658537249 + ], + "libelle_d_acheminement": "PECQUEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03658537249, + 48.6482785839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83e2fc978de09f0ccf6f91035da11041287af503", + "fields": { + "code_commune_insee": "91511", + "nom_de_la_commune": "PUSSAY", + "code_postal": "91740", + "coordonnees_gps": [ + 48.3501390368, + 1.99758393379 + ], + "libelle_d_acheminement": "PUSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99758393379, + 48.3501390368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7bb7d1149222faa74fb5637577b3b3e0c0c93ef", + "fields": { + "code_commune_insee": "91525", + "nom_de_la_commune": "ROINVILLE", + "code_postal": "91410", + "coordonnees_gps": [ + 48.5170698274, + 2.05333144451 + ], + "libelle_d_acheminement": "ROINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05333144451, + 48.5170698274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f811a29891b2ef260bc4a65e65233b373d00ebd3", + "fields": { + "code_commune_insee": "91534", + "nom_de_la_commune": "SACLAY", + "code_postal": "91400", + "coordonnees_gps": [ + 48.7354339366, + 2.1663021309 + ], + "libelle_d_acheminement": "SACLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1663021309, + 48.7354339366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ff312cc8eb1db0bcc7ec75bff822bd18f9cb3d8", + "fields": { + "code_commune_insee": "91540", + "nom_de_la_commune": "ST CHERON", + "code_postal": "91530", + "coordonnees_gps": [ + 48.5491975829, + 2.12662820406 + ], + "libelle_d_acheminement": "ST CHERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12662820406, + 48.5491975829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a13e163472820075ab04df2b1d0ef6ba08277ca", + "fields": { + "code_commune_insee": "91553", + "nom_de_la_commune": "ST GERMAIN LES CORBEIL", + "code_postal": "91250", + "coordonnees_gps": [ + 48.6257066899, + 2.49140468072 + ], + "libelle_d_acheminement": "ST GERMAIN LES CORBEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49140468072, + 48.6257066899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2fe7d2c327992018f753ffa3543921e85e514e9", + "fields": { + "ligne_5": "VILLEZIERS", + "code_commune_insee": "91560", + "libelle_d_acheminement": "ST JEAN DE BEAUREGARD", + "code_postal": "91940", + "nom_de_la_commune": "ST JEAN DE BEAUREGARD", + "coordonnees_gps": [ + 48.6657065613, + 2.17124577371 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17124577371, + 48.6657065613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33b4e6ef8f162efd373b4747c97d47dc6462fe09", + "fields": { + "code_commune_insee": "91577", + "nom_de_la_commune": "SAINTRY SUR SEINE", + "code_postal": "91250", + "coordonnees_gps": [ + 48.5930107359, + 2.4941919266 + ], + "libelle_d_acheminement": "SAINTRY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4941919266, + 48.5930107359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "457b6aafdf832c1dc83b18e68e695fd5c6676ff0", + "fields": { + "code_commune_insee": "91579", + "nom_de_la_commune": "ST VRAIN", + "code_postal": "91770", + "coordonnees_gps": [ + 48.5373210479, + 2.32289078443 + ], + "libelle_d_acheminement": "ST VRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32289078443, + 48.5373210479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3d5a69b6a78de735b1f325a439bdb23c4e5f9d5", + "fields": { + "code_commune_insee": "91587", + "nom_de_la_commune": "SAULX LES CHARTREUX", + "code_postal": "91160", + "coordonnees_gps": [ + 48.6850264714, + 2.26634749221 + ], + "libelle_d_acheminement": "SAULX LES CHARTREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26634749221, + 48.6850264714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eac310cf952747672f5d24bd7182faf648ad001", + "fields": { + "code_commune_insee": "91593", + "nom_de_la_commune": "SERMAISE", + "code_postal": "91530", + "coordonnees_gps": [ + 48.5310930707, + 2.08893971049 + ], + "libelle_d_acheminement": "SERMAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08893971049, + 48.5310930707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aab6b9ea9bd2fca8dc4729a7478a58869b3700cd", + "fields": { + "code_commune_insee": "91613", + "nom_de_la_commune": "CONGERVILLE THIONVILLE", + "code_postal": "91740", + "coordonnees_gps": [ + 48.3827643404, + 1.99087904506 + ], + "libelle_d_acheminement": "CONGERVILLE THIONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99087904506, + 48.3827643404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d65bd0dcf24c15b13609fe0ecb3f17851ff96d40", + "fields": { + "ligne_5": "CONGERVILLE", + "code_commune_insee": "91613", + "libelle_d_acheminement": "CONGERVILLE THIONVILLE", + "code_postal": "91740", + "nom_de_la_commune": "CONGERVILLE THIONVILLE", + "coordonnees_gps": [ + 48.3827643404, + 1.99087904506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99087904506, + 48.3827643404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f835562c52859aa6bf072420dbd6aff8943a0d2", + "fields": { + "code_commune_insee": "91629", + "nom_de_la_commune": "VALPUISEAUX", + "code_postal": "91720", + "coordonnees_gps": [ + 48.3922279636, + 2.30328757315 + ], + "libelle_d_acheminement": "VALPUISEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30328757315, + 48.3922279636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2626e4fccfb0817186a1a379e417d29b660bcbf7", + "fields": { + "code_commune_insee": "91654", + "nom_de_la_commune": "VIDELLES", + "code_postal": "91890", + "coordonnees_gps": [ + 48.4683664138, + 2.42068572026 + ], + "libelle_d_acheminement": "VIDELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42068572026, + 48.4683664138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5d9eb7357d7a17f42db6f16f0fe65d8ff5730dd", + "fields": { + "code_commune_insee": "91679", + "nom_de_la_commune": "VILLIERS LE BACLE", + "code_postal": "91190", + "coordonnees_gps": [ + 48.7288080861, + 2.1221470247 + ], + "libelle_d_acheminement": "VILLIERS LE BACLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1221470247, + 48.7288080861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cd710e97e0a555d799a001f88d486c250cd5367", + "fields": { + "code_commune_insee": "91692", + "nom_de_la_commune": "LES ULIS", + "code_postal": "91940", + "coordonnees_gps": [ + 48.680321482, + 2.18518955 + ], + "libelle_d_acheminement": "LES ULIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18518955, + 48.680321482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3640f0807c24482a5da9f47aef0557660a634948", + "fields": { + "ligne_5": "LE PETIT CLAMART", + "code_commune_insee": "92023", + "libelle_d_acheminement": "CLAMART", + "code_postal": "92140", + "nom_de_la_commune": "CLAMART", + "coordonnees_gps": [ + 48.7964306792, + 2.25474652922 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25474652922, + 48.7964306792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45f533cc62adb459a515a61a50eaa010799bc96f", + "fields": { + "code_commune_insee": "92036", + "nom_de_la_commune": "GENNEVILLIERS", + "code_postal": "92230", + "coordonnees_gps": [ + 48.9345190548, + 2.29384987973 + ], + "libelle_d_acheminement": "GENNEVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29384987973, + 48.9345190548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bf4fb10a981f909c1122789f3a5108b46d401d8", + "fields": { + "ligne_5": "MEUDON LA FORET", + "code_commune_insee": "92048", + "libelle_d_acheminement": "MEUDON", + "code_postal": "92360", + "nom_de_la_commune": "MEUDON", + "coordonnees_gps": [ + 48.8037275796, + 2.22696287829 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22696287829, + 48.8037275796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cca33ea8e4200fbd4765d704234a5594566a6aa", + "fields": { + "code_commune_insee": "92050", + "nom_de_la_commune": "NANTERRE", + "code_postal": "92000", + "coordonnees_gps": [ + 48.8960701282, + 2.20671346353 + ], + "libelle_d_acheminement": "NANTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20671346353, + 48.8960701282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41fbc30c506dc7c90f5a89dc208e3394728c6d2c", + "fields": { + "ligne_5": "BUZENVAL", + "code_commune_insee": "92063", + "libelle_d_acheminement": "RUEIL MALMAISON", + "code_postal": "92500", + "nom_de_la_commune": "RUEIL MALMAISON", + "coordonnees_gps": [ + 48.8691897371, + 2.1773406315 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1773406315, + 48.8691897371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69b0411c36829f1a2f64fa31d4ac6ea488b383b2", + "fields": { + "code_commune_insee": "93008", + "nom_de_la_commune": "BOBIGNY", + "code_postal": "93000", + "coordonnees_gps": [ + 48.907688244, + 2.43863982727 + ], + "libelle_d_acheminement": "BOBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43863982727, + 48.907688244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4501dfb9081a25f23a86f2998727fd3d44463892", + "fields": { + "code_commune_insee": "93045", + "nom_de_la_commune": "LES LILAS", + "code_postal": "93260", + "coordonnees_gps": [ + 48.8819208939, + 2.419667821 + ], + "libelle_d_acheminement": "LES LILAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.419667821, + 48.8819208939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01273ec5813901100ba8e3d93e032467f1c8ba7f", + "fields": { + "code_commune_insee": "93059", + "nom_de_la_commune": "PIERREFITTE SUR SEINE", + "code_postal": "93380", + "coordonnees_gps": [ + 48.9609833355, + 2.36328125445 + ], + "libelle_d_acheminement": "PIERREFITTE SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36328125445, + 48.9609833355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c54b0edb7c008e2531bc6c2fa54467dc5028f221", + "fields": { + "code_commune_insee": "93071", + "nom_de_la_commune": "SEVRAN", + "code_postal": "93270", + "coordonnees_gps": [ + 48.9386070153, + 2.53124057567 + ], + "libelle_d_acheminement": "SEVRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53124057567, + 48.9386070153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f64a8f5b21702457300eb30df2cb55f57cf0a868", + "fields": { + "code_commune_insee": "93079", + "nom_de_la_commune": "VILLETANEUSE", + "code_postal": "93430", + "coordonnees_gps": [ + 48.9572976501, + 2.34506633651 + ], + "libelle_d_acheminement": "VILLETANEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34506633651, + 48.9572976501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12fe58aaa657ee5342707a28f35de75e3a64f2c7", + "fields": { + "code_commune_insee": "94002", + "nom_de_la_commune": "ALFORTVILLE", + "code_postal": "94140", + "coordonnees_gps": [ + 48.7960843864, + 2.42124593241 + ], + "libelle_d_acheminement": "ALFORTVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42124593241, + 48.7960843864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17f29e149ff4ca1b9e14a00a77f6dc64a6d0f4f7", + "fields": { + "code_commune_insee": "94016", + "nom_de_la_commune": "CACHAN", + "code_postal": "94230", + "coordonnees_gps": [ + 48.7916121646, + 2.33153313164 + ], + "libelle_d_acheminement": "CACHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33153313164, + 48.7916121646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfb56e77f8cbc2ec7b59b0961f809bdcd363baf5", + "fields": { + "code_commune_insee": "94018", + "nom_de_la_commune": "CHARENTON LE PONT", + "code_postal": "94220", + "coordonnees_gps": [ + 48.8228084978, + 2.40760915477 + ], + "libelle_d_acheminement": "CHARENTON LE PONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40760915477, + 48.8228084978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4ef2d78c08ad33b3b1f4f5d1cac85a9c69b6150", + "fields": { + "code_commune_insee": "94028", + "nom_de_la_commune": "CRETEIL", + "code_postal": "94000", + "coordonnees_gps": [ + 48.7837401836, + 2.45463530415 + ], + "libelle_d_acheminement": "CRETEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45463530415, + 48.7837401836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "681b5c1c932df555a5c3eccc951c93cc84ab9159", + "fields": { + "code_commune_insee": "94037", + "nom_de_la_commune": "GENTILLY", + "code_postal": "94250", + "coordonnees_gps": [ + 48.8132044389, + 2.34420659702 + ], + "libelle_d_acheminement": "GENTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34420659702, + 48.8132044389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "586d7a5ccbd372adeda02c274329c51162a6600c", + "fields": { + "code_commune_insee": "94053", + "nom_de_la_commune": "NOISEAU", + "code_postal": "94880", + "coordonnees_gps": [ + 48.774315467, + 2.55542375351 + ], + "libelle_d_acheminement": "NOISEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55542375351, + 48.774315467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b99de6f86df809e1ead11b4aaee2170eca377ec", + "fields": { + "code_commune_insee": "94060", + "nom_de_la_commune": "LA QUEUE EN BRIE", + "code_postal": "94510", + "coordonnees_gps": [ + 48.7775866104, + 2.58385577608 + ], + "libelle_d_acheminement": "LA QUEUE EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58385577608, + 48.7775866104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a5f29ff4508964dd09feb92c3eb37d88dcc4b9c", + "fields": { + "code_commune_insee": "94065", + "nom_de_la_commune": "RUNGIS", + "code_postal": "94150", + "coordonnees_gps": [ + 48.7494821504, + 2.35281832827 + ], + "libelle_d_acheminement": "RUNGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35281832827, + 48.7494821504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "863111cffcecc780b60f4526e041ce22c11dc8a8", + "fields": { + "code_commune_insee": "94074", + "nom_de_la_commune": "VALENTON", + "code_postal": "94460", + "coordonnees_gps": [ + 48.752872402, + 2.46129479573 + ], + "libelle_d_acheminement": "VALENTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46129479573, + 48.752872402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d62e796a04095901a027c4f31abaf14e44c9fa2", + "fields": { + "code_commune_insee": "94080", + "nom_de_la_commune": "VINCENNES", + "code_postal": "94300", + "coordonnees_gps": [ + 48.8473732045, + 2.43798650741 + ], + "libelle_d_acheminement": "VINCENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43798650741, + 48.8473732045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "420a9d37414447d2681f79e8edbcdeb70217b691", + "fields": { + "code_commune_insee": "94081", + "nom_de_la_commune": "VITRY SUR SEINE", + "code_postal": "94400", + "coordonnees_gps": [ + 48.7882828307, + 2.39412680533 + ], + "libelle_d_acheminement": "VITRY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39412680533, + 48.7882828307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f9b25fdddaf5bc9ee8babcd81f3eb501575453a", + "fields": { + "code_commune_insee": "95018", + "nom_de_la_commune": "ARGENTEUIL", + "code_postal": "95100", + "coordonnees_gps": [ + 48.9511344629, + 2.2410409502 + ], + "libelle_d_acheminement": "ARGENTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2410409502, + 48.9511344629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9caf6666bfbb5ca0eee40f428d75a819f27d0c8", + "fields": { + "code_commune_insee": "95026", + "nom_de_la_commune": "ASNIERES SUR OISE", + "code_postal": "95270", + "coordonnees_gps": [ + 49.1407338587, + 2.3800597257 + ], + "libelle_d_acheminement": "ASNIERES SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3800597257, + 49.1407338587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbb742052d6a866947d90cc7989a7b40a5a60aeb", + "fields": { + "code_commune_insee": "95051", + "nom_de_la_commune": "BEAUCHAMP", + "code_postal": "95250", + "coordonnees_gps": [ + 49.0148746005, + 2.19223334805 + ], + "libelle_d_acheminement": "BEAUCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19223334805, + 49.0148746005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8840f03efc00a4861a8f180b9db6f345af76ca56", + "fields": { + "code_commune_insee": "95058", + "nom_de_la_commune": "BERNES SUR OISE", + "code_postal": "95340", + "coordonnees_gps": [ + 49.165413332, + 2.3012763367 + ], + "libelle_d_acheminement": "BERNES SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3012763367, + 49.165413332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8518e4c330d000caf4952cd7dee9df421a7163a", + "fields": { + "code_commune_insee": "95094", + "nom_de_la_commune": "BOUQUEVAL", + "code_postal": "95720", + "coordonnees_gps": [ + 49.0223417404, + 2.42997422795 + ], + "libelle_d_acheminement": "BOUQUEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42997422795, + 49.0223417404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65d15d7a49b369865fe7b1bfe20825af27bf4295", + "fields": { + "code_commune_insee": "95101", + "nom_de_la_commune": "BRAY ET LU", + "code_postal": "95710", + "coordonnees_gps": [ + 49.1421953145, + 1.66575656789 + ], + "libelle_d_acheminement": "BRAY ET LU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66575656789, + 49.1421953145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a1cf9fa5612d0285e4b8302bf8e41813bbbaebb", + "fields": { + "code_commune_insee": "95102", + "nom_de_la_commune": "BREANCON", + "code_postal": "95640", + "coordonnees_gps": [ + 49.1493481193, + 2.02307108872 + ], + "libelle_d_acheminement": "BREANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02307108872, + 49.1493481193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "068238aeef5750c8a9dd73107176ae99d87d71a5", + "fields": { + "code_commune_insee": "95116", + "nom_de_la_commune": "BRUYERES SUR OISE", + "code_postal": "95820", + "coordonnees_gps": [ + 49.1610125293, + 2.32878300621 + ], + "libelle_d_acheminement": "BRUYERES SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32878300621, + 49.1610125293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f6c240dbb1499cde8b4f534bf0a1b8c18fa35cc", + "fields": { + "code_commune_insee": "95119", + "nom_de_la_commune": "BUHY", + "code_postal": "95770", + "coordonnees_gps": [ + 49.1917501414, + 1.70277550581 + ], + "libelle_d_acheminement": "BUHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70277550581, + 49.1917501414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33a9cc3d08b4293125443acc318eeab0ab73fc71", + "fields": { + "code_commune_insee": "95142", + "nom_de_la_commune": "CHARS", + "code_postal": "95750", + "coordonnees_gps": [ + 49.1576020656, + 1.93153133198 + ], + "libelle_d_acheminement": "CHARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93153133198, + 49.1576020656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e7a7be4b3e25d9dd4ba5f8e2320f021470b4b52", + "fields": { + "code_commune_insee": "95144", + "nom_de_la_commune": "CHATENAY EN FRANCE", + "code_postal": "95190", + "coordonnees_gps": [ + 49.0649154148, + 2.46274737647 + ], + "libelle_d_acheminement": "CHATENAY EN FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46274737647, + 49.0649154148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1a1646882b7d4d14ee0854dbd8a3424fecc28b8", + "fields": { + "code_commune_insee": "95166", + "nom_de_la_commune": "CLERY EN VEXIN", + "code_postal": "95420", + "coordonnees_gps": [ + 49.1319286241, + 1.8481642148 + ], + "libelle_d_acheminement": "CLERY EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8481642148, + 49.1319286241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeb231e82073711f7d188646d196781882cf84d4", + "fields": { + "code_commune_insee": "95212", + "nom_de_la_commune": "EPIAIS LES LOUVRES", + "code_postal": "95380", + "coordonnees_gps": [ + 49.030193287, + 2.54884090855 + ], + "libelle_d_acheminement": "EPIAIS LES LOUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54884090855, + 49.030193287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55cbe11884d3e96baf9c0732371057cae6170e9f", + "fields": { + "code_commune_insee": "95218", + "nom_de_la_commune": "ERAGNY", + "code_postal": "95610", + "coordonnees_gps": [ + 49.0204587496, + 2.10136635847 + ], + "libelle_d_acheminement": "ERAGNY SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10136635847, + 49.0204587496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aea3775f9406e8a0d89f011559b60ad280c5dd1", + "fields": { + "code_commune_insee": "95250", + "nom_de_la_commune": "FOSSES", + "code_postal": "95470", + "coordonnees_gps": [ + 49.1000437966, + 2.49906495383 + ], + "libelle_d_acheminement": "FOSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49906495383, + 49.1000437966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf7a6c633e7454fe1f16d6420129c5e3fca7e806", + "fields": { + "code_commune_insee": "95298", + "nom_de_la_commune": "HARAVILLIERS", + "code_postal": "95640", + "coordonnees_gps": [ + 49.1752644516, + 2.03713061027 + ], + "libelle_d_acheminement": "HARAVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03713061027, + 49.1752644516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d41fd051aa2ca053f9b851c09184892823916eb9", + "fields": { + "code_commune_insee": "95301", + "nom_de_la_commune": "HAUTE ISLE", + "code_postal": "95780", + "coordonnees_gps": [ + 49.0827306409, + 1.66281760836 + ], + "libelle_d_acheminement": "HAUTE ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66281760836, + 49.0827306409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20cae53fcb323d41892fae3378ff11ed0029a4a5", + "fields": { + "code_commune_insee": "95323", + "nom_de_la_commune": "JOUY LE MOUTIER", + "code_postal": "95280", + "coordonnees_gps": [ + 49.0113625056, + 2.03408317867 + ], + "libelle_d_acheminement": "JOUY LE MOUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03408317867, + 49.0113625056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e51f0a3db79a77df1eacbece4b51df8f1e6d8bb7", + "fields": { + "code_commune_insee": "95331", + "nom_de_la_commune": "LASSY", + "code_postal": "95270", + "coordonnees_gps": [ + 49.0949281199, + 2.4378486193 + ], + "libelle_d_acheminement": "LASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4378486193, + 49.0949281199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcb332035339fbfcd6448ddad0ab4a6fbaedc601", + "fields": { + "code_commune_insee": "95348", + "nom_de_la_commune": "LONGUESSE", + "code_postal": "95450", + "coordonnees_gps": [ + 49.0616626709, + 1.92659421162 + ], + "libelle_d_acheminement": "LONGUESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92659421162, + 49.0616626709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ee8e0306b911dc38cf60b50eeb80aa5f37bd0b7", + "fields": { + "code_commune_insee": "95392", + "nom_de_la_commune": "MERIEL", + "code_postal": "95630", + "coordonnees_gps": [ + 49.0771587262, + 2.21325051405 + ], + "libelle_d_acheminement": "MERIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21325051405, + 49.0771587262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3007bcc5d33f62218a6b928fabf624f66f06dfdb", + "fields": { + "code_commune_insee": "95409", + "nom_de_la_commune": "MOISSELLES", + "code_postal": "95570", + "coordonnees_gps": [ + 49.0459598728, + 2.33744939306 + ], + "libelle_d_acheminement": "MOISSELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33744939306, + 49.0459598728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "037097cf7d6f872b95f407b44ab1e5b68485a346", + "fields": { + "code_commune_insee": "95429", + "nom_de_la_commune": "MONTREUIL SUR EPTE", + "code_postal": "95770", + "coordonnees_gps": [ + 49.1704950487, + 1.68615384906 + ], + "libelle_d_acheminement": "MONTREUIL SUR EPTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68615384906, + 49.1704950487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5c54776188d86f67d179442ab5a4ff21cab90f8", + "fields": { + "code_commune_insee": "95430", + "nom_de_la_commune": "MONTSOULT", + "code_postal": "95560", + "coordonnees_gps": [ + 49.0715830247, + 2.30381480542 + ], + "libelle_d_acheminement": "MONTSOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30381480542, + 49.0715830247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9896f19033ec7c0fc3e1aeb8f15dd8a5b5f9969a", + "fields": { + "code_commune_insee": "95452", + "nom_de_la_commune": "NOINTEL", + "code_postal": "95590", + "coordonnees_gps": [ + 49.1288691946, + 2.29434375998 + ], + "libelle_d_acheminement": "NOINTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29434375998, + 49.1288691946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e82c23fac0ef64a1dcacd98638e279e4c0d0594", + "fields": { + "code_commune_insee": "95483", + "nom_de_la_commune": "LE PERCHAY", + "code_postal": "95450", + "coordonnees_gps": [ + 49.1164053302, + 1.92739087092 + ], + "libelle_d_acheminement": "LE PERCHAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92739087092, + 49.1164053302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "894dc9902d9315259c7838de393ccdcbefefa3ff", + "fields": { + "code_commune_insee": "95489", + "nom_de_la_commune": "PISCOP", + "code_postal": "95350", + "coordonnees_gps": [ + 49.0165874672, + 2.34203473029 + ], + "libelle_d_acheminement": "PISCOP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34203473029, + 49.0165874672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3529f9be26dd3872dd4aee997676e98cc00f9008", + "fields": { + "code_commune_insee": "95500", + "nom_de_la_commune": "PONTOISE", + "code_postal": "95000", + "coordonnees_gps": [ + 49.0513737853, + 2.09487928948 + ], + "libelle_d_acheminement": "PONTOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09487928948, + 49.0513737853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb1947ba9e466a85aba51dabc2eaebf6d16b0495", + "fields": { + "code_commune_insee": "95523", + "nom_de_la_commune": "LA ROCHE GUYON", + "code_postal": "95780", + "coordonnees_gps": [ + 49.0874855412, + 1.63442620986 + ], + "libelle_d_acheminement": "LA ROCHE GUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63442620986, + 49.0874855412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1717d98645891283d4fd2cecaea81f8e7bab02ec", + "fields": { + "code_commune_insee": "95535", + "nom_de_la_commune": "SAGY", + "code_postal": "95450", + "coordonnees_gps": [ + 49.0526461167, + 1.96852121634 + ], + "libelle_d_acheminement": "SAGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96852121634, + 49.0526461167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49e30f2abe96479e25147efc51922e9877243fca", + "fields": { + "code_commune_insee": "95541", + "nom_de_la_commune": "ST CLAIR SUR EPTE", + "code_postal": "95770", + "coordonnees_gps": [ + 49.2131541909, + 1.70318156018 + ], + "libelle_d_acheminement": "ST CLAIR SUR EPTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70318156018, + 49.2131541909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0b13052373aae4c2ed66cd2d778bee1da8b581f", + "fields": { + "code_commune_insee": "95566", + "nom_de_la_commune": "ST MARTIN DU TERTRE", + "code_postal": "95270", + "coordonnees_gps": [ + 49.1039330244, + 2.33445740142 + ], + "libelle_d_acheminement": "ST MARTIN DU TERTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33445740142, + 49.1039330244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dc8d2b3664fb1b5b73eefc12629bc8e43972705", + "fields": { + "code_commune_insee": "95594", + "nom_de_la_commune": "SEUGY", + "code_postal": "95270", + "coordonnees_gps": [ + 49.1230209321, + 2.39479551154 + ], + "libelle_d_acheminement": "SEUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39479551154, + 49.1230209321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0744e8840a2230c71702446e417bf3c5c43c4b9b", + "fields": { + "code_commune_insee": "95607", + "nom_de_la_commune": "TAVERNY", + "code_postal": "95150", + "coordonnees_gps": [ + 49.0267316203, + 2.22116067166 + ], + "libelle_d_acheminement": "TAVERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22116067166, + 49.0267316203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f509401b3989e9234832a5e44db75f8e4c930fac", + "fields": { + "code_commune_insee": "95627", + "nom_de_la_commune": "VALLANGOUJARD", + "code_postal": "95810", + "coordonnees_gps": [ + 49.1340749867, + 2.10393344842 + ], + "libelle_d_acheminement": "VALLANGOUJARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10393344842, + 49.1340749867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3b58b58698d4f08e854df4ea70a930a8e17deb6", + "fields": { + "code_commune_insee": "95658", + "nom_de_la_commune": "VIGNY", + "code_postal": "95450", + "coordonnees_gps": [ + 49.080165557, + 1.92992323682 + ], + "libelle_d_acheminement": "VIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92992323682, + 49.080165557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1120453a2691fc88e5108d9db2e80f848eb14dc", + "fields": { + "code_commune_insee": "95680", + "nom_de_la_commune": "VILLIERS LE BEL", + "code_postal": "95400", + "coordonnees_gps": [ + 49.0084494157, + 2.40385604039 + ], + "libelle_d_acheminement": "VILLIERS LE BEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40385604039, + 49.0084494157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42a7201ce1ae4c206776ac440bd8bc6a10aaca37", + "fields": { + "code_commune_insee": "95690", + "nom_de_la_commune": "WY DIT JOLI VILLAGE", + "code_postal": "95420", + "coordonnees_gps": [ + 49.0958197758, + 1.82502883308 + ], + "libelle_d_acheminement": "WY DIT JOLI VILLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82502883308, + 49.0958197758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2ff5c719331198fd819f79af5a8ae3f5b82e43b", + "fields": { + "code_commune_insee": "97101", + "nom_de_la_commune": "LES ABYMES", + "code_postal": "97139", + "coordonnees_gps": [ + 16.2727794035, + -61.5017044974 + ], + "libelle_d_acheminement": "LES ABYMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.5017044974, + 16.2727794035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6eb165be8e98a26b4926bd917d49e504a7db46ba", + "fields": { + "code_commune_insee": "97105", + "nom_de_la_commune": "BASSE TERRE", + "code_postal": "97100", + "coordonnees_gps": [ + 16.0004645662, + -61.7281032959 + ], + "libelle_d_acheminement": "BASSE TERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.7281032959, + 16.0004645662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a36286cf0f75a9c19be29911bc36162d2de5a6b2", + "fields": { + "code_commune_insee": "97106", + "nom_de_la_commune": "BOUILLANTE", + "code_postal": "97125", + "coordonnees_gps": [ + 16.1437220237, + -61.754179331 + ], + "libelle_d_acheminement": "BOUILLANTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.754179331, + 16.1437220237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1857ad23af63650d94f5bd18168561c4d3d0698", + "fields": { + "ligne_5": "STE MARIE", + "code_commune_insee": "97107", + "libelle_d_acheminement": "CAPESTERRE BELLE EAU", + "code_postal": "97130", + "nom_de_la_commune": "CAPESTERRE BELLE EAU", + "coordonnees_gps": [ + 16.0553416101, + -61.6117007507 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.6117007507, + 16.0553416101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10fec08fe380d52c95f8a6ac7b3af7b61974f990", + "fields": { + "code_commune_insee": "97110", + "nom_de_la_commune": "LA DESIRADE", + "code_postal": "97127", + "coordonnees_gps": [ + 16.311751596, + -61.0526890523 + ], + "libelle_d_acheminement": "LA DESIRADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.0526890523, + 16.311751596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acbfa85ef710a83cef6ace3eaf354e219b3c7921", + "fields": { + "code_commune_insee": "97113", + "nom_de_la_commune": "LE GOSIER", + "code_postal": "97190", + "coordonnees_gps": [ + 16.2252192032, + -61.4698776652 + ], + "libelle_d_acheminement": "LE GOSIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.4698776652, + 16.2252192032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "453667bc31cd90d80a5201aab21f0a8664c6c9e0", + "fields": { + "code_commune_insee": "97114", + "nom_de_la_commune": "GOYAVE", + "code_postal": "97128", + "coordonnees_gps": [ + 16.1216759478, + -61.6138081813 + ], + "libelle_d_acheminement": "GOYAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.6138081813, + 16.1216759478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e05f88d877f6a57e2e811f0312f900702b2b55d4", + "fields": { + "code_commune_insee": "97124", + "nom_de_la_commune": "ST CLAUDE", + "code_postal": "97120", + "coordonnees_gps": [ + 16.033779046, + -61.690101603 + ], + "libelle_d_acheminement": "ST CLAUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.690101603, + 16.033779046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b28734f9261498998cb9f0b5906add1496295eb", + "fields": { + "code_commune_insee": "97125", + "nom_de_la_commune": "ST FRANCOIS", + "code_postal": "97118", + "coordonnees_gps": [ + 16.2732452923, + -61.2816382728 + ], + "libelle_d_acheminement": "ST FRANCOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.2816382728, + 16.2732452923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "775ac40c35bf5290a224756191391d425abb50bb", + "fields": { + "code_commune_insee": "97126", + "nom_de_la_commune": "ST LOUIS", + "code_postal": "97134", + "coordonnees_gps": [ + 15.9659560448, + -61.275417015 + ], + "libelle_d_acheminement": "ST LOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.275417015, + 15.9659560448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc611f577a375e205bb6acd8e79f75b67426d8ad", + "fields": { + "code_commune_insee": "97201", + "nom_de_la_commune": "L AJOUPA BOUILLON", + "code_postal": "97216", + "coordonnees_gps": [ + 14.8142832959, + -61.1230843265 + ], + "libelle_d_acheminement": "L AJOUPA BOUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.1230843265, + 14.8142832959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eac7b95b18f8f7e4d00967b06dd7da24a14609a0", + "fields": { + "code_commune_insee": "97213", + "nom_de_la_commune": "LE LAMENTIN", + "code_postal": "97232", + "coordonnees_gps": [ + 14.6247600105, + -60.9933549815 + ], + "libelle_d_acheminement": "LE LAMENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.9933549815, + 14.6247600105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "073a16d7ee752b001d9e66a5b22457e8b52d8699", + "fields": { + "code_commune_insee": "97218", + "nom_de_la_commune": "LE MORNE ROUGE", + "code_postal": "97260", + "coordonnees_gps": [ + 14.7694146135, + -61.1206407775 + ], + "libelle_d_acheminement": "LE MORNE ROUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.1206407775, + 14.7694146135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aab9d6be10974955fcf6d55a009e23a14ec60ff", + "fields": { + "code_commune_insee": "97225", + "nom_de_la_commune": "ST PIERRE", + "code_postal": "97250", + "coordonnees_gps": [ + 14.7748596787, + -61.1724905513 + ], + "libelle_d_acheminement": "ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.1724905513, + 14.7748596787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5ed20423068fe246d56858587c40475755ce452", + "fields": { + "code_commune_insee": "97230", + "nom_de_la_commune": "LA TRINITE", + "code_postal": "97220", + "coordonnees_gps": [ + 14.7386362443, + -60.9496306893 + ], + "libelle_d_acheminement": "LA TRINITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.9496306893, + 14.7386362443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f4b7cc0eb216e1a2fe3eed01dbf3323e4f66cc0", + "fields": { + "code_commune_insee": "97233", + "nom_de_la_commune": "LE MORNE VERT", + "code_postal": "97226", + "coordonnees_gps": [ + 14.7038196531, + -61.1353176501 + ], + "libelle_d_acheminement": "LE MORNE VERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.1353176501, + 14.7038196531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1b55f14bd29e040011d1b02ca246b90d7df8ea4", + "fields": { + "code_commune_insee": "97304", + "nom_de_la_commune": "KOUROU", + "code_postal": "97310", + "coordonnees_gps": [ + 4.93360677012, + -52.7663314416 + ], + "libelle_d_acheminement": "KOUROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.7663314416, + 4.93360677012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3f591d409649cd91e1554f5cbbf822a0f40dd00", + "fields": { + "code_commune_insee": "97305", + "nom_de_la_commune": "MACOURIA", + "code_postal": "97355", + "coordonnees_gps": [ + 4.98238462171, + -52.5084392425 + ], + "libelle_d_acheminement": "MACOURIA TONATE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.5084392425, + 4.98238462171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a16cb63a2a9b4d0288db3fa4d32725491b7dc26", + "fields": { + "ligne_5": "JAVOUHEY", + "code_commune_insee": "97306", + "libelle_d_acheminement": "MANA", + "code_postal": "97318", + "nom_de_la_commune": "MANA", + "coordonnees_gps": [ + 4.98285747902, + -53.6480364932 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.6480364932, + 4.98285747902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28af248193b46ff49edeb19c9460611a65505573", + "fields": { + "code_commune_insee": "97306", + "nom_de_la_commune": "MANA", + "code_postal": "97360", + "coordonnees_gps": [ + 4.98285747902, + -53.6480364932 + ], + "libelle_d_acheminement": "MANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.6480364932, + 4.98285747902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "989405895e7818f048268a1b70b05e64824acc10", + "fields": { + "ligne_5": "CACAO", + "code_commune_insee": "97310", + "libelle_d_acheminement": "ROURA", + "code_postal": "97352", + "nom_de_la_commune": "ROURA", + "coordonnees_gps": [ + 4.46468598944, + -52.5128388412 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.5128388412, + 4.46468598944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f6031fb969f2ad4f2f0363f16963fd30d3f3d94", + "fields": { + "code_commune_insee": "97356", + "nom_de_la_commune": "CAMOPI", + "code_postal": "97330", + "coordonnees_gps": [ + 2.83799126092, + -52.796516306 + ], + "libelle_d_acheminement": "CAMOPI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.796516306, + 2.83799126092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4294cb01cf730a2950b5771e9b02ca2638ddfb5f", + "fields": { + "code_commune_insee": "97402", + "nom_de_la_commune": "BRAS PANON", + "code_postal": "97412", + "coordonnees_gps": [ + -21.0233281862, + 55.6195846061 + ], + "libelle_d_acheminement": "BRAS PANON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.6195846061, + -21.0233281862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e52111beccaaaef4c49e69880c8ffc26de48b12", + "fields": { + "ligne_5": "RIVIERE DU MAT", + "code_commune_insee": "97402", + "libelle_d_acheminement": "BRAS PANON", + "code_postal": "97412", + "nom_de_la_commune": "BRAS PANON", + "coordonnees_gps": [ + -21.0233281862, + 55.6195846061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.6195846061, + -21.0233281862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "485451e8e9bce2c24d9419ec1eae00c732dce23b", + "fields": { + "code_commune_insee": "97405", + "nom_de_la_commune": "PETITE ILE", + "code_postal": "97429", + "coordonnees_gps": [ + -21.3401068981, + 55.5687050843 + ], + "libelle_d_acheminement": "PETITE ILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5687050843, + -21.3401068981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b95237b34b6853d54614d0700ce48608064b9b08", + "fields": { + "ligne_5": "CAMBUSTON", + "code_commune_insee": "97409", + "libelle_d_acheminement": "ST ANDRE", + "code_postal": "97440", + "nom_de_la_commune": "ST ANDRE", + "coordonnees_gps": [ + -20.9630406732, + 55.6427328786 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.6427328786, + -20.9630406732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee38219fd23fd7af1afab383ae65a29b082dfa65", + "fields": { + "ligne_5": "LA MONTAGNE", + "code_commune_insee": "97411", + "libelle_d_acheminement": "ST DENIS", + "code_postal": "97417", + "nom_de_la_commune": "ST DENIS", + "coordonnees_gps": [ + -20.9329708192, + 55.446867167 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.446867167, + -20.9329708192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bada037c3d75376342130e886db1daad0def2da", + "fields": { + "ligne_5": "ST BERNARD", + "code_commune_insee": "97411", + "libelle_d_acheminement": "ST DENIS", + "code_postal": "97417", + "nom_de_la_commune": "ST DENIS", + "coordonnees_gps": [ + -20.9329708192, + 55.446867167 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.446867167, + -20.9329708192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "521cdf6cac0d5fdca106a8051079fe3e83702a5e", + "fields": { + "ligne_5": "VINCENDO", + "code_commune_insee": "97412", + "libelle_d_acheminement": "ST JOSEPH", + "code_postal": "97480", + "nom_de_la_commune": "ST JOSEPH", + "coordonnees_gps": [ + -21.3063550443, + 55.6420686506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.6420686506, + -21.3063550443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45491a1e3540c6c4a5fd2c3a6ae3039567a1d1b3", + "fields": { + "ligne_5": "BERNICA", + "code_commune_insee": "97415", + "libelle_d_acheminement": "ST PAUL", + "code_postal": "97435", + "nom_de_la_commune": "ST PAUL", + "coordonnees_gps": [ + -21.0445317522, + 55.3223334298 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3223334298, + -21.0445317522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "860ef94fb7c868558e994566618a25ce0197ff2c", + "fields": { + "ligne_5": "BELLEMENE", + "code_commune_insee": "97415", + "libelle_d_acheminement": "ST PAUL", + "code_postal": "97460", + "nom_de_la_commune": "ST PAUL", + "coordonnees_gps": [ + -21.0445317522, + 55.3223334298 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3223334298, + -21.0445317522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7b7e2ff8b986c712a9d43ac0789f67a4960bf86", + "fields": { + "ligne_5": "RIVIERE DES PLUIES", + "code_commune_insee": "97418", + "libelle_d_acheminement": "STE MARIE", + "code_postal": "97438", + "nom_de_la_commune": "STE MARIE", + "coordonnees_gps": [ + -20.9470588515, + 55.5303555863 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5303555863, + -20.9470588515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed4cc265b5cc7a26e3bcfb2955997c21c4da60cb", + "fields": { + "ligne_5": "HELL BOURG", + "code_commune_insee": "97421", + "libelle_d_acheminement": "SALAZIE", + "code_postal": "97433", + "nom_de_la_commune": "SALAZIE", + "coordonnees_gps": [ + -21.0469188863, + 55.5082381926 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5082381926, + -21.0469188863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a8842cb152d0eb7171332498630d5d7968fd30f", + "fields": { + "ligne_5": "LES TROIS MARES", + "code_commune_insee": "97422", + "libelle_d_acheminement": "LE TAMPON", + "code_postal": "97430", + "nom_de_la_commune": "LE TAMPON", + "coordonnees_gps": [ + -21.223274585, + 55.5584875266 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5584875266, + -21.223274585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04445f2fa3f543651975948c71c013bd0d7399b1", + "fields": { + "ligne_5": "DZOUMOGNE", + "code_commune_insee": "97602", + "libelle_d_acheminement": "BANDRABOUA", + "code_postal": "97650", + "nom_de_la_commune": "BANDRABOUA", + "coordonnees_gps": [ + -12.7232292527, + 45.1181212208 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1181212208, + -12.7232292527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f45ba3bf2949f7654ab241b47930262a4238463", + "fields": { + "ligne_5": "KAWENI", + "code_commune_insee": "97611", + "libelle_d_acheminement": "MAMOUDZOU", + "code_postal": "97600", + "nom_de_la_commune": "MAMOUDZOU", + "coordonnees_gps": [ + -12.7899979586, + 45.1932456026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1932456026, + -12.7899979586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fdc601dadc4bd375b2316fd17a32303b1a652ca", + "fields": { + "code_commune_insee": "97613", + "nom_de_la_commune": "M TSANGAMOUJI", + "code_postal": "97650", + "coordonnees_gps": [ + -12.7513099309, + 45.0871696871 + ], + "libelle_d_acheminement": "M TSANGAMOUJI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.0871696871, + -12.7513099309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff25473cfa05613275e2ef209ea7573dbc436970", + "fields": { + "code_commune_insee": "97616", + "nom_de_la_commune": "SADA", + "code_postal": "97640", + "coordonnees_gps": [ + -12.8611649609, + 45.1185503145 + ], + "libelle_d_acheminement": "SADA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1185503145, + -12.8611649609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a47a41d6e00aa70fbe64fc2e68fce92d43443c9", + "fields": { + "ligne_5": "COMBANI", + "code_commune_insee": "97617", + "libelle_d_acheminement": "TSINGONI", + "code_postal": "97680", + "nom_de_la_commune": "TSINGONI", + "coordonnees_gps": [ + -12.7821666736, + 45.1344279083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1344279083, + -12.7821666736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c2755f040fe8bda0f8421aa577d704a0eef1761", + "fields": { + "nom_de_la_commune": "ST MARTIN", + "code_postal": "97150", + "code_commune_insee": "97801", + "libelle_d_acheminement": "ST MARTIN" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93bd35380941de8319ad00afdb668dce9806230b", + "fields": { + "nom_de_la_commune": "ANAA", + "ligne_5": "ANAA", + "code_postal": "98760", + "code_commune_insee": "98711", + "libelle_d_acheminement": "TUUHORA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "859c59eb9ec36dade1a188db6cfd627ca848c606", + "fields": { + "nom_de_la_commune": "FAKARAVA", + "ligne_5": "FAKARAVA", + "code_postal": "98790", + "code_commune_insee": "98716", + "libelle_d_acheminement": "MOTU TAPU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c93f5fef6cb24959427c3b594daf39c6bc0da09", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98755", + "code_commune_insee": "98719", + "libelle_d_acheminement": "AUKENA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9eee37e5b79108c5ca25e97bcdf8e8a0b233198", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98755", + "code_commune_insee": "98719", + "libelle_d_acheminement": "MAKAROA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3181174937a60d2da21099ae03930f9052c67b1b", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98792", + "code_commune_insee": "98719", + "libelle_d_acheminement": "TENARUNGA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eb3c4a55d948ffacc99cd05546ffa1de9bd8fcb", + "fields": { + "nom_de_la_commune": "HAO", + "ligne_5": "HAO", + "code_postal": "98790", + "code_commune_insee": "98720", + "libelle_d_acheminement": "HEREHRETUE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28315c2ca39f8a834fd63754a6377b086d16baa0", + "fields": { + "nom_de_la_commune": "HAO", + "ligne_5": "HAO", + "code_postal": "98790", + "code_commune_insee": "98720", + "libelle_d_acheminement": "PARAOA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "664b94d6ad777e83090b18dbaf4904dadddfa470", + "fields": { + "nom_de_la_commune": "HAO", + "ligne_5": "HAO", + "code_postal": "98790", + "code_commune_insee": "98720", + "libelle_d_acheminement": "AHUNUI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89dabec755f4582950e0f49cc63b377cb3fac36d", + "fields": { + "nom_de_la_commune": "HIKUERU", + "ligne_5": "HIKUERU", + "code_postal": "98790", + "code_commune_insee": "98721", + "libelle_d_acheminement": "TEPEPERU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac6669f3c2808523901fac08b4dfb63fefcebde7", + "fields": { + "nom_de_la_commune": "HIKUERU", + "ligne_5": "HIKUERU", + "code_postal": "98790", + "code_commune_insee": "98721", + "libelle_d_acheminement": "MAHETIKA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4917fbeddd6aee8dc128896caa69226d3af835c", + "fields": { + "nom_de_la_commune": "HITIAA O TE RA", + "ligne_5": "HITIAA O TE RA", + "code_postal": "98707", + "code_commune_insee": "98722", + "libelle_d_acheminement": "PAPENOO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1eecccb9f385f83dd7a20c2667c3e8673566cb1", + "fields": { + "nom_de_la_commune": "HIVA OA", + "ligne_5": "HIVA OA", + "code_postal": "98741", + "code_commune_insee": "98723", + "libelle_d_acheminement": "EIAONE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e500756af40c58e3bae1dab882d2b8587b0e084b", + "fields": { + "nom_de_la_commune": "HIVA OA", + "ligne_5": "HIVA OA", + "code_postal": "98741", + "code_commune_insee": "98723", + "libelle_d_acheminement": "MOTU UA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b644b74f43c11717647c58eba6126f4bdcfbabd", + "fields": { + "nom_de_la_commune": "HIVA OA", + "ligne_5": "HIVA OA", + "code_postal": "98741", + "code_commune_insee": "98723", + "libelle_d_acheminement": "NAHOE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ec0291b42e546c6e090bbc72dd3b04ec607572b", + "fields": { + "nom_de_la_commune": "HIVA OA", + "ligne_5": "HIVA OA", + "code_postal": "98741", + "code_commune_insee": "98723", + "libelle_d_acheminement": "PAUMAU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "941d3140739c68a17ab549b8f7333369ce1d84df", + "fields": { + "nom_de_la_commune": "HUAHINE", + "ligne_5": "HUAHINE", + "code_postal": "98731", + "code_commune_insee": "98724", + "libelle_d_acheminement": "MAROE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35cecf683a9cf3e3f42f516c2b5d11a6f59d6949", + "fields": { + "nom_de_la_commune": "HUAHINE", + "ligne_5": "HUAHINE", + "code_postal": "98731", + "code_commune_insee": "98724", + "libelle_d_acheminement": "PAREA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11c35aa8e0b91fbbb6fad97e153dda37f69c4c5d", + "fields": { + "nom_de_la_commune": "MANIHI", + "ligne_5": "MANIHI", + "code_postal": "98771", + "code_commune_insee": "98727", + "libelle_d_acheminement": "TURIPAOA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6025953759af030e0420416ec172d93a1c98c2da", + "fields": { + "nom_de_la_commune": "MAUPITI", + "ligne_5": "MAUPITI", + "code_postal": "98732", + "code_commune_insee": "98728", + "libelle_d_acheminement": "MOTU ONE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04465801674c41b66c31293f6eac6451c8ba4268", + "fields": { + "nom_de_la_commune": "MAUPITI", + "ligne_5": "MAUPITI", + "code_postal": "98732", + "code_commune_insee": "98728", + "libelle_d_acheminement": "SCILLY" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b47e6b4db7a004497f82bf8ec053bf5626344638", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98729", + "code_commune_insee": "98729", + "libelle_d_acheminement": "OPUNOHU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e90cfe8fd7f97733b374861ff39078fc1991b4ab", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98729", + "code_commune_insee": "98729", + "libelle_d_acheminement": "PAOPAO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61372b345f9021a7ba616a41edc101985261166b", + "fields": { + "nom_de_la_commune": "NAPUKA", + "ligne_5": "NAPUKA", + "code_postal": "98772", + "code_commune_insee": "98730", + "libelle_d_acheminement": "TEPUKAMARUIA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b10f99bbdfab165790f51c394c526955fac5130", + "fields": { + "nom_de_la_commune": "NUKU HIVA", + "ligne_5": "NUKU HIVA", + "code_postal": "98796", + "code_commune_insee": "98731", + "libelle_d_acheminement": "HATU ITI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "243dc75f053ccf25205f312a75cee4eef2e7da62", + "fields": { + "nom_de_la_commune": "PAPEETE", + "code_postal": "98714", + "code_commune_insee": "98735", + "libelle_d_acheminement": "PAPEETE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "997754547779c4c56b1a8ee3edccf038be00d793", + "fields": { + "nom_de_la_commune": "PIRAE", + "code_postal": "98716", + "code_commune_insee": "98736", + "libelle_d_acheminement": "PIRAE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e8a9fd541e8ad49a49b4a98c0d7a0894c021079", + "fields": { + "nom_de_la_commune": "PUNAAUIA", + "code_postal": "98703", + "code_commune_insee": "98738", + "libelle_d_acheminement": "PUNAAUIA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "676e0e2205b7160b3f2659c03ced8de9b7c730c4", + "fields": { + "nom_de_la_commune": "PUNAAUIA", + "code_postal": "98718", + "code_commune_insee": "98738", + "libelle_d_acheminement": "PUNAAUIA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55f0ede865b4fd5671b5e53caec19e483d85485f", + "fields": { + "nom_de_la_commune": "RAIVAVAE", + "ligne_5": "RAIVAVAE", + "code_postal": "98750", + "code_commune_insee": "98739", + "libelle_d_acheminement": "VAIURU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e34526b14d34a1286b1c89755bb4baabd9f9ba7", + "fields": { + "nom_de_la_commune": "REAO", + "ligne_5": "REAO", + "code_postal": "98779", + "code_commune_insee": "98742", + "libelle_d_acheminement": "TAPUARAVA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e334709d3e283a58e89d0464bf19ea834ff0da3c", + "fields": { + "nom_de_la_commune": "RIMATARA", + "ligne_5": "RIMATARA", + "code_postal": "98752", + "code_commune_insee": "98743", + "libelle_d_acheminement": "AMARU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "632f5146648662d8ce001ba6cb33c4005ae7ec9a", + "fields": { + "nom_de_la_commune": "RURUTU", + "ligne_5": "RURUTU", + "code_postal": "98753", + "code_commune_insee": "98744", + "libelle_d_acheminement": "HAUTI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5f541867988dc2a38ff5e37a456300821d74ba7", + "fields": { + "nom_de_la_commune": "TAHAA", + "ligne_5": "TAHAA", + "code_postal": "98733", + "code_commune_insee": "98745", + "libelle_d_acheminement": "IRIPAU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de3a065848e17d6c2dd050f5542b22c121bcb8d5", + "fields": { + "nom_de_la_commune": "TAHUATA", + "ligne_5": "TAHUATA", + "code_postal": "98743", + "code_commune_insee": "98746", + "libelle_d_acheminement": "VAITAHU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02b8b948e8063a8a0136d317259f1db54adba31c", + "fields": { + "nom_de_la_commune": "TAIARAPU EST", + "ligne_5": "TAIARAPU EST", + "code_postal": "98721", + "code_commune_insee": "98747", + "libelle_d_acheminement": "PUEU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb9cb8f01d85c9164ee2b0e29f8a8ce6e952e8b9", + "fields": { + "nom_de_la_commune": "TAIARAPU OUEST", + "ligne_5": "TAIARAPU OUEST", + "code_postal": "98725", + "code_commune_insee": "98748", + "libelle_d_acheminement": "VAIRAO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19783fba979e6bb7a15fa958a0fa89523a8b03cb", + "fields": { + "nom_de_la_commune": "TAKAROA", + "ligne_5": "TAKAROA", + "code_postal": "98782", + "code_commune_insee": "98749", + "libelle_d_acheminement": "FAKATOPATERE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e6b6c3de0d7c724b88011331517b2673fc435a1", + "fields": { + "nom_de_la_commune": "TAPUTAPUATEA", + "ligne_5": "TAPUTAPUATEA", + "code_postal": "98735", + "code_commune_insee": "98750", + "libelle_d_acheminement": "AVERA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e9fe41781fe47b469100ec1a2c001d22ea54acd", + "fields": { + "nom_de_la_commune": "TUBUAI", + "ligne_5": "TUBUAI", + "code_postal": "98754", + "code_commune_insee": "98753", + "libelle_d_acheminement": "TAAHUAIA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "697afb2fa6f5b7f31733d2870e70c2d182c66f73", + "fields": { + "nom_de_la_commune": "TUMARAA", + "ligne_5": "TUMARAA", + "code_postal": "98735", + "code_commune_insee": "98754", + "libelle_d_acheminement": "TEVAITOA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c4b4cd49ea4193c2e05555130c75dc1885dffe2", + "fields": { + "nom_de_la_commune": "UA HUKA", + "ligne_5": "UA HUKA", + "code_postal": "98744", + "code_commune_insee": "98756", + "libelle_d_acheminement": "VAIPAEE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcde49b99196b982e5cc10ca28a776e93aa25968", + "fields": { + "nom_de_la_commune": "UA POU", + "ligne_5": "UA POU", + "code_postal": "98745", + "code_commune_insee": "98757", + "libelle_d_acheminement": "HAKAHETAU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae26f6cd6805c0149d63fc490c5aaedc5529165d", + "fields": { + "nom_de_la_commune": "UA POU", + "ligne_5": "UA POU", + "code_postal": "98745", + "code_commune_insee": "98757", + "libelle_d_acheminement": "HAKAHAU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "415c8ac427edfeba60a3ab0df24fa767fc503eff", + "fields": { + "nom_de_la_commune": "UTUROA", + "code_postal": "98735", + "code_commune_insee": "98758", + "libelle_d_acheminement": "UTUROA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c9d249ae57d8cc2410841d9915d40084e02b37f", + "fields": { + "nom_de_la_commune": "CANALA", + "code_postal": "98813", + "code_commune_insee": "98804", + "libelle_d_acheminement": "CANALA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "093f6d0a1ba6efa22eee35d00b3661e17f0a86f9", + "fields": { + "nom_de_la_commune": "FARINO", + "code_postal": "98881", + "code_commune_insee": "98806", + "libelle_d_acheminement": "FARINO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13ed2e6b4d67bdc6ba61a254f30105d40c7214e5", + "fields": { + "nom_de_la_commune": "KAALA GOMEN", + "code_postal": "98817", + "code_commune_insee": "98810", + "libelle_d_acheminement": "KAALA GOMEN" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dadfd8306c2bf7b90c33e76704508f558bcc819f", + "fields": { + "nom_de_la_commune": "LA FOA", + "code_postal": "98880", + "code_commune_insee": "98813", + "libelle_d_acheminement": "LA FOA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c20a8ed71b714803e0dd1fa01f35d6ba7618016b", + "fields": { + "nom_de_la_commune": "LIFOU", + "ligne_5": "LIFOU", + "code_postal": "98885", + "code_commune_insee": "98814", + "libelle_d_acheminement": "MOU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e2b76815351ccb0d5b6d126eb23f0aaf42bb200", + "fields": { + "nom_de_la_commune": "MARE", + "ligne_5": "MARE", + "code_postal": "98828", + "code_commune_insee": "98815", + "libelle_d_acheminement": "TADINE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33b7e309998647ea6477384ac7d7c9689a010797", + "fields": { + "nom_de_la_commune": "MARE", + "ligne_5": "MARE", + "code_postal": "98878", + "code_commune_insee": "98815", + "libelle_d_acheminement": "LA ROCHE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6978a815736897d59633b1c8fd3d57478c37d34", + "fields": { + "nom_de_la_commune": "POINDIMIE", + "code_postal": "98822", + "code_commune_insee": "98822", + "libelle_d_acheminement": "POINDIMIE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8fc2b5e6028c47d16f7a8fa7ff50e088e4a2821", + "fields": { + "nom_de_la_commune": "THIO", + "code_postal": "98829", + "code_commune_insee": "98829", + "libelle_d_acheminement": "THIO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88df389815f018f4a537f1efc71b995faa1e18d5", + "fields": { + "nom_de_la_commune": "VOH", + "code_postal": "98833", + "code_commune_insee": "98831", + "libelle_d_acheminement": "VOH" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "374ee5d680c1d98f11193b918ace83cc14b0be8c", + "fields": { + "nom_de_la_commune": "YATE", + "code_postal": "98834", + "code_commune_insee": "98832", + "libelle_d_acheminement": "YATE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9141819c52af48c869a256b55866d336ac732ba2", + "fields": { + "nom_de_la_commune": "MONACO", + "code_postal": "98000", + "code_commune_insee": "99138", + "libelle_d_acheminement": "MONACO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4e9e9fec6fa37b7b4c0a53985e5238f191d6283", + "fields": { + "code_commune_insee": "01011", + "nom_de_la_commune": "APREMONT", + "code_postal": "01100", + "coordonnees_gps": [ + 46.2054981558, + 5.65781475272 + ], + "libelle_d_acheminement": "APREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65781475272, + 46.2054981558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f884e10ff256b323e21f9f2fdb3950734c9b155", + "fields": { + "code_commune_insee": "01021", + "nom_de_la_commune": "ARS SUR FORMANS", + "code_postal": "01480", + "coordonnees_gps": [ + 45.9934611, + 4.82199649494 + ], + "libelle_d_acheminement": "ARS SUR FORMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82199649494, + 45.9934611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb806d6d171ab03bd9cb7b4379e29e8fc19279d0", + "fields": { + "code_commune_insee": "01028", + "nom_de_la_commune": "BANEINS", + "code_postal": "01990", + "coordonnees_gps": [ + 46.1141214445, + 4.90146475101 + ], + "libelle_d_acheminement": "BANEINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90146475101, + 46.1141214445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf0f295ae47b602c7808c7b167345c3c44e99d47", + "fields": { + "code_commune_insee": "01031", + "nom_de_la_commune": "BELLIGNAT", + "code_postal": "01100", + "coordonnees_gps": [ + 46.2373497134, + 5.6360052884 + ], + "libelle_d_acheminement": "BELLIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6360052884, + 46.2373497134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b2a084a569aee609c0fd4de8b43932787bea176", + "fields": { + "ligne_5": "BELLEGARDE SUR VALSERINE", + "code_commune_insee": "01033", + "libelle_d_acheminement": "VALSERHONE", + "code_postal": "01200", + "nom_de_la_commune": "VALSERHONE", + "coordonnees_gps": [ + 46.1067901755, + 5.83202736464 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83202736464, + 46.1067901755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44301d91ee706677c85b72037716d505de3794c3", + "fields": { + "ligne_5": "VOUVRAY", + "code_commune_insee": "01033", + "libelle_d_acheminement": "VALSERHONE", + "code_postal": "01200", + "nom_de_la_commune": "VALSERHONE", + "coordonnees_gps": [ + 46.1067901755, + 5.83202736464 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83202736464, + 46.1067901755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3a186a0b192eb789285cc4cd7bfed5940f68e77", + "fields": { + "code_commune_insee": "01035", + "nom_de_la_commune": "BELLEYDOUX", + "code_postal": "01130", + "coordonnees_gps": [ + 46.2530316409, + 5.78471723698 + ], + "libelle_d_acheminement": "BELLEYDOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78471723698, + 46.2530316409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fc8b33d4b092e6dae48a53068d9bd64f8b0dcfa", + "fields": { + "code_commune_insee": "01043", + "nom_de_la_commune": "BEYNOST", + "code_postal": "01700", + "coordonnees_gps": [ + 45.8390325448, + 4.99738002182 + ], + "libelle_d_acheminement": "BEYNOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99738002182, + 45.8390325448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97f56da5517bdee1d506c55da55f81de159505ec", + "fields": { + "code_commune_insee": "01046", + "nom_de_la_commune": "BIZIAT", + "code_postal": "01290", + "coordonnees_gps": [ + 46.2266794269, + 4.94084673168 + ], + "libelle_d_acheminement": "BIZIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94084673168, + 46.2266794269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b3b9e046e8996c113968dfaa8717adf5cb85fa1", + "fields": { + "code_commune_insee": "01052", + "nom_de_la_commune": "BOULIGNEUX", + "code_postal": "01330", + "coordonnees_gps": [ + 46.0232774841, + 4.99252709276 + ], + "libelle_d_acheminement": "BOULIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99252709276, + 46.0232774841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a35cdc68f4de02b7357ec12a21e8e209fc4e4978", + "fields": { + "ligne_5": "BROU", + "code_commune_insee": "01053", + "libelle_d_acheminement": "BOURG EN BRESSE", + "code_postal": "01000", + "nom_de_la_commune": "BOURG EN BRESSE", + "coordonnees_gps": [ + 46.2051520382, + 5.24602125501 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24602125501, + 46.2051520382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8167517cb7f79784593b681c02b7ff2246ffcc2", + "fields": { + "code_commune_insee": "01057", + "nom_de_la_commune": "BOZ", + "code_postal": "01190", + "coordonnees_gps": [ + 46.4051688134, + 4.9135797178 + ], + "libelle_d_acheminement": "BOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9135797178, + 46.4051688134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d34389f908a76f2be1e00bc4b75114958f0c1ae", + "fields": { + "code_commune_insee": "01058", + "nom_de_la_commune": "BREGNIER CORDON", + "code_postal": "01300", + "coordonnees_gps": [ + 45.6416854652, + 5.61653371 + ], + "libelle_d_acheminement": "BREGNIER CORDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61653371, + 45.6416854652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95bfb5c824c80f0f46a055ec40b8de3726fbc520", + "fields": { + "ligne_5": "LA LECHERE", + "code_commune_insee": "01062", + "libelle_d_acheminement": "BRESSOLLES", + "code_postal": "01360", + "nom_de_la_commune": "BRESSOLLES", + "coordonnees_gps": [ + 45.869423064, + 5.1009428902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1009428902, + 45.869423064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afe39328daeadce49c202fd8adb75de0b29affa0", + "fields": { + "code_commune_insee": "01065", + "nom_de_la_commune": "BUELLAS", + "code_postal": "01310", + "coordonnees_gps": [ + 46.2104135162, + 5.14487465017 + ], + "libelle_d_acheminement": "BUELLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14487465017, + 46.2104135162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd53fc69aea38d9d2aceba25bcdca81f5d172921", + "fields": { + "ligne_5": "CORGENON", + "code_commune_insee": "01065", + "libelle_d_acheminement": "BUELLAS", + "code_postal": "01310", + "nom_de_la_commune": "BUELLAS", + "coordonnees_gps": [ + 46.2104135162, + 5.14487465017 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14487465017, + 46.2104135162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1b7682cdae36216fae4c9ca34f9c2d91f7b1dcd", + "fields": { + "code_commune_insee": "01072", + "nom_de_la_commune": "CEYZERIAT", + "code_postal": "01250", + "coordonnees_gps": [ + 46.1832170988, + 5.32007207542 + ], + "libelle_d_acheminement": "CEYZERIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32007207542, + 46.1832170988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b46abc7bf1e35efe9f64a83c01a4435b4819c00", + "fields": { + "ligne_5": "PASSIN", + "code_commune_insee": "01079", + "libelle_d_acheminement": "CHAMPAGNE EN VALROMEY", + "code_postal": "01260", + "nom_de_la_commune": "CHAMPAGNE EN VALROMEY", + "coordonnees_gps": [ + 45.9316447397, + 5.69321890072 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69321890072, + 45.9316447397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "566a1c00bf5589394dbaac742f9796dacd5f994e", + "fields": { + "code_commune_insee": "01082", + "nom_de_la_commune": "CHANAY", + "code_postal": "01420", + "coordonnees_gps": [ + 46.005695299, + 5.76893393185 + ], + "libelle_d_acheminement": "CHANAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76893393185, + 46.005695299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43b4de31fcaf14227bfcd7788bad324ec77b5f89", + "fields": { + "code_commune_insee": "01083", + "nom_de_la_commune": "CHANEINS", + "code_postal": "01990", + "coordonnees_gps": [ + 46.0934984191, + 4.85473364691 + ], + "libelle_d_acheminement": "CHANEINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85473364691, + 46.0934984191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41d4fd829d53d5284f3bbeec6b84365b2d3daca9", + "fields": { + "code_commune_insee": "01087", + "nom_de_la_commune": "CHARIX", + "code_postal": "01130", + "coordonnees_gps": [ + 46.1856344066, + 5.6811896084 + ], + "libelle_d_acheminement": "CHARIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6811896084, + 46.1856344066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f13fefba7ed3e46d1108b5b5d74cdb90b6cee13c", + "fields": { + "code_commune_insee": "01094", + "nom_de_la_commune": "CHAVANNES SUR REYSSOUZE", + "code_postal": "01190", + "coordonnees_gps": [ + 46.4379785193, + 5.00693749662 + ], + "libelle_d_acheminement": "CHAVANNES SUR REYSSOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00693749662, + 46.4379785193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "198f078a09cff39053a60be58fe3529838e775cd", + "fields": { + "ligne_5": "GERMAGNAT", + "code_commune_insee": "01095", + "libelle_d_acheminement": "NIVIGNE ET SURAN", + "code_postal": "01250", + "nom_de_la_commune": "NIVIGNE ET SURAN", + "coordonnees_gps": [ + 46.2750157946, + 5.41649423093 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41649423093, + 46.2750157946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3b0776945d4992b0e74ac42351c445e4c1738ff", + "fields": { + "ligne_5": "PUGIEU", + "code_commune_insee": "01098", + "libelle_d_acheminement": "CHAZEY BONS", + "code_postal": "01510", + "nom_de_la_commune": "CHAZEY BONS", + "coordonnees_gps": [ + 45.7925770617, + 5.68477063188 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68477063188, + 45.7925770617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "628fd4cd9b058c2f2fbf90a0439340d4287b9f15", + "fields": { + "code_commune_insee": "01099", + "nom_de_la_commune": "CHAZEY SUR AIN", + "code_postal": "01150", + "coordonnees_gps": [ + 45.8929448968, + 5.25528498524 + ], + "libelle_d_acheminement": "CHAZEY SUR AIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25528498524, + 45.8929448968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed2c5a5fd632892925b8af316ab8d1acbcbc73a4", + "fields": { + "code_commune_insee": "01111", + "nom_de_la_commune": "CONAND", + "code_postal": "01230", + "coordonnees_gps": [ + 45.8834810846, + 5.47541328981 + ], + "libelle_d_acheminement": "CONAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47541328981, + 45.8834810846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2b97a30ad28eb7adeff0ab3644895ae9efe666d", + "fields": { + "code_commune_insee": "01112", + "nom_de_la_commune": "CONDAMINE", + "code_postal": "01430", + "coordonnees_gps": [ + 46.105831161, + 5.55568206762 + ], + "libelle_d_acheminement": "CONDAMINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55568206762, + 46.105831161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d147657448196ac754df249ab122001517c31104", + "fields": { + "code_commune_insee": "01117", + "nom_de_la_commune": "CONZIEU", + "code_postal": "01300", + "coordonnees_gps": [ + 45.7253102173, + 5.60442351043 + ], + "libelle_d_acheminement": "CONZIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60442351043, + 45.7253102173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9423bdf78a74fbb7cbdab637eb9826499289f635", + "fields": { + "code_commune_insee": "01140", + "nom_de_la_commune": "CURTAFOND", + "code_postal": "01310", + "coordonnees_gps": [ + 46.273150382, + 5.1020896267 + ], + "libelle_d_acheminement": "CURTAFOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1020896267, + 46.273150382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc447b1cfafd8ba0af38c6c627bb6796dffd4131", + "fields": { + "code_commune_insee": "01142", + "nom_de_la_commune": "DAGNEUX", + "code_postal": "01120", + "coordonnees_gps": [ + 45.8531616918, + 5.07289166803 + ], + "libelle_d_acheminement": "DAGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07289166803, + 45.8531616918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "493cfff0b0e17606af2bc4e97698bca7da48de5b", + "fields": { + "code_commune_insee": "01152", + "nom_de_la_commune": "ECHALLON", + "code_postal": "01130", + "coordonnees_gps": [ + 46.2271364137, + 5.73330448395 + ], + "libelle_d_acheminement": "ECHALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73330448395, + 46.2271364137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "642c326219062da9cd134a41958aaa548fd9e6fb", + "fields": { + "code_commune_insee": "01153", + "nom_de_la_commune": "ECHENEVEX", + "code_postal": "01170", + "coordonnees_gps": [ + 46.3160845207, + 6.01926187996 + ], + "libelle_d_acheminement": "ECHENEVEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01926187996, + 46.3160845207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41c4f4257922c33160170701e000b9b8b4c8a54e", + "fields": { + "code_commune_insee": "01159", + "nom_de_la_commune": "FEILLENS", + "code_postal": "01570", + "coordonnees_gps": [ + 46.3365833672, + 4.88507050971 + ], + "libelle_d_acheminement": "FEILLENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88507050971, + 46.3365833672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbba0e6d6c630eb7ac3783aa989fc6292564161a", + "fields": { + "code_commune_insee": "01165", + "nom_de_la_commune": "FRANCHELEINS", + "code_postal": "01090", + "coordonnees_gps": [ + 46.0735946256, + 4.81293575559 + ], + "libelle_d_acheminement": "FRANCHELEINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81293575559, + 46.0735946256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "551f0c81f4f305af5551a333c336f5fa8f3c2521", + "fields": { + "code_commune_insee": "01179", + "nom_de_la_commune": "GRIEGES", + "code_postal": "01290", + "coordonnees_gps": [ + 46.2633634407, + 4.84621318847 + ], + "libelle_d_acheminement": "GRIEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84621318847, + 46.2633634407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "799dc0c5eef2680d8d5046b3ab3308fb86ef5edd", + "fields": { + "code_commune_insee": "01183", + "nom_de_la_commune": "GUEREINS", + "code_postal": "01090", + "coordonnees_gps": [ + 46.106624674, + 4.78159420118 + ], + "libelle_d_acheminement": "GUEREINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78159420118, + 46.106624674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d54e715d3748585088754950ca4e919a4ac56818", + "fields": { + "ligne_5": "THEZILLIEU", + "code_commune_insee": "01185", + "libelle_d_acheminement": "PLATEAU D HAUTEVILLE", + "code_postal": "01110", + "nom_de_la_commune": "PLATEAU D HAUTEVILLE", + "coordonnees_gps": [ + 45.9696520061, + 5.57627261783 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57627261783, + 45.9696520061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4bdc6acd43b70649c60d9a2cc93f64e5da3d61e", + "fields": { + "ligne_5": "LE GRAND ABERGEMENT", + "code_commune_insee": "01187", + "libelle_d_acheminement": "HAUT VALROMEY", + "code_postal": "01260", + "nom_de_la_commune": "HAUT VALROMEY", + "coordonnees_gps": [ + 46.0317412192, + 5.70267027388 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70267027388, + 46.0317412192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23bbbf8e0cc14a64c020f8bbafdd4612bcff7cd5", + "fields": { + "ligne_5": "SONGIEU", + "code_commune_insee": "01187", + "libelle_d_acheminement": "HAUT VALROMEY", + "code_postal": "01260", + "nom_de_la_commune": "HAUT VALROMEY", + "coordonnees_gps": [ + 46.0317412192, + 5.70267027388 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70267027388, + 46.0317412192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "728ade5cebb7ad9511f03a01c33f11e12da9db0c", + "fields": { + "code_commune_insee": "01189", + "nom_de_la_commune": "INJOUX GENISSIAT", + "code_postal": "01200", + "coordonnees_gps": [ + 46.0497734524, + 5.75991363273 + ], + "libelle_d_acheminement": "INJOUX GENISSIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75991363273, + 46.0497734524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a33b3a0f46ac5b4f2017660df24e187cce943fec", + "fields": { + "code_commune_insee": "01191", + "nom_de_la_commune": "IZENAVE", + "code_postal": "01430", + "coordonnees_gps": [ + 46.0381623415, + 5.52447901164 + ], + "libelle_d_acheminement": "IZENAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52447901164, + 46.0381623415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f10586e79ff99e10cb5ec2592de8e01484504658", + "fields": { + "code_commune_insee": "01192", + "nom_de_la_commune": "IZERNORE", + "code_postal": "01580", + "coordonnees_gps": [ + 46.2179780137, + 5.56258251719 + ], + "libelle_d_acheminement": "IZERNORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56258251719, + 46.2179780137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2086d7a2241c04caf217126358bbe78b89a81797", + "fields": { + "code_commune_insee": "01202", + "nom_de_la_commune": "LAGNIEU", + "code_postal": "01150", + "coordonnees_gps": [ + 45.8917015798, + 5.32917518895 + ], + "libelle_d_acheminement": "LAGNIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32917518895, + 45.8917015798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9503b09c92e9d6ce691f31cdf9af6cda9c90b82e", + "fields": { + "ligne_5": "LALLEYRIAT", + "code_commune_insee": "01204", + "libelle_d_acheminement": "LE POIZAT LALLEYRIAT", + "code_postal": "01130", + "nom_de_la_commune": "LE POIZAT LALLEYRIAT", + "coordonnees_gps": [ + 46.1479592076, + 5.71829194244 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71829194244, + 46.1479592076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c8500b6ce31f7359143fe02619fc8d2b4d37562", + "fields": { + "ligne_5": "LE POIZAT", + "code_commune_insee": "01204", + "libelle_d_acheminement": "LE POIZAT LALLEYRIAT", + "code_postal": "01130", + "nom_de_la_commune": "LE POIZAT LALLEYRIAT", + "coordonnees_gps": [ + 46.1479592076, + 5.71829194244 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71829194244, + 46.1479592076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7c3cd045da4ada87f8f2829b42f0fd5a856e2cb", + "fields": { + "code_commune_insee": "01207", + "nom_de_la_commune": "LAPEYROUSE", + "code_postal": "01330", + "coordonnees_gps": [ + 45.9859131165, + 4.98196682865 + ], + "libelle_d_acheminement": "LAPEYROUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98196682865, + 45.9859131165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d7b5d04fea49abaf16a63dd828aabbba0f7cd89", + "fields": { + "code_commune_insee": "01208", + "nom_de_la_commune": "LAVOURS", + "code_postal": "01350", + "coordonnees_gps": [ + 45.8108837933, + 5.77267317838 + ], + "libelle_d_acheminement": "LAVOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77267317838, + 45.8108837933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d6b808aa7aaff78938f91c65cc7aa803c2fadfa", + "fields": { + "code_commune_insee": "01213", + "nom_de_la_commune": "LEYMENT", + "code_postal": "01150", + "coordonnees_gps": [ + 45.9269989549, + 5.2947657235 + ], + "libelle_d_acheminement": "LEYMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2947657235, + 45.9269989549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cbef3f0d7fc94d75d54cbaf63f4f2404d4b5589", + "fields": { + "ligne_5": "ST CHAMP", + "code_commune_insee": "01227", + "libelle_d_acheminement": "MAGNIEU", + "code_postal": "01300", + "nom_de_la_commune": "MAGNIEU", + "coordonnees_gps": [ + 45.7754050255, + 5.71540945601 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71540945601, + 45.7754050255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eff33b85b8a056b0e449af04367d0ba5be3c0663", + "fields": { + "code_commune_insee": "01233", + "nom_de_la_commune": "MARCHAMP", + "code_postal": "01680", + "coordonnees_gps": [ + 45.7738495266, + 5.54985181107 + ], + "libelle_d_acheminement": "MARCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54985181107, + 45.7738495266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60c11bdea1b5d86e6b1ec9615e24884f6c3537cf", + "fields": { + "code_commune_insee": "01234", + "nom_de_la_commune": "MARIGNIEU", + "code_postal": "01300", + "coordonnees_gps": [ + 45.8010384947, + 5.71570352924 + ], + "libelle_d_acheminement": "MARIGNIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71570352924, + 45.8010384947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66e3da53496f316e5b9459f3d3ac8aaf606b9ac7", + "fields": { + "code_commune_insee": "01238", + "nom_de_la_commune": "MASSIEUX", + "code_postal": "01600", + "coordonnees_gps": [ + 45.9094016817, + 4.82779660051 + ], + "libelle_d_acheminement": "MASSIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82779660051, + 45.9094016817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa1b15e4f3be64968afb8955572f1218b8fb847c", + "fields": { + "ligne_5": "GRANGES", + "code_commune_insee": "01240", + "libelle_d_acheminement": "MATAFELON GRANGES", + "code_postal": "01580", + "nom_de_la_commune": "MATAFELON GRANGES", + "coordonnees_gps": [ + 46.2565319445, + 5.53958933702 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53958933702, + 46.2565319445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e69a8f6591b8772ea6ba7aab75b26fa8238cbfa8", + "fields": { + "code_commune_insee": "01241", + "nom_de_la_commune": "MEILLONNAS", + "code_postal": "01370", + "coordonnees_gps": [ + 46.244997627, + 5.33594738489 + ], + "libelle_d_acheminement": "MEILLONNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33594738489, + 46.244997627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "621e71362ebb2d813e49f1fce342f1785a4f0d31", + "fields": { + "ligne_5": "LES ECHETS", + "code_commune_insee": "01249", + "libelle_d_acheminement": "MIRIBEL", + "code_postal": "01700", + "nom_de_la_commune": "MIRIBEL", + "coordonnees_gps": [ + 45.8442099203, + 4.94106746787 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94106746787, + 45.8442099203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0d8b120fc71d22264d7c36365bf112d391ed43b", + "fields": { + "code_commune_insee": "01252", + "nom_de_la_commune": "MOGNENEINS", + "code_postal": "01140", + "coordonnees_gps": [ + 46.1446696076, + 4.820110702 + ], + "libelle_d_acheminement": "MOGNENEINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.820110702, + 46.1446696076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18e885dfae9fc7dde464afd4b597e8ae955a8211", + "fields": { + "code_commune_insee": "01261", + "nom_de_la_commune": "MONTHIEUX", + "code_postal": "01390", + "coordonnees_gps": [ + 45.9622791838, + 4.94555984534 + ], + "libelle_d_acheminement": "MONTHIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94555984534, + 45.9622791838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f96873e03066d03ffc7fc079097ec9d055867d78", + "fields": { + "code_commune_insee": "01272", + "nom_de_la_commune": "NEUVILLE LES DAMES", + "code_postal": "01400", + "coordonnees_gps": [ + 46.1567753049, + 5.00942432434 + ], + "libelle_d_acheminement": "NEUVILLE LES DAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00942432434, + 46.1567753049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ce49f1340852217483cfbfc4ab42b2cbf67a6dc", + "fields": { + "ligne_5": "BOUVENT", + "code_commune_insee": "01283", + "libelle_d_acheminement": "OYONNAX", + "code_postal": "01100", + "nom_de_la_commune": "OYONNAX", + "coordonnees_gps": [ + 46.2605435859, + 5.65344320923 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65344320923, + 46.2605435859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f627421940898ac96bfa7fcf17dd455f2587dff4", + "fields": { + "code_commune_insee": "01285", + "nom_de_la_commune": "PARCIEUX", + "code_postal": "01600", + "coordonnees_gps": [ + 45.9184267932, + 4.82747423402 + ], + "libelle_d_acheminement": "PARCIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82747423402, + 45.9184267932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "382efa56fd3008abfa89fb35788001921ed62f9e", + "fields": { + "ligne_5": "NATTAGES", + "code_commune_insee": "01286", + "libelle_d_acheminement": "PARVES ET NATTAGES", + "code_postal": "01300", + "nom_de_la_commune": "PARVES ET NATTAGES", + "coordonnees_gps": [ + 45.7437340183, + 5.73800737134 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73800737134, + 45.7437340183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0002647715fe78c1e9b9b1eea8403f43f6414c57", + "fields": { + "ligne_5": "PARVES", + "code_commune_insee": "01286", + "libelle_d_acheminement": "PARVES ET NATTAGES", + "code_postal": "01300", + "nom_de_la_commune": "PARVES ET NATTAGES", + "coordonnees_gps": [ + 45.7437340183, + 5.73800737134 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73800737134, + 45.7437340183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "296835942fb927503ab26a5a2e62198c290140b6", + "fields": { + "code_commune_insee": "01288", + "nom_de_la_commune": "PERON", + "code_postal": "01630", + "coordonnees_gps": [ + 46.1913554154, + 5.91968751164 + ], + "libelle_d_acheminement": "PERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91968751164, + 46.1913554154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f37d642cf5b57e923009869fc3411adff270065a", + "fields": { + "code_commune_insee": "01289", + "nom_de_la_commune": "PERONNAS", + "code_postal": "01960", + "coordonnees_gps": [ + 46.1711903413, + 5.21802169564 + ], + "libelle_d_acheminement": "PERONNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21802169564, + 46.1711903413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ca3f0b3137f434656b9fde3968f76158bc66e69", + "fields": { + "code_commune_insee": "01299", + "nom_de_la_commune": "LE PLANTAY", + "code_postal": "01330", + "coordonnees_gps": [ + 46.0230264227, + 5.08912046926 + ], + "libelle_d_acheminement": "LE PLANTAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08912046926, + 46.0230264227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a2b6656b7a03bea9320979d87075638e6fd629c", + "fields": { + "code_commune_insee": "01305", + "nom_de_la_commune": "PONT DE VAUX", + "code_postal": "01190", + "coordonnees_gps": [ + 46.4422864477, + 4.92862459427 + ], + "libelle_d_acheminement": "PONT DE VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92862459427, + 46.4422864477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a8a1cb757cfdbc5559dcd7d416404a129c686f0", + "fields": { + "code_commune_insee": "01328", + "nom_de_la_commune": "ROMANS", + "code_postal": "01400", + "coordonnees_gps": [ + 46.1237520756, + 5.0217131176 + ], + "libelle_d_acheminement": "ROMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0217131176, + 46.1237520756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e96061e0ac86492bee82be5592d3f38358aa7238", + "fields": { + "code_commune_insee": "01332", + "nom_de_la_commune": "ST ANDRE DE BAGE", + "code_postal": "01380", + "coordonnees_gps": [ + 46.298541568, + 4.91411565769 + ], + "libelle_d_acheminement": "ST ANDRE DE BAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91411565769, + 46.298541568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f1716813bd2e091c20c0fdee399cfcceaeb0f63", + "fields": { + "code_commune_insee": "01335", + "nom_de_la_commune": "ST ANDRE LE BOUCHOUX", + "code_postal": "01240", + "coordonnees_gps": [ + 46.1131399612, + 5.0802376895 + ], + "libelle_d_acheminement": "ST ANDRE LE BOUCHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0802376895, + 46.1131399612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "949e76039a2538e0a3719d156b74894e24718a1b", + "fields": { + "code_commune_insee": "01336", + "nom_de_la_commune": "ST ANDRE SUR VIEUX JONC", + "code_postal": "01960", + "coordonnees_gps": [ + 46.1492410532, + 5.14175200148 + ], + "libelle_d_acheminement": "ST ANDRE SUR VIEUX JONC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14175200148, + 46.1492410532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6f0cb7cb6c59f031167893cd445efd86199ff23", + "fields": { + "code_commune_insee": "01351", + "nom_de_la_commune": "ST ETIENNE SUR CHALARONNE", + "code_postal": "01140", + "coordonnees_gps": [ + 46.1468059584, + 4.86696454244 + ], + "libelle_d_acheminement": "ST ETIENNE SUR CHALARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86696454244, + 46.1468059584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a9de234beeedd6edd74cbca2246d68437a0d411", + "fields": { + "code_commune_insee": "01355", + "nom_de_la_commune": "ST GENIS SUR MENTHON", + "code_postal": "01380", + "coordonnees_gps": [ + 46.2815955593, + 5.01311826405 + ], + "libelle_d_acheminement": "ST GENIS SUR MENTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01311826405, + 46.2815955593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1edc45c7b84db19d52f4d437c4e40a81976038f8", + "fields": { + "code_commune_insee": "01356", + "nom_de_la_commune": "ST GEORGES SUR RENON", + "code_postal": "01400", + "coordonnees_gps": [ + 46.1037951263, + 5.03001967494 + ], + "libelle_d_acheminement": "ST GEORGES SUR RENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03001967494, + 46.1037951263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f30d005af7944516f9255c4ff93acaf9e7aca6a0", + "fields": { + "code_commune_insee": "01361", + "nom_de_la_commune": "ST JEAN DE NIOST", + "code_postal": "01800", + "coordonnees_gps": [ + 45.8405002569, + 5.21167430462 + ], + "libelle_d_acheminement": "ST JEAN DE NIOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21167430462, + 45.8405002569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14c55167af1106680675779f1e2d05f17632f0c1", + "fields": { + "code_commune_insee": "01370", + "nom_de_la_commune": "ST LAURENT SUR SAONE", + "code_postal": "01750", + "coordonnees_gps": [ + 46.3051486294, + 4.83949202669 + ], + "libelle_d_acheminement": "ST LAURENT SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83949202669, + 46.3051486294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fccc28bf268365bcfd168948c8e06b0be45f4ea7", + "fields": { + "code_commune_insee": "01372", + "nom_de_la_commune": "ST MARTIN DE BAVEL", + "code_postal": "01510", + "coordonnees_gps": [ + 45.848212674, + 5.67889099153 + ], + "libelle_d_acheminement": "ST MARTIN DE BAVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67889099153, + 45.848212674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4079a87764b1a776dda5f067d9e928a5fdfe7e3", + "fields": { + "code_commune_insee": "01388", + "nom_de_la_commune": "ST TRIVIER DE COURTES", + "code_postal": "01560", + "coordonnees_gps": [ + 46.4612969335, + 5.06679195727 + ], + "libelle_d_acheminement": "ST TRIVIER DE COURTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06679195727, + 46.4612969335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a35d1cd37fa48e46a5f57f3707b2ffa8e380de18", + "fields": { + "code_commune_insee": "01389", + "nom_de_la_commune": "ST TRIVIER SUR MOIGNANS", + "code_postal": "01990", + "coordonnees_gps": [ + 46.0618477991, + 4.90158948884 + ], + "libelle_d_acheminement": "ST TRIVIER SUR MOIGNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90158948884, + 46.0618477991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1c3e3289df8f5c558d2ff2eb227353ef3e3bbc6", + "fields": { + "code_commune_insee": "01397", + "nom_de_la_commune": "SAUVERNY", + "code_postal": "01220", + "coordonnees_gps": [ + 46.3126908233, + 6.11043836433 + ], + "libelle_d_acheminement": "SAUVERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11043836433, + 46.3126908233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5d0a71171ca2b02809abf1bbb585586662a448b", + "fields": { + "code_commune_insee": "01410", + "nom_de_la_commune": "SONTHONNAX LA MONTAGNE", + "code_postal": "01580", + "coordonnees_gps": [ + 46.2229768712, + 5.50566888767 + ], + "libelle_d_acheminement": "SONTHONNAX LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50566888767, + 46.2229768712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fd9dd6bda157bc0a997e4684b90de29e31679a3", + "fields": { + "code_commune_insee": "01423", + "nom_de_la_commune": "TOUSSIEUX", + "code_postal": "01600", + "coordonnees_gps": [ + 45.959898291, + 4.82898610612 + ], + "libelle_d_acheminement": "TOUSSIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82898610612, + 45.959898291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d93e19e2a2b227ce68d9ca4994e1c6a75ec4b69a", + "fields": { + "ligne_5": "TREFFORT CUISIAT", + "code_commune_insee": "01426", + "libelle_d_acheminement": "VAL REVERMONT", + "code_postal": "01370", + "nom_de_la_commune": "VAL REVERMONT", + "coordonnees_gps": [ + 46.2803281838, + 5.36083165162 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36083165162, + 46.2803281838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e92048441e637607ae62e34e95b9f1ebe0145a85", + "fields": { + "code_commune_insee": "01432", + "nom_de_la_commune": "VERJON", + "code_postal": "01270", + "coordonnees_gps": [ + 46.3459093717, + 5.34853019646 + ], + "libelle_d_acheminement": "VERJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34853019646, + 46.3459093717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22fbfa0742b8ffc2e88f11206792a9e541bc5be4", + "fields": { + "code_commune_insee": "01443", + "nom_de_la_commune": "VILLARS LES DOMBES", + "code_postal": "01330", + "coordonnees_gps": [ + 45.9927150222, + 5.04507856642 + ], + "libelle_d_acheminement": "VILLARS LES DOMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04507856642, + 45.9927150222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f7cce8c5b7db15f57440d915efa8aa792bfa177", + "fields": { + "code_commune_insee": "01445", + "nom_de_la_commune": "VILLEMOTIER", + "code_postal": "01270", + "coordonnees_gps": [ + 46.3458538978, + 5.31036160991 + ], + "libelle_d_acheminement": "VILLEMOTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31036160991, + 46.3458538978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81b5e548394bc8891d84a2a894a9c74577121238", + "fields": { + "code_commune_insee": "01447", + "nom_de_la_commune": "VILLEREVERSURE", + "code_postal": "01250", + "coordonnees_gps": [ + 46.1926750369, + 5.3947679407 + ], + "libelle_d_acheminement": "VILLEREVERSURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3947679407, + 46.1926750369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85c71fb604aebb1e6ed0d3ff08f0ae72e44c45a1", + "fields": { + "code_commune_insee": "02002", + "nom_de_la_commune": "ACHERY", + "code_postal": "02800", + "coordonnees_gps": [ + 49.6936187791, + 3.39735632148 + ], + "libelle_d_acheminement": "ACHERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39735632148, + 49.6936187791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71059b946cf1091c1cc55bbf43a97e0e3fb1041d", + "fields": { + "code_commune_insee": "02004", + "nom_de_la_commune": "AGNICOURT ET SECHELLES", + "code_postal": "02340", + "coordonnees_gps": [ + 49.7166573626, + 3.96043211816 + ], + "libelle_d_acheminement": "AGNICOURT ET SECHELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96043211816, + 49.7166573626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55c43c88480c9a434efb4b4fd89deb0df06eac8b", + "fields": { + "code_commune_insee": "02007", + "nom_de_la_commune": "AIZELLES", + "code_postal": "02820", + "coordonnees_gps": [ + 49.4848002918, + 3.81870255331 + ], + "libelle_d_acheminement": "AIZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81870255331, + 49.4848002918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9843d217153ff2067ac93d909cd3862bbf323371", + "fields": { + "code_commune_insee": "02014", + "nom_de_la_commune": "AMIGNY ROUY", + "code_postal": "02700", + "coordonnees_gps": [ + 49.6108275885, + 3.30289341579 + ], + "libelle_d_acheminement": "AMIGNY ROUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30289341579, + 49.6108275885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12d9c6b7f6c58a3444e6b6290d9d53118974f238", + "fields": { + "code_commune_insee": "02015", + "nom_de_la_commune": "ANCIENVILLE", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2186389559, + 3.20808809779 + ], + "libelle_d_acheminement": "ANCIENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20808809779, + 49.2186389559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45d08a6d4e4052c25f7b03ec789c764a2c7339a7", + "fields": { + "code_commune_insee": "02016", + "nom_de_la_commune": "ANDELAIN", + "code_postal": "02800", + "coordonnees_gps": [ + 49.6411808161, + 3.3695440898 + ], + "libelle_d_acheminement": "ANDELAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3695440898, + 49.6411808161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "febd28cfec02ba3b519a3b014851141058f66539", + "fields": { + "code_commune_insee": "02020", + "nom_de_la_commune": "ANY MARTIN RIEUX", + "code_postal": "02500", + "coordonnees_gps": [ + 49.8823706752, + 4.22351346907 + ], + "libelle_d_acheminement": "ANY MARTIN RIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22351346907, + 49.8823706752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c28e90e6fcd14ac720492eeaf800d6892fb79404", + "fields": { + "code_commune_insee": "02025", + "nom_de_la_commune": "ARTEMPS", + "code_postal": "02480", + "coordonnees_gps": [ + 49.7617999337, + 3.19725095546 + ], + "libelle_d_acheminement": "ARTEMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19725095546, + 49.7617999337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d852571dcbd013d50e6b3418dc8a310a618b9ae8", + "fields": { + "code_commune_insee": "02032", + "nom_de_la_commune": "AUBIGNY AUX KAISNES", + "code_postal": "02590", + "coordonnees_gps": [ + 49.7721524634, + 3.1192565988 + ], + "libelle_d_acheminement": "AUBIGNY AUX KAISNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1192565988, + 49.7721524634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beb820bfb8464c36163bcf0885c9676916cc6547", + "fields": { + "code_commune_insee": "02042", + "nom_de_la_commune": "AZY SUR MARNE", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0039701095, + 3.35913214045 + ], + "libelle_d_acheminement": "AZY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35913214045, + 49.0039701095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e72a55055f0dd7c942b32f0367cbe5ded3a68317", + "fields": { + "code_commune_insee": "02048", + "nom_de_la_commune": "BARENTON SUR SERRE", + "code_postal": "02270", + "coordonnees_gps": [ + 49.66833977, + 3.68940610952 + ], + "libelle_d_acheminement": "BARENTON SUR SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68940610952, + 49.66833977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65081187bfd80c91f86101c57419e6426d5aebf7", + "fields": { + "code_commune_insee": "02050", + "nom_de_la_commune": "BARZY EN THIERACHE", + "code_postal": "02170", + "coordonnees_gps": [ + 50.0395375873, + 3.74901595409 + ], + "libelle_d_acheminement": "BARZY EN THIERACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74901595409, + 50.0395375873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b03fa6f3fe351b561392987fa2ac38afba8969a2", + "fields": { + "ligne_5": "BAULNE EN BRIE", + "code_commune_insee": "02053", + "libelle_d_acheminement": "VALLEES EN CHAMPAGNE", + "code_postal": "02330", + "nom_de_la_commune": "VALLEES EN CHAMPAGNE", + "coordonnees_gps": [ + 48.9896915811, + 3.60486686026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60486686026, + 48.9896915811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c30343c4f959a0f95dc354f369c7087f34aa094", + "fields": { + "code_commune_insee": "02061", + "nom_de_la_commune": "BECQUIGNY", + "code_postal": "02110", + "coordonnees_gps": [ + 50.0158703814, + 3.45898644538 + ], + "libelle_d_acheminement": "BECQUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45898644538, + 50.0158703814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "193cd7e02eb4b0e333b402f7bb487025100e7c1a", + "fields": { + "code_commune_insee": "02066", + "nom_de_la_commune": "BENAY", + "code_postal": "02440", + "coordonnees_gps": [ + 49.755094123, + 3.30909898139 + ], + "libelle_d_acheminement": "BENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30909898139, + 49.755094123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c007e93416e0ae116a2e367de10f232f9f52bef1", + "fields": { + "code_commune_insee": "02069", + "nom_de_la_commune": "BERLISE", + "code_postal": "02340", + "coordonnees_gps": [ + 49.6622290606, + 4.11314086897 + ], + "libelle_d_acheminement": "BERLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11314086897, + 49.6622290606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ef00afa8e88410e759901e10cdb5d2bbd9cce47", + "fields": { + "code_commune_insee": "02074", + "nom_de_la_commune": "BERTAUCOURT EPOURDON", + "code_postal": "02800", + "coordonnees_gps": [ + 49.6276056573, + 3.39748988886 + ], + "libelle_d_acheminement": "BERTAUCOURT EPOURDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39748988886, + 49.6276056573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9a609173bf26ec7be50857b66938df7d7d6685a", + "fields": { + "code_commune_insee": "02075", + "nom_de_la_commune": "BERTHENICOURT", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7788058177, + 3.37247241058 + ], + "libelle_d_acheminement": "BERTHENICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37247241058, + 49.7788058177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6deb1c7dd9298b599e5a1c4adf010eb2148404bf", + "fields": { + "code_commune_insee": "02083", + "nom_de_la_commune": "BEUVARDES", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1308547007, + 3.49165019107 + ], + "libelle_d_acheminement": "BEUVARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49165019107, + 49.1308547007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbcc87424210ed51d7672d6d87a84cb0a9c45daf", + "fields": { + "code_commune_insee": "02084", + "nom_de_la_commune": "BEZU LE GUERY", + "code_postal": "02310", + "coordonnees_gps": [ + 49.0102591835, + 3.22764610411 + ], + "libelle_d_acheminement": "BEZU LE GUERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22764610411, + 49.0102591835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c357f3aa991e972b644c885cf54fd780b4644a00", + "fields": { + "code_commune_insee": "02085", + "nom_de_la_commune": "BEZU ST GERMAIN", + "code_postal": "02400", + "coordonnees_gps": [ + 49.1046732888, + 3.40812513224 + ], + "libelle_d_acheminement": "BEZU ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40812513224, + 49.1046732888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b84269d83fb74dee89af4815fc5eec6cf93ba8c4", + "fields": { + "code_commune_insee": "02095", + "nom_de_la_commune": "BOHAIN EN VERMANDOIS", + "code_postal": "02110", + "coordonnees_gps": [ + 49.989032874, + 3.46522354976 + ], + "libelle_d_acheminement": "BOHAIN EN VERMANDOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46522354976, + 49.989032874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87fdf64cbd68f4ffb7d8932b14fdd39bf362e721", + "fields": { + "code_commune_insee": "02098", + "nom_de_la_commune": "BONNEIL", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0082419817, + 3.3459478468 + ], + "libelle_d_acheminement": "BONNEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3459478468, + 49.0082419817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9a195a09e9690f3654151adcd10959788dbd0f4", + "fields": { + "code_commune_insee": "02102", + "nom_de_la_commune": "BOUCONVILLE VAUCLAIR", + "code_postal": "02860", + "coordonnees_gps": [ + 49.4606212957, + 3.75658607824 + ], + "libelle_d_acheminement": "BOUCONVILLE VAUCLAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75658607824, + 49.4606212957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "294039fe0578a98d10b039625adb48c84b588764", + "fields": { + "code_commune_insee": "02109", + "nom_de_la_commune": "LA BOUTEILLE", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8778828965, + 3.96243530235 + ], + "libelle_d_acheminement": "LA BOUTEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96243530235, + 49.8778828965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aa006134fce1e048954d72d6f338a7ea150994e", + "fields": { + "code_commune_insee": "02110", + "nom_de_la_commune": "BRAINE", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3484719318, + 3.53596629744 + ], + "libelle_d_acheminement": "BRAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53596629744, + 49.3484719318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63f8989924e00f44e09cba7d9663d274aef63c47", + "fields": { + "code_commune_insee": "02115", + "nom_de_la_commune": "BRAYE EN LAONNOIS", + "code_postal": "02000", + "coordonnees_gps": [ + 49.4375773374, + 3.60977976284 + ], + "libelle_d_acheminement": "BRAYE EN LAONNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60977976284, + 49.4375773374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed5595f818459f938ec693e1eec35d1c8fad7c51", + "fields": { + "code_commune_insee": "02119", + "nom_de_la_commune": "BRECY", + "code_postal": "02210", + "coordonnees_gps": [ + 49.1398626041, + 3.42373097034 + ], + "libelle_d_acheminement": "BRECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42373097034, + 49.1398626041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8235cccce1e22768956f391042f0dcbdbd211a6", + "fields": { + "code_commune_insee": "02136", + "nom_de_la_commune": "BURELLES", + "code_postal": "02140", + "coordonnees_gps": [ + 49.7687046874, + 3.91196369709 + ], + "libelle_d_acheminement": "BURELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91196369709, + 49.7687046874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e8cf0f36eac350fb48af16c3827dda7a17aca76", + "fields": { + "code_commune_insee": "02137", + "nom_de_la_commune": "BUSSIARES", + "code_postal": "02810", + "coordonnees_gps": [ + 49.0765910572, + 3.25026191909 + ], + "libelle_d_acheminement": "BUSSIARES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25026191909, + 49.0765910572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fc045744fd4dd384a2a55ec3f2432a5a7d9f5b6", + "fields": { + "code_commune_insee": "02145", + "nom_de_la_commune": "CAUMONT", + "code_postal": "02300", + "coordonnees_gps": [ + 49.6372659106, + 3.17347612819 + ], + "libelle_d_acheminement": "CAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17347612819, + 49.6372659106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f106f9c427eb396642bfd0fbea5845bf73063fe9", + "fields": { + "ligne_5": "SUZY", + "code_commune_insee": "02153", + "libelle_d_acheminement": "CESSIERES SUZY", + "code_postal": "02320", + "nom_de_la_commune": "CESSIERES SUZY", + "coordonnees_gps": [ + 49.5595788079, + 3.50190405701 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50190405701, + 49.5595788079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "563b9919e0f48b817849013fa06d00e65a27c6d0", + "fields": { + "code_commune_insee": "02160", + "nom_de_la_commune": "CHAOURSE", + "code_postal": "02340", + "coordonnees_gps": [ + 49.7007898116, + 3.98562292281 + ], + "libelle_d_acheminement": "CHAOURSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98562292281, + 49.7007898116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e3e5a74751f19f798f1f64c9182919e28d15978", + "fields": { + "code_commune_insee": "02164", + "nom_de_la_commune": "LE CHARMEL", + "code_postal": "02850", + "coordonnees_gps": [ + 49.1121866037, + 3.54125960951 + ], + "libelle_d_acheminement": "LE CHARMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54125960951, + 49.1121866037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85de155c88086463c942937d6cf8268036626cb1", + "fields": { + "code_commune_insee": "02165", + "nom_de_la_commune": "CHARMES", + "code_postal": "02800", + "coordonnees_gps": [ + 49.6508532429, + 3.38525104222 + ], + "libelle_d_acheminement": "CHARMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38525104222, + 49.6508532429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b615cd187d7125fb1e23b16dfafe24ea04b6a9e", + "fields": { + "code_commune_insee": "02166", + "nom_de_la_commune": "CHARTEVES", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0898127369, + 3.50871838479 + ], + "libelle_d_acheminement": "CHARTEVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50871838479, + 49.0898127369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0ddbe768610602922a77d8d4097307424c41687", + "fields": { + "code_commune_insee": "02167", + "nom_de_la_commune": "CHASSEMY", + "code_postal": "02370", + "coordonnees_gps": [ + 49.3783410842, + 3.50271467967 + ], + "libelle_d_acheminement": "CHASSEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50271467967, + 49.3783410842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f94354a664b5febc82af0af2e0adffd77599c110", + "fields": { + "code_commune_insee": "02174", + "nom_de_la_commune": "CHAVIGNON", + "code_postal": "02000", + "coordonnees_gps": [ + 49.4794437147, + 3.51936895626 + ], + "libelle_d_acheminement": "CHAVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51936895626, + 49.4794437147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c45a90e1f744c0c69d49b1b5df537eef421a20b5", + "fields": { + "code_commune_insee": "02188", + "nom_de_la_commune": "CHIGNY", + "code_postal": "02120", + "coordonnees_gps": [ + 49.9298846139, + 3.77489645427 + ], + "libelle_d_acheminement": "CHIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77489645427, + 49.9298846139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c22d8269e365f7a3ce7df28cfae5ec8fa086cb67", + "fields": { + "code_commune_insee": "02201", + "nom_de_la_commune": "COEUVRES ET VALSERY", + "code_postal": "02600", + "coordonnees_gps": [ + 49.3295432232, + 3.15290453511 + ], + "libelle_d_acheminement": "COEUVRES ET VALSERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15290453511, + 49.3295432232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a0aca33babf853916ce1f166fe2c475e9de3e8b", + "fields": { + "code_commune_insee": "02203", + "nom_de_la_commune": "COINCY", + "code_postal": "02210", + "coordonnees_gps": [ + 49.1632280955, + 3.43633795455 + ], + "libelle_d_acheminement": "COINCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43633795455, + 49.1632280955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ba528152187fdc13f6838549996cee6349f60a", + "fields": { + "code_commune_insee": "02205", + "nom_de_la_commune": "COLLIGIS CRANDELAIN", + "code_postal": "02860", + "coordonnees_gps": [ + 49.4666159338, + 3.63042181928 + ], + "libelle_d_acheminement": "COLLIGIS CRANDELAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63042181928, + 49.4666159338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52ab104f3138497635ee7dda7eaae4fd94068b06", + "fields": { + "code_commune_insee": "02207", + "nom_de_la_commune": "COMMENCHON", + "code_postal": "02300", + "coordonnees_gps": [ + 49.6416913377, + 3.15095437349 + ], + "libelle_d_acheminement": "COMMENCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15095437349, + 49.6416913377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "359c87d9ea234a068bd9b08e57299ee68520f1d9", + "fields": { + "code_commune_insee": "02220", + "nom_de_la_commune": "COULONGES COHAN", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1980463524, + 3.62776592985 + ], + "libelle_d_acheminement": "COULONGES COHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62776592985, + 49.1980463524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dec7a833aaf5bea2eb09e2f5f438c7edca07a9bd", + "fields": { + "code_commune_insee": "02222", + "nom_de_la_commune": "COURBES", + "code_postal": "02800", + "coordonnees_gps": [ + 49.6815888779, + 3.46004834981 + ], + "libelle_d_acheminement": "COURBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46004834981, + 49.6815888779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d3546de9e5f92db6ba348aaba20a92517901271", + "fields": { + "code_commune_insee": "02229", + "nom_de_la_commune": "COURTRIZY ET FUSSIGNY", + "code_postal": "02820", + "coordonnees_gps": [ + 49.5140957547, + 3.79503800634 + ], + "libelle_d_acheminement": "COURTRIZY ET FUSSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79503800634, + 49.5140957547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a52c470ded24732f92a38a1b79c25b8c0f922db", + "fields": { + "code_commune_insee": "02234", + "nom_de_la_commune": "CRAONNE", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4476368348, + 3.79203280761 + ], + "libelle_d_acheminement": "CRAONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79203280761, + 49.4476368348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d1af8155ec08b163238e1c59a9f0eb83be7c3cf", + "fields": { + "code_commune_insee": "02235", + "nom_de_la_commune": "CRAONNELLE", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4254999308, + 3.77686483236 + ], + "libelle_d_acheminement": "CRAONNELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77686483236, + 49.4254999308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eea34193122b37c3614407de474bcc75f730bee3", + "fields": { + "code_commune_insee": "02236", + "nom_de_la_commune": "CRECY AU MONT", + "code_postal": "02380", + "coordonnees_gps": [ + 49.4839031807, + 3.31195074309 + ], + "libelle_d_acheminement": "CRECY AU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31195074309, + 49.4839031807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63cc658b77007c59ac976404f631c9542b5640f9", + "fields": { + "code_commune_insee": "02240", + "nom_de_la_commune": "CROIX FONSOMME", + "code_postal": "02110", + "coordonnees_gps": [ + 49.9306761102, + 3.39430326005 + ], + "libelle_d_acheminement": "CROIX FONSOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39430326005, + 49.9306761102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e3400018eecbe2ab12df0a6e2679106006dcdeb", + "fields": { + "code_commune_insee": "02241", + "nom_de_la_commune": "LA CROIX SUR OURCQ", + "code_postal": "02210", + "coordonnees_gps": [ + 49.1598010602, + 3.35048905306 + ], + "libelle_d_acheminement": "LA CROIX SUR OURCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35048905306, + 49.1598010602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0568cbdf7501f6c63f56dc101320c2dacb92a7e5", + "fields": { + "code_commune_insee": "02242", + "nom_de_la_commune": "CROUTTES SUR MARNE", + "code_postal": "02310", + "coordonnees_gps": [ + 48.9791200153, + 3.24757642131 + ], + "libelle_d_acheminement": "CROUTTES SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24757642131, + 48.9791200153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e288afe79e0603e8613e4adce4392585423c451", + "fields": { + "code_commune_insee": "02252", + "nom_de_la_commune": "CUISSY ET GENY", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4034575347, + 3.70612307803 + ], + "libelle_d_acheminement": "CUISSY ET GENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70612307803, + 49.4034575347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5616850a8d01e451b376516794c9d165c2bd2d40", + "fields": { + "code_commune_insee": "02255", + "nom_de_la_commune": "CYS LA COMMUNE", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3837163848, + 3.57235420125 + ], + "libelle_d_acheminement": "CYS LA COMMUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57235420125, + 49.3837163848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e8cfbba605534ce991ce97f39ddef3fbd579a30", + "fields": { + "code_commune_insee": "02256", + "nom_de_la_commune": "DAGNY LAMBERCY", + "code_postal": "02140", + "coordonnees_gps": [ + 49.7690562311, + 4.04218248631 + ], + "libelle_d_acheminement": "DAGNY LAMBERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04218248631, + 49.7690562311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56a8a3936a1c3191e9c47a4c54e3cf689f200c90", + "fields": { + "code_commune_insee": "02265", + "nom_de_la_commune": "DOHIS", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7667554096, + 4.14178746545 + ], + "libelle_d_acheminement": "DOHIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14178746545, + 49.7667554096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b116b75108cfa7714b3bfcd99b2b7224b0561803", + "fields": { + "code_commune_insee": "02270", + "nom_de_la_commune": "DOUCHY", + "code_postal": "02590", + "coordonnees_gps": [ + 49.7940905147, + 3.13035849025 + ], + "libelle_d_acheminement": "DOUCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13035849025, + 49.7940905147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dadf42e495edcb18478e9b84fc2a888c61854033", + "fields": { + "code_commune_insee": "02286", + "nom_de_la_commune": "ESQUEHERIES", + "code_postal": "02170", + "coordonnees_gps": [ + 49.9822300914, + 3.75309920982 + ], + "libelle_d_acheminement": "ESQUEHERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75309920982, + 49.9822300914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04c50aa57dd7d180ca759e307360c331ae534598", + "fields": { + "code_commune_insee": "02289", + "nom_de_la_commune": "ESSISES", + "code_postal": "02570", + "coordonnees_gps": [ + 48.9666904843, + 3.41396491705 + ], + "libelle_d_acheminement": "ESSISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41396491705, + 48.9666904843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b072f841a6566c1d6cc1d7cdc2ee2f03f8c448c", + "fields": { + "code_commune_insee": "02293", + "nom_de_la_commune": "ETAVES ET BOCQUIAUX", + "code_postal": "02110", + "coordonnees_gps": [ + 49.9310354275, + 3.45081301205 + ], + "libelle_d_acheminement": "ETAVES ET BOCQUIAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45081301205, + 49.9310354275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "786967d3246f0e33d968eebddcef68d1cd11b18b", + "fields": { + "code_commune_insee": "02295", + "nom_de_la_commune": "ETREAUPONT", + "code_postal": "02580", + "coordonnees_gps": [ + 49.8962633822, + 3.92348915288 + ], + "libelle_d_acheminement": "ETREAUPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92348915288, + 49.8962633822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b71203a9b6f42509bf6f7db462dc2a171f07d32f", + "fields": { + "code_commune_insee": "02299", + "nom_de_la_commune": "EVERGNICOURT", + "code_postal": "02190", + "coordonnees_gps": [ + 49.4564306975, + 4.03631753944 + ], + "libelle_d_acheminement": "EVERGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03631753944, + 49.4564306975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d641ca79bf66b1da4547cbc330cde8ed4d6f78b", + "fields": { + "code_commune_insee": "02305", + "nom_de_la_commune": "FERE EN TARDENOIS", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1875000917, + 3.51106425515 + ], + "libelle_d_acheminement": "FERE EN TARDENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51106425515, + 49.1875000917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bb205980458af9c180f2ac09787683cbe4745e3", + "fields": { + "code_commune_insee": "02306", + "nom_de_la_commune": "LA FERTE CHEVRESIS", + "code_postal": "02270", + "coordonnees_gps": [ + 49.7409973498, + 3.55129770695 + ], + "libelle_d_acheminement": "LA FERTE CHEVRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55129770695, + 49.7409973498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b201d8b5986ea00bd9b3278246bc56d50354852", + "fields": { + "code_commune_insee": "02316", + "nom_de_la_commune": "FLEURY", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2652863131, + 3.15947064674 + ], + "libelle_d_acheminement": "FLEURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15947064674, + 49.2652863131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4979da41a20e7045378d575dbb02e499554ef4db", + "fields": { + "code_commune_insee": "02323", + "nom_de_la_commune": "FONTAINE UTERTE", + "code_postal": "02110", + "coordonnees_gps": [ + 49.9252841672, + 3.36796234214 + ], + "libelle_d_acheminement": "FONTAINE UTERTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36796234214, + 49.9252841672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59d037cb0d360c07f0009aee5e301fe7e4b85214", + "fields": { + "code_commune_insee": "02342", + "nom_de_la_commune": "GERGNY", + "code_postal": "02260", + "coordonnees_gps": [ + 49.9326319225, + 3.92972384714 + ], + "libelle_d_acheminement": "GERGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92972384714, + 49.9326319225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "941fad94751283cbcfe9dc983ea41a635cf5cdf7", + "fields": { + "ligne_5": "MENNEVILLE", + "code_commune_insee": "02360", + "libelle_d_acheminement": "VILLENEUVE SUR AISNE", + "code_postal": "02190", + "nom_de_la_commune": "VILLENEUVE SUR AISNE", + "coordonnees_gps": [ + 49.4433017606, + 3.95534582458 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95534582458, + 49.4433017606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7752ecb3a8cb7c0d0912bf965715dede310cff23", + "fields": { + "code_commune_insee": "02364", + "nom_de_la_commune": "GUYENCOURT", + "code_postal": "02160", + "coordonnees_gps": [ + 49.3573380108, + 3.84132930883 + ], + "libelle_d_acheminement": "GUYENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84132930883, + 49.3573380108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d7b0f1fed2a85b6c98d71afd840daa6948b97e2", + "fields": { + "code_commune_insee": "02368", + "nom_de_la_commune": "HARAMONT", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2872759039, + 3.03148977109 + ], + "libelle_d_acheminement": "HARAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03148977109, + 49.2872759039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acd643fe7924bff2fb22d865217b615250dd659d", + "fields": { + "code_commune_insee": "02375", + "nom_de_la_commune": "HAUTEVESNES", + "code_postal": "02810", + "coordonnees_gps": [ + 49.1088469374, + 3.2356780284 + ], + "libelle_d_acheminement": "HAUTEVESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2356780284, + 49.1088469374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf2c4b890b2be5b9b79cbfb7a7d82e18a9981377", + "fields": { + "code_commune_insee": "02381", + "nom_de_la_commune": "HIRSON", + "code_postal": "02500", + "coordonnees_gps": [ + 49.9426458618, + 4.10483732841 + ], + "libelle_d_acheminement": "HIRSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10483732841, + 49.9426458618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e094eedc6284977af2aba6d3d81ac87b65916afd", + "fields": { + "code_commune_insee": "02385", + "nom_de_la_commune": "HOUSSET", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7961649956, + 3.69539262425 + ], + "libelle_d_acheminement": "HOUSSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69539262425, + 49.7961649956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38684456397dd86685cdbbe5c2da57985eb52f94", + "fields": { + "code_commune_insee": "02390", + "nom_de_la_commune": "JEANCOURT", + "code_postal": "02490", + "coordonnees_gps": [ + 49.9288562683, + 3.14778805313 + ], + "libelle_d_acheminement": "JEANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14778805313, + 49.9288562683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fed67a5293af1df72db25ed8d8b0e8b9052e3dee", + "fields": { + "code_commune_insee": "02399", + "nom_de_la_commune": "JUVINCOURT ET DAMARY", + "code_postal": "02190", + "coordonnees_gps": [ + 49.4468853425, + 3.89147198339 + ], + "libelle_d_acheminement": "JUVINCOURT ET DAMARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89147198339, + 49.4468853425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00b7eca7c513d41b0f07c79dd2e0315010408014", + "fields": { + "code_commune_insee": "02407", + "nom_de_la_commune": "LANISCOURT", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5469118723, + 3.53406747358 + ], + "libelle_d_acheminement": "LANISCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53406747358, + 49.5469118723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e19cb2db744a184ea2473d78ddc27a0fa285768", + "fields": { + "code_commune_insee": "02408", + "nom_de_la_commune": "LAON", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5679724897, + 3.62089561902 + ], + "libelle_d_acheminement": "LAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62089561902, + 49.5679724897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5771d29dca885273a7de363bdbe478c4f47c9d0", + "fields": { + "code_commune_insee": "02413", + "nom_de_la_commune": "LAVAL EN LAONNOIS", + "code_postal": "02860", + "coordonnees_gps": [ + 49.5029905064, + 3.58758242212 + ], + "libelle_d_acheminement": "LAVAL EN LAONNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58758242212, + 49.5029905064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30d3dc1dfee8aacbcdfe6f513f55c6b582603850", + "fields": { + "code_commune_insee": "02417", + "nom_de_la_commune": "LEMPIRE", + "code_postal": "02420", + "coordonnees_gps": [ + 49.9953429453, + 3.17401503527 + ], + "libelle_d_acheminement": "LEMPIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17401503527, + 49.9953429453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a33947305c682f9c88674d26f98fb99c65a03956", + "fields": { + "code_commune_insee": "02418", + "nom_de_la_commune": "LERZY", + "code_postal": "02260", + "coordonnees_gps": [ + 49.9499258495, + 3.88135093149 + ], + "libelle_d_acheminement": "LERZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88135093149, + 49.9499258495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d64e8844196e352b5ff83a8a7fcfd2b34e06478c", + "fields": { + "code_commune_insee": "02419", + "nom_de_la_commune": "LESCHELLE", + "code_postal": "02170", + "coordonnees_gps": [ + 49.9605709227, + 3.77740709683 + ], + "libelle_d_acheminement": "LESCHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77740709683, + 49.9605709227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8ff86f212f8175e28255023048c1a9d58f48c36", + "fields": { + "code_commune_insee": "02420", + "nom_de_la_commune": "LESDINS", + "code_postal": "02100", + "coordonnees_gps": [ + 49.9043632178, + 3.31462117869 + ], + "libelle_d_acheminement": "LESDINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31462117869, + 49.9043632178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ef7e869ea6f72c3a66a3539294a4e0821bb5cda", + "fields": { + "code_commune_insee": "02435", + "nom_de_la_commune": "LOGNY LES AUBENTON", + "code_postal": "02500", + "coordonnees_gps": [ + 49.8330144048, + 4.2201280927 + ], + "libelle_d_acheminement": "LOGNY LES AUBENTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2201280927, + 49.8330144048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "219d8eb6e0cbda07148314257b41b11dcfc7efc5", + "fields": { + "ligne_5": "BARBONVAL", + "code_commune_insee": "02439", + "libelle_d_acheminement": "LES SEPTVALLONS", + "code_postal": "02160", + "nom_de_la_commune": "LES SEPTVALLONS", + "coordonnees_gps": [ + 49.3603355862, + 3.65567844397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65567844397, + 49.3603355862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c5c9f721dd418b5b8eed2241f976965a1b0fba2", + "fields": { + "code_commune_insee": "02441", + "nom_de_la_commune": "LOUATRE", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2527947078, + 3.24153629897 + ], + "libelle_d_acheminement": "LOUATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24153629897, + 49.2527947078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a4df428720368628807a835d2b088f9b4e20c4c", + "fields": { + "code_commune_insee": "02448", + "nom_de_la_commune": "MACHECOURT", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6516966172, + 3.83765995783 + ], + "libelle_d_acheminement": "MACHECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83765995783, + 49.6516966172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e968ff60ce8d278a1419f879b24731e5258dbd8", + "fields": { + "code_commune_insee": "02449", + "nom_de_la_commune": "MACOGNY", + "code_postal": "02470", + "coordonnees_gps": [ + 49.1590429097, + 3.21784708642 + ], + "libelle_d_acheminement": "MACOGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21784708642, + 49.1590429097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feec1f74723a3a37316818d7e0f54ff26ae35533", + "fields": { + "code_commune_insee": "02454", + "nom_de_la_commune": "LA MALMAISON", + "code_postal": "02190", + "coordonnees_gps": [ + 49.5165178767, + 4.00048717912 + ], + "libelle_d_acheminement": "LA MALMAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00048717912, + 49.5165178767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "373841fa0976d35124fbd1a57a27ed60fe926a10", + "fields": { + "code_commune_insee": "02456", + "nom_de_la_commune": "MANICAMP", + "code_postal": "02300", + "coordonnees_gps": [ + 49.5650654162, + 3.17962639988 + ], + "libelle_d_acheminement": "MANICAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17962639988, + 49.5650654162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acbe79e5d0c4a3998f1362f0624245b60d68edcb", + "fields": { + "ligne_5": "ARTONGES", + "code_commune_insee": "02458", + "libelle_d_acheminement": "DHUYS ET MORIN EN BRIE", + "code_postal": "02330", + "nom_de_la_commune": "DHUYS ET MORIN EN BRIE", + "coordonnees_gps": [ + 48.8935786183, + 3.49268121283 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49268121283, + 48.8935786183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6548cf56a4654d781859ffda02eb8851b02593f5", + "fields": { + "ligne_5": "LA CELLE SOUS MONTMIRAIL", + "code_commune_insee": "02458", + "libelle_d_acheminement": "DHUYS ET MORIN EN BRIE", + "code_postal": "02540", + "nom_de_la_commune": "DHUYS ET MORIN EN BRIE", + "coordonnees_gps": [ + 48.8935786183, + 3.49268121283 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49268121283, + 48.8935786183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68be895ad40db9b7240923a6a0a703438d276709", + "fields": { + "ligne_5": "MARCHAIS EN BRIE", + "code_commune_insee": "02458", + "libelle_d_acheminement": "DHUYS ET MORIN EN BRIE", + "code_postal": "02540", + "nom_de_la_commune": "DHUYS ET MORIN EN BRIE", + "coordonnees_gps": [ + 48.8935786183, + 3.49268121283 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49268121283, + 48.8935786183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2b42601d8655aa66ba5ca09f0dee762506d1deb", + "fields": { + "code_commune_insee": "02460", + "nom_de_la_commune": "MARCY SOUS MARLE", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7457495163, + 3.73453881149 + ], + "libelle_d_acheminement": "MARCY SOUS MARLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73453881149, + 49.7457495163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "740f937cd383286b8a5852313c2287ba4708f432", + "fields": { + "code_commune_insee": "02480", + "nom_de_la_commune": "MESBRECOURT RICHECOURT", + "code_postal": "02270", + "coordonnees_gps": [ + 49.710385665, + 3.53739733076 + ], + "libelle_d_acheminement": "MESBRECOURT RICHECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53739733076, + 49.710385665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88bed669b28f34c873c6ee9bb50c011c83276485", + "fields": { + "code_commune_insee": "02488", + "nom_de_la_commune": "MOLAIN", + "code_postal": "02110", + "coordonnees_gps": [ + 50.03359227, + 3.52985658168 + ], + "libelle_d_acheminement": "MOLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52985658168, + 50.03359227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5909d3e231f8450b1d9de03ac4d3c0f6418e85fb", + "fields": { + "code_commune_insee": "02489", + "nom_de_la_commune": "MOLINCHART", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5624802928, + 3.53979641476 + ], + "libelle_d_acheminement": "MOLINCHART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53979641476, + 49.5624802928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31feb210252efb6d0a185b7e0e3e2fe3741ee2a6", + "fields": { + "code_commune_insee": "02500", + "nom_de_la_commune": "MONTBREHAIN", + "code_postal": "02110", + "coordonnees_gps": [ + 49.9642449609, + 3.35609147368 + ], + "libelle_d_acheminement": "MONTBREHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35609147368, + 49.9642449609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b27a7ca20c97957eae34ebfa71c46c2d05e4c9bb", + "fields": { + "code_commune_insee": "02504", + "nom_de_la_commune": "MONTESCOURT LIZEROLLES", + "code_postal": "02440", + "coordonnees_gps": [ + 49.7360396205, + 3.26188923395 + ], + "libelle_d_acheminement": "MONTESCOURT LIZEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26188923395, + 49.7360396205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e695b6fe1d3ac4ced72b6ab2b6bd6cd399317209", + "fields": { + "code_commune_insee": "02508", + "nom_de_la_commune": "MONTHENAULT", + "code_postal": "02860", + "coordonnees_gps": [ + 49.4892743465, + 3.65592404446 + ], + "libelle_d_acheminement": "MONTHENAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65592404446, + 49.4892743465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51091eb961d2508e7be4d9449f351371d4898581", + "fields": { + "code_commune_insee": "02509", + "nom_de_la_commune": "MONTHIERS", + "code_postal": "02400", + "coordonnees_gps": [ + 49.1085987235, + 3.29437776654 + ], + "libelle_d_acheminement": "MONTHIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29437776654, + 49.1085987235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4651c2d87d9cf3648e39579b6b9468e4a3358088", + "fields": { + "code_commune_insee": "02511", + "nom_de_la_commune": "MONTIGNY EN ARROUAISE", + "code_postal": "02110", + "coordonnees_gps": [ + 49.9120067618, + 3.48306674241 + ], + "libelle_d_acheminement": "MONTIGNY EN ARROUAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48306674241, + 49.9120067618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4919b9da444c6c9b98583ac60a2584f40053162", + "fields": { + "code_commune_insee": "02522", + "nom_de_la_commune": "MONT ST JEAN", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7932196838, + 4.21125667983 + ], + "libelle_d_acheminement": "MONT ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21125667983, + 49.7932196838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b9370177842e31ab244a5224303a34b9beb8f14", + "fields": { + "code_commune_insee": "02529", + "nom_de_la_commune": "MORTIERS", + "code_postal": "02270", + "coordonnees_gps": [ + 49.6934508264, + 3.66411841593 + ], + "libelle_d_acheminement": "MORTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66411841593, + 49.6934508264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5318c83d9e2cd84f7cffa363dde3efd023d67558", + "fields": { + "code_commune_insee": "02541", + "nom_de_la_commune": "NEUFCHATEL SUR AISNE", + "code_postal": "02190", + "coordonnees_gps": [ + 49.4367296826, + 4.0236471269 + ], + "libelle_d_acheminement": "NEUFCHATEL SUR AISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0236471269, + 49.4367296826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f39ac9113a0d6275dfd134ea39383a1bc30aa659", + "fields": { + "code_commune_insee": "02547", + "nom_de_la_commune": "LA NEUVILLE HOUSSET", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7881379377, + 3.73171627307 + ], + "libelle_d_acheminement": "LA NEUVILLE HOUSSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73171627307, + 49.7881379377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95699f625442b5c22d913a96f74b2ca2ebe9155f", + "fields": { + "code_commune_insee": "02554", + "nom_de_la_commune": "NOGENTEL", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0140758623, + 3.40340404208 + ], + "libelle_d_acheminement": "NOGENTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40340404208, + 49.0140758623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c85c6f360a8103dd906c2942550b55f137384109", + "fields": { + "ligne_5": "PONT A BUCY", + "code_commune_insee": "02559", + "libelle_d_acheminement": "NOUVION ET CATILLON", + "code_postal": "02270", + "nom_de_la_commune": "NOUVION ET CATILLON", + "coordonnees_gps": [ + 49.7075667391, + 3.49359729343 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49359729343, + 49.7075667391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "895fbc337637a01f50113a5dd50645166d50ce0b", + "fields": { + "code_commune_insee": "02562", + "nom_de_la_commune": "NOUVRON VINGRE", + "code_postal": "02290", + "coordonnees_gps": [ + 49.4333492, + 3.18803179842 + ], + "libelle_d_acheminement": "NOUVRON VINGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18803179842, + 49.4333492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8fbbd94602ba652f9fda492300f2758760ab56e", + "fields": { + "code_commune_insee": "02569", + "nom_de_la_commune": "OISY", + "code_postal": "02450", + "coordonnees_gps": [ + 50.0229089259, + 3.65273893683 + ], + "libelle_d_acheminement": "OISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65273893683, + 50.0229089259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce84d7072abb874668c556a62be331858f689e3f", + "fields": { + "code_commune_insee": "02575", + "nom_de_la_commune": "ORIGNY STE BENOITE", + "code_postal": "02390", + "coordonnees_gps": [ + 49.8268502674, + 3.52909324665 + ], + "libelle_d_acheminement": "ORIGNY STE BENOITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52909324665, + 49.8268502674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08da44124c871d1fa11c186c81d516fbd1a9db2e", + "fields": { + "code_commune_insee": "02578", + "nom_de_la_commune": "OULCHES LA VALLEE FOULON", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4311311984, + 3.73966290896 + ], + "libelle_d_acheminement": "OULCHES LA VALLEE FOULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73966290896, + 49.4311311984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a7aedb309a7c24ca36ce1d653036bd5113f9ecf", + "fields": { + "code_commune_insee": "02580", + "nom_de_la_commune": "OULCHY LE CHATEAU", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2070701806, + 3.38202413773 + ], + "libelle_d_acheminement": "OULCHY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38202413773, + 49.2070701806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32f53759482ab801cb66eddf39d262979bd889bf", + "fields": { + "code_commune_insee": "02585", + "nom_de_la_commune": "PARCY ET TIGNY", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2703704352, + 3.32906709704 + ], + "libelle_d_acheminement": "PARCY ET TIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32906709704, + 49.2703704352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31c972733f74c45531eb718b8898ebe11c1ddacf", + "fields": { + "code_commune_insee": "02591", + "nom_de_la_commune": "PARGNY LES BOIS", + "code_postal": "02270", + "coordonnees_gps": [ + 49.7323072713, + 3.61788330529 + ], + "libelle_d_acheminement": "PARGNY LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61788330529, + 49.7323072713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fda278fcb313b8f4d2a21d4f8bb64def7f4d47d", + "fields": { + "code_commune_insee": "02593", + "nom_de_la_commune": "PASLY", + "code_postal": "02200", + "coordonnees_gps": [ + 49.4022800131, + 3.29799527999 + ], + "libelle_d_acheminement": "PASLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29799527999, + 49.4022800131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54508f5d624488afc9ad37576b796319d7716702", + "fields": { + "code_commune_insee": "02607", + "nom_de_la_commune": "PLOISY", + "code_postal": "02200", + "coordonnees_gps": [ + 49.330941238, + 3.27456677749 + ], + "libelle_d_acheminement": "PLOISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27456677749, + 49.330941238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bd275e56e9da304ecee3b79ced41fde3b30a5c4", + "fields": { + "code_commune_insee": "02614", + "nom_de_la_commune": "PONTRU", + "code_postal": "02490", + "coordonnees_gps": [ + 49.921599489, + 3.20120191987 + ], + "libelle_d_acheminement": "PONTRU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20120191987, + 49.921599489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fedf5d226e99a6b0c6173074e56d6771de5ac03", + "fields": { + "code_commune_insee": "02622", + "nom_de_la_commune": "PRIEZ", + "code_postal": "02470", + "coordonnees_gps": [ + 49.1306197467, + 3.26280717645 + ], + "libelle_d_acheminement": "PRIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26280717645, + 49.1306197467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b61552a69ace19ee6618d5a3edb6a242bf4b1f51", + "fields": { + "code_commune_insee": "02624", + "nom_de_la_commune": "PROISY", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8906172484, + 3.75241120947 + ], + "libelle_d_acheminement": "PROISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75241120947, + 49.8906172484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e7fcc54127d8ed68a2729a878d04c80c2675870", + "fields": { + "code_commune_insee": "02634", + "nom_de_la_commune": "RAILLIMONT", + "code_postal": "02360", + "coordonnees_gps": [ + 49.701759318, + 4.15934737957 + ], + "libelle_d_acheminement": "RAILLIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15934737957, + 49.701759318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d18a40b25efc20c9d7d8137ca45d704a4d790848", + "fields": { + "code_commune_insee": "02651", + "nom_de_la_commune": "ROGECOURT", + "code_postal": "02800", + "coordonnees_gps": [ + 49.6492919859, + 3.41550074354 + ], + "libelle_d_acheminement": "ROGECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41550074354, + 49.6492919859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74a2fbfad261efadec9ae795a246210a12e7204b", + "fields": { + "code_commune_insee": "02655", + "nom_de_la_commune": "RONCHERES", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1398358197, + 3.60245169493 + ], + "libelle_d_acheminement": "RONCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60245169493, + 49.1398358197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ce84b0e8118cc0e9672a37966738189c04288ec", + "fields": { + "code_commune_insee": "02657", + "nom_de_la_commune": "ROUGERIES", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8056045885, + 3.78694787331 + ], + "libelle_d_acheminement": "ROUGERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78694787331, + 49.8056045885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20a8e833d22d5e03d7776a0461aca3715d01d0d4", + "fields": { + "code_commune_insee": "02663", + "nom_de_la_commune": "ROZIERES SUR CRISE", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3227443516, + 3.37101592804 + ], + "libelle_d_acheminement": "ROZIERES SUR CRISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37101592804, + 49.3227443516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e48a5fa7fd7c81e99501638e1809717a2e924c87", + "fields": { + "code_commune_insee": "02666", + "nom_de_la_commune": "ROZOY SUR SERRE", + "code_postal": "02360", + "coordonnees_gps": [ + 49.706447861, + 4.13134010865 + ], + "libelle_d_acheminement": "ROZOY SUR SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13134010865, + 49.706447861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d9d8c0c9a2e3dcdd41acd62043709572ef8a1e1", + "fields": { + "code_commune_insee": "02678", + "nom_de_la_commune": "STE GENEVIEVE", + "code_postal": "02340", + "coordonnees_gps": [ + 49.7247039611, + 4.07368196391 + ], + "libelle_d_acheminement": "STE GENEVIEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07368196391, + 49.7247039611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ba59007816a9d04c842329222a1057ec873524e", + "fields": { + "code_commune_insee": "02687", + "nom_de_la_commune": "ST PIERRE AIGLE", + "code_postal": "02600", + "coordonnees_gps": [ + 49.3121621719, + 3.19602649155 + ], + "libelle_d_acheminement": "ST PIERRE AIGLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19602649155, + 49.3121621719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "107fe8b1130f08d78ed779a456e6d535f0ac6b37", + "fields": { + "code_commune_insee": "02693", + "nom_de_la_commune": "ST REMY BLANZY", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2457583592, + 3.30773725902 + ], + "libelle_d_acheminement": "ST REMY BLANZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30773725902, + 49.2457583592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb8962f350ad12164ea1346b2f3d02c868ca26a4", + "fields": { + "code_commune_insee": "02698", + "nom_de_la_commune": "SANCY LES CHEMINOTS", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4393806827, + 3.47649552313 + ], + "libelle_d_acheminement": "SANCY LES CHEMINOTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47649552313, + 49.4393806827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d702ede9e3e210e3ac3ce1bc99ccbf75d551506f", + "fields": { + "code_commune_insee": "02703", + "nom_de_la_commune": "SEBONCOURT", + "code_postal": "02110", + "coordonnees_gps": [ + 49.9626066437, + 3.49425998163 + ], + "libelle_d_acheminement": "SEBONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49425998163, + 49.9626066437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3261aa261a955fd3a30913d9a882eb718102c988", + "fields": { + "code_commune_insee": "02704", + "nom_de_la_commune": "SELENS", + "code_postal": "02300", + "coordonnees_gps": [ + 49.4943706034, + 3.20586043656 + ], + "libelle_d_acheminement": "SELENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20586043656, + 49.4943706034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1018d462a349ade09f847e29a6f8377b839a5d57", + "fields": { + "code_commune_insee": "02705", + "nom_de_la_commune": "LA SELVE", + "code_postal": "02150", + "coordonnees_gps": [ + 49.5698786702, + 3.99524867672 + ], + "libelle_d_acheminement": "LA SELVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99524867672, + 49.5698786702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcbb8c5cf6f7cf8ba298ab49bd93229f7b46a212", + "fields": { + "code_commune_insee": "02710", + "nom_de_la_commune": "SERAUCOURT LE GRAND", + "code_postal": "02790", + "coordonnees_gps": [ + 49.780519235, + 3.21829749297 + ], + "libelle_d_acheminement": "SERAUCOURT LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21829749297, + 49.780519235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3531a315909cec7ce06b30d2bc650c2a4756d002", + "fields": { + "code_commune_insee": "02718", + "nom_de_la_commune": "SILLY LA POTERIE", + "code_postal": "02460", + "coordonnees_gps": [ + 49.1959898805, + 3.15010276155 + ], + "libelle_d_acheminement": "SILLY LA POTERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15010276155, + 49.1959898805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70ec1fd9699e33370d74a4009527dfb48f31bc45", + "fields": { + "code_commune_insee": "02723", + "nom_de_la_commune": "SOIZE", + "code_postal": "02340", + "coordonnees_gps": [ + 49.6977848851, + 4.08583269025 + ], + "libelle_d_acheminement": "SOIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08583269025, + 49.6977848851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38e48e6853283e8da2e24a2f2d496d658055b048", + "fields": { + "code_commune_insee": "02734", + "nom_de_la_commune": "TAILLEFONTAINE", + "code_postal": "02600", + "coordonnees_gps": [ + 49.3099328056, + 3.04962539056 + ], + "libelle_d_acheminement": "TAILLEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04962539056, + 49.3099328056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a3689fe6b585e0403cfbae57c20e48a464e8b1e", + "fields": { + "code_commune_insee": "02735", + "nom_de_la_commune": "TANNIERES", + "code_postal": "02220", + "coordonnees_gps": [ + 49.2873370949, + 3.55040892873 + ], + "libelle_d_acheminement": "TANNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55040892873, + 49.2873370949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2f1ba0067e6f69108ffa43cee4ebdcad3a3b5f2", + "fields": { + "code_commune_insee": "02736", + "nom_de_la_commune": "TARTIERS", + "code_postal": "02290", + "coordonnees_gps": [ + 49.4400811642, + 3.23156556276 + ], + "libelle_d_acheminement": "TARTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23156556276, + 49.4400811642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7de5970d869f427cba47713bd1e39c028fa515d", + "fields": { + "ligne_5": "VOUEL", + "code_commune_insee": "02738", + "libelle_d_acheminement": "TERGNIER", + "code_postal": "02700", + "nom_de_la_commune": "TERGNIER", + "coordonnees_gps": [ + 49.6572646109, + 3.29924077478 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29924077478, + 49.6572646109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9dbb0aa4af169be690c3a46c4c9261d159b1c2d", + "fields": { + "code_commune_insee": "02744", + "nom_de_la_commune": "TORCY EN VALOIS", + "code_postal": "02810", + "coordonnees_gps": [ + 49.0828638075, + 3.27358839647 + ], + "libelle_d_acheminement": "TORCY EN VALOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27358839647, + 49.0828638075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40f35899e45ca38075c37e0f3bd703d215f025ed", + "fields": { + "code_commune_insee": "02746", + "nom_de_la_commune": "TRAVECY", + "code_postal": "02800", + "coordonnees_gps": [ + 49.6858217171, + 3.34481845935 + ], + "libelle_d_acheminement": "TRAVECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34481845935, + 49.6858217171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f63fa4eeb99dbce1fd126fe82ab6352279192f6", + "fields": { + "code_commune_insee": "02750", + "nom_de_la_commune": "TROSLY LOIRE", + "code_postal": "02300", + "coordonnees_gps": [ + 49.5175794818, + 3.23167717474 + ], + "libelle_d_acheminement": "TROSLY LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23167717474, + 49.5175794818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6e1ec92f3e0c7aa8ae3cd677ce8cfb4cc3ceeaa", + "fields": { + "code_commune_insee": "02763", + "nom_de_la_commune": "VASSENY", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3556275252, + 3.48910249175 + ], + "libelle_d_acheminement": "VASSENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48910249175, + 49.3556275252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "580214c94921c571c7630f3d0739e6db8ff4af3b", + "fields": { + "code_commune_insee": "02764", + "nom_de_la_commune": "VASSOGNE", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4200443432, + 3.72979191104 + ], + "libelle_d_acheminement": "VASSOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72979191104, + 49.4200443432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80d471b76101c1f11a7fa1366713d27b3bc9e67a", + "fields": { + "code_commune_insee": "02765", + "nom_de_la_commune": "VAUCELLES ET BEFFECOURT", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5206900038, + 3.55877460724 + ], + "libelle_d_acheminement": "VAUCELLES ET BEFFECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55877460724, + 49.5206900038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b13a7464f36ddc7e31a806a9d1fda58e5135b8f", + "fields": { + "code_commune_insee": "02772", + "nom_de_la_commune": "VAUX EN VERMANDOIS", + "code_postal": "02590", + "coordonnees_gps": [ + 49.8238668444, + 3.13578987374 + ], + "libelle_d_acheminement": "VAUX EN VERMANDOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13578987374, + 49.8238668444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c056a8f8efce43895c5e90c562fcef7604035fa", + "fields": { + "code_commune_insee": "02773", + "nom_de_la_commune": "VAUXTIN", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3454673056, + 3.60165884249 + ], + "libelle_d_acheminement": "VAUXTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60165884249, + 49.3454673056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc324a6e5f81fb1a619cf269525200d59dbcb9e3", + "fields": { + "code_commune_insee": "02775", + "nom_de_la_commune": "VENDEUIL", + "code_postal": "02800", + "coordonnees_gps": [ + 49.719870808, + 3.3449169008 + ], + "libelle_d_acheminement": "VENDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3449169008, + 49.719870808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a821ff78b69e94cbee38e31d593235153f09778", + "fields": { + "code_commune_insee": "02777", + "nom_de_la_commune": "VENDIERES", + "code_postal": "02540", + "coordonnees_gps": [ + 48.8731710961, + 3.44301787703 + ], + "libelle_d_acheminement": "VENDIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44301787703, + 48.8731710961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f0787eb5e53acd46073000612ce0bdb43cbaa82", + "fields": { + "code_commune_insee": "02781", + "nom_de_la_commune": "VERDILLY", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0744862502, + 3.42189905232 + ], + "libelle_d_acheminement": "VERDILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42189905232, + 49.0744862502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27db29c93f22980f34a46c8720080c957a731449", + "fields": { + "code_commune_insee": "02783", + "nom_de_la_commune": "GRAND VERLY", + "code_postal": "02120", + "coordonnees_gps": [ + 49.9434199886, + 3.58138282505 + ], + "libelle_d_acheminement": "GRAND VERLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58138282505, + 49.9434199886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4aef996cf95b6ca129100306f07fb6d55d439b8", + "fields": { + "code_commune_insee": "02785", + "nom_de_la_commune": "VERMAND", + "code_postal": "02490", + "coordonnees_gps": [ + 49.8839098456, + 3.15146515668 + ], + "libelle_d_acheminement": "VERMAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15146515668, + 49.8839098456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00ad1bf39c563907a20d8922e8ad3d3d22156d55", + "fields": { + "code_commune_insee": "02801", + "nom_de_la_commune": "VIGNEUX HOCQUET", + "code_postal": "02340", + "coordonnees_gps": [ + 49.7440393657, + 3.99489165596 + ], + "libelle_d_acheminement": "VIGNEUX HOCQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99489165596, + 49.7440393657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6571dddf80ba3abaef6ab51188b1f9d84e15e210", + "fields": { + "code_commune_insee": "02804", + "nom_de_la_commune": "VILLEMONTOIRE", + "code_postal": "02210", + "coordonnees_gps": [ + 49.3000199564, + 3.32189672243 + ], + "libelle_d_acheminement": "VILLEMONTOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32189672243, + 49.3000199564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b621ef97b756ec99dbb513fcca89058c7cda9886", + "fields": { + "code_commune_insee": "02805", + "nom_de_la_commune": "VILLENEUVE ST GERMAIN", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3789013616, + 3.36175815803 + ], + "libelle_d_acheminement": "VILLENEUVE ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36175815803, + 49.3789013616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b98093fcaf5559d0b6706fe7ea2a1026ac880187", + "fields": { + "code_commune_insee": "02806", + "nom_de_la_commune": "VILLENEUVE SUR FERE", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1706936984, + 3.47593842959 + ], + "libelle_d_acheminement": "VILLENEUVE SUR FERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47593842959, + 49.1706936984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4085cd352f7ddedd7d3e1c7e58a507749281121", + "fields": { + "code_commune_insee": "02809", + "nom_de_la_commune": "VILLERS AGRON AIGUIZY", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1632072457, + 3.71636244573 + ], + "libelle_d_acheminement": "VILLERS AGRON AIGUIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71636244573, + 49.1632072457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "590d7a8247db7b1abbbaf52bc0d76ce99d128bf4", + "fields": { + "code_commune_insee": "02819", + "nom_de_la_commune": "VINCY REUIL ET MAGNY", + "code_postal": "02340", + "coordonnees_gps": [ + 49.7140295341, + 4.04512127967 + ], + "libelle_d_acheminement": "VINCY REUIL ET MAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04512127967, + 49.7140295341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "537f1f1ad0d775bd94f37c2c50dadd86f66e2c8b", + "fields": { + "code_commune_insee": "02822", + "nom_de_la_commune": "VIVIERES", + "code_postal": "02600", + "coordonnees_gps": [ + 49.3051885401, + 3.09196075945 + ], + "libelle_d_acheminement": "VIVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09196075945, + 49.3051885401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50e5819d794b3fcbbb7b90509d523f3d71f91b01", + "fields": { + "code_commune_insee": "02834", + "nom_de_la_commune": "WISSIGNICOURT", + "code_postal": "02320", + "coordonnees_gps": [ + 49.5301896159, + 3.44102073707 + ], + "libelle_d_acheminement": "WISSIGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44102073707, + 49.5301896159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01896eea1c4da2e90c72c2b5372ebdd57af653ff", + "fields": { + "code_commune_insee": "03008", + "nom_de_la_commune": "ARRONNES", + "code_postal": "03250", + "coordonnees_gps": [ + 46.0520854633, + 3.57527535836 + ], + "libelle_d_acheminement": "ARRONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57527535836, + 46.0520854633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9904c8437dfda6640b8a6979e60d3d152f9625c", + "fields": { + "code_commune_insee": "03012", + "nom_de_la_commune": "AUTRY ISSARDS", + "code_postal": "03210", + "coordonnees_gps": [ + 46.5445755503, + 3.12273629246 + ], + "libelle_d_acheminement": "AUTRY ISSARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12273629246, + 46.5445755503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32f0dbb56250acbde0cb9e165f310c6eb70ea313", + "fields": { + "code_commune_insee": "03014", + "nom_de_la_commune": "AVRILLY", + "code_postal": "03130", + "coordonnees_gps": [ + 46.332137774, + 3.96662161873 + ], + "libelle_d_acheminement": "AVRILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96662161873, + 46.332137774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6fd2cb5f0a86102e095be04b6f905f89a274796", + "fields": { + "code_commune_insee": "03051", + "nom_de_la_commune": "CHAMBERAT", + "code_postal": "03370", + "coordonnees_gps": [ + 46.4139665556, + 2.42552132856 + ], + "libelle_d_acheminement": "CHAMBERAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42552132856, + 46.4139665556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2f98b01d91a0af0002be3f669f301d08279dc71", + "fields": { + "code_commune_insee": "03052", + "nom_de_la_commune": "CHAMBLET", + "code_postal": "03170", + "coordonnees_gps": [ + 46.3283879186, + 2.71331446339 + ], + "libelle_d_acheminement": "CHAMBLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71331446339, + 46.3283879186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5a0a30facebf63e135305454fbda48f0939ee04", + "fields": { + "code_commune_insee": "03068", + "nom_de_la_commune": "CHATELUS", + "code_postal": "03120", + "coordonnees_gps": [ + 46.1980382828, + 3.72511111092 + ], + "libelle_d_acheminement": "CHATELUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72511111092, + 46.1980382828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af7a7783b882122bee6a0dac8e043f354e4d9d6a", + "fields": { + "code_commune_insee": "03087", + "nom_de_la_commune": "COULEUVRE", + "code_postal": "03320", + "coordonnees_gps": [ + 46.6740683179, + 2.89685534446 + ], + "libelle_d_acheminement": "COULEUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89685534446, + 46.6740683179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a806190fddd252e09348dc7a1415eef8a92a8f89", + "fields": { + "code_commune_insee": "03090", + "nom_de_la_commune": "COUZON", + "code_postal": "03160", + "coordonnees_gps": [ + 46.6443750911, + 3.11347416578 + ], + "libelle_d_acheminement": "COUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11347416578, + 46.6443750911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c7a72e20e884a1f3627f589ca3fb2a492c1da6c", + "fields": { + "code_commune_insee": "03107", + "nom_de_la_commune": "EBREUIL", + "code_postal": "03450", + "coordonnees_gps": [ + 46.1176543632, + 3.07363121151 + ], + "libelle_d_acheminement": "EBREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07363121151, + 46.1176543632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "225e4aadea33d85d24a8a3e3ce311ad777f066fb", + "fields": { + "code_commune_insee": "03113", + "nom_de_la_commune": "FERRIERES SUR SICHON", + "code_postal": "03250", + "coordonnees_gps": [ + 46.0200050808, + 3.64850064576 + ], + "libelle_d_acheminement": "FERRIERES SUR SICHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64850064576, + 46.0200050808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05b15f9668e1cd288be87ff1385bc084a4324e50", + "fields": { + "code_commune_insee": "03116", + "nom_de_la_commune": "FOURILLES", + "code_postal": "03140", + "coordonnees_gps": [ + 46.2438583922, + 3.19784046802 + ], + "libelle_d_acheminement": "FOURILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19784046802, + 46.2438583922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "388831c7fa15fceb606e5fd8b306a46baa813b16", + "fields": { + "code_commune_insee": "03132", + "nom_de_la_commune": "JALIGNY SUR BESBRE", + "code_postal": "03220", + "coordonnees_gps": [ + 46.3770497759, + 3.59029838546 + ], + "libelle_d_acheminement": "JALIGNY SUR BESBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59029838546, + 46.3770497759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2347bfc1acb84e45bd5905cfcf9219950d07b6e", + "fields": { + "code_commune_insee": "03134", + "nom_de_la_commune": "LAFELINE", + "code_postal": "03500", + "coordonnees_gps": [ + 46.3446298238, + 3.17548675407 + ], + "libelle_d_acheminement": "LAFELINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17548675407, + 46.3446298238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd778ffbeafa5abad35d3306989fb9b8b4742f61", + "fields": { + "code_commune_insee": "03141", + "nom_de_la_commune": "LAVOINE", + "code_postal": "03250", + "coordonnees_gps": [ + 45.9741706627, + 3.68733506061 + ], + "libelle_d_acheminement": "LAVOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68733506061, + 45.9741706627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb88b05aac2e8a1be608c87783d27df459dca938", + "fields": { + "code_commune_insee": "03151", + "nom_de_la_commune": "LOUROUX DE BEAUNE", + "code_postal": "03600", + "coordonnees_gps": [ + 46.2996042062, + 2.85942062102 + ], + "libelle_d_acheminement": "LOUROUX DE BEAUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85942062102, + 46.2996042062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c0a6b80c53908b3cd91876645e8b7f1e4440663", + "fields": { + "ligne_5": "VITRAY", + "code_commune_insee": "03168", + "libelle_d_acheminement": "MEAULNE VITRAY", + "code_postal": "03360", + "nom_de_la_commune": "MEAULNE VITRAY", + "coordonnees_gps": [ + 46.5959256579, + 2.62022117679 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62022117679, + 46.5959256579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3535e2626bffe5e8ab62421135d8db6ae1b9c40e", + "fields": { + "code_commune_insee": "03170", + "nom_de_la_commune": "MEILLERS", + "code_postal": "03210", + "coordonnees_gps": [ + 46.5132615599, + 3.10267194059 + ], + "libelle_d_acheminement": "MEILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10267194059, + 46.5132615599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "306a54bb4dd8f057f49d3e356742ec6683ae7e43", + "fields": { + "code_commune_insee": "03182", + "nom_de_la_commune": "MONTEIGNET SUR L ANDELOT", + "code_postal": "03800", + "coordonnees_gps": [ + 46.1150007655, + 3.24811283769 + ], + "libelle_d_acheminement": "MONTEIGNET SUR L ANDELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24811283769, + 46.1150007655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19410fe2bf6dcf96075045e606b2f192eb95001e", + "fields": { + "code_commune_insee": "03183", + "nom_de_la_commune": "LE MONTET", + "code_postal": "03240", + "coordonnees_gps": [ + 46.4062028922, + 3.0541000253 + ], + "libelle_d_acheminement": "LE MONTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0541000253, + 46.4062028922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29095215b06108b44df6dff8863849ba81d1249a", + "fields": { + "code_commune_insee": "03184", + "nom_de_la_commune": "MONTILLY", + "code_postal": "03000", + "coordonnees_gps": [ + 46.610528559, + 3.24005745558 + ], + "libelle_d_acheminement": "MONTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24005745558, + 46.610528559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57e686545abad3916fd0ed214ab771669ab7cb95", + "fields": { + "code_commune_insee": "03187", + "nom_de_la_commune": "MONTOLDRE", + "code_postal": "03150", + "coordonnees_gps": [ + 46.3375770064, + 3.45102443628 + ], + "libelle_d_acheminement": "MONTOLDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45102443628, + 46.3375770064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e6a7b80d0ea22a76a0cc1b42c26430b91ba3a94", + "fields": { + "code_commune_insee": "03190", + "nom_de_la_commune": "MOULINS", + "code_postal": "03000", + "coordonnees_gps": [ + 46.5624641056, + 3.32662040221 + ], + "libelle_d_acheminement": "MOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32662040221, + 46.5624641056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8c933ef95f70bcd998640a70fe4f1c1995620b2", + "fields": { + "code_commune_insee": "03192", + "nom_de_la_commune": "NADES", + "code_postal": "03450", + "coordonnees_gps": [ + 46.1542506646, + 2.96861834904 + ], + "libelle_d_acheminement": "NADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96861834904, + 46.1542506646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "017cfff70a6426203f68d2113aaa3eadf7f462cf", + "fields": { + "code_commune_insee": "03194", + "nom_de_la_commune": "NAVES", + "code_postal": "03330", + "coordonnees_gps": [ + 46.1760532799, + 3.11644371952 + ], + "libelle_d_acheminement": "NAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11644371952, + 46.1760532799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f7644c19b314893ad4699771d849dbf6b30015e", + "fields": { + "code_commune_insee": "03195", + "nom_de_la_commune": "NERIS LES BAINS", + "code_postal": "03310", + "coordonnees_gps": [ + 46.2994420207, + 2.67574785449 + ], + "libelle_d_acheminement": "NERIS LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67574785449, + 46.2994420207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78e6d75f423ab7d1f8729eabd4b827ccfe7429ae", + "fields": { + "code_commune_insee": "03201", + "nom_de_la_commune": "NIZEROLLES", + "code_postal": "03250", + "coordonnees_gps": [ + 46.1072966632, + 3.64408039597 + ], + "libelle_d_acheminement": "NIZEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64408039597, + 46.1072966632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ff959b463a596ef6183f4fcce161caa7ac38541", + "fields": { + "code_commune_insee": "03205", + "nom_de_la_commune": "PERIGNY", + "code_postal": "03120", + "coordonnees_gps": [ + 46.2466695762, + 3.56039743926 + ], + "libelle_d_acheminement": "PERIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56039743926, + 46.2466695762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd0e314930e70aecef5e9be051cffbc957b27dc6", + "fields": { + "code_commune_insee": "03212", + "nom_de_la_commune": "QUINSSAINES", + "code_postal": "03380", + "coordonnees_gps": [ + 46.3092023874, + 2.49444625529 + ], + "libelle_d_acheminement": "QUINSSAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49444625529, + 46.3092023874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05ad7a0eb7d56132e577659330b1ccb6f03530a5", + "fields": { + "code_commune_insee": "03218", + "nom_de_la_commune": "ST AUBIN LE MONIAL", + "code_postal": "03160", + "coordonnees_gps": [ + 46.535765709, + 3.00144398409 + ], + "libelle_d_acheminement": "ST AUBIN LE MONIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00144398409, + 46.535765709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffa94ad05cce66040107a6c7fce145946903ce04", + "fields": { + "code_commune_insee": "03220", + "nom_de_la_commune": "ST BONNET DE ROCHEFORT", + "code_postal": "03800", + "coordonnees_gps": [ + 46.1505309834, + 3.14079379444 + ], + "libelle_d_acheminement": "ST BONNET DE ROCHEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14079379444, + 46.1505309834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e61c5ea7bef1f1d5e80ba1033107eeff98fa3bde", + "fields": { + "code_commune_insee": "03227", + "nom_de_la_commune": "ST DIDIER LA FORET", + "code_postal": "03110", + "coordonnees_gps": [ + 46.2294445001, + 3.33625437059 + ], + "libelle_d_acheminement": "ST DIDIER LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33625437059, + 46.2294445001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18a236b50dc651a491ce296529e090286ccc6d5d", + "fields": { + "code_commune_insee": "03230", + "nom_de_la_commune": "ST ETIENNE DE VICQ", + "code_postal": "03300", + "coordonnees_gps": [ + 46.1731804107, + 3.53616252147 + ], + "libelle_d_acheminement": "ST ETIENNE DE VICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53616252147, + 46.1731804107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cc53aabacb4481e835ddf263e5e4a64ee7189c3", + "fields": { + "code_commune_insee": "03235", + "nom_de_la_commune": "ST GERAND LE PUY", + "code_postal": "03150", + "coordonnees_gps": [ + 46.2637640044, + 3.51175451596 + ], + "libelle_d_acheminement": "ST GERAND LE PUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51175451596, + 46.2637640044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37e16865012aa1948b68fed26a2c6ac25d29a7c3", + "fields": { + "code_commune_insee": "03239", + "nom_de_la_commune": "ST LEGER SUR VOUZANCE", + "code_postal": "03130", + "coordonnees_gps": [ + 46.4092021906, + 3.93725507717 + ], + "libelle_d_acheminement": "ST LEGER SUR VOUZANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93725507717, + 46.4092021906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a97e1d20f13462f3f727a026e1835368234984d4", + "fields": { + "code_commune_insee": "03250", + "nom_de_la_commune": "ST PIERRE LAVAL", + "code_postal": "42620", + "coordonnees_gps": [ + 46.1954561376, + 3.77027031369 + ], + "libelle_d_acheminement": "ST PIERRE LAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77027031369, + 46.1954561376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f8cb54c2d6f0007618dc14e82b5edfd60ad2a40", + "fields": { + "code_commune_insee": "03258", + "nom_de_la_commune": "ST REMY EN ROLLAT", + "code_postal": "03110", + "coordonnees_gps": [ + 46.1924635321, + 3.38335990994 + ], + "libelle_d_acheminement": "ST REMY EN ROLLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38335990994, + 46.1924635321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23d4c662fbcf264266c52795dce8a2a0f028a025", + "fields": { + "code_commune_insee": "03264", + "nom_de_la_commune": "ST YORRE", + "code_postal": "03270", + "coordonnees_gps": [ + 46.0642575713, + 3.46749665689 + ], + "libelle_d_acheminement": "ST YORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46749665689, + 46.0642575713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10f267608f5f0ac1c6e7b324f9f5b689da290bad", + "fields": { + "code_commune_insee": "03265", + "nom_de_la_commune": "SALIGNY SUR ROUDON", + "code_postal": "03470", + "coordonnees_gps": [ + 46.4629712549, + 3.75125723141 + ], + "libelle_d_acheminement": "SALIGNY SUR ROUDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75125723141, + 46.4629712549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f4642cc3d1b29c3a411826f8ee2b8ace4084ec9", + "fields": { + "code_commune_insee": "03268", + "nom_de_la_commune": "SAULZET", + "code_postal": "03800", + "coordonnees_gps": [ + 46.1377242918, + 3.22134877309 + ], + "libelle_d_acheminement": "SAULZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22134877309, + 46.1377242918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65c1ac80bddd389e73fc5ace730c9794e40ddad7", + "fields": { + "code_commune_insee": "03273", + "nom_de_la_commune": "SEUILLET", + "code_postal": "03260", + "coordonnees_gps": [ + 46.2045684264, + 3.46787844535 + ], + "libelle_d_acheminement": "SEUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46787844535, + 46.2045684264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef9f2d5a29befc1464eb4f16542e260650905180", + "fields": { + "code_commune_insee": "03284", + "nom_de_la_commune": "THIONNE", + "code_postal": "03220", + "coordonnees_gps": [ + 46.4118104465, + 3.57326147664 + ], + "libelle_d_acheminement": "THIONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57326147664, + 46.4118104465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a121b3d571212c8a0c8b83100344127eddad0487", + "fields": { + "code_commune_insee": "03297", + "nom_de_la_commune": "VALLON EN SULLY", + "code_postal": "03190", + "coordonnees_gps": [ + 46.5401383727, + 2.61674884517 + ], + "libelle_d_acheminement": "VALLON EN SULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61674884517, + 46.5401383727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef419c635535478b65e27cc0538bf76716ef540e", + "fields": { + "code_commune_insee": "03301", + "nom_de_la_commune": "VAUX", + "code_postal": "03190", + "coordonnees_gps": [ + 46.4214002132, + 2.57435492547 + ], + "libelle_d_acheminement": "VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57435492547, + 46.4214002132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9177a42454bdfa7b0ed2d686d450793a17f9f244", + "fields": { + "code_commune_insee": "03303", + "nom_de_la_commune": "VENAS", + "code_postal": "03190", + "coordonnees_gps": [ + 46.4727802173, + 2.76726504 + ], + "libelle_d_acheminement": "VENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76726504, + 46.4727802173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e3a6d8b99215357083365acc244ef7728707e83", + "fields": { + "code_commune_insee": "03306", + "nom_de_la_commune": "LE VERNET", + "code_postal": "03200", + "coordonnees_gps": [ + 46.1067527363, + 3.47492140254 + ], + "libelle_d_acheminement": "LE VERNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47492140254, + 46.1067527363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7d5a283982d86e0f108733f7877460feb6d507a", + "fields": { + "code_commune_insee": "03307", + "nom_de_la_commune": "VERNEUIL EN BOURBONNAIS", + "code_postal": "03500", + "coordonnees_gps": [ + 46.3540600283, + 3.25057881171 + ], + "libelle_d_acheminement": "VERNEUIL EN BOURBONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25057881171, + 46.3540600283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "243a8f844140002d1832b42ac92fe9ac27bf2980", + "fields": { + "code_commune_insee": "03312", + "nom_de_la_commune": "VIEURE", + "code_postal": "03430", + "coordonnees_gps": [ + 46.5001110432, + 2.88222237454 + ], + "libelle_d_acheminement": "VIEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88222237454, + 46.5001110432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12daf9500838669106bf1dfc4aeb8bed9ea35202", + "fields": { + "code_commune_insee": "03315", + "nom_de_la_commune": "VILLEFRANCHE D ALLIER", + "code_postal": "03430", + "coordonnees_gps": [ + 46.3963110357, + 2.84126895926 + ], + "libelle_d_acheminement": "VILLEFRANCHE D ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84126895926, + 46.3963110357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70065f0a306e23dbdb10960e0d3329ac6153796d", + "fields": { + "code_commune_insee": "03320", + "nom_de_la_commune": "YGRANDE", + "code_postal": "03160", + "coordonnees_gps": [ + 46.5497137895, + 2.94199693043 + ], + "libelle_d_acheminement": "YGRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94199693043, + 46.5497137895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e55bcf4d5698f8653f6e2eeceacaa399e50e37d", + "fields": { + "code_commune_insee": "04001", + "nom_de_la_commune": "AIGLUN", + "code_postal": "04510", + "coordonnees_gps": [ + 44.0638744567, + 6.13842845338 + ], + "libelle_d_acheminement": "AIGLUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13842845338, + 44.0638744567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9bad4d3531e0277395f73645e20155a1c5cc57c", + "fields": { + "code_commune_insee": "04004", + "nom_de_la_commune": "ALLEMAGNE EN PROVENCE", + "code_postal": "04500", + "coordonnees_gps": [ + 43.7887902464, + 6.03091832001 + ], + "libelle_d_acheminement": "ALLEMAGNE EN PROVENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03091832001, + 43.7887902464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92e3de64037d12c6c0d3d5b2b36a5dea2815c160", + "fields": { + "code_commune_insee": "04005", + "nom_de_la_commune": "ALLONS", + "code_postal": "04170", + "coordonnees_gps": [ + 43.9803884973, + 6.59032744238 + ], + "libelle_d_acheminement": "ALLONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59032744238, + 43.9803884973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e8e4e377d30681f26028e42f747a8f5b7ac1e1b", + "fields": { + "code_commune_insee": "04006", + "nom_de_la_commune": "ALLOS", + "code_postal": "04260", + "coordonnees_gps": [ + 44.2614961379, + 6.62671789984 + ], + "libelle_d_acheminement": "ALLOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62671789984, + 44.2614961379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f755aa4176fb1c94af454bed7deef061d1e1f33d", + "fields": { + "code_commune_insee": "04013", + "nom_de_la_commune": "AUBIGNOSC", + "code_postal": "04200", + "coordonnees_gps": [ + 44.1182449561, + 5.95734484907 + ], + "libelle_d_acheminement": "AUBIGNOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95734484907, + 44.1182449561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86dfe56ae40e82ea1870fb094a95430953e25313", + "fields": { + "code_commune_insee": "04020", + "nom_de_la_commune": "BARLES", + "code_postal": "04140", + "coordonnees_gps": [ + 44.2730280199, + 6.25325743878 + ], + "libelle_d_acheminement": "BARLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25325743878, + 44.2730280199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "475e47adfa06168c38f91bf6a27f5c80fc810d47", + "fields": { + "code_commune_insee": "04025", + "nom_de_la_commune": "BEAUVEZER", + "code_postal": "04370", + "coordonnees_gps": [ + 44.1439752737, + 6.5977277471 + ], + "libelle_d_acheminement": "BEAUVEZER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5977277471, + 44.1439752737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "780804ec3f4c4fa38d5a0b641428f9c4ac80af91", + "fields": { + "code_commune_insee": "04030", + "nom_de_la_commune": "BLIEUX", + "code_postal": "04330", + "coordonnees_gps": [ + 43.8746274845, + 6.36279670798 + ], + "libelle_d_acheminement": "BLIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36279670798, + 43.8746274845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ca9280e7546cae9ab6c0e3bcff960aada5dead5", + "fields": { + "code_commune_insee": "04032", + "nom_de_la_commune": "BRAUX", + "code_postal": "04240", + "coordonnees_gps": [ + 43.993034454, + 6.69941127815 + ], + "libelle_d_acheminement": "BRAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69941127815, + 43.993034454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c6bf68231ac5833b368b5751383381d4674e518", + "fields": { + "code_commune_insee": "04036", + "nom_de_la_commune": "LE BRUSQUET", + "code_postal": "04420", + "coordonnees_gps": [ + 44.1681621392, + 6.30347351863 + ], + "libelle_d_acheminement": "LE BRUSQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30347351863, + 44.1681621392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2aed179373612f9035dbd226bb58673a4735427", + "fields": { + "ligne_5": "EOULX", + "code_commune_insee": "04039", + "libelle_d_acheminement": "CASTELLANE", + "code_postal": "04120", + "nom_de_la_commune": "CASTELLANE", + "coordonnees_gps": [ + 43.8449862174, + 6.49029842016 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49029842016, + 43.8449862174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fe2a5249b16e95c77fe11862d7ad9d071318bf3", + "fields": { + "ligne_5": "TALOIRE", + "code_commune_insee": "04039", + "libelle_d_acheminement": "CASTELLANE", + "code_postal": "04120", + "nom_de_la_commune": "CASTELLANE", + "coordonnees_gps": [ + 43.8449862174, + 6.49029842016 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49029842016, + 43.8449862174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cf2f512792a1df2c13bffc12ebe9514150687be", + "fields": { + "ligne_5": "VILLEVIEILLE", + "code_commune_insee": "04043", + "libelle_d_acheminement": "VAL DE CHALVAGNE", + "code_postal": "04320", + "nom_de_la_commune": "VAL DE CHALVAGNE", + "coordonnees_gps": [ + 43.9046374337, + 6.76578520195 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76578520195, + 43.9046374337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8b7b327c69c970a50358c3df86269e42cea3e4a", + "fields": { + "code_commune_insee": "04050", + "nom_de_la_commune": "CHATEAUFORT", + "code_postal": "04250", + "coordonnees_gps": [ + 44.2750461186, + 6.0296701152 + ], + "libelle_d_acheminement": "CHATEAUFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0296701152, + 44.2750461186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1df424bc91dc1e1d25b0744e9c2967e69e760a8", + "fields": { + "code_commune_insee": "04051", + "nom_de_la_commune": "CHATEAUNEUF MIRAVAIL", + "code_postal": "04200", + "coordonnees_gps": [ + 44.153315213, + 5.71757262461 + ], + "libelle_d_acheminement": "CHATEAUNEUF MIRAVAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71757262461, + 44.153315213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a42900f01c5869620582c02cdda356614cd77a3a", + "fields": { + "code_commune_insee": "04057", + "nom_de_la_commune": "CLAMENSANE", + "code_postal": "04250", + "coordonnees_gps": [ + 44.3282663642, + 6.07850180008 + ], + "libelle_d_acheminement": "CLAMENSANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07850180008, + 44.3282663642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0e3fe7aa2fdf294d083133e6d53deb06b34731b", + "fields": { + "code_commune_insee": "04061", + "nom_de_la_commune": "COLMARS", + "code_postal": "04370", + "coordonnees_gps": [ + 44.1724272821, + 6.6615406144 + ], + "libelle_d_acheminement": "COLMARS LES ALPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6615406144, + 44.1724272821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eab7414f5509ac69d2b8dc2a1e603af50cd406b", + "fields": { + "code_commune_insee": "04062", + "nom_de_la_commune": "LA CONDAMINE CHATELARD", + "code_postal": "04530", + "coordonnees_gps": [ + 44.4627686721, + 6.69629170403 + ], + "libelle_d_acheminement": "LA CONDAMINE CHATELARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69629170403, + 44.4627686721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44c643684d200ba9af1f077cc7ab0ca171abb8db", + "fields": { + "code_commune_insee": "04067", + "nom_de_la_commune": "CUREL", + "code_postal": "04200", + "coordonnees_gps": [ + 44.1766055073, + 5.67267464668 + ], + "libelle_d_acheminement": "CUREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67267464668, + 44.1766055073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6058ad4a8a7ef592ccf047b5e31264a95d5c9266", + "fields": { + "ligne_5": "LES DOURBES", + "code_commune_insee": "04070", + "libelle_d_acheminement": "DIGNE LES BAINS", + "code_postal": "04000", + "nom_de_la_commune": "DIGNE LES BAINS", + "coordonnees_gps": [ + 44.0908723554, + 6.23590323452 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23590323452, + 44.0908723554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd02536b4518c8b235bd5b954942a25372107382", + "fields": { + "code_commune_insee": "04073", + "nom_de_la_commune": "ENCHASTRAYES", + "code_postal": "04400", + "coordonnees_gps": [ + 44.3640085405, + 6.71028980662 + ], + "libelle_d_acheminement": "ENCHASTRAYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71028980662, + 44.3640085405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a5f3da64b8a2f9babbafba16a1633e04e44ee4c", + "fields": { + "ligne_5": "ST SYMPHORIEN", + "code_commune_insee": "04075", + "libelle_d_acheminement": "ENTREPIERRES", + "code_postal": "04200", + "nom_de_la_commune": "ENTREPIERRES", + "coordonnees_gps": [ + 44.1956537173, + 6.02224124199 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02224124199, + 44.1956537173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "786bb19f9e5061b5a52cfd0e0a2ed64450622a5b", + "fields": { + "code_commune_insee": "04081", + "nom_de_la_commune": "ESPARRON DE VERDON", + "code_postal": "04800", + "coordonnees_gps": [ + 43.7438250286, + 5.98891639232 + ], + "libelle_d_acheminement": "ESPARRON DE VERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98891639232, + 43.7438250286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ccf0977e0f960cb128bf061617e2fcadfa3764b", + "fields": { + "code_commune_insee": "04086", + "nom_de_la_commune": "FAUCON DE BARCELONNETTE", + "code_postal": "04400", + "coordonnees_gps": [ + 44.4135826726, + 6.67868075997 + ], + "libelle_d_acheminement": "FAUCON DE BARCELONNETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67868075997, + 44.4135826726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88ee89d6eec797f8907c26141d30acf04093836c", + "fields": { + "ligne_5": "ESCLANGON", + "code_commune_insee": "04097", + "libelle_d_acheminement": "LA JAVIE", + "code_postal": "04000", + "nom_de_la_commune": "LA JAVIE", + "coordonnees_gps": [ + 44.1971990157, + 6.32157607452 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32157607452, + 44.1971990157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dc409566e029140e89119a35147f0d7545790f9", + "fields": { + "code_commune_insee": "04102", + "nom_de_la_commune": "LE LAUZET UBAYE", + "code_postal": "04340", + "coordonnees_gps": [ + 44.432913878, + 6.41942527455 + ], + "libelle_d_acheminement": "LE LAUZET UBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41942527455, + 44.432913878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69d7bba12201285370d43ff9dae6a0fe18195cba", + "fields": { + "code_commune_insee": "04104", + "nom_de_la_commune": "LIMANS", + "code_postal": "04300", + "coordonnees_gps": [ + 43.986604993, + 5.72366425789 + ], + "libelle_d_acheminement": "LIMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72366425789, + 43.986604993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e66bc3f18b937a3613734604ff286d62b1a09fc0", + "fields": { + "code_commune_insee": "04113", + "nom_de_la_commune": "MARCOUX", + "code_postal": "04420", + "coordonnees_gps": [ + 44.128219237, + 6.28007885939 + ], + "libelle_d_acheminement": "MARCOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28007885939, + 44.128219237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a218be1c4cad50286c26f719278243763771dfa", + "fields": { + "code_commune_insee": "04116", + "nom_de_la_commune": "LES MEES", + "code_postal": "04190", + "coordonnees_gps": [ + 43.9944767361, + 5.96601755581 + ], + "libelle_d_acheminement": "LES MEES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96601755581, + 43.9944767361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "595918d99d3853a2cebc63bce1db589e9331b406", + "fields": { + "code_commune_insee": "04126", + "nom_de_la_commune": "MONTCLAR", + "code_postal": "04140", + "coordonnees_gps": [ + 44.401613844, + 6.34112805174 + ], + "libelle_d_acheminement": "MONTCLAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34112805174, + 44.401613844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24700b877953e0484a65bc8c3724d6ae036ea73e", + "fields": { + "code_commune_insee": "04128", + "nom_de_la_commune": "MONTFURON", + "code_postal": "04110", + "coordonnees_gps": [ + 43.831580084, + 5.68859318549 + ], + "libelle_d_acheminement": "MONTFURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68859318549, + 43.831580084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75db78ae3737837917ada3d10f6ddf06f2c6e2de", + "fields": { + "code_commune_insee": "04136", + "nom_de_la_commune": "LA MURE ARGENS", + "code_postal": "04170", + "coordonnees_gps": [ + 44.0166107784, + 6.53196701824 + ], + "libelle_d_acheminement": "LA MURE ARGENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53196701824, + 44.0166107784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57cd433180a295ad61e62649ee98f45957560f23", + "fields": { + "code_commune_insee": "04137", + "nom_de_la_commune": "NIBLES", + "code_postal": "04250", + "coordonnees_gps": [ + 44.2892541829, + 6.00872621678 + ], + "libelle_d_acheminement": "NIBLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00872621678, + 44.2892541829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d88ee52c0672b75ff1f1dab07bddd7cd0eb1548", + "fields": { + "code_commune_insee": "04139", + "nom_de_la_commune": "NOYERS SUR JABRON", + "code_postal": "04200", + "coordonnees_gps": [ + 44.1686523521, + 5.80998243978 + ], + "libelle_d_acheminement": "NOYERS SUR JABRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80998243978, + 44.1686523521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9300bf781b25613d980273123f663e02133d7df", + "fields": { + "code_commune_insee": "04141", + "nom_de_la_commune": "ONGLES", + "code_postal": "04230", + "coordonnees_gps": [ + 44.0314259831, + 5.72480881412 + ], + "libelle_d_acheminement": "ONGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72480881412, + 44.0314259831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5674806d675c51d76208c0db9786773fb0a106f1", + "fields": { + "code_commune_insee": "04142", + "nom_de_la_commune": "OPPEDETTE", + "code_postal": "04110", + "coordonnees_gps": [ + 43.9306604764, + 5.59274330363 + ], + "libelle_d_acheminement": "OPPEDETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59274330363, + 43.9306604764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af00423bed149ae60aa760e85a1456fd7a3a916c", + "fields": { + "code_commune_insee": "04151", + "nom_de_la_commune": "PIERRERUE", + "code_postal": "04300", + "coordonnees_gps": [ + 43.9623331645, + 5.83601873141 + ], + "libelle_d_acheminement": "PIERRERUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83601873141, + 43.9623331645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7046814d38c5cda21991dcf4cd83333298a1a1f1", + "fields": { + "code_commune_insee": "04157", + "nom_de_la_commune": "PUIMOISSON", + "code_postal": "04410", + "coordonnees_gps": [ + 43.8708152829, + 6.12200213815 + ], + "libelle_d_acheminement": "PUIMOISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12200213815, + 43.8708152829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10e68166cdc91cb9f82da9ddb971b9da1dbfe168", + "fields": { + "code_commune_insee": "04158", + "nom_de_la_commune": "QUINSON", + "code_postal": "04500", + "coordonnees_gps": [ + 43.7080624854, + 6.02269492276 + ], + "libelle_d_acheminement": "QUINSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02269492276, + 43.7080624854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6abb55787579a56b87db9da6a1ce8fa5ecec30c", + "fields": { + "code_commune_insee": "04160", + "nom_de_la_commune": "REILLANNE", + "code_postal": "04110", + "coordonnees_gps": [ + 43.8861362182, + 5.65935415272 + ], + "libelle_d_acheminement": "REILLANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65935415272, + 43.8861362182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a47314d6ccf6dfcd2ec3be6887b0e0ab4c43c835", + "fields": { + "code_commune_insee": "04181", + "nom_de_la_commune": "ST JEANNET", + "code_postal": "04270", + "coordonnees_gps": [ + 43.9793220173, + 6.11801552777 + ], + "libelle_d_acheminement": "ST JEANNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11801552777, + 43.9793220173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5005b712de51efc6e9fd7b9d3402379db24b8e7", + "fields": { + "code_commune_insee": "04187", + "nom_de_la_commune": "ST LIONS", + "code_postal": "04330", + "coordonnees_gps": [ + 43.9786318012, + 6.40627740741 + ], + "libelle_d_acheminement": "ST LIONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40627740741, + 43.9786318012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9e4f76fa3340c725077c0b06621c1ab0a47561c", + "fields": { + "code_commune_insee": "04189", + "nom_de_la_commune": "ST MARTIN DE BROMES", + "code_postal": "04800", + "coordonnees_gps": [ + 43.7774768739, + 5.96250175121 + ], + "libelle_d_acheminement": "ST MARTIN DE BROMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96250175121, + 43.7774768739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3826af4973e842983ed53f4e836e5332517ac568", + "fields": { + "code_commune_insee": "04191", + "nom_de_la_commune": "ST MARTIN LES SEYNE", + "code_postal": "04140", + "coordonnees_gps": [ + 44.3827202732, + 6.2555532059 + ], + "libelle_d_acheminement": "ST MARTIN LES SEYNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2555532059, + 44.3827202732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8278b0f7194e26f5de1e6f8215ce3b267fcedd5d", + "fields": { + "code_commune_insee": "04192", + "nom_de_la_commune": "ST MICHEL L OBSERVATOIRE", + "code_postal": "04870", + "coordonnees_gps": [ + 43.909879406, + 5.72004315449 + ], + "libelle_d_acheminement": "ST MICHEL L OBSERVATOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72004315449, + 43.909879406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a5521eb5c99a5b99352509d086d265d33ee2e9a", + "fields": { + "code_commune_insee": "04195", + "nom_de_la_commune": "ST PONS", + "code_postal": "04400", + "coordonnees_gps": [ + 44.4172713189, + 6.61507424866 + ], + "libelle_d_acheminement": "ST PONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61507424866, + 44.4172713189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91867af73a6455bcc24d8f558cb462a42ff4945a", + "fields": { + "code_commune_insee": "04199", + "nom_de_la_commune": "ST VINCENT SUR JABRON", + "code_postal": "04200", + "coordonnees_gps": [ + 44.1697659083, + 5.74794765286 + ], + "libelle_d_acheminement": "ST VINCENT SUR JABRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74794765286, + 44.1697659083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7b5591a3777f5df55c0fb71e15b1b2e17544271", + "fields": { + "code_commune_insee": "04207", + "nom_de_la_commune": "SIGOYER", + "code_postal": "04200", + "coordonnees_gps": [ + 44.3223711513, + 5.96102816265 + ], + "libelle_d_acheminement": "SIGOYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96102816265, + 44.3223711513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3abc2051edf8d376d0232f9993732091dceb8e9", + "fields": { + "code_commune_insee": "04216", + "nom_de_la_commune": "THEZE", + "code_postal": "04200", + "coordonnees_gps": [ + 44.3297532432, + 5.92502310147 + ], + "libelle_d_acheminement": "THEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92502310147, + 44.3297532432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "065373120f425b47023cccd8318a9b44e9b07880", + "fields": { + "code_commune_insee": "04228", + "nom_de_la_commune": "VALAVOIRE", + "code_postal": "04250", + "coordonnees_gps": [ + 44.2795099462, + 6.07615731535 + ], + "libelle_d_acheminement": "VALAVOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07615731535, + 44.2795099462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "082f6a83b4ceea7ea8e2c5a0ddcaaf36bba9e53f", + "fields": { + "code_commune_insee": "04234", + "nom_de_la_commune": "VENTEROL", + "code_postal": "05130", + "coordonnees_gps": [ + 44.4423460092, + 6.0873850138 + ], + "libelle_d_acheminement": "VENTEROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0873850138, + 44.4423460092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "654ba583626619dd929a7ec31c80c86b3e35a608", + "fields": { + "code_commune_insee": "04240", + "nom_de_la_commune": "VILLARS COLMARS", + "code_postal": "04370", + "coordonnees_gps": [ + 44.198291615, + 6.56876674305 + ], + "libelle_d_acheminement": "VILLARS COLMARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56876674305, + 44.198291615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e886d3a420b75878a49301057e45ecda141666ce", + "fields": { + "code_commune_insee": "04242", + "nom_de_la_commune": "VILLENEUVE", + "code_postal": "04180", + "coordonnees_gps": [ + 43.8957056864, + 5.85732128727 + ], + "libelle_d_acheminement": "VILLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85732128727, + 43.8957056864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b4e856d4a5fbff66efb8a3050a6c2f0dbda4b70", + "fields": { + "code_commune_insee": "05008", + "nom_de_la_commune": "ASPREMONT", + "code_postal": "05140", + "coordonnees_gps": [ + 44.4929345499, + 5.72022682239 + ], + "libelle_d_acheminement": "ASPREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72022682239, + 44.4929345499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e4e99ccac3a7800c8a721de7252d24999865f87", + "fields": { + "code_commune_insee": "05013", + "nom_de_la_commune": "BARCILLONNETTE", + "code_postal": "05110", + "coordonnees_gps": [ + 44.4300646552, + 5.90582685015 + ], + "libelle_d_acheminement": "BARCILLONNETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90582685015, + 44.4300646552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fb34f476f2ba3b085f52418fd44d0ad3a0ce0ab", + "fields": { + "code_commune_insee": "05016", + "nom_de_la_commune": "LA BATIE MONTSALEON", + "code_postal": "05700", + "coordonnees_gps": [ + 44.4559449966, + 5.74903304625 + ], + "libelle_d_acheminement": "LA BATIE MONTSALEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74903304625, + 44.4559449966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8e4d6e778cdb35562ef19bc8a74db1d92e744a4", + "fields": { + "ligne_5": "CHAUFFAYER", + "code_commune_insee": "05039", + "libelle_d_acheminement": "AUBESSAGNE", + "code_postal": "05800", + "nom_de_la_commune": "AUBESSAGNE", + "coordonnees_gps": [ + 44.7581501379, + 6.01187494014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01187494014, + 44.7581501379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a217a54f3ee55bfebde18a0060bbcd49625bebd", + "fields": { + "code_commune_insee": "05050", + "nom_de_la_commune": "ESPINASSES", + "code_postal": "05190", + "coordonnees_gps": [ + 44.4931786054, + 6.23271348149 + ], + "libelle_d_acheminement": "ESPINASSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23271348149, + 44.4931786054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9f89eef341df6fed9b7c4b928c59b34aa945efd", + "fields": { + "ligne_5": "ST GENIS", + "code_commune_insee": "05053", + "libelle_d_acheminement": "GARDE COLOMBE", + "code_postal": "05300", + "nom_de_la_commune": "GARDE COLOMBE", + "coordonnees_gps": [ + 44.3570512046, + 5.78336490177 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78336490177, + 44.3570512046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35eec3639686429e3795f8b412bdedccf6a4ad23", + "fields": { + "code_commune_insee": "05056", + "nom_de_la_commune": "FOREST ST JULIEN", + "code_postal": "05260", + "coordonnees_gps": [ + 44.6298014381, + 6.14107531251 + ], + "libelle_d_acheminement": "FOREST ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14107531251, + 44.6298014381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f52b35243dce9ac395133d67ff5e3a32de1c0de", + "fields": { + "code_commune_insee": "05059", + "nom_de_la_commune": "LA FREISSINOUSE", + "code_postal": "05000", + "coordonnees_gps": [ + 44.535534165, + 6.00812804583 + ], + "libelle_d_acheminement": "LA FREISSINOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00812804583, + 44.535534165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72dff0e779fbc9b1de25e3659b916ad6b2c9cc4d", + "fields": { + "code_commune_insee": "05061", + "nom_de_la_commune": "GAP", + "code_postal": "05000", + "coordonnees_gps": [ + 44.5798600596, + 6.06486052138 + ], + "libelle_d_acheminement": "GAP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06486052138, + 44.5798600596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5117d7c0152e90a2ec82043ab7039830b7f80c78", + "fields": { + "code_commune_insee": "05072", + "nom_de_la_commune": "LAYE", + "code_postal": "05500", + "coordonnees_gps": [ + 44.6417417308, + 6.07103943315 + ], + "libelle_d_acheminement": "LAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07103943315, + 44.6417417308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12d4fbfe7252881f1557642d25db3a03f4bf7f39", + "fields": { + "code_commune_insee": "05089", + "nom_de_la_commune": "MONTROND", + "code_postal": "05700", + "coordonnees_gps": [ + 44.3867626789, + 5.74626176371 + ], + "libelle_d_acheminement": "MONTROND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74626176371, + 44.3867626789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce8397f212c6e6f596ae718d9bf29df09e41d987", + "fields": { + "code_commune_insee": "05095", + "nom_de_la_commune": "LE NOYER", + "code_postal": "05500", + "coordonnees_gps": [ + 44.6999993894, + 6.00102694215 + ], + "libelle_d_acheminement": "LE NOYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00102694215, + 44.6999993894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "005f43faebeb99a47d7a03b08eac8fb288d57ded", + "fields": { + "code_commune_insee": "05099", + "nom_de_la_commune": "OZE", + "code_postal": "05400", + "coordonnees_gps": [ + 44.5058294764, + 5.79875486134 + ], + "libelle_d_acheminement": "OZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79875486134, + 44.5058294764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3939513e93f2e9c2d0701bf388c89dc1b1f15648", + "fields": { + "code_commune_insee": "05100", + "nom_de_la_commune": "PELLEAUTIER", + "code_postal": "05000", + "coordonnees_gps": [ + 44.5102662977, + 5.99877739937 + ], + "libelle_d_acheminement": "PELLEAUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99877739937, + 44.5102662977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59d44e6128829796ca295a34e162a19701b5e612", + "fields": { + "code_commune_insee": "05106", + "nom_de_la_commune": "PRUNIERES", + "code_postal": "05230", + "coordonnees_gps": [ + 44.5433412641, + 6.33640431241 + ], + "libelle_d_acheminement": "PRUNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33640431241, + 44.5433412641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "554061eedc10dd70683fc345200174d19054b37c", + "fields": { + "code_commune_insee": "05109", + "nom_de_la_commune": "PUY ST PIERRE", + "code_postal": "05100", + "coordonnees_gps": [ + 44.8973152572, + 6.60470761793 + ], + "libelle_d_acheminement": "PUY ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60470761793, + 44.8973152572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "721094725ce772d6b1e7af8da5df83742ad1aa5d", + "fields": { + "code_commune_insee": "05111", + "nom_de_la_commune": "PUY SANIERES", + "code_postal": "05200", + "coordonnees_gps": [ + 44.5556949894, + 6.43667418858 + ], + "libelle_d_acheminement": "PUY SANIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43667418858, + 44.5556949894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5df77d2d1ac56c47527fb565a6d123bdacd9eb5", + "fields": { + "code_commune_insee": "05116", + "nom_de_la_commune": "REOTIER", + "code_postal": "05600", + "coordonnees_gps": [ + 44.6813566833, + 6.56457884975 + ], + "libelle_d_acheminement": "REOTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56457884975, + 44.6813566833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8f9ad208734e02645a703546e9fe66fc2237b54", + "fields": { + "ligne_5": "CHATEAUNEUF DE CHABRE", + "code_commune_insee": "05118", + "libelle_d_acheminement": "VAL BUECH MEOUGE", + "code_postal": "05300", + "nom_de_la_commune": "VAL BUECH MEOUGE", + "coordonnees_gps": [ + 44.2207910151, + 5.84342231314 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84342231314, + 44.2207910151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8112e4cf1aefcc1880470ab229f2f526b3b72368", + "fields": { + "ligne_5": "RIBIERS", + "code_commune_insee": "05118", + "libelle_d_acheminement": "VAL BUECH MEOUGE", + "code_postal": "05300", + "nom_de_la_commune": "VAL BUECH MEOUGE", + "coordonnees_gps": [ + 44.2207910151, + 5.84342231314 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84342231314, + 44.2207910151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96d9f0531dfec7b19e1bebc3a8ec567e6281dba4", + "fields": { + "code_commune_insee": "05123", + "nom_de_la_commune": "LA ROCHE DES ARNAUDS", + "code_postal": "05400", + "coordonnees_gps": [ + 44.5838170428, + 5.96045927972 + ], + "libelle_d_acheminement": "LA ROCHE DES ARNAUDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96045927972, + 44.5838170428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fa8b835004280d3a5df08bbdc7e72476536767d", + "fields": { + "code_commune_insee": "05132", + "nom_de_la_commune": "ST BONNET EN CHAMPSAUR", + "code_postal": "05500", + "coordonnees_gps": [ + 44.6823269908, + 6.10286050171 + ], + "libelle_d_acheminement": "ST BONNET EN CHAMPSAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10286050171, + 44.6823269908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f79a2a1bef8d8c117b4a7e59e5ca5b4ea9c3bf1", + "fields": { + "ligne_5": "LES INFOURNAS", + "code_commune_insee": "05132", + "libelle_d_acheminement": "ST BONNET EN CHAMPSAUR", + "code_postal": "05500", + "nom_de_la_commune": "ST BONNET EN CHAMPSAUR", + "coordonnees_gps": [ + 44.6823269908, + 6.10286050171 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10286050171, + 44.6823269908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84d28e4c845c8cc877286d54a2ef69d116d40054", + "fields": { + "ligne_5": "LA CLUSE", + "code_commune_insee": "05139", + "libelle_d_acheminement": "LE DEVOLUY", + "code_postal": "05250", + "nom_de_la_commune": "LE DEVOLUY", + "coordonnees_gps": [ + 44.6775419763, + 5.94047368781 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94047368781, + 44.6775419763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d675ec9910b981528d27582c042d79864f65666c", + "fields": { + "ligne_5": "ST ETIENNE EN DEVOLUY", + "code_commune_insee": "05139", + "libelle_d_acheminement": "LE DEVOLUY", + "code_postal": "05250", + "nom_de_la_commune": "LE DEVOLUY", + "coordonnees_gps": [ + 44.6775419763, + 5.94047368781 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94047368781, + 44.6775419763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10fa274e4fd84a2b6f277ed0be28e7671a5c7fd7", + "fields": { + "code_commune_insee": "05147", + "nom_de_la_commune": "ST JULIEN EN CHAMPSAUR", + "code_postal": "05500", + "coordonnees_gps": [ + 44.6685288872, + 6.129921943 + ], + "libelle_d_acheminement": "ST JULIEN EN CHAMPSAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.129921943, + 44.6685288872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e40f0fc549c93c621f8d91ddb537b77e03bb50b4", + "fields": { + "code_commune_insee": "05149", + "nom_de_la_commune": "ST LEGER LES MELEZES", + "code_postal": "05260", + "coordonnees_gps": [ + 44.6468761009, + 6.21171867053 + ], + "libelle_d_acheminement": "ST LEGER LES MELEZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21171867053, + 44.6468761009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2755b0f7ec8c95a80f415823cbe87d70ca9fd348", + "fields": { + "code_commune_insee": "05166", + "nom_de_la_commune": "SERRES", + "code_postal": "05700", + "coordonnees_gps": [ + 44.4213858087, + 5.71549751124 + ], + "libelle_d_acheminement": "SERRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71549751124, + 44.4213858087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cb2bb8acc6d91fcae6352a54ee6d1a4bb5bc796", + "fields": { + "code_commune_insee": "05168", + "nom_de_la_commune": "SIGOYER", + "code_postal": "05130", + "coordonnees_gps": [ + 44.4802333692, + 5.96951792615 + ], + "libelle_d_acheminement": "SIGOYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96951792615, + 44.4802333692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a814e85cd9fa7310f09cef13dc890c0d1134a18c", + "fields": { + "code_commune_insee": "05176", + "nom_de_la_commune": "VALSERRES", + "code_postal": "05130", + "coordonnees_gps": [ + 44.4892842965, + 6.13789393583 + ], + "libelle_d_acheminement": "VALSERRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13789393583, + 44.4892842965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be2e6d9f4cb9e791ac113e10dabd10412c0512a2", + "fields": { + "ligne_5": "CAP D ANTIBES", + "code_commune_insee": "06004", + "libelle_d_acheminement": "ANTIBES", + "code_postal": "06160", + "nom_de_la_commune": "ANTIBES", + "coordonnees_gps": [ + 43.587465146, + 7.10635418256 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10635418256, + 43.587465146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81a182ab23d741d64331f1c8728ac3eb5ce15582", + "fields": { + "code_commune_insee": "06004", + "nom_de_la_commune": "ANTIBES", + "code_postal": "06600", + "coordonnees_gps": [ + 43.587465146, + 7.10635418256 + ], + "libelle_d_acheminement": "ANTIBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10635418256, + 43.587465146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38fbb0882edfea7a563bf884b448214b63e253d5", + "fields": { + "ligne_5": "LA FONTONNE", + "code_commune_insee": "06004", + "libelle_d_acheminement": "ANTIBES", + "code_postal": "06600", + "nom_de_la_commune": "ANTIBES", + "coordonnees_gps": [ + 43.587465146, + 7.10635418256 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10635418256, + 43.587465146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bbfe5b99ad52537161638011468875be0b9e15f", + "fields": { + "code_commune_insee": "06021", + "nom_de_la_commune": "BONSON", + "code_postal": "06830", + "coordonnees_gps": [ + 43.8622934824, + 7.1827870979 + ], + "libelle_d_acheminement": "BONSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1827870979, + 43.8622934824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd661331c0f0c224c0caf6fe2008aed37fc717e1", + "fields": { + "code_commune_insee": "06025", + "nom_de_la_commune": "LE BROC", + "code_postal": "06510", + "coordonnees_gps": [ + 43.8147822086, + 7.15907633922 + ], + "libelle_d_acheminement": "LE BROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15907633922, + 43.8147822086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4746e16f0d1abdf1c7a230c1adfc18bdaf48f35", + "fields": { + "code_commune_insee": "06031", + "nom_de_la_commune": "CANTARON", + "code_postal": "06340", + "coordonnees_gps": [ + 43.7712030999, + 7.31316892728 + ], + "libelle_d_acheminement": "CANTARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31316892728, + 43.7712030999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b9f51c12d68c485f0d70efe59a84cdb3d217e78", + "fields": { + "code_commune_insee": "06044", + "nom_de_la_commune": "LA COLLE SUR LOUP", + "code_postal": "06480", + "coordonnees_gps": [ + 43.6871701387, + 7.09773643833 + ], + "libelle_d_acheminement": "LA COLLE SUR LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09773643833, + 43.6871701387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cea8d02d1f6060fd4e035d81c96f82e7a5df1620", + "fields": { + "code_commune_insee": "06049", + "nom_de_la_commune": "COURMES", + "code_postal": "06620", + "coordonnees_gps": [ + 43.7525533793, + 7.01737606418 + ], + "libelle_d_acheminement": "COURMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01737606418, + 43.7525533793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28e9a2045ee5f4271469a82948aba8e51d3f0d14", + "fields": { + "code_commune_insee": "06060", + "nom_de_la_commune": "FALICON", + "code_postal": "06950", + "coordonnees_gps": [ + 43.752536584, + 7.26554536957 + ], + "libelle_d_acheminement": "FALICON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26554536957, + 43.752536584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb1bf4dcea5d7775f95eea976046a986f9774a67", + "fields": { + "code_commune_insee": "06065", + "nom_de_la_commune": "LA GAUDE", + "code_postal": "06610", + "coordonnees_gps": [ + 43.721423765, + 7.16039926444 + ], + "libelle_d_acheminement": "LA GAUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16039926444, + 43.721423765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cb3cbbbdfbaed614854c08fb84d302ce0a4e6d5", + "fields": { + "code_commune_insee": "06072", + "nom_de_la_commune": "ILONSE", + "code_postal": "06420", + "coordonnees_gps": [ + 44.0347982787, + 7.08976475841 + ], + "libelle_d_acheminement": "ILONSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08976475841, + 44.0347982787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59c23c823bff2eeb7c70b1e687c9f79dba71fb4a", + "fields": { + "ligne_5": "PLAN DU VAR", + "code_commune_insee": "06075", + "libelle_d_acheminement": "LEVENS", + "code_postal": "06670", + "nom_de_la_commune": "LEVENS", + "coordonnees_gps": [ + 43.8500976014, + 7.24033027327 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24033027327, + 43.8500976014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57e41d342950c6d7162d14e478bb632932cad459", + "fields": { + "code_commune_insee": "06080", + "nom_de_la_commune": "MARIE", + "code_postal": "06420", + "coordonnees_gps": [ + 44.0346077069, + 7.15744653179 + ], + "libelle_d_acheminement": "MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15744653179, + 44.0346077069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ecb19b1252b1abfa52de5996ecbdae066801d9a", + "fields": { + "code_commune_insee": "06084", + "nom_de_la_commune": "MOUANS SARTOUX", + "code_postal": "06370", + "coordonnees_gps": [ + 43.6185304023, + 6.96494426706 + ], + "libelle_d_acheminement": "MOUANS SARTOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96494426706, + 43.6185304023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79b3c02492497ec778eaee4318e7c294fb338cb9", + "fields": { + "code_commune_insee": "06085", + "nom_de_la_commune": "MOUGINS", + "code_postal": "06250", + "coordonnees_gps": [ + 43.5961410556, + 7.00129444919 + ], + "libelle_d_acheminement": "MOUGINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00129444919, + 43.5961410556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49d65061fb89d5806f9f822f1afb74aba6a18708", + "fields": { + "code_commune_insee": "06088", + "nom_de_la_commune": "NICE", + "code_postal": "06100", + "coordonnees_gps": [ + 43.7119992661, + 7.23826889465 + ], + "libelle_d_acheminement": "NICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23826889465, + 43.7119992661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18ef0b44e717ccb03c0764c4813ee93d935e7453", + "fields": { + "ligne_5": "ST ISIDORE", + "code_commune_insee": "06088", + "libelle_d_acheminement": "NICE", + "code_postal": "06200", + "nom_de_la_commune": "NICE", + "coordonnees_gps": [ + 43.7119992661, + 7.23826889465 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23826889465, + 43.7119992661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "314a9759fea61fb436143671b4d73867c2db3f82", + "fields": { + "ligne_5": "ST ROMAN DE BELLET", + "code_commune_insee": "06088", + "libelle_d_acheminement": "NICE", + "code_postal": "06200", + "nom_de_la_commune": "NICE", + "coordonnees_gps": [ + 43.7119992661, + 7.23826889465 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23826889465, + 43.7119992661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c8e64352e2d243325d1b2386db76ba16eb079ed", + "fields": { + "ligne_5": "VALBERG", + "code_commune_insee": "06094", + "libelle_d_acheminement": "PEONE", + "code_postal": "06470", + "nom_de_la_commune": "PEONE", + "coordonnees_gps": [ + 44.1299250439, + 6.92098583862 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92098583862, + 44.1299250439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8772a8b292762bbd4ccf43d5f1c6311c206e2d65", + "fields": { + "code_commune_insee": "06103", + "nom_de_la_commune": "ROQUEBILLIERE", + "code_postal": "06450", + "coordonnees_gps": [ + 44.0270951827, + 7.29269467197 + ], + "libelle_d_acheminement": "ROQUEBILLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29269467197, + 44.0270951827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bdf91573d0801a930d2db13bfe7d31a748f1f98", + "fields": { + "code_commune_insee": "06105", + "nom_de_la_commune": "ROQUEFORT LES PINS", + "code_postal": "06330", + "coordonnees_gps": [ + 43.6741732535, + 7.0530127273 + ], + "libelle_d_acheminement": "ROQUEFORT LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0530127273, + 43.6741732535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df3bacffb0b8963d076d0bbf70a8d6ed91b6906c", + "fields": { + "code_commune_insee": "06107", + "nom_de_la_commune": "LA ROQUE EN PROVENCE", + "code_postal": "06910", + "coordonnees_gps": [ + 43.8491534174, + 6.99011980424 + ], + "libelle_d_acheminement": "LA ROQUE EN PROVENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99011980424, + 43.8491534174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faa73a565abd4604cb3687305eebcf7a1d31f0a6", + "fields": { + "code_commune_insee": "06109", + "nom_de_la_commune": "LA ROQUETTE SUR VAR", + "code_postal": "06670", + "coordonnees_gps": [ + 43.8332735566, + 7.20466243305 + ], + "libelle_d_acheminement": "LA ROQUETTE SUR VAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20466243305, + 43.8332735566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "793825995fc6f9e46f9bc5e1a7a70e7d471bbae9", + "fields": { + "code_commune_insee": "06111", + "nom_de_la_commune": "ROURE", + "code_postal": "06420", + "coordonnees_gps": [ + 44.1189138677, + 7.06680296507 + ], + "libelle_d_acheminement": "ROURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06680296507, + 44.1189138677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaecd0a21611e6706d048bfd73d2a06182faab00", + "fields": { + "code_commune_insee": "06114", + "nom_de_la_commune": "ST ANDRE DE LA ROCHE", + "code_postal": "06730", + "coordonnees_gps": [ + 43.745876244, + 7.28871372647 + ], + "libelle_d_acheminement": "ST ANDRE DE LA ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28871372647, + 43.745876244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06c24171272efda1c347134d63e3717392ffb0ad", + "fields": { + "code_commune_insee": "06116", + "nom_de_la_commune": "ST AUBAN", + "code_postal": "06850", + "coordonnees_gps": [ + 43.8309790119, + 6.74006506104 + ], + "libelle_d_acheminement": "ST AUBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74006506104, + 43.8309790119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa3a6f2f2a4bafbe47371cc3286d6845bdedd601", + "fields": { + "ligne_5": "AURON", + "code_commune_insee": "06120", + "libelle_d_acheminement": "ST ETIENNE DE TINEE", + "code_postal": "06660", + "nom_de_la_commune": "ST ETIENNE DE TINEE", + "coordonnees_gps": [ + 44.2491492809, + 6.92452445063 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92452445063, + 44.2491492809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b0a58d6100ecc296a5ec58e514b23df5ea33459", + "fields": { + "code_commune_insee": "06122", + "nom_de_la_commune": "ST JEANNET", + "code_postal": "06640", + "coordonnees_gps": [ + 43.758845389, + 7.14073211756 + ], + "libelle_d_acheminement": "ST JEANNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14073211756, + 43.758845389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5de29b8ebdd6341c2ba0dc1e5f6d5e24c75c766", + "fields": { + "code_commune_insee": "06124", + "nom_de_la_commune": "ST LEGER", + "code_postal": "06260", + "coordonnees_gps": [ + 44.0026597689, + 6.82309684994 + ], + "libelle_d_acheminement": "ST LEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82309684994, + 44.0026597689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b824740f599177d330d1fb8e36359ea955cd842", + "fields": { + "code_commune_insee": "06127", + "nom_de_la_commune": "ST MARTIN VESUBIE", + "code_postal": "06450", + "coordonnees_gps": [ + 44.1020722047, + 7.30244071608 + ], + "libelle_d_acheminement": "ST MARTIN VESUBIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30244071608, + 44.1020722047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4805efa9dbde7d06090a2315c9a7528692b5d73e", + "fields": { + "code_commune_insee": "06133", + "nom_de_la_commune": "SAUZE", + "code_postal": "06470", + "coordonnees_gps": [ + 44.0852199876, + 6.80072324584 + ], + "libelle_d_acheminement": "SAUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80072324584, + 44.0852199876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb663d96c550417129aa7e6c2a6cef10132ac727", + "fields": { + "ligne_5": "LE LOGIS DU PIN", + "code_commune_insee": "06134", + "libelle_d_acheminement": "SERANON", + "code_postal": "06750", + "nom_de_la_commune": "SERANON", + "coordonnees_gps": [ + 43.7656662777, + 6.6904329696 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6904329696, + 43.7656662777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ed7c65a38094ec274afdae6e2ac0e1b4ec21a07", + "fields": { + "code_commune_insee": "06136", + "nom_de_la_commune": "SOSPEL", + "code_postal": "06380", + "coordonnees_gps": [ + 43.8844607415, + 7.44794904955 + ], + "libelle_d_acheminement": "SOSPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44794904955, + 43.8844607415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5a7d2d19a316d37a000d5fa16d9acef2b8b586c", + "fields": { + "code_commune_insee": "06150", + "nom_de_la_commune": "LA TURBIE", + "code_postal": "06320", + "coordonnees_gps": [ + 43.7451419024, + 7.39791811712 + ], + "libelle_d_acheminement": "LA TURBIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39791811712, + 43.7451419024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8052a31f3e8da233a1320416a4aa9b5c3909de5", + "fields": { + "code_commune_insee": "06151", + "nom_de_la_commune": "UTELLE", + "code_postal": "06450", + "coordonnees_gps": [ + 43.9273181411, + 7.23864462941 + ], + "libelle_d_acheminement": "UTELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23864462941, + 43.9273181411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d36e1c5e2e9d717b6e133990945c8603e18379e7", + "fields": { + "code_commune_insee": "06157", + "nom_de_la_commune": "VENCE", + "code_postal": "06140", + "coordonnees_gps": [ + 43.7384640641, + 7.10194436087 + ], + "libelle_d_acheminement": "VENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10194436087, + 43.7384640641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29137173bcc735fe6f03d7cb3437596ce05e5c4d", + "fields": { + "code_commune_insee": "06162", + "nom_de_la_commune": "LA BRIGUE", + "code_postal": "06430", + "coordonnees_gps": [ + 44.0714555606, + 7.65147828925 + ], + "libelle_d_acheminement": "LA BRIGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.65147828925, + 44.0714555606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7472a7a5c827f62f3c36285a5613c8e372de9a1", + "fields": { + "code_commune_insee": "07001", + "nom_de_la_commune": "ACCONS", + "code_postal": "07160", + "coordonnees_gps": [ + 44.8885328213, + 4.39242968382 + ], + "libelle_d_acheminement": "ACCONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39242968382, + 44.8885328213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b80844a46186ef104d13567478fe1e5b92fa5c86", + "fields": { + "code_commune_insee": "07003", + "nom_de_la_commune": "AIZAC", + "code_postal": "07530", + "coordonnees_gps": [ + 44.7196762414, + 4.3306729158 + ], + "libelle_d_acheminement": "AIZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3306729158, + 44.7196762414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afbf1ac9f2a9e1cce303637a794152ed3f5b1ae2", + "fields": { + "code_commune_insee": "07004", + "nom_de_la_commune": "AJOUX", + "code_postal": "07000", + "coordonnees_gps": [ + 44.7550573905, + 4.48565370819 + ], + "libelle_d_acheminement": "AJOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48565370819, + 44.7550573905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd53e9b91a1b08b9aee0130339259836b7e085ab", + "fields": { + "code_commune_insee": "07006", + "nom_de_la_commune": "ALBON D ARDECHE", + "code_postal": "07190", + "coordonnees_gps": [ + 44.8152938105, + 4.42503897561 + ], + "libelle_d_acheminement": "ALBON D ARDECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42503897561, + 44.8152938105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc5ec042f0ac7fccd24c9547453270487053fb94", + "fields": { + "code_commune_insee": "07013", + "nom_de_la_commune": "ARDOIX", + "code_postal": "07290", + "coordonnees_gps": [ + 45.1913605655, + 4.74320427692 + ], + "libelle_d_acheminement": "ARDOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74320427692, + 45.1913605655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76f04fdb3a23c99779345132571f241dd10d6100", + "fields": { + "code_commune_insee": "07028", + "nom_de_la_commune": "BEAULIEU", + "code_postal": "07460", + "coordonnees_gps": [ + 44.3546311078, + 4.25062082781 + ], + "libelle_d_acheminement": "BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25062082781, + 44.3546311078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50b69b19b35f8bce9ff4a2f932a149da0c89bac3", + "fields": { + "code_commune_insee": "07032", + "nom_de_la_commune": "BERZEME", + "code_postal": "07580", + "coordonnees_gps": [ + 44.6552336996, + 4.57203294139 + ], + "libelle_d_acheminement": "BERZEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57203294139, + 44.6552336996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ebed5ec0bb5e4592039aaaaf24a9bf068cd76d7", + "fields": { + "code_commune_insee": "07033", + "nom_de_la_commune": "BESSAS", + "code_postal": "07150", + "coordonnees_gps": [ + 44.3375930033, + 4.2983262809 + ], + "libelle_d_acheminement": "BESSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2983262809, + 44.3375930033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb0e962eb75f6f895453acf16dec45acb630acbf", + "fields": { + "code_commune_insee": "07040", + "nom_de_la_commune": "BOUCIEU LE ROI", + "code_postal": "07270", + "coordonnees_gps": [ + 45.0288428449, + 4.68820163954 + ], + "libelle_d_acheminement": "BOUCIEU LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68820163954, + 45.0288428449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a88824cf0e19cb866228d2054d671626670eda4e", + "fields": { + "code_commune_insee": "07049", + "nom_de_la_commune": "LE CHAMBON", + "code_postal": "07160", + "coordonnees_gps": [ + 44.8299065845, + 4.29925007724 + ], + "libelle_d_acheminement": "LE CHAMBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29925007724, + 44.8299065845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e240d3f1722101d31c0194e0cd1c4e1c1091080d", + "fields": { + "code_commune_insee": "07054", + "nom_de_la_commune": "CHANEAC", + "code_postal": "07310", + "coordonnees_gps": [ + 44.9300424452, + 4.30692688194 + ], + "libelle_d_acheminement": "CHANEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30692688194, + 44.9300424452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "262798054725380628924cfa5e5e8dd8efd91059", + "fields": { + "code_commune_insee": "07056", + "nom_de_la_commune": "CHARNAS", + "code_postal": "07340", + "coordonnees_gps": [ + 45.342858843, + 4.73157804984 + ], + "libelle_d_acheminement": "CHARNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73157804984, + 45.342858843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7ddc548e1ef495593ca62c8a21974ea40f0dfd4", + "fields": { + "code_commune_insee": "07064", + "nom_de_la_commune": "LE CHEYLARD", + "code_postal": "07160", + "coordonnees_gps": [ + 44.9076391858, + 4.42108479359 + ], + "libelle_d_acheminement": "LE CHEYLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42108479359, + 44.9076391858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4332f1e9a99304380b333137df905a60a3f0b2c", + "fields": { + "code_commune_insee": "07072", + "nom_de_la_commune": "COUX", + "code_postal": "07000", + "coordonnees_gps": [ + 44.7432838199, + 4.62306333755 + ], + "libelle_d_acheminement": "COUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62306333755, + 44.7432838199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54791749d8ba1ab8932e584d0d378ce701cc979b", + "fields": { + "code_commune_insee": "07077", + "nom_de_la_commune": "DARBRES", + "code_postal": "07170", + "coordonnees_gps": [ + 44.6599554077, + 4.51592801942 + ], + "libelle_d_acheminement": "DARBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51592801942, + 44.6599554077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b6c5d27f0d06cfb7bfb56869bf31763cf97eddb", + "fields": { + "code_commune_insee": "07092", + "nom_de_la_commune": "FREYSSENET", + "code_postal": "07000", + "coordonnees_gps": [ + 44.6886194228, + 4.54695114844 + ], + "libelle_d_acheminement": "FREYSSENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54695114844, + 44.6886194228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "458f472c5ec3fbd1e7f9131b2880ad934efd98bd", + "fields": { + "code_commune_insee": "07093", + "nom_de_la_commune": "GENESTELLE", + "code_postal": "07530", + "coordonnees_gps": [ + 44.7366148286, + 4.38522824539 + ], + "libelle_d_acheminement": "GENESTELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38522824539, + 44.7366148286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60095c6d0e969982e271c6ebfd398152ab8f2212", + "fields": { + "code_commune_insee": "07098", + "nom_de_la_commune": "GOURDON", + "code_postal": "07000", + "coordonnees_gps": [ + 44.7294058074, + 4.45478498235 + ], + "libelle_d_acheminement": "GOURDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45478498235, + 44.7294058074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8617a920fc55b33896be415285cccc345203720", + "fields": { + "code_commune_insee": "07100", + "nom_de_la_commune": "GRAVIERES", + "code_postal": "07140", + "coordonnees_gps": [ + 44.4213974082, + 4.07179678867 + ], + "libelle_d_acheminement": "GRAVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07179678867, + 44.4213974082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bc36c77686613d947c8a7525a27384c5f51c44d", + "fields": { + "ligne_5": "INTRES", + "code_commune_insee": "07103", + "libelle_d_acheminement": "ST JULIEN D INTRES", + "code_postal": "07310", + "nom_de_la_commune": "ST JULIEN D INTRES", + "coordonnees_gps": [ + 44.9864739922, + 4.3441511813 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3441511813, + 44.9864739922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "819b7e8cfba88de35a1fae4387691d231e2ee849", + "fields": { + "code_commune_insee": "07105", + "nom_de_la_commune": "ISSANLAS", + "code_postal": "07660", + "coordonnees_gps": [ + 44.7669383227, + 4.01543417126 + ], + "libelle_d_acheminement": "ISSANLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01543417126, + 44.7669383227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43a42cfe366a41f7c0fc53b306023cd55db6baa4", + "fields": { + "code_commune_insee": "07106", + "nom_de_la_commune": "ISSARLES", + "code_postal": "07470", + "coordonnees_gps": [ + 44.8523471555, + 4.05339793965 + ], + "libelle_d_acheminement": "ISSARLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05339793965, + 44.8523471555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "151acae660e3b149775e7272744824b03541242f", + "fields": { + "code_commune_insee": "07110", + "nom_de_la_commune": "JOYEUSE", + "code_postal": "07260", + "coordonnees_gps": [ + 44.470531994, + 4.24753667585 + ], + "libelle_d_acheminement": "JOYEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24753667585, + 44.470531994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53956f407b9f3ec9075bb53a6e2c1ec670d0d791", + "fields": { + "code_commune_insee": "07113", + "nom_de_la_commune": "LABASTIDE DE VIRAC", + "code_postal": "07150", + "coordonnees_gps": [ + 44.3533257557, + 4.41978848183 + ], + "libelle_d_acheminement": "LABASTIDE DE VIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41978848183, + 44.3533257557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1305ab4c73d6333fe8bc74a1d4db4db1e2056d12", + "fields": { + "code_commune_insee": "07114", + "nom_de_la_commune": "LABATIE D ANDAURE", + "code_postal": "07570", + "coordonnees_gps": [ + 45.0327655678, + 4.49525714027 + ], + "libelle_d_acheminement": "LABATIE D ANDAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49525714027, + 45.0327655678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16830ad47e8c5330f21c2e7b9e5bc55f416a875c", + "fields": { + "code_commune_insee": "07116", + "nom_de_la_commune": "LABEGUDE", + "code_postal": "07200", + "coordonnees_gps": [ + 44.6420481125, + 4.35738052578 + ], + "libelle_d_acheminement": "LABEGUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35738052578, + 44.6420481125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96e7cfa2d385cfd393261447599abd59cb67a125", + "fields": { + "code_commune_insee": "07133", + "nom_de_la_commune": "LARNAS", + "code_postal": "07220", + "coordonnees_gps": [ + 44.4543456079, + 4.59606913482 + ], + "libelle_d_acheminement": "LARNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59606913482, + 44.4543456079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa75fca296dd361cc616e155774167e0a262de8d", + "fields": { + "code_commune_insee": "07136", + "nom_de_la_commune": "LAVEYRUNE", + "code_postal": "48250", + "coordonnees_gps": [ + 44.6207258816, + 3.91933819175 + ], + "libelle_d_acheminement": "LAVEYRUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91933819175, + 44.6207258816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9de2a24f58e4179968a9bf5560e8f54ef7deb639", + "fields": { + "code_commune_insee": "07138", + "nom_de_la_commune": "LAVILLEDIEU", + "code_postal": "07170", + "coordonnees_gps": [ + 44.5821673927, + 4.44782050169 + ], + "libelle_d_acheminement": "LAVILLEDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44782050169, + 44.5821673927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57ddc654832c2278a6af674c34c1cbf1c2a106f5", + "fields": { + "code_commune_insee": "07141", + "nom_de_la_commune": "LENTILLERES", + "code_postal": "07200", + "coordonnees_gps": [ + 44.6092419896, + 4.29820132309 + ], + "libelle_d_acheminement": "LENTILLERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29820132309, + 44.6092419896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c86965d05097c4ce77d04a4cd9a929ff3ba0e637", + "fields": { + "code_commune_insee": "07143", + "nom_de_la_commune": "LIMONY", + "code_postal": "07340", + "coordonnees_gps": [ + 45.3534326814, + 4.75026547747 + ], + "libelle_d_acheminement": "LIMONY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75026547747, + 45.3534326814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a8aa435b40f6e25f24c189cc2fc31ed8c448e0e", + "fields": { + "code_commune_insee": "07144", + "nom_de_la_commune": "LOUBARESSE", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5912762985, + 4.05088477316 + ], + "libelle_d_acheminement": "LOUBARESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05088477316, + 44.5912762985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29f98ccd7aadfa18f9f8ba6f7a6c65ac0fd349aa", + "fields": { + "code_commune_insee": "07157", + "nom_de_la_commune": "MEYSSE", + "code_postal": "07400", + "coordonnees_gps": [ + 44.6193386638, + 4.71649252868 + ], + "libelle_d_acheminement": "MEYSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71649252868, + 44.6193386638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f479f0274c839d644e27fb971595b0475c45730", + "fields": { + "code_commune_insee": "07163", + "nom_de_la_commune": "MONTSELGUES", + "code_postal": "07140", + "coordonnees_gps": [ + 44.5332760746, + 4.0037872182 + ], + "libelle_d_acheminement": "MONTSELGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0037872182, + 44.5332760746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee3c24d177106f32e8328f084cb45c36f3e16e2c", + "fields": { + "ligne_5": "ST JULIEN LABROUSSE", + "code_commune_insee": "07165", + "libelle_d_acheminement": "BELSENTES", + "code_postal": "07160", + "nom_de_la_commune": "BELSENTES", + "coordonnees_gps": [ + 44.9277079206, + 4.47689363843 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47689363843, + 44.9277079206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70dbc9c168d9bb378db89ba71ed4fbbc87ab3853", + "fields": { + "code_commune_insee": "07168", + "nom_de_la_commune": "ORGNAC L AVEN", + "code_postal": "07150", + "coordonnees_gps": [ + 44.3101002443, + 4.42369715287 + ], + "libelle_d_acheminement": "ORGNAC L AVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42369715287, + 44.3101002443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7b9371f5ff34e0b572f3f36f77fd8cae4c3eba6", + "fields": { + "code_commune_insee": "07173", + "nom_de_la_commune": "PEREYRES", + "code_postal": "07450", + "coordonnees_gps": [ + 44.7797076255, + 4.26098772626 + ], + "libelle_d_acheminement": "PEREYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26098772626, + 44.7797076255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7d952ac2477ecf19236e1e3d77b0e13b2125306", + "fields": { + "code_commune_insee": "07176", + "nom_de_la_commune": "PLANZOLLES", + "code_postal": "07230", + "coordonnees_gps": [ + 44.4862153265, + 4.15764539553 + ], + "libelle_d_acheminement": "PLANZOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15764539553, + 44.4862153265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ab392d59575acadcf6c4cba58d71fe04e7a8b31", + "fields": { + "code_commune_insee": "07179", + "nom_de_la_commune": "POURCHERES", + "code_postal": "07000", + "coordonnees_gps": [ + 44.7392683074, + 4.50440952703 + ], + "libelle_d_acheminement": "POURCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50440952703, + 44.7392683074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "438e6721c69e1d093d31d754001d552eb25e278e", + "fields": { + "code_commune_insee": "07183", + "nom_de_la_commune": "PRADONS", + "code_postal": "07120", + "coordonnees_gps": [ + 44.473019743, + 4.37584445661 + ], + "libelle_d_acheminement": "PRADONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37584445661, + 44.473019743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8303ce793f15f9cdbe690c5e9d4bc1a87abb43ed", + "fields": { + "code_commune_insee": "07187", + "nom_de_la_commune": "PRUNET", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5954398585, + 4.25387564472 + ], + "libelle_d_acheminement": "PRUNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25387564472, + 44.5954398585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "931333de16a3016f478f243e743bec44d6f0686e", + "fields": { + "code_commune_insee": "07191", + "nom_de_la_commune": "ROCHEMAURE", + "code_postal": "07400", + "coordonnees_gps": [ + 44.589264353, + 4.69211996285 + ], + "libelle_d_acheminement": "ROCHEMAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69211996285, + 44.589264353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c93247f02a994de7dcc22e51ced3f9ce94075103", + "fields": { + "code_commune_insee": "07195", + "nom_de_la_commune": "LA ROCHETTE", + "code_postal": "07310", + "coordonnees_gps": [ + 44.9217587491, + 4.23164949821 + ], + "libelle_d_acheminement": "LA ROCHETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23164949821, + 44.9217587491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e5652a98535e936807b1515c2976b2537ab5634", + "fields": { + "code_commune_insee": "07196", + "nom_de_la_commune": "ROCLES", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5680037839, + 4.20813131738 + ], + "libelle_d_acheminement": "ROCLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20813131738, + 44.5680037839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1227e5ff5aae8d56d2ac31d63152177d1fe13ca8", + "fields": { + "code_commune_insee": "07197", + "nom_de_la_commune": "ROIFFIEUX", + "code_postal": "07100", + "coordonnees_gps": [ + 45.2189397431, + 4.64922144398 + ], + "libelle_d_acheminement": "ROIFFIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64922144398, + 45.2189397431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68a6b11eeb3827459495caf782e271649dc16944", + "fields": { + "code_commune_insee": "07219", + "nom_de_la_commune": "ST BAUZILE", + "code_postal": "07210", + "coordonnees_gps": [ + 44.672668231, + 4.66869584538 + ], + "libelle_d_acheminement": "ST BAUZILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66869584538, + 44.672668231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fd4b33a1335895856bac9c184e80c29173df40d", + "fields": { + "code_commune_insee": "07220", + "nom_de_la_commune": "ST CHRISTOL", + "code_postal": "07160", + "coordonnees_gps": [ + 44.8696306888, + 4.43824066016 + ], + "libelle_d_acheminement": "ST CHRISTOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43824066016, + 44.8696306888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45c2326abbaf855301b994307a764e0a669060bd", + "fields": { + "code_commune_insee": "07230", + "nom_de_la_commune": "ST ETIENNE DE BOULOGNE", + "code_postal": "07200", + "coordonnees_gps": [ + 44.7003919648, + 4.47316819572 + ], + "libelle_d_acheminement": "ST ETIENNE DE BOULOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47316819572, + 44.7003919648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66ec4d61e17323fe7eba3bb675eb56e06eb986d8", + "fields": { + "code_commune_insee": "07232", + "nom_de_la_commune": "ST ETIENNE DE LUGDARES", + "code_postal": "07590", + "coordonnees_gps": [ + 44.6472996058, + 3.97320731219 + ], + "libelle_d_acheminement": "ST ETIENNE DE LUGDARES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97320731219, + 44.6472996058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c2dbbbbf9552135b5fb83be569025dc3a53cfc3", + "fields": { + "code_commune_insee": "07235", + "nom_de_la_commune": "STE EULALIE", + "code_postal": "07510", + "coordonnees_gps": [ + 44.8287147176, + 4.18597793288 + ], + "libelle_d_acheminement": "STE EULALIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18597793288, + 44.8287147176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9400ff9f78fac134aac8585e0505e59ca0618d8f", + "fields": { + "code_commune_insee": "07237", + "nom_de_la_commune": "ST FORTUNAT SUR EYRIEUX", + "code_postal": "07360", + "coordonnees_gps": [ + 44.8349868514, + 4.68914271532 + ], + "libelle_d_acheminement": "ST FORTUNAT SUR EYRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68914271532, + 44.8349868514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff5071b1132b340c8fc822edae836bee8ee5dcb9", + "fields": { + "code_commune_insee": "07244", + "nom_de_la_commune": "ST JEAN CHAMBRE", + "code_postal": "07240", + "coordonnees_gps": [ + 44.9083362092, + 4.5616408271 + ], + "libelle_d_acheminement": "ST JEAN CHAMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5616408271, + 44.9083362092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34c10f9845864579751fa32eab3c4eb446eefd48", + "fields": { + "code_commune_insee": "07247", + "nom_de_la_commune": "ST JEAN LE CENTENIER", + "code_postal": "07580", + "coordonnees_gps": [ + 44.5873773407, + 4.53812653504 + ], + "libelle_d_acheminement": "ST JEAN LE CENTENIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53812653504, + 44.5873773407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "550c0e1ba13be159a99cf03e0f39ce9a67c07e1e", + "fields": { + "code_commune_insee": "07253", + "nom_de_la_commune": "ST JULIEN DU GUA", + "code_postal": "07190", + "coordonnees_gps": [ + 44.7707970545, + 4.44037521655 + ], + "libelle_d_acheminement": "ST JULIEN DU GUA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44037521655, + 44.7707970545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "419ba9d87b242a5dee90adb542157fea4dd0ab83", + "fields": { + "code_commune_insee": "07261", + "nom_de_la_commune": "ST LAURENT DU PAPE", + "code_postal": "07800", + "coordonnees_gps": [ + 44.8232083643, + 4.7449478067 + ], + "libelle_d_acheminement": "ST LAURENT DU PAPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7449478067, + 44.8232083643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "def34afbf2ee31f1c0b1f265d73442e93c55bc7c", + "fields": { + "code_commune_insee": "07267", + "nom_de_la_commune": "ST MARTIAL", + "code_postal": "07310", + "coordonnees_gps": [ + 44.8627438374, + 4.25132239874 + ], + "libelle_d_acheminement": "ST MARTIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25132239874, + 44.8627438374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36c5406c7823b7161ad29e8e30e837aebb0cb29c", + "fields": { + "code_commune_insee": "07269", + "nom_de_la_commune": "ST MARTIN DE VALAMAS", + "code_postal": "07310", + "coordonnees_gps": [ + 44.9365910249, + 4.37076169199 + ], + "libelle_d_acheminement": "ST MARTIN DE VALAMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37076169199, + 44.9365910249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1984c67f0f70f2edd6c5241073f7a0af79e4ef37", + "fields": { + "code_commune_insee": "07273", + "nom_de_la_commune": "ST MAURICE D IBIE", + "code_postal": "07170", + "coordonnees_gps": [ + 44.4835993539, + 4.4824459032 + ], + "libelle_d_acheminement": "ST MAURICE D IBIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4824459032, + 44.4835993539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a8712d2a8c2569b41add05609c86075aa31fdf1", + "fields": { + "code_commune_insee": "07275", + "nom_de_la_commune": "ST MELANY", + "code_postal": "07260", + "coordonnees_gps": [ + 44.5391165984, + 4.12911827009 + ], + "libelle_d_acheminement": "ST MELANY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12911827009, + 44.5391165984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bc20d232dd2bd7c99f0fb3a897a78deb8c5592a", + "fields": { + "code_commune_insee": "07277", + "nom_de_la_commune": "ST MICHEL DE BOULOGNE", + "code_postal": "07200", + "coordonnees_gps": [ + 44.6991000225, + 4.4327463684 + ], + "libelle_d_acheminement": "ST MICHEL DE BOULOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4327463684, + 44.6991000225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "447dc531a738e7997e04a24b5549ff0cac51f12f", + "fields": { + "code_commune_insee": "07278", + "nom_de_la_commune": "ST MICHEL DE CHABRILLANOUX", + "code_postal": "07360", + "coordonnees_gps": [ + 44.8373734527, + 4.61203758015 + ], + "libelle_d_acheminement": "ST MICHEL DE CHABRILLANOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61203758015, + 44.8373734527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5627a5ddb39ed67c6c7e42870f685a38f4ce142e", + "fields": { + "code_commune_insee": "07300", + "nom_de_la_commune": "ST THOME", + "code_postal": "07220", + "coordonnees_gps": [ + 44.5023905897, + 4.61908212557 + ], + "libelle_d_acheminement": "ST THOME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61908212557, + 44.5023905897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6def3a4d1c03fb4e80d61783a82c013a3e382cf8", + "fields": { + "code_commune_insee": "07312", + "nom_de_la_commune": "SECHERAS", + "code_postal": "07610", + "coordonnees_gps": [ + 45.1291892251, + 4.77685404459 + ], + "libelle_d_acheminement": "SECHERAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77685404459, + 45.1291892251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95555eadd21b045952d24857dc7864e51c5b61e0", + "fields": { + "code_commune_insee": "07313", + "nom_de_la_commune": "SERRIERES", + "code_postal": "07340", + "coordonnees_gps": [ + 45.313905067, + 4.7629922758 + ], + "libelle_d_acheminement": "SERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7629922758, + 45.313905067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcb06910fff8350133e7eaafc1ddb4ed58ba5421", + "fields": { + "code_commune_insee": "07334", + "nom_de_la_commune": "LES VANS", + "code_postal": "07140", + "coordonnees_gps": [ + 44.392206287, + 4.11524168722 + ], + "libelle_d_acheminement": "LES VANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11524168722, + 44.392206287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c7d56ed9698c38d228c84773624019d7e309498", + "fields": { + "ligne_5": "BRAHIC", + "code_commune_insee": "07334", + "libelle_d_acheminement": "LES VANS", + "code_postal": "07140", + "nom_de_la_commune": "LES VANS", + "coordonnees_gps": [ + 44.392206287, + 4.11524168722 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11524168722, + 44.392206287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6a1e62fc596816b7db3e1febe75c9dc467c37ab", + "fields": { + "code_commune_insee": "07337", + "nom_de_la_commune": "VERNOSC LES ANNONAY", + "code_postal": "07430", + "coordonnees_gps": [ + 45.2215835502, + 4.72347943452 + ], + "libelle_d_acheminement": "VERNOSC LES ANNONAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72347943452, + 45.2215835502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "958db2b4feeede20548d282d6771467360d5aa79", + "fields": { + "code_commune_insee": "07343", + "nom_de_la_commune": "VINEZAC", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5464277181, + 4.33294323997 + ], + "libelle_d_acheminement": "VINEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33294323997, + 44.5464277181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30fcdbfd4de9c1212ab6e42f27dd882f9a44882e", + "fields": { + "code_commune_insee": "08023", + "nom_de_la_commune": "ARTAISE LE VIVIER", + "code_postal": "08390", + "coordonnees_gps": [ + 49.5719309826, + 4.89264459284 + ], + "libelle_d_acheminement": "ARTAISE LE VIVIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89264459284, + 49.5719309826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94a5a551ed4e80a92764767ca6b240bc41e85848", + "fields": { + "code_commune_insee": "08024", + "nom_de_la_commune": "ASFELD", + "code_postal": "08190", + "coordonnees_gps": [ + 49.473325858, + 4.12377173054 + ], + "libelle_d_acheminement": "ASFELD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12377173054, + 49.473325858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cda17cbe61cfbc5d95c80071e7122e9bd1cbc0a", + "fields": { + "code_commune_insee": "08025", + "nom_de_la_commune": "ATTIGNY", + "code_postal": "08130", + "coordonnees_gps": [ + 49.4761720465, + 4.58492485149 + ], + "libelle_d_acheminement": "ATTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58492485149, + 49.4761720465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e413556c3c5a2b1d27129ccceffaaab59ede78c", + "fields": { + "code_commune_insee": "08028", + "nom_de_la_commune": "AUBRIVES", + "code_postal": "08320", + "coordonnees_gps": [ + 50.0873542875, + 4.76694917171 + ], + "libelle_d_acheminement": "AUBRIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76694917171, + 50.0873542875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b293cb38b9cf463ea47c039d9539da2e95a8cd5", + "fields": { + "code_commune_insee": "08029", + "nom_de_la_commune": "AUFLANCE", + "code_postal": "08370", + "coordonnees_gps": [ + 49.6152631354, + 5.29558462267 + ], + "libelle_d_acheminement": "AUFLANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29558462267, + 49.6152631354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec89edb2bd0e8a0e8d6e14901211a23a31edf6ee", + "fields": { + "code_commune_insee": "08031", + "nom_de_la_commune": "AURE", + "code_postal": "08400", + "coordonnees_gps": [ + 49.2765437387, + 4.6239215772 + ], + "libelle_d_acheminement": "AURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6239215772, + 49.2765437387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1dfa1b3c4521019611c3d274eb76d9ba96860fd", + "fields": { + "code_commune_insee": "08034", + "nom_de_la_commune": "AUTRECOURT ET POURRON", + "code_postal": "08210", + "coordonnees_gps": [ + 49.6066112918, + 5.01792506561 + ], + "libelle_d_acheminement": "AUTRECOURT ET POURRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01792506561, + 49.6066112918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b53f846676763218f80b207ef81de4512f2b3991", + "fields": { + "code_commune_insee": "08036", + "nom_de_la_commune": "AUTRY", + "code_postal": "08250", + "coordonnees_gps": [ + 49.265704992, + 4.8311535079 + ], + "libelle_d_acheminement": "AUTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8311535079, + 49.265704992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "506ab98ed3482e945892923a3591666c9323bbcd", + "fields": { + "code_commune_insee": "08048", + "nom_de_la_commune": "BARBY", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5250969786, + 4.31538215563 + ], + "libelle_d_acheminement": "BARBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31538215563, + 49.5250969786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e93c0d1343edef1d6c91c713f1d5cd2628d17fa2", + "fields": { + "code_commune_insee": "08049", + "nom_de_la_commune": "BAR LES BUZANCY", + "code_postal": "08240", + "coordonnees_gps": [ + 49.446594391, + 4.95764414152 + ], + "libelle_d_acheminement": "BAR LES BUZANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95764414152, + 49.446594391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d47020cfaaa51b35364074f805af9983259641c1", + "fields": { + "code_commune_insee": "08053", + "nom_de_la_commune": "BAZEILLES", + "code_postal": "08140", + "coordonnees_gps": [ + 49.6774342411, + 4.98515455089 + ], + "libelle_d_acheminement": "BAZEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98515455089, + 49.6774342411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42ce6faf8628f42d1560a02df7cccdb5d6d5d9f5", + "fields": { + "ligne_5": "RUBECOURT ET LAMECOURT", + "code_commune_insee": "08053", + "libelle_d_acheminement": "BAZEILLES", + "code_postal": "08140", + "nom_de_la_commune": "BAZEILLES", + "coordonnees_gps": [ + 49.6774342411, + 4.98515455089 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98515455089, + 49.6774342411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01a2650ec98eae8ef38752a9f576d8de425de0b9", + "fields": { + "code_commune_insee": "08060", + "nom_de_la_commune": "BERGNICOURT", + "code_postal": "08300", + "coordonnees_gps": [ + 49.4194188436, + 4.24742333455 + ], + "libelle_d_acheminement": "BERGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24742333455, + 49.4194188436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de1fd88ab89381e9b011b7e0f38ae20a99c00f25", + "fields": { + "code_commune_insee": "08073", + "nom_de_la_commune": "BOSSUS LES RUMIGNY", + "code_postal": "08290", + "coordonnees_gps": [ + 49.8398418664, + 4.25581170778 + ], + "libelle_d_acheminement": "BOSSUS LES RUMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25581170778, + 49.8398418664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c443873138db8948b947263c285e01fa4ebabe3f", + "fields": { + "code_commune_insee": "08074", + "nom_de_la_commune": "BOUCONVILLE", + "code_postal": "08250", + "coordonnees_gps": [ + 49.2583527847, + 4.77291946342 + ], + "libelle_d_acheminement": "BOUCONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77291946342, + 49.2583527847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9ab6dba205407f0b68983f018a537d866c1f9a6", + "fields": { + "code_commune_insee": "08078", + "nom_de_la_commune": "BOURG FIDELE", + "code_postal": "08230", + "coordonnees_gps": [ + 49.8889233145, + 4.55443692603 + ], + "libelle_d_acheminement": "BOURG FIDELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55443692603, + 49.8889233145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51129698dc01a42e3f404b6cf464194ed7f20f63", + "fields": { + "code_commune_insee": "08088", + "nom_de_la_commune": "BULSON", + "code_postal": "08450", + "coordonnees_gps": [ + 49.6288213726, + 4.91421651084 + ], + "libelle_d_acheminement": "BULSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91421651084, + 49.6288213726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a43020e03b50de9560d224035e96182f23ba4724", + "fields": { + "code_commune_insee": "08096", + "nom_de_la_commune": "CHALANDRY ELAIRE", + "code_postal": "08160", + "coordonnees_gps": [ + 49.7077474752, + 4.75646154251 + ], + "libelle_d_acheminement": "CHALANDRY ELAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75646154251, + 49.7077474752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "737de343001af068d2c5f241682cc2d73e98563a", + "fields": { + "code_commune_insee": "08099", + "nom_de_la_commune": "CHAMPIGNEUL SUR VENCE", + "code_postal": "08430", + "coordonnees_gps": [ + 49.7043891652, + 4.66376922101 + ], + "libelle_d_acheminement": "CHAMPIGNEUL SUR VENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66376922101, + 49.7043891652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faaf3162b58eeafdd18226d7798309c2284765bf", + "fields": { + "code_commune_insee": "08100", + "nom_de_la_commune": "CHAMPLIN", + "code_postal": "08260", + "coordonnees_gps": [ + 49.8350055566, + 4.32636290916 + ], + "libelle_d_acheminement": "CHAMPLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32636290916, + 49.8350055566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9e50ccd6f1e23c7a806936d3f9c54878ef84d9f", + "fields": { + "code_commune_insee": "08110", + "nom_de_la_commune": "LE CHATELET SUR SORMONNE", + "code_postal": "08150", + "coordonnees_gps": [ + 49.8401358132, + 4.51748909775 + ], + "libelle_d_acheminement": "LE CHATELET SUR SORMONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51748909775, + 49.8401358132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ff5a31580eb47c04fc34077b70a8d23e76722c5", + "fields": { + "code_commune_insee": "08113", + "nom_de_la_commune": "CHAUMONT PORCIEN", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6486344865, + 4.23823742678 + ], + "libelle_d_acheminement": "CHAUMONT PORCIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23823742678, + 49.6486344865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4e9b9c2440bc31038a80eb07b67daa0935be5e1", + "fields": { + "ligne_5": "CHEMERY SUR BAR", + "code_commune_insee": "08115", + "libelle_d_acheminement": "CHEMERY CHEHERY", + "code_postal": "08450", + "nom_de_la_commune": "CHEMERY CHEHERY", + "coordonnees_gps": [ + 49.6121866829, + 4.86796266494 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86796266494, + 49.6121866829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfe25ceee976fa8157386408513796250a4ba758", + "fields": { + "code_commune_insee": "08122", + "nom_de_la_commune": "CHOOZ", + "code_postal": "08600", + "coordonnees_gps": [ + 50.0907731291, + 4.80080378655 + ], + "libelle_d_acheminement": "CHOOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80080378655, + 50.0907731291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad5d30f98735f0197ce5ffa0b06d97f974e713a9", + "fields": { + "code_commune_insee": "08124", + "nom_de_la_commune": "CLAVY WARBY", + "code_postal": "08460", + "coordonnees_gps": [ + 49.7451097313, + 4.54792951567 + ], + "libelle_d_acheminement": "CLAVY WARBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54792951567, + 49.7451097313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99970eba5bebce827ca7db31cb87f9d182c7c664", + "fields": { + "code_commune_insee": "08126", + "nom_de_la_commune": "CONDE LES HERPY", + "code_postal": "08360", + "coordonnees_gps": [ + 49.5425026908, + 4.19795434047 + ], + "libelle_d_acheminement": "CONDE LES HERPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19795434047, + 49.5425026908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e487a2f39d1ee4eec0805bb9197903c541de43ce", + "fields": { + "code_commune_insee": "08130", + "nom_de_la_commune": "CONTREUVE", + "code_postal": "08400", + "coordonnees_gps": [ + 49.3619911598, + 4.61559567137 + ], + "libelle_d_acheminement": "CONTREUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61559567137, + 49.3619911598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fedaf32d113377c15a6548fc4e526a6f210ccd74", + "fields": { + "code_commune_insee": "08139", + "nom_de_la_commune": "DEVILLE", + "code_postal": "08800", + "coordonnees_gps": [ + 49.8750647112, + 4.69366948073 + ], + "libelle_d_acheminement": "DEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69366948073, + 49.8750647112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "055ccb70c75343e23d90c47633a8e901a1911497", + "fields": { + "code_commune_insee": "08144", + "nom_de_la_commune": "DOUX", + "code_postal": "08300", + "coordonnees_gps": [ + 49.516603776, + 4.42838018465 + ], + "libelle_d_acheminement": "DOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42838018465, + 49.516603776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c332e03efb5f2d17a72af74ff0208b32853c9064", + "fields": { + "code_commune_insee": "08163", + "nom_de_la_commune": "FAISSAULT", + "code_postal": "08270", + "coordonnees_gps": [ + 49.6089496847, + 4.50566340675 + ], + "libelle_d_acheminement": "FAISSAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50566340675, + 49.6089496847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c177bb771e52e20fa685a3ad04b01cbbbc4f3fea", + "fields": { + "code_commune_insee": "08172", + "nom_de_la_commune": "FLIGNY", + "code_postal": "08380", + "coordonnees_gps": [ + 49.8835632271, + 4.26492638229 + ], + "libelle_d_acheminement": "FLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26492638229, + 49.8835632271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "775e9b2e6894c5e51e2650c9a524b367f63c3ae5", + "fields": { + "ligne_5": "BOUTANCOURT", + "code_commune_insee": "08173", + "libelle_d_acheminement": "FLIZE", + "code_postal": "08160", + "nom_de_la_commune": "FLIZE", + "coordonnees_gps": [ + 49.6952977524, + 4.77517346922 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77517346922, + 49.6952977524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08e1bee3468e4ed3a3ffb136dc3bb5fb38f9ae4d", + "fields": { + "code_commune_insee": "08179", + "nom_de_la_commune": "FRANCHEVAL", + "code_postal": "08140", + "coordonnees_gps": [ + 49.720311451, + 5.07545452741 + ], + "libelle_d_acheminement": "FRANCHEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07545452741, + 49.720311451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d72c97e8597f7d00f6947e121c2c0b89fd0d505", + "fields": { + "code_commune_insee": "08182", + "nom_de_la_commune": "LE FRETY", + "code_postal": "08290", + "coordonnees_gps": [ + 49.734490847, + 4.26196353021 + ], + "libelle_d_acheminement": "LE FRETY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26196353021, + 49.734490847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9944606648663f736663a011ee8af75610b7685", + "fields": { + "code_commune_insee": "08185", + "nom_de_la_commune": "FUMAY", + "code_postal": "08170", + "coordonnees_gps": [ + 49.9726262845, + 4.66006812542 + ], + "libelle_d_acheminement": "FUMAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66006812542, + 49.9726262845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a885e8eb6209b8c09c268f4ed681939e320be2fd", + "fields": { + "code_commune_insee": "08192", + "nom_de_la_commune": "GIVRON", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6564549525, + 4.29619414129 + ], + "libelle_d_acheminement": "GIVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29619414129, + 49.6564549525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a89981bb973cb16e2049ee6cee154b8497263f0c", + "fields": { + "code_commune_insee": "08193", + "nom_de_la_commune": "GIVRY", + "code_postal": "08130", + "coordonnees_gps": [ + 49.4889972004, + 4.53139534067 + ], + "libelle_d_acheminement": "GIVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53139534067, + 49.4889972004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dc812b94403d0bf40c6862afa05fd05286ca9d6", + "fields": { + "code_commune_insee": "08198", + "nom_de_la_commune": "GRANDPRE", + "code_postal": "08250", + "coordonnees_gps": [ + 49.3557413178, + 4.86541939254 + ], + "libelle_d_acheminement": "GRANDPRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86541939254, + 49.3557413178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "768392b9f8c845be75d493f89a2ea2c9b6975930", + "fields": { + "ligne_5": "TERMES", + "code_commune_insee": "08198", + "libelle_d_acheminement": "GRANDPRE", + "code_postal": "08250", + "nom_de_la_commune": "GRANDPRE", + "coordonnees_gps": [ + 49.3557413178, + 4.86541939254 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86541939254, + 49.3557413178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f30c777317467cf49c6be9986d7ece6a9178f29", + "fields": { + "code_commune_insee": "08203", + "nom_de_la_commune": "GUIGNICOURT SUR VENCE", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6886825808, + 4.63302128326 + ], + "libelle_d_acheminement": "GUIGNICOURT SUR VENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63302128326, + 49.6886825808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91352816d084c982dc7aa08f3929594a4c29ce6b", + "fields": { + "code_commune_insee": "08204", + "nom_de_la_commune": "GUINCOURT", + "code_postal": "08130", + "coordonnees_gps": [ + 49.5563378123, + 4.62813425759 + ], + "libelle_d_acheminement": "GUINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62813425759, + 49.5563378123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "137bcaf8d2720961eb3ce95554c6ba1009e417b7", + "fields": { + "code_commune_insee": "08205", + "nom_de_la_commune": "HAGNICOURT", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6109645612, + 4.58423752594 + ], + "libelle_d_acheminement": "HAGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58423752594, + 49.6109645612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2efb0d1afcc8556da681dd33f5874386a59e822", + "fields": { + "code_commune_insee": "08207", + "nom_de_la_commune": "HAM SUR MEUSE", + "code_postal": "08600", + "coordonnees_gps": [ + 50.0894618864, + 4.78296461056 + ], + "libelle_d_acheminement": "HAM SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78296461056, + 50.0894618864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3472a62156949974c56d7d490058e6dcf3b05e33", + "fields": { + "code_commune_insee": "08212", + "nom_de_la_commune": "HARCY", + "code_postal": "08150", + "coordonnees_gps": [ + 49.8527000599, + 4.55802852688 + ], + "libelle_d_acheminement": "HARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55802852688, + 49.8527000599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b15544704b45b81f5840502f33a44243ad7184c", + "fields": { + "code_commune_insee": "08214", + "nom_de_la_commune": "HARGNIES", + "code_postal": "08170", + "coordonnees_gps": [ + 50.0091831933, + 4.79099611271 + ], + "libelle_d_acheminement": "HARGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79099611271, + 50.0091831933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed8d40922835a255026230e7026d51faa3bf09ae", + "fields": { + "code_commune_insee": "08220", + "nom_de_la_commune": "HAUVINE", + "code_postal": "08310", + "coordonnees_gps": [ + 49.3159803218, + 4.41170841421 + ], + "libelle_d_acheminement": "HAUVINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41170841421, + 49.3159803218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a876f9aabc12fce47c951acd033fe54b535e143", + "fields": { + "code_commune_insee": "08223", + "nom_de_la_commune": "HERBEUVAL", + "code_postal": "08370", + "coordonnees_gps": [ + 49.6014736891, + 5.35301379214 + ], + "libelle_d_acheminement": "HERBEUVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35301379214, + 49.6014736891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42c4a3d3b20d4c5af1950d954156253dd953f4f7", + "fields": { + "code_commune_insee": "08225", + "nom_de_la_commune": "HERPY L ARLESIENNE", + "code_postal": "08360", + "coordonnees_gps": [ + 49.5259538637, + 4.18823352667 + ], + "libelle_d_acheminement": "HERPY L ARLESIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18823352667, + 49.5259538637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "500f8ea3b87cf4c0ad59f2aff3327cb8a3d95ca4", + "fields": { + "code_commune_insee": "08229", + "nom_de_la_commune": "HOUDILCOURT", + "code_postal": "08190", + "coordonnees_gps": [ + 49.4226756545, + 4.1256886512 + ], + "libelle_d_acheminement": "HOUDILCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1256886512, + 49.4226756545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f734af2788c9b306be6468135c9e09ea03b59a19", + "fields": { + "code_commune_insee": "08238", + "nom_de_la_commune": "JONVAL", + "code_postal": "08130", + "coordonnees_gps": [ + 49.5691976392, + 4.66304334779 + ], + "libelle_d_acheminement": "JONVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66304334779, + 49.5691976392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bac0bf5cb80c6be8572b160e6cae3af2ceea7bb0", + "fields": { + "ligne_5": "LA PETITE COMMUNE", + "code_commune_insee": "08242", + "libelle_d_acheminement": "LAIFOUR", + "code_postal": "08800", + "nom_de_la_commune": "LAIFOUR", + "coordonnees_gps": [ + 49.902088382, + 4.69565397804 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69565397804, + 49.902088382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "754de3206ec4268ff7a0aeb64eb242074c7b851c", + "fields": { + "code_commune_insee": "08247", + "nom_de_la_commune": "LANDRICHAMPS", + "code_postal": "08600", + "coordonnees_gps": [ + 50.0794047362, + 4.82747884196 + ], + "libelle_d_acheminement": "LANDRICHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82747884196, + 50.0794047362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0809996f742407a9c30464cbeeb75aa66f4f4ac4", + "fields": { + "code_commune_insee": "08250", + "nom_de_la_commune": "LEFFINCOURT", + "code_postal": "08310", + "coordonnees_gps": [ + 49.3814874349, + 4.55085342469 + ], + "libelle_d_acheminement": "LEFFINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55085342469, + 49.3814874349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65706360d1ddcfbf855c3efdd557e7ffc7062963", + "fields": { + "code_commune_insee": "08251", + "nom_de_la_commune": "LEPRON LES VALLEES", + "code_postal": "08150", + "coordonnees_gps": [ + 49.749207, + 4.45628552785 + ], + "libelle_d_acheminement": "LEPRON LES VALLEES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45628552785, + 49.749207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14a93aab9f3728c74a4469de913d3d8ffb1cfd31", + "fields": { + "code_commune_insee": "08254", + "nom_de_la_commune": "LIART", + "code_postal": "08290", + "coordonnees_gps": [ + 49.7612029643, + 4.34152094033 + ], + "libelle_d_acheminement": "LIART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34152094033, + 49.7612029643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58815da9d685c1ad47cd571ac5dc0453119737c8", + "fields": { + "code_commune_insee": "08256", + "nom_de_la_commune": "LIRY", + "code_postal": "08400", + "coordonnees_gps": [ + 49.3047517017, + 4.6426157479 + ], + "libelle_d_acheminement": "LIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6426157479, + 49.3047517017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c8eba8ff3a300ca762cc19d7cf6a04dc2808248", + "fields": { + "code_commune_insee": "08262", + "nom_de_la_commune": "LUCQUY", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5371334292, + 4.47628128678 + ], + "libelle_d_acheminement": "LUCQUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47628128678, + 49.5371334292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e875a2b84780b39d67cc56639a00ff3d62216ff", + "fields": { + "code_commune_insee": "08273", + "nom_de_la_commune": "MARBY", + "code_postal": "08260", + "coordonnees_gps": [ + 49.8351105906, + 4.42694488413 + ], + "libelle_d_acheminement": "MARBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42694488413, + 49.8351105906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e49700fd1a4bb32a05216de179d6e7473aedb0ac", + "fields": { + "code_commune_insee": "08279", + "nom_de_la_commune": "MARS SOUS BOURCQ", + "code_postal": "08400", + "coordonnees_gps": [ + 49.4008386029, + 4.64097483841 + ], + "libelle_d_acheminement": "MARS SOUS BOURCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64097483841, + 49.4008386029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6094a0a286d7b5000d95d4c00438f7914df71bef", + "fields": { + "code_commune_insee": "08284", + "nom_de_la_commune": "LES MAZURES", + "code_postal": "08500", + "coordonnees_gps": [ + 49.8968391326, + 4.63190460974 + ], + "libelle_d_acheminement": "LES MAZURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63190460974, + 49.8968391326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b824740e31e65e3d2550c1a86ff31b52e0554d28", + "fields": { + "code_commune_insee": "08286", + "nom_de_la_commune": "MENIL ANNELLES", + "code_postal": "08310", + "coordonnees_gps": [ + 49.4366027969, + 4.44985286744 + ], + "libelle_d_acheminement": "MENIL ANNELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44985286744, + 49.4366027969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00e6736ca6d3d570876b51eca491668e0b689845", + "fields": { + "code_commune_insee": "08296", + "nom_de_la_commune": "MONTCHEUTIN", + "code_postal": "08250", + "coordonnees_gps": [ + 49.2882211618, + 4.80310887786 + ], + "libelle_d_acheminement": "MONTCHEUTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80310887786, + 49.2882211618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a512c045a1e1e462cf28338a8a0446ae7a5edc70", + "fields": { + "code_commune_insee": "08302", + "nom_de_la_commune": "MONTHERME", + "code_postal": "08800", + "coordonnees_gps": [ + 49.8995880396, + 4.74792062514 + ], + "libelle_d_acheminement": "MONTHERME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74792062514, + 49.8995880396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6850d1fedfd95c1950fa8fa0f70279bd756b7ec6", + "fields": { + "code_commune_insee": "08311", + "nom_de_la_commune": "MOUZON", + "code_postal": "08210", + "coordonnees_gps": [ + 49.5898672379, + 5.07669736879 + ], + "libelle_d_acheminement": "MOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07669736879, + 49.5898672379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "203471a37d7090f2cdcc36f46f491cb8e3d79396", + "fields": { + "code_commune_insee": "08318", + "nom_de_la_commune": "LA NEUVILLE AUX JOUTES", + "code_postal": "08380", + "coordonnees_gps": [ + 49.9331443854, + 4.24087440967 + ], + "libelle_d_acheminement": "LA NEUVILLE AUX JOUTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24087440967, + 49.9331443854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "774968e61e26f37987ce40ac9cf5e2def49055b9", + "fields": { + "code_commune_insee": "08327", + "nom_de_la_commune": "NOUVION SUR MEUSE", + "code_postal": "08160", + "coordonnees_gps": [ + 49.708839768, + 4.79759753674 + ], + "libelle_d_acheminement": "NOUVION SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79759753674, + 49.708839768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf9e6ad89e8d88d87a286c0bb479c6dbd9b9f4fc", + "fields": { + "code_commune_insee": "08329", + "nom_de_la_commune": "NOVION PORCIEN", + "code_postal": "08270", + "coordonnees_gps": [ + 49.5959529049, + 4.42856653433 + ], + "libelle_d_acheminement": "NOVION PORCIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42856653433, + 49.5959529049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c1ec6e855297c4559831f11cc9f956fb575e304", + "fields": { + "code_commune_insee": "08333", + "nom_de_la_commune": "OLIZY PRIMAT", + "code_postal": "08250", + "coordonnees_gps": [ + 49.3578421825, + 4.78297338685 + ], + "libelle_d_acheminement": "OLIZY PRIMAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78297338685, + 49.3578421825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f89606bad541cdbb4a8e19afaa51ad5f7a90b574", + "fields": { + "code_commune_insee": "08334", + "nom_de_la_commune": "OMICOURT", + "code_postal": "08450", + "coordonnees_gps": [ + 49.6297467119, + 4.82675764027 + ], + "libelle_d_acheminement": "OMICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82675764027, + 49.6297467119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58eb9e5527aa7995844b362182464f990b12b9aa", + "fields": { + "code_commune_insee": "08335", + "nom_de_la_commune": "OMONT", + "code_postal": "08430", + "coordonnees_gps": [ + 49.5934262613, + 4.73941860083 + ], + "libelle_d_acheminement": "OMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73941860083, + 49.5934262613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26c5202c855773de2f408df1abe5c1c67acb8375", + "fields": { + "code_commune_insee": "08336", + "nom_de_la_commune": "OSNES", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6585879647, + 5.15768970071 + ], + "libelle_d_acheminement": "OSNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15768970071, + 49.6585879647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d85f94ecf67534fe1d61a16b9c33b65c5d20666d", + "fields": { + "code_commune_insee": "08349", + "nom_de_la_commune": "PURE", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6818291341, + 5.18018679003 + ], + "libelle_d_acheminement": "PURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18018679003, + 49.6818291341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1f0c8084001fe61435051f596aa947be13655fe", + "fields": { + "code_commune_insee": "08373", + "nom_de_la_commune": "RUMIGNY", + "code_postal": "08290", + "coordonnees_gps": [ + 49.8046346416, + 4.27087313138 + ], + "libelle_d_acheminement": "RUMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27087313138, + 49.8046346416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8be323ed52b155ef3a7f43020326a7862452b56a", + "fields": { + "code_commune_insee": "08381", + "nom_de_la_commune": "ST GERMAINMONT", + "code_postal": "08190", + "coordonnees_gps": [ + 49.5206305047, + 4.13492327626 + ], + "libelle_d_acheminement": "ST GERMAINMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13492327626, + 49.5206305047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4543a38c30cfe51731408d6ceb6c48a4ed9cb8ea", + "fields": { + "code_commune_insee": "08385", + "nom_de_la_commune": "ST LAURENT", + "code_postal": "08090", + "coordonnees_gps": [ + 49.759138963, + 4.77607432501 + ], + "libelle_d_acheminement": "ST LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77607432501, + 49.759138963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a1f45437541d50bf28abb4b19cb02548b550a2a", + "fields": { + "code_commune_insee": "08388", + "nom_de_la_commune": "ST MARCEAU", + "code_postal": "08160", + "coordonnees_gps": [ + 49.7064000301, + 4.720080151 + ], + "libelle_d_acheminement": "ST MARCEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.720080151, + 49.7064000301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f90ebb7333dde27a080ed3e9f14e5e39928a8c0", + "fields": { + "code_commune_insee": "08391", + "nom_de_la_commune": "ST MENGES", + "code_postal": "08200", + "coordonnees_gps": [ + 49.759865829, + 4.93156116451 + ], + "libelle_d_acheminement": "ST MENGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93156116451, + 49.759865829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6786d724cba97ec72ccb0685936203318ea2dd63", + "fields": { + "code_commune_insee": "08394", + "nom_de_la_commune": "ST PIERREMONT", + "code_postal": "08240", + "coordonnees_gps": [ + 49.4891932273, + 4.94533489491 + ], + "libelle_d_acheminement": "ST PIERREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94533489491, + 49.4891932273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "822f0816f550edc9f5145ec777b027e7f7cc3867", + "fields": { + "code_commune_insee": "08404", + "nom_de_la_commune": "SAULT ST REMY", + "code_postal": "08190", + "coordonnees_gps": [ + 49.4246765802, + 4.15669310399 + ], + "libelle_d_acheminement": "SAULT ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15669310399, + 49.4246765802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5b1b024b45e1dcfb0cbee80ec50dfed10aa43a0", + "fields": { + "code_commune_insee": "08405", + "nom_de_la_commune": "SAUVILLE", + "code_postal": "08390", + "coordonnees_gps": [ + 49.5508316655, + 4.78667759397 + ], + "libelle_d_acheminement": "SAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78667759397, + 49.5508316655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff432f3daa8eda5382393f94412535ca179bbbf4", + "fields": { + "code_commune_insee": "08407", + "nom_de_la_commune": "SECHAULT", + "code_postal": "08250", + "coordonnees_gps": [ + 49.2714856559, + 4.73688759461 + ], + "libelle_d_acheminement": "SECHAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73688759461, + 49.2714856559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d774cbc8e1ab7558792614ee4fc67d834462c84", + "fields": { + "code_commune_insee": "08412", + "nom_de_la_commune": "SENUC", + "code_postal": "08250", + "coordonnees_gps": [ + 49.3080610685, + 4.85209059171 + ], + "libelle_d_acheminement": "SENUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85209059171, + 49.3080610685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "468a27686b413105f6b13b57a8000c3cc6987de3", + "fields": { + "code_commune_insee": "08413", + "nom_de_la_commune": "SERAINCOURT", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6220794201, + 4.18799249278 + ], + "libelle_d_acheminement": "SERAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18799249278, + 49.6220794201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19fb268bf34ad8f246495c30bb6fc4171329b498", + "fields": { + "code_commune_insee": "08415", + "nom_de_la_commune": "SERY", + "code_postal": "08270", + "coordonnees_gps": [ + 49.5893011177, + 4.36138115369 + ], + "libelle_d_acheminement": "SERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36138115369, + 49.5893011177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce2b8889c019944395b367e35beec91f0bd8759f", + "fields": { + "code_commune_insee": "08417", + "nom_de_la_commune": "SEVIGNY LA FORET", + "code_postal": "08230", + "coordonnees_gps": [ + 49.8792027455, + 4.47923063972 + ], + "libelle_d_acheminement": "SEVIGNY LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47923063972, + 49.8792027455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5943634166ce088b97662e01d4ba9a508ff8e3e1", + "fields": { + "code_commune_insee": "08427", + "nom_de_la_commune": "SORBON", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5514575157, + 4.37200155561 + ], + "libelle_d_acheminement": "SORBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37200155561, + 49.5514575157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e270ac8479c57d95514eabd635b8dac4353d204a", + "fields": { + "code_commune_insee": "08429", + "nom_de_la_commune": "SORMONNE", + "code_postal": "08150", + "coordonnees_gps": [ + 49.8083418844, + 4.56343699968 + ], + "libelle_d_acheminement": "SORMONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56343699968, + 49.8083418844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd5e6274795e3542d29b4710502a1b155ebb5972", + "fields": { + "code_commune_insee": "08431", + "nom_de_la_commune": "SUGNY", + "code_postal": "08400", + "coordonnees_gps": [ + 49.3554291298, + 4.66082182219 + ], + "libelle_d_acheminement": "SUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66082182219, + 49.3554291298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "928125c12fc01b7a165ac782b082d638ee06ff20", + "fields": { + "code_commune_insee": "08434", + "nom_de_la_commune": "SY", + "code_postal": "08390", + "coordonnees_gps": [ + 49.5140552485, + 4.87192502711 + ], + "libelle_d_acheminement": "SY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87192502711, + 49.5140552485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02a25b78b63ca3095e32c29f69a54658741b5be5", + "fields": { + "code_commune_insee": "08435", + "nom_de_la_commune": "TAGNON", + "code_postal": "08300", + "coordonnees_gps": [ + 49.4497696397, + 4.2922571776 + ], + "libelle_d_acheminement": "TAGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2922571776, + 49.4497696397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae97de1fe4846654de3443d21b93a1bce58381bc", + "fields": { + "code_commune_insee": "08438", + "nom_de_la_commune": "TAIZY", + "code_postal": "08360", + "coordonnees_gps": [ + 49.5106550755, + 4.25851649147 + ], + "libelle_d_acheminement": "TAIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25851649147, + 49.5106550755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af3fb00eee2ea47edbfa8806d42eb44ef6118069", + "fields": { + "code_commune_insee": "08448", + "nom_de_la_commune": "THILAY", + "code_postal": "08800", + "coordonnees_gps": [ + 49.8995068878, + 4.80748273961 + ], + "libelle_d_acheminement": "THILAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80748273961, + 49.8995068878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f3c07331e7530d6a515abc22469ddf67aebab18", + "fields": { + "ligne_5": "NOHAN", + "code_commune_insee": "08448", + "libelle_d_acheminement": "THILAY", + "code_postal": "08800", + "nom_de_la_commune": "THILAY", + "coordonnees_gps": [ + 49.8995068878, + 4.80748273961 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80748273961, + 49.8995068878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "581bc95b54b03391b7d3bfbef84ef3ba04a55197", + "fields": { + "code_commune_insee": "08449", + "nom_de_la_commune": "THIN LE MOUTIER", + "code_postal": "08460", + "coordonnees_gps": [ + 49.7150524983, + 4.51191807216 + ], + "libelle_d_acheminement": "THIN LE MOUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51191807216, + 49.7150524983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e708e65d1ae4a6aa471e9bc5d0e1005b4b70be72", + "fields": { + "code_commune_insee": "08452", + "nom_de_la_commune": "THUGNY TRUGNY", + "code_postal": "08300", + "coordonnees_gps": [ + 49.4774101682, + 4.42112351465 + ], + "libelle_d_acheminement": "THUGNY TRUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42112351465, + 49.4774101682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c56695f501eb51aed5e4356b535e6c8cf542cab9", + "fields": { + "code_commune_insee": "08453", + "nom_de_la_commune": "TOGES", + "code_postal": "08400", + "coordonnees_gps": [ + 49.4255298264, + 4.78533693531 + ], + "libelle_d_acheminement": "TOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78533693531, + 49.4255298264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a0aeac603114b55c5b5a27917ebedae2769f24f", + "fields": { + "code_commune_insee": "08458", + "nom_de_la_commune": "TOURTERON", + "code_postal": "08130", + "coordonnees_gps": [ + 49.5406354028, + 4.64242519656 + ], + "libelle_d_acheminement": "TOURTERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64242519656, + 49.5406354028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a3ff8c94b1570465eda582f1095aa2c9defbb8a", + "fields": { + "code_commune_insee": "08462", + "nom_de_la_commune": "VAUX CHAMPAGNE", + "code_postal": "08130", + "coordonnees_gps": [ + 49.4463918173, + 4.54892328965 + ], + "libelle_d_acheminement": "VAUX CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54892328965, + 49.4463918173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbd92f8af25b13c179b2420bc915e63b71733d0b", + "fields": { + "code_commune_insee": "08466", + "nom_de_la_commune": "VAUX LES MOUZON", + "code_postal": "08210", + "coordonnees_gps": [ + 49.60312563, + 5.13703497339 + ], + "libelle_d_acheminement": "VAUX LES MOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13703497339, + 49.60312563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66ff476dbd3d154e7f8a376bde9e6d5f6646f30f", + "fields": { + "code_commune_insee": "08468", + "nom_de_la_commune": "VAUX VILLAINE", + "code_postal": "08150", + "coordonnees_gps": [ + 49.7691050274, + 4.4726961277 + ], + "libelle_d_acheminement": "VAUX VILLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4726961277, + 49.7691050274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d2978c20d988889bc15c2d08774e6a5616d964a", + "fields": { + "code_commune_insee": "08480", + "nom_de_la_commune": "VILLERS SEMEUSE", + "code_postal": "08000", + "coordonnees_gps": [ + 49.7411448562, + 4.7510548564 + ], + "libelle_d_acheminement": "VILLERS SEMEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7510548564, + 49.7411448562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9818be03002258769a34958385c5584f8928eb2", + "fields": { + "code_commune_insee": "08486", + "nom_de_la_commune": "VIREUX MOLHAIN", + "code_postal": "08320", + "coordonnees_gps": [ + 50.0772550914, + 4.70502555078 + ], + "libelle_d_acheminement": "VIREUX MOLHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70502555078, + 50.0772550914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b84d93a5247ef953aeea1495affe84c85e206e8", + "fields": { + "ligne_5": "VRIZY", + "code_commune_insee": "08490", + "libelle_d_acheminement": "VOUZIERS", + "code_postal": "08400", + "nom_de_la_commune": "VOUZIERS", + "coordonnees_gps": [ + 49.4000316087, + 4.70126283768 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70126283768, + 49.4000316087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b6fa674857775dd88b03c99b25bd71a35e358e1", + "fields": { + "code_commune_insee": "08503", + "nom_de_la_commune": "YVERNAUMONT", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6747132911, + 4.66268790823 + ], + "libelle_d_acheminement": "YVERNAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66268790823, + 49.6747132911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9110f6f063baa6f4231df31bb555e5a2d23d34d4", + "fields": { + "code_commune_insee": "09001", + "nom_de_la_commune": "AIGUES JUNTES", + "code_postal": "09240", + "coordonnees_gps": [ + 43.0506179616, + 1.47151123009 + ], + "libelle_d_acheminement": "AIGUES JUNTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47151123009, + 43.0506179616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e35e801306986b7952c46a7bc819ffac3a8c6ed3", + "fields": { + "code_commune_insee": "09013", + "nom_de_la_commune": "ARABAUX", + "code_postal": "09000", + "coordonnees_gps": [ + 42.980519234, + 1.63390482016 + ], + "libelle_d_acheminement": "ARABAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63390482016, + 42.980519234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0c0e4555fb4ea5870b614dbd057b5948baec2c0", + "fields": { + "code_commune_insee": "09018", + "nom_de_la_commune": "ARROUT", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9475606635, + 1.01996413494 + ], + "libelle_d_acheminement": "ARROUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01996413494, + 42.9475606635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "311f4b4653deda2347a37b66b3928eef2d3abba3", + "fields": { + "code_commune_insee": "09024", + "nom_de_la_commune": "ASTON", + "code_postal": "09310", + "coordonnees_gps": [ + 42.680832026, + 1.65945312513 + ], + "libelle_d_acheminement": "ASTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65945312513, + 42.680832026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae4936a9866ffe97d1f55f8ea3961a1b1c601e8f", + "fields": { + "code_commune_insee": "09026", + "nom_de_la_commune": "AUDRESSEIN", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9305094861, + 1.02016808143 + ], + "libelle_d_acheminement": "AUDRESSEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02016808143, + 42.9305094861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f374954625b027d16576e3eb1b0b8b86b38929b", + "fields": { + "code_commune_insee": "09027", + "nom_de_la_commune": "AUGIREIN", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9108818851, + 0.916808840124 + ], + "libelle_d_acheminement": "AUGIREIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.916808840124, + 42.9108818851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2758a940a256730c9df5fb99535e95b1f1731a01", + "fields": { + "code_commune_insee": "09048", + "nom_de_la_commune": "BELLOC", + "code_postal": "09600", + "coordonnees_gps": [ + 43.0072443769, + 1.93332486097 + ], + "libelle_d_acheminement": "BELLOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93332486097, + 43.0072443769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72d4e50e2730df65e7f9c2ced4b7c6bca3ca14de", + "fields": { + "code_commune_insee": "09052", + "nom_de_la_commune": "BESSET", + "code_postal": "09500", + "coordonnees_gps": [ + 43.072738948, + 1.84596031443 + ], + "libelle_d_acheminement": "BESSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84596031443, + 43.072738948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e33a9eecafeabfb2389ee1e501caad9c7a22d2af", + "fields": { + "code_commune_insee": "09060", + "nom_de_la_commune": "BONNAC", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1726271399, + 1.58703667646 + ], + "libelle_d_acheminement": "BONNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58703667646, + 43.1726271399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "084921ba9d16a4cff2012851e9fcdf4483a4729b", + "fields": { + "code_commune_insee": "09063", + "nom_de_la_commune": "LE BOSC", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9329534185, + 1.44571486476 + ], + "libelle_d_acheminement": "LE BOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44571486476, + 42.9329534185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1083ce3463c0e4588603080348563109874983b0", + "fields": { + "code_commune_insee": "09067", + "nom_de_la_commune": "BRIE", + "code_postal": "09700", + "coordonnees_gps": [ + 43.2070860138, + 1.51654093771 + ], + "libelle_d_acheminement": "BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51654093771, + 43.2070860138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c40e7cc9ee4efe0f0a805086297e8c37dbd94cc", + "fields": { + "code_commune_insee": "09070", + "nom_de_la_commune": "LES CABANNES", + "code_postal": "09310", + "coordonnees_gps": [ + 42.7860666312, + 1.68644152228 + ], + "libelle_d_acheminement": "LES CABANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68644152228, + 42.7860666312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0264ef7a377083df5e58f049687d995f13704e1", + "fields": { + "code_commune_insee": "09071", + "nom_de_la_commune": "CADARCET", + "code_postal": "09240", + "coordonnees_gps": [ + 43.0136914773, + 1.50207192139 + ], + "libelle_d_acheminement": "CADARCET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50207192139, + 43.0136914773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8330d9cef8808d654ade581dccc2b49f330ad669", + "fields": { + "code_commune_insee": "09072", + "nom_de_la_commune": "CALZAN", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0326048013, + 1.74084762651 + ], + "libelle_d_acheminement": "CALZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74084762651, + 43.0326048013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c7f55341afa1a56351e874021797aa02e869942", + "fields": { + "code_commune_insee": "09074", + "nom_de_la_commune": "CAMON", + "code_postal": "09500", + "coordonnees_gps": [ + 43.021523452, + 1.96173407084 + ], + "libelle_d_acheminement": "CAMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96173407084, + 43.021523452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "413cdcda568e03a4d0d1ef882709c6fbf9098bdb", + "fields": { + "code_commune_insee": "09076", + "nom_de_la_commune": "CANTE", + "code_postal": "09700", + "coordonnees_gps": [ + 43.2487009717, + 1.52354253407 + ], + "libelle_d_acheminement": "CANTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52354253407, + 43.2487009717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50d568b519a3136dd8383b1aea0181f451341d5d", + "fields": { + "code_commune_insee": "09082", + "nom_de_la_commune": "CASTELNAU DURBAN", + "code_postal": "09420", + "coordonnees_gps": [ + 42.9928317992, + 1.33850962777 + ], + "libelle_d_acheminement": "CASTELNAU DURBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33850962777, + 42.9928317992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4730364175d0eb0bd23f8b4755bea09071b24809", + "fields": { + "code_commune_insee": "09085", + "nom_de_la_commune": "CASTILLON EN COUSERANS", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9165658331, + 1.05571963783 + ], + "libelle_d_acheminement": "CASTILLON EN COUSERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05571963783, + 42.9165658331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c48817cb91c47f3cf6ca0f68fee08273d7fb6f71", + "fields": { + "code_commune_insee": "09086", + "nom_de_la_commune": "CAUMONT", + "code_postal": "09160", + "coordonnees_gps": [ + 43.024099366, + 1.07931622344 + ], + "libelle_d_acheminement": "CAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07931622344, + 43.024099366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbf2d6f67ea2eb6abcb680ba5ec883a40c9127ae", + "fields": { + "code_commune_insee": "09090", + "nom_de_la_commune": "CAZAUX", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0532282657, + 1.51928694563 + ], + "libelle_d_acheminement": "CAZAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51928694563, + 43.0532282657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "359ebb3f13296c7f38b0e2aca50048466b312a20", + "fields": { + "code_commune_insee": "09097", + "nom_de_la_commune": "CLERMONT", + "code_postal": "09420", + "coordonnees_gps": [ + 43.0372197049, + 1.29061556438 + ], + "libelle_d_acheminement": "CLERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29061556438, + 43.0372197049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbaa3719b6e79e65aeee195494070525aa277531", + "fields": { + "code_commune_insee": "09104", + "nom_de_la_commune": "DALOU", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0288762332, + 1.64821776091 + ], + "libelle_d_acheminement": "DALOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64821776091, + 43.0288762332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9454738b05bd7e2084b719ba3bf2fe70f1a1363a", + "fields": { + "code_commune_insee": "09108", + "nom_de_la_commune": "DURBAN SUR ARIZE", + "code_postal": "09240", + "coordonnees_gps": [ + 43.0204997035, + 1.34729463737 + ], + "libelle_d_acheminement": "DURBAN SUR ARIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34729463737, + 43.0204997035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30e1e3b87aef76da3ae8792eca7c0f7c2b2551be", + "fields": { + "code_commune_insee": "09110", + "nom_de_la_commune": "ENCOURTIECH", + "code_postal": "09200", + "coordonnees_gps": [ + 42.9635581924, + 1.19263328033 + ], + "libelle_d_acheminement": "ENCOURTIECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19263328033, + 42.9635581924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0dc16e23840ecf0e9160262d1f7519c46b05a0a", + "fields": { + "code_commune_insee": "09119", + "nom_de_la_commune": "EYCHEIL", + "code_postal": "09200", + "coordonnees_gps": [ + 42.9553633761, + 1.15625348151 + ], + "libelle_d_acheminement": "EYCHEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15625348151, + 42.9553633761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42b2eb2d52f6ce828d435518e60849180d7c5c86", + "fields": { + "code_commune_insee": "09128", + "nom_de_la_commune": "GAJAN", + "code_postal": "09190", + "coordonnees_gps": [ + 43.0372259317, + 1.13491653966 + ], + "libelle_d_acheminement": "GAJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13491653966, + 43.0372259317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95729f81dc0236fab4cb68a99c4261e91e506a7d", + "fields": { + "code_commune_insee": "09130", + "nom_de_la_commune": "GANAC", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9307441238, + 1.55979316845 + ], + "libelle_d_acheminement": "GANAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55979316845, + 42.9307441238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dda226d6461019eb0bf261b4acf61e833e8c01e", + "fields": { + "code_commune_insee": "09139", + "nom_de_la_commune": "L HOSPITALET PRES L ANDORRE", + "code_postal": "09390", + "coordonnees_gps": [ + 42.595464483, + 1.7777228207 + ], + "libelle_d_acheminement": "L HOSPITALET PRES L ANDORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7777228207, + 42.595464483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aa41bcccb5e1b1def80c811b2f7adf8ffbae9cf", + "fields": { + "code_commune_insee": "09142", + "nom_de_la_commune": "ILHAT", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9512575133, + 1.7851302515 + ], + "libelle_d_acheminement": "ILHAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7851302515, + 42.9512575133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34e1106f031d2c85f49daf289a76de4868183c70", + "fields": { + "code_commune_insee": "09151", + "nom_de_la_commune": "LANOUX", + "code_postal": "09130", + "coordonnees_gps": [ + 43.1200797845, + 1.42372651979 + ], + "libelle_d_acheminement": "LANOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42372651979, + 43.1200797845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b5e8135773b9fc65b864bf44ee97b1e54d3d9b3", + "fields": { + "code_commune_insee": "09154", + "nom_de_la_commune": "LARBONT", + "code_postal": "09240", + "coordonnees_gps": [ + 42.9931704458, + 1.40017931392 + ], + "libelle_d_acheminement": "LARBONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40017931392, + 42.9931704458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81029c619ab0731f81c9a9e567dcb0d31d321a70", + "fields": { + "code_commune_insee": "09159", + "nom_de_la_commune": "LASSUR", + "code_postal": "09310", + "coordonnees_gps": [ + 42.7411070071, + 1.71830324497 + ], + "libelle_d_acheminement": "LASSUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71830324497, + 42.7411070071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e856603838261466180248f5b2a4ec4715e9900b", + "fields": { + "code_commune_insee": "09161", + "nom_de_la_commune": "LERAN", + "code_postal": "09600", + "coordonnees_gps": [ + 42.9847156991, + 1.91842200411 + ], + "libelle_d_acheminement": "LERAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91842200411, + 42.9847156991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "708d673766d6b87bdc6c80efbc2c63ddd0d15103", + "fields": { + "code_commune_insee": "09163", + "nom_de_la_commune": "LESCOUSSE", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1491432364, + 1.51328236533 + ], + "libelle_d_acheminement": "LESCOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51328236533, + 43.1491432364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4af2b2f77bc1f216b77f3826d9d5d34677431a36", + "fields": { + "code_commune_insee": "09164", + "nom_de_la_commune": "LESCURE", + "code_postal": "09420", + "coordonnees_gps": [ + 43.0086403307, + 1.24160413045 + ], + "libelle_d_acheminement": "LESCURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24160413045, + 43.0086403307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "749ed12fc91f545c840c4cab4c7d3f09339ab368", + "fields": { + "code_commune_insee": "09171", + "nom_de_la_commune": "LORDAT", + "code_postal": "09250", + "coordonnees_gps": [ + 42.7985041105, + 1.78455165815 + ], + "libelle_d_acheminement": "LORDAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78455165815, + 42.7985041105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45bb7f431054d21a7af420e13d3810a252b88233", + "fields": { + "code_commune_insee": "09183", + "nom_de_la_commune": "MAUVEZIN DE PRAT", + "code_postal": "09160", + "coordonnees_gps": [ + 43.0324532484, + 0.992112596886 + ], + "libelle_d_acheminement": "MAUVEZIN DE PRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.992112596886, + 43.0324532484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e26174476ab8b7372cf6496dd5faad6fea482487", + "fields": { + "code_commune_insee": "09193", + "nom_de_la_commune": "MIJANES", + "code_postal": "09460", + "coordonnees_gps": [ + 42.7102290438, + 2.01220690511 + ], + "libelle_d_acheminement": "MIJANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01220690511, + 42.7102290438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "983d967e9023c26790e1cc9496e6ddeed78a24e5", + "fields": { + "code_commune_insee": "09209", + "nom_de_la_commune": "MONTJOIE EN COUSERANS", + "code_postal": "09200", + "coordonnees_gps": [ + 43.0152342505, + 1.17565361444 + ], + "libelle_d_acheminement": "MONTJOIE EN COUSERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17565361444, + 43.0152342505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca7d9fbf2ba54be978e228d8d4f6d193f6c2ec30", + "fields": { + "ligne_5": "AUDINAC LES BAINS", + "code_commune_insee": "09209", + "libelle_d_acheminement": "MONTJOIE EN COUSERANS", + "code_postal": "09200", + "nom_de_la_commune": "MONTJOIE EN COUSERANS", + "coordonnees_gps": [ + 43.0152342505, + 1.17565361444 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17565361444, + 43.0152342505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30aa16679d955144172b434f59d9329702344b96", + "fields": { + "code_commune_insee": "09212", + "nom_de_la_commune": "MONTSERON", + "code_postal": "09240", + "coordonnees_gps": [ + 43.0208884939, + 1.31655733885 + ], + "libelle_d_acheminement": "MONTSERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31655733885, + 43.0208884939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f4185ce976ce47809841a4b82dcccfc173a9ef1", + "fields": { + "code_commune_insee": "09217", + "nom_de_la_commune": "NIAUX", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8161799796, + 1.59941091068 + ], + "libelle_d_acheminement": "NIAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59941091068, + 42.8161799796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecf8bd53e9cbb48ee865e467c1881dc40f347e5c", + "fields": { + "code_commune_insee": "09224", + "nom_de_la_commune": "PAILHES", + "code_postal": "09130", + "coordonnees_gps": [ + 43.1002752651, + 1.44680858932 + ], + "libelle_d_acheminement": "PAILHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44680858932, + 43.1002752651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95ace4190fa72d2abb88f93746c6b137dc80b6b1", + "fields": { + "code_commune_insee": "09232", + "nom_de_la_commune": "PRADES", + "code_postal": "09110", + "coordonnees_gps": [ + 42.7908714582, + 1.86049568072 + ], + "libelle_d_acheminement": "PRADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86049568072, + 42.7908714582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08719259b795dd4716be236d9ff9c34d309cff45", + "fields": { + "code_commune_insee": "09244", + "nom_de_la_commune": "RIEUCROS", + "code_postal": "09500", + "coordonnees_gps": [ + 43.0760375517, + 1.76327077527 + ], + "libelle_d_acheminement": "RIEUCROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76327077527, + 43.0760375517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04c28caa4a0ab51059e7db61f276ea5506a8511b", + "fields": { + "code_commune_insee": "09245", + "nom_de_la_commune": "RIEUX DE PELLEPORT", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0579984327, + 1.59934492972 + ], + "libelle_d_acheminement": "RIEUX DE PELLEPORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59934492972, + 43.0579984327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3138945c7ffb6defbaf9be08e561184ac0a6fc53", + "fields": { + "code_commune_insee": "09246", + "nom_de_la_commune": "RIMONT", + "code_postal": "09420", + "coordonnees_gps": [ + 42.9878381325, + 1.28379661881 + ], + "libelle_d_acheminement": "RIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28379661881, + 42.9878381325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "540dd22366ae7063e6b14f10a92ab68afbe7194f", + "fields": { + "code_commune_insee": "09262", + "nom_de_la_commune": "ST JEAN D AIGUES VIVES", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9189081448, + 1.87680686803 + ], + "libelle_d_acheminement": "ST JEAN D AIGUES VIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87680686803, + 42.9189081448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0df7f00f0467c9bed0e2f47f848085757d9ef1ad", + "fields": { + "code_commune_insee": "09263", + "nom_de_la_commune": "ST JEAN DU CASTILLONNAIS", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9521955213, + 0.928566795359 + ], + "libelle_d_acheminement": "ST JEAN DU CASTILLONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.928566795359, + 42.9521955213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5b5f6ff770fda0a33c79c0ead356dc95a9568bc", + "fields": { + "ligne_5": "VILLENEUVE DU BOSC", + "code_commune_insee": "09264", + "libelle_d_acheminement": "ST JEAN DE VERGES", + "code_postal": "09000", + "nom_de_la_commune": "ST JEAN DE VERGES", + "coordonnees_gps": [ + 43.0129896461, + 1.63277165832 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63277165832, + 43.0129896461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "652e967aba3f222917d837f6caaba97c602d215b", + "fields": { + "code_commune_insee": "09266", + "nom_de_la_commune": "ST JULIEN DE GRAS CAPOU", + "code_postal": "09500", + "coordonnees_gps": [ + 43.0367157947, + 1.85651898742 + ], + "libelle_d_acheminement": "ST JULIEN DE GRAS CAPOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85651898742, + 43.0367157947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86ebecb56095e125711076bfaa1e9db165a63c1d", + "fields": { + "code_commune_insee": "09270", + "nom_de_la_commune": "ST MARTIN D OYDES", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1661314489, + 1.48369592125 + ], + "libelle_d_acheminement": "ST MARTIN D OYDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48369592125, + 43.1661314489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88e625bdd4248b8e1fd4dbc466693ab73037ce03", + "fields": { + "code_commune_insee": "09271", + "nom_de_la_commune": "ST MICHEL", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1325345547, + 1.50200100913 + ], + "libelle_d_acheminement": "ST MICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50200100913, + 43.1325345547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5499b6512a49a80c14a033d2a8c404a0a10b77e9", + "fields": { + "code_commune_insee": "09272", + "nom_de_la_commune": "ST PAUL DE JARRAT", + "code_postal": "09000", + "coordonnees_gps": [ + 42.8959154584, + 1.67206872652 + ], + "libelle_d_acheminement": "ST PAUL DE JARRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67206872652, + 42.8959154584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51828629cf5bb5f07c0da3f482970ec9465a96e3", + "fields": { + "code_commune_insee": "09273", + "nom_de_la_commune": "ST PIERRE DE RIVIERE", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9664677033, + 1.55739954781 + ], + "libelle_d_acheminement": "ST PIERRE DE RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55739954781, + 42.9664677033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dacc4f7e756a9fcf3d3f451bce87bb93af33ab7", + "fields": { + "code_commune_insee": "09292", + "nom_de_la_commune": "SENTENAC DE SEROU", + "code_postal": "09240", + "coordonnees_gps": [ + 42.9454493638, + 1.3950868349 + ], + "libelle_d_acheminement": "SENTENAC DE SEROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3950868349, + 42.9454493638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "186ba3809451706a10d77e8c9e61edba58964e73", + "fields": { + "code_commune_insee": "09297", + "nom_de_la_commune": "SOR", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9194982505, + 1.01182252209 + ], + "libelle_d_acheminement": "SOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01182252209, + 42.9194982505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd49fe8fc3a30f58b642adf4bb1de5bad8d99258", + "fields": { + "code_commune_insee": "09299", + "nom_de_la_commune": "SOUEIX ROGALLE", + "code_postal": "09140", + "coordonnees_gps": [ + 42.8967635679, + 1.19463483145 + ], + "libelle_d_acheminement": "SOUEIX ROGALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19463483145, + 42.8967635679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0ab244e024929a270a8d5ae9f01be3e205e4634", + "fields": { + "ligne_5": "ROGALLE", + "code_commune_insee": "09299", + "libelle_d_acheminement": "SOUEIX ROGALLE", + "code_postal": "09140", + "nom_de_la_commune": "SOUEIX ROGALLE", + "coordonnees_gps": [ + 42.8967635679, + 1.19463483145 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19463483145, + 42.8967635679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a27447ea65d350ebc44f0d8b18a2f42256b51889", + "fields": { + "code_commune_insee": "09303", + "nom_de_la_commune": "SURBA", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8596289181, + 1.5816290081 + ], + "libelle_d_acheminement": "SURBA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5816290081, + 42.8596289181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "346fce8b12fd01db88a0e69082e82628264977d0", + "fields": { + "code_commune_insee": "09310", + "nom_de_la_commune": "THOUARS SUR ARIZE", + "code_postal": "09350", + "coordonnees_gps": [ + 43.1819071244, + 1.23707299493 + ], + "libelle_d_acheminement": "THOUARS SUR ARIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23707299493, + 43.1819071244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6120befb67a22f68ece52ad0fbb23acb531b6ea", + "fields": { + "code_commune_insee": "09312", + "nom_de_la_commune": "LA TOUR DU CRIEU", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1046663015, + 1.6669791178 + ], + "libelle_d_acheminement": "LA TOUR DU CRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6669791178, + 43.1046663015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a3ed190e0d94eb42dbf8ae53ee035e5654d12c4", + "fields": { + "code_commune_insee": "09320", + "nom_de_la_commune": "URS", + "code_postal": "09310", + "coordonnees_gps": [ + 42.778113198, + 1.73489746587 + ], + "libelle_d_acheminement": "URS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73489746587, + 42.778113198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e27732bd1f9e0f1cf7a9407d9a4125643272b657", + "fields": { + "code_commune_insee": "09325", + "nom_de_la_commune": "VAYCHIS", + "code_postal": "09110", + "coordonnees_gps": [ + 42.7440162413, + 1.82180762746 + ], + "libelle_d_acheminement": "VAYCHIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82180762746, + 42.7440162413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fa19b418588af40fea20bdd6e2881d01ded2c70", + "fields": { + "code_commune_insee": "09329", + "nom_de_la_commune": "VERNAJOUL", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9930828905, + 1.59212252039 + ], + "libelle_d_acheminement": "VERNAJOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59212252039, + 42.9930828905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e3b25508c160635ba7100ba5eb356938fd7d3f5", + "fields": { + "ligne_5": "SUC ET SENTENAC", + "code_commune_insee": "09334", + "libelle_d_acheminement": "VAL DE SOS", + "code_postal": "09220", + "nom_de_la_commune": "VAL DE SOS", + "coordonnees_gps": [ + 42.7733893717, + 1.51114862986 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51114862986, + 42.7733893717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdd660a20aa0852851b867b34b64116a20cbc953", + "fields": { + "code_commune_insee": "09339", + "nom_de_la_commune": "VILLENEUVE DU PAREAGE", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1586748014, + 1.64287363091 + ], + "libelle_d_acheminement": "VILLENEUVE DU PAREAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64287363091, + 43.1586748014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00362c7384553ed9522899b1d1243d75bec80ece", + "fields": { + "code_commune_insee": "09340", + "nom_de_la_commune": "VIRA", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0488081188, + 1.75644029197 + ], + "libelle_d_acheminement": "VIRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75644029197, + 43.0488081188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c0411893bb0b5118a8575fa6425d1e3523269a9", + "fields": { + "code_commune_insee": "09341", + "nom_de_la_commune": "VIVIES", + "code_postal": "09500", + "coordonnees_gps": [ + 43.0609822099, + 1.77874541747 + ], + "libelle_d_acheminement": "VIVIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77874541747, + 43.0609822099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15b83fc84a10e2df4f199390a0bd3087a5155e25", + "fields": { + "code_commune_insee": "10006", + "nom_de_la_commune": "ARCIS SUR AUBE", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5278271069, + 4.14197110248 + ], + "libelle_d_acheminement": "ARCIS SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14197110248, + 48.5278271069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4f7da0cc2f2e1edb8b01cb8cc87387c56786393", + "fields": { + "code_commune_insee": "10007", + "nom_de_la_commune": "ARCONVILLE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.156151635, + 4.72890746398 + ], + "libelle_d_acheminement": "ARCONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72890746398, + 48.156151635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b5d79fa2c149834ed760fd69d61f50c44b9bd73", + "fields": { + "code_commune_insee": "10012", + "nom_de_la_commune": "ARSONVAL", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2796312677, + 4.65067065173 + ], + "libelle_d_acheminement": "ARSONVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65067065173, + 48.2796312677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ad6f703d860c908b4496894422fc2af90e86eda", + "fields": { + "code_commune_insee": "10017", + "nom_de_la_commune": "AULNAY", + "code_postal": "10240", + "coordonnees_gps": [ + 48.4783453651, + 4.41533916578 + ], + "libelle_d_acheminement": "AULNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41533916578, + 48.4783453651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9efcd32c705a01f8d66d15ea3b2df78a43581a2c", + "fields": { + "ligne_5": "MONTANGON", + "code_commune_insee": "10019", + "libelle_d_acheminement": "VAL D AUZON", + "code_postal": "10220", + "nom_de_la_commune": "VAL D AUZON", + "coordonnees_gps": [ + 48.4004769736, + 4.35930739825 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35930739825, + 48.4004769736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68b0bb50bb9aba693c528372b9024b668a5b27d0", + "fields": { + "code_commune_insee": "10023", + "nom_de_la_commune": "AVON LA PEZE", + "code_postal": "10290", + "coordonnees_gps": [ + 48.3874423014, + 3.65147515296 + ], + "libelle_d_acheminement": "AVON LA PEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65147515296, + 48.3874423014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e7706ca080dc0ad8ed7a809e41e86393c875c90", + "fields": { + "code_commune_insee": "10027", + "nom_de_la_commune": "BALIGNICOURT", + "code_postal": "10330", + "coordonnees_gps": [ + 48.5295826019, + 4.45448981807 + ], + "libelle_d_acheminement": "BALIGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45448981807, + 48.5295826019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41d8c8f294cb84f2e161af4ed3d9dc32efa484d7", + "fields": { + "code_commune_insee": "10028", + "nom_de_la_commune": "BALNOT LA GRANGE", + "code_postal": "10210", + "coordonnees_gps": [ + 47.9884933352, + 4.19819242962 + ], + "libelle_d_acheminement": "BALNOT LA GRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19819242962, + 47.9884933352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30cbada57cc161cb99124494c6c09820740c3dda", + "fields": { + "code_commune_insee": "10044", + "nom_de_la_commune": "BETIGNICOURT", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4499267207, + 4.45503670756 + ], + "libelle_d_acheminement": "BETIGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45503670756, + 48.4499267207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eb2e337eda720c168e3c9cbad95b9ae28ff79fe", + "fields": { + "code_commune_insee": "10053", + "nom_de_la_commune": "BOURANTON", + "code_postal": "10270", + "coordonnees_gps": [ + 48.3149302747, + 4.1804938417 + ], + "libelle_d_acheminement": "BOURANTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1804938417, + 48.3149302747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbb26dbdc6df3aad69ebc821662cc7bd2e51a600", + "fields": { + "code_commune_insee": "10055", + "nom_de_la_commune": "BOURGUIGNONS", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1412628808, + 4.3624282849 + ], + "libelle_d_acheminement": "BOURGUIGNONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3624282849, + 48.1412628808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45b3b323becc795428105f056db949583e45343d", + "fields": { + "code_commune_insee": "10057", + "nom_de_la_commune": "BOUY SUR ORVIN", + "code_postal": "10400", + "coordonnees_gps": [ + 48.4230447097, + 3.49742400527 + ], + "libelle_d_acheminement": "BOUY SUR ORVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49742400527, + 48.4230447097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76aa6d37ab610996db3cd318542bedfc0b07e14a", + "fields": { + "code_commune_insee": "10060", + "nom_de_la_commune": "BREVIANDES", + "code_postal": "10450", + "coordonnees_gps": [ + 48.2562259501, + 4.10756293028 + ], + "libelle_d_acheminement": "BREVIANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10756293028, + 48.2562259501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "313d2ebd7929e092d5a9e47bdcf432169d8e4943", + "fields": { + "code_commune_insee": "10064", + "nom_de_la_commune": "BRIENNE LE CHATEAU", + "code_postal": "10500", + "coordonnees_gps": [ + 48.3974195288, + 4.53928532253 + ], + "libelle_d_acheminement": "BRIENNE LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53928532253, + 48.3974195288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a3e35ded48908e9c0fd5140408411c88758b8f4", + "fields": { + "code_commune_insee": "10067", + "nom_de_la_commune": "BUCHERES", + "code_postal": "10800", + "coordonnees_gps": [ + 48.2364830009, + 4.11414103262 + ], + "libelle_d_acheminement": "BUCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11414103262, + 48.2364830009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1585ebf03dc75252d261c8bcba1a25c464a5f3c", + "fields": { + "code_commune_insee": "10070", + "nom_de_la_commune": "CELLES SUR OURCE", + "code_postal": "10110", + "coordonnees_gps": [ + 48.0738193958, + 4.42247353986 + ], + "libelle_d_acheminement": "CELLES SUR OURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42247353986, + 48.0738193958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2d64493766445e4311a1d6f56551750a42822e5", + "fields": { + "code_commune_insee": "10071", + "nom_de_la_commune": "CHACENAY", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1073040053, + 4.53224056056 + ], + "libelle_d_acheminement": "CHACENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53224056056, + 48.1073040053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd019bdd69e205d8e6b9d8cc9afa7e1f4478a608", + "fields": { + "code_commune_insee": "10075", + "nom_de_la_commune": "CHAMPFLEURY", + "code_postal": "10700", + "coordonnees_gps": [ + 48.6142848196, + 4.0310704592 + ], + "libelle_d_acheminement": "CHAMPFLEURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0310704592, + 48.6142848196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c620c5c2b977861ada630b54210fcd519428aa1", + "fields": { + "code_commune_insee": "10083", + "nom_de_la_commune": "CHAPPES", + "code_postal": "10260", + "coordonnees_gps": [ + 48.1659482698, + 4.25688351486 + ], + "libelle_d_acheminement": "CHAPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25688351486, + 48.1659482698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9456e343d9e589773269e0356b9220783fe651c", + "fields": { + "code_commune_insee": "10090", + "nom_de_la_commune": "CHAUCHIGNY", + "code_postal": "10170", + "coordonnees_gps": [ + 48.4261431924, + 3.98046866414 + ], + "libelle_d_acheminement": "CHAUCHIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98046866414, + 48.4261431924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db4b66a29fcffabdbbda64e58678f9e917f73808", + "fields": { + "code_commune_insee": "10099", + "nom_de_la_commune": "CHESSY LES PRES", + "code_postal": "10130", + "coordonnees_gps": [ + 48.0137819738, + 3.93361482434 + ], + "libelle_d_acheminement": "CHESSY LES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93361482434, + 48.0137819738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1a69d3cf4a7493848a40b2be1ab8fb710f7b2de", + "fields": { + "code_commune_insee": "10101", + "nom_de_la_commune": "COCLOIS", + "code_postal": "10240", + "coordonnees_gps": [ + 48.4708420035, + 4.33090572683 + ], + "libelle_d_acheminement": "COCLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33090572683, + 48.4708420035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41182ee61326486de348995fb2b83ae6c4f512a6", + "fields": { + "code_commune_insee": "10103", + "nom_de_la_commune": "COLOMBE LE SEC", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2556375156, + 4.80343883572 + ], + "libelle_d_acheminement": "COLOMBE LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80343883572, + 48.2556375156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9bcb8e73bda3dd4c0c662029363afeca1118273", + "fields": { + "code_commune_insee": "10105", + "nom_de_la_commune": "COURCELLES SUR VOIRE", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4822201574, + 4.52921510366 + ], + "libelle_d_acheminement": "COURCELLES SUR VOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52921510366, + 48.4822201574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f09413f535e2ef1d98fbe1519953ac447fe5855", + "fields": { + "code_commune_insee": "10110", + "nom_de_la_commune": "COURTERANGES", + "code_postal": "10270", + "coordonnees_gps": [ + 48.2683513867, + 4.22551791779 + ], + "libelle_d_acheminement": "COURTERANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22551791779, + 48.2683513867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfcc3b442ecd38fdec5284268deefeb1d0e043d5", + "fields": { + "code_commune_insee": "10111", + "nom_de_la_commune": "COURTERON", + "code_postal": "10250", + "coordonnees_gps": [ + 48.0158955868, + 4.46256663692 + ], + "libelle_d_acheminement": "COURTERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46256663692, + 48.0158955868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f589192761a7c877d48302f292ce161f532e59f8", + "fields": { + "code_commune_insee": "10120", + "nom_de_la_commune": "CUSSANGY", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0230498915, + 4.09099167975 + ], + "libelle_d_acheminement": "CUSSANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09099167975, + 48.0230498915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "effc19bc0b80271158ae825f12b13860149c66f1", + "fields": { + "code_commune_insee": "10121", + "nom_de_la_commune": "DAMPIERRE", + "code_postal": "10240", + "coordonnees_gps": [ + 48.5651902607, + 4.36459312482 + ], + "libelle_d_acheminement": "DAMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36459312482, + 48.5651902607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9301430d3cb467002d29c8ff62954744a1e5a90b", + "fields": { + "code_commune_insee": "10122", + "nom_de_la_commune": "DAVREY", + "code_postal": "10130", + "coordonnees_gps": [ + 48.0459988862, + 3.96029506309 + ], + "libelle_d_acheminement": "DAVREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96029506309, + 48.0459988862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61b8f5c6c17e16253e15445519a1e0e5d435e168", + "fields": { + "code_commune_insee": "10125", + "nom_de_la_commune": "DIERREY ST PIERRE", + "code_postal": "10190", + "coordonnees_gps": [ + 48.3325291626, + 3.83136359134 + ], + "libelle_d_acheminement": "DIERREY ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83136359134, + 48.3325291626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d301335333d69eea786b678f882fb5bdbee77876", + "fields": { + "code_commune_insee": "10128", + "nom_de_la_commune": "DONNEMENT", + "code_postal": "10330", + "coordonnees_gps": [ + 48.519771783, + 4.42815499728 + ], + "libelle_d_acheminement": "DONNEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42815499728, + 48.519771783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9264804c0aa51447de73590d6d5da056896438c", + "fields": { + "code_commune_insee": "10148", + "nom_de_la_commune": "FERREUX QUINCEY", + "code_postal": "10400", + "coordonnees_gps": [ + 48.4624429856, + 3.60107070347 + ], + "libelle_d_acheminement": "FERREUX QUINCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60107070347, + 48.4624429856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db2b7920b93fbb5d9f263dc030f85ed6f54f444f", + "fields": { + "code_commune_insee": "10160", + "nom_de_la_commune": "FRAVAUX", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2361442581, + 4.64187603164 + ], + "libelle_d_acheminement": "FRAVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64187603164, + 48.2361442581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cb026988b59c2743fa99ca0f3681b797e25cc60", + "fields": { + "code_commune_insee": "10162", + "nom_de_la_commune": "FRESNOY LE CHATEAU", + "code_postal": "10270", + "coordonnees_gps": [ + 48.2201181209, + 4.23354437753 + ], + "libelle_d_acheminement": "FRESNOY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23354437753, + 48.2201181209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdd5f996d439a643fcbc3d24fb2e7b31e7fac6d1", + "fields": { + "code_commune_insee": "10163", + "nom_de_la_commune": "FULIGNY", + "code_postal": "10200", + "coordonnees_gps": [ + 48.3403541519, + 4.69850669182 + ], + "libelle_d_acheminement": "FULIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69850669182, + 48.3403541519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7884dba7e342fe072af31613121e30be18b45807", + "fields": { + "code_commune_insee": "10169", + "nom_de_la_commune": "GUMERY", + "code_postal": "10400", + "coordonnees_gps": [ + 48.4396051909, + 3.42197876151 + ], + "libelle_d_acheminement": "GUMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42197876151, + 48.4396051909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfde20aef96cb505fc025651e926155687001606", + "fields": { + "code_commune_insee": "10178", + "nom_de_la_commune": "JESSAINS", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2848174581, + 4.56960734893 + ], + "libelle_d_acheminement": "JESSAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56960734893, + 48.2848174581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93c7966f60e770914c3c8ed50be04628a3b5c45e", + "fields": { + "code_commune_insee": "10181", + "nom_de_la_commune": "JULLY SUR SARCE", + "code_postal": "10260", + "coordonnees_gps": [ + 48.1093784032, + 4.27896296747 + ], + "libelle_d_acheminement": "JULLY SUR SARCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27896296747, + 48.1093784032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93b8ed0f048181a58ab19ae5a626b290bc43471c", + "fields": { + "code_commune_insee": "10184", + "nom_de_la_commune": "JUZANVIGNY", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4164316249, + 4.60987981766 + ], + "libelle_d_acheminement": "JUZANVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60987981766, + 48.4164316249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e972e96223404a8829efb1d5b23ddcc5f75143f8", + "fields": { + "code_commune_insee": "10199", + "nom_de_la_commune": "LOCHES SUR OURCE", + "code_postal": "10110", + "coordonnees_gps": [ + 48.0701287498, + 4.50451246943 + ], + "libelle_d_acheminement": "LOCHES SUR OURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50451246943, + 48.0701287498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4c976de1962f4f10087344427f5058ebc0b770d", + "fields": { + "code_commune_insee": "10204", + "nom_de_la_commune": "LONGEVILLE SUR MOGNE", + "code_postal": "10320", + "coordonnees_gps": [ + 48.1468654256, + 4.06439073239 + ], + "libelle_d_acheminement": "LONGEVILLE SUR MOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06439073239, + 48.1468654256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0203b614c6834092924d6a467b7c8c959a5a70d", + "fields": { + "code_commune_insee": "10206", + "nom_de_la_commune": "LONGSOLS", + "code_postal": "10240", + "coordonnees_gps": [ + 48.4258761682, + 4.28517563382 + ], + "libelle_d_acheminement": "LONGSOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28517563382, + 48.4258761682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb72a4258553b04717df4fe96eb6d4c6832c7b51", + "fields": { + "code_commune_insee": "10209", + "nom_de_la_commune": "LUSIGNY SUR BARSE", + "code_postal": "10270", + "coordonnees_gps": [ + 48.2629805812, + 4.27634825277 + ], + "libelle_d_acheminement": "LUSIGNY SUR BARSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27634825277, + 48.2629805812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e3a23c71dd42663d1f888729d3a7402cb3324b7", + "fields": { + "code_commune_insee": "10210", + "nom_de_la_commune": "LUYERES", + "code_postal": "10150", + "coordonnees_gps": [ + 48.3801080696, + 4.19418132479 + ], + "libelle_d_acheminement": "LUYERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19418132479, + 48.3801080696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b6c60dde3735cc273cf5fa992de763efc799b17", + "fields": { + "code_commune_insee": "10211", + "nom_de_la_commune": "MACEY", + "code_postal": "10300", + "coordonnees_gps": [ + 48.3057699165, + 3.91365964088 + ], + "libelle_d_acheminement": "MACEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91365964088, + 48.3057699165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5950dc4c85ff6dcfc2433dd4c69b6fdb7b16dbcc", + "fields": { + "code_commune_insee": "10235", + "nom_de_la_commune": "MESNIL LA COMTESSE", + "code_postal": "10700", + "coordonnees_gps": [ + 48.4981106187, + 4.19774579416 + ], + "libelle_d_acheminement": "MESNIL LA COMTESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19774579416, + 48.4981106187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c81f8463c208bc77b782a179f26b94e5bc3b397d", + "fields": { + "code_commune_insee": "10236", + "nom_de_la_commune": "MESNIL LETTRE", + "code_postal": "10240", + "coordonnees_gps": [ + 48.4610108497, + 4.25893438516 + ], + "libelle_d_acheminement": "MESNIL LETTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25893438516, + 48.4610108497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "531bdba0f6fbcc6fb38d088596ae483ff44739c7", + "fields": { + "code_commune_insee": "10240", + "nom_de_la_commune": "MESSON", + "code_postal": "10190", + "coordonnees_gps": [ + 48.2636235898, + 3.91533250888 + ], + "libelle_d_acheminement": "MESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91533250888, + 48.2636235898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20cb40dabeca76e7791233064743af6bfc918d97", + "fields": { + "code_commune_insee": "10246", + "nom_de_la_commune": "MONTCEAUX LES VAUDES", + "code_postal": "10260", + "coordonnees_gps": [ + 48.148825142, + 4.1578812358 + ], + "libelle_d_acheminement": "MONTCEAUX LES VAUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1578812358, + 48.148825142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fe836ac30428c719a8781748f5ac2ed586fa0e9", + "fields": { + "code_commune_insee": "10249", + "nom_de_la_commune": "MONTIERAMEY", + "code_postal": "10270", + "coordonnees_gps": [ + 48.2350578158, + 4.31390448767 + ], + "libelle_d_acheminement": "MONTIERAMEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31390448767, + 48.2350578158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2463922a965856727e2ec90816c0c54b9796882", + "fields": { + "code_commune_insee": "10251", + "nom_de_la_commune": "MONTIGNY LES MONTS", + "code_postal": "10130", + "coordonnees_gps": [ + 48.0917650744, + 3.9649860818 + ], + "libelle_d_acheminement": "MONTIGNY LES MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9649860818, + 48.0917650744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "312472c33dcd606c5b26987f3f098adbf31eae93", + "fields": { + "code_commune_insee": "10257", + "nom_de_la_commune": "MOREMBERT", + "code_postal": "10240", + "coordonnees_gps": [ + 48.5033982569, + 4.33076650572 + ], + "libelle_d_acheminement": "MOREMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33076650572, + 48.5033982569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7827b86cd4140733a58edc9752814b7efadf436b", + "fields": { + "code_commune_insee": "10259", + "nom_de_la_commune": "LA MOTTE TILLY", + "code_postal": "10400", + "coordonnees_gps": [ + 48.4758552545, + 3.44037577469 + ], + "libelle_d_acheminement": "LA MOTTE TILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44037577469, + 48.4758552545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc5991e140f0339dc3eba36dd2414df6a816c3b0", + "fields": { + "code_commune_insee": "10266", + "nom_de_la_commune": "NOGENT EN OTHE", + "code_postal": "10160", + "coordonnees_gps": [ + 48.1307541602, + 3.79686914903 + ], + "libelle_d_acheminement": "NOGENT EN OTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79686914903, + 48.1307541602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c56978be8b1c38bc0d908ccd4fbaa4ea04d15603", + "fields": { + "code_commune_insee": "10267", + "nom_de_la_commune": "NOGENT SUR AUBE", + "code_postal": "10240", + "coordonnees_gps": [ + 48.4846626534, + 4.29910667758 + ], + "libelle_d_acheminement": "NOGENT SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29910667758, + 48.4846626534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b382b9726464c4d3caebbec697acb5c0297b8610", + "fields": { + "code_commune_insee": "10272", + "nom_de_la_commune": "ORMES", + "code_postal": "10700", + "coordonnees_gps": [ + 48.555534468, + 4.1130717526 + ], + "libelle_d_acheminement": "ORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1130717526, + 48.555534468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9b2f591d5b04fcf29f6061df3698ad8cb2c3af5", + "fields": { + "code_commune_insee": "10293", + "nom_de_la_commune": "POIVRES", + "code_postal": "10700", + "coordonnees_gps": [ + 48.6829849086, + 4.27703317765 + ], + "libelle_d_acheminement": "POIVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27703317765, + 48.6829849086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "054dfa235759d6bec2cc1e31382e9af0a2c56801", + "fields": { + "code_commune_insee": "10294", + "nom_de_la_commune": "POLIGNY", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1751501958, + 4.34626027201 + ], + "libelle_d_acheminement": "POLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34626027201, + 48.1751501958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4a6800c31f6f34fe1329e663a6dc9910a12423a", + "fields": { + "code_commune_insee": "10301", + "nom_de_la_commune": "POUY SUR VANNES", + "code_postal": "10290", + "coordonnees_gps": [ + 48.2978458721, + 3.59984902807 + ], + "libelle_d_acheminement": "POUY SUR VANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59984902807, + 48.2978458721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fde0038a3aa9ecf4772aecbd1ea0669e6cca9da3", + "fields": { + "code_commune_insee": "10308", + "nom_de_la_commune": "PRUNAY BELLEVILLE", + "code_postal": "10350", + "coordonnees_gps": [ + 48.3664762511, + 3.7828232388 + ], + "libelle_d_acheminement": "PRUNAY BELLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7828232388, + 48.3664762511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21c5d033949640c48eb8c8d4f368d9daea0fb258", + "fields": { + "code_commune_insee": "10312", + "nom_de_la_commune": "RACINES", + "code_postal": "10130", + "coordonnees_gps": [ + 48.0483905715, + 3.84645827817 + ], + "libelle_d_acheminement": "RACINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84645827817, + 48.0483905715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1865f4306f147a69e3e4a597a247ca09dc211726", + "fields": { + "ligne_5": "VIELAINES", + "code_commune_insee": "10325", + "libelle_d_acheminement": "ROSIERES PRES TROYES", + "code_postal": "10430", + "nom_de_la_commune": "ROSIERES PRES TROYES", + "coordonnees_gps": [ + 48.2626897407, + 4.06345677209 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06345677209, + 48.2626897407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f459042f139187e365d6d462a6486c2930530b2", + "fields": { + "code_commune_insee": "10327", + "nom_de_la_commune": "LA ROTHIERE", + "code_postal": "10500", + "coordonnees_gps": [ + 48.3381400722, + 4.58555287029 + ], + "libelle_d_acheminement": "LA ROTHIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58555287029, + 48.3381400722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b13f1d6d64cdffafc480b27de123df19072a0e6d", + "fields": { + "code_commune_insee": "10328", + "nom_de_la_commune": "ROUILLY SACEY", + "code_postal": "10220", + "coordonnees_gps": [ + 48.3472856402, + 4.27393742571 + ], + "libelle_d_acheminement": "ROUILLY SACEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27393742571, + 48.3472856402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "088250247297ae84abd1079bb692d2d87086f0d5", + "fields": { + "code_commune_insee": "10330", + "nom_de_la_commune": "ROUVRES LES VIGNES", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2383642107, + 4.82708902094 + ], + "libelle_d_acheminement": "ROUVRES LES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82708902094, + 48.2383642107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cb7f89bda6f3b16f4e319f59375d9ecd4340a08", + "fields": { + "code_commune_insee": "10340", + "nom_de_la_commune": "ST GERMAIN", + "code_postal": "10120", + "coordonnees_gps": [ + 48.2535079309, + 4.01065245328 + ], + "libelle_d_acheminement": "ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01065245328, + 48.2535079309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b71a7b6c7e17ae5f24bde3780c939a4fe8e14a3e", + "fields": { + "ligne_5": "LEPINE", + "code_commune_insee": "10340", + "libelle_d_acheminement": "ST GERMAIN", + "code_postal": "10120", + "nom_de_la_commune": "ST GERMAIN", + "coordonnees_gps": [ + 48.2535079309, + 4.01065245328 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01065245328, + 48.2535079309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5acc59bbc2e3092bcbb7bfd30cefb97e8bfca86", + "fields": { + "code_commune_insee": "10342", + "nom_de_la_commune": "ST JEAN DE BONNEVAL", + "code_postal": "10320", + "coordonnees_gps": [ + 48.1719801314, + 4.05020732222 + ], + "libelle_d_acheminement": "ST JEAN DE BONNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05020732222, + 48.1719801314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7928c91c677c38a7f4e7c5b6094b21e17bec6615", + "fields": { + "code_commune_insee": "10343", + "nom_de_la_commune": "ST JULIEN LES VILLAS", + "code_postal": "10800", + "coordonnees_gps": [ + 48.2745172927, + 4.10297688057 + ], + "libelle_d_acheminement": "ST JULIEN LES VILLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10297688057, + 48.2745172927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6ec141fae28ace967f09a1805f6b80d1ff2f58c", + "fields": { + "code_commune_insee": "10347", + "nom_de_la_commune": "ST LOUP DE BUFFIGNY", + "code_postal": "10100", + "coordonnees_gps": [ + 48.4446677907, + 3.63034199913 + ], + "libelle_d_acheminement": "ST LOUP DE BUFFIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63034199913, + 48.4446677907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8dd94c153776c7262a718812f1e698aa41e063b", + "fields": { + "code_commune_insee": "10352", + "nom_de_la_commune": "STE MAURE", + "code_postal": "10150", + "coordonnees_gps": [ + 48.3566905258, + 4.07198737935 + ], + "libelle_d_acheminement": "STE MAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07198737935, + 48.3566905258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89cb10a38defd1bd4a7e35c93bc71c4e70d68d68", + "fields": { + "ligne_5": "CULOISON", + "code_commune_insee": "10352", + "libelle_d_acheminement": "STE MAURE", + "code_postal": "10150", + "nom_de_la_commune": "STE MAURE", + "coordonnees_gps": [ + 48.3566905258, + 4.07198737935 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07198737935, + 48.3566905258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2080e01025ef20d165380ee758a38e3fcf106853", + "fields": { + "code_commune_insee": "10357", + "nom_de_la_commune": "ST PARRES AUX TERTRES", + "code_postal": "10410", + "coordonnees_gps": [ + 48.2913084954, + 4.13302448391 + ], + "libelle_d_acheminement": "ST PARRES AUX TERTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13302448391, + 48.2913084954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1f7f7186498f222e7f13369375cdcedb7b1a3ec", + "fields": { + "code_commune_insee": "10358", + "nom_de_la_commune": "ST PARRES LES VAUDES", + "code_postal": "10260", + "coordonnees_gps": [ + 48.1734919803, + 4.21620941399 + ], + "libelle_d_acheminement": "ST PARRES LES VAUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21620941399, + 48.1734919803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faaf3435b07bc1eaefd7d70bbeaed4b826193bbb", + "fields": { + "code_commune_insee": "10361", + "nom_de_la_commune": "ST REMY SOUS BARBUISE", + "code_postal": "10700", + "coordonnees_gps": [ + 48.4777025802, + 4.13036926093 + ], + "libelle_d_acheminement": "ST REMY SOUS BARBUISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13036926093, + 48.4777025802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a510b070671d16ac3af0b106301f80b15930da84", + "fields": { + "code_commune_insee": "10363", + "nom_de_la_commune": "ST THIBAULT", + "code_postal": "10800", + "coordonnees_gps": [ + 48.2010515888, + 4.14696728723 + ], + "libelle_d_acheminement": "ST THIBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14696728723, + 48.2010515888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a424f47c88e659c7b18ec2a25692ca9858fdcb95", + "fields": { + "code_commune_insee": "10371", + "nom_de_la_commune": "SOMMEVAL", + "code_postal": "10320", + "coordonnees_gps": [ + 48.159126703, + 3.95489771109 + ], + "libelle_d_acheminement": "SOMMEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95489771109, + 48.159126703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9607705fafc4e2be1aa1312925294fc48bef0a13", + "fields": { + "code_commune_insee": "10377", + "nom_de_la_commune": "THIL", + "code_postal": "10200", + "coordonnees_gps": [ + 48.3409418137, + 4.78858247296 + ], + "libelle_d_acheminement": "THIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78858247296, + 48.3409418137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6db79fb0196612f7bba29abcc3e8ba4748663d5a", + "fields": { + "code_commune_insee": "10382", + "nom_de_la_commune": "TRAINEL", + "code_postal": "10400", + "coordonnees_gps": [ + 48.4140944853, + 3.45656011239 + ], + "libelle_d_acheminement": "TRAINEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45656011239, + 48.4140944853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8268e0c8aa62662e11ac8a60e320d0b8c57a220d", + "fields": { + "code_commune_insee": "10388", + "nom_de_la_commune": "TURGY", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0300363367, + 4.05312999836 + ], + "libelle_d_acheminement": "TURGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05312999836, + 48.0300363367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5d76bba11f26fbd5f22ae86ea020200f75dd38d", + "fields": { + "code_commune_insee": "10396", + "nom_de_la_commune": "VAUCHASSIS", + "code_postal": "10190", + "coordonnees_gps": [ + 48.2092064967, + 3.92631536187 + ], + "libelle_d_acheminement": "VAUCHASSIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92631536187, + 48.2092064967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d48c30599ac98033b4775d063823f0faf1d44c5", + "fields": { + "code_commune_insee": "10402", + "nom_de_la_commune": "LA VENDUE MIGNOT", + "code_postal": "10800", + "coordonnees_gps": [ + 48.1456208933, + 4.10314764777 + ], + "libelle_d_acheminement": "LA VENDUE MIGNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10314764777, + 48.1456208933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f6d222459fe4696526d3055af9efab802368e86", + "fields": { + "code_commune_insee": "10404", + "nom_de_la_commune": "VERPILLIERES SUR OURCE", + "code_postal": "10360", + "coordonnees_gps": [ + 48.0406701366, + 4.5860718335 + ], + "libelle_d_acheminement": "VERPILLIERES SUR OURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5860718335, + 48.0406701366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "615be4ce7fb5b96be947ce76ec7d801610dfc8ee", + "fields": { + "code_commune_insee": "10409", + "nom_de_la_commune": "VILLACERF", + "code_postal": "10600", + "coordonnees_gps": [ + 48.407677761, + 4.00228117316 + ], + "libelle_d_acheminement": "VILLACERF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00228117316, + 48.407677761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00a23b17a474859991336c91d7dbc61d775e357f", + "fields": { + "code_commune_insee": "10411", + "nom_de_la_commune": "LA VILLE AUX BOIS", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4038925077, + 4.68731356148 + ], + "libelle_d_acheminement": "LA VILLE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68731356148, + 48.4038925077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e70978ab9af55d9c30989bbd2b4d5205dd9eecc", + "fields": { + "code_commune_insee": "10417", + "nom_de_la_commune": "VILLEMOIRON EN OTHE", + "code_postal": "10160", + "coordonnees_gps": [ + 48.1996782401, + 3.79189787326 + ], + "libelle_d_acheminement": "VILLEMOIRON EN OTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79189787326, + 48.1996782401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adf8476bc3e04c14a7ca1a9b31255eb1e899228d", + "fields": { + "code_commune_insee": "10418", + "nom_de_la_commune": "VILLEMORIEN", + "code_postal": "10110", + "coordonnees_gps": [ + 48.0798060719, + 4.2947230418 + ], + "libelle_d_acheminement": "VILLEMORIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2947230418, + 48.0798060719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fad955ac23124b0e744755ec7bb6b62fed73d91d", + "fields": { + "ligne_5": "DIVAL", + "code_commune_insee": "10420", + "libelle_d_acheminement": "VILLENAUXE LA GRANDE", + "code_postal": "10370", + "nom_de_la_commune": "VILLENAUXE LA GRANDE", + "coordonnees_gps": [ + 48.5945779935, + 3.5477753332 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5477753332, + 48.5945779935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a121e8f7e31deec5b16dc28d16a3b5f984537248", + "fields": { + "ligne_5": "CLAIRVAUX SUR AUBE", + "code_commune_insee": "10426", + "libelle_d_acheminement": "VILLE SOUS LA FERTE", + "code_postal": "10310", + "nom_de_la_commune": "VILLE SOUS LA FERTE", + "coordonnees_gps": [ + 48.1358669154, + 4.77205760299 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77205760299, + 48.1358669154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8c3a1a96d7fbb12310e6cbd44db7af98e60b8e7", + "fields": { + "code_commune_insee": "10427", + "nom_de_la_commune": "VILLE SUR ARCE", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1090387806, + 4.4449720869 + ], + "libelle_d_acheminement": "VILLE SUR ARCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4449720869, + 48.1090387806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "143bdd93bcd22589b66e882ffcdb72474215cbef", + "fields": { + "code_commune_insee": "10428", + "nom_de_la_commune": "VILLE SUR TERRE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.3359047589, + 4.7348362857 + ], + "libelle_d_acheminement": "VILLE SUR TERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7348362857, + 48.3359047589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2891f47274f2f3dd9dec083e71558b4cca3908d2", + "fields": { + "code_commune_insee": "10438", + "nom_de_la_commune": "VITRY LE CROISE", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1434911643, + 4.57858150099 + ], + "libelle_d_acheminement": "VITRY LE CROISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57858150099, + 48.1434911643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b50904a7b7921bd04f30d05ddc516bcded2dd4f7", + "fields": { + "code_commune_insee": "10442", + "nom_de_la_commune": "VOUE", + "code_postal": "10150", + "coordonnees_gps": [ + 48.459643518, + 4.12408661799 + ], + "libelle_d_acheminement": "VOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12408661799, + 48.459643518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "488688272a81928fe7c053b0cf5f8b2583c723af", + "fields": { + "code_commune_insee": "10443", + "nom_de_la_commune": "VOUGREY", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0875972332, + 4.23598090063 + ], + "libelle_d_acheminement": "VOUGREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23598090063, + 48.0875972332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0ef2beb5bb6ec048fd4f8be68ded375a72fff52", + "fields": { + "code_commune_insee": "11007", + "nom_de_la_commune": "ALBIERES", + "code_postal": "11330", + "coordonnees_gps": [ + 42.946718737, + 2.44639291505 + ], + "libelle_d_acheminement": "ALBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44639291505, + 42.946718737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b78b3ea974237ad7a9831e9fdf04013988f8b2b", + "fields": { + "code_commune_insee": "11010", + "nom_de_la_commune": "ANTUGNAC", + "code_postal": "11190", + "coordonnees_gps": [ + 42.9622347688, + 2.21863246536 + ], + "libelle_d_acheminement": "ANTUGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21863246536, + 42.9622347688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ef52d665f174dbd1a51081e0f84bdb18617b0c2", + "fields": { + "code_commune_insee": "11015", + "nom_de_la_commune": "ARQUES", + "code_postal": "11190", + "coordonnees_gps": [ + 42.9472177334, + 2.38719202465 + ], + "libelle_d_acheminement": "ARQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38719202465, + 42.9472177334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ce4b2bc3597e8d9fa7334ea3a40940e84ed2179", + "fields": { + "code_commune_insee": "11022", + "nom_de_la_commune": "AZILLE", + "code_postal": "11700", + "coordonnees_gps": [ + 43.2737058086, + 2.65746942689 + ], + "libelle_d_acheminement": "AZILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65746942689, + 43.2737058086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "062413e2c859eb9bcfb8ceb8289e7ec555156cf5", + "fields": { + "code_commune_insee": "11023", + "nom_de_la_commune": "BADENS", + "code_postal": "11800", + "coordonnees_gps": [ + 43.2207146123, + 2.50470148133 + ], + "libelle_d_acheminement": "BADENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50470148133, + 43.2207146123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcf8b18d165f6287e2780f75647a6265043b54b8", + "fields": { + "code_commune_insee": "11024", + "nom_de_la_commune": "BAGES", + "code_postal": "11100", + "coordonnees_gps": [ + 43.1176416685, + 2.97718129024 + ], + "libelle_d_acheminement": "BAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97718129024, + 43.1176416685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9dfb0be1beaa6df2673f78a8a83d89f3e6cdf61", + "fields": { + "code_commune_insee": "11026", + "nom_de_la_commune": "BARAIGNE", + "code_postal": "11410", + "coordonnees_gps": [ + 43.3308772937, + 1.82285483659 + ], + "libelle_d_acheminement": "BARAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82285483659, + 43.3308772937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "938dd8d6436e90065ae89a13387874abc18d0d1c", + "fields": { + "code_commune_insee": "11034", + "nom_de_la_commune": "BELVEZE DU RAZES", + "code_postal": "11240", + "coordonnees_gps": [ + 43.1243426589, + 2.09178940091 + ], + "libelle_d_acheminement": "BELVEZE DU RAZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09178940091, + 43.1243426589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a748a1632c18722ce2bc046976b79f4485ebcc1", + "fields": { + "code_commune_insee": "11041", + "nom_de_la_commune": "BIZE MINERVOIS", + "code_postal": "11120", + "coordonnees_gps": [ + 43.3290216831, + 2.87155465865 + ], + "libelle_d_acheminement": "BIZE MINERVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87155465865, + 43.3290216831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f27415046e7d9e9dbbf5410208815e5af5241ad", + "fields": { + "code_commune_insee": "11057", + "nom_de_la_commune": "CAHUZAC", + "code_postal": "11420", + "coordonnees_gps": [ + 43.1910457149, + 1.8547719586 + ], + "libelle_d_acheminement": "CAHUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8547719586, + 43.1910457149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86361f47a894146227f8b580cab457ef801bb176", + "fields": { + "code_commune_insee": "11065", + "nom_de_la_commune": "CAMPS SUR L AGLY", + "code_postal": "11190", + "coordonnees_gps": [ + 42.8638864709, + 2.41909357872 + ], + "libelle_d_acheminement": "CAMPS SUR L AGLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41909357872, + 42.8638864709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fec96b8017984f45582693f48fd44db74bf958d4", + "fields": { + "ligne_5": "MONTREDON", + "code_commune_insee": "11069", + "libelle_d_acheminement": "CARCASSONNE", + "code_postal": "11000", + "nom_de_la_commune": "CARCASSONNE", + "coordonnees_gps": [ + 43.2093798444, + 2.34398855385 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34398855385, + 43.2093798444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "898fc871ec7bbabb70070e28ccfd6e7fcbb32347", + "fields": { + "code_commune_insee": "11072", + "nom_de_la_commune": "LA CASSAIGNE", + "code_postal": "11270", + "coordonnees_gps": [ + 43.1959217452, + 1.98943286044 + ], + "libelle_d_acheminement": "LA CASSAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98943286044, + 43.1959217452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "139285a4fc21dfdda2645d1575e9fef30b28bcef", + "fields": { + "code_commune_insee": "11078", + "nom_de_la_commune": "CASTELRENG", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0207809156, + 2.12731730664 + ], + "libelle_d_acheminement": "CASTELRENG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12731730664, + 43.0207809156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0393a4389ccc859a13df9dfbc69233312d75923d", + "fields": { + "ligne_5": "GUEYTES ET LABASTIDE", + "code_commune_insee": "11080", + "libelle_d_acheminement": "VAL DE LAMBRONNE", + "code_postal": "11230", + "nom_de_la_commune": "VAL DE LAMBRONNE", + "coordonnees_gps": [ + 43.074926897, + 1.97483631739 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97483631739, + 43.074926897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df9dedfceb36d5f3b0d6913ddfd4b083c7d2b694", + "fields": { + "code_commune_insee": "11081", + "nom_de_la_commune": "CAUNES MINERVOIS", + "code_postal": "11160", + "coordonnees_gps": [ + 43.3327963198, + 2.51635482478 + ], + "libelle_d_acheminement": "CAUNES MINERVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51635482478, + 43.3327963198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "320dadcb73ccd4b403e9d43c49879ef70b7600c7", + "fields": { + "code_commune_insee": "11100", + "nom_de_la_commune": "CORBIERES", + "code_postal": "11230", + "coordonnees_gps": [ + 43.0452528312, + 1.99980584945 + ], + "libelle_d_acheminement": "CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99980584945, + 43.0452528312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "303397c5cd27591bcf497c1125d0287c3adac01c", + "fields": { + "code_commune_insee": "11101", + "nom_de_la_commune": "COUDONS", + "code_postal": "11500", + "coordonnees_gps": [ + 42.8636835943, + 2.11985831912 + ], + "libelle_d_acheminement": "COUDONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11985831912, + 42.8636835943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d58fc0d6bde44349acabe77cd536ca288661a8f", + "fields": { + "code_commune_insee": "11105", + "nom_de_la_commune": "COURNANEL", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0297699245, + 2.23528266508 + ], + "libelle_d_acheminement": "COURNANEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23528266508, + 43.0297699245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f31cfd4153652dfcc53c243592f3ff959f79dc9e", + "fields": { + "code_commune_insee": "11107", + "nom_de_la_commune": "COURTAULY", + "code_postal": "11230", + "coordonnees_gps": [ + 43.0409426208, + 2.04467462056 + ], + "libelle_d_acheminement": "COURTAULY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04467462056, + 43.0409426208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a1a6da8f8a968e48bb5b9a3380f6ee6d822b213", + "fields": { + "code_commune_insee": "11109", + "nom_de_la_commune": "COUSTAUSSA", + "code_postal": "11190", + "coordonnees_gps": [ + 42.9367588935, + 2.28608186295 + ], + "libelle_d_acheminement": "COUSTAUSSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28608186295, + 42.9367588935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45612ba3646a16afbf02ffbfe0cda337f0c6a8b0", + "fields": { + "code_commune_insee": "11113", + "nom_de_la_commune": "CUCUGNAN", + "code_postal": "11350", + "coordonnees_gps": [ + 42.8512642371, + 2.60941588614 + ], + "libelle_d_acheminement": "CUCUGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60941588614, + 42.8512642371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba4528e9175288ccf9e8b2f4754b0ee0e3740753", + "fields": { + "code_commune_insee": "11124", + "nom_de_la_commune": "DURBAN CORBIERES", + "code_postal": "11360", + "coordonnees_gps": [ + 42.9976164909, + 2.81275011537 + ], + "libelle_d_acheminement": "DURBAN CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81275011537, + 42.9976164909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a73311f557351f53344be550f850f90bc4511fc4", + "fields": { + "code_commune_insee": "11132", + "nom_de_la_commune": "FABREZAN", + "code_postal": "11200", + "coordonnees_gps": [ + 43.1259965939, + 2.70495303156 + ], + "libelle_d_acheminement": "FABREZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70495303156, + 43.1259965939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b38c86ac0530236429fd5696beb11b43c0c97c63", + "fields": { + "code_commune_insee": "11134", + "nom_de_la_commune": "FAJAC LA RELENQUE", + "code_postal": "11410", + "coordonnees_gps": [ + 43.2824532203, + 1.72705539612 + ], + "libelle_d_acheminement": "FAJAC LA RELENQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72705539612, + 43.2824532203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4e5a199a5fdced7f9d2b2199119703134e39cd7", + "fields": { + "code_commune_insee": "11138", + "nom_de_la_commune": "FENDEILLE", + "code_postal": "11400", + "coordonnees_gps": [ + 43.2708066932, + 1.94828248478 + ], + "libelle_d_acheminement": "FENDEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94828248478, + 43.2708066932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d66abc99262f4ed2665603c1110ac0ecfaf3c92", + "fields": { + "code_commune_insee": "11144", + "nom_de_la_commune": "FITOU", + "code_postal": "11510", + "coordonnees_gps": [ + 42.8959362575, + 2.96671997397 + ], + "libelle_d_acheminement": "FITOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96671997397, + 42.8959362575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d10e972519ffcb160dc2dba320a11e4d1d047a6a", + "fields": { + "code_commune_insee": "11148", + "nom_de_la_commune": "FONTCOUVERTE", + "code_postal": "11700", + "coordonnees_gps": [ + 43.1679703026, + 2.68609403746 + ], + "libelle_d_acheminement": "FONTCOUVERTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68609403746, + 43.1679703026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e34df78cee74f857e429503f5cd4e4b2e8baeda", + "fields": { + "code_commune_insee": "11151", + "nom_de_la_commune": "FONTIES D AUDE", + "code_postal": "11800", + "coordonnees_gps": [ + 43.1874440297, + 2.45756099074 + ], + "libelle_d_acheminement": "FONTIES D AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45756099074, + 43.1874440297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d43059ca71a2354c580771e5278ec3d7fbc0be11", + "fields": { + "code_commune_insee": "11154", + "nom_de_la_commune": "FOURNES CABARDES", + "code_postal": "11600", + "coordonnees_gps": [ + 43.3569463468, + 2.40965154801 + ], + "libelle_d_acheminement": "FOURNES CABARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40965154801, + 43.3569463468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc799664c98b1ca8b6f8ed3b18f26869f8496495", + "fields": { + "code_commune_insee": "11156", + "nom_de_la_commune": "FRAISSE CABARDES", + "code_postal": "11600", + "coordonnees_gps": [ + 43.3295843066, + 2.27147589687 + ], + "libelle_d_acheminement": "FRAISSE CABARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27147589687, + 43.3295843066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c08cab93887b4b958d09b217b8ff442a0637dfc", + "fields": { + "code_commune_insee": "11159", + "nom_de_la_commune": "GAJA LA SELVE", + "code_postal": "11270", + "coordonnees_gps": [ + 43.2002672406, + 1.88364731098 + ], + "libelle_d_acheminement": "GAJA LA SELVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88364731098, + 43.2002672406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f236c4532c0bc08f7fe92fff73d61bf7e675f451", + "fields": { + "code_commune_insee": "11161", + "nom_de_la_commune": "GARDIE", + "code_postal": "11250", + "coordonnees_gps": [ + 43.0747878075, + 2.2989044146 + ], + "libelle_d_acheminement": "GARDIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2989044146, + 43.0747878075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52f4dcc10d350fc8dd9baf6c14b7e01c1b2814f0", + "fields": { + "code_commune_insee": "11165", + "nom_de_la_commune": "GINOLES", + "code_postal": "11500", + "coordonnees_gps": [ + 42.864787536, + 2.15713578249 + ], + "libelle_d_acheminement": "GINOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15713578249, + 42.864787536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3baa28c18ccead29da5e3adf8a9231f811581122", + "fields": { + "code_commune_insee": "11166", + "nom_de_la_commune": "GOURVIEILLE", + "code_postal": "11410", + "coordonnees_gps": [ + 43.3362096434, + 1.78856389792 + ], + "libelle_d_acheminement": "GOURVIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78856389792, + 43.3362096434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8b79d13847795a871adc3d80619105c786bf1ca", + "fields": { + "code_commune_insee": "11173", + "nom_de_la_commune": "HOUNOUX", + "code_postal": "11240", + "coordonnees_gps": [ + 43.1333954781, + 2.00312155493 + ], + "libelle_d_acheminement": "HOUNOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00312155493, + 43.1333954781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e4ead21d2d8907f00dc8e11a1ef14459820d9d3", + "fields": { + "code_commune_insee": "11181", + "nom_de_la_commune": "LABECEDE LAURAGAIS", + "code_postal": "11400", + "coordonnees_gps": [ + 43.3964166976, + 2.01100168074 + ], + "libelle_d_acheminement": "LABECEDE LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01100168074, + 43.3964166976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "221be9f45320cd6bc66f0a28d2435407be641dd3", + "fields": { + "code_commune_insee": "11182", + "nom_de_la_commune": "LACOMBE", + "code_postal": "11310", + "coordonnees_gps": [ + 43.4060884767, + 2.24016063772 + ], + "libelle_d_acheminement": "LACOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24016063772, + 43.4060884767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "644e2d0e71be9a1c2cd149f864d7a1c6a0be4405", + "fields": { + "code_commune_insee": "11193", + "nom_de_la_commune": "LASSERRE DE PROUILLE", + "code_postal": "11270", + "coordonnees_gps": [ + 43.1807085123, + 2.08506229435 + ], + "libelle_d_acheminement": "LASSERRE DE PROUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08506229435, + 43.1807085123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cae77a8f149307991f06aae127b8744e81602c6", + "fields": { + "code_commune_insee": "11195", + "nom_de_la_commune": "LAURABUC", + "code_postal": "11400", + "coordonnees_gps": [ + 43.2605975976, + 1.99494391094 + ], + "libelle_d_acheminement": "LAURABUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99494391094, + 43.2605975976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "705e7495fbc809f08d126ce7690db49dfec3bbb1", + "fields": { + "code_commune_insee": "11199", + "nom_de_la_commune": "LAVALETTE", + "code_postal": "11290", + "coordonnees_gps": [ + 43.1922487019, + 2.27058563177 + ], + "libelle_d_acheminement": "LAVALETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27058563177, + 43.1922487019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac03247786ae2ac74fba6a69abba05707154ef7a", + "fields": { + "code_commune_insee": "11200", + "nom_de_la_commune": "LESPINASSIERE", + "code_postal": "11160", + "coordonnees_gps": [ + 43.4088985719, + 2.54776717601 + ], + "libelle_d_acheminement": "LESPINASSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54776717601, + 43.4088985719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c29ef7eeaffd955bb786a30d6e9f46b368b18b25", + "fields": { + "code_commune_insee": "11201", + "nom_de_la_commune": "LEUC", + "code_postal": "11250", + "coordonnees_gps": [ + 43.1412292044, + 2.33961454504 + ], + "libelle_d_acheminement": "LEUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33961454504, + 43.1412292044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa77b7d393a89da355e42713ff8382019877aafa", + "fields": { + "code_commune_insee": "11204", + "nom_de_la_commune": "LIGNAIROLLES", + "code_postal": "11240", + "coordonnees_gps": [ + 43.0945401019, + 2.00127253702 + ], + "libelle_d_acheminement": "LIGNAIROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00127253702, + 43.0945401019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9026d2677b4bf1c20a953576e5d7e7b38a8f4e31", + "fields": { + "code_commune_insee": "11208", + "nom_de_la_commune": "LA LOUVIERE LAURAGAIS", + "code_postal": "11410", + "coordonnees_gps": [ + 43.2673283014, + 1.75078785936 + ], + "libelle_d_acheminement": "LA LOUVIERE LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75078785936, + 43.2673283014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cba54992905595da1ac9bbc41ab016f0628e47e7", + "fields": { + "code_commune_insee": "11210", + "nom_de_la_commune": "LUC SUR ORBIEU", + "code_postal": "11200", + "coordonnees_gps": [ + 43.1757442805, + 2.78804456863 + ], + "libelle_d_acheminement": "LUC SUR ORBIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78804456863, + 43.1757442805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "230b48a125a80ee7746c72ee30e21f6530575f0e", + "fields": { + "code_commune_insee": "11225", + "nom_de_la_commune": "MAS SAINTES PUELLES", + "code_postal": "11400", + "coordonnees_gps": [ + 43.314008864, + 1.87769752208 + ], + "libelle_d_acheminement": "MAS SAINTES PUELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87769752208, + 43.314008864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "989ca7401cf3f8d7eceadebf6cae7e79561c1854", + "fields": { + "code_commune_insee": "11243", + "nom_de_la_commune": "MONTFERRAND", + "code_postal": "11320", + "coordonnees_gps": [ + 43.368751028, + 1.82823175156 + ], + "libelle_d_acheminement": "MONTFERRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82823175156, + 43.368751028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2999796ff87bb1391fcddbb8f70a464d138d048", + "fields": { + "code_commune_insee": "11249", + "nom_de_la_commune": "MONTJARDIN", + "code_postal": "11230", + "coordonnees_gps": [ + 42.9795968014, + 2.05064516411 + ], + "libelle_d_acheminement": "MONTJARDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05064516411, + 42.9795968014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fcefbbef8aed56366db35ab5c2fdadad0e67ec2", + "fields": { + "code_commune_insee": "11252", + "nom_de_la_commune": "MONTMAUR", + "code_postal": "11320", + "coordonnees_gps": [ + 43.4003889656, + 1.84463626478 + ], + "libelle_d_acheminement": "MONTMAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84463626478, + 43.4003889656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfaf525bf4dc8670239d41c68c5b721df729ac31", + "fields": { + "code_commune_insee": "11257", + "nom_de_la_commune": "MONZE", + "code_postal": "11800", + "coordonnees_gps": [ + 43.1532561314, + 2.46648904534 + ], + "libelle_d_acheminement": "MONZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46648904534, + 43.1532561314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c70881fc9d03e8c87986a1fb2693485425ab71b3", + "fields": { + "code_commune_insee": "11258", + "nom_de_la_commune": "MOUSSAN", + "code_postal": "11120", + "coordonnees_gps": [ + 43.2305950634, + 2.95635636294 + ], + "libelle_d_acheminement": "MOUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95635636294, + 43.2305950634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "364171243be6023cafc154f44c6b630e5b662c25", + "fields": { + "code_commune_insee": "11263", + "nom_de_la_commune": "NEBIAS", + "code_postal": "11500", + "coordonnees_gps": [ + 42.8902940685, + 2.10479303783 + ], + "libelle_d_acheminement": "NEBIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10479303783, + 42.8902940685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d03b05201cc559630c3b14357bec1256c9c80c8", + "fields": { + "code_commune_insee": "11268", + "nom_de_la_commune": "ORSANS", + "code_postal": "11270", + "coordonnees_gps": [ + 43.1546289109, + 1.97945728495 + ], + "libelle_d_acheminement": "ORSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97945728495, + 43.1546289109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2fdd39e7fbea9c5f88aaba78a8194293aa9f8db", + "fields": { + "code_commune_insee": "11269", + "nom_de_la_commune": "OUVEILLAN", + "code_postal": "11590", + "coordonnees_gps": [ + 43.2931875374, + 2.96999154918 + ], + "libelle_d_acheminement": "OUVEILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96999154918, + 43.2931875374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "139435fa560e1c980b91c0b28059e96ffd928b8b", + "fields": { + "code_commune_insee": "11271", + "nom_de_la_commune": "PALAIRAC", + "code_postal": "11330", + "coordonnees_gps": [ + 42.9574272598, + 2.65821174317 + ], + "libelle_d_acheminement": "PALAIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65821174317, + 42.9574272598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3efb3eef6c102c24123de1c8a96346f92f6662b9", + "fields": { + "code_commune_insee": "11273", + "nom_de_la_commune": "PARAZA", + "code_postal": "11200", + "coordonnees_gps": [ + 43.2596066026, + 2.81616059215 + ], + "libelle_d_acheminement": "PARAZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81616059215, + 43.2596066026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aa8f9670c3a70e6a95c97846d455d0c6a806296", + "fields": { + "code_commune_insee": "11279", + "nom_de_la_commune": "PENNAUTIER", + "code_postal": "11610", + "coordonnees_gps": [ + 43.2513741105, + 2.31315453913 + ], + "libelle_d_acheminement": "PENNAUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31315453913, + 43.2513741105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f59409a881195225cb9fe2811cfbdb42332a8974", + "fields": { + "code_commune_insee": "11286", + "nom_de_la_commune": "PEYRIAC MINERVOIS", + "code_postal": "11160", + "coordonnees_gps": [ + 43.2937181047, + 2.56669298957 + ], + "libelle_d_acheminement": "PEYRIAC MINERVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56669298957, + 43.2937181047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5e3a2dbba66a823e786dfd29cc904621f55e43f", + "fields": { + "code_commune_insee": "11291", + "nom_de_la_commune": "PLAVILLA", + "code_postal": "11270", + "coordonnees_gps": [ + 43.1414188507, + 1.90688009289 + ], + "libelle_d_acheminement": "PLAVILLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90688009289, + 43.1414188507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcb802d4843572505cc3829c270bb6c6e895d345", + "fields": { + "code_commune_insee": "11296", + "nom_de_la_commune": "POUZOLS MINERVOIS", + "code_postal": "11120", + "coordonnees_gps": [ + 43.2851566482, + 2.81263595942 + ], + "libelle_d_acheminement": "POUZOLS MINERVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81263595942, + 43.2851566482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "212632c0f5d2e67fd2606e72ce9df073943994b4", + "fields": { + "code_commune_insee": "11299", + "nom_de_la_commune": "PREIXAN", + "code_postal": "11250", + "coordonnees_gps": [ + 43.143749642, + 2.28019165667 + ], + "libelle_d_acheminement": "PREIXAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28019165667, + 43.143749642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4f3804d41601873ebff55c9cd4797dfec85b480", + "fields": { + "code_commune_insee": "11300", + "nom_de_la_commune": "PUGINIER", + "code_postal": "11400", + "coordonnees_gps": [ + 43.3823007411, + 1.92646643513 + ], + "libelle_d_acheminement": "PUGINIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92646643513, + 43.3823007411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "075d6175b989d00a1f7481c78d9b28466554680f", + "fields": { + "code_commune_insee": "11308", + "nom_de_la_commune": "RAISSAC SUR LAMPY", + "code_postal": "11170", + "coordonnees_gps": [ + 43.2772178927, + 2.16063217887 + ], + "libelle_d_acheminement": "RAISSAC SUR LAMPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16063217887, + 43.2772178927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bd8ded88cbcdd04c3f5fbe64b4b922e238c49f8", + "fields": { + "code_commune_insee": "11319", + "nom_de_la_commune": "ROQUEFERE", + "code_postal": "11380", + "coordonnees_gps": [ + 43.3939652788, + 2.37477905225 + ], + "libelle_d_acheminement": "ROQUEFERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37477905225, + 43.3939652788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b74c7c9268ec8a72ce1895ec199c72af09c67357", + "fields": { + "code_commune_insee": "11320", + "nom_de_la_commune": "ROQUEFEUIL", + "code_postal": "11340", + "coordonnees_gps": [ + 42.8466988532, + 1.99530342832 + ], + "libelle_d_acheminement": "ROQUEFEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99530342832, + 42.8466988532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2676acef1c21c730133c2116d2b40890373b08c0", + "fields": { + "code_commune_insee": "11322", + "nom_de_la_commune": "ROQUEFORT DES CORBIERES", + "code_postal": "11540", + "coordonnees_gps": [ + 42.9921607802, + 2.9297362776 + ], + "libelle_d_acheminement": "ROQUEFORT DES CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9297362776, + 42.9921607802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31dab0acaeb7970d924284e29510e9791c02efcc", + "fields": { + "code_commune_insee": "11336", + "nom_de_la_commune": "STE COLOMBE SUR L HERS", + "code_postal": "11230", + "coordonnees_gps": [ + 42.9464872452, + 1.96310689852 + ], + "libelle_d_acheminement": "STE COLOMBE SUR L HERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96310689852, + 42.9464872452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb7a3ba2a885f2e1d0d92864c12ffdd27587f8d8", + "fields": { + "code_commune_insee": "11350", + "nom_de_la_commune": "ST JUST ET LE BEZU", + "code_postal": "11500", + "coordonnees_gps": [ + 42.8783013645, + 2.28754203844 + ], + "libelle_d_acheminement": "ST JUST ET LE BEZU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28754203844, + 42.8783013645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b92e32d91d50a3b07e17cab642cb370437393d07", + "fields": { + "code_commune_insee": "11351", + "nom_de_la_commune": "ST LAURENT DE LA CABRERISSE", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0835460249, + 2.71390822803 + ], + "libelle_d_acheminement": "ST LAURENT DE LA CABRERISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71390822803, + 43.0835460249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8ae48af999c461b5831efc403bf9a8dcce53dc6", + "fields": { + "code_commune_insee": "11356", + "nom_de_la_commune": "ST MARTIN LALANDE", + "code_postal": "11400", + "coordonnees_gps": [ + 43.3015260631, + 2.01594632957 + ], + "libelle_d_acheminement": "ST MARTIN LALANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01594632957, + 43.3015260631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88e9442f0be96ad4143ca126fbf66bba5c90b18a", + "fields": { + "code_commune_insee": "11358", + "nom_de_la_commune": "ST MARTIN LYS", + "code_postal": "11500", + "coordonnees_gps": [ + 42.8243329025, + 2.23823385379 + ], + "libelle_d_acheminement": "ST MARTIN LYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23823385379, + 42.8243329025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06bc80c3ed1edb1c797ae36c33943422950d56a0", + "fields": { + "code_commune_insee": "11361", + "nom_de_la_commune": "ST PAPOUL", + "code_postal": "11400", + "coordonnees_gps": [ + 43.3374046005, + 2.04475421603 + ], + "libelle_d_acheminement": "ST PAPOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04475421603, + 43.3374046005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3c13cbb8801f892422ddd5a68bbed0e663d43e4", + "fields": { + "code_commune_insee": "11365", + "nom_de_la_commune": "ST SERNIN", + "code_postal": "11420", + "coordonnees_gps": [ + 43.2285542275, + 1.80569705902 + ], + "libelle_d_acheminement": "ST SERNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80569705902, + 43.2285542275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b322491272824ac8060fed3853a46468376c1ec7", + "fields": { + "code_commune_insee": "11374", + "nom_de_la_commune": "SALZA", + "code_postal": "11330", + "coordonnees_gps": [ + 42.9854396478, + 2.5059068011 + ], + "libelle_d_acheminement": "SALZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5059068011, + 42.9854396478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f10f30d933a0942c7c35177e02b9776e9ec76fdd", + "fields": { + "code_commune_insee": "11378", + "nom_de_la_commune": "SERVIES EN VAL", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0946905132, + 2.52557493954 + ], + "libelle_d_acheminement": "SERVIES EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52557493954, + 43.0946905132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97234e18f2f24c985a868ab5e7ecdb71c36a6fb5", + "fields": { + "code_commune_insee": "11392", + "nom_de_la_commune": "TOURNISSAN", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0840008987, + 2.66022505516 + ], + "libelle_d_acheminement": "TOURNISSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66022505516, + 43.0840008987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e6793c58eb4f7f03e1226b537e4af8d31ca998c", + "fields": { + "code_commune_insee": "11400", + "nom_de_la_commune": "TREZIERS", + "code_postal": "11230", + "coordonnees_gps": [ + 43.0557381475, + 1.96306629097 + ], + "libelle_d_acheminement": "TREZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96306629097, + 43.0557381475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73588d1359bdb6aa71380931505f816730c3c654", + "fields": { + "code_commune_insee": "11405", + "nom_de_la_commune": "VENTENAC EN MINERVOIS", + "code_postal": "11120", + "coordonnees_gps": [ + 43.2520790063, + 2.85589136189 + ], + "libelle_d_acheminement": "VENTENAC EN MINERVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85589136189, + 43.2520790063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed04d8ae84fd754b712c2a2ef59c2ee9a089a9f0", + "fields": { + "code_commune_insee": "11406", + "nom_de_la_commune": "VERAZA", + "code_postal": "11580", + "coordonnees_gps": [ + 42.9927983213, + 2.30791216337 + ], + "libelle_d_acheminement": "VERAZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30791216337, + 42.9927983213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4310fc84e600405492aba35c33a3588f514ab9e", + "fields": { + "code_commune_insee": "11411", + "nom_de_la_commune": "VILLANIERE", + "code_postal": "11600", + "coordonnees_gps": [ + 43.3489710835, + 2.3498111989 + ], + "libelle_d_acheminement": "VILLANIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3498111989, + 43.3489710835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99d7a928903585a120ccc4015e83063f729a2cae", + "fields": { + "code_commune_insee": "11413", + "nom_de_la_commune": "VILLARDONNEL", + "code_postal": "11600", + "coordonnees_gps": [ + 43.3345079684, + 2.31365896939 + ], + "libelle_d_acheminement": "VILLARDONNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31365896939, + 43.3345079684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdb65d20bfaef28dfc7149e95555c76fd8605927", + "fields": { + "code_commune_insee": "11421", + "nom_de_la_commune": "VILLEDAIGNE", + "code_postal": "11200", + "coordonnees_gps": [ + 43.2113999899, + 2.85510092401 + ], + "libelle_d_acheminement": "VILLEDAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85510092401, + 43.2113999899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76b8c335e3aa51c824c8c1d29692bb16d6e70e01", + "fields": { + "code_commune_insee": "11439", + "nom_de_la_commune": "VILLESPY", + "code_postal": "11170", + "coordonnees_gps": [ + 43.3220982034, + 2.09853439649 + ], + "libelle_d_acheminement": "VILLESPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09853439649, + 43.3220982034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb4ce6eb0c6ce9bad711d01557ba38e72b7abcfb", + "fields": { + "code_commune_insee": "12004", + "nom_de_la_commune": "ALMONT LES JUNIES", + "code_postal": "12300", + "coordonnees_gps": [ + 44.6009371852, + 2.31097212819 + ], + "libelle_d_acheminement": "ALMONT LES JUNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31097212819, + 44.6009371852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49d791618042b9476e3e3dee00a89affac6d7d17", + "fields": { + "code_commune_insee": "12012", + "nom_de_la_commune": "ASPRIERES", + "code_postal": "12700", + "coordonnees_gps": [ + 44.555388853, + 2.13842661504 + ], + "libelle_d_acheminement": "ASPRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13842661504, + 44.555388853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c134e3e1e3f21c5a34612865bbf720fda36d4b0", + "fields": { + "code_commune_insee": "12027", + "nom_de_la_commune": "BESSUEJOULS", + "code_postal": "12500", + "coordonnees_gps": [ + 44.5198421781, + 2.71668578006 + ], + "libelle_d_acheminement": "BESSUEJOULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71668578006, + 44.5198421781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9d750df78dd7fd221624888d83ac899cfafbfa5", + "fields": { + "code_commune_insee": "12035", + "nom_de_la_commune": "BRASC", + "code_postal": "12550", + "coordonnees_gps": [ + 43.9790937141, + 2.57293179162 + ], + "libelle_d_acheminement": "BRASC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57293179162, + 43.9790937141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64c065ad09834431b3fed52b9ece03b75d6a38f3", + "fields": { + "code_commune_insee": "12039", + "nom_de_la_commune": "BRUSQUE", + "code_postal": "12360", + "coordonnees_gps": [ + 43.7649625087, + 2.94838918036 + ], + "libelle_d_acheminement": "BRUSQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94838918036, + 43.7649625087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "484e434a72aab4a0b2071cdb88db1b831406e3b1", + "fields": { + "code_commune_insee": "12052", + "nom_de_la_commune": "CAPDENAC GARE", + "code_postal": "12700", + "coordonnees_gps": [ + 44.5596095618, + 2.06863929998 + ], + "libelle_d_acheminement": "CAPDENAC GARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06863929998, + 44.5596095618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5edc5a9521b576de4095d1359a79c148bf6a63b7", + "fields": { + "code_commune_insee": "12054", + "nom_de_la_commune": "LA CAPELLE BLEYS", + "code_postal": "12240", + "coordonnees_gps": [ + 44.3037455115, + 2.17927140431 + ], + "libelle_d_acheminement": "LA CAPELLE BLEYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17927140431, + 44.3037455115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51725155ffdcb3172ab0354897f47934a8e2ab22", + "fields": { + "code_commune_insee": "12055", + "nom_de_la_commune": "LA CAPELLE BONANCE", + "code_postal": "12130", + "coordonnees_gps": [ + 44.4515040312, + 3.02655921339 + ], + "libelle_d_acheminement": "LA CAPELLE BONANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02655921339, + 44.4515040312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e1a5845d93a15911eef6047440a29c2f23ea30a", + "fields": { + "code_commune_insee": "12056", + "nom_de_la_commune": "BARAQUEVILLE", + "code_postal": "12160", + "coordonnees_gps": [ + 44.2810938954, + 2.44964862339 + ], + "libelle_d_acheminement": "BARAQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44964862339, + 44.2810938954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d3be8687e068f31a358cb1b79b19dc26c471271", + "fields": { + "code_commune_insee": "12059", + "nom_de_la_commune": "CASTANET", + "code_postal": "12240", + "coordonnees_gps": [ + 44.2930906891, + 2.30836294143 + ], + "libelle_d_acheminement": "CASTANET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30836294143, + 44.2930906891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bf77256c31c014104ef7d75ba3d5e50f769828d", + "fields": { + "code_commune_insee": "12064", + "nom_de_la_commune": "LE CAYROL", + "code_postal": "12500", + "coordonnees_gps": [ + 44.5856833966, + 2.78393702162 + ], + "libelle_d_acheminement": "LE CAYROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78393702162, + 44.5856833966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7880acc5f1c0111003331d00f15bb452142702e9", + "fields": { + "code_commune_insee": "12065", + "nom_de_la_commune": "CENTRES", + "code_postal": "12120", + "coordonnees_gps": [ + 44.1676419665, + 2.4408941815 + ], + "libelle_d_acheminement": "CENTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4408941815, + 44.1676419665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "801ebb0ce905ebf1c816355facb96e953f093832", + "fields": { + "code_commune_insee": "12071", + "nom_de_la_commune": "COMPOLIBAT", + "code_postal": "12350", + "coordonnees_gps": [ + 44.3793468455, + 2.1863960416 + ], + "libelle_d_acheminement": "COMPOLIBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1863960416, + 44.3793468455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3c653417d25299ad2a08024680ddbf86e5868e3", + "fields": { + "code_commune_insee": "12074", + "nom_de_la_commune": "CONDOM D AUBRAC", + "code_postal": "12470", + "coordonnees_gps": [ + 44.6054295973, + 2.88073175235 + ], + "libelle_d_acheminement": "CONDOM D AUBRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88073175235, + 44.6054295973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb573a2968f80193a849e89fa59250320b94471d", + "fields": { + "code_commune_insee": "12086", + "nom_de_la_commune": "LA CRESSE", + "code_postal": "12640", + "coordonnees_gps": [ + 44.1676766844, + 3.15670064587 + ], + "libelle_d_acheminement": "LA CRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15670064587, + 44.1676766844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f089a766483ebc33d164683b557a97b9563079ec", + "fields": { + "ligne_5": "DRUELLE", + "code_commune_insee": "12090", + "libelle_d_acheminement": "DRUELLE BALSAC", + "code_postal": "12000", + "nom_de_la_commune": "DRUELLE BALSAC", + "coordonnees_gps": [ + 44.3609252009, + 2.47671597719 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47671597719, + 44.3609252009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2503cfd4bc259b29bd1193a0ea94c9a3666f4396", + "fields": { + "ligne_5": "BALSAC", + "code_commune_insee": "12090", + "libelle_d_acheminement": "DRUELLE BALSAC", + "code_postal": "12510", + "nom_de_la_commune": "DRUELLE BALSAC", + "coordonnees_gps": [ + 44.3609252009, + 2.47671597719 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47671597719, + 44.3609252009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b5c7612fb7c576ff6435f0859ece31b8879c422", + "fields": { + "code_commune_insee": "12093", + "nom_de_la_commune": "LE FEL", + "code_postal": "12140", + "coordonnees_gps": [ + 44.6696449626, + 2.51772189007 + ], + "libelle_d_acheminement": "LE FEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51772189007, + 44.6696449626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3446bf116e51f2599938fd90d411b0901efc6e6e", + "fields": { + "code_commune_insee": "12099", + "nom_de_la_commune": "FAYET", + "code_postal": "12360", + "coordonnees_gps": [ + 43.8035569048, + 2.97747865298 + ], + "libelle_d_acheminement": "FAYET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97747865298, + 43.8035569048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fea0a71507e9f9ecb0544d6ab625249dcd8f587", + "fields": { + "code_commune_insee": "12101", + "nom_de_la_commune": "FLAGNAC", + "code_postal": "12300", + "coordonnees_gps": [ + 44.5935121569, + 2.2651648768 + ], + "libelle_d_acheminement": "FLAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2651648768, + 44.5935121569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c253020ef4d8ce911132012b7c63b4d883f1b925", + "fields": { + "code_commune_insee": "12109", + "nom_de_la_commune": "GISSAC", + "code_postal": "12360", + "coordonnees_gps": [ + 43.868273324, + 2.90640154939 + ], + "libelle_d_acheminement": "GISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90640154939, + 43.868273324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "901b93b3ba589aa203dddb946641b933ff8b02c2", + "fields": { + "code_commune_insee": "12128", + "nom_de_la_commune": "LESCURE JAOUL", + "code_postal": "12440", + "coordonnees_gps": [ + 44.225497867, + 2.1468963703 + ], + "libelle_d_acheminement": "LESCURE JAOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1468963703, + 44.225497867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f6defa52d5c7db7f670373de89cd98db7d27082", + "fields": { + "code_commune_insee": "12137", + "nom_de_la_commune": "MANHAC", + "code_postal": "12160", + "coordonnees_gps": [ + 44.2605706406, + 2.4781869588 + ], + "libelle_d_acheminement": "MANHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4781869588, + 44.2605706406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d1388a682c1091f9139ed7b89a4ba3d54fe3dea", + "fields": { + "code_commune_insee": "12138", + "nom_de_la_commune": "MARCILLAC VALLON", + "code_postal": "12330", + "coordonnees_gps": [ + 44.4772361351, + 2.46487970585 + ], + "libelle_d_acheminement": "MARCILLAC VALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46487970585, + 44.4772361351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e01af57aa7c84d9277dfc124851ec3ea365afd0", + "fields": { + "code_commune_insee": "12141", + "nom_de_la_commune": "MARTRIN", + "code_postal": "12550", + "coordonnees_gps": [ + 43.9287986498, + 2.63394013332 + ], + "libelle_d_acheminement": "MARTRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63394013332, + 43.9287986498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8712a6d55f365a6d31ea9bc2e724c2bdd67ade95", + "fields": { + "code_commune_insee": "12143", + "nom_de_la_commune": "MELAGUES", + "code_postal": "12360", + "coordonnees_gps": [ + 43.7281707219, + 3.01706208309 + ], + "libelle_d_acheminement": "MELAGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01706208309, + 43.7281707219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9797b78b0a388ce650cb8569a6b6c48b45ee992", + "fields": { + "code_commune_insee": "12146", + "nom_de_la_commune": "LE MONASTERE", + "code_postal": "12000", + "coordonnees_gps": [ + 44.331592843, + 2.5872623881 + ], + "libelle_d_acheminement": "LE MONASTERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5872623881, + 44.331592843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddaf4651c5277b7da29c05f1dd58e3917488b9cd", + "fields": { + "code_commune_insee": "12158", + "nom_de_la_commune": "MONTSALES", + "code_postal": "12260", + "coordonnees_gps": [ + 44.4857721529, + 1.97611373855 + ], + "libelle_d_acheminement": "MONTSALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97611373855, + 44.4857721529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac31d80c12c984629dfee205b4dba5aedf3ed9ae", + "fields": { + "code_commune_insee": "12161", + "nom_de_la_commune": "MOURET", + "code_postal": "12330", + "coordonnees_gps": [ + 44.5143822131, + 2.52108945379 + ], + "libelle_d_acheminement": "MOURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52108945379, + 44.5143822131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c94c40d68dbe337c721349c8600917432b1282b3", + "fields": { + "code_commune_insee": "12164", + "nom_de_la_commune": "MUR DE BARREZ", + "code_postal": "12600", + "coordonnees_gps": [ + 44.8759902067, + 2.68059365877 + ], + "libelle_d_acheminement": "MUR DE BARREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68059365877, + 44.8759902067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e3c3226cd2e40e71798cfe09562e3a17b596364", + "fields": { + "code_commune_insee": "12167", + "nom_de_la_commune": "NAJAC", + "code_postal": "12270", + "coordonnees_gps": [ + 44.211295506, + 1.96305922109 + ], + "libelle_d_acheminement": "NAJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96305922109, + 44.211295506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e91f077f49fbc2b9387fb59ee24dd1dab6b0fd1", + "fields": { + "code_commune_insee": "12175", + "nom_de_la_commune": "OLS ET RINHODES", + "code_postal": "12260", + "coordonnees_gps": [ + 44.4615013525, + 1.94693062235 + ], + "libelle_d_acheminement": "OLS ET RINHODES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94693062235, + 44.4615013525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36ea80042be5cd635e85f6ab17b0e58ac71516ce", + "fields": { + "ligne_5": "CRUEJOULS", + "code_commune_insee": "12177", + "libelle_d_acheminement": "PALMAS D AVEYRON", + "code_postal": "12340", + "nom_de_la_commune": "PALMAS D AVEYRON", + "coordonnees_gps": [ + 44.4009437729, + 2.84225329377 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84225329377, + 44.4009437729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90dc2fb9e1db645a2c537a0a6f6a03825b781843", + "fields": { + "code_commune_insee": "12187", + "nom_de_la_commune": "PRADES D AUBRAC", + "code_postal": "12470", + "coordonnees_gps": [ + 44.5418402145, + 2.97032674456 + ], + "libelle_d_acheminement": "PRADES D AUBRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97032674456, + 44.5418402145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8f11056dd62edd0a3b0ce54fe4a69e71e1299ca", + "fields": { + "code_commune_insee": "12188", + "nom_de_la_commune": "PRADES SALARS", + "code_postal": "12290", + "coordonnees_gps": [ + 44.2493343798, + 2.7929953835 + ], + "libelle_d_acheminement": "PRADES SALARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7929953835, + 44.2493343798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ff96da19e677d639f990e8db13375df2e453a8c", + "fields": { + "code_commune_insee": "12201", + "nom_de_la_commune": "RODELLE", + "code_postal": "12340", + "coordonnees_gps": [ + 44.4813052355, + 2.6223380773 + ], + "libelle_d_acheminement": "RODELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6223380773, + 44.4813052355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecd824a3a13e5cfeacb17a08f3107adcd51aa19c", + "fields": { + "code_commune_insee": "12203", + "nom_de_la_commune": "ROQUEFORT SUR SOULZON", + "code_postal": "12250", + "coordonnees_gps": [ + 43.9706930615, + 2.98176110631 + ], + "libelle_d_acheminement": "ROQUEFORT SUR SOULZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98176110631, + 43.9706930615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d326b2a7531a75308b72fc8d9d695d90d8f5b58", + "fields": { + "code_commune_insee": "12210", + "nom_de_la_commune": "ST ANDRE DE NAJAC", + "code_postal": "12270", + "coordonnees_gps": [ + 44.1791526825, + 2.02109386002 + ], + "libelle_d_acheminement": "ST ANDRE DE NAJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02109386002, + 44.1791526825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d83ed36748dbbfbf38ddc9ceae715fcf19783412", + "fields": { + "code_commune_insee": "12217", + "nom_de_la_commune": "STE CROIX", + "code_postal": "12260", + "coordonnees_gps": [ + 44.4143206609, + 1.96803908132 + ], + "libelle_d_acheminement": "STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96803908132, + 44.4143206609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e70d397bb5e0370eed63a7dcfddd563311d3974", + "fields": { + "code_commune_insee": "12221", + "nom_de_la_commune": "ST FELIX DE LUNEL", + "code_postal": "12320", + "coordonnees_gps": [ + 44.5645678324, + 2.51363543065 + ], + "libelle_d_acheminement": "ST FELIX DE LUNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51363543065, + 44.5645678324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffd75978d6d752d173934f2d0c90b7fefdc58350", + "fields": { + "ligne_5": "ALPUECH", + "code_commune_insee": "12223", + "libelle_d_acheminement": "ARGENCES EN AUBRAC", + "code_postal": "12210", + "nom_de_la_commune": "ARGENCES EN AUBRAC", + "coordonnees_gps": [ + 44.8003905234, + 2.7434750028 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7434750028, + 44.8003905234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f67a44aa14b85e0658cf7aeb433c62e5f6f4093", + "fields": { + "ligne_5": "LA TERRISSE", + "code_commune_insee": "12223", + "libelle_d_acheminement": "ARGENCES EN AUBRAC", + "code_postal": "12210", + "nom_de_la_commune": "ARGENCES EN AUBRAC", + "coordonnees_gps": [ + 44.8003905234, + 2.7434750028 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7434750028, + 44.8003905234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ceb1b3bd0c428894ce53360e51bca101364c7a4", + "fields": { + "code_commune_insee": "12228", + "nom_de_la_commune": "ST IZAIRE", + "code_postal": "12480", + "coordonnees_gps": [ + 43.9709276715, + 2.70338873518 + ], + "libelle_d_acheminement": "ST IZAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70338873518, + 43.9709276715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "801c7af60d40cd3ad22f8639301fd16cab0a8579", + "fields": { + "code_commune_insee": "12231", + "nom_de_la_commune": "ST JEAN DU BRUEL", + "code_postal": "12230", + "coordonnees_gps": [ + 44.0262087023, + 3.38224826789 + ], + "libelle_d_acheminement": "ST JEAN DU BRUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38224826789, + 44.0262087023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d121f7f67049646d7fc9592df7470ec5ae4ca03", + "fields": { + "code_commune_insee": "12232", + "nom_de_la_commune": "ST JEAN ET ST PAUL", + "code_postal": "12250", + "coordonnees_gps": [ + 43.9289280982, + 3.02921567332 + ], + "libelle_d_acheminement": "ST JEAN ET ST PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02921567332, + 43.9289280982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ae7a916b310d834c4b156407ac3a3ebfb44af26", + "fields": { + "code_commune_insee": "12233", + "nom_de_la_commune": "ST JUERY", + "code_postal": "12550", + "coordonnees_gps": [ + 43.9242584641, + 2.69629046616 + ], + "libelle_d_acheminement": "ST JUERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69629046616, + 43.9242584641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64505726265f8a2ed09d175404da0b65c949358a", + "fields": { + "code_commune_insee": "12249", + "nom_de_la_commune": "ST SEVER DU MOUSTIER", + "code_postal": "12370", + "coordonnees_gps": [ + 43.7720630211, + 2.69278651558 + ], + "libelle_d_acheminement": "ST SEVER DU MOUSTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69278651558, + 43.7720630211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b674e53cb0e318b76826aeed5dd4e007b6052a48", + "fields": { + "code_commune_insee": "12251", + "nom_de_la_commune": "ST VICTOR ET MELVIEU", + "code_postal": "12400", + "coordonnees_gps": [ + 44.0507837492, + 2.81021922503 + ], + "libelle_d_acheminement": "ST VICTOR ET MELVIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81021922503, + 44.0507837492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3642d0d2ac588605c056894622b3d3df11e25323", + "fields": { + "code_commune_insee": "12252", + "nom_de_la_commune": "SALLES COURBATIES", + "code_postal": "12260", + "coordonnees_gps": [ + 44.4813598633, + 2.08513535949 + ], + "libelle_d_acheminement": "SALLES COURBATIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08513535949, + 44.4813598633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1da8170eadd50ccaccaba7cfa5e45256bab3bb2", + "fields": { + "code_commune_insee": "12257", + "nom_de_la_commune": "CAUSSE ET DIEGE", + "code_postal": "12700", + "coordonnees_gps": [ + 44.5282954974, + 2.03482919718 + ], + "libelle_d_acheminement": "CAUSSE ET DIEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03482919718, + 44.5282954974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d68c887d688e834f738820c06f8b1569866a1830", + "fields": { + "code_commune_insee": "12262", + "nom_de_la_commune": "SAUVETERRE DE ROUERGUE", + "code_postal": "12800", + "coordonnees_gps": [ + 44.2478234048, + 2.31504773118 + ], + "libelle_d_acheminement": "SAUVETERRE DE ROUERGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31504773118, + 44.2478234048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5e1bc55d6b712665cafdfae673d6d8c742a62db", + "fields": { + "code_commune_insee": "12266", + "nom_de_la_commune": "SEGUR", + "code_postal": "12290", + "coordonnees_gps": [ + 44.2904669851, + 2.8437834647 + ], + "libelle_d_acheminement": "SEGUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8437834647, + 44.2904669851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43ff18589a9535a84a2b0736bd69b0c0e02c3635", + "fields": { + "code_commune_insee": "12268", + "nom_de_la_commune": "SENERGUES", + "code_postal": "12320", + "coordonnees_gps": [ + 44.6062228544, + 2.46311277374 + ], + "libelle_d_acheminement": "SENERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46311277374, + 44.6062228544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeaf9997967e6737f0eafbe52d9687ba43c9ad87", + "fields": { + "ligne_5": "RECOULES PREVINQUIERES", + "code_commune_insee": "12270", + "libelle_d_acheminement": "SEVERAC D AVEYRON", + "code_postal": "12150", + "nom_de_la_commune": "SEVERAC D AVEYRON", + "coordonnees_gps": [ + 44.3000638764, + 3.08915100601 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08915100601, + 44.3000638764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5120ffd430d6e86380b1791c40991cdf884d663", + "fields": { + "code_commune_insee": "12275", + "nom_de_la_commune": "TAURIAC DE CAMARES", + "code_postal": "12360", + "coordonnees_gps": [ + 43.7765492565, + 3.03077499172 + ], + "libelle_d_acheminement": "TAURIAC DE CAMARES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03077499172, + 43.7765492565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e51b89c32f5469d1e776dcf03dd11e56bb43f310", + "fields": { + "code_commune_insee": "12276", + "nom_de_la_commune": "TAURIAC DE NAUCELLE", + "code_postal": "12800", + "coordonnees_gps": [ + 44.1453272598, + 2.32325860909 + ], + "libelle_d_acheminement": "TAURIAC DE NAUCELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32325860909, + 44.1453272598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d6e64fee95a233abe689c679ed9b671c40c7e9a", + "fields": { + "code_commune_insee": "12281", + "nom_de_la_commune": "TOULONJAC", + "code_postal": "12200", + "coordonnees_gps": [ + 44.380429669, + 1.99865710824 + ], + "libelle_d_acheminement": "TOULONJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99865710824, + 44.380429669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dfabe970db93d59fd4338b61c6371e4ea854e0e", + "fields": { + "code_commune_insee": "12293", + "nom_de_la_commune": "VEYREAU", + "code_postal": "12720", + "coordonnees_gps": [ + 44.1818960497, + 3.30715443972 + ], + "libelle_d_acheminement": "VEYREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30715443972, + 44.1818960497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce6c178a99dfcafc9df54190a2d24bafbd1472d6", + "fields": { + "code_commune_insee": "12300", + "nom_de_la_commune": "VILLEFRANCHE DE ROUERGUE", + "code_postal": "12200", + "coordonnees_gps": [ + 44.3499160171, + 2.03103287572 + ], + "libelle_d_acheminement": "VILLEFRANCHE DE ROUERGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03103287572, + 44.3499160171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0ac744c830668603d76feedb95629b51c6ef68b", + "fields": { + "code_commune_insee": "12305", + "nom_de_la_commune": "VIVIEZ", + "code_postal": "12110", + "coordonnees_gps": [ + 44.5563780482, + 2.22049316685 + ], + "libelle_d_acheminement": "VIVIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22049316685, + 44.5563780482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "161f19e6de9ff8c19739f2cd3e04885dc7acb8e7", + "fields": { + "ligne_5": "LES MILLES", + "code_commune_insee": "13001", + "libelle_d_acheminement": "AIX EN PROVENCE", + "code_postal": "13290", + "nom_de_la_commune": "AIX EN PROVENCE", + "coordonnees_gps": [ + 43.5360708378, + 5.39857444582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39857444582, + 43.5360708378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5b1f5178544e0450e28f124ee60747e1100f3ba", + "fields": { + "ligne_5": "MAS THIBERT", + "code_commune_insee": "13004", + "libelle_d_acheminement": "ARLES", + "code_postal": "13104", + "nom_de_la_commune": "ARLES", + "coordonnees_gps": [ + 43.5468692378, + 4.66215642574 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66215642574, + 43.5468692378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18f3332715d5169be7a1d5401fcf619164e35f37", + "fields": { + "ligne_5": "L ALBARON", + "code_commune_insee": "13004", + "libelle_d_acheminement": "ARLES", + "code_postal": "13123", + "nom_de_la_commune": "ARLES", + "coordonnees_gps": [ + 43.5468692378, + 4.66215642574 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66215642574, + 43.5468692378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16b7d29b39e0a1b172447fecfe2d24702f7c377d", + "fields": { + "ligne_5": "SALIN DE GIRAUD", + "code_commune_insee": "13004", + "libelle_d_acheminement": "ARLES", + "code_postal": "13129", + "nom_de_la_commune": "ARLES", + "coordonnees_gps": [ + 43.5468692378, + 4.66215642574 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66215642574, + 43.5468692378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d612b60cdf4a2406c045175ba9a1b28e5d1e558d", + "fields": { + "code_commune_insee": "13004", + "nom_de_la_commune": "ARLES", + "code_postal": "13200", + "coordonnees_gps": [ + 43.5468692378, + 4.66215642574 + ], + "libelle_d_acheminement": "ARLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66215642574, + 43.5468692378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f924ead9528aa2a8b5ecfb1cb2af8eee870d8fb", + "fields": { + "ligne_5": "RAPHELE LES ARLES", + "code_commune_insee": "13004", + "libelle_d_acheminement": "ARLES", + "code_postal": "13280", + "nom_de_la_commune": "ARLES", + "coordonnees_gps": [ + 43.5468692378, + 4.66215642574 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66215642574, + 43.5468692378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cadc97a89dab73fe087e6e87c0c0a82dbee22ce0", + "fields": { + "code_commune_insee": "13006", + "nom_de_la_commune": "AUREILLE", + "code_postal": "13930", + "coordonnees_gps": [ + 43.7000726884, + 4.94496642243 + ], + "libelle_d_acheminement": "AUREILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94496642243, + 43.7000726884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61a692e9c90438f39fe3677e54d75289750ce920", + "fields": { + "code_commune_insee": "13012", + "nom_de_la_commune": "BEAURECUEIL", + "code_postal": "13100", + "coordonnees_gps": [ + 43.5220542383, + 5.545935902 + ], + "libelle_d_acheminement": "BEAURECUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.545935902, + 43.5220542383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aac825a45b287a3f68919fe9042e0a5c11d28173", + "fields": { + "code_commune_insee": "13017", + "nom_de_la_commune": "BOULBON", + "code_postal": "13150", + "coordonnees_gps": [ + 43.867766322, + 4.69754706735 + ], + "libelle_d_acheminement": "BOULBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69754706735, + 43.867766322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c86160fc44413fe8862d71b6987214a679cf1483", + "fields": { + "code_commune_insee": "13021", + "nom_de_la_commune": "CARRY LE ROUET", + "code_postal": "13620", + "coordonnees_gps": [ + 43.3427663021, + 5.15373765817 + ], + "libelle_d_acheminement": "CARRY LE ROUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15373765817, + 43.3427663021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d2622c75703027de49af0ad9fbbc72260d73d3f", + "fields": { + "code_commune_insee": "13026", + "nom_de_la_commune": "CHATEAUNEUF LES MARTIGUES", + "code_postal": "13220", + "coordonnees_gps": [ + 43.3865906403, + 5.14753822568 + ], + "libelle_d_acheminement": "CHATEAUNEUF LES MARTIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14753822568, + 43.3865906403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc73514cd47843df54b396c204b6eebf390bcf40", + "fields": { + "code_commune_insee": "13028", + "nom_de_la_commune": "LA CIOTAT", + "code_postal": "13600", + "coordonnees_gps": [ + 43.1926410861, + 5.61318955778 + ], + "libelle_d_acheminement": "LA CIOTAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61318955778, + 43.1926410861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cfaa5aff632a64f47e19095b278452bf65e0cf8", + "fields": { + "code_commune_insee": "13029", + "nom_de_la_commune": "CORNILLON CONFOUX", + "code_postal": "13250", + "coordonnees_gps": [ + 43.5783400746, + 5.07659575248 + ], + "libelle_d_acheminement": "CORNILLON CONFOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07659575248, + 43.5783400746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc9a4d5f6c0171ccddca5741f1a085c4b19ac73c", + "fields": { + "code_commune_insee": "13036", + "nom_de_la_commune": "EYRAGUES", + "code_postal": "13630", + "coordonnees_gps": [ + 43.84304663, + 4.84289529399 + ], + "libelle_d_acheminement": "EYRAGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84289529399, + 43.84304663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b96495b600445f665a38b4f5dca7ff2a0fc517c", + "fields": { + "ligne_5": "NOTRE DAME", + "code_commune_insee": "13041", + "libelle_d_acheminement": "GARDANNE", + "code_postal": "13120", + "nom_de_la_commune": "GARDANNE", + "coordonnees_gps": [ + 43.4526063249, + 5.47963860272 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47963860272, + 43.4526063249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8df5ef66a5f5a836e2c288896f2235716978b34", + "fields": { + "code_commune_insee": "13043", + "nom_de_la_commune": "GIGNAC LA NERTHE", + "code_postal": "13180", + "coordonnees_gps": [ + 43.3905074118, + 5.22834752895 + ], + "libelle_d_acheminement": "GIGNAC LA NERTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22834752895, + 43.3905074118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f68b4b84544ea19f9be80826c1695dae5f75f3b", + "fields": { + "code_commune_insee": "13045", + "nom_de_la_commune": "GRAVESON", + "code_postal": "13690", + "coordonnees_gps": [ + 43.8539111696, + 4.76717369182 + ], + "libelle_d_acheminement": "GRAVESON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76717369182, + 43.8539111696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bb1133f0ceefcdd4f1af2c106403c334b37a6c7", + "fields": { + "code_commune_insee": "13048", + "nom_de_la_commune": "JOUQUES", + "code_postal": "13490", + "coordonnees_gps": [ + 43.6334137827, + 5.65675796328 + ], + "libelle_d_acheminement": "JOUQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65675796328, + 43.6334137827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "401e668593938d03cb4d30be06f251028e7f9ba9", + "fields": { + "code_commune_insee": "13050", + "nom_de_la_commune": "LAMBESC", + "code_postal": "13410", + "coordonnees_gps": [ + 43.6615217681, + 5.25191446931 + ], + "libelle_d_acheminement": "LAMBESC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25191446931, + 43.6615217681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7ef2655fa5424a7026587f8ecc6443842f25b49", + "fields": { + "code_commune_insee": "13053", + "nom_de_la_commune": "MALLEMORT", + "code_postal": "13370", + "coordonnees_gps": [ + 43.7285832667, + 5.18297726548 + ], + "libelle_d_acheminement": "MALLEMORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18297726548, + 43.7285832667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4211a2e272d892c54d9cb89832ada88e31faeda", + "fields": { + "code_commune_insee": "13056", + "nom_de_la_commune": "MARTIGUES", + "code_postal": "13500", + "coordonnees_gps": [ + 43.3798920489, + 5.04945402314 + ], + "libelle_d_acheminement": "MARTIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04945402314, + 43.3798920489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c7ee616f29d5aa819db4eec47bd2eea232a270b", + "fields": { + "ligne_5": "CARRO", + "code_commune_insee": "13056", + "libelle_d_acheminement": "MARTIGUES", + "code_postal": "13500", + "nom_de_la_commune": "MARTIGUES", + "coordonnees_gps": [ + 43.3798920489, + 5.04945402314 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04945402314, + 43.3798920489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1913904a9f1cb46f67df8ebd013494d8be9f8795", + "fields": { + "code_commune_insee": "13057", + "nom_de_la_commune": "MAS BLANC DES ALPILLES", + "code_postal": "13103", + "coordonnees_gps": [ + 43.7878902175, + 4.76385153358 + ], + "libelle_d_acheminement": "MAS BLANC DES ALPILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76385153358, + 43.7878902175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d58979b7ee90940d9c971c89674018d7571da836", + "fields": { + "code_commune_insee": "13063", + "nom_de_la_commune": "MIRAMAS", + "code_postal": "13140", + "coordonnees_gps": [ + 43.5842134124, + 5.01384348574 + ], + "libelle_d_acheminement": "MIRAMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01384348574, + 43.5842134124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55b0e63424464401e4562680da31ec457bdc2b0e", + "fields": { + "code_commune_insee": "13069", + "nom_de_la_commune": "PELISSANNE", + "code_postal": "13330", + "coordonnees_gps": [ + 43.6308385635, + 5.15957327275 + ], + "libelle_d_acheminement": "PELISSANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15957327275, + 43.6308385635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c842ec363547ebe2e4fbcb4fcf70f605cfb09b9", + "fields": { + "code_commune_insee": "13074", + "nom_de_la_commune": "PEYROLLES EN PROVENCE", + "code_postal": "13860", + "coordonnees_gps": [ + 43.6284676935, + 5.57695734831 + ], + "libelle_d_acheminement": "PEYROLLES EN PROVENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57695734831, + 43.6284676935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2454e7b5410ba4d03da3b4200597a1153a6305e3", + "fields": { + "code_commune_insee": "13081", + "nom_de_la_commune": "ROGNAC", + "code_postal": "13340", + "coordonnees_gps": [ + 43.4971347324, + 5.23106220021 + ], + "libelle_d_acheminement": "ROGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23106220021, + 43.4971347324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "915be68fd1f8102fb76ee61c29a891e77c69a162", + "fields": { + "code_commune_insee": "13082", + "nom_de_la_commune": "ROGNES", + "code_postal": "13840", + "coordonnees_gps": [ + 43.6648781836, + 5.35218247017 + ], + "libelle_d_acheminement": "ROGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35218247017, + 43.6648781836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "679513ac4c6d521312b94408a9e91ab4bf1013fd", + "fields": { + "ligne_5": "PONT DE L ETOILE", + "code_commune_insee": "13086", + "libelle_d_acheminement": "ROQUEVAIRE", + "code_postal": "13360", + "nom_de_la_commune": "ROQUEVAIRE", + "coordonnees_gps": [ + 43.3437864693, + 5.59772643152 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59772643152, + 43.3437864693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11450ce0208bc3be0a9eb453d0c60ce9cdbcfacb", + "fields": { + "code_commune_insee": "13088", + "nom_de_la_commune": "LE ROVE", + "code_postal": "13740", + "coordonnees_gps": [ + 43.3653374562, + 5.25292240431 + ], + "libelle_d_acheminement": "LE ROVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25292240431, + 43.3653374562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd96b8b454370ea02f364f457a07aeabffa35823", + "fields": { + "code_commune_insee": "13096", + "nom_de_la_commune": "SAINTES MARIES DE LA MER", + "code_postal": "13460", + "coordonnees_gps": [ + 43.50398297, + 4.46396357194 + ], + "libelle_d_acheminement": "SAINTES MARIES DE LA MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46396357194, + 43.50398297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36b17a64fedfd8a9ff549283587a98897364963a", + "fields": { + "code_commune_insee": "13097", + "nom_de_la_commune": "ST MARTIN DE CRAU", + "code_postal": "13310", + "coordonnees_gps": [ + 43.6119214615, + 4.85701475567 + ], + "libelle_d_acheminement": "ST MARTIN DE CRAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85701475567, + 43.6119214615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01e792087a5a3dccb3c53ebff19ff04e6544d8b9", + "fields": { + "code_commune_insee": "13101", + "nom_de_la_commune": "ST SAVOURNIN", + "code_postal": "13119", + "coordonnees_gps": [ + 43.4057248147, + 5.53101491431 + ], + "libelle_d_acheminement": "ST SAVOURNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53101491431, + 43.4057248147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36de5740535fe700bd1b2de61e91a4f5ddafb26d", + "fields": { + "code_commune_insee": "13105", + "nom_de_la_commune": "SENAS", + "code_postal": "13560", + "coordonnees_gps": [ + 43.7446066018, + 5.08687884411 + ], + "libelle_d_acheminement": "SENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08687884411, + 43.7446066018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cffdbd5e0c9812a9a23b42eec08b8f0756ab2985", + "fields": { + "code_commune_insee": "13119", + "nom_de_la_commune": "CARNOUX EN PROVENCE", + "code_postal": "13470", + "coordonnees_gps": [ + 43.2584851646, + 5.56581431221 + ], + "libelle_d_acheminement": "CARNOUX EN PROVENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56581431221, + 43.2584851646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a387b4f84aa9bb882e622ac1fd9c6a62be7fba0a", + "fields": { + "code_commune_insee": "13206", + "nom_de_la_commune": "MARSEILLE 06", + "code_postal": "13006", + "coordonnees_gps": [ + 43.2870989546, + 5.38104785394 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38104785394, + 43.2870989546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8ef5edc842f0841b10847cef224329e3f4b04ca", + "fields": { + "ligne_5": "CALLELONGUE", + "code_commune_insee": "13208", + "libelle_d_acheminement": "MARSEILLE", + "code_postal": "13008", + "nom_de_la_commune": "MARSEILLE 08", + "coordonnees_gps": [ + 43.2417271832, + 5.37464436293 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37464436293, + 43.2417271832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db7e47be7633274013f149f53dd5c9fa1a4a3ff8", + "fields": { + "code_commune_insee": "13211", + "nom_de_la_commune": "MARSEILLE 11", + "code_postal": "13011", + "coordonnees_gps": [ + 43.2884471881, + 5.48381466229 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48381466229, + 43.2884471881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52bfda9b4ad1b14709f92947f1069a336ef6afad", + "fields": { + "ligne_5": "LES OLIVES", + "code_commune_insee": "13213", + "libelle_d_acheminement": "MARSEILLE", + "code_postal": "13013", + "nom_de_la_commune": "MARSEILLE 13", + "coordonnees_gps": [ + 43.3492780005, + 5.43372238738 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43372238738, + 43.3492780005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ca540fe1c905e302b7634ebac3ddfb38cc963fe", + "fields": { + "code_commune_insee": "13216", + "nom_de_la_commune": "MARSEILLE 16", + "code_postal": "13016", + "coordonnees_gps": [ + 43.3649054121, + 5.31337828595 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31337828595, + 43.3649054121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc6422a7555e91abf066b7704f32176c78e006df", + "fields": { + "ligne_5": "BRAY LA CAMPAGNE", + "code_commune_insee": "14005", + "libelle_d_acheminement": "VALAMBRAY", + "code_postal": "14190", + "nom_de_la_commune": "VALAMBRAY", + "coordonnees_gps": [ + 49.0953124219, + -0.145440484479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.145440484479, + 49.0953124219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79fa395d70e77cab3b24b869f386f46508dd715a", + "fields": { + "ligne_5": "BILLY", + "code_commune_insee": "14005", + "libelle_d_acheminement": "VALAMBRAY", + "code_postal": "14370", + "nom_de_la_commune": "VALAMBRAY", + "coordonnees_gps": [ + 49.0953124219, + -0.145440484479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.145440484479, + 49.0953124219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69d4fcdff227151917f55a07c0a272716c9540f7", + "fields": { + "ligne_5": "CONTEVILLE", + "code_commune_insee": "14005", + "libelle_d_acheminement": "VALAMBRAY", + "code_postal": "14540", + "nom_de_la_commune": "VALAMBRAY", + "coordonnees_gps": [ + 49.0953124219, + -0.145440484479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.145440484479, + 49.0953124219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd09db088f01740f126d3366cba1ef33fb5b39bc", + "fields": { + "ligne_5": "SERMENTOT", + "code_commune_insee": "14011", + "libelle_d_acheminement": "AURSEULLES", + "code_postal": "14240", + "nom_de_la_commune": "AURSEULLES", + "coordonnees_gps": [ + 49.1129887811, + -0.690829418472 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.690829418472, + 49.1129887811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba30d361adf3df68662aca1bbfebe8a329b777a8", + "fields": { + "ligne_5": "ST GERMAIN D ECTOT", + "code_commune_insee": "14011", + "libelle_d_acheminement": "AURSEULLES", + "code_postal": "14240", + "nom_de_la_commune": "AURSEULLES", + "coordonnees_gps": [ + 49.1129887811, + -0.690829418472 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.690829418472, + 49.1129887811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4940c23aea6dd74b1348bed9a84af5c599a18991", + "fields": { + "ligne_5": "TORTEVAL QUESNAY", + "code_commune_insee": "14011", + "libelle_d_acheminement": "AURSEULLES", + "code_postal": "14240", + "nom_de_la_commune": "AURSEULLES", + "coordonnees_gps": [ + 49.1129887811, + -0.690829418472 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.690829418472, + 49.1129887811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4b5e4bd0f677c808586a6fd59ee31eaba546326", + "fields": { + "ligne_5": "LONGRAYE", + "code_commune_insee": "14011", + "libelle_d_acheminement": "AURSEULLES", + "code_postal": "14250", + "nom_de_la_commune": "AURSEULLES", + "coordonnees_gps": [ + 49.1129887811, + -0.690829418472 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.690829418472, + 49.1129887811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93ae81f1d465e2ed1aca0d226e92104530c5fdb1", + "fields": { + "code_commune_insee": "14020", + "nom_de_la_commune": "ARGENCES", + "code_postal": "14370", + "coordonnees_gps": [ + 49.1339723471, + -0.158515066328 + ], + "libelle_d_acheminement": "ARGENCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.158515066328, + 49.1339723471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14ef17a6d7501e84606987d88e208c8da7bd5585", + "fields": { + "code_commune_insee": "14032", + "nom_de_la_commune": "LES AUTHIEUX SUR CALONNE", + "code_postal": "14130", + "coordonnees_gps": [ + 49.284118224, + 0.275543466655 + ], + "libelle_d_acheminement": "LES AUTHIEUX SUR CALONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.275543466655, + 49.284118224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3cd917e0af418a00908c5e92bc45ea42d440a72", + "fields": { + "ligne_5": "BANNEVILLE SUR AJON", + "code_commune_insee": "14037", + "libelle_d_acheminement": "MALHERBE SUR AJON", + "code_postal": "14260", + "nom_de_la_commune": "MALHERBE SUR AJON", + "coordonnees_gps": [ + 49.0615972046, + -0.567996392999 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.567996392999, + 49.0615972046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e0babab943d424edbefeb2575b9f4323d7c8b4b", + "fields": { + "ligne_5": "ST AGNAN LE MALHERBE", + "code_commune_insee": "14037", + "libelle_d_acheminement": "MALHERBE SUR AJON", + "code_postal": "14260", + "nom_de_la_commune": "MALHERBE SUR AJON", + "coordonnees_gps": [ + 49.0615972046, + -0.567996392999 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.567996392999, + 49.0615972046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "701c7a55bb13c4355eb09dfc8b0221b06173d50e", + "fields": { + "code_commune_insee": "14046", + "nom_de_la_commune": "BAVENT", + "code_postal": "14860", + "coordonnees_gps": [ + 49.2260268215, + -0.182663216453 + ], + "libelle_d_acheminement": "BAVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.182663216453, + 49.2260268215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65922290642d20de3635afbbe92c68002beb4de3", + "fields": { + "code_commune_insee": "14060", + "nom_de_la_commune": "BENOUVILLE", + "code_postal": "14970", + "coordonnees_gps": [ + 49.2437018681, + -0.287859699989 + ], + "libelle_d_acheminement": "BENOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.287859699989, + 49.2437018681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4273f11d866fd7c6527afddc0f3fa8394b50bee6", + "fields": { + "ligne_5": "MONTAMY", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14260", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e4869cc4a80e0848c6343d24349a366a3433c68", + "fields": { + "ligne_5": "LE BENY BOCAGE", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70d0959e6cabddb3de3dcceacf17f2922f7c8233", + "fields": { + "ligne_5": "ST MARTIN DON", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "693cd8049dd4dae091718e0b2e3c7eddd59eff25", + "fields": { + "code_commune_insee": "14063", + "nom_de_la_commune": "BERNESQ", + "code_postal": "14710", + "coordonnees_gps": [ + 49.2737716158, + -0.931449567611 + ], + "libelle_d_acheminement": "BERNESQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.931449567611, + 49.2737716158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ec9552a2e141b3b188a09c0f802e8bbbc63f802", + "fields": { + "code_commune_insee": "14064", + "nom_de_la_commune": "BERNIERES D AILLY", + "code_postal": "14170", + "coordonnees_gps": [ + 48.9474636631, + -0.102286178069 + ], + "libelle_d_acheminement": "BERNIERES D AILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.102286178069, + 48.9474636631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3db74285efd0ff6fcfff317a5ed18c0767ce3694", + "fields": { + "code_commune_insee": "14077", + "nom_de_la_commune": "BLANGY LE CHATEAU", + "code_postal": "14130", + "coordonnees_gps": [ + 49.246735105, + 0.283212958407 + ], + "libelle_d_acheminement": "BLANGY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.283212958407, + 49.246735105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "814ae591ab8ddfa41cac7ff351666cf4f6f7a8c3", + "fields": { + "code_commune_insee": "14079", + "nom_de_la_commune": "BLONVILLE SUR MER", + "code_postal": "14910", + "coordonnees_gps": [ + 49.322264685, + 0.0322391996049 + ], + "libelle_d_acheminement": "BLONVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0322391996049, + 49.322264685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8226ce741536e704905398f7298ffe43603ca1c", + "fields": { + "code_commune_insee": "14084", + "nom_de_la_commune": "BONNEMAISON", + "code_postal": "14260", + "coordonnees_gps": [ + 49.0036461584, + -0.58574099643 + ], + "libelle_d_acheminement": "BONNEMAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58574099643, + 49.0036461584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "408bfd918b3243f4d6b444ff7c645767404c0f17", + "fields": { + "code_commune_insee": "14087", + "nom_de_la_commune": "BONNOEIL", + "code_postal": "14700", + "coordonnees_gps": [ + 48.9225053811, + -0.36568142159 + ], + "libelle_d_acheminement": "BONNOEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36568142159, + 48.9225053811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bf57b900cc59a70419b671249b7b36296f03918", + "fields": { + "code_commune_insee": "14092", + "nom_de_la_commune": "BOURGUEBUS", + "code_postal": "14540", + "coordonnees_gps": [ + 49.1159775311, + -0.289489702409 + ], + "libelle_d_acheminement": "BOURGUEBUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.289489702409, + 49.1159775311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7009d5da551b2f6cc9be247abef49d5d9fcc719", + "fields": { + "code_commune_insee": "14117", + "nom_de_la_commune": "CABOURG", + "code_postal": "14390", + "coordonnees_gps": [ + 49.2834863414, + -0.125512945279 + ], + "libelle_d_acheminement": "CABOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.125512945279, + 49.2834863414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32bd518b80fb1b0f5dee9532ab665fe5724797af", + "fields": { + "code_commune_insee": "14118", + "nom_de_la_commune": "CAEN", + "code_postal": "14000", + "coordonnees_gps": [ + 49.1847936737, + -0.369801713036 + ], + "libelle_d_acheminement": "CAEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.369801713036, + 49.1847936737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5181e01ea64dc2d7294c5afcbe1007809ab98298", + "fields": { + "code_commune_insee": "14120", + "nom_de_la_commune": "CAHAGNES", + "code_postal": "14240", + "coordonnees_gps": [ + 49.0671203242, + -0.762793901462 + ], + "libelle_d_acheminement": "CAHAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.762793901462, + 49.0671203242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "617ec435b3ddc54ff6010f1800dde88fbee33d58", + "fields": { + "code_commune_insee": "14122", + "nom_de_la_commune": "LA CAINE", + "code_postal": "14210", + "coordonnees_gps": [ + 49.0352374243, + -0.515765831706 + ], + "libelle_d_acheminement": "LA CAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.515765831706, + 49.0352374243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6347e6444853d0e85399c48d36a46ddc68e56830", + "fields": { + "code_commune_insee": "14135", + "nom_de_la_commune": "CARCAGNY", + "code_postal": "14740", + "coordonnees_gps": [ + 49.2391999485, + -0.61396538716 + ], + "libelle_d_acheminement": "CARCAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61396538716, + 49.2391999485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b23ca9a573aa957e3ff952be82bb1c841c551b6e", + "fields": { + "ligne_5": "LIVRY", + "code_commune_insee": "14143", + "libelle_d_acheminement": "CAUMONT SUR AURE", + "code_postal": "14240", + "nom_de_la_commune": "CAUMONT SUR AURE", + "coordonnees_gps": [ + 49.0964311403, + -0.812430741234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.812430741234, + 49.0964311403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d2544875c55c5461f74fe5dbdc21235c9eeab38", + "fields": { + "code_commune_insee": "14147", + "nom_de_la_commune": "CERNAY", + "code_postal": "14290", + "coordonnees_gps": [ + 49.0163802116, + 0.323907540392 + ], + "libelle_d_acheminement": "CERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.323907540392, + 49.0163802116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c4a907b54e5469297030241e9f68ee03860ad11", + "fields": { + "ligne_5": "ANGOVILLE", + "code_commune_insee": "14150", + "libelle_d_acheminement": "CESNY LES SOURCES", + "code_postal": "14220", + "nom_de_la_commune": "CESNY LES SOURCES", + "coordonnees_gps": [ + 48.9853267914, + -0.394469235831 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.394469235831, + 48.9853267914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48616313377b1ce738d6d83b8276206c74e29186", + "fields": { + "ligne_5": "CESNY BOIS HALBOUT", + "code_commune_insee": "14150", + "libelle_d_acheminement": "CESNY LES SOURCES", + "code_postal": "14220", + "nom_de_la_commune": "CESNY LES SOURCES", + "coordonnees_gps": [ + 48.9853267914, + -0.394469235831 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.394469235831, + 48.9853267914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ef9777728e696db85fa0a679ffec2524ae433fe", + "fields": { + "code_commune_insee": "14161", + "nom_de_la_commune": "CLARBEC", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2411702401, + 0.134575376763 + ], + "libelle_d_acheminement": "CLARBEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.134575376763, + 49.2411702401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49c979dc83c2e3afe7b3ecfadbbe867ef50cabdc", + "fields": { + "ligne_5": "LA CHAPELLE ENGERBOLD", + "code_commune_insee": "14174", + "libelle_d_acheminement": "CONDE EN NORMANDIE", + "code_postal": "14770", + "nom_de_la_commune": "CONDE EN NORMANDIE", + "coordonnees_gps": [ + 48.8496985115, + -0.562504676497 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.562504676497, + 48.8496985115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f780898c8e06b3da2297a18819d22ceb5a60c85f", + "fields": { + "code_commune_insee": "14183", + "nom_de_la_commune": "COSSESSEVILLE", + "code_postal": "14690", + "coordonnees_gps": [ + 48.8946326135, + -0.425187172224 + ], + "libelle_d_acheminement": "COSSESSEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.425187172224, + 48.8946326135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dbc3a73abeaee75f4ab7d7d8c1d06f5c65ba3f7", + "fields": { + "code_commune_insee": "14198", + "nom_de_la_commune": "CRESSEVEUILLE", + "code_postal": "14430", + "coordonnees_gps": [ + 49.2387417598, + 0.0117533890211 + ], + "libelle_d_acheminement": "CRESSEVEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0117533890211, + 49.2387417598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48c7b472bd295c306828aa91cf0e96bce69b03c6", + "fields": { + "ligne_5": "CREULLY", + "code_commune_insee": "14200", + "libelle_d_acheminement": "CREULLY SUR SEULLES", + "code_postal": "14480", + "nom_de_la_commune": "CREULLY SUR SEULLES", + "coordonnees_gps": [ + 49.2864524812, + -0.543327621635 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.543327621635, + 49.2864524812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd464ba8ad9b6d62763127c7db27b47ed5707304", + "fields": { + "code_commune_insee": "14202", + "nom_de_la_commune": "CRICQUEBOEUF", + "code_postal": "14113", + "coordonnees_gps": [ + 49.3965340563, + 0.139094735146 + ], + "libelle_d_acheminement": "CRICQUEBOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.139094735146, + 49.3965340563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87d90287777b49df2dac1756570b13e5e16e295d", + "fields": { + "code_commune_insee": "14203", + "nom_de_la_commune": "CRICQUEVILLE EN AUGE", + "code_postal": "14430", + "coordonnees_gps": [ + 49.2371263261, + -0.0732802659784 + ], + "libelle_d_acheminement": "CRICQUEVILLE EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0732802659784, + 49.2371263261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2308fb55298184fef9ef0a9f14b7fab47d4d1f4", + "fields": { + "code_commune_insee": "14204", + "nom_de_la_commune": "CRICQUEVILLE EN BESSIN", + "code_postal": "14450", + "coordonnees_gps": [ + 49.3793344286, + -1.00061282058 + ], + "libelle_d_acheminement": "CRICQUEVILLE EN BESSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00061282058, + 49.3793344286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f929d041478e13bf33556f8833185b7759fd360", + "fields": { + "code_commune_insee": "14205", + "nom_de_la_commune": "CRISTOT", + "code_postal": "14250", + "coordonnees_gps": [ + 49.1941809977, + -0.570855686258 + ], + "libelle_d_acheminement": "CRISTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.570855686258, + 49.1941809977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e4680b69f2fc12a6b18746f7cd98910c8fab346", + "fields": { + "code_commune_insee": "14207", + "nom_de_la_commune": "CROISILLES", + "code_postal": "14220", + "coordonnees_gps": [ + 49.0034155904, + -0.452080807326 + ], + "libelle_d_acheminement": "CROISILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.452080807326, + 49.0034155904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61aefd684298bb7bcd7cfd5a00556532020210cd", + "fields": { + "code_commune_insee": "14216", + "nom_de_la_commune": "DAMBLAINVILLE", + "code_postal": "14620", + "coordonnees_gps": [ + 48.9219313717, + -0.126876878581 + ], + "libelle_d_acheminement": "DAMBLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.126876878581, + 48.9219313717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81191b7c1b09ed8a3b358daaae5db328bd1b9e0e", + "fields": { + "code_commune_insee": "14218", + "nom_de_la_commune": "DANESTAL", + "code_postal": "14430", + "coordonnees_gps": [ + 49.2435804635, + 0.0329636078608 + ], + "libelle_d_acheminement": "DANESTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0329636078608, + 49.2435804635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10a3ed591716af084e79f8d8b4bd1b3976c69a34", + "fields": { + "code_commune_insee": "14223", + "nom_de_la_commune": "LE DETROIT", + "code_postal": "14690", + "coordonnees_gps": [ + 48.8738596732, + -0.345051519298 + ], + "libelle_d_acheminement": "LE DETROIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.345051519298, + 48.8738596732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c970a1db33f4b12fb82a557d8c4933e251ac307c", + "fields": { + "code_commune_insee": "14232", + "nom_de_la_commune": "DUCY STE MARGUERITE", + "code_postal": "14250", + "coordonnees_gps": [ + 49.2258240786, + -0.611130880075 + ], + "libelle_d_acheminement": "DUCY STE MARGUERITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.611130880075, + 49.2258240786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76eda064e5798ed6cb340cb3883548af956cf600", + "fields": { + "code_commune_insee": "14239", + "nom_de_la_commune": "ENGLESQUEVILLE LA PERCEE", + "code_postal": "14710", + "coordonnees_gps": [ + 49.3794043122, + -0.951377407959 + ], + "libelle_d_acheminement": "ENGLESQUEVILLE LA PERCEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.951377407959, + 49.3794043122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d762ded51e4b3b4cdf196de68119485fe11f44d4", + "fields": { + "code_commune_insee": "14240", + "nom_de_la_commune": "EPANEY", + "code_postal": "14170", + "coordonnees_gps": [ + 48.9454875275, + -0.159422504691 + ], + "libelle_d_acheminement": "EPANEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.159422504691, + 48.9454875275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e11d1fc4605be786d6c7a477cf548a5c782397f5", + "fields": { + "code_commune_insee": "14242", + "nom_de_la_commune": "EPRON", + "code_postal": "14610", + "coordonnees_gps": [ + 49.2200299835, + -0.364587830546 + ], + "libelle_d_acheminement": "EPRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.364587830546, + 49.2200299835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a6ab581d44d203c0730d6e72e057ac14028f76c", + "fields": { + "code_commune_insee": "14252", + "nom_de_la_commune": "ESTREES LA CAMPAGNE", + "code_postal": "14190", + "coordonnees_gps": [ + 49.0079918917, + -0.243058159151 + ], + "libelle_d_acheminement": "ESTREES LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.243058159151, + 49.0079918917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f155263e27a101be5d650304473f05464469b4f", + "fields": { + "code_commune_insee": "14256", + "nom_de_la_commune": "ETREHAM", + "code_postal": "14400", + "coordonnees_gps": [ + 49.3208069288, + -0.793272480023 + ], + "libelle_d_acheminement": "ETREHAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.793272480023, + 49.3208069288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49f9eafdc47bc6cf323574696d65ff069a17b06b", + "fields": { + "code_commune_insee": "14269", + "nom_de_la_commune": "FIERVILLE LES PARCS", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2438838452, + 0.230712490551 + ], + "libelle_d_acheminement": "FIERVILLE LES PARCS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.230712490551, + 49.2438838452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7008934d6851427c8e9ce09e2ffb5aec8565a4c", + "fields": { + "code_commune_insee": "14280", + "nom_de_la_commune": "FORMENTIN", + "code_postal": "14340", + "coordonnees_gps": [ + 49.2030787417, + 0.135813686591 + ], + "libelle_d_acheminement": "FORMENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.135813686591, + 49.2030787417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64ac795f132ec3a25272702b28bb54f5fc482277", + "fields": { + "code_commune_insee": "14283", + "nom_de_la_commune": "FOURCHES", + "code_postal": "14620", + "coordonnees_gps": [ + 48.8585273495, + -0.0742432451781 + ], + "libelle_d_acheminement": "FOURCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0742432451781, + 48.8585273495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0d78987db2f1d73e32a0ddf7b79c4227001f22a", + "fields": { + "code_commune_insee": "14287", + "nom_de_la_commune": "FRENOUVILLE", + "code_postal": "14630", + "coordonnees_gps": [ + 49.132745489, + -0.249029686831 + ], + "libelle_d_acheminement": "FRENOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.249029686831, + 49.132745489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d84656f61ad79e8cfe1e2e9b44b3e3a9344ae09e", + "fields": { + "code_commune_insee": "14297", + "nom_de_la_commune": "GAVRUS", + "code_postal": "14210", + "coordonnees_gps": [ + 49.1167295393, + -0.507962422295 + ], + "libelle_d_acheminement": "GAVRUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.507962422295, + 49.1167295393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "074d6d24e6388075ebd6a1c36b43c4a5f727ef5b", + "fields": { + "code_commune_insee": "14298", + "nom_de_la_commune": "GEFOSSE FONTENAY", + "code_postal": "14230", + "coordonnees_gps": [ + 49.3614124958, + -1.0850580278 + ], + "libelle_d_acheminement": "GEFOSSE FONTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0850580278, + 49.3614124958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a7d9e550566c92d4340709ef7857c5762d3aad2", + "fields": { + "code_commune_insee": "14300", + "nom_de_la_commune": "GERROTS", + "code_postal": "14430", + "coordonnees_gps": [ + 49.1935491536, + 0.00245764968859 + ], + "libelle_d_acheminement": "GERROTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00245764968859, + 49.1935491536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "190c6f790a65ec11931e381cc7c87e02d04f67e7", + "fields": { + "code_commune_insee": "14301", + "nom_de_la_commune": "GIBERVILLE", + "code_postal": "14730", + "coordonnees_gps": [ + 49.1781576948, + -0.285160708636 + ], + "libelle_d_acheminement": "GIBERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.285160708636, + 49.1781576948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f24f877c323e191f84597cbdf8509a278184f8c0", + "fields": { + "code_commune_insee": "14303", + "nom_de_la_commune": "GLOS", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1247880255, + 0.28133061061 + ], + "libelle_d_acheminement": "GLOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28133061061, + 49.1247880255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c36a6ba5d3532ac1c9ebef355e8e6afad4a9c71", + "fields": { + "code_commune_insee": "14306", + "nom_de_la_commune": "GONNEVILLE EN AUGE", + "code_postal": "14810", + "coordonnees_gps": [ + 49.2592446922, + -0.188358824575 + ], + "libelle_d_acheminement": "GONNEVILLE EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.188358824575, + 49.2592446922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09867ad5cff27c7eb03b9f83841e3325ddf2501e", + "fields": { + "code_commune_insee": "14309", + "nom_de_la_commune": "GOUVIX", + "code_postal": "14680", + "coordonnees_gps": [ + 49.0365523786, + -0.308971879429 + ], + "libelle_d_acheminement": "GOUVIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.308971879429, + 49.0365523786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bc7e44e5de4a2c0029a209665ac04e63e258d1f", + "fields": { + "code_commune_insee": "14319", + "nom_de_la_commune": "GRENTHEVILLE", + "code_postal": "14540", + "coordonnees_gps": [ + 49.1460180153, + -0.293578977625 + ], + "libelle_d_acheminement": "GRENTHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.293578977625, + 49.1460180153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f138ea81f482bb4b8245f6da2549c86ab441b696", + "fields": { + "code_commune_insee": "14322", + "nom_de_la_commune": "GUERON", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2476651518, + -0.709843889765 + ], + "libelle_d_acheminement": "GUERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.709843889765, + 49.2476651518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "583a0f83bced3dacba248fb349f285e83740c37d", + "fields": { + "code_commune_insee": "14326", + "nom_de_la_commune": "HERMIVAL LES VAUX", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1662017057, + 0.291278344411 + ], + "libelle_d_acheminement": "HERMIVAL LES VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.291278344411, + 49.1662017057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a33e8f0cd085f0bd9979522714c0b5c45452a1f2", + "fields": { + "code_commune_insee": "14333", + "nom_de_la_commune": "HONFLEUR", + "code_postal": "14600", + "coordonnees_gps": [ + 49.4129449727, + 0.237579361279 + ], + "libelle_d_acheminement": "HONFLEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.237579361279, + 49.4129449727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f25b29a59e26b568a3ed19fd308fff240dc455d2", + "fields": { + "ligne_5": "LE HAM", + "code_commune_insee": "14335", + "libelle_d_acheminement": "HOTOT EN AUGE", + "code_postal": "14430", + "nom_de_la_commune": "HOTOT EN AUGE", + "coordonnees_gps": [ + 49.1774252803, + -0.076370337762 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.076370337762, + 49.1774252803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f30eb89c93712a2801795a5ed2df2d4d8efdd0c", + "fields": { + "code_commune_insee": "14338", + "nom_de_la_commune": "HOULGATE", + "code_postal": "14510", + "coordonnees_gps": [ + 49.2974071263, + -0.0677562139709 + ], + "libelle_d_acheminement": "HOULGATE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0677562139709, + 49.2974071263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93a51a3a5cb54f71ffb8b409dac8ccf8d9d4d547", + "fields": { + "code_commune_insee": "14341", + "nom_de_la_commune": "IFS", + "code_postal": "14123", + "coordonnees_gps": [ + 49.1405779091, + -0.342694064356 + ], + "libelle_d_acheminement": "IFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.342694064356, + 49.1405779091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab9c51644f6b6b9d414d30ae4cd8ebfebed8ce99", + "fields": { + "code_commune_insee": "14345", + "nom_de_la_commune": "JORT", + "code_postal": "14170", + "coordonnees_gps": [ + 48.9733366542, + -0.0728894346449 + ], + "libelle_d_acheminement": "JORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0728894346449, + 48.9733366542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f181c705e8aa34aeac95078aff3e014e3290f918", + "fields": { + "code_commune_insee": "14346", + "nom_de_la_commune": "JUAYE MONDAYE", + "code_postal": "14250", + "coordonnees_gps": [ + 49.2049289957, + -0.690556905355 + ], + "libelle_d_acheminement": "JUAYE MONDAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.690556905355, + 49.2049289957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a4b5f8380e4794858b899145f4f8143d27088c5", + "fields": { + "ligne_5": "JURQUES", + "code_commune_insee": "14347", + "libelle_d_acheminement": "DIALAN SUR CHAINE", + "code_postal": "14260", + "nom_de_la_commune": "DIALAN SUR CHAINE", + "coordonnees_gps": [ + 49.0211940681, + -0.745768584372 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.745768584372, + 49.0211940681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19a2757d980049c328bdb0fa6e3512e3e2757b7b", + "fields": { + "code_commune_insee": "14353", + "nom_de_la_commune": "LANDES SUR AJON", + "code_postal": "14310", + "coordonnees_gps": [ + 49.0764930266, + -0.572022073855 + ], + "libelle_d_acheminement": "LANDES SUR AJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.572022073855, + 49.0764930266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6adf0e8fcc19df097bb77e2c2afb40a7d69ac30", + "fields": { + "ligne_5": "LANTHEUIL", + "code_commune_insee": "14355", + "libelle_d_acheminement": "PONTS SUR SEULLES", + "code_postal": "14480", + "nom_de_la_commune": "PONTS SUR SEULLES", + "coordonnees_gps": [ + 49.2671813698, + -0.516107321362 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.516107321362, + 49.2671813698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3620e7533b62beb187124d2c9498b37cd3c9f2ed", + "fields": { + "code_commune_insee": "14364", + "nom_de_la_commune": "LINGEVRES", + "code_postal": "14250", + "coordonnees_gps": [ + 49.1732681991, + -0.674509816697 + ], + "libelle_d_acheminement": "LINGEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.674509816697, + 49.1732681991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae6a1729f3c1b018d30239a0a54d98cf0e822b91", + "fields": { + "code_commune_insee": "14370", + "nom_de_la_commune": "LE MOLAY LITTRY", + "code_postal": "14330", + "coordonnees_gps": [ + 49.2344021109, + -0.889241335163 + ], + "libelle_d_acheminement": "LE MOLAY LITTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889241335163, + 49.2344021109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f494c4adf68593edf1708364cb8acd85fe35d91", + "fields": { + "ligne_5": "LE MESNIL BACLEY", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74ebbd72b794c5c062c843c37c2ecda861efe838", + "fields": { + "ligne_5": "LES AUTELS ST BAZILE", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "481e14f417edde1a5f165091d0364c364c95cedc", + "fields": { + "ligne_5": "NOTRE DAME DE COURSON", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d47d15b3c378cc6da2a856b79303a7fc12642cf0", + "fields": { + "ligne_5": "ST MARTIN DU MESNIL OURY", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd5b8946c5e4b3a26de00685d3cb9a54715a5b1e", + "fields": { + "ligne_5": "ST OUEN LE HOUX", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "169bb7e7ba4981c32eb4180c587fc9832cc929b4", + "fields": { + "ligne_5": "MEULLES", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14290", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82a233de9a7959e099874de8ee27eada64362d91", + "fields": { + "code_commune_insee": "14383", + "nom_de_la_commune": "LOUVIGNY", + "code_postal": "14111", + "coordonnees_gps": [ + 49.1552771224, + -0.396704924192 + ], + "libelle_d_acheminement": "LOUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.396704924192, + 49.1552771224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "419b8a729892dbd26bf630cf3fba44a8760729f7", + "fields": { + "code_commune_insee": "14384", + "nom_de_la_commune": "LUC SUR MER", + "code_postal": "14530", + "coordonnees_gps": [ + 49.3085348418, + -0.357463109618 + ], + "libelle_d_acheminement": "LUC SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.357463109618, + 49.3085348418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "766cb6c7af32ed0dd5d31495b992d978f7cab2d5", + "fields": { + "code_commune_insee": "14385", + "nom_de_la_commune": "MAGNY EN BESSIN", + "code_postal": "14400", + "coordonnees_gps": [ + 49.311643762, + -0.666479750788 + ], + "libelle_d_acheminement": "MAGNY EN BESSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.666479750788, + 49.311643762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e29be8786cf3a7881d37645c458584696b65f6db", + "fields": { + "code_commune_insee": "14389", + "nom_de_la_commune": "MAISONCELLES PELVEY", + "code_postal": "14310", + "coordonnees_gps": [ + 49.059284458, + -0.672639126991 + ], + "libelle_d_acheminement": "MAISONCELLES PELVEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.672639126991, + 49.059284458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32485d99e9ce8da2212ad0d4059302b3faa500bc", + "fields": { + "code_commune_insee": "14390", + "nom_de_la_commune": "MAISONCELLES SUR AJON", + "code_postal": "14210", + "coordonnees_gps": [ + 49.0595594153, + -0.539963670501 + ], + "libelle_d_acheminement": "MAISONCELLES SUR AJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.539963670501, + 49.0595594153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fe3732cced89dbe5553a9924f5abd6a5246a342", + "fields": { + "code_commune_insee": "14391", + "nom_de_la_commune": "MAISONS", + "code_postal": "14400", + "coordonnees_gps": [ + 49.3161871346, + -0.752920161833 + ], + "libelle_d_acheminement": "MAISONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.752920161833, + 49.3161871346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a1d885d32cb9fe767dec02266f4a63fec341421", + "fields": { + "code_commune_insee": "14393", + "nom_de_la_commune": "MAIZET", + "code_postal": "14210", + "coordonnees_gps": [ + 49.0754358384, + -0.454171502367 + ], + "libelle_d_acheminement": "MAIZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.454171502367, + 49.0754358384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c363a0830f020084cdeb82d1220094d307f0d949", + "fields": { + "ligne_5": "CULLY", + "code_commune_insee": "14406", + "libelle_d_acheminement": "MOULINS EN BESSIN", + "code_postal": "14480", + "nom_de_la_commune": "MOULINS EN BESSIN", + "coordonnees_gps": [ + 49.2486390509, + -0.60137367329 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60137367329, + 49.2486390509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "334d33c28e9c5c9d21d47a823a5c8d83e6484bfb", + "fields": { + "code_commune_insee": "14409", + "nom_de_la_commune": "MERVILLE FRANCEVILLE PLAGE", + "code_postal": "14810", + "coordonnees_gps": [ + 49.2723390059, + -0.201985643028 + ], + "libelle_d_acheminement": "MERVILLE FRANCEVILLE PLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.201985643028, + 49.2723390059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "773700b2c7fe02a4a91be94bd9d6cf252142d85b", + "fields": { + "code_commune_insee": "14419", + "nom_de_la_commune": "LE MESNIL EUDES", + "code_postal": "14100", + "coordonnees_gps": [ + 49.0931243426, + 0.174720146197 + ], + "libelle_d_acheminement": "LE MESNIL EUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.174720146197, + 49.0931243426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f79e409f68ebb227cc2fc8f3142806c93c8e190d", + "fields": { + "ligne_5": "COUPESARTE", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3781127be394a0129f95b60c75998b60f6e57b39", + "fields": { + "ligne_5": "LES AUTHIEUX PAPION", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e819d8f06679965aff8f5ed3a6bb93a0e28bf11", + "fields": { + "ligne_5": "MAGNY LE FREULE", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14270", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8d6a3fb6e1baad746aa7ce953a9bfeca12d3641", + "fields": { + "ligne_5": "MONTEILLE", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14270", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99887f5411597bdecf9e96de3d50330002f884c7", + "fields": { + "code_commune_insee": "14435", + "nom_de_la_commune": "LES MONCEAUX", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1107163291, + 0.130234447551 + ], + "libelle_d_acheminement": "LES MONCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.130234447551, + 49.1107163291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c87759f0c57e1e1422bc718f39be49056b6fbdd", + "fields": { + "code_commune_insee": "14439", + "nom_de_la_commune": "MONFREVILLE", + "code_postal": "14230", + "coordonnees_gps": [ + 49.3120766958, + -1.03506679582 + ], + "libelle_d_acheminement": "MONFREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03506679582, + 49.3120766958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f3108118d38398ef9856d1a20be017a228ade00", + "fields": { + "code_commune_insee": "14448", + "nom_de_la_commune": "MONTREUIL EN AUGE", + "code_postal": "14340", + "coordonnees_gps": [ + 49.1674447526, + 0.0706436457965 + ], + "libelle_d_acheminement": "MONTREUIL EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0706436457965, + 49.1674447526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5ebd9751b2f61dbd4841770d30f63e3bf543b38", + "fields": { + "code_commune_insee": "14449", + "nom_de_la_commune": "MONTS EN BESSIN", + "code_postal": "14310", + "coordonnees_gps": [ + 49.121907033, + -0.611431669802 + ], + "libelle_d_acheminement": "MONTS EN BESSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.611431669802, + 49.121907033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "969e7f08f3b21d515b60e39df4c1921f2a58e525", + "fields": { + "code_commune_insee": "14466", + "nom_de_la_commune": "NOROLLES", + "code_postal": "14100", + "coordonnees_gps": [ + 49.2032408439, + 0.236528733512 + ], + "libelle_d_acheminement": "NOROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236528733512, + 49.2032408439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5014b35614e094016b83accd3815f125e4ed4648", + "fields": { + "ligne_5": "NOYERS BOCAGE", + "code_commune_insee": "14475", + "libelle_d_acheminement": "VAL D ARRY", + "code_postal": "14210", + "nom_de_la_commune": "VAL D ARRY", + "coordonnees_gps": [ + 49.1241683725, + -0.575352839603 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.575352839603, + 49.1241683725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16c2196c349473aa8ebd3e66c69c9894c47a2623", + "fields": { + "code_commune_insee": "14478", + "nom_de_la_commune": "ORBEC", + "code_postal": "14290", + "coordonnees_gps": [ + 49.0236641773, + 0.384953822179 + ], + "libelle_d_acheminement": "ORBEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.384953822179, + 49.0236641773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3720718aae16bf2860138a37d71c9a1c790c5acd", + "fields": { + "code_commune_insee": "14484", + "nom_de_la_commune": "OUILLY DU HOULEY", + "code_postal": "14590", + "coordonnees_gps": [ + 49.1654776443, + 0.340440661375 + ], + "libelle_d_acheminement": "OUILLY DU HOULEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.340440661375, + 49.1654776443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3ed37dc72fe06eb1780d837fe0c9232abc5615d", + "fields": { + "code_commune_insee": "14488", + "nom_de_la_commune": "OUISTREHAM", + "code_postal": "14150", + "coordonnees_gps": [ + 49.2745280107, + -0.257718317859 + ], + "libelle_d_acheminement": "OUISTREHAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.257718317859, + 49.2745280107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bba6936e07d1d98c16368f10027c32602457abe8", + "fields": { + "code_commune_insee": "14499", + "nom_de_la_commune": "PETIVILLE", + "code_postal": "14390", + "coordonnees_gps": [ + 49.242349527, + -0.168464037407 + ], + "libelle_d_acheminement": "PETIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.168464037407, + 49.242349527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "344ba33f6639b724a9a62c7ba48a8a63c04cf193", + "fields": { + "code_commune_insee": "14500", + "nom_de_la_commune": "PIERREFITTE EN AUGE", + "code_postal": "14130", + "coordonnees_gps": [ + 49.254911944, + 0.200274296558 + ], + "libelle_d_acheminement": "PIERREFITTE EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.200274296558, + 49.254911944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf1afdbb41a87c8eb08ad0b5e8fefe0f582c60fd", + "fields": { + "code_commune_insee": "14504", + "nom_de_la_commune": "LE PIN", + "code_postal": "14590", + "coordonnees_gps": [ + 49.2139284087, + 0.335606713114 + ], + "libelle_d_acheminement": "LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.335606713114, + 49.2139284087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52a404c1b513b0930bc582a9bcbbadc0be09990f", + "fields": { + "code_commune_insee": "14509", + "nom_de_la_commune": "PLUMETOT", + "code_postal": "14440", + "coordonnees_gps": [ + 49.2775537071, + -0.361463362906 + ], + "libelle_d_acheminement": "PLUMETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.361463362906, + 49.2775537071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1c6d6a65a0ee0a858f150c2c563ef89054c0629", + "fields": { + "code_commune_insee": "14520", + "nom_de_la_commune": "LE PRE D AUGE", + "code_postal": "14340", + "coordonnees_gps": [ + 49.1496506404, + 0.145754077347 + ], + "libelle_d_acheminement": "LE PRE D AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.145754077347, + 49.1496506404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98163cf62c002aee42af03e3b6ab86dc2c82e3cd", + "fields": { + "ligne_5": "BIEVILLE QUETIEVILLE", + "code_commune_insee": "14527", + "libelle_d_acheminement": "BELLE VIE EN AUGE", + "code_postal": "14270", + "nom_de_la_commune": "BELLE VIE EN AUGE", + "coordonnees_gps": [ + 49.116121463, + -0.0357079622156 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0357079622156, + 49.116121463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac6d6d2e6f46efc3982864a799d136cbaf57ec63", + "fields": { + "ligne_5": "ROCQUANCOURT", + "code_commune_insee": "14538", + "libelle_d_acheminement": "CASTINE EN PLAINE", + "code_postal": "14540", + "nom_de_la_commune": "CASTINE EN PLAINE", + "coordonnees_gps": [ + 49.0957571442, + -0.317250308981 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.317250308981, + 49.0957571442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da21f24ec694d0e35f4024ea1d326a9d4514ff80", + "fields": { + "ligne_5": "TILLY LA CAMPAGNE", + "code_commune_insee": "14538", + "libelle_d_acheminement": "CASTINE EN PLAINE", + "code_postal": "14540", + "nom_de_la_commune": "CASTINE EN PLAINE", + "coordonnees_gps": [ + 49.0957571442, + -0.317250308981 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.317250308981, + 49.0957571442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fd7a15dfe365e8c65b4d9ca10536f902cbba9eb", + "fields": { + "code_commune_insee": "14540", + "nom_de_la_commune": "ROCQUES", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1686946525, + 0.249417574053 + ], + "libelle_d_acheminement": "ROCQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.249417574053, + 49.1686946525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49d24882174426c0b966ff45be94d8b3051179c7", + "fields": { + "code_commune_insee": "14550", + "nom_de_la_commune": "RUMESNIL", + "code_postal": "14340", + "coordonnees_gps": [ + 49.1862090569, + 0.0220779097884 + ], + "libelle_d_acheminement": "RUMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0220779097884, + 49.1862090569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69ab942ee876a84110ca586a49fe1bb73c34b657", + "fields": { + "ligne_5": "ST AIGNAN DE CRAMESNIL", + "code_commune_insee": "14554", + "libelle_d_acheminement": "LE CASTELET", + "code_postal": "14540", + "nom_de_la_commune": "LE CASTELET", + "coordonnees_gps": [ + 49.0816169321, + -0.286022666698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.286022666698, + 49.0816169321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efab4badc70d3f9c00d53bba30af89e61cfe5b6a", + "fields": { + "code_commune_insee": "14555", + "nom_de_la_commune": "ST ANDRE D HEBERTOT", + "code_postal": "14130", + "coordonnees_gps": [ + 49.3032209038, + 0.291910061832 + ], + "libelle_d_acheminement": "ST ANDRE D HEBERTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.291910061832, + 49.3032209038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1985658f66157f72e7b8fb4ea350b4c1afee1165", + "fields": { + "code_commune_insee": "14562", + "nom_de_la_commune": "ST AUBIN SUR MER", + "code_postal": "14750", + "coordonnees_gps": [ + 49.3224328819, + -0.39282763592 + ], + "libelle_d_acheminement": "ST AUBIN SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39282763592, + 49.3224328819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2e38cc54e2fdbf9b8b3d85dba370b729e55698f", + "fields": { + "code_commune_insee": "14569", + "nom_de_la_commune": "STE CROIX SUR MER", + "code_postal": "14480", + "coordonnees_gps": [ + 49.316012626, + -0.510000536108 + ], + "libelle_d_acheminement": "STE CROIX SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.510000536108, + 49.316012626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72c17d8a8a14806ec5bf17be0ad7db15929080e4", + "fields": { + "ligne_5": "TORDOUET", + "code_commune_insee": "14570", + "libelle_d_acheminement": "VALORBIQUET", + "code_postal": "14290", + "nom_de_la_commune": "VALORBIQUET", + "coordonnees_gps": [ + 49.0508380133, + 0.301847275517 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301847275517, + 49.0508380133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b539139dd03ad6d424f0ea0895704c7d5ac9308", + "fields": { + "ligne_5": "ST GERMAIN DE MONTGOMMERY", + "code_commune_insee": "14576", + "libelle_d_acheminement": "VAL DE VIE", + "code_postal": "14140", + "nom_de_la_commune": "VAL DE VIE", + "coordonnees_gps": [ + 48.9587088015, + 0.163639221018 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.163639221018, + 48.9587088015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8fe02de7f2d7c46eff979a37614c37613ab700c", + "fields": { + "ligne_5": "ST GEORGES D AUNAY", + "code_commune_insee": "14579", + "libelle_d_acheminement": "SEULLINE", + "code_postal": "14260", + "nom_de_la_commune": "SEULLINE", + "coordonnees_gps": [ + 49.0267772033, + -0.688629006888 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.688629006888, + 49.0267772033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93883d7982e3bc80b6e9db4cb2f0c3fe96b2d2ee", + "fields": { + "code_commune_insee": "14587", + "nom_de_la_commune": "ST GERMAIN LA BLANCHE HERBE", + "code_postal": "14280", + "coordonnees_gps": [ + 49.195598359, + -0.421595824393 + ], + "libelle_d_acheminement": "ST GERMAIN LA BLANCHE HERBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.421595824393, + 49.195598359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d0d7f45699b3af825e4a81748ee36001216c73a", + "fields": { + "ligne_5": "RUSSY", + "code_commune_insee": "14591", + "libelle_d_acheminement": "AURE SUR MER", + "code_postal": "14710", + "nom_de_la_commune": "AURE SUR MER", + "coordonnees_gps": [ + 49.346789785, + -0.810432609525 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.810432609525, + 49.346789785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2649b708c274ff99ead4ed7a8b706821908615a7", + "fields": { + "code_commune_insee": "14602", + "nom_de_la_commune": "ST LAMBERT", + "code_postal": "14570", + "coordonnees_gps": [ + 48.9353175641, + -0.537993649074 + ], + "libelle_d_acheminement": "ST LAMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.537993649074, + 48.9353175641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c6d8bc309c7f06debccdfe029a416225723e3a1", + "fields": { + "code_commune_insee": "14607", + "nom_de_la_commune": "ST LOUET SUR SEULLES", + "code_postal": "14310", + "coordonnees_gps": [ + 49.0957495313, + -0.67799363475 + ], + "libelle_d_acheminement": "ST LOUET SUR SEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67799363475, + 49.0957495313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6f5660f393a46a1cb1a4d6ca4b7f44f6c7b4764", + "fields": { + "code_commune_insee": "14610", + "nom_de_la_commune": "ST MANVIEU NORREY", + "code_postal": "14740", + "coordonnees_gps": [ + 49.1866187514, + -0.500649105973 + ], + "libelle_d_acheminement": "ST MANVIEU NORREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.500649105973, + 49.1866187514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7501421975bbce7f53315b31c5061007fac94ac3", + "fields": { + "code_commune_insee": "14620", + "nom_de_la_commune": "ST MARTIN AUX CHARTRAINS", + "code_postal": "14130", + "coordonnees_gps": [ + 49.308417965, + 0.15439735263 + ], + "libelle_d_acheminement": "ST MARTIN AUX CHARTRAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15439735263, + 49.308417965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06397d21a387ae7608035f789c09abcf7192a0df", + "fields": { + "ligne_5": "LA CRESSONNIERE", + "code_commune_insee": "14621", + "libelle_d_acheminement": "ST MARTIN BIENFAITE CRESSONNIERE", + "code_postal": "14290", + "nom_de_la_commune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE", + "coordonnees_gps": [ + 49.0328920711, + 0.352774402255 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.352774402255, + 49.0328920711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abeec831c002338ae28bbbfb019445dc0a0bd0b2", + "fields": { + "code_commune_insee": "14622", + "nom_de_la_commune": "ST MARTIN DE BLAGNY", + "code_postal": "14710", + "coordonnees_gps": [ + 49.2491230144, + -0.942947269441 + ], + "libelle_d_acheminement": "ST MARTIN DE BLAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.942947269441, + 49.2491230144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf7c6f89573352846bd66dad904719eec5757d49", + "fields": { + "code_commune_insee": "14635", + "nom_de_la_commune": "ST OMER", + "code_postal": "14220", + "coordonnees_gps": [ + 48.9283510669, + -0.443691657906 + ], + "libelle_d_acheminement": "ST OMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.443691657906, + 48.9283510669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ea5d993a99ccfdb15818c2d865355a92e8279b9", + "fields": { + "code_commune_insee": "14639", + "nom_de_la_commune": "ST OUEN LE PIN", + "code_postal": "14340", + "coordonnees_gps": [ + 49.1508388841, + 0.103659394584 + ], + "libelle_d_acheminement": "ST OUEN LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.103659394584, + 49.1508388841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5051def9c490400ec14e318be5760cbbb4491bfc", + "fields": { + "code_commune_insee": "14640", + "nom_de_la_commune": "ST PAIR", + "code_postal": "14670", + "coordonnees_gps": [ + 49.1655310694, + -0.186716961556 + ], + "libelle_d_acheminement": "ST PAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.186716961556, + 49.1655310694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b5d63e6bbc849f44db95a245b7998f0554d50bb", + "fields": { + "code_commune_insee": "14643", + "nom_de_la_commune": "ST PAUL DU VERNAY", + "code_postal": "14490", + "coordonnees_gps": [ + 49.1967624116, + -0.756637653868 + ], + "libelle_d_acheminement": "ST PAUL DU VERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.756637653868, + 49.1967624116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46096521a7db87a191c580f22cbfef56faecb7fe", + "fields": { + "code_commune_insee": "14644", + "nom_de_la_commune": "ST PHILBERT DES CHAMPS", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2119587487, + 0.275544774425 + ], + "libelle_d_acheminement": "ST PHILBERT DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.275544774425, + 49.2119587487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36d908757655392c8ae0d76102e5618c95c60465", + "fields": { + "code_commune_insee": "14646", + "nom_de_la_commune": "ST PIERRE CANIVET", + "code_postal": "14700", + "coordonnees_gps": [ + 48.9211270425, + -0.230012764735 + ], + "libelle_d_acheminement": "ST PIERRE CANIVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.230012764735, + 48.9211270425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3da5dfa5b3f813055dda46389782554f43f14b6", + "fields": { + "code_commune_insee": "14650", + "nom_de_la_commune": "ST PIERRE DU FRESNE", + "code_postal": "14260", + "coordonnees_gps": [ + 49.0341253514, + -0.765926909139 + ], + "libelle_d_acheminement": "ST PIERRE DU FRESNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.765926909139, + 49.0341253514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3f6ee45f4e99f1ec3dbeca34ecb3429c2922e7f", + "fields": { + "ligne_5": "AMMEVILLE", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f731ce708ab753067e387fa64c515914d6a64c74", + "fields": { + "ligne_5": "BOISSEY", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99f5f1c4e720b770ae5e8442d1fccd227d480654", + "fields": { + "ligne_5": "GRANDMESNIL", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ea911a34b0353b64d30d08994e48e7aa122ff34", + "fields": { + "ligne_5": "OUVILLE LA BIEN TOURNEE", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "633aa9ca614a3f84508bb27d862e9c2a5a8900a8", + "fields": { + "ligne_5": "ST MARTIN DE FRESNAY", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "547cf0f35dfdda238677752591b99f055eecd39d", + "fields": { + "ligne_5": "VAUDELOGES", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cca2c9472731da7cde7331e832f356d90885fc4", + "fields": { + "code_commune_insee": "14656", + "nom_de_la_commune": "ST REMY", + "code_postal": "14570", + "coordonnees_gps": [ + 48.9398642478, + -0.49006634789 + ], + "libelle_d_acheminement": "ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49006634789, + 48.9398642478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36e283fb83e14439a2585b2eb7fe1f205da74b44", + "fields": { + "code_commune_insee": "14657", + "nom_de_la_commune": "ST SAMSON", + "code_postal": "14670", + "coordonnees_gps": [ + 49.1904929759, + -0.15245429219 + ], + "libelle_d_acheminement": "ST SAMSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15245429219, + 49.1904929759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c84035b066457c8883a283cfd7fd078a3317cd86", + "fields": { + "ligne_5": "FONTENERMONT", + "code_commune_insee": "14658", + "libelle_d_acheminement": "NOUES DE SIENNE", + "code_postal": "14380", + "nom_de_la_commune": "NOUES DE SIENNE", + "coordonnees_gps": [ + 48.8217597918, + -1.04661139436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04661139436, + 48.8217597918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da9fde174069e24c2708d4f3e65cb54d9f62bae4", + "fields": { + "ligne_5": "MESNIL CLINCHAMPS", + "code_commune_insee": "14658", + "libelle_d_acheminement": "NOUES DE SIENNE", + "code_postal": "14380", + "nom_de_la_commune": "NOUES DE SIENNE", + "coordonnees_gps": [ + 48.8217597918, + -1.04661139436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04661139436, + 48.8217597918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c43bb12ed077e23af6f65ba82db8bcc52ac1f1de", + "fields": { + "code_commune_insee": "14660", + "nom_de_la_commune": "ST VAAST EN AUGE", + "code_postal": "14640", + "coordonnees_gps": [ + 49.2905834736, + 0.0023023759062 + ], + "libelle_d_acheminement": "ST VAAST EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0023023759062, + 49.2905834736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "478930c7e8158c52ab2f1e1109ad5c8e81be569f", + "fields": { + "code_commune_insee": "14661", + "nom_de_la_commune": "ST VAAST SUR SEULLES", + "code_postal": "14250", + "coordonnees_gps": [ + 49.136191031, + -0.630172493075 + ], + "libelle_d_acheminement": "ST VAAST SUR SEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.630172493075, + 49.136191031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2944e14fa32243e798f7f205fc9fb27c512cdcab", + "fields": { + "code_commune_insee": "14664", + "nom_de_la_commune": "SALLEN", + "code_postal": "14240", + "coordonnees_gps": [ + 49.1169448411, + -0.839881279889 + ], + "libelle_d_acheminement": "SALLEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.839881279889, + 49.1169448411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ee64c2d23b64382ccad653ecbb532dc0417ca63", + "fields": { + "code_commune_insee": "14667", + "nom_de_la_commune": "SAON", + "code_postal": "14330", + "coordonnees_gps": [ + 49.2713788041, + -0.863001782916 + ], + "libelle_d_acheminement": "SAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863001782916, + 49.2713788041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71bab00486e57fc1159df976990f7aca8611ebe6", + "fields": { + "code_commune_insee": "14687", + "nom_de_la_commune": "LE THEIL EN AUGE", + "code_postal": "14130", + "coordonnees_gps": [ + 49.346810194, + 0.250984349315 + ], + "libelle_d_acheminement": "LE THEIL EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.250984349315, + 49.346810194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df78028da0bb3e39ded3b383cb0cdd828cafafe3", + "fields": { + "ligne_5": "CURCY SUR ORNE", + "code_commune_insee": "14689", + "libelle_d_acheminement": "LE HOM", + "code_postal": "14220", + "nom_de_la_commune": "LE HOM", + "coordonnees_gps": [ + 48.9864514562, + -0.485109067102 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.485109067102, + 48.9864514562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c201dd2cc4121a95a2e5d1e5f81dee7fe2e78b53", + "fields": { + "code_commune_insee": "14705", + "nom_de_la_commune": "TOURNIERES", + "code_postal": "14330", + "coordonnees_gps": [ + 49.2304665973, + -0.937851101881 + ], + "libelle_d_acheminement": "TOURNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.937851101881, + 49.2304665973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc07e932fa2d842920c5700d244eef9c9a7b3b97", + "fields": { + "code_commune_insee": "14711", + "nom_de_la_commune": "TREVIERES", + "code_postal": "14710", + "coordonnees_gps": [ + 49.2992384887, + -0.916096268328 + ], + "libelle_d_acheminement": "TREVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.916096268328, + 49.2992384887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d98a9bf71a9a025f8985e3dc64fe4e62a206b154", + "fields": { + "code_commune_insee": "14712", + "nom_de_la_commune": "TROARN", + "code_postal": "14670", + "coordonnees_gps": [ + 49.191539378, + -0.183683620831 + ], + "libelle_d_acheminement": "TROARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.183683620831, + 49.191539378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8439b44a185f9b10c8b7af666b644e4e58d9a44f", + "fields": { + "ligne_5": "TROIS MONTS", + "code_commune_insee": "14713", + "libelle_d_acheminement": "MONTILLIERES SUR ORNE", + "code_postal": "14210", + "nom_de_la_commune": "MONTILLIERES SUR ORNE", + "coordonnees_gps": [ + 49.0488456416, + -0.479036744908 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479036744908, + 49.0488456416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba6a462489593aff57f7edd1fd23aa5c287ecccd", + "fields": { + "ligne_5": "NEUILLY LE MALHERBE", + "code_commune_insee": "14721", + "libelle_d_acheminement": "VACOGNES NEUILLY", + "code_postal": "14210", + "nom_de_la_commune": "VACOGNES NEUILLY", + "coordonnees_gps": [ + 49.085434169, + -0.534237961822 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.534237961822, + 49.085434169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a882f0083dc4702f85c5662770751b9800daca1", + "fields": { + "ligne_5": "MONTCHAMP", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14350", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a6477d84da6bb866d53012de39b8c10bb80ba05", + "fields": { + "ligne_5": "RULLY", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14410", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e27261f8524339ef411e134d1a2a8d119d4f988", + "fields": { + "ligne_5": "VIESSOIX", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14410", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e93dbd97afc806e8da64b6ada711212b50de8dd7", + "fields": { + "code_commune_insee": "14732", + "nom_de_la_commune": "VAUX SUR AURE", + "code_postal": "14400", + "coordonnees_gps": [ + 49.3070647663, + -0.710057114678 + ], + "libelle_d_acheminement": "VAUX SUR AURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.710057114678, + 49.3070647663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc3139a2fb116064ef5d6062a50013759aee7360", + "fields": { + "code_commune_insee": "14734", + "nom_de_la_commune": "VENDES", + "code_postal": "14250", + "coordonnees_gps": [ + 49.1420282533, + -0.600989613075 + ], + "libelle_d_acheminement": "VENDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.600989613075, + 49.1420282533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b163f8fb99264059ea2116e415b6a11d7a76d7c7", + "fields": { + "ligne_5": "GRISY", + "code_commune_insee": "14735", + "libelle_d_acheminement": "VENDEUVRE", + "code_postal": "14170", + "nom_de_la_commune": "VENDEUVRE", + "coordonnees_gps": [ + 49.0067565786, + -0.0828921340383 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0828921340383, + 49.0067565786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db6e7cdc577454a0be3988cf4f7127a67a58777f", + "fields": { + "ligne_5": "LA VESPIERE", + "code_commune_insee": "14740", + "libelle_d_acheminement": "LA VESPIERE FRIARDEL", + "code_postal": "14290", + "nom_de_la_commune": "LA VESPIERE FRIARDEL", + "coordonnees_gps": [ + 49.0111903523, + 0.424749958219 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.424749958219, + 49.0111903523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7095010081559b922efd3625828993a3069b55fa", + "fields": { + "code_commune_insee": "14745", + "nom_de_la_commune": "VIERVILLE SUR MER", + "code_postal": "14710", + "coordonnees_gps": [ + 49.3669899516, + -0.901543572922 + ], + "libelle_d_acheminement": "VIERVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.901543572922, + 49.3669899516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83602bc55e2bdd13c55dd47896e8a4df7ca703eb", + "fields": { + "code_commune_insee": "14747", + "nom_de_la_commune": "VIEUX", + "code_postal": "14930", + "coordonnees_gps": [ + 49.1128141033, + -0.442946705773 + ], + "libelle_d_acheminement": "VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.442946705773, + 49.1128141033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "446f8d22423119199755f711bd551d4d3117f08c", + "fields": { + "code_commune_insee": "14748", + "nom_de_la_commune": "VIEUX BOURG", + "code_postal": "14130", + "coordonnees_gps": [ + 49.3128478491, + 0.245450743611 + ], + "libelle_d_acheminement": "VIEUX BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.245450743611, + 49.3128478491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2db856d6de42303b8a578075d88ca2a5f14e6d27", + "fields": { + "code_commune_insee": "14751", + "nom_de_la_commune": "VIGNATS", + "code_postal": "14700", + "coordonnees_gps": [ + 48.8540077803, + -0.102407702289 + ], + "libelle_d_acheminement": "VIGNATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.102407702289, + 48.8540077803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa089e6da10ab0075a9c23a775c158c38e0d62f8", + "fields": { + "ligne_5": "LA LANDE VAUMONT", + "code_commune_insee": "14762", + "libelle_d_acheminement": "VIRE NORMANDIE", + "code_postal": "14500", + "nom_de_la_commune": "VIRE NORMANDIE", + "coordonnees_gps": [ + 48.8512498219, + -0.889601911342 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889601911342, + 48.8512498219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ee5c6486fb595cbdb28a927c2003a8fff166b17", + "fields": { + "ligne_5": "VAUDRY", + "code_commune_insee": "14762", + "libelle_d_acheminement": "VIRE NORMANDIE", + "code_postal": "14500", + "nom_de_la_commune": "VIRE NORMANDIE", + "coordonnees_gps": [ + 48.8512498219, + -0.889601911342 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889601911342, + 48.8512498219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bb5434542ad5206f9396930176704ca5bdb8c1f", + "fields": { + "ligne_5": "VIRE", + "code_commune_insee": "14762", + "libelle_d_acheminement": "VIRE NORMANDIE", + "code_postal": "14500", + "nom_de_la_commune": "VIRE NORMANDIE", + "coordonnees_gps": [ + 48.8512498219, + -0.889601911342 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889601911342, + 48.8512498219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66aa8127b098566257894138c5116a39b968f1c0", + "fields": { + "code_commune_insee": "15003", + "nom_de_la_commune": "ALLY", + "code_postal": "15700", + "coordonnees_gps": [ + 45.1644412736, + 2.32569985798 + ], + "libelle_d_acheminement": "ALLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32569985798, + 45.1644412736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "280071176d6decb971cd3b165adf87957dacb7de", + "fields": { + "ligne_5": "DRIGNAC", + "code_commune_insee": "15003", + "libelle_d_acheminement": "ALLY", + "code_postal": "15700", + "nom_de_la_commune": "ALLY", + "coordonnees_gps": [ + 45.1644412736, + 2.32569985798 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32569985798, + 45.1644412736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b63c17d700e7bf741d6fbdfbf5d674ced0690f11", + "fields": { + "code_commune_insee": "15004", + "nom_de_la_commune": "ANDELAT", + "code_postal": "15100", + "coordonnees_gps": [ + 45.0699830319, + 3.05933407794 + ], + "libelle_d_acheminement": "ANDELAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05933407794, + 45.0699830319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb36c009686da7dfc984d88201a7edcda57dee9e", + "fields": { + "code_commune_insee": "15010", + "nom_de_la_commune": "ARCHES", + "code_postal": "15200", + "coordonnees_gps": [ + 45.2984854251, + 2.31775819342 + ], + "libelle_d_acheminement": "ARCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31775819342, + 45.2984854251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "768bf927d6ad2d00de13c4a9f477c0d7a7fa73f7", + "fields": { + "code_commune_insee": "15011", + "nom_de_la_commune": "ARNAC", + "code_postal": "15150", + "coordonnees_gps": [ + 45.0633298258, + 2.22626708333 + ], + "libelle_d_acheminement": "ARNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22626708333, + 45.0633298258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "232a3fd3f20c692d2e24b73c3b46a9256fd0ec92", + "fields": { + "code_commune_insee": "15022", + "nom_de_la_commune": "BONNAC", + "code_postal": "15500", + "coordonnees_gps": [ + 45.2099376788, + 3.14660869619 + ], + "libelle_d_acheminement": "BONNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14660869619, + 45.2099376788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27c92907c1823619baf641536f4cb051b5496928", + "fields": { + "code_commune_insee": "15032", + "nom_de_la_commune": "CELOUX", + "code_postal": "15500", + "coordonnees_gps": [ + 45.1381000206, + 3.2607636006 + ], + "libelle_d_acheminement": "CELOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2607636006, + 45.1381000206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bf59d193bea1fff62606755cefecf32c07af838", + "fields": { + "code_commune_insee": "15040", + "nom_de_la_commune": "CHANTERELLE", + "code_postal": "15190", + "coordonnees_gps": [ + 45.3772414628, + 2.83331975255 + ], + "libelle_d_acheminement": "CHANTERELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83331975255, + 45.3772414628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffbc73a0ebaf9a4a0f62ed6d40f663861b9334f9", + "fields": { + "code_commune_insee": "15046", + "nom_de_la_commune": "CHAUSSENAC", + "code_postal": "15700", + "coordonnees_gps": [ + 45.1764193419, + 2.27292726174 + ], + "libelle_d_acheminement": "CHAUSSENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27292726174, + 45.1764193419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b0ae512a81e3444999c7b70580932591ed4d8c4", + "fields": { + "code_commune_insee": "15064", + "nom_de_la_commune": "ESCORAILLES", + "code_postal": "15700", + "coordonnees_gps": [ + 45.1690574549, + 2.33215850964 + ], + "libelle_d_acheminement": "ESCORAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33215850964, + 45.1690574549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63c450a0c4e3ea7abc772420014f98fe78de7323", + "fields": { + "code_commune_insee": "15065", + "nom_de_la_commune": "ESPINASSE", + "code_postal": "15110", + "coordonnees_gps": [ + 44.869517892, + 2.93031023884 + ], + "libelle_d_acheminement": "ESPINASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93031023884, + 44.869517892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8d0474d41ecdbc6596c14ca9e20b761e0b65417", + "fields": { + "code_commune_insee": "15066", + "nom_de_la_commune": "LE FALGOUX", + "code_postal": "15380", + "coordonnees_gps": [ + 45.1449310681, + 2.6388267484 + ], + "libelle_d_acheminement": "LE FALGOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6388267484, + 45.1449310681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b469962f121a1b755e8bcdee4232377ca294477", + "fields": { + "code_commune_insee": "15067", + "nom_de_la_commune": "LE FAU", + "code_postal": "15140", + "coordonnees_gps": [ + 45.1089339679, + 2.60020993092 + ], + "libelle_d_acheminement": "LE FAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60020993092, + 45.1089339679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39a71347b84c2ae2caa5d76cbcdcd9e0694d91b2", + "fields": { + "code_commune_insee": "15077", + "nom_de_la_commune": "GOURDIEGES", + "code_postal": "15230", + "coordonnees_gps": [ + 44.9465137217, + 2.88202644949 + ], + "libelle_d_acheminement": "GOURDIEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88202644949, + 44.9465137217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb51c1e682b938a19a14053b365f5138017ca745", + "fields": { + "code_commune_insee": "15081", + "nom_de_la_commune": "JOU SOUS MONJOU", + "code_postal": "15800", + "coordonnees_gps": [ + 44.9403094709, + 2.66250496336 + ], + "libelle_d_acheminement": "JOU SOUS MONJOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66250496336, + 44.9403094709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "007a57035c0f8f39881897b36a504dc98c1c1471", + "fields": { + "code_commune_insee": "15083", + "nom_de_la_commune": "JUSSAC", + "code_postal": "15250", + "coordonnees_gps": [ + 44.9952366348, + 2.41802314499 + ], + "libelle_d_acheminement": "JUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41802314499, + 44.9952366348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9377307bd56fb5b0960251039007ab7abc86b8c", + "fields": { + "code_commune_insee": "15089", + "nom_de_la_commune": "LADINHAC", + "code_postal": "15120", + "coordonnees_gps": [ + 44.767177873, + 2.50974723754 + ], + "libelle_d_acheminement": "LADINHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50974723754, + 44.767177873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b1d2170fa340e040b30fb85af4b03541658d634", + "fields": { + "code_commune_insee": "15092", + "nom_de_la_commune": "LANOBRE", + "code_postal": "15270", + "coordonnees_gps": [ + 45.4344225439, + 2.54974390079 + ], + "libelle_d_acheminement": "LANOBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54974390079, + 45.4344225439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e022fd3cc170851f95735b1ad63782e2c1078e6c", + "fields": { + "code_commune_insee": "15096", + "nom_de_la_commune": "LASCELLE", + "code_postal": "15590", + "coordonnees_gps": [ + 45.0335568437, + 2.57470927987 + ], + "libelle_d_acheminement": "LASCELLE MANDAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57470927987, + 45.0335568437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76b31ad6dae424140c826e6f8dcb6e1942d4807e", + "fields": { + "code_commune_insee": "15102", + "nom_de_la_commune": "LAVIGERIE", + "code_postal": "15300", + "coordonnees_gps": [ + 45.1256103713, + 2.732545 + ], + "libelle_d_acheminement": "LAVIGERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.732545, + 45.1256103713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d9be28acae4d4ff053732dd9edb129b47d0e78d", + "fields": { + "ligne_5": "ST MARC", + "code_commune_insee": "15108", + "libelle_d_acheminement": "VAL D ARCOMIE", + "code_postal": "15320", + "nom_de_la_commune": "VAL D ARCOMIE", + "coordonnees_gps": [ + 44.9384891268, + 3.20556437292 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20556437292, + 44.9384891268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2098543fd483b6fbf2d4fd660e7c97c466367417", + "fields": { + "code_commune_insee": "15110", + "nom_de_la_commune": "LUGARDE", + "code_postal": "15190", + "coordonnees_gps": [ + 45.2883942354, + 2.75838366165 + ], + "libelle_d_acheminement": "LUGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75838366165, + 45.2883942354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4988a1599577129f9d1e2e5a1e873a9e9c68afe6", + "fields": { + "code_commune_insee": "15114", + "nom_de_la_commune": "MARCENAT", + "code_postal": "15190", + "coordonnees_gps": [ + 45.3162875719, + 2.85577542136 + ], + "libelle_d_acheminement": "MARCENAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85577542136, + 45.3162875719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f47f56afccd15449306f23ba0fc43fb926a8348", + "fields": { + "code_commune_insee": "15118", + "nom_de_la_commune": "MARMANHAC", + "code_postal": "15250", + "coordonnees_gps": [ + 45.0074931721, + 2.47840612613 + ], + "libelle_d_acheminement": "MARMANHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47840612613, + 45.0074931721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03f1d8c4c0d399506acc2f3ed1b2289c2fd7054b", + "fields": { + "code_commune_insee": "15122", + "nom_de_la_commune": "MAURS", + "code_postal": "15600", + "coordonnees_gps": [ + 44.7119433423, + 2.17308591391 + ], + "libelle_d_acheminement": "MAURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17308591391, + 44.7119433423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "279bad204a4f9e6e1379f3f7a01fcaa131422b2d", + "fields": { + "code_commune_insee": "15127", + "nom_de_la_commune": "MOLOMPIZE", + "code_postal": "15500", + "coordonnees_gps": [ + 45.2333599435, + 3.12615906672 + ], + "libelle_d_acheminement": "MOLOMPIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12615906672, + 45.2333599435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90f1e53600c6e7e13b0e62abc572e3fa2916caae", + "fields": { + "code_commune_insee": "15133", + "nom_de_la_commune": "MONTMURAT", + "code_postal": "15600", + "coordonnees_gps": [ + 44.6310973852, + 2.2008554498 + ], + "libelle_d_acheminement": "MONTMURAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2008554498, + 44.6310973852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70dd05a743cc0c226709bd373a974b2160290de0", + "fields": { + "ligne_5": "CELLES", + "code_commune_insee": "15141", + "libelle_d_acheminement": "NEUSSARGUES EN PINATELLE", + "code_postal": "15170", + "nom_de_la_commune": "NEUSSARGUES EN PINATELLE", + "coordonnees_gps": [ + 45.1323703921, + 2.98529315948 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98529315948, + 45.1323703921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c52864746be528c6dd350be667b337b6bf2ec563", + "fields": { + "ligne_5": "NEUVEGLISE", + "code_commune_insee": "15142", + "libelle_d_acheminement": "NEUVEGLISE SUR TRUYERE", + "code_postal": "15260", + "nom_de_la_commune": "NEUVEGLISE SUR TRUYERE", + "coordonnees_gps": [ + 44.9309902257, + 2.97942663368 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97942663368, + 44.9309902257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "838189f0278674e42ec993a11d4c667a7b2db054", + "fields": { + "ligne_5": "ORADOUR", + "code_commune_insee": "15142", + "libelle_d_acheminement": "NEUVEGLISE SUR TRUYERE", + "code_postal": "15260", + "nom_de_la_commune": "NEUVEGLISE SUR TRUYERE", + "coordonnees_gps": [ + 44.9309902257, + 2.97942663368 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97942663368, + 44.9309902257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4391227153e9302621c0ba955373b173aeca96b", + "fields": { + "code_commune_insee": "15146", + "nom_de_la_commune": "PAILHEROLS", + "code_postal": "15800", + "coordonnees_gps": [ + 44.9569851027, + 2.704502835 + ], + "libelle_d_acheminement": "PAILHEROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.704502835, + 44.9569851027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b3bd68246db80a2e5436d6bb466da80a490d0f9", + "fields": { + "ligne_5": "LOUPIAC", + "code_commune_insee": "15153", + "libelle_d_acheminement": "PLEAUX", + "code_postal": "15700", + "nom_de_la_commune": "PLEAUX", + "coordonnees_gps": [ + 45.1304319566, + 2.24934594486 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24934594486, + 45.1304319566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56a399f83f234186715d25945347731e2a9ce893", + "fields": { + "code_commune_insee": "15155", + "nom_de_la_commune": "PRADIERS", + "code_postal": "15160", + "coordonnees_gps": [ + 45.2839972375, + 2.92137599236 + ], + "libelle_d_acheminement": "PRADIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92137599236, + 45.2839972375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95ffb20424b347f2b0132262daf80eccb868b367", + "fields": { + "code_commune_insee": "15160", + "nom_de_la_commune": "REILHAC", + "code_postal": "15250", + "coordonnees_gps": [ + 44.9700663332, + 2.42282064857 + ], + "libelle_d_acheminement": "REILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42282064857, + 44.9700663332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6517a505c4d70f40b8f9f64e21acdd2771ae5673", + "fields": { + "code_commune_insee": "15170", + "nom_de_la_commune": "ST AMANDIN", + "code_postal": "15190", + "coordonnees_gps": [ + 45.3284028896, + 2.70800428863 + ], + "libelle_d_acheminement": "ST AMANDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70800428863, + 45.3284028896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc11131d5aeeec8a2cab674e7cd3c2835ca8ac03", + "fields": { + "code_commune_insee": "15175", + "nom_de_la_commune": "ST CERNIN", + "code_postal": "15310", + "coordonnees_gps": [ + 45.0531263429, + 2.42554577219 + ], + "libelle_d_acheminement": "ST CERNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42554577219, + 45.0531263429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3ba8b21599cb29db7cf5c06516fe0ccba76d8b6", + "fields": { + "code_commune_insee": "15178", + "nom_de_la_commune": "ST CIRGUES DE JORDANNE", + "code_postal": "15590", + "coordonnees_gps": [ + 45.0405601303, + 2.60513223834 + ], + "libelle_d_acheminement": "ST CIRGUES DE JORDANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60513223834, + 45.0405601303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cf8b5088169b3667219d10b61a706ff8a51a2c8", + "fields": { + "code_commune_insee": "15183", + "nom_de_la_commune": "ST ETIENNE DE CARLAT", + "code_postal": "15130", + "coordonnees_gps": [ + 44.9128030117, + 2.58461670892 + ], + "libelle_d_acheminement": "ST ETIENNE DE CARLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58461670892, + 44.9128030117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "807b9dad245e2bdfc239b79b30ee976c4fc88cd3", + "fields": { + "code_commune_insee": "15205", + "nom_de_la_commune": "ST PAUL DE SALERS", + "code_postal": "15140", + "coordonnees_gps": [ + 45.1371845632, + 2.5580296522 + ], + "libelle_d_acheminement": "ST PAUL DE SALERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5580296522, + 45.1371845632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2b8d1f12f6e201ae7e81c6192b231973a3a4381", + "fields": { + "code_commune_insee": "15207", + "nom_de_la_commune": "ST PONCY", + "code_postal": "15500", + "coordonnees_gps": [ + 45.1594604904, + 3.19462037388 + ], + "libelle_d_acheminement": "ST PONCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19462037388, + 45.1594604904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8edd9ee5aadd9cfb3bf383ea3955255892a8816", + "fields": { + "code_commune_insee": "15209", + "nom_de_la_commune": "ST REMY DE CHAUDES AIGUES", + "code_postal": "15110", + "coordonnees_gps": [ + 44.7672253376, + 3.02660075086 + ], + "libelle_d_acheminement": "ST REMY DE CHAUDES AIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02660075086, + 44.7672253376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab7d6dcced92d4d728c5b79161f4de494ea83dc4", + "fields": { + "code_commune_insee": "15211", + "nom_de_la_commune": "ST SANTIN CANTALES", + "code_postal": "15150", + "coordonnees_gps": [ + 45.0207379963, + 2.23474554785 + ], + "libelle_d_acheminement": "ST SANTIN CANTALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23474554785, + 45.0207379963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e70739fa400a3fa0056fd03eb3a5bd6287a772c", + "fields": { + "code_commune_insee": "15214", + "nom_de_la_commune": "ST SAURY", + "code_postal": "15290", + "coordonnees_gps": [ + 44.8786965628, + 2.12428515169 + ], + "libelle_d_acheminement": "ST SAURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12428515169, + 44.8786965628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d819382c1a3f9ca65ffd4c7435e6bde46756e581", + "fields": { + "code_commune_insee": "15220", + "nom_de_la_commune": "SALINS", + "code_postal": "15200", + "coordonnees_gps": [ + 45.187761472, + 2.40079505751 + ], + "libelle_d_acheminement": "SALINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40079505751, + 45.187761472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95346385dcf65fe10b1548d824802af2541e7376", + "fields": { + "code_commune_insee": "15221", + "nom_de_la_commune": "SANSAC DE MARMIESSE", + "code_postal": "15130", + "coordonnees_gps": [ + 44.8902213985, + 2.34319236958 + ], + "libelle_d_acheminement": "SANSAC DE MARMIESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34319236958, + 44.8902213985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52a373852ae8bf969355470dc61194463da1caea", + "fields": { + "code_commune_insee": "15225", + "nom_de_la_commune": "SEGUR LES VILLAS", + "code_postal": "15300", + "coordonnees_gps": [ + 45.2080545733, + 2.82298394403 + ], + "libelle_d_acheminement": "SEGUR LES VILLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82298394403, + 45.2080545733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f60d7f6c511f9abf8243771cc8fb470cf14586e", + "fields": { + "code_commune_insee": "15229", + "nom_de_la_commune": "SOULAGES", + "code_postal": "15100", + "coordonnees_gps": [ + 45.0897253064, + 3.26165456011 + ], + "libelle_d_acheminement": "SOULAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26165456011, + 45.0897253064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc043290a8ee7fd9f84ec2b2db6fb19fb252919d", + "fields": { + "code_commune_insee": "15231", + "nom_de_la_commune": "TALIZAT", + "code_postal": "15170", + "coordonnees_gps": [ + 45.1234934076, + 3.05334351272 + ], + "libelle_d_acheminement": "TALIZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05334351272, + 45.1234934076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f06cb160706ef63e618947ccd8cf32b116c2718", + "fields": { + "code_commune_insee": "15234", + "nom_de_la_commune": "TEISSIERES LES BOULIES", + "code_postal": "15130", + "coordonnees_gps": [ + 44.8209679734, + 2.53827855316 + ], + "libelle_d_acheminement": "TEISSIERES LES BOULIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53827855316, + 44.8209679734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a49beca1151ed5151833e538233f75e204b1788", + "fields": { + "code_commune_insee": "15238", + "nom_de_la_commune": "TOURNEMIRE", + "code_postal": "15310", + "coordonnees_gps": [ + 45.0547955278, + 2.49043476858 + ], + "libelle_d_acheminement": "TOURNEMIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49043476858, + 45.0547955278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cc18599b3860b8f2cdf2212806146cbd51b5c5f", + "fields": { + "code_commune_insee": "15240", + "nom_de_la_commune": "TREMOUILLE", + "code_postal": "15270", + "coordonnees_gps": [ + 45.3852208463, + 2.67025702101 + ], + "libelle_d_acheminement": "TREMOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67025702101, + 45.3852208463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9c48c8dfcd8309bd431f1d6939fae0da21b5fe4", + "fields": { + "code_commune_insee": "15248", + "nom_de_la_commune": "VALUEJOLS", + "code_postal": "15300", + "coordonnees_gps": [ + 45.0532332221, + 2.90711082999 + ], + "libelle_d_acheminement": "VALUEJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90711082999, + 45.0532332221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba82c50b76ca5456263dce06d407cf5707fa6ddd", + "fields": { + "code_commune_insee": "15262", + "nom_de_la_commune": "VILLEDIEU", + "code_postal": "15100", + "coordonnees_gps": [ + 44.9971827746, + 3.05455428908 + ], + "libelle_d_acheminement": "VILLEDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05455428908, + 44.9971827746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2faaf1745d1a37ba3a405f1848035d651029a598", + "fields": { + "code_commune_insee": "15263", + "nom_de_la_commune": "VIRARGUES", + "code_postal": "15300", + "coordonnees_gps": [ + 45.1293117032, + 2.89843918349 + ], + "libelle_d_acheminement": "VIRARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89843918349, + 45.1293117032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c8e5ab48665ab8da8923100dd1122d07cb70eee", + "fields": { + "code_commune_insee": "15265", + "nom_de_la_commune": "YDES", + "code_postal": "15210", + "coordonnees_gps": [ + 45.3433264058, + 2.44997355968 + ], + "libelle_d_acheminement": "YDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44997355968, + 45.3433264058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64a1ba09e601fc8aa22abd7a0d1836b34a5b31d3", + "fields": { + "ligne_5": "LE ROUGET", + "code_commune_insee": "15268", + "libelle_d_acheminement": "LE ROUGET PERS", + "code_postal": "15290", + "nom_de_la_commune": "LE ROUGET PERS", + "coordonnees_gps": [ + 44.8574381373, + 2.23422151745 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23422151745, + 44.8574381373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90f8f937405a6d63c7adffe7fe2570f1cf753b22", + "fields": { + "ligne_5": "PERS", + "code_commune_insee": "15268", + "libelle_d_acheminement": "LE ROUGET PERS", + "code_postal": "15290", + "nom_de_la_commune": "LE ROUGET PERS", + "coordonnees_gps": [ + 44.8574381373, + 2.23422151745 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23422151745, + 44.8574381373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e7c45dfa461a46a90ea45ca8b814a92a9eda411", + "fields": { + "code_commune_insee": "16002", + "nom_de_la_commune": "LES ADJOTS", + "code_postal": "16700", + "coordonnees_gps": [ + 46.0787550512, + 0.203143435799 + ], + "libelle_d_acheminement": "LES ADJOTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.203143435799, + 46.0787550512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e213d2fa128072cc96749cbf1cc31cf5d6ebef76", + "fields": { + "code_commune_insee": "16007", + "nom_de_la_commune": "ALLOUE", + "code_postal": "16490", + "coordonnees_gps": [ + 46.0204552645, + 0.5258351895 + ], + "libelle_d_acheminement": "ALLOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.5258351895, + 46.0204552645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeaf00a7d7ddedc772bdb44ee9679cacf403158b", + "fields": { + "code_commune_insee": "16024", + "nom_de_la_commune": "AUSSAC VADALLE", + "code_postal": "16560", + "coordonnees_gps": [ + 45.8215780288, + 0.215598559823 + ], + "libelle_d_acheminement": "AUSSAC VADALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.215598559823, + 45.8215780288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9317f0192f1b98fa93edb477cba16a4e70dc2290", + "fields": { + "code_commune_insee": "16026", + "nom_de_la_commune": "BALZAC", + "code_postal": "16430", + "coordonnees_gps": [ + 45.7127837956, + 0.134124616081 + ], + "libelle_d_acheminement": "BALZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.134124616081, + 45.7127837956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "806882408fa69b51f0b4e5eea91f4218e85dcd93", + "fields": { + "code_commune_insee": "16029", + "nom_de_la_commune": "BARDENAC", + "code_postal": "16210", + "coordonnees_gps": [ + 45.3005902681, + -0.0148493213262 + ], + "libelle_d_acheminement": "BARDENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0148493213262, + 45.3005902681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "540dabd6483d35d7df45f65523473ae1dbe37ace", + "fields": { + "code_commune_insee": "16032", + "nom_de_la_commune": "BASSAC", + "code_postal": "16120", + "coordonnees_gps": [ + 45.6649796502, + -0.0991802061474 + ], + "libelle_d_acheminement": "BASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0991802061474, + 45.6649796502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1515f0402c2b9e77df32cbd223bcc62018aca755", + "fields": { + "code_commune_insee": "16034", + "nom_de_la_commune": "BAZAC", + "code_postal": "16210", + "coordonnees_gps": [ + 45.2211222947, + 0.0368876406088 + ], + "libelle_d_acheminement": "BAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0368876406088, + 45.2211222947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6459a6953da16f6e8c1a008634a050c7c908254d", + "fields": { + "code_commune_insee": "16037", + "nom_de_la_commune": "BELLON", + "code_postal": "16210", + "coordonnees_gps": [ + 45.3129742539, + 0.116774132043 + ], + "libelle_d_acheminement": "BELLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.116774132043, + 45.3129742539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ece16b839bdbf14706e00070290c44ad43c0693f", + "fields": { + "code_commune_insee": "16038", + "nom_de_la_commune": "BENEST", + "code_postal": "16350", + "coordonnees_gps": [ + 46.0386820793, + 0.452609537625 + ], + "libelle_d_acheminement": "BENEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.452609537625, + 46.0386820793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e995e7157d72aa7bf2d165647e4e8fc012b77088", + "fields": { + "code_commune_insee": "16040", + "nom_de_la_commune": "BERNEUIL", + "code_postal": "16480", + "coordonnees_gps": [ + 45.3908685702, + -0.0668741248054 + ], + "libelle_d_acheminement": "BERNEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0668741248054, + 45.3908685702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bad2307bbe74a0218097ff0f04904736c9a90edf", + "fields": { + "code_commune_insee": "16044", + "nom_de_la_commune": "BIOUSSAC", + "code_postal": "16700", + "coordonnees_gps": [ + 46.0307876172, + 0.270410745983 + ], + "libelle_d_acheminement": "BIOUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.270410745983, + 46.0307876172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ee0243cc2514b46fa95f4ac5e4d6949c91e2e77", + "fields": { + "code_commune_insee": "16053", + "nom_de_la_commune": "BORS DE BAIGNES", + "code_postal": "16360", + "coordonnees_gps": [ + 45.3263203716, + -0.199610560993 + ], + "libelle_d_acheminement": "BORS DE BAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.199610560993, + 45.3263203716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "280fc3ef79cd07f938bf6a04fe69da11d21e0fdf", + "fields": { + "code_commune_insee": "16057", + "nom_de_la_commune": "BOUTEVILLE", + "code_postal": "16120", + "coordonnees_gps": [ + 45.6069622968, + -0.127003754682 + ], + "libelle_d_acheminement": "BOUTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.127003754682, + 45.6069622968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0679d6b55270666cfffa68fda49640d3ffcdd660", + "fields": { + "code_commune_insee": "16058", + "nom_de_la_commune": "BOUTIERS ST TROJAN", + "code_postal": "16100", + "coordonnees_gps": [ + 45.711028287, + -0.296886698875 + ], + "libelle_d_acheminement": "BOUTIERS ST TROJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.296886698875, + 45.711028287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d9f0f51e74400395bbfd7ff079e676571d58fc4", + "fields": { + "code_commune_insee": "16060", + "nom_de_la_commune": "BREVILLE", + "code_postal": "16370", + "coordonnees_gps": [ + 45.7891537145, + -0.274845145483 + ], + "libelle_d_acheminement": "BREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.274845145483, + 45.7891537145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3070d9853fcbc54a815277f7a651cc7eb5535292", + "fields": { + "code_commune_insee": "16065", + "nom_de_la_commune": "BRILLAC", + "code_postal": "16500", + "coordonnees_gps": [ + 46.067503903, + 0.776760494264 + ], + "libelle_d_acheminement": "BRILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.776760494264, + 46.067503903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49d433411655e0f1fb429c13733f37c5e0a77117", + "fields": { + "code_commune_insee": "16067", + "nom_de_la_commune": "BUNZAC", + "code_postal": "16110", + "coordonnees_gps": [ + 45.6993800816, + 0.344082378962 + ], + "libelle_d_acheminement": "BUNZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.344082378962, + 45.6993800816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa363f216eb8213f97f332bd46f8885bac1f20a5", + "fields": { + "code_commune_insee": "16093", + "nom_de_la_commune": "CHAZELLES", + "code_postal": "16380", + "coordonnees_gps": [ + 45.6453528845, + 0.364874391871 + ], + "libelle_d_acheminement": "CHAZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.364874391871, + 45.6453528845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21409a64e35bcaf71af9a56643e5adf6b7d10eb6", + "fields": { + "code_commune_insee": "16097", + "nom_de_la_commune": "CHERVES RICHEMONT", + "code_postal": "16370", + "coordonnees_gps": [ + 45.7450738873, + -0.337808012724 + ], + "libelle_d_acheminement": "CHERVES RICHEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.337808012724, + 45.7450738873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b522f4467fe425951344e35e5d4258e94c59595", + "fields": { + "code_commune_insee": "16102", + "nom_de_la_commune": "COGNAC", + "code_postal": "16100", + "coordonnees_gps": [ + 45.6962326551, + -0.33507941815 + ], + "libelle_d_acheminement": "COGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33507941815, + 45.6962326551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb11aa915cd8fc0b224d18f9348834128f81f574", + "fields": { + "code_commune_insee": "16105", + "nom_de_la_commune": "CONDEON", + "code_postal": "16360", + "coordonnees_gps": [ + 45.4011643618, + -0.134853631146 + ], + "libelle_d_acheminement": "CONDEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.134853631146, + 45.4011643618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86ecba5f1addbe70b68e34a7fb9e3565083ff3fb", + "fields": { + "code_commune_insee": "16107", + "nom_de_la_commune": "COULGENS", + "code_postal": "16560", + "coordonnees_gps": [ + 45.8134827231, + 0.277167790315 + ], + "libelle_d_acheminement": "COULGENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.277167790315, + 45.8134827231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3577e6f84e96505282b5b9c7dec8c233d37022e1", + "fields": { + "code_commune_insee": "16121", + "nom_de_la_commune": "DOUZAT", + "code_postal": "16290", + "coordonnees_gps": [ + 45.7009983146, + -0.00261844248273 + ], + "libelle_d_acheminement": "DOUZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00261844248273, + 45.7009983146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1119f77d4611358fcb1476ea8d41fcf34a3abe2d", + "fields": { + "code_commune_insee": "16125", + "nom_de_la_commune": "EDON", + "code_postal": "16320", + "coordonnees_gps": [ + 45.4885657865, + 0.351381025393 + ], + "libelle_d_acheminement": "EDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.351381025393, + 45.4885657865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40c9c6c2045728d50df295b4c25fdc791843afbe", + "fields": { + "code_commune_insee": "16132", + "nom_de_la_commune": "ETAGNAC", + "code_postal": "16150", + "coordonnees_gps": [ + 45.8907561281, + 0.783276589997 + ], + "libelle_d_acheminement": "ETAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.783276589997, + 45.8907561281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70a1fa0458fb1979b7ca7fa6b301a2c88f1ebf7b", + "fields": { + "code_commune_insee": "16137", + "nom_de_la_commune": "FEUILLADE", + "code_postal": "16380", + "coordonnees_gps": [ + 45.5930624108, + 0.467173536421 + ], + "libelle_d_acheminement": "FEUILLADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.467173536421, + 45.5930624108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c5aef966a40fe419784411e58f26209addcae85", + "fields": { + "ligne_5": "BIGNAC", + "code_commune_insee": "16148", + "libelle_d_acheminement": "GENAC BIGNAC", + "code_postal": "16170", + "nom_de_la_commune": "GENAC BIGNAC", + "coordonnees_gps": [ + 45.8009500924, + 0.021470943172 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.021470943172, + 45.8009500924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dc797574f84c7d1b46756ab9c1d9b9ad615a7b8", + "fields": { + "ligne_5": "GENAC", + "code_commune_insee": "16148", + "libelle_d_acheminement": "GENAC BIGNAC", + "code_postal": "16170", + "nom_de_la_commune": "GENAC BIGNAC", + "coordonnees_gps": [ + 45.8009500924, + 0.021470943172 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.021470943172, + 45.8009500924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0229667a365ceabdd8bcf3003bfc54b8f39f782a", + "fields": { + "ligne_5": "GONDEVILLE", + "code_commune_insee": "16153", + "libelle_d_acheminement": "MAINXE GONDEVILLE", + "code_postal": "16200", + "nom_de_la_commune": "MAINXE GONDEVILLE", + "coordonnees_gps": [ + 45.6684412124, + -0.155937890008 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.155937890008, + 45.6684412124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c27447bc8ed94cb17ee3266c7b6530763debfc36", + "fields": { + "code_commune_insee": "16155", + "nom_de_la_commune": "LES GOURS", + "code_postal": "16140", + "coordonnees_gps": [ + 45.9598718891, + -0.0720164666624 + ], + "libelle_d_acheminement": "LES GOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0720164666624, + 45.9598718891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f748d4d0a893c0df3b929ba3752235bbfd0d93fb", + "fields": { + "code_commune_insee": "16158", + "nom_de_la_commune": "GRASSAC", + "code_postal": "16380", + "coordonnees_gps": [ + 45.5812707814, + 0.399196198105 + ], + "libelle_d_acheminement": "GRASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.399196198105, + 45.5812707814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "278a9806d1903b24f9b5559b3bcad331cdbc7d18", + "fields": { + "code_commune_insee": "16161", + "nom_de_la_commune": "GUIZENGEARD", + "code_postal": "16480", + "coordonnees_gps": [ + 45.3106179642, + -0.123211363753 + ], + "libelle_d_acheminement": "GUIZENGEARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.123211363753, + 45.3106179642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05f850c80a8e0351a3e5431811296338a148af39", + "fields": { + "code_commune_insee": "16162", + "nom_de_la_commune": "GURAT", + "code_postal": "16320", + "coordonnees_gps": [ + 45.4358693402, + 0.265230281525 + ], + "libelle_d_acheminement": "GURAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.265230281525, + 45.4358693402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f853ff1611bf9a43f45b65554761681ce723a42f", + "fields": { + "code_commune_insee": "16174", + "nom_de_la_commune": "JULIENNE", + "code_postal": "16200", + "coordonnees_gps": [ + 45.6903888196, + -0.228857639974 + ], + "libelle_d_acheminement": "JULIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.228857639974, + 45.6903888196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74a0fabb17dc6d2a992680f0a3ed59451bd7ff8c", + "fields": { + "code_commune_insee": "16182", + "nom_de_la_commune": "LESTERPS", + "code_postal": "16420", + "coordonnees_gps": [ + 46.012245179, + 0.791766541587 + ], + "libelle_d_acheminement": "LESTERPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.791766541587, + 46.012245179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "202bb27791dadcb319b332594edf2a865023f1c4", + "fields": { + "code_commune_insee": "16188", + "nom_de_la_commune": "LE LINDOIS", + "code_postal": "16310", + "coordonnees_gps": [ + 45.7508746711, + 0.590773518888 + ], + "libelle_d_acheminement": "LE LINDOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.590773518888, + 45.7508746711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33222d3d0917c33f35738bf357fefd42add9c689", + "fields": { + "ligne_5": "MAZIERES", + "code_commune_insee": "16192", + "libelle_d_acheminement": "TERRES DE HAUTE CHARENTE", + "code_postal": "16270", + "nom_de_la_commune": "TERRES DE HAUTE CHARENTE", + "coordonnees_gps": [ + 45.9100102437, + 0.573121657498 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.573121657498, + 45.9100102437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52aa027b72f0d653ba6e743e1654435c42eb253b", + "fields": { + "code_commune_insee": "16193", + "nom_de_la_commune": "LOUZAC ST ANDRE", + "code_postal": "16100", + "coordonnees_gps": [ + 45.7237365822, + -0.39737034952 + ], + "libelle_d_acheminement": "LOUZAC ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39737034952, + 45.7237365822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5e4d126c7446f3e572e2f7e89e3abe8f0b88404", + "fields": { + "ligne_5": "ST ANDRE", + "code_commune_insee": "16193", + "libelle_d_acheminement": "LOUZAC ST ANDRE", + "code_postal": "16100", + "nom_de_la_commune": "LOUZAC ST ANDRE", + "coordonnees_gps": [ + 45.7237365822, + -0.39737034952 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39737034952, + 45.7237365822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70250695404d8804771e408121056a685a361645", + "fields": { + "code_commune_insee": "16206", + "nom_de_la_commune": "MANSLE", + "code_postal": "16230", + "coordonnees_gps": [ + 45.8790882664, + 0.173859970412 + ], + "libelle_d_acheminement": "MANSLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.173859970412, + 45.8790882664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "171b4e0ab73ffb26f9c62b4b6bc6bad3e156b031", + "fields": { + "code_commune_insee": "16213", + "nom_de_la_commune": "MAZEROLLES", + "code_postal": "16310", + "coordonnees_gps": [ + 45.740251316, + 0.520413334007 + ], + "libelle_d_acheminement": "MAZEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.520413334007, + 45.740251316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb686aa145ae97627c0e8bd07c20e268740a5020", + "fields": { + "code_commune_insee": "16215", + "nom_de_la_commune": "MEDILLAC", + "code_postal": "16210", + "coordonnees_gps": [ + 45.2160430243, + 0.0140572392305 + ], + "libelle_d_acheminement": "MEDILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0140572392305, + 45.2160430243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da4e53c188b605d7e64f795c250c79ac21ff0cd7", + "fields": { + "code_commune_insee": "16218", + "nom_de_la_commune": "MESNAC", + "code_postal": "16370", + "coordonnees_gps": [ + 45.7758612161, + -0.342140667062 + ], + "libelle_d_acheminement": "MESNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.342140667062, + 45.7758612161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2916474ef755d635d9f30cd706f21eec7a0925eb", + "fields": { + "code_commune_insee": "16220", + "nom_de_la_commune": "LES METAIRIES", + "code_postal": "16200", + "coordonnees_gps": [ + 45.7072352152, + -0.175701106278 + ], + "libelle_d_acheminement": "LES METAIRIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.175701106278, + 45.7072352152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74f7b60410f5aa2d1cf37f6b675f57ef6ed29355", + "fields": { + "code_commune_insee": "16229", + "nom_de_la_commune": "MONTJEAN", + "code_postal": "16240", + "coordonnees_gps": [ + 46.0796805588, + 0.109828994536 + ], + "libelle_d_acheminement": "MONTJEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109828994536, + 46.0796805588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00a4a65b385d32e8e5858c8a7f9ddc0de320edc7", + "fields": { + "ligne_5": "ST AMANT DE MONTMOREAU", + "code_commune_insee": "16230", + "libelle_d_acheminement": "MONTMOREAU", + "code_postal": "16190", + "nom_de_la_commune": "MONTMOREAU", + "coordonnees_gps": [ + 45.4225777872, + 0.127349505692 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.127349505692, + 45.4225777872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3bb8de293344b2876ba25c12caa265e879ec4a1", + "fields": { + "code_commune_insee": "16236", + "nom_de_la_commune": "MOUTHIERS SUR BOEME", + "code_postal": "16440", + "coordonnees_gps": [ + 45.5576008503, + 0.122197442928 + ], + "libelle_d_acheminement": "MOUTHIERS SUR BOEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.122197442928, + 45.5576008503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b56e255ab1d4c460f9381368d29f9e540c5f730", + "fields": { + "ligne_5": "AIZECQ", + "code_commune_insee": "16242", + "libelle_d_acheminement": "NANTEUIL EN VALLEE", + "code_postal": "16700", + "nom_de_la_commune": "NANTEUIL EN VALLEE", + "coordonnees_gps": [ + 46.0061029111, + 0.32369225522 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32369225522, + 46.0061029111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31f3182e8b3c5f61399c8f4f489cd8278af74577", + "fields": { + "ligne_5": "POUGNE", + "code_commune_insee": "16242", + "libelle_d_acheminement": "NANTEUIL EN VALLEE", + "code_postal": "16700", + "nom_de_la_commune": "NANTEUIL EN VALLEE", + "coordonnees_gps": [ + 46.0061029111, + 0.32369225522 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32369225522, + 46.0061029111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc76257204a31664d83f9d7d896e4175009e1280", + "fields": { + "code_commune_insee": "16253", + "nom_de_la_commune": "PAIZAY NAUDOUIN EMBOURIE", + "code_postal": "16240", + "coordonnees_gps": [ + 46.0339157698, + 0.00154860718916 + ], + "libelle_d_acheminement": "PAIZAY NAUDOUIN EMBOURIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00154860718916, + 46.0339157698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd98f0a097143cc44592f0b38043893db7a09e0a", + "fields": { + "ligne_5": "EMBOURIE", + "code_commune_insee": "16253", + "libelle_d_acheminement": "PAIZAY NAUDOUIN EMBOURIE", + "code_postal": "16240", + "nom_de_la_commune": "PAIZAY NAUDOUIN EMBOURIE", + "coordonnees_gps": [ + 46.0339157698, + 0.00154860718916 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00154860718916, + 46.0339157698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "334e8e022462bb7fc0645d45aa18b5504ef04f22", + "fields": { + "code_commune_insee": "16254", + "nom_de_la_commune": "PALLUAUD", + "code_postal": "16390", + "coordonnees_gps": [ + 45.348051923, + 0.242588912427 + ], + "libelle_d_acheminement": "PALLUAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.242588912427, + 45.348051923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5143784335bc3a2b88e13fb26ca2ed5fdc9f8a0a", + "fields": { + "code_commune_insee": "16255", + "nom_de_la_commune": "PARZAC", + "code_postal": "16450", + "coordonnees_gps": [ + 45.9244427035, + 0.420746139781 + ], + "libelle_d_acheminement": "PARZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.420746139781, + 45.9244427035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6641ea03168a1b92a1c980edb4dc8b000642fce", + "fields": { + "code_commune_insee": "16261", + "nom_de_la_commune": "LES PINS", + "code_postal": "16260", + "coordonnees_gps": [ + 45.8124888516, + 0.36998318063 + ], + "libelle_d_acheminement": "LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36998318063, + 45.8124888516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71f4425056031448aac12b381247c2d78c271eb8", + "fields": { + "code_commune_insee": "16263", + "nom_de_la_commune": "PLASSAC ROUFFIAC", + "code_postal": "16250", + "coordonnees_gps": [ + 45.5245837373, + 0.0763918850702 + ], + "libelle_d_acheminement": "PLASSAC ROUFFIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0763918850702, + 45.5245837373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23c5e08e8d44ade77b648a8af80cd2f6554874b2", + "fields": { + "code_commune_insee": "16271", + "nom_de_la_commune": "PUYMOYEN", + "code_postal": "16400", + "coordonnees_gps": [ + 45.6160185943, + 0.172580597742 + ], + "libelle_d_acheminement": "PUYMOYEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.172580597742, + 45.6160185943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fac78265e04ab99be9798904860d582f269d383", + "fields": { + "code_commune_insee": "16275", + "nom_de_la_commune": "RANVILLE BREUILLAUD", + "code_postal": "16140", + "coordonnees_gps": [ + 45.9094260001, + -0.123952304555 + ], + "libelle_d_acheminement": "RANVILLE BREUILLAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.123952304555, + 45.9094260001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28a579fd6f53041bfb31a7de0612940758bbb057", + "fields": { + "code_commune_insee": "16277", + "nom_de_la_commune": "REPARSAC", + "code_postal": "16200", + "coordonnees_gps": [ + 45.7367542144, + -0.249443713353 + ], + "libelle_d_acheminement": "REPARSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.249443713353, + 45.7367542144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9de25064092f363c0dd64b0800e7f3fd3637af5b", + "fields": { + "code_commune_insee": "16283", + "nom_de_la_commune": "RONSENAC", + "code_postal": "16320", + "coordonnees_gps": [ + 45.4565998165, + 0.238466664692 + ], + "libelle_d_acheminement": "RONSENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.238466664692, + 45.4565998165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b467355a5d777e24b24ad4ba9c222abadd1ea69", + "fields": { + "code_commune_insee": "16287", + "nom_de_la_commune": "ROULLET ST ESTEPHE", + "code_postal": "16440", + "coordonnees_gps": [ + 45.5803788491, + 0.0313550273594 + ], + "libelle_d_acheminement": "ROULLET ST ESTEPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0313550273594, + 45.5803788491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19528fe3ded4d379f355e72732df9ad9c8f4bf74", + "fields": { + "code_commune_insee": "16289", + "nom_de_la_commune": "ROUSSINES", + "code_postal": "16310", + "coordonnees_gps": [ + 45.7228708787, + 0.617688422221 + ], + "libelle_d_acheminement": "ROUSSINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.617688422221, + 45.7228708787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57e4dff9fd18382dfe0c7edcad6d2462d51b8770", + "fields": { + "code_commune_insee": "16297", + "nom_de_la_commune": "GRAVES ST AMANT", + "code_postal": "16120", + "coordonnees_gps": [ + 45.6383664934, + -0.104970620109 + ], + "libelle_d_acheminement": "GRAVES ST AMANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.104970620109, + 45.6383664934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45b87a7b5e1940e2e9a06c00111447891d6e5b69", + "fields": { + "code_commune_insee": "16303", + "nom_de_la_commune": "ST BONNET", + "code_postal": "16300", + "coordonnees_gps": [ + 45.4739641055, + -0.0892788794153 + ], + "libelle_d_acheminement": "ST BONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0892788794153, + 45.4739641055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25b3377df286d5c8c54e24c288a7bf912c61879f", + "fields": { + "code_commune_insee": "16307", + "nom_de_la_commune": "ST CIERS SUR BONNIEURE", + "code_postal": "16230", + "coordonnees_gps": [ + 45.8648580415, + 0.247717734132 + ], + "libelle_d_acheminement": "ST CIERS SUR BONNIEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.247717734132, + 45.8648580415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60295be20cf98c23ecb2bcc3b8e3f9f4649ee5cb", + "fields": { + "code_commune_insee": "16308", + "nom_de_la_commune": "ST CLAUD", + "code_postal": "16450", + "coordonnees_gps": [ + 45.8982985604, + 0.471600426637 + ], + "libelle_d_acheminement": "ST CLAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.471600426637, + 45.8982985604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6253ecb358bd4401a546566c910f926f51c54378", + "fields": { + "code_commune_insee": "16312", + "nom_de_la_commune": "ST CYBARDEAUX", + "code_postal": "16170", + "coordonnees_gps": [ + 45.7726989644, + -0.0255477893935 + ], + "libelle_d_acheminement": "ST CYBARDEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0255477893935, + 45.7726989644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8afc04687cdec17131047b95963c25584e5aa490", + "fields": { + "code_commune_insee": "16323", + "nom_de_la_commune": "ST GERMAIN DE MONTBRON", + "code_postal": "16380", + "coordonnees_gps": [ + 45.6336571325, + 0.413391881443 + ], + "libelle_d_acheminement": "ST GERMAIN DE MONTBRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.413391881443, + 45.6336571325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c0c894bec4d4efcc507a548969a7085a6c73bc5", + "fields": { + "code_commune_insee": "16330", + "nom_de_la_commune": "ST LAURENT DE COGNAC", + "code_postal": "16100", + "coordonnees_gps": [ + 45.6950500912, + -0.394353792222 + ], + "libelle_d_acheminement": "ST LAURENT DE COGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.394353792222, + 45.6950500912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29453e9b27b08c7bf7ec07cdd8d8aacba10d463b", + "fields": { + "code_commune_insee": "16334", + "nom_de_la_commune": "ST MARTIAL", + "code_postal": "16190", + "coordonnees_gps": [ + 45.3713184572, + 0.0580275903451 + ], + "libelle_d_acheminement": "ST MARTIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0580275903451, + 45.3713184572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "167ca99cd85e9663814c98c0f2d589473a8b8284", + "fields": { + "ligne_5": "ST MEDARD", + "code_commune_insee": "16339", + "libelle_d_acheminement": "VAL D AUGE", + "code_postal": "16170", + "nom_de_la_commune": "VAL D AUGE", + "coordonnees_gps": [ + 45.8511416602, + -0.0872262855566 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0872262855566, + 45.8511416602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee96c447b027302e7583e268e2667d594ffd68a0", + "fields": { + "code_commune_insee": "16340", + "nom_de_la_commune": "ST MEME LES CARRIERES", + "code_postal": "16720", + "coordonnees_gps": [ + 45.6446845538, + -0.142912340299 + ], + "libelle_d_acheminement": "ST MEME LES CARRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.142912340299, + 45.6446845538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c8a2fc12a8d4e62536f2e1b87d4f585f16284f4", + "fields": { + "code_commune_insee": "16355", + "nom_de_la_commune": "ST SULPICE DE COGNAC", + "code_postal": "16370", + "coordonnees_gps": [ + 45.7590478369, + -0.409801090827 + ], + "libelle_d_acheminement": "ST SULPICE DE COGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.409801090827, + 45.7590478369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb2f65221603e2d8440cabf61e9aa434f761fb94", + "fields": { + "code_commune_insee": "16358", + "nom_de_la_commune": "ST YRIEIX SUR CHARENTE", + "code_postal": "16710", + "coordonnees_gps": [ + 45.6818416961, + 0.128271343194 + ], + "libelle_d_acheminement": "ST YRIEIX SUR CHARENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.128271343194, + 45.6818416961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7ddc9036a5417e97b6e18a1bb966f1b371a3bf0", + "fields": { + "code_commune_insee": "16363", + "nom_de_la_commune": "SAULGOND", + "code_postal": "16420", + "coordonnees_gps": [ + 45.9563701497, + 0.786714506522 + ], + "libelle_d_acheminement": "SAULGOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.786714506522, + 45.9563701497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e22889304390cf83c2f75a7301fec19f69d9999b", + "fields": { + "code_commune_insee": "16366", + "nom_de_la_commune": "SEGONZAC", + "code_postal": "16130", + "coordonnees_gps": [ + 45.6180187853, + -0.215554491203 + ], + "libelle_d_acheminement": "SEGONZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.215554491203, + 45.6180187853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ddf973dcf7f9015e10908e4ba56f27ade1614ad", + "fields": { + "code_commune_insee": "16368", + "nom_de_la_commune": "SERS", + "code_postal": "16410", + "coordonnees_gps": [ + 45.5853962792, + 0.318693870271 + ], + "libelle_d_acheminement": "SERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.318693870271, + 45.5853962792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bcb4de95698bea069031047b36eb026fd8a762f", + "fields": { + "code_commune_insee": "16377", + "nom_de_la_commune": "LA TACHE", + "code_postal": "16260", + "coordonnees_gps": [ + 45.8701965185, + 0.362525662176 + ], + "libelle_d_acheminement": "LA TACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.362525662176, + 45.8701965185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87bc36ff3991e50d09a716730ef4b1ac48b17803", + "fields": { + "code_commune_insee": "16383", + "nom_de_la_commune": "TOURRIERS", + "code_postal": "16560", + "coordonnees_gps": [ + 45.7929702195, + 0.1939985026 + ], + "libelle_d_acheminement": "TOURRIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1939985026, + 45.7929702195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0605241939e4f9d33ada26ddf9c130fdc5a4cdf", + "fields": { + "code_commune_insee": "16387", + "nom_de_la_commune": "TRIAC LAUTRAIT", + "code_postal": "16200", + "coordonnees_gps": [ + 45.6828749184, + -0.115750657737 + ], + "libelle_d_acheminement": "TRIAC LAUTRAIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.115750657737, + 45.6828749184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0bf9b0cb4e0c936e3ec6160276f6d36cd3da8ac", + "fields": { + "code_commune_insee": "16395", + "nom_de_la_commune": "VAUX ROUILLAC", + "code_postal": "16170", + "coordonnees_gps": [ + 45.7417093777, + -0.0897179678272 + ], + "libelle_d_acheminement": "VAUX ROUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0897179678272, + 45.7417093777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ee50724622c4ab22229281009330662c7a9608b", + "fields": { + "code_commune_insee": "16396", + "nom_de_la_commune": "VENTOUSE", + "code_postal": "16460", + "coordonnees_gps": [ + 45.9125661232, + 0.324665203428 + ], + "libelle_d_acheminement": "VENTOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.324665203428, + 45.9125661232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b15a64fecde4d075f70cd3c3496754e7b95d2b6", + "fields": { + "code_commune_insee": "16405", + "nom_de_la_commune": "VIGNOLLES", + "code_postal": "16300", + "coordonnees_gps": [ + 45.5067551698, + -0.0973753032134 + ], + "libelle_d_acheminement": "VIGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0973753032134, + 45.5067551698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c19d186cea559a6d5c8668c7a2862b6aaa358b56", + "fields": { + "code_commune_insee": "16412", + "nom_de_la_commune": "VILLEJOUBERT", + "code_postal": "16560", + "coordonnees_gps": [ + 45.8074616252, + 0.173120462313 + ], + "libelle_d_acheminement": "VILLEJOUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.173120462313, + 45.8074616252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "983ffb7bb16cd585b4506b4cbf2335ec2bb00207", + "fields": { + "code_commune_insee": "16415", + "nom_de_la_commune": "VINDELLE", + "code_postal": "16430", + "coordonnees_gps": [ + 45.7209359116, + 0.107728857643 + ], + "libelle_d_acheminement": "VINDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.107728857643, + 45.7209359116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "970ac5d8ac08272444e128536ec13d7479f4c504", + "fields": { + "code_commune_insee": "16425", + "nom_de_la_commune": "YVRAC ET MALLEYRAND", + "code_postal": "16110", + "coordonnees_gps": [ + 45.7349799572, + 0.466227721983 + ], + "libelle_d_acheminement": "YVRAC ET MALLEYRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.466227721983, + 45.7349799572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "055be00b9f963d501179792776605322e312685d", + "fields": { + "code_commune_insee": "17002", + "nom_de_la_commune": "AGUDELLE", + "code_postal": "17500", + "coordonnees_gps": [ + 45.3822931603, + -0.469634235538 + ], + "libelle_d_acheminement": "AGUDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.469634235538, + 45.3822931603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be559dbbdfb349811a8d05b97ab9010b8ec9fae7", + "fields": { + "code_commune_insee": "17003", + "nom_de_la_commune": "AIGREFEUILLE D AUNIS", + "code_postal": "17290", + "coordonnees_gps": [ + 46.116506287, + -0.944542003492 + ], + "libelle_d_acheminement": "AIGREFEUILLE D AUNIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.944542003492, + 46.116506287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06e82d88b5505692ff3a2a071629d9196c3ecdad", + "fields": { + "code_commune_insee": "17005", + "nom_de_la_commune": "ALLAS BOCAGE", + "code_postal": "17150", + "coordonnees_gps": [ + 45.3827600659, + -0.497845683209 + ], + "libelle_d_acheminement": "ALLAS BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.497845683209, + 45.3827600659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "918a73a5bea5771cf083442f8f7577ea2085bf95", + "fields": { + "code_commune_insee": "17008", + "nom_de_la_commune": "ANDILLY", + "code_postal": "17230", + "coordonnees_gps": [ + 46.2630044811, + -1.01765756102 + ], + "libelle_d_acheminement": "ANDILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01765756102, + 46.2630044811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0e0466cc282dbf165fc4bde6215851eb90363a9", + "fields": { + "ligne_5": "SERIGNY", + "code_commune_insee": "17008", + "libelle_d_acheminement": "ANDILLY", + "code_postal": "17230", + "nom_de_la_commune": "ANDILLY", + "coordonnees_gps": [ + 46.2630044811, + -1.01765756102 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01765756102, + 46.2630044811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eccab7e9fb1f8ad9fa658d6ecff7c30dbdb9fec0", + "fields": { + "code_commune_insee": "17011", + "nom_de_la_commune": "ANNEPONT", + "code_postal": "17350", + "coordonnees_gps": [ + 45.8451541952, + -0.606940524552 + ], + "libelle_d_acheminement": "ANNEPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.606940524552, + 45.8451541952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f59e0da2847cacea3248416ab397d1207a70130", + "fields": { + "code_commune_insee": "17015", + "nom_de_la_commune": "ARCES", + "code_postal": "17120", + "coordonnees_gps": [ + 45.5603861745, + -0.873664735629 + ], + "libelle_d_acheminement": "ARCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.873664735629, + 45.5603861745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36c777eda3ccb265eb31265259724861ad8876e1", + "fields": { + "code_commune_insee": "17017", + "nom_de_la_commune": "ARCHINGEAY", + "code_postal": "17380", + "coordonnees_gps": [ + 45.9283336011, + -0.717220453831 + ], + "libelle_d_acheminement": "ARCHINGEAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.717220453831, + 45.9283336011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d538c44a4972cee5492254c2471b9f11f0d37e1b", + "fields": { + "code_commune_insee": "17019", + "nom_de_la_commune": "ARS EN RE", + "code_postal": "17590", + "coordonnees_gps": [ + 46.2111995219, + -1.51504354145 + ], + "libelle_d_acheminement": "ARS EN RE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51504354145, + 46.2111995219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e92a847dee021430855705d739aa23dcf5dcbb55", + "fields": { + "code_commune_insee": "17033", + "nom_de_la_commune": "LA BARDE", + "code_postal": "17360", + "coordonnees_gps": [ + 45.1281301478, + -0.0633132974486 + ], + "libelle_d_acheminement": "LA BARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0633132974486, + 45.1281301478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84c44ebe99a0b01aedc4d4f0290cfb74ec6d23e9", + "fields": { + "code_commune_insee": "17035", + "nom_de_la_commune": "BAZAUGES", + "code_postal": "17490", + "coordonnees_gps": [ + 45.9171649237, + -0.164856392968 + ], + "libelle_d_acheminement": "BAZAUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.164856392968, + 45.9171649237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e98278f57d8a8a5ed7669036c3b81cf741704add", + "fields": { + "code_commune_insee": "17048", + "nom_de_la_commune": "BLANZAC LES MATHA", + "code_postal": "17160", + "coordonnees_gps": [ + 45.8719666521, + -0.354451050762 + ], + "libelle_d_acheminement": "BLANZAC LES MATHA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.354451050762, + 45.8719666521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37e699075bc8bc917829b813e68c51bcac4a8086", + "fields": { + "code_commune_insee": "17052", + "nom_de_la_commune": "BOISREDON", + "code_postal": "17150", + "coordonnees_gps": [ + 45.3174383056, + -0.543849481314 + ], + "libelle_d_acheminement": "BOISREDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.543849481314, + 45.3174383056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29ff180e9f640fa5e07d0d9c5947fb86bb92d933", + "fields": { + "code_commune_insee": "17057", + "nom_de_la_commune": "BOUHET", + "code_postal": "17540", + "coordonnees_gps": [ + 46.1629168745, + -0.85833337983 + ], + "libelle_d_acheminement": "BOUHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85833337983, + 46.1629168745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82241a585ba2f6dbfd08df4b76555b1e67f67b8e", + "fields": { + "code_commune_insee": "17068", + "nom_de_la_commune": "BRIE SOUS MORTAGNE", + "code_postal": "17120", + "coordonnees_gps": [ + 45.5025646841, + -0.737666203174 + ], + "libelle_d_acheminement": "BRIE SOUS MORTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.737666203174, + 45.5025646841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96d843ed8ecd7fd4a50fd2f44269c027879b518d", + "fields": { + "code_commune_insee": "17070", + "nom_de_la_commune": "BRIZAMBOURG", + "code_postal": "17770", + "coordonnees_gps": [ + 45.8065841077, + -0.476018876791 + ], + "libelle_d_acheminement": "BRIZAMBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.476018876791, + 45.8065841077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d97d38f53ccee49a949f089a13b8dc6e441d86d3", + "fields": { + "code_commune_insee": "17071", + "nom_de_la_commune": "LA BROUSSE", + "code_postal": "17160", + "coordonnees_gps": [ + 45.9023725634, + -0.365190879008 + ], + "libelle_d_acheminement": "LA BROUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.365190879008, + 45.9023725634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "448ebd45bc717e0326bcf9b48d1f7e0e9bde0dd7", + "fields": { + "code_commune_insee": "17072", + "nom_de_la_commune": "BURIE", + "code_postal": "17770", + "coordonnees_gps": [ + 45.777851301, + -0.428355211255 + ], + "libelle_d_acheminement": "BURIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.428355211255, + 45.777851301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad00258995f9b3c2ad2934f3ed20951596dd2a46", + "fields": { + "code_commune_insee": "17076", + "nom_de_la_commune": "CELLES", + "code_postal": "17520", + "coordonnees_gps": [ + 45.6100158658, + -0.386567366555 + ], + "libelle_d_acheminement": "CELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.386567366555, + 45.6100158658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45adbb072c2894c7544cc116d4b4b448017e1791", + "fields": { + "code_commune_insee": "17080", + "nom_de_la_commune": "CHAMBON", + "code_postal": "17290", + "coordonnees_gps": [ + 46.1091600914, + -0.845524833213 + ], + "libelle_d_acheminement": "CHAMBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.845524833213, + 46.1091600914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9951109423a8e1ed5159b7374facc33d93570fcc", + "fields": { + "code_commune_insee": "17082", + "nom_de_la_commune": "CHAMPAGNAC", + "code_postal": "17500", + "coordonnees_gps": [ + 45.4287046076, + -0.377244103646 + ], + "libelle_d_acheminement": "CHAMPAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.377244103646, + 45.4287046076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "873ccecd81a100e210e1272aa28256446eb3c1e3", + "fields": { + "code_commune_insee": "17089", + "nom_de_la_commune": "LA CHAPELLE DES POTS", + "code_postal": "17100", + "coordonnees_gps": [ + 45.7644455528, + -0.534261419507 + ], + "libelle_d_acheminement": "LA CHAPELLE DES POTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.534261419507, + 45.7644455528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "665cc8de3ec82c23efa4df678b6307ae90befe58", + "fields": { + "code_commune_insee": "17091", + "nom_de_la_commune": "CHARRON", + "code_postal": "17230", + "coordonnees_gps": [ + 46.2936903771, + -1.08092039856 + ], + "libelle_d_acheminement": "CHARRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08092039856, + 46.2936903771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d142d8dbedacffa9753e3ea6e6cd49bc0bbec4b", + "fields": { + "code_commune_insee": "17106", + "nom_de_la_commune": "CIERZAC", + "code_postal": "17520", + "coordonnees_gps": [ + 45.561206889, + -0.313695229366 + ], + "libelle_d_acheminement": "CIERZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.313695229366, + 45.561206889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "149c6918400320cb28cf49d5e494b630db2475a1", + "fields": { + "code_commune_insee": "17114", + "nom_de_la_commune": "COIVERT", + "code_postal": "17330", + "coordonnees_gps": [ + 46.0673425876, + -0.462617046723 + ], + "libelle_d_acheminement": "COIVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.462617046723, + 46.0673425876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dbbb1517bb6c107e6f23ee9e73201a282a7223f", + "fields": { + "code_commune_insee": "17120", + "nom_de_la_commune": "CORME ROYAL", + "code_postal": "17600", + "coordonnees_gps": [ + 45.7457848259, + -0.809484393759 + ], + "libelle_d_acheminement": "CORME ROYAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.809484393759, + 45.7457848259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e71b53e2757c090890d27cfba8dfb29f4359d9c", + "fields": { + "code_commune_insee": "17121", + "nom_de_la_commune": "LA COUARDE SUR MER", + "code_postal": "17670", + "coordonnees_gps": [ + 46.2010718838, + -1.4366169353 + ], + "libelle_d_acheminement": "LA COUARDE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4366169353, + 46.2010718838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b0ac18cbf5248e4d12ee76d94c2ea27fc67313c", + "fields": { + "code_commune_insee": "17136", + "nom_de_la_commune": "CROIX CHAPEAU", + "code_postal": "17220", + "coordonnees_gps": [ + 46.1029311754, + -0.998866254473 + ], + "libelle_d_acheminement": "CROIX CHAPEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.998866254473, + 46.1029311754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "756d3d7cd68dae4d5d5e43348e8d19ae40afb9c9", + "fields": { + "code_commune_insee": "17141", + "nom_de_la_commune": "DOMPIERRE SUR CHARENTE", + "code_postal": "17610", + "coordonnees_gps": [ + 45.7079445507, + -0.496852759842 + ], + "libelle_d_acheminement": "DOMPIERRE SUR CHARENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.496852759842, + 45.7079445507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7321a5070d0cde561ac1dadb7bc8b803885872e9", + "fields": { + "code_commune_insee": "17147", + "nom_de_la_commune": "ECOYEUX", + "code_postal": "17770", + "coordonnees_gps": [ + 45.8146188936, + -0.51932413355 + ], + "libelle_d_acheminement": "ECOYEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51932413355, + 45.8146188936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5183fb5320007b495b620e16df8bdf8996db3c97", + "fields": { + "code_commune_insee": "17160", + "nom_de_la_commune": "FLOIRAC", + "code_postal": "17120", + "coordonnees_gps": [ + 45.4763669964, + -0.747580624551 + ], + "libelle_d_acheminement": "FLOIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.747580624551, + 45.4763669964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0c26802142a73fb3e56c1a36c3bddd302e5d1ed", + "fields": { + "code_commune_insee": "17161", + "nom_de_la_commune": "LA FLOTTE", + "code_postal": "17630", + "coordonnees_gps": [ + 46.1793660462, + -1.32163012232 + ], + "libelle_d_acheminement": "LA FLOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32163012232, + 46.1793660462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2414e6ff36263fe5ae7151940b68ddf07da61174", + "fields": { + "code_commune_insee": "17163", + "nom_de_la_commune": "FONTAINES D OZILLAC", + "code_postal": "17500", + "coordonnees_gps": [ + 45.3786053942, + -0.382932208818 + ], + "libelle_d_acheminement": "FONTAINES D OZILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.382932208818, + 45.3786053942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "815d0bbd66a2b128998d5d4c6e928f27c52d4845", + "fields": { + "code_commune_insee": "17168", + "nom_de_la_commune": "FOURAS", + "code_postal": "17450", + "coordonnees_gps": [ + 45.9830753407, + -1.07700521801 + ], + "libelle_d_acheminement": "FOURAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07700521801, + 45.9830753407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fbe215b5cb2bc614b4e82dd48a4fd4ea6c805c0", + "fields": { + "code_commune_insee": "17178", + "nom_de_la_commune": "GIVREZAC", + "code_postal": "17260", + "coordonnees_gps": [ + 45.5409958957, + -0.632072583649 + ], + "libelle_d_acheminement": "GIVREZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.632072583649, + 45.5409958957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d493bf208544cd40bfd6f22daad75a5ea02b25f", + "fields": { + "code_commune_insee": "17180", + "nom_de_la_commune": "GOURVILLETTE", + "code_postal": "17490", + "coordonnees_gps": [ + 45.8892084332, + -0.222544638177 + ], + "libelle_d_acheminement": "GOURVILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.222544638177, + 45.8892084332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "576050e8849f032a7fa1064b25a92090df6accaf", + "fields": { + "code_commune_insee": "17181", + "nom_de_la_commune": "GRANDJEAN", + "code_postal": "17350", + "coordonnees_gps": [ + 45.8753248293, + -0.602567687993 + ], + "libelle_d_acheminement": "GRANDJEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.602567687993, + 45.8753248293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7ae29ab9f1eb6df535469707d35cb8a31a1ca65", + "fields": { + "code_commune_insee": "17186", + "nom_de_la_commune": "LE GUE D ALLERE", + "code_postal": "17540", + "coordonnees_gps": [ + 46.1876266957, + -0.870885218413 + ], + "libelle_d_acheminement": "LE GUE D ALLERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.870885218413, + 46.1876266957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c93b44fc17bedd339b6de2bba1a44c3a765da4da", + "fields": { + "code_commune_insee": "17188", + "nom_de_la_commune": "HAIMPS", + "code_postal": "17160", + "coordonnees_gps": [ + 45.8625742975, + -0.25542114028 + ], + "libelle_d_acheminement": "HAIMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25542114028, + 45.8625742975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5776116dd18de4b249f376faafa022d4c565b482", + "fields": { + "code_commune_insee": "17191", + "nom_de_la_commune": "LA JARD", + "code_postal": "17460", + "coordonnees_gps": [ + 45.6594237769, + -0.573779997432 + ], + "libelle_d_acheminement": "LA JARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.573779997432, + 45.6594237769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9a4e35d4de95bf4b75a3fe64ce590f1047b0291", + "fields": { + "code_commune_insee": "17194", + "nom_de_la_commune": "LA JARRIE", + "code_postal": "17220", + "coordonnees_gps": [ + 46.1239232012, + -1.01164042157 + ], + "libelle_d_acheminement": "LA JARRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01164042157, + 46.1239232012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "303433012c38623d280a9f50bf160c6d5122e22a", + "fields": { + "code_commune_insee": "17205", + "nom_de_la_commune": "LOIRE LES MARAIS", + "code_postal": "17870", + "coordonnees_gps": [ + 45.9927474473, + -0.927468396271 + ], + "libelle_d_acheminement": "LOIRE LES MARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.927468396271, + 45.9927474473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ed755bbb8277476baadd4ffb1331b75e381c84e", + "fields": { + "code_commune_insee": "17207", + "nom_de_la_commune": "LOIX", + "code_postal": "17111", + "coordonnees_gps": [ + 46.2206970303, + -1.44742224343 + ], + "libelle_d_acheminement": "LOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44742224343, + 46.2206970303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64889612eb3d669ec4825b2f21656d6e32dc9357", + "fields": { + "code_commune_insee": "17216", + "nom_de_la_commune": "LUSSANT", + "code_postal": "17430", + "coordonnees_gps": [ + 45.9428507855, + -0.822245809156 + ], + "libelle_d_acheminement": "LUSSANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.822245809156, + 45.9428507855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "476c21d5f5fbf962e62685d4b0c38440bddfa17e", + "fields": { + "code_commune_insee": "17217", + "nom_de_la_commune": "MACQUEVILLE", + "code_postal": "17490", + "coordonnees_gps": [ + 45.7959532794, + -0.203637900401 + ], + "libelle_d_acheminement": "MACQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.203637900401, + 45.7959532794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90d87a923ea224efc4354b628ab6f01f8bc52aeb", + "fields": { + "code_commune_insee": "17220", + "nom_de_la_commune": "MARIGNAC", + "code_postal": "17800", + "coordonnees_gps": [ + 45.5195994451, + -0.472009798859 + ], + "libelle_d_acheminement": "MARIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.472009798859, + 45.5195994451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4845293d28bdf7e3733b39f8d2944fc5c30723c0", + "fields": { + "code_commune_insee": "17231", + "nom_de_la_commune": "MESSAC", + "code_postal": "17130", + "coordonnees_gps": [ + 45.3464492913, + -0.313416526888 + ], + "libelle_d_acheminement": "MESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.313416526888, + 45.3464492913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df7853a0fd647ffdb8ed59db5ef8a9b0348fe38b", + "fields": { + "code_commune_insee": "17239", + "nom_de_la_commune": "MONS", + "code_postal": "17160", + "coordonnees_gps": [ + 45.8060909657, + -0.337202264129 + ], + "libelle_d_acheminement": "MONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.337202264129, + 45.8060909657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66db12c752b27fbcb0a11b852ed3e8ee0e09f88e", + "fields": { + "code_commune_insee": "17240", + "nom_de_la_commune": "MONTENDRE", + "code_postal": "17130", + "coordonnees_gps": [ + 45.2880726146, + -0.387479585943 + ], + "libelle_d_acheminement": "MONTENDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.387479585943, + 45.2880726146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d6e0545b40817a86b0819bfff7f7942d6ceb097", + "fields": { + "code_commune_insee": "17250", + "nom_de_la_commune": "MOSNAC", + "code_postal": "17240", + "coordonnees_gps": [ + 45.5027021197, + -0.541750931671 + ], + "libelle_d_acheminement": "MOSNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.541750931671, + 45.5027021197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9bd701c736181e8180bdcabd621ef7e2106c05f", + "fields": { + "code_commune_insee": "17253", + "nom_de_la_commune": "MURON", + "code_postal": "17430", + "coordonnees_gps": [ + 46.0112293883, + -0.863875531259 + ], + "libelle_d_acheminement": "MURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863875531259, + 46.0112293883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61ea19aaa470dc758ca80b88b014568d28888c6b", + "fields": { + "code_commune_insee": "17263", + "nom_de_la_commune": "NIEUL LE VIROUIL", + "code_postal": "17150", + "coordonnees_gps": [ + 45.4135796399, + -0.529109086758 + ], + "libelle_d_acheminement": "NIEUL LE VIROUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.529109086758, + 45.4135796399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5f877d6ab4f8a3c885ba1d84019666eef53e35e", + "fields": { + "code_commune_insee": "17265", + "nom_de_la_commune": "NIEULLE SUR SEUDRE", + "code_postal": "17600", + "coordonnees_gps": [ + 45.7567012734, + -1.02839049392 + ], + "libelle_d_acheminement": "NIEULLE SUR SEUDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02839049392, + 45.7567012734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e430890e0a093cd4f8db8dbb17220114a6f9ae39", + "fields": { + "code_commune_insee": "17268", + "nom_de_la_commune": "NUAILLE SUR BOUTONNE", + "code_postal": "17470", + "coordonnees_gps": [ + 46.0168530348, + -0.410350228438 + ], + "libelle_d_acheminement": "NUAILLE SUR BOUTONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.410350228438, + 46.0168530348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f325a9338c29b567e210ecbdc22178a25d88472a", + "fields": { + "code_commune_insee": "17274", + "nom_de_la_commune": "PERIGNY", + "code_postal": "17180", + "coordonnees_gps": [ + 46.1574551352, + -1.08886084864 + ], + "libelle_d_acheminement": "PERIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08886084864, + 46.1574551352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f041858677742d11fbe7e13b5146c6bafd95597", + "fields": { + "code_commune_insee": "17280", + "nom_de_la_commune": "PLASSAY", + "code_postal": "17250", + "coordonnees_gps": [ + 45.8251164352, + -0.728894727031 + ], + "libelle_d_acheminement": "PLASSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.728894727031, + 45.8251164352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b67a337b550e1334609855bf645afbacbc9a465a", + "fields": { + "code_commune_insee": "17281", + "nom_de_la_commune": "POLIGNAC", + "code_postal": "17210", + "coordonnees_gps": [ + 45.2800784632, + -0.305820678246 + ], + "libelle_d_acheminement": "POLIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.305820678246, + 45.2800784632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab6620ce3b2841bda0e4bef02d3dfcb450192d3f", + "fields": { + "code_commune_insee": "17282", + "nom_de_la_commune": "POMMIERS MOULONS", + "code_postal": "17130", + "coordonnees_gps": [ + 45.3278061357, + -0.348630198728 + ], + "libelle_d_acheminement": "POMMIERS MOULONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.348630198728, + 45.3278061357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "047dc4a270addec099107344867679fac0c06199", + "fields": { + "code_commune_insee": "17284", + "nom_de_la_commune": "PONT L ABBE D ARNOULT", + "code_postal": "17250", + "coordonnees_gps": [ + 45.8257228994, + -0.865695822843 + ], + "libelle_d_acheminement": "PONT L ABBE D ARNOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.865695822843, + 45.8257228994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "895785eca17a1a059b687d1078a8fd77c648e8e1", + "fields": { + "code_commune_insee": "17286", + "nom_de_la_commune": "LES PORTES EN RE", + "code_postal": "17880", + "coordonnees_gps": [ + 46.2420561008, + -1.50055338015 + ], + "libelle_d_acheminement": "LES PORTES EN RE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50055338015, + 46.2420561008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a2ae4c2862f82494e14c64c835f8b2cb914168e", + "fields": { + "code_commune_insee": "17293", + "nom_de_la_commune": "PUYRAVAULT", + "code_postal": "17700", + "coordonnees_gps": [ + 46.1338386234, + -0.817268568399 + ], + "libelle_d_acheminement": "PUYRAVAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.817268568399, + 46.1338386234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b092967c8ae800e0f9de1943b7054feb5f2cb00", + "fields": { + "code_commune_insee": "17301", + "nom_de_la_commune": "ROMAZIERES", + "code_postal": "17510", + "coordonnees_gps": [ + 45.9906722092, + -0.176069744425 + ], + "libelle_d_acheminement": "ROMAZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.176069744425, + 45.9906722092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "338c55b15d2c04fdb82c897489d228fd36f0802b", + "fields": { + "code_commune_insee": "17305", + "nom_de_la_commune": "ROUFFIGNAC", + "code_postal": "17130", + "coordonnees_gps": [ + 45.3361304693, + -0.452069072521 + ], + "libelle_d_acheminement": "ROUFFIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.452069072521, + 45.3361304693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "590dfd531520cbc06db5b4e2b4b1f6261b9feb26", + "fields": { + "code_commune_insee": "17308", + "nom_de_la_commune": "ST AGNANT", + "code_postal": "17620", + "coordonnees_gps": [ + 45.8677929392, + -0.952947405262 + ], + "libelle_d_acheminement": "ST AGNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.952947405262, + 45.8677929392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29d4c8abc42ed303abee03a1236481d375ac8d1c", + "fields": { + "code_commune_insee": "17316", + "nom_de_la_commune": "ST CIERS CHAMPAGNE", + "code_postal": "17520", + "coordonnees_gps": [ + 45.448387711, + -0.302733350511 + ], + "libelle_d_acheminement": "ST CIERS CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.302733350511, + 45.448387711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fef50db68a3bad7e83c121b3e49ba2c47221cbd8", + "fields": { + "code_commune_insee": "17335", + "nom_de_la_commune": "ST GEORGES DES AGOUTS", + "code_postal": "17150", + "coordonnees_gps": [ + 45.3755482053, + -0.650474546219 + ], + "libelle_d_acheminement": "ST GEORGES DES AGOUTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.650474546219, + 45.3755482053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deb25627b828ccc21942a84a4d3e8ef6406bdfd8", + "fields": { + "ligne_5": "CHAUCRE", + "code_commune_insee": "17337", + "libelle_d_acheminement": "ST GEORGES D OLERON", + "code_postal": "17190", + "nom_de_la_commune": "ST GEORGES D OLERON", + "coordonnees_gps": [ + 45.9762465553, + -1.32432969206 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32432969206, + 45.9762465553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33321f6af922697681537d449d32b66f9e075807", + "fields": { + "ligne_5": "ST GERMAIN DE MARENCENNES", + "code_commune_insee": "17340", + "libelle_d_acheminement": "ST PIERRE LA NOUE", + "code_postal": "17700", + "nom_de_la_commune": "ST PIERRE LA NOUE", + "coordonnees_gps": [ + 46.0675190065, + -0.79880232463 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.79880232463, + 46.0675190065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79a460d98b7865efaeef9084a8ec53439103ac48", + "fields": { + "ligne_5": "LUZAC", + "code_commune_insee": "17351", + "libelle_d_acheminement": "ST JUST LUZAC", + "code_postal": "17320", + "nom_de_la_commune": "ST JUST LUZAC", + "coordonnees_gps": [ + 45.7944979756, + -1.0542452381 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0542452381, + 45.7944979756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53a97b30b9fe60c1e5ebb92ee9b3700acf7fb315", + "fields": { + "code_commune_insee": "17354", + "nom_de_la_commune": "ST LEGER", + "code_postal": "17800", + "coordonnees_gps": [ + 45.6164955032, + -0.569645544567 + ], + "libelle_d_acheminement": "ST LEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.569645544567, + 45.6164955032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62e979ff4a3cc80ac8e34dfdd277a4bbe1713ca9", + "fields": { + "code_commune_insee": "17356", + "nom_de_la_commune": "ST LOUP", + "code_postal": "17380", + "coordonnees_gps": [ + 45.9997627208, + -0.647620851494 + ], + "libelle_d_acheminement": "ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.647620851494, + 45.9997627208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2f7ea191f35584498ef22bf33bc91285122498a", + "fields": { + "code_commune_insee": "17360", + "nom_de_la_commune": "STE MARIE DE RE", + "code_postal": "17740", + "coordonnees_gps": [ + 46.1560367496, + -1.32154377304 + ], + "libelle_d_acheminement": "STE MARIE DE RE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32154377304, + 46.1560367496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef56c00418605df5cd851390b77921b88728d12f", + "fields": { + "code_commune_insee": "17364", + "nom_de_la_commune": "ST MARTIAL SUR NE", + "code_postal": "17520", + "coordonnees_gps": [ + 45.5781186105, + -0.370718965842 + ], + "libelle_d_acheminement": "ST MARTIAL SUR NE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.370718965842, + 45.5781186105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26844d8501eb556c714662e6e12ee211ae0406ec", + "fields": { + "code_commune_insee": "17365", + "nom_de_la_commune": "ST MARTIN D ARY", + "code_postal": "17270", + "coordonnees_gps": [ + 45.2182774762, + -0.20120779956 + ], + "libelle_d_acheminement": "ST MARTIN D ARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.20120779956, + 45.2182774762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d09ab9fccc900ca347c86352529643364a4ff87", + "fields": { + "code_commune_insee": "17384", + "nom_de_la_commune": "ST PIERRE DE L ISLE", + "code_postal": "17330", + "coordonnees_gps": [ + 46.0285452845, + -0.444536284605 + ], + "libelle_d_acheminement": "ST PIERRE DE L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.444536284605, + 46.0285452845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "989f0730a9dfcffd5e3a268c2a4c186c8c19dc03", + "fields": { + "code_commune_insee": "17390", + "nom_de_la_commune": "STE RAMEE", + "code_postal": "17240", + "coordonnees_gps": [ + 45.419274916, + -0.664112168706 + ], + "libelle_d_acheminement": "STE RAMEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.664112168706, + 45.419274916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77191502970b1fedf887ff25d13b74b294a351da", + "fields": { + "code_commune_insee": "17393", + "nom_de_la_commune": "ST ROMAIN DE BENET", + "code_postal": "17600", + "coordonnees_gps": [ + 45.6918302258, + -0.85616928455 + ], + "libelle_d_acheminement": "ST ROMAIN DE BENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85616928455, + 45.6918302258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2b8490d8731a3d7b95ee6e1579f24b2976fa2aa", + "fields": { + "code_commune_insee": "17394", + "nom_de_la_commune": "ST SATURNIN DU BOIS", + "code_postal": "17700", + "coordonnees_gps": [ + 46.1401428747, + -0.665133364912 + ], + "libelle_d_acheminement": "ST SATURNIN DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.665133364912, + 46.1401428747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "742259821aa4b169df5316410e1ae15471f22d11", + "fields": { + "code_commune_insee": "17395", + "nom_de_la_commune": "ST SAUVANT", + "code_postal": "17610", + "coordonnees_gps": [ + 45.7324197214, + -0.497484915481 + ], + "libelle_d_acheminement": "ST SAUVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.497484915481, + 45.7324197214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5bb684e9f71a86840f0969052f36a8c88a1834e", + "fields": { + "ligne_5": "AGONNAY", + "code_commune_insee": "17397", + "libelle_d_acheminement": "ST SAVINIEN", + "code_postal": "17350", + "nom_de_la_commune": "ST SAVINIEN", + "coordonnees_gps": [ + 45.8862799418, + -0.677457125043 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.677457125043, + 45.8862799418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e78338017858da2fe20d4fc339cf63c7ed1bf61", + "fields": { + "ligne_5": "COULONGE SUR CHARENTE", + "code_commune_insee": "17397", + "libelle_d_acheminement": "ST SAVINIEN", + "code_postal": "17350", + "nom_de_la_commune": "ST SAVINIEN", + "coordonnees_gps": [ + 45.8862799418, + -0.677457125043 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.677457125043, + 45.8862799418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0f011087db894c75a25be4eea74778ed562a700", + "fields": { + "code_commune_insee": "17410", + "nom_de_la_commune": "ST THOMAS DE CONAC", + "code_postal": "17150", + "coordonnees_gps": [ + 45.391750965, + -0.699077246125 + ], + "libelle_d_acheminement": "ST THOMAS DE CONAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.699077246125, + 45.391750965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca42f20917d62fd651dfb66b98eff067796fd414", + "fields": { + "code_commune_insee": "17413", + "nom_de_la_commune": "ST VIVIEN", + "code_postal": "17220", + "coordonnees_gps": [ + 46.0762768567, + -1.04882454068 + ], + "libelle_d_acheminement": "ST VIVIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04882454068, + 46.0762768567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11868bf5d696bcc77ea488ef830da5f533c9e49b", + "fields": { + "code_commune_insee": "17415", + "nom_de_la_commune": "SAINTES", + "code_postal": "17100", + "coordonnees_gps": [ + 45.7422300162, + -0.649623035643 + ], + "libelle_d_acheminement": "SAINTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.649623035643, + 45.7422300162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "767ce85571ff19617324ae20ccf95ace5674101c", + "fields": { + "code_commune_insee": "17417", + "nom_de_la_commune": "SALIGNAC DE MIRAMBEAU", + "code_postal": "17130", + "coordonnees_gps": [ + 45.3507156869, + -0.481731376286 + ], + "libelle_d_acheminement": "SALIGNAC DE MIRAMBEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.481731376286, + 45.3507156869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21fa8e1cd10c363a4eeb63b79b2d361c14231fea", + "fields": { + "code_commune_insee": "17420", + "nom_de_la_commune": "SALLES SUR MER", + "code_postal": "17220", + "coordonnees_gps": [ + 46.1025147874, + -1.05196380014 + ], + "libelle_d_acheminement": "SALLES SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05196380014, + 46.1025147874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "810ec7ce91c6d7ed6caa927edf1efaa8af2f63de", + "fields": { + "code_commune_insee": "17422", + "nom_de_la_commune": "SEIGNE", + "code_postal": "17510", + "coordonnees_gps": [ + 45.9513360986, + -0.213550216959 + ], + "libelle_d_acheminement": "SEIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.213550216959, + 45.9513360986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea99863e66af5712533380c7a4efec98f3d2725d", + "fields": { + "code_commune_insee": "17425", + "nom_de_la_commune": "SEMUSSAC", + "code_postal": "17120", + "coordonnees_gps": [ + 45.5992753658, + -0.915156967296 + ], + "libelle_d_acheminement": "SEMUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.915156967296, + 45.5992753658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cc969594b6cfe003d0c61b67b0bd349fd66a77c", + "fields": { + "code_commune_insee": "17437", + "nom_de_la_commune": "TALMONT SUR GIRONDE", + "code_postal": "17120", + "coordonnees_gps": [ + 45.54345601, + -0.901968620389 + ], + "libelle_d_acheminement": "TALMONT SUR GIRONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.901968620389, + 45.54345601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93aa69b9bd594b4e1c17c3c9229a1102454a2a9e", + "fields": { + "code_commune_insee": "17438", + "nom_de_la_commune": "TANZAC", + "code_postal": "17260", + "coordonnees_gps": [ + 45.5575032026, + -0.624877512569 + ], + "libelle_d_acheminement": "TANZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.624877512569, + 45.5575032026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1828fe8a81a61e44b887abb38f9d7b258b6ccd7", + "fields": { + "code_commune_insee": "17443", + "nom_de_la_commune": "THAIRE", + "code_postal": "17290", + "coordonnees_gps": [ + 46.0773803387, + -1.00436533555 + ], + "libelle_d_acheminement": "THAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00436533555, + 46.0773803387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2976722f18b9373684139686b64458ee57389a64", + "fields": { + "code_commune_insee": "17446", + "nom_de_la_commune": "THORS", + "code_postal": "17160", + "coordonnees_gps": [ + 45.8252238601, + -0.316151081372 + ], + "libelle_d_acheminement": "THORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.316151081372, + 45.8252238601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abd18d547f3208549c37754803fd9f0a5be0a10d", + "fields": { + "ligne_5": "ST MAURICE DE LAURENCANNE", + "code_commune_insee": "17454", + "libelle_d_acheminement": "TUGERAS ST MAURICE", + "code_postal": "17130", + "nom_de_la_commune": "TUGERAS ST MAURICE", + "coordonnees_gps": [ + 45.3553716796, + -0.407478613071 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.407478613071, + 45.3553716796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74ad9c9f9f59e0760ffe1f243303ce3d642946cd", + "fields": { + "ligne_5": "CHERVETTES", + "code_commune_insee": "17457", + "libelle_d_acheminement": "LA DEVISE", + "code_postal": "17380", + "nom_de_la_commune": "LA DEVISE", + "coordonnees_gps": [ + 46.0532187101, + -0.753825189117 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.753825189117, + 46.0532187101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1b549848a181ef323c843515988a73694802bd3", + "fields": { + "code_commune_insee": "17458", + "nom_de_la_commune": "VANZAC", + "code_postal": "17500", + "coordonnees_gps": [ + 45.3586816198, + -0.298855553768 + ], + "libelle_d_acheminement": "VANZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.298855553768, + 45.3586816198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e90898e59ff697d1e65e57ff919047e942dcd047", + "fields": { + "code_commune_insee": "17459", + "nom_de_la_commune": "VARAIZE", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9226742862, + -0.426927895363 + ], + "libelle_d_acheminement": "VARAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.426927895363, + 45.9226742862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "800f1ee0ed056a82d2dfc61bba9f9bfdda5298e2", + "fields": { + "code_commune_insee": "17462", + "nom_de_la_commune": "VENERAND", + "code_postal": "17100", + "coordonnees_gps": [ + 45.7877540613, + -0.548759404902 + ], + "libelle_d_acheminement": "VENERAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.548759404902, + 45.7877540613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adad2ec8ec7711b0852f3f5e77db261d3fb6af03", + "fields": { + "code_commune_insee": "17464", + "nom_de_la_commune": "VERGNE", + "code_postal": "17330", + "coordonnees_gps": [ + 46.0698805334, + -0.514998278543 + ], + "libelle_d_acheminement": "VERGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.514998278543, + 46.0698805334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8af6377f9397a96ccb2a2afc7ab0ca28b80a23b0", + "fields": { + "code_commune_insee": "17477", + "nom_de_la_commune": "VILLIERS COUTURE", + "code_postal": "17510", + "coordonnees_gps": [ + 45.9838256674, + -0.152059311199 + ], + "libelle_d_acheminement": "VILLIERS COUTURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.152059311199, + 45.9838256674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f8055d5679ca181216d3e7b8badf995fc7a3ae9", + "fields": { + "code_commune_insee": "17478", + "nom_de_la_commune": "VINAX", + "code_postal": "17510", + "coordonnees_gps": [ + 46.0341296435, + -0.212146477613 + ], + "libelle_d_acheminement": "VINAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.212146477613, + 46.0341296435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf73a41fbb9bda218b3737e0e0a1046537e9c2c9", + "fields": { + "code_commune_insee": "17481", + "nom_de_la_commune": "VOISSAY", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9470700538, + -0.602074440108 + ], + "libelle_d_acheminement": "VOISSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.602074440108, + 45.9470700538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21f40645d966818849ec2b4909cfedbc0b6d7dbe", + "fields": { + "code_commune_insee": "17486", + "nom_de_la_commune": "LA BREE LES BAINS", + "code_postal": "17840", + "coordonnees_gps": [ + 46.0078502924, + -1.35092343182 + ], + "libelle_d_acheminement": "LA BREE LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35092343182, + 46.0078502924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67080da1a6a40e71606dc25c5f6c7a4ae335235a", + "fields": { + "code_commune_insee": "18011", + "nom_de_la_commune": "ARGENT SUR SAULDRE", + "code_postal": "18410", + "coordonnees_gps": [ + 47.5626482877, + 2.4300855539 + ], + "libelle_d_acheminement": "ARGENT SUR SAULDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4300855539, + 47.5626482877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fea63ccb2ae65a757b4c53fa53362ced4345a131", + "fields": { + "code_commune_insee": "18019", + "nom_de_la_commune": "AZY", + "code_postal": "18220", + "coordonnees_gps": [ + 47.1920688038, + 2.71043899045 + ], + "libelle_d_acheminement": "AZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71043899045, + 47.1920688038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d0fc83d158801e0486e6f83d8f580637f12aba1", + "fields": { + "code_commune_insee": "18021", + "nom_de_la_commune": "BANNEGON", + "code_postal": "18210", + "coordonnees_gps": [ + 46.8069473041, + 2.7278310908 + ], + "libelle_d_acheminement": "BANNEGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7278310908, + 46.8069473041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5197d44f9e5e65f24b7b4398844858983660e982", + "fields": { + "code_commune_insee": "18022", + "nom_de_la_commune": "BARLIEU", + "code_postal": "18260", + "coordonnees_gps": [ + 47.4937866179, + 2.62277593565 + ], + "libelle_d_acheminement": "BARLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62277593565, + 47.4937866179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95b1f9decbd50f866933f6307eb924f2718b569c", + "fields": { + "code_commune_insee": "18023", + "nom_de_la_commune": "BAUGY", + "code_postal": "18800", + "coordonnees_gps": [ + 47.0713406909, + 2.71558067108 + ], + "libelle_d_acheminement": "BAUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71558067108, + 47.0713406909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1b8ca476bbe2b844deba5cdf69851ad3cf2a9a2", + "fields": { + "code_commune_insee": "18025", + "nom_de_la_commune": "BEFFES", + "code_postal": "18320", + "coordonnees_gps": [ + 47.0930093416, + 3.00110748775 + ], + "libelle_d_acheminement": "BEFFES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00110748775, + 47.0930093416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fbe28c8d76acbb35294019c8227af6c87a1e617", + "fields": { + "code_commune_insee": "18029", + "nom_de_la_commune": "BESSAIS LE FROMENTAL", + "code_postal": "18210", + "coordonnees_gps": [ + 46.7475178311, + 2.77476595037 + ], + "libelle_d_acheminement": "BESSAIS LE FROMENTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77476595037, + 46.7475178311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f49ad1c228e834dc29fe63d33e36654c0472733e", + "fields": { + "code_commune_insee": "18036", + "nom_de_la_commune": "BRINAY", + "code_postal": "18120", + "coordonnees_gps": [ + 47.1640449226, + 2.11235689619 + ], + "libelle_d_acheminement": "BRINAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11235689619, + 47.1640449226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "901063a71aa3fef5e3aba1e2fa7c787c0dd2cd5a", + "fields": { + "code_commune_insee": "18044", + "nom_de_la_commune": "CERBOIS", + "code_postal": "18120", + "coordonnees_gps": [ + 47.1109466347, + 2.10554374746 + ], + "libelle_d_acheminement": "CERBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10554374746, + 47.1109466347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1523153dc5e52b1da03302ee4d388e75b0610160", + "fields": { + "code_commune_insee": "18047", + "nom_de_la_commune": "LA CHAPELLE D ANGILLON", + "code_postal": "18380", + "coordonnees_gps": [ + 47.3709734883, + 2.44003339096 + ], + "libelle_d_acheminement": "LA CHAPELLE D ANGILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44003339096, + 47.3709734883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcb7df995ce065fec9adc3991ec82759c3c7f33a", + "fields": { + "code_commune_insee": "18052", + "nom_de_la_commune": "CHARENTON DU CHER", + "code_postal": "18210", + "coordonnees_gps": [ + 46.74275373, + 2.65293994234 + ], + "libelle_d_acheminement": "CHARENTON DU CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65293994234, + 46.74275373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76acc82be34b3ba7e40c959fca3c8001d927df05", + "fields": { + "code_commune_insee": "18055", + "nom_de_la_commune": "CHAROST", + "code_postal": "18290", + "coordonnees_gps": [ + 46.9913097017, + 2.1285312337 + ], + "libelle_d_acheminement": "CHAROST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1285312337, + 46.9913097017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fe71d141f6c0238af35a531272413ed48d22368", + "fields": { + "ligne_5": "DEJOINTES", + "code_commune_insee": "18056", + "libelle_d_acheminement": "CHASSY", + "code_postal": "18800", + "nom_de_la_commune": "CHASSY", + "coordonnees_gps": [ + 47.0436728432, + 2.83281439128 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83281439128, + 47.0436728432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c49ebf70fd85d4782a1854e8efbc5db4e4488e3f", + "fields": { + "code_commune_insee": "18069", + "nom_de_la_commune": "COLOMBIERS", + "code_postal": "18200", + "coordonnees_gps": [ + 46.7001989151, + 2.5566301229 + ], + "libelle_d_acheminement": "COLOMBIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5566301229, + 46.7001989151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "117f14c30d4a5c53e6ad9009561c8eca78a7092e", + "fields": { + "code_commune_insee": "18077", + "nom_de_la_commune": "COUY", + "code_postal": "18140", + "coordonnees_gps": [ + 47.1087981251, + 2.8281137217 + ], + "libelle_d_acheminement": "COUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8281137217, + 47.1087981251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c15ed4a190fe49a318be301d6ab89462f9bb6c8", + "fields": { + "code_commune_insee": "18086", + "nom_de_la_commune": "DREVANT", + "code_postal": "18200", + "coordonnees_gps": [ + 46.6982881178, + 2.52340058849 + ], + "libelle_d_acheminement": "DREVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52340058849, + 46.6982881178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6be5135b928a3b967a1e0ac5b039e27ecc60aa1", + "fields": { + "code_commune_insee": "18098", + "nom_de_la_commune": "GARDEFORT", + "code_postal": "18300", + "coordonnees_gps": [ + 47.2604545544, + 2.82377502838 + ], + "libelle_d_acheminement": "GARDEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82377502838, + 47.2604545544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c8a210ce6d08f5061b65eeab859743bfbc4ca39", + "fields": { + "code_commune_insee": "18110", + "nom_de_la_commune": "HERRY", + "code_postal": "18140", + "coordonnees_gps": [ + 47.2284204871, + 2.9415312436 + ], + "libelle_d_acheminement": "HERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9415312436, + 47.2284204871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e66b2d9b33a5769282e63edf4348a8c2410e9b44", + "fields": { + "code_commune_insee": "18113", + "nom_de_la_commune": "IGNOL", + "code_postal": "18350", + "coordonnees_gps": [ + 46.9576245517, + 2.86419734171 + ], + "libelle_d_acheminement": "IGNOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86419734171, + 46.9576245517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "641567fd07fd8bbc13f90df01d38a06394547be0", + "fields": { + "code_commune_insee": "18114", + "nom_de_la_commune": "INEUIL", + "code_postal": "18160", + "coordonnees_gps": [ + 46.7689871764, + 2.27606025434 + ], + "libelle_d_acheminement": "INEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27606025434, + 46.7689871764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdf56d323728eb7aca997c3cbd38cf130fe6be8e", + "fields": { + "code_commune_insee": "18122", + "nom_de_la_commune": "LAPAN", + "code_postal": "18340", + "coordonnees_gps": [ + 46.9209106861, + 2.29549352585 + ], + "libelle_d_acheminement": "LAPAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29549352585, + 46.9209106861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0acdbbb3aafbd640bfed85f4b3be3098b9b37c87", + "fields": { + "code_commune_insee": "18127", + "nom_de_la_commune": "LIGNIERES", + "code_postal": "18160", + "coordonnees_gps": [ + 46.7617210337, + 2.20479418633 + ], + "libelle_d_acheminement": "LIGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20479418633, + 46.7617210337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7608ff3dab59dcb8e1b90ae997a17547fd47eee", + "fields": { + "code_commune_insee": "18144", + "nom_de_la_commune": "MENETOU RATEL", + "code_postal": "18300", + "coordonnees_gps": [ + 47.3478965782, + 2.75157035853 + ], + "libelle_d_acheminement": "MENETOU RATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75157035853, + 47.3478965782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46bd4a652ab0d3612f4edeaa1894032e2d4f87c6", + "fields": { + "code_commune_insee": "18149", + "nom_de_la_commune": "MERY ES BOIS", + "code_postal": "18380", + "coordonnees_gps": [ + 47.3086144324, + 2.37874179175 + ], + "libelle_d_acheminement": "MERY ES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37874179175, + 47.3086144324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b093444790d8231b1304050da106e1c559b43aa5", + "fields": { + "code_commune_insee": "18183", + "nom_de_la_commune": "LE PONDY", + "code_postal": "18210", + "coordonnees_gps": [ + 46.7998704926, + 2.63813016663 + ], + "libelle_d_acheminement": "LE PONDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63813016663, + 46.7998704926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a386027ac201fb569f8832fe374dd6a870c5e3b8", + "fields": { + "code_commune_insee": "18193", + "nom_de_la_commune": "REZAY", + "code_postal": "18170", + "coordonnees_gps": [ + 46.6725219424, + 2.17463233251 + ], + "libelle_d_acheminement": "REZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17463233251, + 46.6725219424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c6f2d1d8115d5531b93bee1daff31ee9ebd7231", + "fields": { + "code_commune_insee": "18207", + "nom_de_la_commune": "ST FLORENT SUR CHER", + "code_postal": "18400", + "coordonnees_gps": [ + 46.9913946761, + 2.25409311039 + ], + "libelle_d_acheminement": "ST FLORENT SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25409311039, + 46.9913946761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1ab68348c6e903cbfbfb4435f19b6e0dbdb44b9", + "fields": { + "code_commune_insee": "18209", + "nom_de_la_commune": "ST GEORGES DE POISIEUX", + "code_postal": "18200", + "coordonnees_gps": [ + 46.6832008459, + 2.4809860973 + ], + "libelle_d_acheminement": "ST GEORGES DE POISIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4809860973, + 46.6832008459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aec2a19a09caf28c27816352d10860036d50ceca", + "fields": { + "code_commune_insee": "18210", + "nom_de_la_commune": "ST GEORGES SUR LA PREE", + "code_postal": "18100", + "coordonnees_gps": [ + 47.2199114874, + 1.94950200368 + ], + "libelle_d_acheminement": "ST GEORGES SUR LA PREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94950200368, + 47.2199114874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "648edaf45a2f1e2a509846d43045d4c24f0cf50d", + "fields": { + "code_commune_insee": "18213", + "nom_de_la_commune": "ST GERMAIN DU PUY", + "code_postal": "18390", + "coordonnees_gps": [ + 47.1076641241, + 2.47889343421 + ], + "libelle_d_acheminement": "ST GERMAIN DU PUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47889343421, + 47.1076641241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7bcb951e5c794550f146a08e9e977966813a47d", + "fields": { + "code_commune_insee": "18214", + "nom_de_la_commune": "ST HILAIRE DE COURT", + "code_postal": "18100", + "coordonnees_gps": [ + 47.2008571175, + 2.00341879677 + ], + "libelle_d_acheminement": "ST HILAIRE DE COURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00341879677, + 47.2008571175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efc1b38fbdacb9a72e6943a944158dc789b3b31a", + "fields": { + "code_commune_insee": "18219", + "nom_de_la_commune": "ST LAURENT", + "code_postal": "18330", + "coordonnees_gps": [ + 47.2418416122, + 2.18465127619 + ], + "libelle_d_acheminement": "ST LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18465127619, + 47.2418416122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57d5f8cf4fd28c84c908cd8ffdd316f0b365acae", + "fields": { + "code_commune_insee": "18224", + "nom_de_la_commune": "ST MARTIN DES CHAMPS", + "code_postal": "18140", + "coordonnees_gps": [ + 47.173174971, + 2.93500889323 + ], + "libelle_d_acheminement": "ST MARTIN DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93500889323, + 47.173174971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c123a15228e44ded48bb6614a5008eecdee4530", + "fields": { + "code_commune_insee": "18227", + "nom_de_la_commune": "STE MONTAINE", + "code_postal": "18700", + "coordonnees_gps": [ + 47.5015231113, + 2.32162111568 + ], + "libelle_d_acheminement": "STE MONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32162111568, + 47.5015231113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef3267f8c90940b23e38cf89a611f12b59b224cf", + "fields": { + "code_commune_insee": "18229", + "nom_de_la_commune": "ST PALAIS", + "code_postal": "18110", + "coordonnees_gps": [ + 47.2489222519, + 2.41081023513 + ], + "libelle_d_acheminement": "ST PALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41081023513, + 47.2489222519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d76c0c13ac4341bb7f74a579d28199125bfcb516", + "fields": { + "code_commune_insee": "18232", + "nom_de_la_commune": "ST PRIEST LA MARCHE", + "code_postal": "18370", + "coordonnees_gps": [ + 46.4490350158, + 2.18414967239 + ], + "libelle_d_acheminement": "ST PRIEST LA MARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18414967239, + 46.4490350158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6c16b1a9f0f625d9717a3ac815bd543e141b3e6", + "fields": { + "code_commune_insee": "18234", + "nom_de_la_commune": "ST SATURNIN", + "code_postal": "18370", + "coordonnees_gps": [ + 46.5062478492, + 2.24046753513 + ], + "libelle_d_acheminement": "ST SATURNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24046753513, + 46.5062478492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6decb1c6a70a4b5322d961a736721e0eb1068fa", + "fields": { + "code_commune_insee": "18244", + "nom_de_la_commune": "SAUGY", + "code_postal": "18290", + "coordonnees_gps": [ + 46.9677472143, + 2.11337504999 + ], + "libelle_d_acheminement": "SAUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11337504999, + 46.9677472143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00be751186521df78d71b4b7eb2daae1e136ed89", + "fields": { + "code_commune_insee": "18245", + "nom_de_la_commune": "SAULZAIS LE POTIER", + "code_postal": "18360", + "coordonnees_gps": [ + 46.6018523222, + 2.49199571585 + ], + "libelle_d_acheminement": "SAULZAIS LE POTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49199571585, + 46.6018523222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd8767aa52d629da21715c832ba2b1dea16899df", + "fields": { + "code_commune_insee": "18250", + "nom_de_la_commune": "SERRUELLES", + "code_postal": "18190", + "coordonnees_gps": [ + 46.8824777068, + 2.37986164458 + ], + "libelle_d_acheminement": "SERRUELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37986164458, + 46.8824777068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d00442c4f3e068787d205d518cb670a6f711d344", + "fields": { + "code_commune_insee": "18251", + "nom_de_la_commune": "SEVRY", + "code_postal": "18140", + "coordonnees_gps": [ + 47.1381447281, + 2.82322289822 + ], + "libelle_d_acheminement": "SEVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82322289822, + 47.1381447281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e6da14f0a2c1b91950b70158437c78c7043a863", + "fields": { + "code_commune_insee": "18256", + "nom_de_la_commune": "SUBLIGNY", + "code_postal": "18260", + "coordonnees_gps": [ + 47.3955907367, + 2.7523718933 + ], + "libelle_d_acheminement": "SUBLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7523718933, + 47.3955907367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "389a368eeecafbeab082f5af478fc61a785ddab7", + "fields": { + "code_commune_insee": "18261", + "nom_de_la_commune": "THAUMIERS", + "code_postal": "18210", + "coordonnees_gps": [ + 46.8218263799, + 2.67004544881 + ], + "libelle_d_acheminement": "THAUMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67004544881, + 46.8218263799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "526d9be7bcd092b3b8b95db7a1ddab59e7b1f5d2", + "fields": { + "code_commune_insee": "18270", + "nom_de_la_commune": "VALLENAY", + "code_postal": "18190", + "coordonnees_gps": [ + 46.7727933629, + 2.37854027909 + ], + "libelle_d_acheminement": "VALLENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37854027909, + 46.7727933629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b846d3f159afa2d57b4a4ed45a1b6ea0d6a6654b", + "fields": { + "ligne_5": "BIGNY VALLENAY", + "code_commune_insee": "18270", + "libelle_d_acheminement": "VALLENAY", + "code_postal": "18190", + "nom_de_la_commune": "VALLENAY", + "coordonnees_gps": [ + 46.7727933629, + 2.37854027909 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37854027909, + 46.7727933629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b226bd3829f2dcf6b87398ef189ff918df97af5c", + "fields": { + "code_commune_insee": "18271", + "nom_de_la_commune": "VASSELAY", + "code_postal": "18110", + "coordonnees_gps": [ + 47.1606916636, + 2.3864256936 + ], + "libelle_d_acheminement": "VASSELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3864256936, + 47.1606916636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00200f4593eb75cfc2b1fe67d5b34efc1f383700", + "fields": { + "code_commune_insee": "18272", + "nom_de_la_commune": "VEAUGUES", + "code_postal": "18300", + "coordonnees_gps": [ + 47.2655815273, + 2.75561064588 + ], + "libelle_d_acheminement": "VEAUGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75561064588, + 47.2655815273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58aae2d393edc9daba81cc1087ae46df69a7cd14", + "fields": { + "code_commune_insee": "18282", + "nom_de_la_commune": "VILLABON", + "code_postal": "18800", + "coordonnees_gps": [ + 47.1024871236, + 2.67863881659 + ], + "libelle_d_acheminement": "VILLABON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67863881659, + 47.1024871236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25a5a910a197d564890b00bb8036f52a0626cf8b", + "fields": { + "code_commune_insee": "18284", + "nom_de_la_commune": "VILLEGENON", + "code_postal": "18260", + "coordonnees_gps": [ + 47.4175834406, + 2.59936995832 + ], + "libelle_d_acheminement": "VILLEGENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59936995832, + 47.4175834406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0790914e6b0d5cbb3b77ab12b5dcbce1a3a3e7d4", + "fields": { + "code_commune_insee": "19007", + "nom_de_la_commune": "ALTILLAC", + "code_postal": "19120", + "coordonnees_gps": [ + 44.9804416467, + 1.86889705524 + ], + "libelle_d_acheminement": "ALTILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86889705524, + 44.9804416467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "007850140f5440dca77fbd33ac87538be6713352", + "fields": { + "ligne_5": "ST BAZILE DE LA ROCHE", + "code_commune_insee": "19010", + "libelle_d_acheminement": "ARGENTAT SUR DORDOGNE", + "code_postal": "19320", + "nom_de_la_commune": "ARGENTAT SUR DORDOGNE", + "coordonnees_gps": [ + 45.1011667634, + 1.93436308377 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93436308377, + 45.1011667634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "688aadadd1c61af01bbeb7ffaf9f37a3e59df52c", + "fields": { + "ligne_5": "ARGENTAT", + "code_commune_insee": "19010", + "libelle_d_acheminement": "ARGENTAT SUR DORDOGNE", + "code_postal": "19400", + "nom_de_la_commune": "ARGENTAT SUR DORDOGNE", + "coordonnees_gps": [ + 45.1011667634, + 1.93436308377 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93436308377, + 45.1011667634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9155b0f63b4ae97203de18829f10238e8d181d1e", + "fields": { + "code_commune_insee": "19012", + "nom_de_la_commune": "ASTAILLAC", + "code_postal": "19120", + "coordonnees_gps": [ + 44.9515500002, + 1.83033967926 + ], + "libelle_d_acheminement": "ASTAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83033967926, + 44.9515500002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caf1c6a729e73b3ff2cc2a7594d4fc9914a7f9a2", + "fields": { + "code_commune_insee": "19017", + "nom_de_la_commune": "BASSIGNAC LE BAS", + "code_postal": "19430", + "coordonnees_gps": [ + 45.0251375943, + 1.86876602188 + ], + "libelle_d_acheminement": "BASSIGNAC LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86876602188, + 45.0251375943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19691d52575bb00ee9d724e832f0c4e4b6c077c0", + "fields": { + "ligne_5": "ST MATHURIN LEOBAZEL", + "code_commune_insee": "19034", + "libelle_d_acheminement": "CAMPS ST MATHURIN LEOBAZEL", + "code_postal": "19430", + "nom_de_la_commune": "CAMPS ST MATHURIN LEOBAZEL", + "coordonnees_gps": [ + 44.9925849683, + 1.99504075347 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99504075347, + 44.9925849683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fbdedf7fa175aa4784c42273a2fe1b21397f233", + "fields": { + "code_commune_insee": "19048", + "nom_de_la_commune": "LE CHASTANG", + "code_postal": "19190", + "coordonnees_gps": [ + 45.1752926501, + 1.73283876352 + ], + "libelle_d_acheminement": "LE CHASTANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73283876352, + 45.1752926501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06420517fd2c9ac7d43de301a1ffa582bd0bb04f", + "fields": { + "code_commune_insee": "19052", + "nom_de_la_commune": "CHAVANAC", + "code_postal": "19290", + "coordonnees_gps": [ + 45.6193925333, + 2.09923298827 + ], + "libelle_d_acheminement": "CHAVANAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09923298827, + 45.6193925333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "930e5d36a2f659e2adeb70ec7082a1b0775b35d7", + "fields": { + "code_commune_insee": "19053", + "nom_de_la_commune": "CHAVEROCHE", + "code_postal": "19200", + "coordonnees_gps": [ + 45.56551046, + 2.25206611427 + ], + "libelle_d_acheminement": "CHAVEROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25206611427, + 45.56551046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "128e6f7410704669558359b3b92b283c41b790f4", + "fields": { + "code_commune_insee": "19054", + "nom_de_la_commune": "CHENAILLER MASCHEIX", + "code_postal": "19120", + "coordonnees_gps": [ + 45.0608264132, + 1.82435897673 + ], + "libelle_d_acheminement": "CHENAILLER MASCHEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82435897673, + 45.0608264132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "442c815b600e66d59b559a920c444b9c712b02b9", + "fields": { + "code_commune_insee": "19070", + "nom_de_la_commune": "DARNETS", + "code_postal": "19300", + "coordonnees_gps": [ + 45.4241971768, + 2.11309756046 + ], + "libelle_d_acheminement": "DARNETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11309756046, + 45.4241971768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e537b3068550b0cfc4190b64e68667a81ef1024", + "fields": { + "code_commune_insee": "19074", + "nom_de_la_commune": "L EGLISE AUX BOIS", + "code_postal": "19170", + "coordonnees_gps": [ + 45.657582706, + 1.7964084025 + ], + "libelle_d_acheminement": "L EGLISE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7964084025, + 45.657582706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22dcef40528eb7cb3989e009fa1235e71388f023", + "fields": { + "code_commune_insee": "19076", + "nom_de_la_commune": "ESPARTIGNAC", + "code_postal": "19140", + "coordonnees_gps": [ + 45.3992793069, + 1.5950172659 + ], + "libelle_d_acheminement": "ESPARTIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5950172659, + 45.3992793069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "268365425dd72f42060474132b581eb1c41e046e", + "fields": { + "code_commune_insee": "19078", + "nom_de_la_commune": "ESTIVAUX", + "code_postal": "19410", + "coordonnees_gps": [ + 45.318970397, + 1.49504198912 + ], + "libelle_d_acheminement": "ESTIVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49504198912, + 45.318970397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fd47976a72f47b930b83d7db7c130d5115d274f", + "fields": { + "code_commune_insee": "19084", + "nom_de_la_commune": "FORGES", + "code_postal": "19380", + "coordonnees_gps": [ + 45.1588528226, + 1.86527330178 + ], + "libelle_d_acheminement": "FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86527330178, + 45.1588528226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9f695d3e041cd0f8d1da70203863318b9e8c905", + "fields": { + "code_commune_insee": "19087", + "nom_de_la_commune": "GOURDON MURAT", + "code_postal": "19170", + "coordonnees_gps": [ + 45.5473595192, + 1.9000182869 + ], + "libelle_d_acheminement": "GOURDON MURAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9000182869, + 45.5473595192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b1e9134532c6229eac397477de579c03e38c11a", + "fields": { + "code_commune_insee": "19091", + "nom_de_la_commune": "HAUTEFAGE", + "code_postal": "19400", + "coordonnees_gps": [ + 45.0916740521, + 1.9924978016 + ], + "libelle_d_acheminement": "HAUTEFAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9924978016, + 45.0916740521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e634bddf192f34d760330568ea8a4ffcbd53c5ff", + "fields": { + "code_commune_insee": "19094", + "nom_de_la_commune": "JUILLAC", + "code_postal": "19350", + "coordonnees_gps": [ + 45.3226150546, + 1.29232118318 + ], + "libelle_d_acheminement": "JUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29232118318, + 45.3226150546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "644275118b5c869a1b8354deb75b83be71ac57b6", + "fields": { + "code_commune_insee": "19095", + "nom_de_la_commune": "LACELLE", + "code_postal": "19170", + "coordonnees_gps": [ + 45.6427861496, + 1.83264328389 + ], + "libelle_d_acheminement": "LACELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83264328389, + 45.6427861496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "071428e135885596a5de69455d6c5fc3532e55f3", + "fields": { + "code_commune_insee": "19100", + "nom_de_la_commune": "LAGRAULIERE", + "code_postal": "19700", + "coordonnees_gps": [ + 45.3552708977, + 1.62385425403 + ], + "libelle_d_acheminement": "LAGRAULIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62385425403, + 45.3552708977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63f86e9ea61455c776c9749a04c0bebf23d4f708", + "fields": { + "code_commune_insee": "19103", + "nom_de_la_commune": "LAMAZIERE HAUTE", + "code_postal": "19340", + "coordonnees_gps": [ + 45.6754049017, + 2.38584451894 + ], + "libelle_d_acheminement": "LAMAZIERE HAUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38584451894, + 45.6754049017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e116448590ea289295f69df4b9690958a53d06dc", + "fields": { + "code_commune_insee": "19116", + "nom_de_la_commune": "LIOURDRES", + "code_postal": "19120", + "coordonnees_gps": [ + 44.9374662553, + 1.80814651147 + ], + "libelle_d_acheminement": "LIOURDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80814651147, + 44.9374662553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "763f1272dc506935cd0004a8e19f43f3921eb12c", + "fields": { + "code_commune_insee": "19117", + "nom_de_la_commune": "LISSAC SUR COUZE", + "code_postal": "19600", + "coordonnees_gps": [ + 45.1101297922, + 1.45969694671 + ], + "libelle_d_acheminement": "LISSAC SUR COUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45969694671, + 45.1101297922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f9c29653df5a3d95551e23520d7a53a65be6eae", + "fields": { + "ligne_5": "MALEMORT SUR CORREZE", + "code_commune_insee": "19123", + "libelle_d_acheminement": "MALEMORT", + "code_postal": "19360", + "nom_de_la_commune": "MALEMORT", + "coordonnees_gps": [ + 45.176099789, + 1.58386372231 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58386372231, + 45.176099789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1ca2d27c24a8fe296848cf0fa376328434a70ef", + "fields": { + "code_commune_insee": "19129", + "nom_de_la_commune": "MASSERET", + "code_postal": "19510", + "coordonnees_gps": [ + 45.5414714695, + 1.51966936931 + ], + "libelle_d_acheminement": "MASSERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51966936931, + 45.5414714695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cccfe473fd0cbaea87a91af14ac93df4557199b", + "fields": { + "code_commune_insee": "19135", + "nom_de_la_commune": "MESTES", + "code_postal": "19200", + "coordonnees_gps": [ + 45.4933738169, + 2.31754187362 + ], + "libelle_d_acheminement": "MESTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31754187362, + 45.4933738169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0088143befe962bddeda93a2a674939ac12048a3", + "fields": { + "code_commune_insee": "19143", + "nom_de_la_commune": "MONTAIGNAC ST HIPPOLYTE", + "code_postal": "19300", + "coordonnees_gps": [ + 45.3462288973, + 2.01582895294 + ], + "libelle_d_acheminement": "MONTAIGNAC ST HIPPOLYTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01582895294, + 45.3462288973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e46f66516305ca4498ce2ddedd78c199bda3c187", + "fields": { + "code_commune_insee": "19145", + "nom_de_la_commune": "MOUSTIER VENTADOUR", + "code_postal": "19300", + "coordonnees_gps": [ + 45.3794049102, + 2.10092572655 + ], + "libelle_d_acheminement": "MOUSTIER VENTADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10092572655, + 45.3794049102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6329c2f4b2b30e3de8b3fa1b910141c225d900ce", + "fields": { + "code_commune_insee": "19146", + "nom_de_la_commune": "NAVES", + "code_postal": "19460", + "coordonnees_gps": [ + 45.3149479371, + 1.75065002598 + ], + "libelle_d_acheminement": "NAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75065002598, + 45.3149479371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8aea90a5be86b368b2dc528e69a9123a15030c3", + "fields": { + "code_commune_insee": "19155", + "nom_de_la_commune": "ORLIAC DE BAR", + "code_postal": "19390", + "coordonnees_gps": [ + 45.3747450967, + 1.80540631183 + ], + "libelle_d_acheminement": "ORLIAC DE BAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80540631183, + 45.3747450967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e451297d22d0a4bfc5fda527acd8a3256374fa6", + "fields": { + "code_commune_insee": "19163", + "nom_de_la_commune": "LE PESCHER", + "code_postal": "19190", + "coordonnees_gps": [ + 45.0826622801, + 1.75970042346 + ], + "libelle_d_acheminement": "LE PESCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75970042346, + 45.0826622801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86fd776ae3486ee7fbc700621a5d27545a1757b2", + "fields": { + "code_commune_insee": "19165", + "nom_de_la_commune": "PEYRISSAC", + "code_postal": "19260", + "coordonnees_gps": [ + 45.5060455559, + 1.694117673 + ], + "libelle_d_acheminement": "PEYRISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.694117673, + 45.5060455559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "879d9d30a927556af2d95c3b56c53e186880a7d8", + "fields": { + "code_commune_insee": "19171", + "nom_de_la_commune": "REYGADE", + "code_postal": "19430", + "coordonnees_gps": [ + 45.019999835, + 1.90382640556 + ], + "libelle_d_acheminement": "REYGADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90382640556, + 45.019999835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11d2a90ba556e912fe976f08244680ff57c750d0", + "fields": { + "code_commune_insee": "19172", + "nom_de_la_commune": "RILHAC TREIGNAC", + "code_postal": "19260", + "coordonnees_gps": [ + 45.5272915329, + 1.69112353827 + ], + "libelle_d_acheminement": "RILHAC TREIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69112353827, + 45.5272915329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfde0f6b9b8fe8c93c068861f48b091c3dbeefc0", + "fields": { + "code_commune_insee": "19176", + "nom_de_la_commune": "ROSIERS D EGLETONS", + "code_postal": "19300", + "coordonnees_gps": [ + 45.3879504108, + 2.01084744458 + ], + "libelle_d_acheminement": "ROSIERS D EGLETONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01084744458, + 45.3879504108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78201a3404857c3d6db2b4e842dac878930b55db", + "fields": { + "code_commune_insee": "19177", + "nom_de_la_commune": "ROSIERS DE JUILLAC", + "code_postal": "19350", + "coordonnees_gps": [ + 45.2869415245, + 1.30817336532 + ], + "libelle_d_acheminement": "ROSIERS DE JUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30817336532, + 45.2869415245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95c3faa5956bbb0ecd24f72c7ecb778bf2a2662d", + "fields": { + "code_commune_insee": "19184", + "nom_de_la_commune": "ST BAZILE DE MEYSSAC", + "code_postal": "19500", + "coordonnees_gps": [ + 45.0541480503, + 1.72389447366 + ], + "libelle_d_acheminement": "ST BAZILE DE MEYSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72389447366, + 45.0541480503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8fdff69976d59b3d3fdf7f6a551276d80112df8", + "fields": { + "code_commune_insee": "19188", + "nom_de_la_commune": "ST BONNET L ENFANTIER", + "code_postal": "19410", + "coordonnees_gps": [ + 45.29973714, + 1.52644911921 + ], + "libelle_d_acheminement": "ST BONNET L ENFANTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52644911921, + 45.29973714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb54883acfa05f7eec05860a392ed32e54819e66", + "fields": { + "code_commune_insee": "19190", + "nom_de_la_commune": "ST BONNET PRES BORT", + "code_postal": "19200", + "coordonnees_gps": [ + 45.506914894, + 2.4263926381 + ], + "libelle_d_acheminement": "ST BONNET PRES BORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4263926381, + 45.506914894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdfdfdebde522b8028562ec6e59ce5989eab1f2c", + "fields": { + "code_commune_insee": "19205", + "nom_de_la_commune": "ST GENIEZ O MERLE", + "code_postal": "19220", + "coordonnees_gps": [ + 45.08248923, + 2.05890392935 + ], + "libelle_d_acheminement": "ST GENIEZ O MERLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05890392935, + 45.08248923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "042c352d183275fa3202d653d6ac1bfacf0718a2", + "fields": { + "code_commune_insee": "19214", + "nom_de_la_commune": "ST JULIEN AUX BOIS", + "code_postal": "19220", + "coordonnees_gps": [ + 45.1239920937, + 2.1459890004 + ], + "libelle_d_acheminement": "ST JULIEN AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1459890004, + 45.1239920937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a13c5b726d6254f037fbefaf79abebc86dea195", + "fields": { + "code_commune_insee": "19229", + "nom_de_la_commune": "ST PANTALEON DE LARCHE", + "code_postal": "19600", + "coordonnees_gps": [ + 45.1467893413, + 1.43249583574 + ], + "libelle_d_acheminement": "ST PANTALEON DE LARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43249583574, + 45.1467893413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62ba813cb21b7bde48a457560c2a19a132f92116", + "fields": { + "code_commune_insee": "19231", + "nom_de_la_commune": "ST PARDOUX LA CROISILLE", + "code_postal": "19320", + "coordonnees_gps": [ + 45.2494070918, + 1.96891800713 + ], + "libelle_d_acheminement": "ST PARDOUX LA CROISILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96891800713, + 45.2494070918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0670ded859b0148a8029667412ed916251433684", + "fields": { + "code_commune_insee": "19237", + "nom_de_la_commune": "ST PRIVAT", + "code_postal": "19220", + "coordonnees_gps": [ + 45.136566968, + 2.07738034635 + ], + "libelle_d_acheminement": "ST PRIVAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07738034635, + 45.136566968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c88669af64d3b97d650aba12e5e09ac83fdbfd89", + "fields": { + "code_commune_insee": "19245", + "nom_de_la_commune": "ST SYLVAIN", + "code_postal": "19380", + "coordonnees_gps": [ + 45.1805974733, + 1.88835230175 + ], + "libelle_d_acheminement": "ST SYLVAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88835230175, + 45.1805974733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7c9010df3e5c22dc54659f2f518cc6787d9a665", + "fields": { + "code_commune_insee": "19248", + "nom_de_la_commune": "ST YBARD", + "code_postal": "19140", + "coordonnees_gps": [ + 45.4491159844, + 1.51880664164 + ], + "libelle_d_acheminement": "ST YBARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51880664164, + 45.4491159844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8f34b9f99f93ede354f10f472af5a6b46bd7a4d", + "fields": { + "ligne_5": "SARROUX", + "code_commune_insee": "19252", + "libelle_d_acheminement": "SARROUX ST JULIEN", + "code_postal": "19110", + "nom_de_la_commune": "SARROUX ST JULIEN", + "coordonnees_gps": [ + 45.4307878428, + 2.46791610907 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46791610907, + 45.4307878428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03224965a6b873db76fcc009a7274227ae6930ce", + "fields": { + "code_commune_insee": "19253", + "nom_de_la_commune": "SEGONZAC", + "code_postal": "19310", + "coordonnees_gps": [ + 45.2767795103, + 1.26250500836 + ], + "libelle_d_acheminement": "SEGONZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26250500836, + 45.2767795103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e5394e85ed73dcde04b5e47016046a62c45ef17", + "fields": { + "code_commune_insee": "19256", + "nom_de_la_commune": "SERANDON", + "code_postal": "19160", + "coordonnees_gps": [ + 45.3506057867, + 2.32469690406 + ], + "libelle_d_acheminement": "SERANDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32469690406, + 45.3506057867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8b4dbdd7cf1f960a728f3e10aeffc93d75c4ec0", + "fields": { + "code_commune_insee": "19261", + "nom_de_la_commune": "SORNAC", + "code_postal": "19290", + "coordonnees_gps": [ + 45.6694408619, + 2.18045644477 + ], + "libelle_d_acheminement": "SORNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18045644477, + 45.6694408619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35d177e17477d81f6dd9a426a56bb5b0f03e958c", + "fields": { + "code_commune_insee": "19262", + "nom_de_la_commune": "SOUDAINE LAVINADIERE", + "code_postal": "19370", + "coordonnees_gps": [ + 45.5456519392, + 1.72687990718 + ], + "libelle_d_acheminement": "SOUDAINE LAVINADIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72687990718, + 45.5456519392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a7b3df842263fe993e09f8f44bc3be742c1fab2", + "fields": { + "code_commune_insee": "19266", + "nom_de_la_commune": "THALAMY", + "code_postal": "19200", + "coordonnees_gps": [ + 45.5068066637, + 2.45854941771 + ], + "libelle_d_acheminement": "THALAMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45854941771, + 45.5068066637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5fe0f3cb5c7efe63a1d18cf2a213c65babc7603", + "fields": { + "code_commune_insee": "19269", + "nom_de_la_commune": "TREIGNAC", + "code_postal": "19260", + "coordonnees_gps": [ + 45.5524776279, + 1.80105006647 + ], + "libelle_d_acheminement": "TREIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80105006647, + 45.5524776279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d3e1314aaf8b3d8ef4da637b08f84f42cbbdae8", + "fields": { + "code_commune_insee": "19273", + "nom_de_la_commune": "TURENNE", + "code_postal": "19500", + "coordonnees_gps": [ + 45.0610532957, + 1.57106480469 + ], + "libelle_d_acheminement": "TURENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57106480469, + 45.0610532957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afcf7ffd35b405d3f7b0b4db5825537e330d99f8", + "fields": { + "code_commune_insee": "19274", + "nom_de_la_commune": "USSAC", + "code_postal": "19270", + "coordonnees_gps": [ + 45.1901861032, + 1.51268724107 + ], + "libelle_d_acheminement": "USSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51268724107, + 45.1901861032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dbdf4ef7c23e6756f09072785a36d186fff5a55", + "fields": { + "code_commune_insee": "19279", + "nom_de_la_commune": "VARS SUR ROSEIX", + "code_postal": "19130", + "coordonnees_gps": [ + 45.261022525, + 1.3726827806 + ], + "libelle_d_acheminement": "VARS SUR ROSEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3726827806, + 45.261022525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d36e8c7b408b0adf2cdc29bee4153663cd1659a", + "fields": { + "code_commune_insee": "19283", + "nom_de_la_commune": "VEYRIERES", + "code_postal": "19200", + "coordonnees_gps": [ + 45.4890424221, + 2.39561651317 + ], + "libelle_d_acheminement": "VEYRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39561651317, + 45.4890424221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e62a1a204d7ceaa398d4b77dd3b62ee9a2a106fc", + "fields": { + "code_commune_insee": "19285", + "nom_de_la_commune": "VIGEOIS", + "code_postal": "19410", + "coordonnees_gps": [ + 45.3786371667, + 1.51888196425 + ], + "libelle_d_acheminement": "VIGEOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51888196425, + 45.3786371667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9d0ea968de2e3f894bf23b9496bd73b74606ad0", + "fields": { + "code_commune_insee": "21001", + "nom_de_la_commune": "AGENCOURT", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1250474303, + 4.98564114053 + ], + "libelle_d_acheminement": "AGENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98564114053, + 47.1250474303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6223f8a882e95b09358f678fc7ca709ad495d7b9", + "fields": { + "code_commune_insee": "21006", + "nom_de_la_commune": "AISEY SUR SEINE", + "code_postal": "21400", + "coordonnees_gps": [ + 47.7479865538, + 4.57814842131 + ], + "libelle_d_acheminement": "AISEY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57814842131, + 47.7479865538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3332770494e49de806673bd96916ef330119240a", + "fields": { + "code_commune_insee": "21012", + "nom_de_la_commune": "AMPILLY LE SEC", + "code_postal": "21400", + "coordonnees_gps": [ + 47.8100690603, + 4.50329961504 + ], + "libelle_d_acheminement": "AMPILLY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50329961504, + 47.8100690603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31d3cc00661808916d170bcc9311802048de71c6", + "fields": { + "code_commune_insee": "21014", + "nom_de_la_commune": "ANTHEUIL", + "code_postal": "21360", + "coordonnees_gps": [ + 47.1764418313, + 4.74942827901 + ], + "libelle_d_acheminement": "ANTHEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74942827901, + 47.1764418313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbd9445efeb7b3cdb1187d42ca56cae6c56b4f73", + "fields": { + "code_commune_insee": "21015", + "nom_de_la_commune": "ANTIGNY LA VILLE", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1012813081, + 4.55975234629 + ], + "libelle_d_acheminement": "ANTIGNY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55975234629, + 47.1012813081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8652b5a259d3b0008b4cfc5a08ec8da1ac6e4b33", + "fields": { + "code_commune_insee": "21017", + "nom_de_la_commune": "ARCENANT", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1403914793, + 4.83749940217 + ], + "libelle_d_acheminement": "ARCENANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83749940217, + 47.1403914793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aee4dcf687dc0398abd0315400e8dcbfdb65928", + "fields": { + "code_commune_insee": "21021", + "nom_de_la_commune": "ARC SUR TILLE", + "code_postal": "21560", + "coordonnees_gps": [ + 47.3382300377, + 5.20032142407 + ], + "libelle_d_acheminement": "ARC SUR TILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20032142407, + 47.3382300377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d28805a7f22664979331ca5669c01a6f46475ca8", + "fields": { + "code_commune_insee": "21023", + "nom_de_la_commune": "ARNAY LE DUC", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1275592202, + 4.47951494721 + ], + "libelle_d_acheminement": "ARNAY LE DUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47951494721, + 47.1275592202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a8a43e0309ea453856bca0e97ec286b946bb9e3", + "fields": { + "code_commune_insee": "21024", + "nom_de_la_commune": "ARNAY SOUS VITTEAUX", + "code_postal": "21350", + "coordonnees_gps": [ + 47.4372947607, + 4.49901520895 + ], + "libelle_d_acheminement": "ARNAY SOUS VITTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49901520895, + 47.4372947607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fe40384de50d5dba842aaedfda4caee4935552e", + "fields": { + "code_commune_insee": "21027", + "nom_de_la_commune": "ASNIERES LES DIJON", + "code_postal": "21380", + "coordonnees_gps": [ + 47.3872203652, + 5.04520527186 + ], + "libelle_d_acheminement": "ASNIERES LES DIJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04520527186, + 47.3872203652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0023a3824ab431f58acafe54c0952e3fc95b6717", + "fields": { + "code_commune_insee": "21029", + "nom_de_la_commune": "ATHIE", + "code_postal": "21500", + "coordonnees_gps": [ + 47.5619563649, + 4.25784537484 + ], + "libelle_d_acheminement": "ATHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25784537484, + 47.5619563649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78d3eb47804fe77d96938ad34a5dacd2685d0fd5", + "fields": { + "code_commune_insee": "21030", + "nom_de_la_commune": "AUBAINE", + "code_postal": "21360", + "coordonnees_gps": [ + 47.129772588, + 4.7343345695 + ], + "libelle_d_acheminement": "AUBAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7343345695, + 47.129772588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03e5f994438c4d2ad6035c35380a5ef70fa48975", + "fields": { + "code_commune_insee": "21033", + "nom_de_la_commune": "AUBIGNY LES SOMBERNON", + "code_postal": "21540", + "coordonnees_gps": [ + 47.3007242662, + 4.64273787867 + ], + "libelle_d_acheminement": "AUBIGNY LES SOMBERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64273787867, + 47.3007242662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "282adc3010333bc2723a488293c5eb6c2b470c99", + "fields": { + "code_commune_insee": "21040", + "nom_de_la_commune": "AVOSNES", + "code_postal": "21350", + "coordonnees_gps": [ + 47.3684679996, + 4.63263397614 + ], + "libelle_d_acheminement": "AVOSNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63263397614, + 47.3684679996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0167c5f01de6f6e8a62c9fd055c4cfabac2672ec", + "fields": { + "code_commune_insee": "21041", + "nom_de_la_commune": "AVOT", + "code_postal": "21580", + "coordonnees_gps": [ + 47.6170677584, + 5.00757406973 + ], + "libelle_d_acheminement": "AVOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00757406973, + 47.6170677584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a250b3d4806ff79b3ef937bac9ec18ee487c7cb", + "fields": { + "code_commune_insee": "21042", + "nom_de_la_commune": "BAGNOT", + "code_postal": "21700", + "coordonnees_gps": [ + 47.0500499735, + 5.07330457799 + ], + "libelle_d_acheminement": "BAGNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07330457799, + 47.0500499735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98adbc26358b2e5dffac8188bd468864b9de6f55", + "fields": { + "code_commune_insee": "21057", + "nom_de_la_commune": "BEIRE LE FORT", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2376253044, + 5.26097283802 + ], + "libelle_d_acheminement": "BEIRE LE FORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26097283802, + 47.2376253044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da0fecce4437cedfb0b281deeed7b1baf7d6c519", + "fields": { + "code_commune_insee": "21059", + "nom_de_la_commune": "BELLEFOND", + "code_postal": "21490", + "coordonnees_gps": [ + 47.3801760764, + 5.06389579154 + ], + "libelle_d_acheminement": "BELLEFOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06389579154, + 47.3801760764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71944e103e0a79aa6458dca22d564bc968a7a369", + "fields": { + "code_commune_insee": "21063", + "nom_de_la_commune": "BENEUVRE", + "code_postal": "21290", + "coordonnees_gps": [ + 47.6934400919, + 4.93578663109 + ], + "libelle_d_acheminement": "BENEUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93578663109, + 47.6934400919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f7f2b9553f9e23a8fdbbabed37554969c8507a2", + "fields": { + "code_commune_insee": "21070", + "nom_de_la_commune": "BEVY", + "code_postal": "21220", + "coordonnees_gps": [ + 47.1820024357, + 4.83965418214 + ], + "libelle_d_acheminement": "BEVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83965418214, + 47.1820024357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72994bb844a25763758f4dba01fb0cd13f855809", + "fields": { + "code_commune_insee": "21074", + "nom_de_la_commune": "BILLEY", + "code_postal": "21130", + "coordonnees_gps": [ + 47.1423914967, + 5.41973357014 + ], + "libelle_d_acheminement": "BILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41973357014, + 47.1423914967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61d2def812b9dea8c1897379f9d2fdcc1f9660bc", + "fields": { + "code_commune_insee": "21075", + "nom_de_la_commune": "BILLY LES CHANCEAUX", + "code_postal": "21450", + "coordonnees_gps": [ + 47.5530033313, + 4.73431352528 + ], + "libelle_d_acheminement": "BILLY LES CHANCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73431352528, + 47.5530033313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71fcbd5773af01a1fee1048d1c1aea390baae195", + "fields": { + "code_commune_insee": "21076", + "nom_de_la_commune": "BINGES", + "code_postal": "21270", + "coordonnees_gps": [ + 47.3252506577, + 5.2690666865 + ], + "libelle_d_acheminement": "BINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2690666865, + 47.3252506577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dc9d4f24d00a2955f79b85647a23245f0b69dce", + "fields": { + "code_commune_insee": "21078", + "nom_de_la_commune": "BISSEY LA PIERRE", + "code_postal": "21330", + "coordonnees_gps": [ + 47.8431150468, + 4.42590743381 + ], + "libelle_d_acheminement": "BISSEY LA PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42590743381, + 47.8431150468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efa01c5708f72fd20017b88716e009c575d7a07d", + "fields": { + "code_commune_insee": "21079", + "nom_de_la_commune": "BLAGNY SUR VINGEANNE", + "code_postal": "21310", + "coordonnees_gps": [ + 47.4395134717, + 5.3551085135 + ], + "libelle_d_acheminement": "BLAGNY SUR VINGEANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3551085135, + 47.4395134717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57f6e501facf3bb86e19d3cf3f7c9aaaeb37ff69", + "fields": { + "code_commune_insee": "21081", + "nom_de_la_commune": "BLAISY HAUT", + "code_postal": "21540", + "coordonnees_gps": [ + 47.361227533, + 4.7672740237 + ], + "libelle_d_acheminement": "BLAISY HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7672740237, + 47.361227533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cd06caef8a4e4a4cabe398cbcc732bb5245a68b", + "fields": { + "code_commune_insee": "21087", + "nom_de_la_commune": "BLIGNY SUR OUCHE", + "code_postal": "21360", + "coordonnees_gps": [ + 47.1150954708, + 4.68344440559 + ], + "libelle_d_acheminement": "BLIGNY SUR OUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68344440559, + 47.1150954708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5af96d97e56dc7450f9ccfefa2c71bd38dac5221", + "fields": { + "code_commune_insee": "21088", + "nom_de_la_commune": "BONCOURT LE BOIS", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1377542581, + 4.99799682538 + ], + "libelle_d_acheminement": "BONCOURT LE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99799682538, + 47.1377542581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9c5f1ac89d8d78946a2d7fab3d7adf3ed875dc3", + "fields": { + "code_commune_insee": "21092", + "nom_de_la_commune": "BOUILLAND", + "code_postal": "21420", + "coordonnees_gps": [ + 47.1352672328, + 4.77123835553 + ], + "libelle_d_acheminement": "BOUILLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77123835553, + 47.1352672328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18258598cac0305d65cd1c49d46d3b668efc3161", + "fields": { + "code_commune_insee": "21098", + "nom_de_la_commune": "BOUX SOUS SALMAISE", + "code_postal": "21690", + "coordonnees_gps": [ + 47.4731727042, + 4.64424292231 + ], + "libelle_d_acheminement": "BOUX SOUS SALMAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64424292231, + 47.4731727042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e750306c9bb87a885eef3ec6f17bd7eccd4ba5d", + "fields": { + "code_commune_insee": "21102", + "nom_de_la_commune": "BRAZEY EN MORVAN", + "code_postal": "21430", + "coordonnees_gps": [ + 47.1724443227, + 4.27604243318 + ], + "libelle_d_acheminement": "BRAZEY EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27604243318, + 47.1724443227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d11fb2dfd4c43503422f19e1e54fb9ee95f12b19", + "fields": { + "code_commune_insee": "21108", + "nom_de_la_commune": "BRIANNY", + "code_postal": "21390", + "coordonnees_gps": [ + 47.4121182222, + 4.37434558764 + ], + "libelle_d_acheminement": "BRIANNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37434558764, + 47.4121182222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47eb61b6eb481e459be8ef3a9c8f8927fa89ec7c", + "fields": { + "code_commune_insee": "21115", + "nom_de_la_commune": "BUNCEY", + "code_postal": "21400", + "coordonnees_gps": [ + 47.8168675282, + 4.57713874625 + ], + "libelle_d_acheminement": "BUNCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57713874625, + 47.8168675282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bd818aa2e6aff9aa58d82731b1a3702fb9c6038", + "fields": { + "code_commune_insee": "21120", + "nom_de_la_commune": "LA BUSSIERE SUR OUCHE", + "code_postal": "21360", + "coordonnees_gps": [ + 47.2265782926, + 4.69946543531 + ], + "libelle_d_acheminement": "LA BUSSIERE SUR OUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69946543531, + 47.2265782926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fb60b14a17332d0e9f52296c91f53c4359945b3", + "fields": { + "code_commune_insee": "21121", + "nom_de_la_commune": "BUSSY LA PESLE", + "code_postal": "21540", + "coordonnees_gps": [ + 47.3566273735, + 4.71361342126 + ], + "libelle_d_acheminement": "BUSSY LA PESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71361342126, + 47.3566273735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2d86bc8b00ab26ccc0959929cfd03aba50f0e28", + "fields": { + "code_commune_insee": "21129", + "nom_de_la_commune": "CHAMBAIN", + "code_postal": "21290", + "coordonnees_gps": [ + 47.7950502005, + 4.91900088796 + ], + "libelle_d_acheminement": "CHAMBAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91900088796, + 47.7950502005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f268c0e94c0714c05986e75a0de4e25f3a739e9", + "fields": { + "code_commune_insee": "21130", + "nom_de_la_commune": "CHAMBEIRE", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2827087412, + 5.27183255465 + ], + "libelle_d_acheminement": "CHAMBEIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27183255465, + 47.2827087412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74a31b9f5f442813d583c0e178f24cd2af4d8b20", + "fields": { + "code_commune_insee": "21133", + "nom_de_la_commune": "CHAMBOLLE MUSIGNY", + "code_postal": "21220", + "coordonnees_gps": [ + 47.1867543205, + 4.94446710185 + ], + "libelle_d_acheminement": "CHAMBOLLE MUSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94446710185, + 47.1867543205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2815bce2965b91403267ece9b47b0df0d3411b62", + "fields": { + "code_commune_insee": "21134", + "nom_de_la_commune": "CHAMESSON", + "code_postal": "21400", + "coordonnees_gps": [ + 47.7827583784, + 4.54118131867 + ], + "libelle_d_acheminement": "CHAMESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54118131867, + 47.7827583784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8d53d271e3581f41597c5087c0632a8000d10ec", + "fields": { + "code_commune_insee": "21135", + "nom_de_la_commune": "CHAMPAGNE SUR VINGEANNE", + "code_postal": "21310", + "coordonnees_gps": [ + 47.4405994754, + 5.40662688051 + ], + "libelle_d_acheminement": "CHAMPAGNE SUR VINGEANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40662688051, + 47.4405994754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e2b74b73546e49adb5b3473bf23c0f4c5b4cd43", + "fields": { + "code_commune_insee": "21138", + "nom_de_la_commune": "CHAMPDOTRE", + "code_postal": "21130", + "coordonnees_gps": [ + 47.1825397994, + 5.30038457052 + ], + "libelle_d_acheminement": "CHAMPDOTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30038457052, + 47.1825397994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad5e4e8d57ed6eed7d983e9310b3a50046402100", + "fields": { + "code_commune_insee": "21153", + "nom_de_la_commune": "CHATELLENOT", + "code_postal": "21320", + "coordonnees_gps": [ + 47.237576799, + 4.48751343081 + ], + "libelle_d_acheminement": "CHATELLENOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48751343081, + 47.237576799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c31b89a65d6d5358d6a7538fe47bda0b4a6bf72", + "fields": { + "code_commune_insee": "21157", + "nom_de_la_commune": "CHAUGEY", + "code_postal": "21290", + "coordonnees_gps": [ + 47.7462238697, + 4.95019253448 + ], + "libelle_d_acheminement": "CHAUGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95019253448, + 47.7462238697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b18ecffe4468a1c1243736bc2a1daf13afac9a9", + "fields": { + "code_commune_insee": "21158", + "nom_de_la_commune": "CHAUME ET COURCHAMP", + "code_postal": "21610", + "coordonnees_gps": [ + 47.5806895666, + 5.36162357765 + ], + "libelle_d_acheminement": "CHAUME ET COURCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36162357765, + 47.5806895666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bb4bb1acfa6c8ad84f5f436835b5a8bb51bdc9c", + "fields": { + "code_commune_insee": "21160", + "nom_de_la_commune": "CHAUME LES BAIGNEUX", + "code_postal": "21450", + "coordonnees_gps": [ + 47.6324839446, + 4.57347915813 + ], + "libelle_d_acheminement": "CHAUME LES BAIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57347915813, + 47.6324839446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "349c066263c8a1a9158df845f1fbdd8526a7b2cf", + "fields": { + "code_commune_insee": "21163", + "nom_de_la_commune": "CHAZEUIL", + "code_postal": "21260", + "coordonnees_gps": [ + 47.5584131204, + 5.28562266214 + ], + "libelle_d_acheminement": "CHAZEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28562266214, + 47.5584131204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec7b79b39a19376190175e84023e4fff0358c01b", + "fields": { + "code_commune_insee": "21164", + "nom_de_la_commune": "CHAZILLY", + "code_postal": "21320", + "coordonnees_gps": [ + 47.183253219, + 4.58248518042 + ], + "libelle_d_acheminement": "CHAZILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58248518042, + 47.183253219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dd2220469d9ce97126b5a0a5f70e87a8cdbbd48", + "fields": { + "ligne_5": "QUEMIGNY POISOT", + "code_commune_insee": "21178", + "libelle_d_acheminement": "VALFORET", + "code_postal": "21220", + "nom_de_la_commune": "VALFORET", + "coordonnees_gps": [ + 47.2553233042, + 4.88465417983 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88465417983, + 47.2553233042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69af98026f2a97036243d35cdc45a0ddb06ce2e3", + "fields": { + "code_commune_insee": "21189", + "nom_de_la_commune": "CORBERON", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0107613074, + 5.00919232333 + ], + "libelle_d_acheminement": "CORBERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00919232333, + 47.0107613074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff41e913decfb75c9a88d90b3002b5f6161e62de", + "fields": { + "code_commune_insee": "21191", + "nom_de_la_commune": "CORCELLES LES CITEAUX", + "code_postal": "21910", + "coordonnees_gps": [ + 47.1692110216, + 5.08258953072 + ], + "libelle_d_acheminement": "CORCELLES LES CITEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08258953072, + 47.1692110216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e55f33dccc7cb8dd96decf301e949d878a9ea38d", + "fields": { + "code_commune_insee": "21197", + "nom_de_la_commune": "CORPOYER LA CHAPELLE", + "code_postal": "21150", + "coordonnees_gps": [ + 47.549075893, + 4.60962809642 + ], + "libelle_d_acheminement": "CORPOYER LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60962809642, + 47.549075893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e11f8afc0c202a5b0f3ff55564f0816189da330d", + "fields": { + "code_commune_insee": "21198", + "nom_de_la_commune": "CORROMBLES", + "code_postal": "21460", + "coordonnees_gps": [ + 47.5184691895, + 4.20257094353 + ], + "libelle_d_acheminement": "CORROMBLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20257094353, + 47.5184691895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef9914f517fb284834986e78349f29942565eef9", + "fields": { + "code_commune_insee": "21199", + "nom_de_la_commune": "CORSAINT", + "code_postal": "21460", + "coordonnees_gps": [ + 47.5470766157, + 4.20200544222 + ], + "libelle_d_acheminement": "CORSAINT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20200544222, + 47.5470766157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96f9f50c8c3b3c6234fc5892d99c319d7c419dd8", + "fields": { + "code_commune_insee": "21201", + "nom_de_la_commune": "COULMIER LE SEC", + "code_postal": "21400", + "coordonnees_gps": [ + 47.7550385883, + 4.49604694384 + ], + "libelle_d_acheminement": "COULMIER LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49604694384, + 47.7550385883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23ddb5b2663afa680f240dc3c4119fa982c55040", + "fields": { + "code_commune_insee": "21202", + "nom_de_la_commune": "COURBAN", + "code_postal": "21520", + "coordonnees_gps": [ + 47.9155781312, + 4.73943669739 + ], + "libelle_d_acheminement": "COURBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73943669739, + 47.9155781312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c372d70695228b5ee673849e2a61af121bc1eca7", + "fields": { + "code_commune_insee": "21228", + "nom_de_la_commune": "DETAIN ET BRUANT", + "code_postal": "21220", + "coordonnees_gps": [ + 47.1748111785, + 4.78802289796 + ], + "libelle_d_acheminement": "DETAIN ET BRUANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78802289796, + 47.1748111785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "979b70258634d423c2b7f45703e722b99a4e18d8", + "fields": { + "code_commune_insee": "21232", + "nom_de_la_commune": "DOMPIERRE EN MORVAN", + "code_postal": "21390", + "coordonnees_gps": [ + 47.4004660876, + 4.23216160368 + ], + "libelle_d_acheminement": "DOMPIERRE EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23216160368, + 47.4004660876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b23d4bac46aab8451ed99fcf55d0a5e53871cb57", + "fields": { + "code_commune_insee": "21235", + "nom_de_la_commune": "DUESME", + "code_postal": "21510", + "coordonnees_gps": [ + 47.6369569478, + 4.69319876077 + ], + "libelle_d_acheminement": "DUESME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69319876077, + 47.6369569478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "531d060368094c64225e8fba75f131739665d48a", + "fields": { + "code_commune_insee": "21240", + "nom_de_la_commune": "ECHEVANNES", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5470867695, + 5.1597666211 + ], + "libelle_d_acheminement": "ECHEVANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1597666211, + 47.5470867695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3251c32c0ef3bf9626a60f25e81ab38cfc0ba7ae", + "fields": { + "code_commune_insee": "21242", + "nom_de_la_commune": "ECHIGEY", + "code_postal": "21110", + "coordonnees_gps": [ + 47.1778490493, + 5.19986871339 + ], + "libelle_d_acheminement": "ECHIGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19986871339, + 47.1778490493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d4270ca4a29b3de8717034b50031419598058c4", + "fields": { + "code_commune_insee": "21258", + "nom_de_la_commune": "ETROCHEY", + "code_postal": "21400", + "coordonnees_gps": [ + 47.8893912326, + 4.51963624928 + ], + "libelle_d_acheminement": "ETROCHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51963624928, + 47.8893912326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "496453eefece2eca96f0029d33411d79f8316886", + "fields": { + "code_commune_insee": "21262", + "nom_de_la_commune": "FAVEROLLES LES LUCEY", + "code_postal": "21290", + "coordonnees_gps": [ + 47.8271140625, + 4.86669283243 + ], + "libelle_d_acheminement": "FAVEROLLES LES LUCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86669283243, + 47.8271140625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8561ad30987fc44aa533a7d887f10b8e7415456d", + "fields": { + "code_commune_insee": "21264", + "nom_de_la_commune": "LE FETE", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1799351721, + 4.50838011186 + ], + "libelle_d_acheminement": "LE FETE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50838011186, + 47.1799351721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7e02e8e8d3c416d6d05b647a91f239c1595e892", + "fields": { + "code_commune_insee": "21265", + "nom_de_la_commune": "FIXIN", + "code_postal": "21220", + "coordonnees_gps": [ + 47.2483860424, + 4.96654178119 + ], + "libelle_d_acheminement": "FIXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96654178119, + 47.2483860424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc7603dd9c57c2e5f9b47e08a58b3030406a0d57", + "fields": { + "code_commune_insee": "21271", + "nom_de_la_commune": "FLAVIGNY SUR OZERAIN", + "code_postal": "21150", + "coordonnees_gps": [ + 47.5087961778, + 4.51921128225 + ], + "libelle_d_acheminement": "FLAVIGNY SUR OZERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51921128225, + 47.5087961778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60eebb3d426612060b86980cd074d1bb16bfcd99", + "fields": { + "code_commune_insee": "21276", + "nom_de_la_commune": "FONTAINES EN DUESMOIS", + "code_postal": "21450", + "coordonnees_gps": [ + 47.6493383803, + 4.53511047065 + ], + "libelle_d_acheminement": "FONTAINES EN DUESMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53511047065, + 47.6493383803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd233a3e9529f6381692761be9bf5a9521d574c1", + "fields": { + "code_commune_insee": "21280", + "nom_de_la_commune": "FONTANGY", + "code_postal": "21390", + "coordonnees_gps": [ + 47.3457961806, + 4.3719767381 + ], + "libelle_d_acheminement": "FONTANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3719767381, + 47.3457961806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "483c2be03f6984dfa490767949e67d9831617781", + "fields": { + "code_commune_insee": "21286", + "nom_de_la_commune": "FRENOIS", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5214332358, + 4.8907289987 + ], + "libelle_d_acheminement": "FRENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8907289987, + 47.5214332358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ffd145bec741e87c66d96ffee22453843071f52", + "fields": { + "code_commune_insee": "21287", + "nom_de_la_commune": "FRESNES", + "code_postal": "21500", + "coordonnees_gps": [ + 47.6097085896, + 4.43871548951 + ], + "libelle_d_acheminement": "FRESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43871548951, + 47.6097085896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d2e57386726847e65b1f03b604e16049255a975", + "fields": { + "code_commune_insee": "21289", + "nom_de_la_commune": "FUSSEY", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1289690421, + 4.81617367712 + ], + "libelle_d_acheminement": "FUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81617367712, + 47.1289690421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78713fb231cf5d675519eec78808776949d0dbe1", + "fields": { + "code_commune_insee": "21300", + "nom_de_la_commune": "GISSEY SUR OUCHE", + "code_postal": "21410", + "coordonnees_gps": [ + 47.2606866553, + 4.78299335665 + ], + "libelle_d_acheminement": "GISSEY SUR OUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78299335665, + 47.2606866553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48d3b4f2c629716823c99391e98bd12ad044affc", + "fields": { + "code_commune_insee": "21303", + "nom_de_la_commune": "LES GOULLES", + "code_postal": "21520", + "coordonnees_gps": [ + 47.8780247601, + 4.90572088017 + ], + "libelle_d_acheminement": "LES GOULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90572088017, + 47.8780247601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc0a6b4f5f5123c9215be5e88adce2e5dcdfdc98", + "fields": { + "code_commune_insee": "21307", + "nom_de_la_commune": "GRESIGNY STE REINE", + "code_postal": "21150", + "coordonnees_gps": [ + 47.5517042908, + 4.49530823362 + ], + "libelle_d_acheminement": "GRESIGNY STE REINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49530823362, + 47.5517042908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f255b0096ee149edca45f1cc041f85f56ab8b53", + "fields": { + "code_commune_insee": "21308", + "nom_de_la_commune": "GRIGNON", + "code_postal": "21150", + "coordonnees_gps": [ + 47.5585918408, + 4.40554023735 + ], + "libelle_d_acheminement": "GRIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40554023735, + 47.5585918408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe31426566f3ca435ca69ec08597d93c7afa504c", + "fields": { + "code_commune_insee": "21309", + "nom_de_la_commune": "GRISELLES", + "code_postal": "21330", + "coordonnees_gps": [ + 47.8761341376, + 4.36546770066 + ], + "libelle_d_acheminement": "GRISELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36546770066, + 47.8761341376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60733d0dc9fe2d8ae33357db9e81804a82e47b77", + "fields": { + "code_commune_insee": "21311", + "nom_de_la_commune": "GROSBOIS LES TICHEY", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0090636768, + 5.2366823459 + ], + "libelle_d_acheminement": "GROSBOIS LES TICHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2366823459, + 47.0090636768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f638941a0615ecaa4587ad7fce094c07b791398f", + "fields": { + "code_commune_insee": "21313", + "nom_de_la_commune": "GURGY LE CHATEAU", + "code_postal": "21290", + "coordonnees_gps": [ + 47.8288662718, + 4.92751897409 + ], + "libelle_d_acheminement": "GURGY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92751897409, + 47.8288662718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b5b00c357c2dd2a468207e1292db682d43eae92", + "fields": { + "code_commune_insee": "21316", + "nom_de_la_commune": "HEUILLEY SUR SAONE", + "code_postal": "21270", + "coordonnees_gps": [ + 47.3358079869, + 5.46489125739 + ], + "libelle_d_acheminement": "HEUILLEY SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46489125739, + 47.3358079869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13bc87d5c7d1f2fc90a800c66d4b929fc2fcb65c", + "fields": { + "code_commune_insee": "21317", + "nom_de_la_commune": "IS SUR TILLE", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5263318229, + 5.10204412547 + ], + "libelle_d_acheminement": "IS SUR TILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10204412547, + 47.5263318229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a536c334f5bbacadad06bc7257c30b188c9498ec", + "fields": { + "code_commune_insee": "21329", + "nom_de_la_commune": "JUILLY", + "code_postal": "21140", + "coordonnees_gps": [ + 47.4902826787, + 4.40108414456 + ], + "libelle_d_acheminement": "JUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40108414456, + 47.4902826787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "494535ae9e51d9e46c4d352e916763c708326304", + "fields": { + "code_commune_insee": "21338", + "nom_de_la_commune": "LAMARGELLE", + "code_postal": "21440", + "coordonnees_gps": [ + 47.5203693141, + 4.83729025625 + ], + "libelle_d_acheminement": "LAMARGELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83729025625, + 47.5203693141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7e1aaa18b4beba645261bda3d3610a358f53d9f", + "fields": { + "code_commune_insee": "21340", + "nom_de_la_commune": "LANTHES", + "code_postal": "21250", + "coordonnees_gps": [ + 46.9990158896, + 5.20408699445 + ], + "libelle_d_acheminement": "LANTHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20408699445, + 46.9990158896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dabde9b4166e5025c95390fcbbc742ba0e6e39d0", + "fields": { + "code_commune_insee": "21346", + "nom_de_la_commune": "LEUGLAY", + "code_postal": "21290", + "coordonnees_gps": [ + 47.8137240712, + 4.81901866828 + ], + "libelle_d_acheminement": "LEUGLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81901866828, + 47.8137240712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03b8bb699ff4312342270725d58cae3c84e21afa", + "fields": { + "code_commune_insee": "21347", + "nom_de_la_commune": "LEVERNOIS", + "code_postal": "21200", + "coordonnees_gps": [ + 46.9937203239, + 4.87163680948 + ], + "libelle_d_acheminement": "LEVERNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87163680948, + 46.9937203239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eecdc48bd7b8a21c12f905c974c047c306b2c58", + "fields": { + "code_commune_insee": "21349", + "nom_de_la_commune": "LIERNAIS", + "code_postal": "21430", + "coordonnees_gps": [ + 47.2198460424, + 4.28865681404 + ], + "libelle_d_acheminement": "LIERNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28865681404, + 47.2198460424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8b327c59285f67841bbc9d304cb03ff29ca4da7", + "fields": { + "code_commune_insee": "21353", + "nom_de_la_commune": "LONGECOURT EN PLAINE", + "code_postal": "21110", + "coordonnees_gps": [ + 47.1979962119, + 5.14631523953 + ], + "libelle_d_acheminement": "LONGECOURT EN PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14631523953, + 47.1979962119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b7fb9b5b033130df07e13583d068fdd38da8ab8", + "fields": { + "code_commune_insee": "21357", + "nom_de_la_commune": "LOUESME", + "code_postal": "21520", + "coordonnees_gps": [ + 47.8893078984, + 4.76394651159 + ], + "libelle_d_acheminement": "LOUESME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76394651159, + 47.8893078984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df704b97143237d7db4cd87052e4c28a6c42d566", + "fields": { + "code_commune_insee": "21360", + "nom_de_la_commune": "LUSIGNY SUR OUCHE", + "code_postal": "21360", + "coordonnees_gps": [ + 47.0825921168, + 4.68300097663 + ], + "libelle_d_acheminement": "LUSIGNY SUR OUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68300097663, + 47.0825921168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d1d094f36cb20a8c26cb5991bb9f73a710275e2", + "fields": { + "code_commune_insee": "21366", + "nom_de_la_commune": "MAGNY LES AUBIGNY", + "code_postal": "21170", + "coordonnees_gps": [ + 47.1123094522, + 5.16861149822 + ], + "libelle_d_acheminement": "MAGNY LES AUBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16861149822, + 47.1123094522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a5ab6d5018efdc0d7d3838d3f975d02bb676ca4", + "fields": { + "code_commune_insee": "21367", + "nom_de_la_commune": "MAGNY MONTARLOT", + "code_postal": "21130", + "coordonnees_gps": [ + 47.2486656169, + 5.34673748926 + ], + "libelle_d_acheminement": "MAGNY MONTARLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34673748926, + 47.2486656169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9f7ad32260c36ef461f041410d775a3c4820662", + "fields": { + "code_commune_insee": "21375", + "nom_de_la_commune": "MANLAY", + "code_postal": "21430", + "coordonnees_gps": [ + 47.1203533728, + 4.33317142966 + ], + "libelle_d_acheminement": "MANLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33317142966, + 47.1203533728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "488a9613234a60acee77f6028d458b5c5cea0f95", + "fields": { + "code_commune_insee": "21376", + "nom_de_la_commune": "MARANDEUIL", + "code_postal": "21270", + "coordonnees_gps": [ + 47.3453618819, + 5.34081776332 + ], + "libelle_d_acheminement": "MARANDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34081776332, + 47.3453618819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24d7d85b189afef4709159a0f8120c850240da20", + "fields": { + "code_commune_insee": "21383", + "nom_de_la_commune": "MARCILLY SUR TILLE", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5125107909, + 5.12883412558 + ], + "libelle_d_acheminement": "MARCILLY SUR TILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12883412558, + 47.5125107909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28671d033614d7a44dfc657b140e3936e692301a", + "fields": { + "code_commune_insee": "21389", + "nom_de_la_commune": "MARMAGNE", + "code_postal": "21500", + "coordonnees_gps": [ + 47.6397063583, + 4.38235676513 + ], + "libelle_d_acheminement": "MARMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38235676513, + 47.6397063583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "447e7bfaa3669021dd4680c03b3b7a2b96054f61", + "fields": { + "code_commune_insee": "21391", + "nom_de_la_commune": "MARSANNAY LE BOIS", + "code_postal": "21380", + "coordonnees_gps": [ + 47.4402798544, + 5.09615121255 + ], + "libelle_d_acheminement": "MARSANNAY LE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09615121255, + 47.4402798544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fb12c379138a17263576d93eda6c334d6655071", + "fields": { + "code_commune_insee": "21398", + "nom_de_la_commune": "MAXILLY SUR SAONE", + "code_postal": "21270", + "coordonnees_gps": [ + 47.3312115435, + 5.41954426061 + ], + "libelle_d_acheminement": "MAXILLY SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41954426061, + 47.3312115435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "214268e5dd3b4b6f347c3b2f7cfd86c6cc082e66", + "fields": { + "code_commune_insee": "21407", + "nom_de_la_commune": "MESSANGES", + "code_postal": "21220", + "coordonnees_gps": [ + 47.1618456396, + 4.86963425286 + ], + "libelle_d_acheminement": "MESSANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86963425286, + 47.1618456396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "820890d82a8293f8ab34c8d64170a6d4e89f51a2", + "fields": { + "ligne_5": "VANTOUX LES DIJON", + "code_commune_insee": "21408", + "libelle_d_acheminement": "MESSIGNY ET VANTOUX", + "code_postal": "21380", + "nom_de_la_commune": "MESSIGNY ET VANTOUX", + "coordonnees_gps": [ + 47.4189090037, + 5.00144598531 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00144598531, + 47.4189090037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cca650244fb59aa8b123b23070305582570eab9", + "fields": { + "code_commune_insee": "21422", + "nom_de_la_commune": "MOLPHEY", + "code_postal": "21210", + "coordonnees_gps": [ + 47.33634862, + 4.20666118075 + ], + "libelle_d_acheminement": "MOLPHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20666118075, + 47.33634862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbe83ae8e27d92459dcad47eee2b7de8a4b7e094", + "fields": { + "code_commune_insee": "21427", + "nom_de_la_commune": "MONTCEAU ET ECHARNANT", + "code_postal": "21360", + "coordonnees_gps": [ + 47.0609045646, + 4.6666655237 + ], + "libelle_d_acheminement": "MONTCEAU ET ECHARNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6666655237, + 47.0609045646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "969a89328a9e026a8c5b7b97fcdeef2c5f8fb436", + "fields": { + "ligne_5": "LA VILLENEUVE SUR VINGEANNE", + "code_commune_insee": "21433", + "libelle_d_acheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", + "code_postal": "21610", + "nom_de_la_commune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE", + "coordonnees_gps": [ + 47.5685941578, + 5.45036193766 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45036193766, + 47.5685941578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9de42d6183614f918888795fa3caf282f3016b1", + "fields": { + "code_commune_insee": "21440", + "nom_de_la_commune": "MONTOT", + "code_postal": "21170", + "coordonnees_gps": [ + 47.1525081033, + 5.24351442373 + ], + "libelle_d_acheminement": "MONTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24351442373, + 47.1525081033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d62eb04bca3e326c73adac072ed77d79fcc4029", + "fields": { + "code_commune_insee": "21441", + "nom_de_la_commune": "MONT ST JEAN", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2858528062, + 4.4113796914 + ], + "libelle_d_acheminement": "MONT ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4113796914, + 47.2858528062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3804209c6cb8f71741120bd93c2e05cf1ba9669", + "fields": { + "code_commune_insee": "21445", + "nom_de_la_commune": "LA MOTTE TERNANT", + "code_postal": "21210", + "coordonnees_gps": [ + 47.3168367609, + 4.32727965395 + ], + "libelle_d_acheminement": "LA MOTTE TERNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32727965395, + 47.3168367609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de1ec0c67c2ac5c58d3e7a80aba9425bdd46c10b", + "fields": { + "code_commune_insee": "21450", + "nom_de_la_commune": "NANTOUX", + "code_postal": "21190", + "coordonnees_gps": [ + 47.0346400359, + 4.75951042223 + ], + "libelle_d_acheminement": "NANTOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75951042223, + 47.0346400359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a6b1ee529dbc77f7a40755c1f9459f21df71f25", + "fields": { + "code_commune_insee": "21465", + "nom_de_la_commune": "OBTREE", + "code_postal": "21400", + "coordonnees_gps": [ + 47.9312137105, + 4.56510115112 + ], + "libelle_d_acheminement": "OBTREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56510115112, + 47.9312137105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6966ad58ab67c465c7d9effa39d06a1571172fa6", + "fields": { + "code_commune_insee": "21474", + "nom_de_la_commune": "PAGNY LA VILLE", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0574519111, + 5.16871339995 + ], + "libelle_d_acheminement": "PAGNY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16871339995, + 47.0574519111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "404f2fc301bcdc6800bb31367ccb91ef4e43421d", + "fields": { + "code_commune_insee": "21481", + "nom_de_la_commune": "PERRIGNY LES DIJON", + "code_postal": "21160", + "coordonnees_gps": [ + 47.25760727, + 5.02045780663 + ], + "libelle_d_acheminement": "PERRIGNY LES DIJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02045780663, + 47.25760727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22cb7b2b8b6cfb1aa7e5534befa5ce98153d91d3", + "fields": { + "code_commune_insee": "21494", + "nom_de_la_commune": "PONCEY SUR L IGNON", + "code_postal": "21440", + "coordonnees_gps": [ + 47.4903530445, + 4.75222297541 + ], + "libelle_d_acheminement": "PONCEY SUR L IGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75222297541, + 47.4903530445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b882912e0c25365609a97bfeb7c7863c8adb0dd3", + "fields": { + "code_commune_insee": "21495", + "nom_de_la_commune": "PONT", + "code_postal": "21130", + "coordonnees_gps": [ + 47.1789967649, + 5.32490570486 + ], + "libelle_d_acheminement": "PONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32490570486, + 47.1789967649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8d35d1c960f8387a6c29c1d864922e0661c2711", + "fields": { + "code_commune_insee": "21498", + "nom_de_la_commune": "POSANGES", + "code_postal": "21350", + "coordonnees_gps": [ + 47.4218431099, + 4.52541298855 + ], + "libelle_d_acheminement": "POSANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52541298855, + 47.4218431099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "581ca2c4508cce7b13c38fdfd626e169f0f15442", + "fields": { + "code_commune_insee": "21504", + "nom_de_la_commune": "PRALON", + "code_postal": "21410", + "coordonnees_gps": [ + 47.3104934057, + 4.77503055215 + ], + "libelle_d_acheminement": "PRALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77503055215, + 47.3104934057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0cf084acace288732e93456de60b3e0686d9287", + "fields": { + "code_commune_insee": "21517", + "nom_de_la_commune": "QUINCEY", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1072396532, + 4.9719971557 + ], + "libelle_d_acheminement": "QUINCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9719971557, + 47.1072396532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8ae85fa9bc5e160841a8d3f13ce41fca51b0f9e", + "fields": { + "code_commune_insee": "21523", + "nom_de_la_commune": "REULLE VERGY", + "code_postal": "21220", + "coordonnees_gps": [ + 47.1883731781, + 4.89680427712 + ], + "libelle_d_acheminement": "REULLE VERGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89680427712, + 47.1883731781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68c8ce9fb19a759deb8f36496aa1e814003aa963", + "fields": { + "code_commune_insee": "21531", + "nom_de_la_commune": "ROUVRAY", + "code_postal": "21530", + "coordonnees_gps": [ + 47.4174670252, + 4.11150660638 + ], + "libelle_d_acheminement": "ROUVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11150660638, + 47.4174670252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41b4f02bbca918360de9535223cb7fa5ef122c9e", + "fields": { + "code_commune_insee": "21532", + "nom_de_la_commune": "ROUVRES EN PLAINE", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2386287717, + 5.13846471292 + ], + "libelle_d_acheminement": "ROUVRES EN PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13846471292, + 47.2386287717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "633c93ca0b92be58b38262b678d5acb83d1cdd25", + "fields": { + "code_commune_insee": "21533", + "nom_de_la_commune": "ROUVRES SOUS MEILLY", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2062707536, + 4.5897431954 + ], + "libelle_d_acheminement": "ROUVRES SOUS MEILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5897431954, + 47.2062707536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4d6c8bade83fcae43cae3a57f9b9d60d9c774ab", + "fields": { + "code_commune_insee": "21534", + "nom_de_la_commune": "RUFFEY LES BEAUNE", + "code_postal": "21200", + "coordonnees_gps": [ + 47.0225171386, + 4.92262846681 + ], + "libelle_d_acheminement": "RUFFEY LES BEAUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92262846681, + 47.0225171386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04b7f4aa378f2a350f251023573da0f44c00d0a1", + "fields": { + "code_commune_insee": "21547", + "nom_de_la_commune": "ST EUPHRONE", + "code_postal": "21140", + "coordonnees_gps": [ + 47.4668464015, + 4.39181152483 + ], + "libelle_d_acheminement": "ST EUPHRONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39181152483, + 47.4668464015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bab8b66c2aa7cec901799ffa2a5afd9591dfe0a", + "fields": { + "code_commune_insee": "21549", + "nom_de_la_commune": "ST GERMAIN LE ROCHEUX", + "code_postal": "21510", + "coordonnees_gps": [ + 47.7561639307, + 4.66343630237 + ], + "libelle_d_acheminement": "ST GERMAIN LE ROCHEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66343630237, + 47.7561639307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad59b2eca5579cbc739a3b4bcf2bab203b642a2d", + "fields": { + "code_commune_insee": "21550", + "nom_de_la_commune": "ST GERMAIN LES SENAILLY", + "code_postal": "21500", + "coordonnees_gps": [ + 47.5980519223, + 4.28133138948 + ], + "libelle_d_acheminement": "ST GERMAIN LES SENAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28133138948, + 47.5980519223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38172f5ee2f7a950eac5b1d29afabf76211f2044", + "fields": { + "code_commune_insee": "21555", + "nom_de_la_commune": "ST JULIEN", + "code_postal": "21490", + "coordonnees_gps": [ + 47.396053652, + 5.14161061569 + ], + "libelle_d_acheminement": "ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14161061569, + 47.396053652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fe282a1d949e86bcb7e29d1e40937ab1ed7e521", + "fields": { + "code_commune_insee": "21560", + "nom_de_la_commune": "ST MARTIN DE LA MER", + "code_postal": "21210", + "coordonnees_gps": [ + 47.2373074547, + 4.22929777568 + ], + "libelle_d_acheminement": "ST MARTIN DE LA MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22929777568, + 47.2373074547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7baf24f6ca221faa99558e1dc583d52d5db1ac13", + "fields": { + "code_commune_insee": "21563", + "nom_de_la_commune": "ST MESMIN", + "code_postal": "21540", + "coordonnees_gps": [ + 47.3458158582, + 4.65536994421 + ], + "libelle_d_acheminement": "ST MESMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65536994421, + 47.3458158582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44ad3d71be2e8bf8a648748b6241990dd67c1b73", + "fields": { + "code_commune_insee": "21572", + "nom_de_la_commune": "ST SEINE EN BACHE", + "code_postal": "21130", + "coordonnees_gps": [ + 47.1160354094, + 5.37724582306 + ], + "libelle_d_acheminement": "ST SEINE EN BACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37724582306, + 47.1160354094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "038d94e923c836c153111eb509c22a995b5f5357", + "fields": { + "code_commune_insee": "21576", + "nom_de_la_commune": "ST THIBAULT", + "code_postal": "21350", + "coordonnees_gps": [ + 47.3777085565, + 4.46624986198 + ], + "libelle_d_acheminement": "ST THIBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46624986198, + 47.3777085565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a41aa60b3bc7d1543233517ebedfbaf227bb66ed", + "fields": { + "code_commune_insee": "21583", + "nom_de_la_commune": "SANTOSSE", + "code_postal": "21340", + "coordonnees_gps": [ + 47.0068228015, + 4.63439106262 + ], + "libelle_d_acheminement": "SANTOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63439106262, + 47.0068228015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a9f6e0b24ab0bce2fc0745a6c8e10a81426db05", + "fields": { + "code_commune_insee": "21589", + "nom_de_la_commune": "SAUSSY", + "code_postal": "21380", + "coordonnees_gps": [ + 47.4624808325, + 4.98146339505 + ], + "libelle_d_acheminement": "SAUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98146339505, + 47.4624808325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1df529ab2458becd8e99cdc464700b6daec05f6d", + "fields": { + "code_commune_insee": "21593", + "nom_de_la_commune": "SAVILLY", + "code_postal": "21430", + "coordonnees_gps": [ + 47.1223537467, + 4.27774791948 + ], + "libelle_d_acheminement": "SAVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27774791948, + 47.1223537467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ae32fafb1fcd66e86fe85d04b350cdcef420dcd", + "fields": { + "code_commune_insee": "21596", + "nom_de_la_commune": "SAVOUGES", + "code_postal": "21910", + "coordonnees_gps": [ + 47.1806736269, + 5.05798309916 + ], + "libelle_d_acheminement": "SAVOUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05798309916, + 47.1806736269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66836db29dabc2dc78feddbaa92445e12154e502", + "fields": { + "code_commune_insee": "21599", + "nom_de_la_commune": "SELONGEY", + "code_postal": "21260", + "coordonnees_gps": [ + 47.5949698633, + 5.19951068819 + ], + "libelle_d_acheminement": "SELONGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19951068819, + 47.5949698633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cab514874214a087486bfe564edb582356e9c7c9", + "fields": { + "code_commune_insee": "21600", + "nom_de_la_commune": "SEMAREY", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2681629756, + 4.62645384177 + ], + "libelle_d_acheminement": "SEMAREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62645384177, + 47.2681629756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f91bb998755688f4996bbe735e789ce4b9cf936a", + "fields": { + "code_commune_insee": "21602", + "nom_de_la_commune": "SEMOND", + "code_postal": "21450", + "coordonnees_gps": [ + 47.7126613354, + 4.57244998829 + ], + "libelle_d_acheminement": "SEMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57244998829, + 47.7126613354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abfe9a9a4ca746cb9ea3743e922ff4d3f2ecaa69", + "fields": { + "code_commune_insee": "21606", + "nom_de_la_commune": "LADOIX SERRIGNY", + "code_postal": "21550", + "coordonnees_gps": [ + 47.0628547875, + 4.91151199048 + ], + "libelle_d_acheminement": "LADOIX SERRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91151199048, + 47.0628547875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39f04480a5601dfab84b2fcb4b7aa84a77c66416", + "fields": { + "code_commune_insee": "21611", + "nom_de_la_commune": "SOMBERNON", + "code_postal": "21540", + "coordonnees_gps": [ + 47.3105432951, + 4.70317881741 + ], + "libelle_d_acheminement": "SOMBERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70317881741, + 47.3105432951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "396ca9893f19d45d1ad98f3a3b766589738076e5", + "fields": { + "code_commune_insee": "21613", + "nom_de_la_commune": "SOUSSEY SUR BRIONNE", + "code_postal": "21350", + "coordonnees_gps": [ + 47.3267546782, + 4.53446696852 + ], + "libelle_d_acheminement": "SOUSSEY SUR BRIONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53446696852, + 47.3267546782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ada2aa9b32717f6c4ae631b1fd8ab3c88005925b", + "fields": { + "code_commune_insee": "21619", + "nom_de_la_commune": "TANAY", + "code_postal": "21310", + "coordonnees_gps": [ + 47.413987007, + 5.27742154521 + ], + "libelle_d_acheminement": "TANAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27742154521, + 47.413987007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0125af927d3207a0bca51fc7874b232bd31a39bf", + "fields": { + "code_commune_insee": "21625", + "nom_de_la_commune": "TERNANT", + "code_postal": "21220", + "coordonnees_gps": [ + 47.2001341536, + 4.83291859588 + ], + "libelle_d_acheminement": "TERNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83291859588, + 47.2001341536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6af269060cfce80fbe33a44a69f509cf5cc14713", + "fields": { + "code_commune_insee": "21628", + "nom_de_la_commune": "THOIRES", + "code_postal": "21570", + "coordonnees_gps": [ + 47.9407836384, + 4.6819546564 + ], + "libelle_d_acheminement": "THOIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6819546564, + 47.9407836384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7878319341b32ba4b07c7a7e73a91a4929414c80", + "fields": { + "code_commune_insee": "21636", + "nom_de_la_commune": "THURY", + "code_postal": "21340", + "coordonnees_gps": [ + 47.0285432675, + 4.52701419303 + ], + "libelle_d_acheminement": "THURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52701419303, + 47.0285432675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "241f89053efa2adb1fb8d72c3060838335210cdf", + "fields": { + "code_commune_insee": "21648", + "nom_de_la_commune": "TURCEY", + "code_postal": "21540", + "coordonnees_gps": [ + 47.4086361991, + 4.71869514548 + ], + "libelle_d_acheminement": "TURCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71869514548, + 47.4086361991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e10604d080c0526e0c0a0678eb1ac6508612f879", + "fields": { + "code_commune_insee": "21649", + "nom_de_la_commune": "UNCEY LE FRANC", + "code_postal": "21350", + "coordonnees_gps": [ + 47.3434622037, + 4.57522013121 + ], + "libelle_d_acheminement": "UNCEY LE FRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57522013121, + 47.3434622037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a111493090c63cb067bc0a8c1f699751666a9ae5", + "fields": { + "code_commune_insee": "21660", + "nom_de_la_commune": "VEILLY", + "code_postal": "21360", + "coordonnees_gps": [ + 47.1271334446, + 4.59658929547 + ], + "libelle_d_acheminement": "VEILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59658929547, + 47.1271334446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "778ac827d591aa0aed2b13484d16312e8b61ec1d", + "fields": { + "code_commune_insee": "21663", + "nom_de_la_commune": "VENAREY LES LAUMES", + "code_postal": "21150", + "coordonnees_gps": [ + 47.5377240472, + 4.43966492373 + ], + "libelle_d_acheminement": "VENAREY LES LAUMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43966492373, + 47.5377240472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75c66de62fe9cf503224ac1e0c2ac857fae9ed63", + "fields": { + "code_commune_insee": "21673", + "nom_de_la_commune": "VEUVEY SUR OUCHE", + "code_postal": "21360", + "coordonnees_gps": [ + 47.182310206, + 4.71718039392 + ], + "libelle_d_acheminement": "VEUVEY SUR OUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71718039392, + 47.182310206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "459d3124109d82bbff293e958bb868ccfdfad3b5", + "fields": { + "code_commune_insee": "21677", + "nom_de_la_commune": "VIC DES PRES", + "code_postal": "21360", + "coordonnees_gps": [ + 47.1093098641, + 4.63600568257 + ], + "libelle_d_acheminement": "VIC DES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63600568257, + 47.1093098641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ea5a722637a7e7f70b229b88630951961b6b7c0", + "fields": { + "code_commune_insee": "21680", + "nom_de_la_commune": "VIELVERGE", + "code_postal": "21270", + "coordonnees_gps": [ + 47.2683512325, + 5.45243261786 + ], + "libelle_d_acheminement": "VIELVERGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45243261786, + 47.2683512325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1005ef61a6e780bd5ae8d5493645680186013f7b", + "fields": { + "code_commune_insee": "21683", + "nom_de_la_commune": "VIEVY", + "code_postal": "21230", + "coordonnees_gps": [ + 47.0576684335, + 4.45616718775 + ], + "libelle_d_acheminement": "VIEVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45616718775, + 47.0576684335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d37fc37f5d9410c2e542f8a869a9d8650cc1f34b", + "fields": { + "code_commune_insee": "21684", + "nom_de_la_commune": "VIGNOLES", + "code_postal": "21200", + "coordonnees_gps": [ + 47.025772583, + 4.88700502505 + ], + "libelle_d_acheminement": "VIGNOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88700502505, + 47.025772583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb6504e1a78c5ec88929b26dd8e5c7a0a1922ca7", + "fields": { + "code_commune_insee": "21692", + "nom_de_la_commune": "VILLECOMTE", + "code_postal": "21120", + "coordonnees_gps": [ + 47.4993295209, + 5.01912639867 + ], + "libelle_d_acheminement": "VILLECOMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01912639867, + 47.4993295209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfd5f4e249fccb8b1a41a7b7ab8d0a184932a52e", + "fields": { + "code_commune_insee": "21705", + "nom_de_la_commune": "VILLOTTE ST SEINE", + "code_postal": "21690", + "coordonnees_gps": [ + 47.4297198383, + 4.71318867842 + ], + "libelle_d_acheminement": "VILLOTTE ST SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71318867842, + 47.4297198383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de90c8402946530d12af5c21b434f3baef691fa8", + "fields": { + "code_commune_insee": "21706", + "nom_de_la_commune": "VILLOTTE SUR OURCE", + "code_postal": "21400", + "coordonnees_gps": [ + 47.8665293113, + 4.6920408128 + ], + "libelle_d_acheminement": "VILLOTTE SUR OURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6920408128, + 47.8665293113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f93774653aaf4353cf97ea29d1ba8bab44adc06", + "fields": { + "code_commune_insee": "21707", + "nom_de_la_commune": "VILLY EN AUXOIS", + "code_postal": "21350", + "coordonnees_gps": [ + 47.4144498577, + 4.62905226658 + ], + "libelle_d_acheminement": "VILLY EN AUXOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62905226658, + 47.4144498577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58433b8068fc5949c78590c4ddc46368710464cf", + "fields": { + "code_commune_insee": "21710", + "nom_de_la_commune": "VITTEAUX", + "code_postal": "21350", + "coordonnees_gps": [ + 47.3974282764, + 4.54312292794 + ], + "libelle_d_acheminement": "VITTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54312292794, + 47.3974282764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dd63277d4f00de03aeb8ba12bb6f20fbc048fa3", + "fields": { + "code_commune_insee": "21711", + "nom_de_la_commune": "VIX", + "code_postal": "21400", + "coordonnees_gps": [ + 47.9073526426, + 4.53670759724 + ], + "libelle_d_acheminement": "VIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53670759724, + 47.9073526426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "539a70a8bc45043d7ba27e3ff701d73e812cb93a", + "fields": { + "code_commune_insee": "21716", + "nom_de_la_commune": "VOUGEOT", + "code_postal": "21640", + "coordonnees_gps": [ + 47.174271631, + 4.95989664941 + ], + "libelle_d_acheminement": "VOUGEOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95989664941, + 47.174271631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35d10d8aac92f9c8c16c16eae9fe5dbef57c93c4", + "fields": { + "code_commune_insee": "22003", + "nom_de_la_commune": "AUCALEUC", + "code_postal": "22100", + "coordonnees_gps": [ + 48.4513138492, + -2.12726351859 + ], + "libelle_d_acheminement": "AUCALEUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12726351859, + 48.4513138492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f132ba2031240901cd0999576ba70c2e804ba857", + "fields": { + "code_commune_insee": "22006", + "nom_de_la_commune": "BERHET", + "code_postal": "22140", + "coordonnees_gps": [ + 48.6978080873, + -3.30901645688 + ], + "libelle_d_acheminement": "BERHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.30901645688, + 48.6978080873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c928ed768b28f009d7fe2271995467219a3fae68", + "fields": { + "code_commune_insee": "22008", + "nom_de_la_commune": "BOBITAL", + "code_postal": "22100", + "coordonnees_gps": [ + 48.4144897659, + -2.09704568121 + ], + "libelle_d_acheminement": "BOBITAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09704568121, + 48.4144897659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "377117aac923c885d8dc2eeeb3c580f8d3cbbac7", + "fields": { + "code_commune_insee": "22024", + "nom_de_la_commune": "CALANHEL", + "code_postal": "22160", + "coordonnees_gps": [ + 48.4405735546, + -3.47617281469 + ], + "libelle_d_acheminement": "CALANHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.47617281469, + 48.4405735546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5599ef8f890c0da1a25a4f58d440bfbd610f72f6", + "fields": { + "code_commune_insee": "22025", + "nom_de_la_commune": "CALLAC", + "code_postal": "22160", + "coordonnees_gps": [ + 48.4223048141, + -3.41625904984 + ], + "libelle_d_acheminement": "CALLAC DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41625904984, + 48.4223048141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "560418d52eecbffdfe5f151ee3c7780f77bdb52a", + "fields": { + "code_commune_insee": "22026", + "nom_de_la_commune": "CALORGUEN", + "code_postal": "22100", + "coordonnees_gps": [ + 48.4051166885, + -2.02621322021 + ], + "libelle_d_acheminement": "CALORGUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02621322021, + 48.4051166885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aace30bc4aa65076d871c681d1cd89e11047d29", + "fields": { + "code_commune_insee": "22028", + "nom_de_la_commune": "CAMLEZ", + "code_postal": "22450", + "coordonnees_gps": [ + 48.7831858864, + -3.31551057887 + ], + "libelle_d_acheminement": "CAMLEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.31551057887, + 48.7831858864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "995e1275515e8d719db38a24973e76661d38337c", + "fields": { + "code_commune_insee": "22030", + "nom_de_la_commune": "CAOUENNEC LANVEZEAC", + "code_postal": "22300", + "coordonnees_gps": [ + 48.7062365317, + -3.36791409215 + ], + "libelle_d_acheminement": "CAOUENNEC LANVEZEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36791409215, + 48.7062365317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7c41c2fed8d970f62d9b5bfb58a27d33b101f3a", + "fields": { + "code_commune_insee": "22036", + "nom_de_la_commune": "LA CHAPELLE BLANCHE", + "code_postal": "22350", + "coordonnees_gps": [ + 48.2679026363, + -2.12896816388 + ], + "libelle_d_acheminement": "LA CHAPELLE BLANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12896816388, + 48.2679026363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4755cdd39938af2db210a6467693a4b1ac3d16a", + "fields": { + "code_commune_insee": "22041", + "nom_de_la_commune": "COATASCORN", + "code_postal": "22140", + "coordonnees_gps": [ + 48.6698011801, + -3.25550198639 + ], + "libelle_d_acheminement": "COATASCORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.25550198639, + 48.6698011801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd511482ae2c9c0735f0eb91b837828650310df2", + "fields": { + "code_commune_insee": "22042", + "nom_de_la_commune": "COATREVEN", + "code_postal": "22450", + "coordonnees_gps": [ + 48.7630037964, + -3.32610620924 + ], + "libelle_d_acheminement": "COATREVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.32610620924, + 48.7630037964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bc252d1716ad685870840e7a4ce935b4229357d", + "fields": { + "ligne_5": "ST GILLES DU MENE", + "code_commune_insee": "22046", + "libelle_d_acheminement": "LE MENE", + "code_postal": "22330", + "nom_de_la_commune": "LE MENE", + "coordonnees_gps": [ + 48.2937312654, + -2.52246803693 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52246803693, + 48.2937312654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "395631b8a0a5a3defd3fc8d95f6eb639b1efe688", + "fields": { + "code_commune_insee": "22050", + "nom_de_la_commune": "DINAN", + "code_postal": "22100", + "coordonnees_gps": [ + 48.4557709953, + -2.04816149693 + ], + "libelle_d_acheminement": "DINAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04816149693, + 48.4557709953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d831ba6a664c2ecf5b87363599ec3bc30b6febc0", + "fields": { + "ligne_5": "BINIC", + "code_commune_insee": "22055", + "libelle_d_acheminement": "BINIC ETABLES SUR MER", + "code_postal": "22520", + "nom_de_la_commune": "BINIC ETABLES SUR MER", + "coordonnees_gps": [ + 48.6255350477, + -2.8413899481 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.8413899481, + 48.6255350477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a781896001c756a316106eecc89fade089651889", + "fields": { + "code_commune_insee": "22069", + "nom_de_la_commune": "GUENROC", + "code_postal": "22350", + "coordonnees_gps": [ + 48.3136181449, + -2.08136290156 + ], + "libelle_d_acheminement": "GUENROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08136290156, + 48.3136181449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7217b9d679af8a370d20b3f8c39172f294b16f7", + "fields": { + "code_commune_insee": "22072", + "nom_de_la_commune": "GURUNHUEL", + "code_postal": "22390", + "coordonnees_gps": [ + 48.5082694097, + -3.28883122732 + ], + "libelle_d_acheminement": "GURUNHUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.28883122732, + 48.5082694097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b18e6bf7677751960ab07c6cd8d74f4355440cc", + "fields": { + "ligne_5": "ST RENE HILLION", + "code_commune_insee": "22081", + "libelle_d_acheminement": "HILLION", + "code_postal": "22120", + "nom_de_la_commune": "HILLION", + "coordonnees_gps": [ + 48.5029884697, + -2.64614749418 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64614749418, + 48.5029884697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73f485421f9204aee8bd4d957fe7a10878ee67fb", + "fields": { + "code_commune_insee": "22082", + "nom_de_la_commune": "LE HINGLE", + "code_postal": "22100", + "coordonnees_gps": [ + 48.3975920314, + -2.08327333205 + ], + "libelle_d_acheminement": "LE HINGLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08327333205, + 48.3975920314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca19bc3fbc2a6cbcf8dc97e740eacccfffa684e", + "fields": { + "ligne_5": "DOLO", + "code_commune_insee": "22084", + "libelle_d_acheminement": "JUGON LES LACS COMMUNE NOUVELLE", + "code_postal": "22270", + "nom_de_la_commune": "JUGON LES LACS COMMUNE NOUVELLE", + "coordonnees_gps": [ + 48.4166591067, + -2.32522349689 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.32522349689, + 48.4166591067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "262931a43b9f7d05a3832988429e08996ed4bf4e", + "fields": { + "code_commune_insee": "22086", + "nom_de_la_commune": "KERFOT", + "code_postal": "22500", + "coordonnees_gps": [ + 48.7371295698, + -3.03104722579 + ], + "libelle_d_acheminement": "KERFOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.03104722579, + 48.7371295698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7d804c7dae9b5a03872212cbab56387bb41e1e6", + "fields": { + "code_commune_insee": "22092", + "nom_de_la_commune": "KERPERT", + "code_postal": "22480", + "coordonnees_gps": [ + 48.3896278473, + -3.13681075222 + ], + "libelle_d_acheminement": "KERPERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13681075222, + 48.3896278473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb6283317b4dda3de8b87c08e2c7669e319eec01", + "fields": { + "ligne_5": "LA POTERIE", + "code_commune_insee": "22093", + "libelle_d_acheminement": "LAMBALLE ARMOR", + "code_postal": "22400", + "nom_de_la_commune": "LAMBALLE ARMOR", + "coordonnees_gps": [ + 48.4684404751, + -2.49534815954 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49534815954, + 48.4684404751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ba2a7bbc30b5471de158f44f2809d68a04d8627", + "fields": { + "ligne_5": "MAROUE", + "code_commune_insee": "22093", + "libelle_d_acheminement": "LAMBALLE ARMOR", + "code_postal": "22400", + "nom_de_la_commune": "LAMBALLE ARMOR", + "coordonnees_gps": [ + 48.4684404751, + -2.49534815954 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49534815954, + 48.4684404751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "545fbb8012267436fadc258c7c27ebbf0c41d2d4", + "fields": { + "code_commune_insee": "22101", + "nom_de_la_commune": "LANGOAT", + "code_postal": "22450", + "coordonnees_gps": [ + 48.7347929151, + -3.29767130606 + ], + "libelle_d_acheminement": "LANGOAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29767130606, + 48.7347929151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b6848f74a0774ed21f93aefa9a72d851f2a90f2", + "fields": { + "ligne_5": "LES GREVES LANGUEUX", + "code_commune_insee": "22106", + "libelle_d_acheminement": "LANGUEUX", + "code_postal": "22360", + "nom_de_la_commune": "LANGUEUX", + "coordonnees_gps": [ + 48.5000522834, + -2.70972282168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.70972282168, + 48.5000522834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f38152c3319a668ba64d20aa9c7c67676f27dac5", + "fields": { + "code_commune_insee": "22111", + "nom_de_la_commune": "LANMODEZ", + "code_postal": "22610", + "coordonnees_gps": [ + 48.8449357716, + -3.09870207936 + ], + "libelle_d_acheminement": "LANMODEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09870207936, + 48.8449357716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "441709e90ba4a7d6c9bee85a8a7a57c119aa58fc", + "fields": { + "code_commune_insee": "22115", + "nom_de_la_commune": "LANRIVAIN", + "code_postal": "22480", + "coordonnees_gps": [ + 48.3590715356, + -3.21502057949 + ], + "libelle_d_acheminement": "LANRIVAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.21502057949, + 48.3590715356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33cf8234c681c05438211c6dce4f67e15e79c9ff", + "fields": { + "code_commune_insee": "22116", + "nom_de_la_commune": "LANRODEC", + "code_postal": "22170", + "coordonnees_gps": [ + 48.4997744033, + -3.04323930161 + ], + "libelle_d_acheminement": "LANRODEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04323930161, + 48.4997744033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf36a8982e12c3614152a2cb9d0f3402e497605b", + "fields": { + "code_commune_insee": "22117", + "nom_de_la_commune": "LANTIC", + "code_postal": "22410", + "coordonnees_gps": [ + 48.6040161525, + -2.89860242151 + ], + "libelle_d_acheminement": "LANTIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89860242151, + 48.6040161525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cc445057ac83f9de04f559dec7f5d630f6fb465", + "fields": { + "code_commune_insee": "22118", + "nom_de_la_commune": "LANVALLAY", + "code_postal": "22100", + "coordonnees_gps": [ + 48.451759809, + -2.01053362747 + ], + "libelle_d_acheminement": "LANVALLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01053362747, + 48.451759809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d3ed1c49d0c544db57462f49adb14bd964588d2", + "fields": { + "code_commune_insee": "22122", + "nom_de_la_commune": "LAURENAN", + "code_postal": "22230", + "coordonnees_gps": [ + 48.214928975, + -2.51844644739 + ], + "libelle_d_acheminement": "LAURENAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.51844644739, + 48.214928975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "398c6f3e0ab88cc01decf6a5b9c6c82997a74d03", + "fields": { + "code_commune_insee": "22133", + "nom_de_la_commune": "LOSCOUET SUR MEU", + "code_postal": "22230", + "coordonnees_gps": [ + 48.1756621507, + -2.25102250347 + ], + "libelle_d_acheminement": "LOSCOUET SUR MEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.25102250347, + 48.1756621507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f13569a951149f48ddbe30a5e45d2f2e081d1bc4", + "fields": { + "code_commune_insee": "22134", + "nom_de_la_commune": "LOUANNEC", + "code_postal": "22700", + "coordonnees_gps": [ + 48.784228067, + -3.41180213141 + ], + "libelle_d_acheminement": "LOUANNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41180213141, + 48.784228067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f17be26a1ff232d9dcb5540b795118bcede51dbd", + "fields": { + "code_commune_insee": "22138", + "nom_de_la_commune": "MAEL PESTIVIEN", + "code_postal": "22160", + "coordonnees_gps": [ + 48.4041439455, + -3.29047753101 + ], + "libelle_d_acheminement": "MAEL PESTIVIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29047753101, + 48.4041439455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65bc6f2b22da7fd2ae6e61df55fcbcbbe985f520", + "fields": { + "code_commune_insee": "22143", + "nom_de_la_commune": "MATIGNON", + "code_postal": "22550", + "coordonnees_gps": [ + 48.6017682782, + -2.29021789488 + ], + "libelle_d_acheminement": "MATIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.29021789488, + 48.6017682782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e15658f8c305cd7a04ada65d7bb01ecf85aa82af", + "fields": { + "code_commune_insee": "22152", + "nom_de_la_commune": "MINIHY TREGUIER", + "code_postal": "22220", + "coordonnees_gps": [ + 48.7680136612, + -3.25834095336 + ], + "libelle_d_acheminement": "MINIHY TREGUIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.25834095336, + 48.7680136612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c216d2ad4305b30bf46e647c9c7cf27f57f7a111", + "fields": { + "code_commune_insee": "22153", + "nom_de_la_commune": "MONCONTOUR", + "code_postal": "22510", + "coordonnees_gps": [ + 48.3581980369, + -2.63225581837 + ], + "libelle_d_acheminement": "MONCONTOUR DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.63225581837, + 48.3581980369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e85e5446767cd68cefd3b78526e88cb74eb6901c", + "fields": { + "code_commune_insee": "22165", + "nom_de_la_commune": "PENGUILY", + "code_postal": "22510", + "coordonnees_gps": [ + 48.3715193547, + -2.49421726278 + ], + "libelle_d_acheminement": "PENGUILY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49421726278, + 48.3715193547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7dfa56c48e99fd519cb3e0de02da255147d67b0", + "fields": { + "ligne_5": "LA CLARTE", + "code_commune_insee": "22168", + "libelle_d_acheminement": "PERROS GUIREC", + "code_postal": "22700", + "nom_de_la_commune": "PERROS GUIREC", + "coordonnees_gps": [ + 48.8094393417, + -3.46769227891 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.46769227891, + 48.8094393417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1389c10f76550a30f1af12242dcd38af0e75c070", + "fields": { + "code_commune_insee": "22172", + "nom_de_la_commune": "PLANCOET", + "code_postal": "22130", + "coordonnees_gps": [ + 48.5148616647, + -2.21936660339 + ], + "libelle_d_acheminement": "PLANCOET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21936660339, + 48.5148616647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f4376678fe995d05d12d1f9d13a298d9a98975e", + "fields": { + "code_commune_insee": "22182", + "nom_de_la_commune": "PLELO", + "code_postal": "22170", + "coordonnees_gps": [ + 48.5539490397, + -2.92735554544 + ], + "libelle_d_acheminement": "PLELO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.92735554544, + 48.5539490397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1f1c7b34e8c3e468ed0087a3df0f49d94944260", + "fields": { + "ligne_5": "LA FERRIERE", + "code_commune_insee": "22183", + "libelle_d_acheminement": "PLEMET", + "code_postal": "22210", + "nom_de_la_commune": "PLEMET", + "coordonnees_gps": [ + 48.1860837585, + -2.5859903316 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.5859903316, + 48.1860837585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e91624cc9ac7865bc648c568278ac34e5b197f74", + "fields": { + "code_commune_insee": "22185", + "nom_de_la_commune": "PLENEE JUGON", + "code_postal": "22640", + "coordonnees_gps": [ + 48.3556203022, + -2.41594505184 + ], + "libelle_d_acheminement": "PLENEE JUGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41594505184, + 48.3556203022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6483ef1f0e90fe38ad0ee14f4f15355c6d4bbf12", + "fields": { + "code_commune_insee": "22187", + "nom_de_la_commune": "PLERIN", + "code_postal": "22190", + "coordonnees_gps": [ + 48.5441732134, + -2.77004635921 + ], + "libelle_d_acheminement": "PLERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77004635921, + 48.5441732134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00f9058f28bfdeb24308f6420fa3cf14eb935464", + "fields": { + "ligne_5": "L ARMOR", + "code_commune_insee": "22195", + "libelle_d_acheminement": "PLEUBIAN", + "code_postal": "22610", + "nom_de_la_commune": "PLEUBIAN", + "coordonnees_gps": [ + 48.8434804253, + -3.13340767618 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13340767618, + 48.8434804253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7249c2ecb1579d500ef8b07f9e4544ae9fc54f07", + "fields": { + "code_commune_insee": "22199", + "nom_de_la_commune": "PLEUMEUR GAUTIER", + "code_postal": "22740", + "coordonnees_gps": [ + 48.8001346688, + -3.15198645075 + ], + "libelle_d_acheminement": "PLEUMEUR GAUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15198645075, + 48.8001346688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4265cf56f2a7b39e13b46f0a3969951eec79a374", + "fields": { + "code_commune_insee": "22204", + "nom_de_la_commune": "PLOEZAL", + "code_postal": "22260", + "coordonnees_gps": [ + 48.7171371071, + -3.18015723949 + ], + "libelle_d_acheminement": "PLOEZAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18015723949, + 48.7171371071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69540b334b6294ba02a854ae32a77cb11495d744", + "fields": { + "ligne_5": "TREGON", + "code_commune_insee": "22209", + "libelle_d_acheminement": "BEAUSSAIS SUR MER", + "code_postal": "22650", + "nom_de_la_commune": "BEAUSSAIS SUR MER", + "coordonnees_gps": [ + 48.5596688192, + -2.12838362694 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12838362694, + 48.5596688192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aae9940c51accbed8c6f2d8df3e9d7b2737147cd", + "fields": { + "code_commune_insee": "22216", + "nom_de_la_commune": "PLOUGONVER", + "code_postal": "22810", + "coordonnees_gps": [ + 48.4852045977, + -3.37517285292 + ], + "libelle_d_acheminement": "PLOUGONVER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37517285292, + 48.4852045977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a459184fbabb9510ee794eae83bede717686790f", + "fields": { + "ligne_5": "LE YAUDET", + "code_commune_insee": "22224", + "libelle_d_acheminement": "PLOULEC H", + "code_postal": "22300", + "nom_de_la_commune": "PLOULEC H", + "coordonnees_gps": [ + 48.7189901633, + -3.50164887821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.50164887821, + 48.7189901633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fd6533016b82d0b0fbd7a31eab69edf9151e048", + "fields": { + "code_commune_insee": "22225", + "nom_de_la_commune": "PLOUMAGOAR", + "code_postal": "22970", + "coordonnees_gps": [ + 48.5304587178, + -3.109565675 + ], + "libelle_d_acheminement": "PLOUMAGOAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.109565675, + 48.5304587178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04d3f7b464921f120e8d78384a0b6468ad3ffa26", + "fields": { + "code_commune_insee": "22227", + "nom_de_la_commune": "PLOUNERIN", + "code_postal": "22780", + "coordonnees_gps": [ + 48.5667945613, + -3.54835047587 + ], + "libelle_d_acheminement": "PLOUNERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.54835047587, + 48.5667945613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db8a9055b9cf7019ffa5756b17bb7f4ed94a1580", + "fields": { + "code_commune_insee": "22229", + "nom_de_la_commune": "PLOUNEVEZ QUINTIN", + "code_postal": "22110", + "coordonnees_gps": [ + 48.2853424694, + -3.24078209284 + ], + "libelle_d_acheminement": "PLOUNEVEZ QUINTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.24078209284, + 48.2853424694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2153b93c8f8fb69870f0021d2c654911dd6f5042", + "fields": { + "code_commune_insee": "22235", + "nom_de_la_commune": "PLOUZELAMBRE", + "code_postal": "22420", + "coordonnees_gps": [ + 48.6478103938, + -3.53679598491 + ], + "libelle_d_acheminement": "PLOUZELAMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.53679598491, + 48.6478103938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fedffac2d610c670cba205aacd9c2ebcf10757b", + "fields": { + "code_commune_insee": "22238", + "nom_de_la_commune": "PLUFUR", + "code_postal": "22310", + "coordonnees_gps": [ + 48.6108539647, + -3.57279775883 + ], + "libelle_d_acheminement": "PLUFUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.57279775883, + 48.6108539647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb339018efc31ca3796d4c868e050ecbd00d4504", + "fields": { + "code_commune_insee": "22239", + "nom_de_la_commune": "PLUMAUDAN", + "code_postal": "22350", + "coordonnees_gps": [ + 48.3560244309, + -2.11489038909 + ], + "libelle_d_acheminement": "PLUMAUDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.11489038909, + 48.3560244309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "773229f38032f7b09a9d123d5d5ca29a6fe6cb8a", + "fields": { + "code_commune_insee": "22248", + "nom_de_la_commune": "POMMERIT LE VICOMTE", + "code_postal": "22200", + "coordonnees_gps": [ + 48.6180167491, + -3.10285419509 + ], + "libelle_d_acheminement": "POMMERIT LE VICOMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.10285419509, + 48.6180167491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3de9e515efc62fe21d2be28ad722a452619e060d", + "fields": { + "code_commune_insee": "22254", + "nom_de_la_commune": "PRAT", + "code_postal": "22140", + "coordonnees_gps": [ + 48.6822524197, + -3.29802324655 + ], + "libelle_d_acheminement": "PRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29802324655, + 48.6822524197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3484d4ce1c9e9f67fd503129c2b961836eed1a5b", + "fields": { + "code_commune_insee": "22257", + "nom_de_la_commune": "QUEMPERVEN", + "code_postal": "22450", + "coordonnees_gps": [ + 48.7254448619, + -3.3365775536 + ], + "libelle_d_acheminement": "QUEMPERVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.3365775536, + 48.7254448619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e422957a0ac7bdb24a3e53a503be50b5ce268c00", + "fields": { + "code_commune_insee": "22260", + "nom_de_la_commune": "LE QUILLIO", + "code_postal": "22460", + "coordonnees_gps": [ + 48.2401978664, + -2.89821390268 + ], + "libelle_d_acheminement": "LE QUILLIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89821390268, + 48.2401978664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de8797ce0356959f35003e2d97c6e7ac6eb765ff", + "fields": { + "ligne_5": "HENGOAT", + "code_commune_insee": "22264", + "libelle_d_acheminement": "LA ROCHE JAUDY", + "code_postal": "22450", + "nom_de_la_commune": "LA ROCHE JAUDY", + "coordonnees_gps": [ + 48.7456370261, + -3.25762802773 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.25762802773, + 48.7456370261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73e43e703aa72e1b92406e17abc75f1e96db01e6", + "fields": { + "ligne_5": "POMMERIT JAUDY", + "code_commune_insee": "22264", + "libelle_d_acheminement": "LA ROCHE JAUDY", + "code_postal": "22450", + "nom_de_la_commune": "LA ROCHE JAUDY", + "coordonnees_gps": [ + 48.7456370261, + -3.25762802773 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.25762802773, + 48.7456370261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2199c0cea03d441e2471c00572f720635b4203a", + "fields": { + "code_commune_insee": "22266", + "nom_de_la_commune": "ROSTRENEN", + "code_postal": "22110", + "coordonnees_gps": [ + 48.2215427736, + -3.31179704668 + ], + "libelle_d_acheminement": "ROSTRENEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.31179704668, + 48.2215427736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7b5ba12e0551d86f1db4baf7d3af500134c8162", + "fields": { + "ligne_5": "BONEN", + "code_commune_insee": "22266", + "libelle_d_acheminement": "ROSTRENEN", + "code_postal": "22110", + "nom_de_la_commune": "ROSTRENEN", + "coordonnees_gps": [ + 48.2215427736, + -3.31179704668 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.31179704668, + 48.2215427736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "561312cde3a5b469fb790cf4526540611febb9a3", + "fields": { + "code_commune_insee": "22267", + "nom_de_la_commune": "ROUILLAC", + "code_postal": "22250", + "coordonnees_gps": [ + 48.3069863373, + -2.36929726654 + ], + "libelle_d_acheminement": "ROUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.36929726654, + 48.3069863373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6914f063787f16500679bb10e04308e4f85d924f", + "fields": { + "code_commune_insee": "22273", + "nom_de_la_commune": "ST ALBAN", + "code_postal": "22400", + "coordonnees_gps": [ + 48.5551884911, + -2.50893906207 + ], + "libelle_d_acheminement": "ST ALBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.50893906207, + 48.5551884911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf35668bea11902ef2390d0e5670990babab0767", + "fields": { + "code_commune_insee": "22274", + "nom_de_la_commune": "ST ANDRE DES EAUX", + "code_postal": "22630", + "coordonnees_gps": [ + 48.3731003808, + -2.01421441815 + ], + "libelle_d_acheminement": "ST ANDRE DES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01421441815, + 48.3731003808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0df610ca596c11bbb03838ce16a03e60e1b03eee", + "fields": { + "code_commune_insee": "22275", + "nom_de_la_commune": "ST BARNABE", + "code_postal": "22600", + "coordonnees_gps": [ + 48.1383637671, + -2.70188479455 + ], + "libelle_d_acheminement": "ST BARNABE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.70188479455, + 48.1383637671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46a05493dde09d884bbc61dd88e80c8764fa8126", + "fields": { + "code_commune_insee": "22276", + "nom_de_la_commune": "ST BIHY", + "code_postal": "22800", + "coordonnees_gps": [ + 48.3758879251, + -2.96669144631 + ], + "libelle_d_acheminement": "ST BIHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96669144631, + 48.3758879251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49e2be4877e96211dc4e21336f2cf9a4b2be91b7", + "fields": { + "code_commune_insee": "22277", + "nom_de_la_commune": "ST BRANDAN", + "code_postal": "22800", + "coordonnees_gps": [ + 48.3903359027, + -2.86345055821 + ], + "libelle_d_acheminement": "ST BRANDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.86345055821, + 48.3903359027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c79a581cca56707f10b4a1fabc0f7da244a203e", + "fields": { + "code_commune_insee": "22279", + "nom_de_la_commune": "ST CARADEC", + "code_postal": "22600", + "coordonnees_gps": [ + 48.1922379278, + -2.86751466131 + ], + "libelle_d_acheminement": "ST CARADEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.86751466131, + 48.1922379278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "031dc6989e1a9bce3316eb4b3c3ed6297eb328c3", + "fields": { + "code_commune_insee": "22288", + "nom_de_la_commune": "ST ETIENNE DU GUE DE L ISLE", + "code_postal": "22210", + "coordonnees_gps": [ + 48.0856987745, + -2.64402858884 + ], + "libelle_d_acheminement": "ST ETIENNE DU GUE DE L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64402858884, + 48.0856987745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "164d4bc83d134eda8c04f1fde8f837906ea3d861", + "fields": { + "code_commune_insee": "22295", + "nom_de_la_commune": "ST GILLES VIEUX MARCHE", + "code_postal": "22530", + "coordonnees_gps": [ + 48.2503674727, + -2.96951412596 + ], + "libelle_d_acheminement": "ST GILLES VIEUX MARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96951412596, + 48.2503674727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf912de19bfe56751de2ba0190cd0563985d51bf", + "fields": { + "code_commune_insee": "22302", + "nom_de_la_commune": "ST JACUT DE LA MER", + "code_postal": "22750", + "coordonnees_gps": [ + 48.5879964752, + -2.1932468359 + ], + "libelle_d_acheminement": "ST JACUT DE LA MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1932468359, + 48.5879964752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "739288c51efdeb6a1fa46416fd58c112c1fb9198", + "fields": { + "code_commune_insee": "22307", + "nom_de_la_commune": "ST JULIEN", + "code_postal": "22940", + "coordonnees_gps": [ + 48.4480990562, + -2.81685604656 + ], + "libelle_d_acheminement": "ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.81685604656, + 48.4480990562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d846c58a30e55dd4dc10d0f4011a1de3573a75a", + "fields": { + "code_commune_insee": "22308", + "nom_de_la_commune": "ST JUVAT", + "code_postal": "22630", + "coordonnees_gps": [ + 48.3619921147, + -2.05476636465 + ], + "libelle_d_acheminement": "ST JUVAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05476636465, + 48.3619921147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f548223fe6d2b48c10703fefb4d5179ae16a2413", + "fields": { + "code_commune_insee": "22310", + "nom_de_la_commune": "ST LAURENT", + "code_postal": "22140", + "coordonnees_gps": [ + 48.6153469206, + -3.24192782376 + ], + "libelle_d_acheminement": "ST LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.24192782376, + 48.6153469206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1a93c32e96320ad8eaabc40a2e33b43c21b9c3f", + "fields": { + "code_commune_insee": "22311", + "nom_de_la_commune": "ST LORMEL", + "code_postal": "22130", + "coordonnees_gps": [ + 48.5521979972, + -2.23507551889 + ], + "libelle_d_acheminement": "ST LORMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.23507551889, + 48.5521979972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96e66473df4b640175edf2b655fd0a8093235707", + "fields": { + "code_commune_insee": "22314", + "nom_de_la_commune": "ST MAUDAN", + "code_postal": "22600", + "coordonnees_gps": [ + 48.1114125678, + -2.76769637126 + ], + "libelle_d_acheminement": "ST MAUDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76769637126, + 48.1114125678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85cab61758648c287e86353a83ee4909508808d8", + "fields": { + "code_commune_insee": "22323", + "nom_de_la_commune": "ST POTAN", + "code_postal": "22550", + "coordonnees_gps": [ + 48.5574203635, + -2.29323126178 + ], + "libelle_d_acheminement": "ST POTAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.29323126178, + 48.5574203635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9812e7123c298f0ab3ba0f4be9a86f60c7cef500", + "fields": { + "ligne_5": "KERTUGAL", + "code_commune_insee": "22325", + "libelle_d_acheminement": "ST QUAY PORTRIEUX", + "code_postal": "22410", + "nom_de_la_commune": "ST QUAY PORTRIEUX", + "coordonnees_gps": [ + 48.6542475006, + -2.84382337656 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84382337656, + 48.6542475006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92f14a04a0dc4113067498ce71aa6e99f1d81d95", + "fields": { + "code_commune_insee": "22326", + "nom_de_la_commune": "ST RIEUL", + "code_postal": "22270", + "coordonnees_gps": [ + 48.4428159884, + -2.42162290786 + ], + "libelle_d_acheminement": "ST RIEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.42162290786, + 48.4428159884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a161f598545ddab9416b06473e4e212ce20036e9", + "fields": { + "code_commune_insee": "22332", + "nom_de_la_commune": "ST TRIMOEL", + "code_postal": "22510", + "coordonnees_gps": [ + 48.3933041985, + -2.5412449971 + ], + "libelle_d_acheminement": "ST TRIMOEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.5412449971, + 48.3933041985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92323f9c282a72ba4160632f3bef68a30ae18dc6", + "fields": { + "code_commune_insee": "22334", + "nom_de_la_commune": "ST IGEAUX", + "code_postal": "22570", + "coordonnees_gps": [ + 48.2777505103, + -3.11474670653 + ], + "libelle_d_acheminement": "ST IGEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.11474670653, + 48.2777505103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40948a5ff3cc626061cf17b7b6d419d81396b888", + "fields": { + "code_commune_insee": "22335", + "nom_de_la_commune": "SENVEN LEHART", + "code_postal": "22720", + "coordonnees_gps": [ + 48.4354167411, + -3.06449717783 + ], + "libelle_d_acheminement": "SENVEN LEHART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.06449717783, + 48.4354167411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a68034b73d407e6a24c2eb466cb17e45606f05a0", + "fields": { + "code_commune_insee": "22343", + "nom_de_la_commune": "TREBEURDEN", + "code_postal": "22560", + "coordonnees_gps": [ + 48.7707775944, + -3.55769238632 + ], + "libelle_d_acheminement": "TREBEURDEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.55769238632, + 48.7707775944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d259553e72e8b1ed9f01d9a7586ea6c508ad1d24", + "fields": { + "code_commune_insee": "22345", + "nom_de_la_commune": "TREBRY", + "code_postal": "22510", + "coordonnees_gps": [ + 48.3456919515, + -2.55853331378 + ], + "libelle_d_acheminement": "TREBRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.55853331378, + 48.3456919515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "478ca24045265dec91d0299bb432f18910c3f2a0", + "fields": { + "ligne_5": "LOCQUEMEAU", + "code_commune_insee": "22349", + "libelle_d_acheminement": "TREDREZ LOCQUEMEAU", + "code_postal": "22300", + "nom_de_la_commune": "TREDREZ LOCQUEMEAU", + "coordonnees_gps": [ + 48.7075368111, + -3.56441252563 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.56441252563, + 48.7075368111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c6bb520fe479c3d31cbf1242728a0add6361740", + "fields": { + "code_commune_insee": "22350", + "nom_de_la_commune": "TREDUDER", + "code_postal": "22310", + "coordonnees_gps": [ + 48.6542493069, + -3.56641535268 + ], + "libelle_d_acheminement": "TREDUDER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.56641535268, + 48.6542493069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "661c49030570fc065859816362ae1e5e61c42dc7", + "fields": { + "code_commune_insee": "22361", + "nom_de_la_commune": "TREGUIDEL", + "code_postal": "22290", + "coordonnees_gps": [ + 48.6002375732, + -2.94288237882 + ], + "libelle_d_acheminement": "TREGUIDEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.94288237882, + 48.6002375732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "062e54af0495394fb27f9c3d29e6dcf3c1bbeb6c", + "fields": { + "code_commune_insee": "22370", + "nom_de_la_commune": "TREMEVEN", + "code_postal": "22290", + "coordonnees_gps": [ + 48.671108578, + -3.0320602067 + ], + "libelle_d_acheminement": "TREMEVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.0320602067, + 48.671108578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dead81510ae9c51a486c3db0bc699ec641c4b3f9", + "fields": { + "code_commune_insee": "22371", + "nom_de_la_commune": "TREMOREL", + "code_postal": "22230", + "coordonnees_gps": [ + 48.1914259889, + -2.30214292641 + ], + "libelle_d_acheminement": "TREMOREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.30214292641, + 48.1914259889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3279c4064245f9a5b22cdc57ef5f90755aeca8d1", + "fields": { + "code_commune_insee": "22376", + "nom_de_la_commune": "TREVE", + "code_postal": "22600", + "coordonnees_gps": [ + 48.2160142902, + -2.80698312231 + ], + "libelle_d_acheminement": "TREVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80698312231, + 48.2160142902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1598051e258eaa1ba6f99f54515a0ca09d2b786", + "fields": { + "code_commune_insee": "22378", + "nom_de_la_commune": "TREVEREC", + "code_postal": "22290", + "coordonnees_gps": [ + 48.659497706, + -3.05457326642 + ], + "libelle_d_acheminement": "TREVEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.05457326642, + 48.659497706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cfefd72aca97c2ea80a27eaaecaffb84d8d1353", + "fields": { + "code_commune_insee": "22383", + "nom_de_la_commune": "TROGUERY", + "code_postal": "22450", + "coordonnees_gps": [ + 48.7607516735, + -3.22457645255 + ], + "libelle_d_acheminement": "TROGUERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.22457645255, + 48.7607516735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4054a0cdfd871776fd936cdf01eabd69fb634cdf", + "fields": { + "code_commune_insee": "22386", + "nom_de_la_commune": "LE VIEUX BOURG", + "code_postal": "22800", + "coordonnees_gps": [ + 48.3910051078, + -3.00385012187 + ], + "libelle_d_acheminement": "LE VIEUX BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00385012187, + 48.3910051078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4416a29b84d2b318ed9d9aeae23c269fc06b647", + "fields": { + "code_commune_insee": "22387", + "nom_de_la_commune": "LE VIEUX MARCHE", + "code_postal": "22420", + "coordonnees_gps": [ + 48.6138736839, + -3.43816740638 + ], + "libelle_d_acheminement": "LE VIEUX MARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.43816740638, + 48.6138736839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33ba778428cdbb103cf6405bba72912d4f0bb134", + "fields": { + "code_commune_insee": "22389", + "nom_de_la_commune": "YFFINIAC", + "code_postal": "22120", + "coordonnees_gps": [ + 48.4685015878, + -2.68098120309 + ], + "libelle_d_acheminement": "YFFINIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.68098120309, + 48.4685015878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5770a11389efe6364c65b3ede57ff8bbd171a96e", + "fields": { + "code_commune_insee": "23006", + "nom_de_la_commune": "ARRENES", + "code_postal": "23210", + "coordonnees_gps": [ + 46.0724415399, + 1.56731050759 + ], + "libelle_d_acheminement": "ARRENES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56731050759, + 46.0724415399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cde89cdab737d0104370761694dcf973c1575865", + "fields": { + "code_commune_insee": "23013", + "nom_de_la_commune": "AUZANCES", + "code_postal": "23700", + "coordonnees_gps": [ + 46.0263051505, + 2.50665292923 + ], + "libelle_d_acheminement": "AUZANCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50665292923, + 46.0263051505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "705ef4b49196816d5daefdf491aada551bcdea26", + "fields": { + "code_commune_insee": "23016", + "nom_de_la_commune": "BANIZE", + "code_postal": "23120", + "coordonnees_gps": [ + 45.9368272021, + 1.99756920373 + ], + "libelle_d_acheminement": "BANIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99756920373, + 45.9368272021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e3acc1296be92f2723f70218ad4b4b8aa414e48", + "fields": { + "code_commune_insee": "23032", + "nom_de_la_commune": "BOUSSAC BOURG", + "code_postal": "23600", + "coordonnees_gps": [ + 46.3680932326, + 2.21561135415 + ], + "libelle_d_acheminement": "BOUSSAC BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21561135415, + 46.3680932326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71fd7dbb76be48a4db33e96657decf5d602e2291", + "fields": { + "code_commune_insee": "23033", + "nom_de_la_commune": "LA BRIONNE", + "code_postal": "23000", + "coordonnees_gps": [ + 46.1643596252, + 1.78886937699 + ], + "libelle_d_acheminement": "LA BRIONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78886937699, + 46.1643596252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7876638a9ee9e80cdf31f28850fcc6c721ee5a79", + "fields": { + "code_commune_insee": "23046", + "nom_de_la_commune": "CHAMBONCHARD", + "code_postal": "23110", + "coordonnees_gps": [ + 46.1608851988, + 2.5415892944 + ], + "libelle_d_acheminement": "CHAMBONCHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5415892944, + 46.1608851988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aae906edbcef3ba7345f7ea3569a56b2c5345c0b", + "fields": { + "code_commune_insee": "23050", + "nom_de_la_commune": "LA CHAPELLE BALOUE", + "code_postal": "23160", + "coordonnees_gps": [ + 46.3589545585, + 1.56868823995 + ], + "libelle_d_acheminement": "LA CHAPELLE BALOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56868823995, + 46.3589545585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5385adcfc27043a75adee2f41e0972345569b15", + "fields": { + "code_commune_insee": "23058", + "nom_de_la_commune": "LE CHAUCHET", + "code_postal": "23130", + "coordonnees_gps": [ + 46.1103548502, + 2.32892564693 + ], + "libelle_d_acheminement": "LE CHAUCHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32892564693, + 46.1103548502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cc0f0075421c766aa8c75cccf156036641e0232", + "fields": { + "code_commune_insee": "23059", + "nom_de_la_commune": "LA CHAUSSADE", + "code_postal": "23200", + "coordonnees_gps": [ + 45.9876295804, + 2.24885532126 + ], + "libelle_d_acheminement": "LA CHAUSSADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24885532126, + 45.9876295804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f45bd571a05984b09812ec2903562ee989f0edf5", + "fields": { + "code_commune_insee": "23066", + "nom_de_la_commune": "LE COMPAS", + "code_postal": "23700", + "coordonnees_gps": [ + 46.0039185769, + 2.4526231554 + ], + "libelle_d_acheminement": "LE COMPAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4526231554, + 46.0039185769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f6be84c8b81e0d4338ddacb595052e70e549bdc", + "fields": { + "code_commune_insee": "23071", + "nom_de_la_commune": "CROZE", + "code_postal": "23500", + "coordonnees_gps": [ + 45.8244062153, + 2.16780878793 + ], + "libelle_d_acheminement": "CROZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16780878793, + 45.8244062153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81a4f2bab48f84743c2d72defbc88c1d75453088", + "fields": { + "code_commune_insee": "23086", + "nom_de_la_commune": "FRANSECHES", + "code_postal": "23480", + "coordonnees_gps": [ + 46.0285507814, + 2.03995506962 + ], + "libelle_d_acheminement": "FRANSECHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03995506962, + 46.0285507814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "370a5c928b04fce35601cb360cbd47b9d5318eba", + "fields": { + "code_commune_insee": "23090", + "nom_de_la_commune": "GENTIOUX PIGEROLLES", + "code_postal": "23340", + "coordonnees_gps": [ + 45.7846764541, + 2.00852107248 + ], + "libelle_d_acheminement": "GENTIOUX PIGEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00852107248, + 45.7846764541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "260edf855892b045d417e80968472be86bd26693", + "fields": { + "code_commune_insee": "23095", + "nom_de_la_commune": "LE GRAND BOURG", + "code_postal": "23240", + "coordonnees_gps": [ + 46.1597264029, + 1.65508431934 + ], + "libelle_d_acheminement": "LE GRAND BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65508431934, + 46.1597264029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3f573d4c03da61422ab22cd3e77351f3ca7d7ac", + "fields": { + "code_commune_insee": "23097", + "nom_de_la_commune": "ISSOUDUN LETRIEIX", + "code_postal": "23130", + "coordonnees_gps": [ + 46.0660443592, + 2.16414045636 + ], + "libelle_d_acheminement": "ISSOUDUN LETRIEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16414045636, + 46.0660443592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "726dbde6289207b2d49cdaabc50a2b5d6c4a4635", + "fields": { + "code_commune_insee": "23102", + "nom_de_la_commune": "LADAPEYRE", + "code_postal": "23270", + "coordonnees_gps": [ + 46.2487275281, + 2.05005881672 + ], + "libelle_d_acheminement": "LADAPEYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05005881672, + 46.2487275281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b682732af4fb1a324111d484f440e71ebbdd475", + "fields": { + "ligne_5": "MALVAL", + "code_commune_insee": "23109", + "libelle_d_acheminement": "LINARD MALVAL", + "code_postal": "23220", + "nom_de_la_commune": "LINARD MALVAL", + "coordonnees_gps": [ + 46.3666691845, + 1.87647741216 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87647741216, + 46.3666691845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71529a4d9288d10a847e355b48c6cb06bcc1e1e6", + "fields": { + "code_commune_insee": "23112", + "nom_de_la_commune": "LOURDOUEIX ST PIERRE", + "code_postal": "23360", + "coordonnees_gps": [ + 46.3997480565, + 1.82842448851 + ], + "libelle_d_acheminement": "LOURDOUEIX ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82842448851, + 46.3997480565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b31cad398d0afbcd62172b5e84d1e29dfc03fffb", + "fields": { + "code_commune_insee": "23113", + "nom_de_la_commune": "LUPERSAT", + "code_postal": "23190", + "coordonnees_gps": [ + 45.9899835422, + 2.35823852546 + ], + "libelle_d_acheminement": "LUPERSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35823852546, + 45.9899835422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6fe49c3dcda464a45337dad4bc38fef82e22176", + "fields": { + "code_commune_insee": "23115", + "nom_de_la_commune": "MAGNAT L ETRANGE", + "code_postal": "23260", + "coordonnees_gps": [ + 45.795032018, + 2.26882619571 + ], + "libelle_d_acheminement": "MAGNAT L ETRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26882619571, + 45.795032018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "253040ed18267000acc0252f2110f35b84f6395d", + "fields": { + "code_commune_insee": "23120", + "nom_de_la_commune": "MALLERET BOUSSAC", + "code_postal": "23600", + "coordonnees_gps": [ + 46.3416170909, + 2.15084552451 + ], + "libelle_d_acheminement": "MALLERET BOUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15084552451, + 46.3416170909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69a4594f3d5696bbc9486b869e4342a48616a68e", + "fields": { + "code_commune_insee": "23124", + "nom_de_la_commune": "MARSAC", + "code_postal": "23210", + "coordonnees_gps": [ + 46.100183678, + 1.58421912003 + ], + "libelle_d_acheminement": "MARSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58421912003, + 46.100183678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "152be1ed334665e2d23c2f9d5d59595923c4136b", + "fields": { + "code_commune_insee": "23125", + "nom_de_la_commune": "LE MAS D ARTIGE", + "code_postal": "23100", + "coordonnees_gps": [ + 45.7343897624, + 2.1863210182 + ], + "libelle_d_acheminement": "LE MAS D ARTIGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1863210182, + 45.7343897624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "226d9299ae1e700a1b24dd24bace358c722b37a2", + "fields": { + "code_commune_insee": "23131", + "nom_de_la_commune": "MERINCHAL", + "code_postal": "23420", + "coordonnees_gps": [ + 45.9084057409, + 2.49421673584 + ], + "libelle_d_acheminement": "MERINCHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49421673584, + 45.9084057409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "766a0ee3820bab92a4531bc4243942244e81938b", + "fields": { + "code_commune_insee": "23138", + "nom_de_la_commune": "MOUTIER D AHUN", + "code_postal": "23150", + "coordonnees_gps": [ + 46.0997586109, + 2.0630190962 + ], + "libelle_d_acheminement": "MOUTIER D AHUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0630190962, + 46.0997586109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a80c62d6ccef24598e8393b80cb3d7560a051978", + "fields": { + "code_commune_insee": "23139", + "nom_de_la_commune": "MOUTIER MALCARD", + "code_postal": "23220", + "coordonnees_gps": [ + 46.3835305321, + 1.95043016159 + ], + "libelle_d_acheminement": "MOUTIER MALCARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95043016159, + 46.3835305321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fe9a73db38802044581cc33212972e6ea3e13c0", + "fields": { + "code_commune_insee": "23147", + "nom_de_la_commune": "NOUZEROLLES", + "code_postal": "23360", + "coordonnees_gps": [ + 46.383379168, + 1.74040246165 + ], + "libelle_d_acheminement": "NOUZEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74040246165, + 46.383379168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b5874cd98cbbf69d78a80441784bee753f82747", + "fields": { + "code_commune_insee": "23155", + "nom_de_la_commune": "PONTARION", + "code_postal": "23250", + "coordonnees_gps": [ + 45.9957082481, + 1.84611482202 + ], + "libelle_d_acheminement": "PONTARION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84611482202, + 45.9957082481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "695b263b4bffec545646fbb7f0c2a5551d89492d", + "fields": { + "code_commune_insee": "23159", + "nom_de_la_commune": "PUY MALSIGNAT", + "code_postal": "23130", + "coordonnees_gps": [ + 46.0356584906, + 2.21430412833 + ], + "libelle_d_acheminement": "PUY MALSIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21430412833, + 46.0356584906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13242ae3e220915a66e3a2a26718d3f9dfa46af4", + "fields": { + "code_commune_insee": "23167", + "nom_de_la_commune": "SANNAT", + "code_postal": "23110", + "coordonnees_gps": [ + 46.1229856338, + 2.41539962939 + ], + "libelle_d_acheminement": "SANNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41539962939, + 46.1229856338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08cdb9e1f132b3aad856c0575e38a080b418004a", + "fields": { + "code_commune_insee": "23168", + "nom_de_la_commune": "SARDENT", + "code_postal": "23250", + "coordonnees_gps": [ + 46.0459895877, + 1.85886765501 + ], + "libelle_d_acheminement": "SARDENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85886765501, + 46.0459895877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f17472a38ee73e10e858ab9123b8fdcb5b769c9c", + "fields": { + "code_commune_insee": "23169", + "nom_de_la_commune": "LA SAUNIERE", + "code_postal": "23000", + "coordonnees_gps": [ + 46.1285230367, + 1.94133792755 + ], + "libelle_d_acheminement": "LA SAUNIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94133792755, + 46.1285230367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b16d4986695d3f39127b65b8d8b467949b09dcf", + "fields": { + "code_commune_insee": "23171", + "nom_de_la_commune": "SERMUR", + "code_postal": "23700", + "coordonnees_gps": [ + 45.9695912053, + 2.41544170829 + ], + "libelle_d_acheminement": "SERMUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41544170829, + 45.9695912053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "494b7284875a181dce0c9b71ca7794eef2189bf8", + "fields": { + "code_commune_insee": "23172", + "nom_de_la_commune": "LA SERRE BUSSIERE VIEILLE", + "code_postal": "23190", + "coordonnees_gps": [ + 46.0560109698, + 2.33476198361 + ], + "libelle_d_acheminement": "LA SERRE BUSSIERE VIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33476198361, + 46.0560109698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b90aa4daf4e7606e8721b1d47767dec040a5eb9f", + "fields": { + "code_commune_insee": "23175", + "nom_de_la_commune": "SOUS PARSAT", + "code_postal": "23150", + "coordonnees_gps": [ + 46.0580187213, + 1.97890165632 + ], + "libelle_d_acheminement": "SOUS PARSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97890165632, + 46.0580187213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2da83dada2f92007c7658004d061f5d43c24455b", + "fields": { + "code_commune_insee": "23176", + "nom_de_la_commune": "LA SOUTERRAINE", + "code_postal": "23300", + "coordonnees_gps": [ + 46.2366579943, + 1.47591088913 + ], + "libelle_d_acheminement": "LA SOUTERRAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47591088913, + 46.2366579943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc4b1f5721911569eab029ed9351bc071620b4ea", + "fields": { + "code_commune_insee": "23185", + "nom_de_la_commune": "ST CHABRAIS", + "code_postal": "23130", + "coordonnees_gps": [ + 46.1247745498, + 2.20712501606 + ], + "libelle_d_acheminement": "ST CHABRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20712501606, + 46.1247745498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fe951d7808b21f820a9fae36c27e315c3cb8d13", + "fields": { + "code_commune_insee": "23188", + "nom_de_la_commune": "ST DIZIER LES DOMAINES", + "code_postal": "23270", + "coordonnees_gps": [ + 46.3228482905, + 2.04735395376 + ], + "libelle_d_acheminement": "ST DIZIER LES DOMAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04735395376, + 46.3228482905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b56f809a8e6abd0cb0cbf5e39a8d417f3fd71ba", + "fields": { + "code_commune_insee": "23191", + "nom_de_la_commune": "ST ELOI", + "code_postal": "23000", + "coordonnees_gps": [ + 46.0784457753, + 1.81701009377 + ], + "libelle_d_acheminement": "ST ELOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81701009377, + 46.0784457753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19a9f38053f994fd74539c539b4f9585094079fe", + "fields": { + "ligne_5": "ST ETIENNE DE FURSAC", + "code_commune_insee": "23192", + "libelle_d_acheminement": "FURSAC", + "code_postal": "23290", + "nom_de_la_commune": "FURSAC", + "coordonnees_gps": [ + 46.1269796893, + 1.53252260223 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53252260223, + 46.1269796893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa1ac193d42b3ad58883fb4f0523c4b66d8cce4e", + "fields": { + "code_commune_insee": "23203", + "nom_de_la_commune": "ST JULIEN LA GENETE", + "code_postal": "23110", + "coordonnees_gps": [ + 46.1420634611, + 2.47460350528 + ], + "libelle_d_acheminement": "ST JULIEN LA GENETE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47460350528, + 46.1420634611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "669829b451b31e9e1e47901d0c07fa135958196c", + "fields": { + "code_commune_insee": "23206", + "nom_de_la_commune": "ST LAURENT", + "code_postal": "23000", + "coordonnees_gps": [ + 46.1609419116, + 1.96011304253 + ], + "libelle_d_acheminement": "ST LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96011304253, + 46.1609419116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4fdd7c229c3321e48d049dba2975c3726880334", + "fields": { + "code_commune_insee": "23211", + "nom_de_la_commune": "ST MARC A FRONGIER", + "code_postal": "23200", + "coordonnees_gps": [ + 45.9193165134, + 2.11056144909 + ], + "libelle_d_acheminement": "ST MARC A FRONGIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11056144909, + 45.9193165134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67bcc12b4c5ec4d4e204b3c5f1fd8d20e493462c", + "fields": { + "code_commune_insee": "23212", + "nom_de_la_commune": "ST MARC A LOUBAUD", + "code_postal": "23460", + "coordonnees_gps": [ + 45.8434161746, + 1.99092518594 + ], + "libelle_d_acheminement": "ST MARC A LOUBAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99092518594, + 45.8434161746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6298855c7f490c0ca9921f86650af1ad6351e8c", + "fields": { + "code_commune_insee": "23230", + "nom_de_la_commune": "ST PIERRE CHERIGNAT", + "code_postal": "23430", + "coordonnees_gps": [ + 45.9598091677, + 1.61399219926 + ], + "libelle_d_acheminement": "ST PIERRE CHERIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61399219926, + 45.9598091677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38e6423d6f1fbf97e175a93c9e4f39a08087f7a4", + "fields": { + "code_commune_insee": "23232", + "nom_de_la_commune": "ST PIERRE BELLEVUE", + "code_postal": "23460", + "coordonnees_gps": [ + 45.9074959957, + 1.89628129619 + ], + "libelle_d_acheminement": "ST PIERRE BELLEVUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89628129619, + 45.9074959957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bad7ac951820fe5ed0da3114aef5e8f804f6cc3", + "fields": { + "ligne_5": "LE COMPEIX", + "code_commune_insee": "23232", + "libelle_d_acheminement": "ST PIERRE BELLEVUE", + "code_postal": "23460", + "nom_de_la_commune": "ST PIERRE BELLEVUE", + "coordonnees_gps": [ + 45.9074959957, + 1.89628129619 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89628129619, + 45.9074959957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "162e426b6f1c52471347c0ac820c28eaf49e3d2d", + "fields": { + "code_commune_insee": "23236", + "nom_de_la_commune": "ST PRIEST LA PLAINE", + "code_postal": "23240", + "coordonnees_gps": [ + 46.2038557137, + 1.6315718964 + ], + "libelle_d_acheminement": "ST PRIEST LA PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6315718964, + 46.2038557137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "388f1131aff223a044673d908779cff6cc819a92", + "fields": { + "code_commune_insee": "23243", + "nom_de_la_commune": "ST SILVAIN SOUS TOULX", + "code_postal": "23140", + "coordonnees_gps": [ + 46.2595513591, + 2.18852889263 + ], + "libelle_d_acheminement": "ST SILVAIN SOUS TOULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18852889263, + 46.2595513591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53031805a06872cfb08256741a494b7e9558297c", + "fields": { + "code_commune_insee": "23244", + "nom_de_la_commune": "ST SULPICE LE DUNOIS", + "code_postal": "23800", + "coordonnees_gps": [ + 46.2979968823, + 1.72607860282 + ], + "libelle_d_acheminement": "ST SULPICE LE DUNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72607860282, + 46.2979968823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f14c976f6bbf767eace41c79c5aa0880b95e292", + "fields": { + "code_commune_insee": "23245", + "nom_de_la_commune": "ST SULPICE LE GUERETOIS", + "code_postal": "23000", + "coordonnees_gps": [ + 46.2020232419, + 1.82822095758 + ], + "libelle_d_acheminement": "ST SULPICE LE GUERETOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82822095758, + 46.2020232419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65e79607860b7f45ca1a51b4c6436365914fe4bc", + "fields": { + "code_commune_insee": "23249", + "nom_de_la_commune": "ST YRIEIX LA MONTAGNE", + "code_postal": "23460", + "coordonnees_gps": [ + 45.875697564, + 2.00324510072 + ], + "libelle_d_acheminement": "ST YRIEIX LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00324510072, + 45.875697564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ccb72a7d17746f360afe2e42889c3d85dc0b812", + "fields": { + "code_commune_insee": "23253", + "nom_de_la_commune": "THAURON", + "code_postal": "23250", + "coordonnees_gps": [ + 46.0016473985, + 1.80289051069 + ], + "libelle_d_acheminement": "THAURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80289051069, + 46.0016473985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e569ddbdb4d1a7754c7cbd2f047fd13d5f822ce8", + "fields": { + "code_commune_insee": "23257", + "nom_de_la_commune": "VALLIERE", + "code_postal": "23120", + "coordonnees_gps": [ + 45.9068796825, + 2.03866677382 + ], + "libelle_d_acheminement": "VALLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03866677382, + 45.9068796825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62ff7f91e4afe2988b2a30afc35eac767c134f74", + "fields": { + "code_commune_insee": "23263", + "nom_de_la_commune": "VILLARD", + "code_postal": "23800", + "coordonnees_gps": [ + 46.3295092994, + 1.69939460292 + ], + "libelle_d_acheminement": "VILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69939460292, + 46.3295092994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3025a9a0424831a2197db41a8eb34e18bcc6bb92", + "fields": { + "code_commune_insee": "23265", + "nom_de_la_commune": "LA VILLENEUVE", + "code_postal": "23260", + "coordonnees_gps": [ + 45.8965825577, + 2.41574071294 + ], + "libelle_d_acheminement": "LA VILLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41574071294, + 45.8965825577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c08e0865240c64d5b702d8c11bf9391bffe01a0", + "fields": { + "code_commune_insee": "23266", + "nom_de_la_commune": "LA VILLETELLE", + "code_postal": "23260", + "coordonnees_gps": [ + 45.9243228727, + 2.33832040232 + ], + "libelle_d_acheminement": "LA VILLETELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33832040232, + 45.9243228727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74a0bee7fa061b30d84d7bc27cf7d9d0024d3ea9", + "fields": { + "code_commune_insee": "24006", + "nom_de_la_commune": "ALLAS LES MINES", + "code_postal": "24220", + "coordonnees_gps": [ + 44.828046683, + 1.07371384285 + ], + "libelle_d_acheminement": "ALLAS LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07371384285, + 44.828046683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a58ba392724ab5b7d9f2fd0d617605ae20df18c", + "fields": { + "code_commune_insee": "24009", + "nom_de_la_commune": "ANLHIAC", + "code_postal": "24160", + "coordonnees_gps": [ + 45.3214606994, + 1.12082705606 + ], + "libelle_d_acheminement": "ANLHIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12082705606, + 45.3214606994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dde72b7d4c44700f239b98269144178565cb4ee", + "fields": { + "code_commune_insee": "24010", + "nom_de_la_commune": "ANNESSE ET BEAULIEU", + "code_postal": "24430", + "coordonnees_gps": [ + 45.1826946936, + 0.595337077035 + ], + "libelle_d_acheminement": "ANNESSE ET BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.595337077035, + 45.1826946936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39178d4cd38f8ef241424e54db101df9dec1eb3e", + "fields": { + "code_commune_insee": "24015", + "nom_de_la_commune": "AUDRIX", + "code_postal": "24260", + "coordonnees_gps": [ + 44.8830682379, + 0.948494393836 + ], + "libelle_d_acheminement": "AUDRIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.948494393836, + 44.8830682379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e77fe61e8597137c70ea37d946ef2f0f9a908de", + "fields": { + "ligne_5": "EYLIAC", + "code_commune_insee": "24026", + "libelle_d_acheminement": "BASSILLAC ET AUBEROCHE", + "code_postal": "24330", + "nom_de_la_commune": "BASSILLAC ET AUBEROCHE", + "coordonnees_gps": [ + 45.1789592433, + 0.820956969026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.820956969026, + 45.1789592433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de33ce261d29747fb89a058505c0635ab5cf32a9", + "fields": { + "ligne_5": "LE CHANGE", + "code_commune_insee": "24026", + "libelle_d_acheminement": "BASSILLAC ET AUBEROCHE", + "code_postal": "24640", + "nom_de_la_commune": "BASSILLAC ET AUBEROCHE", + "coordonnees_gps": [ + 45.1789592433, + 0.820956969026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.820956969026, + 45.1789592433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a90b3d2d9bac57375e981d99e440345340f61a5", + "fields": { + "code_commune_insee": "24029", + "nom_de_la_commune": "BEAUPOUYET", + "code_postal": "24400", + "coordonnees_gps": [ + 44.9961149734, + 0.285254464127 + ], + "libelle_d_acheminement": "BEAUPOUYET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.285254464127, + 44.9961149734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3f17514e467c56a3dad6fbf1bb01aabf2f908c1", + "fields": { + "code_commune_insee": "24051", + "nom_de_la_commune": "BOSSET", + "code_postal": "24130", + "coordonnees_gps": [ + 44.9518343801, + 0.362233138174 + ], + "libelle_d_acheminement": "BOSSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.362233138174, + 44.9518343801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ffd59e76b2e58441d406e1bc405cf1616f4ae14", + "fields": { + "code_commune_insee": "24054", + "nom_de_la_commune": "BOUNIAGUES", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7568266794, + 0.5279714145 + ], + "libelle_d_acheminement": "BOUNIAGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.5279714145, + 44.7568266794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "093bb13401e3e60fdfd013275bbd7dbc779da5db", + "fields": { + "code_commune_insee": "24055", + "nom_de_la_commune": "BOURDEILLES", + "code_postal": "24310", + "coordonnees_gps": [ + 45.3187110964, + 0.581100424712 + ], + "libelle_d_acheminement": "BOURDEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.581100424712, + 45.3187110964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f178dbff85bb60e320b9cacf8300d382e55bca2", + "fields": { + "code_commune_insee": "24057", + "nom_de_la_commune": "BOURG DES MAISONS", + "code_postal": "24320", + "coordonnees_gps": [ + 45.3372753112, + 0.434494589359 + ], + "libelle_d_acheminement": "BOURG DES MAISONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.434494589359, + 45.3372753112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de4ea14e1e21d650431bd1455946a61de058b8bf", + "fields": { + "code_commune_insee": "24060", + "nom_de_la_commune": "BOURNIQUEL", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8081327137, + 0.770438206217 + ], + "libelle_d_acheminement": "BOURNIQUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.770438206217, + 44.8081327137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ab2f64ea590a1ec198584c305988f0e183e4387", + "fields": { + "code_commune_insee": "24062", + "nom_de_la_commune": "BOUTEILLES ST SEBASTIEN", + "code_postal": "24320", + "coordonnees_gps": [ + 45.3484141889, + 0.289312148374 + ], + "libelle_d_acheminement": "BOUTEILLES ST SEBASTIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.289312148374, + 45.3484141889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0812c11d6855ac1671b22993fa7811ed18c7cea3", + "fields": { + "code_commune_insee": "24071", + "nom_de_la_commune": "BUSSIERE BADIL", + "code_postal": "24360", + "coordonnees_gps": [ + 45.6446204602, + 0.601830504987 + ], + "libelle_d_acheminement": "BUSSIERE BADIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.601830504987, + 45.6446204602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "264649606d6c296dddf6d6496ddd5ffabc3cb2ce", + "fields": { + "code_commune_insee": "24083", + "nom_de_la_commune": "CARSAC DE GURSON", + "code_postal": "24610", + "coordonnees_gps": [ + 44.9404735859, + 0.0946785961046 + ], + "libelle_d_acheminement": "CARSAC DE GURSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0946785961046, + 44.9404735859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c935d217dc8541f5db5f50f771860fe1d233b6fb", + "fields": { + "code_commune_insee": "24094", + "nom_de_la_commune": "CHALAGNAC", + "code_postal": "24380", + "coordonnees_gps": [ + 45.0928504071, + 0.680786253441 + ], + "libelle_d_acheminement": "CHALAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.680786253441, + 45.0928504071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db5f8aeaf9551654b686624e0cf516cd325b31d0", + "fields": { + "code_commune_insee": "24097", + "nom_de_la_commune": "CHAMPAGNE ET FONTAINE", + "code_postal": "24320", + "coordonnees_gps": [ + 45.4290860632, + 0.336264937907 + ], + "libelle_d_acheminement": "CHAMPAGNE ET FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.336264937907, + 45.4290860632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c5a8559dfb307588904b7feaada866addff0dde", + "fields": { + "code_commune_insee": "24104", + "nom_de_la_commune": "CHANTERAC", + "code_postal": "24190", + "coordonnees_gps": [ + 45.1674514266, + 0.438130563991 + ], + "libelle_d_acheminement": "CHANTERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.438130563991, + 45.1674514266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec245a6d4e7596c589ca99ae4e5b98fec84ae4e3", + "fields": { + "code_commune_insee": "24129", + "nom_de_la_commune": "CONDAT SUR TRINCOU", + "code_postal": "24530", + "coordonnees_gps": [ + 45.3674164886, + 0.715843212132 + ], + "libelle_d_acheminement": "CONDAT SUR TRINCOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.715843212132, + 45.3674164886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "442de3946bb54a35f1dc59b88e3c9b366cdd2c2a", + "fields": { + "code_commune_insee": "24134", + "nom_de_la_commune": "CORGNAC SUR L ISLE", + "code_postal": "24800", + "coordonnees_gps": [ + 45.3733273094, + 0.944659017976 + ], + "libelle_d_acheminement": "CORGNAC SUR L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.944659017976, + 45.3733273094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "109ae75240dc549f7676fd1bfb44250ed525e2cb", + "fields": { + "ligne_5": "MOUZENS", + "code_commune_insee": "24142", + "libelle_d_acheminement": "COUX ET BIGAROQUE MOUZENS", + "code_postal": "24220", + "nom_de_la_commune": "COUX ET BIGAROQUE MOUZENS", + "coordonnees_gps": [ + 44.8481194805, + 0.967817151938 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.967817151938, + 44.8481194805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b40a7271e7e8db37e82cdbb3f6c77751086b8f48", + "fields": { + "code_commune_insee": "24143", + "nom_de_la_commune": "COUZE ET ST FRONT", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8255934988, + 0.722166655982 + ], + "libelle_d_acheminement": "COUZE ET ST FRONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.722166655982, + 44.8255934988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e5ce934604236578d68a6d612e223cf4c05b3ef", + "fields": { + "code_commune_insee": "24158", + "nom_de_la_commune": "DUSSAC", + "code_postal": "24270", + "coordonnees_gps": [ + 45.3955225277, + 1.07316644218 + ], + "libelle_d_acheminement": "DUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07316644218, + 45.3955225277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2425f24bae86a9bc72a51f7f9e640d0d11bb5b5", + "fields": { + "ligne_5": "FALGUEYRAT", + "code_commune_insee": "24168", + "libelle_d_acheminement": "PLAISANCE", + "code_postal": "24560", + "nom_de_la_commune": "PLAISANCE", + "coordonnees_gps": [ + 44.6984219504, + 0.555541273455 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.555541273455, + 44.6984219504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd8ed031e302269d5c8331ef027ad5772b1aafed", + "fields": { + "ligne_5": "ST CIRQ", + "code_commune_insee": "24172", + "libelle_d_acheminement": "LES EYZIES", + "code_postal": "24260", + "nom_de_la_commune": "LES EYZIES", + "coordonnees_gps": [ + 44.9350703851, + 1.04035256381 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04035256381, + 44.9350703851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f39078353b667d0534723c402636afb0401e7012", + "fields": { + "ligne_5": "SIREUIL", + "code_commune_insee": "24172", + "libelle_d_acheminement": "LES EYZIES", + "code_postal": "24620", + "nom_de_la_commune": "LES EYZIES", + "coordonnees_gps": [ + 44.9350703851, + 1.04035256381 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04035256381, + 44.9350703851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd2a0f3d181b27a8799b8b9ee748ddcc79c0b294", + "fields": { + "code_commune_insee": "24176", + "nom_de_la_commune": "FAURILLES", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7025777604, + 0.687070174214 + ], + "libelle_d_acheminement": "FAURILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.687070174214, + 44.7025777604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a58da1ca7984687cfac135b5493eeaed9f6d9fd8", + "fields": { + "code_commune_insee": "24180", + "nom_de_la_commune": "FIRBEIX", + "code_postal": "24450", + "coordonnees_gps": [ + 45.5924010837, + 0.9420529735 + ], + "libelle_d_acheminement": "FIRBEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9420529735, + 45.5924010837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9c8a78ba2e518dcff7a23b379d8a255a662b8e4", + "fields": { + "code_commune_insee": "24183", + "nom_de_la_commune": "FLEURAC", + "code_postal": "24580", + "coordonnees_gps": [ + 44.9972453848, + 1.0048661306 + ], + "libelle_d_acheminement": "FLEURAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0048661306, + 44.9972453848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4acdd9ea8851a1ec577f4e2c8e939b1ed028f31", + "fields": { + "code_commune_insee": "24188", + "nom_de_la_commune": "FOSSEMAGNE", + "code_postal": "24210", + "coordonnees_gps": [ + 45.1187435642, + 0.988118643995 + ], + "libelle_d_acheminement": "FOSSEMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.988118643995, + 45.1187435642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db46081730a3c336772268938fac4035dd5e036b", + "fields": { + "code_commune_insee": "24194", + "nom_de_la_commune": "GARDONNE", + "code_postal": "24680", + "coordonnees_gps": [ + 44.831194856, + 0.330972182621 + ], + "libelle_d_acheminement": "GARDONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.330972182621, + 44.831194856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfd11e65acb35c1ff30c4bccf97808638d341a70", + "fields": { + "code_commune_insee": "24206", + "nom_de_la_commune": "GRIVES", + "code_postal": "24170", + "coordonnees_gps": [ + 44.762997809, + 1.07763758967 + ], + "libelle_d_acheminement": "GRIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07763758967, + 44.762997809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d4c9e0f99a0daf9e43d5b2e0dbba846f58a6f22", + "fields": { + "ligne_5": "LA JEMAYE", + "code_commune_insee": "24216", + "libelle_d_acheminement": "LA JEMAYE PONTEYRAUD", + "code_postal": "24410", + "nom_de_la_commune": "LA JEMAYE PONTEYRAUD", + "coordonnees_gps": [ + 45.1605027107, + 0.2625699124 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.2625699124, + 45.1605027107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63662a671c7fbc1f0a9dd86026d7132899c81ebd", + "fields": { + "code_commune_insee": "24222", + "nom_de_la_commune": "LA FORCE", + "code_postal": "24130", + "coordonnees_gps": [ + 44.8787624535, + 0.359531311117 + ], + "libelle_d_acheminement": "LA FORCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.359531311117, + 44.8787624535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08bcb33e7becb5532377e13759579f77ee66cdd5", + "fields": { + "code_commune_insee": "24227", + "nom_de_la_commune": "LANOUAILLE", + "code_postal": "24270", + "coordonnees_gps": [ + 45.3777105918, + 1.13200271217 + ], + "libelle_d_acheminement": "LANOUAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13200271217, + 45.3777105918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4890d78590fe9b3bf1e9507cdd1ffdc84de4e089", + "fields": { + "code_commune_insee": "24231", + "nom_de_la_commune": "LAVALADE", + "code_postal": "24540", + "coordonnees_gps": [ + 44.6942905203, + 0.860342369929 + ], + "libelle_d_acheminement": "LAVALADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.860342369929, + 44.6942905203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b63f39f9c87b1f566371c70ba09f808a58597ce", + "fields": { + "code_commune_insee": "24234", + "nom_de_la_commune": "LES LECHES", + "code_postal": "24400", + "coordonnees_gps": [ + 44.9811088243, + 0.386613584642 + ], + "libelle_d_acheminement": "LES LECHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.386613584642, + 44.9811088243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c900ffd9d2c085e37218270f571083306855e90", + "fields": { + "code_commune_insee": "24237", + "nom_de_la_commune": "LEMBRAS", + "code_postal": "24100", + "coordonnees_gps": [ + 44.8921699535, + 0.521484527262 + ], + "libelle_d_acheminement": "LEMBRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.521484527262, + 44.8921699535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3906feca376f7c9c313b9d25581dd43f6d7f3fcc", + "fields": { + "code_commune_insee": "24238", + "nom_de_la_commune": "LEMPZOURS", + "code_postal": "24800", + "coordonnees_gps": [ + 45.354947204, + 0.823741307608 + ], + "libelle_d_acheminement": "LEMPZOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.823741307608, + 45.354947204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75fd5bc0602b6f5f5fe3640b2418f9c174bdeca2", + "fields": { + "ligne_5": "MAREUIL", + "code_commune_insee": "24253", + "libelle_d_acheminement": "MAREUIL EN PERIGORD", + "code_postal": "24340", + "nom_de_la_commune": "MAREUIL EN PERIGORD", + "coordonnees_gps": [ + 45.4407517575, + 0.447904772653 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.447904772653, + 45.4407517575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fa4e2d83a4753232962949b6095627ed84f87e5", + "fields": { + "ligne_5": "MONSEC", + "code_commune_insee": "24253", + "libelle_d_acheminement": "MAREUIL EN PERIGORD", + "code_postal": "24340", + "nom_de_la_commune": "MAREUIL EN PERIGORD", + "coordonnees_gps": [ + 45.4407517575, + 0.447904772653 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.447904772653, + 45.4407517575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e338a3f8745fbe2ec472ec48ac4ad65ddaef15f", + "fields": { + "ligne_5": "ST SULPICE DE MAREUIL", + "code_commune_insee": "24253", + "libelle_d_acheminement": "MAREUIL EN PERIGORD", + "code_postal": "24340", + "nom_de_la_commune": "MAREUIL EN PERIGORD", + "coordonnees_gps": [ + 45.4407517575, + 0.447904772653 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.447904772653, + 45.4407517575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ac9e29481f1e2e5686408065bb30fb901dc0e04", + "fields": { + "code_commune_insee": "24255", + "nom_de_la_commune": "MARQUAY", + "code_postal": "24620", + "coordonnees_gps": [ + 44.9410957148, + 1.12837683704 + ], + "libelle_d_acheminement": "MARQUAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12837683704, + 44.9410957148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7510c708c9e12c46d4cde41736b85a379b1cbad", + "fields": { + "code_commune_insee": "24256", + "nom_de_la_commune": "MARSAC SUR L ISLE", + "code_postal": "24430", + "coordonnees_gps": [ + 45.1820442564, + 0.651480923403 + ], + "libelle_d_acheminement": "MARSAC SUR L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.651480923403, + 45.1820442564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "747e6896c07f285476432c5462926b9ca733b0c3", + "fields": { + "ligne_5": "ST JEAN D EYRAUD", + "code_commune_insee": "24259", + "libelle_d_acheminement": "EYRAUD CREMPSE MAURENS", + "code_postal": "24140", + "nom_de_la_commune": "EYRAUD CREMPSE MAURENS", + "coordonnees_gps": [ + 44.9268775631, + 0.482243594531 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.482243594531, + 44.9268775631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32512245058f3a64ea4e295eaead2ebe799854f2", + "fields": { + "ligne_5": "ST JULIEN DE CREMPSE", + "code_commune_insee": "24259", + "libelle_d_acheminement": "EYRAUD CREMPSE MAURENS", + "code_postal": "24140", + "nom_de_la_commune": "EYRAUD CREMPSE MAURENS", + "coordonnees_gps": [ + 44.9268775631, + 0.482243594531 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.482243594531, + 44.9268775631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96571aa56a75f149820eba75457beba39f31fd97", + "fields": { + "ligne_5": "GRAND CASTANG", + "code_commune_insee": "24260", + "libelle_d_acheminement": "MAUZAC ET GRAND CASTANG", + "code_postal": "24150", + "nom_de_la_commune": "MAUZAC ET GRAND CASTANG", + "coordonnees_gps": [ + 44.8823545617, + 0.780345381452 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.780345381452, + 44.8823545617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "004c56be848f394b11f7aff0ddd9acc3f49aa7f6", + "fields": { + "code_commune_insee": "24263", + "nom_de_la_commune": "MAZEYROLLES", + "code_postal": "24550", + "coordonnees_gps": [ + 44.6732432158, + 1.00752492118 + ], + "libelle_d_acheminement": "MAZEYROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00752492118, + 44.6732432158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "392e3b33e0b1392018ad82a761c27eaf669c04a2", + "fields": { + "code_commune_insee": "24273", + "nom_de_la_commune": "MOLIERES", + "code_postal": "24480", + "coordonnees_gps": [ + 44.8119248894, + 0.82474050426 + ], + "libelle_d_acheminement": "MOLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82474050426, + 44.8119248894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "259bc64aa6604ab4840576d9970cda0bef7ef554", + "fields": { + "code_commune_insee": "24276", + "nom_de_la_commune": "MONESTIER", + "code_postal": "24240", + "coordonnees_gps": [ + 44.7765593236, + 0.315283463531 + ], + "libelle_d_acheminement": "MONESTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.315283463531, + 44.7765593236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2f27d0bead7cf4aeb326ba84a4a9464c7212510", + "fields": { + "code_commune_insee": "24286", + "nom_de_la_commune": "MONTAGRIER", + "code_postal": "24350", + "coordonnees_gps": [ + 45.2718810746, + 0.486166925043 + ], + "libelle_d_acheminement": "MONTAGRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.486166925043, + 45.2718810746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bb58797d263558ef2915b613fd1ed1100308b43", + "fields": { + "code_commune_insee": "24287", + "nom_de_la_commune": "MONTAUT", + "code_postal": "24560", + "coordonnees_gps": [ + 44.750445073, + 0.646117472579 + ], + "libelle_d_acheminement": "MONTAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.646117472579, + 44.750445073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c59083a230b87dad6f9946f5c289633c09a69f00", + "fields": { + "code_commune_insee": "24291", + "nom_de_la_commune": "MONTIGNAC LASCAUX", + "code_postal": "24290", + "coordonnees_gps": [ + 45.0627368774, + 1.15422675286 + ], + "libelle_d_acheminement": "MONTIGNAC LASCAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15422675286, + 45.0627368774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85b1ff17a6a8001d193fc3672a23298e02bb71f6", + "fields": { + "code_commune_insee": "24294", + "nom_de_la_commune": "MONTPON MENESTEROL", + "code_postal": "24700", + "coordonnees_gps": [ + 45.0196715762, + 0.155545015448 + ], + "libelle_d_acheminement": "MONTPON MENESTEROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.155545015448, + 45.0196715762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6387da905aba05d94e9a29e4321b7bac7857210", + "fields": { + "code_commune_insee": "24302", + "nom_de_la_commune": "NAILHAC", + "code_postal": "24390", + "coordonnees_gps": [ + 45.2237342898, + 1.15487998204 + ], + "libelle_d_acheminement": "NAILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15487998204, + 45.2237342898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb6ad367e84a6fd7eca2107f0128dbcf07a79cb7", + "fields": { + "code_commune_insee": "24303", + "nom_de_la_commune": "NANTEUIL AURIAC DE BOURZAC", + "code_postal": "24320", + "coordonnees_gps": [ + 45.3801182824, + 0.287647763692 + ], + "libelle_d_acheminement": "NANTEUIL AURIAC DE BOURZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.287647763692, + 45.3801182824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f56797b09d9e31e7565853dcb48a42b1f4bc1a09", + "fields": { + "ligne_5": "AURIAC DE BOURZAC", + "code_commune_insee": "24303", + "libelle_d_acheminement": "NANTEUIL AURIAC DE BOURZAC", + "code_postal": "24320", + "nom_de_la_commune": "NANTEUIL AURIAC DE BOURZAC", + "coordonnees_gps": [ + 45.3801182824, + 0.287647763692 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.287647763692, + 45.3801182824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55fa31e4c6dbaba4ca61f415ce79905e5d16b233", + "fields": { + "code_commune_insee": "24304", + "nom_de_la_commune": "NANTHEUIL", + "code_postal": "24800", + "coordonnees_gps": [ + 45.4263272071, + 0.956262787704 + ], + "libelle_d_acheminement": "NANTHEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.956262787704, + 45.4263272071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c33f4bff4fdcad659ba02bdd21cd98abb7f7fbba", + "fields": { + "code_commune_insee": "24306", + "nom_de_la_commune": "NASTRINGUES", + "code_postal": "24230", + "coordonnees_gps": [ + 44.8721088815, + 0.15007807252 + ], + "libelle_d_acheminement": "NASTRINGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15007807252, + 44.8721088815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ae3362dab2609bf607650f3fc8cb9ec8dd47830", + "fields": { + "code_commune_insee": "24308", + "nom_de_la_commune": "NEGRONDES", + "code_postal": "24460", + "coordonnees_gps": [ + 45.3402218527, + 0.878687082758 + ], + "libelle_d_acheminement": "NEGRONDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.878687082758, + 45.3402218527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abf2948bb774d7481bf49f13ca848913fb8917a2", + "fields": { + "code_commune_insee": "24311", + "nom_de_la_commune": "NONTRON", + "code_postal": "24300", + "coordonnees_gps": [ + 45.5303295535, + 0.683993810564 + ], + "libelle_d_acheminement": "NONTRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.683993810564, + 45.5303295535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b0de02b4ecd14fb1eb294526d2fa3d9d951ff3b", + "fields": { + "ligne_5": "BREUILH", + "code_commune_insee": "24312", + "libelle_d_acheminement": "SANILHAC", + "code_postal": "24380", + "nom_de_la_commune": "SANILHAC", + "coordonnees_gps": [ + 45.1273768173, + 0.712740186269 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.712740186269, + 45.1273768173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "924b098ab754c716db696882762e2f0a830bf61c", + "fields": { + "ligne_5": "PARCOUL", + "code_commune_insee": "24316", + "libelle_d_acheminement": "PARCOUL CHENAUD", + "code_postal": "24410", + "nom_de_la_commune": "PARCOUL CHENAUD", + "coordonnees_gps": [ + 45.1915224992, + 0.0356230850507 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0356230850507, + 45.1915224992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23fe790473cced3f032830c7a8f9be8993306393", + "fields": { + "code_commune_insee": "24317", + "nom_de_la_commune": "PAULIN", + "code_postal": "24590", + "coordonnees_gps": [ + 44.9952310896, + 1.33418977695 + ], + "libelle_d_acheminement": "PAULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33418977695, + 44.9952310896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4b2cd4b422f3aa0628e148cfade8764024214a2", + "fields": { + "code_commune_insee": "24327", + "nom_de_la_commune": "PEZULS", + "code_postal": "24510", + "coordonnees_gps": [ + 44.9095112076, + 0.805057677324 + ], + "libelle_d_acheminement": "PEZULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.805057677324, + 44.9095112076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fce2624528fa97a22d04511f86a64cd9574b827a", + "fields": { + "code_commune_insee": "24329", + "nom_de_la_commune": "LE PIZOU", + "code_postal": "24700", + "coordonnees_gps": [ + 45.0367853074, + 0.0721083731877 + ], + "libelle_d_acheminement": "LE PIZOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0721083731877, + 45.0367853074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb3d120acde531ecbcacbef9403b54f05d4bdce6", + "fields": { + "code_commune_insee": "24348", + "nom_de_la_commune": "RAZAC D EYMET", + "code_postal": "24500", + "coordonnees_gps": [ + 44.6976329536, + 0.457312934463 + ], + "libelle_d_acheminement": "RAZAC D EYMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.457312934463, + 44.6976329536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f40024dfd5e4861acd5c9dfadae177ee26b793a", + "fields": { + "code_commune_insee": "24365", + "nom_de_la_commune": "ST AMAND DE VERGT", + "code_postal": "24380", + "coordonnees_gps": [ + 44.993940385, + 0.695744310753 + ], + "libelle_d_acheminement": "ST AMAND DE VERGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.695744310753, + 44.993940385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1190259774cdff56b7853f8b733b05e69a9e392", + "fields": { + "code_commune_insee": "24366", + "nom_de_la_commune": "ST ANDRE D ALLAS", + "code_postal": "24200", + "coordonnees_gps": [ + 44.8912301574, + 1.1476803246 + ], + "libelle_d_acheminement": "ST ANDRE D ALLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1476803246, + 44.8912301574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeb77627a434c434b846c25f9586ed385e705bc3", + "fields": { + "code_commune_insee": "24371", + "nom_de_la_commune": "ST AQUILIN", + "code_postal": "24110", + "coordonnees_gps": [ + 45.1911088395, + 0.488721317785 + ], + "libelle_d_acheminement": "ST AQUILIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.488721317785, + 45.1911088395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df0a2e9f9191006512119520a7426b67a7d281c2", + "fields": { + "code_commune_insee": "24373", + "nom_de_la_commune": "ST AUBIN DE CADELECH", + "code_postal": "24500", + "coordonnees_gps": [ + 44.6857557345, + 0.492017178221 + ], + "libelle_d_acheminement": "ST AUBIN DE CADELECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.492017178221, + 44.6857557345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6e6becc18a2e6280615b36c91accd6763437e19", + "fields": { + "code_commune_insee": "24384", + "nom_de_la_commune": "ST CASSIEN", + "code_postal": "24540", + "coordonnees_gps": [ + 44.6794684315, + 0.845364100419 + ], + "libelle_d_acheminement": "ST CASSIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.845364100419, + 44.6794684315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81b4c87c51f14d1543e23e2bc2dc1e6abf545310", + "fields": { + "code_commune_insee": "24386", + "nom_de_la_commune": "ST CERNIN DE L HERM", + "code_postal": "24550", + "coordonnees_gps": [ + 44.6540649921, + 1.04585610677 + ], + "libelle_d_acheminement": "ST CERNIN DE L HERM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04585610677, + 44.6540649921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8a565a77a988ab0f892725a8cf42b1752cb12f3", + "fields": { + "code_commune_insee": "24395", + "nom_de_la_commune": "ST CYBRANET", + "code_postal": "24250", + "coordonnees_gps": [ + 44.7804732346, + 1.1587393695 + ], + "libelle_d_acheminement": "ST CYBRANET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1587393695, + 44.7804732346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de89f94786f2b74b7a84da61710c3eeecd2181c3", + "fields": { + "code_commune_insee": "24396", + "nom_de_la_commune": "ST CYPRIEN", + "code_postal": "24220", + "coordonnees_gps": [ + 44.8825740011, + 1.02538984639 + ], + "libelle_d_acheminement": "ST CYPRIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02538984639, + 44.8825740011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "905ee42b65e067482d936da9909295132a48a5ac", + "fields": { + "code_commune_insee": "24418", + "nom_de_la_commune": "ST GERMAIN DU SALEMBRE", + "code_postal": "24190", + "coordonnees_gps": [ + 45.127972537, + 0.437779642589 + ], + "libelle_d_acheminement": "ST GERMAIN DU SALEMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.437779642589, + 45.127972537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3b8ad29fede1be8ea04839ed67c488030ea2002", + "fields": { + "ligne_5": "ST JULIEN D EYMET", + "code_commune_insee": "24423", + "libelle_d_acheminement": "ST JULIEN INNOCENCE EULALIE", + "code_postal": "24500", + "nom_de_la_commune": "ST JULIEN INNOCENCE EULALIE", + "coordonnees_gps": [ + 44.7249335654, + 0.394228419824 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.394228419824, + 44.7249335654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f6019fc112a8ca715783635df3f5bf979eb7167", + "fields": { + "code_commune_insee": "24428", + "nom_de_la_commune": "ST JORY DE CHALAIS", + "code_postal": "24800", + "coordonnees_gps": [ + 45.4894020576, + 0.897020061184 + ], + "libelle_d_acheminement": "ST JORY DE CHALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.897020061184, + 45.4894020576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35d879d986e9cc1db4584e4cbcb2d27e91f43ea3", + "fields": { + "code_commune_insee": "24434", + "nom_de_la_commune": "ST JUST", + "code_postal": "24320", + "coordonnees_gps": [ + 45.335415501, + 0.498491614935 + ], + "libelle_d_acheminement": "ST JUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.498491614935, + 45.335415501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d3f6953768d260dea10f339e6c54941ff365f47", + "fields": { + "code_commune_insee": "24437", + "nom_de_la_commune": "ST LAURENT DES VIGNES", + "code_postal": "24100", + "coordonnees_gps": [ + 44.823708986, + 0.445904004567 + ], + "libelle_d_acheminement": "ST LAURENT DES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.445904004567, + 44.823708986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9426d4dd415c6b2ff4c2d933482bb4990c1d12f", + "fields": { + "code_commune_insee": "24445", + "nom_de_la_commune": "ST MARCEL DU PERIGORD", + "code_postal": "24510", + "coordonnees_gps": [ + 44.916346803, + 0.703469495464 + ], + "libelle_d_acheminement": "ST MARCEL DU PERIGORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.703469495464, + 44.916346803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "191eeb07dc1a0fc6f7f86816627b818ee8a4335f", + "fields": { + "code_commune_insee": "24451", + "nom_de_la_commune": "ST MARTIAL DE VALETTE", + "code_postal": "24300", + "coordonnees_gps": [ + 45.5124949186, + 0.633563294913 + ], + "libelle_d_acheminement": "ST MARTIAL DE VALETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.633563294913, + 45.5124949186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9caad750102fc30e21ef2dfc5dcc21728938871", + "fields": { + "code_commune_insee": "24452", + "nom_de_la_commune": "ST MARTIAL VIVEYROL", + "code_postal": "24320", + "coordonnees_gps": [ + 45.3606582227, + 0.336407219846 + ], + "libelle_d_acheminement": "ST MARTIAL VIVEYROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.336407219846, + 45.3606582227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1160229fe4c50e56a19cdb503a6f2a3e037fccd3", + "fields": { + "code_commune_insee": "24457", + "nom_de_la_commune": "ST MARTIN L ASTIER", + "code_postal": "24400", + "coordonnees_gps": [ + 45.0589553311, + 0.323281642748 + ], + "libelle_d_acheminement": "ST MARTIN L ASTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.323281642748, + 45.0589553311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "378d0f9cdca5d2675a4722cae58af1afd149523a", + "fields": { + "code_commune_insee": "24465", + "nom_de_la_commune": "ST MICHEL DE DOUBLE", + "code_postal": "24400", + "coordonnees_gps": [ + 45.0913598278, + 0.274915293207 + ], + "libelle_d_acheminement": "ST MICHEL DE DOUBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.274915293207, + 45.0913598278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f10d32c601b4b608470e4b81e96ae747ace75120", + "fields": { + "code_commune_insee": "24470", + "nom_de_la_commune": "STE MONDANE", + "code_postal": "24370", + "coordonnees_gps": [ + 44.8354016232, + 1.34672272166 + ], + "libelle_d_acheminement": "STE MONDANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34672272166, + 44.8354016232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29a1004128e016634af2ced3d0fb3c55577c350c", + "fields": { + "code_commune_insee": "24472", + "nom_de_la_commune": "ST NEXANS", + "code_postal": "24520", + "coordonnees_gps": [ + 44.8061899952, + 0.550308411387 + ], + "libelle_d_acheminement": "ST NEXANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.550308411387, + 44.8061899952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fc2c77b02161929f96ae875feba191b42828c29", + "fields": { + "code_commune_insee": "24480", + "nom_de_la_commune": "ST PAUL DE SERRE", + "code_postal": "24380", + "coordonnees_gps": [ + 45.0809931657, + 0.633952317617 + ], + "libelle_d_acheminement": "ST PAUL DE SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.633952317617, + 45.0809931657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3da04e26af72f29cfe8bfb923ed21f599f8c00d", + "fields": { + "code_commune_insee": "24483", + "nom_de_la_commune": "ST PERDOUX", + "code_postal": "24560", + "coordonnees_gps": [ + 44.736661676, + 0.529957013225 + ], + "libelle_d_acheminement": "ST PERDOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.529957013225, + 44.736661676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c0c803387d0be3bb9833848d1d46c457c6bdfd7", + "fields": { + "code_commune_insee": "24487", + "nom_de_la_commune": "ST PIERRE D EYRAUD", + "code_postal": "24130", + "coordonnees_gps": [ + 44.8735238216, + 0.322188451159 + ], + "libelle_d_acheminement": "ST PIERRE D EYRAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.322188451159, + 44.8735238216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49ae8f07cc6031672faafed0cc3ef403dd71f139", + "fields": { + "code_commune_insee": "24492", + "nom_de_la_commune": "STE RADEGONDE", + "code_postal": "24560", + "coordonnees_gps": [ + 44.6845072022, + 0.677670644919 + ], + "libelle_d_acheminement": "STE RADEGONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.677670644919, + 44.6845072022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8130aa176772dfcc372171869b832115cc09e7a6", + "fields": { + "code_commune_insee": "24494", + "nom_de_la_commune": "ST REMY", + "code_postal": "24700", + "coordonnees_gps": [ + 44.9555652213, + 0.179456869496 + ], + "libelle_d_acheminement": "ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.179456869496, + 44.9555652213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "282fbe91939e7474bb742ad80e3a5744c34b2ec5", + "fields": { + "code_commune_insee": "24501", + "nom_de_la_commune": "ST SEURIN DE PRATS", + "code_postal": "24230", + "coordonnees_gps": [ + 44.8322841, + 0.0683826988285 + ], + "libelle_d_acheminement": "ST SEURIN DE PRATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0683826988285, + 44.8322841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09112c7f424ba7676a9f187fe4a984c44df5eea4", + "fields": { + "code_commune_insee": "24511", + "nom_de_la_commune": "ST VINCENT JALMOUTIERS", + "code_postal": "24410", + "coordonnees_gps": [ + 45.1841041729, + 0.193684078767 + ], + "libelle_d_acheminement": "ST VINCENT JALMOUTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.193684078767, + 45.1841041729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "680ddde69cb87e868006b6d7e0ca1b4e22621a55", + "fields": { + "code_commune_insee": "24513", + "nom_de_la_commune": "ST VINCENT SUR L ISLE", + "code_postal": "24420", + "coordonnees_gps": [ + 45.2416009556, + 0.899777757535 + ], + "libelle_d_acheminement": "ST VINCENT SUR L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.899777757535, + 45.2416009556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f307da70e5b4c88f16578fd3c25255c426ff4361", + "fields": { + "code_commune_insee": "24514", + "nom_de_la_commune": "ST VIVIEN", + "code_postal": "24230", + "coordonnees_gps": [ + 44.8935898149, + 0.103204434117 + ], + "libelle_d_acheminement": "ST VIVIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.103204434117, + 44.8935898149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e77c71f6f7c16e770ba6a5db7e2492e6a0aa3f35", + "fields": { + "code_commune_insee": "24516", + "nom_de_la_commune": "SALIGNAC EYVIGUES", + "code_postal": "24590", + "coordonnees_gps": [ + 44.9451208201, + 1.35948434383 + ], + "libelle_d_acheminement": "SALIGNAC EYVIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35948434383, + 44.9451208201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3eb5cf40856f370a5b63f93e72c9dd35275f234d", + "fields": { + "code_commune_insee": "24518", + "nom_de_la_commune": "SALON", + "code_postal": "24380", + "coordonnees_gps": [ + 45.0281445298, + 0.774813216159 + ], + "libelle_d_acheminement": "SALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.774813216159, + 45.0281445298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c565b7c9786b0330f55dc98d425894d9697e560", + "fields": { + "code_commune_insee": "24523", + "nom_de_la_commune": "SAUSSIGNAC", + "code_postal": "24240", + "coordonnees_gps": [ + 44.8026310555, + 0.320357088763 + ], + "libelle_d_acheminement": "SAUSSIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.320357088763, + 44.8026310555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d5015921a4af9d22ccb9b0d66f9596e29623bb8", + "fields": { + "code_commune_insee": "24526", + "nom_de_la_commune": "SAVIGNAC LEDRIER", + "code_postal": "24270", + "coordonnees_gps": [ + 45.3819993943, + 1.19868234314 + ], + "libelle_d_acheminement": "SAVIGNAC LEDRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19868234314, + 45.3819993943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b62dc45120a23874366d2b35518055c85447169", + "fields": { + "code_commune_insee": "24528", + "nom_de_la_commune": "SCEAU ST ANGEL", + "code_postal": "24300", + "coordonnees_gps": [ + 45.4836989525, + 0.673994579504 + ], + "libelle_d_acheminement": "SCEAU ST ANGEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.673994579504, + 45.4836989525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "720b1bd5e632404c2e7ec04a7c98f2ed65046d64", + "fields": { + "code_commune_insee": "24531", + "nom_de_la_commune": "SERGEAC", + "code_postal": "24290", + "coordonnees_gps": [ + 44.9987285651, + 1.11549602522 + ], + "libelle_d_acheminement": "SERGEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11549602522, + 44.9987285651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37f305695ad28f08348affc2563b91455b69c8e1", + "fields": { + "ligne_5": "SORGES", + "code_commune_insee": "24540", + "libelle_d_acheminement": "SORGES ET LIGUEUX EN PERIGORD", + "code_postal": "24420", + "nom_de_la_commune": "SORGES ET LIGUEUX EN PERIGORD", + "coordonnees_gps": [ + 45.2917072354, + 0.84997318452 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84997318452, + 45.2917072354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3990c6e3e23576b3ee7b3edc2b8e8a85ffc10959", + "fields": { + "ligne_5": "LIGUEUX", + "code_commune_insee": "24540", + "libelle_d_acheminement": "SORGES ET LIGUEUX EN PERIGORD", + "code_postal": "24460", + "nom_de_la_commune": "SORGES ET LIGUEUX EN PERIGORD", + "coordonnees_gps": [ + 45.2917072354, + 0.84997318452 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84997318452, + 45.2917072354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbe1a8c8dfc3c7fefd872eb383fca0d596d3e091", + "fields": { + "code_commune_insee": "24542", + "nom_de_la_commune": "SOULAURES", + "code_postal": "24540", + "coordonnees_gps": [ + 44.6413390052, + 0.914860213402 + ], + "libelle_d_acheminement": "SOULAURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.914860213402, + 44.6413390052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "387ad85e9d5cbadf97c283d996c21f5f533f269a", + "fields": { + "code_commune_insee": "24551", + "nom_de_la_commune": "THIVIERS", + "code_postal": "24800", + "coordonnees_gps": [ + 45.4286304056, + 0.912184321254 + ], + "libelle_d_acheminement": "THIVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.912184321254, + 45.4286304056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "910a8d562ec9ca3a00f7e3452a37fabb2d3445cf", + "fields": { + "ligne_5": "LA TOUR BLANCHE", + "code_commune_insee": "24554", + "libelle_d_acheminement": "LA TOUR BLANCHE CERCLES", + "code_postal": "24320", + "nom_de_la_commune": "LA TOUR BLANCHE CERCLES", + "coordonnees_gps": [ + 45.3671927431, + 0.426955885949 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.426955885949, + 45.3671927431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95315124cd0b2035643dd3ed96f2526c0fc98072", + "fields": { + "code_commune_insee": "24555", + "nom_de_la_commune": "TOURTOIRAC", + "code_postal": "24390", + "coordonnees_gps": [ + 45.2725889625, + 1.05559610435 + ], + "libelle_d_acheminement": "TOURTOIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05559610435, + 45.2725889625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93ea517a08add9349cb360c8c828c20b30073b5b", + "fields": { + "code_commune_insee": "24566", + "nom_de_la_commune": "VARENNES", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8341720876, + 0.668144001791 + ], + "libelle_d_acheminement": "VARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.668144001791, + 44.8341720876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d4afdb2167765195b3c2162bb236963ce1b7eb9", + "fields": { + "code_commune_insee": "24572", + "nom_de_la_commune": "VERGT DE BIRON", + "code_postal": "24540", + "coordonnees_gps": [ + 44.6363482611, + 0.84946470497 + ], + "libelle_d_acheminement": "VERGT DE BIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84946470497, + 44.6363482611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "722a595b1b8e1d62cdda5264f055f845c889ef04", + "fields": { + "code_commune_insee": "24573", + "nom_de_la_commune": "VERTEILLAC", + "code_postal": "24320", + "coordonnees_gps": [ + 45.3499977855, + 0.376056089953 + ], + "libelle_d_acheminement": "VERTEILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.376056089953, + 45.3499977855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcf82d47881db464088d64ba9548ffa238c0e93e", + "fields": { + "code_commune_insee": "24574", + "nom_de_la_commune": "VEYRIGNAC", + "code_postal": "24370", + "coordonnees_gps": [ + 44.8228660534, + 1.32545209892 + ], + "libelle_d_acheminement": "VEYRIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32545209892, + 44.8228660534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "639ad3c4f89a13baf68e1a80484d60a3fcc52869", + "fields": { + "code_commune_insee": "24577", + "nom_de_la_commune": "VEZAC", + "code_postal": "24220", + "coordonnees_gps": [ + 44.8405623629, + 1.17297806576 + ], + "libelle_d_acheminement": "VEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17297806576, + 44.8405623629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9be6a47af8194e771f59a8809777099b7e0335a2", + "fields": { + "code_commune_insee": "24587", + "nom_de_la_commune": "VITRAC", + "code_postal": "24200", + "coordonnees_gps": [ + 44.8394527349, + 1.22440725926 + ], + "libelle_d_acheminement": "VITRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22440725926, + 44.8394527349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1e353b2d2287e13eeff05311de3bb0c2787b275", + "fields": { + "code_commune_insee": "25005", + "nom_de_la_commune": "ACCOLANS", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4906236179, + 6.53413561581 + ], + "libelle_d_acheminement": "ACCOLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53413561581, + 47.4906236179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ad007377757b7eba898d86975cc14140bb49b6d", + "fields": { + "code_commune_insee": "25006", + "nom_de_la_commune": "ADAM LES PASSAVANT", + "code_postal": "25360", + "coordonnees_gps": [ + 47.3045713356, + 6.36894975342 + ], + "libelle_d_acheminement": "ADAM LES PASSAVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36894975342, + 47.3045713356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45c07aed3a6d0dfdd5f22c2fe67d7ed810e34469", + "fields": { + "code_commune_insee": "25020", + "nom_de_la_commune": "ARBOUANS", + "code_postal": "25400", + "coordonnees_gps": [ + 47.4885179108, + 6.80807595575 + ], + "libelle_d_acheminement": "ARBOUANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80807595575, + 47.4885179108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d481412ec89fe18d1edb19d159186a8f806dae5", + "fields": { + "code_commune_insee": "25024", + "nom_de_la_commune": "ARCON", + "code_postal": "25300", + "coordonnees_gps": [ + 46.9658473885, + 6.37870197364 + ], + "libelle_d_acheminement": "ARCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37870197364, + 46.9658473885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c00a95c463de2f683b38763a1a9c59cb870825b1", + "fields": { + "code_commune_insee": "25025", + "nom_de_la_commune": "ARC SOUS CICON", + "code_postal": "25520", + "coordonnees_gps": [ + 47.052125982, + 6.3997146018 + ], + "libelle_d_acheminement": "ARC SOUS CICON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3997146018, + 47.052125982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8abe3e896b1b0852fcc33e54c5d425747d58cf93", + "fields": { + "code_commune_insee": "25026", + "nom_de_la_commune": "ARC SOUS MONTENOT", + "code_postal": "25270", + "coordonnees_gps": [ + 46.9151827645, + 6.00599288547 + ], + "libelle_d_acheminement": "ARC SOUS MONTENOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00599288547, + 46.9151827645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e9fefbbc38b7d6d35ec4de28852417784dd9fc0", + "fields": { + "code_commune_insee": "25031", + "nom_de_la_commune": "AUDINCOURT", + "code_postal": "25400", + "coordonnees_gps": [ + 47.4811676376, + 6.85493983157 + ], + "libelle_d_acheminement": "AUDINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85493983157, + 47.4811676376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8333a76ab4b58e400fec1fd7ec0cf0cadbbb747", + "fields": { + "code_commune_insee": "25035", + "nom_de_la_commune": "LES AUXONS", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3044311346, + 5.9681629274 + ], + "libelle_d_acheminement": "LES AUXONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9681629274, + 47.3044311346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c5859305534d38f64aaf958dbdee37a7f8c7ff2", + "fields": { + "ligne_5": "AVENEY", + "code_commune_insee": "25036", + "libelle_d_acheminement": "AVANNE AVENEY", + "code_postal": "25720", + "nom_de_la_commune": "AVANNE AVENEY", + "coordonnees_gps": [ + 47.2013939319, + 5.9554996988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9554996988, + 47.2013939319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08d4a94862ca2a1a7428138cae04d111acd24412", + "fields": { + "ligne_5": "DROITFONTAINE", + "code_commune_insee": "25051", + "libelle_d_acheminement": "BELLEHERBE", + "code_postal": "25380", + "nom_de_la_commune": "BELLEHERBE", + "coordonnees_gps": [ + 47.2636257295, + 6.65161515081 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65161515081, + 47.2636257295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab65b682e02fa05dc19d695f0e0829c437d82932", + "fields": { + "code_commune_insee": "25061", + "nom_de_la_commune": "BIEF", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3224089924, + 6.77498580034 + ], + "libelle_d_acheminement": "BIEF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77498580034, + 47.3224089924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f36d27293d7bb55f56b86b1a067741d0facedfda", + "fields": { + "code_commune_insee": "25067", + "nom_de_la_commune": "BLUSSANS", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4134789985, + 6.61025158511 + ], + "libelle_d_acheminement": "BLUSSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61025158511, + 47.4134789985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1afbdc4fb1d329260755d48c33925db409e3e261", + "fields": { + "code_commune_insee": "25070", + "nom_de_la_commune": "BOLANDOZ", + "code_postal": "25330", + "coordonnees_gps": [ + 47.0062281273, + 6.11491332446 + ], + "libelle_d_acheminement": "BOLANDOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11491332446, + 47.0062281273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba16ca57f7914c475d4e9cc196db330271d6d959", + "fields": { + "code_commune_insee": "25071", + "nom_de_la_commune": "BONDEVAL", + "code_postal": "25230", + "coordonnees_gps": [ + 47.4336532746, + 6.8448325548 + ], + "libelle_d_acheminement": "BONDEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8448325548, + 47.4336532746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b36e67f0cacdc8114e8440def3afab7f105d79a4", + "fields": { + "code_commune_insee": "25077", + "nom_de_la_commune": "LA BOSSE", + "code_postal": "25210", + "coordonnees_gps": [ + 47.1440495943, + 6.64869054384 + ], + "libelle_d_acheminement": "LA BOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64869054384, + 47.1440495943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0f4652492c9639cb0af27c1029dcf1635b4b77c", + "fields": { + "code_commune_insee": "25078", + "nom_de_la_commune": "BOUCLANS", + "code_postal": "25360", + "coordonnees_gps": [ + 47.2413584714, + 6.23301360703 + ], + "libelle_d_acheminement": "BOUCLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23301360703, + 47.2413584714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e089b96014cd32a945005756031d52321ca8f636", + "fields": { + "code_commune_insee": "25079", + "nom_de_la_commune": "BOUJAILLES", + "code_postal": "25560", + "coordonnees_gps": [ + 46.8844605742, + 6.07920196701 + ], + "libelle_d_acheminement": "BOUJAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07920196701, + 46.8844605742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8185cde2122fc51d5cc1870189f4b3c21c8c148f", + "fields": { + "code_commune_insee": "25085", + "nom_de_la_commune": "BOUVERANS", + "code_postal": "25560", + "coordonnees_gps": [ + 46.8406087592, + 6.2111033425 + ], + "libelle_d_acheminement": "BOUVERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2111033425, + 46.8406087592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c81534c70b6b613d75f7ac081d0b32b763e654a", + "fields": { + "code_commune_insee": "25093", + "nom_de_la_commune": "BRETIGNEY", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4867078503, + 6.63497624853 + ], + "libelle_d_acheminement": "BRETIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63497624853, + 47.4867078503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11749d06cf07f5734213757193b155aa1d9d8cd1", + "fields": { + "code_commune_insee": "25097", + "nom_de_la_commune": "BROGNARD", + "code_postal": "25600", + "coordonnees_gps": [ + 47.5276797579, + 6.86515531674 + ], + "libelle_d_acheminement": "BROGNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86515531674, + 47.5276797579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f12e8e7573320a8e5af2895521973e44ee8a243", + "fields": { + "code_commune_insee": "25098", + "nom_de_la_commune": "BUFFARD", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0326137172, + 5.8283117131 + ], + "libelle_d_acheminement": "BUFFARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8283117131, + 47.0326137172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57a73e928265b0b50c4148563fd106630cc14b71", + "fields": { + "code_commune_insee": "25099", + "nom_de_la_commune": "BUGNY", + "code_postal": "25520", + "coordonnees_gps": [ + 46.9977736511, + 6.35684298467 + ], + "libelle_d_acheminement": "BUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35684298467, + 46.9977736511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40abdc6dd7cc63985814db16e56de78e12a5e4a5", + "fields": { + "code_commune_insee": "25103", + "nom_de_la_commune": "BUSY", + "code_postal": "25320", + "coordonnees_gps": [ + 47.1679810214, + 5.95431754442 + ], + "libelle_d_acheminement": "BUSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95431754442, + 47.1679810214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea7b403aa9fe8f6d2a2d6366530cfc9a70624590", + "fields": { + "code_commune_insee": "25109", + "nom_de_la_commune": "CESSEY", + "code_postal": "25440", + "coordonnees_gps": [ + 47.1132588738, + 5.92330961673 + ], + "libelle_d_acheminement": "CESSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92330961673, + 47.1132588738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96e96623a1107035f4072a6ed158e73ec5291553", + "fields": { + "code_commune_insee": "25114", + "nom_de_la_commune": "CHAMESOL", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3463369115, + 6.84435970249 + ], + "libelle_d_acheminement": "CHAMESOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84435970249, + 47.3463369115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5382f436f6c09bdce9b6e7c504758e23a7c99c91", + "fields": { + "code_commune_insee": "25116", + "nom_de_la_commune": "CHAMPLIVE", + "code_postal": "25360", + "coordonnees_gps": [ + 47.2883174221, + 6.24419443876 + ], + "libelle_d_acheminement": "CHAMPLIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24419443876, + 47.2883174221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54d1d1bde6b034ca4bb54ddc2d8d0b2ff29f2b80", + "fields": { + "code_commune_insee": "25117", + "nom_de_la_commune": "CHAMPOUX", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3407046094, + 6.1358095916 + ], + "libelle_d_acheminement": "CHAMPOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1358095916, + 47.3407046094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6eeb39dfdaa1bdd04fe369ade52baf16c3f8ea9d", + "fields": { + "code_commune_insee": "25120", + "nom_de_la_commune": "CHANTRANS", + "code_postal": "25330", + "coordonnees_gps": [ + 47.0477460774, + 6.16353019875 + ], + "libelle_d_acheminement": "CHANTRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16353019875, + 47.0477460774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3196ce3577f2a3b18e23dd1f491fb85afc7c88c", + "fields": { + "code_commune_insee": "25124", + "nom_de_la_commune": "CHARMAUVILLERS", + "code_postal": "25470", + "coordonnees_gps": [ + 47.2312832249, + 6.91715529579 + ], + "libelle_d_acheminement": "CHARMAUVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91715529579, + 47.2312832249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "508d039a652bca27d6c0971e7d61e535678e11ac", + "fields": { + "code_commune_insee": "25129", + "nom_de_la_commune": "CHASSAGNE ST DENIS", + "code_postal": "25290", + "coordonnees_gps": [ + 47.0837133795, + 6.11093691858 + ], + "libelle_d_acheminement": "CHASSAGNE ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11093691858, + 47.0837133795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07dbea4cf82a68d03228dae244ba852a15267940", + "fields": { + "code_commune_insee": "25148", + "nom_de_la_commune": "LA CHENALOTTE", + "code_postal": "25500", + "coordonnees_gps": [ + 47.1081527318, + 6.68735425042 + ], + "libelle_d_acheminement": "LA CHENALOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68735425042, + 47.1081527318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a393d91cac97f73737e21a0a418b58c373e358e3", + "fields": { + "ligne_5": "SANTOCHE", + "code_commune_insee": "25156", + "libelle_d_acheminement": "PAYS DE CLERVAL", + "code_postal": "25340", + "nom_de_la_commune": "PAYS DE CLERVAL", + "coordonnees_gps": [ + 47.3991705551, + 6.50259246766 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50259246766, + 47.3991705551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eef463b5c9a3d2121b7755d9233e94198af5ba0a", + "fields": { + "code_commune_insee": "25162", + "nom_de_la_commune": "CORCELLES FERRIERES", + "code_postal": "25410", + "coordonnees_gps": [ + 47.2266648284, + 5.80424536213 + ], + "libelle_d_acheminement": "CORCELLES FERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80424536213, + 47.2266648284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2318f4c9cb7470e673343f80741f2168324ac51f", + "fields": { + "code_commune_insee": "25178", + "nom_de_la_commune": "CROSEY LE PETIT", + "code_postal": "25340", + "coordonnees_gps": [ + 47.3425794838, + 6.48466014508 + ], + "libelle_d_acheminement": "CROSEY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48466014508, + 47.3425794838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be2e6566945811e0e0ba6852bbbc7f446f7da381", + "fields": { + "code_commune_insee": "25181", + "nom_de_la_commune": "CUBRIAL", + "code_postal": "25680", + "coordonnees_gps": [ + 47.5040745898, + 6.40318225414 + ], + "libelle_d_acheminement": "CUBRIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40318225414, + 47.5040745898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ab56283e2b9b491049fa52fe340f333904b44a9", + "fields": { + "code_commune_insee": "25184", + "nom_de_la_commune": "CUSE ET ADRISANS", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4833066926, + 6.38838690365 + ], + "libelle_d_acheminement": "CUSE ET ADRISANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38838690365, + 47.4833066926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53398b956e2e628d428c7d1799f7f37ab2ab7216", + "fields": { + "code_commune_insee": "25188", + "nom_de_la_commune": "DAMBENOIS", + "code_postal": "25600", + "coordonnees_gps": [ + 47.5444605529, + 6.87199682255 + ], + "libelle_d_acheminement": "DAMBENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87199682255, + 47.5444605529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d822c337f8df3e7eecceb980acdab84407e3d03", + "fields": { + "code_commune_insee": "25191", + "nom_de_la_commune": "DAMPIERRE SUR LE DOUBS", + "code_postal": "25420", + "coordonnees_gps": [ + 47.4671316033, + 6.73247135542 + ], + "libelle_d_acheminement": "DAMPIERRE SUR LE DOUBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73247135542, + 47.4671316033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa49dd8e40cc87a409a3feba75f93594b018a436", + "fields": { + "code_commune_insee": "25193", + "nom_de_la_commune": "DAMPRICHARD", + "code_postal": "25450", + "coordonnees_gps": [ + 47.2378466799, + 6.8737017298 + ], + "libelle_d_acheminement": "DAMPRICHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8737017298, + 47.2378466799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22d9e86bf3182c748fe0bccbc1f27333cfc374d1", + "fields": { + "code_commune_insee": "25196", + "nom_de_la_commune": "DASLE", + "code_postal": "25230", + "coordonnees_gps": [ + 47.4824687942, + 6.89668230526 + ], + "libelle_d_acheminement": "DASLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89668230526, + 47.4824687942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e838c9eab0be0e064d193dbdfd2d0f1d5954c3fc", + "fields": { + "code_commune_insee": "25197", + "nom_de_la_commune": "DELUZ", + "code_postal": "25960", + "coordonnees_gps": [ + 47.2971963372, + 6.19334216229 + ], + "libelle_d_acheminement": "DELUZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19334216229, + 47.2971963372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27263ac9298177c4acd8dad5b3424a923b7ac589", + "fields": { + "code_commune_insee": "25213", + "nom_de_la_commune": "LES ECORCES", + "code_postal": "25140", + "coordonnees_gps": [ + 47.2036110847, + 6.79732970212 + ], + "libelle_d_acheminement": "LES ECORCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79732970212, + 47.2036110847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cbff3f16e2977e33d33ce5894243137d37b6b26", + "fields": { + "code_commune_insee": "25215", + "nom_de_la_commune": "L ECOUVOTTE", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3436819821, + 6.25275354958 + ], + "libelle_d_acheminement": "L ECOUVOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25275354958, + 47.3436819821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9855585225ba57bfb8f9addb3b49594d9960515", + "fields": { + "code_commune_insee": "25217", + "nom_de_la_commune": "EMAGNY", + "code_postal": "25170", + "coordonnees_gps": [ + 47.3039067497, + 5.86864846171 + ], + "libelle_d_acheminement": "EMAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86864846171, + 47.3039067497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "005b54b57f3872812713379cd22d3546d2d529ac", + "fields": { + "code_commune_insee": "25218", + "nom_de_la_commune": "EPENOUSE", + "code_postal": "25530", + "coordonnees_gps": [ + 47.2134260446, + 6.39751646264 + ], + "libelle_d_acheminement": "EPENOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39751646264, + 47.2134260446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0f766f8ec9103051faee6e922193f234e07ebf4", + "fields": { + "ligne_5": "VERRIERES DU GROSBOIS", + "code_commune_insee": "25222", + "libelle_d_acheminement": "ETALANS", + "code_postal": "25580", + "nom_de_la_commune": "ETALANS", + "coordonnees_gps": [ + 47.1617288935, + 6.26148839275 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26148839275, + 47.1617288935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d16c3228aca1e733adb903c3e7859b6c46911a31", + "fields": { + "ligne_5": "ALAISE", + "code_commune_insee": "25223", + "libelle_d_acheminement": "ETERNOZ", + "code_postal": "25330", + "nom_de_la_commune": "ETERNOZ", + "coordonnees_gps": [ + 47.0155751982, + 6.00196889347 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00196889347, + 47.0155751982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f984b3274c89bc2fb7db7cbdde637deb835d88f", + "fields": { + "code_commune_insee": "25225", + "nom_de_la_commune": "ETRABONNE", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2323641161, + 5.73738220709 + ], + "libelle_d_acheminement": "ETRABONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73738220709, + 47.2323641161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "369ff81be7be1dc59d6c428ebd20fd551c3fa61b", + "fields": { + "code_commune_insee": "25229", + "nom_de_la_commune": "EVILLERS", + "code_postal": "25520", + "coordonnees_gps": [ + 46.9954680913, + 6.2217853268 + ], + "libelle_d_acheminement": "EVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2217853268, + 46.9954680913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ee2a11618beeeba0dbf5e45b21a6ace04c4cfc3", + "fields": { + "code_commune_insee": "25234", + "nom_de_la_commune": "FERRIERES LE LAC", + "code_postal": "25470", + "coordonnees_gps": [ + 47.2682073244, + 6.89003480192 + ], + "libelle_d_acheminement": "FERRIERES LE LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89003480192, + 47.2682073244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f96eb67d7a5f7da1762bb32e254e74ce78420bb", + "fields": { + "code_commune_insee": "25236", + "nom_de_la_commune": "FERTANS", + "code_postal": "25330", + "coordonnees_gps": [ + 47.0554375235, + 6.06471764594 + ], + "libelle_d_acheminement": "FERTANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06471764594, + 47.0554375235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c2089f5d15822a6ec648e3d39fcdaab21d94f19", + "fields": { + "code_commune_insee": "25237", + "nom_de_la_commune": "FESCHES LE CHATEL", + "code_postal": "25490", + "coordonnees_gps": [ + 47.5196727271, + 6.90103094864 + ], + "libelle_d_acheminement": "FESCHES LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90103094864, + 47.5196727271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c936362765b6513f937e7512ba63bc44725d3c1", + "fields": { + "code_commune_insee": "25245", + "nom_de_la_commune": "FONTAIN", + "code_postal": "25660", + "coordonnees_gps": [ + 47.1923642064, + 6.03885344956 + ], + "libelle_d_acheminement": "FONTAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03885344956, + 47.1923642064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dfbf9493a02f33c6b083ae13dc3cb012a3cb040", + "fields": { + "code_commune_insee": "25251", + "nom_de_la_commune": "FOURBANNE", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3358691374, + 6.30644627353 + ], + "libelle_d_acheminement": "FOURBANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30644627353, + 47.3358691374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "436f5c74910b4615600a3b6abb84bead48c411fa", + "fields": { + "code_commune_insee": "25253", + "nom_de_la_commune": "FOURG", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0951444247, + 5.80295783516 + ], + "libelle_d_acheminement": "FOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80295783516, + 47.0951444247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7e1c309daae011be2f383f6a610508ab906871f", + "fields": { + "code_commune_insee": "25254", + "nom_de_la_commune": "LES FOURGS", + "code_postal": "25300", + "coordonnees_gps": [ + 46.8402465243, + 6.41622226679 + ], + "libelle_d_acheminement": "LES FOURGS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41622226679, + 46.8402465243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75c4f18905816a2969b7d038698a659b20b54b3f", + "fields": { + "code_commune_insee": "25256", + "nom_de_la_commune": "FRAMBOUHANS", + "code_postal": "25140", + "coordonnees_gps": [ + 47.2003135641, + 6.77668113804 + ], + "libelle_d_acheminement": "FRAMBOUHANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77668113804, + 47.2003135641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d558f032eae1453adae2ba1be1b2d0c1799db822", + "fields": { + "code_commune_insee": "25263", + "nom_de_la_commune": "GELLIN", + "code_postal": "25240", + "coordonnees_gps": [ + 46.7269667022, + 6.23705241764 + ], + "libelle_d_acheminement": "GELLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23705241764, + 46.7269667022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fabf2df181d64693eee990433d7897c9f7b13b4f", + "fields": { + "code_commune_insee": "25267", + "nom_de_la_commune": "GENNES", + "code_postal": "25660", + "coordonnees_gps": [ + 47.247507773, + 6.13112207726 + ], + "libelle_d_acheminement": "GENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13112207726, + 47.247507773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02abd3b9b91aeccc90786c283579f381b2c5e6c8", + "fields": { + "code_commune_insee": "25269", + "nom_de_la_commune": "GERMONDANS", + "code_postal": "25640", + "coordonnees_gps": [ + 47.4138937472, + 6.20033950857 + ], + "libelle_d_acheminement": "GERMONDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20033950857, + 47.4138937472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10ddd4347f981ffbbff3bd5422292b2a77d88fc4", + "fields": { + "ligne_5": "MONTURSIN", + "code_commune_insee": "25275", + "libelle_d_acheminement": "GLERE", + "code_postal": "25190", + "nom_de_la_commune": "GLERE", + "coordonnees_gps": [ + 47.348314704, + 6.98432644991 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98432644991, + 47.348314704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e3825eadc0d7c27fd0fa2427e5c75181b9007ac", + "fields": { + "ligne_5": "VERNOIS LE FOL", + "code_commune_insee": "25275", + "libelle_d_acheminement": "GLERE", + "code_postal": "25190", + "nom_de_la_commune": "GLERE", + "coordonnees_gps": [ + 47.348314704, + 6.98432644991 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98432644991, + 47.348314704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d447328dc1119931da9e7808ca79a22526d426da", + "fields": { + "code_commune_insee": "25286", + "nom_de_la_commune": "GRAND COMBE DES BOIS", + "code_postal": "25210", + "coordonnees_gps": [ + 47.1358743178, + 6.77974865056 + ], + "libelle_d_acheminement": "GRAND COMBE DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77974865056, + 47.1358743178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6066e0e8a851e694d2c3c008e22ca8c3b3ec6435", + "fields": { + "code_commune_insee": "25287", + "nom_de_la_commune": "GRANDFONTAINE", + "code_postal": "25320", + "coordonnees_gps": [ + 47.1989052804, + 5.90032789854 + ], + "libelle_d_acheminement": "GRANDFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90032789854, + 47.1989052804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0b1d7e387b74a4e075325fa7b6c2316cffc9226", + "fields": { + "code_commune_insee": "25289", + "nom_de_la_commune": "GRANDFONTAINE SUR CREUSE", + "code_postal": "25510", + "coordonnees_gps": [ + 47.1838098895, + 6.45611835105 + ], + "libelle_d_acheminement": "GRANDFONTAINE SUR CREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45611835105, + 47.1838098895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "116b640062c106546239ff9d2fc7dcc14a02f679", + "fields": { + "code_commune_insee": "25295", + "nom_de_la_commune": "LES GRANGETTES", + "code_postal": "25160", + "coordonnees_gps": [ + 46.8316716607, + 6.31512657026 + ], + "libelle_d_acheminement": "LES GRANGETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31512657026, + 46.8316716607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2e607ca47efdfefefa733a5e8359c71a4e290e8", + "fields": { + "code_commune_insee": "25299", + "nom_de_la_commune": "GUILLON LES BAINS", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3160190122, + 6.39442107084 + ], + "libelle_d_acheminement": "GUILLON LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39442107084, + 47.3160190122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaa7ca29fdb0c6e4be3de420e6d7c9a44a2323c0", + "fields": { + "code_commune_insee": "25307", + "nom_de_la_commune": "LES HOPITAUX NEUFS", + "code_postal": "25370", + "coordonnees_gps": [ + 46.7853001951, + 6.39130917442 + ], + "libelle_d_acheminement": "LES HOPITAUX NEUFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39130917442, + 46.7853001951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc8547dced71eedf29c4c1dd73253ba358fd0f4a", + "fields": { + "code_commune_insee": "25324", + "nom_de_la_commune": "LANANS", + "code_postal": "25360", + "coordonnees_gps": [ + 47.2920385717, + 6.44816877704 + ], + "libelle_d_acheminement": "LANANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44816877704, + 47.2920385717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58fd45d7ebcb023d1b7713fce88210bb4c0adfa3", + "fields": { + "code_commune_insee": "25328", + "nom_de_la_commune": "LARNOD", + "code_postal": "25720", + "coordonnees_gps": [ + 47.1791216551, + 5.97342861508 + ], + "libelle_d_acheminement": "LARNOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97342861508, + 47.1791216551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73c4c6a6e8c69a9c13654db701384287e22dd822", + "fields": { + "code_commune_insee": "25329", + "nom_de_la_commune": "LAVAL LE PRIEURE", + "code_postal": "25210", + "coordonnees_gps": [ + 47.1804847309, + 6.62165201565 + ], + "libelle_d_acheminement": "LAVAL LE PRIEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62165201565, + 47.1804847309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a80c155f8de1eac82922fe88ed5d4717151b8dc", + "fields": { + "code_commune_insee": "25331", + "nom_de_la_commune": "LAVANS VUILLAFANS", + "code_postal": "25580", + "coordonnees_gps": [ + 47.0803552824, + 6.25869822959 + ], + "libelle_d_acheminement": "LAVANS VUILLAFANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25869822959, + 47.0803552824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88cae51d5490bde1c217dd3a0cfe6e147df51c0f", + "fields": { + "code_commune_insee": "25332", + "nom_de_la_commune": "LAVERNAY", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2443013496, + 5.81882619384 + ], + "libelle_d_acheminement": "LAVERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81882619384, + 47.2443013496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc4f736c8006cc933abe27f652b6d5a4e23def71", + "fields": { + "code_commune_insee": "25334", + "nom_de_la_commune": "LEVIER", + "code_postal": "25270", + "coordonnees_gps": [ + 46.9571786318, + 6.11754093497 + ], + "libelle_d_acheminement": "LEVIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11754093497, + 46.9571786318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "214ebf6efd1ce7695ae5f8341e1f2f42b77c0154", + "fields": { + "code_commune_insee": "25343", + "nom_de_la_commune": "LONGEMAISON", + "code_postal": "25690", + "coordonnees_gps": [ + 47.0823785209, + 6.45684579091 + ], + "libelle_d_acheminement": "LONGEMAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45684579091, + 47.0823785209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5086b52c9e10516ef5617053f6a878eba6541a7c", + "fields": { + "code_commune_insee": "25355", + "nom_de_la_commune": "MAGNY CHATELARD", + "code_postal": "25360", + "coordonnees_gps": [ + 47.2346921872, + 6.32859768861 + ], + "libelle_d_acheminement": "MAGNY CHATELARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32859768861, + 47.2346921872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b8774d4b39b4649d6cfb9f226975430e906f272", + "fields": { + "code_commune_insee": "25356", + "nom_de_la_commune": "MAICHE", + "code_postal": "25120", + "coordonnees_gps": [ + 47.2397795382, + 6.79879675226 + ], + "libelle_d_acheminement": "MAICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79879675226, + 47.2397795382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f3cde159fbb2d95772e90605c724f105cd69c49", + "fields": { + "ligne_5": "LIEVREMONT", + "code_commune_insee": "25357", + "libelle_d_acheminement": "MAISONS DU BOIS LIEVREMONT", + "code_postal": "25650", + "nom_de_la_commune": "MAISONS DU BOIS LIEVREMONT", + "coordonnees_gps": [ + 46.9795599744, + 6.41425984955 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41425984955, + 46.9795599744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39c6f7c6f86f891cbe782fed05bea75adc23629f", + "fields": { + "code_commune_insee": "25359", + "nom_de_la_commune": "MALANS", + "code_postal": "25330", + "coordonnees_gps": [ + 47.0442451594, + 6.02925476489 + ], + "libelle_d_acheminement": "MALANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02925476489, + 47.0442451594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee05b6aab46b620c32fdf53c2568358e539a93cb", + "fields": { + "code_commune_insee": "25360", + "nom_de_la_commune": "MALBRANS", + "code_postal": "25620", + "coordonnees_gps": [ + 47.1237345308, + 6.08899892431 + ], + "libelle_d_acheminement": "MALBRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08899892431, + 47.1237345308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6739d1a3d8149f741345c55ba7e204f23feb328", + "fields": { + "code_commune_insee": "25364", + "nom_de_la_commune": "MAMIROLLE", + "code_postal": "25620", + "coordonnees_gps": [ + 47.198418447, + 6.16243839446 + ], + "libelle_d_acheminement": "MAMIROLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16243839446, + 47.198418447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ca2acb238f84646f3f5cf9d6ae665f12f4fd736", + "fields": { + "code_commune_insee": "25367", + "nom_de_la_commune": "MANDEURE", + "code_postal": "25350", + "coordonnees_gps": [ + 47.4326690481, + 6.810330244 + ], + "libelle_d_acheminement": "MANDEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.810330244, + 47.4326690481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69b235e47a75b116e632c7f66cad4051b8bb9f8b", + "fields": { + "code_commune_insee": "25371", + "nom_de_la_commune": "MAZEROLLES LE SALIN", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2443847246, + 5.86507797537 + ], + "libelle_d_acheminement": "MAZEROLLES LE SALIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86507797537, + 47.2443847246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbe34662cfc8c0985da16be31c52cad4bf617152", + "fields": { + "code_commune_insee": "25375", + "nom_de_la_commune": "MEREY SOUS MONTROND", + "code_postal": "25660", + "coordonnees_gps": [ + 47.163496196, + 6.06429888721 + ], + "libelle_d_acheminement": "MEREY SOUS MONTROND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06429888721, + 47.163496196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dacce84485e328f25f28bc5eaa65b28d7a8be62d", + "fields": { + "code_commune_insee": "25379", + "nom_de_la_commune": "MESMAY", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0580777963, + 5.85050213365 + ], + "libelle_d_acheminement": "MESMAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85050213365, + 47.0580777963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68c77bca21fb415ed4aabf1d24482ee7fe361ae3", + "fields": { + "ligne_5": "LE FRIOLAIS", + "code_commune_insee": "25392", + "libelle_d_acheminement": "MONT DE VOUGNEY", + "code_postal": "25120", + "nom_de_la_commune": "MONT DE VOUGNEY", + "coordonnees_gps": [ + 47.2418796782, + 6.73992900985 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73992900985, + 47.2418796782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afc4811f7078ba47f6a6464adc5c24c14d5edf54", + "fields": { + "code_commune_insee": "25394", + "nom_de_la_commune": "MONTENOIS", + "code_postal": "25260", + "coordonnees_gps": [ + 47.4932375673, + 6.65827943249 + ], + "libelle_d_acheminement": "MONTENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65827943249, + 47.4932375673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b041766b1a6f88ed9951b9eb855ec5d71e62058", + "fields": { + "code_commune_insee": "25397", + "nom_de_la_commune": "MONTFERRAND LE CHATEAU", + "code_postal": "25320", + "coordonnees_gps": [ + 47.1864306678, + 5.91877377873 + ], + "libelle_d_acheminement": "MONTFERRAND LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91877377873, + 47.1864306678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b034f890ec50c8bfa6c7e50c8c9170fcb29671f4", + "fields": { + "code_commune_insee": "25400", + "nom_de_la_commune": "MONTGESOYE", + "code_postal": "25111", + "coordonnees_gps": [ + 47.0879214162, + 6.19273775491 + ], + "libelle_d_acheminement": "MONTGESOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19273775491, + 47.0879214162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f235d7ca0943e314ac2ee23eb2ec7e82710b97b", + "fields": { + "code_commune_insee": "25413", + "nom_de_la_commune": "MOUTHE", + "code_postal": "25240", + "coordonnees_gps": [ + 46.6820888251, + 6.20564143464 + ], + "libelle_d_acheminement": "MOUTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20564143464, + 46.6820888251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec959359ee3c7c79be1efa1f4c23abca3f443d6f", + "fields": { + "code_commune_insee": "25416", + "nom_de_la_commune": "MYON", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0100095777, + 5.94019899271 + ], + "libelle_d_acheminement": "MYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94019899271, + 47.0100095777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9910284d80dd8a3a1e6f157f35327476e90ba0b8", + "fields": { + "ligne_5": "VANCLANS", + "code_commune_insee": "25424", + "libelle_d_acheminement": "LES PREMIERS SAPINS", + "code_postal": "25580", + "nom_de_la_commune": "LES PREMIERS SAPINS", + "coordonnees_gps": [ + 47.0885558465, + 6.3501261359 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3501261359, + 47.0885558465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87f7bdcddc75d39ccce546ebc6cd477a7ac7b75f", + "fields": { + "code_commune_insee": "25441", + "nom_de_la_commune": "OUVANS", + "code_postal": "25530", + "coordonnees_gps": [ + 47.276121899, + 6.48979491245 + ], + "libelle_d_acheminement": "OUVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48979491245, + 47.276121899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c70bc72f273aabb7b2b6a4ec0a1896a55f4cf79e", + "fields": { + "code_commune_insee": "25450", + "nom_de_la_commune": "PESSANS", + "code_postal": "25440", + "coordonnees_gps": [ + 47.073375698, + 5.8864885222 + ], + "libelle_d_acheminement": "PESSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8864885222, + 47.073375698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e6829edaba76c224364a72009273e888be4bed9", + "fields": { + "code_commune_insee": "25458", + "nom_de_la_commune": "LES PLAINS ET GRANDS ESSARTS", + "code_postal": "25470", + "coordonnees_gps": [ + 47.3035920869, + 6.89839278467 + ], + "libelle_d_acheminement": "LES PLAINS ET GRANDS ESSARTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89839278467, + 47.3035920869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec7e2dc5d85f186119410ac7012ef2fb08f3208e", + "fields": { + "code_commune_insee": "25461", + "nom_de_la_commune": "POMPIERRE SUR DOUBS", + "code_postal": "25340", + "coordonnees_gps": [ + 47.4236052372, + 6.52647968524 + ], + "libelle_d_acheminement": "POMPIERRE SUR DOUBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52647968524, + 47.4236052372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfd026925fb34ab7fb8e7e9ed4103f2149c08b9b", + "fields": { + "code_commune_insee": "25471", + "nom_de_la_commune": "PROVENCHERE", + "code_postal": "25380", + "coordonnees_gps": [ + 47.2895523062, + 6.64338373642 + ], + "libelle_d_acheminement": "PROVENCHERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64338373642, + 47.2895523062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f47fb04156ccdd0be606ab2e4760ad4a47cb272f", + "fields": { + "ligne_5": "VAIVRE", + "code_commune_insee": "25485", + "libelle_d_acheminement": "REMONDANS VAIVRE", + "code_postal": "25150", + "nom_de_la_commune": "REMONDANS VAIVRE", + "coordonnees_gps": [ + 47.3797020661, + 6.70946865104 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70946865104, + 47.3797020661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "343bedc1b335315e2427a8fbac7406d66d15b923", + "fields": { + "code_commune_insee": "25488", + "nom_de_la_commune": "RENNES SUR LOUE", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0154149111, + 5.85842566439 + ], + "libelle_d_acheminement": "RENNES SUR LOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85842566439, + 47.0154149111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b70690758fc60b8b132af46e3112751b28ef214", + "fields": { + "code_commune_insee": "25493", + "nom_de_la_commune": "LA RIVIERE DRUGEON", + "code_postal": "25560", + "coordonnees_gps": [ + 46.873799003, + 6.21508005837 + ], + "libelle_d_acheminement": "LA RIVIERE DRUGEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21508005837, + 46.873799003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8363b8f2f42d384fd2180644d722efc58f25c6d0", + "fields": { + "code_commune_insee": "25494", + "nom_de_la_commune": "ROCHEJEAN", + "code_postal": "25370", + "coordonnees_gps": [ + 46.7262310922, + 6.304807031 + ], + "libelle_d_acheminement": "ROCHEJEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.304807031, + 46.7262310922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "194201b28b601ba15dd1a6019c3776b4f0d7e562", + "fields": { + "code_commune_insee": "25498", + "nom_de_la_commune": "ROGNON", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4193128831, + 6.30787470895 + ], + "libelle_d_acheminement": "ROGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30787470895, + 47.4193128831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38d6e85c3947386db3507731ee2f54e12de31963", + "fields": { + "ligne_5": "CHAZELOT", + "code_commune_insee": "25505", + "libelle_d_acheminement": "ROUGEMONT", + "code_postal": "25680", + "nom_de_la_commune": "ROUGEMONT", + "coordonnees_gps": [ + 47.4795835178, + 6.34800687837 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34800687837, + 47.4795835178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "150382ace21b2e17e94ea30c59f4d57cea45ea93", + "fields": { + "code_commune_insee": "25520", + "nom_de_la_commune": "ST JUAN", + "code_postal": "25360", + "coordonnees_gps": [ + 47.2893791065, + 6.3435136184 + ], + "libelle_d_acheminement": "ST JUAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3435136184, + 47.2893791065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5a7d285da084c18dc9fd9a6a63774592a0cf5b8", + "fields": { + "ligne_5": "SANCEY LE LONG", + "code_commune_insee": "25529", + "libelle_d_acheminement": "SANCEY", + "code_postal": "25430", + "nom_de_la_commune": "SANCEY", + "coordonnees_gps": [ + 47.2902129246, + 6.5630744882 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5630744882, + 47.2902129246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f60f67d2efd4a7b03bd0768afdec8548863a6e6", + "fields": { + "code_commune_insee": "25550", + "nom_de_la_commune": "LA SOMMETTE", + "code_postal": "25510", + "coordonnees_gps": [ + 47.1917958148, + 6.50974763085 + ], + "libelle_d_acheminement": "LA SOMMETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50974763085, + 47.1917958148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed3d2ebefed447cd67e6a9b310975db807c569c1", + "fields": { + "code_commune_insee": "25553", + "nom_de_la_commune": "SOYE", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4521143455, + 6.50365970066 + ], + "libelle_d_acheminement": "SOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50365970066, + 47.4521143455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "805cda2a46236b234b378fd4465bc4e86173ff06", + "fields": { + "code_commune_insee": "25556", + "nom_de_la_commune": "TALLANS", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4108608327, + 6.28718922953 + ], + "libelle_d_acheminement": "TALLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28718922953, + 47.4108608327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c473b5b6e50adb90c6500e36d2fb94b8a5ec5ee", + "fields": { + "code_commune_insee": "25560", + "nom_de_la_commune": "THISE", + "code_postal": "25220", + "coordonnees_gps": [ + 47.2862704749, + 6.08224495009 + ], + "libelle_d_acheminement": "THISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08224495009, + 47.2862704749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afad9031cf9f74fe779eeaffe27e788b9c8750d1", + "fields": { + "code_commune_insee": "25562", + "nom_de_la_commune": "THULAY", + "code_postal": "25310", + "coordonnees_gps": [ + 47.4291611668, + 6.86009658737 + ], + "libelle_d_acheminement": "THULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86009658737, + 47.4291611668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "844d3a7f1c8abc293accd09410ec574b0b6051ae", + "fields": { + "code_commune_insee": "25566", + "nom_de_la_commune": "LA TOUR DE SCAY", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3825738249, + 6.22493151895 + ], + "libelle_d_acheminement": "LA TOUR DE SCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22493151895, + 47.3825738249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "844b06e068ac1a6f3ddc078e2f11a06fb0f7408e", + "fields": { + "code_commune_insee": "25569", + "nom_de_la_commune": "TREPOT", + "code_postal": "25620", + "coordonnees_gps": [ + 47.1693297526, + 6.16989385238 + ], + "libelle_d_acheminement": "TREPOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16989385238, + 47.1693297526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e507939f34802201985fd7d67cbb0d710aa5a1a8", + "fields": { + "code_commune_insee": "25570", + "nom_de_la_commune": "TRESSANDANS", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4975648917, + 6.33629844755 + ], + "libelle_d_acheminement": "TRESSANDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33629844755, + 47.4975648917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23d93191c882f5f83e408511d3698834375d7ac8", + "fields": { + "code_commune_insee": "25583", + "nom_de_la_commune": "VALONNE", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3423640011, + 6.66820326069 + ], + "libelle_d_acheminement": "VALONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66820326069, + 47.3423640011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "143578aa460d13ecf713b3385b5ebcc3cbabe33f", + "fields": { + "code_commune_insee": "25589", + "nom_de_la_commune": "VAUCLUSOTTE", + "code_postal": "25380", + "coordonnees_gps": [ + 47.2774412762, + 6.73416218466 + ], + "libelle_d_acheminement": "VAUCLUSOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73416218466, + 47.2774412762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eead9c1faa9c58ecc4638a19c77259a56f89e497", + "fields": { + "code_commune_insee": "25591", + "nom_de_la_commune": "VAUFREY", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3405522044, + 6.93117850184 + ], + "libelle_d_acheminement": "VAUFREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93117850184, + 47.3405522044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37a6ae775adf3e163cd4efe705dfe9c4b659be3b", + "fields": { + "code_commune_insee": "25596", + "nom_de_la_commune": "VELLEROT LES VERCEL", + "code_postal": "25530", + "coordonnees_gps": [ + 47.2462544184, + 6.44292570625 + ], + "libelle_d_acheminement": "VELLEROT LES VERCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44292570625, + 47.2462544184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e623100b8b9b6ab31fdaf7e622cfdaa8230a3682", + "fields": { + "code_commune_insee": "25599", + "nom_de_la_commune": "VENNANS", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3297119389, + 6.23268452112 + ], + "libelle_d_acheminement": "VENNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23268452112, + 47.3297119389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "697d996610b11af995a3b4410ccdc2364a7780b1", + "fields": { + "code_commune_insee": "25601", + "nom_de_la_commune": "VERCEL VILLEDIEU LE CAMP", + "code_postal": "25530", + "coordonnees_gps": [ + 47.1891393068, + 6.38184480034 + ], + "libelle_d_acheminement": "VERCEL VILLEDIEU LE CAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38184480034, + 47.1891393068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e567349965d56c262da71ea5a82f388090471160", + "fields": { + "code_commune_insee": "25602", + "nom_de_la_commune": "VERGRANNE", + "code_postal": "25110", + "coordonnees_gps": [ + 47.4092336161, + 6.39127050338 + ], + "libelle_d_acheminement": "VERGRANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39127050338, + 47.4092336161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a896089e6fe925467f556a2de32e0b8ff68511d0", + "fields": { + "code_commune_insee": "25604", + "nom_de_la_commune": "VERNE", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3971039015, + 6.35183309634 + ], + "libelle_d_acheminement": "VERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35183309634, + 47.3971039015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76e6756502971cc264606838420ad4530fa0e5da", + "fields": { + "code_commune_insee": "25605", + "nom_de_la_commune": "VERNIERFONTAINE", + "code_postal": "25580", + "coordonnees_gps": [ + 47.1102498067, + 6.29541475035 + ], + "libelle_d_acheminement": "VERNIERFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29541475035, + 47.1102498067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba5b9c34319e70b0d4aaa73448d4d9bca4827362", + "fields": { + "code_commune_insee": "25607", + "nom_de_la_commune": "VERNOIS LES BELVOIR", + "code_postal": "25430", + "coordonnees_gps": [ + 47.3215864263, + 6.64047635728 + ], + "libelle_d_acheminement": "VERNOIS LES BELVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64047635728, + 47.3215864263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95790e8f21a4fbff2ae983d86c4e32fd761f1b94", + "fields": { + "code_commune_insee": "25612", + "nom_de_la_commune": "VIEILLEY", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3366982085, + 6.0850051577 + ], + "libelle_d_acheminement": "VIEILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0850051577, + 47.3366982085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3296a412fe81c6cc1b669c7b6c7a976dd29539c4", + "fields": { + "code_commune_insee": "25614", + "nom_de_la_commune": "VIEUX CHARMONT", + "code_postal": "25600", + "coordonnees_gps": [ + 47.5237437505, + 6.84347198387 + ], + "libelle_d_acheminement": "VIEUX CHARMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84347198387, + 47.5237437505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ea28d01e5aaed7bf24d572bb8d4300615b49c6b", + "fields": { + "code_commune_insee": "25628", + "nom_de_la_commune": "VILLERS SOUS MONTROND", + "code_postal": "25620", + "coordonnees_gps": [ + 47.1453733993, + 6.08965365162 + ], + "libelle_d_acheminement": "VILLERS SOUS MONTROND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08965365162, + 47.1453733993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85837846d25400d182d31c7f29486925ad669391", + "fields": { + "ligne_5": "AIX EN DIOIS", + "code_commune_insee": "26001", + "libelle_d_acheminement": "SOLAURE EN DIOIS", + "code_postal": "26150", + "nom_de_la_commune": "SOLAURE EN DIOIS", + "coordonnees_gps": [ + 44.7024063065, + 5.38335100127 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38335100127, + 44.7024063065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edb861033fa42b7b77f2c80ef5a952c74eaf9b0a", + "fields": { + "ligne_5": "MOLIERES GLANDAZ", + "code_commune_insee": "26001", + "libelle_d_acheminement": "SOLAURE EN DIOIS", + "code_postal": "26150", + "nom_de_la_commune": "SOLAURE EN DIOIS", + "coordonnees_gps": [ + 44.7024063065, + 5.38335100127 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38335100127, + 44.7024063065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f5e3a88356d80cc50ec4688b6e7af53c6b67b85", + "fields": { + "code_commune_insee": "26006", + "nom_de_la_commune": "ALLEX", + "code_postal": "26400", + "coordonnees_gps": [ + 44.7665515552, + 4.91520351074 + ], + "libelle_d_acheminement": "ALLEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91520351074, + 44.7665515552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9053a6ecd9036423c509f4fe6fd0029ee93506dd", + "fields": { + "code_commune_insee": "26013", + "nom_de_la_commune": "ARPAVON", + "code_postal": "26110", + "coordonnees_gps": [ + 44.370914993, + 5.27351034083 + ], + "libelle_d_acheminement": "ARPAVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27351034083, + 44.370914993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56e8800ff073b36393aa04eafd6cc9b93951a352", + "fields": { + "code_commune_insee": "26014", + "nom_de_la_commune": "ARTHEMONAY", + "code_postal": "26260", + "coordonnees_gps": [ + 45.1410571357, + 5.06059762904 + ], + "libelle_d_acheminement": "ARTHEMONAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06059762904, + 45.1410571357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d378944f915ebf617aa67dbdd163585ba950455", + "fields": { + "code_commune_insee": "26017", + "nom_de_la_commune": "AUCELON", + "code_postal": "26340", + "coordonnees_gps": [ + 44.6170780241, + 5.35427948419 + ], + "libelle_d_acheminement": "AUCELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35427948419, + 44.6170780241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9606d2bcc8915a570d22ccc496343946b6c3e8a", + "fields": { + "code_commune_insee": "26018", + "nom_de_la_commune": "AULAN", + "code_postal": "26570", + "coordonnees_gps": [ + 44.2300209805, + 5.42219540267 + ], + "libelle_d_acheminement": "AULAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42219540267, + 44.2300209805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12c9e0a5a5e08a1e7140aa3e2788b447c77abf66", + "fields": { + "code_commune_insee": "26022", + "nom_de_la_commune": "BALLONS", + "code_postal": "26560", + "coordonnees_gps": [ + 44.2517233325, + 5.64403556412 + ], + "libelle_d_acheminement": "BALLONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64403556412, + 44.2517233325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4de21b5bc7dab60ee0ed46117a91616d43aa222", + "fields": { + "code_commune_insee": "26030", + "nom_de_la_commune": "LA BATIE DES FONDS", + "code_postal": "26310", + "coordonnees_gps": [ + 44.5149199104, + 5.62968857726 + ], + "libelle_d_acheminement": "LA BATIE DES FONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62968857726, + 44.5149199104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d540a063f4617eb155334ec3e56592b52c685457", + "fields": { + "code_commune_insee": "26034", + "nom_de_la_commune": "LA BAUME D HOSTUN", + "code_postal": "26730", + "coordonnees_gps": [ + 45.0617922342, + 5.22017217257 + ], + "libelle_d_acheminement": "LA BAUME D HOSTUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22017217257, + 45.0617922342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed2625d2fdb1b145fe9d63ade83d992592ef32ce", + "fields": { + "code_commune_insee": "26038", + "nom_de_la_commune": "BEAUMONT MONTEUX", + "code_postal": "26600", + "coordonnees_gps": [ + 45.0333702322, + 4.92164362037 + ], + "libelle_d_acheminement": "BEAUMONT MONTEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92164362037, + 45.0333702322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbc5c92d1cd947928f2edc8bf6606b5fd44420a6", + "fields": { + "code_commune_insee": "26041", + "nom_de_la_commune": "BEAUSEMBLANT", + "code_postal": "26240", + "coordonnees_gps": [ + 45.2124337402, + 4.84068109312 + ], + "libelle_d_acheminement": "BEAUSEMBLANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84068109312, + 45.2124337402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a56b5902a887e338d290fc55a09a287ab3243c3", + "fields": { + "code_commune_insee": "26045", + "nom_de_la_commune": "LA BEGUDE DE MAZENC", + "code_postal": "26160", + "coordonnees_gps": [ + 44.5522749544, + 4.93110207079 + ], + "libelle_d_acheminement": "LA BEGUDE DE MAZENC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93110207079, + 44.5522749544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "204e477781c5f467352e2757d539b2319b0b9695", + "fields": { + "code_commune_insee": "26046", + "nom_de_la_commune": "BELLECOMBE TARENDOL", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3570805263, + 5.35605853142 + ], + "libelle_d_acheminement": "BELLECOMBE TARENDOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35605853142, + 44.3570805263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "140c5cd50a8e4f8a11393de1299490bd27546db1", + "fields": { + "code_commune_insee": "26048", + "nom_de_la_commune": "BENIVAY OLLON", + "code_postal": "26170", + "coordonnees_gps": [ + 44.3110239354, + 5.18792865009 + ], + "libelle_d_acheminement": "BENIVAY OLLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18792865009, + 44.3110239354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5534fb9317a1ec2ffde88254808e5f286380393f", + "fields": { + "code_commune_insee": "26049", + "nom_de_la_commune": "BESAYES", + "code_postal": "26300", + "coordonnees_gps": [ + 44.9656211698, + 5.08769941869 + ], + "libelle_d_acheminement": "BESAYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08769941869, + 44.9656211698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9c45f8a33f51cf87cab970952fe83acc9bae905", + "fields": { + "code_commune_insee": "26054", + "nom_de_la_commune": "BOUCHET", + "code_postal": "26790", + "coordonnees_gps": [ + 44.2980175655, + 4.88499526137 + ], + "libelle_d_acheminement": "BOUCHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88499526137, + 44.2980175655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a396987603ef072b4b3bd88e0c2c74938397fc24", + "fields": { + "code_commune_insee": "26060", + "nom_de_la_commune": "BOUVIERES", + "code_postal": "26460", + "coordonnees_gps": [ + 44.5208961489, + 5.22148982488 + ], + "libelle_d_acheminement": "BOUVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22148982488, + 44.5208961489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "263d0df3fe6e34bfda9446306189972b060fcc75", + "fields": { + "code_commune_insee": "26071", + "nom_de_la_commune": "CHANOS CURSON", + "code_postal": "26600", + "coordonnees_gps": [ + 45.0572285587, + 4.91832006545 + ], + "libelle_d_acheminement": "CHANOS CURSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91832006545, + 45.0572285587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b184a55c9de15550a6d113387b606d9aa0b430d", + "fields": { + "code_commune_insee": "26072", + "nom_de_la_commune": "CHANTEMERLE LES BLES", + "code_postal": "26600", + "coordonnees_gps": [ + 45.1232050838, + 4.88926895841 + ], + "libelle_d_acheminement": "CHANTEMERLE LES BLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88926895841, + 45.1232050838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "164b5c6cd6f312e08e67a59f37026996fbb9fc87", + "fields": { + "ligne_5": "LES BARRAQUES EN VERCORS", + "code_commune_insee": "26074", + "libelle_d_acheminement": "LA CHAPELLE EN VERCORS", + "code_postal": "26420", + "nom_de_la_commune": "LA CHAPELLE EN VERCORS", + "coordonnees_gps": [ + 44.9725101475, + 5.41245391515 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41245391515, + 44.9725101475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "399d978ef725358ddaf4873d8613deb89910794a", + "fields": { + "code_commune_insee": "26075", + "nom_de_la_commune": "LA CHARCE", + "code_postal": "26470", + "coordonnees_gps": [ + 44.4668723535, + 5.44466918876 + ], + "libelle_d_acheminement": "LA CHARCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44466918876, + 44.4668723535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5534d6cca9d4624af6b880e27a0260a2e76362d8", + "fields": { + "code_commune_insee": "26076", + "nom_de_la_commune": "CHARENS", + "code_postal": "26310", + "coordonnees_gps": [ + 44.5423083646, + 5.50825607995 + ], + "libelle_d_acheminement": "CHARENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50825607995, + 44.5423083646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd2d1a0776dc532fcbaf5d085c9c5a15231080bf", + "fields": { + "code_commune_insee": "26082", + "nom_de_la_commune": "CHATEAUNEUF DE BORDETTE", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3367876244, + 5.17129087386 + ], + "libelle_d_acheminement": "CHATEAUNEUF DE BORDETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17129087386, + 44.3367876244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faf2cf7dee2e3be81ef77f6cfbb32ec4a23132ae", + "fields": { + "code_commune_insee": "26087", + "nom_de_la_commune": "CHATILLON ST JEAN", + "code_postal": "26750", + "coordonnees_gps": [ + 45.095956421, + 5.13398617216 + ], + "libelle_d_acheminement": "CHATILLON ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13398617216, + 45.095956421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc00461f3e93a442f24b8549c5b87c70fa680a2c", + "fields": { + "code_commune_insee": "26090", + "nom_de_la_commune": "LA CHAUDIERE", + "code_postal": "26340", + "coordonnees_gps": [ + 44.6310856733, + 5.22468176139 + ], + "libelle_d_acheminement": "LA CHAUDIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22468176139, + 44.6310856733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5540110676f0bb5fde860353130e46a93e196e70", + "fields": { + "code_commune_insee": "26091", + "nom_de_la_commune": "CHAUVAC LAUX MONTAUX", + "code_postal": "26510", + "coordonnees_gps": [ + 44.3222598989, + 5.53474260728 + ], + "libelle_d_acheminement": "CHAUVAC LAUX MONTAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53474260728, + 44.3222598989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdc2bae3fb3ffa3877a4744f116f44be2e966324", + "fields": { + "code_commune_insee": "26096", + "nom_de_la_commune": "CLERIEUX", + "code_postal": "26260", + "coordonnees_gps": [ + 45.0801761382, + 4.95477665507 + ], + "libelle_d_acheminement": "CLERIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95477665507, + 45.0801761382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67d40a01199a0e337bbd0269d88202dcb71e36d8", + "fields": { + "code_commune_insee": "26097", + "nom_de_la_commune": "CLIOUSCLAT", + "code_postal": "26270", + "coordonnees_gps": [ + 44.7223033154, + 4.83295265702 + ], + "libelle_d_acheminement": "CLIOUSCLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83295265702, + 44.7223033154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82e9d38f87643eb86f7870afbfd93d1d1c1078a1", + "fields": { + "code_commune_insee": "26102", + "nom_de_la_commune": "CONDILLAC", + "code_postal": "26740", + "coordonnees_gps": [ + 44.6388037984, + 4.82780234545 + ], + "libelle_d_acheminement": "CONDILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82780234545, + 44.6388037984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65d680349415805decaa670be7665e149e54ec15", + "fields": { + "code_commune_insee": "26105", + "nom_de_la_commune": "CORNILLON SUR L OULE", + "code_postal": "26510", + "coordonnees_gps": [ + 44.4553268167, + 5.36026006175 + ], + "libelle_d_acheminement": "CORNILLON SUR L OULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36026006175, + 44.4553268167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1638452ced6fc3df4ad3531ca568aaa1b220a55f", + "fields": { + "code_commune_insee": "26107", + "nom_de_la_commune": "CREPOL", + "code_postal": "26350", + "coordonnees_gps": [ + 45.1749370452, + 5.06902738769 + ], + "libelle_d_acheminement": "CREPOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06902738769, + 45.1749370452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "326945ecfe451e24dcbe5ff84dbdb1f2f7d9b982", + "fields": { + "code_commune_insee": "26108", + "nom_de_la_commune": "CREST", + "code_postal": "26400", + "coordonnees_gps": [ + 44.7335665907, + 5.0221758413 + ], + "libelle_d_acheminement": "CREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0221758413, + 44.7335665907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcc540c64d3d1891acd165dbdd0315d7fd01b28d", + "fields": { + "code_commune_insee": "26110", + "nom_de_la_commune": "CROZES HERMITAGE", + "code_postal": "26600", + "coordonnees_gps": [ + 45.0984942531, + 4.844233369 + ], + "libelle_d_acheminement": "CROZES HERMITAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.844233369, + 45.0984942531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a690e39fbfe3b513d54e31a9cfef359aa15cef39", + "fields": { + "code_commune_insee": "26111", + "nom_de_la_commune": "CRUPIES", + "code_postal": "26460", + "coordonnees_gps": [ + 44.5539294848, + 5.18083316886 + ], + "libelle_d_acheminement": "CRUPIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18083316886, + 44.5539294848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "226c8340f881fa59caba0dc45a21b763933efe49", + "fields": { + "code_commune_insee": "26112", + "nom_de_la_commune": "CURNIER", + "code_postal": "26110", + "coordonnees_gps": [ + 44.387658631, + 5.23421106174 + ], + "libelle_d_acheminement": "CURNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23421106174, + 44.387658631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3654d0fc8da345ee1956db778ff86e8c9efba0c8", + "fields": { + "code_commune_insee": "26124", + "nom_de_la_commune": "ETOILE SUR RHONE", + "code_postal": "26800", + "coordonnees_gps": [ + 44.8313893504, + 4.87476252885 + ], + "libelle_d_acheminement": "ETOILE SUR RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87476252885, + 44.8313893504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee908a1f9879f21cee5c20ad3ee5a451337fd2ae", + "fields": { + "code_commune_insee": "26127", + "nom_de_la_commune": "EYGALIERS", + "code_postal": "26170", + "coordonnees_gps": [ + 44.2403379768, + 5.28466764247 + ], + "libelle_d_acheminement": "EYGALIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28466764247, + 44.2403379768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a863379a3233dcf3dc133b935c840dd5259c8819", + "fields": { + "code_commune_insee": "26135", + "nom_de_la_commune": "FERRASSIERES", + "code_postal": "26570", + "coordonnees_gps": [ + 44.1391681651, + 5.49040783709 + ], + "libelle_d_acheminement": "FERRASSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49040783709, + 44.1391681651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a78e40621757738a6d1460542bb0dc7c70523954", + "fields": { + "code_commune_insee": "26141", + "nom_de_la_commune": "GIGORS ET LOZERON", + "code_postal": "26400", + "coordonnees_gps": [ + 44.8113617403, + 5.11358630739 + ], + "libelle_d_acheminement": "GIGORS ET LOZERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11358630739, + 44.8113617403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1efb9d546225c6e0efd73292b525c14ffcf620f1", + "fields": { + "code_commune_insee": "26148", + "nom_de_la_commune": "HAUTERIVES", + "code_postal": "26390", + "coordonnees_gps": [ + 45.2531318961, + 5.03890051162 + ], + "libelle_d_acheminement": "HAUTERIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03890051162, + 45.2531318961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14a4fb835e30453e3a8beb95d190cd87cf6d9062", + "fields": { + "code_commune_insee": "26156", + "nom_de_la_commune": "LARNAGE", + "code_postal": "26600", + "coordonnees_gps": [ + 45.0989410685, + 4.86289979161 + ], + "libelle_d_acheminement": "LARNAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86289979161, + 45.0989410685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fcb230c0efbd663c9fb8aa772a818574661fe56", + "fields": { + "code_commune_insee": "26157", + "nom_de_la_commune": "LA LAUPIE", + "code_postal": "26740", + "coordonnees_gps": [ + 44.608225236, + 4.85111658916 + ], + "libelle_d_acheminement": "LA LAUPIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85111658916, + 44.608225236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ffec0cc8a20f61fee31c6c59e20e957e2310720", + "fields": { + "code_commune_insee": "26159", + "nom_de_la_commune": "LAVAL D AIX", + "code_postal": "26150", + "coordonnees_gps": [ + 44.7360932981, + 5.45230545498 + ], + "libelle_d_acheminement": "LAVAL D AIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45230545498, + 44.7360932981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1209a8f5a312dcb261dabdbff5cbe460da7d07ab", + "fields": { + "code_commune_insee": "26160", + "nom_de_la_commune": "LAVEYRON", + "code_postal": "26240", + "coordonnees_gps": [ + 45.2037746922, + 4.81998155798 + ], + "libelle_d_acheminement": "LAVEYRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81998155798, + 45.2037746922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7bf6c5100effb894cb03b090bd57e68ac9332d0", + "fields": { + "code_commune_insee": "26161", + "nom_de_la_commune": "LEMPS", + "code_postal": "26510", + "coordonnees_gps": [ + 44.3531580457, + 5.41264543298 + ], + "libelle_d_acheminement": "LEMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41264543298, + 44.3531580457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c65345ce5707749f0e4cd4f884f8188f6192c407", + "fields": { + "code_commune_insee": "26162", + "nom_de_la_commune": "LENS LESTANG", + "code_postal": "26210", + "coordonnees_gps": [ + 45.2960581981, + 5.04115943203 + ], + "libelle_d_acheminement": "LENS LESTANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04115943203, + 45.2960581981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee4eef95d3ef1c140bccf946d423e21dc35c9324", + "fields": { + "code_commune_insee": "26164", + "nom_de_la_commune": "LESCHES EN DIOIS", + "code_postal": "26310", + "coordonnees_gps": [ + 44.5936637073, + 5.51737877593 + ], + "libelle_d_acheminement": "LESCHES EN DIOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51737877593, + 44.5936637073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d922713b01cfe32a896fd17b912a99ae16fe8fa", + "fields": { + "code_commune_insee": "26169", + "nom_de_la_commune": "MALATAVERNE", + "code_postal": "26780", + "coordonnees_gps": [ + 44.4735237549, + 4.74537048186 + ], + "libelle_d_acheminement": "MALATAVERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74537048186, + 44.4735237549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "047d685a551e7d447d7dd513b8df870f80d871c2", + "fields": { + "code_commune_insee": "26170", + "nom_de_la_commune": "MALISSARD", + "code_postal": "26120", + "coordonnees_gps": [ + 44.9007368084, + 4.95855438773 + ], + "libelle_d_acheminement": "MALISSARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95855438773, + 44.9007368084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d31934ce669d7c1a4877664b584adb855ab5710a", + "fields": { + "code_commune_insee": "26175", + "nom_de_la_commune": "MARIGNAC EN DIOIS", + "code_postal": "26150", + "coordonnees_gps": [ + 44.8102170504, + 5.3344028956 + ], + "libelle_d_acheminement": "MARIGNAC EN DIOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3344028956, + 44.8102170504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78e90ae244076de42fc40f1c47a094afb3652836", + "fields": { + "ligne_5": "MERCUROL", + "code_commune_insee": "26179", + "libelle_d_acheminement": "MERCUROL VEAUNES", + "code_postal": "26600", + "nom_de_la_commune": "MERCUROL VEAUNES", + "coordonnees_gps": [ + 45.0714881151, + 4.88879562324 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88879562324, + 45.0714881151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "194fb79ca04189d81ee0e129b731bf21016506f9", + "fields": { + "code_commune_insee": "26188", + "nom_de_la_commune": "MOLLANS SUR OUVEZE", + "code_postal": "26170", + "coordonnees_gps": [ + 44.2339086816, + 5.19464049254 + ], + "libelle_d_acheminement": "MOLLANS SUR OUVEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19464049254, + 44.2339086816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecb950cc519a6937cf068bb22fb47eb9836e0c88", + "fields": { + "code_commune_insee": "26189", + "nom_de_la_commune": "MONTAUBAN SUR L OUVEZE", + "code_postal": "26170", + "coordonnees_gps": [ + 44.2773478714, + 5.51851244253 + ], + "libelle_d_acheminement": "MONTAUBAN SUR L OUVEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51851244253, + 44.2773478714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c752c93fe0995e6ee61e2dca637e623eac8d340b", + "fields": { + "code_commune_insee": "26195", + "nom_de_la_commune": "MONTCLAR SUR GERVANNE", + "code_postal": "26400", + "coordonnees_gps": [ + 44.7478398549, + 5.15785545996 + ], + "libelle_d_acheminement": "MONTCLAR SUR GERVANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15785545996, + 44.7478398549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b374b387ad1f8afc028c46a3f0b0dcc573a6bb48", + "fields": { + "code_commune_insee": "26204", + "nom_de_la_commune": "MONTLAUR EN DIOIS", + "code_postal": "26310", + "coordonnees_gps": [ + 44.6269804686, + 5.41568808413 + ], + "libelle_d_acheminement": "MONTLAUR EN DIOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41568808413, + 44.6269804686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bbd5c5edab5139e1d6eaf04e3b8d8ca06b39b9f", + "fields": { + "code_commune_insee": "26207", + "nom_de_la_commune": "MONTMIRAL", + "code_postal": "26750", + "coordonnees_gps": [ + 45.1534746191, + 5.16002782914 + ], + "libelle_d_acheminement": "MONTMIRAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16002782914, + 45.1534746191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b1e4087e2584aebf1b0b767d6082cf88fe943f3", + "fields": { + "ligne_5": "MONTRIGAUD", + "code_commune_insee": "26210", + "libelle_d_acheminement": "VALHERBASSE", + "code_postal": "26350", + "nom_de_la_commune": "VALHERBASSE", + "coordonnees_gps": [ + 45.2264302385, + 5.14289630898 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14289630898, + 45.2264302385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b97fe72e9326d978980f8d31002c45f29d43031", + "fields": { + "code_commune_insee": "26228", + "nom_de_la_commune": "PENNES LE SEC", + "code_postal": "26340", + "coordonnees_gps": [ + 44.6368369642, + 5.32049274034 + ], + "libelle_d_acheminement": "PENNES LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32049274034, + 44.6368369642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1c629886cd6c6b21b588b8c5f0f00d31fb67f54", + "fields": { + "code_commune_insee": "26240", + "nom_de_la_commune": "PLAN DE BAIX", + "code_postal": "26400", + "coordonnees_gps": [ + 44.824829666, + 5.16640460986 + ], + "libelle_d_acheminement": "PLAN DE BAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16640460986, + 44.824829666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de9d853285d1a100619a66309d1a7c120af62fbe", + "fields": { + "code_commune_insee": "26245", + "nom_de_la_commune": "POMMEROL", + "code_postal": "26470", + "coordonnees_gps": [ + 44.4372174843, + 5.46497895783 + ], + "libelle_d_acheminement": "POMMEROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46497895783, + 44.4372174843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f22f8743c8fec55eb9b9eaba962e2f67504678b2", + "fields": { + "code_commune_insee": "26252", + "nom_de_la_commune": "PORTES LES VALENCE", + "code_postal": "26800", + "coordonnees_gps": [ + 44.8757833249, + 4.88408311324 + ], + "libelle_d_acheminement": "PORTES LES VALENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88408311324, + 44.8757833249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "289579c891b71559b1ac32cee6be0b352dc6843c", + "fields": { + "ligne_5": "JANSAC", + "code_commune_insee": "26262", + "libelle_d_acheminement": "RECOUBEAU JANSAC", + "code_postal": "26310", + "nom_de_la_commune": "RECOUBEAU JANSAC", + "coordonnees_gps": [ + 44.6516625854, + 5.40361308462 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40361308462, + 44.6516625854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24552e8e653d1eed1cd236f4ec7654b6da593231", + "fields": { + "code_commune_insee": "26270", + "nom_de_la_commune": "ROCHECHINARD", + "code_postal": "26190", + "coordonnees_gps": [ + 45.0272825113, + 5.24326609957 + ], + "libelle_d_acheminement": "ROCHECHINARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24326609957, + 45.0272825113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb6c55a82e4048c5264f6fe7e953e5116272dd2b", + "fields": { + "code_commune_insee": "26271", + "nom_de_la_commune": "LA ROCHE DE GLUN", + "code_postal": "26600", + "coordonnees_gps": [ + 45.0186564711, + 4.85709493142 + ], + "libelle_d_acheminement": "LA ROCHE DE GLUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85709493142, + 45.0186564711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cee766107eb03b9ab90030ec991bc59707fb183d", + "fields": { + "code_commune_insee": "26273", + "nom_de_la_commune": "ROCHEFORT SAMSON", + "code_postal": "26300", + "coordonnees_gps": [ + 44.975050381, + 5.16619542188 + ], + "libelle_d_acheminement": "ROCHEFORT SAMSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16619542188, + 44.975050381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fcecc664c6c93f7b7493492e4792a84eb066c10", + "fields": { + "code_commune_insee": "26275", + "nom_de_la_commune": "ROCHEGUDE", + "code_postal": "26790", + "coordonnees_gps": [ + 44.2556674573, + 4.83716476858 + ], + "libelle_d_acheminement": "ROCHEGUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83716476858, + 44.2556674573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4df14c7b110a47ee7a6d7481a77beb3b6336f1b9", + "fields": { + "code_commune_insee": "26294", + "nom_de_la_commune": "ST BARDOUX", + "code_postal": "26260", + "coordonnees_gps": [ + 45.0826295018, + 4.98379455691 + ], + "libelle_d_acheminement": "ST BARDOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98379455691, + 45.0826295018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f58b98b96f947698e4476c6aadcff7163cc8700", + "fields": { + "code_commune_insee": "26301", + "nom_de_la_commune": "ST DONAT SUR L HERBASSE", + "code_postal": "26260", + "coordonnees_gps": [ + 45.1260127512, + 4.98461565912 + ], + "libelle_d_acheminement": "ST DONAT SUR L HERBASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98461565912, + 45.1260127512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "109d7c811a1e9b99139e0b58019003dc745052bf", + "fields": { + "code_commune_insee": "26308", + "nom_de_la_commune": "ST JULIEN EN QUINT", + "code_postal": "26150", + "coordonnees_gps": [ + 44.852719675, + 5.29754292865 + ], + "libelle_d_acheminement": "ST JULIEN EN QUINT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29754292865, + 44.852719675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86c84f95210776c3d9f04225d0f12f93a8571bd7", + "fields": { + "code_commune_insee": "26309", + "nom_de_la_commune": "ST JULIEN EN VERCORS", + "code_postal": "26420", + "coordonnees_gps": [ + 45.0565543942, + 5.44625083689 + ], + "libelle_d_acheminement": "ST JULIEN EN VERCORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44625083689, + 45.0565543942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eda0772607aab8a53d284d545dd6a6ea34592ff8", + "fields": { + "code_commune_insee": "26310", + "nom_de_la_commune": "ST LAURENT D ONAY", + "code_postal": "26350", + "coordonnees_gps": [ + 45.1781215025, + 5.1110797449 + ], + "libelle_d_acheminement": "ST LAURENT D ONAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1110797449, + 45.1781215025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c4718487a6acd826076a6542928bee3ed6c1ebf", + "fields": { + "code_commune_insee": "26312", + "nom_de_la_commune": "ST MARCEL LES SAUZET", + "code_postal": "26740", + "coordonnees_gps": [ + 44.6007862089, + 4.80435722429 + ], + "libelle_d_acheminement": "ST MARCEL LES SAUZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80435722429, + 44.6007862089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e87173d620db9a30da76a039c4c085c5d3cab9b9", + "fields": { + "code_commune_insee": "26314", + "nom_de_la_commune": "ST MARTIN D AOUT", + "code_postal": "26330", + "coordonnees_gps": [ + 45.2222381407, + 4.98682933126 + ], + "libelle_d_acheminement": "ST MARTIN D AOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98682933126, + 45.2222381407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "819ca246e86bc98254835775c9ec6fbd18abb045", + "fields": { + "code_commune_insee": "26316", + "nom_de_la_commune": "ST MARTIN LE COLONEL", + "code_postal": "26190", + "coordonnees_gps": [ + 44.9852575045, + 5.27975659014 + ], + "libelle_d_acheminement": "ST MARTIN LE COLONEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27975659014, + 44.9852575045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6368515301bbdd2ecd3ec49dfa3e66c689aaa91", + "fields": { + "code_commune_insee": "26317", + "nom_de_la_commune": "ST MAURICE SUR EYGUES", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3029325431, + 5.00596735706 + ], + "libelle_d_acheminement": "ST MAURICE SUR EYGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00596735706, + 44.3029325431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dc7d72799511313833cd824f2865fd8419ea397", + "fields": { + "code_commune_insee": "26324", + "nom_de_la_commune": "ST PAUL TROIS CHATEAUX", + "code_postal": "26130", + "coordonnees_gps": [ + 44.3482808478, + 4.75744934383 + ], + "libelle_d_acheminement": "ST PAUL TROIS CHATEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75744934383, + 44.3482808478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b0202218098bb38f1198b7e5dbe8f2bfa99e7f9", + "fields": { + "ligne_5": "LES REYS DE SAULCE", + "code_commune_insee": "26337", + "libelle_d_acheminement": "SAULCE SUR RHONE", + "code_postal": "26270", + "nom_de_la_commune": "SAULCE SUR RHONE", + "coordonnees_gps": [ + 44.7042406134, + 4.79084711633 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79084711633, + 44.7042406134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf81d32aee24402285784b259122cc54b1ab70bc", + "fields": { + "code_commune_insee": "26347", + "nom_de_la_commune": "TAIN L HERMITAGE", + "code_postal": "26600", + "coordonnees_gps": [ + 45.0710728431, + 4.85070614193 + ], + "libelle_d_acheminement": "TAIN L HERMITAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85070614193, + 45.0710728431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acaa3ac7ef97495fb76442b726dbe5d7f90d2db2", + "fields": { + "code_commune_insee": "26355", + "nom_de_la_commune": "TRIORS", + "code_postal": "26750", + "coordonnees_gps": [ + 45.0951576073, + 5.11184336958 + ], + "libelle_d_acheminement": "TRIORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11184336958, + 45.0951576073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62cd5bd2592a069548cb3e1c15f24f0f5cb8e5e6", + "fields": { + "code_commune_insee": "26360", + "nom_de_la_commune": "VALAURIE", + "code_postal": "26230", + "coordonnees_gps": [ + 44.420602445, + 4.81063104822 + ], + "libelle_d_acheminement": "VALAURIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81063104822, + 44.420602445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24153c2798068469f3f146512b8be02a19827673", + "fields": { + "code_commune_insee": "26361", + "nom_de_la_commune": "VALDROME", + "code_postal": "26310", + "coordonnees_gps": [ + 44.4979512918, + 5.56721863741 + ], + "libelle_d_acheminement": "VALDROME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56721863741, + 44.4979512918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebac03ef64a6b7382b00e8ee8287200d8b0728c0", + "fields": { + "code_commune_insee": "26379", + "nom_de_la_commune": "GRANGES LES BEAUMONT", + "code_postal": "26600", + "coordonnees_gps": [ + 45.0478824506, + 4.97487229012 + ], + "libelle_d_acheminement": "GRANGES LES BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97487229012, + 45.0478824506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d3967de6a9ae0e2be8fa2acf1c8427c3a0499ef", + "fields": { + "code_commune_insee": "27006", + "nom_de_la_commune": "AIZIER", + "code_postal": "27500", + "coordonnees_gps": [ + 49.4307181998, + 0.626081675933 + ], + "libelle_d_acheminement": "AIZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.626081675933, + 49.4307181998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c9d9a5de1cdf42694d29e6bb18ed155d69182ac", + "fields": { + "code_commune_insee": "27010", + "nom_de_la_commune": "AMECOURT", + "code_postal": "27140", + "coordonnees_gps": [ + 49.3767401093, + 1.7332985708 + ], + "libelle_d_acheminement": "AMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7332985708, + 49.3767401093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62231a0886266d6b6dfbbbafa43c1e7e361d67a4", + "fields": { + "code_commune_insee": "27013", + "nom_de_la_commune": "AMFREVILLE SOUS LES MONTS", + "code_postal": "27380", + "coordonnees_gps": [ + 49.3028161633, + 1.26637402141 + ], + "libelle_d_acheminement": "AMFREVILLE SOUS LES MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26637402141, + 49.3028161633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e1c8cec47957c396e46743fb720a6c78d83a967", + "fields": { + "code_commune_insee": "27018", + "nom_de_la_commune": "APPEVILLE ANNEBAULT", + "code_postal": "27290", + "coordonnees_gps": [ + 49.322265478, + 0.651047926386 + ], + "libelle_d_acheminement": "APPEVILLE ANNEBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.651047926386, + 49.322265478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98d542d5af7d45ad897b0dc0ce91edd8ed550ad5", + "fields": { + "code_commune_insee": "27021", + "nom_de_la_commune": "ASNIERES", + "code_postal": "27260", + "coordonnees_gps": [ + 49.2048420248, + 0.401991351271 + ], + "libelle_d_acheminement": "ASNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.401991351271, + 49.2048420248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23e4763614d1767fc3600c391827ebd37c45a647", + "fields": { + "ligne_5": "AUBEVOYE", + "code_commune_insee": "27022", + "libelle_d_acheminement": "LE VAL D HAZEY", + "code_postal": "27940", + "nom_de_la_commune": "LE VAL D HAZEY", + "coordonnees_gps": [ + 49.1751629599, + 1.33329956002 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33329956002, + 49.1751629599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3372c305fd81ed0a792ab6841b824b20cb9fb03", + "fields": { + "code_commune_insee": "27033", + "nom_de_la_commune": "BACQUEPUIS", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0908435068, + 1.04555863725 + ], + "libelle_d_acheminement": "BACQUEPUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04555863725, + 49.0908435068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07b937fff610f32f74bcc77696df7b8c15c9dcc9", + "fields": { + "code_commune_insee": "27045", + "nom_de_la_commune": "BAZINCOURT SUR EPTE", + "code_postal": "27140", + "coordonnees_gps": [ + 49.3259295252, + 1.7576865093 + ], + "libelle_d_acheminement": "BAZINCOURT SUR EPTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7576865093, + 49.3259295252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "017e4acff7d6a0b1a666b19a9873e1f87415b7e9", + "fields": { + "code_commune_insee": "27046", + "nom_de_la_commune": "BAZOQUES", + "code_postal": "27230", + "coordonnees_gps": [ + 49.1705243129, + 0.549677585318 + ], + "libelle_d_acheminement": "BAZOQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.549677585318, + 49.1705243129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcfc1608e96b7045418964c8ea347e3593c57453", + "fields": { + "code_commune_insee": "27047", + "nom_de_la_commune": "BEAUBRAY", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9105126717, + 0.900919598121 + ], + "libelle_d_acheminement": "BEAUBRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.900919598121, + 48.9105126717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87259bdf32d0d9024c5ca70a5dc41905d681c875", + "fields": { + "ligne_5": "EPINAY", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27330", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "933662d4e11b91680c4cb396f8e12b0df537c7a2", + "fields": { + "ligne_5": "ST PIERRE DU MESNIL", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27330", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26895b5315eb38a43716dc61d8fa5adddccf3acc", + "fields": { + "ligne_5": "GOUTTIERES", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27410", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eceb151c263f68ed2ffd4a3aad6601c9491208ad", + "fields": { + "ligne_5": "ST AUBIN LE GUICHARD", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27410", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4280a8b4d982b5a28054c7cdcd880ec8656066cf", + "fields": { + "ligne_5": "THEVRAY", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27410", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "069845ef3df5df6784dee0e904263b0a63b2d1a4", + "fields": { + "code_commune_insee": "27050", + "nom_de_la_commune": "BEAUMONTEL", + "code_postal": "27170", + "coordonnees_gps": [ + 49.0956151725, + 0.780814703576 + ], + "libelle_d_acheminement": "BEAUMONTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.780814703576, + 49.0956151725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fc59971d5cf330689b8ffde6746245c9ce1eeee", + "fields": { + "code_commune_insee": "27052", + "nom_de_la_commune": "LE BEC HELLOUIN", + "code_postal": "27800", + "coordonnees_gps": [ + 49.2249212859, + 0.726506401236 + ], + "libelle_d_acheminement": "LE BEC HELLOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.726506401236, + 49.2249212859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba62a05ee5e515a05397e8ede036bfa90c14f5e", + "fields": { + "code_commune_insee": "27054", + "nom_de_la_commune": "BEMECOURT", + "code_postal": "27160", + "coordonnees_gps": [ + 48.8432221726, + 0.848460496719 + ], + "libelle_d_acheminement": "BEMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.848460496719, + 48.8432221726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6eb6783422c4cf631d80943f756d211518639585", + "fields": { + "ligne_5": "BERVILLE EN ROUMOIS", + "code_commune_insee": "27062", + "libelle_d_acheminement": "LES MONTS DU ROUMOIS", + "code_postal": "27520", + "nom_de_la_commune": "LES MONTS DU ROUMOIS", + "coordonnees_gps": [ + 49.2948046774, + 0.827614672405 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.827614672405, + 49.2948046774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "620b83580a8a5c38258c9dab6f0606a71483ded1", + "fields": { + "code_commune_insee": "27069", + "nom_de_la_commune": "BOIS ARNAULT", + "code_postal": "27250", + "coordonnees_gps": [ + 48.816398716, + 0.748244384454 + ], + "libelle_d_acheminement": "BOIS ARNAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.748244384454, + 48.816398716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec955f36a1b554cfc894eb9a5d8855f4d3694597", + "fields": { + "ligne_5": "FRESNE L ARCHEVEQUE", + "code_commune_insee": "27070", + "libelle_d_acheminement": "FRENELLES EN VEXIN", + "code_postal": "27700", + "nom_de_la_commune": "FRENELLES EN VEXIN", + "coordonnees_gps": [ + 49.2925439055, + 1.49018837893 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49018837893, + 49.2925439055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "402540d4cfbd770e18145b767f05c8048b602d69", + "fields": { + "code_commune_insee": "27078", + "nom_de_la_commune": "LA BOISSIERE", + "code_postal": "27220", + "coordonnees_gps": [ + 48.9511536533, + 1.36900012303 + ], + "libelle_d_acheminement": "LA BOISSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36900012303, + 48.9511536533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caa472de17a28f0aff7cd653d4d7fbcf5e2cd090", + "fields": { + "ligne_5": "FLANCOURT CATELON", + "code_commune_insee": "27085", + "libelle_d_acheminement": "FLANCOURT CRESCY EN ROUMOIS", + "code_postal": "27310", + "nom_de_la_commune": "FLANCOURT CRESCY EN ROUMOIS", + "coordonnees_gps": [ + 49.3166032869, + 0.807172708005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.807172708005, + 49.3166032869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4725a342318909f33494bc420e033216bb72086", + "fields": { + "ligne_5": "LE BOSC ROGER EN ROUMOIS", + "code_commune_insee": "27090", + "libelle_d_acheminement": "BOSROUMOIS", + "code_postal": "27670", + "nom_de_la_commune": "BOSROUMOIS", + "coordonnees_gps": [ + 49.2933518508, + 0.922353150022 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.922353150022, + 49.2933518508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "882c9be8a76ed0bb47ec0eb765d3d3a74ab37e6b", + "fields": { + "code_commune_insee": "27094", + "nom_de_la_commune": "BOSQUENTIN", + "code_postal": "27480", + "coordonnees_gps": [ + 49.4131822482, + 1.58863474823 + ], + "libelle_d_acheminement": "BOSQUENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58863474823, + 49.4131822482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afe34dffd79e3d888e2563882f35a742f73b75e6", + "fields": { + "ligne_5": "LES FRETILS", + "code_commune_insee": "27096", + "libelle_d_acheminement": "LES BOTTEREAUX", + "code_postal": "27250", + "nom_de_la_commune": "LES BOTTEREAUX", + "coordonnees_gps": [ + 48.8712188786, + 0.676548267263 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.676548267263, + 48.8712188786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "976a30febac713ac245591df0f89d922ea29c651", + "fields": { + "code_commune_insee": "27097", + "nom_de_la_commune": "BOUAFLES", + "code_postal": "27700", + "coordonnees_gps": [ + 49.2013162618, + 1.38671055772 + ], + "libelle_d_acheminement": "BOUAFLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38671055772, + 49.2013162618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0a759cee8bc5faef27fa9a6a03cb3866b51eb8b", + "fields": { + "code_commune_insee": "27100", + "nom_de_la_commune": "BOULLEVILLE", + "code_postal": "27210", + "coordonnees_gps": [ + 49.3705498609, + 0.393309012752 + ], + "libelle_d_acheminement": "BOULLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.393309012752, + 49.3705498609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bcc2bdc5cd41b4c5c9c5f404383f46a67eedfc3", + "fields": { + "ligne_5": "LA LANDE", + "code_commune_insee": "27100", + "libelle_d_acheminement": "BOULLEVILLE", + "code_postal": "27210", + "nom_de_la_commune": "BOULLEVILLE", + "coordonnees_gps": [ + 49.3705498609, + 0.393309012752 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.393309012752, + 49.3705498609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c148a2036b12d0678edc4e4f02a5947d0694692", + "fields": { + "code_commune_insee": "27104", + "nom_de_la_commune": "BOURG BEAUDOUIN", + "code_postal": "27380", + "coordonnees_gps": [ + 49.384064596, + 1.30432026998 + ], + "libelle_d_acheminement": "BOURG BEAUDOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30432026998, + 49.384064596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b8b2430c57da33bc95b83e28b8b9ee5f62f151d", + "fields": { + "ligne_5": "BOSC BENARD COMMIN", + "code_commune_insee": "27105", + "libelle_d_acheminement": "GRAND BOURGTHEROULDE", + "code_postal": "27520", + "nom_de_la_commune": "GRAND BOURGTHEROULDE", + "coordonnees_gps": [ + 49.2995530921, + 0.876522751918 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.876522751918, + 49.2995530921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ef1d618cf8841a6ff7d308e8aad0d2abc158ee7", + "fields": { + "ligne_5": "FAVEROLLES LES MARES", + "code_commune_insee": "27106", + "libelle_d_acheminement": "BOURNAINVILLE FAVEROLLES", + "code_postal": "27230", + "nom_de_la_commune": "BOURNAINVILLE FAVEROLLES", + "coordonnees_gps": [ + 49.122899642, + 0.50099426931 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50099426931, + 49.122899642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77ff2e45400f7a7979d527e3f39f0700d0a244a4", + "fields": { + "code_commune_insee": "27113", + "nom_de_la_commune": "BRETIGNY", + "code_postal": "27800", + "coordonnees_gps": [ + 49.2149558389, + 0.662526045546 + ], + "libelle_d_acheminement": "BRETIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.662526045546, + 49.2149558389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ccb42d3710a923b7bafa98b14f933de6bd2a998", + "fields": { + "code_commune_insee": "27117", + "nom_de_la_commune": "BROGLIE", + "code_postal": "27270", + "coordonnees_gps": [ + 49.0033194682, + 0.525834728262 + ], + "libelle_d_acheminement": "BROGLIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.525834728262, + 49.0033194682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b8e274b31f20fcb110d334efcac79580fedef41", + "fields": { + "code_commune_insee": "27120", + "nom_de_la_commune": "BUREY", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9922829548, + 0.944514139448 + ], + "libelle_d_acheminement": "BUREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.944514139448, + 48.9922829548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e93826500168278fb20b756725aeab8a86b72147", + "fields": { + "code_commune_insee": "27124", + "nom_de_la_commune": "CAILLY SUR EURE", + "code_postal": "27490", + "coordonnees_gps": [ + 49.1194337911, + 1.21848512049 + ], + "libelle_d_acheminement": "CAILLY SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21848512049, + 49.1194337911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e26bd586b645c8a16557d4a3167275829e51bb0", + "fields": { + "code_commune_insee": "27133", + "nom_de_la_commune": "CAUMONT", + "code_postal": "27310", + "coordonnees_gps": [ + 49.3666663347, + 0.908461916692 + ], + "libelle_d_acheminement": "CAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.908461916692, + 49.3666663347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92443e67f91c8516b8d8a35142233942f6558aed", + "fields": { + "code_commune_insee": "27141", + "nom_de_la_commune": "CHAMP DOLENT", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9588653377, + 1.00803800645 + ], + "libelle_d_acheminement": "CHAMP DOLENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00803800645, + 48.9588653377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43e23de431441f47f1281c9a4f482978fde7cd94", + "fields": { + "code_commune_insee": "27144", + "nom_de_la_commune": "CHAMPIGNY LA FUTELAYE", + "code_postal": "27220", + "coordonnees_gps": [ + 48.8696186987, + 1.30067720632 + ], + "libelle_d_acheminement": "CHAMPIGNY LA FUTELAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30067720632, + 48.8696186987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd0ba60ef0d9bc04fb572f536b5333edf21d112e", + "fields": { + "code_commune_insee": "27146", + "nom_de_la_commune": "LA CHAPELLE BAYVEL", + "code_postal": "27260", + "coordonnees_gps": [ + 49.2808661732, + 0.406356152617 + ], + "libelle_d_acheminement": "LA CHAPELLE BAYVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.406356152617, + 49.2808661732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01a3880812ecf03b324f545b687b2851627be4a5", + "fields": { + "code_commune_insee": "27147", + "nom_de_la_commune": "LA CHAPELLE DU BOIS DES FAULX", + "code_postal": "27930", + "coordonnees_gps": [ + 49.1080526721, + 1.17181025822 + ], + "libelle_d_acheminement": "LA CHAPELLE DU BOIS DES FAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17181025822, + 49.1080526721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13ab9fedc60f055aa1fb77801ceccc02675bc69e", + "fields": { + "code_commune_insee": "27163", + "nom_de_la_commune": "COLLETOT", + "code_postal": "27500", + "coordonnees_gps": [ + 49.3499536771, + 0.623964655423 + ], + "libelle_d_acheminement": "COLLETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.623964655423, + 49.3499536771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d52ffc7d1fd4ebac35b3964136bc7b77c071d976", + "fields": { + "code_commune_insee": "27168", + "nom_de_la_commune": "CONNELLES", + "code_postal": "27430", + "coordonnees_gps": [ + 49.2604810004, + 1.27619983824 + ], + "libelle_d_acheminement": "CONNELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27619983824, + 49.2604810004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0d4ea6f5cfc3c5a3427cd2e8206b7ebf9d77de3", + "fields": { + "code_commune_insee": "27170", + "nom_de_la_commune": "CORMEILLES", + "code_postal": "27260", + "coordonnees_gps": [ + 49.2517321161, + 0.384551732765 + ], + "libelle_d_acheminement": "CORMEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.384551732765, + 49.2517321161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18558033886b179af706da1465f4758491f04d86", + "fields": { + "code_commune_insee": "27174", + "nom_de_la_commune": "CORNEVILLE SUR RISLE", + "code_postal": "27500", + "coordonnees_gps": [ + 49.3406636029, + 0.598502676262 + ], + "libelle_d_acheminement": "CORNEVILLE SUR RISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.598502676262, + 49.3406636029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "150e35c088186acb0436b3f7adebf11d9eb16665", + "fields": { + "code_commune_insee": "27181", + "nom_de_la_commune": "COURDEMANCHE", + "code_postal": "27320", + "coordonnees_gps": [ + 48.8022859071, + 1.27664231305 + ], + "libelle_d_acheminement": "COURDEMANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27664231305, + 48.8022859071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59980134bed57124e1801b21976106e31dcf58f9", + "fields": { + "code_commune_insee": "27188", + "nom_de_la_commune": "CRIQUEBEUF SUR SEINE", + "code_postal": "27340", + "coordonnees_gps": [ + 49.2931111781, + 1.10157387414 + ], + "libelle_d_acheminement": "CRIQUEBEUF SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10157387414, + 49.2931111781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be5d5273e211f29e870e1e6591a8eebaa0c5ffb1", + "fields": { + "code_commune_insee": "27193", + "nom_de_la_commune": "CROTH", + "code_postal": "27530", + "coordonnees_gps": [ + 48.8507405664, + 1.36816168904 + ], + "libelle_d_acheminement": "CROTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36816168904, + 48.8507405664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a26c0f720422bbe2bfeb5b2711a0963824eb1e1", + "fields": { + "ligne_5": "BOISSY SUR DAMVILLE", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27240", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6a338068d100acaaceef90a6eff57ef81e844e0", + "fields": { + "ligne_5": "BUIS SUR DAMVILLE", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27240", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf0d3834bc7f19a014e3eb461eb2162331b368fc", + "fields": { + "ligne_5": "GOUVILLE", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27240", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b263267c581d3c51f15994e4ec8082ff57e950ef", + "fields": { + "ligne_5": "GRANDVILLIERS", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27240", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d546456e3f1bce2d7c0ff3885c7efeb42871eab1", + "fields": { + "ligne_5": "LES MINIERES", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27240", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea6a6653d56fa37da75f90cae8917d49b0af475f", + "fields": { + "ligne_5": "ROMAN", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27240", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d951af7946c938bf8d4f3c061a868494c37a025c", + "fields": { + "code_commune_insee": "27205", + "nom_de_la_commune": "DOUVILLE SUR ANDELLE", + "code_postal": "27380", + "coordonnees_gps": [ + 49.3329198858, + 1.30756774405 + ], + "libelle_d_acheminement": "DOUVILLE SUR ANDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30756774405, + 49.3329198858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb248cb80688448aded072d1656756ff214d841f", + "fields": { + "ligne_5": "CAHAIGNES", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27420", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc7e8004a8e30ac72527c36764486f5dede9d9cc", + "fields": { + "ligne_5": "CANTIERS", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27420", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "374474d547497cf6dba924c4a423cf19b3b17b49", + "fields": { + "code_commune_insee": "27219", + "nom_de_la_commune": "EPEGARD", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1824523923, + 0.874988545882 + ], + "libelle_d_acheminement": "EPEGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.874988545882, + 49.1824523923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbafe16a42a3b58a23a778c0716034e9c63ce7ad", + "fields": { + "code_commune_insee": "27224", + "nom_de_la_commune": "EPREVILLE PRES LE NEUBOURG", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1295509765, + 0.876279430703 + ], + "libelle_d_acheminement": "EPREVILLE PRES LE NEUBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.876279430703, + 49.1295509765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd34de1b678573bbb78f0f0a6788aa83a3d94f18", + "fields": { + "code_commune_insee": "27229", + "nom_de_la_commune": "EVREUX", + "code_postal": "27000", + "coordonnees_gps": [ + 49.02015421, + 1.14164412464 + ], + "libelle_d_acheminement": "EVREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14164412464, + 49.02015421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "875c948db47d09c0b65457471da65280febf8054", + "fields": { + "code_commune_insee": "27231", + "nom_de_la_commune": "FAINS", + "code_postal": "27120", + "coordonnees_gps": [ + 48.99686242, + 1.38487242468 + ], + "libelle_d_acheminement": "FAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38487242468, + 48.99686242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66e72017876acc65ad6706c0d7984341496ca0de", + "fields": { + "code_commune_insee": "27233", + "nom_de_la_commune": "FATOUVILLE GRESTAIN", + "code_postal": "27210", + "coordonnees_gps": [ + 49.4132819634, + 0.332433959098 + ], + "libelle_d_acheminement": "FATOUVILLE GRESTAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.332433959098, + 49.4132819634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8772db4b1fa6b45d2b6714ee23cf6db6b6d2d1b3", + "fields": { + "code_commune_insee": "27234", + "nom_de_la_commune": "FAUVILLE", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0242697215, + 1.19907051079 + ], + "libelle_d_acheminement": "FAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19907051079, + 49.0242697215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5655d1357e2ec100eb5b8ea94569a425652ad689", + "fields": { + "code_commune_insee": "27243", + "nom_de_la_commune": "FIQUEFLEUR EQUAINVILLE", + "code_postal": "27210", + "coordonnees_gps": [ + 49.3985981569, + 0.316862083899 + ], + "libelle_d_acheminement": "FIQUEFLEUR EQUAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.316862083899, + 49.3985981569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7719a9c27388af8f72702340e2b0170c892a76ef", + "fields": { + "code_commune_insee": "27246", + "nom_de_la_commune": "FLEURY SUR ANDELLE", + "code_postal": "27380", + "coordonnees_gps": [ + 49.3635499787, + 1.35185720942 + ], + "libelle_d_acheminement": "FLEURY SUR ANDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35185720942, + 49.3635499787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d0fe793ba44069a3504308c49feab6b221d62c1", + "fields": { + "code_commune_insee": "27259", + "nom_de_la_commune": "FOUCRAINVILLE", + "code_postal": "27220", + "coordonnees_gps": [ + 48.9274620915, + 1.31992754273 + ], + "libelle_d_acheminement": "FOUCRAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31992754273, + 48.9274620915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95a4ea31a64ba4b02dce8b1b735696cce2c02c1a", + "fields": { + "code_commune_insee": "27273", + "nom_de_la_commune": "GADENCOURT", + "code_postal": "27120", + "coordonnees_gps": [ + 48.9842332257, + 1.40341807937 + ], + "libelle_d_acheminement": "GADENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40341807937, + 48.9842332257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d7f02930395586d5800cc1f592a66ce671039b9", + "fields": { + "code_commune_insee": "27276", + "nom_de_la_commune": "GAMACHES EN VEXIN", + "code_postal": "27150", + "coordonnees_gps": [ + 49.2664796169, + 1.61611517 + ], + "libelle_d_acheminement": "GAMACHES EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61611517, + 49.2664796169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b1350832557968dfb12ca7f9e1ae362f29ae856", + "fields": { + "ligne_5": "QUESSIGNY", + "code_commune_insee": "27277", + "libelle_d_acheminement": "LA BARONNIE", + "code_postal": "27220", + "nom_de_la_commune": "LA BARONNIE", + "coordonnees_gps": [ + 48.9496964914, + 1.25678069483 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25678069483, + 48.9496964914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec7a1c82fb52615ba3ed811b7154034cf961bd5c", + "fields": { + "ligne_5": "GAILLARDBOIS CRESSENVILLE", + "code_commune_insee": "27294", + "libelle_d_acheminement": "VAL D ORGER", + "code_postal": "27440", + "nom_de_la_commune": "VAL D ORGER", + "coordonnees_gps": [ + 49.3450350135, + 1.3678564295 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3678564295, + 49.3450350135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c8a72e72bdb9b099a9d2779734244e914d2eb5f", + "fields": { + "code_commune_insee": "27298", + "nom_de_la_commune": "GRAVERON SEMERVILLE", + "code_postal": "27110", + "coordonnees_gps": [ + 49.0949364148, + 0.966325721696 + ], + "libelle_d_acheminement": "GRAVERON SEMERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.966325721696, + 49.0949364148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97e324c6822a6ab1f71a465e5b9f3adc8de934b7", + "fields": { + "code_commune_insee": "27306", + "nom_de_la_commune": "GUICHAINVILLE", + "code_postal": "27930", + "coordonnees_gps": [ + 48.9802791155, + 1.17901944848 + ], + "libelle_d_acheminement": "GUICHAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17901944848, + 48.9802791155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8c504b22cd4a536c8c7f072a27f2a74dc7ecd7a", + "fields": { + "code_commune_insee": "27309", + "nom_de_la_commune": "L HABIT", + "code_postal": "27220", + "coordonnees_gps": [ + 48.8748495048, + 1.34772656122 + ], + "libelle_d_acheminement": "L HABIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34772656122, + 48.8748495048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fb7d75642ee83199855b2ce8994d4b2a52f3941", + "fields": { + "code_commune_insee": "27311", + "nom_de_la_commune": "HARCOURT", + "code_postal": "27800", + "coordonnees_gps": [ + 49.1659154983, + 0.776027385524 + ], + "libelle_d_acheminement": "HARCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.776027385524, + 49.1659154983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7c8f23340153d9e3a3120bcf45b8edf1c3b806a", + "fields": { + "code_commune_insee": "27317", + "nom_de_la_commune": "LA HAYE AUBREE", + "code_postal": "27350", + "coordonnees_gps": [ + 49.394154606, + 0.693346519486 + ], + "libelle_d_acheminement": "LA HAYE AUBREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.693346519486, + 49.394154606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc4a19ce588cd453ad6c7b803638f31b3d1c7638", + "fields": { + "code_commune_insee": "27320", + "nom_de_la_commune": "LA HAYE DU THEIL", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2376362253, + 0.875327964748 + ], + "libelle_d_acheminement": "LA HAYE DU THEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.875327964748, + 49.2376362253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a877cfa23625bb1ce325dcbb6ef480aeee6fa2b", + "fields": { + "code_commune_insee": "27321", + "nom_de_la_commune": "LA HAYE LE COMTE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.1964315375, + 1.13412648905 + ], + "libelle_d_acheminement": "LA HAYE LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13412648905, + 49.1964315375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c28c7a228999e057ff1bdbea62c63100aef68cd9", + "fields": { + "code_commune_insee": "27324", + "nom_de_la_commune": "HEBECOURT", + "code_postal": "27150", + "coordonnees_gps": [ + 49.3572259501, + 1.7219611931 + ], + "libelle_d_acheminement": "HEBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7219611931, + 49.3572259501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a07c4133bdd16fc621f26f8939393c74cba1b4fb", + "fields": { + "code_commune_insee": "27325", + "nom_de_la_commune": "HECMANVILLE", + "code_postal": "27800", + "coordonnees_gps": [ + 49.1726011508, + 0.66363488889 + ], + "libelle_d_acheminement": "HECMANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66363488889, + 49.1726011508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f224940855ceea73ad5c36664fa5e63cd776678", + "fields": { + "code_commune_insee": "27327", + "nom_de_la_commune": "HECTOMARE", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1927415084, + 0.944362009841 + ], + "libelle_d_acheminement": "HECTOMARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.944362009841, + 49.1927415084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a2e9834fe29fb4eb8997e39f79a13eac801d348", + "fields": { + "code_commune_insee": "27329", + "nom_de_la_commune": "HENNEZIS", + "code_postal": "27700", + "coordonnees_gps": [ + 49.1906897417, + 1.45636250544 + ], + "libelle_d_acheminement": "HENNEZIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45636250544, + 49.1906897417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf97095176fda65316a32b088d1609b8d01130c2", + "fields": { + "ligne_5": "HEUBECOURT", + "code_commune_insee": "27331", + "libelle_d_acheminement": "HEUBECOURT HARICOURT", + "code_postal": "27630", + "nom_de_la_commune": "HEUBECOURT HARICOURT", + "coordonnees_gps": [ + 49.1301336149, + 1.56459912242 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56459912242, + 49.1301336149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eb5916449b737680fad4ad30f488be10322f24f", + "fields": { + "code_commune_insee": "27332", + "nom_de_la_commune": "HEUDEBOUVILLE", + "code_postal": "27600", + "coordonnees_gps": [ + 49.1927471606, + 1.23713234517 + ], + "libelle_d_acheminement": "HEUDEBOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23713234517, + 49.1927471606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4a52e876d1ac32c95536a58efee8b0c8b0bc34b", + "fields": { + "code_commune_insee": "27338", + "nom_de_la_commune": "LES HOGUES", + "code_postal": "27910", + "coordonnees_gps": [ + 49.4202530059, + 1.40791828171 + ], + "libelle_d_acheminement": "LES HOGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40791828171, + 49.4202530059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fb1165055876aa8edef86efb17675123af21484", + "fields": { + "code_commune_insee": "27342", + "nom_de_la_commune": "HOUETTEVILLE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.1293925185, + 1.09038074785 + ], + "libelle_d_acheminement": "HOUETTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09038074785, + 49.1293925185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88da33702f9827986f08e1395024b7675570c8fe", + "fields": { + "code_commune_insee": "27343", + "nom_de_la_commune": "HOULBEC COCHEREL", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0645423479, + 1.36125674229 + ], + "libelle_d_acheminement": "HOULBEC COCHEREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36125674229, + 49.0645423479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ccc9b56325d330996c0a7276697c386c6013955", + "fields": { + "code_commune_insee": "27366", + "nom_de_la_commune": "LETTEGUIVES", + "code_postal": "27910", + "coordonnees_gps": [ + 49.4216840077, + 1.32704878095 + ], + "libelle_d_acheminement": "LETTEGUIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32704878095, + 49.4216840077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7f48cf5ad240dc5fa6c320d6912d0fd05704890", + "fields": { + "code_commune_insee": "27367", + "nom_de_la_commune": "LIEUREY", + "code_postal": "27560", + "coordonnees_gps": [ + 49.2331857585, + 0.500797947975 + ], + "libelle_d_acheminement": "LIEUREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.500797947975, + 49.2331857585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75579053a879cc7948e11644be82bdd7275d3c13", + "fields": { + "code_commune_insee": "27371", + "nom_de_la_commune": "LIVET SUR AUTHOU", + "code_postal": "27800", + "coordonnees_gps": [ + 49.2288510022, + 0.654737767065 + ], + "libelle_d_acheminement": "LIVET SUR AUTHOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.654737767065, + 49.2288510022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2c32556d4a12d0a27c8a8c0efc44ab70da8cc6a", + "fields": { + "code_commune_insee": "27380", + "nom_de_la_commune": "MALLEVILLE SUR LE BEC", + "code_postal": "27800", + "coordonnees_gps": [ + 49.2418789785, + 0.745972299525 + ], + "libelle_d_acheminement": "MALLEVILLE SUR LE BEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.745972299525, + 49.2418789785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ae6580786a2d83edd69b3b722abe96894b7675c", + "fields": { + "code_commune_insee": "27383", + "nom_de_la_commune": "MANDRES", + "code_postal": "27130", + "coordonnees_gps": [ + 48.752840487, + 0.85124788629 + ], + "libelle_d_acheminement": "MANDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.85124788629, + 48.752840487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd98d9d7e8186feb4ea53989ab5387d8c6af8aba", + "fields": { + "code_commune_insee": "27385", + "nom_de_la_commune": "MANNEVILLE SUR RISLE", + "code_postal": "27500", + "coordonnees_gps": [ + 49.3610819827, + 0.545943626497 + ], + "libelle_d_acheminement": "MANNEVILLE SUR RISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.545943626497, + 49.3610819827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5aea0472d8aaf460b8cfe5fdced2998e1ccba6b1", + "fields": { + "code_commune_insee": "27388", + "nom_de_la_commune": "MARAIS VERNIER", + "code_postal": "27680", + "coordonnees_gps": [ + 49.4380276828, + 0.464318330946 + ], + "libelle_d_acheminement": "MARAIS VERNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.464318330946, + 49.4380276828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8873698177eb68722689615cc82681eec32747e5", + "fields": { + "code_commune_insee": "27390", + "nom_de_la_commune": "MARCILLY LA CAMPAGNE", + "code_postal": "27320", + "coordonnees_gps": [ + 48.8270540549, + 1.18747667453 + ], + "libelle_d_acheminement": "MARCILLY LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18747667453, + 48.8270540549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38b205427f299acf7b745ab9a7d9e2c6384732dd", + "fields": { + "code_commune_insee": "27392", + "nom_de_la_commune": "MARTAGNY", + "code_postal": "27150", + "coordonnees_gps": [ + 49.3955328477, + 1.6577250335 + ], + "libelle_d_acheminement": "MARTAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6577250335, + 49.3955328477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34dadab2c41006c48a5f76de5aa128a8709f5cae", + "fields": { + "code_commune_insee": "27393", + "nom_de_la_commune": "MARTAINVILLE", + "code_postal": "27210", + "coordonnees_gps": [ + 49.3027207068, + 0.386116710697 + ], + "libelle_d_acheminement": "MARTAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.386116710697, + 49.3027207068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee9e15fdbdb8793a153782e1a5cf8602a3170845", + "fields": { + "code_commune_insee": "27394", + "nom_de_la_commune": "MARTOT", + "code_postal": "27340", + "coordonnees_gps": [ + 49.2780639581, + 1.07107069967 + ], + "libelle_d_acheminement": "MARTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07107069967, + 49.2780639581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5169ad027d70d84c3f6cdfa98f21263d34411724", + "fields": { + "code_commune_insee": "27399", + "nom_de_la_commune": "MERCEY", + "code_postal": "27950", + "coordonnees_gps": [ + 49.0825576267, + 1.39866609762 + ], + "libelle_d_acheminement": "MERCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39866609762, + 49.0825576267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27b48f0b36fa401fc25b5f9b106fc153ba2893e5", + "fields": { + "code_commune_insee": "27410", + "nom_de_la_commune": "MISEREY", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0197062779, + 1.26108481938 + ], + "libelle_d_acheminement": "MISEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26108481938, + 49.0197062779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8602ba28e173a8cb731566b459939824b4e06e7", + "fields": { + "code_commune_insee": "27413", + "nom_de_la_commune": "MONTFORT SUR RISLE", + "code_postal": "27290", + "coordonnees_gps": [ + 49.2945278867, + 0.670560456278 + ], + "libelle_d_acheminement": "MONTFORT SUR RISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.670560456278, + 49.2945278867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ef08939d4613e7ab3c436d01dedd98d7637e5a1", + "fields": { + "code_commune_insee": "27414", + "nom_de_la_commune": "MONTREUIL L ARGILLE", + "code_postal": "27390", + "coordonnees_gps": [ + 48.9396490466, + 0.468484360386 + ], + "libelle_d_acheminement": "MONTREUIL L ARGILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.468484360386, + 48.9396490466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b1a6e41aec3c38357576d31edea2bbd79a1bb1b", + "fields": { + "ligne_5": "JOUVEAUX", + "code_commune_insee": "27415", + "libelle_d_acheminement": "MORAINVILLE JOUVEAUX", + "code_postal": "27260", + "nom_de_la_commune": "MORAINVILLE JOUVEAUX", + "coordonnees_gps": [ + 49.2227027964, + 0.443976742663 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.443976742663, + 49.2227027964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e8f4d81e466408ca1a0ec29aa473ec30c01c187", + "fields": { + "code_commune_insee": "27424", + "nom_de_la_commune": "NAGEL SEEZ MESNIL", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9247473098, + 0.940596231036 + ], + "libelle_d_acheminement": "NAGEL SEEZ MESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.940596231036, + 48.9247473098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43e29351cb3eea76668404cf5d29584f10f252d5", + "fields": { + "code_commune_insee": "27430", + "nom_de_la_commune": "LA NEUVE GRANGE", + "code_postal": "27150", + "coordonnees_gps": [ + 49.3599472523, + 1.5584583469 + ], + "libelle_d_acheminement": "LA NEUVE GRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5584583469, + 49.3599472523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "465f35f78bc9c7aa2144a9b6fd79a58be770faee", + "fields": { + "code_commune_insee": "27436", + "nom_de_la_commune": "NOGENT LE SEC", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9205199926, + 1.00453898439 + ], + "libelle_d_acheminement": "NOGENT LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00453898439, + 48.9205199926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e25260784514eb57cb7be95d2a30b26356f1e597", + "fields": { + "code_commune_insee": "27439", + "nom_de_la_commune": "NORMANVILLE", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0725184712, + 1.16198827821 + ], + "libelle_d_acheminement": "NORMANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16198827821, + 49.0725184712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a929e1a43689b34dc969a7a30f225f0e527109d", + "fields": { + "code_commune_insee": "27441", + "nom_de_la_commune": "NOTRE DAME D EPINE", + "code_postal": "27800", + "coordonnees_gps": [ + 49.1946525177, + 0.597493274128 + ], + "libelle_d_acheminement": "NOTRE DAME D EPINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.597493274128, + 49.1946525177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3246a20a75c50a7d027e18d7e32ca8ec1bc94a5", + "fields": { + "code_commune_insee": "27442", + "nom_de_la_commune": "NOTRE DAME DU HAMEL", + "code_postal": "27390", + "coordonnees_gps": [ + 48.8923200836, + 0.509886353695 + ], + "libelle_d_acheminement": "NOTRE DAME DU HAMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.509886353695, + 48.8923200836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0382f7b0040cde577b7a601d27314c0a1bf576c5", + "fields": { + "ligne_5": "ST AQUILIN DE PACY", + "code_commune_insee": "27448", + "libelle_d_acheminement": "PACY SUR EURE", + "code_postal": "27120", + "nom_de_la_commune": "PACY SUR EURE", + "coordonnees_gps": [ + 49.0221961311, + 1.39950768038 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39950768038, + 49.0221961311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95e5a377f69adf9d095dc4d5677200bea46f762c", + "fields": { + "code_commune_insee": "27451", + "nom_de_la_commune": "PARVILLE", + "code_postal": "27180", + "coordonnees_gps": [ + 49.031891922, + 1.09222136846 + ], + "libelle_d_acheminement": "PARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09222136846, + 49.031891922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bf29df68eca7b9a7f9658c3e43b3a66cf2e1e7e", + "fields": { + "code_commune_insee": "27456", + "nom_de_la_commune": "PINTERVILLE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.1918740939, + 1.19163426958 + ], + "libelle_d_acheminement": "PINTERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19163426958, + 49.1918740939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31c80cba52c85ff587944e04432fb491b89dd697", + "fields": { + "code_commune_insee": "27465", + "nom_de_la_commune": "LE PLESSIS HEBERT", + "code_postal": "27120", + "coordonnees_gps": [ + 48.9816522888, + 1.36285630147 + ], + "libelle_d_acheminement": "LE PLESSIS HEBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36285630147, + 48.9816522888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8256f5892d2f515157a9c52236abf6c555d854d0", + "fields": { + "code_commune_insee": "27467", + "nom_de_la_commune": "PONT AUDEMER", + "code_postal": "27500", + "coordonnees_gps": [ + 49.3463869637, + 0.533874716445 + ], + "libelle_d_acheminement": "PONT AUDEMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.533874716445, + 49.3463869637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffb911e330fde2b19d843544b10cfe6f51040f8c", + "fields": { + "code_commune_insee": "27476", + "nom_de_la_commune": "LES PREAUX", + "code_postal": "27500", + "coordonnees_gps": [ + 49.3281307997, + 0.480531070543 + ], + "libelle_d_acheminement": "LES PREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.480531070543, + 49.3281307997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c26836fb524ee585e5efb2fc9142e901125fcb6c", + "fields": { + "code_commune_insee": "27490", + "nom_de_la_commune": "RICHEVILLE", + "code_postal": "27420", + "coordonnees_gps": [ + 49.2579692139, + 1.53784793468 + ], + "libelle_d_acheminement": "RICHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53784793468, + 49.2579692139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae39a95a8b9fee2453143bcde0465db399955236", + "fields": { + "code_commune_insee": "27496", + "nom_de_la_commune": "ROSAY SUR LIEURE", + "code_postal": "27790", + "coordonnees_gps": [ + 49.3746388684, + 1.42794431764 + ], + "libelle_d_acheminement": "ROSAY SUR LIEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42794431764, + 49.3746388684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd209839a12b3661500241b124ae5bdb9a56bc1b", + "fields": { + "code_commune_insee": "27512", + "nom_de_la_commune": "ST AUBIN DE SCELLON", + "code_postal": "27230", + "coordonnees_gps": [ + 49.1770428434, + 0.47331713113 + ], + "libelle_d_acheminement": "ST AUBIN DE SCELLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47331713113, + 49.1770428434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0d94d24aff86815535b1d2b366ef54283b527e5", + "fields": { + "code_commune_insee": "27514", + "nom_de_la_commune": "ST AUBIN DU THENNEY", + "code_postal": "27270", + "coordonnees_gps": [ + 49.0152361084, + 0.494315401677 + ], + "libelle_d_acheminement": "ST AUBIN DU THENNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.494315401677, + 49.0152361084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9b4917dab36979a9046dffb6f5dc97f6d38fec1", + "fields": { + "ligne_5": "ST QUENTIN DES ISLES", + "code_commune_insee": "27516", + "libelle_d_acheminement": "TREIS SANTS EN OUCHE", + "code_postal": "27270", + "nom_de_la_commune": "TREIS SANTS EN OUCHE", + "coordonnees_gps": [ + 49.0593510154, + 0.611660740223 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.611660740223, + 49.0593510154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c00d1f6740756b519addaed0b2955f9ba9a8617", + "fields": { + "ligne_5": "ST PAER", + "code_commune_insee": "27533", + "libelle_d_acheminement": "ST DENIS LE FERMENT", + "code_postal": "27140", + "nom_de_la_commune": "ST DENIS LE FERMENT", + "coordonnees_gps": [ + 49.3218230563, + 1.71779088308 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71779088308, + 49.3218230563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "911c6dbbbc3f9bcd215d1600d7d01060b9ba8a1e", + "fields": { + "code_commune_insee": "27550", + "nom_de_la_commune": "ST GREGOIRE DU VIEVRE", + "code_postal": "27450", + "coordonnees_gps": [ + 49.2451494234, + 0.625953044218 + ], + "libelle_d_acheminement": "ST GREGOIRE DU VIEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.625953044218, + 49.2451494234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "807b342b1a1737b8fc4f60ed4c386b33fbfd7484", + "fields": { + "ligne_5": "LA CHAPELLE REANVILLE", + "code_commune_insee": "27554", + "libelle_d_acheminement": "LA CHAPELLE LONGUEVILLE", + "code_postal": "27950", + "nom_de_la_commune": "LA CHAPELLE LONGUEVILLE", + "coordonnees_gps": [ + 49.1061858744, + 1.4332609397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4332609397, + 49.1061858744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b99332b45f127cc92bdcf3c829019c2691ca795", + "fields": { + "code_commune_insee": "27555", + "nom_de_la_commune": "ST LAURENT DES BOIS", + "code_postal": "27220", + "coordonnees_gps": [ + 48.8459827261, + 1.319178626 + ], + "libelle_d_acheminement": "ST LAURENT DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.319178626, + 48.8459827261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8492c6b0285333a577a3ab806b1b5f5740c8dab", + "fields": { + "code_commune_insee": "27557", + "nom_de_la_commune": "ST LEGER DE ROTES", + "code_postal": "27300", + "coordonnees_gps": [ + 49.1126606736, + 0.662290539561 + ], + "libelle_d_acheminement": "ST LEGER DE ROTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.662290539561, + 49.1126606736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2ed961d0227b0159aa371e8ea3ca7dc7b1e95da", + "fields": { + "code_commune_insee": "27568", + "nom_de_la_commune": "STE MARTHE", + "code_postal": "27190", + "coordonnees_gps": [ + 48.957887614, + 0.881178066443 + ], + "libelle_d_acheminement": "STE MARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.881178066443, + 48.957887614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "739823e781f6988519394eca2030dafbb7b1e45d", + "fields": { + "ligne_5": "DAME MARIE", + "code_commune_insee": "27578", + "libelle_d_acheminement": "STE MARIE D ATTEZ", + "code_postal": "27160", + "nom_de_la_commune": "STE MARIE D ATTEZ", + "coordonnees_gps": [ + 48.7957619883, + 0.943848248614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.943848248614, + 48.7957619883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "913f29201ede9dfb2a898227032cee91fa93da51", + "fields": { + "code_commune_insee": "27580", + "nom_de_la_commune": "ST OUEN DE THOUBERVILLE", + "code_postal": "27310", + "coordonnees_gps": [ + 49.3490825032, + 0.895681824857 + ], + "libelle_d_acheminement": "ST OUEN DE THOUBERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.895681824857, + 49.3490825032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b83f887fa6484b89bd5dbdf29a2105ba986c6ca", + "fields": { + "code_commune_insee": "27593", + "nom_de_la_commune": "ST PIERRE DES FLEURS", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2492717737, + 0.962946697912 + ], + "libelle_d_acheminement": "ST PIERRE DES FLEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.962946697912, + 49.2492717737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3f3e2bb2b712833b1b1c83ec1d4f34a08d9f8be", + "fields": { + "code_commune_insee": "27597", + "nom_de_la_commune": "ST PIERRE DU VAL", + "code_postal": "27210", + "coordonnees_gps": [ + 49.390892944, + 0.366485992919 + ], + "libelle_d_acheminement": "ST PIERRE DU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.366485992919, + 49.390892944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "324f4f099e0d87e8753c5b6ac5b64545ac11afb8", + "fields": { + "code_commune_insee": "27601", + "nom_de_la_commune": "ST SAMSON DE LA ROQUE", + "code_postal": "27680", + "coordonnees_gps": [ + 49.42576562, + 0.42505003229 + ], + "libelle_d_acheminement": "ST SAMSON DE LA ROQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.42505003229, + 49.42576562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cac12c727d8fef5de51dd4058a2dc3ba90050ae", + "fields": { + "code_commune_insee": "27605", + "nom_de_la_commune": "ST SYLVESTRE DE CORMEILLES", + "code_postal": "27260", + "coordonnees_gps": [ + 49.2473078097, + 0.420897481485 + ], + "libelle_d_acheminement": "ST SYLVESTRE DE CORMEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.420897481485, + 49.2473078097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b6c7f00055b71fe29a043c421f090262e710944", + "fields": { + "code_commune_insee": "27608", + "nom_de_la_commune": "ST VICTOR DE CHRETIENVILLE", + "code_postal": "27300", + "coordonnees_gps": [ + 49.0634247621, + 0.513495017507 + ], + "libelle_d_acheminement": "ST VICTOR DE CHRETIENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.513495017507, + 49.0634247621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9197fcec87b005d2f9f5af4d877473c535dfbed4", + "fields": { + "code_commune_insee": "27613", + "nom_de_la_commune": "ST VINCENT DU BOULAY", + "code_postal": "27230", + "coordonnees_gps": [ + 49.1009242479, + 0.489885896124 + ], + "libelle_d_acheminement": "ST VINCENT DU BOULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.489885896124, + 49.1009242479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b393f9245519d7747499edab32e735d45f5a4867", + "fields": { + "code_commune_insee": "27620", + "nom_de_la_commune": "SELLES", + "code_postal": "27500", + "coordonnees_gps": [ + 49.30116779, + 0.488856322247 + ], + "libelle_d_acheminement": "SELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.488856322247, + 49.30116779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d3c6d7f64b45999894f96eb1c4ed6ca49ebbc41", + "fields": { + "code_commune_insee": "27632", + "nom_de_la_commune": "LE THIL", + "code_postal": "27150", + "coordonnees_gps": [ + 49.3074274016, + 1.55522758401 + ], + "libelle_d_acheminement": "LE THIL EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55522758401, + 49.3074274016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f27ad7a607ef84efeec20f497eca016d159e2e5", + "fields": { + "code_commune_insee": "27643", + "nom_de_la_commune": "TILLIERES SUR AVRE", + "code_postal": "27570", + "coordonnees_gps": [ + 48.7611224544, + 1.02819870414 + ], + "libelle_d_acheminement": "TILLIERES SUR AVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02819870414, + 48.7611224544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c262df9487adf670100f9ce7b6fc0ae4805dd5e6", + "fields": { + "code_commune_insee": "27645", + "nom_de_la_commune": "TOCQUEVILLE", + "code_postal": "27500", + "coordonnees_gps": [ + 49.4088397191, + 0.613448165873 + ], + "libelle_d_acheminement": "TOCQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.613448165873, + 49.4088397191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e22ead08731d19895e02cb8803305862fbc6b80d", + "fields": { + "code_commune_insee": "27646", + "nom_de_la_commune": "LE TORPT", + "code_postal": "27210", + "coordonnees_gps": [ + 49.3369627726, + 0.380725864104 + ], + "libelle_d_acheminement": "LE TORPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.380725864104, + 49.3369627726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ae1605f872d835ac0e58b56b6514aeb3e8b5f8f", + "fields": { + "code_commune_insee": "27654", + "nom_de_la_commune": "TOURVILLE LA CAMPAGNE", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2254432812, + 0.899258865151 + ], + "libelle_d_acheminement": "TOURVILLE LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.899258865151, + 49.2254432812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "217ad114c7fc7a0208ac894b4e382f23b1826f26", + "fields": { + "code_commune_insee": "27658", + "nom_de_la_commune": "LE TREMBLAY OMONVILLE", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1209729922, + 0.91472011137 + ], + "libelle_d_acheminement": "LE TREMBLAY OMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91472011137, + 49.1209729922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbd58bafc96d119bfcfec24da27c9ecfd54e6df2", + "fields": { + "code_commune_insee": "27659", + "nom_de_la_commune": "LA TRINITE", + "code_postal": "27930", + "coordonnees_gps": [ + 48.9869014631, + 1.23675599456 + ], + "libelle_d_acheminement": "LA TRINITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23675599456, + 48.9869014631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cd451d5416d71f67405b6ec1e7b0519eaf98a08", + "fields": { + "code_commune_insee": "27664", + "nom_de_la_commune": "LE TRONQUAY", + "code_postal": "27480", + "coordonnees_gps": [ + 49.4375421734, + 1.45434227209 + ], + "libelle_d_acheminement": "LE TRONQUAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45434227209, + 49.4375421734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2307153d6120263f8127aced49756d501f69ae22", + "fields": { + "code_commune_insee": "27669", + "nom_de_la_commune": "VALLETOT", + "code_postal": "27350", + "coordonnees_gps": [ + 49.3668015037, + 0.612104316061 + ], + "libelle_d_acheminement": "VALLETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.612104316061, + 49.3668015037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e680d38afb5356a621dfbc18f413e698eaa1755", + "fields": { + "ligne_5": "BERNIERES SUR SEINE", + "code_commune_insee": "27676", + "libelle_d_acheminement": "LES TROIS LACS", + "code_postal": "27700", + "nom_de_la_commune": "LES TROIS LACS", + "coordonnees_gps": [ + 49.2012200794, + 1.29594833053 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29594833053, + 49.2012200794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f6f247f2ed2570bfba18e25b3f1d2c7826aeaa1", + "fields": { + "code_commune_insee": "27681", + "nom_de_la_commune": "VERNON", + "code_postal": "27200", + "coordonnees_gps": [ + 49.0879728821, + 1.48501282787 + ], + "libelle_d_acheminement": "VERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48501282787, + 49.0879728821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0c8608988d4b128e4db645daf98426da2386b3e", + "fields": { + "ligne_5": "COULONGES", + "code_commune_insee": "27693", + "libelle_d_acheminement": "SYLVAINS LES MOULINS", + "code_postal": "27240", + "nom_de_la_commune": "SYLVAINS LES MOULINS", + "coordonnees_gps": [ + 48.9028184134, + 1.10269659898 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10269659898, + 48.9028184134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b5cc082d65d96afe8d41127ee7c0964ae2ad07f", + "fields": { + "code_commune_insee": "28003", + "nom_de_la_commune": "ALLAINVILLE", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7214134233, + 1.29474223836 + ], + "libelle_d_acheminement": "ALLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29474223836, + 48.7214134233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82cc80055dc20be4b67d645b0f9b3a9203eca51c", + "fields": { + "code_commune_insee": "28007", + "nom_de_la_commune": "ANET", + "code_postal": "28260", + "coordonnees_gps": [ + 48.8531068723, + 1.44282251415 + ], + "libelle_d_acheminement": "ANET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44282251415, + 48.8531068723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9600ae289c5f70f5754e039de240ac37988ce82", + "fields": { + "code_commune_insee": "28010", + "nom_de_la_commune": "ARGENVILLIERS", + "code_postal": "28480", + "coordonnees_gps": [ + 48.2764030103, + 0.969137990852 + ], + "libelle_d_acheminement": "ARGENVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.969137990852, + 48.2764030103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d1a8dbfb3b7d73018fffeca9fc5a71a9a181040", + "fields": { + "code_commune_insee": "28014", + "nom_de_la_commune": "AUNAY SOUS CRECY", + "code_postal": "28500", + "coordonnees_gps": [ + 48.6575767516, + 1.30387542544 + ], + "libelle_d_acheminement": "AUNAY SOUS CRECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30387542544, + 48.6575767516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0adfa0eb09c41834ab7aca6a3c94af1028fc538", + "fields": { + "ligne_5": "ST SYMPHORIEN LE CHATEAU", + "code_commune_insee": "28015", + "libelle_d_acheminement": "AUNEAU BLEURY ST SYMPHORIEN", + "code_postal": "28700", + "nom_de_la_commune": "AUNEAU BLEURY ST SYMPHORIEN", + "coordonnees_gps": [ + 48.4694338029, + 1.77316730051 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77316730051, + 48.4694338029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4be44d5bc9384c933b7076b453d9ac45dcd9c385", + "fields": { + "code_commune_insee": "28023", + "nom_de_la_commune": "BAILLEAU ARMENONVILLE", + "code_postal": "28320", + "coordonnees_gps": [ + 48.527016484, + 1.64740884389 + ], + "libelle_d_acheminement": "BAILLEAU ARMENONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64740884389, + 48.527016484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7248928b1931d272455de2270a564007f43cf387", + "fields": { + "code_commune_insee": "28025", + "nom_de_la_commune": "BARMAINVILLE", + "code_postal": "28310", + "coordonnees_gps": [ + 48.259028961, + 1.95473845597 + ], + "libelle_d_acheminement": "BARMAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95473845597, + 48.259028961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50d5b05b995b0ad21e6726c1954b2c071e19b3eb", + "fields": { + "code_commune_insee": "28039", + "nom_de_la_commune": "BEVILLE LE COMTE", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4402167565, + 1.70331148118 + ], + "libelle_d_acheminement": "BEVILLE LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70331148118, + 48.4402167565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a8fd9eebda2bc41055a83a443324b57949bbca3", + "fields": { + "code_commune_insee": "28045", + "nom_de_la_commune": "BOISSY EN DROUAIS", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7288229425, + 1.25197353346 + ], + "libelle_d_acheminement": "BOISSY EN DROUAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25197353346, + 48.7288229425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4e2c9361cc71ba46babb727b43e221323238a83", + "fields": { + "code_commune_insee": "28065", + "nom_de_la_commune": "BULLAINVILLE", + "code_postal": "28800", + "coordonnees_gps": [ + 48.1704047942, + 1.50701616135 + ], + "libelle_d_acheminement": "BULLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50701616135, + 48.1704047942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3833f9ea7a5cee326c4dc588a53a3a261ea03836", + "fields": { + "code_commune_insee": "28078", + "nom_de_la_commune": "CHAPELLE GUILLAUME", + "code_postal": "28330", + "coordonnees_gps": [ + 48.1192028756, + 0.892832407853 + ], + "libelle_d_acheminement": "CHAPELLE GUILLAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.892832407853, + 48.1192028756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd90393363797e8a2a7724c36b5e05db76998c79", + "fields": { + "code_commune_insee": "28079", + "nom_de_la_commune": "CHAPELLE ROYALE", + "code_postal": "28290", + "coordonnees_gps": [ + 48.1530043069, + 1.04379392191 + ], + "libelle_d_acheminement": "CHAPELLE ROYALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04379392191, + 48.1530043069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69fc171c50e332256e69c1fa53e2799f62dda8b4", + "fields": { + "code_commune_insee": "28081", + "nom_de_la_commune": "CHARONVILLE", + "code_postal": "28120", + "coordonnees_gps": [ + 48.2828983569, + 1.31051879432 + ], + "libelle_d_acheminement": "CHARONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31051879432, + 48.2828983569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e6df7d00ecd06598339590867322d18a9dbfbdb", + "fields": { + "code_commune_insee": "28087", + "nom_de_la_commune": "CHATAINCOURT", + "code_postal": "28270", + "coordonnees_gps": [ + 48.6926195809, + 1.23398469234 + ], + "libelle_d_acheminement": "CHATAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23398469234, + 48.6926195809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95efd0095a22c89abd80baaf398a6a449bfd3a62", + "fields": { + "code_commune_insee": "28091", + "nom_de_la_commune": "LES CHATELLIERS NOTRE DAME", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3465496414, + 1.2099229364 + ], + "libelle_d_acheminement": "LES CHATELLIERS NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2099229364, + 48.3465496414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c8abdd292a06e960f1123ac3d3855fce71b062f", + "fields": { + "code_commune_insee": "28096", + "nom_de_la_commune": "LA CHAUSSEE D IVRY", + "code_postal": "28260", + "coordonnees_gps": [ + 48.8886967439, + 1.48819034746 + ], + "libelle_d_acheminement": "LA CHAUSSEE D IVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48819034746, + 48.8886967439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba886e0a78d3a1cde29f8114c65a06d1115f4da9", + "fields": { + "code_commune_insee": "28099", + "nom_de_la_commune": "CHUISNES", + "code_postal": "28190", + "coordonnees_gps": [ + 48.4370118675, + 1.1888981198 + ], + "libelle_d_acheminement": "CHUISNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1888981198, + 48.4370118675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c50496af5c6f86e49bac30bd4910f0f2bdd34ec4", + "fields": { + "ligne_5": "MONTIGNY LE GANNELON", + "code_commune_insee": "28103", + "libelle_d_acheminement": "CLOYES LES TROIS RIVIERES", + "code_postal": "28220", + "nom_de_la_commune": "CLOYES LES TROIS RIVIERES", + "coordonnees_gps": [ + 47.9934559542, + 1.22150535909 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22150535909, + 47.9934559542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4031ee9cc7719c87ba846335dc61bea281bf9af", + "fields": { + "code_commune_insee": "28104", + "nom_de_la_commune": "COLTAINVILLE", + "code_postal": "28300", + "coordonnees_gps": [ + 48.4919525444, + 1.59662805553 + ], + "libelle_d_acheminement": "COLTAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59662805553, + 48.4919525444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6688bb169b93a1f9423ad9a43ff9c90a158486b", + "fields": { + "code_commune_insee": "28109", + "nom_de_la_commune": "LES CORVEES LES YYS", + "code_postal": "28240", + "coordonnees_gps": [ + 48.3652575039, + 1.14754318067 + ], + "libelle_d_acheminement": "LES CORVEES LES YYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14754318067, + 48.3652575039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8d8d943436787da81040d5124147e615b40eea6", + "fields": { + "code_commune_insee": "28119", + "nom_de_la_commune": "LA CROIX DU PERCHE", + "code_postal": "28480", + "coordonnees_gps": [ + 48.2811953008, + 1.04194353092 + ], + "libelle_d_acheminement": "LA CROIX DU PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04194353092, + 48.2811953008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f93dac8d9854e5811a8351a23245dee3bbb620fb", + "fields": { + "code_commune_insee": "28122", + "nom_de_la_commune": "DAMMARIE", + "code_postal": "28360", + "coordonnees_gps": [ + 48.3378217549, + 1.49741837777 + ], + "libelle_d_acheminement": "DAMMARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49741837777, + 48.3378217549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3fcbcf9845e87c83e72e7e84b063a190325396a", + "fields": { + "ligne_5": "MEZIERES AU PERCHE", + "code_commune_insee": "28127", + "libelle_d_acheminement": "DANGEAU", + "code_postal": "28160", + "nom_de_la_commune": "DANGEAU", + "coordonnees_gps": [ + 48.1969504376, + 1.27633745372 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27633745372, + 48.1969504376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18ada634f133e0af3459b6e664eb8a724803e3e3", + "fields": { + "code_commune_insee": "28129", + "nom_de_la_commune": "DENONVILLE", + "code_postal": "28700", + "coordonnees_gps": [ + 48.3929135935, + 1.79949258254 + ], + "libelle_d_acheminement": "DENONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79949258254, + 48.3929135935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc5584587dff75ead50ec5d91225f7c44deccce1", + "fields": { + "code_commune_insee": "28139", + "nom_de_la_commune": "EPEAUTROLLES", + "code_postal": "28120", + "coordonnees_gps": [ + 48.31308475, + 1.33312111882 + ], + "libelle_d_acheminement": "EPEAUTROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33312111882, + 48.31308475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41b21b015b12d56c3c4dfadb67116a29ce1ef954", + "fields": { + "code_commune_insee": "28142", + "nom_de_la_commune": "ERMENONVILLE LA PETITE", + "code_postal": "28120", + "coordonnees_gps": [ + 48.2920874684, + 1.34785065317 + ], + "libelle_d_acheminement": "ERMENONVILLE LA PETITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34785065317, + 48.2920874684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c2398870704e2d24632c72a2c6e4f6b0cfbb90b", + "fields": { + "code_commune_insee": "28147", + "nom_de_la_commune": "FAVIERES", + "code_postal": "28170", + "coordonnees_gps": [ + 48.5320826189, + 1.22893932026 + ], + "libelle_d_acheminement": "FAVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22893932026, + 48.5320826189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c591126f97ad4f37b0865644b150980eda74ca51", + "fields": { + "code_commune_insee": "28151", + "nom_de_la_commune": "FESSANVILLIERS MATTANVILLIERS", + "code_postal": "28270", + "coordonnees_gps": [ + 48.7036704915, + 1.03522178527 + ], + "libelle_d_acheminement": "FESSANVILLIERS MATTANVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03522178527, + 48.7036704915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68d3f4e5bb27e741f353f6ed26a17ce79567b530", + "fields": { + "code_commune_insee": "28155", + "nom_de_la_commune": "FONTAINE LES RIBOUTS", + "code_postal": "28170", + "coordonnees_gps": [ + 48.6550452018, + 1.24758940203 + ], + "libelle_d_acheminement": "FONTAINE LES RIBOUTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24758940203, + 48.6550452018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2b487616fd0b08d72568fd5ebf351e6596954be", + "fields": { + "code_commune_insee": "28162", + "nom_de_la_commune": "FRESNAY LE COMTE", + "code_postal": "28360", + "coordonnees_gps": [ + 48.3043561656, + 1.47797333912 + ], + "libelle_d_acheminement": "FRESNAY LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47797333912, + 48.3043561656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc7454013e27cbaef660033fd8913b183d8e8112", + "fields": { + "code_commune_insee": "28164", + "nom_de_la_commune": "FRESNAY L EVEQUE", + "code_postal": "28310", + "coordonnees_gps": [ + 48.2584598646, + 1.81447858393 + ], + "libelle_d_acheminement": "FRESNAY L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81447858393, + 48.2584598646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e2ea6fbc0d7b4aece427c3eeb8a9dcbb8c7b486", + "fields": { + "code_commune_insee": "28166", + "nom_de_la_commune": "FRIAIZE", + "code_postal": "28240", + "coordonnees_gps": [ + 48.429903453, + 1.12215343236 + ], + "libelle_d_acheminement": "FRIAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12215343236, + 48.429903453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fab16da005b30d4a4cc85747325b0d27f9a665e", + "fields": { + "code_commune_insee": "28168", + "nom_de_la_commune": "GALLARDON", + "code_postal": "28320", + "coordonnees_gps": [ + 48.5338026197, + 1.68926878076 + ], + "libelle_d_acheminement": "GALLARDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68926878076, + 48.5338026197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5ec8c0833d03bcbe80777c3b95698ce89ea44a1", + "fields": { + "code_commune_insee": "28172", + "nom_de_la_commune": "GAS", + "code_postal": "28320", + "coordonnees_gps": [ + 48.5643910001, + 1.66759843253 + ], + "libelle_d_acheminement": "GAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66759843253, + 48.5643910001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9930370607d24610562cf3354fe9dfd53675e89b", + "fields": { + "code_commune_insee": "28173", + "nom_de_la_commune": "GASVILLE OISEME", + "code_postal": "28300", + "coordonnees_gps": [ + 48.4727517815, + 1.55494978026 + ], + "libelle_d_acheminement": "GASVILLE OISEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55494978026, + 48.4727517815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0ce8364a78019d931534246630d0391c9ba4b08", + "fields": { + "code_commune_insee": "28175", + "nom_de_la_commune": "LA GAUDAINE", + "code_postal": "28400", + "coordonnees_gps": [ + 48.2976074029, + 0.951537622095 + ], + "libelle_d_acheminement": "LA GAUDAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.951537622095, + 48.2976074029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2c230ea43c07ff06d21870c20ed016d67b4f46e", + "fields": { + "code_commune_insee": "28180", + "nom_de_la_commune": "GILLES", + "code_postal": "28260", + "coordonnees_gps": [ + 48.9091969133, + 1.51807124557 + ], + "libelle_d_acheminement": "GILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51807124557, + 48.9091969133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68cd68ccb795e177636bddcc590637858bc191b1", + "fields": { + "code_commune_insee": "28182", + "nom_de_la_commune": "GOHORY", + "code_postal": "28160", + "coordonnees_gps": [ + 48.1653685282, + 1.22366989339 + ], + "libelle_d_acheminement": "GOHORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22366989339, + 48.1653685282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "085dc830312d584cfb04eda001686bd94186fc2e", + "fields": { + "ligne_5": "GRANDVILLE GAUDREVILLE", + "code_commune_insee": "28183", + "libelle_d_acheminement": "GOMMERVILLE", + "code_postal": "28310", + "nom_de_la_commune": "GOMMERVILLE", + "coordonnees_gps": [ + 48.3430832547, + 1.95281271777 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95281271777, + 48.3430832547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4057e4aa19784998df24193cfe63c5b4be463498", + "fields": { + "code_commune_insee": "28187", + "nom_de_la_commune": "GUAINVILLE", + "code_postal": "28260", + "coordonnees_gps": [ + 48.9218839821, + 1.48299091693 + ], + "libelle_d_acheminement": "GUAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48299091693, + 48.9218839821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe5e6d1b79c6a2dc3f8f6d6e0bf292d0f556fead", + "fields": { + "code_commune_insee": "28193", + "nom_de_la_commune": "HAVELU", + "code_postal": "28410", + "coordonnees_gps": [ + 48.7877502403, + 1.53388014582 + ], + "libelle_d_acheminement": "HAVELU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53388014582, + 48.7877502403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b75e88f48763f1a65652a82da172a2627728b6bc", + "fields": { + "code_commune_insee": "28194", + "nom_de_la_commune": "HOUVILLE LA BRANCHE", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4443093655, + 1.63867238053 + ], + "libelle_d_acheminement": "HOUVILLE LA BRANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63867238053, + 48.4443093655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0b02c2acc34fe974326f20e91575fa0d310b820", + "fields": { + "code_commune_insee": "28206", + "nom_de_la_commune": "LAONS", + "code_postal": "28270", + "coordonnees_gps": [ + 48.6980280524, + 1.18635370769 + ], + "libelle_d_acheminement": "LAONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18635370769, + 48.6980280524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "350be7ef8c4cca8692bf3080c38684a2b5112a63", + "fields": { + "code_commune_insee": "28217", + "nom_de_la_commune": "LOUVILLIERS LES PERCHE", + "code_postal": "28250", + "coordonnees_gps": [ + 48.6161655057, + 1.06602415569 + ], + "libelle_d_acheminement": "LOUVILLIERS LES PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06602415569, + 48.6161655057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e110de721a0cd8fd8e4934c4c4ae96fb63d9728f", + "fields": { + "code_commune_insee": "28223", + "nom_de_la_commune": "LURAY", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7158016965, + 1.39904091699 + ], + "libelle_d_acheminement": "LURAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39904091699, + 48.7158016965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daad1372c0477ce9891c4160e0e709f02afddc02", + "fields": { + "ligne_5": "BRUNELLES", + "code_commune_insee": "28236", + "libelle_d_acheminement": "ARCISSES", + "code_postal": "28400", + "nom_de_la_commune": "ARCISSES", + "coordonnees_gps": [ + 48.337398478, + 0.850887620161 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.850887620161, + 48.337398478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8556cc9c1578259fcd99c9982275420b829858ba", + "fields": { + "code_commune_insee": "28252", + "nom_de_la_commune": "MIERMAIGNE", + "code_postal": "28480", + "coordonnees_gps": [ + 48.2488776509, + 0.99749026867 + ], + "libelle_d_acheminement": "MIERMAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.99749026867, + 48.2488776509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2edda137c4d377308710e41870eaab65573f6381", + "fields": { + "ligne_5": "MITTAINVILLIERS", + "code_commune_insee": "28254", + "libelle_d_acheminement": "MITTAINVILLIERS VERIGNY", + "code_postal": "28190", + "nom_de_la_commune": "MITTAINVILLIERS VERIGNY", + "coordonnees_gps": [ + 48.499607648, + 1.31332241726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31332241726, + 48.499607648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f1c32f83bb8f108a11f06aa2c0c0c1ed845f991", + "fields": { + "code_commune_insee": "28255", + "nom_de_la_commune": "MOINVILLE LA JEULIN", + "code_postal": "28700", + "coordonnees_gps": [ + 48.3757776174, + 1.70002480039 + ], + "libelle_d_acheminement": "MOINVILLE LA JEULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70002480039, + 48.3757776174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a588b24ba9e8495c20baf97258feb8aa0c323b72", + "fields": { + "code_commune_insee": "28260", + "nom_de_la_commune": "MONTHARVILLE", + "code_postal": "28800", + "coordonnees_gps": [ + 48.1768570171, + 1.32504860803 + ], + "libelle_d_acheminement": "MONTHARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32504860803, + 48.1768570171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98d793e6041435ba889ed6dd120782e79734f1bf", + "fields": { + "code_commune_insee": "28263", + "nom_de_la_commune": "MONTIGNY SUR AVRE", + "code_postal": "28270", + "coordonnees_gps": [ + 48.7203880517, + 1.01209586638 + ], + "libelle_d_acheminement": "MONTIGNY SUR AVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01209586638, + 48.7203880517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee69c9175f5a3dbd50731d8c3503b1079b7b8254", + "fields": { + "code_commune_insee": "28280", + "nom_de_la_commune": "NOGENT LE ROTROU", + "code_postal": "28400", + "coordonnees_gps": [ + 48.3176302432, + 0.804048016354 + ], + "libelle_d_acheminement": "NOGENT LE ROTROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.804048016354, + 48.3176302432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9417ce1fb922b0becaff5017d86d3cad04c6399d", + "fields": { + "code_commune_insee": "28285", + "nom_de_la_commune": "OINVILLE SOUS AUNEAU", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4697612447, + 1.71422426544 + ], + "libelle_d_acheminement": "OINVILLE SOUS AUNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71422426544, + 48.4697612447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9912f7d96e5c6d6e97ccbd665eb900c623f97bf9", + "fields": { + "code_commune_insee": "28290", + "nom_de_la_commune": "ORROUER", + "code_postal": "28190", + "coordonnees_gps": [ + 48.4059068462, + 1.27863713546 + ], + "libelle_d_acheminement": "ORROUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27863713546, + 48.4059068462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "155c4d6455d7108c450ffd588e5257b748999c2b", + "fields": { + "code_commune_insee": "28294", + "nom_de_la_commune": "OYSONVILLE", + "code_postal": "28700", + "coordonnees_gps": [ + 48.3928067068, + 1.94831483735 + ], + "libelle_d_acheminement": "OYSONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94831483735, + 48.3928067068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef29366067d1b707e235e2661231eb6baddc101b", + "fields": { + "code_commune_insee": "28296", + "nom_de_la_commune": "PERONVILLE", + "code_postal": "28140", + "coordonnees_gps": [ + 48.0586450823, + 1.5824310106 + ], + "libelle_d_acheminement": "PERONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5824310106, + 48.0586450823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e5a75e8c1f375f92050f40a6457c6e5ac7fee7a", + "fields": { + "code_commune_insee": "28302", + "nom_de_la_commune": "PONTGOUIN", + "code_postal": "28190", + "coordonnees_gps": [ + 48.4914581287, + 1.14548967214 + ], + "libelle_d_acheminement": "PONTGOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14548967214, + 48.4914581287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dc9a16280f04f74e0603664db5fb09ad9243606", + "fields": { + "code_commune_insee": "28305", + "nom_de_la_commune": "PRE ST EVROULT", + "code_postal": "28800", + "coordonnees_gps": [ + 48.1878434456, + 1.4610005608 + ], + "libelle_d_acheminement": "PRE ST EVROULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4610005608, + 48.1878434456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b19263e5effc7173d7e0774acc162a38dcf2ccfa", + "fields": { + "ligne_5": "LUTZ EN DUNOIS", + "code_commune_insee": "28330", + "libelle_d_acheminement": "VILLEMAURY", + "code_postal": "28200", + "nom_de_la_commune": "VILLEMAURY", + "coordonnees_gps": [ + 48.0457576548, + 1.46955748581 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46955748581, + 48.0457576548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3108ed8bdfd1db9bce474afbddb58fe75fa32195", + "fields": { + "ligne_5": "OZOIR LE BREUIL", + "code_commune_insee": "28330", + "libelle_d_acheminement": "VILLEMAURY", + "code_postal": "28200", + "nom_de_la_commune": "VILLEMAURY", + "coordonnees_gps": [ + 48.0457576548, + 1.46955748581 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46955748581, + 48.0457576548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88ce5203fbc1bc988cdbd85c8bc3ea18e35398e7", + "fields": { + "ligne_5": "ST CLOUD EN DUNOIS", + "code_commune_insee": "28330", + "libelle_d_acheminement": "VILLEMAURY", + "code_postal": "28200", + "nom_de_la_commune": "VILLEMAURY", + "coordonnees_gps": [ + 48.0457576548, + 1.46955748581 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46955748581, + 48.0457576548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "469aee6c030963b60b4f02727369a3e22b5a174a", + "fields": { + "ligne_5": "FRETIGNY", + "code_commune_insee": "28331", + "libelle_d_acheminement": "SAINTIGNY", + "code_postal": "28480", + "nom_de_la_commune": "SAINTIGNY", + "coordonnees_gps": [ + 48.3325632205, + 0.996756265115 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.996756265115, + 48.3325632205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed7daf13e765290f38732a7070fd41c96b7106f3", + "fields": { + "ligne_5": "ST DENIS D AUTHOU", + "code_commune_insee": "28331", + "libelle_d_acheminement": "SAINTIGNY", + "code_postal": "28480", + "nom_de_la_commune": "SAINTIGNY", + "coordonnees_gps": [ + 48.3325632205, + 0.996756265115 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.996756265115, + 48.3325632205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3a0c28c42aefbda35568a1fb2dce57738c3334d", + "fields": { + "ligne_5": "LANNERAY", + "code_commune_insee": "28334", + "libelle_d_acheminement": "ST DENIS LANNERAY", + "code_postal": "28200", + "nom_de_la_commune": "ST DENIS LANNERAY", + "coordonnees_gps": [ + 48.0613637512, + 1.27228736611 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27228736611, + 48.0613637512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ffdc601a78334d3c416a4078cc3925843dc4703", + "fields": { + "code_commune_insee": "28336", + "nom_de_la_commune": "ST EMAN", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3240677989, + 1.19980049404 + ], + "libelle_d_acheminement": "ST EMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19980049404, + 48.3240677989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4036764b9221399663bb3d06538eb0a9c842e26", + "fields": { + "code_commune_insee": "28337", + "nom_de_la_commune": "ST GEORGES SUR EURE", + "code_postal": "28190", + "coordonnees_gps": [ + 48.4195557033, + 1.35743485522 + ], + "libelle_d_acheminement": "ST GEORGES SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35743485522, + 48.4195557033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80167ca5858d7e83dbce519f5c20ca01d88e3689", + "fields": { + "code_commune_insee": "28358", + "nom_de_la_commune": "ST PREST", + "code_postal": "28300", + "coordonnees_gps": [ + 48.4920175304, + 1.5142471785 + ], + "libelle_d_acheminement": "ST PREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5142471785, + 48.4920175304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a5533e5395469bfcb9e01dede935376bda6b533", + "fields": { + "code_commune_insee": "28364", + "nom_de_la_commune": "SANCHEVILLE", + "code_postal": "28800", + "coordonnees_gps": [ + 48.1825259731, + 1.57949510769 + ], + "libelle_d_acheminement": "SANCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57949510769, + 48.1825259731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d99cabfe187c9f6673e78b76c656a0ddd6bfba68", + "fields": { + "code_commune_insee": "28368", + "nom_de_la_commune": "LA SAUCELLE", + "code_postal": "28250", + "coordonnees_gps": [ + 48.6291051329, + 1.02634187849 + ], + "libelle_d_acheminement": "LA SAUCELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02634187849, + 48.6291051329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "287e621335546abda9ea4b8c3109ca1eadfbd9d1", + "fields": { + "code_commune_insee": "28370", + "nom_de_la_commune": "SAUMERAY", + "code_postal": "28800", + "coordonnees_gps": [ + 48.2515939221, + 1.31885104886 + ], + "libelle_d_acheminement": "SAUMERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31885104886, + 48.2515939221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "487b5617379d7040d78abbef56a9e8bb7e61044a", + "fields": { + "code_commune_insee": "28373", + "nom_de_la_commune": "SENONCHES", + "code_postal": "28250", + "coordonnees_gps": [ + 48.559589174, + 1.01905757079 + ], + "libelle_d_acheminement": "SENONCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01905757079, + 48.559589174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b943661b3fc4a2dfb6af29ac190aa1d7c2ad610", + "fields": { + "ligne_5": "LA VILLE AUX NONAINS", + "code_commune_insee": "28373", + "libelle_d_acheminement": "SENONCHES", + "code_postal": "28250", + "nom_de_la_commune": "SENONCHES", + "coordonnees_gps": [ + 48.559589174, + 1.01905757079 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01905757079, + 48.559589174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "210411f17a416a2a77893c6acc929ffed4f4d7c1", + "fields": { + "code_commune_insee": "28374", + "nom_de_la_commune": "SERAZEREUX", + "code_postal": "28170", + "coordonnees_gps": [ + 48.5949002026, + 1.43635782347 + ], + "libelle_d_acheminement": "SERAZEREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43635782347, + 48.5949002026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe3845915f8aef26cf0b9eab54c943816cfd662b", + "fields": { + "code_commune_insee": "28379", + "nom_de_la_commune": "SOULAIRES", + "code_postal": "28130", + "coordonnees_gps": [ + 48.5176795466, + 1.58912796204 + ], + "libelle_d_acheminement": "SOULAIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58912796204, + 48.5176795466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b1e3c3cf2cdecfe428b48f7aaea44dd9e4f7f3e", + "fields": { + "code_commune_insee": "28388", + "nom_de_la_commune": "THIVARS", + "code_postal": "28630", + "coordonnees_gps": [ + 48.3824570521, + 1.44888885738 + ], + "libelle_d_acheminement": "THIVARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44888885738, + 48.3824570521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed7ed165fbcb4240dcc29585c794b2b699c9dcc5", + "fields": { + "code_commune_insee": "28392", + "nom_de_la_commune": "TRANCRAINVILLE", + "code_postal": "28310", + "coordonnees_gps": [ + 48.2378117353, + 1.86150944495 + ], + "libelle_d_acheminement": "TRANCRAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86150944495, + 48.2378117353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40ea57fb5c80e9c80e4b5e6e13456794bd7293dc", + "fields": { + "ligne_5": "THEUVY ACHERES", + "code_commune_insee": "28393", + "libelle_d_acheminement": "TREMBLAY LES VILLAGES", + "code_postal": "28170", + "nom_de_la_commune": "TREMBLAY LES VILLAGES", + "coordonnees_gps": [ + 48.5881626072, + 1.36867843258 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36867843258, + 48.5881626072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8912ad84ee0d194cfc89e76734c5240955a2144f", + "fields": { + "code_commune_insee": "28400", + "nom_de_la_commune": "VARIZE", + "code_postal": "28140", + "coordonnees_gps": [ + 48.082379258, + 1.52561665156 + ], + "libelle_d_acheminement": "VARIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52561665156, + 48.082379258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2253dd316e2f62dbb327ef1d00d4cf25ab025fe5", + "fields": { + "code_commune_insee": "28403", + "nom_de_la_commune": "VER LES CHARTRES", + "code_postal": "28630", + "coordonnees_gps": [ + 48.3780916809, + 1.48044063443 + ], + "libelle_d_acheminement": "VER LES CHARTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48044063443, + 48.3780916809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76c15d66c6f78d49fabd56aa59bc01f9dadb61b9", + "fields": { + "ligne_5": "FAINS LA FOLIE", + "code_commune_insee": "28406", + "libelle_d_acheminement": "EOLE EN BEAUCE", + "code_postal": "28150", + "nom_de_la_commune": "EOLE EN BEAUCE", + "coordonnees_gps": [ + 48.2158073726, + 1.69304337817 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69304337817, + 48.2158073726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ebb15c9071ddc675bf6f4dc2b5288c87930a73e", + "fields": { + "ligne_5": "VIABON", + "code_commune_insee": "28406", + "libelle_d_acheminement": "EOLE EN BEAUCE", + "code_postal": "28150", + "nom_de_la_commune": "EOLE EN BEAUCE", + "coordonnees_gps": [ + 48.2158073726, + 1.69304337817 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69304337817, + 48.2158073726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc4d19d12d21d6f3ad6d06661da6fc5cb92bb794", + "fields": { + "code_commune_insee": "28414", + "nom_de_la_commune": "VILLEBON", + "code_postal": "28190", + "coordonnees_gps": [ + 48.3895094771, + 1.19915993293 + ], + "libelle_d_acheminement": "VILLEBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19915993293, + 48.3895094771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88efce75637d8bf35d26f298c02ad63e3550fbcf", + "fields": { + "code_commune_insee": "28415", + "nom_de_la_commune": "VILLEMEUX SUR EURE", + "code_postal": "28210", + "coordonnees_gps": [ + 48.6710644205, + 1.4573632348 + ], + "libelle_d_acheminement": "VILLEMEUX SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4573632348, + 48.6710644205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cef74432253fc5d38353c06533b9f9e68f6b3ac5", + "fields": { + "ligne_5": "VOVES", + "code_commune_insee": "28422", + "libelle_d_acheminement": "LES VILLAGES VOVEENS", + "code_postal": "28150", + "nom_de_la_commune": "LES VILLAGES VOVEENS", + "coordonnees_gps": [ + 48.269861494, + 1.6311008246 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6311008246, + 48.269861494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ec248be1813eba2fd32cd2b8b88f90d8fa28b32", + "fields": { + "code_commune_insee": "29007", + "nom_de_la_commune": "BERRIEN", + "code_postal": "29690", + "coordonnees_gps": [ + 48.4027305051, + -3.76524444228 + ], + "libelle_d_acheminement": "BERRIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.76524444228, + 48.4027305051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "905ae9ef39bfc5e6171920e44865dd8e9602ffb3", + "fields": { + "code_commune_insee": "29010", + "nom_de_la_commune": "BODILIS", + "code_postal": "29400", + "coordonnees_gps": [ + 48.5153978832, + -4.12063096019 + ], + "libelle_d_acheminement": "BODILIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.12063096019, + 48.5153978832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb12a8da1f13bf88072e7d85a9073119acf9b374", + "fields": { + "code_commune_insee": "29014", + "nom_de_la_commune": "BOTSORHEL", + "code_postal": "29650", + "coordonnees_gps": [ + 48.5059126772, + -3.62885625476 + ], + "libelle_d_acheminement": "BOTSORHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.62885625476, + 48.5059126772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ee42d89812b3f9d508d05729191608602ab2909", + "fields": { + "code_commune_insee": "29017", + "nom_de_la_commune": "BRELES", + "code_postal": "29810", + "coordonnees_gps": [ + 48.4709032483, + -4.68640383039 + ], + "libelle_d_acheminement": "BRELES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.68640383039, + 48.4709032483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c41b1dc1ef4e51b27007982e2a63d1b5fe3a2e2", + "fields": { + "code_commune_insee": "29025", + "nom_de_la_commune": "CAST", + "code_postal": "29150", + "coordonnees_gps": [ + 48.1490980732, + -4.11928421519 + ], + "libelle_d_acheminement": "CAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.11928421519, + 48.1490980732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be6eed328f49afc4f67bc621e742877fa6f4aab8", + "fields": { + "code_commune_insee": "29029", + "nom_de_la_commune": "CLEDEN POHER", + "code_postal": "29270", + "coordonnees_gps": [ + 48.2430990086, + -3.66446573212 + ], + "libelle_d_acheminement": "CLEDEN POHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.66446573212, + 48.2430990086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d551b7049cea839181eb65d23ac2b605cfa743fc", + "fields": { + "code_commune_insee": "29030", + "nom_de_la_commune": "CLEDER", + "code_postal": "29233", + "coordonnees_gps": [ + 48.6605439147, + -4.12447333857 + ], + "libelle_d_acheminement": "CLEDER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.12447333857, + 48.6605439147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "008f61d1a86325ef101ef5c36c2fcf5eb18e9d36", + "fields": { + "code_commune_insee": "29035", + "nom_de_la_commune": "COAT MEAL", + "code_postal": "29870", + "coordonnees_gps": [ + 48.5056460194, + -4.53993489301 + ], + "libelle_d_acheminement": "COAT MEAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.53993489301, + 48.5056460194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c76b5697c80d54bf993946d5058a457c514f8e13", + "fields": { + "code_commune_insee": "29036", + "nom_de_la_commune": "COLLOREC", + "code_postal": "29530", + "coordonnees_gps": [ + 48.2916222474, + -3.77150132255 + ], + "libelle_d_acheminement": "COLLOREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.77150132255, + 48.2916222474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8899cd194218fa5f0a848d38f7563405c908483a", + "fields": { + "ligne_5": "LE FRET", + "code_commune_insee": "29042", + "libelle_d_acheminement": "CROZON", + "code_postal": "29160", + "nom_de_la_commune": "CROZON", + "coordonnees_gps": [ + 48.2449715382, + -4.49170347769 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.49170347769, + 48.2449715382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf711600a0f4e2b6a1cba749fe2d4001dd1484a2", + "fields": { + "code_commune_insee": "29043", + "nom_de_la_commune": "DAOULAS", + "code_postal": "29460", + "coordonnees_gps": [ + 48.3556171756, + -4.26327586414 + ], + "libelle_d_acheminement": "DAOULAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.26327586414, + 48.3556171756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f72f15bd02a2ed2ebb49cab18354f8cb07818b07", + "fields": { + "code_commune_insee": "29044", + "nom_de_la_commune": "DINEAULT", + "code_postal": "29150", + "coordonnees_gps": [ + 48.2166455285, + -4.16674767247 + ], + "libelle_d_acheminement": "DINEAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.16674767247, + 48.2166455285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15efcac81e90868a1f0ea4811ce5fdad9f4dfe91", + "fields": { + "ligne_5": "BEGMEIL", + "code_commune_insee": "29058", + "libelle_d_acheminement": "FOUESNANT", + "code_postal": "29170", + "nom_de_la_commune": "FOUESNANT", + "coordonnees_gps": [ + 47.8783078862, + -4.01834628474 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.01834628474, + 47.8783078862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "368c04479b92300c2d8b2f81b502faa4d0a8a1e6", + "fields": { + "code_commune_insee": "29062", + "nom_de_la_commune": "GOUEZEC", + "code_postal": "29190", + "coordonnees_gps": [ + 48.1700681159, + -3.97240970472 + ], + "libelle_d_acheminement": "GOUEZEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.97240970472, + 48.1700681159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83a46c751ad2dc210d677a312d964f537e76ab5b", + "fields": { + "code_commune_insee": "29063", + "nom_de_la_commune": "GOULIEN", + "code_postal": "29770", + "coordonnees_gps": [ + 48.0579729785, + -4.59260441586 + ], + "libelle_d_acheminement": "GOULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.59260441586, + 48.0579729785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68f01edaf5c89ff3206ba625bed0dbaf412b143c", + "fields": { + "code_commune_insee": "29070", + "nom_de_la_commune": "GUILER SUR GOYEN", + "code_postal": "29710", + "coordonnees_gps": [ + 48.0170524015, + -4.36131542798 + ], + "libelle_d_acheminement": "GUILER SUR GOYEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.36131542798, + 48.0170524015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df445571fa323e400a2d5f434db2f6f54bdffb2c", + "fields": { + "code_commune_insee": "29071", + "nom_de_la_commune": "GUILLIGOMARC H", + "code_postal": "29300", + "coordonnees_gps": [ + 47.9433635346, + -3.42652509453 + ], + "libelle_d_acheminement": "GUILLIGOMARC H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.42652509453, + 47.9433635346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc9f624fa358e407657e439ab317c1fca52e0c08", + "fields": { + "code_commune_insee": "29082", + "nom_de_la_commune": "ILE DE BATZ", + "code_postal": "29253", + "coordonnees_gps": [ + 48.7453786907, + -4.01403204565 + ], + "libelle_d_acheminement": "ILE DE BATZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.01403204565, + 48.7453786907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a716e9e2dacc1d0297144e070689270a2e02cb4", + "fields": { + "code_commune_insee": "29087", + "nom_de_la_commune": "LE JUCH", + "code_postal": "29100", + "coordonnees_gps": [ + 48.0555333379, + -4.2656946244 + ], + "libelle_d_acheminement": "LE JUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.2656946244, + 48.0555333379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16435c25ae178870aa3889e99688567fa6cc129e", + "fields": { + "code_commune_insee": "29089", + "nom_de_la_commune": "KERGLOFF", + "code_postal": "29270", + "coordonnees_gps": [ + 48.2804454858, + -3.64568859404 + ], + "libelle_d_acheminement": "KERGLOFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.64568859404, + 48.2804454858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16c98aed99cda5b16f98d5cb8a6871f15c0f8203", + "fields": { + "code_commune_insee": "29098", + "nom_de_la_commune": "LAMPAUL PLOUARZEL", + "code_postal": "29810", + "coordonnees_gps": [ + 48.4502704596, + -4.76463637416 + ], + "libelle_d_acheminement": "LAMPAUL PLOUARZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.76463637416, + 48.4502704596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b22afc0a94ceab37b7fd29f50fc0571c3e997ebb", + "fields": { + "code_commune_insee": "29099", + "nom_de_la_commune": "LAMPAUL PLOUDALMEZEAU", + "code_postal": "29830", + "coordonnees_gps": [ + 48.5533742758, + -4.64744640703 + ], + "libelle_d_acheminement": "LAMPAUL PLOUDALMEZEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.64744640703, + 48.5533742758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "688286946ad8a1bc1238d5e3817623cb873cdfe0", + "fields": { + "code_commune_insee": "29112", + "nom_de_la_commune": "LANILDUT", + "code_postal": "29840", + "coordonnees_gps": [ + 48.4817500302, + -4.73355077306 + ], + "libelle_d_acheminement": "LANILDUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.73355077306, + 48.4817500302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff9ac894d2e20b2b11520dce11e7d996e0aec891", + "fields": { + "code_commune_insee": "29113", + "nom_de_la_commune": "LANMEUR", + "code_postal": "29620", + "coordonnees_gps": [ + 48.6422856772, + -3.72150726113 + ], + "libelle_d_acheminement": "LANMEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.72150726113, + 48.6422856772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "326763c35ab529cdc59b3e87202b9270f3c2a646", + "fields": { + "code_commune_insee": "29128", + "nom_de_la_commune": "LOC EGUINER", + "code_postal": "29400", + "coordonnees_gps": [ + 48.4763432198, + -4.09270685013 + ], + "libelle_d_acheminement": "LOC EGUINER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.09270685013, + 48.4763432198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b7f94f383c2615476c0e3e5215573c296f5596b", + "fields": { + "code_commune_insee": "29131", + "nom_de_la_commune": "LOCMELAR", + "code_postal": "29400", + "coordonnees_gps": [ + 48.450277854, + -4.05818755102 + ], + "libelle_d_acheminement": "LOCMELAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.05818755102, + 48.450277854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09023dea4c1d70a4c7f55ae1dff8a7eb9b9c27af", + "fields": { + "code_commune_insee": "29133", + "nom_de_la_commune": "LOCQUIREC", + "code_postal": "29241", + "coordonnees_gps": [ + 48.6831366795, + -3.66753133845 + ], + "libelle_d_acheminement": "LOCQUIREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.66753133845, + 48.6831366795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "440884e5ee12e1499fa9d7c7ea70beff03f32718", + "fields": { + "code_commune_insee": "29136", + "nom_de_la_commune": "LOCUNOLE", + "code_postal": "29310", + "coordonnees_gps": [ + 47.9243454961, + -3.48583985781 + ], + "libelle_d_acheminement": "LOCUNOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.48583985781, + 47.9243454961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0682c8960cfe89e0b18edf892953df7195dd44b", + "fields": { + "code_commune_insee": "29141", + "nom_de_la_commune": "LOQUEFFRET", + "code_postal": "29530", + "coordonnees_gps": [ + 48.3294972267, + -3.85916862997 + ], + "libelle_d_acheminement": "LOQUEFFRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.85916862997, + 48.3294972267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfa79a0b739df08add7c2727f9a0a02a89e26225", + "fields": { + "code_commune_insee": "29144", + "nom_de_la_commune": "LA MARTYRE", + "code_postal": "29800", + "coordonnees_gps": [ + 48.4367154083, + -4.17012102648 + ], + "libelle_d_acheminement": "LA MARTYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.17012102648, + 48.4367154083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a1cfad8ccde1136760c648cedead3982630ece5", + "fields": { + "ligne_5": "KERFANY LES PINS", + "code_commune_insee": "29150", + "libelle_d_acheminement": "MOELAN SUR MER", + "code_postal": "29350", + "nom_de_la_commune": "MOELAN SUR MER", + "coordonnees_gps": [ + 47.8061076978, + -3.64546918043 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.64546918043, + 47.8061076978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6ba84f49a9f9f1c86c38f49e5e0274b130fc2cb", + "fields": { + "code_commune_insee": "29151", + "nom_de_la_commune": "MORLAIX", + "code_postal": "29600", + "coordonnees_gps": [ + 48.5996746612, + -3.82052019963 + ], + "libelle_d_acheminement": "MORLAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.82052019963, + 48.5996746612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d7b45f8f1b9126e2f0440e85eb48aaf83156b65", + "fields": { + "code_commune_insee": "29155", + "nom_de_la_commune": "OUESSANT", + "code_postal": "29242", + "coordonnees_gps": [ + 48.4601042319, + -5.08534533544 + ], + "libelle_d_acheminement": "ILE D OUESSANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.08534533544, + 48.4601042319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "316a5964fc475bc15c293b5b9bcb153389347f18", + "fields": { + "ligne_5": "ST GUENOLE", + "code_commune_insee": "29158", + "libelle_d_acheminement": "PENMARCH", + "code_postal": "29760", + "nom_de_la_commune": "PENMARCH", + "coordonnees_gps": [ + 47.8121478804, + -4.34003367039 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.34003367039, + 47.8121478804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9622beecc5ef8151b23ee5c7651a63e57e17300e", + "fields": { + "code_commune_insee": "29160", + "nom_de_la_commune": "PLABENNEC", + "code_postal": "29860", + "coordonnees_gps": [ + 48.4938327293, + -4.41894214636 + ], + "libelle_d_acheminement": "PLABENNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.41894214636, + 48.4938327293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fa6d126ae8d468a9a93a8cd86354003c254330a", + "fields": { + "code_commune_insee": "29162", + "nom_de_la_commune": "PLEYBEN", + "code_postal": "29190", + "coordonnees_gps": [ + 48.2381882091, + -3.97526740601 + ], + "libelle_d_acheminement": "PLEYBEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.97526740601, + 48.2381882091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5109bc0f81a1a22a59c4be32c57925e9ab1b3e6a", + "fields": { + "code_commune_insee": "29169", + "nom_de_la_commune": "PLOGONNEC", + "code_postal": "29180", + "coordonnees_gps": [ + 48.0728440242, + -4.1591436628 + ], + "libelle_d_acheminement": "PLOGONNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.1591436628, + 48.0728440242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "558e32e72009fa53081c50dd383b15e13842c3e4", + "fields": { + "code_commune_insee": "29171", + "nom_de_la_commune": "PLOMEUR", + "code_postal": "29120", + "coordonnees_gps": [ + 47.8382971548, + -4.29445064417 + ], + "libelle_d_acheminement": "PLOMEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.29445064417, + 47.8382971548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7085d84fc13b6c3570f7210d7fcdc01c0862a750", + "fields": { + "code_commune_insee": "29178", + "nom_de_la_commune": "PLOUDALMEZEAU", + "code_postal": "29830", + "coordonnees_gps": [ + 48.5380194426, + -4.66954529014 + ], + "libelle_d_acheminement": "PLOUDALMEZEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.66954529014, + 48.5380194426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f6b3ac2af316a3adf3cb82c62b499813812af0e", + "fields": { + "code_commune_insee": "29181", + "nom_de_la_commune": "PLOUEDERN", + "code_postal": "29800", + "coordonnees_gps": [ + 48.4827412998, + -4.25245153196 + ], + "libelle_d_acheminement": "PLOUEDERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.25245153196, + 48.4827412998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c74debc965967eb595fbd0b35285966338d00c4", + "fields": { + "code_commune_insee": "29182", + "nom_de_la_commune": "PLOUEGAT GUERAND", + "code_postal": "29620", + "coordonnees_gps": [ + 48.621971426, + -3.6705039462 + ], + "libelle_d_acheminement": "PLOUEGAT GUERAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6705039462, + 48.621971426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "225ca687341c57e89d4ee46c571bdeee5d5a01d4", + "fields": { + "code_commune_insee": "29193", + "nom_de_la_commune": "PLOUGOURVEST", + "code_postal": "29400", + "coordonnees_gps": [ + 48.5535956493, + -4.07375029221 + ], + "libelle_d_acheminement": "PLOUGOURVEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07375029221, + 48.5535956493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2e11dfcc86e244106f9a4080a633cf430ec500a", + "fields": { + "code_commune_insee": "29198", + "nom_de_la_commune": "PLOUIDER", + "code_postal": "29260", + "coordonnees_gps": [ + 48.602186011, + -4.29367754752 + ], + "libelle_d_acheminement": "PLOUIDER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.29367754752, + 48.602186011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6b0f7f7ff09c41844dc688924591742736cf74e", + "fields": { + "ligne_5": "LE PONTHOU", + "code_commune_insee": "29199", + "libelle_d_acheminement": "PLOUIGNEAU", + "code_postal": "29650", + "nom_de_la_commune": "PLOUIGNEAU", + "coordonnees_gps": [ + 48.5736126699, + -3.7040741716 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.7040741716, + 48.5736126699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbe73d64d7a0568dcf12a41bdd954b48c171e250", + "fields": { + "code_commune_insee": "29202", + "nom_de_la_commune": "PLOUNEOUR MENEZ", + "code_postal": "29410", + "coordonnees_gps": [ + 48.4451584128, + -3.88112677396 + ], + "libelle_d_acheminement": "PLOUNEOUR MENEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.88112677396, + 48.4451584128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2961fce6deb726ab424d211d8e734cdfff02641", + "fields": { + "code_commune_insee": "29214", + "nom_de_la_commune": "PLOVAN", + "code_postal": "29720", + "coordonnees_gps": [ + 47.9325748846, + -4.36035398451 + ], + "libelle_d_acheminement": "PLOVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.36035398451, + 47.9325748846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a863e2431612a46c4242d3ce337aaec81e0de69", + "fields": { + "code_commune_insee": "29218", + "nom_de_la_commune": "PONT CROIX", + "code_postal": "29790", + "coordonnees_gps": [ + 48.0467363685, + -4.49625193041 + ], + "libelle_d_acheminement": "PONT CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.49625193041, + 48.0467363685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60707c9df42913376c6e8ab31a1f63b27cb9278b", + "fields": { + "code_commune_insee": "29230", + "nom_de_la_commune": "QUERRIEN", + "code_postal": "29310", + "coordonnees_gps": [ + 47.9553937645, + -3.54781313088 + ], + "libelle_d_acheminement": "QUERRIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.54781313088, + 47.9553937645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e667707285c30671aed0fc21cdfb77935fefe3e9", + "fields": { + "code_commune_insee": "29232", + "nom_de_la_commune": "QUIMPER", + "code_postal": "29000", + "coordonnees_gps": [ + 47.9971425162, + -4.09111944455 + ], + "libelle_d_acheminement": "QUIMPER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.09111944455, + 47.9971425162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30ed0dfb3e684c38e0054a3a208b6b70277d1289", + "fields": { + "code_commune_insee": "29233", + "nom_de_la_commune": "QUIMPERLE", + "code_postal": "29300", + "coordonnees_gps": [ + 47.8561303355, + -3.55642894655 + ], + "libelle_d_acheminement": "QUIMPERLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.55642894655, + 47.8561303355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e817fe438ed9cac156ca19a320c5c50776e9cd17", + "fields": { + "code_commune_insee": "29235", + "nom_de_la_commune": "LE RELECQ KERHUON", + "code_postal": "29480", + "coordonnees_gps": [ + 48.403174987, + -4.40146737314 + ], + "libelle_d_acheminement": "LE RELECQ KERHUON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.40146737314, + 48.403174987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39a995ad20ebeb7036c6402db28040b2d219f90c", + "fields": { + "code_commune_insee": "29244", + "nom_de_la_commune": "ST DERRIEN", + "code_postal": "29440", + "coordonnees_gps": [ + 48.5448011454, + -4.1857054177 + ], + "libelle_d_acheminement": "ST DERRIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.1857054177, + 48.5448011454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28bf9bb46dfaa57263a4e590ff57f405935e088b", + "fields": { + "code_commune_insee": "29247", + "nom_de_la_commune": "ST EVARZEC", + "code_postal": "29170", + "coordonnees_gps": [ + 47.9541694305, + -4.00984047973 + ], + "libelle_d_acheminement": "ST EVARZEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.00984047973, + 47.9541694305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0366336ff350b93fd1412698c81f999d9e24020", + "fields": { + "code_commune_insee": "29252", + "nom_de_la_commune": "ST JEAN TROLIMON", + "code_postal": "29120", + "coordonnees_gps": [ + 47.8682602746, + -4.30993250083 + ], + "libelle_d_acheminement": "ST JEAN TROLIMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.30993250083, + 47.8682602746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eb51ac7c6092c190283f60820646d35bb80bed8", + "fields": { + "code_commune_insee": "29261", + "nom_de_la_commune": "ST RIVOAL", + "code_postal": "29190", + "coordonnees_gps": [ + 48.3495310382, + -3.98818824029 + ], + "libelle_d_acheminement": "ST RIVOAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.98818824029, + 48.3495310382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d3dec043aab03fba81ff2414070e26e4afd6811", + "fields": { + "code_commune_insee": "29264", + "nom_de_la_commune": "ST SERVAIS", + "code_postal": "29400", + "coordonnees_gps": [ + 48.515337215, + -4.15865223031 + ], + "libelle_d_acheminement": "ST SERVAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.15865223031, + 48.515337215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa9ff89dc59466c27d97f2bc51e8cdb22980d675", + "fields": { + "code_commune_insee": "29265", + "nom_de_la_commune": "STE SEVE", + "code_postal": "29600", + "coordonnees_gps": [ + 48.5607905718, + -3.88888389593 + ], + "libelle_d_acheminement": "STE SEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.88888389593, + 48.5607905718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "860e50a2b582ed9da19cfee7b818b73341c3c0ee", + "fields": { + "ligne_5": "ST THEGONNEC", + "code_commune_insee": "29266", + "libelle_d_acheminement": "ST THEGONNEC LOC EGUINER", + "code_postal": "29410", + "nom_de_la_commune": "ST THEGONNEC LOC EGUINER", + "coordonnees_gps": [ + 48.5113171528, + -3.93813377559 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.93813377559, + 48.5113171528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a2b97857788c8e71f710002175bc27e2434408c", + "fields": { + "code_commune_insee": "29271", + "nom_de_la_commune": "ST VOUGAY", + "code_postal": "29440", + "coordonnees_gps": [ + 48.589150749, + -4.1458078023 + ], + "libelle_d_acheminement": "ST VOUGAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.1458078023, + 48.589150749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcf96ac02b4cf4b1481c41a64d38c5d6793191a8", + "fields": { + "code_commune_insee": "29273", + "nom_de_la_commune": "SANTEC", + "code_postal": "29250", + "coordonnees_gps": [ + 48.7000595566, + -4.02979290086 + ], + "libelle_d_acheminement": "SANTEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.02979290086, + 48.7000595566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7996578c686725231e6b34df610637590bc56a66", + "fields": { + "code_commune_insee": "29280", + "nom_de_la_commune": "TELGRUC SUR MER", + "code_postal": "29560", + "coordonnees_gps": [ + 48.2337280531, + -4.35717463573 + ], + "libelle_d_acheminement": "TELGRUC SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.35717463573, + 48.2337280531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "859686f14a044e8b98402894045736072e8ef929", + "fields": { + "code_commune_insee": "29285", + "nom_de_la_commune": "TREFLAOUENAN", + "code_postal": "29440", + "coordonnees_gps": [ + 48.6266043642, + -4.1001544022 + ], + "libelle_d_acheminement": "TREFLAOUENAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.1001544022, + 48.6266043642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8dfa7c5cd22eee9d1ffa81cf23eac67a85d39db", + "fields": { + "code_commune_insee": "29287", + "nom_de_la_commune": "TREFLEZ", + "code_postal": "29430", + "coordonnees_gps": [ + 48.6265878475, + -4.25742484616 + ], + "libelle_d_acheminement": "TREFLEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.25742484616, + 48.6265878475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6662b0aa73930ca4dee6f50db24fb5399fce1f9", + "fields": { + "code_commune_insee": "29296", + "nom_de_la_commune": "TREMEOC", + "code_postal": "29120", + "coordonnees_gps": [ + 47.9067997461, + -4.21984168318 + ], + "libelle_d_acheminement": "TREMEOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.21984168318, + 47.9067997461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "257f364afccc58c1c6aec5d9134295b56db5fcd0", + "fields": { + "code_commune_insee": "29298", + "nom_de_la_commune": "TREOGAT", + "code_postal": "29720", + "coordonnees_gps": [ + 47.9104620726, + -4.34010514157 + ], + "libelle_d_acheminement": "TREOGAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.34010514157, + 47.9104620726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89ef90786458ec0e1572ed67d493c8f76c6326d6", + "fields": { + "code_commune_insee": "29301", + "nom_de_la_commune": "TREZILIDE", + "code_postal": "29440", + "coordonnees_gps": [ + 48.609955967, + -4.08366655408 + ], + "libelle_d_acheminement": "TREZILIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.08366655408, + 48.609955967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6142ab0173cf2445354e77e5035a309ca9cea2a9", + "fields": { + "code_commune_insee": "2A004", + "nom_de_la_commune": "AJACCIO", + "code_postal": "20000", + "coordonnees_gps": [ + 41.9347926638, + 8.70132275974 + ], + "libelle_d_acheminement": "AJACCIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.70132275974, + 41.9347926638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d384781bb4fc319e64b29276e2c7f4215d3f5ef", + "fields": { + "code_commune_insee": "2A004", + "nom_de_la_commune": "AJACCIO", + "code_postal": "20090", + "coordonnees_gps": [ + 41.9347926638, + 8.70132275974 + ], + "libelle_d_acheminement": "AJACCIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.70132275974, + 41.9347926638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e01b89bece49ef46ba8be3b5863239730661aaa", + "fields": { + "code_commune_insee": "2A008", + "nom_de_la_commune": "ALBITRECCIA", + "code_postal": "20166", + "coordonnees_gps": [ + 41.860474641, + 8.87771179182 + ], + "libelle_d_acheminement": "ALBITRECCIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.87771179182, + 41.860474641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "713db4978743b04bddcfdcf5d58834f3e0f7a5d6", + "fields": { + "code_commune_insee": "2A014", + "nom_de_la_commune": "AMBIEGNA", + "code_postal": "20151", + "coordonnees_gps": [ + 42.0878005416, + 8.77383533017 + ], + "libelle_d_acheminement": "AMBIEGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.77383533017, + 42.0878005416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e665c42acdb3acf328dc67375e215e68f18009ed", + "fields": { + "code_commune_insee": "2A022", + "nom_de_la_commune": "ARRO", + "code_postal": "20151", + "coordonnees_gps": [ + 42.0965260296, + 8.8040243417 + ], + "libelle_d_acheminement": "ARRO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8040243417, + 42.0965260296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "698a1c980dba8439efba1e6c229cc4ce53c3c84e", + "fields": { + "code_commune_insee": "2A024", + "nom_de_la_commune": "AULLENE", + "code_postal": "20116", + "coordonnees_gps": [ + 41.8067898223, + 9.09266751602 + ], + "libelle_d_acheminement": "AULLENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.09266751602, + 41.8067898223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a844fc3367ce598550dbde7dbac09af0d6d96290", + "fields": { + "code_commune_insee": "2A028", + "nom_de_la_commune": "BALOGNA", + "code_postal": "20160", + "coordonnees_gps": [ + 42.1870054914, + 8.75386587299 + ], + "libelle_d_acheminement": "BALOGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.75386587299, + 42.1870054914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "999fc8af84eeee88679b10677a20a1bd9ea9077d", + "fields": { + "code_commune_insee": "2A035", + "nom_de_la_commune": "BELVEDERE CAMPOMORO", + "code_postal": "20110", + "coordonnees_gps": [ + 41.6174105713, + 8.82330409363 + ], + "libelle_d_acheminement": "BELVEDERE CAMPOMORO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.82330409363, + 41.6174105713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6362a6a862d3c5d87e3c9497b675ccc655273fb3", + "fields": { + "code_commune_insee": "2A040", + "nom_de_la_commune": "BOCOGNANO", + "code_postal": "20136", + "coordonnees_gps": [ + 42.0887432861, + 9.07100445274 + ], + "libelle_d_acheminement": "BOCOGNANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.07100445274, + 42.0887432861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7c07a53480ffc740f2a1d2906ed51b53df52d76", + "fields": { + "code_commune_insee": "2A048", + "nom_de_la_commune": "CALCATOGGIO", + "code_postal": "20111", + "coordonnees_gps": [ + 42.0284281165, + 8.73772286465 + ], + "libelle_d_acheminement": "CALCATOGGIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73772286465, + 42.0284281165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9233fa6cd2eb63dfb9835f377ba6f92dc8e94d57", + "fields": { + "code_commune_insee": "2A064", + "nom_de_la_commune": "CARDO TORGIA", + "code_postal": "20190", + "coordonnees_gps": [ + 41.8528771718, + 8.97204670982 + ], + "libelle_d_acheminement": "CARDO TORGIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.97204670982, + 41.8528771718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a32c9568dfb4fd2ddc321dc6bd4a18566a3b94b", + "fields": { + "code_commune_insee": "2A090", + "nom_de_la_commune": "COGGIA", + "code_postal": "20160", + "coordonnees_gps": [ + 42.1117512753, + 8.73524258056 + ], + "libelle_d_acheminement": "COGGIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73524258056, + 42.1117512753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "080377efe99801bfe5b31474a9fda0fe277310e1", + "fields": { + "code_commune_insee": "2A091", + "nom_de_la_commune": "COGNOCOLI MONTICCHI", + "code_postal": "20123", + "coordonnees_gps": [ + 41.8017412239, + 8.86559828533 + ], + "libelle_d_acheminement": "COGNOCOLI MONTICCHI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.86559828533, + 41.8017412239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e29349c5f58b9b964d849e259fa42ed225dab284", + "fields": { + "code_commune_insee": "2A092", + "nom_de_la_commune": "CONCA", + "code_postal": "20135", + "coordonnees_gps": [ + 41.7530813124, + 9.33031186511 + ], + "libelle_d_acheminement": "CONCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.33031186511, + 41.7530813124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "596f6472f70ded69523ce32faae3bc5daf84ccde", + "fields": { + "code_commune_insee": "2A100", + "nom_de_la_commune": "CRISTINACCE", + "code_postal": "20126", + "coordonnees_gps": [ + 42.2434011098, + 8.85509262516 + ], + "libelle_d_acheminement": "CRISTINACCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.85509262516, + 42.2434011098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "678c4727e8e699129d20829586cc8e6b4391b070", + "fields": { + "code_commune_insee": "2A129", + "nom_de_la_commune": "GROSSA", + "code_postal": "20100", + "coordonnees_gps": [ + 41.6027786723, + 8.8649278809 + ], + "libelle_d_acheminement": "GROSSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8649278809, + 41.6027786723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb3f0146b8b5bd057f58ffaab060d648376f4c64", + "fields": { + "code_commune_insee": "2A132", + "nom_de_la_commune": "GUARGUALE", + "code_postal": "20128", + "coordonnees_gps": [ + 41.8276384979, + 8.92761040252 + ], + "libelle_d_acheminement": "GUARGUALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.92761040252, + 41.8276384979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f955390a2e38644b69eec56c9a175fca13b76da6", + "fields": { + "code_commune_insee": "2A141", + "nom_de_la_commune": "LETIA", + "code_postal": "20160", + "coordonnees_gps": [ + 42.214927495, + 8.87701144967 + ], + "libelle_d_acheminement": "LETIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.87701144967, + 42.214927495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deb9881ec710bc6b05dbd198443eb8fbd0ecd86a", + "fields": { + "code_commune_insee": "2A144", + "nom_de_la_commune": "LOPIGNA", + "code_postal": "20139", + "coordonnees_gps": [ + 42.0901954462, + 8.85412364517 + ], + "libelle_d_acheminement": "LOPIGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.85412364517, + 42.0901954462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93fc6921bc1599d4bdf6ea872316dd31aba0f152", + "fields": { + "code_commune_insee": "2A146", + "nom_de_la_commune": "LORETO DI TALLANO", + "code_postal": "20165", + "coordonnees_gps": [ + 41.6987192388, + 9.03120917248 + ], + "libelle_d_acheminement": "LORETO DI TALLANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.03120917248, + 41.6987192388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d36e8ceb373c61e932d4d27c4b5905a1794b3fc", + "fields": { + "code_commune_insee": "2A181", + "nom_de_la_commune": "OCANA", + "code_postal": "20117", + "coordonnees_gps": [ + 41.9503939626, + 8.909888839 + ], + "libelle_d_acheminement": "OCANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.909888839, + 41.9503939626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9843f8cd233af24e10601a5f22bb94571a78b3ac", + "fields": { + "code_commune_insee": "2A197", + "nom_de_la_commune": "OSANI", + "code_postal": "20147", + "coordonnees_gps": [ + 42.3435694896, + 8.62327012341 + ], + "libelle_d_acheminement": "OSANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.62327012341, + 42.3435694896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79cf4256a9513518d0180739a68252ad18f16d81", + "fields": { + "code_commune_insee": "2A198", + "nom_de_la_commune": "OTA", + "code_postal": "20150", + "coordonnees_gps": [ + 42.2548660718, + 8.73294026195 + ], + "libelle_d_acheminement": "OTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73294026195, + 42.2548660718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f7b916b508b1e54ae8592a676fb709372b51876", + "fields": { + "ligne_5": "GUAGNO LES BAINS", + "code_commune_insee": "2A240", + "libelle_d_acheminement": "POGGIOLO", + "code_postal": "20160", + "nom_de_la_commune": "POGGIOLO", + "coordonnees_gps": [ + 42.1628161972, + 8.89848173922 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.89848173922, + 42.1628161972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fa3eb2174a05491b4adae341d5237a9bc333e7c", + "fields": { + "code_commune_insee": "2A268", + "nom_de_la_commune": "SAMPOLO", + "code_postal": "20134", + "coordonnees_gps": [ + 41.9468987764, + 9.12053513385 + ], + "libelle_d_acheminement": "SAMPOLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.12053513385, + 41.9468987764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f27af48348b2450f86a729ab02b159a8d120530", + "fields": { + "code_commune_insee": "2A285", + "nom_de_la_commune": "SORBOLLANO", + "code_postal": "20152", + "coordonnees_gps": [ + 41.7504592424, + 9.115742202 + ], + "libelle_d_acheminement": "SORBOLLANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.115742202, + 41.7504592424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc0ad476f8cf9411d435f270e08ad728ff6a195a", + "fields": { + "code_commune_insee": "2A326", + "nom_de_la_commune": "TOLLA", + "code_postal": "20117", + "coordonnees_gps": [ + 41.9682067011, + 8.9690159805 + ], + "libelle_d_acheminement": "TOLLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9690159805, + 41.9682067011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b45b52541c017dc2504087bbc8c267a3d387228b", + "fields": { + "code_commune_insee": "2A348", + "nom_de_la_commune": "VICO", + "code_postal": "20160", + "coordonnees_gps": [ + 42.1506390695, + 8.73051107045 + ], + "libelle_d_acheminement": "VICO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73051107045, + 42.1506390695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49fea8b4793979439f7bbc75a25755d33f65685c", + "fields": { + "code_commune_insee": "2A349", + "nom_de_la_commune": "VIGGIANELLO", + "code_postal": "20110", + "coordonnees_gps": [ + 41.6691692239, + 8.94530373652 + ], + "libelle_d_acheminement": "VIGGIANELLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.94530373652, + 41.6691692239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "136ffe236c0c2ebddedd0844d6c45bbaff05dc69", + "fields": { + "code_commune_insee": "2A358", + "nom_de_la_commune": "ZEVACO", + "code_postal": "20173", + "coordonnees_gps": [ + 41.8861101401, + 9.04464465629 + ], + "libelle_d_acheminement": "ZEVACO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.04464465629, + 41.8861101401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70eef4bf33fac6d4cd86b4383158de2fb9a47458", + "fields": { + "ligne_5": "STE LUCIE DE PORTO VECCHIO", + "code_commune_insee": "2A362", + "libelle_d_acheminement": "ZONZA", + "code_postal": "20144", + "nom_de_la_commune": "ZONZA", + "coordonnees_gps": [ + 41.7213730193, + 9.26624005547 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.26624005547, + 41.7213730193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "becc44e0f424dacde0e995d54aed6713498739dc", + "fields": { + "code_commune_insee": "2B016", + "nom_de_la_commune": "ANTISANTI", + "code_postal": "20270", + "coordonnees_gps": [ + 42.1562385991, + 9.38406808296 + ], + "libelle_d_acheminement": "ANTISANTI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.38406808296, + 42.1562385991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38d9ddcc9a5727fb3d306087c0527ad4324b4391", + "fields": { + "ligne_5": "LOZARI", + "code_commune_insee": "2B034", + "libelle_d_acheminement": "BELGODERE", + "code_postal": "20226", + "nom_de_la_commune": "BELGODERE", + "coordonnees_gps": [ + 42.6078945875, + 9.01429591727 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.01429591727, + 42.6078945875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72e0b9b4367be7d92e384098c5e21ec04caa3da8", + "fields": { + "code_commune_insee": "2B039", + "nom_de_la_commune": "BISINCHI", + "code_postal": "20235", + "coordonnees_gps": [ + 42.485929834, + 9.31902586907 + ], + "libelle_d_acheminement": "BISINCHI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.31902586907, + 42.485929834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c0813f7120e3a6745fcfcc73d7ec26ac15f623f", + "fields": { + "ligne_5": "SUARE", + "code_commune_insee": "2B049", + "libelle_d_acheminement": "CALENZANA", + "code_postal": "20214", + "nom_de_la_commune": "CALENZANA", + "coordonnees_gps": [ + 42.4784267166, + 8.80369225001 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.80369225001, + 42.4784267166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff935f03bad4d24f408492fe8da7e1f11a0b3556", + "fields": { + "code_commune_insee": "2B055", + "nom_de_la_commune": "CAMPITELLO", + "code_postal": "20252", + "coordonnees_gps": [ + 42.526148234, + 9.3252006896 + ], + "libelle_d_acheminement": "CAMPITELLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3252006896, + 42.526148234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5303caa42c3cbd04d8958b21afa78ba8c1232a1c", + "fields": { + "code_commune_insee": "2B067", + "nom_de_la_commune": "CARPINETO", + "code_postal": "20229", + "coordonnees_gps": [ + 42.3559945667, + 9.37993794819 + ], + "libelle_d_acheminement": "CARPINETO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.37993794819, + 42.3559945667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1797acd54a21d21fc32f222b37cb12e6acb92a4", + "fields": { + "code_commune_insee": "2B074", + "nom_de_la_commune": "CASANOVA", + "code_postal": "20250", + "coordonnees_gps": [ + 42.2616692125, + 9.15184231008 + ], + "libelle_d_acheminement": "CASANOVA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.15184231008, + 42.2616692125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8194077411290ab45470c0cd83521aab2e443d05", + "fields": { + "code_commune_insee": "2B084", + "nom_de_la_commune": "CATERI", + "code_postal": "20225", + "coordonnees_gps": [ + 42.5692984321, + 8.89579087074 + ], + "libelle_d_acheminement": "CATERI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.89579087074, + 42.5692984321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a250a4b1c67b7b3e9c85f748fc661cd20d724218", + "fields": { + "code_commune_insee": "2B088", + "nom_de_la_commune": "CHIATRA", + "code_postal": "20230", + "coordonnees_gps": [ + 42.2879316511, + 9.48866878904 + ], + "libelle_d_acheminement": "CHIATRA DI VERDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.48866878904, + 42.2879316511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34195d826df6e67c1bf3a4109773578e5cdc05a0", + "fields": { + "code_commune_insee": "2B097", + "nom_de_la_commune": "COSTA", + "code_postal": "20226", + "coordonnees_gps": [ + 42.5761332368, + 8.99907803384 + ], + "libelle_d_acheminement": "COSTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99907803384, + 42.5761332368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db5951151be9949d260a248d96c882829872aa17", + "fields": { + "code_commune_insee": "2B112", + "nom_de_la_commune": "FELICETO", + "code_postal": "20225", + "coordonnees_gps": [ + 42.5493282775, + 8.93994072673 + ], + "libelle_d_acheminement": "FELICETO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.93994072673, + 42.5493282775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cc1eb0dcda96137fe1b3df6c041a2a9e1050e15", + "fields": { + "ligne_5": "ST ANTOINE", + "code_commune_insee": "2B123", + "libelle_d_acheminement": "GHISONACCIA", + "code_postal": "20240", + "nom_de_la_commune": "GHISONACCIA", + "coordonnees_gps": [ + 42.0437178075, + 9.42260770968 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42260770968, + 42.0437178075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1250e361179323ee4210b6f4c4f66a03ec304e40", + "fields": { + "ligne_5": "AJIOLA", + "code_commune_insee": "2B135", + "libelle_d_acheminement": "ISOLACCIO DI FIUMORBO", + "code_postal": "20243", + "nom_de_la_commune": "ISOLACCIO DI FIUMORBO", + "coordonnees_gps": [ + 42.0157488768, + 9.26439576415 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.26439576415, + 42.0157488768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d11b0e7ac4275fc2c7e0b233b5654c9196a49a24", + "fields": { + "code_commune_insee": "2B137", + "nom_de_la_commune": "LANO", + "code_postal": "20244", + "coordonnees_gps": [ + 42.3789860605, + 9.23567141765 + ], + "libelle_d_acheminement": "LANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.23567141765, + 42.3789860605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf2fc166e51fc3833fa863bd67837bd6ed2e083e", + "fields": { + "code_commune_insee": "2B153", + "nom_de_la_commune": "MANSO", + "code_postal": "20245", + "coordonnees_gps": [ + 42.3708830092, + 8.81890618067 + ], + "libelle_d_acheminement": "MANSO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.81890618067, + 42.3708830092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77d1f1c5ed52bfe9284802acee33c8855b1d3f32", + "fields": { + "code_commune_insee": "2B155", + "nom_de_la_commune": "MATRA", + "code_postal": "20270", + "coordonnees_gps": [ + 42.2832313551, + 9.38756967026 + ], + "libelle_d_acheminement": "MATRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.38756967026, + 42.2832313551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c3b07d373768e35036c396b76a3901ec8ef27ea", + "fields": { + "code_commune_insee": "2B156", + "nom_de_la_commune": "MAUSOLEO", + "code_postal": "20259", + "coordonnees_gps": [ + 42.4947585945, + 8.96434794881 + ], + "libelle_d_acheminement": "MAUSOLEO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.96434794881, + 42.4947585945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8df67e6cbd43ec1e73a4aeaca6fc9a21b288cbc7", + "fields": { + "ligne_5": "PONTE LECCIA", + "code_commune_insee": "2B169", + "libelle_d_acheminement": "MOROSAGLIA", + "code_postal": "20218", + "nom_de_la_commune": "MOROSAGLIA", + "coordonnees_gps": [ + 42.4476687598, + 9.25468558646 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.25468558646, + 42.4476687598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7d0dbf3f09305c84c2b5ded4a9cf653ce561cd0", + "fields": { + "code_commune_insee": "2B171", + "nom_de_la_commune": "MURACCIOLE", + "code_postal": "20219", + "coordonnees_gps": [ + 42.1685019963, + 9.18999511821 + ], + "libelle_d_acheminement": "MURACCIOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.18999511821, + 42.1685019963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b531f84aaf8b2966861da7ce67961ca1db296ca", + "fields": { + "code_commune_insee": "2B172", + "nom_de_la_commune": "MURATO", + "code_postal": "20239", + "coordonnees_gps": [ + 42.5671895141, + 9.32704854356 + ], + "libelle_d_acheminement": "MURATO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.32704854356, + 42.5671895141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3981dd4f8064ca94c96930a89d006121a3b83036", + "fields": { + "code_commune_insee": "2B185", + "nom_de_la_commune": "OLETTA", + "code_postal": "20232", + "coordonnees_gps": [ + 42.6416261877, + 9.33321314144 + ], + "libelle_d_acheminement": "OLETTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.33321314144, + 42.6416261877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8935b9fbff6ec73a8ecc01fa5f4857e6ca6bb08", + "fields": { + "code_commune_insee": "2B187", + "nom_de_la_commune": "OLMETA DI CAPOCORSO", + "code_postal": "20217", + "coordonnees_gps": [ + 42.766973441, + 9.37798697409 + ], + "libelle_d_acheminement": "OLMETA DI CAPOCORSO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.37798697409, + 42.766973441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91a0e5f598cb1b320a085e8dfff5019e952154de", + "fields": { + "code_commune_insee": "2B188", + "nom_de_la_commune": "OLMETA DI TUDA", + "code_postal": "20232", + "coordonnees_gps": [ + 42.6122409049, + 9.36435910828 + ], + "libelle_d_acheminement": "OLMETA DI TUDA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36435910828, + 42.6122409049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c06adf60aa48c30c0f2663a9f54a32c0d0fbba76", + "fields": { + "code_commune_insee": "2B192", + "nom_de_la_commune": "OLMO", + "code_postal": "20290", + "coordonnees_gps": [ + 42.5015366466, + 9.41349985144 + ], + "libelle_d_acheminement": "OLMO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.41349985144, + 42.5015366466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "077e24c915a9c843705c8aea164c5a5f9a644533", + "fields": { + "code_commune_insee": "2B201", + "nom_de_la_commune": "PANCHERACCIA", + "code_postal": "20251", + "coordonnees_gps": [ + 42.1964708452, + 9.40495119655 + ], + "libelle_d_acheminement": "PANCHERACCIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.40495119655, + 42.1964708452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75234108d6d7a798ac32cb5d80ad09c7cfcb85be", + "fields": { + "code_commune_insee": "2B202", + "nom_de_la_commune": "PARATA", + "code_postal": "20229", + "coordonnees_gps": [ + 42.3671701227, + 9.41911803519 + ], + "libelle_d_acheminement": "PARATA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.41911803519, + 42.3671701227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e6c83f8f37c27ac75751636890bd581d583d234", + "fields": { + "code_commune_insee": "2B208", + "nom_de_la_commune": "PERELLI", + "code_postal": "20234", + "coordonnees_gps": [ + 42.3142542051, + 9.38908614142 + ], + "libelle_d_acheminement": "PERELLI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.38908614142, + 42.3142542051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2764b85629948fcfac9e12ba1020346b033904a2", + "fields": { + "code_commune_insee": "2B216", + "nom_de_la_commune": "PIAZZALI", + "code_postal": "20234", + "coordonnees_gps": [ + 42.3198576834, + 9.40593909318 + ], + "libelle_d_acheminement": "PIAZZALI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.40593909318, + 42.3198576834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8e2c5ee06e38267340bc8a4850e534ab16808a2", + "fields": { + "code_commune_insee": "2B217", + "nom_de_la_commune": "PIAZZOLE", + "code_postal": "20229", + "coordonnees_gps": [ + 42.3944129733, + 9.40599362017 + ], + "libelle_d_acheminement": "PIAZZOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.40599362017, + 42.3944129733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a022475442e0da3546db2f50c6fb6f0407eb4d1", + "fields": { + "code_commune_insee": "2B220", + "nom_de_la_commune": "PIEDIGRIGGIO", + "code_postal": "20218", + "coordonnees_gps": [ + 42.4465411561, + 9.18076402904 + ], + "libelle_d_acheminement": "PIEDIGRIGGIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.18076402904, + 42.4465411561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "153ad708881a427daccf2b0053ecfaa9f4c8fa0a", + "fields": { + "code_commune_insee": "2B225", + "nom_de_la_commune": "PIETRA DI VERDE", + "code_postal": "20230", + "coordonnees_gps": [ + 42.2923417061, + 9.44429684997 + ], + "libelle_d_acheminement": "PIETRA DI VERDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44429684997, + 42.2923417061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b61936ab2f0dcddda4401a723885309b0a70f50", + "fields": { + "code_commune_insee": "2B227", + "nom_de_la_commune": "PIETRICAGGIO", + "code_postal": "20234", + "coordonnees_gps": [ + 42.3292404506, + 9.37688638759 + ], + "libelle_d_acheminement": "PIETRICAGGIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.37688638759, + 42.3292404506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b74c73a0e31376fcf4e07b0710adb086a5a08858", + "fields": { + "code_commune_insee": "2B242", + "nom_de_la_commune": "POGGIO MEZZANA", + "code_postal": "20230", + "coordonnees_gps": [ + 42.40140902, + 9.51195735668 + ], + "libelle_d_acheminement": "POGGIO MEZZANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.51195735668, + 42.40140902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2dd608e4637eb3639c4b77e4b42d7b109557b3e", + "fields": { + "code_commune_insee": "2B244", + "nom_de_la_commune": "POPOLASCA", + "code_postal": "20218", + "coordonnees_gps": [ + 42.437399462, + 9.13509572418 + ], + "libelle_d_acheminement": "POPOLASCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.13509572418, + 42.437399462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0708511d8222b1ebb3a963a90c335f686820b2e1", + "fields": { + "code_commune_insee": "2B246", + "nom_de_la_commune": "LA PORTA", + "code_postal": "20237", + "coordonnees_gps": [ + 42.4241824082, + 9.35847182054 + ], + "libelle_d_acheminement": "LA PORTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.35847182054, + 42.4241824082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ee147bd20162b2f684d3de9a06a784f8be23631", + "fields": { + "code_commune_insee": "2B250", + "nom_de_la_commune": "PRUNELLI DI CASACCONI", + "code_postal": "20290", + "coordonnees_gps": [ + 42.5104109341, + 9.40561122356 + ], + "libelle_d_acheminement": "PRUNELLI DI CASACCONI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.40561122356, + 42.5104109341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78b853fe5b1ac5f76e2bf4c3bf0fd962be64b4df", + "fields": { + "code_commune_insee": "2B251", + "nom_de_la_commune": "PRUNELLI DI FIUMORBO", + "code_postal": "20243", + "coordonnees_gps": [ + 42.0072330034, + 9.36772895124 + ], + "libelle_d_acheminement": "PRUNELLI DI FIUMORBO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36772895124, + 42.0072330034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07b2969f25424df045e0d0d555d4994106058f34", + "fields": { + "code_commune_insee": "2B256", + "nom_de_la_commune": "RAPAGGIO", + "code_postal": "20229", + "coordonnees_gps": [ + 42.3752462314, + 9.38418728241 + ], + "libelle_d_acheminement": "RAPAGGIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.38418728241, + 42.3752462314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "659302b4b82f769b1529f12c8eec713e923543d4", + "fields": { + "code_commune_insee": "2B273", + "nom_de_la_commune": "SCATA", + "code_postal": "20213", + "coordonnees_gps": [ + 42.4221587053, + 9.40486548787 + ], + "libelle_d_acheminement": "SCATA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.40486548787, + 42.4221587053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa7b8f59c8b5183d1c8126bfbe97f1a096d72a33", + "fields": { + "code_commune_insee": "2B277", + "nom_de_la_commune": "SERRA DI FIUMORBO", + "code_postal": "20243", + "coordonnees_gps": [ + 41.9716708905, + 9.33015262464 + ], + "libelle_d_acheminement": "SERRA DI FIUMORBO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.33015262464, + 41.9716708905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8962e688c2ff69d7dcc36111b8934de47fc6f1b8", + "fields": { + "code_commune_insee": "2B281", + "nom_de_la_commune": "SISCO", + "code_postal": "20233", + "coordonnees_gps": [ + 42.8144761556, + 9.44224958213 + ], + "libelle_d_acheminement": "SISCO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44224958213, + 42.8144761556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98947ba073e6ef3e88472370e11db2655f3e2cc5", + "fields": { + "code_commune_insee": "2B283", + "nom_de_la_commune": "SOLARO", + "code_postal": "20240", + "coordonnees_gps": [ + 41.8795887459, + 9.32060656681 + ], + "libelle_d_acheminement": "SOLARO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.32060656681, + 41.8795887459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bc9424f03cea0c52ad3a3b91201815e04d88822", + "fields": { + "code_commune_insee": "2B291", + "nom_de_la_commune": "STAZZONA", + "code_postal": "20229", + "coordonnees_gps": [ + 42.379383324, + 9.37520653497 + ], + "libelle_d_acheminement": "STAZZONA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.37520653497, + 42.379383324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03cb06c42f789e5cc1f8ccda44751eec025446ff", + "fields": { + "code_commune_insee": "2B299", + "nom_de_la_commune": "SAN GAVINO D AMPUGNANI", + "code_postal": "20213", + "coordonnees_gps": [ + 42.4174866723, + 9.42542764593 + ], + "libelle_d_acheminement": "SAN GAVINO D AMPUGNANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42542764593, + 42.4174866723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eddefc25ce83e5d45d79ab97d3caa15b1e542e28", + "fields": { + "ligne_5": "ALISTRO", + "code_commune_insee": "2B303", + "libelle_d_acheminement": "SAN GIULIANO", + "code_postal": "20230", + "nom_de_la_commune": "SAN GIULIANO", + "coordonnees_gps": [ + 42.2880809404, + 9.52881178736 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.52881178736, + 42.2880809404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03414b80adea3fa0d0175784ca52742a3c27317f", + "fields": { + "code_commune_insee": "2B304", + "nom_de_la_commune": "SAN LORENZO", + "code_postal": "20244", + "coordonnees_gps": [ + 42.3897522574, + 9.28923196943 + ], + "libelle_d_acheminement": "SAN LORENZO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.28923196943, + 42.3897522574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e095b15814540e737d602d823e1a29fc58498bc6", + "fields": { + "code_commune_insee": "2B306", + "nom_de_la_commune": "SANTA LUCIA DI MERCURIO", + "code_postal": "20250", + "coordonnees_gps": [ + 42.317846059, + 9.22025065863 + ], + "libelle_d_acheminement": "SANTA LUCIA DI MERCURIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.22025065863, + 42.317846059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7329821e8d03853db3123abd82f0db6b09466398", + "fields": { + "ligne_5": "MORIANI PLAGE", + "code_commune_insee": "2B313", + "libelle_d_acheminement": "SAN NICOLAO", + "code_postal": "20230", + "nom_de_la_commune": "SAN NICOLAO", + "coordonnees_gps": [ + 42.3681811247, + 9.50945182928 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.50945182928, + 42.3681811247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b32df821ff8ba30022d0a413098892a79a2f5658", + "fields": { + "code_commune_insee": "2B327", + "nom_de_la_commune": "TOMINO", + "code_postal": "20248", + "coordonnees_gps": [ + 42.9440187067, + 9.44630145154 + ], + "libelle_d_acheminement": "TOMINO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44630145154, + 42.9440187067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce12cc607cbdb176fd65cab75cf7c9321da03277", + "fields": { + "code_commune_insee": "2B341", + "nom_de_la_commune": "VENACO", + "code_postal": "20231", + "coordonnees_gps": [ + 42.213994685, + 9.13754040802 + ], + "libelle_d_acheminement": "VENACO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.13754040802, + 42.213994685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "111434125113464c680811deeb62128005b268f7", + "fields": { + "ligne_5": "MIGNATAJA", + "code_commune_insee": "2B342", + "libelle_d_acheminement": "VENTISERI", + "code_postal": "20240", + "nom_de_la_commune": "VENTISERI", + "coordonnees_gps": [ + 41.9410129854, + 9.36287097036 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36287097036, + 41.9410129854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca846b8cad37fe8e2964beb0bed386122fe9a11a", + "fields": { + "code_commune_insee": "2B343", + "nom_de_la_commune": "VENZOLASCA", + "code_postal": "20215", + "coordonnees_gps": [ + 42.5014054825, + 9.49333701193 + ], + "libelle_d_acheminement": "VENZOLASCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.49333701193, + 42.5014054825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f88dd9c29c4db602ec1e14a159a8c9b100f79d84", + "fields": { + "ligne_5": "VIZZAVONA", + "code_commune_insee": "2B354", + "libelle_d_acheminement": "VIVARIO", + "code_postal": "20219", + "nom_de_la_commune": "VIVARIO", + "coordonnees_gps": [ + 42.1523820761, + 9.12065538823 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.12065538823, + 42.1523820761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c257ad2eb2978d8da1e7d77c1e799def0f342dd1", + "fields": { + "code_commune_insee": "2B356", + "nom_de_la_commune": "ZALANA", + "code_postal": "20272", + "coordonnees_gps": [ + 42.2536105064, + 9.38216254299 + ], + "libelle_d_acheminement": "ZALANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.38216254299, + 42.2536105064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9b6ee3401b4ca98526b2330282e31abb54dcd18", + "fields": { + "code_commune_insee": "2B366", + "nom_de_la_commune": "CHISA", + "code_postal": "20240", + "coordonnees_gps": [ + 41.9210089906, + 9.26560816948 + ], + "libelle_d_acheminement": "CHISA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.26560816948, + 41.9210089906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae32557643d8ba9585fabae452243f8f2344a41c", + "fields": { + "code_commune_insee": "30003", + "nom_de_la_commune": "AIGUES MORTES", + "code_postal": "30220", + "coordonnees_gps": [ + 43.5507249635, + 4.18349802063 + ], + "libelle_d_acheminement": "AIGUES MORTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18349802063, + 43.5507249635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3e1e167d4819c814b7d83c8702895ce76e111d6", + "fields": { + "code_commune_insee": "30005", + "nom_de_la_commune": "AIGUEZE", + "code_postal": "30760", + "coordonnees_gps": [ + 44.3160186564, + 4.51739879151 + ], + "libelle_d_acheminement": "AIGUEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51739879151, + 44.3160186564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cad944a12b8761a7dc6e1959e6813bc5ecd4f85c", + "fields": { + "code_commune_insee": "30013", + "nom_de_la_commune": "ARGILLIERS", + "code_postal": "30210", + "coordonnees_gps": [ + 43.9815740047, + 4.49083337312 + ], + "libelle_d_acheminement": "ARGILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49083337312, + 43.9815740047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fe8f1b66b14e19a5d405e3efa84d2a74358d7a7", + "fields": { + "code_commune_insee": "30024", + "nom_de_la_commune": "AULAS", + "code_postal": "30120", + "coordonnees_gps": [ + 43.9989798888, + 3.58716072515 + ], + "libelle_d_acheminement": "AULAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58716072515, + 43.9989798888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ecd935be9acd449eb22ec432aebda2b2c7f4149", + "fields": { + "code_commune_insee": "30026", + "nom_de_la_commune": "AVEZE", + "code_postal": "30120", + "coordonnees_gps": [ + 43.9759439124, + 3.59883235381 + ], + "libelle_d_acheminement": "AVEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59883235381, + 43.9759439124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6b1f93b542feb63b76de6a0f1e74abe9d11ab09", + "fields": { + "code_commune_insee": "30036", + "nom_de_la_commune": "BERNIS", + "code_postal": "30620", + "coordonnees_gps": [ + 43.7713363574, + 4.28342960175 + ], + "libelle_d_acheminement": "BERNIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28342960175, + 43.7713363574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98776b8635e45d995c8059f897a1481bee5ec0bd", + "fields": { + "code_commune_insee": "30044", + "nom_de_la_commune": "BONNEVAUX", + "code_postal": "30450", + "coordonnees_gps": [ + 44.3722246824, + 4.03585510313 + ], + "libelle_d_acheminement": "BONNEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03585510313, + 44.3722246824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcd76850a6600fd671d5a9edce8c0751bb85376e", + "fields": { + "code_commune_insee": "30046", + "nom_de_la_commune": "BOUCOIRAN ET NOZIERES", + "code_postal": "30190", + "coordonnees_gps": [ + 43.9938436911, + 4.17905217935 + ], + "libelle_d_acheminement": "BOUCOIRAN ET NOZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17905217935, + 43.9938436911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18f235f022051ee04b1143b273517b04b6e9a134", + "fields": { + "code_commune_insee": "30051", + "nom_de_la_commune": "BRANOUX LES TAILLADES", + "code_postal": "30110", + "coordonnees_gps": [ + 44.2285932438, + 3.97464747718 + ], + "libelle_d_acheminement": "BRANOUX LES TAILLADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97464747718, + 44.2285932438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d8b1862838eab34dfe1dafe6004908750ce0e4c", + "fields": { + "code_commune_insee": "30055", + "nom_de_la_commune": "BROUZET LES ALES", + "code_postal": "30580", + "coordonnees_gps": [ + 44.1326190305, + 4.2508193223 + ], + "libelle_d_acheminement": "BROUZET LES ALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2508193223, + 44.1326190305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dfa42d69dc6dd5dd9d8554c233ccbd1656458fb", + "fields": { + "code_commune_insee": "30067", + "nom_de_la_commune": "LA CAPELLE ET MASMOLENE", + "code_postal": "30700", + "coordonnees_gps": [ + 44.0473024322, + 4.53174105946 + ], + "libelle_d_acheminement": "LA CAPELLE ET MASMOLENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53174105946, + 44.0473024322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc9b508e0be5fe4a751146bbba177de727470323", + "fields": { + "code_commune_insee": "30072", + "nom_de_la_commune": "CASTELNAU VALENCE", + "code_postal": "30190", + "coordonnees_gps": [ + 44.0090295193, + 4.24382330483 + ], + "libelle_d_acheminement": "CASTELNAU VALENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24382330483, + 44.0090295193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "356026d8a75144ca5bcb90c17257bbbaacc509ab", + "fields": { + "code_commune_insee": "30076", + "nom_de_la_commune": "CAVILLARGUES", + "code_postal": "30330", + "coordonnees_gps": [ + 44.1170150817, + 4.51753065913 + ], + "libelle_d_acheminement": "CAVILLARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51753065913, + 44.1170150817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df39032ccea968a0bfac8ac1ab81d1e35d491b9c", + "fields": { + "code_commune_insee": "30079", + "nom_de_la_commune": "CHAMBON", + "code_postal": "30450", + "coordonnees_gps": [ + 44.3064594979, + 4.01942334563 + ], + "libelle_d_acheminement": "CHAMBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01942334563, + 44.3064594979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8da717690d00434f02f4cde1284fd077842e5311", + "fields": { + "code_commune_insee": "30085", + "nom_de_la_commune": "COLLIAS", + "code_postal": "30210", + "coordonnees_gps": [ + 43.9490522277, + 4.47176606244 + ], + "libelle_d_acheminement": "COLLIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47176606244, + 43.9490522277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de10d63192aab8dde84a81f5f8387958692a3022", + "fields": { + "code_commune_insee": "30087", + "nom_de_la_commune": "COLOGNAC", + "code_postal": "30460", + "coordonnees_gps": [ + 44.0327998105, + 3.81596701649 + ], + "libelle_d_acheminement": "COLOGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81596701649, + 44.0327998105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "938fd9588d39fefcbadad2d6e22ca28e4352f2c5", + "fields": { + "code_commune_insee": "30107", + "nom_de_la_commune": "ESTEZARGUES", + "code_postal": "30390", + "coordonnees_gps": [ + 43.9542198084, + 4.63596567123 + ], + "libelle_d_acheminement": "ESTEZARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63596567123, + 43.9542198084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dd15b653d511352af7fe54b8e9acdde4828fe28", + "fields": { + "code_commune_insee": "30108", + "nom_de_la_commune": "L ESTRECHURE", + "code_postal": "30124", + "coordonnees_gps": [ + 44.0974192863, + 3.78792074378 + ], + "libelle_d_acheminement": "L ESTRECHURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78792074378, + 44.0974192863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b9309ecf2fe77afd79a669367c8f0842d19ede6", + "fields": { + "code_commune_insee": "30113", + "nom_de_la_commune": "FONS SUR LUSSAN", + "code_postal": "30580", + "coordonnees_gps": [ + 44.1854366663, + 4.32720441708 + ], + "libelle_d_acheminement": "FONS SUR LUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32720441708, + 44.1854366663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e086486a5d288e0105c36279ca78489e9f5df435", + "fields": { + "code_commune_insee": "30128", + "nom_de_la_commune": "GENERAC", + "code_postal": "30510", + "coordonnees_gps": [ + 43.7236593605, + 4.35870073363 + ], + "libelle_d_acheminement": "GENERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35870073363, + 43.7236593605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef6e9f272b049a97fb3249ddc67b569e4927fea4", + "fields": { + "code_commune_insee": "30131", + "nom_de_la_commune": "GOUDARGUES", + "code_postal": "30630", + "coordonnees_gps": [ + 44.2089882991, + 4.43936949575 + ], + "libelle_d_acheminement": "GOUDARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43936949575, + 44.2089882991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cc1ed0f86c82ea355457f592225fc5ee75b5734", + "fields": { + "code_commune_insee": "30132", + "nom_de_la_commune": "LA GRAND COMBE", + "code_postal": "30110", + "coordonnees_gps": [ + 44.2271512171, + 4.02984902103 + ], + "libelle_d_acheminement": "LA GRAND COMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02984902103, + 44.2271512171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a58ff3ed7fbe8f081d308d231e9f433b6daa110c", + "fields": { + "code_commune_insee": "30133", + "nom_de_la_commune": "LE GRAU DU ROI", + "code_postal": "30240", + "coordonnees_gps": [ + 43.5072810882, + 4.16622948662 + ], + "libelle_d_acheminement": "LE GRAU DU ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16622948662, + 43.5072810882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b42bcdcbd2383bd664d2c3793a89c6bab2cab598", + "fields": { + "ligne_5": "L ARDOISE", + "code_commune_insee": "30141", + "libelle_d_acheminement": "LAUDUN L ARDOISE", + "code_postal": "30290", + "nom_de_la_commune": "LAUDUN L ARDOISE", + "coordonnees_gps": [ + 44.1029568271, + 4.66389513091 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66389513091, + 44.1029568271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf06c64c9db88a293da38d5625e88973c504c36a", + "fields": { + "code_commune_insee": "30146", + "nom_de_la_commune": "LEDIGNAN", + "code_postal": "30350", + "coordonnees_gps": [ + 43.9854061148, + 4.10852681331 + ], + "libelle_d_acheminement": "LEDIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10852681331, + 43.9854061148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6c712b26b21823790accdb998362d00133b3f3f", + "fields": { + "code_commune_insee": "30149", + "nom_de_la_commune": "LIRAC", + "code_postal": "30126", + "coordonnees_gps": [ + 44.0301466935, + 4.68213328807 + ], + "libelle_d_acheminement": "LIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68213328807, + 44.0301466935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09548b56dc0cc3fd68a80a3b84d186422774965d", + "fields": { + "code_commune_insee": "30152", + "nom_de_la_commune": "LES MAGES", + "code_postal": "30960", + "coordonnees_gps": [ + 44.2281290306, + 4.17436325066 + ], + "libelle_d_acheminement": "LES MAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17436325066, + 44.2281290306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05385e8cce845654ff3f0620c2767c9e0ee78802", + "fields": { + "code_commune_insee": "30155", + "nom_de_la_commune": "MANDUEL", + "code_postal": "30129", + "coordonnees_gps": [ + 43.8056903138, + 4.48826183061 + ], + "libelle_d_acheminement": "MANDUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48826183061, + 43.8056903138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bb68b7d28b45cd6c37ed7a11c43d0d67298acae", + "fields": { + "code_commune_insee": "30158", + "nom_de_la_commune": "MARTIGNARGUES", + "code_postal": "30360", + "coordonnees_gps": [ + 44.0408533992, + 4.17785978935 + ], + "libelle_d_acheminement": "MARTIGNARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17785978935, + 44.0408533992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5577363ccc30fad57e5d0970219a4ef11a6dfb2", + "fields": { + "code_commune_insee": "30162", + "nom_de_la_commune": "MASSILLARGUES ATTUECH", + "code_postal": "30140", + "coordonnees_gps": [ + 44.0156314122, + 4.02183233884 + ], + "libelle_d_acheminement": "MASSILLARGUES ATTUECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02183233884, + 44.0156314122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ed717b4ce052d73664d7a75f41687e10c721442", + "fields": { + "code_commune_insee": "30164", + "nom_de_la_commune": "MEJANNES LE CLAP", + "code_postal": "30430", + "coordonnees_gps": [ + 44.2309207985, + 4.36426612667 + ], + "libelle_d_acheminement": "MEJANNES LE CLAP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36426612667, + 44.2309207985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0193956ea48c9f95c386dc58ab580cc76494f771", + "fields": { + "code_commune_insee": "30169", + "nom_de_la_commune": "MILHAUD", + "code_postal": "30540", + "coordonnees_gps": [ + 43.7887623974, + 4.30911976796 + ], + "libelle_d_acheminement": "MILHAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30911976796, + 43.7887623974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1951af98db3bf8449a4c2e3563405b5b5d8e6635", + "fields": { + "code_commune_insee": "30172", + "nom_de_la_commune": "MONOBLET", + "code_postal": "30170", + "coordonnees_gps": [ + 43.9963876562, + 3.87875634436 + ], + "libelle_d_acheminement": "MONOBLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87875634436, + 43.9963876562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "350d5ac06e292ecbdb85107966901ef77e4ae311", + "fields": { + "code_commune_insee": "30173", + "nom_de_la_commune": "MONS", + "code_postal": "30340", + "coordonnees_gps": [ + 44.1210558749, + 4.17830623987 + ], + "libelle_d_acheminement": "MONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17830623987, + 44.1210558749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b36239df85af0afbf129d5311e2699545155f10", + "fields": { + "code_commune_insee": "30175", + "nom_de_la_commune": "MONTCLUS", + "code_postal": "30630", + "coordonnees_gps": [ + 44.2694461878, + 4.41823005524 + ], + "libelle_d_acheminement": "MONTCLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41823005524, + 44.2694461878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4caf24b77ca4bfd93bb3f39ede6f28b9e1a735e7", + "fields": { + "code_commune_insee": "30186", + "nom_de_la_commune": "NAGES ET SOLORGUES", + "code_postal": "30114", + "coordonnees_gps": [ + 43.7870618178, + 4.2329725276 + ], + "libelle_d_acheminement": "NAGES ET SOLORGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2329725276, + 43.7870618178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72fe4577888def0a10815df922d1537dd453c3db", + "fields": { + "code_commune_insee": "30188", + "nom_de_la_commune": "NERS", + "code_postal": "30360", + "coordonnees_gps": [ + 44.0243244124, + 4.15845569543 + ], + "libelle_d_acheminement": "NERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15845569543, + 44.0243244124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dedc51acf4ea1baf601553d5aa5b4932f0884bc0", + "fields": { + "code_commune_insee": "30189", + "nom_de_la_commune": "NIMES", + "code_postal": "30900", + "coordonnees_gps": [ + 43.844938394, + 4.34806796996 + ], + "libelle_d_acheminement": "NIMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34806796996, + 43.844938394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ef1580225c1eff89eeb5c6a0698fe1a7b6f4dc3", + "fields": { + "code_commune_insee": "30194", + "nom_de_la_commune": "PEYREMALE", + "code_postal": "30160", + "coordonnees_gps": [ + 44.2970112153, + 4.05911180139 + ], + "libelle_d_acheminement": "PEYREMALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05911180139, + 44.2970112153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c04ce87293c9271a2943dcda55bc222b9d7ed252", + "fields": { + "code_commune_insee": "30196", + "nom_de_la_commune": "LE PIN", + "code_postal": "30330", + "coordonnees_gps": [ + 44.089332023, + 4.53499161129 + ], + "libelle_d_acheminement": "LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53499161129, + 44.089332023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb5f8e4565f579d1bdda24c585fba3af8cfcb66d", + "fields": { + "code_commune_insee": "30198", + "nom_de_la_commune": "LES PLANTIERS", + "code_postal": "30122", + "coordonnees_gps": [ + 44.108139948, + 3.71311936193 + ], + "libelle_d_acheminement": "LES PLANTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71311936193, + 44.108139948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba71f77196f109a101eec7dccace2a64aaa82022", + "fields": { + "code_commune_insee": "30208", + "nom_de_la_commune": "PUECHREDON", + "code_postal": "30610", + "coordonnees_gps": [ + 43.9436241797, + 4.05543868774 + ], + "libelle_d_acheminement": "PUECHREDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05543868774, + 43.9436241797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad92f8f8ab37a33197b840bdb7dba43f738ae356", + "fields": { + "code_commune_insee": "30222", + "nom_de_la_commune": "LA ROQUE SUR CEZE", + "code_postal": "30200", + "coordonnees_gps": [ + 44.1901881744, + 4.51851871798 + ], + "libelle_d_acheminement": "LA ROQUE SUR CEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51851871798, + 44.1901881744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4b6126711dc3cfd36d837882125c9ca50713ed9", + "fields": { + "code_commune_insee": "30227", + "nom_de_la_commune": "ST AMBROIX", + "code_postal": "30500", + "coordonnees_gps": [ + 44.2524583659, + 4.19418573198 + ], + "libelle_d_acheminement": "ST AMBROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19418573198, + 44.2524583659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3534d10a763c138ea7efeb88dae7bd607dbd1033", + "fields": { + "code_commune_insee": "30239", + "nom_de_la_commune": "STE CECILE D ANDORGE", + "code_postal": "30110", + "coordonnees_gps": [ + 44.2612523618, + 3.98352862415 + ], + "libelle_d_acheminement": "STE CECILE D ANDORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98352862415, + 44.2612523618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b43116891961a5f413a815a6619712e3a5f6f486", + "fields": { + "code_commune_insee": "30240", + "nom_de_la_commune": "ST CESAIRE DE GAUZIGNAN", + "code_postal": "30360", + "coordonnees_gps": [ + 44.0366406737, + 4.20242445704 + ], + "libelle_d_acheminement": "ST CESAIRE DE GAUZIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20242445704, + 44.0366406737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a951c1ebba2fa90d58fd4c608e1d4df90ee7b1cb", + "fields": { + "code_commune_insee": "30241", + "nom_de_la_commune": "ST CHAPTES", + "code_postal": "30190", + "coordonnees_gps": [ + 43.9676006581, + 4.2748195399 + ], + "libelle_d_acheminement": "ST CHAPTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2748195399, + 43.9676006581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc427754501f6786ff8be5f9158cd3f4447d2229", + "fields": { + "code_commune_insee": "30250", + "nom_de_la_commune": "ST ETIENNE DE L OLM", + "code_postal": "30360", + "coordonnees_gps": [ + 44.0631842726, + 4.183408258 + ], + "libelle_d_acheminement": "ST ETIENNE DE L OLM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.183408258, + 44.0631842726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "158d11d8ae8192b0c06723ce3ba460d5311f956d", + "fields": { + "code_commune_insee": "30251", + "nom_de_la_commune": "ST ETIENNE DES SORTS", + "code_postal": "30200", + "coordonnees_gps": [ + 44.178936222, + 4.70010353904 + ], + "libelle_d_acheminement": "ST ETIENNE DES SORTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70010353904, + 44.178936222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49e16c9f88c56d8f5b59cf80e1fd7ad56a720c76", + "fields": { + "code_commune_insee": "30259", + "nom_de_la_commune": "ST HILAIRE DE BRETHMAS", + "code_postal": "30560", + "coordonnees_gps": [ + 44.0920759418, + 4.12381898108 + ], + "libelle_d_acheminement": "ST HILAIRE DE BRETHMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12381898108, + 44.0920759418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7831907161dfc98c862c5486723c768a49386ade", + "fields": { + "code_commune_insee": "30261", + "nom_de_la_commune": "ST HIPPOLYTE DE CATON", + "code_postal": "30360", + "coordonnees_gps": [ + 44.0722209366, + 4.20182055496 + ], + "libelle_d_acheminement": "ST HIPPOLYTE DE CATON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20182055496, + 44.0722209366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccf44c86fc0ff820ba220385de7da0ef3a8fbc16", + "fields": { + "code_commune_insee": "30282", + "nom_de_la_commune": "ST MARCEL DE CAREIRET", + "code_postal": "30330", + "coordonnees_gps": [ + 44.1419755663, + 4.4845481491 + ], + "libelle_d_acheminement": "ST MARCEL DE CAREIRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4845481491, + 44.1419755663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3524a133f65b3dd321f05684ada1b47031ad7b2", + "fields": { + "code_commune_insee": "30285", + "nom_de_la_commune": "ST MAURICE DE CAZEVIEILLE", + "code_postal": "30360", + "coordonnees_gps": [ + 44.0353174953, + 4.24315062055 + ], + "libelle_d_acheminement": "ST MAURICE DE CAZEVIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24315062055, + 44.0353174953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bbe57dc41aaa908024bfd755f76543ce6d4aef0", + "fields": { + "code_commune_insee": "30286", + "nom_de_la_commune": "ST MAXIMIN", + "code_postal": "30700", + "coordonnees_gps": [ + 43.9881019257, + 4.45516450439 + ], + "libelle_d_acheminement": "ST MAXIMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45516450439, + 43.9881019257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "984b4716dc6edc2a59f4e40112b6113ace8491a9", + "fields": { + "code_commune_insee": "30287", + "nom_de_la_commune": "ST MICHEL D EUZET", + "code_postal": "30200", + "coordonnees_gps": [ + 44.2062878701, + 4.55120347402 + ], + "libelle_d_acheminement": "ST MICHEL D EUZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55120347402, + 44.2062878701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25162878e53b884a8d7d1f1f2cb951f2a36faf9f", + "fields": { + "code_commune_insee": "30292", + "nom_de_la_commune": "ST PONS LA CALM", + "code_postal": "30330", + "coordonnees_gps": [ + 44.0990342324, + 4.55422780097 + ], + "libelle_d_acheminement": "ST PONS LA CALM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55422780097, + 44.0990342324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43f039c7bdb8957e660176ab970c39c349a7a3ac", + "fields": { + "code_commune_insee": "30295", + "nom_de_la_commune": "ST QUENTIN LA POTERIE", + "code_postal": "30700", + "coordonnees_gps": [ + 44.057337074, + 4.43872425053 + ], + "libelle_d_acheminement": "ST QUENTIN LA POTERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43872425053, + 44.057337074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8c4ad0949a5680a0c90d2cddb14945776b97908", + "fields": { + "ligne_5": "CAMPRIEU", + "code_commune_insee": "30297", + "libelle_d_acheminement": "ST SAUVEUR CAMPRIEU", + "code_postal": "30750", + "nom_de_la_commune": "ST SAUVEUR CAMPRIEU", + "coordonnees_gps": [ + 44.1045314812, + 3.47514344344 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47514344344, + 44.1045314812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a762085f637870e46f2c4f7de9ea5c618db12927", + "fields": { + "code_commune_insee": "30298", + "nom_de_la_commune": "ST SEBASTIEN D AIGREFEUILLE", + "code_postal": "30140", + "coordonnees_gps": [ + 44.1146870465, + 3.99030045103 + ], + "libelle_d_acheminement": "ST SEBASTIEN D AIGREFEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99030045103, + 44.1146870465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa2c9bd680ac6805034ae25e62d5874308b9c14a", + "fields": { + "code_commune_insee": "30307", + "nom_de_la_commune": "LES SALLES DU GARDON", + "code_postal": "30110", + "coordonnees_gps": [ + 44.194603836, + 4.01746803987 + ], + "libelle_d_acheminement": "LES SALLES DU GARDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01746803987, + 44.194603836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8156d1730c8d59db6a01c68ef5038aa7412a2534", + "fields": { + "code_commune_insee": "30309", + "nom_de_la_commune": "SARDAN", + "code_postal": "30260", + "coordonnees_gps": [ + 43.8666268066, + 4.03456687975 + ], + "libelle_d_acheminement": "SARDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03456687975, + 43.8666268066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bec75a6261c9a8cf1d46f7f75e7adc130d8c8e4", + "fields": { + "code_commune_insee": "30311", + "nom_de_la_commune": "SAUVE", + "code_postal": "30610", + "coordonnees_gps": [ + 43.9373635895, + 3.95465985604 + ], + "libelle_d_acheminement": "SAUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95465985604, + 43.9373635895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "169d4ce6931f3c061d37f40520847d60989f8a1e", + "fields": { + "code_commune_insee": "30321", + "nom_de_la_commune": "SOMMIERES", + "code_postal": "30250", + "coordonnees_gps": [ + 43.7756118498, + 4.08232743857 + ], + "libelle_d_acheminement": "SOMMIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08232743857, + 43.7756118498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dff5fda095c4fa6dce2ab509fb91a1612f3b13a", + "fields": { + "code_commune_insee": "30327", + "nom_de_la_commune": "THARAUX", + "code_postal": "30430", + "coordonnees_gps": [ + 44.2419428616, + 4.32299911725 + ], + "libelle_d_acheminement": "THARAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32299911725, + 44.2419428616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e233db53ca8f0accdde8251130419d6dcd028b13", + "fields": { + "code_commune_insee": "30335", + "nom_de_la_commune": "VABRES", + "code_postal": "30460", + "coordonnees_gps": [ + 44.0265776812, + 3.88553119423 + ], + "libelle_d_acheminement": "VABRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88553119423, + 44.0265776812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0baa1b827e9e0db47600b0743737a983fcde6b97", + "fields": { + "code_commune_insee": "30336", + "nom_de_la_commune": "VALLABREGUES", + "code_postal": "30300", + "coordonnees_gps": [ + 43.8567379511, + 4.63352025788 + ], + "libelle_d_acheminement": "VALLABREGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63352025788, + 43.8567379511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70425d14f5c0963d6a167f1121ea20f181975420", + "fields": { + "ligne_5": "L ESPEROU", + "code_commune_insee": "30339", + "libelle_d_acheminement": "VAL D AIGOUAL", + "code_postal": "30570", + "nom_de_la_commune": "VAL D AIGOUAL", + "coordonnees_gps": [ + 44.0875534961, + 3.61946476562 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61946476562, + 44.0875534961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d3628891cc02ad8a51a86257d3e81264bbdefdf", + "fields": { + "ligne_5": "NOTRE DAME DE LA ROUVIERE", + "code_commune_insee": "30339", + "libelle_d_acheminement": "VAL D AIGOUAL", + "code_postal": "30570", + "nom_de_la_commune": "VAL D AIGOUAL", + "coordonnees_gps": [ + 44.0875534961, + 3.61946476562 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61946476562, + 44.0875534961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c57cf45d37bd270c0990a15a73b858d8987027f8", + "fields": { + "code_commune_insee": "30344", + "nom_de_la_commune": "VERGEZE", + "code_postal": "30310", + "coordonnees_gps": [ + 43.7375360363, + 4.23360990528 + ], + "libelle_d_acheminement": "VERGEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23360990528, + 43.7375360363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a07fbef1daa8baa0f5f49d5f081180663ffa9a62", + "fields": { + "code_commune_insee": "30353", + "nom_de_la_commune": "VISSEC", + "code_postal": "30770", + "coordonnees_gps": [ + 43.8965012071, + 3.45303005726 + ], + "libelle_d_acheminement": "VISSEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45303005726, + 43.8965012071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc47a61b52de1bf1a4879fcad55518dce4456af9", + "fields": { + "code_commune_insee": "30354", + "nom_de_la_commune": "MONTAGNAC", + "code_postal": "30350", + "coordonnees_gps": [ + 43.9375478225, + 4.1527019626 + ], + "libelle_d_acheminement": "MONTAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1527019626, + 43.9375478225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d2516279450bf91dd51f62d129f81666a5f73ca", + "fields": { + "code_commune_insee": "31006", + "nom_de_la_commune": "ALBIAC", + "code_postal": "31460", + "coordonnees_gps": [ + 43.5558012046, + 1.78268278702 + ], + "libelle_d_acheminement": "ALBIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78268278702, + 43.5558012046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46ac7a02b8028688e0caf68443b7394813a6d48e", + "fields": { + "code_commune_insee": "31011", + "nom_de_la_commune": "ARBAS", + "code_postal": "31160", + "coordonnees_gps": [ + 42.9925595052, + 0.905628547412 + ], + "libelle_d_acheminement": "ARBAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.905628547412, + 42.9925595052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed7f3fc27d3c8c2f81be0c232eeca4a4c380b062", + "fields": { + "code_commune_insee": "31020", + "nom_de_la_commune": "ASPET", + "code_postal": "31160", + "coordonnees_gps": [ + 43.0114092218, + 0.805918611708 + ], + "libelle_d_acheminement": "ASPET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.805918611708, + 43.0114092218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "568f6617dfc416c653772733903fe2e735e883c4", + "fields": { + "code_commune_insee": "31033", + "nom_de_la_commune": "AUTERIVE", + "code_postal": "31190", + "coordonnees_gps": [ + 43.3595991576, + 1.47742796554 + ], + "libelle_d_acheminement": "AUTERIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47742796554, + 43.3595991576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17bc2b659783b64ab8309ec1af61f6c532857157", + "fields": { + "code_commune_insee": "31036", + "nom_de_la_commune": "AUZIELLE", + "code_postal": "31650", + "coordonnees_gps": [ + 43.540140769, + 1.56831984014 + ], + "libelle_d_acheminement": "AUZIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56831984014, + 43.540140769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63ccc3483ae246b2d680f46bd8e6b627c846b870", + "fields": { + "code_commune_insee": "31038", + "nom_de_la_commune": "AZAS", + "code_postal": "31380", + "coordonnees_gps": [ + 43.7200477116, + 1.67437358788 + ], + "libelle_d_acheminement": "AZAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67437358788, + 43.7200477116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4658fb69004c038604d1914dbbb956b978efef0f", + "fields": { + "code_commune_insee": "31039", + "nom_de_la_commune": "BACHAS", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2487475475, + 0.941734227527 + ], + "libelle_d_acheminement": "BACHAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.941734227527, + 43.2487475475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3d52a15845f320212a9e63a60a36263526cd398", + "fields": { + "code_commune_insee": "31044", + "nom_de_la_commune": "BALMA", + "code_postal": "31130", + "coordonnees_gps": [ + 43.6115258731, + 1.50459138348 + ], + "libelle_d_acheminement": "BALMA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50459138348, + 43.6115258731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edd8a2a79972706d6be92d2055688b02c7c096eb", + "fields": { + "code_commune_insee": "31049", + "nom_de_la_commune": "BAZUS", + "code_postal": "31380", + "coordonnees_gps": [ + 43.7357441741, + 1.51960464279 + ], + "libelle_d_acheminement": "BAZUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51960464279, + 43.7357441741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50685f0d3b09ead5c71ad6cc358af067f83b49aa", + "fields": { + "code_commune_insee": "31061", + "nom_de_la_commune": "BELLEGARDE STE MARIE", + "code_postal": "31530", + "coordonnees_gps": [ + 43.6757290894, + 1.09962618337 + ], + "libelle_d_acheminement": "BELLEGARDE STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09962618337, + 43.6757290894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd09365946c71e4a0f659511e627d11b876275b6", + "fields": { + "code_commune_insee": "31070", + "nom_de_la_commune": "BLAJAN", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2538737528, + 0.647870154984 + ], + "libelle_d_acheminement": "BLAJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.647870154984, + 43.2538737528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbde65c6af2a169d69cd765b595b3e237ec71388", + "fields": { + "code_commune_insee": "31083", + "nom_de_la_commune": "BOUSSAN", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2416263928, + 0.875149673224 + ], + "libelle_d_acheminement": "BOUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.875149673224, + 43.2416263928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a4aeffdeced821e4e0cb4bd6e27fddbab050a3f", + "fields": { + "code_commune_insee": "31085", + "nom_de_la_commune": "BOUTX", + "code_postal": "31160", + "coordonnees_gps": [ + 42.9153786194, + 0.770355750474 + ], + "libelle_d_acheminement": "BOUTX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.770355750474, + 42.9153786194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f22144331ea1a01bb76a0dab4f651f2d4b00d7e8", + "fields": { + "code_commune_insee": "31090", + "nom_de_la_commune": "BRIGNEMONT", + "code_postal": "31480", + "coordonnees_gps": [ + 43.7692039824, + 0.998300952278 + ], + "libelle_d_acheminement": "BRIGNEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.998300952278, + 43.7692039824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1412532db6799a3d14ed073367a9381cb9fc8f5f", + "fields": { + "code_commune_insee": "31092", + "nom_de_la_commune": "BURGALAYS", + "code_postal": "31440", + "coordonnees_gps": [ + 42.8843664785, + 0.636511847302 + ], + "libelle_d_acheminement": "BURGALAYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.636511847302, + 42.8843664785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddeb78ff3b36473cf0a0c0d366f25b4055c1ef08", + "fields": { + "code_commune_insee": "31093", + "nom_de_la_commune": "LE BURGAUD", + "code_postal": "31330", + "coordonnees_gps": [ + 43.7897007314, + 1.14613239704 + ], + "libelle_d_acheminement": "LE BURGAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14613239704, + 43.7897007314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa8ffa3cbcf8d73038d40fdcdabe560c4b835b29", + "fields": { + "code_commune_insee": "31094", + "nom_de_la_commune": "BUZET SUR TARN", + "code_postal": "31660", + "coordonnees_gps": [ + 43.7685831064, + 1.61379658307 + ], + "libelle_d_acheminement": "BUZET SUR TARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61379658307, + 43.7685831064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "296dba9820e9c1fd07c752bab8822035fde6a3e2", + "fields": { + "code_commune_insee": "31099", + "nom_de_la_commune": "CAIGNAC", + "code_postal": "31560", + "coordonnees_gps": [ + 43.3198333866, + 1.70726784599 + ], + "libelle_d_acheminement": "CAIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70726784599, + 43.3198333866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e63cc37857a0a5fc76f2d3ce9bde0151cc29f5d", + "fields": { + "code_commune_insee": "31102", + "nom_de_la_commune": "CAMBIAC", + "code_postal": "31460", + "coordonnees_gps": [ + 43.4906846108, + 1.7895005846 + ], + "libelle_d_acheminement": "CAMBIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7895005846, + 43.4906846108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d316429a2e925b0357c918869fd59ae2c9820b91", + "fields": { + "code_commune_insee": "31104", + "nom_de_la_commune": "CAPENS", + "code_postal": "31410", + "coordonnees_gps": [ + 43.3349294314, + 1.25981787784 + ], + "libelle_d_acheminement": "CAPENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25981787784, + 43.3349294314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de66658ea4230d36a58416c7291c06d12442b4e6", + "fields": { + "code_commune_insee": "31111", + "nom_de_la_commune": "CASTAGNAC", + "code_postal": "31310", + "coordonnees_gps": [ + 43.2357808923, + 1.34342211864 + ], + "libelle_d_acheminement": "CASTAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34342211864, + 43.2357808923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96a96551688d6bb70721bb30c7a00d12205d292c", + "fields": { + "code_commune_insee": "31118", + "nom_de_la_commune": "CASTELNAU D ESTRETEFONDS", + "code_postal": "31620", + "coordonnees_gps": [ + 43.7938485319, + 1.36164575228 + ], + "libelle_d_acheminement": "CASTELNAU D ESTRETEFONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36164575228, + 43.7938485319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bba73ce73780ce3329de0b8db275c07f279f2c98", + "fields": { + "code_commune_insee": "31120", + "nom_de_la_commune": "LE CASTERA", + "code_postal": "31530", + "coordonnees_gps": [ + 43.6709769042, + 1.14478354083 + ], + "libelle_d_acheminement": "LE CASTERA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14478354083, + 43.6709769042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2686ccd79f31e686d6cfbc9828793560e056010e", + "fields": { + "code_commune_insee": "31122", + "nom_de_la_commune": "CASTIES LABRANDE", + "code_postal": "31430", + "coordonnees_gps": [ + 43.3277537605, + 0.993442219827 + ], + "libelle_d_acheminement": "CASTIES LABRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.993442219827, + 43.3277537605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a56c5ae87717fc4de7c838048730acedf526450", + "fields": { + "code_commune_insee": "31124", + "nom_de_la_commune": "CASTILLON DE ST MARTORY", + "code_postal": "31360", + "coordonnees_gps": [ + 43.1370495507, + 0.85105513739 + ], + "libelle_d_acheminement": "CASTILLON DE ST MARTORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.85105513739, + 43.1370495507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac3dbbc6507bbd197a2a3fbf5fa5d06a862db401", + "fields": { + "code_commune_insee": "31126", + "nom_de_la_commune": "CAUBIAC", + "code_postal": "31480", + "coordonnees_gps": [ + 43.7125921487, + 1.07397427745 + ], + "libelle_d_acheminement": "CAUBIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07397427745, + 43.7125921487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60f486e994b183df46f3333fd854767334b845f4", + "fields": { + "code_commune_insee": "31130", + "nom_de_la_commune": "CAZARIL TAMBOURES", + "code_postal": "31580", + "coordonnees_gps": [ + 43.1788077509, + 0.542510380737 + ], + "libelle_d_acheminement": "CAZARIL TAMBOURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.542510380737, + 43.1788077509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51985b3354079e33b57bba755ecc9c83bd1d6f4e", + "fields": { + "code_commune_insee": "31138", + "nom_de_la_commune": "CHARLAS", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2348620217, + 0.69256790688 + ], + "libelle_d_acheminement": "CHARLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69256790688, + 43.2348620217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "887a2d0e94c4779acc8dd790b90a16db1d19ceb6", + "fields": { + "code_commune_insee": "31139", + "nom_de_la_commune": "CHAUM", + "code_postal": "31440", + "coordonnees_gps": [ + 42.9406957068, + 0.66516191816 + ], + "libelle_d_acheminement": "CHAUM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66516191816, + 42.9406957068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0da8d4eda40cbd57b9a87bafb035febda57e82ce", + "fields": { + "code_commune_insee": "31141", + "nom_de_la_commune": "CIADOUX", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2542454661, + 0.742080761345 + ], + "libelle_d_acheminement": "CIADOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.742080761345, + 43.2542454661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6315f4de35cadb289591f1e3d27f02ca7a254a9", + "fields": { + "code_commune_insee": "31142", + "nom_de_la_commune": "CIER DE LUCHON", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8554210387, + 0.587203790496 + ], + "libelle_d_acheminement": "CIER DE LUCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.587203790496, + 42.8554210387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3b13ec79d99a8e8db2df17bc7caa8d6a0e80c49", + "fields": { + "code_commune_insee": "31145", + "nom_de_la_commune": "CINTEGABELLE", + "code_postal": "31550", + "coordonnees_gps": [ + 43.3068275347, + 1.53572104777 + ], + "libelle_d_acheminement": "CINTEGABELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53572104777, + 43.3068275347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3823fe2970dd9717daaba63ba0ec7ea5e271c662", + "fields": { + "code_commune_insee": "31148", + "nom_de_la_commune": "CLERMONT LE FORT", + "code_postal": "31810", + "coordonnees_gps": [ + 43.4584289455, + 1.44262793201 + ], + "libelle_d_acheminement": "CLERMONT LE FORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44262793201, + 43.4584289455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dece8b82c70f392dbf49bd0d87bb9d9efb62ec63", + "fields": { + "code_commune_insee": "31149", + "nom_de_la_commune": "COLOMIERS", + "code_postal": "31770", + "coordonnees_gps": [ + 43.611551508, + 1.32700218407 + ], + "libelle_d_acheminement": "COLOMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32700218407, + 43.611551508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3300d03b61a6200f0b7360eab7bbf9dd7c0ef0d4", + "fields": { + "code_commune_insee": "31153", + "nom_de_la_commune": "COULADERE", + "code_postal": "31220", + "coordonnees_gps": [ + 43.1961985642, + 1.09427022824 + ], + "libelle_d_acheminement": "COULADERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09427022824, + 43.1961985642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e3780bdcc7a9c0e0b3ca62c07117dfdc7ce021c", + "fields": { + "code_commune_insee": "31155", + "nom_de_la_commune": "COURET", + "code_postal": "31160", + "coordonnees_gps": [ + 43.0492105288, + 0.816891672701 + ], + "libelle_d_acheminement": "COURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.816891672701, + 43.0492105288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d3883969d50b9367b4c2e64f2483b729b1d387a", + "fields": { + "code_commune_insee": "31157", + "nom_de_la_commune": "CUGNAUX", + "code_postal": "31270", + "coordonnees_gps": [ + 43.5449211242, + 1.34286223759 + ], + "libelle_d_acheminement": "CUGNAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34286223759, + 43.5449211242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43001cbac5d1385592d5b71ff52c1181fdbe037d", + "fields": { + "code_commune_insee": "31161", + "nom_de_la_commune": "DEYME", + "code_postal": "31450", + "coordonnees_gps": [ + 43.482390026, + 1.53265253499 + ], + "libelle_d_acheminement": "DEYME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53265253499, + 43.482390026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef352c2865c7945ff6c65730a1c484b4f640b3e5", + "fields": { + "code_commune_insee": "31165", + "nom_de_la_commune": "EAUNES", + "code_postal": "31600", + "coordonnees_gps": [ + 43.4276929383, + 1.35897762267 + ], + "libelle_d_acheminement": "EAUNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35897762267, + 43.4276929383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbac76b27a0870cbf4405baa3f5ecb0c044b77c5", + "fields": { + "code_commune_insee": "31172", + "nom_de_la_commune": "ESPARRON", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2611725663, + 0.811588466445 + ], + "libelle_d_acheminement": "ESPARRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.811588466445, + 43.2611725663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d0f94e15b134a2873cf27ee4c02d05bec5742f5", + "fields": { + "code_commune_insee": "31177", + "nom_de_la_commune": "EUP", + "code_postal": "31440", + "coordonnees_gps": [ + 42.9263371588, + 0.684482235648 + ], + "libelle_d_acheminement": "EUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.684482235648, + 42.9263371588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc060ce4b0b32c29aa855045cb08461002a02798", + "fields": { + "code_commune_insee": "31179", + "nom_de_la_commune": "LE FAGET", + "code_postal": "31460", + "coordonnees_gps": [ + 43.5648428927, + 1.8260785638 + ], + "libelle_d_acheminement": "LE FAGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8260785638, + 43.5648428927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dacffb6cc6ab10d0a27e19c52ac03644dabd441d", + "fields": { + "code_commune_insee": "31197", + "nom_de_la_commune": "FRANQUEVIELLE", + "code_postal": "31210", + "coordonnees_gps": [ + 43.1310604911, + 0.534188956985 + ], + "libelle_d_acheminement": "FRANQUEVIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.534188956985, + 43.1310604911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e268c35db8880ba874e0329b8c661a8f8c3bd3de", + "fields": { + "code_commune_insee": "31207", + "nom_de_la_commune": "GALIE", + "code_postal": "31510", + "coordonnees_gps": [ + 42.9928750426, + 0.633738295094 + ], + "libelle_d_acheminement": "GALIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.633738295094, + 42.9928750426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48598ad99a18e3fd2250212c47f0211ba9c8b4a9", + "fields": { + "code_commune_insee": "31212", + "nom_de_la_commune": "GARIDECH", + "code_postal": "31380", + "coordonnees_gps": [ + 43.7133738852, + 1.55161276907 + ], + "libelle_d_acheminement": "GARIDECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55161276907, + 43.7133738852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8de989d4ae02281c68dfdbaa54c283c35df13a77", + "fields": { + "code_commune_insee": "31213", + "nom_de_la_commune": "GARIN", + "code_postal": "31110", + "coordonnees_gps": [ + 42.807334211, + 0.497947731737 + ], + "libelle_d_acheminement": "GARIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.497947731737, + 42.807334211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9e743d8b986bed5e7b9694071e8918af28f8965", + "fields": { + "code_commune_insee": "31216", + "nom_de_la_commune": "GEMIL", + "code_postal": "31380", + "coordonnees_gps": [ + 43.7390147281, + 1.59616914343 + ], + "libelle_d_acheminement": "GEMIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59616914343, + 43.7390147281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cd750c6336e3f016d3d93eb4651d4202ed2dc29", + "fields": { + "code_commune_insee": "31217", + "nom_de_la_commune": "GENOS", + "code_postal": "31510", + "coordonnees_gps": [ + 42.9989362033, + 0.668863538548 + ], + "libelle_d_acheminement": "GENOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.668863538548, + 42.9989362033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13b24e35f66b3118f20bd108f095e27cb1419038", + "fields": { + "code_commune_insee": "31219", + "nom_de_la_commune": "GENSAC SUR GARONNE", + "code_postal": "31310", + "coordonnees_gps": [ + 43.2158175137, + 1.14295187522 + ], + "libelle_d_acheminement": "GENSAC SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14295187522, + 43.2158175137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43c8e11b8489a53f3d32177f7b500215b7b63b80", + "fields": { + "code_commune_insee": "31225", + "nom_de_la_commune": "GOUTEVERNISSE", + "code_postal": "31310", + "coordonnees_gps": [ + 43.2140263014, + 1.17376592029 + ], + "libelle_d_acheminement": "GOUTEVERNISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17376592029, + 43.2140263014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57dacbe17a623b4cbef55f42b77cf9b89b9deac6", + "fields": { + "code_commune_insee": "31227", + "nom_de_la_commune": "GOYRANS", + "code_postal": "31120", + "coordonnees_gps": [ + 43.4816353803, + 1.42653323258 + ], + "libelle_d_acheminement": "GOYRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42653323258, + 43.4816353803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65ef9d8f9f2f7a2a29e8343070b58714a598e284", + "fields": { + "code_commune_insee": "31233", + "nom_de_la_commune": "GREPIAC", + "code_postal": "31190", + "coordonnees_gps": [ + 43.4078546478, + 1.45277463176 + ], + "libelle_d_acheminement": "GREPIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45277463176, + 43.4078546478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46278b95f5cbedfde9daff6163e43b2a1cb5079a", + "fields": { + "code_commune_insee": "31236", + "nom_de_la_commune": "HERRAN", + "code_postal": "31160", + "coordonnees_gps": [ + 42.9719649863, + 0.885660776588 + ], + "libelle_d_acheminement": "HERRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.885660776588, + 42.9719649863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3c6af054afda132a7d4374347291dde15d31f47", + "fields": { + "code_commune_insee": "31237", + "nom_de_la_commune": "HIS", + "code_postal": "31260", + "coordonnees_gps": [ + 43.0649908424, + 0.965815037259 + ], + "libelle_d_acheminement": "HIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.965815037259, + 43.0649908424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "833b6ac054a0e4264eecffc5718133f72401138d", + "fields": { + "code_commune_insee": "31240", + "nom_de_la_commune": "ISSUS", + "code_postal": "31450", + "coordonnees_gps": [ + 43.422775887, + 1.50277699611 + ], + "libelle_d_acheminement": "ISSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50277699611, + 43.422775887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b2cb959e9c72287d6456bdb67ee2e0db9d3f305", + "fields": { + "code_commune_insee": "31242", + "nom_de_la_commune": "JURVIELLE", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8293252731, + 0.475016792399 + ], + "libelle_d_acheminement": "JURVIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.475016792399, + 42.8293252731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "490b2be727e511d8b57d2e15ccd42b86d35374ed", + "fields": { + "code_commune_insee": "31246", + "nom_de_la_commune": "LABARTHE INARD", + "code_postal": "31800", + "coordonnees_gps": [ + 43.1078272135, + 0.832464946547 + ], + "libelle_d_acheminement": "LABARTHE INARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.832464946547, + 43.1078272135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc0cc231aa4fdcaf554037faebc1235695fdd9c1", + "fields": { + "code_commune_insee": "31250", + "nom_de_la_commune": "LABASTIDE CLERMONT", + "code_postal": "31370", + "coordonnees_gps": [ + 43.3495275482, + 1.10615893654 + ], + "libelle_d_acheminement": "LABASTIDE CLERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10615893654, + 43.3495275482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "921f78601453f99f523c69d1fef8dc11f3eff8b9", + "fields": { + "code_commune_insee": "31259", + "nom_de_la_commune": "LACROIX FALGARDE", + "code_postal": "31120", + "coordonnees_gps": [ + 43.5008164665, + 1.42391034404 + ], + "libelle_d_acheminement": "LACROIX FALGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42391034404, + 43.5008164665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "558f05da735aa2bc24aebb7038829d9437456618", + "fields": { + "code_commune_insee": "31264", + "nom_de_la_commune": "LAGRACE DIEU", + "code_postal": "31190", + "coordonnees_gps": [ + 43.3373994555, + 1.40523002745 + ], + "libelle_d_acheminement": "LAGRACE DIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40523002745, + 43.3373994555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01eac445040bddde19fa6d76f91a9d652790e465", + "fields": { + "code_commune_insee": "31265", + "nom_de_la_commune": "LAGRAULET ST NICOLAS", + "code_postal": "31480", + "coordonnees_gps": [ + 43.788801434, + 1.07315140628 + ], + "libelle_d_acheminement": "LAGRAULET ST NICOLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07315140628, + 43.788801434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1608bd9caf5935ed1f6322c4fdfe040a0cce96a7", + "fields": { + "code_commune_insee": "31272", + "nom_de_la_commune": "LAPEYRERE", + "code_postal": "31310", + "coordonnees_gps": [ + 43.2048767713, + 1.3113589407 + ], + "libelle_d_acheminement": "LAPEYRERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3113589407, + 43.2048767713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf1d094cabed98845192852939089f5b798ff6fa", + "fields": { + "code_commune_insee": "31274", + "nom_de_la_commune": "LARCAN", + "code_postal": "31800", + "coordonnees_gps": [ + 43.1712212106, + 0.721733118542 + ], + "libelle_d_acheminement": "LARCAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.721733118542, + 43.1712212106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ecf573159c7d7c06805d8e2224ffeb7251272aa", + "fields": { + "code_commune_insee": "31276", + "nom_de_la_commune": "LARROQUE", + "code_postal": "31580", + "coordonnees_gps": [ + 43.1954638712, + 0.613620624172 + ], + "libelle_d_acheminement": "LARROQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.613620624172, + 43.1954638712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a99d72e7e11f16b1f66f4b0367e86536c0ab5d0", + "fields": { + "code_commune_insee": "31283", + "nom_de_la_commune": "LAUTIGNAC", + "code_postal": "31370", + "coordonnees_gps": [ + 43.3790098177, + 1.06344919114 + ], + "libelle_d_acheminement": "LAUTIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06344919114, + 43.3790098177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57ff0fd789d7ae413025b090f9fdc7831b37b58b", + "fields": { + "code_commune_insee": "31286", + "nom_de_la_commune": "LAVELANET DE COMMINGES", + "code_postal": "31220", + "coordonnees_gps": [ + 43.2526939851, + 1.11470722168 + ], + "libelle_d_acheminement": "LAVELANET DE COMMINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11470722168, + 43.2526939851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a66f66f3ac8250769e1735566e09c2c0792fb170", + "fields": { + "code_commune_insee": "31288", + "nom_de_la_commune": "LAYRAC SUR TARN", + "code_postal": "31340", + "coordonnees_gps": [ + 43.8338907069, + 1.56284949072 + ], + "libelle_d_acheminement": "LAYRAC SUR TARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56284949072, + 43.8338907069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf6dc63069feffc421fe49269700877a80edc4bf", + "fields": { + "code_commune_insee": "31293", + "nom_de_la_commune": "LESPINASSE", + "code_postal": "31150", + "coordonnees_gps": [ + 43.7158013757, + 1.38334888533 + ], + "libelle_d_acheminement": "LESPINASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38334888533, + 43.7158013757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5183b438ac5f1144934c03dc60c3e850aee02302", + "fields": { + "code_commune_insee": "31310", + "nom_de_la_commune": "LUX", + "code_postal": "31290", + "coordonnees_gps": [ + 43.4310851091, + 1.78134765321 + ], + "libelle_d_acheminement": "LUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78134765321, + 43.4310851091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1422dae8fd3fdf2adc7be3939fcf7a4c6401133e", + "fields": { + "code_commune_insee": "31319", + "nom_de_la_commune": "MARLIAC", + "code_postal": "31550", + "coordonnees_gps": [ + 43.2236919388, + 1.47249380734 + ], + "libelle_d_acheminement": "MARLIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47249380734, + 43.2236919388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "826d0987eb4e6717a3be5e9bc9976f881c1b000f", + "fields": { + "code_commune_insee": "31333", + "nom_de_la_commune": "MAUVEZIN", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3839989782, + 0.920647647087 + ], + "libelle_d_acheminement": "MAUVEZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.920647647087, + 43.3839989782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f8a64a2801c63b4e6a2cab604e2e9f70cd3413d", + "fields": { + "code_commune_insee": "31340", + "nom_de_la_commune": "MERVILLA", + "code_postal": "31320", + "coordonnees_gps": [ + 43.506330557, + 1.47317310348 + ], + "libelle_d_acheminement": "MERVILLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47317310348, + 43.506330557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87fa9a0767cfdaf7fa408d3bd614053bd3759ea3", + "fields": { + "code_commune_insee": "31344", + "nom_de_la_commune": "MIRAMONT DE COMMINGES", + "code_postal": "31800", + "coordonnees_gps": [ + 43.0914345294, + 0.755642928853 + ], + "libelle_d_acheminement": "MIRAMONT DE COMMINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.755642928853, + 43.0914345294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ace0feaf6e680d65ef15f66d0332f3bea4a844d7", + "fields": { + "code_commune_insee": "31347", + "nom_de_la_commune": "MOLAS", + "code_postal": "31230", + "coordonnees_gps": [ + 43.4003607782, + 0.779212974903 + ], + "libelle_d_acheminement": "MOLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.779212974903, + 43.4003607782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73dd3fd40526aa9ca45e09ff5b7e4d592c52260d", + "fields": { + "code_commune_insee": "31350", + "nom_de_la_commune": "MONDILHAN", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2903291141, + 0.707925774344 + ], + "libelle_d_acheminement": "MONDILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.707925774344, + 43.2903291141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af65dd6fa50d2ed3b41283d585b880932dc51317", + "fields": { + "code_commune_insee": "31355", + "nom_de_la_commune": "MONS", + "code_postal": "31280", + "coordonnees_gps": [ + 43.6112261836, + 1.57399371785 + ], + "libelle_d_acheminement": "MONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57399371785, + 43.6112261836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92433ebc28cf9ca7236577162699d7e7f157b9c5", + "fields": { + "code_commune_insee": "31364", + "nom_de_la_commune": "MONTBERON", + "code_postal": "31140", + "coordonnees_gps": [ + 43.7203107344, + 1.48894998415 + ], + "libelle_d_acheminement": "MONTBERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48894998415, + 43.7203107344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03ded08fc9e3f4805b9519c06e22aa3a74dd54a0", + "fields": { + "code_commune_insee": "31366", + "nom_de_la_commune": "MONTBRUN LAURAGAIS", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4558727053, + 1.51983884361 + ], + "libelle_d_acheminement": "MONTBRUN LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51983884361, + 43.4558727053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cb63eee6fe6972b49b81661423603bac63c4087", + "fields": { + "code_commune_insee": "31376", + "nom_de_la_commune": "MONTGAILLARD DE SALIES", + "code_postal": "31260", + "coordonnees_gps": [ + 43.0589200964, + 0.93221860467 + ], + "libelle_d_acheminement": "MONTGAILLARD DE SALIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93221860467, + 43.0589200964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "806a805a80eb2cc0f6f553897e34a4ee173d514c", + "fields": { + "code_commune_insee": "31381", + "nom_de_la_commune": "MONTGISCARD", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4551909277, + 1.57052406322 + ], + "libelle_d_acheminement": "MONTGISCARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57052406322, + 43.4551909277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c82a7f65064a07e0bab4ccc383ac17885e9c6030", + "fields": { + "code_commune_insee": "31392", + "nom_de_la_commune": "MOURVILLES BASSES", + "code_postal": "31460", + "coordonnees_gps": [ + 43.4889625635, + 1.69918635087 + ], + "libelle_d_acheminement": "MOURVILLES BASSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69918635087, + 43.4889625635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18c9b9241be8f8d1c7820f29a85eead8d84f5ece", + "fields": { + "code_commune_insee": "31394", + "nom_de_la_commune": "MOUSTAJON", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8148264223, + 0.591908165377 + ], + "libelle_d_acheminement": "MOUSTAJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.591908165377, + 42.8148264223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "317c8b62357a9e67bc744ea356214851787e3ed9", + "fields": { + "code_commune_insee": "31404", + "nom_de_la_commune": "OO", + "code_postal": "31110", + "coordonnees_gps": [ + 42.7417285924, + 0.496415293313 + ], + "libelle_d_acheminement": "OO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.496415293313, + 42.7417285924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfdf6cc7e5b5c0e24d655752b6286abb00f2e2cb", + "fields": { + "code_commune_insee": "31411", + "nom_de_la_commune": "PECHBUSQUE", + "code_postal": "31320", + "coordonnees_gps": [ + 43.5246551254, + 1.45720316264 + ], + "libelle_d_acheminement": "PECHBUSQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45720316264, + 43.5246551254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f965a59d3232f98da83ec9bbfa02db99d62e04d", + "fields": { + "code_commune_insee": "31425", + "nom_de_la_commune": "LE PLAN", + "code_postal": "31220", + "coordonnees_gps": [ + 43.1672002884, + 1.12227665636 + ], + "libelle_d_acheminement": "LE PLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12227665636, + 43.1672002884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d366d14969d1c53cd2e10e611a85dc9e2578902", + "fields": { + "code_commune_insee": "31429", + "nom_de_la_commune": "POMPERTUZAT", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4942932481, + 1.52109130847 + ], + "libelle_d_acheminement": "POMPERTUZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52109130847, + 43.4942932481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "956ebd49357047d3a1d868ef7fd9c7bd54c73af1", + "fields": { + "code_commune_insee": "31431", + "nom_de_la_commune": "PORTET D ASPET", + "code_postal": "31160", + "coordonnees_gps": [ + 42.9423055988, + 0.855583620604 + ], + "libelle_d_acheminement": "PORTET D ASPET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.855583620604, + 42.9423055988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53ab214b9e22aa232f5a714646ca579fa4927412", + "fields": { + "code_commune_insee": "31441", + "nom_de_la_commune": "PRUNET", + "code_postal": "31460", + "coordonnees_gps": [ + 43.572419221, + 1.72976428437 + ], + "libelle_d_acheminement": "PRUNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72976428437, + 43.572419221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c07754cfdd6533de5a801ab82cabe6fc46c9cdc", + "fields": { + "code_commune_insee": "31442", + "nom_de_la_commune": "PUYDANIEL", + "code_postal": "31190", + "coordonnees_gps": [ + 43.3315793441, + 1.42275207158 + ], + "libelle_d_acheminement": "PUYDANIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42275207158, + 43.3315793441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0acdf9797cf3fc37ffba7161984b1574cb3c71cc", + "fields": { + "code_commune_insee": "31454", + "nom_de_la_commune": "RIEUMES", + "code_postal": "31370", + "coordonnees_gps": [ + 43.4121701053, + 1.11454294712 + ], + "libelle_d_acheminement": "RIEUMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11454294712, + 43.4121701053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fedf3a3dc07018aacb00527d1f3c5ab7e7e5c65", + "fields": { + "code_commune_insee": "31458", + "nom_de_la_commune": "ROQUES", + "code_postal": "31120", + "coordonnees_gps": [ + 43.5074145403, + 1.35458627554 + ], + "libelle_d_acheminement": "ROQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35458627554, + 43.5074145403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54642c475a0343edc81920b2dbb32462c988d568", + "fields": { + "code_commune_insee": "31462", + "nom_de_la_commune": "ROUFFIAC TOLOSAN", + "code_postal": "31180", + "coordonnees_gps": [ + 43.6638973409, + 1.52541943073 + ], + "libelle_d_acheminement": "ROUFFIAC TOLOSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52541943073, + 43.6638973409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc2c33b1937c5bc1eaac0be5662b2ebb8625d5ef", + "fields": { + "code_commune_insee": "31475", + "nom_de_la_commune": "ST CLAR DE RIVIERE", + "code_postal": "31600", + "coordonnees_gps": [ + 43.4758983843, + 1.20896843964 + ], + "libelle_d_acheminement": "ST CLAR DE RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20896843964, + 43.4758983843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b24d5b5ccf6257658ae66e9d5fad604b0e7d6ea", + "fields": { + "code_commune_insee": "31480", + "nom_de_la_commune": "STE FOY D AIGREFEUILLE", + "code_postal": "31570", + "coordonnees_gps": [ + 43.5509540982, + 1.60301367182 + ], + "libelle_d_acheminement": "STE FOY D AIGREFEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60301367182, + 43.5509540982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fc9d43c6cbdf4db9af3a8ffb3061b6909cb27a9", + "fields": { + "code_commune_insee": "31482", + "nom_de_la_commune": "ST FRAJOU", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3310218183, + 0.85024475987 + ], + "libelle_d_acheminement": "ST FRAJOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.85024475987, + 43.3310218183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d55c270ae9c78e57318b01f1deaabfd369a6400", + "fields": { + "code_commune_insee": "31490", + "nom_de_la_commune": "ST JORY", + "code_postal": "31790", + "coordonnees_gps": [ + 43.739344106, + 1.35625454624 + ], + "libelle_d_acheminement": "ST JORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35625454624, + 43.739344106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee0479823c44b8ec8222694debe7c55278e6d39f", + "fields": { + "code_commune_insee": "31494", + "nom_de_la_commune": "ST LAURENT", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3254205164, + 0.800339678541 + ], + "libelle_d_acheminement": "ST LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.800339678541, + 43.3254205164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b95267c57ff15738d08ab8b466ca2e7de1107fec", + "fields": { + "code_commune_insee": "31504", + "nom_de_la_commune": "ST MEDARD", + "code_postal": "31360", + "coordonnees_gps": [ + 43.1279328129, + 0.829383630531 + ], + "libelle_d_acheminement": "ST MEDARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.829383630531, + 43.1279328129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f30f27a389548df404cb1a91e8bb3e598d3f7d36", + "fields": { + "code_commune_insee": "31506", + "nom_de_la_commune": "ST ORENS DE GAMEVILLE", + "code_postal": "31650", + "coordonnees_gps": [ + 43.5590787673, + 1.53513710649 + ], + "libelle_d_acheminement": "ST ORENS DE GAMEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53513710649, + 43.5590787673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c320a1e47d645ae449673eae8432a032fdd6db4", + "fields": { + "code_commune_insee": "31507", + "nom_de_la_commune": "ST PAUL SUR SAVE", + "code_postal": "31530", + "coordonnees_gps": [ + 43.69951639, + 1.22058648021 + ], + "libelle_d_acheminement": "ST PAUL SUR SAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22058648021, + 43.69951639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83ca2c17b6d1e66413d20ab4c3f5471aad48434d", + "fields": { + "code_commune_insee": "31513", + "nom_de_la_commune": "ST PLANCARD", + "code_postal": "31580", + "coordonnees_gps": [ + 43.1679631081, + 0.570009022734 + ], + "libelle_d_acheminement": "ST PLANCARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.570009022734, + 43.1679631081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "807eea38ceb9cc1092e5b128574384fbcb170332", + "fields": { + "code_commune_insee": "31515", + "nom_de_la_commune": "ST RUSTICE", + "code_postal": "31620", + "coordonnees_gps": [ + 43.8031334358, + 1.32817608757 + ], + "libelle_d_acheminement": "ST RUSTICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32817608757, + 43.8031334358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e3b39efad1fd49126af865cb0386373fb02237c", + "fields": { + "code_commune_insee": "31519", + "nom_de_la_commune": "ST VINCENT", + "code_postal": "31290", + "coordonnees_gps": [ + 43.440547263, + 1.75817528025 + ], + "libelle_d_acheminement": "ST VINCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75817528025, + 43.440547263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "175ec1c9c4db96b3ad6b9ceeb44163eebe5154f4", + "fields": { + "code_commune_insee": "31526", + "nom_de_la_commune": "LA SALVETAT ST GILLES", + "code_postal": "31880", + "coordonnees_gps": [ + 43.5754800218, + 1.26616319872 + ], + "libelle_d_acheminement": "LA SALVETAT ST GILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26616319872, + 43.5754800218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b03f06f7b905b08ba48f65f5acb9632fa8e699e", + "fields": { + "code_commune_insee": "31527", + "nom_de_la_commune": "LA SALVETAT LAURAGAIS", + "code_postal": "31460", + "coordonnees_gps": [ + 43.547792475, + 1.80042409338 + ], + "libelle_d_acheminement": "LA SALVETAT LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80042409338, + 43.547792475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0e7ed1aa605c6737c7643689c9a67ecf7c26acb", + "fields": { + "code_commune_insee": "31528", + "nom_de_la_commune": "SAMAN", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2385588736, + 0.721968403674 + ], + "libelle_d_acheminement": "SAMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.721968403674, + 43.2385588736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f502029ceca0d00162325d245ecbdd2f6e8a9a9", + "fields": { + "code_commune_insee": "31529", + "nom_de_la_commune": "SAMOUILLAN", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2672173655, + 0.949728378128 + ], + "libelle_d_acheminement": "SAMOUILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.949728378128, + 43.2672173655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "617f450ae5d3dd3136a461a6a2655289cee61829", + "fields": { + "code_commune_insee": "31531", + "nom_de_la_commune": "SARRECAVE", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2147533166, + 0.594972592507 + ], + "libelle_d_acheminement": "SARRECAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.594972592507, + 43.2147533166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31bb018f31430a68254386601a3f196324e92339", + "fields": { + "code_commune_insee": "31544", + "nom_de_la_commune": "SENGOUAGNET", + "code_postal": "31160", + "coordonnees_gps": [ + 42.9551995435, + 0.784279293966 + ], + "libelle_d_acheminement": "SENGOUAGNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.784279293966, + 42.9551995435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccd3d97bdcaa0f29fa01adaed88bac52adbee402", + "fields": { + "code_commune_insee": "31549", + "nom_de_la_commune": "SODE", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8110087374, + 0.641959395323 + ], + "libelle_d_acheminement": "SODE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.641959395323, + 42.8110087374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98a269a96f14e5a16855adcc857530c5a89645d5", + "fields": { + "code_commune_insee": "31577", + "nom_de_la_commune": "VIGNAUX", + "code_postal": "31480", + "coordonnees_gps": [ + 43.6872018881, + 1.06696295842 + ], + "libelle_d_acheminement": "VIGNAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06696295842, + 43.6872018881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f598f76f0ebc5ef2b97f1e357b4f4879d0d27bb7", + "fields": { + "code_commune_insee": "31583", + "nom_de_la_commune": "VILLEMATIER", + "code_postal": "31340", + "coordonnees_gps": [ + 43.8287331466, + 1.49684943742 + ], + "libelle_d_acheminement": "VILLEMATIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49684943742, + 43.8287331466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b20a2a04ca20b8dcc39b17d582314aee3a54057a", + "fields": { + "code_commune_insee": "31584", + "nom_de_la_commune": "VILLEMUR SUR TARN", + "code_postal": "31340", + "coordonnees_gps": [ + 43.8644095962, + 1.49043812706 + ], + "libelle_d_acheminement": "VILLEMUR SUR TARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49043812706, + 43.8644095962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb005eed294d73af03333424ecfb97d86a045596", + "fields": { + "code_commune_insee": "32001", + "nom_de_la_commune": "AIGNAN", + "code_postal": "32290", + "coordonnees_gps": [ + 43.6944329355, + 0.0870356646596 + ], + "libelle_d_acheminement": "AIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0870356646596, + 43.6944329355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30fbab9e92252eb337f91eee9724505a63761cc2", + "fields": { + "code_commune_insee": "32010", + "nom_de_la_commune": "ARROUEDE", + "code_postal": "32140", + "coordonnees_gps": [ + 43.3599961769, + 0.583155910425 + ], + "libelle_d_acheminement": "ARROUEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.583155910425, + 43.3599961769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ecff4ad659f5c0b81db656a30ce50a8d5dd62cc", + "fields": { + "code_commune_insee": "32013", + "nom_de_la_commune": "AUCH", + "code_postal": "32000", + "coordonnees_gps": [ + 43.6534300414, + 0.575190250459 + ], + "libelle_d_acheminement": "AUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.575190250459, + 43.6534300414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c994e8a7876fe81a1c1df59724d41c18e8262207", + "fields": { + "code_commune_insee": "32018", + "nom_de_la_commune": "AURIMONT", + "code_postal": "32450", + "coordonnees_gps": [ + 43.5649829798, + 0.828905981101 + ], + "libelle_d_acheminement": "AURIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.828905981101, + 43.5649829798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e5ce6caee5de4f4a2ec8bb1b1232c5991a8f545", + "fields": { + "code_commune_insee": "32031", + "nom_de_la_commune": "BASCOUS", + "code_postal": "32190", + "coordonnees_gps": [ + 43.7945341833, + 0.136250344256 + ], + "libelle_d_acheminement": "BASCOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.136250344256, + 43.7945341833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d78134e2fb7c06970ff9af0e2b5e6c4b02b74dc", + "fields": { + "code_commune_insee": "32032", + "nom_de_la_commune": "BASSOUES", + "code_postal": "32320", + "coordonnees_gps": [ + 43.5746981282, + 0.250833714545 + ], + "libelle_d_acheminement": "BASSOUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.250833714545, + 43.5746981282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58ba3647a9ae8b63e4162dffc60f82b6a5ff248a", + "fields": { + "code_commune_insee": "32035", + "nom_de_la_commune": "BEAUCAIRE", + "code_postal": "32410", + "coordonnees_gps": [ + 43.8370869594, + 0.375982093244 + ], + "libelle_d_acheminement": "BEAUCAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.375982093244, + 43.8370869594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d24bff26e2d35ff5b8e528814462f4e54bd445c", + "fields": { + "code_commune_insee": "32042", + "nom_de_la_commune": "BELLOC ST CLAMENS", + "code_postal": "32300", + "coordonnees_gps": [ + 43.4569328563, + 0.436935279711 + ], + "libelle_d_acheminement": "BELLOC ST CLAMENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.436935279711, + 43.4569328563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d537bf2775656de003e5f283f8a4703a079d8da8", + "fields": { + "code_commune_insee": "32058", + "nom_de_la_commune": "BLOUSSON SERIAN", + "code_postal": "32230", + "coordonnees_gps": [ + 43.4589317214, + 0.193609886231 + ], + "libelle_d_acheminement": "BLOUSSON SERIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.193609886231, + 43.4589317214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c3721219ceace54c9932025cb6bed041a441321", + "fields": { + "code_commune_insee": "32062", + "nom_de_la_commune": "BOURROUILLAN", + "code_postal": "32370", + "coordonnees_gps": [ + 43.8280033037, + -0.00793722543785 + ], + "libelle_d_acheminement": "BOURROUILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00793722543785, + 43.8280033037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7148df83be1cee77e60f9fc7c965697db4726723", + "fields": { + "code_commune_insee": "32071", + "nom_de_la_commune": "CAILLAVET", + "code_postal": "32190", + "coordonnees_gps": [ + 43.7058359941, + 0.338140296149 + ], + "libelle_d_acheminement": "CAILLAVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.338140296149, + 43.7058359941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49eaf8b9c9255fdfe30f405541923a5705f820f6", + "fields": { + "code_commune_insee": "32075", + "nom_de_la_commune": "CASSAIGNE", + "code_postal": "32100", + "coordonnees_gps": [ + 43.9038282456, + 0.344845164454 + ], + "libelle_d_acheminement": "CASSAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.344845164454, + 43.9038282456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ec00d0aa2248f447809635b5e746a6e642a5fd7", + "fields": { + "code_commune_insee": "32077", + "nom_de_la_commune": "CASTELNAU D ANGLES", + "code_postal": "32320", + "coordonnees_gps": [ + 43.6164688819, + 0.295821312988 + ], + "libelle_d_acheminement": "CASTELNAU D ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.295821312988, + 43.6164688819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "795604a0d08bcb13741625614b5a8ed8957c5b59", + "fields": { + "code_commune_insee": "32081", + "nom_de_la_commune": "CASTELNAVET", + "code_postal": "32290", + "coordonnees_gps": [ + 43.6733145653, + 0.137370546736 + ], + "libelle_d_acheminement": "CASTELNAVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.137370546736, + 43.6733145653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "957726bc81d1f40974095ed6a987c6aea8394ac9", + "fields": { + "code_commune_insee": "32093", + "nom_de_la_commune": "CAUMONT", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6914735474, + -0.108660908583 + ], + "libelle_d_acheminement": "CAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.108660908583, + 43.6914735474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5925be67034c5151369fc56df7c9560f2299b9ba", + "fields": { + "code_commune_insee": "32094", + "nom_de_la_commune": "CAUPENNE D ARMAGNAC", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7842826352, + -0.0711396072349 + ], + "libelle_d_acheminement": "CAUPENNE D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0711396072349, + 43.7842826352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a339a8e2955e160d08a03c56f3525444f14f44c9", + "fields": { + "ligne_5": "BARBOTAN LES THERMES", + "code_commune_insee": "32096", + "libelle_d_acheminement": "CAZAUBON", + "code_postal": "32150", + "nom_de_la_commune": "CAZAUBON", + "coordonnees_gps": [ + 43.9251854258, + -0.028737932075 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.028737932075, + 43.9251854258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "747e1ee9beaf029e8650ec9649b9171f1a5e582f", + "fields": { + "code_commune_insee": "32101", + "nom_de_la_commune": "CERAN", + "code_postal": "32500", + "coordonnees_gps": [ + 43.8154019755, + 0.698929197336 + ], + "libelle_d_acheminement": "CERAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.698929197336, + 43.8154019755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "787abf6d91a991c33d5331fbd9a1604cfd1488af", + "fields": { + "code_commune_insee": "32106", + "nom_de_la_commune": "COLOGNE", + "code_postal": "32430", + "coordonnees_gps": [ + 43.7176064858, + 0.975053061253 + ], + "libelle_d_acheminement": "COLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.975053061253, + 43.7176064858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a98dafea6f2950aff3f4b165f140383261689507", + "fields": { + "code_commune_insee": "32109", + "nom_de_la_commune": "COULOUME MONDEBAT", + "code_postal": "32160", + "coordonnees_gps": [ + 43.6352147895, + 0.114016958736 + ], + "libelle_d_acheminement": "COULOUME MONDEBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.114016958736, + 43.6352147895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b303c82db7f4ca0f2e18cc2db4e2ed8e98a0a637", + "fields": { + "code_commune_insee": "32110", + "nom_de_la_commune": "COURRENSAN", + "code_postal": "32330", + "coordonnees_gps": [ + 43.842950369, + 0.241076890642 + ], + "libelle_d_acheminement": "COURRENSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.241076890642, + 43.842950369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4af15699b6a3ebf8d1babed35a0b8e7c72b7080", + "fields": { + "code_commune_insee": "32111", + "nom_de_la_commune": "COURTIES", + "code_postal": "32230", + "coordonnees_gps": [ + 43.5734871735, + 0.153733826312 + ], + "libelle_d_acheminement": "COURTIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.153733826312, + 43.5734871735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb21f6a7a291bedd457f03e4d95bb54cb1d98c4f", + "fields": { + "code_commune_insee": "32117", + "nom_de_la_commune": "DURAN", + "code_postal": "32810", + "coordonnees_gps": [ + 43.672773032, + 0.561778895339 + ], + "libelle_d_acheminement": "DURAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.561778895339, + 43.672773032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c90769237b10240fc2a835cab9f341f9c3147210", + "fields": { + "code_commune_insee": "32120", + "nom_de_la_commune": "ENCAUSSE", + "code_postal": "32430", + "coordonnees_gps": [ + 43.6939626991, + 1.03183507022 + ], + "libelle_d_acheminement": "ENCAUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03183507022, + 43.6939626991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4122e24bcef13fad17f7bdef21fa1a09c7c602d", + "fields": { + "code_commune_insee": "32133", + "nom_de_la_commune": "FOURCES", + "code_postal": "32250", + "coordonnees_gps": [ + 43.9951905461, + 0.228969106645 + ], + "libelle_d_acheminement": "FOURCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.228969106645, + 43.9951905461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cc6a085cd14bd1c2cf12291a473db25ddb645f8", + "fields": { + "code_commune_insee": "32138", + "nom_de_la_commune": "GARRAVET", + "code_postal": "32220", + "coordonnees_gps": [ + 43.4180047939, + 0.907154725619 + ], + "libelle_d_acheminement": "GARRAVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.907154725619, + 43.4180047939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0003bac26cd04e69b1bcb22174e71f1cbfc8174c", + "fields": { + "code_commune_insee": "32144", + "nom_de_la_commune": "GAZAX ET BACCARISSE", + "code_postal": "32230", + "coordonnees_gps": [ + 43.6018826171, + 0.196554642255 + ], + "libelle_d_acheminement": "GAZAX ET BACCARISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.196554642255, + 43.6018826171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "423f164cd5bf8a6eeaef54906e5773922a47da76", + "fields": { + "code_commune_insee": "32145", + "nom_de_la_commune": "GEE RIVIERE", + "code_postal": "32720", + "coordonnees_gps": [ + 43.6757883164, + -0.186939058119 + ], + "libelle_d_acheminement": "GEE RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.186939058119, + 43.6757883164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7cc1d39869ce7c1f91f41d521ad01db5ab47932", + "fields": { + "code_commune_insee": "32146", + "nom_de_la_commune": "GIMBREDE", + "code_postal": "32340", + "coordonnees_gps": [ + 44.0374266467, + 0.719582060936 + ], + "libelle_d_acheminement": "GIMBREDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.719582060936, + 44.0374266467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9986c9c044d74bf995c90f8edeb0f9c5e669f15c", + "fields": { + "code_commune_insee": "32147", + "nom_de_la_commune": "GIMONT", + "code_postal": "32200", + "coordonnees_gps": [ + 43.6206403859, + 0.880976872847 + ], + "libelle_d_acheminement": "GIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.880976872847, + 43.6206403859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "985891afbd635f42e60e1828f06754a814bf67e3", + "fields": { + "code_commune_insee": "32158", + "nom_de_la_commune": "L ISLE BOUZON", + "code_postal": "32380", + "coordonnees_gps": [ + 43.9244519386, + 0.735445599943 + ], + "libelle_d_acheminement": "L ISLE BOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.735445599943, + 43.9244519386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1cd443b315e28a43f49ff1648a6d8232a6b89d7", + "fields": { + "code_commune_insee": "32175", + "nom_de_la_commune": "LADEVEZE VILLE", + "code_postal": "32230", + "coordonnees_gps": [ + 43.5362096999, + 0.060096709408 + ], + "libelle_d_acheminement": "LADEVEZE VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.060096709408, + 43.5362096999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1788efca7fe968114e020e89914fa338508b6684", + "fields": { + "code_commune_insee": "32176", + "nom_de_la_commune": "LAGARDE", + "code_postal": "32700", + "coordonnees_gps": [ + 43.9688206645, + 0.565453209917 + ], + "libelle_d_acheminement": "LAGARDE FIMARCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.565453209917, + 43.9688206645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79221e798ed90e1a160517964c9241777bfe6f08", + "fields": { + "code_commune_insee": "32188", + "nom_de_la_commune": "LAMOTHE GOAS", + "code_postal": "32500", + "coordonnees_gps": [ + 43.8685216606, + 0.570087377655 + ], + "libelle_d_acheminement": "LAMOTHE GOAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.570087377655, + 43.8685216606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee09b4c01ba2273c1ad273cc19d9c1f835876aa9", + "fields": { + "code_commune_insee": "32195", + "nom_de_la_commune": "LARROQUE ENGALIN", + "code_postal": "32480", + "coordonnees_gps": [ + 43.9878674787, + 0.546160014237 + ], + "libelle_d_acheminement": "LARROQUE ENGALIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.546160014237, + 43.9878674787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7bb46d0900084f0f872a4a70ccf294f0c6023af", + "fields": { + "code_commune_insee": "32200", + "nom_de_la_commune": "LASSERAN", + "code_postal": "32550", + "coordonnees_gps": [ + 43.6034958124, + 0.526620389373 + ], + "libelle_d_acheminement": "LASSERAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.526620389373, + 43.6034958124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e10ba291eb2745b811826fa96106cfb292487ebc", + "fields": { + "code_commune_insee": "32204", + "nom_de_la_commune": "LAVARDENS", + "code_postal": "32360", + "coordonnees_gps": [ + 43.7654411264, + 0.519747830067 + ], + "libelle_d_acheminement": "LAVARDENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.519747830067, + 43.7654411264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca558e31f05899b383819f797447e7178a2e0b5e", + "fields": { + "code_commune_insee": "32208", + "nom_de_la_commune": "LECTOURE", + "code_postal": "32700", + "coordonnees_gps": [ + 43.9405030561, + 0.650762392132 + ], + "libelle_d_acheminement": "LECTOURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.650762392132, + 43.9405030561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bab2abeaa7910bc2caaa2f211db91d3b02b31b73", + "fields": { + "code_commune_insee": "32209", + "nom_de_la_commune": "LELIN LAPUJOLLE", + "code_postal": "32400", + "coordonnees_gps": [ + 43.7070511405, + -0.134532428412 + ], + "libelle_d_acheminement": "LELIN LAPUJOLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.134532428412, + 43.7070511405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee0f80761e710ee331d9064e209acbbbbae16b25", + "fields": { + "code_commune_insee": "32212", + "nom_de_la_commune": "LIGARDES", + "code_postal": "32480", + "coordonnees_gps": [ + 44.0418693896, + 0.483572865332 + ], + "libelle_d_acheminement": "LIGARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.483572865332, + 44.0418693896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3c93e22a826d75681146de8d6c954d21607ab31", + "fields": { + "code_commune_insee": "32223", + "nom_de_la_commune": "MAGNAS", + "code_postal": "32380", + "coordonnees_gps": [ + 43.8927817085, + 0.72358337576 + ], + "libelle_d_acheminement": "MAGNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.72358337576, + 43.8927817085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e74ab09deebb034be8a4c150edaa7a5564277eda", + "fields": { + "code_commune_insee": "32226", + "nom_de_la_commune": "MANAS BASTANOUS", + "code_postal": "32170", + "coordonnees_gps": [ + 43.3671107189, + 0.369648739951 + ], + "libelle_d_acheminement": "MANAS BASTANOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.369648739951, + 43.3671107189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4d4a26d5a1fa212fe035abbb3ddff9d1b23eb8f", + "fields": { + "code_commune_insee": "32231", + "nom_de_la_commune": "MARAMBAT", + "code_postal": "32190", + "coordonnees_gps": [ + 43.7786875916, + 0.323828466495 + ], + "libelle_d_acheminement": "MARAMBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.323828466495, + 43.7786875916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24b98703af9d6e970e9aa8b16c56dd8d2b42e279", + "fields": { + "code_commune_insee": "32237", + "nom_de_la_commune": "MARSAN", + "code_postal": "32270", + "coordonnees_gps": [ + 43.6479275697, + 0.723516841894 + ], + "libelle_d_acheminement": "MARSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.723516841894, + 43.6479275697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8a18fd21d1fc555cdc55d0cb68574a18969c140", + "fields": { + "code_commune_insee": "32238", + "nom_de_la_commune": "MARSEILLAN", + "code_postal": "32170", + "coordonnees_gps": [ + 43.4888848477, + 0.312582151294 + ], + "libelle_d_acheminement": "MARSEILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.312582151294, + 43.4888848477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba61b9d278429d2378b7002412d095322ddd4308", + "fields": { + "code_commune_insee": "32246", + "nom_de_la_commune": "MAUPAS", + "code_postal": "32240", + "coordonnees_gps": [ + 43.8431026932, + -0.129777631526 + ], + "libelle_d_acheminement": "MAUPAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.129777631526, + 43.8431026932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94708871379eb765edcaa131eb7bc1f54aa9a2d9", + "fields": { + "code_commune_insee": "32255", + "nom_de_la_commune": "MIRAMONT LATOUR", + "code_postal": "32390", + "coordonnees_gps": [ + 43.7757250966, + 0.687705475366 + ], + "libelle_d_acheminement": "MIRAMONT LATOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.687705475366, + 43.7757250966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "464df1c3fc6b534d1bb9fb6e818a24d911b79ff9", + "fields": { + "code_commune_insee": "32263", + "nom_de_la_commune": "MONCASSIN", + "code_postal": "32300", + "coordonnees_gps": [ + 43.450007144, + 0.47497863531 + ], + "libelle_d_acheminement": "MONCASSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47497863531, + 43.450007144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de032b880387dffe9777e1adaee997795674bd1d", + "fields": { + "code_commune_insee": "32271", + "nom_de_la_commune": "MONGUILHEM", + "code_postal": "32240", + "coordonnees_gps": [ + 43.8535441916, + -0.189101888026 + ], + "libelle_d_acheminement": "MONGUILHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.189101888026, + 43.8535441916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19447ba2fc3d285a41e0bf25241b6abf44fcc558", + "fields": { + "code_commune_insee": "32273", + "nom_de_la_commune": "MONLEZUN", + "code_postal": "32230", + "coordonnees_gps": [ + 43.49557943, + 0.21741183427 + ], + "libelle_d_acheminement": "MONLEZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.21741183427, + 43.49557943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78560461d152eedf062aaf34a6fc5fdda95c4f6e", + "fields": { + "code_commune_insee": "32274", + "nom_de_la_commune": "MONLEZUN D ARMAGNAC", + "code_postal": "32240", + "coordonnees_gps": [ + 43.8235244967, + -0.14659664068 + ], + "libelle_d_acheminement": "MONLEZUN D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14659664068, + 43.8235244967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9811af22da6547bd5a85851f4da07c93d6b3534", + "fields": { + "code_commune_insee": "32286", + "nom_de_la_commune": "MONTESTRUC SUR GERS", + "code_postal": "32390", + "coordonnees_gps": [ + 43.7935827191, + 0.627663665443 + ], + "libelle_d_acheminement": "MONTESTRUC SUR GERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.627663665443, + 43.7935827191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a088f6c7c6c8ec4471be5587a1217175346d18ba", + "fields": { + "code_commune_insee": "32299", + "nom_de_la_commune": "NOULENS", + "code_postal": "32800", + "coordonnees_gps": [ + 43.8042418992, + 0.161070491114 + ], + "libelle_d_acheminement": "NOULENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.161070491114, + 43.8042418992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e640422a3e03aeee416eee5a63e5b27be3491c8", + "fields": { + "code_commune_insee": "32302", + "nom_de_la_commune": "ORNEZAN", + "code_postal": "32260", + "coordonnees_gps": [ + 43.5131064051, + 0.597407861877 + ], + "libelle_d_acheminement": "ORNEZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.597407861877, + 43.5131064051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d923d2c202caea66f73fdd550283906d6b0d38e5", + "fields": { + "code_commune_insee": "32310", + "nom_de_la_commune": "PERCHEDE", + "code_postal": "32460", + "coordonnees_gps": [ + 43.7767358721, + -0.139888973276 + ], + "libelle_d_acheminement": "PERCHEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.139888973276, + 43.7767358721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8de770ede6e3b7fcef96a1187a8059a9d59eaf63", + "fields": { + "code_commune_insee": "32311", + "nom_de_la_commune": "PERGAIN TAILLAC", + "code_postal": "32700", + "coordonnees_gps": [ + 44.0552185676, + 0.595570550255 + ], + "libelle_d_acheminement": "PERGAIN TAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.595570550255, + 44.0552185676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91038aaae3546c5aafb03bfd040a332c505ee93d", + "fields": { + "code_commune_insee": "32323", + "nom_de_la_commune": "PONSAMPERE", + "code_postal": "32300", + "coordonnees_gps": [ + 43.458656795, + 0.370027372328 + ], + "libelle_d_acheminement": "PONSAMPERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.370027372328, + 43.458656795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a99c428bcd2de3ed89539692d9c8c697b96fdd2", + "fields": { + "code_commune_insee": "32327", + "nom_de_la_commune": "POUY LOUBRIN", + "code_postal": "32260", + "coordonnees_gps": [ + 43.4652677756, + 0.611644470499 + ], + "libelle_d_acheminement": "POUY LOUBRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.611644470499, + 43.4652677756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ad0d8a265e7bcdfb37224e52d022ef2a08b08ea", + "fields": { + "code_commune_insee": "32328", + "nom_de_la_commune": "POUY ROQUELAURE", + "code_postal": "32480", + "coordonnees_gps": [ + 44.0383578636, + 0.521396806967 + ], + "libelle_d_acheminement": "POUY ROQUELAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.521396806967, + 44.0383578636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf721820f4e95502eac2051ea20bcbd5837f3519", + "fields": { + "code_commune_insee": "32331", + "nom_de_la_commune": "PREIGNAN", + "code_postal": "32810", + "coordonnees_gps": [ + 43.7210485292, + 0.636835530591 + ], + "libelle_d_acheminement": "PREIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.636835530591, + 43.7210485292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feca447abeca6c3fe0b91d99f16220028d14f4cd", + "fields": { + "code_commune_insee": "32333", + "nom_de_la_commune": "PROJAN", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6074466247, + -0.232771033675 + ], + "libelle_d_acheminement": "PROJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.232771033675, + 43.6074466247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6435c50a525a77dc3cc741f3213234e2c398e6f4", + "fields": { + "code_commune_insee": "32336", + "nom_de_la_commune": "PUYLAUSIC", + "code_postal": "32220", + "coordonnees_gps": [ + 43.4440094082, + 0.934879831241 + ], + "libelle_d_acheminement": "PUYLAUSIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.934879831241, + 43.4440094082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "221e1acb9abe64451c758b27377e9b01c89eb28f", + "fields": { + "code_commune_insee": "32343", + "nom_de_la_commune": "RIGUEPEU", + "code_postal": "32320", + "coordonnees_gps": [ + 43.6535301876, + 0.33796916031 + ], + "libelle_d_acheminement": "RIGUEPEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33796916031, + 43.6535301876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61f6f02f5bfe8195e6a1f9199829dbabaa1087ba", + "fields": { + "code_commune_insee": "32344", + "nom_de_la_commune": "RISCLE", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6454030402, + -0.078542343724 + ], + "libelle_d_acheminement": "RISCLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.078542343724, + 43.6454030402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dd4bf4584affd78412c75765f8be921dc59d461", + "fields": { + "code_commune_insee": "32346", + "nom_de_la_commune": "ROQUEBRUNE", + "code_postal": "32190", + "coordonnees_gps": [ + 43.7094190494, + 0.294605252318 + ], + "libelle_d_acheminement": "ROQUEBRUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.294605252318, + 43.7094190494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dcb576e209143ae8ca50bb122dbf3267b94edf6", + "fields": { + "code_commune_insee": "32348", + "nom_de_la_commune": "ROQUELAURE", + "code_postal": "32810", + "coordonnees_gps": [ + 43.7239375503, + 0.593217986978 + ], + "libelle_d_acheminement": "ROQUELAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.593217986978, + 43.7239375503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb328892a0efa266ff6cc3d7f865cd57a6929ef8", + "fields": { + "code_commune_insee": "32355", + "nom_de_la_commune": "SADEILLAN", + "code_postal": "32170", + "coordonnees_gps": [ + 43.3960094567, + 0.343407720125 + ], + "libelle_d_acheminement": "SADEILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.343407720125, + 43.3960094567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cb3ff6507c83c36b9cb7827938b7f46667ec375", + "fields": { + "code_commune_insee": "32357", + "nom_de_la_commune": "STE ANNE", + "code_postal": "32430", + "coordonnees_gps": [ + 43.7452215949, + 0.967980737817 + ], + "libelle_d_acheminement": "STE ANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.967980737817, + 43.7452215949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "541cb7d13b89e8d83668877b89683c2da7db021a", + "fields": { + "code_commune_insee": "32361", + "nom_de_la_commune": "ST ARROMAN", + "code_postal": "32300", + "coordonnees_gps": [ + 43.4356200407, + 0.519787402216 + ], + "libelle_d_acheminement": "ST ARROMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.519787402216, + 43.4356200407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96c3d84ced208e7e032db10bd0e75ec308f93182", + "fields": { + "code_commune_insee": "32369", + "nom_de_la_commune": "STE CHRISTIE D ARMAGNAC", + "code_postal": "32370", + "coordonnees_gps": [ + 43.7937355004, + -0.00494982246103 + ], + "libelle_d_acheminement": "STE CHRISTIE D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00494982246103, + 43.7937355004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78b7aaeaec6fb0a1fa448f8b6686c95564fa539c", + "fields": { + "code_commune_insee": "32387", + "nom_de_la_commune": "ST LOUBE", + "code_postal": "32220", + "coordonnees_gps": [ + 43.4400778891, + 1.00559153521 + ], + "libelle_d_acheminement": "ST LOUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00559153521, + 43.4400778891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bed1840642d2d1c4266ca45e4d4a2c4a260028b", + "fields": { + "code_commune_insee": "32388", + "nom_de_la_commune": "STE MARIE", + "code_postal": "32200", + "coordonnees_gps": [ + 43.6724633331, + 0.866328839626 + ], + "libelle_d_acheminement": "STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.866328839626, + 43.6724633331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c84e8e112d4ee5804b72dfce1c6e5d52f195a505", + "fields": { + "code_commune_insee": "32390", + "nom_de_la_commune": "ST MARTIN D ARMAGNAC", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7109968571, + -0.0639870800498 + ], + "libelle_d_acheminement": "ST MARTIN D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0639870800498, + 43.7109968571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "328441cbf5c4a2f4d4ed7a9255f0c8700f481dc6", + "fields": { + "code_commune_insee": "32392", + "nom_de_la_commune": "ST MARTIN GIMOIS", + "code_postal": "32450", + "coordonnees_gps": [ + 43.5200991545, + 0.810352365768 + ], + "libelle_d_acheminement": "ST MARTIN GIMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.810352365768, + 43.5200991545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8280914b581f3702644aebf94bc754fcda9d96a8", + "fields": { + "code_commune_insee": "32401", + "nom_de_la_commune": "ST OST", + "code_postal": "32300", + "coordonnees_gps": [ + 43.3761174714, + 0.465164448577 + ], + "libelle_d_acheminement": "ST OST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.465164448577, + 43.3761174714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c35d0106c41ae4c4b54ae2eef36a7cc2743ec76", + "fields": { + "code_commune_insee": "32406", + "nom_de_la_commune": "ST SAUVY", + "code_postal": "32270", + "coordonnees_gps": [ + 43.6994537624, + 0.811688166016 + ], + "libelle_d_acheminement": "ST SAUVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.811688166016, + 43.6994537624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "599e64643c479ebdd8147d1a495932c2f714e9f9", + "fields": { + "code_commune_insee": "32407", + "nom_de_la_commune": "ST SOULAN", + "code_postal": "32220", + "coordonnees_gps": [ + 43.5085067561, + 0.860606290499 + ], + "libelle_d_acheminement": "ST SOULAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.860606290499, + 43.5085067561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9baec0a4e36b2263dda0fbba6b7cb49f4f3c4fed", + "fields": { + "code_commune_insee": "32408", + "nom_de_la_commune": "SALLES D ARMAGNAC", + "code_postal": "32370", + "coordonnees_gps": [ + 43.8113198455, + -0.0432929443572 + ], + "libelle_d_acheminement": "SALLES D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0432929443572, + 43.8113198455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f516513e77afd16caebb158e4ff355b13c776d92", + "fields": { + "code_commune_insee": "32412", + "nom_de_la_commune": "SARAMON", + "code_postal": "32450", + "coordonnees_gps": [ + 43.5243197387, + 0.760359973861 + ], + "libelle_d_acheminement": "SARAMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.760359973861, + 43.5243197387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79736e89ff665fd47cf7c6e013a2222224f1bca4", + "fields": { + "code_commune_insee": "32433", + "nom_de_la_commune": "SIMORRE", + "code_postal": "32420", + "coordonnees_gps": [ + 43.457392326, + 0.73670535692 + ], + "libelle_d_acheminement": "SIMORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73670535692, + 43.457392326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a6b9f30f250fcf9525ea20bf78ae41939453c13", + "fields": { + "code_commune_insee": "32436", + "nom_de_la_commune": "SOLOMIAC", + "code_postal": "32120", + "coordonnees_gps": [ + 43.8030207039, + 0.886775990796 + ], + "libelle_d_acheminement": "SOLOMIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.886775990796, + 43.8030207039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61001b51c68a6cbeddb7d5ed712725ddad1040bb", + "fields": { + "code_commune_insee": "32439", + "nom_de_la_commune": "TARSAC", + "code_postal": "32400", + "coordonnees_gps": [ + 43.667823646, + -0.112497815463 + ], + "libelle_d_acheminement": "TARSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.112497815463, + 43.667823646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3feb6084cab6474eff5daf2138fca55f516e8b81", + "fields": { + "code_commune_insee": "32446", + "nom_de_la_commune": "TILLAC", + "code_postal": "32170", + "coordonnees_gps": [ + 43.4781527025, + 0.264769117337 + ], + "libelle_d_acheminement": "TILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.264769117337, + 43.4781527025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb92d286b0c78ba9ff32b1a5f0129d8fe82f2889", + "fields": { + "code_commune_insee": "32447", + "nom_de_la_commune": "TIRENT PONTEJAC", + "code_postal": "32450", + "coordonnees_gps": [ + 43.545808874, + 0.793604017462 + ], + "libelle_d_acheminement": "TIRENT PONTEJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.793604017462, + 43.545808874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a40e6307de1ff8c0f37e20741f31c7f10bab5a3", + "fields": { + "code_commune_insee": "32449", + "nom_de_la_commune": "TOUJOUSE", + "code_postal": "32240", + "coordonnees_gps": [ + 43.8219002959, + -0.178398036084 + ], + "libelle_d_acheminement": "TOUJOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.178398036084, + 43.8219002959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa9271803098996d3dfaa393c7e8f07ea20b563b", + "fields": { + "code_commune_insee": "32451", + "nom_de_la_commune": "TOURNAN", + "code_postal": "32420", + "coordonnees_gps": [ + 43.4242112009, + 0.792020449615 + ], + "libelle_d_acheminement": "TOURNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.792020449615, + 43.4242112009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ffaf75646b43a570d14f4a6260682aa25edc4a5", + "fields": { + "code_commune_insee": "32454", + "nom_de_la_commune": "TRAVERSERES", + "code_postal": "32450", + "coordonnees_gps": [ + 43.5310652573, + 0.649965347065 + ], + "libelle_d_acheminement": "TRAVERSERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.649965347065, + 43.5310652573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46668264d1cc5d5b5e5a9b400d88c3fd162bc194", + "fields": { + "code_commune_insee": "32455", + "nom_de_la_commune": "TRONCENS", + "code_postal": "32230", + "coordonnees_gps": [ + 43.4545876376, + 0.220355779744 + ], + "libelle_d_acheminement": "TRONCENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.220355779744, + 43.4545876376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a30f41c2ba1a7a4a45df1b6b402750fb675ba2b5", + "fields": { + "ligne_5": "LAGRAULAS", + "code_commune_insee": "32462", + "libelle_d_acheminement": "VIC FEZENSAC", + "code_postal": "32190", + "nom_de_la_commune": "VIC FEZENSAC", + "coordonnees_gps": [ + 43.762029942, + 0.297842185088 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.297842185088, + 43.762029942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc435281be09841a849582e54e9c545a5668b8b0", + "fields": { + "code_commune_insee": "32466", + "nom_de_la_commune": "VIOZAN", + "code_postal": "32300", + "coordonnees_gps": [ + 43.3951914041, + 0.469854981602 + ], + "libelle_d_acheminement": "VIOZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.469854981602, + 43.3951914041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c53fb48925134496cc7d9d23d93883d3174bf3ca", + "fields": { + "code_commune_insee": "33015", + "nom_de_la_commune": "ARVEYRES", + "code_postal": "33500", + "coordonnees_gps": [ + 44.8915609745, + -0.2766650988 + ], + "libelle_d_acheminement": "ARVEYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2766650988, + 44.8915609745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecc7659e7feadb11895537d9341c9b83e912e244", + "fields": { + "code_commune_insee": "33016", + "nom_de_la_commune": "ASQUES", + "code_postal": "33240", + "coordonnees_gps": [ + 44.948000841, + -0.426140042682 + ], + "libelle_d_acheminement": "ASQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.426140042682, + 44.948000841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67cb6c9aeca1f9c75974e4e400e71c8a7e701e36", + "fields": { + "code_commune_insee": "33017", + "nom_de_la_commune": "AUBIAC", + "code_postal": "33430", + "coordonnees_gps": [ + 44.4707892679, + -0.244457363295 + ], + "libelle_d_acheminement": "AUBIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.244457363295, + 44.4707892679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab427cbcbbe7ff2e6865a34ebf9f15081a1dd54b", + "fields": { + "code_commune_insee": "33022", + "nom_de_la_commune": "AVENSAN", + "code_postal": "33480", + "coordonnees_gps": [ + 45.005403307, + -0.760815427452 + ], + "libelle_d_acheminement": "AVENSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.760815427452, + 45.005403307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ca1a7227ce07a7d48e7b1028bab23f988ab7b24", + "fields": { + "code_commune_insee": "33024", + "nom_de_la_commune": "BAGAS", + "code_postal": "33190", + "coordonnees_gps": [ + 44.6187804528, + -0.0489905524561 + ], + "libelle_d_acheminement": "BAGAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0489905524561, + 44.6187804528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cf6fb3501274ff9eb29533e43c1c43be9925ac3", + "fields": { + "code_commune_insee": "33025", + "nom_de_la_commune": "BAIGNEAUX", + "code_postal": "33760", + "coordonnees_gps": [ + 44.7239086463, + -0.193758554002 + ], + "libelle_d_acheminement": "BAIGNEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.193758554002, + 44.7239086463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c285a620ce82224783d07d23a306267bb0fefd2", + "fields": { + "code_commune_insee": "33033", + "nom_de_la_commune": "BAURECH", + "code_postal": "33880", + "coordonnees_gps": [ + 44.7274813784, + -0.433879900007 + ], + "libelle_d_acheminement": "BAURECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.433879900007, + 44.7274813784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e05bc8363c1c36c60004614630139d7392d4a419", + "fields": { + "code_commune_insee": "33036", + "nom_de_la_commune": "BAZAS", + "code_postal": "33430", + "coordonnees_gps": [ + 44.4424533682, + -0.212326795621 + ], + "libelle_d_acheminement": "BAZAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.212326795621, + 44.4424533682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "887edc235f25a1dd152379d74fe850688b3e652b", + "fields": { + "code_commune_insee": "33044", + "nom_de_la_commune": "BELLEFOND", + "code_postal": "33760", + "coordonnees_gps": [ + 44.7676238446, + -0.173810088464 + ], + "libelle_d_acheminement": "BELLEFOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.173810088464, + 44.7676238446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6657b21c19c7bd9a2a727fca89a1e2d4a6440e1", + "fields": { + "code_commune_insee": "33045", + "nom_de_la_commune": "BELVES DE CASTILLON", + "code_postal": "33350", + "coordonnees_gps": [ + 44.8784883678, + -0.0279648094284 + ], + "libelle_d_acheminement": "BELVES DE CASTILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0279648094284, + 44.8784883678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7edfe97834ace73d77d706aac8365770eab13981", + "fields": { + "code_commune_insee": "33049", + "nom_de_la_commune": "BEYCHAC ET CAILLAU", + "code_postal": "33750", + "coordonnees_gps": [ + 44.8720986802, + -0.371061505246 + ], + "libelle_d_acheminement": "BEYCHAC ET CAILLAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.371061505246, + 44.8720986802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71342e47e7ba7c94e2f9dd2956f7dc5eb60c6779", + "fields": { + "ligne_5": "PRIGNAC EN MEDOC", + "code_commune_insee": "33055", + "libelle_d_acheminement": "BLAIGNAN PRIGNAC", + "code_postal": "33340", + "nom_de_la_commune": "BLAIGNAN PRIGNAC", + "coordonnees_gps": [ + 45.3230869763, + -0.865864603623 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.865864603623, + 45.3230869763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46941d5acf1dd576a75ca9b903dbb79547db6b20", + "fields": { + "code_commune_insee": "33062", + "nom_de_la_commune": "BONZAC", + "code_postal": "33910", + "coordonnees_gps": [ + 45.0072015945, + -0.221528081748 + ], + "libelle_d_acheminement": "BONZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.221528081748, + 45.0072015945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "106aad5472f7df51e699c77908c3887ea7cf77cf", + "fields": { + "code_commune_insee": "33084", + "nom_de_la_commune": "CAMBES", + "code_postal": "33880", + "coordonnees_gps": [ + 44.7403794347, + -0.462515708887 + ], + "libelle_d_acheminement": "CAMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.462515708887, + 44.7403794347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1540624f121e8a793e29effb05a57ae61bae4bd5", + "fields": { + "code_commune_insee": "33088", + "nom_de_la_commune": "CAMPS SUR L ISLE", + "code_postal": "33660", + "coordonnees_gps": [ + 45.016429862, + -0.0351593823599 + ], + "libelle_d_acheminement": "CAMPS SUR L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0351593823599, + 45.016429862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4db0c8f928cef320d58a42390367717989b732d3", + "fields": { + "code_commune_insee": "33094", + "nom_de_la_commune": "CAPLONG", + "code_postal": "33220", + "coordonnees_gps": [ + 44.7672577691, + 0.150751886414 + ], + "libelle_d_acheminement": "CAPLONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.150751886414, + 44.7672577691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ce80b54ddc8b2cff76a5ee62e5b166d8afcc8fd", + "fields": { + "code_commune_insee": "33097", + "nom_de_la_commune": "CARCANS", + "code_postal": "33121", + "coordonnees_gps": [ + 45.0847969006, + -1.04933512467 + ], + "libelle_d_acheminement": "CARCANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04933512467, + 45.0847969006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cfb72b7a42a98cb2f6270e46b1e452b68c506fd", + "fields": { + "code_commune_insee": "33098", + "nom_de_la_commune": "CARDAN", + "code_postal": "33410", + "coordonnees_gps": [ + 44.682146358, + -0.321636613083 + ], + "libelle_d_acheminement": "CARDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.321636613083, + 44.682146358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75c56f4c41ac80f860688fc38c9eedd37114ccd9", + "fields": { + "code_commune_insee": "33100", + "nom_de_la_commune": "CARS", + "code_postal": "33390", + "coordonnees_gps": [ + 45.1284908523, + -0.616952904879 + ], + "libelle_d_acheminement": "CARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.616952904879, + 45.1284908523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7e1437f67000205129a7b5c9bdd9e61a1beda41", + "fields": { + "code_commune_insee": "33113", + "nom_de_la_commune": "CAUVIGNAC", + "code_postal": "33690", + "coordonnees_gps": [ + 44.4173147327, + -0.0710548756183 + ], + "libelle_d_acheminement": "CAUVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0710548756183, + 44.4173147327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f31bcca3183a361e0a9d704b9e67d8f51c28075", + "fields": { + "code_commune_insee": "33115", + "nom_de_la_commune": "CAZALIS", + "code_postal": "33113", + "coordonnees_gps": [ + 44.3299796654, + -0.393816052925 + ], + "libelle_d_acheminement": "CAZALIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.393816052925, + 44.3299796654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de52073668f6d71f7ec35bc07337cf3a094b7878", + "fields": { + "code_commune_insee": "33125", + "nom_de_la_commune": "CISSAC MEDOC", + "code_postal": "33250", + "coordonnees_gps": [ + 45.220435054, + -0.848792413525 + ], + "libelle_d_acheminement": "CISSAC MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.848792413525, + 45.220435054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e310f7e34877220dbee063641661f0f6fd784655", + "fields": { + "code_commune_insee": "33137", + "nom_de_la_commune": "COURS LES BAINS", + "code_postal": "33690", + "coordonnees_gps": [ + 44.3789499034, + -0.00703420614383 + ], + "libelle_d_acheminement": "COURS LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00703420614383, + 44.3789499034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01e773e37044b9efe3430eabc7e14130eabc7513", + "fields": { + "code_commune_insee": "33138", + "nom_de_la_commune": "COUTRAS", + "code_postal": "33230", + "coordonnees_gps": [ + 45.0390867207, + -0.105373715279 + ], + "libelle_d_acheminement": "COUTRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.105373715279, + 45.0390867207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8430e2b95296ca883167ef8226a3c6d0a587ffd0", + "fields": { + "code_commune_insee": "33142", + "nom_de_la_commune": "CUBNEZAIS", + "code_postal": "33620", + "coordonnees_gps": [ + 45.0728274718, + -0.419591338026 + ], + "libelle_d_acheminement": "CUBNEZAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.419591338026, + 45.0728274718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b734ce80c2c44eff427b04205d9e4bb16fcafabf", + "fields": { + "code_commune_insee": "33149", + "nom_de_la_commune": "DAUBEZE", + "code_postal": "33540", + "coordonnees_gps": [ + 44.7103814414, + -0.133821716061 + ], + "libelle_d_acheminement": "DAUBEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.133821716061, + 44.7103814414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32b5e8d0f7739605f8ce3de67f9288efb41f7d6f", + "fields": { + "code_commune_insee": "33157", + "nom_de_la_commune": "ESPIET", + "code_postal": "33420", + "coordonnees_gps": [ + 44.7957699657, + -0.26502782545 + ], + "libelle_d_acheminement": "ESPIET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26502782545, + 44.7957699657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b473e76243d8f028e4b2f530036d0c63a5e2d579", + "fields": { + "code_commune_insee": "33158", + "nom_de_la_commune": "LES ESSEINTES", + "code_postal": "33190", + "coordonnees_gps": [ + 44.6095361075, + -0.0653601250201 + ], + "libelle_d_acheminement": "LES ESSEINTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0653601250201, + 44.6095361075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "414faa9234929ea61cc68b014f133f2c5af3d044", + "fields": { + "code_commune_insee": "33159", + "nom_de_la_commune": "ETAULIERS", + "code_postal": "33820", + "coordonnees_gps": [ + 45.2209962068, + -0.581677744347 + ], + "libelle_d_acheminement": "ETAULIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.581677744347, + 45.2209962068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c1f1c059e2b30fac2e325ae7bc9eba16420acaa", + "fields": { + "code_commune_insee": "33160", + "nom_de_la_commune": "EYNESSE", + "code_postal": "33220", + "coordonnees_gps": [ + 44.819717778, + 0.14910058165 + ], + "libelle_d_acheminement": "EYNESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14910058165, + 44.819717778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30f772f211c7fc12a1b1775eceff4bc5a82874ef", + "fields": { + "code_commune_insee": "33161", + "nom_de_la_commune": "EYRANS", + "code_postal": "33390", + "coordonnees_gps": [ + 45.1935625916, + -0.60988049368 + ], + "libelle_d_acheminement": "EYRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60988049368, + 45.1935625916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92740c8b5b676be50ab6ec6fe59e5e05e901bd3b", + "fields": { + "code_commune_insee": "33166", + "nom_de_la_commune": "LE FIEU", + "code_postal": "33230", + "coordonnees_gps": [ + 45.0551327657, + -0.0359458641255 + ], + "libelle_d_acheminement": "LE FIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0359458641255, + 45.0551327657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79035b99f9509776bc69245122cbe3469412b48d", + "fields": { + "code_commune_insee": "33170", + "nom_de_la_commune": "FONTET", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5553150751, + -0.0279073992518 + ], + "libelle_d_acheminement": "FONTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0279073992518, + 44.5553150751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d9535f5c8c1f7dc6d6cba331775aea24f8603df", + "fields": { + "code_commune_insee": "33173", + "nom_de_la_commune": "FRANCS", + "code_postal": "33570", + "coordonnees_gps": [ + 44.942978361, + -0.00064276030543 + ], + "libelle_d_acheminement": "FRANCS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00064276030543, + 44.942978361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "799453cc5a62625882c5a3b2a455da106372e369", + "fields": { + "code_commune_insee": "33178", + "nom_de_la_commune": "GAJAC", + "code_postal": "33430", + "coordonnees_gps": [ + 44.4363899327, + -0.134945962959 + ], + "libelle_d_acheminement": "GAJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.134945962959, + 44.4363899327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbf1b16533a8651ba8d4eb481304ea5c8aadbb55", + "fields": { + "code_commune_insee": "33190", + "nom_de_la_commune": "GOUALADE", + "code_postal": "33840", + "coordonnees_gps": [ + 44.3174301368, + -0.121216305853 + ], + "libelle_d_acheminement": "GOUALADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.121216305853, + 44.3174301368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2748763b95a526c5f7e11f3c3f115011fc1bc18", + "fields": { + "code_commune_insee": "33195", + "nom_de_la_commune": "GRIGNOLS", + "code_postal": "33690", + "coordonnees_gps": [ + 44.4096678184, + -0.0256453531001 + ], + "libelle_d_acheminement": "GRIGNOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0256453531001, + 44.4096678184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a80b1f35cb72f5867fa27424595fcafda0b72950", + "fields": { + "code_commune_insee": "33199", + "nom_de_la_commune": "GUJAN MESTRAS", + "code_postal": "33470", + "coordonnees_gps": [ + 44.5940361232, + -1.08427455858 + ], + "libelle_d_acheminement": "GUJAN MESTRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08427455858, + 44.5940361232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2450df2302276b1717b3da011891eca8ad173c4a", + "fields": { + "code_commune_insee": "33201", + "nom_de_la_commune": "HAUX", + "code_postal": "33550", + "coordonnees_gps": [ + 44.7364762745, + -0.365775340015 + ], + "libelle_d_acheminement": "HAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.365775340015, + 44.7364762745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "313fdf672b378f73e4258221935750b2b077e878", + "fields": { + "code_commune_insee": "33205", + "nom_de_la_commune": "ILLATS", + "code_postal": "33720", + "coordonnees_gps": [ + 44.6070822576, + -0.380440319465 + ], + "libelle_d_acheminement": "ILLATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.380440319465, + 44.6070822576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95c32b2604ae9e5cc1c947813db26aa9150cddbc", + "fields": { + "code_commune_insee": "33209", + "nom_de_la_commune": "JUGAZAN", + "code_postal": "33420", + "coordonnees_gps": [ + 44.7787058839, + -0.149444168001 + ], + "libelle_d_acheminement": "JUGAZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.149444168001, + 44.7787058839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c8c115e7cffddb9362acf31df0e36bdd0c48cbe", + "fields": { + "code_commune_insee": "33210", + "nom_de_la_commune": "JUILLAC", + "code_postal": "33890", + "coordonnees_gps": [ + 44.8137050234, + 0.0536333384557 + ], + "libelle_d_acheminement": "JUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0536333384557, + 44.8137050234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27c6e02b58d50efbc6d3489a9826b6863856ac9b", + "fields": { + "code_commune_insee": "33211", + "nom_de_la_commune": "LABARDE", + "code_postal": "33460", + "coordonnees_gps": [ + 45.0143357782, + -0.64053807167 + ], + "libelle_d_acheminement": "LABARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.64053807167, + 45.0143357782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9adcf72b3c72412c1d8878bbf4a28a223ec253a1", + "fields": { + "code_commune_insee": "33212", + "nom_de_la_commune": "LABESCAU", + "code_postal": "33690", + "coordonnees_gps": [ + 44.4484673998, + -0.0833418361423 + ], + "libelle_d_acheminement": "LABESCAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0833418361423, + 44.4484673998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0f724a0436802024cfedbab667693b6809630ea", + "fields": { + "code_commune_insee": "33220", + "nom_de_la_commune": "LAMARQUE", + "code_postal": "33460", + "coordonnees_gps": [ + 45.0938248209, + -0.711211655735 + ], + "libelle_d_acheminement": "LAMARQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.711211655735, + 45.0938248209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3eccf60fd962dea924635309732fcca20c593c1", + "fields": { + "code_commune_insee": "33222", + "nom_de_la_commune": "LALANDE DE POMEROL", + "code_postal": "33500", + "coordonnees_gps": [ + 44.9568056428, + -0.206253133932 + ], + "libelle_d_acheminement": "LALANDE DE POMEROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.206253133932, + 44.9568056428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbad739d9799d3afc0af4e34f084a4359d92e9eb", + "fields": { + "code_commune_insee": "33225", + "nom_de_la_commune": "LANDIRAS", + "code_postal": "33720", + "coordonnees_gps": [ + 44.5665616702, + -0.442802950502 + ], + "libelle_d_acheminement": "LANDIRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.442802950502, + 44.5665616702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee647ef3a6aa7dfeefc5438c6cdc699f89bd952d", + "fields": { + "code_commune_insee": "33226", + "nom_de_la_commune": "LANGOIRAN", + "code_postal": "33550", + "coordonnees_gps": [ + 44.7077300213, + -0.374262816088 + ], + "libelle_d_acheminement": "LANGOIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.374262816088, + 44.7077300213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "257905c7be41412c30ca2bb14531581a066e21ea", + "fields": { + "code_commune_insee": "33227", + "nom_de_la_commune": "LANGON", + "code_postal": "33210", + "coordonnees_gps": [ + 44.5376287285, + -0.241841251091 + ], + "libelle_d_acheminement": "LANGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.241841251091, + 44.5376287285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04a407711048dadada4eb90a39cf286668dfb0eb", + "fields": { + "code_commune_insee": "33236", + "nom_de_la_commune": "LEGE CAP FERRET", + "code_postal": "33970", + "coordonnees_gps": [ + 44.7609440223, + -1.19293697437 + ], + "libelle_d_acheminement": "LEGE CAP FERRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19293697437, + 44.7609440223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fce9fce1078cb04bcddc04b4fc870c189a2ce74", + "fields": { + "ligne_5": "CAP FERRET", + "code_commune_insee": "33236", + "libelle_d_acheminement": "LEGE CAP FERRET", + "code_postal": "33970", + "nom_de_la_commune": "LEGE CAP FERRET", + "coordonnees_gps": [ + 44.7609440223, + -1.19293697437 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19293697437, + 44.7609440223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba2ba1b233d3849018707a346d928e63607d9f3c", + "fields": { + "code_commune_insee": "33240", + "nom_de_la_commune": "LESPARRE MEDOC", + "code_postal": "33340", + "coordonnees_gps": [ + 45.2821023678, + -0.935162142648 + ], + "libelle_d_acheminement": "LESPARRE MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.935162142648, + 45.2821023678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e132778aa3926a7e54e8d32d43cdd05618da4668", + "fields": { + "code_commune_insee": "33246", + "nom_de_la_commune": "LIGUEUX", + "code_postal": "33220", + "coordonnees_gps": [ + 44.7917917064, + 0.262913013471 + ], + "libelle_d_acheminement": "LIGUEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.262913013471, + 44.7917917064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eff3d09766262916954bda8f84890807343f1f4", + "fields": { + "code_commune_insee": "33250", + "nom_de_la_commune": "LOUBENS", + "code_postal": "33190", + "coordonnees_gps": [ + 44.626465162, + -0.0228626595268 + ], + "libelle_d_acheminement": "LOUBENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0228626595268, + 44.626465162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "287f773fa801ccfa4ede33ba5c49ca106842ff08", + "fields": { + "code_commune_insee": "33257", + "nom_de_la_commune": "LUGAIGNAC", + "code_postal": "33420", + "coordonnees_gps": [ + 44.8132322615, + -0.193535633137 + ], + "libelle_d_acheminement": "LUGAIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.193535633137, + 44.8132322615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7210299a8db8528a760616d1e12dc935bb1c53f8", + "fields": { + "code_commune_insee": "33258", + "nom_de_la_commune": "LUGASSON", + "code_postal": "33760", + "coordonnees_gps": [ + 44.7559772921, + -0.155290604568 + ], + "libelle_d_acheminement": "LUGASSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.155290604568, + 44.7559772921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9c64edf711174fce4b030f33e8e8cbf97773176", + "fields": { + "code_commune_insee": "33259", + "nom_de_la_commune": "LUGON ET L ILE DU CARNAY", + "code_postal": "33240", + "coordonnees_gps": [ + 44.9523815308, + -0.354697747394 + ], + "libelle_d_acheminement": "LUGON ET L ILE DU CARNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.354697747394, + 44.9523815308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef63fb8727ed9ffbafe2b902e7d5318bb99a7c48", + "fields": { + "code_commune_insee": "33260", + "nom_de_la_commune": "LUGOS", + "code_postal": "33830", + "coordonnees_gps": [ + 44.4689386134, + -0.915096258031 + ], + "libelle_d_acheminement": "LUGOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.915096258031, + 44.4689386134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffb349da6650b2bd206ca48e1bb03ea0f050e157", + "fields": { + "code_commune_insee": "33264", + "nom_de_la_commune": "MARANSIN", + "code_postal": "33230", + "coordonnees_gps": [ + 45.073022085, + -0.253636034832 + ], + "libelle_d_acheminement": "MARANSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.253636034832, + 45.073022085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca1dd5bf75f4ebaa40f7a313d52be5d914813bd", + "fields": { + "code_commune_insee": "33269", + "nom_de_la_commune": "MARGUERON", + "code_postal": "33220", + "coordonnees_gps": [ + 44.7662541658, + 0.255840872998 + ], + "libelle_d_acheminement": "MARGUERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.255840872998, + 44.7662541658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9165c4391f10c2ef65770bfc893a173cf847b8d2", + "fields": { + "code_commune_insee": "33271", + "nom_de_la_commune": "MARIONS", + "code_postal": "33690", + "coordonnees_gps": [ + 44.3739498817, + -0.0894365463696 + ], + "libelle_d_acheminement": "MARIONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0894365463696, + 44.3739498817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e4e208a7d9b845defc3d335792daaf2fb629b92", + "fields": { + "code_commune_insee": "33272", + "nom_de_la_commune": "MARSAS", + "code_postal": "33620", + "coordonnees_gps": [ + 45.0629627303, + -0.376243370882 + ], + "libelle_d_acheminement": "MARSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.376243370882, + 45.0629627303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ae0e3c5f3bca29e45ed1273b99c6b87dbf89880", + "fields": { + "code_commune_insee": "33276", + "nom_de_la_commune": "MASSEILLES", + "code_postal": "33690", + "coordonnees_gps": [ + 44.4025946002, + -0.0592641456363 + ], + "libelle_d_acheminement": "MASSEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0592641456363, + 44.4025946002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8740f78c83991b99a1b023664a2433e1bd8b037f", + "fields": { + "code_commune_insee": "33282", + "nom_de_la_commune": "MERIGNAS", + "code_postal": "33350", + "coordonnees_gps": [ + 44.785315227, + -0.0842235112543 + ], + "libelle_d_acheminement": "MERIGNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0842235112543, + 44.785315227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69b8d8611bb3db1f180720621edb98bd56234721", + "fields": { + "code_commune_insee": "33284", + "nom_de_la_commune": "MIOS", + "code_postal": "33380", + "coordonnees_gps": [ + 44.6179149385, + -0.895043516013 + ], + "libelle_d_acheminement": "MIOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.895043516013, + 44.6179149385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d96f3f204684ec14f1b5dfdb7e3dcb65ea4338cc", + "fields": { + "ligne_5": "CAUDOS", + "code_commune_insee": "33284", + "libelle_d_acheminement": "MIOS", + "code_postal": "33380", + "nom_de_la_commune": "MIOS", + "coordonnees_gps": [ + 44.6179149385, + -0.895043516013 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.895043516013, + 44.6179149385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4c8a19f37bf034cc94d9abf3bb46107a158c346", + "fields": { + "code_commune_insee": "33287", + "nom_de_la_commune": "MONGAUZY", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5716886086, + 0.0260082761358 + ], + "libelle_d_acheminement": "MONGAUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0260082761358, + 44.5716886086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ec97010d7a19ffd08f36e3c634558731ca2374d", + "fields": { + "code_commune_insee": "33288", + "nom_de_la_commune": "MONPRIMBLANC", + "code_postal": "33410", + "coordonnees_gps": [ + 44.6308462675, + -0.255341056142 + ], + "libelle_d_acheminement": "MONPRIMBLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.255341056142, + 44.6308462675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4b6066d218e3da21d05b8333e0d5785d655fb0d", + "fields": { + "code_commune_insee": "33302", + "nom_de_la_commune": "NEAC", + "code_postal": "33500", + "coordonnees_gps": [ + 44.9434879811, + -0.177921280134 + ], + "libelle_d_acheminement": "NEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.177921280134, + 44.9434879811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaf237edfacedbb5da29fe14574a8706de7271a9", + "fields": { + "code_commune_insee": "33311", + "nom_de_la_commune": "PAILLET", + "code_postal": "33550", + "coordonnees_gps": [ + 44.6854994592, + -0.361810561695 + ], + "libelle_d_acheminement": "PAILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.361810561695, + 44.6854994592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9046139fae657aa6fbf845f4aa7c69005720112e", + "fields": { + "code_commune_insee": "33312", + "nom_de_la_commune": "PAREMPUYRE", + "code_postal": "33290", + "coordonnees_gps": [ + 44.9541509661, + -0.580766578801 + ], + "libelle_d_acheminement": "PAREMPUYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.580766578801, + 44.9541509661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f0443dc8657fd281ac60d95fe7c2327417c83f8", + "fields": { + "code_commune_insee": "33315", + "nom_de_la_commune": "LES PEINTURES", + "code_postal": "33230", + "coordonnees_gps": [ + 45.0651284509, + -0.0878121434236 + ], + "libelle_d_acheminement": "LES PEINTURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0878121434236, + 45.0651284509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1526004ada7a4a729ef66be17d7ef55c99a7b6d", + "fields": { + "code_commune_insee": "33319", + "nom_de_la_commune": "PESSAC SUR DORDOGNE", + "code_postal": "33890", + "coordonnees_gps": [ + 44.8179368546, + 0.0937252585904 + ], + "libelle_d_acheminement": "PESSAC SUR DORDOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0937252585904, + 44.8179368546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97d50d4e04002341583d8efd0a08744de2b1ba83", + "fields": { + "code_commune_insee": "33322", + "nom_de_la_commune": "LE PIAN MEDOC", + "code_postal": "33290", + "coordonnees_gps": [ + 44.9562692622, + -0.670672181899 + ], + "libelle_d_acheminement": "LE PIAN MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.670672181899, + 44.9562692622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc53826558170506edefe83a66a58b229d37c2e6", + "fields": { + "code_commune_insee": "33329", + "nom_de_la_commune": "POMPEJAC", + "code_postal": "33730", + "coordonnees_gps": [ + 44.3995823965, + -0.298890658986 + ], + "libelle_d_acheminement": "POMPEJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.298890658986, + 44.3995823965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2afebe014acb971243be4e536b48c8f40ce4a26c", + "fields": { + "code_commune_insee": "33330", + "nom_de_la_commune": "POMPIGNAC", + "code_postal": "33370", + "coordonnees_gps": [ + 44.8541963522, + -0.431857978579 + ], + "libelle_d_acheminement": "POMPIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.431857978579, + 44.8541963522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c615033ffbf9481d279a53ec6c224f8938e9234", + "fields": { + "code_commune_insee": "33332", + "nom_de_la_commune": "PORCHERES", + "code_postal": "33660", + "coordonnees_gps": [ + 45.0370123077, + 0.00132456186091 + ], + "libelle_d_acheminement": "PORCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00132456186091, + 45.0370123077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a53d553daacd9738dfe0140e2e02bad62ddd6974", + "fields": { + "code_commune_insee": "33333", + "nom_de_la_commune": "LE PORGE", + "code_postal": "33680", + "coordonnees_gps": [ + 44.867037132, + -1.14092605911 + ], + "libelle_d_acheminement": "LE PORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14092605911, + 44.867037132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eca6a2078237d2334d38ab513d572e9999851eff", + "fields": { + "code_commune_insee": "33344", + "nom_de_la_commune": "PUJOLS", + "code_postal": "33350", + "coordonnees_gps": [ + 44.806319089, + -0.0328874933658 + ], + "libelle_d_acheminement": "PUJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0328874933658, + 44.806319089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a1886c3f340a548b42fcd63dc0d16c912318a2a", + "fields": { + "code_commune_insee": "33346", + "nom_de_la_commune": "PUYBARBAN", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5479161456, + -0.069264224566 + ], + "libelle_d_acheminement": "PUYBARBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.069264224566, + 44.5479161456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aa4619ebb77dcbc2aa8b29e1e9d4801f6224a6b", + "fields": { + "code_commune_insee": "33349", + "nom_de_la_commune": "QUINSAC", + "code_postal": "33360", + "coordonnees_gps": [ + 44.7509609178, + -0.490697647694 + ], + "libelle_d_acheminement": "QUINSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.490697647694, + 44.7509609178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2beacdb8e043605861899baa4539c65b071b0c14", + "fields": { + "code_commune_insee": "33353", + "nom_de_la_commune": "RIMONS", + "code_postal": "33580", + "coordonnees_gps": [ + 44.6744095264, + 0.0144612295759 + ], + "libelle_d_acheminement": "RIMONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0144612295759, + 44.6744095264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01873ceb333aef6ecba90a00b82706f7fb0dd302", + "fields": { + "code_commune_insee": "33360", + "nom_de_la_commune": "LA ROQUILLE", + "code_postal": "33220", + "coordonnees_gps": [ + 44.7853020324, + 0.232048719283 + ], + "libelle_d_acheminement": "LA ROQUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.232048719283, + 44.7853020324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "040629cd9ef6f0fb121203facc7703e6d8b780b9", + "fields": { + "code_commune_insee": "33374", + "nom_de_la_commune": "ST AUBIN DE BLAYE", + "code_postal": "33820", + "coordonnees_gps": [ + 45.2588194568, + -0.572897144494 + ], + "libelle_d_acheminement": "ST AUBIN DE BLAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.572897144494, + 45.2588194568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15ed5df7f21b484b0c2a0bc601dd64c2e0fab65b", + "fields": { + "code_commune_insee": "33375", + "nom_de_la_commune": "ST AUBIN DE BRANNE", + "code_postal": "33420", + "coordonnees_gps": [ + 44.8109316671, + -0.168129040807 + ], + "libelle_d_acheminement": "ST AUBIN DE BRANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.168129040807, + 44.8109316671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3708ea1ffb750a608bcf410f4eb1b8e254e2f808", + "fields": { + "code_commune_insee": "33379", + "nom_de_la_commune": "ST BRICE", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6937696181, + -0.141055094504 + ], + "libelle_d_acheminement": "ST BRICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.141055094504, + 44.6937696181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "844666c593319f6b31b9989ac708f05e2a4cb507", + "fields": { + "ligne_5": "MARCILLAC", + "code_commune_insee": "33380", + "libelle_d_acheminement": "VAL DE LIVENNE", + "code_postal": "33860", + "nom_de_la_commune": "VAL DE LIVENNE", + "coordonnees_gps": [ + 45.2880354799, + -0.566771692266 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.566771692266, + 45.2880354799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23a0b31698cc2b773b15928085aaac6dfbd324d0", + "fields": { + "code_commune_insee": "33381", + "nom_de_la_commune": "ST CAPRAIS DE BORDEAUX", + "code_postal": "33880", + "coordonnees_gps": [ + 44.7540788366, + -0.427673567177 + ], + "libelle_d_acheminement": "ST CAPRAIS DE BORDEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.427673567177, + 44.7540788366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9338b3d312ad3d84051aa9c82aebfc78aaaff76d", + "fields": { + "code_commune_insee": "33383", + "nom_de_la_commune": "ST CHRISTOLY MEDOC", + "code_postal": "33340", + "coordonnees_gps": [ + 45.3574015951, + -0.834464734201 + ], + "libelle_d_acheminement": "ST CHRISTOLY MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.834464734201, + 45.3574015951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d0eb00a8afec19bd8c5852c1a0e42bd3eb7b189", + "fields": { + "code_commune_insee": "33386", + "nom_de_la_commune": "ST CIBARD", + "code_postal": "33570", + "coordonnees_gps": [ + 44.9384422603, + -0.0230796373172 + ], + "libelle_d_acheminement": "ST CIBARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0230796373172, + 44.9384422603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b6b84548bd6b0b202c8210e73fd9ed9990774fe", + "fields": { + "code_commune_insee": "33392", + "nom_de_la_commune": "STE CROIX DU MONT", + "code_postal": "33410", + "coordonnees_gps": [ + 44.5979961934, + -0.272147017146 + ], + "libelle_d_acheminement": "STE CROIX DU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.272147017146, + 44.5979961934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53b49171ab8561074b121aaa0e80420b065fc6a2", + "fields": { + "code_commune_insee": "33397", + "nom_de_la_commune": "STE EULALIE", + "code_postal": "33560", + "coordonnees_gps": [ + 44.9016662079, + -0.479039252599 + ], + "libelle_d_acheminement": "STE EULALIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479039252599, + 44.9016662079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be3aa8c350da5fa910c78754c5cf969ca2989e13", + "fields": { + "code_commune_insee": "33402", + "nom_de_la_commune": "STE FOY LA GRANDE", + "code_postal": "33220", + "coordonnees_gps": [ + 44.8408428381, + 0.217540501109 + ], + "libelle_d_acheminement": "STE FOY LA GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.217540501109, + 44.8408428381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6620853bf4f58bb8e96e0fba3930191e8bd1beaf", + "fields": { + "code_commune_insee": "33404", + "nom_de_la_commune": "STE GEMME", + "code_postal": "33580", + "coordonnees_gps": [ + 44.6180963158, + 0.0736487066839 + ], + "libelle_d_acheminement": "STE GEMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0736487066839, + 44.6180963158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb2e57d660c7b6d684c944e3a4f7f7f300ebc74c", + "fields": { + "code_commune_insee": "33407", + "nom_de_la_commune": "ST GENES DE FRONSAC", + "code_postal": "33240", + "coordonnees_gps": [ + 45.0267396245, + -0.345881901281 + ], + "libelle_d_acheminement": "ST GENES DE FRONSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.345881901281, + 45.0267396245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa29043b5ef6f118cfed448b201acb58e01f8b1c", + "fields": { + "code_commune_insee": "33414", + "nom_de_la_commune": "ST GERMAIN DE LA RIVIERE", + "code_postal": "33240", + "coordonnees_gps": [ + 44.9440812975, + -0.330721356984 + ], + "libelle_d_acheminement": "ST GERMAIN DE LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.330721356984, + 44.9440812975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40e61686a23a57f86b25fce64ecff2615fac57bc", + "fields": { + "code_commune_insee": "33415", + "nom_de_la_commune": "ST GERVAIS", + "code_postal": "33240", + "coordonnees_gps": [ + 45.0168841442, + -0.466644365612 + ], + "libelle_d_acheminement": "ST GERVAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.466644365612, + 45.0168841442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee161065c352affa95492756bf3406167bdee56a", + "fields": { + "code_commune_insee": "33420", + "nom_de_la_commune": "ST HIPPOLYTE", + "code_postal": "33330", + "coordonnees_gps": [ + 44.8740781768, + -0.120995887254 + ], + "libelle_d_acheminement": "ST HIPPOLYTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.120995887254, + 44.8740781768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb5195db433328ffc4d06dbc3a7f00777fae4fde", + "fields": { + "code_commune_insee": "33422", + "nom_de_la_commune": "ST JEAN D ILLAC", + "code_postal": "33127", + "coordonnees_gps": [ + 44.7934010703, + -0.819193904642 + ], + "libelle_d_acheminement": "ST JEAN D ILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.819193904642, + 44.7934010703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fa55cb225e47f67d1ba11ca50256f522ee634f9", + "fields": { + "code_commune_insee": "33423", + "nom_de_la_commune": "ST JULIEN BEYCHEVELLE", + "code_postal": "33250", + "coordonnees_gps": [ + 45.1572384693, + -0.737068946375 + ], + "libelle_d_acheminement": "ST JULIEN BEYCHEVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.737068946375, + 45.1572384693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4463ccc2c8d8d70426f5d3584df81bcac27ce30c", + "fields": { + "code_commune_insee": "33429", + "nom_de_la_commune": "ST LEGER DE BALSON", + "code_postal": "33113", + "coordonnees_gps": [ + 44.429710887, + -0.441424293388 + ], + "libelle_d_acheminement": "ST LEGER DE BALSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441424293388, + 44.429710887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f79ff03785f00f2f055abbb051f36117ecc5bba", + "fields": { + "code_commune_insee": "33432", + "nom_de_la_commune": "ST LOUBERT", + "code_postal": "33210", + "coordonnees_gps": [ + 44.5533634868, + -0.168857964399 + ], + "libelle_d_acheminement": "ST LOUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.168857964399, + 44.5533634868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b00a8d72d210ffe06d95d6306808fd6489c94d7", + "fields": { + "code_commune_insee": "33433", + "nom_de_la_commune": "ST LOUBES", + "code_postal": "33450", + "coordonnees_gps": [ + 44.9220849836, + -0.430829260925 + ], + "libelle_d_acheminement": "ST LOUBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.430829260925, + 44.9220849836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b221ef5a6d92bec5a34b92849f82132eca039384", + "fields": { + "code_commune_insee": "33434", + "nom_de_la_commune": "ST LOUIS DE MONTFERRAND", + "code_postal": "33440", + "coordonnees_gps": [ + 44.9582743614, + -0.533092800544 + ], + "libelle_d_acheminement": "ST LOUIS DE MONTFERRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.533092800544, + 44.9582743614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bec1935b1fb2fcfb3a08191f51d2cb0a4c0f8d4", + "fields": { + "code_commune_insee": "33435", + "nom_de_la_commune": "ST MACAIRE", + "code_postal": "33490", + "coordonnees_gps": [ + 44.5631655827, + -0.232549072695 + ], + "libelle_d_acheminement": "ST MACAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.232549072695, + 44.5631655827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c42c32b62e779407f6f1b040dfbccdbac82f03d", + "fields": { + "code_commune_insee": "33442", + "nom_de_la_commune": "ST MARTIN DE LAYE", + "code_postal": "33910", + "coordonnees_gps": [ + 45.0337147655, + -0.232425034493 + ], + "libelle_d_acheminement": "ST MARTIN DE LAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.232425034493, + 45.0337147655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4354ee9de342ffe6f0866834173a36aa89d91a3f", + "fields": { + "code_commune_insee": "33465", + "nom_de_la_commune": "ST PIERRE DE MONS", + "code_postal": "33210", + "coordonnees_gps": [ + 44.5455986707, + -0.213270603156 + ], + "libelle_d_acheminement": "ST PIERRE DE MONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.213270603156, + 44.5455986707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "181f0e3c3fedbb744b74104973e00580e70cb797", + "fields": { + "code_commune_insee": "33467", + "nom_de_la_commune": "ST QUENTIN DE CAPLONG", + "code_postal": "33220", + "coordonnees_gps": [ + 44.7954078713, + 0.137421248916 + ], + "libelle_d_acheminement": "ST QUENTIN DE CAPLONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.137421248916, + 44.7954078713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35f99e8bd9671ab4f0cd1fd3ef43910fed4ec7d9", + "fields": { + "code_commune_insee": "33470", + "nom_de_la_commune": "ST ROMAIN LA VIRVEE", + "code_postal": "33240", + "coordonnees_gps": [ + 44.9594958204, + -0.409988022855 + ], + "libelle_d_acheminement": "ST ROMAIN LA VIRVEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.409988022855, + 44.9594958204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "360797df9743d2d85eb3fab7c3c1e12365911424", + "fields": { + "code_commune_insee": "33481", + "nom_de_la_commune": "ST SULPICE DE GUILLERAGUES", + "code_postal": "33580", + "coordonnees_gps": [ + 44.6298211535, + 0.0478045586142 + ], + "libelle_d_acheminement": "ST SULPICE DE GUILLERAGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0478045586142, + 44.6298211535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "017e859bb0bcf8c6b72caa1ccc9d53504aa119b3", + "fields": { + "code_commune_insee": "33483", + "nom_de_la_commune": "ST SULPICE ET CAMEYRAC", + "code_postal": "33450", + "coordonnees_gps": [ + 44.9006929748, + -0.386356667148 + ], + "libelle_d_acheminement": "ST SULPICE ET CAMEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.386356667148, + 44.9006929748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1f54991701142d6aa94e2c658e465b0ab69edcc", + "fields": { + "code_commune_insee": "33484", + "nom_de_la_commune": "ST SYMPHORIEN", + "code_postal": "33113", + "coordonnees_gps": [ + 44.4230431057, + -0.540077855567 + ], + "libelle_d_acheminement": "ST SYMPHORIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.540077855567, + 44.4230431057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70f6cf3ca33bfd94688e91ced9aff05adbcd2a04", + "fields": { + "code_commune_insee": "33488", + "nom_de_la_commune": "ST VINCENT DE PERTIGNAS", + "code_postal": "33420", + "coordonnees_gps": [ + 44.798947903, + -0.111709679595 + ], + "libelle_d_acheminement": "ST VINCENT DE PERTIGNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.111709679595, + 44.798947903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d74fc027bf9407974b618306c82e35a59cdc329b", + "fields": { + "code_commune_insee": "33490", + "nom_de_la_commune": "ST VIVIEN DE MEDOC", + "code_postal": "33590", + "coordonnees_gps": [ + 45.4448997838, + -1.02531932797 + ], + "libelle_d_acheminement": "ST VIVIEN DE MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02531932797, + 45.4448997838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8c1327517a023e4558a1d2c51b074c7d1d3942f", + "fields": { + "code_commune_insee": "33491", + "nom_de_la_commune": "ST VIVIEN DE MONSEGUR", + "code_postal": "33580", + "coordonnees_gps": [ + 44.6162538241, + 0.116604904925 + ], + "libelle_d_acheminement": "ST VIVIEN DE MONSEGUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.116604904925, + 44.6162538241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84af746c1f85354b5541731b869ef7d7244e32e0", + "fields": { + "code_commune_insee": "33492", + "nom_de_la_commune": "ST YZAN DE SOUDIAC", + "code_postal": "33920", + "coordonnees_gps": [ + 45.1520899174, + -0.405167820724 + ], + "libelle_d_acheminement": "ST YZAN DE SOUDIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.405167820724, + 45.1520899174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13ef575f429ff53d4135ab16ef8824b90a2f9097", + "fields": { + "code_commune_insee": "33494", + "nom_de_la_commune": "SALAUNES", + "code_postal": "33160", + "coordonnees_gps": [ + 44.9276818201, + -0.845720627431 + ], + "libelle_d_acheminement": "SALAUNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.845720627431, + 44.9276818201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53c391e09eb833cd5c753f86323446665de1a0ef", + "fields": { + "code_commune_insee": "33496", + "nom_de_la_commune": "SALLEBOEUF", + "code_postal": "33370", + "coordonnees_gps": [ + 44.8438707092, + -0.39299225545 + ], + "libelle_d_acheminement": "SALLEBOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39299225545, + 44.8438707092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e234cc5c90343236981842b7b76f91bdde719274", + "fields": { + "code_commune_insee": "33507", + "nom_de_la_commune": "SAUVIAC", + "code_postal": "33430", + "coordonnees_gps": [ + 44.4000851943, + -0.183884357604 + ], + "libelle_d_acheminement": "SAUVIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.183884357604, + 44.4000851943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff3675950ca403adc03a29997064fb5346e7eeb5", + "fields": { + "code_commune_insee": "33514", + "nom_de_la_commune": "SOULAC SUR MER", + "code_postal": "33780", + "coordonnees_gps": [ + 45.493296382, + -1.10918123147 + ], + "libelle_d_acheminement": "SOULAC SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10918123147, + 45.493296382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8125a272e24995e947208fc80f69a629d51aed1", + "fields": { + "code_commune_insee": "33516", + "nom_de_la_commune": "SOUSSAC", + "code_postal": "33790", + "coordonnees_gps": [ + 44.7356053144, + 0.0112731568221 + ], + "libelle_d_acheminement": "SOUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0112731568221, + 44.7356053144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7e11b0508f6d5c5b4fe9b6a803ebffcdb034cf9", + "fields": { + "code_commune_insee": "33517", + "nom_de_la_commune": "SOUSSANS", + "code_postal": "33460", + "coordonnees_gps": [ + 45.0563042075, + -0.697907697302 + ], + "libelle_d_acheminement": "SOUSSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.697907697302, + 45.0563042075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0713d2204176e4f866dc9a8fb948060a1ac030d", + "fields": { + "code_commune_insee": "33526", + "nom_de_la_commune": "TAYAC", + "code_postal": "33570", + "coordonnees_gps": [ + 44.9605098149, + -0.023701712084 + ], + "libelle_d_acheminement": "TAYAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.023701712084, + 44.9605098149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edf6771202851529dd89fef6fb0c590282a24bbc", + "fields": { + "code_commune_insee": "33528", + "nom_de_la_commune": "LE TEMPLE", + "code_postal": "33680", + "coordonnees_gps": [ + 44.8635232625, + -0.95904166915 + ], + "libelle_d_acheminement": "LE TEMPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.95904166915, + 44.8635232625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a3b3e35dc03b02e2df9fffed0f82190a6254722", + "fields": { + "code_commune_insee": "33534", + "nom_de_la_commune": "LE TOURNE", + "code_postal": "33550", + "coordonnees_gps": [ + 44.717281049, + -0.397019832374 + ], + "libelle_d_acheminement": "LE TOURNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.397019832374, + 44.717281049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04bffbe7ec2ad393f3b19b1104a39faebfbb391b", + "fields": { + "code_commune_insee": "33536", + "nom_de_la_commune": "LE TUZAN", + "code_postal": "33125", + "coordonnees_gps": [ + 44.4493819137, + -0.600499889851 + ], + "libelle_d_acheminement": "LE TUZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.600499889851, + 44.4493819137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4d03ab0ad58a5bc88c4cae06cd1326b964e0770", + "fields": { + "code_commune_insee": "33541", + "nom_de_la_commune": "VENSAC", + "code_postal": "33590", + "coordonnees_gps": [ + 45.3988518423, + -1.07454435969 + ], + "libelle_d_acheminement": "VENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07454435969, + 45.3988518423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83fc222b8b481191c335e492d258e74b4abc474c", + "fields": { + "code_commune_insee": "33544", + "nom_de_la_commune": "LE VERDON SUR MER", + "code_postal": "33123", + "coordonnees_gps": [ + 45.5385656326, + -1.07975440879 + ], + "libelle_d_acheminement": "LE VERDON SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07975440879, + 45.5385656326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a996fbfd8b8cfb54039db3f33b6b65efff34ee0", + "fields": { + "code_commune_insee": "33549", + "nom_de_la_commune": "VILLENAVE DE RIONS", + "code_postal": "33550", + "coordonnees_gps": [ + 44.6900368353, + -0.340475124809 + ], + "libelle_d_acheminement": "VILLENAVE DE RIONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.340475124809, + 44.6900368353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7da33f63918e904fc0963b53b95744ce2c59d361", + "fields": { + "code_commune_insee": "33551", + "nom_de_la_commune": "VILLENEUVE", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0812887735, + -0.63981215902 + ], + "libelle_d_acheminement": "VILLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63981215902, + 45.0812887735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d45ca41482cdb96ca8ac666dbd88e9d5c606135c", + "fields": { + "code_commune_insee": "34002", + "nom_de_la_commune": "ADISSAN", + "code_postal": "34230", + "coordonnees_gps": [ + 43.535473519, + 3.42608475989 + ], + "libelle_d_acheminement": "ADISSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42608475989, + 43.535473519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbe8ff141caa0bf07e4de41a4a322666d0d22fc3", + "fields": { + "code_commune_insee": "34004", + "nom_de_la_commune": "AGEL", + "code_postal": "34210", + "coordonnees_gps": [ + 43.3482634234, + 2.85354795637 + ], + "libelle_d_acheminement": "AGEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85354795637, + 43.3482634234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b54dfef381ed8fbddfab43e2ff6caab880f06337", + "fields": { + "code_commune_insee": "34023", + "nom_de_la_commune": "BALARUC LES BAINS", + "code_postal": "34540", + "coordonnees_gps": [ + 43.4469007065, + 3.69072086799 + ], + "libelle_d_acheminement": "BALARUC LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69072086799, + 43.4469007065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fa5d73b65387b996b785afdf6599aafe501bea9", + "fields": { + "code_commune_insee": "34037", + "nom_de_la_commune": "BOUJAN SUR LIBRON", + "code_postal": "34760", + "coordonnees_gps": [ + 43.3803202017, + 3.26313194789 + ], + "libelle_d_acheminement": "BOUJAN SUR LIBRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26313194789, + 43.3803202017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "712a4d3c0fa0dba3f1f5ed0070ca1ca836402c62", + "fields": { + "code_commune_insee": "34042", + "nom_de_la_commune": "BRISSAC", + "code_postal": "34190", + "coordonnees_gps": [ + 43.8680305219, + 3.70509691756 + ], + "libelle_d_acheminement": "BRISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70509691756, + 43.8680305219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e93db00f7c993b4df36b2dbe3be147e0481791dc", + "fields": { + "code_commune_insee": "34047", + "nom_de_la_commune": "CAMPAGNAN", + "code_postal": "34230", + "coordonnees_gps": [ + 43.5407744121, + 3.49239234848 + ], + "libelle_d_acheminement": "CAMPAGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49239234848, + 43.5407744121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f262a62db82d8f2537624b5a2fe4a918bb7e1fb1", + "fields": { + "code_commune_insee": "34049", + "nom_de_la_commune": "CAMPLONG", + "code_postal": "34260", + "coordonnees_gps": [ + 43.6898005202, + 3.11179486832 + ], + "libelle_d_acheminement": "CAMPLONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11179486832, + 43.6898005202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a58357fb92b44e89b0dc4cc6a0a44fe0cdf3180f", + "fields": { + "code_commune_insee": "34053", + "nom_de_la_commune": "CARLENCAS ET LEVAS", + "code_postal": "34600", + "coordonnees_gps": [ + 43.6298590815, + 3.22034291707 + ], + "libelle_d_acheminement": "CARLENCAS ET LEVAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22034291707, + 43.6298590815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fad7d7e9a78a5ab16a40cd3b0e4b042bcde9d76c", + "fields": { + "code_commune_insee": "34061", + "nom_de_la_commune": "CAUSSES ET VEYRAN", + "code_postal": "34490", + "coordonnees_gps": [ + 43.4679658506, + 3.09140817523 + ], + "libelle_d_acheminement": "CAUSSES ET VEYRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09140817523, + 43.4679658506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ada2f872a91a1e8e0f50788132c9ac24291fc5b1", + "fields": { + "code_commune_insee": "34063", + "nom_de_la_commune": "CAUX", + "code_postal": "34720", + "coordonnees_gps": [ + 43.5044671037, + 3.36827222924 + ], + "libelle_d_acheminement": "CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36827222924, + 43.5044671037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b00002de60b278b0fc84d0417a559d57fc6038ff", + "fields": { + "code_commune_insee": "34064", + "nom_de_la_commune": "LE CAYLAR", + "code_postal": "34520", + "coordonnees_gps": [ + 43.8716890931, + 3.31157473989 + ], + "libelle_d_acheminement": "LE CAYLAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31157473989, + 43.8716890931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27541d490f37a9130652d69c1b458209385cdb02", + "fields": { + "code_commune_insee": "34076", + "nom_de_la_commune": "CEYRAS", + "code_postal": "34800", + "coordonnees_gps": [ + 43.6499208195, + 3.45967930935 + ], + "libelle_d_acheminement": "CEYRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45967930935, + 43.6499208195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78c902a5fd1dc7629f5b4020a5807022209fdacb", + "fields": { + "code_commune_insee": "34080", + "nom_de_la_commune": "COLOMBIERES SUR ORB", + "code_postal": "34390", + "coordonnees_gps": [ + 43.5853145564, + 3.01084654208 + ], + "libelle_d_acheminement": "COLOMBIERES SUR ORB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01084654208, + 43.5853145564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3ffc5bcaf59ebcd783fbf70bd9d26c66b19f50a", + "fields": { + "code_commune_insee": "34083", + "nom_de_la_commune": "COMBES", + "code_postal": "34240", + "coordonnees_gps": [ + 43.602411245, + 3.0476220061 + ], + "libelle_d_acheminement": "COMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0476220061, + 43.602411245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64a3ac4a5510adc53a3dc10f80ad55378bd6b7c5", + "fields": { + "code_commune_insee": "34093", + "nom_de_la_commune": "DIO ET VALQUIERES", + "code_postal": "34650", + "coordonnees_gps": [ + 43.6690497036, + 3.22101697098 + ], + "libelle_d_acheminement": "DIO ET VALQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22101697098, + 43.6690497036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a16e0dc6ea6382fc7313b9e4944e7b860eeb2f5b", + "fields": { + "code_commune_insee": "34095", + "nom_de_la_commune": "FABREGUES", + "code_postal": "34690", + "coordonnees_gps": [ + 43.5344767016, + 3.77192951891 + ], + "libelle_d_acheminement": "FABREGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77192951891, + 43.5344767016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eae0c6dd815263e67f3ad4fa0da1a83ec73fed7", + "fields": { + "code_commune_insee": "34096", + "nom_de_la_commune": "FAUGERES", + "code_postal": "34600", + "coordonnees_gps": [ + 43.5687652177, + 3.18349121003 + ], + "libelle_d_acheminement": "FAUGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18349121003, + 43.5687652177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b63e7300716f793e1c3ac555f068f83d4e8b782e", + "fields": { + "code_commune_insee": "34099", + "nom_de_la_commune": "FERRIERES LES VERRERIES", + "code_postal": "34190", + "coordonnees_gps": [ + 43.8675537207, + 3.80028962389 + ], + "libelle_d_acheminement": "FERRIERES LES VERRERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80028962389, + 43.8675537207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dced12d63a6aa572f9233e1ad525a1ef425673e", + "fields": { + "code_commune_insee": "34101", + "nom_de_la_commune": "FLORENSAC", + "code_postal": "34510", + "coordonnees_gps": [ + 43.3858472782, + 3.4638416795 + ], + "libelle_d_acheminement": "FLORENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4638416795, + 43.3858472782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43532ff22ce7951f1e9c1088866ba92cea8fd28a", + "fields": { + "code_commune_insee": "34105", + "nom_de_la_commune": "FOUZILHON", + "code_postal": "34480", + "coordonnees_gps": [ + 43.5057316875, + 3.23717233184 + ], + "libelle_d_acheminement": "FOUZILHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23717233184, + 43.5057316875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d0ebaf008cfe1bf3a6929a9455d677b1464206e", + "fields": { + "code_commune_insee": "34107", + "nom_de_la_commune": "FRAISSE SUR AGOUT", + "code_postal": "34330", + "coordonnees_gps": [ + 43.5926354982, + 2.79705531131 + ], + "libelle_d_acheminement": "FRAISSE SUR AGOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79705531131, + 43.5926354982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acbf087a6eb147ef8eb7794f5548a4f5e1c354bc", + "fields": { + "ligne_5": "LA PEYRADE", + "code_commune_insee": "34108", + "libelle_d_acheminement": "FRONTIGNAN", + "code_postal": "34110", + "nom_de_la_commune": "FRONTIGNAN", + "coordonnees_gps": [ + 43.4482458873, + 3.74923522416 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74923522416, + 43.4482458873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76598b0d2ef57a9accd88d6196ba56d1e9c4327b", + "fields": { + "code_commune_insee": "34121", + "nom_de_la_commune": "JONCELS", + "code_postal": "34650", + "coordonnees_gps": [ + 43.7662193916, + 3.18310096799 + ], + "libelle_d_acheminement": "JONCELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18310096799, + 43.7662193916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80cda7d4335143523f07639917fb8fb2f0b0d438", + "fields": { + "code_commune_insee": "34126", + "nom_de_la_commune": "LAMALOU LES BAINS", + "code_postal": "34240", + "coordonnees_gps": [ + 43.5964619142, + 3.08445405222 + ], + "libelle_d_acheminement": "LAMALOU LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08445405222, + 43.5964619142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef8e1eafeb7957a5073c4ce75a461bfbd4c311f8", + "fields": { + "code_commune_insee": "34128", + "nom_de_la_commune": "LAROQUE", + "code_postal": "34190", + "coordonnees_gps": [ + 43.9256514661, + 3.73343293055 + ], + "libelle_d_acheminement": "LAROQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73343293055, + 43.9256514661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11caaaf172f658dd3edeb05f5a194591cf71ae52", + "fields": { + "code_commune_insee": "34133", + "nom_de_la_commune": "LAVALETTE", + "code_postal": "34700", + "coordonnees_gps": [ + 43.6926559892, + 3.27139234301 + ], + "libelle_d_acheminement": "LAVALETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27139234301, + 43.6926559892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "625700fa1c4fe428c39ef72d4ed23b7273e1280f", + "fields": { + "code_commune_insee": "34148", + "nom_de_la_commune": "MARAUSSAN", + "code_postal": "34370", + "coordonnees_gps": [ + 43.370567073, + 3.1537894615 + ], + "libelle_d_acheminement": "MARAUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1537894615, + 43.370567073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b6e2cfbb76e76bb3ece988a4f69f9de1692d534", + "fields": { + "code_commune_insee": "34149", + "nom_de_la_commune": "MARGON", + "code_postal": "34320", + "coordonnees_gps": [ + 43.4864901755, + 3.30406918161 + ], + "libelle_d_acheminement": "MARGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30406918161, + 43.4864901755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a34fcb42a76337f03f2f2cfbc73ca47668164aa9", + "fields": { + "code_commune_insee": "34150", + "nom_de_la_commune": "MARSEILLAN", + "code_postal": "34340", + "coordonnees_gps": [ + 43.3605776007, + 3.54718963761 + ], + "libelle_d_acheminement": "MARSEILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54718963761, + 43.3605776007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9bd7cc95318264c6de8bc47127a54cdb8bec2cf", + "fields": { + "code_commune_insee": "34161", + "nom_de_la_commune": "MONTADY", + "code_postal": "34310", + "coordonnees_gps": [ + 43.3285047609, + 3.11398724899 + ], + "libelle_d_acheminement": "MONTADY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11398724899, + 43.3285047609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32861cc2d98c4f709df9ab50c543ea4cf9095dc0", + "fields": { + "code_commune_insee": "34168", + "nom_de_la_commune": "MONTESQUIEU", + "code_postal": "34320", + "coordonnees_gps": [ + 43.5621026684, + 3.27145529278 + ], + "libelle_d_acheminement": "MONTESQUIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27145529278, + 43.5621026684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d845b23e438ce636c0da1e930479594178fdc691", + "fields": { + "code_commune_insee": "34172", + "nom_de_la_commune": "MONTPELLIER", + "code_postal": "34090", + "coordonnees_gps": [ + 43.6134409138, + 3.86851657896 + ], + "libelle_d_acheminement": "MONTPELLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86851657896, + 43.6134409138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b852ac2f45137b590e02268397990e0f35d85b2", + "fields": { + "code_commune_insee": "34182", + "nom_de_la_commune": "NEZIGNAN L EVEQUE", + "code_postal": "34120", + "coordonnees_gps": [ + 43.4214743639, + 3.4038201049 + ], + "libelle_d_acheminement": "NEZIGNAN L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4038201049, + 43.4214743639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73b5476da1128f0913b0d9f8e0cec1f26c00eb19", + "fields": { + "code_commune_insee": "34185", + "nom_de_la_commune": "NOTRE DAME DE LONDRES", + "code_postal": "34380", + "coordonnees_gps": [ + 43.8324773443, + 3.75718423369 + ], + "libelle_d_acheminement": "NOTRE DAME DE LONDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75718423369, + 43.8324773443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3e81171afcab2c94a6f310313a95bc1d01ce1d2", + "fields": { + "code_commune_insee": "34193", + "nom_de_la_commune": "PARDAILHAN", + "code_postal": "34360", + "coordonnees_gps": [ + 43.4450155578, + 2.83724812939 + ], + "libelle_d_acheminement": "PARDAILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83724812939, + 43.4450155578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bed1a049efe0d1d023f08be3e953701909bd2215", + "fields": { + "code_commune_insee": "34197", + "nom_de_la_commune": "PERET", + "code_postal": "34800", + "coordonnees_gps": [ + 43.5749250914, + 3.39831770364 + ], + "libelle_d_acheminement": "PERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39831770364, + 43.5749250914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff260621d0b780d19e5f538ef23b2cb4c76d63fa", + "fields": { + "code_commune_insee": "34205", + "nom_de_la_commune": "LES PLANS", + "code_postal": "34700", + "coordonnees_gps": [ + 43.7561210421, + 3.26564672986 + ], + "libelle_d_acheminement": "LES PLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26564672986, + 43.7561210421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a287e471f24675ab6a93e1b03a9ee6ced538fd64", + "fields": { + "code_commune_insee": "34209", + "nom_de_la_commune": "PORTIRAGNES", + "code_postal": "34420", + "coordonnees_gps": [ + 43.301736727, + 3.3476310741 + ], + "libelle_d_acheminement": "PORTIRAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3476310741, + 43.301736727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e71a2bb0380d134ae3dee198debce680aebfcf28", + "fields": { + "code_commune_insee": "34210", + "nom_de_la_commune": "LE POUGET", + "code_postal": "34230", + "coordonnees_gps": [ + 43.5925476738, + 3.51727150563 + ], + "libelle_d_acheminement": "LE POUGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51727150563, + 43.5925476738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "407e6126bebfeeb4420b138a6ef5d07812771bee", + "fields": { + "code_commune_insee": "34211", + "nom_de_la_commune": "LE POUJOL SUR ORB", + "code_postal": "34600", + "coordonnees_gps": [ + 43.5830682965, + 3.05437993033 + ], + "libelle_d_acheminement": "LE POUJOL SUR ORB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05437993033, + 43.5830682965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9947ab8ef7f0810ae6138eae1704d7296bea7a71", + "fields": { + "code_commune_insee": "34217", + "nom_de_la_commune": "PRADES LE LEZ", + "code_postal": "34730", + "coordonnees_gps": [ + 43.7072541597, + 3.86489213915 + ], + "libelle_d_acheminement": "PRADES LE LEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86489213915, + 43.7072541597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "656256980d858678a25e7954c0fc6b9f3f2fb660", + "fields": { + "code_commune_insee": "34219", + "nom_de_la_commune": "PREMIAN", + "code_postal": "34390", + "coordonnees_gps": [ + 43.5395150426, + 2.82265477 + ], + "libelle_d_acheminement": "PREMIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82265477, + 43.5395150426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35f720c05ec20d70ba9077519876e2d674072a97", + "fields": { + "ligne_5": "ST CHRISTOL", + "code_commune_insee": "34246", + "libelle_d_acheminement": "ENTRE VIGNES", + "code_postal": "34400", + "nom_de_la_commune": "ENTRE VIGNES", + "coordonnees_gps": [ + 43.7236376937, + 4.07222709677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07222709677, + 43.7236376937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e448193b660d1663aa317c4de2285a51d9ee9f3", + "fields": { + "ligne_5": "VERARGUES", + "code_commune_insee": "34246", + "libelle_d_acheminement": "ENTRE VIGNES", + "code_postal": "34400", + "nom_de_la_commune": "ENTRE VIGNES", + "coordonnees_gps": [ + 43.7236376937, + 4.07222709677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07222709677, + 43.7236376937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76c4956094dec660eeece3a3deeefc52a4675720", + "fields": { + "code_commune_insee": "34247", + "nom_de_la_commune": "ST CLEMENT DE RIVIERE", + "code_postal": "34980", + "coordonnees_gps": [ + 43.6860686936, + 3.84318936676 + ], + "libelle_d_acheminement": "ST CLEMENT DE RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84318936676, + 43.6860686936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b2d48eaaf6f4f7daccbad668151e4b5c493e037", + "fields": { + "code_commune_insee": "34258", + "nom_de_la_commune": "ST GENIES DE FONTEDIT", + "code_postal": "34480", + "coordonnees_gps": [ + 43.4689118509, + 3.17497763189 + ], + "libelle_d_acheminement": "ST GENIES DE FONTEDIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17497763189, + 43.4689118509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7fc97be9a44d8c6878de78a49f47a76c1d0eaf3", + "fields": { + "code_commune_insee": "34263", + "nom_de_la_commune": "ST HILAIRE DE BEAUVOIR", + "code_postal": "34160", + "coordonnees_gps": [ + 43.7530311064, + 4.01945192332 + ], + "libelle_d_acheminement": "ST HILAIRE DE BEAUVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01945192332, + 43.7530311064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "128af2634a013782cc372eb5e6c4e6847819d8c7", + "fields": { + "code_commune_insee": "34265", + "nom_de_la_commune": "ST JEAN DE CORNIES", + "code_postal": "34160", + "coordonnees_gps": [ + 43.744776404, + 4.00334009324 + ], + "libelle_d_acheminement": "ST JEAN DE CORNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00334009324, + 43.744776404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ee6af734975a4d0dcd19f9a10e5322bc0ff259d", + "fields": { + "code_commune_insee": "34276", + "nom_de_la_commune": "ST MATHIEU DE TREVIERS", + "code_postal": "34270", + "coordonnees_gps": [ + 43.7692073898, + 3.87002027505 + ], + "libelle_d_acheminement": "ST MATHIEU DE TREVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87002027505, + 43.7692073898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e309c02f4e2ca36c64ed0ee77107f8cf40a7d200", + "fields": { + "code_commune_insee": "34277", + "nom_de_la_commune": "ST MAURICE NAVACELLES", + "code_postal": "34520", + "coordonnees_gps": [ + 43.8448734239, + 3.5062650669 + ], + "libelle_d_acheminement": "ST MAURICE NAVACELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5062650669, + 43.8448734239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a8c7a25ab9d2592d169c9d11e5ffef53d6c6d72", + "fields": { + "code_commune_insee": "34278", + "nom_de_la_commune": "ST MICHEL", + "code_postal": "34520", + "coordonnees_gps": [ + 43.8408209485, + 3.40636511329 + ], + "libelle_d_acheminement": "ST MICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40636511329, + 43.8408209485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "023b01f9918d3a3a8cec6327e29e7ed0a4880776", + "fields": { + "code_commune_insee": "34282", + "nom_de_la_commune": "ST PAUL ET VALMALLE", + "code_postal": "34570", + "coordonnees_gps": [ + 43.6147377182, + 3.67925764242 + ], + "libelle_d_acheminement": "ST PAUL ET VALMALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67925764242, + 43.6147377182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "680fd84dff5d428597793331f6fcaba29b9a59b7", + "fields": { + "code_commune_insee": "34283", + "nom_de_la_commune": "ST PIERRE DE LA FAGE", + "code_postal": "34520", + "coordonnees_gps": [ + 43.7942818756, + 3.42249252339 + ], + "libelle_d_acheminement": "ST PIERRE DE LA FAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42249252339, + 43.7942818756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a701e0d9d6ab9082e7eec6f9ca276b26a3d25c1", + "fields": { + "code_commune_insee": "34284", + "nom_de_la_commune": "ST PONS DE THOMIERES", + "code_postal": "34220", + "coordonnees_gps": [ + 43.4788345407, + 2.74852691953 + ], + "libelle_d_acheminement": "ST PONS DE THOMIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74852691953, + 43.4788345407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b127851affd5e41a4740a8c71d73b91850c8f9fb", + "fields": { + "code_commune_insee": "34289", + "nom_de_la_commune": "ST THIBERY", + "code_postal": "34630", + "coordonnees_gps": [ + 43.3927611076, + 3.4008093198 + ], + "libelle_d_acheminement": "ST THIBERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4008093198, + 43.3927611076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "647613ada356035210db7325dc41058e95625aa1", + "fields": { + "code_commune_insee": "34290", + "nom_de_la_commune": "ST VINCENT DE BARBEYRARGUES", + "code_postal": "34730", + "coordonnees_gps": [ + 43.7107487308, + 3.87689704795 + ], + "libelle_d_acheminement": "ST VINCENT DE BARBEYRARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87689704795, + 43.7107487308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "885ca06fa2f9e270eeb544d7bbb6c43dc2bcb09a", + "fields": { + "code_commune_insee": "34299", + "nom_de_la_commune": "SERIGNAN", + "code_postal": "34410", + "coordonnees_gps": [ + 43.2733185307, + 3.29725083254 + ], + "libelle_d_acheminement": "SERIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29725083254, + 43.2733185307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1824d29bbcc2ab5ece1c2092838048928de16213", + "fields": { + "code_commune_insee": "34305", + "nom_de_la_commune": "LE SOULIE", + "code_postal": "34330", + "coordonnees_gps": [ + 43.5430961388, + 2.68991254335 + ], + "libelle_d_acheminement": "LE SOULIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68991254335, + 43.5430961388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4023f6ad49e4c2c83c59f3f7827a11d221b58d14", + "fields": { + "code_commune_insee": "34313", + "nom_de_la_commune": "TRESSAN", + "code_postal": "34230", + "coordonnees_gps": [ + 43.5728727057, + 3.48660359956 + ], + "libelle_d_acheminement": "TRESSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48660359956, + 43.5728727057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdfdcc894581e8beeec1e9f7b1370ebcb91445ce", + "fields": { + "code_commune_insee": "34324", + "nom_de_la_commune": "VALRAS PLAGE", + "code_postal": "34350", + "coordonnees_gps": [ + 43.2476112282, + 3.28929431362 + ], + "libelle_d_acheminement": "VALRAS PLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28929431362, + 43.2476112282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd096cbd7d245ebc9b0e547523545619e9cc7b61", + "fields": { + "code_commune_insee": "34326", + "nom_de_la_commune": "VELIEUX", + "code_postal": "34220", + "coordonnees_gps": [ + 43.3902090063, + 2.74495377415 + ], + "libelle_d_acheminement": "VELIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74495377415, + 43.3902090063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68e6ed9714fd09b369032396db123582760ccf43", + "fields": { + "code_commune_insee": "34327", + "nom_de_la_commune": "VENDARGUES", + "code_postal": "34740", + "coordonnees_gps": [ + 43.6610457488, + 3.96283033113 + ], + "libelle_d_acheminement": "VENDARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96283033113, + 43.6610457488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62a7f7e9d291c8245975ba3bb1d30ea9c2ef3fa5", + "fields": { + "code_commune_insee": "34328", + "nom_de_la_commune": "VENDEMIAN", + "code_postal": "34230", + "coordonnees_gps": [ + 43.5790567885, + 3.56253401848 + ], + "libelle_d_acheminement": "VENDEMIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56253401848, + 43.5790567885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2f44c4306c2beadd332c609aff0c4710443465e", + "fields": { + "code_commune_insee": "34333", + "nom_de_la_commune": "VIC LA GARDIOLE", + "code_postal": "34110", + "coordonnees_gps": [ + 43.4862693496, + 3.80342869911 + ], + "libelle_d_acheminement": "VIC LA GARDIOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80342869911, + 43.4862693496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e7c87576f38a42c934a7a7e3131be2fc45a1c7b", + "fields": { + "code_commune_insee": "34335", + "nom_de_la_commune": "VILLEMAGNE L ARGENTIERE", + "code_postal": "34600", + "coordonnees_gps": [ + 43.6189067153, + 3.12143240976 + ], + "libelle_d_acheminement": "VILLEMAGNE L ARGENTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12143240976, + 43.6189067153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b20113c051ddefab8e09eff1c95fb45801e15f72", + "fields": { + "ligne_5": "ANTRAIN", + "code_commune_insee": "35004", + "libelle_d_acheminement": "VAL COUESNON", + "code_postal": "35560", + "nom_de_la_commune": "VAL COUESNON", + "coordonnees_gps": [ + 48.4623399244, + -1.47875897631 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47875897631, + 48.4623399244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac63ceeae3f159d123f81bd643c88a0ebe06a042", + "fields": { + "ligne_5": "LA FONTENELLE", + "code_commune_insee": "35004", + "libelle_d_acheminement": "VAL COUESNON", + "code_postal": "35560", + "nom_de_la_commune": "VAL COUESNON", + "coordonnees_gps": [ + 48.4623399244, + -1.47875897631 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47875897631, + 48.4623399244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e4afb5d812d9293b72972f66030a0bcb575cc64", + "fields": { + "code_commune_insee": "35006", + "nom_de_la_commune": "ARGENTRE DU PLESSIS", + "code_postal": "35370", + "coordonnees_gps": [ + 48.0483656903, + -1.13833015473 + ], + "libelle_d_acheminement": "ARGENTRE DU PLESSIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13833015473, + 48.0483656903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6cda7865b9f549bd437b78273a0c1f3f44ce305", + "fields": { + "code_commune_insee": "35009", + "nom_de_la_commune": "BAGUER MORVAN", + "code_postal": "35120", + "coordonnees_gps": [ + 48.5049240687, + -1.77192284883 + ], + "libelle_d_acheminement": "BAGUER MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77192284883, + 48.5049240687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54554318d09e16ad14f54e1e8023ad456c43a731", + "fields": { + "code_commune_insee": "35023", + "nom_de_la_commune": "BEDEE", + "code_postal": "35137", + "coordonnees_gps": [ + 48.1867854557, + -1.94992897957 + ], + "libelle_d_acheminement": "BEDEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.94992897957, + 48.1867854557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9705b1d35f5bb6b70a6e928e325287f0039b3ae", + "fields": { + "code_commune_insee": "35031", + "nom_de_la_commune": "LA BOUEXIERE", + "code_postal": "35340", + "coordonnees_gps": [ + 48.1743733249, + -1.43646357128 + ], + "libelle_d_acheminement": "LA BOUEXIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43646357128, + 48.1743733249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "088825f3e0207f18eca6b96096707126b3d59cae", + "fields": { + "code_commune_insee": "35038", + "nom_de_la_commune": "BREAL SOUS VITRE", + "code_postal": "35370", + "coordonnees_gps": [ + 48.0921515475, + -1.06109442521 + ], + "libelle_d_acheminement": "BREAL SOUS VITRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06109442521, + 48.0921515475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8cb5ee394c61e40a5615b92e9ce9b307d730dba", + "fields": { + "code_commune_insee": "35042", + "nom_de_la_commune": "BRIELLES", + "code_postal": "35370", + "coordonnees_gps": [ + 48.0111591648, + -1.09792357132 + ], + "libelle_d_acheminement": "BRIELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09792357132, + 48.0111591648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46b0e645f018ca116e64bc6bf91f68bbb3b65629", + "fields": { + "code_commune_insee": "35047", + "nom_de_la_commune": "BRUZ", + "code_postal": "35170", + "coordonnees_gps": [ + 48.0261755313, + -1.74817480915 + ], + "libelle_d_acheminement": "BRUZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74817480915, + 48.0261755313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9b04572ae793f40de5c8978002581d8ce3c2848", + "fields": { + "code_commune_insee": "35051", + "nom_de_la_commune": "CESSON SEVIGNE", + "code_postal": "35510", + "coordonnees_gps": [ + 48.1202268032, + -1.59714447272 + ], + "libelle_d_acheminement": "CESSON SEVIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59714447272, + 48.1202268032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c41720586c871147c4ea317b98e975ad17f277a", + "fields": { + "code_commune_insee": "35056", + "nom_de_la_commune": "LA CHAPELLE AUX FILTZMEENS", + "code_postal": "35190", + "coordonnees_gps": [ + 48.3817396388, + -1.8184050063 + ], + "libelle_d_acheminement": "LA CHAPELLE AUX FILTZMEENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8184050063, + 48.3817396388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3081c86be8f341fe4003a5bb85c9ba8ce238187", + "fields": { + "code_commune_insee": "35057", + "nom_de_la_commune": "LA CHAPELLE BOUEXIC", + "code_postal": "35330", + "coordonnees_gps": [ + 47.9365752557, + -1.92323342783 + ], + "libelle_d_acheminement": "LA CHAPELLE BOUEXIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92323342783, + 47.9365752557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78e1be27efa2286398f55eb1f50520f000b9a3b2", + "fields": { + "ligne_5": "LA CHAPELLE DU LOU", + "code_commune_insee": "35060", + "libelle_d_acheminement": "LA CHAPELLE DU LOU DU LAC", + "code_postal": "35360", + "nom_de_la_commune": "LA CHAPELLE DU LOU DU LAC", + "coordonnees_gps": [ + 48.2222623755, + -1.99322262284 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99322262284, + 48.2222623755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "239afb32a4820653292596e94db8a6cb9435b543", + "fields": { + "ligne_5": "LE LOU DU LAC", + "code_commune_insee": "35060", + "libelle_d_acheminement": "LA CHAPELLE DU LOU DU LAC", + "code_postal": "35360", + "nom_de_la_commune": "LA CHAPELLE DU LOU DU LAC", + "coordonnees_gps": [ + 48.2222623755, + -1.99322262284 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99322262284, + 48.2222623755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ae168c6821b40c8009e005c0f29a709c572bb27", + "fields": { + "code_commune_insee": "35062", + "nom_de_la_commune": "LA CHAPELLE JANSON", + "code_postal": "35133", + "coordonnees_gps": [ + 48.3352768083, + -1.08530349718 + ], + "libelle_d_acheminement": "LA CHAPELLE JANSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08530349718, + 48.3352768083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bb11dc78cdac5891a2be0abf6c13507176dfc9e", + "fields": { + "code_commune_insee": "35065", + "nom_de_la_commune": "LA CHAPELLE THOUARAULT", + "code_postal": "35590", + "coordonnees_gps": [ + 48.1252826202, + -1.8581233152 + ], + "libelle_d_acheminement": "LA CHAPELLE THOUARAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8581233152, + 48.1252826202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9db16c572ea3bb432462b257ce44a11036578f7e", + "fields": { + "code_commune_insee": "35066", + "nom_de_la_commune": "CHARTRES DE BRETAGNE", + "code_postal": "35131", + "coordonnees_gps": [ + 48.0451561683, + -1.70650297343 + ], + "libelle_d_acheminement": "CHARTRES DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.70650297343, + 48.0451561683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68a43fd254e5aaeeeb19aeb2cd903e7729e55b94", + "fields": { + "code_commune_insee": "35067", + "nom_de_la_commune": "CHASNE SUR ILLET", + "code_postal": "35250", + "coordonnees_gps": [ + 48.2351678517, + -1.57162603055 + ], + "libelle_d_acheminement": "CHASNE SUR ILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57162603055, + 48.2351678517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a818f1552a7fa307dcef7f3d53684ecb037f7d8a", + "fields": { + "code_commune_insee": "35068", + "nom_de_la_commune": "CHATEAUBOURG", + "code_postal": "35220", + "coordonnees_gps": [ + 48.120001247, + -1.40402096437 + ], + "libelle_d_acheminement": "CHATEAUBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40402096437, + 48.120001247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d9a047916f0cc81b30c7bdec179bb44026eda84", + "fields": { + "ligne_5": "BROONS SUR VILAINE", + "code_commune_insee": "35068", + "libelle_d_acheminement": "CHATEAUBOURG", + "code_postal": "35220", + "nom_de_la_commune": "CHATEAUBOURG", + "coordonnees_gps": [ + 48.120001247, + -1.40402096437 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40402096437, + 48.120001247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8fdeb1a330757b6c5b3f2f4972d187b17919d18", + "fields": { + "code_commune_insee": "35072", + "nom_de_la_commune": "CHATILLON EN VENDELAIS", + "code_postal": "35210", + "coordonnees_gps": [ + 48.2287242632, + -1.16547272515 + ], + "libelle_d_acheminement": "CHATILLON EN VENDELAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16547272515, + 48.2287242632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de43464c037d723a1e282a39f3806dee2818be95", + "fields": { + "code_commune_insee": "35081", + "nom_de_la_commune": "CLAYES", + "code_postal": "35590", + "coordonnees_gps": [ + 48.1786926288, + -1.8539725616 + ], + "libelle_d_acheminement": "CLAYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8539725616, + 48.1786926288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b714f9fa5180bd82a4f102380292cf143c07bdf", + "fields": { + "code_commune_insee": "35087", + "nom_de_la_commune": "CORNILLE", + "code_postal": "35500", + "coordonnees_gps": [ + 48.0822592123, + -1.31389594614 + ], + "libelle_d_acheminement": "CORNILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31389594614, + 48.0822592123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7eb1376e76e591f0e009f1746560878fc49a774", + "fields": { + "code_commune_insee": "35094", + "nom_de_la_commune": "DINGE", + "code_postal": "35440", + "coordonnees_gps": [ + 48.3468879458, + -1.71071061366 + ], + "libelle_d_acheminement": "DINGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71071061366, + 48.3468879458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48dd570265a5dc995eaa55b22b3f23c71db415bf", + "fields": { + "ligne_5": "CHAUMERE", + "code_commune_insee": "35096", + "libelle_d_acheminement": "DOMAGNE", + "code_postal": "35113", + "nom_de_la_commune": "DOMAGNE", + "coordonnees_gps": [ + 48.0678122281, + -1.40586957147 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40586957147, + 48.0678122281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e17e6bcac2ba597c496bf0fdb28d89ff4a2b753", + "fields": { + "code_commune_insee": "35098", + "nom_de_la_commune": "LA DOMINELAIS", + "code_postal": "35390", + "coordonnees_gps": [ + 47.7633908593, + -1.67305925291 + ], + "libelle_d_acheminement": "LA DOMINELAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67305925291, + 47.7633908593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "871cd46ddf96874c9333069c5ff4ff3ddc340ecb", + "fields": { + "code_commune_insee": "35099", + "nom_de_la_commune": "DOMLOUP", + "code_postal": "35410", + "coordonnees_gps": [ + 48.0670688041, + -1.54288380182 + ], + "libelle_d_acheminement": "DOMLOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54288380182, + 48.0670688041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b5785a3c428e91b2b972cd649164a0e7acf6e10", + "fields": { + "code_commune_insee": "35107", + "nom_de_la_commune": "ERCE PRES LIFFRE", + "code_postal": "35340", + "coordonnees_gps": [ + 48.2542003303, + -1.51716704496 + ], + "libelle_d_acheminement": "ERCE PRES LIFFRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51716704496, + 48.2542003303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20b16b4c9637a3d0fcfcc060822fab80e027edc3", + "fields": { + "code_commune_insee": "35110", + "nom_de_la_commune": "FEINS", + "code_postal": "35440", + "coordonnees_gps": [ + 48.328121746, + -1.62597037804 + ], + "libelle_d_acheminement": "FEINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62597037804, + 48.328121746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abd3842704d9d90b95fdce228f06d72edba4410c", + "fields": { + "code_commune_insee": "35114", + "nom_de_la_commune": "FORGES LA FORET", + "code_postal": "35640", + "coordonnees_gps": [ + 47.8618191863, + -1.29350551765 + ], + "libelle_d_acheminement": "FORGES LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29350551765, + 47.8618191863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3cca45db35f65486af14dab9053799affe5b772", + "fields": { + "code_commune_insee": "35116", + "nom_de_la_commune": "LA FRESNAIS", + "code_postal": "35111", + "coordonnees_gps": [ + 48.5874275973, + -1.83530541671 + ], + "libelle_d_acheminement": "LA FRESNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83530541671, + 48.5874275973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "603dc2e2966604a2a4373f5e336f9c75c1cfafdb", + "fields": { + "code_commune_insee": "35124", + "nom_de_la_commune": "GRAND FOUGERAY", + "code_postal": "35390", + "coordonnees_gps": [ + 47.7344338208, + -1.72820099024 + ], + "libelle_d_acheminement": "GRAND FOUGERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72820099024, + 47.7344338208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a33d950129535afaba0c50a66db6a2496c7da9e2", + "fields": { + "code_commune_insee": "35131", + "nom_de_la_commune": "L HERMITAGE", + "code_postal": "35590", + "coordonnees_gps": [ + 48.1221023417, + -1.8166504183 + ], + "libelle_d_acheminement": "L HERMITAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8166504183, + 48.1221023417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0754dba2674cdd2f55768beca77d82796911edee", + "fields": { + "code_commune_insee": "35134", + "nom_de_la_commune": "LES IFFS", + "code_postal": "35630", + "coordonnees_gps": [ + 48.2937886247, + -1.86720916772 + ], + "libelle_d_acheminement": "LES IFFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86720916772, + 48.2937886247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26b4d5b7be69d3a670d4c76f0dc8930b4e4cd6cf", + "fields": { + "code_commune_insee": "35138", + "nom_de_la_commune": "LAIGNELET", + "code_postal": "35133", + "coordonnees_gps": [ + 48.379896716, + -1.152249408 + ], + "libelle_d_acheminement": "LAIGNELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.152249408, + 48.379896716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1a4e83e5db5a5356d4d8a637fcb3226087bb631", + "fields": { + "code_commune_insee": "35143", + "nom_de_la_commune": "LANDUJAN", + "code_postal": "35360", + "coordonnees_gps": [ + 48.2476416223, + -2.00848370543 + ], + "libelle_d_acheminement": "LANDUJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.00848370543, + 48.2476416223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d58bd06f955a4d5224901e9e39238034cc4125e", + "fields": { + "code_commune_insee": "35155", + "nom_de_la_commune": "LOHEAC", + "code_postal": "35550", + "coordonnees_gps": [ + 47.8732108316, + -1.888495597 + ], + "libelle_d_acheminement": "LOHEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.888495597, + 47.8732108316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "258baf907eb21b645b8611e9f51d07857ff1c2b0", + "fields": { + "code_commune_insee": "35161", + "nom_de_la_commune": "LOUVIGNE DE BAIS", + "code_postal": "35680", + "coordonnees_gps": [ + 48.0522095083, + -1.33866165819 + ], + "libelle_d_acheminement": "LOUVIGNE DE BAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33866165819, + 48.0522095083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de3817a615928ae9301e034809ff6a03053deb55", + "fields": { + "code_commune_insee": "35162", + "nom_de_la_commune": "LOUVIGNE DU DESERT", + "code_postal": "35420", + "coordonnees_gps": [ + 48.4868885908, + -1.12369660788 + ], + "libelle_d_acheminement": "LOUVIGNE DU DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12369660788, + 48.4868885908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a0141c4075a7a2dea308dca5dfd267c2d9a7b26", + "fields": { + "code_commune_insee": "35166", + "nom_de_la_commune": "MARPIRE", + "code_postal": "35220", + "coordonnees_gps": [ + 48.1468901572, + -1.35260722059 + ], + "libelle_d_acheminement": "MARPIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35260722059, + 48.1468901572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ced329a745cb197e45346f1f014d920d4f23382", + "fields": { + "code_commune_insee": "35169", + "nom_de_la_commune": "MAXENT", + "code_postal": "35380", + "coordonnees_gps": [ + 47.9788328525, + -2.01519596065 + ], + "libelle_d_acheminement": "MAXENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01519596065, + 47.9788328525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "736e8967d3dd1143057ddd0d040e89ada0160366", + "fields": { + "code_commune_insee": "35172", + "nom_de_la_commune": "MEILLAC", + "code_postal": "35270", + "coordonnees_gps": [ + 48.4207786657, + -1.82223857468 + ], + "libelle_d_acheminement": "MEILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82223857468, + 48.4207786657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f17004b9c00b02ac4fd06712fb24dc161a7ca455", + "fields": { + "code_commune_insee": "35173", + "nom_de_la_commune": "MELESSE", + "code_postal": "35520", + "coordonnees_gps": [ + 48.2193069814, + -1.68950220558 + ], + "libelle_d_acheminement": "MELESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68950220558, + 48.2193069814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32603e7cfe576da56fadb878c843e9ea0626c029", + "fields": { + "code_commune_insee": "35175", + "nom_de_la_commune": "MERNEL", + "code_postal": "35330", + "coordonnees_gps": [ + 47.8982561483, + -1.95140326249 + ], + "libelle_d_acheminement": "MERNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95140326249, + 47.8982561483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea382a3f08b6f0822b74b3d1dea130f0e4d8af82", + "fields": { + "ligne_5": "GUIPRY", + "code_commune_insee": "35176", + "libelle_d_acheminement": "GUIPRY MESSAC", + "code_postal": "35480", + "nom_de_la_commune": "GUIPRY MESSAC", + "coordonnees_gps": [ + 47.8050001887, + -1.79981410683 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79981410683, + 47.8050001887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a57a26d21faa39d7a9165c45f5a7fa15eed3d8d7", + "fields": { + "ligne_5": "MESSAC", + "code_commune_insee": "35176", + "libelle_d_acheminement": "GUIPRY MESSAC", + "code_postal": "35480", + "nom_de_la_commune": "GUIPRY MESSAC", + "coordonnees_gps": [ + 47.8050001887, + -1.79981410683 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79981410683, + 47.8050001887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "101e977048be8f3f9a24fe6f12d78ec5ae3a08f2", + "fields": { + "code_commune_insee": "35183", + "nom_de_la_commune": "MONDEVERT", + "code_postal": "35370", + "coordonnees_gps": [ + 48.0841466424, + -1.09097545112 + ], + "libelle_d_acheminement": "MONDEVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09097545112, + 48.0841466424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b206fae6c16f3b1b34219bb126ce79513c5bbbc9", + "fields": { + "code_commune_insee": "35185", + "nom_de_la_commune": "MONTAUTOUR", + "code_postal": "35210", + "coordonnees_gps": [ + 48.2045052863, + -1.12123859813 + ], + "libelle_d_acheminement": "MONTAUTOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12123859813, + 48.2045052863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66315d9dcc1fff4efba97780b20be995a45153b6", + "fields": { + "code_commune_insee": "35188", + "nom_de_la_commune": "MONTFORT SUR MEU", + "code_postal": "35160", + "coordonnees_gps": [ + 48.1261000349, + -1.9630334162 + ], + "libelle_d_acheminement": "MONTFORT SUR MEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.9630334162, + 48.1261000349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cada7a61d3f7fad450f4c4ffd8fa089159d99d90", + "fields": { + "code_commune_insee": "35192", + "nom_de_la_commune": "MONTREUIL DES LANDES", + "code_postal": "35210", + "coordonnees_gps": [ + 48.2507630076, + -1.22879248978 + ], + "libelle_d_acheminement": "MONTREUIL DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22879248978, + 48.2507630076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a165043e635c8845b0edd0567d414d78c22bd7ed", + "fields": { + "code_commune_insee": "35202", + "nom_de_la_commune": "LA NOE BLANCHE", + "code_postal": "35470", + "coordonnees_gps": [ + 47.795066917, + -1.7451274838 + ], + "libelle_d_acheminement": "LA NOE BLANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.7451274838, + 47.795066917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "988e26f0d518e193f2d65dbf6b575a9d01a1e9e9", + "fields": { + "code_commune_insee": "35203", + "nom_de_la_commune": "LA NOUAYE", + "code_postal": "35137", + "coordonnees_gps": [ + 48.1662174034, + -1.97457609624 + ], + "libelle_d_acheminement": "LA NOUAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.97457609624, + 48.1662174034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb2a3e2b8ed01ffbde19f2c2b1b2cf18f0210d71", + "fields": { + "code_commune_insee": "35205", + "nom_de_la_commune": "NOYAL SOUS BAZOUGES", + "code_postal": "35560", + "coordonnees_gps": [ + 48.4173130249, + -1.62400476475 + ], + "libelle_d_acheminement": "NOYAL SOUS BAZOUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62400476475, + 48.4173130249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d44e4bfbdc3dfd6d7f62689e4620ce087f3c8cc5", + "fields": { + "code_commune_insee": "35206", + "nom_de_la_commune": "NOYAL CHATILLON SUR SEICHE", + "code_postal": "35230", + "coordonnees_gps": [ + 48.0524815273, + -1.6633106381 + ], + "libelle_d_acheminement": "NOYAL CHATILLON SUR SEICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6633106381, + 48.0524815273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95fc129df532682b6e54611c9fcd0cbe06250981", + "fields": { + "code_commune_insee": "35208", + "nom_de_la_commune": "ORGERES", + "code_postal": "35230", + "coordonnees_gps": [ + 47.9853322097, + -1.66640026267 + ], + "libelle_d_acheminement": "ORGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66640026267, + 47.9853322097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22b58e359c57c284816a30b9153f03369cf3f3fd", + "fields": { + "code_commune_insee": "35212", + "nom_de_la_commune": "PANCE", + "code_postal": "35320", + "coordonnees_gps": [ + 47.8889653573, + -1.64257071034 + ], + "libelle_d_acheminement": "PANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64257071034, + 47.8889653573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9b77ddf4f2ba6e90600781e899129f3c5c05a67", + "fields": { + "ligne_5": "PIRE SUR SEICHE", + "code_commune_insee": "35220", + "libelle_d_acheminement": "PIRE CHANCE", + "code_postal": "35150", + "nom_de_la_commune": "PIRE CHANCE", + "coordonnees_gps": [ + 48.0111877546, + -1.42837195377 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42837195377, + 48.0111877546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aa463aa6798325088b4156bfd642bbaa61c1005", + "fields": { + "code_commune_insee": "35222", + "nom_de_la_commune": "PLEINE FOUGERES", + "code_postal": "35610", + "coordonnees_gps": [ + 48.5311376904, + -1.57392395573 + ], + "libelle_d_acheminement": "PLEINE FOUGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57392395573, + 48.5311376904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "887813c7dba3763560e8a2aa4cd5a0adb32b5d24", + "fields": { + "code_commune_insee": "35231", + "nom_de_la_commune": "POLIGNE", + "code_postal": "35320", + "coordonnees_gps": [ + 47.8990359513, + -1.68518288272 + ], + "libelle_d_acheminement": "POLIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68518288272, + 47.8990359513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74e88cea2a4cd6e062b8ae523127a4621b875a13", + "fields": { + "code_commune_insee": "35234", + "nom_de_la_commune": "QUEDILLAC", + "code_postal": "35290", + "coordonnees_gps": [ + 48.2378252875, + -2.14354106551 + ], + "libelle_d_acheminement": "QUEDILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.14354106551, + 48.2378252875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dee94ac4c418ed1387d2f3b39d7731cab8caa97", + "fields": { + "code_commune_insee": "35241", + "nom_de_la_commune": "LA RICHARDAIS", + "code_postal": "35780", + "coordonnees_gps": [ + 48.6095815819, + -2.04362780576 + ], + "libelle_d_acheminement": "LA RICHARDAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04362780576, + 48.6095815819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a09c118360ed078746ac12a1f75781edd736982", + "fields": { + "code_commune_insee": "35244", + "nom_de_la_commune": "ROMAZY", + "code_postal": "35490", + "coordonnees_gps": [ + 48.3796845502, + -1.49290381835 + ], + "libelle_d_acheminement": "ROMAZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49290381835, + 48.3796845502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61406236fa71c2f032e43dd26ae5d0fc2d8d06f2", + "fields": { + "code_commune_insee": "35247", + "nom_de_la_commune": "ROZ SUR COUESNON", + "code_postal": "35610", + "coordonnees_gps": [ + 48.5961737576, + -1.59343425986 + ], + "libelle_d_acheminement": "ROZ SUR COUESNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59343425986, + 48.5961737576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b587c9ea49831fc14246af35d086853686892b4e", + "fields": { + "code_commune_insee": "35248", + "nom_de_la_commune": "SAINS", + "code_postal": "35610", + "coordonnees_gps": [ + 48.5560551633, + -1.60318300159 + ], + "libelle_d_acheminement": "SAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60318300159, + 48.5560551633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9936854482d4eab01be88b7d96869bdafcc10ba3", + "fields": { + "code_commune_insee": "35250", + "nom_de_la_commune": "ST ARMEL", + "code_postal": "35230", + "coordonnees_gps": [ + 48.0133072658, + -1.58086136058 + ], + "libelle_d_acheminement": "ST ARMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58086136058, + 48.0133072658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db36b46790bc0c8d32f70d66c51d5008a6bd8a95", + "fields": { + "ligne_5": "ST ETIENNE EN COGLES", + "code_commune_insee": "35257", + "libelle_d_acheminement": "MAEN ROCH", + "code_postal": "35460", + "nom_de_la_commune": "MAEN ROCH", + "coordonnees_gps": [ + 48.4132416625, + -1.3677414096 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3677414096, + 48.4132416625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20cbbca487c2ba936b5aa5ff8098d4f0ec152bad", + "fields": { + "code_commune_insee": "35261", + "nom_de_la_commune": "ST CHRISTOPHE DE VALAINS", + "code_postal": "35140", + "coordonnees_gps": [ + 48.3414704329, + -1.45214167623 + ], + "libelle_d_acheminement": "ST CHRISTOPHE DE VALAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45214167623, + 48.3414704329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c37e6d61241ab5808b55c5b35c68653cad423fb", + "fields": { + "code_commune_insee": "35262", + "nom_de_la_commune": "STE COLOMBE", + "code_postal": "35134", + "coordonnees_gps": [ + 47.8955543395, + -1.45748423621 + ], + "libelle_d_acheminement": "STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45748423621, + 47.8955543395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f98239408dc669be7524839cc09fe225d277cd5", + "fields": { + "code_commune_insee": "35265", + "nom_de_la_commune": "ST DOMINEUC", + "code_postal": "35190", + "coordonnees_gps": [ + 48.3604701508, + -1.86929825665 + ], + "libelle_d_acheminement": "ST DOMINEUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86929825665, + 48.3604701508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02958c0f448f7a0edc243a1f834c2d8f55eed889", + "fields": { + "ligne_5": "ST GEORGES DE CHESNE", + "code_commune_insee": "35282", + "libelle_d_acheminement": "RIVES DU COUESNON", + "code_postal": "35140", + "nom_de_la_commune": "RIVES DU COUESNON", + "coordonnees_gps": [ + 48.2768095716, + -1.36810224872 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36810224872, + 48.2768095716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "731877947913547f579eebf286b51fda80c0815a", + "fields": { + "ligne_5": "ST JEAN SUR COUESNON", + "code_commune_insee": "35282", + "libelle_d_acheminement": "RIVES DU COUESNON", + "code_postal": "35140", + "nom_de_la_commune": "RIVES DU COUESNON", + "coordonnees_gps": [ + 48.2768095716, + -1.36810224872 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36810224872, + 48.2768095716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3595a8243e01934e77c2c3b47a4525666bd07efe", + "fields": { + "ligne_5": "PARAME", + "code_commune_insee": "35288", + "libelle_d_acheminement": "ST MALO", + "code_postal": "35400", + "nom_de_la_commune": "ST MALO", + "coordonnees_gps": [ + 48.6400443482, + -1.98060627256 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98060627256, + 48.6400443482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e92ac21b15f7f68add9cc2084f57d585618adf2", + "fields": { + "ligne_5": "BAILLE", + "code_commune_insee": "35292", + "libelle_d_acheminement": "ST MARC LE BLANC", + "code_postal": "35460", + "nom_de_la_commune": "ST MARC LE BLANC", + "coordonnees_gps": [ + 48.3752704313, + -1.40505053569 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40505053569, + 48.3752704313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47fd2cf28e66fbbc25a883fdb2c794c901930d44", + "fields": { + "code_commune_insee": "35296", + "nom_de_la_commune": "ST MEDARD SUR ILLE", + "code_postal": "35250", + "coordonnees_gps": [ + 48.2728481526, + -1.67038135479 + ], + "libelle_d_acheminement": "ST MEDARD SUR ILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67038135479, + 48.2728481526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed3833c13328f715d0abeee25a6f128dfe4768df", + "fields": { + "code_commune_insee": "35302", + "nom_de_la_commune": "ST ONEN LA CHAPELLE", + "code_postal": "35290", + "coordonnees_gps": [ + 48.1695046488, + -2.1556915013 + ], + "libelle_d_acheminement": "ST ONEN LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1556915013, + 48.1695046488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01716f2947a578391186a0b2cdf5cb6a6be56194", + "fields": { + "code_commune_insee": "35304", + "nom_de_la_commune": "ST OUEN DES ALLEUX", + "code_postal": "35140", + "coordonnees_gps": [ + 48.3270441393, + -1.42763675483 + ], + "libelle_d_acheminement": "ST OUEN DES ALLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42763675483, + 48.3270441393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e81f3cf6cc0a606d538a94c37c1f212f309af6e", + "fields": { + "code_commune_insee": "35306", + "nom_de_la_commune": "ST PERE MARC EN POULET", + "code_postal": "35430", + "coordonnees_gps": [ + 48.5841780785, + -1.9291577364 + ], + "libelle_d_acheminement": "ST PERE MARC EN POULET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.9291577364, + 48.5841780785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24a2a3fc4ec42593ff1bd6ff3a657fa80251dada", + "fields": { + "code_commune_insee": "35307", + "nom_de_la_commune": "ST PERN", + "code_postal": "35190", + "coordonnees_gps": [ + 48.2809544263, + -1.98293675576 + ], + "libelle_d_acheminement": "ST PERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98293675576, + 48.2809544263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1e5ec3a2278da5a42e6af6a591e7b5a4ee89a25", + "fields": { + "ligne_5": "ST PIERRE DE PLESGUEN", + "code_commune_insee": "35308", + "libelle_d_acheminement": "MESNIL ROC H", + "code_postal": "35720", + "nom_de_la_commune": "MESNIL ROC H", + "coordonnees_gps": [ + 48.4550260435, + -1.88873891943 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.88873891943, + 48.4550260435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86f90a65f0d644273bf7ef94d0ac2e99e56f0a68", + "fields": { + "code_commune_insee": "35324", + "nom_de_la_commune": "LA SELLE EN LUITRE", + "code_postal": "35133", + "coordonnees_gps": [ + 48.3210231542, + -1.15116317986 + ], + "libelle_d_acheminement": "LA SELLE EN LUITRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15116317986, + 48.3210231542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c73db8aa8fac73524973cdb8f9576336697fdb7", + "fields": { + "code_commune_insee": "35333", + "nom_de_la_commune": "LE THEIL DE BRETAGNE", + "code_postal": "35240", + "coordonnees_gps": [ + 47.917964054, + -1.42174921295 + ], + "libelle_d_acheminement": "LE THEIL DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42174921295, + 47.917964054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55d36812b3c6ea3d6fc6f08c20e030fd32c3731c", + "fields": { + "code_commune_insee": "35335", + "nom_de_la_commune": "THOURIE", + "code_postal": "35134", + "coordonnees_gps": [ + 47.8486763783, + -1.45762680863 + ], + "libelle_d_acheminement": "THOURIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45762680863, + 47.8486763783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f11638958e1c5744f1d11f74ee149a392fa4286f", + "fields": { + "code_commune_insee": "35337", + "nom_de_la_commune": "TINTENIAC", + "code_postal": "35190", + "coordonnees_gps": [ + 48.3231993668, + -1.83043308458 + ], + "libelle_d_acheminement": "TINTENIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83043308458, + 48.3231993668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1db769b23ac5bb8a24e6d2740ac6096035841f06", + "fields": { + "code_commune_insee": "35347", + "nom_de_la_commune": "VAL D IZE", + "code_postal": "35450", + "coordonnees_gps": [ + 48.1899182799, + -1.30478438424 + ], + "libelle_d_acheminement": "VAL D IZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30478438424, + 48.1899182799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b5df0d17e9363292d292355ef0b1d47d5a2d13e", + "fields": { + "code_commune_insee": "35360", + "nom_de_la_commune": "VITRE", + "code_postal": "35500", + "coordonnees_gps": [ + 48.1140815063, + -1.19370720718 + ], + "libelle_d_acheminement": "VITRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19370720718, + 48.1140815063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1532238edd334519d6870812265ccfd8cb873ebc", + "fields": { + "code_commune_insee": "35361", + "nom_de_la_commune": "LE VIVIER SUR MER", + "code_postal": "35960", + "coordonnees_gps": [ + 48.597890871, + -1.77994172139 + ], + "libelle_d_acheminement": "LE VIVIER SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77994172139, + 48.597890871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3771e2ef538c6f616863f5ba7e48e1e2f292ff63", + "fields": { + "code_commune_insee": "36004", + "nom_de_la_commune": "ANJOUIN", + "code_postal": "36210", + "coordonnees_gps": [ + 47.2008943989, + 1.80745396051 + ], + "libelle_d_acheminement": "ANJOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80745396051, + 47.2008943989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ec1e40add1e6a3003b910b7e33df73c2f241622", + "fields": { + "code_commune_insee": "36005", + "nom_de_la_commune": "ARDENTES", + "code_postal": "36120", + "coordonnees_gps": [ + 46.7359618133, + 1.82403149268 + ], + "libelle_d_acheminement": "ARDENTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82403149268, + 46.7359618133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0b59c5ab7cc1c1cb08e125a376065172abc3698", + "fields": { + "code_commune_insee": "36014", + "nom_de_la_commune": "BAZAIGES", + "code_postal": "36270", + "coordonnees_gps": [ + 46.4844280424, + 1.5276226501 + ], + "libelle_d_acheminement": "BAZAIGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5276226501, + 46.4844280424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43c73bc5d2094406069548448ec6f1e041b4945d", + "fields": { + "code_commune_insee": "36023", + "nom_de_la_commune": "BOUGES LE CHATEAU", + "code_postal": "36110", + "coordonnees_gps": [ + 47.0315026435, + 1.66537369681 + ], + "libelle_d_acheminement": "BOUGES LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66537369681, + 47.0315026435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d780dc290b2e55d05932459e7e17477d390c5206", + "fields": { + "code_commune_insee": "36031", + "nom_de_la_commune": "BUZANCAIS", + "code_postal": "36500", + "coordonnees_gps": [ + 46.8875380464, + 1.41254913131 + ], + "libelle_d_acheminement": "BUZANCAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41254913131, + 46.8875380464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d42edf74c74740f28df3f5091c8b447d8dd25b7a", + "fields": { + "code_commune_insee": "36033", + "nom_de_la_commune": "CELON", + "code_postal": "36200", + "coordonnees_gps": [ + 46.5315916798, + 1.51221513652 + ], + "libelle_d_acheminement": "CELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51221513652, + 46.5315916798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5c1384208293d54c9485bd24e5147c2eb569991", + "fields": { + "code_commune_insee": "36036", + "nom_de_la_commune": "CHALAIS", + "code_postal": "36370", + "coordonnees_gps": [ + 46.5430861576, + 1.22189914233 + ], + "libelle_d_acheminement": "CHALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22189914233, + 46.5430861576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1d1f715e05cf567a9877eba84b4635ecb70b2b8", + "fields": { + "code_commune_insee": "36041", + "nom_de_la_commune": "LA CHAPELLE ST LAURIAN", + "code_postal": "36150", + "coordonnees_gps": [ + 47.0547841685, + 1.78297349808 + ], + "libelle_d_acheminement": "LA CHAPELLE ST LAURIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78297349808, + 47.0547841685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "222517f0bb7f6cc0bb4e844dc045fcdd201cbe1a", + "fields": { + "code_commune_insee": "36042", + "nom_de_la_commune": "CHASSENEUIL", + "code_postal": "36800", + "coordonnees_gps": [ + 46.6570647712, + 1.49349614849 + ], + "libelle_d_acheminement": "CHASSENEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49349614849, + 46.6570647712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3661be846785c12ab4c7fa9de53abc24d4953d0", + "fields": { + "ligne_5": "CHANTOME", + "code_commune_insee": "36070", + "libelle_d_acheminement": "EGUZON CHANTOME", + "code_postal": "36270", + "nom_de_la_commune": "EGUZON CHANTOME", + "coordonnees_gps": [ + 46.4342273236, + 1.56931280113 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56931280113, + 46.4342273236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58c02c1c244972419e2a23adba066d99e58c40a1", + "fields": { + "code_commune_insee": "36071", + "nom_de_la_commune": "ETRECHET", + "code_postal": "36120", + "coordonnees_gps": [ + 46.7926466693, + 1.77773981101 + ], + "libelle_d_acheminement": "ETRECHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77773981101, + 46.7926466693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6d1cc4f4bc602221e06e1a592f3725910df2ce4", + "fields": { + "code_commune_insee": "36079", + "nom_de_la_commune": "FRANCILLON", + "code_postal": "36110", + "coordonnees_gps": [ + 46.9464450461, + 1.55776812764 + ], + "libelle_d_acheminement": "FRANCILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55776812764, + 46.9464450461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef5726a9d1877b45ccc084d722dfd362d194d826", + "fields": { + "code_commune_insee": "36082", + "nom_de_la_commune": "GEHEE", + "code_postal": "36240", + "coordonnees_gps": [ + 47.0384812055, + 1.49376819488 + ], + "libelle_d_acheminement": "GEHEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49376819488, + 47.0384812055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5e587384ac50aa19f773f80e2f292ff4920393f", + "fields": { + "code_commune_insee": "36084", + "nom_de_la_commune": "GOURNAY", + "code_postal": "36230", + "coordonnees_gps": [ + 46.5963808086, + 1.73496195112 + ], + "libelle_d_acheminement": "GOURNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73496195112, + 46.5963808086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee0a7acd9694c7de05c9226fb92ba22b52ae43e4", + "fields": { + "code_commune_insee": "36086", + "nom_de_la_commune": "HEUGNES", + "code_postal": "36180", + "coordonnees_gps": [ + 47.0279062029, + 1.38544122322 + ], + "libelle_d_acheminement": "HEUGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38544122322, + 47.0279062029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ccab2412b5a44c83a24dd35c9c9bbb2b21e47ca", + "fields": { + "code_commune_insee": "36090", + "nom_de_la_commune": "JEU MALOCHES", + "code_postal": "36240", + "coordonnees_gps": [ + 47.0475431378, + 1.44169166133 + ], + "libelle_d_acheminement": "JEU MALOCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44169166133, + 47.0475431378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "156a8131ac65ac18b0ca387cee61770d46e2b754", + "fields": { + "code_commune_insee": "36091", + "nom_de_la_commune": "LACS", + "code_postal": "36400", + "coordonnees_gps": [ + 46.5913517222, + 2.03649976093 + ], + "libelle_d_acheminement": "LACS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03649976093, + 46.5913517222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07bf47432c8b0f0877619415c2e822f07a2490f0", + "fields": { + "code_commune_insee": "36107", + "nom_de_la_commune": "LYE", + "code_postal": "36600", + "coordonnees_gps": [ + 47.2209145383, + 1.47358421341 + ], + "libelle_d_acheminement": "LYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47358421341, + 47.2209145383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4064b5cce48d264c5425b6edbfe0347bbd8947c", + "fields": { + "code_commune_insee": "36112", + "nom_de_la_commune": "MARON", + "code_postal": "36120", + "coordonnees_gps": [ + 46.8006352308, + 1.85819593148 + ], + "libelle_d_acheminement": "MARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85819593148, + 46.8006352308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4d5ef22312832f36c7041fd1e4a2c0e5eda385f", + "fields": { + "code_commune_insee": "36117", + "nom_de_la_commune": "LE MENOUX", + "code_postal": "36200", + "coordonnees_gps": [ + 46.5579151463, + 1.57409340054 + ], + "libelle_d_acheminement": "LE MENOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57409340054, + 46.5579151463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f398f5dffcf4ac90a6db2613b882fad60ec194a", + "fields": { + "code_commune_insee": "36128", + "nom_de_la_commune": "MONTIERCHAUME", + "code_postal": "36130", + "coordonnees_gps": [ + 46.8664822009, + 1.77844723224 + ], + "libelle_d_acheminement": "MONTIERCHAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77844723224, + 46.8664822009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd07f0281216ce3562577315285376c1ad93b681", + "fields": { + "code_commune_insee": "36131", + "nom_de_la_commune": "MOSNAY", + "code_postal": "36200", + "coordonnees_gps": [ + 46.6262386861, + 1.62506020727 + ], + "libelle_d_acheminement": "MOSNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62506020727, + 46.6262386861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ba1b4990a8e4d5744e80dbece3a95d920c52f52", + "fields": { + "code_commune_insee": "36138", + "nom_de_la_commune": "NERET", + "code_postal": "36400", + "coordonnees_gps": [ + 46.5724464938, + 2.14124450374 + ], + "libelle_d_acheminement": "NERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14124450374, + 46.5724464938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b506fabba4ed5f5c409e4406709b898a18da1d7", + "fields": { + "code_commune_insee": "36147", + "nom_de_la_commune": "ORVILLE", + "code_postal": "36210", + "coordonnees_gps": [ + 47.1433950802, + 1.77650851914 + ], + "libelle_d_acheminement": "ORVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77650851914, + 47.1433950802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c68cb3ec83a9cd6a42219194965cda78cc7dffa9", + "fields": { + "code_commune_insee": "36150", + "nom_de_la_commune": "PARNAC", + "code_postal": "36170", + "coordonnees_gps": [ + 46.4410252486, + 1.46522668172 + ], + "libelle_d_acheminement": "PARNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46522668172, + 46.4410252486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c9ace113399d722461080c1788c1191ec1ab88a", + "fields": { + "code_commune_insee": "36152", + "nom_de_la_commune": "PAUDY", + "code_postal": "36260", + "coordonnees_gps": [ + 47.0346681884, + 1.92029512181 + ], + "libelle_d_acheminement": "PAUDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92029512181, + 47.0346681884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0244154c90ba0e8b29f33c4cb6d997149bcaa8a2", + "fields": { + "code_commune_insee": "36164", + "nom_de_la_commune": "POULIGNY ST MARTIN", + "code_postal": "36160", + "coordonnees_gps": [ + 46.5149038846, + 2.00555545984 + ], + "libelle_d_acheminement": "POULIGNY ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00555545984, + 46.5149038846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fde32a1f1204db164b0bec62b96a5d740b1e54d", + "fields": { + "code_commune_insee": "36168", + "nom_de_la_commune": "PRISSAC", + "code_postal": "36370", + "coordonnees_gps": [ + 46.524638893, + 1.29857907076 + ], + "libelle_d_acheminement": "PRISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29857907076, + 46.524638893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2b89089f84710d6d3d226215855d1bdec6def95", + "fields": { + "code_commune_insee": "36186", + "nom_de_la_commune": "ST CHRISTOPHE EN BOUCHERIE", + "code_postal": "36400", + "coordonnees_gps": [ + 46.6796859188, + 2.11586073047 + ], + "libelle_d_acheminement": "ST CHRISTOPHE EN BOUCHERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11586073047, + 46.6796859188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d56f4fab374c5908e5395abe9528ef9c0ca0955", + "fields": { + "code_commune_insee": "36188", + "nom_de_la_commune": "ST CYRAN DU JAMBOT", + "code_postal": "36700", + "coordonnees_gps": [ + 47.0224840365, + 1.15675534886 + ], + "libelle_d_acheminement": "ST CYRAN DU JAMBOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15675534886, + 47.0224840365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da299bffd37b435789806cad45bbaf08fd9ac005", + "fields": { + "code_commune_insee": "36194", + "nom_de_la_commune": "ST GENOU", + "code_postal": "36500", + "coordonnees_gps": [ + 46.911791678, + 1.3504650552 + ], + "libelle_d_acheminement": "ST GENOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3504650552, + 46.911791678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bf40f78c8c7e1e846c7d033e75a1e033173e07d", + "fields": { + "code_commune_insee": "36209", + "nom_de_la_commune": "ST VALENTIN", + "code_postal": "36100", + "coordonnees_gps": [ + 46.9621074542, + 1.85100713344 + ], + "libelle_d_acheminement": "ST VALENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85100713344, + 46.9621074542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71a296aac3c049a4adcf5e57d88537f92a507b75", + "fields": { + "code_commune_insee": "36226", + "nom_de_la_commune": "TRANZAULT", + "code_postal": "36230", + "coordonnees_gps": [ + 46.622046927, + 1.85411308963 + ], + "libelle_d_acheminement": "TRANZAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85411308963, + 46.622046927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "667bc782a8ee4bc3c7b7a8c87d78b80d14cef03b", + "fields": { + "ligne_5": "VARENNES SUR FOUZON", + "code_commune_insee": "36229", + "libelle_d_acheminement": "VAL FOUZON", + "code_postal": "36210", + "nom_de_la_commune": "VAL FOUZON", + "coordonnees_gps": [ + 47.2049167423, + 1.59155940646 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59155940646, + 47.2049167423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7707173142a23f687d1e4b8fc55b77967efffb1d", + "fields": { + "code_commune_insee": "36239", + "nom_de_la_commune": "VIGOUX", + "code_postal": "36170", + "coordonnees_gps": [ + 46.517396736, + 1.47441263851 + ], + "libelle_d_acheminement": "VIGOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47441263851, + 46.517396736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40441516dc66f1c831ce8a24d87ef3cd7311715d", + "fields": { + "code_commune_insee": "36242", + "nom_de_la_commune": "VILLEGONGIS", + "code_postal": "36110", + "coordonnees_gps": [ + 46.9241338236, + 1.58960758667 + ], + "libelle_d_acheminement": "VILLEGONGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58960758667, + 46.9241338236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2083d434bbab90dc58d1c6b5d69d9508712fb84", + "fields": { + "code_commune_insee": "36248", + "nom_de_la_commune": "VOUILLON", + "code_postal": "36100", + "coordonnees_gps": [ + 46.8199826355, + 1.9132066864 + ], + "libelle_d_acheminement": "VOUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9132066864, + 46.8199826355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7591ebdda22b0c8ba5d8191718140e1417832dd7", + "fields": { + "code_commune_insee": "37003", + "nom_de_la_commune": "AMBOISE", + "code_postal": "37400", + "coordonnees_gps": [ + 47.3917237652, + 1.00023994675 + ], + "libelle_d_acheminement": "AMBOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00023994675, + 47.3917237652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf024a8c46431ed1c5ec0e014c1b936574483123", + "fields": { + "code_commune_insee": "37010", + "nom_de_la_commune": "AUZOUER EN TOURAINE", + "code_postal": "37110", + "coordonnees_gps": [ + 47.55445629, + 0.93712101113 + ], + "libelle_d_acheminement": "AUZOUER EN TOURAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93712101113, + 47.55445629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbe66f47e726531e8f1a14694f132ee808027b6a", + "fields": { + "code_commune_insee": "37012", + "nom_de_la_commune": "AVON LES ROCHES", + "code_postal": "37220", + "coordonnees_gps": [ + 47.1830390826, + 0.459616405273 + ], + "libelle_d_acheminement": "AVON LES ROCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.459616405273, + 47.1830390826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2340148d5f7fcbc603491422275f354d2663373f", + "fields": { + "code_commune_insee": "37020", + "nom_de_la_commune": "BEAULIEU LES LOCHES", + "code_postal": "37600", + "coordonnees_gps": [ + 47.1281892877, + 1.02294110179 + ], + "libelle_d_acheminement": "BEAULIEU LES LOCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02294110179, + 47.1281892877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75d8e5215c52e1fbc66f45a3cf9a6bdb9c635100", + "fields": { + "code_commune_insee": "37022", + "nom_de_la_commune": "BEAUMONT EN VERON", + "code_postal": "37420", + "coordonnees_gps": [ + 47.1939476684, + 0.186243013287 + ], + "libelle_d_acheminement": "BEAUMONT EN VERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.186243013287, + 47.1939476684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19f17178557e2ee8ffa604cb981c48d2a5de5c79", + "fields": { + "code_commune_insee": "37024", + "nom_de_la_commune": "BENAIS", + "code_postal": "37140", + "coordonnees_gps": [ + 47.3156279814, + 0.217451239444 + ], + "libelle_d_acheminement": "BENAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.217451239444, + 47.3156279814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e97c14c67286de666ea844eb953ae819df71b86", + "fields": { + "code_commune_insee": "37037", + "nom_de_la_commune": "BRECHES", + "code_postal": "37330", + "coordonnees_gps": [ + 47.560326962, + 0.407664041185 + ], + "libelle_d_acheminement": "BRECHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.407664041185, + 47.560326962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef1681ee36d601eb0ba98ed9c45edc6487741c2f", + "fields": { + "code_commune_insee": "37044", + "nom_de_la_commune": "LA CELLE GUENAND", + "code_postal": "37350", + "coordonnees_gps": [ + 46.9489706333, + 0.899411623178 + ], + "libelle_d_acheminement": "LA CELLE GUENAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.899411623178, + 46.9489706333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6aed2644e2b401ba16e394e5293f3c6247ff1c1", + "fields": { + "code_commune_insee": "37046", + "nom_de_la_commune": "CERE LA RONDE", + "code_postal": "37460", + "coordonnees_gps": [ + 47.2539221979, + 1.1815724802 + ], + "libelle_d_acheminement": "CERE LA RONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1815724802, + 47.2539221979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "287ddb897a948840493fac34c33111b92b9d4f1a", + "fields": { + "code_commune_insee": "37052", + "nom_de_la_commune": "CHANCAY", + "code_postal": "37210", + "coordonnees_gps": [ + 47.4496671434, + 0.88057915544 + ], + "libelle_d_acheminement": "CHANCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88057915544, + 47.4496671434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aec95eed4b926c571fab3ddbed5972a1b9944520", + "fields": { + "code_commune_insee": "37054", + "nom_de_la_commune": "CHANCEAUX SUR CHOISILLE", + "code_postal": "37390", + "coordonnees_gps": [ + 47.4781190153, + 0.703218955868 + ], + "libelle_d_acheminement": "CHANCEAUX SUR CHOISILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.703218955868, + 47.4781190153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8f984f61851679110c2691533d57a467bd522a0", + "fields": { + "code_commune_insee": "37060", + "nom_de_la_commune": "CHARGE", + "code_postal": "37530", + "coordonnees_gps": [ + 47.431662181, + 1.04123088283 + ], + "libelle_d_acheminement": "CHARGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04123088283, + 47.431662181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d38a72222f52a2b45ab0ac755a90bfed84de4d1", + "fields": { + "code_commune_insee": "37062", + "nom_de_la_commune": "CHATEAU LA VALLIERE", + "code_postal": "37330", + "coordonnees_gps": [ + 47.5271484984, + 0.329691100223 + ], + "libelle_d_acheminement": "CHATEAU LA VALLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.329691100223, + 47.5271484984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8a21a1b7cb878dc0a4e1bcd7c80b5b5d36e4287", + "fields": { + "code_commune_insee": "37064", + "nom_de_la_commune": "CHAUMUSSAY", + "code_postal": "37350", + "coordonnees_gps": [ + 46.8762355769, + 0.851825400667 + ], + "libelle_d_acheminement": "CHAUMUSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.851825400667, + 46.8762355769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26ab8e02616e5ac52713a0217624a364f4abaab7", + "fields": { + "code_commune_insee": "37068", + "nom_de_la_commune": "CHEMILLE SUR DEME", + "code_postal": "37370", + "coordonnees_gps": [ + 47.6592186716, + 0.668156723378 + ], + "libelle_d_acheminement": "CHEMILLE SUR DEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.668156723378, + 47.6592186716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34cbb264256de71aab19774cc54b47df15552e4b", + "fields": { + "code_commune_insee": "37074", + "nom_de_la_commune": "CHOUZE SUR LOIRE", + "code_postal": "37140", + "coordonnees_gps": [ + 47.2459736126, + 0.109159987827 + ], + "libelle_d_acheminement": "CHOUZE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109159987827, + 47.2459736126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29cf28dfae205aad549f4669ed2a67f54f7dfa8a", + "fields": { + "code_commune_insee": "37076", + "nom_de_la_commune": "CINAIS", + "code_postal": "37500", + "coordonnees_gps": [ + 47.1577838408, + 0.176177175254 + ], + "libelle_d_acheminement": "CINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.176177175254, + 47.1577838408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7a16f40e267c931a46488e5ddf82b2c41913dc2", + "fields": { + "code_commune_insee": "37077", + "nom_de_la_commune": "CINQ MARS LA PILE", + "code_postal": "37130", + "coordonnees_gps": [ + 47.3535034952, + 0.453317897903 + ], + "libelle_d_acheminement": "CINQ MARS LA PILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.453317897903, + 47.3535034952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "835ef256fcef14d9048bc86f5ba64e24691af5ce", + "fields": { + "code_commune_insee": "37098", + "nom_de_la_commune": "DRACHE", + "code_postal": "37800", + "coordonnees_gps": [ + 47.0667689178, + 0.63417537675 + ], + "libelle_d_acheminement": "DRACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63417537675, + 47.0667689178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7edbf91907df0df7aaf1a70c4fba665edf0e1eb", + "fields": { + "code_commune_insee": "37099", + "nom_de_la_commune": "DRUYE", + "code_postal": "37190", + "coordonnees_gps": [ + 47.2972672597, + 0.53435694 + ], + "libelle_d_acheminement": "DRUYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53435694, + 47.2972672597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ab8b5b402a2caa88882a90b0ede0fffabfed278", + "fields": { + "code_commune_insee": "37110", + "nom_de_la_commune": "FRANCUEIL", + "code_postal": "37150", + "coordonnees_gps": [ + 47.3099460236, + 1.07846481627 + ], + "libelle_d_acheminement": "FRANCUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07846481627, + 47.3099460236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ce607f4b1268be499535e1107235accc1a1aff1", + "fields": { + "code_commune_insee": "37119", + "nom_de_la_commune": "L ILE BOUCHARD", + "code_postal": "37220", + "coordonnees_gps": [ + 47.1228671821, + 0.423044659345 + ], + "libelle_d_acheminement": "L ILE BOUCHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.423044659345, + 47.1228671821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e089d621d983005096662d68d34f4575f100c8e0", + "fields": { + "code_commune_insee": "37124", + "nom_de_la_commune": "LARCAY", + "code_postal": "37270", + "coordonnees_gps": [ + 47.352701653, + 0.776083557562 + ], + "libelle_d_acheminement": "LARCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.776083557562, + 47.352701653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c481c331f1074799b5f8b595a53404e35300a5e", + "fields": { + "code_commune_insee": "37126", + "nom_de_la_commune": "LERNE", + "code_postal": "37500", + "coordonnees_gps": [ + 47.1396272073, + 0.110609738021 + ], + "libelle_d_acheminement": "LERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.110609738021, + 47.1396272073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57047d8b1435dd882ba92870e2f57e36440084b2", + "fields": { + "code_commune_insee": "37128", + "nom_de_la_commune": "LIGNIERES DE TOURAINE", + "code_postal": "37130", + "coordonnees_gps": [ + 47.2948836484, + 0.417423372604 + ], + "libelle_d_acheminement": "LIGNIERES DE TOURAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.417423372604, + 47.2948836484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74968ec1e77de28c86d018b93c6a9e5469d74e3e", + "fields": { + "code_commune_insee": "37129", + "nom_de_la_commune": "LIGRE", + "code_postal": "37500", + "coordonnees_gps": [ + 47.1089496241, + 0.272083554217 + ], + "libelle_d_acheminement": "LIGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.272083554217, + 47.1089496241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b6adb970483997ccd1503c9a5dc3c54d9ee8bb5", + "fields": { + "code_commune_insee": "37138", + "nom_de_la_commune": "LUSSAULT SUR LOIRE", + "code_postal": "37400", + "coordonnees_gps": [ + 47.3899998844, + 0.920355361305 + ], + "libelle_d_acheminement": "LUSSAULT SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.920355361305, + 47.3899998844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8c8c2e1e3e0e7252100cebc4f8868286fa4f805", + "fields": { + "code_commune_insee": "37146", + "nom_de_la_commune": "MARCILLY SUR MAULNE", + "code_postal": "37330", + "coordonnees_gps": [ + 47.5485321042, + 0.224586992617 + ], + "libelle_d_acheminement": "MARCILLY SUR MAULNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.224586992617, + 47.5485321042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55f114d717cc95ea51b9486c64ccbad08507b2de", + "fields": { + "code_commune_insee": "37147", + "nom_de_la_commune": "MARCILLY SUR VIENNE", + "code_postal": "37800", + "coordonnees_gps": [ + 47.0463483222, + 0.527587877222 + ], + "libelle_d_acheminement": "MARCILLY SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.527587877222, + 47.0463483222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c16b7ce3a11660d28e095ceb19ca4248c456eb9", + "fields": { + "code_commune_insee": "37153", + "nom_de_la_commune": "MONNAIE", + "code_postal": "37380", + "coordonnees_gps": [ + 47.4985433749, + 0.786215614417 + ], + "libelle_d_acheminement": "MONNAIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.786215614417, + 47.4985433749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5fffede24a0ce83c55d80a60667379718cab18b", + "fields": { + "code_commune_insee": "37156", + "nom_de_la_commune": "MONTLOUIS SUR LOIRE", + "code_postal": "37270", + "coordonnees_gps": [ + 47.3824921367, + 0.841267944196 + ], + "libelle_d_acheminement": "MONTLOUIS SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.841267944196, + 47.3824921367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "932b343fa2df393d3fc648f7f61670b0cd9f01cb", + "fields": { + "code_commune_insee": "37174", + "nom_de_la_commune": "NOUATRE", + "code_postal": "37800", + "coordonnees_gps": [ + 47.0331254987, + 0.560780750524 + ], + "libelle_d_acheminement": "NOUATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.560780750524, + 47.0331254987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4af533b23800efe52081b54a350c5a3a3baafe4", + "fields": { + "code_commune_insee": "37175", + "nom_de_la_commune": "NOUZILLY", + "code_postal": "37380", + "coordonnees_gps": [ + 47.5371290234, + 0.740464665905 + ], + "libelle_d_acheminement": "NOUZILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.740464665905, + 47.5371290234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "994113e162395e8c88e8e02cf08d21b6944b5a26", + "fields": { + "code_commune_insee": "37179", + "nom_de_la_commune": "PARCAY MESLAY", + "code_postal": "37210", + "coordonnees_gps": [ + 47.4520948829, + 0.742956066986 + ], + "libelle_d_acheminement": "PARCAY MESLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.742956066986, + 47.4520948829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b44597b236d4c6c62eb07ec0459ab535c6a2138", + "fields": { + "code_commune_insee": "37180", + "nom_de_la_commune": "PARCAY SUR VIENNE", + "code_postal": "37220", + "coordonnees_gps": [ + 47.0916485316, + 0.479598033589 + ], + "libelle_d_acheminement": "PARCAY SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.479598033589, + 47.0916485316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19d83d431e2e4331ac97d6d5ab2d0912a8083a2f", + "fields": { + "code_commune_insee": "37181", + "nom_de_la_commune": "PAULMY", + "code_postal": "37350", + "coordonnees_gps": [ + 46.9807863071, + 0.827379730234 + ], + "libelle_d_acheminement": "PAULMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.827379730234, + 46.9807863071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be8720db5a3daa8aef8551dcc793236d20d9845b", + "fields": { + "code_commune_insee": "37183", + "nom_de_la_commune": "PERRUSSON", + "code_postal": "37600", + "coordonnees_gps": [ + 47.0926524002, + 1.00808800981 + ], + "libelle_d_acheminement": "PERRUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00808800981, + 47.0926524002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ae8c3ff76479052a6926d5512c8dd44a436025e", + "fields": { + "code_commune_insee": "37191", + "nom_de_la_commune": "RAZINES", + "code_postal": "37120", + "coordonnees_gps": [ + 46.9748443751, + 0.394788400898 + ], + "libelle_d_acheminement": "RAZINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.394788400898, + 46.9748443751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8607c279e707b104e34006a87b8ba4295db21154", + "fields": { + "code_commune_insee": "37198", + "nom_de_la_commune": "RILLE", + "code_postal": "37340", + "coordonnees_gps": [ + 47.4462265152, + 0.218922496183 + ], + "libelle_d_acheminement": "RILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.218922496183, + 47.4462265152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df811f7ead8c86335fac6cf633f23326c7ba95e4", + "fields": { + "code_commune_insee": "37201", + "nom_de_la_commune": "RIVIERE", + "code_postal": "37500", + "coordonnees_gps": [ + 47.1446277658, + 0.266267354644 + ], + "libelle_d_acheminement": "RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.266267354644, + 47.1446277658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90904725817d9c535735a648f490434dca31d85b", + "fields": { + "code_commune_insee": "37205", + "nom_de_la_commune": "SACHE", + "code_postal": "37190", + "coordonnees_gps": [ + 47.2369371967, + 0.538217215608 + ], + "libelle_d_acheminement": "SACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.538217215608, + 47.2369371967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee19ab8218ed73ffbcb7d84dad042bb6bb47f519", + "fields": { + "code_commune_insee": "37222", + "nom_de_la_commune": "ST JEAN ST GERMAIN", + "code_postal": "37600", + "coordonnees_gps": [ + 47.0847297585, + 1.05505942753 + ], + "libelle_d_acheminement": "ST JEAN ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05505942753, + 47.0847297585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd38a5d7b445486a8a1d2b8e4414be56051db366", + "fields": { + "ligne_5": "ST MICHEL SUR LOIRE", + "code_commune_insee": "37232", + "libelle_d_acheminement": "COTEAUX SUR LOIRE", + "code_postal": "37130", + "nom_de_la_commune": "COTEAUX SUR LOIRE", + "coordonnees_gps": [ + 47.2909121663, + 0.301054429899 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301054429899, + 47.2909121663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90837c9491156be2dc94ce31c058c854af145243", + "fields": { + "code_commune_insee": "37240", + "nom_de_la_commune": "SAUNAY", + "code_postal": "37110", + "coordonnees_gps": [ + 47.5987929508, + 0.95907236748 + ], + "libelle_d_acheminement": "SAUNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95907236748, + 47.5987929508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6a8470a77fe9723274cef26455e1e13408008e2", + "fields": { + "code_commune_insee": "37242", + "nom_de_la_commune": "SAVIGNY EN VERON", + "code_postal": "37420", + "coordonnees_gps": [ + 47.2111243782, + 0.130191774161 + ], + "libelle_d_acheminement": "SAVIGNY EN VERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.130191774161, + 47.2111243782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35ff72fc0575cfbee4109ced5b99ffeb96acf375", + "fields": { + "code_commune_insee": "37243", + "nom_de_la_commune": "SAVONNIERES", + "code_postal": "37510", + "coordonnees_gps": [ + 47.3465342134, + 0.558778925825 + ], + "libelle_d_acheminement": "SAVONNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.558778925825, + 47.3465342134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ae921d18362dd66f9fc5e05984e160d1665cf1c", + "fields": { + "code_commune_insee": "37247", + "nom_de_la_commune": "SEPMES", + "code_postal": "37800", + "coordonnees_gps": [ + 47.0806987926, + 0.684349143477 + ], + "libelle_d_acheminement": "SEPMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.684349143477, + 47.0806987926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "185426bd9aa8480a488153588ac48b89bb2ce35a", + "fields": { + "code_commune_insee": "37251", + "nom_de_la_commune": "SOUVIGNE", + "code_postal": "37330", + "coordonnees_gps": [ + 47.5151982647, + 0.402687568024 + ], + "libelle_d_acheminement": "SOUVIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.402687568024, + 47.5151982647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19c4f5f29f33300296f319481b1de23e1a596916", + "fields": { + "code_commune_insee": "37253", + "nom_de_la_commune": "SUBLAINES", + "code_postal": "37310", + "coordonnees_gps": [ + 47.2702127899, + 0.989804220269 + ], + "libelle_d_acheminement": "SUBLAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.989804220269, + 47.2702127899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81eb897b730f95b09269db28c501e296fb518a04", + "fields": { + "code_commune_insee": "37255", + "nom_de_la_commune": "TAVANT", + "code_postal": "37220", + "coordonnees_gps": [ + 47.1179057551, + 0.385766006554 + ], + "libelle_d_acheminement": "TAVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.385766006554, + 47.1179057551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf74e1c93bcbb4eee5f9059eb9bc3a4037c6f3e5", + "fields": { + "code_commune_insee": "37261", + "nom_de_la_commune": "TOURS", + "code_postal": "37000", + "coordonnees_gps": [ + 47.3986382281, + 0.696526376417 + ], + "libelle_d_acheminement": "TOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696526376417, + 47.3986382281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dcf6f9f9529bc84f3a0ee4e6662bc39a5d3517d", + "fields": { + "code_commune_insee": "37263", + "nom_de_la_commune": "TRUYES", + "code_postal": "37320", + "coordonnees_gps": [ + 47.2855863976, + 0.851603945631 + ], + "libelle_d_acheminement": "TRUYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.851603945631, + 47.2855863976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b0da4118132f146938d65f628199b1cfdcd3704", + "fields": { + "code_commune_insee": "37271", + "nom_de_la_commune": "VILLAINES LES ROCHERS", + "code_postal": "37190", + "coordonnees_gps": [ + 47.2202766951, + 0.496409535046 + ], + "libelle_d_acheminement": "VILLAINES LES ROCHERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.496409535046, + 47.2202766951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dec340c9f0cfb8058ed472ecfe587c3d9657261", + "fields": { + "code_commune_insee": "37274", + "nom_de_la_commune": "VILLEBOURG", + "code_postal": "37370", + "coordonnees_gps": [ + 47.637086362, + 0.523444509985 + ], + "libelle_d_acheminement": "VILLEBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.523444509985, + 47.637086362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c986c749c8b53f614411b1ce454b34cee4f557bf", + "fields": { + "code_commune_insee": "37276", + "nom_de_la_commune": "VILLEDOMER", + "code_postal": "37110", + "coordonnees_gps": [ + 47.5513740132, + 0.869987989658 + ], + "libelle_d_acheminement": "VILLEDOMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.869987989658, + 47.5513740132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3e64794761f9a8d928bcf83227da375a1681d84", + "fields": { + "ligne_5": "FITILIEU", + "code_commune_insee": "38001", + "libelle_d_acheminement": "LES ABRETS EN DAUPHINE", + "code_postal": "38490", + "nom_de_la_commune": "LES ABRETS EN DAUPHINE", + "coordonnees_gps": [ + 45.5418940561, + 5.59342426222 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59342426222, + 45.5418940561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d7cfeff9df99da33680702378f9a52c27eab44b", + "fields": { + "code_commune_insee": "38003", + "nom_de_la_commune": "AGNIN", + "code_postal": "38150", + "coordonnees_gps": [ + 45.3365990336, + 4.85997858164 + ], + "libelle_d_acheminement": "AGNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85997858164, + 45.3365990336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26a401586fdcd26089c13a6ee0a50fb4ac92d7fa", + "fields": { + "code_commune_insee": "38015", + "nom_de_la_commune": "ARTAS", + "code_postal": "38440", + "coordonnees_gps": [ + 45.537434677, + 5.16699367154 + ], + "libelle_d_acheminement": "ARTAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16699367154, + 45.537434677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1724b098ee34ea104b2913b6c1231910201c7df", + "fields": { + "code_commune_insee": "38019", + "nom_de_la_commune": "AUBERIVES SUR VAREZE", + "code_postal": "38550", + "coordonnees_gps": [ + 45.4264263459, + 4.81869609163 + ], + "libelle_d_acheminement": "AUBERIVES SUR VAREZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81869609163, + 45.4264263459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51603095e5e70904f415481683c7cbe26074a1f0", + "fields": { + "ligne_5": "THUELLIN", + "code_commune_insee": "38022", + "libelle_d_acheminement": "LES AVENIERES VEYRINS THUELLIN", + "code_postal": "38630", + "nom_de_la_commune": "LES AVENIERES VEYRINS THUELLIN", + "coordonnees_gps": [ + 45.6426437379, + 5.56958624007 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56958624007, + 45.6426437379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69101f34d100a66a09c4514ead23223f3c468868", + "fields": { + "code_commune_insee": "38026", + "nom_de_la_commune": "LA BALME LES GROTTES", + "code_postal": "38390", + "coordonnees_gps": [ + 45.8422873745, + 5.32038841338 + ], + "libelle_d_acheminement": "LA BALME LES GROTTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32038841338, + 45.8422873745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e9337c49447a5c1386c1a00472dc376587b4d2b", + "fields": { + "code_commune_insee": "38033", + "nom_de_la_commune": "BEAULIEU", + "code_postal": "38470", + "coordonnees_gps": [ + 45.1910839451, + 5.3972824821 + ], + "libelle_d_acheminement": "BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3972824821, + 45.1910839451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ef4cdc83ff6181f33a551748e2a6887638fd565", + "fields": { + "code_commune_insee": "38039", + "nom_de_la_commune": "BERNIN", + "code_postal": "38190", + "coordonnees_gps": [ + 45.2653406999, + 5.86419475853 + ], + "libelle_d_acheminement": "BERNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86419475853, + 45.2653406999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "965569f124ea521d44b5d7979f8e130705e9f1ad", + "fields": { + "code_commune_insee": "38043", + "nom_de_la_commune": "BILIEU", + "code_postal": "38850", + "coordonnees_gps": [ + 45.4461611441, + 5.55137429348 + ], + "libelle_d_acheminement": "BILIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55137429348, + 45.4461611441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74df491c755235ec33da75e64cee3198d27b5a5a", + "fields": { + "code_commune_insee": "38048", + "nom_de_la_commune": "BONNEFAMILLE", + "code_postal": "38090", + "coordonnees_gps": [ + 45.6005617207, + 5.11452103575 + ], + "libelle_d_acheminement": "BONNEFAMILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11452103575, + 45.6005617207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5f88ea8ef31e6e479ba9c8ac3500f2d412592d7", + "fields": { + "code_commune_insee": "38049", + "nom_de_la_commune": "BOSSIEU", + "code_postal": "38260", + "coordonnees_gps": [ + 45.4177469183, + 5.14812089926 + ], + "libelle_d_acheminement": "BOSSIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14812089926, + 45.4177469183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a360f75e0f93da48e37eb38db25abb2a458d15d", + "fields": { + "code_commune_insee": "38050", + "nom_de_la_commune": "LE BOUCHAGE", + "code_postal": "38510", + "coordonnees_gps": [ + 45.6694922312, + 5.52270028125 + ], + "libelle_d_acheminement": "LE BOUCHAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52270028125, + 45.6694922312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f824ba4a8c4356daa1336f5fe3fbb207713f2089", + "fields": { + "code_commune_insee": "38053", + "nom_de_la_commune": "BOURGOIN JALLIEU", + "code_postal": "38300", + "coordonnees_gps": [ + 45.6022027954, + 5.27393762111 + ], + "libelle_d_acheminement": "BOURGOIN JALLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27393762111, + 45.6022027954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dad52e60ab2f8bdf44bdbbfafc63d1f9ff0f4775", + "fields": { + "code_commune_insee": "38065", + "nom_de_la_commune": "CHABONS", + "code_postal": "38690", + "coordonnees_gps": [ + 45.4485453876, + 5.42585886408 + ], + "libelle_d_acheminement": "CHABONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42585886408, + 45.4485453876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dc12c0c1d8c670e054233d7cdf7f8bfe74ddb05", + "fields": { + "ligne_5": "CHANTELOUVE", + "code_commune_insee": "38073", + "libelle_d_acheminement": "CHANTEPERIER", + "code_postal": "38740", + "nom_de_la_commune": "CHANTEPERIER", + "coordonnees_gps": [ + 44.9859421745, + 5.97635547463 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97635547463, + 44.9859421745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13ba25857a6c8e758a6cc6f0a4a3fa4be95eb5e9", + "fields": { + "code_commune_insee": "38085", + "nom_de_la_commune": "CHARVIEU CHAVAGNEUX", + "code_postal": "38230", + "coordonnees_gps": [ + 45.7398511068, + 5.15111694568 + ], + "libelle_d_acheminement": "CHARVIEU CHAVAGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15111694568, + 45.7398511068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "275b7572adf7a0478aafa0df89a4007615347fb2", + "fields": { + "ligne_5": "CHAVAGNEUX", + "code_commune_insee": "38085", + "libelle_d_acheminement": "CHARVIEU CHAVAGNEUX", + "code_postal": "38230", + "nom_de_la_commune": "CHARVIEU CHAVAGNEUX", + "coordonnees_gps": [ + 45.7398511068, + 5.15111694568 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15111694568, + 45.7398511068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebcf376fb2d039863c95ae3fecd975e37e909567", + "fields": { + "code_commune_insee": "38092", + "nom_de_la_commune": "CHATELUS", + "code_postal": "38680", + "coordonnees_gps": [ + 45.0542328632, + 5.38957416574 + ], + "libelle_d_acheminement": "CHATELUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38957416574, + 45.0542328632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6354d4f304b5e70b003365d7dcfd953bc0befffb", + "fields": { + "code_commune_insee": "38093", + "nom_de_la_commune": "CHATENAY", + "code_postal": "38980", + "coordonnees_gps": [ + 45.3294698557, + 5.22927458639 + ], + "libelle_d_acheminement": "CHATENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22927458639, + 45.3294698557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77ab800b88093e7646ba9548b9ffd3aa860f8561", + "fields": { + "code_commune_insee": "38095", + "nom_de_la_commune": "CHATTE", + "code_postal": "38160", + "coordonnees_gps": [ + 45.139921767, + 5.2802381895 + ], + "libelle_d_acheminement": "CHATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2802381895, + 45.139921767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5081a5ad4ebee213d1b84ecdb3bb684a8983516", + "fields": { + "code_commune_insee": "38100", + "nom_de_la_commune": "LE CHEYLAS", + "code_postal": "38570", + "coordonnees_gps": [ + 45.3806432733, + 5.99862071859 + ], + "libelle_d_acheminement": "LE CHEYLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99862071859, + 45.3806432733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be9a74184615e22f9d5ac508c462fb49dfb88121", + "fields": { + "code_commune_insee": "38104", + "nom_de_la_commune": "CHIMILIN", + "code_postal": "38490", + "coordonnees_gps": [ + 45.5731073891, + 5.5894858919 + ], + "libelle_d_acheminement": "CHIMILIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5894858919, + 45.5731073891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de3271360affd862019f1ed57c57df9009b04dee", + "fields": { + "code_commune_insee": "38111", + "nom_de_la_commune": "CLAIX", + "code_postal": "38640", + "coordonnees_gps": [ + 45.1224170897, + 5.65707336922 + ], + "libelle_d_acheminement": "CLAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65707336922, + 45.1224170897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e671fb8633d796b6ced53255f9e72e288be839f2", + "fields": { + "code_commune_insee": "38116", + "nom_de_la_commune": "COGNET", + "code_postal": "38350", + "coordonnees_gps": [ + 44.8812149544, + 5.77569848329 + ], + "libelle_d_acheminement": "COGNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77569848329, + 44.8812149544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73b5cf2b37809309c50aac61488b973bc143345a", + "fields": { + "code_commune_insee": "38128", + "nom_de_la_commune": "CORPS", + "code_postal": "38970", + "coordonnees_gps": [ + 44.8199101322, + 5.94147206383 + ], + "libelle_d_acheminement": "CORPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94147206383, + 44.8199101322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2968874d6c2b9be5bde28fe9e335f971e8e2d26", + "fields": { + "code_commune_insee": "38130", + "nom_de_la_commune": "LA COTE ST ANDRE", + "code_postal": "38260", + "coordonnees_gps": [ + 45.3834360946, + 5.26068376928 + ], + "libelle_d_acheminement": "LA COTE ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26068376928, + 45.3834360946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9042acff5058240c9cfae20c78c73969db11a848", + "fields": { + "ligne_5": "PUSIGNIEU", + "code_commune_insee": "38139", + "libelle_d_acheminement": "CREYS MEPIEU", + "code_postal": "38510", + "nom_de_la_commune": "CREYS MEPIEU", + "coordonnees_gps": [ + 45.7442083563, + 5.46517571315 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46517571315, + 45.7442083563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41f7577d7b3dbb2ebc27b7177798707f86031fb6", + "fields": { + "code_commune_insee": "38146", + "nom_de_la_commune": "DIZIMIEU", + "code_postal": "38460", + "coordonnees_gps": [ + 45.7132191545, + 5.28778124525 + ], + "libelle_d_acheminement": "DIZIMIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28778124525, + 45.7132191545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18a0d64f9f425d1b9aec923fc8407c98f0aa7c3d", + "fields": { + "code_commune_insee": "38152", + "nom_de_la_commune": "ECLOSE BADINIERES", + "code_postal": "38300", + "coordonnees_gps": [ + 45.4917400376, + 5.30263669678 + ], + "libelle_d_acheminement": "ECLOSE BADINIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30263669678, + 45.4917400376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82d41ea3311b1d0c1b64ac179abccec99a0e88ec", + "fields": { + "ligne_5": "BADINIERES", + "code_commune_insee": "38152", + "libelle_d_acheminement": "ECLOSE BADINIERES", + "code_postal": "38300", + "nom_de_la_commune": "ECLOSE BADINIERES", + "coordonnees_gps": [ + 45.4917400376, + 5.30263669678 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30263669678, + 45.4917400376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbee1c371773f3dd346ee78867d6dccb92186e94", + "fields": { + "code_commune_insee": "38153", + "nom_de_la_commune": "ENGINS", + "code_postal": "38360", + "coordonnees_gps": [ + 45.1930404027, + 5.60939772759 + ], + "libelle_d_acheminement": "ENGINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60939772759, + 45.1930404027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76fc7ed716ae55c83d580cb11d456f5b9d9e1ed8", + "fields": { + "code_commune_insee": "38154", + "nom_de_la_commune": "ENTRAIGUES", + "code_postal": "38740", + "coordonnees_gps": [ + 44.8898827456, + 5.96388383994 + ], + "libelle_d_acheminement": "ENTRAIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96388383994, + 44.8898827456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d37f64c870acdc99ec61c7601b2deeacc884917a", + "fields": { + "code_commune_insee": "38177", + "nom_de_la_commune": "LA GARDE", + "code_postal": "38520", + "coordonnees_gps": [ + 45.0680531923, + 6.05570708995 + ], + "libelle_d_acheminement": "LA GARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05570708995, + 45.0680531923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c463ff95af2c137dd6ac3b7186fe931a49166560", + "fields": { + "code_commune_insee": "38181", + "nom_de_la_commune": "GONCELIN", + "code_postal": "38570", + "coordonnees_gps": [ + 45.3363840613, + 5.98797386744 + ], + "libelle_d_acheminement": "GONCELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98797386744, + 45.3363840613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e276b04a2c5d18fa33a2486dbe55db433fe0b2ec", + "fields": { + "code_commune_insee": "38182", + "nom_de_la_commune": "LE GRAND LEMPS", + "code_postal": "38690", + "coordonnees_gps": [ + 45.3962642718, + 5.4186427969 + ], + "libelle_d_acheminement": "LE GRAND LEMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4186427969, + 45.3962642718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d505ef28aa15f05e7db670b9fbc3d417017f4d5", + "fields": { + "code_commune_insee": "38189", + "nom_de_la_commune": "HEYRIEUX", + "code_postal": "38540", + "coordonnees_gps": [ + 45.6280667803, + 5.05921319142 + ], + "libelle_d_acheminement": "HEYRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05921319142, + 45.6280667803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec52bb682b433a39c9833cf0653cd5c3b872ad76", + "fields": { + "code_commune_insee": "38203", + "nom_de_la_commune": "LAFFREY", + "code_postal": "38220", + "coordonnees_gps": [ + 45.0299394484, + 5.7822153115 + ], + "libelle_d_acheminement": "LAFFREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7822153115, + 45.0299394484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "055d3a7182dbe4188cc00c1a9166b5d5a1b91a23", + "fields": { + "code_commune_insee": "38209", + "nom_de_la_commune": "LENTIOL", + "code_postal": "38270", + "coordonnees_gps": [ + 45.2966624696, + 5.10443556596 + ], + "libelle_d_acheminement": "LENTIOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10443556596, + 45.2966624696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6813b097a8a6d6daf643119312300c4d530d862", + "fields": { + "ligne_5": "GAVET", + "code_commune_insee": "38212", + "libelle_d_acheminement": "LIVET ET GAVET", + "code_postal": "38220", + "nom_de_la_commune": "LIVET ET GAVET", + "coordonnees_gps": [ + 45.0905954329, + 5.91904092614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91904092614, + 45.0905954329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc75091a3f34b0e5a2535120c3b5aec8de4108ef", + "fields": { + "code_commune_insee": "38213", + "nom_de_la_commune": "LONGECHENAL", + "code_postal": "38690", + "coordonnees_gps": [ + 45.4228948785, + 5.3603298976 + ], + "libelle_d_acheminement": "LONGECHENAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3603298976, + 45.4228948785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21f228a6009ff2ab90be99731c5c1061c6065786", + "fields": { + "ligne_5": "MEAUDRE", + "code_commune_insee": "38225", + "libelle_d_acheminement": "AUTRANS MEAUDRE EN VERCORS", + "code_postal": "38112", + "nom_de_la_commune": "AUTRANS MEAUDRE EN VERCORS", + "coordonnees_gps": [ + 45.1321769623, + 5.52869303726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52869303726, + 45.1321769623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a88663d3fa1b946b8f211eecb9e152f5e67adb9", + "fields": { + "code_commune_insee": "38228", + "nom_de_la_commune": "MERLAS", + "code_postal": "38620", + "coordonnees_gps": [ + 45.4393958201, + 5.65883758315 + ], + "libelle_d_acheminement": "MERLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65883758315, + 45.4393958201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2964cca6414d47239a8f9a08ba529910a4c31373", + "fields": { + "code_commune_insee": "38230", + "nom_de_la_commune": "MEYRIE", + "code_postal": "38300", + "coordonnees_gps": [ + 45.5602461635, + 5.2848381306 + ], + "libelle_d_acheminement": "MEYRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2848381306, + 45.5602461635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2b3aee5f138e0655d38eb79f645648af3f0db84", + "fields": { + "code_commune_insee": "38240", + "nom_de_la_commune": "MOISSIEU SUR DOLON", + "code_postal": "38270", + "coordonnees_gps": [ + 45.3908938983, + 4.98729399155 + ], + "libelle_d_acheminement": "MOISSIEU SUR DOLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98729399155, + 45.3908938983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d80f06cd14026a3b83421d56b323fdb3edbcd1ed", + "fields": { + "code_commune_insee": "38245", + "nom_de_la_commune": "MONTAGNE", + "code_postal": "38160", + "coordonnees_gps": [ + 45.1427039465, + 5.20042343042 + ], + "libelle_d_acheminement": "MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20042343042, + 45.1427039465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bef5c51dd8a93a757712aff28c2c7e07c1aa2e9d", + "fields": { + "code_commune_insee": "38261", + "nom_de_la_commune": "MORESTEL", + "code_postal": "38510", + "coordonnees_gps": [ + 45.6800024667, + 5.47063929574 + ], + "libelle_d_acheminement": "MORESTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47063929574, + 45.6800024667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ac04a78aeaa27754990fdc0cf5c43d9f14d4d4b", + "fields": { + "code_commune_insee": "38266", + "nom_de_la_commune": "LA MOTTE ST MARTIN", + "code_postal": "38770", + "coordonnees_gps": [ + 44.9463782517, + 5.71905629 + ], + "libelle_d_acheminement": "LA MOTTE ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71905629, + 44.9463782517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25bcf0ea818f7288f8eabe7659b36453c6473cc4", + "fields": { + "code_commune_insee": "38267", + "nom_de_la_commune": "MOTTIER", + "code_postal": "38260", + "coordonnees_gps": [ + 45.4232022991, + 5.30860721755 + ], + "libelle_d_acheminement": "LE MOTTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30860721755, + 45.4232022991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "421077720bcff774305a982e510e06ea3c0dd67d", + "fields": { + "code_commune_insee": "38273", + "nom_de_la_commune": "NANTES EN RATIER", + "code_postal": "38350", + "coordonnees_gps": [ + 44.9282499518, + 5.82804955801 + ], + "libelle_d_acheminement": "NANTES EN RATIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82804955801, + 44.9282499518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d0bc09de558e11d2d974be559238707f53f043d", + "fields": { + "code_commune_insee": "38275", + "nom_de_la_commune": "SERRE NERPOL", + "code_postal": "38470", + "coordonnees_gps": [ + 45.2573268964, + 5.37164810608 + ], + "libelle_d_acheminement": "SERRE NERPOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37164810608, + 45.2573268964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3853b064cc631d7b82d85a71b98c47936ab27467", + "fields": { + "code_commune_insee": "38276", + "nom_de_la_commune": "NIVOLAS VERMELLE", + "code_postal": "38300", + "coordonnees_gps": [ + 45.5617249552, + 5.30687058323 + ], + "libelle_d_acheminement": "NIVOLAS VERMELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30687058323, + 45.5617249552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d29f171fbc0eee9055ed6caf055758dbf2de19a", + "fields": { + "code_commune_insee": "38277", + "nom_de_la_commune": "NOTRE DAME DE COMMIERS", + "code_postal": "38450", + "coordonnees_gps": [ + 45.009447432, + 5.70400358606 + ], + "libelle_d_acheminement": "NOTRE DAME DE COMMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70400358606, + 45.009447432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21b648d9351a706fc83b4e8b40071a4ec88a6c54", + "fields": { + "code_commune_insee": "38288", + "nom_de_la_commune": "OYTIER ST OBLAS", + "code_postal": "38780", + "coordonnees_gps": [ + 45.5646344835, + 5.03134323358 + ], + "libelle_d_acheminement": "OYTIER ST OBLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03134323358, + 45.5646344835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51f170e0dbf0bbbe2780384d0c6be432b0de69e3", + "fields": { + "code_commune_insee": "38290", + "nom_de_la_commune": "PACT", + "code_postal": "38270", + "coordonnees_gps": [ + 45.3540175741, + 4.98747435997 + ], + "libelle_d_acheminement": "PACT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98747435997, + 45.3540175741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3514b684413e34af28ef2d0182004f75c437de3", + "fields": { + "ligne_5": "PALADRU", + "code_commune_insee": "38292", + "libelle_d_acheminement": "VILLAGES DU LAC DE PALADRU", + "code_postal": "38850", + "nom_de_la_commune": "VILLAGES DU LAC DE PALADRU", + "coordonnees_gps": [ + 45.4823189588, + 5.55281402751 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55281402751, + 45.4823189588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4b5229302f32f4b466fe57872e8963f6821bffe", + "fields": { + "code_commune_insee": "38298", + "nom_de_la_commune": "LE PEAGE DE ROUSSILLON", + "code_postal": "38550", + "coordonnees_gps": [ + 45.3691585738, + 4.78421704937 + ], + "libelle_d_acheminement": "LE PEAGE DE ROUSSILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78421704937, + 45.3691585738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "456d9df5561ccefc88b3ace438a0a8dd546a6ae6", + "fields": { + "code_commune_insee": "38311", + "nom_de_la_commune": "POMMIER DE BEAUREPAIRE", + "code_postal": "38260", + "coordonnees_gps": [ + 45.3927239084, + 5.1081971977 + ], + "libelle_d_acheminement": "POMMIER DE BEAUREPAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1081971977, + 45.3927239084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95229538073cbbec509e9004fb996f2676def53c", + "fields": { + "code_commune_insee": "38318", + "nom_de_la_commune": "PONT EVEQUE", + "code_postal": "38780", + "coordonnees_gps": [ + 45.5342814016, + 4.92402983198 + ], + "libelle_d_acheminement": "PONT EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92402983198, + 45.5342814016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1bc9ee9965705280f63b80bb041c3894b3dffd3", + "fields": { + "code_commune_insee": "38322", + "nom_de_la_commune": "PRESLES", + "code_postal": "38680", + "coordonnees_gps": [ + 45.0933071522, + 5.40540834704 + ], + "libelle_d_acheminement": "PRESLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40540834704, + 45.0933071522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e19069b43023e34dc13ed8c40695ca81cdeeb4c", + "fields": { + "code_commune_insee": "38326", + "nom_de_la_commune": "PRUNIERES", + "code_postal": "38350", + "coordonnees_gps": [ + 44.8984790286, + 5.75662171369 + ], + "libelle_d_acheminement": "PRUNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75662171369, + 44.8984790286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "882e6a278c1fb70bd1dce0d17399647bb1cc464a", + "fields": { + "code_commune_insee": "38328", + "nom_de_la_commune": "QUAIX EN CHARTREUSE", + "code_postal": "38950", + "coordonnees_gps": [ + 45.2568837675, + 5.73045716055 + ], + "libelle_d_acheminement": "QUAIX EN CHARTREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73045716055, + 45.2568837675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d49366c7b22075bc831e30276fb4d85962de1066", + "fields": { + "code_commune_insee": "38335", + "nom_de_la_commune": "REVEL TOURDAN", + "code_postal": "38270", + "coordonnees_gps": [ + 45.3706106048, + 5.03128950015 + ], + "libelle_d_acheminement": "REVEL TOURDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03128950015, + 45.3706106048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29c5f41ac063b44da1befe357c18573bff5b832a", + "fields": { + "code_commune_insee": "38337", + "nom_de_la_commune": "RIVES", + "code_postal": "38140", + "coordonnees_gps": [ + 45.3608957046, + 5.48709691309 + ], + "libelle_d_acheminement": "RIVES SUR FURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48709691309, + 45.3608957046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "112c9d19e066c31eca7ac504a62172dc153caf7d", + "fields": { + "code_commune_insee": "38338", + "nom_de_la_commune": "LA RIVIERE", + "code_postal": "38210", + "coordonnees_gps": [ + 45.2240239365, + 5.51354806573 + ], + "libelle_d_acheminement": "LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51354806573, + 45.2240239365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88c6163585c3728e6138c289eb087eb1da4dbb71", + "fields": { + "code_commune_insee": "38339", + "nom_de_la_commune": "ROCHE", + "code_postal": "38090", + "coordonnees_gps": [ + 45.5742314322, + 5.15591367556 + ], + "libelle_d_acheminement": "ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15591367556, + 45.5742314322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1333751e4aa7d48634c489a308b9e44b7ac2127e", + "fields": { + "code_commune_insee": "38343", + "nom_de_la_commune": "ROMAGNIEU", + "code_postal": "38480", + "coordonnees_gps": [ + 45.5623995351, + 5.63966032442 + ], + "libelle_d_acheminement": "ROMAGNIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63966032442, + 45.5623995351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ab1ee016ae7bb5973ac6bd723da40410896f8bc", + "fields": { + "ligne_5": "MONTCEAU", + "code_commune_insee": "38348", + "libelle_d_acheminement": "RUY MONTCEAU", + "code_postal": "38300", + "nom_de_la_commune": "RUY MONTCEAU", + "coordonnees_gps": [ + 45.590349924, + 5.344319552 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.344319552, + 45.590349924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af52662f326965025b381679267b3c71e34ce6fa", + "fields": { + "code_commune_insee": "38355", + "nom_de_la_commune": "ST ANDEOL", + "code_postal": "38650", + "coordonnees_gps": [ + 44.9498407462, + 5.51699741811 + ], + "libelle_d_acheminement": "ST ANDEOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51699741811, + 44.9498407462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62ee3b69ba12598561b91853d42cb629c7dc3ad2", + "fields": { + "code_commune_insee": "38360", + "nom_de_la_commune": "ST APPOLINARD", + "code_postal": "38160", + "coordonnees_gps": [ + 45.1840589989, + 5.26050119803 + ], + "libelle_d_acheminement": "ST APPOLINARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26050119803, + 45.1840589989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27654157016357ae5efb1e2514af0f41364bfbb4", + "fields": { + "code_commune_insee": "38362", + "nom_de_la_commune": "ST AUPRE", + "code_postal": "38960", + "coordonnees_gps": [ + 45.4060612976, + 5.66175249107 + ], + "libelle_d_acheminement": "ST AUPRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66175249107, + 45.4060612976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1003d75439dc8bbdfec5af9049a718b0f1b32bf2", + "fields": { + "code_commune_insee": "38372", + "nom_de_la_commune": "ST BUEIL", + "code_postal": "38620", + "coordonnees_gps": [ + 45.473709028, + 5.68057298861 + ], + "libelle_d_acheminement": "ST BUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68057298861, + 45.473709028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4763e48e0381d9f3a3f1dc6af589ae028fe03b6a", + "fields": { + "code_commune_insee": "38373", + "nom_de_la_commune": "ST CASSIEN", + "code_postal": "38500", + "coordonnees_gps": [ + 45.3609994105, + 5.5511979426 + ], + "libelle_d_acheminement": "ST CASSIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5511979426, + 45.3609994105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e88fa8005cd8f3e68a1894453e896d6a66bab1d", + "fields": { + "code_commune_insee": "38377", + "nom_de_la_commune": "ST CLAIR DE LA TOUR", + "code_postal": "38110", + "coordonnees_gps": [ + 45.5708091389, + 5.48838471268 + ], + "libelle_d_acheminement": "ST CLAIR DE LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48838471268, + 45.5708091389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a4b92e803caa7b4caf454fc8c32d87246f586c4", + "fields": { + "code_commune_insee": "38381", + "nom_de_la_commune": "ST DIDIER DE LA TOUR", + "code_postal": "38110", + "coordonnees_gps": [ + 45.5479526483, + 5.48734196729 + ], + "libelle_d_acheminement": "ST DIDIER DE LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48734196729, + 45.5479526483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42f2455d738257f0df8cdf1593b791d25cc8da58", + "fields": { + "code_commune_insee": "38382", + "nom_de_la_commune": "ST EGREVE", + "code_postal": "38120", + "coordonnees_gps": [ + 45.2326617752, + 5.68410149189 + ], + "libelle_d_acheminement": "ST EGREVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68410149189, + 45.2326617752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6085247ce4de96dfd7fda6f5f40acb41a5d58f69", + "fields": { + "code_commune_insee": "38384", + "nom_de_la_commune": "ST ETIENNE DE ST GEOIRS", + "code_postal": "38590", + "coordonnees_gps": [ + 45.3456023361, + 5.34838089834 + ], + "libelle_d_acheminement": "ST ETIENNE DE ST GEOIRS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34838089834, + 45.3456023361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12dbc938fd47fd64ac59c8cd7365f50441881e1a", + "fields": { + "code_commune_insee": "38388", + "nom_de_la_commune": "ST GEORGES DE COMMIERS", + "code_postal": "38450", + "coordonnees_gps": [ + 45.0360297724, + 5.7185625705 + ], + "libelle_d_acheminement": "ST GEORGES DE COMMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7185625705, + 45.0360297724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd773d619e376505b5c2dfa70aa1f08a2e7ded1b", + "fields": { + "code_commune_insee": "38393", + "nom_de_la_commune": "ST HILAIRE DE LA COTE", + "code_postal": "38260", + "coordonnees_gps": [ + 45.389376572, + 5.32988018249 + ], + "libelle_d_acheminement": "ST HILAIRE DE LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32988018249, + 45.389376572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3344c61b0cd6416a6a41b96cf2de77f8b86ab71f", + "fields": { + "ligne_5": "ST HILAIRE", + "code_commune_insee": "38395", + "libelle_d_acheminement": "PLATEAU DES PETITES ROCHES", + "code_postal": "38660", + "nom_de_la_commune": "PLATEAU DES PETITES ROCHES", + "coordonnees_gps": [ + 45.3128224472, + 5.87842750871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87842750871, + 45.3128224472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a11efb28d2e14ee9fc3bb429ded143b25ce2cbdd", + "fields": { + "ligne_5": "ST PANCRASSE", + "code_commune_insee": "38395", + "libelle_d_acheminement": "PLATEAU DES PETITES ROCHES", + "code_postal": "38660", + "nom_de_la_commune": "PLATEAU DES PETITES ROCHES", + "coordonnees_gps": [ + 45.3128224472, + 5.87842750871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87842750871, + 45.3128224472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d92932062fb44ee8bdb8d5538099ff49aef51ca3", + "fields": { + "code_commune_insee": "38398", + "nom_de_la_commune": "ST JEAN D AVELANNE", + "code_postal": "38480", + "coordonnees_gps": [ + 45.5079774289, + 5.66725503833 + ], + "libelle_d_acheminement": "ST JEAN D AVELANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66725503833, + 45.5079774289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9518f4ae2af0a64fd162710dd48d3f609f3f7594", + "fields": { + "code_commune_insee": "38400", + "nom_de_la_commune": "ST JEAN DE MOIRANS", + "code_postal": "38430", + "coordonnees_gps": [ + 45.3369408381, + 5.58792748637 + ], + "libelle_d_acheminement": "ST JEAN DE MOIRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58792748637, + 45.3369408381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc77c3e0789ae303767ad68e1bf768174628645d", + "fields": { + "code_commune_insee": "38404", + "nom_de_la_commune": "ST JEAN LE VIEUX", + "code_postal": "38420", + "coordonnees_gps": [ + 45.2076677779, + 5.87763169081 + ], + "libelle_d_acheminement": "ST JEAN LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87763169081, + 45.2076677779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "076dce378880552b7071cf7794ff004a6350b822", + "fields": { + "code_commune_insee": "38422", + "nom_de_la_commune": "ST MARTIN D URIAGE", + "code_postal": "38410", + "coordonnees_gps": [ + 45.1533114965, + 5.85697188801 + ], + "libelle_d_acheminement": "ST MARTIN D URIAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85697188801, + 45.1533114965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58c77a628f0ea17b547ea9cebaa391046958a48c", + "fields": { + "code_commune_insee": "38426", + "nom_de_la_commune": "ST MAXIMIN", + "code_postal": "38530", + "coordonnees_gps": [ + 45.4259637947, + 6.05007795734 + ], + "libelle_d_acheminement": "ST MAXIMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05007795734, + 45.4259637947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4785c7c91356a8b0875e79823297bc254076d00", + "fields": { + "code_commune_insee": "38434", + "nom_de_la_commune": "ST ONDRAS", + "code_postal": "38490", + "coordonnees_gps": [ + 45.5171531669, + 5.54742097432 + ], + "libelle_d_acheminement": "ST ONDRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54742097432, + 45.5171531669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e5818c9bc3bd16ffdc0789ae41c839fb88ed296", + "fields": { + "ligne_5": "ST PIERRE D ALLEVARD", + "code_commune_insee": "38439", + "libelle_d_acheminement": "CRETS EN BELLEDONNE", + "code_postal": "38830", + "nom_de_la_commune": "CRETS EN BELLEDONNE", + "coordonnees_gps": [ + 45.3573537268, + 6.0451681388 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0451681388, + 45.3573537268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b661fd8d9342a17bcd9f877ad3e9404c9fca2e97", + "fields": { + "code_commune_insee": "38440", + "nom_de_la_commune": "ST PIERRE DE BRESSIEUX", + "code_postal": "38870", + "coordonnees_gps": [ + 45.301403987, + 5.29999858329 + ], + "libelle_d_acheminement": "ST PIERRE DE BRESSIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29999858329, + 45.301403987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "139ea6320c4bebc2906d7c6e78921c03340780ee", + "fields": { + "code_commune_insee": "38453", + "nom_de_la_commune": "ST ROMANS", + "code_postal": "38160", + "coordonnees_gps": [ + 45.1052188553, + 5.31866035876 + ], + "libelle_d_acheminement": "ST ROMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31866035876, + 45.1052188553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a7a84d53676a9f89def111d79f6e1e20620e80a", + "fields": { + "code_commune_insee": "38458", + "nom_de_la_commune": "ST SORLIN DE MORESTEL", + "code_postal": "38510", + "coordonnees_gps": [ + 45.6330000577, + 5.47273562347 + ], + "libelle_d_acheminement": "ST SORLIN DE MORESTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47273562347, + 45.6330000577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a35f62843530c971ff7e6b80329aca4938ce62e", + "fields": { + "code_commune_insee": "38464", + "nom_de_la_commune": "ST VICTOR DE CESSIEU", + "code_postal": "38110", + "coordonnees_gps": [ + 45.5400475666, + 5.38346631149 + ], + "libelle_d_acheminement": "ST VICTOR DE CESSIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38346631149, + 45.5400475666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b01f62ea04253e933a8429aff8f748afc347317d", + "fields": { + "code_commune_insee": "38473", + "nom_de_la_commune": "SARDIEU", + "code_postal": "38260", + "coordonnees_gps": [ + 45.3601004595, + 5.22079778885 + ], + "libelle_d_acheminement": "SARDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22079778885, + 45.3601004595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82fc431b3a86d63f8912d80e6a505cb9a707e0ee", + "fields": { + "ligne_5": "HAUT DE BONCE", + "code_commune_insee": "38475", + "libelle_d_acheminement": "SATOLAS ET BONCE", + "code_postal": "38290", + "nom_de_la_commune": "SATOLAS ET BONCE", + "coordonnees_gps": [ + 45.682504844, + 5.12584106732 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12584106732, + 45.682504844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e025434a29d98b65205b0bfbdc0f2491319c06ce", + "fields": { + "code_commune_insee": "38478", + "nom_de_la_commune": "SECHILIENNE", + "code_postal": "38220", + "coordonnees_gps": [ + 45.0726055114, + 5.83002564544 + ], + "libelle_d_acheminement": "SECHILIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83002564544, + 45.0726055114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c06fc1565c343756e8246f2995ffea6e8fe019e6", + "fields": { + "code_commune_insee": "38483", + "nom_de_la_commune": "SERMERIEU", + "code_postal": "38510", + "coordonnees_gps": [ + 45.6665923233, + 5.40919117116 + ], + "libelle_d_acheminement": "SERMERIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40919117116, + 45.6665923233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ac1eefeae265ba8b56363c0f1df58d936bf0a55", + "fields": { + "code_commune_insee": "38488", + "nom_de_la_commune": "SICCIEU ST JULIEN ET CARISIEU", + "code_postal": "38460", + "coordonnees_gps": [ + 45.7304007028, + 5.31489253784 + ], + "libelle_d_acheminement": "SICCIEU ST JULIEN ET CARISIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31489253784, + 45.7304007028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6b8ff0bd28b242f74386d2d80ff67d9304ce3a9", + "fields": { + "code_commune_insee": "38490", + "nom_de_la_commune": "SILLANS", + "code_postal": "38590", + "coordonnees_gps": [ + 45.3482750894, + 5.39137219137 + ], + "libelle_d_acheminement": "SILLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39137219137, + 45.3482750894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8ed0d0d59ce5da4d52e7c91f59051be82a02cd4", + "fields": { + "code_commune_insee": "38500", + "nom_de_la_commune": "TECHE", + "code_postal": "38470", + "coordonnees_gps": [ + 45.1776772771, + 5.37590743872 + ], + "libelle_d_acheminement": "TECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37590743872, + 45.1776772771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "094ae64ec14ef97342d79969699df4a771de28ce", + "fields": { + "code_commune_insee": "38501", + "nom_de_la_commune": "TENCIN", + "code_postal": "38570", + "coordonnees_gps": [ + 45.3111766526, + 5.95861963639 + ], + "libelle_d_acheminement": "TENCIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95861963639, + 45.3111766526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c0ebb4423710b2cf7da3993250c62b10779a05f", + "fields": { + "code_commune_insee": "38507", + "nom_de_la_commune": "TIGNIEU JAMEYZIEU", + "code_postal": "38230", + "coordonnees_gps": [ + 45.7344692085, + 5.18364277123 + ], + "libelle_d_acheminement": "TIGNIEU JAMEYZIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18364277123, + 45.7344692085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35bd0d625878f9e668bbb14a4734cd359d2cd196", + "fields": { + "code_commune_insee": "38529", + "nom_de_la_commune": "VAULNAVEYS LE HAUT", + "code_postal": "38410", + "coordonnees_gps": [ + 45.1153983318, + 5.8400227882 + ], + "libelle_d_acheminement": "VAULNAVEYS LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8400227882, + 45.1153983318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a467fe06f477dfbab900bb5356c317b54bbcbfee", + "fields": { + "code_commune_insee": "38533", + "nom_de_la_commune": "VENON", + "code_postal": "38610", + "coordonnees_gps": [ + 45.1733618225, + 5.81062446887 + ], + "libelle_d_acheminement": "VENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81062446887, + 45.1733618225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4228240b753347014e2d71c80b73c8d35393e98f", + "fields": { + "code_commune_insee": "38538", + "nom_de_la_commune": "LE VERSOUD", + "code_postal": "38420", + "coordonnees_gps": [ + 45.2221893714, + 5.85871984364 + ], + "libelle_d_acheminement": "LE VERSOUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85871984364, + 45.2221893714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19d58f2f9085bb3527b5a3c2fb60df32459bbd16", + "fields": { + "code_commune_insee": "38542", + "nom_de_la_commune": "VEYSSILIEU", + "code_postal": "38460", + "coordonnees_gps": [ + 45.6805675587, + 5.22802915323 + ], + "libelle_d_acheminement": "VEYSSILIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22802915323, + 45.6805675587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44006f24854fdb6279bedd5f426bcb0e32ad3bcd", + "fields": { + "code_commune_insee": "38546", + "nom_de_la_commune": "VIGNIEU", + "code_postal": "38890", + "coordonnees_gps": [ + 45.6317039689, + 5.42138365917 + ], + "libelle_d_acheminement": "VIGNIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42138365917, + 45.6317039689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a58fe9834cc0c14cd22d9bb8485a1af841390ee0", + "fields": { + "ligne_5": "BRIGNOUD", + "code_commune_insee": "38547", + "libelle_d_acheminement": "VILLARD BONNOT", + "code_postal": "38190", + "nom_de_la_commune": "VILLARD BONNOT", + "coordonnees_gps": [ + 45.2446205727, + 5.88906725424 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88906725424, + 45.2446205727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdb50805bbc1c93560f25630d5b97dc85ababd02", + "fields": { + "code_commune_insee": "38549", + "nom_de_la_commune": "VILLARD NOTRE DAME", + "code_postal": "38520", + "coordonnees_gps": [ + 45.008859137, + 6.03313652994 + ], + "libelle_d_acheminement": "VILLARD NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03313652994, + 45.008859137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68eee519b780e30a4370f0555c897191f0694ca5", + "fields": { + "ligne_5": "ASNIERES", + "code_commune_insee": "38557", + "libelle_d_acheminement": "VILLETTE D ANTHON", + "code_postal": "38280", + "nom_de_la_commune": "VILLETTE D ANTHON", + "coordonnees_gps": [ + 45.7844347868, + 5.10742322844 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10742322844, + 45.7844347868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6266c2e532132bef46c23dbc6d3d4f8bacc8648b", + "fields": { + "ligne_5": "MONS", + "code_commune_insee": "38557", + "libelle_d_acheminement": "VILLETTE D ANTHON", + "code_postal": "38280", + "nom_de_la_commune": "VILLETTE D ANTHON", + "coordonnees_gps": [ + 45.7844347868, + 5.10742322844 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10742322844, + 45.7844347868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d86b670a3a3ea19a26a13cf6d9bc1f927026889", + "fields": { + "ligne_5": "VIRIEU", + "code_commune_insee": "38560", + "libelle_d_acheminement": "VAL DE VIRIEU", + "code_postal": "38730", + "nom_de_la_commune": "VAL DE VIRIEU", + "coordonnees_gps": [ + 45.4710107219, + 5.47722792273 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47722792273, + 45.4710107219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e3fcf38105b1133c66d1c3733062de7f88d7c94", + "fields": { + "code_commune_insee": "39003", + "nom_de_la_commune": "ABERGEMENT LE PETIT", + "code_postal": "39800", + "coordonnees_gps": [ + 46.906561832, + 5.69663602324 + ], + "libelle_d_acheminement": "ABERGEMENT LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69663602324, + 46.906561832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42047a41a79445d09d671fa170dd29a559de701a", + "fields": { + "code_commune_insee": "39010", + "nom_de_la_commune": "ANDELOT MORVAL", + "code_postal": "39320", + "coordonnees_gps": [ + 46.4237585921, + 5.42679898961 + ], + "libelle_d_acheminement": "ANDELOT MORVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42679898961, + 46.4237585921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07ce432fbdfdc2649e5344a49ea6841de78d857f", + "fields": { + "ligne_5": "MORVAL", + "code_commune_insee": "39010", + "libelle_d_acheminement": "ANDELOT MORVAL", + "code_postal": "39320", + "nom_de_la_commune": "ANDELOT MORVAL", + "coordonnees_gps": [ + 46.4237585921, + 5.42679898961 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42679898961, + 46.4237585921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d7dfb1942fd9f2fa05e398ea44c430e0dacd1e8", + "fields": { + "code_commune_insee": "39011", + "nom_de_la_commune": "ANNOIRE", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9585671932, + 5.27702969888 + ], + "libelle_d_acheminement": "ANNOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27702969888, + 46.9585671932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ee0efed33151cf5072f29e8db6d4a8d46e07858", + "fields": { + "code_commune_insee": "39018", + "nom_de_la_commune": "AROMAS", + "code_postal": "39240", + "coordonnees_gps": [ + 46.2931394653, + 5.4882078411 + ], + "libelle_d_acheminement": "AROMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4882078411, + 46.2931394653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76d39820ca61e35772a2ec1ea2b0c638f41beca8", + "fields": { + "ligne_5": "VILLENEUVE LES CHARNOD", + "code_commune_insee": "39018", + "libelle_d_acheminement": "AROMAS", + "code_postal": "39240", + "nom_de_la_commune": "AROMAS", + "coordonnees_gps": [ + 46.2931394653, + 5.4882078411 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4882078411, + 46.2931394653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b954dbd0a23b3e638ef1193ab32f31ad00dcd3e0", + "fields": { + "code_commune_insee": "39020", + "nom_de_la_commune": "ARSURE ARSURETTE", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7150975555, + 6.08022545368 + ], + "libelle_d_acheminement": "ARSURE ARSURETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08022545368, + 46.7150975555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48429bdd18e5f8892002badd533940fc69855114", + "fields": { + "ligne_5": "VARESSIA", + "code_commune_insee": "39021", + "libelle_d_acheminement": "LA CHAILLEUSE", + "code_postal": "39270", + "nom_de_la_commune": "LA CHAILLEUSE", + "coordonnees_gps": [ + 46.5722801296, + 5.52869424012 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52869424012, + 46.5722801296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "317d3da3dc11e42fbcab2c4c1d7e977c70a3c0aa", + "fields": { + "code_commune_insee": "39026", + "nom_de_la_commune": "AUGERANS", + "code_postal": "39380", + "coordonnees_gps": [ + 47.026326647, + 5.5838585111 + ], + "libelle_d_acheminement": "AUGERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5838585111, + 47.026326647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "557e0b07b374ab1d69f946e73ff49ade2a2ebe34", + "fields": { + "code_commune_insee": "39038", + "nom_de_la_commune": "BARESIA SUR L AIN", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5423863314, + 5.70324307586 + ], + "libelle_d_acheminement": "BARESIA SUR L AIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70324307586, + 46.5423863314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89f57ad10da83f658b5eb44233f58d30edeb70f5", + "fields": { + "code_commune_insee": "39039", + "nom_de_la_commune": "LA BARRE", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1570835686, + 5.6930067743 + ], + "libelle_d_acheminement": "LA BARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6930067743, + 47.1570835686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c695d308e54f11af0811660aab04b7567109b6aa", + "fields": { + "code_commune_insee": "39049", + "nom_de_la_commune": "BERSAILLIN", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8571794518, + 5.59533422537 + ], + "libelle_d_acheminement": "BERSAILLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59533422537, + 46.8571794518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d1c62842ca1b60a197061f45d6f70614e4b21b6", + "fields": { + "ligne_5": "LE BOUCHAUD", + "code_commune_insee": "39049", + "libelle_d_acheminement": "BERSAILLIN", + "code_postal": "39800", + "nom_de_la_commune": "BERSAILLIN", + "coordonnees_gps": [ + 46.8571794518, + 5.59533422537 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59533422537, + 46.8571794518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1de3ef63c26b0a1bb7761e0f7cea585067efe462", + "fields": { + "ligne_5": "LE VISENEY", + "code_commune_insee": "39049", + "libelle_d_acheminement": "BERSAILLIN", + "code_postal": "39800", + "nom_de_la_commune": "BERSAILLIN", + "coordonnees_gps": [ + 46.8571794518, + 5.59533422537 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59533422537, + 46.8571794518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ecb889f7b4e48b3e31122c2398bcc87325730a2", + "fields": { + "code_commune_insee": "39055", + "nom_de_la_commune": "BILLECUL", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7464177883, + 6.05640813471 + ], + "libelle_d_acheminement": "BILLECUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05640813471, + 46.7464177883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91576cc210b1be993d2e026545689883d8d5646e", + "fields": { + "code_commune_insee": "39059", + "nom_de_la_commune": "BOIS D AMONT", + "code_postal": "39220", + "coordonnees_gps": [ + 46.5361950227, + 6.1273377518 + ], + "libelle_d_acheminement": "BOIS D AMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1273377518, + 46.5361950227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a492f68e8441ca9563735faa5f58e2f95f483eb", + "fields": { + "code_commune_insee": "39065", + "nom_de_la_commune": "BONNEFONTAINE", + "code_postal": "39800", + "coordonnees_gps": [ + 46.731940278, + 5.74703212327 + ], + "libelle_d_acheminement": "BONNEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74703212327, + 46.731940278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2e2a0d9b25dc916c131f0814cadc687ecce5b05", + "fields": { + "code_commune_insee": "39078", + "nom_de_la_commune": "BREVANS", + "code_postal": "39100", + "coordonnees_gps": [ + 47.1007698445, + 5.52282272719 + ], + "libelle_d_acheminement": "BREVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52282272719, + 47.1007698445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aca88e4032433eac657ef7727b699c4deb5b55d", + "fields": { + "code_commune_insee": "39081", + "nom_de_la_commune": "BUVILLY", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8704853827, + 5.72629217171 + ], + "libelle_d_acheminement": "BUVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72629217171, + 46.8704853827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0a3b88c9f2d3a80d29934b468bad04aa9a2dce4", + "fields": { + "code_commune_insee": "39100", + "nom_de_la_commune": "CHAMPROUGIER", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8785635805, + 5.51298451513 + ], + "libelle_d_acheminement": "CHAMPROUGIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51298451513, + 46.8785635805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7c9f13494c19daf2f6ba04b81fee8c164f7610a", + "fields": { + "code_commune_insee": "39105", + "nom_de_la_commune": "CHAPOIS", + "code_postal": "39300", + "coordonnees_gps": [ + 46.8335678801, + 5.96598394958 + ], + "libelle_d_acheminement": "CHAPOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96598394958, + 46.8335678801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5add32243e5e1a887a7d57c55f786df0d75ff4e7", + "fields": { + "code_commune_insee": "39109", + "nom_de_la_commune": "CHAREZIER", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6145121643, + 5.72720293776 + ], + "libelle_d_acheminement": "CHAREZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72720293776, + 46.6145121643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c0b8070b934764554b71e3dd542984e731e7756", + "fields": { + "code_commune_insee": "39112", + "nom_de_la_commune": "LA CHASSAGNE", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8673225647, + 5.45469725641 + ], + "libelle_d_acheminement": "LA CHASSAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45469725641, + 46.8673225647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bdbe987c73444051a264b2b567433e05c84608f", + "fields": { + "code_commune_insee": "39119", + "nom_de_la_commune": "LE CHATELEY", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8795560182, + 5.54443854939 + ], + "libelle_d_acheminement": "LE CHATELEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54443854939, + 46.8795560182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fe9feb8f00ea40a95c93c7ce5b678a945eabc14", + "fields": { + "code_commune_insee": "39129", + "nom_de_la_commune": "CHAUX DES CROTENAY", + "code_postal": "39150", + "coordonnees_gps": [ + 46.6627966943, + 5.95679629516 + ], + "libelle_d_acheminement": "CHAUX DES CROTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95679629516, + 46.6627966943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b70ac251980d631a98b09f46b7325cc2611ae51", + "fields": { + "ligne_5": "VILLARD SUR BIENNE", + "code_commune_insee": "39130", + "libelle_d_acheminement": "NANCHEZ", + "code_postal": "39200", + "nom_de_la_commune": "NANCHEZ", + "coordonnees_gps": [ + 46.4998251911, + 5.8576069903 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8576069903, + 46.4998251911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca58b14dbed64272e0f65f0900e451320cc2b6df", + "fields": { + "ligne_5": "CEZIA", + "code_commune_insee": "39137", + "libelle_d_acheminement": "ST HYMETIERE SUR VALOUSE", + "code_postal": "39240", + "nom_de_la_commune": "ST HYMETIERE SUR VALOUSE", + "coordonnees_gps": [ + 46.3507935799, + 5.55838223354 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55838223354, + 46.3507935799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be63b0b9e790fea8fb1bdd3d13e23cc4722d26a2", + "fields": { + "code_commune_insee": "39138", + "nom_de_la_commune": "CHEMIN", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9769333115, + 5.31259454731 + ], + "libelle_d_acheminement": "CHEMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31259454731, + 46.9769333115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dacfb050f399889d89535f5ef8ff84254ba46ae6", + "fields": { + "code_commune_insee": "39162", + "nom_de_la_commune": "CONDAMINE", + "code_postal": "39570", + "coordonnees_gps": [ + 46.649905188, + 5.43493044694 + ], + "libelle_d_acheminement": "CONDAMINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43493044694, + 46.649905188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97667f1459ceb4a352eb80779cdd2b45fe16c5db", + "fields": { + "code_commune_insee": "39167", + "nom_de_la_commune": "COSGES", + "code_postal": "39140", + "coordonnees_gps": [ + 46.7469594031, + 5.39199282971 + ], + "libelle_d_acheminement": "COSGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39199282971, + 46.7469594031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a66e287a92c8cb7d3c5c782f4255ebb94f31b09", + "fields": { + "code_commune_insee": "39178", + "nom_de_la_commune": "CRANS", + "code_postal": "39300", + "coordonnees_gps": [ + 46.6951339522, + 5.98129931286 + ], + "libelle_d_acheminement": "CRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98129931286, + 46.6951339522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "509e66aed7d29dc59827fbc1652cc2f9b59de6ea", + "fields": { + "code_commune_insee": "39197", + "nom_de_la_commune": "DIGNA", + "code_postal": "39190", + "coordonnees_gps": [ + 46.5182419302, + 5.38565811964 + ], + "libelle_d_acheminement": "DIGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38565811964, + 46.5182419302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0a0c8a04527c392ea34232579fd06503dda9e14", + "fields": { + "ligne_5": "GOUX", + "code_commune_insee": "39198", + "libelle_d_acheminement": "DOLE", + "code_postal": "39100", + "nom_de_la_commune": "DOLE", + "coordonnees_gps": [ + 47.0755452538, + 5.50062446099 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50062446099, + 47.0755452538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b0e9a26dfa51c155f4776af9d0768bbaeb757e5", + "fields": { + "ligne_5": "BRERY", + "code_commune_insee": "39199", + "libelle_d_acheminement": "DOMBLANS", + "code_postal": "39230", + "nom_de_la_commune": "DOMBLANS", + "coordonnees_gps": [ + 46.7623690449, + 5.59000211082 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59000211082, + 46.7623690449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8128d7caa0f7cdae503a26e4a524eccabc0b90e8", + "fields": { + "code_commune_insee": "39202", + "nom_de_la_commune": "DOURNON", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9321643123, + 5.97063569174 + ], + "libelle_d_acheminement": "DOURNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97063569174, + 46.9321643123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc33aee2da4849ec7dbaffdeb4a4c81176a46107", + "fields": { + "code_commune_insee": "39204", + "nom_de_la_commune": "DRAMELAY", + "code_postal": "39240", + "coordonnees_gps": [ + 46.4042095252, + 5.53007674794 + ], + "libelle_d_acheminement": "DRAMELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53007674794, + 46.4042095252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79193c88b92121d0770b74b232361044bb379ddd", + "fields": { + "code_commune_insee": "39205", + "nom_de_la_commune": "ECLANS NENON", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1038743929, + 5.61210284808 + ], + "libelle_d_acheminement": "ECLANS NENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61210284808, + 47.1038743929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4986498a83642373d1cb3bc3468c8e99ebba4c91", + "fields": { + "code_commune_insee": "39207", + "nom_de_la_commune": "ECRILLE", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5022298608, + 5.63385105141 + ], + "libelle_d_acheminement": "ECRILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63385105141, + 46.5022298608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e9e3becedc1d2bd79890370b5c0d8a172b8ef29", + "fields": { + "code_commune_insee": "39208", + "nom_de_la_commune": "ENTRE DEUX MONTS", + "code_postal": "39150", + "coordonnees_gps": [ + 46.6418277764, + 5.96335061438 + ], + "libelle_d_acheminement": "ENTRE DEUX MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96335061438, + 46.6418277764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46cd65fdc815a51dd894f2269cc612a29014e56d", + "fields": { + "ligne_5": "NANTEY", + "code_commune_insee": "39209", + "libelle_d_acheminement": "VAL D EPY", + "code_postal": "39160", + "nom_de_la_commune": "VAL D EPY", + "coordonnees_gps": [ + 46.3756497717, + 5.39068206826 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39068206826, + 46.3756497717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeefda89776deabaf22e56a4a54cce719d1211f2", + "fields": { + "code_commune_insee": "39210", + "nom_de_la_commune": "EQUEVILLON", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7607810101, + 5.94097617099 + ], + "libelle_d_acheminement": "EQUEVILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94097617099, + 46.7607810101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0159f7a268182489315c4ed354c88891e15b27d5", + "fields": { + "code_commune_insee": "39222", + "nom_de_la_commune": "FAY EN MONTAGNE", + "code_postal": "39800", + "coordonnees_gps": [ + 46.7536361498, + 5.717409823 + ], + "libelle_d_acheminement": "FAY EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.717409823, + 46.7536361498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd7959f6b740b0ad35cd9b9378c43e9064b9114c", + "fields": { + "code_commune_insee": "39229", + "nom_de_la_commune": "FONTAINEBRUX", + "code_postal": "39140", + "coordonnees_gps": [ + 46.6967309951, + 5.43737795518 + ], + "libelle_d_acheminement": "FONTAINEBRUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43737795518, + 46.6967309951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba1b8a734732dab416bc23268472862b9381eb50", + "fields": { + "code_commune_insee": "39233", + "nom_de_la_commune": "FOUCHERANS", + "code_postal": "39100", + "coordonnees_gps": [ + 47.0856433661, + 5.44430100511 + ], + "libelle_d_acheminement": "FOUCHERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44430100511, + 47.0856433661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26cbbf185bb581c932a2cd54349e3492e7ca1aa3", + "fields": { + "code_commune_insee": "39234", + "nom_de_la_commune": "FOULENAY", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8608876918, + 5.48627803896 + ], + "libelle_d_acheminement": "FOULENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48627803896, + 46.8608876918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "009ff24cb0dabac87b25bab8497dfe8efcc0bbcd", + "fields": { + "code_commune_insee": "39249", + "nom_de_la_commune": "GERMIGNEY", + "code_postal": "39380", + "coordonnees_gps": [ + 47.0384440113, + 5.68614106484 + ], + "libelle_d_acheminement": "GERMIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68614106484, + 47.0384440113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d59734802ef3670865bf492e853ac55639b17da", + "fields": { + "code_commune_insee": "39254", + "nom_de_la_commune": "GILLOIS", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7301116843, + 6.03133695605 + ], + "libelle_d_acheminement": "GILLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03133695605, + 46.7301116843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83b63a5b19397e0cde6c4e00a08c9fc40c5a1cef", + "fields": { + "code_commune_insee": "39262", + "nom_de_la_commune": "GREDISANS", + "code_postal": "39290", + "coordonnees_gps": [ + 47.1627557383, + 5.51775930119 + ], + "libelle_d_acheminement": "GREDISANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51775930119, + 47.1627557383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d1a6b2d99136ed709c1509f76537b8d177c9b1a", + "fields": { + "code_commune_insee": "39263", + "nom_de_la_commune": "GROZON", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8897857608, + 5.69024153964 + ], + "libelle_d_acheminement": "GROZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69024153964, + 46.8897857608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06d8b27fd21607f1635bafd3987616a7da7f213d", + "fields": { + "code_commune_insee": "39270", + "nom_de_la_commune": "JOUHE", + "code_postal": "39100", + "coordonnees_gps": [ + 47.1398982403, + 5.48513402798 + ], + "libelle_d_acheminement": "JOUHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48513402798, + 47.1398982403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cc48e83f692779151f07720512c1b887f7bba81", + "fields": { + "code_commune_insee": "39277", + "nom_de_la_commune": "LE LARDERET", + "code_postal": "39300", + "coordonnees_gps": [ + 46.8187727556, + 5.94601155483 + ], + "libelle_d_acheminement": "LE LARDERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94601155483, + 46.8187727556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94d67cbaa522ebf1a3cc63e2519807d0a5d42930", + "fields": { + "code_commune_insee": "39280", + "nom_de_la_commune": "LARRIVOIRE", + "code_postal": "39360", + "coordonnees_gps": [ + 46.338478336, + 5.78818524543 + ], + "libelle_d_acheminement": "LARRIVOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78818524543, + 46.338478336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "332beb1efeba4eb2eb908b25729c17e0febde0d7", + "fields": { + "code_commune_insee": "39281", + "nom_de_la_commune": "LE LATET", + "code_postal": "39300", + "coordonnees_gps": [ + 46.8031363333, + 5.94173064599 + ], + "libelle_d_acheminement": "LE LATET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94173064599, + 46.8031363333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "054d081075761390c59c33b707134876d4170282", + "fields": { + "code_commune_insee": "39282", + "nom_de_la_commune": "LA LATETTE", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7518875591, + 6.09572549131 + ], + "libelle_d_acheminement": "LA LATETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09572549131, + 46.7518875591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "692a9f139cd33459e48ffe61edb8b6c9ca962008", + "fields": { + "code_commune_insee": "39288", + "nom_de_la_commune": "LAVIGNY", + "code_postal": "39210", + "coordonnees_gps": [ + 46.717011316, + 5.60517764784 + ], + "libelle_d_acheminement": "LAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60517764784, + 46.717011316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75b744ce98d632ad6b7c38a0db2ca367f6a0f146", + "fields": { + "ligne_5": "VOUGLANS", + "code_commune_insee": "39289", + "libelle_d_acheminement": "LECT", + "code_postal": "39260", + "nom_de_la_commune": "LECT", + "coordonnees_gps": [ + 46.3941077641, + 5.67259916552 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67259916552, + 46.3941077641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "424149fc9793044bdd2871ef65be81499ba20cb3", + "fields": { + "ligne_5": "LEGNA", + "code_commune_insee": "39290", + "libelle_d_acheminement": "VALZIN EN PETITE MONTAGNE", + "code_postal": "39240", + "nom_de_la_commune": "VALZIN EN PETITE MONTAGNE", + "coordonnees_gps": [ + 46.4245328121, + 5.60694899546 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60694899546, + 46.4245328121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c832c21759f410418bfd571d5d8535eec92093b0", + "fields": { + "code_commune_insee": "39292", + "nom_de_la_commune": "LENT", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7512558093, + 5.97544232672 + ], + "libelle_d_acheminement": "LENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97544232672, + 46.7512558093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d044edf68c3e7f5c58bc568ee172339cd56430c5", + "fields": { + "code_commune_insee": "39306", + "nom_de_la_commune": "MACORNAY", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6419396973, + 5.54481097353 + ], + "libelle_d_acheminement": "MACORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54481097353, + 46.6419396973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "731546c2b9dd6b960d8717a259f43279a18640e7", + "fields": { + "code_commune_insee": "39314", + "nom_de_la_commune": "MARNEZIA", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5759787765, + 5.63640981929 + ], + "libelle_d_acheminement": "MARNEZIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63640981929, + 46.5759787765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa8e3475e8f4a3ce84dfc80e029847a1fdee624f", + "fields": { + "code_commune_insee": "39322", + "nom_de_la_commune": "MENETRUX EN JOUX", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6239722837, + 5.83804866069 + ], + "libelle_d_acheminement": "MENETRUX EN JOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83804866069, + 46.6239722837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d51dbf442b12f0512ac1bff6cfb74a65d50cc47", + "fields": { + "code_commune_insee": "39324", + "nom_de_la_commune": "MERONA", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5535338267, + 5.63571799156 + ], + "libelle_d_acheminement": "MERONA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63571799156, + 46.5535338267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b5280c21aeaec4ca21ffff8911a5d8b871e5514", + "fields": { + "code_commune_insee": "39329", + "nom_de_la_commune": "MIEGES", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7873509128, + 6.04198451361 + ], + "libelle_d_acheminement": "MIEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04198451361, + 46.7873509128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7607ee24323241c72d5e74acd06276c1e360204f", + "fields": { + "ligne_5": "ESSERVAL COMBE", + "code_commune_insee": "39329", + "libelle_d_acheminement": "MIEGES", + "code_postal": "39250", + "nom_de_la_commune": "MIEGES", + "coordonnees_gps": [ + 46.7873509128, + 6.04198451361 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04198451361, + 46.7873509128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a40f9f66df8a63d2b5bcb3a083332b68f6e4e06f", + "fields": { + "code_commune_insee": "39331", + "nom_de_la_commune": "MIGNOVILLARD", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7758072369, + 6.14394186083 + ], + "libelle_d_acheminement": "MIGNOVILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14394186083, + 46.7758072369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53b6447aaa8532916b6271907bbb372afe180605", + "fields": { + "code_commune_insee": "39335", + "nom_de_la_commune": "MOISSEY", + "code_postal": "39290", + "coordonnees_gps": [ + 47.1885329382, + 5.53230467086 + ], + "libelle_d_acheminement": "MOISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53230467086, + 47.1885329382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e866c2dceaddfff076aa32dd3087175500724787", + "fields": { + "code_commune_insee": "39337", + "nom_de_la_commune": "MOLAMBOZ", + "code_postal": "39600", + "coordonnees_gps": [ + 46.951688723, + 5.68053538603 + ], + "libelle_d_acheminement": "MOLAMBOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68053538603, + 46.951688723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f71a53825b632eda34c883f4693e6511083b0c5", + "fields": { + "code_commune_insee": "39350", + "nom_de_la_commune": "MONTBARREY", + "code_postal": "39380", + "coordonnees_gps": [ + 47.0202426909, + 5.63748762259 + ], + "libelle_d_acheminement": "MONTBARREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63748762259, + 47.0202426909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82b9f9279928a2ccc4d763c15b80d866fb4dedd3", + "fields": { + "code_commune_insee": "39351", + "nom_de_la_commune": "MONTCUSEL", + "code_postal": "39260", + "coordonnees_gps": [ + 46.3561612254, + 5.66451408505 + ], + "libelle_d_acheminement": "MONTCUSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66451408505, + 46.3561612254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f1b92c79d247c347b4a9c9f39c308b756dc35d3", + "fields": { + "code_commune_insee": "39354", + "nom_de_la_commune": "MONTHOLIER", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8945272746, + 5.63902103167 + ], + "libelle_d_acheminement": "MONTHOLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63902103167, + 46.8945272746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a752f0c0eac22037acf38a631820d9ad86557c9", + "fields": { + "code_commune_insee": "39355", + "nom_de_la_commune": "MONTIGNY LES ARSURES", + "code_postal": "39600", + "coordonnees_gps": [ + 46.9378384103, + 5.77619784355 + ], + "libelle_d_acheminement": "MONTIGNY LES ARSURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77619784355, + 46.9378384103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68c99274b921b8793b546d8cda1f2178b488945a", + "fields": { + "ligne_5": "CHAZELLES", + "code_commune_insee": "39378", + "libelle_d_acheminement": "LES TROIS CHATEAUX", + "code_postal": "39160", + "nom_de_la_commune": "LES TROIS CHATEAUX", + "coordonnees_gps": [ + 46.4197619267, + 5.34914344308 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34914344308, + 46.4197619267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0be2071c7dff58012db949fc8c9fac6b1bd9ea9c", + "fields": { + "ligne_5": "NANC LES ST AMOUR", + "code_commune_insee": "39378", + "libelle_d_acheminement": "LES TROIS CHATEAUX", + "code_postal": "39160", + "nom_de_la_commune": "LES TROIS CHATEAUX", + "coordonnees_gps": [ + 46.4197619267, + 5.34914344308 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34914344308, + 46.4197619267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01552ed81c9b3060cd1b80fa96fb7151571b3171", + "fields": { + "ligne_5": "ABERGEMENT ST JEAN", + "code_commune_insee": "39385", + "libelle_d_acheminement": "NEUBLANS ABERGEMENT", + "code_postal": "39120", + "nom_de_la_commune": "NEUBLANS ABERGEMENT", + "coordonnees_gps": [ + 46.9040741283, + 5.33914629457 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33914629457, + 46.9040741283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fb601b123e26a0a4f8e90b4144ba7273005f386", + "fields": { + "code_commune_insee": "39386", + "nom_de_la_commune": "NEUVILLEY", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8935992116, + 5.59976240857 + ], + "libelle_d_acheminement": "NEUVILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59976240857, + 46.8935992116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5108788bfdc3890871b268f20b408935c508e5ff", + "fields": { + "code_commune_insee": "39389", + "nom_de_la_commune": "NEY", + "code_postal": "39300", + "coordonnees_gps": [ + 46.733302634, + 5.88549194483 + ], + "libelle_d_acheminement": "NEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88549194483, + 46.733302634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e61c874713031be6c738963fe05b101a8b43c44", + "fields": { + "code_commune_insee": "39391", + "nom_de_la_commune": "NOZEROY", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7701820347, + 6.03611938375 + ], + "libelle_d_acheminement": "NOZEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03611938375, + 46.7701820347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11d5bea22ce44e23a54d32b4448817431b4f69fe", + "fields": { + "code_commune_insee": "39396", + "nom_de_la_commune": "ORCHAMPS", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1540318861, + 5.66771529859 + ], + "libelle_d_acheminement": "ORCHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66771529859, + 47.1540318861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "422dd0f73fa186d9f0391f42ebef6a070d054b15", + "fields": { + "code_commune_insee": "39397", + "nom_de_la_commune": "ORGELET", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5063359095, + 5.62225313092 + ], + "libelle_d_acheminement": "ORGELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62225313092, + 46.5063359095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3f38b77a4d0abc61707387392015bf001feca6b", + "fields": { + "ligne_5": "SEZERIA", + "code_commune_insee": "39397", + "libelle_d_acheminement": "ORGELET", + "code_postal": "39270", + "nom_de_la_commune": "ORGELET", + "coordonnees_gps": [ + 46.5063359095, + 5.62225313092 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62225313092, + 46.5063359095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0e2b172cbc741f6e89673638d7cb1c3f48129a9", + "fields": { + "code_commune_insee": "39398", + "nom_de_la_commune": "OUGNEY", + "code_postal": "39350", + "coordonnees_gps": [ + 47.2407071845, + 5.65989069882 + ], + "libelle_d_acheminement": "OUGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65989069882, + 47.2407071845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c5c6b8b0d60e8748e9f21c7fcfbeb3469ec011c", + "fields": { + "code_commune_insee": "39402", + "nom_de_la_commune": "PAGNEY", + "code_postal": "39350", + "coordonnees_gps": [ + 47.250391991, + 5.69969673686 + ], + "libelle_d_acheminement": "PAGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69969673686, + 47.250391991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56fcaefa729dfce9cc21c889e88d58bb8f0595e9", + "fields": { + "code_commune_insee": "39412", + "nom_de_la_commune": "PESEUX", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9935199025, + 5.36641787398 + ], + "libelle_d_acheminement": "PESEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36641787398, + 46.9935199025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac4ca8ade391219ea0cd1c1e3f64eae1e88fcfa8", + "fields": { + "code_commune_insee": "39413", + "nom_de_la_commune": "LA PESSE", + "code_postal": "39370", + "coordonnees_gps": [ + 46.286468541, + 5.85238812673 + ], + "libelle_d_acheminement": "LA PESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85238812673, + 46.286468541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9564540ed7087899d9393f4402454e0b07346353", + "fields": { + "code_commune_insee": "39419", + "nom_de_la_commune": "PILLEMOINE", + "code_postal": "39300", + "coordonnees_gps": [ + 46.703904732, + 5.90805136913 + ], + "libelle_d_acheminement": "PILLEMOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90805136913, + 46.703904732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "743ec4eacca38c96676962ac87f79fc969861f17", + "fields": { + "code_commune_insee": "39421", + "nom_de_la_commune": "LE PIN", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7080786364, + 5.56997582613 + ], + "libelle_d_acheminement": "LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56997582613, + 46.7080786364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d9098e4988f34dd3dade9bb8dbdd2214cd261b2", + "fields": { + "ligne_5": "LA DOYE", + "code_commune_insee": "39441", + "libelle_d_acheminement": "PREMANON", + "code_postal": "39400", + "nom_de_la_commune": "PREMANON", + "coordonnees_gps": [ + 46.4538422377, + 6.03492977371 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03492977371, + 46.4538422377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e91b5dc93233849d80eae347982b4444d1580bd1", + "fields": { + "code_commune_insee": "39445", + "nom_de_la_commune": "PUBLY", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6295899553, + 5.65124745442 + ], + "libelle_d_acheminement": "PUBLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65124745442, + 46.6295899553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "511d065dfacada275742f08da40ffe805a48ec83", + "fields": { + "code_commune_insee": "39451", + "nom_de_la_commune": "RANCHOT", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1593990404, + 5.71910019081 + ], + "libelle_d_acheminement": "RANCHOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71910019081, + 47.1593990404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0124dcda6d61daefc5ebc1f304d9b330ed1eec41", + "fields": { + "code_commune_insee": "39452", + "nom_de_la_commune": "RANS", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1379973135, + 5.71557221033 + ], + "libelle_d_acheminement": "RANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71557221033, + 47.1379973135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db4def297da4f461b0702637eb1cb16f66e94791", + "fields": { + "code_commune_insee": "39453", + "nom_de_la_commune": "RAVILLOLES", + "code_postal": "39170", + "coordonnees_gps": [ + 46.4339212341, + 5.80032186037 + ], + "libelle_d_acheminement": "RAVILLOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80032186037, + 46.4339212341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18430cae92a5da918e9fde827e1c3489d8028b78", + "fields": { + "code_commune_insee": "39460", + "nom_de_la_commune": "LA RIXOUSE", + "code_postal": "39200", + "coordonnees_gps": [ + 46.4680659486, + 5.87063416847 + ], + "libelle_d_acheminement": "LA RIXOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87063416847, + 46.4680659486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4acbb4048d35126a4a38e59ca9c7ebecc253bd03", + "fields": { + "code_commune_insee": "39466", + "nom_de_la_commune": "ROSAY", + "code_postal": "39190", + "coordonnees_gps": [ + 46.5343336422, + 5.45282636433 + ], + "libelle_d_acheminement": "ROSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45282636433, + 46.5343336422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf0d646196a6740db3057f6adf87a01e6d6e5ce1", + "fields": { + "code_commune_insee": "39467", + "nom_de_la_commune": "ROTALIER", + "code_postal": "39190", + "coordonnees_gps": [ + 46.5832064756, + 5.47700815924 + ], + "libelle_d_acheminement": "ROTALIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47700815924, + 46.5832064756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fd3e0908868f8af18062d36c0c8761abfadd50a", + "fields": { + "code_commune_insee": "39469", + "nom_de_la_commune": "ROUFFANGE", + "code_postal": "39350", + "coordonnees_gps": [ + 47.2263565979, + 5.70867477091 + ], + "libelle_d_acheminement": "ROUFFANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70867477091, + 47.2263565979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "353bc09b9258644af5b3665e44bbb62d0db9666f", + "fields": { + "code_commune_insee": "39480", + "nom_de_la_commune": "ST DIDIER", + "code_postal": "39570", + "coordonnees_gps": [ + 46.7082790966, + 5.51275222992 + ], + "libelle_d_acheminement": "ST DIDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51275222992, + 46.7082790966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f7b38210f7d60815cf5be5d261d44475c07ecd8", + "fields": { + "code_commune_insee": "39486", + "nom_de_la_commune": "ST LAMAIN", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8042039085, + 5.59805956986 + ], + "libelle_d_acheminement": "ST LAMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59805956986, + 46.8042039085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11ef33a01a865bd817119e7dcc943ed24b18f789", + "fields": { + "ligne_5": "CUTTURA", + "code_commune_insee": "39491", + "libelle_d_acheminement": "COTEAUX DU LIZON", + "code_postal": "39170", + "nom_de_la_commune": "COTEAUX DU LIZON", + "coordonnees_gps": [ + 46.4096809138, + 5.7860900246 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7860900246, + 46.4096809138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47d8837e306e6d16e3d75f1640304e09efa250d0", + "fields": { + "code_commune_insee": "39492", + "nom_de_la_commune": "ST MAUR", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6068663882, + 5.5959464108 + ], + "libelle_d_acheminement": "ST MAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5959464108, + 46.6068663882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c84a1ed4f65c3a2b01ac51ff647d07967e6e961f", + "fields": { + "code_commune_insee": "39494", + "nom_de_la_commune": "ST PIERRE", + "code_postal": "39150", + "coordonnees_gps": [ + 46.5683636515, + 5.90301429491 + ], + "libelle_d_acheminement": "ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90301429491, + 46.5683636515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7983829bdf2a426d90e21257b086828ab96dbf5", + "fields": { + "code_commune_insee": "39500", + "nom_de_la_commune": "SALINS LES BAINS", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9478351925, + 5.89762240995 + ], + "libelle_d_acheminement": "SALINS LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89762240995, + 46.9478351925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c281fae164d91df928cf75346f82676061c1addb", + "fields": { + "code_commune_insee": "39505", + "nom_de_la_commune": "SAUGEOT", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6037434659, + 5.82427975186 + ], + "libelle_d_acheminement": "SAUGEOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82427975186, + 46.6037434659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e0de1ca4b96dd2b3153508481e01bfd88199499", + "fields": { + "code_commune_insee": "39507", + "nom_de_la_commune": "SELIGNEY", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9441078421, + 5.54072749866 + ], + "libelle_d_acheminement": "SELIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54072749866, + 46.9441078421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "588980a669510c4a9bf8db9f246b94178ad85f0a", + "fields": { + "code_commune_insee": "39513", + "nom_de_la_commune": "SERMANGE", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1972336994, + 5.64802600593 + ], + "libelle_d_acheminement": "SERMANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64802600593, + 47.1972336994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ef16d286cedd992d537172e84abc50860e4967e", + "fields": { + "code_commune_insee": "39520", + "nom_de_la_commune": "SOUVANS", + "code_postal": "39380", + "coordonnees_gps": [ + 46.9790356987, + 5.55350631285 + ], + "libelle_d_acheminement": "SOUVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55350631285, + 46.9790356987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4b3832428c36dd97c2afccca6d7d56e05b9cb74", + "fields": { + "code_commune_insee": "39540", + "nom_de_la_commune": "VALEMPOULIERES", + "code_postal": "39300", + "coordonnees_gps": [ + 46.8281892664, + 5.87420654933 + ], + "libelle_d_acheminement": "VALEMPOULIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87420654933, + 46.8281892664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4a8d95000b4d46dc8bab23bdfc334c8128faccd", + "fields": { + "code_commune_insee": "39547", + "nom_de_la_commune": "VAUX LES ST CLAUDE", + "code_postal": "39360", + "coordonnees_gps": [ + 46.354121477, + 5.73284459773 + ], + "libelle_d_acheminement": "VAUX LES ST CLAUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73284459773, + 46.354121477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3ffdf6d71604c5cf45bbc208a4a534799fb5d15", + "fields": { + "code_commune_insee": "39551", + "nom_de_la_commune": "VERIA", + "code_postal": "39160", + "coordonnees_gps": [ + 46.4578080563, + 5.42219614387 + ], + "libelle_d_acheminement": "VERIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42219614387, + 46.4578080563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cf106b6da8224c367f9245864eff090a9eb4ec7", + "fields": { + "code_commune_insee": "39553", + "nom_de_la_commune": "LE VERNOIS", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7320324635, + 5.59406809872 + ], + "libelle_d_acheminement": "LE VERNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59406809872, + 46.7320324635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43a1f4fab239d91a03888f452f46f94d195fff22", + "fields": { + "code_commune_insee": "39555", + "nom_de_la_commune": "VERS SOUS SELLIERES", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8243900195, + 5.52600045116 + ], + "libelle_d_acheminement": "VERS SOUS SELLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52600045116, + 46.8243900195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75172d7a14a110b24ec2deb0e9ebb0fedab20955", + "fields": { + "code_commune_insee": "39558", + "nom_de_la_commune": "VEVY", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6664465955, + 5.66350133684 + ], + "libelle_d_acheminement": "VEVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66350133684, + 46.6664465955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e8c5eda2a54352c8c7d63c45747dac2b97cf3ca", + "fields": { + "code_commune_insee": "39571", + "nom_de_la_commune": "VILLERS ROBERT", + "code_postal": "39120", + "coordonnees_gps": [ + 46.967058004, + 5.5201774249 + ], + "libelle_d_acheminement": "VILLERS ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5201774249, + 46.967058004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c025f997a39ab024503f8ee8ed56a7fd6351dfcd", + "fields": { + "code_commune_insee": "39574", + "nom_de_la_commune": "VILLEVIEUX", + "code_postal": "39140", + "coordonnees_gps": [ + 46.7279455221, + 5.44793336275 + ], + "libelle_d_acheminement": "VILLEVIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44793336275, + 46.7279455221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e1f996708c60b8e119d22d9ac1b78c90d0fb7db", + "fields": { + "code_commune_insee": "39575", + "nom_de_la_commune": "LE VILLEY", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8482451972, + 5.507416249 + ], + "libelle_d_acheminement": "LE VILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.507416249, + 46.8482451972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f41613ded09033f35b7e33768d8aa2b08545721", + "fields": { + "ligne_5": "FROIDEVILLE", + "code_commune_insee": "39577", + "libelle_d_acheminement": "VINCENT FROIDEVILLE", + "code_postal": "39230", + "nom_de_la_commune": "VINCENT FROIDEVILLE", + "coordonnees_gps": [ + 46.787754383, + 5.48243275672 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48243275672, + 46.787754383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f6c5b8d36b0219c6bb65022b3e85bb9f81651c3", + "fields": { + "ligne_5": "VINCENT", + "code_commune_insee": "39577", + "libelle_d_acheminement": "VINCENT FROIDEVILLE", + "code_postal": "39230", + "nom_de_la_commune": "VINCENT FROIDEVILLE", + "coordonnees_gps": [ + 46.787754383, + 5.48243275672 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48243275672, + 46.787754383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aeb8216e469a9570bd33450f835d5e8f078e96f", + "fields": { + "code_commune_insee": "39585", + "nom_de_la_commune": "VULVOZ", + "code_postal": "39360", + "coordonnees_gps": [ + 46.321205129, + 5.78533983995 + ], + "libelle_d_acheminement": "VULVOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78533983995, + 46.321205129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "782a8502c81c3b714084201c3f18ee9f75896b2d", + "fields": { + "code_commune_insee": "40005", + "nom_de_la_commune": "ARBOUCAVE", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6059261585, + -0.44174435794 + ], + "libelle_d_acheminement": "ARBOUCAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44174435794, + 43.6059261585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce68b2d9ca263bf137f53310fbd39262571f855c", + "fields": { + "code_commune_insee": "40006", + "nom_de_la_commune": "ARENGOSSE", + "code_postal": "40110", + "coordonnees_gps": [ + 44.0337772733, + -0.787351703043 + ], + "libelle_d_acheminement": "ARENGOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.787351703043, + 44.0337772733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6392d99eecac8a6e2cfeba474686504333496732", + "fields": { + "code_commune_insee": "40008", + "nom_de_la_commune": "ARGELOUSE", + "code_postal": "40430", + "coordonnees_gps": [ + 44.3719794818, + -0.63279226034 + ], + "libelle_d_acheminement": "ARGELOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63279226034, + 44.3719794818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "446087ed4e2e4c452a6693f3d7be2b100ecf5014", + "fields": { + "code_commune_insee": "40011", + "nom_de_la_commune": "ARSAGUE", + "code_postal": "40330", + "coordonnees_gps": [ + 43.5819217189, + -0.789693590118 + ], + "libelle_d_acheminement": "ARSAGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.789693590118, + 43.5819217189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b81d68cf29eda697bb1fd796b6c32a5496636a5b", + "fields": { + "code_commune_insee": "40013", + "nom_de_la_commune": "ARTHEZ D ARMAGNAC", + "code_postal": "40190", + "coordonnees_gps": [ + 43.8904301026, + -0.247231913663 + ], + "libelle_d_acheminement": "ARTHEZ D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.247231913663, + 43.8904301026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93909dbabc73f0cf86becc5085b69187889c80d5", + "fields": { + "code_commune_insee": "40030", + "nom_de_la_commune": "BAUDIGNAN", + "code_postal": "40310", + "coordonnees_gps": [ + 44.0882703511, + 0.0392870669549 + ], + "libelle_d_acheminement": "BAUDIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0392870669549, + 44.0882703511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90ac74c01f39e1b5b7cabba9e320b31e0f8e0cfc", + "fields": { + "code_commune_insee": "40036", + "nom_de_la_commune": "BENESSE MAREMNE", + "code_postal": "40230", + "coordonnees_gps": [ + 43.6346135825, + -1.36478553572 + ], + "libelle_d_acheminement": "BENESSE MAREMNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36478553572, + 43.6346135825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cb13c88ba3d86ea30c5b208ead6e94fa6f38dcb", + "fields": { + "code_commune_insee": "40038", + "nom_de_la_commune": "BERGOUEY", + "code_postal": "40250", + "coordonnees_gps": [ + 43.6679426448, + -0.722927453879 + ], + "libelle_d_acheminement": "BERGOUEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.722927453879, + 43.6679426448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3da68adee39a4f7a64f53320897036ee831096d6", + "fields": { + "code_commune_insee": "40049", + "nom_de_la_commune": "BORDERES ET LAMENSANS", + "code_postal": "40270", + "coordonnees_gps": [ + 43.7774896377, + -0.361022812651 + ], + "libelle_d_acheminement": "BORDERES ET LAMENSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.361022812651, + 43.7774896377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d8494631a310af70c790883c2b4010f62e62585", + "fields": { + "code_commune_insee": "40051", + "nom_de_la_commune": "BOUGUE", + "code_postal": "40090", + "coordonnees_gps": [ + 43.9036504711, + -0.398154002649 + ], + "libelle_d_acheminement": "BOUGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.398154002649, + 43.9036504711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58afe3fe7820f066f38c09fde3a95c4a8d0eca86", + "fields": { + "code_commune_insee": "40054", + "nom_de_la_commune": "BRASSEMPOUY", + "code_postal": "40330", + "coordonnees_gps": [ + 43.6312997727, + -0.701734631643 + ], + "libelle_d_acheminement": "BRASSEMPOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.701734631643, + 43.6312997727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0849cc6fa5a376b58198d13ad1980e859340600", + "fields": { + "code_commune_insee": "40057", + "nom_de_la_commune": "BUANES", + "code_postal": "40320", + "coordonnees_gps": [ + 43.7151108086, + -0.422669583311 + ], + "libelle_d_acheminement": "BUANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.422669583311, + 43.7151108086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53143f2dda647c9f8a6d5ac68f82df706fa1ed15", + "fields": { + "code_commune_insee": "40058", + "nom_de_la_commune": "CACHEN", + "code_postal": "40120", + "coordonnees_gps": [ + 44.0795116386, + -0.417533535024 + ], + "libelle_d_acheminement": "CACHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.417533535024, + 44.0795116386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5fc2eb1ca5da4d061206a02f6af87225fc2a3c3", + "fields": { + "code_commune_insee": "40068", + "nom_de_la_commune": "CASSEN", + "code_postal": "40380", + "coordonnees_gps": [ + 43.7598934223, + -0.86548740659 + ], + "libelle_d_acheminement": "CASSEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.86548740659, + 43.7598934223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24970c3ce951b5b614bcb3718718f59bf6599aa2", + "fields": { + "code_commune_insee": "40075", + "nom_de_la_commune": "CASTETS", + "code_postal": "40260", + "coordonnees_gps": [ + 43.87403966, + -1.14528108058 + ], + "libelle_d_acheminement": "CASTETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14528108058, + 43.87403966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "362274fcbe2da8fbba58035b4fab5a6a38c34fb2", + "fields": { + "code_commune_insee": "40077", + "nom_de_la_commune": "CAUNEILLE", + "code_postal": "40300", + "coordonnees_gps": [ + 43.5612550673, + -1.0641894945 + ], + "libelle_d_acheminement": "CAUNEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0641894945, + 43.5612550673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ad5359d5443b5ba9d1b7167a611cf4118700085", + "fields": { + "code_commune_insee": "40078", + "nom_de_la_commune": "CAUPENNE", + "code_postal": "40250", + "coordonnees_gps": [ + 43.6842932274, + -0.754439006059 + ], + "libelle_d_acheminement": "CAUPENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.754439006059, + 43.6842932274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f76cc90af222936aa029e51f9af496b2e862f397", + "fields": { + "code_commune_insee": "40081", + "nom_de_la_commune": "CERE", + "code_postal": "40090", + "coordonnees_gps": [ + 43.9953544159, + -0.546512240784 + ], + "libelle_d_acheminement": "CERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.546512240784, + 43.9953544159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f96e6fe0c9abb28d0247e40da18eddf8ec88bead", + "fields": { + "code_commune_insee": "40085", + "nom_de_la_commune": "COMMENSACQ", + "code_postal": "40210", + "coordonnees_gps": [ + 44.2128891183, + -0.830607602619 + ], + "libelle_d_acheminement": "COMMENSACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.830607602619, + 44.2128891183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e32b44cdf0b51d0639cc311b5df920431dbe99e", + "fields": { + "code_commune_insee": "40087", + "nom_de_la_commune": "CREON D ARMAGNAC", + "code_postal": "40240", + "coordonnees_gps": [ + 43.9952890631, + -0.0829196527802 + ], + "libelle_d_acheminement": "CREON D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0829196527802, + 43.9952890631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c661ae548f2ce65495bbbb6333265575c871915f", + "fields": { + "code_commune_insee": "40088", + "nom_de_la_commune": "DAX", + "code_postal": "40100", + "coordonnees_gps": [ + 43.7006746973, + -1.06014429759 + ], + "libelle_d_acheminement": "DAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06014429759, + 43.7006746973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9983cc1f9d68fdc0c1102feb5a2f3649a68596a", + "fields": { + "code_commune_insee": "40113", + "nom_de_la_commune": "GOOS", + "code_postal": "40180", + "coordonnees_gps": [ + 43.729775958, + -0.916998152375 + ], + "libelle_d_acheminement": "GOOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.916998152375, + 43.729775958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29d92cfc1fdc5e6f662ca03ddf3d6eb55bbbeb90", + "fields": { + "code_commune_insee": "40115", + "nom_de_la_commune": "GOUSSE", + "code_postal": "40465", + "coordonnees_gps": [ + 43.7741412631, + -0.909077594702 + ], + "libelle_d_acheminement": "GOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.909077594702, + 43.7741412631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5a9af36f5ce253394c8af3603a87159903b79dc", + "fields": { + "code_commune_insee": "40116", + "nom_de_la_commune": "GOUTS", + "code_postal": "40400", + "coordonnees_gps": [ + 43.7784036794, + -0.77835350511 + ], + "libelle_d_acheminement": "GOUTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.77835350511, + 43.7784036794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ded1656f4820f4ffd4017d96346e702e75c2be9c", + "fields": { + "code_commune_insee": "40118", + "nom_de_la_commune": "HABAS", + "code_postal": "40290", + "coordonnees_gps": [ + 43.5613150777, + -0.932453413286 + ], + "libelle_d_acheminement": "HABAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.932453413286, + 43.5613150777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f8432e2ed6bbe970bd12e62cad778b543b54587", + "fields": { + "code_commune_insee": "40119", + "nom_de_la_commune": "HAGETMAU", + "code_postal": "40700", + "coordonnees_gps": [ + 43.6504279428, + -0.590576524806 + ], + "libelle_d_acheminement": "HAGETMAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.590576524806, + 43.6504279428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d9cd4331103c0af425225d52df0bcb5ae68011b", + "fields": { + "code_commune_insee": "40127", + "nom_de_la_commune": "HONTANX", + "code_postal": "40190", + "coordonnees_gps": [ + 43.815442383, + -0.26010710402 + ], + "libelle_d_acheminement": "HONTANX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26010710402, + 43.815442383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "910bf829bcc16b3c5b5d46e9677913061635f651", + "fields": { + "code_commune_insee": "40129", + "nom_de_la_commune": "JOSSE", + "code_postal": "40230", + "coordonnees_gps": [ + 43.6448421155, + -1.23659908302 + ], + "libelle_d_acheminement": "JOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23659908302, + 43.6448421155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28fede07317827149bfbd0d49baa5aa27eb72609", + "fields": { + "code_commune_insee": "40130", + "nom_de_la_commune": "LABASTIDE CHALOSSE", + "code_postal": "40700", + "coordonnees_gps": [ + 43.6151282559, + -0.607305517839 + ], + "libelle_d_acheminement": "LABASTIDE CHALOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.607305517839, + 43.6151282559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57cbf898db81b9b5bfbf02608c43a6db821507ab", + "fields": { + "code_commune_insee": "40131", + "nom_de_la_commune": "LABASTIDE D ARMAGNAC", + "code_postal": "40240", + "coordonnees_gps": [ + 43.9476376722, + -0.17524551528 + ], + "libelle_d_acheminement": "LABASTIDE D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17524551528, + 43.9476376722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "037bbaaf6f7dcb35f9fb62dc4d6a53ee60c61af4", + "fields": { + "code_commune_insee": "40134", + "nom_de_la_commune": "LABOUHEYRE", + "code_postal": "40210", + "coordonnees_gps": [ + 44.2202753645, + -0.906919616539 + ], + "libelle_d_acheminement": "LABOUHEYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.906919616539, + 44.2202753645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce5a06e89c1779953eacd0068eec7da946130f3c", + "fields": { + "code_commune_insee": "40145", + "nom_de_la_commune": "LARRIVIERE ST SAVIN", + "code_postal": "40270", + "coordonnees_gps": [ + 43.7552492766, + -0.424559880021 + ], + "libelle_d_acheminement": "LARRIVIERE ST SAVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.424559880021, + 43.7552492766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23278c4441f0611b1b5984b5f19002a93a7e578e", + "fields": { + "code_commune_insee": "40153", + "nom_de_la_commune": "LE LEUY", + "code_postal": "40250", + "coordonnees_gps": [ + 43.8190060423, + -0.652363549526 + ], + "libelle_d_acheminement": "LE LEUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.652363549526, + 43.8190060423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c913989961df36eb6f0dd8b99c7bd61405a890b", + "fields": { + "code_commune_insee": "40155", + "nom_de_la_commune": "LINXE", + "code_postal": "40260", + "coordonnees_gps": [ + 43.9292438732, + -1.21865314425 + ], + "libelle_d_acheminement": "LINXE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21865314425, + 43.9292438732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e586520693cc149a8854f63d0098c81fadc64146", + "fields": { + "code_commune_insee": "40156", + "nom_de_la_commune": "LIPOSTHEY", + "code_postal": "40410", + "coordonnees_gps": [ + 44.3085319978, + -0.885914043691 + ], + "libelle_d_acheminement": "LIPOSTHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.885914043691, + 44.3085319978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b892a432535a78db7aa15d9d27439cba66a45ffb", + "fields": { + "code_commune_insee": "40158", + "nom_de_la_commune": "LOSSE", + "code_postal": "40240", + "coordonnees_gps": [ + 44.09500776, + -0.0901039836208 + ], + "libelle_d_acheminement": "LOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0901039836208, + 44.09500776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45538bbfa62e4292c9394eda16dea5da1e876931", + "fields": { + "code_commune_insee": "40165", + "nom_de_la_commune": "LUGLON", + "code_postal": "40630", + "coordonnees_gps": [ + 44.083457314, + -0.724837867165 + ], + "libelle_d_acheminement": "LUGLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.724837867165, + 44.083457314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95c880c5c977454d3bf872d13863a0a5629403b7", + "fields": { + "code_commune_insee": "40166", + "nom_de_la_commune": "LUSSAGNET", + "code_postal": "40270", + "coordonnees_gps": [ + 43.774245256, + -0.232415581474 + ], + "libelle_d_acheminement": "LUSSAGNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.232415581474, + 43.774245256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cdf6d0f1bdcb8a409e88ef5771a42c194457599", + "fields": { + "code_commune_insee": "40177", + "nom_de_la_commune": "MAYLIS", + "code_postal": "40250", + "coordonnees_gps": [ + 43.693003181, + -0.700079393802 + ], + "libelle_d_acheminement": "MAYLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.700079393802, + 43.693003181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f121cad0e2142a9bd2632091d6b66d8094fbd4cc", + "fields": { + "code_commune_insee": "40193", + "nom_de_la_commune": "MONTEGUT", + "code_postal": "40190", + "coordonnees_gps": [ + 43.8736591774, + -0.204038258587 + ], + "libelle_d_acheminement": "MONTEGUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.204038258587, + 43.8736591774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d35322fb446baa737cc353a0b7ffb8578f16d058", + "fields": { + "code_commune_insee": "40200", + "nom_de_la_commune": "MOUSTEY", + "code_postal": "40410", + "coordonnees_gps": [ + 44.3882918763, + -0.750880080586 + ], + "libelle_d_acheminement": "MOUSTEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.750880080586, + 44.3882918763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "947e5427a0442b258fd38900af64b94bf0ee628b", + "fields": { + "code_commune_insee": "40219", + "nom_de_la_commune": "PAYROS CAZAUTETS", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6256324466, + -0.398159744539 + ], + "libelle_d_acheminement": "PAYROS CAZAUTETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.398159744539, + 43.6256324466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1b9662d6915f0cb04f2278182d91829bde6d3f3", + "fields": { + "code_commune_insee": "40235", + "nom_de_la_commune": "POYANNE", + "code_postal": "40380", + "coordonnees_gps": [ + 43.7536761163, + -0.815720310969 + ], + "libelle_d_acheminement": "POYANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.815720310969, + 43.7536761163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a0d7329ebbcd740314beb1ba9111c64fdc34cd3", + "fields": { + "code_commune_insee": "40242", + "nom_de_la_commune": "RIMBEZ ET BAUDIETS", + "code_postal": "40310", + "coordonnees_gps": [ + 44.0564510689, + 0.0490737699359 + ], + "libelle_d_acheminement": "RIMBEZ ET BAUDIETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0490737699359, + 44.0564510689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ec57fa6d52a08d574c55b039ab49bf042cfb893", + "fields": { + "code_commune_insee": "40243", + "nom_de_la_commune": "RION DES LANDES", + "code_postal": "40370", + "coordonnees_gps": [ + 43.9348192825, + -0.933954728483 + ], + "libelle_d_acheminement": "RION DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.933954728483, + 43.9348192825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4998de041b542c65fe293d46b98228822031be1f", + "fields": { + "code_commune_insee": "40247", + "nom_de_la_commune": "ST AGNET", + "code_postal": "40800", + "coordonnees_gps": [ + 43.605692176, + -0.271537689033 + ], + "libelle_d_acheminement": "ST AGNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.271537689033, + 43.605692176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c042019274c09f50048a2dea252d40d4ac9c88ab", + "fields": { + "code_commune_insee": "40248", + "nom_de_la_commune": "ST ANDRE DE SEIGNANX", + "code_postal": "40390", + "coordonnees_gps": [ + 43.5655733874, + -1.35841255114 + ], + "libelle_d_acheminement": "ST ANDRE DE SEIGNANX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35841255114, + 43.5655733874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dc39029d9e3c0ac9067e35bcd73c0c418ac958a", + "fields": { + "code_commune_insee": "40253", + "nom_de_la_commune": "ST CRICQ CHALOSSE", + "code_postal": "40700", + "coordonnees_gps": [ + 43.6542973883, + -0.676258119211 + ], + "libelle_d_acheminement": "ST CRICQ CHALOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.676258119211, + 43.6542973883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7ad3aa487b6fa991044923274184fd1e045273e", + "fields": { + "code_commune_insee": "40255", + "nom_de_la_commune": "ST CRICQ VILLENEUVE", + "code_postal": "40190", + "coordonnees_gps": [ + 43.9004132095, + -0.350052068781 + ], + "libelle_d_acheminement": "ST CRICQ VILLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.350052068781, + 43.9004132095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1d579e31ebd4156c537df978bf0b678cb1a7558", + "fields": { + "code_commune_insee": "40262", + "nom_de_la_commune": "ST GOR", + "code_postal": "40120", + "coordonnees_gps": [ + 44.0704357947, + -0.23554160647 + ], + "libelle_d_acheminement": "ST GOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.23554160647, + 44.0704357947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e1c7d36d2874868a23c349149ad71306f4366d3", + "fields": { + "code_commune_insee": "40264", + "nom_de_la_commune": "ST JEAN DE MARSACQ", + "code_postal": "40230", + "coordonnees_gps": [ + 43.6185869716, + -1.26201301334 + ], + "libelle_d_acheminement": "ST JEAN DE MARSACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26201301334, + 43.6185869716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cebfe5c6409dfae66836918cac0665396f62014c", + "fields": { + "code_commune_insee": "40268", + "nom_de_la_commune": "ST LAURENT DE GOSSE", + "code_postal": "40390", + "coordonnees_gps": [ + 43.5213103938, + -1.28404719869 + ], + "libelle_d_acheminement": "ST LAURENT DE GOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28404719869, + 43.5213103938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7afc96e8aac8b0ab9750afa3a94a1e5256ba430b", + "fields": { + "code_commune_insee": "40269", + "nom_de_la_commune": "ST LON LES MINES", + "code_postal": "40300", + "coordonnees_gps": [ + 43.6208174786, + -1.13368115341 + ], + "libelle_d_acheminement": "ST LON LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13368115341, + 43.6208174786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce1e7502a120db6f4c2d3eafc299d21885348a42", + "fields": { + "code_commune_insee": "40282", + "nom_de_la_commune": "ST SEVER", + "code_postal": "40500", + "coordonnees_gps": [ + 43.7612851719, + -0.566351543475 + ], + "libelle_d_acheminement": "ST SEVER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.566351543475, + 43.7612851719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ae1b672c2b7658122131a24da522104e8ec707f", + "fields": { + "code_commune_insee": "40283", + "nom_de_la_commune": "ST VINCENT DE PAUL", + "code_postal": "40990", + "coordonnees_gps": [ + 43.7664540568, + -1.00192615246 + ], + "libelle_d_acheminement": "ST VINCENT DE PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00192615246, + 43.7664540568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea7bebb7912c30e64975f65e5631580b65e6a07d", + "fields": { + "code_commune_insee": "40286", + "nom_de_la_commune": "SAMADET", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6301574528, + -0.49120862479 + ], + "libelle_d_acheminement": "SAMADET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.49120862479, + 43.6301574528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4463d6d8fda353f0cbaad61f8e1e7cac263f9bcb", + "fields": { + "code_commune_insee": "40288", + "nom_de_la_commune": "SARBAZAN", + "code_postal": "40120", + "coordonnees_gps": [ + 44.0138235777, + -0.311945706682 + ], + "libelle_d_acheminement": "SARBAZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.311945706682, + 44.0138235777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67972140a78860967fa5d72a3da49cf20ced8493", + "fields": { + "code_commune_insee": "40298", + "nom_de_la_commune": "SERRES GASTON", + "code_postal": "40700", + "coordonnees_gps": [ + 43.6658680832, + -0.522780253556 + ], + "libelle_d_acheminement": "SERRES GASTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.522780253556, + 43.6658680832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41d90f20018eb18b2a23da04b0f7a6ba7fca7228", + "fields": { + "code_commune_insee": "40317", + "nom_de_la_commune": "TOSSE", + "code_postal": "40230", + "coordonnees_gps": [ + 43.6978170443, + -1.31723387155 + ], + "libelle_d_acheminement": "TOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31723387155, + 43.6978170443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72428264c4fd2dfc59b84679e940987a3db89782", + "fields": { + "code_commune_insee": "40324", + "nom_de_la_commune": "VICQ D AURIBAT", + "code_postal": "40380", + "coordonnees_gps": [ + 43.7846724276, + -0.857341971227 + ], + "libelle_d_acheminement": "VICQ D AURIBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.857341971227, + 43.7846724276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2777f02934093336d477cd56cf6f80bc8a9dceef", + "fields": { + "code_commune_insee": "40325", + "nom_de_la_commune": "VIELLE TURSAN", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6846565155, + -0.463470521413 + ], + "libelle_d_acheminement": "VIELLE TURSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.463470521413, + 43.6846565155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e0438edcdefae7e73e528d5d098c960c79a4d31", + "fields": { + "code_commune_insee": "40326", + "nom_de_la_commune": "VIELLE ST GIRONS", + "code_postal": "40560", + "coordonnees_gps": [ + 43.9395837379, + -1.32552380465 + ], + "libelle_d_acheminement": "VIELLE ST GIRONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32552380465, + 43.9395837379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e014548eeb19773a49e9cf0496bcae346f1d6dc9", + "fields": { + "ligne_5": "ST GIRONS", + "code_commune_insee": "40326", + "libelle_d_acheminement": "VIELLE ST GIRONS", + "code_postal": "40560", + "nom_de_la_commune": "VIELLE ST GIRONS", + "coordonnees_gps": [ + 43.9395837379, + -1.32552380465 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32552380465, + 43.9395837379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f9a26337f5cf5c540f4cbac8453e9646182d0b3", + "fields": { + "code_commune_insee": "41002", + "nom_de_la_commune": "ANGE", + "code_postal": "41400", + "coordonnees_gps": [ + 47.3165186023, + 1.23978157464 + ], + "libelle_d_acheminement": "ANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23978157464, + 47.3165186023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "141d6f00f1f1d8fd9815dba80d963a535c2f3b98", + "fields": { + "code_commune_insee": "41009", + "nom_de_la_commune": "AVERDON", + "code_postal": "41330", + "coordonnees_gps": [ + 47.6855459731, + 1.30138038275 + ], + "libelle_d_acheminement": "AVERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30138038275, + 47.6855459731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "136466bc36c097ce14cd2855d8ce33275e36558a", + "fields": { + "code_commune_insee": "41010", + "nom_de_la_commune": "AZE", + "code_postal": "41100", + "coordonnees_gps": [ + 47.8570277979, + 0.997062059366 + ], + "libelle_d_acheminement": "AZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.997062059366, + 47.8570277979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b09e9ec4c8f7698762d4bdb714979011de7b9be9", + "fields": { + "code_commune_insee": "41018", + "nom_de_la_commune": "BLOIS", + "code_postal": "41000", + "coordonnees_gps": [ + 47.5817013938, + 1.30625551583 + ], + "libelle_d_acheminement": "BLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30625551583, + 47.5817013938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5aae383cc60ebeaba0bdf34d212aac9182ced15b", + "fields": { + "code_commune_insee": "41024", + "nom_de_la_commune": "BOURSAY", + "code_postal": "41270", + "coordonnees_gps": [ + 48.0187748619, + 0.989150549999 + ], + "libelle_d_acheminement": "BOURSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.989150549999, + 48.0187748619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "742ff1735fb11ec41bd02d69f5810ba365376d95", + "fields": { + "code_commune_insee": "41026", + "nom_de_la_commune": "BREVAINVILLE", + "code_postal": "41160", + "coordonnees_gps": [ + 47.9489615518, + 1.26872113426 + ], + "libelle_d_acheminement": "BREVAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26872113426, + 47.9489615518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c388b407ba139a71cedf71387928476e489d0ba", + "fields": { + "code_commune_insee": "41030", + "nom_de_la_commune": "CELLE", + "code_postal": "41360", + "coordonnees_gps": [ + 47.8306173002, + 0.796511873772 + ], + "libelle_d_acheminement": "CELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.796511873772, + 47.8306173002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "464db8c04d52eb8ced03b886ae6a52a53dc98c4a", + "fields": { + "code_commune_insee": "41036", + "nom_de_la_commune": "CHAON", + "code_postal": "41600", + "coordonnees_gps": [ + 47.6121257976, + 2.162800504 + ], + "libelle_d_acheminement": "CHAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.162800504, + 47.6121257976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4987ae39774d53d00c60a1ba0ca0953071c86892", + "fields": { + "code_commune_insee": "41037", + "nom_de_la_commune": "LA CHAPELLE ENCHERIE", + "code_postal": "41290", + "coordonnees_gps": [ + 47.8261991313, + 1.21209183111 + ], + "libelle_d_acheminement": "LA CHAPELLE ENCHERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21209183111, + 47.8261991313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf847cd98cf85575daedac26e738707c10fa223d", + "fields": { + "code_commune_insee": "41038", + "nom_de_la_commune": "LA CHAPELLE MONTMARTIN", + "code_postal": "41320", + "coordonnees_gps": [ + 47.2591135701, + 1.75167253244 + ], + "libelle_d_acheminement": "LA CHAPELLE MONTMARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75167253244, + 47.2591135701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c06a22681c4fe117b7c16e744fc36d4e5179de16", + "fields": { + "code_commune_insee": "41039", + "nom_de_la_commune": "LA CHAPELLE ST MARTIN EN PLAINE", + "code_postal": "41500", + "coordonnees_gps": [ + 47.7330590404, + 1.41192253742 + ], + "libelle_d_acheminement": "LA CHAPELLE ST MARTIN EN PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41192253742, + 47.7330590404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6dcab1cede974eedba872b9b4b63349c79c43d5", + "fields": { + "code_commune_insee": "41043", + "nom_de_la_commune": "CHATILLON SUR CHER", + "code_postal": "41130", + "coordonnees_gps": [ + 47.2867451592, + 1.48367796005 + ], + "libelle_d_acheminement": "CHATILLON SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48367796005, + 47.2867451592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e59e84b885de01264c48ba01d3ba102124712a8e", + "fields": { + "code_commune_insee": "41052", + "nom_de_la_commune": "CHITENAY", + "code_postal": "41120", + "coordonnees_gps": [ + 47.4910846499, + 1.36717520033 + ], + "libelle_d_acheminement": "CHITENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36717520033, + 47.4910846499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36cb8fa63677e937f6e1c25b76748ee142bfee14", + "fields": { + "ligne_5": "CHOUZY SUR CISSE", + "code_commune_insee": "41055", + "libelle_d_acheminement": "VALLOIRE SUR CISSE", + "code_postal": "41150", + "nom_de_la_commune": "VALLOIRE SUR CISSE", + "coordonnees_gps": [ + 47.5244470983, + 1.23897400473 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23897400473, + 47.5244470983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fef268ef51eae1d351ca7415e72bb03be52a49bb", + "fields": { + "ligne_5": "SEILLAC", + "code_commune_insee": "41055", + "libelle_d_acheminement": "VALLOIRE SUR CISSE", + "code_postal": "41150", + "nom_de_la_commune": "VALLOIRE SUR CISSE", + "coordonnees_gps": [ + 47.5244470983, + 1.23897400473 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23897400473, + 47.5244470983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b3df87bbd3bd0e9f3fd6c4579171ffc3d059016", + "fields": { + "code_commune_insee": "41058", + "nom_de_la_commune": "CONCRIERS", + "code_postal": "41370", + "coordonnees_gps": [ + 47.7777377144, + 1.48251808287 + ], + "libelle_d_acheminement": "CONCRIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48251808287, + 47.7777377144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae4401bef44ff0ad1b64c70c8cfa15676bb60da1", + "fields": { + "ligne_5": "THENAY", + "code_commune_insee": "41059", + "libelle_d_acheminement": "LE CONTROIS EN SOLOGNE", + "code_postal": "41400", + "nom_de_la_commune": "LE CONTROIS EN SOLOGNE", + "coordonnees_gps": [ + 47.4210455026, + 1.43621364655 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43621364655, + 47.4210455026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aee32a8150e1074e33e70b0b86129660cfe9b2b9", + "fields": { + "ligne_5": "TREHET", + "code_commune_insee": "41070", + "libelle_d_acheminement": "VALLEE DE RONSARD", + "code_postal": "41800", + "nom_de_la_commune": "VALLEE DE RONSARD", + "coordonnees_gps": [ + 47.7491446758, + 0.685596092581 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.685596092581, + 47.7491446758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70c3f5089afe5caadf7647e5ed75f441a378ac37", + "fields": { + "code_commune_insee": "41073", + "nom_de_la_commune": "DANZE", + "code_postal": "41160", + "coordonnees_gps": [ + 47.9075675981, + 1.01369296158 + ], + "libelle_d_acheminement": "DANZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01369296158, + 47.9075675981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10c71dd6c50f608f0973b56173e4edc2d23217ce", + "fields": { + "code_commune_insee": "41077", + "nom_de_la_commune": "EPIAIS", + "code_postal": "41290", + "coordonnees_gps": [ + 47.8125696504, + 1.25048989277 + ], + "libelle_d_acheminement": "EPIAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25048989277, + 47.8125696504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55c0aa73791caac1936ec6857bdb9927d6540fd0", + "fields": { + "code_commune_insee": "41088", + "nom_de_la_commune": "FONTAINE RAOUL", + "code_postal": "41270", + "coordonnees_gps": [ + 47.9744723154, + 1.13493872934 + ], + "libelle_d_acheminement": "FONTAINE RAOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13493872934, + 47.9744723154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9d6006866f162167c4a6411a4a6e41051fe4ac5", + "fields": { + "code_commune_insee": "41093", + "nom_de_la_commune": "FRANCAY", + "code_postal": "41190", + "coordonnees_gps": [ + 47.6178643296, + 1.10778289349 + ], + "libelle_d_acheminement": "FRANCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10778289349, + 47.6178643296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ff551dda96ef023265d3e8b481e6dd51fa7407c", + "fields": { + "code_commune_insee": "41099", + "nom_de_la_commune": "GY EN SOLOGNE", + "code_postal": "41230", + "coordonnees_gps": [ + 47.3414775908, + 1.59439346887 + ], + "libelle_d_acheminement": "GY EN SOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59439346887, + 47.3414775908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48d7d1854c139f2bbb8a0eaa12aa75f0c05d9266", + "fields": { + "code_commune_insee": "41104", + "nom_de_la_commune": "HUISSEAU SUR COSSON", + "code_postal": "41350", + "coordonnees_gps": [ + 47.5946124012, + 1.45427249126 + ], + "libelle_d_acheminement": "HUISSEAU SUR COSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45427249126, + 47.5946124012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d8c6fc01ca281d1e6821001ad13270cbf018bef", + "fields": { + "code_commune_insee": "41105", + "nom_de_la_commune": "JOSNES", + "code_postal": "41370", + "coordonnees_gps": [ + 47.791916148, + 1.53206628064 + ], + "libelle_d_acheminement": "JOSNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53206628064, + 47.791916148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "893523a21a650cb67139e412421a0a2cf858c1a4", + "fields": { + "code_commune_insee": "41110", + "nom_de_la_commune": "LANGON SUR CHER", + "code_postal": "41320", + "coordonnees_gps": [ + 47.3082253246, + 1.83872499965 + ], + "libelle_d_acheminement": "LANGON SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83872499965, + 47.3082253246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1db3aa1f9fb7848090034b8c05f2a6d266c7404", + "fields": { + "code_commune_insee": "41119", + "nom_de_la_commune": "LORGES", + "code_postal": "41370", + "coordonnees_gps": [ + 47.8211948112, + 1.49873755779 + ], + "libelle_d_acheminement": "LORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49873755779, + 47.8211948112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d375bf18ba89a72f31e175df4588c32b1983ba26", + "fields": { + "code_commune_insee": "41129", + "nom_de_la_commune": "MASLIVES", + "code_postal": "41250", + "coordonnees_gps": [ + 47.6329050849, + 1.48289377715 + ], + "libelle_d_acheminement": "MASLIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48289377715, + 47.6329050849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e32381cdf42b044eb0942bd8ff5f46bfa4fbaa0b", + "fields": { + "ligne_5": "MOLINEUF", + "code_commune_insee": "41142", + "libelle_d_acheminement": "VALENCISSE", + "code_postal": "41190", + "nom_de_la_commune": "VALENCISSE", + "coordonnees_gps": [ + 47.5802707156, + 1.22561710259 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22561710259, + 47.5802707156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d9a2cf708c73801fde1797e337e1991b61ff916", + "fields": { + "code_commune_insee": "41148", + "nom_de_la_commune": "MONTLIVAULT", + "code_postal": "41350", + "coordonnees_gps": [ + 47.6359771926, + 1.44589857808 + ], + "libelle_d_acheminement": "MONTLIVAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44589857808, + 47.6359771926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c83ea668b7c107e7babf87b1266045127d534dfa", + "fields": { + "code_commune_insee": "41166", + "nom_de_la_commune": "OISLY", + "code_postal": "41700", + "coordonnees_gps": [ + 47.3944986004, + 1.37611606492 + ], + "libelle_d_acheminement": "OISLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37611606492, + 47.3944986004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbc413460bf774371058209c74e17259845bf489", + "fields": { + "ligne_5": "VEUVES", + "code_commune_insee": "41167", + "libelle_d_acheminement": "VEUZAIN SUR LOIRE", + "code_postal": "41150", + "nom_de_la_commune": "VEUZAIN SUR LOIRE", + "coordonnees_gps": [ + 47.5123997667, + 1.16507315908 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16507315908, + 47.5123997667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a6582aa584af4e0eae77c46e058d9cc12c9e79b", + "fields": { + "code_commune_insee": "41168", + "nom_de_la_commune": "ORCAY", + "code_postal": "41300", + "coordonnees_gps": [ + 47.3052212436, + 2.12165116654 + ], + "libelle_d_acheminement": "ORCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12165116654, + 47.3052212436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1b17f3c0afc821dad836854c786179c326e8a05", + "fields": { + "ligne_5": "OUCQUES", + "code_commune_insee": "41171", + "libelle_d_acheminement": "OUCQUES LA NOUVELLE", + "code_postal": "41290", + "nom_de_la_commune": "OUCQUES LA NOUVELLE", + "coordonnees_gps": [ + 47.8191691674, + 1.29908240443 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29908240443, + 47.8191691674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d42d2e6cfff32176fd5d483b6db82d8a2e76fc72", + "fields": { + "code_commune_insee": "41174", + "nom_de_la_commune": "PERIGNY", + "code_postal": "41100", + "coordonnees_gps": [ + 47.7509656602, + 1.15035370714 + ], + "libelle_d_acheminement": "PERIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15035370714, + 47.7509656602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ac70bc730acb995f4170b644f8c81ddef5ab708", + "fields": { + "code_commune_insee": "41177", + "nom_de_la_commune": "LE PLESSIS DORIN", + "code_postal": "41170", + "coordonnees_gps": [ + 48.0884605817, + 0.861585224185 + ], + "libelle_d_acheminement": "LE PLESSIS DORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.861585224185, + 48.0884605817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fa98fc928f96eb7b7b2b73935d15a8eba39cb05", + "fields": { + "code_commune_insee": "41178", + "nom_de_la_commune": "LE PLESSIS L ECHELLE", + "code_postal": "41370", + "coordonnees_gps": [ + 47.8112764958, + 1.42478155888 + ], + "libelle_d_acheminement": "LE PLESSIS L ECHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42478155888, + 47.8112764958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d010ff67c8c9d6662b3f8c99184ee17ca0ac11b0", + "fields": { + "code_commune_insee": "41187", + "nom_de_la_commune": "RENAY", + "code_postal": "41100", + "coordonnees_gps": [ + 47.8392110621, + 1.17285657827 + ], + "libelle_d_acheminement": "RENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17285657827, + 47.8392110621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5297637d5e900ee015249de7ea40389534337a40", + "fields": { + "code_commune_insee": "41188", + "nom_de_la_commune": "RHODON", + "code_postal": "41290", + "coordonnees_gps": [ + 47.7544339274, + 1.2671219497 + ], + "libelle_d_acheminement": "RHODON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2671219497, + 47.7544339274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fecac7efe54a6f9eaeaa0a1774ee964d3ff60ca5", + "fields": { + "code_commune_insee": "41191", + "nom_de_la_commune": "ROCHES", + "code_postal": "41370", + "coordonnees_gps": [ + 47.7943892917, + 1.45364994644 + ], + "libelle_d_acheminement": "ROCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45364994644, + 47.7943892917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fd6000a864f4e8e2d48b85674c9ec7660c17a1e", + "fields": { + "code_commune_insee": "41200", + "nom_de_la_commune": "STE ANNE", + "code_postal": "41100", + "coordonnees_gps": [ + 47.7590221575, + 1.08301309316 + ], + "libelle_d_acheminement": "STE ANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08301309316, + 47.7590221575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcb55cdf6c1550ec3c2fac3ecd43990c2fb35537", + "fields": { + "code_commune_insee": "41201", + "nom_de_la_commune": "ST ARNOULT", + "code_postal": "41800", + "coordonnees_gps": [ + 47.7074785599, + 0.869606203276 + ], + "libelle_d_acheminement": "ST ARNOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.869606203276, + 47.7074785599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a3084e045ab2552899a6c0b0c12fb47b6f5e68f", + "fields": { + "code_commune_insee": "41206", + "nom_de_la_commune": "ST DENIS SUR LOIRE", + "code_postal": "41000", + "coordonnees_gps": [ + 47.6337713111, + 1.37369539893 + ], + "libelle_d_acheminement": "ST DENIS SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37369539893, + 47.6337713111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a402f42c581628f45cee0a70843423dbf659f2c", + "fields": { + "code_commune_insee": "41212", + "nom_de_la_commune": "ST GERVAIS LA FORET", + "code_postal": "41350", + "coordonnees_gps": [ + 47.5607456407, + 1.36138962511 + ], + "libelle_d_acheminement": "ST GERVAIS LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36138962511, + 47.5607456407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "200be593ceb1711b33603a2bd762edc19022c4c7", + "fields": { + "code_commune_insee": "41214", + "nom_de_la_commune": "ST HILAIRE LA GRAVELLE", + "code_postal": "41160", + "coordonnees_gps": [ + 47.931232261, + 1.18263470311 + ], + "libelle_d_acheminement": "ST HILAIRE LA GRAVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18263470311, + 47.931232261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3769333d53d3ef66516a1208e07cbbb87560fbe4", + "fields": { + "code_commune_insee": "41215", + "nom_de_la_commune": "ST JACQUES DES GUERETS", + "code_postal": "41800", + "coordonnees_gps": [ + 47.766301423, + 0.790395766895 + ], + "libelle_d_acheminement": "ST JACQUES DES GUERETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.790395766895, + 47.766301423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfb31daa4a1d6e1a4ec51cd0cbf60f2a6790e872", + "fields": { + "code_commune_insee": "41216", + "nom_de_la_commune": "ST JEAN FROIDMENTEL", + "code_postal": "41160", + "coordonnees_gps": [ + 47.9615429305, + 1.21005272695 + ], + "libelle_d_acheminement": "ST JEAN FROIDMENTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21005272695, + 47.9615429305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f080e37c58fc7dc995eea59305d7f7b80dfff67a", + "fields": { + "code_commune_insee": "41218", + "nom_de_la_commune": "ST JULIEN SUR CHER", + "code_postal": "41320", + "coordonnees_gps": [ + 47.266322353, + 1.77970795893 + ], + "libelle_d_acheminement": "ST JULIEN SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77970795893, + 47.266322353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0a96d1a81a2fe999cbdfa272010e3b79a2d7996", + "fields": { + "code_commune_insee": "41219", + "nom_de_la_commune": "ST LAURENT DES BOIS", + "code_postal": "41240", + "coordonnees_gps": [ + 47.8584857447, + 1.46351980095 + ], + "libelle_d_acheminement": "ST LAURENT DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46351980095, + 47.8584857447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f47ef7847db71702ade37b97967084afcd998beb", + "fields": { + "code_commune_insee": "41221", + "nom_de_la_commune": "ST LEONARD EN BEAUCE", + "code_postal": "41370", + "coordonnees_gps": [ + 47.8234026259, + 1.36495808434 + ], + "libelle_d_acheminement": "ST LEONARD EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36495808434, + 47.8234026259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f123ccf288819e12a64eeb498959eba0d7fbf70b", + "fields": { + "code_commune_insee": "41223", + "nom_de_la_commune": "ST LUBIN EN VERGONNOIS", + "code_postal": "41190", + "coordonnees_gps": [ + 47.6173686118, + 1.2119692197 + ], + "libelle_d_acheminement": "ST LUBIN EN VERGONNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2119692197, + 47.6173686118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad5d6114af6325022226722d99db6b64d886407b", + "fields": { + "code_commune_insee": "41233", + "nom_de_la_commune": "SAMBIN", + "code_postal": "41120", + "coordonnees_gps": [ + 47.4324580301, + 1.27722712969 + ], + "libelle_d_acheminement": "SAMBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27722712969, + 47.4324580301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "960a7b0d6fda820a1690a006ac36e33869f5de1d", + "fields": { + "code_commune_insee": "41236", + "nom_de_la_commune": "SASNIERES", + "code_postal": "41310", + "coordonnees_gps": [ + 47.720161352, + 0.921027740309 + ], + "libelle_d_acheminement": "SASNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.921027740309, + 47.720161352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73dbacb1a77cfc0dd37823d402c864142c5255b6", + "fields": { + "code_commune_insee": "41239", + "nom_de_la_commune": "SEIGY", + "code_postal": "41110", + "coordonnees_gps": [ + 47.2536329104, + 1.3822063371 + ], + "libelle_d_acheminement": "SEIGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3822063371, + 47.2536329104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a768e2fd3a862265e93a74e9a2fd6a0f322950c", + "fields": { + "code_commune_insee": "41242", + "nom_de_la_commune": "SELLES SUR CHER", + "code_postal": "41130", + "coordonnees_gps": [ + 47.2776447687, + 1.56387082496 + ], + "libelle_d_acheminement": "SELLES SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56387082496, + 47.2776447687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9d0229e6437ed58ed158370b8ba6def3cca86bd", + "fields": { + "ligne_5": "SOUDAY", + "code_commune_insee": "41248", + "libelle_d_acheminement": "COUETRON AU PERCHE", + "code_postal": "41170", + "nom_de_la_commune": "COUETRON AU PERCHE", + "coordonnees_gps": [ + 48.0447092121, + 0.846594759389 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.846594759389, + 48.0447092121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d786ecc7b871f6968db262415e9ec20bc344e96b", + "fields": { + "code_commune_insee": "41251", + "nom_de_la_commune": "SOUVIGNY EN SOLOGNE", + "code_postal": "41600", + "coordonnees_gps": [ + 47.6491986207, + 2.16743831481 + ], + "libelle_d_acheminement": "SOUVIGNY EN SOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16743831481, + 47.6491986207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5db7744ad62db80aef4815ed737765355272e27c", + "fields": { + "code_commune_insee": "41265", + "nom_de_la_commune": "TROO", + "code_postal": "41800", + "coordonnees_gps": [ + 47.788753217, + 0.778673124197 + ], + "libelle_d_acheminement": "TROO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.778673124197, + 47.788753217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5487f1b5911a64fb46070715dc05fa6a762dcc40", + "fields": { + "code_commune_insee": "41279", + "nom_de_la_commune": "VILLEDIEU LE CHATEAU", + "code_postal": "41800", + "coordonnees_gps": [ + 47.7145584824, + 0.640231512213 + ], + "libelle_d_acheminement": "VILLEDIEU LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.640231512213, + 47.7145584824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ad8043797f24d287ae6a43feb187989a0981e93", + "fields": { + "code_commune_insee": "41289", + "nom_de_la_commune": "VILLERMAIN", + "code_postal": "41240", + "coordonnees_gps": [ + 47.8593158315, + 1.53203800155 + ], + "libelle_d_acheminement": "VILLERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53203800155, + 47.8593158315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f67842189aad937ed5b53b09afdb7839326fd4d5", + "fields": { + "code_commune_insee": "41293", + "nom_de_la_commune": "VILLIERSFAUX", + "code_postal": "41100", + "coordonnees_gps": [ + 47.7456821504, + 0.981092856048 + ], + "libelle_d_acheminement": "VILLIERSFAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.981092856048, + 47.7456821504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dc5d82422e7ca76d8629f6f6fdf77214591e2fe", + "fields": { + "code_commune_insee": "41294", + "nom_de_la_commune": "VILLIERS SUR LOIR", + "code_postal": "41100", + "coordonnees_gps": [ + 47.8095517796, + 0.997400046062 + ], + "libelle_d_acheminement": "VILLIERS SUR LOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.997400046062, + 47.8095517796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f2452428fd74db4729c98762b3bbf5f6a133510", + "fields": { + "code_commune_insee": "41296", + "nom_de_la_commune": "VOUZON", + "code_postal": "41600", + "coordonnees_gps": [ + 47.6431910467, + 2.04960919519 + ], + "libelle_d_acheminement": "VOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04960919519, + 47.6431910467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19a96e5e4bd259d8da643a33f340468ebf9237c7", + "fields": { + "code_commune_insee": "42006", + "nom_de_la_commune": "APINAC", + "code_postal": "42550", + "coordonnees_gps": [ + 45.3913756385, + 3.99457780325 + ], + "libelle_d_acheminement": "APINAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99457780325, + 45.3913756385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "534286f9cb76b8e46bb304aded1f21b42d877e99", + "fields": { + "code_commune_insee": "42008", + "nom_de_la_commune": "ARCON", + "code_postal": "42370", + "coordonnees_gps": [ + 46.0086270746, + 3.86961031415 + ], + "libelle_d_acheminement": "ARCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86961031415, + 46.0086270746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6a751ee93732bc6d40c04b831f8b9e518a5c366", + "fields": { + "code_commune_insee": "42013", + "nom_de_la_commune": "BELLEGARDE EN FOREZ", + "code_postal": "42210", + "coordonnees_gps": [ + 45.6408137826, + 4.30888510025 + ], + "libelle_d_acheminement": "BELLEGARDE EN FOREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30888510025, + 45.6408137826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c5d2889d14f354ec6be1dff5a5a2cd564b637d7", + "fields": { + "code_commune_insee": "42015", + "nom_de_la_commune": "BELMONT DE LA LOIRE", + "code_postal": "42670", + "coordonnees_gps": [ + 46.1622604253, + 4.35026085349 + ], + "libelle_d_acheminement": "BELMONT DE LA LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35026085349, + 46.1622604253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdfdfe86e87462d328fceb9b9eeafe8a4ac17748", + "fields": { + "code_commune_insee": "42016", + "nom_de_la_commune": "LA BENISSON DIEU", + "code_postal": "42720", + "coordonnees_gps": [ + 46.1590458728, + 4.04769279694 + ], + "libelle_d_acheminement": "LA BENISSON DIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04769279694, + 46.1590458728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "036ec3c934ec26298b5b6635863733d1212cf6e8", + "fields": { + "code_commune_insee": "42020", + "nom_de_la_commune": "BOISSET LES MONTROND", + "code_postal": "42210", + "coordonnees_gps": [ + 45.6250619213, + 4.2076229179 + ], + "libelle_d_acheminement": "BOISSET LES MONTROND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2076229179, + 45.6250619213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3d1d6733dced98816303ec90589ac1639256c2d", + "fields": { + "code_commune_insee": "42022", + "nom_de_la_commune": "BONSON", + "code_postal": "42160", + "coordonnees_gps": [ + 45.5220857407, + 4.22151504235 + ], + "libelle_d_acheminement": "BONSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22151504235, + 45.5220857407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2870d999faae1d67fc49926d647f4bbbf67a438c", + "fields": { + "code_commune_insee": "42028", + "nom_de_la_commune": "BURDIGNES", + "code_postal": "42220", + "coordonnees_gps": [ + 45.2639294858, + 4.55951022656 + ], + "libelle_d_acheminement": "BURDIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55951022656, + 45.2639294858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c92cc5e8129a77ef0db3c0cd7286b8b824c7c14", + "fields": { + "code_commune_insee": "42030", + "nom_de_la_commune": "BUSSY ALBIEUX", + "code_postal": "42260", + "coordonnees_gps": [ + 45.7952908968, + 4.0351714589 + ], + "libelle_d_acheminement": "BUSSY ALBIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0351714589, + 45.7952908968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c5bfaaa68dbe81845a1fc95f3af525d49184aef", + "fields": { + "code_commune_insee": "42042", + "nom_de_la_commune": "CHAMBLES", + "code_postal": "42170", + "coordonnees_gps": [ + 45.4520672053, + 4.22612997142 + ], + "libelle_d_acheminement": "CHAMBLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22612997142, + 45.4520672053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8e6814cd6afc19a8e05f3eb06abf89e237692fa", + "fields": { + "code_commune_insee": "42061", + "nom_de_la_commune": "CHERIER", + "code_postal": "42430", + "coordonnees_gps": [ + 45.9681660896, + 3.88935883166 + ], + "libelle_d_acheminement": "CHERIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88935883166, + 45.9681660896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "401642955a0bc55df7ce305c97158a24fc0b8f0a", + "fields": { + "code_commune_insee": "42063", + "nom_de_la_commune": "CHIRASSIMONT", + "code_postal": "42114", + "coordonnees_gps": [ + 45.9134499537, + 4.28281506917 + ], + "libelle_d_acheminement": "CHIRASSIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28281506917, + 45.9134499537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7db8a26f91d0b2915e9e65322ad731046feb63b1", + "fields": { + "code_commune_insee": "42077", + "nom_de_la_commune": "CROIZET SUR GAND", + "code_postal": "42540", + "coordonnees_gps": [ + 45.9126247194, + 4.21879856118 + ], + "libelle_d_acheminement": "CROIZET SUR GAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21879856118, + 45.9126247194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9263bb49e19d36cac5cfde91fb9dffc988bd3941", + "fields": { + "code_commune_insee": "42083", + "nom_de_la_commune": "DARGOIRE", + "code_postal": "42800", + "coordonnees_gps": [ + 45.5627238803, + 4.67407383096 + ], + "libelle_d_acheminement": "DARGOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67407383096, + 45.5627238803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1bbb1fb352c660ae82bc4460ef4032d5142f6d4", + "fields": { + "code_commune_insee": "42101", + "nom_de_la_commune": "GRAIX", + "code_postal": "42220", + "coordonnees_gps": [ + 45.3603739622, + 4.56046533126 + ], + "libelle_d_acheminement": "GRAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56046533126, + 45.3603739622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5dbf348d6a7d6bcda983d0bbf3c3d90669b720b", + "fields": { + "code_commune_insee": "42102", + "nom_de_la_commune": "GRAMMOND", + "code_postal": "42140", + "coordonnees_gps": [ + 45.5739004046, + 4.44195002454 + ], + "libelle_d_acheminement": "GRAMMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44195002454, + 45.5739004046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7ae4a5de630f43162ebcd1aaacce21b5db238a1", + "fields": { + "code_commune_insee": "42104", + "nom_de_la_commune": "LA GRESLE", + "code_postal": "42460", + "coordonnees_gps": [ + 46.0720149444, + 4.2760425142 + ], + "libelle_d_acheminement": "LA GRESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2760425142, + 46.0720149444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b29bfd7355fac2b650c9b4a28726d5dad4c27e9", + "fields": { + "code_commune_insee": "42108", + "nom_de_la_commune": "L HOPITAL LE GRAND", + "code_postal": "42210", + "coordonnees_gps": [ + 45.5919035351, + 4.19660173459 + ], + "libelle_d_acheminement": "L HOPITAL LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19660173459, + 45.5919035351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9600ba08deed4571195a57ca57bbd8ba6c5593f", + "fields": { + "code_commune_insee": "42123", + "nom_de_la_commune": "LORETTE", + "code_postal": "42420", + "coordonnees_gps": [ + 45.5111870937, + 4.58123296493 + ], + "libelle_d_acheminement": "LORETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58123296493, + 45.5111870937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c542b5ef0c35ac872c8c1da748e555046eeeae0", + "fields": { + "ligne_5": "LES TUILERIES", + "code_commune_insee": "42127", + "libelle_d_acheminement": "MABLY", + "code_postal": "42300", + "nom_de_la_commune": "MABLY", + "coordonnees_gps": [ + 46.0919456873, + 4.0633211833 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0633211833, + 46.0919456873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a63b6f929bdd95f0af991cc82bf67989aa39012", + "fields": { + "code_commune_insee": "42128", + "nom_de_la_commune": "MACHEZAL", + "code_postal": "42114", + "coordonnees_gps": [ + 45.925872477, + 4.31533789059 + ], + "libelle_d_acheminement": "MACHEZAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31533789059, + 45.925872477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a25f22b055cc5b6f8f761dbce7b33d4e622bd856", + "fields": { + "code_commune_insee": "42134", + "nom_de_la_commune": "MARCILLY LE CHATEL", + "code_postal": "42130", + "coordonnees_gps": [ + 45.6888989207, + 4.02877328272 + ], + "libelle_d_acheminement": "MARCILLY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02877328272, + 45.6888989207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bfcc8c2409c4087fc0c2727c948dd5ae1876253", + "fields": { + "code_commune_insee": "42150", + "nom_de_la_commune": "MONTVERDUN", + "code_postal": "42130", + "coordonnees_gps": [ + 45.712457493, + 4.0770159438 + ], + "libelle_d_acheminement": "MONTVERDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0770159438, + 45.712457493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3040a847ebeae2309b33515fa04c7c85bbe80844", + "fields": { + "code_commune_insee": "42153", + "nom_de_la_commune": "NEAUX", + "code_postal": "42470", + "coordonnees_gps": [ + 45.9582864228, + 4.16729809028 + ], + "libelle_d_acheminement": "NEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16729809028, + 45.9582864228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58801fb1fc1dc14c13eae4eda73031d38a93e847", + "fields": { + "code_commune_insee": "42155", + "nom_de_la_commune": "NERVIEUX", + "code_postal": "42510", + "coordonnees_gps": [ + 45.8118000128, + 4.14151199652 + ], + "libelle_d_acheminement": "NERVIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14151199652, + 45.8118000128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b44c686029a139b4764e6e050e829afb1ca142f", + "fields": { + "code_commune_insee": "42156", + "nom_de_la_commune": "NEULISE", + "code_postal": "42590", + "coordonnees_gps": [ + 45.900100869, + 4.16834898085 + ], + "libelle_d_acheminement": "NEULISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16834898085, + 45.900100869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb532df5822d3baa35dc4318b38116dc463c3acf", + "fields": { + "code_commune_insee": "42157", + "nom_de_la_commune": "NOAILLY", + "code_postal": "42640", + "coordonnees_gps": [ + 46.1414386815, + 4.00417536538 + ], + "libelle_d_acheminement": "NOAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00417536538, + 46.1414386815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee8efd1b6f2336fd6500b46074a6d529ee404fef", + "fields": { + "code_commune_insee": "42159", + "nom_de_la_commune": "NOIRETABLE", + "code_postal": "42440", + "coordonnees_gps": [ + 45.805483325, + 3.7440778928 + ], + "libelle_d_acheminement": "NOIRETABLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7440778928, + 45.805483325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "968a9599fb74d68311c3c2ba3d7b028a373a1ee0", + "fields": { + "code_commune_insee": "42163", + "nom_de_la_commune": "LA PACAUDIERE", + "code_postal": "42310", + "coordonnees_gps": [ + 46.1848662423, + 3.88005761466 + ], + "libelle_d_acheminement": "LA PACAUDIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88005761466, + 46.1848662423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "146741e9d91ffa46a89f1997633b49050b212ae8", + "fields": { + "code_commune_insee": "42167", + "nom_de_la_commune": "PAVEZIN", + "code_postal": "42410", + "coordonnees_gps": [ + 45.4650232925, + 4.66054627244 + ], + "libelle_d_acheminement": "PAVEZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66054627244, + 45.4650232925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "975843d577bc0183128d588fe483739c9159794b", + "fields": { + "code_commune_insee": "42168", + "nom_de_la_commune": "PELUSSIN", + "code_postal": "42410", + "coordonnees_gps": [ + 45.4230806352, + 4.65991656851 + ], + "libelle_d_acheminement": "PELUSSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65991656851, + 45.4230806352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de3377d2fef9e7e4e6bd0eef70ccaf1bffa2f0ba", + "fields": { + "code_commune_insee": "42169", + "nom_de_la_commune": "PERIGNEUX", + "code_postal": "42380", + "coordonnees_gps": [ + 45.4473694806, + 4.14260046979 + ], + "libelle_d_acheminement": "PERIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14260046979, + 45.4473694806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b7ddcd8088528facf2c9d23e8c656943737c14f", + "fields": { + "code_commune_insee": "42174", + "nom_de_la_commune": "PONCINS", + "code_postal": "42110", + "coordonnees_gps": [ + 45.7272583786, + 4.15060346621 + ], + "libelle_d_acheminement": "PONCINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15060346621, + 45.7272583786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3df7010855999fffc512cf721423e111a356be83", + "fields": { + "code_commune_insee": "42176", + "nom_de_la_commune": "POUILLY LES NONAINS", + "code_postal": "42155", + "coordonnees_gps": [ + 46.0446906414, + 3.97809193807 + ], + "libelle_d_acheminement": "POUILLY LES NONAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97809193807, + 46.0446906414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb5a7e590137fd87384f15dd00daeddb2392ca1c", + "fields": { + "code_commune_insee": "42177", + "nom_de_la_commune": "POUILLY SOUS CHARLIEU", + "code_postal": "42720", + "coordonnees_gps": [ + 46.1354023515, + 4.13250530885 + ], + "libelle_d_acheminement": "POUILLY SOUS CHARLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13250530885, + 46.1354023515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ec1449056d8ae09fe60a7c34975f599106c714a", + "fields": { + "code_commune_insee": "42185", + "nom_de_la_commune": "RIVAS", + "code_postal": "42340", + "coordonnees_gps": [ + 45.5885484014, + 4.25049605154 + ], + "libelle_d_acheminement": "RIVAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25049605154, + 45.5885484014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a85582da3f6745d7bf8aae193669e8d9dd1b8498", + "fields": { + "code_commune_insee": "42188", + "nom_de_la_commune": "ROCHE", + "code_postal": "42600", + "coordonnees_gps": [ + 45.6162113424, + 3.92144569626 + ], + "libelle_d_acheminement": "ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92144569626, + 45.6162113424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b1004670593a0951d529c9ea69a38f66bad5836", + "fields": { + "code_commune_insee": "42192", + "nom_de_la_commune": "ROZIER COTES D AUREC", + "code_postal": "42380", + "coordonnees_gps": [ + 45.3763346252, + 4.1143178936 + ], + "libelle_d_acheminement": "ROZIER COTES D AUREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1143178936, + 45.3763346252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "309996590eb6fc7d933457036d1bb7602c4f4b5b", + "fields": { + "code_commune_insee": "42193", + "nom_de_la_commune": "ROZIER EN DONZY", + "code_postal": "42810", + "coordonnees_gps": [ + 45.803570531, + 4.27277111132 + ], + "libelle_d_acheminement": "ROZIER EN DONZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27277111132, + 45.803570531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0961c7a14fc0d6dd933cc806431d96931a0319fa", + "fields": { + "code_commune_insee": "42196", + "nom_de_la_commune": "STE AGATHE EN DONZY", + "code_postal": "42510", + "coordonnees_gps": [ + 45.8360909597, + 4.30544297684 + ], + "libelle_d_acheminement": "STE AGATHE EN DONZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30544297684, + 45.8360909597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "882f66d8401705cdd2658e7a362d95b6b18b9b7a", + "fields": { + "code_commune_insee": "42197", + "nom_de_la_commune": "STE AGATHE LA BOUTERESSE", + "code_postal": "42130", + "coordonnees_gps": [ + 45.7435935956, + 4.05118283654 + ], + "libelle_d_acheminement": "STE AGATHE LA BOUTERESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05118283654, + 45.7435935956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7ca5b83542968b97eec685521ac6361c9335f56", + "fields": { + "code_commune_insee": "42204", + "nom_de_la_commune": "ST BONNET LE CHATEAU", + "code_postal": "42380", + "coordonnees_gps": [ + 45.4251682562, + 4.06509003822 + ], + "libelle_d_acheminement": "ST BONNET LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06509003822, + 45.4251682562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3f4d3d6d3466de846724360ee1ef2b1547b682f", + "fields": { + "code_commune_insee": "42206", + "nom_de_la_commune": "ST BONNET LES OULES", + "code_postal": "42330", + "coordonnees_gps": [ + 45.5412626706, + 4.33171249228 + ], + "libelle_d_acheminement": "ST BONNET LES OULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33171249228, + 45.5412626706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ce5cf722e4c333462c5564efaa7fac8c9b08002", + "fields": { + "code_commune_insee": "42209", + "nom_de_la_commune": "STE COLOMBE SUR GAND", + "code_postal": "42540", + "coordonnees_gps": [ + 45.8677779412, + 4.28292761777 + ], + "libelle_d_acheminement": "STE COLOMBE SUR GAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28292761777, + 45.8677779412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f27fc507294f74c91ed13bd6cab696b98669f1a", + "fields": { + "code_commune_insee": "42214", + "nom_de_la_commune": "ST CYR LES VIGNES", + "code_postal": "42210", + "coordonnees_gps": [ + 45.6766538011, + 4.28890743405 + ], + "libelle_d_acheminement": "ST CYR LES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28890743405, + 45.6766538011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6b32c83f1c6e15069d4b10667c0e8850a57b203", + "fields": { + "code_commune_insee": "42220", + "nom_de_la_commune": "ST FORGEUX LESPINASSE", + "code_postal": "42640", + "coordonnees_gps": [ + 46.1390822509, + 3.94339360836 + ], + "libelle_d_acheminement": "ST FORGEUX LESPINASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94339360836, + 46.1390822509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b91747a77ee960b74af2e4adb6dab380fe211d1b", + "fields": { + "code_commune_insee": "42221", + "nom_de_la_commune": "STE FOY ST SULPICE", + "code_postal": "42110", + "coordonnees_gps": [ + 45.7766813055, + 4.1090035213 + ], + "libelle_d_acheminement": "STE FOY ST SULPICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1090035213, + 45.7766813055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd76fbcc91bd62c78588f8d7e7d86066de4fed09", + "fields": { + "ligne_5": "LA CULA", + "code_commune_insee": "42225", + "libelle_d_acheminement": "GENILAC", + "code_postal": "42800", + "nom_de_la_commune": "GENILAC", + "coordonnees_gps": [ + 45.5351394274, + 4.57332962492 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57332962492, + 45.5351394274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d56b8c503a7fc1294accbf4a474878c5150dfb1c", + "fields": { + "code_commune_insee": "42233", + "nom_de_la_commune": "ST HAON LE VIEUX", + "code_postal": "42370", + "coordonnees_gps": [ + 46.0741993269, + 3.90464894951 + ], + "libelle_d_acheminement": "ST HAON LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90464894951, + 46.0741993269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8431ecf0ec0c6f522a87c3531c69c7974d53d06b", + "fields": { + "code_commune_insee": "42236", + "nom_de_la_commune": "ST HILAIRE SOUS CHARLIEU", + "code_postal": "42190", + "coordonnees_gps": [ + 46.1210288218, + 4.1833614828 + ], + "libelle_d_acheminement": "ST HILAIRE SOUS CHARLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1833614828, + 46.1210288218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e337e7e27fea124ed15dce00361006bead3a16c", + "fields": { + "ligne_5": "ST MAURICE SUR LOIRE", + "code_commune_insee": "42239", + "libelle_d_acheminement": "ST JEAN ST MAURICE SUR LOIRE", + "code_postal": "42155", + "nom_de_la_commune": "ST JEAN ST MAURICE SUR LOIRE", + "coordonnees_gps": [ + 45.9576591068, + 3.98572458074 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98572458074, + 45.9576591068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b89cdac97ffc341535293b0e159db1f784b94d26", + "fields": { + "code_commune_insee": "42248", + "nom_de_la_commune": "ST JUST EN CHEVALET", + "code_postal": "42430", + "coordonnees_gps": [ + 45.9235907262, + 3.84329480251 + ], + "libelle_d_acheminement": "ST JUST EN CHEVALET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84329480251, + 45.9235907262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc700e4637a7e61e0836be690e36c8095ee3f0d3", + "fields": { + "code_commune_insee": "42264", + "nom_de_la_commune": "ST MEDARD EN FOREZ", + "code_postal": "42330", + "coordonnees_gps": [ + 45.5923485305, + 4.36215864374 + ], + "libelle_d_acheminement": "ST MEDARD EN FOREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36215864374, + 45.5923485305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "434f70f5e43481bde008e37a080e86375dc3f3d3", + "fields": { + "code_commune_insee": "42265", + "nom_de_la_commune": "ST MICHEL SUR RHONE", + "code_postal": "42410", + "coordonnees_gps": [ + 45.4436606281, + 4.73367710517 + ], + "libelle_d_acheminement": "ST MICHEL SUR RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73367710517, + 45.4436606281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2573becb2da5b2bb9a57b6a8b37e328d47f51519", + "fields": { + "ligne_5": "ST PAUL DE VEZELIN", + "code_commune_insee": "42268", + "libelle_d_acheminement": "VEZELIN SUR LOIRE", + "code_postal": "42590", + "nom_de_la_commune": "VEZELIN SUR LOIRE", + "coordonnees_gps": [ + 45.8892083156, + 4.08289919803 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08289919803, + 45.8892083156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d91bd17100ca2ca5ce72454fbdb23c580e675222", + "fields": { + "code_commune_insee": "42269", + "nom_de_la_commune": "ST PAUL D UZORE", + "code_postal": "42600", + "coordonnees_gps": [ + 45.6749292943, + 4.09004893235 + ], + "libelle_d_acheminement": "ST PAUL D UZORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09004893235, + 45.6749292943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d744838e95e61bec556bc7e18a6a2b77e54bb657", + "fields": { + "code_commune_insee": "42270", + "nom_de_la_commune": "ST PAUL EN CORNILLON", + "code_postal": "42240", + "coordonnees_gps": [ + 45.3957585018, + 4.23942143752 + ], + "libelle_d_acheminement": "ST PAUL EN CORNILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23942143752, + 45.3957585018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4d7f3a6e975362863ec76baedf97121c1157d59", + "fields": { + "code_commune_insee": "42274", + "nom_de_la_commune": "ST POLGUES", + "code_postal": "42260", + "coordonnees_gps": [ + 45.909623488, + 3.981388774 + ], + "libelle_d_acheminement": "ST POLGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.981388774, + 45.909623488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab44eaf68b1742b6dc2fa4cff9d3a67394d2de03", + "fields": { + "code_commune_insee": "42276", + "nom_de_la_commune": "ST PRIEST LA PRUGNE", + "code_postal": "42830", + "coordonnees_gps": [ + 45.9460820015, + 3.74227575904 + ], + "libelle_d_acheminement": "ST PRIEST LA PRUGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74227575904, + 45.9460820015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebd3c29a1fcf40b68e45f97e6760afc934b7f507", + "fields": { + "code_commune_insee": "42281", + "nom_de_la_commune": "ST RIRAND", + "code_postal": "42370", + "coordonnees_gps": [ + 46.0709034928, + 3.83743975757 + ], + "libelle_d_acheminement": "ST RIRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83743975757, + 46.0709034928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a89c069e9591ce4c9bbe176fd6be3abee73c4228", + "fields": { + "code_commune_insee": "42288", + "nom_de_la_commune": "ST SIXTE", + "code_postal": "42130", + "coordonnees_gps": [ + 45.7724079231, + 3.9742199747 + ], + "libelle_d_acheminement": "ST SIXTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9742199747, + 45.7724079231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d644e5123ad98dfdd6aeb37df20ba9a899567ca5", + "fields": { + "code_commune_insee": "42298", + "nom_de_la_commune": "SAUVAIN", + "code_postal": "42990", + "coordonnees_gps": [ + 45.6641357765, + 3.86010526625 + ], + "libelle_d_acheminement": "SAUVAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86010526625, + 45.6641357765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1080d30d13344f16b95551541e026c8a6a80cbc0", + "fields": { + "code_commune_insee": "42301", + "nom_de_la_commune": "SOLEYMIEUX", + "code_postal": "42560", + "coordonnees_gps": [ + 45.5062879483, + 4.06396167678 + ], + "libelle_d_acheminement": "SOLEYMIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06396167678, + 45.5062879483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad18de1fd7d7a38ad5d2dcdd7a20fff4e296c9c0", + "fields": { + "code_commune_insee": "42304", + "nom_de_la_commune": "SURY LE COMTAL", + "code_postal": "42450", + "coordonnees_gps": [ + 45.5417167026, + 4.18146739816 + ], + "libelle_d_acheminement": "SURY LE COMTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18146739816, + 45.5417167026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87bc23820e95044bef85104690e86e18be770e70", + "fields": { + "code_commune_insee": "42305", + "nom_de_la_commune": "LA TALAUDIERE", + "code_postal": "42350", + "coordonnees_gps": [ + 45.4783411216, + 4.42393692912 + ], + "libelle_d_acheminement": "LA TALAUDIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42393692912, + 45.4783411216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e64609317c95831ff832c42d39e7b45c8e242210", + "fields": { + "code_commune_insee": "42313", + "nom_de_la_commune": "TRELINS", + "code_postal": "42130", + "coordonnees_gps": [ + 45.7251404881, + 4.00078301382 + ], + "libelle_d_acheminement": "TRELINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00078301382, + 45.7251404881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47e79ed220cf0632d53810d50347ecffc20cb6c7", + "fields": { + "code_commune_insee": "42316", + "nom_de_la_commune": "UNIEUX", + "code_postal": "42240", + "coordonnees_gps": [ + 45.4069770909, + 4.2690668711 + ], + "libelle_d_acheminement": "UNIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2690668711, + 45.4069770909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2e6f42871ebe54eb8d1870d761df2b87e29e632", + "fields": { + "code_commune_insee": "42319", + "nom_de_la_commune": "VALEILLE", + "code_postal": "42110", + "coordonnees_gps": [ + 45.7074991536, + 4.28122611074 + ], + "libelle_d_acheminement": "VALEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28122611074, + 45.7074991536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f21e610054419219e7147cab8e955ce176488c1", + "fields": { + "code_commune_insee": "42321", + "nom_de_la_commune": "LA VALLA SUR ROCHEFORT", + "code_postal": "42111", + "coordonnees_gps": [ + 45.7570573069, + 3.84373877987 + ], + "libelle_d_acheminement": "LA VALLA SUR ROCHEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84373877987, + 45.7570573069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7efd9a2fbd419d889f02fe75fbf7b6889feef236", + "fields": { + "code_commune_insee": "42322", + "nom_de_la_commune": "LA VALLA EN GIER", + "code_postal": "42131", + "coordonnees_gps": [ + 45.4052097313, + 4.52491972285 + ], + "libelle_d_acheminement": "LA VALLA EN GIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52491972285, + 45.4052097313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "751fb8bb4e6d191e385ed33979a6b06315c48945", + "fields": { + "code_commune_insee": "42330", + "nom_de_la_commune": "VILLARS", + "code_postal": "42390", + "coordonnees_gps": [ + 45.4687923748, + 4.35203419027 + ], + "libelle_d_acheminement": "VILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35203419027, + 45.4687923748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8ab9d365afd035da63b3c320959da78aeba461d", + "fields": { + "code_commune_insee": "42335", + "nom_de_la_commune": "VIRICELLES", + "code_postal": "42140", + "coordonnees_gps": [ + 45.6550209584, + 4.38155703358 + ], + "libelle_d_acheminement": "VIRICELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38155703358, + 45.6550209584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f12a5f1db91596354c06ae86a4baf8a7fabc215", + "fields": { + "code_commune_insee": "42338", + "nom_de_la_commune": "VOUGY", + "code_postal": "42720", + "coordonnees_gps": [ + 46.0930613385, + 4.12402637585 + ], + "libelle_d_acheminement": "VOUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12402637585, + 46.0930613385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6ed09ca8e1793e6b963af9f4fe5a0e709f85c45", + "fields": { + "code_commune_insee": "42339", + "nom_de_la_commune": "CHAUSSETERRE", + "code_postal": "42430", + "coordonnees_gps": [ + 45.9015168526, + 3.77091785307 + ], + "libelle_d_acheminement": "CHAUSSETERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77091785307, + 45.9015168526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74e5c9ccf8dd51dd58f00e9e0ba0d8262c37f4a6", + "fields": { + "code_commune_insee": "43001", + "nom_de_la_commune": "AGNAT", + "code_postal": "43100", + "coordonnees_gps": [ + 45.3450418284, + 3.4501817683 + ], + "libelle_d_acheminement": "AGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4501817683, + 45.3450418284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fe803824502459e646c80dc57ab7862d4e0b0ac", + "fields": { + "code_commune_insee": "43003", + "nom_de_la_commune": "ALLEGRE", + "code_postal": "43270", + "coordonnees_gps": [ + 45.1884321561, + 3.68990996082 + ], + "libelle_d_acheminement": "ALLEGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68990996082, + 45.1884321561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "261a8c3cad160e1c52f065762d26bd32927652eb", + "fields": { + "code_commune_insee": "43010", + "nom_de_la_commune": "ARSAC EN VELAY", + "code_postal": "43700", + "coordonnees_gps": [ + 44.9936614826, + 3.95457009632 + ], + "libelle_d_acheminement": "ARSAC EN VELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95457009632, + 44.9936614826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c03f0438dda9edb8f8655b8dbe779545a237b91", + "fields": { + "code_commune_insee": "43012", + "nom_de_la_commune": "AUREC SUR LOIRE", + "code_postal": "43110", + "coordonnees_gps": [ + 45.3688645706, + 4.20459797548 + ], + "libelle_d_acheminement": "AUREC SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20459797548, + 45.3688645706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f981069ba188b5aaedc12c991de20c0f4811d9d7", + "fields": { + "ligne_5": "VISSAC", + "code_commune_insee": "43013", + "libelle_d_acheminement": "VISSAC AUTEYRAC", + "code_postal": "43300", + "nom_de_la_commune": "VISSAC AUTEYRAC", + "coordonnees_gps": [ + 45.1163766085, + 3.62418252046 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62418252046, + 45.1163766085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c14ec6052654963f58d8d1d03f31cd6d9eabcef4", + "fields": { + "code_commune_insee": "43017", + "nom_de_la_commune": "AZERAT", + "code_postal": "43390", + "coordonnees_gps": [ + 45.353475703, + 3.3990093293 + ], + "libelle_d_acheminement": "AZERAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3990093293, + 45.353475703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7839121f1e44290dbdca6c91d6e7c95645344df", + "fields": { + "code_commune_insee": "43018", + "nom_de_la_commune": "BAINS", + "code_postal": "43370", + "coordonnees_gps": [ + 44.9961387777, + 3.76352409678 + ], + "libelle_d_acheminement": "BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76352409678, + 44.9961387777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd73a2b2aec891c2c51169e041b527a3818ef413", + "fields": { + "code_commune_insee": "43024", + "nom_de_la_commune": "BEAUX", + "code_postal": "43200", + "coordonnees_gps": [ + 45.1942542124, + 4.08248145168 + ], + "libelle_d_acheminement": "BEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08248145168, + 45.1942542124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80fab3062095fc6dfbf1d85ae36c1b864d22e21f", + "fields": { + "code_commune_insee": "43026", + "nom_de_la_commune": "BELLEVUE LA MONTAGNE", + "code_postal": "43350", + "coordonnees_gps": [ + 45.2169858786, + 3.81493834452 + ], + "libelle_d_acheminement": "BELLEVUE LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81493834452, + 45.2169858786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6eef11282cd5aed96fed32128abaa69b2a4b148", + "fields": { + "code_commune_insee": "43029", + "nom_de_la_commune": "LA BESSEYRE ST MARY", + "code_postal": "43170", + "coordonnees_gps": [ + 44.9713807962, + 3.41459641129 + ], + "libelle_d_acheminement": "LA BESSEYRE ST MARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41459641129, + 44.9713807962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c81cef5a16ac3178b841288fe98da2e554b600b6", + "fields": { + "code_commune_insee": "43034", + "nom_de_la_commune": "BOISSET", + "code_postal": "43500", + "coordonnees_gps": [ + 45.3167286043, + 3.9815552467 + ], + "libelle_d_acheminement": "BOISSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9815552467, + 45.3167286043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2c06f3949272c5e466b3cc5e4d12fbd42857b69", + "fields": { + "ligne_5": "ARVANT", + "code_commune_insee": "43038", + "libelle_d_acheminement": "BOURNONCLE ST PIERRE", + "code_postal": "43360", + "nom_de_la_commune": "BOURNONCLE ST PIERRE", + "coordonnees_gps": [ + 45.3431536681, + 3.32396530998 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32396530998, + 45.3431536681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c9ab20e58e47e5536e23f3646119182b0c8d9db", + "fields": { + "code_commune_insee": "43042", + "nom_de_la_commune": "CAYRES", + "code_postal": "43510", + "coordonnees_gps": [ + 44.9221545341, + 3.81071346525 + ], + "libelle_d_acheminement": "CAYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81071346525, + 44.9221545341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7df84dae9756e36ace0e1967b93cc0d79b396c50", + "fields": { + "code_commune_insee": "43061", + "nom_de_la_commune": "CHASPINHAC", + "code_postal": "43700", + "coordonnees_gps": [ + 45.0878247699, + 3.93080497141 + ], + "libelle_d_acheminement": "CHASPINHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93080497141, + 45.0878247699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3c98b88ae59624d3a55ee449ff3a37c14e58219", + "fields": { + "code_commune_insee": "43067", + "nom_de_la_commune": "CHAVANIAC LAFAYETTE", + "code_postal": "43230", + "coordonnees_gps": [ + 45.1574777226, + 3.58519893756 + ], + "libelle_d_acheminement": "CHAVANIAC LAFAYETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58519893756, + 45.1574777226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a1fa905cd18bd76a82248e691e520835e0ad837", + "fields": { + "code_commune_insee": "43073", + "nom_de_la_commune": "CISTRIERES", + "code_postal": "43160", + "coordonnees_gps": [ + 45.3298020864, + 3.6091137956 + ], + "libelle_d_acheminement": "CISTRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6091137956, + 45.3298020864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "552c1610e5e04f9e69172159647788d2433c033f", + "fields": { + "code_commune_insee": "43078", + "nom_de_la_commune": "COUBON", + "code_postal": "43700", + "coordonnees_gps": [ + 44.9998083728, + 3.92720931438 + ], + "libelle_d_acheminement": "COUBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92720931438, + 44.9998083728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09d4ca22c563a418173c311a2f3a4d5bd337a296", + "fields": { + "code_commune_insee": "43080", + "nom_de_la_commune": "CRAPONNE SUR ARZON", + "code_postal": "43500", + "coordonnees_gps": [ + 45.3318549451, + 3.85314004519 + ], + "libelle_d_acheminement": "CRAPONNE SUR ARZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85314004519, + 45.3318549451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2cf2de1915ebcea290a124a4d24c42c61103b3a", + "fields": { + "code_commune_insee": "43089", + "nom_de_la_commune": "ESPALY ST MARCEL", + "code_postal": "43000", + "coordonnees_gps": [ + 45.0463892072, + 3.85796806236 + ], + "libelle_d_acheminement": "ESPALY ST MARCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85796806236, + 45.0463892072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61e123935e356731b636535d5ef719a5d98a4972", + "fields": { + "code_commune_insee": "43091", + "nom_de_la_commune": "LES ESTABLES", + "code_postal": "43150", + "coordonnees_gps": [ + 44.9067714525, + 4.14098993726 + ], + "libelle_d_acheminement": "LES ESTABLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14098993726, + 44.9067714525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fe98008fa8a28b4c4484aefe97069158db7cee4", + "fields": { + "code_commune_insee": "43097", + "nom_de_la_commune": "FREYCENET LA CUCHE", + "code_postal": "43150", + "coordonnees_gps": [ + 44.8975326433, + 4.09393366506 + ], + "libelle_d_acheminement": "FREYCENET LA CUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09393366506, + 44.8975326433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c732a70f71bb3d83d740c6edab81625e3fad436f", + "fields": { + "code_commune_insee": "43099", + "nom_de_la_commune": "FRUGERES LES MINES", + "code_postal": "43250", + "coordonnees_gps": [ + 45.3867198593, + 3.30887287866 + ], + "libelle_d_acheminement": "FRUGERES LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30887287866, + 45.3867198593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a3b7b61b10ea78b642229974e884c0ffdf147dd", + "fields": { + "code_commune_insee": "43102", + "nom_de_la_commune": "GRAZAC", + "code_postal": "43200", + "coordonnees_gps": [ + 45.1919622476, + 4.18410968345 + ], + "libelle_d_acheminement": "GRAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18410968345, + 45.1919622476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32be376f703dbd9df9af261a5bf36f505736be59", + "fields": { + "code_commune_insee": "43103", + "nom_de_la_commune": "GRENIER MONTGON", + "code_postal": "43450", + "coordonnees_gps": [ + 45.2856647126, + 3.21042825764 + ], + "libelle_d_acheminement": "GRENIER MONTGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21042825764, + 45.2856647126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0708b29d3b74f8302e5dbcf0a391cebcc99aa30e", + "fields": { + "code_commune_insee": "43104", + "nom_de_la_commune": "GREZES", + "code_postal": "43170", + "coordonnees_gps": [ + 44.9105106855, + 3.46856675689 + ], + "libelle_d_acheminement": "GREZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46856675689, + 44.9105106855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc9b66c172040c446acd9be32c875926fd8fad72", + "fields": { + "code_commune_insee": "43106", + "nom_de_la_commune": "JAX", + "code_postal": "43230", + "coordonnees_gps": [ + 45.1696697646, + 3.61747634855 + ], + "libelle_d_acheminement": "JAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61747634855, + 45.1696697646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9e8f285f0930926a920bcb01a3f10b78b232abb", + "fields": { + "code_commune_insee": "43107", + "nom_de_la_commune": "JOSAT", + "code_postal": "43230", + "coordonnees_gps": [ + 45.214081059, + 3.61014506252 + ], + "libelle_d_acheminement": "JOSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61014506252, + 45.214081059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d33b255279e998e198620700087b0884c36944c3", + "fields": { + "code_commune_insee": "43109", + "nom_de_la_commune": "LAFARRE", + "code_postal": "43490", + "coordonnees_gps": [ + 44.8371506318, + 3.98918688187 + ], + "libelle_d_acheminement": "LAFARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98918688187, + 44.8371506318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99d8d48d16695fb28b1e4e062a95d5357667c6f7", + "fields": { + "code_commune_insee": "43110", + "nom_de_la_commune": "LAMOTHE", + "code_postal": "43100", + "coordonnees_gps": [ + 45.3149483053, + 3.42693431019 + ], + "libelle_d_acheminement": "LAMOTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42693431019, + 45.3149483053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fc9e1f3a9b992b689bb372956d2ac36b93d42f1", + "fields": { + "code_commune_insee": "43115", + "nom_de_la_commune": "LAUSSONNE", + "code_postal": "43150", + "coordonnees_gps": [ + 44.9669881177, + 4.05206714167 + ], + "libelle_d_acheminement": "LAUSSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05206714167, + 44.9669881177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f2d359b5d8fae53ab25fb64f2884a730248b239", + "fields": { + "code_commune_insee": "43125", + "nom_de_la_commune": "LUBILHAC", + "code_postal": "43100", + "coordonnees_gps": [ + 45.243301665, + 3.25239685673 + ], + "libelle_d_acheminement": "LUBILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25239685673, + 45.243301665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7d770c3dbd2c54c2a8d2464b757879e07c761e9", + "fields": { + "code_commune_insee": "43126", + "nom_de_la_commune": "MALREVERS", + "code_postal": "43800", + "coordonnees_gps": [ + 45.0987649866, + 3.96694371079 + ], + "libelle_d_acheminement": "MALREVERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96694371079, + 45.0987649866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b0aa786511e752a2f436da52d0e8755162cc702", + "fields": { + "code_commune_insee": "43131", + "nom_de_la_commune": "MAZERAT AUROUZE", + "code_postal": "43230", + "coordonnees_gps": [ + 45.1875462661, + 3.5663385327 + ], + "libelle_d_acheminement": "MAZERAT AUROUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5663385327, + 45.1875462661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c09011c038e8a66eaa70ad08ec23743d8244ad1e", + "fields": { + "code_commune_insee": "43134", + "nom_de_la_commune": "MEZERES", + "code_postal": "43800", + "coordonnees_gps": [ + 45.167914341, + 4.0135758548 + ], + "libelle_d_acheminement": "MEZERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0135758548, + 45.167914341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38708d52dd4bceb77785e970ad52d9881dcb017d", + "fields": { + "code_commune_insee": "43147", + "nom_de_la_commune": "PAULHAC", + "code_postal": "43100", + "coordonnees_gps": [ + 45.2953490869, + 3.34066049847 + ], + "libelle_d_acheminement": "PAULHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34066049847, + 45.2953490869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66388473b646635295f5f737fde6b5b1703c358a", + "fields": { + "code_commune_insee": "43148", + "nom_de_la_commune": "PAULHAGUET", + "code_postal": "43230", + "coordonnees_gps": [ + 45.2181062254, + 3.51504547862 + ], + "libelle_d_acheminement": "PAULHAGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51504547862, + 45.2181062254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "135cc22648ab903869b5e2de13781d13955dccaa", + "fields": { + "code_commune_insee": "43150", + "nom_de_la_commune": "LE PERTUIS", + "code_postal": "43200", + "coordonnees_gps": [ + 45.1022318676, + 4.06426000884 + ], + "libelle_d_acheminement": "LE PERTUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06426000884, + 45.1022318676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10ae4bb65bfca12e1274d8947a0dc69e1d2c38f4", + "fields": { + "code_commune_insee": "43153", + "nom_de_la_commune": "PONT SALOMON", + "code_postal": "43330", + "coordonnees_gps": [ + 45.3352775627, + 4.24335306756 + ], + "libelle_d_acheminement": "PONT SALOMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24335306756, + 45.3352775627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62e112edafcc9380981f7337d5b1fc01996bd447", + "fields": { + "code_commune_insee": "43157", + "nom_de_la_commune": "LE PUY EN VELAY", + "code_postal": "43000", + "coordonnees_gps": [ + 45.0276366659, + 3.89535229067 + ], + "libelle_d_acheminement": "LE PUY EN VELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89535229067, + 45.0276366659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5ade4786bbd3593367492d484309ee9301b558a", + "fields": { + "code_commune_insee": "43162", + "nom_de_la_commune": "RETOURNAC", + "code_postal": "43130", + "coordonnees_gps": [ + 45.2190833833, + 4.0281941736 + ], + "libelle_d_acheminement": "RETOURNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0281941736, + 45.2190833833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "334c62cb5971967d8367272e8d17dd60277a8772", + "fields": { + "code_commune_insee": "43178", + "nom_de_la_commune": "ST DIDIER SUR DOULON", + "code_postal": "43440", + "coordonnees_gps": [ + 45.3048407835, + 3.54764770855 + ], + "libelle_d_acheminement": "ST DIDIER SUR DOULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54764770855, + 45.3048407835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7acc59644da932a7d3cb69bd4857fafb579d4206", + "fields": { + "code_commune_insee": "43181", + "nom_de_la_commune": "ST ETIENNE LARDEYROL", + "code_postal": "43260", + "coordonnees_gps": [ + 45.0855006006, + 4.00620064069 + ], + "libelle_d_acheminement": "ST ETIENNE LARDEYROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00620064069, + 45.0855006006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20cc582e64e8f1511cd7512a46ae28dbc5ca65a4", + "fields": { + "code_commune_insee": "43185", + "nom_de_la_commune": "STE FLORINE", + "code_postal": "43250", + "coordonnees_gps": [ + 45.4018591959, + 3.30958888923 + ], + "libelle_d_acheminement": "STE FLORINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30958888923, + 45.4018591959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06c1dece1ae09c18b43d1e0551733f40969b258a", + "fields": { + "code_commune_insee": "43188", + "nom_de_la_commune": "ST GEORGES D AURAC", + "code_postal": "43230", + "coordonnees_gps": [ + 45.1592040018, + 3.55160746234 + ], + "libelle_d_acheminement": "ST GEORGES D AURAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55160746234, + 45.1592040018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9afaaf5f54fa5c16dbf455c6898a7cf707a2ec22", + "fields": { + "code_commune_insee": "43190", + "nom_de_la_commune": "ST GERMAIN LAPRADE", + "code_postal": "43700", + "coordonnees_gps": [ + 45.0328118142, + 3.97768212024 + ], + "libelle_d_acheminement": "ST GERMAIN LAPRADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97768212024, + 45.0328118142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09c4efb3edaf3f159e2aaee770178b2fca2eda2f", + "fields": { + "code_commune_insee": "43197", + "nom_de_la_commune": "ST JEAN DE NAY", + "code_postal": "43320", + "coordonnees_gps": [ + 45.0653883769, + 3.68972683982 + ], + "libelle_d_acheminement": "ST JEAN DE NAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68972683982, + 45.0653883769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5da3af92a114638dc417ffe0326f86acbff01e79", + "fields": { + "code_commune_insee": "43199", + "nom_de_la_commune": "ST JEURES", + "code_postal": "43200", + "coordonnees_gps": [ + 45.1042127113, + 4.21151710813 + ], + "libelle_d_acheminement": "ST JEURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21151710813, + 45.1042127113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76ea0986c2c224ae070c38db9ed55046e3533c27", + "fields": { + "code_commune_insee": "43204", + "nom_de_la_commune": "ST JULIEN MOLHESABATE", + "code_postal": "43220", + "coordonnees_gps": [ + 45.1899135019, + 4.43701562195 + ], + "libelle_d_acheminement": "ST JULIEN MOLHESABATE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43701562195, + 45.1899135019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a58b85c2a7a4c1f2c9c7f2d97d4682f40ccfb362", + "fields": { + "code_commune_insee": "43206", + "nom_de_la_commune": "ST JUST PRES BRIOUDE", + "code_postal": "43100", + "coordonnees_gps": [ + 45.2327467078, + 3.3312524212 + ], + "libelle_d_acheminement": "ST JUST PRES BRIOUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3312524212, + 45.2327467078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e7558c9b18e85750ace30e7dd2606dd169fecae", + "fields": { + "code_commune_insee": "43208", + "nom_de_la_commune": "STE MARGUERITE", + "code_postal": "43230", + "coordonnees_gps": [ + 45.2105754797, + 3.58257296293 + ], + "libelle_d_acheminement": "STE MARGUERITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58257296293, + 45.2105754797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4a85442d1959e7f531df06b180166ed22f19f65", + "fields": { + "code_commune_insee": "43215", + "nom_de_la_commune": "ST PAUL DE TARTAS", + "code_postal": "43420", + "coordonnees_gps": [ + 44.7990652286, + 3.89356890721 + ], + "libelle_d_acheminement": "ST PAUL DE TARTAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89356890721, + 44.7990652286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17db5e85f1ef295b010bc0ce7ff717e67e712727", + "fields": { + "code_commune_insee": "43224", + "nom_de_la_commune": "STE SIGOLENE", + "code_postal": "43600", + "coordonnees_gps": [ + 45.2470426213, + 4.22851598334 + ], + "libelle_d_acheminement": "STE SIGOLENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22851598334, + 45.2470426213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e76689ed87e0d8c97a085a63778c1484324f3943", + "fields": { + "code_commune_insee": "43227", + "nom_de_la_commune": "ST VICTOR MALESCOURS", + "code_postal": "43140", + "coordonnees_gps": [ + 45.2943304706, + 4.32399276443 + ], + "libelle_d_acheminement": "ST VICTOR MALESCOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32399276443, + 45.2943304706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4014d4b9c0fe235544be0684088b898a383a632f", + "fields": { + "code_commune_insee": "43229", + "nom_de_la_commune": "ST VIDAL", + "code_postal": "43320", + "coordonnees_gps": [ + 45.0748772285, + 3.79903420873 + ], + "libelle_d_acheminement": "ST VIDAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79903420873, + 45.0748772285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28bc1d076c25d4897444c6e4b0dc33e107e9cbb0", + "fields": { + "code_commune_insee": "43231", + "nom_de_la_commune": "SALETTES", + "code_postal": "43150", + "coordonnees_gps": [ + 44.866504818, + 3.98094125791 + ], + "libelle_d_acheminement": "SALETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98094125791, + 44.866504818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bca249fb4c6abdca04cd70ac2b9e4da4b62be19b", + "fields": { + "code_commune_insee": "43234", + "nom_de_la_commune": "SAUGUES", + "code_postal": "43170", + "coordonnees_gps": [ + 44.9482034569, + 3.53883236387 + ], + "libelle_d_acheminement": "SAUGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53883236387, + 44.9482034569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa8b4d1e350e14b8357cd8d6fcc954d9f97e4d2f", + "fields": { + "code_commune_insee": "43236", + "nom_de_la_commune": "LA SEAUVE SUR SEMENE", + "code_postal": "43140", + "coordonnees_gps": [ + 45.2951430004, + 4.24948806021 + ], + "libelle_d_acheminement": "LA SEAUVE SUR SEMENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24948806021, + 45.2951430004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0802fe1430344555df4bf009cfcdbc3722d1a339", + "fields": { + "code_commune_insee": "43238", + "nom_de_la_commune": "SENEUJOLS", + "code_postal": "43510", + "coordonnees_gps": [ + 44.9541814501, + 3.78325926498 + ], + "libelle_d_acheminement": "SENEUJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78325926498, + 44.9541814501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04b7f3e859fbcad6d6e7a04f42d2ee82a5047eb7", + "fields": { + "code_commune_insee": "43245", + "nom_de_la_commune": "THORAS", + "code_postal": "43170", + "coordonnees_gps": [ + 44.859407492, + 3.56070986719 + ], + "libelle_d_acheminement": "THORAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56070986719, + 44.859407492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ae292514edc49a775e4e1e02f83fdfc121f64a9", + "fields": { + "code_commune_insee": "43251", + "nom_de_la_commune": "VALS PRES LE PUY", + "code_postal": "43750", + "coordonnees_gps": [ + 45.0239274743, + 3.86582485038 + ], + "libelle_d_acheminement": "VALS PRES LE PUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86582485038, + 45.0239274743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5044639e33fd6ade1bc6d433993b424a6c2dfc92", + "fields": { + "code_commune_insee": "43256", + "nom_de_la_commune": "VENTEUGES", + "code_postal": "43170", + "coordonnees_gps": [ + 44.9815131763, + 3.48283306813 + ], + "libelle_d_acheminement": "VENTEUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48283306813, + 44.9815131763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2e24fd740ad518f59ca0587b2895ef943d042e7", + "fields": { + "code_commune_insee": "43262", + "nom_de_la_commune": "VIEILLE BRIOUDE", + "code_postal": "43100", + "coordonnees_gps": [ + 45.2509891916, + 3.40398248919 + ], + "libelle_d_acheminement": "VIEILLE BRIOUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40398248919, + 45.2509891916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e101b45c65ee99bcc887aee05b36067c21ac2b7", + "fields": { + "code_commune_insee": "43263", + "nom_de_la_commune": "VIELPRAT", + "code_postal": "43490", + "coordonnees_gps": [ + 44.8507243693, + 3.95129069214 + ], + "libelle_d_acheminement": "VIELPRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95129069214, + 44.8507243693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caf0886b0adad7c3f583de806a1d6e27e8765c28", + "fields": { + "code_commune_insee": "44010", + "nom_de_la_commune": "BATZ SUR MER", + "code_postal": "44740", + "coordonnees_gps": [ + 47.2844487793, + -2.474374647 + ], + "libelle_d_acheminement": "BATZ SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.474374647, + 47.2844487793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95956108c197eccbf8494a79a16594e456c738f0", + "fields": { + "ligne_5": "LA CHAPELLE BASSE MER", + "code_commune_insee": "44029", + "libelle_d_acheminement": "DIVATTE SUR LOIRE", + "code_postal": "44450", + "nom_de_la_commune": "DIVATTE SUR LOIRE", + "coordonnees_gps": [ + 47.2808739279, + -1.34947633422 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34947633422, + 47.2808739279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df9b1d788cd7d42f93a956ac9b2c9a1cb1376bc7", + "fields": { + "code_commune_insee": "44030", + "nom_de_la_commune": "LA CHAPELLE DES MARAIS", + "code_postal": "44410", + "coordonnees_gps": [ + 47.4371350794, + -2.24565131355 + ], + "libelle_d_acheminement": "LA CHAPELLE DES MARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24565131355, + 47.4371350794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc89409f0b4d9a21dc3339f6ae05ca7585ed4de4", + "fields": { + "code_commune_insee": "44051", + "nom_de_la_commune": "DERVAL", + "code_postal": "44590", + "coordonnees_gps": [ + 47.6576802483, + -1.67772975598 + ], + "libelle_d_acheminement": "DERVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67772975598, + 47.6576802483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daa045f1404197972686f03ba54c546278379f22", + "fields": { + "code_commune_insee": "44053", + "nom_de_la_commune": "DREFFEAC", + "code_postal": "44530", + "coordonnees_gps": [ + 47.4684630967, + -2.05940448032 + ], + "libelle_d_acheminement": "DREFFEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05940448032, + 47.4684630967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a75bd0098e0292e8634a3e448506cc282106eb46", + "fields": { + "code_commune_insee": "44057", + "nom_de_la_commune": "FEGREAC", + "code_postal": "44460", + "coordonnees_gps": [ + 47.5805909749, + -2.02458187409 + ], + "libelle_d_acheminement": "FEGREAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02458187409, + 47.5805909749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "880da1141fd4405908d5cc3add2b869881ef71a0", + "fields": { + "code_commune_insee": "44065", + "nom_de_la_commune": "GRAND AUVERNE", + "code_postal": "44520", + "coordonnees_gps": [ + 47.5758381027, + -1.31165475959 + ], + "libelle_d_acheminement": "GRAND AUVERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31165475959, + 47.5758381027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fd1611b6172771e7d22c9293e68b49a74702f06", + "fields": { + "code_commune_insee": "44066", + "nom_de_la_commune": "GRANDCHAMPS DES FONTAINES", + "code_postal": "44119", + "coordonnees_gps": [ + 47.3606796643, + -1.61754475868 + ], + "libelle_d_acheminement": "GRANDCHAMPS DES FONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61754475868, + 47.3606796643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77724fab7143739fee76e5749fd53427a22c6fc0", + "fields": { + "code_commune_insee": "44067", + "nom_de_la_commune": "GUEMENE PENFAO", + "code_postal": "44290", + "coordonnees_gps": [ + 47.6278891238, + -1.83077595154 + ], + "libelle_d_acheminement": "GUEMENE PENFAO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83077595154, + 47.6278891238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "540ba3e97ef1e3e16adf8f5f6dfaaa3341d1600b", + "fields": { + "ligne_5": "GUENOUVRY", + "code_commune_insee": "44067", + "libelle_d_acheminement": "GUEMENE PENFAO", + "code_postal": "44290", + "nom_de_la_commune": "GUEMENE PENFAO", + "coordonnees_gps": [ + 47.6278891238, + -1.83077595154 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83077595154, + 47.6278891238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bd31618ee2ec8fa580222cc7b60ed2e3fa9838d", + "fields": { + "ligne_5": "CLIS", + "code_commune_insee": "44069", + "libelle_d_acheminement": "GUERANDE", + "code_postal": "44350", + "nom_de_la_commune": "GUERANDE", + "coordonnees_gps": [ + 47.3313320913, + -2.41703658813 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41703658813, + 47.3313320913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8a84a159f6e48fdc7eeeb7a0b9c2519e311a3b4", + "fields": { + "code_commune_insee": "44070", + "nom_de_la_commune": "LA HAIE FOUASSIERE", + "code_postal": "44690", + "coordonnees_gps": [ + 47.1613180471, + -1.40043269231 + ], + "libelle_d_acheminement": "LA HAIE FOUASSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40043269231, + 47.1613180471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae8fe7048cfa8c0750e2838bc579ad8796443e53", + "fields": { + "ligne_5": "POMPAS", + "code_commune_insee": "44072", + "libelle_d_acheminement": "HERBIGNAC", + "code_postal": "44410", + "nom_de_la_commune": "HERBIGNAC", + "coordonnees_gps": [ + 47.4472411995, + -2.31338629512 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.31338629512, + 47.4472411995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c58622317bdbce37ed9817bf29f6c6d226ece13", + "fields": { + "code_commune_insee": "68335", + "nom_de_la_commune": "THANNENKIRCH", + "code_postal": "68590", + "coordonnees_gps": [ + 48.2332519272, + 7.29366733491 + ], + "libelle_d_acheminement": "THANNENKIRCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29366733491, + 48.2332519272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "059a446f4711c3365f55f78ad2177ab9cd40f2de", + "fields": { + "code_commune_insee": "68337", + "nom_de_la_commune": "TRAUBACH LE HAUT", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6706097792, + 7.09565668471 + ], + "libelle_d_acheminement": "TRAUBACH LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09565668471, + 47.6706097792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4aa2f813691656b12bcc00ea38e284ad6ea565f2", + "fields": { + "code_commune_insee": "68342", + "nom_de_la_commune": "UFFHOLTZ", + "code_postal": "68700", + "coordonnees_gps": [ + 47.829286972, + 7.16505941718 + ], + "libelle_d_acheminement": "UFFHOLTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16505941718, + 47.829286972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80eec2193a04418f625a33fbc3d624bcdf9433f1", + "fields": { + "code_commune_insee": "68351", + "nom_de_la_commune": "VOGELGRUN", + "code_postal": "68600", + "coordonnees_gps": [ + 48.0108661539, + 7.58453738137 + ], + "libelle_d_acheminement": "VOGELGRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58453738137, + 48.0108661539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfd3d2ed8f87aff19b0a0fe46b7034f813a43430", + "fields": { + "code_commune_insee": "68356", + "nom_de_la_commune": "WALHEIM", + "code_postal": "68130", + "coordonnees_gps": [ + 47.6407985178, + 7.27039450439 + ], + "libelle_d_acheminement": "WALHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27039450439, + 47.6407985178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e6edec19df937197fa938bfdf73058f791f7d79", + "fields": { + "code_commune_insee": "68360", + "nom_de_la_commune": "WECKOLSHEIM", + "code_postal": "68600", + "coordonnees_gps": [ + 48.0035606232, + 7.49800748783 + ], + "libelle_d_acheminement": "WECKOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49800748783, + 48.0035606232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e587a11af6b3f8ab9d6d535b8840e2181c979ba1", + "fields": { + "code_commune_insee": "68362", + "nom_de_la_commune": "WENTZWILLER", + "code_postal": "68220", + "coordonnees_gps": [ + 47.5482319467, + 7.4737014861 + ], + "libelle_d_acheminement": "WENTZWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4737014861, + 47.5482319467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33f79c964a4a086688257d5c1f96ce17f47986a8", + "fields": { + "code_commune_insee": "68364", + "nom_de_la_commune": "WESTHALTEN", + "code_postal": "68250", + "coordonnees_gps": [ + 47.9673816891, + 7.25470437901 + ], + "libelle_d_acheminement": "WESTHALTEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25470437901, + 47.9673816891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afcf6f2059eae317d7954009d04f3b943afb0ffb", + "fields": { + "code_commune_insee": "68366", + "nom_de_la_commune": "WICKERSCHWIHR", + "code_postal": "68320", + "coordonnees_gps": [ + 48.1109299734, + 7.4394034579 + ], + "libelle_d_acheminement": "WICKERSCHWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4394034579, + 48.1109299734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fef080c7ead67f0b9b9e3472c1f3a2b8c94bed43", + "fields": { + "code_commune_insee": "68373", + "nom_de_la_commune": "WINKEL", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4588691493, + 7.26354708265 + ], + "libelle_d_acheminement": "WINKEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26354708265, + 47.4588691493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20e3060307b5070c9ced770690b14a19946853d1", + "fields": { + "code_commune_insee": "68377", + "nom_de_la_commune": "WITTERSDORF", + "code_postal": "68130", + "coordonnees_gps": [ + 47.6161807189, + 7.27312864168 + ], + "libelle_d_acheminement": "WITTERSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27312864168, + 47.6161807189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0209187dd92b68c3e1dcf02ebb7315b9478d5482", + "fields": { + "code_commune_insee": "69009", + "nom_de_la_commune": "ANSE", + "code_postal": "69480", + "coordonnees_gps": [ + 45.9422570443, + 4.70796670026 + ], + "libelle_d_acheminement": "ANSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70796670026, + 45.9422570443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57a3a78348ce42dca03819f30c59ef8fc4ae0e8e", + "fields": { + "code_commune_insee": "69012", + "nom_de_la_commune": "LES ARDILLATS", + "code_postal": "69430", + "coordonnees_gps": [ + 46.1887475632, + 4.53644652924 + ], + "libelle_d_acheminement": "LES ARDILLATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53644652924, + 46.1887475632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7fea31751b96fbbea98072c1e823a7fbebfe3f2", + "fields": { + "code_commune_insee": "69016", + "nom_de_la_commune": "AZOLETTE", + "code_postal": "69790", + "coordonnees_gps": [ + 46.1918623777, + 4.41321565621 + ], + "libelle_d_acheminement": "AZOLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41321565621, + 46.1918623777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cacd0f03de35125e8740c5d18cb868824b362e4b", + "fields": { + "ligne_5": "LA BREVENNE", + "code_commune_insee": "69021", + "libelle_d_acheminement": "BESSENAY", + "code_postal": "69690", + "nom_de_la_commune": "BESSENAY", + "coordonnees_gps": [ + 45.774361074, + 4.54738228306 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54738228306, + 45.774361074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19cdfff862544c38e9d9bcf7980c1042b0b70359", + "fields": { + "ligne_5": "LA GIRAUDIERE", + "code_commune_insee": "69021", + "libelle_d_acheminement": "BESSENAY", + "code_postal": "69690", + "nom_de_la_commune": "BESSENAY", + "coordonnees_gps": [ + 45.774361074, + 4.54738228306 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54738228306, + 45.774361074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faaf0b0635ac76a9592caed8747ff8c6c5ee5d80", + "fields": { + "code_commune_insee": "69023", + "nom_de_la_commune": "BLACE", + "code_postal": "69460", + "coordonnees_gps": [ + 46.0346971393, + 4.63561700748 + ], + "libelle_d_acheminement": "BLACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63561700748, + 46.0346971393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a86df365d31cfe890caaf0e4e2b6f2dd89adf69a", + "fields": { + "code_commune_insee": "69039", + "nom_de_la_commune": "CHAMELET", + "code_postal": "69620", + "coordonnees_gps": [ + 45.9847097998, + 4.4986606687 + ], + "libelle_d_acheminement": "CHAMELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4986606687, + 45.9847097998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2930f122763121639bee4d9b9f446d72465326e9", + "fields": { + "code_commune_insee": "69044", + "nom_de_la_commune": "CHARBONNIERES LES BAINS", + "code_postal": "69260", + "coordonnees_gps": [ + 45.7797061972, + 4.74328937073 + ], + "libelle_d_acheminement": "CHARBONNIERES LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74328937073, + 45.7797061972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "623d13fab170c0fc327c9f8924601de4d20d0d3c", + "fields": { + "code_commune_insee": "69045", + "nom_de_la_commune": "CHARENTAY", + "code_postal": "69220", + "coordonnees_gps": [ + 46.0840044201, + 4.68939365571 + ], + "libelle_d_acheminement": "CHARENTAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68939365571, + 46.0840044201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a915131bc860f97574373d1f2fdcb6c02ac514ba", + "fields": { + "code_commune_insee": "69051", + "nom_de_la_commune": "CHAUSSAN", + "code_postal": "69440", + "coordonnees_gps": [ + 45.6374563479, + 4.63446933593 + ], + "libelle_d_acheminement": "CHAUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63446933593, + 45.6374563479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22d751721575c22971082fb3fe0f8fb865c5ffa6", + "fields": { + "ligne_5": "LE RICHOUD", + "code_commune_insee": "69051", + "libelle_d_acheminement": "CHAUSSAN", + "code_postal": "69440", + "nom_de_la_commune": "CHAUSSAN", + "coordonnees_gps": [ + 45.6374563479, + 4.63446933593 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63446933593, + 45.6374563479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7316903bb5e2ccebd9ff5200e67c013bbdce8979", + "fields": { + "code_commune_insee": "69052", + "nom_de_la_commune": "CHAZAY D AZERGUES", + "code_postal": "69380", + "coordonnees_gps": [ + 45.8763096867, + 4.70920946786 + ], + "libelle_d_acheminement": "CHAZAY D AZERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70920946786, + 45.8763096867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c835c00ebbb56ac498e7f89ac325317e01c40470", + "fields": { + "code_commune_insee": "69053", + "nom_de_la_commune": "CHENAS", + "code_postal": "69840", + "coordonnees_gps": [ + 46.2160888331, + 4.70845921605 + ], + "libelle_d_acheminement": "CHENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70845921605, + 46.2160888331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9243eb8ea1c0dbecec302244c8a84d70a1bd2323", + "fields": { + "code_commune_insee": "69054", + "nom_de_la_commune": "CHENELETTE", + "code_postal": "69430", + "coordonnees_gps": [ + 46.1691527375, + 4.49124804928 + ], + "libelle_d_acheminement": "CHENELETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49124804928, + 46.1691527375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cd65b7da7811c6b210e7d5f24bb2a4095384d55", + "fields": { + "code_commune_insee": "69056", + "nom_de_la_commune": "CHESSY", + "code_postal": "69380", + "coordonnees_gps": [ + 45.8906849455, + 4.61639612817 + ], + "libelle_d_acheminement": "CHESSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61639612817, + 45.8906849455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0db2617135dfa2b1cfaff62a3dc7965d93f2c2c6", + "fields": { + "code_commune_insee": "69058", + "nom_de_la_commune": "CHIROUBLES", + "code_postal": "69115", + "coordonnees_gps": [ + 46.1855528278, + 4.65508587528 + ], + "libelle_d_acheminement": "CHIROUBLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65508587528, + 46.1855528278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "685b3196b89ab7161fe3c72f62e45d24e6056d5c", + "fields": { + "code_commune_insee": "69063", + "nom_de_la_commune": "COLLONGES AU MONT D OR", + "code_postal": "69660", + "coordonnees_gps": [ + 45.8220411914, + 4.8419319446 + ], + "libelle_d_acheminement": "COLLONGES AU MONT D OR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8419319446, + 45.8220411914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a825733bb60bd8602b59743b3bdd4c7569996ed", + "fields": { + "code_commune_insee": "69068", + "nom_de_la_commune": "COUZON AU MONT D OR", + "code_postal": "69270", + "coordonnees_gps": [ + 45.8482374264, + 4.82235886103 + ], + "libelle_d_acheminement": "COUZON AU MONT D OR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82235886103, + 45.8482374264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a45072e4351a698b3256dbba7b4e8731350ec11", + "fields": { + "code_commune_insee": "69069", + "nom_de_la_commune": "CRAPONNE", + "code_postal": "69290", + "coordonnees_gps": [ + 45.7462853462, + 4.72672357999 + ], + "libelle_d_acheminement": "CRAPONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72672357999, + 45.7462853462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c64623167a938ca7a4f50c4883ce473be4760589", + "fields": { + "code_commune_insee": "69072", + "nom_de_la_commune": "DARDILLY", + "code_postal": "69570", + "coordonnees_gps": [ + 45.8120018662, + 4.74663974001 + ], + "libelle_d_acheminement": "DARDILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74663974001, + 45.8120018662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "729e8a02959c7c3b4f82114401b4577924b6b0ae", + "fields": { + "code_commune_insee": "69074", + "nom_de_la_commune": "DENICE", + "code_postal": "69640", + "coordonnees_gps": [ + 46.0045607655, + 4.65149773309 + ], + "libelle_d_acheminement": "DENICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65149773309, + 46.0045607655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74957e4b9fdcaef45a555910803486d927a74c6c", + "fields": { + "code_commune_insee": "69075", + "nom_de_la_commune": "DIEME", + "code_postal": "69170", + "coordonnees_gps": [ + 45.9618729575, + 4.46094173485 + ], + "libelle_d_acheminement": "DIEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46094173485, + 45.9618729575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdb9188c4e0637cf17efb53f48b19b3ce7fa68ed", + "fields": { + "code_commune_insee": "69093", + "nom_de_la_commune": "GRANDRIS", + "code_postal": "69870", + "coordonnees_gps": [ + 46.0333930542, + 4.45932733477 + ], + "libelle_d_acheminement": "GRANDRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45932733477, + 46.0333930542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99470b759b427a510ed7b3824caaba02baa1a40e", + "fields": { + "code_commune_insee": "69105", + "nom_de_la_commune": "LACENAS", + "code_postal": "69640", + "coordonnees_gps": [ + 45.986314587, + 4.64749345552 + ], + "libelle_d_acheminement": "LACENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64749345552, + 45.986314587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e066e0238352fdce2022c77ca29da50ce52a0357", + "fields": { + "code_commune_insee": "69108", + "nom_de_la_commune": "LANCIE", + "code_postal": "69220", + "coordonnees_gps": [ + 46.1730373902, + 4.72575548606 + ], + "libelle_d_acheminement": "LANCIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72575548606, + 46.1730373902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7f183dc063b12f5663a1ddcdc6d211b5faedb2b", + "fields": { + "code_commune_insee": "69115", + "nom_de_la_commune": "LIMAS", + "code_postal": "69400", + "coordonnees_gps": [ + 45.9720377921, + 4.71919087739 + ], + "libelle_d_acheminement": "LIMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71919087739, + 45.9720377921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c7a94fc89c38347ae95e861e38aea12b778a9f2", + "fields": { + "code_commune_insee": "69118", + "nom_de_la_commune": "LOIRE SUR RHONE", + "code_postal": "69700", + "coordonnees_gps": [ + 45.5468466677, + 4.78290098079 + ], + "libelle_d_acheminement": "LOIRE SUR RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78290098079, + 45.5468466677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "611f7adefe541166fa7395a7525029d4d657da9d", + "fields": { + "code_commune_insee": "69125", + "nom_de_la_commune": "MARCILLY D AZERGUES", + "code_postal": "69380", + "coordonnees_gps": [ + 45.8679882645, + 4.73091611018 + ], + "libelle_d_acheminement": "MARCILLY D AZERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73091611018, + 45.8679882645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3ab820a8232c43c9779dd804ef447123c03183d", + "fields": { + "ligne_5": "OUROUX", + "code_commune_insee": "69135", + "libelle_d_acheminement": "DEUX GROSNES", + "code_postal": "69860", + "nom_de_la_commune": "DEUX GROSNES", + "coordonnees_gps": [ + 46.2227835629, + 4.51394181008 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51394181008, + 46.2227835629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "718d8fe47924ba4ba1a13475b0bbce20bf7dec95", + "fields": { + "ligne_5": "ST JACQUES DES ARRETS", + "code_commune_insee": "69135", + "libelle_d_acheminement": "DEUX GROSNES", + "code_postal": "69860", + "nom_de_la_commune": "DEUX GROSNES", + "coordonnees_gps": [ + 46.2227835629, + 4.51394181008 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51394181008, + 46.2227835629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b936667b62eb1c64cde0749621b80318911a940c", + "fields": { + "code_commune_insee": "69140", + "nom_de_la_commune": "MORANCE", + "code_postal": "69480", + "coordonnees_gps": [ + 45.8941529725, + 4.69976319866 + ], + "libelle_d_acheminement": "MORANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69976319866, + 45.8941529725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba0e6ebe1858b753daf8144a2d64e821b8cbc3a5", + "fields": { + "code_commune_insee": "69141", + "nom_de_la_commune": "MORNANT", + "code_postal": "69440", + "coordonnees_gps": [ + 45.6159773607, + 4.67379130422 + ], + "libelle_d_acheminement": "MORNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67379130422, + 45.6159773607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d99123b0f35888b61bf2236620d80673b7f55942", + "fields": { + "code_commune_insee": "69148", + "nom_de_la_commune": "ORLIENAS", + "code_postal": "69530", + "coordonnees_gps": [ + 45.6609705564, + 4.72076320026 + ], + "libelle_d_acheminement": "ORLIENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72076320026, + 45.6609705564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78a77ccc8372d6f21502d3a3e75c90109e9978a7", + "fields": { + "code_commune_insee": "69153", + "nom_de_la_commune": "POLEYMIEUX AU MONT D OR", + "code_postal": "69250", + "coordonnees_gps": [ + 45.8552588854, + 4.79477387074 + ], + "libelle_d_acheminement": "POLEYMIEUX AU MONT D OR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79477387074, + 45.8552588854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71d572d8e771414a8634556f2e544005116612ee", + "fields": { + "ligne_5": "LES OLMES", + "code_commune_insee": "69157", + "libelle_d_acheminement": "VINDRY SUR TURDINE", + "code_postal": "69490", + "nom_de_la_commune": "VINDRY SUR TURDINE", + "coordonnees_gps": [ + 45.8770735618, + 4.49571511005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49571511005, + 45.8770735618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1276b8b5d5839681c257fa4779b6bf0ec3ad321", + "fields": { + "ligne_5": "POUILLY LE MONIAL", + "code_commune_insee": "69159", + "libelle_d_acheminement": "PORTE DES PIERRES DOREES", + "code_postal": "69400", + "nom_de_la_commune": "PORTE DES PIERRES DOREES", + "coordonnees_gps": [ + 45.9554021029, + 4.64557594844 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64557594844, + 45.9554021029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8519c36438a4d01cfffd9186aa7cc61d3e4282d5", + "fields": { + "code_commune_insee": "69180", + "nom_de_la_commune": "ST ANDRE LA COTE", + "code_postal": "69440", + "coordonnees_gps": [ + 45.6322671317, + 4.59660370042 + ], + "libelle_d_acheminement": "ST ANDRE LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59660370042, + 45.6322671317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffb32c8366749b0d2136687e30a9d76218646a98", + "fields": { + "code_commune_insee": "69182", + "nom_de_la_commune": "ST BONNET DES BRUYERES", + "code_postal": "69790", + "coordonnees_gps": [ + 46.2663774591, + 4.47201345248 + ], + "libelle_d_acheminement": "ST BONNET DES BRUYERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47201345248, + 46.2663774591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2650363073777e72a664cb567637de70dcc30e60", + "fields": { + "code_commune_insee": "69186", + "nom_de_la_commune": "ST CLEMENT DE VERS", + "code_postal": "69790", + "coordonnees_gps": [ + 46.2265960037, + 4.40852585704 + ], + "libelle_d_acheminement": "ST CLEMENT DE VERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40852585704, + 46.2265960037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b07523c943f942478e71cb2e0384e7d3625ea0a", + "fields": { + "code_commune_insee": "69199", + "nom_de_la_commune": "ST FONS", + "code_postal": "69190", + "coordonnees_gps": [ + 45.7011050588, + 4.85046367008 + ], + "libelle_d_acheminement": "ST FONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85046367008, + 45.7011050588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1c4ead08f2b40e40b0572580215d0f11802101c", + "fields": { + "code_commune_insee": "69200", + "nom_de_la_commune": "ST FORGEUX", + "code_postal": "69490", + "coordonnees_gps": [ + 45.8538939544, + 4.46335108066 + ], + "libelle_d_acheminement": "ST FORGEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46335108066, + 45.8538939544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "623a3a1ec7eb23aae4d35e9bb63a20083832d62e", + "fields": { + "code_commune_insee": "69201", + "nom_de_la_commune": "STE FOY L ARGENTIERE", + "code_postal": "69610", + "coordonnees_gps": [ + 45.7046028711, + 4.4705436953 + ], + "libelle_d_acheminement": "STE FOY L ARGENTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4705436953, + 45.7046028711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9961844094ecfccce4bdb996731b98a0c79ceaa4", + "fields": { + "code_commune_insee": "69206", + "nom_de_la_commune": "ST GEORGES DE RENEINS", + "code_postal": "69830", + "coordonnees_gps": [ + 46.0576323656, + 4.72069943417 + ], + "libelle_d_acheminement": "ST GEORGES DE RENEINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72069943417, + 46.0576323656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0020fba3fb3a5a51d9f40c442727ecd4b1509274", + "fields": { + "code_commune_insee": "69215", + "nom_de_la_commune": "ST JULIEN", + "code_postal": "69640", + "coordonnees_gps": [ + 46.022493145, + 4.65158431759 + ], + "libelle_d_acheminement": "ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65158431759, + 46.022493145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "636fd2d554a26c21e5b5c4d87b3e9db948b7f7ea", + "fields": { + "code_commune_insee": "69216", + "nom_de_la_commune": "ST JULIEN SUR BIBOST", + "code_postal": "69690", + "coordonnees_gps": [ + 45.800286879, + 4.50990648734 + ], + "libelle_d_acheminement": "ST JULIEN SUR BIBOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50990648734, + 45.800286879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3da75c4be4b381881bbcd2728fcd6c47a425e794", + "fields": { + "code_commune_insee": "69217", + "nom_de_la_commune": "ST JUST D AVRAY", + "code_postal": "69870", + "coordonnees_gps": [ + 45.9996999746, + 4.4526558128 + ], + "libelle_d_acheminement": "ST JUST D AVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4526558128, + 45.9996999746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0046b35861d6f264d742a8c7fcbad144a2a3b14e", + "fields": { + "code_commune_insee": "69220", + "nom_de_la_commune": "ST LAURENT DE CHAMOUSSET", + "code_postal": "69930", + "coordonnees_gps": [ + 45.7378229671, + 4.46479069472 + ], + "libelle_d_acheminement": "ST LAURENT DE CHAMOUSSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46479069472, + 45.7378229671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4d7c91e6cd34dd9e4d85773471539a2bc39e01c", + "fields": { + "code_commune_insee": "69227", + "nom_de_la_commune": "ST MARTIN EN HAUT", + "code_postal": "69850", + "coordonnees_gps": [ + 45.658238601, + 4.55827258271 + ], + "libelle_d_acheminement": "ST MARTIN EN HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55827258271, + 45.658238601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b77a2fd665d5adf9db6d63f90ba07348ff0d4c5", + "fields": { + "code_commune_insee": "69233", + "nom_de_la_commune": "ST ROMAIN AU MONT D OR", + "code_postal": "69270", + "coordonnees_gps": [ + 45.8355530258, + 4.82084858556 + ], + "libelle_d_acheminement": "ST ROMAIN AU MONT D OR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82084858556, + 45.8355530258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d36ce6ef0e04ddd1cee1a054c1e07fb51806209c", + "fields": { + "code_commune_insee": "69240", + "nom_de_la_commune": "ST VINCENT DE REINS", + "code_postal": "69240", + "coordonnees_gps": [ + 46.0739597884, + 4.38622082272 + ], + "libelle_d_acheminement": "ST VINCENT DE REINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38622082272, + 46.0739597884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ba83ef197b4794d8f297e2e5028fca15ec50e57", + "fields": { + "ligne_5": "LE BATARD", + "code_commune_insee": "69241", + "libelle_d_acheminement": "TALUYERS", + "code_postal": "69440", + "nom_de_la_commune": "TALUYERS", + "coordonnees_gps": [ + 45.6362754046, + 4.72434330862 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72434330862, + 45.6362754046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c4abd40d44bfbc9408cb2c11e0d712760c6acd1", + "fields": { + "code_commune_insee": "69244", + "nom_de_la_commune": "TASSIN LA DEMI LUNE", + "code_postal": "69160", + "coordonnees_gps": [ + 45.7628681769, + 4.75540595543 + ], + "libelle_d_acheminement": "TASSIN LA DEMI LUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75540595543, + 45.7628681769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66a7fcab7088e8c8c6dca31bfc8219e9d4af4869", + "fields": { + "ligne_5": "BOURG DE THIZY", + "code_commune_insee": "69248", + "libelle_d_acheminement": "THIZY LES BOURGS", + "code_postal": "69240", + "nom_de_la_commune": "THIZY LES BOURGS", + "coordonnees_gps": [ + 46.0302777714, + 4.31390305209 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31390305209, + 46.0302777714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f50c46708d6f4474d74f95d3cfc159735874a55d", + "fields": { + "code_commune_insee": "69250", + "nom_de_la_commune": "LA TOUR DE SALVAGNY", + "code_postal": "69890", + "coordonnees_gps": [ + 45.8104377668, + 4.7123892929 + ], + "libelle_d_acheminement": "LA TOUR DE SALVAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7123892929, + 45.8104377668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "315cf56a07988895aa06b76e93f7402ecc9d1d35", + "fields": { + "code_commune_insee": "69266", + "nom_de_la_commune": "VILLEURBANNE", + "code_postal": "69100", + "coordonnees_gps": [ + 45.7707704179, + 4.88845817426 + ], + "libelle_d_acheminement": "VILLEURBANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88845817426, + 45.7707704179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edc69f27f232c2c8e2b96999160b2ef502bc183a", + "fields": { + "ligne_5": "SEPT CHEMINS", + "code_commune_insee": "69268", + "libelle_d_acheminement": "VOURLES", + "code_postal": "69390", + "nom_de_la_commune": "VOURLES", + "coordonnees_gps": [ + 45.6578547027, + 4.76815797121 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76815797121, + 45.6578547027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21d292c18159487ef525ff8e60d317f99d3e9252", + "fields": { + "code_commune_insee": "69269", + "nom_de_la_commune": "YZERON", + "code_postal": "69510", + "coordonnees_gps": [ + 45.7095752496, + 4.59542617149 + ], + "libelle_d_acheminement": "YZERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59542617149, + 45.7095752496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcd65e01e36d8a3e1fe0843f15e54b16c447712c", + "fields": { + "ligne_5": "LE MOLARD", + "code_commune_insee": "69275", + "libelle_d_acheminement": "DECINES CHARPIEU", + "code_postal": "69150", + "nom_de_la_commune": "DECINES CHARPIEU", + "coordonnees_gps": [ + 45.7717277447, + 4.96142704635 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96142704635, + 45.7717277447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e45a39d8a6a97be71a5dc9adfb5641366feed5be", + "fields": { + "code_commune_insee": "69291", + "nom_de_la_commune": "ST SYMPHORIEN D OZON", + "code_postal": "69360", + "coordonnees_gps": [ + 45.6421326765, + 4.86880371042 + ], + "libelle_d_acheminement": "ST SYMPHORIEN D OZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86880371042, + 45.6421326765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e553e5a25afc31249f0de26e158c60790735ddf1", + "fields": { + "ligne_5": "SAINT EXUPERY AEROPORT", + "code_commune_insee": "69299", + "libelle_d_acheminement": "COLOMBIER SAUGNIEU", + "code_postal": "69125", + "nom_de_la_commune": "COLOMBIER SAUGNIEU", + "coordonnees_gps": [ + 45.7178013267, + 5.10337456661 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10337456661, + 45.7178013267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fce6829f12ca7d4bb1fb732058d8f28d00d3c17b", + "fields": { + "code_commune_insee": "69381", + "nom_de_la_commune": "LYON 01", + "code_postal": "69001", + "coordonnees_gps": [ + 45.7699284397, + 4.82922464978 + ], + "libelle_d_acheminement": "LYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82922464978, + 45.7699284397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bda6d9742b50492552472e582dc5df768a81e3f6", + "fields": { + "code_commune_insee": "69388", + "nom_de_la_commune": "LYON 08", + "code_postal": "69008", + "coordonnees_gps": [ + 45.7342034691, + 4.86935722305 + ], + "libelle_d_acheminement": "LYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86935722305, + 45.7342034691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ebdace0e9161fc26c7bf5bf5ae091cd11291fa9", + "fields": { + "code_commune_insee": "70010", + "nom_de_la_commune": "ALAINCOURT", + "code_postal": "70210", + "coordonnees_gps": [ + 47.9462772767, + 6.09996609571 + ], + "libelle_d_acheminement": "ALAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09996609571, + 47.9462772767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1b371a52913ee7ef69afc2185697999cf3dc3fa", + "fields": { + "code_commune_insee": "70012", + "nom_de_la_commune": "AMANCE", + "code_postal": "70160", + "coordonnees_gps": [ + 47.7905088546, + 6.05331685795 + ], + "libelle_d_acheminement": "AMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05331685795, + 47.7905088546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "263c0cd21e2a9bd3fbe23d34ea7b778290f0d73c", + "fields": { + "code_commune_insee": "70020", + "nom_de_la_commune": "ANDELARROT", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5782409483, + 6.09869200788 + ], + "libelle_d_acheminement": "ANDELARROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09869200788, + 47.5782409483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "575ff6c9d1a1179c931577796a681529568c79a3", + "fields": { + "code_commune_insee": "70023", + "nom_de_la_commune": "ANJEUX", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8815041686, + 6.20949435555 + ], + "libelle_d_acheminement": "ANJEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20949435555, + 47.8815041686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9991b2d6bdf69a71ac800538220bcfbd6a4f43bc", + "fields": { + "code_commune_insee": "70024", + "nom_de_la_commune": "APREMONT", + "code_postal": "70100", + "coordonnees_gps": [ + 47.3925481381, + 5.52972879286 + ], + "libelle_d_acheminement": "APREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52972879286, + 47.3925481381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bc4c5454fc70afe6e86a2afceae7aad204b2982", + "fields": { + "code_commune_insee": "70031", + "nom_de_la_commune": "ATHESANS ETROITEFONTAINE", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5942889134, + 6.51510882516 + ], + "libelle_d_acheminement": "ATHESANS ETROITEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51510882516, + 47.5942889134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bedff27cd39f4c6796bc5fd33ef438db448bf78e", + "fields": { + "code_commune_insee": "70035", + "nom_de_la_commune": "AUGICOURT", + "code_postal": "70500", + "coordonnees_gps": [ + 47.7699166638, + 5.89160778933 + ], + "libelle_d_acheminement": "AUGICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89160778933, + 47.7699166638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40fa3ca1525cf78378a86acd13c20773e0dc7ae9", + "fields": { + "code_commune_insee": "70045", + "nom_de_la_commune": "AVRIGNEY VIREY", + "code_postal": "70150", + "coordonnees_gps": [ + 47.3393039112, + 5.77571250318 + ], + "libelle_d_acheminement": "AVRIGNEY VIREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77571250318, + 47.3393039112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb1a746425c22fada366a8e56d4b5d4bb8699319", + "fields": { + "code_commune_insee": "70062", + "nom_de_la_commune": "BELMONT", + "code_postal": "70270", + "coordonnees_gps": [ + 47.7810349094, + 6.49795396276 + ], + "libelle_d_acheminement": "BELMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49795396276, + 47.7810349094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "898a1e788568734646a9e10765ac5c43d8caac69", + "fields": { + "code_commune_insee": "70065", + "nom_de_la_commune": "BESNANS", + "code_postal": "70230", + "coordonnees_gps": [ + 47.4498117838, + 6.25184787392 + ], + "libelle_d_acheminement": "BESNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25184787392, + 47.4498117838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "254333a596fa7378da57aec7ad338556158a14b2", + "fields": { + "code_commune_insee": "70066", + "nom_de_la_commune": "BETAUCOURT", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8654216499, + 5.91855303569 + ], + "libelle_d_acheminement": "BETAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91855303569, + 47.8654216499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfe8ad7829025d944077c374228bf1c6b4adcf50", + "fields": { + "code_commune_insee": "70067", + "nom_de_la_commune": "BETONCOURT LES BROTTE", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7376750192, + 6.34326141895 + ], + "libelle_d_acheminement": "BETONCOURT LES BROTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34326141895, + 47.7376750192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0a693bfc75e38df46165998da99330000ebf935", + "fields": { + "code_commune_insee": "70084", + "nom_de_la_commune": "BOULOT", + "code_postal": "70190", + "coordonnees_gps": [ + 47.3549256777, + 5.9599297677 + ], + "libelle_d_acheminement": "BOULOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9599297677, + 47.3549256777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13e25f82904e9e45c07fc78aa2f722053860329b", + "fields": { + "code_commune_insee": "70088", + "nom_de_la_commune": "BOURGUIGNON LES LA CHARITE", + "code_postal": "70190", + "coordonnees_gps": [ + 47.5075942378, + 5.96493598181 + ], + "libelle_d_acheminement": "BOURGUIGNON LES LA CHARITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96493598181, + 47.5075942378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97bc31e4f792bcf8b120d6ea1e617c24efca55d4", + "fields": { + "code_commune_insee": "70092", + "nom_de_la_commune": "BRESILLEY", + "code_postal": "70140", + "coordonnees_gps": [ + 47.261991269, + 5.63291616251 + ], + "libelle_d_acheminement": "BRESILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63291616251, + 47.261991269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9db50bb23909099a088cdcc72afee22ec31a1789", + "fields": { + "code_commune_insee": "70093", + "nom_de_la_commune": "BREUCHES", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7994742775, + 6.32850280633 + ], + "libelle_d_acheminement": "BREUCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32850280633, + 47.7994742775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14da48831acdb911430a1d00d3d734006cf12536", + "fields": { + "code_commune_insee": "70094", + "nom_de_la_commune": "BREUCHOTTE", + "code_postal": "70280", + "coordonnees_gps": [ + 47.8306439459, + 6.46183176358 + ], + "libelle_d_acheminement": "BREUCHOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46183176358, + 47.8306439459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a68f070a4c9a097f83125c601e5f914fa0303e9", + "fields": { + "code_commune_insee": "70098", + "nom_de_la_commune": "BROTTE LES LUXEUIL", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7503614149, + 6.34512671998 + ], + "libelle_d_acheminement": "BROTTE LES LUXEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34512671998, + 47.7503614149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "536e1e8a5385367066bc9e39139c756dd4190a4c", + "fields": { + "code_commune_insee": "70099", + "nom_de_la_commune": "BROTTE LES RAY", + "code_postal": "70180", + "coordonnees_gps": [ + 47.6070557473, + 5.73659108691 + ], + "libelle_d_acheminement": "BROTTE LES RAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73659108691, + 47.6070557473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4881ce628755530a4793edc89ebcb481c81bdd17", + "fields": { + "code_commune_insee": "70101", + "nom_de_la_commune": "BROYE AUBIGNEY MONTSEUGNY", + "code_postal": "70140", + "coordonnees_gps": [ + 47.3305692734, + 5.5187191763 + ], + "libelle_d_acheminement": "BROYE AUBIGNEY MONTSEUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5187191763, + 47.3305692734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0413b554f3272fcfd79e8dc807d50ae627166fb2", + "fields": { + "code_commune_insee": "70103", + "nom_de_la_commune": "LA BRUYERE", + "code_postal": "70280", + "coordonnees_gps": [ + 47.8126908026, + 6.46989789296 + ], + "libelle_d_acheminement": "LA BRUYERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46989789296, + 47.8126908026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "845d36fc5b1f11943d6c3f74abb2e4eddbd4b21b", + "fields": { + "code_commune_insee": "70106", + "nom_de_la_commune": "BUFFIGNECOURT", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8133675755, + 6.02218860068 + ], + "libelle_d_acheminement": "BUFFIGNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02218860068, + 47.8133675755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6da1a8237b9f6f4642fd558cabc91508401f4d73", + "fields": { + "code_commune_insee": "70109", + "nom_de_la_commune": "BUTHIERS", + "code_postal": "70190", + "coordonnees_gps": [ + 47.3568392049, + 6.03220137434 + ], + "libelle_d_acheminement": "BUTHIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03220137434, + 47.3568392049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe04f5f427d1a8500c7ba729d5fcb529f4f4f734", + "fields": { + "code_commune_insee": "70111", + "nom_de_la_commune": "CALMOUTIER", + "code_postal": "70240", + "coordonnees_gps": [ + 47.6443877301, + 6.28291281829 + ], + "libelle_d_acheminement": "CALMOUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28291281829, + 47.6443877301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38bf2eddc8f7c3391de231851108ddcd558b69af", + "fields": { + "code_commune_insee": "70118", + "nom_de_la_commune": "CHAMBORNAY LES BELLEVAUX", + "code_postal": "70190", + "coordonnees_gps": [ + 47.3958807638, + 6.10214510229 + ], + "libelle_d_acheminement": "CHAMBORNAY LES BELLEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10214510229, + 47.3958807638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "893a9fc07703117f495f31263c9d4e6fa2cb2d82", + "fields": { + "code_commune_insee": "70121", + "nom_de_la_commune": "CHAMPEY", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5906494715, + 6.67908440422 + ], + "libelle_d_acheminement": "CHAMPEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67908440422, + 47.5906494715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d0f252ccb0fb2afe9528b0d3186702cb4efda62", + "fields": { + "code_commune_insee": "70124", + "nom_de_la_commune": "CHAMPTONNAY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.3758996781, + 5.6613436663 + ], + "libelle_d_acheminement": "CHAMPTONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6613436663, + 47.3758996781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b9b3eca15490db1c8c4b3964b272e6e236775cf", + "fields": { + "code_commune_insee": "70135", + "nom_de_la_commune": "CHARMES ST VALBERT", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7316041443, + 5.70856900371 + ], + "libelle_d_acheminement": "CHARMES ST VALBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70856900371, + 47.7316041443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6ffbe49021de360594b796ab89377501f6ff080", + "fields": { + "code_commune_insee": "70140", + "nom_de_la_commune": "CHATENEY", + "code_postal": "70240", + "coordonnees_gps": [ + 47.6974623495, + 6.31908566249 + ], + "libelle_d_acheminement": "CHATENEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31908566249, + 47.6974623495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "371f420d034e2f577f84c98bd24d0bb5af831cf5", + "fields": { + "code_commune_insee": "70141", + "nom_de_la_commune": "CHATENOIS", + "code_postal": "70240", + "coordonnees_gps": [ + 47.6842959157, + 6.31922142817 + ], + "libelle_d_acheminement": "CHATENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31922142817, + 47.6842959157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3cfdeca0e574d9723484889dcc87fa8220afb6d", + "fields": { + "code_commune_insee": "70151", + "nom_de_la_commune": "CHEVIGNEY", + "code_postal": "70140", + "coordonnees_gps": [ + 47.3300952571, + 5.58746755741 + ], + "libelle_d_acheminement": "CHEVIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58746755741, + 47.3300952571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c97020f833f4b5e3fedd8e0a50bc5ec9bf28d2e0", + "fields": { + "code_commune_insee": "70156", + "nom_de_la_commune": "CITEY", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4397388319, + 5.78910667479 + ], + "libelle_d_acheminement": "CITEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78910667479, + 47.4397388319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "686b478493e570e9b6734d668c7bd2f531429ae4", + "fields": { + "code_commune_insee": "70160", + "nom_de_la_commune": "COISEVAUX", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5880541275, + 6.70710563724 + ], + "libelle_d_acheminement": "COISEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70710563724, + 47.5880541275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44584efd768cb23bb3512edc2056d6895690ac3a", + "fields": { + "code_commune_insee": "70162", + "nom_de_la_commune": "COLOMBE LES VESOUL", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6121777534, + 6.22089003773 + ], + "libelle_d_acheminement": "COLOMBE LES VESOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22089003773, + 47.6121777534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fa13622e709a5d504504cd483c0ff0a045133ed", + "fields": { + "code_commune_insee": "70170", + "nom_de_la_commune": "CONTREGLISE", + "code_postal": "70160", + "coordonnees_gps": [ + 47.8413661613, + 6.02951411465 + ], + "libelle_d_acheminement": "CONTREGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02951411465, + 47.8413661613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5d277fe30dd14624113bb9f646e776d3b6a76f3", + "fields": { + "code_commune_insee": "70176", + "nom_de_la_commune": "CORRAVILLERS", + "code_postal": "70310", + "coordonnees_gps": [ + 47.8871053896, + 6.6423540417 + ], + "libelle_d_acheminement": "CORRAVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6423540417, + 47.8871053896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04b926014c45b7c1afb7698ea0f2e1e164259d6e", + "fields": { + "code_commune_insee": "70177", + "nom_de_la_commune": "CORRE", + "code_postal": "70500", + "coordonnees_gps": [ + 47.9178171926, + 5.99346216699 + ], + "libelle_d_acheminement": "CORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99346216699, + 47.9178171926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e944fa73fdfacecaa126111079c53859cebf40e1", + "fields": { + "ligne_5": "COLOMBE LES BITHAINE", + "code_commune_insee": "70195", + "libelle_d_acheminement": "DAMBENOIT LES COLOMBE", + "code_postal": "70200", + "nom_de_la_commune": "DAMBENOIT LES COLOMBE", + "coordonnees_gps": [ + 47.7225685602, + 6.3779909866 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3779909866, + 47.7225685602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db117d79c4e2e18c1f3ef203b47f273be5ad5f4e", + "fields": { + "code_commune_insee": "70197", + "nom_de_la_commune": "DAMPIERRE SUR LINOTTE", + "code_postal": "70230", + "coordonnees_gps": [ + 47.5328760062, + 6.24208585386 + ], + "libelle_d_acheminement": "DAMPIERRE SUR LINOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24208585386, + 47.5328760062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90541b6318d2c22cb31999fc7e1ac9cdae6f52ed", + "fields": { + "code_commune_insee": "70205", + "nom_de_la_commune": "ECHAVANNE", + "code_postal": "70400", + "coordonnees_gps": [ + 47.6577226817, + 6.72413298347 + ], + "libelle_d_acheminement": "ECHAVANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72413298347, + 47.6577226817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "652729781b659554a54d573e6a71a2a504b31ece", + "fields": { + "code_commune_insee": "70207", + "nom_de_la_commune": "ECHENOZ LA MELINE", + "code_postal": "70000", + "coordonnees_gps": [ + 47.593506841, + 6.13717389546 + ], + "libelle_d_acheminement": "ECHENOZ LA MELINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13717389546, + 47.593506841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cf7cde0a831a2b931295f10e0c36ead46b41ac0", + "fields": { + "code_commune_insee": "70211", + "nom_de_la_commune": "ECUELLE", + "code_postal": "70600", + "coordonnees_gps": [ + 47.5524124907, + 5.54810358865 + ], + "libelle_d_acheminement": "ECUELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54810358865, + 47.5524124907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aa2546ab103698db3782d11d4e9f0a3ba2afd0d", + "fields": { + "code_commune_insee": "70213", + "nom_de_la_commune": "EHUNS", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7656859341, + 6.30499154261 + ], + "libelle_d_acheminement": "EHUNS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30499154261, + 47.7656859341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ee56c9c299d24c123335d0f6a76cc79882d7f07", + "fields": { + "code_commune_insee": "70218", + "nom_de_la_commune": "ESMOULINS", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4115991244, + 5.55921608276 + ], + "libelle_d_acheminement": "ESMOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55921608276, + 47.4115991244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "326c06f2edd100eab68725af74b8680364f9ad02", + "fields": { + "code_commune_insee": "70221", + "nom_de_la_commune": "ETOBON", + "code_postal": "70400", + "coordonnees_gps": [ + 47.6435035631, + 6.67741473141 + ], + "libelle_d_acheminement": "ETOBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67741473141, + 47.6435035631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "848f58ca81d06fa9c9fdd9c6cad50bf63859a2db", + "fields": { + "ligne_5": "PORT D ATELIER", + "code_commune_insee": "70228", + "libelle_d_acheminement": "FAVERNEY", + "code_postal": "70160", + "nom_de_la_commune": "FAVERNEY", + "coordonnees_gps": [ + 47.7661040283, + 6.07998850446 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07998850446, + 47.7661040283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db158dde23de18c5d9615c69d23719d4c809e634", + "fields": { + "code_commune_insee": "70231", + "nom_de_la_commune": "FERRIERES LES RAY", + "code_postal": "70130", + "coordonnees_gps": [ + 47.5794056888, + 5.79410220252 + ], + "libelle_d_acheminement": "FERRIERES LES RAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79410220252, + 47.5794056888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07319b9b2e0fae50859f514484a0b87027cc17b8", + "fields": { + "code_commune_insee": "70232", + "nom_de_la_commune": "FERRIERES LES SCEY", + "code_postal": "70360", + "coordonnees_gps": [ + 47.6601846416, + 6.00409146195 + ], + "libelle_d_acheminement": "FERRIERES LES SCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00409146195, + 47.6601846416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "409212b115592a0e33a6192d0e1dc10d081b705e", + "fields": { + "code_commune_insee": "70247", + "nom_de_la_commune": "FOUVENT ST ANDOCHE", + "code_postal": "70600", + "coordonnees_gps": [ + 47.6505541505, + 5.6722095809 + ], + "libelle_d_acheminement": "FOUVENT ST ANDOCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6722095809, + 47.6505541505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2735a88923710e3e33852cbdcb087309d20719fd", + "fields": { + "code_commune_insee": "70251", + "nom_de_la_commune": "FRANCOURT", + "code_postal": "70180", + "coordonnees_gps": [ + 47.6545449376, + 5.73384333602 + ], + "libelle_d_acheminement": "FRANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73384333602, + 47.6545449376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc4724b35fbc672688cb97f203dc7c8d83cb91d9", + "fields": { + "code_commune_insee": "70255", + "nom_de_la_commune": "FRESNE ST MAMES", + "code_postal": "70130", + "coordonnees_gps": [ + 47.5529496769, + 5.85669124269 + ], + "libelle_d_acheminement": "FRESNE ST MAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85669124269, + 47.5529496769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66390a3d80c17109b50d9b3ab8bf3082e40968a5", + "fields": { + "code_commune_insee": "70256", + "nom_de_la_commune": "FRESSE", + "code_postal": "70270", + "coordonnees_gps": [ + 47.76130687, + 6.6753666512 + ], + "libelle_d_acheminement": "FRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6753666512, + 47.76130687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b0ef4d139ac1b94362bf8682ef2818ba9cbcf11", + "fields": { + "code_commune_insee": "70261", + "nom_de_la_commune": "FROTEY LES VESOUL", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6293186194, + 6.19415622549 + ], + "libelle_d_acheminement": "FROTEY LES VESOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19415622549, + 47.6293186194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abb8c73713cc80a53c26d7fb8a5b55492b629b4c", + "fields": { + "code_commune_insee": "70264", + "nom_de_la_commune": "GEORFANS", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5338346388, + 6.51269421338 + ], + "libelle_d_acheminement": "GEORFANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51269421338, + 47.5338346388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05af0de594fb7eac295ae101f697e620a450ed84", + "fields": { + "code_commune_insee": "70274", + "nom_de_la_commune": "GRANDECOURT", + "code_postal": "70120", + "coordonnees_gps": [ + 47.6362713068, + 5.85990201791 + ], + "libelle_d_acheminement": "GRANDECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85990201791, + 47.6362713068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a2d1371797218d183c51f09d694deeb3dd3b38a", + "fields": { + "code_commune_insee": "70278", + "nom_de_la_commune": "GRATTERY", + "code_postal": "70170", + "coordonnees_gps": [ + 47.6725586831, + 6.08230172573 + ], + "libelle_d_acheminement": "GRATTERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08230172573, + 47.6725586831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f27262c12816827915b461ea3922f72116dfb9dd", + "fields": { + "code_commune_insee": "70282", + "nom_de_la_commune": "GY", + "code_postal": "70700", + "coordonnees_gps": [ + 47.402856646, + 5.80618920641 + ], + "libelle_d_acheminement": "GY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80618920641, + 47.402856646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8b2d9a16c696c8da89b2523958ba61279bb7cc3", + "fields": { + "code_commune_insee": "70283", + "nom_de_la_commune": "HAUT DU THEM CHATEAU LAMBERT", + "code_postal": "70440", + "coordonnees_gps": [ + 47.8372151662, + 6.74620306195 + ], + "libelle_d_acheminement": "HAUT DU THEM CHATEAU LAMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74620306195, + 47.8372151662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37f92afd8aa16a5e6de7a087490d8fd1d95e2352", + "fields": { + "code_commune_insee": "70284", + "nom_de_la_commune": "HAUTEVELLE", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8415266844, + 6.29533875186 + ], + "libelle_d_acheminement": "HAUTEVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29533875186, + 47.8415266844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d63961859892e60086c7bf8774d2f961e3abdaff", + "fields": { + "code_commune_insee": "70285", + "nom_de_la_commune": "HERICOURT", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5698613671, + 6.76517349246 + ], + "libelle_d_acheminement": "HERICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76517349246, + 47.5698613671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c2a04eff8f88a493a04a4edbfaf889421295fdb", + "fields": { + "code_commune_insee": "70287", + "nom_de_la_commune": "HURECOURT", + "code_postal": "70210", + "coordonnees_gps": [ + 47.9044830745, + 6.05726153484 + ], + "libelle_d_acheminement": "HURECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05726153484, + 47.9044830745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a083d1d41120a548fadaddebdc402790c3156093", + "fields": { + "code_commune_insee": "70304", + "nom_de_la_commune": "LINEXERT", + "code_postal": "70200", + "coordonnees_gps": [ + 47.743058957, + 6.4853079749 + ], + "libelle_d_acheminement": "LINEXERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4853079749, + 47.743058957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c355040b471f9ca02b14b114b97516d904f2e1bf", + "fields": { + "code_commune_insee": "70318", + "nom_de_la_commune": "MAGNY DANIGON", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6813542817, + 6.61123865136 + ], + "libelle_d_acheminement": "MAGNY DANIGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61123865136, + 47.6813542817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b423ada2ad182320e16a716fe33da06d6166893", + "fields": { + "code_commune_insee": "70325", + "nom_de_la_commune": "MAIZIERES", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4958191986, + 6.00891758003 + ], + "libelle_d_acheminement": "MAIZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00891758003, + 47.4958191986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "723983b116f484349ba8177adc59f27d9c9e6c5a", + "fields": { + "code_commune_insee": "70335", + "nom_de_la_commune": "MAUSSANS", + "code_postal": "70230", + "coordonnees_gps": [ + 47.4361781142, + 6.24655907971 + ], + "libelle_d_acheminement": "MAUSSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24655907971, + 47.4361781142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a930659feccc1c041d62d7baf42d3c6feb59619b", + "fields": { + "code_commune_insee": "70340", + "nom_de_la_commune": "MEMBREY", + "code_postal": "70180", + "coordonnees_gps": [ + 47.585270996, + 5.75013289833 + ], + "libelle_d_acheminement": "MEMBREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75013289833, + 47.585270996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6da6b14acf75f3c0bc746b40f366d9f5b2ab834", + "fields": { + "code_commune_insee": "70341", + "nom_de_la_commune": "MENOUX", + "code_postal": "70160", + "coordonnees_gps": [ + 47.8101680875, + 6.10172191211 + ], + "libelle_d_acheminement": "MENOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10172191211, + 47.8101680875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b658def9e3f5e3e42ce74a47f1aefc58f76d8cb", + "fields": { + "code_commune_insee": "70342", + "nom_de_la_commune": "MERCEY SUR SAONE", + "code_postal": "70130", + "coordonnees_gps": [ + 47.5239276742, + 5.72810930864 + ], + "libelle_d_acheminement": "MERCEY SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72810930864, + 47.5239276742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cb4eaee46730eea3e2be08827125df075f94b8a", + "fields": { + "code_commune_insee": "70348", + "nom_de_la_commune": "MOFFANS ET VACHERESSE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6277773291, + 6.54883327411 + ], + "libelle_d_acheminement": "MOFFANS ET VACHERESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54883327411, + 47.6277773291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "834cccdc3b4f4427845d98db2ab7fc79974aa15d", + "fields": { + "code_commune_insee": "70355", + "nom_de_la_commune": "MONTARLOT LES RIOZ", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4176155928, + 5.99917917055 + ], + "libelle_d_acheminement": "MONTARLOT LES RIOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99917917055, + 47.4176155928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7dec1b77bdf847b679ba0a18a1b48dabd3b8060", + "fields": { + "code_commune_insee": "70358", + "nom_de_la_commune": "MONTCEY", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6500350881, + 6.23995648406 + ], + "libelle_d_acheminement": "MONTCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23995648406, + 47.6500350881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6eb247ec875926bd78b329b0e68b84a8466a0ccc", + "fields": { + "code_commune_insee": "70361", + "nom_de_la_commune": "MONTESSAUX", + "code_postal": "70270", + "coordonnees_gps": [ + 47.7375144324, + 6.5647568741 + ], + "libelle_d_acheminement": "MONTESSAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5647568741, + 47.7375144324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c34c056e4ba8dff8292b017c0a443debf9d8fd7", + "fields": { + "code_commune_insee": "70383", + "nom_de_la_commune": "NEUVELLE LES CROMARY", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4079331287, + 6.06801697703 + ], + "libelle_d_acheminement": "NEUVELLE LES CROMARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06801697703, + 47.4079331287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d38c6739e8b11fff72d356cc58c93566209a90f", + "fields": { + "code_commune_insee": "70386", + "nom_de_la_commune": "LA NEUVELLE LES SCEY", + "code_postal": "70360", + "coordonnees_gps": [ + 47.7015222908, + 5.94028495484 + ], + "libelle_d_acheminement": "LA NEUVELLE LES SCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94028495484, + 47.7015222908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f5a128e5e0d99dc4c43a52f0d25c1655059e161", + "fields": { + "code_commune_insee": "70387", + "nom_de_la_commune": "NOIDANS LE FERROUX", + "code_postal": "70130", + "coordonnees_gps": [ + 47.5676980089, + 5.94846873016 + ], + "libelle_d_acheminement": "NOIDANS LE FERROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94846873016, + 47.5676980089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b913a0f0e2523c3c7349510dc16fe2e23147235", + "fields": { + "code_commune_insee": "70398", + "nom_de_la_commune": "ORMOICHE", + "code_postal": "70300", + "coordonnees_gps": [ + 47.8144662323, + 6.30160249808 + ], + "libelle_d_acheminement": "ORMOICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30160249808, + 47.8144662323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28bd7e39b55ff9f633c2da04c32a0569d5357b7d", + "fields": { + "code_commune_insee": "70402", + "nom_de_la_commune": "OYRIERES", + "code_postal": "70600", + "coordonnees_gps": [ + 47.5290658651, + 5.57358052333 + ], + "libelle_d_acheminement": "OYRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57358052333, + 47.5290658651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63aeab03430234fbe6ea228d60e54616954ef0ff", + "fields": { + "code_commune_insee": "70404", + "nom_de_la_commune": "PASSAVANT LA ROCHERE", + "code_postal": "70210", + "coordonnees_gps": [ + 47.9842695238, + 6.05556415808 + ], + "libelle_d_acheminement": "PASSAVANT LA ROCHERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05556415808, + 47.9842695238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75e540e45266c98498945825e6993b1eaa3bcf04", + "fields": { + "code_commune_insee": "70410", + "nom_de_la_commune": "PIN", + "code_postal": "70150", + "coordonnees_gps": [ + 47.3392778996, + 5.85895219188 + ], + "libelle_d_acheminement": "PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85895219188, + 47.3392778996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f4049ba3a14eeb0c7541f9325f013f04cff5ed7", + "fields": { + "code_commune_insee": "70413", + "nom_de_la_commune": "PLANCHER BAS", + "code_postal": "70290", + "coordonnees_gps": [ + 47.7231669962, + 6.73487477028 + ], + "libelle_d_acheminement": "PLANCHER BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73487477028, + 47.7231669962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f12ff46a117390cb267386575f9e2098e57d361", + "fields": { + "code_commune_insee": "70420", + "nom_de_la_commune": "PONT SUR L OGNON", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5189006507, + 6.38822321386 + ], + "libelle_d_acheminement": "PONT SUR L OGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38822321386, + 47.5189006507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d10c6e353434d6f7acc53503d0c0cc32e82f05a6", + "fields": { + "code_commune_insee": "70422", + "nom_de_la_commune": "POYANS", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4443035685, + 5.47650052222 + ], + "libelle_d_acheminement": "POYANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47650052222, + 47.4443035685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5659ec55c8b921906ff4a2a0506b5edd63b16c02", + "fields": { + "code_commune_insee": "70428", + "nom_de_la_commune": "PUSEY", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6516903952, + 6.12098049033 + ], + "libelle_d_acheminement": "PUSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12098049033, + 47.6516903952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a985ee58756704d71e93375e30393f2a85d7aef", + "fields": { + "ligne_5": "LES FONTENIS", + "code_commune_insee": "70447", + "libelle_d_acheminement": "RIOZ", + "code_postal": "70190", + "nom_de_la_commune": "RIOZ", + "coordonnees_gps": [ + 47.4373192173, + 6.07568807889 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07568807889, + 47.4373192173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6885c3d5ff2b07d0bce7aa06425bcd7cac302675", + "fields": { + "code_commune_insee": "70452", + "nom_de_la_commune": "ROSEY", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5587435232, + 6.02112272894 + ], + "libelle_d_acheminement": "ROSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02112272894, + 47.5587435232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b43cac34fe5c8491834ad816567ca22060ee9068", + "fields": { + "code_commune_insee": "70463", + "nom_de_la_commune": "ST GAND", + "code_postal": "70130", + "coordonnees_gps": [ + 47.508338203, + 5.83393822546 + ], + "libelle_d_acheminement": "ST GAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83393822546, + 47.508338203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d96bd5f76cba223ff03444734f05ec6df8d2d12", + "fields": { + "ligne_5": "NANTOUARD", + "code_commune_insee": "70466", + "libelle_d_acheminement": "ST LOUP NANTOUARD", + "code_postal": "70100", + "nom_de_la_commune": "ST LOUP NANTOUARD", + "coordonnees_gps": [ + 47.4305059621, + 5.72854485774 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72854485774, + 47.4305059621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fabd1bd00efe01aabb695a84008e67a2fddce42", + "fields": { + "code_commune_insee": "70477", + "nom_de_la_commune": "SAULNOT", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5703099756, + 6.62953525499 + ], + "libelle_d_acheminement": "SAULNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62953525499, + 47.5703099756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05df15cfd5e8e8b1322cc58bb3657b853aa30c2b", + "fields": { + "code_commune_insee": "70481", + "nom_de_la_commune": "SAVOYEUX", + "code_postal": "70130", + "coordonnees_gps": [ + 47.5470516036, + 5.73627689065 + ], + "libelle_d_acheminement": "SAVOYEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73627689065, + 47.5470516036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b414a953a0b636838b8fc4e03d4b647910c130ed", + "fields": { + "code_commune_insee": "70482", + "nom_de_la_commune": "SCEY SUR SAONE ET ST ALBIN", + "code_postal": "70360", + "coordonnees_gps": [ + 47.6798278841, + 5.96387998278 + ], + "libelle_d_acheminement": "SCEY SUR SAONE ET ST ALBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96387998278, + 47.6798278841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98d41acf0437ea0f450306ba3eedb1716bc93430", + "fields": { + "code_commune_insee": "70484", + "nom_de_la_commune": "SECENANS", + "code_postal": "70400", + "coordonnees_gps": [ + 47.548679436, + 6.56746247212 + ], + "libelle_d_acheminement": "SECENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56746247212, + 47.548679436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7897a1bbdc7bf86af9b700cf9d1d43b1a5d7dfea", + "fields": { + "code_commune_insee": "70485", + "nom_de_la_commune": "SELLES", + "code_postal": "70210", + "coordonnees_gps": [ + 47.9720841546, + 6.09157358569 + ], + "libelle_d_acheminement": "SELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09157358569, + 47.9720841546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e48740ef90d190e857a08dff759081086ebf763", + "fields": { + "code_commune_insee": "70496", + "nom_de_la_commune": "TARTECOURT", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8399254984, + 5.97669885968 + ], + "libelle_d_acheminement": "TARTECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97669885968, + 47.8399254984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "012c76e5de9543d3c3e9834a36093299e9233988", + "fields": { + "code_commune_insee": "70507", + "nom_de_la_commune": "TRESILLEY", + "code_postal": "70190", + "coordonnees_gps": [ + 47.44510679, + 6.0276765683 + ], + "libelle_d_acheminement": "TRESILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0276765683, + 47.44510679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a5ae03dc949c8ebab3fe669a23ca452bb8a3045", + "fields": { + "code_commune_insee": "70516", + "nom_de_la_commune": "VALLEROIS LE BOIS", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5524024642, + 6.2989589565 + ], + "libelle_d_acheminement": "VALLEROIS LE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2989589565, + 47.5524024642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bba5098a52f827e3c1e36c53356a61c5b60e903", + "fields": { + "code_commune_insee": "70518", + "nom_de_la_commune": "LE VAL ST ELOI", + "code_postal": "70160", + "coordonnees_gps": [ + 47.7444513672, + 6.17780909313 + ], + "libelle_d_acheminement": "LE VAL ST ELOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17780909313, + 47.7444513672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee606fa7ca6989ec974603c112014eda75add99b", + "fields": { + "code_commune_insee": "70525", + "nom_de_la_commune": "VAUCONCOURT NERVEZAIN", + "code_postal": "70120", + "coordonnees_gps": [ + 47.657168298, + 5.83264558833 + ], + "libelle_d_acheminement": "VAUCONCOURT NERVEZAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83264558833, + 47.657168298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "232e7378ffa0eb0501bf12f916042b3e4b5df9ce", + "fields": { + "ligne_5": "ECHEVANNE", + "code_commune_insee": "70528", + "libelle_d_acheminement": "VELESMES ECHEVANNE", + "code_postal": "70100", + "nom_de_la_commune": "VELESMES ECHEVANNE", + "coordonnees_gps": [ + 47.421541856, + 5.69067658656 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69067658656, + 47.421541856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b33d47d426898f14270de8eaad03200e3c3f5b59", + "fields": { + "code_commune_insee": "70529", + "nom_de_la_commune": "VELET", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4258350219, + 5.56489492159 + ], + "libelle_d_acheminement": "VELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56489492159, + 47.4258350219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c4b809baab837a48ca8682287d025c7c1bef010", + "fields": { + "code_commune_insee": "70530", + "nom_de_la_commune": "VELLECHEVREUX ET COURBENANS", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5413124373, + 6.54443417858 + ], + "libelle_d_acheminement": "VELLECHEVREUX ET COURBENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54443417858, + 47.5413124373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa55ae6ba04cd6906b78adac9b483e949c8bb26f", + "fields": { + "code_commune_insee": "70533", + "nom_de_la_commune": "VELLEFREY ET VELLEFRANGE", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4434504028, + 5.81383880863 + ], + "libelle_d_acheminement": "VELLEFREY ET VELLEFRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81383880863, + 47.4434504028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "920b959e16e5fdeb3d96f520339de6d5a1e00edf", + "fields": { + "code_commune_insee": "70536", + "nom_de_la_commune": "VELLE LE CHATEL", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5867750201, + 6.05578313726 + ], + "libelle_d_acheminement": "VELLE LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05578313726, + 47.5867750201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d739a44dc3f16ecd058981abbdb0dfde43c4c1b", + "fields": { + "code_commune_insee": "70540", + "nom_de_la_commune": "VELLOREILLE LES CHOYE", + "code_postal": "70700", + "coordonnees_gps": [ + 47.390189566, + 5.72389415506 + ], + "libelle_d_acheminement": "VELLOREILLE LES CHOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72389415506, + 47.390189566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b52a0a392bb3cd178bf66cd101f54609f2290397", + "fields": { + "code_commune_insee": "70552", + "nom_de_la_commune": "VILLAFANS", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5819931692, + 6.47563792817 + ], + "libelle_d_acheminement": "VILLAFANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47563792817, + 47.5819931692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ca1c8ac799978e134550067654f7a6eecd4822f", + "fields": { + "code_commune_insee": "70553", + "nom_de_la_commune": "VILLARGENT", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5420470778, + 6.48586205018 + ], + "libelle_d_acheminement": "VILLARGENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48586205018, + 47.5420470778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b37637e571dc9dcd2ed99b584fd0016e271c489", + "fields": { + "code_commune_insee": "70558", + "nom_de_la_commune": "LA VILLENEUVE BELLENOYE LA MAIZE", + "code_postal": "70240", + "coordonnees_gps": [ + 47.7099462261, + 6.24130408921 + ], + "libelle_d_acheminement": "LA VILLENEUVE BELLENOYE LA MAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24130408921, + 47.7099462261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "638cfa7e03d3d13c0c8b19ba70b4c104dbfd791d", + "fields": { + "code_commune_insee": "70560", + "nom_de_la_commune": "VILLERS BOUTON", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4496113899, + 5.97526749135 + ], + "libelle_d_acheminement": "VILLERS BOUTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97526749135, + 47.4496113899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46eefeca1338d215f1e64aff8c1336f7896c7102", + "fields": { + "code_commune_insee": "70562", + "nom_de_la_commune": "VILLERS LA VILLE", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5502733142, + 6.4666688568 + ], + "libelle_d_acheminement": "VILLERS LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4666688568, + 47.5502733142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30839160b510cf37fd1ead8cb30c4fb7e1882f95", + "fields": { + "code_commune_insee": "70563", + "nom_de_la_commune": "VILLERS LE SEC", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5827042725, + 6.23899893135 + ], + "libelle_d_acheminement": "VILLERS LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23899893135, + 47.5827042725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afc5b74348c20c6c362bea1531466689500518f8", + "fields": { + "code_commune_insee": "70566", + "nom_de_la_commune": "VILLERS SUR PORT", + "code_postal": "70170", + "coordonnees_gps": [ + 47.713815334, + 6.08321182678 + ], + "libelle_d_acheminement": "VILLERS SUR PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08321182678, + 47.713815334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d48490e01675a4b988d99bcdd43256493e5fd3c2", + "fields": { + "code_commune_insee": "70572", + "nom_de_la_commune": "VITREY SUR MANCE", + "code_postal": "70500", + "coordonnees_gps": [ + 47.812015486, + 5.75797516664 + ], + "libelle_d_acheminement": "VITREY SUR MANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75797516664, + 47.812015486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dfa231cfc84504a0b10a10be2f8714eaeb354e1", + "fields": { + "code_commune_insee": "70578", + "nom_de_la_commune": "VREGILLE", + "code_postal": "70150", + "coordonnees_gps": [ + 47.3308670504, + 5.8868762035 + ], + "libelle_d_acheminement": "VREGILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8868762035, + 47.3308670504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6278b2df79ac355c20485be577811b02937d6539", + "fields": { + "code_commune_insee": "70579", + "nom_de_la_commune": "VYANS LE VAL", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5502849273, + 6.76152440954 + ], + "libelle_d_acheminement": "VYANS LE VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76152440954, + 47.5502849273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4602525faeee2045c35630fe68955ce5b7a6139", + "fields": { + "code_commune_insee": "71002", + "nom_de_la_commune": "L ABERGEMENT STE COLOMBE", + "code_postal": "71370", + "coordonnees_gps": [ + 46.754037733, + 5.0286449583 + ], + "libelle_d_acheminement": "L ABERGEMENT STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0286449583, + 46.754037733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e69c9c57df25a7365821bea1aec43abc4716d391", + "fields": { + "code_commune_insee": "71014", + "nom_de_la_commune": "AUTUN", + "code_postal": "71400", + "coordonnees_gps": [ + 46.945536773, + 4.31060069532 + ], + "libelle_d_acheminement": "AUTUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31060069532, + 46.945536773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1a9d7dbf203406fa9ed44c9f1d567b4bf4fa923", + "fields": { + "code_commune_insee": "71015", + "nom_de_la_commune": "AUXY", + "code_postal": "71400", + "coordonnees_gps": [ + 46.9410622998, + 4.41734656437 + ], + "libelle_d_acheminement": "AUXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41734656437, + 46.9410622998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f785bd78b131673406909a6aeb781e1c03ea705", + "fields": { + "code_commune_insee": "71020", + "nom_de_la_commune": "BARNAY", + "code_postal": "71540", + "coordonnees_gps": [ + 47.0852204967, + 4.32108474276 + ], + "libelle_d_acheminement": "BARNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32108474276, + 47.0852204967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01e5f950e426f3e4d3db75f8987b3d045f74c34f", + "fields": { + "code_commune_insee": "71022", + "nom_de_la_commune": "BAUDEMONT", + "code_postal": "71800", + "coordonnees_gps": [ + 46.2935955045, + 4.28502745064 + ], + "libelle_d_acheminement": "BAUDEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28502745064, + 46.2935955045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14577cab3682ea76abf41377c0561ea15601eed5", + "fields": { + "code_commune_insee": "71030", + "nom_de_la_commune": "BERGESSERIN", + "code_postal": "71250", + "coordonnees_gps": [ + 46.3990910615, + 4.56240663444 + ], + "libelle_d_acheminement": "BERGESSERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56240663444, + 46.3990910615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28b00d6ac0dce073750a62bd24983f5df944c7e8", + "fields": { + "ligne_5": "BERGESSERIN LA CHATELAINE", + "code_commune_insee": "71030", + "libelle_d_acheminement": "BERGESSERIN", + "code_postal": "71250", + "nom_de_la_commune": "BERGESSERIN", + "coordonnees_gps": [ + 46.3990910615, + 4.56240663444 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56240663444, + 46.3990910615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6f04574d6fa1180a841ebe8fba2925e49e48b64", + "fields": { + "code_commune_insee": "71031", + "nom_de_la_commune": "BERZE LE CHATEL", + "code_postal": "71960", + "coordonnees_gps": [ + 46.3957782254, + 4.68241463331 + ], + "libelle_d_acheminement": "BERZE LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68241463331, + 46.3957782254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cc9d4d402fb23779841a6187410a2c187d5e37c", + "fields": { + "code_commune_insee": "71033", + "nom_de_la_commune": "BEY", + "code_postal": "71620", + "coordonnees_gps": [ + 46.8212987385, + 4.96979880981 + ], + "libelle_d_acheminement": "BEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96979880981, + 46.8212987385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f676d053cc55a3ab95dadd3a02f3ac84e6978b9", + "fields": { + "code_commune_insee": "71038", + "nom_de_la_commune": "LES BIZOTS", + "code_postal": "71710", + "coordonnees_gps": [ + 46.7515452356, + 4.38270809741 + ], + "libelle_d_acheminement": "LES BIZOTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38270809741, + 46.7515452356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c71fe2072048ff5a7e35056d809f58a2203c1136", + "fields": { + "code_commune_insee": "71041", + "nom_de_la_commune": "BOIS STE MARIE", + "code_postal": "71800", + "coordonnees_gps": [ + 46.3321423377, + 4.35330322456 + ], + "libelle_d_acheminement": "BOIS STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35330322456, + 46.3321423377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "326c67553329dd2509ea8de1b9ea24e35b739ab9", + "fields": { + "code_commune_insee": "71050", + "nom_de_la_commune": "BOURGVILAIN", + "code_postal": "71520", + "coordonnees_gps": [ + 46.3647474088, + 4.63745643185 + ], + "libelle_d_acheminement": "BOURGVILAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63745643185, + 46.3647474088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4507762e106dac4456b12239356022c8555a78c7", + "fields": { + "code_commune_insee": "71051", + "nom_de_la_commune": "BOUZERON", + "code_postal": "71150", + "coordonnees_gps": [ + 46.8915695256, + 4.72745431658 + ], + "libelle_d_acheminement": "BOUZERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72745431658, + 46.8915695256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "091a25686001e0a444629edb84808d3157f19e54", + "fields": { + "code_commune_insee": "71052", + "nom_de_la_commune": "BOYER", + "code_postal": "71700", + "coordonnees_gps": [ + 46.5997643138, + 4.90335376574 + ], + "libelle_d_acheminement": "BOYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90335376574, + 46.5997643138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7833a836617f92bffb932f84ca3677acaae1a0c9", + "fields": { + "code_commune_insee": "71061", + "nom_de_la_commune": "BRIENNE", + "code_postal": "71290", + "coordonnees_gps": [ + 46.5560939784, + 5.02368261906 + ], + "libelle_d_acheminement": "BRIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02368261906, + 46.5560939784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faffb04f35b85a04e805fc557179d667f5546fed", + "fields": { + "code_commune_insee": "71079", + "nom_de_la_commune": "CHAMPAGNAT", + "code_postal": "71480", + "coordonnees_gps": [ + 46.4834634223, + 5.36915009557 + ], + "libelle_d_acheminement": "CHAMPAGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36915009557, + 46.4834634223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdf4914f19b6cda7121e8f2be02a09450d2a1c9f", + "fields": { + "code_commune_insee": "71081", + "nom_de_la_commune": "CHAMPFORGEUIL", + "code_postal": "71530", + "coordonnees_gps": [ + 46.8156309692, + 4.82545441016 + ], + "libelle_d_acheminement": "CHAMPFORGEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82545441016, + 46.8156309692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "608b8ded9e1c39433cb361c6ab36dacf13e392ee", + "fields": { + "code_commune_insee": "71087", + "nom_de_la_commune": "CHAPAIZE", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5529585412, + 4.73602422687 + ], + "libelle_d_acheminement": "CHAPAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73602422687, + 46.5529585412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b084f92197b15b90af4bd00fd4aab0d2adee0644", + "fields": { + "code_commune_insee": "71088", + "nom_de_la_commune": "LA CHAPELLE AU MANS", + "code_postal": "71130", + "coordonnees_gps": [ + 46.6290281598, + 3.97752672203 + ], + "libelle_d_acheminement": "LA CHAPELLE AU MANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97752672203, + 46.6290281598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "339706d4dfd6e1910ff5f674f85dbb05e5e4f7b5", + "fields": { + "code_commune_insee": "71096", + "nom_de_la_commune": "LA CHAPELLE SOUS UCHON", + "code_postal": "71190", + "coordonnees_gps": [ + 46.8348259179, + 4.24313052371 + ], + "libelle_d_acheminement": "LA CHAPELLE SOUS UCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24313052371, + 46.8348259179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eea0bc0a1f35f1a3dada1c191f19b108bfa84eb6", + "fields": { + "code_commune_insee": "71107", + "nom_de_la_commune": "CHARRECEY", + "code_postal": "71510", + "coordonnees_gps": [ + 46.8363564868, + 4.66839372197 + ], + "libelle_d_acheminement": "CHARRECEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66839372197, + 46.8363564868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7396fc3c07241e057857cd7b88c1298bf4ff554", + "fields": { + "code_commune_insee": "71109", + "nom_de_la_commune": "CHASSEY LE CAMP", + "code_postal": "71150", + "coordonnees_gps": [ + 46.8874072539, + 4.70297479178 + ], + "libelle_d_acheminement": "CHASSEY LE CAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70297479178, + 46.8874072539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16e7abd0fcf90189d03ea44fd3b69b2231858701", + "fields": { + "code_commune_insee": "71110", + "nom_de_la_commune": "CHASSIGNY SOUS DUN", + "code_postal": "71170", + "coordonnees_gps": [ + 46.2375878745, + 4.29248216952 + ], + "libelle_d_acheminement": "CHASSIGNY SOUS DUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29248216952, + 46.2375878745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01177c6a1d202fb43b18faada9826279ad2def2f", + "fields": { + "code_commune_insee": "71111", + "nom_de_la_commune": "CHASSY", + "code_postal": "71130", + "coordonnees_gps": [ + 46.5832260551, + 4.11167998063 + ], + "libelle_d_acheminement": "CHASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11167998063, + 46.5832260551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cc03bc38ab7a0e90ddadb739d275e795e9861d3", + "fields": { + "code_commune_insee": "71115", + "nom_de_la_commune": "CHATEL MORON", + "code_postal": "71510", + "coordonnees_gps": [ + 46.7908182989, + 4.637184003 + ], + "libelle_d_acheminement": "CHATEL MORON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.637184003, + 46.7908182989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9647c822c022702e157f0c342f91001520b3bc9a", + "fields": { + "code_commune_insee": "71117", + "nom_de_la_commune": "CHATENOY EN BRESSE", + "code_postal": "71380", + "coordonnees_gps": [ + 46.7936385088, + 4.91410813762 + ], + "libelle_d_acheminement": "CHATENOY EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91410813762, + 46.7936385088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "339281b234f3506cf412db3f2f8094b34c618cb6", + "fields": { + "code_commune_insee": "71118", + "nom_de_la_commune": "CHATENOY LE ROYAL", + "code_postal": "71880", + "coordonnees_gps": [ + 46.788588171, + 4.8058563943 + ], + "libelle_d_acheminement": "CHATENOY LE ROYAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8058563943, + 46.788588171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7e4103968428a5d6468e8990960be3ab33154b2", + "fields": { + "code_commune_insee": "71122", + "nom_de_la_commune": "CHEILLY LES MARANGES", + "code_postal": "71150", + "coordonnees_gps": [ + 46.8926365567, + 4.66641980553 + ], + "libelle_d_acheminement": "CHEILLY LES MARANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66641980553, + 46.8926365567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7e4e5fee3ba2b8a0fb37c995449b352e8db8d83", + "fields": { + "code_commune_insee": "71127", + "nom_de_la_commune": "CHEVAGNY SUR GUYE", + "code_postal": "71220", + "coordonnees_gps": [ + 46.5403336038, + 4.50069717167 + ], + "libelle_d_acheminement": "CHEVAGNY SUR GUYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50069717167, + 46.5403336038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b94ee1b4a70dc18a6495e75e3ecbe58c7d494196", + "fields": { + "ligne_5": "MONTAGNY SUR GROSNE", + "code_commune_insee": "71134", + "libelle_d_acheminement": "NAVOUR SUR GROSNE", + "code_postal": "71520", + "nom_de_la_commune": "NAVOUR SUR GROSNE", + "coordonnees_gps": [ + 46.3661832627, + 4.58968637273 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58968637273, + 46.3661832627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3abab3cf480c2c23740d6ee82b16e1786f82b62a", + "fields": { + "code_commune_insee": "71136", + "nom_de_la_commune": "CLESSY", + "code_postal": "71130", + "coordonnees_gps": [ + 46.5558912899, + 4.08579941536 + ], + "libelle_d_acheminement": "CLESSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08579941536, + 46.5558912899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51325458ac7de03eab714403c56a515848a25d36", + "fields": { + "code_commune_insee": "71142", + "nom_de_la_commune": "LA COMELLE", + "code_postal": "71990", + "coordonnees_gps": [ + 46.8809529598, + 4.11919829871 + ], + "libelle_d_acheminement": "LA COMELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11919829871, + 46.8809529598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f26d60dba7b765d65ade7002ed7ea473b409f4a", + "fields": { + "code_commune_insee": "71161", + "nom_de_la_commune": "CURDIN", + "code_postal": "71130", + "coordonnees_gps": [ + 46.5930182243, + 3.99722029696 + ], + "libelle_d_acheminement": "CURDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99722029696, + 46.5930182243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce98c5a191f65e2f1a31a5520784de937e6dcb3f", + "fields": { + "code_commune_insee": "71163", + "nom_de_la_commune": "CURTIL SOUS BUFFIERES", + "code_postal": "71520", + "coordonnees_gps": [ + 46.4027317458, + 4.52645305897 + ], + "libelle_d_acheminement": "CURTIL SOUS BUFFIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52645305897, + 46.4027317458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc06eac95a4fa804b6406e40de61242028860b44", + "fields": { + "code_commune_insee": "71169", + "nom_de_la_commune": "DAVAYE", + "code_postal": "71960", + "coordonnees_gps": [ + 46.3037816172, + 4.74869737883 + ], + "libelle_d_acheminement": "DAVAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74869737883, + 46.3037816172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "623e6479b8054632c1b3bdb8692846ce997e3911", + "fields": { + "code_commune_insee": "71171", + "nom_de_la_commune": "DENNEVY", + "code_postal": "71510", + "coordonnees_gps": [ + 46.8656403196, + 4.64491140945 + ], + "libelle_d_acheminement": "DENNEVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64491140945, + 46.8656403196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f331bb7f87172930549384626502ae239f8dcef7", + "fields": { + "code_commune_insee": "71189", + "nom_de_la_commune": "EPERVANS", + "code_postal": "71380", + "coordonnees_gps": [ + 46.7457712756, + 4.90239745895 + ], + "libelle_d_acheminement": "EPERVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90239745895, + 46.7457712756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8aeb396556bbc7eb75089760dd26e0a095ccbb24", + "fields": { + "code_commune_insee": "71190", + "nom_de_la_commune": "EPINAC", + "code_postal": "71360", + "coordonnees_gps": [ + 46.9908631777, + 4.51976953086 + ], + "libelle_d_acheminement": "EPINAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51976953086, + 46.9908631777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1615197cad74c1c406319bb4347270f79284aeaa", + "fields": { + "code_commune_insee": "71195", + "nom_de_la_commune": "FARGES LES MACON", + "code_postal": "71700", + "coordonnees_gps": [ + 46.5117669109, + 4.9115948195 + ], + "libelle_d_acheminement": "FARGES LES MACON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9115948195, + 46.5117669109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51ea906e6344abf0aedcddeed6d401d9de60f14a", + "fields": { + "code_commune_insee": "71205", + "nom_de_la_commune": "FRANGY EN BRESSE", + "code_postal": "71330", + "coordonnees_gps": [ + 46.7194233644, + 5.33221685118 + ], + "libelle_d_acheminement": "FRANGY EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33221685118, + 46.7194233644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62c75ce53d42308e5b51983fd47bed44e9549e21", + "fields": { + "code_commune_insee": "71206", + "nom_de_la_commune": "LA FRETTE", + "code_postal": "71440", + "coordonnees_gps": [ + 46.6412331111, + 5.04960758377 + ], + "libelle_d_acheminement": "LA FRETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04960758377, + 46.6412331111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e42ba48009027feb6cd815af10be3d2168290918", + "fields": { + "code_commune_insee": "71208", + "nom_de_la_commune": "FRONTENARD", + "code_postal": "71270", + "coordonnees_gps": [ + 46.8991001814, + 5.16314384306 + ], + "libelle_d_acheminement": "FRONTENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16314384306, + 46.8991001814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbd4facf48a14f104cd8608a9069252839d69403", + "fields": { + "code_commune_insee": "71209", + "nom_de_la_commune": "FRONTENAUD", + "code_postal": "71580", + "coordonnees_gps": [ + 46.5482784948, + 5.29083572414 + ], + "libelle_d_acheminement": "FRONTENAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29083572414, + 46.5482784948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1a745fda682250fa6582d8ff67ba2f51ab05dc5", + "fields": { + "code_commune_insee": "71210", + "nom_de_la_commune": "FUISSE", + "code_postal": "71960", + "coordonnees_gps": [ + 46.2791382816, + 4.74647735926 + ], + "libelle_d_acheminement": "FUISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74647735926, + 46.2791382816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fba63dfdd48d2b9aeb27b60b6b991725393166f0", + "fields": { + "code_commune_insee": "71226", + "nom_de_la_commune": "GREVILLY", + "code_postal": "71700", + "coordonnees_gps": [ + 46.5129383908, + 4.81939958218 + ], + "libelle_d_acheminement": "GREVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81939958218, + 46.5129383908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df7da2b4e49d747ce023925dae249ad6a4feb8c2", + "fields": { + "code_commune_insee": "71228", + "nom_de_la_commune": "GUERFAND", + "code_postal": "71620", + "coordonnees_gps": [ + 46.782165395, + 5.02905971383 + ], + "libelle_d_acheminement": "GUERFAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02905971383, + 46.782165395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc174a934553e0bd25c9ff098048999976023cfd", + "fields": { + "code_commune_insee": "71229", + "nom_de_la_commune": "LES GUERREAUX", + "code_postal": "71160", + "coordonnees_gps": [ + 46.5400960877, + 3.92347814201 + ], + "libelle_d_acheminement": "LES GUERREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92347814201, + 46.5400960877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3010e2676af861c02a971bac9687bcc88b54b4b3", + "fields": { + "code_commune_insee": "71230", + "nom_de_la_commune": "GUEUGNON", + "code_postal": "71130", + "coordonnees_gps": [ + 46.5939761041, + 4.0493689292 + ], + "libelle_d_acheminement": "GUEUGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0493689292, + 46.5939761041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e003b2ba382e70a3fa6d2b31c39983174d07821f", + "fields": { + "code_commune_insee": "71231", + "nom_de_la_commune": "LA GUICHE", + "code_postal": "71220", + "coordonnees_gps": [ + 46.5288680917, + 4.44086956543 + ], + "libelle_d_acheminement": "LA GUICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44086956543, + 46.5288680917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a49f87bbb2b95fc5523de24fd90d034b83a01c74", + "fields": { + "code_commune_insee": "71235", + "nom_de_la_commune": "HURIGNY", + "code_postal": "71870", + "coordonnees_gps": [ + 46.3429969068, + 4.79636186257 + ], + "libelle_d_acheminement": "HURIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79636186257, + 46.3429969068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edc61dc7c9f7acb5e81878b42bfc2b581e23f371", + "fields": { + "code_commune_insee": "71237", + "nom_de_la_commune": "IGORNAY", + "code_postal": "71540", + "coordonnees_gps": [ + 47.0569683621, + 4.37872566745 + ], + "libelle_d_acheminement": "IGORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37872566745, + 47.0569683621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d8c5868e842324c04282ce64f04d01fc00c72e6", + "fields": { + "code_commune_insee": "71240", + "nom_de_la_commune": "JALOGNY", + "code_postal": "71250", + "coordonnees_gps": [ + 46.4126361231, + 4.6349159927 + ], + "libelle_d_acheminement": "JALOGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6349159927, + 46.4126361231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a1a285fbdb22d1a721d22957970cfb35a9ba55f", + "fields": { + "code_commune_insee": "71251", + "nom_de_la_commune": "LAIZY", + "code_postal": "71190", + "coordonnees_gps": [ + 46.9108484487, + 4.18328808367 + ], + "libelle_d_acheminement": "LAIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18328808367, + 46.9108484487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69aee10a7795485f1fc133b9a77726da5ae48c38", + "fields": { + "code_commune_insee": "71255", + "nom_de_la_commune": "LESME", + "code_postal": "71140", + "coordonnees_gps": [ + 46.6481584864, + 3.72120388217 + ], + "libelle_d_acheminement": "LESME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72120388217, + 46.6481584864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d6eca19ba6b28027bc831ebb5376cc2321197ea", + "fields": { + "code_commune_insee": "71258", + "nom_de_la_commune": "LEYNES", + "code_postal": "71570", + "coordonnees_gps": [ + 46.2647305147, + 4.72937186217 + ], + "libelle_d_acheminement": "LEYNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72937186217, + 46.2647305147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebaff6a551d9385f7e88b30d9205164d83e3ef12", + "fields": { + "code_commune_insee": "71261", + "nom_de_la_commune": "LOISY", + "code_postal": "71290", + "coordonnees_gps": [ + 46.5904043725, + 5.01289765681 + ], + "libelle_d_acheminement": "LOISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01289765681, + 46.5904043725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1602847b6fba29e6ff9a90667a5842c79e9f0cf7", + "fields": { + "code_commune_insee": "71262", + "nom_de_la_commune": "LONGEPIERRE", + "code_postal": "71270", + "coordonnees_gps": [ + 46.9339285323, + 5.20327520847 + ], + "libelle_d_acheminement": "LONGEPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20327520847, + 46.9339285323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4df8f6542bbce498b5cdfd5495fb3603408ceffe", + "fields": { + "code_commune_insee": "71268", + "nom_de_la_commune": "LUGNY LES CHAROLLES", + "code_postal": "71120", + "coordonnees_gps": [ + 46.4112364438, + 4.20394785541 + ], + "libelle_d_acheminement": "LUGNY LES CHAROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20394785541, + 46.4112364438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50b4bc4734a31f9f635c1e693d8b547b738168fc", + "fields": { + "code_commune_insee": "71270", + "nom_de_la_commune": "MACON", + "code_postal": "71000", + "coordonnees_gps": [ + 46.3205511756, + 4.81842529639 + ], + "libelle_d_acheminement": "MACON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81842529639, + 46.3205511756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eaf2ceb7dcbe96954f5b1bf5bc61bca4bc6f99b", + "fields": { + "ligne_5": "LOCHE", + "code_commune_insee": "71270", + "libelle_d_acheminement": "MACON", + "code_postal": "71000", + "nom_de_la_commune": "MACON", + "coordonnees_gps": [ + 46.3205511756, + 4.81842529639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81842529639, + 46.3205511756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9d5c123cb5389551a2a8bf6113b8940a7d69a55", + "fields": { + "ligne_5": "ST JEAN LE PRICHE", + "code_commune_insee": "71270", + "libelle_d_acheminement": "MACON", + "code_postal": "71000", + "nom_de_la_commune": "MACON", + "coordonnees_gps": [ + 46.3205511756, + 4.81842529639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81842529639, + 46.3205511756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2158e93ed9200148e7d3f0850c404109c026f0c2", + "fields": { + "ligne_5": "BOURGNEUF VAL D OR", + "code_commune_insee": "71294", + "libelle_d_acheminement": "MERCUREY", + "code_postal": "71640", + "nom_de_la_commune": "MERCUREY", + "coordonnees_gps": [ + 46.834318433, + 4.72413233505 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72413233505, + 46.834318433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d626920e75cb55a6597db888a7eae7f155e85a1a", + "fields": { + "code_commune_insee": "71302", + "nom_de_la_commune": "MONTAGNY LES BUXY", + "code_postal": "71390", + "coordonnees_gps": [ + 46.7050483061, + 4.66958139328 + ], + "libelle_d_acheminement": "MONTAGNY LES BUXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66958139328, + 46.7050483061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45f07e13ed4806385e67415d20335cd15bca7a52", + "fields": { + "code_commune_insee": "71305", + "nom_de_la_commune": "MONTBELLET", + "code_postal": "71260", + "coordonnees_gps": [ + 46.4713429723, + 4.8783736486 + ], + "libelle_d_acheminement": "MONTBELLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8783736486, + 46.4713429723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87d7585123426c1de7db9932a5e0a16a9e52dba3", + "fields": { + "code_commune_insee": "71307", + "nom_de_la_commune": "MONTCEAUX L ETOILE", + "code_postal": "71110", + "coordonnees_gps": [ + 46.3564508429, + 4.04500323823 + ], + "libelle_d_acheminement": "MONTCEAUX L ETOILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04500323823, + 46.3564508429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd5f1c05b608683bf01c72efe0997d36d26f51c6", + "fields": { + "code_commune_insee": "71310", + "nom_de_la_commune": "MONTCHANIN", + "code_postal": "71210", + "coordonnees_gps": [ + 46.7473169925, + 4.47424011768 + ], + "libelle_d_acheminement": "MONTCHANIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47424011768, + 46.7473169925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc3bd4bf62f6f8d5069f5ce86b2869d1e88224ea", + "fields": { + "code_commune_insee": "71312", + "nom_de_la_commune": "MONTCOY", + "code_postal": "71620", + "coordonnees_gps": [ + 46.7961241606, + 4.9981535244 + ], + "libelle_d_acheminement": "MONTCOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9981535244, + 46.7961241606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38051773c13be762e87cc51ae51299eba7c78ae9", + "fields": { + "code_commune_insee": "71313", + "nom_de_la_commune": "MONTHELON", + "code_postal": "71400", + "coordonnees_gps": [ + 46.9594714287, + 4.22119599878 + ], + "libelle_d_acheminement": "MONTHELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22119599878, + 46.9594714287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d66019b425dace5c1a5eb7251fccacc49dc5b54d", + "fields": { + "code_commune_insee": "71320", + "nom_de_la_commune": "MONT ST VINCENT", + "code_postal": "71300", + "coordonnees_gps": [ + 46.6461358907, + 4.49195438858 + ], + "libelle_d_acheminement": "MONT ST VINCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49195438858, + 46.6461358907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdf08dcc75573c36b3d3daf81ffe53b3891d6117", + "fields": { + "code_commune_insee": "71325", + "nom_de_la_commune": "LA MOTTE ST JEAN", + "code_postal": "71160", + "coordonnees_gps": [ + 46.5148078067, + 3.96007296995 + ], + "libelle_d_acheminement": "LA MOTTE ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96007296995, + 46.5148078067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "722b1447f9d3bad56d1244aa81b3941cabc34768", + "fields": { + "code_commune_insee": "71327", + "nom_de_la_commune": "MUSSY SOUS DUN", + "code_postal": "71170", + "coordonnees_gps": [ + 46.2370094184, + 4.33413361908 + ], + "libelle_d_acheminement": "MUSSY SOUS DUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33413361908, + 46.2370094184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bee33cd8f92421da21cdc5d9ace5a247ac2363f", + "fields": { + "code_commune_insee": "71330", + "nom_de_la_commune": "NEUVY GRANDCHAMP", + "code_postal": "71130", + "coordonnees_gps": [ + 46.5932713521, + 3.92778768794 + ], + "libelle_d_acheminement": "NEUVY GRANDCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92778768794, + 46.5932713521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "913d6c4995111684b9f793064ce69a154c9386f1", + "fields": { + "code_commune_insee": "71340", + "nom_de_la_commune": "PALINGES", + "code_postal": "71430", + "coordonnees_gps": [ + 46.547452342, + 4.20782928989 + ], + "libelle_d_acheminement": "PALINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20782928989, + 46.547452342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54fe044402f5118294fbfc2e0eee1c5ac1802ff6", + "fields": { + "code_commune_insee": "71341", + "nom_de_la_commune": "PALLEAU", + "code_postal": "71350", + "coordonnees_gps": [ + 46.96578142, + 5.03202326419 + ], + "libelle_d_acheminement": "PALLEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03202326419, + 46.96578142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd8d8a6ba6a2bdda02ef63575306e389f5ae7719", + "fields": { + "code_commune_insee": "71343", + "nom_de_la_commune": "PARIS L HOPITAL", + "code_postal": "71150", + "coordonnees_gps": [ + 46.9127885575, + 4.63958573146 + ], + "libelle_d_acheminement": "PARIS L HOPITAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63958573146, + 46.9127885575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71784a3a75478b4a24124728ce0d3c5e4a252dbd", + "fields": { + "code_commune_insee": "71346", + "nom_de_la_commune": "PERRECY LES FORGES", + "code_postal": "71420", + "coordonnees_gps": [ + 46.621915608, + 4.22620349316 + ], + "libelle_d_acheminement": "PERRECY LES FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22620349316, + 46.621915608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ae67cd15380d6770491095bc5d7a90f58a5fac9", + "fields": { + "code_commune_insee": "71347", + "nom_de_la_commune": "PERREUIL", + "code_postal": "71510", + "coordonnees_gps": [ + 46.8221260373, + 4.56745960102 + ], + "libelle_d_acheminement": "PERREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56745960102, + 46.8221260373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fbf42ffb02ca28e253aade96ae0897cc73a82db", + "fields": { + "code_commune_insee": "71350", + "nom_de_la_commune": "PIERRECLOS", + "code_postal": "71960", + "coordonnees_gps": [ + 46.3324202545, + 4.67135536115 + ], + "libelle_d_acheminement": "PIERRECLOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67135536115, + 46.3324202545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99e50e76a7e8598ed088ffcf086937f1c119800a", + "fields": { + "code_commune_insee": "71352", + "nom_de_la_commune": "LE PLANOIS", + "code_postal": "71330", + "coordonnees_gps": [ + 46.7895553787, + 5.32263068043 + ], + "libelle_d_acheminement": "LE PLANOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32263068043, + 46.7895553787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cf3291a148b4b417510f45d9e45722c1d88ad52", + "fields": { + "code_commune_insee": "71358", + "nom_de_la_commune": "PRESSY SOUS DONDIN", + "code_postal": "71220", + "coordonnees_gps": [ + 46.4761059444, + 4.50397889767 + ], + "libelle_d_acheminement": "PRESSY SOUS DONDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50397889767, + 46.4761059444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6a516dd886dde0aa5606e06854f19cf604ef8e6", + "fields": { + "code_commune_insee": "71365", + "nom_de_la_commune": "RANCY", + "code_postal": "71290", + "coordonnees_gps": [ + 46.6005131165, + 5.08307494584 + ], + "libelle_d_acheminement": "RANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08307494584, + 46.6005131165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2632cc170e2e3e90a97ea21b7cddba2971f1def6", + "fields": { + "code_commune_insee": "71366", + "nom_de_la_commune": "RATENELLE", + "code_postal": "71290", + "coordonnees_gps": [ + 46.5245517671, + 5.00102497581 + ], + "libelle_d_acheminement": "RATENELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00102497581, + 46.5245517671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57f575a9834c27c20d84d527a420bbad65703a2d", + "fields": { + "code_commune_insee": "71367", + "nom_de_la_commune": "RATTE", + "code_postal": "71500", + "coordonnees_gps": [ + 46.6395819633, + 5.30552532869 + ], + "libelle_d_acheminement": "RATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30552532869, + 46.6395819633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41d06fc16187b3fa574cf4568fc8f1f5c358eb71", + "fields": { + "code_commune_insee": "71368", + "nom_de_la_commune": "RECLESNE", + "code_postal": "71540", + "coordonnees_gps": [ + 47.0470566219, + 4.2846413148 + ], + "libelle_d_acheminement": "RECLESNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2846413148, + 47.0470566219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a2ad26bb8920afac784173244540ab230fad700", + "fields": { + "code_commune_insee": "71383", + "nom_de_la_commune": "ST ALBAIN", + "code_postal": "71260", + "coordonnees_gps": [ + 46.422400276, + 4.86818774017 + ], + "libelle_d_acheminement": "ST ALBAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86818774017, + 46.422400276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caaf767623837a94ee704a528182350d9d5d8089", + "fields": { + "code_commune_insee": "71389", + "nom_de_la_commune": "ST AUBIN SUR LOIRE", + "code_postal": "71140", + "coordonnees_gps": [ + 46.5678204278, + 3.76149865404 + ], + "libelle_d_acheminement": "ST AUBIN SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76149865404, + 46.5678204278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ab1830cd8203fe810b5bf5ac6045e4cb2a5e93a", + "fields": { + "code_commune_insee": "71396", + "nom_de_la_commune": "ST BONNET EN BRESSE", + "code_postal": "71310", + "coordonnees_gps": [ + 46.8588763872, + 5.17827286067 + ], + "libelle_d_acheminement": "ST BONNET EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17827286067, + 46.8588763872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f94be4e46c9df24dbbb3449e6ac97c5a17908a9f", + "fields": { + "code_commune_insee": "71402", + "nom_de_la_commune": "ST CYR", + "code_postal": "71240", + "coordonnees_gps": [ + 46.6791536677, + 4.90050025353 + ], + "libelle_d_acheminement": "ST CYR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90050025353, + 46.6791536677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "282a33eb1af4c6a123065825477c89f6125137f6", + "fields": { + "code_commune_insee": "71404", + "nom_de_la_commune": "ST DESERT", + "code_postal": "71390", + "coordonnees_gps": [ + 46.7571405125, + 4.71340832367 + ], + "libelle_d_acheminement": "ST DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71340832367, + 46.7571405125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "757bed2768b5a02ddbf3d5a0f8b49483f20dc960", + "fields": { + "code_commune_insee": "71406", + "nom_de_la_commune": "ST DIDIER EN BRIONNAIS", + "code_postal": "71110", + "coordonnees_gps": [ + 46.3389618566, + 4.12398116722 + ], + "libelle_d_acheminement": "ST DIDIER EN BRIONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12398116722, + 46.3389618566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "648bab235579bd19f3719266a8b14328ef28797e", + "fields": { + "code_commune_insee": "71411", + "nom_de_la_commune": "ST EUGENE", + "code_postal": "71320", + "coordonnees_gps": [ + 46.7303096317, + 4.22025491336 + ], + "libelle_d_acheminement": "ST EUGENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22025491336, + 46.7303096317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d8b2a8ec2bd021d39bd43291c905909e325c1ec", + "fields": { + "code_commune_insee": "71422", + "nom_de_la_commune": "ST GERMAIN LES BUXY", + "code_postal": "71390", + "coordonnees_gps": [ + 46.6961802928, + 4.7732570096 + ], + "libelle_d_acheminement": "ST GERMAIN LES BUXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7732570096, + 46.6961802928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "726c9caf585965ef88708b899f5cc73bb9ef80bb", + "fields": { + "code_commune_insee": "71423", + "nom_de_la_commune": "ST GERVAIS EN VALLIERE", + "code_postal": "71350", + "coordonnees_gps": [ + 46.945273256, + 4.96240902154 + ], + "libelle_d_acheminement": "ST GERVAIS EN VALLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96240902154, + 46.945273256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cbb8021d811e1e8e21893640ec41d6c71fc72b0", + "fields": { + "code_commune_insee": "71439", + "nom_de_la_commune": "ST LEGER LES PARAY", + "code_postal": "71600", + "coordonnees_gps": [ + 46.4848826059, + 4.1163312741 + ], + "libelle_d_acheminement": "ST LEGER LES PARAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1163312741, + 46.4848826059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4109db1fba003ce23eb9aa12f1bab99e32b2b320", + "fields": { + "code_commune_insee": "71459", + "nom_de_la_commune": "ST MARTIN SOUS MONTAIGU", + "code_postal": "71640", + "coordonnees_gps": [ + 46.8134978292, + 4.7100275215 + ], + "libelle_d_acheminement": "ST MARTIN SOUS MONTAIGU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7100275215, + 46.8134978292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fae7f68ffe627fb5c3b6f0e181c6ae60e53f6294", + "fields": { + "code_commune_insee": "71461", + "nom_de_la_commune": "ST MAURICE DES CHAMPS", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6238661451, + 4.62609375909 + ], + "libelle_d_acheminement": "ST MAURICE DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62609375909, + 46.6238661451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41c909fc88cf52b7f0ff0d1ef41e26fd69806d21", + "fields": { + "code_commune_insee": "71466", + "nom_de_la_commune": "ST NIZIER SUR ARROUX", + "code_postal": "71190", + "coordonnees_gps": [ + 46.8143219502, + 4.15821443089 + ], + "libelle_d_acheminement": "ST NIZIER SUR ARROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15821443089, + 46.8143219502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fd4d6bec28f5d3878e2fa1174668679ee167685", + "fields": { + "ligne_5": "LES GAUTHERETS", + "code_commune_insee": "71486", + "libelle_d_acheminement": "ST VALLIER", + "code_postal": "71230", + "nom_de_la_commune": "ST VALLIER", + "coordonnees_gps": [ + 46.6430898449, + 4.35996411381 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35996411381, + 46.6430898449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06709a3033f4cd4642440b85c2c9cb3a3cc7f9b6", + "fields": { + "code_commune_insee": "71487", + "nom_de_la_commune": "ST VERAND", + "code_postal": "71570", + "coordonnees_gps": [ + 46.2531843675, + 4.72769715807 + ], + "libelle_d_acheminement": "ST VERAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72769715807, + 46.2531843675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b224d21c47d4e6b4a007ba23991aa3d6b1810c14", + "fields": { + "code_commune_insee": "71492", + "nom_de_la_commune": "ST YTHAIRE", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5681757144, + 4.60307233126 + ], + "libelle_d_acheminement": "ST YTHAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60307233126, + 46.5681757144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f9054ac0a61689353e84da252713ed24433816b", + "fields": { + "code_commune_insee": "71498", + "nom_de_la_commune": "SANTILLY", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6204214776, + 4.70493603274 + ], + "libelle_d_acheminement": "SANTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70493603274, + 46.6204214776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e25defa6d040952925e4a2e06036ae81d9de6347", + "fields": { + "code_commune_insee": "71524", + "nom_de_la_commune": "SIVIGNON", + "code_postal": "71220", + "coordonnees_gps": [ + 46.4267420251, + 4.49917646039 + ], + "libelle_d_acheminement": "SIVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49917646039, + 46.4267420251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e9d9f1b9fa1b1ab5cb8f9e0f1f22e9c8b2f26ba", + "fields": { + "code_commune_insee": "71525", + "nom_de_la_commune": "SOLOGNY", + "code_postal": "71960", + "coordonnees_gps": [ + 46.3708080231, + 4.67295100196 + ], + "libelle_d_acheminement": "SOLOGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67295100196, + 46.3708080231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98387e546106cb54d8a20911d76b4e1e456031f4", + "fields": { + "code_commune_insee": "71528", + "nom_de_la_commune": "SORNAY", + "code_postal": "71500", + "coordonnees_gps": [ + 46.6213260954, + 5.16979510673 + ], + "libelle_d_acheminement": "SORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16979510673, + 46.6213260954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73842c6ab91ea1c378e965f8f5461568e469dbf7", + "fields": { + "code_commune_insee": "71532", + "nom_de_la_commune": "TAIZE", + "code_postal": "71250", + "coordonnees_gps": [ + 46.5105515739, + 4.67305548074 + ], + "libelle_d_acheminement": "TAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67305548074, + 46.5105515739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1066cb5604ad4614aa068c2e03465bb98b15d649", + "fields": { + "ligne_5": "TAIZE COMMUNAUTE", + "code_commune_insee": "71532", + "libelle_d_acheminement": "TAIZE", + "code_postal": "71250", + "nom_de_la_commune": "TAIZE", + "coordonnees_gps": [ + 46.5105515739, + 4.67305548074 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67305548074, + 46.5105515739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5df057db916e026b7ca10d725809641c57e39c6", + "fields": { + "code_commune_insee": "71548", + "nom_de_la_commune": "TRONCHY", + "code_postal": "71440", + "coordonnees_gps": [ + 46.7273787924, + 5.07374136167 + ], + "libelle_d_acheminement": "TRONCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07374136167, + 46.7273787924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c855b83553c3087b0e20007ed79969239a4ca765", + "fields": { + "code_commune_insee": "71550", + "nom_de_la_commune": "UCHIZY", + "code_postal": "71700", + "coordonnees_gps": [ + 46.4985733672, + 4.88689760055 + ], + "libelle_d_acheminement": "UCHIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88689760055, + 46.4985733672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9da5df4887bf2c06f9d155a183a352e89ea21595", + "fields": { + "code_commune_insee": "71556", + "nom_de_la_commune": "VARENNES LES MACON", + "code_postal": "71000", + "coordonnees_gps": [ + 46.2683636158, + 4.8066970954 + ], + "libelle_d_acheminement": "VARENNES LES MACON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8066970954, + 46.2683636158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c38e8e6bad022318f3c8477ab73110b5fea356a8", + "fields": { + "ligne_5": "ST GERMAIN DES RIVES", + "code_commune_insee": "71557", + "libelle_d_acheminement": "VARENNE ST GERMAIN", + "code_postal": "71600", + "nom_de_la_commune": "VARENNE ST GERMAIN", + "coordonnees_gps": [ + 46.4373098017, + 4.02659181571 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02659181571, + 46.4373098017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a530e73962093850c707fd1571444e084f7c8e8", + "fields": { + "code_commune_insee": "71558", + "nom_de_la_commune": "VARENNES ST SAUVEUR", + "code_postal": "71480", + "coordonnees_gps": [ + 46.5013604889, + 5.23845010898 + ], + "libelle_d_acheminement": "VARENNES ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23845010898, + 46.5013604889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "613fe4ac3f21dadd2a630ce85afc2574035c251b", + "fields": { + "code_commune_insee": "71562", + "nom_de_la_commune": "VAUDEBARRIER", + "code_postal": "71120", + "coordonnees_gps": [ + 46.4165847786, + 4.31200605837 + ], + "libelle_d_acheminement": "VAUDEBARRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31200605837, + 46.4165847786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f137c95b942236e211e8545568923e0f7e3a04b8", + "fields": { + "code_commune_insee": "71566", + "nom_de_la_commune": "VERDUN SUR LE DOUBS", + "code_postal": "71350", + "coordonnees_gps": [ + 46.8905762188, + 5.01251623413 + ], + "libelle_d_acheminement": "VERDUN SUR LE DOUBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01251623413, + 46.8905762188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91263350292fcb92693e90751ed17573832dbb1b", + "fields": { + "ligne_5": "MASSY", + "code_commune_insee": "71582", + "libelle_d_acheminement": "LA VINEUSE SUR FREGANDE", + "code_postal": "71250", + "nom_de_la_commune": "LA VINEUSE SUR FREGANDE", + "coordonnees_gps": [ + 46.4606978689, + 4.60125621922 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60125621922, + 46.4606978689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c61473fdacbcbc3893b4fdf953d18c75e916b65", + "fields": { + "code_commune_insee": "71589", + "nom_de_la_commune": "VITRY SUR LOIRE", + "code_postal": "71140", + "coordonnees_gps": [ + 46.6796114688, + 3.71763389584 + ], + "libelle_d_acheminement": "VITRY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71763389584, + 46.6796114688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "673f919b37e0044e0d6caa599e5dd45c5921118d", + "fields": { + "code_commune_insee": "72004", + "nom_de_la_commune": "AMNE", + "code_postal": "72540", + "coordonnees_gps": [ + 48.0403287811, + -0.0436682297545 + ], + "libelle_d_acheminement": "AMNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0436682297545, + 48.0403287811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cacefe355b1c351a2adde15fabe3b102ffd85805", + "fields": { + "code_commune_insee": "72005", + "nom_de_la_commune": "ANCINNES", + "code_postal": "72610", + "coordonnees_gps": [ + 48.3603390007, + 0.173826931122 + ], + "libelle_d_acheminement": "ANCINNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.173826931122, + 48.3603390007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb1076ace96ad9e99cfe5fac4ed50d3e1f3c21c3", + "fields": { + "code_commune_insee": "72007", + "nom_de_la_commune": "ARDENAY SUR MERIZE", + "code_postal": "72370", + "coordonnees_gps": [ + 47.9936344647, + 0.428021491681 + ], + "libelle_d_acheminement": "ARDENAY SUR MERIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.428021491681, + 47.9936344647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ff76e5bc9fe138d915b5e1ddc58ddb87237c8ed", + "fields": { + "code_commune_insee": "72009", + "nom_de_la_commune": "ARTHEZE", + "code_postal": "72270", + "coordonnees_gps": [ + 47.7894345539, + -0.110707859557 + ], + "libelle_d_acheminement": "ARTHEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.110707859557, + 47.7894345539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0ffa2341d677cb102852f7e51e85b3f7eb0e54e", + "fields": { + "code_commune_insee": "72012", + "nom_de_la_commune": "ASSE LE RIBOUL", + "code_postal": "72170", + "coordonnees_gps": [ + 48.2030195812, + 0.078627862443 + ], + "libelle_d_acheminement": "ASSE LE RIBOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.078627862443, + 48.2030195812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "861db1bbfa9213881da6398b48ec0759dbb8aac4", + "fields": { + "code_commune_insee": "72015", + "nom_de_la_commune": "LES AULNEAUX", + "code_postal": "72600", + "coordonnees_gps": [ + 48.4382484523, + 0.343168192936 + ], + "libelle_d_acheminement": "LES AULNEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.343168192936, + 48.4382484523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6403975587aa9ff7034573448b896898789463b5", + "fields": { + "code_commune_insee": "72021", + "nom_de_la_commune": "AVOISE", + "code_postal": "72430", + "coordonnees_gps": [ + 47.8599093742, + -0.193085392687 + ], + "libelle_d_acheminement": "AVOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.193085392687, + 47.8599093742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9efbae3dc1a6b7f9a069d61a5c1e6f41d862dbec", + "fields": { + "code_commune_insee": "72035", + "nom_de_la_commune": "BESSE SUR BRAYE", + "code_postal": "72310", + "coordonnees_gps": [ + 47.824274366, + 0.722121663384 + ], + "libelle_d_acheminement": "BESSE SUR BRAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.722121663384, + 47.824274366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fdc7a8be684f80f00e9f4a8af7f4aa32eafa76b", + "fields": { + "code_commune_insee": "72036", + "nom_de_la_commune": "BETHON", + "code_postal": "72610", + "coordonnees_gps": [ + 48.3652173718, + 0.0923040851255 + ], + "libelle_d_acheminement": "BETHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0923040851255, + 48.3652173718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ec32641444ff8a295eea6f961f0a763a38918b6", + "fields": { + "code_commune_insee": "72038", + "nom_de_la_commune": "BOESSE LE SEC", + "code_postal": "72400", + "coordonnees_gps": [ + 48.1352696727, + 0.558033201406 + ], + "libelle_d_acheminement": "BOESSE LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.558033201406, + 48.1352696727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc8ae734c5f6fb934c377f78ca2e306d2a245b44", + "fields": { + "code_commune_insee": "72048", + "nom_de_la_commune": "BRIOSNE LES SABLES", + "code_postal": "72110", + "coordonnees_gps": [ + 48.1746234769, + 0.392861782624 + ], + "libelle_d_acheminement": "BRIOSNE LES SABLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.392861782624, + 48.1746234769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcccaf9ebb8c487789e3e4615719c4739dce310c", + "fields": { + "code_commune_insee": "72049", + "nom_de_la_commune": "LA BRUERE SUR LOIR", + "code_postal": "72500", + "coordonnees_gps": [ + 47.6511451225, + 0.356792900521 + ], + "libelle_d_acheminement": "LA BRUERE SUR LOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.356792900521, + 47.6511451225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cb352510f199751a893ec2fe5ac6450496d2920", + "fields": { + "code_commune_insee": "72056", + "nom_de_la_commune": "CHAMPFLEUR", + "code_postal": "72610", + "coordonnees_gps": [ + 48.3844669298, + 0.125303372626 + ], + "libelle_d_acheminement": "CHAMPFLEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.125303372626, + 48.3844669298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "860431562a7a4c5acc39d15c8989ed33e6a1086d", + "fields": { + "code_commune_insee": "72058", + "nom_de_la_commune": "CHANGE", + "code_postal": "72560", + "coordonnees_gps": [ + 47.9784374731, + 0.297080685865 + ], + "libelle_d_acheminement": "CHANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.297080685865, + 47.9784374731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1186713fffb46c66c6ccec70e0a28401d7575831", + "fields": { + "code_commune_insee": "72061", + "nom_de_la_commune": "LA CHAPELLE D ALIGNE", + "code_postal": "72300", + "coordonnees_gps": [ + 47.7357624962, + -0.239313102989 + ], + "libelle_d_acheminement": "LA CHAPELLE D ALIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.239313102989, + 47.7357624962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2293636015d6407342f3f012477f053a9e8c36b", + "fields": { + "ligne_5": "VOUVRAY SUR LOIR", + "code_commune_insee": "72071", + "libelle_d_acheminement": "MONTVAL SUR LOIR", + "code_postal": "72500", + "nom_de_la_commune": "MONTVAL SUR LOIR", + "coordonnees_gps": [ + 47.702207042, + 0.430642762781 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.430642762781, + 47.702207042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51a1a88fb964404c635e6e0b78107c3637fbcaf5", + "fields": { + "code_commune_insee": "72073", + "nom_de_la_commune": "CHAUFOUR NOTRE DAME", + "code_postal": "72550", + "coordonnees_gps": [ + 48.0183975387, + 0.0629705204295 + ], + "libelle_d_acheminement": "CHAUFOUR NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0629705204295, + 48.0183975387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77a6c100ca8053792760f0fa9ee9b2333d09c18d", + "fields": { + "code_commune_insee": "72079", + "nom_de_la_commune": "CHERISAY", + "code_postal": "72610", + "coordonnees_gps": [ + 48.3503181778, + 0.114525077823 + ], + "libelle_d_acheminement": "CHERISAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.114525077823, + 48.3503181778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09f23db2439695bcb4388504e81ec55237506f26", + "fields": { + "ligne_5": "CHERREAU", + "code_commune_insee": "72080", + "libelle_d_acheminement": "CHERRE AU", + "code_postal": "72400", + "nom_de_la_commune": "CHERRE AU", + "coordonnees_gps": [ + 48.1549219183, + 0.657321436354 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.657321436354, + 48.1549219183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a26ca46939cb659c1c3c94c3c245e3ba568cde5d", + "fields": { + "code_commune_insee": "72091", + "nom_de_la_commune": "CONTILLY", + "code_postal": "72600", + "coordonnees_gps": [ + 48.413032549, + 0.35872391286 + ], + "libelle_d_acheminement": "CONTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35872391286, + 48.413032549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7970a0c31d006b7a62b5a92eb84ab109406cd93", + "fields": { + "code_commune_insee": "72099", + "nom_de_la_commune": "COURCEBOEUFS", + "code_postal": "72290", + "coordonnees_gps": [ + 48.1265537944, + 0.282062390388 + ], + "libelle_d_acheminement": "COURCEBOEUFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.282062390388, + 48.1265537944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d959b6c119ca6a1a961025502ff20accdef5c30", + "fields": { + "code_commune_insee": "72100", + "nom_de_la_commune": "COURCELLES LA FORET", + "code_postal": "72270", + "coordonnees_gps": [ + 47.7944370903, + -0.0240623662465 + ], + "libelle_d_acheminement": "COURCELLES LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0240623662465, + 47.7944370903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b25ba6c1ab56827170b1022e903b903640aac9c1", + "fields": { + "code_commune_insee": "72101", + "nom_de_la_commune": "COURCEMONT", + "code_postal": "72110", + "coordonnees_gps": [ + 48.1772980099, + 0.343516519755 + ], + "libelle_d_acheminement": "COURCEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.343516519755, + 48.1772980099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52dfaeb7c22cfb46f518f6b7bbbfcadc2e68cb35", + "fields": { + "code_commune_insee": "72106", + "nom_de_la_commune": "COURTILLERS", + "code_postal": "72300", + "coordonnees_gps": [ + 47.8056753795, + -0.315433885295 + ], + "libelle_d_acheminement": "COURTILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.315433885295, + 47.8056753795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd8afed5eef41823f8156fa89601f014c38890cd", + "fields": { + "code_commune_insee": "72107", + "nom_de_la_commune": "CRANNES EN CHAMPAGNE", + "code_postal": "72540", + "coordonnees_gps": [ + 47.9793340977, + -0.0366151411596 + ], + "libelle_d_acheminement": "CRANNES EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0366151411596, + 47.9793340977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf9c8f81d606c64351ebd66ea39af1dd549df997", + "fields": { + "code_commune_insee": "72110", + "nom_de_la_commune": "CROSMIERES", + "code_postal": "72200", + "coordonnees_gps": [ + 47.7361996092, + -0.154731681464 + ], + "libelle_d_acheminement": "CROSMIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.154731681464, + 47.7361996092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e037dd0ea1f181aadd1baf0950e1fbbf6131e8c2", + "fields": { + "code_commune_insee": "72119", + "nom_de_la_commune": "DOMFRONT EN CHAMPAGNE", + "code_postal": "72240", + "coordonnees_gps": [ + 48.1091722798, + 0.0450026971482 + ], + "libelle_d_acheminement": "DOMFRONT EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0450026971482, + 48.1091722798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1e4d97d3af32cba0099c9936334b86a0ad0d6a0", + "fields": { + "code_commune_insee": "72125", + "nom_de_la_commune": "ECORPAIN", + "code_postal": "72120", + "coordonnees_gps": [ + 47.9378390819, + 0.63730489093 + ], + "libelle_d_acheminement": "ECORPAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63730489093, + 47.9378390819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07c5dda3d1f06581451df9ff067e37a6014c74a2", + "fields": { + "ligne_5": "EVAILLE", + "code_commune_insee": "72128", + "libelle_d_acheminement": "VAL D ETANGSON", + "code_postal": "72120", + "nom_de_la_commune": "VAL D ETANGSON", + "coordonnees_gps": [ + 47.9002296748, + 0.626909662566 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.626909662566, + 47.9002296748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b54e457b6532514e633594f0a485b3d345b35620", + "fields": { + "ligne_5": "STE OSMANE", + "code_commune_insee": "72128", + "libelle_d_acheminement": "VAL D ETANGSON", + "code_postal": "72120", + "nom_de_la_commune": "VAL D ETANGSON", + "coordonnees_gps": [ + 47.9002296748, + 0.626909662566 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.626909662566, + 47.9002296748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b667781953cd38eb5a663908b7071db983d49822", + "fields": { + "ligne_5": "ROULLEE", + "code_commune_insee": "72137", + "libelle_d_acheminement": "VILLENEUVE EN PERSEIGNE", + "code_postal": "72600", + "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", + "coordonnees_gps": [ + 48.4380499533, + 0.236852667784 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236852667784, + 48.4380499533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62f8d704208d1dd0fd4adf3dc6ee5622b347e4e6", + "fields": { + "ligne_5": "ST RIGOMER DES BOIS", + "code_commune_insee": "72137", + "libelle_d_acheminement": "VILLENEUVE EN PERSEIGNE", + "code_postal": "72610", + "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", + "coordonnees_gps": [ + 48.4380499533, + 0.236852667784 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236852667784, + 48.4380499533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d80e635593052594bacabcbc6e92aefe7c888a59", + "fields": { + "ligne_5": "LA HUTTE", + "code_commune_insee": "72138", + "libelle_d_acheminement": "FRESNAY SUR SARTHE", + "code_postal": "72130", + "nom_de_la_commune": "FRESNAY SUR SARTHE", + "coordonnees_gps": [ + 48.2817396551, + 0.0228368822752 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0228368822752, + 48.2817396551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cdd7a744e5ac16728827e775cf1d43463ac93da", + "fields": { + "code_commune_insee": "72148", + "nom_de_la_commune": "JAUZE", + "code_postal": "72110", + "coordonnees_gps": [ + 48.2111786499, + 0.382481451808 + ], + "libelle_d_acheminement": "JAUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.382481451808, + 48.2111786499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3fb0099ba3b96f0f3a408b787e1db78dfddcf8f", + "fields": { + "code_commune_insee": "72149", + "nom_de_la_commune": "JOUE EN CHARNIE", + "code_postal": "72540", + "coordonnees_gps": [ + 48.0154941417, + -0.194716478104 + ], + "libelle_d_acheminement": "JOUE EN CHARNIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.194716478104, + 48.0154941417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e808b488b267b767a10a1df2980b7ce1d40f30b3", + "fields": { + "code_commune_insee": "72153", + "nom_de_la_commune": "JUPILLES", + "code_postal": "72500", + "coordonnees_gps": [ + 47.7918893529, + 0.410315352572 + ], + "libelle_d_acheminement": "JUPILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.410315352572, + 47.7918893529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f295d16fc50de02dae475e813d5dac3e98203716", + "fields": { + "code_commune_insee": "72158", + "nom_de_la_commune": "LAVARE", + "code_postal": "72390", + "coordonnees_gps": [ + 48.0582643991, + 0.657147028816 + ], + "libelle_d_acheminement": "LAVARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.657147028816, + 48.0582643991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a870b24e2aec309f18b29d2e9b9732b037b03a7", + "fields": { + "code_commune_insee": "72173", + "nom_de_la_commune": "LUCEAU", + "code_postal": "72500", + "coordonnees_gps": [ + 47.7177033077, + 0.391455867565 + ], + "libelle_d_acheminement": "LUCEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.391455867565, + 47.7177033077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67a3a737ed8c9f4819bb514bead3bea62fd1c77e", + "fields": { + "code_commune_insee": "72174", + "nom_de_la_commune": "LUCE SOUS BALLON", + "code_postal": "72290", + "coordonnees_gps": [ + 48.2111457047, + 0.212575045337 + ], + "libelle_d_acheminement": "LUCE SOUS BALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.212575045337, + 48.2111457047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1d9585e5cd711779b2632e2509bc75b24de2501", + "fields": { + "code_commune_insee": "72175", + "nom_de_la_commune": "LUCHE PRINGE", + "code_postal": "72800", + "coordonnees_gps": [ + 47.7038880653, + 0.0953882403778 + ], + "libelle_d_acheminement": "LUCHE PRINGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0953882403778, + 47.7038880653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd97cef14adfcaf1a63d7823069734a4cc25b222", + "fields": { + "code_commune_insee": "72176", + "nom_de_la_commune": "LE LUDE", + "code_postal": "72800", + "coordonnees_gps": [ + 47.6542548485, + 0.150109969187 + ], + "libelle_d_acheminement": "LE LUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.150109969187, + 47.6542548485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80492fa0927b95be12f78f3637951ed80e26598e", + "fields": { + "code_commune_insee": "72181", + "nom_de_la_commune": "LE MANS", + "code_postal": "72100", + "coordonnees_gps": [ + 47.9885256718, + 0.200030493539 + ], + "libelle_d_acheminement": "LE MANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.200030493539, + 47.9885256718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "593fdec30ce79a3151fb0767d0b3d5bacc9b15df", + "fields": { + "ligne_5": "DISSE SOUS BALLON", + "code_commune_insee": "72189", + "libelle_d_acheminement": "MAROLLES LES BRAULTS", + "code_postal": "72260", + "nom_de_la_commune": "MAROLLES LES BRAULTS", + "coordonnees_gps": [ + 48.2539587745, + 0.320191786224 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.320191786224, + 48.2539587745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdf30477473ec8c0d01dc028e9d7ef1a35b3fff6", + "fields": { + "code_commune_insee": "72195", + "nom_de_la_commune": "MEZERAY", + "code_postal": "72270", + "coordonnees_gps": [ + 47.8295768885, + -0.0158831127316 + ], + "libelle_d_acheminement": "MEZERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0158831127316, + 47.8295768885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9cf70cfc280f066f6be47eabc7a4a8bd49939f6", + "fields": { + "code_commune_insee": "72209", + "nom_de_la_commune": "MONTREUIL LE CHETIF", + "code_postal": "72130", + "coordonnees_gps": [ + 48.2411169593, + -0.0384115382659 + ], + "libelle_d_acheminement": "MONTREUIL LE CHETIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0384115382659, + 48.2411169593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "561914b1a885c484ce7b0d16cea7c1c5b3c4af30", + "fields": { + "code_commune_insee": "72213", + "nom_de_la_commune": "MULSANNE", + "code_postal": "72230", + "coordonnees_gps": [ + 47.9186376268, + 0.244158355853 + ], + "libelle_d_acheminement": "MULSANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.244158355853, + 47.9186376268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d29162c365164f181f2cf196bc25b48bdc4d2d15", + "fields": { + "ligne_5": "NEUVY EN CHAMPAGNE", + "code_commune_insee": "72219", + "libelle_d_acheminement": "BERNAY NEUVY EN CHAMPAGNE", + "code_postal": "72240", + "nom_de_la_commune": "BERNAY NEUVY EN CHAMPAGNE", + "coordonnees_gps": [ + 48.0792849605, + -0.0218826401128 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0218826401128, + 48.0792849605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de67ce2156cf1474335c6396ac92e4175e016eb3", + "fields": { + "code_commune_insee": "72237", + "nom_de_la_commune": "PIRMIL", + "code_postal": "72430", + "coordonnees_gps": [ + 47.9103473581, + -0.0897163271202 + ], + "libelle_d_acheminement": "PIRMIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0897163271202, + 47.9103473581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "124913c5f644972322971d06d7829062e0ca6a5d", + "fields": { + "code_commune_insee": "72238", + "nom_de_la_commune": "PIZIEUX", + "code_postal": "72600", + "coordonnees_gps": [ + 48.3230783466, + 0.333658227533 + ], + "libelle_d_acheminement": "PIZIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.333658227533, + 48.3230783466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b350d5d55fa711f10c6531e3819ba936fcda0672", + "fields": { + "code_commune_insee": "72243", + "nom_de_la_commune": "PONTVALLAIN", + "code_postal": "72510", + "coordonnees_gps": [ + 47.7590113873, + 0.199384022474 + ], + "libelle_d_acheminement": "PONTVALLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.199384022474, + 47.7590113873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2147848b6f3b852cc300489abac821ddb33fdcf0", + "fields": { + "code_commune_insee": "72248", + "nom_de_la_commune": "PRUILLE L EGUILLE", + "code_postal": "72150", + "coordonnees_gps": [ + 47.8385530465, + 0.421797610193 + ], + "libelle_d_acheminement": "PRUILLE L EGUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.421797610193, + 47.8385530465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b12c3b7ae873b1a0409dbeff25aad17c58f7edf", + "fields": { + "code_commune_insee": "72250", + "nom_de_la_commune": "RAHAY", + "code_postal": "72120", + "coordonnees_gps": [ + 47.957486899, + 0.811406701903 + ], + "libelle_d_acheminement": "RAHAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.811406701903, + 47.957486899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f509828513dcaa158b9c18bdbee915b3589a74b", + "fields": { + "code_commune_insee": "72253", + "nom_de_la_commune": "ROEZE SUR SARTHE", + "code_postal": "72210", + "coordonnees_gps": [ + 47.8935298702, + 0.0716892654727 + ], + "libelle_d_acheminement": "ROEZE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0716892654727, + 47.8935298702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aabd5283286e80649cc91165c6593fd3be3eb6bb", + "fields": { + "code_commune_insee": "72257", + "nom_de_la_commune": "ROUILLON", + "code_postal": "72700", + "coordonnees_gps": [ + 48.0005070104, + 0.142249684917 + ], + "libelle_d_acheminement": "ROUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.142249684917, + 48.0005070104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c429b09c1729aea5edf6ff75e1fb0b7db285aec", + "fields": { + "ligne_5": "LAVENAY", + "code_commune_insee": "72262", + "libelle_d_acheminement": "LOIR EN VALLEE", + "code_postal": "72310", + "nom_de_la_commune": "LOIR EN VALLEE", + "coordonnees_gps": [ + 47.7854221078, + 0.618393311988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.618393311988, + 47.7854221078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b53782a70b516e1a06658dd2422fda9f08ba03b6", + "fields": { + "code_commune_insee": "72268", + "nom_de_la_commune": "ST BIEZ EN BELIN", + "code_postal": "72220", + "coordonnees_gps": [ + 47.8185029824, + 0.23744354895 + ], + "libelle_d_acheminement": "ST BIEZ EN BELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23744354895, + 47.8185029824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ae7e19f158dd0c56173287b09a4a2b7e97526f4", + "fields": { + "code_commune_insee": "72272", + "nom_de_la_commune": "STE CEROTTE", + "code_postal": "72120", + "coordonnees_gps": [ + 47.9011298028, + 0.682806358799 + ], + "libelle_d_acheminement": "STE CEROTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.682806358799, + 47.9011298028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81382858763c12c7413f858de58ea879c7c74097", + "fields": { + "code_commune_insee": "72273", + "nom_de_la_commune": "ST CHRISTOPHE DU JAMBET", + "code_postal": "72170", + "coordonnees_gps": [ + 48.2343278617, + 0.0606617233123 + ], + "libelle_d_acheminement": "ST CHRISTOPHE DU JAMBET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0606617233123, + 48.2343278617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f58b305e075680ca2c1965d12fd2e270e648cbe7", + "fields": { + "code_commune_insee": "72275", + "nom_de_la_commune": "ST CORNEILLE", + "code_postal": "72460", + "coordonnees_gps": [ + 48.0774289474, + 0.342197463189 + ], + "libelle_d_acheminement": "ST CORNEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.342197463189, + 48.0774289474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2104cca5571fe9a31ee1b8e261509e3480e19984", + "fields": { + "code_commune_insee": "72276", + "nom_de_la_commune": "ST COSME EN VAIRAIS", + "code_postal": "72110", + "coordonnees_gps": [ + 48.2744377482, + 0.457973879241 + ], + "libelle_d_acheminement": "ST COSME EN VAIRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.457973879241, + 48.2744377482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a850fe27552fa00a33a243030add2a65fe74ee5", + "fields": { + "code_commune_insee": "72280", + "nom_de_la_commune": "ST GEORGES DU BOIS", + "code_postal": "72700", + "coordonnees_gps": [ + 47.9720668662, + 0.101201029384 + ], + "libelle_d_acheminement": "ST GEORGES DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.101201029384, + 47.9720668662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44ae5b0cb578ac2226dd881aa5aaf6337e2b6309", + "fields": { + "code_commune_insee": "72281", + "nom_de_la_commune": "ST GEORGES DU ROSAY", + "code_postal": "72110", + "coordonnees_gps": [ + 48.1996205131, + 0.523209464167 + ], + "libelle_d_acheminement": "ST GEORGES DU ROSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.523209464167, + 48.1996205131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29f05a7234acee3ce5ec02aa05b0af4fd9db06e0", + "fields": { + "code_commune_insee": "72286", + "nom_de_la_commune": "ST GERVAIS DE VIC", + "code_postal": "72120", + "coordonnees_gps": [ + 47.882312592, + 0.733164783668 + ], + "libelle_d_acheminement": "ST GERVAIS DE VIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.733164783668, + 47.882312592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17be9116b86d65f7a490aa0af8118ab7bcace8d5", + "fields": { + "code_commune_insee": "72289", + "nom_de_la_commune": "STE JAMME SUR SARTHE", + "code_postal": "72380", + "coordonnees_gps": [ + 48.138410724, + 0.158484582373 + ], + "libelle_d_acheminement": "STE JAMME SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.158484582373, + 48.138410724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68cb8d713011b81461a57aa1f6d9688b2d505042", + "fields": { + "code_commune_insee": "72296", + "nom_de_la_commune": "ST MAIXENT", + "code_postal": "72320", + "coordonnees_gps": [ + 48.1092450135, + 0.652363595226 + ], + "libelle_d_acheminement": "ST MAIXENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.652363595226, + 48.1092450135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7cdeb89a78dbcc04d91e1828dccfc85cd0c68a6", + "fields": { + "code_commune_insee": "72297", + "nom_de_la_commune": "ST MARCEAU", + "code_postal": "72170", + "coordonnees_gps": [ + 48.1828234191, + 0.122196005127 + ], + "libelle_d_acheminement": "ST MARCEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.122196005127, + 48.1828234191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "401c470309715184d00d0da9d4bd09759bdbc5f3", + "fields": { + "code_commune_insee": "72305", + "nom_de_la_commune": "ST OUEN DE MIMBRE", + "code_postal": "72130", + "coordonnees_gps": [ + 48.2913700885, + 0.051229134462 + ], + "libelle_d_acheminement": "ST OUEN DE MIMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.051229134462, + 48.2913700885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0a48f20e630dcbc6586d4cbbbcf7c7826d0484e", + "fields": { + "code_commune_insee": "72306", + "nom_de_la_commune": "ST OUEN EN BELIN", + "code_postal": "72220", + "coordonnees_gps": [ + 47.8355363425, + 0.212260698777 + ], + "libelle_d_acheminement": "ST OUEN EN BELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.212260698777, + 47.8355363425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f487b0a70aee92b8a1a8ef198dd48d38bca316c", + "fields": { + "ligne_5": "LE CHEVAIN", + "code_commune_insee": "72308", + "libelle_d_acheminement": "ST PATERNE LE CHEVAIN", + "code_postal": "72610", + "nom_de_la_commune": "ST PATERNE LE CHEVAIN", + "coordonnees_gps": [ + 48.4136370812, + 0.114907308448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.114907308448, + 48.4136370812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfcacb88712faa3090766d0ce04a4887a7892cd9", + "fields": { + "code_commune_insee": "72311", + "nom_de_la_commune": "ST PIERRE DE CHEVILLE", + "code_postal": "72500", + "coordonnees_gps": [ + 47.6357786169, + 0.434044707817 + ], + "libelle_d_acheminement": "ST PIERRE DE CHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.434044707817, + 47.6357786169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab0f14f9082ce01f88f05488cf035b6ad09d0332", + "fields": { + "code_commune_insee": "72312", + "nom_de_la_commune": "ST PIERRE DES BOIS", + "code_postal": "72430", + "coordonnees_gps": [ + 47.9414864633, + -0.135650706918 + ], + "libelle_d_acheminement": "ST PIERRE DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.135650706918, + 47.9414864633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c9e6ce6eabae3b37efb9db89ba5641541018e7c", + "fields": { + "code_commune_insee": "72321", + "nom_de_la_commune": "ST SYMPHORIEN", + "code_postal": "72240", + "coordonnees_gps": [ + 48.0785627545, + -0.140972858304 + ], + "libelle_d_acheminement": "ST SYMPHORIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.140972858304, + 48.0785627545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ff4aa46acf67812a922166be40a90ea0067d6b2", + "fields": { + "code_commune_insee": "72331", + "nom_de_la_commune": "SCEAUX SUR HUISNE", + "code_postal": "72160", + "coordonnees_gps": [ + 48.1011260781, + 0.580759685853 + ], + "libelle_d_acheminement": "SCEAUX SUR HUISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.580759685853, + 48.1011260781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd4c65d2d9a7016989a8816bad2620c20c01e911", + "fields": { + "code_commune_insee": "72340", + "nom_de_la_commune": "SOULIGNE SOUS BALLON", + "code_postal": "72290", + "coordonnees_gps": [ + 48.1366698283, + 0.238046849882 + ], + "libelle_d_acheminement": "SOULIGNE SOUS BALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.238046849882, + 48.1366698283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3e9a4d480a6ba745b35f17ae9245a969d988212", + "fields": { + "code_commune_insee": "72341", + "nom_de_la_commune": "SOULITRE", + "code_postal": "72370", + "coordonnees_gps": [ + 48.0223482346, + 0.441300492215 + ], + "libelle_d_acheminement": "SOULITRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.441300492215, + 48.0223482346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7a152e3d545cce3d26dce231a23a3e111c762d7", + "fields": { + "code_commune_insee": "72348", + "nom_de_la_commune": "TASSILLE", + "code_postal": "72540", + "coordonnees_gps": [ + 47.9881765912, + -0.0946992624258 + ], + "libelle_d_acheminement": "TASSILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0946992624258, + 47.9881765912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7a4c803ac4c94b052030cb4bc633ef47af4c602", + "fields": { + "code_commune_insee": "72374", + "nom_de_la_commune": "VILLAINES LA CARELLE", + "code_postal": "72600", + "coordonnees_gps": [ + 48.3873561577, + 0.294814588667 + ], + "libelle_d_acheminement": "VILLAINES LA CARELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.294814588667, + 48.3873561577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dfb5141f27e4a12382866194877c447fdc260fd", + "fields": { + "code_commune_insee": "72376", + "nom_de_la_commune": "VILLAINES SOUS LUCE", + "code_postal": "72150", + "coordonnees_gps": [ + 47.8805456446, + 0.502085922886 + ], + "libelle_d_acheminement": "VILLAINES SOUS LUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.502085922886, + 47.8805456446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1937e9a7f045f9a3d0ae80fd122ab0e2e340f3ca", + "fields": { + "code_commune_insee": "72377", + "nom_de_la_commune": "VILLAINES SOUS MALICORNE", + "code_postal": "72270", + "coordonnees_gps": [ + 47.7570761042, + -0.104784379095 + ], + "libelle_d_acheminement": "VILLAINES SOUS MALICORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.104784379095, + 47.7570761042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bccbbf66ee91841e56b312bd157c9bb57b061ea8", + "fields": { + "code_commune_insee": "72380", + "nom_de_la_commune": "VIVOIN", + "code_postal": "72170", + "coordonnees_gps": [ + 48.2401913817, + 0.162292381772 + ], + "libelle_d_acheminement": "VIVOIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.162292381772, + 48.2401913817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcecc5fbd0db07472550cfd6195df2c4ee7c0e6f", + "fields": { + "code_commune_insee": "72383", + "nom_de_la_commune": "VOUVRAY SUR HUISNE", + "code_postal": "72160", + "coordonnees_gps": [ + 48.0857990108, + 0.553521929431 + ], + "libelle_d_acheminement": "VOUVRAY SUR HUISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.553521929431, + 48.0857990108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f764705d1045a54d2a42393f4b48cbc9e0d28b2", + "fields": { + "ligne_5": "TESSENS", + "code_commune_insee": "73006", + "libelle_d_acheminement": "AIME LA PLAGNE", + "code_postal": "73210", + "nom_de_la_commune": "AIME LA PLAGNE", + "coordonnees_gps": [ + 45.5525768932, + 6.61836974596 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61836974596, + 45.5525768932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0cae3920ce85296c0bdf091a09a520cc43ee755", + "fields": { + "ligne_5": "ST GERMAIN LA CHAMBOTTE", + "code_commune_insee": "73010", + "libelle_d_acheminement": "ENTRELACS", + "code_postal": "73410", + "nom_de_la_commune": "ENTRELACS", + "coordonnees_gps": [ + 45.789988746, + 5.93731067789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93731067789, + 45.789988746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c84e0341677a6af55deab934351a9fa81107258e", + "fields": { + "code_commune_insee": "73019", + "nom_de_la_commune": "ARGENTINE", + "code_postal": "73220", + "coordonnees_gps": [ + 45.4893893107, + 6.33336554074 + ], + "libelle_d_acheminement": "ARGENTINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33336554074, + 45.4893893107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7255041061d68334ee9675ab4f0733c64d610855", + "fields": { + "code_commune_insee": "73029", + "nom_de_la_commune": "BARBERAZ", + "code_postal": "73000", + "coordonnees_gps": [ + 45.5520596872, + 5.93925556329 + ], + "libelle_d_acheminement": "BARBERAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93925556329, + 45.5520596872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2af5cff1d64241353d42b4c6b8b55ee4c2a361de", + "fields": { + "code_commune_insee": "73031", + "nom_de_la_commune": "BASSENS", + "code_postal": "73000", + "coordonnees_gps": [ + 45.5810128911, + 5.93865967351 + ], + "libelle_d_acheminement": "BASSENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93865967351, + 45.5810128911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c6b8d3011970541e3973c2104c9241a16be497b", + "fields": { + "code_commune_insee": "73048", + "nom_de_la_commune": "BONVILLARD", + "code_postal": "73460", + "coordonnees_gps": [ + 45.5825214492, + 6.33021122482 + ], + "libelle_d_acheminement": "BONVILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33021122482, + 45.5825214492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3e876b85ad2dcb415577c325274d906b8488fdc", + "fields": { + "code_commune_insee": "73050", + "nom_de_la_commune": "BOURDEAU", + "code_postal": "73370", + "coordonnees_gps": [ + 45.6771264766, + 5.85370895157 + ], + "libelle_d_acheminement": "BOURDEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85370895157, + 45.6771264766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c40e7f97d2d0b10891c726c1db358eb2515803c", + "fields": { + "ligne_5": "HAUTEVILLE GONDON", + "code_commune_insee": "73054", + "libelle_d_acheminement": "BOURG ST MAURICE", + "code_postal": "73700", + "nom_de_la_commune": "BOURG ST MAURICE", + "coordonnees_gps": [ + 45.6647980545, + 6.76637903907 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76637903907, + 45.6647980545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6274fe8d7d4a0c2a2fb299e122b42b1b5d68f1b3", + "fields": { + "code_commune_insee": "73061", + "nom_de_la_commune": "CESARCHES", + "code_postal": "73200", + "coordonnees_gps": [ + 45.7027845836, + 6.41379630554 + ], + "libelle_d_acheminement": "CESARCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41379630554, + 45.7027845836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "559aa09762caf5e328d80af67fc47977964905b7", + "fields": { + "code_commune_insee": "73068", + "nom_de_la_commune": "CHAMOUSSET", + "code_postal": "73390", + "coordonnees_gps": [ + 45.5652468191, + 6.20689994252 + ], + "libelle_d_acheminement": "CHAMOUSSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20689994252, + 45.5652468191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a3fa556e4497c85854651b0c4dd95b7bff9265c", + "fields": { + "code_commune_insee": "73070", + "nom_de_la_commune": "CHAMPAGNEUX", + "code_postal": "73240", + "coordonnees_gps": [ + 45.6266318375, + 5.66751566229 + ], + "libelle_d_acheminement": "CHAMPAGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66751566229, + 45.6266318375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "765df45cc2549c963bb0a848046744c9459f0929", + "fields": { + "code_commune_insee": "73076", + "nom_de_la_commune": "LA CHAPELLE DU MONT DU CHAT", + "code_postal": "73370", + "coordonnees_gps": [ + 45.7138835544, + 5.85471743894 + ], + "libelle_d_acheminement": "LA CHAPELLE DU MONT DU CHAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85471743894, + 45.7138835544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b2e3b817ece23c9f89f34b01295ba8cf3589579", + "fields": { + "code_commune_insee": "73077", + "nom_de_la_commune": "LES CHAPELLES", + "code_postal": "73700", + "coordonnees_gps": [ + 45.6072931842, + 6.71151467254 + ], + "libelle_d_acheminement": "LES CHAPELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71151467254, + 45.6072931842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e89be550c9997c780301aff9659bbeb9a1fb6432", + "fields": { + "code_commune_insee": "73083", + "nom_de_la_commune": "LES CHAVANNES EN MAURIENNE", + "code_postal": "73660", + "coordonnees_gps": [ + 45.389687369, + 6.2888113422 + ], + "libelle_d_acheminement": "LES CHAVANNES EN MAURIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2888113422, + 45.389687369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "568796aefdc38ae03fcfca0d601195d87eafae11", + "fields": { + "code_commune_insee": "73087", + "nom_de_la_commune": "COGNIN", + "code_postal": "73160", + "coordonnees_gps": [ + 45.5594810193, + 5.89180815798 + ], + "libelle_d_acheminement": "COGNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89180815798, + 45.5594810193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88a5a22bae4bc961eb212e796f2a312f1a7b02a2", + "fields": { + "code_commune_insee": "73091", + "nom_de_la_commune": "CONJUX", + "code_postal": "73310", + "coordonnees_gps": [ + 45.7934929325, + 5.82300314526 + ], + "libelle_d_acheminement": "CONJUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82300314526, + 45.7934929325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cb61b33c78faaaa6b250759df52e33e230989b4", + "fields": { + "code_commune_insee": "73099", + "nom_de_la_commune": "DETRIER", + "code_postal": "73110", + "coordonnees_gps": [ + 45.4463545043, + 6.09897767775 + ], + "libelle_d_acheminement": "DETRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09897767775, + 45.4463545043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce038b9aa1e48f864b015d6465d33d4ee415c3a7", + "fields": { + "code_commune_insee": "73120", + "nom_de_la_commune": "FRETERIVE", + "code_postal": "73250", + "coordonnees_gps": [ + 45.5925212338, + 6.20927183971 + ], + "libelle_d_acheminement": "FRETERIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20927183971, + 45.5925212338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aaabc178e70a341a2d909fc26c604ed33dc459c", + "fields": { + "code_commune_insee": "73130", + "nom_de_la_commune": "GRIGNON", + "code_postal": "73200", + "coordonnees_gps": [ + 45.6421717118, + 6.38372169869 + ], + "libelle_d_acheminement": "GRIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38372169869, + 45.6421717118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f753de6c236e0e756ff849cc189a4b70883008d3", + "fields": { + "ligne_5": "LE CHATEL", + "code_commune_insee": "73135", + "libelle_d_acheminement": "LA TOUR EN MAURIENNE", + "code_postal": "73300", + "nom_de_la_commune": "LA TOUR EN MAURIENNE", + "coordonnees_gps": [ + 45.3048823312, + 6.38960278843 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38960278843, + 45.3048823312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "287d9287460647331d938bd7a40c324cfbaff7fd", + "fields": { + "code_commune_insee": "73141", + "nom_de_la_commune": "LAISSAUD", + "code_postal": "73800", + "coordonnees_gps": [ + 45.4540504149, + 6.03226580276 + ], + "libelle_d_acheminement": "LAISSAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03226580276, + 45.4540504149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a5c4212e7301c445a00cddade32272a117f95e2", + "fields": { + "code_commune_insee": "73154", + "nom_de_la_commune": "MERCURY", + "code_postal": "73200", + "coordonnees_gps": [ + 45.688171193, + 6.34436944153 + ], + "libelle_d_acheminement": "MERCURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34436944153, + 45.688171193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc18d051e0a2b2c3ce76faf4a982ee695743d7a7", + "fields": { + "code_commune_insee": "73162", + "nom_de_la_commune": "MONTAILLEUR", + "code_postal": "73460", + "coordonnees_gps": [ + 45.6193039756, + 6.26617322454 + ], + "libelle_d_acheminement": "MONTAILLEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26617322454, + 45.6193039756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f59712d0ff4608c8eb05f204ce5353f637a9714", + "fields": { + "code_commune_insee": "73170", + "nom_de_la_commune": "MONTHION", + "code_postal": "73200", + "coordonnees_gps": [ + 45.6225222086, + 6.37284425509 + ], + "libelle_d_acheminement": "MONTHION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37284425509, + 45.6225222086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e5337a07c51287f63120132e0c989826f293505", + "fields": { + "code_commune_insee": "73173", + "nom_de_la_commune": "MONTRICHER ALBANNE", + "code_postal": "73870", + "coordonnees_gps": [ + 45.2148500671, + 6.40795019067 + ], + "libelle_d_acheminement": "MONTRICHER ALBANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40795019067, + 45.2148500671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d6c5a9c9ad33f60dd353e0e9d4abe9fd0a2e676", + "fields": { + "code_commune_insee": "73178", + "nom_de_la_commune": "LA MOTTE EN BAUGES", + "code_postal": "73340", + "coordonnees_gps": [ + 45.7116475514, + 6.1315548442 + ], + "libelle_d_acheminement": "LA MOTTE EN BAUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1315548442, + 45.7116475514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5db9f7afbe1f95876beb1b308f5f3adc327ba933", + "fields": { + "code_commune_insee": "73180", + "nom_de_la_commune": "MOTZ", + "code_postal": "73310", + "coordonnees_gps": [ + 45.9187981352, + 5.84467711779 + ], + "libelle_d_acheminement": "MOTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84467711779, + 45.9187981352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df47fa29963e4a51c862e4c1b899693ef318d6e1", + "fields": { + "ligne_5": "CELLIERS", + "code_commune_insee": "73187", + "libelle_d_acheminement": "LA LECHERE", + "code_postal": "73260", + "nom_de_la_commune": "LA LECHERE", + "coordonnees_gps": [ + 45.5274218608, + 6.46078348062 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46078348062, + 45.5274218608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "449a86320f11b98fdea86d4e8ae440339062483e", + "fields": { + "ligne_5": "NAVES", + "code_commune_insee": "73187", + "libelle_d_acheminement": "LA LECHERE", + "code_postal": "73260", + "nom_de_la_commune": "LA LECHERE", + "coordonnees_gps": [ + 45.5274218608, + 6.46078348062 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46078348062, + 45.5274218608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4872a88be462382fd73002074fbd2869cae17b43", + "fields": { + "code_commune_insee": "73189", + "nom_de_la_commune": "NOTRE DAME DU CRUET", + "code_postal": "73130", + "coordonnees_gps": [ + 45.3752065363, + 6.3094948961 + ], + "libelle_d_acheminement": "NOTRE DAME DU CRUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3094948961, + 45.3752065363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75b808a29c881163da7dd360a9696f7f84474059", + "fields": { + "code_commune_insee": "73206", + "nom_de_la_commune": "PRALOGNAN LA VANOISE", + "code_postal": "73710", + "coordonnees_gps": [ + 45.3498188353, + 6.72039060964 + ], + "libelle_d_acheminement": "PRALOGNAN LA VANOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72039060964, + 45.3498188353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cf05603fb2ffb52124874121514e7e35596b17e", + "fields": { + "ligne_5": "AIGUEBELLE", + "code_commune_insee": "73212", + "libelle_d_acheminement": "VAL D ARC", + "code_postal": "73220", + "nom_de_la_commune": "VAL D ARC", + "coordonnees_gps": [ + 45.5440801099, + 6.32788266521 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32788266521, + 45.5440801099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d43669a2ad5fb8219abc48ae5caeb1cd4e9b693", + "fields": { + "ligne_5": "RANDENS", + "code_commune_insee": "73212", + "libelle_d_acheminement": "VAL D ARC", + "code_postal": "73220", + "nom_de_la_commune": "VAL D ARC", + "coordonnees_gps": [ + 45.5440801099, + 6.32788266521 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32788266521, + 45.5440801099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed55373500b38392a2158124f9c55be1e1d1cd0b", + "fields": { + "code_commune_insee": "73216", + "nom_de_la_commune": "ROGNAIX", + "code_postal": "73730", + "coordonnees_gps": [ + 45.5705817374, + 6.42314451894 + ], + "libelle_d_acheminement": "ROGNAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42314451894, + 45.5705817374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "527ccd5eeee22c542b78c041d3295809ef1c0dfa", + "fields": { + "code_commune_insee": "73222", + "nom_de_la_commune": "ST ALBAN LEYSSE", + "code_postal": "73230", + "coordonnees_gps": [ + 45.5881109422, + 5.95790977715 + ], + "libelle_d_acheminement": "ST ALBAN LEYSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95790977715, + 45.5881109422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5657ff311763b69e4322474e412714d4c9a2e4b6", + "fields": { + "code_commune_insee": "73223", + "nom_de_la_commune": "ST ANDRE", + "code_postal": "73500", + "coordonnees_gps": [ + 45.2241143172, + 6.61633706922 + ], + "libelle_d_acheminement": "ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61633706922, + 45.2241143172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "863e10ebff315b487e9f7dc3e0af00b8cb11dd9c", + "fields": { + "code_commune_insee": "73224", + "nom_de_la_commune": "ST AVRE", + "code_postal": "73130", + "coordonnees_gps": [ + 45.3494291274, + 6.3154898666 + ], + "libelle_d_acheminement": "ST AVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3154898666, + 45.3494291274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3947a65fca0d8c6b85f3a2eeb06084485ad3e387", + "fields": { + "ligne_5": "LA PERRIERE", + "code_commune_insee": "73227", + "libelle_d_acheminement": "COURCHEVEL", + "code_postal": "73120", + "nom_de_la_commune": "COURCHEVEL", + "coordonnees_gps": [ + 45.389507146, + 6.64742719024 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64742719024, + 45.389507146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b40bc382586725f978a267ee1d66fe667a3b2d8", + "fields": { + "code_commune_insee": "73230", + "nom_de_la_commune": "ST COLOMBAN DES VILLARDS", + "code_postal": "73130", + "coordonnees_gps": [ + 45.2665810428, + 6.18303706085 + ], + "libelle_d_acheminement": "ST COLOMBAN DES VILLARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18303706085, + 45.2665810428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b6f1c89632e4f75fb11bdfd0c2a6775441ae77f", + "fields": { + "ligne_5": "MONTAIMONT", + "code_commune_insee": "73235", + "libelle_d_acheminement": "ST FRANCOIS LONGCHAMP", + "code_postal": "73130", + "nom_de_la_commune": "ST FRANCOIS LONGCHAMP", + "coordonnees_gps": [ + 45.4121018734, + 6.37380621288 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37380621288, + 45.4121018734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5372467e284b0e04a9a4d99cee167b11489e77b", + "fields": { + "ligne_5": "ST GENIX SUR GUIERS", + "code_commune_insee": "73236", + "libelle_d_acheminement": "ST GENIX LES VILLAGES", + "code_postal": "73240", + "nom_de_la_commune": "ST GENIX LES VILLAGES", + "coordonnees_gps": [ + 45.5958143287, + 5.65587988646 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65587988646, + 45.5958143287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61a814bb560773b6860afdfed441ec3a1f0ca6d8", + "fields": { + "code_commune_insee": "73237", + "nom_de_la_commune": "ST GEORGES D HURTIERES", + "code_postal": "73220", + "coordonnees_gps": [ + 45.5076481725, + 6.28509753984 + ], + "libelle_d_acheminement": "ST GEORGES D HURTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28509753984, + 45.5076481725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "097a859fbdb23867addba43ab14f4913ae450dc8", + "fields": { + "code_commune_insee": "73243", + "nom_de_la_commune": "ST JEAN D ARVEY", + "code_postal": "73230", + "coordonnees_gps": [ + 45.5971514646, + 5.99104015513 + ], + "libelle_d_acheminement": "ST JEAN D ARVEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99104015513, + 45.5971514646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60067695d011f0099adf06611cb6532b6c68d853", + "fields": { + "code_commune_insee": "73247", + "nom_de_la_commune": "ST JEAN DE LA PORTE", + "code_postal": "73250", + "coordonnees_gps": [ + 45.5593907603, + 6.11977721306 + ], + "libelle_d_acheminement": "ST JEAN DE LA PORTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11977721306, + 45.5593907603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d904747bacbfe3829e33abedf9b632f4d1e32e10", + "fields": { + "code_commune_insee": "73250", + "nom_de_la_commune": "ST JULIEN MONT DENIS", + "code_postal": "73870", + "coordonnees_gps": [ + 45.2803881732, + 6.41769086937 + ], + "libelle_d_acheminement": "ST JULIEN MONT DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41769086937, + 45.2803881732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e82d26acc9d1dca7282cf308e9baef4cf3ecdc4b", + "fields": { + "ligne_5": "VILLARLURIN", + "code_commune_insee": "73257", + "libelle_d_acheminement": "LES BELLEVILLE", + "code_postal": "73600", + "nom_de_la_commune": "LES BELLEVILLE", + "coordonnees_gps": [ + 45.334431769, + 6.51686943075 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51686943075, + 45.334431769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8890c6f66c4fda961624d4e1b87e294f191190ac", + "fields": { + "code_commune_insee": "73259", + "nom_de_la_commune": "ST MARTIN SUR LA CHAMBRE", + "code_postal": "73130", + "coordonnees_gps": [ + 45.3722651224, + 6.32262500896 + ], + "libelle_d_acheminement": "ST MARTIN SUR LA CHAMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32262500896, + 45.3722651224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f96fab9b8c1886d74ce17a2d799b3055ea1e90a5", + "fields": { + "code_commune_insee": "73265", + "nom_de_la_commune": "ST OURS", + "code_postal": "73410", + "coordonnees_gps": [ + 45.7555682291, + 5.98099167623 + ], + "libelle_d_acheminement": "ST OURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98099167623, + 45.7555682291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "370d99b62ebcdae7f73f78b195d7bf37497e3741", + "fields": { + "code_commune_insee": "73278", + "nom_de_la_commune": "ST REMY DE MAURIENNE", + "code_postal": "73660", + "coordonnees_gps": [ + 45.3879084612, + 6.23781210409 + ], + "libelle_d_acheminement": "ST REMY DE MAURIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23781210409, + 45.3879084612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bcc9fb6de32915789071ebe19991be553f8c974", + "fields": { + "code_commune_insee": "73283", + "nom_de_la_commune": "ST VITAL", + "code_postal": "73460", + "coordonnees_gps": [ + 45.6265051509, + 6.30021225205 + ], + "libelle_d_acheminement": "ST VITAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30021225205, + 45.6265051509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1e54c8d4cc93f79581114ad17b3c030dde9a91c", + "fields": { + "ligne_5": "FONTAINE LE PUITS", + "code_commune_insee": "73284", + "libelle_d_acheminement": "SALINS FONTAINE", + "code_postal": "73600", + "nom_de_la_commune": "SALINS FONTAINE", + "coordonnees_gps": [ + 45.4717964236, + 6.5301880554 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5301880554, + 45.4717964236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e964903db45374b37b4c5016f9cefd75fda0ec63", + "fields": { + "code_commune_insee": "73288", + "nom_de_la_commune": "SONNAZ", + "code_postal": "73000", + "coordonnees_gps": [ + 45.6194864843, + 5.9172882002 + ], + "libelle_d_acheminement": "SONNAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9172882002, + 45.6194864843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4245196a74953f4d12549eba1333af5991f9d2bc", + "fields": { + "code_commune_insee": "73289", + "nom_de_la_commune": "LA TABLE", + "code_postal": "73110", + "coordonnees_gps": [ + 45.4723580933, + 6.1858039721 + ], + "libelle_d_acheminement": "LA TABLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1858039721, + 45.4723580933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "610a9243ba46607f7f455f5d24afa24f51f035fb", + "fields": { + "ligne_5": "LANSLEVILLARD", + "code_commune_insee": "73290", + "libelle_d_acheminement": "VAL CENIS", + "code_postal": "73480", + "nom_de_la_commune": "VAL CENIS", + "coordonnees_gps": [ + 45.3441528771, + 6.84789108583 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84789108583, + 45.3441528771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "515d02b9a4735aa921a65d4bee42ded76fe5baa1", + "fields": { + "ligne_5": "BRAMANS", + "code_commune_insee": "73290", + "libelle_d_acheminement": "VAL CENIS", + "code_postal": "73500", + "nom_de_la_commune": "VAL CENIS", + "coordonnees_gps": [ + 45.3441528771, + 6.84789108583 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84789108583, + 45.3441528771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8745acb84d88d2b81895bc63ad99d1bab6c0be2f", + "fields": { + "ligne_5": "SOLLIERES SARDIERES", + "code_commune_insee": "73290", + "libelle_d_acheminement": "VAL CENIS", + "code_postal": "73500", + "nom_de_la_commune": "VAL CENIS", + "coordonnees_gps": [ + 45.3441528771, + 6.84789108583 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84789108583, + 45.3441528771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "494e49968d01fe02724973dcf34e528cca3cf4f4", + "fields": { + "code_commune_insee": "73297", + "nom_de_la_commune": "TOURNON", + "code_postal": "73460", + "coordonnees_gps": [ + 45.637794827, + 6.32739261169 + ], + "libelle_d_acheminement": "TOURNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32739261169, + 45.637794827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f27f0e1e425fd4332042f0c97006d45b8022e9b8", + "fields": { + "code_commune_insee": "73299", + "nom_de_la_commune": "TRAIZE", + "code_postal": "73170", + "coordonnees_gps": [ + 45.6716573286, + 5.73696272182 + ], + "libelle_d_acheminement": "TRAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73696272182, + 45.6716573286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adf67bfb77b06af3961d2078896612a4e3b9fb5e", + "fields": { + "code_commune_insee": "73308", + "nom_de_la_commune": "VENTHON", + "code_postal": "73200", + "coordonnees_gps": [ + 45.6870981041, + 6.41810661947 + ], + "libelle_d_acheminement": "VENTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41810661947, + 45.6870981041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2565757186d652af4592e1f8c141ab1fd502a01", + "fields": { + "code_commune_insee": "73309", + "nom_de_la_commune": "VEREL DE MONTBEL", + "code_postal": "73330", + "coordonnees_gps": [ + 45.5537409191, + 5.72394607182 + ], + "libelle_d_acheminement": "VEREL DE MONTBEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72394607182, + 45.5537409191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a14c90d7ab0bfcca5753101e8afbabac1a7e61b", + "fields": { + "code_commune_insee": "73311", + "nom_de_la_commune": "LE VERNEIL", + "code_postal": "73110", + "coordonnees_gps": [ + 45.450825812, + 6.18533015026 + ], + "libelle_d_acheminement": "LE VERNEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18533015026, + 45.450825812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fc5378ad69e9bf7f8fdf0429d0e943dc46eb101", + "fields": { + "ligne_5": "LE CORBIER", + "code_commune_insee": "73318", + "libelle_d_acheminement": "VILLAREMBERT", + "code_postal": "73300", + "nom_de_la_commune": "VILLAREMBERT", + "coordonnees_gps": [ + 45.2399528685, + 6.2643037706 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2643037706, + 45.2399528685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "baddae15c7195f106d98d8b60e254031ca7cf8ee", + "fields": { + "code_commune_insee": "74037", + "nom_de_la_commune": "BOEGE", + "code_postal": "74420", + "coordonnees_gps": [ + 46.2188768633, + 6.38530552261 + ], + "libelle_d_acheminement": "BOEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38530552261, + 46.2188768633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ce6abe1a0b8a55e3f840cff4f9077e6f958e3aa", + "fields": { + "code_commune_insee": "74040", + "nom_de_la_commune": "BONNE", + "code_postal": "74380", + "coordonnees_gps": [ + 46.1718364348, + 6.31931310923 + ], + "libelle_d_acheminement": "BONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31931310923, + 46.1718364348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1718c2eda0291b9e6213b2050d520919e89aff71", + "fields": { + "code_commune_insee": "74049", + "nom_de_la_commune": "BRIZON", + "code_postal": "74130", + "coordonnees_gps": [ + 46.0352614624, + 6.43415213 + ], + "libelle_d_acheminement": "BRIZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43415213, + 46.0352614624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35f67b77439e3f6f00f5455a35fef850a188ac6e", + "fields": { + "code_commune_insee": "74060", + "nom_de_la_commune": "LA CHAPELLE ST MAURICE", + "code_postal": "74410", + "coordonnees_gps": [ + 45.7714927901, + 6.15405726067 + ], + "libelle_d_acheminement": "LA CHAPELLE ST MAURICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15405726067, + 45.7714927901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a581eb83d1423e7868d571ef8fb51b579f218eb4", + "fields": { + "code_commune_insee": "74081", + "nom_de_la_commune": "CLUSES", + "code_postal": "74300", + "coordonnees_gps": [ + 46.0631088613, + 6.57892080059 + ], + "libelle_d_acheminement": "CLUSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57892080059, + 46.0631088613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a90ec2df9bace972ef5da06d3d2b55e7f63f720", + "fields": { + "code_commune_insee": "74083", + "nom_de_la_commune": "COMBLOUX", + "code_postal": "74920", + "coordonnees_gps": [ + 45.8910313929, + 6.63687678944 + ], + "libelle_d_acheminement": "COMBLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63687678944, + 45.8910313929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d6ec5a0a703bd7bc1df33d54334a971c2d6ddf9", + "fields": { + "code_commune_insee": "74091", + "nom_de_la_commune": "LA COTE D ARBROZ", + "code_postal": "74110", + "coordonnees_gps": [ + 46.1811051133, + 6.63111937923 + ], + "libelle_d_acheminement": "LA COTE D ARBROZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63111937923, + 46.1811051133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1b29ff749e81853ca23d2f19137a7456da84f7d", + "fields": { + "code_commune_insee": "74094", + "nom_de_la_commune": "CRANVES SALES", + "code_postal": "74380", + "coordonnees_gps": [ + 46.1974383697, + 6.30389958032 + ], + "libelle_d_acheminement": "CRANVES SALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30389958032, + 46.1974383697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12d2c176aae03e6dfdd55788f34f146aaa448c94", + "fields": { + "code_commune_insee": "74103", + "nom_de_la_commune": "DOMANCY", + "code_postal": "74700", + "coordonnees_gps": [ + 45.9071921608, + 6.66391720268 + ], + "libelle_d_acheminement": "DOMANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66391720268, + 45.9071921608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d8765554bbae642e4c6611f50462758b905b10b", + "fields": { + "code_commune_insee": "74135", + "nom_de_la_commune": "GIEZ", + "code_postal": "74210", + "coordonnees_gps": [ + 45.7384038811, + 6.24575065655 + ], + "libelle_d_acheminement": "GIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24575065655, + 45.7384038811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "314f18f5095ff26fa638b40c4e33bdc5cd36ed13", + "fields": { + "code_commune_insee": "74144", + "nom_de_la_commune": "JONZIER EPAGNY", + "code_postal": "74520", + "coordonnees_gps": [ + 46.0765856703, + 5.98885636261 + ], + "libelle_d_acheminement": "JONZIER EPAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98885636261, + 46.0765856703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3d5309ea8c1d5cd0cfeea71b8d729537018e37b", + "fields": { + "ligne_5": "MARLENS", + "code_commune_insee": "74167", + "libelle_d_acheminement": "VAL DE CHAISE", + "code_postal": "74210", + "nom_de_la_commune": "VAL DE CHAISE", + "coordonnees_gps": [ + 45.7653898846, + 6.35142628779 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35142628779, + 45.7653898846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0b5a31f9dc2bcfb08e3daa3677a357948f5b756", + "fields": { + "code_commune_insee": "74184", + "nom_de_la_commune": "MINZIER", + "code_postal": "74270", + "coordonnees_gps": [ + 46.0551645606, + 5.99089024403 + ], + "libelle_d_acheminement": "MINZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99089024403, + 46.0551645606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28198e143cb146555f5f08405cd4199cf5b89201", + "fields": { + "code_commune_insee": "74186", + "nom_de_la_commune": "MONTAGNY LES LANCHES", + "code_postal": "74600", + "coordonnees_gps": [ + 45.8589669749, + 6.04681935916 + ], + "libelle_d_acheminement": "MONTAGNY LES LANCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04681935916, + 45.8589669749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc9aca89d14daf803cccd1c2afbc68c35b5cc791", + "fields": { + "code_commune_insee": "74194", + "nom_de_la_commune": "MURES", + "code_postal": "74540", + "coordonnees_gps": [ + 45.8062692849, + 6.03921790944 + ], + "libelle_d_acheminement": "MURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03921790944, + 45.8062692849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dcb0cabb20327eea20e93057e20e91049d5f559", + "fields": { + "code_commune_insee": "74195", + "nom_de_la_commune": "MUSIEGES", + "code_postal": "74270", + "coordonnees_gps": [ + 46.014191585, + 5.95578712285 + ], + "libelle_d_acheminement": "MUSIEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95578712285, + 46.014191585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd6569196cd1393c476d0807b732510f36a27dc3", + "fields": { + "code_commune_insee": "74203", + "nom_de_la_commune": "NOVEL", + "code_postal": "74500", + "coordonnees_gps": [ + 46.3613258341, + 6.76382065877 + ], + "libelle_d_acheminement": "NOVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76382065877, + 46.3613258341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "506c34cec390213234706f39058c1ed926321e5d", + "fields": { + "code_commune_insee": "74209", + "nom_de_la_commune": "PEILLONNEX", + "code_postal": "74250", + "coordonnees_gps": [ + 46.1323903269, + 6.38235648259 + ], + "libelle_d_acheminement": "PEILLONNEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38235648259, + 46.1323903269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1179e6d754b6daa6229305b1cea912bec7729d25", + "fields": { + "code_commune_insee": "44073", + "nom_de_la_commune": "HERIC", + "code_postal": "44810", + "coordonnees_gps": [ + 47.4207936826, + -1.63717757742 + ], + "libelle_d_acheminement": "HERIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63717757742, + 47.4207936826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be1e2802000bfe060cc151bac7641abb2fa9fe29", + "fields": { + "code_commune_insee": "44074", + "nom_de_la_commune": "INDRE", + "code_postal": "44610", + "coordonnees_gps": [ + 47.1985008197, + -1.6717810311 + ], + "libelle_d_acheminement": "INDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6717810311, + 47.1985008197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60780c6ccf2187f2441b4746025e3b0d3e83fb7e", + "fields": { + "ligne_5": "BASSE INDRE", + "code_commune_insee": "44074", + "libelle_d_acheminement": "INDRE", + "code_postal": "44610", + "nom_de_la_commune": "INDRE", + "coordonnees_gps": [ + 47.1985008197, + -1.6717810311 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6717810311, + 47.1985008197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3dbcd84a151452e753d2bfcdcb5362f690aee6f", + "fields": { + "code_commune_insee": "44077", + "nom_de_la_commune": "JOUE SUR ERDRE", + "code_postal": "44440", + "coordonnees_gps": [ + 47.5092437538, + -1.42943494948 + ], + "libelle_d_acheminement": "JOUE SUR ERDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42943494948, + 47.5092437538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f58bfd787982556c92f7d6a8e6ae1725b586089b", + "fields": { + "code_commune_insee": "44085", + "nom_de_la_commune": "LOUISFERT", + "code_postal": "44110", + "coordonnees_gps": [ + 47.6709262374, + -1.42601382779 + ], + "libelle_d_acheminement": "LOUISFERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42601382779, + 47.6709262374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76b7c650fdb818dcd6d9ac0413a1705816576a64", + "fields": { + "code_commune_insee": "44091", + "nom_de_la_commune": "MARSAC SUR DON", + "code_postal": "44170", + "coordonnees_gps": [ + 47.5923270414, + -1.69651775245 + ], + "libelle_d_acheminement": "MARSAC SUR DON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69651775245, + 47.5923270414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c894bf93b6f6aba0e2a82798b59d671ae1cccef", + "fields": { + "code_commune_insee": "44094", + "nom_de_la_commune": "MAUVES SUR LOIRE", + "code_postal": "44470", + "coordonnees_gps": [ + 47.3161301081, + -1.40277407662 + ], + "libelle_d_acheminement": "MAUVES SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40277407662, + 47.3161301081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cd53d0699138a38388842160ae827722483d3b2", + "fields": { + "code_commune_insee": "44095", + "nom_de_la_commune": "LA MEILLERAYE DE BRETAGNE", + "code_postal": "44520", + "coordonnees_gps": [ + 47.5639720194, + -1.39409136304 + ], + "libelle_d_acheminement": "LA MEILLERAYE DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39409136304, + 47.5639720194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45092d91476d0c6cf1bc8e9e8a7306cf6246a004", + "fields": { + "code_commune_insee": "44098", + "nom_de_la_commune": "MISSILLAC", + "code_postal": "44780", + "coordonnees_gps": [ + 47.4881482821, + -2.17765365439 + ], + "libelle_d_acheminement": "MISSILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17765365439, + 47.4881482821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c6e0b5361b2c5bcbd2cb4ea4723d9b95d21bae2", + "fields": { + "code_commune_insee": "44099", + "nom_de_la_commune": "MOISDON LA RIVIERE", + "code_postal": "44520", + "coordonnees_gps": [ + 47.6222503824, + -1.37465777304 + ], + "libelle_d_acheminement": "MOISDON LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37465777304, + 47.6222503824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2365e5d9acae8a10e086ae60b24145d01fcec024", + "fields": { + "code_commune_insee": "44104", + "nom_de_la_commune": "MONTRELAIS", + "code_postal": "44370", + "coordonnees_gps": [ + 47.4026410683, + -0.971865462189 + ], + "libelle_d_acheminement": "MONTRELAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.971865462189, + 47.4026410683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4011ec72eb290275a9416d779d06e541c2a8d11b", + "fields": { + "code_commune_insee": "44105", + "nom_de_la_commune": "MOUAIS", + "code_postal": "44590", + "coordonnees_gps": [ + 47.7049782547, + -1.66473754092 + ], + "libelle_d_acheminement": "MOUAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66473754092, + 47.7049782547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38d0f132f9962fbdb7c31af183f348598dedda28", + "fields": { + "code_commune_insee": "44107", + "nom_de_la_commune": "MOUZEIL", + "code_postal": "44850", + "coordonnees_gps": [ + 47.437869782, + -1.33099515958 + ], + "libelle_d_acheminement": "MOUZEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33099515958, + 47.437869782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e8538144199052026157880aa9ab17663e68a85", + "fields": { + "code_commune_insee": "44109", + "nom_de_la_commune": "NANTES", + "code_postal": "44300", + "coordonnees_gps": [ + 47.2316356767, + -1.54831008605 + ], + "libelle_d_acheminement": "NANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54831008605, + 47.2316356767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2826f600a56b84348f201c038d4450fa261e94e", + "fields": { + "code_commune_insee": "44114", + "nom_de_la_commune": "ORVAULT", + "code_postal": "44700", + "coordonnees_gps": [ + 47.2739815478, + -1.62323898524 + ], + "libelle_d_acheminement": "ORVAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62323898524, + 47.2739815478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11daa3634dff0e85db0adbba2892b33b67a47f9a", + "fields": { + "code_commune_insee": "44121", + "nom_de_la_commune": "PETIT AUVERNE", + "code_postal": "44670", + "coordonnees_gps": [ + 47.6113610952, + -1.27773597546 + ], + "libelle_d_acheminement": "PETIT AUVERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27773597546, + 47.6113610952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e77def219835311a235e2e421f725a304e7218d", + "fields": { + "code_commune_insee": "44124", + "nom_de_la_commune": "LE PIN", + "code_postal": "44540", + "coordonnees_gps": [ + 47.5921101403, + -1.1470215048 + ], + "libelle_d_acheminement": "LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1470215048, + 47.5921101403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c46eb65f1570f466c1916e80408603806543547c", + "fields": { + "code_commune_insee": "44128", + "nom_de_la_commune": "PLESSE", + "code_postal": "44630", + "coordonnees_gps": [ + 47.5557486835, + -1.89050130746 + ], + "libelle_d_acheminement": "PLESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89050130746, + 47.5557486835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56d942745f0dc6a8d95eff20d882752053933997", + "fields": { + "ligne_5": "ST ROCH", + "code_commune_insee": "44129", + "libelle_d_acheminement": "PONTCHATEAU", + "code_postal": "44160", + "nom_de_la_commune": "PONTCHATEAU", + "coordonnees_gps": [ + 47.433636363, + -2.09556089039 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09556089039, + 47.433636363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4e56018f7ea1d42de76212d070c9e090f99065e", + "fields": { + "ligne_5": "VIAIS", + "code_commune_insee": "44130", + "libelle_d_acheminement": "PONT ST MARTIN", + "code_postal": "44860", + "nom_de_la_commune": "PONT ST MARTIN", + "coordonnees_gps": [ + 47.126582936, + -1.56594193848 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56594193848, + 47.126582936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22ff44276f78daec2383ba2913f8b2f08ba73f14", + "fields": { + "code_commune_insee": "44138", + "nom_de_la_commune": "PUCEUL", + "code_postal": "44390", + "coordonnees_gps": [ + 47.5188688924, + -1.61966399474 + ], + "libelle_d_acheminement": "PUCEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61966399474, + 47.5188688924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ab481f1b8a6fe4ce83181e535abff5c55cb0d7b", + "fields": { + "code_commune_insee": "44140", + "nom_de_la_commune": "LA REGRIPPIERE", + "code_postal": "44330", + "coordonnees_gps": [ + 47.1851327192, + -1.19445859002 + ], + "libelle_d_acheminement": "LA REGRIPPIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19445859002, + 47.1851327192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d50b4396ad76b930c2a2c1ffa0b029891426116c", + "fields": { + "code_commune_insee": "44142", + "nom_de_la_commune": "REMOUILLE", + "code_postal": "44140", + "coordonnees_gps": [ + 47.0385516844, + -1.38749002799 + ], + "libelle_d_acheminement": "REMOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38749002799, + 47.0385516844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37bc85ed788e1ca35474ffe3de16820ba43932cd", + "fields": { + "code_commune_insee": "44148", + "nom_de_la_commune": "RUFFIGNE", + "code_postal": "44660", + "coordonnees_gps": [ + 47.764464663, + -1.52121555918 + ], + "libelle_d_acheminement": "RUFFIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52121555918, + 47.764464663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b19f701cbc1ccf845cdb607ef63eeec3fe8fcbe", + "fields": { + "code_commune_insee": "44156", + "nom_de_la_commune": "CORCOUE SUR LOGNE", + "code_postal": "44650", + "coordonnees_gps": [ + 46.9532455273, + -1.60060237938 + ], + "libelle_d_acheminement": "CORCOUE SUR LOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60060237938, + 46.9532455273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82ab182b918565cbaf3c3ab8a163facbf9841f27", + "fields": { + "ligne_5": "ST JEAN DE CORCOUE", + "code_commune_insee": "44156", + "libelle_d_acheminement": "CORCOUE SUR LOGNE", + "code_postal": "44650", + "nom_de_la_commune": "CORCOUE SUR LOGNE", + "coordonnees_gps": [ + 46.9532455273, + -1.60060237938 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60060237938, + 46.9532455273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a9bfc65296b4702b2028d4b9ff9c5ceba6de92b", + "fields": { + "code_commune_insee": "44165", + "nom_de_la_commune": "ST HILAIRE DE CLISSON", + "code_postal": "44190", + "coordonnees_gps": [ + 47.0595826465, + -1.3165732334 + ], + "libelle_d_acheminement": "ST HILAIRE DE CLISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3165732334, + 47.0595826465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "856e250bb135ae3c990320fe20babe70a22188b3", + "fields": { + "code_commune_insee": "44169", + "nom_de_la_commune": "ST JULIEN DE CONCELLES", + "code_postal": "44450", + "coordonnees_gps": [ + 47.246301757, + -1.40639571844 + ], + "libelle_d_acheminement": "ST JULIEN DE CONCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40639571844, + 47.246301757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11e5d6859e64a1abb8b61872e9324d0bd6b48307", + "fields": { + "code_commune_insee": "44170", + "nom_de_la_commune": "ST JULIEN DE VOUVANTES", + "code_postal": "44670", + "coordonnees_gps": [ + 47.653118581, + -1.22941680644 + ], + "libelle_d_acheminement": "ST JULIEN DE VOUVANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22941680644, + 47.653118581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e07725ad99ad2d229d10ceb07a70a1a58c344ad", + "fields": { + "code_commune_insee": "44178", + "nom_de_la_commune": "ST MARS DE COUTAIS", + "code_postal": "44680", + "coordonnees_gps": [ + 47.0798520838, + -1.75208948345 + ], + "libelle_d_acheminement": "ST MARS DE COUTAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75208948345, + 47.0798520838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db32cdf9763a20ac7a3b9a8c241c3bc69bd9cb18", + "fields": { + "code_commune_insee": "44183", + "nom_de_la_commune": "ST MOLF", + "code_postal": "44350", + "coordonnees_gps": [ + 47.3882223801, + -2.41488913268 + ], + "libelle_d_acheminement": "ST MOLF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41488913268, + 47.3882223801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c3e4485574845eafd0d0c4f83f7a88337e9ae12", + "fields": { + "ligne_5": "ST MARC SUR MER", + "code_commune_insee": "44184", + "libelle_d_acheminement": "ST NAZAIRE", + "code_postal": "44600", + "nom_de_la_commune": "ST NAZAIRE", + "coordonnees_gps": [ + 47.2802857028, + -2.25379927249 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.25379927249, + 47.2802857028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b263a5b77671db3d0e3a2ebb932728c399324c8", + "fields": { + "code_commune_insee": "44185", + "nom_de_la_commune": "ST NICOLAS DE REDON", + "code_postal": "44460", + "coordonnees_gps": [ + 47.6362405155, + -2.05685289452 + ], + "libelle_d_acheminement": "ST NICOLAS DE REDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05685289452, + 47.6362405155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc7eb44f23277ae269748da6ff059c4a85af37f7", + "fields": { + "code_commune_insee": "44187", + "nom_de_la_commune": "ST PERE EN RETZ", + "code_postal": "44320", + "coordonnees_gps": [ + 47.2253813658, + -2.06604710896 + ], + "libelle_d_acheminement": "ST PERE EN RETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06604710896, + 47.2253813658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b95d9d0c04f910d0a27b77a44efa3c256db06d88", + "fields": { + "code_commune_insee": "44196", + "nom_de_la_commune": "SEVERAC", + "code_postal": "44530", + "coordonnees_gps": [ + 47.554402668, + -2.06655618594 + ], + "libelle_d_acheminement": "SEVERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06655618594, + 47.554402668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd617cabb1cfd0203a274ff3b8bb95e56852250f", + "fields": { + "code_commune_insee": "44201", + "nom_de_la_commune": "SUCE SUR ERDRE", + "code_postal": "44240", + "coordonnees_gps": [ + 47.3536547402, + -1.51945689724 + ], + "libelle_d_acheminement": "SUCE SUR ERDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51945689724, + 47.3536547402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aacbdb42debedcc941bf5f2b388023e39e7be79d", + "fields": { + "code_commune_insee": "44206", + "nom_de_la_commune": "TOUVOIS", + "code_postal": "44650", + "coordonnees_gps": [ + 46.9065013281, + -1.67969033397 + ], + "libelle_d_acheminement": "TOUVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.67969033397, + 46.9065013281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cd160f32b138f2a98c5bd30a02f2aa9b45a7bcf", + "fields": { + "code_commune_insee": "44207", + "nom_de_la_commune": "TRANS SUR ERDRE", + "code_postal": "44440", + "coordonnees_gps": [ + 47.4785800953, + -1.36363954678 + ], + "libelle_d_acheminement": "TRANS SUR ERDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36363954678, + 47.4785800953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d8a4ada64655dd37c0326aba1690eb41561d335", + "fields": { + "code_commune_insee": "44211", + "nom_de_la_commune": "LA TURBALLE", + "code_postal": "44420", + "coordonnees_gps": [ + 47.3507474102, + -2.48853439808 + ], + "libelle_d_acheminement": "LA TURBALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.48853439808, + 47.3507474102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb562de96d4a298be242b9a875d6e5d434a72c87", + "fields": { + "ligne_5": "LA CHAPELLE ST SAUVEUR", + "code_commune_insee": "44213", + "libelle_d_acheminement": "LOIREAUXENCE", + "code_postal": "44370", + "nom_de_la_commune": "LOIREAUXENCE", + "coordonnees_gps": [ + 47.4023133343, + -1.0243274407 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0243274407, + 47.4023133343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ead010cc39d308b3e4988ab77e680e40d1509c4", + "fields": { + "code_commune_insee": "44215", + "nom_de_la_commune": "VERTOU", + "code_postal": "44120", + "coordonnees_gps": [ + 47.1603732625, + -1.47052291749 + ], + "libelle_d_acheminement": "VERTOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47052291749, + 47.1603732625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1000bc9ec7dd9b0874c48bdea2ec9d599dc896fe", + "fields": { + "code_commune_insee": "44218", + "nom_de_la_commune": "VILLEPOT", + "code_postal": "44110", + "coordonnees_gps": [ + 47.7700054749, + -1.28499992375 + ], + "libelle_d_acheminement": "VILLEPOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28499992375, + 47.7700054749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2e08d00ae33fb73b315d7c7649555aef9f23bd1", + "fields": { + "code_commune_insee": "45004", + "nom_de_la_commune": "AMILLY", + "code_postal": "45200", + "coordonnees_gps": [ + 47.9867116879, + 2.78217519303 + ], + "libelle_d_acheminement": "AMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78217519303, + 47.9867116879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e9b6b6b258c1d6c3a3760934b9c14cfbb9f7882", + "fields": { + "code_commune_insee": "45018", + "nom_de_la_commune": "AUXY", + "code_postal": "45340", + "coordonnees_gps": [ + 48.1092099568, + 2.48643135047 + ], + "libelle_d_acheminement": "AUXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48643135047, + 48.1092099568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "298b4cd307cc8062d08d0b38df7969da01985174", + "fields": { + "code_commune_insee": "45019", + "nom_de_la_commune": "BACCON", + "code_postal": "45130", + "coordonnees_gps": [ + 47.8850157049, + 1.62389157933 + ], + "libelle_d_acheminement": "BACCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62389157933, + 47.8850157049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbcfa09a61839cab117f230f30911bcff9ed2fa4", + "fields": { + "code_commune_insee": "45028", + "nom_de_la_commune": "BEAUGENCY", + "code_postal": "45190", + "coordonnees_gps": [ + 47.7781494309, + 1.63946818857 + ], + "libelle_d_acheminement": "BEAUGENCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63946818857, + 47.7781494309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df242df369be6a98c613f7d857797459424282b5", + "fields": { + "code_commune_insee": "45030", + "nom_de_la_commune": "BEAUNE LA ROLANDE", + "code_postal": "45340", + "coordonnees_gps": [ + 48.0745543416, + 2.42978796262 + ], + "libelle_d_acheminement": "BEAUNE LA ROLANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42978796262, + 48.0745543416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "603037ff35e965c0e441af976e56703c407cc588", + "fields": { + "code_commune_insee": "45031", + "nom_de_la_commune": "BELLEGARDE", + "code_postal": "45270", + "coordonnees_gps": [ + 47.9802482438, + 2.41619642926 + ], + "libelle_d_acheminement": "BELLEGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41619642926, + 47.9802482438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fcaa0fc5efb7344a676c299eaa8f07a878bf650", + "fields": { + "code_commune_insee": "45041", + "nom_de_la_commune": "BORDEAUX EN GATINAIS", + "code_postal": "45340", + "coordonnees_gps": [ + 48.1008672557, + 2.53676265112 + ], + "libelle_d_acheminement": "BORDEAUX EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53676265112, + 48.1008672557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11b064b3a6921d43aa4d8e3390a53ced9586e4d2", + "fields": { + "code_commune_insee": "45044", + "nom_de_la_commune": "BOUGY LEZ NEUVILLE", + "code_postal": "45170", + "coordonnees_gps": [ + 48.0420549019, + 2.02334838722 + ], + "libelle_d_acheminement": "BOUGY LEZ NEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02334838722, + 48.0420549019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac76fe2b66674aed3589347a42823d07862931b4", + "fields": { + "code_commune_insee": "45049", + "nom_de_la_commune": "BOUZY LA FORET", + "code_postal": "45460", + "coordonnees_gps": [ + 47.8653801463, + 2.36802219641 + ], + "libelle_d_acheminement": "BOUZY LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36802219641, + 47.8653801463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0cadbdebf40e6443ef47f978a5d313c14744b63", + "fields": { + "ligne_5": "ST AIGNAN DES GUES", + "code_commune_insee": "45051", + "libelle_d_acheminement": "BRAY ST AIGNAN", + "code_postal": "45460", + "nom_de_la_commune": "BRAY ST AIGNAN", + "coordonnees_gps": [ + 47.8291578282, + 2.38062384404 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38062384404, + 47.8291578282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c9ea88e349d512c8720320d76fad5e087ec4a14", + "fields": { + "code_commune_insee": "45054", + "nom_de_la_commune": "BRIARRES SUR ESSONNE", + "code_postal": "45390", + "coordonnees_gps": [ + 48.2263298092, + 2.41359729566 + ], + "libelle_d_acheminement": "BRIARRES SUR ESSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41359729566, + 48.2263298092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "670bf87e91bb2061185be488f67d7384a78f9a0f", + "fields": { + "code_commune_insee": "45061", + "nom_de_la_commune": "CEPOY", + "code_postal": "45120", + "coordonnees_gps": [ + 48.0508863567, + 2.74010416872 + ], + "libelle_d_acheminement": "CEPOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74010416872, + 48.0508863567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27ec125780019f92ae347b1fcd82bba279a63658", + "fields": { + "code_commune_insee": "45065", + "nom_de_la_commune": "CESARVILLE DOSSAINVILLE", + "code_postal": "45300", + "coordonnees_gps": [ + 48.2628087686, + 2.28517501246 + ], + "libelle_d_acheminement": "CESARVILLE DOSSAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28517501246, + 48.2628087686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26bf7c722d15f28ce9dcc078aef69e7139fdd6c2", + "fields": { + "code_commune_insee": "45072", + "nom_de_la_commune": "CHANTEAU", + "code_postal": "45400", + "coordonnees_gps": [ + 47.9761797581, + 1.9646366293 + ], + "libelle_d_acheminement": "CHANTEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9646366293, + 47.9761797581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4241a3dd4ef129d8128ed2b369f889c3ebe1e1ab", + "fields": { + "code_commune_insee": "45074", + "nom_de_la_commune": "LA CHAPELLE ONZERAIN", + "code_postal": "45310", + "coordonnees_gps": [ + 48.0330297955, + 1.61102196598 + ], + "libelle_d_acheminement": "LA CHAPELLE ONZERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61102196598, + 48.0330297955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a47d499b4acfe274e95d7870ab7abeb12933e8b", + "fields": { + "code_commune_insee": "45078", + "nom_de_la_commune": "CHAPELON", + "code_postal": "45270", + "coordonnees_gps": [ + 48.0368069969, + 2.5779425659 + ], + "libelle_d_acheminement": "CHAPELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5779425659, + 48.0368069969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8a821253a4e1af34e6aacde627c842611331109", + "fields": { + "code_commune_insee": "45084", + "nom_de_la_commune": "CHATENOY", + "code_postal": "45260", + "coordonnees_gps": [ + 47.9161167127, + 2.40625738372 + ], + "libelle_d_acheminement": "CHATENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40625738372, + 47.9161167127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63b65d9d11786fd9b134993483a2bc0fb7274a69", + "fields": { + "code_commune_insee": "45089", + "nom_de_la_commune": "CHECY", + "code_postal": "45430", + "coordonnees_gps": [ + 47.9024535913, + 2.02294070962 + ], + "libelle_d_acheminement": "CHECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02294070962, + 47.9024535913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f83ade9b67827d018541a99e6dbe7d614ce725d6", + "fields": { + "code_commune_insee": "45101", + "nom_de_la_commune": "COMBREUX", + "code_postal": "45530", + "coordonnees_gps": [ + 47.9564996872, + 2.30829387776 + ], + "libelle_d_acheminement": "COMBREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30829387776, + 47.9564996872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd28fb2b13e9a3846ecdeb52501b6bd881f93292", + "fields": { + "code_commune_insee": "45111", + "nom_de_la_commune": "COURCY AUX LOGES", + "code_postal": "45300", + "coordonnees_gps": [ + 48.0546832244, + 2.21728739508 + ], + "libelle_d_acheminement": "COURCY AUX LOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21728739508, + 48.0546832244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7441c8b61c34f828e743338a757b283182092c6d", + "fields": { + "code_commune_insee": "45113", + "nom_de_la_commune": "COURTEMAUX", + "code_postal": "45320", + "coordonnees_gps": [ + 48.0444652344, + 2.93270092042 + ], + "libelle_d_acheminement": "COURTEMAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93270092042, + 48.0444652344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db56d8bc3429e8ae4e262fe85588ca97c80d3cb5", + "fields": { + "code_commune_insee": "45120", + "nom_de_la_commune": "DAMMARIE EN PUISAYE", + "code_postal": "45420", + "coordonnees_gps": [ + 47.6332322961, + 2.86087598326 + ], + "libelle_d_acheminement": "DAMMARIE EN PUISAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86087598326, + 47.6332322961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6cac526eaf22260acdc0fcbe1ba537aed45b929", + "fields": { + "code_commune_insee": "45130", + "nom_de_la_commune": "DRY", + "code_postal": "45370", + "coordonnees_gps": [ + 47.7916018674, + 1.7282632469 + ], + "libelle_d_acheminement": "DRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7282632469, + 47.7916018674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84635f5d1b43d6c4c5a0b4d6f7e2a409bcf47ac7", + "fields": { + "code_commune_insee": "45132", + "nom_de_la_commune": "EGRY", + "code_postal": "45340", + "coordonnees_gps": [ + 48.1008974565, + 2.44089841893 + ], + "libelle_d_acheminement": "EGRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44089841893, + 48.1008974565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6939ad590e1da2548bcb3adaac216aa8ccf4a520", + "fields": { + "code_commune_insee": "45133", + "nom_de_la_commune": "ENGENVILLE", + "code_postal": "45300", + "coordonnees_gps": [ + 48.2343065606, + 2.23634182312 + ], + "libelle_d_acheminement": "ENGENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23634182312, + 48.2343065606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ce90f4e95549e129c642d98372a64e2d7173709", + "fields": { + "code_commune_insee": "45135", + "nom_de_la_commune": "ERCEVILLE", + "code_postal": "45480", + "coordonnees_gps": [ + 48.2454305059, + 2.0267549057 + ], + "libelle_d_acheminement": "ERCEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0267549057, + 48.2454305059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db6a64c0836441e694ae6b61f4766f7600ef1ece", + "fields": { + "code_commune_insee": "45144", + "nom_de_la_commune": "FEROLLES", + "code_postal": "45150", + "coordonnees_gps": [ + 47.8252781829, + 2.11682260412 + ], + "libelle_d_acheminement": "FEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11682260412, + 47.8252781829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6c063bd7fdceb484540c259c01d2be6ab26d824", + "fields": { + "code_commune_insee": "45152", + "nom_de_la_commune": "GEMIGNY", + "code_postal": "45310", + "coordonnees_gps": [ + 47.9627627539, + 1.70271671519 + ], + "libelle_d_acheminement": "GEMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70271671519, + 47.9627627539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b01af589936208b8b92ffcde42edd5ec65521267", + "fields": { + "code_commune_insee": "45159", + "nom_de_la_commune": "GRANGERMONT", + "code_postal": "45390", + "coordonnees_gps": [ + 48.1878936504, + 2.42926240539 + ], + "libelle_d_acheminement": "GRANGERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42926240539, + 48.1878936504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f15877a1e26264abace0ed527ed934975b04f697", + "fields": { + "code_commune_insee": "45169", + "nom_de_la_commune": "INGRE", + "code_postal": "45140", + "coordonnees_gps": [ + 47.916936377, + 1.82353479018 + ], + "libelle_d_acheminement": "INGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82353479018, + 47.916936377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06e6fed41e39fa4779386e3fc245d66a47f5d998", + "fields": { + "code_commune_insee": "45173", + "nom_de_la_commune": "JARGEAU", + "code_postal": "45150", + "coordonnees_gps": [ + 47.8539370317, + 2.12063354743 + ], + "libelle_d_acheminement": "JARGEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12063354743, + 47.8539370317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c000a08226d7dd9924e2c7c934f17abb1f5f18f8", + "fields": { + "ligne_5": "LABROSSE", + "code_commune_insee": "45191", + "libelle_d_acheminement": "LE MALESHERBOIS", + "code_postal": "45330", + "nom_de_la_commune": "LE MALESHERBOIS", + "coordonnees_gps": [ + 48.2894150644, + 2.39799452821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39799452821, + 48.2894150644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "085c37736238e18a425ca9a081e91129bb6dc03c", + "fields": { + "code_commune_insee": "45194", + "nom_de_la_commune": "MARDIE", + "code_postal": "45430", + "coordonnees_gps": [ + 47.8973215597, + 2.06871909957 + ], + "libelle_d_acheminement": "MARDIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06871909957, + 47.8973215597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cea46d13b816dc33435fe5789ef0bc9a5609e0ca", + "fields": { + "ligne_5": "PONT AUX MOINES", + "code_commune_insee": "45194", + "libelle_d_acheminement": "MARDIE", + "code_postal": "45430", + "nom_de_la_commune": "MARDIE", + "coordonnees_gps": [ + 47.8973215597, + 2.06871909957 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06871909957, + 47.8973215597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05487dbaf7bd1fba2ed19727638eb38f38d8d790", + "fields": { + "code_commune_insee": "45196", + "nom_de_la_commune": "MAREAU AUX PRES", + "code_postal": "45370", + "coordonnees_gps": [ + 47.8459261373, + 1.76588121396 + ], + "libelle_d_acheminement": "MAREAU AUX PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76588121396, + 47.8459261373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c09e9efeb3bcba2f19395f60b0ebc78499799e64", + "fields": { + "code_commune_insee": "45199", + "nom_de_la_commune": "MELLEROY", + "code_postal": "45220", + "coordonnees_gps": [ + 47.8880039489, + 2.96021631597 + ], + "libelle_d_acheminement": "MELLEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96021631597, + 47.8880039489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8595c143e05e09000bf87a275dd355c6454fb5f", + "fields": { + "code_commune_insee": "45200", + "nom_de_la_commune": "MENESTREAU EN VILLETTE", + "code_postal": "45240", + "coordonnees_gps": [ + 47.7097936661, + 2.03537007798 + ], + "libelle_d_acheminement": "MENESTREAU EN VILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03537007798, + 47.7097936661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62ad6a7ebde7c87860d326ff0634700570d6c098", + "fields": { + "code_commune_insee": "45201", + "nom_de_la_commune": "MERINVILLE", + "code_postal": "45210", + "coordonnees_gps": [ + 48.0904715969, + 2.94133692583 + ], + "libelle_d_acheminement": "MERINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94133692583, + 48.0904715969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54f8fe813556b22a09af7ab38d7b684f8cc8a308", + "fields": { + "code_commune_insee": "45210", + "nom_de_la_commune": "MONTBOUY", + "code_postal": "45230", + "coordonnees_gps": [ + 47.8669064793, + 2.82234591317 + ], + "libelle_d_acheminement": "MONTBOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82234591317, + 47.8669064793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20d047f134918e16dfc62318a0e8db823f7b2a57", + "fields": { + "code_commune_insee": "45214", + "nom_de_la_commune": "MONTIGNY", + "code_postal": "45170", + "coordonnees_gps": [ + 48.1085281835, + 2.1130722211 + ], + "libelle_d_acheminement": "MONTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1130722211, + 48.1085281835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9c644bdcf488043bef85895292912f58cf00f9b", + "fields": { + "code_commune_insee": "45215", + "nom_de_la_commune": "MONTLIARD", + "code_postal": "45340", + "coordonnees_gps": [ + 48.0177704281, + 2.40056790867 + ], + "libelle_d_acheminement": "MONTLIARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40056790867, + 48.0177704281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d933e7d4803040e28e34d17d332d9301a66820c", + "fields": { + "code_commune_insee": "45216", + "nom_de_la_commune": "MORMANT SUR VERNISSON", + "code_postal": "45700", + "coordonnees_gps": [ + 47.9416433516, + 2.72924665655 + ], + "libelle_d_acheminement": "MORMANT SUR VERNISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72924665655, + 47.9416433516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7b9fecf47f45b6d9619bd4a8c82b613e037d47a", + "fields": { + "code_commune_insee": "45222", + "nom_de_la_commune": "NARGIS", + "code_postal": "45210", + "coordonnees_gps": [ + 48.1109318458, + 2.73790103266 + ], + "libelle_d_acheminement": "NARGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73790103266, + 48.1109318458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "914de51fef0d773031f7770886a91ef5b5436864", + "fields": { + "code_commune_insee": "45225", + "nom_de_la_commune": "LA NEUVILLE SUR ESSONNE", + "code_postal": "45390", + "coordonnees_gps": [ + 48.1799204528, + 2.37951846195 + ], + "libelle_d_acheminement": "LA NEUVILLE SUR ESSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37951846195, + 48.1799204528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfe810fb074ee61e4e46385aca8a9b6fb49ab682", + "fields": { + "code_commune_insee": "45226", + "nom_de_la_commune": "NEUVY EN SULLIAS", + "code_postal": "45510", + "coordonnees_gps": [ + 47.7747351435, + 2.24319824191 + ], + "libelle_d_acheminement": "NEUVY EN SULLIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24319824191, + 47.7747351435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e02de3dd1c7f15e82939d6f7eb0a4f1f525e5007", + "fields": { + "code_commune_insee": "45228", + "nom_de_la_commune": "NIBELLE", + "code_postal": "45340", + "coordonnees_gps": [ + 48.0140757503, + 2.31162556576 + ], + "libelle_d_acheminement": "NIBELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31162556576, + 48.0140757503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8b0ad924b3f1d7d2818ef770e10829702bc0b3d", + "fields": { + "code_commune_insee": "45234", + "nom_de_la_commune": "ORLEANS", + "code_postal": "45100", + "coordonnees_gps": [ + 47.8828634214, + 1.91610357477 + ], + "libelle_d_acheminement": "ORLEANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91610357477, + 47.8828634214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ac8f134ea42653fb78dc1d8b273960de00d215d", + "fields": { + "ligne_5": "FARONVILLE", + "code_commune_insee": "45240", + "libelle_d_acheminement": "OUTARVILLE", + "code_postal": "45480", + "nom_de_la_commune": "OUTARVILLE", + "coordonnees_gps": [ + 48.2142854596, + 2.02173092617 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02173092617, + 48.2142854596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "888e372fd870406d8ddc5747ec669ccf52a025af", + "fields": { + "code_commune_insee": "45241", + "nom_de_la_commune": "OUVROUER LES CHAMPS", + "code_postal": "45150", + "coordonnees_gps": [ + 47.8367781695, + 2.17987819757 + ], + "libelle_d_acheminement": "OUVROUER LES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17987819757, + 47.8367781695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e721e84c556de783a172106bd80b0ad6b2eca86", + "fields": { + "code_commune_insee": "45246", + "nom_de_la_commune": "PANNECIERES", + "code_postal": "45300", + "coordonnees_gps": [ + 48.2928470394, + 2.14266488895 + ], + "libelle_d_acheminement": "PANNECIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14266488895, + 48.2928470394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8343a663e66f41ab57ca1926d0e2ff359c53bbc6", + "fields": { + "code_commune_insee": "45251", + "nom_de_la_commune": "PIERREFITTE ES BOIS", + "code_postal": "45360", + "coordonnees_gps": [ + 47.5109534667, + 2.69207750108 + ], + "libelle_d_acheminement": "PIERREFITTE ES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69207750108, + 47.5109534667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15f655f35620bbbd66d50a1bbab2f86987a5ce48", + "fields": { + "code_commune_insee": "45257", + "nom_de_la_commune": "PRESSIGNY LES PINS", + "code_postal": "45290", + "coordonnees_gps": [ + 47.8777160651, + 2.76127674486 + ], + "libelle_d_acheminement": "PRESSIGNY LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76127674486, + 47.8777160651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d499654a9cb06e07d94b43f4be0ce86768d342fe", + "fields": { + "code_commune_insee": "45260", + "nom_de_la_commune": "RAMOULU", + "code_postal": "45300", + "coordonnees_gps": [ + 48.2288396246, + 2.305844038 + ], + "libelle_d_acheminement": "RAMOULU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.305844038, + 48.2288396246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f983247103fc2ddafedd5e09b2b13a231432889c", + "fields": { + "code_commune_insee": "45268", + "nom_de_la_commune": "ST AIGNAN LE JAILLARD", + "code_postal": "45600", + "coordonnees_gps": [ + 47.7328416705, + 2.4226468337 + ], + "libelle_d_acheminement": "ST AIGNAN LE JAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4226468337, + 47.7328416705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fa6f0d6c35f03373c52c4f8aa83de441a1543d6", + "fields": { + "code_commune_insee": "45272", + "nom_de_la_commune": "ST CYR EN VAL", + "code_postal": "45590", + "coordonnees_gps": [ + 47.8140953159, + 1.95982379984 + ], + "libelle_d_acheminement": "ST CYR EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95982379984, + 47.8140953159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1781eba2b708182d681f1372396af43e79313f0b", + "fields": { + "code_commune_insee": "45274", + "nom_de_la_commune": "ST DENIS EN VAL", + "code_postal": "45560", + "coordonnees_gps": [ + 47.8811057198, + 1.97259377851 + ], + "libelle_d_acheminement": "ST DENIS EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97259377851, + 47.8811057198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b231ae96f0895cc03efe094f138b0eb472b8821", + "fields": { + "code_commune_insee": "45291", + "nom_de_la_commune": "ST MARTIN SUR OCRE", + "code_postal": "45500", + "coordonnees_gps": [ + 47.6468281409, + 2.64446873404 + ], + "libelle_d_acheminement": "ST MARTIN SUR OCRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64446873404, + 47.6468281409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dee64169584219b45b77e314fb5000b495e5b4b", + "fields": { + "code_commune_insee": "45297", + "nom_de_la_commune": "ST PERE SUR LOIRE", + "code_postal": "45600", + "coordonnees_gps": [ + 47.7808203416, + 2.37330699983 + ], + "libelle_d_acheminement": "ST PERE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37330699983, + 47.7808203416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87ea7f11757b9b81fa29e6fa1a4b3d38106c87ac", + "fields": { + "code_commune_insee": "45298", + "nom_de_la_commune": "ST PRYVE ST MESMIN", + "code_postal": "45750", + "coordonnees_gps": [ + 47.8804643643, + 1.85481238728 + ], + "libelle_d_acheminement": "ST PRYVE ST MESMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85481238728, + 47.8804643643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "031ce83a210e41bc7dd8997a55f2449d9dc3555c", + "fields": { + "code_commune_insee": "45333", + "nom_de_la_commune": "VENNECY", + "code_postal": "45760", + "coordonnees_gps": [ + 47.9551852043, + 2.05249130958 + ], + "libelle_d_acheminement": "VENNECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05249130958, + 47.9551852043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "935ff5bf4809ca282eefc9372f1a254e0dcfd3f2", + "fields": { + "code_commune_insee": "45334", + "nom_de_la_commune": "VIEILLES MAISONS SUR JOUDRY", + "code_postal": "45260", + "coordonnees_gps": [ + 47.8838478178, + 2.43774998138 + ], + "libelle_d_acheminement": "VIEILLES MAISONS SUR JOUDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43774998138, + 47.8838478178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "728292cfcd3195378d5a9c2553cbb3785c0ae843", + "fields": { + "code_commune_insee": "45342", + "nom_de_la_commune": "VILLEREAU", + "code_postal": "45170", + "coordonnees_gps": [ + 48.0736372897, + 1.99220026778 + ], + "libelle_d_acheminement": "VILLEREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99220026778, + 48.0736372897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "469cd09599f00859a2614f1021b8f0da17cb4765", + "fields": { + "code_commune_insee": "46005", + "nom_de_la_commune": "ANGLARS JUILLAC", + "code_postal": "46140", + "coordonnees_gps": [ + 44.4865010847, + 1.20855960816 + ], + "libelle_d_acheminement": "ANGLARS JUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20855960816, + 44.4865010847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27ec6f33df702d7b0f1abba2b038d04a220e8202", + "fields": { + "code_commune_insee": "46009", + "nom_de_la_commune": "ASSIER", + "code_postal": "46320", + "coordonnees_gps": [ + 44.6722095867, + 1.87432181008 + ], + "libelle_d_acheminement": "ASSIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87432181008, + 44.6722095867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ac101288f8adc6a597b271b1a1c80f6330a6e80", + "fields": { + "code_commune_insee": "46023", + "nom_de_la_commune": "BELFORT DU QUERCY", + "code_postal": "46230", + "coordonnees_gps": [ + 44.2691232817, + 1.54997739016 + ], + "libelle_d_acheminement": "BELFORT DU QUERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54997739016, + 44.2691232817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbbcce970dc96d81de4e511231ad00f29f0cee78", + "fields": { + "code_commune_insee": "46027", + "nom_de_la_commune": "BERGANTY", + "code_postal": "46090", + "coordonnees_gps": [ + 44.443494853, + 1.62900308265 + ], + "libelle_d_acheminement": "BERGANTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62900308265, + 44.443494853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7261b0d5eea08a12aea58e1fdd3fc061de3140ba", + "fields": { + "code_commune_insee": "46032", + "nom_de_la_commune": "BOISSIERES", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5478641839, + 1.40820020858 + ], + "libelle_d_acheminement": "BOISSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40820020858, + 44.5478641839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9628a07e1a4ea14b0f9cec570576deca776b59c", + "fields": { + "code_commune_insee": "46035", + "nom_de_la_commune": "BOUSSAC", + "code_postal": "46100", + "coordonnees_gps": [ + 44.5955239384, + 1.91907377788 + ], + "libelle_d_acheminement": "BOUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91907377788, + 44.5955239384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72d1edfe3759de1bf97b0a0cc4e1782804b3bb22", + "fields": { + "code_commune_insee": "46043", + "nom_de_la_commune": "CAHUS", + "code_postal": "46130", + "coordonnees_gps": [ + 44.9631975501, + 1.91432329808 + ], + "libelle_d_acheminement": "CAHUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91432329808, + 44.9631975501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "395cb7255106826fa0d6b789d498d5232b7a9dd9", + "fields": { + "code_commune_insee": "46051", + "nom_de_la_commune": "CAMBES", + "code_postal": "46100", + "coordonnees_gps": [ + 44.621451936, + 1.92659175923 + ], + "libelle_d_acheminement": "CAMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92659175923, + 44.621451936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10e1614ec4b374c796e7c0091040a5e269b33955", + "fields": { + "code_commune_insee": "46052", + "nom_de_la_commune": "CAMBOULIT", + "code_postal": "46100", + "coordonnees_gps": [ + 44.5998481428, + 1.95270053805 + ], + "libelle_d_acheminement": "CAMBOULIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95270053805, + 44.5998481428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "636fbcc826c19e19fc7f382cb3fcb9a2c131919d", + "fields": { + "code_commune_insee": "46057", + "nom_de_la_commune": "CARDAILLAC", + "code_postal": "46100", + "coordonnees_gps": [ + 44.6824882751, + 2.0138257443 + ], + "libelle_d_acheminement": "CARDAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0138257443, + 44.6824882751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9a2cbb93c8d1563605f22ce44f58b814e51a81f", + "fields": { + "code_commune_insee": "46075", + "nom_de_la_commune": "CORN", + "code_postal": "46100", + "coordonnees_gps": [ + 44.6061471898, + 1.88882538803 + ], + "libelle_d_acheminement": "CORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88882538803, + 44.6061471898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "518c97b86ebaf7cce99ef283f3648ef74b92cef6", + "fields": { + "code_commune_insee": "46085", + "nom_de_la_commune": "CUZAC", + "code_postal": "46270", + "coordonnees_gps": [ + 44.5805664104, + 2.14397659301 + ], + "libelle_d_acheminement": "CUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14397659301, + 44.5805664104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95f7ada47ed37c8f449e31e13661e1c27bc71219", + "fields": { + "code_commune_insee": "46086", + "nom_de_la_commune": "CUZANCE", + "code_postal": "46600", + "coordonnees_gps": [ + 44.9618841392, + 1.52986914567 + ], + "libelle_d_acheminement": "CUZANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52986914567, + 44.9618841392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36a1750c663de013acd3d274a49ab0431820ee6c", + "fields": { + "code_commune_insee": "46102", + "nom_de_la_commune": "FIGEAC", + "code_postal": "46100", + "coordonnees_gps": [ + 44.6055314625, + 2.02540303775 + ], + "libelle_d_acheminement": "FIGEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02540303775, + 44.6055314625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0c9759fa4ab08683c1c9436c3a2ed274bb35158", + "fields": { + "code_commune_insee": "46107", + "nom_de_la_commune": "FLORESSAS", + "code_postal": "46700", + "coordonnees_gps": [ + 44.4579068501, + 1.1145883767 + ], + "libelle_d_acheminement": "FLORESSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1145883767, + 44.4579068501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e45a34109bd14ad5510d43bc1e5be90415add710", + "fields": { + "code_commune_insee": "46108", + "nom_de_la_commune": "FONS", + "code_postal": "46100", + "coordonnees_gps": [ + 44.6597558601, + 1.9530741182 + ], + "libelle_d_acheminement": "FONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9530741182, + 44.6597558601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e98dc6f3e3186096845d51b0951950232f6b3b2b", + "fields": { + "code_commune_insee": "46109", + "nom_de_la_commune": "FONTANES", + "code_postal": "46230", + "coordonnees_gps": [ + 44.3250209825, + 1.49032915385 + ], + "libelle_d_acheminement": "FONTANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49032915385, + 44.3250209825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36bc10157b63f4dc5076fa35070fd15e15e26017", + "fields": { + "code_commune_insee": "46112", + "nom_de_la_commune": "FRANCOULES", + "code_postal": "46090", + "coordonnees_gps": [ + 44.5564275436, + 1.4876971855 + ], + "libelle_d_acheminement": "FRANCOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4876971855, + 44.5564275436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e1b61cc2c98822bcda34054092e9420d602ef49", + "fields": { + "code_commune_insee": "46114", + "nom_de_la_commune": "FRAYSSINET LE GELAT", + "code_postal": "46250", + "coordonnees_gps": [ + 44.5902258251, + 1.14402120648 + ], + "libelle_d_acheminement": "FRAYSSINET LE GELAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14402120648, + 44.5902258251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4bcc3a8be5cd15ac3bb84453b9e7f88214561e0", + "fields": { + "code_commune_insee": "46117", + "nom_de_la_commune": "GAGNAC SUR CERE", + "code_postal": "46130", + "coordonnees_gps": [ + 44.9387966672, + 1.88455364485 + ], + "libelle_d_acheminement": "GAGNAC SUR CERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88455364485, + 44.9387966672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfd4376b8e4b4ba5b99f833794187bd8d359198c", + "fields": { + "code_commune_insee": "46119", + "nom_de_la_commune": "GIGOUZAC", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5837680481, + 1.43277988907 + ], + "libelle_d_acheminement": "GIGOUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43277988907, + 44.5837680481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5fb5397a22f62bb74d310f75a15df0686dc88e7", + "fields": { + "code_commune_insee": "46123", + "nom_de_la_commune": "GIRAC", + "code_postal": "46130", + "coordonnees_gps": [ + 44.9270878845, + 1.82484872808 + ], + "libelle_d_acheminement": "GIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82484872808, + 44.9270878845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bae5a1050dd4165d8fa38fbc560e05a211a88ece", + "fields": { + "code_commune_insee": "46131", + "nom_de_la_commune": "GREZES", + "code_postal": "46320", + "coordonnees_gps": [ + 44.6207172976, + 1.82420709505 + ], + "libelle_d_acheminement": "GREZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82420709505, + 44.6207172976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b022734f3926c07bafaf29e1efd45c5851db0b8", + "fields": { + "code_commune_insee": "46133", + "nom_de_la_commune": "ISSEPTS", + "code_postal": "46320", + "coordonnees_gps": [ + 44.6769137032, + 1.91696387098 + ], + "libelle_d_acheminement": "ISSEPTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91696387098, + 44.6769137032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7d4f608f5f710641c57bd209693c35ec65323e5", + "fields": { + "code_commune_insee": "46134", + "nom_de_la_commune": "LES JUNIES", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5406763067, + 1.22362619969 + ], + "libelle_d_acheminement": "LES JUNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22362619969, + 44.5406763067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "673a6895e15233689094b5379d71bc8a2d668662", + "fields": { + "code_commune_insee": "46137", + "nom_de_la_commune": "LABASTIDE MARNHAC", + "code_postal": "46090", + "coordonnees_gps": [ + 44.386742628, + 1.38959761841 + ], + "libelle_d_acheminement": "LABASTIDE MARNHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38959761841, + 44.386742628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ad40b06f2391e3fe5b645011b5d2a062a75ca4f", + "fields": { + "ligne_5": "BEAUMAT", + "code_commune_insee": "46138", + "libelle_d_acheminement": "COEUR DE CAUSSE", + "code_postal": "46240", + "nom_de_la_commune": "COEUR DE CAUSSE", + "coordonnees_gps": [ + 44.6484325779, + 1.58028882268 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58028882268, + 44.6484325779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb9cdd098fca753eb5b8d92ca37a0824eca73476", + "fields": { + "code_commune_insee": "46144", + "nom_de_la_commune": "LACAVE", + "code_postal": "46200", + "coordonnees_gps": [ + 44.8404498298, + 1.55849192483 + ], + "libelle_d_acheminement": "LACAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55849192483, + 44.8404498298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "516551bf1227fccacdff63fdad2b6ace2d901b02", + "fields": { + "code_commune_insee": "46151", + "nom_de_la_commune": "LAMOTHE CASSEL", + "code_postal": "46240", + "coordonnees_gps": [ + 44.6123944867, + 1.51460026091 + ], + "libelle_d_acheminement": "LAMOTHE CASSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51460026091, + 44.6123944867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de9c8a0eb4adac653ad535a4d614ec3809caea7e", + "fields": { + "ligne_5": "LAROQUE DES ARCS", + "code_commune_insee": "46156", + "libelle_d_acheminement": "BELLEFONT LA RAUZE", + "code_postal": "46090", + "nom_de_la_commune": "BELLEFONT LA RAUZE", + "coordonnees_gps": [ + 44.4871654588, + 1.47065780509 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47065780509, + 44.4871654588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b21d76a18bf834a040b1be056c09f40357fd3e15", + "fields": { + "code_commune_insee": "46157", + "nom_de_la_commune": "LARROQUE TOIRAC", + "code_postal": "46160", + "coordonnees_gps": [ + 44.5204913779, + 1.93257507348 + ], + "libelle_d_acheminement": "LARROQUE TOIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93257507348, + 44.5204913779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3f7908b613a0a0dd1194eaf1ee999723cce915b", + "fields": { + "code_commune_insee": "46160", + "nom_de_la_commune": "LATRONQUIERE", + "code_postal": "46210", + "coordonnees_gps": [ + 44.8008999113, + 2.07093870837 + ], + "libelle_d_acheminement": "LATRONQUIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07093870837, + 44.8008999113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52030449fabb941220645543dd661ef90f8fb578", + "fields": { + "code_commune_insee": "46165", + "nom_de_la_commune": "LAVERGNE", + "code_postal": "46500", + "coordonnees_gps": [ + 44.8015351339, + 1.76588588621 + ], + "libelle_d_acheminement": "LAVERGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76588588621, + 44.8015351339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52ec8bd378137c3102ec7f2028ff238911da9a8c", + "fields": { + "code_commune_insee": "46168", + "nom_de_la_commune": "LENTILLAC ST BLAISE", + "code_postal": "46100", + "coordonnees_gps": [ + 44.5887571233, + 2.11729481925 + ], + "libelle_d_acheminement": "LENTILLAC ST BLAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11729481925, + 44.5887571233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c0c838e00aca4390bc13ca04b65accd3dd1536e", + "fields": { + "code_commune_insee": "46187", + "nom_de_la_commune": "MAUROUX", + "code_postal": "46700", + "coordonnees_gps": [ + 44.4529573701, + 1.04640335319 + ], + "libelle_d_acheminement": "MAUROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04640335319, + 44.4529573701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc4f3a52140c612708dc631c4c4207eccebcf61a", + "fields": { + "code_commune_insee": "46190", + "nom_de_la_commune": "MECHMONT", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5830981041, + 1.46298986385 + ], + "libelle_d_acheminement": "MECHMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46298986385, + 44.5830981041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a5729d5157bb5f8e84611de534207f3d638f896", + "fields": { + "code_commune_insee": "46197", + "nom_de_la_commune": "LE MONTAT", + "code_postal": "46090", + "coordonnees_gps": [ + 44.3804715298, + 1.45487916761 + ], + "libelle_d_acheminement": "LE MONTAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45487916761, + 44.3804715298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30685903e8a7ca4a161336d1f3e491f23ab8df63", + "fields": { + "code_commune_insee": "46198", + "nom_de_la_commune": "MONTBRUN", + "code_postal": "46160", + "coordonnees_gps": [ + 44.5112155003, + 1.90302940937 + ], + "libelle_d_acheminement": "MONTBRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90302940937, + 44.5112155003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec83a45fcf08207039396c7b01f78006b1ebf8bf", + "fields": { + "code_commune_insee": "46215", + "nom_de_la_commune": "PAYRAC", + "code_postal": "46350", + "coordonnees_gps": [ + 44.7938474371, + 1.46578080794 + ], + "libelle_d_acheminement": "PAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46578080794, + 44.7938474371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5a6168f241d820a309a2cc30b99e6a32cef0af6", + "fields": { + "code_commune_insee": "46216", + "nom_de_la_commune": "PAYRIGNAC", + "code_postal": "46300", + "coordonnees_gps": [ + 44.7629337139, + 1.34345331858 + ], + "libelle_d_acheminement": "PAYRIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34345331858, + 44.7629337139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "345b8d324a70580932bc80944e2843757af787e1", + "fields": { + "code_commune_insee": "46222", + "nom_de_la_commune": "POMAREDE", + "code_postal": "46250", + "coordonnees_gps": [ + 44.5585100329, + 1.17344386369 + ], + "libelle_d_acheminement": "POMAREDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17344386369, + 44.5585100329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98399c1227dc73616f6fb85f04dd010b52d5907d", + "fields": { + "code_commune_insee": "46225", + "nom_de_la_commune": "PRAYSSAC", + "code_postal": "46220", + "coordonnees_gps": [ + 44.5137023932, + 1.18723639208 + ], + "libelle_d_acheminement": "PRAYSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18723639208, + 44.5137023932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e34fa5eb460abc407a838998b63bee6f7044598", + "fields": { + "code_commune_insee": "46226", + "nom_de_la_commune": "PRENDEIGNES", + "code_postal": "46270", + "coordonnees_gps": [ + 44.6977109541, + 2.07671859473 + ], + "libelle_d_acheminement": "PRENDEIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07671859473, + 44.6977109541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ef428dfad932d35fb223f05ddc27d8eeff67105", + "fields": { + "code_commune_insee": "46228", + "nom_de_la_commune": "PRUDHOMAT", + "code_postal": "46130", + "coordonnees_gps": [ + 44.896756286, + 1.81736131587 + ], + "libelle_d_acheminement": "PRUDHOMAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81736131587, + 44.896756286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97db7eeb063bb6f7168cd86c21e5331d9f147fbf", + "fields": { + "code_commune_insee": "46229", + "nom_de_la_commune": "PUYBRUN", + "code_postal": "46130", + "coordonnees_gps": [ + 44.9213943929, + 1.78724150128 + ], + "libelle_d_acheminement": "PUYBRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78724150128, + 44.9213943929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ad41f3d434264214eded4657fd7c04643115dc5", + "fields": { + "code_commune_insee": "46238", + "nom_de_la_commune": "RIGNAC", + "code_postal": "46500", + "coordonnees_gps": [ + 44.8065259652, + 1.70450822621 + ], + "libelle_d_acheminement": "RIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70450822621, + 44.8065259652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72119f424aa0dbaa0c60fea26ca39ef318a5b320", + "fields": { + "code_commune_insee": "46239", + "nom_de_la_commune": "LE ROC", + "code_postal": "46200", + "coordonnees_gps": [ + 44.8649069873, + 1.43907762141 + ], + "libelle_d_acheminement": "LE ROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43907762141, + 44.8649069873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6ef5ccf228694cbdf6adea0f7cc454d076477dc", + "fields": { + "code_commune_insee": "46240", + "nom_de_la_commune": "ROCAMADOUR", + "code_postal": "46500", + "coordonnees_gps": [ + 44.8148525753, + 1.62220346544 + ], + "libelle_d_acheminement": "ROCAMADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62220346544, + 44.8148525753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca99c0bd64240056a71159527cdeb338956a68a3", + "fields": { + "code_commune_insee": "46246", + "nom_de_la_commune": "SAIGNES", + "code_postal": "46500", + "coordonnees_gps": [ + 44.7891039927, + 1.82108642363 + ], + "libelle_d_acheminement": "SAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82108642363, + 44.7891039927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c43a8e5d8eef6a1d5033ca4cd91e76b9f1dcce4", + "fields": { + "code_commune_insee": "46247", + "nom_de_la_commune": "SAILLAC", + "code_postal": "46260", + "coordonnees_gps": [ + 44.3295466737, + 1.74148864793 + ], + "libelle_d_acheminement": "SAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74148864793, + 44.3295466737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3c0616cc512ba85e424b79473331945be8bbc5d", + "fields": { + "code_commune_insee": "46249", + "nom_de_la_commune": "ST BRESSOU", + "code_postal": "46120", + "coordonnees_gps": [ + 44.6967820287, + 1.9760982727 + ], + "libelle_d_acheminement": "ST BRESSOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9760982727, + 44.6967820287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1177b7de1847dfd029c494138f5fd015c7286cce", + "fields": { + "code_commune_insee": "46251", + "nom_de_la_commune": "ST CERE", + "code_postal": "46400", + "coordonnees_gps": [ + 44.8531827667, + 1.89258045388 + ], + "libelle_d_acheminement": "ST CERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89258045388, + 44.8531827667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26fb34e86999684b9522b84aa3ca3c754024f3b4", + "fields": { + "code_commune_insee": "46265", + "nom_de_la_commune": "ST DENIS LES MARTEL", + "code_postal": "46600", + "coordonnees_gps": [ + 44.9453250919, + 1.6588440719 + ], + "libelle_d_acheminement": "ST DENIS LES MARTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6588440719, + 44.9453250919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f64e2ebb723b179562ac50b85417eac8f2b6a385", + "fields": { + "code_commune_insee": "46266", + "nom_de_la_commune": "ST FELIX", + "code_postal": "46100", + "coordonnees_gps": [ + 44.6124237532, + 2.11317845009 + ], + "libelle_d_acheminement": "ST FELIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11317845009, + 44.6124237532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6650e78ae8c688463470097bd6117516a4f2a40c", + "fields": { + "code_commune_insee": "46267", + "nom_de_la_commune": "ST GERMAIN DU BEL AIR", + "code_postal": "46310", + "coordonnees_gps": [ + 44.6460780421, + 1.44147433368 + ], + "libelle_d_acheminement": "ST GERMAIN DU BEL AIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44147433368, + 44.6460780421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18091372d83b1d11c3f48620c0b31f4d17c0a3b2", + "fields": { + "code_commune_insee": "46272", + "nom_de_la_commune": "ST JEAN MIRABEL", + "code_postal": "46270", + "coordonnees_gps": [ + 44.632783042, + 2.10766721275 + ], + "libelle_d_acheminement": "ST JEAN MIRABEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10766721275, + 44.632783042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e3f203e892b74fcb0c0e205b5eacaf5f01ea1b5", + "fields": { + "code_commune_insee": "46276", + "nom_de_la_commune": "ST MARTIN LABOUVAL", + "code_postal": "46330", + "coordonnees_gps": [ + 44.4795975074, + 1.72861355188 + ], + "libelle_d_acheminement": "ST MARTIN LABOUVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72861355188, + 44.4795975074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac4d968000ceb11c37ac8df68049aa8a02f34892", + "fields": { + "code_commune_insee": "46279", + "nom_de_la_commune": "ST MAURICE EN QUERCY", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7493866027, + 1.95646196861 + ], + "libelle_d_acheminement": "ST MAURICE EN QUERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95646196861, + 44.7493866027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "831e561776de06b083d50b547b0e167f7ba19084", + "fields": { + "code_commune_insee": "46281", + "nom_de_la_commune": "ST MEDARD DE PRESQUE", + "code_postal": "46400", + "coordonnees_gps": [ + 44.8523355559, + 1.84227954038 + ], + "libelle_d_acheminement": "ST MEDARD DE PRESQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84227954038, + 44.8523355559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0ae42b0bad23a961afeff3ccdeeba6cbfb2c910", + "fields": { + "code_commune_insee": "46284", + "nom_de_la_commune": "ST MICHEL LOUBEJOU", + "code_postal": "46130", + "coordonnees_gps": [ + 44.8881827852, + 1.85309104006 + ], + "libelle_d_acheminement": "ST MICHEL LOUBEJOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85309104006, + 44.8881827852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "902ad62afd61c14b1763d0479cbeb07a8d4e5d83", + "fields": { + "code_commune_insee": "46288", + "nom_de_la_commune": "ST PERDOUX", + "code_postal": "46100", + "coordonnees_gps": [ + 44.6797707425, + 2.04878159126 + ], + "libelle_d_acheminement": "ST PERDOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04878159126, + 44.6797707425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6156668d3d4248f0229bf606348d7b0606d67ca9", + "fields": { + "code_commune_insee": "46292", + "nom_de_la_commune": "ST SIMON", + "code_postal": "46320", + "coordonnees_gps": [ + 44.7006878199, + 1.82811413555 + ], + "libelle_d_acheminement": "ST SIMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82811413555, + 44.7006878199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7ab023b02300379dc662002ee5921d1efd428a6", + "fields": { + "code_commune_insee": "46294", + "nom_de_la_commune": "ST SULPICE", + "code_postal": "46160", + "coordonnees_gps": [ + 44.5791760633, + 1.79550043647 + ], + "libelle_d_acheminement": "ST SULPICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79550043647, + 44.5791760633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8b283ab349c2bb4f02f30d8859c58db552a5ebd", + "fields": { + "code_commune_insee": "46305", + "nom_de_la_commune": "SERIGNAC", + "code_postal": "46700", + "coordonnees_gps": [ + 44.4278702673, + 1.08610284521 + ], + "libelle_d_acheminement": "SERIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08610284521, + 44.4278702673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de51acce863ef1712597293b69ffc3bd38eb46fa", + "fields": { + "ligne_5": "LACAM D OURCET", + "code_commune_insee": "46311", + "libelle_d_acheminement": "SOUSCEYRAC EN QUERCY", + "code_postal": "46190", + "nom_de_la_commune": "SOUSCEYRAC EN QUERCY", + "coordonnees_gps": [ + 44.8806327764, + 2.03547276303 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03547276303, + 44.8806327764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab4d9b9c5e0f5c8023551a26575505a86774475c", + "fields": { + "code_commune_insee": "46316", + "nom_de_la_commune": "THEDIRAC", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5993894609, + 1.32059065502 + ], + "libelle_d_acheminement": "THEDIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32059065502, + 44.5993894609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fbbe8746812cb6009e76ec9d6f04c52bfe1fdb6", + "fields": { + "code_commune_insee": "46333", + "nom_de_la_commune": "VIDAILLAC", + "code_postal": "46260", + "coordonnees_gps": [ + 44.346009469, + 1.81940730105 + ], + "libelle_d_acheminement": "VIDAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81940730105, + 44.346009469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c477171ee5fa8295a68010ad22cf74fa50fef89", + "fields": { + "code_commune_insee": "46338", + "nom_de_la_commune": "BESSONIES", + "code_postal": "46210", + "coordonnees_gps": [ + 44.8085327316, + 2.14444051482 + ], + "libelle_d_acheminement": "BESSONIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14444051482, + 44.8085327316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72bf0019020be47e08133a872a3fc13825e539a8", + "fields": { + "code_commune_insee": "47001", + "nom_de_la_commune": "AGEN", + "code_postal": "47000", + "coordonnees_gps": [ + 44.2028139104, + 0.625583928763 + ], + "libelle_d_acheminement": "AGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.625583928763, + 44.2028139104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c352d1cd7d3c7bd705d036cc4660ec976f56ca4", + "fields": { + "code_commune_insee": "47014", + "nom_de_la_commune": "ARMILLAC", + "code_postal": "47800", + "coordonnees_gps": [ + 44.5557248884, + 0.389925235964 + ], + "libelle_d_acheminement": "ARMILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.389925235964, + 44.5557248884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ea8b698401be77c5acad68596026a56bc2a9fd4", + "fields": { + "code_commune_insee": "47020", + "nom_de_la_commune": "BALEYSSAGUES", + "code_postal": "47120", + "coordonnees_gps": [ + 44.6820321193, + 0.149443103335 + ], + "libelle_d_acheminement": "BALEYSSAGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.149443103335, + 44.6820321193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9d30405bf2ce88ffcac7091d1af62d655803263", + "fields": { + "code_commune_insee": "47021", + "nom_de_la_commune": "BARBASTE", + "code_postal": "47230", + "coordonnees_gps": [ + 44.1586009186, + 0.244120736429 + ], + "libelle_d_acheminement": "BARBASTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.244120736429, + 44.1586009186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5464353e409e9da0f49cac2cdb28d4c2a7c193c6", + "fields": { + "code_commune_insee": "47022", + "nom_de_la_commune": "BAZENS", + "code_postal": "47130", + "coordonnees_gps": [ + 44.2679299357, + 0.426598073489 + ], + "libelle_d_acheminement": "BAZENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.426598073489, + 44.2679299357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b64092d6584f45ce66711bd5f8060bd0149bce59", + "fields": { + "code_commune_insee": "47031", + "nom_de_la_commune": "BOE", + "code_postal": "47550", + "coordonnees_gps": [ + 44.1702699988, + 0.646760618523 + ], + "libelle_d_acheminement": "BOE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.646760618523, + 44.1702699988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d52cb937d113d3d2eba4332f5ace5e1011dd43e", + "fields": { + "code_commune_insee": "47032", + "nom_de_la_commune": "BON ENCONTRE", + "code_postal": "47240", + "coordonnees_gps": [ + 44.2084448019, + 0.689070804076 + ], + "libelle_d_acheminement": "BON ENCONTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.689070804076, + 44.2084448019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d663de7d8e3c78a15e599d0b75e086dba3b7dc2b", + "fields": { + "code_commune_insee": "47034", + "nom_de_la_commune": "BOUGLON", + "code_postal": "47250", + "coordonnees_gps": [ + 44.4036708289, + 0.100423976197 + ], + "libelle_d_acheminement": "BOUGLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.100423976197, + 44.4036708289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae62df3ba50434748926139fca46dce82ab80048", + "fields": { + "code_commune_insee": "47038", + "nom_de_la_commune": "BOURRAN", + "code_postal": "47320", + "coordonnees_gps": [ + 44.3326225834, + 0.40309319188 + ], + "libelle_d_acheminement": "BOURRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40309319188, + 44.3326225834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ab1a8320624f0014aa0fada7fcace96a0454e0a", + "fields": { + "code_commune_insee": "47040", + "nom_de_la_commune": "BRAX", + "code_postal": "47310", + "coordonnees_gps": [ + 44.201959917, + 0.557521330574 + ], + "libelle_d_acheminement": "BRAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.557521330574, + 44.201959917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e06a5c22fff6f5ec13fe78f71679d88c1c4b793", + "fields": { + "code_commune_insee": "47042", + "nom_de_la_commune": "BRUGNAC", + "code_postal": "47260", + "coordonnees_gps": [ + 44.450750609, + 0.45284547075 + ], + "libelle_d_acheminement": "BRUGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45284547075, + 44.450750609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1d5d6d2fe5f04a0b4fb6483013a99c71c1ef5ec", + "fields": { + "code_commune_insee": "47056", + "nom_de_la_commune": "CASTELNAU SUR GUPIE", + "code_postal": "47180", + "coordonnees_gps": [ + 44.5803543889, + 0.140031725021 + ], + "libelle_d_acheminement": "CASTELNAU SUR GUPIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.140031725021, + 44.5803543889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24aca6d7cae73bd2d4881064d58154bce52a055d", + "fields": { + "code_commune_insee": "47060", + "nom_de_la_commune": "CAUDECOSTE", + "code_postal": "47220", + "coordonnees_gps": [ + 44.1187326422, + 0.737249892638 + ], + "libelle_d_acheminement": "CAUDECOSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.737249892638, + 44.1187326422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eb75d90ebab6bd6fc8bdcaae4f453fe027dcb71", + "fields": { + "code_commune_insee": "47062", + "nom_de_la_commune": "CAUZAC", + "code_postal": "47470", + "coordonnees_gps": [ + 44.2746170844, + 0.821512520951 + ], + "libelle_d_acheminement": "CAUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.821512520951, + 44.2746170844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "866f23a2a9eb7d3bd86223683895b77c90eff3af", + "fields": { + "code_commune_insee": "47074", + "nom_de_la_commune": "COUTHURES SUR GARONNE", + "code_postal": "47180", + "coordonnees_gps": [ + 44.5203730714, + 0.068285349184 + ], + "libelle_d_acheminement": "COUTHURES SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.068285349184, + 44.5203730714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b79aa8e7452a2efd4af7f9f1658febe741198c8", + "fields": { + "code_commune_insee": "47098", + "nom_de_la_commune": "FIEUX", + "code_postal": "47600", + "coordonnees_gps": [ + 44.0999645384, + 0.42354302505 + ], + "libelle_d_acheminement": "FIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.42354302505, + 44.0999645384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bf979d4dbb34773b19a313d9340572d2c443696", + "fields": { + "code_commune_insee": "47101", + "nom_de_la_commune": "FOURQUES SUR GARONNE", + "code_postal": "47200", + "coordonnees_gps": [ + 44.4554149219, + 0.154536756798 + ], + "libelle_d_acheminement": "FOURQUES SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.154536756798, + 44.4554149219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "884cf82cb6869ecb23a48262afa49bd093faf9ef", + "fields": { + "code_commune_insee": "47107", + "nom_de_la_commune": "GALAPIAN", + "code_postal": "47190", + "coordonnees_gps": [ + 44.2992744201, + 0.411455620823 + ], + "libelle_d_acheminement": "GALAPIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.411455620823, + 44.2992744201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f0c26875418965847291f6eb5a0ba2d5d39b618", + "fields": { + "code_commune_insee": "47111", + "nom_de_la_commune": "GRANGES SUR LOT", + "code_postal": "47260", + "coordonnees_gps": [ + 44.3674227861, + 0.470227995175 + ], + "libelle_d_acheminement": "GRANGES SUR LOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.470227995175, + 44.3674227861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb86a1c204998d0f932e9d9bbf1698059691ce22", + "fields": { + "code_commune_insee": "47114", + "nom_de_la_commune": "GREZET CAVAGNAN", + "code_postal": "47250", + "coordonnees_gps": [ + 44.3800998821, + 0.125863668239 + ], + "libelle_d_acheminement": "GREZET CAVAGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.125863668239, + 44.3800998821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "312d57f64c0c5722e3b9c4bd7c183f6b7720fbc6", + "fields": { + "code_commune_insee": "47123", + "nom_de_la_commune": "LACAPELLE BIRON", + "code_postal": "47150", + "coordonnees_gps": [ + 44.6004856905, + 0.898890688918 + ], + "libelle_d_acheminement": "LACAPELLE BIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.898890688918, + 44.6004856905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cad3c746b5d65e24e480dbc6ab05010de0d01317", + "fields": { + "code_commune_insee": "47126", + "nom_de_la_commune": "LACHAPELLE", + "code_postal": "47350", + "coordonnees_gps": [ + 44.5744654566, + 0.259640336825 + ], + "libelle_d_acheminement": "LACHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.259640336825, + 44.5744654566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a75edc723c2704424a3029b85a25de1c4f067336", + "fields": { + "code_commune_insee": "47127", + "nom_de_la_commune": "LAFITTE SUR LOT", + "code_postal": "47320", + "coordonnees_gps": [ + 44.3535292844, + 0.43709855772 + ], + "libelle_d_acheminement": "LAFITTE SUR LOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.43709855772, + 44.3535292844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c3533eab93ef5034dd2f7fcb4db59c515a8459b", + "fields": { + "code_commune_insee": "47132", + "nom_de_la_commune": "LALANDUSSE", + "code_postal": "47330", + "coordonnees_gps": [ + 44.6604597636, + 0.523652763107 + ], + "libelle_d_acheminement": "LALANDUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.523652763107, + 44.6604597636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69bc4ac82cc62461f31f81f153e58dafa859c124", + "fields": { + "code_commune_insee": "47148", + "nom_de_la_commune": "LEYRITZ MONCASSIN", + "code_postal": "47700", + "coordonnees_gps": [ + 44.3329592283, + 0.176252040355 + ], + "libelle_d_acheminement": "LEYRITZ MONCASSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.176252040355, + 44.3329592283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b99c11c459861f996ca6a6c0cb294920f6a798f9", + "fields": { + "code_commune_insee": "47150", + "nom_de_la_commune": "LONGUEVILLE", + "code_postal": "47200", + "coordonnees_gps": [ + 44.4626368534, + 0.219860231765 + ], + "libelle_d_acheminement": "LONGUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.219860231765, + 44.4626368534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0311e73cbda0f3bc0fd6f56f1f019413e4072ad", + "fields": { + "code_commune_insee": "47151", + "nom_de_la_commune": "LOUBES BERNAC", + "code_postal": "47120", + "coordonnees_gps": [ + 44.7338357158, + 0.311069124069 + ], + "libelle_d_acheminement": "LOUBES BERNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.311069124069, + 44.7338357158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9421b3810a18527ca9c742d4b3627fe843693ff", + "fields": { + "code_commune_insee": "47152", + "nom_de_la_commune": "LOUGRATTE", + "code_postal": "47290", + "coordonnees_gps": [ + 44.5903746539, + 0.624298099523 + ], + "libelle_d_acheminement": "LOUGRATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.624298099523, + 44.5903746539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9b30be81cb4afbed55d971cc43fb123fbe07687", + "fields": { + "code_commune_insee": "47155", + "nom_de_la_commune": "MADAILLAN", + "code_postal": "47360", + "coordonnees_gps": [ + 44.276969573, + 0.581273435521 + ], + "libelle_d_acheminement": "MADAILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.581273435521, + 44.276969573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0970f67af727af4f39d66179566324c03e076466", + "fields": { + "code_commune_insee": "47159", + "nom_de_la_commune": "LE MAS D AGENAIS", + "code_postal": "47430", + "coordonnees_gps": [ + 44.3991025317, + 0.200249161005 + ], + "libelle_d_acheminement": "LE MAS D AGENAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.200249161005, + 44.3991025317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07a9d4efeb192bac0832f21036f5ef8beedd53ed", + "fields": { + "code_commune_insee": "47164", + "nom_de_la_commune": "MAZIERES NARESSE", + "code_postal": "47210", + "coordonnees_gps": [ + 44.6558763266, + 0.707696576814 + ], + "libelle_d_acheminement": "MAZIERES NARESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.707696576814, + 44.6558763266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98dfffaa99c0950669113e95dcddf38eec18de37", + "fields": { + "code_commune_insee": "47167", + "nom_de_la_commune": "MEZIN", + "code_postal": "47170", + "coordonnees_gps": [ + 44.0600445974, + 0.267088147392 + ], + "libelle_d_acheminement": "MEZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.267088147392, + 44.0600445974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "464562460d21a1544e872aac26a9a831f1774c8f", + "fields": { + "code_commune_insee": "47168", + "nom_de_la_commune": "MIRAMONT DE GUYENNE", + "code_postal": "47800", + "coordonnees_gps": [ + 44.5833450029, + 0.356429133423 + ], + "libelle_d_acheminement": "MIRAMONT DE GUYENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.356429133423, + 44.5833450029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79a2599a41921a61b4b48cc59329b28c6bd75c32", + "fields": { + "code_commune_insee": "47180", + "nom_de_la_commune": "MONTAGNAC SUR AUVIGNON", + "code_postal": "47600", + "coordonnees_gps": [ + 44.1657823187, + 0.457096230702 + ], + "libelle_d_acheminement": "MONTAGNAC SUR AUVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.457096230702, + 44.1657823187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e014f39b1e4f95baea96e452dc2a1990c11fc12e", + "fields": { + "code_commune_insee": "47194", + "nom_de_la_commune": "MOUSTIER", + "code_postal": "47800", + "coordonnees_gps": [ + 44.6425608196, + 0.301343634171 + ], + "libelle_d_acheminement": "MOUSTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301343634171, + 44.6425608196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42f212749a34c06fb70d2fd58d7dc7b598cfab17", + "fields": { + "code_commune_insee": "47202", + "nom_de_la_commune": "PAULHIAC", + "code_postal": "47150", + "coordonnees_gps": [ + 44.5751133813, + 0.826150001354 + ], + "libelle_d_acheminement": "PAULHIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.826150001354, + 44.5751133813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b92ad3481611c61d17787f5b400058701285270", + "fields": { + "code_commune_insee": "47208", + "nom_de_la_commune": "POMPOGNE", + "code_postal": "47420", + "coordonnees_gps": [ + 44.2402054979, + 0.0580974233061 + ], + "libelle_d_acheminement": "POMPOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0580974233061, + 44.2402054979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcbbb594b3a386f076f8f6998fae1c9dd1307477", + "fields": { + "code_commune_insee": "47225", + "nom_de_la_commune": "ROQUEFORT", + "code_postal": "47310", + "coordonnees_gps": [ + 44.1762971751, + 0.557230787746 + ], + "libelle_d_acheminement": "ROQUEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.557230787746, + 44.1762971751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f03e0f19ceaa87740a9b5e5062c7cf7c5b92669", + "fields": { + "code_commune_insee": "47232", + "nom_de_la_commune": "ST BARTHELEMY D AGENAIS", + "code_postal": "47350", + "coordonnees_gps": [ + 44.5242838812, + 0.370593568879 + ], + "libelle_d_acheminement": "ST BARTHELEMY D AGENAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.370593568879, + 44.5242838812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5ec620d24b8633fb3e087da04ca6f1b609046f3", + "fields": { + "code_commune_insee": "47240", + "nom_de_la_commune": "ST ETIENNE DE VILLEREAL", + "code_postal": "47210", + "coordonnees_gps": [ + 44.6120850351, + 0.762177045599 + ], + "libelle_d_acheminement": "ST ETIENNE DE VILLEREAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.762177045599, + 44.6120850351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3112a3d2b383e6960921b8e1cb6a1438ec1ea66e", + "fields": { + "code_commune_insee": "47241", + "nom_de_la_commune": "ST EUTROPE DE BORN", + "code_postal": "47210", + "coordonnees_gps": [ + 44.5780901973, + 0.708453980649 + ], + "libelle_d_acheminement": "ST EUTROPE DE BORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.708453980649, + 44.5780901973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3df83350395eb3c73bb908162aec26000a650fd8", + "fields": { + "code_commune_insee": "47250", + "nom_de_la_commune": "ST LEGER", + "code_postal": "47160", + "coordonnees_gps": [ + 44.3004219091, + 0.313824130963 + ], + "libelle_d_acheminement": "ST LEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.313824130963, + 44.3004219091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2b31bcc470dd133e944e06b439781f008168c20", + "fields": { + "code_commune_insee": "47253", + "nom_de_la_commune": "STE MARTHE", + "code_postal": "47430", + "coordonnees_gps": [ + 44.415315629, + 0.148396676303 + ], + "libelle_d_acheminement": "STE MARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.148396676303, + 44.415315629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ae1997a1603b454580d42cc0fd162190f1c5538", + "fields": { + "code_commune_insee": "47254", + "nom_de_la_commune": "ST MARTIN CURTON", + "code_postal": "47700", + "coordonnees_gps": [ + 44.3311233288, + -0.0251870734295 + ], + "libelle_d_acheminement": "ST MARTIN CURTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0251870734295, + 44.3311233288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de2ad5a97aba6fdab396ab87dc7c994033b45da6", + "fields": { + "code_commune_insee": "47257", + "nom_de_la_commune": "ST MARTIN PETIT", + "code_postal": "47180", + "coordonnees_gps": [ + 44.5709496293, + 0.0914080530224 + ], + "libelle_d_acheminement": "ST MARTIN PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0914080530224, + 44.5709496293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e34a8ae60da2fc1a6e55687c0c4d7845a096b232", + "fields": { + "code_commune_insee": "47258", + "nom_de_la_commune": "STE MAURE DE PEYRIAC", + "code_postal": "47170", + "coordonnees_gps": [ + 44.0097358393, + 0.154355200219 + ], + "libelle_d_acheminement": "STE MAURE DE PEYRIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.154355200219, + 44.0097358393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "086737ad54455ef5b71edf5a0edce937cbb29894", + "fields": { + "code_commune_insee": "47262", + "nom_de_la_commune": "ST NICOLAS DE LA BALERME", + "code_postal": "47220", + "coordonnees_gps": [ + 44.1311576443, + 0.756519172378 + ], + "libelle_d_acheminement": "ST NICOLAS DE LA BALERME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.756519172378, + 44.1311576443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6707e8de9d450721a510a31b784074d9ebe9a90e", + "fields": { + "code_commune_insee": "47267", + "nom_de_la_commune": "ST PIERRE DE BUZET", + "code_postal": "47160", + "coordonnees_gps": [ + 44.258213795, + 0.270170927246 + ], + "libelle_d_acheminement": "ST PIERRE DE BUZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.270170927246, + 44.258213795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85d0f350e5d4d43a06ffd5a655216f6807d07222", + "fields": { + "code_commune_insee": "47274", + "nom_de_la_commune": "ST ROMAIN LE NOBLE", + "code_postal": "47270", + "coordonnees_gps": [ + 44.1539136424, + 0.776879635948 + ], + "libelle_d_acheminement": "ST ROMAIN LE NOBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.776879635948, + 44.1539136424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7da61474acb68490f90328a46901ebdc6f00f426", + "fields": { + "code_commune_insee": "47281", + "nom_de_la_commune": "ST URCISSE", + "code_postal": "47270", + "coordonnees_gps": [ + 44.1644001524, + 0.826832844696 + ], + "libelle_d_acheminement": "ST URCISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.826832844696, + 44.1644001524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f13401ddda9f250f131eeaedd13e637857812edf", + "fields": { + "code_commune_insee": "47282", + "nom_de_la_commune": "ST VINCENT DE LAMONTJOIE", + "code_postal": "47310", + "coordonnees_gps": [ + 44.0929123328, + 0.499718250468 + ], + "libelle_d_acheminement": "ST VINCENT DE LAMONTJOIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.499718250468, + 44.0929123328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "522ffbc72923048531d4bfbf55bcf07efaa65a46", + "fields": { + "code_commune_insee": "47284", + "nom_de_la_commune": "SALLES", + "code_postal": "47150", + "coordonnees_gps": [ + 44.5297987522, + 0.890077944745 + ], + "libelle_d_acheminement": "SALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.890077944745, + 44.5297987522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5eb99c123a11b62fc6086d5260cb7cb027a9cbfb", + "fields": { + "code_commune_insee": "47289", + "nom_de_la_commune": "LA SAUVETAT DE SAVERES", + "code_postal": "47270", + "coordonnees_gps": [ + 44.2306316088, + 0.795887481537 + ], + "libelle_d_acheminement": "LA SAUVETAT DE SAVERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.795887481537, + 44.2306316088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cc1683974bfd57663f5cbf068e5aa54b7f4a7fb", + "fields": { + "code_commune_insee": "47298", + "nom_de_la_commune": "SENESTIS", + "code_postal": "47430", + "coordonnees_gps": [ + 44.4216441879, + 0.237961024607 + ], + "libelle_d_acheminement": "SENESTIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.237961024607, + 44.4216441879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9108f3e70502f9648c1666e5a9c0595c4bcf262", + "fields": { + "code_commune_insee": "47300", + "nom_de_la_commune": "SERIGNAC SUR GARONNE", + "code_postal": "47310", + "coordonnees_gps": [ + 44.2156168834, + 0.494137756364 + ], + "libelle_d_acheminement": "SERIGNAC SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.494137756364, + 44.2156168834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ae086d55514c9783bd0df86f225142da03fedb5", + "fields": { + "code_commune_insee": "47301", + "nom_de_la_commune": "SEYCHES", + "code_postal": "47350", + "coordonnees_gps": [ + 44.5491210196, + 0.292236597438 + ], + "libelle_d_acheminement": "SEYCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.292236597438, + 44.5491210196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e5d7823bbf3299173351712c45d1fabc4a4ff29", + "fields": { + "code_commune_insee": "47313", + "nom_de_la_commune": "TOURTRES", + "code_postal": "47380", + "coordonnees_gps": [ + 44.5103644427, + 0.418309119769 + ], + "libelle_d_acheminement": "TOURTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.418309119769, + 44.5103644427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "146fd6f81dd4edbec64170b84a33f044cce07b4a", + "fields": { + "code_commune_insee": "47314", + "nom_de_la_commune": "TREMONS", + "code_postal": "47140", + "coordonnees_gps": [ + 44.4176253146, + 0.889471727423 + ], + "libelle_d_acheminement": "TREMONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.889471727423, + 44.4176253146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "453371150d1b536418fae836456f01cd6c5b80ae", + "fields": { + "code_commune_insee": "47316", + "nom_de_la_commune": "VARES", + "code_postal": "47400", + "coordonnees_gps": [ + 44.4325501757, + 0.356074701312 + ], + "libelle_d_acheminement": "VARES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.356074701312, + 44.4325501757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51b27814cc543b1096115680f1394cecce14860c", + "fields": { + "code_commune_insee": "47321", + "nom_de_la_commune": "VILLENEUVE DE DURAS", + "code_postal": "47120", + "coordonnees_gps": [ + 44.7431410072, + 0.236705343695 + ], + "libelle_d_acheminement": "VILLENEUVE DE DURAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236705343695, + 44.7431410072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34fd14e6726e865a0c768ec5f4bfd998266c5448", + "fields": { + "code_commune_insee": "47324", + "nom_de_la_commune": "VILLEREAL", + "code_postal": "47210", + "coordonnees_gps": [ + 44.6330682255, + 0.760362133124 + ], + "libelle_d_acheminement": "VILLEREAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.760362133124, + 44.6330682255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54175d0ad800c79ed27ae84e7f356854b44fa4fd", + "fields": { + "code_commune_insee": "47326", + "nom_de_la_commune": "VIRAZEIL", + "code_postal": "47200", + "coordonnees_gps": [ + 44.5118708784, + 0.238920831275 + ], + "libelle_d_acheminement": "VIRAZEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.238920831275, + 44.5118708784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03eeae6348f400298f3df693c1c5e0ed39b86ac2", + "fields": { + "ligne_5": "LA GARDE", + "code_commune_insee": "48002", + "libelle_d_acheminement": "ALBARET STE MARIE", + "code_postal": "48200", + "nom_de_la_commune": "ALBARET STE MARIE", + "coordonnees_gps": [ + 44.8864422814, + 3.25064355451 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25064355451, + 44.8864422814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3fa165fb6639e1b7a6adc1ce198c1f1e12cfc29", + "fields": { + "code_commune_insee": "48004", + "nom_de_la_commune": "ALTIER", + "code_postal": "48800", + "coordonnees_gps": [ + 44.459680191, + 3.85680054017 + ], + "libelle_d_acheminement": "ALTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85680054017, + 44.459680191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9baedeb4ea6e3f5ecc49a9d306c840f968d7be47", + "fields": { + "code_commune_insee": "48005", + "nom_de_la_commune": "ANTRENAS", + "code_postal": "48100", + "coordonnees_gps": [ + 44.5881108325, + 3.25393256642 + ], + "libelle_d_acheminement": "ANTRENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25393256642, + 44.5881108325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48b2054c1306932924a7dfbd026a39ee3278a696", + "fields": { + "code_commune_insee": "48008", + "nom_de_la_commune": "ARZENC DE RANDON", + "code_postal": "48170", + "coordonnees_gps": [ + 44.6534793285, + 3.6149096338 + ], + "libelle_d_acheminement": "ARZENC DE RANDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6149096338, + 44.6534793285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88b1d68ac5acbd92882a835f62877e8583837ad3", + "fields": { + "ligne_5": "FAU DE PEYRE", + "code_commune_insee": "48009", + "libelle_d_acheminement": "PEYRE EN AUBRAC", + "code_postal": "48130", + "nom_de_la_commune": "PEYRE EN AUBRAC", + "coordonnees_gps": [ + 44.7233900467, + 3.28132614741 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28132614741, + 44.7233900467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f26e491ef7e8ee70db9a7ad2ad524368ba51481b", + "fields": { + "ligne_5": "STE COLOMBE DE PEYRE", + "code_commune_insee": "48009", + "libelle_d_acheminement": "PEYRE EN AUBRAC", + "code_postal": "48130", + "nom_de_la_commune": "PEYRE EN AUBRAC", + "coordonnees_gps": [ + 44.7233900467, + 3.28132614741 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28132614741, + 44.7233900467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77759e204f8dfe41c47e26db1737e86a21ca436e", + "fields": { + "code_commune_insee": "48021", + "nom_de_la_commune": "LA BASTIDE PUYLAURENT", + "code_postal": "48250", + "coordonnees_gps": [ + 44.5655559984, + 3.88803843314 + ], + "libelle_d_acheminement": "LA BASTIDE PUYLAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88803843314, + 44.5655559984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06edb834386f3bfdbe6645830524b421f95ef6e2", + "fields": { + "code_commune_insee": "48026", + "nom_de_la_commune": "BLAVIGNAC", + "code_postal": "48200", + "coordonnees_gps": [ + 44.8710692879, + 3.28412988196 + ], + "libelle_d_acheminement": "BLAVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28412988196, + 44.8710692879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cace126b3eb1ec978ed371a5d7dce187d7567be0", + "fields": { + "ligne_5": "LE BLEYMARD", + "code_commune_insee": "48027", + "libelle_d_acheminement": "MONT LOZERE ET GOULET", + "code_postal": "48190", + "nom_de_la_commune": "MONT LOZERE ET GOULET", + "coordonnees_gps": [ + 44.5107452501, + 3.74294007436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74294007436, + 44.5107452501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66898934a4194453f91efd62b366e2ccd4b6ae07", + "fields": { + "ligne_5": "CHASSERADES", + "code_commune_insee": "48027", + "libelle_d_acheminement": "MONT LOZERE ET GOULET", + "code_postal": "48250", + "nom_de_la_commune": "MONT LOZERE ET GOULET", + "coordonnees_gps": [ + 44.5107452501, + 3.74294007436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74294007436, + 44.5107452501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75773b14ac5874ab84a4126e9f5d1ca4ddbaa760", + "fields": { + "ligne_5": "AUXILLAC", + "code_commune_insee": "48034", + "libelle_d_acheminement": "LA CANOURGUE", + "code_postal": "48500", + "nom_de_la_commune": "LA CANOURGUE", + "coordonnees_gps": [ + 44.4193711769, + 3.25711827627 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25711827627, + 44.4193711769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a1ed95a102c3ce8bb2747fcd7d26aea44bbece1", + "fields": { + "ligne_5": "LA CAPELLE", + "code_commune_insee": "48034", + "libelle_d_acheminement": "LA CANOURGUE", + "code_postal": "48500", + "nom_de_la_commune": "LA CANOURGUE", + "coordonnees_gps": [ + 44.4193711769, + 3.25711827627 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25711827627, + 44.4193711769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae584c029bef9454bc49bcd5551ed599591219da", + "fields": { + "ligne_5": "CHAMBON LE CHATEAU", + "code_commune_insee": "48038", + "libelle_d_acheminement": "BEL AIR VAL D ANCE", + "code_postal": "48600", + "nom_de_la_commune": "BEL AIR VAL D ANCE", + "coordonnees_gps": [ + 44.8556410691, + 3.65464522563 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65464522563, + 44.8556410691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0329d853e181b6220536412a8eb812a5192ad3c7", + "fields": { + "code_commune_insee": "48044", + "nom_de_la_commune": "CHAUCHAILLES", + "code_postal": "48310", + "coordonnees_gps": [ + 44.7932282466, + 3.07355645186 + ], + "libelle_d_acheminement": "CHAUCHAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07355645186, + 44.7932282466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f45bde24714b9b445e1a4f89dcfee126d5e0fab9", + "fields": { + "code_commune_insee": "48046", + "nom_de_la_commune": "CHAULHAC", + "code_postal": "48140", + "coordonnees_gps": [ + 44.9200127514, + 3.26546644463 + ], + "libelle_d_acheminement": "CHAULHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26546644463, + 44.9200127514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5efc4fa0b096284a59bb03afdadbc1fc0ca4b41a", + "fields": { + "code_commune_insee": "48053", + "nom_de_la_commune": "CUBIERES", + "code_postal": "48190", + "coordonnees_gps": [ + 44.475323724, + 3.7868022391 + ], + "libelle_d_acheminement": "CUBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7868022391, + 44.475323724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8276bea2a0c7293795e07ba8f5078156738d179b", + "fields": { + "ligne_5": "FLORAC", + "code_commune_insee": "48061", + "libelle_d_acheminement": "FLORAC TROIS RIVIERES", + "code_postal": "48400", + "nom_de_la_commune": "FLORAC TROIS RIVIERES", + "coordonnees_gps": [ + 44.3162079295, + 3.58273527435 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58273527435, + 44.3162079295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e24d3885eaace2936ecd8082c365c1c7300dba4", + "fields": { + "code_commune_insee": "48068", + "nom_de_la_commune": "GABRIAS", + "code_postal": "48100", + "coordonnees_gps": [ + 44.5531806601, + 3.37940446458 + ], + "libelle_d_acheminement": "GABRIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37940446458, + 44.5531806601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2585714749413316efcc079a7d45350c6e37bcb", + "fields": { + "code_commune_insee": "48072", + "nom_de_la_commune": "GREZES", + "code_postal": "48100", + "coordonnees_gps": [ + 44.5156264154, + 3.34372091162 + ], + "libelle_d_acheminement": "GREZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34372091162, + 44.5156264154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2df96a9fe664e0897b112ccf35e2560214074cf", + "fields": { + "code_commune_insee": "48079", + "nom_de_la_commune": "LAJO", + "code_postal": "48120", + "coordonnees_gps": [ + 44.8288847769, + 3.439863707 + ], + "libelle_d_acheminement": "LAJO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.439863707, + 44.8288847769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e3d6316eed31a3743cc0f678b482f91e750264d", + "fields": { + "ligne_5": "MALBOUZON", + "code_commune_insee": "48087", + "libelle_d_acheminement": "PRINSUEJOLS MALBOUZON", + "code_postal": "48270", + "nom_de_la_commune": "PRINSUEJOLS MALBOUZON", + "coordonnees_gps": [ + 44.7070956214, + 3.13030307295 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13030307295, + 44.7070956214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "663e6d956b998932836e06732ebeb6887d7c2833", + "fields": { + "ligne_5": "LES VIGNES", + "code_commune_insee": "48094", + "libelle_d_acheminement": "MASSEGROS CAUSSES GORGES", + "code_postal": "48210", + "nom_de_la_commune": "MASSEGROS CAUSSES GORGES", + "coordonnees_gps": [ + 44.2937484234, + 3.15910137508 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15910137508, + 44.2937484234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2d10a9866ef0c96c330a4967ae13daf0a8c3fa5", + "fields": { + "code_commune_insee": "48096", + "nom_de_la_commune": "MEYRUEIS", + "code_postal": "48150", + "coordonnees_gps": [ + 44.1719020208, + 3.4516638341 + ], + "libelle_d_acheminement": "MEYRUEIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4516638341, + 44.1719020208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eae38ba038d228644018ae504d94962481b993ec", + "fields": { + "ligne_5": "LE MONASTIER PIN MORIES", + "code_commune_insee": "48099", + "libelle_d_acheminement": "BOURGS SUR COLAGNE", + "code_postal": "48100", + "nom_de_la_commune": "BOURGS SUR COLAGNE", + "coordonnees_gps": [ + 44.5109335104, + 3.22653031553 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22653031553, + 44.5109335104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e177cad728b6a3ab8c97ea25927b8f1958107d7", + "fields": { + "ligne_5": "PIN MORIES", + "code_commune_insee": "48099", + "libelle_d_acheminement": "BOURGS SUR COLAGNE", + "code_postal": "48100", + "nom_de_la_commune": "BOURGS SUR COLAGNE", + "coordonnees_gps": [ + 44.5109335104, + 3.22653031553 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22653031553, + 44.5109335104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d8d4090239ce65db1b62bd2ff3794a414dece8a", + "fields": { + "code_commune_insee": "48112", + "nom_de_la_commune": "PIERREFICHE", + "code_postal": "48300", + "coordonnees_gps": [ + 44.685286546, + 3.73234366061 + ], + "libelle_d_acheminement": "PIERREFICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73234366061, + 44.685286546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23dbe196ae61e13545a9d099d685cfbe53244a34", + "fields": { + "code_commune_insee": "48123", + "nom_de_la_commune": "RECOULES D AUBRAC", + "code_postal": "48260", + "coordonnees_gps": [ + 44.6928193837, + 3.03731293861 + ], + "libelle_d_acheminement": "RECOULES D AUBRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03731293861, + 44.6928193837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c974c0dfaa7bcc2d744888ff87a52c70616930c", + "fields": { + "ligne_5": "RIBENNES", + "code_commune_insee": "48126", + "libelle_d_acheminement": "LACHAMP RIBENNES", + "code_postal": "48700", + "nom_de_la_commune": "LACHAMP RIBENNES", + "coordonnees_gps": [ + 44.6498972232, + 3.386003003 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.386003003, + 44.6498972232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8aa4dd3185665df052d3d4bac4db02b78dc105f1", + "fields": { + "ligne_5": "ESTABLES", + "code_commune_insee": "48127", + "libelle_d_acheminement": "MONTS DE RANDON", + "code_postal": "48700", + "nom_de_la_commune": "MONTS DE RANDON", + "coordonnees_gps": [ + 44.6238353175, + 3.4886504946 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4886504946, + 44.6238353175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0531f8817045a30b623325433530ab8b55fac37f", + "fields": { + "code_commune_insee": "48130", + "nom_de_la_commune": "ROUSSES", + "code_postal": "48400", + "coordonnees_gps": [ + 44.1935759156, + 3.57352564571 + ], + "libelle_d_acheminement": "ROUSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57352564571, + 44.1935759156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d678bd9abafddc1b6705cbb2e9bc02a233d5eba", + "fields": { + "code_commune_insee": "48132", + "nom_de_la_commune": "ST ALBAN SUR LIMAGNOLE", + "code_postal": "48120", + "coordonnees_gps": [ + 44.796708709, + 3.40321537339 + ], + "libelle_d_acheminement": "ST ALBAN SUR LIMAGNOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40321537339, + 44.796708709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecfaa7b9486d78e2520ba3271e3c137154a6faca", + "fields": { + "code_commune_insee": "48136", + "nom_de_la_commune": "ST ANDRE DE LANCIZE", + "code_postal": "48240", + "coordonnees_gps": [ + 44.2738839787, + 3.79461663158 + ], + "libelle_d_acheminement": "ST ANDRE DE LANCIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79461663158, + 44.2738839787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b694b0e5a90e3b717b1ffe71b0319ca54c1ba43", + "fields": { + "code_commune_insee": "48137", + "nom_de_la_commune": "ST BAUZILE", + "code_postal": "48000", + "coordonnees_gps": [ + 44.4690744788, + 3.49143883359 + ], + "libelle_d_acheminement": "ST BAUZILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49143883359, + 44.4690744788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8aa97cabc8e8d9a43bfd4863323761924993297", + "fields": { + "code_commune_insee": "48138", + "nom_de_la_commune": "ST BONNET DE CHIRAC", + "code_postal": "48100", + "coordonnees_gps": [ + 44.5036552745, + 3.27693458859 + ], + "libelle_d_acheminement": "ST BONNET DE CHIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27693458859, + 44.5036552745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97ae55e44f05bd8ca8f4f9b029f21ed97e418a20", + "fields": { + "code_commune_insee": "48145", + "nom_de_la_commune": "ST DENIS EN MARGERIDE", + "code_postal": "48700", + "coordonnees_gps": [ + 44.7410960032, + 3.47353884292 + ], + "libelle_d_acheminement": "ST DENIS EN MARGERIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47353884292, + 44.7410960032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8676ee9a67513b63740f2074550a9460fdace0a5", + "fields": { + "ligne_5": "BLAJOUX", + "code_commune_insee": "48146", + "libelle_d_acheminement": "GORGES DU TARN CAUSSES", + "code_postal": "48320", + "nom_de_la_commune": "GORGES DU TARN CAUSSES", + "coordonnees_gps": [ + 44.3777129567, + 3.41934570392 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41934570392, + 44.3777129567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05151f31907927c674cb6ec766573a2eaeea6a49", + "fields": { + "code_commune_insee": "48151", + "nom_de_la_commune": "ST FREZAL D ALBUGES", + "code_postal": "48170", + "coordonnees_gps": [ + 44.580874652, + 3.76717918984 + ], + "libelle_d_acheminement": "ST FREZAL D ALBUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76717918984, + 44.580874652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a41abb0f9b02db4a98b0d8dcf79057da2c0038da", + "fields": { + "ligne_5": "ST FREZAL DE VENTALON", + "code_commune_insee": "48152", + "libelle_d_acheminement": "VENTALON EN CEVENNES", + "code_postal": "48240", + "nom_de_la_commune": "VENTALON EN CEVENNES", + "coordonnees_gps": [ + 44.2940872699, + 3.8666152032 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8666152032, + 44.2940872699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87958eee70d037d336d9d759a445268e3f460fc1", + "fields": { + "code_commune_insee": "48155", + "nom_de_la_commune": "ST GERMAIN DE CALBERTE", + "code_postal": "48370", + "coordonnees_gps": [ + 44.2216658847, + 3.81002631474 + ], + "libelle_d_acheminement": "ST GERMAIN DE CALBERTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81002631474, + 44.2216658847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d517665907e719fd909945373b5914ebcd1a6ae7", + "fields": { + "code_commune_insee": "48158", + "nom_de_la_commune": "ST HILAIRE DE LAVIT", + "code_postal": "48160", + "coordonnees_gps": [ + 44.2534149147, + 3.85445517188 + ], + "libelle_d_acheminement": "ST HILAIRE DE LAVIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85445517188, + 44.2534149147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23a34c595beffcc59e31c85ddb6809fb1c71e6ee", + "fields": { + "code_commune_insee": "48161", + "nom_de_la_commune": "ST JUERY", + "code_postal": "48310", + "coordonnees_gps": [ + 44.8298892181, + 3.08370934221 + ], + "libelle_d_acheminement": "ST JUERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08370934221, + 44.8298892181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40d4fb90cc9a6f25e90c32e88f16778ab312ff2c", + "fields": { + "code_commune_insee": "48174", + "nom_de_la_commune": "ST PAUL LE FROID", + "code_postal": "48600", + "coordonnees_gps": [ + 44.7953874731, + 3.5412624136 + ], + "libelle_d_acheminement": "ST PAUL LE FROID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5412624136, + 44.7953874731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10bf64b9182e0910520385cdb9c517b482e01d49", + "fields": { + "code_commune_insee": "48178", + "nom_de_la_commune": "ST PRIVAT DE VALLONGUE", + "code_postal": "48240", + "coordonnees_gps": [ + 44.2854432826, + 3.82446827604 + ], + "libelle_d_acheminement": "ST PRIVAT DE VALLONGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82446827604, + 44.2854432826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85163c23b053694f070b3aae81ed202da9c5e843", + "fields": { + "code_commune_insee": "48181", + "nom_de_la_commune": "ST SATURNIN", + "code_postal": "48500", + "coordonnees_gps": [ + 44.405047281, + 3.1969905802 + ], + "libelle_d_acheminement": "ST SATURNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1969905802, + 44.405047281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca6d57151bad94f131591e4d4ea57ab7cf005784", + "fields": { + "ligne_5": "LES VANELS", + "code_commune_insee": "48193", + "libelle_d_acheminement": "VEBRON", + "code_postal": "48400", + "nom_de_la_commune": "VEBRON", + "coordonnees_gps": [ + 44.2551348683, + 3.54353418299 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54353418299, + 44.2551348683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99d977dd3b73a0553b6f8451325975f9b39c1a07", + "fields": { + "code_commune_insee": "49002", + "nom_de_la_commune": "ALLONNES", + "code_postal": "49650", + "coordonnees_gps": [ + 47.3034746947, + 0.0111127082363 + ], + "libelle_d_acheminement": "ALLONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0111127082363, + 47.3034746947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cf76b4716440b696f9152bf2f7e450db507ea2b", + "fields": { + "code_commune_insee": "49007", + "nom_de_la_commune": "ANGERS", + "code_postal": "49000", + "coordonnees_gps": [ + 47.476837416, + -0.556125995444 + ], + "libelle_d_acheminement": "ANGERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.556125995444, + 47.476837416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "919e02e9fe3c19937c70ad52abae46817242a486", + "fields": { + "code_commune_insee": "49008", + "nom_de_la_commune": "ANGRIE", + "code_postal": "49440", + "coordonnees_gps": [ + 47.5778407482, + -0.968142946141 + ], + "libelle_d_acheminement": "ANGRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.968142946141, + 47.5778407482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76feaf11ae48e4fd80cf15cd77924f08af6349fb", + "fields": { + "code_commune_insee": "49015", + "nom_de_la_commune": "AVRILLE", + "code_postal": "49240", + "coordonnees_gps": [ + 47.5057106265, + -0.600788940942 + ], + "libelle_d_acheminement": "AVRILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.600788940942, + 47.5057106265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78eb093a2118a74d3bd1850ce4f51c12c72082f8", + "fields": { + "ligne_5": "CHARTRENE", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0cf08e6823baee9d0fa51ebdd27846a4ea83ce5", + "fields": { + "ligne_5": "ST MARTIN D ARCE", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9547732e15c91f9d169180aa6c8a4f6bf1be83d", + "fields": { + "code_commune_insee": "49022", + "nom_de_la_commune": "BEAULIEU SUR LAYON", + "code_postal": "49750", + "coordonnees_gps": [ + 47.3187109536, + -0.600035399851 + ], + "libelle_d_acheminement": "BEAULIEU SUR LAYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.600035399851, + 47.3187109536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5d9d164cec8a060b14f2fc0a00c2c21bec82cb1", + "fields": { + "ligne_5": "VILLEDIEU LA BLOUERE", + "code_commune_insee": "49023", + "libelle_d_acheminement": "BEAUPREAU EN MAUGES", + "code_postal": "49450", + "nom_de_la_commune": "BEAUPREAU EN MAUGES", + "coordonnees_gps": [ + 47.2125984545, + -0.983619028639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.983619028639, + 47.2125984545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e39add9f2e77b44de36b45948db9807f53e3958", + "fields": { + "ligne_5": "LA JUBAUDIERE", + "code_commune_insee": "49023", + "libelle_d_acheminement": "BEAUPREAU EN MAUGES", + "code_postal": "49510", + "nom_de_la_commune": "BEAUPREAU EN MAUGES", + "coordonnees_gps": [ + 47.2125984545, + -0.983619028639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.983619028639, + 47.2125984545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5f4cb62821a2c8708f0ee7330ff017702240d05", + "fields": { + "ligne_5": "LA CHAPELLE DU GENET", + "code_commune_insee": "49023", + "libelle_d_acheminement": "BEAUPREAU EN MAUGES", + "code_postal": "49600", + "nom_de_la_commune": "BEAUPREAU EN MAUGES", + "coordonnees_gps": [ + 47.2125984545, + -0.983619028639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.983619028639, + 47.2125984545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8997d56d3e836957c82c70b6ec403a64a4f35b6", + "fields": { + "code_commune_insee": "49027", + "nom_de_la_commune": "BEGROLLES EN MAUGES", + "code_postal": "49122", + "coordonnees_gps": [ + 47.133273239, + -0.931697835787 + ], + "libelle_d_acheminement": "BEGROLLES EN MAUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.931697835787, + 47.133273239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e75b2bd81f957725b76c0d22d1fd8603650a9fc8", + "fields": { + "ligne_5": "ST SULPICE", + "code_commune_insee": "49029", + "libelle_d_acheminement": "BLAISON ST SULPICE", + "code_postal": "49320", + "nom_de_la_commune": "BLAISON ST SULPICE", + "coordonnees_gps": [ + 47.3908187654, + -0.380019189582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.380019189582, + 47.3908187654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a49d1d4aca704d5e49953cda646b0bd79a25697f", + "fields": { + "code_commune_insee": "49030", + "nom_de_la_commune": "BLOU", + "code_postal": "49160", + "coordonnees_gps": [ + 47.3630441484, + -0.0536103057427 + ], + "libelle_d_acheminement": "BLOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0536103057427, + 47.3630441484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d186b0aedee329f74a660a58f60490d597cd2549", + "fields": { + "code_commune_insee": "49038", + "nom_de_la_commune": "BOURG L EVEQUE", + "code_postal": "49520", + "coordonnees_gps": [ + 47.7329044493, + -1.01480048811 + ], + "libelle_d_acheminement": "BOURG L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01480048811, + 47.7329044493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c3ce5fc681ef51bce42255512150feab287d5af", + "fields": { + "code_commune_insee": "49041", + "nom_de_la_commune": "BRAIN SUR ALLONNES", + "code_postal": "49650", + "coordonnees_gps": [ + 47.3056918695, + 0.0710549100336 + ], + "libelle_d_acheminement": "BRAIN SUR ALLONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0710549100336, + 47.3056918695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aa593f89ecfa8d044f4992f8ae076cb620b4426", + "fields": { + "ligne_5": "CHEMELLIER", + "code_commune_insee": "49050", + "libelle_d_acheminement": "BRISSAC LOIRE AUBANCE", + "code_postal": "49320", + "nom_de_la_commune": "BRISSAC LOIRE AUBANCE", + "coordonnees_gps": [ + 47.3416678749, + -0.441366325976 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441366325976, + 47.3416678749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7597a4a7cdc5b472e198c8e6a177d7f645172fe7", + "fields": { + "ligne_5": "VAUCHRETIEN", + "code_commune_insee": "49050", + "libelle_d_acheminement": "BRISSAC LOIRE AUBANCE", + "code_postal": "49320", + "nom_de_la_commune": "BRISSAC LOIRE AUBANCE", + "coordonnees_gps": [ + 47.3416678749, + -0.441366325976 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441366325976, + 47.3416678749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a64828faf60b708479abdc131677c6d5e500c2a", + "fields": { + "ligne_5": "CHACE", + "code_commune_insee": "49060", + "libelle_d_acheminement": "BELLEVIGNE LES CHATEAUX", + "code_postal": "49400", + "nom_de_la_commune": "BELLEVIGNE LES CHATEAUX", + "coordonnees_gps": [ + 47.2066359278, + -0.0708098589193 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0708098589193, + 47.2066359278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dcc22feb29d1e86484723f898a34c8d9003a812", + "fields": { + "code_commune_insee": "49064", + "nom_de_la_commune": "CHAMBELLAY", + "code_postal": "49220", + "coordonnees_gps": [ + 47.6887999605, + -0.69354489611 + ], + "libelle_d_acheminement": "CHAMBELLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69354489611, + 47.6887999605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f63fd3967b211fea7667dbfd50e5c64eb0dab2da", + "fields": { + "code_commune_insee": "49070", + "nom_de_la_commune": "CHANTELOUP LES BOIS", + "code_postal": "49340", + "coordonnees_gps": [ + 47.084888395, + -0.691577840535 + ], + "libelle_d_acheminement": "CHANTELOUP LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.691577840535, + 47.084888395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cff571fdc21cda94dbdea7563a6e72dfcd2e3373", + "fields": { + "ligne_5": "CHERRE", + "code_commune_insee": "49080", + "libelle_d_acheminement": "LES HAUTS D ANJOU", + "code_postal": "49330", + "nom_de_la_commune": "LES HAUTS D ANJOU", + "coordonnees_gps": [ + 47.6841712906, + -0.495930395639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.495930395639, + 47.6841712906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1b9bd669583004634dbd1af9984f6859b07655c", + "fields": { + "ligne_5": "CONTIGNE", + "code_commune_insee": "49080", + "libelle_d_acheminement": "LES HAUTS D ANJOU", + "code_postal": "49330", + "nom_de_la_commune": "LES HAUTS D ANJOU", + "coordonnees_gps": [ + 47.6841712906, + -0.495930395639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.495930395639, + 47.6841712906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea131920feec68805ae86bbe96e5a275af9407da", + "fields": { + "ligne_5": "QUERRE", + "code_commune_insee": "49080", + "libelle_d_acheminement": "LES HAUTS D ANJOU", + "code_postal": "49330", + "nom_de_la_commune": "LES HAUTS D ANJOU", + "coordonnees_gps": [ + 47.6841712906, + -0.495930395639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.495930395639, + 47.6841712906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1d2f515b15c7d3acdb6a1cbe9bf2b9df33d58c4", + "fields": { + "ligne_5": "NOTRE DAME D ALLENCON", + "code_commune_insee": "49086", + "libelle_d_acheminement": "TERRANJOU", + "code_postal": "49380", + "nom_de_la_commune": "TERRANJOU", + "coordonnees_gps": [ + 47.274007949, + -0.439804383087 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.439804383087, + 47.274007949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ef251f8085c82e56dc50185b48809847630567", + "fields": { + "ligne_5": "COSSE D ANJOU", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49120", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12247bee99f42c9f1710bc3dff874c1c899c11cd", + "fields": { + "ligne_5": "LA SALLE DE VIHIERS", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49310", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0c3358f1c654de13f60917810569ba70f99f2ac", + "fields": { + "ligne_5": "JOUE ETIAU", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49670", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "501ea3450458930422c260c6f0df770b131d633b", + "fields": { + "ligne_5": "VALANJOU", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49670", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2b5cd0f593b57de8e189225744e1f74b83fac4d", + "fields": { + "code_commune_insee": "49110", + "nom_de_la_commune": "CORZE", + "code_postal": "49140", + "coordonnees_gps": [ + 47.5424133416, + -0.369410127178 + ], + "libelle_d_acheminement": "CORZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.369410127178, + 47.5424133416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dcb7df0bc09be776936aec27e774c52e2580f9c", + "fields": { + "ligne_5": "BRIGNE", + "code_commune_insee": "49125", + "libelle_d_acheminement": "DOUE EN ANJOU", + "code_postal": "49700", + "nom_de_la_commune": "DOUE EN ANJOU", + "coordonnees_gps": [ + 47.1914715686, + -0.278336056087 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.278336056087, + 47.1914715686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44f6a20bd5f36359e56684621999cc3948f73dee", + "fields": { + "ligne_5": "DOUE LA FONTAINE", + "code_commune_insee": "49125", + "libelle_d_acheminement": "DOUE EN ANJOU", + "code_postal": "49700", + "nom_de_la_commune": "DOUE EN ANJOU", + "coordonnees_gps": [ + 47.1914715686, + -0.278336056087 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.278336056087, + 47.1914715686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8424d05e5a1ee3d745f49088080e747649da4824", + "fields": { + "ligne_5": "ST GEORGES DU BOIS", + "code_commune_insee": "49138", + "libelle_d_acheminement": "LES BOIS D ANJOU", + "code_postal": "49250", + "nom_de_la_commune": "LES BOIS D ANJOU", + "coordonnees_gps": [ + 47.4829167789, + -0.174198642479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.174198642479, + 47.4829167789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a41d1ebea826f7f2a538e0f39f81686b3726b113", + "fields": { + "ligne_5": "LE LOUROUX BECONNAIS", + "code_commune_insee": "49183", + "libelle_d_acheminement": "VAL D ERDRE AUXENCE", + "code_postal": "49370", + "nom_de_la_commune": "VAL D ERDRE AUXENCE", + "coordonnees_gps": [ + 47.519040527, + -0.90137845396 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90137845396, + 47.519040527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64b0e9c3bbb0654a6b27f39378853c48f544e7d2", + "fields": { + "ligne_5": "LA CORNUAILLE", + "code_commune_insee": "49183", + "libelle_d_acheminement": "VAL D ERDRE AUXENCE", + "code_postal": "49440", + "nom_de_la_commune": "VAL D ERDRE AUXENCE", + "coordonnees_gps": [ + 47.519040527, + -0.90137845396 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.90137845396, + 47.519040527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ab1c93a6d4a8c24dd93f5f9e7f5b4d3db0ec68d", + "fields": { + "code_commune_insee": "49188", + "nom_de_la_commune": "MARCE", + "code_postal": "49140", + "coordonnees_gps": [ + 47.5822974995, + -0.300211738642 + ], + "libelle_d_acheminement": "MARCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.300211738642, + 47.5822974995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73cdc42d6dab749e1c1d20c939cfa3f2a7b839c8", + "fields": { + "code_commune_insee": "49192", + "nom_de_la_commune": "MAULEVRIER", + "code_postal": "49360", + "coordonnees_gps": [ + 47.0185766256, + -0.768134737511 + ], + "libelle_d_acheminement": "MAULEVRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.768134737511, + 47.0185766256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b1e0e816d2abb5b44964386015c8a838a8642cb", + "fields": { + "ligne_5": "PRUILLE", + "code_commune_insee": "49200", + "libelle_d_acheminement": "LONGUENEE EN ANJOU", + "code_postal": "49220", + "nom_de_la_commune": "LONGUENEE EN ANJOU", + "coordonnees_gps": [ + 47.5607664036, + -0.683468497352 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.683468497352, + 47.5607664036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b2cb65d87dda5a2bc5a42584c0bd90eb6b30967", + "fields": { + "ligne_5": "LA MEIGNANNE", + "code_commune_insee": "49200", + "libelle_d_acheminement": "LONGUENEE EN ANJOU", + "code_postal": "49770", + "nom_de_la_commune": "LONGUENEE EN ANJOU", + "coordonnees_gps": [ + 47.5607664036, + -0.683468497352 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.683468497352, + 47.5607664036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f7c23aff748dd1dc206614859ec3caee13dd3f7", + "fields": { + "ligne_5": "LA MEMBROLLE SUR LONGUENEE", + "code_commune_insee": "49200", + "libelle_d_acheminement": "LONGUENEE EN ANJOU", + "code_postal": "49770", + "nom_de_la_commune": "LONGUENEE EN ANJOU", + "coordonnees_gps": [ + 47.5607664036, + -0.683468497352 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.683468497352, + 47.5607664036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9522db079a4cbf252eb37467c897b46c5d8658c7", + "fields": { + "code_commune_insee": "49201", + "nom_de_la_commune": "LA MENITRE", + "code_postal": "49250", + "coordonnees_gps": [ + 47.4070050575, + -0.256671293231 + ], + "libelle_d_acheminement": "LA MENITRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.256671293231, + 47.4070050575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d049678e5c18b736f9c611a174d7379ab748854e", + "fields": { + "code_commune_insee": "49205", + "nom_de_la_commune": "MIRE", + "code_postal": "49330", + "coordonnees_gps": [ + 47.7620031933, + -0.495000586199 + ], + "libelle_d_acheminement": "MIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.495000586199, + 47.7620031933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3f9b38a35d30155d5e67a62e7ef9c8638b5873a", + "fields": { + "ligne_5": "JUIGNE BENE", + "code_commune_insee": "49214", + "libelle_d_acheminement": "MONTREUIL JUIGNE", + "code_postal": "49460", + "nom_de_la_commune": "MONTREUIL JUIGNE", + "coordonnees_gps": [ + 47.5411858548, + -0.616472796467 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.616472796467, + 47.5411858548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bb093009e4b1d88f80952ea00b649eb459311ae", + "fields": { + "ligne_5": "MONTREVAULT", + "code_commune_insee": "49218", + "libelle_d_acheminement": "MONTREVAULT SUR EVRE", + "code_postal": "49110", + "nom_de_la_commune": "MONTREVAULT SUR EVRE", + "coordonnees_gps": [ + 47.255395404, + -1.05160971025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05160971025, + 47.255395404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eca4cfc8880992fe36016a173d3a5499d2a04daa", + "fields": { + "ligne_5": "ST REMY EN MAUGES", + "code_commune_insee": "49218", + "libelle_d_acheminement": "MONTREVAULT SUR EVRE", + "code_postal": "49110", + "nom_de_la_commune": "MONTREVAULT SUR EVRE", + "coordonnees_gps": [ + 47.255395404, + -1.05160971025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05160971025, + 47.255395404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "828116b3e042d5ca164f9b9a2c57c0ff2cc44f35", + "fields": { + "ligne_5": "LE PUISET DORE", + "code_commune_insee": "49218", + "libelle_d_acheminement": "MONTREVAULT SUR EVRE", + "code_postal": "49600", + "nom_de_la_commune": "MONTREVAULT SUR EVRE", + "coordonnees_gps": [ + 47.255395404, + -1.05160971025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05160971025, + 47.255395404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54a4c964440d074359ac3661c94526f5567d13ee", + "fields": { + "code_commune_insee": "49219", + "nom_de_la_commune": "MONTSOREAU", + "code_postal": "49730", + "coordonnees_gps": [ + 47.2135013304, + 0.0519492185178 + ], + "libelle_d_acheminement": "MONTSOREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0519492185178, + 47.2135013304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69b1e183754934b3df93e592ee1d80080c13d7fb", + "fields": { + "ligne_5": "MORANNES SUR SARTHE", + "code_commune_insee": "49220", + "libelle_d_acheminement": "MORANNES SUR SARTHE DAUMERAY", + "code_postal": "49640", + "nom_de_la_commune": "MORANNES SUR SARTHE DAUMERAY", + "coordonnees_gps": [ + 47.725500783, + -0.403190245491 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.403190245491, + 47.725500783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7b98ca33e1ee787f6a299788ba62096d15853ba", + "fields": { + "code_commune_insee": "49223", + "nom_de_la_commune": "MURS ERIGNE", + "code_postal": "49610", + "coordonnees_gps": [ + 47.3952383531, + -0.553551118702 + ], + "libelle_d_acheminement": "MURS ERIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.553551118702, + 47.3952383531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49ab4d7f3f7f3ff245315acd8ed89fba1117172a", + "fields": { + "ligne_5": "PARCAY LES PINS", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49390", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "151a094c66031e4af48693f2600d6baf58044784", + "fields": { + "ligne_5": "BROC", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49490", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61a7f34eee5a3f12ba5bb4289daeec4a06cc8354", + "fields": { + "ligne_5": "CHAVAIGNES", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49490", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dba104a8a4d2f43c4d1c0e3d1d9464e28b0c3318", + "fields": { + "ligne_5": "CHIGNE", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49490", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "438b3fc2badec46634ff20f5677cececf0190ee9", + "fields": { + "code_commune_insee": "49236", + "nom_de_la_commune": "PASSAVANT SUR LAYON", + "code_postal": "49560", + "coordonnees_gps": [ + 47.1007325389, + -0.383422642271 + ], + "libelle_d_acheminement": "PASSAVANT SUR LAYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.383422642271, + 47.1007325389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b702ed16cc84fe5667e00432f2bccaefd566cfab", + "fields": { + "code_commune_insee": "49246", + "nom_de_la_commune": "LES PONTS DE CE", + "code_postal": "49130", + "coordonnees_gps": [ + 47.4272536106, + -0.512677371617 + ], + "libelle_d_acheminement": "LES PONTS DE CE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.512677371617, + 47.4272536106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "690a102a81b65f4dc9676ef6c48c12869cfd1d12", + "fields": { + "code_commune_insee": "49259", + "nom_de_la_commune": "ROCHEFORT SUR LOIRE", + "code_postal": "49190", + "coordonnees_gps": [ + 47.3508366008, + -0.65047354418 + ], + "libelle_d_acheminement": "ROCHEFORT SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65047354418, + 47.3508366008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45d6b16011c83736176883131fa0c3205a338bc0", + "fields": { + "code_commune_insee": "49260", + "nom_de_la_commune": "LA ROMAGNE", + "code_postal": "49740", + "coordonnees_gps": [ + 47.0543066107, + -1.00996778066 + ], + "libelle_d_acheminement": "LA ROMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00996778066, + 47.0543066107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55934832e3b102f4aae5f8da37ba2d0e293874ea", + "fields": { + "ligne_5": "ST MARTIN DE LA PLACE", + "code_commune_insee": "49261", + "libelle_d_acheminement": "GENNES VAL DE LOIRE", + "code_postal": "49160", + "nom_de_la_commune": "GENNES VAL DE LOIRE", + "coordonnees_gps": [ + 47.374115152, + -0.222562814963 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.222562814963, + 47.374115152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d056458e5d2b7b0fc5a923a4c590c00cc041f51c", + "fields": { + "ligne_5": "LES ROSIERS SUR LOIRE", + "code_commune_insee": "49261", + "libelle_d_acheminement": "GENNES VAL DE LOIRE", + "code_postal": "49350", + "nom_de_la_commune": "GENNES VAL DE LOIRE", + "coordonnees_gps": [ + 47.374115152, + -0.222562814963 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.222562814963, + 47.374115152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22aae062c024946eb685d77552049512cc559271", + "fields": { + "ligne_5": "ST GEORGES DES SEPT VOIES", + "code_commune_insee": "49261", + "libelle_d_acheminement": "GENNES VAL DE LOIRE", + "code_postal": "49350", + "nom_de_la_commune": "GENNES VAL DE LOIRE", + "coordonnees_gps": [ + 47.374115152, + -0.222562814963 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.222562814963, + 47.374115152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e5cebc7599bed08ceea0b01a611b71ae65f493f", + "fields": { + "code_commune_insee": "49262", + "nom_de_la_commune": "ROU MARSON", + "code_postal": "49400", + "coordonnees_gps": [ + 47.2445767064, + -0.151599974844 + ], + "libelle_d_acheminement": "ROU MARSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.151599974844, + 47.2445767064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59758456b95f717e22377aa00e679184b3f246be", + "fields": { + "code_commune_insee": "49269", + "nom_de_la_commune": "ST CHRISTOPHE DU BOIS", + "code_postal": "49280", + "coordonnees_gps": [ + 47.0291789736, + -0.965837562307 + ], + "libelle_d_acheminement": "ST CHRISTOPHE DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.965837562307, + 47.0291789736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c96f9525820adacec66bd62d9c85c776d833eed", + "fields": { + "code_commune_insee": "49278", + "nom_de_la_commune": "STE GEMMES SUR LOIRE", + "code_postal": "49130", + "coordonnees_gps": [ + 47.4281722672, + -0.575792781781 + ], + "libelle_d_acheminement": "STE GEMMES SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.575792781781, + 47.4281722672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d375522c6a64265306205b8e4bfed5a3eb16c98", + "fields": { + "ligne_5": "ST GERMAIN SUR MOINE", + "code_commune_insee": "49301", + "libelle_d_acheminement": "SEVREMOINE", + "code_postal": "49230", + "nom_de_la_commune": "SEVREMOINE", + "coordonnees_gps": [ + 47.1256560392, + -0.998341815021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.998341815021, + 47.1256560392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d08c727652fbbea07547d4b120b9ad98f1b7d0c7", + "fields": { + "code_commune_insee": "49308", + "nom_de_la_commune": "ST MELAINE SUR AUBANCE", + "code_postal": "49610", + "coordonnees_gps": [ + 47.3818008704, + -0.50194349373 + ], + "libelle_d_acheminement": "ST MELAINE SUR AUBANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50194349373, + 47.3818008704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2efd053256e30d666ab5f1de3bf4d6844a558b15", + "fields": { + "code_commune_insee": "49321", + "nom_de_la_commune": "ST SIGISMOND", + "code_postal": "49123", + "coordonnees_gps": [ + 47.4512573953, + -0.942796446768 + ], + "libelle_d_acheminement": "ST SIGISMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.942796446768, + 47.4512573953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53770e10bcf77a1f2d1257c0798ebe579d221b6e", + "fields": { + "ligne_5": "LA FERRIERE DE FLEE", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49500", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25a78f30e70096f17ec824fbe1a33bfefc53134f", + "fields": { + "code_commune_insee": "49333", + "nom_de_la_commune": "SEICHES SUR LE LOIR", + "code_postal": "49140", + "coordonnees_gps": [ + 47.6039171793, + -0.358897551801 + ], + "libelle_d_acheminement": "SEICHES SUR LE LOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.358897551801, + 47.6039171793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49300812639a4376be63f006f4849cda90d91221", + "fields": { + "ligne_5": "MATHEFLON", + "code_commune_insee": "49333", + "libelle_d_acheminement": "SEICHES SUR LE LOIR", + "code_postal": "49140", + "nom_de_la_commune": "SEICHES SUR LE LOIR", + "coordonnees_gps": [ + 47.6039171793, + -0.358897551801 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.358897551801, + 47.6039171793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4045782fdffa51ace8240ff400c7fef8ab9c8755", + "fields": { + "code_commune_insee": "49358", + "nom_de_la_commune": "TURQUANT", + "code_postal": "49730", + "coordonnees_gps": [ + 47.2114118968, + 0.0218791736623 + ], + "libelle_d_acheminement": "TURQUANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0218791736623, + 47.2114118968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b20fc2f93ac41f3246fe25a506fc744d4241bde", + "fields": { + "code_commune_insee": "49361", + "nom_de_la_commune": "VARENNES SUR LOIRE", + "code_postal": "49730", + "coordonnees_gps": [ + 47.247861704, + 0.0416546487257 + ], + "libelle_d_acheminement": "VARENNES SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0416546487257, + 47.247861704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e448c1dec14e0365e3f68abe3e18f480d820b6d4", + "fields": { + "code_commune_insee": "49364", + "nom_de_la_commune": "VAUDELNAY", + "code_postal": "49260", + "coordonnees_gps": [ + 47.1411198846, + -0.212881943742 + ], + "libelle_d_acheminement": "VAUDELNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.212881943742, + 47.1411198846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7acd9117f3b9cfca9213c607e232ab40317941b", + "fields": { + "ligne_5": "VERN D ANJOU", + "code_commune_insee": "49367", + "libelle_d_acheminement": "ERDRE EN ANJOU", + "code_postal": "49220", + "nom_de_la_commune": "ERDRE EN ANJOU", + "coordonnees_gps": [ + 47.5882203908, + -0.849650865368 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.849650865368, + 47.5882203908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e6b0f936ce872c36b530a46c389870987150d3c", + "fields": { + "code_commune_insee": "50233", + "nom_de_la_commune": "HAUTTEVILLE BOCAGE", + "code_postal": "50390", + "coordonnees_gps": [ + 49.4282916342, + -1.46687598255 + ], + "libelle_d_acheminement": "HAUTTEVILLE BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46687598255, + 49.4282916342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dda68c6cc73885844da418b24f766c92edd918fa", + "fields": { + "code_commune_insee": "49371", + "nom_de_la_commune": "VEZINS", + "code_postal": "49340", + "coordonnees_gps": [ + 47.1152806742, + -0.721207267194 + ], + "libelle_d_acheminement": "VEZINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.721207267194, + 47.1152806742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b389af46ff91ce5a0093908a15bd3c2ad6e164bf", + "fields": { + "ligne_5": "BAUDREVILLE", + "code_commune_insee": "50236", + "libelle_d_acheminement": "LA HAYE", + "code_postal": "50250", + "nom_de_la_commune": "LA HAYE", + "coordonnees_gps": [ + 49.2835142105, + -1.53943989107 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53943989107, + 49.2835142105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fa1557f890f8af66ab7ff2c4e20faa4e711e77c", + "fields": { + "ligne_5": "ST HILAIRE DU BOIS", + "code_commune_insee": "49373", + "libelle_d_acheminement": "LYS HAUT LAYON", + "code_postal": "49310", + "nom_de_la_commune": "LYS HAUT LAYON", + "coordonnees_gps": [ + 47.1373301524, + -0.559450064005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.559450064005, + 47.1373301524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b5757607e856206b9ea8488d415c7d107d1b8dd", + "fields": { + "ligne_5": "BOLLEVILLE", + "code_commune_insee": "50236", + "libelle_d_acheminement": "LA HAYE", + "code_postal": "50250", + "nom_de_la_commune": "LA HAYE", + "coordonnees_gps": [ + 49.2835142105, + -1.53943989107 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53943989107, + 49.2835142105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19abe663b487359fb50424dbf6070ab234c4144c", + "fields": { + "ligne_5": "TANCOIGNE", + "code_commune_insee": "49373", + "libelle_d_acheminement": "LYS HAUT LAYON", + "code_postal": "49310", + "nom_de_la_commune": "LYS HAUT LAYON", + "coordonnees_gps": [ + 47.1373301524, + -0.559450064005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.559450064005, + 47.1373301524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe47582262c1ccd63970eb75c268adcb46eb6819", + "fields": { + "ligne_5": "GLATIGNY", + "code_commune_insee": "50236", + "libelle_d_acheminement": "LA HAYE", + "code_postal": "50250", + "nom_de_la_commune": "LA HAYE", + "coordonnees_gps": [ + 49.2835142105, + -1.53943989107 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53943989107, + 49.2835142105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e5e37f78c5efa41c6a600cffb7d6988046aecb3", + "fields": { + "ligne_5": "VIHIERS", + "code_commune_insee": "49373", + "libelle_d_acheminement": "LYS HAUT LAYON", + "code_postal": "49310", + "nom_de_la_commune": "LYS HAUT LAYON", + "coordonnees_gps": [ + 47.1373301524, + -0.559450064005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.559450064005, + 47.1373301524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89047eb6bafe204dd7559c28f2e408401ff60481", + "fields": { + "code_commune_insee": "50240", + "nom_de_la_commune": "HELLEVILLE", + "code_postal": "50340", + "coordonnees_gps": [ + 49.558015983, + -1.78437613079 + ], + "libelle_d_acheminement": "HELLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78437613079, + 49.558015983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0dd792d8212ceb0dced52e9b3c2fe90d804b37e", + "fields": { + "ligne_5": "LA FOSSE DE TIGNE", + "code_commune_insee": "49373", + "libelle_d_acheminement": "LYS HAUT LAYON", + "code_postal": "49540", + "nom_de_la_commune": "LYS HAUT LAYON", + "coordonnees_gps": [ + 47.1373301524, + -0.559450064005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.559450064005, + 47.1373301524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f8fc2a3e625ba29ec1576e9002e7663465a8a28", + "fields": { + "code_commune_insee": "50256", + "nom_de_la_commune": "ISIGNY LE BUAT", + "code_postal": "50540", + "coordonnees_gps": [ + 48.6214964353, + -1.18298649234 + ], + "libelle_d_acheminement": "ISIGNY LE BUAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18298649234, + 48.6214964353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e98de931a02417ce32928ff27518db7a01ec0f5", + "fields": { + "code_commune_insee": "49381", + "nom_de_la_commune": "YZERNAY", + "code_postal": "49360", + "coordonnees_gps": [ + 47.0344970546, + -0.696855883888 + ], + "libelle_d_acheminement": "YZERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.696855883888, + 47.0344970546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f557bd13ddd780fa902fbc0a7a07765771f4c15", + "fields": { + "ligne_5": "LA MANCELLIERE", + "code_commune_insee": "50256", + "libelle_d_acheminement": "ISIGNY LE BUAT", + "code_postal": "50540", + "nom_de_la_commune": "ISIGNY LE BUAT", + "coordonnees_gps": [ + 48.6214964353, + -1.18298649234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18298649234, + 48.6214964353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0873de2806997e88b225fc59afadcbac98ed5358", + "fields": { + "code_commune_insee": "50004", + "nom_de_la_commune": "AIREL", + "code_postal": "50680", + "coordonnees_gps": [ + 49.2125093524, + -1.08007866426 + ], + "libelle_d_acheminement": "AIREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08007866426, + 49.2125093524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e7e38ca146d8738394e49e426e2d7954ad07cd5", + "fields": { + "ligne_5": "LE MESNIL BOEUFS", + "code_commune_insee": "50256", + "libelle_d_acheminement": "ISIGNY LE BUAT", + "code_postal": "50540", + "nom_de_la_commune": "ISIGNY LE BUAT", + "coordonnees_gps": [ + 48.6214964353, + -1.18298649234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18298649234, + 48.6214964353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e966d3883e475bb39f5f2b4aba8af71129dd5b55", + "fields": { + "code_commune_insee": "50008", + "nom_de_la_commune": "ANCTOVILLE SUR BOSCQ", + "code_postal": "50400", + "coordonnees_gps": [ + 48.8461317815, + -1.52840505005 + ], + "libelle_d_acheminement": "ANCTOVILLE SUR BOSCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52840505005, + 48.8461317815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20add39f0d13ccefc63ee57dd927168132ea5118", + "fields": { + "code_commune_insee": "50266", + "nom_de_la_commune": "LENGRONNE", + "code_postal": "50450", + "coordonnees_gps": [ + 48.9338177836, + -1.37830852349 + ], + "libelle_d_acheminement": "LENGRONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37830852349, + 48.9338177836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87e780312138c4bd6aeec8552f9585dd3df14e7d", + "fields": { + "code_commune_insee": "50023", + "nom_de_la_commune": "AUVERS", + "code_postal": "50500", + "coordonnees_gps": [ + 49.3000438595, + -1.32395939229 + ], + "libelle_d_acheminement": "AUVERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32395939229, + 49.3000438595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c28dac5ddb2b9c8a78f15770168d86546179ca2a", + "fields": { + "ligne_5": "ANGOVILLE SUR AY", + "code_commune_insee": "50267", + "libelle_d_acheminement": "LESSAY", + "code_postal": "50430", + "nom_de_la_commune": "LESSAY", + "coordonnees_gps": [ + 49.2167143742, + -1.52478862014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52478862014, + 49.2167143742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06e1da18434d2e8bab1ba1f14a55f10e27112679", + "fields": { + "ligne_5": "ST MARTIN DES CHAMPS", + "code_commune_insee": "50025", + "libelle_d_acheminement": "AVRANCHES", + "code_postal": "50300", + "nom_de_la_commune": "AVRANCHES", + "coordonnees_gps": [ + 48.6884746717, + -1.35732338245 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35732338245, + 48.6884746717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cdde3c8f97bd164d050d958caa6889b307e7ea7", + "fields": { + "ligne_5": "LITHAIRE", + "code_commune_insee": "50273", + "libelle_d_acheminement": "MONTSENELLE", + "code_postal": "50250", + "nom_de_la_commune": "MONTSENELLE", + "coordonnees_gps": [ + 49.2964016031, + -1.48893562927 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48893562927, + 49.2964016031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c1c2502a6ee4635bc0426632cf4adbc2380780f", + "fields": { + "code_commune_insee": "50032", + "nom_de_la_commune": "LA BARRE DE SEMILLY", + "code_postal": "50810", + "coordonnees_gps": [ + 49.1063271499, + -1.01818230779 + ], + "libelle_d_acheminement": "LA BARRE DE SEMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01818230779, + 49.1063271499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de51b3a74450d4c7230e2668ddad1f81d26b92ab", + "fields": { + "ligne_5": "ST JORES", + "code_commune_insee": "50273", + "libelle_d_acheminement": "MONTSENELLE", + "code_postal": "50250", + "nom_de_la_commune": "MONTSENELLE", + "coordonnees_gps": [ + 49.2964016031, + -1.48893562927 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48893562927, + 49.2964016031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "971c0582943be1e33589cf7b42056970a0901a2c", + "fields": { + "code_commune_insee": "50034", + "nom_de_la_commune": "BAUDRE", + "code_postal": "50000", + "coordonnees_gps": [ + 49.0874889577, + -1.06982745173 + ], + "libelle_d_acheminement": "BAUDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06982745173, + 49.0874889577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edd68e8f14a286cc19ddf5bc6ba470264d264c99", + "fields": { + "code_commune_insee": "50275", + "nom_de_la_commune": "LES LOGES SUR BRECEY", + "code_postal": "50370", + "coordonnees_gps": [ + 48.7566766172, + -1.16089600587 + ], + "libelle_d_acheminement": "LES LOGES SUR BRECEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16089600587, + 48.7566766172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f9904945c35bad98fa4ca48cb6065b1561202ca", + "fields": { + "ligne_5": "HERQUEVILLE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dabafe06df116733bd45e7f75e54eddd1a083495", + "fields": { + "code_commune_insee": "50276", + "nom_de_la_commune": "LOLIF", + "code_postal": "50530", + "coordonnees_gps": [ + 48.731700288, + -1.39448203488 + ], + "libelle_d_acheminement": "LOLIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39448203488, + 48.731700288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3d60d4324badec24a58ddaceefe1de413716f75", + "fields": { + "ligne_5": "JOBOURG", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5a1a3154e3acf5060d398f3749350eaa4f3ce52", + "fields": { + "code_commune_insee": "50279", + "nom_de_la_commune": "LE LOREY", + "code_postal": "50570", + "coordonnees_gps": [ + 49.0977430002, + -1.30007991644 + ], + "libelle_d_acheminement": "LE LOREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30007991644, + 49.0977430002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca8b9fc738deb99718a5dcc6e6e43d4c796d8c9a", + "fields": { + "ligne_5": "OMONVILLE LA PETITE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db02f8fd98eef82752bac3a66c258e2953773c7c", + "fields": { + "code_commune_insee": "50283", + "nom_de_la_commune": "LA LUZERNE", + "code_postal": "50680", + "coordonnees_gps": [ + 49.1413998381, + -1.04606238276 + ], + "libelle_d_acheminement": "LA LUZERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04606238276, + 49.1413998381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8319a5c0940d1d7fe957c461ec2a57dddbd9b87f", + "fields": { + "code_commune_insee": "50042", + "nom_de_la_commune": "BEAUVOIR", + "code_postal": "50170", + "coordonnees_gps": [ + 48.6036397591, + -1.52825115278 + ], + "libelle_d_acheminement": "BEAUVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52825115278, + 48.6036397591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb86a1fd32e96595ecca90552d83efe3139097e9", + "fields": { + "ligne_5": "LOZON", + "code_commune_insee": "50292", + "libelle_d_acheminement": "MARIGNY LE LOZON", + "code_postal": "50570", + "nom_de_la_commune": "MARIGNY LE LOZON", + "coordonnees_gps": [ + 49.1042100375, + -1.2522099973 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2522099973, + 49.1042100375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21713010e96f1b256bb0f9c8966315682e3e3724", + "fields": { + "code_commune_insee": "50049", + "nom_de_la_commune": "BESNEVILLE", + "code_postal": "50390", + "coordonnees_gps": [ + 49.376696854, + -1.62681954299 + ], + "libelle_d_acheminement": "BESNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62681954299, + 49.376696854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e96d1ae1f9acd91ace71a4feb4aa38a84b0554b", + "fields": { + "code_commune_insee": "50296", + "nom_de_la_commune": "MAUPERTUS SUR MER", + "code_postal": "50330", + "coordonnees_gps": [ + 49.6568745054, + -1.48350640946 + ], + "libelle_d_acheminement": "MAUPERTUS SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48350640946, + 49.6568745054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f66ecdca385cabb7694b1617c89b3c79d5096401", + "fields": { + "code_commune_insee": "50052", + "nom_de_la_commune": "BEUZEVILLE LA BASTILLE", + "code_postal": "50360", + "coordonnees_gps": [ + 49.3525650943, + -1.36515881519 + ], + "libelle_d_acheminement": "BEUZEVILLE LA BASTILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36515881519, + 49.3525650943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "367360b9410571a384485bce7f52802f34164ebf", + "fields": { + "code_commune_insee": "50299", + "nom_de_la_commune": "LE MESNIL", + "code_postal": "50580", + "coordonnees_gps": [ + 49.3719294322, + -1.69334065015 + ], + "libelle_d_acheminement": "LE MESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69334065015, + 49.3719294322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f51c155c56fae8b664471d36390973aebbb4fdcd", + "fields": { + "code_commune_insee": "50054", + "nom_de_la_commune": "BIEVILLE", + "code_postal": "50160", + "coordonnees_gps": [ + 49.0736562042, + -0.889084336461 + ], + "libelle_d_acheminement": "BIEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889084336461, + 49.0736562042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd38ece98b08a982e3ba3d86e68d5c091d91db67", + "fields": { + "code_commune_insee": "50305", + "nom_de_la_commune": "LE MESNIL AU VAL", + "code_postal": "50110", + "coordonnees_gps": [ + 49.5983810722, + -1.52768461283 + ], + "libelle_d_acheminement": "LE MESNIL AU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52768461283, + 49.5983810722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "143bfa45c9eae723bcdc1658eaf65fba14c27879", + "fields": { + "code_commune_insee": "50062", + "nom_de_la_commune": "BOISYVON", + "code_postal": "50800", + "coordonnees_gps": [ + 48.8066947421, + -1.12798080113 + ], + "libelle_d_acheminement": "BOISYVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12798080113, + 48.8066947421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ef4ebc165a068d1c8a4c7ed134c634bae6e8f08", + "fields": { + "code_commune_insee": "50311", + "nom_de_la_commune": "LE MESNIL GARNIER", + "code_postal": "50450", + "coordonnees_gps": [ + 48.8654912425, + -1.3045486883 + ], + "libelle_d_acheminement": "LE MESNIL GARNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3045486883, + 48.8654912425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10f52db385cfcdc25f5d9250f2aef8ab4700e29c", + "fields": { + "code_commune_insee": "50074", + "nom_de_la_commune": "BRECEY", + "code_postal": "50370", + "coordonnees_gps": [ + 48.7250596734, + -1.17310373114 + ], + "libelle_d_acheminement": "BRECEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17310373114, + 48.7250596734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a5d3dae4ef6704695e351a386424de9863a3774", + "fields": { + "code_commune_insee": "50332", + "nom_de_la_commune": "LES MOITIERS D ALLONNE", + "code_postal": "50270", + "coordonnees_gps": [ + 49.4032073739, + -1.78595352218 + ], + "libelle_d_acheminement": "LES MOITIERS D ALLONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78595352218, + 49.4032073739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e5e76eb9e78ee1dffc5a0c690e0d07f80152f63", + "fields": { + "code_commune_insee": "50088", + "nom_de_la_commune": "BROUAINS", + "code_postal": "50150", + "coordonnees_gps": [ + 48.720771214, + -0.966952494174 + ], + "libelle_d_acheminement": "BROUAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.966952494174, + 48.720771214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c7db56b99e07e81595deb19e8a381fab65b07b3", + "fields": { + "code_commune_insee": "50341", + "nom_de_la_commune": "MONTEBOURG", + "code_postal": "50310", + "coordonnees_gps": [ + 49.4973576116, + -1.38713307717 + ], + "libelle_d_acheminement": "MONTEBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38713307717, + 49.4973576116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "052ef65a1444afc4e408aa52b69d605233ace794", + "fields": { + "code_commune_insee": "50092", + "nom_de_la_commune": "CAMBERNON", + "code_postal": "50200", + "coordonnees_gps": [ + 49.0871438723, + -1.38108310659 + ], + "libelle_d_acheminement": "CAMBERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38108310659, + 49.0871438723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52de8de904b54764cab7f298efe319d41699d93b", + "fields": { + "code_commune_insee": "50349", + "nom_de_la_commune": "MONTMARTIN SUR MER", + "code_postal": "50590", + "coordonnees_gps": [ + 48.9910212765, + -1.52994382531 + ], + "libelle_d_acheminement": "MONTMARTIN SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52994382531, + 48.9910212765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53d9265be245d69bf4921218626b1ffe629358e4", + "fields": { + "ligne_5": "HOUESVILLE", + "code_commune_insee": "50099", + "libelle_d_acheminement": "CARENTAN LES MARAIS", + "code_postal": "50480", + "nom_de_la_commune": "CARENTAN LES MARAIS", + "coordonnees_gps": [ + 49.2963250601, + -1.2559215726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2559215726, + 49.2963250601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dabd5c4678842e92b7cc8b2b5c050282838a4f4", + "fields": { + "code_commune_insee": "50356", + "nom_de_la_commune": "MOON SUR ELLE", + "code_postal": "50680", + "coordonnees_gps": [ + 49.2037429192, + -1.05390925446 + ], + "libelle_d_acheminement": "MOON SUR ELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05390925446, + 49.2037429192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d123f3943f99dbe66705781ac80645db3bc70ce2", + "fields": { + "ligne_5": "ST COME DU MONT", + "code_commune_insee": "50099", + "libelle_d_acheminement": "CARENTAN LES MARAIS", + "code_postal": "50500", + "nom_de_la_commune": "CARENTAN LES MARAIS", + "coordonnees_gps": [ + 49.2963250601, + -1.2559215726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2559215726, + 49.2963250601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3800489921c05049c28f21e87012197db741c6e8", + "fields": { + "ligne_5": "ST JEAN DU CORAIL", + "code_commune_insee": "50359", + "libelle_d_acheminement": "MORTAIN BOCAGE", + "code_postal": "50140", + "nom_de_la_commune": "MORTAIN BOCAGE", + "coordonnees_gps": [ + 48.6474805702, + -0.931721848821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.931721848821, + 48.6474805702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "529d8cd166284e72fd84848e1bcf98c798ed5991", + "fields": { + "ligne_5": "ST PELLERIN", + "code_commune_insee": "50099", + "libelle_d_acheminement": "CARENTAN LES MARAIS", + "code_postal": "50500", + "nom_de_la_commune": "CARENTAN LES MARAIS", + "coordonnees_gps": [ + 49.2963250601, + -1.2559215726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2559215726, + 49.2963250601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e2fb3fa292812c45cc5fcccb97c7dd33c53ac74", + "fields": { + "ligne_5": "VILLECHIEN", + "code_commune_insee": "50359", + "libelle_d_acheminement": "MORTAIN BOCAGE", + "code_postal": "50140", + "nom_de_la_commune": "MORTAIN BOCAGE", + "coordonnees_gps": [ + 48.6474805702, + -0.931721848821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.931721848821, + 48.6474805702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed7ab4fc858e23720f35c0085a7630dc96da660f", + "fields": { + "code_commune_insee": "50102", + "nom_de_la_commune": "CAROLLES", + "code_postal": "50740", + "coordonnees_gps": [ + 48.749037599, + -1.55955935077 + ], + "libelle_d_acheminement": "CAROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55955935077, + 48.749037599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d350c1b10d29795fc5e435df9c3fbbd009f61e83", + "fields": { + "code_commune_insee": "50360", + "nom_de_la_commune": "MORVILLE", + "code_postal": "50700", + "coordonnees_gps": [ + 49.4744014366, + -1.51700030481 + ], + "libelle_d_acheminement": "MORVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51700030481, + 49.4744014366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "055b377cabbece3d85d53f3f6a5c15ce0782560f", + "fields": { + "code_commune_insee": "50106", + "nom_de_la_commune": "CAVIGNY", + "code_postal": "50620", + "coordonnees_gps": [ + 49.1911573529, + -1.12208710895 + ], + "libelle_d_acheminement": "CAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12208710895, + 49.1911573529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e68a957199425df34f17186b7111e542ac55a332", + "fields": { + "ligne_5": "CHEVRY", + "code_commune_insee": "50363", + "libelle_d_acheminement": "MOYON VILLAGES", + "code_postal": "50420", + "nom_de_la_commune": "MOYON VILLAGES", + "coordonnees_gps": [ + 48.9941243257, + -1.13665567668 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13665567668, + 48.9941243257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37207e768e5e291cd36312244ee8e4a5e37debb8", + "fields": { + "code_commune_insee": "50109", + "nom_de_la_commune": "CERENCES", + "code_postal": "50510", + "coordonnees_gps": [ + 48.9111679831, + -1.43836257164 + ], + "libelle_d_acheminement": "CERENCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43836257164, + 48.9111679831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77ff7a3efee1912c2b5fb27b9235421aa1e5776a", + "fields": { + "code_commune_insee": "50369", + "nom_de_la_commune": "NEGREVILLE", + "code_postal": "50260", + "coordonnees_gps": [ + 49.5039052057, + -1.55157352152 + ], + "libelle_d_acheminement": "NEGREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55157352152, + 49.5039052057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b521b7cce84097f30a9019661b19753a183d8a3a", + "fields": { + "code_commune_insee": "50111", + "nom_de_la_commune": "CERISY LA SALLE", + "code_postal": "50210", + "coordonnees_gps": [ + 49.0364321556, + -1.27126890359 + ], + "libelle_d_acheminement": "CERISY LA SALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27126890359, + 49.0364321556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ba203fe8048a7f3848496411a46cccbca9bfe45", + "fields": { + "code_commune_insee": "50373", + "nom_de_la_commune": "NEUVILLE AU PLAIN", + "code_postal": "50480", + "coordonnees_gps": [ + 49.4241715154, + -1.33468334659 + ], + "libelle_d_acheminement": "NEUVILLE AU PLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33468334659, + 49.4241715154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf6c63d108ca6c0f875028a46015a0c71777a49d", + "fields": { + "code_commune_insee": "50112", + "nom_de_la_commune": "LA CHAISE BAUDOUIN", + "code_postal": "50370", + "coordonnees_gps": [ + 48.7649742891, + -1.23764812549 + ], + "libelle_d_acheminement": "LA CHAISE BAUDOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23764812549, + 48.7649742891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1099bb8fad03b27710128c755845aff19a722e32", + "fields": { + "code_commune_insee": "50390", + "nom_de_la_commune": "OZEVILLE", + "code_postal": "50310", + "coordonnees_gps": [ + 49.5039632158, + -1.34095393925 + ], + "libelle_d_acheminement": "OZEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34095393925, + 49.5039632158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dee9635e3c81e67f6da17907576c418081094be", + "fields": { + "ligne_5": "CHAMPCERVON", + "code_commune_insee": "50115", + "libelle_d_acheminement": "LE GRIPPON", + "code_postal": "50320", + "nom_de_la_commune": "LE GRIPPON", + "coordonnees_gps": [ + 48.7720554748, + -1.40097666285 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40097666285, + 48.7720554748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0274b39de1868e4158931e07f7ff71e36520631f", + "fields": { + "ligne_5": "LES MOITIERS EN BAUPTOIS", + "code_commune_insee": "50400", + "libelle_d_acheminement": "PICAUVILLE", + "code_postal": "50360", + "nom_de_la_commune": "PICAUVILLE", + "coordonnees_gps": [ + 49.3794617832, + -1.3877872154 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3877872154, + 49.3794617832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7544b332f0e20a6eac2e2887a8a8dfd9de0197db", + "fields": { + "code_commune_insee": "50117", + "nom_de_la_commune": "CHAMPEAUX", + "code_postal": "50530", + "coordonnees_gps": [ + 48.7377829694, + -1.52927055978 + ], + "libelle_d_acheminement": "CHAMPEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52927055978, + 48.7377829694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5555a22c885696f4cfb79de1bcdfb457a908a52a", + "fields": { + "code_commune_insee": "50401", + "nom_de_la_commune": "PIERREVILLE", + "code_postal": "50340", + "coordonnees_gps": [ + 49.4674285357, + -1.77803993341 + ], + "libelle_d_acheminement": "PIERREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77803993341, + 49.4674285357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a21c3dd655ea9b369cdc8f680a85f28226376aa3", + "fields": { + "code_commune_insee": "50121", + "nom_de_la_commune": "LA CHAPELLE CECELIN", + "code_postal": "50800", + "coordonnees_gps": [ + 48.8078496044, + -1.16781595111 + ], + "libelle_d_acheminement": "LA CHAPELLE CECELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16781595111, + 48.8078496044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f459a4789cad912807a654b99f10a9c5f52730a", + "fields": { + "code_commune_insee": "50409", + "nom_de_la_commune": "PONT HEBERT", + "code_postal": "50880", + "coordonnees_gps": [ + 49.1634595987, + -1.15107589364 + ], + "libelle_d_acheminement": "PONT HEBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15107589364, + 49.1634595987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "430ba1c72b63aa1fbc23426123925683bd11b596", + "fields": { + "code_commune_insee": "50124", + "nom_de_la_commune": "LA CHAPELLE UREE", + "code_postal": "50370", + "coordonnees_gps": [ + 48.6642257683, + -1.14933275487 + ], + "libelle_d_acheminement": "LA CHAPELLE UREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14933275487, + 48.6642257683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "998db3c66c4e782ac776c601951c0dcf17cc46f7", + "fields": { + "ligne_5": "PORTBAIL", + "code_commune_insee": "50412", + "libelle_d_acheminement": "PORT BAIL SUR MER", + "code_postal": "50580", + "nom_de_la_commune": "PORT BAIL SUR MER", + "coordonnees_gps": [ + 49.3520385149, + -1.69541641793 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69541641793, + 49.3520385149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be7309ca71f8948af62d7716fb7bac6c53148580", + "fields": { + "code_commune_insee": "50126", + "nom_de_la_commune": "CHAVOY", + "code_postal": "50870", + "coordonnees_gps": [ + 48.7360129868, + -1.33360285302 + ], + "libelle_d_acheminement": "CHAVOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33360285302, + 48.7360129868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6005278d41db335d8633038cdff228232d06f953", + "fields": { + "ligne_5": "MORSALINES", + "code_commune_insee": "50417", + "libelle_d_acheminement": "QUETTEHOU", + "code_postal": "50630", + "nom_de_la_commune": "QUETTEHOU", + "coordonnees_gps": [ + 49.5883938646, + -1.32408087794 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32408087794, + 49.5883938646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b3487fefdbc40e8e64e34b50858e82e42ac97ab", + "fields": { + "ligne_5": "EQUEURDREVILLE HAINNEVILLE", + "code_commune_insee": "50129", + "libelle_d_acheminement": "CHERBOURG EN COTENTIN", + "code_postal": "50120", + "nom_de_la_commune": "CHERBOURG EN COTENTIN", + "coordonnees_gps": [ + 49.633412156, + -1.63390160204 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63390160204, + 49.633412156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f75957c48d573d03446452319c20f23a78a690ca", + "fields": { + "ligne_5": "TRELLY", + "code_commune_insee": "50419", + "libelle_d_acheminement": "QUETTREVILLE SUR SIENNE", + "code_postal": "50660", + "nom_de_la_commune": "QUETTREVILLE SUR SIENNE", + "coordonnees_gps": [ + 48.9618413224, + -1.46914956989 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46914956989, + 48.9618413224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c569994c5672710491323f8f949b66f7c28ae63e", + "fields": { + "ligne_5": "LA GLACERIE", + "code_commune_insee": "50129", + "libelle_d_acheminement": "CHERBOURG EN COTENTIN", + "code_postal": "50470", + "nom_de_la_commune": "CHERBOURG EN COTENTIN", + "coordonnees_gps": [ + 49.633412156, + -1.63390160204 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63390160204, + 49.633412156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91640039c2b1f65aec2f8f15423296d2fc7746fb", + "fields": { + "ligne_5": "LE MESNIL VIGOT", + "code_commune_insee": "50431", + "libelle_d_acheminement": "REMILLY LES MARAIS", + "code_postal": "50570", + "nom_de_la_commune": "REMILLY LES MARAIS", + "coordonnees_gps": [ + 49.1797139942, + -1.26085995101 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26085995101, + 49.1797139942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99420fedaeaab1be873585030e2cae3a717affab", + "fields": { + "code_commune_insee": "50135", + "nom_de_la_commune": "CLITOURPS", + "code_postal": "50330", + "coordonnees_gps": [ + 49.6512259574, + -1.37120809063 + ], + "libelle_d_acheminement": "CLITOURPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37120809063, + 49.6512259574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f83a9b6e0229a51165d95ff50c0a11860cfc4666", + "fields": { + "code_commune_insee": "50435", + "nom_de_la_commune": "ROCHEVILLE", + "code_postal": "50260", + "coordonnees_gps": [ + 49.5001421824, + -1.59313956631 + ], + "libelle_d_acheminement": "ROCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59313956631, + 49.5001421824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45c548b7f6211bed4ef1a8e2d581bcdf1bf64da1", + "fields": { + "ligne_5": "TROISGOTS", + "code_commune_insee": "50139", + "libelle_d_acheminement": "CONDE SUR VIRE", + "code_postal": "50420", + "nom_de_la_commune": "CONDE SUR VIRE", + "coordonnees_gps": [ + 49.0540546845, + -1.02453868309 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02453868309, + 49.0540546845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33243a950c52a9d81ec63e33dca6789d83ceb3f2", + "fields": { + "ligne_5": "ST AMAND", + "code_commune_insee": "50444", + "libelle_d_acheminement": "ST AMAND VILLAGES", + "code_postal": "50160", + "nom_de_la_commune": "ST AMAND VILLAGES", + "coordonnees_gps": [ + 49.0444946813, + -0.948478098898 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.948478098898, + 49.0444946813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe09d98901062cbbf8d3c2d691b852bd4a938c5f", + "fields": { + "ligne_5": "VRASVILLE", + "code_commune_insee": "50142", + "libelle_d_acheminement": "VICQ SUR MER", + "code_postal": "50330", + "nom_de_la_commune": "VICQ SUR MER", + "coordonnees_gps": [ + 49.6915085353, + -1.4000999278 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4000999278, + 49.6915085353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d32e8c756c424e41d405dcf2997a51570b540e68", + "fields": { + "code_commune_insee": "50448", + "nom_de_la_commune": "ST AUBIN DE TERREGATTE", + "code_postal": "50240", + "coordonnees_gps": [ + 48.5703247813, + -1.28722870629 + ], + "libelle_d_acheminement": "ST AUBIN DE TERREGATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28722870629, + 48.5703247813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1ec9d441bea05aa55074c7990f3d4ee5223d1aa", + "fields": { + "code_commune_insee": "50148", + "nom_de_la_commune": "COUVAINS", + "code_postal": "50680", + "coordonnees_gps": [ + 49.1619489869, + -1.0082509146 + ], + "libelle_d_acheminement": "COUVAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0082509146, + 49.1619489869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f840decadf7317f51b8be83fa2657c6267c1c27", + "fields": { + "code_commune_insee": "50453", + "nom_de_la_commune": "STE CECILE", + "code_postal": "50800", + "coordonnees_gps": [ + 48.8335140152, + -1.18922933897 + ], + "libelle_d_acheminement": "STE CECILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18922933897, + 48.8335140152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a649e834c7c78298e813e1681142d52a5a614ddf", + "fields": { + "code_commune_insee": "50161", + "nom_de_la_commune": "LE DEZERT", + "code_postal": "50620", + "coordonnees_gps": [ + 49.2088367132, + -1.16303254743 + ], + "libelle_d_acheminement": "LE DEZERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16303254743, + 49.2088367132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dac35f7d4fc09a9867fb037ed1bef799cd22898b", + "fields": { + "code_commune_insee": "50455", + "nom_de_la_commune": "ST CLAIR SUR L ELLE", + "code_postal": "50680", + "coordonnees_gps": [ + 49.1851844677, + -1.04046067538 + ], + "libelle_d_acheminement": "ST CLAIR SUR L ELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04046067538, + 49.1851844677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71124dcb261b55c0e0ee5db3be81717a3072d0a8", + "fields": { + "code_commune_insee": "50162", + "nom_de_la_commune": "DIGOSVILLE", + "code_postal": "50110", + "coordonnees_gps": [ + 49.6288821095, + -1.52811592716 + ], + "libelle_d_acheminement": "DIGOSVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52811592716, + 49.6288821095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04647c5d0aeb16fe51f77cc1f6d8f913adc0c0e0", + "fields": { + "code_commune_insee": "50462", + "nom_de_la_commune": "ST CYR DU BAILLEUL", + "code_postal": "50720", + "coordonnees_gps": [ + 48.5678803644, + -0.826779942958 + ], + "libelle_d_acheminement": "ST CYR DU BAILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.826779942958, + 48.5678803644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc416a8f972b2a6719d7794e74462fe63e2171c4", + "fields": { + "ligne_5": "RONTHON", + "code_commune_insee": "50167", + "libelle_d_acheminement": "DRAGEY RONTHON", + "code_postal": "50530", + "nom_de_la_commune": "DRAGEY RONTHON", + "coordonnees_gps": [ + 48.7166999564, + -1.48832263825 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48832263825, + 48.7166999564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cfde974ac3474506a5e76c3bc70222da79e66ab", + "fields": { + "code_commune_insee": "50463", + "nom_de_la_commune": "ST DENIS LE GAST", + "code_postal": "50450", + "coordonnees_gps": [ + 48.9438664581, + -1.32723799683 + ], + "libelle_d_acheminement": "ST DENIS LE GAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32723799683, + 48.9438664581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b62fa1f53b43647f1643ffcf0de90df834ad0998", + "fields": { + "code_commune_insee": "50172", + "nom_de_la_commune": "EMONDEVILLE", + "code_postal": "50310", + "coordonnees_gps": [ + 49.4603061877, + -1.33759005071 + ], + "libelle_d_acheminement": "EMONDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33759005071, + 49.4603061877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "067a7c4c87c1d18a112fd8ce9d7d3c4070870b7f", + "fields": { + "code_commune_insee": "50473", + "nom_de_la_commune": "ST GEORGES D ELLE", + "code_postal": "50680", + "coordonnees_gps": [ + 49.1477280514, + -0.978093745627 + ], + "libelle_d_acheminement": "ST GEORGES D ELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.978093745627, + 49.1477280514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1d897c9a7b3dbf4ebd99fb773cf07dc2de83d8d", + "fields": { + "ligne_5": "LA BESLIERE", + "code_commune_insee": "50188", + "libelle_d_acheminement": "FOLLIGNY", + "code_postal": "50320", + "nom_de_la_commune": "FOLLIGNY", + "coordonnees_gps": [ + 48.8202336889, + -1.41781019903 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41781019903, + 48.8202336889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4befbbacfa5b7a1aabd450a58a401754416547f", + "fields": { + "code_commune_insee": "50474", + "nom_de_la_commune": "ST GEORGES DE ROUELLEY", + "code_postal": "50720", + "coordonnees_gps": [ + 48.614962159, + -0.775364778574 + ], + "libelle_d_acheminement": "ST GEORGES DE ROUELLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.775364778574, + 48.614962159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f5a869918b0137480abc77a313566653fb9d91f", + "fields": { + "ligne_5": "LE MESNIL DREY", + "code_commune_insee": "50188", + "libelle_d_acheminement": "FOLLIGNY", + "code_postal": "50320", + "nom_de_la_commune": "FOLLIGNY", + "coordonnees_gps": [ + 48.8202336889, + -1.41781019903 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41781019903, + 48.8202336889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ca472d9157f36cb90a65ad9430b54145c661ef", + "fields": { + "code_commune_insee": "50476", + "nom_de_la_commune": "ST GERMAIN D ELLE", + "code_postal": "50810", + "coordonnees_gps": [ + 49.1197755158, + -0.920856737433 + ], + "libelle_d_acheminement": "ST GERMAIN D ELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.920856737433, + 49.1197755158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4acc0905f612a3387e5423ccbfbf5bf1ca516ca", + "fields": { + "ligne_5": "LE MESNIL BONANT", + "code_commune_insee": "50197", + "libelle_d_acheminement": "GAVRAY SUR SIENNE", + "code_postal": "50450", + "nom_de_la_commune": "GAVRAY SUR SIENNE", + "coordonnees_gps": [ + 48.901866947, + -1.32927187447 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32927187447, + 48.901866947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4390c94a5ee834b21b0abcb23062ffa22903383c", + "fields": { + "code_commune_insee": "50478", + "nom_de_la_commune": "ST GERMAIN DE TOURNEBUT", + "code_postal": "50700", + "coordonnees_gps": [ + 49.527450489, + -1.40278389673 + ], + "libelle_d_acheminement": "ST GERMAIN DE TOURNEBUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40278389673, + 49.527450489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e025138cc143a19cdc4affb1cd3ff3d6e3dfd2be", + "fields": { + "code_commune_insee": "50216", + "nom_de_la_commune": "GRAIGNES MESNIL ANGOT", + "code_postal": "50620", + "coordonnees_gps": [ + 49.2380106991, + -1.20015194304 + ], + "libelle_d_acheminement": "GRAIGNES MESNIL ANGOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20015194304, + 49.2380106991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e61e420f3a8b955647422dac9790805a6b19527e", + "fields": { + "ligne_5": "ST MARTIN DE LANDELLES", + "code_commune_insee": "50484", + "libelle_d_acheminement": "ST HILAIRE DU HARCOUET", + "code_postal": "50730", + "nom_de_la_commune": "ST HILAIRE DU HARCOUET", + "coordonnees_gps": [ + 48.5720535322, + -1.08283897698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08283897698, + 48.5720535322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87444e170962f204394bfeff2d68566cd55a85a8", + "fields": { + "ligne_5": "LE MESNIL ANGOT", + "code_commune_insee": "50216", + "libelle_d_acheminement": "GRAIGNES MESNIL ANGOT", + "code_postal": "50620", + "nom_de_la_commune": "GRAIGNES MESNIL ANGOT", + "coordonnees_gps": [ + 49.2380106991, + -1.20015194304 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20015194304, + 49.2380106991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1489ad496a3d86f499f2109f6866697acad3dc6b", + "fields": { + "ligne_5": "ARGOUGES", + "code_commune_insee": "50487", + "libelle_d_acheminement": "ST JAMES", + "code_postal": "50240", + "nom_de_la_commune": "ST JAMES", + "coordonnees_gps": [ + 48.5257483373, + -1.32634914406 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32634914406, + 48.5257483373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e744ad944cd260f5b0793b71972f408b402b7366", + "fields": { + "ligne_5": "MONTANEL", + "code_commune_insee": "50487", + "libelle_d_acheminement": "ST JAMES", + "code_postal": "50240", + "nom_de_la_commune": "ST JAMES", + "coordonnees_gps": [ + 48.5257483373, + -1.32634914406 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32634914406, + 48.5257483373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb2e5c1b641d50bcfbf1ce0b524a36ff6d8f19e8", + "fields": { + "ligne_5": "ST JEAN DES BAISANTS", + "code_commune_insee": "50492", + "libelle_d_acheminement": "ST JEAN D ELLE", + "code_postal": "50810", + "nom_de_la_commune": "ST JEAN D ELLE", + "coordonnees_gps": [ + 49.0936069017, + -0.991213654539 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.991213654539, + 49.0936069017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fabcd6b7331975208961545840ed6fcbd3baff9", + "fields": { + "code_commune_insee": "50499", + "nom_de_la_commune": "ST LAURENT DE CUVES", + "code_postal": "50670", + "coordonnees_gps": [ + 48.7494442333, + -1.11520234761 + ], + "libelle_d_acheminement": "ST LAURENT DE CUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11520234761, + 48.7494442333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9caa4b472ebb692a7af1b1e25016473d1e9dd94c", + "fields": { + "code_commune_insee": "50506", + "nom_de_la_commune": "ST MALO DE LA LANDE", + "code_postal": "50200", + "coordonnees_gps": [ + 49.0630539457, + -1.54261997084 + ], + "libelle_d_acheminement": "ST MALO DE LA LANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54261997084, + 49.0630539457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ca12fda2113c59840ca57f1d26cea28aec69e49", + "fields": { + "code_commune_insee": "50510", + "nom_de_la_commune": "ST MARTIN D AUBIGNY", + "code_postal": "50190", + "coordonnees_gps": [ + 49.1686541161, + -1.35248949773 + ], + "libelle_d_acheminement": "ST MARTIN D AUBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35248949773, + 49.1686541161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7704c3974a32f80fc0f42012dce82c184dc876ce", + "fields": { + "ligne_5": "RAVENOVILLE", + "code_commune_insee": "50523", + "libelle_d_acheminement": "STE MERE EGLISE", + "code_postal": "50480", + "nom_de_la_commune": "STE MERE EGLISE", + "coordonnees_gps": [ + 49.4088606097, + -1.32366056657 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32366056657, + 49.4088606097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d025c00fab3327b6a81e209e4a5cfa4aa581d23", + "fields": { + "code_commune_insee": "50525", + "nom_de_la_commune": "ST MICHEL DE MONTJOIE", + "code_postal": "50670", + "coordonnees_gps": [ + 48.7643844423, + -1.02574787224 + ], + "libelle_d_acheminement": "ST MICHEL DE MONTJOIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02574787224, + 48.7643844423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f3d43bbc164744998f7e720a22128d19c442862", + "fields": { + "code_commune_insee": "50531", + "nom_de_la_commune": "ST OVIN", + "code_postal": "50300", + "coordonnees_gps": [ + 48.6792316921, + -1.24401346918 + ], + "libelle_d_acheminement": "ST OVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24401346918, + 48.6792316921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f53bfa81ab7c7c777c2e26eda921ae1ddbc72550", + "fields": { + "code_commune_insee": "50538", + "nom_de_la_commune": "ST PIERRE DE SEMILLY", + "code_postal": "50810", + "coordonnees_gps": [ + 49.122177193, + -0.997134740618 + ], + "libelle_d_acheminement": "ST PIERRE DE SEMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.997134740618, + 49.122177193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5129f694b27a76303ae564c7ebf0b47bd0c99040", + "fields": { + "code_commune_insee": "50542", + "nom_de_la_commune": "ST POIS", + "code_postal": "50670", + "coordonnees_gps": [ + 48.7476968749, + -1.05750848644 + ], + "libelle_d_acheminement": "ST POIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05750848644, + 48.7476968749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a3834b7aed85adb634ac186facaa84bb9e82604", + "fields": { + "ligne_5": "GOURFALEUR", + "code_commune_insee": "50546", + "libelle_d_acheminement": "BOURGVALLEES", + "code_postal": "50750", + "nom_de_la_commune": "BOURGVALLEES", + "coordonnees_gps": [ + 49.0498085612, + -1.1310126677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1310126677, + 49.0498085612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "394b70c3476e755ca04423e33d6b6a1bac44401d", + "fields": { + "ligne_5": "ST SAMSON DE BONFOSSE", + "code_commune_insee": "50546", + "libelle_d_acheminement": "BOURGVALLEES", + "code_postal": "50750", + "nom_de_la_commune": "BOURGVALLEES", + "coordonnees_gps": [ + 49.0498085612, + -1.1310126677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1310126677, + 49.0498085612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8daeb556c94d38343a4c6206f5937d7175a36a1", + "fields": { + "code_commune_insee": "50549", + "nom_de_la_commune": "ST SAUVEUR LA POMMERAYE", + "code_postal": "50510", + "coordonnees_gps": [ + 48.8400547201, + -1.43412628403 + ], + "libelle_d_acheminement": "ST SAUVEUR LA POMMERAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43412628403, + 48.8400547201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2007cdd49390d160cdfe83ebd4d6ca1506ed315d", + "fields": { + "ligne_5": "ST MICHEL DE LA PIERRE", + "code_commune_insee": "50550", + "libelle_d_acheminement": "ST SAUVEUR VILLAGES", + "code_postal": "50490", + "nom_de_la_commune": "ST SAUVEUR VILLAGES", + "coordonnees_gps": [ + 49.1238164508, + -1.40639536649 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40639536649, + 49.1238164508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0c227350278f3624a35f3a9f50086cded693153", + "fields": { + "ligne_5": "CHAMPCEY", + "code_commune_insee": "50565", + "libelle_d_acheminement": "SARTILLY BAIE BOCAGE", + "code_postal": "50530", + "nom_de_la_commune": "SARTILLY BAIE BOCAGE", + "coordonnees_gps": [ + 48.7540217735, + -1.46351733597 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46351733597, + 48.7540217735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ccdd76b85f27c076f9cf1b65fea05ce76014a2b", + "fields": { + "ligne_5": "MONTVIRON", + "code_commune_insee": "50565", + "libelle_d_acheminement": "SARTILLY BAIE BOCAGE", + "code_postal": "50530", + "nom_de_la_commune": "SARTILLY BAIE BOCAGE", + "coordonnees_gps": [ + 48.7540217735, + -1.46351733597 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46351733597, + 48.7540217735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2debe196c41e8cc8e754e58164d4dc6fba97bd4b", + "fields": { + "code_commune_insee": "50567", + "nom_de_la_commune": "SAUSSEMESNIL", + "code_postal": "50700", + "coordonnees_gps": [ + 49.5728877751, + -1.4894487737 + ], + "libelle_d_acheminement": "SAUSSEMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4894487737, + 49.5728877751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e949f5c81921b0b362b2f4358b650587e351c7f", + "fields": { + "code_commune_insee": "50569", + "nom_de_la_commune": "SAVIGNY", + "code_postal": "50210", + "coordonnees_gps": [ + 49.0591765811, + -1.32787039859 + ], + "libelle_d_acheminement": "SAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32787039859, + 49.0591765811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1a99946e682fe35028ce837302cd95b713ac643", + "fields": { + "code_commune_insee": "50570", + "nom_de_la_commune": "SAVIGNY LE VIEUX", + "code_postal": "50640", + "coordonnees_gps": [ + 48.5195591779, + -1.02472837695 + ], + "libelle_d_acheminement": "SAVIGNY LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02472837695, + 48.5195591779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "371901189d744bfe057712081c9c412a3fbc25fc", + "fields": { + "code_commune_insee": "50580", + "nom_de_la_commune": "SOTTEVILLE", + "code_postal": "50340", + "coordonnees_gps": [ + 49.5393529841, + -1.75245754632 + ], + "libelle_d_acheminement": "SOTTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75245754632, + 49.5393529841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c51c096a5509726855da6c8b50bb5ac3cd05c3b8", + "fields": { + "code_commune_insee": "50587", + "nom_de_la_commune": "TAILLEPIED", + "code_postal": "50390", + "coordonnees_gps": [ + 49.3622618411, + -1.58574528499 + ], + "libelle_d_acheminement": "TAILLEPIED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58574528499, + 49.3622618411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a93a92c3386135451dbe636bcf650329167c977", + "fields": { + "ligne_5": "NOIRPALU", + "code_commune_insee": "50590", + "libelle_d_acheminement": "LE TANU", + "code_postal": "50320", + "nom_de_la_commune": "LE TANU", + "coordonnees_gps": [ + 48.8042090311, + -1.33539265426 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33539265426, + 48.8042090311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "420f23e4e466953fa6c9edeff0ff7e15553841dc", + "fields": { + "code_commune_insee": "50591", + "nom_de_la_commune": "LE TEILLEUL", + "code_postal": "50640", + "coordonnees_gps": [ + 48.5412543067, + -0.878410989848 + ], + "libelle_d_acheminement": "LE TEILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.878410989848, + 48.5412543067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7f3ee05137671e760ff1bd1904faccfe60fd05a", + "fields": { + "ligne_5": "STE MARIE DU BOIS", + "code_commune_insee": "50591", + "libelle_d_acheminement": "LE TEILLEUL", + "code_postal": "50640", + "nom_de_la_commune": "LE TEILLEUL", + "coordonnees_gps": [ + 48.5412543067, + -0.878410989848 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.878410989848, + 48.5412543067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54752abf57733fb88737ede56f8adf700485e413", + "fields": { + "code_commune_insee": "50596", + "nom_de_la_commune": "THEVILLE", + "code_postal": "50330", + "coordonnees_gps": [ + 49.6482237983, + -1.41776532413 + ], + "libelle_d_acheminement": "THEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41776532413, + 49.6482237983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb33339b56f821ca31077ab350d50982dbd5611d", + "fields": { + "ligne_5": "LA GOHANNIERE", + "code_commune_insee": "50597", + "libelle_d_acheminement": "TIREPIED SUR SEE", + "code_postal": "50300", + "nom_de_la_commune": "TIREPIED SUR SEE", + "coordonnees_gps": [ + 48.7239372262, + -1.2735313312 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2735313312, + 48.7239372262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f556e7108e800b580204fb9dcb87dba11a52916f", + "fields": { + "ligne_5": "GUILBERVILLE", + "code_commune_insee": "50601", + "libelle_d_acheminement": "TORIGNY LES VILLES", + "code_postal": "50160", + "nom_de_la_commune": "TORIGNY LES VILLES", + "coordonnees_gps": [ + 49.0319879145, + -0.982814708617 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.982814708617, + 49.0319879145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1e4da3a010eb942860db26c6172762ffc7b8199", + "fields": { + "code_commune_insee": "50603", + "nom_de_la_commune": "TOURVILLE SUR SIENNE", + "code_postal": "50200", + "coordonnees_gps": [ + 49.0508158439, + -1.52656595616 + ], + "libelle_d_acheminement": "TOURVILLE SUR SIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52656595616, + 49.0508158439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7709623dc66614ac1aca23c7d6301869a60052f", + "fields": { + "code_commune_insee": "50609", + "nom_de_la_commune": "TURQUEVILLE", + "code_postal": "50480", + "coordonnees_gps": [ + 49.4052196116, + -1.26997975955 + ], + "libelle_d_acheminement": "TURQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26997975955, + 49.4052196116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca6b1ffa17dae8e8aff6a0c9b7fb2070f4baaeda", + "fields": { + "code_commune_insee": "50610", + "nom_de_la_commune": "URVILLE", + "code_postal": "50700", + "coordonnees_gps": [ + 49.4492565147, + -1.44567160127 + ], + "libelle_d_acheminement": "URVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44567160127, + 49.4492565147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7362b7ab3f0980047a62f1b9c5c9c13c979d4cf0", + "fields": { + "code_commune_insee": "50615", + "nom_de_la_commune": "VALOGNES", + "code_postal": "50700", + "coordonnees_gps": [ + 49.5128276096, + -1.47383499973 + ], + "libelle_d_acheminement": "VALOGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47383499973, + 49.5128276096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a150b6b2b5e68edc1249c04eb85391b737864a1f", + "fields": { + "code_commune_insee": "50618", + "nom_de_la_commune": "VAROUVILLE", + "code_postal": "50330", + "coordonnees_gps": [ + 49.6713044012, + -1.37126711857 + ], + "libelle_d_acheminement": "VAROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37126711857, + 49.6713044012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2651b2bfdb3323f46d7c126dd627fc42cd8b565d", + "fields": { + "code_commune_insee": "50619", + "nom_de_la_commune": "LE VAST", + "code_postal": "50630", + "coordonnees_gps": [ + 49.6181289951, + -1.35780462163 + ], + "libelle_d_acheminement": "LE VAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35780462163, + 49.6181289951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e68ec890fbc6b3b4e1e5043edcbc5eb46529382b", + "fields": { + "code_commune_insee": "50633", + "nom_de_la_commune": "LE VICEL", + "code_postal": "50760", + "coordonnees_gps": [ + 49.6325667145, + -1.32055469764 + ], + "libelle_d_acheminement": "LE VICEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32055469764, + 49.6325667145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b880b2fa13f2bbf3f9ca87bdd1c5221730ffcfd9", + "fields": { + "code_commune_insee": "50647", + "nom_de_la_commune": "YQUELON", + "code_postal": "50400", + "coordonnees_gps": [ + 48.8444141467, + -1.55122744214 + ], + "libelle_d_acheminement": "YQUELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55122744214, + 48.8444141467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc4575f99ff087384dff1bc5b7ebe37dcf6195ef", + "fields": { + "code_commune_insee": "51001", + "nom_de_la_commune": "ABLANCOURT", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8103417636, + 4.53084843791 + ], + "libelle_d_acheminement": "ABLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53084843791, + 48.8103417636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48d34a6979511ed477551409fa33f965efac1c80", + "fields": { + "code_commune_insee": "51010", + "nom_de_la_commune": "ANGLUZELLES ET COURCELLES", + "code_postal": "51230", + "coordonnees_gps": [ + 48.6663421752, + 3.90589421225 + ], + "libelle_d_acheminement": "ANGLUZELLES ET COURCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90589421225, + 48.6663421752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbc621a0cacff06c974ed07088b143a718a4e6c4", + "fields": { + "code_commune_insee": "51013", + "nom_de_la_commune": "AOUGNY", + "code_postal": "51170", + "coordonnees_gps": [ + 49.1874469545, + 3.72490243283 + ], + "libelle_d_acheminement": "AOUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72490243283, + 49.1874469545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e8b255a088f878885acc9de6491c329d7e4daae", + "fields": { + "code_commune_insee": "51014", + "nom_de_la_commune": "ARCIS LE PONSART", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2246570472, + 3.68877941886 + ], + "libelle_d_acheminement": "ARCIS LE PONSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68877941886, + 49.2246570472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "208318db89b437c3eba09be6568a881870e86f89", + "fields": { + "code_commune_insee": "51018", + "nom_de_la_commune": "ATHIS", + "code_postal": "51150", + "coordonnees_gps": [ + 49.0072417062, + 4.12566505905 + ], + "libelle_d_acheminement": "ATHIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12566505905, + 49.0072417062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44f6005c0cc112f95c1e791bbfeb1eb4f6c9edbf", + "fields": { + "code_commune_insee": "51022", + "nom_de_la_commune": "AULNAY L AITRE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8259358805, + 4.56822017278 + ], + "libelle_d_acheminement": "AULNAY L AITRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56822017278, + 48.8259358805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e02a499e51602d5ff56d1bd4993c987065b0626", + "fields": { + "code_commune_insee": "51023", + "nom_de_la_commune": "AULNAY SUR MARNE", + "code_postal": "51150", + "coordonnees_gps": [ + 48.9973425988, + 4.20731510255 + ], + "libelle_d_acheminement": "AULNAY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20731510255, + 48.9973425988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b57dfb02be323724b1412e298d5ed4bcb48d5e2d", + "fields": { + "code_commune_insee": "51033", + "nom_de_la_commune": "LE BAIZIL", + "code_postal": "51270", + "coordonnees_gps": [ + 48.9750758673, + 3.79600981845 + ], + "libelle_d_acheminement": "LE BAIZIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79600981845, + 48.9750758673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0121a5c8acfe45d03c39f72bed255885d58ac548", + "fields": { + "code_commune_insee": "51037", + "nom_de_la_commune": "BASLIEUX LES FISMES", + "code_postal": "51170", + "coordonnees_gps": [ + 49.3247340929, + 3.7142359608 + ], + "libelle_d_acheminement": "BASLIEUX LES FISMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7142359608, + 49.3247340929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b0b2c150c6ca5259fc9c840c40561f1b60ff8a0", + "fields": { + "code_commune_insee": "51038", + "nom_de_la_commune": "BASLIEUX SOUS CHATILLON", + "code_postal": "51700", + "coordonnees_gps": [ + 49.1218320502, + 3.79516191833 + ], + "libelle_d_acheminement": "BASLIEUX SOUS CHATILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79516191833, + 49.1218320502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "029bed2691567b32fa5a82f252095e338cdaac14", + "fields": { + "code_commune_insee": "51047", + "nom_de_la_commune": "BELVAL EN ARGONNE", + "code_postal": "51330", + "coordonnees_gps": [ + 48.9443279764, + 4.97862490945 + ], + "libelle_d_acheminement": "BELVAL EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97862490945, + 48.9443279764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "507999e44db5c63e50db8cbfb59b67ba5ea2497e", + "fields": { + "code_commune_insee": "51048", + "nom_de_la_commune": "BELVAL SOUS CHATILLON", + "code_postal": "51480", + "coordonnees_gps": [ + 49.125456085, + 3.85394695704 + ], + "libelle_d_acheminement": "BELVAL SOUS CHATILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85394695704, + 49.125456085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c097d148cc3ed829af35ebb6dd5abcf2ec2778b", + "fields": { + "code_commune_insee": "51050", + "nom_de_la_commune": "BERGERES SOUS MONTMIRAIL", + "code_postal": "51210", + "coordonnees_gps": [ + 48.8453830392, + 3.59711725011 + ], + "libelle_d_acheminement": "BERGERES SOUS MONTMIRAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59711725011, + 48.8453830392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35482bf2011d802021bac187ee18732564202c64", + "fields": { + "code_commune_insee": "51053", + "nom_de_la_commune": "BERZIEUX", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1603688335, + 4.80180873405 + ], + "libelle_d_acheminement": "BERZIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80180873405, + 49.1603688335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0cfb7bd2b44a2fabf0c9581f3ef75c8ef2579e2", + "fields": { + "code_commune_insee": "51054", + "nom_de_la_commune": "BETHENIVILLE", + "code_postal": "51490", + "coordonnees_gps": [ + 49.2925253096, + 4.36369457633 + ], + "libelle_d_acheminement": "BETHENIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36369457633, + 49.2925253096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a88f7d81d42919279f1f57d94590e1f9242e13f", + "fields": { + "code_commune_insee": "51058", + "nom_de_la_commune": "BEZANNES", + "code_postal": "51430", + "coordonnees_gps": [ + 49.2198739552, + 3.99051364265 + ], + "libelle_d_acheminement": "BEZANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99051364265, + 49.2198739552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b93342f868fe52ddf180fc68bd4581f6c6542712", + "fields": { + "code_commune_insee": "51061", + "nom_de_la_commune": "BILLY LE GRAND", + "code_postal": "51400", + "coordonnees_gps": [ + 49.1079745411, + 4.23300588875 + ], + "libelle_d_acheminement": "BILLY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23300588875, + 49.1079745411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a99c9e4d65274c8a60e910c09ae3187edfc166e", + "fields": { + "code_commune_insee": "51065", + "nom_de_la_commune": "BLACY", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7216383378, + 4.5179461795 + ], + "libelle_d_acheminement": "BLACY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5179461795, + 48.7216383378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc07b11ef2d42af8384d791ef23e96c4330c73ad", + "fields": { + "code_commune_insee": "51066", + "nom_de_la_commune": "BLAISE SOUS ARZILLIERES", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6712256274, + 4.58510919023 + ], + "libelle_d_acheminement": "BLAISE SOUS ARZILLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58510919023, + 48.6712256274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5be8c027afd8e70d30abe0d17848c53e1e356b3e", + "fields": { + "code_commune_insee": "51085", + "nom_de_la_commune": "LE BREUIL", + "code_postal": "51210", + "coordonnees_gps": [ + 48.9828254266, + 3.65112059442 + ], + "libelle_d_acheminement": "LE BREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65112059442, + 48.9828254266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "488810c8dc368ed9a23a2e9d17889acb45f61ccd", + "fields": { + "code_commune_insee": "51093", + "nom_de_la_commune": "BRUGNY VAUDANCOURT", + "code_postal": "51530", + "coordonnees_gps": [ + 48.9832921495, + 3.85964192502 + ], + "libelle_d_acheminement": "BRUGNY VAUDANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85964192502, + 48.9832921495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "958215cb6dc53e805f5c0aa77a438fa964aa8eb4", + "fields": { + "code_commune_insee": "51098", + "nom_de_la_commune": "BUSSY LE REPOS", + "code_postal": "51330", + "coordonnees_gps": [ + 48.9030368503, + 4.74003720995 + ], + "libelle_d_acheminement": "BUSSY LE REPOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74003720995, + 48.9030368503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d18ec871d4622c0a32a8f844408426fef6ade529", + "fields": { + "code_commune_insee": "51108", + "nom_de_la_commune": "CHALONS EN CHAMPAGNE", + "code_postal": "51000", + "coordonnees_gps": [ + 48.9640892125, + 4.37883539725 + ], + "libelle_d_acheminement": "CHALONS EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37883539725, + 48.9640892125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f883c521278734aa2d6409ef275390181670545d", + "fields": { + "code_commune_insee": "51109", + "nom_de_la_commune": "CHALONS SUR VESLE", + "code_postal": "51140", + "coordonnees_gps": [ + 49.2853621034, + 3.91987643283 + ], + "libelle_d_acheminement": "CHALONS SUR VESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91987643283, + 49.2853621034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa161c48dd516552a1e036171b970f74d184ac22", + "fields": { + "code_commune_insee": "51111", + "nom_de_la_commune": "CHAMBRECY", + "code_postal": "51170", + "coordonnees_gps": [ + 49.1821738115, + 3.82605710701 + ], + "libelle_d_acheminement": "CHAMBRECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82605710701, + 49.1821738115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9829079b087b9a75a7b242373b1d8070f788ed7", + "fields": { + "code_commune_insee": "51112", + "nom_de_la_commune": "CHAMERY", + "code_postal": "51500", + "coordonnees_gps": [ + 49.1704993272, + 3.95695378996 + ], + "libelle_d_acheminement": "CHAMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95695378996, + 49.1704993272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cb6567b3f4a0d88e345b01ed9db82b5c52ed3c1", + "fields": { + "code_commune_insee": "51115", + "nom_de_la_commune": "CHAMPFLEURY", + "code_postal": "51500", + "coordonnees_gps": [ + 49.195865059, + 4.01839707256 + ], + "libelle_d_acheminement": "CHAMPFLEURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01839707256, + 49.195865059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "506a02cc7929e18e28a7ba88210be320e45503ed", + "fields": { + "code_commune_insee": "51122", + "nom_de_la_commune": "CHANGY", + "code_postal": "51300", + "coordonnees_gps": [ + 48.77967619, + 4.67870882012 + ], + "libelle_d_acheminement": "CHANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67870882012, + 48.77967619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f84dd20915e6aeb308ab5d5f86e3a0c02f747973", + "fields": { + "code_commune_insee": "51125", + "nom_de_la_commune": "CHAPELAINE", + "code_postal": "51290", + "coordonnees_gps": [ + 48.5795561262, + 4.48064081068 + ], + "libelle_d_acheminement": "CHAPELAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48064081068, + 48.5795561262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11613c5a9ffe28474267877b9d0f5b704e6bb942", + "fields": { + "code_commune_insee": "51135", + "nom_de_la_commune": "CHATILLON SUR BROUE", + "code_postal": "51290", + "coordonnees_gps": [ + 48.5467940189, + 4.70070241315 + ], + "libelle_d_acheminement": "CHATILLON SUR BROUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70070241315, + 48.5467940189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f088dab7eea21e0650db463833b0284ff281fb5", + "fields": { + "code_commune_insee": "51144", + "nom_de_la_commune": "CHEMINON", + "code_postal": "51250", + "coordonnees_gps": [ + 48.7435589691, + 4.92012319388 + ], + "libelle_d_acheminement": "CHEMINON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92012319388, + 48.7435589691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b7f8f4ea98e483334f8fabb397c369d93f35e9a", + "fields": { + "code_commune_insee": "51150", + "nom_de_la_commune": "CHERVILLE", + "code_postal": "51150", + "coordonnees_gps": [ + 49.0033010144, + 4.15123028739 + ], + "libelle_d_acheminement": "CHERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15123028739, + 49.0033010144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aa2b3a67e1873165f1cb8edaf91fca31aa9d5b0", + "fields": { + "code_commune_insee": "51153", + "nom_de_la_commune": "CHOUILLY", + "code_postal": "51530", + "coordonnees_gps": [ + 49.0176099992, + 4.00414015936 + ], + "libelle_d_acheminement": "CHOUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00414015936, + 49.0176099992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bed7899e062ae4aade9b81176c3f1acc43d4212b", + "fields": { + "ligne_5": "AULNIZEUX", + "code_commune_insee": "51158", + "libelle_d_acheminement": "VAL DES MARAIS", + "code_postal": "51130", + "nom_de_la_commune": "VAL DES MARAIS", + "coordonnees_gps": [ + 48.8273139118, + 3.96840907593 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96840907593, + 48.8273139118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7437ad1e4ab6734f2bd6ea5cd6105450ca10038f", + "fields": { + "code_commune_insee": "51161", + "nom_de_la_commune": "CONDE SUR MARNE", + "code_postal": "51150", + "coordonnees_gps": [ + 49.0465594364, + 4.18039266936 + ], + "libelle_d_acheminement": "CONDE SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18039266936, + 49.0465594364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5102cf92cc83ab43aee9744c45fff92040122b11", + "fields": { + "code_commune_insee": "51162", + "nom_de_la_commune": "CONFLANS SUR SEINE", + "code_postal": "51260", + "coordonnees_gps": [ + 48.5481786951, + 3.68299893221 + ], + "libelle_d_acheminement": "CONFLANS SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68299893221, + 48.5481786951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "650b7e00da04a0ca52d688d9d854fe2e171d6656", + "fields": { + "code_commune_insee": "51163", + "nom_de_la_commune": "CONGY", + "code_postal": "51270", + "coordonnees_gps": [ + 48.8704889111, + 3.81828668315 + ], + "libelle_d_acheminement": "CONGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81828668315, + 48.8704889111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e95c16b38c8af0eb49188fa1a3c3bb819b2b95b4", + "fields": { + "code_commune_insee": "51167", + "nom_de_la_commune": "COOLE", + "code_postal": "51320", + "coordonnees_gps": [ + 48.7392759511, + 4.39164451957 + ], + "libelle_d_acheminement": "COOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39164451957, + 48.7392759511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f96eb70b9ec4b544f687240b687a256b7d5781eb", + "fields": { + "code_commune_insee": "51168", + "nom_de_la_commune": "COOLUS", + "code_postal": "51510", + "coordonnees_gps": [ + 48.9125767711, + 4.32081484845 + ], + "libelle_d_acheminement": "COOLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32081484845, + 48.9125767711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d52221b3933c2c5cc626bbdddb9dee542a96ff4", + "fields": { + "code_commune_insee": "51171", + "nom_de_la_commune": "CORMICY", + "code_postal": "51220", + "coordonnees_gps": [ + 49.3768003286, + 3.90513204967 + ], + "libelle_d_acheminement": "CORMICY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90513204967, + 49.3768003286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cd95c9765b06c2eb324990dd1f7da605c0a1db6", + "fields": { + "code_commune_insee": "51173", + "nom_de_la_commune": "CORMOYEUX", + "code_postal": "51480", + "coordonnees_gps": [ + 49.1091268833, + 3.9125350258 + ], + "libelle_d_acheminement": "CORMOYEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9125350258, + 49.1091268833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "accff8cb55d9f998c29d8770c4ddbfba805f0584", + "fields": { + "code_commune_insee": "51177", + "nom_de_la_commune": "COULOMMES LA MONTAGNE", + "code_postal": "51390", + "coordonnees_gps": [ + 49.2264862111, + 3.91132904874 + ], + "libelle_d_acheminement": "COULOMMES LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91132904874, + 49.2264862111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87b61a691f47169114b5790fc775e95922e956c5", + "fields": { + "code_commune_insee": "51179", + "nom_de_la_commune": "COUPEVILLE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.9039008235, + 4.6230291647 + ], + "libelle_d_acheminement": "COUPEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6230291647, + 48.9039008235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02a4f651b5e9fe2e44d93a1bcdd475befa97db0a", + "fields": { + "code_commune_insee": "51182", + "nom_de_la_commune": "COURCEMAIN", + "code_postal": "51260", + "coordonnees_gps": [ + 48.6183477857, + 3.93310900792 + ], + "libelle_d_acheminement": "COURCEMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93310900792, + 48.6183477857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "087b7426ef5eb94b3bfbe2dedf8ba234d35a932b", + "fields": { + "code_commune_insee": "51183", + "nom_de_la_commune": "COURCY", + "code_postal": "51220", + "coordonnees_gps": [ + 49.3196081983, + 4.0061261454 + ], + "libelle_d_acheminement": "COURCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0061261454, + 49.3196081983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0bd184ad52395bde10796e3e5fa8f8a6a74f0e5", + "fields": { + "code_commune_insee": "51187", + "nom_de_la_commune": "COURLANDON", + "code_postal": "51170", + "coordonnees_gps": [ + 49.3163787015, + 3.73552622692 + ], + "libelle_d_acheminement": "COURLANDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73552622692, + 49.3163787015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff655988b8e2f9ee9dc11053dbca880b1c127cb0", + "fields": { + "code_commune_insee": "51195", + "nom_de_la_commune": "COUVROT", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7661940133, + 4.57813670134 + ], + "libelle_d_acheminement": "COUVROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57813670134, + 48.7661940133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aad14ec93a3538a88e0cdac6afcea6d17ff1691", + "fields": { + "code_commune_insee": "51200", + "nom_de_la_commune": "CUIS", + "code_postal": "51530", + "coordonnees_gps": [ + 48.9995241684, + 3.9667438583 + ], + "libelle_d_acheminement": "CUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9667438583, + 48.9995241684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "297dfcfe0c80cb6fb9a467d91e6ec27b73e4184c", + "fields": { + "code_commune_insee": "51204", + "nom_de_la_commune": "DAMERY", + "code_postal": "51480", + "coordonnees_gps": [ + 49.080484604, + 3.87786708147 + ], + "libelle_d_acheminement": "DAMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87786708147, + 49.080484604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e54b277ae6f875a40356e8affe140dc9e90b599", + "fields": { + "code_commune_insee": "51214", + "nom_de_la_commune": "DOMMARTIN VARIMONT", + "code_postal": "51330", + "coordonnees_gps": [ + 48.9782968112, + 4.77366726266 + ], + "libelle_d_acheminement": "DOMMARTIN VARIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77366726266, + 48.9782968112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e67bb8985349abcce16115f4c4a0109af850394c", + "fields": { + "code_commune_insee": "51219", + "nom_de_la_commune": "DROSNAY", + "code_postal": "51290", + "coordonnees_gps": [ + 48.5730970733, + 4.61843085451 + ], + "libelle_d_acheminement": "DROSNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61843085451, + 48.5730970733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcbe01174c6a09f4ccab5d4a7c0f1b6c9e08f62b", + "fields": { + "code_commune_insee": "51223", + "nom_de_la_commune": "ECOLLEMONT", + "code_postal": "51290", + "coordonnees_gps": [ + 48.6153480087, + 4.73962649282 + ], + "libelle_d_acheminement": "ECOLLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73962649282, + 48.6153480087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e08af0fbebbe3a8b3859c3cf3f7cd97e08d3ee2", + "fields": { + "code_commune_insee": "51228", + "nom_de_la_commune": "ELISE DAUCOURT", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0425311549, + 4.86078672791 + ], + "libelle_d_acheminement": "ELISE DAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86078672791, + 49.0425311549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da68ec5860a49e36f3a2fd18487bb09405ace268", + "fields": { + "code_commune_insee": "51235", + "nom_de_la_commune": "LES ESSARTS LES SEZANNE", + "code_postal": "51120", + "coordonnees_gps": [ + 48.7648493747, + 3.63896907299 + ], + "libelle_d_acheminement": "LES ESSARTS LES SEZANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63896907299, + 48.7648493747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c913a4f28aa66a14db8a31b0cbb364fad50d4ccf", + "fields": { + "code_commune_insee": "51240", + "nom_de_la_commune": "ETREPY", + "code_postal": "51340", + "coordonnees_gps": [ + 48.7627041855, + 4.80935325993 + ], + "libelle_d_acheminement": "ETREPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80935325993, + 48.7627041855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6661188c4b9b4418b6763ed798626b1d428b0182", + "fields": { + "code_commune_insee": "51243", + "nom_de_la_commune": "FAUX FRESNAY", + "code_postal": "51230", + "coordonnees_gps": [ + 48.6524940366, + 3.9495151761 + ], + "libelle_d_acheminement": "FAUX FRESNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9495151761, + 48.6524940366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8c5e7e83496edf02ee2dc80a65dcc370b830497", + "fields": { + "code_commune_insee": "51248", + "nom_de_la_commune": "FERE CHAMPENOISE", + "code_postal": "51230", + "coordonnees_gps": [ + 48.7706781866, + 4.01743444039 + ], + "libelle_d_acheminement": "FERE CHAMPENOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01743444039, + 48.7706781866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b2a2a7ad27e11b5b52e20b5636ab6de7d266a35", + "fields": { + "code_commune_insee": "51249", + "nom_de_la_commune": "FESTIGNY", + "code_postal": "51700", + "coordonnees_gps": [ + 49.0282923032, + 3.76729652703 + ], + "libelle_d_acheminement": "FESTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76729652703, + 49.0282923032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1193dfa552850668f621390078c1d05a29bea8f8", + "fields": { + "code_commune_insee": "51250", + "nom_de_la_commune": "FISMES", + "code_postal": "51170", + "coordonnees_gps": [ + 49.3059837243, + 3.6791731942 + ], + "libelle_d_acheminement": "FISMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6791731942, + 49.3059837243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1211e6265b60f5fe385353c58180b262d7cc11de", + "fields": { + "code_commune_insee": "51265", + "nom_de_la_commune": "GAYE", + "code_postal": "51120", + "coordonnees_gps": [ + 48.6801754701, + 3.8063084627 + ], + "libelle_d_acheminement": "GAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8063084627, + 48.6801754701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ec976b5beb0440a425d6164ea62af53051934a7", + "fields": { + "code_commune_insee": "51269", + "nom_de_la_commune": "GIFFAUMONT CHAMPAUBERT", + "code_postal": "51290", + "coordonnees_gps": [ + 48.5598653758, + 4.74815226277 + ], + "libelle_d_acheminement": "GIFFAUMONT CHAMPAUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74815226277, + 48.5598653758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0aba94cada167106709aa47db373549fd639575", + "fields": { + "code_commune_insee": "51270", + "nom_de_la_commune": "GIGNY BUSSY", + "code_postal": "51290", + "coordonnees_gps": [ + 48.6098773154, + 4.58918617422 + ], + "libelle_d_acheminement": "GIGNY BUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58918617422, + 48.6098773154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e47b18b682ba90b7d3361c0099975bbf75cd4662", + "fields": { + "code_commune_insee": "51275", + "nom_de_la_commune": "GLANNES", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7050593969, + 4.50000704361 + ], + "libelle_d_acheminement": "GLANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50000704361, + 48.7050593969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "755b9b3dac868c59db1cd8d58ebd96ff98d6ced5", + "fields": { + "code_commune_insee": "51289", + "nom_de_la_commune": "HEILTZ LE MAURUPT", + "code_postal": "51340", + "coordonnees_gps": [ + 48.7987019209, + 4.82920100589 + ], + "libelle_d_acheminement": "HEILTZ LE MAURUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82920100589, + 48.7987019209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b77bb7fc5b2306a49d67443b9a11bc7a44dee44a", + "fields": { + "code_commune_insee": "51291", + "nom_de_la_commune": "HERMONVILLE", + "code_postal": "51220", + "coordonnees_gps": [ + 49.3318496346, + 3.9143354087 + ], + "libelle_d_acheminement": "HERMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9143354087, + 49.3318496346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e295a2aca000d13427eb08f11242b4719f952a95", + "fields": { + "code_commune_insee": "51298", + "nom_de_la_commune": "IGNY COMBLIZY", + "code_postal": "51700", + "coordonnees_gps": [ + 49.0071354293, + 3.7152217773 + ], + "libelle_d_acheminement": "IGNY COMBLIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7152217773, + 49.0071354293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e604553a6bdfa19827b2df2ebe35b4ac734141ce", + "fields": { + "code_commune_insee": "51306", + "nom_de_la_commune": "JOISELLE", + "code_postal": "51310", + "coordonnees_gps": [ + 48.7649096343, + 3.49706015109 + ], + "libelle_d_acheminement": "JOISELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49706015109, + 48.7649096343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b55a5158c9cbf8fc3aa9121da24869fd82fe926", + "fields": { + "code_commune_insee": "51314", + "nom_de_la_commune": "LAGERY", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2071148254, + 3.732444574 + ], + "libelle_d_acheminement": "LAGERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.732444574, + 49.2071148254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c380486e2c7acb28d9b124d33c686d262671ec7d", + "fields": { + "code_commune_insee": "51336", + "nom_de_la_commune": "MAFFRECOURT", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1144837191, + 4.819903628 + ], + "libelle_d_acheminement": "MAFFRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.819903628, + 49.1144837191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aac4c61d2a15cdcc01b25ab80e6a230d960accaa", + "fields": { + "code_commune_insee": "51343", + "nom_de_la_commune": "MARCILLY SUR SEINE", + "code_postal": "51260", + "coordonnees_gps": [ + 48.5553652866, + 3.71047973437 + ], + "libelle_d_acheminement": "MARCILLY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71047973437, + 48.5553652866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "223db9721ea8b027ace59f8fdc119ab551a53530", + "fields": { + "code_commune_insee": "51346", + "nom_de_la_commune": "MAREUIL LE PORT", + "code_postal": "51700", + "coordonnees_gps": [ + 49.0737672387, + 3.74425898431 + ], + "libelle_d_acheminement": "MAREUIL LE PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74425898431, + 49.0737672387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55e7fde3bd2513324475feb1f41b9c39752f6a53", + "fields": { + "code_commune_insee": "51349", + "nom_de_la_commune": "MARGERIE HANCOURT", + "code_postal": "51290", + "coordonnees_gps": [ + 48.5547827328, + 4.54428346622 + ], + "libelle_d_acheminement": "MARGERIE HANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54428346622, + 48.5547827328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6bd8c20b534b74889a86e8cb10410480a7b4ab1", + "fields": { + "code_commune_insee": "51350", + "nom_de_la_commune": "MARGNY", + "code_postal": "51210", + "coordonnees_gps": [ + 48.9223639685, + 3.65775146218 + ], + "libelle_d_acheminement": "MARGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65775146218, + 48.9223639685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4bed26c3f0ab178b61dbc545bc32a55b1848f8a", + "fields": { + "code_commune_insee": "51352", + "nom_de_la_commune": "MAROLLES", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7205571657, + 4.62167240644 + ], + "libelle_d_acheminement": "MAROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62167240644, + 48.7205571657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adf7583c546caebc90eb50294a7ac38f6291712a", + "fields": { + "code_commune_insee": "51359", + "nom_de_la_commune": "MECRINGES", + "code_postal": "51210", + "coordonnees_gps": [ + 48.8497781133, + 3.52541124754 + ], + "libelle_d_acheminement": "MECRINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52541124754, + 48.8497781133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9544ade3b04ee7be9dfaa7a664550c2e37a9ea4", + "fields": { + "code_commune_insee": "51369", + "nom_de_la_commune": "MOEURS VERDEY", + "code_postal": "51120", + "coordonnees_gps": [ + 48.7365194964, + 3.67236344176 + ], + "libelle_d_acheminement": "MOEURS VERDEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67236344176, + 48.7365194964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ff548ddb5a4d54d168f4681d3f95bfb4f008e81", + "fields": { + "code_commune_insee": "51373", + "nom_de_la_commune": "MONCETZ L ABBAYE", + "code_postal": "51290", + "coordonnees_gps": [ + 48.6489508753, + 4.66277584236 + ], + "libelle_d_acheminement": "MONCETZ L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66277584236, + 48.6489508753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7842c8e5350526e96295e3639dc82b92fad191eb", + "fields": { + "code_commune_insee": "51377", + "nom_de_la_commune": "MONTEPREUX", + "code_postal": "51320", + "coordonnees_gps": [ + 48.7083820761, + 4.12342785794 + ], + "libelle_d_acheminement": "MONTEPREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12342785794, + 48.7083820761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9055138f56440832d8a2ad1d93504657b2f436f2", + "fields": { + "code_commune_insee": "51378", + "nom_de_la_commune": "MONTHELON", + "code_postal": "51530", + "coordonnees_gps": [ + 48.9969852992, + 3.93667064032 + ], + "libelle_d_acheminement": "MONTHELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93667064032, + 48.9969852992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b41993b8cd439488f9ff4c6ea9abca5a318d839", + "fields": { + "code_commune_insee": "51381", + "nom_de_la_commune": "MONTMORT LUCY", + "code_postal": "51270", + "coordonnees_gps": [ + 48.9358384283, + 3.82595963448 + ], + "libelle_d_acheminement": "MONTMORT LUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82595963448, + 48.9358384283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e56d13cc850a7ef26e0c94172d094dcae8757bf2", + "fields": { + "code_commune_insee": "51403", + "nom_de_la_commune": "NOGENT L ABBESSE", + "code_postal": "51420", + "coordonnees_gps": [ + 49.2464581849, + 4.16004589535 + ], + "libelle_d_acheminement": "NOGENT L ABBESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16004589535, + 49.2464581849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96ff5d9dfc47c98142fed72cd35ac9228c29e6fd", + "fields": { + "code_commune_insee": "51404", + "nom_de_la_commune": "NOIRLIEU", + "code_postal": "51330", + "coordonnees_gps": [ + 48.9404596488, + 4.8049133911 + ], + "libelle_d_acheminement": "NOIRLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8049133911, + 48.9404596488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fc85b7c6d0ca500dd200fe70b525a78c45ffa70", + "fields": { + "code_commune_insee": "51426", + "nom_de_la_commune": "PEAS", + "code_postal": "51120", + "coordonnees_gps": [ + 48.7364016208, + 3.77963745983 + ], + "libelle_d_acheminement": "PEAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77963745983, + 48.7364016208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4eb45d523bff6771473e3cc04878c64fd10253f", + "fields": { + "code_commune_insee": "51428", + "nom_de_la_commune": "LES PETITES LOGES", + "code_postal": "51400", + "coordonnees_gps": [ + 49.1318286454, + 4.23205555858 + ], + "libelle_d_acheminement": "LES PETITES LOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23205555858, + 49.1318286454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2695de1e9587d30edf358c6519a269d056719cc", + "fields": { + "code_commune_insee": "51430", + "nom_de_la_commune": "PIERRE MORAINS", + "code_postal": "51130", + "coordonnees_gps": [ + 48.8400739001, + 4.02053698314 + ], + "libelle_d_acheminement": "PIERRE MORAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02053698314, + 48.8400739001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eadd38cf3b4d58834aff0812a44fd42a1bdbb6aa", + "fields": { + "code_commune_insee": "51435", + "nom_de_la_commune": "POCANCY", + "code_postal": "51130", + "coordonnees_gps": [ + 48.9405655246, + 4.14658726908 + ], + "libelle_d_acheminement": "POCANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14658726908, + 48.9405655246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "714247d83605e7f11e667976167e9bd811a0ef5a", + "fields": { + "code_commune_insee": "51450", + "nom_de_la_commune": "PUISIEULX", + "code_postal": "51500", + "coordonnees_gps": [ + 49.2008681775, + 4.11546356735 + ], + "libelle_d_acheminement": "PUISIEULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11546356735, + 49.2008681775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c76541dab6e1d5e86c7b3d443643d39ec1a9fac", + "fields": { + "code_commune_insee": "51452", + "nom_de_la_commune": "RAPSECOURT", + "code_postal": "51330", + "coordonnees_gps": [ + 49.0231964043, + 4.79125516398 + ], + "libelle_d_acheminement": "RAPSECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79125516398, + 49.0231964043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bbd461f272bf5b232deaf7a12dbd0ad94a82ab0", + "fields": { + "code_commune_insee": "51453", + "nom_de_la_commune": "RECY", + "code_postal": "51520", + "coordonnees_gps": [ + 48.9985904011, + 4.32285338175 + ], + "libelle_d_acheminement": "RECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32285338175, + 48.9985904011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ef885e5681aa895289873df8f8761104061023e", + "fields": { + "code_commune_insee": "51458", + "nom_de_la_commune": "REUVES", + "code_postal": "51120", + "coordonnees_gps": [ + 48.7982990232, + 3.80208051062 + ], + "libelle_d_acheminement": "REUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80208051062, + 48.7982990232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bf1d2def34d3e615e76e0ae1372460880b4b3fc", + "fields": { + "code_commune_insee": "51459", + "nom_de_la_commune": "REVEILLON", + "code_postal": "51310", + "coordonnees_gps": [ + 48.7494077104, + 3.45568014336 + ], + "libelle_d_acheminement": "REVEILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45568014336, + 48.7494077104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17c337475f799138fcebe07bc262721c3b97b541", + "fields": { + "code_commune_insee": "51461", + "nom_de_la_commune": "RILLY LA MONTAGNE", + "code_postal": "51500", + "coordonnees_gps": [ + 49.1634301759, + 4.0458133231 + ], + "libelle_d_acheminement": "RILLY LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0458133231, + 49.1634301759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f3cf1491f245e037c7ea36b7714e206cf217270", + "fields": { + "code_commune_insee": "51466", + "nom_de_la_commune": "ROMIGNY", + "code_postal": "51170", + "coordonnees_gps": [ + 49.1729740589, + 3.76865133986 + ], + "libelle_d_acheminement": "ROMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76865133986, + 49.1729740589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2443e9bd8374f5830eb63ac2d1ae17c464f4fbf", + "fields": { + "code_commune_insee": "51469", + "nom_de_la_commune": "ROUFFY", + "code_postal": "51130", + "coordonnees_gps": [ + 48.9442844543, + 4.09038782139 + ], + "libelle_d_acheminement": "ROUFFY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09038782139, + 48.9442844543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5adc39f0bf3228cead794b08b986b7d2fd968e41", + "fields": { + "code_commune_insee": "51482", + "nom_de_la_commune": "ST GERMAIN LA VILLE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8918610464, + 4.46169066024 + ], + "libelle_d_acheminement": "ST GERMAIN LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46169066024, + 48.8918610464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3b37dad50dd237a6a10e639a58f38e6146a63fe", + "fields": { + "code_commune_insee": "51487", + "nom_de_la_commune": "ST HILAIRE LE PETIT", + "code_postal": "51490", + "coordonnees_gps": [ + 49.2651675739, + 4.38191112577 + ], + "libelle_d_acheminement": "ST HILAIRE LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38191112577, + 49.2651675739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceae5346e89d2e1af8813334e1f9d1d7ed44f994", + "fields": { + "code_commune_insee": "51488", + "nom_de_la_commune": "ST IMOGES", + "code_postal": "51160", + "coordonnees_gps": [ + 49.1069746679, + 3.98465817198 + ], + "libelle_d_acheminement": "ST IMOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98465817198, + 49.1069746679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aad0bedb0f7407ddc76163c235d7d9d4b8b43eb0", + "fields": { + "code_commune_insee": "51492", + "nom_de_la_commune": "ST JUST SAUVAGE", + "code_postal": "51260", + "coordonnees_gps": [ + 48.5482578678, + 3.77201547275 + ], + "libelle_d_acheminement": "ST JUST SAUVAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77201547275, + 48.5482578678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d97d0830f73ac6ae263afcec53c6a0add3fa4010", + "fields": { + "code_commune_insee": "51493", + "nom_de_la_commune": "ST LEONARD", + "code_postal": "51500", + "coordonnees_gps": [ + 49.2258255377, + 4.10765248658 + ], + "libelle_d_acheminement": "ST LEONARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10765248658, + 49.2258255377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2346c712c1d7b615a080a1e8973879ff67f739a0", + "fields": { + "code_commune_insee": "51498", + "nom_de_la_commune": "ST MARD SUR AUVE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0293500265, + 4.72778139432 + ], + "libelle_d_acheminement": "ST MARD SUR AUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72778139432, + 49.0293500265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b9f1647654ba7f2ba0185a345d8213082399adf", + "fields": { + "code_commune_insee": "51503", + "nom_de_la_commune": "ST MARTIN L HEUREUX", + "code_postal": "51490", + "coordonnees_gps": [ + 49.2434551487, + 4.376331789 + ], + "libelle_d_acheminement": "ST MARTIN L HEUREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.376331789, + 49.2434551487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd358c2fc041b03c68949ed9efa85b30b372b5ef", + "fields": { + "code_commune_insee": "51509", + "nom_de_la_commune": "ST PIERRE", + "code_postal": "51510", + "coordonnees_gps": [ + 48.9405334413, + 4.24555140178 + ], + "libelle_d_acheminement": "ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24555140178, + 48.9405334413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c58c832396d2af7433638829fdd9a0dc23173605", + "fields": { + "code_commune_insee": "51511", + "nom_de_la_commune": "ST QUENTIN LE VERGER", + "code_postal": "51120", + "coordonnees_gps": [ + 48.6171468398, + 3.74389575573 + ], + "libelle_d_acheminement": "ST QUENTIN LE VERGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74389575573, + 48.6171468398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4432d66c8b49f1fa5ea0c23d73fbf3cf91efcc00", + "fields": { + "code_commune_insee": "51516", + "nom_de_la_commune": "ST SATURNIN", + "code_postal": "51260", + "coordonnees_gps": [ + 48.6167902832, + 3.89132444903 + ], + "libelle_d_acheminement": "ST SATURNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89132444903, + 48.6167902832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "382264db64016116d91ac3082cb23b0810587051", + "fields": { + "code_commune_insee": "51518", + "nom_de_la_commune": "ST THIERRY", + "code_postal": "51220", + "coordonnees_gps": [ + 49.297621537, + 3.97532406163 + ], + "libelle_d_acheminement": "ST THIERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97532406163, + 49.297621537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "333eae326101440ae425deeabf25028ba3c21d4b", + "fields": { + "code_commune_insee": "51520", + "nom_de_la_commune": "ST UTIN", + "code_postal": "51290", + "coordonnees_gps": [ + 48.5535485189, + 4.47470257392 + ], + "libelle_d_acheminement": "ST UTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47470257392, + 48.5535485189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1280e0f2db3a881307536b2a50d41fa9f3fa44ce", + "fields": { + "code_commune_insee": "51524", + "nom_de_la_commune": "SARON SUR AUBE", + "code_postal": "51260", + "coordonnees_gps": [ + 48.5824010998, + 3.72970498559 + ], + "libelle_d_acheminement": "SARON SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72970498559, + 48.5824010998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7a527d8af73146d2ce159beb7b99e309e912f99", + "fields": { + "code_commune_insee": "51529", + "nom_de_la_commune": "SELLES", + "code_postal": "51490", + "coordonnees_gps": [ + 49.2969104797, + 4.2820477749 + ], + "libelle_d_acheminement": "SELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2820477749, + 49.2969104797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42b1072a6f8dbb9b3002a7e12ccf503a45de5f36", + "fields": { + "code_commune_insee": "51535", + "nom_de_la_commune": "SEZANNE", + "code_postal": "51120", + "coordonnees_gps": [ + 48.7238850993, + 3.72347511643 + ], + "libelle_d_acheminement": "SEZANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72347511643, + 48.7238850993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a57f1aa23838e91615e8c5babf122ef082404d8", + "fields": { + "code_commune_insee": "51551", + "nom_de_la_commune": "SOMSOIS", + "code_postal": "51290", + "coordonnees_gps": [ + 48.6060501552, + 4.49698542051 + ], + "libelle_d_acheminement": "SOMSOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49698542051, + 48.6060501552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7bc5dafe8d7b058f0fd65fac14ee7f14d4375a4", + "fields": { + "code_commune_insee": "51568", + "nom_de_la_commune": "THIL", + "code_postal": "51220", + "coordonnees_gps": [ + 49.3181688565, + 3.96508523039 + ], + "libelle_d_acheminement": "THIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96508523039, + 49.3181688565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55131f54e0ccaf3890555c1560954fd174a40dd4", + "fields": { + "code_commune_insee": "51576", + "nom_de_la_commune": "TOURS SUR MARNE", + "code_postal": "51150", + "coordonnees_gps": [ + 49.0525282676, + 4.12927337739 + ], + "libelle_d_acheminement": "TOURS SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12927337739, + 49.0525282676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95a01b6f903c98576eb779fea988064739ec6a79", + "fields": { + "code_commune_insee": "51577", + "nom_de_la_commune": "TRAMERY", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2226489325, + 3.80058910738 + ], + "libelle_d_acheminement": "TRAMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80058910738, + 49.2226489325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "348f43ec3387924378f367d31ff48e8fc62f1f89", + "fields": { + "code_commune_insee": "51578", + "nom_de_la_commune": "TRECON", + "code_postal": "51130", + "coordonnees_gps": [ + 48.8665837423, + 4.08841746273 + ], + "libelle_d_acheminement": "TRECON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08841746273, + 48.8665837423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f7f7bd80f386782a8af595a2bd7c371aee8b4b3", + "fields": { + "code_commune_insee": "51585", + "nom_de_la_commune": "TROISSY", + "code_postal": "51700", + "coordonnees_gps": [ + 49.0725724682, + 3.70218911309 + ], + "libelle_d_acheminement": "TROISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70218911309, + 49.0725724682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11f202cb3264c8c177fd397f9d91a6129414e1e2", + "fields": { + "code_commune_insee": "51594", + "nom_de_la_commune": "VASSIMONT ET CHAPELAINE", + "code_postal": "51320", + "coordonnees_gps": [ + 48.7597343436, + 4.13985568358 + ], + "libelle_d_acheminement": "VASSIMONT ET CHAPELAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13985568358, + 48.7597343436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61629eb8b8a2c19ffe993b8058144dcfce682239", + "fields": { + "code_commune_insee": "51595", + "nom_de_la_commune": "VATRY", + "code_postal": "51320", + "coordonnees_gps": [ + 48.8237179226, + 4.24189842242 + ], + "libelle_d_acheminement": "VATRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24189842242, + 48.8237179226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0746061a6dc50bd3189c44efcddf7dffb7ba629", + "fields": { + "code_commune_insee": "51597", + "nom_de_la_commune": "VAUCIENNES", + "code_postal": "51480", + "coordonnees_gps": [ + 49.0514138331, + 3.88062809942 + ], + "libelle_d_acheminement": "VAUCIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88062809942, + 49.0514138331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40e67cea5f15ab036af7dd83b3cdd0118bf7a32d", + "fields": { + "code_commune_insee": "51599", + "nom_de_la_commune": "VAUDEMANGE", + "code_postal": "51380", + "coordonnees_gps": [ + 49.0878246076, + 4.24420301293 + ], + "libelle_d_acheminement": "VAUDEMANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24420301293, + 49.0878246076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae03ed9e8734dee1f3e3c4813b8ac04651af4bbb", + "fields": { + "code_commune_insee": "51601", + "nom_de_la_commune": "VAVRAY LE GRAND", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7943355548, + 4.70542609943 + ], + "libelle_d_acheminement": "VAVRAY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70542609943, + 48.7943355548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56d156e2984c92d69b6987f8b4a56238ea2e3552", + "fields": { + "code_commune_insee": "51603", + "nom_de_la_commune": "VELYE", + "code_postal": "51130", + "coordonnees_gps": [ + 48.8921054834, + 4.13831644909 + ], + "libelle_d_acheminement": "VELYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13831644909, + 48.8921054834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4263d9d0b98629c31fe2a6291d4e5fe424c4b8f7", + "fields": { + "code_commune_insee": "51613", + "nom_de_la_commune": "VERZENAY", + "code_postal": "51360", + "coordonnees_gps": [ + 49.1640933006, + 4.14305005276 + ], + "libelle_d_acheminement": "VERZENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14305005276, + 49.1640933006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fb1e0669f8bcf1583f09ae6344976edade5c33f", + "fields": { + "code_commune_insee": "51624", + "nom_de_la_commune": "VILLE EN TARDENOIS", + "code_postal": "51170", + "coordonnees_gps": [ + 49.1783150735, + 3.79797345455 + ], + "libelle_d_acheminement": "VILLE EN TARDENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79797345455, + 49.1783150735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8150691cd916fa4fa30a3186ac95cf7e1e2d7a06", + "fields": { + "code_commune_insee": "51626", + "nom_de_la_commune": "LA VILLENEUVE LES CHARLEVILLE", + "code_postal": "51120", + "coordonnees_gps": [ + 48.7972274315, + 3.70878628564 + ], + "libelle_d_acheminement": "LA VILLENEUVE LES CHARLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70878628564, + 48.7972274315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e108c2b18e4c60e429d0a5968e508dc6fb135ccf", + "fields": { + "code_commune_insee": "51630", + "nom_de_la_commune": "VILLERS AUX BOIS", + "code_postal": "51130", + "coordonnees_gps": [ + 48.9348611937, + 3.93035066412 + ], + "libelle_d_acheminement": "VILLERS AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93035066412, + 48.9348611937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf61573ea02f03c05bf86ae33ffb57ed5a2c5fce", + "fields": { + "code_commune_insee": "51633", + "nom_de_la_commune": "VILLERS FRANQUEUX", + "code_postal": "51220", + "coordonnees_gps": [ + 49.3296687157, + 3.95052532169 + ], + "libelle_d_acheminement": "VILLERS FRANQUEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95052532169, + 49.3296687157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "786cda092f7fe4cbcba4ea13b922b257827eda7d", + "fields": { + "code_commune_insee": "51635", + "nom_de_la_commune": "VILLERS LE SEC", + "code_postal": "51250", + "coordonnees_gps": [ + 48.8197755055, + 4.85545727922 + ], + "libelle_d_acheminement": "VILLERS LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85545727922, + 48.8197755055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b9d65c4ee9eea7748dbede7c566d460ea9e3067", + "fields": { + "code_commune_insee": "51640", + "nom_de_la_commune": "VILLE SUR TOURBE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1979765872, + 4.78591314557 + ], + "libelle_d_acheminement": "VILLE SUR TOURBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78591314557, + 49.1979765872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f792e76e281020cdf99af1bd753702368d11bd68", + "fields": { + "code_commune_insee": "51641", + "nom_de_la_commune": "VILLEVENARD", + "code_postal": "51270", + "coordonnees_gps": [ + 48.8323336586, + 3.79579692713 + ], + "libelle_d_acheminement": "VILLEVENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79579692713, + 48.8323336586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8760c325e64c7b9467eda07bb7b36007a6ddf3d6", + "fields": { + "code_commune_insee": "51647", + "nom_de_la_commune": "VITRY EN PERTHOIS", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7482473925, + 4.61966323951 + ], + "libelle_d_acheminement": "VITRY EN PERTHOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61966323951, + 48.7482473925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b48ab2ef0a47af96c25dd7c927bb880ba5896ea", + "fields": { + "code_commune_insee": "51648", + "nom_de_la_commune": "VITRY LA VILLE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8347533525, + 4.43279915024 + ], + "libelle_d_acheminement": "VITRY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43279915024, + 48.8347533525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f54f787e0df68062ae06ddad26eb5bef254a1a5f", + "fields": { + "ligne_5": "VOUCIENNES", + "code_commune_insee": "51648", + "libelle_d_acheminement": "VITRY LA VILLE", + "code_postal": "51240", + "nom_de_la_commune": "VITRY LA VILLE", + "coordonnees_gps": [ + 48.8347533525, + 4.43279915024 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43279915024, + 48.8347533525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80b89eb13e6db3586bf0877a45c3fd39ac7cf2ea", + "fields": { + "code_commune_insee": "51650", + "nom_de_la_commune": "VOILEMONT", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0428848152, + 4.8010705026 + ], + "libelle_d_acheminement": "VOILEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8010705026, + 49.0428848152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9151cce445a48496af4b877332dd0b8b309d229", + "fields": { + "code_commune_insee": "51655", + "nom_de_la_commune": "VOUZY", + "code_postal": "51130", + "coordonnees_gps": [ + 48.9170302973, + 4.10778108018 + ], + "libelle_d_acheminement": "VOUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10778108018, + 48.9170302973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aac54275550ff82cc1a701bfd87395a660119b6", + "fields": { + "code_commune_insee": "51657", + "nom_de_la_commune": "VRIGNY", + "code_postal": "51390", + "coordonnees_gps": [ + 49.2382231686, + 3.91662114924 + ], + "libelle_d_acheminement": "VRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91662114924, + 49.2382231686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bd4e19046dac29fedc8b58739548f903f1785c9", + "fields": { + "code_commune_insee": "51663", + "nom_de_la_commune": "MAGENTA", + "code_postal": "51530", + "coordonnees_gps": [ + 49.0556579578, + 3.96637548356 + ], + "libelle_d_acheminement": "MAGENTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96637548356, + 49.0556579578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "492abf6e5678830a55f18994a93579f14a1cdb43", + "fields": { + "code_commune_insee": "52004", + "nom_de_la_commune": "AINGOULAINCOURT", + "code_postal": "52230", + "coordonnees_gps": [ + 48.4562339315, + 5.27698051622 + ], + "libelle_d_acheminement": "AINGOULAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27698051622, + 48.4562339315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "853afdbefa2dce7f0ccb0e45276bcf81798c34fe", + "fields": { + "code_commune_insee": "52008", + "nom_de_la_commune": "ANDELOT BLANCHEVILLE", + "code_postal": "52700", + "coordonnees_gps": [ + 48.2358357276, + 5.28592728312 + ], + "libelle_d_acheminement": "ANDELOT BLANCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28592728312, + 48.2358357276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c13892e46914975f5876104bb1f9b63efc8f4df", + "fields": { + "code_commune_insee": "52009", + "nom_de_la_commune": "ANDILLY EN BASSIGNY", + "code_postal": "52360", + "coordonnees_gps": [ + 47.9283690025, + 5.52049253052 + ], + "libelle_d_acheminement": "ANDILLY EN BASSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52049253052, + 47.9283690025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91135d3040a263a7e90ac2fd6c673aa236c80588", + "fields": { + "code_commune_insee": "52012", + "nom_de_la_commune": "ANNONVILLE", + "code_postal": "52230", + "coordonnees_gps": [ + 48.386421082, + 5.26980637959 + ], + "libelle_d_acheminement": "ANNONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26980637959, + 48.386421082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8598df6ba8be8900fa686b0592fa963e7fa0ed23", + "fields": { + "ligne_5": "ROCHES SUR ROGNON", + "code_commune_insee": "52044", + "libelle_d_acheminement": "ROCHES BETTAINCOURT", + "code_postal": "52270", + "nom_de_la_commune": "ROCHES BETTAINCOURT", + "coordonnees_gps": [ + 48.2973672533, + 5.25753260566 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25753260566, + 48.2973672533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62fc6f3080e98071d4c801c98d99c1973139f123", + "fields": { + "code_commune_insee": "52056", + "nom_de_la_commune": "BLESSONVILLE", + "code_postal": "52120", + "coordonnees_gps": [ + 48.0580108633, + 5.01262588825 + ], + "libelle_d_acheminement": "BLESSONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01262588825, + 48.0580108633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f1918d1f06cc63b45373c184bd6a394ded9b035", + "fields": { + "ligne_5": "ROOCOURT LA COTE", + "code_commune_insee": "52058", + "libelle_d_acheminement": "BOLOGNE", + "code_postal": "52310", + "nom_de_la_commune": "BOLOGNE", + "coordonnees_gps": [ + 48.1992324541, + 5.14187719083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14187719083, + 48.1992324541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bcac59db51af7e7a8f9bb2f755e65ffa0f57cf6", + "fields": { + "code_commune_insee": "52059", + "nom_de_la_commune": "BONNECOURT", + "code_postal": "52360", + "coordonnees_gps": [ + 47.9545453262, + 5.48095599257 + ], + "libelle_d_acheminement": "BONNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48095599257, + 47.9545453262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10a8c1d442d90b6ab1b5a2da836560fea93fab3b", + "fields": { + "ligne_5": "VILLARS ST MARCELLIN", + "code_commune_insee": "52060", + "libelle_d_acheminement": "BOURBONNE LES BAINS", + "code_postal": "52400", + "nom_de_la_commune": "BOURBONNE LES BAINS", + "coordonnees_gps": [ + 47.9441089031, + 5.7418695819 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7418695819, + 47.9441089031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44f498fb1a0c1b608517b99aa6bfe638bf24fcda", + "fields": { + "code_commune_insee": "67467", + "nom_de_la_commune": "SIEWILLER", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8414802623, + 7.20492965057 + ], + "libelle_d_acheminement": "SIEWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20492965057, + 48.8414802623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a053a9ff76f9096febf7431d0fb837e279ad6c45", + "fields": { + "ligne_5": "BOURMONT", + "code_commune_insee": "52064", + "libelle_d_acheminement": "BOURMONT ENTRE MEUSE ET MOUZON", + "code_postal": "52150", + "nom_de_la_commune": "BOURMONT ENTRE MEUSE ET MOUZON", + "coordonnees_gps": [ + 48.2050671577, + 5.60137874866 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60137874866, + 48.2050671577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99d10ae6a1d03e7c641c1b06c10bc6bc98ecc562", + "fields": { + "code_commune_insee": "67473", + "nom_de_la_commune": "SOULTZ LES BAINS", + "code_postal": "67120", + "coordonnees_gps": [ + 48.5676100551, + 7.47820560302 + ], + "libelle_d_acheminement": "SOULTZ LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47820560302, + 48.5676100551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a81254a392a4f59e9aa9891ecd8ba3540090b956", + "fields": { + "ligne_5": "MEUVY", + "code_commune_insee": "52074", + "libelle_d_acheminement": "BREUVANNES EN BASSIGNY", + "code_postal": "52240", + "nom_de_la_commune": "BREUVANNES EN BASSIGNY", + "coordonnees_gps": [ + 48.0850729223, + 5.61021002539 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61021002539, + 48.0850729223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0027bd85771f160b8dd474efd4e64dc59f3177f1", + "fields": { + "code_commune_insee": "52076", + "nom_de_la_commune": "BRICON", + "code_postal": "52120", + "coordonnees_gps": [ + 48.0857699601, + 4.98565524852 + ], + "libelle_d_acheminement": "BRICON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98565524852, + 48.0857699601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e15c35a8e2855b6b60d82baa9f5bb93d8574471", + "fields": { + "code_commune_insee": "67488", + "nom_de_la_commune": "THAL DRULINGEN", + "code_postal": "67320", + "coordonnees_gps": [ + 48.9123489426, + 7.13788332344 + ], + "libelle_d_acheminement": "THAL DRULINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13788332344, + 48.9123489426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5ab96fe4c27936039d1b091f9e80e025cdce004", + "fields": { + "code_commune_insee": "52083", + "nom_de_la_commune": "CHAMPSEVRAINE", + "code_postal": "52500", + "coordonnees_gps": [ + 47.7640004218, + 5.52713580414 + ], + "libelle_d_acheminement": "CHAMPSEVRAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52713580414, + 47.7640004218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f53b564a4ee7e65e3e6a8d38e13f0720efa74402", + "fields": { + "ligne_5": "BUSSIERES LES BELMONT", + "code_commune_insee": "52083", + "libelle_d_acheminement": "CHAMPSEVRAINE", + "code_postal": "52500", + "nom_de_la_commune": "CHAMPSEVRAINE", + "coordonnees_gps": [ + 47.7640004218, + 5.52713580414 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52713580414, + 47.7640004218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7162f2030887c1c86efd4a2edf18dbfd343fb16f", + "fields": { + "code_commune_insee": "67490", + "nom_de_la_commune": "THANVILLE", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3253039558, + 7.34853223079 + ], + "libelle_d_acheminement": "THANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34853223079, + 48.3253039558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "300b71b04955f21c841fbe70bbf5feb52a5879f4", + "fields": { + "code_commune_insee": "52084", + "nom_de_la_commune": "BUSSON", + "code_postal": "52700", + "coordonnees_gps": [ + 48.33182756, + 5.34457219599 + ], + "libelle_d_acheminement": "BUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34457219599, + 48.33182756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0630b935c65fa46b93206402dd5e6f5fbc6224e4", + "fields": { + "code_commune_insee": "52088", + "nom_de_la_commune": "CEFFONDS", + "code_postal": "52220", + "coordonnees_gps": [ + 48.4425385457, + 4.74768588072 + ], + "libelle_d_acheminement": "CEFFONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74768588072, + 48.4425385457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0aa87e4d511f1f5f611c560675d11f86f1336f7", + "fields": { + "code_commune_insee": "67522", + "nom_de_la_commune": "WEISLINGEN", + "code_postal": "67290", + "coordonnees_gps": [ + 48.9192784207, + 7.25784429593 + ], + "libelle_d_acheminement": "WEISLINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25784429593, + 48.9192784207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b92e5dc7dac5e832a1275dddb53a670687b1d925", + "fields": { + "ligne_5": "CHALMESSIN", + "code_commune_insee": "52094", + "libelle_d_acheminement": "VALS DES TILLES", + "code_postal": "52160", + "nom_de_la_commune": "VALS DES TILLES", + "coordonnees_gps": [ + 47.6942815153, + 5.08168973131 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08168973131, + 47.6942815153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cc7b18e20c7646c0a5119659c0737ef312c3511", + "fields": { + "code_commune_insee": "67528", + "nom_de_la_commune": "WEYER", + "code_postal": "67320", + "coordonnees_gps": [ + 48.858764489, + 7.16208154442 + ], + "libelle_d_acheminement": "WEYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16208154442, + 48.858764489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f715f8f3e12e087e868b2586b6a1d0be7f15b355", + "fields": { + "code_commune_insee": "52097", + "nom_de_la_commune": "CHAMBRONCOURT", + "code_postal": "52700", + "coordonnees_gps": [ + 48.3521665045, + 5.39965495154 + ], + "libelle_d_acheminement": "CHAMBRONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39965495154, + 48.3521665045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b956a2b6bede36be48e031e3655b720908d43363", + "fields": { + "code_commune_insee": "52103", + "nom_de_la_commune": "CHAMPIGNY SOUS VARENNES", + "code_postal": "52400", + "coordonnees_gps": [ + 47.8719082532, + 5.62939550331 + ], + "libelle_d_acheminement": "CHAMPIGNY SOUS VARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62939550331, + 47.8719082532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11ee9680534470b3ab258a04200f804e84556cc1", + "fields": { + "code_commune_insee": "67542", + "nom_de_la_commune": "WINTZENHEIM KOCHERSBERG", + "code_postal": "67370", + "coordonnees_gps": [ + 48.6578223701, + 7.50786446733 + ], + "libelle_d_acheminement": "WINTZENHEIM KOCHERSBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50786446733, + 48.6578223701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1105672f3ef80a3d6d19b0556d1100c8fc3b055b", + "fields": { + "code_commune_insee": "52105", + "nom_de_la_commune": "CHANGEY", + "code_postal": "52360", + "coordonnees_gps": [ + 47.9258657605, + 5.38438279152 + ], + "libelle_d_acheminement": "CHANGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38438279152, + 47.9258657605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9c3b206f8fa0ec9dd913fa96aacc8ec512eabd8", + "fields": { + "code_commune_insee": "67543", + "nom_de_la_commune": "WISCHES", + "code_postal": "67130", + "coordonnees_gps": [ + 48.5121595612, + 7.21702183927 + ], + "libelle_d_acheminement": "WISCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21702183927, + 48.5121595612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbcd1b9c3cf6bc26f2291a3a901dcbda7c235bc4", + "fields": { + "ligne_5": "CREANCEY", + "code_commune_insee": "52114", + "libelle_d_acheminement": "CHATEAUVILLAIN", + "code_postal": "52120", + "nom_de_la_commune": "CHATEAUVILLAIN", + "coordonnees_gps": [ + 48.0291535601, + 4.93239064269 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93239064269, + 48.0291535601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfd00d0825e65c5bad2688cf3874a4e0b46732c7", + "fields": { + "ligne_5": "HERSBACH", + "code_commune_insee": "67543", + "libelle_d_acheminement": "WISCHES", + "code_postal": "67130", + "nom_de_la_commune": "WISCHES", + "coordonnees_gps": [ + 48.5121595612, + 7.21702183927 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21702183927, + 48.5121595612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d5df2ad8038bf1078e01ae91d971d4c8c5b2f4f", + "fields": { + "ligne_5": "SOMMERMONT", + "code_commune_insee": "52118", + "libelle_d_acheminement": "CHATONRUPT SOMMERMONT", + "code_postal": "52300", + "nom_de_la_commune": "CHATONRUPT SOMMERMONT", + "coordonnees_gps": [ + 48.4718286513, + 5.10006137447 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10006137447, + 48.4718286513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "180a5c63013c581b9f2b684c4dcbaffb2892d108", + "fields": { + "code_commune_insee": "67554", + "nom_de_la_commune": "WOLXHEIM", + "code_postal": "67120", + "coordonnees_gps": [ + 48.5703058902, + 7.5074599373 + ], + "libelle_d_acheminement": "WOLXHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5074599373, + 48.5703058902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29a948f4309bb696241e6c98a720585d4992c319", + "fields": { + "code_commune_insee": "52119", + "nom_de_la_commune": "CHAUDENAY", + "code_postal": "52600", + "coordonnees_gps": [ + 47.8217167742, + 5.50082172465 + ], + "libelle_d_acheminement": "CHAUDENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50082172465, + 47.8217167742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b478b5b1d7f2bd36627be4a3c613870d8beb96e2", + "fields": { + "code_commune_insee": "68005", + "nom_de_la_commune": "AMMERSCHWIHR", + "code_postal": "68770", + "coordonnees_gps": [ + 48.119478992, + 7.25998332176 + ], + "libelle_d_acheminement": "AMMERSCHWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25998332176, + 48.119478992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b32feb523f34449ef4270108f80f1752f1b6697", + "fields": { + "code_commune_insee": "52121", + "nom_de_la_commune": "CHAUMONT", + "code_postal": "52000", + "coordonnees_gps": [ + 48.0980144211, + 5.14070044621 + ], + "libelle_d_acheminement": "CHAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14070044621, + 48.0980144211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64e57d769a931261c289e333bd866446cd37962a", + "fields": { + "code_commune_insee": "68007", + "nom_de_la_commune": "ANDOLSHEIM", + "code_postal": "68280", + "coordonnees_gps": [ + 48.0652206217, + 7.43654259206 + ], + "libelle_d_acheminement": "ANDOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43654259206, + 48.0652206217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29f58fa15e565bbd1d4aa9eb799a47541ba5f559", + "fields": { + "ligne_5": "BROTTES", + "code_commune_insee": "52121", + "libelle_d_acheminement": "CHAUMONT", + "code_postal": "52000", + "nom_de_la_commune": "CHAUMONT", + "coordonnees_gps": [ + 48.0980144211, + 5.14070044621 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14070044621, + 48.0980144211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfd840c352d3866deb334044203c801b44a71e63", + "fields": { + "ligne_5": "MICHELBACH", + "code_commune_insee": "68012", + "libelle_d_acheminement": "ASPACH MICHELBACH", + "code_postal": "68700", + "nom_de_la_commune": "ASPACH MICHELBACH", + "coordonnees_gps": [ + 47.7791495008, + 7.12888464942 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12888464942, + 47.7791495008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51a544f4f6665a0ad0ad3d7c42e6ca6f81a4fefb", + "fields": { + "code_commune_insee": "52123", + "nom_de_la_commune": "CHEVILLON", + "code_postal": "52170", + "coordonnees_gps": [ + 48.5306693888, + 5.14449573214 + ], + "libelle_d_acheminement": "CHEVILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14449573214, + 48.5306693888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20cef3781b91b38dea968afce911594177af3379", + "fields": { + "code_commune_insee": "68015", + "nom_de_la_commune": "BALDERSHEIM", + "code_postal": "68390", + "coordonnees_gps": [ + 47.7990452233, + 7.41601212469 + ], + "libelle_d_acheminement": "BALDERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41601212469, + 47.7990452233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c6366048124b9f4da6539e4035afb09b9651fa9", + "fields": { + "ligne_5": "DARDENAY", + "code_commune_insee": "52126", + "libelle_d_acheminement": "CHOILLEY DARDENAY", + "code_postal": "52190", + "nom_de_la_commune": "CHOILLEY DARDENAY", + "coordonnees_gps": [ + 47.6613154745, + 5.36577957222 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36577957222, + 47.6613154745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c39452a65e4d31e9d6c91f16e5d1ced59892d9cc", + "fields": { + "code_commune_insee": "52131", + "nom_de_la_commune": "CIRFONTAINES EN ORNOIS", + "code_postal": "52230", + "coordonnees_gps": [ + 48.4532797682, + 5.38951402511 + ], + "libelle_d_acheminement": "CIRFONTAINES EN ORNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38951402511, + 48.4532797682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0bba229ece3e712cb61da9c22189119743ef353", + "fields": { + "code_commune_insee": "68021", + "nom_de_la_commune": "BARTENHEIM", + "code_postal": "68870", + "coordonnees_gps": [ + 47.6362849044, + 7.4885344409 + ], + "libelle_d_acheminement": "BARTENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4885344409, + 47.6362849044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f312d765369fe23de593210ed7d6095d885d4a56", + "fields": { + "ligne_5": "CHAMPCOURT", + "code_commune_insee": "52140", + "libelle_d_acheminement": "COLOMBEY LES DEUX EGLISES", + "code_postal": "52330", + "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", + "coordonnees_gps": [ + 48.2454844081, + 4.92015393779 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92015393779, + 48.2454844081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4669ca07447fae376c3f9eeade24020f0bf399a6", + "fields": { + "code_commune_insee": "68025", + "nom_de_la_commune": "BENDORF", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4845658206, + 7.2774077888 + ], + "libelle_d_acheminement": "BENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2774077888, + 47.4845658206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d116d1a51f30ace7f279914161041e943048c05", + "fields": { + "ligne_5": "PRATZ", + "code_commune_insee": "52140", + "libelle_d_acheminement": "COLOMBEY LES DEUX EGLISES", + "code_postal": "52330", + "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", + "coordonnees_gps": [ + 48.2454844081, + 4.92015393779 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92015393779, + 48.2454844081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74f771d960d2f436c4224ef5471ff1c6ad75ee86", + "fields": { + "code_commune_insee": "68027", + "nom_de_la_commune": "BERENTZWILLER", + "code_postal": "68130", + "coordonnees_gps": [ + 47.5810125043, + 7.38725131168 + ], + "libelle_d_acheminement": "BERENTZWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38725131168, + 47.5810125043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ab956c6c7bdf8f2ab70923aeda56240a1184e04", + "fields": { + "code_commune_insee": "52146", + "nom_de_la_commune": "COUPRAY", + "code_postal": "52210", + "coordonnees_gps": [ + 47.9771163258, + 4.94022617054 + ], + "libelle_d_acheminement": "COUPRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94022617054, + 47.9771163258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e68d94bb9cf249cef32c0936c44438f24b7df372", + "fields": { + "code_commune_insee": "68042", + "nom_de_la_commune": "BLOTZHEIM", + "code_postal": "68730", + "coordonnees_gps": [ + 47.6041661694, + 7.49467481081 + ], + "libelle_d_acheminement": "BLOTZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49467481081, + 47.6041661694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79061e98bfbba5e2175f210a0fd0a874eddd17b1", + "fields": { + "code_commune_insee": "52156", + "nom_de_la_commune": "CUREL", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4982110144, + 5.14626238825 + ], + "libelle_d_acheminement": "CUREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14626238825, + 48.4982110144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1139bea60a3761adb519abdb8db6b52861d754d", + "fields": { + "code_commune_insee": "52160", + "nom_de_la_commune": "DAILLANCOURT", + "code_postal": "52110", + "coordonnees_gps": [ + 48.2966159781, + 4.93715295501 + ], + "libelle_d_acheminement": "DAILLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93715295501, + 48.2966159781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2780874c0a19ad265d2b0b47de3c534dcc098f63", + "fields": { + "ligne_5": "BRUNSTATT", + "code_commune_insee": "68056", + "libelle_d_acheminement": "BRUNSTATT DIDENHEIM", + "code_postal": "68350", + "nom_de_la_commune": "BRUNSTATT DIDENHEIM", + "coordonnees_gps": [ + 47.7151300366, + 7.32654596124 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32654596124, + 47.7151300366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e68816ba641945b483afd66664972ff94e01ba2", + "fields": { + "code_commune_insee": "52163", + "nom_de_la_commune": "DAMPIERRE", + "code_postal": "52360", + "coordonnees_gps": [ + 47.9584274789, + 5.40019439303 + ], + "libelle_d_acheminement": "DAMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40019439303, + 47.9584274789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c3ed7c938175598802e8d27529d0515fc788d63", + "fields": { + "code_commune_insee": "52165", + "nom_de_la_commune": "DANCEVOIR", + "code_postal": "52210", + "coordonnees_gps": [ + 47.9334948469, + 4.8797472329 + ], + "libelle_d_acheminement": "DANCEVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8797472329, + 47.9334948469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddbf893362cf9ff4d02e6f4a41ff7e77851be751", + "fields": { + "code_commune_insee": "52168", + "nom_de_la_commune": "DINTEVILLE", + "code_postal": "52120", + "coordonnees_gps": [ + 48.0375731521, + 4.80723999451 + ], + "libelle_d_acheminement": "DINTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80723999451, + 48.0375731521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "559639d4f1923a01be5fc915c5349836cacc0fd5", + "fields": { + "code_commune_insee": "68071", + "nom_de_la_commune": "DIEFMATTEN", + "code_postal": "68780", + "coordonnees_gps": [ + 47.7060797698, + 7.10092606116 + ], + "libelle_d_acheminement": "DIEFMATTEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10092606116, + 47.7060797698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "596bfebcb5270c0505b83d119126d5a3e1fa8d43", + "fields": { + "code_commune_insee": "52175", + "nom_de_la_commune": "DONJEUX", + "code_postal": "52300", + "coordonnees_gps": [ + 48.3533734076, + 5.16224732615 + ], + "libelle_d_acheminement": "DONJEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16224732615, + 48.3533734076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1e62e6d622d7896a3503287a806a7262c6edf53", + "fields": { + "code_commune_insee": "52179", + "nom_de_la_commune": "DOULEVANT LE PETIT", + "code_postal": "52130", + "coordonnees_gps": [ + 48.45005121, + 4.95140742292 + ], + "libelle_d_acheminement": "DOULEVANT LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95140742292, + 48.45005121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da972a8c8f50b70e22d2d9f8469c9ea4330f4c5d", + "fields": { + "code_commune_insee": "68113", + "nom_de_la_commune": "GUEMAR", + "code_postal": "68970", + "coordonnees_gps": [ + 48.1941685271, + 7.41475007829 + ], + "libelle_d_acheminement": "GUEMAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41475007829, + 48.1941685271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f7b8ac8661f672b4db141d394d13cd630ee992a", + "fields": { + "code_commune_insee": "52182", + "nom_de_la_commune": "ECLARON BRAUCOURT STE LIVIERE", + "code_postal": "52290", + "coordonnees_gps": [ + 48.5752024627, + 4.83180958879 + ], + "libelle_d_acheminement": "ECLARON BRAUCOURT STE LIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83180958879, + 48.5752024627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2037f8343f5e7a60910db3e4f5ce8ec908ad2fde", + "fields": { + "code_commune_insee": "68118", + "nom_de_la_commune": "HABSHEIM", + "code_postal": "68440", + "coordonnees_gps": [ + 47.726261392, + 7.43344571206 + ], + "libelle_d_acheminement": "HABSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43344571206, + 47.726261392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95c70eccd70d3ae168219f8e7b4281f38bc95ab4", + "fields": { + "ligne_5": "BRAUCOURT", + "code_commune_insee": "52182", + "libelle_d_acheminement": "ECLARON BRAUCOURT STE LIVIERE", + "code_postal": "52290", + "nom_de_la_commune": "ECLARON BRAUCOURT STE LIVIERE", + "coordonnees_gps": [ + 48.5752024627, + 4.83180958879 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83180958879, + 48.5752024627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2abfe6d6323e7d98ed68c63cade9c07d6353510", + "fields": { + "code_commune_insee": "68119", + "nom_de_la_commune": "HAGENBACH", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6457240743, + 7.16160529294 + ], + "libelle_d_acheminement": "HAGENBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16160529294, + 47.6457240743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7721ac0db3096ee926b2ab02cfb128853edfe959", + "fields": { + "ligne_5": "STE LIVIERE", + "code_commune_insee": "52182", + "libelle_d_acheminement": "ECLARON BRAUCOURT STE LIVIERE", + "code_postal": "52290", + "nom_de_la_commune": "ECLARON BRAUCOURT STE LIVIERE", + "coordonnees_gps": [ + 48.5752024627, + 4.83180958879 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83180958879, + 48.5752024627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6daf07d1bb75788cda1a0e0dc88be2c22a5fc80b", + "fields": { + "code_commune_insee": "68120", + "nom_de_la_commune": "HAGENTHAL LE BAS", + "code_postal": "68220", + "coordonnees_gps": [ + 47.5308980609, + 7.48185417828 + ], + "libelle_d_acheminement": "HAGENTHAL LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48185417828, + 47.5308980609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7fc0fa5f21173342f48a85a5bfb8db12da30b50", + "fields": { + "code_commune_insee": "52183", + "nom_de_la_commune": "ECOT LA COMBE", + "code_postal": "52700", + "coordonnees_gps": [ + 48.208131496, + 5.39669220982 + ], + "libelle_d_acheminement": "ECOT LA COMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39669220982, + 48.208131496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "144906ce042154d8d2a4aec1b3b3d8a634c0e409", + "fields": { + "code_commune_insee": "68122", + "nom_de_la_commune": "HARTMANNSWILLER", + "code_postal": "68500", + "coordonnees_gps": [ + 47.8595424228, + 7.1992146478 + ], + "libelle_d_acheminement": "HARTMANNSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1992146478, + 47.8595424228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2bf02bfcaf3d3e7c04c030a5a9f5a84f211ed20", + "fields": { + "code_commune_insee": "52184", + "nom_de_la_commune": "EFFINCOURT", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4941454945, + 5.26283262819 + ], + "libelle_d_acheminement": "EFFINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26283262819, + 48.4941454945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b80d7e94019e3d1c176626d189f785e8b5ab7e5", + "fields": { + "code_commune_insee": "68125", + "nom_de_la_commune": "HECKEN", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6935000401, + 7.11527633282 + ], + "libelle_d_acheminement": "HECKEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11527633282, + 47.6935000401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44909b91c7b1e38a7fe7025c42d1e1da8ca793f0", + "fields": { + "ligne_5": "CHATOILLENOT", + "code_commune_insee": "52189", + "libelle_d_acheminement": "LE VAL D ESNOMS", + "code_postal": "52190", + "nom_de_la_commune": "LE VAL D ESNOMS", + "coordonnees_gps": [ + 47.6904929765, + 5.21656859314 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21656859314, + 47.6904929765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cad1d93e96c002c73cbbf5f7aa0732066c6e371d", + "fields": { + "code_commune_insee": "68131", + "nom_de_la_commune": "HEIWILLER", + "code_postal": "68130", + "coordonnees_gps": [ + 47.6233403616, + 7.32325966254 + ], + "libelle_d_acheminement": "HEIWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32325966254, + 47.6233403616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e98eecb7774da4dcd59466a732d52e895b4897fd", + "fields": { + "code_commune_insee": "52190", + "nom_de_la_commune": "ESNOUVEAUX", + "code_postal": "52340", + "coordonnees_gps": [ + 48.1327800395, + 5.34926255803 + ], + "libelle_d_acheminement": "ESNOUVEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34926255803, + 48.1327800395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c03b0732dd08399657efda29cc616cce1ee2961", + "fields": { + "code_commune_insee": "68132", + "nom_de_la_commune": "HELFRANTZKIRCH", + "code_postal": "68510", + "coordonnees_gps": [ + 47.6042771391, + 7.41446012187 + ], + "libelle_d_acheminement": "HELFRANTZKIRCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41446012187, + 47.6042771391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9d4b332e43df717ffd256cb58de8a35da5fbd8f", + "fields": { + "code_commune_insee": "52193", + "nom_de_la_commune": "EUFFIGNEIX", + "code_postal": "52000", + "coordonnees_gps": [ + 48.1285952384, + 5.04441346885 + ], + "libelle_d_acheminement": "EUFFIGNEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04441346885, + 48.1285952384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f92701d28294e2409c7126eba3b132a7f6d5ad93", + "fields": { + "ligne_5": "HOLTZWIHR", + "code_commune_insee": "68143", + "libelle_d_acheminement": "PORTE DU RIED", + "code_postal": "68320", + "nom_de_la_commune": "PORTE DU RIED", + "coordonnees_gps": [ + 48.1164812033, + 7.41859914847 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41859914847, + 48.1164812033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dc03e84b71b6eec64901271ef17e0d7e145c481", + "fields": { + "code_commune_insee": "52198", + "nom_de_la_commune": "FAYS", + "code_postal": "52130", + "coordonnees_gps": [ + 48.4748666467, + 5.03808215827 + ], + "libelle_d_acheminement": "FAYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03808215827, + 48.4748666467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f499417e27877e10233010698bd33f1c218000ef", + "fields": { + "code_commune_insee": "68151", + "nom_de_la_commune": "HUSSEREN WESSERLING", + "code_postal": "68470", + "coordonnees_gps": [ + 47.8799580401, + 6.98624722904 + ], + "libelle_d_acheminement": "HUSSEREN WESSERLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98624722904, + 47.8799580401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb359c7a63506b45d535be1dfd7cdf8b5799fc57", + "fields": { + "code_commune_insee": "52208", + "nom_de_la_commune": "FRESNES SUR APANCE", + "code_postal": "52400", + "coordonnees_gps": [ + 47.9402612111, + 5.83368203758 + ], + "libelle_d_acheminement": "FRESNES SUR APANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83368203758, + 47.9402612111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "524b59ec8871a190874f0796bef5b25df4f2059c", + "fields": { + "code_commune_insee": "68153", + "nom_de_la_commune": "ILLHAEUSERN", + "code_postal": "68970", + "coordonnees_gps": [ + 48.1803388942, + 7.45176839753 + ], + "libelle_d_acheminement": "ILLHAEUSERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45176839753, + 48.1803388942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eff824d96469afb235e109175f0a5499dd1546cf", + "fields": { + "ligne_5": "BUXIERES LES FRONCLES", + "code_commune_insee": "52211", + "libelle_d_acheminement": "FRONCLES", + "code_postal": "52320", + "nom_de_la_commune": "FRONCLES", + "coordonnees_gps": [ + 48.2997317806, + 5.13968155091 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13968155091, + 48.2997317806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d31e4a2795c212c153c3bb87185813451be3a46", + "fields": { + "code_commune_insee": "52227", + "nom_de_la_commune": "GRAFFIGNY CHEMIN", + "code_postal": "52150", + "coordonnees_gps": [ + 48.1692808867, + 5.64603738902 + ], + "libelle_d_acheminement": "GRAFFIGNY CHEMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64603738902, + 48.1692808867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0272014e930fb7923a99364111097daceefd7842", + "fields": { + "code_commune_insee": "52229", + "nom_de_la_commune": "GRENANT", + "code_postal": "52500", + "coordonnees_gps": [ + 47.7074669217, + 5.49441820553 + ], + "libelle_d_acheminement": "GRENANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49441820553, + 47.7074669217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d0a35cab4243f7c9734c303aeeb05c9e68f16ae", + "fields": { + "code_commune_insee": "68190", + "nom_de_la_commune": "LUCELLE", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4379498341, + 7.27615283484 + ], + "libelle_d_acheminement": "LUCELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27615283484, + 47.4379498341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "284ba72296ecc0f8176faebc12cce5b2a1c86e41", + "fields": { + "code_commune_insee": "52231", + "nom_de_la_commune": "GUINDRECOURT AUX ORMES", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4548468693, + 5.03959560769 + ], + "libelle_d_acheminement": "GUINDRECOURT AUX ORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03959560769, + 48.4548468693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4c39a262b7b571e1098c76381d9f02360112e7e", + "fields": { + "code_commune_insee": "68200", + "nom_de_la_commune": "MANSPACH", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6116259818, + 7.0925498257 + ], + "libelle_d_acheminement": "MANSPACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0925498257, + 47.6116259818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "390bc36058be2a8d5c732ff3363fd764c7658bb2", + "fields": { + "code_commune_insee": "52237", + "nom_de_la_commune": "HARREVILLE LES CHANTEURS", + "code_postal": "52150", + "coordonnees_gps": [ + 48.2669962236, + 5.62077184704 + ], + "libelle_d_acheminement": "HARREVILLE LES CHANTEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62077184704, + 48.2669962236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59e5710a5f13200317aaaf0d8e0aa1a6a871eff6", + "fields": { + "ligne_5": "NIEDERBRUCK", + "code_commune_insee": "68201", + "libelle_d_acheminement": "MASEVAUX NIEDERBRUCK", + "code_postal": "68290", + "nom_de_la_commune": "MASEVAUX NIEDERBRUCK", + "coordonnees_gps": [ + 47.7778607514, + 6.99469023455 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99469023455, + 47.7778607514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20dabc68afa8eebb21c204848c9d4f9316cd9e8a", + "fields": { + "code_commune_insee": "52240", + "nom_de_la_commune": "HEUILLEY LE GRAND", + "code_postal": "52600", + "coordonnees_gps": [ + 47.7518661762, + 5.39548262611 + ], + "libelle_d_acheminement": "HEUILLEY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39548262611, + 47.7518661762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17c4e1fa0a68892904e23a99b193c7c0bdcee7cc", + "fields": { + "ligne_5": "MORTZWILLER", + "code_commune_insee": "68219", + "libelle_d_acheminement": "LE HAUT SOULTZBACH", + "code_postal": "68780", + "nom_de_la_commune": "LE HAUT SOULTZBACH", + "coordonnees_gps": [ + 47.7386585258, + 7.03380849733 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03380849733, + 47.7386585258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac594ffbfe1933962087e27cb2fc3347cb12683d", + "fields": { + "ligne_5": "ROSOY SUR AMANCE", + "code_commune_insee": "52242", + "libelle_d_acheminement": "HAUTE AMANCE", + "code_postal": "52600", + "nom_de_la_commune": "HAUTE AMANCE", + "coordonnees_gps": [ + 47.844980324, + 5.53371841027 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53371841027, + 47.844980324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b63a79cbd301ac51c55899708e73c3cbf19d827", + "fields": { + "code_commune_insee": "52251", + "nom_de_la_commune": "JONCHERY", + "code_postal": "52000", + "coordonnees_gps": [ + 48.1516102771, + 5.07446482114 + ], + "libelle_d_acheminement": "JONCHERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07446482114, + 48.1516102771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc26da8d90846ca1df66538f80a36d76ac7ac480", + "fields": { + "code_commune_insee": "68231", + "nom_de_la_commune": "NEUF BRISACH", + "code_postal": "68600", + "coordonnees_gps": [ + 48.0183924755, + 7.52784741678 + ], + "libelle_d_acheminement": "NEUF BRISACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52784741678, + 48.0183924755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "454f371bd1dab584b93a550b08138cf09566ea0b", + "fields": { + "code_commune_insee": "52258", + "nom_de_la_commune": "LAFERTE SUR AUBE", + "code_postal": "52120", + "coordonnees_gps": [ + 48.0939723153, + 4.77481337756 + ], + "libelle_d_acheminement": "LAFERTE SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77481337756, + 48.0939723153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01826abb4ab2e134c48f585bcafa6efee493d0f2", + "fields": { + "code_commune_insee": "52264", + "nom_de_la_commune": "LANEUVELLE", + "code_postal": "52400", + "coordonnees_gps": [ + 47.9338547424, + 5.66780967773 + ], + "libelle_d_acheminement": "LANEUVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66780967773, + 47.9338547424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "033b1a1020f833cab5a45e50582b1e2844603feb", + "fields": { + "code_commune_insee": "52265", + "nom_de_la_commune": "BAYARD SUR MARNE", + "code_postal": "52170", + "coordonnees_gps": [ + 48.5499615771, + 5.06880935835 + ], + "libelle_d_acheminement": "BAYARD SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06880935835, + 48.5499615771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16d40db098e973d30ba22b80d0d10182c082f390", + "fields": { + "code_commune_insee": "68258", + "nom_de_la_commune": "PULVERSHEIM", + "code_postal": "68840", + "coordonnees_gps": [ + 47.8417545163, + 7.29938600329 + ], + "libelle_d_acheminement": "PULVERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29938600329, + 47.8417545163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d43ff789748226a473f512c24a194639f7f5001", + "fields": { + "ligne_5": "PREZ SUR MARNE", + "code_commune_insee": "52265", + "libelle_d_acheminement": "BAYARD SUR MARNE", + "code_postal": "52170", + "nom_de_la_commune": "BAYARD SUR MARNE", + "coordonnees_gps": [ + 48.5499615771, + 5.06880935835 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06880935835, + 48.5499615771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a948f176e90db18fd21f1987b21d5a67e97c8f03", + "fields": { + "code_commune_insee": "68260", + "nom_de_la_commune": "RAEDERSHEIM", + "code_postal": "68190", + "coordonnees_gps": [ + 47.8850080179, + 7.27686829519 + ], + "libelle_d_acheminement": "RAEDERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27686829519, + 47.8850080179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c591b716e3d52a46b1b70430df673902a929888", + "fields": { + "code_commune_insee": "52277", + "nom_de_la_commune": "LAVILLENEUVE", + "code_postal": "52140", + "coordonnees_gps": [ + 48.0373240885, + 5.51638574625 + ], + "libelle_d_acheminement": "LAVILLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51638574625, + 48.0373240885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2df43533ab6df85101d89403fe8d5233d95a7d0", + "fields": { + "code_commune_insee": "68271", + "nom_de_la_commune": "RIEDISHEIM", + "code_postal": "68400", + "coordonnees_gps": [ + 47.7396931501, + 7.36582056128 + ], + "libelle_d_acheminement": "RIEDISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36582056128, + 47.7396931501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b47686ffee025c811dd0b1eddec003d6111d110a", + "fields": { + "code_commune_insee": "52278", + "nom_de_la_commune": "LAVILLENEUVE AU ROI", + "code_postal": "52330", + "coordonnees_gps": [ + 48.1629805805, + 4.9339217846 + ], + "libelle_d_acheminement": "LAVILLENEUVE AU ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9339217846, + 48.1629805805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "852dc6ddd115eb644abc5d92e354ec79d807dd71", + "fields": { + "code_commune_insee": "52282", + "nom_de_la_commune": "LEFFONDS", + "code_postal": "52210", + "coordonnees_gps": [ + 47.9812762101, + 5.14225572463 + ], + "libelle_d_acheminement": "LEFFONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14225572463, + 47.9812762101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a61926ea2e712e99821fd566f1a894aef93aeb2", + "fields": { + "code_commune_insee": "68290", + "nom_de_la_commune": "RUSTENHART", + "code_postal": "68740", + "coordonnees_gps": [ + 47.9412962955, + 7.47468006803 + ], + "libelle_d_acheminement": "RUSTENHART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47468006803, + 47.9412962955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e187ecc0bf5dae813c80f3c7c0c6903e40500175", + "fields": { + "code_commune_insee": "52284", + "nom_de_la_commune": "LESCHERES SUR LE BLAISERON", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3371313417, + 5.03163673531 + ], + "libelle_d_acheminement": "LESCHERES SUR LE BLAISERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03163673531, + 48.3371313417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57bd19d2ec776afbdc7df6ef7935bfbe1fdbd7b0", + "fields": { + "code_commune_insee": "68295", + "nom_de_la_commune": "STE CROIX EN PLAINE", + "code_postal": "68127", + "coordonnees_gps": [ + 48.0108373364, + 7.39448245044 + ], + "libelle_d_acheminement": "STE CROIX EN PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39448245044, + 48.0108373364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75918fab832b5cf9b6af7a249b085730417739f5", + "fields": { + "ligne_5": "HARMEVILLE", + "code_commune_insee": "52288", + "libelle_d_acheminement": "LEZEVILLE", + "code_postal": "52230", + "nom_de_la_commune": "LEZEVILLE", + "coordonnees_gps": [ + 48.4275449909, + 5.39183251912 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39183251912, + 48.4275449909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8b5cee27fa698b87c55a1cb522d92fd14b56b56", + "fields": { + "code_commune_insee": "68299", + "nom_de_la_commune": "ST ULRICH", + "code_postal": "68210", + "coordonnees_gps": [ + 47.5906419624, + 7.11252849143 + ], + "libelle_d_acheminement": "ST ULRICH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11252849143, + 47.5906419624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58acf47a18e441500bc6c511a024a93b62972379", + "fields": { + "code_commune_insee": "52291", + "nom_de_la_commune": "LONGCHAMP", + "code_postal": "52240", + "coordonnees_gps": [ + 48.1264874008, + 5.44150373802 + ], + "libelle_d_acheminement": "LONGCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44150373802, + 48.1264874008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "731074dd6da52578822a4d5223ac2f0c16fa9269", + "fields": { + "code_commune_insee": "68301", + "nom_de_la_commune": "SCHLIERBACH", + "code_postal": "68440", + "coordonnees_gps": [ + 47.6843290932, + 7.43002796283 + ], + "libelle_d_acheminement": "SCHLIERBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43002796283, + 47.6843290932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f75da5ec463a655205bcc7bc3587beffe36bb14", + "fields": { + "ligne_5": "PERCEY LE PAUTEL", + "code_commune_insee": "52292", + "libelle_d_acheminement": "LONGEAU PERCEY", + "code_postal": "52250", + "nom_de_la_commune": "LONGEAU PERCEY", + "coordonnees_gps": [ + 47.7600762777, + 5.31857922442 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31857922442, + 47.7600762777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93535b6e65922ece8dc35cf870440b9aacf70576", + "fields": { + "code_commune_insee": "68313", + "nom_de_la_commune": "SOPPE LE BAS", + "code_postal": "68780", + "coordonnees_gps": [ + 47.7187563607, + 7.09111895183 + ], + "libelle_d_acheminement": "SOPPE LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09111895183, + 47.7187563607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a21a37088f7400447e34061fa136db164b1e618", + "fields": { + "code_commune_insee": "52301", + "nom_de_la_commune": "MAISONCELLES", + "code_postal": "52240", + "coordonnees_gps": [ + 48.1325423759, + 5.53375254528 + ], + "libelle_d_acheminement": "MAISONCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53375254528, + 48.1325423759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50bc44c0870980af62ac0ac97b37b1dc74e56fbe", + "fields": { + "ligne_5": "SPECHBACH LE HAUT", + "code_commune_insee": "68320", + "libelle_d_acheminement": "SPECHBACH", + "code_postal": "68720", + "nom_de_la_commune": "SPECHBACH", + "coordonnees_gps": [ + 47.6858659395, + 7.21898279499 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21898279499, + 47.6858659395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0ad1a978bd06d084e258e8625e98196656d8851", + "fields": { + "code_commune_insee": "52306", + "nom_de_la_commune": "MANOIS", + "code_postal": "52700", + "coordonnees_gps": [ + 48.2657522932, + 5.37467760517 + ], + "libelle_d_acheminement": "MANOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37467760517, + 48.2657522932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b3b86af49e94bca4b065ee4afb6500e2b087c2d", + "fields": { + "code_commune_insee": "52328", + "nom_de_la_commune": "MONTCHARVOT", + "code_postal": "52400", + "coordonnees_gps": [ + 47.8999798972, + 5.72792351103 + ], + "libelle_d_acheminement": "MONTCHARVOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72792351103, + 47.8999798972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bd09176dd1651f9a2cd111683805f8e645485a7", + "fields": { + "ligne_5": "MOBECQ", + "code_commune_insee": "50236", + "libelle_d_acheminement": "LA HAYE", + "code_postal": "50250", + "nom_de_la_commune": "LA HAYE", + "coordonnees_gps": [ + 49.2835142105, + -1.53943989107 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53943989107, + 49.2835142105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "760d7c9bb244948ee870b0f05d3d8306de50dd85", + "fields": { + "code_commune_insee": "52330", + "nom_de_la_commune": "MONTHERIES", + "code_postal": "52330", + "coordonnees_gps": [ + 48.1797188872, + 4.90288673895 + ], + "libelle_d_acheminement": "MONTHERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90288673895, + 48.1797188872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d6a03200b119a67b453415fd79c71860e24da1b", + "fields": { + "ligne_5": "MONTGARDON", + "code_commune_insee": "50236", + "libelle_d_acheminement": "LA HAYE", + "code_postal": "50250", + "nom_de_la_commune": "LA HAYE", + "coordonnees_gps": [ + 49.2835142105, + -1.53943989107 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53943989107, + 49.2835142105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b32adac288f78dedb035e8686476e9bb8a172ad", + "fields": { + "code_commune_insee": "52342", + "nom_de_la_commune": "MORIONVILLIERS", + "code_postal": "52700", + "coordonnees_gps": [ + 48.374977788, + 5.4107346516 + ], + "libelle_d_acheminement": "MORIONVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4107346516, + 48.374977788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbe2344d459bc1cb629896131c30f7aad30ee9db", + "fields": { + "ligne_5": "ST SYMPHORIEN LE VALOIS", + "code_commune_insee": "50236", + "libelle_d_acheminement": "LA HAYE", + "code_postal": "50250", + "nom_de_la_commune": "LA HAYE", + "coordonnees_gps": [ + 49.2835142105, + -1.53943989107 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53943989107, + 49.2835142105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dcb4d61a6b272f540f1fe383a2daa7ab36b7c52", + "fields": { + "code_commune_insee": "52350", + "nom_de_la_commune": "NEUVELLE LES VOISEY", + "code_postal": "52400", + "coordonnees_gps": [ + 47.8632118259, + 5.78592799086 + ], + "libelle_d_acheminement": "NEUVELLE LES VOISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78592799086, + 47.8632118259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08f1c09abe04152ee789c1c3942326f8bc93d487", + "fields": { + "ligne_5": "LA CHAPELLE EN JUGER", + "code_commune_insee": "50239", + "libelle_d_acheminement": "THEREVAL", + "code_postal": "50570", + "nom_de_la_commune": "THEREVAL", + "coordonnees_gps": [ + 49.1221777065, + -1.17047644258 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17047644258, + 49.1221777065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd9dd71a1905cd031871432ccaa3a5b56778960c", + "fields": { + "ligne_5": "DONNEMARIE", + "code_commune_insee": "52353", + "libelle_d_acheminement": "NOGENT", + "code_postal": "52800", + "nom_de_la_commune": "NOGENT", + "coordonnees_gps": [ + 48.037521428, + 5.36502804198 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36502804198, + 48.037521428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63fcb6f2d42193025a2fe8e416ea08c0b68d8d7b", + "fields": { + "ligne_5": "VEZINS", + "code_commune_insee": "50256", + "libelle_d_acheminement": "ISIGNY LE BUAT", + "code_postal": "50540", + "nom_de_la_commune": "ISIGNY LE BUAT", + "coordonnees_gps": [ + 48.6214964353, + -1.18298649234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18298649234, + 48.6214964353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63f698f250d4c1598b4fdd2fa3dade07a1eb7e7b", + "fields": { + "code_commune_insee": "52356", + "nom_de_la_commune": "NOMECOURT", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4374300268, + 5.07195448796 + ], + "libelle_d_acheminement": "NOMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07195448796, + 48.4374300268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e98dcbffdff794e254d49f3eaa2b19f52579a3f5", + "fields": { + "code_commune_insee": "50258", + "nom_de_la_commune": "JOGANVILLE", + "code_postal": "50310", + "coordonnees_gps": [ + 49.4715637056, + -1.35154159176 + ], + "libelle_d_acheminement": "JOGANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35154159176, + 49.4715637056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b26d35f6a59f7a301cea280c69a8165aa014744f", + "fields": { + "code_commune_insee": "52357", + "nom_de_la_commune": "NONCOURT SUR LE RONGEANT", + "code_postal": "52230", + "coordonnees_gps": [ + 48.4173782579, + 5.25094367311 + ], + "libelle_d_acheminement": "NONCOURT SUR LE RONGEANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25094367311, + 48.4173782579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "064dde05a27fae457be54389e5ec08a321c2576c", + "fields": { + "ligne_5": "CHERENCE LE ROUSSEL", + "code_commune_insee": "50260", + "libelle_d_acheminement": "JUVIGNY LES VALLEES", + "code_postal": "50520", + "nom_de_la_commune": "JUVIGNY LES VALLEES", + "coordonnees_gps": [ + 48.678576703, + -1.04281408802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04281408802, + 48.678576703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bc839f5ad6279aabb33432a88c63fca00edc94b", + "fields": { + "code_commune_insee": "52363", + "nom_de_la_commune": "ORBIGNY AU VAL", + "code_postal": "52360", + "coordonnees_gps": [ + 47.8832429719, + 5.42232556379 + ], + "libelle_d_acheminement": "ORBIGNY AU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42232556379, + 47.8832429719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "298c071973e63068f4c74417432e401f39a06121", + "fields": { + "ligne_5": "LA BAZOGE", + "code_commune_insee": "50260", + "libelle_d_acheminement": "JUVIGNY LES VALLEES", + "code_postal": "50520", + "nom_de_la_commune": "JUVIGNY LES VALLEES", + "coordonnees_gps": [ + 48.678576703, + -1.04281408802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04281408802, + 48.678576703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b096d229ffa78e3b7bf83c27007df1878cbfca3a", + "fields": { + "code_commune_insee": "52369", + "nom_de_la_commune": "ORQUEVAUX", + "code_postal": "52700", + "coordonnees_gps": [ + 48.311099049, + 5.41479052752 + ], + "libelle_d_acheminement": "ORQUEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41479052752, + 48.311099049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5345676dab6b4c327d696f151de382f883454c12", + "fields": { + "ligne_5": "LE MESNIL TOVE", + "code_commune_insee": "50260", + "libelle_d_acheminement": "JUVIGNY LES VALLEES", + "code_postal": "50520", + "nom_de_la_commune": "JUVIGNY LES VALLEES", + "coordonnees_gps": [ + 48.678576703, + -1.04281408802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04281408802, + 48.678576703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3209dee8ca421dede0b1d5908b7d5fe2ff42a976", + "fields": { + "code_commune_insee": "52371", + "nom_de_la_commune": "OUDINCOURT", + "code_postal": "52310", + "coordonnees_gps": [ + 48.2253154213, + 5.08932327892 + ], + "libelle_d_acheminement": "OUDINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08932327892, + 48.2253154213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "911e1e5d0ac9453d2ea92930f2afc255c7bf4160", + "fields": { + "code_commune_insee": "50263", + "nom_de_la_commune": "LAPENTY", + "code_postal": "50600", + "coordonnees_gps": [ + 48.5689340564, + -1.02322797383 + ], + "libelle_d_acheminement": "LAPENTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02322797383, + 48.5689340564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3c446a832d75c0231dc1adc74e09297107121e1", + "fields": { + "code_commune_insee": "52374", + "nom_de_la_commune": "LE PAILLY", + "code_postal": "52600", + "coordonnees_gps": [ + 47.7864627616, + 5.41163164594 + ], + "libelle_d_acheminement": "LE PAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41163164594, + 47.7864627616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c7b6875162d958896136ab019e0e1752bec4804", + "fields": { + "code_commune_insee": "50270", + "nom_de_la_commune": "LIEUSAINT", + "code_postal": "50700", + "coordonnees_gps": [ + 49.4836142567, + -1.47249258747 + ], + "libelle_d_acheminement": "LIEUSAINT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47249258747, + 49.4836142567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33670b3368219f9bbd03e99d1b9cdd1a7a24179c", + "fields": { + "ligne_5": "FRESNOY EN BASSIGNY", + "code_commune_insee": "52377", + "libelle_d_acheminement": "PARNOY EN BASSIGNY", + "code_postal": "52400", + "nom_de_la_commune": "PARNOY EN BASSIGNY", + "coordonnees_gps": [ + 48.0252868226, + 5.6605141849 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6605141849, + 48.0252868226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfbd47ba16ec22940a9a2483abca3b0d7d8e37cb", + "fields": { + "code_commune_insee": "50271", + "nom_de_la_commune": "LINGEARD", + "code_postal": "50670", + "coordonnees_gps": [ + 48.7381417691, + -1.02635116604 + ], + "libelle_d_acheminement": "LINGEARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02635116604, + 48.7381417691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fea035a3985d0de3b4c6c131ac103cdaf5658758", + "fields": { + "code_commune_insee": "52383", + "nom_de_la_commune": "PERRANCEY LES VIEUX MOULINS", + "code_postal": "52200", + "coordonnees_gps": [ + 47.8567750757, + 5.27470200366 + ], + "libelle_d_acheminement": "PERRANCEY LES VIEUX MOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27470200366, + 47.8567750757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea0e484bd4452cf94d60a772fa87ff9c58562ac1", + "fields": { + "ligne_5": "COIGNY", + "code_commune_insee": "50273", + "libelle_d_acheminement": "MONTSENELLE", + "code_postal": "50250", + "nom_de_la_commune": "MONTSENELLE", + "coordonnees_gps": [ + 49.2964016031, + -1.48893562927 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48893562927, + 49.2964016031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0dd1df926aaa9a90d9a96f15081613a7b54bd2a", + "fields": { + "ligne_5": "MONTESSON", + "code_commune_insee": "52388", + "libelle_d_acheminement": "PIERREMONT SUR AMANCE", + "code_postal": "52500", + "nom_de_la_commune": "PIERREMONT SUR AMANCE", + "coordonnees_gps": [ + 47.8040669012, + 5.66061764392 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66061764392, + 47.8040669012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c1abf31fda14055f133cdd973d4689cf837d0a0", + "fields": { + "code_commune_insee": "50274", + "nom_de_la_commune": "LES LOGES MARCHIS", + "code_postal": "50600", + "coordonnees_gps": [ + 48.5342583933, + -1.08560477293 + ], + "libelle_d_acheminement": "LES LOGES MARCHIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08560477293, + 48.5342583933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca6d615721cacad584021175e495b6bf379dc733", + "fields": { + "code_commune_insee": "52391", + "nom_de_la_commune": "PLANRUPT", + "code_postal": "52220", + "coordonnees_gps": [ + 48.512744399, + 4.78886303175 + ], + "libelle_d_acheminement": "PLANRUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78886303175, + 48.512744399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1768f0a4e1da14965fd5fd296ba7ba0a427e956a", + "fields": { + "code_commune_insee": "50295", + "nom_de_la_commune": "MAUPERTUIS", + "code_postal": "50410", + "coordonnees_gps": [ + 48.9551865483, + -1.20001198671 + ], + "libelle_d_acheminement": "MAUPERTUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20001198671, + 48.9551865483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a192f939dca04e91ebb919906fc6e7f501da7af7", + "fields": { + "code_commune_insee": "52395", + "nom_de_la_commune": "POINSON LES GRANCEY", + "code_postal": "52160", + "coordonnees_gps": [ + 47.7081445805, + 4.97920656681 + ], + "libelle_d_acheminement": "POINSON LES GRANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97920656681, + 47.7081445805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bca67b48c3ec10e00050df537817f2ce87aa2cf1", + "fields": { + "code_commune_insee": "50297", + "nom_de_la_commune": "LA MEAUFFE", + "code_postal": "50880", + "coordonnees_gps": [ + 49.1691596357, + -1.09998439521 + ], + "libelle_d_acheminement": "LA MEAUFFE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09998439521, + 49.1691596357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c128412d373707f828395ef0713bd3b318e6c5a", + "fields": { + "code_commune_insee": "52397", + "nom_de_la_commune": "POISEUL", + "code_postal": "52360", + "coordonnees_gps": [ + 47.9229870743, + 5.49096839108 + ], + "libelle_d_acheminement": "POISEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49096839108, + 47.9229870743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "527790372a714f7d422a7ff8ad46469a069a1bba", + "fields": { + "code_commune_insee": "50302", + "nom_de_la_commune": "LE MESNIL AMEY", + "code_postal": "50570", + "coordonnees_gps": [ + 49.1056479231, + -1.21160314829 + ], + "libelle_d_acheminement": "LE MESNIL AMEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21160314829, + 49.1056479231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12be73b04aedca8d385ee59d2d0d2499c16c94a8", + "fields": { + "code_commune_insee": "52398", + "nom_de_la_commune": "POISSONS", + "code_postal": "52230", + "coordonnees_gps": [ + 48.4239473612, + 5.21581768919 + ], + "libelle_d_acheminement": "POISSONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21581768919, + 48.4239473612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37b06eecd9a4923cb92d33580432038fb3f052a5", + "fields": { + "code_commune_insee": "50310", + "nom_de_la_commune": "LE MESNIL EURY", + "code_postal": "50570", + "coordonnees_gps": [ + 49.1618115328, + -1.23538945959 + ], + "libelle_d_acheminement": "LE MESNIL EURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23538945959, + 49.1618115328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33d40c0fd2802e4fe30c90a656f81ff102ec9c7c", + "fields": { + "ligne_5": "BEAUCHARMOY", + "code_commune_insee": "52400", + "libelle_d_acheminement": "LE CHATELET SUR MEUSE", + "code_postal": "52400", + "nom_de_la_commune": "LE CHATELET SUR MEUSE", + "coordonnees_gps": [ + 47.9735467362, + 5.63993048506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63993048506, + 47.9735467362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4969bbba14c1c9f0f650dfc33d57a551d3d20f96", + "fields": { + "code_commune_insee": "50312", + "nom_de_la_commune": "LE MESNIL GILBERT", + "code_postal": "50670", + "coordonnees_gps": [ + 48.7221632657, + -1.0569044647 + ], + "libelle_d_acheminement": "LE MESNIL GILBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0569044647, + 48.7221632657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1845aa322030b0897c9dd0fa9284f4833f064fd4", + "fields": { + "code_commune_insee": "52403", + "nom_de_la_commune": "PRASLAY", + "code_postal": "52160", + "coordonnees_gps": [ + 47.7358613239, + 5.10485637494 + ], + "libelle_d_acheminement": "PRASLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10485637494, + 47.7358613239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c189fd38c3f69469f95a65066d6923fdeb38553c", + "fields": { + "code_commune_insee": "50327", + "nom_de_la_commune": "LA MEURDRAQUIERE", + "code_postal": "50510", + "coordonnees_gps": [ + 48.8607789195, + -1.40495640543 + ], + "libelle_d_acheminement": "LA MEURDRAQUIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40495640543, + 48.8607789195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b19c5836618518e6748f87c43a338c4002c521f", + "fields": { + "ligne_5": "VAUX SOUS AUBIGNY", + "code_commune_insee": "52405", + "libelle_d_acheminement": "LE MONTSAUGEONNAIS", + "code_postal": "52190", + "nom_de_la_commune": "LE MONTSAUGEONNAIS", + "coordonnees_gps": [ + 47.6875295793, + 5.2920187848 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2920187848, + 47.6875295793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af263be2ec593e9f91296f18e3c6e9952a581ffd", + "fields": { + "code_commune_insee": "50335", + "nom_de_la_commune": "MONTAIGU LA BRISETTE", + "code_postal": "50700", + "coordonnees_gps": [ + 49.5672343716, + -1.42035332441 + ], + "libelle_d_acheminement": "MONTAIGU LA BRISETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42035332441, + 49.5672343716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b1e6bf389afd69343d7678852a28e5a50fd618e", + "fields": { + "code_commune_insee": "52406", + "nom_de_la_commune": "PRESSIGNY", + "code_postal": "52500", + "coordonnees_gps": [ + 47.7470915899, + 5.67005264983 + ], + "libelle_d_acheminement": "PRESSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67005264983, + 47.7470915899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96fb8c75c4a5b7606673c92817d019aae47b22b5", + "fields": { + "code_commune_insee": "50345", + "nom_de_la_commune": "MONTHUCHON", + "code_postal": "50200", + "coordonnees_gps": [ + 49.0881773625, + -1.42023463837 + ], + "libelle_d_acheminement": "MONTHUCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42023463837, + 49.0881773625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a38852b0efb2aeec2db4f507207da199a2d434d", + "fields": { + "ligne_5": "LOUZE", + "code_commune_insee": "52411", + "libelle_d_acheminement": "RIVES DERVOISES", + "code_postal": "52220", + "nom_de_la_commune": "RIVES DERVOISES", + "coordonnees_gps": [ + 48.489304653, + 4.6870081083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6870081083, + 48.489304653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fefa7373b627e23d27196a1530be222c65c38e5e", + "fields": { + "code_commune_insee": "50347", + "nom_de_la_commune": "MONTJOIE ST MARTIN", + "code_postal": "50240", + "coordonnees_gps": [ + 48.5257397216, + -1.28858197079 + ], + "libelle_d_acheminement": "MONTJOIE ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28858197079, + 48.5257397216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f5f8c6ed84ca53bbf8370b4f34120b6ff52222a", + "fields": { + "code_commune_insee": "52413", + "nom_de_la_commune": "RACHECOURT SUZEMONT", + "code_postal": "52130", + "coordonnees_gps": [ + 48.4553637737, + 4.97053155021 + ], + "libelle_d_acheminement": "RACHECOURT SUZEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97053155021, + 48.4553637737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52b3a32606ae561068ab8d72f0721d231abc5767", + "fields": { + "code_commune_insee": "50350", + "nom_de_la_commune": "MONTPINCHON", + "code_postal": "50210", + "coordonnees_gps": [ + 49.0263320805, + -1.32027175268 + ], + "libelle_d_acheminement": "MONTPINCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32027175268, + 49.0263320805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bbceff8bb89e51053cb67a5ab9371af0ca38300", + "fields": { + "code_commune_insee": "52422", + "nom_de_la_commune": "RICHEBOURG", + "code_postal": "52120", + "coordonnees_gps": [ + 48.0095629662, + 5.06048237651 + ], + "libelle_d_acheminement": "RICHEBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06048237651, + 48.0095629662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abc06fe426d552d36e2caa6102b91768b4186658", + "fields": { + "code_commune_insee": "50351", + "nom_de_la_commune": "MONTRABOT", + "code_postal": "50810", + "coordonnees_gps": [ + 49.1078812835, + -0.896591935347 + ], + "libelle_d_acheminement": "MONTRABOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.896591935347, + 49.1078812835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daf9fa9b26606f2bcfcd5c68f7dc8674c205ebd4", + "fields": { + "code_commune_insee": "52429", + "nom_de_la_commune": "ROCHES SUR MARNE", + "code_postal": "52410", + "coordonnees_gps": [ + 48.6001078186, + 5.01242215662 + ], + "libelle_d_acheminement": "ROCHES SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01242215662, + 48.6001078186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43154f94753d487938cf1a0bdd1c98ca424c4b9e", + "fields": { + "code_commune_insee": "50357", + "nom_de_la_commune": "MORIGNY", + "code_postal": "50410", + "coordonnees_gps": [ + 48.8814109111, + -1.06958962493 + ], + "libelle_d_acheminement": "MORIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06958962493, + 48.8814109111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b8a91f30a4a332517b420f8ef14ec21836fe056", + "fields": { + "ligne_5": "CHARMOILLES", + "code_commune_insee": "52432", + "libelle_d_acheminement": "ROLAMPONT", + "code_postal": "52260", + "nom_de_la_commune": "ROLAMPONT", + "coordonnees_gps": [ + 47.9506169361, + 5.30859356776 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30859356776, + 47.9506169361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faac78774a14f32b89b527e9567c0b98c91cb1bd", + "fields": { + "ligne_5": "BION", + "code_commune_insee": "50359", + "libelle_d_acheminement": "MORTAIN BOCAGE", + "code_postal": "50140", + "nom_de_la_commune": "MORTAIN BOCAGE", + "coordonnees_gps": [ + 48.6474805702, + -0.931721848821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.931721848821, + 48.6474805702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cfe5bf822bab3f30d02d12ea8fc711c954973a7", + "fields": { + "code_commune_insee": "52448", + "nom_de_la_commune": "ST DIZIER", + "code_postal": "52100", + "coordonnees_gps": [ + 48.6280100668, + 4.94923523578 + ], + "libelle_d_acheminement": "ST DIZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94923523578, + 48.6280100668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c662916dacd2796df5426b533f72da5cc874a9b", + "fields": { + "code_commune_insee": "50362", + "nom_de_la_commune": "MOULINES", + "code_postal": "50600", + "coordonnees_gps": [ + 48.5485016323, + -1.0455527654 + ], + "libelle_d_acheminement": "MOULINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0455527654, + 48.5485016323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a29c25b3d07ac9e9cb365f997e03bd2cbad353dd", + "fields": { + "code_commune_insee": "52467", + "nom_de_la_commune": "SAVIGNY", + "code_postal": "52500", + "coordonnees_gps": [ + 47.7178107179, + 5.64399328349 + ], + "libelle_d_acheminement": "SAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64399328349, + 47.7178107179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e845c8fec84989fa1016e50cb24ed44add981ea6", + "fields": { + "code_commune_insee": "50364", + "nom_de_la_commune": "MUNEVILLE LE BINGARD", + "code_postal": "50490", + "coordonnees_gps": [ + 49.1367650132, + -1.4760994419 + ], + "libelle_d_acheminement": "MUNEVILLE LE BINGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4760994419, + 49.1367650132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "049a8f9e5bd2f0f6d0b4c0a8f37cd0abf13b48a7", + "fields": { + "code_commune_insee": "52472", + "nom_de_la_commune": "SEXFONTAINES", + "code_postal": "52330", + "coordonnees_gps": [ + 48.20974327, + 5.02878676099 + ], + "libelle_d_acheminement": "SEXFONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02878676099, + 48.20974327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ffa54859f489c34225db3299fda650e5edbead3", + "fields": { + "code_commune_insee": "50370", + "nom_de_la_commune": "NEHOU", + "code_postal": "50390", + "coordonnees_gps": [ + 49.4262375768, + -1.56321330148 + ], + "libelle_d_acheminement": "NEHOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56321330148, + 49.4262375768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79bf266afc380e717a56d81ab37510794dbdf45d", + "fields": { + "code_commune_insee": "52473", + "nom_de_la_commune": "SIGNEVILLE", + "code_postal": "52700", + "coordonnees_gps": [ + 48.2656773353, + 5.266565256 + ], + "libelle_d_acheminement": "SIGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.266565256, + 48.2656773353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16ee385d4dbaad75e145a598fe602a7d9058c117", + "fields": { + "code_commune_insee": "50372", + "nom_de_la_commune": "NEUFMESNIL", + "code_postal": "50250", + "coordonnees_gps": [ + 49.310933741, + -1.52894483942 + ], + "libelle_d_acheminement": "NEUFMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52894483942, + 49.310933741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b679ef3bc2069445865e9b3291fd72aa5bea927", + "fields": { + "code_commune_insee": "52474", + "nom_de_la_commune": "SILVAROUVRES", + "code_postal": "52120", + "coordonnees_gps": [ + 48.0618671385, + 4.79407821948 + ], + "libelle_d_acheminement": "SILVAROUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79407821948, + 48.0618671385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7e8641915df0428147c2a8a0691e676bbc70eff", + "fields": { + "code_commune_insee": "50374", + "nom_de_la_commune": "NEUVILLE EN BEAUMONT", + "code_postal": "50250", + "coordonnees_gps": [ + 49.3502533597, + -1.59768959905 + ], + "libelle_d_acheminement": "NEUVILLE EN BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59768959905, + 49.3502533597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c071c3c5d7b05502f82005f8fd92eb432bdad9c8", + "fields": { + "ligne_5": "ROZIERES", + "code_commune_insee": "52479", + "libelle_d_acheminement": "SOMMEVOIRE", + "code_postal": "52220", + "nom_de_la_commune": "SOMMEVOIRE", + "coordonnees_gps": [ + 48.4099270669, + 4.83318653827 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83318653827, + 48.4099270669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84ac144f8bdd9e62bbfb43cb3b41aa4187934b73", + "fields": { + "code_commune_insee": "50384", + "nom_de_la_commune": "OCTEVILLE L AVENEL", + "code_postal": "50630", + "coordonnees_gps": [ + 49.5468058643, + -1.36608867195 + ], + "libelle_d_acheminement": "OCTEVILLE L AVENEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36608867195, + 49.5468058643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36e18eb0a45535eda5f27bc48f37af9ff9b2bbaf", + "fields": { + "ligne_5": "FLORNOY", + "code_commune_insee": "52497", + "libelle_d_acheminement": "TROISFONTAINES LA VILLE", + "code_postal": "52130", + "nom_de_la_commune": "TROISFONTAINES LA VILLE", + "coordonnees_gps": [ + 48.5429240485, + 5.00777358148 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00777358148, + 48.5429240485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b15303f4a26a14e9e769797f0b4e5b36c4e25e53", + "fields": { + "ligne_5": "ORVAL", + "code_commune_insee": "50388", + "libelle_d_acheminement": "ORVAL SUR SIENNE", + "code_postal": "50660", + "nom_de_la_commune": "ORVAL SUR SIENNE", + "coordonnees_gps": [ + 49.0114256149, + -1.46437538722 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46437538722, + 49.0114256149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2539ac2079388594a777e1306d14b72a7f02c132", + "fields": { + "code_commune_insee": "52502", + "nom_de_la_commune": "VALLERET", + "code_postal": "52130", + "coordonnees_gps": [ + 48.4875952404, + 5.01041992627 + ], + "libelle_d_acheminement": "VALLERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01041992627, + 48.4875952404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5c9a70d3a61dd12ee83e49456243f7e822667ad", + "fields": { + "code_commune_insee": "50389", + "nom_de_la_commune": "OUVILLE", + "code_postal": "50210", + "coordonnees_gps": [ + 49.020748865, + -1.36684952643 + ], + "libelle_d_acheminement": "OUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36684952643, + 49.020748865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a77c1c16e36e3f58706b651bd1b47155c3a34ae5", + "fields": { + "code_commune_insee": "52515", + "nom_de_la_commune": "VERSEILLES LE BAS", + "code_postal": "52250", + "coordonnees_gps": [ + 47.7610576364, + 5.28486080198 + ], + "libelle_d_acheminement": "VERSEILLES LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28486080198, + 47.7610576364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ee300625da981ea89ed296b70bf6c0c24bd4ad8", + "fields": { + "ligne_5": "MARTIGNY", + "code_commune_insee": "50391", + "libelle_d_acheminement": "GRANDPARIGNY", + "code_postal": "50600", + "nom_de_la_commune": "GRANDPARIGNY", + "coordonnees_gps": [ + 48.5937472635, + -1.08234718807 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08234718807, + 48.5937472635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c881c5ce59dae1f9988b027b61b4af2c0bbba0d", + "fields": { + "code_commune_insee": "52519", + "nom_de_la_commune": "VESVRES SOUS CHALANCEY", + "code_postal": "52190", + "coordonnees_gps": [ + 47.6952316016, + 5.17073363819 + ], + "libelle_d_acheminement": "VESVRES SOUS CHALANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17073363819, + 47.6952316016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5c6eefc59b1534c70a40b95edf7733d3cc2ad06", + "fields": { + "ligne_5": "LE CHEFRESNE", + "code_commune_insee": "50393", + "libelle_d_acheminement": "PERCY EN NORMANDIE", + "code_postal": "50410", + "nom_de_la_commune": "PERCY EN NORMANDIE", + "coordonnees_gps": [ + 48.9174601419, + -1.2052472339 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2052472339, + 48.9174601419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5433f888dabfeb6692ece6bea0132151177d09bf", + "fields": { + "code_commune_insee": "52523", + "nom_de_la_commune": "VIGNES LA COTE", + "code_postal": "52700", + "coordonnees_gps": [ + 48.2716451194, + 5.31184668552 + ], + "libelle_d_acheminement": "VIGNES LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31184668552, + 48.2716451194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f869b3ee3f31a494598c5232a62c0e6975fdbb3f", + "fields": { + "ligne_5": "PERCY", + "code_commune_insee": "50393", + "libelle_d_acheminement": "PERCY EN NORMANDIE", + "code_postal": "50410", + "nom_de_la_commune": "PERCY EN NORMANDIE", + "coordonnees_gps": [ + 48.9174601419, + -1.2052472339 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2052472339, + 48.9174601419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "950ab8cb9b2d067127b803d5c9049e4df761f46c", + "fields": { + "code_commune_insee": "52524", + "nom_de_la_commune": "VIGNORY", + "code_postal": "52320", + "coordonnees_gps": [ + 48.2756379493, + 5.08951990521 + ], + "libelle_d_acheminement": "VIGNORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08951990521, + 48.2756379493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56b5d9259826dfc1eb8a35613954b834a9504a37", + "fields": { + "code_commune_insee": "50407", + "nom_de_la_commune": "POILLEY", + "code_postal": "50220", + "coordonnees_gps": [ + 48.617924447, + -1.32049882164 + ], + "libelle_d_acheminement": "POILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32049882164, + 48.617924447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f9a7df9148f45ea2f19099dbc974ab748c17588", + "fields": { + "code_commune_insee": "53003", + "nom_de_la_commune": "AMBRIERES LES VALLEES", + "code_postal": "53300", + "coordonnees_gps": [ + 48.4227200634, + -0.624160085775 + ], + "libelle_d_acheminement": "AMBRIERES LES VALLEES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.624160085775, + 48.4227200634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36aa41267c6883b40213ce88fa7527fdfe18b079", + "fields": { + "ligne_5": "CUREY", + "code_commune_insee": "50410", + "libelle_d_acheminement": "PONTORSON", + "code_postal": "50170", + "nom_de_la_commune": "PONTORSON", + "coordonnees_gps": [ + 48.5689721753, + -1.48653363271 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48653363271, + 48.5689721753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d94095f571b28edc646588446a96fbac2d0cc1a4", + "fields": { + "code_commune_insee": "53008", + "nom_de_la_commune": "ARON", + "code_postal": "53440", + "coordonnees_gps": [ + 48.3036694505, + -0.549695026744 + ], + "libelle_d_acheminement": "ARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.549695026744, + 48.3036694505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ed741eb78ca5aa426ef9aee885f78993bbad6ce", + "fields": { + "code_commune_insee": "50411", + "nom_de_la_commune": "PONTS", + "code_postal": "50300", + "coordonnees_gps": [ + 48.7112854871, + -1.33485986216 + ], + "libelle_d_acheminement": "PONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33485986216, + 48.7112854871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8a806efde3372f787baedacfac66009347a7729", + "fields": { + "code_commune_insee": "53015", + "nom_de_la_commune": "LA BACONNIERE", + "code_postal": "53240", + "coordonnees_gps": [ + 48.1750815634, + -0.900384999021 + ], + "libelle_d_acheminement": "LA BACONNIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.900384999021, + 48.1750815634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d5d99b2656b501dbf001435e6867b0f0ffb1f1c", + "fields": { + "ligne_5": "HERENGUERVILLE", + "code_commune_insee": "50419", + "libelle_d_acheminement": "QUETTREVILLE SUR SIENNE", + "code_postal": "50660", + "nom_de_la_commune": "QUETTREVILLE SUR SIENNE", + "coordonnees_gps": [ + 48.9618413224, + -1.46914956989 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46914956989, + 48.9618413224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c56a1d22469fef4e13fd365f3baf1152e1801b86", + "fields": { + "code_commune_insee": "53022", + "nom_de_la_commune": "LA BAZOUGE DE CHEMERE", + "code_postal": "53170", + "coordonnees_gps": [ + 48.007363424, + -0.504663561789 + ], + "libelle_d_acheminement": "LA BAZOUGE DE CHEMERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.504663561789, + 48.007363424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0def3e4ec54787708bf2e309e79f157ea605119", + "fields": { + "ligne_5": "HYENVILLE", + "code_commune_insee": "50419", + "libelle_d_acheminement": "QUETTREVILLE SUR SIENNE", + "code_postal": "50660", + "nom_de_la_commune": "QUETTREVILLE SUR SIENNE", + "coordonnees_gps": [ + 48.9618413224, + -1.46914956989 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46914956989, + 48.9618413224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4819492ae709662d0ee45838846c12b990b6bb95", + "fields": { + "code_commune_insee": "53028", + "nom_de_la_commune": "BELGEARD", + "code_postal": "53440", + "coordonnees_gps": [ + 48.2517598167, + -0.560135475971 + ], + "libelle_d_acheminement": "BELGEARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.560135475971, + 48.2517598167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "175555a35f1a5768b2150d327a1d33650a25c88a", + "fields": { + "code_commune_insee": "50421", + "nom_de_la_commune": "QUINEVILLE", + "code_postal": "50310", + "coordonnees_gps": [ + 49.5108915382, + -1.30534056299 + ], + "libelle_d_acheminement": "QUINEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30534056299, + 49.5108915382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97063dac5fe1baebe60223267e1a42f96ddc07a9", + "fields": { + "code_commune_insee": "53033", + "nom_de_la_commune": "LA BOISSIERE", + "code_postal": "53800", + "coordonnees_gps": [ + 47.7725380187, + -0.978568477474 + ], + "libelle_d_acheminement": "LA BOISSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.978568477474, + 47.7725380187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f23753e4a9d7291ccec3cee122af3805f2a47b8c", + "fields": { + "code_commune_insee": "50425", + "nom_de_la_commune": "RAUVILLE LA BIGOT", + "code_postal": "50260", + "coordonnees_gps": [ + 49.5174637964, + -1.66546170195 + ], + "libelle_d_acheminement": "RAUVILLE LA BIGOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66546170195, + 49.5174637964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a6c40e51985cd2e7063f0f285f6a76e15eb21c5", + "fields": { + "code_commune_insee": "53035", + "nom_de_la_commune": "BOUCHAMPS LES CRAON", + "code_postal": "53800", + "coordonnees_gps": [ + 47.8063086126, + -0.984995031745 + ], + "libelle_d_acheminement": "BOUCHAMPS LES CRAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.984995031745, + 47.8063086126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb49ca2e592cd4ca3c500f3c91ae0347526b9a4a", + "fields": { + "code_commune_insee": "50426", + "nom_de_la_commune": "RAUVILLE LA PLACE", + "code_postal": "50390", + "coordonnees_gps": [ + 49.390519859, + -1.5015509856 + ], + "libelle_d_acheminement": "RAUVILLE LA PLACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5015509856, + 49.390519859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fe20e3c713e2cafef5cc8a93e9904c4616ba2be", + "fields": { + "code_commune_insee": "53036", + "nom_de_la_commune": "BOUERE", + "code_postal": "53290", + "coordonnees_gps": [ + 47.8606333035, + -0.484622471494 + ], + "libelle_d_acheminement": "BOUERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.484622471494, + 47.8606333035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a51d6b3a5877cb45b62b07d1f5e9c61a73398e5", + "fields": { + "code_commune_insee": "50428", + "nom_de_la_commune": "REFFUVEILLE", + "code_postal": "50520", + "coordonnees_gps": [ + 48.6773659485, + -1.11165024883 + ], + "libelle_d_acheminement": "REFFUVEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11165024883, + 48.6773659485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caac9898f6b7223d71d29aa841aa5905f81a127d", + "fields": { + "code_commune_insee": "53038", + "nom_de_la_commune": "BOULAY LES IFS", + "code_postal": "53370", + "coordonnees_gps": [ + 48.4262764002, + -0.138570341957 + ], + "libelle_d_acheminement": "BOULAY LES IFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.138570341957, + 48.4262764002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3aa1f7689b33c2fe429e577d9b8dc3ab30884d7", + "fields": { + "ligne_5": "REMILLY SUR LOZON", + "code_commune_insee": "50431", + "libelle_d_acheminement": "REMILLY LES MARAIS", + "code_postal": "50570", + "nom_de_la_commune": "REMILLY LES MARAIS", + "coordonnees_gps": [ + 49.1797139942, + -1.26085995101 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26085995101, + 49.1797139942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4fb2d266f4325111a2927150a5a7c109dda25ce", + "fields": { + "code_commune_insee": "53039", + "nom_de_la_commune": "LE BOURGNEUF LA FORET", + "code_postal": "53410", + "coordonnees_gps": [ + 48.164229969, + -0.977903623792 + ], + "libelle_d_acheminement": "LE BOURGNEUF LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.977903623792, + 48.164229969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "819373d9cc57a986a6169e1115ae7551d3656e05", + "fields": { + "code_commune_insee": "50433", + "nom_de_la_commune": "REVILLE", + "code_postal": "50760", + "coordonnees_gps": [ + 49.6261392194, + -1.25142117163 + ], + "libelle_d_acheminement": "REVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25142117163, + 49.6261392194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57ae05ade520b167e8610160331dd7d7b9b488bd", + "fields": { + "code_commune_insee": "53040", + "nom_de_la_commune": "BOURGON", + "code_postal": "53410", + "coordonnees_gps": [ + 48.1603649988, + -1.04536225795 + ], + "libelle_d_acheminement": "BOURGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04536225795, + 48.1603649988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3996f16d54be5fba64bb62770f90493f6f50a279", + "fields": { + "code_commune_insee": "50437", + "nom_de_la_commune": "RONCEY", + "code_postal": "50210", + "coordonnees_gps": [ + 48.9835239687, + -1.33024151632 + ], + "libelle_d_acheminement": "RONCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33024151632, + 48.9835239687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c052d1c99f6752ef211da554c7d2b2f9fc352b73", + "fields": { + "code_commune_insee": "53047", + "nom_de_la_commune": "CARELLES", + "code_postal": "53120", + "coordonnees_gps": [ + 48.3887876245, + -0.899702305853 + ], + "libelle_d_acheminement": "CARELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.899702305853, + 48.3887876245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f76e736c7bc0e174bec003aee1b0b564f61dbc2", + "fields": { + "code_commune_insee": "50445", + "nom_de_la_commune": "ST ANDRE DE BOHON", + "code_postal": "50500", + "coordonnees_gps": [ + 49.2389765261, + -1.24797081821 + ], + "libelle_d_acheminement": "ST ANDRE DE BOHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24797081821, + 49.2389765261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "754d9576afea7fc91fe89dbba6404c38e8787c4b", + "fields": { + "code_commune_insee": "53061", + "nom_de_la_commune": "CHARCHIGNE", + "code_postal": "53250", + "coordonnees_gps": [ + 48.4142784855, + -0.407005787666 + ], + "libelle_d_acheminement": "CHARCHIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.407005787666, + 48.4142784855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef440c4377cc5687023aa674e50949a11c3dc225", + "fields": { + "ligne_5": "RANCOUDRAY", + "code_commune_insee": "50456", + "libelle_d_acheminement": "ST CLEMENT RANCOUDRAY", + "code_postal": "50140", + "nom_de_la_commune": "ST CLEMENT RANCOUDRAY", + "coordonnees_gps": [ + 48.6689629346, + -0.890384424865 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.890384424865, + 48.6689629346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "530c8690c2962915667f71852b3ded938d4de93c", + "fields": { + "code_commune_insee": "53069", + "nom_de_la_commune": "CHEVAIGNE DU MAINE", + "code_postal": "53250", + "coordonnees_gps": [ + 48.4381316968, + -0.400629850689 + ], + "libelle_d_acheminement": "CHEVAIGNE DU MAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.400629850689, + 48.4381316968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3394c9d02df13cc67ab1cda1fdba8634d08ad026", + "fields": { + "code_commune_insee": "50461", + "nom_de_la_commune": "ST CYR", + "code_postal": "50310", + "coordonnees_gps": [ + 49.4869134023, + -1.415719419 + ], + "libelle_d_acheminement": "ST CYR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.415719419, + 49.4869134023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23fb7f4abb6a198d28bf6eca4b54bf5bb3cb9cd9", + "fields": { + "code_commune_insee": "53071", + "nom_de_la_commune": "COLOMBIERS DU PLESSIS", + "code_postal": "53120", + "coordonnees_gps": [ + 48.3876502723, + -0.847201528921 + ], + "libelle_d_acheminement": "COLOMBIERS DU PLESSIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.847201528921, + 48.3876502723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b9627ee2aa66c86982244fc7b671304ba9af63e", + "fields": { + "code_commune_insee": "50469", + "nom_de_la_commune": "STE GENEVIEVE", + "code_postal": "50760", + "coordonnees_gps": [ + 49.6595933268, + -1.3069626688 + ], + "libelle_d_acheminement": "STE GENEVIEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3069626688, + 49.6595933268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "688ec0f08fa0e1ac9d7521d2d105e6c77ae91091", + "fields": { + "code_commune_insee": "53077", + "nom_de_la_commune": "COSSE LE VIVIEN", + "code_postal": "53230", + "coordonnees_gps": [ + 47.94585879, + -0.934606329089 + ], + "libelle_d_acheminement": "COSSE LE VIVIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.934606329089, + 47.94585879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61389e2b0314baee6f36bc963f4e3b25384e8b1b", + "fields": { + "code_commune_insee": "50472", + "nom_de_la_commune": "ST GEORGES DE LIVOYE", + "code_postal": "50370", + "coordonnees_gps": [ + 48.7372655684, + -1.2227039529 + ], + "libelle_d_acheminement": "ST GEORGES DE LIVOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2227039529, + 48.7372655684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a5e6034d4577fa840d523fbf29d00946f7792e1", + "fields": { + "code_commune_insee": "53096", + "nom_de_la_commune": "ERNEE", + "code_postal": "53500", + "coordonnees_gps": [ + 48.3039992806, + -0.93628278715 + ], + "libelle_d_acheminement": "ERNEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93628278715, + 48.3039992806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "166ff6564191935970042804a1b8b88596d42cf6", + "fields": { + "code_commune_insee": "50483", + "nom_de_la_commune": "ST GILLES", + "code_postal": "50180", + "coordonnees_gps": [ + 49.0969481522, + -1.16151864411 + ], + "libelle_d_acheminement": "ST GILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16151864411, + 49.0969481522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ae04fb10e6a51e2a0adb673e3b31dcfecf3a5c2", + "fields": { + "code_commune_insee": "53109", + "nom_de_la_commune": "GRAZAY", + "code_postal": "53440", + "coordonnees_gps": [ + 48.2855176903, + -0.47627228769 + ], + "libelle_d_acheminement": "GRAZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47627228769, + 48.2855176903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5356e60978c3b9f2a9dbd3320ac9dd5f03d1e96b", + "fields": { + "code_commune_insee": "50486", + "nom_de_la_commune": "ST JACQUES DE NEHOU", + "code_postal": "50390", + "coordonnees_gps": [ + 49.4201355471, + -1.61663746279 + ], + "libelle_d_acheminement": "ST JACQUES DE NEHOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61663746279, + 49.4201355471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fbe4dfee8622dcd20463ce029b1a8f0748c8f07", + "fields": { + "code_commune_insee": "53111", + "nom_de_la_commune": "LA HAIE TRAVERSAINE", + "code_postal": "53300", + "coordonnees_gps": [ + 48.3586109255, + -0.613698907752 + ], + "libelle_d_acheminement": "LA HAIE TRAVERSAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.613698907752, + 48.3586109255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09d67317e502904aba6c832fb0f02e8043606707", + "fields": { + "ligne_5": "LA CROIX AVRANCHIN", + "code_commune_insee": "50487", + "libelle_d_acheminement": "ST JAMES", + "code_postal": "50240", + "nom_de_la_commune": "ST JAMES", + "coordonnees_gps": [ + 48.5257483373, + -1.32634914406 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32634914406, + 48.5257483373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "439668e3041c2ae2d1abb0db28f27759cb8fcb7a", + "fields": { + "code_commune_insee": "53112", + "nom_de_la_commune": "LE HAM", + "code_postal": "53250", + "coordonnees_gps": [ + 48.3736183022, + -0.353133097864 + ], + "libelle_d_acheminement": "LE HAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.353133097864, + 48.3736183022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9555aec91ee80d68c04f8e33163c3d16ef5a857", + "fields": { + "ligne_5": "NOTRE DAME D ELLE", + "code_commune_insee": "50492", + "libelle_d_acheminement": "ST JEAN D ELLE", + "code_postal": "50810", + "nom_de_la_commune": "ST JEAN D ELLE", + "coordonnees_gps": [ + 49.0936069017, + -0.991213654539 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.991213654539, + 49.0936069017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84f60ed60ec38ac22486b7fae3ce89de7366c69f", + "fields": { + "code_commune_insee": "53126", + "nom_de_la_commune": "LARCHAMP", + "code_postal": "53220", + "coordonnees_gps": [ + 48.3492150628, + -1.00336742476 + ], + "libelle_d_acheminement": "LARCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00336742476, + 48.3492150628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a772d4465a19b0ba6dc1025c6db5c1d220b8d34", + "fields": { + "ligne_5": "ROUXEVILLE", + "code_commune_insee": "50492", + "libelle_d_acheminement": "ST JEAN D ELLE", + "code_postal": "50810", + "nom_de_la_commune": "ST JEAN D ELLE", + "coordonnees_gps": [ + 49.0936069017, + -0.991213654539 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.991213654539, + 49.0936069017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0968026f6186ef54c77d51575cb8566a6f0f73d3", + "fields": { + "code_commune_insee": "53128", + "nom_de_la_commune": "LAUBRIERES", + "code_postal": "53540", + "coordonnees_gps": [ + 47.9483524885, + -1.07070944071 + ], + "libelle_d_acheminement": "LAUBRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07070944071, + 47.9483524885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4376e35f6426627e9bc7054f2639a71e723ccb51", + "fields": { + "ligne_5": "ST LEGER", + "code_commune_insee": "50493", + "libelle_d_acheminement": "ST JEAN DES CHAMPS", + "code_postal": "50320", + "nom_de_la_commune": "ST JEAN DES CHAMPS", + "coordonnees_gps": [ + 48.8240464448, + -1.46346833183 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46346833183, + 48.8240464448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abc147a9f97997b2854a2a70ed84b62bdb255703", + "fields": { + "code_commune_insee": "53130", + "nom_de_la_commune": "LAVAL", + "code_postal": "53000", + "coordonnees_gps": [ + 48.0608565468, + -0.766005687142 + ], + "libelle_d_acheminement": "LAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.766005687142, + 48.0608565468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6678952e5b96457a651ddae96ac32e761cfd8029", + "fields": { + "code_commune_insee": "50504", + "nom_de_la_commune": "ST LOUET SUR VIRE", + "code_postal": "50420", + "coordonnees_gps": [ + 48.9940543586, + -0.987194724514 + ], + "libelle_d_acheminement": "ST LOUET SUR VIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.987194724514, + 48.9940543586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0478cfc103aba20bed96c482f349359debb8e741", + "fields": { + "code_commune_insee": "53133", + "nom_de_la_commune": "LIGNIERES ORGERES", + "code_postal": "53140", + "coordonnees_gps": [ + 48.5288919372, + -0.212232237721 + ], + "libelle_d_acheminement": "LIGNIERES ORGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.212232237721, + 48.5288919372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36c972426b78d17931d81ed4e00aa8206e56ef7f", + "fields": { + "code_commune_insee": "50512", + "nom_de_la_commune": "ST MARTIN DE BONFOSSE", + "code_postal": "50750", + "coordonnees_gps": [ + 49.0416813347, + -1.17448957334 + ], + "libelle_d_acheminement": "ST MARTIN DE BONFOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17448957334, + 49.0416813347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6033f030944402ab45126f58addbe6c2f2a22ffd", + "fields": { + "ligne_5": "ST SULPICE", + "code_commune_insee": "53136", + "libelle_d_acheminement": "LA ROCHE NEUVILLE", + "code_postal": "53360", + "nom_de_la_commune": "LA ROCHE NEUVILLE", + "coordonnees_gps": [ + 47.8683528572, + -0.737119476827 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.737119476827, + 47.8683528572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d25ef4f2ae2f2663c5aa701f2363b3b591c0106c", + "fields": { + "code_commune_insee": "50514", + "nom_de_la_commune": "CHAULIEU", + "code_postal": "50150", + "coordonnees_gps": [ + 48.7475664246, + -0.860916100149 + ], + "libelle_d_acheminement": "CHAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.860916100149, + 48.7475664246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef3d46576f497bf6c94e8920f9aa383b02b0ec85", + "fields": { + "ligne_5": "LOIRON", + "code_commune_insee": "53137", + "libelle_d_acheminement": "LOIRON RUILLE", + "code_postal": "53320", + "nom_de_la_commune": "LOIRON RUILLE", + "coordonnees_gps": [ + 48.0630179288, + -0.919282481771 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.919282481771, + 48.0630179288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "667c3b6d99fa684c4731bc0cd8d226a609df2024", + "fields": { + "code_commune_insee": "50523", + "nom_de_la_commune": "STE MERE EGLISE", + "code_postal": "50480", + "coordonnees_gps": [ + 49.4088606097, + -1.32366056657 + ], + "libelle_d_acheminement": "STE MERE EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32366056657, + 49.4088606097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "121503e424cebd002ae49c82f7f961f29fb8aa45", + "fields": { + "ligne_5": "RUILLE LE GRAVELAIS", + "code_commune_insee": "53137", + "libelle_d_acheminement": "LOIRON RUILLE", + "code_postal": "53320", + "nom_de_la_commune": "LOIRON RUILLE", + "coordonnees_gps": [ + 48.0630179288, + -0.919282481771 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.919282481771, + 48.0630179288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f0c3a9b0dc7409c047facefcdb8c86c77f76669", + "fields": { + "ligne_5": "CHEF DU PONT", + "code_commune_insee": "50523", + "libelle_d_acheminement": "STE MERE EGLISE", + "code_postal": "50480", + "nom_de_la_commune": "STE MERE EGLISE", + "coordonnees_gps": [ + 49.4088606097, + -1.32366056657 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32366056657, + 49.4088606097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b412d5ad9b9a0f78da3a8723e1d73376c55364c0", + "fields": { + "code_commune_insee": "53148", + "nom_de_la_commune": "MEE", + "code_postal": "53400", + "coordonnees_gps": [ + 47.8016835943, + -0.865499945684 + ], + "libelle_d_acheminement": "MEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.865499945684, + 47.8016835943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8cd81df70f00a09557805a4d76847a10a31068f", + "fields": { + "ligne_5": "FOUCARVILLE", + "code_commune_insee": "50523", + "libelle_d_acheminement": "STE MERE EGLISE", + "code_postal": "50480", + "nom_de_la_commune": "STE MERE EGLISE", + "coordonnees_gps": [ + 49.4088606097, + -1.32366056657 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32366056657, + 49.4088606097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f09c560d93dfed20a79168b8b430b46d418c5686", + "fields": { + "code_commune_insee": "53151", + "nom_de_la_commune": "MERAL", + "code_postal": "53230", + "coordonnees_gps": [ + 47.9514671567, + -1.0154942248 + ], + "libelle_d_acheminement": "MERAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0154942248, + 47.9514671567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccaf8f9e8bebddc8642f0908c763ca56ca0d5630", + "fields": { + "code_commune_insee": "50529", + "nom_de_la_commune": "ST NICOLAS DES BOIS", + "code_postal": "50370", + "coordonnees_gps": [ + 48.7615753481, + -1.19249333353 + ], + "libelle_d_acheminement": "ST NICOLAS DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19249333353, + 48.7615753481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31c9ee9dbbba8018983a3750f0cb7d8eb5552958", + "fields": { + "code_commune_insee": "53155", + "nom_de_la_commune": "MONTENAY", + "code_postal": "53500", + "coordonnees_gps": [ + 48.2791740131, + -0.892252753941 + ], + "libelle_d_acheminement": "MONTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.892252753941, + 48.2791740131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b0cab08e659c95a0a15d5f4574c87676cf90c92", + "fields": { + "ligne_5": "PLOMB", + "code_commune_insee": "50535", + "libelle_d_acheminement": "LE PARC", + "code_postal": "50870", + "nom_de_la_commune": "LE PARC", + "coordonnees_gps": [ + 48.7713169182, + -1.29851023982 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29851023982, + 48.7713169182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12d29faa259a3dc01979ca35515e7a9354aeeb50", + "fields": { + "code_commune_insee": "53162", + "nom_de_la_commune": "MOULAY", + "code_postal": "53100", + "coordonnees_gps": [ + 48.2651790153, + -0.621214314022 + ], + "libelle_d_acheminement": "MOULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.621214314022, + 48.2651790153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7230aa217f05328ead7a2da6b023f189e9f68c8", + "fields": { + "code_commune_insee": "50543", + "nom_de_la_commune": "ST QUENTIN SUR LE HOMME", + "code_postal": "50220", + "coordonnees_gps": [ + 48.6452249464, + -1.30041468589 + ], + "libelle_d_acheminement": "ST QUENTIN SUR LE HOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30041468589, + 48.6452249464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2bcc31993145e85cf8cc73c667b51c597d6fade", + "fields": { + "code_commune_insee": "53170", + "nom_de_la_commune": "OISSEAU", + "code_postal": "53300", + "coordonnees_gps": [ + 48.3617009398, + -0.667360504455 + ], + "libelle_d_acheminement": "OISSEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.667360504455, + 48.3617009398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1ba29a3705f7d514c59232ff5595f7b48a9cbc1", + "fields": { + "ligne_5": "LA MANCELLIERE SUR VIRE", + "code_commune_insee": "50546", + "libelle_d_acheminement": "BOURGVALLEES", + "code_postal": "50750", + "nom_de_la_commune": "BOURGVALLEES", + "coordonnees_gps": [ + 49.0498085612, + -1.1310126677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1310126677, + 49.0498085612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71bfc42f679e7d50923ff050639c2dd376da6c67", + "fields": { + "code_commune_insee": "53175", + "nom_de_la_commune": "PARNE SUR ROC", + "code_postal": "53260", + "coordonnees_gps": [ + 48.0096895482, + -0.66530040528 + ], + "libelle_d_acheminement": "PARNE SUR ROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66530040528, + 48.0096895482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16957bbd5a315123f999d19ae1850c1d97716623", + "fields": { + "ligne_5": "ST ROMPHAIRE", + "code_commune_insee": "50546", + "libelle_d_acheminement": "BOURGVALLEES", + "code_postal": "50750", + "nom_de_la_commune": "BOURGVALLEES", + "coordonnees_gps": [ + 49.0498085612, + -1.1310126677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1310126677, + 49.0498085612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d02928ae6f77161f564642e957cc6788ed98a3b3", + "fields": { + "code_commune_insee": "53181", + "nom_de_la_commune": "PONTMAIN", + "code_postal": "53220", + "coordonnees_gps": [ + 48.4336187982, + -1.06521474954 + ], + "libelle_d_acheminement": "PONTMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06521474954, + 48.4336187982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "276d51776b434a2f4402a9003f596400134b691c", + "fields": { + "ligne_5": "LE MESNILBUS", + "code_commune_insee": "50550", + "libelle_d_acheminement": "ST SAUVEUR VILLAGES", + "code_postal": "50490", + "nom_de_la_commune": "ST SAUVEUR VILLAGES", + "coordonnees_gps": [ + 49.1238164508, + -1.40639536649 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40639536649, + 49.1238164508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eab68f9d864cc13a1d16fdfb1f60e98c9533e4a", + "fields": { + "code_commune_insee": "53202", + "nom_de_la_commune": "ST BERTHEVIN LA TANNIERE", + "code_postal": "53220", + "coordonnees_gps": [ + 48.4068199721, + -0.947577369365 + ], + "libelle_d_acheminement": "ST BERTHEVIN LA TANNIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.947577369365, + 48.4068199721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bba312eb677faeb72cdce919820df9a985d9d985", + "fields": { + "ligne_5": "ST SAUVEUR LENDELIN", + "code_commune_insee": "50550", + "libelle_d_acheminement": "ST SAUVEUR VILLAGES", + "code_postal": "50490", + "nom_de_la_commune": "ST SAUVEUR VILLAGES", + "coordonnees_gps": [ + 49.1238164508, + -1.40639536649 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40639536649, + 49.1238164508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c05d30d633095f4a2f3127b5c0bda43a8ebbd8b", + "fields": { + "code_commune_insee": "53204", + "nom_de_la_commune": "ST CALAIS DU DESERT", + "code_postal": "53140", + "coordonnees_gps": [ + 48.490532997, + -0.250672513735 + ], + "libelle_d_acheminement": "ST CALAIS DU DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.250672513735, + 48.490532997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a34390c2d9534528668f3da12287e02897f9f9f", + "fields": { + "code_commune_insee": "50556", + "nom_de_la_commune": "STE SUZANNE SUR VIRE", + "code_postal": "50750", + "coordonnees_gps": [ + 49.0733180514, + -1.05714630383 + ], + "libelle_d_acheminement": "STE SUZANNE SUR VIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05714630383, + 49.0733180514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7710f80f5e33f9e802765ed09443aff50ed12fc2", + "fields": { + "code_commune_insee": "53209", + "nom_de_la_commune": "ST CYR LE GRAVELAIS", + "code_postal": "53320", + "coordonnees_gps": [ + 48.038695875, + -1.00495049618 + ], + "libelle_d_acheminement": "ST CYR LE GRAVELAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00495049618, + 48.038695875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b8484362a25e4d4ee1a2788d9dcdff75c051a96", + "fields": { + "ligne_5": "ANGEY", + "code_commune_insee": "50565", + "libelle_d_acheminement": "SARTILLY BAIE BOCAGE", + "code_postal": "50530", + "nom_de_la_commune": "SARTILLY BAIE BOCAGE", + "coordonnees_gps": [ + 48.7540217735, + -1.46351733597 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46351733597, + 48.7540217735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b83839b1bdb38f1448d9b13bbe3e5485e665d2b", + "fields": { + "code_commune_insee": "53218", + "nom_de_la_commune": "STE GEMMES LE ROBERT", + "code_postal": "53600", + "coordonnees_gps": [ + 48.2045535141, + -0.373170787282 + ], + "libelle_d_acheminement": "STE GEMMES LE ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.373170787282, + 48.2045535141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b411eb7b90539bfc2df06daf7b84bb9aa4b4b53b", + "fields": { + "code_commune_insee": "50571", + "nom_de_la_commune": "SEBEVILLE", + "code_postal": "50480", + "coordonnees_gps": [ + 49.3866049343, + -1.2842458445 + ], + "libelle_d_acheminement": "SEBEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2842458445, + 49.3866049343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7922776b28a1ed5874a683c545a2e2d105ca9de", + "fields": { + "code_commune_insee": "53220", + "nom_de_la_commune": "ST GEORGES LE FLECHARD", + "code_postal": "53480", + "coordonnees_gps": [ + 48.0359442394, + -0.514840617722 + ], + "libelle_d_acheminement": "ST GEORGES LE FLECHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.514840617722, + 48.0359442394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae877bff516db7e4f0d6de5a0ebc53d097d199bb", + "fields": { + "ligne_5": "VENGEONS", + "code_commune_insee": "50582", + "libelle_d_acheminement": "SOURDEVAL", + "code_postal": "50150", + "nom_de_la_commune": "SOURDEVAL", + "coordonnees_gps": [ + 48.7134467987, + -0.891882166303 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.891882166303, + 48.7134467987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3c5660311fcd28fec97b57c49f2cf3429181748", + "fields": { + "code_commune_insee": "53221", + "nom_de_la_commune": "ST GEORGES SUR ERVE", + "code_postal": "53600", + "coordonnees_gps": [ + 48.1772730015, + -0.292545458166 + ], + "libelle_d_acheminement": "ST GEORGES SUR ERVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.292545458166, + 48.1772730015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3c1e26663dface925683dd47754c2af29be85f7", + "fields": { + "code_commune_insee": "50590", + "nom_de_la_commune": "LE TANU", + "code_postal": "50320", + "coordonnees_gps": [ + 48.8042090311, + -1.33539265426 + ], + "libelle_d_acheminement": "LE TANU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33539265426, + 48.8042090311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbfb9698a8990c2bba943980c17f6f2aa62d4e7b", + "fields": { + "code_commune_insee": "53223", + "nom_de_la_commune": "ST GERMAIN DE COULAMER", + "code_postal": "53700", + "coordonnees_gps": [ + 48.2677488568, + -0.185983201965 + ], + "libelle_d_acheminement": "ST GERMAIN DE COULAMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.185983201965, + 48.2677488568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be13955c1b50e0573b0bf17de4b075094ddc2a1e", + "fields": { + "ligne_5": "HEUSSE", + "code_commune_insee": "50591", + "libelle_d_acheminement": "LE TEILLEUL", + "code_postal": "50640", + "nom_de_la_commune": "LE TEILLEUL", + "coordonnees_gps": [ + 48.5412543067, + -0.878410989848 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.878410989848, + 48.5412543067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0314dbdf56a17a6125da1972059446e94879b57", + "fields": { + "code_commune_insee": "53229", + "nom_de_la_commune": "ST JEAN SUR MAYENNE", + "code_postal": "53240", + "coordonnees_gps": [ + 48.1413153806, + -0.752524079247 + ], + "libelle_d_acheminement": "ST JEAN SUR MAYENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.752524079247, + 48.1413153806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3620a782b2ff2129023999fa209cbf27468c50ef", + "fields": { + "ligne_5": "HUSSON", + "code_commune_insee": "50591", + "libelle_d_acheminement": "LE TEILLEUL", + "code_postal": "50640", + "nom_de_la_commune": "LE TEILLEUL", + "coordonnees_gps": [ + 48.5412543067, + -0.878410989848 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.878410989848, + 48.5412543067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27c662f65910de74d414bd00a3e3ac3d2c58fd66", + "fields": { + "code_commune_insee": "53234", + "nom_de_la_commune": "ST LOUP DU GAST", + "code_postal": "53300", + "coordonnees_gps": [ + 48.3871907627, + -0.584446559338 + ], + "libelle_d_acheminement": "ST LOUP DU GAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.584446559338, + 48.3871907627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac0ccd85cc01b0d792f7d4c22bc293d604da9134", + "fields": { + "ligne_5": "FERVACHES", + "code_commune_insee": "50592", + "libelle_d_acheminement": "TESSY BOCAGE", + "code_postal": "50420", + "nom_de_la_commune": "TESSY BOCAGE", + "coordonnees_gps": [ + 48.9633310504, + -1.08464396412 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08464396412, + 48.9633310504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07f27dbc7ccda19fccd89ce389fbb0de67084152", + "fields": { + "code_commune_insee": "53236", + "nom_de_la_commune": "ST MARS DU DESERT", + "code_postal": "53700", + "coordonnees_gps": [ + 48.295036747, + -0.169490797785 + ], + "libelle_d_acheminement": "ST MARS DU DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.169490797785, + 48.295036747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75ba1a5bd0eb5041630849b227d13ceb9d40f39a", + "fields": { + "ligne_5": "PONT FARCY", + "code_commune_insee": "50592", + "libelle_d_acheminement": "TESSY BOCAGE", + "code_postal": "50420", + "nom_de_la_commune": "TESSY BOCAGE", + "coordonnees_gps": [ + 48.9633310504, + -1.08464396412 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08464396412, + 48.9633310504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b806585f59c52ca016b8847e7247af2148ccee5", + "fields": { + "code_commune_insee": "53243", + "nom_de_la_commune": "ST OUEN DES TOITS", + "code_postal": "53410", + "coordonnees_gps": [ + 48.1425474962, + -0.892808198068 + ], + "libelle_d_acheminement": "ST OUEN DES TOITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.892808198068, + 48.1425474962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a3ea57fa3ee133c0282ec49ba533ede9dacfe62", + "fields": { + "code_commune_insee": "50599", + "nom_de_la_commune": "TOLLEVAST", + "code_postal": "50470", + "coordonnees_gps": [ + 49.5790245976, + -1.60738435371 + ], + "libelle_d_acheminement": "TOLLEVAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60738435371, + 49.5790245976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27e422bb504af2919fe177ae6f381d87dab5ea0b", + "fields": { + "code_commune_insee": "53253", + "nom_de_la_commune": "ST SATURNIN DU LIMET", + "code_postal": "53800", + "coordonnees_gps": [ + 47.8160669984, + -1.08925376057 + ], + "libelle_d_acheminement": "ST SATURNIN DU LIMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08925376057, + 47.8160669984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16ec5145774d1308726c97d7bf676e6fefe101bf", + "fields": { + "code_commune_insee": "50613", + "nom_de_la_commune": "VALCANVILLE", + "code_postal": "50760", + "coordonnees_gps": [ + 49.648017352, + -1.32179306363 + ], + "libelle_d_acheminement": "VALCANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32179306363, + 49.648017352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77841548830ecf35d30944ff9a6117371a6bb993", + "fields": { + "ligne_5": "CHAMMES", + "code_commune_insee": "53255", + "libelle_d_acheminement": "STE SUZANNE ET CHAMMES", + "code_postal": "53270", + "nom_de_la_commune": "STE SUZANNE ET CHAMMES", + "coordonnees_gps": [ + 48.1028813013, + -0.354680320285 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.354680320285, + 48.1028813013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "823c86008961a1cf9976389367b0bb4bead0d05f", + "fields": { + "code_commune_insee": "50621", + "nom_de_la_commune": "VAUDREVILLE", + "code_postal": "50310", + "coordonnees_gps": [ + 49.5168980807, + -1.35870638129 + ], + "libelle_d_acheminement": "VAUDREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35870638129, + 49.5168980807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0250334f94346379e203a41e145d14880029622", + "fields": { + "code_commune_insee": "53262", + "nom_de_la_commune": "SOULGE SUR OUETTE", + "code_postal": "53210", + "coordonnees_gps": [ + 48.0623593247, + -0.558425301844 + ], + "libelle_d_acheminement": "SOULGE SUR OUETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.558425301844, + 48.0623593247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dfa54037afdf2ea33d489edf3b2795ea9f26e00", + "fields": { + "code_commune_insee": "50626", + "nom_de_la_commune": "VER", + "code_postal": "50450", + "coordonnees_gps": [ + 48.895581747, + -1.39039156201 + ], + "libelle_d_acheminement": "VER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39039156201, + 48.895581747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f96970450a0e04f2d6df2c8d52c539d5b51cf21e", + "fields": { + "code_commune_insee": "53263", + "nom_de_la_commune": "THUBOEUF", + "code_postal": "53110", + "coordonnees_gps": [ + 48.4958782313, + -0.453905832076 + ], + "libelle_d_acheminement": "THUBOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.453905832076, + 48.4958782313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "644410ae409d09e6074bdf5d84fa630e486e4891", + "fields": { + "code_commune_insee": "50629", + "nom_de_la_commune": "VESLY", + "code_postal": "50430", + "coordonnees_gps": [ + 49.246440274, + -1.49007496954 + ], + "libelle_d_acheminement": "VESLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49007496954, + 49.246440274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48dbb511d269e53daf26395f0d3fe3e24c65695f", + "fields": { + "code_commune_insee": "53272", + "nom_de_la_commune": "VILLEPAIL", + "code_postal": "53250", + "coordonnees_gps": [ + 48.4031461586, + -0.264153409415 + ], + "libelle_d_acheminement": "VILLEPAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.264153409415, + 48.4031461586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0bc10f7025f8da7e6620ba624e8d9216dc44d5d", + "fields": { + "code_commune_insee": "50634", + "nom_de_la_commune": "VIDECOSVILLE", + "code_postal": "50630", + "coordonnees_gps": [ + 49.5668795945, + -1.37148540577 + ], + "libelle_d_acheminement": "VIDECOSVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37148540577, + 49.5668795945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f691dabd2a87fcf01b237e51249ec29909ca4fc5", + "fields": { + "code_commune_insee": "53274", + "nom_de_la_commune": "VIMARCE", + "code_postal": "53160", + "coordonnees_gps": [ + 48.1878029439, + -0.231085796657 + ], + "libelle_d_acheminement": "VIMARCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.231085796657, + 48.1878029439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7523f154b68ae5abacd335910cf34f25077f06c0", + "fields": { + "code_commune_insee": "50648", + "nom_de_la_commune": "YVETOT BOCAGE", + "code_postal": "50700", + "coordonnees_gps": [ + 49.4960572995, + -1.51043693291 + ], + "libelle_d_acheminement": "YVETOT BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51043693291, + 49.4960572995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38b31f88b6c4fd04bb2a22c1170ccc4a2eda56ab", + "fields": { + "code_commune_insee": "54002", + "nom_de_la_commune": "ABBEVILLE LES CONFLANS", + "code_postal": "54800", + "coordonnees_gps": [ + 49.2002692912, + 5.84406780319 + ], + "libelle_d_acheminement": "ABBEVILLE LES CONFLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84406780319, + 49.2002692912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95d8c76b47b29820d43d971d107c76f9c4487000", + "fields": { + "code_commune_insee": "51007", + "nom_de_la_commune": "AMBONNAY", + "code_postal": "51150", + "coordonnees_gps": [ + 49.08689493, + 4.17217235053 + ], + "libelle_d_acheminement": "AMBONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17217235053, + 49.08689493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2adef19bcc99e9ff57ce8bdd16ced07cf5db2fb", + "fields": { + "code_commune_insee": "54003", + "nom_de_la_commune": "ABONCOURT", + "code_postal": "54115", + "coordonnees_gps": [ + 48.3611044547, + 5.98255466791 + ], + "libelle_d_acheminement": "ABONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98255466791, + 48.3611044547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c56764e15ae223cce8471f0654fad211f3b48b5", + "fields": { + "code_commune_insee": "51028", + "nom_de_la_commune": "AVENAY VAL D OR", + "code_postal": "51160", + "coordonnees_gps": [ + 49.0758383697, + 4.04657297912 + ], + "libelle_d_acheminement": "AVENAY VAL D OR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04657297912, + 49.0758383697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "332a37fa40d63f76bb0d7161f4cfe1f2d029f45e", + "fields": { + "code_commune_insee": "54004", + "nom_de_la_commune": "AFFLEVILLE", + "code_postal": "54800", + "coordonnees_gps": [ + 49.2639666613, + 5.75288845363 + ], + "libelle_d_acheminement": "AFFLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75288845363, + 49.2639666613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cb56843b457c2a052e556f3d5bcfd08617d6d71", + "fields": { + "ligne_5": "AY", + "code_commune_insee": "51030", + "libelle_d_acheminement": "AY CHAMPAGNE", + "code_postal": "51160", + "nom_de_la_commune": "AY CHAMPAGNE", + "coordonnees_gps": [ + 49.0625907596, + 3.9973447815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9973447815, + 49.0625907596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9637fa08a39fe4ab4e9bdb885ec618096d44fd29", + "fields": { + "code_commune_insee": "54005", + "nom_de_la_commune": "AFFRACOURT", + "code_postal": "54740", + "coordonnees_gps": [ + 48.458337046, + 6.16536195039 + ], + "libelle_d_acheminement": "AFFRACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16536195039, + 48.458337046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "055b33b285b7c017753159cfa09d26f8c4a9f455", + "fields": { + "code_commune_insee": "51034", + "nom_de_la_commune": "BANNAY", + "code_postal": "51270", + "coordonnees_gps": [ + 48.8547181933, + 3.72167783873 + ], + "libelle_d_acheminement": "BANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72167783873, + 48.8547181933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e5ed8d56ae6f1d2c03705614643734b0ee10ff3", + "fields": { + "code_commune_insee": "54013", + "nom_de_la_commune": "AMENONCOURT", + "code_postal": "54450", + "coordonnees_gps": [ + 48.6300704003, + 6.78443520767 + ], + "libelle_d_acheminement": "AMENONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78443520767, + 48.6300704003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f289c04789ba22fc2121daf0a0e390a7733caac5", + "fields": { + "code_commune_insee": "51042", + "nom_de_la_commune": "BAYE", + "code_postal": "51270", + "coordonnees_gps": [ + 48.8606173405, + 3.75936134657 + ], + "libelle_d_acheminement": "BAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75936134657, + 48.8606173405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a2825702dab900f8ef193a2bc3da82218bd9628", + "fields": { + "code_commune_insee": "54014", + "nom_de_la_commune": "ANCERVILLER", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5333635859, + 6.83699257631 + ], + "libelle_d_acheminement": "ANCERVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83699257631, + 48.5333635859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c03d81a6b06aa44883b488d61da3482412d4d173", + "fields": { + "code_commune_insee": "51059", + "nom_de_la_commune": "BIGNICOURT SUR MARNE", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6813049833, + 4.60875139762 + ], + "libelle_d_acheminement": "BIGNICOURT SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60875139762, + 48.6813049833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00095551caaad17814c13e2525f393fd5203b94b", + "fields": { + "code_commune_insee": "54016", + "nom_de_la_commune": "ANDILLY", + "code_postal": "54200", + "coordonnees_gps": [ + 48.7670812602, + 5.88801466262 + ], + "libelle_d_acheminement": "ANDILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88801466262, + 48.7670812602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c10e7547f5161e98d877857502929efe24c950bc", + "fields": { + "code_commune_insee": "51060", + "nom_de_la_commune": "BIGNICOURT SUR SAULX", + "code_postal": "51340", + "coordonnees_gps": [ + 48.755771866, + 4.78740225896 + ], + "libelle_d_acheminement": "BIGNICOURT SUR SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78740225896, + 48.755771866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "601913bbdf6a3b4eae32ecf75e24f4dadf0b20e1", + "fields": { + "code_commune_insee": "54020", + "nom_de_la_commune": "ANTHELUPT", + "code_postal": "54110", + "coordonnees_gps": [ + 48.6033445755, + 6.41530002506 + ], + "libelle_d_acheminement": "ANTHELUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41530002506, + 48.6033445755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f385c08d0de84fa6b08ccfc0ec3feeaa6b5f7f23", + "fields": { + "code_commune_insee": "51062", + "nom_de_la_commune": "BINARVILLE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.2442879223, + 4.90318973025 + ], + "libelle_d_acheminement": "BINARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90318973025, + 49.2442879223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67e08f92310050fc0e77a3cc33824516da71f5d7", + "fields": { + "code_commune_insee": "54038", + "nom_de_la_commune": "AZERAILLES", + "code_postal": "54122", + "coordonnees_gps": [ + 48.4972745986, + 6.6948706717 + ], + "libelle_d_acheminement": "AZERAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6948706717, + 48.4972745986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a937a1df5577083c81e4894afa2b7c460025f4ed", + "fields": { + "code_commune_insee": "51072", + "nom_de_la_commune": "BOUILLY", + "code_postal": "51390", + "coordonnees_gps": [ + 49.1982100596, + 3.89628678861 + ], + "libelle_d_acheminement": "BOUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89628678861, + 49.1982100596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9961e214880af191e44c1d625538a4b52082e688", + "fields": { + "code_commune_insee": "54043", + "nom_de_la_commune": "BAINVILLE SUR MADON", + "code_postal": "54550", + "coordonnees_gps": [ + 48.5900970896, + 6.08780771245 + ], + "libelle_d_acheminement": "BAINVILLE SUR MADON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08780771245, + 48.5900970896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea80b4d0fafb74db542379cec4262d2eb01c8690", + "fields": { + "code_commune_insee": "51073", + "nom_de_la_commune": "BOULEUSE", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2280540072, + 3.84094917164 + ], + "libelle_d_acheminement": "BOULEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84094917164, + 49.2280540072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d67f01ce8f1512829768639a374083806c20e6e4", + "fields": { + "code_commune_insee": "54048", + "nom_de_la_commune": "LES BAROCHES", + "code_postal": "54150", + "coordonnees_gps": [ + 49.229921661, + 5.88812607827 + ], + "libelle_d_acheminement": "LES BAROCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88812607827, + 49.229921661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "946372c0e506bb86ea584e72fb1056da12e11941", + "fields": { + "ligne_5": "FRESNE LES REIMS", + "code_commune_insee": "51075", + "libelle_d_acheminement": "BOURGOGNE FRESNE", + "code_postal": "51110", + "nom_de_la_commune": "BOURGOGNE FRESNE", + "coordonnees_gps": [ + 49.3547870367, + 4.0718983781 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0718983781, + 49.3547870367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c911f0e86d28d44232ea63610ae83f60df46e1de", + "fields": { + "ligne_5": "GENAVILLE", + "code_commune_insee": "54048", + "libelle_d_acheminement": "LES BAROCHES", + "code_postal": "54150", + "nom_de_la_commune": "LES BAROCHES", + "coordonnees_gps": [ + 49.229921661, + 5.88812607827 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88812607827, + 49.229921661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c980f217a908fa6b331311a9d4d26cff31e1ad11", + "fields": { + "code_commune_insee": "51078", + "nom_de_la_commune": "BOUY", + "code_postal": "51400", + "coordonnees_gps": [ + 49.0872445057, + 4.36349504242 + ], + "libelle_d_acheminement": "BOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36349504242, + 49.0872445057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3a6c59b63dc718dc2935c6de2d5c5d6a6ba3b6f", + "fields": { + "code_commune_insee": "54057", + "nom_de_la_commune": "BEAUMONT", + "code_postal": "54470", + "coordonnees_gps": [ + 48.8517198736, + 5.78823029157 + ], + "libelle_d_acheminement": "BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78823029157, + 48.8517198736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a35406b5e697fdfb15c2860a61f49c3ad39ccef3", + "fields": { + "code_commune_insee": "51079", + "nom_de_la_commune": "BOUZY", + "code_postal": "51150", + "coordonnees_gps": [ + 49.0853543122, + 4.13887616628 + ], + "libelle_d_acheminement": "BOUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13887616628, + 49.0853543122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d3982aa63a083b3ad3aa05bb6cddc144be6d036", + "fields": { + "ligne_5": "LIXIERES", + "code_commune_insee": "54059", + "libelle_d_acheminement": "BELLEAU", + "code_postal": "54610", + "nom_de_la_commune": "BELLEAU", + "coordonnees_gps": [ + 48.8487345093, + 6.18702961708 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18702961708, + 48.8487345093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f2092aabb2dfb1f935409280632c431cbc57dde", + "fields": { + "code_commune_insee": "51083", + "nom_de_la_commune": "BRAUX ST REMY", + "code_postal": "51800", + "coordonnees_gps": [ + 49.024131251, + 4.86523753879 + ], + "libelle_d_acheminement": "BRAUX ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86523753879, + 49.024131251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "755eb06b6299789ed58ea1b21f313b6b0c9ffc6d", + "fields": { + "code_commune_insee": "54060", + "nom_de_la_commune": "BELLEVILLE", + "code_postal": "54940", + "coordonnees_gps": [ + 48.8144707448, + 6.08968796916 + ], + "libelle_d_acheminement": "BELLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08968796916, + 48.8144707448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40bab020f684b5b156d91e4659c09a5b0d765fed", + "fields": { + "code_commune_insee": "51090", + "nom_de_la_commune": "BROUSSY LE GRAND", + "code_postal": "51230", + "coordonnees_gps": [ + 48.7889797353, + 3.87056310376 + ], + "libelle_d_acheminement": "BROUSSY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87056310376, + 48.7889797353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f07033f8dcb65912725342e535e80e7255c593b2", + "fields": { + "code_commune_insee": "54067", + "nom_de_la_commune": "BEUVEILLE", + "code_postal": "54620", + "coordonnees_gps": [ + 49.4363497823, + 5.67562424969 + ], + "libelle_d_acheminement": "BEUVEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67562424969, + 49.4363497823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c888cf351ae0df042b62ed81e1b29bbdc5a078a4", + "fields": { + "code_commune_insee": "51092", + "nom_de_la_commune": "BROYES", + "code_postal": "51120", + "coordonnees_gps": [ + 48.7612770796, + 3.75727727145 + ], + "libelle_d_acheminement": "BROYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75727727145, + 48.7612770796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d1b8f962aa79181abc943cb8607d1b8523aaf72", + "fields": { + "code_commune_insee": "54068", + "nom_de_la_commune": "BEUVEZIN", + "code_postal": "54115", + "coordonnees_gps": [ + 48.3785491656, + 5.97284907185 + ], + "libelle_d_acheminement": "BEUVEZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97284907185, + 48.3785491656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c42ca32a111b15f4c34dbd287e303f3c36964440", + "fields": { + "code_commune_insee": "51099", + "nom_de_la_commune": "BUSSY LETTREE", + "code_postal": "51320", + "coordonnees_gps": [ + 48.803079986, + 4.25136495939 + ], + "libelle_d_acheminement": "BUSSY LETTREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25136495939, + 48.803079986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dd6c4f3edc6edb03a96bdb18638dde78f3d7b7e", + "fields": { + "code_commune_insee": "54070", + "nom_de_la_commune": "BEY SUR SEILLE", + "code_postal": "54760", + "coordonnees_gps": [ + 48.7957774029, + 6.33608176026 + ], + "libelle_d_acheminement": "BEY SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33608176026, + 48.7957774029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f844d98c655c26bbd295238e69123239a39c1f5", + "fields": { + "code_commune_insee": "51104", + "nom_de_la_commune": "CERNAY EN DORMOIS", + "code_postal": "51800", + "coordonnees_gps": [ + 49.2241452412, + 4.76942905433 + ], + "libelle_d_acheminement": "CERNAY EN DORMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76942905433, + 49.2241452412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b1952615b9390aa5103fe7bada05c37541f7582", + "fields": { + "code_commune_insee": "54071", + "nom_de_la_commune": "BEZANGE LA GRANDE", + "code_postal": "54370", + "coordonnees_gps": [ + 48.747640463, + 6.47273971333 + ], + "libelle_d_acheminement": "BEZANGE LA GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47273971333, + 48.747640463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0844a519035f7eff71bb19f516771b8ec1095f32", + "fields": { + "code_commune_insee": "51110", + "nom_de_la_commune": "CHALTRAIT", + "code_postal": "51130", + "coordonnees_gps": [ + 48.9351662662, + 3.89300580573 + ], + "libelle_d_acheminement": "CHALTRAIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89300580573, + 48.9351662662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41998f52b4bed9ac532071d24afe326959c6e092", + "fields": { + "code_commune_insee": "54082", + "nom_de_la_commune": "BONCOURT", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1725135773, + 5.82265705678 + ], + "libelle_d_acheminement": "BONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82265705678, + 49.1725135773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2982fa2bf4e8165849cfb0c39c9b7204d67c2cc0", + "fields": { + "code_commune_insee": "51133", + "nom_de_la_commune": "LE CHATELIER", + "code_postal": "51330", + "coordonnees_gps": [ + 48.9369936984, + 4.92578569834 + ], + "libelle_d_acheminement": "LE CHATELIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92578569834, + 48.9369936984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a63b29bd78d3925ba099ded0c77f275d51f5799d", + "fields": { + "code_commune_insee": "54087", + "nom_de_la_commune": "BOUILLONVILLE", + "code_postal": "54470", + "coordonnees_gps": [ + 48.9409400392, + 5.84719536115 + ], + "libelle_d_acheminement": "BOUILLONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84719536115, + 48.9409400392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46eaec68f55c03a24b8001d3f797c9e403f03746", + "fields": { + "code_commune_insee": "51134", + "nom_de_la_commune": "CHATELRAOULD ST LOUVENT", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6623062215, + 4.51571278495 + ], + "libelle_d_acheminement": "CHATELRAOULD ST LOUVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51571278495, + 48.6623062215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f406a0183a34f221ce4145478b9bbbbf666d2b8", + "fields": { + "code_commune_insee": "54088", + "nom_de_la_commune": "BOUVRON", + "code_postal": "54200", + "coordonnees_gps": [ + 48.7396311739, + 5.88530993382 + ], + "libelle_d_acheminement": "BOUVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88530993382, + 48.7396311739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f58eda410f40e037845640f03814215021675a1", + "fields": { + "code_commune_insee": "51137", + "nom_de_la_commune": "CHATILLON SUR MORIN", + "code_postal": "51310", + "coordonnees_gps": [ + 48.6976684127, + 3.58856747174 + ], + "libelle_d_acheminement": "CHATILLON SUR MORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58856747174, + 48.6976684127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e0dc89820e801c8c62f7ac546a8d9a44c48a4fc", + "fields": { + "code_commune_insee": "54095", + "nom_de_la_commune": "BRATTE", + "code_postal": "54610", + "coordonnees_gps": [ + 48.8164658679, + 6.21836030059 + ], + "libelle_d_acheminement": "BRATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21836030059, + 48.8164658679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f26977f26c77a93b381e901d69fdd8c5006fa497", + "fields": { + "code_commune_insee": "51143", + "nom_de_la_commune": "LE CHEMIN", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0002264299, + 4.97827512976 + ], + "libelle_d_acheminement": "LE CHEMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97827512976, + 49.0002264299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72bf8e36888919df01e4ca2c6a6a46bd531d9440", + "fields": { + "code_commune_insee": "54096", + "nom_de_la_commune": "BREHAIN LA VILLE", + "code_postal": "54190", + "coordonnees_gps": [ + 49.4396153658, + 5.88537167291 + ], + "libelle_d_acheminement": "BREHAIN LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88537167291, + 49.4396153658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "606a244ea137e1552b2d0987e277734e74a9631f", + "fields": { + "code_commune_insee": "51156", + "nom_de_la_commune": "CLOYES SUR MARNE", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6612318612, + 4.64206905718 + ], + "libelle_d_acheminement": "CLOYES SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64206905718, + 48.6612318612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4bd95efadecb16a5a82bfeed6323e624119ebd2", + "fields": { + "code_commune_insee": "54102", + "nom_de_la_commune": "BRULEY", + "code_postal": "54200", + "coordonnees_gps": [ + 48.7129215737, + 5.85662158856 + ], + "libelle_d_acheminement": "BRULEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85662158856, + 48.7129215737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc569a40920f82f85b198eac782321675adbe2b9", + "fields": { + "ligne_5": "MORAINS", + "code_commune_insee": "51158", + "libelle_d_acheminement": "VAL DES MARAIS", + "code_postal": "51130", + "nom_de_la_commune": "VAL DES MARAIS", + "coordonnees_gps": [ + 48.8273139118, + 3.96840907593 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96840907593, + 48.8273139118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b671f9f01e7cfd751a03bec0d360fff041a43ba", + "fields": { + "code_commune_insee": "54110", + "nom_de_la_commune": "CERVILLE", + "code_postal": "54420", + "coordonnees_gps": [ + 48.6953044901, + 6.31206321567 + ], + "libelle_d_acheminement": "CERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31206321567, + 48.6953044901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0295b94075fe1542545bfce02e88f50f5d4713e", + "fields": { + "code_commune_insee": "51160", + "nom_de_la_commune": "COMPERTRIX", + "code_postal": "51510", + "coordonnees_gps": [ + 48.9280892911, + 4.32579427772 + ], + "libelle_d_acheminement": "COMPERTRIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32579427772, + 48.9280892911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d53eab991bf9475ca7fd12ae1aa525397d1cce95", + "fields": { + "code_commune_insee": "54114", + "nom_de_la_commune": "CHAMPEY SUR MOSELLE", + "code_postal": "54700", + "coordonnees_gps": [ + 48.9572800681, + 6.06611088952 + ], + "libelle_d_acheminement": "CHAMPEY SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06611088952, + 48.9572800681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6df6026c40199dee1cfcf5e55fa832b42d8766c2", + "fields": { + "code_commune_insee": "51174", + "nom_de_la_commune": "CORRIBERT", + "code_postal": "51270", + "coordonnees_gps": [ + 48.9415239593, + 3.76703691409 + ], + "libelle_d_acheminement": "CORRIBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76703691409, + 48.9415239593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3d095efe786c0f952f8a589af7272d703522838", + "fields": { + "code_commune_insee": "54118", + "nom_de_la_commune": "CHARENCY VEZIN", + "code_postal": "54260", + "coordonnees_gps": [ + 49.4847390739, + 5.51467592253 + ], + "libelle_d_acheminement": "CHARENCY VEZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51467592253, + 49.4847390739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8e8b1b2dd7c6d550c9633e9da836baf32b455a2", + "fields": { + "code_commune_insee": "51176", + "nom_de_la_commune": "CORROY", + "code_postal": "51230", + "coordonnees_gps": [ + 48.7025366162, + 3.95701088583 + ], + "libelle_d_acheminement": "CORROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95701088583, + 48.7025366162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a348977f98496ffff509892e47cd10471554a3dc", + "fields": { + "code_commune_insee": "54120", + "nom_de_la_commune": "CHARMES LA COTE", + "code_postal": "54113", + "coordonnees_gps": [ + 48.6249619246, + 5.82750911815 + ], + "libelle_d_acheminement": "CHARMES LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82750911815, + 48.6249619246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbef2fdba1ee0d042c21d3d18da12c42c946fb1a", + "fields": { + "code_commune_insee": "51178", + "nom_de_la_commune": "COUPETZ", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8133160842, + 4.3502647164 + ], + "libelle_d_acheminement": "COUPETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3502647164, + 48.8133160842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd5110afda308878322b7b582463e9c9a3e20cb7", + "fields": { + "code_commune_insee": "54123", + "nom_de_la_commune": "CHAVIGNY", + "code_postal": "54230", + "coordonnees_gps": [ + 48.6318722028, + 6.13387769869 + ], + "libelle_d_acheminement": "CHAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13387769869, + 48.6318722028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84df600ad2b12601bb0620534b5662f3809ea2b0", + "fields": { + "code_commune_insee": "51186", + "nom_de_la_commune": "COURJEONNET", + "code_postal": "51270", + "coordonnees_gps": [ + 48.8245748598, + 3.82986361597 + ], + "libelle_d_acheminement": "COURJEONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82986361597, + 48.8245748598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4c9d11db6f4a4b09bf905e9c4f01f8dd3d62960", + "fields": { + "code_commune_insee": "54135", + "nom_de_la_commune": "COLOMBEY LES BELLES", + "code_postal": "54170", + "coordonnees_gps": [ + 48.5163026509, + 5.89559203198 + ], + "libelle_d_acheminement": "COLOMBEY LES BELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89559203198, + 48.5163026509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ab3046a4b5ba2df8afc65168bb43a5c153546a1", + "fields": { + "code_commune_insee": "51188", + "nom_de_la_commune": "COURMAS", + "code_postal": "51390", + "coordonnees_gps": [ + 49.1889586184, + 3.9120738875 + ], + "libelle_d_acheminement": "COURMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9120738875, + 49.1889586184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "804dc05cc7dcc74ff3ed5d30fb2b9b9e8766feca", + "fields": { + "code_commune_insee": "54144", + "nom_de_la_commune": "CREVECHAMPS", + "code_postal": "54290", + "coordonnees_gps": [ + 48.5192078306, + 6.26378884079 + ], + "libelle_d_acheminement": "CREVECHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26378884079, + 48.5192078306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba6291a757525b5b86023d6ff789bd79c8a27df5", + "fields": { + "code_commune_insee": "51191", + "nom_de_la_commune": "COURTEMONT", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1404547237, + 4.78279338239 + ], + "libelle_d_acheminement": "COURTEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78279338239, + 49.1404547237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "666984195addb1393b1ec637ce49853d2bd5e214", + "fields": { + "code_commune_insee": "54147", + "nom_de_la_commune": "CRION", + "code_postal": "54300", + "coordonnees_gps": [ + 48.6444858777, + 6.55052825992 + ], + "libelle_d_acheminement": "CRION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55052825992, + 48.6444858777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31f5b010e8131cfda86b88df109055634147a920", + "fields": { + "code_commune_insee": "51192", + "nom_de_la_commune": "COURTHIEZY", + "code_postal": "51700", + "coordonnees_gps": [ + 49.0472061076, + 3.60014193409 + ], + "libelle_d_acheminement": "COURTHIEZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60014193409, + 49.0472061076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b375bfe1e367e1fdcc9feba32459bc9ab9848017", + "fields": { + "code_commune_insee": "54149", + "nom_de_la_commune": "CRUSNES", + "code_postal": "54680", + "coordonnees_gps": [ + 49.4338705839, + 5.9207515095 + ], + "libelle_d_acheminement": "CRUSNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9207515095, + 49.4338705839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77d9e07cba3e675a2883ae62d0e8aea9b3dd5b2f", + "fields": { + "code_commune_insee": "51197", + "nom_de_la_commune": "LA CROIX EN CHAMPAGNE", + "code_postal": "51600", + "coordonnees_gps": [ + 49.068970184, + 4.6608844245 + ], + "libelle_d_acheminement": "LA CROIX EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6608844245, + 49.068970184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e90f5f3d658b5f727dccf99cd324f1e44248bdf", + "fields": { + "code_commune_insee": "54150", + "nom_de_la_commune": "CUSTINES", + "code_postal": "54670", + "coordonnees_gps": [ + 48.7893818613, + 6.14616923168 + ], + "libelle_d_acheminement": "CUSTINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14616923168, + 48.7893818613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28e236e3e5393c13bd54e19e17efe457234fc2db", + "fields": { + "code_commune_insee": "51205", + "nom_de_la_commune": "DAMPIERRE AU TEMPLE", + "code_postal": "51400", + "coordonnees_gps": [ + 49.0387201638, + 4.39365189938 + ], + "libelle_d_acheminement": "DAMPIERRE AU TEMPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39365189938, + 49.0387201638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "728b4292dcfb8a3615af91caf14a5cba1af57caf", + "fields": { + "code_commune_insee": "54156", + "nom_de_la_commune": "DIARVILLE", + "code_postal": "54930", + "coordonnees_gps": [ + 48.3870401502, + 6.13074893357 + ], + "libelle_d_acheminement": "DIARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13074893357, + 48.3870401502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e54e50f143f75777a14be2c0c1166a1cf6950c2", + "fields": { + "code_commune_insee": "51215", + "nom_de_la_commune": "DOMPREMY", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7333043849, + 4.73803791435 + ], + "libelle_d_acheminement": "DOMPREMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73803791435, + 48.7333043849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b52af823bf91a443da515a43d106e02a5b41a76", + "fields": { + "code_commune_insee": "54160", + "nom_de_la_commune": "DOMEVRE EN HAYE", + "code_postal": "54385", + "coordonnees_gps": [ + 48.8145983762, + 5.93513051722 + ], + "libelle_d_acheminement": "DOMEVRE EN HAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93513051722, + 48.8145983762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a68caed00d1b0420226af76812e69a56eee4232", + "fields": { + "code_commune_insee": "51218", + "nom_de_la_commune": "VAL DE VIERE", + "code_postal": "51340", + "coordonnees_gps": [ + 48.8193926004, + 4.74532612173 + ], + "libelle_d_acheminement": "VAL DE VIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74532612173, + 48.8193926004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4889e7f089e0a19a4f6a6361e42ab6e2d6d0425", + "fields": { + "code_commune_insee": "54164", + "nom_de_la_commune": "DOMMARIE EULMONT", + "code_postal": "54115", + "coordonnees_gps": [ + 48.4188444758, + 6.03214502759 + ], + "libelle_d_acheminement": "DOMMARIE EULMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03214502759, + 48.4188444758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77172a40137ae3ad6fa3500fdd13b562421c6b8d", + "fields": { + "code_commune_insee": "51224", + "nom_de_la_commune": "ECRIENNES", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6922657647, + 4.68742317989 + ], + "libelle_d_acheminement": "ECRIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68742317989, + 48.6922657647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82abf45909e48b50d6c9af09e15b7ecbba22c313", + "fields": { + "code_commune_insee": "54169", + "nom_de_la_commune": "DOMPRIX", + "code_postal": "54490", + "coordonnees_gps": [ + 49.3288239969, + 5.76432925243 + ], + "libelle_d_acheminement": "DOMPRIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76432925243, + 49.3288239969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a01189f35a106383ced9028bcf412c23ae48daf", + "fields": { + "code_commune_insee": "51227", + "nom_de_la_commune": "ECURY SUR COOLE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8957543213, + 4.3447919413 + ], + "libelle_d_acheminement": "ECURY SUR COOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3447919413, + 48.8957543213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88d70320a9c85164ef214daf5e7a7b343ff1cce2", + "fields": { + "code_commune_insee": "54170", + "nom_de_la_commune": "DOMPTAIL EN L AIR", + "code_postal": "54290", + "coordonnees_gps": [ + 48.5112118028, + 6.33509789172 + ], + "libelle_d_acheminement": "DOMPTAIL EN L AIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33509789172, + 48.5112118028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ed8d2fdd5f15fa875d00b56beb2ca9cd7226493", + "fields": { + "code_commune_insee": "51230", + "nom_de_la_commune": "EPERNAY", + "code_postal": "51200", + "coordonnees_gps": [ + 49.037000689, + 3.93144626202 + ], + "libelle_d_acheminement": "EPERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93144626202, + 49.037000689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3be323e5101e671a555a32290eef436c43cd1fd", + "fields": { + "code_commune_insee": "54172", + "nom_de_la_commune": "DONCOURT LES LONGUYON", + "code_postal": "54620", + "coordonnees_gps": [ + 49.442470433, + 5.71492699523 + ], + "libelle_d_acheminement": "DONCOURT LES LONGUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71492699523, + 49.442470433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4426062481f91937d82549568f7dc9f65b98b8bc", + "fields": { + "code_commune_insee": "51244", + "nom_de_la_commune": "FAUX VESIGNEUL", + "code_postal": "51320", + "coordonnees_gps": [ + 48.7824659739, + 4.37941197112 + ], + "libelle_d_acheminement": "FAUX VESIGNEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37941197112, + 48.7824659739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f8a82210b69d1cb5281b2ced205a45396181ff6", + "fields": { + "code_commune_insee": "54183", + "nom_de_la_commune": "ESSEY LA COTE", + "code_postal": "54830", + "coordonnees_gps": [ + 48.423637788, + 6.47050708108 + ], + "libelle_d_acheminement": "ESSEY LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47050708108, + 48.423637788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2848af531734f86ebaf422d0a5642374c2594e9a", + "fields": { + "code_commune_insee": "51251", + "nom_de_la_commune": "FLAVIGNY", + "code_postal": "51190", + "coordonnees_gps": [ + 48.9752908905, + 4.06189871068 + ], + "libelle_d_acheminement": "FLAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06189871068, + 48.9752908905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db6858a020a63c8d5d9580d98bbce9b292db84b2", + "fields": { + "code_commune_insee": "54184", + "nom_de_la_commune": "ESSEY LES NANCY", + "code_postal": "54270", + "coordonnees_gps": [ + 48.7075649773, + 6.23284287776 + ], + "libelle_d_acheminement": "ESSEY LES NANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23284287776, + 48.7075649773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa7d486992c0e51156656af73beadcfbfe78b751", + "fields": { + "code_commune_insee": "51254", + "nom_de_la_commune": "FONTAINE DENIS NUISY", + "code_postal": "51120", + "coordonnees_gps": [ + 48.6316590806, + 3.67679439561 + ], + "libelle_d_acheminement": "FONTAINE DENIS NUISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67679439561, + 48.6316590806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b29c9387cc1e33967b5aa463fb539510594665d", + "fields": { + "code_commune_insee": "54196", + "nom_de_la_commune": "FLAVIGNY SUR MOSELLE", + "code_postal": "54630", + "coordonnees_gps": [ + 48.5696887891, + 6.19347520507 + ], + "libelle_d_acheminement": "FLAVIGNY SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19347520507, + 48.5696887891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19ab1975e28ff30f272dc82c3cd10915bfda7f23", + "fields": { + "code_commune_insee": "51262", + "nom_de_la_commune": "FRIGNICOURT", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7010173112, + 4.5952745376 + ], + "libelle_d_acheminement": "FRIGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5952745376, + 48.7010173112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16fd134b691241a9f55f5316e5508a9b7dcb768f", + "fields": { + "code_commune_insee": "54200", + "nom_de_la_commune": "FLIREY", + "code_postal": "54470", + "coordonnees_gps": [ + 48.8835595963, + 5.85130889526 + ], + "libelle_d_acheminement": "FLIREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85130889526, + 48.8835595963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8062211c62910578958fc1546aad88f4d1aa2770", + "fields": { + "code_commune_insee": "51264", + "nom_de_la_commune": "LE GAULT SOIGNY", + "code_postal": "51210", + "coordonnees_gps": [ + 48.8104099198, + 3.60267965584 + ], + "libelle_d_acheminement": "LE GAULT SOIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60267965584, + 48.8104099198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99d61fa61816b59bc0661ea33c7f9791774e3939", + "fields": { + "code_commune_insee": "54210", + "nom_de_la_commune": "FREMENIL", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5614320905, + 6.70677381054 + ], + "libelle_d_acheminement": "FREMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70677381054, + 48.5614320905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "785dc524051175ce20d9a7654cf681121c1b4b9b", + "fields": { + "code_commune_insee": "51277", + "nom_de_la_commune": "STE MARIE DU LAC NUISEMENT", + "code_postal": "51290", + "coordonnees_gps": [ + 48.6009118806, + 4.76140676125 + ], + "libelle_d_acheminement": "STE MARIE DU LAC NUISEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76140676125, + 48.6009118806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44882cd5a25a1b0f5dedfb5604bf40d9cd512d9d", + "fields": { + "code_commune_insee": "54216", + "nom_de_la_commune": "FROVILLE", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4692546468, + 6.36462739875 + ], + "libelle_d_acheminement": "FROVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36462739875, + 48.4692546468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe1bd0901a22a0bb47709273d476cda0adb77509", + "fields": { + "code_commune_insee": "51280", + "nom_de_la_commune": "GRATREUIL", + "code_postal": "51800", + "coordonnees_gps": [ + 49.2460502906, + 4.69103289221 + ], + "libelle_d_acheminement": "GRATREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69103289221, + 49.2460502906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3790da5e34b91d6ca3e214ee4fc92c75529631a4", + "fields": { + "code_commune_insee": "54219", + "nom_de_la_commune": "GELLENONCOURT", + "code_postal": "54110", + "coordonnees_gps": [ + 48.6776898663, + 6.38064814902 + ], + "libelle_d_acheminement": "GELLENONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38064814902, + 48.6776898663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53df7d76151754bb2fafad2f8f958f0fa1541c2a", + "fields": { + "code_commune_insee": "51299", + "nom_de_la_commune": "ISLES SUR SUIPPE", + "code_postal": "51110", + "coordonnees_gps": [ + 49.3630419181, + 4.202938765 + ], + "libelle_d_acheminement": "ISLES SUR SUIPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.202938765, + 49.3630419181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c656a5e7b33953a884eb28dd350bab439220715c", + "fields": { + "code_commune_insee": "54228", + "nom_de_la_commune": "GIRIVILLER", + "code_postal": "54830", + "coordonnees_gps": [ + 48.4348846294, + 6.49599417359 + ], + "libelle_d_acheminement": "GIRIVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49599417359, + 48.4348846294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9c38ea00c24346ffee0ab0122935d7d54e5160d", + "fields": { + "code_commune_insee": "51310", + "nom_de_la_commune": "JOUY LES REIMS", + "code_postal": "51390", + "coordonnees_gps": [ + 49.2123542299, + 3.92767747156 + ], + "libelle_d_acheminement": "JOUY LES REIMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92767747156, + 49.2123542299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "681772d70fd104a808b0cd276500c26f8bae1d45", + "fields": { + "code_commune_insee": "54232", + "nom_de_la_commune": "GONDREVILLE", + "code_postal": "54840", + "coordonnees_gps": [ + 48.6824829595, + 5.98127899343 + ], + "libelle_d_acheminement": "GONDREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98127899343, + 48.6824829595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85b7eec72728dfa9857c0aef3fafdcc1a24d095c", + "fields": { + "code_commune_insee": "51312", + "nom_de_la_commune": "JUVIGNY", + "code_postal": "51150", + "coordonnees_gps": [ + 49.0158806281, + 4.27525107126 + ], + "libelle_d_acheminement": "JUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27525107126, + 49.0158806281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ffcdd2299b6d871614603181b64291ee61dba37", + "fields": { + "code_commune_insee": "54234", + "nom_de_la_commune": "GORCY", + "code_postal": "54730", + "coordonnees_gps": [ + 49.536095003, + 5.68308068922 + ], + "libelle_d_acheminement": "GORCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68308068922, + 49.536095003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b9c621d14dbd99a4347c1903f96d0f8d2e4049e", + "fields": { + "code_commune_insee": "51315", + "nom_de_la_commune": "LANDRICOURT", + "code_postal": "51290", + "coordonnees_gps": [ + 48.6128944545, + 4.8069011125 + ], + "libelle_d_acheminement": "LANDRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8069011125, + 48.6128944545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "530e98d8177180c128fbe7cb3fdb9e7b7d88ad88", + "fields": { + "code_commune_insee": "54245", + "nom_de_la_commune": "HAIGNEVILLE", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4842703886, + 6.34106087649 + ], + "libelle_d_acheminement": "HAIGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34106087649, + 48.4842703886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "531e3b6216e7c5e5f2af693b51ead50bb7010097", + "fields": { + "code_commune_insee": "51317", + "nom_de_la_commune": "LAVAL SUR TOURBE", + "code_postal": "51600", + "coordonnees_gps": [ + 49.1413872858, + 4.66851737844 + ], + "libelle_d_acheminement": "LAVAL SUR TOURBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66851737844, + 49.1413872858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98d9d993a3720c93010b9510f109495979c808c3", + "fields": { + "code_commune_insee": "54246", + "nom_de_la_commune": "HALLOVILLE", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5513232103, + 6.85953452145 + ], + "libelle_d_acheminement": "HALLOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85953452145, + 48.5513232103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a794589bbe7c74e4aeed2cc5f3386415707d9c7", + "fields": { + "code_commune_insee": "51328", + "nom_de_la_commune": "LOISY SUR MARNE", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7501424119, + 4.54084010874 + ], + "libelle_d_acheminement": "LOISY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54084010874, + 48.7501424119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b992f1c3bdbe1fd0ac54e33d740e34fa31619c1", + "fields": { + "code_commune_insee": "54253", + "nom_de_la_commune": "HATRIZE", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1964808746, + 5.89788853353 + ], + "libelle_d_acheminement": "HATRIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89788853353, + 49.1964808746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9446c30bb455a5ff27bf4edd64bc8deddd6eb692", + "fields": { + "code_commune_insee": "51334", + "nom_de_la_commune": "LUXEMONT ET VILLOTTE", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6983539754, + 4.63716318666 + ], + "libelle_d_acheminement": "LUXEMONT ET VILLOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63716318666, + 48.6983539754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba6c95d9d05be0306b2d801ac2de5f1d6b5b1894", + "fields": { + "ligne_5": "ST CHARLES", + "code_commune_insee": "54254", + "libelle_d_acheminement": "HAUCOURT MOULAINE", + "code_postal": "54860", + "nom_de_la_commune": "HAUCOURT MOULAINE", + "coordonnees_gps": [ + 49.4965171841, + 5.80666548469 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80666548469, + 49.4965171841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbe0ad92746ee18f6e37bfca99b09da26139ae19", + "fields": { + "code_commune_insee": "51337", + "nom_de_la_commune": "MAGNEUX", + "code_postal": "51170", + "coordonnees_gps": [ + 49.3005344986, + 3.72711655162 + ], + "libelle_d_acheminement": "MAGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72711655162, + 49.3005344986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb5a9e565093a884284c6876f41dde2b693f1607", + "fields": { + "code_commune_insee": "54259", + "nom_de_la_commune": "HERBEVILLER", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5530200075, + 6.75411067546 + ], + "libelle_d_acheminement": "HERBEVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75411067546, + 48.5530200075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d242cb1abdd249a9abdc7d81e7b5910e071c1101", + "fields": { + "code_commune_insee": "51358", + "nom_de_la_commune": "MAURUPT LE MONTOIS", + "code_postal": "51340", + "coordonnees_gps": [ + 48.7312980227, + 4.856551791 + ], + "libelle_d_acheminement": "MAURUPT LE MONTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.856551791, + 48.7312980227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8cbb878f17d4effb3e194e3966c3590778ab99a", + "fields": { + "code_commune_insee": "54272", + "nom_de_la_commune": "JAILLON", + "code_postal": "54200", + "coordonnees_gps": [ + 48.7618646587, + 5.97477344119 + ], + "libelle_d_acheminement": "JAILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97477344119, + 48.7618646587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a145581e0c9d3dca85240d4e681e4d6b56bcecf7", + "fields": { + "code_commune_insee": "51368", + "nom_de_la_commune": "MINAUCOURT LE MESNIL LES HURLUS", + "code_postal": "51800", + "coordonnees_gps": [ + 49.179177044, + 4.69580247586 + ], + "libelle_d_acheminement": "MINAUCOURT LE MESNIL LES HURLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69580247586, + 49.179177044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc41152ca80743b4e30ea2c496316498f91e46f5", + "fields": { + "code_commune_insee": "54283", + "nom_de_la_commune": "JOUAVILLE", + "code_postal": "54800", + "coordonnees_gps": [ + 49.158543784, + 5.96141063139 + ], + "libelle_d_acheminement": "JOUAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96141063139, + 49.158543784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "376469380ee3f3ba55c4c379b6dc41cde43de7dd", + "fields": { + "code_commune_insee": "51370", + "nom_de_la_commune": "MOIREMONT", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1396346505, + 4.89805347592 + ], + "libelle_d_acheminement": "MOIREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89805347592, + 49.1396346505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b34189946f2be1ab3c45a91dc0a56be9ff7bd1c", + "fields": { + "code_commune_insee": "54290", + "nom_de_la_commune": "LAIX", + "code_postal": "54720", + "coordonnees_gps": [ + 49.4515411349, + 5.77943414827 + ], + "libelle_d_acheminement": "LAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77943414827, + 49.4515411349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "028b76daa0426418bd144f1b98640081ba530ccb", + "fields": { + "code_commune_insee": "51374", + "nom_de_la_commune": "MONDEMENT MONTGIVROUX", + "code_postal": "51120", + "coordonnees_gps": [ + 48.7904305607, + 3.76355809317 + ], + "libelle_d_acheminement": "MONDEMENT MONTGIVROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76355809317, + 48.7904305607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df140f89b31277991e34979b1bdc0cbe9c598bdd", + "fields": { + "code_commune_insee": "54293", + "nom_de_la_commune": "LANDECOURT", + "code_postal": "54360", + "coordonnees_gps": [ + 48.5024280452, + 6.42185405653 + ], + "libelle_d_acheminement": "LANDECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42185405653, + 48.5024280452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f639fd3601ef494864e4869c75bdfa96d6787bf5", + "fields": { + "code_commune_insee": "51375", + "nom_de_la_commune": "MONTBRE", + "code_postal": "51500", + "coordonnees_gps": [ + 49.1923765653, + 4.04501591283 + ], + "libelle_d_acheminement": "MONTBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04501591283, + 49.1923765653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87d603fc754042a3f4e296644201ed1071c0535a", + "fields": { + "code_commune_insee": "54302", + "nom_de_la_commune": "LANTEFONTAINE", + "code_postal": "54150", + "coordonnees_gps": [ + 49.2533813537, + 5.88651395465 + ], + "libelle_d_acheminement": "LANTEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88651395465, + 49.2533813537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6262fdd77063e8fa7e251836778c15f313c9fc51", + "fields": { + "ligne_5": "MACLAUNAY", + "code_commune_insee": "51380", + "libelle_d_acheminement": "MONTMIRAIL", + "code_postal": "51210", + "nom_de_la_commune": "MONTMIRAIL", + "coordonnees_gps": [ + 48.8802869076, + 3.56048556258 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56048556258, + 48.8802869076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8786c9fe4ca11fd8ed9d18115226d9bedd1fdb5", + "fields": { + "code_commune_insee": "54307", + "nom_de_la_commune": "LEBEUVILLE", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4342739169, + 6.241134065 + ], + "libelle_d_acheminement": "LEBEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.241134065, + 48.4342739169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e979dc0ebc29f72b5e0d946dcb1c1030d5be905", + "fields": { + "ligne_5": "LUCY", + "code_commune_insee": "51381", + "libelle_d_acheminement": "MONTMORT LUCY", + "code_postal": "51270", + "nom_de_la_commune": "MONTMORT LUCY", + "coordonnees_gps": [ + 48.9358384283, + 3.82595963448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82595963448, + 48.9358384283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f54d8f022a3e110e17dc9287e7e5069744aa52e1", + "fields": { + "code_commune_insee": "54308", + "nom_de_la_commune": "LEINTREY", + "code_postal": "54450", + "coordonnees_gps": [ + 48.6283526431, + 6.74348437889 + ], + "libelle_d_acheminement": "LEINTREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74348437889, + 48.6283526431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4da4fe4286bf7ff468bdfc088e9edf7240eb18e", + "fields": { + "code_commune_insee": "51389", + "nom_de_la_commune": "MOURMELON LE PETIT", + "code_postal": "51400", + "coordonnees_gps": [ + 49.1331102957, + 4.30596210424 + ], + "libelle_d_acheminement": "MOURMELON LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30596210424, + 49.1331102957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b268064bbab263ebe03dca62e69a042b78bd8e96", + "fields": { + "code_commune_insee": "54311", + "nom_de_la_commune": "LENONCOURT", + "code_postal": "54110", + "coordonnees_gps": [ + 48.6713494283, + 6.30019640728 + ], + "libelle_d_acheminement": "LENONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30019640728, + 48.6713494283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "961a628f0aea732e1516d8940a290f64832deb1e", + "fields": { + "code_commune_insee": "51390", + "nom_de_la_commune": "MOUSSY", + "code_postal": "51530", + "coordonnees_gps": [ + 49.0150808698, + 3.92356301559 + ], + "libelle_d_acheminement": "MOUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92356301559, + 49.0150808698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c4a32f690c15156477022b7f0e064c443c3ebc8", + "fields": { + "code_commune_insee": "54316", + "nom_de_la_commune": "LIMEY REMENAUVILLE", + "code_postal": "54470", + "coordonnees_gps": [ + 48.8942281864, + 5.90234476562 + ], + "libelle_d_acheminement": "LIMEY REMENAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90234476562, + 48.8942281864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9affd42397484497c4cac5617496ac7430da05fd", + "fields": { + "code_commune_insee": "51392", + "nom_de_la_commune": "MUTIGNY", + "code_postal": "51160", + "coordonnees_gps": [ + 49.0757241763, + 4.0185508573 + ], + "libelle_d_acheminement": "MUTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0185508573, + 49.0757241763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74d4e73649437b4bbece52c1c7dcc13aceb81263", + "fields": { + "code_commune_insee": "54318", + "nom_de_la_commune": "LIVERDUN", + "code_postal": "54460", + "coordonnees_gps": [ + 48.7537166405, + 6.05235397303 + ], + "libelle_d_acheminement": "LIVERDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05235397303, + 48.7537166405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2342cd3cc6390c37b6b087005a2dbb40ca63d46f", + "fields": { + "code_commune_insee": "51393", + "nom_de_la_commune": "NANTEUIL LA FORET", + "code_postal": "51480", + "coordonnees_gps": [ + 49.1277645525, + 3.92530056587 + ], + "libelle_d_acheminement": "NANTEUIL LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92530056587, + 49.1277645525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fc3e6de017523f17e8e98d87b3f0e16b9f455d6", + "fields": { + "code_commune_insee": "54324", + "nom_de_la_commune": "LOREY", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4973673544, + 6.31479678875 + ], + "libelle_d_acheminement": "LOREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31479678875, + 48.4973673544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d994d67c2bcb1efbb5d3ae7b986484b03c7efc3", + "fields": { + "code_commune_insee": "51397", + "nom_de_la_commune": "LA NEUVILLE AUX BOIS", + "code_postal": "51330", + "coordonnees_gps": [ + 48.9677556904, + 4.89351823597 + ], + "libelle_d_acheminement": "LA NEUVILLE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89351823597, + 48.9677556904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "575e8a60cb5e76ca10f371908b6807ebd062f261", + "fields": { + "code_commune_insee": "54331", + "nom_de_la_commune": "MAGNIERES", + "code_postal": "54129", + "coordonnees_gps": [ + 48.4441780874, + 6.56579108633 + ], + "libelle_d_acheminement": "MAGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56579108633, + 48.4441780874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e42b3e20671736134ca6d885df747475ba6c173b", + "fields": { + "code_commune_insee": "51398", + "nom_de_la_commune": "LA NEUVILLE AUX LARRIS", + "code_postal": "51480", + "coordonnees_gps": [ + 49.1426526319, + 3.83061444831 + ], + "libelle_d_acheminement": "LA NEUVILLE AUX LARRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83061444831, + 49.1426526319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7744c973d4a1dd54935fced86b948cbc1bc972c8", + "fields": { + "code_commune_insee": "54333", + "nom_de_la_commune": "MAILLY SUR SEILLE", + "code_postal": "54610", + "coordonnees_gps": [ + 48.9178459564, + 6.25112851262 + ], + "libelle_d_acheminement": "MAILLY SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25112851262, + 48.9178459564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ce101c566580e845d89c230ffb673adcc100802", + "fields": { + "code_commune_insee": "51410", + "nom_de_la_commune": "OEUILLY", + "code_postal": "51480", + "coordonnees_gps": [ + 49.0634098763, + 3.79757014256 + ], + "libelle_d_acheminement": "OEUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79757014256, + 49.0634098763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fea019e7f28946a8abcced8e2c45317ee30e3661", + "fields": { + "code_commune_insee": "54349", + "nom_de_la_commune": "MANONVILLER", + "code_postal": "54300", + "coordonnees_gps": [ + 48.5910642375, + 6.66259343648 + ], + "libelle_d_acheminement": "MANONVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66259343648, + 48.5910642375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff9cef0bd2c96ed0607e0376ec806e30ac6f9a5f", + "fields": { + "code_commune_insee": "51413", + "nom_de_la_commune": "OIRY", + "code_postal": "51530", + "coordonnees_gps": [ + 49.0073773523, + 4.03973627996 + ], + "libelle_d_acheminement": "OIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03973627996, + 49.0073773523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58072a9abe2f396fa41e7bb51c78bcc53ccde0b0", + "fields": { + "code_commune_insee": "54355", + "nom_de_la_commune": "MARTINCOURT", + "code_postal": "54380", + "coordonnees_gps": [ + 48.8482925248, + 5.95195681774 + ], + "libelle_d_acheminement": "MARTINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95195681774, + 48.8482925248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab6504e666bd3b334150bf201a390143a39344ea", + "fields": { + "code_commune_insee": "51416", + "nom_de_la_commune": "ORBAIS L ABBAYE", + "code_postal": "51270", + "coordonnees_gps": [ + 48.9434307489, + 3.69982605989 + ], + "libelle_d_acheminement": "ORBAIS L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69982605989, + 48.9434307489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f679771dfb8229dc0936c937d3e80a04752c8d7", + "fields": { + "code_commune_insee": "54359", + "nom_de_la_commune": "MEHONCOURT", + "code_postal": "54360", + "coordonnees_gps": [ + 48.5123289166, + 6.37994710945 + ], + "libelle_d_acheminement": "MEHONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37994710945, + 48.5123289166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "965c7ae216d379d6b5e5a56ee7784acea1ce9d79", + "fields": { + "code_commune_insee": "51429", + "nom_de_la_commune": "PEVY", + "code_postal": "51140", + "coordonnees_gps": [ + 49.3174771815, + 3.85061054201 + ], + "libelle_d_acheminement": "PEVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85061054201, + 49.3174771815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aadd162a05db6ae0af31568e14c61db9bbfbadc5", + "fields": { + "code_commune_insee": "54367", + "nom_de_la_commune": "MEXY", + "code_postal": "54135", + "coordonnees_gps": [ + 49.5017214844, + 5.78595844743 + ], + "libelle_d_acheminement": "MEXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78595844743, + 49.5017214844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "572731b94c733ed29db886167b92e84b69a9974e", + "fields": { + "code_commune_insee": "51444", + "nom_de_la_commune": "POUILLON", + "code_postal": "51220", + "coordonnees_gps": [ + 49.3134262923, + 3.94532083722 + ], + "libelle_d_acheminement": "POUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94532083722, + 49.3134262923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26914c734e73572075db370bb5ebe91e579efd8a", + "fields": { + "code_commune_insee": "54369", + "nom_de_la_commune": "MILLERY", + "code_postal": "54670", + "coordonnees_gps": [ + 48.8151063619, + 6.13947444735 + ], + "libelle_d_acheminement": "MILLERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13947444735, + 48.8151063619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "024e7c93d503f25a7c73f2ce3408f2b03e4013be", + "fields": { + "code_commune_insee": "51447", + "nom_de_la_commune": "PROSNES", + "code_postal": "51400", + "coordonnees_gps": [ + 49.2004306897, + 4.3048573886 + ], + "libelle_d_acheminement": "PROSNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3048573886, + 49.2004306897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2924b6ba39e6b5d9be64615caabe672ac34144a", + "fields": { + "code_commune_insee": "54374", + "nom_de_la_commune": "MONCEL SUR SEILLE", + "code_postal": "54280", + "coordonnees_gps": [ + 48.7689689739, + 6.42429308045 + ], + "libelle_d_acheminement": "MONCEL SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42429308045, + 48.7689689739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f63efb814e193065457ba03e6b3d76543b28b70", + "fields": { + "code_commune_insee": "51454", + "nom_de_la_commune": "REIMS", + "code_postal": "51100", + "coordonnees_gps": [ + 49.2514906066, + 4.0402302322 + ], + "libelle_d_acheminement": "REIMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0402302322, + 49.2514906066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc5891fca09732e3a20f6dbd5e2deac843b3107d", + "fields": { + "code_commune_insee": "54382", + "nom_de_la_commune": "MONT ST MARTIN", + "code_postal": "54350", + "coordonnees_gps": [ + 49.545958519, + 5.77946566153 + ], + "libelle_d_acheminement": "MONT ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77946566153, + 49.545958519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f6d4913af54d65f7bb22f857767fb573523ab66", + "fields": { + "code_commune_insee": "51460", + "nom_de_la_commune": "RIEUX", + "code_postal": "51210", + "coordonnees_gps": [ + 48.8366662002, + 3.50580892516 + ], + "libelle_d_acheminement": "RIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50580892516, + 48.8366662002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94de6a6e1229599a40f6aa290063fe87ebd64853", + "fields": { + "code_commune_insee": "54387", + "nom_de_la_commune": "MORVILLE SUR SEILLE", + "code_postal": "54700", + "coordonnees_gps": [ + 48.9179706076, + 6.14619157987 + ], + "libelle_d_acheminement": "MORVILLE SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14619157987, + 48.9179706076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3282a34f0a99c8fde61656518ec81f3d18b004b5", + "fields": { + "code_commune_insee": "51478", + "nom_de_la_commune": "ST EULIEN", + "code_postal": "52100", + "coordonnees_gps": [ + 48.6835488012, + 4.87961420424 + ], + "libelle_d_acheminement": "ST EULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87961420424, + 48.6835488012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb73918470461022c95be6f94c4a1bdf99e70abc", + "fields": { + "code_commune_insee": "54393", + "nom_de_la_commune": "MOYEN", + "code_postal": "54118", + "coordonnees_gps": [ + 48.4870728454, + 6.58670428264 + ], + "libelle_d_acheminement": "MOYEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58670428264, + 48.4870728454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c94e0bdfd9ce8b0f096987455e00c1981972628", + "fields": { + "code_commune_insee": "51483", + "nom_de_la_commune": "ST GIBRIEN", + "code_postal": "51510", + "coordonnees_gps": [ + 48.9746985932, + 4.29499737261 + ], + "libelle_d_acheminement": "ST GIBRIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29499737261, + 48.9746985932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7b2f6fb5c85ef26332d94939ec3b5211b9ffb12", + "fields": { + "code_commune_insee": "54395", + "nom_de_la_commune": "NANCY", + "code_postal": "54100", + "coordonnees_gps": [ + 48.6901995499, + 6.17588254434 + ], + "libelle_d_acheminement": "NANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17588254434, + 48.6901995499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "648453ec8b2f566158b093eb61244533dd51c859", + "fields": { + "code_commune_insee": "51486", + "nom_de_la_commune": "ST HILAIRE LE GRAND", + "code_postal": "51600", + "coordonnees_gps": [ + 49.1716852099, + 4.44934319127 + ], + "libelle_d_acheminement": "ST HILAIRE LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44934319127, + 49.1716852099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0cefee6e311ad1b436f1294bcffe96db282f598", + "fields": { + "code_commune_insee": "54396", + "nom_de_la_commune": "NEUFMAISONS", + "code_postal": "54540", + "coordonnees_gps": [ + 48.4471437689, + 6.87001944215 + ], + "libelle_d_acheminement": "NEUFMAISONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87001944215, + 48.4471437689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78d88a1df11ce64629ca1fb2246ad93aa08eade2", + "fields": { + "code_commune_insee": "51499", + "nom_de_la_commune": "ST MARD LES ROUFFY", + "code_postal": "51130", + "coordonnees_gps": [ + 48.9537045244, + 4.10363300278 + ], + "libelle_d_acheminement": "ST MARD LES ROUFFY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10363300278, + 48.9537045244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bba07615e14ad56228ca31765d3f7824b4ad21dc", + "fields": { + "code_commune_insee": "54399", + "nom_de_la_commune": "NEUVILLER SUR MOSELLE", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4902431576, + 6.28177004556 + ], + "libelle_d_acheminement": "NEUVILLER SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28177004556, + 48.4902431576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4da2bd83d967c56ca9fd3edc7e52471569fce25", + "fields": { + "code_commune_insee": "51502", + "nom_de_la_commune": "ST MARTIN AUX CHAMPS", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8146669912, + 4.47971521555 + ], + "libelle_d_acheminement": "ST MARTIN AUX CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47971521555, + 48.8146669912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1efa687e53c0a5413813ed3b55ceaddce0f6998c", + "fields": { + "code_commune_insee": "54403", + "nom_de_la_commune": "NORROY LES PONT A MOUSSON", + "code_postal": "54700", + "coordonnees_gps": [ + 48.9321142201, + 6.01232137434 + ], + "libelle_d_acheminement": "NORROY LES PONT A MOUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01232137434, + 48.9321142201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9034e89c857518040fab89b2ea208188a815b8a", + "fields": { + "code_commune_insee": "51506", + "nom_de_la_commune": "ST MEMMIE", + "code_postal": "51470", + "coordonnees_gps": [ + 48.9545604627, + 4.41789406119 + ], + "libelle_d_acheminement": "ST MEMMIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41789406119, + 48.9545604627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d69b8a8d46a65260cae1afbf1700c9f8ac8bf5db", + "fields": { + "code_commune_insee": "54407", + "nom_de_la_commune": "OGNEVILLE", + "code_postal": "54330", + "coordonnees_gps": [ + 48.4714847798, + 6.0591026476 + ], + "libelle_d_acheminement": "OGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0591026476, + 48.4714847798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "636d5c42b00d6789821eef81bd176f68398c5c6f", + "fields": { + "code_commune_insee": "51507", + "nom_de_la_commune": "STE MENEHOULD", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0865774658, + 4.94259439229 + ], + "libelle_d_acheminement": "STE MENEHOULD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94259439229, + 49.0865774658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "193b58c6ab113f61f6d7ba364aee33ad9b9b3fc8", + "fields": { + "code_commune_insee": "54414", + "nom_de_la_commune": "PAGNEY DERRIERE BARINE", + "code_postal": "54200", + "coordonnees_gps": [ + 48.6988404472, + 5.8475442388 + ], + "libelle_d_acheminement": "PAGNEY DERRIERE BARINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8475442388, + 48.6988404472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b6dd30c800437e06521b74af78dbfc97252864f", + "fields": { + "code_commune_insee": "51508", + "nom_de_la_commune": "ST OUEN DOMPROT", + "code_postal": "51320", + "coordonnees_gps": [ + 48.6138855668, + 4.39297037267 + ], + "libelle_d_acheminement": "ST OUEN DOMPROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39297037267, + 48.6138855668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37aad54461d6f603f16f92f44ced199be6c5ddd3", + "fields": { + "code_commune_insee": "54428", + "nom_de_la_commune": "PIERREPONT", + "code_postal": "54620", + "coordonnees_gps": [ + 49.4183305264, + 5.70916931035 + ], + "libelle_d_acheminement": "PIERREPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70916931035, + 49.4183305264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35583148a5124c3a6e3a75fa8483c387b54a4177", + "fields": { + "code_commune_insee": "51513", + "nom_de_la_commune": "ST REMY EN BOUZEMONT ST GENEST ISSON", + "code_postal": "51290", + "coordonnees_gps": [ + 48.6129201202, + 4.6490004853 + ], + "libelle_d_acheminement": "ST REMY EN BOUZEMONT ST GENEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6490004853, + 48.6129201202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6448c8a08894a6e27f88b46ccddc47cddb74845d", + "fields": { + "code_commune_insee": "54446", + "nom_de_la_commune": "RECHICOURT LA PETITE", + "code_postal": "54370", + "coordonnees_gps": [ + 48.717997142, + 6.58235675457 + ], + "libelle_d_acheminement": "RECHICOURT LA PETITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58235675457, + 48.717997142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae29d20d52d4d65654137fe7fc2319e9e93e2d4c", + "fields": { + "code_commune_insee": "51517", + "nom_de_la_commune": "ST SOUPLET SUR PY", + "code_postal": "51600", + "coordonnees_gps": [ + 49.2450297704, + 4.46480167767 + ], + "libelle_d_acheminement": "ST SOUPLET SUR PY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46480167767, + 49.2450297704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d24c0123884ea3113087e36aef955ffccfc56c4", + "fields": { + "code_commune_insee": "54449", + "nom_de_la_commune": "REHAINVILLER", + "code_postal": "54300", + "coordonnees_gps": [ + 48.5681612179, + 6.46940398243 + ], + "libelle_d_acheminement": "REHAINVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46940398243, + 48.5681612179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "903bb931a3d0a155cab275eee3e819a3e7d8985d", + "fields": { + "code_commune_insee": "51521", + "nom_de_la_commune": "ST VRAIN", + "code_postal": "51340", + "coordonnees_gps": [ + 48.6965592836, + 4.82187411211 + ], + "libelle_d_acheminement": "ST VRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82187411211, + 48.6965592836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8d85fb7dcbee1dca4669e0507860d7c708c719d", + "fields": { + "code_commune_insee": "54457", + "nom_de_la_commune": "REMONCOURT", + "code_postal": "54370", + "coordonnees_gps": [ + 48.656075231, + 6.74132398096 + ], + "libelle_d_acheminement": "REMONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74132398096, + 48.656075231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b4f7afd920139096d694edad304ab6733fe2a8c", + "fields": { + "code_commune_insee": "51526", + "nom_de_la_commune": "SAUDOY", + "code_postal": "51120", + "coordonnees_gps": [ + 48.6819330141, + 3.69807910524 + ], + "libelle_d_acheminement": "SAUDOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69807910524, + 48.6819330141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c62db43799aa9a6f647e69691c37192e1df93515", + "fields": { + "code_commune_insee": "54462", + "nom_de_la_commune": "ROSIERES AUX SALINES", + "code_postal": "54110", + "coordonnees_gps": [ + 48.5924316341, + 6.33430536376 + ], + "libelle_d_acheminement": "ROSIERES AUX SALINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33430536376, + 48.5924316341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "560a1b3419303f94a9596d3d50497f9de72d78b9", + "fields": { + "code_commune_insee": "51530", + "nom_de_la_commune": "SEPT SAULX", + "code_postal": "51400", + "coordonnees_gps": [ + 49.1492543394, + 4.26408117653 + ], + "libelle_d_acheminement": "SEPT SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26408117653, + 49.1492543394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0601d42a376ce70d0fd4a31bbc28f78b519b9cb8", + "fields": { + "code_commune_insee": "54467", + "nom_de_la_commune": "ROZELIEURES", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4468595767, + 6.43045935453 + ], + "libelle_d_acheminement": "ROZELIEURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43045935453, + 48.4468595767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fb17c6a3c73092873b3c1b5b8bc212388654262", + "fields": { + "code_commune_insee": "51533", + "nom_de_la_commune": "SERVON MELZICOURT", + "code_postal": "51800", + "coordonnees_gps": [ + 49.2081540683, + 4.84616301412 + ], + "libelle_d_acheminement": "SERVON MELZICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84616301412, + 49.2081540683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb857c7cc9130e906b995955ec3a8ea6baa9b3ce", + "fields": { + "code_commune_insee": "54472", + "nom_de_la_commune": "ST CLEMENT", + "code_postal": "54950", + "coordonnees_gps": [ + 48.5424165222, + 6.6233621308 + ], + "libelle_d_acheminement": "ST CLEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6233621308, + 48.5424165222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfb2806dc1e57654cb11510b49ad8afbfaab81e5", + "fields": { + "code_commune_insee": "51539", + "nom_de_la_commune": "SOGNY EN L ANGLE", + "code_postal": "51340", + "coordonnees_gps": [ + 48.816895594, + 4.80749859782 + ], + "libelle_d_acheminement": "SOGNY EN L ANGLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80749859782, + 48.816895594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2ab2d66373fd41f98f45daa96180d1fcdadd72b", + "fields": { + "code_commune_insee": "54476", + "nom_de_la_commune": "ST JEAN LES LONGUYON", + "code_postal": "54260", + "coordonnees_gps": [ + 49.4555490143, + 5.48860106808 + ], + "libelle_d_acheminement": "ST JEAN LES LONGUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48860106808, + 49.4555490143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29a68fb56b38b721ba13122ca917eb2a95419d21", + "fields": { + "code_commune_insee": "51552", + "nom_de_la_commune": "SONGY", + "code_postal": "51240", + "coordonnees_gps": [ + 48.7928814429, + 4.4717457251 + ], + "libelle_d_acheminement": "SONGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4717457251, + 48.7928814429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b02ed92e8abe7d1b31d8ba965f1ead02dfd6d01f", + "fields": { + "code_commune_insee": "54478", + "nom_de_la_commune": "ST MARCEL", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1225093046, + 5.97329179607 + ], + "libelle_d_acheminement": "ST MARCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97329179607, + 49.1225093046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3669ed80b660d3456f82b39344e13e607651242e", + "fields": { + "code_commune_insee": "51553", + "nom_de_la_commune": "SOUAIN PERTHES LES HURLUS", + "code_postal": "51600", + "coordonnees_gps": [ + 49.1870517871, + 4.57391390732 + ], + "libelle_d_acheminement": "SOUAIN PERTHES LES HURLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57391390732, + 49.1870517871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c78f3f4b478e07976cbb563955327621b1cdd42", + "fields": { + "code_commune_insee": "54479", + "nom_de_la_commune": "ST MARD", + "code_postal": "54290", + "coordonnees_gps": [ + 48.5100096795, + 6.29862310671 + ], + "libelle_d_acheminement": "ST MARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29862310671, + 48.5100096795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae7f6c97e3d86ead3a9c6ffb49b2aa292f77dbd6", + "fields": { + "code_commune_insee": "51555", + "nom_de_la_commune": "SOUDE", + "code_postal": "51320", + "coordonnees_gps": [ + 48.7289755504, + 4.30528409518 + ], + "libelle_d_acheminement": "SOUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30528409518, + 48.7289755504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52328d0f818c767e47afade2a05ae562b14ad411", + "fields": { + "code_commune_insee": "54493", + "nom_de_la_commune": "SAULNES", + "code_postal": "54650", + "coordonnees_gps": [ + 49.5293904249, + 5.82642469537 + ], + "libelle_d_acheminement": "SAULNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82642469537, + 49.5293904249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2971d1965b3f7ba4049d2b253260be7912cfc3db", + "fields": { + "code_commune_insee": "51556", + "nom_de_la_commune": "SOUDRON", + "code_postal": "51320", + "coordonnees_gps": [ + 48.8328002637, + 4.19908676708 + ], + "libelle_d_acheminement": "SOUDRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19908676708, + 48.8328002637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7dd98002f0c68e4c08c14ea1b214cf395160665", + "fields": { + "code_commune_insee": "54502", + "nom_de_la_commune": "SERRES", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6912563682, + 6.4543425853 + ], + "libelle_d_acheminement": "SERRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4543425853, + 48.6912563682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75f13832569de7531e11c7af7f44a6ebbd197a0c", + "fields": { + "code_commune_insee": "51559", + "nom_de_la_commune": "SUIPPES", + "code_postal": "51600", + "coordonnees_gps": [ + 49.125439853, + 4.52591673692 + ], + "libelle_d_acheminement": "SUIPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52591673692, + 49.125439853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbdf4ab6d66517e73a102aa38bf0336e6f25c304", + "fields": { + "code_commune_insee": "54507", + "nom_de_la_commune": "SIONVILLER", + "code_postal": "54300", + "coordonnees_gps": [ + 48.6319604008, + 6.54768956139 + ], + "libelle_d_acheminement": "SIONVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54768956139, + 48.6319604008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8ac657f53055ca2a2497ecdc62e75bdf895690e", + "fields": { + "ligne_5": "TAUXIERES MUTRY", + "code_commune_insee": "51564", + "libelle_d_acheminement": "VAL DE LIVRE", + "code_postal": "51150", + "nom_de_la_commune": "VAL DE LIVRE", + "coordonnees_gps": [ + 49.0904462327, + 4.09591940521 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09591940521, + 49.0904462327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3305142cc986bc5c913137acf1246040b7715741", + "fields": { + "code_commune_insee": "54521", + "nom_de_la_commune": "THIL", + "code_postal": "54880", + "coordonnees_gps": [ + 49.4735980022, + 5.90616788349 + ], + "libelle_d_acheminement": "THIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90616788349, + 49.4735980022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14d3da63eca4229f81b8d80b31a87061bc8c2102", + "fields": { + "code_commune_insee": "51574", + "nom_de_la_commune": "TOGNY AUX BOEUFS", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8465790978, + 4.42100509871 + ], + "libelle_d_acheminement": "TOGNY AUX BOEUFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42100509871, + 48.8465790978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff52f6ba45dbd9d22fe93f4d184200331769c349", + "fields": { + "code_commune_insee": "54532", + "nom_de_la_commune": "TREMBLECOURT", + "code_postal": "54385", + "coordonnees_gps": [ + 48.8028930871, + 5.94555829148 + ], + "libelle_d_acheminement": "TREMBLECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94555829148, + 48.8028930871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4244ccd6e4e12dfc520db0e72454edea17b0dc5", + "fields": { + "code_commune_insee": "51579", + "nom_de_la_commune": "TREFOLS", + "code_postal": "51210", + "coordonnees_gps": [ + 48.7954481021, + 3.49891700621 + ], + "libelle_d_acheminement": "TREFOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49891700621, + 48.7954481021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25e386bc35fcf32b0b47c215cdf094e37e2a84ef", + "fields": { + "code_commune_insee": "54533", + "nom_de_la_commune": "TRIEUX", + "code_postal": "54750", + "coordonnees_gps": [ + 49.3225546403, + 5.94374684568 + ], + "libelle_d_acheminement": "TRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94374684568, + 49.3225546403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b512cf28ae22210dbef771386af4227b5d2260f2", + "fields": { + "code_commune_insee": "51582", + "nom_de_la_commune": "TRIGNY", + "code_postal": "51140", + "coordonnees_gps": [ + 49.2975971087, + 3.89004113473 + ], + "libelle_d_acheminement": "TRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89004113473, + 49.2975971087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e675aa6ffdd88240b96c2fa948412ff0e067c541", + "fields": { + "code_commune_insee": "54544", + "nom_de_la_commune": "VANDELAINVILLE", + "code_postal": "54890", + "coordonnees_gps": [ + 49.0292238077, + 5.98234979094 + ], + "libelle_d_acheminement": "VANDELAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98234979094, + 49.0292238077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd14dce3ccbda985da57113135194efd70549a5f", + "fields": { + "code_commune_insee": "51588", + "nom_de_la_commune": "VALMY", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0777158902, + 4.76263259887 + ], + "libelle_d_acheminement": "VALMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76263259887, + 49.0777158902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2945bb2b6d118ea321fcd8f2564a49f2d2353729", + "fields": { + "code_commune_insee": "54546", + "nom_de_la_commune": "VANDIERES", + "code_postal": "54121", + "coordonnees_gps": [ + 48.9590505792, + 6.02020912664 + ], + "libelle_d_acheminement": "VANDIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02020912664, + 48.9590505792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afa080f93a7851bb3889e33c30e8499451ea6002", + "fields": { + "code_commune_insee": "51600", + "nom_de_la_commune": "VAUDESINCOURT", + "code_postal": "51600", + "coordonnees_gps": [ + 49.217325695, + 4.38256185386 + ], + "libelle_d_acheminement": "VAUDESINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38256185386, + 49.217325695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "193e168cbfa61320cf8109b4f8ee45f169543653", + "fields": { + "code_commune_insee": "54561", + "nom_de_la_commune": "VENNEZEY", + "code_postal": "54830", + "coordonnees_gps": [ + 48.4418803145, + 6.46147065137 + ], + "libelle_d_acheminement": "VENNEZEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46147065137, + 48.4418803145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b4ad03973bb81318ae5ee131832bd4496d1d6ad", + "fields": { + "code_commune_insee": "51605", + "nom_de_la_commune": "VENTEUIL", + "code_postal": "51480", + "coordonnees_gps": [ + 49.08876131, + 3.84088360221 + ], + "libelle_d_acheminement": "VENTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84088360221, + 49.08876131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35a5cd1a882409a96674141e7b6075bc060cde68", + "fields": { + "code_commune_insee": "54563", + "nom_de_la_commune": "VEZELISE", + "code_postal": "54330", + "coordonnees_gps": [ + 48.4830480647, + 6.09399935525 + ], + "libelle_d_acheminement": "VEZELISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09399935525, + 48.4830480647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fdcc880ecc465b422bf31ee4da83f70a0c7a29d", + "fields": { + "code_commune_insee": "51608", + "nom_de_la_commune": "VERNANCOURT", + "code_postal": "51330", + "coordonnees_gps": [ + 48.8516215288, + 4.83179693678 + ], + "libelle_d_acheminement": "VERNANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83179693678, + 48.8516215288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e330b4e3990f5498f8fb446715fc039dad35edd", + "fields": { + "code_commune_insee": "54582", + "nom_de_la_commune": "VILLETTE", + "code_postal": "54260", + "coordonnees_gps": [ + 49.478632384, + 5.55376018116 + ], + "libelle_d_acheminement": "VILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55376018116, + 49.478632384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "503538c3c6cd14bb8b666611d30a043a2b3fbe30", + "fields": { + "code_commune_insee": "51611", + "nom_de_la_commune": "VERT TOULON", + "code_postal": "51130", + "coordonnees_gps": [ + 48.8477595772, + 3.90655337825 + ], + "libelle_d_acheminement": "VERT TOULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90655337825, + 48.8477595772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e214f287fad21c59070d761bc1828339deae2295", + "fields": { + "code_commune_insee": "54589", + "nom_de_la_commune": "VITTONVILLE", + "code_postal": "54700", + "coordonnees_gps": [ + 48.9707772906, + 6.05981349899 + ], + "libelle_d_acheminement": "VITTONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05981349899, + 48.9707772906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eff7c02357d0ac4f83e3ae01d7118f4fe5593d8", + "fields": { + "ligne_5": "VOIPREUX", + "code_commune_insee": "51612", + "libelle_d_acheminement": "BLANCS COTEAUX", + "code_postal": "51130", + "nom_de_la_commune": "BLANCS COTEAUX", + "coordonnees_gps": [ + 48.9081794912, + 3.97961201086 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97961201086, + 48.9081794912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8392683a572a94312c055d0a182c477a25af0fc9", + "fields": { + "code_commune_insee": "51616", + "nom_de_la_commune": "VESIGNEUL SUR MARNE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8766478014, + 4.46821129445 + ], + "libelle_d_acheminement": "VESIGNEUL SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46821129445, + 48.8766478014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "092fba6aa5baf4ba1b12b7825403549232eaa03e", + "fields": { + "code_commune_insee": "51619", + "nom_de_la_commune": "LE VIEIL DAMPIERRE", + "code_postal": "51330", + "coordonnees_gps": [ + 48.9830505219, + 4.92494474307 + ], + "libelle_d_acheminement": "LE VIEIL DAMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92494474307, + 48.9830505219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f855a29102b71c240771cc5c1068ba04799f627f", + "fields": { + "code_commune_insee": "51620", + "nom_de_la_commune": "VIENNE LA VILLE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1635761231, + 4.85405487577 + ], + "libelle_d_acheminement": "VIENNE LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85405487577, + 49.1635761231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65a76099082d7e71407471f05067308c0d94c04d", + "fields": { + "code_commune_insee": "51625", + "nom_de_la_commune": "VILLENEUVE LA LIONNE", + "code_postal": "51310", + "coordonnees_gps": [ + 48.7700598396, + 3.43629160696 + ], + "libelle_d_acheminement": "VILLENEUVE LA LIONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43629160696, + 48.7700598396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa46eec88aab5edee99002e3929e889d1f3672f6", + "fields": { + "code_commune_insee": "51639", + "nom_de_la_commune": "LA VILLE SOUS ORBAIS", + "code_postal": "51270", + "coordonnees_gps": [ + 48.9652642255, + 3.67706951414 + ], + "libelle_d_acheminement": "LA VILLE SOUS ORBAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67706951414, + 48.9652642255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ad76fb7f933914362dc00ee8cc4f50e2f3f0162", + "fields": { + "code_commune_insee": "51646", + "nom_de_la_commune": "VIRGINY", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1672610952, + 4.7587997797 + ], + "libelle_d_acheminement": "VIRGINY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7587997797, + 49.1672610952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb045dcb107a425b9e2c517f66dcfb11a0d1a008", + "fields": { + "code_commune_insee": "51659", + "nom_de_la_commune": "WARGEMOULIN HURLUS", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1602195185, + 4.66277412786 + ], + "libelle_d_acheminement": "WARGEMOULIN HURLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66277412786, + 49.1602195185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d38776dc041c06d6d08e69e162403062cca1f016", + "fields": { + "code_commune_insee": "52005", + "nom_de_la_commune": "AIZANVILLE", + "code_postal": "52120", + "coordonnees_gps": [ + 48.1116130217, + 4.89456102722 + ], + "libelle_d_acheminement": "AIZANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89456102722, + 48.1116130217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd83056c3f040e47ae448c0cf2e43c33a8fc0eaa", + "fields": { + "code_commune_insee": "52007", + "nom_de_la_commune": "AMBONVILLE", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3139710416, + 5.01062838373 + ], + "libelle_d_acheminement": "AMBONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01062838373, + 48.3139710416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "029fe1cf40b7deaabe7669929f5ae1c7c2c61b2d", + "fields": { + "code_commune_insee": "52011", + "nom_de_la_commune": "ANNEVILLE LA PRAIRIE", + "code_postal": "52310", + "coordonnees_gps": [ + 48.2007257864, + 5.08748613699 + ], + "libelle_d_acheminement": "ANNEVILLE LA PRAIRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08748613699, + 48.2007257864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be07ba2dfa6b2fd04bdd8a7508b7adc75c0c18fb", + "fields": { + "code_commune_insee": "52016", + "nom_de_la_commune": "ARBOT", + "code_postal": "52160", + "coordonnees_gps": [ + 47.847249934, + 5.01730732864 + ], + "libelle_d_acheminement": "ARBOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01730732864, + 47.847249934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c04745ce8c9521024004c5aba9db7e0eef54d28", + "fields": { + "code_commune_insee": "52019", + "nom_de_la_commune": "ARNANCOURT", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3492116853, + 4.91356584892 + ], + "libelle_d_acheminement": "ARNANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91356584892, + 48.3492116853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfe6d6cf81f90e492a3d61c622fb1e15977db038", + "fields": { + "code_commune_insee": "52021", + "nom_de_la_commune": "ATTANCOURT", + "code_postal": "52130", + "coordonnees_gps": [ + 48.5345882518, + 4.94426693506 + ], + "libelle_d_acheminement": "ATTANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94426693506, + 48.5345882518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0a13aa1ef40951f14c57c56e0104e91ac669d1b", + "fields": { + "code_commune_insee": "52027", + "nom_de_la_commune": "AUJEURRES", + "code_postal": "52190", + "coordonnees_gps": [ + 47.7387809421, + 5.17295673992 + ], + "libelle_d_acheminement": "AUJEURRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17295673992, + 47.7387809421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "114c0ccca233a70c29526ce181c54a63cd02bc3d", + "fields": { + "code_commune_insee": "52028", + "nom_de_la_commune": "AULNOY SUR AUBE", + "code_postal": "52160", + "coordonnees_gps": [ + 47.8312576468, + 5.03398861314 + ], + "libelle_d_acheminement": "AULNOY SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03398861314, + 47.8312576468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "898540aa7f1f1c392d7ae082441e5d586feccffd", + "fields": { + "code_commune_insee": "52035", + "nom_de_la_commune": "BAISSEY", + "code_postal": "52250", + "coordonnees_gps": [ + 47.7489182688, + 5.24988056664 + ], + "libelle_d_acheminement": "BAISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24988056664, + 47.7489182688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "facaa9f03f54bbb07377a21e4b7cf6fb9e7c6e14", + "fields": { + "code_commune_insee": "52039", + "nom_de_la_commune": "BAUDRECOURT", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3950398869, + 4.96825290253 + ], + "libelle_d_acheminement": "BAUDRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96825290253, + 48.3950398869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "331c2af099cd2299a669a8dbdff9f8f7729c3b95", + "fields": { + "code_commune_insee": "52042", + "nom_de_la_commune": "BEAUCHEMIN", + "code_postal": "52260", + "coordonnees_gps": [ + 47.9178737226, + 5.24775917113 + ], + "libelle_d_acheminement": "BEAUCHEMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24775917113, + 47.9178737226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eef7eee3010ae40e81a9b2bf8cafefb15eae9f4a", + "fields": { + "ligne_5": "BETTAINCOURT SUR ROGNON", + "code_commune_insee": "52044", + "libelle_d_acheminement": "ROCHES BETTAINCOURT", + "code_postal": "52270", + "nom_de_la_commune": "ROCHES BETTAINCOURT", + "coordonnees_gps": [ + 48.2973672533, + 5.25753260566 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25753260566, + 48.2973672533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90fe17b2a4f22d69dbd075a4f3c25dc3ae78e2b2", + "fields": { + "code_commune_insee": "52047", + "nom_de_la_commune": "BEURVILLE", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3155770517, + 4.86121801407 + ], + "libelle_d_acheminement": "BEURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86121801407, + 48.3155770517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "004ca6c57a261fc5ee46535729325bc38d2368a6", + "fields": { + "code_commune_insee": "52050", + "nom_de_la_commune": "BIESLES", + "code_postal": "52340", + "coordonnees_gps": [ + 48.102555202, + 5.28581680401 + ], + "libelle_d_acheminement": "BIESLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28581680401, + 48.102555202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "231f63cccc1adb5f7542af5ce0e9d830946ccf43", + "fields": { + "code_commune_insee": "52062", + "nom_de_la_commune": "BOURG", + "code_postal": "52200", + "coordonnees_gps": [ + 47.7955958128, + 5.31329818526 + ], + "libelle_d_acheminement": "BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31329818526, + 47.7955958128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30763463dcd7b83215632e8d7873f5fdf2cf0b88", + "fields": { + "code_commune_insee": "52091", + "nom_de_la_commune": "CERISIERES", + "code_postal": "52320", + "coordonnees_gps": [ + 48.3093104196, + 5.07874546698 + ], + "libelle_d_acheminement": "CERISIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07874546698, + 48.3093104196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c23548360bbdc42aa46dafa90f684d331120a14", + "fields": { + "ligne_5": "LAMARGELLE AUX BOIS", + "code_commune_insee": "52094", + "libelle_d_acheminement": "VALS DES TILLES", + "code_postal": "52160", + "nom_de_la_commune": "VALS DES TILLES", + "coordonnees_gps": [ + 47.6942815153, + 5.08168973131 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08168973131, + 47.6942815153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bb6e8178cc912b18174daef5e367b9ee4d51def", + "fields": { + "ligne_5": "MUSSEAU", + "code_commune_insee": "52094", + "libelle_d_acheminement": "VALS DES TILLES", + "code_postal": "52160", + "nom_de_la_commune": "VALS DES TILLES", + "coordonnees_gps": [ + 47.6942815153, + 5.08168973131 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08168973131, + 47.6942815153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "934bb12fe8aee6d750c0b18fe35f9f21b7f2acd6", + "fields": { + "code_commune_insee": "52095", + "nom_de_la_commune": "CHALVRAINES", + "code_postal": "52700", + "coordonnees_gps": [ + 48.2303573038, + 5.50163461294 + ], + "libelle_d_acheminement": "CHALVRAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50163461294, + 48.2303573038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf7b8c4f318d110163502b44083070b06152bbca", + "fields": { + "code_commune_insee": "52099", + "nom_de_la_commune": "CHAMOUILLEY", + "code_postal": "52410", + "coordonnees_gps": [ + 48.6082188964, + 5.05078741037 + ], + "libelle_d_acheminement": "CHAMOUILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05078741037, + 48.6082188964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c1bc6df7bcfe258d960bc1cfe05a6c5c1b8d695", + "fields": { + "code_commune_insee": "52102", + "nom_de_la_commune": "CHAMPIGNY LES LANGRES", + "code_postal": "52200", + "coordonnees_gps": [ + 47.8953588704, + 5.34704113965 + ], + "libelle_d_acheminement": "CHAMPIGNY LES LANGRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34704113965, + 47.8953588704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac8e558784052424632f80f683a3a632b9197657", + "fields": { + "code_commune_insee": "52106", + "nom_de_la_commune": "CHANOY", + "code_postal": "52260", + "coordonnees_gps": [ + 47.9206283856, + 5.28430781755 + ], + "libelle_d_acheminement": "CHANOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28430781755, + 47.9206283856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ea0a500888542e716b87a331b26ca58bf8a4731", + "fields": { + "code_commune_insee": "52109", + "nom_de_la_commune": "CHARMES EN L ANGLE", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3590507638, + 4.99706046425 + ], + "libelle_d_acheminement": "CHARMES EN L ANGLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99706046425, + 48.3590507638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9376aa2d33358c9a410e2bd820758b1322b28f7b", + "fields": { + "code_commune_insee": "52115", + "nom_de_la_commune": "CHATENAY MACHERON", + "code_postal": "52200", + "coordonnees_gps": [ + 47.8564939499, + 5.38906909699 + ], + "libelle_d_acheminement": "CHATENAY MACHERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38906909699, + 47.8564939499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0b2528d28c4f40ddce8e12cc37407090a8ab31c", + "fields": { + "code_commune_insee": "52118", + "nom_de_la_commune": "CHATONRUPT SOMMERMONT", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4718286513, + 5.10006137447 + ], + "libelle_d_acheminement": "CHATONRUPT SOMMERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10006137447, + 48.4718286513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bbb5d9e487525bea68c3b99b7938cf654f9eaa8", + "fields": { + "ligne_5": "BREUIL SUR MARNE", + "code_commune_insee": "52123", + "libelle_d_acheminement": "CHEVILLON", + "code_postal": "52170", + "nom_de_la_commune": "CHEVILLON", + "coordonnees_gps": [ + 48.5306693888, + 5.14449573214 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14449573214, + 48.5306693888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94457953f2588a1db21fb0b33890fd624bb79faa", + "fields": { + "code_commune_insee": "52125", + "nom_de_la_commune": "CHAMARANDES CHOIGNES", + "code_postal": "52000", + "coordonnees_gps": [ + 48.1022459554, + 5.18945345266 + ], + "libelle_d_acheminement": "CHAMARANDES CHOIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18945345266, + 48.1022459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66fffdff246d861d1782ab1f84978b8c9833d9a4", + "fields": { + "ligne_5": "CHOIGNES", + "code_commune_insee": "52125", + "libelle_d_acheminement": "CHAMARANDES CHOIGNES", + "code_postal": "52000", + "nom_de_la_commune": "CHAMARANDES CHOIGNES", + "coordonnees_gps": [ + 48.1022459554, + 5.18945345266 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18945345266, + 48.1022459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9fa7431a73d0a8ba1f64ba8be31c436acad9afd", + "fields": { + "code_commune_insee": "52126", + "nom_de_la_commune": "CHOILLEY DARDENAY", + "code_postal": "52190", + "coordonnees_gps": [ + 47.6613154745, + 5.36577957222 + ], + "libelle_d_acheminement": "CHOILLEY DARDENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36577957222, + 47.6613154745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c410efe23abdf9cf0bfd3effc0494daa6f864a1", + "fields": { + "code_commune_insee": "52128", + "nom_de_la_commune": "CIREY LES MAREILLES", + "code_postal": "52700", + "coordonnees_gps": [ + 48.1970178033, + 5.298201554 + ], + "libelle_d_acheminement": "CIREY LES MAREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.298201554, + 48.1970178033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "097e2857982bcef57b804d999e9acb4da8db8608", + "fields": { + "code_commune_insee": "52129", + "nom_de_la_commune": "CIREY SUR BLAISE", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3335754386, + 4.93609411438 + ], + "libelle_d_acheminement": "CIREY SUR BLAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93609411438, + 48.3335754386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bbeaf0072be7382ac5cf38b6c6be90eb33ff8a7", + "fields": { + "code_commune_insee": "52135", + "nom_de_la_commune": "COIFFY LE BAS", + "code_postal": "52400", + "coordonnees_gps": [ + 47.9092931665, + 5.65983630677 + ], + "libelle_d_acheminement": "COIFFY LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65983630677, + 47.9092931665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97d90667b76660e997d72477914be89d16079bdb", + "fields": { + "code_commune_insee": "52137", + "nom_de_la_commune": "COLMIER LE BAS", + "code_postal": "52160", + "coordonnees_gps": [ + 47.7721798652, + 4.9400957102 + ], + "libelle_d_acheminement": "COLMIER LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9400957102, + 47.7721798652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e7dd8457fc575a53f4085c960012b10b500f9c3", + "fields": { + "code_commune_insee": "52138", + "nom_de_la_commune": "COLMIER LE HAUT", + "code_postal": "52160", + "coordonnees_gps": [ + 47.7863345069, + 4.98805196449 + ], + "libelle_d_acheminement": "COLMIER LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98805196449, + 47.7863345069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04ea684f6212271123bb24e43c02cc063342278f", + "fields": { + "ligne_5": "HARRICOURT", + "code_commune_insee": "52140", + "libelle_d_acheminement": "COLOMBEY LES DEUX EGLISES", + "code_postal": "52330", + "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", + "coordonnees_gps": [ + 48.2454844081, + 4.92015393779 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92015393779, + 48.2454844081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24f8a630cf239a4a8e9fec9e74fe048b641194ae", + "fields": { + "code_commune_insee": "52141", + "nom_de_la_commune": "CONDES", + "code_postal": "52000", + "coordonnees_gps": [ + 48.1420892135, + 5.14324861233 + ], + "libelle_d_acheminement": "CONDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14324861233, + 48.1420892135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7331d8ba6c9b209f4b28d1e33ce81ad87023572", + "fields": { + "code_commune_insee": "52142", + "nom_de_la_commune": "CONSIGNY", + "code_postal": "52700", + "coordonnees_gps": [ + 48.1654075569, + 5.41135471652 + ], + "libelle_d_acheminement": "CONSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41135471652, + 48.1654075569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cb65c136b0737bd21af63d37f385215dc1b2cc2", + "fields": { + "code_commune_insee": "52145", + "nom_de_la_commune": "COUBLANC", + "code_postal": "52500", + "coordonnees_gps": [ + 47.6939540954, + 5.44943414423 + ], + "libelle_d_acheminement": "COUBLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44943414423, + 47.6939540954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ac11b8bd0f4ef2f2edf2b6993b5bdeca013c271", + "fields": { + "ligne_5": "PERCEY SOUS MONTORMENTIER", + "code_commune_insee": "52158", + "libelle_d_acheminement": "CUSEY", + "code_postal": "52190", + "nom_de_la_commune": "CUSEY", + "coordonnees_gps": [ + 47.6250364992, + 5.35268671907 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35268671907, + 47.6250364992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c96b03f93272d41de556ca78df233fb7a5b03bf", + "fields": { + "code_commune_insee": "52169", + "nom_de_la_commune": "DOMBLAIN", + "code_postal": "52130", + "coordonnees_gps": [ + 48.465754612, + 5.00175003331 + ], + "libelle_d_acheminement": "DOMBLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00175003331, + 48.465754612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b8535f4432da9fc50ad0b76740191bb2f9b334c", + "fields": { + "code_commune_insee": "52177", + "nom_de_la_commune": "DOULAINCOURT SAUCOURT", + "code_postal": "52270", + "coordonnees_gps": [ + 48.3149359491, + 5.2044416904 + ], + "libelle_d_acheminement": "DOULAINCOURT SAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2044416904, + 48.3149359491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6438365f8d9db6d36561c7f23f362b2a00519aa", + "fields": { + "ligne_5": "BIENVILLE", + "code_commune_insee": "52194", + "libelle_d_acheminement": "EURVILLE BIENVILLE", + "code_postal": "52410", + "nom_de_la_commune": "EURVILLE BIENVILLE", + "coordonnees_gps": [ + 48.5782674919, + 5.02966764311 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02966764311, + 48.5782674919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f488362d621c56fcaeae447a4ea23172bddf3a27", + "fields": { + "code_commune_insee": "52195", + "nom_de_la_commune": "FARINCOURT", + "code_postal": "52500", + "coordonnees_gps": [ + 47.6965919672, + 5.68100859574 + ], + "libelle_d_acheminement": "FARINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68100859574, + 47.6965919672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d908a6a73713f0458d8c8d8d51830ba3f0c5427", + "fields": { + "code_commune_insee": "52205", + "nom_de_la_commune": "FOULAIN", + "code_postal": "52800", + "coordonnees_gps": [ + 48.0223132698, + 5.16701559496 + ], + "libelle_d_acheminement": "FOULAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16701559496, + 48.0223132698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "847ac7b09d3c6773265eaa9111da07376b9e31ca", + "fields": { + "code_commune_insee": "52207", + "nom_de_la_commune": "FRECOURT", + "code_postal": "52360", + "coordonnees_gps": [ + 47.9494023613, + 5.45333076545 + ], + "libelle_d_acheminement": "FRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45333076545, + 47.9494023613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd0d83f12cdf85b05f86dd6f54bccaac242de5ba", + "fields": { + "code_commune_insee": "52220", + "nom_de_la_commune": "GIEY SUR AUJON", + "code_postal": "52210", + "coordonnees_gps": [ + 47.9059188991, + 5.05514903281 + ], + "libelle_d_acheminement": "GIEY SUR AUJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05514903281, + 47.9059188991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ec61d9a5a7dc839d53f1fe232d92191001728b2", + "fields": { + "ligne_5": "VILLIERS SUR MARNE", + "code_commune_insee": "52230", + "libelle_d_acheminement": "GUDMONT VILLIERS", + "code_postal": "52320", + "nom_de_la_commune": "GUDMONT VILLIERS", + "coordonnees_gps": [ + 48.3363931415, + 5.12108418016 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12108418016, + 48.3363931415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "432c84c25dd6de3c622ffbd8ed77ef9ff38da6bc", + "fields": { + "ligne_5": "HORTES", + "code_commune_insee": "52242", + "libelle_d_acheminement": "HAUTE AMANCE", + "code_postal": "52600", + "nom_de_la_commune": "HAUTE AMANCE", + "coordonnees_gps": [ + 47.844980324, + 5.53371841027 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53371841027, + 47.844980324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3d3f25c16e349bea32aa51db53b5f02cc0f4f5d", + "fields": { + "ligne_5": "MONTLANDON", + "code_commune_insee": "52242", + "libelle_d_acheminement": "HAUTE AMANCE", + "code_postal": "52600", + "nom_de_la_commune": "HAUTE AMANCE", + "coordonnees_gps": [ + 47.844980324, + 5.53371841027 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53371841027, + 47.844980324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "352b08cacaf94c16a801c217daf9b00357d76246", + "fields": { + "ligne_5": "TROISCHAMPS", + "code_commune_insee": "52242", + "libelle_d_acheminement": "HAUTE AMANCE", + "code_postal": "52600", + "nom_de_la_commune": "HAUTE AMANCE", + "coordonnees_gps": [ + 47.844980324, + 5.53371841027 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53371841027, + 47.844980324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68289416ff49035260333453951a802211baa783", + "fields": { + "code_commune_insee": "52243", + "nom_de_la_commune": "HUILLIECOURT", + "code_postal": "52150", + "coordonnees_gps": [ + 48.1599537536, + 5.53274384003 + ], + "libelle_d_acheminement": "HUILLIECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53274384003, + 48.1599537536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b4e16078701c9d790d04b09247fb16536a051df", + "fields": { + "code_commune_insee": "52247", + "nom_de_la_commune": "ILLOUD", + "code_postal": "52150", + "coordonnees_gps": [ + 48.2160151188, + 5.55304320685 + ], + "libelle_d_acheminement": "ILLOUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55304320685, + 48.2160151188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c780e16f438e26d1e027e6c741f35805092d3cb5", + "fields": { + "code_commune_insee": "52266", + "nom_de_la_commune": "LANEUVILLE A REMY", + "code_postal": "52220", + "coordonnees_gps": [ + 48.4723601077, + 4.87755196221 + ], + "libelle_d_acheminement": "LANEUVILLE A REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87755196221, + 48.4723601077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd5f2155531d53a61d24006e83373042b76d83e6", + "fields": { + "code_commune_insee": "52269", + "nom_de_la_commune": "LANGRES", + "code_postal": "52200", + "coordonnees_gps": [ + 47.8591544821, + 5.33880466821 + ], + "libelle_d_acheminement": "LANGRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33880466821, + 47.8591544821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a5db6fbf51e67a3d17c3033fa65eb97ad8ed316", + "fields": { + "code_commune_insee": "52271", + "nom_de_la_commune": "LANQUES SUR ROGNON", + "code_postal": "52800", + "coordonnees_gps": [ + 48.0878260847, + 5.36870154442 + ], + "libelle_d_acheminement": "LANQUES SUR ROGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36870154442, + 48.0878260847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e7eefb162d1934c361a05e80245e17ddedaa21c", + "fields": { + "code_commune_insee": "52276", + "nom_de_la_commune": "LAVILLE AUX BOIS", + "code_postal": "52000", + "coordonnees_gps": [ + 48.0896326089, + 5.23950555481 + ], + "libelle_d_acheminement": "LAVILLE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23950555481, + 48.0896326089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2952308576eab6f74e54d6bc64fcd05ff926fff2", + "fields": { + "code_commune_insee": "52286", + "nom_de_la_commune": "LEURVILLE", + "code_postal": "52700", + "coordonnees_gps": [ + 48.3369321376, + 5.3802826598 + ], + "libelle_d_acheminement": "LEURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3802826598, + 48.3369321376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b85592d74ee6c7873f1744b5891f0fe7eea118f1", + "fields": { + "code_commune_insee": "52288", + "nom_de_la_commune": "LEZEVILLE", + "code_postal": "52230", + "coordonnees_gps": [ + 48.4275449909, + 5.39183251912 + ], + "libelle_d_acheminement": "LEZEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39183251912, + 48.4275449909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac59e9af661459b48f651de515c3cb331bd834d8", + "fields": { + "code_commune_insee": "52302", + "nom_de_la_commune": "MAIZIERES", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4923765397, + 5.066636417 + ], + "libelle_d_acheminement": "MAIZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.066636417, + 48.4923765397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f885c9b062bb66939b27776d9c87cc08ffba0033", + "fields": { + "code_commune_insee": "52303", + "nom_de_la_commune": "MAIZIERES SUR AMANCE", + "code_postal": "52500", + "coordonnees_gps": [ + 47.8353531495, + 5.60838290831 + ], + "libelle_d_acheminement": "MAIZIERES SUR AMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60838290831, + 47.8353531495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c6c8e91119e9d965140a92c1dece49085f6a850", + "fields": { + "code_commune_insee": "52315", + "nom_de_la_commune": "MARNAY SUR MARNE", + "code_postal": "52800", + "coordonnees_gps": [ + 48.0110920714, + 5.23259645475 + ], + "libelle_d_acheminement": "MARNAY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23259645475, + 48.0110920714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deefc0dc4675055d3b6d3871e3122097ff6df92d", + "fields": { + "code_commune_insee": "52316", + "nom_de_la_commune": "MATHONS", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4154342605, + 5.03852960319 + ], + "libelle_d_acheminement": "MATHONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03852960319, + 48.4154342605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70e54bba1eb8d46e5a2d3f0a76027abbc2ceed5a", + "fields": { + "code_commune_insee": "52321", + "nom_de_la_commune": "MERTRUD", + "code_postal": "52110", + "coordonnees_gps": [ + 48.4253267868, + 4.8840209417 + ], + "libelle_d_acheminement": "MERTRUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8840209417, + 48.4253267868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "392bd148a9e2386eb8433cbddedb575b0bf252b9", + "fields": { + "code_commune_insee": "52327", + "nom_de_la_commune": "MOESLAINS", + "code_postal": "52100", + "coordonnees_gps": [ + 48.6169452822, + 4.88678829658 + ], + "libelle_d_acheminement": "MOESLAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88678829658, + 48.6169452822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a451135254547b8651fdea594d45c82f213cc0c5", + "fields": { + "code_commune_insee": "52332", + "nom_de_la_commune": "VAL DE MEUSE", + "code_postal": "52140", + "coordonnees_gps": [ + 48.007428702, + 5.53409668952 + ], + "libelle_d_acheminement": "VAL DE MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53409668952, + 48.007428702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d764d3cb27122cf7aa6203393d79217c382e722e", + "fields": { + "ligne_5": "MAULAIN", + "code_commune_insee": "52332", + "libelle_d_acheminement": "VAL DE MEUSE", + "code_postal": "52140", + "nom_de_la_commune": "VAL DE MEUSE", + "coordonnees_gps": [ + 48.007428702, + 5.53409668952 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53409668952, + 48.007428702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e29ebca128ca567acf54d216ad38d0b0322f6ff", + "fields": { + "code_commune_insee": "52336", + "nom_de_la_commune": "MONTREUIL SUR BLAISE", + "code_postal": "52130", + "coordonnees_gps": [ + 48.4762156736, + 4.95570987328 + ], + "libelle_d_acheminement": "MONTREUIL SUR BLAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95570987328, + 48.4762156736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "477c5c3c2b889480c3a568b58384a56dcc7b7834", + "fields": { + "code_commune_insee": "52341", + "nom_de_la_commune": "MORANCOURT", + "code_postal": "52110", + "coordonnees_gps": [ + 48.4298864114, + 5.0031491394 + ], + "libelle_d_acheminement": "MORANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0031491394, + 48.4298864114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3241505a2ab7a4f7237db0e707631966c660c39d", + "fields": { + "code_commune_insee": "52354", + "nom_de_la_commune": "NOIDANT CHATENOY", + "code_postal": "52600", + "coordonnees_gps": [ + 47.7919589019, + 5.37791130968 + ], + "libelle_d_acheminement": "NOIDANT CHATENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37791130968, + 47.7919589019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "210adb4c2521c9b6a6921ccb04ff078886c953d3", + "fields": { + "code_commune_insee": "52355", + "nom_de_la_commune": "NOIDANT LE ROCHEUX", + "code_postal": "52200", + "coordonnees_gps": [ + 47.822685302, + 5.25671203266 + ], + "libelle_d_acheminement": "NOIDANT LE ROCHEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25671203266, + 47.822685302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d1ccb832c77131f0e975d499d643e9845595565", + "fields": { + "code_commune_insee": "52366", + "nom_de_la_commune": "ORMANCEY", + "code_postal": "52200", + "coordonnees_gps": [ + 47.9057227647, + 5.17880695197 + ], + "libelle_d_acheminement": "ORMANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17880695197, + 47.9057227647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef5b9432c99d88c02afbbd0dfbfc08e896e23d85", + "fields": { + "code_commune_insee": "52377", + "nom_de_la_commune": "PARNOY EN BASSIGNY", + "code_postal": "52400", + "coordonnees_gps": [ + 48.0252868226, + 5.6605141849 + ], + "libelle_d_acheminement": "PARNOY EN BASSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6605141849, + 48.0252868226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "386b0d1e4ac12a8028244a4acc5ae31d9fb75c21", + "fields": { + "code_commune_insee": "52386", + "nom_de_la_commune": "PERTHES", + "code_postal": "52100", + "coordonnees_gps": [ + 48.6633775695, + 4.81457659756 + ], + "libelle_d_acheminement": "PERTHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81457659756, + 48.6633775695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70bb69a46bfd616cab625ebaf3d8ec9b7deeddc4", + "fields": { + "code_commune_insee": "52392", + "nom_de_la_commune": "PLESNOY", + "code_postal": "52360", + "coordonnees_gps": [ + 47.892875539, + 5.49151963209 + ], + "libelle_d_acheminement": "PLESNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49151963209, + 47.892875539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a91a2a06505f5d9f597eb8fa1535f52b9132b237", + "fields": { + "code_commune_insee": "52393", + "nom_de_la_commune": "POINSENOT", + "code_postal": "52160", + "coordonnees_gps": [ + 47.7161433717, + 5.00835250709 + ], + "libelle_d_acheminement": "POINSENOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00835250709, + 47.7161433717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afe26c89997efec5d52f3b0a03d02e9979fd17db", + "fields": { + "code_commune_insee": "52396", + "nom_de_la_commune": "POINSON LES NOGENT", + "code_postal": "52800", + "coordonnees_gps": [ + 47.9916180616, + 5.37946091532 + ], + "libelle_d_acheminement": "POINSON LES NOGENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37946091532, + 47.9916180616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a41673a4f5a3460d0efa79bc832986941f4ecd4", + "fields": { + "ligne_5": "PRAUTHOY", + "code_commune_insee": "52405", + "libelle_d_acheminement": "LE MONTSAUGEONNAIS", + "code_postal": "52190", + "nom_de_la_commune": "LE MONTSAUGEONNAIS", + "coordonnees_gps": [ + 47.6875295793, + 5.2920187848 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2920187848, + 47.6875295793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dc429120ea5e63d743e9efd995581b8a49242c3", + "fields": { + "ligne_5": "LONGEVILLE SUR LA LAINES", + "code_commune_insee": "52411", + "libelle_d_acheminement": "RIVES DERVOISES", + "code_postal": "52220", + "nom_de_la_commune": "RIVES DERVOISES", + "coordonnees_gps": [ + 48.489304653, + 4.6870081083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6870081083, + 48.489304653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45f0abedb553b8d9f91b55ba5b88bf4359091d28", + "fields": { + "ligne_5": "PUELLEMONTIER", + "code_commune_insee": "52411", + "libelle_d_acheminement": "RIVES DERVOISES", + "code_postal": "52220", + "nom_de_la_commune": "RIVES DERVOISES", + "coordonnees_gps": [ + 48.489304653, + 4.6870081083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6870081083, + 48.489304653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "906f5a71f74fd06edd1bbd3f45b42c98033c6602", + "fields": { + "code_commune_insee": "52416", + "nom_de_la_commune": "RANGECOURT", + "code_postal": "52140", + "coordonnees_gps": [ + 48.0432441848, + 5.48652377409 + ], + "libelle_d_acheminement": "RANGECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48652377409, + 48.0432441848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c93c4ce8a9a1982ded85a9b6750f71ee26c5957", + "fields": { + "code_commune_insee": "52423", + "nom_de_la_commune": "RIMAUCOURT", + "code_postal": "52700", + "coordonnees_gps": [ + 48.2480091505, + 5.34969223549 + ], + "libelle_d_acheminement": "RIMAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34969223549, + 48.2480091505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "798234c63b99f3d38bd9eb010b397a580bd28bd6", + "fields": { + "ligne_5": "TRONCHOY", + "code_commune_insee": "52432", + "libelle_d_acheminement": "ROLAMPONT", + "code_postal": "52260", + "nom_de_la_commune": "ROLAMPONT", + "coordonnees_gps": [ + 47.9506169361, + 5.30859356776 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30859356776, + 47.9506169361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1125d78464d6263a2ef829540793840593c577e6", + "fields": { + "code_commune_insee": "52433", + "nom_de_la_commune": "ROMAIN SUR MEUSE", + "code_postal": "52150", + "coordonnees_gps": [ + 48.1863459188, + 5.51316926986 + ], + "libelle_d_acheminement": "ROMAIN SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51316926986, + 48.1863459188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55cfce9556c8393194cec4dfa6b046bdbc532c7c", + "fields": { + "code_commune_insee": "52436", + "nom_de_la_commune": "ROUECOURT", + "code_postal": "52320", + "coordonnees_gps": [ + 48.328615744, + 5.07589658302 + ], + "libelle_d_acheminement": "ROUECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07589658302, + 48.328615744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05014ba1103b274896067427d80dec52f2410212", + "fields": { + "code_commune_insee": "52437", + "nom_de_la_commune": "ROUELLES", + "code_postal": "52160", + "coordonnees_gps": [ + 47.8032782742, + 5.0879485638 + ], + "libelle_d_acheminement": "ROUELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0879485638, + 47.8032782742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52957652a778490a0aa9485f0f969036b8374eee", + "fields": { + "code_commune_insee": "52446", + "nom_de_la_commune": "ST BROINGT LES FOSSES", + "code_postal": "52190", + "coordonnees_gps": [ + 47.7136962549, + 5.26813340342 + ], + "libelle_d_acheminement": "ST BROINGT LES FOSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26813340342, + 47.7136962549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f558ede32a57aafc1fcc0578c483bf5497b6a25", + "fields": { + "code_commune_insee": "52447", + "nom_de_la_commune": "ST CIERGUES", + "code_postal": "52200", + "coordonnees_gps": [ + 47.8811134277, + 5.2558356921 + ], + "libelle_d_acheminement": "ST CIERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2558356921, + 47.8811134277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4dbf2df6e688d9d4d2e1a065bc4847933851b04", + "fields": { + "code_commune_insee": "52456", + "nom_de_la_commune": "ST URBAIN MACONCOURT", + "code_postal": "52300", + "coordonnees_gps": [ + 48.3964570951, + 5.19639597902 + ], + "libelle_d_acheminement": "ST URBAIN MACONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19639597902, + 48.3964570951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e52fbe9588130316df979ada2e08f582dd70785a", + "fields": { + "code_commune_insee": "52470", + "nom_de_la_commune": "SERQUEUX", + "code_postal": "52400", + "coordonnees_gps": [ + 47.9966571508, + 5.75100246622 + ], + "libelle_d_acheminement": "SERQUEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75100246622, + 47.9966571508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da2d1c0ab3c88cf91bbdb4440083ab42c974de05", + "fields": { + "code_commune_insee": "52479", + "nom_de_la_commune": "SOMMEVOIRE", + "code_postal": "52220", + "coordonnees_gps": [ + 48.4099270669, + 4.83318653827 + ], + "libelle_d_acheminement": "SOMMEVOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83318653827, + 48.4099270669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3a7770d442f0a5fb291cc524361edbbeaaa56d6", + "fields": { + "code_commune_insee": "52482", + "nom_de_la_commune": "SOULAUCOURT SUR MOUZON", + "code_postal": "52150", + "coordonnees_gps": [ + 48.1954396501, + 5.69449914292 + ], + "libelle_d_acheminement": "SOULAUCOURT SUR MOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69449914292, + 48.1954396501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cf85482ac370205497dcebf66b9fe39a2d5bfc1", + "fields": { + "code_commune_insee": "52486", + "nom_de_la_commune": "TERNAT", + "code_postal": "52210", + "coordonnees_gps": [ + 47.91358833, + 5.12761461513 + ], + "libelle_d_acheminement": "TERNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12761461513, + 47.91358833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f2b1f909ec5e44a887df06e4d685346e5e0e8ab", + "fields": { + "code_commune_insee": "52487", + "nom_de_la_commune": "THILLEUX", + "code_postal": "52220", + "coordonnees_gps": [ + 48.4342468946, + 4.79056251456 + ], + "libelle_d_acheminement": "THILLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79056251456, + 48.4342468946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a26668e47760bf721896cd49953778c8b0fcf82", + "fields": { + "ligne_5": "BRESSONCOURT", + "code_commune_insee": "52491", + "libelle_d_acheminement": "THONNANCE LES MOULINS", + "code_postal": "52230", + "nom_de_la_commune": "THONNANCE LES MOULINS", + "coordonnees_gps": [ + 48.4195754486, + 5.31434602015 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31434602015, + 48.4195754486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "236feb005208b8034e5ee763a87a41daeb7db98d", + "fields": { + "code_commune_insee": "52492", + "nom_de_la_commune": "TORCENAY", + "code_postal": "52600", + "coordonnees_gps": [ + 47.8148282196, + 5.46932272187 + ], + "libelle_d_acheminement": "TORCENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46932272187, + 47.8148282196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4b9d3b02285d109a96b374616391cba70ef6418", + "fields": { + "code_commune_insee": "52495", + "nom_de_la_commune": "TREMILLY", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3787256289, + 4.77481889669 + ], + "libelle_d_acheminement": "TREMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77481889669, + 48.3787256289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7bb7fa2f6c5489fec1504d57bdb4edb0bfe1346", + "fields": { + "code_commune_insee": "52497", + "nom_de_la_commune": "TROISFONTAINES LA VILLE", + "code_postal": "52130", + "coordonnees_gps": [ + 48.5429240485, + 5.00777358148 + ], + "libelle_d_acheminement": "TROISFONTAINES LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00777358148, + 48.5429240485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7511ff10bf2653d8c72bd9fde97281b18e4328c9", + "fields": { + "code_commune_insee": "52504", + "nom_de_la_commune": "VARENNES SUR AMANCE", + "code_postal": "52400", + "coordonnees_gps": [ + 47.8958656756, + 5.61137460007 + ], + "libelle_d_acheminement": "VARENNES SUR AMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61137460007, + 47.8958656756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bf1aca4416d866fe79217c78459acab8c581e6a", + "fields": { + "code_commune_insee": "52505", + "nom_de_la_commune": "VAUDRECOURT", + "code_postal": "52150", + "coordonnees_gps": [ + 48.2083534, + 5.64678700964 + ], + "libelle_d_acheminement": "VAUDRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64678700964, + 48.2083534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d0b411fcc481259f16bed3706f4993248bac671", + "fields": { + "code_commune_insee": "52511", + "nom_de_la_commune": "VAUX SUR ST URBAIN", + "code_postal": "52300", + "coordonnees_gps": [ + 48.3710588558, + 5.2078654933 + ], + "libelle_d_acheminement": "VAUX SUR ST URBAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2078654933, + 48.3710588558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4d7fb09eb8d28bd231b31d073e14ab20ace5aff", + "fields": { + "code_commune_insee": "52512", + "nom_de_la_commune": "VECQUEVILLE", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4603991907, + 5.13494669336 + ], + "libelle_d_acheminement": "VECQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13494669336, + 48.4603991907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fe1b39d210b094463eda627577319cc55321161", + "fields": { + "code_commune_insee": "52513", + "nom_de_la_commune": "VELLES", + "code_postal": "52500", + "coordonnees_gps": [ + 47.8338089389, + 5.72379027286 + ], + "libelle_d_acheminement": "VELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72379027286, + 47.8338089389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff7458478ce0b80d48e973efd6814f855be770e7", + "fields": { + "code_commune_insee": "52518", + "nom_de_la_commune": "VESAIGNES SUR MARNE", + "code_postal": "52800", + "coordonnees_gps": [ + 48.0004981057, + 5.26348033194 + ], + "libelle_d_acheminement": "VESAIGNES SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26348033194, + 48.0004981057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62dcb705df1130274d38eb545830068c4d5e3442", + "fields": { + "ligne_5": "VILLARS MONTROYER", + "code_commune_insee": "52526", + "libelle_d_acheminement": "VILLARS SANTENOGE", + "code_postal": "52160", + "nom_de_la_commune": "VILLARS SANTENOGE", + "coordonnees_gps": [ + 47.744268654, + 4.99918998244 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99918998244, + 47.744268654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86b7be154460fe60835891debb7896bf00ae2449", + "fields": { + "code_commune_insee": "52542", + "nom_de_la_commune": "VIVEY", + "code_postal": "52160", + "coordonnees_gps": [ + 47.7373432906, + 5.06446282527 + ], + "libelle_d_acheminement": "VIVEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06446282527, + 47.7373432906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48a639a680984f12e9457956da6c0249d998e932", + "fields": { + "code_commune_insee": "54592", + "nom_de_la_commune": "VRONCOURT", + "code_postal": "54330", + "coordonnees_gps": [ + 48.4591497683, + 6.07725776885 + ], + "libelle_d_acheminement": "VRONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07725776885, + 48.4591497683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d06e2ba778444a30d7816bcbe7c771641028902e", + "fields": { + "code_commune_insee": "52546", + "nom_de_la_commune": "VONCOURT", + "code_postal": "52500", + "coordonnees_gps": [ + 47.7174045888, + 5.67295513235 + ], + "libelle_d_acheminement": "VONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67295513235, + 47.7174045888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3782f5ac2d54bc91c332c1c5c6f7f13a02e4950e", + "fields": { + "code_commune_insee": "55007", + "nom_de_la_commune": "AMBLY SUR MEUSE", + "code_postal": "55300", + "coordonnees_gps": [ + 49.0225781961, + 5.45226054579 + ], + "libelle_d_acheminement": "AMBLY SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45226054579, + 49.0225781961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb43040b9a04d69dcb710266457263074956067a", + "fields": { + "code_commune_insee": "52548", + "nom_de_la_commune": "VRAINCOURT", + "code_postal": "52310", + "coordonnees_gps": [ + 48.2325399035, + 5.12038971796 + ], + "libelle_d_acheminement": "VRAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12038971796, + 48.2325399035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "483794333429a1fd77e8a3df692b5ab50965c1e3", + "fields": { + "code_commune_insee": "55008", + "nom_de_la_commune": "AMEL SUR L ETANG", + "code_postal": "55230", + "coordonnees_gps": [ + 49.2572264224, + 5.64725124448 + ], + "libelle_d_acheminement": "AMEL SUR L ETANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64725124448, + 49.2572264224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e1a80c6a1816524ebd76aece712589fa2bde993", + "fields": { + "code_commune_insee": "53011", + "nom_de_la_commune": "ASTILLE", + "code_postal": "53230", + "coordonnees_gps": [ + 47.9617911116, + -0.846376343167 + ], + "libelle_d_acheminement": "ASTILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.846376343167, + 47.9617911116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ce47df396bc0aaacd881ce735c97ea4ac4ceb9", + "fields": { + "code_commune_insee": "55009", + "nom_de_la_commune": "ANCEMONT", + "code_postal": "55320", + "coordonnees_gps": [ + 49.0649831287, + 5.38366026137 + ], + "libelle_d_acheminement": "ANCEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38366026137, + 49.0649831287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df721a520b58750ba99c48d68e5df98058239c8b", + "fields": { + "code_commune_insee": "53016", + "nom_de_la_commune": "BAIS", + "code_postal": "53160", + "coordonnees_gps": [ + 48.253257123, + -0.357282017147 + ], + "libelle_d_acheminement": "BAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.357282017147, + 48.253257123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70c0eb52d041eb3dbf0ad6120e0e629a4952f68a", + "fields": { + "code_commune_insee": "55012", + "nom_de_la_commune": "APREMONT LA FORET", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8438751454, + 5.62186076093 + ], + "libelle_d_acheminement": "APREMONT LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62186076093, + 48.8438751454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96f1a3c41cb62ce094652a25113762cdc1d1924c", + "fields": { + "code_commune_insee": "53023", + "nom_de_la_commune": "LA BAZOUGE DES ALLEUX", + "code_postal": "53470", + "coordonnees_gps": [ + 48.1864442528, + -0.601360078693 + ], + "libelle_d_acheminement": "LA BAZOUGE DES ALLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.601360078693, + 48.1864442528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef2296c8d3001df6603e86982b66ac48660c949b", + "fields": { + "ligne_5": "GERAUVILLIERS", + "code_commune_insee": "55026", + "libelle_d_acheminement": "BADONVILLIERS GERAUVILLIERS", + "code_postal": "55130", + "nom_de_la_commune": "BADONVILLIERS GERAUVILLIERS", + "coordonnees_gps": [ + 48.5444733383, + 5.5777546612 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5777546612, + 48.5444733383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b922d13d8778bb0542b9cacd056c442d608b9f48", + "fields": { + "code_commune_insee": "53026", + "nom_de_la_commune": "BEAULIEU SUR OUDON", + "code_postal": "53320", + "coordonnees_gps": [ + 47.9922207523, + -0.988210034643 + ], + "libelle_d_acheminement": "BEAULIEU SUR OUDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.988210034643, + 47.9922207523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "029ea885669d9f5115fd6acc7c104c0ba9f30f05", + "fields": { + "code_commune_insee": "55027", + "nom_de_la_commune": "BANNONCOURT", + "code_postal": "55300", + "coordonnees_gps": [ + 48.9532610217, + 5.48371239858 + ], + "libelle_d_acheminement": "BANNONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48371239858, + 48.9532610217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bfa10ab525d16bbc3571de2c8fbd43ef7a298a7", + "fields": { + "ligne_5": "ARGENTON NOTRE DAME", + "code_commune_insee": "53029", + "libelle_d_acheminement": "BIERNE LES VILLAGES", + "code_postal": "53290", + "nom_de_la_commune": "BIERNE LES VILLAGES", + "coordonnees_gps": [ + 47.8071088114, + -0.532804034432 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.532804034432, + 47.8071088114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d167c3b432a069914fb01ebc31d4435a6c67c08", + "fields": { + "ligne_5": "AMBLAINCOURT", + "code_commune_insee": "55040", + "libelle_d_acheminement": "BEAUSITE", + "code_postal": "55250", + "nom_de_la_commune": "BEAUSITE", + "coordonnees_gps": [ + 48.9672383709, + 5.21266788679 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21266788679, + 48.9672383709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd5831c575b7da23f5c482f643dcea5f0d046f75", + "fields": { + "code_commune_insee": "53030", + "nom_de_la_commune": "LE BIGNON DU MAINE", + "code_postal": "53170", + "coordonnees_gps": [ + 47.9514202879, + -0.625482366182 + ], + "libelle_d_acheminement": "LE BIGNON DU MAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.625482366182, + 47.9514202879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7625b8d92f085336a576a5ecea4672128aeb29e", + "fields": { + "code_commune_insee": "55041", + "nom_de_la_commune": "BEHONNE", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7984377932, + 5.17542175052 + ], + "libelle_d_acheminement": "BEHONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17542175052, + 48.7984377932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51c7368798c949038c0033bee8c64082a93b4a35", + "fields": { + "code_commune_insee": "53043", + "nom_de_la_commune": "BREE", + "code_postal": "53150", + "coordonnees_gps": [ + 48.1564468678, + -0.518044395418 + ], + "libelle_d_acheminement": "BREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.518044395418, + 48.1564468678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f60e3cb5c1bfec9c30db11c967371f1e4bf595a", + "fields": { + "code_commune_insee": "55047", + "nom_de_la_commune": "BETHELAINVILLE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.1684519662, + 5.23346533727 + ], + "libelle_d_acheminement": "BETHELAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23346533727, + 49.1684519662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d54f6c7303e0c386796db4a0bbf214f3fa738500", + "fields": { + "code_commune_insee": "53048", + "nom_de_la_commune": "CHAILLAND", + "code_postal": "53420", + "coordonnees_gps": [ + 48.2319686385, + -0.868605352742 + ], + "libelle_d_acheminement": "CHAILLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.868605352742, + 48.2319686385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "360ece19d7a1951e880a27ffc812ae781e246467", + "fields": { + "code_commune_insee": "55048", + "nom_de_la_commune": "BETHINCOURT", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2503994373, + 5.22447207758 + ], + "libelle_d_acheminement": "BETHINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22447207758, + 49.2503994373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbea5e22e1661151992914e18fd17c0c16e56607", + "fields": { + "code_commune_insee": "53057", + "nom_de_la_commune": "LA CHAPELLE AU RIBOUL", + "code_postal": "53440", + "coordonnees_gps": [ + 48.3161643792, + -0.432803278756 + ], + "libelle_d_acheminement": "LA CHAPELLE AU RIBOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.432803278756, + 48.3161643792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "150411676116ec2817dec929ba6f0a2bd8ff54ba", + "fields": { + "code_commune_insee": "55050", + "nom_de_la_commune": "BEZONVAUX", + "code_postal": "55100", + "coordonnees_gps": [ + 49.2314503054, + 5.47231735633 + ], + "libelle_d_acheminement": "BEZONVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47231735633, + 49.2314503054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a101e8f9076f8caa509a30d2d1d05508102349f0", + "fields": { + "ligne_5": "ST FORT", + "code_commune_insee": "53062", + "libelle_d_acheminement": "CHATEAU GONTIER SUR MAYENNE", + "code_postal": "53200", + "nom_de_la_commune": "CHATEAU GONTIER SUR MAYENNE", + "coordonnees_gps": [ + 47.8290067122, + -0.738721767875 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.738721767875, + 47.8290067122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adfc44cf892b29f6eddef8df1fbbb85b1a7dd18b", + "fields": { + "code_commune_insee": "55053", + "nom_de_la_commune": "BILLY SOUS MANGIENNES", + "code_postal": "55230", + "coordonnees_gps": [ + 49.3230881619, + 5.56172937909 + ], + "libelle_d_acheminement": "BILLY SOUS MANGIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56172937909, + 49.3230881619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a43f2deb72bd20e08def6aa5d7cddc3e2792d301", + "fields": { + "code_commune_insee": "53064", + "nom_de_la_commune": "CHATILLON SUR COLMONT", + "code_postal": "53100", + "coordonnees_gps": [ + 48.3355648035, + -0.75825362219 + ], + "libelle_d_acheminement": "CHATILLON SUR COLMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75825362219, + 48.3355648035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f98ea0c29fdae8cb8358a58519ed213d9e93cef0", + "fields": { + "code_commune_insee": "55055", + "nom_de_la_commune": "BLANZEE", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1603955281, + 5.53647182641 + ], + "libelle_d_acheminement": "BLANZEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53647182641, + 49.1603955281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dae3d1e3990a061d0c0fd3a1ca537cd03aa00689", + "fields": { + "code_commune_insee": "53066", + "nom_de_la_commune": "CHEMAZE", + "code_postal": "53200", + "coordonnees_gps": [ + 47.7785171054, + -0.766233986792 + ], + "libelle_d_acheminement": "CHEMAZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.766233986792, + 47.7785171054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70b5204724e7ff8c4defc0da128b63af8a11e8b3", + "fields": { + "code_commune_insee": "55058", + "nom_de_la_commune": "BONCOURT SUR MEUSE", + "code_postal": "55200", + "coordonnees_gps": [ + 48.8078856377, + 5.58513925167 + ], + "libelle_d_acheminement": "BONCOURT SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58513925167, + 48.8078856377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67fa113006bc15957be9ed3c076a2c09430e072f", + "fields": { + "code_commune_insee": "53073", + "nom_de_la_commune": "CONGRIER", + "code_postal": "53800", + "coordonnees_gps": [ + 47.802801926, + -1.12483688372 + ], + "libelle_d_acheminement": "CONGRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12483688372, + 47.802801926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b8e242dd0406caa91c13eaab6e3b1b512410b4e", + "fields": { + "code_commune_insee": "55063", + "nom_de_la_commune": "BOULIGNY", + "code_postal": "55240", + "coordonnees_gps": [ + 49.2916071166, + 5.74543375394 + ], + "libelle_d_acheminement": "BOULIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74543375394, + 49.2916071166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f054549210f9d250a9a8bf512daa1fbfda3b85f", + "fields": { + "code_commune_insee": "53074", + "nom_de_la_commune": "CONTEST", + "code_postal": "53100", + "coordonnees_gps": [ + 48.2595526249, + -0.68989469528 + ], + "libelle_d_acheminement": "CONTEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.68989469528, + 48.2595526249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19bf0b1957a187c90c5dc8b4261251c57f1e3b75", + "fields": { + "code_commune_insee": "55064", + "nom_de_la_commune": "BOUQUEMONT", + "code_postal": "55300", + "coordonnees_gps": [ + 48.9814089324, + 5.43303376805 + ], + "libelle_d_acheminement": "BOUQUEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43303376805, + 48.9814089324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17704f2557f6efa25b6ac9a56163ffe2cf0ec3f6", + "fields": { + "code_commune_insee": "53075", + "nom_de_la_commune": "COSMES", + "code_postal": "53230", + "coordonnees_gps": [ + 47.9182026802, + -0.870520798099 + ], + "libelle_d_acheminement": "COSMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.870520798099, + 47.9182026802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb0acf7aa568111ad739baa1f35f54878500aaaf", + "fields": { + "code_commune_insee": "55069", + "nom_de_la_commune": "BRABANT LE ROI", + "code_postal": "55800", + "coordonnees_gps": [ + 48.8537761275, + 4.98106135604 + ], + "libelle_d_acheminement": "BRABANT LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98106135604, + 48.8537761275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62626db1bcca671f089b18e778a87cc10c9d07ef", + "fields": { + "code_commune_insee": "53084", + "nom_de_la_commune": "CRAON", + "code_postal": "53400", + "coordonnees_gps": [ + 47.8454412251, + -0.943066490216 + ], + "libelle_d_acheminement": "CRAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.943066490216, + 47.8454412251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e622e02e846790dd4ea3d8ffaaf236da83a1fcd", + "fields": { + "code_commune_insee": "55079", + "nom_de_la_commune": "BRILLON EN BARROIS", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7153593718, + 5.1083480967 + ], + "libelle_d_acheminement": "BRILLON EN BARROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1083480967, + 48.7153593718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af87b5e70d4ab6967c3684226e590260b6ff3341", + "fields": { + "code_commune_insee": "53086", + "nom_de_la_commune": "LA CROIXILLE", + "code_postal": "53380", + "coordonnees_gps": [ + 48.1972333653, + -1.04159689946 + ], + "libelle_d_acheminement": "LA CROIXILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04159689946, + 48.1972333653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d1c92326dbe93f4d5fac1509a134aeeebbe92b0", + "fields": { + "code_commune_insee": "55082", + "nom_de_la_commune": "BROCOURT EN ARGONNE", + "code_postal": "55120", + "coordonnees_gps": [ + 49.1128653147, + 5.17130390685 + ], + "libelle_d_acheminement": "BROCOURT EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17130390685, + 49.1128653147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "579236beaf730e2117bedf7155368a74cca5b3db", + "fields": { + "code_commune_insee": "53091", + "nom_de_la_commune": "DESERTINES", + "code_postal": "53190", + "coordonnees_gps": [ + 48.4739929091, + -0.875711222537 + ], + "libelle_d_acheminement": "DESERTINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.875711222537, + 48.4739929091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7a0bd9cc35764eb1343ed3bc2b6e201e44cae67", + "fields": { + "code_commune_insee": "55087", + "nom_de_la_commune": "BURE", + "code_postal": "55290", + "coordonnees_gps": [ + 48.5093297187, + 5.34677594949 + ], + "libelle_d_acheminement": "BURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34677594949, + 48.5093297187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb2d5841d8127dde7bd421037c763f1b93ea3405", + "fields": { + "code_commune_insee": "53094", + "nom_de_la_commune": "ENTRAMMES", + "code_postal": "53260", + "coordonnees_gps": [ + 47.9934210518, + -0.715102434492 + ], + "libelle_d_acheminement": "ENTRAMMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.715102434492, + 47.9934210518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "263d90deb3ff1f23689960bc11c156e2b7a9ce94", + "fields": { + "code_commune_insee": "55089", + "nom_de_la_commune": "BUREY LA COTE", + "code_postal": "55140", + "coordonnees_gps": [ + 48.5001500482, + 5.68520575039 + ], + "libelle_d_acheminement": "BUREY LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68520575039, + 48.5001500482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac3f6baff2a4294b924cbacb3e29645797e11108", + "fields": { + "code_commune_insee": "53097", + "nom_de_la_commune": "EVRON", + "code_postal": "53600", + "coordonnees_gps": [ + 48.1520198351, + -0.389270176708 + ], + "libelle_d_acheminement": "EVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.389270176708, + 48.1520198351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1342e77d90e6e56362bc767ee4b2de70888ef095", + "fields": { + "ligne_5": "WOINVILLE", + "code_commune_insee": "55093", + "libelle_d_acheminement": "BUXIERES SOUS LES COTES", + "code_postal": "55300", + "nom_de_la_commune": "BUXIERES SOUS LES COTES", + "coordonnees_gps": [ + 48.9063587971, + 5.6783526742 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6783526742, + 48.9063587971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47895cc56e816c4dfbd7160de0431a464ce5e4db", + "fields": { + "ligne_5": "CHATRES LA FORET", + "code_commune_insee": "53097", + "libelle_d_acheminement": "EVRON", + "code_postal": "53600", + "nom_de_la_commune": "EVRON", + "coordonnees_gps": [ + 48.1520198351, + -0.389270176708 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.389270176708, + 48.1520198351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "854d4a9b5f5904824fa66c1fd6333704a104913f", + "fields": { + "code_commune_insee": "55095", + "nom_de_la_commune": "CESSE", + "code_postal": "55700", + "coordonnees_gps": [ + 49.5091057988, + 5.14445527647 + ], + "libelle_d_acheminement": "CESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14445527647, + 49.5091057988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "694b7e6317db54134210639aa434f84add416614", + "fields": { + "code_commune_insee": "53098", + "nom_de_la_commune": "FONTAINE COUVERTE", + "code_postal": "53350", + "coordonnees_gps": [ + 47.9135795411, + -1.13947861137 + ], + "libelle_d_acheminement": "FONTAINE COUVERTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13947861137, + 47.9135795411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce13675c88275b15ed504d207cbf3f9bf012f159", + "fields": { + "code_commune_insee": "55097", + "nom_de_la_commune": "CHALAINES", + "code_postal": "55140", + "coordonnees_gps": [ + 48.5935730965, + 5.69702247068 + ], + "libelle_d_acheminement": "CHALAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69702247068, + 48.5935730965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca16d033bb5c3a463d6313b8f92efe014ea476a4", + "fields": { + "code_commune_insee": "53100", + "nom_de_la_commune": "FOUGEROLLES DU PLESSIS", + "code_postal": "53190", + "coordonnees_gps": [ + 48.4830723517, + -0.945714822072 + ], + "libelle_d_acheminement": "FOUGEROLLES DU PLESSIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.945714822072, + 48.4830723517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70470f36e77826d42a5b052303d1def255a57790", + "fields": { + "code_commune_insee": "55107", + "nom_de_la_commune": "CHAUMONT DEVANT DAMVILLERS", + "code_postal": "55150", + "coordonnees_gps": [ + 49.309821487, + 5.43117741433 + ], + "libelle_d_acheminement": "CHAUMONT DEVANT DAMVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43117741433, + 49.309821487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97a2134c97c03d3bec6b3e7b841c594e704c17ef", + "fields": { + "code_commune_insee": "53102", + "nom_de_la_commune": "GASTINES", + "code_postal": "53540", + "coordonnees_gps": [ + 47.9398573687, + -1.11199461377 + ], + "libelle_d_acheminement": "GASTINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11199461377, + 47.9398573687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6084b621a789a4f062b33395f8757d964b944b6", + "fields": { + "code_commune_insee": "55113", + "nom_de_la_commune": "CHEPPY", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2242640905, + 5.07282385534 + ], + "libelle_d_acheminement": "CHEPPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07282385534, + 49.2242640905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40f33e8edf9bc4a4af43833448cb77894fbb7118", + "fields": { + "code_commune_insee": "53103", + "nom_de_la_commune": "LE GENEST ST ISLE", + "code_postal": "53940", + "coordonnees_gps": [ + 48.104173372, + -0.895219707599 + ], + "libelle_d_acheminement": "LE GENEST ST ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.895219707599, + 48.104173372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71afdf1817179d04d511b910376691a0d88fe6f6", + "fields": { + "ligne_5": "AUZEVILLE EN ARGONNE", + "code_commune_insee": "55117", + "libelle_d_acheminement": "CLERMONT EN ARGONNE", + "code_postal": "55120", + "nom_de_la_commune": "CLERMONT EN ARGONNE", + "coordonnees_gps": [ + 49.1085070366, + 5.08060353165 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08060353165, + 49.1085070366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c480045c2da3b561989848dc11f9fd981fc1ec8b", + "fields": { + "code_commune_insee": "53110", + "nom_de_la_commune": "GREZ EN BOUERE", + "code_postal": "53290", + "coordonnees_gps": [ + 47.8703920979, + -0.537813247538 + ], + "libelle_d_acheminement": "GREZ EN BOUERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.537813247538, + 47.8703920979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21262fbd4e8754039fea524be018990b450bb199", + "fields": { + "ligne_5": "JUBECOURT", + "code_commune_insee": "55117", + "libelle_d_acheminement": "CLERMONT EN ARGONNE", + "code_postal": "55120", + "nom_de_la_commune": "CLERMONT EN ARGONNE", + "coordonnees_gps": [ + 49.1085070366, + 5.08060353165 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08060353165, + 49.1085070366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fdb974f3ea831782aca20a24cb308e2b6b0be10", + "fields": { + "code_commune_insee": "53116", + "nom_de_la_commune": "LE HORPS", + "code_postal": "53640", + "coordonnees_gps": [ + 48.3894551796, + -0.46306709899 + ], + "libelle_d_acheminement": "LE HORPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.46306709899, + 48.3894551796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96810227b871b4ff721408ca7f78b2b937e0224b", + "fields": { + "ligne_5": "PAROIS", + "code_commune_insee": "55117", + "libelle_d_acheminement": "CLERMONT EN ARGONNE", + "code_postal": "55120", + "nom_de_la_commune": "CLERMONT EN ARGONNE", + "coordonnees_gps": [ + 49.1085070366, + 5.08060353165 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08060353165, + 49.1085070366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "485944bd00c17cc1548fba4090c094da5c425c37", + "fields": { + "code_commune_insee": "53117", + "nom_de_la_commune": "HOUSSAY", + "code_postal": "53360", + "coordonnees_gps": [ + 47.9107835548, + -0.744633552583 + ], + "libelle_d_acheminement": "HOUSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.744633552583, + 47.9107835548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "873384b3efc4d8d816168ea2ad7abb2621af607a", + "fields": { + "code_commune_insee": "55118", + "nom_de_la_commune": "CLERY LE GRAND", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3592013064, + 5.14431610293 + ], + "libelle_d_acheminement": "CLERY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14431610293, + 49.3592013064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbe29b21d4a36f6ec70141017915cff7ac30dfdc", + "fields": { + "ligne_5": "LA BAROCHE GONDOUIN", + "code_commune_insee": "53127", + "libelle_d_acheminement": "LASSAY LES CHATEAUX", + "code_postal": "53110", + "nom_de_la_commune": "LASSAY LES CHATEAUX", + "coordonnees_gps": [ + 48.4421089808, + -0.498821106653 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.498821106653, + 48.4421089808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da6ddfd59dc9d5153352205ca2e2c02af79ae8c2", + "fields": { + "code_commune_insee": "55119", + "nom_de_la_commune": "CLERY LE PETIT", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3658027512, + 5.17529974514 + ], + "libelle_d_acheminement": "CLERY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17529974514, + 49.3658027512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68bf892dbeb33419f0b52a443cb2174c7da536d0", + "fields": { + "ligne_5": "NIORT LA FONTAINE", + "code_commune_insee": "53127", + "libelle_d_acheminement": "LASSAY LES CHATEAUX", + "code_postal": "53110", + "nom_de_la_commune": "LASSAY LES CHATEAUX", + "coordonnees_gps": [ + 48.4421089808, + -0.498821106653 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.498821106653, + 48.4421089808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a90793d3c01bdfb5187db71661c5199434b586f7", + "fields": { + "code_commune_insee": "55124", + "nom_de_la_commune": "CONSENVOYE", + "code_postal": "55110", + "coordonnees_gps": [ + 49.2955880804, + 5.31125963797 + ], + "libelle_d_acheminement": "CONSENVOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31125963797, + 49.2955880804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70618c311766ef311b4e2873f4eb973ed40960c1", + "fields": { + "code_commune_insee": "53129", + "nom_de_la_commune": "LAUNAY VILLIERS", + "code_postal": "53410", + "coordonnees_gps": [ + 48.1329122905, + -1.0116324097 + ], + "libelle_d_acheminement": "LAUNAY VILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0116324097, + 48.1329122905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "939d594ad6ffbc93c752c241f70f67d73ee0f24b", + "fields": { + "code_commune_insee": "55125", + "nom_de_la_commune": "CONTRISSON", + "code_postal": "55800", + "coordonnees_gps": [ + 48.8030599838, + 4.95587124601 + ], + "libelle_d_acheminement": "CONTRISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95587124601, + 48.8030599838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aabb1098f792be42d33bc9fd1722dec21d1678ce", + "fields": { + "code_commune_insee": "53132", + "nom_de_la_commune": "LEVARE", + "code_postal": "53120", + "coordonnees_gps": [ + 48.4188847, + -0.907330477374 + ], + "libelle_d_acheminement": "LEVARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.907330477374, + 48.4188847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2697e782fc14d8b473c8da2d3fc7ac33f66fd21e", + "fields": { + "code_commune_insee": "55127", + "nom_de_la_commune": "COURCELLES EN BARROIS", + "code_postal": "55260", + "coordonnees_gps": [ + 48.8264091372, + 5.42728737864 + ], + "libelle_d_acheminement": "COURCELLES EN BARROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42728737864, + 48.8264091372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29b27de1368ffc6cb547c68304511fe01dea4139", + "fields": { + "ligne_5": "ORGERES LA ROCHE", + "code_commune_insee": "53133", + "libelle_d_acheminement": "LIGNIERES ORGERES", + "code_postal": "53140", + "nom_de_la_commune": "LIGNIERES ORGERES", + "coordonnees_gps": [ + 48.5288919372, + -0.212232237721 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.212232237721, + 48.5288919372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeb4ed349732a1ff711f7ba8110f8e63f7822840", + "fields": { + "code_commune_insee": "55134", + "nom_de_la_commune": "COUVONGES", + "code_postal": "55800", + "coordonnees_gps": [ + 48.7765173821, + 5.03607292231 + ], + "libelle_d_acheminement": "COUVONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03607292231, + 48.7765173821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3109f036411a27875ef488acce8374fa142fb32", + "fields": { + "code_commune_insee": "53139", + "nom_de_la_commune": "LOUPFOUGERES", + "code_postal": "53700", + "coordonnees_gps": [ + 48.3321259289, + -0.352428366281 + ], + "libelle_d_acheminement": "LOUPFOUGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.352428366281, + 48.3321259289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed94c76a0cab902d7ec17456aef379a0eab4296b", + "fields": { + "code_commune_insee": "55137", + "nom_de_la_commune": "CUISY", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2673180788, + 5.18849470784 + ], + "libelle_d_acheminement": "CUISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18849470784, + 49.2673180788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db3c837e7e7a1056ece529ec178f90ab6da6c856", + "fields": { + "code_commune_insee": "53140", + "nom_de_la_commune": "LOUVERNE", + "code_postal": "53950", + "coordonnees_gps": [ + 48.1255057038, + -0.711543672275 + ], + "libelle_d_acheminement": "LOUVERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.711543672275, + 48.1255057038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7415ed9ee7df5c715dae927f2ce8d79818c6d7e9", + "fields": { + "code_commune_insee": "55141", + "nom_de_la_commune": "DAGONVILLE", + "code_postal": "55500", + "coordonnees_gps": [ + 48.7898702371, + 5.38475597116 + ], + "libelle_d_acheminement": "DAGONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38475597116, + 48.7898702371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e163a8dc8356bfbddacc0dc9c12a1f58780731b4", + "fields": { + "code_commune_insee": "53142", + "nom_de_la_commune": "MADRE", + "code_postal": "53250", + "coordonnees_gps": [ + 48.4702152337, + -0.375712672997 + ], + "libelle_d_acheminement": "MADRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.375712672997, + 48.4702152337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b5c366cb2d1b2ca2083684355cb5b39d07d9848", + "fields": { + "code_commune_insee": "55148", + "nom_de_la_commune": "DELOUZE ROSIERES", + "code_postal": "55130", + "coordonnees_gps": [ + 48.5657451674, + 5.53076706785 + ], + "libelle_d_acheminement": "DELOUZE ROSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53076706785, + 48.5657451674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8685986709146fd582c0ca25ad239ff34d8e1f7", + "fields": { + "code_commune_insee": "53143", + "nom_de_la_commune": "MAISONCELLES DU MAINE", + "code_postal": "53170", + "coordonnees_gps": [ + 47.9677800474, + -0.660519989345 + ], + "libelle_d_acheminement": "MAISONCELLES DU MAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.660519989345, + 47.9677800474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc5d75babbb17a824dd98c5b2d51b5b6740cccfa", + "fields": { + "code_commune_insee": "55155", + "nom_de_la_commune": "DOMBASLE EN ARGONNE", + "code_postal": "55120", + "coordonnees_gps": [ + 49.1446409597, + 5.19544889955 + ], + "libelle_d_acheminement": "DOMBASLE EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19544889955, + 49.1446409597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39ec5cb6bd052a47c4655b050e6ff160fe0dfaa6", + "fields": { + "code_commune_insee": "53145", + "nom_de_la_commune": "MARIGNE PEUTON", + "code_postal": "53200", + "coordonnees_gps": [ + 47.8580802657, + -0.798902117267 + ], + "libelle_d_acheminement": "MARIGNE PEUTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.798902117267, + 47.8580802657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94cf59eeb5bfe757dfc83598dc7520ad5214636e", + "fields": { + "code_commune_insee": "55171", + "nom_de_la_commune": "EIX", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1790990812, + 5.47995693569 + ], + "libelle_d_acheminement": "EIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47995693569, + 49.1790990812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33a99eeef5826b71e8338ab3cd5c5524d11feefa", + "fields": { + "code_commune_insee": "53147", + "nom_de_la_commune": "MAYENNE", + "code_postal": "53100", + "coordonnees_gps": [ + 48.3074609449, + -0.614799950799 + ], + "libelle_d_acheminement": "MAYENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.614799950799, + 48.3074609449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "466ad48c35980a6ed7c060e22002e659d16078b8", + "fields": { + "code_commune_insee": "55174", + "nom_de_la_commune": "EPINONVILLE", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2732637894, + 5.08284466165 + ], + "libelle_d_acheminement": "EPINONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08284466165, + 49.2732637894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfc0040bc66b0f3f0f6e81dee70bacd8437b613a", + "fields": { + "code_commune_insee": "53150", + "nom_de_la_commune": "MENIL", + "code_postal": "53200", + "coordonnees_gps": [ + 47.7638591117, + -0.687864580509 + ], + "libelle_d_acheminement": "MENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.687864580509, + 47.7638591117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e87596a2135393aa2d419bb38bdfbdbd3550ca1c", + "fields": { + "code_commune_insee": "55177", + "nom_de_la_commune": "ERIZE LA PETITE", + "code_postal": "55260", + "coordonnees_gps": [ + 48.9140537118, + 5.23715361728 + ], + "libelle_d_acheminement": "ERIZE LA PETITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23715361728, + 48.9140537118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4315905abc92468df58de1cbc2a0ec15839b8eb9", + "fields": { + "code_commune_insee": "53154", + "nom_de_la_commune": "MONTAUDIN", + "code_postal": "53220", + "coordonnees_gps": [ + 48.3809154323, + -0.97983082547 + ], + "libelle_d_acheminement": "MONTAUDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97983082547, + 48.3809154323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f152bfe77ebdfe33831dc8dfed5f924129e33d6a", + "fields": { + "code_commune_insee": "55178", + "nom_de_la_commune": "ERIZE ST DIZIER", + "code_postal": "55000", + "coordonnees_gps": [ + 48.8106985165, + 5.28403725027 + ], + "libelle_d_acheminement": "ERIZE ST DIZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28403725027, + 48.8106985165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e8ea64358224a2701a87735e12ffccaf9b3ffd9", + "fields": { + "code_commune_insee": "53158", + "nom_de_la_commune": "MONTJEAN", + "code_postal": "53320", + "coordonnees_gps": [ + 48.0081888709, + -0.941581146475 + ], + "libelle_d_acheminement": "MONTJEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.941581146475, + 48.0081888709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af28094c48ab9cb226f5c4a508943cb180f00785", + "fields": { + "ligne_5": "LOXEVILLE", + "code_commune_insee": "55179", + "libelle_d_acheminement": "ERNEVILLE AUX BOIS", + "code_postal": "55500", + "nom_de_la_commune": "ERNEVILLE AUX BOIS", + "coordonnees_gps": [ + 48.7418948425, + 5.41343354401 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41343354401, + 48.7418948425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "520bcbcf5407eb61be477ee3312e7e6dab3265b6", + "fields": { + "ligne_5": "ST CENERE", + "code_commune_insee": "53161", + "libelle_d_acheminement": "MONTSURS", + "code_postal": "53150", + "nom_de_la_commune": "MONTSURS", + "coordonnees_gps": [ + 48.1342883147, + -0.552017747624 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.552017747624, + 48.1342883147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8544d41a74acd6c9ed4fc074e32d1b6d8b38f79e", + "fields": { + "code_commune_insee": "55180", + "nom_de_la_commune": "ESNES EN ARGONNE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.2094249857, + 5.20477484518 + ], + "libelle_d_acheminement": "ESNES EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20477484518, + 49.2094249857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed95726fcfb06ab495628363d0ba3c54dfdc964c", + "fields": { + "code_commune_insee": "53163", + "nom_de_la_commune": "NEAU", + "code_postal": "53150", + "coordonnees_gps": [ + 48.1701789884, + -0.474651575361 + ], + "libelle_d_acheminement": "NEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.474651575361, + 48.1701789884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0b7c14c583ffcaf26464dc64687ae6d9b109f33", + "fields": { + "code_commune_insee": "55185", + "nom_de_la_commune": "EVRES", + "code_postal": "55250", + "coordonnees_gps": [ + 48.9823527638, + 5.1255521249 + ], + "libelle_d_acheminement": "EVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1255521249, + 48.9823527638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70ca6c481391f1255a99ce5a8fed57bd2adad79c", + "fields": { + "code_commune_insee": "53165", + "nom_de_la_commune": "NIAFLES", + "code_postal": "53400", + "coordonnees_gps": [ + 47.8465834119, + -0.99977658744 + ], + "libelle_d_acheminement": "NIAFLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99977658744, + 47.8465834119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acddd4e6e7d31e4fc19417b41df1a1f3429db083", + "fields": { + "code_commune_insee": "55188", + "nom_de_la_commune": "FLASSIGNY", + "code_postal": "55600", + "coordonnees_gps": [ + 49.4762151252, + 5.43742607078 + ], + "libelle_d_acheminement": "FLASSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43742607078, + 49.4762151252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a7d7fecf09699e5a3407fd7929ec0a0016ebe72", + "fields": { + "code_commune_insee": "53168", + "nom_de_la_commune": "NUILLE SUR VICOIN", + "code_postal": "53970", + "coordonnees_gps": [ + 47.9802789281, + -0.779212405934 + ], + "libelle_d_acheminement": "NUILLE SUR VICOIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.779212405934, + 47.9802789281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb1e0b60f17f7b16a3c2f7eaeb46f744e1b73622", + "fields": { + "code_commune_insee": "55196", + "nom_de_la_commune": "FREMEREVILLE SOUS LES COTES", + "code_postal": "55200", + "coordonnees_gps": [ + 48.8038365424, + 5.65594480257 + ], + "libelle_d_acheminement": "FREMEREVILLE SOUS LES COTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65594480257, + 48.8038365424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98925648b67f1216f9acc862c4be9ac606128480", + "fields": { + "code_commune_insee": "53174", + "nom_de_la_commune": "PARIGNE SUR BRAYE", + "code_postal": "53100", + "coordonnees_gps": [ + 48.3232727343, + -0.647230020006 + ], + "libelle_d_acheminement": "PARIGNE SUR BRAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.647230020006, + 48.3232727343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02905daf56d6e39ece1f05a2bfb6e060642bdad8", + "fields": { + "code_commune_insee": "55197", + "nom_de_la_commune": "FRESNES AU MONT", + "code_postal": "55260", + "coordonnees_gps": [ + 48.8991708733, + 5.43476068255 + ], + "libelle_d_acheminement": "FRESNES AU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43476068255, + 48.8991708733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0404449adb466258861ed9783bf040bb1719b679", + "fields": { + "code_commune_insee": "53186", + "nom_de_la_commune": "QUELAINES ST GAULT", + "code_postal": "53360", + "coordonnees_gps": [ + 47.9279241835, + -0.79917074746 + ], + "libelle_d_acheminement": "QUELAINES ST GAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.79917074746, + 47.9279241835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eb43cfeee97d3bb3cf28c637c266d34de6db9f0", + "fields": { + "code_commune_insee": "55200", + "nom_de_la_commune": "FROMEREVILLE LES VALLONS", + "code_postal": "55100", + "coordonnees_gps": [ + 49.1642010056, + 5.29335139433 + ], + "libelle_d_acheminement": "FROMEREVILLE LES VALLONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29335139433, + 49.1642010056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0d72b3731fa5d21ed7017addac6b03119b06e25", + "fields": { + "code_commune_insee": "53189", + "nom_de_la_commune": "RENNES EN GRENOUILLES", + "code_postal": "53110", + "coordonnees_gps": [ + 48.4909507271, + -0.507002879374 + ], + "libelle_d_acheminement": "RENNES EN GRENOUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.507002879374, + 48.4909507271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35dfd9139a1408b5eeaeac867f8ef3951f70aa98", + "fields": { + "code_commune_insee": "55204", + "nom_de_la_commune": "GENICOURT SUR MEUSE", + "code_postal": "55320", + "coordonnees_gps": [ + 49.0415387246, + 5.44302652928 + ], + "libelle_d_acheminement": "GENICOURT SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44302652928, + 49.0415387246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b7b5f321c030e37de5d44491417a52e8bc12fe9", + "fields": { + "code_commune_insee": "53216", + "nom_de_la_commune": "ST FRAIMBAULT DE PRIERES", + "code_postal": "53300", + "coordonnees_gps": [ + 48.3488678421, + -0.574505181437 + ], + "libelle_d_acheminement": "ST FRAIMBAULT DE PRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.574505181437, + 48.3488678421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e141723bafbc7c780dcb93fc21c371d4d3f99526", + "fields": { + "code_commune_insee": "55215", + "nom_de_la_commune": "GONDRECOURT LE CHATEAU", + "code_postal": "55130", + "coordonnees_gps": [ + 48.4927414057, + 5.50567222525 + ], + "libelle_d_acheminement": "GONDRECOURT LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50567222525, + 48.4927414057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e99add250684b0fb8818f3683b9324cfc8cb029", + "fields": { + "code_commune_insee": "53224", + "nom_de_la_commune": "ST GERMAIN LE FOUILLOUX", + "code_postal": "53240", + "coordonnees_gps": [ + 48.1404679817, + -0.812282389838 + ], + "libelle_d_acheminement": "ST GERMAIN LE FOUILLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.812282389838, + 48.1404679817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92b58b34c8dc1f9286b4b36153b74f679d7466be", + "fields": { + "ligne_5": "LUMEVILLE EN ORNOIS", + "code_commune_insee": "55215", + "libelle_d_acheminement": "GONDRECOURT LE CHATEAU", + "code_postal": "55130", + "nom_de_la_commune": "GONDRECOURT LE CHATEAU", + "coordonnees_gps": [ + 48.4927414057, + 5.50567222525 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50567222525, + 48.4927414057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6ba4dfe92d72016c549058177b5cde7bf993735", + "fields": { + "code_commune_insee": "53235", + "nom_de_la_commune": "STE MARIE DU BOIS", + "code_postal": "53110", + "coordonnees_gps": [ + 48.4689132651, + -0.483184155223 + ], + "libelle_d_acheminement": "STE MARIE DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.483184155223, + 48.4689132651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5b5312ed1bf40dd372ca090d29dcc9f1a6557d8", + "fields": { + "code_commune_insee": "55216", + "nom_de_la_commune": "GOURAINCOURT", + "code_postal": "55230", + "coordonnees_gps": [ + 49.298652581, + 5.66811972316 + ], + "libelle_d_acheminement": "GOURAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66811972316, + 49.298652581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a67504b35a72e7e405b3569602b2d0a6b16f160", + "fields": { + "code_commune_insee": "53245", + "nom_de_la_commune": "ST PIERRE DES LANDES", + "code_postal": "53500", + "coordonnees_gps": [ + 48.2883947917, + -1.02805097575 + ], + "libelle_d_acheminement": "ST PIERRE DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02805097575, + 48.2883947917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34f83b0d41f2c9ec746f767dcc53587306584ede", + "fields": { + "code_commune_insee": "55218", + "nom_de_la_commune": "GREMILLY", + "code_postal": "55150", + "coordonnees_gps": [ + 49.2813295252, + 5.50984611095 + ], + "libelle_d_acheminement": "GREMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50984611095, + 49.2813295252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75dd5e9799c9b1227bc4c5975fe8fe9dcfe15a7e", + "fields": { + "code_commune_insee": "53248", + "nom_de_la_commune": "ST PIERRE SUR ERVE", + "code_postal": "53270", + "coordonnees_gps": [ + 48.0122977006, + -0.410540706359 + ], + "libelle_d_acheminement": "ST PIERRE SUR ERVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.410540706359, + 48.0122977006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e5ab61de0c0e0ed2086fc433706c2f39add5438", + "fields": { + "code_commune_insee": "55225", + "nom_de_la_commune": "HALLES SOUS LES COTES", + "code_postal": "55700", + "coordonnees_gps": [ + 49.4465576437, + 5.12784461624 + ], + "libelle_d_acheminement": "HALLES SOUS LES COTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12784461624, + 49.4465576437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62f50c58b760da04ca3b8a3d16b6882c1b196868", + "fields": { + "code_commune_insee": "53250", + "nom_de_la_commune": "ST POIX", + "code_postal": "53540", + "coordonnees_gps": [ + 47.9663369335, + -1.04358876565 + ], + "libelle_d_acheminement": "ST POIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04358876565, + 47.9663369335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76402118883131f40b71902344ab96e5785b4e31", + "fields": { + "code_commune_insee": "55229", + "nom_de_la_commune": "HAN SUR MEUSE", + "code_postal": "55300", + "coordonnees_gps": [ + 48.856313295, + 5.54572440463 + ], + "libelle_d_acheminement": "HAN SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54572440463, + 48.856313295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5918c34b5070d5ac237ab826872413ccf8d6848f", + "fields": { + "code_commune_insee": "53256", + "nom_de_la_commune": "ST THOMAS DE COURCERIERS", + "code_postal": "53160", + "coordonnees_gps": [ + 48.2645467758, + -0.265751898423 + ], + "libelle_d_acheminement": "ST THOMAS DE COURCERIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.265751898423, + 48.2645467758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa1848ec5cca471ba393bf7ff81947288201212a", + "fields": { + "ligne_5": "AILLY SUR MEUSE", + "code_commune_insee": "55229", + "libelle_d_acheminement": "HAN SUR MEUSE", + "code_postal": "55300", + "nom_de_la_commune": "HAN SUR MEUSE", + "coordonnees_gps": [ + 48.856313295, + 5.54572440463 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54572440463, + 48.856313295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7b6f7d8a3ab2cbf237fd5ee4031b1d7943c1b16", + "fields": { + "code_commune_insee": "53259", + "nom_de_la_commune": "SENONNES", + "code_postal": "53390", + "coordonnees_gps": [ + 47.8069754528, + -1.19638617309 + ], + "libelle_d_acheminement": "SENONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19638617309, + 47.8069754528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9abdf66a7a5bc39ba960fa573e1b2b390e3bb78", + "fields": { + "code_commune_insee": "55241", + "nom_de_la_commune": "HEIPPES", + "code_postal": "55220", + "coordonnees_gps": [ + 48.9997698114, + 5.27567605241 + ], + "libelle_d_acheminement": "HEIPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27567605241, + 48.9997698114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08cae09ac043be53898d0be52738601df0798d1a", + "fields": { + "ligne_5": "NUILLE SUR OUETTE", + "code_commune_insee": "53262", + "libelle_d_acheminement": "SOULGE SUR OUETTE", + "code_postal": "53210", + "nom_de_la_commune": "SOULGE SUR OUETTE", + "coordonnees_gps": [ + 48.0623593247, + -0.558425301844 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.558425301844, + 48.0623593247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c058da022c42889ce8282fe9ab1cf8884107bbc7", + "fields": { + "code_commune_insee": "55243", + "nom_de_la_commune": "HERBEUVILLE", + "code_postal": "55210", + "coordonnees_gps": [ + 49.0473026346, + 5.63920324426 + ], + "libelle_d_acheminement": "HERBEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63920324426, + 49.0473026346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8411e24526e2a0feff1db35dd704d848366ec14e", + "fields": { + "code_commune_insee": "53264", + "nom_de_la_commune": "THORIGNE EN CHARNIE", + "code_postal": "53270", + "coordonnees_gps": [ + 48.005707604, + -0.359572558274 + ], + "libelle_d_acheminement": "THORIGNE EN CHARNIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.359572558274, + 48.005707604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5dbc17d7f65f4d3139b82405f1ff5b362ff775f", + "fields": { + "code_commune_insee": "55246", + "nom_de_la_commune": "HEVILLIERS", + "code_postal": "55290", + "coordonnees_gps": [ + 48.601764443, + 5.32678677655 + ], + "libelle_d_acheminement": "HEVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32678677655, + 48.601764443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2320344159203ff8c60c77b73559778a24e3167c", + "fields": { + "code_commune_insee": "53270", + "nom_de_la_commune": "VIEUVY", + "code_postal": "53120", + "coordonnees_gps": [ + 48.446058835, + -0.877620263394 + ], + "libelle_d_acheminement": "VIEUVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.877620263394, + 48.446058835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ef415dc73e287cb0962a14b63819ebc8df02ec3", + "fields": { + "code_commune_insee": "55257", + "nom_de_la_commune": "JOUY EN ARGONNE", + "code_postal": "55120", + "coordonnees_gps": [ + 49.1347817438, + 5.22451457835 + ], + "libelle_d_acheminement": "JOUY EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22451457835, + 49.1347817438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d57f8288401e0bd7a57f439961614610ac257a7", + "fields": { + "code_commune_insee": "54011", + "nom_de_la_commune": "ALLONDRELLE LA MALMAISON", + "code_postal": "54260", + "coordonnees_gps": [ + 49.5106931001, + 5.5687752244 + ], + "libelle_d_acheminement": "ALLONDRELLE LA MALMAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5687752244, + 49.5106931001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "470e71e9d1c7da7881c69be350f1f16a8d9ff7e7", + "fields": { + "ligne_5": "CORNIEVILLE", + "code_commune_insee": "55258", + "libelle_d_acheminement": "GEVILLE", + "code_postal": "55200", + "nom_de_la_commune": "GEVILLE", + "coordonnees_gps": [ + 48.7799328844, + 5.70340084835 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70340084835, + 48.7799328844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08a6b85ae352938ed65021d5f6abead1b786bd9e", + "fields": { + "code_commune_insee": "54019", + "nom_de_la_commune": "ANSAUVILLE", + "code_postal": "54470", + "coordonnees_gps": [ + 48.8123329537, + 5.82286125547 + ], + "libelle_d_acheminement": "ANSAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82286125547, + 48.8123329537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8750e87731b68f9e805147a7aee5bd33349c9b79", + "fields": { + "ligne_5": "HADONVILLE LES LACHAUSSEE", + "code_commune_insee": "55267", + "libelle_d_acheminement": "LACHAUSSEE", + "code_postal": "55210", + "nom_de_la_commune": "LACHAUSSEE", + "coordonnees_gps": [ + 49.0332521585, + 5.79999880279 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79999880279, + 49.0332521585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c0545cbe63a07f9282f719447025b5bb32909d1", + "fields": { + "code_commune_insee": "54022", + "nom_de_la_commune": "ARNAVILLE", + "code_postal": "54530", + "coordonnees_gps": [ + 49.0131279391, + 6.02593659149 + ], + "libelle_d_acheminement": "ARNAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02593659149, + 49.0131279391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9276a63bc7ceac4f857284b13c0e9ce6a37e14e", + "fields": { + "code_commune_insee": "55269", + "nom_de_la_commune": "LAHAYMEIX", + "code_postal": "55260", + "coordonnees_gps": [ + 48.9348988887, + 5.41756249131 + ], + "libelle_d_acheminement": "LAHAYMEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41756249131, + 48.9348988887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "432dd4d24304991a490c2c989f32e7d2d1eb398f", + "fields": { + "code_commune_insee": "54024", + "nom_de_la_commune": "ARRAYE ET HAN", + "code_postal": "54760", + "coordonnees_gps": [ + 48.8354421206, + 6.28872660857 + ], + "libelle_d_acheminement": "ARRAYE ET HAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28872660857, + 48.8354421206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19b6d8ea8aaa8d03c3241b2c6d65f091816d06e8", + "fields": { + "code_commune_insee": "55274", + "nom_de_la_commune": "LAMORVILLE", + "code_postal": "55300", + "coordonnees_gps": [ + 48.964535147, + 5.59226400853 + ], + "libelle_d_acheminement": "LAMORVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59226400853, + 48.964535147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e650a37a7550663b9482d4432e7cad727ccfe855", + "fields": { + "code_commune_insee": "54025", + "nom_de_la_commune": "ART SUR MEURTHE", + "code_postal": "54510", + "coordonnees_gps": [ + 48.6605653469, + 6.26295482069 + ], + "libelle_d_acheminement": "ART SUR MEURTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26295482069, + 48.6605653469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4414a62b46631a39ebdb7d9daf5d0bee6522941", + "fields": { + "code_commune_insee": "55275", + "nom_de_la_commune": "LAMOUILLY", + "code_postal": "55700", + "coordonnees_gps": [ + 49.5481877863, + 5.24415102151 + ], + "libelle_d_acheminement": "LAMOUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24415102151, + 49.5481877863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0362126392b3813ff5654bd516ff2cee3055311", + "fields": { + "code_commune_insee": "54029", + "nom_de_la_commune": "AUDUN LE ROMAN", + "code_postal": "54560", + "coordonnees_gps": [ + 49.3679143393, + 5.89363457214 + ], + "libelle_d_acheminement": "AUDUN LE ROMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89363457214, + 49.3679143393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85d55b0eb4610b645f064b56063afcbef8cd17a3", + "fields": { + "code_commune_insee": "55278", + "nom_de_la_commune": "LANEUVILLE AU RUPT", + "code_postal": "55190", + "coordonnees_gps": [ + 48.7074064434, + 5.57588667991 + ], + "libelle_d_acheminement": "LANEUVILLE AU RUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57588667991, + 48.7074064434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "863a58938f111012f8566988fb3a9d4f86393803", + "fields": { + "code_commune_insee": "54034", + "nom_de_la_commune": "AVRAINVILLE", + "code_postal": "54385", + "coordonnees_gps": [ + 48.7714993611, + 5.94649132503 + ], + "libelle_d_acheminement": "AVRAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94649132503, + 48.7714993611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a8327061cc3997505ab2ada7c73ff49a5adcc4e", + "fields": { + "code_commune_insee": "55281", + "nom_de_la_commune": "LATOUR EN WOEVRE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.0909063934, + 5.80554436766 + ], + "libelle_d_acheminement": "LATOUR EN WOEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80554436766, + 49.0909063934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c09e5b97714641a1922f8d77633fb46e7cff7ba8", + "fields": { + "code_commune_insee": "54037", + "nom_de_la_commune": "AZELOT", + "code_postal": "54210", + "coordonnees_gps": [ + 48.5837575734, + 6.22938782702 + ], + "libelle_d_acheminement": "AZELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22938782702, + 48.5837575734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6211fe574b525aadbf6b7aa77da772e4d75393d4", + "fields": { + "code_commune_insee": "55282", + "nom_de_la_commune": "LAVALLEE", + "code_postal": "55260", + "coordonnees_gps": [ + 48.8067455989, + 5.3330507642 + ], + "libelle_d_acheminement": "LAVALLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3330507642, + 48.8067455989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fb887beb484e0eb16928be2d54a1c229034f814", + "fields": { + "code_commune_insee": "54041", + "nom_de_la_commune": "BAGNEUX", + "code_postal": "54170", + "coordonnees_gps": [ + 48.5571215852, + 5.87679654588 + ], + "libelle_d_acheminement": "BAGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87679654588, + 48.5571215852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e1144294efe0c7b253a85e4227476955b047411", + "fields": { + "code_commune_insee": "55286", + "nom_de_la_commune": "LEMMES", + "code_postal": "55220", + "coordonnees_gps": [ + 49.0685421139, + 5.29370015131 + ], + "libelle_d_acheminement": "LEMMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29370015131, + 49.0685421139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2227017651f0454a456c6d83134a4eb4a310448d", + "fields": { + "code_commune_insee": "54047", + "nom_de_la_commune": "BARISEY LA COTE", + "code_postal": "54170", + "coordonnees_gps": [ + 48.5457983543, + 5.84382509461 + ], + "libelle_d_acheminement": "BARISEY LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84382509461, + 48.5457983543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ac0ad1d57aad22c719f4f94fa0907cf992e0423", + "fields": { + "code_commune_insee": "55297", + "nom_de_la_commune": "LISSEY", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3766676279, + 5.36653086946 + ], + "libelle_d_acheminement": "LISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36653086946, + 49.3766676279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff8f58bf9a0e22651e905406296b3a1b0efb6cb6", + "fields": { + "code_commune_insee": "54050", + "nom_de_la_commune": "BATHELEMONT", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6931563796, + 6.52703036369 + ], + "libelle_d_acheminement": "BATHELEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52703036369, + 48.6931563796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0f20952cffc85e16f41fb0ee1273faf61f3fda9", + "fields": { + "code_commune_insee": "55304", + "nom_de_la_commune": "LOUPPY LE CHATEAU", + "code_postal": "55800", + "coordonnees_gps": [ + 48.8659998801, + 5.07830494124 + ], + "libelle_d_acheminement": "LOUPPY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07830494124, + 48.8659998801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "522488d1c4a5feaf991d70bda840088e8d1f5aca", + "fields": { + "code_commune_insee": "54058", + "nom_de_la_commune": "BECHAMPS", + "code_postal": "54800", + "coordonnees_gps": [ + 49.2140558586, + 5.74244122383 + ], + "libelle_d_acheminement": "BECHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74244122383, + 49.2140558586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f755e61230394fde8d5eaef518185e61793b4dcd", + "fields": { + "code_commune_insee": "55315", + "nom_de_la_commune": "MANDRES EN BARROIS", + "code_postal": "55290", + "coordonnees_gps": [ + 48.4962208596, + 5.39267614836 + ], + "libelle_d_acheminement": "MANDRES EN BARROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39267614836, + 48.4962208596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae74bc62cf57ba87c63538570890cd4758328293", + "fields": { + "code_commune_insee": "54059", + "nom_de_la_commune": "BELLEAU", + "code_postal": "54610", + "coordonnees_gps": [ + 48.8487345093, + 6.18702961708 + ], + "libelle_d_acheminement": "BELLEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18702961708, + 48.8487345093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fdb8fff7d3a43938a8ec7c1579336878c6810b4", + "fields": { + "code_commune_insee": "55321", + "nom_de_la_commune": "MARRE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.2016524858, + 5.29839041902 + ], + "libelle_d_acheminement": "MARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29839041902, + 49.2016524858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb9385c5d7b62047fa09b32dfb1a83a59aa069e4", + "fields": { + "ligne_5": "MANONCOURT SUR SEILLE", + "code_commune_insee": "54059", + "libelle_d_acheminement": "BELLEAU", + "code_postal": "54610", + "nom_de_la_commune": "BELLEAU", + "coordonnees_gps": [ + 48.8487345093, + 6.18702961708 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18702961708, + 48.8487345093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d4a36c617a6d4561acf546327fbdeb901f8a439", + "fields": { + "code_commune_insee": "55327", + "nom_de_la_commune": "MAUVAGES", + "code_postal": "55190", + "coordonnees_gps": [ + 48.5953356755, + 5.54882215388 + ], + "libelle_d_acheminement": "MAUVAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54882215388, + 48.5953356755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c4022bb6a6423897798840aa9d1a4be65856f7c", + "fields": { + "code_commune_insee": "54065", + "nom_de_la_commune": "BERTRICHAMPS", + "code_postal": "54120", + "coordonnees_gps": [ + 48.4351443357, + 6.81228115142 + ], + "libelle_d_acheminement": "BERTRICHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81228115142, + 48.4351443357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b1879eb599e5c7d9389734ff985e7cedfb02120", + "fields": { + "code_commune_insee": "55338", + "nom_de_la_commune": "MILLY SUR BRADON", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3955801908, + 5.21589849467 + ], + "libelle_d_acheminement": "MILLY SUR BRADON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21589849467, + 49.3955801908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d42edcc6c03766d5a4b2597fc53d94e473265ef", + "fields": { + "code_commune_insee": "54075", + "nom_de_la_commune": "BIONVILLE", + "code_postal": "54540", + "coordonnees_gps": [ + 48.495041795, + 7.02179760093 + ], + "libelle_d_acheminement": "BIONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02179760093, + 48.495041795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfba24d7a287902b52756289f58c76e444dd69e2", + "fields": { + "code_commune_insee": "55339", + "nom_de_la_commune": "MOGEVILLE", + "code_postal": "55400", + "coordonnees_gps": [ + 49.2438999043, + 5.53947409518 + ], + "libelle_d_acheminement": "MOGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53947409518, + 49.2438999043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae893009dca373423a5db8d453e95c2617e0577f", + "fields": { + "code_commune_insee": "54076", + "nom_de_la_commune": "BLAINVILLE SUR L EAU", + "code_postal": "54360", + "coordonnees_gps": [ + 48.5501857312, + 6.41522344884 + ], + "libelle_d_acheminement": "BLAINVILLE SUR L EAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41522344884, + 48.5501857312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca039b49aded05b58e4e501c5b1bdf2416bd9e4b", + "fields": { + "code_commune_insee": "55350", + "nom_de_la_commune": "MONTIGNY LES VAUCOULEURS", + "code_postal": "55140", + "coordonnees_gps": [ + 48.5781146588, + 5.6048244301 + ], + "libelle_d_acheminement": "MONTIGNY LES VAUCOULEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6048244301, + 48.5781146588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06e15f1ddaf536a1ec34a25b572b84afbc98aa3e", + "fields": { + "code_commune_insee": "54093", + "nom_de_la_commune": "BRAINVILLE", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1224087762, + 5.80859499046 + ], + "libelle_d_acheminement": "BRAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80859499046, + 49.1224087762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20655134ac4f52f1bbd2d650fcc4480c2956d6a4", + "fields": { + "code_commune_insee": "55352", + "nom_de_la_commune": "MONTPLONNE", + "code_postal": "55000", + "coordonnees_gps": [ + 48.6979724913, + 5.16926714673 + ], + "libelle_d_acheminement": "MONTPLONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16926714673, + 48.6979724913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9001ec7af8dfe270d4db9097bd4f0168c7855bfb", + "fields": { + "code_commune_insee": "54097", + "nom_de_la_commune": "BREMENIL", + "code_postal": "54540", + "coordonnees_gps": [ + 48.523168625, + 6.921302703 + ], + "libelle_d_acheminement": "BREMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.921302703, + 48.523168625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62b5484348f32111c0fbb8533dff35088bd7ebd5", + "fields": { + "code_commune_insee": "55357", + "nom_de_la_commune": "MORGEMOULIN", + "code_postal": "55400", + "coordonnees_gps": [ + 49.2296830093, + 5.57188739785 + ], + "libelle_d_acheminement": "MORGEMOULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57188739785, + 49.2296830093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c063a8a311dd4e77b271cb46a8063d07cf4c5a79", + "fields": { + "ligne_5": "MANCE", + "code_commune_insee": "54099", + "libelle_d_acheminement": "VAL DE BRIEY", + "code_postal": "54150", + "nom_de_la_commune": "VAL DE BRIEY", + "coordonnees_gps": [ + 49.2557914726, + 5.97046491466 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97046491466, + 49.2557914726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5c0075df5748daa1a937fb5ebdc1017cf47a789", + "fields": { + "code_commune_insee": "55361", + "nom_de_la_commune": "MOULAINVILLE", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1609164543, + 5.49038770004 + ], + "libelle_d_acheminement": "MOULAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49038770004, + 49.1609164543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c24dedbf6383663bf9facc8a9ad60d9e3817cbd", + "fields": { + "code_commune_insee": "54101", + "nom_de_la_commune": "BROUVILLE", + "code_postal": "54120", + "coordonnees_gps": [ + 48.4922395199, + 6.74929356253 + ], + "libelle_d_acheminement": "BROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74929356253, + 48.4922395199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bd9489101976ac6adab5a499ee789fa880a6298", + "fields": { + "code_commune_insee": "55368", + "nom_de_la_commune": "NAIVES EN BLOIS", + "code_postal": "55190", + "coordonnees_gps": [ + 48.6669601977, + 5.54899721589 + ], + "libelle_d_acheminement": "NAIVES EN BLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54899721589, + 48.6669601977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "078320152af88802f5e9fd1139559ffd557c8926", + "fields": { + "code_commune_insee": "54103", + "nom_de_la_commune": "BRUVILLE", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1230005819, + 5.92560093898 + ], + "libelle_d_acheminement": "BRUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92560093898, + 49.1230005819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e91154593f0dbde570ee125f21a5a310a3e98c6", + "fields": { + "code_commune_insee": "55371", + "nom_de_la_commune": "NANCOIS LE GRAND", + "code_postal": "55500", + "coordonnees_gps": [ + 48.7139239344, + 5.39257246773 + ], + "libelle_d_acheminement": "NANCOIS LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39257246773, + 48.7139239344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a403b9873dec1249c9d2b2d01f0d1cd92b4400b2", + "fields": { + "code_commune_insee": "54105", + "nom_de_la_commune": "BULLIGNY", + "code_postal": "54113", + "coordonnees_gps": [ + 48.5723193391, + 5.84368578538 + ], + "libelle_d_acheminement": "BULLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84368578538, + 48.5723193391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "196d61f62469481a8408279803ae8a1abf6e458f", + "fields": { + "code_commune_insee": "55373", + "nom_de_la_commune": "NANT LE GRAND", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6815794654, + 5.22965400058 + ], + "libelle_d_acheminement": "NANT LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22965400058, + 48.6815794654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "793b4d1b416609cc4d151ed49822f6351bac7502", + "fields": { + "code_commune_insee": "54111", + "nom_de_la_commune": "CHALIGNY", + "code_postal": "54230", + "coordonnees_gps": [ + 48.6369570839, + 6.09005794818 + ], + "libelle_d_acheminement": "CHALIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09005794818, + 48.6369570839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6476232fa4a951c3b66b9f9ef2831c02453107ba", + "fields": { + "code_commune_insee": "55375", + "nom_de_la_commune": "NANTILLOIS", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2996425661, + 5.13157990328 + ], + "libelle_d_acheminement": "NANTILLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13157990328, + 49.2996425661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dacf8392a358660885a3717eb02f8bd05348328", + "fields": { + "code_commune_insee": "54124", + "nom_de_la_commune": "CHAZELLES SUR ALBE", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5877870031, + 6.77089895622 + ], + "libelle_d_acheminement": "CHAZELLES SUR ALBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77089895622, + 48.5877870031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0dd3e7cdc9e1b25bc94dd0660549ed12585f4e1", + "fields": { + "code_commune_insee": "55378", + "nom_de_la_commune": "NETTANCOURT", + "code_postal": "55800", + "coordonnees_gps": [ + 48.8741218376, + 4.93497890158 + ], + "libelle_d_acheminement": "NETTANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93497890158, + 48.8741218376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16c4106bc25b8f6face8767f65cc4c2b2a06fc60", + "fields": { + "code_commune_insee": "54127", + "nom_de_la_commune": "CHENIERES", + "code_postal": "54720", + "coordonnees_gps": [ + 49.4742785657, + 5.76605374538 + ], + "libelle_d_acheminement": "CHENIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76605374538, + 49.4742785657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08b6a3fcb36cf7a9db4cc6c422a221f0ba438b3d", + "fields": { + "code_commune_insee": "55381", + "nom_de_la_commune": "NEUVILLE LES VAUCOULEURS", + "code_postal": "55140", + "coordonnees_gps": [ + 48.5765469967, + 5.65580757296 + ], + "libelle_d_acheminement": "NEUVILLE LES VAUCOULEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65580757296, + 48.5765469967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22e69093a7fb0530b403a4f2d91186aedac48a69", + "fields": { + "code_commune_insee": "54130", + "nom_de_la_commune": "CLAYEURES", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4695576115, + 6.4094671888 + ], + "libelle_d_acheminement": "CLAYEURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4094671888, + 48.4695576115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d870d2199c11d134fdeed834595d26bd89aaa2d", + "fields": { + "code_commune_insee": "55387", + "nom_de_la_commune": "NOUILLONPONT", + "code_postal": "55230", + "coordonnees_gps": [ + 49.3572202791, + 5.66034226167 + ], + "libelle_d_acheminement": "NOUILLONPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66034226167, + 49.3572202791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3efa6632bcb98a455689f15951c01a5be1233c4a", + "fields": { + "code_commune_insee": "54134", + "nom_de_la_commune": "COLMEY", + "code_postal": "54260", + "coordonnees_gps": [ + 49.4630021306, + 5.55236900348 + ], + "libelle_d_acheminement": "COLMEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55236900348, + 49.4630021306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3d20574e4816a04b7fa4a858849c83e8363db23", + "fields": { + "code_commune_insee": "55394", + "nom_de_la_commune": "ORNES", + "code_postal": "55150", + "coordonnees_gps": [ + 49.2567451481, + 5.47371666783 + ], + "libelle_d_acheminement": "ORNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47371666783, + 49.2567451481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00f840f5a63c0233454a2f0c45e6932b93bc0251", + "fields": { + "code_commune_insee": "54136", + "nom_de_la_commune": "CONFLANS EN JARNISY", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1684203113, + 5.8479719726 + ], + "libelle_d_acheminement": "CONFLANS EN JARNISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8479719726, + 49.1684203113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7d53702983771fc248e29bdc5e33ee0aff123e5", + "fields": { + "code_commune_insee": "55397", + "nom_de_la_commune": "PAGNY LA BLANCHE COTE", + "code_postal": "55140", + "coordonnees_gps": [ + 48.5374465111, + 5.73922302223 + ], + "libelle_d_acheminement": "PAGNY LA BLANCHE COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73922302223, + 48.5374465111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c796b3fbb1b656107dfa527df35a8e1bcef3325", + "fields": { + "code_commune_insee": "54137", + "nom_de_la_commune": "CONS LA GRANDVILLE", + "code_postal": "54870", + "coordonnees_gps": [ + 49.4856090372, + 5.70114135723 + ], + "libelle_d_acheminement": "CONS LA GRANDVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70114135723, + 49.4856090372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fca5503e281f396df860da8295fd5e809f3eb559", + "fields": { + "code_commune_insee": "55410", + "nom_de_la_commune": "QUINCY LANDZECOURT", + "code_postal": "55600", + "coordonnees_gps": [ + 49.4911393915, + 5.2960461996 + ], + "libelle_d_acheminement": "QUINCY LANDZECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2960461996, + 49.4911393915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61a9baed3c9bdbc2b4c282a3a3d54716382bc09e", + "fields": { + "code_commune_insee": "54138", + "nom_de_la_commune": "COSNES ET ROMAIN", + "code_postal": "54400", + "coordonnees_gps": [ + 49.525596238, + 5.71659969266 + ], + "libelle_d_acheminement": "COSNES ET ROMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71659969266, + 49.525596238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8a21a31fefc9351615ebffdea4042b1a03ed20c", + "fields": { + "ligne_5": "SOMMAISNE", + "code_commune_insee": "55423", + "libelle_d_acheminement": "REMBERCOURT SOMMAISNE", + "code_postal": "55250", + "nom_de_la_commune": "REMBERCOURT SOMMAISNE", + "coordonnees_gps": [ + 48.9200891019, + 5.17855123412 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17855123412, + 48.9200891019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a53e3a517db5a304337afcf149f3d6b232b60c01", + "fields": { + "code_commune_insee": "54154", + "nom_de_la_commune": "DENEUVRE", + "code_postal": "54120", + "coordonnees_gps": [ + 48.4268871835, + 6.72071255897 + ], + "libelle_d_acheminement": "DENEUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72071255897, + 48.4268871835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2475a10a1bb4fbf2f0232ff5c83fe7b95eb8d93", + "fields": { + "code_commune_insee": "55426", + "nom_de_la_commune": "RESSON", + "code_postal": "55000", + "coordonnees_gps": [ + 48.771071403, + 5.2310401165 + ], + "libelle_d_acheminement": "RESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2310401165, + 48.771071403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2c7a033ef27b3394349e19088c24d3e9df6a551", + "fields": { + "code_commune_insee": "54167", + "nom_de_la_commune": "DOMMARTIN LES TOUL", + "code_postal": "54200", + "coordonnees_gps": [ + 48.6713430062, + 5.92526202105 + ], + "libelle_d_acheminement": "DOMMARTIN LES TOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92526202105, + 48.6713430062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "906002157a309de51c9c3a5d47b8192323bf6d14", + "fields": { + "code_commune_insee": "55428", + "nom_de_la_commune": "REVILLE AUX BOIS", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3410510097, + 5.34124962311 + ], + "libelle_d_acheminement": "REVILLE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34124962311, + 49.3410510097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b886b29d6f009c2a6329a07c4ceb522a403d2fb", + "fields": { + "code_commune_insee": "54176", + "nom_de_la_commune": "EINVILLE AU JARD", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6558058764, + 6.4779137062 + ], + "libelle_d_acheminement": "EINVILLE AU JARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4779137062, + 48.6558058764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bf7544b68a0c785f0326178ce9b2212e6ef7827", + "fields": { + "code_commune_insee": "55438", + "nom_de_la_commune": "ROMAGNE SOUS MONTFAUCON", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3272531274, + 5.07279522494 + ], + "libelle_d_acheminement": "ROMAGNE SOUS MONTFAUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07279522494, + 49.3272531274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d590f4ea35996974752078a25c56d8c6aff01fc", + "fields": { + "code_commune_insee": "54180", + "nom_de_la_commune": "ERBEVILLER SUR AMEZULE", + "code_postal": "54280", + "coordonnees_gps": [ + 48.7297219006, + 6.38825640905 + ], + "libelle_d_acheminement": "ERBEVILLER SUR AMEZULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38825640905, + 48.7297219006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08bd0090390fc07a5b42ba7fcd783034607510e0", + "fields": { + "code_commune_insee": "55447", + "nom_de_la_commune": "RUPT AUX NONAINS", + "code_postal": "55170", + "coordonnees_gps": [ + 48.6626472968, + 5.09507160902 + ], + "libelle_d_acheminement": "RUPT AUX NONAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09507160902, + 48.6626472968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aadc6ee9c6b48db840c3024edb9a8aa12fcd5937", + "fields": { + "code_commune_insee": "54181", + "nom_de_la_commune": "ERROUVILLE", + "code_postal": "54680", + "coordonnees_gps": [ + 49.417401541, + 5.89794840942 + ], + "libelle_d_acheminement": "ERROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89794840942, + 49.417401541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b692eed281260c8b42b65bfd39cb817fbef6aed", + "fields": { + "code_commune_insee": "55452", + "nom_de_la_commune": "ST AMAND SUR ORNAIN", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6275522043, + 5.39456538238 + ], + "libelle_d_acheminement": "ST AMAND SUR ORNAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39456538238, + 48.6275522043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c738e9c3be37cffdd96b455562763849ad97c0ce", + "fields": { + "code_commune_insee": "54182", + "nom_de_la_commune": "ESSEY ET MAIZERAIS", + "code_postal": "54470", + "coordonnees_gps": [ + 48.9110254277, + 5.80601775099 + ], + "libelle_d_acheminement": "ESSEY ET MAIZERAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80601775099, + 48.9110254277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29da5e94992a9e537967bede8f26d5d68b42c89b", + "fields": { + "code_commune_insee": "55456", + "nom_de_la_commune": "ST GERMAIN SUR MEUSE", + "code_postal": "55140", + "coordonnees_gps": [ + 48.6480131272, + 5.72350490371 + ], + "libelle_d_acheminement": "ST GERMAIN SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72350490371, + 48.6480131272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31b1f60087350012906cd63f64829a5daf1f941c", + "fields": { + "code_commune_insee": "54191", + "nom_de_la_commune": "FENNEVILLER", + "code_postal": "54540", + "coordonnees_gps": [ + 48.4851073736, + 6.88313404801 + ], + "libelle_d_acheminement": "FENNEVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88313404801, + 48.4851073736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f327e31fcf90b669095823c6321925e2abc7f86", + "fields": { + "ligne_5": "WADONVILLE EN WOEVRE", + "code_commune_insee": "55457", + "libelle_d_acheminement": "ST HILAIRE EN WOEVRE", + "code_postal": "55160", + "nom_de_la_commune": "ST HILAIRE EN WOEVRE", + "coordonnees_gps": [ + 49.074793582, + 5.70636197976 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70636197976, + 49.074793582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e074b17bbace6f0f1fa7534fdc112590ec0553db", + "fields": { + "code_commune_insee": "54212", + "nom_de_la_commune": "FRESNOIS LA MONTAGNE", + "code_postal": "54260", + "coordonnees_gps": [ + 49.4988783585, + 5.65106914796 + ], + "libelle_d_acheminement": "FRESNOIS LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65106914796, + 49.4988783585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03bc08ca7b00772a5186bc3e37a7b803896b6c00", + "fields": { + "code_commune_insee": "55469", + "nom_de_la_commune": "SASSEY SUR MEUSE", + "code_postal": "55110", + "coordonnees_gps": [ + 49.4119703128, + 5.18704970118 + ], + "libelle_d_acheminement": "SASSEY SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18704970118, + 49.4119703128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83fc5baad484755e2e23eb505221b7110113c409", + "fields": { + "code_commune_insee": "54213", + "nom_de_la_commune": "FRIAUVILLE", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1432779641, + 5.83078364972 + ], + "libelle_d_acheminement": "FRIAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83078364972, + 49.1432779641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50183c990df081510d4d5dd0d98186080d23f8c7", + "fields": { + "code_commune_insee": "55470", + "nom_de_la_commune": "SAUDRUPT", + "code_postal": "55000", + "coordonnees_gps": [ + 48.6952209612, + 5.05807421719 + ], + "libelle_d_acheminement": "SAUDRUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05807421719, + 48.6952209612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "656306477b752ab41ab341972dd9828f15361ab0", + "fields": { + "code_commune_insee": "54221", + "nom_de_la_commune": "GERBECOURT ET HAPLEMONT", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4887341101, + 6.15264357464 + ], + "libelle_d_acheminement": "GERBECOURT ET HAPLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15264357464, + 48.4887341101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f925dae50f198c4769c8a9647cc6595b7b30785", + "fields": { + "ligne_5": "VAUX LA GRANDE", + "code_commune_insee": "55472", + "libelle_d_acheminement": "SAULVAUX", + "code_postal": "55500", + "nom_de_la_commune": "SAULVAUX", + "coordonnees_gps": [ + 48.6897973515, + 5.46044345308 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46044345308, + 48.6897973515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5933fe2443203e6b7c8411182c0e096f9852bde3", + "fields": { + "code_commune_insee": "54230", + "nom_de_la_commune": "GOGNEY", + "code_postal": "54450", + "coordonnees_gps": [ + 48.6147528073, + 6.86850513389 + ], + "libelle_d_acheminement": "GOGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86850513389, + 48.6147528073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f40bde05608ec28bebf7ff8c4b4cf7fd21f7a7fc", + "fields": { + "code_commune_insee": "55475", + "nom_de_la_commune": "SAUVOY", + "code_postal": "55190", + "coordonnees_gps": [ + 48.6394778194, + 5.59975067222 + ], + "libelle_d_acheminement": "SAUVOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59975067222, + 48.6394778194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d8749378855fe079d77ef494fc752d68c99c674", + "fields": { + "code_commune_insee": "54231", + "nom_de_la_commune": "GONDRECOURT AIX", + "code_postal": "54800", + "coordonnees_gps": [ + 49.2444148346, + 5.76236135673 + ], + "libelle_d_acheminement": "GONDRECOURT AIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76236135673, + 49.2444148346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9d634a792c06bf50c3ed92e1df3df9bd80321ec", + "fields": { + "code_commune_insee": "55484", + "nom_de_la_commune": "SEPTSARGES", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2865032784, + 5.17446943745 + ], + "libelle_d_acheminement": "SEPTSARGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17446943745, + 49.2865032784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e46b1403dbce8375bcbd0ab95f402960bc5d6318", + "fields": { + "code_commune_insee": "54239", + "nom_de_la_commune": "GRISCOURT", + "code_postal": "54380", + "coordonnees_gps": [ + 48.8410498647, + 6.01719019687 + ], + "libelle_d_acheminement": "GRISCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01719019687, + 48.8410498647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b44a3a94879f4d7723a8acf3188941dba1379e1", + "fields": { + "code_commune_insee": "55494", + "nom_de_la_commune": "SOMMELONNE", + "code_postal": "55170", + "coordonnees_gps": [ + 48.6750698928, + 5.03693713079 + ], + "libelle_d_acheminement": "SOMMELONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03693713079, + 48.6750698928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87e9d4b5e49f47484087ab25d9e4b013c05a7d44", + "fields": { + "code_commune_insee": "54244", + "nom_de_la_commune": "HAGEVILLE", + "code_postal": "54470", + "coordonnees_gps": [ + 49.0316653024, + 5.86433857707 + ], + "libelle_d_acheminement": "HAGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86433857707, + 49.0316653024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "051c2594b5b715a30061c97f4d55ca515ff59a02", + "fields": { + "code_commune_insee": "55505", + "nom_de_la_commune": "THIERVILLE SUR MEUSE", + "code_postal": "55840", + "coordonnees_gps": [ + 49.1721699733, + 5.33910478758 + ], + "libelle_d_acheminement": "THIERVILLE SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33910478758, + 49.1721699733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "501726b5a7f729e87986f13d9c3bcd55bd65ad4c", + "fields": { + "code_commune_insee": "54248", + "nom_de_la_commune": "HAMONVILLE", + "code_postal": "54470", + "coordonnees_gps": [ + 48.8244409233, + 5.808080587 + ], + "libelle_d_acheminement": "HAMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.808080587, + 48.8244409233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b15b819ce7702432cdec291cdf6a7bb1988357f9", + "fields": { + "code_commune_insee": "55522", + "nom_de_la_commune": "UGNY SUR MEUSE", + "code_postal": "55140", + "coordonnees_gps": [ + 48.6380468267, + 5.68950588575 + ], + "libelle_d_acheminement": "UGNY SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68950588575, + 48.6380468267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43d6ffd51fdd45cb9e3efe020b29b596e99be8c1", + "fields": { + "code_commune_insee": "54257", + "nom_de_la_commune": "HEILLECOURT", + "code_postal": "54180", + "coordonnees_gps": [ + 48.6510825042, + 6.19906043573 + ], + "libelle_d_acheminement": "HEILLECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19906043573, + 48.6510825042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7df9299a9073705483213129fed5e8281dbdbedb", + "fields": { + "code_commune_insee": "55523", + "nom_de_la_commune": "VACHERAUVILLE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.2298521797, + 5.36190605148 + ], + "libelle_d_acheminement": "VACHERAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36190605148, + 49.2298521797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1465a2a149ed3ee2af94c5fff40e42c8cda66661", + "fields": { + "code_commune_insee": "54258", + "nom_de_la_commune": "HENAMENIL", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6645550394, + 6.56878209568 + ], + "libelle_d_acheminement": "HENAMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56878209568, + 48.6645550394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f619200f5ce5052107f4d5b3ad30c5a5fd99ea95", + "fields": { + "code_commune_insee": "55526", + "nom_de_la_commune": "VADONVILLE", + "code_postal": "55200", + "coordonnees_gps": [ + 48.7985029531, + 5.5144264856 + ], + "libelle_d_acheminement": "VADONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5144264856, + 48.7985029531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d3cca47ba5ae7981fa93cc0da7d1b3dd0d1bff4", + "fields": { + "code_commune_insee": "54268", + "nom_de_la_commune": "HOUSSEVILLE", + "code_postal": "54930", + "coordonnees_gps": [ + 48.4077357566, + 6.11574371641 + ], + "libelle_d_acheminement": "HOUSSEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11574371641, + 48.4077357566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35ea08a9b71e1e6f19b085e9bde1ee002150d9eb", + "fields": { + "code_commune_insee": "55549", + "nom_de_la_commune": "VERY", + "code_postal": "55270", + "coordonnees_gps": [ + 49.240211743, + 5.09287373247 + ], + "libelle_d_acheminement": "VERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09287373247, + 49.240211743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d225f35bc4a0554065bb6a1d9ff506eb03a06727", + "fields": { + "code_commune_insee": "54278", + "nom_de_la_commune": "JEVONCOURT", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4141859978, + 6.16235097783 + ], + "libelle_d_acheminement": "JEVONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16235097783, + 48.4141859978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9b4877accf90d5ba2a193438df31bfdb0ef1e07", + "fields": { + "ligne_5": "HATTONVILLE", + "code_commune_insee": "55551", + "libelle_d_acheminement": "VIGNEULLES LES HATTONCHATEL", + "code_postal": "55210", + "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", + "coordonnees_gps": [ + 48.9857791469, + 5.724051532 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.724051532, + 48.9857791469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62514e8012db7068198c3dd88f7a542b59303125", + "fields": { + "code_commune_insee": "54280", + "nom_de_la_commune": "JOEUF", + "code_postal": "54240", + "coordonnees_gps": [ + 49.2320250417, + 6.01169605322 + ], + "libelle_d_acheminement": "JOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01169605322, + 49.2320250417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f39037932987fd36740d10c47fc5069d6532b6b0", + "fields": { + "code_commune_insee": "55553", + "nom_de_la_commune": "VIGNOT", + "code_postal": "55200", + "coordonnees_gps": [ + 48.7806834874, + 5.61241732944 + ], + "libelle_d_acheminement": "VIGNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61241732944, + 48.7806834874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed050b43196485b5d1444d3bcfc0e006dd606268", + "fields": { + "code_commune_insee": "54281", + "nom_de_la_commune": "JOLIVET", + "code_postal": "54300", + "coordonnees_gps": [ + 48.6107978242, + 6.51789715685 + ], + "libelle_d_acheminement": "JOLIVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51789715685, + 48.6107978242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e56973d2afb8a88867670e6f7dd8acdc95ebcbee", + "fields": { + "code_commune_insee": "55557", + "nom_de_la_commune": "VILLE EN WOEVRE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.1384249835, + 5.61392700414 + ], + "libelle_d_acheminement": "VILLE EN WOEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61392700414, + 49.1384249835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1df3740d926448d242b08c6d37c0128ce13b8f69", + "fields": { + "code_commune_insee": "54282", + "nom_de_la_commune": "JOPPECOURT", + "code_postal": "54620", + "coordonnees_gps": [ + 49.3897779591, + 5.80251158691 + ], + "libelle_d_acheminement": "JOPPECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80251158691, + 49.3897779591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aa2cd1dbc6bb6dfdb4530faff7cd959afe68f6d", + "fields": { + "code_commune_insee": "55559", + "nom_de_la_commune": "VILLEROY SUR MEHOLLE", + "code_postal": "55190", + "coordonnees_gps": [ + 48.616315357, + 5.57205116516 + ], + "libelle_d_acheminement": "VILLEROY SUR MEHOLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57205116516, + 48.616315357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7db00c17617e29775cdfac3fc6cd2ad1553a6643", + "fields": { + "code_commune_insee": "54292", + "nom_de_la_commune": "LAMATH", + "code_postal": "54300", + "coordonnees_gps": [ + 48.5201883757, + 6.44306273905 + ], + "libelle_d_acheminement": "LAMATH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44306273905, + 48.5201883757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b379160d37946c801cb7a2baafd557348bd2c5a9", + "fields": { + "code_commune_insee": "55568", + "nom_de_la_commune": "VILLE SUR SAULX", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7184994101, + 5.07040984768 + ], + "libelle_d_acheminement": "VILLE SUR SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07040984768, + 48.7184994101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b56f9d5adedb8709a26839618df82cad6954dc6f", + "fields": { + "code_commune_insee": "54306", + "nom_de_la_commune": "LAY ST REMY", + "code_postal": "54570", + "coordonnees_gps": [ + 48.6816250302, + 5.76144997783 + ], + "libelle_d_acheminement": "LAY ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76144997783, + 48.6816250302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3349ee1f4d5b29fe789402267efb769b69a311d", + "fields": { + "code_commune_insee": "55571", + "nom_de_la_commune": "VILOSNES HARAUMONT", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3370255498, + 5.2447539057 + ], + "libelle_d_acheminement": "VILOSNES HARAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2447539057, + 49.3370255498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa36be6826d766f1167d86814ee4f63ac203f1d4", + "fields": { + "code_commune_insee": "54321", + "nom_de_la_commune": "LONGLAVILLE", + "code_postal": "54810", + "coordonnees_gps": [ + 49.533561598, + 5.80230527944 + ], + "libelle_d_acheminement": "LONGLAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80230527944, + 49.533561598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "474e82c7c1193a6695902cd748e57dc1e0f52550", + "fields": { + "code_commune_insee": "55579", + "nom_de_la_commune": "WATRONVILLE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.1386242762, + 5.54701396462 + ], + "libelle_d_acheminement": "WATRONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54701396462, + 49.1386242762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc75a3491c51fe7e6b35cd14c11b6c193f29b3b9", + "fields": { + "code_commune_insee": "54328", + "nom_de_la_commune": "LUDRES", + "code_postal": "54710", + "coordonnees_gps": [ + 48.6207490821, + 6.17338110718 + ], + "libelle_d_acheminement": "LUDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17338110718, + 48.6207490821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "803623eb8a72eb2f9e670a2611069146b9924df6", + "fields": { + "code_commune_insee": "55582", + "nom_de_la_commune": "WISEPPE", + "code_postal": "55700", + "coordonnees_gps": [ + 49.4607454359, + 5.16493375894 + ], + "libelle_d_acheminement": "WISEPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16493375894, + 49.4607454359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75d9431da54fbd00b3a76da54122464788e8a481", + "fields": { + "code_commune_insee": "54329", + "nom_de_la_commune": "LUNEVILLE", + "code_postal": "54300", + "coordonnees_gps": [ + 48.5920244663, + 6.49810324732 + ], + "libelle_d_acheminement": "LUNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49810324732, + 48.5920244663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "115a5fa86cb150220d6a4f9cd944ac9b6417c426", + "fields": { + "code_commune_insee": "55583", + "nom_de_la_commune": "WOEL", + "code_postal": "55210", + "coordonnees_gps": [ + 49.0386550285, + 5.74002247215 + ], + "libelle_d_acheminement": "WOEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74002247215, + 49.0386550285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8be184db75c2b448436910056963a7d46df699b0", + "fields": { + "ligne_5": "MAINVILLE", + "code_commune_insee": "54334", + "libelle_d_acheminement": "MAIRY MAINVILLE", + "code_postal": "54150", + "nom_de_la_commune": "MAIRY MAINVILLE", + "coordonnees_gps": [ + 49.3047502382, + 5.85538054793 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85538054793, + 49.3047502382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43bc58e84a319654e9b257b5dd11c1fae3dbcbe8", + "fields": { + "code_commune_insee": "55584", + "nom_de_la_commune": "WOIMBEY", + "code_postal": "55300", + "coordonnees_gps": [ + 48.965431246, + 5.4520114726 + ], + "libelle_d_acheminement": "WOIMBEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4520114726, + 48.965431246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4bc6888dd5faf8996970d58306920509b262031", + "fields": { + "code_commune_insee": "54336", + "nom_de_la_commune": "MAIZIERES", + "code_postal": "54550", + "coordonnees_gps": [ + 48.5908483148, + 6.0487436467 + ], + "libelle_d_acheminement": "MAIZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0487436467, + 48.5908483148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eb54f26848a4a29deb6fbfbc2b7f018e4ec968d", + "fields": { + "code_commune_insee": "56003", + "nom_de_la_commune": "ARRADON", + "code_postal": "56610", + "coordonnees_gps": [ + 47.6335958588, + -2.8220328139 + ], + "libelle_d_acheminement": "ARRADON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.8220328139, + 47.6335958588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69a00dac0e43dcf6ceb9bfe6fc4124ca3aefa8bb", + "fields": { + "code_commune_insee": "54339", + "nom_de_la_commune": "MALZEVILLE", + "code_postal": "54220", + "coordonnees_gps": [ + 48.7218421978, + 6.18996136017 + ], + "libelle_d_acheminement": "MALZEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18996136017, + 48.7218421978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1961d89d0881a59cf95f0c3833fd36c613c08d5", + "fields": { + "code_commune_insee": "56007", + "nom_de_la_commune": "AURAY", + "code_postal": "56400", + "coordonnees_gps": [ + 47.6677057368, + -2.99041112225 + ], + "libelle_d_acheminement": "AURAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.99041112225, + 47.6677057368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd02f859dedd800214ef690eb52cb0ac2c73597f", + "fields": { + "code_commune_insee": "54343", + "nom_de_la_commune": "MANDRES AUX QUATRE TOURS", + "code_postal": "54470", + "coordonnees_gps": [ + 48.8280148948, + 5.79045735083 + ], + "libelle_d_acheminement": "MANDRES AUX QUATRE TOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79045735083, + 48.8280148948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89d355711a57e2bed7c74314a6760ce5b62bf952", + "fields": { + "code_commune_insee": "56008", + "nom_de_la_commune": "BADEN", + "code_postal": "56870", + "coordonnees_gps": [ + 47.614993273, + -2.90383771516 + ], + "libelle_d_acheminement": "BADEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.90383771516, + 47.614993273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebb7d034ba178daf301a0aa3dc9cdf69ac4ffe1f", + "fields": { + "code_commune_insee": "54348", + "nom_de_la_commune": "MANONVILLE", + "code_postal": "54385", + "coordonnees_gps": [ + 48.8313527752, + 5.91543101221 + ], + "libelle_d_acheminement": "MANONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91543101221, + 48.8313527752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4a08814744d3d4eb5faef14d0c74acba15c2f2c", + "fields": { + "code_commune_insee": "56010", + "nom_de_la_commune": "BAUD", + "code_postal": "56150", + "coordonnees_gps": [ + 47.8753982698, + -3.03131524701 + ], + "libelle_d_acheminement": "BAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.03131524701, + 47.8753982698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e771b06aa5e1d1d8bd509a8518b71d45005717b3", + "fields": { + "code_commune_insee": "54352", + "nom_de_la_commune": "MARON", + "code_postal": "54230", + "coordonnees_gps": [ + 48.6577116838, + 6.05780726242 + ], + "libelle_d_acheminement": "MARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05780726242, + 48.6577116838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e03d9d1f924b852065e76a97cc881091ee2f368", + "fields": { + "code_commune_insee": "56015", + "nom_de_la_commune": "BERRIC", + "code_postal": "56230", + "coordonnees_gps": [ + 47.6385230566, + -2.52752927952 + ], + "libelle_d_acheminement": "BERRIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52752927952, + 47.6385230566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f17898045a8494555cf210fc9f83ce6307e8437b", + "fields": { + "code_commune_insee": "54356", + "nom_de_la_commune": "MATTEXEY", + "code_postal": "54830", + "coordonnees_gps": [ + 48.4390177422, + 6.52169861442 + ], + "libelle_d_acheminement": "MATTEXEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52169861442, + 48.4390177422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57977ee88cbfe6ec6151e991eca8e30fd996a552", + "fields": { + "code_commune_insee": "56021", + "nom_de_la_commune": "BRANDERION", + "code_postal": "56700", + "coordonnees_gps": [ + 47.79176054, + -3.19316403763 + ], + "libelle_d_acheminement": "BRANDERION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.19316403763, + 47.79176054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c6949479c8964b2e09ce310e4c4f41572676083", + "fields": { + "ligne_5": "MAXEVILLE CHAMPLEBOEUF", + "code_commune_insee": "54357", + "libelle_d_acheminement": "MAXEVILLE", + "code_postal": "54320", + "nom_de_la_commune": "MAXEVILLE", + "coordonnees_gps": [ + 48.7091528465, + 6.14959862185 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14959862185, + 48.7091528465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ee9805cd74ccb1cf26b5f9111d377ec4487dd76", + "fields": { + "code_commune_insee": "56023", + "nom_de_la_commune": "BRECH", + "code_postal": "56400", + "coordonnees_gps": [ + 47.709389623, + -3.02425370135 + ], + "libelle_d_acheminement": "BRECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.02425370135, + 47.709389623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7008310f4e2bfabaf5a0eff875c00b4f91e674c9", + "fields": { + "code_commune_insee": "54363", + "nom_de_la_commune": "MERCY LE HAUT", + "code_postal": "54560", + "coordonnees_gps": [ + 49.3697647828, + 5.82533322849 + ], + "libelle_d_acheminement": "MERCY LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82533322849, + 49.3697647828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4cf438c519ebcc873ca8c015afbe3a63311ab6a", + "fields": { + "code_commune_insee": "56035", + "nom_de_la_commune": "CARO", + "code_postal": "56140", + "coordonnees_gps": [ + 47.8621010187, + -2.32764949894 + ], + "libelle_d_acheminement": "CARO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.32764949894, + 47.8621010187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "743f37ab3d0921be494d6b89c900cb9cb087cf9b", + "fields": { + "ligne_5": "BOUDREZY", + "code_commune_insee": "54363", + "libelle_d_acheminement": "MERCY LE HAUT", + "code_postal": "54560", + "nom_de_la_commune": "MERCY LE HAUT", + "coordonnees_gps": [ + 49.3697647828, + 5.82533322849 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82533322849, + 49.3697647828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "310ced13833628591970a91f538f38cf69866f55", + "fields": { + "code_commune_insee": "56036", + "nom_de_la_commune": "CAUDAN", + "code_postal": "56850", + "coordonnees_gps": [ + 47.8132096296, + -3.34070239075 + ], + "libelle_d_acheminement": "CAUDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34070239075, + 47.8132096296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f84957d95b2a1a807c785ceebe2d85235ce7b73", + "fields": { + "code_commune_insee": "54371", + "nom_de_la_commune": "MOINEVILLE", + "code_postal": "54580", + "coordonnees_gps": [ + 49.1970140932, + 5.94836254251 + ], + "libelle_d_acheminement": "MOINEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94836254251, + 49.1970140932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64b03ec95102a050c0f92a309def2b886bf6255b", + "fields": { + "code_commune_insee": "56041", + "nom_de_la_commune": "CLEGUEREC", + "code_postal": "56480", + "coordonnees_gps": [ + 48.1278326906, + -3.0634223364 + ], + "libelle_d_acheminement": "CLEGUEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.0634223364, + 48.1278326906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ffe7024d5d924653564e7265c2e9a0f91d8e78", + "fields": { + "code_commune_insee": "54373", + "nom_de_la_commune": "MONCEL LES LUNEVILLE", + "code_postal": "54300", + "coordonnees_gps": [ + 48.5637047138, + 6.56149374143 + ], + "libelle_d_acheminement": "MONCEL LES LUNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56149374143, + 48.5637047138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecda0b5192ca5e692fcbc103237efffde855c172", + "fields": { + "code_commune_insee": "56046", + "nom_de_la_commune": "CRACH", + "code_postal": "56950", + "coordonnees_gps": [ + 47.6301210908, + -3.00077657572 + ], + "libelle_d_acheminement": "CRACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00077657572, + 47.6301210908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "452e6d986d00f62e99c3d08d399228ddaefe3f15", + "fields": { + "code_commune_insee": "54378", + "nom_de_la_commune": "MONTIGNY SUR CHIERS", + "code_postal": "54870", + "coordonnees_gps": [ + 49.4718809607, + 5.66811908272 + ], + "libelle_d_acheminement": "MONTIGNY SUR CHIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66811908272, + 49.4718809607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0647072f6c6d7c7e83e3e5064235040130e2c0cb", + "fields": { + "code_commune_insee": "56047", + "nom_de_la_commune": "CREDIN", + "code_postal": "56580", + "coordonnees_gps": [ + 48.0385062482, + -2.76505746928 + ], + "libelle_d_acheminement": "CREDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76505746928, + 48.0385062482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef65cbf731e4e15ec13ecf7ecf513f8e40c64433", + "fields": { + "code_commune_insee": "54388", + "nom_de_la_commune": "MOUACOURT", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6720340555, + 6.63993630871 + ], + "libelle_d_acheminement": "MOUACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63993630871, + 48.6720340555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78485fb7cf9d0f6f4ead8d386e99b9bd1dc9993a", + "fields": { + "code_commune_insee": "56067", + "nom_de_la_commune": "GRAND CHAMP", + "code_postal": "56390", + "coordonnees_gps": [ + 47.760673333, + -2.84786424904 + ], + "libelle_d_acheminement": "GRAND CHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84786424904, + 47.760673333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ebd3e165f66fd8dd6b99c93098721efea79b5c9", + "fields": { + "code_commune_insee": "54401", + "nom_de_la_commune": "NONHIGNY", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5487523948, + 6.89074494437 + ], + "libelle_d_acheminement": "NONHIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89074494437, + 48.5487523948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "740549cfd169d3d83d5bb64974ec6eb98c1d6e24", + "fields": { + "code_commune_insee": "56072", + "nom_de_la_commune": "GUELTAS", + "code_postal": "56920", + "coordonnees_gps": [ + 48.0920646623, + -2.80987346419 + ], + "libelle_d_acheminement": "GUELTAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80987346419, + 48.0920646623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a117703a79c3cc8a6af06296796a2e56d536cd8", + "fields": { + "code_commune_insee": "54409", + "nom_de_la_commune": "OMELMONT", + "code_postal": "54330", + "coordonnees_gps": [ + 48.4933449333, + 6.11846755085 + ], + "libelle_d_acheminement": "OMELMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11846755085, + 48.4933449333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a29516dcf66785aadfb5efc62f5e5b16560b3fa", + "fields": { + "code_commune_insee": "56073", + "nom_de_la_commune": "GUEMENE SUR SCORFF", + "code_postal": "56160", + "coordonnees_gps": [ + 48.0663101307, + -3.20585471209 + ], + "libelle_d_acheminement": "GUEMENE SUR SCORFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.20585471209, + 48.0663101307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a77468d14a0bc2ac1286a434396fd41b393ca834", + "fields": { + "code_commune_insee": "54411", + "nom_de_la_commune": "ORMES ET VILLE", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4878294205, + 6.20501552992 + ], + "libelle_d_acheminement": "ORMES ET VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20501552992, + 48.4878294205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c99e6861787a6200bf16787e216d00c3daf3b55", + "fields": { + "code_commune_insee": "56083", + "nom_de_la_commune": "HENNEBONT", + "code_postal": "56700", + "coordonnees_gps": [ + 47.807556604, + -3.26971559866 + ], + "libelle_d_acheminement": "HENNEBONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.26971559866, + 47.807556604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49d0650b4ef0ddd3c9f1a1a759f15df7ced2b4a0", + "fields": { + "code_commune_insee": "54413", + "nom_de_la_commune": "OZERAILLES", + "code_postal": "54150", + "coordonnees_gps": [ + 49.2259087453, + 5.84170990352 + ], + "libelle_d_acheminement": "OZERAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84170990352, + 49.2259087453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d300864da6ebffbf06131d4ef898501a2086f96", + "fields": { + "code_commune_insee": "56086", + "nom_de_la_commune": "ILE D HOUAT", + "code_postal": "56170", + "coordonnees_gps": [ + 47.3894319946, + -2.96687516001 + ], + "libelle_d_acheminement": "ILE D HOUAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96687516001, + 47.3894319946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "919352d2ddf0bab8f8fcf802f26f5e74171557f0", + "fields": { + "code_commune_insee": "54419", + "nom_de_la_commune": "PARUX", + "code_postal": "54480", + "coordonnees_gps": [ + 48.5418719546, + 6.92113497047 + ], + "libelle_d_acheminement": "PARUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92113497047, + 48.5418719546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d40931511612a33cb1ae201baf8b1ef9f0182fd1", + "fields": { + "code_commune_insee": "56087", + "nom_de_la_commune": "ILE AUX MOINES", + "code_postal": "56780", + "coordonnees_gps": [ + 47.5862523195, + -2.84876733291 + ], + "libelle_d_acheminement": "ILE AUX MOINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84876733291, + 47.5862523195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a57a0b5efbb8b3e07d21cb281eaa54519a30901c", + "fields": { + "code_commune_insee": "54420", + "nom_de_la_commune": "PETIT FAILLY", + "code_postal": "54260", + "coordonnees_gps": [ + 49.439659769, + 5.50119376994 + ], + "libelle_d_acheminement": "PETIT FAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50119376994, + 49.439659769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c588df8fe4aedcf2a80b6a4c6d7f83e1ae4ba36", + "fields": { + "code_commune_insee": "56089", + "nom_de_la_commune": "INGUINIEL", + "code_postal": "56240", + "coordonnees_gps": [ + 47.9555939738, + -3.26003939704 + ], + "libelle_d_acheminement": "INGUINIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.26003939704, + 47.9555939738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4069e01c892f3018397a682807bf035a2aff6e9f", + "fields": { + "code_commune_insee": "54426", + "nom_de_la_commune": "PIERRE LA TREICHE", + "code_postal": "54200", + "coordonnees_gps": [ + 48.639755596, + 5.96389435396 + ], + "libelle_d_acheminement": "PIERRE LA TREICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96389435396, + 48.639755596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5480d6d75d53248c77523973558b598d3fdfadd", + "fields": { + "code_commune_insee": "56094", + "nom_de_la_commune": "KERVIGNAC", + "code_postal": "56700", + "coordonnees_gps": [ + 47.7686555667, + -3.2479141613 + ], + "libelle_d_acheminement": "KERVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.2479141613, + 47.7686555667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf5a2118996b8a13cbef9991239838a058ff8cad", + "fields": { + "code_commune_insee": "54429", + "nom_de_la_commune": "PIERREVILLE", + "code_postal": "54160", + "coordonnees_gps": [ + 48.5485746268, + 6.11074927639 + ], + "libelle_d_acheminement": "PIERREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11074927639, + 48.5485746268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e08da6784b9d773f1d050b5a1faa5dbb741ac73e", + "fields": { + "code_commune_insee": "56098", + "nom_de_la_commune": "LANESTER", + "code_postal": "56600", + "coordonnees_gps": [ + 47.7691924277, + -3.32648317962 + ], + "libelle_d_acheminement": "LANESTER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.32648317962, + 47.7691924277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "417bd9034d13f272e32feb04b7c370f2d5da3ce2", + "fields": { + "code_commune_insee": "54430", + "nom_de_la_commune": "POMPEY", + "code_postal": "54340", + "coordonnees_gps": [ + 48.7732074334, + 6.11082140462 + ], + "libelle_d_acheminement": "POMPEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11082140462, + 48.7732074334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e934794bcd9b68ce2c698834f98599a0cf8a461e", + "fields": { + "code_commune_insee": "56105", + "nom_de_la_commune": "LANVENEGEN", + "code_postal": "56320", + "coordonnees_gps": [ + 48.004442867, + -3.53246846865 + ], + "libelle_d_acheminement": "LANVENEGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.53246846865, + 48.004442867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "747a901f208cb9f44e02e2fd4c2299621feba13c", + "fields": { + "code_commune_insee": "54439", + "nom_de_la_commune": "PULNOY", + "code_postal": "54425", + "coordonnees_gps": [ + 48.7016421917, + 6.26610027665 + ], + "libelle_d_acheminement": "PULNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26610027665, + 48.7016421917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61afdb4cbf55b889f47627194a23ab0a36a92e7d", + "fields": { + "code_commune_insee": "56110", + "nom_de_la_commune": "LIGNOL", + "code_postal": "56160", + "coordonnees_gps": [ + 48.0272907982, + -3.27168989222 + ], + "libelle_d_acheminement": "LIGNOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.27168989222, + 48.0272907982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "085b028eaafb31842475cf692ccc08ac79874c90", + "fields": { + "code_commune_insee": "54440", + "nom_de_la_commune": "PUXE", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1511730916, + 5.7867211463 + ], + "libelle_d_acheminement": "PUXE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7867211463, + 49.1511730916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47410b782525cf691754f9e62743235f4f7dd8bd", + "fields": { + "code_commune_insee": "56115", + "nom_de_la_commune": "LOCMARIA GRAND CHAMP", + "code_postal": "56390", + "coordonnees_gps": [ + 47.7597989098, + -2.79009588918 + ], + "libelle_d_acheminement": "LOCMARIA GRAND CHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.79009588918, + 47.7597989098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f1fb20bf4b510ac3f69ed9dfe87d475fca02c43", + "fields": { + "code_commune_insee": "54441", + "nom_de_la_commune": "PUXIEUX", + "code_postal": "54800", + "coordonnees_gps": [ + 49.073592292, + 5.88512359173 + ], + "libelle_d_acheminement": "PUXIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88512359173, + 49.073592292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afcb93b16a6f3535b1a989cef882c12221c26326", + "fields": { + "code_commune_insee": "56119", + "nom_de_la_commune": "LOCOAL MENDON", + "code_postal": "56550", + "coordonnees_gps": [ + 47.70208162, + -3.11005717259 + ], + "libelle_d_acheminement": "LOCOAL MENDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.11005717259, + 47.70208162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06c779dcc1b7914767b736654f9d3ed944118430", + "fields": { + "code_commune_insee": "54443", + "nom_de_la_commune": "RAON LES LEAU", + "code_postal": "54540", + "coordonnees_gps": [ + 48.5138486149, + 7.09738712876 + ], + "libelle_d_acheminement": "RAON LES LEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09738712876, + 48.5138486149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7f3a4b41951c80b0794db7c436982f6ddf31ce7", + "fields": { + "code_commune_insee": "56120", + "nom_de_la_commune": "LOCQUELTAS", + "code_postal": "56390", + "coordonnees_gps": [ + 47.7645245564, + -2.75837514675 + ], + "libelle_d_acheminement": "LOCQUELTAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75837514675, + 47.7645245564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7d8e520f14099bfb70d1dfca0e47f4c04e4810d", + "fields": { + "code_commune_insee": "54444", + "nom_de_la_commune": "RAUCOURT", + "code_postal": "54610", + "coordonnees_gps": [ + 48.9241901699, + 6.21845026045 + ], + "libelle_d_acheminement": "RAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21845026045, + 48.9241901699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b9e0b90116dfe72404df193d47fabaff4e0281f", + "fields": { + "code_commune_insee": "56123", + "nom_de_la_commune": "MALANSAC", + "code_postal": "56220", + "coordonnees_gps": [ + 47.6861486744, + -2.2997401984 + ], + "libelle_d_acheminement": "MALANSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.2997401984, + 47.6861486744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f28f18e3fb4f0c064070727720ae9196b012dfb5", + "fields": { + "code_commune_insee": "54450", + "nom_de_la_commune": "REHERREY", + "code_postal": "54120", + "coordonnees_gps": [ + 48.5084858883, + 6.77646344447 + ], + "libelle_d_acheminement": "REHERREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77646344447, + 48.5084858883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a16045866197e15d0dfd725b2cad005d356211ad", + "fields": { + "code_commune_insee": "56128", + "nom_de_la_commune": "MELRAND", + "code_postal": "56310", + "coordonnees_gps": [ + 47.9750761347, + -3.09950962004 + ], + "libelle_d_acheminement": "MELRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09950962004, + 47.9750761347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7dcae1fd0739d9094cfadd74d5fc965b1520361", + "fields": { + "ligne_5": "HEUMONT", + "code_commune_insee": "54451", + "libelle_d_acheminement": "REHON", + "code_postal": "54430", + "nom_de_la_commune": "REHON", + "coordonnees_gps": [ + 49.4995747303, + 5.75731520354 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75731520354, + 49.4995747303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a14223b1ddf931e22aaaaee8d4a73324baa70239", + "fields": { + "code_commune_insee": "56129", + "nom_de_la_commune": "MENEAC", + "code_postal": "56490", + "coordonnees_gps": [ + 48.1310055293, + -2.45348998168 + ], + "libelle_d_acheminement": "MENEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45348998168, + 48.1310055293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "014b46c7034d058c1da042b496233c0c25c67be9", + "fields": { + "code_commune_insee": "54458", + "nom_de_la_commune": "REPAIX", + "code_postal": "54450", + "coordonnees_gps": [ + 48.6128594878, + 6.83000371109 + ], + "libelle_d_acheminement": "REPAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83000371109, + 48.6128594878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f56dadbe9957a933cfe2ccc0073a30389afdd97a", + "fields": { + "code_commune_insee": "56133", + "nom_de_la_commune": "MISSIRIAC", + "code_postal": "56140", + "coordonnees_gps": [ + 47.8239477341, + -2.35554306974 + ], + "libelle_d_acheminement": "MISSIRIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.35554306974, + 47.8239477341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "440a179871fbf3355a88d0243431bf01ceee6e28", + "fields": { + "code_commune_insee": "54464", + "nom_de_la_commune": "ROUVES", + "code_postal": "54610", + "coordonnees_gps": [ + 48.9025493534, + 6.20428002565 + ], + "libelle_d_acheminement": "ROUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20428002565, + 48.9025493534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b142de15b7e7d3ffb3dec8725c43050624fb173", + "fields": { + "ligne_5": "REMUNGOL", + "code_commune_insee": "56144", + "libelle_d_acheminement": "EVELLYS", + "code_postal": "56500", + "nom_de_la_commune": "EVELLYS", + "coordonnees_gps": [ + 47.9969702073, + -2.84450199902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84450199902, + 47.9969702073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdfba1a803f467128d0de56adf7209ac3c60e861", + "fields": { + "code_commune_insee": "54469", + "nom_de_la_commune": "ST AIL", + "code_postal": "54580", + "coordonnees_gps": [ + 49.1694540532, + 6.0019618843 + ], + "libelle_d_acheminement": "ST AIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0019618843, + 49.1694540532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cbb39d6f42f06edb5e1bcf8e993027e0b17a397", + "fields": { + "code_commune_insee": "56154", + "nom_de_la_commune": "PEILLAC", + "code_postal": "56220", + "coordonnees_gps": [ + 47.7151673014, + -2.21864708228 + ], + "libelle_d_acheminement": "PEILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21864708228, + 47.7151673014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54633e0f12e21c9e3060654cb325bbc1ea95ce07", + "fields": { + "code_commune_insee": "54470", + "nom_de_la_commune": "ST BAUSSANT", + "code_postal": "54470", + "coordonnees_gps": [ + 48.8919040892, + 5.79727902455 + ], + "libelle_d_acheminement": "ST BAUSSANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79727902455, + 48.8919040892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c3014563cdfb9a1235b6db803c23e3f0ec9840e", + "fields": { + "code_commune_insee": "56156", + "nom_de_la_commune": "PERSQUEN", + "code_postal": "56160", + "coordonnees_gps": [ + 48.0148048063, + -3.21876275805 + ], + "libelle_d_acheminement": "PERSQUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.21876275805, + 48.0148048063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e76bba8d242b6e9f7ea51904c77ee35fb19ea5d", + "fields": { + "code_commune_insee": "54474", + "nom_de_la_commune": "STE GENEVIEVE", + "code_postal": "54700", + "coordonnees_gps": [ + 48.8702243582, + 6.13715548513 + ], + "libelle_d_acheminement": "STE GENEVIEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13715548513, + 48.8702243582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b051a3b928a8b03e07c8d94d78d163ed92f18c9", + "fields": { + "code_commune_insee": "56162", + "nom_de_la_commune": "PLOEMEUR", + "code_postal": "56270", + "coordonnees_gps": [ + 47.7325584986, + -3.44178815745 + ], + "libelle_d_acheminement": "PLOEMEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44178815745, + 47.7325584986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "709b4791afcd242aa00cfd1e45f98d1f4fce674b", + "fields": { + "code_commune_insee": "54483", + "nom_de_la_commune": "ST NICOLAS DE PORT", + "code_postal": "54210", + "coordonnees_gps": [ + 48.6220684472, + 6.29547921699 + ], + "libelle_d_acheminement": "ST NICOLAS DE PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29547921699, + 48.6220684472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f43b69457d7a3cd9258d542ed1a5c79be2fea0b0", + "fields": { + "code_commune_insee": "56163", + "nom_de_la_commune": "PLOERDUT", + "code_postal": "56160", + "coordonnees_gps": [ + 48.092400423, + -3.28849567828 + ], + "libelle_d_acheminement": "PLOERDUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.28849567828, + 48.092400423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43bc5da8f99870f5fa5bd6eb2be9cc30321888cc", + "fields": { + "code_commune_insee": "54486", + "nom_de_la_commune": "ST REMIMONT", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4990142296, + 6.25415061571 + ], + "libelle_d_acheminement": "ST REMIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25415061571, + 48.4990142296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db03f23cfeb40d87b39b0bdec0e5ece68b231908", + "fields": { + "ligne_5": "MONTERREIN", + "code_commune_insee": "56165", + "libelle_d_acheminement": "PLOERMEL", + "code_postal": "56800", + "nom_de_la_commune": "PLOERMEL", + "coordonnees_gps": [ + 47.9221801451, + -2.38313563666 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38313563666, + 47.9221801451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60f97458e4bdbaecc3931bad899235047a2e1be3", + "fields": { + "code_commune_insee": "54490", + "nom_de_la_commune": "SAIZERAIS", + "code_postal": "54380", + "coordonnees_gps": [ + 48.7916785782, + 6.04064725609 + ], + "libelle_d_acheminement": "SAIZERAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04064725609, + 48.7916785782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "119da8ddd729fb5e549eea38dd8381277516968f", + "fields": { + "code_commune_insee": "56168", + "nom_de_la_commune": "PLOUHARNEL", + "code_postal": "56340", + "coordonnees_gps": [ + 47.5996860072, + -3.12263540651 + ], + "libelle_d_acheminement": "PLOUHARNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.12263540651, + 47.5996860072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6442f7112cd0ade612f37023cd986cb3fa7284f1", + "fields": { + "code_commune_insee": "54494", + "nom_de_la_commune": "SAULXEROTTE", + "code_postal": "54115", + "coordonnees_gps": [ + 48.4728000133, + 5.9334120785 + ], + "libelle_d_acheminement": "SAULXEROTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9334120785, + 48.4728000133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16dc3768d91f91903d73d14cc1ecf44b71f7bb2c", + "fields": { + "code_commune_insee": "56170", + "nom_de_la_commune": "PLOURAY", + "code_postal": "56770", + "coordonnees_gps": [ + 48.1343832686, + -3.37547839068 + ], + "libelle_d_acheminement": "PLOURAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37547839068, + 48.1343832686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4491ea51af205a59805185b5ad90dfc642d81369", + "fields": { + "code_commune_insee": "54498", + "nom_de_la_commune": "SEICHAMPS", + "code_postal": "54280", + "coordonnees_gps": [ + 48.715250189, + 6.27143894576 + ], + "libelle_d_acheminement": "SEICHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27143894576, + 48.715250189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87477bb45917cf0ddb1cfca5d6d30ceb8c8f26f1", + "fields": { + "code_commune_insee": "56171", + "nom_de_la_commune": "PLUHERLIN", + "code_postal": "56220", + "coordonnees_gps": [ + 47.7150813893, + -2.36982500415 + ], + "libelle_d_acheminement": "PLUHERLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.36982500415, + 47.7150813893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14587535076e4ad5755890635fcfef163d7bc0ed", + "fields": { + "code_commune_insee": "54500", + "nom_de_la_commune": "SELAINCOURT", + "code_postal": "54170", + "coordonnees_gps": [ + 48.4966094195, + 5.94435711868 + ], + "libelle_d_acheminement": "SELAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94435711868, + 48.4966094195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "091c48f9fe5983fd008f7c7bc06d1217d1e92dc5", + "fields": { + "code_commune_insee": "56180", + "nom_de_la_commune": "PORCARO", + "code_postal": "56380", + "coordonnees_gps": [ + 47.9198730267, + -2.19384701914 + ], + "libelle_d_acheminement": "PORCARO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.19384701914, + 47.9198730267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc91c6180f35d379bd8944e205ffe3fbffb836da", + "fields": { + "code_commune_insee": "54501", + "nom_de_la_commune": "SERANVILLE", + "code_postal": "54830", + "coordonnees_gps": [ + 48.459608902, + 6.51664977219 + ], + "libelle_d_acheminement": "SERANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51664977219, + 48.459608902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b871a587324d8a6c907f81325df7c6745ce6cce9", + "fields": { + "code_commune_insee": "56186", + "nom_de_la_commune": "QUIBERON", + "code_postal": "56170", + "coordonnees_gps": [ + 47.4881657518, + -3.12282400639 + ], + "libelle_d_acheminement": "QUIBERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.12282400639, + 47.4881657518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9dd6f8190929abda04d655895acaa99de9f2005", + "fields": { + "code_commune_insee": "54504", + "nom_de_la_commune": "SERROUVILLE", + "code_postal": "54560", + "coordonnees_gps": [ + 49.3938837785, + 5.87764390671 + ], + "libelle_d_acheminement": "SERROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87764390671, + 49.3938837785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fa13d71948a2d3ca2de0495c62a9320d9ba9214", + "fields": { + "code_commune_insee": "56188", + "nom_de_la_commune": "QUISTINIC", + "code_postal": "56310", + "coordonnees_gps": [ + 47.9093287127, + -3.12816047592 + ], + "libelle_d_acheminement": "QUISTINIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.12816047592, + 47.9093287127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87bec162757126885ef890ee94f2a716dae50313", + "fields": { + "code_commune_insee": "54508", + "nom_de_la_commune": "SIVRY", + "code_postal": "54610", + "coordonnees_gps": [ + 48.8296711116, + 6.20716489613 + ], + "libelle_d_acheminement": "SIVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20716489613, + 48.8296711116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbf81a1075714dad925e5767fe063a2c31a110a5", + "fields": { + "code_commune_insee": "56189", + "nom_de_la_commune": "RADENAC", + "code_postal": "56500", + "coordonnees_gps": [ + 47.9491864881, + -2.7130262254 + ], + "libelle_d_acheminement": "RADENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.7130262254, + 47.9491864881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7263f51b132ca48b1b37ff5833d2b95dcb100909", + "fields": { + "code_commune_insee": "54509", + "nom_de_la_commune": "SOMMERVILLER", + "code_postal": "54110", + "coordonnees_gps": [ + 48.6360355809, + 6.37571272602 + ], + "libelle_d_acheminement": "SOMMERVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37571272602, + 48.6360355809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fd327df626ca29ef134ea51df5e700da9ec0b40", + "fields": { + "code_commune_insee": "56198", + "nom_de_la_commune": "ROHAN", + "code_postal": "56580", + "coordonnees_gps": [ + 48.0894729078, + -2.74289349801 + ], + "libelle_d_acheminement": "ROHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.74289349801, + 48.0894729078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a351e1bb32c265abdb71f28cf5cd4f6f8df4c2e6", + "fields": { + "code_commune_insee": "54512", + "nom_de_la_commune": "TANCONVILLE", + "code_postal": "54480", + "coordonnees_gps": [ + 48.6051799268, + 6.94048390571 + ], + "libelle_d_acheminement": "TANCONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94048390571, + 48.6051799268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c124a5a53651dfa8ac7dbed9ced8f6b8ee97d718", + "fields": { + "ligne_5": "ST SAMSON", + "code_commune_insee": "56198", + "libelle_d_acheminement": "ROHAN", + "code_postal": "56580", + "nom_de_la_commune": "ROHAN", + "coordonnees_gps": [ + 48.0894729078, + -2.74289349801 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.74289349801, + 48.0894729078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "625f0ffd8fa6fe061289a0b81e0e54fc9c7581f1", + "fields": { + "code_commune_insee": "54515", + "nom_de_la_commune": "THELOD", + "code_postal": "54330", + "coordonnees_gps": [ + 48.5439845164, + 6.05076910436 + ], + "libelle_d_acheminement": "THELOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05076910436, + 48.5439845164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cc81aa022627b4e413c97aedaeb97517ccc205c", + "fields": { + "code_commune_insee": "56206", + "nom_de_la_commune": "ST AVE", + "code_postal": "56890", + "coordonnees_gps": [ + 47.6991321739, + -2.7415830935 + ], + "libelle_d_acheminement": "ST AVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.7415830935, + 47.6991321739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef6c266872fbac3a38d3dd4adfeb81b3881ac1df", + "fields": { + "code_commune_insee": "54517", + "nom_de_la_commune": "THEZEY ST MARTIN", + "code_postal": "54610", + "coordonnees_gps": [ + 48.9030330285, + 6.30273178932 + ], + "libelle_d_acheminement": "THEZEY ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30273178932, + 48.9030330285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "065bd71ae8f8e8b13de8c502637902624288f186", + "fields": { + "code_commune_insee": "56212", + "nom_de_la_commune": "ST DOLAY", + "code_postal": "56130", + "coordonnees_gps": [ + 47.5474738486, + -2.17191320646 + ], + "libelle_d_acheminement": "ST DOLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17191320646, + 47.5474738486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36ac628d07ba9ff157bed468a8e167d9af136647", + "fields": { + "code_commune_insee": "54518", + "nom_de_la_commune": "THIAUCOURT REGNIEVILLE", + "code_postal": "54470", + "coordonnees_gps": [ + 48.9331323678, + 5.90090345105 + ], + "libelle_d_acheminement": "THIAUCOURT REGNIEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90090345105, + 48.9331323678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcd102eef848a058a54d25cd2ed97cc58aae8851", + "fields": { + "code_commune_insee": "56214", + "nom_de_la_commune": "ST GILDAS DE RHUYS", + "code_postal": "56730", + "coordonnees_gps": [ + 47.5128140114, + -2.83281521373 + ], + "libelle_d_acheminement": "ST GILDAS DE RHUYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83281521373, + 47.5128140114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5819884c2e690e3fa96aab94430a5236c5a68b4", + "fields": { + "code_commune_insee": "54520", + "nom_de_la_commune": "THIEBAUMENIL", + "code_postal": "54300", + "coordonnees_gps": [ + 48.5791590332, + 6.62983158835 + ], + "libelle_d_acheminement": "THIEBAUMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62983158835, + 48.5791590332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1cfcc0fec220d3cb872ab044bcf481a64de970a", + "fields": { + "code_commune_insee": "56216", + "nom_de_la_commune": "ST GORGON", + "code_postal": "56350", + "coordonnees_gps": [ + 47.6418423031, + -2.23845877778 + ], + "libelle_d_acheminement": "ST GORGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.23845877778, + 47.6418423031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ec29aafe979285ee89da25ce1b97e40cfc166d5", + "fields": { + "code_commune_insee": "54529", + "nom_de_la_commune": "TRAMONT EMY", + "code_postal": "54115", + "coordonnees_gps": [ + 48.4135129696, + 5.94924680248 + ], + "libelle_d_acheminement": "TRAMONT EMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94924680248, + 48.4135129696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17bba3dd8a51b868f9100d950594939de72bf7f2", + "fields": { + "code_commune_insee": "56224", + "nom_de_la_commune": "ST LAURENT SUR OUST", + "code_postal": "56140", + "coordonnees_gps": [ + 47.7918218379, + -2.31430772802 + ], + "libelle_d_acheminement": "ST LAURENT SUR OUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.31430772802, + 47.7918218379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea7e04d9eda920ff51f6679fc992e444fda0a72a", + "fields": { + "code_commune_insee": "54530", + "nom_de_la_commune": "TRAMONT LASSUS", + "code_postal": "54115", + "coordonnees_gps": [ + 48.4007845601, + 5.9666240782 + ], + "libelle_d_acheminement": "TRAMONT LASSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9666240782, + 48.4007845601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05ea2f16fa2bfa7faab6b9c9dfba864a55fb61b6", + "fields": { + "code_commune_insee": "56234", + "nom_de_la_commune": "ST PIERRE QUIBERON", + "code_postal": "56510", + "coordonnees_gps": [ + 47.5229822162, + -3.13814252591 + ], + "libelle_d_acheminement": "ST PIERRE QUIBERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13814252591, + 47.5229822162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96bd96d873d157d52f2e45928dcd15a1484e503e", + "fields": { + "code_commune_insee": "54537", + "nom_de_la_commune": "UGNY", + "code_postal": "54870", + "coordonnees_gps": [ + 49.4635508835, + 5.708275612 + ], + "libelle_d_acheminement": "UGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.708275612, + 49.4635508835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cca4a035a008fb3a5b7ee3004eb235012c78c54c", + "fields": { + "code_commune_insee": "56240", + "nom_de_la_commune": "SARZEAU", + "code_postal": "56370", + "coordonnees_gps": [ + 47.5235379478, + -2.75087136906 + ], + "libelle_d_acheminement": "SARZEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75087136906, + 47.5235379478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7c5b0f6236f2294fe332061d7401dd15ea7cda7", + "fields": { + "code_commune_insee": "54539", + "nom_de_la_commune": "VACQUEVILLE", + "code_postal": "54540", + "coordonnees_gps": [ + 48.4812508877, + 6.81739744262 + ], + "libelle_d_acheminement": "VACQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81739744262, + 48.4812508877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "872db8f68a23d77c75b8332826a8e53308b309f7", + "fields": { + "code_commune_insee": "56242", + "nom_de_la_commune": "SEGLIEN", + "code_postal": "56160", + "coordonnees_gps": [ + 48.102365362, + -3.15150581727 + ], + "libelle_d_acheminement": "SEGLIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15150581727, + 48.102365362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c58e48401d5a784e5f00e808d1400704c2bb9bed", + "fields": { + "code_commune_insee": "54541", + "nom_de_la_commune": "VALHEY", + "code_postal": "54370", + "coordonnees_gps": [ + 48.68350583, + 6.49390517861 + ], + "libelle_d_acheminement": "VALHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49390517861, + 48.68350583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "393d027e635b3a51e431c0081731a1b92665c29f", + "fields": { + "code_commune_insee": "56244", + "nom_de_la_commune": "SERENT", + "code_postal": "56460", + "coordonnees_gps": [ + 47.8245310823, + -2.49728404193 + ], + "libelle_d_acheminement": "SERENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49728404193, + 47.8245310823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0e67614deb11aba7028ef899396c77a8d75847a", + "fields": { + "code_commune_insee": "54543", + "nom_de_la_commune": "VALLOIS", + "code_postal": "54830", + "coordonnees_gps": [ + 48.4603393172, + 6.54530816916 + ], + "libelle_d_acheminement": "VALLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54530816916, + 48.4603393172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f5c39e6413fd9fb3802754d40ed4c83d0b29a8a", + "fields": { + "code_commune_insee": "56245", + "nom_de_la_commune": "SILFIAC", + "code_postal": "56480", + "coordonnees_gps": [ + 48.1449436665, + -3.17252446086 + ], + "libelle_d_acheminement": "SILFIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.17252446086, + 48.1449436665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f2a5cb5815cb1eceac035a65df2c8659a18e201", + "fields": { + "code_commune_insee": "54548", + "nom_de_la_commune": "VANNES LE CHATEL", + "code_postal": "54112", + "coordonnees_gps": [ + 48.5715031888, + 5.78490409682 + ], + "libelle_d_acheminement": "VANNES LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78490409682, + 48.5715031888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fae80827606b8f7405c3cc56fb48a8021c2173ef", + "fields": { + "code_commune_insee": "56249", + "nom_de_la_commune": "TAUPONT", + "code_postal": "56800", + "coordonnees_gps": [ + 47.9622874981, + -2.44276588766 + ], + "libelle_d_acheminement": "TAUPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.44276588766, + 47.9622874981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8680ba11bf6f8aa11d9dbb7e9442661c3dd6a11", + "fields": { + "code_commune_insee": "54551", + "nom_de_la_commune": "VAUCOURT", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6653978067, + 6.68626626794 + ], + "libelle_d_acheminement": "VAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68626626794, + 48.6653978067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b19051c429bae67dcfbe4b03426f8b4bfd08fdbe", + "fields": { + "code_commune_insee": "56256", + "nom_de_la_commune": "TREHORENTEUC", + "code_postal": "56430", + "coordonnees_gps": [ + 48.003791815, + -2.29527448191 + ], + "libelle_d_acheminement": "TREHORENTEUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.29527448191, + 48.003791815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18b76e448b54e742804fcd5e755e1d9bb13d1285", + "fields": { + "code_commune_insee": "54552", + "nom_de_la_commune": "VAUDEMONT", + "code_postal": "54330", + "coordonnees_gps": [ + 48.4212219796, + 6.05835186507 + ], + "libelle_d_acheminement": "VAUDEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05835186507, + 48.4212219796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cb873c9850389c0978b018ab93e490829857e9c", + "fields": { + "code_commune_insee": "56257", + "nom_de_la_commune": "LA TRINITE PORHOET", + "code_postal": "56490", + "coordonnees_gps": [ + 48.0984875737, + -2.52457196653 + ], + "libelle_d_acheminement": "LA TRINITE PORHOET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52457196653, + 48.0984875737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1157d25770c976b3787da238169ed7e96147ffcc", + "fields": { + "code_commune_insee": "54554", + "nom_de_la_commune": "VAUDIGNY", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4379021324, + 6.20530783653 + ], + "libelle_d_acheminement": "VAUDIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20530783653, + 48.4379021324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6acc58ef3c82322419cd47477b417f5437a93c4a", + "fields": { + "code_commune_insee": "56258", + "nom_de_la_commune": "LA TRINITE SUR MER", + "code_postal": "56470", + "coordonnees_gps": [ + 47.5909007393, + -3.03700751097 + ], + "libelle_d_acheminement": "LA TRINITE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.03700751097, + 47.5909007393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82f74450a5f899300cdb7cdcdc1c61c2cee81458", + "fields": { + "code_commune_insee": "54556", + "nom_de_la_commune": "VEHO", + "code_postal": "54450", + "coordonnees_gps": [ + 48.6033575468, + 6.70883858627 + ], + "libelle_d_acheminement": "VEHO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70883858627, + 48.6033575468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "425c583b66c1730467975ba42623e01f0569c05d", + "fields": { + "code_commune_insee": "57002", + "nom_de_la_commune": "ABONCOURT SUR SEILLE", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8186679657, + 6.35583662298 + ], + "libelle_d_acheminement": "ABONCOURT SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35583662298, + 48.8186679657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfe7aa1cce9a92f43c41386ae9fe458ae76e6b49", + "fields": { + "ligne_5": "SEXEY LES BOIS", + "code_commune_insee": "54557", + "libelle_d_acheminement": "BOIS DE HAYE", + "code_postal": "54840", + "nom_de_la_commune": "BOIS DE HAYE", + "coordonnees_gps": [ + 48.6991910373, + 6.04715070856 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04715070856, + 48.6991910373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9e93cae17167f2436b3c4f68f7af185bf1915ce", + "fields": { + "code_commune_insee": "57008", + "nom_de_la_commune": "ADELANGE", + "code_postal": "57380", + "coordonnees_gps": [ + 49.0079073828, + 6.60632652354 + ], + "libelle_d_acheminement": "ADELANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60632652354, + 49.0079073828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82446d0d3af8e91921683f67a4d203960f064854", + "fields": { + "code_commune_insee": "54560", + "nom_de_la_commune": "VENEY", + "code_postal": "54540", + "coordonnees_gps": [ + 48.4607558773, + 6.8136260434 + ], + "libelle_d_acheminement": "VENEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8136260434, + 48.4607558773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bab0b779c93e8058a0e0601222237dd00d8cfc09", + "fields": { + "code_commune_insee": "57013", + "nom_de_la_commune": "ALSTING", + "code_postal": "57515", + "coordonnees_gps": [ + 49.180492978, + 7.00110743227 + ], + "libelle_d_acheminement": "ALSTING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00110743227, + 49.180492978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aeb31b1e9e6a3927aac9b1b13ad628e86e78393", + "fields": { + "code_commune_insee": "54564", + "nom_de_la_commune": "VIEVILLE EN HAYE", + "code_postal": "54470", + "coordonnees_gps": [ + 48.9392920708, + 5.91849230434 + ], + "libelle_d_acheminement": "VIEVILLE EN HAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91849230434, + 48.9392920708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3a9004669bfe45263a7e9676da00858db647dcd", + "fields": { + "code_commune_insee": "57028", + "nom_de_la_commune": "ARGANCY", + "code_postal": "57640", + "coordonnees_gps": [ + 49.1989568995, + 6.21054384876 + ], + "libelle_d_acheminement": "ARGANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21054384876, + 49.1989568995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b8472ce135ad68d3acac52d5791daa0ef30a4d2", + "fields": { + "code_commune_insee": "54565", + "nom_de_la_commune": "VIGNEULLES", + "code_postal": "54360", + "coordonnees_gps": [ + 48.56937975, + 6.34432277004 + ], + "libelle_d_acheminement": "VIGNEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34432277004, + 48.56937975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec364b4c9e378ecb300d74abf65f8a5a444e758c", + "fields": { + "code_commune_insee": "57031", + "nom_de_la_commune": "ARS LAQUENEXY", + "code_postal": "57530", + "coordonnees_gps": [ + 49.0873346287, + 6.26878430088 + ], + "libelle_d_acheminement": "ARS LAQUENEXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26878430088, + 49.0873346287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3be10d0f5a5b2e4f2cf7bb2c0f1543e3048b1fd9", + "fields": { + "code_commune_insee": "54570", + "nom_de_la_commune": "VILLECEY SUR MAD", + "code_postal": "54890", + "coordonnees_gps": [ + 48.9935348155, + 5.9462111664 + ], + "libelle_d_acheminement": "VILLECEY SUR MAD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9462111664, + 48.9935348155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a40a2e3e1944b8f03972d338c875a01397dfe67a", + "fields": { + "code_commune_insee": "57034", + "nom_de_la_commune": "ASPACH", + "code_postal": "57790", + "coordonnees_gps": [ + 48.6526727598, + 6.9670213438 + ], + "libelle_d_acheminement": "ASPACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9670213438, + 48.6526727598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d863446f37950ff322436bf65925ec85ee742c23", + "fields": { + "code_commune_insee": "54576", + "nom_de_la_commune": "VILLERS LE ROND", + "code_postal": "54260", + "coordonnees_gps": [ + 49.4690003224, + 5.48194955327 + ], + "libelle_d_acheminement": "VILLERS LE ROND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48194955327, + 49.4690003224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10c2cd93b76d24ecc4f8cb9e2fcf6a8c324e7d84", + "fields": { + "code_commune_insee": "57038", + "nom_de_la_commune": "AUDUN LE TICHE", + "code_postal": "57390", + "coordonnees_gps": [ + 49.4583101565, + 5.9573466797 + ], + "libelle_d_acheminement": "AUDUN LE TICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9573466797, + 49.4583101565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50ef74c842227fd51e31850d5fab0b5d91dbb04d", + "fields": { + "code_commune_insee": "54579", + "nom_de_la_commune": "VILLERS SOUS PRENY", + "code_postal": "54700", + "coordonnees_gps": [ + 48.9430575567, + 5.99502891051 + ], + "libelle_d_acheminement": "VILLERS SOUS PRENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99502891051, + 48.9430575567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b69de5055a713de542601f92a5c3d3c264b5a8d", + "fields": { + "code_commune_insee": "57043", + "nom_de_la_commune": "AY SUR MOSELLE", + "code_postal": "57300", + "coordonnees_gps": [ + 49.2475802944, + 6.19571589281 + ], + "libelle_d_acheminement": "AY SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19571589281, + 49.2475802944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9ec8d570201e79b5d27a3097281721f1174ce06", + "fields": { + "ligne_5": "CANTEBONNE", + "code_commune_insee": "54580", + "libelle_d_acheminement": "VILLERUPT", + "code_postal": "54190", + "nom_de_la_commune": "VILLERUPT", + "coordonnees_gps": [ + 49.4647155933, + 5.92643741054 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92643741054, + 49.4647155933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cbaaabe64689d0db201f483daa15a055fef6173", + "fields": { + "code_commune_insee": "57045", + "nom_de_la_commune": "BACOURT", + "code_postal": "57590", + "coordonnees_gps": [ + 48.92859453, + 6.40632103762 + ], + "libelle_d_acheminement": "BACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40632103762, + 48.92859453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fe892084dbc51ed696a060ac2b96c778be8a09d", + "fields": { + "code_commune_insee": "54586", + "nom_de_la_commune": "VITERNE", + "code_postal": "54123", + "coordonnees_gps": [ + 48.5872345547, + 6.01297760561 + ], + "libelle_d_acheminement": "VITERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01297760561, + 48.5872345547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb72a4ba9e75329e9d4cd0a322eb7699e293b0dd", + "fields": { + "code_commune_insee": "57056", + "nom_de_la_commune": "BEBING", + "code_postal": "57830", + "coordonnees_gps": [ + 48.7214398635, + 6.99109821572 + ], + "libelle_d_acheminement": "BEBING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99109821572, + 48.7214398635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "396f42501b16f4d16f29f898184b65e016b01619", + "fields": { + "code_commune_insee": "54587", + "nom_de_la_commune": "VITREY", + "code_postal": "54330", + "coordonnees_gps": [ + 48.4936169662, + 6.04249866428 + ], + "libelle_d_acheminement": "VITREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04249866428, + 48.4936169662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22935d8a62fa48288122088e2a6600427774c66d", + "fields": { + "code_commune_insee": "57063", + "nom_de_la_commune": "BERIG VINTRANGE", + "code_postal": "57660", + "coordonnees_gps": [ + 48.9725863451, + 6.69450028658 + ], + "libelle_d_acheminement": "BERIG VINTRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69450028658, + 48.9725863451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aee81c32f2796a1d34097360c92cedab701d23e", + "fields": { + "code_commune_insee": "54591", + "nom_de_la_commune": "VOINEMONT", + "code_postal": "54134", + "coordonnees_gps": [ + 48.5170735039, + 6.17416267478 + ], + "libelle_d_acheminement": "VOINEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17416267478, + 48.5170735039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2175c8756083711ae64d613d90e5797337236df2", + "fields": { + "code_commune_insee": "57065", + "nom_de_la_commune": "BERMERING", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9333505084, + 6.71263318734 + ], + "libelle_d_acheminement": "BERMERING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71263318734, + 48.9333505084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "457605a0c54a56f28a7061c77254cbf5a6aaa7cb", + "fields": { + "code_commune_insee": "57069", + "nom_de_la_commune": "BERVILLER EN MOSELLE", + "code_postal": "57550", + "coordonnees_gps": [ + 49.2687554002, + 6.65166884114 + ], + "libelle_d_acheminement": "BERVILLER EN MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65166884114, + 49.2687554002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6305335ad934b382b4602364c50d4ad6a342ce75", + "fields": { + "code_commune_insee": "57072", + "nom_de_la_commune": "BETTELAINVILLE", + "code_postal": "57640", + "coordonnees_gps": [ + 49.2450266882, + 6.31370817439 + ], + "libelle_d_acheminement": "BETTELAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31370817439, + 49.2450266882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b8d43777751e8d630977216453ae15eb172ff48", + "fields": { + "code_commune_insee": "57073", + "nom_de_la_commune": "BETTING", + "code_postal": "57800", + "coordonnees_gps": [ + 49.1299695233, + 6.81296157618 + ], + "libelle_d_acheminement": "BETTING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81296157618, + 49.1299695233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbaab07fbbacb07bb894ad207151c8e711b24749", + "fields": { + "code_commune_insee": "57080", + "nom_de_la_commune": "BICKENHOLTZ", + "code_postal": "57635", + "coordonnees_gps": [ + 48.8068173571, + 7.17081758315 + ], + "libelle_d_acheminement": "BICKENHOLTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17081758315, + 48.8068173571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da92339ef56e88aed082aeac6c1543506c001124", + "fields": { + "code_commune_insee": "57082", + "nom_de_la_commune": "BIDING", + "code_postal": "57660", + "coordonnees_gps": [ + 49.0637579139, + 6.79094608781 + ], + "libelle_d_acheminement": "BIDING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79094608781, + 49.0637579139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00159ca62a759ef32066a83c864320c14b5757b3", + "fields": { + "code_commune_insee": "57086", + "nom_de_la_commune": "BELLES FORETS", + "code_postal": "57930", + "coordonnees_gps": [ + 48.8081241943, + 6.90014574673 + ], + "libelle_d_acheminement": "BELLES FORETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90014574673, + 48.8081241943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b50df8dfed0b2447ce78b57ec4be0fe3bfa3cfba", + "fields": { + "code_commune_insee": "57088", + "nom_de_la_commune": "BISTROFF", + "code_postal": "57660", + "coordonnees_gps": [ + 49.0038033452, + 6.70381157124 + ], + "libelle_d_acheminement": "BISTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70381157124, + 49.0038033452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ceb538ea9ea40191ddccf85a3814fa76ef743dd", + "fields": { + "code_commune_insee": "57095", + "nom_de_la_commune": "BOUCHEPORN", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1495824486, + 6.61912798021 + ], + "libelle_d_acheminement": "BOUCHEPORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61912798021, + 49.1495824486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f730205cddde02e9aadd555fe49ee7c37999da45", + "fields": { + "code_commune_insee": "57103", + "nom_de_la_commune": "BOUSSEVILLER", + "code_postal": "57230", + "coordonnees_gps": [ + 49.1217722376, + 7.46170264834 + ], + "libelle_d_acheminement": "BOUSSEVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46170264834, + 49.1217722376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60e19749cf6a2e6d44d03cd5217af78451eafbd7", + "fields": { + "code_commune_insee": "57117", + "nom_de_la_commune": "BUDING", + "code_postal": "57920", + "coordonnees_gps": [ + 49.3283000639, + 6.323728807 + ], + "libelle_d_acheminement": "BUDING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.323728807, + 49.3283000639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0a60d4dc69f735e852d03e8cdbcc80ea1792fce", + "fields": { + "code_commune_insee": "57120", + "nom_de_la_commune": "BURLIONCOURT", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8625578408, + 6.57951956171 + ], + "libelle_d_acheminement": "BURLIONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57951956171, + 48.8625578408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "024fd05b659e88d855064a74ba2c86fb3db7a81f", + "fields": { + "code_commune_insee": "57121", + "nom_de_la_commune": "BURTONCOURT", + "code_postal": "57220", + "coordonnees_gps": [ + 49.2239102035, + 6.40735123793 + ], + "libelle_d_acheminement": "BURTONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40735123793, + 49.2239102035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "276b19c75ad3eb750c50b1d8dab8094da34fa4ee", + "fields": { + "code_commune_insee": "57130", + "nom_de_la_commune": "CHATEAU BREHAIN", + "code_postal": "57340", + "coordonnees_gps": [ + 48.898906621, + 6.52153311828 + ], + "libelle_d_acheminement": "CHATEAU BREHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52153311828, + 48.898906621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ae8d685e74ff3b06bd3346e9639992835fb22c4", + "fields": { + "code_commune_insee": "57131", + "nom_de_la_commune": "CHATEAU ROUGE", + "code_postal": "57320", + "coordonnees_gps": [ + 49.283778795, + 6.59645792981 + ], + "libelle_d_acheminement": "CHATEAU ROUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59645792981, + 49.283778795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b88d5ba731ae8f36f1133a8a42bc6a3d4bce6fb0", + "fields": { + "ligne_5": "COUTURES", + "code_commune_insee": "57132", + "libelle_d_acheminement": "CHATEAU SALINS", + "code_postal": "57170", + "nom_de_la_commune": "CHATEAU SALINS", + "coordonnees_gps": [ + 48.8192996978, + 6.49319554209 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49319554209, + 48.8192996978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a5c81ca984014894c48d58858394c81788ade96", + "fields": { + "code_commune_insee": "57136", + "nom_de_la_commune": "CHEMERY LES DEUX", + "code_postal": "57320", + "coordonnees_gps": [ + 49.3000638576, + 6.44368755831 + ], + "libelle_d_acheminement": "CHEMERY LES DEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44368755831, + 49.3000638576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3cad1f3a0030c2c9acc9869673134367496fd54", + "fields": { + "code_commune_insee": "57138", + "nom_de_la_commune": "CHENOIS", + "code_postal": "57580", + "coordonnees_gps": [ + 48.9576168886, + 6.48910214477 + ], + "libelle_d_acheminement": "CHENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48910214477, + 48.9576168886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc75e9d756a86fe15634cff1077ca429fc836968", + "fields": { + "code_commune_insee": "54593", + "nom_de_la_commune": "WAVILLE", + "code_postal": "54890", + "coordonnees_gps": [ + 49.012026579, + 5.93620450432 + ], + "libelle_d_acheminement": "WAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93620450432, + 49.012026579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9fc41ad8bff65862e8d60ec460bc8ca63942622", + "fields": { + "code_commune_insee": "54595", + "nom_de_la_commune": "XERMAMENIL", + "code_postal": "54300", + "coordonnees_gps": [ + 48.5390973507, + 6.47693512099 + ], + "libelle_d_acheminement": "XERMAMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47693512099, + 48.5390973507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81ea647f39091b1a6c7427f9a3efbb04cd78a851", + "fields": { + "code_commune_insee": "54598", + "nom_de_la_commune": "XIVRY CIRCOURT", + "code_postal": "54490", + "coordonnees_gps": [ + 49.3568414875, + 5.76520028273 + ], + "libelle_d_acheminement": "XIVRY CIRCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76520028273, + 49.3568414875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "938fc0ad039be0c7f978f90fa426a4a5582ac9fd", + "fields": { + "code_commune_insee": "55002", + "nom_de_la_commune": "ABAUCOURT HAUTECOURT", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1969606553, + 5.54868808043 + ], + "libelle_d_acheminement": "ABAUCOURT HAUTECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54868808043, + 49.1969606553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f547cc70cf514e00c930b223f8aea5135c8b6af", + "fields": { + "code_commune_insee": "55005", + "nom_de_la_commune": "AMANTY", + "code_postal": "55130", + "coordonnees_gps": [ + 48.5151526576, + 5.60410565546 + ], + "libelle_d_acheminement": "AMANTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60410565546, + 48.5151526576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90cf2e95adb636a3ea87d3bbe41fceb131145f69", + "fields": { + "ligne_5": "MARBOTTE", + "code_commune_insee": "55012", + "libelle_d_acheminement": "APREMONT LA FORET", + "code_postal": "55300", + "nom_de_la_commune": "APREMONT LA FORET", + "coordonnees_gps": [ + 48.8438751454, + 5.62186076093 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62186076093, + 48.8438751454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5960e368f4a6d9e62f5afcd66480cf6e3606f3ed", + "fields": { + "code_commune_insee": "55013", + "nom_de_la_commune": "ARRANCY SUR CRUSNE", + "code_postal": "55230", + "coordonnees_gps": [ + 49.4118279021, + 5.65095584183 + ], + "libelle_d_acheminement": "ARRANCY SUR CRUSNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65095584183, + 49.4118279021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7513d843d9c463e6feec6d86a83e83a7b88c4c25", + "fields": { + "code_commune_insee": "55025", + "nom_de_la_commune": "BAALON", + "code_postal": "55700", + "coordonnees_gps": [ + 49.4830137826, + 5.25808058848 + ], + "libelle_d_acheminement": "BAALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25808058848, + 49.4830137826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fecb0b13dd71a29e94d429b8d6e5467d5c08eca6", + "fields": { + "code_commune_insee": "55028", + "nom_de_la_commune": "BANTHEVILLE", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3529299482, + 5.07368538821 + ], + "libelle_d_acheminement": "BANTHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07368538821, + 49.3529299482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "090eff1e3da6c0236e305dac72e550b51fd0c6aa", + "fields": { + "code_commune_insee": "55033", + "nom_de_la_commune": "BAULNY", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2660859501, + 5.024077499 + ], + "libelle_d_acheminement": "BAULNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.024077499, + 49.2660859501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24a501b2dde40192a04490a4564f9f162ec388c2", + "fields": { + "code_commune_insee": "55035", + "nom_de_la_commune": "BAZINCOURT SUR SAULX", + "code_postal": "55170", + "coordonnees_gps": [ + 48.687294106, + 5.14014455856 + ], + "libelle_d_acheminement": "BAZINCOURT SUR SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14014455856, + 48.687294106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ad61a3177c9725cee083f1ec6505906592c0f72", + "fields": { + "code_commune_insee": "55039", + "nom_de_la_commune": "BEAUMONT EN VERDUNOIS", + "code_postal": "55100", + "coordonnees_gps": [ + 49.262130283, + 5.40982097485 + ], + "libelle_d_acheminement": "BEAUMONT EN VERDUNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40982097485, + 49.262130283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08e9582232531b60479406b592257662d91fc38c", + "fields": { + "code_commune_insee": "55040", + "nom_de_la_commune": "BEAUSITE", + "code_postal": "55250", + "coordonnees_gps": [ + 48.9672383709, + 5.21266788679 + ], + "libelle_d_acheminement": "BEAUSITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21266788679, + 48.9672383709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d04b333ba36b125cfd0a1fd403a75caec1112d00", + "fields": { + "code_commune_insee": "55046", + "nom_de_la_commune": "BENEY EN WOEVRE", + "code_postal": "55210", + "coordonnees_gps": [ + 48.9616218528, + 5.80703063987 + ], + "libelle_d_acheminement": "BENEY EN WOEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80703063987, + 48.9616218528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d34d5775d6d6e97fc1109b6fc749747cc679dc3", + "fields": { + "code_commune_insee": "55057", + "nom_de_la_commune": "BOINVILLE EN WOEVRE", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1885895553, + 5.67783902142 + ], + "libelle_d_acheminement": "BOINVILLE EN WOEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67783902142, + 49.1885895553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad175de8ba903ee2dc6250c17aa2a8be36e5e890", + "fields": { + "code_commune_insee": "55060", + "nom_de_la_commune": "BONZEE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.0904854762, + 5.56470845413 + ], + "libelle_d_acheminement": "BONZEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56470845413, + 49.0904854762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b49da65dbfb8a652ca3b3b9373498b0bdd4db7e", + "fields": { + "ligne_5": "MONT VILLERS", + "code_commune_insee": "55060", + "libelle_d_acheminement": "BONZEE", + "code_postal": "55160", + "nom_de_la_commune": "BONZEE", + "coordonnees_gps": [ + 49.0904854762, + 5.56470845413 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56470845413, + 49.0904854762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "012c6a53973bfa55c1c93251005ea21ef273e4b1", + "fields": { + "code_commune_insee": "55062", + "nom_de_la_commune": "BOUCONVILLE SUR MADT", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8443958398, + 5.70456773671 + ], + "libelle_d_acheminement": "BOUCONVILLE SUR MADT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70456773671, + 48.8443958398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "399752de9fb3213c2403669b10f8bcad9d280ce8", + "fields": { + "code_commune_insee": "55071", + "nom_de_la_commune": "BRANDEVILLE", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3922832005, + 5.30458987886 + ], + "libelle_d_acheminement": "BRANDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30458987886, + 49.3922832005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b6134e8502e81a11e80617b9f39f14244aac234", + "fields": { + "code_commune_insee": "55080", + "nom_de_la_commune": "BRIXEY AUX CHANOINES", + "code_postal": "55140", + "coordonnees_gps": [ + 48.4730081857, + 5.71605178841 + ], + "libelle_d_acheminement": "BRIXEY AUX CHANOINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71605178841, + 48.4730081857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0e553d0a9792acec625ae0df080d03b6d560c2e", + "fields": { + "code_commune_insee": "55088", + "nom_de_la_commune": "BUREY EN VAUX", + "code_postal": "55140", + "coordonnees_gps": [ + 48.5587875875, + 5.65225335625 + ], + "libelle_d_acheminement": "BUREY EN VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65225335625, + 48.5587875875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4c5b7be0a91784ada4c104a9dc11c99f299c260", + "fields": { + "code_commune_insee": "55100", + "nom_de_la_commune": "CHAMPOUGNY", + "code_postal": "55140", + "coordonnees_gps": [ + 48.5461096496, + 5.70282238531 + ], + "libelle_d_acheminement": "CHAMPOUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70282238531, + 48.5461096496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fe06f92352c8d7c9b452a657186da5f1a7366e5", + "fields": { + "code_commune_insee": "55105", + "nom_de_la_commune": "CHATILLON SOUS LES COTES", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1391205448, + 5.51313292709 + ], + "libelle_d_acheminement": "CHATILLON SOUS LES COTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51313292709, + 49.1391205448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "664bbe80b244f029c430245bfde03bd87eb7e57d", + "fields": { + "ligne_5": "MALAUMONT", + "code_commune_insee": "55114", + "libelle_d_acheminement": "CHONVILLE MALAUMONT", + "code_postal": "55200", + "nom_de_la_commune": "CHONVILLE MALAUMONT", + "coordonnees_gps": [ + 48.7606282553, + 5.49015408334 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49015408334, + 48.7606282553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c809b8a052ead78396e68939fe9cd31b06e4c94", + "fields": { + "code_commune_insee": "55116", + "nom_de_la_commune": "LE CLAON", + "code_postal": "55120", + "coordonnees_gps": [ + 49.1453145718, + 4.99015300497 + ], + "libelle_d_acheminement": "LE CLAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99015300497, + 49.1453145718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "807226151dd694cbbef2d4749d5ac8c1043eb58e", + "fields": { + "ligne_5": "LES MARATS", + "code_commune_insee": "55123", + "libelle_d_acheminement": "LES HAUTS DE CHEE", + "code_postal": "55000", + "nom_de_la_commune": "LES HAUTS DE CHEE", + "coordonnees_gps": [ + 48.8683371725, + 5.16520708778 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16520708778, + 48.8683371725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7b31739e1baeca067f11048276b2480ba0bd025", + "fields": { + "ligne_5": "LOUPPY SUR CHEE", + "code_commune_insee": "55123", + "libelle_d_acheminement": "LES HAUTS DE CHEE", + "code_postal": "55000", + "nom_de_la_commune": "LES HAUTS DE CHEE", + "coordonnees_gps": [ + 48.8683371725, + 5.16520708778 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16520708778, + 48.8683371725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8ee13c5285cc08e81d2621ad408dd0ba116ca5b", + "fields": { + "code_commune_insee": "55128", + "nom_de_la_commune": "COURCELLES SUR AIRE", + "code_postal": "55260", + "coordonnees_gps": [ + 48.9403925531, + 5.2333703508 + ], + "libelle_d_acheminement": "COURCELLES SUR AIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2333703508, + 48.9403925531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dd1cc7fb9905cdee166002bb48ff6bde9c21682", + "fields": { + "code_commune_insee": "55139", + "nom_de_la_commune": "CUMIERES LE MORT HOMME", + "code_postal": "55100", + "coordonnees_gps": [ + 49.234262174, + 5.2679113417 + ], + "libelle_d_acheminement": "CUMIERES LE MORT HOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2679113417, + 49.234262174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39a4b95ed6c96465217ab90451b532c2e3f8363b", + "fields": { + "code_commune_insee": "55140", + "nom_de_la_commune": "CUNEL", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3320988491, + 5.11722235919 + ], + "libelle_d_acheminement": "CUNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11722235919, + 49.3320988491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de9ef10e350f46e488aaf9a551a360e36a7b38a7", + "fields": { + "code_commune_insee": "57141", + "nom_de_la_commune": "CHICOURT", + "code_postal": "57590", + "coordonnees_gps": [ + 48.9194951245, + 6.50508064075 + ], + "libelle_d_acheminement": "CHICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50508064075, + 48.9194951245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "943b23dc918766d2d513695c617ea019687e8691", + "fields": { + "code_commune_insee": "55142", + "nom_de_la_commune": "DAINVILLE BERTHELEVILLE", + "code_postal": "55130", + "coordonnees_gps": [ + 48.4507669673, + 5.50858709349 + ], + "libelle_d_acheminement": "DAINVILLE BERTHELEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50858709349, + 48.4507669673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6faadca1997d37fb637ba6071623629ac6193feb", + "fields": { + "ligne_5": "COLLIGNY", + "code_commune_insee": "57148", + "libelle_d_acheminement": "COLLIGNY MAIZERY", + "code_postal": "57530", + "nom_de_la_commune": "COLLIGNY MAIZERY", + "coordonnees_gps": [ + 49.0966398426, + 6.33612392553 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33612392553, + 49.0966398426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35d9774d3d09d3bc215a348a0fd233965fe5c1d1", + "fields": { + "code_commune_insee": "55154", + "nom_de_la_commune": "DIEUE SUR MEUSE", + "code_postal": "55320", + "coordonnees_gps": [ + 49.0797403582, + 5.42963036302 + ], + "libelle_d_acheminement": "DIEUE SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42963036302, + 49.0797403582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddecaba8fee9cf4f74013f2ee60bc6ab00509761", + "fields": { + "code_commune_insee": "57149", + "nom_de_la_commune": "COLMEN", + "code_postal": "57320", + "coordonnees_gps": [ + 49.3503030508, + 6.53398702334 + ], + "libelle_d_acheminement": "COLMEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53398702334, + 49.3503030508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5ae3fb40bf1585ee543dce7c0127447d31c7ba3", + "fields": { + "code_commune_insee": "55156", + "nom_de_la_commune": "DOMBRAS", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3816772358, + 5.44815989683 + ], + "libelle_d_acheminement": "DOMBRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44815989683, + 49.3816772358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5439d7114e710984d5bdc1a7069d28d2933418b5", + "fields": { + "ligne_5": "LOUTREMANGE", + "code_commune_insee": "57150", + "libelle_d_acheminement": "CONDE NORTHEN", + "code_postal": "57220", + "nom_de_la_commune": "CONDE NORTHEN", + "coordonnees_gps": [ + 49.1557780335, + 6.42749152793 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42749152793, + 49.1557780335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee242779c4f3fcf37b8f75309d84d9c1e3299b6f", + "fields": { + "code_commune_insee": "55158", + "nom_de_la_commune": "DOMMARY BARONCOURT", + "code_postal": "55240", + "coordonnees_gps": [ + 49.2842744329, + 5.7145908679 + ], + "libelle_d_acheminement": "DOMMARY BARONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7145908679, + 49.2842744329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc55ab0088c2af4fd6175aa4b9873e579323ff62", + "fields": { + "code_commune_insee": "57167", + "nom_de_la_commune": "DALSTEIN", + "code_postal": "57320", + "coordonnees_gps": [ + 49.3062685367, + 6.40178942241 + ], + "libelle_d_acheminement": "DALSTEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40178942241, + 49.3062685367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae572111c8fd7f9bf22148bdc30d60a2c6157bd9", + "fields": { + "code_commune_insee": "55170", + "nom_de_la_commune": "ECUREY EN VERDUNOIS", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3568005016, + 5.34054044125 + ], + "libelle_d_acheminement": "ECUREY EN VERDUNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34054044125, + 49.3568005016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cacef5e076c715ee9c54a4123ed706c8884d720", + "fields": { + "code_commune_insee": "57169", + "nom_de_la_commune": "DANNELBOURG", + "code_postal": "57820", + "coordonnees_gps": [ + 48.7434148502, + 7.23830155205 + ], + "libelle_d_acheminement": "DANNELBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23830155205, + 48.7434148502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c7e7371aae528f98868e51dde0c017966f1eb24", + "fields": { + "code_commune_insee": "55173", + "nom_de_la_commune": "EPIEZ SUR MEUSE", + "code_postal": "55140", + "coordonnees_gps": [ + 48.5424602605, + 5.62671048102 + ], + "libelle_d_acheminement": "EPIEZ SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62671048102, + 48.5424602605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e38c6f4cbb4429618b5e245a8eadfe2a1c865e6", + "fields": { + "code_commune_insee": "57173", + "nom_de_la_commune": "DESSELING", + "code_postal": "57260", + "coordonnees_gps": [ + 48.7853183275, + 6.84475115273 + ], + "libelle_d_acheminement": "DESSELING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84475115273, + 48.7853183275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04d3b39bdc276fd207cd88b1c7a950ac0306a9f7", + "fields": { + "code_commune_insee": "55179", + "nom_de_la_commune": "ERNEVILLE AUX BOIS", + "code_postal": "55500", + "coordonnees_gps": [ + 48.7418948425, + 5.41343354401 + ], + "libelle_d_acheminement": "ERNEVILLE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41343354401, + 48.7418948425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea45244baf7dfa0febda44bc2c0c3603ac69a5b1", + "fields": { + "code_commune_insee": "57178", + "nom_de_la_commune": "DIFFEMBACH LES HELLIMER", + "code_postal": "57660", + "coordonnees_gps": [ + 49.0067890191, + 6.85532210517 + ], + "libelle_d_acheminement": "DIFFEMBACH LES HELLIMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85532210517, + 49.0067890191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "640d26e73db03ccdbc6b55f054a4947d8a054ff1", + "fields": { + "code_commune_insee": "55181", + "nom_de_la_commune": "ETAIN", + "code_postal": "55400", + "coordonnees_gps": [ + 49.2168123871, + 5.6370016095 + ], + "libelle_d_acheminement": "ETAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6370016095, + 49.2168123871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f4a8bbcf8f5be78c685f8eb565fd25c079d1349", + "fields": { + "code_commune_insee": "57193", + "nom_de_la_commune": "ENNERY", + "code_postal": "57365", + "coordonnees_gps": [ + 49.2278102689, + 6.2187616545 + ], + "libelle_d_acheminement": "ENNERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2187616545, + 49.2278102689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aae566a7e740cf56f1dd5d739e39b10fa14f84da", + "fields": { + "code_commune_insee": "55184", + "nom_de_la_commune": "EUVILLE", + "code_postal": "55200", + "coordonnees_gps": [ + 48.7444024501, + 5.64512103609 + ], + "libelle_d_acheminement": "EUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64512103609, + 48.7444024501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdd5429db54745f2d2d9144f57bdd9a128999b8c", + "fields": { + "code_commune_insee": "57195", + "nom_de_la_commune": "EPPING", + "code_postal": "57720", + "coordonnees_gps": [ + 49.1056772723, + 7.31945928878 + ], + "libelle_d_acheminement": "EPPING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31945928878, + 49.1056772723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6eee68046d233a6a0a0f5d53a3e037caeea52302", + "fields": { + "ligne_5": "VERTUZEY", + "code_commune_insee": "55184", + "libelle_d_acheminement": "EUVILLE", + "code_postal": "55200", + "nom_de_la_commune": "EUVILLE", + "coordonnees_gps": [ + 48.7444024501, + 5.64512103609 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64512103609, + 48.7444024501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f546cb1896349b0dba5c6129fec90d81240ab1b", + "fields": { + "code_commune_insee": "57197", + "nom_de_la_commune": "ERNESTVILLER", + "code_postal": "57510", + "coordonnees_gps": [ + 49.0636116192, + 6.97508799239 + ], + "libelle_d_acheminement": "ERNESTVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97508799239, + 49.0636116192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d61394383485c47acfa54b4322984b6f967b977", + "fields": { + "code_commune_insee": "55193", + "nom_de_la_commune": "FORGES SUR MEUSE", + "code_postal": "55110", + "coordonnees_gps": [ + 49.2601553209, + 5.27647162444 + ], + "libelle_d_acheminement": "FORGES SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27647162444, + 49.2601553209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f479d4e6873a1da4c04c38d927d1f634789ca1d", + "fields": { + "code_commune_insee": "57199", + "nom_de_la_commune": "ESCHERANGE", + "code_postal": "57330", + "coordonnees_gps": [ + 49.4169735728, + 6.06735044599 + ], + "libelle_d_acheminement": "ESCHERANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06735044599, + 49.4169735728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8e26b9fda743bd351527dbf2f8598d5e7262e5f", + "fields": { + "code_commune_insee": "55201", + "nom_de_la_commune": "FROMEZEY", + "code_postal": "55400", + "coordonnees_gps": [ + 49.21113111, + 5.58213989318 + ], + "libelle_d_acheminement": "FROMEZEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58213989318, + 49.21113111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9ad3fe3e62dd76ec908fcd6d2d26ee5973f6bbe", + "fields": { + "code_commune_insee": "57200", + "nom_de_la_commune": "LES ETANGS", + "code_postal": "57530", + "coordonnees_gps": [ + 49.1452868081, + 6.37462761343 + ], + "libelle_d_acheminement": "LES ETANGS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37462761343, + 49.1452868081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dcbcecbdf76538ac5d0e940850d4d358233fc1c", + "fields": { + "code_commune_insee": "55207", + "nom_de_la_commune": "GERY", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7877900495, + 5.30037608106 + ], + "libelle_d_acheminement": "GERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30037608106, + 48.7877900495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45594908a11279361564ef45b27c9f9825f08518", + "fields": { + "code_commune_insee": "57201", + "nom_de_la_commune": "ETTING", + "code_postal": "57412", + "coordonnees_gps": [ + 49.0254317079, + 7.18693147869 + ], + "libelle_d_acheminement": "ETTING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18693147869, + 49.0254317079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "917762dc61d85236c2ed7ccf404959f3767e9b08", + "fields": { + "code_commune_insee": "55210", + "nom_de_la_commune": "GIMECOURT", + "code_postal": "55260", + "coordonnees_gps": [ + 48.8493284173, + 5.37522923437 + ], + "libelle_d_acheminement": "GIMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37522923437, + 48.8493284173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57bc8bbaa22c1090dd15bd50c6f858fee8ac3de3", + "fields": { + "code_commune_insee": "57205", + "nom_de_la_commune": "FALCK", + "code_postal": "57550", + "coordonnees_gps": [ + 49.2259138571, + 6.6382811788 + ], + "libelle_d_acheminement": "FALCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6382811788, + 49.2259138571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06a783de318c96477bb73ec30e86f5d64667167f", + "fields": { + "code_commune_insee": "55211", + "nom_de_la_commune": "GINCREY", + "code_postal": "55400", + "coordonnees_gps": [ + 49.2601835738, + 5.56566816818 + ], + "libelle_d_acheminement": "GINCREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56566816818, + 49.2601835738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e551b918ef727725f985f8b3903157db774ce899", + "fields": { + "ligne_5": "OURY", + "code_commune_insee": "57206", + "libelle_d_acheminement": "FAMECK", + "code_postal": "57290", + "nom_de_la_commune": "FAMECK", + "coordonnees_gps": [ + 49.2987006334, + 6.10649265804 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10649265804, + 49.2987006334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bad3667f4ba04a99d430ae3a6b5478537dfe2e3b", + "fields": { + "code_commune_insee": "55217", + "nom_de_la_commune": "GOUSSAINCOURT", + "code_postal": "55140", + "coordonnees_gps": [ + 48.4821493618, + 5.67287004446 + ], + "libelle_d_acheminement": "GOUSSAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67287004446, + 48.4821493618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cea7b767c3edf4dcc5276aad99d392c577bfad09", + "fields": { + "ligne_5": "REMELANGE", + "code_commune_insee": "57206", + "libelle_d_acheminement": "FAMECK", + "code_postal": "57290", + "nom_de_la_commune": "FAMECK", + "coordonnees_gps": [ + 49.2987006334, + 6.10649265804 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10649265804, + 49.2987006334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2009cadf6fbeccf4ea4e4b8ed4d653edfbd18ef", + "fields": { + "code_commune_insee": "55221", + "nom_de_la_commune": "GUERPONT", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7221791424, + 5.25619009217 + ], + "libelle_d_acheminement": "GUERPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25619009217, + 48.7221791424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c0d40815ea358ae8b57a56f5d643a09d1f96d4c", + "fields": { + "code_commune_insee": "57213", + "nom_de_la_commune": "FILSTROFF", + "code_postal": "57320", + "coordonnees_gps": [ + 49.3246054218, + 6.53027792058 + ], + "libelle_d_acheminement": "FILSTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53027792058, + 49.3246054218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc7f80c16c6ff1dc13883671770375428ca75023", + "fields": { + "code_commune_insee": "55222", + "nom_de_la_commune": "GUSSAINVILLE", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1670483663, + 5.6624328239 + ], + "libelle_d_acheminement": "GUSSAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6624328239, + 49.1670483663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08b54699b612ada52b118b34bb476a9b1a6639f4", + "fields": { + "code_commune_insee": "57218", + "nom_de_la_commune": "FLEURY", + "code_postal": "57420", + "coordonnees_gps": [ + 49.0375892357, + 6.20549246753 + ], + "libelle_d_acheminement": "FLEURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20549246753, + 49.0375892357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "976b626bbcdbd640bc1f2a8126aecf43d8ac45e8", + "fields": { + "code_commune_insee": "55226", + "nom_de_la_commune": "HAN LES JUVIGNY", + "code_postal": "55600", + "coordonnees_gps": [ + 49.4821865073, + 5.33320912906 + ], + "libelle_d_acheminement": "HAN LES JUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33320912906, + 49.4821865073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2bb628d01d37fe123bf46efdff9c1c1ca1297ab", + "fields": { + "code_commune_insee": "57225", + "nom_de_la_commune": "FONTENY", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8761779555, + 6.47830275914 + ], + "libelle_d_acheminement": "FONTENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47830275914, + 48.8761779555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36daf47842e2ab70fa89ceca1f9340a16e1fca1a", + "fields": { + "code_commune_insee": "55228", + "nom_de_la_commune": "HANNONVILLE SOUS LES COTES", + "code_postal": "55210", + "coordonnees_gps": [ + 49.0325694517, + 5.65281948352 + ], + "libelle_d_acheminement": "HANNONVILLE SOUS LES COTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65281948352, + 49.0325694517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b8a2784bab4e9cbc41ba7bdf389cacefdac2bf3", + "fields": { + "code_commune_insee": "57232", + "nom_de_la_commune": "FRANCALTROFF", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9621475531, + 6.79559883909 + ], + "libelle_d_acheminement": "FRANCALTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79559883909, + 48.9621475531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b18ec4a02f6a35784cbda03b7e506bf84c9ad6a", + "fields": { + "code_commune_insee": "55242", + "nom_de_la_commune": "HENNEMONT", + "code_postal": "55160", + "coordonnees_gps": [ + 49.1388580246, + 5.66540287149 + ], + "libelle_d_acheminement": "HENNEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66540287149, + 49.1388580246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4d50359363d2b419897247764f86da1822bdc4c", + "fields": { + "code_commune_insee": "57233", + "nom_de_la_commune": "FRAQUELFING", + "code_postal": "57790", + "coordonnees_gps": [ + 48.6354147373, + 6.98945886405 + ], + "libelle_d_acheminement": "FRAQUELFING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98945886405, + 48.6354147373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "725da52bb23a49c708d721f4b3e5a55d518e0d0f", + "fields": { + "code_commune_insee": "55248", + "nom_de_la_commune": "HOUDELAINCOURT", + "code_postal": "55130", + "coordonnees_gps": [ + 48.5516999115, + 5.45666519241 + ], + "libelle_d_acheminement": "HOUDELAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45666519241, + 48.5516999115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "847bca22202d9ca9e3282ce53554a7f1969f806a", + "fields": { + "code_commune_insee": "57234", + "nom_de_la_commune": "FRAUENBERG", + "code_postal": "57200", + "coordonnees_gps": [ + 49.1339601858, + 7.11539380178 + ], + "libelle_d_acheminement": "FRAUENBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11539380178, + 49.1339601858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a695249a54ce0884b11842eaf40de8019151549a", + "fields": { + "code_commune_insee": "55258", + "nom_de_la_commune": "GEVILLE", + "code_postal": "55200", + "coordonnees_gps": [ + 48.7799328844, + 5.70340084835 + ], + "libelle_d_acheminement": "GEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70340084835, + 48.7799328844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "993c8a852f41c4a1511ebaf5d090a9243818ba5f", + "fields": { + "code_commune_insee": "57239", + "nom_de_la_commune": "FREYBOUSE", + "code_postal": "57660", + "coordonnees_gps": [ + 48.9986501647, + 6.77863114276 + ], + "libelle_d_acheminement": "FREYBOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77863114276, + 48.9986501647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ec1e2c3cf040b807907bef217346f836e5d941a", + "fields": { + "code_commune_insee": "55260", + "nom_de_la_commune": "JULVECOURT", + "code_postal": "55120", + "coordonnees_gps": [ + 49.0596334338, + 5.19038629276 + ], + "libelle_d_acheminement": "JULVECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19038629276, + 49.0596334338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a61e38c890a504ee4e250db6a8357f3d855dbf6", + "fields": { + "code_commune_insee": "57240", + "nom_de_la_commune": "FREYMING MERLEBACH", + "code_postal": "57800", + "coordonnees_gps": [ + 49.1525756195, + 6.79731056431 + ], + "libelle_d_acheminement": "FREYMING MERLEBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79731056431, + 49.1525756195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19d16a0faf377031d3abf2719f19ac7b0444e35e", + "fields": { + "code_commune_insee": "55264", + "nom_de_la_commune": "KOEUR LA PETITE", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8517090729, + 5.45424623667 + ], + "libelle_d_acheminement": "KOEUR LA PETITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45424623667, + 48.8517090729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3e9e3b1082666736a347c945ede29a5b1eb7fb4", + "fields": { + "code_commune_insee": "57251", + "nom_de_la_commune": "GOIN", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9875798423, + 6.22300683385 + ], + "libelle_d_acheminement": "GOIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22300683385, + 48.9875798423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c85c34354e74e44dfb5d9fa6ae244ebc15552c6", + "fields": { + "code_commune_insee": "55265", + "nom_de_la_commune": "LABEUVILLE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.0924273219, + 5.775136694 + ], + "libelle_d_acheminement": "LABEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.775136694, + 49.0924273219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "462b0d6a1fa300754e53b637f731496caa31ee60", + "fields": { + "code_commune_insee": "57255", + "nom_de_la_commune": "GOSSELMING", + "code_postal": "57930", + "coordonnees_gps": [ + 48.7902289684, + 6.9850144129 + ], + "libelle_d_acheminement": "GOSSELMING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9850144129, + 48.7902289684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c0e76a5cfd7ffae5e60b079494333ed02b341e6", + "fields": { + "code_commune_insee": "55267", + "nom_de_la_commune": "LACHAUSSEE", + "code_postal": "55210", + "coordonnees_gps": [ + 49.0332521585, + 5.79999880279 + ], + "libelle_d_acheminement": "LACHAUSSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79999880279, + 49.0332521585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e2af3cc7a58031695ea61c2e1b1601a875b25d5", + "fields": { + "code_commune_insee": "57256", + "nom_de_la_commune": "GRAVELOTTE", + "code_postal": "57130", + "coordonnees_gps": [ + 49.1111675803, + 6.02427505901 + ], + "libelle_d_acheminement": "GRAVELOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02427505901, + 49.1111675803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77de60bad5ebd3d934e697309c2e1c579294593b", + "fields": { + "ligne_5": "HAUMONT LES LACHAUSSEE", + "code_commune_insee": "55267", + "libelle_d_acheminement": "LACHAUSSEE", + "code_postal": "55210", + "nom_de_la_commune": "LACHAUSSEE", + "coordonnees_gps": [ + 49.0332521585, + 5.79999880279 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79999880279, + 49.0332521585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1196e9207e174fc8ad82d97a226876cbe2c92010", + "fields": { + "code_commune_insee": "57261", + "nom_de_la_commune": "GROS REDERCHING", + "code_postal": "57410", + "coordonnees_gps": [ + 49.068151455, + 7.2189013758 + ], + "libelle_d_acheminement": "GROS REDERCHING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2189013758, + 49.068151455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08f2c2bc307b6093c46c823b3f7c339b8b8f8830", + "fields": { + "code_commune_insee": "55272", + "nom_de_la_commune": "LAIMONT", + "code_postal": "55800", + "coordonnees_gps": [ + 48.8425240872, + 5.04206568758 + ], + "libelle_d_acheminement": "LAIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04206568758, + 48.8425240872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "039edd214e279e12592c61e78e730f51afb8caf7", + "fields": { + "code_commune_insee": "57264", + "nom_de_la_commune": "GUEBENHOUSE", + "code_postal": "57510", + "coordonnees_gps": [ + 49.0769015436, + 6.95086192119 + ], + "libelle_d_acheminement": "GUEBENHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95086192119, + 49.0769015436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2594c8390b23a9f344a58da15c98958ebbdb563a", + "fields": { + "ligne_5": "SPADA", + "code_commune_insee": "55274", + "libelle_d_acheminement": "LAMORVILLE", + "code_postal": "55300", + "nom_de_la_commune": "LAMORVILLE", + "coordonnees_gps": [ + 48.964535147, + 5.59226400853 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59226400853, + 48.964535147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ad77bda8dc004ba5f762c17dcad9d18ed1e9ef3", + "fields": { + "code_commune_insee": "57269", + "nom_de_la_commune": "GUENANGE", + "code_postal": "57310", + "coordonnees_gps": [ + 49.2984663485, + 6.20430376162 + ], + "libelle_d_acheminement": "GUENANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20430376162, + 49.2984663485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "657af2cb1c1c524805ad51d34074bc320cafc050", + "fields": { + "code_commune_insee": "55284", + "nom_de_la_commune": "LAVINCOURT", + "code_postal": "55170", + "coordonnees_gps": [ + 48.6573246186, + 5.14765738477 + ], + "libelle_d_acheminement": "LAVINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14765738477, + 48.6573246186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f01f7169e370fb05c1b1dfc4706a50c7834f80f", + "fields": { + "code_commune_insee": "57270", + "nom_de_la_commune": "VAL DE BRIDE", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8293499889, + 6.69041214777 + ], + "libelle_d_acheminement": "VAL DE BRIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69041214777, + 48.8293499889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3eeee86ce9caa233d72fc61f2be71424b86ea7f0", + "fields": { + "code_commune_insee": "55288", + "nom_de_la_commune": "LEROUVILLE", + "code_postal": "55200", + "coordonnees_gps": [ + 48.7788808268, + 5.53636457415 + ], + "libelle_d_acheminement": "LEROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53636457415, + 48.7788808268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aeed0c6ccf63c2dab5d8c2ee862ab707fdedc8d", + "fields": { + "code_commune_insee": "57272", + "nom_de_la_commune": "GUERMANGE", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8023864837, + 6.81989842123 + ], + "libelle_d_acheminement": "GUERMANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81989842123, + 48.8023864837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0275ca44bb92aa6541a39e7c3fc5b9c245348dee", + "fields": { + "code_commune_insee": "55289", + "nom_de_la_commune": "LEVONCOURT", + "code_postal": "55260", + "coordonnees_gps": [ + 48.826608488, + 5.34664441975 + ], + "libelle_d_acheminement": "LEVONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34664441975, + 48.826608488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6cfd28676c5ad3d90f80af77cb092689b377f43", + "fields": { + "code_commune_insee": "57273", + "nom_de_la_commune": "GUERSTLING", + "code_postal": "57320", + "coordonnees_gps": [ + 49.3242110965, + 6.57634987075 + ], + "libelle_d_acheminement": "GUERSTLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57634987075, + 49.3242110965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c85fef997f95ca6ed1f4d2e4132efd9a3e2a0648", + "fields": { + "code_commune_insee": "55292", + "nom_de_la_commune": "LINY DEVANT DUN", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3535491651, + 5.20662377454 + ], + "libelle_d_acheminement": "LINY DEVANT DUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20662377454, + 49.3535491651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "407498af7976ecd86671079efd4b265ef5a79525", + "fields": { + "code_commune_insee": "57275", + "nom_de_la_commune": "GUESSLING HEMERING", + "code_postal": "57380", + "coordonnees_gps": [ + 49.0221937323, + 6.66814664402 + ], + "libelle_d_acheminement": "GUESSLING HEMERING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66814664402, + 49.0221937323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0270602080d024c0deee6065b3e93b6da770bfa1", + "fields": { + "code_commune_insee": "55296", + "nom_de_la_commune": "L ISLE EN RIGAULT", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7110294084, + 5.0337606691 + ], + "libelle_d_acheminement": "L ISLE EN RIGAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0337606691, + 48.7110294084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f42e4cfec87f61ea0952e8b40ff91d8356a2a81", + "fields": { + "code_commune_insee": "57278", + "nom_de_la_commune": "GUINZELING", + "code_postal": "57670", + "coordonnees_gps": [ + 48.8800902544, + 6.84393509997 + ], + "libelle_d_acheminement": "GUINZELING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84393509997, + 48.8800902544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d6ce012fd4421a2a309b6bbb2560672cdc3a14e", + "fields": { + "code_commune_insee": "55298", + "nom_de_la_commune": "LOISEY", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7673476973, + 5.28322526105 + ], + "libelle_d_acheminement": "LOISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28322526105, + 48.7673476973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b2d910e9c504a0375ea9076c1c23cefa76a9e83", + "fields": { + "code_commune_insee": "57286", + "nom_de_la_commune": "HALSTROFF", + "code_postal": "57480", + "coordonnees_gps": [ + 49.3875730574, + 6.47720074368 + ], + "libelle_d_acheminement": "HALSTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47720074368, + 49.3875730574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "969aaab0e9ca5839339a37681879673e0ad608d8", + "fields": { + "code_commune_insee": "55299", + "nom_de_la_commune": "LOISON", + "code_postal": "55230", + "coordonnees_gps": [ + 49.3040815275, + 5.59193126702 + ], + "libelle_d_acheminement": "LOISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59193126702, + 49.3040815275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ac0b64498d2f6329263b35a261cd2edd7b40284", + "fields": { + "code_commune_insee": "57292", + "nom_de_la_commune": "HANNOCOURT", + "code_postal": "57590", + "coordonnees_gps": [ + 48.9143175086, + 6.45203653587 + ], + "libelle_d_acheminement": "HANNOCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45203653587, + 48.9143175086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abbee278e97e9ab068e41954f456de5efae28ac2", + "fields": { + "code_commune_insee": "55300", + "nom_de_la_commune": "LONGEAUX", + "code_postal": "55500", + "coordonnees_gps": [ + 48.639459973, + 5.32835659769 + ], + "libelle_d_acheminement": "LONGEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32835659769, + 48.639459973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bd54b7b8effe9b2a7ad15defecdc87c209cc85c", + "fields": { + "code_commune_insee": "57293", + "nom_de_la_commune": "HAN SUR NIED", + "code_postal": "57580", + "coordonnees_gps": [ + 48.9905452209, + 6.44473244817 + ], + "libelle_d_acheminement": "HAN SUR NIED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44473244817, + 48.9905452209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03c6ebc351b61a0576cffceb995fef162a42d9f0", + "fields": { + "code_commune_insee": "55301", + "nom_de_la_commune": "LONGCHAMPS SUR AIRE", + "code_postal": "55260", + "coordonnees_gps": [ + 48.9126907802, + 5.30611003141 + ], + "libelle_d_acheminement": "LONGCHAMPS SUR AIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30611003141, + 48.9126907802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b048da4bc222dc028a08eabe39a2f739946d8160", + "fields": { + "code_commune_insee": "57304", + "nom_de_la_commune": "HAUT CLOCHER", + "code_postal": "57400", + "coordonnees_gps": [ + 48.7620782586, + 6.99144678539 + ], + "libelle_d_acheminement": "HAUT CLOCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99144678539, + 48.7620782586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "166419d0cabcf7d94b8a6a0d021882615649cc3d", + "fields": { + "code_commune_insee": "55310", + "nom_de_la_commune": "LUZY ST MARTIN", + "code_postal": "55700", + "coordonnees_gps": [ + 49.5273912467, + 5.1453294871 + ], + "libelle_d_acheminement": "LUZY ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1453294871, + 49.5273912467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f43f6f3f69945d91c9e0368120db86bbe143543f", + "fields": { + "code_commune_insee": "57308", + "nom_de_la_commune": "HAZEMBOURG", + "code_postal": "57430", + "coordonnees_gps": [ + 48.9617561061, + 6.94250550256 + ], + "libelle_d_acheminement": "HAZEMBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94250550256, + 48.9617561061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a297f284675751a8f80f74aeb3932c724284abb3", + "fields": { + "code_commune_insee": "55313", + "nom_de_la_commune": "MALANCOURT", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2355612046, + 5.17616049731 + ], + "libelle_d_acheminement": "MALANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17616049731, + 49.2355612046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ecfd913b614ed5dd63be1fcab2637c75fa385c6", + "fields": { + "code_commune_insee": "57317", + "nom_de_la_commune": "HERANGE", + "code_postal": "57635", + "coordonnees_gps": [ + 48.7775443186, + 7.17286672818 + ], + "libelle_d_acheminement": "HERANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17286672818, + 48.7775443186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9978364aad8d634149e26d56b2c8712d9e0091aa", + "fields": { + "code_commune_insee": "55323", + "nom_de_la_commune": "MARTINCOURT SUR MEUSE", + "code_postal": "55700", + "coordonnees_gps": [ + 49.5346464428, + 5.17792141785 + ], + "libelle_d_acheminement": "MARTINCOURT SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17792141785, + 49.5346464428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0671b8f14aa07becb0c04362b5026796df2e757", + "fields": { + "code_commune_insee": "57335", + "nom_de_la_commune": "HONSKIRCH", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9403516855, + 6.96380472548 + ], + "libelle_d_acheminement": "HONSKIRCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96380472548, + 48.9403516855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e7e4fe9b4685ce752a8e14676544951d1fe7d06", + "fields": { + "code_commune_insee": "55324", + "nom_de_la_commune": "MARVILLE", + "code_postal": "55600", + "coordonnees_gps": [ + 49.4465296289, + 5.44770167137 + ], + "libelle_d_acheminement": "MARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44770167137, + 49.4465296289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b07c081f09a1182b281e0bbf939fac19f60743f5", + "fields": { + "code_commune_insee": "57336", + "nom_de_la_commune": "L HOPITAL", + "code_postal": "57490", + "coordonnees_gps": [ + 49.1574029891, + 6.73265965456 + ], + "libelle_d_acheminement": "L HOPITAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73265965456, + 49.1574029891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da35e8cfe0fc77925f6ae5d10e4176963f82efbf", + "fields": { + "code_commune_insee": "55328", + "nom_de_la_commune": "MAXEY SUR VAISE", + "code_postal": "55140", + "coordonnees_gps": [ + 48.5296387207, + 5.6572928474 + ], + "libelle_d_acheminement": "MAXEY SUR VAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6572928474, + 48.5296387207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "958ba2e57a0a166c52d7e4cd91b616614aeeebbe", + "fields": { + "code_commune_insee": "57347", + "nom_de_la_commune": "INSVILLER", + "code_postal": "57670", + "coordonnees_gps": [ + 48.8907066316, + 6.90981688773 + ], + "libelle_d_acheminement": "INSVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90981688773, + 48.8907066316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e446a2c321a33f88a8ac95be0c02d4f0f4dcdae1", + "fields": { + "code_commune_insee": "55329", + "nom_de_la_commune": "MECRIN", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8274213069, + 5.54766172848 + ], + "libelle_d_acheminement": "MECRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54766172848, + 48.8274213069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9efebd26fbd3366603e1869a786fc8cd41ceea67", + "fields": { + "code_commune_insee": "57351", + "nom_de_la_commune": "JURY", + "code_postal": "57245", + "coordonnees_gps": [ + 49.0729756124, + 6.25660660705 + ], + "libelle_d_acheminement": "JURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25660660705, + 49.0729756124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b880f5b5b7014f6b83a10dbdc047e4cf60b313e", + "fields": { + "code_commune_insee": "55330", + "nom_de_la_commune": "MELIGNY LE GRAND", + "code_postal": "55190", + "coordonnees_gps": [ + 48.6783327417, + 5.49388673044 + ], + "libelle_d_acheminement": "MELIGNY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49388673044, + 48.6783327417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1646a2121c711d2e6aab3d33b92c9ed41622442f", + "fields": { + "code_commune_insee": "57352", + "nom_de_la_commune": "JUSSY", + "code_postal": "57130", + "coordonnees_gps": [ + 49.1008350599, + 6.08012042749 + ], + "libelle_d_acheminement": "JUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08012042749, + 49.1008350599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68b1a0b7fbf6458e15102d7fd83087d929094403", + "fields": { + "code_commune_insee": "55332", + "nom_de_la_commune": "MENAUCOURT", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6555904423, + 5.36214352258 + ], + "libelle_d_acheminement": "MENAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36214352258, + 48.6555904423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c73981b76d341e48b80a63ba772d34bbd15c9ca", + "fields": { + "code_commune_insee": "57379", + "nom_de_la_commune": "LANDROFF", + "code_postal": "57340", + "coordonnees_gps": [ + 48.965218434, + 6.6165180005 + ], + "libelle_d_acheminement": "LANDROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6165180005, + 48.965218434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad3aade5075a2a534dacc4d1bad74af28fec6077", + "fields": { + "code_commune_insee": "55336", + "nom_de_la_commune": "MERLES SUR LOISON", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3645416905, + 5.47491286205 + ], + "libelle_d_acheminement": "MERLES SUR LOISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47491286205, + 49.3645416905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c8becf45d20c47d3fe2a88ce5e9f4abf3b0c757", + "fields": { + "code_commune_insee": "57382", + "nom_de_la_commune": "LANGATTE", + "code_postal": "57400", + "coordonnees_gps": [ + 48.7621753199, + 6.95886930776 + ], + "libelle_d_acheminement": "LANGATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95886930776, + 48.7621753199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e88a993f7c457aa53b9684931d445a70d4af09d6", + "fields": { + "ligne_5": "FLABAS", + "code_commune_insee": "55341", + "libelle_d_acheminement": "MOIREY FLABAS CREPION", + "code_postal": "55150", + "nom_de_la_commune": "MOIREY FLABAS CREPION", + "coordonnees_gps": [ + 49.298309748, + 5.39163772407 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39163772407, + 49.298309748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4da8e8b64357a63d5f81bd48287ba443b4d318e3", + "fields": { + "code_commune_insee": "57396", + "nom_de_la_commune": "LESSY", + "code_postal": "57160", + "coordonnees_gps": [ + 49.1272207543, + 6.09954585779 + ], + "libelle_d_acheminement": "LESSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09954585779, + 49.1272207543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edfa3e9e8fdecfba4371b042babb1e7a95dac8e8", + "fields": { + "code_commune_insee": "55343", + "nom_de_la_commune": "MONTBLAINVILLE", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2434560123, + 4.9948188695 + ], + "libelle_d_acheminement": "MONTBLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9948188695, + 49.2434560123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7410e6f29677f1e7a4998d30f3f5981ec70df03", + "fields": { + "code_commune_insee": "57405", + "nom_de_la_commune": "LINDRE HAUTE", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8192716057, + 6.75638052646 + ], + "libelle_d_acheminement": "LINDRE HAUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75638052646, + 48.8192716057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0227f313c63d76aebb7cc3f475b094bf51c4cb18", + "fields": { + "code_commune_insee": "55351", + "nom_de_la_commune": "MONTMEDY", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5154285158, + 5.37250308228 + ], + "libelle_d_acheminement": "MONTMEDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37250308228, + 49.5154285158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cad48dd4c2ec2d2e9140df05ded7d031932b936", + "fields": { + "code_commune_insee": "57406", + "nom_de_la_commune": "LIOCOURT", + "code_postal": "57590", + "coordonnees_gps": [ + 48.9116904529, + 6.34175286688 + ], + "libelle_d_acheminement": "LIOCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34175286688, + 48.9116904529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35c5b0a73d2b2c4f52179c46bea53db29b2df83e", + "fields": { + "code_commune_insee": "55365", + "nom_de_la_commune": "MURVAUX", + "code_postal": "55110", + "coordonnees_gps": [ + 49.394776752, + 5.26819381857 + ], + "libelle_d_acheminement": "MURVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26819381857, + 49.394776752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b409424d54139acc4f827775575aa3f616b6563", + "fields": { + "code_commune_insee": "57413", + "nom_de_la_commune": "LONGEVILLE LES ST AVOLD", + "code_postal": "57740", + "coordonnees_gps": [ + 49.1191583369, + 6.64823861446 + ], + "libelle_d_acheminement": "LONGEVILLE LES ST AVOLD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64823861446, + 49.1191583369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4c0e832a3967be8a560f6e2b57301b43566d4b3", + "fields": { + "code_commune_insee": "55366", + "nom_de_la_commune": "VAL D ORNAIN", + "code_postal": "55000", + "coordonnees_gps": [ + 48.8072006792, + 5.08545079895 + ], + "libelle_d_acheminement": "VAL D ORNAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08545079895, + 48.8072006792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e7c6550267e122ffab05788fb98e4137e81a183", + "fields": { + "code_commune_insee": "57424", + "nom_de_la_commune": "LUCY", + "code_postal": "57590", + "coordonnees_gps": [ + 48.9407098207, + 6.47695483965 + ], + "libelle_d_acheminement": "LUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47695483965, + 48.9407098207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bae3b93e68163f25cafc97ec98e597dfe326da8", + "fields": { + "ligne_5": "ROSIERES DEVANT BAR", + "code_commune_insee": "55369", + "libelle_d_acheminement": "NAIVES ROSIERES", + "code_postal": "55000", + "nom_de_la_commune": "NAIVES ROSIERES", + "coordonnees_gps": [ + 48.8002647073, + 5.2290200392 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2290200392, + 48.8002647073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f81df56489efed45057d86a740260f1a873fdb10", + "fields": { + "code_commune_insee": "57430", + "nom_de_la_commune": "MAINVILLERS", + "code_postal": "57380", + "coordonnees_gps": [ + 49.0208000969, + 6.54258158308 + ], + "libelle_d_acheminement": "MAINVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54258158308, + 49.0208000969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30babdb1e867172d33a293056343be8dec54cb52", + "fields": { + "code_commune_insee": "55377", + "nom_de_la_commune": "NEPVANT", + "code_postal": "55700", + "coordonnees_gps": [ + 49.5368969307, + 5.22074045753 + ], + "libelle_d_acheminement": "NEPVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22074045753, + 49.5368969307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6817607de45d6a857d87f0c7ce546f85cf0ddc8f", + "fields": { + "code_commune_insee": "57434", + "nom_de_la_commune": "MAIZIERES LES VIC", + "code_postal": "57810", + "coordonnees_gps": [ + 48.7095753584, + 6.78401275888 + ], + "libelle_d_acheminement": "MAIZIERES LES VIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78401275888, + 48.7095753584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85222f2faba6738c681c6629bc65723d6e2b637e", + "fields": { + "code_commune_insee": "55380", + "nom_de_la_commune": "NEUVILLE EN VERDUNOIS", + "code_postal": "55260", + "coordonnees_gps": [ + 48.9490096616, + 5.31159146275 + ], + "libelle_d_acheminement": "NEUVILLE EN VERDUNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31159146275, + 48.9490096616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dc06b47cd953f7072cc090ceb93bbf9a647e86d", + "fields": { + "code_commune_insee": "57436", + "nom_de_la_commune": "MALAUCOURT SUR SEILLE", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8432909798, + 6.35890178072 + ], + "libelle_d_acheminement": "MALAUCOURT SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35890178072, + 48.8432909798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44e9e95db08c514abfe6255532202003e553240d", + "fields": { + "code_commune_insee": "55382", + "nom_de_la_commune": "NEUVILLE SUR ORNAIN", + "code_postal": "55800", + "coordonnees_gps": [ + 48.8215154399, + 5.0508300311 + ], + "libelle_d_acheminement": "NEUVILLE SUR ORNAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0508300311, + 48.8215154399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f9cc19c5eb7429cd8e23e8365ec6afaec2e2ebb", + "fields": { + "code_commune_insee": "57449", + "nom_de_la_commune": "MARSILLY", + "code_postal": "57530", + "coordonnees_gps": [ + 49.0954334009, + 6.3072836454 + ], + "libelle_d_acheminement": "MARSILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3072836454, + 49.0954334009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b118be5529685d7dd5143006d36851b409873da", + "fields": { + "code_commune_insee": "55384", + "nom_de_la_commune": "NICEY SUR AIRE", + "code_postal": "55260", + "coordonnees_gps": [ + 48.8922146905, + 5.35514008596 + ], + "libelle_d_acheminement": "NICEY SUR AIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35514008596, + 48.8922146905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e28f1640bf23f46bdcf46abe8e141f5b7d77710", + "fields": { + "code_commune_insee": "57452", + "nom_de_la_commune": "LA MAXE", + "code_postal": "57140", + "coordonnees_gps": [ + 49.1617041923, + 6.19206256915 + ], + "libelle_d_acheminement": "LA MAXE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19206256915, + 49.1617041923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c30843119d77594b15e447e879c4b608dff1d77", + "fields": { + "ligne_5": "BULAINVILLE", + "code_commune_insee": "55389", + "libelle_d_acheminement": "NUBECOURT", + "code_postal": "55250", + "nom_de_la_commune": "NUBECOURT", + "coordonnees_gps": [ + 49.0052141438, + 5.17649305461 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17649305461, + 49.0052141438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "315e7ebe86e0c615ac84a64243c0ab9fd2beecc0", + "fields": { + "code_commune_insee": "57454", + "nom_de_la_commune": "MECLEUVES", + "code_postal": "57245", + "coordonnees_gps": [ + 49.0513378937, + 6.2779740963 + ], + "libelle_d_acheminement": "MECLEUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2779740963, + 49.0513378937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a584af41acedf6b69145d867f6abbf8dfe970c5", + "fields": { + "ligne_5": "FLEURY SUR AIRE", + "code_commune_insee": "55389", + "libelle_d_acheminement": "NUBECOURT", + "code_postal": "55250", + "nom_de_la_commune": "NUBECOURT", + "coordonnees_gps": [ + 49.0052141438, + 5.17649305461 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17649305461, + 49.0052141438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26de3302b700fa1f4bbb60a55ca4f217ea7a70be", + "fields": { + "code_commune_insee": "57457", + "nom_de_la_commune": "MENSKIRCH", + "code_postal": "57320", + "coordonnees_gps": [ + 49.3200359913, + 6.42942950334 + ], + "libelle_d_acheminement": "MENSKIRCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42942950334, + 49.3200359913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2d67259dc1a6d9959dc523b6194dfed85a0c25c", + "fields": { + "code_commune_insee": "55396", + "nom_de_la_commune": "OURCHES SUR MEUSE", + "code_postal": "55190", + "coordonnees_gps": [ + 48.6653426686, + 5.6928001458 + ], + "libelle_d_acheminement": "OURCHES SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6928001458, + 48.6653426686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81dfde4344ecccaa6946f7e647320857c8ba84eb", + "fields": { + "code_commune_insee": "57462", + "nom_de_la_commune": "METTING", + "code_postal": "57370", + "coordonnees_gps": [ + 48.8117374038, + 7.20544869004 + ], + "libelle_d_acheminement": "METTING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20544869004, + 48.8117374038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18bb6a8087fe41955a6d6cd7668282dda47d3673", + "fields": { + "code_commune_insee": "55406", + "nom_de_la_commune": "PINTHEVILLE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.1156179213, + 5.66923029109 + ], + "libelle_d_acheminement": "PINTHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66923029109, + 49.1156179213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72f4ae745329c83aa0b7948d241ab71a3d9c6cf6", + "fields": { + "code_commune_insee": "57463", + "nom_de_la_commune": "METZ", + "code_postal": "57070", + "coordonnees_gps": [ + 49.1081133279, + 6.1955245421 + ], + "libelle_d_acheminement": "METZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1955245421, + 49.1081133279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e16cbe473816471ab5782df417c4b31a0594e59", + "fields": { + "code_commune_insee": "55407", + "nom_de_la_commune": "PONT SUR MEUSE", + "code_postal": "55200", + "coordonnees_gps": [ + 48.8080941031, + 5.55195590684 + ], + "libelle_d_acheminement": "PONT SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55195590684, + 48.8080941031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bafd1b572bf3404ab11201e499945fe416c0b84", + "fields": { + "code_commune_insee": "57471", + "nom_de_la_commune": "MOMERSTROFF", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1545873457, + 6.53247203457 + ], + "libelle_d_acheminement": "MOMERSTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53247203457, + 49.1545873457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddef648af906f622a4dd7d16caf20c68ed3dd1fa", + "fields": { + "code_commune_insee": "55411", + "nom_de_la_commune": "RAMBLUZIN ET BENOITE VAUX", + "code_postal": "55220", + "coordonnees_gps": [ + 48.9907557305, + 5.33360643775 + ], + "libelle_d_acheminement": "RAMBLUZIN ET BENOITE VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33360643775, + 48.9907557305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "328578b3d224e41a7a7932fa316e924ba8f2a163", + "fields": { + "code_commune_insee": "57492", + "nom_de_la_commune": "MOYEUVRE PETITE", + "code_postal": "57250", + "coordonnees_gps": [ + 49.2792197408, + 6.02037855349 + ], + "libelle_d_acheminement": "MOYEUVRE PETITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02037855349, + 49.2792197408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "122db1654a835ed3d2379e17edcb7ffaec23a096", + "fields": { + "code_commune_insee": "55415", + "nom_de_la_commune": "RANZIERES", + "code_postal": "55300", + "coordonnees_gps": [ + 49.0265798115, + 5.50221886713 + ], + "libelle_d_acheminement": "RANZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50221886713, + 49.0265798115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f77b556626e509feb19b3af0f304668b1251698f", + "fields": { + "code_commune_insee": "57494", + "nom_de_la_commune": "MUNSTER", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9087027721, + 6.89308196735 + ], + "libelle_d_acheminement": "MUNSTER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89308196735, + 48.9087027721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea5217e2f50e841c91fa608c1ed4b9620432905c", + "fields": { + "code_commune_insee": "55416", + "nom_de_la_commune": "RARECOURT", + "code_postal": "55120", + "coordonnees_gps": [ + 49.0748050041, + 5.09770601968 + ], + "libelle_d_acheminement": "RARECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09770601968, + 49.0748050041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4602be25a6f60289a65944f72e8116e9a17d723e", + "fields": { + "code_commune_insee": "57497", + "nom_de_la_commune": "NELLING", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9700836423, + 6.86518784706 + ], + "libelle_d_acheminement": "NELLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86518784706, + 48.9700836423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca2ae33e538e216786aa495ff51a8ff1c7aec1e", + "fields": { + "code_commune_insee": "55421", + "nom_de_la_commune": "REFFROY", + "code_postal": "55190", + "coordonnees_gps": [ + 48.6261033324, + 5.47057526455 + ], + "libelle_d_acheminement": "REFFROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47057526455, + 48.6261033324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7eece54833b5ec78ab2e8e7ba1d97182540f7b5", + "fields": { + "code_commune_insee": "57501", + "nom_de_la_commune": "NEUFVILLAGE", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9344617713, + 6.7792192501 + ], + "libelle_d_acheminement": "NEUFVILLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7792192501, + 48.9344617713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e2ab95a08d55ee8f5b32ffe5d571609fa1a4a60", + "fields": { + "code_commune_insee": "55425", + "nom_de_la_commune": "REMOIVILLE", + "code_postal": "55600", + "coordonnees_gps": [ + 49.4374801225, + 5.37609892461 + ], + "libelle_d_acheminement": "REMOIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37609892461, + 49.4374801225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "839a4db594a9be9e10f2ef23b38e5b43258e3bbb", + "fields": { + "code_commune_insee": "57502", + "nom_de_la_commune": "NEUNKIRCHEN LES BOUZONVILLE", + "code_postal": "57320", + "coordonnees_gps": [ + 49.3498409296, + 6.56078600065 + ], + "libelle_d_acheminement": "NEUNKIRCHEN LES BOUZONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56078600065, + 49.3498409296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08e748f9a2151faaa6f1034a2178e78476fc7572", + "fields": { + "code_commune_insee": "55436", + "nom_de_la_commune": "LES ROISES", + "code_postal": "55130", + "coordonnees_gps": [ + 48.457800837, + 5.63400298857 + ], + "libelle_d_acheminement": "LES ROISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63400298857, + 48.457800837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fa15ad007da85322e3f6876dd363f6e59b34cd3", + "fields": { + "code_commune_insee": "57506", + "nom_de_la_commune": "NIEDERSTINZEL", + "code_postal": "57930", + "coordonnees_gps": [ + 48.8717353508, + 7.01381132369 + ], + "libelle_d_acheminement": "NIEDERSTINZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01381132369, + 48.8717353508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a77b2d96b9052daf6d6481ecbcdab12b9560b040", + "fields": { + "ligne_5": "BUTGNEVILLE", + "code_commune_insee": "55457", + "libelle_d_acheminement": "ST HILAIRE EN WOEVRE", + "code_postal": "55160", + "nom_de_la_commune": "ST HILAIRE EN WOEVRE", + "coordonnees_gps": [ + 49.074793582, + 5.70636197976 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70636197976, + 49.074793582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ab84d72d3ed58b3fcd2e1da49863ffabc73655d", + "fields": { + "code_commune_insee": "57508", + "nom_de_la_commune": "NILVANGE", + "code_postal": "57240", + "coordonnees_gps": [ + 49.3442452472, + 6.05058281436 + ], + "libelle_d_acheminement": "NILVANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05058281436, + 49.3442452472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af57523265afe519d40c4a4e7351ba3e59fbbd8f", + "fields": { + "code_commune_insee": "55461", + "nom_de_la_commune": "ST LAURENT SUR OTHAIN", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3949095365, + 5.52799758686 + ], + "libelle_d_acheminement": "ST LAURENT SUR OTHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52799758686, + 49.3949095365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "883ec458c8999824e4d445ea7c0f7e0f160f8f50", + "fields": { + "code_commune_insee": "57512", + "nom_de_la_commune": "NOUILLY", + "code_postal": "57645", + "coordonnees_gps": [ + 49.1341177397, + 6.25580095096 + ], + "libelle_d_acheminement": "NOUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25580095096, + 49.1341177397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed43aefa1460c52a6305e9609373637fa6945870", + "fields": { + "ligne_5": "VAUX LA PETITE", + "code_commune_insee": "55472", + "libelle_d_acheminement": "SAULVAUX", + "code_postal": "55500", + "nom_de_la_commune": "SAULVAUX", + "coordonnees_gps": [ + 48.6897973515, + 5.46044345308 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46044345308, + 48.6897973515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf7b93e7084bec5246f346b1334b9ce230898ff2", + "fields": { + "code_commune_insee": "57526", + "nom_de_la_commune": "ORMERSVILLER", + "code_postal": "57720", + "coordonnees_gps": [ + 49.133604967, + 7.33481433142 + ], + "libelle_d_acheminement": "ORMERSVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33481433142, + 49.133604967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "176e146395c0748d039a3d4a017836c572cfa52a", + "fields": { + "code_commune_insee": "55488", + "nom_de_la_commune": "SILMONT", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7392069249, + 5.24642373048 + ], + "libelle_d_acheminement": "SILMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24642373048, + 48.7392069249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9e8b88979fac62a4178925917058f5f8d3ae30a", + "fields": { + "code_commune_insee": "57532", + "nom_de_la_commune": "PAGNY LES GOIN", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9670452807, + 6.21991401987 + ], + "libelle_d_acheminement": "PAGNY LES GOIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21991401987, + 48.9670452807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16ee3611f5f28b4f109a477375bc9adf983225fe", + "fields": { + "code_commune_insee": "55489", + "nom_de_la_commune": "SIVRY LA PERCHE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.1391427258, + 5.26052651476 + ], + "libelle_d_acheminement": "SIVRY LA PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26052651476, + 49.1391427258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83d011c4de64314be7f4c38d3506375856f924f6", + "fields": { + "code_commune_insee": "57542", + "nom_de_la_commune": "PIBLANGE", + "code_postal": "57220", + "coordonnees_gps": [ + 49.2458851209, + 6.41209982643 + ], + "libelle_d_acheminement": "PIBLANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41209982643, + 49.2458851209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b25fecf20d9d51613ba767a865c3e3ea3dd8d0b5", + "fields": { + "code_commune_insee": "55493", + "nom_de_la_commune": "SOMMEILLES", + "code_postal": "55800", + "coordonnees_gps": [ + 48.9157131194, + 4.96860127249 + ], + "libelle_d_acheminement": "SOMMEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96860127249, + 48.9157131194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca3c89fc8fc7c29acbd92e3bb4f76e1710886aff", + "fields": { + "code_commune_insee": "57548", + "nom_de_la_commune": "PONTOY", + "code_postal": "57420", + "coordonnees_gps": [ + 49.0162867909, + 6.29354972088 + ], + "libelle_d_acheminement": "PONTOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29354972088, + 49.0162867909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a0110192e9572d0e345bd64be92df87985496e3", + "fields": { + "ligne_5": "RAMPONT", + "code_commune_insee": "55497", + "libelle_d_acheminement": "LES SOUHESMES RAMPONT", + "code_postal": "55220", + "nom_de_la_commune": "LES SOUHESMES RAMPONT", + "coordonnees_gps": [ + 49.0880279879, + 5.2363065868 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2363065868, + 49.0880279879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3fdb8d79821a8d0498ab03848efe73de37b1a1f", + "fields": { + "code_commune_insee": "57550", + "nom_de_la_commune": "PORCELETTE", + "code_postal": "57890", + "coordonnees_gps": [ + 49.1603232212, + 6.66533625772 + ], + "libelle_d_acheminement": "PORCELETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66533625772, + 49.1603232212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c083b27edfd31612a4bcb950546139280138d8a", + "fields": { + "ligne_5": "HOUDELAUCOURT SUR OTHAIN", + "code_commune_insee": "55500", + "libelle_d_acheminement": "SPINCOURT", + "code_postal": "55230", + "nom_de_la_commune": "SPINCOURT", + "coordonnees_gps": [ + 49.3333694763, + 5.69690578835 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69690578835, + 49.3333694763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae5d051ecf04f8b92efde5662b9cadb005b68fa1", + "fields": { + "code_commune_insee": "57560", + "nom_de_la_commune": "RACRANGE", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9251200829, + 6.67898076184 + ], + "libelle_d_acheminement": "RACRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67898076184, + 48.9251200829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c2ec078629681a6228d50195ac8198bdacd6db6", + "fields": { + "ligne_5": "OLLIERES", + "code_commune_insee": "55500", + "libelle_d_acheminement": "SPINCOURT", + "code_postal": "55230", + "nom_de_la_commune": "SPINCOURT", + "coordonnees_gps": [ + 49.3333694763, + 5.69690578835 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69690578835, + 49.3333694763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a1f993aea414649a3b6b9bfaa981eb985126994", + "fields": { + "code_commune_insee": "57569", + "nom_de_la_commune": "REMELING", + "code_postal": "57480", + "coordonnees_gps": [ + 49.413057321, + 6.48144808378 + ], + "libelle_d_acheminement": "REMELING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48144808378, + 49.413057321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75e3c1a82e783255268348fe429f625f412d9028", + "fields": { + "code_commune_insee": "55502", + "nom_de_la_commune": "STENAY", + "code_postal": "55700", + "coordonnees_gps": [ + 49.5005049028, + 5.19767442624 + ], + "libelle_d_acheminement": "STENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19767442624, + 49.5005049028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcf7312058daa17b5a25968a24a4cc7f86ef7690", + "fields": { + "code_commune_insee": "57581", + "nom_de_la_commune": "RICHELING", + "code_postal": "57510", + "coordonnees_gps": [ + 49.0332778492, + 6.97379191847 + ], + "libelle_d_acheminement": "RICHELING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97379191847, + 49.0332778492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0ed81b86deffe508d0f4a5086b3f69ec8ef0540", + "fields": { + "code_commune_insee": "55503", + "nom_de_la_commune": "TAILLANCOURT", + "code_postal": "55140", + "coordonnees_gps": [ + 48.5108199186, + 5.66150550751 + ], + "libelle_d_acheminement": "TAILLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66150550751, + 48.5108199186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2933ecf97e86def5667c472d9faa8d65afb4a3b", + "fields": { + "code_commune_insee": "57583", + "nom_de_la_commune": "RICHEVAL", + "code_postal": "57830", + "coordonnees_gps": [ + 48.6336692816, + 6.91235074827 + ], + "libelle_d_acheminement": "RICHEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91235074827, + 48.6336692816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d10acaf3515f02425663fd68e71f891341c19718", + "fields": { + "code_commune_insee": "55506", + "nom_de_la_commune": "THILLOMBOIS", + "code_postal": "55260", + "coordonnees_gps": [ + 48.955498451, + 5.38479221078 + ], + "libelle_d_acheminement": "THILLOMBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38479221078, + 48.955498451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb9f6903571b3ec5aca5815cf09e8646e00eb623", + "fields": { + "code_commune_insee": "57596", + "nom_de_la_commune": "ROSBRUCK", + "code_postal": "57800", + "coordonnees_gps": [ + 49.1593450312, + 6.85603413121 + ], + "libelle_d_acheminement": "ROSBRUCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85603413121, + 49.1593450312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6dac64ddd6bbec452032cc0ac08c73e6be14535", + "fields": { + "code_commune_insee": "55508", + "nom_de_la_commune": "THONNE LA LONG", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5661986662, + 5.4256255311 + ], + "libelle_d_acheminement": "THONNE LA LONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4256255311, + 49.5661986662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d98953455309376834f16c22548072d67170b35", + "fields": { + "code_commune_insee": "57598", + "nom_de_la_commune": "ROUHLING", + "code_postal": "57520", + "coordonnees_gps": [ + 49.130927834, + 7.00317727676 + ], + "libelle_d_acheminement": "ROUHLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00317727676, + 49.130927834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef7786d9e07336eb7e89cd08110693c8adf79170", + "fields": { + "code_commune_insee": "55509", + "nom_de_la_commune": "THONNE LE THIL", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5717892465, + 5.34089829816 + ], + "libelle_d_acheminement": "THONNE LE THIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34089829816, + 49.5717892465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04b63cf432148229b49488309f702d75249a91d1", + "fields": { + "code_commune_insee": "57599", + "nom_de_la_commune": "ROUPELDANGE", + "code_postal": "57220", + "coordonnees_gps": [ + 49.207356539, + 6.47248674843 + ], + "libelle_d_acheminement": "ROUPELDANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47248674843, + 49.207356539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ae6452855828fc9174e1933892182262b815dd5", + "fields": { + "code_commune_insee": "55510", + "nom_de_la_commune": "THONNE LES PRES", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5321707367, + 5.34285786422 + ], + "libelle_d_acheminement": "THONNE LES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34285786422, + 49.5321707367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09e084fb3f7fd7d962392afcd6f08069baa8453c", + "fields": { + "code_commune_insee": "57602", + "nom_de_la_commune": "RURANGE LES THIONVILLE", + "code_postal": "57310", + "coordonnees_gps": [ + 49.2703005799, + 6.23459173013 + ], + "libelle_d_acheminement": "RURANGE LES THIONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23459173013, + 49.2703005799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2285ad82e005253d06262232be36dd44b07403ed", + "fields": { + "code_commune_insee": "55511", + "nom_de_la_commune": "THONNELLE", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5522651595, + 5.35866825052 + ], + "libelle_d_acheminement": "THONNELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35866825052, + 49.5522651595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7488f569a24b21defefe7daaa2e1a82847cc2b06", + "fields": { + "code_commune_insee": "57609", + "nom_de_la_commune": "ST EPVRE", + "code_postal": "57580", + "coordonnees_gps": [ + 48.9709676551, + 6.43286354316 + ], + "libelle_d_acheminement": "ST EPVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43286354316, + 48.9709676551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22dc84808fdaac57297877a57eb9a5cef31ed9da", + "fields": { + "code_commune_insee": "55512", + "nom_de_la_commune": "TILLY SUR MEUSE", + "code_postal": "55220", + "coordonnees_gps": [ + 48.9943756095, + 5.41496893941 + ], + "libelle_d_acheminement": "TILLY SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41496893941, + 48.9943756095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "240285af504733cc302de732602e2df5325ea137", + "fields": { + "code_commune_insee": "57622", + "nom_de_la_commune": "ST PRIVAT LA MONTAGNE", + "code_postal": "57855", + "coordonnees_gps": [ + 49.1857329152, + 6.04088915822 + ], + "libelle_d_acheminement": "ST PRIVAT LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04088915822, + 49.1857329152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0b0de5460a2016d335eeb78e79dc632cfabd3c5", + "fields": { + "ligne_5": "TRIAUCOURT EN ARGONNE", + "code_commune_insee": "55517", + "libelle_d_acheminement": "SEUIL D ARGONNE", + "code_postal": "55250", + "nom_de_la_commune": "SEUIL D ARGONNE", + "coordonnees_gps": [ + 48.9741184199, + 5.05640187676 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05640187676, + 48.9741184199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ab3b5353c88cdf02b92e888820a1058228e616c", + "fields": { + "code_commune_insee": "57629", + "nom_de_la_commune": "SARRALTROFF", + "code_postal": "57400", + "coordonnees_gps": [ + 48.7748898738, + 7.06228392608 + ], + "libelle_d_acheminement": "SARRALTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06228392608, + 48.7748898738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da1d655e202303150cd58f033bc1ee40480792cc", + "fields": { + "code_commune_insee": "55519", + "nom_de_la_commune": "TRONVILLE EN BARROIS", + "code_postal": "55310", + "coordonnees_gps": [ + 48.7202054641, + 5.27880486884 + ], + "libelle_d_acheminement": "TRONVILLE EN BARROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27880486884, + 48.7202054641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02d540e2ec4b75cb8a8c4dd42d3621cae41cb39d", + "fields": { + "code_commune_insee": "57635", + "nom_de_la_commune": "SCHALBACH", + "code_postal": "57370", + "coordonnees_gps": [ + 48.8211055124, + 7.15542835444 + ], + "libelle_d_acheminement": "SCHALBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15542835444, + 48.8211055124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ae967cbfbf5d394ba102bd62bf06674ff277383", + "fields": { + "code_commune_insee": "55535", + "nom_de_la_commune": "VAUDONCOURT", + "code_postal": "55230", + "coordonnees_gps": [ + 49.3164530998, + 5.64496115253 + ], + "libelle_d_acheminement": "VAUDONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64496115253, + 49.3164530998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daf67e405c415718196cd109f6c25e027a73110d", + "fields": { + "code_commune_insee": "57636", + "nom_de_la_commune": "SCHMITTVILLER", + "code_postal": "57412", + "coordonnees_gps": [ + 49.0071560938, + 7.18605554531 + ], + "libelle_d_acheminement": "SCHMITTVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18605554531, + 49.0071560938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "810ea782da26333e6e3d85cc3e441aa7af99bd7f", + "fields": { + "code_commune_insee": "55540", + "nom_de_la_commune": "VAUX LES PALAMEIX", + "code_postal": "55300", + "coordonnees_gps": [ + 49.0235694173, + 5.54952475226 + ], + "libelle_d_acheminement": "VAUX LES PALAMEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54952475226, + 49.0235694173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46a9f087593920aa180cf3c333947e33f1a2213a", + "fields": { + "code_commune_insee": "55544", + "nom_de_la_commune": "VELOSNES", + "code_postal": "55600", + "coordonnees_gps": [ + 49.4989737491, + 5.46049245047 + ], + "libelle_d_acheminement": "VELOSNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46049245047, + 49.4989737491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3f66b29f645c89d21d8bb62d73b764a11a905d8", + "fields": { + "code_commune_insee": "55560", + "nom_de_la_commune": "VILLERS AUX VENTS", + "code_postal": "55800", + "coordonnees_gps": [ + 48.859860916, + 5.02051057979 + ], + "libelle_d_acheminement": "VILLERS AUX VENTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02051057979, + 48.859860916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfda009501a6f5f01a92f8583426e28b3c9f9941", + "fields": { + "code_commune_insee": "55562", + "nom_de_la_commune": "VILLERS LE SEC", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6244341706, + 5.29962310593 + ], + "libelle_d_acheminement": "VILLERS LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29962310593, + 48.6244341706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfbcb7c429d5efdc018556a46dbe749db7188488", + "fields": { + "code_commune_insee": "55565", + "nom_de_la_commune": "VILLERS SOUS PAREID", + "code_postal": "55160", + "coordonnees_gps": [ + 49.1271118517, + 5.7409473841 + ], + "libelle_d_acheminement": "VILLERS SOUS PAREID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7409473841, + 49.1271118517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e5a2c84bcc52778ff98584d1fd37a263aef7352", + "fields": { + "code_commune_insee": "55569", + "nom_de_la_commune": "VILLOTTE DEVANT LOUPPY", + "code_postal": "55250", + "coordonnees_gps": [ + 48.8913774589, + 5.0757136176 + ], + "libelle_d_acheminement": "VILLOTTE DEVANT LOUPPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0757136176, + 48.8913774589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2ddaf131552ceb15ccdfb98b8be6e2cc1d2d270", + "fields": { + "code_commune_insee": "55580", + "nom_de_la_commune": "WAVRILLE", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3187272917, + 5.37534023156 + ], + "libelle_d_acheminement": "WAVRILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37534023156, + 49.3187272917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "517124ff4bee6fb996a689463a4136f87281a46a", + "fields": { + "ligne_5": "PORT NAVALO", + "code_commune_insee": "56005", + "libelle_d_acheminement": "ARZON", + "code_postal": "56640", + "nom_de_la_commune": "ARZON", + "coordonnees_gps": [ + 47.5470278592, + -2.88784873321 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.88784873321, + 47.5470278592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc1e884bd430ef82ea5eb4fb5d705719b4a277dc", + "fields": { + "code_commune_insee": "56006", + "nom_de_la_commune": "AUGAN", + "code_postal": "56800", + "coordonnees_gps": [ + 47.9122301916, + -2.26794243142 + ], + "libelle_d_acheminement": "AUGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.26794243142, + 47.9122301916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37850d1a36e9be81378e0601bc84e4f48e872a8d", + "fields": { + "code_commune_insee": "56009", + "nom_de_la_commune": "BANGOR", + "code_postal": "56360", + "coordonnees_gps": [ + 47.313014109, + -3.1920046614 + ], + "libelle_d_acheminement": "BANGOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.1920046614, + 47.313014109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41cfc7d9d5f4d44ad830b4b1dab63147ff40dd19", + "fields": { + "code_commune_insee": "56019", + "nom_de_la_commune": "BILLIO", + "code_postal": "56420", + "coordonnees_gps": [ + 47.8676423674, + -2.64808099654 + ], + "libelle_d_acheminement": "BILLIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64808099654, + 47.8676423674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "139925872c2279eb5dd1ca7e5cf24832972447c5", + "fields": { + "code_commune_insee": "56027", + "nom_de_la_commune": "BULEON", + "code_postal": "56420", + "coordonnees_gps": [ + 47.9204907078, + -2.675100146 + ], + "libelle_d_acheminement": "BULEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.675100146, + 47.9204907078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a805b67ac3f4802cd2ee45b9840f590ddd780a47", + "fields": { + "code_commune_insee": "56040", + "nom_de_la_commune": "CLEGUER", + "code_postal": "56620", + "coordonnees_gps": [ + 47.8651441358, + -3.36505283669 + ], + "libelle_d_acheminement": "CLEGUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36505283669, + 47.8651441358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "818eacbce8b0325bf5443928fe053fec5d053f06", + "fields": { + "code_commune_insee": "56050", + "nom_de_la_commune": "LA CROIX HELLEAN", + "code_postal": "56120", + "coordonnees_gps": [ + 47.9636789814, + -2.51127913999 + ], + "libelle_d_acheminement": "LA CROIX HELLEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.51127913999, + 47.9636789814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d771a9a42be295e72ec55fbae26e540367e4a37b", + "fields": { + "code_commune_insee": "56052", + "nom_de_la_commune": "DAMGAN", + "code_postal": "56750", + "coordonnees_gps": [ + 47.5225849121, + -2.58591349552 + ], + "libelle_d_acheminement": "DAMGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.58591349552, + 47.5225849121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a538eaa949e5c778dac107494e195eba8ed39bdf", + "fields": { + "code_commune_insee": "56063", + "nom_de_la_commune": "GESTEL", + "code_postal": "56530", + "coordonnees_gps": [ + 47.8081867338, + -3.43789895944 + ], + "libelle_d_acheminement": "GESTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.43789895944, + 47.8081867338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a320b9a3c60a5759f2b13c0ba4136655524fb36f", + "fields": { + "code_commune_insee": "56068", + "nom_de_la_commune": "LA GREE ST LAURENT", + "code_postal": "56120", + "coordonnees_gps": [ + 48.0015062155, + -2.5032399429 + ], + "libelle_d_acheminement": "LA GREE ST LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.5032399429, + 48.0015062155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "089e964585647a805a2b315af8e6758dd8b75344", + "fields": { + "code_commune_insee": "56074", + "nom_de_la_commune": "GUENIN", + "code_postal": "56150", + "coordonnees_gps": [ + 47.9054538153, + -2.96668545756 + ], + "libelle_d_acheminement": "GUENIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96668545756, + 47.9054538153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bfb924382a5f772d705d0e26e694545fded8181", + "fields": { + "ligne_5": "COETQUIDAN BELLEVUE", + "code_commune_insee": "56075", + "libelle_d_acheminement": "GUER", + "code_postal": "56380", + "nom_de_la_commune": "GUER", + "coordonnees_gps": [ + 47.9073328689, + -2.12921667557 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12921667557, + 47.9073328689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49d7f0d94814d175342b4f9ae08a43b403101367", + "fields": { + "code_commune_insee": "56076", + "nom_de_la_commune": "GUERN", + "code_postal": "56310", + "coordonnees_gps": [ + 48.034812094, + -3.10210819961 + ], + "libelle_d_acheminement": "GUERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.10210819961, + 48.034812094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a203b56c9b2fa0f2dfbbb6470f984cb4460bf936", + "fields": { + "code_commune_insee": "56080", + "nom_de_la_commune": "GUILLIERS", + "code_postal": "56490", + "coordonnees_gps": [ + 48.0517458182, + -2.41446112985 + ], + "libelle_d_acheminement": "GUILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41446112985, + 48.0517458182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fc32be4ff1f9c87a79b9dc1e58fda5454395ee4", + "fields": { + "code_commune_insee": "56082", + "nom_de_la_commune": "HELLEAN", + "code_postal": "56120", + "coordonnees_gps": [ + 47.9684046119, + -2.48122455823 + ], + "libelle_d_acheminement": "HELLEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.48122455823, + 47.9684046119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98060dff291ddf9cfd7bdbd3c8756355faee049a", + "fields": { + "code_commune_insee": "56088", + "nom_de_la_commune": "ILE D ARZ", + "code_postal": "56840", + "coordonnees_gps": [ + 47.5921615847, + -2.80045392153 + ], + "libelle_d_acheminement": "ILE D ARZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80045392153, + 47.5921615847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f03c3b681f008d84e490b913adc4cabc8fc5351", + "fields": { + "code_commune_insee": "56093", + "nom_de_la_commune": "KERGRIST", + "code_postal": "56300", + "coordonnees_gps": [ + 48.1472818466, + -2.92787554336 + ], + "libelle_d_acheminement": "KERGRIST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.92787554336, + 48.1472818466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c9f481b98e0ab9888a1b71e207841ded1ccf5da", + "fields": { + "code_commune_insee": "56099", + "nom_de_la_commune": "LANGOELAN", + "code_postal": "56160", + "coordonnees_gps": [ + 48.1207904206, + -3.23318501887 + ], + "libelle_d_acheminement": "LANGOELAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.23318501887, + 48.1207904206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62b7eeedd5555ce17183827d985b7f312da243a2", + "fields": { + "code_commune_insee": "56107", + "nom_de_la_commune": "LARMOR PLAGE", + "code_postal": "56260", + "coordonnees_gps": [ + 47.7159229255, + -3.39111373247 + ], + "libelle_d_acheminement": "LARMOR PLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.39111373247, + 47.7159229255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e06e5f905ff7ba619ebad928db3b33594ce2054", + "fields": { + "code_commune_insee": "56117", + "nom_de_la_commune": "LOCMINE", + "code_postal": "56500", + "coordonnees_gps": [ + 47.8796108678, + -2.83755408244 + ], + "libelle_d_acheminement": "LOCMINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83755408244, + 47.8796108678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e77ef6419ec6443014da9b2956c921b8c58c305", + "fields": { + "code_commune_insee": "56118", + "nom_de_la_commune": "LOCMIQUELIC", + "code_postal": "56570", + "coordonnees_gps": [ + 47.7303087589, + -3.32842997885 + ], + "libelle_d_acheminement": "LOCMIQUELIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.32842997885, + 47.7303087589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3a3cb347ec3c367c56f4dcf55ac464386531585", + "fields": { + "code_commune_insee": "56127", + "nom_de_la_commune": "MAURON", + "code_postal": "56430", + "coordonnees_gps": [ + 48.0820059121, + -2.30432452661 + ], + "libelle_d_acheminement": "MAURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.30432452661, + 48.0820059121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12b3cca8482afc4afd4c148f3707e41c7491231b", + "fields": { + "code_commune_insee": "56132", + "nom_de_la_commune": "MEUCON", + "code_postal": "56890", + "coordonnees_gps": [ + 47.7239745954, + -2.77407412753 + ], + "libelle_d_acheminement": "MEUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77407412753, + 47.7239745954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a6ce208762efe2e4c35523357aaa85c6a70eafe", + "fields": { + "code_commune_insee": "56134", + "nom_de_la_commune": "MOHON", + "code_postal": "56490", + "coordonnees_gps": [ + 48.0633640521, + -2.49561629627 + ], + "libelle_d_acheminement": "MOHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49561629627, + 48.0633640521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ca35d2a90d412863521fc3803e2d644c9f4a76a", + "fields": { + "code_commune_insee": "56141", + "nom_de_la_commune": "MOUSTOIR AC", + "code_postal": "56500", + "coordonnees_gps": [ + 47.8426011958, + -2.85850436809 + ], + "libelle_d_acheminement": "MOUSTOIR AC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.85850436809, + 47.8426011958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c8f267ec194bde61edc5efa43c1fc381c4ef8c0", + "fields": { + "code_commune_insee": "56146", + "nom_de_la_commune": "NEULLIAC", + "code_postal": "56300", + "coordonnees_gps": [ + 48.1221729003, + -2.97176123226 + ], + "libelle_d_acheminement": "NEULLIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.97176123226, + 48.1221729003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1145653412fd72981b2d3179dcd13da58ddb9e8f", + "fields": { + "code_commune_insee": "56159", + "nom_de_la_commune": "PLEUCADEUC", + "code_postal": "56140", + "coordonnees_gps": [ + 47.7694959397, + -2.38667192104 + ], + "libelle_d_acheminement": "PLEUCADEUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38667192104, + 47.7694959397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1747fa651be71bac74ba7369d803cc6d2053af4", + "fields": { + "ligne_5": "BIEUZY", + "code_commune_insee": "56173", + "libelle_d_acheminement": "PLUMELIAU BIEUZY", + "code_postal": "56310", + "nom_de_la_commune": "PLUMELIAU BIEUZY", + "coordonnees_gps": [ + 47.9650479618, + -2.98095397344 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98095397344, + 47.9650479618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ac3fea085db1278f4181ac9b3160de26549127a", + "fields": { + "code_commune_insee": "56177", + "nom_de_la_commune": "PLUVIGNER", + "code_postal": "56330", + "coordonnees_gps": [ + 47.7824013121, + -3.01608916771 + ], + "libelle_d_acheminement": "PLUVIGNER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.01608916771, + 47.7824013121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0251bb9fe7fdf1421e0fcbca4a09fd71ba847f5b", + "fields": { + "code_commune_insee": "56178", + "nom_de_la_commune": "PONTIVY", + "code_postal": "56300", + "coordonnees_gps": [ + 48.0729953877, + -2.97046592885 + ], + "libelle_d_acheminement": "PONTIVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.97046592885, + 48.0729953877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16d983a2a641eb843644574a07c1ad31ec069b92", + "fields": { + "code_commune_insee": "56179", + "nom_de_la_commune": "PONT SCORFF", + "code_postal": "56620", + "coordonnees_gps": [ + 47.839096749, + -3.41967999137 + ], + "libelle_d_acheminement": "PONT SCORFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41967999137, + 47.839096749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "accd5c926bcccc3e2a542dfdd0af23caaa46b58e", + "fields": { + "code_commune_insee": "56190", + "nom_de_la_commune": "REGUINY", + "code_postal": "56500", + "coordonnees_gps": [ + 47.9858944462, + -2.77189767095 + ], + "libelle_d_acheminement": "REGUINY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.77189767095, + 47.9858944462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23d72ce0259d6e571463a56d3f8a0e0fb0450743", + "fields": { + "code_commune_insee": "56193", + "nom_de_la_commune": "RIANTEC", + "code_postal": "56670", + "coordonnees_gps": [ + 47.7184369348, + -3.30221298077 + ], + "libelle_d_acheminement": "RIANTEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.30221298077, + 47.7184369348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ba8adabfed04a991bf6082262a0292aacc3a524", + "fields": { + "code_commune_insee": "56194", + "nom_de_la_commune": "RIEUX", + "code_postal": "56350", + "coordonnees_gps": [ + 47.6054822523, + -2.12584604962 + ], + "libelle_d_acheminement": "RIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12584604962, + 47.6054822523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abbab5346640d2f15a4b4ae309656b1f089b2f85", + "fields": { + "code_commune_insee": "56201", + "nom_de_la_commune": "LE SAINT", + "code_postal": "56110", + "coordonnees_gps": [ + 48.0965409362, + -3.5652314791 + ], + "libelle_d_acheminement": "LE SAINT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.5652314791, + 48.0965409362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec48f07c69118a80025608b7e4317e409a2450fe", + "fields": { + "code_commune_insee": "56211", + "nom_de_la_commune": "ST CONGARD", + "code_postal": "56140", + "coordonnees_gps": [ + 47.7680806028, + -2.32893095384 + ], + "libelle_d_acheminement": "ST CONGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.32893095384, + 47.7680806028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f96238be23687988fefabb1adef406c3af67f8e", + "fields": { + "code_commune_insee": "56225", + "nom_de_la_commune": "ST LERY", + "code_postal": "56430", + "coordonnees_gps": [ + 48.091355996, + -2.2632759244 + ], + "libelle_d_acheminement": "ST LERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.2632759244, + 48.091355996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c8576db65eeec13116aa1b8fab20711976621b9", + "fields": { + "code_commune_insee": "56232", + "nom_de_la_commune": "ST PERREUX", + "code_postal": "56350", + "coordonnees_gps": [ + 47.6721206978, + -2.12263604298 + ], + "libelle_d_acheminement": "ST PERREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12263604298, + 47.6721206978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d58fe7e8ad10fc058a06687072c76fcb23a6f1e", + "fields": { + "code_commune_insee": "56247", + "nom_de_la_commune": "SULNIAC", + "code_postal": "56250", + "coordonnees_gps": [ + 47.6598704315, + -2.56262143424 + ], + "libelle_d_acheminement": "SULNIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.56262143424, + 47.6598704315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bacc7412b773057c5a45c95721f854142596085b", + "fields": { + "code_commune_insee": "56248", + "nom_de_la_commune": "SURZUR", + "code_postal": "56450", + "coordonnees_gps": [ + 47.5691616224, + -2.62727408049 + ], + "libelle_d_acheminement": "SURZUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.62727408049, + 47.5691616224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93ddf9bf7a358c24a0ee6a2949619ecf8b8e9387", + "fields": { + "code_commune_insee": "56252", + "nom_de_la_commune": "LE TOUR DU PARC", + "code_postal": "56370", + "coordonnees_gps": [ + 47.5293514837, + -2.6538249578 + ], + "libelle_d_acheminement": "LE TOUR DU PARC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.6538249578, + 47.5293514837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8bbcfeab598d675b198f0e619e404e143321fc5", + "fields": { + "code_commune_insee": "56263", + "nom_de_la_commune": "STE ANNE D AURAY", + "code_postal": "56400", + "coordonnees_gps": [ + 47.7009234212, + -2.95341644757 + ], + "libelle_d_acheminement": "STE ANNE D AURAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.95341644757, + 47.7009234212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3facd16b398d8688140b4b00ddf5bec5d0cc2eb6", + "fields": { + "code_commune_insee": "56264", + "nom_de_la_commune": "KERNASCLEDEN", + "code_postal": "56540", + "coordonnees_gps": [ + 48.0077330975, + -3.32930106576 + ], + "libelle_d_acheminement": "KERNASCLEDEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.32930106576, + 48.0077330975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f62da03541eddaa2060e5c9f40d2c0fddea7c301", + "fields": { + "code_commune_insee": "57003", + "nom_de_la_commune": "ABRESCHVILLER", + "code_postal": "57560", + "coordonnees_gps": [ + 48.60157203, + 7.15576686053 + ], + "libelle_d_acheminement": "ABRESCHVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15576686053, + 48.60157203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04621d872e9171964cc48bf740aba4528510857d", + "fields": { + "code_commune_insee": "57004", + "nom_de_la_commune": "ACHAIN", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9158245704, + 6.59030850848 + ], + "libelle_d_acheminement": "ACHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59030850848, + 48.9158245704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d2c15b0c6ad7bee0c6294ca048267ce54dbb5a0", + "fields": { + "code_commune_insee": "57007", + "nom_de_la_commune": "ADAINCOURT", + "code_postal": "57580", + "coordonnees_gps": [ + 49.0059162559, + 6.44419024928 + ], + "libelle_d_acheminement": "ADAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44419024928, + 49.0059162559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8e1120f9895d8c6d76cd839b01fe9d78165be70", + "fields": { + "code_commune_insee": "57018", + "nom_de_la_commune": "AMELECOURT", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8406895704, + 6.48798103824 + ], + "libelle_d_acheminement": "AMELECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48798103824, + 48.8406895704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "034099e58bf4f03b8fd094cef9d4be30562decc5", + "fields": { + "code_commune_insee": "57025", + "nom_de_la_commune": "ANZELING", + "code_postal": "57320", + "coordonnees_gps": [ + 49.2683112384, + 6.46229391409 + ], + "libelle_d_acheminement": "ANZELING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46229391409, + 49.2683112384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2716b27528cefeff9eb9bcf6d0e7b439e5d6a6d3", + "fields": { + "code_commune_insee": "57032", + "nom_de_la_commune": "ARS SUR MOSELLE", + "code_postal": "57130", + "coordonnees_gps": [ + 49.0852493143, + 6.0478493798 + ], + "libelle_d_acheminement": "ARS SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0478493798, + 49.0852493143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "467076222627740d42524a3a914b60404d0da864", + "fields": { + "code_commune_insee": "57036", + "nom_de_la_commune": "ATTILLONCOURT", + "code_postal": "57170", + "coordonnees_gps": [ + 48.7904278549, + 6.38552204812 + ], + "libelle_d_acheminement": "ATTILLONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38552204812, + 48.7904278549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce4d0bf7d291f91aa71764d818241715cf6b121c", + "fields": { + "code_commune_insee": "57039", + "nom_de_la_commune": "AUGNY", + "code_postal": "57685", + "coordonnees_gps": [ + 49.0552002607, + 6.11577629638 + ], + "libelle_d_acheminement": "AUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11577629638, + 49.0552002607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa152d492e03be1c7e2ea1fccc809efe84bf28cc", + "fields": { + "code_commune_insee": "57042", + "nom_de_la_commune": "AVRICOURT", + "code_postal": "57810", + "coordonnees_gps": [ + 48.6556287459, + 6.8054734595 + ], + "libelle_d_acheminement": "AVRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8054734595, + 48.6556287459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9f932244f3ca8bfaf6a3b89e103b00ddabff95b", + "fields": { + "code_commune_insee": "57049", + "nom_de_la_commune": "LE BAN ST MARTIN", + "code_postal": "57050", + "coordonnees_gps": [ + 49.1241611255, + 6.14173598917 + ], + "libelle_d_acheminement": "LE BAN ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14173598917, + 49.1241611255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1936e53e011498ca9026bdfad24b84329cf9253a", + "fields": { + "code_commune_insee": "57057", + "nom_de_la_commune": "BECHY", + "code_postal": "57580", + "coordonnees_gps": [ + 48.9829120537, + 6.38598191377 + ], + "libelle_d_acheminement": "BECHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38598191377, + 48.9829120537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ac16fef2f37cddf5e6dd2dc1a911b8cbfb5a9d5", + "fields": { + "code_commune_insee": "57058", + "nom_de_la_commune": "BEHREN LES FORBACH", + "code_postal": "57460", + "coordonnees_gps": [ + 49.1675786838, + 6.94249059471 + ], + "libelle_d_acheminement": "BEHREN LES FORBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94249059471, + 49.1675786838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ababc68451521b3cdbb42110487678c2a6bc0a0", + "fields": { + "code_commune_insee": "57061", + "nom_de_la_commune": "BENING LES ST AVOLD", + "code_postal": "57800", + "coordonnees_gps": [ + 49.1339677054, + 6.83742986369 + ], + "libelle_d_acheminement": "BENING LES ST AVOLD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83742986369, + 49.1339677054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c9da899ac3efe4926f78c9f92dda6ba89e656f7", + "fields": { + "code_commune_insee": "57064", + "nom_de_la_commune": "BERLING", + "code_postal": "57370", + "coordonnees_gps": [ + 48.7999822826, + 7.24350642684 + ], + "libelle_d_acheminement": "BERLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24350642684, + 48.7999822826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e1db81f49e3574d2f6c4149323b40f4c12b7b0f", + "fields": { + "code_commune_insee": "57070", + "nom_de_la_commune": "BETTANGE", + "code_postal": "57220", + "coordonnees_gps": [ + 49.2386757924, + 6.48925028318 + ], + "libelle_d_acheminement": "BETTANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48925028318, + 49.2386757924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8cc9272ad210c55fc97e31114b71c8096fb940a", + "fields": { + "code_commune_insee": "57071", + "nom_de_la_commune": "BETTBORN", + "code_postal": "57930", + "coordonnees_gps": [ + 48.8075081926, + 7.02877201918 + ], + "libelle_d_acheminement": "BETTBORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02877201918, + 48.8075081926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "489eca436e05ee92038c7a1aab7d7dfc494d67e3", + "fields": { + "code_commune_insee": "57075", + "nom_de_la_commune": "BEUX", + "code_postal": "57580", + "coordonnees_gps": [ + 49.0006365532, + 6.31228664139 + ], + "libelle_d_acheminement": "BEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31228664139, + 49.0006365532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a296c112529690bb944c60dabe2e72a1a7d43e2", + "fields": { + "code_commune_insee": "57076", + "nom_de_la_commune": "BEYREN LES SIERCK", + "code_postal": "57570", + "coordonnees_gps": [ + 49.4686112541, + 6.2955500378 + ], + "libelle_d_acheminement": "BEYREN LES SIERCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2955500378, + 49.4686112541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b13464ad21c6466fc9fb275ee46fa3f909a96cf", + "fields": { + "code_commune_insee": "57083", + "nom_de_la_commune": "BINING", + "code_postal": "57410", + "coordonnees_gps": [ + 49.0255954258, + 7.24756790053 + ], + "libelle_d_acheminement": "BINING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24756790053, + 49.0255954258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f56028a6acd6949c1ed946494fe8eec087f977ad", + "fields": { + "ligne_5": "ANGVILLER LES BISPING", + "code_commune_insee": "57086", + "libelle_d_acheminement": "BELLES FORETS", + "code_postal": "57930", + "nom_de_la_commune": "BELLES FORETS", + "coordonnees_gps": [ + 48.8081241943, + 6.90014574673 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90014574673, + 48.8081241943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6db69c684c781d71a15a3874b1338e8419428fdf", + "fields": { + "code_commune_insee": "57089", + "nom_de_la_commune": "BITCHE", + "code_postal": "57230", + "coordonnees_gps": [ + 49.0473471719, + 7.459601871 + ], + "libelle_d_acheminement": "BITCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.459601871, + 49.0473471719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e4028d499ae59629d5aaf8e1d652fdeb2fc8283", + "fields": { + "code_commune_insee": "57108", + "nom_de_la_commune": "BREIDENBACH", + "code_postal": "57720", + "coordonnees_gps": [ + 49.1322602403, + 7.41859558098 + ], + "libelle_d_acheminement": "BREIDENBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41859558098, + 49.1322602403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00af58b5837aedf3818dd0c8f737ddf366430a07", + "fields": { + "code_commune_insee": "57109", + "nom_de_la_commune": "BREISTROFF LA GRANDE", + "code_postal": "57570", + "coordonnees_gps": [ + 49.4517934888, + 6.22461967843 + ], + "libelle_d_acheminement": "BREISTROFF LA GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22461967843, + 49.4517934888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77d39260da1854a6f955df7a38aff0c676231dc4", + "fields": { + "code_commune_insee": "57111", + "nom_de_la_commune": "BRONVAUX", + "code_postal": "57535", + "coordonnees_gps": [ + 49.1927767637, + 6.08381786639 + ], + "libelle_d_acheminement": "BRONVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08381786639, + 49.1927767637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14ba30d88423ef79bb17df68fde27bdfb396024c", + "fields": { + "code_commune_insee": "57112", + "nom_de_la_commune": "BROUCK", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1300313642, + 6.50888245176 + ], + "libelle_d_acheminement": "BROUCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50888245176, + 49.1300313642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f83ce091965579ac489289bd6f35f621ddc66f3", + "fields": { + "code_commune_insee": "57113", + "nom_de_la_commune": "BROUDERDORFF", + "code_postal": "57565", + "coordonnees_gps": [ + 48.6938303554, + 7.10063688026 + ], + "libelle_d_acheminement": "BROUDERDORFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10063688026, + 48.6938303554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7237ca0aeee2d41e19665059f1e52e4814dd80bd", + "fields": { + "code_commune_insee": "57114", + "nom_de_la_commune": "BROUVILLER", + "code_postal": "57635", + "coordonnees_gps": [ + 48.755809011, + 7.16580711521 + ], + "libelle_d_acheminement": "BROUVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16580711521, + 48.755809011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3578ec78ee55591cb0931b4c49cc309c8a8539b3", + "fields": { + "code_commune_insee": "57122", + "nom_de_la_commune": "CAPPEL", + "code_postal": "57450", + "coordonnees_gps": [ + 49.0759225608, + 6.84355366565 + ], + "libelle_d_acheminement": "CAPPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84355366565, + 49.0759225608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "082458c3abfa901b7b5586b1e1328bc0d69c2d2c", + "fields": { + "code_commune_insee": "57125", + "nom_de_la_commune": "CHAILLY LES ENNERY", + "code_postal": "57365", + "coordonnees_gps": [ + 49.2127279951, + 6.25578322218 + ], + "libelle_d_acheminement": "CHAILLY LES ENNERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25578322218, + 49.2127279951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a77f3a779d6af7ad871b0215a47ceb4744d24c0d", + "fields": { + "ligne_5": "DEDELING", + "code_commune_insee": "57133", + "libelle_d_acheminement": "CHATEAU VOUE", + "code_postal": "57170", + "nom_de_la_commune": "CHATEAU VOUE", + "coordonnees_gps": [ + 48.8474504744, + 6.6276342753 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6276342753, + 48.8474504744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a5b7374970b5e4f52bb40867ea3a3b19f8aca7b", + "fields": { + "code_commune_insee": "57644", + "nom_de_la_commune": "SEINGBOUSE", + "code_postal": "57455", + "coordonnees_gps": [ + 49.1079438712, + 6.83222968228 + ], + "libelle_d_acheminement": "SEINGBOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83222968228, + 49.1079438712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dccd26b1ee504893cf647062d06024a1b0e4e9b", + "fields": { + "code_commune_insee": "57647", + "nom_de_la_commune": "SEREMANGE ERZANGE", + "code_postal": "57290", + "coordonnees_gps": [ + 49.322921611, + 6.09359436832 + ], + "libelle_d_acheminement": "SEREMANGE ERZANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09359436832, + 49.322921611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "797d2e160f949797ba6ddebc1ed3e4b47b495d0f", + "fields": { + "code_commune_insee": "57651", + "nom_de_la_commune": "SIERSTHAL", + "code_postal": "57410", + "coordonnees_gps": [ + 49.0510946988, + 7.35614038462 + ], + "libelle_d_acheminement": "SIERSTHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35614038462, + 49.0510946988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3a4a9d8ae9e90cc6462acb57893c815f75a3551", + "fields": { + "code_commune_insee": "57654", + "nom_de_la_commune": "SILLY SUR NIED", + "code_postal": "57530", + "coordonnees_gps": [ + 49.1225790957, + 6.36666848574 + ], + "libelle_d_acheminement": "SILLY SUR NIED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36666848574, + 49.1225790957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b34661490104c2928974c489945e4d3d79c8fdfe", + "fields": { + "code_commune_insee": "57655", + "nom_de_la_commune": "SOLGNE", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9686599172, + 6.29890596956 + ], + "libelle_d_acheminement": "SOLGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29890596956, + 48.9686599172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c15baf0eb5c4c76ec359f266e3905caea63399d", + "fields": { + "code_commune_insee": "57657", + "nom_de_la_commune": "SOTZELING", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8684821498, + 6.63703101651 + ], + "libelle_d_acheminement": "SOTZELING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63703101651, + 48.8684821498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52e7d0ce33827803517d24600d8d2f1e1e1a1eac", + "fields": { + "ligne_5": "VERRERIE SOPHIE", + "code_commune_insee": "57660", + "libelle_d_acheminement": "STIRING WENDEL", + "code_postal": "57350", + "nom_de_la_commune": "STIRING WENDEL", + "coordonnees_gps": [ + 49.2025325702, + 6.93271905155 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93271905155, + 49.2025325702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37d7b50c327e148979f70cf82959d8f55e3118c0", + "fields": { + "code_commune_insee": "57662", + "nom_de_la_commune": "SUISSE", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9667358817, + 6.57858533859 + ], + "libelle_d_acheminement": "SUISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57858533859, + 48.9667358817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ea82a4dbf22a31a0359c2aa29cfef69fc8fc609", + "fields": { + "code_commune_insee": "57663", + "nom_de_la_commune": "TALANGE", + "code_postal": "57525", + "coordonnees_gps": [ + 49.2342630409, + 6.17206960901 + ], + "libelle_d_acheminement": "TALANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17206960901, + 49.2342630409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5e65f95cdb27d793d6870f4ac65844ea81ea7ea", + "fields": { + "code_commune_insee": "57671", + "nom_de_la_commune": "THIMONVILLE", + "code_postal": "57580", + "coordonnees_gps": [ + 48.9446896286, + 6.39367353613 + ], + "libelle_d_acheminement": "THIMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39367353613, + 48.9446896286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a970155277680c4272f1038173e7b6af97fd72e5", + "fields": { + "code_commune_insee": "57672", + "nom_de_la_commune": "THIONVILLE", + "code_postal": "57100", + "coordonnees_gps": [ + 49.3759716201, + 6.12928314217 + ], + "libelle_d_acheminement": "THIONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12928314217, + 49.3759716201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62b7799decbdb4084a80733db07530580388ba9b", + "fields": { + "ligne_5": "GARCHE", + "code_commune_insee": "57672", + "libelle_d_acheminement": "THIONVILLE", + "code_postal": "57100", + "nom_de_la_commune": "THIONVILLE", + "coordonnees_gps": [ + 49.3759716201, + 6.12928314217 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12928314217, + 49.3759716201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fe4097ad677d76d3abcb72488716e823ecdc7b3", + "fields": { + "code_commune_insee": "57678", + "nom_de_la_commune": "TRESSANGE", + "code_postal": "57710", + "coordonnees_gps": [ + 49.4096807012, + 5.98237050725 + ], + "libelle_d_acheminement": "TRESSANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98237050725, + 49.4096807012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a3ca34cc98e1afba0faa501d3216a2f710976a5", + "fields": { + "ligne_5": "VALLERYSTHAL", + "code_commune_insee": "57680", + "libelle_d_acheminement": "TROISFONTAINES", + "code_postal": "57870", + "nom_de_la_commune": "TROISFONTAINES", + "coordonnees_gps": [ + 48.6710669896, + 7.12727960239 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12727960239, + 48.6710669896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2adc429994d5f463fa317c0ac2fac553ec1d1605", + "fields": { + "code_commune_insee": "57686", + "nom_de_la_commune": "VAHL LES FAULQUEMONT", + "code_postal": "57380", + "coordonnees_gps": [ + 49.0220687137, + 6.63107150458 + ], + "libelle_d_acheminement": "VAHL LES FAULQUEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63107150458, + 49.0220687137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e96a721d1170be0ecaf284dc3fc079ad26c67da", + "fields": { + "ligne_5": "VAUDONCOURT", + "code_commune_insee": "57695", + "libelle_d_acheminement": "VARIZE VAUDONCOURT", + "code_postal": "57220", + "nom_de_la_commune": "VARIZE VAUDONCOURT", + "coordonnees_gps": [ + 49.1254107578, + 6.44934014942 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44934014942, + 49.1254107578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "805740ccaaf277820d76dac8463ae7a9cf946ce6", + "fields": { + "code_commune_insee": "57696", + "nom_de_la_commune": "VARSBERG", + "code_postal": "57880", + "coordonnees_gps": [ + 49.1748380196, + 6.61893587601 + ], + "libelle_d_acheminement": "VARSBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61893587601, + 49.1748380196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3d7a32cf674ad716941f0ce379bafa8762238dd", + "fields": { + "code_commune_insee": "57697", + "nom_de_la_commune": "VASPERVILLER", + "code_postal": "57560", + "coordonnees_gps": [ + 48.6352577375, + 7.07124711805 + ], + "libelle_d_acheminement": "VASPERVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07124711805, + 48.6352577375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "383e75c817dcb9c0d8f78a6801ded9a1b0831274", + "fields": { + "code_commune_insee": "57701", + "nom_de_la_commune": "VAUX", + "code_postal": "57130", + "coordonnees_gps": [ + 49.093212654, + 6.06911259068 + ], + "libelle_d_acheminement": "VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06911259068, + 49.093212654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53a0fc493b495575fb51a0575d3a61c2de1f571f", + "fields": { + "code_commune_insee": "57703", + "nom_de_la_commune": "VECKERSVILLER", + "code_postal": "57370", + "coordonnees_gps": [ + 48.8297509643, + 7.18632776564 + ], + "libelle_d_acheminement": "VECKERSVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18632776564, + 48.8297509643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f64f48d6657ea51a6b2cb60441ee8e1c47f002b2", + "fields": { + "code_commune_insee": "57705", + "nom_de_la_commune": "VELVING", + "code_postal": "57220", + "coordonnees_gps": [ + 49.2419971851, + 6.53888039354 + ], + "libelle_d_acheminement": "VELVING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53888039354, + 49.2419971851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "274ded8d8623c43181f55e8bd41f324fbb15380f", + "fields": { + "code_commune_insee": "57712", + "nom_de_la_commune": "VIC SUR SEILLE", + "code_postal": "57630", + "coordonnees_gps": [ + 48.7749870403, + 6.52757815472 + ], + "libelle_d_acheminement": "VIC SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52757815472, + 48.7749870403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "376aab8c47eb652177baf8b19bab7d3f2d302f05", + "fields": { + "code_commune_insee": "57715", + "nom_de_la_commune": "VIGNY", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9683757899, + 6.25329228193 + ], + "libelle_d_acheminement": "VIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25329228193, + 48.9683757899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20079d28b868140cf4c7480b00326a45fc8ba170", + "fields": { + "code_commune_insee": "57720", + "nom_de_la_commune": "VILLING", + "code_postal": "57550", + "coordonnees_gps": [ + 49.2816215974, + 6.63107602679 + ], + "libelle_d_acheminement": "VILLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63107602679, + 49.2816215974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ff8fb10f9d42c2b18fca979e1e17fb7de5a9227", + "fields": { + "code_commune_insee": "57724", + "nom_de_la_commune": "VITRY SUR ORNE", + "code_postal": "57185", + "coordonnees_gps": [ + 49.2766034862, + 6.09532955616 + ], + "libelle_d_acheminement": "VITRY SUR ORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09532955616, + 49.2766034862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5d77808b7e3e567d245697f818dafeef2710162", + "fields": { + "code_commune_insee": "57726", + "nom_de_la_commune": "VITTONCOURT", + "code_postal": "57580", + "coordonnees_gps": [ + 49.0215965813, + 6.45567929548 + ], + "libelle_d_acheminement": "VITTONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45567929548, + 49.0215965813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6b49788232de050f352943e436026d81ff61684", + "fields": { + "code_commune_insee": "57738", + "nom_de_la_commune": "WALDHOUSE", + "code_postal": "57720", + "coordonnees_gps": [ + 49.1394116711, + 7.45605227676 + ], + "libelle_d_acheminement": "WALDHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45605227676, + 49.1394116711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "499efe7caf18ed17e3208244eb819d43ef95f04b", + "fields": { + "code_commune_insee": "57742", + "nom_de_la_commune": "WALSCHEID", + "code_postal": "57870", + "coordonnees_gps": [ + 48.6198274157, + 7.18861685724 + ], + "libelle_d_acheminement": "WALSCHEID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18861685724, + 48.6198274157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03242d1fbc06ef4971e1e561b323602256d3ceb0", + "fields": { + "code_commune_insee": "57746", + "nom_de_la_commune": "WILLERWALD", + "code_postal": "57430", + "coordonnees_gps": [ + 49.0244559247, + 7.03682413781 + ], + "libelle_d_acheminement": "WILLERWALD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03682413781, + 49.0244559247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c507040fb460a8b93c4316f742f8af99b8468a4", + "fields": { + "code_commune_insee": "57748", + "nom_de_la_commune": "WITTRING", + "code_postal": "57905", + "coordonnees_gps": [ + 49.0532147787, + 7.13000666752 + ], + "libelle_d_acheminement": "WITTRING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13000666752, + 49.0532147787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d36e342fcdc4172563d4a706ebd0eb3103e9ce4f", + "fields": { + "code_commune_insee": "57760", + "nom_de_la_commune": "ZETTING", + "code_postal": "57905", + "coordonnees_gps": [ + 49.073370472, + 7.12604029604 + ], + "libelle_d_acheminement": "ZETTING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12604029604, + 49.073370472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45486e389e6ab8955d4269a4726359522097a2d1", + "fields": { + "code_commune_insee": "58001", + "nom_de_la_commune": "ACHUN", + "code_postal": "58110", + "coordonnees_gps": [ + 47.1296847784, + 3.66418782377 + ], + "libelle_d_acheminement": "ACHUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66418782377, + 47.1296847784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b5c8996379a062327d03a88de1bd707fcc8dc99", + "fields": { + "code_commune_insee": "58003", + "nom_de_la_commune": "ALLIGNY EN MORVAN", + "code_postal": "58230", + "coordonnees_gps": [ + 47.2097168429, + 4.17338633235 + ], + "libelle_d_acheminement": "ALLIGNY EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17338633235, + 47.2097168429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3edffc725d6814640885cd7ff6bf3a132aa524c", + "fields": { + "code_commune_insee": "58008", + "nom_de_la_commune": "ANTHIEN", + "code_postal": "58800", + "coordonnees_gps": [ + 47.3090555536, + 3.72507845013 + ], + "libelle_d_acheminement": "ANTHIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72507845013, + 47.3090555536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "086f9c00163403fae01b464ca51c85255147868b", + "fields": { + "code_commune_insee": "58009", + "nom_de_la_commune": "ARBOURSE", + "code_postal": "58350", + "coordonnees_gps": [ + 47.2487922642, + 3.2239933188 + ], + "libelle_d_acheminement": "ARBOURSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2239933188, + 47.2487922642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2950ebe5ff83fbc1138c88f1199e90fac547e688", + "fields": { + "code_commune_insee": "58015", + "nom_de_la_commune": "ASNAN", + "code_postal": "58420", + "coordonnees_gps": [ + 47.31031619, + 3.55239408391 + ], + "libelle_d_acheminement": "ASNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55239408391, + 47.31031619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7747c4470522d1d42d206b18efe78196fd984c7b", + "fields": { + "code_commune_insee": "58020", + "nom_de_la_commune": "AVRIL SUR LOIRE", + "code_postal": "58300", + "coordonnees_gps": [ + 46.8084334305, + 3.36209640132 + ], + "libelle_d_acheminement": "AVRIL SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36209640132, + 46.8084334305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51d07511e7b217d0d55775457c73bdeea3a8e9da", + "fields": { + "code_commune_insee": "58021", + "nom_de_la_commune": "AZY LE VIF", + "code_postal": "58240", + "coordonnees_gps": [ + 46.7880140939, + 3.22978809356 + ], + "libelle_d_acheminement": "AZY LE VIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22978809356, + 46.7880140939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58e97d5efd818052ba8ff188503592151550caa5", + "fields": { + "code_commune_insee": "58023", + "nom_de_la_commune": "BAZOCHES", + "code_postal": "58190", + "coordonnees_gps": [ + 47.368858753, + 3.79377524452 + ], + "libelle_d_acheminement": "BAZOCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79377524452, + 47.368858753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87247a6845994c2fcc5e29c73c18a28ef88ab726", + "fields": { + "code_commune_insee": "58033", + "nom_de_la_commune": "BITRY", + "code_postal": "58310", + "coordonnees_gps": [ + 47.4936543218, + 3.08467845903 + ], + "libelle_d_acheminement": "BITRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08467845903, + 47.4936543218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db289eed9d2ecbdd5faa647aeaaba640cd0eee86", + "fields": { + "code_commune_insee": "58040", + "nom_de_la_commune": "BRINAY", + "code_postal": "58110", + "coordonnees_gps": [ + 47.0139290387, + 3.70701792001 + ], + "libelle_d_acheminement": "BRINAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70701792001, + 47.0139290387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f432155f168bd9a873efd0024f78f6a30ecf26c", + "fields": { + "code_commune_insee": "58042", + "nom_de_la_commune": "BULCY", + "code_postal": "58400", + "coordonnees_gps": [ + 47.2416583489, + 3.02883533035 + ], + "libelle_d_acheminement": "BULCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02883533035, + 47.2416583489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59c97356355b2ce70881b9f5723814e8233c7c30", + "fields": { + "code_commune_insee": "58043", + "nom_de_la_commune": "BUSSY LA PESLE", + "code_postal": "58420", + "coordonnees_gps": [ + 47.2550240135, + 3.47467766034 + ], + "libelle_d_acheminement": "BUSSY LA PESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47467766034, + 47.2550240135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa8cbaeda15810a4d2cb54da01770d00097a73eb", + "fields": { + "code_commune_insee": "58044", + "nom_de_la_commune": "LA CELLE SUR LOIRE", + "code_postal": "58440", + "coordonnees_gps": [ + 47.4852979363, + 2.93434517824 + ], + "libelle_d_acheminement": "LA CELLE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93434517824, + 47.4852979363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df48445a3e6bfff9b2473b5f75b20c211e1cf031", + "fields": { + "code_commune_insee": "58045", + "nom_de_la_commune": "LA CELLE SUR NIEVRE", + "code_postal": "58700", + "coordonnees_gps": [ + 47.218624699, + 3.20226089241 + ], + "libelle_d_acheminement": "LA CELLE SUR NIEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20226089241, + 47.218624699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3e7e49847be9b51b39773438f7b3543c93cfdfa", + "fields": { + "code_commune_insee": "58049", + "nom_de_la_commune": "CHALAUX", + "code_postal": "58140", + "coordonnees_gps": [ + 47.3330120045, + 3.91270768034 + ], + "libelle_d_acheminement": "CHALAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91270768034, + 47.3330120045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eef6854deef15bf4ffbbe9b9697d799fe9b7bf2f", + "fields": { + "code_commune_insee": "58058", + "nom_de_la_commune": "LA CHAPELLE ST ANDRE", + "code_postal": "58210", + "coordonnees_gps": [ + 47.4008356839, + 3.32446330279 + ], + "libelle_d_acheminement": "LA CHAPELLE ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32446330279, + 47.4008356839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2ed38010c868267544c44aebb7434f648cd8fc8", + "fields": { + "code_commune_insee": "58080", + "nom_de_la_commune": "LA COLLANCELLE", + "code_postal": "58800", + "coordonnees_gps": [ + 47.1806919215, + 3.64662117712 + ], + "libelle_d_acheminement": "LA COLLANCELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64662117712, + 47.1806919215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9c61e6acaf157ad035d041acd299330388ea75e", + "fields": { + "code_commune_insee": "58081", + "nom_de_la_commune": "COLMERY", + "code_postal": "58350", + "coordonnees_gps": [ + 47.348832741, + 3.24694851198 + ], + "libelle_d_acheminement": "COLMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24694851198, + 47.348832741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d07c2838ca07e610d8557a955ca1a8b343ba188", + "fields": { + "code_commune_insee": "58086", + "nom_de_la_commune": "COSNE COURS SUR LOIRE", + "code_postal": "58200", + "coordonnees_gps": [ + 47.4029099422, + 2.94284103771 + ], + "libelle_d_acheminement": "COSNE COURS SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94284103771, + 47.4029099422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97071cbd609dddc0ca6d7fb104b313b63228d6e8", + "fields": { + "code_commune_insee": "58093", + "nom_de_la_commune": "CUNCY LES VARZY", + "code_postal": "58210", + "coordonnees_gps": [ + 47.3624384077, + 3.45913021851 + ], + "libelle_d_acheminement": "CUNCY LES VARZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45913021851, + 47.3624384077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee046953ce591be1ad0140c0c299f197070c25f2", + "fields": { + "code_commune_insee": "58096", + "nom_de_la_commune": "DEVAY", + "code_postal": "58300", + "coordonnees_gps": [ + 46.8052157107, + 3.54237937997 + ], + "libelle_d_acheminement": "DEVAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54237937997, + 46.8052157107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d468125b3634885f9015d7bdccf79e651cca8e4", + "fields": { + "code_commune_insee": "58105", + "nom_de_la_commune": "DRUY PARIGNY", + "code_postal": "58160", + "coordonnees_gps": [ + 46.8810589814, + 3.37180650361 + ], + "libelle_d_acheminement": "DRUY PARIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37180650361, + 46.8810589814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8846176e6cd41bd98f804e58df60afe4c9dc227e", + "fields": { + "code_commune_insee": "58113", + "nom_de_la_commune": "FERTREVE", + "code_postal": "58270", + "coordonnees_gps": [ + 46.9629893289, + 3.58909121606 + ], + "libelle_d_acheminement": "FERTREVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58909121606, + 46.9629893289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44a3b9efe98588cc3cf933c7435e52bb67ef1536", + "fields": { + "code_commune_insee": "58118", + "nom_de_la_commune": "FOURS", + "code_postal": "58250", + "coordonnees_gps": [ + 46.8089651055, + 3.72049071948 + ], + "libelle_d_acheminement": "FOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72049071948, + 46.8089651055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5beb53b741a86fda4f77eae5589d0a652adf44f5", + "fields": { + "code_commune_insee": "58122", + "nom_de_la_commune": "GARCHY", + "code_postal": "58150", + "coordonnees_gps": [ + 47.2771676376, + 3.05332788878 + ], + "libelle_d_acheminement": "GARCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05332788878, + 47.2771676376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a680c7372e384d19de7cc67f898ca4ed927f533", + "fields": { + "ligne_5": "MAIZIERES", + "code_commune_insee": "58122", + "libelle_d_acheminement": "GARCHY", + "code_postal": "58150", + "nom_de_la_commune": "GARCHY", + "coordonnees_gps": [ + 47.2771676376, + 3.05332788878 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05332788878, + 47.2771676376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7013355d46b5cc6767205b98918baa0e5c3ac32b", + "fields": { + "code_commune_insee": "58128", + "nom_de_la_commune": "GLUX EN GLENNE", + "code_postal": "58370", + "coordonnees_gps": [ + 46.9557860799, + 4.0213723533 + ], + "libelle_d_acheminement": "GLUX EN GLENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0213723533, + 46.9557860799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "438da117312f37cb9b4b9e26042f866204d5878c", + "fields": { + "code_commune_insee": "58133", + "nom_de_la_commune": "HERY", + "code_postal": "58800", + "coordonnees_gps": [ + 47.2623486952, + 3.59205862673 + ], + "libelle_d_acheminement": "HERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59205862673, + 47.2623486952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a243fd35fa641b362f81146a39530a119d2ff0a9", + "fields": { + "code_commune_insee": "58137", + "nom_de_la_commune": "LAMENAY SUR LOIRE", + "code_postal": "58300", + "coordonnees_gps": [ + 46.7499702083, + 3.57600499117 + ], + "libelle_d_acheminement": "LAMENAY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57600499117, + 46.7499702083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f5a2895ca5c42e3c1266b800c6d6fd6bb78e5b2", + "fields": { + "code_commune_insee": "58152", + "nom_de_la_commune": "MAGNY COURS", + "code_postal": "58470", + "coordonnees_gps": [ + 46.8900521667, + 3.15435874916 + ], + "libelle_d_acheminement": "MAGNY COURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15435874916, + 46.8900521667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7eb8ff483356ad870b39af80e7f4f95aff80278", + "fields": { + "code_commune_insee": "58154", + "nom_de_la_commune": "LA MAISON DIEU", + "code_postal": "58190", + "coordonnees_gps": [ + 47.4216053148, + 3.66770508444 + ], + "libelle_d_acheminement": "LA MAISON DIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66770508444, + 47.4216053148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3831e4ded6c11ac11f9850b8cd56ff79b4f77951", + "fields": { + "code_commune_insee": "58156", + "nom_de_la_commune": "MARCY", + "code_postal": "58210", + "coordonnees_gps": [ + 47.3172612368, + 3.40361734697 + ], + "libelle_d_acheminement": "MARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40361734697, + 47.3172612368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9e25819e571bcc6eebf47e3ec53d0511b6cef16", + "fields": { + "code_commune_insee": "58161", + "nom_de_la_commune": "MAUX", + "code_postal": "58290", + "coordonnees_gps": [ + 47.038265018, + 3.77347419012 + ], + "libelle_d_acheminement": "MAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77347419012, + 47.038265018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2d11e3a047ceaef7e83f962fffc9195c48c422a", + "fields": { + "code_commune_insee": "58164", + "nom_de_la_commune": "MESVES SUR LOIRE", + "code_postal": "58400", + "coordonnees_gps": [ + 47.2305535189, + 3.00466811976 + ], + "libelle_d_acheminement": "MESVES SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00466811976, + 47.2305535189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e306259acfa93346cf6bcb0c4362261f7e11c6e", + "fields": { + "code_commune_insee": "58165", + "nom_de_la_commune": "METZ LE COMTE", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3930715612, + 3.63564973338 + ], + "libelle_d_acheminement": "METZ LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63564973338, + 47.3930715612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3614bd6c84bbda668d2736890a0327fa00ccc23d", + "fields": { + "code_commune_insee": "58172", + "nom_de_la_commune": "MONTAMBERT", + "code_postal": "58250", + "coordonnees_gps": [ + 46.770548443, + 3.68356679841 + ], + "libelle_d_acheminement": "MONTAMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68356679841, + 46.770548443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81a9d2fbed8117b862aa795272af6a2378957e3b", + "fields": { + "code_commune_insee": "58174", + "nom_de_la_commune": "MONTENOISON", + "code_postal": "58700", + "coordonnees_gps": [ + 47.2188062149, + 3.42097761698 + ], + "libelle_d_acheminement": "MONTENOISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42097761698, + 47.2188062149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28f5d9fc27a5107ac44b5740b668b3bd3dd90d06", + "fields": { + "code_commune_insee": "58181", + "nom_de_la_commune": "MORACHES", + "code_postal": "58420", + "coordonnees_gps": [ + 47.2847629548, + 3.54492476259 + ], + "libelle_d_acheminement": "MORACHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54492476259, + 47.2847629548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db5632ca6f7c571de15134904e10265503191448", + "fields": { + "code_commune_insee": "58184", + "nom_de_la_commune": "MOUSSY", + "code_postal": "58700", + "coordonnees_gps": [ + 47.1965140139, + 3.4589921021 + ], + "libelle_d_acheminement": "MOUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4589921021, + 47.1965140139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "300e0bd2b1ed6a0f814c3fe1c3bcd51adb0796b1", + "fields": { + "code_commune_insee": "58206", + "nom_de_la_commune": "PARIGNY LA ROSE", + "code_postal": "58210", + "coordonnees_gps": [ + 47.3307435797, + 3.45512612247 + ], + "libelle_d_acheminement": "PARIGNY LA ROSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45512612247, + 47.3307435797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7ac20a4bf80546de55b68bea5fdfae41549449d", + "fields": { + "code_commune_insee": "58211", + "nom_de_la_commune": "POIL", + "code_postal": "58170", + "coordonnees_gps": [ + 46.8732226807, + 4.05560457368 + ], + "libelle_d_acheminement": "POIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05560457368, + 46.8732226807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "503f4e1df6f600348e88d3cb41e81282cb8f6703", + "fields": { + "code_commune_insee": "58222", + "nom_de_la_commune": "RIX", + "code_postal": "58500", + "coordonnees_gps": [ + 47.4284202802, + 3.49827889196 + ], + "libelle_d_acheminement": "RIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49827889196, + 47.4284202802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c83f580b40ca22c2f1193b4f07dd174f8ae19ecf", + "fields": { + "code_commune_insee": "58225", + "nom_de_la_commune": "SAINCAIZE MEAUCE", + "code_postal": "58470", + "coordonnees_gps": [ + 46.9074250385, + 3.08679775967 + ], + "libelle_d_acheminement": "SAINCAIZE MEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08679775967, + 46.9074250385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "877e37ff715239dfa9e5fc71993d23aab934c1d4", + "fields": { + "code_commune_insee": "58228", + "nom_de_la_commune": "ST ANDELAIN", + "code_postal": "58150", + "coordonnees_gps": [ + 47.3106333891, + 2.98007868063 + ], + "libelle_d_acheminement": "ST ANDELAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98007868063, + 47.3106333891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9af2a4053d38393f131197c9eb9c09c75b148a66", + "fields": { + "code_commune_insee": "58234", + "nom_de_la_commune": "ST BONNOT", + "code_postal": "58700", + "coordonnees_gps": [ + 47.2460224588, + 3.30695653573 + ], + "libelle_d_acheminement": "ST BONNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30695653573, + 47.2460224588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7675060dda5075e670abe7ced2474e94f34eb4c", + "fields": { + "code_commune_insee": "58243", + "nom_de_la_commune": "ST GRATIEN SAVIGNY", + "code_postal": "58340", + "coordonnees_gps": [ + 46.9008929887, + 3.65901244789 + ], + "libelle_d_acheminement": "ST GRATIEN SAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65901244789, + 46.9008929887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "369a4eb91cdb1992b487d5cf75bdcf0ff15d2f17", + "fields": { + "code_commune_insee": "58244", + "nom_de_la_commune": "ST HILAIRE EN MORVAN", + "code_postal": "58120", + "coordonnees_gps": [ + 47.0682831624, + 3.88728791714 + ], + "libelle_d_acheminement": "ST HILAIRE EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88728791714, + 47.0682831624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1decf13a399cb7897826457896e5ee87a61e156a", + "fields": { + "code_commune_insee": "58255", + "nom_de_la_commune": "ST MARTIN DU PUY", + "code_postal": "58140", + "coordonnees_gps": [ + 47.3309047004, + 3.87554072718 + ], + "libelle_d_acheminement": "ST MARTIN DU PUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87554072718, + 47.3309047004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd6380f44d96e1a74b4765aada7f5ca218e034a1", + "fields": { + "code_commune_insee": "58258", + "nom_de_la_commune": "ST OUEN SUR LOIRE", + "code_postal": "58160", + "coordonnees_gps": [ + 46.8992684036, + 3.3202343008 + ], + "libelle_d_acheminement": "ST OUEN SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3202343008, + 46.8992684036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d39e9be65d45f4e06fa53334592bec73a5f44dd1", + "fields": { + "code_commune_insee": "58264", + "nom_de_la_commune": "ST PIERRE LE MOUTIER", + "code_postal": "58240", + "coordonnees_gps": [ + 46.7917213568, + 3.14035365486 + ], + "libelle_d_acheminement": "ST PIERRE LE MOUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14035365486, + 46.7917213568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27c93ba35a2a07a75257f4fa8126b9b49c53636f", + "fields": { + "code_commune_insee": "58272", + "nom_de_la_commune": "SARDY LES EPIRY", + "code_postal": "58800", + "coordonnees_gps": [ + 47.1956477659, + 3.68999413618 + ], + "libelle_d_acheminement": "SARDY LES EPIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68999413618, + 47.1956477659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3332ed0d4048162c475fd388f1aa926dc789ba28", + "fields": { + "code_commune_insee": "58286", + "nom_de_la_commune": "TANNAY", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3614608414, + 3.58125302901 + ], + "libelle_d_acheminement": "TANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58125302901, + 47.3614608414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e31423a5390c250be32ba1397fa1eaf45796cf8b", + "fields": { + "code_commune_insee": "58288", + "nom_de_la_commune": "TEIGNY", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3880495543, + 3.66896170005 + ], + "libelle_d_acheminement": "TEIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66896170005, + 47.3880495543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed0ee8fdab866de9daa3312e5775184501ccc86b", + "fields": { + "code_commune_insee": "57140", + "nom_de_la_commune": "CHESNY", + "code_postal": "57245", + "coordonnees_gps": [ + 49.0524150036, + 6.24363224216 + ], + "libelle_d_acheminement": "CHESNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24363224216, + 49.0524150036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7f2d73fb07ca41ee7c7712b5ad8ef2ac9faebcd", + "fields": { + "code_commune_insee": "58296", + "nom_de_la_commune": "TRESNAY", + "code_postal": "58240", + "coordonnees_gps": [ + 46.700299942, + 3.19457698203 + ], + "libelle_d_acheminement": "TRESNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19457698203, + 46.700299942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c66ea161a59877183c1131a0094323aec1ffce74", + "fields": { + "code_commune_insee": "57146", + "nom_de_la_commune": "COIN LES CUVRY", + "code_postal": "57420", + "coordonnees_gps": [ + 49.0248510499, + 6.13661695349 + ], + "libelle_d_acheminement": "COIN LES CUVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13661695349, + 49.0248510499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11e787718bcb34505ff08b3a06afb82bb74e3649", + "fields": { + "code_commune_insee": "58305", + "nom_de_la_commune": "VAUCLAIX", + "code_postal": "58140", + "coordonnees_gps": [ + 47.2273609671, + 3.81810901103 + ], + "libelle_d_acheminement": "VAUCLAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81810901103, + 47.2273609671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99c2c08f85cc6bfead8efbddf7df8accbcb69ace", + "fields": { + "code_commune_insee": "57154", + "nom_de_la_commune": "COUME", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1968729859, + 6.58311875071 + ], + "libelle_d_acheminement": "COUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58311875071, + 49.1968729859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4ce9b32199ed5028e05603119bcad498d3bc15a", + "fields": { + "code_commune_insee": "58308", + "nom_de_la_commune": "VIGNOL", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3582002671, + 3.66211871646 + ], + "libelle_d_acheminement": "VIGNOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66211871646, + 47.3582002671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d00321561e2d2b2200f7832b288ebf1076270c2", + "fields": { + "code_commune_insee": "57161", + "nom_de_la_commune": "CUTTING", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8448468243, + 6.83520339633 + ], + "libelle_d_acheminement": "CUTTING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83520339633, + 48.8448468243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0414d48d050d72edecfe4995418808d0810fee5", + "fields": { + "code_commune_insee": "59003", + "nom_de_la_commune": "AIBES", + "code_postal": "59149", + "coordonnees_gps": [ + 50.233709404, + 4.09622701433 + ], + "libelle_d_acheminement": "AIBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09622701433, + 50.233709404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "748de15698f4624e4262713e4fd2d008c4d026d0", + "fields": { + "code_commune_insee": "57175", + "nom_de_la_commune": "DIANE CAPELLE", + "code_postal": "57830", + "coordonnees_gps": [ + 48.7282548842, + 6.93474209956 + ], + "libelle_d_acheminement": "DIANE CAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93474209956, + 48.7282548842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5aa3b569f614a839418cac414b5e7577ccbc4680", + "fields": { + "code_commune_insee": "59007", + "nom_de_la_commune": "ANHIERS", + "code_postal": "59194", + "coordonnees_gps": [ + 50.4047718446, + 3.15371031857 + ], + "libelle_d_acheminement": "ANHIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15371031857, + 50.4047718446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f321fa2920591a824e7101e0d5b74ec5adfe1c57", + "fields": { + "code_commune_insee": "57176", + "nom_de_la_commune": "DIEBLING", + "code_postal": "57980", + "coordonnees_gps": [ + 49.1049228082, + 6.9358597746 + ], + "libelle_d_acheminement": "DIEBLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9358597746, + 49.1049228082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4ee37f589d42236da7b4589c944fc25a3df9f68", + "fields": { + "code_commune_insee": "59011", + "nom_de_la_commune": "ANNOEULLIN", + "code_postal": "59112", + "coordonnees_gps": [ + 50.5265153703, + 2.92753629479 + ], + "libelle_d_acheminement": "ANNOEULLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92753629479, + 50.5265153703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17a9a149782a35916a5d2e0504d1b849d0706dfb", + "fields": { + "code_commune_insee": "57183", + "nom_de_la_commune": "DONNELAY", + "code_postal": "57810", + "coordonnees_gps": [ + 48.750185761, + 6.68883715814 + ], + "libelle_d_acheminement": "DONNELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68883715814, + 48.750185761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a540a77be1e2df1f024c01009cb3f232153b360", + "fields": { + "code_commune_insee": "59013", + "nom_de_la_commune": "ANSTAING", + "code_postal": "59152", + "coordonnees_gps": [ + 50.603523536, + 3.18920215192 + ], + "libelle_d_acheminement": "ANSTAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18920215192, + 50.603523536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d198c8751f61b76675851951c6db39887fdace6a", + "fields": { + "code_commune_insee": "57192", + "nom_de_la_commune": "ENCHENBERG", + "code_postal": "57415", + "coordonnees_gps": [ + 49.0201848872, + 7.32888421679 + ], + "libelle_d_acheminement": "ENCHENBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32888421679, + 49.0201848872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33d7134f74c4ff641e75d4cf283a78752664d406", + "fields": { + "code_commune_insee": "59015", + "nom_de_la_commune": "ARLEUX", + "code_postal": "59151", + "coordonnees_gps": [ + 50.2820675827, + 3.11314479871 + ], + "libelle_d_acheminement": "ARLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11314479871, + 50.2820675827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edf18e97302367b44ecee5967419c0706f85917f", + "fields": { + "code_commune_insee": "57196", + "nom_de_la_commune": "ERCHING", + "code_postal": "57720", + "coordonnees_gps": [ + 49.1145150394, + 7.26539475747 + ], + "libelle_d_acheminement": "ERCHING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26539475747, + 49.1145150394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20eceaf71cd027707b6aaf4c708712f72252f788", + "fields": { + "code_commune_insee": "59018", + "nom_de_la_commune": "ARNEKE", + "code_postal": "59285", + "coordonnees_gps": [ + 50.8416889858, + 2.41843292762 + ], + "libelle_d_acheminement": "ARNEKE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41843292762, + 50.8416889858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef01105d81874fac8aa5162b22b7354e0cd47c9b", + "fields": { + "code_commune_insee": "57203", + "nom_de_la_commune": "EVRANGE", + "code_postal": "57570", + "coordonnees_gps": [ + 49.5018952512, + 6.19391605054 + ], + "libelle_d_acheminement": "EVRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19391605054, + 49.5018952512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaa9118c44f9908056c926250456af7dc14f1d1e", + "fields": { + "code_commune_insee": "59023", + "nom_de_la_commune": "AUBENCHEUL AU BAC", + "code_postal": "59265", + "coordonnees_gps": [ + 50.2518526914, + 3.16168773742 + ], + "libelle_d_acheminement": "AUBENCHEUL AU BAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16168773742, + 50.2518526914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f16b47c357ea3dce1f6286a575b0bbfd5717d819", + "fields": { + "code_commune_insee": "57204", + "nom_de_la_commune": "FAILLY", + "code_postal": "57640", + "coordonnees_gps": [ + 49.1632324658, + 6.27202810921 + ], + "libelle_d_acheminement": "FAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27202810921, + 49.1632324658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbd72c5ecbd1b0c5d3ae6ba41379bb0c63f34f8e", + "fields": { + "code_commune_insee": "59026", + "nom_de_la_commune": "AUBIGNY AU BAC", + "code_postal": "59265", + "coordonnees_gps": [ + 50.2659759447, + 3.16874604317 + ], + "libelle_d_acheminement": "AUBIGNY AU BAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16874604317, + 50.2659759447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "136f7a1f100f2153d2b0e18a6e715f52d992c887", + "fields": { + "code_commune_insee": "57208", + "nom_de_la_commune": "FARSCHVILLER", + "code_postal": "57450", + "coordonnees_gps": [ + 49.0904845084, + 6.88423747593 + ], + "libelle_d_acheminement": "FARSCHVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88423747593, + 49.0904845084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "843490995ab2a9a56c8d6e87d470d2785e135f81", + "fields": { + "code_commune_insee": "59031", + "nom_de_la_commune": "AUDIGNIES", + "code_postal": "59570", + "coordonnees_gps": [ + 50.2783465062, + 3.82456125193 + ], + "libelle_d_acheminement": "AUDIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82456125193, + 50.2783465062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76959669534298fe5995cf1e246302f65b1e5fe9", + "fields": { + "code_commune_insee": "57209", + "nom_de_la_commune": "FAULQUEMONT", + "code_postal": "57380", + "coordonnees_gps": [ + 49.0355163236, + 6.59404999138 + ], + "libelle_d_acheminement": "FAULQUEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59404999138, + 49.0355163236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef1612e332ac7a4d0c57f158dd6675d30070003d", + "fields": { + "code_commune_insee": "59036", + "nom_de_la_commune": "AVESNES SUR HELPE", + "code_postal": "59440", + "coordonnees_gps": [ + 50.1242937124, + 3.92754898552 + ], + "libelle_d_acheminement": "AVESNES SUR HELPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92754898552, + 50.1242937124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "176cd7a542b24017582d89365efc49b3b0155932", + "fields": { + "ligne_5": "EBANGE", + "code_commune_insee": "57221", + "libelle_d_acheminement": "FLORANGE", + "code_postal": "57190", + "nom_de_la_commune": "FLORANGE", + "coordonnees_gps": [ + 49.3281938982, + 6.12282167584 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12282167584, + 49.3281938982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b89b65fd17cb638034f58f85cb520108dbf35280", + "fields": { + "code_commune_insee": "59037", + "nom_de_la_commune": "AVESNES LES AUBERT", + "code_postal": "59129", + "coordonnees_gps": [ + 50.1911782213, + 3.37676857334 + ], + "libelle_d_acheminement": "AVESNES LES AUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37676857334, + 50.1911782213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ea31fd89491968b9948412217c4e8af4762b25a", + "fields": { + "code_commune_insee": "57226", + "nom_de_la_commune": "FONTOY", + "code_postal": "57650", + "coordonnees_gps": [ + 49.3577138097, + 5.99679227022 + ], + "libelle_d_acheminement": "FONTOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99679227022, + 49.3577138097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d640693b4a3f5e6e04d749594f7f07ce710cd37", + "fields": { + "code_commune_insee": "59057", + "nom_de_la_commune": "BEAUDIGNIES", + "code_postal": "59530", + "coordonnees_gps": [ + 50.2296082323, + 3.58590888572 + ], + "libelle_d_acheminement": "BEAUDIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58590888572, + 50.2296082323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a39d2b9aab1c745581704ce69393d77c10bb5d5f", + "fields": { + "ligne_5": "KREUTZBERG", + "code_commune_insee": "57227", + "libelle_d_acheminement": "FORBACH", + "code_postal": "57600", + "nom_de_la_commune": "FORBACH", + "coordonnees_gps": [ + 49.1912650369, + 6.89275798526 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89275798526, + 49.1912650369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce438f9e57fc6ea14fd0f6d09fbaffb00d9c3bb9", + "fields": { + "code_commune_insee": "59061", + "nom_de_la_commune": "BEAUREPAIRE SUR SAMBRE", + "code_postal": "59550", + "coordonnees_gps": [ + 50.0605483796, + 3.79605984174 + ], + "libelle_d_acheminement": "BEAUREPAIRE SUR SAMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79605984174, + 50.0605483796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4688711dd0afebcbc6abdd8a060cefe07789226f", + "fields": { + "code_commune_insee": "57237", + "nom_de_la_commune": "FREMESTROFF", + "code_postal": "57660", + "coordonnees_gps": [ + 49.0147605301, + 6.7854856374 + ], + "libelle_d_acheminement": "FREMESTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7854856374, + 49.0147605301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7435a7a8986450cdce65aaa588552400617ec750", + "fields": { + "code_commune_insee": "59066", + "nom_de_la_commune": "BERELLES", + "code_postal": "59740", + "coordonnees_gps": [ + 50.2136798325, + 4.10541703727 + ], + "libelle_d_acheminement": "BERELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10541703727, + 50.2136798325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84d868fca513f88de92cf072471d2d0751376444", + "fields": { + "code_commune_insee": "57238", + "nom_de_la_commune": "FRESNES EN SAULNOIS", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8388411221, + 6.4401167651 + ], + "libelle_d_acheminement": "FRESNES EN SAULNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4401167651, + 48.8388411221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba588c206e18c6a53721463487deeccc893e3a4", + "fields": { + "code_commune_insee": "59067", + "nom_de_la_commune": "BERGUES", + "code_postal": "59380", + "coordonnees_gps": [ + 50.9691920635, + 2.43268784817 + ], + "libelle_d_acheminement": "BERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43268784817, + 50.9691920635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82ad57fc3e80175619a44a65677f95e617dc5530", + "fields": { + "code_commune_insee": "57244", + "nom_de_la_commune": "GARREBOURG", + "code_postal": "57820", + "coordonnees_gps": [ + 48.7083515564, + 7.23712179882 + ], + "libelle_d_acheminement": "GARREBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23712179882, + 48.7083515564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "420b99eb9ae0ba7483d3c4336f3fbfca9907b79e", + "fields": { + "code_commune_insee": "59069", + "nom_de_la_commune": "BERMERAIN", + "code_postal": "59213", + "coordonnees_gps": [ + 50.2575420594, + 3.5398919082 + ], + "libelle_d_acheminement": "BERMERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5398919082, + 50.2575420594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "879ebdba3209d20c4d6375999ce60b56a0f41dd7", + "fields": { + "code_commune_insee": "57246", + "nom_de_la_commune": "GELUCOURT", + "code_postal": "57260", + "coordonnees_gps": [ + 48.7612241027, + 6.73734826884 + ], + "libelle_d_acheminement": "GELUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73734826884, + 48.7612241027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af581ed26660e0749fe304e59a258dcd4c5083a6", + "fields": { + "code_commune_insee": "59076", + "nom_de_la_commune": "BETTIGNIES", + "code_postal": "59600", + "coordonnees_gps": [ + 50.3323628525, + 3.9686190609 + ], + "libelle_d_acheminement": "BETTIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9686190609, + 50.3323628525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba1ac39d9b61600432ff673e9a4353adc6624db6", + "fields": { + "code_commune_insee": "57247", + "nom_de_la_commune": "GERBECOURT", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8513266231, + 6.51598424383 + ], + "libelle_d_acheminement": "GERBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51598424383, + 48.8513266231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "735406e8f6aac2fc675a16e06e8fb9f4b5872089", + "fields": { + "code_commune_insee": "59080", + "nom_de_la_commune": "BEUVRY LA FORET", + "code_postal": "59310", + "coordonnees_gps": [ + 50.4499686964, + 3.28271096457 + ], + "libelle_d_acheminement": "BEUVRY LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28271096457, + 50.4499686964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a8def8b5d413ef5ecaee2879b31ba4d7b4bbe85", + "fields": { + "code_commune_insee": "57249", + "nom_de_la_commune": "GLATIGNY", + "code_postal": "57530", + "coordonnees_gps": [ + 49.1419722137, + 6.34765231325 + ], + "libelle_d_acheminement": "GLATIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34765231325, + 49.1419722137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0a4f6fba6964e8a2c7ce5998ac600687951072b", + "fields": { + "code_commune_insee": "59084", + "nom_de_la_commune": "BLARINGHEM", + "code_postal": "59173", + "coordonnees_gps": [ + 50.6905234393, + 2.409606447 + ], + "libelle_d_acheminement": "BLARINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.409606447, + 50.6905234393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5f089b1039f3158c1fdca05b610c426ecdbf929", + "fields": { + "ligne_5": "GUIRLANGE", + "code_commune_insee": "57252", + "libelle_d_acheminement": "GOMELANGE", + "code_postal": "57220", + "nom_de_la_commune": "GOMELANGE", + "coordonnees_gps": [ + 49.2385076599, + 6.46140268813 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46140268813, + 49.2385076599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46ecdc388f94565a760bc15ae790c8f433444066", + "fields": { + "code_commune_insee": "59086", + "nom_de_la_commune": "BOESCHEPE", + "code_postal": "59299", + "coordonnees_gps": [ + 50.7989980219, + 2.69937041713 + ], + "libelle_d_acheminement": "BOESCHEPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69937041713, + 50.7989980219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6921cff892f605f1c1abf10e5ff5d9a121dbbc27", + "fields": { + "code_commune_insee": "57253", + "nom_de_la_commune": "GONDREXANGE", + "code_postal": "57815", + "coordonnees_gps": [ + 48.6916242352, + 6.90768275556 + ], + "libelle_d_acheminement": "GONDREXANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90768275556, + 48.6916242352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49dc5a5063b754c42c7e61a689ccfa671d347076", + "fields": { + "code_commune_insee": "59087", + "nom_de_la_commune": "BOESEGHEM", + "code_postal": "59189", + "coordonnees_gps": [ + 50.6691135946, + 2.44242706344 + ], + "libelle_d_acheminement": "BOESEGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44242706344, + 50.6691135946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8487545817fdb055afe8a563bb547bc2c9062021", + "fields": { + "code_commune_insee": "57254", + "nom_de_la_commune": "GORZE", + "code_postal": "57680", + "coordonnees_gps": [ + 49.058023805, + 5.99129893078 + ], + "libelle_d_acheminement": "GORZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99129893078, + 49.058023805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88a3bfc73d788a002f9c3da791fb41a89bd311c8", + "fields": { + "code_commune_insee": "59090", + "nom_de_la_commune": "BONDUES", + "code_postal": "59910", + "coordonnees_gps": [ + 50.7096656233, + 3.09529083038 + ], + "libelle_d_acheminement": "BONDUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09529083038, + 50.7096656233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53a2391878757bd4b8a1e2592920568b5d1199a3", + "fields": { + "code_commune_insee": "57257", + "nom_de_la_commune": "GREMECEY", + "code_postal": "57170", + "coordonnees_gps": [ + 48.810894347, + 6.41142526055 + ], + "libelle_d_acheminement": "GREMECEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41142526055, + 48.810894347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7356c5f1c7c870527974b5ea78d000e208ede6fc", + "fields": { + "code_commune_insee": "59092", + "nom_de_la_commune": "BOUCHAIN", + "code_postal": "59111", + "coordonnees_gps": [ + 50.2808463643, + 3.3121651121 + ], + "libelle_d_acheminement": "BOUCHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3121651121, + 50.2808463643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00e7319b43402a8bc0bebb6c75a20a1089f08158", + "fields": { + "code_commune_insee": "57263", + "nom_de_la_commune": "GRUNDVILLER", + "code_postal": "57510", + "coordonnees_gps": [ + 49.0488850629, + 6.98394214677 + ], + "libelle_d_acheminement": "GRUNDVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98394214677, + 49.0488850629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7e651211f50ae0627d066c574c0c69119f7380c", + "fields": { + "code_commune_insee": "59097", + "nom_de_la_commune": "BOURSIES", + "code_postal": "59400", + "coordonnees_gps": [ + 50.1408057238, + 3.04441612391 + ], + "libelle_d_acheminement": "BOURSIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04441612391, + 50.1408057238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39a1349c5141bb44653d077d2c84ca789e008c62", + "fields": { + "code_commune_insee": "57268", + "nom_de_la_commune": "GUEBLING", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8674293239, + 6.73710242043 + ], + "libelle_d_acheminement": "GUEBLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73710242043, + 48.8674293239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a883427ca8b2cb6e9c53473fb73a20a5b05e298", + "fields": { + "code_commune_insee": "59112", + "nom_de_la_commune": "BRUAY SUR L ESCAUT", + "code_postal": "59860", + "coordonnees_gps": [ + 50.3973093421, + 3.53909152804 + ], + "libelle_d_acheminement": "BRUAY SUR L ESCAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53909152804, + 50.3973093421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2ae44d845400beb4ef53b3d8fb606e5be8a39f9", + "fields": { + "code_commune_insee": "57276", + "nom_de_la_commune": "GUINGLANGE", + "code_postal": "57690", + "coordonnees_gps": [ + 49.070677409, + 6.51711375375 + ], + "libelle_d_acheminement": "GUINGLANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51711375375, + 49.070677409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69051faf2d34db5ca4e09dde183c75ce42e39e71", + "fields": { + "code_commune_insee": "59122", + "nom_de_la_commune": "CAMBRAI", + "code_postal": "59400", + "coordonnees_gps": [ + 50.1702775977, + 3.24221021072 + ], + "libelle_d_acheminement": "CAMBRAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24221021072, + 50.1702775977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "731ef97c21a7f569623c97a685ea6607e47a9b14", + "fields": { + "code_commune_insee": "57282", + "nom_de_la_commune": "HAGEN", + "code_postal": "57570", + "coordonnees_gps": [ + 49.4968460062, + 6.16553316474 + ], + "libelle_d_acheminement": "HAGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16553316474, + 49.4968460062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76ff960e564b7f2a1479be8fa772b67b2ae96d81", + "fields": { + "code_commune_insee": "59123", + "nom_de_la_commune": "CAMPHIN EN CAREMBAULT", + "code_postal": "59133", + "coordonnees_gps": [ + 50.5106436194, + 2.99165906644 + ], + "libelle_d_acheminement": "CAMPHIN EN CAREMBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99165906644, + 50.5106436194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c33024b5ea6ea342b6479fcb57c8a20892e1ba5", + "fields": { + "code_commune_insee": "57298", + "nom_de_la_commune": "HARREBERG", + "code_postal": "57870", + "coordonnees_gps": [ + 48.6629610218, + 7.17414816773 + ], + "libelle_d_acheminement": "HARREBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17414816773, + 48.6629610218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdaf4468de58037fcfa2e0e4071bc355d6ccda20", + "fields": { + "code_commune_insee": "59125", + "nom_de_la_commune": "CANTAING SUR ESCAUT", + "code_postal": "59267", + "coordonnees_gps": [ + 50.1451657481, + 3.15708777258 + ], + "libelle_d_acheminement": "CANTAING SUR ESCAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15708777258, + 50.1451657481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38928b13794dd748a771e37c2f8a219b293bfcb8", + "fields": { + "ligne_5": "MARSPICH", + "code_commune_insee": "57306", + "libelle_d_acheminement": "HAYANGE", + "code_postal": "57700", + "nom_de_la_commune": "HAYANGE", + "coordonnees_gps": [ + 49.330858891, + 6.06649233507 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06649233507, + 49.330858891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62b2b02dcb205bdfb54c5faba380f5ebb926b2de", + "fields": { + "code_commune_insee": "59127", + "nom_de_la_commune": "CAPELLE", + "code_postal": "59213", + "coordonnees_gps": [ + 50.2401009671, + 3.56039393735 + ], + "libelle_d_acheminement": "CAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56039393735, + 50.2401009671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33a242b7a978069b395a86b831b1c6ddb8e8ca6a", + "fields": { + "code_commune_insee": "57315", + "nom_de_la_commune": "HENRIDORFF", + "code_postal": "57820", + "coordonnees_gps": [ + 48.7328010132, + 7.21130656264 + ], + "libelle_d_acheminement": "HENRIDORFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21130656264, + 48.7328010132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d80d96de255be15e395e149c517dd577063e02fe", + "fields": { + "code_commune_insee": "59133", + "nom_de_la_commune": "CARNIN", + "code_postal": "59112", + "coordonnees_gps": [ + 50.5196965937, + 2.96024467267 + ], + "libelle_d_acheminement": "CARNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96024467267, + 50.5196965937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c21fd2b19fe314bb119a18125c091f2c197bfc5", + "fields": { + "code_commune_insee": "57320", + "nom_de_la_commune": "HERTZING", + "code_postal": "57830", + "coordonnees_gps": [ + 48.6915281748, + 6.95434783679 + ], + "libelle_d_acheminement": "HERTZING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95434783679, + 48.6915281748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2e494f714ea6db0786172ce87149028e4bbbafd", + "fields": { + "code_commune_insee": "59135", + "nom_de_la_commune": "CASSEL", + "code_postal": "59670", + "coordonnees_gps": [ + 50.795681277, + 2.49423243668 + ], + "libelle_d_acheminement": "CASSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49423243668, + 50.795681277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "710d583197c4ed10bdf3f7e05cf91d62b005a26e", + "fields": { + "code_commune_insee": "57322", + "nom_de_la_commune": "HESTROFF", + "code_postal": "57320", + "coordonnees_gps": [ + 49.2636097823, + 6.42936599156 + ], + "libelle_d_acheminement": "HESTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42936599156, + 49.2636097823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b7e56da89edf258c92d7434590bdbdcc5c35876", + "fields": { + "code_commune_insee": "59137", + "nom_de_la_commune": "CATILLON SUR SAMBRE", + "code_postal": "59360", + "coordonnees_gps": [ + 50.0704090435, + 3.64485751091 + ], + "libelle_d_acheminement": "CATILLON SUR SAMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64485751091, + 50.0704090435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d642c167b8ef32955bb2b017d13749f37b22fc75", + "fields": { + "code_commune_insee": "57331", + "nom_de_la_commune": "HOMBOURG BUDANGE", + "code_postal": "57920", + "coordonnees_gps": [ + 49.2875134564, + 6.35579703436 + ], + "libelle_d_acheminement": "HOMBOURG BUDANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35579703436, + 49.2875134564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bc59ee82599da9bf2d6b0e3452a1ae07d0d80e2", + "fields": { + "ligne_5": "AUDENCOURT", + "code_commune_insee": "59139", + "libelle_d_acheminement": "CAUDRY", + "code_postal": "59540", + "nom_de_la_commune": "CAUDRY", + "coordonnees_gps": [ + 50.1187185043, + 3.4192394153 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4192394153, + 50.1187185043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffadc1b8fb5fa0308dffd13bc361652188facd67", + "fields": { + "code_commune_insee": "57337", + "nom_de_la_commune": "HOSTE", + "code_postal": "57510", + "coordonnees_gps": [ + 49.0579657478, + 6.86138197129 + ], + "libelle_d_acheminement": "HOSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86138197129, + 49.0579657478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79e1d284f9fef6cc6db45d17ea4443f1aa9e454f", + "fields": { + "code_commune_insee": "59142", + "nom_de_la_commune": "CERFONTAINE", + "code_postal": "59680", + "coordonnees_gps": [ + 50.2591419146, + 4.02505740703 + ], + "libelle_d_acheminement": "CERFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02505740703, + 50.2591419146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edb4c5a4849a8e301d1df374bc5f63b38f0d8536", + "fields": { + "code_commune_insee": "57345", + "nom_de_la_commune": "INGLANGE", + "code_postal": "57970", + "coordonnees_gps": [ + 49.3455744089, + 6.30036423785 + ], + "libelle_d_acheminement": "INGLANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30036423785, + 49.3455744089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff727bf600e8c56af46d7c0064b0077ab07bf70e", + "fields": { + "code_commune_insee": "59146", + "nom_de_la_commune": "CHERENG", + "code_postal": "59152", + "coordonnees_gps": [ + 50.6108890768, + 3.20972154636 + ], + "libelle_d_acheminement": "CHERENG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20972154636, + 50.6108890768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1965820550c3e8ac063580044f4a6525393a5ee6", + "fields": { + "code_commune_insee": "57349", + "nom_de_la_commune": "JALLAUCOURT", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8346271223, + 6.39461777056 + ], + "libelle_d_acheminement": "JALLAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39461777056, + 48.8346271223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df17cc88f27a0e53e1f483a071b55d2a0a7e2f43", + "fields": { + "code_commune_insee": "59150", + "nom_de_la_commune": "COBRIEUX", + "code_postal": "59830", + "coordonnees_gps": [ + 50.5391896198, + 3.24034953595 + ], + "libelle_d_acheminement": "COBRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24034953595, + 50.5391896198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63c3036151de25704106a5a03e808450ff02499f", + "fields": { + "code_commune_insee": "57354", + "nom_de_la_commune": "JUVILLE", + "code_postal": "57590", + "coordonnees_gps": [ + 48.9306249062, + 6.3588020815 + ], + "libelle_d_acheminement": "JUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3588020815, + 48.9306249062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47064254e2751fe583b35f104b39ba1ef00e138b", + "fields": { + "code_commune_insee": "59156", + "nom_de_la_commune": "COURCHELETTES", + "code_postal": "59552", + "coordonnees_gps": [ + 50.3421628278, + 3.05975008268 + ], + "libelle_d_acheminement": "COURCHELETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05975008268, + 50.3421628278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "697a5a22775a1772f0165f5e3fdec2d137eb4cfd", + "fields": { + "code_commune_insee": "57358", + "nom_de_la_commune": "KEDANGE SUR CANNER", + "code_postal": "57920", + "coordonnees_gps": [ + 49.3109453426, + 6.343428905 + ], + "libelle_d_acheminement": "KEDANGE SUR CANNER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.343428905, + 49.3109453426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88a28e82b705379922e12d87276c1b4925a27003", + "fields": { + "code_commune_insee": "59160", + "nom_de_la_commune": "CRESPIN", + "code_postal": "59154", + "coordonnees_gps": [ + 50.4217331557, + 3.65237979993 + ], + "libelle_d_acheminement": "CRESPIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65237979993, + 50.4217331557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98cb8bc1903d6d6241674cc2dd4ebcec883256e8", + "fields": { + "code_commune_insee": "57362", + "nom_de_la_commune": "KERPRICH AUX BOIS", + "code_postal": "57830", + "coordonnees_gps": [ + 48.7366040636, + 6.96003815781 + ], + "libelle_d_acheminement": "KERPRICH AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96003815781, + 48.7366040636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "073823d7450fc6b691e159588a8613290749b663", + "fields": { + "code_commune_insee": "59163", + "nom_de_la_commune": "CROIX", + "code_postal": "59170", + "coordonnees_gps": [ + 50.6740689994, + 3.15464041723 + ], + "libelle_d_acheminement": "CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15464041723, + 50.6740689994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90288f7e2f994e4f015cfe9bb009cd4d2f17ce7a", + "fields": { + "code_commune_insee": "57370", + "nom_de_la_commune": "KOENIGSMACKER", + "code_postal": "57970", + "coordonnees_gps": [ + 49.3882172495, + 6.28617286599 + ], + "libelle_d_acheminement": "KOENIGSMACKER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28617286599, + 49.3882172495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06243b030ea007d20e90a7dc198789e3b0ebafb6", + "fields": { + "code_commune_insee": "59169", + "nom_de_la_commune": "DAMOUSIES", + "code_postal": "59680", + "coordonnees_gps": [ + 50.2195042293, + 4.00850987305 + ], + "libelle_d_acheminement": "DAMOUSIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00850987305, + 50.2195042293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5937799188b51a0a51d4d82ccb405053dc147cdb", + "fields": { + "code_commune_insee": "57376", + "nom_de_la_commune": "LAMBACH", + "code_postal": "57410", + "coordonnees_gps": [ + 49.0299766365, + 7.36427689294 + ], + "libelle_d_acheminement": "LAMBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36427689294, + 49.0299766365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3abca136c6b39a21ae9c3166fd1923f20d933999", + "fields": { + "code_commune_insee": "59179", + "nom_de_la_commune": "DOUCHY LES MINES", + "code_postal": "59282", + "coordonnees_gps": [ + 50.2994352925, + 3.38947295524 + ], + "libelle_d_acheminement": "DOUCHY LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38947295524, + 50.2994352925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "060da461f41268afec2c45cb3d12190cf3f62045", + "fields": { + "code_commune_insee": "57383", + "nom_de_la_commune": "LANGUIMBERG", + "code_postal": "57810", + "coordonnees_gps": [ + 48.7303158689, + 6.87777720328 + ], + "libelle_d_acheminement": "LANGUIMBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87777720328, + 48.7303158689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "756d054bb808e150c15a13a5deee3025acf83dec", + "fields": { + "code_commune_insee": "59180", + "nom_de_la_commune": "LE DOULIEU", + "code_postal": "59940", + "coordonnees_gps": [ + 50.6800093864, + 2.69977444114 + ], + "libelle_d_acheminement": "LE DOULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69977444114, + 50.6800093864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a1d88b1c9c40254cdfc805899ad3175ef856fea", + "fields": { + "code_commune_insee": "57399", + "nom_de_la_commune": "LEZEY", + "code_postal": "57630", + "coordonnees_gps": [ + 48.7576127729, + 6.62184289204 + ], + "libelle_d_acheminement": "LEZEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62184289204, + 48.7576127729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0bf6219867d2d1414fbd86a0362342f29550529", + "fields": { + "code_commune_insee": "59183", + "nom_de_la_commune": "DUNKERQUE", + "code_postal": "59640", + "coordonnees_gps": [ + 51.0307229078, + 2.33752414095 + ], + "libelle_d_acheminement": "DUNKERQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33752414095, + 51.0307229078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98a0a96e2be7fda12b5d3ce95157c62ea63c66e8", + "fields": { + "code_commune_insee": "57422", + "nom_de_la_commune": "LOUVIGNY", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9608362772, + 6.18259042823 + ], + "libelle_d_acheminement": "LOUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18259042823, + 48.9608362772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c5a254fddfa3e0f4acf30ffeb1331f9c09841ff", + "fields": { + "code_commune_insee": "59187", + "nom_de_la_commune": "ECLAIBES", + "code_postal": "59330", + "coordonnees_gps": [ + 50.1999798551, + 3.93837593672 + ], + "libelle_d_acheminement": "ECLAIBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93837593672, + 50.1999798551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1e89413c72ddf66bb54addfdad5d73bf22cc0b2", + "fields": { + "code_commune_insee": "57423", + "nom_de_la_commune": "LUBECOURT", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8436629279, + 6.51001272581 + ], + "libelle_d_acheminement": "LUBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51001272581, + 48.8436629279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c927625bc0c0b4e1424ca6efcd5f38619e7d12b", + "fields": { + "code_commune_insee": "59192", + "nom_de_la_commune": "EMERCHICOURT", + "code_postal": "59580", + "coordonnees_gps": [ + 50.3117441641, + 3.25561088678 + ], + "libelle_d_acheminement": "EMERCHICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25561088678, + 50.3117441641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8e550224035a0f92b80ea45073a533737ff7996", + "fields": { + "code_commune_insee": "57431", + "nom_de_la_commune": "MAIZEROY", + "code_postal": "57530", + "coordonnees_gps": [ + 49.0861603474, + 6.38860795137 + ], + "libelle_d_acheminement": "MAIZEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38860795137, + 49.0861603474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "589c30cf393b0e49c986f97c97cace2757219270", + "fields": { + "code_commune_insee": "59211", + "nom_de_la_commune": "ESQUERCHIN", + "code_postal": "59553", + "coordonnees_gps": [ + 50.3859330394, + 3.00649318201 + ], + "libelle_d_acheminement": "ESQUERCHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00649318201, + 50.3859330394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eff5f6db90bd51717177668d16b3f21a5b3a3172", + "fields": { + "code_commune_insee": "57453", + "nom_de_la_commune": "MAXSTADT", + "code_postal": "57660", + "coordonnees_gps": [ + 49.0463550894, + 6.80405802458 + ], + "libelle_d_acheminement": "MAXSTADT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80405802458, + 49.0463550894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dd00bb6c2dd6b45b5dd7e6c4a5d5e728c05a946", + "fields": { + "code_commune_insee": "59224", + "nom_de_la_commune": "FECHAIN", + "code_postal": "59247", + "coordonnees_gps": [ + 50.268615561, + 3.212900112 + ], + "libelle_d_acheminement": "FECHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.212900112, + 50.268615561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8749882790328830935c1d4fd5d6d1a7c40fb03c", + "fields": { + "code_commune_insee": "57456", + "nom_de_la_commune": "MEISENTHAL", + "code_postal": "57960", + "coordonnees_gps": [ + 48.9707983496, + 7.34611209492 + ], + "libelle_d_acheminement": "MEISENTHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34611209492, + 48.9707983496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7369f52a6185534770149e31d6edf060de5de42", + "fields": { + "code_commune_insee": "59232", + "nom_de_la_commune": "LA FLAMENGRIE", + "code_postal": "59570", + "coordonnees_gps": [ + 50.3066443243, + 3.72273889632 + ], + "libelle_d_acheminement": "LA FLAMENGRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72273889632, + 50.3066443243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3752f37a8bf63fc6ebd24257fb3043fcd7f8132a", + "fields": { + "code_commune_insee": "57461", + "nom_de_la_commune": "METAIRIES ST QUIRIN", + "code_postal": "57560", + "coordonnees_gps": [ + 48.6404358674, + 7.03770343075 + ], + "libelle_d_acheminement": "METAIRIES ST QUIRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03770343075, + 48.6404358674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e0052816d6129d13e339e3242248f6c1a9880cc", + "fields": { + "code_commune_insee": "59233", + "nom_de_la_commune": "FLAUMONT WAUDRECHIES", + "code_postal": "59440", + "coordonnees_gps": [ + 50.1311318318, + 3.96984931969 + ], + "libelle_d_acheminement": "FLAUMONT WAUDRECHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96984931969, + 50.1311318318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4c6d0ed798778c313e8dfbf7964a3b9e24d450b", + "fields": { + "code_commune_insee": "57466", + "nom_de_la_commune": "METZING", + "code_postal": "57980", + "coordonnees_gps": [ + 49.0993204165, + 6.96137313836 + ], + "libelle_d_acheminement": "METZING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96137313836, + 49.0993204165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37a4a89f69a1b651f8bd2f6c98b4d4a73d4f8f5e", + "fields": { + "code_commune_insee": "59236", + "nom_de_la_commune": "FLESQUIERES", + "code_postal": "59267", + "coordonnees_gps": [ + 50.1238325838, + 3.11938780816 + ], + "libelle_d_acheminement": "FLESQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11938780816, + 50.1238325838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3c3a92939b53dfa6c3ce13534b6cf9778abc06b", + "fields": { + "code_commune_insee": "57474", + "nom_de_la_commune": "MONDELANGE", + "code_postal": "57300", + "coordonnees_gps": [ + 49.2630401785, + 6.17244194206 + ], + "libelle_d_acheminement": "MONDELANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17244194206, + 49.2630401785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b98132a8bb91d705e47bf15aa412f77f997e0422", + "fields": { + "code_commune_insee": "59237", + "nom_de_la_commune": "FLETRE", + "code_postal": "59270", + "coordonnees_gps": [ + 50.758011537, + 2.64096480956 + ], + "libelle_d_acheminement": "FLETRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64096480956, + 50.758011537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1780f7b3d3e56bce4fd2aa5e744a8f723cec9b3f", + "fields": { + "code_commune_insee": "57478", + "nom_de_la_commune": "MONTDIDIER", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9328455067, + 6.81546576999 + ], + "libelle_d_acheminement": "MONTDIDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81546576999, + 48.9328455067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3195ea06c048aa491c008f53dd61b96968b8c4fa", + "fields": { + "code_commune_insee": "59240", + "nom_de_la_commune": "FLOURSIES", + "code_postal": "59440", + "coordonnees_gps": [ + 50.1863221041, + 3.97166819813 + ], + "libelle_d_acheminement": "FLOURSIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97166819813, + 50.1863221041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bd34b32842828f13bbeb01c842c06140cbfdcf0", + "fields": { + "ligne_5": "MONTOY FLANVILLE", + "code_commune_insee": "57482", + "libelle_d_acheminement": "OGY MONTOY FLANVILLE", + "code_postal": "57645", + "nom_de_la_commune": "OGY MONTOY FLANVILLE", + "coordonnees_gps": [ + 49.120451502, + 6.2888126818 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2888126818, + 49.120451502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2b41e2d5d1aa1ba3b2c44c349037cceb9cfc925", + "fields": { + "code_commune_insee": "59253", + "nom_de_la_commune": "FRESNES SUR ESCAUT", + "code_postal": "59970", + "coordonnees_gps": [ + 50.432489562, + 3.57931049864 + ], + "libelle_d_acheminement": "FRESNES SUR ESCAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57931049864, + 50.432489562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97627e48c3cbb1cf2317be9a7b8fcd3efcce5c14", + "fields": { + "code_commune_insee": "57485", + "nom_de_la_commune": "MORVILLE LES VIC", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8153269864, + 6.54720214247 + ], + "libelle_d_acheminement": "MORVILLE LES VIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54720214247, + 48.8153269864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2f9f1cfce2e35d06450b2de7f4b429cef0eef93", + "fields": { + "code_commune_insee": "59262", + "nom_de_la_commune": "GODEWAERSVELDE", + "code_postal": "59270", + "coordonnees_gps": [ + 50.7950511501, + 2.6455520339 + ], + "libelle_d_acheminement": "GODEWAERSVELDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6455520339, + 50.7950511501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9e17081291922322a6d4e64782623695e44cc4f", + "fields": { + "code_commune_insee": "57488", + "nom_de_la_commune": "MOUSSEY", + "code_postal": "57770", + "coordonnees_gps": [ + 48.6714459538, + 6.77870838226 + ], + "libelle_d_acheminement": "MOUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77870838226, + 48.6714459538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "892566a6222530ebb0b5f8a958ac60ffebc2e52d", + "fields": { + "code_commune_insee": "59264", + "nom_de_la_commune": "GOGNIES CHAUSSEE", + "code_postal": "59600", + "coordonnees_gps": [ + 50.3269897728, + 3.94228730102 + ], + "libelle_d_acheminement": "GOGNIES CHAUSSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94228730102, + 50.3269897728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa6d81a64ff619a02d94ac45abb40e4e1aeff754", + "fields": { + "code_commune_insee": "57489", + "nom_de_la_commune": "MOUTERHOUSE", + "code_postal": "57620", + "coordonnees_gps": [ + 48.9903559218, + 7.43839841263 + ], + "libelle_d_acheminement": "MOUTERHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43839841263, + 48.9903559218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d716fa8cc2c268542ca54fb556c03a0ada688912", + "fields": { + "code_commune_insee": "59266", + "nom_de_la_commune": "GONDECOURT", + "code_postal": "59147", + "coordonnees_gps": [ + 50.5478874512, + 2.98009724993 + ], + "libelle_d_acheminement": "GONDECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98009724993, + 50.5478874512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "038d48f04657badf4fc80b711573ff333c48375e", + "fields": { + "code_commune_insee": "57499", + "nom_de_la_commune": "NEUFGRANGE", + "code_postal": "57910", + "coordonnees_gps": [ + 49.0746513432, + 7.06686266439 + ], + "libelle_d_acheminement": "NEUFGRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06686266439, + 49.0746513432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86ee410f1249ab14122e9d742c848af06d051de1", + "fields": { + "code_commune_insee": "59275", + "nom_de_la_commune": "GRUSON", + "code_postal": "59152", + "coordonnees_gps": [ + 50.5924125411, + 3.21559274036 + ], + "libelle_d_acheminement": "GRUSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21559274036, + 50.5924125411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c041d8eb37c841f251d18497e2be603acff57c2c", + "fields": { + "code_commune_insee": "57500", + "nom_de_la_commune": "NEUFMOULINS", + "code_postal": "57830", + "coordonnees_gps": [ + 48.6801953438, + 6.97253040466 + ], + "libelle_d_acheminement": "NEUFMOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97253040466, + 48.6801953438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e459809b407b51e296ce3f287f703e039d22ea24", + "fields": { + "code_commune_insee": "59278", + "nom_de_la_commune": "HALLENNES LEZ HAUBOURDIN", + "code_postal": "59320", + "coordonnees_gps": [ + 50.6120409794, + 2.95454404454 + ], + "libelle_d_acheminement": "HALLENNES LEZ HAUBOURDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95454404454, + 50.6120409794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1eca8a74705a3946ff2891b2a35231b0eec2d49", + "fields": { + "code_commune_insee": "57509", + "nom_de_la_commune": "NITTING", + "code_postal": "57790", + "coordonnees_gps": [ + 48.6617122731, + 7.0490425095 + ], + "libelle_d_acheminement": "NITTING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0490425095, + 48.6617122731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "785873a942c720e0dc60be9c039ab674f67381e4", + "fields": { + "code_commune_insee": "59284", + "nom_de_la_commune": "HASNON", + "code_postal": "59178", + "coordonnees_gps": [ + 50.4127809249, + 3.38752842826 + ], + "libelle_d_acheminement": "HASNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38752842826, + 50.4127809249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "295fdd6b769df3f990b10863d4facd308ba44afe", + "fields": { + "code_commune_insee": "57511", + "nom_de_la_commune": "NORROY LE VENEUR", + "code_postal": "57140", + "coordonnees_gps": [ + 49.179562869, + 6.11099249211 + ], + "libelle_d_acheminement": "NORROY LE VENEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11099249211, + 49.179562869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f678e76aabfca7119836b4096c3cc70524e374ef", + "fields": { + "code_commune_insee": "59290", + "nom_de_la_commune": "HAUT LIEU", + "code_postal": "59440", + "coordonnees_gps": [ + 50.1031693794, + 3.90753338648 + ], + "libelle_d_acheminement": "HAUT LIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90753338648, + 50.1031693794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73749d17e3c075e62f59eb19fa58ad026797a3da", + "fields": { + "code_commune_insee": "57514", + "nom_de_la_commune": "NOUSSEVILLER ST NABOR", + "code_postal": "57990", + "coordonnees_gps": [ + 49.1292618087, + 6.97126269237 + ], + "libelle_d_acheminement": "NOUSSEVILLER ST NABOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97126269237, + 49.1292618087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6efa9c4d2d59f22e487a5777ba0e89ac7733d5ae", + "fields": { + "code_commune_insee": "59292", + "nom_de_la_commune": "HAVELUY", + "code_postal": "59255", + "coordonnees_gps": [ + 50.3537384586, + 3.40310314362 + ], + "libelle_d_acheminement": "HAVELUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40310314362, + 50.3537384586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b3b4701f52acd0078da9eeb8994cc8f3a1d4db3", + "fields": { + "code_commune_insee": "57517", + "nom_de_la_commune": "OBERGAILBACH", + "code_postal": "57720", + "coordonnees_gps": [ + 49.1140388578, + 7.22339792872 + ], + "libelle_d_acheminement": "OBERGAILBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22339792872, + 49.1140388578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b0325e1864af1699a700b104d9541bfef008f9a", + "fields": { + "code_commune_insee": "59294", + "nom_de_la_commune": "HAYNECOURT", + "code_postal": "59268", + "coordonnees_gps": [ + 50.2094536408, + 3.15541640096 + ], + "libelle_d_acheminement": "HAYNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15541640096, + 50.2094536408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bac955b48069723ba5bd16d318495266de2511c", + "fields": { + "code_commune_insee": "57527", + "nom_de_la_commune": "ORNY", + "code_postal": "57420", + "coordonnees_gps": [ + 49.0303467553, + 6.24889661293 + ], + "libelle_d_acheminement": "ORNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24889661293, + 49.0303467553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41ef0fb70564d9b434c409029cb5b7f66b643004", + "fields": { + "code_commune_insee": "59300", + "nom_de_la_commune": "HEM LENGLET", + "code_postal": "59247", + "coordonnees_gps": [ + 50.2528760846, + 3.22719072906 + ], + "libelle_d_acheminement": "HEM LENGLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22719072906, + 50.2528760846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc76eeb726cd768eacb07b5548e79f71a659ebc4", + "fields": { + "code_commune_insee": "57536", + "nom_de_la_commune": "PETIT TENQUIN", + "code_postal": "57660", + "coordonnees_gps": [ + 48.9884543081, + 6.86904472208 + ], + "libelle_d_acheminement": "PETIT TENQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86904472208, + 48.9884543081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d252a72b2c545284a0bcf908b8927a11d74810a1", + "fields": { + "code_commune_insee": "59304", + "nom_de_la_commune": "HERRIN", + "code_postal": "59147", + "coordonnees_gps": [ + 50.5495900938, + 2.96246977042 + ], + "libelle_d_acheminement": "HERRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96246977042, + 50.5495900938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb4ec8af3810c73dffb9fcba7dcddf43e5c7302d", + "fields": { + "code_commune_insee": "57573", + "nom_de_la_commune": "RENING", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9496511765, + 6.8430392125 + ], + "libelle_d_acheminement": "RENING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8430392125, + 48.9496511765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1af6e36595117c203465c67d0ac3bb18a7aa1190", + "fields": { + "code_commune_insee": "59309", + "nom_de_la_commune": "HONDSCHOOTE", + "code_postal": "59122", + "coordonnees_gps": [ + 50.971669311, + 2.58828514944 + ], + "libelle_d_acheminement": "HONDSCHOOTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58828514944, + 50.971669311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74981d70605df6eedbad4e9c4dee362382db52b0", + "fields": { + "code_commune_insee": "57584", + "nom_de_la_commune": "RIMLING", + "code_postal": "57720", + "coordonnees_gps": [ + 49.0931477366, + 7.25838170063 + ], + "libelle_d_acheminement": "RIMLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25838170063, + 49.0931477366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "621c8b04ece872b0b25cae40c87e046677b79dcb", + "fields": { + "code_commune_insee": "59315", + "nom_de_la_commune": "HOUDAIN LEZ BAVAY", + "code_postal": "59570", + "coordonnees_gps": [ + 50.3294305775, + 3.78664727295 + ], + "libelle_d_acheminement": "HOUDAIN LEZ BAVAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78664727295, + 50.3294305775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3374ea6c3ee055e0f22eb028972d687d6d86505", + "fields": { + "code_commune_insee": "57588", + "nom_de_la_commune": "RODEMACK", + "code_postal": "57570", + "coordonnees_gps": [ + 49.4637445576, + 6.24710550815 + ], + "libelle_d_acheminement": "RODEMACK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24710550815, + 49.4637445576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d454c7c50fc80045f14e471c67d718adc4c27c8", + "fields": { + "code_commune_insee": "59316", + "nom_de_la_commune": "HOUPLIN ANCOISNE", + "code_postal": "59263", + "coordonnees_gps": [ + 50.5699205029, + 2.99498019167 + ], + "libelle_d_acheminement": "HOUPLIN ANCOISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99498019167, + 50.5699205029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53673659a8e0b398c0293813980d3a29613908c9", + "fields": { + "code_commune_insee": "57589", + "nom_de_la_commune": "ROHRBACH LES BITCHE", + "code_postal": "57410", + "coordonnees_gps": [ + 49.0408635757, + 7.27733357043 + ], + "libelle_d_acheminement": "ROHRBACH LES BITCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27733357043, + 49.0408635757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e2a4d21ca7cd8064df5a9785017a82eeaaefbf9", + "fields": { + "code_commune_insee": "59318", + "nom_de_la_commune": "HOUTKERQUE", + "code_postal": "59470", + "coordonnees_gps": [ + 50.8825678923, + 2.58249154938 + ], + "libelle_d_acheminement": "HOUTKERQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58249154938, + 50.8825678923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3eb424237a1b57e41194723ccd75d8326d110bfc", + "fields": { + "code_commune_insee": "57604", + "nom_de_la_commune": "RUSTROFF", + "code_postal": "57480", + "coordonnees_gps": [ + 49.4414794169, + 6.37625718945 + ], + "libelle_d_acheminement": "RUSTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37625718945, + 49.4414794169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16d03f4cea01cde1edeb1d311752b6beed800799", + "fields": { + "code_commune_insee": "59319", + "nom_de_la_commune": "HOYMILLE", + "code_postal": "59492", + "coordonnees_gps": [ + 50.9727799567, + 2.45547219579 + ], + "libelle_d_acheminement": "HOYMILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45547219579, + 50.9727799567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "960dec59c38196750c5d761017b5a5dac67d64fb", + "fields": { + "code_commune_insee": "57615", + "nom_de_la_commune": "ST JEAN ROHRBACH", + "code_postal": "57510", + "coordonnees_gps": [ + 49.026412081, + 6.87942935113 + ], + "libelle_d_acheminement": "ST JEAN ROHRBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87942935113, + 49.026412081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "289a3e6c6914b9a564ff5c4de1ba0d3fcdcfcc7d", + "fields": { + "code_commune_insee": "59320", + "nom_de_la_commune": "ILLIES", + "code_postal": "59480", + "coordonnees_gps": [ + 50.5626769272, + 2.82845132596 + ], + "libelle_d_acheminement": "ILLIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82845132596, + 50.5626769272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff383bcaf5417d46109c36b4c08e170c1df77f7f", + "fields": { + "code_commune_insee": "57623", + "nom_de_la_commune": "ST QUIRIN", + "code_postal": "57560", + "coordonnees_gps": [ + 48.5845453315, + 7.11411356549 + ], + "libelle_d_acheminement": "ST QUIRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11411356549, + 48.5845453315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "529ba3e1562f801aff6be70f48959640e0d5b48b", + "fields": { + "code_commune_insee": "59326", + "nom_de_la_commune": "KILLEM", + "code_postal": "59122", + "coordonnees_gps": [ + 50.9575597067, + 2.55978032528 + ], + "libelle_d_acheminement": "KILLEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55978032528, + 50.9575597067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "569c32b797e9bfe459a243b3fcecb0e677e0d51f", + "fields": { + "code_commune_insee": "57633", + "nom_de_la_commune": "SARREINSMING", + "code_postal": "57905", + "coordonnees_gps": [ + 49.0924332105, + 7.11956483456 + ], + "libelle_d_acheminement": "SARREINSMING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11956483456, + 49.0924332105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6e8d7a8fccf69531bab7101b95010e615f2d71e", + "fields": { + "code_commune_insee": "59328", + "nom_de_la_commune": "LAMBERSART", + "code_postal": "59130", + "coordonnees_gps": [ + 50.6522053005, + 3.02491174276 + ], + "libelle_d_acheminement": "LAMBERSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02491174276, + 50.6522053005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5211e60bc86a0db3e68de623095a6983e7c0f55c", + "fields": { + "code_commune_insee": "57634", + "nom_de_la_commune": "SAULNY", + "code_postal": "57140", + "coordonnees_gps": [ + 49.1602800907, + 6.09502895041 + ], + "libelle_d_acheminement": "SAULNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09502895041, + 49.1602800907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "045fa38a3133624ce9387c45f85072efa3cf5fe8", + "fields": { + "code_commune_insee": "59341", + "nom_de_la_commune": "LESDAIN", + "code_postal": "59258", + "coordonnees_gps": [ + 50.0926261924, + 3.27595747456 + ], + "libelle_d_acheminement": "LESDAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27595747456, + 50.0926261924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e98a7a9ce6d8d77187b2ddaa24190767102c435f", + "fields": { + "code_commune_insee": "57637", + "nom_de_la_commune": "SCHNECKENBUSCH", + "code_postal": "57400", + "coordonnees_gps": [ + 48.6959536942, + 7.08168211214 + ], + "libelle_d_acheminement": "SCHNECKENBUSCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08168211214, + 48.6959536942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e97745e99930503e1aa00784366eb23592c3e036", + "fields": { + "code_commune_insee": "59348", + "nom_de_la_commune": "LIEU ST AMAND", + "code_postal": "59111", + "coordonnees_gps": [ + 50.2722406252, + 3.3493708028 + ], + "libelle_d_acheminement": "LIEU ST AMAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3493708028, + 50.2722406252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69c80f38554456e5e80a7f9398a6951edc80c9c0", + "fields": { + "code_commune_insee": "59352", + "nom_de_la_commune": "LINSELLES", + "code_postal": "59126", + "coordonnees_gps": [ + 50.7361350171, + 3.0744786004 + ], + "libelle_d_acheminement": "LINSELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0744786004, + 50.7361350171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2496249134e23565784c992b0fe919fd63912797", + "fields": { + "code_commune_insee": "59356", + "nom_de_la_commune": "LOMPRET", + "code_postal": "59840", + "coordonnees_gps": [ + 50.6631680443, + 2.99516100327 + ], + "libelle_d_acheminement": "LOMPRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99516100327, + 50.6631680443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5b8a16a671dc983beaa7fc781a3a46b010b7aac", + "fields": { + "code_commune_insee": "59358", + "nom_de_la_commune": "LOOBERGHE", + "code_postal": "59630", + "coordonnees_gps": [ + 50.912741374, + 2.2751678981 + ], + "libelle_d_acheminement": "LOOBERGHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2751678981, + 50.912741374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cf0c24a775ccdbbee25e56ccc8035036856a3b4", + "fields": { + "code_commune_insee": "59369", + "nom_de_la_commune": "MAING", + "code_postal": "59233", + "coordonnees_gps": [ + 50.3036687499, + 3.48802239874 + ], + "libelle_d_acheminement": "MAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48802239874, + 50.3036687499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42a91e3682aa7ea832bbb4a38ddf0ed8de6e240f", + "fields": { + "code_commune_insee": "59384", + "nom_de_la_commune": "MAROILLES", + "code_postal": "59550", + "coordonnees_gps": [ + 50.1319269189, + 3.75814901282 + ], + "libelle_d_acheminement": "MAROILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75814901282, + 50.1319269189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85fdd2c852776e7b06b4c06449c2a086bf2d5e33", + "fields": { + "code_commune_insee": "59388", + "nom_de_la_commune": "MARQUILLIES", + "code_postal": "59274", + "coordonnees_gps": [ + 50.5507925122, + 2.86815833452 + ], + "libelle_d_acheminement": "MARQUILLIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86815833452, + 50.5507925122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86c5c1b0eff247d60ec8b6c00f013d4120be6f28", + "fields": { + "code_commune_insee": "59397", + "nom_de_la_commune": "MERCKEGHEM", + "code_postal": "59470", + "coordonnees_gps": [ + 50.8699396008, + 2.27783454706 + ], + "libelle_d_acheminement": "MERCKEGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27783454706, + 50.8699396008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e67546b262267cc46e9dbd3bd8fe8802850ee64", + "fields": { + "code_commune_insee": "59401", + "nom_de_la_commune": "METEREN", + "code_postal": "59270", + "coordonnees_gps": [ + 50.7479005121, + 2.67634884839 + ], + "libelle_d_acheminement": "METEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67634884839, + 50.7479005121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49ffde0cd4bd2dd97204a6a3e347a7752a50f362", + "fields": { + "code_commune_insee": "59405", + "nom_de_la_commune": "MOEUVRES", + "code_postal": "59400", + "coordonnees_gps": [ + 50.1602158423, + 3.06781891746 + ], + "libelle_d_acheminement": "MOEUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06781891746, + 50.1602158423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93d0076b59ad0d6aa7ad30edba0b53f8766b343a", + "fields": { + "code_commune_insee": "59409", + "nom_de_la_commune": "MONCHECOURT", + "code_postal": "59234", + "coordonnees_gps": [ + 50.3061963745, + 3.21073984637 + ], + "libelle_d_acheminement": "MONCHECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21073984637, + 50.3061963745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18058cb370075d8c83661aedcf9410c3239c2ed1", + "fields": { + "code_commune_insee": "59420", + "nom_de_la_commune": "MOUSTIER EN FAGNE", + "code_postal": "59132", + "coordonnees_gps": [ + 50.0917864543, + 4.19598971428 + ], + "libelle_d_acheminement": "MOUSTIER EN FAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19598971428, + 50.0917864543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8278a79eb0899f08d4683a39a8d72cf13c054bb7", + "fields": { + "code_commune_insee": "59421", + "nom_de_la_commune": "MOUVAUX", + "code_postal": "59420", + "coordonnees_gps": [ + 50.7041016348, + 3.13593215066 + ], + "libelle_d_acheminement": "MOUVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13593215066, + 50.7041016348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "721a735196e96cfa5e96d2577a9e2147faf2f384", + "fields": { + "code_commune_insee": "59423", + "nom_de_la_commune": "NEUF BERQUIN", + "code_postal": "59940", + "coordonnees_gps": [ + 50.6652328405, + 2.66524376956 + ], + "libelle_d_acheminement": "NEUF BERQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66524376956, + 50.6652328405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62f2693841b80dd35c8ad4bc8411e7736102b186", + "fields": { + "code_commune_insee": "59433", + "nom_de_la_commune": "NIEURLET", + "code_postal": "59143", + "coordonnees_gps": [ + 50.7949144222, + 2.27990645597 + ], + "libelle_d_acheminement": "NIEURLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27990645597, + 50.7949144222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95b2732c2a7ffe6723f1f129aa6f5447c28e6b7e", + "fields": { + "code_commune_insee": "59435", + "nom_de_la_commune": "NOMAIN", + "code_postal": "59310", + "coordonnees_gps": [ + 50.5012176112, + 3.23912545125 + ], + "libelle_d_acheminement": "NOMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23912545125, + 50.5012176112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b2e1c058741748a82f242cfc6c55e2d577ec509", + "fields": { + "code_commune_insee": "59437", + "nom_de_la_commune": "NOYELLES LES SECLIN", + "code_postal": "59139", + "coordonnees_gps": [ + 50.5729280386, + 3.02238335303 + ], + "libelle_d_acheminement": "NOYELLES LES SECLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02238335303, + 50.5729280386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ad8894d3c17a822856f4ef45bd3717ddba5138d", + "fields": { + "code_commune_insee": "59440", + "nom_de_la_commune": "NOYELLES SUR SELLE", + "code_postal": "59282", + "coordonnees_gps": [ + 50.2786620955, + 3.38194992576 + ], + "libelle_d_acheminement": "NOYELLES SUR SELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38194992576, + 50.2786620955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d5c4526f2a54a8a1b9ba1c87521c6482c724ae8", + "fields": { + "code_commune_insee": "59444", + "nom_de_la_commune": "ODOMEZ", + "code_postal": "59970", + "coordonnees_gps": [ + 50.4481733778, + 3.53940322234 + ], + "libelle_d_acheminement": "ODOMEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53940322234, + 50.4481733778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcdf9ada343297168b0db9bc2aea43fe9a7b157f", + "fields": { + "code_commune_insee": "59448", + "nom_de_la_commune": "OOST CAPPEL", + "code_postal": "59122", + "coordonnees_gps": [ + 50.9297498837, + 2.58933450299 + ], + "libelle_d_acheminement": "OOST CAPPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58933450299, + 50.9297498837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecde17fa53d0310c4f3bb2f936f1bf53b4c7ba2e", + "fields": { + "code_commune_insee": "59450", + "nom_de_la_commune": "ORS", + "code_postal": "59360", + "coordonnees_gps": [ + 50.1050821078, + 3.6311053836 + ], + "libelle_d_acheminement": "ORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6311053836, + 50.1050821078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f21b476b1ecd1362345383918a8413f8be0dd62", + "fields": { + "code_commune_insee": "59452", + "nom_de_la_commune": "OSTRICOURT", + "code_postal": "59162", + "coordonnees_gps": [ + 50.4571255859, + 3.03269713092 + ], + "libelle_d_acheminement": "OSTRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03269713092, + 50.4571255859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d21eeeafee93d48b8b64bc41e3f7ab438e8d81b8", + "fields": { + "code_commune_insee": "59456", + "nom_de_la_commune": "PECQUENCOURT", + "code_postal": "59146", + "coordonnees_gps": [ + 50.3763502504, + 3.21867627513 + ], + "libelle_d_acheminement": "PECQUENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21867627513, + 50.3763502504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63cab778ad4b3a277a262871ef15f89390eee3b0", + "fields": { + "code_commune_insee": "59463", + "nom_de_la_commune": "PITGAM", + "code_postal": "59284", + "coordonnees_gps": [ + 50.9299079429, + 2.34010090191 + ], + "libelle_d_acheminement": "PITGAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34010090191, + 50.9299079429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb8f076039d45fbfb7d997b300d95c73df2fbbf6", + "fields": { + "code_commune_insee": "59467", + "nom_de_la_commune": "PONT SUR SAMBRE", + "code_postal": "59138", + "coordonnees_gps": [ + 50.2317600389, + 3.84512612151 + ], + "libelle_d_acheminement": "PONT SUR SAMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84512612151, + 50.2317600389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a19f960bdaea5dc34e1ed1a553e0a6691a034d55", + "fields": { + "ligne_5": "MONT DE PREMESQUES", + "code_commune_insee": "59470", + "libelle_d_acheminement": "PREMESQUES", + "code_postal": "59840", + "nom_de_la_commune": "PREMESQUES", + "coordonnees_gps": [ + 50.6607863693, + 2.9485483768 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9485483768, + 50.6607863693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1810c714b95323dff20c348160142a7e4c999bd7", + "fields": { + "code_commune_insee": "59473", + "nom_de_la_commune": "PREUX AU SART", + "code_postal": "59144", + "coordonnees_gps": [ + 50.2886107324, + 3.69910774088 + ], + "libelle_d_acheminement": "PREUX AU SART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69910774088, + 50.2886107324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0933b114c8282f78d90db0ff93fb5b6c3bba64ae", + "fields": { + "code_commune_insee": "59475", + "nom_de_la_commune": "PROUVY", + "code_postal": "59121", + "coordonnees_gps": [ + 50.3241135233, + 3.45729001727 + ], + "libelle_d_acheminement": "PROUVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45729001727, + 50.3241135233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f5b89c63f2b796cbb0f41db30c2cf08a7ef2427", + "fields": { + "code_commune_insee": "59481", + "nom_de_la_commune": "LE QUESNOY", + "code_postal": "59530", + "coordonnees_gps": [ + 50.2506593981, + 3.62486177207 + ], + "libelle_d_acheminement": "LE QUESNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62486177207, + 50.2506593981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8684ae2077202a784a9d013ab58160c2e3b47677", + "fields": { + "code_commune_insee": "59489", + "nom_de_la_commune": "RAIMBEAUCOURT", + "code_postal": "59283", + "coordonnees_gps": [ + 50.4363550078, + 3.10277352628 + ], + "libelle_d_acheminement": "RAIMBEAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10277352628, + 50.4363550078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af66092d1c7b8c2416f10f9a945c11bc362d8939", + "fields": { + "code_commune_insee": "59513", + "nom_de_la_commune": "ROUCOURT", + "code_postal": "59169", + "coordonnees_gps": [ + 50.3279013406, + 3.14688211688 + ], + "libelle_d_acheminement": "ROUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14688211688, + 50.3279013406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d42dc315904d6f990459b93d26ac4fc401d7ff6", + "fields": { + "code_commune_insee": "59515", + "nom_de_la_commune": "ROUVIGNIES", + "code_postal": "59220", + "coordonnees_gps": [ + 50.333483649, + 3.44055794538 + ], + "libelle_d_acheminement": "ROUVIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44055794538, + 50.333483649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ebece86f598ec59996f6f13728b585d5ce2ae21", + "fields": { + "code_commune_insee": "59516", + "nom_de_la_commune": "RUBROUCK", + "code_postal": "59285", + "coordonnees_gps": [ + 50.8331982321, + 2.36252595858 + ], + "libelle_d_acheminement": "RUBROUCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36252595858, + 50.8331982321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a523138f9cb7ad0ccc8a0890f25adb743cba7c4", + "fields": { + "code_commune_insee": "59522", + "nom_de_la_commune": "SAILLY LEZ LANNOY", + "code_postal": "59390", + "coordonnees_gps": [ + 50.6460432884, + 3.22762243791 + ], + "libelle_d_acheminement": "SAILLY LEZ LANNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22762243791, + 50.6460432884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "426c9bfd0c0a6f99fd86014fb726feede01f611a", + "fields": { + "code_commune_insee": "59524", + "nom_de_la_commune": "SAINGHIN EN WEPPES", + "code_postal": "59184", + "coordonnees_gps": [ + 50.5583359872, + 2.89740255201 + ], + "libelle_d_acheminement": "SAINGHIN EN WEPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89740255201, + 50.5583359872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d346768aa03689231d2506898c00bb179508f63", + "fields": { + "code_commune_insee": "59525", + "nom_de_la_commune": "SAINS DU NORD", + "code_postal": "59177", + "coordonnees_gps": [ + 50.0854794146, + 4.03223070419 + ], + "libelle_d_acheminement": "SAINS DU NORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03223070419, + 50.0854794146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "197c9645202a611f459ef27837fce76b0db32b0d", + "fields": { + "code_commune_insee": "57638", + "nom_de_la_commune": "SCHOENECK", + "code_postal": "57350", + "coordonnees_gps": [ + 49.2131743265, + 6.92043725941 + ], + "libelle_d_acheminement": "SCHOENECK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92043725941, + 49.2131743265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "502295c4d5837b053d933b8d1b8ee968908f9aba", + "fields": { + "code_commune_insee": "57643", + "nom_de_la_commune": "SECOURT", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9485643363, + 6.27165031944 + ], + "libelle_d_acheminement": "SECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27165031944, + 48.9485643363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "606970231083dafcc51d3a5925182a5d5b5f830b", + "fields": { + "code_commune_insee": "57645", + "nom_de_la_commune": "SEMECOURT", + "code_postal": "57280", + "coordonnees_gps": [ + 49.1970900836, + 6.13770154726 + ], + "libelle_d_acheminement": "SEMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13770154726, + 49.1970900836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c97deb3fe622833a2c26d8117e4c4a4eed71c903", + "fields": { + "code_commune_insee": "57650", + "nom_de_la_commune": "SIERCK LES BAINS", + "code_postal": "57480", + "coordonnees_gps": [ + 49.4367246307, + 6.35954877529 + ], + "libelle_d_acheminement": "SIERCK LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35954877529, + 49.4367246307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac18dcb2f3c1fb63afc8d123e013b30134546d3e", + "fields": { + "code_commune_insee": "57661", + "nom_de_la_commune": "STURZELBRONN", + "code_postal": "57230", + "coordonnees_gps": [ + 49.053346733, + 7.59397660337 + ], + "libelle_d_acheminement": "STURZELBRONN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59397660337, + 49.053346733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "779861c3e3ddec097bc5f7d87c415cd4f78b0367", + "fields": { + "code_commune_insee": "57670", + "nom_de_la_commune": "THICOURT", + "code_postal": "57380", + "coordonnees_gps": [ + 48.9917121202, + 6.56000990403 + ], + "libelle_d_acheminement": "THICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56000990403, + 48.9917121202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63c571a9c713fbdaeafd373a2757f69aadacb656", + "fields": { + "code_commune_insee": "57676", + "nom_de_la_commune": "TRAGNY", + "code_postal": "57580", + "coordonnees_gps": [ + 48.9564904348, + 6.37332375552 + ], + "libelle_d_acheminement": "TRAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37332375552, + 48.9564904348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c928f98dcb1195b07ee7a7e0a425d0886485034c", + "fields": { + "code_commune_insee": "57682", + "nom_de_la_commune": "TURQUESTEIN BLANCRUPT", + "code_postal": "57560", + "coordonnees_gps": [ + 48.5598070165, + 7.08686988771 + ], + "libelle_d_acheminement": "TURQUESTEIN BLANCRUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08686988771, + 48.5598070165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f20194dfc442e6c8a4b8ae8f9642cf15cc0520d9", + "fields": { + "code_commune_insee": "57683", + "nom_de_la_commune": "UCKANGE", + "code_postal": "57270", + "coordonnees_gps": [ + 49.3058767055, + 6.14931216735 + ], + "libelle_d_acheminement": "UCKANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14931216735, + 49.3058767055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a7f3865848a8cea1e7b7d004079a6fbb3dfa170", + "fields": { + "code_commune_insee": "57684", + "nom_de_la_commune": "VAHL EBERSING", + "code_postal": "57660", + "coordonnees_gps": [ + 49.0526763578, + 6.74843540034 + ], + "libelle_d_acheminement": "VAHL EBERSING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74843540034, + 49.0526763578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1496446f5a1682c03159ae7aadd1fe0ddf9d04b1", + "fields": { + "code_commune_insee": "57689", + "nom_de_la_commune": "VALMESTROFF", + "code_postal": "57970", + "coordonnees_gps": [ + 49.3583304457, + 6.26235164313 + ], + "libelle_d_acheminement": "VALMESTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26235164313, + 49.3583304457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51a30556ee9b20440f44aa5068544318c08e2cf9", + "fields": { + "code_commune_insee": "57692", + "nom_de_la_commune": "VANNECOURT", + "code_postal": "57340", + "coordonnees_gps": [ + 48.87799465, + 6.53511277921 + ], + "libelle_d_acheminement": "VANNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53511277921, + 48.87799465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c1d6d7cb8e4ba4a23f2d93c16b97bfd3f0fcb0d", + "fields": { + "code_commune_insee": "57693", + "nom_de_la_commune": "VANTOUX", + "code_postal": "57070", + "coordonnees_gps": [ + 49.1323231811, + 6.233426984 + ], + "libelle_d_acheminement": "VANTOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.233426984, + 49.1323231811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19b1ea60afbbeb2a6b3f13757eb367b4c28f195b", + "fields": { + "code_commune_insee": "57707", + "nom_de_la_commune": "VERNEVILLE", + "code_postal": "57130", + "coordonnees_gps": [ + 49.1377096481, + 6.00708886544 + ], + "libelle_d_acheminement": "VERNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00708886544, + 49.1377096481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9265c39ee303ae4c0a07fe48ad33be58f520458", + "fields": { + "code_commune_insee": "57709", + "nom_de_la_commune": "VESCHEIM", + "code_postal": "57370", + "coordonnees_gps": [ + 48.7943463225, + 7.22591032153 + ], + "libelle_d_acheminement": "VESCHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22591032153, + 48.7943463225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77d92d7e678b9b5eafb9970088ec4bb0dc2c4307", + "fields": { + "code_commune_insee": "57719", + "nom_de_la_commune": "VILLERS SUR NIED", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9262387667, + 6.52816467528 + ], + "libelle_d_acheminement": "VILLERS SUR NIED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52816467528, + 48.9262387667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aab0230fea39072f7445ee6ac124f2c0fbef3c65", + "fields": { + "code_commune_insee": "57721", + "nom_de_la_commune": "VILSBERG", + "code_postal": "57370", + "coordonnees_gps": [ + 48.79004649, + 7.26022732288 + ], + "libelle_d_acheminement": "VILSBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26022732288, + 48.79004649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70a4b0f99dd4c471847d300551bbae3a4002d771", + "fields": { + "code_commune_insee": "57734", + "nom_de_la_commune": "VOYER", + "code_postal": "57560", + "coordonnees_gps": [ + 48.6522218701, + 7.08937064886 + ], + "libelle_d_acheminement": "VOYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08937064886, + 48.6522218701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f778dbe14492805764d63e5bcc27e88c8c14e79", + "fields": { + "code_commune_insee": "57737", + "nom_de_la_commune": "VULMONT", + "code_postal": "57420", + "coordonnees_gps": [ + 48.925709781, + 6.30508801318 + ], + "libelle_d_acheminement": "VULMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30508801318, + 48.925709781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af7ea95b38a4abd564de522ff675a4ef69942587", + "fields": { + "code_commune_insee": "57740", + "nom_de_la_commune": "WALDWISSE", + "code_postal": "57480", + "coordonnees_gps": [ + 49.4143532699, + 6.52258139522 + ], + "libelle_d_acheminement": "WALDWISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52258139522, + 49.4143532699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25098b2dd28221f317c9e783f48f88a3de8dacd8", + "fields": { + "code_commune_insee": "57741", + "nom_de_la_commune": "WALSCHBRONN", + "code_postal": "57720", + "coordonnees_gps": [ + 49.154023233, + 7.47376788664 + ], + "libelle_d_acheminement": "WALSCHBRONN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47376788664, + 49.154023233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "502fff1994b74d89e2327ca500848bba0603413a", + "fields": { + "code_commune_insee": "57749", + "nom_de_la_commune": "VOELFLING LES BOUZONVILLE", + "code_postal": "57320", + "coordonnees_gps": [ + 49.2929378044, + 6.60527377943 + ], + "libelle_d_acheminement": "VOELFLING LES BOUZONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60527377943, + 49.2929378044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb6fdbab846863cf1d11c623eb6694104cf51475", + "fields": { + "code_commune_insee": "57764", + "nom_de_la_commune": "ZOUFFTGEN", + "code_postal": "57330", + "coordonnees_gps": [ + 49.4658864649, + 6.13504143605 + ], + "libelle_d_acheminement": "ZOUFFTGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13504143605, + 49.4658864649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c72f52fcb80ac69d4c918626e1cb65e56b3ab423", + "fields": { + "code_commune_insee": "57767", + "nom_de_la_commune": "STUCKANGE", + "code_postal": "57970", + "coordonnees_gps": [ + 49.3240150186, + 6.23226190689 + ], + "libelle_d_acheminement": "STUCKANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23226190689, + 49.3240150186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4db264168febb7a2b6525482df3a96bee3b92d1", + "fields": { + "code_commune_insee": "58004", + "nom_de_la_commune": "ALLUY", + "code_postal": "58110", + "coordonnees_gps": [ + 47.0338777551, + 3.63261778008 + ], + "libelle_d_acheminement": "ALLUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63261778008, + 47.0338777551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "972d3cc5710803d36549331aa2bb739bd9559cc8", + "fields": { + "code_commune_insee": "58005", + "nom_de_la_commune": "AMAZY", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3830839935, + 3.56104962023 + ], + "libelle_d_acheminement": "AMAZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56104962023, + 47.3830839935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21e80045737399bb12f62d64a86d650228c170c8", + "fields": { + "code_commune_insee": "58010", + "nom_de_la_commune": "ARLEUF", + "code_postal": "58430", + "coordonnees_gps": [ + 47.0404133279, + 4.01572442394 + ], + "libelle_d_acheminement": "ARLEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01572442394, + 47.0404133279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a725b42049180dc33c1c39152b7991b161b4f06f", + "fields": { + "code_commune_insee": "58013", + "nom_de_la_commune": "ARTHEL", + "code_postal": "58700", + "coordonnees_gps": [ + 47.2439939183, + 3.40639275395 + ], + "libelle_d_acheminement": "ARTHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40639275395, + 47.2439939183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "443bdce8c19617b9d760490afc855d90a6958cd3", + "fields": { + "code_commune_insee": "58016", + "nom_de_la_commune": "ASNOIS", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3975694255, + 3.5877353754 + ], + "libelle_d_acheminement": "ASNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5877353754, + 47.3975694255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "496caa2ce1870bd5c6e33076e7ed99538ce9081c", + "fields": { + "ligne_5": "BAYE", + "code_commune_insee": "58024", + "libelle_d_acheminement": "BAZOLLES", + "code_postal": "58110", + "nom_de_la_commune": "BAZOLLES", + "coordonnees_gps": [ + 47.1455832324, + 3.60825350452 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60825350452, + 47.1455832324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea45255049a4ee6a807aa331d954ff39ed15b40e", + "fields": { + "code_commune_insee": "58025", + "nom_de_la_commune": "BEARD", + "code_postal": "58160", + "coordonnees_gps": [ + 46.8687338106, + 3.3263533543 + ], + "libelle_d_acheminement": "BEARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3263533543, + 46.8687338106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c8f541f4e2610599bdeeb46e67ce207bd1c6daf", + "fields": { + "ligne_5": "MICHAUGUES", + "code_commune_insee": "58026", + "libelle_d_acheminement": "BEAULIEU", + "code_postal": "58420", + "nom_de_la_commune": "BEAULIEU", + "coordonnees_gps": [ + 47.2523686472, + 3.52425874416 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52425874416, + 47.2523686472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d3c302900206dc74ab177f7ef4f6b1d31f7f39b", + "fields": { + "code_commune_insee": "58027", + "nom_de_la_commune": "BEAUMONT LA FERRIERE", + "code_postal": "58700", + "coordonnees_gps": [ + 47.1832698667, + 3.23544438526 + ], + "libelle_d_acheminement": "BEAUMONT LA FERRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23544438526, + 47.1832698667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dfd6ec183f46b4338c65cfe940a629897866db0", + "fields": { + "code_commune_insee": "58034", + "nom_de_la_commune": "BLISMES", + "code_postal": "58120", + "coordonnees_gps": [ + 47.1229051277, + 3.82149809413 + ], + "libelle_d_acheminement": "BLISMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82149809413, + 47.1229051277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2e24adf96b67a1b15cf48809465dfa75d028b65", + "fields": { + "code_commune_insee": "59546", + "nom_de_la_commune": "ST SYLVESTRE CAPPEL", + "code_postal": "59114", + "coordonnees_gps": [ + 50.7757055306, + 2.55012081181 + ], + "libelle_d_acheminement": "ST SYLVESTRE CAPPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55012081181, + 50.7757055306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7454fd766dbb8687dd3b8a540078a7b241991c0", + "fields": { + "code_commune_insee": "58036", + "nom_de_la_commune": "BOUHY", + "code_postal": "58310", + "coordonnees_gps": [ + 47.4871286567, + 3.18343987019 + ], + "libelle_d_acheminement": "BOUHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18343987019, + 47.4871286567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63664427518637ecd439d96dc75a77ef9a9a2812", + "fields": { + "code_commune_insee": "59548", + "nom_de_la_commune": "ST WAAST", + "code_postal": "59570", + "coordonnees_gps": [ + 50.3009046885, + 3.74775611906 + ], + "libelle_d_acheminement": "ST WAAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74775611906, + 50.3009046885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e54abe040763f7fb6a6b0edd928a18992f28716", + "fields": { + "code_commune_insee": "58037", + "nom_de_la_commune": "BRASSY", + "code_postal": "58140", + "coordonnees_gps": [ + 47.2637724452, + 3.93404612826 + ], + "libelle_d_acheminement": "BRASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93404612826, + 47.2637724452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aed65051917715d3a023d575c8d537e3c27e7f90", + "fields": { + "code_commune_insee": "59565", + "nom_de_la_commune": "SEPMERIES", + "code_postal": "59269", + "coordonnees_gps": [ + 50.2772551517, + 3.56080213817 + ], + "libelle_d_acheminement": "SEPMERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56080213817, + 50.2772551517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22ef9ade644262993ab8bf051efffa2acc2ce8ab", + "fields": { + "code_commune_insee": "58047", + "nom_de_la_commune": "CERVON", + "code_postal": "58800", + "coordonnees_gps": [ + 47.2396751916, + 3.75219456322 + ], + "libelle_d_acheminement": "CERVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75219456322, + 47.2396751916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b98c1a440bb82a83b6f149b1e5b6920c6da2b40", + "fields": { + "code_commune_insee": "59567", + "nom_de_la_commune": "SERANVILLERS FORENVILLE", + "code_postal": "59400", + "coordonnees_gps": [ + 50.1266132129, + 3.27725549348 + ], + "libelle_d_acheminement": "SERANVILLERS FORENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27725549348, + 50.1266132129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ceaa7b6dced9e38ccf74c3070120cb6cde72b1e", + "fields": { + "code_commune_insee": "58048", + "nom_de_la_commune": "CESSY LES BOIS", + "code_postal": "58220", + "coordonnees_gps": [ + 47.3318627577, + 3.21619121558 + ], + "libelle_d_acheminement": "CESSY LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21619121558, + 47.3318627577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "660717dd920c3b02b08b20192c1fa72120d53797", + "fields": { + "code_commune_insee": "59572", + "nom_de_la_commune": "SOLRE LE CHATEAU", + "code_postal": "59740", + "coordonnees_gps": [ + 50.1722246859, + 4.09630317789 + ], + "libelle_d_acheminement": "SOLRE LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09630317789, + 50.1722246859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdad1e8f5a905603cc298f64fa0ff1dc5dc7fd1d", + "fields": { + "code_commune_insee": "58054", + "nom_de_la_commune": "CHAMPLIN", + "code_postal": "58700", + "coordonnees_gps": [ + 47.2447063381, + 3.45044284941 + ], + "libelle_d_acheminement": "CHAMPLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45044284941, + 47.2447063381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e0bb5a65bff59675f1dece03eacf0c118db3ba4", + "fields": { + "code_commune_insee": "59574", + "nom_de_la_commune": "SOMAIN", + "code_postal": "59490", + "coordonnees_gps": [ + 50.3598009687, + 3.27519704161 + ], + "libelle_d_acheminement": "SOMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27519704161, + 50.3598009687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8828db41179fa3740852dcf7ed11649d976f266d", + "fields": { + "code_commune_insee": "58061", + "nom_de_la_commune": "CHASNAY", + "code_postal": "58350", + "coordonnees_gps": [ + 47.2389608861, + 3.17151179049 + ], + "libelle_d_acheminement": "CHASNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17151179049, + 47.2389608861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b19bbe1c59f30b4f5d71e281571b9d99a155f679", + "fields": { + "code_commune_insee": "59579", + "nom_de_la_commune": "STEENE", + "code_postal": "59380", + "coordonnees_gps": [ + 50.9531939911, + 2.37222398651 + ], + "libelle_d_acheminement": "STEENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37222398651, + 50.9531939911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0211ec97de43019c081830e62f982ec22a7f3be2", + "fields": { + "code_commune_insee": "58063", + "nom_de_la_commune": "CHATEAU CHINON CAMPAGNE", + "code_postal": "58120", + "coordonnees_gps": [ + 47.056080506, + 3.9410750203 + ], + "libelle_d_acheminement": "CHATEAU CHINON CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9410750203, + 47.056080506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53c3ea04b7899696bdb78a41bd0967b2a1b8bfc9", + "fields": { + "ligne_5": "CROIX DU BAC", + "code_commune_insee": "59581", + "libelle_d_acheminement": "STEENWERCK", + "code_postal": "59181", + "nom_de_la_commune": "STEENWERCK", + "coordonnees_gps": [ + 50.6864176007, + 2.76933714516 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76933714516, + 50.6864176007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ccefd98cf213992eb34a68500cf1eb3be801771", + "fields": { + "code_commune_insee": "58074", + "nom_de_la_commune": "CHIDDES", + "code_postal": "58170", + "coordonnees_gps": [ + 46.8621669432, + 3.92954270868 + ], + "libelle_d_acheminement": "CHIDDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92954270868, + 46.8621669432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dec0c2be57eab1a730c4440e6fafa603a6bf56ae", + "fields": { + "code_commune_insee": "59584", + "nom_de_la_commune": "TAISNIERES SUR HON", + "code_postal": "59570", + "coordonnees_gps": [ + 50.3215475622, + 3.85119216193 + ], + "libelle_d_acheminement": "TAISNIERES SUR HON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85119216193, + 50.3215475622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cbb018a7951f229ce9a6c730f135c0fbaaded4c", + "fields": { + "code_commune_insee": "58082", + "nom_de_la_commune": "CORANCY", + "code_postal": "58120", + "coordonnees_gps": [ + 47.1062561745, + 3.95987876262 + ], + "libelle_d_acheminement": "CORANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95987876262, + 47.1062561745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a95aa57471e81a457a7b24dd4bd8a11ddaefbfe", + "fields": { + "code_commune_insee": "59596", + "nom_de_la_commune": "TILLOY LEZ MARCHIENNES", + "code_postal": "59870", + "coordonnees_gps": [ + 50.4251780134, + 3.32276515057 + ], + "libelle_d_acheminement": "TILLOY LEZ MARCHIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32276515057, + 50.4251780134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f32df1698a2f1b9a47e91a869c714c0257c8476d", + "fields": { + "code_commune_insee": "58084", + "nom_de_la_commune": "CORVOL D EMBERNARD", + "code_postal": "58210", + "coordonnees_gps": [ + 47.2944695727, + 3.39889165707 + ], + "libelle_d_acheminement": "CORVOL D EMBERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39889165707, + 47.2944695727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b47d86195130de991cc17df7a25c49b1a8b102fa", + "fields": { + "code_commune_insee": "59600", + "nom_de_la_commune": "TOURMIGNIES", + "code_postal": "59551", + "coordonnees_gps": [ + 50.5041629351, + 3.08506088086 + ], + "libelle_d_acheminement": "TOURMIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08506088086, + 50.5041629351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a43116f272ab53f85b57ea04ef0f81d9ab49fc8c", + "fields": { + "code_commune_insee": "58087", + "nom_de_la_commune": "COSSAYE", + "code_postal": "58300", + "coordonnees_gps": [ + 46.7559659836, + 3.51003237912 + ], + "libelle_d_acheminement": "COSSAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51003237912, + 46.7559659836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36624851d7d97a135d3a3ca9482b526df98b1cee", + "fields": { + "code_commune_insee": "59601", + "nom_de_la_commune": "TRELON", + "code_postal": "59132", + "coordonnees_gps": [ + 50.0755155252, + 4.12172301875 + ], + "libelle_d_acheminement": "TRELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12172301875, + 50.0755155252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b6dbe4734c3c7da09694d061eccd6a589f0af62", + "fields": { + "code_commune_insee": "58101", + "nom_de_la_commune": "DOMPIERRE SUR NIEVRE", + "code_postal": "58350", + "coordonnees_gps": [ + 47.2317693223, + 3.25913821713 + ], + "libelle_d_acheminement": "DOMPIERRE SUR NIEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25913821713, + 47.2317693223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48aae859fcdd4f0f6d1662396629953e44c379d0", + "fields": { + "code_commune_insee": "59616", + "nom_de_la_commune": "VIEUX CONDE", + "code_postal": "59690", + "coordonnees_gps": [ + 50.4735638651, + 3.56606734565 + ], + "libelle_d_acheminement": "VIEUX CONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56606734565, + 50.4735638651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efd6c4f566bfcdd49510979470f8f522379224ed", + "fields": { + "code_commune_insee": "58103", + "nom_de_la_commune": "DORNECY", + "code_postal": "58530", + "coordonnees_gps": [ + 47.4426675206, + 3.58969747383 + ], + "libelle_d_acheminement": "DORNECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58969747383, + 47.4426675206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfb3bef3e72fac76fafa797199a26aa19564fc63", + "fields": { + "code_commune_insee": "59618", + "nom_de_la_commune": "VIEUX RENG", + "code_postal": "59600", + "coordonnees_gps": [ + 50.3213611397, + 4.0463688859 + ], + "libelle_d_acheminement": "VIEUX RENG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0463688859, + 50.3213611397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76199d062f21700eb32226b40c793c0507aa0b18", + "fields": { + "code_commune_insee": "58111", + "nom_de_la_commune": "FACHIN", + "code_postal": "58430", + "coordonnees_gps": [ + 47.002421282, + 3.96692225039 + ], + "libelle_d_acheminement": "FACHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96692225039, + 47.002421282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dcb7776e074d6fa21bcf1d1d95b1244ebb3aa26", + "fields": { + "code_commune_insee": "59627", + "nom_de_la_commune": "VILLERS SIRE NICOLE", + "code_postal": "59600", + "coordonnees_gps": [ + 50.339831062, + 4.01339230045 + ], + "libelle_d_acheminement": "VILLERS SIRE NICOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01339230045, + 50.339831062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "734a4b92eb682de1cddbd1fe19b3d1f860b58567", + "fields": { + "code_commune_insee": "58114", + "nom_de_la_commune": "FLETY", + "code_postal": "58170", + "coordonnees_gps": [ + 46.798653723, + 3.9063939213 + ], + "libelle_d_acheminement": "FLETY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9063939213, + 46.798653723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e42d4a119468b017cb05e792dcfcb42c78dd1e32", + "fields": { + "code_commune_insee": "59628", + "nom_de_la_commune": "VOLCKERINCKHOVE", + "code_postal": "59470", + "coordonnees_gps": [ + 50.839933688, + 2.29875013353 + ], + "libelle_d_acheminement": "VOLCKERINCKHOVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29875013353, + 50.839933688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0330dfb86777405a83175a330aa365324f65e623", + "fields": { + "code_commune_insee": "58117", + "nom_de_la_commune": "FOURCHAMBAULT", + "code_postal": "58600", + "coordonnees_gps": [ + 47.0168666428, + 3.09059273072 + ], + "libelle_d_acheminement": "FOURCHAMBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09059273072, + 47.0168666428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9f7ebdbab555159642b9a6a5e637d2679cae583", + "fields": { + "code_commune_insee": "59649", + "nom_de_la_commune": "WATTIGNIES LA VICTOIRE", + "code_postal": "59680", + "coordonnees_gps": [ + 50.2003544445, + 4.00235676778 + ], + "libelle_d_acheminement": "WATTIGNIES LA VICTOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00235676778, + 50.2003544445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "614567c36af3d129af10202f0c88f0f3d9a4e429", + "fields": { + "code_commune_insee": "58119", + "nom_de_la_commune": "FRASNAY REUGNY", + "code_postal": "58270", + "coordonnees_gps": [ + 46.9922185296, + 3.52773836273 + ], + "libelle_d_acheminement": "FRASNAY REUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52773836273, + 46.9922185296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e73171bfb8e1e1afb5eab7c68c7a984093d7f502", + "fields": { + "code_commune_insee": "59654", + "nom_de_la_commune": "WAZIERS", + "code_postal": "59119", + "coordonnees_gps": [ + 50.3842186333, + 3.11188476067 + ], + "libelle_d_acheminement": "WAZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11188476067, + 50.3842186333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc60ac294f7bb7d1beb11339262991697c5c9346", + "fields": { + "code_commune_insee": "58129", + "nom_de_la_commune": "GOULOUX", + "code_postal": "58230", + "coordonnees_gps": [ + 47.2305921605, + 4.0840074367 + ], + "libelle_d_acheminement": "GOULOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0840074367, + 47.2305921605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aae5098e3d5a13125579031a3ac3004aa841d213", + "fields": { + "code_commune_insee": "59656", + "nom_de_la_commune": "WERVICQ SUD", + "code_postal": "59117", + "coordonnees_gps": [ + 50.7620461406, + 3.05089776037 + ], + "libelle_d_acheminement": "WERVICQ SUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05089776037, + 50.7620461406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8de9d520f8cf93df27ceb87b145ecd0a247244a6", + "fields": { + "code_commune_insee": "58136", + "nom_de_la_commune": "JAILLY", + "code_postal": "58330", + "coordonnees_gps": [ + 47.0855636389, + 3.46962108333 + ], + "libelle_d_acheminement": "JAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46962108333, + 47.0855636389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0088c8a782195406265fe65494048389ecc216ad", + "fields": { + "code_commune_insee": "59658", + "nom_de_la_commune": "WICRES", + "code_postal": "59134", + "coordonnees_gps": [ + 50.5694195145, + 2.86858974063 + ], + "libelle_d_acheminement": "WICRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86858974063, + 50.5694195145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9bde00271c394844ac42f585aa5aec1033ef745", + "fields": { + "code_commune_insee": "58148", + "nom_de_la_commune": "LUTHENAY UXELOUP", + "code_postal": "58240", + "coordonnees_gps": [ + 46.8534809432, + 3.26854590349 + ], + "libelle_d_acheminement": "LUTHENAY UXELOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26854590349, + 46.8534809432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "900538a451f752a546233425e511281474b69e98", + "fields": { + "code_commune_insee": "59659", + "nom_de_la_commune": "WIGNEHIES", + "code_postal": "59212", + "coordonnees_gps": [ + 50.0118044778, + 4.0065736506 + ], + "libelle_d_acheminement": "WIGNEHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0065736506, + 50.0118044778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64d9f91b2982aeaa1e9e8024b55c5d11183a83e2", + "fields": { + "code_commune_insee": "58151", + "nom_de_la_commune": "LA MACHINE", + "code_postal": "58260", + "coordonnees_gps": [ + 46.8916874308, + 3.46212793801 + ], + "libelle_d_acheminement": "LA MACHINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46212793801, + 46.8916874308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0c4f5aa745fab01c83bafaf6f8766e95a1e41d6", + "fields": { + "code_commune_insee": "59664", + "nom_de_la_commune": "WULVERDINGHE", + "code_postal": "59143", + "coordonnees_gps": [ + 50.8284324881, + 2.2531343958 + ], + "libelle_d_acheminement": "WULVERDINGHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2531343958, + 50.8284324881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a15843b5edb96c2111ee2ba548d01585057f838", + "fields": { + "code_commune_insee": "58166", + "nom_de_la_commune": "MHERE", + "code_postal": "58140", + "coordonnees_gps": [ + 47.1949524122, + 3.86024509237 + ], + "libelle_d_acheminement": "MHERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86024509237, + 47.1949524122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab69843a0e316c844d636924c5cf901a3e665df6", + "fields": { + "code_commune_insee": "59667", + "nom_de_la_commune": "ZERMEZEELE", + "code_postal": "59670", + "coordonnees_gps": [ + 50.8321932353, + 2.4589529897 + ], + "libelle_d_acheminement": "ZERMEZEELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4589529897, + 50.8321932353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b638a83b185f812189dc1cdf8ffd556fba6fe62", + "fields": { + "code_commune_insee": "58173", + "nom_de_la_commune": "MONTARON", + "code_postal": "58250", + "coordonnees_gps": [ + 46.8762307221, + 3.74836898416 + ], + "libelle_d_acheminement": "MONTARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74836898416, + 46.8762307221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a44a97eafb62563c3ec6e5511775211fcd5057d", + "fields": { + "code_commune_insee": "59669", + "nom_de_la_commune": "ZUYTPEENE", + "code_postal": "59670", + "coordonnees_gps": [ + 50.7918240712, + 2.42330162819 + ], + "libelle_d_acheminement": "ZUYTPEENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42330162819, + 50.7918240712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "257abaa5ced2f27f3510ad563bb9aa26d3ad16ce", + "fields": { + "code_commune_insee": "58175", + "nom_de_la_commune": "MONT ET MARRE", + "code_postal": "58110", + "coordonnees_gps": [ + 47.0889728299, + 3.64523773772 + ], + "libelle_d_acheminement": "MONT ET MARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64523773772, + 47.0889728299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bba4b5e27c782075101b9bdb74adeef286856f8", + "fields": { + "code_commune_insee": "60001", + "nom_de_la_commune": "ABANCOURT", + "code_postal": "60220", + "coordonnees_gps": [ + 49.6930546611, + 1.76924374516 + ], + "libelle_d_acheminement": "ABANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76924374516, + 49.6930546611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "938d72ec7e2056918e5db4587e8e7705614c4926", + "fields": { + "code_commune_insee": "58178", + "nom_de_la_commune": "MONTIGNY SUR CANNE", + "code_postal": "58340", + "coordonnees_gps": [ + 46.9429617618, + 3.65775331444 + ], + "libelle_d_acheminement": "MONTIGNY SUR CANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65775331444, + 46.9429617618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9bcabe9c0c60b1dee6b43f5d726afa5c880c6bc", + "fields": { + "code_commune_insee": "60007", + "nom_de_la_commune": "AGNETZ", + "code_postal": "60600", + "coordonnees_gps": [ + 49.3961836166, + 2.38254589214 + ], + "libelle_d_acheminement": "AGNETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38254589214, + 49.3961836166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66fa7605239d5773a5838f8960c3dbf23b71bae8", + "fields": { + "code_commune_insee": "58182", + "nom_de_la_commune": "MOULINS ENGILBERT", + "code_postal": "58290", + "coordonnees_gps": [ + 46.9731661302, + 3.81182294166 + ], + "libelle_d_acheminement": "MOULINS ENGILBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81182294166, + 46.9731661302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dc8f4a2b59ab8ce7d4bef2a0394a6be68ef107a", + "fields": { + "code_commune_insee": "60010", + "nom_de_la_commune": "AMBLAINVILLE", + "code_postal": "60110", + "coordonnees_gps": [ + 49.2071001179, + 2.12057880418 + ], + "libelle_d_acheminement": "AMBLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12057880418, + 49.2071001179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7256309150dd0f1cdf97c999d2fc0187bdf554ea", + "fields": { + "code_commune_insee": "58190", + "nom_de_la_commune": "NEUFFONTAINES", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3499035349, + 3.74055126391 + ], + "libelle_d_acheminement": "NEUFFONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74055126391, + 47.3499035349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db7ae218de42f72e371e993e76d7c9df711a8500", + "fields": { + "code_commune_insee": "60012", + "nom_de_la_commune": "ANDEVILLE", + "code_postal": "60570", + "coordonnees_gps": [ + 49.257573184, + 2.16834997777 + ], + "libelle_d_acheminement": "ANDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16834997777, + 49.257573184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc8e99a54a3dfa8651e79a6bbd4245bf588b1d06", + "fields": { + "code_commune_insee": "58194", + "nom_de_la_commune": "NEVERS", + "code_postal": "58000", + "coordonnees_gps": [ + 46.9881194908, + 3.15689130958 + ], + "libelle_d_acheminement": "NEVERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15689130958, + 46.9881194908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7196e39714f91f195ce7194afa08993f599c3b1", + "fields": { + "code_commune_insee": "60019", + "nom_de_la_commune": "ANTHEUIL PORTES", + "code_postal": "60162", + "coordonnees_gps": [ + 49.5004605023, + 2.73385430881 + ], + "libelle_d_acheminement": "ANTHEUIL PORTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73385430881, + 49.5004605023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea13826b22e64645551ba358305df18e5b2ed858", + "fields": { + "code_commune_insee": "58195", + "nom_de_la_commune": "LA NOCLE MAULAIX", + "code_postal": "58250", + "coordonnees_gps": [ + 46.7633667466, + 3.76335478199 + ], + "libelle_d_acheminement": "LA NOCLE MAULAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76335478199, + 46.7633667466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cc83fb6daf6e37097f98ff8375afac7a6bb2888", + "fields": { + "code_commune_insee": "60027", + "nom_de_la_commune": "AUGER ST VINCENT", + "code_postal": "60800", + "coordonnees_gps": [ + 49.2124952218, + 2.81319586858 + ], + "libelle_d_acheminement": "AUGER ST VINCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81319586858, + 49.2124952218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "456112ecf7c07cf4be8e77bf2070defdedaa6de0", + "fields": { + "code_commune_insee": "58201", + "nom_de_la_commune": "OUDAN", + "code_postal": "58210", + "coordonnees_gps": [ + 47.3420705967, + 3.32896873722 + ], + "libelle_d_acheminement": "OUDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32896873722, + 47.3420705967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeceedac252533b66547116cf2d3678209c84cf5", + "fields": { + "code_commune_insee": "60042", + "nom_de_la_commune": "BAILLEVAL", + "code_postal": "60140", + "coordonnees_gps": [ + 49.3492689664, + 2.46620386202 + ], + "libelle_d_acheminement": "BAILLEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46620386202, + 49.3492689664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3e6cd19d88df75698c9974f28f8599b55a9c010", + "fields": { + "code_commune_insee": "58203", + "nom_de_la_commune": "OULON", + "code_postal": "58700", + "coordonnees_gps": [ + 47.198088576, + 3.40068802026 + ], + "libelle_d_acheminement": "OULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40068802026, + 47.198088576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c88e76c0ff4b48bec77c2cb6684be53fe1eaad49", + "fields": { + "code_commune_insee": "60047", + "nom_de_la_commune": "BARON", + "code_postal": "60300", + "coordonnees_gps": [ + 49.1754522891, + 2.7348143898 + ], + "libelle_d_acheminement": "BARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7348143898, + 49.1754522891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aae0441ef979d034f1ddc790adf784cdc26d50f", + "fields": { + "ligne_5": "OUROUER", + "code_commune_insee": "58204", + "libelle_d_acheminement": "VAUX D AMOGNES", + "code_postal": "58130", + "nom_de_la_commune": "VAUX D AMOGNES", + "coordonnees_gps": [ + 47.0613273631, + 3.30090661535 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30090661535, + 47.0613273631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c4ede3c716d0b08e075232833c2a9842532dfc8", + "fields": { + "code_commune_insee": "60048", + "nom_de_la_commune": "BAUGY", + "code_postal": "60113", + "coordonnees_gps": [ + 49.4559271908, + 2.75517506422 + ], + "libelle_d_acheminement": "BAUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75517506422, + 49.4559271908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7f24741b2ff32fce10b12a89eaa3016fbe42a92", + "fields": { + "code_commune_insee": "58208", + "nom_de_la_commune": "PAZY", + "code_postal": "58800", + "coordonnees_gps": [ + 47.2261642942, + 3.63097657563 + ], + "libelle_d_acheminement": "PAZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63097657563, + 47.2261642942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e5c5d53160d13daeedb8ca223ed3b1bb66adb3e", + "fields": { + "code_commune_insee": "60050", + "nom_de_la_commune": "BAZICOURT", + "code_postal": "60700", + "coordonnees_gps": [ + 49.3431574033, + 2.62299591456 + ], + "libelle_d_acheminement": "BAZICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62299591456, + 49.3431574033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58f26e017e931b4c338e085147663e0d63c88387", + "fields": { + "code_commune_insee": "58218", + "nom_de_la_commune": "PREMERY", + "code_postal": "58700", + "coordonnees_gps": [ + 47.1734370453, + 3.32035271062 + ], + "libelle_d_acheminement": "PREMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32035271062, + 47.1734370453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63cbc7bdba6805f519a5d6f560386b41f79e697e", + "fields": { + "code_commune_insee": "60058", + "nom_de_la_commune": "BEAUVOIR", + "code_postal": "60120", + "coordonnees_gps": [ + 49.605809976, + 2.33019531687 + ], + "libelle_d_acheminement": "BEAUVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33019531687, + 49.605809976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bfca28abb9a51b577ee15bc3631cb22a9810d46", + "fields": { + "code_commune_insee": "58230", + "nom_de_la_commune": "ST AUBIN DES CHAUMES", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3901624546, + 3.75721572087 + ], + "libelle_d_acheminement": "ST AUBIN DES CHAUMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75721572087, + 47.3901624546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37c370df36f437a75e3eaa22f945de5781d542bc", + "fields": { + "code_commune_insee": "60059", + "nom_de_la_commune": "BEHERICOURT", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5980389585, + 3.06410555853 + ], + "libelle_d_acheminement": "BEHERICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06410555853, + 49.5980389585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3b27c512adbe073806b9d443d6fe86c9162c14e", + "fields": { + "code_commune_insee": "58232", + "nom_de_la_commune": "ST BENIN D AZY", + "code_postal": "58270", + "coordonnees_gps": [ + 46.9959427892, + 3.40477178304 + ], + "libelle_d_acheminement": "ST BENIN D AZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40477178304, + 46.9959427892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d9059d1ef9ed0b766a63c703f0f84ba8ad5b86c", + "fields": { + "code_commune_insee": "60060", + "nom_de_la_commune": "BELLE EGLISE", + "code_postal": "60540", + "coordonnees_gps": [ + 49.1881561836, + 2.21521967543 + ], + "libelle_d_acheminement": "BELLE EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21521967543, + 49.1881561836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a35e96c6b634c8bca8c01dd9f0c0b24075f1b5ee", + "fields": { + "code_commune_insee": "58235", + "nom_de_la_commune": "ST BRISSON", + "code_postal": "58230", + "coordonnees_gps": [ + 47.2676919884, + 4.09479104131 + ], + "libelle_d_acheminement": "ST BRISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09479104131, + 47.2676919884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e81a9d99465c39b7eac61c11d52168ef973eb965", + "fields": { + "code_commune_insee": "60062", + "nom_de_la_commune": "BERLANCOURT", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6785871051, + 3.08371773899 + ], + "libelle_d_acheminement": "BERLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08371773899, + 49.6785871051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e33b82f4eef507669ef18d3cb48242881a7f8c3", + "fields": { + "code_commune_insee": "58236", + "nom_de_la_commune": "STE COLOMBE DES BOIS", + "code_postal": "58220", + "coordonnees_gps": [ + 47.3209444056, + 3.15350066237 + ], + "libelle_d_acheminement": "STE COLOMBE DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15350066237, + 47.3209444056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "770e9a81629b97c1997dc46350cc530bf4b09d05", + "fields": { + "code_commune_insee": "60065", + "nom_de_la_commune": "BERTHECOURT", + "code_postal": "60370", + "coordonnees_gps": [ + 49.3451833083, + 2.22291035284 + ], + "libelle_d_acheminement": "BERTHECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22291035284, + 49.3451833083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7031ae5ae2776ae6b7c300e355aedbb184193e9", + "fields": { + "code_commune_insee": "58239", + "nom_de_la_commune": "ST FIRMIN", + "code_postal": "58270", + "coordonnees_gps": [ + 47.0392467272, + 3.39435546081 + ], + "libelle_d_acheminement": "ST FIRMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39435546081, + 47.0392467272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6a2a59d9f259e82333e1c83f6fe107315e9e1d9", + "fields": { + "code_commune_insee": "60069", + "nom_de_la_commune": "BETZ", + "code_postal": "60620", + "coordonnees_gps": [ + 49.1559241622, + 2.94290715615 + ], + "libelle_d_acheminement": "BETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94290715615, + 49.1559241622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f115fb201dc3e3f247bd2302336398ae033bc98d", + "fields": { + "code_commune_insee": "58246", + "nom_de_la_commune": "ST HONORE LES BAINS", + "code_postal": "58360", + "coordonnees_gps": [ + 46.899599449, + 3.85391051025 + ], + "libelle_d_acheminement": "ST HONORE LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85391051025, + 46.899599449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed3ccbb9474711cce894066ab87d0d7db49559fc", + "fields": { + "code_commune_insee": "60070", + "nom_de_la_commune": "BIENVILLE", + "code_postal": "60280", + "coordonnees_gps": [ + 49.4477920759, + 2.82514033131 + ], + "libelle_d_acheminement": "BIENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82514033131, + 49.4477920759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3956cfa6e9bab5483c8371622c02cf7f42290fca", + "fields": { + "code_commune_insee": "58254", + "nom_de_la_commune": "ST MARTIN D HEUILLE", + "code_postal": "58130", + "coordonnees_gps": [ + 47.0480526526, + 3.23272615742 + ], + "libelle_d_acheminement": "ST MARTIN D HEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23272615742, + 47.0480526526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72b3341cf5074526707c3c7df11270522cf39a4d", + "fields": { + "code_commune_insee": "60073", + "nom_de_la_commune": "BLACOURT", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4557951068, + 1.86303368192 + ], + "libelle_d_acheminement": "BLACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86303368192, + 49.4557951068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afed9a70148b62fc0b5f91c5ae470f14a072d375", + "fields": { + "code_commune_insee": "58259", + "nom_de_la_commune": "ST PARIZE EN VIRY", + "code_postal": "58300", + "coordonnees_gps": [ + 46.7536799214, + 3.36701488719 + ], + "libelle_d_acheminement": "ST PARIZE EN VIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36701488719, + 46.7536799214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe96f03aa2bb638a61ba0120e36c43d85ce6e81f", + "fields": { + "code_commune_insee": "60074", + "nom_de_la_commune": "BLAINCOURT LES PRECY", + "code_postal": "60460", + "coordonnees_gps": [ + 49.2280944073, + 2.34451291361 + ], + "libelle_d_acheminement": "BLAINCOURT LES PRECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34451291361, + 49.2280944073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "343358fb4eecc245452cc72273dd0fc74901f109", + "fields": { + "code_commune_insee": "58269", + "nom_de_la_commune": "ST SULPICE", + "code_postal": "58270", + "coordonnees_gps": [ + 47.0624951748, + 3.36019421637 + ], + "libelle_d_acheminement": "ST SULPICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36019421637, + 47.0624951748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb6923f36fba575db5f2ab1b665c910bd74c618e", + "fields": { + "code_commune_insee": "60076", + "nom_de_la_commune": "BLARGIES", + "code_postal": "60220", + "coordonnees_gps": [ + 49.6713426247, + 1.76339266657 + ], + "libelle_d_acheminement": "BLARGIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76339266657, + 49.6713426247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "732d4bd949629c8de1bb9931b5568b5f4474707a", + "fields": { + "code_commune_insee": "58270", + "nom_de_la_commune": "ST VERAIN", + "code_postal": "58310", + "coordonnees_gps": [ + 47.4869956669, + 3.03383994779 + ], + "libelle_d_acheminement": "ST VERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03383994779, + 47.4869956669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3441a56a2de44e2cb2a455f49690969c53dbd5b", + "fields": { + "code_commune_insee": "60088", + "nom_de_la_commune": "BORNEL", + "code_postal": "60540", + "coordonnees_gps": [ + 49.1918532269, + 2.18485090875 + ], + "libelle_d_acheminement": "BORNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18485090875, + 49.1918532269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb3b3cfc6ab76601bb9b3e0e35af144072004dc8", + "fields": { + "code_commune_insee": "58275", + "nom_de_la_commune": "SAXI BOURDON", + "code_postal": "58330", + "coordonnees_gps": [ + 47.056209327, + 3.48742996327 + ], + "libelle_d_acheminement": "SAXI BOURDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48742996327, + 47.056209327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "217c0e00cdab0f9ed610ed91f017268273710bd1", + "fields": { + "code_commune_insee": "60089", + "nom_de_la_commune": "BOUBIERS", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2165992699, + 1.87067010234 + ], + "libelle_d_acheminement": "BOUBIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87067010234, + 49.2165992699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f52724badf1a9a789ac200f4cd9890c17f49f4e", + "fields": { + "code_commune_insee": "58277", + "nom_de_la_commune": "SERMAGES", + "code_postal": "58290", + "coordonnees_gps": [ + 47.0153050339, + 3.84090611605 + ], + "libelle_d_acheminement": "SERMAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84090611605, + 47.0153050339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b530287bcf5fa6ba4b2648a64617f76c6de2bc8", + "fields": { + "code_commune_insee": "60091", + "nom_de_la_commune": "BOUILLANCY", + "code_postal": "60620", + "coordonnees_gps": [ + 49.1176919226, + 2.91177538082 + ], + "libelle_d_acheminement": "BOUILLANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91177538082, + 49.1176919226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d6c6d671576ca5173162d670028ef618cae3b19", + "fields": { + "code_commune_insee": "58279", + "nom_de_la_commune": "SICHAMPS", + "code_postal": "58700", + "coordonnees_gps": [ + 47.1558171574, + 3.27638586284 + ], + "libelle_d_acheminement": "SICHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27638586284, + 47.1558171574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0693b98580b4723dfba59d2b40221cc5e879045", + "fields": { + "code_commune_insee": "60095", + "nom_de_la_commune": "BOURY EN VEXIN", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2424145077, + 1.7371079349 + ], + "libelle_d_acheminement": "BOURY EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7371079349, + 49.2424145077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da2b3fc62083398a302145b62c54cf73a4363a35", + "fields": { + "code_commune_insee": "58280", + "nom_de_la_commune": "SOUGY SUR LOIRE", + "code_postal": "58300", + "coordonnees_gps": [ + 46.8604832973, + 3.40636403321 + ], + "libelle_d_acheminement": "SOUGY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40636403321, + 46.8604832973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcd20995726f607d15dd6356710a7d9546180d95", + "fields": { + "code_commune_insee": "60097", + "nom_de_la_commune": "BOUTENCOURT", + "code_postal": "60590", + "coordonnees_gps": [ + 49.3205572988, + 1.87026132379 + ], + "libelle_d_acheminement": "BOUTENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87026132379, + 49.3205572988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a605a068a30f7b0a0e156060b34f870e4ea82436", + "fields": { + "code_commune_insee": "58283", + "nom_de_la_commune": "TACONNAY", + "code_postal": "58420", + "coordonnees_gps": [ + 47.312512267, + 3.48949357869 + ], + "libelle_d_acheminement": "TACONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48949357869, + 47.312512267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ea5793f6b862c6000a41c65de257ef8cbff0deb", + "fields": { + "code_commune_insee": "60100", + "nom_de_la_commune": "BRASSEUSE", + "code_postal": "60810", + "coordonnees_gps": [ + 49.2518806817, + 2.67877402724 + ], + "libelle_d_acheminement": "BRASSEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67877402724, + 49.2518806817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6868c70b25f025d5e290dc87ed4e77229d728991", + "fields": { + "code_commune_insee": "58285", + "nom_de_la_commune": "TAMNAY EN BAZOIS", + "code_postal": "58110", + "coordonnees_gps": [ + 47.0541382549, + 3.72330912305 + ], + "libelle_d_acheminement": "TAMNAY EN BAZOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72330912305, + 47.0541382549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51ff39eb5e17fccca598109e25ed1311ea099e31", + "fields": { + "code_commune_insee": "60104", + "nom_de_la_commune": "BRETEUIL", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6340425257, + 2.29183403499 + ], + "libelle_d_acheminement": "BRETEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29183403499, + 49.6340425257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f02ebeb676780a33c22c60f793f5e103ae4a5732", + "fields": { + "code_commune_insee": "58292", + "nom_de_la_commune": "TINTURY", + "code_postal": "58110", + "coordonnees_gps": [ + 47.0011371502, + 3.58766803098 + ], + "libelle_d_acheminement": "TINTURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58766803098, + 47.0011371502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d7f087757ccb4aaa686021a239ea4ac8962fe6b", + "fields": { + "code_commune_insee": "60111", + "nom_de_la_commune": "BROYES", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6277624015, + 2.45363892412 + ], + "libelle_d_acheminement": "BROYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45363892412, + 49.6277624015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ccf4c68f983e78749fcc1e60aca51e8cd85b367", + "fields": { + "code_commune_insee": "58293", + "nom_de_la_commune": "TOURY LURCY", + "code_postal": "58300", + "coordonnees_gps": [ + 46.7373495509, + 3.42432236339 + ], + "libelle_d_acheminement": "TOURY LURCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42432236339, + 46.7373495509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca0774421745c3bf70975d5f4e0e66d64506eb9", + "fields": { + "code_commune_insee": "60112", + "nom_de_la_commune": "BRUNVILLERS LA MOTTE", + "code_postal": "60130", + "coordonnees_gps": [ + 49.555566184, + 2.45376962705 + ], + "libelle_d_acheminement": "BRUNVILLERS LA MOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45376962705, + 49.555566184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce26bb0500619e7820a6f4ebf9acc4964ca6b6f0", + "fields": { + "code_commune_insee": "58297", + "nom_de_la_commune": "TROIS VEVRES", + "code_postal": "58260", + "coordonnees_gps": [ + 46.9112215122, + 3.42242349709 + ], + "libelle_d_acheminement": "TROIS VEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42242349709, + 46.9112215122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aa21335bdef3235471d13a4b74e513f5063ee5e", + "fields": { + "code_commune_insee": "60126", + "nom_de_la_commune": "CANNECTANCOURT", + "code_postal": "60310", + "coordonnees_gps": [ + 49.5483651127, + 2.89622271842 + ], + "libelle_d_acheminement": "CANNECTANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89622271842, + 49.5483651127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6870fbe2207ae3b560c2153c3ebbf4e1e17f521", + "fields": { + "code_commune_insee": "58299", + "nom_de_la_commune": "TRUCY L ORGUEILLEUX", + "code_postal": "58460", + "coordonnees_gps": [ + 47.4516802367, + 3.40054273995 + ], + "libelle_d_acheminement": "TRUCY L ORGUEILLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40054273995, + 47.4516802367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95bf06bae36724cca98a8b47cbc8cde1533b66a6", + "fields": { + "code_commune_insee": "60128", + "nom_de_la_commune": "CANNY SUR THERAIN", + "code_postal": "60220", + "coordonnees_gps": [ + 49.6080822276, + 1.71771760656 + ], + "libelle_d_acheminement": "CANNY SUR THERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71771760656, + 49.6080822276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e09ac3968958a9d73da9434ffb028126377322b", + "fields": { + "code_commune_insee": "58309", + "nom_de_la_commune": "VILLAPOURCON", + "code_postal": "58370", + "coordonnees_gps": [ + 46.9380595323, + 3.95652709792 + ], + "libelle_d_acheminement": "VILLAPOURCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95652709792, + 46.9380595323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e11fb53a7627820e2d5517cd9103d2e8dc39e1fd", + "fields": { + "code_commune_insee": "60131", + "nom_de_la_commune": "CATHEUX", + "code_postal": "60360", + "coordonnees_gps": [ + 49.6494174689, + 2.10545550049 + ], + "libelle_d_acheminement": "CATHEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10545550049, + 49.6494174689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dc4f57dc4d7d571aefc3619dec2fc4f6871b103", + "fields": { + "code_commune_insee": "58310", + "nom_de_la_commune": "VILLIERS LE SEC", + "code_postal": "58210", + "coordonnees_gps": [ + 47.3770117779, + 3.43752498324 + ], + "libelle_d_acheminement": "VILLIERS LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43752498324, + 47.3770117779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2e6b13f767c6d3b02fcae805e7537a3713e92d2", + "fields": { + "code_commune_insee": "60136", + "nom_de_la_commune": "CEMPUIS", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6575445065, + 1.98508588361 + ], + "libelle_d_acheminement": "CEMPUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98508588361, + 49.6575445065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d208b2889a9fe825d4a877ab11069b314f78aabd", + "fields": { + "code_commune_insee": "58313", + "nom_de_la_commune": "VITRY LACHE", + "code_postal": "58420", + "coordonnees_gps": [ + 47.1914761708, + 3.56906711354 + ], + "libelle_d_acheminement": "VITRY LACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56906711354, + 47.1914761708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "745c4d23fa367f741102751628f051a16706be09", + "fields": { + "code_commune_insee": "60137", + "nom_de_la_commune": "CERNOY", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4426355659, + 2.53929202364 + ], + "libelle_d_acheminement": "CERNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53929202364, + 49.4426355659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a37713dc18e6c45e74cdb619c7b75132c5a82742", + "fields": { + "code_commune_insee": "59001", + "nom_de_la_commune": "ABANCOURT", + "code_postal": "59268", + "coordonnees_gps": [ + 50.2368696873, + 3.20731301738 + ], + "libelle_d_acheminement": "ABANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20731301738, + 50.2368696873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7aac28b2777332c58cb6367991b18fd23f3471b", + "fields": { + "code_commune_insee": "60140", + "nom_de_la_commune": "CHAMBORS", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2601158315, + 1.81072865391 + ], + "libelle_d_acheminement": "CHAMBORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81072865391, + 49.2601158315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5115ec50670b84cef568392a02752b7fe6ed26f9", + "fields": { + "code_commune_insee": "59008", + "nom_de_la_commune": "ANICHE", + "code_postal": "59580", + "coordonnees_gps": [ + 50.330855319, + 3.25574141604 + ], + "libelle_d_acheminement": "ANICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25574141604, + 50.330855319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56c7184cd7e719878126979389e61602aeb58878", + "fields": { + "code_commune_insee": "60143", + "nom_de_la_commune": "CHAUMONT EN VEXIN", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2729979316, + 1.88182608902 + ], + "libelle_d_acheminement": "CHAUMONT EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88182608902, + 49.2729979316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46e8632a430d005b8c469c538b241ed443e37b33", + "fields": { + "ligne_5": "LE BIZET", + "code_commune_insee": "59017", + "libelle_d_acheminement": "ARMENTIERES", + "code_postal": "59280", + "nom_de_la_commune": "ARMENTIERES", + "coordonnees_gps": [ + 50.6913797537, + 2.8797155328 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8797155328, + 50.6913797537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1395954430ee787e027eeb06dd512cdb4b26e97", + "fields": { + "code_commune_insee": "60157", + "nom_de_la_commune": "CLERMONT", + "code_postal": "60600", + "coordonnees_gps": [ + 49.3777168975, + 2.40891709196 + ], + "libelle_d_acheminement": "CLERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40891709196, + 49.3777168975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa57183fce227e204e1a8bbab0a01704ca6cf3e1", + "fields": { + "code_commune_insee": "59022", + "nom_de_la_commune": "ATTICHES", + "code_postal": "59551", + "coordonnees_gps": [ + 50.5138938279, + 3.06223374765 + ], + "libelle_d_acheminement": "ATTICHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06223374765, + 50.5138938279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bacea6d937461b7ca0427f51144cd901fc3efe5", + "fields": { + "code_commune_insee": "60175", + "nom_de_la_commune": "CREIL", + "code_postal": "60100", + "coordonnees_gps": [ + 49.2533487138, + 2.48472669359 + ], + "libelle_d_acheminement": "CREIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48472669359, + 49.2533487138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "656b4c0d7639283d59fab4fadfd4c132885b1582", + "fields": { + "code_commune_insee": "59024", + "nom_de_la_commune": "AUBERCHICOURT", + "code_postal": "59165", + "coordonnees_gps": [ + 50.3299785774, + 3.22782402703 + ], + "libelle_d_acheminement": "AUBERCHICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22782402703, + 50.3299785774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e42438bef6fa0e5eab28ba8c545b5d582ce5f1e8", + "fields": { + "code_commune_insee": "60182", + "nom_de_la_commune": "LE CROCQ", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6208925269, + 2.18869008805 + ], + "libelle_d_acheminement": "LE CROCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18869008805, + 49.6208925269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96e2fa390bea3d790e177c988a2c97a4e9f27477", + "fields": { + "code_commune_insee": "59025", + "nom_de_la_commune": "AUBERS", + "code_postal": "59249", + "coordonnees_gps": [ + 50.5960514415, + 2.81995366841 + ], + "libelle_d_acheminement": "AUBERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81995366841, + 50.5960514415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "437e4dd53462b51df7ec9fb491a2fa848a7a7df4", + "fields": { + "code_commune_insee": "60184", + "nom_de_la_commune": "CROUTOY", + "code_postal": "60350", + "coordonnees_gps": [ + 49.3772107204, + 3.03575847593 + ], + "libelle_d_acheminement": "CROUTOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03575847593, + 49.3772107204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7b5cd1c0b7442365b74e96174c89672bea94c05", + "fields": { + "code_commune_insee": "59039", + "nom_de_la_commune": "AWOINGT", + "code_postal": "59400", + "coordonnees_gps": [ + 50.153637436, + 3.28601914646 + ], + "libelle_d_acheminement": "AWOINGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28601914646, + 50.153637436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beee614c51374801fd55a19fbffa0089086982ee", + "fields": { + "code_commune_insee": "60186", + "nom_de_la_commune": "CUIGNIERES", + "code_postal": "60130", + "coordonnees_gps": [ + 49.4481411967, + 2.4717178571 + ], + "libelle_d_acheminement": "CUIGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4717178571, + 49.4481411967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "488d13a8fb5e8773cecfd46e323931a99267b3e1", + "fields": { + "code_commune_insee": "59041", + "nom_de_la_commune": "BACHANT", + "code_postal": "59138", + "coordonnees_gps": [ + 50.2081006997, + 3.8751600192 + ], + "libelle_d_acheminement": "BACHANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8751600192, + 50.2081006997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e637cd2882e64f1a9d8f82c567f8e11f3bc4e20", + "fields": { + "code_commune_insee": "60192", + "nom_de_la_commune": "CUY", + "code_postal": "60310", + "coordonnees_gps": [ + 49.5855409296, + 2.90969070334 + ], + "libelle_d_acheminement": "CUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90969070334, + 49.5855409296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f8ab4559642dd36d06ec3eec3997a98a642d301", + "fields": { + "code_commune_insee": "59042", + "nom_de_la_commune": "BACHY", + "code_postal": "59830", + "coordonnees_gps": [ + 50.5435916608, + 3.26883958433 + ], + "libelle_d_acheminement": "BACHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26883958433, + 50.5435916608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "162cfbf21804077dc9c07754a105a62a0d7df34d", + "fields": { + "code_commune_insee": "60195", + "nom_de_la_commune": "DELINCOURT", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2396598274, + 1.83241773712 + ], + "libelle_d_acheminement": "DELINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83241773712, + 49.2396598274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "441f44f8db7b8dadf08699baf2844bc908a8e3b8", + "fields": { + "ligne_5": "MONT NOIR", + "code_commune_insee": "59043", + "libelle_d_acheminement": "BAILLEUL", + "code_postal": "59270", + "nom_de_la_commune": "BAILLEUL", + "coordonnees_gps": [ + 50.7274252798, + 2.7379912081 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7379912081, + 50.7274252798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf20b9941b9170e965e95b4611bbf28a66267ecb", + "fields": { + "code_commune_insee": "60201", + "nom_de_la_commune": "DOMPIERRE", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5927370104, + 2.53422054952 + ], + "libelle_d_acheminement": "DOMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53422054952, + 49.5927370104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63090393aedaf080f485e4ee75d5aed90e5d41bb", + "fields": { + "code_commune_insee": "59045", + "nom_de_la_commune": "BAIVES", + "code_postal": "59132", + "coordonnees_gps": [ + 50.0673923236, + 4.20393625141 + ], + "libelle_d_acheminement": "BAIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20393625141, + 50.0673923236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c13b4f0d8cb53997e53417c91f48b303f30cc150", + "fields": { + "code_commune_insee": "60204", + "nom_de_la_commune": "ECUVILLY", + "code_postal": "60310", + "coordonnees_gps": [ + 49.6473710219, + 2.91673971975 + ], + "libelle_d_acheminement": "ECUVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91673971975, + 49.6473710219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7444844dacd4adc03261b6f1d4387b4f65e051ed", + "fields": { + "code_commune_insee": "59046", + "nom_de_la_commune": "BAMBECQUE", + "code_postal": "59470", + "coordonnees_gps": [ + 50.9087831017, + 2.56046766711 + ], + "libelle_d_acheminement": "BAMBECQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56046766711, + 50.9087831017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff75191f46eb09b5f65e70d15ed13d3fbfe5da5b", + "fields": { + "ligne_5": "BOISSY LE BOIS", + "code_commune_insee": "60209", + "libelle_d_acheminement": "LA CORNE EN VEXIN", + "code_postal": "60240", + "nom_de_la_commune": "LA CORNE EN VEXIN", + "coordonnees_gps": [ + 49.295556054, + 1.91817578256 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91817578256, + 49.295556054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d60fe3b28d8268129caaf79ecef84f9d99d77dcb", + "fields": { + "code_commune_insee": "59048", + "nom_de_la_commune": "BANTIGNY", + "code_postal": "59554", + "coordonnees_gps": [ + 50.2342835957, + 3.23612444557 + ], + "libelle_d_acheminement": "BANTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23612444557, + 50.2342835957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa43e8133816a1b85c8a86c510f3ca9e512fec6a", + "fields": { + "ligne_5": "ENENCOURT LE SEC", + "code_commune_insee": "60209", + "libelle_d_acheminement": "LA CORNE EN VEXIN", + "code_postal": "60240", + "nom_de_la_commune": "LA CORNE EN VEXIN", + "coordonnees_gps": [ + 49.295556054, + 1.91817578256 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91817578256, + 49.295556054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0b96fc4484348c1de1eb1a183c22ea57580bcc8", + "fields": { + "code_commune_insee": "59050", + "nom_de_la_commune": "BAS LIEU", + "code_postal": "59440", + "coordonnees_gps": [ + 50.1443528184, + 3.95104519087 + ], + "libelle_d_acheminement": "BAS LIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95104519087, + 50.1443528184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48988e23ca95b6611e5476f48c2d623f37e89a25", + "fields": { + "code_commune_insee": "60217", + "nom_de_la_commune": "ESCAMES", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5565711127, + 1.80571620416 + ], + "libelle_d_acheminement": "ESCAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80571620416, + 49.5565711127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4154758cec95adbc4d42ad9188f16d32a5c4fe6", + "fields": { + "code_commune_insee": "59060", + "nom_de_la_commune": "BEAURAIN", + "code_postal": "59730", + "coordonnees_gps": [ + 50.1779797016, + 3.55059200886 + ], + "libelle_d_acheminement": "BEAURAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55059200886, + 50.1779797016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7af20da6a6a39442797ad11fa5460a418f0af989", + "fields": { + "code_commune_insee": "60220", + "nom_de_la_commune": "ESPAUBOURG", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4241291278, + 1.8655489571 + ], + "libelle_d_acheminement": "ESPAUBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8655489571, + 49.4241291278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f09a60efa692561d52f484eb5372bffde0dc84d", + "fields": { + "code_commune_insee": "59062", + "nom_de_la_commune": "BEAURIEUX", + "code_postal": "59740", + "coordonnees_gps": [ + 50.1779588737, + 4.13702062275 + ], + "libelle_d_acheminement": "BEAURIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13702062275, + 50.1779588737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "add2f308c3bd09552ef6f914ec33059c03df49ab", + "fields": { + "code_commune_insee": "60222", + "nom_de_la_commune": "ESSUILES", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4802122478, + 2.28119101511 + ], + "libelle_d_acheminement": "ESSUILES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28119101511, + 49.4802122478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3568d908b9fce578f20148aacd14fe1210b26196", + "fields": { + "code_commune_insee": "59072", + "nom_de_la_commune": "BERSILLIES", + "code_postal": "59600", + "coordonnees_gps": [ + 50.3244968872, + 3.99559417236 + ], + "libelle_d_acheminement": "BERSILLIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99559417236, + 50.3244968872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4704e489ccd2d319e257fc81a76ce51a86e616e", + "fields": { + "code_commune_insee": "60236", + "nom_de_la_commune": "FLAVY LE MELDEUX", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6851555754, + 3.0475541502 + ], + "libelle_d_acheminement": "FLAVY LE MELDEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0475541502, + 49.6851555754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b2143da3e8baa823ae715feec2dae5567b0afa0", + "fields": { + "code_commune_insee": "59073", + "nom_de_la_commune": "BERTHEN", + "code_postal": "59270", + "coordonnees_gps": [ + 50.7779383016, + 2.6875622719 + ], + "libelle_d_acheminement": "BERTHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6875622719, + 50.7779383016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08501f2f66e174361b4a6c6491420dfc332fa39d", + "fields": { + "code_commune_insee": "60238", + "nom_de_la_commune": "FLEURINES", + "code_postal": "60700", + "coordonnees_gps": [ + 49.2623361218, + 2.59258349492 + ], + "libelle_d_acheminement": "FLEURINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59258349492, + 49.2623361218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b207c894eba247f50ffe35741aea1500d6911232", + "fields": { + "code_commune_insee": "59091", + "nom_de_la_commune": "BORRE", + "code_postal": "59190", + "coordonnees_gps": [ + 50.731528018, + 2.58086143092 + ], + "libelle_d_acheminement": "BORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58086143092, + 50.731528018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b96eaeb7e0fc2c989b634ae919d54174d4d36ee", + "fields": { + "code_commune_insee": "60239", + "nom_de_la_commune": "FLEURY", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2456151425, + 1.96684307339 + ], + "libelle_d_acheminement": "FLEURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96684307339, + 49.2456151425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c02902951078d473cd5601f4a61a473ac3c0217", + "fields": { + "ligne_5": "BASSIN ROND", + "code_commune_insee": "59092", + "libelle_d_acheminement": "BOUCHAIN", + "code_postal": "59111", + "nom_de_la_commune": "BOUCHAIN", + "coordonnees_gps": [ + 50.2808463643, + 3.3121651121 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3121651121, + 50.2808463643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e799092835ed8994bf9762d462b8182a8b5754aa", + "fields": { + "code_commune_insee": "60262", + "nom_de_la_commune": "LE FRESTOY VAUX", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5962921933, + 2.60833323074 + ], + "libelle_d_acheminement": "LE FRESTOY VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60833323074, + 49.5962921933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13a24b779e0d9ca74a24bb08f53e1ca560cd93c9", + "fields": { + "code_commune_insee": "59094", + "nom_de_la_commune": "BOURBOURG", + "code_postal": "59630", + "coordonnees_gps": [ + 50.9424001702, + 2.20355448436 + ], + "libelle_d_acheminement": "BOURBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20355448436, + 50.9424001702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5625347c74fa31f94ba8e0e2921d8bc13ec6f8fb", + "fields": { + "code_commune_insee": "60268", + "nom_de_la_commune": "GANNES", + "code_postal": "60120", + "coordonnees_gps": [ + 49.5738621459, + 2.4192438931 + ], + "libelle_d_acheminement": "GANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4192438931, + 49.5738621459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95feac3f4e15b121fb3429e4204c8772ba50de94", + "fields": { + "code_commune_insee": "59099", + "nom_de_la_commune": "BOUSIES", + "code_postal": "59222", + "coordonnees_gps": [ + 50.151363705, + 3.61511089589 + ], + "libelle_d_acheminement": "BOUSIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61511089589, + 50.151363705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0068dc0b931eff5a6e2369c634177a74cb07a90a", + "fields": { + "code_commune_insee": "60273", + "nom_de_la_commune": "GIRAUMONT", + "code_postal": "60150", + "coordonnees_gps": [ + 49.4737037715, + 2.82476712242 + ], + "libelle_d_acheminement": "GIRAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82476712242, + 49.4737037715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f112f8a8e4d446df7aaddd9c6301eeee5d690b1e", + "fields": { + "code_commune_insee": "59108", + "nom_de_la_commune": "BRIASTRE", + "code_postal": "59730", + "coordonnees_gps": [ + 50.154815937, + 3.48675100947 + ], + "libelle_d_acheminement": "BRIASTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48675100947, + 50.154815937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45dafbff31c1ae4b558b84f8dae44e7c5c25834a", + "fields": { + "code_commune_insee": "60281", + "nom_de_la_commune": "GOURNAY SUR ARONDE", + "code_postal": "60190", + "coordonnees_gps": [ + 49.500679776, + 2.69144488848 + ], + "libelle_d_acheminement": "GOURNAY SUR ARONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69144488848, + 49.500679776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da313fe9463ba2e9ed3fbefda45a50c079635230", + "fields": { + "code_commune_insee": "59110", + "nom_de_la_commune": "BROUCKERQUE", + "code_postal": "59630", + "coordonnees_gps": [ + 50.9515630712, + 2.28707334994 + ], + "libelle_d_acheminement": "BROUCKERQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28707334994, + 50.9515630712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b0de1255e4c22c9c7a44c673fc1b8f2b948dafc", + "fields": { + "code_commune_insee": "60285", + "nom_de_la_commune": "GRANDVILLERS AUX BOIS", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4641649904, + 2.60552551813 + ], + "libelle_d_acheminement": "GRANDVILLERS AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60552551813, + 49.4641649904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e744b3ce01730f3864301afa2e80f8b3ccabca02", + "fields": { + "code_commune_insee": "59117", + "nom_de_la_commune": "BUGNICOURT", + "code_postal": "59151", + "coordonnees_gps": [ + 50.2910659273, + 3.15468753018 + ], + "libelle_d_acheminement": "BUGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15468753018, + 50.2910659273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13ae24e9ae37c440d05e6a488bbb5972d9fc7e6f", + "fields": { + "code_commune_insee": "60290", + "nom_de_la_commune": "GUIGNECOURT", + "code_postal": "60480", + "coordonnees_gps": [ + 49.4868854532, + 2.12865823482 + ], + "libelle_d_acheminement": "GUIGNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12865823482, + 49.4868854532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f3ca16caa621261b1576691c0692d0a09e4fd47", + "fields": { + "code_commune_insee": "59138", + "nom_de_la_commune": "CATTENIERES", + "code_postal": "59217", + "coordonnees_gps": [ + 50.1329900452, + 3.33660861697 + ], + "libelle_d_acheminement": "CATTENIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33660861697, + 50.1329900452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e050241b75b65e9f4215f6fa6c6ed5e9127918da", + "fields": { + "code_commune_insee": "60294", + "nom_de_la_commune": "HAINVILLERS", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5909803966, + 2.68189967625 + ], + "libelle_d_acheminement": "HAINVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68189967625, + 49.5909803966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9238b0f0140380149212bcc6711fa371596a153a", + "fields": { + "code_commune_insee": "59140", + "nom_de_la_commune": "CAULLERY", + "code_postal": "59191", + "coordonnees_gps": [ + 50.0824546804, + 3.37276572782 + ], + "libelle_d_acheminement": "CAULLERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37276572782, + 50.0824546804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfab10ce2805b71b655414b059fa70247699f953", + "fields": { + "code_commune_insee": "60295", + "nom_de_la_commune": "HALLOY", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6498614207, + 1.9366921667 + ], + "libelle_d_acheminement": "HALLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9366921667, + 49.6498614207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b718b1949f2a4fcce573c62d9b21144eecb1f5f2", + "fields": { + "code_commune_insee": "59141", + "nom_de_la_commune": "CAUROIR", + "code_postal": "59400", + "coordonnees_gps": [ + 50.1720373952, + 3.29914293305 + ], + "libelle_d_acheminement": "CAUROIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29914293305, + 50.1720373952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcb281033244b7a57ced6ebb423f658bff2c1cfb", + "fields": { + "code_commune_insee": "60299", + "nom_de_la_commune": "HARDIVILLERS", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6190429969, + 2.22471392321 + ], + "libelle_d_acheminement": "HARDIVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22471392321, + 49.6190429969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac3879b81b3ec3c30e71c241de9ae97632dc3b51", + "fields": { + "code_commune_insee": "59148", + "nom_de_la_commune": "CLAIRFAYTS", + "code_postal": "59740", + "coordonnees_gps": [ + 50.1564472386, + 4.12464922424 + ], + "libelle_d_acheminement": "CLAIRFAYTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12464922424, + 50.1564472386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fc6224627fb5e348603ee31dbb3e20c6a294c16", + "fields": { + "code_commune_insee": "60301", + "nom_de_la_commune": "HAUCOURT", + "code_postal": "60112", + "coordonnees_gps": [ + 49.5061935577, + 1.93107451004 + ], + "libelle_d_acheminement": "HAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93107451004, + 49.5061935577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aa024e9e1292be9705c5963c8bad105e4b10ea7", + "fields": { + "code_commune_insee": "59152", + "nom_de_la_commune": "COMINES", + "code_postal": "59560", + "coordonnees_gps": [ + 50.7497420422, + 3.01679477405 + ], + "libelle_d_acheminement": "COMINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01679477405, + 50.7497420422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a637c88cfe39464b3013b49f6ae4cd3c54660631", + "fields": { + "code_commune_insee": "60307", + "nom_de_la_commune": "HEILLES", + "code_postal": "60250", + "coordonnees_gps": [ + 49.3330867142, + 2.26963680088 + ], + "libelle_d_acheminement": "HEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26963680088, + 49.3330867142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a70f30bd3e81ae6cde34ac719400242d6cb7862", + "fields": { + "code_commune_insee": "59162", + "nom_de_la_commune": "CROCHTE", + "code_postal": "59380", + "coordonnees_gps": [ + 50.9238758959, + 2.39595026667 + ], + "libelle_d_acheminement": "CROCHTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39595026667, + 50.9238758959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b105a99266547f96bdbcf2dca3976258d8ced9e2", + "fields": { + "code_commune_insee": "60313", + "nom_de_la_commune": "HERMES", + "code_postal": "60370", + "coordonnees_gps": [ + 49.3590736605, + 2.25601407563 + ], + "libelle_d_acheminement": "HERMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25601407563, + 49.3590736605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e51870d2d6e0c8411eabe3760dfadc1389f2b920", + "fields": { + "code_commune_insee": "59164", + "nom_de_la_commune": "CROIX CALUYAU", + "code_postal": "59222", + "coordonnees_gps": [ + 50.152088377, + 3.58548579583 + ], + "libelle_d_acheminement": "CROIX CALUYAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58548579583, + 50.152088377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5a0e671b6e57d099d76002ebb8b74b1af51ad3c", + "fields": { + "code_commune_insee": "60323", + "nom_de_la_commune": "JANVILLE", + "code_postal": "60150", + "coordonnees_gps": [ + 49.4539462268, + 2.85882891775 + ], + "libelle_d_acheminement": "JANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85882891775, + 49.4539462268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b97a6617b9b4f8e822bcfd769fdcc5f8f19f9598", + "fields": { + "code_commune_insee": "59168", + "nom_de_la_commune": "CYSOING", + "code_postal": "59830", + "coordonnees_gps": [ + 50.5639123041, + 3.21398704215 + ], + "libelle_d_acheminement": "CYSOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21398704215, + 50.5639123041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b44982f7a0ce7fb2ab7d120080e1d2af7ef925a", + "fields": { + "code_commune_insee": "60330", + "nom_de_la_commune": "LABOISSIERE EN THELLE", + "code_postal": "60570", + "coordonnees_gps": [ + 49.287058167, + 2.15238634007 + ], + "libelle_d_acheminement": "LABOISSIERE EN THELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15238634007, + 49.287058167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53c059f8f9672404ac4ecfd12fad60768d065a77", + "fields": { + "code_commune_insee": "59181", + "nom_de_la_commune": "DOURLERS", + "code_postal": "59440", + "coordonnees_gps": [ + 50.1745636905, + 3.94546756925 + ], + "libelle_d_acheminement": "DOURLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94546756925, + 50.1745636905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51213811557e347a5dc133bb341eb4cb7931e8fd", + "fields": { + "code_commune_insee": "60332", + "nom_de_la_commune": "LABRUYERE", + "code_postal": "60140", + "coordonnees_gps": [ + 49.3527272314, + 2.50769568365 + ], + "libelle_d_acheminement": "LABRUYERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50769568365, + 49.3527272314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b28fd2fcd6da921618882db70d3e227ad78e38d1", + "fields": { + "ligne_5": "ST POL SUR MER", + "code_commune_insee": "59183", + "libelle_d_acheminement": "DUNKERQUE", + "code_postal": "59430", + "nom_de_la_commune": "DUNKERQUE", + "coordonnees_gps": [ + 51.0307229078, + 2.33752414095 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33752414095, + 51.0307229078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f76b5a2f9e485135a572f4c1038d82758b768d3", + "fields": { + "code_commune_insee": "60333", + "nom_de_la_commune": "LACHAPELLE AUX POTS", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4470304298, + 1.92181255596 + ], + "libelle_d_acheminement": "LACHAPELLE AUX POTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92181255596, + 49.4470304298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd5bec815ad173a0b358f86d0ee27a757144bef5", + "fields": { + "ligne_5": "PETITE SYNTHE", + "code_commune_insee": "59183", + "libelle_d_acheminement": "DUNKERQUE", + "code_postal": "59640", + "nom_de_la_commune": "DUNKERQUE", + "coordonnees_gps": [ + 51.0307229078, + 2.33752414095 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33752414095, + 51.0307229078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fee978361c3da604baf2c7eab32562a59620797a", + "fields": { + "code_commune_insee": "60339", + "nom_de_la_commune": "LAFRAYE", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4944510627, + 2.21159932191 + ], + "libelle_d_acheminement": "LAFRAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21159932191, + 49.4944510627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "920acf4f5437665e5fbaadfee90aed36d6dde385", + "fields": { + "code_commune_insee": "59194", + "nom_de_la_commune": "ENGLEFONTAINE", + "code_postal": "59530", + "coordonnees_gps": [ + 50.1933240477, + 3.64157019307 + ], + "libelle_d_acheminement": "ENGLEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64157019307, + 50.1933240477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afc9239a00abfbfa6a6a97684dd9a9f806ca4190", + "fields": { + "code_commune_insee": "60350", + "nom_de_la_commune": "LASSIGNY", + "code_postal": "60310", + "coordonnees_gps": [ + 49.5999941571, + 2.84362090335 + ], + "libelle_d_acheminement": "LASSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84362090335, + 49.5999941571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3363161925505da196e3336100c43c560d5f4a25", + "fields": { + "code_commune_insee": "59199", + "nom_de_la_commune": "ERCHIN", + "code_postal": "59169", + "coordonnees_gps": [ + 50.3168262116, + 3.17348026694 + ], + "libelle_d_acheminement": "ERCHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17348026694, + 50.3168262116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c791d663bbf1b5805ee265aa06734657c5f88ecb", + "fields": { + "code_commune_insee": "60356", + "nom_de_la_commune": "LAVILLETERTRE", + "code_postal": "60240", + "coordonnees_gps": [ + 49.1905049391, + 1.9341708115 + ], + "libelle_d_acheminement": "LAVILLETERTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9341708115, + 49.1905049391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0e4168e83686a4c88edd97cb6542a3f204e2236", + "fields": { + "code_commune_insee": "59200", + "nom_de_la_commune": "ERINGHEM", + "code_postal": "59470", + "coordonnees_gps": [ + 50.889329927, + 2.31351250902 + ], + "libelle_d_acheminement": "ERINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31351250902, + 50.889329927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8219ea6e208ff7596525f7d039171d64051972e7", + "fields": { + "code_commune_insee": "60371", + "nom_de_la_commune": "LOUEUSE", + "code_postal": "60380", + "coordonnees_gps": [ + 49.593084675, + 1.8304724622 + ], + "libelle_d_acheminement": "LOUEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8304724622, + 49.593084675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3b355e1d511ac89306717788ca82aab14daf9d2", + "fields": { + "code_commune_insee": "59201", + "nom_de_la_commune": "ERQUINGHEM LE SEC", + "code_postal": "59320", + "coordonnees_gps": [ + 50.6103293262, + 2.93381789085 + ], + "libelle_d_acheminement": "ERQUINGHEM LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93381789085, + 50.6103293262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6b5b87503a2b9ec22864c9f0a4298aa1f4394e8", + "fields": { + "code_commune_insee": "60372", + "nom_de_la_commune": "LUCHY", + "code_postal": "60360", + "coordonnees_gps": [ + 49.5519072556, + 2.11494855936 + ], + "libelle_d_acheminement": "LUCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11494855936, + 49.5519072556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e58124778b439cb73ee7dc2acf7a6518d1da5f13", + "fields": { + "code_commune_insee": "59202", + "nom_de_la_commune": "ERQUINGHEM LYS", + "code_postal": "59193", + "coordonnees_gps": [ + 50.6700847929, + 2.84140786831 + ], + "libelle_d_acheminement": "ERQUINGHEM LYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84140786831, + 50.6700847929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa5b47fb92f75270bb7ee0bf6105f39cbeea596b", + "fields": { + "code_commune_insee": "60373", + "nom_de_la_commune": "MACHEMONT", + "code_postal": "60150", + "coordonnees_gps": [ + 49.5099441905, + 2.875553005 + ], + "libelle_d_acheminement": "MACHEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.875553005, + 49.5099441905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1c05890d30c166e34ba88ce1d508ddb57a95c2c", + "fields": { + "code_commune_insee": "59203", + "nom_de_la_commune": "ERRE", + "code_postal": "59171", + "coordonnees_gps": [ + 50.3693524443, + 3.31597211762 + ], + "libelle_d_acheminement": "ERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31597211762, + 50.3693524443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef441eb2437959d90821de2cb5921b4f1638bbdf", + "fields": { + "code_commune_insee": "60374", + "nom_de_la_commune": "MAIGNELAY MONTIGNY", + "code_postal": "60420", + "coordonnees_gps": [ + 49.548179093, + 2.51320633248 + ], + "libelle_d_acheminement": "MAIGNELAY MONTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51320633248, + 49.548179093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afbf01367c561fa4fb442508aabfa75ab1984825", + "fields": { + "code_commune_insee": "59208", + "nom_de_la_commune": "ESCOBECQUES", + "code_postal": "59320", + "coordonnees_gps": [ + 50.6212631237, + 2.93273720306 + ], + "libelle_d_acheminement": "ESCOBECQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93273720306, + 50.6212631237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "460d91834ed71425337bf272658d1f39ff92f7ea", + "fields": { + "code_commune_insee": "60388", + "nom_de_la_commune": "MARTINCOURT", + "code_postal": "60112", + "coordonnees_gps": [ + 49.5301768343, + 1.90447241773 + ], + "libelle_d_acheminement": "MARTINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90447241773, + 49.5301768343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a202b75d392e6373b82c122732d03b0f1e456314", + "fields": { + "code_commune_insee": "59210", + "nom_de_la_commune": "ESQUELBECQ", + "code_postal": "59470", + "coordonnees_gps": [ + 50.8902971553, + 2.42902144416 + ], + "libelle_d_acheminement": "ESQUELBECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42902144416, + 50.8902971553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f03df82f0914f9617a47d954059c34470a9bdc0", + "fields": { + "code_commune_insee": "60389", + "nom_de_la_commune": "MAUCOURT", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6325787646, + 3.07814267123 + ], + "libelle_d_acheminement": "MAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07814267123, + 49.6325787646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14e6f386c1aa9e77a465484438f135c5cc67e400", + "fields": { + "code_commune_insee": "59214", + "nom_de_la_commune": "ESTREES", + "code_postal": "59151", + "coordonnees_gps": [ + 50.2977355864, + 3.07513052042 + ], + "libelle_d_acheminement": "ESTREES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07513052042, + 50.2977355864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67ac9ee462d50342153db91a03799bb3c431ccbd", + "fields": { + "code_commune_insee": "60396", + "nom_de_la_commune": "MERY LA BATAILLE", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5442353409, + 2.6306106736 + ], + "libelle_d_acheminement": "MERY LA BATAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6306106736, + 49.5442353409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3afe335475eb10dc03bde5bab813aef78571acb3", + "fields": { + "code_commune_insee": "59218", + "nom_de_la_commune": "ETROEUNGT", + "code_postal": "59219", + "coordonnees_gps": [ + 50.0620601477, + 3.94319652795 + ], + "libelle_d_acheminement": "ETROEUNGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94319652795, + 50.0620601477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b762a039798c255a72cd3f0a928f12f69755271", + "fields": { + "code_commune_insee": "60398", + "nom_de_la_commune": "LE MESNIL EN THELLE", + "code_postal": "60530", + "coordonnees_gps": [ + 49.1755288467, + 2.28195991466 + ], + "libelle_d_acheminement": "LE MESNIL EN THELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28195991466, + 49.1755288467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a03e0ad05d000c0d6a296130c596865acfd8514", + "fields": { + "code_commune_insee": "59219", + "nom_de_la_commune": "ESTRUN", + "code_postal": "59295", + "coordonnees_gps": [ + 50.2447242764, + 3.29498867507 + ], + "libelle_d_acheminement": "ESTRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29498867507, + 50.2447242764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa79536095c5d59a0b85f070238f0e6165b913bc", + "fields": { + "code_commune_insee": "60399", + "nom_de_la_commune": "LE MESNIL ST FIRMIN", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6259590704, + 2.41044983882 + ], + "libelle_d_acheminement": "LE MESNIL ST FIRMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41044983882, + 49.6259590704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb467282b38d50d519196e2041de3df207405a62", + "fields": { + "ligne_5": "DOUZIES FEIGNIES", + "code_commune_insee": "59225", + "libelle_d_acheminement": "FEIGNIES", + "code_postal": "59750", + "nom_de_la_commune": "FEIGNIES", + "coordonnees_gps": [ + 50.2944744456, + 3.90909278075 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90909278075, + 50.2944744456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cba86d02bb297d4d6ae7f04384b7682aab49500", + "fields": { + "code_commune_insee": "60410", + "nom_de_la_commune": "MONDESCOURT", + "code_postal": "60400", + "coordonnees_gps": [ + 49.6007632459, + 3.10933333116 + ], + "libelle_d_acheminement": "MONDESCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10933333116, + 49.6007632459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba1ead2fde843860161b18e1ef9e42361d9db2f2", + "fields": { + "code_commune_insee": "59226", + "nom_de_la_commune": "FELLERIES", + "code_postal": "59740", + "coordonnees_gps": [ + 50.1407847953, + 4.05118081621 + ], + "libelle_d_acheminement": "FELLERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05118081621, + 50.1407847953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faa6b4efbf3b3b8393ddd009e61369984810fb6b", + "fields": { + "code_commune_insee": "60412", + "nom_de_la_commune": "MONTAGNY EN VEXIN", + "code_postal": "60240", + "coordonnees_gps": [ + 49.1937559871, + 1.7963074166 + ], + "libelle_d_acheminement": "MONTAGNY EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7963074166, + 49.1937559871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37affbc68a79f75c5e7705a88fa98c46c1edfc49", + "fields": { + "code_commune_insee": "59231", + "nom_de_la_commune": "FERRIERE LA PETITE", + "code_postal": "59680", + "coordonnees_gps": [ + 50.2403988666, + 4.02739766598 + ], + "libelle_d_acheminement": "FERRIERE LA PETITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02739766598, + 50.2403988666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "018eb155d75d5361c344a0cd35bdb6fb30b36839", + "fields": { + "code_commune_insee": "60424", + "nom_de_la_commune": "MONTMARTIN", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4662692846, + 2.69750550928 + ], + "libelle_d_acheminement": "MONTMARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69750550928, + 49.4662692846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c4fb0e0ba4d14c8b7d3771dd68cb4fd913637fb", + "fields": { + "code_commune_insee": "59242", + "nom_de_la_commune": "FONTAINE AU BOIS", + "code_postal": "59550", + "coordonnees_gps": [ + 50.1363749485, + 3.64250579372 + ], + "libelle_d_acheminement": "FONTAINE AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64250579372, + 50.1363749485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58b669875e69fff2e6c7b6ef212fdfa6ef43fd7b", + "fields": { + "code_commune_insee": "60430", + "nom_de_la_commune": "MORIENVAL", + "code_postal": "60127", + "coordonnees_gps": [ + 49.3104709662, + 2.93003968872 + ], + "libelle_d_acheminement": "MORIENVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93003968872, + 49.3104709662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ac5916fb7487c385a41a0058cf0937e475e69e3", + "fields": { + "code_commune_insee": "59249", + "nom_de_la_commune": "FOURMIES", + "code_postal": "59610", + "coordonnees_gps": [ + 50.006893732, + 4.05775002509 + ], + "libelle_d_acheminement": "FOURMIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05775002509, + 50.006893732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13700acade1642d9beb4528501f46ba92e76c7fa", + "fields": { + "code_commune_insee": "60443", + "nom_de_la_commune": "MUIRANCOURT", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6485015114, + 3.00199557071 + ], + "libelle_d_acheminement": "MUIRANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00199557071, + 49.6485015114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b5215f17f23df96cb7bc9b39da58ad07bb774fd", + "fields": { + "code_commune_insee": "59252", + "nom_de_la_commune": "FRELINGHIEN", + "code_postal": "59236", + "coordonnees_gps": [ + 50.703109663, + 2.95178380263 + ], + "libelle_d_acheminement": "FRELINGHIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95178380263, + 50.703109663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "662de81c033e4bfb318e4bd966d7e73a7f3aac08", + "fields": { + "code_commune_insee": "60447", + "nom_de_la_commune": "NERY", + "code_postal": "60320", + "coordonnees_gps": [ + 49.271310066, + 2.77130714289 + ], + "libelle_d_acheminement": "NERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77130714289, + 49.271310066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b73bd6dedbf56b964d13c11376263df68ba9fb3", + "fields": { + "code_commune_insee": "59256", + "nom_de_la_commune": "FRETIN", + "code_postal": "59273", + "coordonnees_gps": [ + 50.5653657611, + 3.1322045776 + ], + "libelle_d_acheminement": "FRETIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1322045776, + 50.5653657611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "286d24f075abc1a044d5e2f3d9f34bf5a80ddf54", + "fields": { + "code_commune_insee": "60454", + "nom_de_la_commune": "LA NEUVILLE EN HEZ", + "code_postal": "60510", + "coordonnees_gps": [ + 49.3865132805, + 2.32682912406 + ], + "libelle_d_acheminement": "LA NEUVILLE EN HEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32682912406, + 49.3865132805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36324c5e0e04fba39954b22e42fb9da7015c6416", + "fields": { + "code_commune_insee": "59258", + "nom_de_la_commune": "GENECH", + "code_postal": "59242", + "coordonnees_gps": [ + 50.5285200565, + 3.22237664062 + ], + "libelle_d_acheminement": "GENECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22237664062, + 50.5285200565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "959c53f2ec7c80ac489ea0f97a94e69209d2e50f", + "fields": { + "code_commune_insee": "60457", + "nom_de_la_commune": "LA NEUVILLE ST PIERRE", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5318909884, + 2.19557228619 + ], + "libelle_d_acheminement": "LA NEUVILLE ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19557228619, + 49.5318909884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a9195ef880601b25d5e15e2653c3b28650196cb", + "fields": { + "code_commune_insee": "59259", + "nom_de_la_commune": "GHISSIGNIES", + "code_postal": "59530", + "coordonnees_gps": [ + 50.2277589853, + 3.61633962969 + ], + "libelle_d_acheminement": "GHISSIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61633962969, + 50.2277589853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcbae64ae919f18165306822f68fd7daaecfa4c1", + "fields": { + "code_commune_insee": "60458", + "nom_de_la_commune": "LA NEUVILLE SUR OUDEUIL", + "code_postal": "60690", + "coordonnees_gps": [ + 49.5689583194, + 2.0136506967 + ], + "libelle_d_acheminement": "LA NEUVILLE SUR OUDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0136506967, + 49.5689583194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c86e23a0dfc439c33dfeb53f0520b846772d770e", + "fields": { + "ligne_5": "LES MOERES", + "code_commune_insee": "59260", + "libelle_d_acheminement": "GHYVELDE", + "code_postal": "59122", + "nom_de_la_commune": "GHYVELDE", + "coordonnees_gps": [ + 51.0486014481, + 2.51379722419 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51379722419, + 51.0486014481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3877d9cb739ad8e7f8552d64a7957d1b3ac1d2df", + "fields": { + "code_commune_insee": "60459", + "nom_de_la_commune": "LA NEUVILLE SUR RESSONS", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5514944714, + 2.74513879891 + ], + "libelle_d_acheminement": "LA NEUVILLE SUR RESSONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74513879891, + 49.5514944714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30726c7d8082af0e0a08f446bd5832463997389e", + "fields": { + "code_commune_insee": "59265", + "nom_de_la_commune": "GOMMEGNIES", + "code_postal": "59144", + "coordonnees_gps": [ + 50.2650047987, + 3.70836085584 + ], + "libelle_d_acheminement": "GOMMEGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70836085584, + 50.2650047987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2138c2ba29acf6d38c520083202e3298c2f486c4", + "fields": { + "code_commune_insee": "60460", + "nom_de_la_commune": "LA NEUVILLE VAULT", + "code_postal": "60112", + "coordonnees_gps": [ + 49.4890118867, + 1.96688277958 + ], + "libelle_d_acheminement": "LA NEUVILLE VAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96688277958, + 49.4890118867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c91131783e9a823eddbaf315b81e4eccc7bbd6b9", + "fields": { + "code_commune_insee": "59271", + "nom_de_la_commune": "GRANDE SYNTHE", + "code_postal": "59760", + "coordonnees_gps": [ + 51.0167874642, + 2.29071143357 + ], + "libelle_d_acheminement": "GRANDE SYNTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29071143357, + 51.0167874642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8675062944ec5fc3b247e48d4ed27377cdf4b4db", + "fields": { + "code_commune_insee": "60464", + "nom_de_la_commune": "NOINTEL", + "code_postal": "60840", + "coordonnees_gps": [ + 49.3828586322, + 2.48747358426 + ], + "libelle_d_acheminement": "NOINTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48747358426, + 49.3828586322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78e62a14ae7eecf2d0e6ceaf96825760346de637", + "fields": { + "code_commune_insee": "59285", + "nom_de_la_commune": "HASPRES", + "code_postal": "59198", + "coordonnees_gps": [ + 50.2650877152, + 3.41176296658 + ], + "libelle_d_acheminement": "HASPRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41176296658, + 50.2650877152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2671b4dc868b2091835e09b6217b33a169c63c0", + "fields": { + "code_commune_insee": "60465", + "nom_de_la_commune": "NOIREMONT", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5477774289, + 2.21412764409 + ], + "libelle_d_acheminement": "NOIREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21412764409, + 49.5477774289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64cd3a591b796ca99ed377b4f1e4ea11d3963b01", + "fields": { + "code_commune_insee": "59286", + "nom_de_la_commune": "HAUBOURDIN", + "code_postal": "59320", + "coordonnees_gps": [ + 50.6044150332, + 2.98727183184 + ], + "libelle_d_acheminement": "HAUBOURDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98727183184, + 50.6044150332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d784ef0e6bc91f3d321aa61e0c8bca9189c67785", + "fields": { + "code_commune_insee": "60466", + "nom_de_la_commune": "NOROY", + "code_postal": "60130", + "coordonnees_gps": [ + 49.4429608366, + 2.51040723734 + ], + "libelle_d_acheminement": "NOROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51040723734, + 49.4429608366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8e761e684be84131bcb8da7c44a5d4fa306a122", + "fields": { + "code_commune_insee": "59297", + "nom_de_la_commune": "HELESMES", + "code_postal": "59171", + "coordonnees_gps": [ + 50.3677526981, + 3.35840586833 + ], + "libelle_d_acheminement": "HELESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35840586833, + 50.3677526981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3228af223cf0306987998b76caacab38d23d310f", + "fields": { + "code_commune_insee": "60477", + "nom_de_la_commune": "ONS EN BRAY", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4170822922, + 1.91904543496 + ], + "libelle_d_acheminement": "ONS EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91904543496, + 49.4170822922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a981c36433a0d533520fc1476f9389dcf63ea754", + "fields": { + "code_commune_insee": "59308", + "nom_de_la_commune": "HONDEGHEM", + "code_postal": "59190", + "coordonnees_gps": [ + 50.7552272301, + 2.5153551845 + ], + "libelle_d_acheminement": "HONDEGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5153551845, + 50.7552272301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07f76fefcfc189f067d0f14df86d08f35f9feffc", + "fields": { + "code_commune_insee": "60478", + "nom_de_la_commune": "ORMOY LE DAVIEN", + "code_postal": "60620", + "coordonnees_gps": [ + 49.1960845952, + 2.95791288835 + ], + "libelle_d_acheminement": "ORMOY LE DAVIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95791288835, + 49.1960845952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c33afe9f298c17552937d1da14bbe641d687f3c7", + "fields": { + "code_commune_insee": "59313", + "nom_de_la_commune": "HORDAIN", + "code_postal": "59111", + "coordonnees_gps": [ + 50.2597936195, + 3.32675271349 + ], + "libelle_d_acheminement": "HORDAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32675271349, + 50.2597936195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24b507e9a45f3c4f5b4f47b7a504402d8fe42956", + "fields": { + "code_commune_insee": "60485", + "nom_de_la_commune": "OURSEL MAISON", + "code_postal": "60480", + "coordonnees_gps": [ + 49.6022006095, + 2.17775833249 + ], + "libelle_d_acheminement": "OURSEL MAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17775833249, + 49.6022006095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ed9a68668991151d97bd1150a682c44d62553ad", + "fields": { + "code_commune_insee": "59314", + "nom_de_la_commune": "HORNAING", + "code_postal": "59171", + "coordonnees_gps": [ + 50.3696239428, + 3.33594044996 + ], + "libelle_d_acheminement": "HORNAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33594044996, + 50.3696239428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeb6d5b2a785d2e3fb1419df98088af655c788ef", + "fields": { + "code_commune_insee": "60487", + "nom_de_la_commune": "PARNES", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2000876864, + 1.74905447896 + ], + "libelle_d_acheminement": "PARNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74905447896, + 49.2000876864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "150a94cec55abe46386205656657011e6a721861", + "fields": { + "code_commune_insee": "59329", + "nom_de_la_commune": "LAMBRES LEZ DOUAI", + "code_postal": "59552", + "coordonnees_gps": [ + 50.3542349649, + 3.05466709825 + ], + "libelle_d_acheminement": "LAMBRES LEZ DOUAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05466709825, + 50.3542349649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f964778902ead458f5c25070665fc54921b0bd5", + "fields": { + "code_commune_insee": "60489", + "nom_de_la_commune": "PEROY LES GOMBRIES", + "code_postal": "60440", + "coordonnees_gps": [ + 49.1656749464, + 2.84320631548 + ], + "libelle_d_acheminement": "PEROY LES GOMBRIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84320631548, + 49.1656749464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a437997068912ada3ec99f2e36446bbc38d90c1b", + "fields": { + "code_commune_insee": "59333", + "nom_de_la_commune": "LAROUILLIES", + "code_postal": "59219", + "coordonnees_gps": [ + 50.0378159159, + 3.93206496317 + ], + "libelle_d_acheminement": "LAROUILLIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93206496317, + 50.0378159159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64701a8c84e6c62243c753791ab0c9d755c65f9e", + "fields": { + "code_commune_insee": "60490", + "nom_de_la_commune": "PIERREFITTE EN BEAUVAISIS", + "code_postal": "60112", + "coordonnees_gps": [ + 49.4736179476, + 1.97936624141 + ], + "libelle_d_acheminement": "PIERREFITTE EN BEAUVAISIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97936624141, + 49.4736179476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a25114026cc9f1555a495350c7f898c641fec03", + "fields": { + "code_commune_insee": "59336", + "nom_de_la_commune": "LECLUSE", + "code_postal": "59259", + "coordonnees_gps": [ + 50.2765109082, + 3.03054584973 + ], + "libelle_d_acheminement": "LECLUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03054584973, + 50.2765109082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a69f6a53b5f5a4cf8bd46ddaf64616f71dd1aa20", + "fields": { + "code_commune_insee": "60496", + "nom_de_la_commune": "PLAINVILLE", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6129358636, + 2.44994653858 + ], + "libelle_d_acheminement": "PLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44994653858, + 49.6129358636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acbf3795273e470687e06123c10e7edf1a5940ac", + "fields": { + "code_commune_insee": "59340", + "nom_de_la_commune": "LEFFRINCKOUCKE", + "code_postal": "59495", + "coordonnees_gps": [ + 51.0479753617, + 2.45468596825 + ], + "libelle_d_acheminement": "LEFFRINCKOUCKE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45468596825, + 51.0479753617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "368e63ac2fbac7f860273d86380bf3e433e863da", + "fields": { + "code_commune_insee": "60498", + "nom_de_la_commune": "LE PLESSIER SUR ST JUST", + "code_postal": "60130", + "coordonnees_gps": [ + 49.5081515622, + 2.4596143307 + ], + "libelle_d_acheminement": "LE PLESSIER SUR ST JUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596143307, + 49.5081515622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab9a75249bb4bcedc94a03bc4e592aadfb3b44e5", + "fields": { + "code_commune_insee": "59345", + "nom_de_la_commune": "LEWARDE", + "code_postal": "59287", + "coordonnees_gps": [ + 50.3367323265, + 3.16865198714 + ], + "libelle_d_acheminement": "LEWARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16865198714, + 50.3367323265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2881968d589ac0a8a15f6ba58e5735cc8dff3c22", + "fields": { + "code_commune_insee": "60501", + "nom_de_la_commune": "LE PLESSIS BRION", + "code_postal": "60150", + "coordonnees_gps": [ + 49.4622196223, + 2.9084704643 + ], + "libelle_d_acheminement": "LE PLESSIS BRION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9084704643, + 49.4622196223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae21374fbed0eecdf1a8ccfa4a74ee373ebfca47", + "fields": { + "code_commune_insee": "59346", + "nom_de_la_commune": "LEZENNES", + "code_postal": "59260", + "coordonnees_gps": [ + 50.6111691928, + 3.11824226491 + ], + "libelle_d_acheminement": "LEZENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11824226491, + 50.6111691928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e04fe6ae2f287a85598f708842e6e081852d335", + "fields": { + "code_commune_insee": "60510", + "nom_de_la_commune": "PORCHEUX", + "code_postal": "60390", + "coordonnees_gps": [ + 49.3365218243, + 1.92395971009 + ], + "libelle_d_acheminement": "PORCHEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92395971009, + 49.3365218243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02de2c43ab05e88f0045aa1a8e99d0490f7aa209", + "fields": { + "ligne_5": "HELLEMMES LILLE", + "code_commune_insee": "59350", + "libelle_d_acheminement": "LILLE", + "code_postal": "59260", + "nom_de_la_commune": "LILLE", + "coordonnees_gps": [ + 50.6317183168, + 3.04783272312 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04783272312, + 50.6317183168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "976fd741ee4b2fe6dd6fabdfa3be30d0be72d960", + "fields": { + "code_commune_insee": "60517", + "nom_de_la_commune": "PUISEUX LE HAUBERGER", + "code_postal": "60540", + "coordonnees_gps": [ + 49.2180286454, + 2.23133735339 + ], + "libelle_d_acheminement": "PUISEUX LE HAUBERGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23133735339, + 49.2180286454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4a3ef9b2970b5d51711a3c4e656d383d58a783d", + "fields": { + "ligne_5": "EURALILLE", + "code_commune_insee": "59350", + "libelle_d_acheminement": "LILLE", + "code_postal": "59777", + "nom_de_la_commune": "LILLE", + "coordonnees_gps": [ + 50.6317183168, + 3.04783272312 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04783272312, + 50.6317183168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dc085b8f670ece45667b7035fdcd189a343b61e", + "fields": { + "code_commune_insee": "60520", + "nom_de_la_commune": "LE QUESNEL AUBRY", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5099695752, + 2.31447331085 + ], + "libelle_d_acheminement": "LE QUESNEL AUBRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31447331085, + 49.5099695752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03867ba46c8d1ea4a010c14aa8a10e141ff4f4a1", + "fields": { + "code_commune_insee": "59357", + "nom_de_la_commune": "LA LONGUEVILLE", + "code_postal": "59570", + "coordonnees_gps": [ + 50.2961357977, + 3.87102048316 + ], + "libelle_d_acheminement": "LA LONGUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87102048316, + 50.2961357977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cffebd5ae2d9323183a779623674f9f9765e522", + "fields": { + "code_commune_insee": "60525", + "nom_de_la_commune": "RARAY", + "code_postal": "60810", + "coordonnees_gps": [ + 49.263440205, + 2.71969043321 + ], + "libelle_d_acheminement": "RARAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71969043321, + 49.263440205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c64f00e8e66911a22f05a75d90f5c7a4258a6678", + "fields": { + "code_commune_insee": "59364", + "nom_de_la_commune": "LOUVIL", + "code_postal": "59830", + "coordonnees_gps": [ + 50.5567255467, + 3.18952793321 + ], + "libelle_d_acheminement": "LOUVIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18952793321, + 50.5567255467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "680d04773787b118fd54d7ceb7e4347b841e02f4", + "fields": { + "code_commune_insee": "60534", + "nom_de_la_commune": "RETHONDES", + "code_postal": "60153", + "coordonnees_gps": [ + 49.4289952434, + 2.94460226209 + ], + "libelle_d_acheminement": "RETHONDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94460226209, + 49.4289952434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43c83db50068b7a8eba95f98795d0a11cf93d99c", + "fields": { + "code_commune_insee": "59371", + "nom_de_la_commune": "LE MAISNIL", + "code_postal": "59134", + "coordonnees_gps": [ + 50.6182693489, + 2.87754636769 + ], + "libelle_d_acheminement": "LE MAISNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87754636769, + 50.6182693489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eed4807ed86ef85bcc7fe92b1fc1e88162053497", + "fields": { + "code_commune_insee": "60538", + "nom_de_la_commune": "RICQUEBOURG", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5606808344, + 2.75829251841 + ], + "libelle_d_acheminement": "RICQUEBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75829251841, + 49.5606808344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73d7dc8de69b0a21ae283ffd38703628ce574605", + "fields": { + "code_commune_insee": "59372", + "nom_de_la_commune": "MALINCOURT", + "code_postal": "59127", + "coordonnees_gps": [ + 50.0351942091, + 3.32471130413 + ], + "libelle_d_acheminement": "MALINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32471130413, + 50.0351942091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f878762c03d5ede12abb2629599b941fa3baf1d6", + "fields": { + "code_commune_insee": "60539", + "nom_de_la_commune": "RIEUX", + "code_postal": "60870", + "coordonnees_gps": [ + 49.3000073439, + 2.51252938174 + ], + "libelle_d_acheminement": "RIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51252938174, + 49.3000073439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a469b958007bc26f75eac06aed8a6c87fee7c437", + "fields": { + "code_commune_insee": "59374", + "nom_de_la_commune": "MARBAIX", + "code_postal": "59440", + "coordonnees_gps": [ + 50.1280580168, + 3.83650655237 + ], + "libelle_d_acheminement": "MARBAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83650655237, + 50.1280580168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5c629ab26c7ed0f1ea50ac9bbf653391060877e", + "fields": { + "code_commune_insee": "60549", + "nom_de_la_commune": "ROTANGY", + "code_postal": "60360", + "coordonnees_gps": [ + 49.5850016727, + 2.08836287061 + ], + "libelle_d_acheminement": "ROTANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08836287061, + 49.5850016727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cf1512173b2d0a3b34d9e302d69e98715baee98", + "fields": { + "code_commune_insee": "59379", + "nom_de_la_commune": "MARCQ EN OSTREVENT", + "code_postal": "59252", + "coordonnees_gps": [ + 50.2876828642, + 3.23484427567 + ], + "libelle_d_acheminement": "MARCQ EN OSTREVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23484427567, + 50.2876828642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49564f90f8903d2cc6398d48abffc0a0ff341bf6", + "fields": { + "code_commune_insee": "60554", + "nom_de_la_commune": "ROUVRES EN MULTIEN", + "code_postal": "60620", + "coordonnees_gps": [ + 49.1065269014, + 3.02241048345 + ], + "libelle_d_acheminement": "ROUVRES EN MULTIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02241048345, + 49.1065269014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ed969cd4c90655c063e1ba57b73cd20ab907aad", + "fields": { + "code_commune_insee": "59395", + "nom_de_la_commune": "MAZINGHIEN", + "code_postal": "59360", + "coordonnees_gps": [ + 50.049448426, + 3.59700862525 + ], + "libelle_d_acheminement": "MAZINGHIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59700862525, + 50.049448426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d3d5a456d64378a66d5eb03e50246469910db53", + "fields": { + "code_commune_insee": "60563", + "nom_de_la_commune": "SACY LE PETIT", + "code_postal": "60190", + "coordonnees_gps": [ + 49.3698949265, + 2.62778300608 + ], + "libelle_d_acheminement": "SACY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62778300608, + 49.3698949265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87ce7f55f39a9e403fd26d504b0707e9500fc5fd", + "fields": { + "code_commune_insee": "59400", + "nom_de_la_commune": "MERVILLE", + "code_postal": "59660", + "coordonnees_gps": [ + 50.6449293889, + 2.63582653422 + ], + "libelle_d_acheminement": "MERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63582653422, + 50.6449293889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f7b2beafaebf48afb0247cc79dd2dea32aaade2", + "fields": { + "code_commune_insee": "60572", + "nom_de_la_commune": "ST ETIENNE ROILAYE", + "code_postal": "60350", + "coordonnees_gps": [ + 49.3604965921, + 3.0112130917 + ], + "libelle_d_acheminement": "ST ETIENNE ROILAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0112130917, + 49.3604965921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b50417df322e1f2794b747d4a53edf0ee12f969f", + "fields": { + "code_commune_insee": "59402", + "nom_de_la_commune": "MILLAM", + "code_postal": "59143", + "coordonnees_gps": [ + 50.8559210958, + 2.25120770329 + ], + "libelle_d_acheminement": "MILLAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25120770329, + 50.8559210958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee2eb353f4f4ec44dab47b2330ec484486b37860", + "fields": { + "code_commune_insee": "60573", + "nom_de_la_commune": "STE EUSOYE", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5752040683, + 2.25015619286 + ], + "libelle_d_acheminement": "STE EUSOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25015619286, + 49.5752040683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "173993b1a1a2a762ba82a215456ab3b4c7496d32", + "fields": { + "code_commune_insee": "59403", + "nom_de_la_commune": "MILLONFOSSE", + "code_postal": "59178", + "coordonnees_gps": [ + 50.4291924594, + 3.37701536636 + ], + "libelle_d_acheminement": "MILLONFOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37701536636, + 50.4291924594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e75a21d10257a543f6a3218bed9279e6f409859", + "fields": { + "code_commune_insee": "60576", + "nom_de_la_commune": "ST GERMAIN LA POTERIE", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4423808139, + 1.971867466 + ], + "libelle_d_acheminement": "ST GERMAIN LA POTERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.971867466, + 49.4423808139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "663cb4ecfa918d9fe508caa72df16fb19fc0f339", + "fields": { + "code_commune_insee": "59406", + "nom_de_la_commune": "MONCEAU ST WAAST", + "code_postal": "59620", + "coordonnees_gps": [ + 50.1717846537, + 3.85726023625 + ], + "libelle_d_acheminement": "MONCEAU ST WAAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85726023625, + 50.1717846537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b55b6c046d6a0315d569370b524ae66b3acc2a6a", + "fields": { + "code_commune_insee": "60577", + "nom_de_la_commune": "ST GERMER DE FLY", + "code_postal": "60850", + "coordonnees_gps": [ + 49.441635095, + 1.7819147282 + ], + "libelle_d_acheminement": "ST GERMER DE FLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7819147282, + 49.441635095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "700ac46eb2699c38c4f6548e3ef335d352a60a4e", + "fields": { + "code_commune_insee": "59410", + "nom_de_la_commune": "MONS EN BAROEUL", + "code_postal": "59370", + "coordonnees_gps": [ + 50.6432478699, + 3.1087677878 + ], + "libelle_d_acheminement": "MONS EN BAROEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1087677878, + 50.6432478699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19fbc5d2fecbe9da69c31bd96eee54153b2e94f6", + "fields": { + "code_commune_insee": "60579", + "nom_de_la_commune": "ST JEAN AUX BOIS", + "code_postal": "60350", + "coordonnees_gps": [ + 49.3501826789, + 2.88709409437 + ], + "libelle_d_acheminement": "ST JEAN AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88709409437, + 49.3501826789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc74a0815ec0098d6517aacad2d419ee64a802ea", + "fields": { + "code_commune_insee": "59416", + "nom_de_la_commune": "MORBECQUE", + "code_postal": "59190", + "coordonnees_gps": [ + 50.6768934286, + 2.53621614433 + ], + "libelle_d_acheminement": "MORBECQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53621614433, + 50.6768934286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2e2cf1d25983da71ffb67eed564839ceaf4cd60", + "fields": { + "code_commune_insee": "60589", + "nom_de_la_commune": "ST MAXIMIN", + "code_postal": "60740", + "coordonnees_gps": [ + 49.224445885, + 2.45930498428 + ], + "libelle_d_acheminement": "ST MAXIMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45930498428, + 49.224445885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88df5de643a0d4666807142f163643d30d45631a", + "fields": { + "code_commune_insee": "59424", + "nom_de_la_commune": "NEUF MESNIL", + "code_postal": "59330", + "coordonnees_gps": [ + 50.2653663974, + 3.90941211198 + ], + "libelle_d_acheminement": "NEUF MESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90941211198, + 50.2653663974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0692a85eb1ae0a97e42c57a8054dc776b47a4932", + "fields": { + "code_commune_insee": "60601", + "nom_de_la_commune": "ST VAAST LES MELLO", + "code_postal": "60660", + "coordonnees_gps": [ + 49.2767877481, + 2.39991208976 + ], + "libelle_d_acheminement": "ST VAAST LES MELLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39991208976, + 49.2767877481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb1b79c54cb9ec961642037df3961a0097185956", + "fields": { + "code_commune_insee": "59427", + "nom_de_la_commune": "LA NEUVILLE", + "code_postal": "59239", + "coordonnees_gps": [ + 50.4968963031, + 3.05358974895 + ], + "libelle_d_acheminement": "LA NEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05358974895, + 50.4968963031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04e14d03d947f0cecebfab8927648e866fbf2b61", + "fields": { + "code_commune_insee": "60603", + "nom_de_la_commune": "SALENCY", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5876754737, + 3.04632508396 + ], + "libelle_d_acheminement": "SALENCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04632508396, + 49.5876754737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6167e6b8e58230207fcc64497185878a395b59a", + "fields": { + "code_commune_insee": "59442", + "nom_de_la_commune": "OBRECHIES", + "code_postal": "59680", + "coordonnees_gps": [ + 50.2225324882, + 4.03683646675 + ], + "libelle_d_acheminement": "OBRECHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03683646675, + 50.2225324882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0701797cb4ca61ba4aa382e2c7d10399ed5e49a", + "fields": { + "code_commune_insee": "60604", + "nom_de_la_commune": "SARCUS", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6808539591, + 1.87577061583 + ], + "libelle_d_acheminement": "SARCUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87577061583, + 49.6808539591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25b0cd7a65e5c98a7413291819361aac8e735431", + "fields": { + "code_commune_insee": "59446", + "nom_de_la_commune": "OISY", + "code_postal": "59195", + "coordonnees_gps": [ + 50.3522308671, + 3.43281738814 + ], + "libelle_d_acheminement": "OISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43281738814, + 50.3522308671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8136c4c95e551fbac088b38aad4ffd6863c230bf", + "fields": { + "code_commune_insee": "60609", + "nom_de_la_commune": "SAVIGNIES", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4627452726, + 1.95763828893 + ], + "libelle_d_acheminement": "SAVIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95763828893, + 49.4627452726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bc4de64b51f56b3c2d46a02a272903bcf5cec15", + "fields": { + "code_commune_insee": "59447", + "nom_de_la_commune": "ONNAING", + "code_postal": "59264", + "coordonnees_gps": [ + 50.3867147723, + 3.59668401083 + ], + "libelle_d_acheminement": "ONNAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59668401083, + 50.3867147723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b9f2d6f09a0d04943492bb71e2625e1fefb7dac", + "fields": { + "code_commune_insee": "60621", + "nom_de_la_commune": "SOLENTE", + "code_postal": "60310", + "coordonnees_gps": [ + 49.6978592083, + 2.88427490672 + ], + "libelle_d_acheminement": "SOLENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88427490672, + 49.6978592083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de863448fc5103b4c765c3fb9b6370c7819ac3b9", + "fields": { + "code_commune_insee": "59451", + "nom_de_la_commune": "ORSINVAL", + "code_postal": "59530", + "coordonnees_gps": [ + 50.2718570583, + 3.63293709102 + ], + "libelle_d_acheminement": "ORSINVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63293709102, + 50.2718570583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bf3a04f1935d1552397dc438a9fa3330a812a3d", + "fields": { + "code_commune_insee": "60625", + "nom_de_la_commune": "SUZOY", + "code_postal": "60400", + "coordonnees_gps": [ + 49.582856711, + 2.93918164919 + ], + "libelle_d_acheminement": "SUZOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93918164919, + 49.582856711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "431b77aa5522fba45eb0fd6a3ea4c5099a60fac3", + "fields": { + "code_commune_insee": "59457", + "nom_de_la_commune": "PERENCHIES", + "code_postal": "59840", + "coordonnees_gps": [ + 50.6700813687, + 2.96867396183 + ], + "libelle_d_acheminement": "PERENCHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96867396183, + 50.6700813687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56c84d9c71a8e3fab552724753f69b2e22cf7a98", + "fields": { + "code_commune_insee": "60630", + "nom_de_la_commune": "THIBIVILLERS", + "code_postal": "60240", + "coordonnees_gps": [ + 49.3092311857, + 1.90187779485 + ], + "libelle_d_acheminement": "THIBIVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90187779485, + 49.3092311857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6907385fa040613353fe0c61c11e4f927400c66b", + "fields": { + "code_commune_insee": "59458", + "nom_de_la_commune": "PERONNE EN MELANTOIS", + "code_postal": "59273", + "coordonnees_gps": [ + 50.56433015, + 3.17149667698 + ], + "libelle_d_acheminement": "PERONNE EN MELANTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17149667698, + 50.56433015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a119176b795041f5c40b5e07dbcd5fc2acfb1cae", + "fields": { + "code_commune_insee": "60633", + "nom_de_la_commune": "THIEULOY ST ANTOINE", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6347803075, + 1.94612857854 + ], + "libelle_d_acheminement": "THIEULOY ST ANTOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94612857854, + 49.6347803075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee2aa3e3e908196476b621fd7ef4f350e709c684", + "fields": { + "code_commune_insee": "59461", + "nom_de_la_commune": "PETIT FAYT", + "code_postal": "59244", + "coordonnees_gps": [ + 50.1023567532, + 3.82607936534 + ], + "libelle_d_acheminement": "PETIT FAYT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82607936534, + 50.1023567532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63a15d4ef6fbc54b58352597c6eaad48803dc85d", + "fields": { + "code_commune_insee": "60640", + "nom_de_la_commune": "TOURLY", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2202049953, + 1.94208573805 + ], + "libelle_d_acheminement": "TOURLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94208573805, + 49.2202049953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "018ecea51b9b199163129af53a8674f7dd137de6", + "fields": { + "code_commune_insee": "59462", + "nom_de_la_commune": "PHALEMPIN", + "code_postal": "59133", + "coordonnees_gps": [ + 50.5128963726, + 3.02222998505 + ], + "libelle_d_acheminement": "PHALEMPIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02222998505, + 50.5128963726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f5ecd72d4dcaa64bf3d1c15e47f52be71e4656b", + "fields": { + "code_commune_insee": "60643", + "nom_de_la_commune": "TRICOT", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5631454489, + 2.58460217686 + ], + "libelle_d_acheminement": "TRICOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58460217686, + 49.5631454489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c7f0518d9109536dcd7f05817d51f36da3ef558", + "fields": { + "code_commune_insee": "59464", + "nom_de_la_commune": "POIX DU NORD", + "code_postal": "59218", + "coordonnees_gps": [ + 50.185059973, + 3.61684782607 + ], + "libelle_d_acheminement": "POIX DU NORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61684782607, + 50.185059973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7707a1d11c559e9dd4bdc4aef61a1c08274aeb66", + "fields": { + "code_commune_insee": "60653", + "nom_de_la_commune": "VALESCOURT", + "code_postal": "60130", + "coordonnees_gps": [ + 49.4852062948, + 2.43655225362 + ], + "libelle_d_acheminement": "VALESCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43655225362, + 49.4852062948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "107166afad1b95cba94ee1f173eb37be401d4277", + "fields": { + "code_commune_insee": "59465", + "nom_de_la_commune": "POMMEREUIL", + "code_postal": "59360", + "coordonnees_gps": [ + 50.1169693319, + 3.58693750917 + ], + "libelle_d_acheminement": "POMMEREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58693750917, + 50.1169693319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ba6fcabaa4482287759c993b444b7872f6182bc", + "fields": { + "code_commune_insee": "60655", + "nom_de_la_commune": "VARESNES", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5566902552, + 3.07817073988 + ], + "libelle_d_acheminement": "VARESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07817073988, + 49.5566902552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c969ebe2be8901218e57e03f6c62b0e7644e6c9f", + "fields": { + "code_commune_insee": "59474", + "nom_de_la_commune": "PRISCHES", + "code_postal": "59550", + "coordonnees_gps": [ + 50.0779109986, + 3.75922395806 + ], + "libelle_d_acheminement": "PRISCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75922395806, + 50.0779109986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c305436ad87b18d38c40db5e8936e08f722e207", + "fields": { + "code_commune_insee": "60658", + "nom_de_la_commune": "VAUCIENNES", + "code_postal": "60117", + "coordonnees_gps": [ + 49.2291351959, + 3.01623561024 + ], + "libelle_d_acheminement": "VAUCIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01623561024, + 49.2291351959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "317d4edd81ae6e68136f9272fb6fb2f13e48bc64", + "fields": { + "code_commune_insee": "59482", + "nom_de_la_commune": "QUESNOY SUR DEULE", + "code_postal": "59890", + "coordonnees_gps": [ + 50.7129994523, + 3.00861966929 + ], + "libelle_d_acheminement": "QUESNOY SUR DEULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00861966929, + 50.7129994523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a25a326f2254bc2c96d11da87422c19d1c649897", + "fields": { + "code_commune_insee": "60663", + "nom_de_la_commune": "VELENNES", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4733673509, + 2.18849314931 + ], + "libelle_d_acheminement": "VELENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18849314931, + 49.4733673509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cb9cc7515016158683d08662a59b39a19051060", + "fields": { + "code_commune_insee": "59484", + "nom_de_la_commune": "QUIEVRECHAIN", + "code_postal": "59920", + "coordonnees_gps": [ + 50.3920521291, + 3.65887590653 + ], + "libelle_d_acheminement": "QUIEVRECHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65887590653, + 50.3920521291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f61e310fbc60c4801ea27634fb5cf6c28188df25", + "fields": { + "code_commune_insee": "60665", + "nom_de_la_commune": "VENETTE", + "code_postal": "60280", + "coordonnees_gps": [ + 49.4195417844, + 2.78373972195 + ], + "libelle_d_acheminement": "VENETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78373972195, + 49.4195417844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b08652788e4f8b05cbd10ab0e6069031d4bf6ff4", + "fields": { + "ligne_5": "BLANC MISSERON", + "code_commune_insee": "59484", + "libelle_d_acheminement": "QUIEVRECHAIN", + "code_postal": "59920", + "nom_de_la_commune": "QUIEVRECHAIN", + "coordonnees_gps": [ + 50.3920521291, + 3.65887590653 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65887590653, + 50.3920521291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c49c8b563774b336539196e2243284b3a0e9879d", + "fields": { + "code_commune_insee": "60679", + "nom_de_la_commune": "LA VILLENEUVE SOUS THURY", + "code_postal": "60890", + "coordonnees_gps": [ + 49.1601844737, + 3.0611547211 + ], + "libelle_d_acheminement": "LA VILLENEUVE SOUS THURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0611547211, + 49.1601844737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c14c879c50f1963e99df6eff0e2d792f1cbc9d02", + "fields": { + "code_commune_insee": "59485", + "nom_de_la_commune": "QUIEVY", + "code_postal": "59214", + "coordonnees_gps": [ + 50.162969816, + 3.42160576023 + ], + "libelle_d_acheminement": "QUIEVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42160576023, + 50.162969816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "200a0a46d64d535d5a27d0c07ae7d29ea279358b", + "fields": { + "code_commune_insee": "60680", + "nom_de_la_commune": "VILLENEUVE SUR VERBERIE", + "code_postal": "60410", + "coordonnees_gps": [ + 49.2751399266, + 2.67989844537 + ], + "libelle_d_acheminement": "VILLENEUVE SUR VERBERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67989844537, + 49.2751399266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cad9cef5025146df9b9db6daa297dd5b758e1738", + "fields": { + "code_commune_insee": "59486", + "nom_de_la_commune": "RACHES", + "code_postal": "59194", + "coordonnees_gps": [ + 50.4201328892, + 3.13698851837 + ], + "libelle_d_acheminement": "RACHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13698851837, + 50.4201328892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "944c04b57df295acac7f582cb8ea75e17fb5ae1d", + "fields": { + "code_commune_insee": "60683", + "nom_de_la_commune": "VILLERS ST GENEST", + "code_postal": "60620", + "coordonnees_gps": [ + 49.14033599, + 2.90001405815 + ], + "libelle_d_acheminement": "VILLERS ST GENEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90001405815, + 49.14033599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e65650e5d18a8ca89cd0737acc60809e7cefd3b9", + "fields": { + "code_commune_insee": "59494", + "nom_de_la_commune": "RAUCOURT AU BOIS", + "code_postal": "59530", + "coordonnees_gps": [ + 50.2067851455, + 3.6560114776 + ], + "libelle_d_acheminement": "RAUCOURT AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6560114776, + 50.2067851455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b6d820f99fdf70ace7047524daa88ddc628e553", + "fields": { + "code_commune_insee": "60697", + "nom_de_la_commune": "VROCOURT", + "code_postal": "60112", + "coordonnees_gps": [ + 49.5361368053, + 1.89040269759 + ], + "libelle_d_acheminement": "VROCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89040269759, + 49.5361368053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "710599d28cf6b6ddb156faa2a9733f9582d6449b", + "fields": { + "code_commune_insee": "59498", + "nom_de_la_commune": "REUMONT", + "code_postal": "59980", + "coordonnees_gps": [ + 50.0851954003, + 3.47837512553 + ], + "libelle_d_acheminement": "REUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47837512553, + 50.0851954003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67684828c9dbadd82e8a3f47f10baf3aac6be79d", + "fields": { + "code_commune_insee": "60703", + "nom_de_la_commune": "AUX MARAIS", + "code_postal": "60000", + "coordonnees_gps": [ + 49.4073687683, + 2.04083080438 + ], + "libelle_d_acheminement": "AUX MARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04083080438, + 49.4073687683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c668543403242a50cfa51b970ebeae06c54dada7", + "fields": { + "code_commune_insee": "59509", + "nom_de_la_commune": "ROOST WARENDIN", + "code_postal": "59286", + "coordonnees_gps": [ + 50.4147869735, + 3.10349816509 + ], + "libelle_d_acheminement": "ROOST WARENDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10349816509, + 50.4147869735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d66cbd7d874bba866bcf6eb185933b1572b76399", + "fields": { + "code_commune_insee": "61006", + "nom_de_la_commune": "ARGENTAN", + "code_postal": "61200", + "coordonnees_gps": [ + 48.7321880919, + -0.0132322590535 + ], + "libelle_d_acheminement": "ARGENTAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0132322590535, + 48.7321880919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd50e5c01b09a6d0a288537b4670402d61a9f8a7", + "fields": { + "code_commune_insee": "59514", + "nom_de_la_commune": "ROUSIES", + "code_postal": "59131", + "coordonnees_gps": [ + 50.2712617008, + 3.99972723492 + ], + "libelle_d_acheminement": "ROUSIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99972723492, + 50.2712617008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0c1da0713d53bd9ed8e2c2b7d31054bad798a25", + "fields": { + "code_commune_insee": "61008", + "nom_de_la_commune": "AUBE", + "code_postal": "61270", + "coordonnees_gps": [ + 48.7318577878, + 0.545628090073 + ], + "libelle_d_acheminement": "AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.545628090073, + 48.7318577878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f7de32cb1ec2eb2f200a9305e21d83995260ed3", + "fields": { + "code_commune_insee": "59520", + "nom_de_la_commune": "RUMILLY EN CAMBRESIS", + "code_postal": "59281", + "coordonnees_gps": [ + 50.1304621675, + 3.22848231666 + ], + "libelle_d_acheminement": "RUMILLY EN CAMBRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22848231666, + 50.1304621675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42e1aff9d41f8557e06eb96a7cd64973c679ad6e", + "fields": { + "code_commune_insee": "61014", + "nom_de_la_commune": "AUNOU LE FAUCON", + "code_postal": "61200", + "coordonnees_gps": [ + 48.7194759541, + 0.055348775966 + ], + "libelle_d_acheminement": "AUNOU LE FAUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.055348775966, + 48.7194759541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad66d3830b278790b51ed2e260219202987ce007", + "fields": { + "code_commune_insee": "59529", + "nom_de_la_commune": "ST AUBIN", + "code_postal": "59440", + "coordonnees_gps": [ + 50.1709642642, + 3.91201093007 + ], + "libelle_d_acheminement": "ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91201093007, + 50.1709642642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8141a16d11b1728619ec0c2efb6c35f63ef74612", + "fields": { + "code_commune_insee": "61036", + "nom_de_la_commune": "BELFONDS", + "code_postal": "61500", + "coordonnees_gps": [ + 48.6109514041, + 0.107175122984 + ], + "libelle_d_acheminement": "BELFONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.107175122984, + 48.6109514041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38383ac05f40a89f70ada36e7fdf948ef0f60cd5", + "fields": { + "code_commune_insee": "59535", + "nom_de_la_commune": "ST JANS CAPPEL", + "code_postal": "59270", + "coordonnees_gps": [ + 50.7684241988, + 2.72184821596 + ], + "libelle_d_acheminement": "ST JANS CAPPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72184821596, + 50.7684241988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1afdd38a66530cc1a40218bbe48c5aa3db15fb3e", + "fields": { + "code_commune_insee": "61037", + "nom_de_la_commune": "BELLAVILLIERS", + "code_postal": "61360", + "coordonnees_gps": [ + 48.4176974835, + 0.490691078997 + ], + "libelle_d_acheminement": "BELLAVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.490691078997, + 48.4176974835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d1299db1248dbad37f8e460902765f2c1376652", + "fields": { + "code_commune_insee": "59536", + "nom_de_la_commune": "STE MARIE CAPPEL", + "code_postal": "59670", + "coordonnees_gps": [ + 50.780208006, + 2.51589636551 + ], + "libelle_d_acheminement": "STE MARIE CAPPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51589636551, + 50.780208006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "166bc31d9c0305148120996aa02c2afbc24f4112", + "fields": { + "code_commune_insee": "61041", + "nom_de_la_commune": "BELLOU LE TRICHARD", + "code_postal": "61130", + "coordonnees_gps": [ + 48.2640987687, + 0.55321746429 + ], + "libelle_d_acheminement": "BELLOU LE TRICHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55321746429, + 48.2640987687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a3d42a9971675c1774a6f0d7d3d4d7adbc6379f", + "fields": { + "code_commune_insee": "61067", + "nom_de_la_commune": "BURES", + "code_postal": "61170", + "coordonnees_gps": [ + 48.5579280908, + 0.401372198691 + ], + "libelle_d_acheminement": "BURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.401372198691, + 48.5579280908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "656b2026fc6107eecba336368cbfc548f0d045fe", + "fields": { + "code_commune_insee": "61070", + "nom_de_la_commune": "CALIGNY", + "code_postal": "61100", + "coordonnees_gps": [ + 48.8071056766, + -0.603648177007 + ], + "libelle_d_acheminement": "CALIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.603648177007, + 48.8071056766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "706cc7d2d85f6b677085d780d864a9db58c8ee28", + "fields": { + "code_commune_insee": "61079", + "nom_de_la_commune": "CETON", + "code_postal": "61260", + "coordonnees_gps": [ + 48.2249965055, + 0.758513883231 + ], + "libelle_d_acheminement": "CETON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.758513883231, + 48.2249965055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea989738db8c60cc43b17850bdf328c019e942d5", + "fields": { + "code_commune_insee": "61098", + "nom_de_la_commune": "LA CHAPELLE PRES SEES", + "code_postal": "61500", + "coordonnees_gps": [ + 48.5667583152, + 0.153857564535 + ], + "libelle_d_acheminement": "LA CHAPELLE PRES SEES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.153857564535, + 48.5667583152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e32f38e8c2fceec0ee8d0a1d20eec4b06bb0576", + "fields": { + "code_commune_insee": "61101", + "nom_de_la_commune": "LE CHATEAU D ALMENECHES", + "code_postal": "61570", + "coordonnees_gps": [ + 48.6727206778, + 0.130610426529 + ], + "libelle_d_acheminement": "LE CHATEAU D ALMENECHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.130610426529, + 48.6727206778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6fe7f17ccf02692680fd5a3a04966bb462fb338", + "fields": { + "code_commune_insee": "61102", + "nom_de_la_commune": "LE CHATELLIER", + "code_postal": "61450", + "coordonnees_gps": [ + 48.6774891036, + -0.583208023113 + ], + "libelle_d_acheminement": "LE CHATELLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.583208023113, + 48.6774891036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4198585e1f5b9cb882d2fc8d56f1de0193a9601b", + "fields": { + "code_commune_insee": "61104", + "nom_de_la_commune": "LA CHAUX", + "code_postal": "61600", + "coordonnees_gps": [ + 48.6020436044, + -0.267103118047 + ], + "libelle_d_acheminement": "LA CHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.267103118047, + 48.6020436044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "772c9676bf8cf5bd78a97046c8526b3f7a41b8ed", + "fields": { + "ligne_5": "ROUELLE", + "code_commune_insee": "61145", + "libelle_d_acheminement": "DOMFRONT EN POIRAIE", + "code_postal": "61700", + "nom_de_la_commune": "DOMFRONT EN POIRAIE", + "coordonnees_gps": [ + 48.5824684934, + -0.61398156582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61398156582, + 48.5824684934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14c67b09f6405f378c57ecde3fb1fe611989b204", + "fields": { + "code_commune_insee": "61146", + "nom_de_la_commune": "DOMPIERRE", + "code_postal": "61700", + "coordonnees_gps": [ + 48.6368158106, + -0.5529421904 + ], + "libelle_d_acheminement": "DOMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5529421904, + 48.6368158106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "924e60986e3c61261615a4c16ef9072d0c6ad2ff", + "fields": { + "ligne_5": "BATILLY", + "code_commune_insee": "61153", + "libelle_d_acheminement": "ECOUCHE LES VALLEES", + "code_postal": "61150", + "nom_de_la_commune": "ECOUCHE LES VALLEES", + "coordonnees_gps": [ + 48.715236562, + -0.11079364791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11079364791, + 48.715236562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "974a883eb5f9efc9f9bf0e08743ab7cfa4946b89", + "fields": { + "code_commune_insee": "61159", + "nom_de_la_commune": "FAY", + "code_postal": "61390", + "coordonnees_gps": [ + 48.6612913524, + 0.407509291689 + ], + "libelle_d_acheminement": "FAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.407509291689, + 48.6612913524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebecf82426edffb967573ec1c38d47bc95792d5e", + "fields": { + "code_commune_insee": "61160", + "nom_de_la_commune": "FEINGS", + "code_postal": "61400", + "coordonnees_gps": [ + 48.5433586588, + 0.649080735895 + ], + "libelle_d_acheminement": "FEINGS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.649080735895, + 48.5433586588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7fe79d8a1caeed0daaa034dc182c0b76d533f86", + "fields": { + "ligne_5": "MONNAI", + "code_commune_insee": "61167", + "libelle_d_acheminement": "LA FERTE EN OUCHE", + "code_postal": "61470", + "nom_de_la_commune": "LA FERTE EN OUCHE", + "coordonnees_gps": [ + 48.8362459554, + 0.508544741133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.508544741133, + 48.8362459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d623066ab61e327953936dff1f02bfb3ad3cf5e", + "fields": { + "ligne_5": "ANCEINS", + "code_commune_insee": "61167", + "libelle_d_acheminement": "LA FERTE EN OUCHE", + "code_postal": "61550", + "nom_de_la_commune": "LA FERTE EN OUCHE", + "coordonnees_gps": [ + 48.8362459554, + 0.508544741133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.508544741133, + 48.8362459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c400f71d1a7391d7750c5b0be1d2922c1831b04", + "fields": { + "ligne_5": "LA FERTE FRENEL", + "code_commune_insee": "61167", + "libelle_d_acheminement": "LA FERTE EN OUCHE", + "code_postal": "61550", + "nom_de_la_commune": "LA FERTE EN OUCHE", + "coordonnees_gps": [ + 48.8362459554, + 0.508544741133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.508544741133, + 48.8362459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85b2ae676ff349098f7cd31940756f2c0ff0f502", + "fields": { + "ligne_5": "VILLERS EN OUCHE", + "code_commune_insee": "61167", + "libelle_d_acheminement": "LA FERTE EN OUCHE", + "code_postal": "61550", + "nom_de_la_commune": "LA FERTE EN OUCHE", + "coordonnees_gps": [ + 48.8362459554, + 0.508544741133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.508544741133, + 48.8362459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5bd7a9cd7f04ded8fab3914fdeedda9bea33b93", + "fields": { + "ligne_5": "ANTOIGNY", + "code_commune_insee": "61168", + "libelle_d_acheminement": "LA FERTE MACE", + "code_postal": "61410", + "nom_de_la_commune": "LA FERTE MACE", + "coordonnees_gps": [ + 48.581835018, + -0.366879794994 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.366879794994, + 48.581835018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab219d6350bb25ced0ccf099c03ee0d9e669ebd3", + "fields": { + "code_commune_insee": "59539", + "nom_de_la_commune": "ST PIERRE BROUCK", + "code_postal": "59630", + "coordonnees_gps": [ + 50.8950694199, + 2.19025685455 + ], + "libelle_d_acheminement": "ST PIERRE BROUCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19025685455, + 50.8950694199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67f41d75639d12cafb6e9580b98bffe0cf578975", + "fields": { + "code_commune_insee": "59544", + "nom_de_la_commune": "ST SAULVE", + "code_postal": "59880", + "coordonnees_gps": [ + 50.3750172475, + 3.56642418912 + ], + "libelle_d_acheminement": "ST SAULVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56642418912, + 50.3750172475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42181986ba55650e5c96e6b0dd8d0b75c4ac7266", + "fields": { + "code_commune_insee": "59547", + "nom_de_la_commune": "ST VAAST EN CAMBRESIS", + "code_postal": "59188", + "coordonnees_gps": [ + 50.1944271461, + 3.43509312626 + ], + "libelle_d_acheminement": "ST VAAST EN CAMBRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43509312626, + 50.1944271461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22d0f1c94fb02c13744908b04772ce169ce93963", + "fields": { + "code_commune_insee": "59549", + "nom_de_la_commune": "SALESCHES", + "code_postal": "59218", + "coordonnees_gps": [ + 50.2082539959, + 3.59623286765 + ], + "libelle_d_acheminement": "SALESCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59623286765, + 50.2082539959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ad4a1ac45c4692d91014208aee2c9c1df144f1a", + "fields": { + "code_commune_insee": "59554", + "nom_de_la_commune": "SARS ET ROSIERES", + "code_postal": "59230", + "coordonnees_gps": [ + 50.446729768, + 3.33012536259 + ], + "libelle_d_acheminement": "SARS ET ROSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33012536259, + 50.446729768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a1ad020271b803d54af94b49c587f8f8b06744f", + "fields": { + "code_commune_insee": "59556", + "nom_de_la_commune": "SASSEGNIES", + "code_postal": "59145", + "coordonnees_gps": [ + 50.1790384849, + 3.79850687638 + ], + "libelle_d_acheminement": "SASSEGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79850687638, + 50.1790384849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a6c13b8127442da2b2a6e6c028d220cc46d57be", + "fields": { + "code_commune_insee": "59559", + "nom_de_la_commune": "SEBOURG", + "code_postal": "59990", + "coordonnees_gps": [ + 50.3441268565, + 3.64525979429 + ], + "libelle_d_acheminement": "SEBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64525979429, + 50.3441268565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c26b1c0fe4e3a8027c1a4436ddbeb9e36ad1c673", + "fields": { + "code_commune_insee": "59560", + "nom_de_la_commune": "SECLIN", + "code_postal": "59113", + "coordonnees_gps": [ + 50.5462914067, + 3.03440410368 + ], + "libelle_d_acheminement": "SECLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03440410368, + 50.5462914067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22c4ef431f67eb863db8b900645b88eb3b44c4dd", + "fields": { + "code_commune_insee": "59562", + "nom_de_la_commune": "SEMERIES", + "code_postal": "59440", + "coordonnees_gps": [ + 50.104983917, + 3.98854238684 + ], + "libelle_d_acheminement": "SEMERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98854238684, + 50.104983917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28c1a6481291d2167aa664a462693afbcfa83107", + "fields": { + "code_commune_insee": "59563", + "nom_de_la_commune": "SEMOUSIES", + "code_postal": "59440", + "coordonnees_gps": [ + 50.1639637271, + 3.96792099301 + ], + "libelle_d_acheminement": "SEMOUSIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96792099301, + 50.1639637271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f21b1271beb88698920ee87962db6db17bd43516", + "fields": { + "code_commune_insee": "59575", + "nom_de_la_commune": "SOMMAING", + "code_postal": "59213", + "coordonnees_gps": [ + 50.2674478954, + 3.49584685724 + ], + "libelle_d_acheminement": "SOMMAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49584685724, + 50.2674478954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "715e601c6a2cf7f7da7492224d17030c9eaac4d4", + "fields": { + "code_commune_insee": "59583", + "nom_de_la_commune": "TAISNIERES EN THIERACHE", + "code_postal": "59550", + "coordonnees_gps": [ + 50.1455912411, + 3.81152119353 + ], + "libelle_d_acheminement": "TAISNIERES EN THIERACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81152119353, + 50.1455912411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b215043752bcb6111e7f121ebcb5ee0ff74de7e4", + "fields": { + "code_commune_insee": "59585", + "nom_de_la_commune": "TEMPLEMARS", + "code_postal": "59175", + "coordonnees_gps": [ + 50.5706303055, + 3.0593969462 + ], + "libelle_d_acheminement": "TEMPLEMARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0593969462, + 50.5706303055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "263f047a2099283bd1f47896963971ac833fab20", + "fields": { + "code_commune_insee": "59599", + "nom_de_la_commune": "TOURCOING", + "code_postal": "59200", + "coordonnees_gps": [ + 50.7254418902, + 3.15882757215 + ], + "libelle_d_acheminement": "TOURCOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15882757215, + 50.7254418902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb1a832475be876721f6d06a1e2cc0fc862b9085", + "fields": { + "code_commune_insee": "59602", + "nom_de_la_commune": "TRESSIN", + "code_postal": "59152", + "coordonnees_gps": [ + 50.6172932924, + 3.18934892273 + ], + "libelle_d_acheminement": "TRESSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18934892273, + 50.6172932924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea09f1b469355116884546729243cd9a01308017", + "fields": { + "code_commune_insee": "59603", + "nom_de_la_commune": "TRITH ST LEGER", + "code_postal": "59125", + "coordonnees_gps": [ + 50.33056703, + 3.48645305133 + ], + "libelle_d_acheminement": "TRITH ST LEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48645305133, + 50.33056703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "352061f51126b5b880445a4f4b1d147e8abca94e", + "fields": { + "code_commune_insee": "59615", + "nom_de_la_commune": "VIEUX BERQUIN", + "code_postal": "59232", + "coordonnees_gps": [ + 50.6932504715, + 2.62068917125 + ], + "libelle_d_acheminement": "VIEUX BERQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62068917125, + 50.6932504715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cbe214ce98257be235994b89449c5c7ede46589", + "fields": { + "code_commune_insee": "59624", + "nom_de_la_commune": "VILLERS OUTREAUX", + "code_postal": "59142", + "coordonnees_gps": [ + 50.0297720966, + 3.29193521329 + ], + "libelle_d_acheminement": "VILLERS OUTREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29193521329, + 50.0297720966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8f7d283cd5e39f1ae0245286cbbd019c45d7f02", + "fields": { + "code_commune_insee": "59625", + "nom_de_la_commune": "VILLERS PLOUICH", + "code_postal": "59231", + "coordonnees_gps": [ + 50.0789345355, + 3.13659590623 + ], + "libelle_d_acheminement": "VILLERS PLOUICH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13659590623, + 50.0789345355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35c26e43026968bf8ffa191ae53ac66440c3d904", + "fields": { + "code_commune_insee": "59638", + "nom_de_la_commune": "WANNEHAIN", + "code_postal": "59830", + "coordonnees_gps": [ + 50.5709754745, + 3.27007498669 + ], + "libelle_d_acheminement": "WANNEHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27007498669, + 50.5709754745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b728c9b42521dd6501c7305b939e70c9260871a6", + "fields": { + "code_commune_insee": "59646", + "nom_de_la_commune": "WASQUEHAL", + "code_postal": "59290", + "coordonnees_gps": [ + 50.6750984751, + 3.12858017096 + ], + "libelle_d_acheminement": "WASQUEHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12858017096, + 50.6750984751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af0041ebab91d104961948454d3a9ede8b2cb98d", + "fields": { + "code_commune_insee": "59657", + "nom_de_la_commune": "WEST CAPPEL", + "code_postal": "59380", + "coordonnees_gps": [ + 50.9254100501, + 2.50878268816 + ], + "libelle_d_acheminement": "WEST CAPPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50878268816, + 50.9254100501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7b7fe0f7c01675d4d3c20fbc2eb2d7c66ffa158", + "fields": { + "code_commune_insee": "59663", + "nom_de_la_commune": "WORMHOUT", + "code_postal": "59470", + "coordonnees_gps": [ + 50.8778557286, + 2.47860517129 + ], + "libelle_d_acheminement": "WORMHOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47860517129, + 50.8778557286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4522ee3a4494a5a6be021afac4b85ac9c718dcda", + "fields": { + "code_commune_insee": "59665", + "nom_de_la_commune": "WYLDER", + "code_postal": "59380", + "coordonnees_gps": [ + 50.9111679301, + 2.48735893081 + ], + "libelle_d_acheminement": "WYLDER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48735893081, + 50.9111679301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfc7ad6c2f801ce48745a7ee80e917633a2f3851", + "fields": { + "code_commune_insee": "60003", + "nom_de_la_commune": "ABBEVILLE ST LUCIEN", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5201068363, + 2.16636536385 + ], + "libelle_d_acheminement": "ABBEVILLE ST LUCIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16636536385, + 49.5201068363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd4eda301c5dd6ef85f9c753ed70816a57b0717c", + "fields": { + "code_commune_insee": "60015", + "nom_de_la_commune": "ANGY", + "code_postal": "60250", + "coordonnees_gps": [ + 49.334468969, + 2.32846218053 + ], + "libelle_d_acheminement": "ANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32846218053, + 49.334468969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08448fe148d00cbcd9e95e456ee384e9cc3d0954", + "fields": { + "code_commune_insee": "60016", + "nom_de_la_commune": "ANSACQ", + "code_postal": "60250", + "coordonnees_gps": [ + 49.350204752, + 2.36431728817 + ], + "libelle_d_acheminement": "ANSACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36431728817, + 49.350204752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2265ca060c85ebf94c5505a242ba51de7b1696b0", + "fields": { + "code_commune_insee": "60022", + "nom_de_la_commune": "APREMONT", + "code_postal": "60300", + "coordonnees_gps": [ + 49.2286452463, + 2.5135789889 + ], + "libelle_d_acheminement": "APREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5135789889, + 49.2286452463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8475e6fd0bef3f321a0f3c4dee2b369c7ca6f238", + "fields": { + "ligne_5": "TROUSSURES", + "code_commune_insee": "60029", + "libelle_d_acheminement": "AUNEUIL", + "code_postal": "60390", + "nom_de_la_commune": "AUNEUIL", + "coordonnees_gps": [ + 49.3702714618, + 1.99554869838 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99554869838, + 49.3702714618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c30d0c237ae2cfea2d615feb9993243dc62bb0e0", + "fields": { + "code_commune_insee": "60030", + "nom_de_la_commune": "AUTEUIL", + "code_postal": "60390", + "coordonnees_gps": [ + 49.3450250122, + 2.09238872376 + ], + "libelle_d_acheminement": "AUTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09238872376, + 49.3450250122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e9bae49919a840f49539a135101e941ba3807db", + "fields": { + "code_commune_insee": "60031", + "nom_de_la_commune": "AUTHEUIL EN VALOIS", + "code_postal": "60890", + "coordonnees_gps": [ + 49.1792888729, + 3.06349602702 + ], + "libelle_d_acheminement": "AUTHEUIL EN VALOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06349602702, + 49.1792888729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab50ad43243499ab299806a3cb48d0f896573032", + "fields": { + "code_commune_insee": "60034", + "nom_de_la_commune": "AVRECHY", + "code_postal": "60130", + "coordonnees_gps": [ + 49.4449120653, + 2.42380338592 + ], + "libelle_d_acheminement": "AVRECHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42380338592, + 49.4449120653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f38b437156e1bc2f8f3839123375b5ec88816b1", + "fields": { + "code_commune_insee": "61176", + "nom_de_la_commune": "FRANCHEVILLE", + "code_postal": "61570", + "coordonnees_gps": [ + 48.6382859389, + -0.0600624308004 + ], + "libelle_d_acheminement": "FRANCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0600624308004, + 48.6382859389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac4725c1d5bb82169d6d97b8912bfaa7d69bad8a", + "fields": { + "code_commune_insee": "60036", + "nom_de_la_commune": "AVRIGNY", + "code_postal": "60190", + "coordonnees_gps": [ + 49.3890770811, + 2.57702799562 + ], + "libelle_d_acheminement": "AVRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57702799562, + 49.3890770811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b891715d0d3fdb28f48224d94bbf0dd0178d9894", + "fields": { + "ligne_5": "MONTGAROULT", + "code_commune_insee": "61194", + "libelle_d_acheminement": "MONTS SUR ORNE", + "code_postal": "61150", + "nom_de_la_commune": "MONTS SUR ORNE", + "coordonnees_gps": [ + 48.7360749427, + -0.0897289866447 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0897289866447, + 48.7360749427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f374893f1cc5d403ef400f8a8104637a0474f20", + "fields": { + "code_commune_insee": "60039", + "nom_de_la_commune": "BACOUEL", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6218428027, + 2.38266948973 + ], + "libelle_d_acheminement": "BACOUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38266948973, + 49.6218428027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53ddc3fe587678e7ad00631a39f99be46543aa6c", + "fields": { + "ligne_5": "SENTILLY", + "code_commune_insee": "61194", + "libelle_d_acheminement": "MONTS SUR ORNE", + "code_postal": "61150", + "nom_de_la_commune": "MONTS SUR ORNE", + "coordonnees_gps": [ + 48.7360749427, + -0.0897289866447 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0897289866447, + 48.7360749427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f7375fa21f2771e9922a2a5072b0d349f104aef", + "fields": { + "code_commune_insee": "60040", + "nom_de_la_commune": "BAILLEUL LE SOC", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4206214218, + 2.58376325171 + ], + "libelle_d_acheminement": "BAILLEUL LE SOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58376325171, + 49.4206214218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e28428c10faf93c8f3a49e7f82b9d99327cd8b4", + "fields": { + "ligne_5": "SERIGNY", + "code_commune_insee": "61196", + "libelle_d_acheminement": "BELFORET EN PERCHE", + "code_postal": "61130", + "nom_de_la_commune": "BELFORET EN PERCHE", + "coordonnees_gps": [ + 48.3725300515, + 0.509787667614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.509787667614, + 48.3725300515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "705e8af40c6d8072b4d86a580fbeb0e4fc27c106", + "fields": { + "code_commune_insee": "60043", + "nom_de_la_commune": "BAILLY", + "code_postal": "60170", + "coordonnees_gps": [ + 49.4994561216, + 2.98240258389 + ], + "libelle_d_acheminement": "BAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98240258389, + 49.4994561216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "402f085c4a85bc59e7ccba3f1248a7e88189d6ed", + "fields": { + "ligne_5": "ST OUEN DE LA COUR", + "code_commune_insee": "61196", + "libelle_d_acheminement": "BELFORET EN PERCHE", + "code_postal": "61130", + "nom_de_la_commune": "BELFORET EN PERCHE", + "coordonnees_gps": [ + 48.3725300515, + 0.509787667614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.509787667614, + 48.3725300515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b1b2301b025298a506efa6b54e8f4f8b86fa8c2", + "fields": { + "code_commune_insee": "60051", + "nom_de_la_commune": "BEAUDEDUIT", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6788602196, + 2.05926915948 + ], + "libelle_d_acheminement": "BEAUDEDUIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05926915948, + 49.6788602196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55a4b97e53484f5e2cf7bb1f557e033603db039e", + "fields": { + "code_commune_insee": "61206", + "nom_de_la_commune": "L HOME CHAMONDOT", + "code_postal": "61290", + "coordonnees_gps": [ + 48.6002616594, + 0.735701468188 + ], + "libelle_d_acheminement": "L HOME CHAMONDOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.735701468188, + 48.6002616594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffb20564435cebca38f7bf0e4919a75ffb85faf8", + "fields": { + "ligne_5": "LA NEUVILLE GARNIER", + "code_commune_insee": "60054", + "libelle_d_acheminement": "LES HAUTS TALICAN", + "code_postal": "60390", + "nom_de_la_commune": "LES HAUTS TALICAN", + "coordonnees_gps": [ + 49.3254912942, + 2.00355965035 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00355965035, + 49.3254912942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5dc6a4a9a05024363828b026cff18b3bba6206e", + "fields": { + "code_commune_insee": "61208", + "nom_de_la_commune": "IRAI", + "code_postal": "61190", + "coordonnees_gps": [ + 48.6742050739, + 0.689209561635 + ], + "libelle_d_acheminement": "IRAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.689209561635, + 48.6742050739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f948621b1410b92d6b2a3fd11bb5acff23489970", + "fields": { + "code_commune_insee": "60066", + "nom_de_la_commune": "BETHANCOURT EN VALOIS", + "code_postal": "60129", + "coordonnees_gps": [ + 49.2792326515, + 2.87566048733 + ], + "libelle_d_acheminement": "BETHANCOURT EN VALOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87566048733, + 49.2792326515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56a9cb661ac0349ba10fbf301af71aee4f230160", + "fields": { + "code_commune_insee": "61215", + "nom_de_la_commune": "LALEU", + "code_postal": "61170", + "coordonnees_gps": [ + 48.5417295562, + 0.365988546618 + ], + "libelle_d_acheminement": "LALEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.365988546618, + 48.5417295562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "746dd1a2e8bdd94b0354e34f4aede4e654e1f788", + "fields": { + "code_commune_insee": "60067", + "nom_de_la_commune": "BETHISY ST MARTIN", + "code_postal": "60320", + "coordonnees_gps": [ + 49.2875795546, + 2.812008154 + ], + "libelle_d_acheminement": "BETHISY ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.812008154, + 49.2875795546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c880bc8ca67cbe5c6b45f759a74956baffbf41f", + "fields": { + "code_commune_insee": "61217", + "nom_de_la_commune": "LA LANDE DE LOUGE", + "code_postal": "61210", + "coordonnees_gps": [ + 48.7010795205, + -0.249914242658 + ], + "libelle_d_acheminement": "LA LANDE DE LOUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.249914242658, + 48.7010795205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60d51142555a4ba8e2c32e11a025fe2df7bb3a2a", + "fields": { + "code_commune_insee": "60072", + "nom_de_la_commune": "BITRY", + "code_postal": "60350", + "coordonnees_gps": [ + 49.4145786012, + 3.07807803458 + ], + "libelle_d_acheminement": "BITRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07807803458, + 49.4145786012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "696dce69e91cd93193e2a82095edb468f7ae936d", + "fields": { + "code_commune_insee": "61218", + "nom_de_la_commune": "LA LANDE PATRY", + "code_postal": "61100", + "coordonnees_gps": [ + 48.7535484464, + -0.598148128234 + ], + "libelle_d_acheminement": "LA LANDE PATRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.598148128234, + 48.7535484464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e9e42392a4d2677899aea2130c5b9c906806fcb", + "fields": { + "code_commune_insee": "60081", + "nom_de_la_commune": "BONLIER", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4727781384, + 2.14990842093 + ], + "libelle_d_acheminement": "BONLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14990842093, + 49.4727781384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2656804c6620c788c9287a5759f28e5de2fea8b6", + "fields": { + "code_commune_insee": "61219", + "nom_de_la_commune": "LA LANDE ST SIMEON", + "code_postal": "61100", + "coordonnees_gps": [ + 48.8273403664, + -0.433811348847 + ], + "libelle_d_acheminement": "LA LANDE ST SIMEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.433811348847, + 48.8273403664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c597b2543b3d0412f408a4f20ebbf718502e979e", + "fields": { + "ligne_5": "FOSSEUSE", + "code_commune_insee": "60088", + "libelle_d_acheminement": "BORNEL", + "code_postal": "60540", + "nom_de_la_commune": "BORNEL", + "coordonnees_gps": [ + 49.1918532269, + 2.18485090875 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18485090875, + 49.1918532269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "350870bb633acfebb0cd975396df3fb5cb3dc2a9", + "fields": { + "ligne_5": "NEUILLY SUR EURE", + "code_commune_insee": "61230", + "libelle_d_acheminement": "LONGNY LES VILLAGES", + "code_postal": "61290", + "nom_de_la_commune": "LONGNY LES VILLAGES", + "coordonnees_gps": [ + 48.5293923919, + 0.757893185933 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.757893185933, + 48.5293923919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaed9d80bf1299d96f00791803f47ca22e142a32", + "fields": { + "code_commune_insee": "60090", + "nom_de_la_commune": "BOUCONVILLERS", + "code_postal": "60240", + "coordonnees_gps": [ + 49.1734900557, + 1.90034078826 + ], + "libelle_d_acheminement": "BOUCONVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90034078826, + 49.1734900557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c62f5f93a5d01b79e69db417f607ca36fed85868", + "fields": { + "code_commune_insee": "61232", + "nom_de_la_commune": "LONLAY L ABBAYE", + "code_postal": "61700", + "coordonnees_gps": [ + 48.6502297145, + -0.704744112776 + ], + "libelle_d_acheminement": "LONLAY L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.704744112776, + 48.6502297145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "289f6fa1a52637a938b9a11a190d22d30f64f337", + "fields": { + "code_commune_insee": "60101", + "nom_de_la_commune": "BREGY", + "code_postal": "60440", + "coordonnees_gps": [ + 49.0895785618, + 2.87413951706 + ], + "libelle_d_acheminement": "BREGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87413951706, + 49.0895785618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1b85a1a705258d15bb9538a2cf4c1382afa8a2d", + "fields": { + "code_commune_insee": "61233", + "nom_de_la_commune": "LONLAY LE TESSON", + "code_postal": "61600", + "coordonnees_gps": [ + 48.6505142645, + -0.34589892324 + ], + "libelle_d_acheminement": "LONLAY LE TESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.34589892324, + 48.6505142645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d64b9020b3ad158dc35c75e17208900dd5b6bc1", + "fields": { + "code_commune_insee": "60103", + "nom_de_la_commune": "BRESLES", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4135603419, + 2.25008112215 + ], + "libelle_d_acheminement": "BRESLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25008112215, + 49.4135603419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf52b44c5c9f701a42ea38ca9251a2378e5a9d56", + "fields": { + "code_commune_insee": "61251", + "nom_de_la_commune": "MARCHEMAISONS", + "code_postal": "61170", + "coordonnees_gps": [ + 48.5227109351, + 0.314713654868 + ], + "libelle_d_acheminement": "MARCHEMAISONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.314713654868, + 48.5227109351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "789658cb2361d71881b792342bbec3e488697710", + "fields": { + "code_commune_insee": "60117", + "nom_de_la_commune": "BUSSY", + "code_postal": "60400", + "coordonnees_gps": [ + 49.6314236015, + 2.98056681507 + ], + "libelle_d_acheminement": "BUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98056681507, + 49.6314236015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb289074608f658e155ab49bcc4e763f5786a4f7", + "fields": { + "code_commune_insee": "61256", + "nom_de_la_commune": "MEDAVY", + "code_postal": "61570", + "coordonnees_gps": [ + 48.6730922251, + 0.0786736803117 + ], + "libelle_d_acheminement": "MEDAVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0786736803117, + 48.6730922251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30b6bafaba865998980144ff89c54752080a1ef3", + "fields": { + "code_commune_insee": "60118", + "nom_de_la_commune": "CAISNES", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5201213587, + 3.06454486519 + ], + "libelle_d_acheminement": "CAISNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06454486519, + 49.5201213587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa6c3f09f0e55422a89d1f24aaabd9ceecdffcfa", + "fields": { + "code_commune_insee": "61260", + "nom_de_la_commune": "LE MENIL DE BRIOUZE", + "code_postal": "61220", + "coordonnees_gps": [ + 48.660905496, + -0.397537206394 + ], + "libelle_d_acheminement": "LE MENIL DE BRIOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.397537206394, + 48.660905496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aa3a4cfe8f040675b397f442d6566366707d97a", + "fields": { + "code_commune_insee": "60122", + "nom_de_la_commune": "CAMPEAUX", + "code_postal": "60220", + "coordonnees_gps": [ + 49.6140351708, + 1.75497677348 + ], + "libelle_d_acheminement": "CAMPEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75497677348, + 49.6140351708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63c74a3ab905da4b09cf1c739623e4d5322cca24", + "fields": { + "code_commune_insee": "61261", + "nom_de_la_commune": "LE MENIL BROUT", + "code_postal": "61250", + "coordonnees_gps": [ + 48.4800081539, + 0.237910354434 + ], + "libelle_d_acheminement": "LE MENIL BROUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.237910354434, + 48.4800081539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fd8a7edb01d0d82774b5d78ae4516301f7bf1a3", + "fields": { + "code_commune_insee": "60123", + "nom_de_la_commune": "CAMPREMY", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5638031018, + 2.32696331161 + ], + "libelle_d_acheminement": "CAMPREMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32696331161, + 49.5638031018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56c090269b1bc53027e4cef019fef0a24171300d", + "fields": { + "code_commune_insee": "61263", + "nom_de_la_commune": "MENIL ERREUX", + "code_postal": "61250", + "coordonnees_gps": [ + 48.5093937209, + 0.183751804866 + ], + "libelle_d_acheminement": "MENIL ERREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.183751804866, + 48.5093937209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eca430f35ae10f73b422c3d98a68f71664d0fed7", + "fields": { + "code_commune_insee": "60127", + "nom_de_la_commune": "CANNY SUR MATZ", + "code_postal": "60310", + "coordonnees_gps": [ + 49.6025511779, + 2.80098340652 + ], + "libelle_d_acheminement": "CANNY SUR MATZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80098340652, + 49.6025511779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af1df0ba3c6285e9921f8e594097d2d9ab27ef96", + "fields": { + "code_commune_insee": "61264", + "nom_de_la_commune": "MENIL FROGER", + "code_postal": "61240", + "coordonnees_gps": [ + 48.7308500818, + 0.265343668064 + ], + "libelle_d_acheminement": "MENIL FROGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.265343668064, + 48.7308500818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33eb01914e680a91c50004904326e9cacad33742", + "fields": { + "code_commune_insee": "60133", + "nom_de_la_commune": "CATILLON FUMECHON", + "code_postal": "60130", + "coordonnees_gps": [ + 49.5268754931, + 2.37843374733 + ], + "libelle_d_acheminement": "CATILLON FUMECHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37843374733, + 49.5268754931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "febb64eb2fb6f52f92ad423efa88e4643425ff57", + "fields": { + "code_commune_insee": "61267", + "nom_de_la_commune": "MENIL HERMEI", + "code_postal": "61210", + "coordonnees_gps": [ + 48.8258123332, + -0.318533772581 + ], + "libelle_d_acheminement": "MENIL HERMEI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.318533772581, + 48.8258123332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2b8256fbbab6c77f387e206a9b631b49f760b90", + "fields": { + "code_commune_insee": "60141", + "nom_de_la_commune": "CHANTILLY", + "code_postal": "60500", + "coordonnees_gps": [ + 49.1762641654, + 2.48103481914 + ], + "libelle_d_acheminement": "CHANTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48103481914, + 49.1762641654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "780db7bceeacd2d667e853697eb9bc2585450086", + "fields": { + "code_commune_insee": "61271", + "nom_de_la_commune": "LE MENIL SCELLEUR", + "code_postal": "61320", + "coordonnees_gps": [ + 48.6131652955, + -0.124894508969 + ], + "libelle_d_acheminement": "LE MENIL SCELLEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.124894508969, + 48.6131652955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d83c4b96b6b4183b0672abc8729014df5e744dc", + "fields": { + "code_commune_insee": "60149", + "nom_de_la_commune": "CHEVRIERES", + "code_postal": "60710", + "coordonnees_gps": [ + 49.3461074721, + 2.67968198793 + ], + "libelle_d_acheminement": "CHEVRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67968198793, + 49.3461074721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "baf816da3807605ee0cffdbc56af643be15e6453", + "fields": { + "code_commune_insee": "61274", + "nom_de_la_commune": "LES MENUS", + "code_postal": "61290", + "coordonnees_gps": [ + 48.5179857136, + 0.93370273757 + ], + "libelle_d_acheminement": "LES MENUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93370273757, + 48.5179857136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dab401d7fb796816dcc292369644bc70812c098d", + "fields": { + "code_commune_insee": "60150", + "nom_de_la_commune": "CHIRY OURSCAMP", + "code_postal": "60138", + "coordonnees_gps": [ + 49.5303142759, + 2.97100668785 + ], + "libelle_d_acheminement": "CHIRY OURSCAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97100668785, + 49.5303142759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "661f18cd50a28c466385a1209217642e544a706d", + "fields": { + "code_commune_insee": "61279", + "nom_de_la_commune": "MIEUXCE", + "code_postal": "61250", + "coordonnees_gps": [ + 48.4115548771, + -0.00204089099581 + ], + "libelle_d_acheminement": "MIEUXCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00204089099581, + 48.4115548771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23995b24b8859d75f9da16a2173b7fead3226120", + "fields": { + "code_commune_insee": "60155", + "nom_de_la_commune": "CIRES LES MELLO", + "code_postal": "60660", + "coordonnees_gps": [ + 49.262678531, + 2.33736387513 + ], + "libelle_d_acheminement": "CIRES LES MELLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33736387513, + 49.262678531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d59316340a88e24c74a6ea9573da02b102a9eafe", + "fields": { + "code_commune_insee": "61291", + "nom_de_la_commune": "MONTREUIL LA CAMBE", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8842457581, + 0.0335930186845 + ], + "libelle_d_acheminement": "MONTREUIL LA CAMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0335930186845, + 48.8842457581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e239d3554600c07a850c0da3a05d1bf72cf9a78d", + "fields": { + "code_commune_insee": "60156", + "nom_de_la_commune": "CLAIROIX", + "code_postal": "60280", + "coordonnees_gps": [ + 49.4412986705, + 2.8453991397 + ], + "libelle_d_acheminement": "CLAIROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8453991397, + 49.4412986705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a46f4ba2af1994c15fff43f4cbb07f998b0d84d2", + "fields": { + "code_commune_insee": "61293", + "nom_de_la_commune": "MORTAGNE AU PERCHE", + "code_postal": "61400", + "coordonnees_gps": [ + 48.5204467811, + 0.561388622887 + ], + "libelle_d_acheminement": "MORTAGNE AU PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.561388622887, + 48.5204467811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1615896c64d62bb88e4cc17cd1dd1b3ddb0533a0", + "fields": { + "code_commune_insee": "60161", + "nom_de_la_commune": "CONTEVILLE", + "code_postal": "60360", + "coordonnees_gps": [ + 49.6534471153, + 2.05414599318 + ], + "libelle_d_acheminement": "CONTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05414599318, + 49.6534471153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8e1679e5ab9281aefe0d38bdd589efc794e6ed6", + "fields": { + "code_commune_insee": "61294", + "nom_de_la_commune": "MORTREE", + "code_postal": "61570", + "coordonnees_gps": [ + 48.6384870468, + 0.0801583053247 + ], + "libelle_d_acheminement": "MORTREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0801583053247, + 48.6384870468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af052c4b3f018e25fb2f54497cceefe82e724b54", + "fields": { + "code_commune_insee": "60171", + "nom_de_la_commune": "COURTIEUX", + "code_postal": "60350", + "coordonnees_gps": [ + 49.3852025965, + 3.08510106889 + ], + "libelle_d_acheminement": "COURTIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08510106889, + 49.3852025965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40d7ea44be7cb6ed081e004f4931d0fca31570ca", + "fields": { + "code_commune_insee": "61301", + "nom_de_la_commune": "NEAUPHE SOUS ESSAI", + "code_postal": "61500", + "coordonnees_gps": [ + 48.5638348673, + 0.194252543746 + ], + "libelle_d_acheminement": "NEAUPHE SOUS ESSAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.194252543746, + 48.5638348673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9f5adc9066d78bc5f71e5b33955ecf13771133e", + "fields": { + "code_commune_insee": "60179", + "nom_de_la_commune": "CREVECOEUR LE PETIT", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5740115762, + 2.49886203911 + ], + "libelle_d_acheminement": "CREVECOEUR LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49886203911, + 49.5740115762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5522772d7b6facbe371471eaeef6ed07386e3b8", + "fields": { + "code_commune_insee": "61302", + "nom_de_la_commune": "NEAUPHE SUR DIVE", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8515075057, + 0.0956108929382 + ], + "libelle_d_acheminement": "NEAUPHE SUR DIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0956108929382, + 48.8515075057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "954eaa769eebc8e0da1c67acc93675ff5b809063", + "fields": { + "code_commune_insee": "60185", + "nom_de_la_commune": "CROUY EN THELLE", + "code_postal": "60530", + "coordonnees_gps": [ + 49.2099385814, + 2.32007698271 + ], + "libelle_d_acheminement": "CROUY EN THELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32007698271, + 49.2099385814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "393fd29107c69cb366e64c9ee0df29172d8b5783", + "fields": { + "ligne_5": "NOCE", + "code_commune_insee": "61309", + "libelle_d_acheminement": "PERCHE EN NOCE", + "code_postal": "61340", + "nom_de_la_commune": "PERCHE EN NOCE", + "coordonnees_gps": [ + 48.3808259058, + 0.686799351677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.686799351677, + 48.3808259058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02c3f53fc0e8e46a389bc02871e78f13da405f40", + "fields": { + "code_commune_insee": "60187", + "nom_de_la_commune": "CUIGY EN BRAY", + "code_postal": "60850", + "coordonnees_gps": [ + 49.4323341573, + 1.83507266626 + ], + "libelle_d_acheminement": "CUIGY EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83507266626, + 49.4323341573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "842940dffb9b0d8ced83a5c17d8addb3956bb039", + "fields": { + "ligne_5": "ST AUBIN DES GROIS", + "code_commune_insee": "61309", + "libelle_d_acheminement": "PERCHE EN NOCE", + "code_postal": "61340", + "nom_de_la_commune": "PERCHE EN NOCE", + "coordonnees_gps": [ + 48.3808259058, + 0.686799351677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.686799351677, + 48.3808259058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f64cc00036f6b4d215232614ce69e86fea1b0f8", + "fields": { + "code_commune_insee": "60191", + "nom_de_la_commune": "CUVILLY", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5486898805, + 2.70082321252 + ], + "libelle_d_acheminement": "CUVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70082321252, + 49.5486898805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c062c4aee0812b51f11d0583e0fcb5cbec37662e", + "fields": { + "code_commune_insee": "61310", + "nom_de_la_commune": "NONANT LE PIN", + "code_postal": "61240", + "coordonnees_gps": [ + 48.7031233421, + 0.207290973767 + ], + "libelle_d_acheminement": "NONANT LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.207290973767, + 48.7031233421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb9103b5c63600dfacdf5d5566ad2e68da09d44e", + "fields": { + "ligne_5": "LE DELUGE", + "code_commune_insee": "60196", + "libelle_d_acheminement": "LA DRENNE", + "code_postal": "60790", + "nom_de_la_commune": "LA DRENNE", + "coordonnees_gps": [ + 49.2942535417, + 2.11111174674 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11111174674, + 49.2942535417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87973f27f04f8d3a893ef98a8e9cec20aecc36ab", + "fields": { + "ligne_5": "L EPINAY LE COMTE", + "code_commune_insee": "61324", + "libelle_d_acheminement": "PASSAIS VILLAGES", + "code_postal": "61350", + "nom_de_la_commune": "PASSAIS VILLAGES", + "coordonnees_gps": [ + 48.5142650643, + -0.759546926567 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.759546926567, + 48.5142650643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07c3eae084902690f2d4cc2d7743ee52557b7046", + "fields": { + "code_commune_insee": "60199", + "nom_de_la_commune": "DOMELIERS", + "code_postal": "60360", + "coordonnees_gps": [ + 49.6285305666, + 2.16465510243 + ], + "libelle_d_acheminement": "DOMELIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16465510243, + 49.6285305666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "207b99a0221754c263f28675fc8b74d94af5cbce", + "fields": { + "ligne_5": "PASSAIS LA CONCEPTION", + "code_commune_insee": "61324", + "libelle_d_acheminement": "PASSAIS VILLAGES", + "code_postal": "61350", + "nom_de_la_commune": "PASSAIS VILLAGES", + "coordonnees_gps": [ + 48.5142650643, + -0.759546926567 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.759546926567, + 48.5142650643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e850c68a63f25b2bafc04124f3d76d1133acf4c", + "fields": { + "code_commune_insee": "60208", + "nom_de_la_commune": "ENENCOURT LEAGE", + "code_postal": "60590", + "coordonnees_gps": [ + 49.3046719364, + 1.84454960402 + ], + "libelle_d_acheminement": "ENENCOURT LEAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84454960402, + 49.3046719364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54fe0c3533b0c171c9433649f668df8d7c40f724", + "fields": { + "ligne_5": "ST SIMEON", + "code_commune_insee": "61324", + "libelle_d_acheminement": "PASSAIS VILLAGES", + "code_postal": "61350", + "nom_de_la_commune": "PASSAIS VILLAGES", + "coordonnees_gps": [ + 48.5142650643, + -0.759546926567 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.759546926567, + 48.5142650643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b005ef57896a887fc53486cc22b5afc5203f66a", + "fields": { + "code_commune_insee": "60214", + "nom_de_la_commune": "ERNEMONT BOUTAVENT", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5930690775, + 1.79502801856 + ], + "libelle_d_acheminement": "ERNEMONT BOUTAVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79502801856, + 49.5930690775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b62384829e650a002db1965872cb92b81135e6d7", + "fields": { + "code_commune_insee": "61329", + "nom_de_la_commune": "LE PIN LA GARENNE", + "code_postal": "61400", + "coordonnees_gps": [ + 48.4445657379, + 0.544883378197 + ], + "libelle_d_acheminement": "LE PIN LA GARENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.544883378197, + 48.4445657379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cd1b630e03ff43e804a6e2eb6f2c34207ab12e1", + "fields": { + "code_commune_insee": "60225", + "nom_de_la_commune": "ETOUY", + "code_postal": "60600", + "coordonnees_gps": [ + 49.4281067222, + 2.37019823319 + ], + "libelle_d_acheminement": "ETOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37019823319, + 49.4281067222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5956b9fee6b2f9759fb2cde4eb55eca9e557453", + "fields": { + "ligne_5": "LA FORET AUVRAY", + "code_commune_insee": "61339", + "libelle_d_acheminement": "PUTANGES LE LAC", + "code_postal": "61210", + "nom_de_la_commune": "PUTANGES LE LAC", + "coordonnees_gps": [ + 48.766449668, + -0.252215702706 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.252215702706, + 48.766449668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7994f8e77ea18abffefb1cbb868ec0cef8050789", + "fields": { + "code_commune_insee": "60231", + "nom_de_la_commune": "FEIGNEUX", + "code_postal": "60800", + "coordonnees_gps": [ + 49.2609818537, + 2.91459037295 + ], + "libelle_d_acheminement": "FEIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91459037295, + 49.2609818537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7b6ab4521b09fe308468c3c472a589631fd86d1", + "fields": { + "ligne_5": "RADON", + "code_commune_insee": "61341", + "libelle_d_acheminement": "ECOUVES", + "code_postal": "61250", + "nom_de_la_commune": "ECOUVES", + "coordonnees_gps": [ + 48.5089267357, + 0.0863965878338 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0863965878338, + 48.5089267357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f55c6db354d2af0b56bd1bf33923cd43161cc50", + "fields": { + "code_commune_insee": "60234", + "nom_de_la_commune": "FITZ JAMES", + "code_postal": "60600", + "coordonnees_gps": [ + 49.3993972661, + 2.4291033299 + ], + "libelle_d_acheminement": "FITZ JAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4291033299, + 49.3993972661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08d7708be6d012efd9c1800e5139cf3d9e3787e8", + "fields": { + "code_commune_insee": "61346", + "nom_de_la_commune": "LE RENOUARD", + "code_postal": "61120", + "coordonnees_gps": [ + 48.9194110342, + 0.0988609548607 + ], + "libelle_d_acheminement": "LE RENOUARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0988609548607, + 48.9194110342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cca8e40949f62f1c052a43cd150f3f94351a0a0", + "fields": { + "code_commune_insee": "60242", + "nom_de_la_commune": "FONTAINE LAVAGANNE", + "code_postal": "60690", + "coordonnees_gps": [ + 49.5986219699, + 1.9543319916 + ], + "libelle_d_acheminement": "FONTAINE LAVAGANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9543319916, + 49.5986219699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "777f90717599b3422ab63a09997a5a41c2c1c162", + "fields": { + "code_commune_insee": "61348", + "nom_de_la_commune": "REVEILLON", + "code_postal": "61400", + "coordonnees_gps": [ + 48.4806705534, + 0.56261549181 + ], + "libelle_d_acheminement": "REVEILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56261549181, + 48.4806705534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54bae1c4a46dc6ab5517b676148f45b6ef04c348", + "fields": { + "code_commune_insee": "60245", + "nom_de_la_commune": "FORMERIE", + "code_postal": "60220", + "coordonnees_gps": [ + 49.6492986407, + 1.72801391707 + ], + "libelle_d_acheminement": "FORMERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72801391707, + 49.6492986407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cf4a3d7c27aa441e71b2be0ba8b44ac1c782e46", + "fields": { + "code_commune_insee": "61350", + "nom_de_la_commune": "LA ROCHE MABILE", + "code_postal": "61420", + "coordonnees_gps": [ + 48.489577366, + -0.0663745074632 + ], + "libelle_d_acheminement": "LA ROCHE MABILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0663745074632, + 48.489577366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b796f54008b2c2dffdc026813555f912d8d69150", + "fields": { + "code_commune_insee": "60248", + "nom_de_la_commune": "FOUILLOY", + "code_postal": "60220", + "coordonnees_gps": [ + 49.7312722644, + 1.81819749576 + ], + "libelle_d_acheminement": "FOUILLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81819749576, + 49.7312722644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef0709cb060da8d040371f982e2a6342ea599977", + "fields": { + "code_commune_insee": "61351", + "nom_de_la_commune": "ROIVILLE", + "code_postal": "61120", + "coordonnees_gps": [ + 48.8801395888, + 0.236531994875 + ], + "libelle_d_acheminement": "ROIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236531994875, + 48.8801395888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98f542f7b03aef994e287d81fa369b1333c9eaea", + "fields": { + "code_commune_insee": "60249", + "nom_de_la_commune": "FOULANGUES", + "code_postal": "60250", + "coordonnees_gps": [ + 49.2769230112, + 2.31380236183 + ], + "libelle_d_acheminement": "FOULANGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31380236183, + 49.2769230112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6024094a7e8cb9767938c29a41dcff83de1ce74", + "fields": { + "code_commune_insee": "61358", + "nom_de_la_commune": "SAI", + "code_postal": "61200", + "coordonnees_gps": [ + 48.7407667641, + 0.0235996359828 + ], + "libelle_d_acheminement": "SAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0235996359828, + 48.7407667641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c16074a45d7bf1e49ea8097229900fcd5a7cdd47", + "fields": { + "code_commune_insee": "60253", + "nom_de_la_commune": "FRANCASTEL", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5898566137, + 2.14867375497 + ], + "libelle_d_acheminement": "FRANCASTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14867375497, + 49.5898566137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dd7f60ef83c87e004c98cd11233e20b503840aa", + "fields": { + "code_commune_insee": "61362", + "nom_de_la_commune": "ST ANDRE DE MESSEI", + "code_postal": "61440", + "coordonnees_gps": [ + 48.6883800574, + -0.521932078822 + ], + "libelle_d_acheminement": "ST ANDRE DE MESSEI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.521932078822, + 48.6883800574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7233186f8bace7790631c35ba412bfc03a15d4fb", + "fields": { + "ligne_5": "FRESNEAUX MONTCHEVREUIL", + "code_commune_insee": "60256", + "libelle_d_acheminement": "MONTCHEVREUIL", + "code_postal": "60240", + "nom_de_la_commune": "MONTCHEVREUIL", + "coordonnees_gps": [ + 49.2879395667, + 2.01083675138 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01083675138, + 49.2879395667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17688f1c72215ac8d93500158557f773da7a0809", + "fields": { + "code_commune_insee": "61365", + "nom_de_la_commune": "ST AUBIN D APPENAI", + "code_postal": "61170", + "coordonnees_gps": [ + 48.5420210884, + 0.33805985698 + ], + "libelle_d_acheminement": "ST AUBIN D APPENAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33805985698, + 48.5420210884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36370a3861ac322a47b6ba9c916db43e09a13061", + "fields": { + "code_commune_insee": "60257", + "nom_de_la_commune": "FRESNE LEGUILLON", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2509113423, + 1.98912391608 + ], + "libelle_d_acheminement": "FRESNE LEGUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98912391608, + 49.2509113423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7643dfabe2969ccd2220cbd484d5f730f859e7b8", + "fields": { + "code_commune_insee": "61369", + "nom_de_la_commune": "ST BOMER LES FORGES", + "code_postal": "61700", + "coordonnees_gps": [ + 48.6448585107, + -0.622820262542 + ], + "libelle_d_acheminement": "ST BOMER LES FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.622820262542, + 48.6448585107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0483208e98db09786792e291839edfc45a6e78b", + "fields": { + "code_commune_insee": "60263", + "nom_de_la_commune": "FRETOY LE CHATEAU", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6618149905, + 2.97314954198 + ], + "libelle_d_acheminement": "FRETOY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97314954198, + 49.6618149905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c358bfea427da05da1b40ea0dcf8c2eca7764ad3", + "fields": { + "code_commune_insee": "61370", + "nom_de_la_commune": "ST BRICE", + "code_postal": "61700", + "coordonnees_gps": [ + 48.5498503299, + -0.641601711695 + ], + "libelle_d_acheminement": "ST BRICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.641601711695, + 48.5498503299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4e9e7628dc4ab2b133b486b7272e122e1830bd8", + "fields": { + "code_commune_insee": "60280", + "nom_de_la_commune": "GOURCHELLES", + "code_postal": "60220", + "coordonnees_gps": [ + 49.726483327, + 1.77900309327 + ], + "libelle_d_acheminement": "GOURCHELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77900309327, + 49.726483327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68a3e39f57824a994cc842249b739ff3538c417d", + "fields": { + "code_commune_insee": "61389", + "nom_de_la_commune": "STE GAUBURGE STE COLOMBE", + "code_postal": "61370", + "coordonnees_gps": [ + 48.7078395565, + 0.444533266372 + ], + "libelle_d_acheminement": "STE GAUBURGE STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.444533266372, + 48.7078395565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9bfbf07cc4079de5041ce41c543399ee4ca99e4", + "fields": { + "code_commune_insee": "60283", + "nom_de_la_commune": "GOUY LES GROSEILLERS", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6953840868, + 2.21713981156 + ], + "libelle_d_acheminement": "GOUY LES GROSEILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21713981156, + 49.6953840868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75dff9ba123ea8ddcc6bcb24071377d4721a1664", + "fields": { + "code_commune_insee": "61397", + "nom_de_la_commune": "ST GERMAIN DU CORBEIS", + "code_postal": "61000", + "coordonnees_gps": [ + 48.4177117997, + 0.0580112631913 + ], + "libelle_d_acheminement": "ST GERMAIN DU CORBEIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0580112631913, + 48.4177117997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c0692988658251354504ce3c273c0a64e660679", + "fields": { + "code_commune_insee": "60284", + "nom_de_la_commune": "GRANDFRESNOY", + "code_postal": "60680", + "coordonnees_gps": [ + 49.3762488165, + 2.65940543568 + ], + "libelle_d_acheminement": "GRANDFRESNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65940543568, + 49.3762488165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5257742d277541ff25a7f0efab2bfa6818d03eb8", + "fields": { + "code_commune_insee": "61405", + "nom_de_la_commune": "ST HILAIRE SUR ERRE", + "code_postal": "61340", + "coordonnees_gps": [ + 48.3121656511, + 0.745828480936 + ], + "libelle_d_acheminement": "ST HILAIRE SUR ERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.745828480936, + 48.3121656511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e58111a9c4a65f2651781e4dc067721f6c8112fc", + "fields": { + "code_commune_insee": "60288", + "nom_de_la_commune": "GREMEVILLERS", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5591317883, + 1.90615994772 + ], + "libelle_d_acheminement": "GREMEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90615994772, + 49.5591317883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0833f435da2dad5a3fb029a2f9a4a06636aeb732", + "fields": { + "code_commune_insee": "61407", + "nom_de_la_commune": "STE HONORINE LA CHARDONNE", + "code_postal": "61430", + "coordonnees_gps": [ + 48.8247345941, + -0.476136278421 + ], + "libelle_d_acheminement": "STE HONORINE LA CHARDONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.476136278421, + 48.8247345941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9692bba78d62445c3fccee26c98ff83bafa90021", + "fields": { + "code_commune_insee": "60296", + "nom_de_la_commune": "HANNACHES", + "code_postal": "60650", + "coordonnees_gps": [ + 49.5087752838, + 1.80840356243 + ], + "libelle_d_acheminement": "HANNACHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80840356243, + 49.5087752838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4aecb13eff28b577d3fd39503facc8c853387243", + "fields": { + "code_commune_insee": "61408", + "nom_de_la_commune": "STE HONORINE LA GUILLAUME", + "code_postal": "61210", + "coordonnees_gps": [ + 48.7774185998, + -0.381537556924 + ], + "libelle_d_acheminement": "STE HONORINE LA GUILLAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.381537556924, + 48.7774185998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c7419dbc4e8f7431131a20b0e47d02c446303c7", + "fields": { + "code_commune_insee": "60298", + "nom_de_la_commune": "HANVOILE", + "code_postal": "60650", + "coordonnees_gps": [ + 49.5090035202, + 1.8809988384 + ], + "libelle_d_acheminement": "HANVOILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8809988384, + 49.5090035202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b6a4355862f772656716cefb390969dc0ef879a", + "fields": { + "code_commune_insee": "61418", + "nom_de_la_commune": "ST MARD DE RENO", + "code_postal": "61400", + "coordonnees_gps": [ + 48.5102214225, + 0.634185094113 + ], + "libelle_d_acheminement": "ST MARD DE RENO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.634185094113, + 48.5102214225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89ffb548c0a2ca56da38b28b18d2efce0b54e5c4", + "fields": { + "code_commune_insee": "60302", + "nom_de_la_commune": "HAUDIVILLERS", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4869439837, + 2.24134168227 + ], + "libelle_d_acheminement": "HAUDIVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24134168227, + 49.4869439837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "227227ed7723ca0facef455ea26ddd5d7fc57079", + "fields": { + "code_commune_insee": "61427", + "nom_de_la_commune": "ST MARTIN L AIGUILLON", + "code_postal": "61320", + "coordonnees_gps": [ + 48.6028213138, + -0.17990137206 + ], + "libelle_d_acheminement": "ST MARTIN L AIGUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17990137206, + 48.6028213138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9185adf205e880e68ab01afeb692ab78c3ed0fc9", + "fields": { + "code_commune_insee": "60305", + "nom_de_la_commune": "HAUTEFONTAINE", + "code_postal": "60350", + "coordonnees_gps": [ + 49.3639288185, + 3.06265363799 + ], + "libelle_d_acheminement": "HAUTEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06265363799, + 49.3639288185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "762818c0000f71e94b76f3bcba3e1ca32e142380", + "fields": { + "ligne_5": "NORMANDEL", + "code_commune_insee": "61429", + "libelle_d_acheminement": "CHARENCEY", + "code_postal": "61190", + "nom_de_la_commune": "CHARENCEY", + "coordonnees_gps": [ + 48.6391173168, + 0.752904500205 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.752904500205, + 48.6391173168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63691011db36842eb8cacde7df7500fcf6e3f2a7", + "fields": { + "code_commune_insee": "60311", + "nom_de_la_commune": "LA HERELLE", + "code_postal": "60120", + "coordonnees_gps": [ + 49.598162118, + 2.422095572 + ], + "libelle_d_acheminement": "LA HERELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.422095572, + 49.598162118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c774ae82f63d184410809658b89b67e4664a44a", + "fields": { + "ligne_5": "ST MAURICE LES CHARENCEY", + "code_commune_insee": "61429", + "libelle_d_acheminement": "CHARENCEY", + "code_postal": "61190", + "nom_de_la_commune": "CHARENCEY", + "coordonnees_gps": [ + 48.6391173168, + 0.752904500205 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.752904500205, + 48.6391173168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c9200cc12b3c073bad1bd1c5c8fd0ee5de8f875", + "fields": { + "code_commune_insee": "60315", + "nom_de_la_commune": "HODENC EN BRAY", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4723304928, + 1.91021767615 + ], + "libelle_d_acheminement": "HODENC EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91021767615, + 49.4723304928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cff8e8a4912c96a164525163a4eff816fcf41b22", + "fields": { + "code_commune_insee": "61435", + "nom_de_la_commune": "ST NICOLAS DE SOMMAIRE", + "code_postal": "61550", + "coordonnees_gps": [ + 48.8124271962, + 0.597978267366 + ], + "libelle_d_acheminement": "ST NICOLAS DE SOMMAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.597978267366, + 48.8124271962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bab89a552cda826ac22d9e2a5d2b7c7a2dc29a7", + "fields": { + "code_commune_insee": "60320", + "nom_de_la_commune": "IVORS", + "code_postal": "60141", + "coordonnees_gps": [ + 49.2003314845, + 3.01881111858 + ], + "libelle_d_acheminement": "IVORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01881111858, + 49.2003314845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cab98253ee95e1a48b9107c38a3d58c451aea814", + "fields": { + "code_commune_insee": "61442", + "nom_de_la_commune": "ST PATRICE DU DESERT", + "code_postal": "61600", + "coordonnees_gps": [ + 48.5343425524, + -0.285812215846 + ], + "libelle_d_acheminement": "ST PATRICE DU DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.285812215846, + 48.5343425524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87294a9fd8a5b879cccd95c06ee7b6bd9e50bf72", + "fields": { + "code_commune_insee": "60321", + "nom_de_la_commune": "IVRY LE TEMPLE", + "code_postal": "60173", + "coordonnees_gps": [ + 49.2320779777, + 2.02966880034 + ], + "libelle_d_acheminement": "IVRY LE TEMPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02966880034, + 49.2320779777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08f7aaf76f20bc3fa9c74808c4f397065d16af97", + "fields": { + "code_commune_insee": "61447", + "nom_de_la_commune": "ST PIERRE DU REGARD", + "code_postal": "61790", + "coordonnees_gps": [ + 48.8338445612, + -0.541002383662 + ], + "libelle_d_acheminement": "ST PIERRE DU REGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.541002383662, + 48.8338445612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "275c532e0539ad5caf38bc52ebee2bb725b9e085", + "fields": { + "code_commune_insee": "60344", + "nom_de_la_commune": "LALANDELLE", + "code_postal": "60850", + "coordonnees_gps": [ + 49.387187443, + 1.87215742547 + ], + "libelle_d_acheminement": "LALANDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87215742547, + 49.387187443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcd29d99bebbd0d0cdb880100daaa7935a301d82", + "fields": { + "code_commune_insee": "61459", + "nom_de_la_commune": "SAIRES LA VERRERIE", + "code_postal": "61220", + "coordonnees_gps": [ + 48.6896183653, + -0.4875928451 + ], + "libelle_d_acheminement": "SAIRES LA VERRERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.4875928451, + 48.6896183653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60dbba85af490e69e7c10275be042551d7712afd", + "fields": { + "code_commune_insee": "60345", + "nom_de_la_commune": "LAMECOURT", + "code_postal": "60600", + "coordonnees_gps": [ + 49.4300920723, + 2.46503272341 + ], + "libelle_d_acheminement": "LAMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46503272341, + 49.4300920723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05804dfeb3bc8c6fa15c9b51302447443dad4da8", + "fields": { + "code_commune_insee": "61462", + "nom_de_la_commune": "SARCEAUX", + "code_postal": "61200", + "coordonnees_gps": [ + 48.7158736886, + -0.0346146728609 + ], + "libelle_d_acheminement": "SARCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0346146728609, + 48.7158736886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e271af2d9719457434084f718e4a42727ea72420", + "fields": { + "code_commune_insee": "60357", + "nom_de_la_commune": "LEGLANTIERS", + "code_postal": "60420", + "coordonnees_gps": [ + 49.4986729429, + 2.53214211935 + ], + "libelle_d_acheminement": "LEGLANTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53214211935, + 49.4986729429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2508fdc07be0e8f0f1dfbc501e1ad363480ec0c1", + "fields": { + "ligne_5": "EXMES", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61310", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14b0de86082c1d46810155ba031a27b8425e453d", + "fields": { + "code_commune_insee": "60359", + "nom_de_la_commune": "LHERAULE", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4882885044, + 1.93093330345 + ], + "libelle_d_acheminement": "LHERAULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93093330345, + 49.4882885044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e085444c64c1d6eb2fc8abaf379687f569f4e5c2", + "fields": { + "ligne_5": "LE BOURG ST LEONARD", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61310", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7a4f3f8a56a513558a56d00643ee1b31007d9cd", + "fields": { + "code_commune_insee": "60377", + "nom_de_la_commune": "MAISONCELLE TUILERIE", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5897435077, + 2.21897451499 + ], + "libelle_d_acheminement": "MAISONCELLE TUILERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21897451499, + 49.5897435077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35c147d69a8683c0ef562afd01e3d40306f628cf", + "fields": { + "ligne_5": "SILLY EN GOUFFERN", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61310", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e5415e92e76e4653a0618b6c7341f674ef7824b", + "fields": { + "code_commune_insee": "60386", + "nom_de_la_commune": "MARQUEGLISE", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5158815481, + 2.7484137141 + ], + "libelle_d_acheminement": "MARQUEGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7484137141, + 49.5158815481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd460ee4875f36a84c2a7936ec5ad03e0c464f98", + "fields": { + "code_commune_insee": "61475", + "nom_de_la_commune": "SOLIGNY LA TRAPPE", + "code_postal": "61380", + "coordonnees_gps": [ + 48.6272197858, + 0.549235029616 + ], + "libelle_d_acheminement": "SOLIGNY LA TRAPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.549235029616, + 48.6272197858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13087519f12321d20f284ca5dbd60f2b2c483f8c", + "fields": { + "code_commune_insee": "60395", + "nom_de_la_commune": "MERU", + "code_postal": "60110", + "coordonnees_gps": [ + 49.2453722483, + 2.13541107599 + ], + "libelle_d_acheminement": "MERU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13541107599, + 49.2453722483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "670774f13d9e6444c01e11276afb80f55e942859", + "fields": { + "code_commune_insee": "61479", + "nom_de_la_commune": "TANQUES", + "code_postal": "61150", + "coordonnees_gps": [ + 48.6863581551, + -0.0741132458246 + ], + "libelle_d_acheminement": "TANQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0741132458246, + 48.6863581551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0f67161f2a8ca3665630176d803e681ea2f3fc5", + "fields": { + "code_commune_insee": "60400", + "nom_de_la_commune": "LE MESNIL SUR BULLES", + "code_postal": "60130", + "coordonnees_gps": [ + 49.4823695987, + 2.34912415685 + ], + "libelle_d_acheminement": "LE MESNIL SUR BULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34912415685, + 49.4823695987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3763cd724b7c7ece8bbb670e0a616518a3f17d02", + "fields": { + "ligne_5": "BAGNOLES DE L ORNE", + "code_commune_insee": "61483", + "libelle_d_acheminement": "BAGNOLES DE L ORNE NORMANDIE", + "code_postal": "61140", + "nom_de_la_commune": "BAGNOLES DE L ORNE NORMANDIE", + "coordonnees_gps": [ + 48.5556585202, + -0.419510749596 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.419510749596, + 48.5556585202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15f91448adf33b8d74c8e13828b7447ccb667c25", + "fields": { + "code_commune_insee": "60404", + "nom_de_la_commune": "MOGNEVILLE", + "code_postal": "60140", + "coordonnees_gps": [ + 49.3126555491, + 2.47328622083 + ], + "libelle_d_acheminement": "MOGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47328622083, + 49.3126555491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba9e9ec375e7ad6b423402ac019478cf849b9f68", + "fields": { + "code_commune_insee": "61486", + "nom_de_la_commune": "TINCHEBRAY BOCAGE", + "code_postal": "61800", + "coordonnees_gps": [ + 48.7558885792, + -0.736451200504 + ], + "libelle_d_acheminement": "TINCHEBRAY BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.736451200504, + 48.7558885792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a695667c1784ef3356b3769feb812e19b02ac77", + "fields": { + "code_commune_insee": "60409", + "nom_de_la_commune": "MONCHY ST ELOI", + "code_postal": "60290", + "coordonnees_gps": [ + 49.2968280054, + 2.46847273697 + ], + "libelle_d_acheminement": "MONCHY ST ELOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46847273697, + 49.2968280054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5878ad8ea359091aaf4ee51b36e470e438288c9b", + "fields": { + "ligne_5": "AUTHEUIL", + "code_commune_insee": "61491", + "libelle_d_acheminement": "TOUROUVRE AU PERCHE", + "code_postal": "61190", + "nom_de_la_commune": "TOUROUVRE AU PERCHE", + "coordonnees_gps": [ + 48.5889926319, + 0.659944291667 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659944291667, + 48.5889926319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "548e725e8d99e3654dedd2d666f34ccf6c01d90a", + "fields": { + "code_commune_insee": "60414", + "nom_de_la_commune": "MONTATAIRE", + "code_postal": "60160", + "coordonnees_gps": [ + 49.2632645948, + 2.43135724334 + ], + "libelle_d_acheminement": "MONTATAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43135724334, + 49.2632645948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd5ffc14977b7979bebd2c4d76525da11c0b39d5", + "fields": { + "ligne_5": "BUBERTRE", + "code_commune_insee": "61491", + "libelle_d_acheminement": "TOUROUVRE AU PERCHE", + "code_postal": "61190", + "nom_de_la_commune": "TOUROUVRE AU PERCHE", + "coordonnees_gps": [ + 48.5889926319, + 0.659944291667 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659944291667, + 48.5889926319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "415d8133a328f1cad4aeccc145d3a00b83d297f9", + "fields": { + "code_commune_insee": "60418", + "nom_de_la_commune": "MONTIERS", + "code_postal": "60190", + "coordonnees_gps": [ + 49.5038812733, + 2.56965274789 + ], + "libelle_d_acheminement": "MONTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56965274789, + 49.5038812733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d952dd8a9122dcd37efe9e8176f57cda1811dcd0", + "fields": { + "ligne_5": "TOUROUVRE", + "code_commune_insee": "61491", + "libelle_d_acheminement": "TOUROUVRE AU PERCHE", + "code_postal": "61190", + "nom_de_la_commune": "TOUROUVRE AU PERCHE", + "coordonnees_gps": [ + 48.5889926319, + 0.659944291667 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659944291667, + 48.5889926319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9794e09b919360aa897c9a3c768cf8f53d539654", + "fields": { + "code_commune_insee": "60422", + "nom_de_la_commune": "MONTLOGNON", + "code_postal": "60300", + "coordonnees_gps": [ + 49.1557531066, + 2.70658027708 + ], + "libelle_d_acheminement": "MONTLOGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70658027708, + 49.1557531066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19fc541b370ea973bada48855feff56498fbf25d", + "fields": { + "code_commune_insee": "61498", + "nom_de_la_commune": "VAUNOISE", + "code_postal": "61130", + "coordonnees_gps": [ + 48.3472339828, + 0.486737933229 + ], + "libelle_d_acheminement": "VAUNOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.486737933229, + 48.3472339828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9affdc8f2ccf57678169b8a95fb61f5afae3dc4b", + "fields": { + "code_commune_insee": "60426", + "nom_de_la_commune": "MONTREUIL SUR THERAIN", + "code_postal": "60134", + "coordonnees_gps": [ + 49.3813378813, + 2.19419096108 + ], + "libelle_d_acheminement": "MONTREUIL SUR THERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19419096108, + 49.3813378813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe3db69079e04b5f43e2777eb429cf3f8a833b0b", + "fields": { + "code_commune_insee": "61500", + "nom_de_la_commune": "LA VENTROUZE", + "code_postal": "61190", + "coordonnees_gps": [ + 48.6121964562, + 0.689163035175 + ], + "libelle_d_acheminement": "LA VENTROUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.689163035175, + 48.6121964562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a97946a6963347c1be1278876d3eb834a7a3b5f9", + "fields": { + "code_commune_insee": "60433", + "nom_de_la_commune": "MORTEFONTAINE EN THELLE", + "code_postal": "60570", + "coordonnees_gps": [ + 49.2651041736, + 2.18912997448 + ], + "libelle_d_acheminement": "MORTEFONTAINE EN THELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18912997448, + 49.2651041736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac9b829e1edb1638af064efb1568971d055b2f9a", + "fields": { + "code_commune_insee": "61503", + "nom_de_la_commune": "VIEUX PONT", + "code_postal": "61150", + "coordonnees_gps": [ + 48.6497838693, + -0.151446966065 + ], + "libelle_d_acheminement": "VIEUX PONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.151446966065, + 48.6497838693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d75a2fc88d3467ac4e44027f05836aa10b8a3e4", + "fields": { + "code_commune_insee": "60434", + "nom_de_la_commune": "MORTEMER", + "code_postal": "60490", + "coordonnees_gps": [ + 49.568875217, + 2.6728130469 + ], + "libelle_d_acheminement": "MORTEMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6728130469, + 49.568875217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6be6c5cd15af386819a756f3b5271f90f276973a", + "fields": { + "code_commune_insee": "62007", + "nom_de_la_commune": "ACQ", + "code_postal": "62144", + "coordonnees_gps": [ + 50.3494049466, + 2.65503527981 + ], + "libelle_d_acheminement": "ACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65503527981, + 50.3494049466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "986023cacf4f66f68e4e21c723b3ef8c09447b37", + "fields": { + "code_commune_insee": "60435", + "nom_de_la_commune": "MORVILLERS", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5843809513, + 1.87218404343 + ], + "libelle_d_acheminement": "MORVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87218404343, + 49.5843809513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e996720bd7f1e68dd60136405392cf31a4ea3b4", + "fields": { + "ligne_5": "WESTBECOURT", + "code_commune_insee": "62008", + "libelle_d_acheminement": "ACQUIN WESTBECOURT", + "code_postal": "62380", + "nom_de_la_commune": "ACQUIN WESTBECOURT", + "coordonnees_gps": [ + 50.7293873198, + 2.07688748986 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07688748986, + 50.7293873198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d06456ad50cb1d8e2d95b31915df75e304e9eac", + "fields": { + "code_commune_insee": "60437", + "nom_de_la_commune": "MOUCHY LE CHATEL", + "code_postal": "60250", + "coordonnees_gps": [ + 49.3245030423, + 2.24609957487 + ], + "libelle_d_acheminement": "MOUCHY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24609957487, + 49.3245030423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79634de7a932ad61aa2eaa0a121eefdebe5658f6", + "fields": { + "code_commune_insee": "62016", + "nom_de_la_commune": "AIRON ST VAAST", + "code_postal": "62180", + "coordonnees_gps": [ + 50.4271409917, + 1.6712119131 + ], + "libelle_d_acheminement": "AIRON ST VAAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6712119131, + 50.4271409917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2244e62de6a65c45d0ab02bb71da3f185450995f", + "fields": { + "code_commune_insee": "60440", + "nom_de_la_commune": "MOYENNEVILLE", + "code_postal": "60190", + "coordonnees_gps": [ + 49.486855889, + 2.63341728898 + ], + "libelle_d_acheminement": "MOYENNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63341728898, + 49.486855889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b1982ecbf5b789d81e42c03d8222b8bbced14cd", + "fields": { + "code_commune_insee": "62019", + "nom_de_la_commune": "AIX NOULETTE", + "code_postal": "62160", + "coordonnees_gps": [ + 50.4212424085, + 2.71263968704 + ], + "libelle_d_acheminement": "AIX NOULETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71263968704, + 50.4212424085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7ababf4bccdd145b7c3fdec05a08a614b79a9df", + "fields": { + "code_commune_insee": "60442", + "nom_de_la_commune": "MUIDORGE", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5330704904, + 2.13567268039 + ], + "libelle_d_acheminement": "MUIDORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13567268039, + 49.5330704904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "920536806a0476d370ab0a292df8059b2bc2b5b1", + "fields": { + "code_commune_insee": "62022", + "nom_de_la_commune": "ALINCTHUN", + "code_postal": "62142", + "coordonnees_gps": [ + 50.7213979047, + 1.81018390432 + ], + "libelle_d_acheminement": "ALINCTHUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81018390432, + 50.7213979047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f60272f73fa2be417700d7cef82c9da7668aee47", + "fields": { + "code_commune_insee": "60444", + "nom_de_la_commune": "MUREAUMONT", + "code_postal": "60220", + "coordonnees_gps": [ + 49.62273366, + 1.7873657958 + ], + "libelle_d_acheminement": "MUREAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7873657958, + 49.62273366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6541cd8f1170a2e16561ca22093c1e0aa1baf33", + "fields": { + "code_commune_insee": "62027", + "nom_de_la_commune": "AMBRINES", + "code_postal": "62127", + "coordonnees_gps": [ + 50.3081142295, + 2.46698289083 + ], + "libelle_d_acheminement": "AMBRINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46698289083, + 50.3081142295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f9f51d896f738f332afb531857c8c8bbce9ce71", + "fields": { + "code_commune_insee": "60449", + "nom_de_la_commune": "NEUFVY SUR ARONDE", + "code_postal": "60190", + "coordonnees_gps": [ + 49.5092235216, + 2.65370398093 + ], + "libelle_d_acheminement": "NEUFVY SUR ARONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65370398093, + 49.5092235216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "731c4bc5e60409885e7730fe346ea79274e95880", + "fields": { + "code_commune_insee": "62032", + "nom_de_la_commune": "ANGRES", + "code_postal": "62143", + "coordonnees_gps": [ + 50.4095857133, + 2.75123923187 + ], + "libelle_d_acheminement": "ANGRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75123923187, + 50.4095857133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8c3e87da4195df2e9eda867a927da61fd948bef", + "fields": { + "code_commune_insee": "60471", + "nom_de_la_commune": "NOYON", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5774343318, + 3.00799806171 + ], + "libelle_d_acheminement": "NOYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00799806171, + 49.5774343318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0d44e49393a6d13927a6fcabb5a69bf952e0f3b", + "fields": { + "code_commune_insee": "62033", + "nom_de_la_commune": "ANNAY", + "code_postal": "62880", + "coordonnees_gps": [ + 50.4616640055, + 2.88243603583 + ], + "libelle_d_acheminement": "ANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88243603583, + 50.4616640055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dea15ced37aab6837d249cb3269e8811677297a", + "fields": { + "code_commune_insee": "60482", + "nom_de_la_commune": "ORRY LA VILLE", + "code_postal": "60560", + "coordonnees_gps": [ + 49.140934755, + 2.50855732387 + ], + "libelle_d_acheminement": "ORRY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50855732387, + 49.140934755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3724cdfef53c1b294fd817565211ae90a10800f", + "fields": { + "code_commune_insee": "62043", + "nom_de_la_commune": "LES ATTAQUES", + "code_postal": "62730", + "coordonnees_gps": [ + 50.8995873254, + 1.93699545869 + ], + "libelle_d_acheminement": "LES ATTAQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93699545869, + 50.8995873254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd5b01b3504d1c756c76a5da297f2099993d4535", + "fields": { + "code_commune_insee": "60483", + "nom_de_la_commune": "ORVILLERS SOREL", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5744800615, + 2.71031705668 + ], + "libelle_d_acheminement": "ORVILLERS SOREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71031705668, + 49.5744800615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4357b3cc65b8aab1c93f444f14dbbddd444012e8", + "fields": { + "code_commune_insee": "62049", + "nom_de_la_commune": "AUCHY AU BOIS", + "code_postal": "62190", + "coordonnees_gps": [ + 50.5505941226, + 2.37330907284 + ], + "libelle_d_acheminement": "AUCHY AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37330907284, + 50.5505941226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37e725918d445a1c4538af9123841fb0fb0e93fa", + "fields": { + "code_commune_insee": "60488", + "nom_de_la_commune": "PASSEL", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5562386806, + 2.96570215096 + ], + "libelle_d_acheminement": "PASSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96570215096, + 49.5562386806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18d5410b8e7cd5882fedc91e28d406b9706b7f8e", + "fields": { + "code_commune_insee": "62052", + "nom_de_la_commune": "AUDEMBERT", + "code_postal": "62250", + "coordonnees_gps": [ + 50.8589004255, + 1.69083658829 + ], + "libelle_d_acheminement": "AUDEMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69083658829, + 50.8589004255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "007ecbf0ed05190543b1d6ef4cfdfe62e457dd17", + "fields": { + "code_commune_insee": "60493", + "nom_de_la_commune": "PISSELEU", + "code_postal": "60860", + "coordonnees_gps": [ + 49.5378600786, + 2.05641774458 + ], + "libelle_d_acheminement": "PISSELEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05641774458, + 49.5378600786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4e890be164eae51c1a33ac77570da0e1a073c3d", + "fields": { + "code_commune_insee": "62053", + "nom_de_la_commune": "AUDINCTHUN", + "code_postal": "62560", + "coordonnees_gps": [ + 50.5786952858, + 2.12673374535 + ], + "libelle_d_acheminement": "AUDINCTHUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12673374535, + 50.5786952858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef46333b75bc8c39d6e27a286b63b555836ea228", + "fields": { + "code_commune_insee": "60519", + "nom_de_la_commune": "QUESMY", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6320835228, + 3.05496542232 + ], + "libelle_d_acheminement": "QUESMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05496542232, + 49.6320835228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "260677d6b7e1b54aa2f182b2354ab78734fa1b73", + "fields": { + "code_commune_insee": "62063", + "nom_de_la_commune": "AVESNES LE COMTE", + "code_postal": "62810", + "coordonnees_gps": [ + 50.271678948, + 2.52858702519 + ], + "libelle_d_acheminement": "AVESNES LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52858702519, + 50.271678948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "981c3d08ec2bc1b6d108faecb2d3968325ca55f1", + "fields": { + "code_commune_insee": "60523", + "nom_de_la_commune": "RAINVILLERS", + "code_postal": "60155", + "coordonnees_gps": [ + 49.4070517504, + 1.99835502155 + ], + "libelle_d_acheminement": "RAINVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99835502155, + 49.4070517504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "579156fee79773b152911547952b3ea2f5c77d9b", + "fields": { + "code_commune_insee": "62065", + "nom_de_la_commune": "AVION", + "code_postal": "62210", + "coordonnees_gps": [ + 50.4039007645, + 2.82658779245 + ], + "libelle_d_acheminement": "AVION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82658779245, + 50.4039007645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a194a37ed9dd74669f998e7cbebe294254b8a667", + "fields": { + "code_commune_insee": "60526", + "nom_de_la_commune": "RAVENEL", + "code_postal": "60130", + "coordonnees_gps": [ + 49.5143827967, + 2.49905019788 + ], + "libelle_d_acheminement": "RAVENEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49905019788, + 49.5143827967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7186fb1392f950360642223cb461457822c7bf6", + "fields": { + "code_commune_insee": "62067", + "nom_de_la_commune": "AVROULT", + "code_postal": "62560", + "coordonnees_gps": [ + 50.6320023279, + 2.14547609845 + ], + "libelle_d_acheminement": "AVROULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14547609845, + 50.6320023279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4892412245db0a13d160984c12f3dfedbb48307a", + "fields": { + "code_commune_insee": "60529", + "nom_de_la_commune": "REMECOURT", + "code_postal": "60600", + "coordonnees_gps": [ + 49.4300556144, + 2.49241906873 + ], + "libelle_d_acheminement": "REMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49241906873, + 49.4300556144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28116f9a5d0972fc2a74ee0a9a45656156e55f99", + "fields": { + "code_commune_insee": "62076", + "nom_de_la_commune": "BAINGHEN", + "code_postal": "62850", + "coordonnees_gps": [ + 50.7506938279, + 1.90219726912 + ], + "libelle_d_acheminement": "BAINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90219726912, + 50.7506938279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae9fb7bcea5dd81893932c9788311db6a36c070b", + "fields": { + "code_commune_insee": "60530", + "nom_de_la_commune": "REMERANGLES", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4481992219, + 2.29023906853 + ], + "libelle_d_acheminement": "REMERANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29023906853, + 49.4481992219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fcd719092dd211a152d251d7b40fe50f975f025", + "fields": { + "code_commune_insee": "62077", + "nom_de_la_commune": "BAJUS", + "code_postal": "62150", + "coordonnees_gps": [ + 50.4205764325, + 2.47224510422 + ], + "libelle_d_acheminement": "BAJUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47224510422, + 50.4205764325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b716151993b0cda81f70e6cabdec64bd0b2fa769", + "fields": { + "code_commune_insee": "60536", + "nom_de_la_commune": "RHUIS", + "code_postal": "60410", + "coordonnees_gps": [ + 49.3044719658, + 2.69787230375 + ], + "libelle_d_acheminement": "RHUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69787230375, + 49.3044719658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3359d195ed3328bab4e10b3d27835881663767f", + "fields": { + "code_commune_insee": "62079", + "nom_de_la_commune": "BANCOURT", + "code_postal": "62450", + "coordonnees_gps": [ + 50.1014519899, + 2.88965840912 + ], + "libelle_d_acheminement": "BANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88965840912, + 50.1014519899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f225a67246b3ea68fd3a2556331a1488e7af4a9", + "fields": { + "code_commune_insee": "60540", + "nom_de_la_commune": "RIVECOURT", + "code_postal": "60126", + "coordonnees_gps": [ + 49.3462815732, + 2.73842909155 + ], + "libelle_d_acheminement": "RIVECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73842909155, + 49.3462815732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50b6c1d8eb318b00d025e53ac268a7a7b4d4275c", + "fields": { + "code_commune_insee": "62088", + "nom_de_la_commune": "BAYENGHEM LES SENINGHEM", + "code_postal": "62380", + "coordonnees_gps": [ + 50.7048864835, + 2.07577387326 + ], + "libelle_d_acheminement": "BAYENGHEM LES SENINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07577387326, + 50.7048864835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd8c8bd5fa0466fc1d33ed7343e15ea31e22b7f1", + "fields": { + "code_commune_insee": "60544", + "nom_de_la_commune": "ROCQUENCOURT", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6482426702, + 2.410098489 + ], + "libelle_d_acheminement": "ROCQUENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.410098489, + 49.6482426702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bd3ecff320d7fe8698f7bfac6eae6838f186aad", + "fields": { + "code_commune_insee": "62094", + "nom_de_la_commune": "BEAUMERIE ST MARTIN", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4463613161, + 1.79723541504 + ], + "libelle_d_acheminement": "BEAUMERIE ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79723541504, + 50.4463613161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c055d444b36f00d33b16952438bea8f7f6ce5e0", + "fields": { + "code_commune_insee": "60546", + "nom_de_la_commune": "ROSIERES", + "code_postal": "60440", + "coordonnees_gps": [ + 49.186539903, + 2.781014217 + ], + "libelle_d_acheminement": "ROSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.781014217, + 49.186539903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09f7ce038c3556df274a70d4b163642dcab9727f", + "fields": { + "code_commune_insee": "62103", + "nom_de_la_commune": "BEHAGNIES", + "code_postal": "62121", + "coordonnees_gps": [ + 50.1420610157, + 2.8275098552 + ], + "libelle_d_acheminement": "BEHAGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8275098552, + 50.1420610157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa3721691ff1823ecb22035eb5d8ca4dca29eeb4", + "fields": { + "code_commune_insee": "60552", + "nom_de_la_commune": "ROUVILLE", + "code_postal": "60800", + "coordonnees_gps": [ + 49.2101065424, + 2.88059214006 + ], + "libelle_d_acheminement": "ROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88059214006, + 49.2101065424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "716f8f45ff6582ffd70b9aebc8c5f6fb58e57427", + "fields": { + "code_commune_insee": "62107", + "nom_de_la_commune": "BENIFONTAINE", + "code_postal": "62410", + "coordonnees_gps": [ + 50.4760416223, + 2.82697647324 + ], + "libelle_d_acheminement": "BENIFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82697647324, + 50.4760416223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6a87c61e6648a9749fd469ce9e02b8c908489da", + "fields": { + "code_commune_insee": "60560", + "nom_de_la_commune": "RULLY", + "code_postal": "60810", + "coordonnees_gps": [ + 49.2390399273, + 2.7248899775 + ], + "libelle_d_acheminement": "RULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7248899775, + 49.2390399273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11af653c3f9ec3a7d91de5622bde50f2a9a8b60f", + "fields": { + "code_commune_insee": "62112", + "nom_de_la_commune": "BERLES AU BOIS", + "code_postal": "62123", + "coordonnees_gps": [ + 50.1998422446, + 2.63005349312 + ], + "libelle_d_acheminement": "BERLES AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63005349312, + 50.1998422446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60fd54cbcc4d067a734ef3edc7f888290af1315b", + "fields": { + "code_commune_insee": "60562", + "nom_de_la_commune": "SACY LE GRAND", + "code_postal": "60700", + "coordonnees_gps": [ + 49.3567536222, + 2.55499209997 + ], + "libelle_d_acheminement": "SACY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55499209997, + 49.3567536222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72379a45587efb3c20275cc0e36ef0a179d73225", + "fields": { + "code_commune_insee": "62117", + "nom_de_la_commune": "BERTINCOURT", + "code_postal": "62124", + "coordonnees_gps": [ + 50.0875076095, + 2.98123833644 + ], + "libelle_d_acheminement": "BERTINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98123833644, + 50.0875076095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "522c6c18ac410a5a9ca13a21728ad3def293533c", + "fields": { + "code_commune_insee": "60569", + "nom_de_la_commune": "ST CREPIN AUX BOIS", + "code_postal": "60170", + "coordonnees_gps": [ + 49.4447949689, + 2.9848806612 + ], + "libelle_d_acheminement": "ST CREPIN AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9848806612, + 49.4447949689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5dbe95fd905c4cea5f661b1ae318704dad48382", + "fields": { + "code_commune_insee": "62118", + "nom_de_la_commune": "BETHONSART", + "code_postal": "62690", + "coordonnees_gps": [ + 50.382567238, + 2.5436027957 + ], + "libelle_d_acheminement": "BETHONSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5436027957, + 50.382567238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1cf12c4643301fb2d4d2b49baf14724b74799bb", + "fields": { + "code_commune_insee": "60571", + "nom_de_la_commune": "ST DENISCOURT", + "code_postal": "60380", + "coordonnees_gps": [ + 49.6064297043, + 1.86417879893 + ], + "libelle_d_acheminement": "ST DENISCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86417879893, + 49.6064297043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbc0369cb39a1941e8f7fd4ef05395abb2144b28", + "fields": { + "code_commune_insee": "62130", + "nom_de_la_commune": "BIENVILLERS AU BOIS", + "code_postal": "62111", + "coordonnees_gps": [ + 50.1663319359, + 2.60896396672 + ], + "libelle_d_acheminement": "BIENVILLERS AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60896396672, + 50.1663319359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd35877e27a8c35b37f069c82be5045571447092", + "fields": { + "code_commune_insee": "60574", + "nom_de_la_commune": "ST FELIX", + "code_postal": "60370", + "coordonnees_gps": [ + 49.3548770591, + 2.28412904405 + ], + "libelle_d_acheminement": "ST FELIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28412904405, + 49.3548770591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18b86bd3a88d2a815ed89fab49f6c9026a8c4be7", + "fields": { + "code_commune_insee": "62135", + "nom_de_la_commune": "BLAIRVILLE", + "code_postal": "62173", + "coordonnees_gps": [ + 50.2182216387, + 2.71384024388 + ], + "libelle_d_acheminement": "BLAIRVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71384024388, + 50.2182216387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91338e87de124dc1b37f9f8ae9751e8d21cfd84c", + "fields": { + "code_commune_insee": "60584", + "nom_de_la_commune": "ST LEU D ESSERENT", + "code_postal": "60340", + "coordonnees_gps": [ + 49.2286214126, + 2.40910625002 + ], + "libelle_d_acheminement": "ST LEU D ESSERENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40910625002, + 49.2286214126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c66d41f8576e6b5ee393602fb86c7aafb52d4b2", + "fields": { + "code_commune_insee": "62137", + "nom_de_la_commune": "BLANGERVAL BLANGERMONT", + "code_postal": "62270", + "coordonnees_gps": [ + 50.3244181723, + 2.22103571725 + ], + "libelle_d_acheminement": "BLANGERVAL BLANGERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22103571725, + 50.3244181723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5ea69b828c3272fc41771b0fedca8dcd47535e6", + "fields": { + "code_commune_insee": "60585", + "nom_de_la_commune": "ST MARTIN AUX BOIS", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5250033186, + 2.56003918662 + ], + "libelle_d_acheminement": "ST MARTIN AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56003918662, + 49.5250033186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bda046499968c455ba290f4d21e45ee436eabd0", + "fields": { + "code_commune_insee": "62146", + "nom_de_la_commune": "BOIRY ST MARTIN", + "code_postal": "62175", + "coordonnees_gps": [ + 50.1926802634, + 2.75913608882 + ], + "libelle_d_acheminement": "BOIRY ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75913608882, + 50.1926802634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed378cbfeb3f83203ffa6a268d5add7fa0725010", + "fields": { + "code_commune_insee": "60590", + "nom_de_la_commune": "ST OMER EN CHAUSSEE", + "code_postal": "60860", + "coordonnees_gps": [ + 49.5333363606, + 2.00249119554 + ], + "libelle_d_acheminement": "ST OMER EN CHAUSSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00249119554, + 49.5333363606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "191f8cc23bcf4b1dd99046feae8fadaafd8b900a", + "fields": { + "code_commune_insee": "62147", + "nom_de_la_commune": "BOIRY STE RICTRUDE", + "code_postal": "62175", + "coordonnees_gps": [ + 50.2004598383, + 2.74639343282 + ], + "libelle_d_acheminement": "BOIRY STE RICTRUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74639343282, + 50.2004598383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54eb8faa478ad42407d23bb2d354e7e2c82495f1", + "fields": { + "code_commune_insee": "60592", + "nom_de_la_commune": "ST PIERRE ES CHAMPS", + "code_postal": "60850", + "coordonnees_gps": [ + 49.4227812737, + 1.74067082162 + ], + "libelle_d_acheminement": "ST PIERRE ES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74067082162, + 49.4227812737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc8e358ef7967d53929ca5e98b171b815d275032", + "fields": { + "code_commune_insee": "62157", + "nom_de_la_commune": "BOUBERS LES HESMOND", + "code_postal": "62990", + "coordonnees_gps": [ + 50.4791206101, + 1.94657771886 + ], + "libelle_d_acheminement": "BOUBERS LES HESMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94657771886, + 50.4791206101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac56e18dcba78f945e9a3f2bbf160ed7ea71c41b", + "fields": { + "code_commune_insee": "60599", + "nom_de_la_commune": "ST THIBAULT", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6940947082, + 1.82443104222 + ], + "libelle_d_acheminement": "ST THIBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82443104222, + 49.6940947082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5878d8ae9e100cfb6e44c8be138ea9f8475b0346", + "fields": { + "code_commune_insee": "62162", + "nom_de_la_commune": "BOURECQ", + "code_postal": "62190", + "coordonnees_gps": [ + 50.5769348477, + 2.43571250001 + ], + "libelle_d_acheminement": "BOURECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43571250001, + 50.5769348477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77b602eb49e35597f04db8bd207cb6718a7b8abb", + "fields": { + "code_commune_insee": "60600", + "nom_de_la_commune": "ST VAAST DE LONGMONT", + "code_postal": "60410", + "coordonnees_gps": [ + 49.2964793242, + 2.74465320657 + ], + "libelle_d_acheminement": "ST VAAST DE LONGMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74465320657, + 49.2964793242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d7074fbfd108a8a02126798294b03ef7cfbd405", + "fields": { + "code_commune_insee": "62167", + "nom_de_la_commune": "BOURSIN", + "code_postal": "62132", + "coordonnees_gps": [ + 50.7705251422, + 1.82549104115 + ], + "libelle_d_acheminement": "BOURSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82549104115, + 50.7705251422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13db30eeefa8961aeaa8101d7bde8ec08cebb99c", + "fields": { + "code_commune_insee": "60602", + "nom_de_la_commune": "ST VALERY", + "code_postal": "60220", + "coordonnees_gps": [ + 49.7249107248, + 1.72911335468 + ], + "libelle_d_acheminement": "ST VALERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72911335468, + 49.7249107248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07af722c3cac39c1fc75c76e9e16f716acc7a192", + "fields": { + "code_commune_insee": "62168", + "nom_de_la_commune": "BOURTHES", + "code_postal": "62650", + "coordonnees_gps": [ + 50.6133691642, + 1.93499522484 + ], + "libelle_d_acheminement": "BOURTHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93499522484, + 50.6133691642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ec2302ef6c23083ac9fea981d878ca02a5640cb", + "fields": { + "code_commune_insee": "60627", + "nom_de_la_commune": "TARTIGNY", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6347175976, + 2.36247535718 + ], + "libelle_d_acheminement": "TARTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36247535718, + 49.6347175976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b85d4eb4ce561dae27d4f88014ce07b53188e3c", + "fields": { + "code_commune_insee": "62174", + "nom_de_la_commune": "BREMES", + "code_postal": "62610", + "coordonnees_gps": [ + 50.8476447565, + 1.955614931 + ], + "libelle_d_acheminement": "BREMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.955614931, + 50.8476447565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1f24b1a427deb1e11f694eef721878702ba2458", + "fields": { + "code_commune_insee": "60631", + "nom_de_la_commune": "THIERS SUR THEVE", + "code_postal": "60520", + "coordonnees_gps": [ + 49.1536648574, + 2.57819751248 + ], + "libelle_d_acheminement": "THIERS SUR THEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57819751248, + 49.1536648574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bc1360d862e43f4eaa4fc1b7066910c71c13b31", + "fields": { + "code_commune_insee": "62186", + "nom_de_la_commune": "BULLY LES MINES", + "code_postal": "62160", + "coordonnees_gps": [ + 50.4451131556, + 2.71911165536 + ], + "libelle_d_acheminement": "BULLY LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71911165536, + 50.4451131556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e74baf4d83b98f130b5f021b3a9d09db7fbd73b3", + "fields": { + "code_commune_insee": "60635", + "nom_de_la_commune": "THIVERNY", + "code_postal": "60160", + "coordonnees_gps": [ + 49.245997329, + 2.42786495364 + ], + "libelle_d_acheminement": "THIVERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42786495364, + 49.245997329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c4f0c28cb086390e8a9f9c2be7efd6090273e89", + "fields": { + "code_commune_insee": "62187", + "nom_de_la_commune": "BUNEVILLE", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3246078076, + 2.34815051856 + ], + "libelle_d_acheminement": "BUNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34815051856, + 50.3246078076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7462cf67354b29ffda224ae3826fd1b7f4f4a5ce", + "fields": { + "code_commune_insee": "60638", + "nom_de_la_commune": "THURY SOUS CLERMONT", + "code_postal": "60250", + "coordonnees_gps": [ + 49.3584817285, + 2.32859309927 + ], + "libelle_d_acheminement": "THURY SOUS CLERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32859309927, + 49.3584817285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e72e46e4df18823f493891c653cbca9e9b34299f", + "fields": { + "code_commune_insee": "62188", + "nom_de_la_commune": "BURBURE", + "code_postal": "62151", + "coordonnees_gps": [ + 50.5320822618, + 2.46231135416 + ], + "libelle_d_acheminement": "BURBURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46231135416, + 50.5320822618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72d18d739163a4c0f02ae0f6bc2aac48949fc4e5", + "fields": { + "code_commune_insee": "60639", + "nom_de_la_commune": "TILLE", + "code_postal": "60000", + "coordonnees_gps": [ + 49.4644718487, + 2.11782914141 + ], + "libelle_d_acheminement": "TILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11782914141, + 49.4644718487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23ff2a8559c978b12d68434ad93716df0fa1188b", + "fields": { + "code_commune_insee": "62196", + "nom_de_la_commune": "LA CALOTTERIE", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4789464513, + 1.71772196973 + ], + "libelle_d_acheminement": "LA CALOTTERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71772196973, + 50.4789464513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1914c783a006e3b9d89501ed87b60d78da586b09", + "fields": { + "code_commune_insee": "60645", + "nom_de_la_commune": "TRIE LA VILLE", + "code_postal": "60590", + "coordonnees_gps": [ + 49.2858970695, + 1.84203331226 + ], + "libelle_d_acheminement": "TRIE LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84203331226, + 49.2858970695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8388b8d9a2c331e8d15adab64611dba38c353708", + "fields": { + "code_commune_insee": "62197", + "nom_de_la_commune": "CAMBLAIN CHATELAIN", + "code_postal": "62470", + "coordonnees_gps": [ + 50.4770255596, + 2.45056284457 + ], + "libelle_d_acheminement": "CAMBLAIN CHATELAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45056284457, + 50.4770255596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c5c1890069263375c13cbc32a44711c66f5dedd", + "fields": { + "code_commune_insee": "60648", + "nom_de_la_commune": "TROUSSENCOURT", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6035801576, + 2.24854174337 + ], + "libelle_d_acheminement": "TROUSSENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24854174337, + 49.6035801576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d802148bfc9b3eef2b1aaa122319330c4784ca7d", + "fields": { + "code_commune_insee": "62201", + "nom_de_la_commune": "CAMIERS", + "code_postal": "62176", + "coordonnees_gps": [ + 50.5641187027, + 1.61276179612 + ], + "libelle_d_acheminement": "CAMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61276179612, + 50.5641187027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e29f011bc8504b7d64c877df5fbd91b0f8858a9c", + "fields": { + "code_commune_insee": "60652", + "nom_de_la_commune": "VALDAMPIERRE", + "code_postal": "60790", + "coordonnees_gps": [ + 49.3067997145, + 2.05433922137 + ], + "libelle_d_acheminement": "VALDAMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05433922137, + 49.3067997145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f00a273013d2be63421b6c9ad818d8046af6b30", + "fields": { + "code_commune_insee": "62202", + "nom_de_la_commune": "CAMPAGNE LES BOULONNAIS", + "code_postal": "62650", + "coordonnees_gps": [ + 50.6189686189, + 1.99566804739 + ], + "libelle_d_acheminement": "CAMPAGNE LES BOULONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99566804739, + 50.6189686189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcdcabad00d01e719437f6ce5220fe3be7e35680", + "fields": { + "code_commune_insee": "60657", + "nom_de_la_commune": "VAUCHELLES", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5858402656, + 2.96793055954 + ], + "libelle_d_acheminement": "VAUCHELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96793055954, + 49.5858402656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8f9aaf5b4445374d3c825177bd4dfee9dc92318", + "fields": { + "code_commune_insee": "62204", + "nom_de_la_commune": "CAMPAGNE LES HESDIN", + "code_postal": "62870", + "coordonnees_gps": [ + 50.401191114, + 1.86634630857 + ], + "libelle_d_acheminement": "CAMPAGNE LES HESDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86634630857, + 50.401191114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a36738110309d86f9802c70db58fd8c8a228545", + "fields": { + "code_commune_insee": "60667", + "nom_de_la_commune": "VERBERIE", + "code_postal": "60410", + "coordonnees_gps": [ + 49.3057654461, + 2.73302583276 + ], + "libelle_d_acheminement": "VERBERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73302583276, + 49.3057654461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "374fbc9a10f4cdbf788e20b309ddaf1fe1abbb63", + "fields": { + "code_commune_insee": "62205", + "nom_de_la_commune": "CAMPAGNE LES WARDRECQUES", + "code_postal": "62120", + "coordonnees_gps": [ + 50.7136140049, + 2.33349766884 + ], + "libelle_d_acheminement": "CAMPAGNE LES WARDRECQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33349766884, + 50.7136140049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73c2d099cab1200dbd4d83625f690308f3aae8ef", + "fields": { + "code_commune_insee": "60668", + "nom_de_la_commune": "VERDEREL LES SAUQUEUSE", + "code_postal": "60112", + "coordonnees_gps": [ + 49.5067320831, + 2.08154719995 + ], + "libelle_d_acheminement": "VERDEREL LES SAUQUEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08154719995, + 49.5067320831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dc4b2c382c8c9f98650b7a0bc91bbfa3952b0d0", + "fields": { + "code_commune_insee": "62206", + "nom_de_la_commune": "CAMPIGNEULLES LES GRANDES", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4317716288, + 1.70627964186 + ], + "libelle_d_acheminement": "CAMPIGNEULLES LES GRANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70627964186, + 50.4317716288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92971c73a8d25fb8f016a4caec32309ada6d0689", + "fields": { + "code_commune_insee": "60676", + "nom_de_la_commune": "VILLE", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5568331597, + 2.93397641263 + ], + "libelle_d_acheminement": "VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93397641263, + 49.5568331597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc39cbd17e6f963028ddc62f6ed233695b67d64c", + "fields": { + "code_commune_insee": "62207", + "nom_de_la_commune": "CAMPIGNEULLES LES PETITES", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4406093208, + 1.73639595025 + ], + "libelle_d_acheminement": "CAMPIGNEULLES LES PETITES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73639595025, + 50.4406093208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aac72fb0a0ac132714367b6b1603d6f409a8c2ec", + "fields": { + "code_commune_insee": "60686", + "nom_de_la_commune": "VILLERS SOUS ST LEU", + "code_postal": "60340", + "coordonnees_gps": [ + 49.2175345324, + 2.38499254783 + ], + "libelle_d_acheminement": "VILLERS SOUS ST LEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38499254783, + 49.2175345324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5b5d4ab362f6743d879188ac2022404c3250f09", + "fields": { + "code_commune_insee": "62213", + "nom_de_la_commune": "CARENCY", + "code_postal": "62144", + "coordonnees_gps": [ + 50.3786422794, + 2.7000271609 + ], + "libelle_d_acheminement": "CARENCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7000271609, + 50.3786422794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7d5906892080f8b148c33d80700fc3ec50c1584", + "fields": { + "code_commune_insee": "60692", + "nom_de_la_commune": "VILLERS VICOMTE", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6423565019, + 2.22866493678 + ], + "libelle_d_acheminement": "VILLERS VICOMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22866493678, + 49.6423565019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a22743341fd97a5b10fc14fba098aa15a6e4391", + "fields": { + "code_commune_insee": "62227", + "nom_de_la_commune": "CLENLEU", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5280730059, + 1.88459632489 + ], + "libelle_d_acheminement": "CLENLEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88459632489, + 50.5280730059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b898072c34bd89bfa0fe14204d955d6ae699a5a", + "fields": { + "ligne_5": "BREEL", + "code_commune_insee": "61007", + "libelle_d_acheminement": "ATHIS VAL DE ROUVRE", + "code_postal": "61100", + "nom_de_la_commune": "ATHIS VAL DE ROUVRE", + "coordonnees_gps": [ + 48.7951982952, + -0.509617196105 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509617196105, + 48.7951982952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bed5e47bac20a8f65831f9a2341e61bfa0d88f5", + "fields": { + "code_commune_insee": "62228", + "nom_de_la_commune": "CLERQUES", + "code_postal": "62890", + "coordonnees_gps": [ + 50.7939031118, + 1.98394387825 + ], + "libelle_d_acheminement": "CLERQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98394387825, + 50.7939031118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16562859c3936823e62a53b2e1c1e6fdd7d95217", + "fields": { + "ligne_5": "LES TOURAILLES", + "code_commune_insee": "61007", + "libelle_d_acheminement": "ATHIS VAL DE ROUVRE", + "code_postal": "61100", + "nom_de_la_commune": "ATHIS VAL DE ROUVRE", + "coordonnees_gps": [ + 48.7951982952, + -0.509617196105 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509617196105, + 48.7951982952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3771777da5bf1cc03464d51f4b0e2207fe158f3", + "fields": { + "code_commune_insee": "62244", + "nom_de_la_commune": "COULOGNE", + "code_postal": "62137", + "coordonnees_gps": [ + 50.916752799, + 1.88656499297 + ], + "libelle_d_acheminement": "COULOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88656499297, + 50.916752799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b12af6a59b75d41475d19df493bb1984665bcd5e", + "fields": { + "ligne_5": "NOTRE DAME DU ROCHER", + "code_commune_insee": "61007", + "libelle_d_acheminement": "ATHIS VAL DE ROUVRE", + "code_postal": "61100", + "nom_de_la_commune": "ATHIS VAL DE ROUVRE", + "coordonnees_gps": [ + 48.7951982952, + -0.509617196105 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509617196105, + 48.7951982952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "772273c8c1f2e7471b14535e4128c8dc2db86dfb", + "fields": { + "code_commune_insee": "62246", + "nom_de_la_commune": "COUPELLE NEUVE", + "code_postal": "62310", + "coordonnees_gps": [ + 50.4980306908, + 2.10823141445 + ], + "libelle_d_acheminement": "COUPELLE NEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10823141445, + 50.4980306908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7ce11ee541e914432ea1a27ac007a2e57e1603c", + "fields": { + "ligne_5": "ATHIS DE L ORNE", + "code_commune_insee": "61007", + "libelle_d_acheminement": "ATHIS VAL DE ROUVRE", + "code_postal": "61430", + "nom_de_la_commune": "ATHIS VAL DE ROUVRE", + "coordonnees_gps": [ + 48.7951982952, + -0.509617196105 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509617196105, + 48.7951982952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89298a6581818c4160066fb4530e399d782397df", + "fields": { + "code_commune_insee": "62247", + "nom_de_la_commune": "COUPELLE VIEILLE", + "code_postal": "62310", + "coordonnees_gps": [ + 50.5329987345, + 2.07763347202 + ], + "libelle_d_acheminement": "COUPELLE VIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07763347202, + 50.5329987345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "443d0a249247d18fe84e79ab09f0abf7995038ed", + "fields": { + "code_commune_insee": "61013", + "nom_de_la_commune": "AUNAY LES BOIS", + "code_postal": "61500", + "coordonnees_gps": [ + 48.5466721031, + 0.29333748049 + ], + "libelle_d_acheminement": "AUNAY LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.29333748049, + 48.5466721031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "301b06f3d899ad0d39cc0810fb67f7c90fe650e5", + "fields": { + "code_commune_insee": "62251", + "nom_de_la_commune": "COURSET", + "code_postal": "62240", + "coordonnees_gps": [ + 50.644204376, + 1.85186054058 + ], + "libelle_d_acheminement": "COURSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85186054058, + 50.644204376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cef99a432aac5d2e3337faad4976cc7c8d3b8da", + "fields": { + "code_commune_insee": "61021", + "nom_de_la_commune": "AVRILLY", + "code_postal": "61700", + "coordonnees_gps": [ + 48.53716556, + -0.617581790397 + ], + "libelle_d_acheminement": "AVRILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.617581790397, + 48.53716556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f295d3f6c476976dc2bd969e56d05cc480703349", + "fields": { + "code_commune_insee": "62254", + "nom_de_la_commune": "COYECQUES", + "code_postal": "62560", + "coordonnees_gps": [ + 50.6006814818, + 2.18485516321 + ], + "libelle_d_acheminement": "COYECQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18485516321, + 50.6006814818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ca54d38a518a7de82f6f8a05ea17268ff28c7cf", + "fields": { + "code_commune_insee": "61024", + "nom_de_la_commune": "BANVOU", + "code_postal": "61450", + "coordonnees_gps": [ + 48.6639903117, + -0.556894831544 + ], + "libelle_d_acheminement": "BANVOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.556894831544, + 48.6639903117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "896e667ebb74b213116f55958763a168bea6c184", + "fields": { + "code_commune_insee": "62255", + "nom_de_la_commune": "CREMAREST", + "code_postal": "62240", + "coordonnees_gps": [ + 50.7007092157, + 1.78896697788 + ], + "libelle_d_acheminement": "CREMAREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78896697788, + 50.7007092157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a3f9e2e6236dfaf762759d446249e491da3d100", + "fields": { + "code_commune_insee": "61026", + "nom_de_la_commune": "BARVILLE", + "code_postal": "61170", + "coordonnees_gps": [ + 48.4725873445, + 0.346572085133 + ], + "libelle_d_acheminement": "BARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.346572085133, + 48.4725873445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecaf7d5895361323d932bbd3a33adf4026fb5696", + "fields": { + "ligne_5": "STELLA", + "code_commune_insee": "62261", + "libelle_d_acheminement": "CUCQ", + "code_postal": "62780", + "nom_de_la_commune": "CUCQ", + "coordonnees_gps": [ + 50.4861371651, + 1.6129406035 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6129406035, + 50.4861371651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52b84affa17793233f6cbd3e7fc009847d653e14", + "fields": { + "code_commune_insee": "61030", + "nom_de_la_commune": "LA BAZOQUE", + "code_postal": "61100", + "coordonnees_gps": [ + 48.7845443137, + -0.598606188518 + ], + "libelle_d_acheminement": "LA BAZOQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.598606188518, + 48.7845443137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4b1b790dd4ff3224dbe9aef64d42f9a86ce018d", + "fields": { + "code_commune_insee": "62264", + "nom_de_la_commune": "DANNES", + "code_postal": "62187", + "coordonnees_gps": [ + 50.5927758846, + 1.60549165729 + ], + "libelle_d_acheminement": "DANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60549165729, + 50.5927758846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be1d2f9b8196ad4878536489d7cbfd6952d25815", + "fields": { + "code_commune_insee": "61039", + "nom_de_la_commune": "LA BELLIERE", + "code_postal": "61570", + "coordonnees_gps": [ + 48.6212934568, + -0.0179184399938 + ], + "libelle_d_acheminement": "LA BELLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0179184399938, + 48.6212934568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2d49583757a28500cac1cd91c183a22c00539e2", + "fields": { + "code_commune_insee": "62273", + "nom_de_la_commune": "DOUDEAUVILLE", + "code_postal": "62830", + "coordonnees_gps": [ + 50.6239084374, + 1.83106911247 + ], + "libelle_d_acheminement": "DOUDEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83106911247, + 50.6239084374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4117269ccd42e3f11313f80decb94e6bb932018a", + "fields": { + "code_commune_insee": "61046", + "nom_de_la_commune": "BIZOU", + "code_postal": "61290", + "coordonnees_gps": [ + 48.492046967, + 0.750681055966 + ], + "libelle_d_acheminement": "BIZOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.750681055966, + 48.492046967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "276c24358422564db500c65bb3d795eb52a11825", + "fields": { + "code_commune_insee": "62284", + "nom_de_la_commune": "ECOURT ST QUENTIN", + "code_postal": "62860", + "coordonnees_gps": [ + 50.2606003824, + 3.06198342767 + ], + "libelle_d_acheminement": "ECOURT ST QUENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06198342767, + 50.2606003824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "018baed47d8097fae4a65b71175c11cd0ad566fd", + "fields": { + "code_commune_insee": "61048", + "nom_de_la_commune": "BOECE", + "code_postal": "61560", + "coordonnees_gps": [ + 48.5149253316, + 0.454540443789 + ], + "libelle_d_acheminement": "BOECE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.454540443789, + 48.5149253316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7490d16ddc8326eb5df55334bae7323fbb23eee0", + "fields": { + "code_commune_insee": "62288", + "nom_de_la_commune": "ECQUES", + "code_postal": "62129", + "coordonnees_gps": [ + 50.6751011115, + 2.28909761313 + ], + "libelle_d_acheminement": "ECQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28909761313, + 50.6751011115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c588b556fb7cf7a5f2ce1bb6623be801b10ebcd8", + "fields": { + "code_commune_insee": "61049", + "nom_de_la_commune": "BOISSEI LA LANDE", + "code_postal": "61570", + "coordonnees_gps": [ + 48.6888205216, + 0.0605654191254 + ], + "libelle_d_acheminement": "BOISSEI LA LANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0605654191254, + 48.6888205216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cd67150ff7189dc0ca33259d24c3e9a3f8d5a88", + "fields": { + "code_commune_insee": "62292", + "nom_de_la_commune": "ELNES", + "code_postal": "62380", + "coordonnees_gps": [ + 50.6860806657, + 2.11534643648 + ], + "libelle_d_acheminement": "ELNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11534643648, + 50.6860806657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9abed41e19708b862c4f0247eec7a11857a1fa3b", + "fields": { + "ligne_5": "MAISON MAUGIS", + "code_commune_insee": "61050", + "libelle_d_acheminement": "COUR MAUGIS SUR HUISNE", + "code_postal": "61110", + "nom_de_la_commune": "COUR MAUGIS SUR HUISNE", + "coordonnees_gps": [ + 48.464144125, + 0.730036118715 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.730036118715, + 48.464144125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e06cdec2e9cac92ef72ec7e10682261357fa8dbe", + "fields": { + "code_commune_insee": "62297", + "nom_de_la_commune": "EPERLECQUES", + "code_postal": "62910", + "coordonnees_gps": [ + 50.8183914819, + 2.16069366951 + ], + "libelle_d_acheminement": "EPERLECQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16069366951, + 50.8183914819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90e3ace2df85603a9353b66ffdac5b117072955f", + "fields": { + "ligne_5": "COURCERAULT", + "code_commune_insee": "61050", + "libelle_d_acheminement": "COUR MAUGIS SUR HUISNE", + "code_postal": "61340", + "nom_de_la_commune": "COUR MAUGIS SUR HUISNE", + "coordonnees_gps": [ + 48.464144125, + 0.730036118715 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.730036118715, + 48.464144125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3628d5607de920192aa8167ff527f1cb2dfd8c65", + "fields": { + "code_commune_insee": "62303", + "nom_de_la_commune": "ERIN", + "code_postal": "62134", + "coordonnees_gps": [ + 50.4304811529, + 2.21886321071 + ], + "libelle_d_acheminement": "ERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21886321071, + 50.4304811529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9150224cbc4cf24388b25f6467a1d24967496900", + "fields": { + "code_commune_insee": "61052", + "nom_de_la_commune": "BONNEFOI", + "code_postal": "61270", + "coordonnees_gps": [ + 48.6761468135, + 0.562246564264 + ], + "libelle_d_acheminement": "BONNEFOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.562246564264, + 48.6761468135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "054432e8dc5ccc0e88e21f613622ded36fc20ef9", + "fields": { + "code_commune_insee": "62304", + "nom_de_la_commune": "ERNY ST JULIEN", + "code_postal": "62960", + "coordonnees_gps": [ + 50.5839233636, + 2.25140626649 + ], + "libelle_d_acheminement": "ERNY ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25140626649, + 50.5839233636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e6c4b81da16f949197bfdc9028af95a50aab9ee", + "fields": { + "code_commune_insee": "61053", + "nom_de_la_commune": "BONSMOULINS", + "code_postal": "61380", + "coordonnees_gps": [ + 48.6583186822, + 0.541666162724 + ], + "libelle_d_acheminement": "BONSMOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.541666162724, + 48.6583186822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68913649589867c94a31711a04aefda3c3fd465d", + "fields": { + "code_commune_insee": "62311", + "nom_de_la_commune": "ESTEVELLES", + "code_postal": "62880", + "coordonnees_gps": [ + 50.4792333773, + 2.9072255969 + ], + "libelle_d_acheminement": "ESTEVELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9072255969, + 50.4792333773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "784ef663aa585205a39cf3002f236606ece3e9e7", + "fields": { + "code_commune_insee": "61054", + "nom_de_la_commune": "LE BOSC RENOULT", + "code_postal": "61470", + "coordonnees_gps": [ + 48.9156193104, + 0.309566800591 + ], + "libelle_d_acheminement": "LE BOSC RENOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.309566800591, + 48.9156193104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27adfd8df7fd1cd2be72cb4720fc9639c54d8f8e", + "fields": { + "code_commune_insee": "62313", + "nom_de_la_commune": "ESTREE BLANCHE", + "code_postal": "62145", + "coordonnees_gps": [ + 50.5930088193, + 2.32026164871 + ], + "libelle_d_acheminement": "ESTREE BLANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32026164871, + 50.5930088193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f784093ed15e9699d9833fc236ab231ccf7a513", + "fields": { + "code_commune_insee": "61060", + "nom_de_la_commune": "BRETHEL", + "code_postal": "61270", + "coordonnees_gps": [ + 48.7151055973, + 0.54286645063 + ], + "libelle_d_acheminement": "BRETHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54286645063, + 48.7151055973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c57cbb40191e7c5600af70e30f787b12c2a8effe", + "fields": { + "code_commune_insee": "62314", + "nom_de_la_commune": "ESTREE CAUCHY", + "code_postal": "62690", + "coordonnees_gps": [ + 50.3991885256, + 2.61140942771 + ], + "libelle_d_acheminement": "ESTREE CAUCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61140942771, + 50.3991885256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "176f5ad5a75f17f1f7e269273644341a00e46720", + "fields": { + "code_commune_insee": "61062", + "nom_de_la_commune": "BRIEUX", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8334251501, + -0.0791169679953 + ], + "libelle_d_acheminement": "BRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0791169679953, + 48.8334251501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "839e1c6f1a01a8188a74a8587cc0c88454a91f8c", + "fields": { + "code_commune_insee": "62317", + "nom_de_la_commune": "ETAING", + "code_postal": "62156", + "coordonnees_gps": [ + 50.2720246326, + 2.99815975036 + ], + "libelle_d_acheminement": "ETAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99815975036, + 50.2720246326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "071d47c5438ba00d34041c38ee5dd69b8aead942", + "fields": { + "code_commune_insee": "61066", + "nom_de_la_commune": "BURE", + "code_postal": "61170", + "coordonnees_gps": [ + 48.5057238643, + 0.404327830049 + ], + "libelle_d_acheminement": "BURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.404327830049, + 48.5057238643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd314dbf2defe211073a1a215192e67b3704bb44", + "fields": { + "code_commune_insee": "62322", + "nom_de_la_commune": "FAMECHON", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1439770504, + 2.45778315136 + ], + "libelle_d_acheminement": "FAMECHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45778315136, + 50.1439770504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3505b0161e6a79982e6fba718a35ad902ed9b75f", + "fields": { + "code_commune_insee": "61068", + "nom_de_la_commune": "BURSARD", + "code_postal": "61500", + "coordonnees_gps": [ + 48.5410404688, + 0.203747510397 + ], + "libelle_d_acheminement": "BURSARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.203747510397, + 48.5410404688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26a143e5799a456f39989a34a0854997bb4197a6", + "fields": { + "code_commune_insee": "62323", + "nom_de_la_commune": "FAMPOUX", + "code_postal": "62118", + "coordonnees_gps": [ + 50.2998803664, + 2.87181354867 + ], + "libelle_d_acheminement": "FAMPOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87181354867, + 50.2998803664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1af04bf07dab1f16bac3f3943dc6112916fdd7b9", + "fields": { + "code_commune_insee": "61069", + "nom_de_la_commune": "CAHAN", + "code_postal": "61430", + "coordonnees_gps": [ + 48.8597279145, + -0.446109041609 + ], + "libelle_d_acheminement": "CAHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.446109041609, + 48.8597279145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2429ea68e2ab827402f41a9558f800d98dc82bb7", + "fields": { + "code_commune_insee": "62330", + "nom_de_la_commune": "FESTUBERT", + "code_postal": "62149", + "coordonnees_gps": [ + 50.5446581516, + 2.7365385521 + ], + "libelle_d_acheminement": "FESTUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7365385521, + 50.5446581516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "242f4659bb65fdf0fc27b96a21b411fe035f1a73", + "fields": { + "code_commune_insee": "61072", + "nom_de_la_commune": "CANAPVILLE", + "code_postal": "61120", + "coordonnees_gps": [ + 48.9484108928, + 0.256239841886 + ], + "libelle_d_acheminement": "CANAPVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.256239841886, + 48.9484108928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27e58b22bd7f5bde1dde14c03dbcee3c4d0cf805", + "fields": { + "code_commune_insee": "62335", + "nom_de_la_commune": "FILLIEVRES", + "code_postal": "62770", + "coordonnees_gps": [ + 50.3171424803, + 2.16170089705 + ], + "libelle_d_acheminement": "FILLIEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16170089705, + 50.3171424803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb55e834893597dbdc2ea306bad6ac2f12254407", + "fields": { + "ligne_5": "NEUVILLE PRES SEES", + "code_commune_insee": "61081", + "libelle_d_acheminement": "CHAILLOUE", + "code_postal": "61500", + "nom_de_la_commune": "CHAILLOUE", + "coordonnees_gps": [ + 48.6568911726, + 0.196513358702 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.196513358702, + 48.6568911726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75eb49d53b920d3b2402eb303c81cc84e4386d88", + "fields": { + "code_commune_insee": "62337", + "nom_de_la_commune": "FLERS", + "code_postal": "62270", + "coordonnees_gps": [ + 50.3212035167, + 2.25448501079 + ], + "libelle_d_acheminement": "FLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25448501079, + 50.3212035167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18918ab21223c01c876cf2306f6d1a666980a795", + "fields": { + "code_commune_insee": "61085", + "nom_de_la_commune": "LE CHAMP DE LA PIERRE", + "code_postal": "61320", + "coordonnees_gps": [ + 48.6042220102, + -0.205228915716 + ], + "libelle_d_acheminement": "LE CHAMP DE LA PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.205228915716, + 48.6042220102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30e6ebf708f2449473479f4177fd5073985a7544", + "fields": { + "code_commune_insee": "62344", + "nom_de_la_commune": "FONTAINE LES HERMANS", + "code_postal": "62550", + "coordonnees_gps": [ + 50.5275299556, + 2.33764506206 + ], + "libelle_d_acheminement": "FONTAINE LES HERMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33764506206, + 50.5275299556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07f16d57765e950ad5b9943a352c59d4b44eab8d", + "fields": { + "code_commune_insee": "61088", + "nom_de_la_commune": "CHAMP HAUT", + "code_postal": "61240", + "coordonnees_gps": [ + 48.7261314736, + 0.325245165597 + ], + "libelle_d_acheminement": "CHAMP HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.325245165597, + 48.7261314736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afde3448093bc461663ede14e4d40f9850c21dbb", + "fields": { + "code_commune_insee": "62348", + "nom_de_la_commune": "FOUFFLIN RICAMETZ", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3499914405, + 2.38708909848 + ], + "libelle_d_acheminement": "FOUFFLIN RICAMETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38708909848, + 50.3499914405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52cdcf9dcd6f041d3da45091d3a1aca30ba0da68", + "fields": { + "ligne_5": "GENESLAY", + "code_commune_insee": "61096", + "libelle_d_acheminement": "RIVES D ANDAINE", + "code_postal": "61140", + "nom_de_la_commune": "RIVES D ANDAINE", + "coordonnees_gps": [ + 48.5439558211, + -0.466370828883 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.466370828883, + 48.5439558211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2511b0265269bb89dfc18b7cf1708cc8da63e59", + "fields": { + "code_commune_insee": "62349", + "nom_de_la_commune": "FOUQUEREUIL", + "code_postal": "62232", + "coordonnees_gps": [ + 50.5207754925, + 2.59890688489 + ], + "libelle_d_acheminement": "FOUQUEREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59890688489, + 50.5207754925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41a3708f8543c0115881b7ca89394e5d8bd708d5", + "fields": { + "code_commune_insee": "61097", + "nom_de_la_commune": "LA CHAPELLE MONTLIGEON", + "code_postal": "61400", + "coordonnees_gps": [ + 48.4854312725, + 0.659562933284 + ], + "libelle_d_acheminement": "LA CHAPELLE MONTLIGEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659562933284, + 48.4854312725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25fdb1513d644d47b3f37ed8e0c31e87ec138ca0", + "fields": { + "code_commune_insee": "62351", + "nom_de_la_commune": "FOUQUIERES LES LENS", + "code_postal": "62740", + "coordonnees_gps": [ + 50.4292454614, + 2.90611987264 + ], + "libelle_d_acheminement": "FOUQUIERES LES LENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90611987264, + 50.4292454614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99e1572d0d834d453aea4c61c769b3b5467e0e73", + "fields": { + "code_commune_insee": "61100", + "nom_de_la_commune": "LA CHAPELLE VIEL", + "code_postal": "61270", + "coordonnees_gps": [ + 48.7099526297, + 0.612218004614 + ], + "libelle_d_acheminement": "LA CHAPELLE VIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.612218004614, + 48.7099526297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "125828387f6cd9ebca240c1b0db6319620f70362", + "fields": { + "code_commune_insee": "62353", + "nom_de_la_commune": "FREMICOURT", + "code_postal": "62450", + "coordonnees_gps": [ + 50.112643271, + 2.90288307097 + ], + "libelle_d_acheminement": "FREMICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90288307097, + 50.112643271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83f0248cc63ebacff903c90dc86bd795492d8115", + "fields": { + "code_commune_insee": "61107", + "nom_de_la_commune": "CIRAL", + "code_postal": "61320", + "coordonnees_gps": [ + 48.5071426572, + -0.132794455306 + ], + "libelle_d_acheminement": "CIRAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.132794455306, + 48.5071426572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f44f509ebdc41e13e347a3bb05b66a31a45a6e7", + "fields": { + "code_commune_insee": "62354", + "nom_de_la_commune": "FRENCQ", + "code_postal": "62630", + "coordonnees_gps": [ + 50.5617772282, + 1.68949161438 + ], + "libelle_d_acheminement": "FRENCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68949161438, + 50.5617772282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff9a6efcf48e213e969b4ef0d24800b4204cc34a", + "fields": { + "code_commune_insee": "61111", + "nom_de_la_commune": "COLOMBIERS", + "code_postal": "61250", + "coordonnees_gps": [ + 48.4757516967, + 0.0509684749642 + ], + "libelle_d_acheminement": "COLOMBIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0509684749642, + 48.4757516967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3109b6bcf7443f87895e55a1dc656eb4bd085794", + "fields": { + "code_commune_insee": "62358", + "nom_de_la_commune": "FRESNOY EN GOHELLE", + "code_postal": "62580", + "coordonnees_gps": [ + 50.3685369312, + 2.89601093482 + ], + "libelle_d_acheminement": "FRESNOY EN GOHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89601093482, + 50.3685369312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "707ae0ea6735b31f142409c8f13ed7fb9a02470f", + "fields": { + "ligne_5": "CONDEAU", + "code_commune_insee": "61116", + "libelle_d_acheminement": "SABLONS SUR HUISNE", + "code_postal": "61110", + "nom_de_la_commune": "SABLONS SUR HUISNE", + "coordonnees_gps": [ + 48.3793529122, + 0.864706610339 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.864706610339, + 48.3793529122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39b05fa610329243484b732c825af1ecb96a301d", + "fields": { + "code_commune_insee": "62361", + "nom_de_la_commune": "FREVENT", + "code_postal": "62270", + "coordonnees_gps": [ + 50.270911587, + 2.29293491451 + ], + "libelle_d_acheminement": "FREVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29293491451, + 50.270911587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e48bf7cbd724a70a065579f5174956ea91815d9c", + "fields": { + "ligne_5": "COULONGES LES SABLONS", + "code_commune_insee": "61116", + "libelle_d_acheminement": "SABLONS SUR HUISNE", + "code_postal": "61110", + "nom_de_la_commune": "SABLONS SUR HUISNE", + "coordonnees_gps": [ + 48.3793529122, + 0.864706610339 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.864706610339, + 48.3793529122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f3331b0d927b0b13a5e79ddc588ec4d17d4efa5", + "fields": { + "code_commune_insee": "62362", + "nom_de_la_commune": "FREVILLERS", + "code_postal": "62127", + "coordonnees_gps": [ + 50.40086365, + 2.52420922895 + ], + "libelle_d_acheminement": "FREVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52420922895, + 50.40086365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65b3061d5414c123d450ae583f891e8c7b8d2ab9", + "fields": { + "code_commune_insee": "61117", + "nom_de_la_commune": "CONDE SUR SARTHE", + "code_postal": "61250", + "coordonnees_gps": [ + 48.4339888036, + 0.0335059639951 + ], + "libelle_d_acheminement": "CONDE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0335059639951, + 48.4339888036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a98659b78262a4c6d3cd8ef823e66fa328271d33", + "fields": { + "code_commune_insee": "62368", + "nom_de_la_commune": "GAUDIEMPRE", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1751742719, + 2.52871563115 + ], + "libelle_d_acheminement": "GAUDIEMPRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52871563115, + 50.1751742719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1383b4eae4ee8cb052d7689819e7c5237bb17fa2", + "fields": { + "code_commune_insee": "61120", + "nom_de_la_commune": "COUDEHARD", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8492741023, + 0.137324296391 + ], + "libelle_d_acheminement": "COUDEHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.137324296391, + 48.8492741023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "642ce88e4f89ad439d6acb53b2083131397e9c38", + "fields": { + "code_commune_insee": "62370", + "nom_de_la_commune": "GENNES IVERGNY", + "code_postal": "62390", + "coordonnees_gps": [ + 50.2741036632, + 2.06316402606 + ], + "libelle_d_acheminement": "GENNES IVERGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06316402606, + 50.2741036632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b00871fef769353237aaae9ed094b8994e4db945", + "fields": { + "code_commune_insee": "61124", + "nom_de_la_commune": "LA COULONCHE", + "code_postal": "61220", + "coordonnees_gps": [ + 48.6375516967, + -0.466617045312 + ], + "libelle_d_acheminement": "LA COULONCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.466617045312, + 48.6375516967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66d02496533c045ab23c32fa8b49848d4cb7aee8", + "fields": { + "code_commune_insee": "62371", + "nom_de_la_commune": "GIVENCHY EN GOHELLE", + "code_postal": "62580", + "coordonnees_gps": [ + 50.3925166262, + 2.77782748947 + ], + "libelle_d_acheminement": "GIVENCHY EN GOHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77782748947, + 50.3925166262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21d82e140ab2f8f0b0eee959f42d898435eb8fed", + "fields": { + "code_commune_insee": "61130", + "nom_de_la_commune": "COURGEOUT", + "code_postal": "61560", + "coordonnees_gps": [ + 48.5081772919, + 0.490279202757 + ], + "libelle_d_acheminement": "COURGEOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.490279202757, + 48.5081772919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ee280278b0993fcc7ddd0cf1b5e43c490bb4022", + "fields": { + "code_commune_insee": "62373", + "nom_de_la_commune": "GIVENCHY LES LA BASSEE", + "code_postal": "62149", + "coordonnees_gps": [ + 50.5319568907, + 2.7603145898 + ], + "libelle_d_acheminement": "GIVENCHY LES LA BASSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7603145898, + 50.5319568907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ad3dad3a2d3dd36f60ef6e37fe9ff82228096c4", + "fields": { + "code_commune_insee": "61137", + "nom_de_la_commune": "CRAMENIL", + "code_postal": "61220", + "coordonnees_gps": [ + 48.7450234977, + -0.372031703174 + ], + "libelle_d_acheminement": "CRAMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.372031703174, + 48.7450234977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5ae3627e69e4d9af3a9abe5623b929db73408e7", + "fields": { + "code_commune_insee": "62377", + "nom_de_la_commune": "GOSNAY", + "code_postal": "62199", + "coordonnees_gps": [ + 50.5088591145, + 2.58721404812 + ], + "libelle_d_acheminement": "GOSNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58721404812, + 50.5088591145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb92972955c5b7f1de632c76f5aea7f48b88c38a", + "fields": { + "code_commune_insee": "61142", + "nom_de_la_commune": "DAME MARIE", + "code_postal": "61130", + "coordonnees_gps": [ + 48.3547234316, + 0.618155918935 + ], + "libelle_d_acheminement": "DAME MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.618155918935, + 48.3547234316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bef25d07f8d43536b069d176e1a77e1c5ac8122", + "fields": { + "code_commune_insee": "62381", + "nom_de_la_commune": "GOUY EN TERNOIS", + "code_postal": "62127", + "coordonnees_gps": [ + 50.3226610933, + 2.41085838264 + ], + "libelle_d_acheminement": "GOUY EN TERNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41085838264, + 50.3226610933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d41638d7fce5e99c1d18e0b446ccb57ad2200565", + "fields": { + "code_commune_insee": "61151", + "nom_de_la_commune": "ECORCEI", + "code_postal": "61270", + "coordonnees_gps": [ + 48.7192657885, + 0.575658478261 + ], + "libelle_d_acheminement": "ECORCEI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.575658478261, + 48.7192657885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5c33d2141ab092df14434d19a5613cdc6e6243c", + "fields": { + "code_commune_insee": "62385", + "nom_de_la_commune": "GRAND RULLECOURT", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2543107636, + 2.47447539793 + ], + "libelle_d_acheminement": "GRAND RULLECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47447539793, + 50.2543107636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e9036f47398b4621c561e758b7cddb1bf1e1e54", + "fields": { + "code_commune_insee": "61156", + "nom_de_la_commune": "ESSAY", + "code_postal": "61500", + "coordonnees_gps": [ + 48.5404326393, + 0.242237703533 + ], + "libelle_d_acheminement": "ESSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.242237703533, + 48.5404326393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49d3e19267da628c94131944ec237fc26180c167", + "fields": { + "code_commune_insee": "62390", + "nom_de_la_commune": "GROFFLIERS", + "code_postal": "62600", + "coordonnees_gps": [ + 50.3852621579, + 1.60399303027 + ], + "libelle_d_acheminement": "GROFFLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60399303027, + 50.3852621579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04f6980b0359cfe03ff3500664847d0c0cefe3d1", + "fields": { + "code_commune_insee": "62393", + "nom_de_la_commune": "GUEMPS", + "code_postal": "62370", + "coordonnees_gps": [ + 50.9177532951, + 1.99730294047 + ], + "libelle_d_acheminement": "GUEMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99730294047, + 50.9177532951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f65e54cd1592f91936e774ed2a38059f2aa103b", + "fields": { + "code_commune_insee": "62398", + "nom_de_la_commune": "GUISY", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3877493268, + 2.00263953159 + ], + "libelle_d_acheminement": "GUISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00263953159, + 50.3877493268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5633edce38f7b80d1a137986c469883eb443a294", + "fields": { + "code_commune_insee": "62400", + "nom_de_la_commune": "HAILLICOURT", + "code_postal": "62940", + "coordonnees_gps": [ + 50.4758957511, + 2.57933383024 + ], + "libelle_d_acheminement": "HAILLICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57933383024, + 50.4758957511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a5513f594f0b2dcbae57e7f7e480fa6d08421ab", + "fields": { + "code_commune_insee": "62402", + "nom_de_la_commune": "HALINGHEN", + "code_postal": "62830", + "coordonnees_gps": [ + 50.6041744819, + 1.68261824682 + ], + "libelle_d_acheminement": "HALINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68261824682, + 50.6041744819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e45eed36ad2b4de5e8f99a81baf7c8bd627f5e4", + "fields": { + "code_commune_insee": "62430", + "nom_de_la_commune": "HENU", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1563296482, + 2.5317199579 + ], + "libelle_d_acheminement": "HENU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5317199579, + 50.1563296482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4964cbd16ff717395a11bb08f07d1b0b6f47a4d", + "fields": { + "code_commune_insee": "62434", + "nom_de_la_commune": "LA HERLIERE", + "code_postal": "62158", + "coordonnees_gps": [ + 50.1989955706, + 2.55855876678 + ], + "libelle_d_acheminement": "LA HERLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55855876678, + 50.1989955706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a997d10f2a170245ed6920d6f323adee4aa1456f", + "fields": { + "code_commune_insee": "62435", + "nom_de_la_commune": "HERLINCOURT", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3443144148, + 2.29198306532 + ], + "libelle_d_acheminement": "HERLINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29198306532, + 50.3443144148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc28734f6cfe2d32b6a196176cd0f0603bc67466", + "fields": { + "code_commune_insee": "62442", + "nom_de_la_commune": "HERNICOURT", + "code_postal": "62130", + "coordonnees_gps": [ + 50.4147047187, + 2.30775344747 + ], + "libelle_d_acheminement": "HERNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30775344747, + 50.4147047187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa84b1d659bbdcb8853337e5e36471900397ce5c", + "fields": { + "code_commune_insee": "62444", + "nom_de_la_commune": "HERVELINGHEN", + "code_postal": "62179", + "coordonnees_gps": [ + 50.8844468643, + 1.7189212303 + ], + "libelle_d_acheminement": "HERVELINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7189212303, + 50.8844468643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a71fa1ae4cb5f0c5a90ce62d6f9027583d599a87", + "fields": { + "code_commune_insee": "62451", + "nom_de_la_commune": "HEUCHIN", + "code_postal": "62134", + "coordonnees_gps": [ + 50.4808803919, + 2.27062622618 + ], + "libelle_d_acheminement": "HEUCHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27062622618, + 50.4808803919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2311aa97fc0b0bebace52cbe70bb3854a3355f1", + "fields": { + "code_commune_insee": "62456", + "nom_de_la_commune": "HOUCHIN", + "code_postal": "62620", + "coordonnees_gps": [ + 50.4791705559, + 2.61907091985 + ], + "libelle_d_acheminement": "HOUCHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61907091985, + 50.4791705559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e687193e778d1e4d52f38a3f1c852a927c18443", + "fields": { + "code_commune_insee": "62458", + "nom_de_la_commune": "HOULLE", + "code_postal": "62910", + "coordonnees_gps": [ + 50.7969936327, + 2.16484725691 + ], + "libelle_d_acheminement": "HOULLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16484725691, + 50.7969936327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c0f17188fab4974acc4e1c778f4f405ba33b516", + "fields": { + "code_commune_insee": "62461", + "nom_de_la_commune": "HUBY ST LEU", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3946394663, + 2.02454954867 + ], + "libelle_d_acheminement": "HUBY ST LEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02454954867, + 50.3946394663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "369e4b0e66c2583b61cf98724938ea66643663cd", + "fields": { + "code_commune_insee": "62466", + "nom_de_la_commune": "HUMBERT", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5005174956, + 1.90980020513 + ], + "libelle_d_acheminement": "HUMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90980020513, + 50.5005174956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfd6c6222d8d54603dbe782b9edac494fe51d8f8", + "fields": { + "code_commune_insee": "62469", + "nom_de_la_commune": "INCHY EN ARTOIS", + "code_postal": "62860", + "coordonnees_gps": [ + 50.1745599898, + 3.03944320203 + ], + "libelle_d_acheminement": "INCHY EN ARTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03944320203, + 50.1745599898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad94acbfa07832f0d3bc06f56fc55c8fba0ada97", + "fields": { + "ligne_5": "INGHEM", + "code_commune_insee": "62471", + "libelle_d_acheminement": "BELLINGHEM", + "code_postal": "62129", + "nom_de_la_commune": "BELLINGHEM", + "coordonnees_gps": [ + 50.6690392574, + 2.24271033014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24271033014, + 50.6690392574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "326efdbc0c960a9e49969c1124bcdc0b26c4be27", + "fields": { + "code_commune_insee": "62472", + "nom_de_la_commune": "INXENT", + "code_postal": "62170", + "coordonnees_gps": [ + 50.5367422786, + 1.78814127158 + ], + "libelle_d_acheminement": "INXENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78814127158, + 50.5367422786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9366d575ab9c18896f48dfac5b1fd9b29f79c3b", + "fields": { + "code_commune_insee": "62475", + "nom_de_la_commune": "IVERGNY", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2380889989, + 2.38095249535 + ], + "libelle_d_acheminement": "IVERGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38095249535, + 50.2380889989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb63e8ca7e125823110fa4bdba589437d42e1956", + "fields": { + "code_commune_insee": "62486", + "nom_de_la_commune": "LAMBRES", + "code_postal": "62120", + "coordonnees_gps": [ + 50.6180000635, + 2.40481322183 + ], + "libelle_d_acheminement": "LAMBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40481322183, + 50.6180000635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8024ac398f112511bbf22b9ba76aa8d2b922a2b2", + "fields": { + "code_commune_insee": "62487", + "nom_de_la_commune": "LANDRETHUN LE NORD", + "code_postal": "62250", + "coordonnees_gps": [ + 50.8498865079, + 1.77882908623 + ], + "libelle_d_acheminement": "LANDRETHUN LE NORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77882908623, + 50.8498865079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e38aa45b9977d9efbfd47182882bac6948751062", + "fields": { + "code_commune_insee": "62490", + "nom_de_la_commune": "LATTRE ST QUENTIN", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2971861104, + 2.57210181191 + ], + "libelle_d_acheminement": "LATTRE ST QUENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57210181191, + 50.2971861104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d320fd2718d1b0c07e935dc6af0769f2c0f4c53", + "fields": { + "code_commune_insee": "62494", + "nom_de_la_commune": "LECHELLE", + "code_postal": "62124", + "coordonnees_gps": [ + 50.0545425148, + 2.97707265499 + ], + "libelle_d_acheminement": "LECHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97707265499, + 50.0545425148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "627a5e32a3d22f3325307ea78d7f0d0cd6494e3e", + "fields": { + "code_commune_insee": "62495", + "nom_de_la_commune": "LEDINGHEM", + "code_postal": "62380", + "coordonnees_gps": [ + 50.6449906532, + 1.97365993925 + ], + "libelle_d_acheminement": "LEDINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97365993925, + 50.6449906532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "625f3c0faa6e220f00f0d414c2399d6efb29666b", + "fields": { + "code_commune_insee": "62499", + "nom_de_la_commune": "LEPINE", + "code_postal": "62170", + "coordonnees_gps": [ + 50.3851141972, + 1.72825357976 + ], + "libelle_d_acheminement": "LEPINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72825357976, + 50.3851141972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0b79561af19705f3834e223221b84ff45d284cc", + "fields": { + "code_commune_insee": "62501", + "nom_de_la_commune": "LESPINOY", + "code_postal": "62990", + "coordonnees_gps": [ + 50.4276154192, + 1.86447871866 + ], + "libelle_d_acheminement": "LESPINOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86447871866, + 50.4276154192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d966014f2b75c040c92b2d9d439b8ff679bf66c1", + "fields": { + "code_commune_insee": "62524", + "nom_de_la_commune": "LONGFOSSE", + "code_postal": "62240", + "coordonnees_gps": [ + 50.6545422678, + 1.80794052393 + ], + "libelle_d_acheminement": "LONGFOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80794052393, + 50.6545422678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "832cae1bcd7f4794b656e42f5d0069d5e56fd548", + "fields": { + "code_commune_insee": "62525", + "nom_de_la_commune": "LONGUENESSE", + "code_postal": "62219", + "coordonnees_gps": [ + 50.7356717764, + 2.24445927669 + ], + "libelle_d_acheminement": "LONGUENESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24445927669, + 50.7356717764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7503d5611ea062a2d975635486f0d9da9d8aeec9", + "fields": { + "code_commune_insee": "62526", + "nom_de_la_commune": "LONGUEVILLE", + "code_postal": "62142", + "coordonnees_gps": [ + 50.7288500512, + 1.88045163542 + ], + "libelle_d_acheminement": "LONGUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88045163542, + 50.7288500512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78db98f28c73e37242d24a148df4e60e5a69855d", + "fields": { + "code_commune_insee": "62530", + "nom_de_la_commune": "LOTTINGHEN", + "code_postal": "62240", + "coordonnees_gps": [ + 50.6772682361, + 1.93556689371 + ], + "libelle_d_acheminement": "LOTTINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93556689371, + 50.6772682361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93c0a092ebe2f0d7f01118b84b5b3483212d718e", + "fields": { + "code_commune_insee": "62534", + "nom_de_la_commune": "LUMBRES", + "code_postal": "62380", + "coordonnees_gps": [ + 50.705094418, + 2.11706482499 + ], + "libelle_d_acheminement": "LUMBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11706482499, + 50.705094418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4724b141005a48186ad9ece79931586cbd380e2", + "fields": { + "code_commune_insee": "62535", + "nom_de_la_commune": "LA MADELAINE SOUS MONTREUIL", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4657638325, + 1.74915066351 + ], + "libelle_d_acheminement": "LA MADELAINE SOUS MONTREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74915066351, + 50.4657638325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9437f6673b14f13eeea8f342ff92c5cccdf9cc7d", + "fields": { + "code_commune_insee": "62536", + "nom_de_la_commune": "MAGNICOURT EN COMTE", + "code_postal": "62127", + "coordonnees_gps": [ + 50.4032927894, + 2.48186461999 + ], + "libelle_d_acheminement": "MAGNICOURT EN COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48186461999, + 50.4032927894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f0282fda54611c5697d0431629f7c0a1abbf984", + "fields": { + "code_commune_insee": "62543", + "nom_de_la_commune": "MAMETZ", + "code_postal": "62120", + "coordonnees_gps": [ + 50.6294533649, + 2.30938013681 + ], + "libelle_d_acheminement": "MAMETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30938013681, + 50.6294533649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c94d75258821998e5292814c988a646cb86626d", + "fields": { + "code_commune_insee": "62545", + "nom_de_la_commune": "MANINGHEM", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5480187009, + 1.9398392621 + ], + "libelle_d_acheminement": "MANINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9398392621, + 50.5480187009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2285add07e29318262d4b3c54e7c0c2fece46a57", + "fields": { + "code_commune_insee": "62550", + "nom_de_la_commune": "MARCONNELLE", + "code_postal": "62140", + "coordonnees_gps": [ + 50.369452969, + 2.00711158449 + ], + "libelle_d_acheminement": "MARCONNELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00711158449, + 50.369452969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0949ad48d2acb14b65925f865c884f4e8f7fab8", + "fields": { + "code_commune_insee": "62551", + "nom_de_la_commune": "MARENLA", + "code_postal": "62990", + "coordonnees_gps": [ + 50.4521838936, + 1.87453885296 + ], + "libelle_d_acheminement": "MARENLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87453885296, + 50.4521838936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad414799ed8e83e4923120ec3cecb0be5d226e6c", + "fields": { + "code_commune_insee": "62562", + "nom_de_la_commune": "MATRINGHEM", + "code_postal": "62310", + "coordonnees_gps": [ + 50.5456223403, + 2.16665746182 + ], + "libelle_d_acheminement": "MATRINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16665746182, + 50.5456223403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0396a811038aaa13d332251913adb4d359534ee7", + "fields": { + "code_commune_insee": "62576", + "nom_de_la_commune": "MONCHEAUX LES FREVENT", + "code_postal": "62270", + "coordonnees_gps": [ + 50.3143087443, + 2.3636150292 + ], + "libelle_d_acheminement": "MONCHEAUX LES FREVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3636150292, + 50.3143087443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d7cdb8a939b705fe5d13b1ed13963325aca728f", + "fields": { + "code_commune_insee": "62579", + "nom_de_la_commune": "MONCHY AU BOIS", + "code_postal": "62111", + "coordonnees_gps": [ + 50.1799080557, + 2.65841335513 + ], + "libelle_d_acheminement": "MONCHY AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65841335513, + 50.1799080557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "326d9a19decce21ada49bb86d832013971475c14", + "fields": { + "code_commune_insee": "62583", + "nom_de_la_commune": "MONDICOURT", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1742014399, + 2.46725438343 + ], + "libelle_d_acheminement": "MONDICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46725438343, + 50.1742014399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75991eadee55c126c8b1b9013e3e2b245113c576", + "fields": { + "code_commune_insee": "62584", + "nom_de_la_commune": "MONT BERNANCHON", + "code_postal": "62350", + "coordonnees_gps": [ + 50.5892672563, + 2.59806310499 + ], + "libelle_d_acheminement": "MONT BERNANCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59806310499, + 50.5892672563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84bc4e20a1ae33a0334c9bc04621a45fd2656501", + "fields": { + "code_commune_insee": "62589", + "nom_de_la_commune": "MONT ST ELOI", + "code_postal": "62144", + "coordonnees_gps": [ + 50.3502329575, + 2.69040970286 + ], + "libelle_d_acheminement": "MONT ST ELOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69040970286, + 50.3502329575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86f889d53cf86957a37e02dd482965e56e784915", + "fields": { + "code_commune_insee": "62595", + "nom_de_la_commune": "MOULLE", + "code_postal": "62910", + "coordonnees_gps": [ + 50.7883148321, + 2.1706543981 + ], + "libelle_d_acheminement": "MOULLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1706543981, + 50.7883148321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b3eab97920245f7d364b18d5a515dbe8070001c", + "fields": { + "code_commune_insee": "62606", + "nom_de_la_commune": "NEUVE CHAPELLE", + "code_postal": "62840", + "coordonnees_gps": [ + 50.585092327, + 2.77952080173 + ], + "libelle_d_acheminement": "NEUVE CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77952080173, + 50.585092327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c09f3aef0970aab77694f91fb450a0db01fa0ca6", + "fields": { + "code_commune_insee": "62608", + "nom_de_la_commune": "NEUVILLE BOURJONVAL", + "code_postal": "62124", + "coordonnees_gps": [ + 50.0669791719, + 3.024953452 + ], + "libelle_d_acheminement": "NEUVILLE BOURJONVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.024953452, + 50.0669791719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a22fb9e6d24cdc7c9e885e7a59fca6f2ec304a93", + "fields": { + "code_commune_insee": "62613", + "nom_de_la_commune": "NIELLES LES BLEQUIN", + "code_postal": "62380", + "coordonnees_gps": [ + 50.675332061, + 2.03042491518 + ], + "libelle_d_acheminement": "NIELLES LES BLEQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03042491518, + 50.675332061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecce5ffcae727e8fd29480f4f1264cd4abdeb493", + "fields": { + "code_commune_insee": "62628", + "nom_de_la_commune": "NOYELLES SOUS LENS", + "code_postal": "62221", + "coordonnees_gps": [ + 50.4286822706, + 2.87559653416 + ], + "libelle_d_acheminement": "NOYELLES SOUS LENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87559653416, + 50.4286822706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa38fb06bc0929f727d1e5e58122c2b96b28f8c3", + "fields": { + "code_commune_insee": "62637", + "nom_de_la_commune": "OIGNIES", + "code_postal": "62590", + "coordonnees_gps": [ + 50.4644483399, + 2.99306842451 + ], + "libelle_d_acheminement": "OIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99306842451, + 50.4644483399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec252144254b9dab732673b4000d2c01b782d626", + "fields": { + "code_commune_insee": "62641", + "nom_de_la_commune": "OSTREVILLE", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3941779286, + 2.39782308177 + ], + "libelle_d_acheminement": "OSTREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39782308177, + 50.3941779286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67f826bd71418431aba2aebb4d96834d8a6a3603", + "fields": { + "code_commune_insee": "62644", + "nom_de_la_commune": "OUVE WIRQUIN", + "code_postal": "62380", + "coordonnees_gps": [ + 50.6527627631, + 2.14390429317 + ], + "libelle_d_acheminement": "OUVE WIRQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14390429317, + 50.6527627631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "881b926b0160802aa34bae46681a126ee3e2a8ba", + "fields": { + "code_commune_insee": "62647", + "nom_de_la_commune": "LE PARCQ", + "code_postal": "62770", + "coordonnees_gps": [ + 50.382239682, + 2.08547177983 + ], + "libelle_d_acheminement": "LE PARCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08547177983, + 50.382239682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef16550262964f06b9c7e37b1693b598ce3c3b6f", + "fields": { + "code_commune_insee": "62657", + "nom_de_la_commune": "PIHEN LES GUINES", + "code_postal": "62340", + "coordonnees_gps": [ + 50.8717360678, + 1.79132748835 + ], + "libelle_d_acheminement": "PIHEN LES GUINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79132748835, + 50.8717360678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "251f158d635a5e87930daa19d4a1437f5198097a", + "fields": { + "code_commune_insee": "61171", + "nom_de_la_commune": "FONTAINE LES BASSETS", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8614123081, + 0.00290765242172 + ], + "libelle_d_acheminement": "FONTAINE LES BASSETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00290765242172, + 48.8614123081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1be3a4abc055a38f4884a6a626e9b0a13631bf61", + "fields": { + "code_commune_insee": "61178", + "nom_de_la_commune": "LA FRESNAIE FAYEL", + "code_postal": "61230", + "coordonnees_gps": [ + 48.8333166779, + 0.227433994696 + ], + "libelle_d_acheminement": "LA FRESNAIE FAYEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.227433994696, + 48.8333166779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84a9fac55265cc7f0bbb79ef00fac48505bf1969", + "fields": { + "code_commune_insee": "61182", + "nom_de_la_commune": "GANDELAIN", + "code_postal": "61420", + "coordonnees_gps": [ + 48.471434104, + -0.0863104439985 + ], + "libelle_d_acheminement": "GANDELAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0863104439985, + 48.471434104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edf26ceb8cee88e2e8de772a7d17dcc2d738965f", + "fields": { + "code_commune_insee": "61183", + "nom_de_la_commune": "GAPREE", + "code_postal": "61390", + "coordonnees_gps": [ + 48.6244819747, + 0.293642849368 + ], + "libelle_d_acheminement": "GAPREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.293642849368, + 48.6244819747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea1321b39a0b8d66b565221213980475f68289be", + "fields": { + "ligne_5": "ORIGNY LE BUTIN", + "code_commune_insee": "61196", + "libelle_d_acheminement": "BELFORET EN PERCHE", + "code_postal": "61130", + "nom_de_la_commune": "BELFORET EN PERCHE", + "coordonnees_gps": [ + 48.3725300515, + 0.509787667614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.509787667614, + 48.3725300515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "436295e73ce0c2cd2f70415039813d20fc7a37d7", + "fields": { + "ligne_5": "EPERRAIS", + "code_commune_insee": "61196", + "libelle_d_acheminement": "BELFORET EN PERCHE", + "code_postal": "61400", + "nom_de_la_commune": "BELFORET EN PERCHE", + "coordonnees_gps": [ + 48.3725300515, + 0.509787667614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.509787667614, + 48.3725300515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cc2b7e46ac3865da0034ee6f8c5310884ffca0f", + "fields": { + "code_commune_insee": "61199", + "nom_de_la_commune": "HABLOVILLE", + "code_postal": "61210", + "coordonnees_gps": [ + 48.7905539735, + -0.178098224902 + ], + "libelle_d_acheminement": "HABLOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.178098224902, + 48.7905539735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2a676530e0bb93d5b1f6a28a98baf6271615381", + "fields": { + "code_commune_insee": "61207", + "nom_de_la_commune": "IGE", + "code_postal": "61130", + "coordonnees_gps": [ + 48.3129531169, + 0.516923568848 + ], + "libelle_d_acheminement": "IGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.516923568848, + 48.3129531169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92c624b7bb907311b7e820f2565b9cc925fea3b5", + "fields": { + "ligne_5": "JUVIGNY SOUS ANDAINE", + "code_commune_insee": "61211", + "libelle_d_acheminement": "JUVIGNY VAL D ANDAINE", + "code_postal": "61140", + "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", + "coordonnees_gps": [ + 48.5575380101, + -0.496792071108 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.496792071108, + 48.5575380101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "718a29a961aa268707bf9edbd0828948e8cf7c93", + "fields": { + "code_commune_insee": "61212", + "nom_de_la_commune": "JUVIGNY SUR ORNE", + "code_postal": "61200", + "coordonnees_gps": [ + 48.7241556418, + 0.0235822074744 + ], + "libelle_d_acheminement": "JUVIGNY SUR ORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0235822074744, + 48.7241556418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86e9b46c7ecf00597ebf1dee8a9a3682bf5849be", + "fields": { + "code_commune_insee": "61213", + "nom_de_la_commune": "LALACELLE", + "code_postal": "61320", + "coordonnees_gps": [ + 48.4693160672, + -0.127634893953 + ], + "libelle_d_acheminement": "LALACELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.127634893953, + 48.4693160672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "583aff45b6649f40513ce6983d97e90c99024e41", + "fields": { + "code_commune_insee": "61224", + "nom_de_la_commune": "LARRE", + "code_postal": "61250", + "coordonnees_gps": [ + 48.4933130424, + 0.166961596924 + ], + "libelle_d_acheminement": "LARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.166961596924, + 48.4933130424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e136d588f6aec37ca9e9b6a61f0476bc8dfd61f", + "fields": { + "ligne_5": "FONTENAI LES LOUVETS", + "code_commune_insee": "61228", + "libelle_d_acheminement": "L OREE D ECOUVES", + "code_postal": "61420", + "nom_de_la_commune": "L OREE D ECOUVES", + "coordonnees_gps": [ + 48.5076444763, + -0.0385013329846 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0385013329846, + 48.5076444763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45b9f0f8a149ed93b87252117d3212be8622f352", + "fields": { + "ligne_5": "LIVAIE", + "code_commune_insee": "61228", + "libelle_d_acheminement": "L OREE D ECOUVES", + "code_postal": "61420", + "nom_de_la_commune": "L OREE D ECOUVES", + "coordonnees_gps": [ + 48.5076444763, + -0.0385013329846 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0385013329846, + 48.5076444763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c122f5121ec1e103f073fbd51434168502509623", + "fields": { + "ligne_5": "LONGNY AU PERCHE", + "code_commune_insee": "61230", + "libelle_d_acheminement": "LONGNY LES VILLAGES", + "code_postal": "61290", + "nom_de_la_commune": "LONGNY LES VILLAGES", + "coordonnees_gps": [ + 48.5293923919, + 0.757893185933 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.757893185933, + 48.5293923919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a8428a4aa8c6a3deeeadde21116996df8296f2b", + "fields": { + "ligne_5": "MARCHAINVILLE", + "code_commune_insee": "61230", + "libelle_d_acheminement": "LONGNY LES VILLAGES", + "code_postal": "61290", + "nom_de_la_commune": "LONGNY LES VILLAGES", + "coordonnees_gps": [ + 48.5293923919, + 0.757893185933 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.757893185933, + 48.5293923919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93f01627e38b6084e26e8e0c8fbf4e0efdc8a986", + "fields": { + "ligne_5": "ST VICTOR DE RENO", + "code_commune_insee": "61230", + "libelle_d_acheminement": "LONGNY LES VILLAGES", + "code_postal": "61290", + "nom_de_la_commune": "LONGNY LES VILLAGES", + "coordonnees_gps": [ + 48.5293923919, + 0.757893185933 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.757893185933, + 48.5293923919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de8608a4806f44a235cebc8e2bcf4843cf0e5601", + "fields": { + "code_commune_insee": "61244", + "nom_de_la_commune": "MAHERU", + "code_postal": "61380", + "coordonnees_gps": [ + 48.6654929816, + 0.43898779821 + ], + "libelle_d_acheminement": "MAHERU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.43898779821, + 48.6654929816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "053e1d1e10aa2d41429db7477c72cfe75ebef658", + "fields": { + "code_commune_insee": "61268", + "nom_de_la_commune": "MENIL HUBERT EN EXMES", + "code_postal": "61230", + "coordonnees_gps": [ + 48.8018370315, + 0.233439468984 + ], + "libelle_d_acheminement": "MENIL HUBERT EN EXMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.233439468984, + 48.8018370315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73e9fa5f47a9865249bf1e48cca187b040be4d44", + "fields": { + "code_commune_insee": "61277", + "nom_de_la_commune": "LA MESNIERE", + "code_postal": "61560", + "coordonnees_gps": [ + 48.5217923084, + 0.434024036779 + ], + "libelle_d_acheminement": "LA MESNIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.434024036779, + 48.5217923084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d2c260283d1299e2f3336e06d6507b1a71b4bdd", + "fields": { + "code_commune_insee": "61278", + "nom_de_la_commune": "MESSEI", + "code_postal": "61440", + "coordonnees_gps": [ + 48.7140643026, + -0.539204262797 + ], + "libelle_d_acheminement": "MESSEI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.539204262797, + 48.7140643026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "227ad3fe1c64e57353221ea5d354420cf2da34ce", + "fields": { + "code_commune_insee": "61287", + "nom_de_la_commune": "MONTILLY SUR NOIREAU", + "code_postal": "61100", + "coordonnees_gps": [ + 48.8146701791, + -0.5709234596 + ], + "libelle_d_acheminement": "MONTILLY SUR NOIREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5709234596, + 48.8146701791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b532ff6cbc620adb9665958bdd3f1c1e7e8e7e04", + "fields": { + "code_commune_insee": "61289", + "nom_de_la_commune": "MONT ORMEL", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8358294295, + 0.153055227997 + ], + "libelle_d_acheminement": "MONT ORMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.153055227997, + 48.8358294295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf089ccd61fa9542535e884d5acda1fb97170cc3", + "fields": { + "code_commune_insee": "61297", + "nom_de_la_commune": "MOULINS LA MARCHE", + "code_postal": "61380", + "coordonnees_gps": [ + 48.6502807278, + 0.47464312921 + ], + "libelle_d_acheminement": "MOULINS LA MARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47464312921, + 48.6502807278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5599629edd15cae829995c8a7d2cf5e4e3ed7d72", + "fields": { + "code_commune_insee": "61298", + "nom_de_la_commune": "MOULINS SUR ORNE", + "code_postal": "61200", + "coordonnees_gps": [ + 48.7533220868, + -0.0653769966336 + ], + "libelle_d_acheminement": "MOULINS SUR ORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0653769966336, + 48.7533220868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b328bdf1e3570e1c12aa90a2ffe8b64ef0548905", + "fields": { + "code_commune_insee": "61308", + "nom_de_la_commune": "NEUVY AU HOULME", + "code_postal": "61210", + "coordonnees_gps": [ + 48.821735051, + -0.190259929005 + ], + "libelle_d_acheminement": "NEUVY AU HOULME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.190259929005, + 48.821735051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e01db4805c8e2e18105e3a848871e47aac878c05", + "fields": { + "ligne_5": "COLONARD CORUBERT", + "code_commune_insee": "61309", + "libelle_d_acheminement": "PERCHE EN NOCE", + "code_postal": "61340", + "nom_de_la_commune": "PERCHE EN NOCE", + "coordonnees_gps": [ + 48.3808259058, + 0.686799351677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.686799351677, + 48.3808259058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "262b937adcc00641f06f680ed06e509e87c57ab8", + "fields": { + "ligne_5": "ST JEAN DE LA FORET", + "code_commune_insee": "61309", + "libelle_d_acheminement": "PERCHE EN NOCE", + "code_postal": "61340", + "nom_de_la_commune": "PERCHE EN NOCE", + "coordonnees_gps": [ + 48.3808259058, + 0.686799351677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.686799351677, + 48.3808259058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ab340b0a6a2884a4f4762019a9863eff4fa5aed", + "fields": { + "code_commune_insee": "61330", + "nom_de_la_commune": "PLANCHES", + "code_postal": "61370", + "coordonnees_gps": [ + 48.6898504724, + 0.377530769995 + ], + "libelle_d_acheminement": "PLANCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.377530769995, + 48.6898504724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "064c0791577abefe93a840aa34b83518493f573a", + "fields": { + "code_commune_insee": "61332", + "nom_de_la_commune": "POINTEL", + "code_postal": "61220", + "coordonnees_gps": [ + 48.6945257579, + -0.348493610503 + ], + "libelle_d_acheminement": "POINTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.348493610503, + 48.6945257579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4007935733b0c07af0fd695e5fe2000d0717cc1c", + "fields": { + "code_commune_insee": "61336", + "nom_de_la_commune": "POUVRAI", + "code_postal": "61130", + "coordonnees_gps": [ + 48.2795939755, + 0.518958565692 + ], + "libelle_d_acheminement": "POUVRAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.518958565692, + 48.2795939755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e671db537905bec400507b44ff7db5e600a09e30", + "fields": { + "ligne_5": "LA FRESNAYE AU SAUVAGE", + "code_commune_insee": "61339", + "libelle_d_acheminement": "PUTANGES LE LAC", + "code_postal": "61210", + "nom_de_la_commune": "PUTANGES LE LAC", + "coordonnees_gps": [ + 48.766449668, + -0.252215702706 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.252215702706, + 48.766449668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b6d8ac9891272da5ef4ea4ab77a61bed978007f", + "fields": { + "ligne_5": "PUTANGES PONT ECREPIN", + "code_commune_insee": "61339", + "libelle_d_acheminement": "PUTANGES LE LAC", + "code_postal": "61210", + "nom_de_la_commune": "PUTANGES LE LAC", + "coordonnees_gps": [ + 48.766449668, + -0.252215702706 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.252215702706, + 48.766449668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5645e214938f7b875a8ca50af7c8878ed2b8abe", + "fields": { + "ligne_5": "STE CROIX SUR ORNE", + "code_commune_insee": "61339", + "libelle_d_acheminement": "PUTANGES LE LAC", + "code_postal": "61210", + "nom_de_la_commune": "PUTANGES LE LAC", + "coordonnees_gps": [ + 48.766449668, + -0.252215702706 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.252215702706, + 48.766449668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d808aa7f9e8ce19d9f40f5ef784c34dfd5f28d8", + "fields": { + "ligne_5": "VINGT HANAPS", + "code_commune_insee": "61341", + "libelle_d_acheminement": "ECOUVES", + "code_postal": "61250", + "nom_de_la_commune": "ECOUVES", + "coordonnees_gps": [ + 48.5089267357, + 0.0863965878338 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0863965878338, + 48.5089267357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a813698812ca980fc722afb67dba28efe6b056bf", + "fields": { + "code_commune_insee": "61342", + "nom_de_la_commune": "RAI", + "code_postal": "61270", + "coordonnees_gps": [ + 48.7559861003, + 0.562809659715 + ], + "libelle_d_acheminement": "RAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.562809659715, + 48.7559861003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3595ac23a65ddd7cf67c511e40a980e27dd9c2e1", + "fields": { + "code_commune_insee": "61344", + "nom_de_la_commune": "RANES", + "code_postal": "61150", + "coordonnees_gps": [ + 48.6436675698, + -0.217658803697 + ], + "libelle_d_acheminement": "RANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.217658803697, + 48.6436675698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95a245359a676d3cae8c3b63b7b7957c8e0bec22", + "fields": { + "code_commune_insee": "61349", + "nom_de_la_commune": "RI", + "code_postal": "61210", + "coordonnees_gps": [ + 48.788213656, + -0.13879185478 + ], + "libelle_d_acheminement": "RI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13879185478, + 48.788213656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1374267d33db0f000354bad89f5153c8be39d60f", + "fields": { + "code_commune_insee": "61352", + "nom_de_la_commune": "RONAI", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8104980056, + -0.135238062061 + ], + "libelle_d_acheminement": "RONAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.135238062061, + 48.8104980056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e0ae79ab066e9507faf194083a14672c5cd5c94", + "fields": { + "code_commune_insee": "61361", + "nom_de_la_commune": "ST ANDRE DE BRIOUZE", + "code_postal": "61220", + "coordonnees_gps": [ + 48.7338760322, + -0.327257845989 + ], + "libelle_d_acheminement": "ST ANDRE DE BRIOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.327257845989, + 48.7338760322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e371f19de0b69fd1d9a416e968b9c20eb94a2cdb", + "fields": { + "code_commune_insee": "61371", + "nom_de_la_commune": "ST BRICE SOUS RANES", + "code_postal": "61150", + "coordonnees_gps": [ + 48.6784450821, + -0.19335744417 + ], + "libelle_d_acheminement": "ST BRICE SOUS RANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.19335744417, + 48.6784450821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d24c3244442fcfeb27ceb50803776cad518f85fa", + "fields": { + "code_commune_insee": "61376", + "nom_de_la_commune": "ST CLAIR DE HALOUZE", + "code_postal": "61490", + "coordonnees_gps": [ + 48.6891169765, + -0.626025775908 + ], + "libelle_d_acheminement": "ST CLAIR DE HALOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.626025775908, + 48.6891169765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2c3b84e3ac6032a89a37adb26f4c1abd2faeb75", + "fields": { + "code_commune_insee": "61384", + "nom_de_la_commune": "ST ELLIER LES BOIS", + "code_postal": "61320", + "coordonnees_gps": [ + 48.5239551221, + -0.0984963605984 + ], + "libelle_d_acheminement": "ST ELLIER LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0984963605984, + 48.5239551221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95a88878681f03a12dfc8d4b0978c33bd29122e8", + "fields": { + "code_commune_insee": "61391", + "nom_de_la_commune": "ST GEORGES DES GROSEILLERS", + "code_postal": "61100", + "coordonnees_gps": [ + 48.7672046691, + -0.568075544032 + ], + "libelle_d_acheminement": "ST GEORGES DES GROSEILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.568075544032, + 48.7672046691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb63c89f0f6ab9249381daf97824a66e88bbfb11", + "fields": { + "code_commune_insee": "61398", + "nom_de_la_commune": "ST GERMAIN LE VIEUX", + "code_postal": "61390", + "coordonnees_gps": [ + 48.6106053248, + 0.311416198264 + ], + "libelle_d_acheminement": "ST GERMAIN LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.311416198264, + 48.6106053248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed0c9908f74ee10dac6eeeef7c9993810e414a89", + "fields": { + "code_commune_insee": "61406", + "nom_de_la_commune": "ST HILAIRE SUR RISLE", + "code_postal": "61270", + "coordonnees_gps": [ + 48.7245700882, + 0.507831900424 + ], + "libelle_d_acheminement": "ST HILAIRE SUR RISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.507831900424, + 48.7245700882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cbd2a10cb28543536bfc42eb6a345c168c47d74", + "fields": { + "code_commune_insee": "61416", + "nom_de_la_commune": "ST LEONARD DES PARCS", + "code_postal": "61390", + "coordonnees_gps": [ + 48.6460340258, + 0.276826106353 + ], + "libelle_d_acheminement": "ST LEONARD DES PARCS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.276826106353, + 48.6460340258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2d904b96f593fda3c05fe4d8897a4e7dc9fa7b7", + "fields": { + "code_commune_insee": "61425", + "nom_de_la_commune": "ST MARTIN DES PEZERITS", + "code_postal": "61380", + "coordonnees_gps": [ + 48.627183396, + 0.489313798529 + ], + "libelle_d_acheminement": "ST MARTIN DES PEZERITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.489313798529, + 48.627183396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9eff7c5f2fe38afb684eaf5f946e6b4c16facdc", + "fields": { + "ligne_5": "MOUSSONVILLIERS", + "code_commune_insee": "61429", + "libelle_d_acheminement": "CHARENCEY", + "code_postal": "61190", + "nom_de_la_commune": "CHARENCEY", + "coordonnees_gps": [ + 48.6391173168, + 0.752904500205 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.752904500205, + 48.6391173168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d63ffd0d4d90fad398cc1d9af3129377bdd03bad", + "fields": { + "code_commune_insee": "61439", + "nom_de_la_commune": "ST OUEN LE BRISOULT", + "code_postal": "61410", + "coordonnees_gps": [ + 48.5091783781, + -0.350727640894 + ], + "libelle_d_acheminement": "ST OUEN LE BRISOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.350727640894, + 48.5091783781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d6c48d6f714af257995de8d635f96c447089521", + "fields": { + "code_commune_insee": "62673", + "nom_de_la_commune": "QUEANT", + "code_postal": "62860", + "coordonnees_gps": [ + 50.1765937301, + 2.98518027531 + ], + "libelle_d_acheminement": "QUEANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98518027531, + 50.1765937301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaf2814a5ebe7d6e207514904e985dee47ad48e6", + "fields": { + "code_commune_insee": "61451", + "nom_de_la_commune": "ST QUENTIN LES CHARDONNETS", + "code_postal": "61800", + "coordonnees_gps": [ + 48.7827074381, + -0.75146556661 + ], + "libelle_d_acheminement": "ST QUENTIN LES CHARDONNETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75146556661, + 48.7827074381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "754c83bb7ea0d5775d23f48010707ebf18edbe52", + "fields": { + "code_commune_insee": "62674", + "nom_de_la_commune": "QUELMES", + "code_postal": "62500", + "coordonnees_gps": [ + 50.7344041405, + 2.12647655403 + ], + "libelle_d_acheminement": "QUELMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12647655403, + 50.7344041405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85d5cc7f3fbf63222e4453b296a9563ef632e6bf", + "fields": { + "ligne_5": "ORVILLE", + "code_commune_insee": "61460", + "libelle_d_acheminement": "SAP EN AUGE", + "code_postal": "61120", + "nom_de_la_commune": "SAP EN AUGE", + "coordonnees_gps": [ + 48.8881688087, + 0.338970200397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.338970200397, + 48.8881688087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "046c3e0bbede1be3ae2eccc55693f26eb461d974", + "fields": { + "code_commune_insee": "62677", + "nom_de_la_commune": "LE QUESNOY EN ARTOIS", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3316939023, + 2.0384112079 + ], + "libelle_d_acheminement": "LE QUESNOY EN ARTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0384112079, + 50.3316939023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73c33591aeab7f2c986d6a74904e00e170e8b428", + "fields": { + "code_commune_insee": "61464", + "nom_de_la_commune": "SEES", + "code_postal": "61500", + "coordonnees_gps": [ + 48.6048296774, + 0.169026415284 + ], + "libelle_d_acheminement": "SEES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.169026415284, + 48.6048296774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdf25ec031a51fad5328aac8bac24dc9ee91a08c", + "fields": { + "code_commune_insee": "62680", + "nom_de_la_commune": "QUIERY LA MOTTE", + "code_postal": "62490", + "coordonnees_gps": [ + 50.3662007463, + 2.98347505624 + ], + "libelle_d_acheminement": "QUIERY LA MOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98347505624, + 50.3662007463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fb2e50d60db220b5388c729b3db76bd38d71b55", + "fields": { + "ligne_5": "AUBRY EN EXMES", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61160", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9c7fe824e05f3f3955f90a6cc72dc4f54dba239", + "fields": { + "code_commune_insee": "62682", + "nom_de_la_commune": "QUILEN", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5294762225, + 1.9336963946 + ], + "libelle_d_acheminement": "QUILEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9336963946, + 50.5294762225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b59d09b6436977cede6302508862d5c4228ed2c3", + "fields": { + "ligne_5": "FEL", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61160", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1affbe003f9c22e87b3b33692704ab3e15457cb1", + "fields": { + "code_commune_insee": "62688", + "nom_de_la_commune": "RANG DU FLIERS", + "code_postal": "62180", + "coordonnees_gps": [ + 50.4199152362, + 1.63418600654 + ], + "libelle_d_acheminement": "RANG DU FLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63418600654, + 50.4199152362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c91b2641e081c78ea367f43793367861abfae01", + "fields": { + "ligne_5": "OMMEEL", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61160", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ff3063c16341034aca379acefa3ce6ed7b5a118", + "fields": { + "code_commune_insee": "62690", + "nom_de_la_commune": "RAYE SUR AUTHIE", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3025647802, + 1.9586390074 + ], + "libelle_d_acheminement": "RAYE SUR AUTHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9586390074, + 50.3025647802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42d5071a12123530c60f461a725baa71f8a80c6b", + "fields": { + "ligne_5": "COURMENIL", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61310", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b333c82be5e529b2728112afb8c1b317c33037c7", + "fields": { + "code_commune_insee": "62698", + "nom_de_la_commune": "RECQUES SUR COURSE", + "code_postal": "62170", + "coordonnees_gps": [ + 50.5183914542, + 1.77865917585 + ], + "libelle_d_acheminement": "RECQUES SUR COURSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77865917585, + 50.5183914542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54d1869fbd66c297d538d4e5ff4f424b31c7136b", + "fields": { + "code_commune_insee": "61481", + "nom_de_la_commune": "TELLIERES LE PLESSIS", + "code_postal": "61390", + "coordonnees_gps": [ + 48.6212310332, + 0.393995256892 + ], + "libelle_d_acheminement": "TELLIERES LE PLESSIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.393995256892, + 48.6212310332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4acbfd98f96970335dbb20a4f352ce0b02d73cdf", + "fields": { + "code_commune_insee": "62699", + "nom_de_la_commune": "RECQUES SUR HEM", + "code_postal": "62890", + "coordonnees_gps": [ + 50.8355345504, + 2.08017520799 + ], + "libelle_d_acheminement": "RECQUES SUR HEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08017520799, + 50.8355345504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2cda081eb0fd3f3bb67de686d688807f911e273", + "fields": { + "ligne_5": "ST JEAN DES BOIS", + "code_commune_insee": "61486", + "libelle_d_acheminement": "TINCHEBRAY BOCAGE", + "code_postal": "61800", + "nom_de_la_commune": "TINCHEBRAY BOCAGE", + "coordonnees_gps": [ + 48.7558885792, + -0.736451200504 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.736451200504, + 48.7558885792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b10bb7aa819d71b4c3663fdb0f9379ff78820bdd", + "fields": { + "code_commune_insee": "62701", + "nom_de_la_commune": "RELY", + "code_postal": "62120", + "coordonnees_gps": [ + 50.5758856261, + 2.36150772557 + ], + "libelle_d_acheminement": "RELY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36150772557, + 50.5758856261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "599ce0826a67868ab348310e2b54e40f5b10c4d9", + "fields": { + "ligne_5": "RANDONNAI", + "code_commune_insee": "61491", + "libelle_d_acheminement": "TOUROUVRE AU PERCHE", + "code_postal": "61190", + "nom_de_la_commune": "TOUROUVRE AU PERCHE", + "coordonnees_gps": [ + 48.5889926319, + 0.659944291667 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659944291667, + 48.5889926319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cb50053d292658c1d2988ea1f6dfbbba60825f0", + "fields": { + "code_commune_insee": "62711", + "nom_de_la_commune": "RINXENT", + "code_postal": "62720", + "coordonnees_gps": [ + 50.8071658491, + 1.74101623086 + ], + "libelle_d_acheminement": "RINXENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74101623086, + 50.8071658491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66c94d38226f302c2b998b54928af1ff9d4ae564", + "fields": { + "code_commune_insee": "61492", + "nom_de_la_commune": "TREMONT", + "code_postal": "61390", + "coordonnees_gps": [ + 48.5992594307, + 0.273573907946 + ], + "libelle_d_acheminement": "TREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.273573907946, + 48.5992594307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4622a4e2d1eee4eaeef86e0264bbd4914db069a3", + "fields": { + "code_commune_insee": "62718", + "nom_de_la_commune": "ROEUX", + "code_postal": "62118", + "coordonnees_gps": [ + 50.3016559501, + 2.89915245765 + ], + "libelle_d_acheminement": "ROEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89915245765, + 50.3016559501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84d68cefc38ea6a5155564561b2e4225d98a49f4", + "fields": { + "code_commune_insee": "61494", + "nom_de_la_commune": "TRUN", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8509334132, + 0.0461785983021 + ], + "libelle_d_acheminement": "TRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0461785983021, + 48.8509334132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f487a8d3538ddd74ae2d662dbf20b95571fa23a6", + "fields": { + "code_commune_insee": "62721", + "nom_de_la_commune": "ROQUETOIRE", + "code_postal": "62120", + "coordonnees_gps": [ + 50.6660698696, + 2.33842480492 + ], + "libelle_d_acheminement": "ROQUETOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33842480492, + 50.6660698696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7058f65c66a4dbf43fad0577e010cb9ed39dfe46", + "fields": { + "code_commune_insee": "61497", + "nom_de_la_commune": "VALFRAMBERT", + "code_postal": "61250", + "coordonnees_gps": [ + 48.4648637397, + 0.110562026701 + ], + "libelle_d_acheminement": "VALFRAMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.110562026701, + 48.4648637397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0148c5b478b222c804e6739dfb277733d4290cd", + "fields": { + "code_commune_insee": "62729", + "nom_de_la_commune": "RUMILLY", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5793719163, + 2.01782227688 + ], + "libelle_d_acheminement": "RUMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01782227688, + 50.5793719163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caedcbed25ca966778147b6d5a11e766e5a34ce9", + "fields": { + "code_commune_insee": "62005", + "nom_de_la_commune": "ACHIET LE GRAND", + "code_postal": "62121", + "coordonnees_gps": [ + 50.1324695483, + 2.77909963917 + ], + "libelle_d_acheminement": "ACHIET LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77909963917, + 50.1324695483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2bbd6ec479d002e85bbd63913002458e8c00b93", + "fields": { + "code_commune_insee": "62738", + "nom_de_la_commune": "SAINS LES FRESSIN", + "code_postal": "62310", + "coordonnees_gps": [ + 50.4721168643, + 2.04894753008 + ], + "libelle_d_acheminement": "SAINS LES FRESSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04894753008, + 50.4721168643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75ba3d8240af81c1b04059c795778ccfcaa7bdfd", + "fields": { + "code_commune_insee": "62017", + "nom_de_la_commune": "AIX EN ERGNY", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5872440261, + 2.00011764709 + ], + "libelle_d_acheminement": "AIX EN ERGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00011764709, + 50.5872440261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "653003848664bdaf1b7a2f46dff298a3a3321228", + "fields": { + "code_commune_insee": "62744", + "nom_de_la_commune": "STE CATHERINE", + "code_postal": "62223", + "coordonnees_gps": [ + 50.3146043394, + 2.7623576742 + ], + "libelle_d_acheminement": "STE CATHERINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7623576742, + 50.3146043394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a8b851de696f82f31a692156c86dcd0b1c3998a", + "fields": { + "code_commune_insee": "62018", + "nom_de_la_commune": "AIX EN ISSART", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4802572282, + 1.86105299794 + ], + "libelle_d_acheminement": "AIX EN ISSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86105299794, + 50.4802572282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0457ecce4087967d35852d3d59c530a0848269b6", + "fields": { + "code_commune_insee": "62749", + "nom_de_la_commune": "ST GEORGES", + "code_postal": "62770", + "coordonnees_gps": [ + 50.351642191, + 2.07280932615 + ], + "libelle_d_acheminement": "ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07280932615, + 50.351642191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ada7830a54292608490626ffd3b3f6d8b977cd07", + "fields": { + "code_commune_insee": "62023", + "nom_de_la_commune": "ALLOUAGNE", + "code_postal": "62157", + "coordonnees_gps": [ + 50.5322320704, + 2.50493799409 + ], + "libelle_d_acheminement": "ALLOUAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50493799409, + 50.5322320704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a8d0cdbc3f3aa933f1b513c8b1c93f237d1e5b8", + "fields": { + "code_commune_insee": "62750", + "nom_de_la_commune": "ST HILAIRE COTTES", + "code_postal": "62120", + "coordonnees_gps": [ + 50.5673889188, + 2.39680232031 + ], + "libelle_d_acheminement": "ST HILAIRE COTTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39680232031, + 50.5673889188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38edf48ced3a4557c76b578338176cbfe459825f", + "fields": { + "code_commune_insee": "62025", + "nom_de_la_commune": "AMBLETEUSE", + "code_postal": "62164", + "coordonnees_gps": [ + 50.8115899636, + 1.62108848626 + ], + "libelle_d_acheminement": "AMBLETEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62108848626, + 50.8115899636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5877f97b27c0b82318df144af8b2a64d04540f87", + "fields": { + "code_commune_insee": "62753", + "nom_de_la_commune": "ST LAURENT BLANGY", + "code_postal": "62223", + "coordonnees_gps": [ + 50.3076122259, + 2.81123049591 + ], + "libelle_d_acheminement": "ST LAURENT BLANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81123049591, + 50.3076122259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac0bc8c2d18e974b8ec02170b4c25587e522563e", + "fields": { + "code_commune_insee": "62029", + "nom_de_la_commune": "AMETTES", + "code_postal": "62260", + "coordonnees_gps": [ + 50.5270054766, + 2.39396099687 + ], + "libelle_d_acheminement": "AMETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39396099687, + 50.5270054766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8afa19cc18338bf21fedeecf5f3c4b7e1559a610", + "fields": { + "code_commune_insee": "62760", + "nom_de_la_commune": "ST MARTIN D HARDINGHEM", + "code_postal": "62560", + "coordonnees_gps": [ + 50.6112309641, + 2.10476829244 + ], + "libelle_d_acheminement": "ST MARTIN D HARDINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10476829244, + 50.6112309641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19651c4971bab2d68b2961600ba2a495b8a7191a", + "fields": { + "code_commune_insee": "62037", + "nom_de_la_commune": "ANZIN ST AUBIN", + "code_postal": "62223", + "coordonnees_gps": [ + 50.3178758623, + 2.74105063372 + ], + "libelle_d_acheminement": "ANZIN ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74105063372, + 50.3178758623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d68311cab571d3afcb7d97a2d9ad3cc09922044e", + "fields": { + "code_commune_insee": "62765", + "nom_de_la_commune": "ST OMER", + "code_postal": "62500", + "coordonnees_gps": [ + 50.7679781717, + 2.26334881482 + ], + "libelle_d_acheminement": "ST OMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26334881482, + 50.7679781717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "399dc21ee7c249b9311eb46fdee4909be0bb4e47", + "fields": { + "ligne_5": "BOIS EN ARDRES", + "code_commune_insee": "62038", + "libelle_d_acheminement": "ARDRES", + "code_postal": "62610", + "nom_de_la_commune": "ARDRES", + "coordonnees_gps": [ + 50.8768753502, + 1.98398234284 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98398234284, + 50.8768753502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b73678ad97d726c95e78fd5cc3bc1aac65a962c1", + "fields": { + "code_commune_insee": "62766", + "nom_de_la_commune": "ST OMER CAPELLE", + "code_postal": "62162", + "coordonnees_gps": [ + 50.9450043366, + 2.1009180306 + ], + "libelle_d_acheminement": "ST OMER CAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1009180306, + 50.9450043366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ea2ae6bfe9d9144473a0fdfafcc6852bc03bc6f", + "fields": { + "code_commune_insee": "62041", + "nom_de_la_commune": "ARRAS", + "code_postal": "62000", + "coordonnees_gps": [ + 50.2898964997, + 2.76587316711 + ], + "libelle_d_acheminement": "ARRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76587316711, + 50.2898964997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa272ce32a1b5a51779469a2b6f87fb7a78fbd50", + "fields": { + "code_commune_insee": "62768", + "nom_de_la_commune": "ST REMY AU BOIS", + "code_postal": "62870", + "coordonnees_gps": [ + 50.3683009566, + 1.86914301088 + ], + "libelle_d_acheminement": "ST REMY AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86914301088, + 50.3683009566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66998cbfde606d48641aabb8508f62a60d41a9e1", + "fields": { + "code_commune_insee": "62044", + "nom_de_la_commune": "ATTIN", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4917667023, + 1.75510223982 + ], + "libelle_d_acheminement": "ATTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75510223982, + 50.4917667023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d78ab5e2daee14672d6b0aa0b1c9a220c36f650", + "fields": { + "code_commune_insee": "62787", + "nom_de_la_commune": "SEMPY", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4962113332, + 1.87768243694 + ], + "libelle_d_acheminement": "SEMPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87768243694, + 50.4962113332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "154861cf10d365d9cf02c47cca25efdd14cacfd4", + "fields": { + "code_commune_insee": "62047", + "nom_de_la_commune": "AUBROMETZ", + "code_postal": "62390", + "coordonnees_gps": [ + 50.3037964831, + 2.17623474177 + ], + "libelle_d_acheminement": "AUBROMETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17623474177, + 50.3037964831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "827f3bc461bfd2551c76d025951d76462a835dd9", + "fields": { + "code_commune_insee": "62800", + "nom_de_la_commune": "SOUASTRE", + "code_postal": "62111", + "coordonnees_gps": [ + 50.1493830163, + 2.57000343449 + ], + "libelle_d_acheminement": "SOUASTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57000343449, + 50.1493830163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e876b7af6948c199fc16ec55a305258cc38eaa5", + "fields": { + "code_commune_insee": "62054", + "nom_de_la_commune": "AUDINGHEN", + "code_postal": "62179", + "coordonnees_gps": [ + 50.8517582874, + 1.60848720292 + ], + "libelle_d_acheminement": "AUDINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60848720292, + 50.8517582874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e7492450bc59563b552430c259c45840340f4c2", + "fields": { + "code_commune_insee": "62804", + "nom_de_la_commune": "SUS ST LEGER", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2394092727, + 2.43472712358 + ], + "libelle_d_acheminement": "SUS ST LEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43472712358, + 50.2394092727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a58ed10b10e98eab97873155df181f05c5f6d13", + "fields": { + "code_commune_insee": "62057", + "nom_de_la_commune": "AUDRUICQ", + "code_postal": "62370", + "coordonnees_gps": [ + 50.8846450982, + 2.08156931946 + ], + "libelle_d_acheminement": "AUDRUICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08156931946, + 50.8846450982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9fd92fce5745439b0b82534d3396a371868df20", + "fields": { + "code_commune_insee": "62824", + "nom_de_la_commune": "TORTEFONTAINE", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3354918555, + 1.91483333867 + ], + "libelle_d_acheminement": "TORTEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91483333867, + 50.3354918555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "250089246ffdc803eca691d181a724513b9a33af", + "fields": { + "code_commune_insee": "62061", + "nom_de_la_commune": "AVERDOINGT", + "code_postal": "62127", + "coordonnees_gps": [ + 50.3453037362, + 2.44499865437 + ], + "libelle_d_acheminement": "AVERDOINGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44499865437, + 50.3453037362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f49240766b727950b46dc241a67d1dacaf290b6e", + "fields": { + "code_commune_insee": "62833", + "nom_de_la_commune": "VACQUERIE LE BOUCQ", + "code_postal": "62270", + "coordonnees_gps": [ + 50.2700526673, + 2.2075282322 + ], + "libelle_d_acheminement": "VACQUERIE LE BOUCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2075282322, + 50.2700526673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30defd45368334643205fdde0cca255c6f0f9472", + "fields": { + "code_commune_insee": "62070", + "nom_de_la_commune": "BAILLEUL AUX CORNAILLES", + "code_postal": "62127", + "coordonnees_gps": [ + 50.3728404349, + 2.44878258653 + ], + "libelle_d_acheminement": "BAILLEUL AUX CORNAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44878258653, + 50.3728404349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7064fdf48856d159ad9f973df7c15d6a61cbfca7", + "fields": { + "code_commune_insee": "62836", + "nom_de_la_commune": "VAUDRICOURT", + "code_postal": "62131", + "coordonnees_gps": [ + 50.4996012728, + 2.61877656623 + ], + "libelle_d_acheminement": "VAUDRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61877656623, + 50.4996012728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c07bbfd42d0d7cd150f052345e4735abff9dface", + "fields": { + "code_commune_insee": "62072", + "nom_de_la_commune": "BAILLEULMONT", + "code_postal": "62123", + "coordonnees_gps": [ + 50.2110356075, + 2.60402081464 + ], + "libelle_d_acheminement": "BAILLEULMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60402081464, + 50.2110356075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b42b6c57dc709e014b5bf0a66fad185592d0e095", + "fields": { + "code_commune_insee": "62838", + "nom_de_la_commune": "VAULX", + "code_postal": "62390", + "coordonnees_gps": [ + 50.2710456344, + 2.1045646963 + ], + "libelle_d_acheminement": "VAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1045646963, + 50.2710456344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "276945f68b9294d49e800d024a59ab55a37142fe", + "fields": { + "code_commune_insee": "62074", + "nom_de_la_commune": "BAILLEULVAL", + "code_postal": "62123", + "coordonnees_gps": [ + 50.2223355543, + 2.62727030677 + ], + "libelle_d_acheminement": "BAILLEULVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62727030677, + 50.2223355543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27e6d1db27cb13095710f8484da55f349a236a16", + "fields": { + "code_commune_insee": "62839", + "nom_de_la_commune": "VAULX VRAUCOURT", + "code_postal": "62159", + "coordonnees_gps": [ + 50.1439845718, + 2.90458316152 + ], + "libelle_d_acheminement": "VAULX VRAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90458316152, + 50.1439845718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7a573b44a9f43fce667faf2cb6ec0a24bece43e", + "fields": { + "code_commune_insee": "62078", + "nom_de_la_commune": "BALINGHEM", + "code_postal": "62610", + "coordonnees_gps": [ + 50.8613731955, + 1.94035198603 + ], + "libelle_d_acheminement": "BALINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94035198603, + 50.8613731955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "258cf7b80c5e65cbcc2de99c6255cd360193314e", + "fields": { + "code_commune_insee": "62843", + "nom_de_la_commune": "VERCHIN", + "code_postal": "62310", + "coordonnees_gps": [ + 50.493379155, + 2.17923063627 + ], + "libelle_d_acheminement": "VERCHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17923063627, + 50.493379155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee877ed47c46c8a348d76a734b270624621be542", + "fields": { + "code_commune_insee": "62083", + "nom_de_la_commune": "BARLIN", + "code_postal": "62620", + "coordonnees_gps": [ + 50.4565423999, + 2.61390140726 + ], + "libelle_d_acheminement": "BARLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61390140726, + 50.4565423999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa0fc5ad0d96a868bbec1cfda4df4a3ddfe79100", + "fields": { + "code_commune_insee": "62848", + "nom_de_la_commune": "VERQUIN", + "code_postal": "62131", + "coordonnees_gps": [ + 50.5014162013, + 2.64245100087 + ], + "libelle_d_acheminement": "VERQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64245100087, + 50.5014162013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f731ca6d20f9751f9fda6894b77233dcb4653acb", + "fields": { + "code_commune_insee": "62089", + "nom_de_la_commune": "BAZINGHEN", + "code_postal": "62250", + "coordonnees_gps": [ + 50.831272878, + 1.65838919631 + ], + "libelle_d_acheminement": "BAZINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65838919631, + 50.831272878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "934ac6fe037cfd36c4c64fe1609bf4b8b119924c", + "fields": { + "code_commune_insee": "62854", + "nom_de_la_commune": "VILLERS AU BOIS", + "code_postal": "62144", + "coordonnees_gps": [ + 50.3774575605, + 2.66415892943 + ], + "libelle_d_acheminement": "VILLERS AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66415892943, + 50.3774575605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7a1f80408cef024a64b1a9d89d287c3b9da3ee5", + "fields": { + "code_commune_insee": "62096", + "nom_de_la_commune": "BEAUMETZ LES CAMBRAI", + "code_postal": "62124", + "coordonnees_gps": [ + 50.1255965767, + 2.98659622521 + ], + "libelle_d_acheminement": "BEAUMETZ LES CAMBRAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98659622521, + 50.1255965767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca28ac4aebe8cb95657bdc438cfd0d8886b29575", + "fields": { + "code_commune_insee": "62857", + "nom_de_la_commune": "VILLERS CHATEL", + "code_postal": "62690", + "coordonnees_gps": [ + 50.3751045916, + 2.58988048072 + ], + "libelle_d_acheminement": "VILLERS CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58988048072, + 50.3751045916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "189ce21478fefbdd707a1898c82197c27938c5aa", + "fields": { + "code_commune_insee": "62099", + "nom_de_la_commune": "BEAURAINS", + "code_postal": "62217", + "coordonnees_gps": [ + 50.2580784965, + 2.78988564135 + ], + "libelle_d_acheminement": "BEAURAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78988564135, + 50.2580784965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "442cb7e21cbd5021265ac5221c31d178264322b2", + "fields": { + "code_commune_insee": "62864", + "nom_de_la_commune": "VIS EN ARTOIS", + "code_postal": "62156", + "coordonnees_gps": [ + 50.245875467, + 2.93609831247 + ], + "libelle_d_acheminement": "VIS EN ARTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93609831247, + 50.245875467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95ecf40820865fc85f395dc071b63d8449170e17", + "fields": { + "code_commune_insee": "62113", + "nom_de_la_commune": "BERLES MONCHEL", + "code_postal": "62690", + "coordonnees_gps": [ + 50.3449347791, + 2.52589986909 + ], + "libelle_d_acheminement": "BERLES MONCHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52589986909, + 50.3449347791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21681847985ff336fdc9919696ae6265cfdbd3d1", + "fields": { + "code_commune_insee": "62865", + "nom_de_la_commune": "VITRY EN ARTOIS", + "code_postal": "62490", + "coordonnees_gps": [ + 50.3256177847, + 2.98092673342 + ], + "libelle_d_acheminement": "VITRY EN ARTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98092673342, + 50.3256177847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44b7011628f61ee81d4a069c408bbc3dac6778b3", + "fields": { + "code_commune_insee": "62114", + "nom_de_la_commune": "BERMICOURT", + "code_postal": "62130", + "coordonnees_gps": [ + 50.4079914817, + 2.23309928615 + ], + "libelle_d_acheminement": "BERMICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23309928615, + 50.4079914817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff0288bbc3c6e9f256c432dd974776d52ca0cf99", + "fields": { + "code_commune_insee": "62874", + "nom_de_la_commune": "WANQUETIN", + "code_postal": "62123", + "coordonnees_gps": [ + 50.2723730799, + 2.61412474296 + ], + "libelle_d_acheminement": "WANQUETIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61412474296, + 50.2723730799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba294d9f05065d9c456e3c8e99ac7a278847e83e", + "fields": { + "code_commune_insee": "62116", + "nom_de_la_commune": "BERNIEULLES", + "code_postal": "62170", + "coordonnees_gps": [ + 50.5548320618, + 1.77250960717 + ], + "libelle_d_acheminement": "BERNIEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77250960717, + 50.5548320618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b614374486d84a84fc16dbeb3ba729a2aa872856", + "fields": { + "code_commune_insee": "62876", + "nom_de_la_commune": "WARLENCOURT EAUCOURT", + "code_postal": "62450", + "coordonnees_gps": [ + 50.0811867179, + 2.79134969906 + ], + "libelle_d_acheminement": "WARLENCOURT EAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79134969906, + 50.0811867179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "948b261efce3ae620e40fc70bd022770cd2fc89b", + "fields": { + "code_commune_insee": "62123", + "nom_de_la_commune": "BEUSSENT", + "code_postal": "62170", + "coordonnees_gps": [ + 50.5580041151, + 1.81455798669 + ], + "libelle_d_acheminement": "BEUSSENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81455798669, + 50.5580041151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49f64c4e048b51ae836d03f22394e31b7de0fa1a", + "fields": { + "code_commune_insee": "62879", + "nom_de_la_commune": "WARLUZEL", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2311660847, + 2.46913010596 + ], + "libelle_d_acheminement": "WARLUZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46913010596, + 50.2311660847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc4deeda7218c5f8ab2ad1ee726555243f695e7c", + "fields": { + "code_commune_insee": "62125", + "nom_de_la_commune": "BEUVREQUEN", + "code_postal": "62250", + "coordonnees_gps": [ + 50.7987535793, + 1.67420667033 + ], + "libelle_d_acheminement": "BEUVREQUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67420667033, + 50.7987535793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d17b8a1e55ebaae48d6accf2c6639810719a794b", + "fields": { + "code_commune_insee": "62880", + "nom_de_la_commune": "LE WAST", + "code_postal": "62142", + "coordonnees_gps": [ + 50.750004796, + 1.79828909838 + ], + "libelle_d_acheminement": "LE WAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79828909838, + 50.750004796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae5775df4bcc28127ad6a59b021e4fb3b2252e43", + "fields": { + "code_commune_insee": "62127", + "nom_de_la_commune": "BEZINGHEM", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5986244617, + 1.85180618484 + ], + "libelle_d_acheminement": "BEZINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85180618484, + 50.5986244617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b43b41ddf3a182c2b06603c3a7075a4c06eaade", + "fields": { + "code_commune_insee": "62886", + "nom_de_la_commune": "WICQUINGHEM", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5725871336, + 1.95032069551 + ], + "libelle_d_acheminement": "WICQUINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95032069551, + 50.5725871336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27c4c797af32927d29e7ee6d4462d8f8764261c1", + "fields": { + "code_commune_insee": "62129", + "nom_de_la_commune": "BIEFVILLERS LES BAPAUME", + "code_postal": "62450", + "coordonnees_gps": [ + 50.1181182201, + 2.82212034919 + ], + "libelle_d_acheminement": "BIEFVILLERS LES BAPAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82212034919, + 50.1181182201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c398ac4c6c72b741cddee07a843ecd8fb103e93", + "fields": { + "code_commune_insee": "62887", + "nom_de_la_commune": "WIDEHEM", + "code_postal": "62630", + "coordonnees_gps": [ + 50.5841311365, + 1.65936419487 + ], + "libelle_d_acheminement": "WIDEHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65936419487, + 50.5841311365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a1a8e1cd6e292eb624cb20e7a12961d01380ea2", + "fields": { + "code_commune_insee": "62131", + "nom_de_la_commune": "BIHUCOURT", + "code_postal": "62121", + "coordonnees_gps": [ + 50.1268891083, + 2.80101394028 + ], + "libelle_d_acheminement": "BIHUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80101394028, + 50.1268891083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98d10ace15bf80258e15d193764d3706bba77858", + "fields": { + "code_commune_insee": "62888", + "nom_de_la_commune": "WIERRE AU BOIS", + "code_postal": "62830", + "coordonnees_gps": [ + 50.651199611, + 1.76845641503 + ], + "libelle_d_acheminement": "WIERRE AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76845641503, + 50.651199611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9e0ec5f2aac20005a729701b22477c3e37f5aa6", + "fields": { + "ligne_5": "BLANGERMONT", + "code_commune_insee": "62137", + "libelle_d_acheminement": "BLANGERVAL BLANGERMONT", + "code_postal": "62270", + "nom_de_la_commune": "BLANGERVAL BLANGERMONT", + "coordonnees_gps": [ + 50.3244181723, + 2.22103571725 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22103571725, + 50.3244181723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff7ca5991536d2c394935d4f050be7e3c26799f1", + "fields": { + "code_commune_insee": "62905", + "nom_de_la_commune": "ZUDAUSQUES", + "code_postal": "62500", + "coordonnees_gps": [ + 50.7526605163, + 2.16024730203 + ], + "libelle_d_acheminement": "ZUDAUSQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16024730203, + 50.7526605163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "502d2d0d9420ed0bb2454c648030040d0eea2793", + "fields": { + "code_commune_insee": "62138", + "nom_de_la_commune": "BLANGY SUR TERNOISE", + "code_postal": "62770", + "coordonnees_gps": [ + 50.423805898, + 2.17392910662 + ], + "libelle_d_acheminement": "BLANGY SUR TERNOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17392910662, + 50.423805898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c0376438b79b3211e86892b89405fcffbabe863", + "fields": { + "code_commune_insee": "63006", + "nom_de_la_commune": "ANZAT LE LUGUET", + "code_postal": "63420", + "coordonnees_gps": [ + 45.3306191916, + 3.01194241608 + ], + "libelle_d_acheminement": "ANZAT LE LUGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01194241608, + 45.3306191916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc0cebfb5c51eceece66be77ebcbcead96fe9652", + "fields": { + "code_commune_insee": "62150", + "nom_de_la_commune": "BOISJEAN", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4084556449, + 1.78127372492 + ], + "libelle_d_acheminement": "BOISJEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78127372492, + 50.4084556449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8a3f356ba5d0245032cab14611acf9abd74ccd6", + "fields": { + "code_commune_insee": "63007", + "nom_de_la_commune": "APCHAT", + "code_postal": "63420", + "coordonnees_gps": [ + 45.3738404423, + 3.14813755867 + ], + "libelle_d_acheminement": "APCHAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14813755867, + 45.3738404423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b536dbf0567e40f3f56be116d8def3ac857fe22c", + "fields": { + "ligne_5": "CANTELEUX", + "code_commune_insee": "62154", + "libelle_d_acheminement": "BONNIERES", + "code_postal": "62270", + "nom_de_la_commune": "BONNIERES", + "coordonnees_gps": [ + 50.2370246537, + 2.26837260211 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26837260211, + 50.2370246537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d326d002288bbde66fd2324c34d8773bcaca4df", + "fields": { + "code_commune_insee": "63016", + "nom_de_la_commune": "AUGEROLLES", + "code_postal": "63930", + "coordonnees_gps": [ + 45.7367380515, + 3.63089700637 + ], + "libelle_d_acheminement": "AUGEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63089700637, + 45.7367380515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abdb8adb126f76fda1fc6f95a225e43179f1fcc2", + "fields": { + "code_commune_insee": "62164", + "nom_de_la_commune": "BOURLON", + "code_postal": "62860", + "coordonnees_gps": [ + 50.180525748, + 3.12077414192 + ], + "libelle_d_acheminement": "BOURLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12077414192, + 50.180525748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e7a4d61472f81d81cb01fb1f082de25c10c6ab3", + "fields": { + "ligne_5": "LA COMBELLE", + "code_commune_insee": "63022", + "libelle_d_acheminement": "AUZAT LA COMBELLE", + "code_postal": "63570", + "nom_de_la_commune": "AUZAT LA COMBELLE", + "coordonnees_gps": [ + 45.4508101492, + 3.32589518501 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32589518501, + 45.4508101492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "420dd18137e9655fa7a2ba2c3d787a122ba9bb47", + "fields": { + "code_commune_insee": "62170", + "nom_de_la_commune": "BOUVIGNY BOYEFFLES", + "code_postal": "62172", + "coordonnees_gps": [ + 50.4230685525, + 2.67309987765 + ], + "libelle_d_acheminement": "BOUVIGNY BOYEFFLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67309987765, + 50.4230685525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7455f453bf3a5e5e5c20d5341672aacdcf6b60b", + "fields": { + "code_commune_insee": "63049", + "nom_de_la_commune": "BOUZEL", + "code_postal": "63910", + "coordonnees_gps": [ + 45.7801556099, + 3.31866753421 + ], + "libelle_d_acheminement": "BOUZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31866753421, + 45.7801556099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0262f4190edf213e27af487652d4fd2453c8618", + "fields": { + "code_commune_insee": "62172", + "nom_de_la_commune": "BOYELLES", + "code_postal": "62128", + "coordonnees_gps": [ + 50.1972799281, + 2.82057343929 + ], + "libelle_d_acheminement": "BOYELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82057343929, + 50.1972799281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d89da5117e1d629bb3c6f29d84af22a43755d0ea", + "fields": { + "code_commune_insee": "63050", + "nom_de_la_commune": "BRASSAC LES MINES", + "code_postal": "63570", + "coordonnees_gps": [ + 45.4199156591, + 3.32061008295 + ], + "libelle_d_acheminement": "BRASSAC LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32061008295, + 45.4199156591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9897fa9055899d3e996c8a5a91ee2d09faec7d3", + "fields": { + "code_commune_insee": "62173", + "nom_de_la_commune": "BREBIERES", + "code_postal": "62117", + "coordonnees_gps": [ + 50.3380926792, + 3.0195549694 + ], + "libelle_d_acheminement": "BREBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0195549694, + 50.3380926792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d95efef3143e0faa21fc970881484908f29ce63", + "fields": { + "code_commune_insee": "63051", + "nom_de_la_commune": "BRENAT", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5494693829, + 3.30961453895 + ], + "libelle_d_acheminement": "BRENAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30961453895, + 45.5494693829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a90372ee31e65859090de50a5602667c2dac233", + "fields": { + "code_commune_insee": "62176", + "nom_de_la_commune": "BREXENT ENOCQ", + "code_postal": "62170", + "coordonnees_gps": [ + 50.5075872573, + 1.72093733978 + ], + "libelle_d_acheminement": "BREXENT ENOCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72093733978, + 50.5075872573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27c7fed787cf3eb259a45b762077060784998732", + "fields": { + "code_commune_insee": "63052", + "nom_de_la_commune": "LE BREUIL SUR COUZE", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4671208876, + 3.26675909597 + ], + "libelle_d_acheminement": "LE BREUIL SUR COUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26675909597, + 45.4671208876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b4623f2a0d0213246d6727a3ca7843c344a6b99", + "fields": { + "code_commune_insee": "62180", + "nom_de_la_commune": "BRIAS", + "code_postal": "62130", + "coordonnees_gps": [ + 50.4112336365, + 2.38520158695 + ], + "libelle_d_acheminement": "BRIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38520158695, + 50.4112336365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cb225e6ee5312f198b3cdf6b8b22290b0169864", + "fields": { + "code_commune_insee": "63057", + "nom_de_la_commune": "LE BRUGERON", + "code_postal": "63880", + "coordonnees_gps": [ + 45.7117515141, + 3.74237133965 + ], + "libelle_d_acheminement": "LE BRUGERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74237133965, + 45.7117515141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9391100a3b1c4817eafb69290c788231d9e05e5", + "fields": { + "code_commune_insee": "62182", + "nom_de_la_commune": "BUIRE AU BOIS", + "code_postal": "62390", + "coordonnees_gps": [ + 50.2633672835, + 2.15308709023 + ], + "libelle_d_acheminement": "BUIRE AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15308709023, + 50.2633672835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82bcba5de20f14c1e7be5579319bd876e924eeec", + "fields": { + "code_commune_insee": "63074", + "nom_de_la_commune": "CHALUS", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4646474919, + 3.20803180257 + ], + "libelle_d_acheminement": "CHALUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20803180257, + 45.4646474919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f28ffaa1136cd81a414397bbab37d0dbafd18a7", + "fields": { + "code_commune_insee": "62183", + "nom_de_la_commune": "BUIRE LE SEC", + "code_postal": "62870", + "coordonnees_gps": [ + 50.3932227275, + 1.82311982724 + ], + "libelle_d_acheminement": "BUIRE LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82311982724, + 50.3932227275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94e93250752317b73c1a1a50d9cf06b4c900ce44", + "fields": { + "code_commune_insee": "63075", + "nom_de_la_commune": "CHAMALIERES", + "code_postal": "63400", + "coordonnees_gps": [ + 45.7747966551, + 3.0612681838 + ], + "libelle_d_acheminement": "CHAMALIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0612681838, + 45.7747966551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fea22450da577eea17e84d1babd5236c2fbcbc19", + "fields": { + "code_commune_insee": "62195", + "nom_de_la_commune": "CALONNE SUR LA LYS", + "code_postal": "62350", + "coordonnees_gps": [ + 50.6135521823, + 2.60895962502 + ], + "libelle_d_acheminement": "CALONNE SUR LA LYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60895962502, + 50.6135521823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d828c65a9cf4a2c5686b8ba18081ec1078ebedf8", + "fields": { + "code_commune_insee": "63079", + "nom_de_la_commune": "CHAMPAGNAT LE JEUNE", + "code_postal": "63580", + "coordonnees_gps": [ + 45.4445734596, + 3.41645424575 + ], + "libelle_d_acheminement": "CHAMPAGNAT LE JEUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41645424575, + 45.4445734596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9edbdec64ea1054d66c87b53c4d92eab01207caa", + "fields": { + "code_commune_insee": "62199", + "nom_de_la_commune": "CAMBLAIN L ABBE", + "code_postal": "62690", + "coordonnees_gps": [ + 50.3732152487, + 2.63610604156 + ], + "libelle_d_acheminement": "CAMBLAIN L ABBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63610604156, + 50.3732152487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5696b8a4d6b6a6149f6270f4e39937f7055f8e2", + "fields": { + "code_commune_insee": "63080", + "nom_de_la_commune": "CHAMPEIX", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5840997399, + 3.12859021721 + ], + "libelle_d_acheminement": "CHAMPEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12859021721, + 45.5840997399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "366b44c19444090737b6397b5d65ccb26c3fa0d8", + "fields": { + "code_commune_insee": "62208", + "nom_de_la_commune": "CANETTEMONT", + "code_postal": "62270", + "coordonnees_gps": [ + 50.2798293137, + 2.36334823406 + ], + "libelle_d_acheminement": "CANETTEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36334823406, + 50.2798293137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ccf0406e062b533935bd51cac4c2a496daede51", + "fields": { + "code_commune_insee": "63087", + "nom_de_la_commune": "LA CHAPELLE MARCOUSSE", + "code_postal": "63420", + "coordonnees_gps": [ + 45.4421073659, + 3.08079339129 + ], + "libelle_d_acheminement": "LA CHAPELLE MARCOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08079339129, + 45.4421073659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75ab956636b54718651fb2ff6bd41f926f7ba191", + "fields": { + "code_commune_insee": "62212", + "nom_de_la_commune": "CAPELLE LES HESDIN", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3470946607, + 1.99114146583 + ], + "libelle_d_acheminement": "CAPELLE LES HESDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99114146583, + 50.3470946607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "851855bdb5410c223989a1577e2ba69c285e13e4", + "fields": { + "code_commune_insee": "63091", + "nom_de_la_commune": "CHARBONNIER LES MINES", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4181480729, + 3.28199342923 + ], + "libelle_d_acheminement": "CHARBONNIER LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28199342923, + 45.4181480729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62beb9ee2ed63141b15ea677318f01aa04e7c98a", + "fields": { + "code_commune_insee": "62217", + "nom_de_la_commune": "CAUCHY A LA TOUR", + "code_postal": "62260", + "coordonnees_gps": [ + 50.5047864537, + 2.44974030755 + ], + "libelle_d_acheminement": "CAUCHY A LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44974030755, + 50.5047864537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3e6ef964704583fc77feeb74e15fadcdc13763e", + "fields": { + "code_commune_insee": "63093", + "nom_de_la_commune": "CHARBONNIERES LES VIEILLES", + "code_postal": "63410", + "coordonnees_gps": [ + 45.9916492196, + 3.00764883452 + ], + "libelle_d_acheminement": "CHARBONNIERES LES VIEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00764883452, + 45.9916492196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fed9266f5e912bc708c087b800f5bd4052f0878", + "fields": { + "code_commune_insee": "62219", + "nom_de_la_commune": "CAUMONT", + "code_postal": "62140", + "coordonnees_gps": [ + 50.2933192344, + 2.03127032068 + ], + "libelle_d_acheminement": "CAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03127032068, + 50.2933192344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc2045ca01e617c4cba508422f15d5293d9c5c15", + "fields": { + "code_commune_insee": "63094", + "nom_de_la_commune": "CHARENSAT", + "code_postal": "63640", + "coordonnees_gps": [ + 45.9834200472, + 2.64390606976 + ], + "libelle_d_acheminement": "CHARENSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64390606976, + 45.9834200472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "481d4e803f89a538a31e8fec53a86c0090b0da38", + "fields": { + "code_commune_insee": "62222", + "nom_de_la_commune": "CHERIENNES", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3116108089, + 2.03441974871 + ], + "libelle_d_acheminement": "CHERIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03441974871, + 50.3116108089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4852a36b5bf13733dd10a9c17c4fcc6cbce085a5", + "fields": { + "code_commune_insee": "63095", + "nom_de_la_commune": "CHARNAT", + "code_postal": "63290", + "coordonnees_gps": [ + 45.9449562685, + 3.43494838607 + ], + "libelle_d_acheminement": "CHARNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43494838607, + 45.9449562685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "047079c3134aa4cf4d909c178d86ebe82e07bba7", + "fields": { + "code_commune_insee": "62233", + "nom_de_la_commune": "CONCHIL LE TEMPLE", + "code_postal": "62180", + "coordonnees_gps": [ + 50.3675406641, + 1.6749678298 + ], + "libelle_d_acheminement": "CONCHIL LE TEMPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6749678298, + 50.3675406641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b2596b011f040ee5815996e3cacf8b8e302a522", + "fields": { + "code_commune_insee": "63101", + "nom_de_la_commune": "CHATEAU SUR CHER", + "code_postal": "63330", + "coordonnees_gps": [ + 46.1168680835, + 2.56878532043 + ], + "libelle_d_acheminement": "CHATEAU SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56878532043, + 46.1168680835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dda433369c399e5513dcf6d9c69fba340be8c149", + "fields": { + "code_commune_insee": "62241", + "nom_de_la_commune": "CORMONT", + "code_postal": "62630", + "coordonnees_gps": [ + 50.5639416071, + 1.74295071169 + ], + "libelle_d_acheminement": "CORMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74295071169, + 50.5639416071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e9c14c928906a19d82a3e8c9d51c3e41ac9f0de", + "fields": { + "code_commune_insee": "63104", + "nom_de_la_commune": "LA CHAULME", + "code_postal": "63660", + "coordonnees_gps": [ + 45.4716212556, + 3.95792941378 + ], + "libelle_d_acheminement": "LA CHAULME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95792941378, + 45.4716212556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc0f57e95ad4a973ee8ccb54a9c53b27c354c3ee", + "fields": { + "code_commune_insee": "62245", + "nom_de_la_commune": "COULOMBY", + "code_postal": "62380", + "coordonnees_gps": [ + 50.7093724516, + 2.00012790111 + ], + "libelle_d_acheminement": "COULOMBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00012790111, + 50.7093724516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85599fd2768369967e23e33ec09d7e7a2e6c8fae", + "fields": { + "code_commune_insee": "63113", + "nom_de_la_commune": "CLERMONT FERRAND", + "code_postal": "63100", + "coordonnees_gps": [ + 45.7856492991, + 3.11554542903 + ], + "libelle_d_acheminement": "CLERMONT FERRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11554542903, + 45.7856492991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c28ec04d2dcfe68cc98a88b32e81bf4bd9321ef", + "fields": { + "code_commune_insee": "62248", + "nom_de_la_commune": "COURCELLES LE COMTE", + "code_postal": "62121", + "coordonnees_gps": [ + 50.1574659714, + 2.77662394023 + ], + "libelle_d_acheminement": "COURCELLES LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77662394023, + 50.1574659714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08633f8be6f011e49ba6e8575281cf2d87b690b2", + "fields": { + "code_commune_insee": "63115", + "nom_de_la_commune": "COMBRAILLES", + "code_postal": "63380", + "coordonnees_gps": [ + 45.8408553955, + 2.64157782279 + ], + "libelle_d_acheminement": "COMBRAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64157782279, + 45.8408553955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1445fe772d91537f1076272c2b771ffd94aea8d3", + "fields": { + "code_commune_insee": "62252", + "nom_de_la_commune": "LA COUTURE", + "code_postal": "62136", + "coordonnees_gps": [ + 50.5786372651, + 2.69951640297 + ], + "libelle_d_acheminement": "LA COUTURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69951640297, + 50.5786372651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73fcb43e0a21b7e818673ee0649ec52ddb5e83d9", + "fields": { + "code_commune_insee": "63123", + "nom_de_la_commune": "COURNOLS", + "code_postal": "63450", + "coordonnees_gps": [ + 45.6415170829, + 3.03680111738 + ], + "libelle_d_acheminement": "COURNOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03680111738, + 45.6415170829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dec66e5130b44e807d4363bbfb001659e6667eaa", + "fields": { + "code_commune_insee": "62258", + "nom_de_la_commune": "CROISETTE", + "code_postal": "62130", + "coordonnees_gps": [ + 50.353867612, + 2.26482730869 + ], + "libelle_d_acheminement": "CROISETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26482730869, + 50.353867612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "372148a7b3e3ece2fe160d24a463d549b844e941", + "fields": { + "code_commune_insee": "63130", + "nom_de_la_commune": "LA CROUZILLE", + "code_postal": "63700", + "coordonnees_gps": [ + 46.1718472306, + 2.75158999506 + ], + "libelle_d_acheminement": "LA CROUZILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75158999506, + 46.1718472306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59e56ceae335e5cffb08e800b4f1fc4bb795afb4", + "fields": { + "code_commune_insee": "62263", + "nom_de_la_commune": "DAINVILLE", + "code_postal": "62000", + "coordonnees_gps": [ + 50.2771637475, + 2.71345127608 + ], + "libelle_d_acheminement": "DAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71345127608, + 50.2771637475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95e6b329bed0e1ee0599043e8cf2e4a359209886", + "fields": { + "code_commune_insee": "63132", + "nom_de_la_commune": "CUNLHAT", + "code_postal": "63590", + "coordonnees_gps": [ + 45.6303425286, + 3.56287931079 + ], + "libelle_d_acheminement": "CUNLHAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56287931079, + 45.6303425286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e840bc7ce579249b3314df9a41faa300dfbb6706", + "fields": { + "code_commune_insee": "62274", + "nom_de_la_commune": "DOURGES", + "code_postal": "62119", + "coordonnees_gps": [ + 50.4393889238, + 2.98726838092 + ], + "libelle_d_acheminement": "DOURGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98726838092, + 50.4393889238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d39e93500c50d5b2e1f9359d8111d6b370b9a194", + "fields": { + "code_commune_insee": "63134", + "nom_de_la_commune": "DAUZAT SUR VODABLE", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4713470837, + 3.0825251658 + ], + "libelle_d_acheminement": "DAUZAT SUR VODABLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0825251658, + 45.4713470837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42c20a69b7547271df87292ba2c0767585884324", + "fields": { + "code_commune_insee": "62275", + "nom_de_la_commune": "DOURIEZ", + "code_postal": "62870", + "coordonnees_gps": [ + 50.3384867372, + 1.88223144909 + ], + "libelle_d_acheminement": "DOURIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88223144909, + 50.3384867372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbe99f09a422f23d729e3fab555deec2dbdae428", + "fields": { + "code_commune_insee": "63148", + "nom_de_la_commune": "ENNEZAT", + "code_postal": "63720", + "coordonnees_gps": [ + 45.895678159, + 3.21640094817 + ], + "libelle_d_acheminement": "ENNEZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21640094817, + 45.895678159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "328f89abfd5bbe0e1fb63bd1eb63c290649c463a", + "fields": { + "code_commune_insee": "62279", + "nom_de_la_commune": "DUISANS", + "code_postal": "62161", + "coordonnees_gps": [ + 50.3016242398, + 2.69606455285 + ], + "libelle_d_acheminement": "DUISANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69606455285, + 50.3016242398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e07154183d0489a88945656e307e83bdaf08e9be", + "fields": { + "code_commune_insee": "63153", + "nom_de_la_commune": "ESPINCHAL", + "code_postal": "63850", + "coordonnees_gps": [ + 45.3946444984, + 2.87909484661 + ], + "libelle_d_acheminement": "ESPINCHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87909484661, + 45.3946444984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5d038990e951b9b6db3be60b1014d1f34d9728f", + "fields": { + "code_commune_insee": "62281", + "nom_de_la_commune": "ECHINGHEN", + "code_postal": "62360", + "coordonnees_gps": [ + 50.7013312992, + 1.65483173967 + ], + "libelle_d_acheminement": "ECHINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65483173967, + 50.7013312992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c76fc2ccfe801949bca91903e2cd503b15f0e5d", + "fields": { + "code_commune_insee": "63159", + "nom_de_la_commune": "FERNOEL", + "code_postal": "63620", + "coordonnees_gps": [ + 45.8175774487, + 2.42216277388 + ], + "libelle_d_acheminement": "FERNOEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42216277388, + 45.8175774487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a323833b8957b0b6a3448177530f98152e7c7369", + "fields": { + "code_commune_insee": "62286", + "nom_de_la_commune": "ECQUEDECQUES", + "code_postal": "62190", + "coordonnees_gps": [ + 50.5601376893, + 2.44103713077 + ], + "libelle_d_acheminement": "ECQUEDECQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44103713077, + 50.5601376893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bf1a9c6e548da67b128ceadcf5610b77387fdc5", + "fields": { + "code_commune_insee": "63161", + "nom_de_la_commune": "LA FORIE", + "code_postal": "63600", + "coordonnees_gps": [ + 45.5886957413, + 3.75371206334 + ], + "libelle_d_acheminement": "LA FORIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75371206334, + 45.5886957413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b4b6491b710c79bab4dd09d9cc4d9767dc3a154", + "fields": { + "code_commune_insee": "62309", + "nom_de_la_commune": "ESQUERDES", + "code_postal": "62380", + "coordonnees_gps": [ + 50.7009057679, + 2.17889940044 + ], + "libelle_d_acheminement": "ESQUERDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17889940044, + 50.7009057679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "138f307de9e763ec897d4cd02f2b082ea881284c", + "fields": { + "code_commune_insee": "63164", + "nom_de_la_commune": "GERZAT", + "code_postal": "63360", + "coordonnees_gps": [ + 45.8279149927, + 3.15493420222 + ], + "libelle_d_acheminement": "GERZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15493420222, + 45.8279149927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "710971e41a44af0724c2207fa79776e63d6f1fe3", + "fields": { + "code_commune_insee": "62310", + "nom_de_la_commune": "ESSARS", + "code_postal": "62400", + "coordonnees_gps": [ + 50.5483122969, + 2.66191048635 + ], + "libelle_d_acheminement": "ESSARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66191048635, + 50.5483122969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eec0092db1f0f7ed51d93b4c0c31992bec3df03", + "fields": { + "code_commune_insee": "63173", + "nom_de_la_commune": "GRANDRIF", + "code_postal": "63600", + "coordonnees_gps": [ + 45.5197967423, + 3.83458423534 + ], + "libelle_d_acheminement": "GRANDRIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83458423534, + 45.5197967423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b24392c1cf68a54021546a7d1b07ee7292648e76", + "fields": { + "code_commune_insee": "62320", + "nom_de_la_commune": "ETRUN", + "code_postal": "62161", + "coordonnees_gps": [ + 50.3171481839, + 2.68183149447 + ], + "libelle_d_acheminement": "ETRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68183149447, + 50.3171481839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc6d51d6a08f949ed6f687aab41d785f575a601c", + "fields": { + "code_commune_insee": "63179", + "nom_de_la_commune": "JOB", + "code_postal": "63990", + "coordonnees_gps": [ + 45.6284431431, + 3.7630429463 + ], + "libelle_d_acheminement": "JOB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7630429463, + 45.6284431431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "302b0ae971879c3275445f8bbe1bd7bda7af5bb5", + "fields": { + "code_commune_insee": "62324", + "nom_de_la_commune": "FARBUS", + "code_postal": "62580", + "coordonnees_gps": [ + 50.3602196651, + 2.82681103336 + ], + "libelle_d_acheminement": "FARBUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82681103336, + 50.3602196651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1552a889ac580c24cc0f760c7a9019b6d2927c45", + "fields": { + "code_commune_insee": "63193", + "nom_de_la_commune": "LEMPDES", + "code_postal": "63370", + "coordonnees_gps": [ + 45.7724761738, + 3.19295725075 + ], + "libelle_d_acheminement": "LEMPDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19295725075, + 45.7724761738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc1a7022816847663b469f8daa72ffc504ddc4b8", + "fields": { + "code_commune_insee": "62326", + "nom_de_la_commune": "FAVREUIL", + "code_postal": "62450", + "coordonnees_gps": [ + 50.1256507438, + 2.85908637048 + ], + "libelle_d_acheminement": "FAVREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85908637048, + 50.1256507438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a63dbedd6ae87f0fbb70b5886587ed7e59a4c26", + "fields": { + "code_commune_insee": "63194", + "nom_de_la_commune": "LEMPTY", + "code_postal": "63190", + "coordonnees_gps": [ + 45.8291540814, + 3.32957794666 + ], + "libelle_d_acheminement": "LEMPTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32957794666, + 45.8291540814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "025e6c2ae120c1abf521303088a4dfc7b989195a", + "fields": { + "code_commune_insee": "62327", + "nom_de_la_commune": "FEBVIN PALFART", + "code_postal": "62960", + "coordonnees_gps": [ + 50.5333989825, + 2.30304274848 + ], + "libelle_d_acheminement": "FEBVIN PALFART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30304274848, + 50.5333989825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88ef7f38fc896dbfe905f73b93c3d55a87199448", + "fields": { + "code_commune_insee": "63200", + "nom_de_la_commune": "LUSSAT", + "code_postal": "63360", + "coordonnees_gps": [ + 45.8379405832, + 3.22624771125 + ], + "libelle_d_acheminement": "LUSSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22624771125, + 45.8379405832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "785e0d4e430a31b04cfcc75afa0acb5d5e0ef4ae", + "fields": { + "code_commune_insee": "62329", + "nom_de_la_commune": "FERQUES", + "code_postal": "62250", + "coordonnees_gps": [ + 50.8288565205, + 1.7680736791 + ], + "libelle_d_acheminement": "FERQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7680736791, + 50.8288565205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0529a27b18bb0242fa9faff7606b0b01ea57ade6", + "fields": { + "code_commune_insee": "63212", + "nom_de_la_commune": "MARSAT", + "code_postal": "63200", + "coordonnees_gps": [ + 45.872900243, + 3.08321989305 + ], + "libelle_d_acheminement": "MARSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08321989305, + 45.872900243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b73fd003d05ed0344663ef7b18482037ebe1009", + "fields": { + "code_commune_insee": "62332", + "nom_de_la_commune": "FICHEUX", + "code_postal": "62173", + "coordonnees_gps": [ + 50.2258571465, + 2.74623560668 + ], + "libelle_d_acheminement": "FICHEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74623560668, + 50.2258571465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26bee81e01c3de8b5830c6778a4a74557a8f3fce", + "fields": { + "code_commune_insee": "63219", + "nom_de_la_commune": "MAZAYE", + "code_postal": "63230", + "coordonnees_gps": [ + 45.7848850923, + 2.87412730178 + ], + "libelle_d_acheminement": "MAZAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87412730178, + 45.7848850923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "830f8aa40e64e9ccfe2725dd93c4d433563dee1d", + "fields": { + "code_commune_insee": "62333", + "nom_de_la_commune": "FIEFS", + "code_postal": "62134", + "coordonnees_gps": [ + 50.4999837138, + 2.32108014368 + ], + "libelle_d_acheminement": "FIEFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32108014368, + 50.4999837138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec5bd03ce5d4e4234dd5b7a745e31794a1162073", + "fields": { + "code_commune_insee": "63224", + "nom_de_la_commune": "MENETROL", + "code_postal": "63200", + "coordonnees_gps": [ + 45.8614463644, + 3.13296365852 + ], + "libelle_d_acheminement": "MENETROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13296365852, + 45.8614463644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "995ff9931cae489cfef66caeb586b742cb82c6e7", + "fields": { + "code_commune_insee": "62336", + "nom_de_la_commune": "FLECHIN", + "code_postal": "62960", + "coordonnees_gps": [ + 50.5587478522, + 2.28119677571 + ], + "libelle_d_acheminement": "FLECHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28119677571, + 50.5587478522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33db8cf00a561164e401a1126a8aa016e2156a63", + "fields": { + "code_commune_insee": "63229", + "nom_de_la_commune": "MOISSAT", + "code_postal": "63190", + "coordonnees_gps": [ + 45.7783462842, + 3.35256262892 + ], + "libelle_d_acheminement": "MOISSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35256262892, + 45.7783462842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6b320f4f7d0b88a53562c4c7620a7401d0f59d9", + "fields": { + "code_commune_insee": "62339", + "nom_de_la_commune": "FLEURY", + "code_postal": "62134", + "coordonnees_gps": [ + 50.4235609474, + 2.25298412174 + ], + "libelle_d_acheminement": "FLEURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25298412174, + 50.4235609474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de7686ca616ae3d5066670f24828b139ee0747a0", + "fields": { + "code_commune_insee": "63230", + "nom_de_la_commune": "LE MONESTIER", + "code_postal": "63890", + "coordonnees_gps": [ + 45.5577541247, + 3.65211264367 + ], + "libelle_d_acheminement": "LE MONESTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65211264367, + 45.5577541247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9b8c82187e204825a0e6eb443492cba855ebbaf", + "fields": { + "code_commune_insee": "62342", + "nom_de_la_commune": "FONTAINE LES BOULANS", + "code_postal": "62134", + "coordonnees_gps": [ + 50.4986573015, + 2.28398463259 + ], + "libelle_d_acheminement": "FONTAINE LES BOULANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28398463259, + 50.4986573015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b84d042e86a813f335f89d349b70966bcdb826eb", + "fields": { + "code_commune_insee": "63232", + "nom_de_la_commune": "MONS", + "code_postal": "63310", + "coordonnees_gps": [ + 46.0004480585, + 3.42241354762 + ], + "libelle_d_acheminement": "MONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42241354762, + 46.0004480585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92d2e29b4fcf25ed1fa36131448c0a637b9289d3", + "fields": { + "code_commune_insee": "62356", + "nom_de_la_commune": "FRESNICOURT LE DOLMEN", + "code_postal": "62150", + "coordonnees_gps": [ + 50.4248203734, + 2.60417768475 + ], + "libelle_d_acheminement": "FRESNICOURT LE DOLMEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60417768475, + 50.4248203734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20188a4a6eeb905934d32de109e056e77cf69ed8", + "fields": { + "code_commune_insee": "63235", + "nom_de_la_commune": "MONTCEL", + "code_postal": "63460", + "coordonnees_gps": [ + 46.0145706418, + 3.06413214387 + ], + "libelle_d_acheminement": "MONTCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06413214387, + 46.0145706418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "059e20aa2b8be447e3367f55b13393d5ca14a5b2", + "fields": { + "code_commune_insee": "62365", + "nom_de_la_commune": "GALAMETZ", + "code_postal": "62770", + "coordonnees_gps": [ + 50.3258571911, + 2.13007564683 + ], + "libelle_d_acheminement": "GALAMETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13007564683, + 50.3258571911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dde13c67604af6faae88b4cdb625313b5be10f2f", + "fields": { + "code_commune_insee": "63242", + "nom_de_la_commune": "MORIAT", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4048477206, + 3.25943853538 + ], + "libelle_d_acheminement": "MORIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25943853538, + 45.4048477206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66cd1f7728b9f21aad9ad20996e114f96b2c45fe", + "fields": { + "code_commune_insee": "62366", + "nom_de_la_commune": "GAUCHIN LEGAL", + "code_postal": "62150", + "coordonnees_gps": [ + 50.408974638, + 2.57827135438 + ], + "libelle_d_acheminement": "GAUCHIN LEGAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57827135438, + 50.408974638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2c86d22fb2fb58918ca2744c560ff04b7d369b1", + "fields": { + "ligne_5": "LA MOUTADE", + "code_commune_insee": "63244", + "libelle_d_acheminement": "CHAMBARON SUR MORGE", + "code_postal": "63200", + "nom_de_la_commune": "CHAMBARON SUR MORGE", + "coordonnees_gps": [ + 45.9678093732, + 3.15096276782 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15096276782, + 45.9678093732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2edf8cd95d34994322cd39710ad0a5d4ca3174f5", + "fields": { + "code_commune_insee": "62367", + "nom_de_la_commune": "GAUCHIN VERLOINGT", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3896471445, + 2.31551845708 + ], + "libelle_d_acheminement": "GAUCHIN VERLOINGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31551845708, + 50.3896471445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "540e2a0e75d842ff7987ec0c75d7a1cef3920f9f", + "fields": { + "code_commune_insee": "63245", + "nom_de_la_commune": "MOZAC", + "code_postal": "63200", + "coordonnees_gps": [ + 45.8922783904, + 3.08484211748 + ], + "libelle_d_acheminement": "MOZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08484211748, + 45.8922783904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b46272affd0fa78df07b1588812c810025ada54", + "fields": { + "code_commune_insee": "62372", + "nom_de_la_commune": "GIVENCHY LE NOBLE", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2999577291, + 2.4906551045 + ], + "libelle_d_acheminement": "GIVENCHY LE NOBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4906551045, + 50.2999577291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eea0076324dabf38ce82781cccf6d4412841a6cc", + "fields": { + "code_commune_insee": "63249", + "nom_de_la_commune": "NERONDE SUR DORE", + "code_postal": "63120", + "coordonnees_gps": [ + 45.7989836343, + 3.5070472328 + ], + "libelle_d_acheminement": "NERONDE SUR DORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5070472328, + 45.7989836343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8aa9de7dc0b8db6409ea44d21f3f3d57a9b2ae9", + "fields": { + "code_commune_insee": "62376", + "nom_de_la_commune": "GONNEHEM", + "code_postal": "62920", + "coordonnees_gps": [ + 50.5645138274, + 2.56749470477 + ], + "libelle_d_acheminement": "GONNEHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56749470477, + 50.5645138274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21351dc9e6956c0c4697dd951e36be42312a6237", + "fields": { + "code_commune_insee": "63251", + "nom_de_la_commune": "NEUF EGLISE", + "code_postal": "63560", + "coordonnees_gps": [ + 46.0981305257, + 2.86846423252 + ], + "libelle_d_acheminement": "NEUF EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86846423252, + 46.0981305257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47b7f828107a15db5a5cb3d794ed6520833ba9b7", + "fields": { + "code_commune_insee": "62380", + "nom_de_la_commune": "GOUY SERVINS", + "code_postal": "62530", + "coordonnees_gps": [ + 50.4026129183, + 2.65579808326 + ], + "libelle_d_acheminement": "GOUY SERVINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65579808326, + 50.4026129183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b8bb63d14a54bc2b5f5a50c03264004868bb4f6", + "fields": { + "code_commune_insee": "63257", + "nom_de_la_commune": "OLBY", + "code_postal": "63210", + "coordonnees_gps": [ + 45.745518501, + 2.87011507295 + ], + "libelle_d_acheminement": "OLBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87011507295, + 45.745518501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "131fc28f76b5d50ebfe0eb68097a682ef6bd95e5", + "fields": { + "code_commune_insee": "62387", + "nom_de_la_commune": "GREVILLERS", + "code_postal": "62450", + "coordonnees_gps": [ + 50.1018030363, + 2.7985377862 + ], + "libelle_d_acheminement": "GREVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7985377862, + 50.1018030363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaf06717916e97334c79df4cc7342dbf4b433010", + "fields": { + "code_commune_insee": "63265", + "nom_de_la_commune": "ORLEAT", + "code_postal": "63190", + "coordonnees_gps": [ + 45.8596417494, + 3.43869853549 + ], + "libelle_d_acheminement": "ORLEAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43869853549, + 45.8596417494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "944099390f815261cc62f0f530cc177c3b3a354d", + "fields": { + "code_commune_insee": "62389", + "nom_de_la_commune": "GRINCOURT LES PAS", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1780241408, + 2.48803738534 + ], + "libelle_d_acheminement": "GRINCOURT LES PAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48803738534, + 50.1780241408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2436eee39f0c63823541542ebe7d15aa1035e616", + "fields": { + "code_commune_insee": "63275", + "nom_de_la_commune": "PERRIER", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5452957796, + 3.19913132431 + ], + "libelle_d_acheminement": "PERRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19913132431, + 45.5452957796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22f1f496bb22f00a4140945729620b163b1eca19", + "fields": { + "code_commune_insee": "62392", + "nom_de_la_commune": "GUEMAPPE", + "code_postal": "62128", + "coordonnees_gps": [ + 50.2507335159, + 2.89301877431 + ], + "libelle_d_acheminement": "GUEMAPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89301877431, + 50.2507335159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "398b7c3096c55fa98fdf76965d8d409352d8b590", + "fields": { + "code_commune_insee": "63281", + "nom_de_la_commune": "PIONSAT", + "code_postal": "63330", + "coordonnees_gps": [ + 46.1199954597, + 2.68534957248 + ], + "libelle_d_acheminement": "PIONSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68534957248, + 46.1199954597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddd59aa0fcd0e585fc03617e1f29d693e586990f", + "fields": { + "code_commune_insee": "62401", + "nom_de_la_commune": "HAISNES", + "code_postal": "62138", + "coordonnees_gps": [ + 50.500965786, + 2.79702254759 + ], + "libelle_d_acheminement": "HAISNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79702254759, + 50.500965786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c9dfb1bba876ac267bcf5dbcc5f13e4af1cb983", + "fields": { + "code_commune_insee": "63285", + "nom_de_la_commune": "PONTGIBAUD", + "code_postal": "63230", + "coordonnees_gps": [ + 45.8268408954, + 2.85360398183 + ], + "libelle_d_acheminement": "PONTGIBAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85360398183, + 45.8268408954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c85d074aa0889129731c7464f3d02d78ebde5e45", + "fields": { + "code_commune_insee": "62407", + "nom_de_la_commune": "HAM EN ARTOIS", + "code_postal": "62190", + "coordonnees_gps": [ + 50.5916560768, + 2.4526238091 + ], + "libelle_d_acheminement": "HAM EN ARTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4526238091, + 50.5916560768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2c85d90a5de7ce2df1ef53fbbd04e93aa0df167", + "fields": { + "code_commune_insee": "63303", + "nom_de_la_commune": "ROCHE CHARLES LA MAYRAND", + "code_postal": "63420", + "coordonnees_gps": [ + 45.447450625, + 3.02047016292 + ], + "libelle_d_acheminement": "ROCHE CHARLES LA MAYRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02047016292, + 45.447450625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc38349064270a6a0609c77e73b9f0c2cce41df6", + "fields": { + "code_commune_insee": "62409", + "nom_de_la_commune": "HANNESCAMPS", + "code_postal": "62111", + "coordonnees_gps": [ + 50.1615495622, + 2.64192588392 + ], + "libelle_d_acheminement": "HANNESCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64192588392, + 50.1615495622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bef19259c96d13eeb358d3628f584707557c9cc", + "fields": { + "code_commune_insee": "63311", + "nom_de_la_commune": "ST AGOULIN", + "code_postal": "63260", + "coordonnees_gps": [ + 46.0402856832, + 3.1292028282 + ], + "libelle_d_acheminement": "ST AGOULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1292028282, + 46.0402856832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb3df8f30e6bdfb59da923821e2f115310263a32", + "fields": { + "code_commune_insee": "62410", + "nom_de_la_commune": "HAPLINCOURT", + "code_postal": "62124", + "coordonnees_gps": [ + 50.0929484431, + 2.93693106881 + ], + "libelle_d_acheminement": "HAPLINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93693106881, + 50.0929484431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cdf919782d22c5cf87b069378840b83db4164e8", + "fields": { + "code_commune_insee": "63334", + "nom_de_la_commune": "ST DIER D AUVERGNE", + "code_postal": "63520", + "coordonnees_gps": [ + 45.6701289344, + 3.48253379649 + ], + "libelle_d_acheminement": "ST DIER D AUVERGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48253379649, + 45.6701289344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ede606482bf056f2c98ed9e1441dc9155129b89f", + "fields": { + "code_commune_insee": "62414", + "nom_de_la_commune": "HAUCOURT", + "code_postal": "62156", + "coordonnees_gps": [ + 50.2366546486, + 2.96966672137 + ], + "libelle_d_acheminement": "HAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96966672137, + 50.2366546486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52b1debc1633b90ee784d7fe4e1e279c54e6f161", + "fields": { + "code_commune_insee": "63336", + "nom_de_la_commune": "ST DONAT", + "code_postal": "63680", + "coordonnees_gps": [ + 45.4628524127, + 2.70421193548 + ], + "libelle_d_acheminement": "ST DONAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70421193548, + 45.4628524127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f27e0f7912890e8f62fdf5af6e2bac5e10ac44af", + "fields": { + "code_commune_insee": "62429", + "nom_de_la_commune": "HENNEVEUX", + "code_postal": "62142", + "coordonnees_gps": [ + 50.7258740136, + 1.84583997521 + ], + "libelle_d_acheminement": "HENNEVEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84583997521, + 50.7258740136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5f2116aa4be4d6c8d64d5f0170b1480aba3010c", + "fields": { + "code_commune_insee": "63337", + "nom_de_la_commune": "ST ELOY LA GLACIERE", + "code_postal": "63890", + "coordonnees_gps": [ + 45.5636981637, + 3.56724864306 + ], + "libelle_d_acheminement": "ST ELOY LA GLACIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56724864306, + 45.5636981637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "753cab5e9d2a5e11227e8e97036f08dcb912b74b", + "fields": { + "code_commune_insee": "62436", + "nom_de_la_commune": "HERLIN LE SEC", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3533382181, + 2.33277640011 + ], + "libelle_d_acheminement": "HERLIN LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33277640011, + 50.3533382181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64f0ac16dd15d0ca421861f66729ba849c7e8fb9", + "fields": { + "code_commune_insee": "63341", + "nom_de_la_commune": "ST FERREOL DES COTES", + "code_postal": "63600", + "coordonnees_gps": [ + 45.536074649, + 3.69830266756 + ], + "libelle_d_acheminement": "ST FERREOL DES COTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69830266756, + 45.536074649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b19a19cfeff6f15423a50c01613ee5e2c5364e15", + "fields": { + "code_commune_insee": "62441", + "nom_de_la_commune": "HERMIN", + "code_postal": "62150", + "coordonnees_gps": [ + 50.4135492599, + 2.55237244713 + ], + "libelle_d_acheminement": "HERMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55237244713, + 50.4135492599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1423f8185840b8e4f285b21c7aae12ed7aa4f7ae", + "fields": { + "code_commune_insee": "63352", + "nom_de_la_commune": "ST GERMAIN LEMBRON", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4533133864, + 3.24296692377 + ], + "libelle_d_acheminement": "ST GERMAIN LEMBRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24296692377, + 45.4533133864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adf16efb12e22cde31423a1df399868809d8f2ed", + "fields": { + "code_commune_insee": "62445", + "nom_de_la_commune": "HESDIGNEUL LES BETHUNE", + "code_postal": "62196", + "coordonnees_gps": [ + 50.4965750907, + 2.5966608131 + ], + "libelle_d_acheminement": "HESDIGNEUL LES BETHUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5966608131, + 50.4965750907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8f195d4f437d3740056b9d262687bd5592cdf50", + "fields": { + "code_commune_insee": "63358", + "nom_de_la_commune": "ST HILAIRE LA CROIX", + "code_postal": "63440", + "coordonnees_gps": [ + 46.0395388751, + 3.04481120336 + ], + "libelle_d_acheminement": "ST HILAIRE LA CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04481120336, + 46.0395388751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2449556ef3c0ce5eef305fc3792c3f87ade461ad", + "fields": { + "code_commune_insee": "62446", + "nom_de_la_commune": "HESDIGNEUL LES BOULOGNE", + "code_postal": "62360", + "coordonnees_gps": [ + 50.6523596946, + 1.67768618773 + ], + "libelle_d_acheminement": "HESDIGNEUL LES BOULOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67768618773, + 50.6523596946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb8304c08fd0543f5b24982e83f84f444c86cceb", + "fields": { + "code_commune_insee": "63359", + "nom_de_la_commune": "ST HILAIRE LES MONGES", + "code_postal": "63380", + "coordonnees_gps": [ + 45.8079835138, + 2.66518845246 + ], + "libelle_d_acheminement": "ST HILAIRE LES MONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66518845246, + 45.8079835138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acacf0e675d6860d29cfa2953e923dbf7dd4c9cd", + "fields": { + "code_commune_insee": "62460", + "nom_de_la_commune": "HUBERSENT", + "code_postal": "62630", + "coordonnees_gps": [ + 50.5830281628, + 1.73838024518 + ], + "libelle_d_acheminement": "HUBERSENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73838024518, + 50.5830281628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fbb197ffcd13e22f9e0920decf9941ee9a8b51e", + "fields": { + "code_commune_insee": "63368", + "nom_de_la_commune": "ST JULIEN DE COPPEL", + "code_postal": "63160", + "coordonnees_gps": [ + 45.6901407838, + 3.31080229183 + ], + "libelle_d_acheminement": "ST JULIEN DE COPPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31080229183, + 45.6901407838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "799272413efd00d187543a006590b0163995a102", + "fields": { + "code_commune_insee": "62463", + "nom_de_la_commune": "HUCQUELIERS", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5684694236, + 1.91564949795 + ], + "libelle_d_acheminement": "HUCQUELIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91564949795, + 50.5684694236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7187dc97302fa6232926dc7956599146b7fec02", + "fields": { + "code_commune_insee": "63369", + "nom_de_la_commune": "ST JULIEN LA GENESTE", + "code_postal": "63390", + "coordonnees_gps": [ + 46.0492070067, + 2.7408717504 + ], + "libelle_d_acheminement": "ST JULIEN LA GENESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7408717504, + 46.0492070067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e50393afb0f9455ad35784c321d83d84841def0", + "fields": { + "code_commune_insee": "62464", + "nom_de_la_commune": "HULLUCH", + "code_postal": "62410", + "coordonnees_gps": [ + 50.4843039018, + 2.81123592957 + ], + "libelle_d_acheminement": "HULLUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81123592957, + 50.4843039018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60b64dac97364226bc680856e94183e536cacc16", + "fields": { + "code_commune_insee": "63372", + "nom_de_la_commune": "ST LAURE", + "code_postal": "63350", + "coordonnees_gps": [ + 45.8981408483, + 3.29305031526 + ], + "libelle_d_acheminement": "ST LAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29305031526, + 45.8981408483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c69aa33b93ac21bd00ddd9556a7d479f7f0a27a", + "fields": { + "code_commune_insee": "62467", + "nom_de_la_commune": "HUMEROEUILLE", + "code_postal": "62130", + "coordonnees_gps": [ + 50.4085299581, + 2.20983576549 + ], + "libelle_d_acheminement": "HUMEROEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20983576549, + 50.4085299581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e29a7e80306c3de2d6184860ac185cd0c1d9c8dd", + "fields": { + "code_commune_insee": "63378", + "nom_de_la_commune": "ST MAURICE", + "code_postal": "63270", + "coordonnees_gps": [ + 45.6705565807, + 3.23800296875 + ], + "libelle_d_acheminement": "ST MAURICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23800296875, + 45.6705565807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "977034d7fc560f9cf260e54e54bbed525da215e9", + "fields": { + "code_commune_insee": "62468", + "nom_de_la_commune": "HUMIERES", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3848586497, + 2.20826918939 + ], + "libelle_d_acheminement": "HUMIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20826918939, + 50.3848586497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38cbce3ce26ae353a5db42d2b691d69756e822cb", + "fields": { + "code_commune_insee": "63380", + "nom_de_la_commune": "ST NECTAIRE", + "code_postal": "63710", + "coordonnees_gps": [ + 45.5919139674, + 2.99779544156 + ], + "libelle_d_acheminement": "ST NECTAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99779544156, + 45.5919139674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c044ac658939a401dea3e8a9fd08857d32a6ab1d", + "fields": { + "code_commune_insee": "62470", + "nom_de_la_commune": "INCOURT", + "code_postal": "62770", + "coordonnees_gps": [ + 50.3873539733, + 2.15038878907 + ], + "libelle_d_acheminement": "INCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15038878907, + 50.3873539733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0e0dc4748b22c5f915583b3a6a7e1fd1e537800", + "fields": { + "code_commune_insee": "63382", + "nom_de_la_commune": "ST PARDOUX", + "code_postal": "63440", + "coordonnees_gps": [ + 46.0543225356, + 3.00502990654 + ], + "libelle_d_acheminement": "ST PARDOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00502990654, + 46.0543225356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81c8b4546f1d1d23477eca50e0ff08d180a7a340", + "fields": { + "code_commune_insee": "62473", + "nom_de_la_commune": "ISBERGUES", + "code_postal": "62330", + "coordonnees_gps": [ + 50.6163010723, + 2.45566347831 + ], + "libelle_d_acheminement": "ISBERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45566347831, + 50.6163010723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c966dbd7c70a33119012e67dc47421cbddd52f4", + "fields": { + "code_commune_insee": "63383", + "nom_de_la_commune": "ST PIERRE COLAMINE", + "code_postal": "63610", + "coordonnees_gps": [ + 45.5143028753, + 2.97474204258 + ], + "libelle_d_acheminement": "ST PIERRE COLAMINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97474204258, + 45.5143028753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97036b11f6685fc334cc610a0c184d1522399193", + "fields": { + "ligne_5": "MOLINGHEM", + "code_commune_insee": "62473", + "libelle_d_acheminement": "ISBERGUES", + "code_postal": "62330", + "nom_de_la_commune": "ISBERGUES", + "coordonnees_gps": [ + 50.6163010723, + 2.45566347831 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45566347831, + 50.6163010723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2acaa0e1abaabe5923b513e9b8bf3da8473fbd2f", + "fields": { + "code_commune_insee": "63393", + "nom_de_la_commune": "ST REMY SUR DUROLLE", + "code_postal": "63550", + "coordonnees_gps": [ + 45.8957828526, + 3.58458656193 + ], + "libelle_d_acheminement": "ST REMY SUR DUROLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58458656193, + 45.8957828526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3b5e12844ce598f5aa3f5b2af8dacbb02ebff6c", + "fields": { + "code_commune_insee": "62474", + "nom_de_la_commune": "ISQUES", + "code_postal": "62360", + "coordonnees_gps": [ + 50.6822962991, + 1.65634356393 + ], + "libelle_d_acheminement": "ISQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65634356393, + 50.6822962991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66d1206fab7a8af9390610fc45c30d3db852ff1f", + "fields": { + "code_commune_insee": "63395", + "nom_de_la_commune": "ST SANDOUX", + "code_postal": "63450", + "coordonnees_gps": [ + 45.6383512241, + 3.1083290687 + ], + "libelle_d_acheminement": "ST SANDOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1083290687, + 45.6383512241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af11c05a5f2c5261ed7c63c019816651cad6d9af", + "fields": { + "code_commune_insee": "62476", + "nom_de_la_commune": "IZEL LES EQUERCHIN", + "code_postal": "62490", + "coordonnees_gps": [ + 50.362470832, + 2.94589813108 + ], + "libelle_d_acheminement": "IZEL LES EQUERCHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94589813108, + 50.362470832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f16742f1ca5168769f655b29712a00d5dbe7f60", + "fields": { + "code_commune_insee": "63397", + "nom_de_la_commune": "ST SAUVES D AUVERGNE", + "code_postal": "63950", + "coordonnees_gps": [ + 45.6115653546, + 2.69301587098 + ], + "libelle_d_acheminement": "ST SAUVES D AUVERGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69301587098, + 45.6115653546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "797c631384e25e7cece89a1b3c4c9f688eff0d47", + "fields": { + "code_commune_insee": "62477", + "nom_de_la_commune": "IZEL LES HAMEAU", + "code_postal": "62690", + "coordonnees_gps": [ + 50.3147014081, + 2.53156899896 + ], + "libelle_d_acheminement": "IZEL LES HAMEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53156899896, + 50.3147014081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4793db3113df49cdfe41e015be6a35d740cbb3d", + "fields": { + "code_commune_insee": "63398", + "nom_de_la_commune": "ST SAUVEUR LA SAGNE", + "code_postal": "63220", + "coordonnees_gps": [ + 45.3949784675, + 3.66352383653 + ], + "libelle_d_acheminement": "ST SAUVEUR LA SAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66352383653, + 45.3949784675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d18c407d360c907c5eb6223610273c1fb5d4de26", + "fields": { + "code_commune_insee": "62478", + "nom_de_la_commune": "JOURNY", + "code_postal": "62850", + "coordonnees_gps": [ + 50.7533388277, + 2.0030860324 + ], + "libelle_d_acheminement": "JOURNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0030860324, + 50.7533388277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c2b952c01510a178e59d682d09a30f59519a924", + "fields": { + "code_commune_insee": "63406", + "nom_de_la_commune": "SARDON", + "code_postal": "63260", + "coordonnees_gps": [ + 45.9633782182, + 3.22255151665 + ], + "libelle_d_acheminement": "SARDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22255151665, + 45.9633782182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "124b7d4ca948aca91cdde1692c1163ee5b908a8c", + "fields": { + "code_commune_insee": "62480", + "nom_de_la_commune": "LABOURSE", + "code_postal": "62113", + "coordonnees_gps": [ + 50.4933712663, + 2.68345429185 + ], + "libelle_d_acheminement": "LABOURSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68345429185, + 50.4933712663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b307dc0c76acae076b0af9d0a483c5bac3c1fa41", + "fields": { + "code_commune_insee": "63408", + "nom_de_la_commune": "SAURET BESSERVE", + "code_postal": "63390", + "coordonnees_gps": [ + 45.9894794334, + 2.80323189341 + ], + "libelle_d_acheminement": "SAURET BESSERVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80323189341, + 45.9894794334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ceaf494e4c9bce03d0325972d269d40f9a7d889", + "fields": { + "code_commune_insee": "62484", + "nom_de_la_commune": "LAGNICOURT MARCEL", + "code_postal": "62159", + "coordonnees_gps": [ + 50.1560504506, + 2.95664780211 + ], + "libelle_d_acheminement": "LAGNICOURT MARCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95664780211, + 50.1560504506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90c81034063e9dc7d705154a9b052ff8cedd3dfc", + "fields": { + "code_commune_insee": "63412", + "nom_de_la_commune": "SAUVESSANGES", + "code_postal": "63840", + "coordonnees_gps": [ + 45.3925967575, + 3.86535045633 + ], + "libelle_d_acheminement": "SAUVESSANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86535045633, + 45.3925967575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cdb18004c84ded258a6bab00183843ac1795697", + "fields": { + "code_commune_insee": "62496", + "nom_de_la_commune": "LEFAUX", + "code_postal": "62630", + "coordonnees_gps": [ + 50.5462607365, + 1.65372158326 + ], + "libelle_d_acheminement": "LEFAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65372158326, + 50.5462607365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3f4d70fdfa7052eb9c3b90a97facd5d46fe1be2", + "fields": { + "code_commune_insee": "63413", + "nom_de_la_commune": "LA SAUVETAT", + "code_postal": "63730", + "coordonnees_gps": [ + 45.6424514679, + 3.16483008201 + ], + "libelle_d_acheminement": "LA SAUVETAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16483008201, + 45.6424514679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f948f59be768db41fdbe6e2be8db37158840bfc8", + "fields": { + "code_commune_insee": "62502", + "nom_de_la_commune": "LESTREM", + "code_postal": "62136", + "coordonnees_gps": [ + 50.6119032822, + 2.6781346301 + ], + "libelle_d_acheminement": "LESTREM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6781346301, + 50.6119032822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cddc9dc5a06097442427518a8c4a71fed50beb1e", + "fields": { + "code_commune_insee": "63417", + "nom_de_la_commune": "SAYAT", + "code_postal": "63530", + "coordonnees_gps": [ + 45.8388005016, + 3.03448182973 + ], + "libelle_d_acheminement": "SAYAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03448182973, + 45.8388005016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ed689c5f8620bb1321e910fb97ec35de10875ad", + "fields": { + "code_commune_insee": "62503", + "nom_de_la_commune": "LEUBRINGHEN", + "code_postal": "62250", + "coordonnees_gps": [ + 50.853723675, + 1.73268337788 + ], + "libelle_d_acheminement": "LEUBRINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73268337788, + 50.853723675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69c9bda297c7fdcc924b0d6c54eaa59c39d11a37", + "fields": { + "code_commune_insee": "63419", + "nom_de_la_commune": "SERVANT", + "code_postal": "63560", + "coordonnees_gps": [ + 46.1383512026, + 2.93216785544 + ], + "libelle_d_acheminement": "SERVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93216785544, + 46.1383512026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abac1aefa35f3ceac378505bbbb269eaf9ffe744", + "fields": { + "code_commune_insee": "62505", + "nom_de_la_commune": "LEULINGHEN BERNES", + "code_postal": "62250", + "coordonnees_gps": [ + 50.8371171137, + 1.71313037263 + ], + "libelle_d_acheminement": "LEULINGHEN BERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71313037263, + 50.8371171137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0f404cc1c3cc835864de9d87d5c4b04cdaf473d", + "fields": { + "code_commune_insee": "63423", + "nom_de_la_commune": "SUGERES", + "code_postal": "63490", + "coordonnees_gps": [ + 45.6003604212, + 3.41188316397 + ], + "libelle_d_acheminement": "SUGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41188316397, + 45.6003604212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbdff1f5cd82e6a84a98dc25fc999c9659f4cf93", + "fields": { + "code_commune_insee": "62506", + "nom_de_la_commune": "LICQUES", + "code_postal": "62850", + "coordonnees_gps": [ + 50.7962798733, + 1.9348768777 + ], + "libelle_d_acheminement": "LICQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9348768777, + 50.7962798733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0343f02e8feca1247a16a95f1e170d51e2be324c", + "fields": { + "code_commune_insee": "63435", + "nom_de_la_commune": "TOURZEL RONZIERES", + "code_postal": "63320", + "coordonnees_gps": [ + 45.52076364, + 3.11820097979 + ], + "libelle_d_acheminement": "TOURZEL RONZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11820097979, + 45.52076364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfab2b82e361f8d040f1f440cdde4eaaac5839ae", + "fields": { + "code_commune_insee": "62508", + "nom_de_la_commune": "LIERES", + "code_postal": "62190", + "coordonnees_gps": [ + 50.5490835835, + 2.40945021621 + ], + "libelle_d_acheminement": "LIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40945021621, + 50.5490835835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88c2a4829fd67e33cef611cde76d3934c97db755", + "fields": { + "code_commune_insee": "63438", + "nom_de_la_commune": "TREZIOUX", + "code_postal": "63520", + "coordonnees_gps": [ + 45.7193601775, + 3.47259272973 + ], + "libelle_d_acheminement": "TREZIOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47259272973, + 45.7193601775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a1a0fa2f22b52d7de853c45025222ecba649fd5", + "fields": { + "code_commune_insee": "62509", + "nom_de_la_commune": "LIETTRES", + "code_postal": "62145", + "coordonnees_gps": [ + 50.5965757151, + 2.33945536026 + ], + "libelle_d_acheminement": "LIETTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33945536026, + 50.5965757151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3568f474491ecb4571b3d6ad393a0fea4aaa02fe", + "fields": { + "code_commune_insee": "63441", + "nom_de_la_commune": "VALCIVIERES", + "code_postal": "63600", + "coordonnees_gps": [ + 45.6015215325, + 3.82060542258 + ], + "libelle_d_acheminement": "VALCIVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82060542258, + 45.6015215325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4618ea6577cfec1a622f3d0483b0a3aef9e13b5", + "fields": { + "code_commune_insee": "62512", + "nom_de_la_commune": "LIGNY LES AIRE", + "code_postal": "62960", + "coordonnees_gps": [ + 50.563205487, + 2.33673596363 + ], + "libelle_d_acheminement": "LIGNY LES AIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33673596363, + 50.563205487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9895b58560f221591cfb4d14925900c712abf607", + "fields": { + "code_commune_insee": "63442", + "nom_de_la_commune": "VALZ SOUS CHATEAUNEUF", + "code_postal": "63580", + "coordonnees_gps": [ + 45.4308765586, + 3.42163496764 + ], + "libelle_d_acheminement": "VALZ SOUS CHATEAUNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42163496764, + 45.4308765586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80735c4daeed5524a2bf30cd604c23cbbc0556be", + "fields": { + "code_commune_insee": "62513", + "nom_de_la_commune": "LIGNY SUR CANCHE", + "code_postal": "62270", + "coordonnees_gps": [ + 50.2840846482, + 2.26049042414 + ], + "libelle_d_acheminement": "LIGNY SUR CANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26049042414, + 50.2840846482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4553f9d18d81915fe4ad729d49a894b5ea0e6933", + "fields": { + "code_commune_insee": "63455", + "nom_de_la_commune": "VEYRE MONTON", + "code_postal": "63960", + "coordonnees_gps": [ + 45.6731732382, + 3.16405079473 + ], + "libelle_d_acheminement": "VEYRE MONTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16405079473, + 45.6731732382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50806f1d0b14eda03ec2af4d7786d572fa4e49b8", + "fields": { + "code_commune_insee": "62518", + "nom_de_la_commune": "LINZEUX", + "code_postal": "62270", + "coordonnees_gps": [ + 50.3424338699, + 2.20289720787 + ], + "libelle_d_acheminement": "LINZEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20289720787, + 50.3424338699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e73735dbd9efb17b9250b3e03ef3582c72aaeac", + "fields": { + "code_commune_insee": "63456", + "nom_de_la_commune": "VICHEL", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4240567135, + 3.24088300911 + ], + "libelle_d_acheminement": "VICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24088300911, + 45.4240567135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4269bd4c7401901b2bedd62e5a2fbe05fc71c97f", + "fields": { + "code_commune_insee": "62521", + "nom_de_la_commune": "LA LOGE", + "code_postal": "62140", + "coordonnees_gps": [ + 50.4088782853, + 2.03527757207 + ], + "libelle_d_acheminement": "LA LOGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03527757207, + 50.4088782853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dca235401c8a772079e9ada21dd8e0b8a731e94", + "fields": { + "code_commune_insee": "63458", + "nom_de_la_commune": "VILLENEUVE", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4775997565, + 3.18746036905 + ], + "libelle_d_acheminement": "VILLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18746036905, + 45.4775997565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f2b29a2eea645308928d4703b572b57f13c08a8", + "fields": { + "code_commune_insee": "62531", + "nom_de_la_commune": "LOUCHES", + "code_postal": "62610", + "coordonnees_gps": [ + 50.8268079904, + 1.99961507698 + ], + "libelle_d_acheminement": "LOUCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961507698, + 50.8268079904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c38839db1de9afcf86ce7168b8d345d9103f0f5", + "fields": { + "code_commune_insee": "63461", + "nom_de_la_commune": "VINZELLES", + "code_postal": "63350", + "coordonnees_gps": [ + 45.9274973505, + 3.41564073946 + ], + "libelle_d_acheminement": "VINZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41564073946, + 45.9274973505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e727da825ffa280e73e333c35e71696dcf718fe5", + "fields": { + "code_commune_insee": "62532", + "nom_de_la_commune": "LOZINGHEM", + "code_postal": "62540", + "coordonnees_gps": [ + 50.516650369, + 2.49540704274 + ], + "libelle_d_acheminement": "LOZINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49540704274, + 50.516650369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb910d1f9d5085c1d91f577d547c329ebdc8b258", + "fields": { + "code_commune_insee": "64005", + "nom_de_la_commune": "ABOS", + "code_postal": "64360", + "coordonnees_gps": [ + 43.3538742135, + -0.550692004112 + ], + "libelle_d_acheminement": "ABOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.550692004112, + 43.3538742135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca9aab2c0e554a922c7972bfd8850348db10200", + "fields": { + "code_commune_insee": "62537", + "nom_de_la_commune": "MAGNICOURT SUR CANCHE", + "code_postal": "62270", + "coordonnees_gps": [ + 50.2997948915, + 2.41112193284 + ], + "libelle_d_acheminement": "MAGNICOURT SUR CANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41112193284, + 50.2997948915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "188ce0e3631f222c3504152d27616760dcc1174b", + "fields": { + "code_commune_insee": "64008", + "nom_de_la_commune": "AHAXE ALCIETTE BASCASSAN", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1439687884, + -1.16379898273 + ], + "libelle_d_acheminement": "AHAXE ALCIETTE BASCASSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16379898273, + 43.1439687884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "546c87e5d340e60e7ba88f9902facbfe14527eb9", + "fields": { + "code_commune_insee": "62552", + "nom_de_la_commune": "MARESQUEL ECQUEMICOURT", + "code_postal": "62990", + "coordonnees_gps": [ + 50.3999401675, + 1.93489288336 + ], + "libelle_d_acheminement": "MARESQUEL ECQUEMICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93489288336, + 50.3999401675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9082a835d1191b5a2b4fe02068a61516d62554a2", + "fields": { + "ligne_5": "CAMOU MIXE SUHAST", + "code_commune_insee": "64010", + "libelle_d_acheminement": "AICIRITS CAMOU SUHAST", + "code_postal": "64120", + "nom_de_la_commune": "AICIRITS CAMOU SUHAST", + "coordonnees_gps": [ + 43.3536564293, + -1.01649248098 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01649248098, + 43.3536564293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efd70d0743350d2327ce45fe7605b8c8851342ae", + "fields": { + "code_commune_insee": "62558", + "nom_de_la_commune": "MARQUAY", + "code_postal": "62127", + "coordonnees_gps": [ + 50.380374701, + 2.42143290213 + ], + "libelle_d_acheminement": "MARQUAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42143290213, + 50.380374701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8451cb5a4175e76daeb125b3385eb4bc2969b7cf", + "fields": { + "code_commune_insee": "64016", + "nom_de_la_commune": "ALDUDES", + "code_postal": "64430", + "coordonnees_gps": [ + 43.0920329311, + -1.43472285971 + ], + "libelle_d_acheminement": "ALDUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43472285971, + 43.0920329311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16a6a15ae597ca82108409e64f5c0e344ad129e2", + "fields": { + "code_commune_insee": "62560", + "nom_de_la_commune": "MARQUISE", + "code_postal": "62250", + "coordonnees_gps": [ + 50.8125786719, + 1.70113966333 + ], + "libelle_d_acheminement": "MARQUISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70113966333, + 50.8125786719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f32fa3f8d56d676bf0c3ce51a38c424a95b253a3", + "fields": { + "code_commune_insee": "64025", + "nom_de_la_commune": "ANGOUS", + "code_postal": "64190", + "coordonnees_gps": [ + 43.2928389811, + -0.812536653193 + ], + "libelle_d_acheminement": "ANGOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.812536653193, + 43.2928389811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3018be51ee27545b9bcd484002b02e42749825b4", + "fields": { + "code_commune_insee": "62565", + "nom_de_la_commune": "MENCAS", + "code_postal": "62310", + "coordonnees_gps": [ + 50.5575500609, + 2.14482012062 + ], + "libelle_d_acheminement": "MENCAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14482012062, + 50.5575500609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2705c132537ec360678a357fcb28208ffa2e0fcb", + "fields": { + "code_commune_insee": "64029", + "nom_de_la_commune": "ARAMITS", + "code_postal": "64570", + "coordonnees_gps": [ + 43.1318295065, + -0.724473601106 + ], + "libelle_d_acheminement": "ARAMITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.724473601106, + 43.1318295065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d10009fe00be3b3b72408c25645447ffc674eb59", + "fields": { + "code_commune_insee": "62580", + "nom_de_la_commune": "MONCHY BRETON", + "code_postal": "62127", + "coordonnees_gps": [ + 50.3984333716, + 2.43602889753 + ], + "libelle_d_acheminement": "MONCHY BRETON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43602889753, + 50.3984333716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4a4d1ce571d5521a30e141048ffeb1263201cac", + "fields": { + "code_commune_insee": "64035", + "nom_de_la_commune": "ARBONNE", + "code_postal": "64210", + "coordonnees_gps": [ + 43.4221190537, + -1.54906516427 + ], + "libelle_d_acheminement": "ARBONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54906516427, + 43.4221190537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5490c880c91e3fcfb43be43c8abbddc6355db29c", + "fields": { + "code_commune_insee": "62581", + "nom_de_la_commune": "MONCHY CAYEUX", + "code_postal": "62134", + "coordonnees_gps": [ + 50.4344363807, + 2.28088263768 + ], + "libelle_d_acheminement": "MONCHY CAYEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28088263768, + 50.4344363807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bea19878535aa701ee3fa8efb6b769ec4288cb9c", + "fields": { + "code_commune_insee": "64042", + "nom_de_la_commune": "ARGAGNON", + "code_postal": "64300", + "coordonnees_gps": [ + 43.4617440342, + -0.676305200735 + ], + "libelle_d_acheminement": "ARGAGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.676305200735, + 43.4617440342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3541981c0b6ab8469a377e0ac5a28414dd8cf24", + "fields": { + "code_commune_insee": "62585", + "nom_de_la_commune": "MONTCAVREL", + "code_postal": "62170", + "coordonnees_gps": [ + 50.5200642841, + 1.81575896733 + ], + "libelle_d_acheminement": "MONTCAVREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81575896733, + 50.5200642841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66811c4a47601ca47e72ce9d0ec4ad406a9d961c", + "fields": { + "code_commune_insee": "64048", + "nom_de_la_commune": "ARNOS", + "code_postal": "64370", + "coordonnees_gps": [ + 43.4587702004, + -0.533290212033 + ], + "libelle_d_acheminement": "ARNOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.533290212033, + 43.4587702004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68b93c9fc7197ea4c194f8e6b0f7dba8dfb7976b", + "fields": { + "code_commune_insee": "62591", + "nom_de_la_commune": "MORCHIES", + "code_postal": "62124", + "coordonnees_gps": [ + 50.1374335468, + 2.95474922701 + ], + "libelle_d_acheminement": "MORCHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95474922701, + 50.1374335468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "848a90367205edd6091183f5a14a3311583ce5c3", + "fields": { + "ligne_5": "ITHOROTS OLHAIBY", + "code_commune_insee": "64049", + "libelle_d_acheminement": "AROUE ITHOROTS OLHAIBY", + "code_postal": "64120", + "nom_de_la_commune": "AROUE ITHOROTS OLHAIBY", + "coordonnees_gps": [ + 43.3085352376, + -0.928425599929 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.928425599929, + 43.3085352376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "affb210f9ce1512066f731ae3b66c68ac361323c", + "fields": { + "code_commune_insee": "62592", + "nom_de_la_commune": "MORINGHEM", + "code_postal": "62910", + "coordonnees_gps": [ + 50.7633897725, + 2.12682414351 + ], + "libelle_d_acheminement": "MORINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12682414351, + 50.7633897725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d4e97c2c15e79459a2b91e5cee3e3798b319ad7", + "fields": { + "code_commune_insee": "64050", + "nom_de_la_commune": "ARRAST LARREBIEU", + "code_postal": "64130", + "coordonnees_gps": [ + 43.2856672915, + -0.850375454846 + ], + "libelle_d_acheminement": "ARRAST LARREBIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.850375454846, + 43.2856672915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcc0f609afe9a733878930144e329c2f0c2f4565", + "fields": { + "code_commune_insee": "62593", + "nom_de_la_commune": "MORVAL", + "code_postal": "62450", + "coordonnees_gps": [ + 50.0285941958, + 2.86791432248 + ], + "libelle_d_acheminement": "MORVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86791432248, + 50.0285941958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f8422f3555e4300d9c97fa1eb48a5b817a33b68", + "fields": { + "code_commune_insee": "64059", + "nom_de_la_commune": "ARTIGUELOUTAN", + "code_postal": "64420", + "coordonnees_gps": [ + 43.2722949713, + -0.243925717191 + ], + "libelle_d_acheminement": "ARTIGUELOUTAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.243925717191, + 43.2722949713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0054e06df244adc9b53990f3dda58ad70da226fb", + "fields": { + "code_commune_insee": "62594", + "nom_de_la_commune": "MORY", + "code_postal": "62159", + "coordonnees_gps": [ + 50.1566834993, + 2.85758228781 + ], + "libelle_d_acheminement": "MORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85758228781, + 50.1566834993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a497c8d90af2bdeb13e32b1c20b2bc3bdf089e34", + "fields": { + "code_commune_insee": "64068", + "nom_de_la_commune": "ASSON", + "code_postal": "64800", + "coordonnees_gps": [ + 43.0932345158, + -0.24942324617 + ], + "libelle_d_acheminement": "ASSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24942324617, + 43.0932345158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b449b6e542c8490fbfab4c27bb87422324802b4c", + "fields": { + "code_commune_insee": "62600", + "nom_de_la_commune": "NEDON", + "code_postal": "62550", + "coordonnees_gps": [ + 50.5178234445, + 2.36307041105 + ], + "libelle_d_acheminement": "NEDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36307041105, + 50.5178234445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d3bc40ba7ab8481fa9dc583ded94ed374547df1", + "fields": { + "code_commune_insee": "64069", + "nom_de_la_commune": "ASTE BEON", + "code_postal": "64260", + "coordonnees_gps": [ + 43.0305496433, + -0.397677517551 + ], + "libelle_d_acheminement": "ASTE BEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.397677517551, + 43.0305496433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a706fbc41448cb2d5d577c594d1640372b2bb99", + "fields": { + "code_commune_insee": "62604", + "nom_de_la_commune": "NEUFCHATEL HARDELOT", + "code_postal": "62152", + "coordonnees_gps": [ + 50.6171328385, + 1.61729338887 + ], + "libelle_d_acheminement": "NEUFCHATEL HARDELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61729338887, + 50.6171328385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7529651c2ba66ba481c9be7ba3ad916fea10697", + "fields": { + "code_commune_insee": "64073", + "nom_de_la_commune": "AUBIN", + "code_postal": "64230", + "coordonnees_gps": [ + 43.4356805812, + -0.421465763214 + ], + "libelle_d_acheminement": "AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.421465763214, + 43.4356805812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48c595df3de92dedd76a8c8d4c9686cdb16d47ec", + "fields": { + "code_commune_insee": "62609", + "nom_de_la_commune": "NEUVILLE ST VAAST", + "code_postal": "62580", + "coordonnees_gps": [ + 50.3583439881, + 2.75467888748 + ], + "libelle_d_acheminement": "NEUVILLE ST VAAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75467888748, + 50.3583439881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5df6f78ace6bf749204f8bd40366edee4180b3e4", + "fields": { + "code_commune_insee": "64089", + "nom_de_la_commune": "BALEIX", + "code_postal": "64460", + "coordonnees_gps": [ + 43.3760240874, + -0.136041304972 + ], + "libelle_d_acheminement": "BALEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.136041304972, + 43.3760240874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66560e5d9942589bee72732b82d3f8e56324aea2", + "fields": { + "code_commune_insee": "62610", + "nom_de_la_commune": "NEUVILLE SOUS MONTREUIL", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4788857008, + 1.79521288108 + ], + "libelle_d_acheminement": "NEUVILLE SOUS MONTREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79521288108, + 50.4788857008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dc95f8d11c96fc8541fc3c03a086445b5ef96e0", + "fields": { + "code_commune_insee": "64090", + "nom_de_la_commune": "BALIRACQ MAUMUSSON", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5412822794, + -0.2496409379 + ], + "libelle_d_acheminement": "BALIRACQ MAUMUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2496409379, + 43.5412822794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da675377a4f2ee4c852336b94edfd9be58cb3b6a", + "fields": { + "code_commune_insee": "62624", + "nom_de_la_commune": "NOYELLES GODAULT", + "code_postal": "62950", + "coordonnees_gps": [ + 50.4179672705, + 2.99358335607 + ], + "libelle_d_acheminement": "NOYELLES GODAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99358335607, + 50.4179672705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65bcf18cfac30da9df6985c1e830994807f2308f", + "fields": { + "code_commune_insee": "64097", + "nom_de_la_commune": "BARZUN", + "code_postal": "64530", + "coordonnees_gps": [ + 43.2154362655, + -0.134118816539 + ], + "libelle_d_acheminement": "BARZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.134118816539, + 43.2154362655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62a0c182d9a09d0b1165a18eda75348a3cbae2af", + "fields": { + "code_commune_insee": "62633", + "nom_de_la_commune": "OEUF EN TERNOIS", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3630160601, + 2.21206291553 + ], + "libelle_d_acheminement": "OEUF EN TERNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21206291553, + 50.3630160601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac21cecd5d5c148a372a9bdd3a497d81f30fbe4b", + "fields": { + "code_commune_insee": "64103", + "nom_de_la_commune": "BEDEILLE", + "code_postal": "64460", + "coordonnees_gps": [ + 43.3464176542, + -0.0975638445243 + ], + "libelle_d_acheminement": "BEDEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0975638445243, + 43.3464176542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc1c05ed1f6a450e4d21dd3c24663724d136c3bc", + "fields": { + "code_commune_insee": "62635", + "nom_de_la_commune": "OFFIN", + "code_postal": "62990", + "coordonnees_gps": [ + 50.4419639304, + 1.95243278829 + ], + "libelle_d_acheminement": "OFFIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95243278829, + 50.4419639304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44a8487601afc251313494ee9749fce35eea1238", + "fields": { + "code_commune_insee": "64110", + "nom_de_la_commune": "BEOST", + "code_postal": "64440", + "coordonnees_gps": [ + 42.9800031396, + -0.329944029272 + ], + "libelle_d_acheminement": "BEOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.329944029272, + 42.9800031396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5a845d68fb39352d1fa7ae5e5a3b77f156650a6", + "fields": { + "code_commune_insee": "62636", + "nom_de_la_commune": "OFFRETHUN", + "code_postal": "62250", + "coordonnees_gps": [ + 50.7862971343, + 1.69796833059 + ], + "libelle_d_acheminement": "OFFRETHUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69796833059, + 50.7862971343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c44e4ba34813a3babe1cb9cae9514c285a260515", + "fields": { + "code_commune_insee": "64111", + "nom_de_la_commune": "BENTAYOU SEREE", + "code_postal": "64460", + "coordonnees_gps": [ + 43.3955911569, + -0.0624344594456 + ], + "libelle_d_acheminement": "BENTAYOU SEREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0624344594456, + 43.3955911569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c054538dcb0890653c7c2217affd3a62c3ea14f", + "fields": { + "code_commune_insee": "62639", + "nom_de_la_commune": "OPPY", + "code_postal": "62580", + "coordonnees_gps": [ + 50.3471676036, + 2.88887974402 + ], + "libelle_d_acheminement": "OPPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88887974402, + 50.3471676036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e8b170fdab57bdc26ca156b7bca56048d7d7c3c", + "fields": { + "code_commune_insee": "64112", + "nom_de_la_commune": "BERENX", + "code_postal": "64300", + "coordonnees_gps": [ + 43.4932804178, + -0.867524783512 + ], + "libelle_d_acheminement": "BERENX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.867524783512, + 43.4932804178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d692160d478407e0ce5ed9726a843ebaf38e956", + "fields": { + "code_commune_insee": "62646", + "nom_de_la_commune": "PALLUEL", + "code_postal": "62860", + "coordonnees_gps": [ + 50.2653513279, + 3.09530280931 + ], + "libelle_d_acheminement": "PALLUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09530280931, + 50.2653513279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3207c83d057f36b433d06daf0a3f362595768d1", + "fields": { + "code_commune_insee": "64115", + "nom_de_la_commune": "BERROGAIN LARUNS", + "code_postal": "64130", + "coordonnees_gps": [ + 43.2501740565, + -0.862735447746 + ], + "libelle_d_acheminement": "BERROGAIN LARUNS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.862735447746, + 43.2501740565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7826b520b555fd488eee9407c549ba90d3658e20", + "fields": { + "code_commune_insee": "62656", + "nom_de_la_commune": "PIHEM", + "code_postal": "62570", + "coordonnees_gps": [ + 50.6761891157, + 2.21194474254 + ], + "libelle_d_acheminement": "PIHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21194474254, + 50.6761891157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0ce5b78c65cf1a83fd8df471782a4cb2bdc8e81", + "fields": { + "code_commune_insee": "64119", + "nom_de_la_commune": "BEUSTE", + "code_postal": "64800", + "coordonnees_gps": [ + 43.2218627813, + -0.22938631115 + ], + "libelle_d_acheminement": "BEUSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22938631115, + 43.2218627813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8628fbe488cc6f3fa77a73c14817fe6306335617", + "fields": { + "code_commune_insee": "62659", + "nom_de_la_commune": "PLANQUES", + "code_postal": "62310", + "coordonnees_gps": [ + 50.4663856926, + 2.08885022364 + ], + "libelle_d_acheminement": "PLANQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08885022364, + 50.4663856926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b64d16365e6b866d1a8e129a01cdc9f808630274", + "fields": { + "code_commune_insee": "64127", + "nom_de_la_commune": "BIELLE", + "code_postal": "64260", + "coordonnees_gps": [ + 43.0445386527, + -0.467140466364 + ], + "libelle_d_acheminement": "BIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.467140466364, + 43.0445386527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0126cea493867b84512dc89d047969c49fafb398", + "fields": { + "code_commune_insee": "64134", + "nom_de_la_commune": "BONLOC", + "code_postal": "64240", + "coordonnees_gps": [ + 43.3669336353, + -1.26789948653 + ], + "libelle_d_acheminement": "BONLOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26789948653, + 43.3669336353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79a95e614b0a976d06f2fa3fd8f8b8b1052a377c", + "fields": { + "code_commune_insee": "64135", + "nom_de_la_commune": "BONNUT", + "code_postal": "64300", + "coordonnees_gps": [ + 43.5504537514, + -0.765861941107 + ], + "libelle_d_acheminement": "BONNUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.765861941107, + 43.5504537514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b50e161c9dd15c900bcd013f4c390cb8d2477a08", + "fields": { + "code_commune_insee": "64143", + "nom_de_la_commune": "BOUILLON", + "code_postal": "64410", + "coordonnees_gps": [ + 43.4946357814, + -0.508161824959 + ], + "libelle_d_acheminement": "BOUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.508161824959, + 43.4946357814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfcfa92393ac5319ffe85093aafa9d03533fed37", + "fields": { + "ligne_5": "MIFAGET", + "code_commune_insee": "64148", + "libelle_d_acheminement": "BRUGES CAPBIS MIFAGET", + "code_postal": "64800", + "nom_de_la_commune": "BRUGES CAPBIS MIFAGET", + "coordonnees_gps": [ + 43.1253072219, + -0.303486553374 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.303486553374, + 43.1253072219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc51485bf4d1961bc3539823c3977328ff58502d", + "fields": { + "code_commune_insee": "64165", + "nom_de_la_commune": "CARDESSE", + "code_postal": "64360", + "coordonnees_gps": [ + 43.2634335383, + -0.592748076501 + ], + "libelle_d_acheminement": "CARDESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.592748076501, + 43.2634335383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06552b3bd62ce7490690f8705e7bce3aeb6fdb1d", + "fields": { + "ligne_5": "CASSABER", + "code_commune_insee": "64168", + "libelle_d_acheminement": "CARRESSE CASSABER", + "code_postal": "64270", + "nom_de_la_commune": "CARRESSE CASSABER", + "coordonnees_gps": [ + 43.4867092033, + -0.999430077721 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.999430077721, + 43.4867092033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77b8905036f16150a2fe988c427e15991a68a8f9", + "fields": { + "code_commune_insee": "64177", + "nom_de_la_commune": "CASTETIS", + "code_postal": "64300", + "coordonnees_gps": [ + 43.4755360423, + -0.718730754517 + ], + "libelle_d_acheminement": "CASTETIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.718730754517, + 43.4755360423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7905a30e2e8f23a4bf6bf98a16fccde35fb4419", + "fields": { + "code_commune_insee": "64182", + "nom_de_la_commune": "CASTILLON DE LEMBEYE", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4827393039, + -0.12995598336 + ], + "libelle_d_acheminement": "CASTILLON DE LEMBEYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12995598336, + 43.4827393039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f6b7880132ef3d76a54054d4b4905372e921ffe", + "fields": { + "code_commune_insee": "64183", + "nom_de_la_commune": "CAUBIOS LOOS", + "code_postal": "64230", + "coordonnees_gps": [ + 43.4184546974, + -0.403179073959 + ], + "libelle_d_acheminement": "CAUBIOS LOOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.403179073959, + 43.4184546974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2af72e3f683e4c0c24bcd9a159f8d06d142587a1", + "fields": { + "code_commune_insee": "64198", + "nom_de_la_commune": "DENGUIN", + "code_postal": "64230", + "coordonnees_gps": [ + 43.3708216546, + -0.500350227226 + ], + "libelle_d_acheminement": "DENGUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.500350227226, + 43.3708216546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46dfe46097255af9ee7921b4a925d27c6a027da5", + "fields": { + "code_commune_insee": "64207", + "nom_de_la_commune": "ESCOU", + "code_postal": "64870", + "coordonnees_gps": [ + 43.1836947756, + -0.529049715765 + ], + "libelle_d_acheminement": "ESCOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.529049715765, + 43.1836947756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "806f9b7a74fd568c02564164203b43ec4d631ddf", + "fields": { + "code_commune_insee": "64209", + "nom_de_la_commune": "ESCOUT", + "code_postal": "64870", + "coordonnees_gps": [ + 43.1875477654, + -0.553494252513 + ], + "libelle_d_acheminement": "ESCOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.553494252513, + 43.1875477654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8644f6c44f38d065e0120dbc44a5fe2da03becef", + "fields": { + "code_commune_insee": "64210", + "nom_de_la_commune": "ESCURES", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4659000742, + -0.123403091358 + ], + "libelle_d_acheminement": "ESCURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.123403091358, + 43.4659000742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f78e413a2689043064d8d367bc0044910d5d2c92", + "fields": { + "code_commune_insee": "64213", + "nom_de_la_commune": "ESPELETTE", + "code_postal": "64250", + "coordonnees_gps": [ + 43.3235532289, + -1.45240885976 + ], + "libelle_d_acheminement": "ESPELETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45240885976, + 43.3235532289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcbbfce88cfad2150fec9275c9350a698dee8540", + "fields": { + "code_commune_insee": "64214", + "nom_de_la_commune": "ESPES UNDUREIN", + "code_postal": "64130", + "coordonnees_gps": [ + 43.2745536511, + -0.89014755808 + ], + "libelle_d_acheminement": "ESPES UNDUREIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.89014755808, + 43.2745536511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f6b45237f1c4c73d13558c9d4a73b7145e6603a", + "fields": { + "code_commune_insee": "64220", + "nom_de_la_commune": "ESTOS", + "code_postal": "64400", + "coordonnees_gps": [ + 43.2125962039, + -0.60619639047 + ], + "libelle_d_acheminement": "ESTOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60619639047, + 43.2125962039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f3f4713505851d7bc3630341fc7a15a456ba3e1", + "fields": { + "code_commune_insee": "64222", + "nom_de_la_commune": "ETCHEBAR", + "code_postal": "64470", + "coordonnees_gps": [ + 43.0669985514, + -0.903672606774 + ], + "libelle_d_acheminement": "ETCHEBAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.903672606774, + 43.0669985514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61ca10a90cb0777ad67d05aeade371a9da6abf0c", + "fields": { + "ligne_5": "ANCE", + "code_commune_insee": "64225", + "libelle_d_acheminement": "ANCE FEAS", + "code_postal": "64570", + "nom_de_la_commune": "ANCE FEAS", + "coordonnees_gps": [ + 43.1680555361, + -0.697334035468 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.697334035468, + 43.1680555361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b08708ac251c5f7eb1d58520dbb95ef551db505", + "fields": { + "ligne_5": "FEAS", + "code_commune_insee": "64225", + "libelle_d_acheminement": "ANCE FEAS", + "code_postal": "64570", + "nom_de_la_commune": "ANCE FEAS", + "coordonnees_gps": [ + 43.1680555361, + -0.697334035468 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.697334035468, + 43.1680555361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "949d931dcc5661a55848231469e2badb40a96f2f", + "fields": { + "code_commune_insee": "64231", + "nom_de_la_commune": "GARINDEIN", + "code_postal": "64130", + "coordonnees_gps": [ + 43.2188188695, + -0.924182153678 + ], + "libelle_d_acheminement": "GARINDEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.924182153678, + 43.2188188695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b6d389a3a0b08694a1c6a1ee4c734e2a6ffe0a8", + "fields": { + "code_commune_insee": "64245", + "nom_de_la_commune": "GOES", + "code_postal": "64400", + "coordonnees_gps": [ + 43.2174962375, + -0.575780625501 + ], + "libelle_d_acheminement": "GOES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.575780625501, + 43.2174962375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc3b298d51877c457e7b502495d8589640555edf", + "fields": { + "code_commune_insee": "64247", + "nom_de_la_commune": "GOTEIN LIBARRENX", + "code_postal": "64130", + "coordonnees_gps": [ + 43.1917199949, + -0.889247440623 + ], + "libelle_d_acheminement": "GOTEIN LIBARRENX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889247440623, + 43.1917199949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b42744bb204c37d0b199e8bb95b0261d8b0f2359", + "fields": { + "code_commune_insee": "64251", + "nom_de_la_commune": "GUINARTHE PARENTIES", + "code_postal": "64390", + "coordonnees_gps": [ + 43.3844299922, + -0.946598983055 + ], + "libelle_d_acheminement": "GUINARTHE PARENTIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.946598983055, + 43.3844299922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3687088884e9a1c5863e330c2288af4c14990a04", + "fields": { + "code_commune_insee": "62662", + "nom_de_la_commune": "POLINCOVE", + "code_postal": "62370", + "coordonnees_gps": [ + 50.8615356416, + 2.10891305299 + ], + "libelle_d_acheminement": "POLINCOVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10891305299, + 50.8615356416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eec73fdba427b7e15bdc907d289f1fa10f3718f8", + "fields": { + "code_commune_insee": "62675", + "nom_de_la_commune": "QUERCAMPS", + "code_postal": "62380", + "coordonnees_gps": [ + 50.7521632, + 2.04535296753 + ], + "libelle_d_acheminement": "QUERCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04535296753, + 50.7521632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44902d5bda4583ec5d85e18fc59a240bb3b67b5c", + "fields": { + "code_commune_insee": "62676", + "nom_de_la_commune": "QUERNES", + "code_postal": "62120", + "coordonnees_gps": [ + 50.602495211, + 2.36795171734 + ], + "libelle_d_acheminement": "QUERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36795171734, + 50.602495211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b80f822c9b562e4a8f321c3ca5ecf8c7d4b10ab0", + "fields": { + "code_commune_insee": "62678", + "nom_de_la_commune": "QUESQUES", + "code_postal": "62240", + "coordonnees_gps": [ + 50.7016785113, + 1.9419210746 + ], + "libelle_d_acheminement": "QUESQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9419210746, + 50.7016785113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6150a6bc332863f705560008308f8d6013ed6b7", + "fields": { + "code_commune_insee": "62681", + "nom_de_la_commune": "QUIESTEDE", + "code_postal": "62120", + "coordonnees_gps": [ + 50.6805074273, + 2.32892065938 + ], + "libelle_d_acheminement": "QUIESTEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32892065938, + 50.6805074273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5c420e1bc232a6a73b90a70b5cee366b0a68bf2", + "fields": { + "code_commune_insee": "62686", + "nom_de_la_commune": "RAMECOURT", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3636637798, + 2.30659261864 + ], + "libelle_d_acheminement": "RAMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30659261864, + 50.3636637798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "032ef6509fa9c63fdfe8079a62a0c099e9926763", + "fields": { + "code_commune_insee": "62689", + "nom_de_la_commune": "RANSART", + "code_postal": "62173", + "coordonnees_gps": [ + 50.2055666044, + 2.67670768859 + ], + "libelle_d_acheminement": "RANSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67670768859, + 50.2055666044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4c75d5cbdd5156e40a13b767e58c9e0c4a04309", + "fields": { + "code_commune_insee": "64255", + "nom_de_la_commune": "HALSOU", + "code_postal": "64480", + "coordonnees_gps": [ + 43.3851722831, + -1.41123002191 + ], + "libelle_d_acheminement": "HALSOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41123002191, + 43.3851722831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "200165188f20e3164443fd4fb7cd4eb1b7526e91", + "fields": { + "code_commune_insee": "62692", + "nom_de_la_commune": "REBERGUES", + "code_postal": "62850", + "coordonnees_gps": [ + 50.7533359346, + 1.95267179122 + ], + "libelle_d_acheminement": "REBERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95267179122, + 50.7533359346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21a8f9f7fb68f8ffa38e0ed44c79a14d0fd09483", + "fields": { + "code_commune_insee": "64262", + "nom_de_la_commune": "HIGUERES SOUYE", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3790480363, + -0.250616143806 + ], + "libelle_d_acheminement": "HIGUERES SOUYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.250616143806, + 43.3790480363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e33730d118b78b2845fc6066d8653931e4abab5b", + "fields": { + "code_commune_insee": "62693", + "nom_de_la_commune": "REBREUVE RANCHICOURT", + "code_postal": "62150", + "coordonnees_gps": [ + 50.4315349497, + 2.54883254933 + ], + "libelle_d_acheminement": "REBREUVE RANCHICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54883254933, + 50.4315349497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cfc517a74e7c5dcf434c45b091a7ebbbde9093b", + "fields": { + "code_commune_insee": "64265", + "nom_de_la_commune": "HOSTA", + "code_postal": "64120", + "coordonnees_gps": [ + 43.1484603704, + -1.07534418075 + ], + "libelle_d_acheminement": "HOSTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07534418075, + 43.1484603704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0306687e3b2b105a9c65cda977569137ed4da05", + "fields": { + "code_commune_insee": "62694", + "nom_de_la_commune": "REBREUVE SUR CANCHE", + "code_postal": "62270", + "coordonnees_gps": [ + 50.2662010324, + 2.34099398003 + ], + "libelle_d_acheminement": "REBREUVE SUR CANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34099398003, + 50.2662010324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00f17cd5068128438b576c2dc1df838876478ef7", + "fields": { + "code_commune_insee": "64266", + "nom_de_la_commune": "HOURS", + "code_postal": "64420", + "coordonnees_gps": [ + 43.223209454, + -0.172612595527 + ], + "libelle_d_acheminement": "HOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.172612595527, + 43.223209454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bf69ad632a0cb9b8f33c30ffe18f31ba1ee583b", + "fields": { + "code_commune_insee": "62696", + "nom_de_la_commune": "RECLINGHEM", + "code_postal": "62560", + "coordonnees_gps": [ + 50.5726869457, + 2.17529394025 + ], + "libelle_d_acheminement": "RECLINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17529394025, + 50.5726869457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e872ca759ffdeb295e3bfb65d30207fab9f0439", + "fields": { + "code_commune_insee": "64267", + "nom_de_la_commune": "IBARROLLE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.1926783014, + -1.09837639291 + ], + "libelle_d_acheminement": "IBARROLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09837639291, + 43.1926783014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ae2915037f889ca4b00946720373c9edfc3769", + "fields": { + "code_commune_insee": "62704", + "nom_de_la_commune": "RENTY", + "code_postal": "62560", + "coordonnees_gps": [ + 50.5795789917, + 2.06891103096 + ], + "libelle_d_acheminement": "RENTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06891103096, + 50.5795789917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3be64cbec637dca65009ecf96c0cfbb4c4f9042a", + "fields": { + "code_commune_insee": "64277", + "nom_de_la_commune": "ISTURITS", + "code_postal": "64240", + "coordonnees_gps": [ + 43.3700960955, + -1.20346966918 + ], + "libelle_d_acheminement": "ISTURITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20346966918, + 43.3700960955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6ee740a239de1e610afaa90e3feae63fdcb8fea", + "fields": { + "code_commune_insee": "62706", + "nom_de_la_commune": "RICHEBOURG", + "code_postal": "62136", + "coordonnees_gps": [ + 50.5790087378, + 2.74726959895 + ], + "libelle_d_acheminement": "RICHEBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74726959895, + 50.5790087378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a4085e738f271c21e49925690d1827397dc721e", + "fields": { + "code_commune_insee": "64281", + "nom_de_la_commune": "JASSES", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3137532193, + -0.734253298525 + ], + "libelle_d_acheminement": "JASSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.734253298525, + 43.3137532193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9477b65fae8314a0696e5e5f287aa226b7084ec4", + "fields": { + "code_commune_insee": "62709", + "nom_de_la_commune": "RIENCOURT LES CAGNICOURT", + "code_postal": "62182", + "coordonnees_gps": [ + 50.1942984379, + 2.96139723714 + ], + "libelle_d_acheminement": "RIENCOURT LES CAGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96139723714, + 50.1942984379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "877d1fd08a2859e2250ff84377e5ea42ccad4dc2", + "fields": { + "code_commune_insee": "64285", + "nom_de_la_commune": "JUXUE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.2306045938, + -1.04127746067 + ], + "libelle_d_acheminement": "JUXUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04127746067, + 43.2306045938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e832d9c879e4bcf41251cbc47d90a3ad3d180026", + "fields": { + "code_commune_insee": "62712", + "nom_de_la_commune": "RIVIERE", + "code_postal": "62173", + "coordonnees_gps": [ + 50.232029156, + 2.68653803853 + ], + "libelle_d_acheminement": "RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68653803853, + 50.232029156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a7261b763a58d3d6b8b97a7fd92c568f8260e9c", + "fields": { + "code_commune_insee": "64288", + "nom_de_la_commune": "LABASTIDE CEZERACQ", + "code_postal": "64170", + "coordonnees_gps": [ + 43.3764513777, + -0.540462234039 + ], + "libelle_d_acheminement": "LABASTIDE CEZERACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.540462234039, + 43.3764513777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9677ee7151c83246ba5a9ba2f688e2c3c766a812", + "fields": { + "code_commune_insee": "62715", + "nom_de_la_commune": "ROCQUIGNY", + "code_postal": "62450", + "coordonnees_gps": [ + 50.0557736792, + 2.92417535709 + ], + "libelle_d_acheminement": "ROCQUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92417535709, + 50.0557736792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "474c7fb8f7f2f9867c0d17596580ba6646e2f8b0", + "fields": { + "code_commune_insee": "64290", + "nom_de_la_commune": "LABASTIDE MONREJEAU", + "code_postal": "64170", + "coordonnees_gps": [ + 43.3907261571, + -0.527272938618 + ], + "libelle_d_acheminement": "LABASTIDE MONREJEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.527272938618, + 43.3907261571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e724fc03baf708db73765c348bbbd3d3eca09d4", + "fields": { + "code_commune_insee": "62724", + "nom_de_la_commune": "ROUVROY", + "code_postal": "62320", + "coordonnees_gps": [ + 50.3992080459, + 2.90489431252 + ], + "libelle_d_acheminement": "ROUVROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90489431252, + 50.3992080459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35e2f49e1048a368488f9e18e52d9d58d68f4614", + "fields": { + "code_commune_insee": "64296", + "nom_de_la_commune": "LACADEE", + "code_postal": "64300", + "coordonnees_gps": [ + 43.5262558037, + -0.655405212683 + ], + "libelle_d_acheminement": "LACADEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.655405212683, + 43.5262558037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdfa7e721b111f9f16e93e9af7be8549e1067333", + "fields": { + "code_commune_insee": "62735", + "nom_de_la_commune": "SAILLY LABOURSE", + "code_postal": "62113", + "coordonnees_gps": [ + 50.501663993, + 2.70273580801 + ], + "libelle_d_acheminement": "SAILLY LABOURSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70273580801, + 50.501663993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a30d8f2d6f2dbadf244347d183b93688524ea274", + "fields": { + "code_commune_insee": "64303", + "nom_de_la_commune": "LAGUINGE RESTOUE", + "code_postal": "64470", + "coordonnees_gps": [ + 43.095942797, + -0.84902832685 + ], + "libelle_d_acheminement": "LAGUINGE RESTOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84902832685, + 43.095942797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ce4c74adacf9b8e41b694c4f43974b1ba53029f", + "fields": { + "code_commune_insee": "62736", + "nom_de_la_commune": "SAILLY SUR LA LYS", + "code_postal": "62840", + "coordonnees_gps": [ + 50.6532332701, + 2.79249849805 + ], + "libelle_d_acheminement": "SAILLY SUR LA LYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79249849805, + 50.6532332701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "372417719d814bff49b1355542362bcb502615b1", + "fields": { + "code_commune_insee": "64306", + "nom_de_la_commune": "LAHOURCADE", + "code_postal": "64150", + "coordonnees_gps": [ + 43.351780818, + -0.630355750104 + ], + "libelle_d_acheminement": "LAHOURCADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.630355750104, + 43.351780818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8873bbdcf9ac9fd84dd2288a67982166284c466", + "fields": { + "code_commune_insee": "62737", + "nom_de_la_commune": "SAINS EN GOHELLE", + "code_postal": "62114", + "coordonnees_gps": [ + 50.4509698572, + 2.68385518781 + ], + "libelle_d_acheminement": "SAINS EN GOHELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68385518781, + 50.4509698572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3a44a038173dc8da297b98e84aeab334fa6a907", + "fields": { + "code_commune_insee": "64308", + "nom_de_la_commune": "LALONQUETTE", + "code_postal": "64450", + "coordonnees_gps": [ + 43.4892855567, + -0.316695658071 + ], + "libelle_d_acheminement": "LALONQUETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.316695658071, + 43.4892855567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e636ef35501987ea8d4e9f3fdf649b0d5d665ed4", + "fields": { + "code_commune_insee": "62741", + "nom_de_la_commune": "ST AMAND", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1701921167, + 2.56122106868 + ], + "libelle_d_acheminement": "ST AMAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56122106868, + 50.1701921167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45ebdd42d8bfa306480d6f2c6ecf934e8f8e07dc", + "fields": { + "code_commune_insee": "64313", + "nom_de_la_commune": "LANTABAT", + "code_postal": "64640", + "coordonnees_gps": [ + 43.2575328584, + -1.12843928405 + ], + "libelle_d_acheminement": "LANTABAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12843928405, + 43.2575328584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e24f33b2c377ad04cb497c1d2111655a60d9b796", + "fields": { + "code_commune_insee": "62742", + "nom_de_la_commune": "ST AUBIN", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4542149045, + 1.66870486737 + ], + "libelle_d_acheminement": "ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66870486737, + 50.4542149045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77844acf991de06c56c6a3b1b619115502276652", + "fields": { + "code_commune_insee": "64314", + "nom_de_la_commune": "LARCEVEAU ARROS CIBITS", + "code_postal": "64120", + "coordonnees_gps": [ + 43.2252198933, + -1.09885079256 + ], + "libelle_d_acheminement": "LARCEVEAU ARROS CIBITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09885079256, + 43.2252198933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34cd6d45f0bcefbb97af7af300b41d7cbd4d9e10", + "fields": { + "code_commune_insee": "62743", + "nom_de_la_commune": "STE AUSTREBERTHE", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3579438229, + 2.04425580197 + ], + "libelle_d_acheminement": "STE AUSTREBERTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04425580197, + 50.3579438229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3645f4d46277725436baff507576cc20846d1823", + "fields": { + "code_commune_insee": "64316", + "nom_de_la_commune": "LARRAU", + "code_postal": "64560", + "coordonnees_gps": [ + 43.0098151548, + -0.97252443116 + ], + "libelle_d_acheminement": "LARRAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97252443116, + 43.0098151548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb3ecf32e17c9d090c850dc4fd566c8b75603425", + "fields": { + "code_commune_insee": "62745", + "nom_de_la_commune": "ST DENOEUX", + "code_postal": "62990", + "coordonnees_gps": [ + 50.4773305558, + 1.90952236294 + ], + "libelle_d_acheminement": "ST DENOEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90952236294, + 50.4773305558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22442a052ebbc47c7fa779ea1eeaaa34babb8407", + "fields": { + "code_commune_insee": "64320", + "nom_de_la_commune": "LARUNS", + "code_postal": "64440", + "coordonnees_gps": [ + 42.8923840962, + -0.419704380499 + ], + "libelle_d_acheminement": "LARUNS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.419704380499, + 42.8923840962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f64a5ac19c60b16d060bc16af7a44ea8dd0f252", + "fields": { + "ligne_5": "PONT DE BRIQUES", + "code_commune_insee": "62746", + "libelle_d_acheminement": "PONT DE BRIQUES ST ETIENNE", + "code_postal": "62360", + "nom_de_la_commune": "ST ETIENNE AU MONT", + "coordonnees_gps": [ + 50.6654810277, + 1.6018617047 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6018617047, + 50.6654810277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eee60189559ac27a68c0676a9962b05a9463c74f", + "fields": { + "code_commune_insee": "64323", + "nom_de_la_commune": "LASSERRE", + "code_postal": "64350", + "coordonnees_gps": [ + 43.5124997921, + -0.0798087284423 + ], + "libelle_d_acheminement": "LASSERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0798087284423, + 43.5124997921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5de12fd239cf9a68a416e995042f273479d04e24", + "fields": { + "ligne_5": "ST MARTIN AU LAERT", + "code_commune_insee": "62757", + "libelle_d_acheminement": "ST MARTIN LEZ TATINGHEM", + "code_postal": "62500", + "nom_de_la_commune": "ST MARTIN LEZ TATINGHEM", + "coordonnees_gps": [ + 50.7568801196, + 2.2297072767 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2297072767, + 50.7568801196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4772bc403c3850dd21fd677edb7bb5da6b74112", + "fields": { + "code_commune_insee": "64324", + "nom_de_la_commune": "LASSEUBE", + "code_postal": "64290", + "coordonnees_gps": [ + 43.2135578773, + -0.483373200293 + ], + "libelle_d_acheminement": "LASSEUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.483373200293, + 43.2135578773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "090b703f3a1150a19265b41102d168861dd94479", + "fields": { + "code_commune_insee": "62762", + "nom_de_la_commune": "ST MICHEL SOUS BOIS", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5174881258, + 1.93606986972 + ], + "libelle_d_acheminement": "ST MICHEL SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93606986972, + 50.5174881258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29b27fcd484c8ba6e281aa8a098cd86c372f498b", + "fields": { + "code_commune_insee": "64325", + "nom_de_la_commune": "LASSEUBETAT", + "code_postal": "64290", + "coordonnees_gps": [ + 43.1830063532, + -0.448422921821 + ], + "libelle_d_acheminement": "LASSEUBETAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.448422921821, + 43.1830063532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77861f52f546069d231af42c15ad4a22daa078d0", + "fields": { + "code_commune_insee": "62763", + "nom_de_la_commune": "ST MICHEL SUR TERNOISE", + "code_postal": "62130", + "coordonnees_gps": [ + 50.375190709, + 2.36052687199 + ], + "libelle_d_acheminement": "ST MICHEL SUR TERNOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36052687199, + 50.375190709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "235d3ed34c2b3781e0e8d9c6ce1899156acbb3a7", + "fields": { + "code_commune_insee": "64327", + "nom_de_la_commune": "LECUMBERRY", + "code_postal": "64220", + "coordonnees_gps": [ + 43.0676995332, + -1.1247200726 + ], + "libelle_d_acheminement": "LECUMBERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1247200726, + 43.0676995332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "546d01452707a7f28a9ffc3743bb8086ef0485f9", + "fields": { + "code_commune_insee": "62769", + "nom_de_la_commune": "ST TRICAT", + "code_postal": "62185", + "coordonnees_gps": [ + 50.8926601154, + 1.82664044658 + ], + "libelle_d_acheminement": "ST TRICAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82664044658, + 50.8926601154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "408b015655bd4fe62cd7bafb87ed408c19928f32", + "fields": { + "code_commune_insee": "64328", + "nom_de_la_commune": "LEDEUIX", + "code_postal": "64400", + "coordonnees_gps": [ + 43.2320564193, + -0.611443821671 + ], + "libelle_d_acheminement": "LEDEUIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.611443821671, + 43.2320564193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59f7f54b7f9c9de955871acbf55b3cf63d8776df", + "fields": { + "code_commune_insee": "62771", + "nom_de_la_commune": "SALLAUMINES", + "code_postal": "62430", + "coordonnees_gps": [ + 50.4204336349, + 2.85999934529 + ], + "libelle_d_acheminement": "SALLAUMINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85999934529, + 50.4204336349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fffe26924aae2a2d1a2c87d487920a4ea5d70a17", + "fields": { + "code_commune_insee": "64332", + "nom_de_la_commune": "LEME", + "code_postal": "64450", + "coordonnees_gps": [ + 43.4960890658, + -0.360478701676 + ], + "libelle_d_acheminement": "LEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.360478701676, + 43.4960890658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb88d95c9264029f36028e6f04282ded2f88e24d", + "fields": { + "ligne_5": "BLERIOT", + "code_commune_insee": "62774", + "libelle_d_acheminement": "SANGATTE", + "code_postal": "62231", + "nom_de_la_commune": "SANGATTE", + "coordonnees_gps": [ + 50.9410415453, + 1.76958356617 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76958356617, + 50.9410415453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bcddbd3e4fbed8e793832de13e1f1993fe4ff11", + "fields": { + "code_commune_insee": "64337", + "nom_de_la_commune": "LESPIELLE", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4688456772, + -0.154777907241 + ], + "libelle_d_acheminement": "LESPIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.154777907241, + 43.4688456772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9dd05f2a3a279facd4142cde73b4e9662c0f53b", + "fields": { + "code_commune_insee": "62785", + "nom_de_la_commune": "SAVY BERLETTE", + "code_postal": "62690", + "coordonnees_gps": [ + 50.3544160083, + 2.55845813427 + ], + "libelle_d_acheminement": "SAVY BERLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55845813427, + 50.3544160083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47a270faee28b1d323859e547cab891ce6b4dedb", + "fields": { + "code_commune_insee": "64345", + "nom_de_la_commune": "LOHITZUN OYHERCQ", + "code_postal": "64120", + "coordonnees_gps": [ + 43.271181894, + -0.966424793959 + ], + "libelle_d_acheminement": "LOHITZUN OYHERCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.966424793959, + 43.271181894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63bc3e14f2c6f19ea93388c690d52e9558fcb91b", + "fields": { + "code_commune_insee": "62789", + "nom_de_la_commune": "SENLECQUES", + "code_postal": "62240", + "coordonnees_gps": [ + 50.6500062435, + 1.93647679876 + ], + "libelle_d_acheminement": "SENLECQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93647679876, + 50.6500062435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eca8cb08ebb996641e9389e66a9967db4d7e7f7b", + "fields": { + "code_commune_insee": "64346", + "nom_de_la_commune": "LOMBIA", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3292789984, + -0.132750238483 + ], + "libelle_d_acheminement": "LOMBIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.132750238483, + 43.3292789984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e1dad2617c1f49132b83acf21cd3050e44ce6fc", + "fields": { + "code_commune_insee": "62791", + "nom_de_la_commune": "SERICOURT", + "code_postal": "62270", + "coordonnees_gps": [ + 50.2955629239, + 2.31306293309 + ], + "libelle_d_acheminement": "SERICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31306293309, + 50.2955629239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "371546621f2d72a2f5b8fb83527d65946185f727", + "fields": { + "code_commune_insee": "64354", + "nom_de_la_commune": "LOUVIE SOUBIRON", + "code_postal": "64440", + "coordonnees_gps": [ + 43.0139182282, + -0.33273247908 + ], + "libelle_d_acheminement": "LOUVIE SOUBIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33273247908, + 43.0139182282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ae09d72ba06710f6d5a9e090daa14e20b537b92", + "fields": { + "code_commune_insee": "62798", + "nom_de_la_commune": "SOMBRIN", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2376406968, + 2.50522767518 + ], + "libelle_d_acheminement": "SOMBRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50522767518, + 50.2376406968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6056a88ab3d589d33335e707b0f5251ca46f0fa", + "fields": { + "code_commune_insee": "64359", + "nom_de_la_commune": "LUCQ DE BEARN", + "code_postal": "64360", + "coordonnees_gps": [ + 43.2979508598, + -0.647527637305 + ], + "libelle_d_acheminement": "LUCQ DE BEARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.647527637305, + 43.2979508598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c3c9c10c7fdc74bef85c4aec998b39eb93cfa0c", + "fields": { + "code_commune_insee": "62799", + "nom_de_la_commune": "SORRUS", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4564208466, + 1.71453079549 + ], + "libelle_d_acheminement": "SORRUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71453079549, + 50.4564208466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8299f3ab29b74ae713c041b5bddad2ddff9b6612", + "fields": { + "code_commune_insee": "64366", + "nom_de_la_commune": "MASCARAAS HARON", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5399650569, + -0.217995397037 + ], + "libelle_d_acheminement": "MASCARAAS HARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.217995397037, + 43.5399650569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da499a32a78062a06598386e615c198a33297faa", + "fields": { + "code_commune_insee": "62805", + "nom_de_la_commune": "TANGRY", + "code_postal": "62550", + "coordonnees_gps": [ + 50.4621592652, + 2.36013300414 + ], + "libelle_d_acheminement": "TANGRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36013300414, + 50.4621592652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "868d7a4bdf7fdb4d163ec177bdf9c1eda27ab3cf", + "fields": { + "code_commune_insee": "64370", + "nom_de_la_commune": "MAUCOR", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3565898582, + -0.284966466044 + ], + "libelle_d_acheminement": "MAUCOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.284966466044, + 43.3565898582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28d28073ae11b471445ece9795aa63cbab6d5d07", + "fields": { + "code_commune_insee": "62809", + "nom_de_la_commune": "TERNAS", + "code_postal": "62127", + "coordonnees_gps": [ + 50.3394097594, + 2.39775976719 + ], + "libelle_d_acheminement": "TERNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39775976719, + 50.3394097594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10eed580fa67dba1ed6ea37f50d0754074bf4665", + "fields": { + "code_commune_insee": "64377", + "nom_de_la_commune": "MENDIONDE", + "code_postal": "64240", + "coordonnees_gps": [ + 43.3375302797, + -1.28633130956 + ], + "libelle_d_acheminement": "MENDIONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28633130956, + 43.3375302797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20a9555a7f242889b01d8d10f71e6831676ace9a", + "fields": { + "code_commune_insee": "62810", + "nom_de_la_commune": "THELUS", + "code_postal": "62580", + "coordonnees_gps": [ + 50.350962843, + 2.79959112856 + ], + "libelle_d_acheminement": "THELUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79959112856, + 50.350962843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a21a2d9ac11ce349b72c9f85796954f6521692b8", + "fields": { + "code_commune_insee": "64385", + "nom_de_la_commune": "MIOSSENS LANUSSE", + "code_postal": "64450", + "coordonnees_gps": [ + 43.4678287713, + -0.302302705005 + ], + "libelle_d_acheminement": "MIOSSENS LANUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.302302705005, + 43.4678287713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d9fa9a37b35e031a8c1b49f3f71d558021012c7", + "fields": { + "code_commune_insee": "62815", + "nom_de_la_commune": "TIGNY NOYELLE", + "code_postal": "62180", + "coordonnees_gps": [ + 50.3549622929, + 1.70803750479 + ], + "libelle_d_acheminement": "TIGNY NOYELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70803750479, + 50.3549622929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6099a2cd3c2bed9c518074a2e65b3f189dc96f1b", + "fields": { + "code_commune_insee": "64386", + "nom_de_la_commune": "MIREPEIX", + "code_postal": "64800", + "coordonnees_gps": [ + 43.1933700705, + -0.250922042302 + ], + "libelle_d_acheminement": "MIREPEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.250922042302, + 43.1933700705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a23a603dc227af9f95484d7f5d0c2c9f621e43e9", + "fields": { + "code_commune_insee": "62820", + "nom_de_la_commune": "TINCQUES", + "code_postal": "62127", + "coordonnees_gps": [ + 50.3598646909, + 2.49403198382 + ], + "libelle_d_acheminement": "TINCQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49403198382, + 50.3598646909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a60e034bf0070382bf44762963a6b07f1ce17add", + "fields": { + "code_commune_insee": "64388", + "nom_de_la_commune": "MOMY", + "code_postal": "64350", + "coordonnees_gps": [ + 43.387860585, + -0.103108977353 + ], + "libelle_d_acheminement": "MOMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.103108977353, + 43.387860585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21559bbc095926e4db68e3a8172cc71b6bc6100c", + "fields": { + "code_commune_insee": "62825", + "nom_de_la_commune": "TORTEQUESNE", + "code_postal": "62490", + "coordonnees_gps": [ + 50.2909229989, + 3.03256081417 + ], + "libelle_d_acheminement": "TORTEQUESNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03256081417, + 50.2909229989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5467a2e59fd81a464b1a5f011c58b0248afa8dfd", + "fields": { + "code_commune_insee": "64391", + "nom_de_la_commune": "MONCAYOLLE LARRORY MENDIBIEU", + "code_postal": "64130", + "coordonnees_gps": [ + 43.2662281317, + -0.828462255248 + ], + "libelle_d_acheminement": "MONCAYOLLE LARRORY MENDIBIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.828462255248, + 43.2662281317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1955abe0e4b4a6883ecb7c8fe4e7b4680d41df56", + "fields": { + "code_commune_insee": "62830", + "nom_de_la_commune": "TRESCAULT", + "code_postal": "62147", + "coordonnees_gps": [ + 50.0904387311, + 3.09682034258 + ], + "libelle_d_acheminement": "TRESCAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09682034258, + 50.0904387311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a02b6eeba7a216d246cfd33bda45a21295e29868", + "fields": { + "ligne_5": "LENDRESSE", + "code_commune_insee": "64396", + "libelle_d_acheminement": "MONT", + "code_postal": "64300", + "nom_de_la_commune": "MONT", + "coordonnees_gps": [ + 43.4270216184, + -0.659420644515 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.659420644515, + 43.4270216184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7995404f4633a8346e7a9be68dc0ce4351b7c9b7", + "fields": { + "code_commune_insee": "62842", + "nom_de_la_commune": "VENDIN LE VIEIL", + "code_postal": "62880", + "coordonnees_gps": [ + 50.4703783932, + 2.85384547397 + ], + "libelle_d_acheminement": "VENDIN LE VIEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85384547397, + 50.4703783932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "486e38144e7dade95a539e4ce6debd85a951f686", + "fields": { + "code_commune_insee": "64398", + "nom_de_la_commune": "MONTANER", + "code_postal": "64460", + "coordonnees_gps": [ + 43.3465278822, + -0.0133879488811 + ], + "libelle_d_acheminement": "MONTANER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0133879488811, + 43.3465278822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85f85c2abdf765f797bce14bbab1fdfb2938cfe2", + "fields": { + "code_commune_insee": "62846", + "nom_de_la_commune": "VERMELLES", + "code_postal": "62980", + "coordonnees_gps": [ + 50.4869056542, + 2.75733602392 + ], + "libelle_d_acheminement": "VERMELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75733602392, + 50.4869056542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d138e2541833db9bc964ac6b5a9b4116da2e2a2f", + "fields": { + "code_commune_insee": "64419", + "nom_de_la_commune": "NOUSTY", + "code_postal": "64420", + "coordonnees_gps": [ + 43.2651949251, + -0.218820025106 + ], + "libelle_d_acheminement": "NOUSTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.218820025106, + 43.2651949251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01a6a3449e109734b2931bcd5a5f6099e9e66ab8", + "fields": { + "code_commune_insee": "62849", + "nom_de_la_commune": "VERTON", + "code_postal": "62180", + "coordonnees_gps": [ + 50.4023869418, + 1.65093274373 + ], + "libelle_d_acheminement": "VERTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65093274373, + 50.4023869418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec7424cf444acd68993c1de57c5933d39818b83a", + "fields": { + "code_commune_insee": "64428", + "nom_de_la_commune": "ORRIULE", + "code_postal": "64390", + "coordonnees_gps": [ + 43.4054035607, + -0.850232826718 + ], + "libelle_d_acheminement": "ORRIULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.850232826718, + 43.4054035607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0dcc6e231ddedbc9e36d41f481047e998227462", + "fields": { + "code_commune_insee": "62855", + "nom_de_la_commune": "VILLERS AU FLOS", + "code_postal": "62450", + "coordonnees_gps": [ + 50.0787621287, + 2.90542012766 + ], + "libelle_d_acheminement": "VILLERS AU FLOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90542012766, + 50.0787621287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36ee81057ed18f5bcef45faccc9d000223d32f12", + "fields": { + "code_commune_insee": "64429", + "nom_de_la_commune": "ORSANCO", + "code_postal": "64120", + "coordonnees_gps": [ + 43.2901022225, + -1.06406979337 + ], + "libelle_d_acheminement": "ORSANCO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06406979337, + 43.2901022225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ab4aa295a595ec7b07e4d282ad73067b1b16812", + "fields": { + "code_commune_insee": "62856", + "nom_de_la_commune": "VILLERS BRULIN", + "code_postal": "62690", + "coordonnees_gps": [ + 50.3727264691, + 2.52941539032 + ], + "libelle_d_acheminement": "VILLERS BRULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52941539032, + 50.3727264691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ee1d320b2c41b59c405ce03f61cb77992a5901f", + "fields": { + "code_commune_insee": "64432", + "nom_de_la_commune": "OSSAS SUHARE", + "code_postal": "64470", + "coordonnees_gps": [ + 43.138521728, + -0.907399706648 + ], + "libelle_d_acheminement": "OSSAS SUHARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.907399706648, + 43.138521728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3056d12d4ed77970620c2e6c773d4c8072072818", + "fields": { + "code_commune_insee": "62859", + "nom_de_la_commune": "VILLERS L HOPITAL", + "code_postal": "62390", + "coordonnees_gps": [ + 50.2291696538, + 2.21010808284 + ], + "libelle_d_acheminement": "VILLERS L HOPITAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21010808284, + 50.2291696538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e383c872d77addb532ef20f3d575c15b112e327", + "fields": { + "code_commune_insee": "64435", + "nom_de_la_commune": "OSSERAIN RIVAREYTE", + "code_postal": "64390", + "coordonnees_gps": [ + 43.3723824956, + -0.953308055466 + ], + "libelle_d_acheminement": "OSSERAIN RIVAREYTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.953308055466, + 43.3723824956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "969575e5fbd3ad1b976061e4f252ef0787908afd", + "fields": { + "code_commune_insee": "62862", + "nom_de_la_commune": "VINCLY", + "code_postal": "62310", + "coordonnees_gps": [ + 50.5561858278, + 2.17901178873 + ], + "libelle_d_acheminement": "VINCLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17901178873, + 50.5561858278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "803344f279ba7397c3b48b422e594655b626b599", + "fields": { + "code_commune_insee": "64439", + "nom_de_la_commune": "OUSSE", + "code_postal": "64320", + "coordonnees_gps": [ + 43.2791521961, + -0.267307850969 + ], + "libelle_d_acheminement": "OUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.267307850969, + 43.2791521961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77d5b0f66b59252b0d4d625b200113da277d8b61", + "fields": { + "code_commune_insee": "62863", + "nom_de_la_commune": "VIOLAINES", + "code_postal": "62138", + "coordonnees_gps": [ + 50.5377604504, + 2.77970850314 + ], + "libelle_d_acheminement": "VIOLAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77970850314, + 50.5377604504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a985d3ba7a83547c157417d5f333ef97d46df794", + "fields": { + "code_commune_insee": "64446", + "nom_de_la_commune": "PEYRELONGUE ABOS", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4185756604, + -0.101559098685 + ], + "libelle_d_acheminement": "PEYRELONGUE ABOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.101559098685, + 43.4185756604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c856579ca97e34840ed6e4bb3074810f0b5f303a", + "fields": { + "code_commune_insee": "62866", + "nom_de_la_commune": "WABEN", + "code_postal": "62180", + "coordonnees_gps": [ + 50.3822929262, + 1.65041372546 + ], + "libelle_d_acheminement": "WABEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65041372546, + 50.3822929262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0efa5c8d58ec9323ad4d27aeefd2b90f2230523", + "fields": { + "code_commune_insee": "64447", + "nom_de_la_commune": "PIETS PLASENCE MOUSTROU", + "code_postal": "64410", + "coordonnees_gps": [ + 43.527482932, + -0.504651341722 + ], + "libelle_d_acheminement": "PIETS PLASENCE MOUSTROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.504651341722, + 43.527482932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "048b8fb478fcc488222588dd21d10fabecda0dcc", + "fields": { + "code_commune_insee": "62867", + "nom_de_la_commune": "WACQUINGHEN", + "code_postal": "62250", + "coordonnees_gps": [ + 50.780796244, + 1.66928695416 + ], + "libelle_d_acheminement": "WACQUINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66928695416, + 50.780796244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "120f288f9536f99847ac5ae70e2154226b2149bb", + "fields": { + "code_commune_insee": "64456", + "nom_de_la_commune": "POULIACQ", + "code_postal": "64410", + "coordonnees_gps": [ + 43.5244222238, + -0.355722297241 + ], + "libelle_d_acheminement": "POULIACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.355722297241, + 43.5244222238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a022173c11df1dc033d086266290708b33428ec", + "fields": { + "code_commune_insee": "62871", + "nom_de_la_commune": "WAMBERCOURT", + "code_postal": "62140", + "coordonnees_gps": [ + 50.4340661657, + 2.0238876189 + ], + "libelle_d_acheminement": "WAMBERCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0238876189, + 50.4340661657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0aadefb0b2a87364daa72d0a948a90424732fcd", + "fields": { + "code_commune_insee": "64460", + "nom_de_la_commune": "PRECILHON", + "code_postal": "64400", + "coordonnees_gps": [ + 43.1957778723, + -0.57297399961 + ], + "libelle_d_acheminement": "PRECILHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57297399961, + 43.1957778723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf136c697511bb13231636ebdbee279d670511b7", + "fields": { + "code_commune_insee": "62873", + "nom_de_la_commune": "WANCOURT", + "code_postal": "62128", + "coordonnees_gps": [ + 50.256058557, + 2.85524996324 + ], + "libelle_d_acheminement": "WANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85524996324, + 50.256058557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aab5ad4edd05a80d0ddce46e6d2c29160d4087b1", + "fields": { + "code_commune_insee": "64465", + "nom_de_la_commune": "RIUPEYROUS", + "code_postal": "64160", + "coordonnees_gps": [ + 43.4007685011, + -0.231595867903 + ], + "libelle_d_acheminement": "RIUPEYROUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.231595867903, + 43.4007685011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "769208c75c677749821aa55480accc9e7b365534", + "fields": { + "code_commune_insee": "62877", + "nom_de_la_commune": "WARLINCOURT LES PAS", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1841807304, + 2.50628872795 + ], + "libelle_d_acheminement": "WARLINCOURT LES PAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50628872795, + 50.1841807304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0ed96208e8c49bc8cb0233ccdf904ff6ae70a59", + "fields": { + "code_commune_insee": "64467", + "nom_de_la_commune": "RONTIGNON", + "code_postal": "64110", + "coordonnees_gps": [ + 43.2476646594, + -0.339294477978 + ], + "libelle_d_acheminement": "RONTIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.339294477978, + 43.2476646594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2807ff91f6af1bba15469391840cec46c61a65ec", + "fields": { + "code_commune_insee": "62881", + "nom_de_la_commune": "BEAUVOIR WAVANS", + "code_postal": "62390", + "coordonnees_gps": [ + 50.2165851287, + 2.1653582453 + ], + "libelle_d_acheminement": "BEAUVOIR WAVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1653582453, + 50.2165851287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a27660b6c781cd6081ebc399b90b787d1a4f0ef", + "fields": { + "code_commune_insee": "64468", + "nom_de_la_commune": "ROQUIAGUE", + "code_postal": "64130", + "coordonnees_gps": [ + 43.1855341651, + -0.84137929952 + ], + "libelle_d_acheminement": "ROQUIAGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.84137929952, + 43.1855341651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58f0e71fcdb11491bdeb19449246f09f19784a72", + "fields": { + "code_commune_insee": "62895", + "nom_de_la_commune": "WINGLES", + "code_postal": "62410", + "coordonnees_gps": [ + 50.4951923669, + 2.85777326738 + ], + "libelle_d_acheminement": "WINGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85777326738, + 50.4951923669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "487602af679d9387a54b3a22a6fa9a179da58ac1", + "fields": { + "code_commune_insee": "64469", + "nom_de_la_commune": "ST ABIT", + "code_postal": "64800", + "coordonnees_gps": [ + 43.2039364358, + -0.300077200774 + ], + "libelle_d_acheminement": "ST ABIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.300077200774, + 43.2039364358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48cf7ce7436fd156cef100a5a78d705d413fc5eb", + "fields": { + "ligne_5": "LA RECOUSSE", + "code_commune_insee": "62904", + "libelle_d_acheminement": "ZOUAFQUES", + "code_postal": "62890", + "nom_de_la_commune": "ZOUAFQUES", + "coordonnees_gps": [ + 50.8228097659, + 2.05320953187 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05320953187, + 50.8228097659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac24df84d13b2a93840dad3861dbd0baf2b4c488", + "fields": { + "code_commune_insee": "64473", + "nom_de_la_commune": "STE COLOME", + "code_postal": "64260", + "coordonnees_gps": [ + 43.1097407715, + -0.381940819142 + ], + "libelle_d_acheminement": "STE COLOME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.381940819142, + 43.1097407715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d77c74d65379521a986107b60b0520fe019a4cd3", + "fields": { + "code_commune_insee": "63002", + "nom_de_la_commune": "AIX LA FAYETTE", + "code_postal": "63980", + "coordonnees_gps": [ + 45.5069762836, + 3.52877162272 + ], + "libelle_d_acheminement": "AIX LA FAYETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52877162272, + 45.5069762836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de0f196f43a539f2df9d3c89a9ba6ccc4f4f6f17", + "fields": { + "code_commune_insee": "64474", + "nom_de_la_commune": "ST DOS", + "code_postal": "64270", + "coordonnees_gps": [ + 43.4732115273, + -1.02350466604 + ], + "libelle_d_acheminement": "ST DOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02350466604, + 43.4732115273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4a4d943648b58c7e078347311bb5eb630cb4a8a", + "fields": { + "code_commune_insee": "63005", + "nom_de_la_commune": "ANTOINGT", + "code_postal": "63340", + "coordonnees_gps": [ + 45.5004481767, + 3.18402754188 + ], + "libelle_d_acheminement": "ANTOINGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18402754188, + 45.5004481767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1686a4356872df3f04d3cac0904edb2e9c765a59", + "fields": { + "code_commune_insee": "64485", + "nom_de_la_commune": "ST JEAN PIED DE PORT", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1590812269, + -1.23540759617 + ], + "libelle_d_acheminement": "ST JEAN PIED DE PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23540759617, + 43.1590812269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adbbb43967915c8e90296a6440f2de030ce55225", + "fields": { + "code_commune_insee": "63012", + "nom_de_la_commune": "ARTONNE", + "code_postal": "63460", + "coordonnees_gps": [ + 46.0058522543, + 3.15012499904 + ], + "libelle_d_acheminement": "ARTONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15012499904, + 46.0058522543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c082c02e13f87890c3772300199290e41a2416d", + "fields": { + "code_commune_insee": "64487", + "nom_de_la_commune": "ST JUST IBARRE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.1685351428, + -1.04795747058 + ], + "libelle_d_acheminement": "ST JUST IBARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04795747058, + 43.1685351428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27b55500c247d92842df7cf5d878cbd2956a29de", + "fields": { + "ligne_5": "CHAZELLES", + "code_commune_insee": "63013", + "libelle_d_acheminement": "AUBIAT", + "code_postal": "63260", + "nom_de_la_commune": "AUBIAT", + "coordonnees_gps": [ + 45.9806227322, + 3.19256070994 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19256070994, + 45.9806227322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2c048da9e964ac95f7dac8e935b8c17cc7033c4", + "fields": { + "code_commune_insee": "64501", + "nom_de_la_commune": "SALLESPISSE", + "code_postal": "64300", + "coordonnees_gps": [ + 43.5211031134, + -0.718617217756 + ], + "libelle_d_acheminement": "SALLESPISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.718617217756, + 43.5211031134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35b8cea77222ae81db69d9c278bbe69e8ffbdaea", + "fields": { + "code_commune_insee": "63015", + "nom_de_la_commune": "AUBUSSON D AUVERGNE", + "code_postal": "63120", + "coordonnees_gps": [ + 45.7532116404, + 3.59888416853 + ], + "libelle_d_acheminement": "AUBUSSON D AUVERGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59888416853, + 45.7532116404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c2693bab6f8fd18776296d34cd9c84c48fcfb61", + "fields": { + "code_commune_insee": "64502", + "nom_de_la_commune": "SAMES", + "code_postal": "64520", + "coordonnees_gps": [ + 43.527482395, + -1.16790395141 + ], + "libelle_d_acheminement": "SAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16790395141, + 43.527482395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f58a0f64cc629dc7505763785f2b63b4347fdb1b", + "fields": { + "code_commune_insee": "63017", + "nom_de_la_commune": "AUGNAT", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4140216179, + 3.17930900469 + ], + "libelle_d_acheminement": "AUGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17930900469, + 45.4140216179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b07d696475add0dd5854522b481d5a4186eab173", + "fields": { + "code_commune_insee": "64503", + "nom_de_la_commune": "SAMSONS LION", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4340604062, + -0.119778196465 + ], + "libelle_d_acheminement": "SAMSONS LION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.119778196465, + 43.4340604062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db246612062365755c27e9e69a57e10741fd47f7", + "fields": { + "code_commune_insee": "63019", + "nom_de_la_commune": "AULNAT", + "code_postal": "63510", + "coordonnees_gps": [ + 45.7931829001, + 3.17108169057 + ], + "libelle_d_acheminement": "AULNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17108169057, + 45.7931829001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "880deaab2639ba0e90bb385c4a709b60b206dbf1", + "fields": { + "code_commune_insee": "64504", + "nom_de_la_commune": "SARE", + "code_postal": "64310", + "coordonnees_gps": [ + 43.296231493, + -1.58652920554 + ], + "libelle_d_acheminement": "SARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58652920554, + 43.296231493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a40efab294e4b3c1c49305ec39453fc94ba8e21", + "fields": { + "code_commune_insee": "63020", + "nom_de_la_commune": "AURIERES", + "code_postal": "63210", + "coordonnees_gps": [ + 45.6818392854, + 2.91546780422 + ], + "libelle_d_acheminement": "AURIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91546780422, + 45.6818392854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6863dc47117cbff69b15575e4485db0dfb128c13", + "fields": { + "code_commune_insee": "64505", + "nom_de_la_commune": "SARPOURENX", + "code_postal": "64300", + "coordonnees_gps": [ + 43.4547704018, + -0.715454998778 + ], + "libelle_d_acheminement": "SARPOURENX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.715454998778, + 43.4547704018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88bce5484046f7a77c0f4851807f7a7ee294cd16", + "fields": { + "code_commune_insee": "63022", + "nom_de_la_commune": "AUZAT LA COMBELLE", + "code_postal": "63570", + "coordonnees_gps": [ + 45.4508101492, + 3.32589518501 + ], + "libelle_d_acheminement": "AUZAT LA COMBELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32589518501, + 45.4508101492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27ba4aec8f3e6d8a52b456fa1ac2fe43af403d50", + "fields": { + "code_commune_insee": "64518", + "nom_de_la_commune": "SENDETS", + "code_postal": "64320", + "coordonnees_gps": [ + 43.3023058183, + -0.265755496231 + ], + "libelle_d_acheminement": "SENDETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.265755496231, + 43.3023058183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d4bf2b83228003d8a42adb33df0662b7ebc0a27", + "fields": { + "code_commune_insee": "63033", + "nom_de_la_commune": "BEAUMONT LES RANDAN", + "code_postal": "63310", + "coordonnees_gps": [ + 45.9963944263, + 3.38335354791 + ], + "libelle_d_acheminement": "BEAUMONT LES RANDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38335354791, + 45.9963944263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5d26ca4f8f0ccf3966c44fb28449ab24b5066d2", + "fields": { + "code_commune_insee": "64519", + "nom_de_la_commune": "SERRES CASTET", + "code_postal": "64121", + "coordonnees_gps": [ + 43.3796823116, + -0.366642676872 + ], + "libelle_d_acheminement": "SERRES CASTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.366642676872, + 43.3796823116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d67d7ac9485f4c6d408c1cb8e415a664881dc3b0", + "fields": { + "code_commune_insee": "63035", + "nom_de_la_commune": "BEAUREGARD VENDON", + "code_postal": "63460", + "coordonnees_gps": [ + 45.9656649406, + 3.11312148208 + ], + "libelle_d_acheminement": "BEAUREGARD VENDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11312148208, + 45.9656649406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a8812f8367181ddec4330a39e5ff9a8a78f7f29", + "fields": { + "code_commune_insee": "64525", + "nom_de_la_commune": "SIROS", + "code_postal": "64230", + "coordonnees_gps": [ + 43.3431539318, + -0.489701963125 + ], + "libelle_d_acheminement": "SIROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.489701963125, + 43.3431539318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d5135a3c113ae6e55dc78b0bb9d7f20236ee20b", + "fields": { + "code_commune_insee": "63038", + "nom_de_la_commune": "BESSE ET ST ANASTAISE", + "code_postal": "63610", + "coordonnees_gps": [ + 45.4967792648, + 2.90703862997 + ], + "libelle_d_acheminement": "BESSE ET ST ANASTAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90703862997, + 45.4967792648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7ed64662135709e24ade7b9f9440f0dd9f6c124", + "fields": { + "code_commune_insee": "64528", + "nom_de_la_commune": "SUHESCUN", + "code_postal": "64780", + "coordonnees_gps": [ + 43.2343253939, + -1.19438205249 + ], + "libelle_d_acheminement": "SUHESCUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19438205249, + 43.2343253939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcfa306d004ba3e6fdbfa14381a96a8c764b6b4f", + "fields": { + "code_commune_insee": "63041", + "nom_de_la_commune": "BIOLLET", + "code_postal": "63640", + "coordonnees_gps": [ + 45.9926597245, + 2.69344623164 + ], + "libelle_d_acheminement": "BIOLLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69344623164, + 45.9926597245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8904de9769c8ae9ac4ea8294a7515376c294a025", + "fields": { + "code_commune_insee": "64529", + "nom_de_la_commune": "SUS", + "code_postal": "64190", + "coordonnees_gps": [ + 43.2913255988, + -0.781603331422 + ], + "libelle_d_acheminement": "SUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.781603331422, + 43.2913255988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "721d660784c1868abe75677d857b56b94fe2205e", + "fields": { + "code_commune_insee": "63042", + "nom_de_la_commune": "BLANZAT", + "code_postal": "63112", + "coordonnees_gps": [ + 45.8274618701, + 3.07331572461 + ], + "libelle_d_acheminement": "BLANZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07331572461, + 45.8274618701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44a5a2927628e9daae00e948567feb2e60e0aebb", + "fields": { + "code_commune_insee": "64532", + "nom_de_la_commune": "TADOUSSE USSAU", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5468245822, + -0.192686671692 + ], + "libelle_d_acheminement": "TADOUSSE USSAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.192686671692, + 43.5468245822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "874a2e1dac014ff0f4ae3aaa642a5175cbc27287", + "fields": { + "code_commune_insee": "63053", + "nom_de_la_commune": "BRIFFONS", + "code_postal": "63820", + "coordonnees_gps": [ + 45.7007518204, + 2.65439923771 + ], + "libelle_d_acheminement": "BRIFFONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65439923771, + 45.7007518204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf5400d1697c89786be0a901e441cb68122e509d", + "fields": { + "code_commune_insee": "64536", + "nom_de_la_commune": "THEZE", + "code_postal": "64450", + "coordonnees_gps": [ + 43.4749565308, + -0.344667086414 + ], + "libelle_d_acheminement": "THEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.344667086414, + 43.4749565308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8fb27c0f0380339abed9f4f97667f31b2bfeef9", + "fields": { + "code_commune_insee": "63054", + "nom_de_la_commune": "LE BROC", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5037915614, + 3.25150034962 + ], + "libelle_d_acheminement": "LE BROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25150034962, + 45.5037915614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a405144d9ed9880f0c6ea3367dc8e8688a193a35", + "fields": { + "code_commune_insee": "64546", + "nom_de_la_commune": "URT", + "code_postal": "64240", + "coordonnees_gps": [ + 43.4830789659, + -1.28285405213 + ], + "libelle_d_acheminement": "URT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28285405213, + 43.4830789659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12c40cf026d7637360e2fe27c031927aa799ddca", + "fields": { + "code_commune_insee": "63055", + "nom_de_la_commune": "BROMONT LAMOTHE", + "code_postal": "63230", + "coordonnees_gps": [ + 45.8322474216, + 2.81021693697 + ], + "libelle_d_acheminement": "BROMONT LAMOTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81021693697, + 45.8322474216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05816b3f5935584245d895def7f6ccf30f94661f", + "fields": { + "code_commune_insee": "64548", + "nom_de_la_commune": "UZAN", + "code_postal": "64370", + "coordonnees_gps": [ + 43.4725068198, + -0.502354827029 + ], + "libelle_d_acheminement": "UZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.502354827029, + 43.4725068198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cdfc98327fe14696fbe219e3be42ce6a0c4ab10", + "fields": { + "code_commune_insee": "63066", + "nom_de_la_commune": "CELLES SUR DUROLLE", + "code_postal": "63250", + "coordonnees_gps": [ + 45.8720497687, + 3.65199036079 + ], + "libelle_d_acheminement": "CELLES SUR DUROLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65199036079, + 45.8720497687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70e0d29ca23f6644b68c929a0834f3296c1712ce", + "fields": { + "code_commune_insee": "64558", + "nom_de_la_commune": "VILLEFRANQUE", + "code_postal": "64990", + "coordonnees_gps": [ + 43.4421237778, + -1.44766830875 + ], + "libelle_d_acheminement": "VILLEFRANQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44766830875, + 43.4421237778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88209d32d287f9854c6f75a1b96db21e52303c17", + "fields": { + "code_commune_insee": "63067", + "nom_de_la_commune": "LA CELLETTE", + "code_postal": "63330", + "coordonnees_gps": [ + 46.0955904109, + 2.72649262532 + ], + "libelle_d_acheminement": "LA CELLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72649262532, + 46.0955904109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f34ab8d5b4beae7bb354b4013034fbbea37924e1", + "fields": { + "code_commune_insee": "65003", + "nom_de_la_commune": "ADERVIELLE POUCHERGUES", + "code_postal": "65240", + "coordonnees_gps": [ + 42.8017280148, + 0.389922766373 + ], + "libelle_d_acheminement": "ADERVIELLE POUCHERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.389922766373, + 42.8017280148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09d9c23bd918d804f769bc6e9ac45830537185ef", + "fields": { + "code_commune_insee": "63071", + "nom_de_la_commune": "CEYSSAT", + "code_postal": "63210", + "coordonnees_gps": [ + 45.7698934261, + 2.9244283989 + ], + "libelle_d_acheminement": "CEYSSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9244283989, + 45.7698934261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18cb0689c5b9089bd142f69c996e9f578b86983c", + "fields": { + "code_commune_insee": "65005", + "nom_de_la_commune": "ALLIER", + "code_postal": "65360", + "coordonnees_gps": [ + 43.1800492737, + 0.126791065309 + ], + "libelle_d_acheminement": "ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.126791065309, + 43.1800492737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b45a9aad6cd3bdd13f8546c839d511d8c1c0f44", + "fields": { + "code_commune_insee": "63088", + "nom_de_la_commune": "LA CHAPELLE SUR USSON", + "code_postal": "63580", + "coordonnees_gps": [ + 45.4637778888, + 3.39230982633 + ], + "libelle_d_acheminement": "LA CHAPELLE SUR USSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39230982633, + 45.4637778888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86974f2f9ffd441038e78227e4adde2b849c5095", + "fields": { + "code_commune_insee": "65010", + "nom_de_la_commune": "ANGOS", + "code_postal": "65690", + "coordonnees_gps": [ + 43.1986038545, + 0.161492581105 + ], + "libelle_d_acheminement": "ANGOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.161492581105, + 43.1986038545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "942682d8e9c80bc4cb7a1f2428bc18208321600b", + "fields": { + "code_commune_insee": "63089", + "nom_de_la_commune": "CHAPPES", + "code_postal": "63720", + "coordonnees_gps": [ + 45.8653394386, + 3.22674645901 + ], + "libelle_d_acheminement": "CHAPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22674645901, + 45.8653394386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57bffe044e49ab12e364477a732ee328b08685fd", + "fields": { + "code_commune_insee": "65028", + "nom_de_la_commune": "ARNE", + "code_postal": "65670", + "coordonnees_gps": [ + 43.1810099467, + 0.492692454567 + ], + "libelle_d_acheminement": "ARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.492692454567, + 43.1810099467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1c9739439e91de99c5857c3217ee1c956d2803a", + "fields": { + "code_commune_insee": "63090", + "nom_de_la_commune": "CHAPTUZAT", + "code_postal": "63260", + "coordonnees_gps": [ + 46.0302322013, + 3.17010831836 + ], + "libelle_d_acheminement": "CHAPTUZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17010831836, + 46.0302322013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "363b3fd19bd03256a866436e4d40c8a54a337118", + "fields": { + "code_commune_insee": "65029", + "nom_de_la_commune": "ARRAS EN LAVEDAN", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9675038855, + -0.143830716437 + ], + "libelle_d_acheminement": "ARRAS EN LAVEDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.143830716437, + 42.9675038855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22d670148e95a552c0e02aac7073a8a062c7d13e", + "fields": { + "code_commune_insee": "63092", + "nom_de_la_commune": "CHARBONNIERES LES VARENNES", + "code_postal": "63410", + "coordonnees_gps": [ + 45.8981076915, + 2.98002956187 + ], + "libelle_d_acheminement": "CHARBONNIERES LES VARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98002956187, + 45.8981076915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "351d70e944f50160f831735525a5c18789b4991d", + "fields": { + "code_commune_insee": "65034", + "nom_de_la_commune": "ARRODETS", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0305965563, + 0.281033647397 + ], + "libelle_d_acheminement": "ARRODETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.281033647397, + 43.0305965563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd82e6c4e8f27dfb03bff001b4b9724ea950cb4e", + "fields": { + "code_commune_insee": "63098", + "nom_de_la_commune": "CHASTREIX", + "code_postal": "63680", + "coordonnees_gps": [ + 45.5125229995, + 2.7534823407 + ], + "libelle_d_acheminement": "CHASTREIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7534823407, + 45.5125229995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dd2e9aafba5fed1f98983cf58cf867c6d3b7212", + "fields": { + "code_commune_insee": "65037", + "nom_de_la_commune": "ARTIGUEMY", + "code_postal": "65130", + "coordonnees_gps": [ + 43.1262809012, + 0.246205576137 + ], + "libelle_d_acheminement": "ARTIGUEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.246205576137, + 43.1262809012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "261e968ace20f551fb9e362339cdbcaffd729fcb", + "fields": { + "code_commune_insee": "63102", + "nom_de_la_commune": "CHATELDON", + "code_postal": "63290", + "coordonnees_gps": [ + 45.9733956022, + 3.55296275066 + ], + "libelle_d_acheminement": "CHATELDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55296275066, + 45.9733956022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4119e8a9166bade41fe908d0f681d4097aedbd75", + "fields": { + "code_commune_insee": "65042", + "nom_de_la_commune": "ASTE", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0169757045, + 0.216169122937 + ], + "libelle_d_acheminement": "ASTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.216169122937, + 43.0169757045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72d3f5c5ec6114cc2c318a085edb67f426dee9a2", + "fields": { + "code_commune_insee": "63105", + "nom_de_la_commune": "CHAUMONT LE BOURG", + "code_postal": "63220", + "coordonnees_gps": [ + 45.4581251093, + 3.76551615562 + ], + "libelle_d_acheminement": "CHAUMONT LE BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76551615562, + 45.4581251093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27d432c14116c6fb4eaaa7739829e07a433f3ecb", + "fields": { + "code_commune_insee": "65057", + "nom_de_la_commune": "AZEREIX", + "code_postal": "65380", + "coordonnees_gps": [ + 43.208173501, + -0.02380994852 + ], + "libelle_d_acheminement": "AZEREIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.02380994852, + 43.208173501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b64d5d11f1eecb59e43aa9c614dfaac50d5249a7", + "fields": { + "code_commune_insee": "63106", + "nom_de_la_commune": "CHAURIAT", + "code_postal": "63117", + "coordonnees_gps": [ + 45.7437351677, + 3.27755208061 + ], + "libelle_d_acheminement": "CHAURIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27755208061, + 45.7437351677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33a3dd74f54f527d6376eff100b5d49f0ead851f", + "fields": { + "code_commune_insee": "65059", + "nom_de_la_commune": "BAGNERES DE BIGORRE", + "code_postal": "65200", + "coordonnees_gps": [ + 42.9758668859, + 0.132640694318 + ], + "libelle_d_acheminement": "BAGNERES DE BIGORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.132640694318, + 42.9758668859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd76f1119065108940bf9062fefdf7ea7c5de225", + "fields": { + "code_commune_insee": "63108", + "nom_de_la_commune": "LE CHEIX", + "code_postal": "63200", + "coordonnees_gps": [ + 45.9573037327, + 3.18187928237 + ], + "libelle_d_acheminement": "LE CHEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18187928237, + 45.9573037327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "754aa4584556f8573b5f7125f33fdd31bf49cbd7", + "fields": { + "code_commune_insee": "65068", + "nom_de_la_commune": "BARTHE", + "code_postal": "65230", + "coordonnees_gps": [ + 43.287241787, + 0.477330743407 + ], + "libelle_d_acheminement": "BARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.477330743407, + 43.287241787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eab7c02b781498cd283e1639462e2f75dfea43e3", + "fields": { + "code_commune_insee": "63157", + "nom_de_la_commune": "FAYET LE CHATEAU", + "code_postal": "63160", + "coordonnees_gps": [ + 45.6792802707, + 3.40952344824 + ], + "libelle_d_acheminement": "FAYET LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40952344824, + 45.6792802707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd0ca2b5b9335a4b4e1c7be1288443927cd80a2d", + "fields": { + "ligne_5": "MOLERE", + "code_commune_insee": "65081", + "libelle_d_acheminement": "BENQUE MOLERE", + "code_postal": "65130", + "nom_de_la_commune": "BENQUE MOLERE", + "coordonnees_gps": [ + 43.0967455334, + 0.279787256256 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.279787256256, + 43.0967455334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31ac121b2e91395d8d4c176e910280f83b1e51bb", + "fields": { + "code_commune_insee": "63163", + "nom_de_la_commune": "GELLES", + "code_postal": "63740", + "coordonnees_gps": [ + 45.7617631556, + 2.77069441162 + ], + "libelle_d_acheminement": "GELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77069441162, + 45.7617631556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8162403b53cec89f4a3415e45dcf128d788346c7", + "fields": { + "code_commune_insee": "65083", + "nom_de_la_commune": "BERNAC DEBAT", + "code_postal": "65360", + "coordonnees_gps": [ + 43.1695672176, + 0.110496542104 + ], + "libelle_d_acheminement": "BERNAC DEBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.110496542104, + 43.1695672176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "853f9270fd1f93e81d50e5c8f382eee50ed3c7c8", + "fields": { + "code_commune_insee": "63169", + "nom_de_la_commune": "LA GODIVELLE", + "code_postal": "63850", + "coordonnees_gps": [ + 45.389984353, + 2.91731415419 + ], + "libelle_d_acheminement": "LA GODIVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91731415419, + 45.389984353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feb4a8905d01d118f7991bc038f86e00af3fd7bd", + "fields": { + "code_commune_insee": "65087", + "nom_de_la_commune": "BERTREN", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9991094379, + 0.617157070005 + ], + "libelle_d_acheminement": "BERTREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.617157070005, + 42.9991094379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58ee8908fe39310ef85cb9a6c7a7f07143cdcab7", + "fields": { + "code_commune_insee": "63172", + "nom_de_la_commune": "GRANDEYROLLES", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5829881204, + 3.04671739846 + ], + "libelle_d_acheminement": "GRANDEYROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04671739846, + 45.5829881204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2c50c9e9a53f0b8f2a8b88eb923ebfb17b10eee", + "fields": { + "code_commune_insee": "65091", + "nom_de_la_commune": "BETTES", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0802858213, + 0.219226356205 + ], + "libelle_d_acheminement": "BETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.219226356205, + 43.0802858213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19c78fbbe8f4850af5715a2cc41bf66ea084c86f", + "fields": { + "code_commune_insee": "63174", + "nom_de_la_commune": "GRANDVAL", + "code_postal": "63890", + "coordonnees_gps": [ + 45.5959407776, + 3.65123463129 + ], + "libelle_d_acheminement": "GRANDVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65123463129, + 45.5959407776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df483deb51c3d70f0e8293a6db5237e6fd6eead5", + "fields": { + "ligne_5": "BEYREDE JUMET", + "code_commune_insee": "65092", + "libelle_d_acheminement": "BEYREDE JUMET CAMOUS", + "code_postal": "65410", + "nom_de_la_commune": "BEYREDE JUMET CAMOUS", + "coordonnees_gps": [ + 42.9554911892, + 0.338191810154 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.338191810154, + 42.9554911892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4201066eaf1e83e96603c9b969cf352826e75320", + "fields": { + "code_commune_insee": "63184", + "nom_de_la_commune": "LACHAUX", + "code_postal": "63290", + "coordonnees_gps": [ + 45.9923135282, + 3.59392264341 + ], + "libelle_d_acheminement": "LACHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59392264341, + 45.9923135282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77e139ccdca7f18109a1b0f624aad34804d0571f", + "fields": { + "code_commune_insee": "65093", + "nom_de_la_commune": "BIZE", + "code_postal": "65150", + "coordonnees_gps": [ + 43.0352737792, + 0.462210784813 + ], + "libelle_d_acheminement": "BIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.462210784813, + 43.0352737792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00ca83ba44039fa4fd2fa1bb02c9d388a3f7db04", + "fields": { + "code_commune_insee": "63186", + "nom_de_la_commune": "LANDOGNE", + "code_postal": "63380", + "coordonnees_gps": [ + 45.8826859815, + 2.64886685468 + ], + "libelle_d_acheminement": "LANDOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64886685468, + 45.8826859815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aa4621f9e3c9ae66e14ab03d497e41fc85e54fa", + "fields": { + "code_commune_insee": "65094", + "nom_de_la_commune": "BIZOUS", + "code_postal": "65150", + "coordonnees_gps": [ + 43.0645413689, + 0.439986702814 + ], + "libelle_d_acheminement": "BIZOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.439986702814, + 43.0645413689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec0c9be9ec421e836025d58f7d57beb98b4c0911", + "fields": { + "code_commune_insee": "63191", + "nom_de_la_commune": "LASTIC", + "code_postal": "63760", + "coordonnees_gps": [ + 45.7004342968, + 2.57059072951 + ], + "libelle_d_acheminement": "LASTIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57059072951, + 45.7004342968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bae25833726a8614fa55912be8ab978781c09ef", + "fields": { + "code_commune_insee": "65101", + "nom_de_la_commune": "BORDES", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1982212521, + 0.214667029062 + ], + "libelle_d_acheminement": "BORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.214667029062, + 43.1982212521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e2930e5101490924d1faf250ae474fef0c85460", + "fields": { + "code_commune_insee": "63195", + "nom_de_la_commune": "LEZOUX", + "code_postal": "63190", + "coordonnees_gps": [ + 45.8287562383, + 3.38628504923 + ], + "libelle_d_acheminement": "LEZOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38628504923, + 45.8287562383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4daf15814abbec2fa06bdcc9dc4178c2011d025e", + "fields": { + "code_commune_insee": "65102", + "nom_de_la_commune": "BOUILH DEVANT", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3365484114, + 0.261492915975 + ], + "libelle_d_acheminement": "BOUILH DEVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.261492915975, + 43.3365484114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73cbc15104cd58fafce4287fd5df50eac83eef38", + "fields": { + "code_commune_insee": "63202", + "nom_de_la_commune": "MADRIAT", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4353691789, + 3.175781685 + ], + "libelle_d_acheminement": "MADRIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.175781685, + 45.4353691789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83f688b037bcb6e34c37cf2b6c4d29628afbc18d", + "fields": { + "code_commune_insee": "65103", + "nom_de_la_commune": "BOUILH PEREUILH", + "code_postal": "65350", + "coordonnees_gps": [ + 43.3091440414, + 0.191684455073 + ], + "libelle_d_acheminement": "BOUILH PEREUILH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.191684455073, + 43.3091440414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc2a34fc182f7383a00f5121e0a3e4a7e7048879", + "fields": { + "code_commune_insee": "63208", + "nom_de_la_commune": "MARCILLAT", + "code_postal": "63440", + "coordonnees_gps": [ + 46.0775559364, + 3.03384594494 + ], + "libelle_d_acheminement": "MARCILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03384594494, + 46.0775559364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "998288b22ad40c5c78b2b436785814c0dab10ef2", + "fields": { + "code_commune_insee": "65106", + "nom_de_la_commune": "BOURISP", + "code_postal": "65170", + "coordonnees_gps": [ + 42.8316716481, + 0.341936826343 + ], + "libelle_d_acheminement": "BOURISP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.341936826343, + 42.8316716481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7668d6e7d80310c99c352f140a3607117361a5e7", + "fields": { + "code_commune_insee": "63211", + "nom_de_la_commune": "MARSAC EN LIVRADOIS", + "code_postal": "63940", + "coordonnees_gps": [ + 45.4804409768, + 3.72202018487 + ], + "libelle_d_acheminement": "MARSAC EN LIVRADOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72202018487, + 45.4804409768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "951c9ea71fa0cd5125e1e587ba1d379dcb339ae6", + "fields": { + "code_commune_insee": "65114", + "nom_de_la_commune": "BUZON", + "code_postal": "65140", + "coordonnees_gps": [ + 43.4467290166, + 0.148400419047 + ], + "libelle_d_acheminement": "BUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.148400419047, + 43.4467290166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45770e6e9048c706f28aeaee836cecee65f7e1ec", + "fields": { + "code_commune_insee": "63213", + "nom_de_la_commune": "LES MARTRES D ARTIERE", + "code_postal": "63430", + "coordonnees_gps": [ + 45.8298275148, + 3.26055281188 + ], + "libelle_d_acheminement": "LES MARTRES D ARTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26055281188, + 45.8298275148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "446371e264cb311f70950ae7b935735627fb4e4b", + "fields": { + "code_commune_insee": "65117", + "nom_de_la_commune": "CADEILHAN TRACHERE", + "code_postal": "65170", + "coordonnees_gps": [ + 42.8105603633, + 0.295350991831 + ], + "libelle_d_acheminement": "CADEILHAN TRACHERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.295350991831, + 42.8105603633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "296ca03c0f2f390c11f9ca985b3b363734506468", + "fields": { + "code_commune_insee": "63214", + "nom_de_la_commune": "LES MARTRES DE VEYRE", + "code_postal": "63730", + "coordonnees_gps": [ + 45.6864206017, + 3.19978584082 + ], + "libelle_d_acheminement": "LES MARTRES DE VEYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19978584082, + 45.6864206017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "635597a9e24271f2d4e6bbc07a1898c6bcdcdbc9", + "fields": { + "code_commune_insee": "65120", + "nom_de_la_commune": "CALAVANTE", + "code_postal": "65190", + "coordonnees_gps": [ + 43.2044624838, + 0.163749395277 + ], + "libelle_d_acheminement": "CALAVANTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.163749395277, + 43.2044624838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2cdb900adea4a49167b0fe6f99596f0f23d2de3", + "fields": { + "code_commune_insee": "63221", + "nom_de_la_commune": "MEDEYROLLES", + "code_postal": "63220", + "coordonnees_gps": [ + 45.407858055, + 3.81792966619 + ], + "libelle_d_acheminement": "MEDEYROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81792966619, + 45.407858055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bd6364d1f7a343207d9237c5bfec2ffecbc83f8", + "fields": { + "ligne_5": "STE MARIE DE CAMPAN", + "code_commune_insee": "65123", + "libelle_d_acheminement": "CAMPAN", + "code_postal": "65710", + "nom_de_la_commune": "CAMPAN", + "coordonnees_gps": [ + 42.9614883707, + 0.217031289795 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.217031289795, + 42.9614883707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "614841c9839859e79185b61c71c52c4b425061f1", + "fields": { + "ligne_5": "MEZEL", + "code_commune_insee": "63226", + "libelle_d_acheminement": "MUR SUR ALLIER", + "code_postal": "63115", + "nom_de_la_commune": "MUR SUR ALLIER", + "coordonnees_gps": [ + 45.7490361428, + 3.24075330378 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24075330378, + 45.7490361428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c68dc74bc26063f7cecf3fe148a3c30172f579a7", + "fields": { + "code_commune_insee": "65129", + "nom_de_la_commune": "CASTELNAU MAGNOAC", + "code_postal": "65230", + "coordonnees_gps": [ + 43.2950835364, + 0.515143167541 + ], + "libelle_d_acheminement": "CASTELNAU MAGNOAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.515143167541, + 43.2950835364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1149d32b01794d024912132e75c31559c6cff8f3", + "fields": { + "code_commune_insee": "63233", + "nom_de_la_commune": "MONTAIGUT", + "code_postal": "63700", + "coordonnees_gps": [ + 46.1800902439, + 2.80149714867 + ], + "libelle_d_acheminement": "MONTAIGUT EN COMBRAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80149714867, + 46.1800902439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb65d42a6d0899c8d11c95f36d06a059f0edfa05", + "fields": { + "code_commune_insee": "65137", + "nom_de_la_commune": "CAUSSADE RIVIERE", + "code_postal": "65700", + "coordonnees_gps": [ + 43.5165153859, + 0.00978618829501 + ], + "libelle_d_acheminement": "CAUSSADE RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00978618829501, + 43.5165153859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd6d54ba5542ece1b8ecb8e81828370eb4a743a9", + "fields": { + "code_commune_insee": "63238", + "nom_de_la_commune": "MONTFERMY", + "code_postal": "63230", + "coordonnees_gps": [ + 45.8710003985, + 2.79757348907 + ], + "libelle_d_acheminement": "MONTFERMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79757348907, + 45.8710003985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa31270e28e813978b9ae6541506134127d5fee4", + "fields": { + "code_commune_insee": "65140", + "nom_de_la_commune": "CAZAUX DEBAT", + "code_postal": "65590", + "coordonnees_gps": [ + 42.887816689, + 0.382896680318 + ], + "libelle_d_acheminement": "CAZAUX DEBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.382896680318, + 42.887816689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a19f6c7efcbcc5b4fdafcc7be0cac9a6adf3cd9", + "fields": { + "code_commune_insee": "63240", + "nom_de_la_commune": "MONTPENSIER", + "code_postal": "63260", + "coordonnees_gps": [ + 46.0378088494, + 3.22643917176 + ], + "libelle_d_acheminement": "MONTPENSIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22643917176, + 46.0378088494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aae6f64b2022132a28cffaf53aaf6731130a5f2e", + "fields": { + "code_commune_insee": "65145", + "nom_de_la_commune": "CHEZE", + "code_postal": "65120", + "coordonnees_gps": [ + 42.920721977, + -0.0219668101648 + ], + "libelle_d_acheminement": "CHEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0219668101648, + 42.920721977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5caa0c560e06f5f5726000669cd9e046efeb4ef0", + "fields": { + "ligne_5": "CELLULE", + "code_commune_insee": "63244", + "libelle_d_acheminement": "CHAMBARON SUR MORGE", + "code_postal": "63200", + "nom_de_la_commune": "CHAMBARON SUR MORGE", + "coordonnees_gps": [ + 45.9678093732, + 3.15096276782 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15096276782, + 45.9678093732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21d237b67b55c2209ea38eeffd8392b515b3d2c4", + "fields": { + "code_commune_insee": "65146", + "nom_de_la_commune": "CHIS", + "code_postal": "65800", + "coordonnees_gps": [ + 43.298262816, + 0.114509982823 + ], + "libelle_d_acheminement": "CHIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.114509982823, + 43.298262816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcc6b082b2ab5d6b7dc6ba2008e2890e380e7877", + "fields": { + "code_commune_insee": "63246", + "nom_de_la_commune": "MURAT LE QUAIRE", + "code_postal": "63150", + "coordonnees_gps": [ + 45.6038610372, + 2.75900504923 + ], + "libelle_d_acheminement": "MURAT LE QUAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75900504923, + 45.6038610372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34707639a6cf931ee6cd1cb7c7e6b7079fbd4853", + "fields": { + "code_commune_insee": "65148", + "nom_de_la_commune": "CIZOS", + "code_postal": "65230", + "coordonnees_gps": [ + 43.262678463, + 0.488561935084 + ], + "libelle_d_acheminement": "CIZOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.488561935084, + 43.262678463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd0586e92e8069c61062a9e799dbbfa37b205160", + "fields": { + "code_commune_insee": "63248", + "nom_de_la_commune": "NEBOUZAT", + "code_postal": "63210", + "coordonnees_gps": [ + 45.7185110259, + 2.91891004508 + ], + "libelle_d_acheminement": "NEBOUZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91891004508, + 45.7185110259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6e062fd3a6beff17ae6cc369ac48a5738135f9b", + "fields": { + "code_commune_insee": "65153", + "nom_de_la_commune": "COUSSAN", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2444618183, + 0.204407038553 + ], + "libelle_d_acheminement": "COUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.204407038553, + 43.2444618183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2971f80ea096029304f1b28df5cd2ba9d77c37a6", + "fields": { + "code_commune_insee": "63253", + "nom_de_la_commune": "NOALHAT", + "code_postal": "63290", + "coordonnees_gps": [ + 45.918505761, + 3.46291211176 + ], + "libelle_d_acheminement": "NOALHAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46291211176, + 45.918505761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "005c84c1aba25a41c05d7913639d9231ec26a079", + "fields": { + "code_commune_insee": "65155", + "nom_de_la_commune": "DEVEZE", + "code_postal": "65230", + "coordonnees_gps": [ + 43.2757053528, + 0.549509061122 + ], + "libelle_d_acheminement": "DEVEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.549509061122, + 43.2757053528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "658667613c20b63f7578339b6566d1083d9da91c", + "fields": { + "code_commune_insee": "63256", + "nom_de_la_commune": "NOVACELLES", + "code_postal": "63220", + "coordonnees_gps": [ + 45.4290595333, + 3.65737870098 + ], + "libelle_d_acheminement": "NOVACELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65737870098, + 45.4290595333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "710334381eefafbfbf258ef540cf1f72838b338e", + "fields": { + "code_commune_insee": "65161", + "nom_de_la_commune": "ESCONDEAUX", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3459510945, + 0.13296588942 + ], + "libelle_d_acheminement": "ESCONDEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13296588942, + 43.3459510945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca4c874b0d13e44e79b64d1da4e20ba23205e94", + "fields": { + "code_commune_insee": "63258", + "nom_de_la_commune": "OLLIERGUES", + "code_postal": "63880", + "coordonnees_gps": [ + 45.6904370225, + 3.63491981442 + ], + "libelle_d_acheminement": "OLLIERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63491981442, + 45.6904370225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15b0fa6c52d05371dc61cf8df82131ee127fa277", + "fields": { + "code_commune_insee": "65163", + "nom_de_la_commune": "ESCOTS", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0602628922, + 0.262268698187 + ], + "libelle_d_acheminement": "ESCOTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.262268698187, + 43.0602628922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b2079a53a43a0977c9a43a4602f8b10f9648d32", + "fields": { + "code_commune_insee": "63261", + "nom_de_la_commune": "ORBEIL", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5711903486, + 3.26877850823 + ], + "libelle_d_acheminement": "ORBEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26877850823, + 45.5711903486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d83448a111e7f81308d0a8dc742a635bb35119fd", + "fields": { + "code_commune_insee": "65164", + "nom_de_la_commune": "ESCOUBES POUTS", + "code_postal": "65100", + "coordonnees_gps": [ + 43.1066062315, + 0.0291146800461 + ], + "libelle_d_acheminement": "ESCOUBES POUTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0291146800461, + 43.1066062315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f3ca90083c9ebb1362f1f1768bf2b0663510575", + "fields": { + "code_commune_insee": "63268", + "nom_de_la_commune": "PARDINES", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5620015974, + 3.182451166 + ], + "libelle_d_acheminement": "PARDINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.182451166, + 45.5620015974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d851b429fe2c0d1d12f6daa63a80c31de42668c", + "fields": { + "code_commune_insee": "65167", + "nom_de_la_commune": "ESPIEILH", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0788602953, + 0.240991510549 + ], + "libelle_d_acheminement": "ESPIEILH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.240991510549, + 43.0788602953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e799af602c2a803c01c28d71e270114283928d8", + "fields": { + "code_commune_insee": "63273", + "nom_de_la_commune": "PERIGNAT SUR ALLIER", + "code_postal": "63800", + "coordonnees_gps": [ + 45.7272486864, + 3.23450898188 + ], + "libelle_d_acheminement": "PERIGNAT SUR ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23450898188, + 45.7272486864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "572c9aea770d374e5b5d805ae155619897432a27", + "fields": { + "code_commune_insee": "65168", + "nom_de_la_commune": "ESQUIEZE SERE", + "code_postal": "65120", + "coordonnees_gps": [ + 42.8807733222, + -0.00717784345508 + ], + "libelle_d_acheminement": "ESQUIEZE SERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00717784345508, + 42.8807733222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "644b2db2b1fad695982ec2d1c9506a6ae3f72e1b", + "fields": { + "code_commune_insee": "63278", + "nom_de_la_commune": "PESSAT VILLENEUVE", + "code_postal": "63200", + "coordonnees_gps": [ + 45.9230389016, + 3.15822094053 + ], + "libelle_d_acheminement": "PESSAT VILLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15822094053, + 45.9230389016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "843a5fc1b4e47b32cd83740ff63c7207b1abc5cb", + "fields": { + "code_commune_insee": "65176", + "nom_de_la_commune": "FERRIERES", + "code_postal": "65560", + "coordonnees_gps": [ + 43.0134440776, + -0.240122106852 + ], + "libelle_d_acheminement": "FERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.240122106852, + 43.0134440776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b0a72f55c3a0f3554fc87c076d220a1123a731f", + "fields": { + "code_commune_insee": "63282", + "nom_de_la_commune": "PLAUZAT", + "code_postal": "63730", + "coordonnees_gps": [ + 45.6197285651, + 3.14814026549 + ], + "libelle_d_acheminement": "PLAUZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14814026549, + 45.6197285651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2ddedc4fbbd8d3ead033ba02b35f22e34548462", + "fields": { + "code_commune_insee": "65185", + "nom_de_la_commune": "GARDERES", + "code_postal": "65320", + "coordonnees_gps": [ + 43.2829450177, + -0.106324179852 + ], + "libelle_d_acheminement": "GARDERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.106324179852, + 43.2829450177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6aa3c8d4a91582ae049aab61a5cd6600d5bc55e", + "fields": { + "code_commune_insee": "63284", + "nom_de_la_commune": "PONT DU CHATEAU", + "code_postal": "63430", + "coordonnees_gps": [ + 45.7984084969, + 3.23957738391 + ], + "libelle_d_acheminement": "PONT DU CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23957738391, + 45.7984084969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acf1e77b3f0a1a1bfe309dd4fade4db2c8c99d36", + "fields": { + "code_commune_insee": "65189", + "nom_de_la_commune": "GAYAN", + "code_postal": "65320", + "coordonnees_gps": [ + 43.3046479242, + 0.0486919047842 + ], + "libelle_d_acheminement": "GAYAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0486919047842, + 43.3046479242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "894d6a65f41289e692c0f95624d44f00b9a250cc", + "fields": { + "code_commune_insee": "63286", + "nom_de_la_commune": "POUZOL", + "code_postal": "63440", + "coordonnees_gps": [ + 46.0943310427, + 2.97381798823 + ], + "libelle_d_acheminement": "POUZOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97381798823, + 46.0943310427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88aa932fb666150957875f0c3ef533fa43c18109", + "fields": { + "code_commune_insee": "65193", + "nom_de_la_commune": "GEMBRIE", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9886064144, + 0.57539500217 + ], + "libelle_d_acheminement": "GEMBRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57539500217, + 42.9886064144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e93654c937a77a1aa81a1a98d1469c8ac4c38ebd", + "fields": { + "code_commune_insee": "63290", + "nom_de_la_commune": "PULVERIERES", + "code_postal": "63230", + "coordonnees_gps": [ + 45.8821936223, + 2.92228975912 + ], + "libelle_d_acheminement": "PULVERIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92228975912, + 45.8821936223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e212924d8c5e89d714e5de09557163d2b0bf54ac", + "fields": { + "code_commune_insee": "65198", + "nom_de_la_commune": "GERDE", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0586379729, + 0.177947425719 + ], + "libelle_d_acheminement": "GERDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.177947425719, + 43.0586379729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f2f972fe85f9ea793f0b8d5e3adbb520854bb30", + "fields": { + "code_commune_insee": "63297", + "nom_de_la_commune": "REIGNAT", + "code_postal": "63160", + "coordonnees_gps": [ + 45.7487299142, + 3.35567413071 + ], + "libelle_d_acheminement": "REIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35567413071, + 45.7487299142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e84c01839988ea4ee6b5a40af4865474aec6080", + "fields": { + "code_commune_insee": "65200", + "nom_de_la_commune": "GERMS SUR L OUSSOUET", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0391620559, + 0.0597615644896 + ], + "libelle_d_acheminement": "GERMS SUR L OUSSOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0597615644896, + 43.0391620559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c8bf9d557d788b9b22365e2a52fbb943f91ac6f", + "fields": { + "code_commune_insee": "63304", + "nom_de_la_commune": "ROCHE D AGOUX", + "code_postal": "63330", + "coordonnees_gps": [ + 46.0409492985, + 2.64213874431 + ], + "libelle_d_acheminement": "ROCHE D AGOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64213874431, + 46.0409492985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b1798bb5f533b3cc1b70b4bd89d43ad7065cfda", + "fields": { + "code_commune_insee": "65206", + "nom_de_la_commune": "GOUDON", + "code_postal": "65190", + "coordonnees_gps": [ + 43.2453593051, + 0.236810689449 + ], + "libelle_d_acheminement": "GOUDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236810689449, + 43.2453593051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3edad441fd604f2d8b52369a3b581b4a2d888afc", + "fields": { + "code_commune_insee": "63313", + "nom_de_la_commune": "ST ALYRE ES MONTAGNE", + "code_postal": "63420", + "coordonnees_gps": [ + 45.3796154166, + 2.97231530365 + ], + "libelle_d_acheminement": "ST ALYRE ES MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97231530365, + 45.3796154166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10dcacd3c76e4c1de587ef12b069843dad47a81c", + "fields": { + "code_commune_insee": "65211", + "nom_de_la_commune": "GUCHAN", + "code_postal": "65170", + "coordonnees_gps": [ + 42.8466893699, + 0.347945425842 + ], + "libelle_d_acheminement": "GUCHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.347945425842, + 42.8466893699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4adfa084a38917a87407f272d2192df514d08ad3", + "fields": { + "code_commune_insee": "63315", + "nom_de_la_commune": "ST AMANT TALLENDE", + "code_postal": "63450", + "coordonnees_gps": [ + 45.6673371467, + 3.10961194917 + ], + "libelle_d_acheminement": "ST AMANT TALLENDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10961194917, + 45.6673371467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7b12b0428f612a4a2d5bd579f7a061829d331b7", + "fields": { + "code_commune_insee": "65212", + "nom_de_la_commune": "GUCHEN", + "code_postal": "65240", + "coordonnees_gps": [ + 42.8574363144, + 0.322355278083 + ], + "libelle_d_acheminement": "GUCHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.322355278083, + 42.8574363144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "196c1573a0ad1cccaad30c6a4e80fb53e733e71b", + "fields": { + "code_commune_insee": "63317", + "nom_de_la_commune": "ST ANDRE LE COQ", + "code_postal": "63310", + "coordonnees_gps": [ + 45.9579209834, + 3.30759631356 + ], + "libelle_d_acheminement": "ST ANDRE LE COQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30759631356, + 45.9579209834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49fdf8507089921178bab370da42b09d5a8d4467", + "fields": { + "code_commune_insee": "65215", + "nom_de_la_commune": "HAGEDET", + "code_postal": "65700", + "coordonnees_gps": [ + 43.5185343099, + -0.0280247100999 + ], + "libelle_d_acheminement": "HAGEDET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0280247100999, + 43.5185343099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aef5567b8fe83fdeba7d7cbd15bd16529177eeb", + "fields": { + "code_commune_insee": "63320", + "nom_de_la_commune": "ST AVIT", + "code_postal": "63380", + "coordonnees_gps": [ + 45.8758919248, + 2.52568725113 + ], + "libelle_d_acheminement": "ST AVIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52568725113, + 45.8758919248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a82003775fc00e3e06272b6ba312622af4591392", + "fields": { + "code_commune_insee": "65219", + "nom_de_la_commune": "HERES", + "code_postal": "65700", + "coordonnees_gps": [ + 43.5504327216, + -0.00223724418856 + ], + "libelle_d_acheminement": "HERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00223724418856, + 43.5504327216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5673d0ff3abc8d88c034b76e12846a15e2830b6e", + "fields": { + "code_commune_insee": "63325", + "nom_de_la_commune": "ST BONNET LES ALLIER", + "code_postal": "63800", + "coordonnees_gps": [ + 45.7393749504, + 3.25532353986 + ], + "libelle_d_acheminement": "ST BONNET LES ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25532353986, + 45.7393749504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d920bfc0852ba3cabba2bda3661af2a5212011e9", + "fields": { + "code_commune_insee": "65225", + "nom_de_la_commune": "HOURC", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2501242697, + 0.17547709876 + ], + "libelle_d_acheminement": "HOURC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17547709876, + 43.2501242697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3265c36a81b557a902ef083ef85f6055a8e965f8", + "fields": { + "code_commune_insee": "63326", + "nom_de_la_commune": "ST BONNET PRES ORCIVAL", + "code_postal": "63210", + "coordonnees_gps": [ + 45.7078488032, + 2.86424850869 + ], + "libelle_d_acheminement": "ST BONNET PRES ORCIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86424850869, + 45.7078488032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10f4332bce8123545b8ab24fe1b61e9af67928f5", + "fields": { + "code_commune_insee": "65228", + "nom_de_la_commune": "ILHET", + "code_postal": "65410", + "coordonnees_gps": [ + 42.963629591, + 0.396133786225 + ], + "libelle_d_acheminement": "ILHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.396133786225, + 42.963629591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0768363769fd1827a2ecd37315b0b4b6ac7c524e", + "fields": { + "code_commune_insee": "63329", + "nom_de_la_commune": "STE CHRISTINE", + "code_postal": "63390", + "coordonnees_gps": [ + 46.0723087961, + 2.83140486418 + ], + "libelle_d_acheminement": "STE CHRISTINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83140486418, + 46.0723087961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3b1cc3f79840c7b9ecc7ee94fb53462939f6358", + "fields": { + "code_commune_insee": "65229", + "nom_de_la_commune": "ILHEU", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9961638122, + 0.601486255429 + ], + "libelle_d_acheminement": "ILHEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.601486255429, + 42.9961638122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26af1f73aae181c18a9c6bbc5a6c99b9e2212c18", + "fields": { + "code_commune_insee": "63332", + "nom_de_la_commune": "ST CLEMENT DE REGNAT", + "code_postal": "63310", + "coordonnees_gps": [ + 45.9980168992, + 3.29522971 + ], + "libelle_d_acheminement": "ST CLEMENT DE REGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29522971, + 45.9980168992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de10f01cdef13c37699d51f2517c7792384e01f3", + "fields": { + "code_commune_insee": "65235", + "nom_de_la_commune": "JUILLAN", + "code_postal": "65290", + "coordonnees_gps": [ + 43.199677324, + 0.0228064029796 + ], + "libelle_d_acheminement": "JUILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0228064029796, + 43.199677324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d71ef087d46b7f33dea056bab549d3e8bc944259", + "fields": { + "code_commune_insee": "63339", + "nom_de_la_commune": "ST ETIENNE DES CHAMPS", + "code_postal": "63380", + "coordonnees_gps": [ + 45.8166087877, + 2.57954692815 + ], + "libelle_d_acheminement": "ST ETIENNE DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57954692815, + 45.8166087877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59c4c685fc659c2cfac94e45d35a35385ae38293", + "fields": { + "code_commune_insee": "65236", + "nom_de_la_commune": "JULOS", + "code_postal": "65100", + "coordonnees_gps": [ + 43.1190514683, + -0.00206249429953 + ], + "libelle_d_acheminement": "JULOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00206249429953, + 43.1190514683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbdc16ad52a64cd03ffdb15f127cbff0311c14f1", + "fields": { + "ligne_5": "BERZET", + "code_commune_insee": "63345", + "libelle_d_acheminement": "ST GENES CHAMPANELLE", + "code_postal": "63122", + "nom_de_la_commune": "ST GENES CHAMPANELLE", + "coordonnees_gps": [ + 45.722927873, + 2.99890145376 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99890145376, + 45.722927873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "854dbfe9f2873feb2be71492ed916df1026f2705", + "fields": { + "code_commune_insee": "65240", + "nom_de_la_commune": "LABATUT RIVIERE", + "code_postal": "65700", + "coordonnees_gps": [ + 43.5257802018, + 0.0335259810087 + ], + "libelle_d_acheminement": "LABATUT RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0335259810087, + 43.5257802018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f352e87d372268a92bb43fa9bba913255440978", + "fields": { + "code_commune_insee": "63348", + "nom_de_la_commune": "ST GENES LA TOURETTE", + "code_postal": "63580", + "coordonnees_gps": [ + 45.5179309213, + 3.48092703199 + ], + "libelle_d_acheminement": "ST GENES LA TOURETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48092703199, + 45.5179309213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7c7c9dd4331cc7a556a4ca7e28822883b9d4de7", + "fields": { + "code_commune_insee": "65248", + "nom_de_la_commune": "LAHITTE TOUPIERE", + "code_postal": "65700", + "coordonnees_gps": [ + 43.4563239551, + -0.013870937842 + ], + "libelle_d_acheminement": "LAHITTE TOUPIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.013870937842, + 43.4563239551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0671a6e7014293975e0a3531a045e8c2d52bde18", + "fields": { + "code_commune_insee": "63349", + "nom_de_la_commune": "ST GEORGES DE MONS", + "code_postal": "63780", + "coordonnees_gps": [ + 45.9425789981, + 2.86525806155 + ], + "libelle_d_acheminement": "ST GEORGES DE MONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86525806155, + 45.9425789981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fc5437b62af879fd5c5af7f79e5effbfd93c61b", + "fields": { + "code_commune_insee": "65250", + "nom_de_la_commune": "LALANNE TRIE", + "code_postal": "65220", + "coordonnees_gps": [ + 43.3116930661, + 0.336259044414 + ], + "libelle_d_acheminement": "LALANNE TRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.336259044414, + 43.3116930661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7794c20d1c716261b7cbc646f5f9fcd139f7350b", + "fields": { + "code_commune_insee": "63355", + "nom_de_la_commune": "ST GERVAIS SOUS MEYMONT", + "code_postal": "63880", + "coordonnees_gps": [ + 45.6698849896, + 3.61279256951 + ], + "libelle_d_acheminement": "ST GERVAIS SOUS MEYMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61279256951, + 45.6698849896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ef10bb7da14d3fbef364e9089c86c89009699cb", + "fields": { + "code_commune_insee": "65262", + "nom_de_la_commune": "LARREULE", + "code_postal": "65700", + "coordonnees_gps": [ + 43.4410472948, + 0.0162059547746 + ], + "libelle_d_acheminement": "LARREULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0162059547746, + 43.4410472948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef6ff761e0f5510360ccd4f26a3eb76e1a056527", + "fields": { + "code_commune_insee": "63357", + "nom_de_la_commune": "ST HERENT", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4603240811, + 3.14016672935 + ], + "libelle_d_acheminement": "ST HERENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14016672935, + 45.4603240811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd359d008b1bfe0f05d6d3c5a1251c7e44800fff", + "fields": { + "ligne_5": "ARMENTEULE", + "code_commune_insee": "65282", + "libelle_d_acheminement": "LOUDENVIELLE", + "code_postal": "65240", + "nom_de_la_commune": "LOUDENVIELLE", + "coordonnees_gps": [ + 42.7300216017, + 0.432583717897 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.432583717897, + 42.7300216017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "579f106f70324c46b4f110d18897a991fc436e44", + "fields": { + "code_commune_insee": "63367", + "nom_de_la_commune": "ST JEAN ST GERVAIS", + "code_postal": "63570", + "coordonnees_gps": [ + 45.4215952823, + 3.38756418048 + ], + "libelle_d_acheminement": "ST JEAN ST GERVAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38756418048, + 45.4215952823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d85e445c47c27fa024d25d282b523455a874a97", + "fields": { + "code_commune_insee": "65288", + "nom_de_la_commune": "LUBRET ST LUC", + "code_postal": "65220", + "coordonnees_gps": [ + 43.3155941399, + 0.298164374881 + ], + "libelle_d_acheminement": "LUBRET ST LUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.298164374881, + 43.3155941399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83b6f084d16daeab7324525fe43d6e4c00d0ed60", + "fields": { + "code_commune_insee": "63370", + "nom_de_la_commune": "ST JULIEN PUY LAVEZE", + "code_postal": "63820", + "coordonnees_gps": [ + 45.6620496707, + 2.67963503526 + ], + "libelle_d_acheminement": "ST JULIEN PUY LAVEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67963503526, + 45.6620496707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66b412c45e50fe7815e2a2a05c9da5c9b2761e94", + "fields": { + "code_commune_insee": "65289", + "nom_de_la_commune": "LUBY BETMONT", + "code_postal": "65220", + "coordonnees_gps": [ + 43.2961360859, + 0.294464255946 + ], + "libelle_d_acheminement": "LUBY BETMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.294464255946, + 43.2961360859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55e5eef86ce0e448882dd19b3695f887bb91e929", + "fields": { + "code_commune_insee": "63381", + "nom_de_la_commune": "ST OURS", + "code_postal": "63230", + "coordonnees_gps": [ + 45.8391495604, + 2.91545146686 + ], + "libelle_d_acheminement": "ST OURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91545146686, + 45.8391495604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83bc61a4287d23952414c167538d9e3d1f31eaf4", + "fields": { + "code_commune_insee": "65294", + "nom_de_la_commune": "LUTILHOUS", + "code_postal": "65300", + "coordonnees_gps": [ + 43.1342737779, + 0.326800783392 + ], + "libelle_d_acheminement": "LUTILHOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.326800783392, + 43.1342737779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45d4051d07c87fbcf0f6049d0c1914e2e178a4df", + "fields": { + "code_commune_insee": "63385", + "nom_de_la_commune": "ST PIERRE LE CHASTEL", + "code_postal": "63230", + "coordonnees_gps": [ + 45.7937961523, + 2.83603887701 + ], + "libelle_d_acheminement": "ST PIERRE LE CHASTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83603887701, + 45.7937961523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7726db5f66008a57d673e364e33f80846ac87046", + "fields": { + "code_commune_insee": "65305", + "nom_de_la_commune": "MAULEON BAROUSSE", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9502723572, + 0.577280685975 + ], + "libelle_d_acheminement": "MAULEON BAROUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.577280685975, + 42.9502723572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ee98303bedb0a67d2f91a1c1cb408e386e2c5c8", + "fields": { + "code_commune_insee": "63388", + "nom_de_la_commune": "ST PRIEST DES CHAMPS", + "code_postal": "63640", + "coordonnees_gps": [ + 45.9720196173, + 2.74903294202 + ], + "libelle_d_acheminement": "ST PRIEST DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74903294202, + 45.9720196173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "017fac949eedc891233dc7a4d3a5cee4f0df08f3", + "fields": { + "code_commune_insee": "65309", + "nom_de_la_commune": "MAZOUAU", + "code_postal": "65250", + "coordonnees_gps": [ + 43.0279073309, + 0.40177065112 + ], + "libelle_d_acheminement": "MAZOUAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40177065112, + 43.0279073309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a922dbe7a6cac4d3baea94cf6ecab92d8047f43", + "fields": { + "code_commune_insee": "63391", + "nom_de_la_commune": "ST REMY DE BLOT", + "code_postal": "63440", + "coordonnees_gps": [ + 46.0773790361, + 2.9483504199 + ], + "libelle_d_acheminement": "ST REMY DE BLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9483504199, + 46.0773790361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a32d50064778b1e532ab88edc0df9d914b34265c", + "fields": { + "code_commune_insee": "65321", + "nom_de_la_commune": "MONTIGNAC", + "code_postal": "65690", + "coordonnees_gps": [ + 43.1821183858, + 0.149533254079 + ], + "libelle_d_acheminement": "MONTIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.149533254079, + 43.1821183858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36a428b4fe52011ca65a037e76a22ba46b990f72", + "fields": { + "code_commune_insee": "63394", + "nom_de_la_commune": "ST ROMAIN", + "code_postal": "63660", + "coordonnees_gps": [ + 45.4923783806, + 3.89615838601 + ], + "libelle_d_acheminement": "ST ROMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89615838601, + 45.4923783806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6aee30f7c79184f58c453bf2c249a4616c0aa24", + "fields": { + "code_commune_insee": "65324", + "nom_de_la_commune": "MOULEDOUS", + "code_postal": "65190", + "coordonnees_gps": [ + 43.2259408269, + 0.250550021139 + ], + "libelle_d_acheminement": "MOULEDOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.250550021139, + 43.2259408269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8213468add3ef1c8f6af985f885763c6edd956ed", + "fields": { + "code_commune_insee": "63396", + "nom_de_la_commune": "ST SATURNIN", + "code_postal": "63450", + "coordonnees_gps": [ + 45.66385711, + 3.07392244735 + ], + "libelle_d_acheminement": "ST SATURNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07392244735, + 45.66385711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3366b09ac69e27fa4eccda6dc91d1b976b4cc5c2", + "fields": { + "code_commune_insee": "65332", + "nom_de_la_commune": "OLEAC DEBAT", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2720706813, + 0.140882447163 + ], + "libelle_d_acheminement": "OLEAC DEBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.140882447163, + 43.2720706813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c528cf7021ba61bc09f0cffe3059b1b7711f4597", + "fields": { + "code_commune_insee": "63401", + "nom_de_la_commune": "ST VICTOR LA RIVIERE", + "code_postal": "63790", + "coordonnees_gps": [ + 45.5489108825, + 2.93527528124 + ], + "libelle_d_acheminement": "ST VICTOR LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93527528124, + 45.5489108825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89ba2e4302fe62a7dcb1324f853af437d5faaef5", + "fields": { + "code_commune_insee": "65336", + "nom_de_la_commune": "ORGAN", + "code_postal": "65230", + "coordonnees_gps": [ + 43.2762051089, + 0.480265014249 + ], + "libelle_d_acheminement": "ORGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.480265014249, + 43.2762051089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f4e58e169ed956cedfc8747fa21d67e6310f87e", + "fields": { + "code_commune_insee": "63410", + "nom_de_la_commune": "SAUVAGNAT", + "code_postal": "63470", + "coordonnees_gps": [ + 45.7557655132, + 2.60931861408 + ], + "libelle_d_acheminement": "SAUVAGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60931861408, + 45.7557655132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de09bb6dda288c4cf5a97501702056d24e7fb234", + "fields": { + "code_commune_insee": "65344", + "nom_de_la_commune": "OSSUN", + "code_postal": "65380", + "coordonnees_gps": [ + 43.1786184221, + -0.0428005714329 + ], + "libelle_d_acheminement": "OSSUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0428005714329, + 43.1786184221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a786509083588c35fcd249fc572051a6acd26533", + "fields": { + "code_commune_insee": "63415", + "nom_de_la_commune": "SAUXILLANGES", + "code_postal": "63490", + "coordonnees_gps": [ + 45.562939202, + 3.37211320059 + ], + "libelle_d_acheminement": "SAUXILLANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37211320059, + 45.562939202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3f476e5df18156839b49d28565eb3199dfa3fcb", + "fields": { + "code_commune_insee": "65362", + "nom_de_la_commune": "PIERREFITTE NESTALAS", + "code_postal": "65260", + "coordonnees_gps": [ + 42.9622556048, + -0.0749478244802 + ], + "libelle_d_acheminement": "PIERREFITTE NESTALAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0749478244802, + 42.9622556048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc44824328f0862e29959258cc206ce791cb309c", + "fields": { + "code_commune_insee": "63424", + "nom_de_la_commune": "SURAT", + "code_postal": "63720", + "coordonnees_gps": [ + 45.9402039693, + 3.25933179692 + ], + "libelle_d_acheminement": "SURAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25933179692, + 45.9402039693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0af0208cbb011bc017e9e4957067ee6c2f8f97fd", + "fields": { + "code_commune_insee": "65364", + "nom_de_la_commune": "PINTAC", + "code_postal": "65320", + "coordonnees_gps": [ + 43.2852132015, + -0.00516132877618 + ], + "libelle_d_acheminement": "PINTAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00516132877618, + 43.2852132015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ee6e286e6e6bd56182134b63b7d2a541e5f13b7", + "fields": { + "code_commune_insee": "63436", + "nom_de_la_commune": "TRALAIGUES", + "code_postal": "63380", + "coordonnees_gps": [ + 45.9013280837, + 2.59396620413 + ], + "libelle_d_acheminement": "TRALAIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59396620413, + 45.9013280837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fa36a32c9e73d16a9db999be8d92c1623398eef", + "fields": { + "code_commune_insee": "65370", + "nom_de_la_commune": "POUZAC", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0809868459, + 0.129487370632 + ], + "libelle_d_acheminement": "POUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.129487370632, + 43.0809868459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5540913a9dc7c5d1d4f92e45a4155b5485f94e0d", + "fields": { + "code_commune_insee": "63449", + "nom_de_la_commune": "LE VERNET STE MARGUERITE", + "code_postal": "63710", + "coordonnees_gps": [ + 45.6163801632, + 2.94006169987 + ], + "libelle_d_acheminement": "LE VERNET STE MARGUERITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94006169987, + 45.6163801632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55be989d44d83a38c006cb04d93957be74cbdcd2", + "fields": { + "code_commune_insee": "65371", + "nom_de_la_commune": "PRECHAC", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9921924128, + -0.0714255631764 + ], + "libelle_d_acheminement": "PRECHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0714255631764, + 42.9921924128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d434995631a31b53eea20b11feccde930b0b1967", + "fields": { + "code_commune_insee": "63452", + "nom_de_la_commune": "VERRIERES", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5681032742, + 3.03553806926 + ], + "libelle_d_acheminement": "VERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03553806926, + 45.5681032742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c2d0ee2ec64a35cefffea81197ffdacc3caeb90", + "fields": { + "code_commune_insee": "65372", + "nom_de_la_commune": "PUJO", + "code_postal": "65500", + "coordonnees_gps": [ + 43.3417978125, + 0.0643943971076 + ], + "libelle_d_acheminement": "PUJO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0643943971076, + 43.3417978125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff02acbd083de164651d52dcfc8180dcf2018bda", + "fields": { + "code_commune_insee": "63469", + "nom_de_la_commune": "VOLLORE VILLE", + "code_postal": "63120", + "coordonnees_gps": [ + 45.7843683155, + 3.61088138658 + ], + "libelle_d_acheminement": "VOLLORE VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61088138658, + 45.7843683155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2439a31bc574eb2bba43e0227279de5bae5d7503", + "fields": { + "code_commune_insee": "65378", + "nom_de_la_commune": "RICAUD", + "code_postal": "65190", + "coordonnees_gps": [ + 43.147168202, + 0.273180802588 + ], + "libelle_d_acheminement": "RICAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.273180802588, + 43.147168202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5065bc40b0e39857de9ec35c689a2ff56e830c71", + "fields": { + "ligne_5": "MONTJOIE", + "code_commune_insee": "63471", + "libelle_d_acheminement": "YOUX", + "code_postal": "63700", + "nom_de_la_commune": "YOUX", + "coordonnees_gps": [ + 46.1408722674, + 2.8044100996 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8044100996, + 46.1408722674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d15f699a9b44f1418f1fc1bcbacb6512315befa", + "fields": { + "code_commune_insee": "65384", + "nom_de_la_commune": "SAILHAN", + "code_postal": "65170", + "coordonnees_gps": [ + 42.8109106702, + 0.330131676021 + ], + "libelle_d_acheminement": "SAILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.330131676021, + 42.8109106702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7ed5466100ed53f332a640586e3be91579d2deb", + "fields": { + "code_commune_insee": "63473", + "nom_de_la_commune": "YSSAC LA TOURETTE", + "code_postal": "63200", + "coordonnees_gps": [ + 45.9344003582, + 3.09229073701 + ], + "libelle_d_acheminement": "YSSAC LA TOURETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09229073701, + 45.9344003582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2de8a8bcc62b8246427398480cfdd7b260a46a7", + "fields": { + "code_commune_insee": "65392", + "nom_de_la_commune": "ST MARTIN", + "code_postal": "65360", + "coordonnees_gps": [ + 43.1649978865, + 0.0648650720223 + ], + "libelle_d_acheminement": "ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0648650720223, + 43.1649978865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a8a18f559a1fb43a4fa2fe37a368e20cf074f77", + "fields": { + "code_commune_insee": "64010", + "nom_de_la_commune": "AICIRITS CAMOU SUHAST", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3536564293, + -1.01649248098 + ], + "libelle_d_acheminement": "AICIRITS CAMOU SUHAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01649248098, + 43.3536564293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3fdfa8deb13d0b14a14cb47aada89d21d73d3a7", + "fields": { + "code_commune_insee": "65394", + "nom_de_la_commune": "ST PAUL", + "code_postal": "65150", + "coordonnees_gps": [ + 43.0860017819, + 0.510432995882 + ], + "libelle_d_acheminement": "ST PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.510432995882, + 43.0860017819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d79e696ed4b71db6af6a46bd48495bff63796a4", + "fields": { + "code_commune_insee": "64014", + "nom_de_la_commune": "AINHOA", + "code_postal": "64250", + "coordonnees_gps": [ + 43.2973870708, + -1.48514354363 + ], + "libelle_d_acheminement": "AINHOA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48514354363, + 43.2973870708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7497b35ab5724286570329c4ad2e7fb5a0ddb573", + "fields": { + "code_commune_insee": "65395", + "nom_de_la_commune": "ST PE DE BIGORRE", + "code_postal": "65270", + "coordonnees_gps": [ + 43.0842866025, + -0.157552870418 + ], + "libelle_d_acheminement": "ST PE DE BIGORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.157552870418, + 43.0842866025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9abdf935db663e4c79cbb4a09b49dcde9d46088", + "fields": { + "code_commune_insee": "64015", + "nom_de_la_commune": "ALCAY ALCABEHETY SUNHARETTE", + "code_postal": "64470", + "coordonnees_gps": [ + 43.0865933129, + -0.975830876097 + ], + "libelle_d_acheminement": "ALCAY ALCABEHETY SUNHARETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.975830876097, + 43.0865933129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9847c1d0d5b57b2f683cae6835e311411004ff4", + "fields": { + "code_commune_insee": "65400", + "nom_de_la_commune": "SALLES", + "code_postal": "65400", + "coordonnees_gps": [ + 43.0304838604, + -0.170939051228 + ], + "libelle_d_acheminement": "SALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.170939051228, + 43.0304838604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ced4918b5e83265f58bb2e098956a332415d2596", + "fields": { + "code_commune_insee": "64017", + "nom_de_la_commune": "ALOS SIBAS ABENSE", + "code_postal": "64470", + "coordonnees_gps": [ + 43.1129165102, + -0.877966906276 + ], + "libelle_d_acheminement": "ALOS SIBAS ABENSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.877966906276, + 43.1129165102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9fc46d87847cf95b00776af05003d2f9630b065", + "fields": { + "code_commune_insee": "65410", + "nom_de_la_commune": "SARROUILLES", + "code_postal": "65600", + "coordonnees_gps": [ + 43.2315195581, + 0.130295390654 + ], + "libelle_d_acheminement": "SARROUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.130295390654, + 43.2315195581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c49c6a5191486c06408fa16545f616687dc94fdb", + "fields": { + "code_commune_insee": "64024", + "nom_de_la_commune": "ANGLET", + "code_postal": "64600", + "coordonnees_gps": [ + 43.4917846595, + -1.51623373371 + ], + "libelle_d_acheminement": "ANGLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51623373371, + 43.4917846595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62e15d20865e5d1ab849cc42769621f5e26888c0", + "fields": { + "code_commune_insee": "65416", + "nom_de_la_commune": "SEICH", + "code_postal": "65150", + "coordonnees_gps": [ + 42.9964233845, + 0.500255289157 + ], + "libelle_d_acheminement": "SEICH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.500255289157, + 42.9964233845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae6f2fc415f8a6dc0bd4268391a921a12185503a", + "fields": { + "code_commune_insee": "64028", + "nom_de_la_commune": "ANOYE", + "code_postal": "64350", + "coordonnees_gps": [ + 43.3965266852, + -0.136280497719 + ], + "libelle_d_acheminement": "ANOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.136280497719, + 43.3965266852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91c3d456c1ba2635204b70fb16e75d781969dee9", + "fields": { + "code_commune_insee": "65424", + "nom_de_la_commune": "SERS", + "code_postal": "65120", + "coordonnees_gps": [ + 42.9129140504, + 0.0773911881732 + ], + "libelle_d_acheminement": "SERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0773911881732, + 42.9129140504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fef5600ff93f16c9aa26851ea2b276e029da0956", + "fields": { + "code_commune_insee": "64031", + "nom_de_la_commune": "ARANCOU", + "code_postal": "64270", + "coordonnees_gps": [ + 43.4438787221, + -1.05280002539 + ], + "libelle_d_acheminement": "ARANCOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05280002539, + 43.4438787221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7872075b398a285abdb5e1bc3e3dff46ca8ef44", + "fields": { + "code_commune_insee": "65431", + "nom_de_la_commune": "SOST", + "code_postal": "65370", + "coordonnees_gps": [ + 42.8971814705, + 0.554911945456 + ], + "libelle_d_acheminement": "SOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.554911945456, + 42.8971814705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1b9b276681798dd18eeb3bbb8599c39c9fceea6", + "fields": { + "code_commune_insee": "64032", + "nom_de_la_commune": "ARAUJUZON", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3506639149, + -0.830144585337 + ], + "libelle_d_acheminement": "ARAUJUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.830144585337, + 43.3506639149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a4543e1e98698f9c5a750ea2181bccffa120a63", + "fields": { + "code_commune_insee": "65438", + "nom_de_la_commune": "TALAZAC", + "code_postal": "65500", + "coordonnees_gps": [ + 43.3342840796, + 0.0373399435018 + ], + "libelle_d_acheminement": "TALAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0373399435018, + 43.3342840796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68a4e66223dda921072a843f38fdbcb7ef4c7f9b", + "fields": { + "code_commune_insee": "64037", + "nom_de_la_commune": "ARBUS", + "code_postal": "64230", + "coordonnees_gps": [ + 43.3244225813, + -0.506270542842 + ], + "libelle_d_acheminement": "ARBUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.506270542842, + 43.3244225813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87e1d38f2247137a61e4e740cbfc7f5f7e15aec9", + "fields": { + "code_commune_insee": "65448", + "nom_de_la_commune": "TOURNOUS DARRE", + "code_postal": "65220", + "coordonnees_gps": [ + 43.284903024, + 0.357933854328 + ], + "libelle_d_acheminement": "TOURNOUS DARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.357933854328, + 43.284903024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a8448b96339813f7940759d984e5874115a7db3", + "fields": { + "code_commune_insee": "64039", + "nom_de_la_commune": "AREN", + "code_postal": "64400", + "coordonnees_gps": [ + 43.2479579692, + -0.725585017259 + ], + "libelle_d_acheminement": "AREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.725585017259, + 43.2479579692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2641bba19a246a71caf2ba029e02e6f437e9e4db", + "fields": { + "code_commune_insee": "65450", + "nom_de_la_commune": "TRAMEZAIGUES", + "code_postal": "65170", + "coordonnees_gps": [ + 42.7537706313, + 0.250807124153 + ], + "libelle_d_acheminement": "TRAMEZAIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.250807124153, + 42.7537706313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e154b933857dcd120c3d0394f22422c822d4fb49", + "fields": { + "code_commune_insee": "64043", + "nom_de_la_commune": "ARGELOS", + "code_postal": "64450", + "coordonnees_gps": [ + 43.4489771911, + -0.346464744941 + ], + "libelle_d_acheminement": "ARGELOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.346464744941, + 43.4489771911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06af98e43545c7a52729973b0c516c4ed85130fa", + "fields": { + "code_commune_insee": "65452", + "nom_de_la_commune": "TRIE SUR BAISE", + "code_postal": "65220", + "coordonnees_gps": [ + 43.3175400046, + 0.365986553654 + ], + "libelle_d_acheminement": "TRIE SUR BAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.365986553654, + 43.3175400046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "666f8b8e8543075984e67107e04a3d6c6eed065b", + "fields": { + "code_commune_insee": "64056", + "nom_de_la_commune": "ARROSES", + "code_postal": "64350", + "coordonnees_gps": [ + 43.5470586711, + -0.111198183696 + ], + "libelle_d_acheminement": "ARROSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.111198183696, + 43.5470586711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9f5d986165e212de074654c81bb0afd215deac8", + "fields": { + "code_commune_insee": "65454", + "nom_de_la_commune": "TROULEY LABARTHE", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3198102586, + 0.248116496445 + ], + "libelle_d_acheminement": "TROULEY LABARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.248116496445, + 43.3198102586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a69b32b03a93d7492fbb52b3d813ca2cb453fd7", + "fields": { + "code_commune_insee": "64061", + "nom_de_la_commune": "ARTIX", + "code_postal": "64170", + "coordonnees_gps": [ + 43.3977948105, + -0.574159913123 + ], + "libelle_d_acheminement": "ARTIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.574159913123, + 43.3977948105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65ea5bd1177476f99429ca9c756f2a55979c97f6", + "fields": { + "code_commune_insee": "65459", + "nom_de_la_commune": "UZER", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0773706772, + 0.192776728078 + ], + "libelle_d_acheminement": "UZER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.192776728078, + 43.0773706772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfe7b5e4ec9b4f0ed4eb997f4f11a2a7db9fd544", + "fields": { + "code_commune_insee": "64064", + "nom_de_la_commune": "ASASP ARROS", + "code_postal": "64660", + "coordonnees_gps": [ + 43.1179115359, + -0.629962098599 + ], + "libelle_d_acheminement": "ASASP ARROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.629962098599, + 43.1179115359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e1a64ff030a2d081094069502c5f7de29a9d1d7", + "fields": { + "code_commune_insee": "65462", + "nom_de_la_commune": "VIDOUZE", + "code_postal": "65700", + "coordonnees_gps": [ + 43.4402150519, + -0.0459193409795 + ], + "libelle_d_acheminement": "VIDOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0459193409795, + 43.4402150519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47037903b3294d3cb520a56eb3a8f5f40635808b", + "fields": { + "code_commune_insee": "64067", + "nom_de_la_commune": "ASSAT", + "code_postal": "64510", + "coordonnees_gps": [ + 43.2575933228, + -0.288463640719 + ], + "libelle_d_acheminement": "ASSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.288463640719, + 43.2575933228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bfd877d517b23aff232a306f0256d666bee2fa1", + "fields": { + "code_commune_insee": "65466", + "nom_de_la_commune": "VIELLE LOURON", + "code_postal": "65240", + "coordonnees_gps": [ + 42.8340764173, + 0.396120729041 + ], + "libelle_d_acheminement": "VIELLE LOURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.396120729041, + 42.8340764173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47cb8a3b38e39a6f5e7eb37895abcec1548ee60e", + "fields": { + "code_commune_insee": "64075", + "nom_de_la_commune": "AUDAUX", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3725983414, + -0.779901739497 + ], + "libelle_d_acheminement": "AUDAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.779901739497, + 43.3725983414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c090899f633ab75cd45e23828f1dba6fabbbc6ad", + "fields": { + "code_commune_insee": "65467", + "nom_de_la_commune": "VIER BORDES", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9934213357, + -0.0313550215399 + ], + "libelle_d_acheminement": "VIER BORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0313550215399, + 42.9934213357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40902344440e9a24883d62bf65518aeb072a9d71", + "fields": { + "code_commune_insee": "64077", + "nom_de_la_commune": "AUGA", + "code_postal": "64450", + "coordonnees_gps": [ + 43.4773069345, + -0.378698295047 + ], + "libelle_d_acheminement": "AUGA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.378698295047, + 43.4773069345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fec99ec7e382ce407738aaa52ed1fe4fdb732fe2", + "fields": { + "code_commune_insee": "65469", + "nom_de_la_commune": "VIEY", + "code_postal": "65120", + "coordonnees_gps": [ + 42.892540013, + 0.017273292807 + ], + "libelle_d_acheminement": "VIEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.017273292807, + 42.892540013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "838660f6e5c159c4851de40f6dabd07dc873808f", + "fields": { + "code_commune_insee": "64084", + "nom_de_la_commune": "AYDIE", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5707613227, + -0.113447741678 + ], + "libelle_d_acheminement": "AYDIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.113447741678, + 43.5707613227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d60cb7f490843df163326c738f21723e4cd5ed13", + "fields": { + "code_commune_insee": "65470", + "nom_de_la_commune": "VIGER", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0589366609, + -0.0568001764267 + ], + "libelle_d_acheminement": "VIGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0568001764267, + 43.0589366609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20004d4981748ca12847406989f8fa65b5c33cc7", + "fields": { + "code_commune_insee": "64085", + "nom_de_la_commune": "AYDIUS", + "code_postal": "64490", + "coordonnees_gps": [ + 42.9988475331, + -0.519267160267 + ], + "libelle_d_acheminement": "AYDIUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.519267160267, + 42.9988475331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8584099ca569e96a0a809049b18726018349a2cd", + "fields": { + "code_commune_insee": "65471", + "nom_de_la_commune": "VIGNEC", + "code_postal": "65170", + "coordonnees_gps": [ + 42.8187367503, + 0.285369087805 + ], + "libelle_d_acheminement": "VIGNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.285369087805, + 42.8187367503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b35ad310db0a54062af77026ac4eb7e106defcc", + "fields": { + "code_commune_insee": "64086", + "nom_de_la_commune": "AYHERRE", + "code_postal": "64240", + "coordonnees_gps": [ + 43.3787620748, + -1.245267479 + ], + "libelle_d_acheminement": "AYHERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.245267479, + 43.3787620748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c958f9e7cecd82bdfc4a2c924a60d07f3db6f21e", + "fields": { + "code_commune_insee": "65472", + "nom_de_la_commune": "VILLEFRANQUE", + "code_postal": "65700", + "coordonnees_gps": [ + 43.5018976612, + -0.00421391977878 + ], + "libelle_d_acheminement": "VILLEFRANQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00421391977878, + 43.5018976612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e6bcccdf4324d1545f74bbe3231e75e2017f86d", + "fields": { + "code_commune_insee": "64088", + "nom_de_la_commune": "BALANSUN", + "code_postal": "64300", + "coordonnees_gps": [ + 43.4912109435, + -0.693259422836 + ], + "libelle_d_acheminement": "BALANSUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.693259422836, + 43.4912109435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b8c4b151314029c613aff33d75daef5ae901d3b", + "fields": { + "code_commune_insee": "65474", + "nom_de_la_commune": "VILLEMBITS", + "code_postal": "65220", + "coordonnees_gps": [ + 43.2801778426, + 0.319096050681 + ], + "libelle_d_acheminement": "VILLEMBITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.319096050681, + 43.2801778426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae604fe5747538f7a1b196a2f07bb3662bc4565f", + "fields": { + "code_commune_insee": "64096", + "nom_de_la_commune": "BARRAUTE CAMU", + "code_postal": "64390", + "coordonnees_gps": [ + 43.3831583364, + -0.900945944724 + ], + "libelle_d_acheminement": "BARRAUTE CAMU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.900945944724, + 43.3831583364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfc42c99561198c6b7f7dd90c95c11ef391b7fec", + "fields": { + "code_commune_insee": "66003", + "nom_de_la_commune": "AMELIE LES BAINS PALALDA", + "code_postal": "66110", + "coordonnees_gps": [ + 42.4436859079, + 2.68338432052 + ], + "libelle_d_acheminement": "AMELIE LES BAINS PALALDA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68338432052, + 42.4436859079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adfbd04c85b4ce6d1be429c2257fcb55f11011dc", + "fields": { + "code_commune_insee": "64098", + "nom_de_la_commune": "BASSILLON VAUZE", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4526790153, + -0.07621462231 + ], + "libelle_d_acheminement": "BASSILLON VAUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.07621462231, + 43.4526790153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b839b018910e1cea56c40e352d32b3169661909", + "fields": { + "code_commune_insee": "66004", + "nom_de_la_commune": "LES ANGLES", + "code_postal": "66210", + "coordonnees_gps": [ + 42.5797574108, + 2.05268528008 + ], + "libelle_d_acheminement": "LES ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05268528008, + 42.5797574108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "258105ddc1af1b37a7ff2751fa4babadf99e6805", + "fields": { + "code_commune_insee": "64116", + "nom_de_la_commune": "BESCAT", + "code_postal": "64260", + "coordonnees_gps": [ + 43.129651934, + -0.423887128976 + ], + "libelle_d_acheminement": "BESCAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.423887128976, + 43.129651934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca199c055e03b0e4f61317d240d0d6eae64346a0", + "fields": { + "code_commune_insee": "66007", + "nom_de_la_commune": "ARBOUSSOLS", + "code_postal": "66320", + "coordonnees_gps": [ + 42.6660398231, + 2.49328385773 + ], + "libelle_d_acheminement": "ARBOUSSOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49328385773, + 42.6660398231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4c1acb1323f7a1479bf36899ab55494e5fb0c38", + "fields": { + "code_commune_insee": "64122", + "nom_de_la_commune": "BIARRITZ", + "code_postal": "64200", + "coordonnees_gps": [ + 43.4695847227, + -1.55309857519 + ], + "libelle_d_acheminement": "BIARRITZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55309857519, + 43.4695847227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28d747fdbacd751ce6525e36fba7c647c649ef1a", + "fields": { + "code_commune_insee": "66008", + "nom_de_la_commune": "ARGELES SUR MER", + "code_postal": "66700", + "coordonnees_gps": [ + 42.5352193463, + 3.02429862885 + ], + "libelle_d_acheminement": "ARGELES SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02429862885, + 42.5352193463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d05ae975ba74ad3ebb7f6fcef7b49d0302bd1f96", + "fields": { + "code_commune_insee": "64125", + "nom_de_la_commune": "BIDART", + "code_postal": "64210", + "coordonnees_gps": [ + 43.4380521764, + -1.58002714725 + ], + "libelle_d_acheminement": "BIDART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58002714725, + 43.4380521764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "041c87bc16d0072610701f95e36b742ee9dcdc8b", + "fields": { + "code_commune_insee": "66014", + "nom_de_la_commune": "BAIXAS", + "code_postal": "66390", + "coordonnees_gps": [ + 42.7454275346, + 2.80569787207 + ], + "libelle_d_acheminement": "BAIXAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80569787207, + 42.7454275346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32cccca930b46fed0b105c65e010073f3e6052e7", + "fields": { + "code_commune_insee": "64126", + "nom_de_la_commune": "BIDOS", + "code_postal": "64400", + "coordonnees_gps": [ + 43.1751507938, + -0.604844854778 + ], + "libelle_d_acheminement": "BIDOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.604844854778, + 43.1751507938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34972e58a5151e19eb79393aa428cf5f49e887e9", + "fields": { + "code_commune_insee": "66021", + "nom_de_la_commune": "BOMPAS", + "code_postal": "66430", + "coordonnees_gps": [ + 42.7286935999, + 2.94228068459 + ], + "libelle_d_acheminement": "BOMPAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94228068459, + 42.7286935999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc5a62c309815d757b14fd22a3f0579a917a1634", + "fields": { + "code_commune_insee": "64129", + "nom_de_la_commune": "BILLERE", + "code_postal": "64140", + "coordonnees_gps": [ + 43.3045259937, + -0.393492580041 + ], + "libelle_d_acheminement": "BILLERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.393492580041, + 43.3045259937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "793d38ed12ed76449c2f0348f09e409e7dbf8de2", + "fields": { + "code_commune_insee": "66023", + "nom_de_la_commune": "BOULETERNERE", + "code_postal": "66130", + "coordonnees_gps": [ + 42.6445403346, + 2.58787927866 + ], + "libelle_d_acheminement": "BOULETERNERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58787927866, + 42.6445403346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9951fdce94b683b82168dcc1151f699be2830b22", + "fields": { + "code_commune_insee": "64130", + "nom_de_la_commune": "BIRIATOU", + "code_postal": "64700", + "coordonnees_gps": [ + 43.3236811068, + -1.72986887716 + ], + "libelle_d_acheminement": "BIRIATOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72986887716, + 43.3236811068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "317c144632956a3707ac8bae9e835859a606e09d", + "fields": { + "code_commune_insee": "66025", + "nom_de_la_commune": "BOURG MADAME", + "code_postal": "66760", + "coordonnees_gps": [ + 42.4379971277, + 1.96090815348 + ], + "libelle_d_acheminement": "BOURG MADAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96090815348, + 42.4379971277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04fbc30d673c31dc5c2ff0f6d8b51606f1a4b62a", + "fields": { + "code_commune_insee": "64137", + "nom_de_la_commune": "BORDERES", + "code_postal": "64800", + "coordonnees_gps": [ + 43.2047226344, + -0.212865402876 + ], + "libelle_d_acheminement": "BORDERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.212865402876, + 43.2047226344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee733382384e6f0b55cbc2cdbe85830c83aa91c2", + "fields": { + "code_commune_insee": "66037", + "nom_de_la_commune": "CANET EN ROUSSILLON", + "code_postal": "66140", + "coordonnees_gps": [ + 42.6841288047, + 3.01161744752 + ], + "libelle_d_acheminement": "CANET EN ROUSSILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01161744752, + 42.6841288047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2be33cdbdc0cbbfa43c1a35eca29574e22cd5efd", + "fields": { + "code_commune_insee": "64141", + "nom_de_la_commune": "BOUEILH BOUEILHO LASQUE", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5391539288, + -0.31483213796 + ], + "libelle_d_acheminement": "BOUEILH BOUEILHO LASQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31483213796, + 43.5391539288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29c17d316852f817e86f066e26952cc91c7789f0", + "fields": { + "code_commune_insee": "66039", + "nom_de_la_commune": "CARAMANY", + "code_postal": "66720", + "coordonnees_gps": [ + 42.7373348032, + 2.559879696 + ], + "libelle_d_acheminement": "CARAMANY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.559879696, + 42.7373348032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5219997efef1190be514d3dc0cc4d8b346ae6e62", + "fields": { + "code_commune_insee": "64150", + "nom_de_la_commune": "BUNUS", + "code_postal": "64120", + "coordonnees_gps": [ + 43.2072970793, + -1.06452656523 + ], + "libelle_d_acheminement": "BUNUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06452656523, + 43.2072970793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72805801ec9f92fab63e8e509cfc5ce2e3ff800e", + "fields": { + "code_commune_insee": "66048", + "nom_de_la_commune": "CERBERE", + "code_postal": "66290", + "coordonnees_gps": [ + 42.4439076617, + 3.14835500726 + ], + "libelle_d_acheminement": "CERBERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14835500726, + 42.4439076617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65b401feec299bf67a5f711d4c047f675000b703", + "fields": { + "code_commune_insee": "64152", + "nom_de_la_commune": "BUROS", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3463641258, + -0.315857247807 + ], + "libelle_d_acheminement": "BUROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.315857247807, + 43.3463641258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "215add3457b688a7de42704a1dafbb9d5b04ac35", + "fields": { + "code_commune_insee": "66055", + "nom_de_la_commune": "CORBERE", + "code_postal": "66130", + "coordonnees_gps": [ + 42.6509601236, + 2.66156013725 + ], + "libelle_d_acheminement": "CORBERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66156013725, + 42.6509601236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42c227ba771a7bf96b4a6371a1b4eb8f97f3355e", + "fields": { + "code_commune_insee": "64160", + "nom_de_la_commune": "CAMBO LES BAINS", + "code_postal": "64250", + "coordonnees_gps": [ + 43.3617393087, + -1.38541817484 + ], + "libelle_d_acheminement": "CAMBO LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38541817484, + 43.3617393087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f31bc277ea0eac754f94488ec27faca3558ed74", + "fields": { + "code_commune_insee": "66057", + "nom_de_la_commune": "CORNEILLA DE CONFLENT", + "code_postal": "66820", + "coordonnees_gps": [ + 42.5760974122, + 2.38267562909 + ], + "libelle_d_acheminement": "CORNEILLA DE CONFLENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38267562909, + 42.5760974122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6434f88375858f35bbe7d0a6dafe7bffea988e7", + "fields": { + "code_commune_insee": "64168", + "nom_de_la_commune": "CARRESSE CASSABER", + "code_postal": "64270", + "coordonnees_gps": [ + 43.4867092033, + -0.999430077721 + ], + "libelle_d_acheminement": "CARRESSE CASSABER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.999430077721, + 43.4867092033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd5c7a421c965a207f5dd3948c7d0669d80049d4", + "fields": { + "code_commune_insee": "66060", + "nom_de_la_commune": "CORSAVY", + "code_postal": "66150", + "coordonnees_gps": [ + 42.4826022431, + 2.5407943882 + ], + "libelle_d_acheminement": "CORSAVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5407943882, + 42.4826022431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2acb8ef8c55e03effac168d6a638769b74b333ff", + "fields": { + "code_commune_insee": "64174", + "nom_de_la_commune": "CASTERA LOUBIX", + "code_postal": "64460", + "coordonnees_gps": [ + 43.4059390869, + -0.034605507142 + ], + "libelle_d_acheminement": "CASTERA LOUBIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.034605507142, + 43.4059390869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c44064a2662383912d2e7e81ad73f496a7677877", + "fields": { + "code_commune_insee": "66064", + "nom_de_la_commune": "EGAT", + "code_postal": "66120", + "coordonnees_gps": [ + 42.5012125582, + 2.01713210956 + ], + "libelle_d_acheminement": "EGAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01713210956, + 42.5012125582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a32db535d93204d1c34eb7059d62624e6fa2b46", + "fields": { + "code_commune_insee": "64175", + "nom_de_la_commune": "CASTET", + "code_postal": "64260", + "coordonnees_gps": [ + 43.0548936338, + -0.373353196266 + ], + "libelle_d_acheminement": "CASTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.373353196266, + 43.0548936338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "691b386902542bcca3eaaf4e0a287d2fe620abbc", + "fields": { + "code_commune_insee": "66078", + "nom_de_la_commune": "FILLOLS", + "code_postal": "66820", + "coordonnees_gps": [ + 42.5582297774, + 2.42208610221 + ], + "libelle_d_acheminement": "FILLOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42208610221, + 42.5582297774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c78ad730d5298fec9ea46706e7a29b960995f6e", + "fields": { + "code_commune_insee": "64184", + "nom_de_la_commune": "CESCAU", + "code_postal": "64170", + "coordonnees_gps": [ + 43.4123325253, + -0.503690665578 + ], + "libelle_d_acheminement": "CESCAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.503690665578, + 43.4123325253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f2af0760a412f335db59af6433d97565c4f4dee", + "fields": { + "code_commune_insee": "66081", + "nom_de_la_commune": "FONTRABIOUSE", + "code_postal": "66210", + "coordonnees_gps": [ + 42.6426527575, + 2.05312603045 + ], + "libelle_d_acheminement": "FONTRABIOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05312603045, + 42.6426527575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d34b9308ca4706e76af572b82ffa4556492ce7e7", + "fields": { + "code_commune_insee": "64191", + "nom_de_la_commune": "COARRAZE", + "code_postal": "64800", + "coordonnees_gps": [ + 43.16814552, + -0.209947352946 + ], + "libelle_d_acheminement": "COARRAZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.209947352946, + 43.16814552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c7a26a32ae9b862edf41feae71e0ec7ab8b4b21", + "fields": { + "code_commune_insee": "66088", + "nom_de_la_commune": "ILLE SUR TET", + "code_postal": "66130", + "coordonnees_gps": [ + 42.6774223178, + 2.61639804475 + ], + "libelle_d_acheminement": "ILLE SUR TET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61639804475, + 42.6774223178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f32037394723332eced8ef8bf98f896b0152b80b", + "fields": { + "code_commune_insee": "64193", + "nom_de_la_commune": "CORBERE ABERES", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4757367559, + -0.0896960657333 + ], + "libelle_d_acheminement": "CORBERE ABERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0896960657333, + 43.4757367559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f9f50e64103a61cb090f906bf0b939ffd7b9440", + "fields": { + "code_commune_insee": "66099", + "nom_de_la_commune": "LLAURO", + "code_postal": "66300", + "coordonnees_gps": [ + 42.5460172155, + 2.74437234146 + ], + "libelle_d_acheminement": "LLAURO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74437234146, + 42.5460172155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1107619af0a05d4fb2a4753a33d042f3b012a742", + "fields": { + "code_commune_insee": "64195", + "nom_de_la_commune": "COUBLUCQ", + "code_postal": "64410", + "coordonnees_gps": [ + 43.5378290325, + -0.363582850112 + ], + "libelle_d_acheminement": "COUBLUCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.363582850112, + 43.5378290325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e56946f843929540599fdc52c777fb3f468b892", + "fields": { + "code_commune_insee": "66101", + "nom_de_la_commune": "LLUPIA", + "code_postal": "66300", + "coordonnees_gps": [ + 42.62594544, + 2.78302556037 + ], + "libelle_d_acheminement": "LLUPIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78302556037, + 42.62594544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "636a651aa6529429ffab00c002d39e9572991e94", + "fields": { + "code_commune_insee": "64201", + "nom_de_la_commune": "DOGNEN", + "code_postal": "64190", + "coordonnees_gps": [ + 43.2890538791, + -0.732627601607 + ], + "libelle_d_acheminement": "DOGNEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.732627601607, + 43.2890538791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6230d4ea5265b03e11aeef857a99be8e4f1bbbc4", + "fields": { + "code_commune_insee": "66111", + "nom_de_la_commune": "MONTALBA LE CHATEAU", + "code_postal": "66130", + "coordonnees_gps": [ + 42.6999973124, + 2.56550996657 + ], + "libelle_d_acheminement": "MONTALBA LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56550996657, + 42.6999973124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1ecd8bdf47d507a2a53ca544316addf3022c623", + "fields": { + "code_commune_insee": "64215", + "nom_de_la_commune": "ESPIUTE", + "code_postal": "64390", + "coordonnees_gps": [ + 43.3544908357, + -0.914707993249 + ], + "libelle_d_acheminement": "ESPIUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.914707993249, + 43.3544908357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2fe8b847c50e498ae98bfd09135fb7705f686a5", + "fields": { + "code_commune_insee": "66113", + "nom_de_la_commune": "MONTBOLO", + "code_postal": "66110", + "coordonnees_gps": [ + 42.4911841677, + 2.63242543008 + ], + "libelle_d_acheminement": "MONTBOLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63242543008, + 42.4911841677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9df2b0fb8a0b5629f49c0411f3efeb7643601805", + "fields": { + "code_commune_insee": "64234", + "nom_de_la_commune": "GAROS", + "code_postal": "64410", + "coordonnees_gps": [ + 43.5068508348, + -0.481505714885 + ], + "libelle_d_acheminement": "GAROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.481505714885, + 43.5068508348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e257e79d3b882fb8e51cd1d1d903f99c87ab067f", + "fields": { + "code_commune_insee": "66117", + "nom_de_la_commune": "MONT LOUIS", + "code_postal": "66210", + "coordonnees_gps": [ + 42.5104146008, + 2.1202342386 + ], + "libelle_d_acheminement": "MONT LOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1202342386, + 42.5104146008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca97e3de76f895036231886f9289bef04035cb70", + "fields": { + "code_commune_insee": "64235", + "nom_de_la_commune": "GARRIS", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3394050155, + -1.05898897013 + ], + "libelle_d_acheminement": "GARRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05898897013, + 43.3394050155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e64c8e30b2cb6ed61fdde156dedc2db7a70346a4", + "fields": { + "code_commune_insee": "66120", + "nom_de_la_commune": "NAHUJA", + "code_postal": "66340", + "coordonnees_gps": [ + 42.4234772569, + 1.99829049597 + ], + "libelle_d_acheminement": "NAHUJA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99829049597, + 42.4234772569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adaa4ed04a6a082dc0988d954f3b94c8afaefef4", + "fields": { + "code_commune_insee": "64241", + "nom_de_la_commune": "GERONCE", + "code_postal": "64400", + "coordonnees_gps": [ + 43.2221479657, + -0.710166887554 + ], + "libelle_d_acheminement": "GERONCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.710166887554, + 43.2221479657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "360cacc746f3e6d30696ee576bfe14997cc01c91", + "fields": { + "code_commune_insee": "66122", + "nom_de_la_commune": "NOHEDES", + "code_postal": "66500", + "coordonnees_gps": [ + 42.6287938288, + 2.26078366597 + ], + "libelle_d_acheminement": "NOHEDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26078366597, + 42.6287938288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fff6892f2a3a8558169fac5879fb7d70e6682f2", + "fields": { + "code_commune_insee": "64244", + "nom_de_la_commune": "GEUS D OLORON", + "code_postal": "64400", + "coordonnees_gps": [ + 43.2382175116, + -0.730765582736 + ], + "libelle_d_acheminement": "GEUS D OLORON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730765582736, + 43.2382175116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75e815389e8fc4a655f3859dbdf3dddaa452c007", + "fields": { + "code_commune_insee": "66133", + "nom_de_la_commune": "PALAU DEL VIDRE", + "code_postal": "66690", + "coordonnees_gps": [ + 42.5687032771, + 2.95809890817 + ], + "libelle_d_acheminement": "PALAU DEL VIDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95809890817, + 42.5687032771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbb07d335ae4c1111c89f0dda84be70f5c5cb5d7", + "fields": { + "code_commune_insee": "64246", + "nom_de_la_commune": "GOMER", + "code_postal": "64420", + "coordonnees_gps": [ + 43.2475680844, + -0.197277203284 + ], + "libelle_d_acheminement": "GOMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.197277203284, + 43.2475680844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "762f57ab294cc78dabf432d8ab426e80758b0193", + "fields": { + "code_commune_insee": "66134", + "nom_de_la_commune": "PASSA", + "code_postal": "66300", + "coordonnees_gps": [ + 42.5650078478, + 2.80463901382 + ], + "libelle_d_acheminement": "PASSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80463901382, + 42.5650078478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2560fc1cf67347304b6d9d6c3ca602cc137759eb", + "fields": { + "code_commune_insee": "64250", + "nom_de_la_commune": "GUICHE", + "code_postal": "64520", + "coordonnees_gps": [ + 43.5099011843, + -1.20771855354 + ], + "libelle_d_acheminement": "GUICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20771855354, + 43.5099011843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b4dfa2fbe25423e23e6f8bb5532d283e0466e27", + "fields": { + "code_commune_insee": "66155", + "nom_de_la_commune": "PY", + "code_postal": "66360", + "coordonnees_gps": [ + 42.4733047636, + 2.36001969105 + ], + "libelle_d_acheminement": "PY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36001969105, + 42.4733047636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be3a8d86f1ef4ca6dc8ad7327899914b7c3cbaff", + "fields": { + "code_commune_insee": "64252", + "nom_de_la_commune": "GURMENCON", + "code_postal": "64400", + "coordonnees_gps": [ + 43.1583407209, + -0.599376287501 + ], + "libelle_d_acheminement": "GURMENCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.599376287501, + 43.1583407209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53a3cd6d4711005c5c142853c5b4157565c5ec60", + "fields": { + "code_commune_insee": "66156", + "nom_de_la_commune": "RABOUILLET", + "code_postal": "66730", + "coordonnees_gps": [ + 42.7273037833, + 2.37109677548 + ], + "libelle_d_acheminement": "RABOUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37109677548, + 42.7273037833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87f8f78d041e6480161c7dcaac12fd6fa40887a2", + "fields": { + "code_commune_insee": "64253", + "nom_de_la_commune": "GURS", + "code_postal": "64190", + "coordonnees_gps": [ + 43.2765512642, + -0.758975468791 + ], + "libelle_d_acheminement": "GURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.758975468791, + 43.2765512642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63d91c79bd026b3f37c0c3212f30fb99d7f5784c", + "fields": { + "code_commune_insee": "66172", + "nom_de_la_commune": "ST ESTEVE", + "code_postal": "66240", + "coordonnees_gps": [ + 42.7151122221, + 2.84611914185 + ], + "libelle_d_acheminement": "ST ESTEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84611914185, + 42.7151122221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddb5be6216b25e41f38f82994478fc823cda6328", + "fields": { + "code_commune_insee": "66173", + "nom_de_la_commune": "ST FELIU D AMONT", + "code_postal": "66170", + "coordonnees_gps": [ + 42.6762988692, + 2.71785569395 + ], + "libelle_d_acheminement": "ST FELIU D AMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71785569395, + 42.6762988692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ac84ac31b8d7878eac3a5bc4d57556c59da08d4", + "fields": { + "code_commune_insee": "66175", + "nom_de_la_commune": "ST GENIS DES FONTAINES", + "code_postal": "66740", + "coordonnees_gps": [ + 42.5501690702, + 2.92022187545 + ], + "libelle_d_acheminement": "ST GENIS DES FONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92022187545, + 42.5501690702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4e2965b1e541a26162d817773e274d0cc9612b3", + "fields": { + "code_commune_insee": "66178", + "nom_de_la_commune": "ST JEAN PLA DE CORTS", + "code_postal": "66490", + "coordonnees_gps": [ + 42.515467363, + 2.79428656792 + ], + "libelle_d_acheminement": "ST JEAN PLA DE CORTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79428656792, + 42.515467363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba873a49af70c7f77357242ac30ea70ec3c21c27", + "fields": { + "code_commune_insee": "66180", + "nom_de_la_commune": "ST LAURENT DE LA SALANQUE", + "code_postal": "66250", + "coordonnees_gps": [ + 42.7935650332, + 3.00207879592 + ], + "libelle_d_acheminement": "ST LAURENT DE LA SALANQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00207879592, + 42.7935650332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3eb5bfd19307a5cf6e594a9597ebb350cddf565", + "fields": { + "code_commune_insee": "66184", + "nom_de_la_commune": "ST MARTIN DE FENOUILLET", + "code_postal": "66220", + "coordonnees_gps": [ + 42.7853593201, + 2.47859695441 + ], + "libelle_d_acheminement": "ST MARTIN DE FENOUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47859695441, + 42.7853593201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf0c86daba7f66276802401b5d1c9e384659ca8e", + "fields": { + "code_commune_insee": "66186", + "nom_de_la_commune": "ST NAZAIRE", + "code_postal": "66570", + "coordonnees_gps": [ + 42.6621428836, + 2.98670142131 + ], + "libelle_d_acheminement": "ST NAZAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98670142131, + 42.6621428836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03c124b1258ee5eadcbc0248750b96650a107f67", + "fields": { + "code_commune_insee": "66188", + "nom_de_la_commune": "ST PIERRE DELS FORCATS", + "code_postal": "66210", + "coordonnees_gps": [ + 42.4802464548, + 2.11815640127 + ], + "libelle_d_acheminement": "ST PIERRE DELS FORCATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11815640127, + 42.4802464548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5cb6b77c240daeec53c05af8cf39dd9ddba2e9b", + "fields": { + "code_commune_insee": "64254", + "nom_de_la_commune": "HAGETAUBIN", + "code_postal": "64370", + "coordonnees_gps": [ + 43.5105619096, + -0.612895161323 + ], + "libelle_d_acheminement": "HAGETAUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.612895161323, + 43.5105619096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60e04e599061e9632075fb21045db2cc55c15f46", + "fields": { + "code_commune_insee": "64256", + "nom_de_la_commune": "HASPARREN", + "code_postal": "64240", + "coordonnees_gps": [ + 43.3982982364, + -1.32563611071 + ], + "libelle_d_acheminement": "HASPARREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32563611071, + 43.3982982364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "699d8389405eec7c147b945b0a93ada6bfa57799", + "fields": { + "code_commune_insee": "64260", + "nom_de_la_commune": "HENDAYE", + "code_postal": "64700", + "coordonnees_gps": [ + 43.3656373687, + -1.76396662 + ], + "libelle_d_acheminement": "HENDAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76396662, + 43.3656373687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f0eeff2fc15c3c6bb342a944a68b28a036c6642", + "fields": { + "code_commune_insee": "64261", + "nom_de_la_commune": "HERRERE", + "code_postal": "64680", + "coordonnees_gps": [ + 43.1595542922, + -0.545488112075 + ], + "libelle_d_acheminement": "HERRERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.545488112075, + 43.1595542922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff60679f4cb5cc6c5f9e143e549a2e2bc58d8c9a", + "fields": { + "code_commune_insee": "64264", + "nom_de_la_commune": "L HOPITAL ST BLAISE", + "code_postal": "64130", + "coordonnees_gps": [ + 43.2555611144, + -0.770264601126 + ], + "libelle_d_acheminement": "L HOPITAL ST BLAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.770264601126, + 43.2555611144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dbfbc7832a1d3f3e2702d9b2894fda95e6edbfa", + "fields": { + "code_commune_insee": "66196", + "nom_de_la_commune": "SOREDE", + "code_postal": "66690", + "coordonnees_gps": [ + 42.4998734367, + 2.98047193551 + ], + "libelle_d_acheminement": "SOREDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98047193551, + 42.4998734367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e7e641b0c7b58d11eb5897a3e23ee23084aede9", + "fields": { + "code_commune_insee": "64274", + "nom_de_la_commune": "IROULEGUY", + "code_postal": "64220", + "coordonnees_gps": [ + 43.185106673, + -1.28878634847 + ], + "libelle_d_acheminement": "IROULEGUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28878634847, + 43.185106673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1d2a488f9cfbbd022e0fe643ad84e58079e2fbc", + "fields": { + "code_commune_insee": "66202", + "nom_de_la_commune": "TARGASSONNE", + "code_postal": "66120", + "coordonnees_gps": [ + 42.5032914509, + 1.98870542863 + ], + "libelle_d_acheminement": "TARGASSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98870542863, + 42.5032914509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e256990e24c0a6875e0f3916fb6f8449b680819", + "fields": { + "code_commune_insee": "64287", + "nom_de_la_commune": "LAAS", + "code_postal": "64390", + "coordonnees_gps": [ + 43.3863780665, + -0.854028010814 + ], + "libelle_d_acheminement": "LAAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.854028010814, + 43.3863780665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff124e366eb58d90bf5062f4890139a7cc2bedff", + "fields": { + "code_commune_insee": "66203", + "nom_de_la_commune": "TAULIS", + "code_postal": "66110", + "coordonnees_gps": [ + 42.5134541453, + 2.61842052411 + ], + "libelle_d_acheminement": "TAULIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61842052411, + 42.5134541453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb0cf059c18250239acf35c792fe26019eb9fa54", + "fields": { + "code_commune_insee": "64289", + "nom_de_la_commune": "LA BASTIDE CLAIRENCE", + "code_postal": "64240", + "coordonnees_gps": [ + 43.417654264, + -1.23211183617 + ], + "libelle_d_acheminement": "LA BASTIDE CLAIRENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23211183617, + 43.417654264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e970a669fc0b9d30b0b30ea7758636ffe2847ce5", + "fields": { + "code_commune_insee": "66204", + "nom_de_la_commune": "TAURINYA", + "code_postal": "66500", + "coordonnees_gps": [ + 42.5592864302, + 2.44208129657 + ], + "libelle_d_acheminement": "TAURINYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44208129657, + 42.5592864302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "118f1eb6e7631311f989c5b5c1f1ed2d8c52e8af", + "fields": { + "code_commune_insee": "64312", + "nom_de_la_commune": "LANNEPLAA", + "code_postal": "64300", + "coordonnees_gps": [ + 43.4601794735, + -0.827975616705 + ], + "libelle_d_acheminement": "LANNEPLAA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.827975616705, + 43.4601794735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89bfe026406337bb33f9f7bcc9a327e4ad5ccb47", + "fields": { + "code_commune_insee": "66207", + "nom_de_la_commune": "TERRATS", + "code_postal": "66300", + "coordonnees_gps": [ + 42.6033088129, + 2.75967553668 + ], + "libelle_d_acheminement": "TERRATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75967553668, + 42.6033088129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37220b901ae4346e373e53cb902a5f2c1434debd", + "fields": { + "ligne_5": "EAUX CHAUDES", + "code_commune_insee": "64320", + "libelle_d_acheminement": "LARUNS", + "code_postal": "64440", + "nom_de_la_commune": "LARUNS", + "coordonnees_gps": [ + 42.8923840962, + -0.419704380499 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.419704380499, + 42.8923840962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef1e3cfbc1df4597cc5e46d7b6afe84b576f78a2", + "fields": { + "code_commune_insee": "66208", + "nom_de_la_commune": "THEZA", + "code_postal": "66200", + "coordonnees_gps": [ + 42.6401080331, + 2.94564275118 + ], + "libelle_d_acheminement": "THEZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94564275118, + 42.6401080331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0646afbdd604b2e3315f6049c910a1484cfd544", + "fields": { + "code_commune_insee": "64322", + "nom_de_la_commune": "LASSE", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1357291149, + -1.28300542031 + ], + "libelle_d_acheminement": "LASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28300542031, + 43.1357291149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db8f47f69790d5cc6b3bb72467f0eb7f9b287fd7", + "fields": { + "code_commune_insee": "66210", + "nom_de_la_commune": "THUIR", + "code_postal": "66300", + "coordonnees_gps": [ + 42.6434195538, + 2.75897243961 + ], + "libelle_d_acheminement": "THUIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75897243961, + 42.6434195538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a043f7ba11ab53e2c3f5b432b41fcb4552c29960", + "fields": { + "code_commune_insee": "64330", + "nom_de_la_commune": "LEES ATHAS", + "code_postal": "64490", + "coordonnees_gps": [ + 42.9710540613, + -0.668398814857 + ], + "libelle_d_acheminement": "LEES ATHAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.668398814857, + 42.9710540613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d31e81e725ee3b7ed813ff4fdfd4f43b94de24d", + "fields": { + "code_commune_insee": "66211", + "nom_de_la_commune": "TORDERES", + "code_postal": "66300", + "coordonnees_gps": [ + 42.5655208272, + 2.75949456771 + ], + "libelle_d_acheminement": "TORDERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75949456771, + 42.5655208272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "152a53d4a32ee2b7e62a0369ece56148beb756f3", + "fields": { + "code_commune_insee": "64336", + "nom_de_la_commune": "LESCUN", + "code_postal": "64490", + "coordonnees_gps": [ + 42.9178479197, + -0.677437388946 + ], + "libelle_d_acheminement": "LESCUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.677437388946, + 42.9178479197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af8ede85b1feb50845c475f22c56f12930666ae2", + "fields": { + "code_commune_insee": "66216", + "nom_de_la_commune": "TRILLA", + "code_postal": "66220", + "coordonnees_gps": [ + 42.7387475959, + 2.52142584284 + ], + "libelle_d_acheminement": "TRILLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52142584284, + 42.7387475959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f996e4d78b412826312829c3d16c78639a8d845c", + "fields": { + "code_commune_insee": "64338", + "nom_de_la_commune": "LESPOURCY", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3596787562, + -0.154631315094 + ], + "libelle_d_acheminement": "LESPOURCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.154631315094, + 43.3596787562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "875cf4dd0373ffb2799c7cff4ce51612b641ceb8", + "fields": { + "code_commune_insee": "66218", + "nom_de_la_commune": "UR", + "code_postal": "66760", + "coordonnees_gps": [ + 42.4618525308, + 1.941668494 + ], + "libelle_d_acheminement": "UR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.941668494, + 42.4618525308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0d6aec541794c017c5de7e7f82e33555289e40c", + "fields": { + "code_commune_insee": "64343", + "nom_de_la_commune": "LIMENDOUS", + "code_postal": "64420", + "coordonnees_gps": [ + 43.2780903853, + -0.182787733754 + ], + "libelle_d_acheminement": "LIMENDOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.182787733754, + 43.2780903853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd985b4a32ea7074e9ada37340e8b1d536c63a4f", + "fields": { + "code_commune_insee": "66224", + "nom_de_la_commune": "VILLELONGUE DE LA SALANQUE", + "code_postal": "66410", + "coordonnees_gps": [ + 42.7256098922, + 2.97746160668 + ], + "libelle_d_acheminement": "VILLELONGUE DE LA SALANQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97746160668, + 42.7256098922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7cdbb6b301f328bfaf6d88b9114dd9355300857", + "fields": { + "code_commune_insee": "64348", + "nom_de_la_commune": "LONS", + "code_postal": "64140", + "coordonnees_gps": [ + 43.3212113158, + -0.401734390624 + ], + "libelle_d_acheminement": "LONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.401734390624, + 43.3212113158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "153294053d6c6eb859893804ee7dd629b6300579", + "fields": { + "code_commune_insee": "66225", + "nom_de_la_commune": "VILLELONGUE DELS MONTS", + "code_postal": "66740", + "coordonnees_gps": [ + 42.5236011382, + 2.89994789711 + ], + "libelle_d_acheminement": "VILLELONGUE DELS MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89994789711, + 42.5236011382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af7350b4964ee197138a0f43f0394bc999614112", + "fields": { + "code_commune_insee": "64351", + "nom_de_la_commune": "LOURDIOS ICHERE", + "code_postal": "64570", + "coordonnees_gps": [ + 43.0419831344, + -0.655955491716 + ], + "libelle_d_acheminement": "LOURDIOS ICHERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.655955491716, + 43.0419831344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "334770b2a0f98bbd0fea8ca4bf2a64b1fafd7071", + "fields": { + "code_commune_insee": "66233", + "nom_de_la_commune": "VIVES", + "code_postal": "66490", + "coordonnees_gps": [ + 42.5292840825, + 2.767358635 + ], + "libelle_d_acheminement": "VIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.767358635, + 42.5292840825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc8841f42cb1c52455588f5f44691c3f797b927a", + "fields": { + "code_commune_insee": "64353", + "nom_de_la_commune": "LOUVIE JUZON", + "code_postal": "64260", + "coordonnees_gps": [ + 43.0727682758, + -0.337194181284 + ], + "libelle_d_acheminement": "LOUVIE JUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.337194181284, + 43.0727682758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b82f61ef741827519781e05dfb5fceed65e36694", + "fields": { + "code_commune_insee": "67001", + "nom_de_la_commune": "ACHENHEIM", + "code_postal": "67204", + "coordonnees_gps": [ + 48.58046231, + 7.62540605297 + ], + "libelle_d_acheminement": "ACHENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62540605297, + 48.58046231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fa94667de21a0432073e7cbd34501baf9c9fa61", + "fields": { + "code_commune_insee": "64362", + "nom_de_la_commune": "LUXE SUMBERRAUTE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3492777324, + -1.07290522087 + ], + "libelle_d_acheminement": "LUXE SUMBERRAUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07290522087, + 43.3492777324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9df99aa94c8283603cb6afa4ccdc1fde3be2957", + "fields": { + "code_commune_insee": "67003", + "nom_de_la_commune": "ALBE", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3614659809, + 7.33650221165 + ], + "libelle_d_acheminement": "ALBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33650221165, + 48.3614659809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea7dae433a9dca44ffa813f28f69c78f735683e6", + "fields": { + "code_commune_insee": "64363", + "nom_de_la_commune": "LYS", + "code_postal": "64260", + "coordonnees_gps": [ + 43.1338458627, + -0.346755700017 + ], + "libelle_d_acheminement": "LYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.346755700017, + 43.1338458627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7b8184d1208d2b39b3335d13fd667452d420a8e", + "fields": { + "ligne_5": "ALLENWILLER", + "code_commune_insee": "67004", + "libelle_d_acheminement": "SOMMERAU", + "code_postal": "67310", + "nom_de_la_commune": "SOMMERAU", + "coordonnees_gps": [ + 48.6536185967, + 7.36691370722 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36691370722, + 48.6536185967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd680e90cdc3dbb50a0e68f1d3d432fe89e19248", + "fields": { + "code_commune_insee": "64364", + "nom_de_la_commune": "MACAYE", + "code_postal": "64240", + "coordonnees_gps": [ + 43.3223278424, + -1.32403472047 + ], + "libelle_d_acheminement": "MACAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32403472047, + 43.3223278424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "856620a966759944ec23f90a5782b7255a05c5e4", + "fields": { + "ligne_5": "BIRKENWALD", + "code_commune_insee": "67004", + "libelle_d_acheminement": "SOMMERAU", + "code_postal": "67440", + "nom_de_la_commune": "SOMMERAU", + "coordonnees_gps": [ + 48.6536185967, + 7.36691370722 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36691370722, + 48.6536185967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58548ed81c858dd79b64f0cedbeb30c9b010ebc3", + "fields": { + "code_commune_insee": "64365", + "nom_de_la_commune": "MALAUSSANNE", + "code_postal": "64410", + "coordonnees_gps": [ + 43.5702193545, + -0.469701824259 + ], + "libelle_d_acheminement": "MALAUSSANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.469701824259, + 43.5702193545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f22f2c46dc94cb380bac895140b5d082db1e7071", + "fields": { + "code_commune_insee": "67018", + "nom_de_la_commune": "BALBRONN", + "code_postal": "67310", + "coordonnees_gps": [ + 48.5825386976, + 7.40408500338 + ], + "libelle_d_acheminement": "BALBRONN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40408500338, + 48.5825386976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f04d0d5f69b74bc74ed19438ebeb117bab1cc92", + "fields": { + "code_commune_insee": "64369", + "nom_de_la_commune": "MASPIE LALONQUERE JUILLACQ", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4247831466, + -0.14776537036 + ], + "libelle_d_acheminement": "MASPIE LALONQUERE JUILLACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.14776537036, + 43.4247831466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c243a2207bd9e9364c75c5b10b7a2d5f753a78bd", + "fields": { + "code_commune_insee": "67019", + "nom_de_la_commune": "BALDENHEIM", + "code_postal": "67600", + "coordonnees_gps": [ + 48.2444211, + 7.53586844634 + ], + "libelle_d_acheminement": "BALDENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53586844634, + 48.2444211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da9286c526cd860fcc05b6b78aec16a1d444c45a", + "fields": { + "code_commune_insee": "64371", + "nom_de_la_commune": "MAULEON LICHARRE", + "code_postal": "64130", + "coordonnees_gps": [ + 43.2166409006, + -0.883099093035 + ], + "libelle_d_acheminement": "MAULEON SOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.883099093035, + 43.2166409006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b480a7dcc2b333f305f27a04b5267b56cffe2d7e", + "fields": { + "code_commune_insee": "67029", + "nom_de_la_commune": "BERG", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8928474217, + 7.14475787887 + ], + "libelle_d_acheminement": "BERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14475787887, + 48.8928474217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59fde4492ea2649e788e00e74b81c04557bd7d86", + "fields": { + "code_commune_insee": "64379", + "nom_de_la_commune": "MENDIVE", + "code_postal": "64220", + "coordonnees_gps": [ + 43.0830689585, + -1.08233702672 + ], + "libelle_d_acheminement": "MENDIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08233702672, + 43.0830689585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66e5487e5efe166763a3c3fdee4ac989ebe5b964", + "fields": { + "code_commune_insee": "67032", + "nom_de_la_commune": "BERNARDVILLE", + "code_postal": "67140", + "coordonnees_gps": [ + 48.3696169477, + 7.40684055557 + ], + "libelle_d_acheminement": "BERNARDVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40684055557, + 48.3696169477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5daa3b43d9bce24ec5846b24201c85ac5a3de870", + "fields": { + "code_commune_insee": "64380", + "nom_de_la_commune": "MERACQ", + "code_postal": "64410", + "coordonnees_gps": [ + 43.5116461311, + -0.383432750249 + ], + "libelle_d_acheminement": "MERACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.383432750249, + 43.5116461311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf3e5f58a37de1516a97b610f423670df9a87cfd", + "fields": { + "code_commune_insee": "67034", + "nom_de_la_commune": "BERSTETT", + "code_postal": "67370", + "coordonnees_gps": [ + 48.6822332576, + 7.63237996044 + ], + "libelle_d_acheminement": "BERSTETT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63237996044, + 48.6822332576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5213183d22c589eb2c6d0910dee3b66ea6b0cc3b", + "fields": { + "code_commune_insee": "64383", + "nom_de_la_commune": "MIALOS", + "code_postal": "64410", + "coordonnees_gps": [ + 43.4995726122, + -0.409362300931 + ], + "libelle_d_acheminement": "MIALOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.409362300931, + 43.4995726122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "674f7ca48e193b9d60dfd8d3e72d81c92138229a", + "fields": { + "ligne_5": "GIMBRETT", + "code_commune_insee": "67034", + "libelle_d_acheminement": "BERSTETT", + "code_postal": "67370", + "nom_de_la_commune": "BERSTETT", + "coordonnees_gps": [ + 48.6822332576, + 7.63237996044 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63237996044, + 48.6822332576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02799ff4005801a8bfd9ecf312a66c65d1617d77", + "fields": { + "code_commune_insee": "64392", + "nom_de_la_commune": "MONCLA", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5813150725, + -0.222857074215 + ], + "libelle_d_acheminement": "MONCLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.222857074215, + 43.5813150725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a0d4d49f101432e443ecc4aea63bf7ae343602a", + "fields": { + "code_commune_insee": "67036", + "nom_de_la_commune": "BETTWILLER", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8879941966, + 7.17495885923 + ], + "libelle_d_acheminement": "BETTWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17495885923, + 48.8879941966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d75ae0333922560dba9a1e2086d8e402856023ab", + "fields": { + "code_commune_insee": "64397", + "nom_de_la_commune": "MONTAGUT", + "code_postal": "64410", + "coordonnees_gps": [ + 43.5488973424, + -0.500913141999 + ], + "libelle_d_acheminement": "MONTAGUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.500913141999, + 43.5488973424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b1eeaa2549293fff13263b324b47f63002a6c60", + "fields": { + "code_commune_insee": "67053", + "nom_de_la_commune": "BOESENBIESEN", + "code_postal": "67390", + "coordonnees_gps": [ + 48.2261928699, + 7.56229858754 + ], + "libelle_d_acheminement": "BOESENBIESEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56229858754, + 48.2261928699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae2b329374186afeed32b5ad241302d088e14255", + "fields": { + "code_commune_insee": "64401", + "nom_de_la_commune": "MONT DISSE", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5540384731, + -0.148656162377 + ], + "libelle_d_acheminement": "MONT DISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.148656162377, + 43.5540384731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cddd1f930ae314776ee423a8ed39c0cae1c374f", + "fields": { + "code_commune_insee": "67055", + "nom_de_la_commune": "BOOFZHEIM", + "code_postal": "67860", + "coordonnees_gps": [ + 48.3343650586, + 7.6782140788 + ], + "libelle_d_acheminement": "BOOFZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6782140788, + 48.3343650586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5adc7dd8c294572b1990214dcf5166caf332efce", + "fields": { + "code_commune_insee": "64405", + "nom_de_la_commune": "MORLAAS", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3345842802, + -0.268321408256 + ], + "libelle_d_acheminement": "MORLAAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.268321408256, + 43.3345842802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "834f1afca4d8f420ec6219c177881e21779cbeaa", + "fields": { + "code_commune_insee": "67057", + "nom_de_la_commune": "BOSSELSHAUSEN", + "code_postal": "67330", + "coordonnees_gps": [ + 48.8061717193, + 7.50878423117 + ], + "libelle_d_acheminement": "BOSSELSHAUSEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50878423117, + 48.8061717193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "486b914f5e8463d05c84b9d36000c2e838d52b14", + "fields": { + "code_commune_insee": "64409", + "nom_de_la_commune": "MOUMOUR", + "code_postal": "64400", + "coordonnees_gps": [ + 43.2105912463, + -0.661946566242 + ], + "libelle_d_acheminement": "MOUMOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.661946566242, + 43.2105912463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b35f19087449fe6006579ffd83dadcf7cdf6508", + "fields": { + "code_commune_insee": "67058", + "nom_de_la_commune": "BOSSENDORF", + "code_postal": "67270", + "coordonnees_gps": [ + 48.781544071, + 7.56733864822 + ], + "libelle_d_acheminement": "BOSSENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56733864822, + 48.781544071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e504636bd2a13bcba6c823c3c3587d150c100f56", + "fields": { + "code_commune_insee": "64410", + "nom_de_la_commune": "MOURENX", + "code_postal": "64150", + "coordonnees_gps": [ + 43.3740220656, + -0.617464224458 + ], + "libelle_d_acheminement": "MOURENX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.617464224458, + 43.3740220656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "994756ab71f6dffa9eeda96b5ccc49c1706a3f39", + "fields": { + "ligne_5": "IMBSHEIM", + "code_commune_insee": "67061", + "libelle_d_acheminement": "BOUXWILLER", + "code_postal": "67330", + "nom_de_la_commune": "BOUXWILLER", + "coordonnees_gps": [ + 48.8172998086, + 7.46488021539 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46488021539, + 48.8172998086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c37d5717543afc5fdf92dd93bfc02e756047ebb2", + "fields": { + "code_commune_insee": "64411", + "nom_de_la_commune": "MUSCULDY", + "code_postal": "64130", + "coordonnees_gps": [ + 43.1868106258, + -0.995319456738 + ], + "libelle_d_acheminement": "MUSCULDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.995319456738, + 43.1868106258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a6359e74dfff29090a41bd94bb1384385001ed6", + "fields": { + "code_commune_insee": "67062", + "nom_de_la_commune": "BREITENAU", + "code_postal": "67220", + "coordonnees_gps": [ + 48.316132686, + 7.27931381506 + ], + "libelle_d_acheminement": "BREITENAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27931381506, + 48.316132686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e55a95f0e8ae460884f79f9e57a170b9f0c7c049", + "fields": { + "code_commune_insee": "64416", + "nom_de_la_commune": "NAVARRENX", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3288673351, + -0.736425017112 + ], + "libelle_d_acheminement": "NAVARRENX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.736425017112, + 43.3288673351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b60b0fd9b80aa6f807705ecd2427fb7a9402aab5", + "fields": { + "code_commune_insee": "67065", + "nom_de_la_commune": "BREUSCHWICKERSHEIM", + "code_postal": "67112", + "coordonnees_gps": [ + 48.578440458, + 7.59885897998 + ], + "libelle_d_acheminement": "BREUSCHWICKERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59885897998, + 48.578440458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a51fd64ab9a37e1735041d1b2cac4522c90d8fcb", + "fields": { + "code_commune_insee": "64422", + "nom_de_la_commune": "OLORON STE MARIE", + "code_postal": "64400", + "coordonnees_gps": [ + 43.1560871189, + -0.587546244432 + ], + "libelle_d_acheminement": "OLORON STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.587546244432, + 43.1560871189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfae59e64c24893d257ba51b0039f2fe2dfe25e4", + "fields": { + "ligne_5": "WACQUENOUX", + "code_commune_insee": "67066", + "libelle_d_acheminement": "LA BROQUE", + "code_postal": "67130", + "nom_de_la_commune": "LA BROQUE", + "coordonnees_gps": [ + 48.4601655449, + 7.17283025504 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17283025504, + 48.4601655449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96bb1eb9e504c05ea60fcf200265ddb6f6937dca", + "fields": { + "code_commune_insee": "64424", + "nom_de_la_commune": "ORDIARP", + "code_postal": "64130", + "coordonnees_gps": [ + 43.1898726884, + -0.963886517377 + ], + "libelle_d_acheminement": "ORDIARP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.963886517377, + 43.1898726884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9cc2c43bb37a51c6f5901bab75b0d5c1f50e00b", + "fields": { + "code_commune_insee": "67066", + "nom_de_la_commune": "LA BROQUE", + "code_postal": "67570", + "coordonnees_gps": [ + 48.4601655449, + 7.17283025504 + ], + "libelle_d_acheminement": "LA BROQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17283025504, + 48.4601655449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d34650ebc9e844aac6940ec33543083ac1f6636", + "fields": { + "code_commune_insee": "64434", + "nom_de_la_commune": "OSSENX", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3765462273, + -0.80836547403 + ], + "libelle_d_acheminement": "OSSENX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80836547403, + 43.3765462273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f66ec9dfe0bc8a58b1c47a719e17c0d21a1be8a", + "fields": { + "code_commune_insee": "67069", + "nom_de_la_commune": "BUHL", + "code_postal": "67470", + "coordonnees_gps": [ + 48.9172713817, + 8.01562633252 + ], + "libelle_d_acheminement": "BUHL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.01562633252, + 48.9172713817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fbab0959b653ab4022b2e04658ee853975ce75d", + "fields": { + "ligne_5": "MONTESTRUCQ", + "code_commune_insee": "64440", + "libelle_d_acheminement": "OZENX MONTESTRUCQ", + "code_postal": "64300", + "nom_de_la_commune": "OZENX MONTESTRUCQ", + "coordonnees_gps": [ + 43.434296626, + -0.807501200009 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.807501200009, + 43.434296626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67c4ae07d38bb76ed734942c32a61a284f003d8c", + "fields": { + "code_commune_insee": "67070", + "nom_de_la_commune": "BURBACH", + "code_postal": "67260", + "coordonnees_gps": [ + 48.8975113337, + 7.11153585144 + ], + "libelle_d_acheminement": "BURBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11153585144, + 48.8975113337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ee1dfea358ae64f1f2f37029a71076198543337", + "fields": { + "code_commune_insee": "64442", + "nom_de_la_commune": "PARBAYSE", + "code_postal": "64360", + "coordonnees_gps": [ + 43.3329548199, + -0.549856093173 + ], + "libelle_d_acheminement": "PARBAYSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.549856093173, + 43.3329548199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c673420a3c0dae55dab191a8c3366f937eb0d4d", + "fields": { + "code_commune_insee": "67072", + "nom_de_la_commune": "BUTTEN", + "code_postal": "67430", + "coordonnees_gps": [ + 48.9713955937, + 7.24356966874 + ], + "libelle_d_acheminement": "BUTTEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24356966874, + 48.9713955937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a25ca3ec23dc66d92a054f79b93ed76174a6cd35", + "fields": { + "code_commune_insee": "64444", + "nom_de_la_commune": "PARDIES PIETAT", + "code_postal": "64800", + "coordonnees_gps": [ + 43.2137224883, + -0.311095758037 + ], + "libelle_d_acheminement": "PARDIES PIETAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.311095758037, + 43.2137224883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2afc86866aa87d74db3edd82fd4a7dc34e2446bd", + "fields": { + "code_commune_insee": "67078", + "nom_de_la_commune": "CRASTATT", + "code_postal": "67310", + "coordonnees_gps": [ + 48.6596453708, + 7.42269000127 + ], + "libelle_d_acheminement": "CRASTATT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42269000127, + 48.6596453708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "564fc1b2d973ae24118f01ea4b2d3027f5b22dee", + "fields": { + "code_commune_insee": "64445", + "nom_de_la_commune": "PAU", + "code_postal": "64000", + "coordonnees_gps": [ + 43.3200189773, + -0.350337918181 + ], + "libelle_d_acheminement": "PAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.350337918181, + 43.3200189773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac78879844c5af40452e90839f94bc3bbc322708", + "fields": { + "code_commune_insee": "67081", + "nom_de_la_commune": "DAHLENHEIM", + "code_postal": "67310", + "coordonnees_gps": [ + 48.5882941085, + 7.51624848746 + ], + "libelle_d_acheminement": "DAHLENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51624848746, + 48.5882941085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cdfd423d858cdeb1669ed917333719109c639c6", + "fields": { + "code_commune_insee": "64453", + "nom_de_la_commune": "PONTACQ", + "code_postal": "64530", + "coordonnees_gps": [ + 43.1983211463, + -0.103500734217 + ], + "libelle_d_acheminement": "PONTACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.103500734217, + 43.1983211463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6c78a954f800136a50be62cd0d9cf05c9eeb4a1", + "fields": { + "code_commune_insee": "67082", + "nom_de_la_commune": "DALHUNDEN", + "code_postal": "67770", + "coordonnees_gps": [ + 48.7711698119, + 7.99159083509 + ], + "libelle_d_acheminement": "DALHUNDEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.99159083509, + 48.7711698119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a127628636a50134ac3fbb9a15783fbf4fc8ddcc", + "fields": { + "code_commune_insee": "64457", + "nom_de_la_commune": "POURSIUGUES BOUCOUE", + "code_postal": "64410", + "coordonnees_gps": [ + 43.5541576599, + -0.378415416336 + ], + "libelle_d_acheminement": "POURSIUGUES BOUCOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.378415416336, + 43.5541576599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbd54758f78dad6a6426d84d4e592fefbdf1a617", + "fields": { + "ligne_5": "NEUNHOFFEN", + "code_commune_insee": "67083", + "libelle_d_acheminement": "DAMBACH", + "code_postal": "67110", + "nom_de_la_commune": "DAMBACH", + "coordonnees_gps": [ + 49.0093806397, + 7.64091899107 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64091899107, + 49.0093806397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6d6b779feca5e699abb430b57a188675c9f3668", + "fields": { + "code_commune_insee": "64459", + "nom_de_la_commune": "PRECHACQ NAVARRENX", + "code_postal": "64190", + "coordonnees_gps": [ + 43.2799895089, + -0.705497036287 + ], + "libelle_d_acheminement": "PRECHACQ NAVARRENX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.705497036287, + 43.2799895089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fb43ca217da421ba190875de11a0a129c7dbe6c", + "fields": { + "code_commune_insee": "67084", + "nom_de_la_commune": "DAMBACH LA VILLE", + "code_postal": "67650", + "coordonnees_gps": [ + 48.3231725111, + 7.4269277176 + ], + "libelle_d_acheminement": "DAMBACH LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4269277176, + 48.3231725111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0580a915539f00206194441fb2f8cfcc32c2738b", + "fields": { + "code_commune_insee": "64462", + "nom_de_la_commune": "RAMOUS", + "code_postal": "64270", + "coordonnees_gps": [ + 43.5249836797, + -0.880069037681 + ], + "libelle_d_acheminement": "RAMOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.880069037681, + 43.5249836797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a02ddcb178790b0ab84fb4dbcfbe4a2996c1b281", + "fields": { + "ligne_5": "NEUBOURG", + "code_commune_insee": "67087", + "libelle_d_acheminement": "DAUENDORF", + "code_postal": "67350", + "nom_de_la_commune": "DAUENDORF", + "coordonnees_gps": [ + 48.833965856, + 7.66613309742 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.66613309742, + 48.833965856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "385dcc990c62906df79e91b61728e112fa604f94", + "fields": { + "code_commune_insee": "64466", + "nom_de_la_commune": "RIVEHAUTE", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3432256931, + -0.85985108204 + ], + "libelle_d_acheminement": "RIVEHAUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85985108204, + 43.3432256931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48b1f5686663c664c98339866a29119edbb83412", + "fields": { + "code_commune_insee": "67088", + "nom_de_la_commune": "DEHLINGEN", + "code_postal": "67430", + "coordonnees_gps": [ + 48.9852170965, + 7.18127401976 + ], + "libelle_d_acheminement": "DEHLINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18127401976, + 48.9852170965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d37fe1813d79af8b578c1324e6e1a4bc01e1748e", + "fields": { + "code_commune_insee": "64472", + "nom_de_la_commune": "ST CASTIN", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3743065004, + -0.309504991301 + ], + "libelle_d_acheminement": "ST CASTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.309504991301, + 43.3743065004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5f3236b1e129057797bc875b7ecfdce6e609bbc", + "fields": { + "code_commune_insee": "67097", + "nom_de_la_commune": "DINGSHEIM", + "code_postal": "67370", + "coordonnees_gps": [ + 48.622536679, + 7.6607451279 + ], + "libelle_d_acheminement": "DINGSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6607451279, + 48.622536679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e10739a18c6bec09431ce563da26dda8c0d3b2cb", + "fields": { + "code_commune_insee": "64476", + "nom_de_la_commune": "ST ESTEBEN", + "code_postal": "64640", + "coordonnees_gps": [ + 43.3288407635, + -1.21620474075 + ], + "libelle_d_acheminement": "ST ESTEBEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21620474075, + 43.3288407635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bde2ab8554185129d1c6df265cfb74f1001b55ad", + "fields": { + "code_commune_insee": "67099", + "nom_de_la_commune": "DOMFESSEL", + "code_postal": "67430", + "coordonnees_gps": [ + 48.9480129452, + 7.14588876509 + ], + "libelle_d_acheminement": "DOMFESSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14588876509, + 48.9480129452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79bc8e7dda78a3e96ca3dbcaad33fb6ea200ec14", + "fields": { + "code_commune_insee": "64477", + "nom_de_la_commune": "ST ETIENNE DE BAIGORRY", + "code_postal": "64430", + "coordonnees_gps": [ + 43.179022936, + -1.35105102148 + ], + "libelle_d_acheminement": "ST ETIENNE DE BAIGORRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35105102148, + 43.179022936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55bc7b6aa5814e21ab614498b7805900609a3bc4", + "fields": { + "code_commune_insee": "67105", + "nom_de_la_commune": "DRULINGEN", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8678721776, + 7.1949547515 + ], + "libelle_d_acheminement": "DRULINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1949547515, + 48.8678721776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fac99e87887f2296c463d3f483154b7cd4939d22", + "fields": { + "code_commune_insee": "64478", + "nom_de_la_commune": "ST FAUST", + "code_postal": "64110", + "coordonnees_gps": [ + 43.270186835, + -0.44796457911 + ], + "libelle_d_acheminement": "ST FAUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44796457911, + 43.270186835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f9146a940c8182ae479b64002f2dc2e3cb0de49", + "fields": { + "code_commune_insee": "67108", + "nom_de_la_commune": "DUPPIGHEIM", + "code_postal": "67120", + "coordonnees_gps": [ + 48.5331312304, + 7.59599375258 + ], + "libelle_d_acheminement": "DUPPIGHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59599375258, + 48.5331312304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f767a1a43ecaa92b36a2e90c952a5d5a94791bed", + "fields": { + "code_commune_insee": "64480", + "nom_de_la_commune": "ST GLADIE ARRIVE MUNEIN", + "code_postal": "64390", + "coordonnees_gps": [ + 43.3714422062, + -0.92287013321 + ], + "libelle_d_acheminement": "ST GLADIE ARRIVE MUNEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92287013321, + 43.3714422062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a982dcdd114526fa3c7433918aa6657f0f78e963", + "fields": { + "code_commune_insee": "67117", + "nom_de_la_commune": "ECKARTSWILLER", + "code_postal": "67700", + "coordonnees_gps": [ + 48.7796438355, + 7.32419357331 + ], + "libelle_d_acheminement": "ECKARTSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32419357331, + 48.7796438355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b923cbaf14734e5584767e112983ed43e34b96c", + "fields": { + "code_commune_insee": "64486", + "nom_de_la_commune": "ST JEAN POUDGE", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5282173941, + -0.185319400051 + ], + "libelle_d_acheminement": "ST JEAN POUDGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.185319400051, + 43.5282173941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aad564b7bb1707f09b805ce4ef82c941219410b", + "fields": { + "code_commune_insee": "67118", + "nom_de_la_commune": "ECKBOLSHEIM", + "code_postal": "67201", + "coordonnees_gps": [ + 48.5790053064, + 7.68216295597 + ], + "libelle_d_acheminement": "ECKBOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68216295597, + 48.5790053064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb53795c00d1163ce2b5383c8c546d3776f83d20", + "fields": { + "code_commune_insee": "64488", + "nom_de_la_commune": "ST LAURENT BRETAGNE", + "code_postal": "64160", + "coordonnees_gps": [ + 43.382550943, + -0.205102257997 + ], + "libelle_d_acheminement": "ST LAURENT BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.205102257997, + 43.382550943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8645e56548a9fb12677ec3fc90073cb93712da8", + "fields": { + "ligne_5": "WANGENBOURG", + "code_commune_insee": "67122", + "libelle_d_acheminement": "WANGENBOURG ENGENTHAL", + "code_postal": "67710", + "nom_de_la_commune": "WANGENBOURG ENGENTHAL", + "coordonnees_gps": [ + 48.6212665024, + 7.30505408726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30505408726, + 48.6212665024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff6397ed0b0574365415a9d9ddcaff8a0ad8baf7", + "fields": { + "code_commune_insee": "64489", + "nom_de_la_commune": "ST MARTIN D ARBEROUE", + "code_postal": "64640", + "coordonnees_gps": [ + 43.3433653939, + -1.18372407608 + ], + "libelle_d_acheminement": "ST MARTIN D ARBEROUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18372407608, + 43.3433653939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "582e2f81d74418d2d7207882d9891be8b9c21b2a", + "fields": { + "code_commune_insee": "67128", + "nom_de_la_commune": "ERNOLSHEIM BRUCHE", + "code_postal": "67120", + "coordonnees_gps": [ + 48.5637542939, + 7.56903301628 + ], + "libelle_d_acheminement": "ERNOLSHEIM BRUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56903301628, + 48.5637542939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4425a8708081898361f382b79c53da7a9d0d67d", + "fields": { + "code_commune_insee": "64491", + "nom_de_la_commune": "ST MEDARD", + "code_postal": "64370", + "coordonnees_gps": [ + 43.5349414863, + -0.587158607192 + ], + "libelle_d_acheminement": "ST MEDARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.587158607192, + 43.5349414863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ddac171b1fd2273846ffaeae6ce0d3abb75629c", + "fields": { + "ligne_5": "GRAUFTHAL", + "code_commune_insee": "67133", + "libelle_d_acheminement": "ESCHBOURG", + "code_postal": "67320", + "nom_de_la_commune": "ESCHBOURG", + "coordonnees_gps": [ + 48.8226852369, + 7.29080380579 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29080380579, + 48.8226852369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f89b06be4e10f8e340290a04045f7445529b372", + "fields": { + "code_commune_insee": "64492", + "nom_de_la_commune": "ST MICHEL", + "code_postal": "64220", + "coordonnees_gps": [ + 43.0893274033, + -1.23447352127 + ], + "libelle_d_acheminement": "ST MICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23447352127, + 43.0893274033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a373ffdef2154d4c35b4a3d439f3a3e9c4eb5b3a", + "fields": { + "code_commune_insee": "67134", + "nom_de_la_commune": "ESCHWILLER", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8576773931, + 7.11098433701 + ], + "libelle_d_acheminement": "ESCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11098433701, + 48.8576773931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9cd7216c07b6fa8962b92ce4c8813b350eed674", + "fields": { + "code_commune_insee": "64496", + "nom_de_la_commune": "ST PIERRE D IRUBE", + "code_postal": "64990", + "coordonnees_gps": [ + 43.462632374, + -1.44207882507 + ], + "libelle_d_acheminement": "ST PIERRE D IRUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44207882507, + 43.462632374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07625315755c4a90ea5a96e79cc9c7864d525882", + "fields": { + "code_commune_insee": "67135", + "nom_de_la_commune": "ETTENDORF", + "code_postal": "67350", + "coordonnees_gps": [ + 48.8151610201, + 7.58546708674 + ], + "libelle_d_acheminement": "ETTENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58546708674, + 48.8151610201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a14c4ad20893cb690a118addba57d6d1e42e4b1b", + "fields": { + "code_commune_insee": "64510", + "nom_de_la_commune": "SAULT DE NAVAILLES", + "code_postal": "64300", + "coordonnees_gps": [ + 43.5406415198, + -0.676491082021 + ], + "libelle_d_acheminement": "SAULT DE NAVAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.676491082021, + 43.5406415198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "789d4ccd755879b6cb3ba90f2fbf318b79a0b7dd", + "fields": { + "ligne_5": "OHNHEIM", + "code_commune_insee": "67137", + "libelle_d_acheminement": "FEGERSHEIM", + "code_postal": "67640", + "nom_de_la_commune": "FEGERSHEIM", + "coordonnees_gps": [ + 48.4974401666, + 7.68863317258 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68863317258, + 48.4974401666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "285a91031989fd1918fbda4d1a62f8b3be48ad1a", + "fields": { + "code_commune_insee": "64512", + "nom_de_la_commune": "SAUVELADE", + "code_postal": "64150", + "coordonnees_gps": [ + 43.3913713418, + -0.716491969468 + ], + "libelle_d_acheminement": "SAUVELADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.716491969468, + 43.3913713418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56df18b9f880030d4b85ceb15960ea8ef243a27a", + "fields": { + "code_commune_insee": "67142", + "nom_de_la_commune": "FORT LOUIS", + "code_postal": "67480", + "coordonnees_gps": [ + 48.7987310184, + 8.05261384918 + ], + "libelle_d_acheminement": "FORT LOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.05261384918, + 48.7987310184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58824065708da5754ac651642804c33f0b89b7bf", + "fields": { + "code_commune_insee": "64514", + "nom_de_la_commune": "SEBY", + "code_postal": "64410", + "coordonnees_gps": [ + 43.479615245, + -0.397462262821 + ], + "libelle_d_acheminement": "SEBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.397462262821, + 43.479615245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0103914eba041dce2dfef72dbf4bdfb1baae1dd8", + "fields": { + "code_commune_insee": "67144", + "nom_de_la_commune": "FOUDAY", + "code_postal": "67130", + "coordonnees_gps": [ + 48.420716241, + 7.19048475836 + ], + "libelle_d_acheminement": "FOUDAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19048475836, + 48.420716241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6be365adf0659192cb3505fcbb7bca434a3cc11", + "fields": { + "code_commune_insee": "64522", + "nom_de_la_commune": "SEVIGNACQ MEYRACQ", + "code_postal": "64260", + "coordonnees_gps": [ + 43.1376731477, + -0.385672446851 + ], + "libelle_d_acheminement": "SEVIGNACQ MEYRACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.385672446851, + 43.1376731477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "235fd63380ef5980da7289ba14a4bdc4e7b251ed", + "fields": { + "code_commune_insee": "67147", + "nom_de_la_commune": "FROESCHWILLER", + "code_postal": "67360", + "coordonnees_gps": [ + 48.93840535, + 7.71886241494 + ], + "libelle_d_acheminement": "FROESCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71886241494, + 48.93840535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b7fb8a1cc513c707e5b14658e54c04e795651e2", + "fields": { + "code_commune_insee": "64533", + "nom_de_la_commune": "TARDETS SORHOLUS", + "code_postal": "64470", + "coordonnees_gps": [ + 43.1284037403, + -0.839978372656 + ], + "libelle_d_acheminement": "TARDETS SORHOLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.839978372656, + 43.1284037403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0184e44493a028a4a60a52389ba64621f42e2ceb", + "fields": { + "code_commune_insee": "67149", + "nom_de_la_commune": "FURCHHAUSEN", + "code_postal": "67700", + "coordonnees_gps": [ + 48.7204949919, + 7.43041510079 + ], + "libelle_d_acheminement": "FURCHHAUSEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43041510079, + 48.7204949919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a8caf84ab3040f88b075544ec2e29323137765f", + "fields": { + "code_commune_insee": "64534", + "nom_de_la_commune": "TARON SADIRAC VIELLENAVE", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5121931243, + -0.244633052278 + ], + "libelle_d_acheminement": "TARON SADIRAC VIELLENAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.244633052278, + 43.5121931243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8faa04c97e56b39f3202ae9ea2fe915b270bc009", + "fields": { + "code_commune_insee": "67150", + "nom_de_la_commune": "FURDENHEIM", + "code_postal": "67117", + "coordonnees_gps": [ + 48.6105637831, + 7.55789773047 + ], + "libelle_d_acheminement": "FURDENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55789773047, + 48.6105637831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "804a610da1fdfab917169d87bfeb3c0888da532e", + "fields": { + "ligne_5": "BEHOBIE", + "code_commune_insee": "64545", + "libelle_d_acheminement": "URRUGNE", + "code_postal": "64700", + "nom_de_la_commune": "URRUGNE", + "coordonnees_gps": [ + 43.3497136026, + -1.69722838309 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69722838309, + 43.3497136026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e95467f7b6ed762bf7b79e0bed0e0bc4a261a95a", + "fields": { + "ligne_5": "ZOEBERSDORF", + "code_commune_insee": "67153", + "libelle_d_acheminement": "GEISWILLER ZOEBERSDORF", + "code_postal": "67270", + "nom_de_la_commune": "GEISWILLER ZOEBERSDORF", + "coordonnees_gps": [ + 48.7904561114, + 7.50050784514 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50050784514, + 48.7904561114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92d353381a59c3542f96600c0f1fc7bae5df8c23", + "fields": { + "code_commune_insee": "65002", + "nom_de_la_commune": "ADE", + "code_postal": "65100", + "coordonnees_gps": [ + 43.1415839472, + -0.0260255659904 + ], + "libelle_d_acheminement": "ADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0260255659904, + 43.1415839472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b89f69740f55620ea2d4322663601a9784d84af6", + "fields": { + "code_commune_insee": "67159", + "nom_de_la_commune": "GOERLINGEN", + "code_postal": "67320", + "coordonnees_gps": [ + 48.7987678214, + 7.08515641917 + ], + "libelle_d_acheminement": "GOERLINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08515641917, + 48.7987678214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e039b5817201bf48263cf5138fb9fede394daff7", + "fields": { + "code_commune_insee": "65004", + "nom_de_la_commune": "AGOS VIDALOS", + "code_postal": "65400", + "coordonnees_gps": [ + 43.0397405633, + -0.0754111444316 + ], + "libelle_d_acheminement": "AGOS VIDALOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0754111444316, + 43.0397405633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "943c14d91ec873dd2b241fe26052e6b8f8276ab6", + "fields": { + "code_commune_insee": "67165", + "nom_de_la_commune": "GRANDFONTAINE", + "code_postal": "67130", + "coordonnees_gps": [ + 48.4986116178, + 7.12869750968 + ], + "libelle_d_acheminement": "GRANDFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12869750968, + 48.4986116178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab18dc821f700671a0d7cc57bc29464aae6318ab", + "fields": { + "code_commune_insee": "65009", + "nom_de_la_commune": "ANERES", + "code_postal": "65150", + "coordonnees_gps": [ + 43.0760669312, + 0.464444450073 + ], + "libelle_d_acheminement": "ANERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.464444450073, + 43.0760669312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d84d0fa8706acd6347be07d8cef4d72b83727e69", + "fields": { + "code_commune_insee": "67174", + "nom_de_la_commune": "GUMBRECHTSHOFFEN", + "code_postal": "67110", + "coordonnees_gps": [ + 48.9027833028, + 7.62074781132 + ], + "libelle_d_acheminement": "GUMBRECHTSHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62074781132, + 48.9027833028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "135963accc57c650e421fe2d7c38590fff975217", + "fields": { + "code_commune_insee": "65013", + "nom_de_la_commune": "ANSOST", + "code_postal": "65140", + "coordonnees_gps": [ + 43.4324735802, + 0.109776461821 + ], + "libelle_d_acheminement": "ANSOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109776461821, + 43.4324735802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ec96a312500cc8dba88425c57199b18b1bd3c2e", + "fields": { + "code_commune_insee": "67179", + "nom_de_la_commune": "HAEGEN", + "code_postal": "67700", + "coordonnees_gps": [ + 48.7056354976, + 7.29766137398 + ], + "libelle_d_acheminement": "HAEGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29766137398, + 48.7056354976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26d486bd894de14823544c24272f151a926c0ea3", + "fields": { + "code_commune_insee": "65014", + "nom_de_la_commune": "ANTICHAN", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9924688915, + 0.583832200787 + ], + "libelle_d_acheminement": "ANTICHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.583832200787, + 42.9924688915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48589e4cfa66b696beba91dfeb2ac53ac444c015", + "fields": { + "code_commune_insee": "67183", + "nom_de_la_commune": "HARSKIRCHEN", + "code_postal": "67260", + "coordonnees_gps": [ + 48.9237270109, + 7.02630342331 + ], + "libelle_d_acheminement": "HARSKIRCHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02630342331, + 48.9237270109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39ddcd77ce35b1450e86eba31247f9be5132c817", + "fields": { + "code_commune_insee": "65015", + "nom_de_la_commune": "ANTIN", + "code_postal": "65220", + "coordonnees_gps": [ + 43.3324246014, + 0.290105540606 + ], + "libelle_d_acheminement": "ANTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.290105540606, + 43.3324246014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0f47f9b519d389b00c3201245179b8fb41eb241", + "fields": { + "code_commune_insee": "67185", + "nom_de_la_commune": "HATTMATT", + "code_postal": "67330", + "coordonnees_gps": [ + 48.7854804933, + 7.4364304189 + ], + "libelle_d_acheminement": "HATTMATT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4364304189, + 48.7854804933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe5108c0b4b80a1fc1811e2e7a5ba9a7db3506c5", + "fields": { + "code_commune_insee": "65017", + "nom_de_la_commune": "ARAGNOUET", + "code_postal": "65170", + "coordonnees_gps": [ + 42.784224156, + 0.178165691036 + ], + "libelle_d_acheminement": "ARAGNOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.178165691036, + 42.784224156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3f7c83605f287eda6ee659b786f2f1b3831fa72", + "fields": { + "code_commune_insee": "67186", + "nom_de_la_commune": "HEGENEY", + "code_postal": "67360", + "coordonnees_gps": [ + 48.8880984199, + 7.73980226806 + ], + "libelle_d_acheminement": "HEGENEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73980226806, + 48.8880984199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80a466194bee50372397aba481db1977597ec064", + "fields": { + "code_commune_insee": "65020", + "nom_de_la_commune": "ARCIZAC EZ ANGLES", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0961049437, + 0.0150289813237 + ], + "libelle_d_acheminement": "ARCIZAC EZ ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0150289813237, + 43.0961049437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c3b26613dfa6805e33aecf8ca5e66a6f3ccd667", + "fields": { + "code_commune_insee": "67194", + "nom_de_la_commune": "HERRLISHEIM", + "code_postal": "67850", + "coordonnees_gps": [ + 48.7325109113, + 7.91012947405 + ], + "libelle_d_acheminement": "HERRLISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.91012947405, + 48.7325109113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "957694fe28ee7d7f9eb7e338dc05e921ea830666", + "fields": { + "code_commune_insee": "65025", + "nom_de_la_commune": "ARGELES GAZOST", + "code_postal": "65400", + "coordonnees_gps": [ + 43.006001672, + -0.0963626224791 + ], + "libelle_d_acheminement": "ARGELES GAZOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0963626224791, + 43.006001672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83aaa9cc6f5759994069ee1be2079fc137d1043b", + "fields": { + "code_commune_insee": "67195", + "nom_de_la_commune": "HESSENHEIM", + "code_postal": "67390", + "coordonnees_gps": [ + 48.2054418574, + 7.55188432622 + ], + "libelle_d_acheminement": "HESSENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55188432622, + 48.2054418574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff6720b0b732329fc6d3073601db3660f06a8d69", + "fields": { + "code_commune_insee": "65031", + "nom_de_la_commune": "ARREAU", + "code_postal": "65240", + "coordonnees_gps": [ + 42.9142857296, + 0.338038988881 + ], + "libelle_d_acheminement": "ARREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.338038988881, + 42.9142857296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6aaf3c93586a73e031a871d1f1b11f717680036", + "fields": { + "code_commune_insee": "67197", + "nom_de_la_commune": "HINDISHEIM", + "code_postal": "67150", + "coordonnees_gps": [ + 48.465896683, + 7.62196229958 + ], + "libelle_d_acheminement": "HINDISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62196229958, + 48.465896683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dbdf247dd1689b25a5f41103940e8eee74f52e7", + "fields": { + "code_commune_insee": "65035", + "nom_de_la_commune": "ARTAGNAN", + "code_postal": "65500", + "coordonnees_gps": [ + 43.4068464374, + 0.0826210970042 + ], + "libelle_d_acheminement": "ARTAGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0826210970042, + 43.4068464374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0af728c4aa649935fcbbfb7a000f390e0ac576c", + "fields": { + "code_commune_insee": "67204", + "nom_de_la_commune": "HOENHEIM", + "code_postal": "67800", + "coordonnees_gps": [ + 48.6242068412, + 7.75365666565 + ], + "libelle_d_acheminement": "HOENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75365666565, + 48.6242068412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e6e830cf2927dac7e33f7dabe198c6990c17deb", + "fields": { + "code_commune_insee": "65040", + "nom_de_la_commune": "ASPIN EN LAVEDAN", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0749440828, + -0.0492041066704 + ], + "libelle_d_acheminement": "ASPIN EN LAVEDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0492041066704, + 43.0749440828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ab0cffd09a2f4543639016da1664b8d945a9898", + "fields": { + "code_commune_insee": "67205", + "nom_de_la_commune": "HOERDT", + "code_postal": "67720", + "coordonnees_gps": [ + 48.6905674036, + 7.78483478217 + ], + "libelle_d_acheminement": "HOERDT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78483478217, + 48.6905674036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa4277213cd46f9374fe8ae62549bd91e787657f", + "fields": { + "code_commune_insee": "65044", + "nom_de_la_commune": "AUBAREDE", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2705496988, + 0.249527710509 + ], + "libelle_d_acheminement": "AUBAREDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.249527710509, + 43.2705496988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b138a94e5eaafb5b72c5e0c88f94f2b692f511e1", + "fields": { + "code_commune_insee": "67230", + "nom_de_la_commune": "KALTENHOUSE", + "code_postal": "67240", + "coordonnees_gps": [ + 48.7902364903, + 7.83303517468 + ], + "libelle_d_acheminement": "KALTENHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.83303517468, + 48.7902364903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a56459dec500b9d08c128a504c9ee7dc92ce508b", + "fields": { + "code_commune_insee": "65046", + "nom_de_la_commune": "AULON", + "code_postal": "65240", + "coordonnees_gps": [ + 42.8566915829, + 0.263308131503 + ], + "libelle_d_acheminement": "AULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.263308131503, + 42.8566915829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a28faef7bd00b659c2fe698ed34b4415692db237", + "fields": { + "code_commune_insee": "67232", + "nom_de_la_commune": "KEFFENACH", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9666217259, + 7.88352123291 + ], + "libelle_d_acheminement": "KEFFENACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.88352123291, + 48.9666217259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e82ca7f9d556dd0d792c0bba5544a9c947e49e44", + "fields": { + "code_commune_insee": "65047", + "nom_de_la_commune": "AUREILHAN", + "code_postal": "65800", + "coordonnees_gps": [ + 43.2497030503, + 0.103640168515 + ], + "libelle_d_acheminement": "AUREILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.103640168515, + 43.2497030503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3535524dd6e607bc33dabe8b153f8cf90f4da992", + "fields": { + "code_commune_insee": "67237", + "nom_de_la_commune": "KILSTETT", + "code_postal": "67840", + "coordonnees_gps": [ + 48.6835701227, + 7.84577121429 + ], + "libelle_d_acheminement": "KILSTETT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.84577121429, + 48.6835701227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd0c70158a581ff2598a6cf994502fc8e8d7b279", + "fields": { + "code_commune_insee": "65049", + "nom_de_la_commune": "AURIEBAT", + "code_postal": "65700", + "coordonnees_gps": [ + 43.4992440945, + 0.0882821803633 + ], + "libelle_d_acheminement": "AURIEBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0882821803633, + 43.4992440945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6681e43d6677ddc8e9c4e5756ffc997fa170a491", + "fields": { + "code_commune_insee": "67239", + "nom_de_la_commune": "KINTZHEIM", + "code_postal": "67600", + "coordonnees_gps": [ + 48.2585880501, + 7.37432236249 + ], + "libelle_d_acheminement": "KINTZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37432236249, + 48.2585880501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07d1f8310a507c9a8f4b63c41488dd366c1c431f", + "fields": { + "code_commune_insee": "65050", + "nom_de_la_commune": "AVAJAN", + "code_postal": "65240", + "coordonnees_gps": [ + 42.8474630152, + 0.402289905692 + ], + "libelle_d_acheminement": "AVAJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.402289905692, + 42.8474630152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b955753d4707432b70897694621ab6024ba9f68", + "fields": { + "code_commune_insee": "67240", + "nom_de_la_commune": "KIRCHHEIM", + "code_postal": "67520", + "coordonnees_gps": [ + 48.6059106052, + 7.48884201445 + ], + "libelle_d_acheminement": "KIRCHHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48884201445, + 48.6059106052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c0635e24cd0912ef966fb44da473da6a8608259", + "fields": { + "code_commune_insee": "65051", + "nom_de_la_commune": "AVENTIGNAN", + "code_postal": "65660", + "coordonnees_gps": [ + 43.061616187, + 0.523748074875 + ], + "libelle_d_acheminement": "AVENTIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.523748074875, + 43.061616187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d05f695370e290f82e46fd8c2a3a4389eda53cfd", + "fields": { + "code_commune_insee": "67247", + "nom_de_la_commune": "KOLBSHEIM", + "code_postal": "67120", + "coordonnees_gps": [ + 48.5621490705, + 7.58621736954 + ], + "libelle_d_acheminement": "KOLBSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58621736954, + 48.5621490705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9015f030ef798ae464ce54c8e5d35ecf00c0c8fa", + "fields": { + "ligne_5": "LAHITTE", + "code_commune_insee": "65054", + "libelle_d_acheminement": "AVEZAC PRAT LAHITTE", + "code_postal": "65130", + "nom_de_la_commune": "AVEZAC PRAT LAHITTE", + "coordonnees_gps": [ + 43.0649077619, + 0.3352681161 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.3352681161, + 43.0649077619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff9f81c7752a6e1d06fa3788c1970f4a47d62a3c", + "fields": { + "code_commune_insee": "67248", + "nom_de_la_commune": "KRAUTERGERSHEIM", + "code_postal": "67880", + "coordonnees_gps": [ + 48.475170055, + 7.56554119438 + ], + "libelle_d_acheminement": "KRAUTERGERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56554119438, + 48.475170055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb448834247b1fb4ffebf96a20277a1a7d47a79a", + "fields": { + "ligne_5": "LESPONNE", + "code_commune_insee": "65059", + "libelle_d_acheminement": "BAGNERES DE BIGORRE", + "code_postal": "65710", + "nom_de_la_commune": "BAGNERES DE BIGORRE", + "coordonnees_gps": [ + 42.9758668859, + 0.132640694318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.132640694318, + 42.9758668859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d85d2abcece2fd21c7aba000a4668bd2252b9076", + "fields": { + "code_commune_insee": "67250", + "nom_de_la_commune": "KRIEGSHEIM", + "code_postal": "67170", + "coordonnees_gps": [ + 48.7567867136, + 7.73549910611 + ], + "libelle_d_acheminement": "KRIEGSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73549910611, + 48.7567867136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cb405f0833fac2dfa40aa4fa78fce4cd371358a", + "fields": { + "code_commune_insee": "65060", + "nom_de_la_commune": "BANIOS", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0387732941, + 0.22854718648 + ], + "libelle_d_acheminement": "BANIOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22854718648, + 43.0387732941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2800ff1acc38fa433621411dc54b29cb34e4d81", + "fields": { + "code_commune_insee": "67268", + "nom_de_la_commune": "LIPSHEIM", + "code_postal": "67640", + "coordonnees_gps": [ + 48.4893768866, + 7.65665864812 + ], + "libelle_d_acheminement": "LIPSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.65665864812, + 48.4893768866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afcf11f4d1736957de31e080e0932cc6e22b6bcc", + "fields": { + "code_commune_insee": "65066", + "nom_de_la_commune": "BARRANCOUEU", + "code_postal": "65240", + "coordonnees_gps": [ + 42.9099558733, + 0.325530555509 + ], + "libelle_d_acheminement": "BARRANCOUEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.325530555509, + 42.9099558733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aadecb2e459b21f35dd1706e37183be4c9079276", + "fields": { + "code_commune_insee": "67269", + "nom_de_la_commune": "LITTENHEIM", + "code_postal": "67490", + "coordonnees_gps": [ + 48.7252115785, + 7.49295380466 + ], + "libelle_d_acheminement": "LITTENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49295380466, + 48.7252115785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69978fd24eb0a4981447ba4d010411a60a04227d", + "fields": { + "code_commune_insee": "65072", + "nom_de_la_commune": "BAZET", + "code_postal": "65460", + "coordonnees_gps": [ + 43.2907000893, + 0.0755201253689 + ], + "libelle_d_acheminement": "BAZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0755201253689, + 43.2907000893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38ec1975a3d69a5b7189146b4efd9acf9d5ed689", + "fields": { + "code_commune_insee": "67270", + "nom_de_la_commune": "LIXHAUSEN", + "code_postal": "67270", + "coordonnees_gps": [ + 48.7942598149, + 7.55588673552 + ], + "libelle_d_acheminement": "LIXHAUSEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55588673552, + 48.7942598149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88cb1aee7a85c8dbfa27685432ccd68649c7713a", + "fields": { + "code_commune_insee": "65082", + "nom_de_la_commune": "BERBERUST LIAS", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0347901584, + -0.0328719658346 + ], + "libelle_d_acheminement": "BERBERUST LIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0328719658346, + 43.0347901584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f4775c49e11d475109d9b324fd88be32b85498d", + "fields": { + "code_commune_insee": "67298", + "nom_de_la_commune": "MITTELSCHAEFFOLSHEIM", + "code_postal": "67170", + "coordonnees_gps": [ + 48.6973385181, + 7.6517496049 + ], + "libelle_d_acheminement": "MITTELSCHAEFFOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6517496049, + 48.6973385181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65d9fb2d34e400df9a38dc187acb0d68051cad59", + "fields": { + "code_commune_insee": "65086", + "nom_de_la_commune": "BERNADETS DESSUS", + "code_postal": "65190", + "coordonnees_gps": [ + 43.2125027639, + 0.295205829649 + ], + "libelle_d_acheminement": "BERNADETS DESSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.295205829649, + 43.2125027639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e07fc1aa5f1041c71d8182763588b058d66721d0", + "fields": { + "code_commune_insee": "67301", + "nom_de_la_commune": "MOMMENHEIM", + "code_postal": "67670", + "coordonnees_gps": [ + 48.7558742576, + 7.64983524171 + ], + "libelle_d_acheminement": "MOMMENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64983524171, + 48.7558742576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97025a09d851aa14595b67cc9d8a9b8300218ab4", + "fields": { + "code_commune_insee": "65089", + "nom_de_la_commune": "BETPOUEY", + "code_postal": "65120", + "coordonnees_gps": [ + 42.8602756979, + 0.0652448602604 + ], + "libelle_d_acheminement": "BETPOUEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0652448602604, + 42.8602756979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9ccb8104c44dcc511dedf819755b9e7f5248915", + "fields": { + "code_commune_insee": "67304", + "nom_de_la_commune": "MORSCHWILLER", + "code_postal": "67350", + "coordonnees_gps": [ + 48.8194129618, + 7.62944925979 + ], + "libelle_d_acheminement": "MORSCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62944925979, + 48.8194129618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9f620b30e5f29454b63212eacd7b2d339ee1a20", + "fields": { + "ligne_5": "CAMOUS", + "code_commune_insee": "65092", + "libelle_d_acheminement": "BEYREDE JUMET CAMOUS", + "code_postal": "65410", + "nom_de_la_commune": "BEYREDE JUMET CAMOUS", + "coordonnees_gps": [ + 42.9554911892, + 0.338191810154 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.338191810154, + 42.9554911892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "043f5bda9f1c0bfb8940789988fb68910bdb83be", + "fields": { + "code_commune_insee": "67305", + "nom_de_la_commune": "MOTHERN", + "code_postal": "67470", + "coordonnees_gps": [ + 48.9397726908, + 8.15250691524 + ], + "libelle_d_acheminement": "MOTHERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.15250691524, + 48.9397726908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf7b85b1de397cf99c941de23465e6c6405385c9", + "fields": { + "code_commune_insee": "65098", + "nom_de_la_commune": "BOO SILHEN", + "code_postal": "65400", + "coordonnees_gps": [ + 43.019031119, + -0.0730896930851 + ], + "libelle_d_acheminement": "BOO SILHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0730896930851, + 43.019031119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6d322d625dfce3d92cb1bc1ff9d29055da41271", + "fields": { + "code_commune_insee": "67306", + "nom_de_la_commune": "MUHLBACH SUR BRUCHE", + "code_postal": "67130", + "coordonnees_gps": [ + 48.5125214509, + 7.31212371742 + ], + "libelle_d_acheminement": "MUHLBACH SUR BRUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31212371742, + 48.5125214509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "221cd73f14020179f66bc2a9e377a11f21cc2fa4", + "fields": { + "code_commune_insee": "65100", + "nom_de_la_commune": "BORDERES SUR L ECHEZ", + "code_postal": "65320", + "coordonnees_gps": [ + 43.2654849206, + 0.0424725726856 + ], + "libelle_d_acheminement": "BORDERES SUR L ECHEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0424725726856, + 43.2654849206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14d3f6dee149a03219210de8a295eb1e86a86cb3", + "fields": { + "code_commune_insee": "67312", + "nom_de_la_commune": "MUTZENHOUSE", + "code_postal": "67270", + "coordonnees_gps": [ + 48.7409950821, + 7.5889236459 + ], + "libelle_d_acheminement": "MUTZENHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5889236459, + 48.7409950821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86e3a33bf71a3aa2eee6994e021658e3629454ac", + "fields": { + "code_commune_insee": "65108", + "nom_de_la_commune": "BOURS", + "code_postal": "65460", + "coordonnees_gps": [ + 43.2761096704, + 0.0907724442987 + ], + "libelle_d_acheminement": "BOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0907724442987, + 43.2761096704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dc93b0892da9a3fdddbe1af2d9639f4ff36c517", + "fields": { + "code_commune_insee": "67329", + "nom_de_la_commune": "NIEDERNAI", + "code_postal": "67210", + "coordonnees_gps": [ + 48.4456110275, + 7.53064650952 + ], + "libelle_d_acheminement": "NIEDERNAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53064650952, + 48.4456110275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b72e63f11fc2ddaa5c66534c15f951777c3058a", + "fields": { + "code_commune_insee": "65111", + "nom_de_la_commune": "BULAN", + "code_postal": "65130", + "coordonnees_gps": [ + 43.043232784, + 0.279721330275 + ], + "libelle_d_acheminement": "BULAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.279721330275, + 43.043232784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6b3cbc5ebfec877443e81db9a472c8aa35d8b56", + "fields": { + "code_commune_insee": "67336", + "nom_de_la_commune": "NORDHOUSE", + "code_postal": "67150", + "coordonnees_gps": [ + 48.4472243918, + 7.68558012653 + ], + "libelle_d_acheminement": "NORDHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68558012653, + 48.4472243918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c07d57ba8f971de20d6fd6efa33c8430e65bab22", + "fields": { + "code_commune_insee": "65118", + "nom_de_la_commune": "CAHARET", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1450399682, + 0.313300480102 + ], + "libelle_d_acheminement": "CAHARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.313300480102, + 43.1450399682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b54316dc93a4824133acec1a9dff6a38ef85050a", + "fields": { + "code_commune_insee": "67337", + "nom_de_la_commune": "NOTHALTEN", + "code_postal": "67680", + "coordonnees_gps": [ + 48.3556520235, + 7.41160208554 + ], + "libelle_d_acheminement": "NOTHALTEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41160208554, + 48.3556520235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09c6a5a009e161b76c40e238773f509daf972d61", + "fields": { + "code_commune_insee": "65121", + "nom_de_la_commune": "CAMALES", + "code_postal": "65500", + "coordonnees_gps": [ + 43.3587114668, + 0.0800191422189 + ], + "libelle_d_acheminement": "CAMALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0800191422189, + 43.3587114668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb90be5807b15842651ac18d7f8cb4687fc2f63c", + "fields": { + "ligne_5": "CAMP D OBERHOFFEN", + "code_commune_insee": "67345", + "libelle_d_acheminement": "OBERHOFFEN SUR MODER", + "code_postal": "67240", + "nom_de_la_commune": "OBERHOFFEN SUR MODER", + "coordonnees_gps": [ + 48.7801040272, + 7.88738513222 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.88738513222, + 48.7801040272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8000c1082b712f40db78073076ce66405ce48a0", + "fields": { + "code_commune_insee": "65123", + "nom_de_la_commune": "CAMPAN", + "code_postal": "65710", + "coordonnees_gps": [ + 42.9614883707, + 0.217031289795 + ], + "libelle_d_acheminement": "CAMPAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.217031289795, + 42.9614883707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6263f944d90238bc98ac738dc58dfdc00d9798f7", + "fields": { + "code_commune_insee": "67348", + "nom_de_la_commune": "OBERNAI", + "code_postal": "67210", + "coordonnees_gps": [ + 48.4593467321, + 7.48006434701 + ], + "libelle_d_acheminement": "OBERNAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48006434701, + 48.4593467321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b62928576842b98b9c551e96e04cfc5ef48cccd", + "fields": { + "code_commune_insee": "65131", + "nom_de_la_commune": "CASTELVIEILH", + "code_postal": "65350", + "coordonnees_gps": [ + 43.281097408, + 0.201372876533 + ], + "libelle_d_acheminement": "CASTELVIEILH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.201372876533, + 43.281097408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b8260ec3c9f12405f6800e6238aa24573ba794d", + "fields": { + "code_commune_insee": "67349", + "nom_de_la_commune": "OBERROEDERN", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9271368909, + 7.97102967191 + ], + "libelle_d_acheminement": "OBERROEDERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.97102967191, + 48.9271368909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68baf909ddc4efbdc8a78a4f2956ef2982038eaa", + "fields": { + "code_commune_insee": "65132", + "nom_de_la_commune": "CASTERA LANUSSE", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1721431119, + 0.291846368196 + ], + "libelle_d_acheminement": "CASTERA LANUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.291846368196, + 43.1721431119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7c76c331c9d62d1ff83096a07fdc2016e2214a8", + "fields": { + "code_commune_insee": "67351", + "nom_de_la_commune": "SEEBACH", + "code_postal": "67160", + "coordonnees_gps": [ + 48.9644209228, + 7.99028108589 + ], + "libelle_d_acheminement": "SEEBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.99028108589, + 48.9644209228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bd67900faf2bfd218e82588310330e48448f2c5", + "fields": { + "code_commune_insee": "65138", + "nom_de_la_commune": "CAUTERETS", + "code_postal": "65110", + "coordonnees_gps": [ + 42.8522083035, + -0.126528407421 + ], + "libelle_d_acheminement": "CAUTERETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.126528407421, + 42.8522083035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b061f9e97ec3cd3e385905d7201ebbd67987535", + "fields": { + "ligne_5": "OBERSEEBACH", + "code_commune_insee": "67351", + "libelle_d_acheminement": "SEEBACH", + "code_postal": "67160", + "nom_de_la_commune": "SEEBACH", + "coordonnees_gps": [ + 48.9644209228, + 7.99028108589 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.99028108589, + 48.9644209228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a1b0d09f81f69bf958e0f71875d7e121e3357b0", + "fields": { + "code_commune_insee": "65143", + "nom_de_la_commune": "CHELLE SPOU", + "code_postal": "65130", + "coordonnees_gps": [ + 43.1426153635, + 0.248633985629 + ], + "libelle_d_acheminement": "CHELLE SPOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.248633985629, + 43.1426153635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aecc79162e231b0749c217dba83d7d14d1776e8c", + "fields": { + "code_commune_insee": "67354", + "nom_de_la_commune": "ODRATZHEIM", + "code_postal": "67520", + "coordonnees_gps": [ + 48.6001350338, + 7.48985443833 + ], + "libelle_d_acheminement": "ODRATZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48985443833, + 48.6001350338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b5a48d8fbec470f7096ede2d140f05825c7109b", + "fields": { + "code_commune_insee": "65156", + "nom_de_la_commune": "DOURS", + "code_postal": "65350", + "coordonnees_gps": [ + 43.306657768, + 0.133314265723 + ], + "libelle_d_acheminement": "DOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.133314265723, + 43.306657768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bd423ec4be4851d7cdcb7e58e1d3e4ab724edf2", + "fields": { + "code_commune_insee": "67359", + "nom_de_la_commune": "OHLUNGEN", + "code_postal": "67590", + "coordonnees_gps": [ + 48.8121908123, + 7.69421854068 + ], + "libelle_d_acheminement": "OHLUNGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69421854068, + 48.8121908123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70eddf87b9477520224ae38631b9c1eef2d344fd", + "fields": { + "code_commune_insee": "65157", + "nom_de_la_commune": "ENS", + "code_postal": "65170", + "coordonnees_gps": [ + 42.7969837017, + 0.334770180996 + ], + "libelle_d_acheminement": "ENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.334770180996, + 42.7969837017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd6dbc94344259484574864de5d47325b581dca9", + "fields": { + "code_commune_insee": "67362", + "nom_de_la_commune": "ORSCHWILLER", + "code_postal": "67600", + "coordonnees_gps": [ + 48.2472141611, + 7.35466655979 + ], + "libelle_d_acheminement": "ORSCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35466655979, + 48.2472141611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2434d7c5a48eae09186f3259be80568cdfdf11f7", + "fields": { + "code_commune_insee": "65159", + "nom_de_la_commune": "ESCALA", + "code_postal": "65250", + "coordonnees_gps": [ + 43.0877050147, + 0.411249757071 + ], + "libelle_d_acheminement": "ESCALA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.411249757071, + 43.0877050147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "736d010fd47462f5ae977058d818df9f700a8c34", + "fields": { + "code_commune_insee": "67365", + "nom_de_la_commune": "OSTWALD", + "code_postal": "67540", + "coordonnees_gps": [ + 48.5471323955, + 7.70760430953 + ], + "libelle_d_acheminement": "OSTWALD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70760430953, + 48.5471323955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e4197c4e84703df937bc8f5e657684a06186ad1", + "fields": { + "code_commune_insee": "65165", + "nom_de_la_commune": "ESPARROS", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0106422066, + 0.306373964745 + ], + "libelle_d_acheminement": "ESPARROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.306373964745, + 43.0106422066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e4c3c72e11af7eed6d83fe369597e1fe79648b9", + "fields": { + "code_commune_insee": "67369", + "nom_de_la_commune": "OTTWILLER", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8634372221, + 7.22875830656 + ], + "libelle_d_acheminement": "OTTWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22875830656, + 48.8634372221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08a12045e6ba27f3ed858d2159588ee04d56f087", + "fields": { + "code_commune_insee": "65169", + "nom_de_la_commune": "ESTAING", + "code_postal": "65400", + "coordonnees_gps": [ + 42.8811154225, + -0.205984086638 + ], + "libelle_d_acheminement": "ESTAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.205984086638, + 42.8811154225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "640de6c9c9101f4e08008da1593326a12f03c3a6", + "fields": { + "ligne_5": "RINGELDORF", + "code_commune_insee": "67372", + "libelle_d_acheminement": "VAL DE MODER", + "code_postal": "67350", + "nom_de_la_commune": "VAL DE MODER", + "coordonnees_gps": [ + 48.8432047964, + 7.59893121728 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59893121728, + 48.8432047964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3018349f7d27e5019853d6b2f33102d03c587309", + "fields": { + "code_commune_insee": "65177", + "nom_de_la_commune": "FONTRAILLES", + "code_postal": "65220", + "coordonnees_gps": [ + 43.3424585482, + 0.368909254988 + ], + "libelle_d_acheminement": "FONTRAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.368909254988, + 43.3424585482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e92d4e52e601f305bb1426e19ff7516d2c993dcf", + "fields": { + "code_commune_insee": "67383", + "nom_de_la_commune": "RANGEN", + "code_postal": "67310", + "coordonnees_gps": [ + 48.6722666371, + 7.4769068152 + ], + "libelle_d_acheminement": "RANGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4769068152, + 48.6722666371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a01d28326bbe6506f207b5d77554296e227e3ba2", + "fields": { + "code_commune_insee": "65181", + "nom_de_la_commune": "FRECHOU FRECHET", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1763752493, + 0.162182597764 + ], + "libelle_d_acheminement": "FRECHOU FRECHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.162182597764, + 43.1763752493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbb742c551bdf3aaa55f414291d56fca3f9d429f", + "fields": { + "code_commune_insee": "67391", + "nom_de_la_commune": "REINHARDSMUNSTER", + "code_postal": "67440", + "coordonnees_gps": [ + 48.6824887091, + 7.29960945429 + ], + "libelle_d_acheminement": "REINHARDSMUNSTER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29960945429, + 48.6824887091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "212c52131df28ccafb358dde93b99ae477f42147", + "fields": { + "code_commune_insee": "65182", + "nom_de_la_commune": "GAILLAGOS", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9935161811, + -0.181340859661 + ], + "libelle_d_acheminement": "GAILLAGOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.181340859661, + 42.9935161811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e700c5c4033000bf6490dc33ee56becaf34f9e6c", + "fields": { + "code_commune_insee": "67396", + "nom_de_la_commune": "REXINGEN", + "code_postal": "67320", + "coordonnees_gps": [ + 48.9055663204, + 7.17766752759 + ], + "libelle_d_acheminement": "REXINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17766752759, + 48.9055663204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "278cd60736f24f0d11981b822d781e5b3b284541", + "fields": { + "code_commune_insee": "65186", + "nom_de_la_commune": "GAUDENT", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9975262511, + 0.559482919265 + ], + "libelle_d_acheminement": "GAUDENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.559482919265, + 42.9975262511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ce112568a261f41e558f54b35738503e8ddb0e6", + "fields": { + "code_commune_insee": "67404", + "nom_de_la_commune": "RITTERSHOFFEN", + "code_postal": "67690", + "coordonnees_gps": [ + 48.892173968, + 7.97014656337 + ], + "libelle_d_acheminement": "RITTERSHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.97014656337, + 48.892173968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5b09719450057905d63e78cd475daa5597d206b", + "fields": { + "code_commune_insee": "65190", + "nom_de_la_commune": "GAZAVE", + "code_postal": "65250", + "coordonnees_gps": [ + 43.0294569149, + 0.4215522116 + ], + "libelle_d_acheminement": "GAZAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.4215522116, + 43.0294569149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96dff393b077f494a03170047a420c4f42860d03", + "fields": { + "code_commune_insee": "67405", + "nom_de_la_commune": "ROESCHWOOG", + "code_postal": "67480", + "coordonnees_gps": [ + 48.8228673826, + 8.04052812469 + ], + "libelle_d_acheminement": "ROESCHWOOG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.04052812469, + 48.8228673826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2ee2ebd26589b55528f1473f3fcd64bb6f076c2", + "fields": { + "code_commune_insee": "65195", + "nom_de_la_commune": "GENOS", + "code_postal": "65240", + "coordonnees_gps": [ + 42.7519110844, + 0.391498032881 + ], + "libelle_d_acheminement": "GENOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.391498032881, + 42.7519110844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6ed81717995a889c1b6b42ab260470a2a15704d", + "fields": { + "code_commune_insee": "67407", + "nom_de_la_commune": "ROHRWILLER", + "code_postal": "67410", + "coordonnees_gps": [ + 48.7499197158, + 7.90265116944 + ], + "libelle_d_acheminement": "ROHRWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.90265116944, + 48.7499197158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e60667cc5e0a65e3ce91ab23dad64271df38c4d", + "fields": { + "code_commune_insee": "65208", + "nom_de_la_commune": "GRAILHEN", + "code_postal": "65170", + "coordonnees_gps": [ + 42.83138911, + 0.372241097838 + ], + "libelle_d_acheminement": "GRAILHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.372241097838, + 42.83138911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0937e4efc4f2751a79429fc941f942d6c30a4e3e", + "fields": { + "code_commune_insee": "67409", + "nom_de_la_commune": "ROPPENHEIM", + "code_postal": "67480", + "coordonnees_gps": [ + 48.837297524, + 8.06719387329 + ], + "libelle_d_acheminement": "ROPPENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.06719387329, + 48.837297524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b95f0a3b7b6a652b51cda149c800e0f72d8630d", + "fields": { + "code_commune_insee": "65214", + "nom_de_la_commune": "HACHAN", + "code_postal": "65230", + "coordonnees_gps": [ + 43.2848182043, + 0.455050397796 + ], + "libelle_d_acheminement": "HACHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.455050397796, + 43.2848182043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b474359a1ac95de95570e61a4e6cc8020287dc6a", + "fields": { + "code_commune_insee": "67412", + "nom_de_la_commune": "ROSSFELD", + "code_postal": "67230", + "coordonnees_gps": [ + 48.3321360807, + 7.61305399839 + ], + "libelle_d_acheminement": "ROSSFELD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61305399839, + 48.3321360807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "623ad4ce8d58cc21fc085b26d50042926d105747", + "fields": { + "code_commune_insee": "65220", + "nom_de_la_commune": "HIBARETTE", + "code_postal": "65380", + "coordonnees_gps": [ + 43.1651076047, + 0.0381107147768 + ], + "libelle_d_acheminement": "HIBARETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0381107147768, + 43.1651076047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ff27a5d924a69a8a1a2df04b060aa90d4d30b96", + "fields": { + "code_commune_insee": "67416", + "nom_de_la_commune": "ROTT", + "code_postal": "67160", + "coordonnees_gps": [ + 49.0192487801, + 7.90612997261 + ], + "libelle_d_acheminement": "ROTT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.90612997261, + 49.0192487801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e00a7e53ef8b0f9672ae08198a71a0b3d1f34af9", + "fields": { + "code_commune_insee": "65221", + "nom_de_la_commune": "HIIS", + "code_postal": "65200", + "coordonnees_gps": [ + 43.1356432139, + 0.096431409035 + ], + "libelle_d_acheminement": "HIIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.096431409035, + 43.1356432139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64b5cadcc75aa032074e9fd14042c86e21d161b4", + "fields": { + "ligne_5": "ROUNTZENHEIM", + "code_commune_insee": "67418", + "libelle_d_acheminement": "ROUNTZENHEIM AUENHEIM", + "code_postal": "67480", + "nom_de_la_commune": "ROUNTZENHEIM AUENHEIM", + "coordonnees_gps": [ + 48.8214167109, + 7.99834154891 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.99834154891, + 48.8214167109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d37522a30d5f2769c12c8624f7efaec94aec2cda", + "fields": { + "code_commune_insee": "65226", + "nom_de_la_commune": "IBOS", + "code_postal": "65420", + "coordonnees_gps": [ + 43.2411378996, + 0.000239711403462 + ], + "libelle_d_acheminement": "IBOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.000239711403462, + 43.2411378996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "081dbfb4ce07602d780d1ac4eeb8a1e043381550", + "fields": { + "code_commune_insee": "67420", + "nom_de_la_commune": "RUSS", + "code_postal": "67130", + "coordonnees_gps": [ + 48.485644468, + 7.26907262122 + ], + "libelle_d_acheminement": "RUSS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26907262122, + 48.485644468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0e38ec3393db169c06605ac78b61210e6767917", + "fields": { + "code_commune_insee": "65234", + "nom_de_la_commune": "JEZEAU", + "code_postal": "65240", + "coordonnees_gps": [ + 42.9114645299, + 0.407364858674 + ], + "libelle_d_acheminement": "JEZEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.407364858674, + 42.9114645299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daefd0e20893eb70cda5697250205705decede8a", + "fields": { + "ligne_5": "STEINBACH", + "code_commune_insee": "67420", + "libelle_d_acheminement": "RUSS", + "code_postal": "67130", + "nom_de_la_commune": "RUSS", + "coordonnees_gps": [ + 48.485644468, + 7.26907262122 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26907262122, + 48.485644468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bff30247f204af6f895c8d751085b1f5aa09e62", + "fields": { + "code_commune_insee": "65243", + "nom_de_la_commune": "LAFITOLE", + "code_postal": "65700", + "coordonnees_gps": [ + 43.4493703401, + 0.0766668449898 + ], + "libelle_d_acheminement": "LAFITOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0766668449898, + 43.4493703401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55073968f46956f8018effd40daede1491d56bc9", + "fields": { + "code_commune_insee": "67421", + "nom_de_la_commune": "SAALES", + "code_postal": "67420", + "coordonnees_gps": [ + 48.3516658281, + 7.11035100405 + ], + "libelle_d_acheminement": "SAALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11035100405, + 48.3516658281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72c5b320891f46964263ea37c8951732b4e0e0f5", + "fields": { + "code_commune_insee": "65253", + "nom_de_la_commune": "LAMARQUE RUSTAING", + "code_postal": "65220", + "coordonnees_gps": [ + 43.2770067649, + 0.294662608938 + ], + "libelle_d_acheminement": "LAMARQUE RUSTAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.294662608938, + 43.2770067649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7de606e7c7bafad6f49e7720d2dae44fe60fac23", + "fields": { + "code_commune_insee": "67423", + "nom_de_la_commune": "SAESSOLSHEIM", + "code_postal": "67270", + "coordonnees_gps": [ + 48.7083552317, + 7.51301777212 + ], + "libelle_d_acheminement": "SAESSOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51301777212, + 48.7083552317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1647c947cff4b9202b7473e6662b9995d7708b56", + "fields": { + "code_commune_insee": "65255", + "nom_de_la_commune": "LANCON", + "code_postal": "65240", + "coordonnees_gps": [ + 42.8820682705, + 0.36788060148 + ], + "libelle_d_acheminement": "LANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36788060148, + 42.8820682705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af14ce9d75d19f5660d8c60352bd2033ec3c64c4", + "fields": { + "code_commune_insee": "67425", + "nom_de_la_commune": "ST JEAN SAVERNE", + "code_postal": "67700", + "coordonnees_gps": [ + 48.7782167422, + 7.3556231734 + ], + "libelle_d_acheminement": "ST JEAN SAVERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3556231734, + 48.7782167422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3debe8459a027baf54bdcdead6fb4704fecb51e0", + "fields": { + "code_commune_insee": "65261", + "nom_de_la_commune": "LARAN", + "code_postal": "65670", + "coordonnees_gps": [ + 43.2344827655, + 0.473331822869 + ], + "libelle_d_acheminement": "LARAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.473331822869, + 43.2344827655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c57125748e10edb21c00dd3ad2c6106219c20fb0", + "fields": { + "code_commune_insee": "65264", + "nom_de_la_commune": "LASCAZERES", + "code_postal": "65700", + "coordonnees_gps": [ + 43.4981293192, + -0.0285264493096 + ], + "libelle_d_acheminement": "LASCAZERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0285264493096, + 43.4981293192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f86914e2ac2465e47ccb4db46d32a51d3643f4ad", + "fields": { + "code_commune_insee": "65266", + "nom_de_la_commune": "LASSALES", + "code_postal": "65670", + "coordonnees_gps": [ + 43.2097258268, + 0.486113113941 + ], + "libelle_d_acheminement": "LASSALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.486113113941, + 43.2097258268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aa1454a97178d05bb33043b064b403966292218", + "fields": { + "code_commune_insee": "65267", + "nom_de_la_commune": "LAU BALAGNAS", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9932113326, + -0.0889285600847 + ], + "libelle_d_acheminement": "LAU BALAGNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0889285600847, + 42.9932113326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e79f5a3b193703b838469c6dc2906c301ecb2918", + "fields": { + "code_commune_insee": "65268", + "nom_de_la_commune": "LAYRISSE", + "code_postal": "65380", + "coordonnees_gps": [ + 43.1369406664, + 0.0500385637109 + ], + "libelle_d_acheminement": "LAYRISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0500385637109, + 43.1369406664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2b18be5bc8dba8d2e38de7d7cb1be18bb6929e4", + "fields": { + "code_commune_insee": "65271", + "nom_de_la_commune": "LEZIGNAN", + "code_postal": "65100", + "coordonnees_gps": [ + 43.098874846, + -0.00717400670291 + ], + "libelle_d_acheminement": "LEZIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00717400670291, + 43.098874846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f89e7594cca7a706631dcaef41233049ab5b30d", + "fields": { + "code_commune_insee": "65279", + "nom_de_la_commune": "LORTET", + "code_postal": "65250", + "coordonnees_gps": [ + 43.0398593753, + 0.374062084533 + ], + "libelle_d_acheminement": "LORTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.374062084533, + 43.0398593753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35a444493525ff0810e0a97c20aa820060b9032b", + "fields": { + "code_commune_insee": "65286", + "nom_de_la_commune": "LOURDES", + "code_postal": "65100", + "coordonnees_gps": [ + 43.1074297344, + -0.0768069387932 + ], + "libelle_d_acheminement": "LOURDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0768069387932, + 43.1074297344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6fa05ed102ad664619d665f3673488e19887481", + "fields": { + "code_commune_insee": "65295", + "nom_de_la_commune": "LUZ ST SAUVEUR", + "code_postal": "65120", + "coordonnees_gps": [ + 42.8320053922, + 0.0163906780322 + ], + "libelle_d_acheminement": "LUZ ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0163906780322, + 42.8320053922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44c7b8426a9211e445350141e8acbc10f5054658", + "fields": { + "ligne_5": "ST SAUVEUR LES BAINS", + "code_commune_insee": "65295", + "libelle_d_acheminement": "LUZ ST SAUVEUR", + "code_postal": "65120", + "nom_de_la_commune": "LUZ ST SAUVEUR", + "coordonnees_gps": [ + 42.8320053922, + 0.0163906780322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0163906780322, + 42.8320053922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45f96cd91b752f4b8b7da1719b9d4cf657e8a2e9", + "fields": { + "code_commune_insee": "65304", + "nom_de_la_commune": "MAUBOURGUET", + "code_postal": "65700", + "coordonnees_gps": [ + 43.4688561646, + 0.044250933589 + ], + "libelle_d_acheminement": "MAUBOURGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.044250933589, + 43.4688561646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7fc8238be765d556f1a86e7eb9bcfd17124a902", + "fields": { + "code_commune_insee": "65306", + "nom_de_la_commune": "MAUVEZIN", + "code_postal": "65130", + "coordonnees_gps": [ + 43.1208235208, + 0.28103379635 + ], + "libelle_d_acheminement": "MAUVEZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28103379635, + 43.1208235208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "440b5669179455fb56094b2b4e83ee6cc19014d6", + "fields": { + "code_commune_insee": "65317", + "nom_de_la_commune": "MONT", + "code_postal": "65240", + "coordonnees_gps": [ + 42.8210570316, + 0.443991719394 + ], + "libelle_d_acheminement": "MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.443991719394, + 42.8210570316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b4413cfb7d87789cb0581c43457b54a7bf52194", + "fields": { + "code_commune_insee": "65325", + "nom_de_la_commune": "MOUMOULOUS", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3591394974, + 0.244384113594 + ], + "libelle_d_acheminement": "MOUMOULOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.244384113594, + 43.3591394974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b1f60bb2c1f533705a2c1d8278d58d999358cf5", + "fields": { + "code_commune_insee": "65328", + "nom_de_la_commune": "NEUILH", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0748778356, + 0.0705571748574 + ], + "libelle_d_acheminement": "NEUILH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0705571748574, + 43.0748778356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2289b08f4dedb95b3a7264cd1bfa696e1fdc2305", + "fields": { + "code_commune_insee": "65333", + "nom_de_la_commune": "OLEAC DESSUS", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1610283433, + 0.19689417299 + ], + "libelle_d_acheminement": "OLEAC DESSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19689417299, + 43.1610283433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73531f808dac81374f6a3f74aa8fb0dd05392e00", + "fields": { + "code_commune_insee": "65337", + "nom_de_la_commune": "ORIEUX", + "code_postal": "65190", + "coordonnees_gps": [ + 43.2345017899, + 0.294377366184 + ], + "libelle_d_acheminement": "ORIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.294377366184, + 43.2345017899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0acb9fc218f50c6254ae7c84718c257d9a841f9", + "fields": { + "code_commune_insee": "65342", + "nom_de_la_commune": "OSMETS", + "code_postal": "65350", + "coordonnees_gps": [ + 43.3080163694, + 0.264427382148 + ], + "libelle_d_acheminement": "OSMETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.264427382148, + 43.3080163694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c383f7d13200d697ed8cdc21603f3ceb55e316b", + "fields": { + "code_commune_insee": "65347", + "nom_de_la_commune": "OURDE", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9660003493, + 0.544379532923 + ], + "libelle_d_acheminement": "OURDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.544379532923, + 42.9660003493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eecece5875bc883bd7c0bc16181f70f45ea112d", + "fields": { + "code_commune_insee": "65349", + "nom_de_la_commune": "OURDON", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0322561805, + -0.0135097211174 + ], + "libelle_d_acheminement": "OURDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0135097211174, + 43.0322561805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cf6beb997abd3f0a650e94803e71554421dbbc2", + "fields": { + "code_commune_insee": "65352", + "nom_de_la_commune": "OUZOUS", + "code_postal": "65400", + "coordonnees_gps": [ + 43.0370929502, + -0.103757903937 + ], + "libelle_d_acheminement": "OUZOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.103757903937, + 43.0370929502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe6f0eea535a5f3215f14ce077539f142cd5a51c", + "fields": { + "code_commune_insee": "65353", + "nom_de_la_commune": "OZON", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1694074655, + 0.2540513635 + ], + "libelle_d_acheminement": "OZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.2540513635, + 43.1694074655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c83999ae2655ba53fac567f5b90a4b64eefbef17", + "fields": { + "code_commune_insee": "65354", + "nom_de_la_commune": "PAILHAC", + "code_postal": "65240", + "coordonnees_gps": [ + 42.911922384, + 0.367540499398 + ], + "libelle_d_acheminement": "PAILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.367540499398, + 42.911922384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3063a156895a5ad617bf34bab5a93790b9d78de6", + "fields": { + "code_commune_insee": "65359", + "nom_de_la_commune": "PEYRIGUERE", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2524090816, + 0.261598345068 + ], + "libelle_d_acheminement": "PEYRIGUERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.261598345068, + 43.2524090816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56eec8b1c5ccd5ff5e916ca074a186d4cf37fad9", + "fields": { + "code_commune_insee": "65361", + "nom_de_la_commune": "PEYRUN", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3304439427, + 0.191795849008 + ], + "libelle_d_acheminement": "PEYRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.191795849008, + 43.3304439427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf3c2c56c2797f9ffb496a2b64777a3f699c1e7b", + "fields": { + "code_commune_insee": "65368", + "nom_de_la_commune": "POUY", + "code_postal": "65230", + "coordonnees_gps": [ + 43.262645754, + 0.557997332005 + ], + "libelle_d_acheminement": "POUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.557997332005, + 43.262645754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eac75a1774409b348198a7e236be1e3d58c48ad1", + "fields": { + "code_commune_insee": "65380", + "nom_de_la_commune": "SABALOS", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2845871037, + 0.145076212959 + ], + "libelle_d_acheminement": "SABALOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.145076212959, + 43.2845871037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ec36b593caf6bf4ce1789e687e7e393ad332056", + "fields": { + "code_commune_insee": "65388", + "nom_de_la_commune": "ST LARY SOULAN", + "code_postal": "65170", + "coordonnees_gps": [ + 42.7591645461, + 0.28622709133 + ], + "libelle_d_acheminement": "ST LARY SOULAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28622709133, + 42.7591645461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59719562d01dbb5776e3c7e08afae5667dd4e79c", + "fields": { + "code_commune_insee": "65404", + "nom_de_la_commune": "SARIAC MAGNOAC", + "code_postal": "65230", + "coordonnees_gps": [ + 43.3094204607, + 0.553619587154 + ], + "libelle_d_acheminement": "SARIAC MAGNOAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.553619587154, + 43.3094204607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d53b5e50cd93aff194ad97ad8f4cae973ef7b7a", + "fields": { + "code_commune_insee": "65407", + "nom_de_la_commune": "SARP", + "code_postal": "65370", + "coordonnees_gps": [ + 43.0173035605, + 0.579910090616 + ], + "libelle_d_acheminement": "SARP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.579910090616, + 43.0173035605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fbc8500a3aca03c82fb93c9f88fb9378f05bfca", + "fields": { + "code_commune_insee": "65412", + "nom_de_la_commune": "SAUVETERRE", + "code_postal": "65700", + "coordonnees_gps": [ + 43.4768502106, + 0.105564157307 + ], + "libelle_d_acheminement": "SAUVETERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.105564157307, + 43.4768502106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4240d67fa7fce4f8a8ccbfa80314bc7932821e61", + "fields": { + "code_commune_insee": "65423", + "nom_de_la_commune": "SERE RUSTAING", + "code_postal": "65220", + "coordonnees_gps": [ + 43.2585633467, + 0.287398416163 + ], + "libelle_d_acheminement": "SERE RUSTAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.287398416163, + 43.2585633467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5289c20408fcc7ca9e30a61a5d3b22eddf11c989", + "fields": { + "code_commune_insee": "65427", + "nom_de_la_commune": "SIRADAN", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9698474653, + 0.614553890336 + ], + "libelle_d_acheminement": "SIRADAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.614553890336, + 42.9698474653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77c3c97ca6be875b3c0b1529d86de9a3920e78a3", + "fields": { + "code_commune_insee": "65429", + "nom_de_la_commune": "SOMBRUN", + "code_postal": "65700", + "coordonnees_gps": [ + 43.4809482428, + 0.000102966481311 + ], + "libelle_d_acheminement": "SOMBRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.000102966481311, + 43.4809482428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b123588379dbf6331021c4497ee24287f5c784c3", + "fields": { + "code_commune_insee": "65430", + "nom_de_la_commune": "SOREAC", + "code_postal": "65350", + "coordonnees_gps": [ + 43.3124691316, + 0.159501219686 + ], + "libelle_d_acheminement": "SOREAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.159501219686, + 43.3124691316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88fc68453602647e9b2a5441b9c3a10ad714f91a", + "fields": { + "code_commune_insee": "65433", + "nom_de_la_commune": "SOUES", + "code_postal": "65430", + "coordonnees_gps": [ + 43.2056090738, + 0.0994897363458 + ], + "libelle_d_acheminement": "SOUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0994897363458, + 43.2056090738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e8fcc79b1eb1c32fe3fc6ebedf121f5de3a64c0", + "fields": { + "code_commune_insee": "65436", + "nom_de_la_commune": "SOUYEAUX", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2412109122, + 0.1663976851 + ], + "libelle_d_acheminement": "SOUYEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1663976851, + 43.2412109122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bd88e482ddbf174b791ebbedc465d9b6271481f", + "fields": { + "code_commune_insee": "65437", + "nom_de_la_commune": "TAJAN", + "code_postal": "65300", + "coordonnees_gps": [ + 43.1815736536, + 0.451940506125 + ], + "libelle_d_acheminement": "TAJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.451940506125, + 43.1815736536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "746b50b5bec1dcf3d4e913bcafb6d0209219b5df", + "fields": { + "code_commune_insee": "65441", + "nom_de_la_commune": "THEBE", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9569919341, + 0.60265452454 + ], + "libelle_d_acheminement": "THEBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60265452454, + 42.9569919341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b622fbeb5166117223dbc400c0102f95c427d304", + "fields": { + "code_commune_insee": "65442", + "nom_de_la_commune": "THERMES MAGNOAC", + "code_postal": "65230", + "coordonnees_gps": [ + 43.2974962072, + 0.603217695988 + ], + "libelle_d_acheminement": "THERMES MAGNOAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.603217695988, + 43.2974962072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21db59d0f3b06304282728c0f7c0ea82c0cbb7a0", + "fields": { + "code_commune_insee": "65444", + "nom_de_la_commune": "TIBIRAN JAUNAC", + "code_postal": "65150", + "coordonnees_gps": [ + 43.0523720905, + 0.549033475405 + ], + "libelle_d_acheminement": "TIBIRAN JAUNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.549033475405, + 43.0523720905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3112f29cf92ad64d9cc94e78f62c3f25f838af7b", + "fields": { + "code_commune_insee": "65445", + "nom_de_la_commune": "TILHOUSE", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0848937897, + 0.309988769457 + ], + "libelle_d_acheminement": "TILHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.309988769457, + 43.0848937897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "903b35c1d27d6dfbe4f72d5efc4efa561925b15f", + "fields": { + "code_commune_insee": "65446", + "nom_de_la_commune": "TOSTAT", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3297026101, + 0.111155594441 + ], + "libelle_d_acheminement": "TOSTAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.111155594441, + 43.3297026101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e454d0405d4aed3e438ca80e9548ddfcb761ba78", + "fields": { + "code_commune_insee": "65473", + "nom_de_la_commune": "VILLELONGUE", + "code_postal": "65260", + "coordonnees_gps": [ + 42.94230298, + -0.0171051666121 + ], + "libelle_d_acheminement": "VILLELONGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0171051666121, + 42.94230298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f6b4410b222d594c1aa3e03b36c1f0388b845ad", + "fields": { + "code_commune_insee": "65477", + "nom_de_la_commune": "VILLENAVE PRES MARSAC", + "code_postal": "65500", + "coordonnees_gps": [ + 43.3388929432, + 0.0880398223015 + ], + "libelle_d_acheminement": "VILLENAVE PRES MARSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0880398223015, + 43.3388929432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65e154cd728c510d7728aa9a8f7bab581f3339f5", + "fields": { + "code_commune_insee": "65478", + "nom_de_la_commune": "VISCOS", + "code_postal": "65120", + "coordonnees_gps": [ + 42.916683424, + -0.0532950234889 + ], + "libelle_d_acheminement": "VISCOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0532950234889, + 42.916683424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05ffed6bfebba51abafa3872e131b6b80e3b5288", + "fields": { + "code_commune_insee": "65482", + "nom_de_la_commune": "CANTAOUS", + "code_postal": "65150", + "coordonnees_gps": [ + 43.101919219, + 0.445956061466 + ], + "libelle_d_acheminement": "CANTAOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.445956061466, + 43.101919219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc957a6fb229215050f28ad7eec38669969c6409", + "fields": { + "ligne_5": "TALAU", + "code_commune_insee": "66010", + "libelle_d_acheminement": "AYGUATEBIA TALAU", + "code_postal": "66360", + "nom_de_la_commune": "AYGUATEBIA TALAU", + "coordonnees_gps": [ + 42.5529817606, + 2.18299990224 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18299990224, + 42.5529817606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f33a2dd92acc4e97503d0c2542fc422cd63de4ef", + "fields": { + "code_commune_insee": "66015", + "nom_de_la_commune": "BANYULS DELS ASPRES", + "code_postal": "66300", + "coordonnees_gps": [ + 42.5651533767, + 2.86636549196 + ], + "libelle_d_acheminement": "BANYULS DELS ASPRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86636549196, + 42.5651533767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7761f8d66c817c8387c2900001260b697fe4ebfa", + "fields": { + "code_commune_insee": "66020", + "nom_de_la_commune": "BOLQUERE", + "code_postal": "66210", + "coordonnees_gps": [ + 42.5221194704, + 2.06518824241 + ], + "libelle_d_acheminement": "BOLQUERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06518824241, + 42.5221194704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d6c86a4e332dab09cb70fc06e32d1fc1f01f196", + "fields": { + "ligne_5": "CALDEGAS", + "code_commune_insee": "66025", + "libelle_d_acheminement": "BOURG MADAME", + "code_postal": "66760", + "nom_de_la_commune": "BOURG MADAME", + "coordonnees_gps": [ + 42.4379971277, + 1.96090815348 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96090815348, + 42.4379971277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59446f853b3dc9f288f4d4d0870dfdd450ac368d", + "fields": { + "code_commune_insee": "66026", + "nom_de_la_commune": "BROUILLA", + "code_postal": "66620", + "coordonnees_gps": [ + 42.5745922327, + 2.89542921407 + ], + "libelle_d_acheminement": "BROUILLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89542921407, + 42.5745922327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bc39dffd1127db264baa5a2670f6b7c924f3a1d", + "fields": { + "code_commune_insee": "66034", + "nom_de_la_commune": "CAMPOME", + "code_postal": "66500", + "coordonnees_gps": [ + 42.6431601092, + 2.38417455008 + ], + "libelle_d_acheminement": "CAMPOME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38417455008, + 42.6431601092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3409ccefe029c6d0b99ecf5c7bd83210ece88341", + "fields": { + "code_commune_insee": "66042", + "nom_de_la_commune": "CASSAGNES", + "code_postal": "66720", + "coordonnees_gps": [ + 42.7439142997, + 2.62441382617 + ], + "libelle_d_acheminement": "CASSAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62441382617, + 42.7439142997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbdef5c735b6e22e7d554be512a846dddb21be6f", + "fields": { + "code_commune_insee": "66047", + "nom_de_la_commune": "CAUDIES DE CONFLENT", + "code_postal": "66360", + "coordonnees_gps": [ + 42.563639266, + 2.1426420364 + ], + "libelle_d_acheminement": "CAUDIES DE CONFLENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1426420364, + 42.563639266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "629bdec725575b68ca3aeb562ccc80490173d626", + "fields": { + "code_commune_insee": "66049", + "nom_de_la_commune": "CERET", + "code_postal": "66400", + "coordonnees_gps": [ + 42.4739622057, + 2.75268021455 + ], + "libelle_d_acheminement": "CERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75268021455, + 42.4739622057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41cbb8ba26b6a0a5ea0ff9b4c7ccc56a00cf45e1", + "fields": { + "code_commune_insee": "66058", + "nom_de_la_commune": "CORNEILLA LA RIVIERE", + "code_postal": "66550", + "coordonnees_gps": [ + 42.709567145, + 2.72548561716 + ], + "libelle_d_acheminement": "CORNEILLA LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72548561716, + 42.709567145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "429f6e344d5d7541068677e63de80658a39bdbd4", + "fields": { + "code_commune_insee": "66063", + "nom_de_la_commune": "LES CLUSES", + "code_postal": "66480", + "coordonnees_gps": [ + 42.4851649751, + 2.84398358463 + ], + "libelle_d_acheminement": "LES CLUSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84398358463, + 42.4851649751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1c420ee58d14f15f47a05500fc77ddecbe94eab", + "fields": { + "code_commune_insee": "66071", + "nom_de_la_commune": "ESTAGEL", + "code_postal": "66310", + "coordonnees_gps": [ + 42.7677306754, + 2.70754179553 + ], + "libelle_d_acheminement": "ESTAGEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70754179553, + 42.7677306754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5aac6a3c36da02a5b05a1a655507cbbdc1b5fc1", + "fields": { + "code_commune_insee": "66076", + "nom_de_la_commune": "FEILLUNS", + "code_postal": "66730", + "coordonnees_gps": [ + 42.7608211376, + 2.48853840388 + ], + "libelle_d_acheminement": "FEILLUNS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48853840388, + 42.7608211376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bf3427841943471a7cc7bd16f1f361bf0108a38", + "fields": { + "code_commune_insee": "66080", + "nom_de_la_commune": "FONTPEDROUSE", + "code_postal": "66360", + "coordonnees_gps": [ + 42.4628889701, + 2.19485745621 + ], + "libelle_d_acheminement": "FONTPEDROUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19485745621, + 42.4628889701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e13fb83cbf98460b26479f893c4bbeebd2caa269", + "fields": { + "code_commune_insee": "66084", + "nom_de_la_commune": "FOURQUES", + "code_postal": "66300", + "coordonnees_gps": [ + 42.5851203665, + 2.77662110647 + ], + "libelle_d_acheminement": "FOURQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77662110647, + 42.5851203665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9c61492ff482b7de7e6fed7f856a60c04e698f8", + "fields": { + "code_commune_insee": "66090", + "nom_de_la_commune": "JUJOLS", + "code_postal": "66360", + "coordonnees_gps": [ + 42.5835759835, + 2.28439855065 + ], + "libelle_d_acheminement": "JUJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28439855065, + 42.5835759835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e0e447fd931fcea8982421a0655baceb9586629", + "fields": { + "code_commune_insee": "66095", + "nom_de_la_commune": "LATOUR DE CAROL", + "code_postal": "66760", + "coordonnees_gps": [ + 42.4737507924, + 1.87250178908 + ], + "libelle_d_acheminement": "LATOUR DE CAROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87250178908, + 42.4737507924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64f02240c8017c7830ec3f3a75bacfcd71277c61", + "fields": { + "code_commune_insee": "66100", + "nom_de_la_commune": "LLO", + "code_postal": "66800", + "coordonnees_gps": [ + 42.4335821703, + 2.09024996022 + ], + "libelle_d_acheminement": "LLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09024996022, + 42.4335821703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65fc5c28af2a1d48a86a64712a49234358ea6c59", + "fields": { + "ligne_5": "LAS ILLAS", + "code_commune_insee": "66106", + "libelle_d_acheminement": "MAUREILLAS LAS ILLAS", + "code_postal": "66480", + "nom_de_la_commune": "MAUREILLAS LAS ILLAS", + "coordonnees_gps": [ + 42.460076792, + 2.8011796582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8011796582, + 42.460076792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9e2bdc6e6451f770fd5670423a64ed4fdbac171", + "fields": { + "code_commune_insee": "66107", + "nom_de_la_commune": "MAURY", + "code_postal": "66460", + "coordonnees_gps": [ + 42.8152827939, + 2.61292653306 + ], + "libelle_d_acheminement": "MAURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61292653306, + 42.8152827939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccfe827892ed0182e11715c95f7867774157eb19", + "fields": { + "code_commune_insee": "66121", + "nom_de_la_commune": "NEFIACH", + "code_postal": "66170", + "coordonnees_gps": [ + 42.6961258361, + 2.65843590263 + ], + "libelle_d_acheminement": "NEFIACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65843590263, + 42.6961258361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6d87dc0d1b6c56818b093d85e726dcbd3c23d41", + "fields": { + "code_commune_insee": "66124", + "nom_de_la_commune": "FONT ROMEU ODEILLO VIA", + "code_postal": "66120", + "coordonnees_gps": [ + 42.513242501, + 2.02697700093 + ], + "libelle_d_acheminement": "FONT ROMEU ODEILLO VIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02697700093, + 42.513242501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08b30908a8882c8d4ccfbba8ca57e693f0454681", + "fields": { + "code_commune_insee": "66144", + "nom_de_la_commune": "POLLESTRES", + "code_postal": "66450", + "coordonnees_gps": [ + 42.6374827748, + 2.872863153 + ], + "libelle_d_acheminement": "POLLESTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.872863153, + 42.6374827748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a88c0f073fd3e1fa857d9ad6653254a0d412d92e", + "fields": { + "code_commune_insee": "66145", + "nom_de_la_commune": "PONTEILLA", + "code_postal": "66300", + "coordonnees_gps": [ + 42.632806748, + 2.82639975565 + ], + "libelle_d_acheminement": "PONTEILLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82639975565, + 42.632806748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8e240dc081f31ffdf14d0b871e87c6a6e32663f", + "fields": { + "code_commune_insee": "66152", + "nom_de_la_commune": "PRUGNANES", + "code_postal": "66220", + "coordonnees_gps": [ + 42.8268896774, + 2.43647245139 + ], + "libelle_d_acheminement": "PRUGNANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43647245139, + 42.8268896774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6cc9ad13820deb31a8489fa22a7f9ed2191f545", + "fields": { + "code_commune_insee": "66158", + "nom_de_la_commune": "RASIGUERES", + "code_postal": "66720", + "coordonnees_gps": [ + 42.7745406859, + 2.59533841168 + ], + "libelle_d_acheminement": "RASIGUERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59533841168, + 42.7745406859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f732f580e4a1367592b7a49c89acb48016991727", + "fields": { + "code_commune_insee": "66159", + "nom_de_la_commune": "REAL", + "code_postal": "66210", + "coordonnees_gps": [ + 42.6407525568, + 2.14619018938 + ], + "libelle_d_acheminement": "REAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14619018938, + 42.6407525568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c65d3ffae1cdb48ede4ba86964917dad8ddc10e", + "fields": { + "code_commune_insee": "66166", + "nom_de_la_commune": "SAHORRE", + "code_postal": "66360", + "coordonnees_gps": [ + 42.5235898496, + 2.35864365675 + ], + "libelle_d_acheminement": "SAHORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35864365675, + 42.5235898496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d23907a2c46f0994fd5f7d0ab9791e487a9e3c9", + "fields": { + "code_commune_insee": "66168", + "nom_de_la_commune": "ST ANDRE", + "code_postal": "66690", + "coordonnees_gps": [ + 42.5524573215, + 2.98000507261 + ], + "libelle_d_acheminement": "ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98000507261, + 42.5524573215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c53b681a29bdd660116d419b8debcfbf8e67aa37", + "fields": { + "ligne_5": "ST CYPRIEN PLAGE", + "code_commune_insee": "66171", + "libelle_d_acheminement": "ST CYPRIEN", + "code_postal": "66750", + "nom_de_la_commune": "ST CYPRIEN", + "coordonnees_gps": [ + 42.6220280294, + 3.01622014324 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01622014324, + 42.6220280294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0190dd197fa2dcea749ddfa9cd6bd1e15131c7b1", + "fields": { + "code_commune_insee": "66182", + "nom_de_la_commune": "STE MARIE LA MER", + "code_postal": "66470", + "coordonnees_gps": [ + 42.7262501426, + 3.017081634 + ], + "libelle_d_acheminement": "STE MARIE LA MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.017081634, + 42.7262501426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c84c342fa4b4f8a19a3f85691b3fe6e6a5a68b3b", + "fields": { + "code_commune_insee": "66187", + "nom_de_la_commune": "ST PAUL DE FENOUILLET", + "code_postal": "66220", + "coordonnees_gps": [ + 42.8206748492, + 2.50723870282 + ], + "libelle_d_acheminement": "ST PAUL DE FENOUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50723870282, + 42.8206748492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dacc3825c598153d21d050d5069d2e694696dd0d", + "fields": { + "code_commune_insee": "66191", + "nom_de_la_commune": "SANSA", + "code_postal": "66360", + "coordonnees_gps": [ + 42.6192728881, + 2.18058547197 + ], + "libelle_d_acheminement": "SANSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18058547197, + 42.6192728881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e04ca9b6dbfa2438171603d6f064a7de5cf6c151", + "fields": { + "code_commune_insee": "67434", + "nom_de_la_commune": "SARRE UNION", + "code_postal": "67260", + "coordonnees_gps": [ + 48.9451866571, + 7.08863161456 + ], + "libelle_d_acheminement": "SARRE UNION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08863161456, + 48.9451866571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c53433f6e2bd401d65763c74973faf6deb591b1e", + "fields": { + "code_commune_insee": "67440", + "nom_de_la_commune": "SCHAFFHOUSE PRES SELTZ", + "code_postal": "67470", + "coordonnees_gps": [ + 48.9121321004, + 8.08967677055 + ], + "libelle_d_acheminement": "SCHAFFHOUSE PRES SELTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.08967677055, + 48.9121321004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6364a7414d79487e0a1f15e9514c946e4e3b4db8", + "fields": { + "code_commune_insee": "67446", + "nom_de_la_commune": "SCHILLERSDORF", + "code_postal": "67340", + "coordonnees_gps": [ + 48.8709974146, + 7.52392906348 + ], + "libelle_d_acheminement": "SCHILLERSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52392906348, + 48.8709974146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21761596175d09756969fe6ea5ccda34fb1ef373", + "fields": { + "code_commune_insee": "67448", + "nom_de_la_commune": "SCHIRMECK", + "code_postal": "67130", + "coordonnees_gps": [ + 48.4922866758, + 7.19802185316 + ], + "libelle_d_acheminement": "SCHIRMECK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19802185316, + 48.4922866758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fc3be45cad7723483e8bd189f7bd8d0eef72d7e", + "fields": { + "code_commune_insee": "67449", + "nom_de_la_commune": "SCHIRRHEIN", + "code_postal": "67240", + "coordonnees_gps": [ + 48.7957460013, + 7.91694869062 + ], + "libelle_d_acheminement": "SCHIRRHEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.91694869062, + 48.7957460013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5b854679aa0d91dac3b0fe5281f3feb46376c53", + "fields": { + "ligne_5": "AVENHEIM", + "code_commune_insee": "67452", + "libelle_d_acheminement": "SCHNERSHEIM", + "code_postal": "67370", + "nom_de_la_commune": "SCHNERSHEIM", + "coordonnees_gps": [ + 48.6601653977, + 7.56876364377 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56876364377, + 48.6601653977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f15d1ec77d8e340a53bf0eb37d0e0f0a91bee03", + "fields": { + "ligne_5": "KLEINFRANKENHEIM", + "code_commune_insee": "67452", + "libelle_d_acheminement": "SCHNERSHEIM", + "code_postal": "67370", + "nom_de_la_commune": "SCHNERSHEIM", + "coordonnees_gps": [ + 48.6601653977, + 7.56876364377 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56876364377, + 48.6601653977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d86f3d0f3547679dd7f8cab7e6584f87846d131b", + "fields": { + "code_commune_insee": "67454", + "nom_de_la_commune": "SCHOENBOURG", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8335988956, + 7.26601140557 + ], + "libelle_d_acheminement": "SCHOENBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26601140557, + 48.8335988956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e529393ff71711017d54c62ec4f37fae93b7cabd", + "fields": { + "code_commune_insee": "67455", + "nom_de_la_commune": "SCHOENENBOURG", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9503956142, + 7.91692156596 + ], + "libelle_d_acheminement": "SCHOENENBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.91692156596, + 48.9503956142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e430d51a8378fe4ecc4fcd4c00f2f91ccb5bb9c9", + "fields": { + "code_commune_insee": "67456", + "nom_de_la_commune": "SCHOPPERTEN", + "code_postal": "67260", + "coordonnees_gps": [ + 48.9475398723, + 7.05381254412 + ], + "libelle_d_acheminement": "SCHOPPERTEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05381254412, + 48.9475398723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68a40de100bab606faf1b75dbc62bb5bc5b937e8", + "fields": { + "code_commune_insee": "67464", + "nom_de_la_commune": "SERMERSHEIM", + "code_postal": "67230", + "coordonnees_gps": [ + 48.3443357629, + 7.55277785563 + ], + "libelle_d_acheminement": "SERMERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55277785563, + 48.3443357629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21da8098e863cc89f3dade08165f069608cac676", + "fields": { + "code_commune_insee": "67479", + "nom_de_la_commune": "STEINSELTZ", + "code_postal": "67160", + "coordonnees_gps": [ + 49.0050564823, + 7.92824415815 + ], + "libelle_d_acheminement": "STEINSELTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.92824415815, + 49.0050564823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52a9f3fe59481407a61afa34bfe500f200f62d3d", + "fields": { + "code_commune_insee": "67489", + "nom_de_la_commune": "THAL MARMOUTIER", + "code_postal": "67440", + "coordonnees_gps": [ + 48.6960773859, + 7.34056735881 + ], + "libelle_d_acheminement": "THAL MARMOUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34056735881, + 48.6960773859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f63f3d240a5ba1c654dd711f9f55389aa42ca17", + "fields": { + "code_commune_insee": "67491", + "nom_de_la_commune": "TIEFFENBACH", + "code_postal": "67290", + "coordonnees_gps": [ + 48.9024013107, + 7.24423915317 + ], + "libelle_d_acheminement": "TIEFFENBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24423915317, + 48.9024013107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9a56cbf890668eb2ae72ff396e31128049e0164", + "fields": { + "code_commune_insee": "67492", + "nom_de_la_commune": "TRAENHEIM", + "code_postal": "67310", + "coordonnees_gps": [ + 48.5940735838, + 7.46515518656 + ], + "libelle_d_acheminement": "TRAENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46515518656, + 48.5940735838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64778bc6fdd768e287791de4a0638a8177e936ff", + "fields": { + "code_commune_insee": "67495", + "nom_de_la_commune": "TRUCHTERSHEIM", + "code_postal": "67370", + "coordonnees_gps": [ + 48.6564842295, + 7.61650465885 + ], + "libelle_d_acheminement": "TRUCHTERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61650465885, + 48.6564842295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d5b853db316005f287dea13f45cb7b6942258d3", + "fields": { + "ligne_5": "PFETTISHEIM", + "code_commune_insee": "67495", + "libelle_d_acheminement": "TRUCHTERSHEIM", + "code_postal": "67370", + "nom_de_la_commune": "TRUCHTERSHEIM", + "coordonnees_gps": [ + 48.6564842295, + 7.61650465885 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61650465885, + 48.6564842295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ba115687ce879102f0b182748bee6cec654111a", + "fields": { + "code_commune_insee": "67502", + "nom_de_la_commune": "UTTENHOFFEN", + "code_postal": "67110", + "coordonnees_gps": [ + 48.8931983162, + 7.64472103816 + ], + "libelle_d_acheminement": "UTTENHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64472103816, + 48.8931983162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04674c96552bbadbf7c7b3a274f7ce29abd97a48", + "fields": { + "code_commune_insee": "67505", + "nom_de_la_commune": "LA VANCELLE", + "code_postal": "67730", + "coordonnees_gps": [ + 48.2814104124, + 7.31939719314 + ], + "libelle_d_acheminement": "LA VANCELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31939719314, + 48.2814104124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bf659e1b6cdc8a911816929312878768c0a4081", + "fields": { + "code_commune_insee": "67506", + "nom_de_la_commune": "VENDENHEIM", + "code_postal": "67550", + "coordonnees_gps": [ + 48.6674524477, + 7.73934378443 + ], + "libelle_d_acheminement": "VENDENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73934378443, + 48.6674524477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2065c03ce49c89621a46a0d48c2dac09beee2439", + "fields": { + "code_commune_insee": "67514", + "nom_de_la_commune": "WALDHAMBACH", + "code_postal": "67430", + "coordonnees_gps": [ + 48.9271512817, + 7.2306707984 + ], + "libelle_d_acheminement": "WALDHAMBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2306707984, + 48.9271512817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac3e70d4c4c6ec8555012e29863eb04c79d988c4", + "fields": { + "ligne_5": "BRECHLINGEN", + "code_commune_insee": "67520", + "libelle_d_acheminement": "WASSELONNE", + "code_postal": "67310", + "nom_de_la_commune": "WASSELONNE", + "coordonnees_gps": [ + 48.6388786162, + 7.44230441985 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44230441985, + 48.6388786162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80a6405ddd8e8d5df0c600df3be3fd8913465a1f", + "fields": { + "code_commune_insee": "67521", + "nom_de_la_commune": "WEINBOURG", + "code_postal": "67340", + "coordonnees_gps": [ + 48.8716635138, + 7.44076815738 + ], + "libelle_d_acheminement": "WEINBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44076815738, + 48.8716635138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42b559f5a9ff7d4a7552078cdf87d6eea6c43b07", + "fields": { + "code_commune_insee": "67526", + "nom_de_la_commune": "WESTHOUSE", + "code_postal": "67230", + "coordonnees_gps": [ + 48.4068133604, + 7.57239597333 + ], + "libelle_d_acheminement": "WESTHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57239597333, + 48.4068133604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0178a0a244669b566c6bb449a66879a48cc3df4e", + "fields": { + "code_commune_insee": "67535", + "nom_de_la_commune": "WIMMENAU", + "code_postal": "67290", + "coordonnees_gps": [ + 48.9213776191, + 7.42020495369 + ], + "libelle_d_acheminement": "WIMMENAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42020495369, + 48.9213776191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a51611e934e514bda50d65507c86784f7f2645b", + "fields": { + "code_commune_insee": "67537", + "nom_de_la_commune": "WINGEN", + "code_postal": "67510", + "coordonnees_gps": [ + 49.0391731666, + 7.81446231798 + ], + "libelle_d_acheminement": "WINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.81446231798, + 49.0391731666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e49462b2c19ccfbdc7c378563f63620dd239f02", + "fields": { + "ligne_5": "PETIT WINGEN", + "code_commune_insee": "67537", + "libelle_d_acheminement": "WINGEN", + "code_postal": "67510", + "nom_de_la_commune": "WINGEN", + "coordonnees_gps": [ + 49.0391731666, + 7.81446231798 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.81446231798, + 49.0391731666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35a5f4ec7800fdb7d2970ecf015b2bcf800a7b0d", + "fields": { + "ligne_5": "HOHATZENHEIM", + "code_commune_insee": "67539", + "libelle_d_acheminement": "WINGERSHEIM LES QUATRE BANS", + "code_postal": "67170", + "nom_de_la_commune": "WINGERSHEIM LES QUATRE BANS", + "coordonnees_gps": [ + 48.7299632936, + 7.63820636503 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63820636503, + 48.7299632936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "157eebbe9f010da0401bb2222f8eef1ea72582de", + "fields": { + "code_commune_insee": "67540", + "nom_de_la_commune": "WINTERSHOUSE", + "code_postal": "67590", + "coordonnees_gps": [ + 48.796262357, + 7.70641296219 + ], + "libelle_d_acheminement": "WINTERSHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70641296219, + 48.796262357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53e7f9702bb83b5848e33838fe756a8d4f5d466b", + "fields": { + "code_commune_insee": "67548", + "nom_de_la_commune": "WIWERSHEIM", + "code_postal": "67370", + "coordonnees_gps": [ + 48.6379420012, + 7.59735898171 + ], + "libelle_d_acheminement": "WIWERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59735898171, + 48.6379420012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68c166cd798b1a281269698186e4ddae33bb4f11", + "fields": { + "code_commune_insee": "67550", + "nom_de_la_commune": "WOERTH", + "code_postal": "67360", + "coordonnees_gps": [ + 48.9412737008, + 7.74416394777 + ], + "libelle_d_acheminement": "WOERTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74416394777, + 48.9412737008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cf94452342c356fa39a3be1df4bbbdcf3bef0e4", + "fields": { + "code_commune_insee": "67557", + "nom_de_la_commune": "ZELLWILLER", + "code_postal": "67140", + "coordonnees_gps": [ + 48.3992469094, + 7.51120403542 + ], + "libelle_d_acheminement": "ZELLWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51120403542, + 48.3992469094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a8be5da0084f95970d9b63ff7cf4eb82afa3b32", + "fields": { + "code_commune_insee": "67559", + "nom_de_la_commune": "ZITTERSHEIM", + "code_postal": "67290", + "coordonnees_gps": [ + 48.9007208521, + 7.33743606824 + ], + "libelle_d_acheminement": "ZITTERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33743606824, + 48.9007208521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57545565fab01ddb276bb173aaf3d70c9be728ff", + "fields": { + "code_commune_insee": "68010", + "nom_de_la_commune": "ASPACH", + "code_postal": "68130", + "coordonnees_gps": [ + 47.6424583561, + 7.23328777965 + ], + "libelle_d_acheminement": "ASPACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23328777965, + 47.6424583561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71b4385bb0fdf06a0f2d2841e7062951c98e118e", + "fields": { + "ligne_5": "ASPACH LE HAUT", + "code_commune_insee": "68012", + "libelle_d_acheminement": "ASPACH MICHELBACH", + "code_postal": "68700", + "nom_de_la_commune": "ASPACH MICHELBACH", + "coordonnees_gps": [ + 47.7791495008, + 7.12888464942 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12888464942, + 47.7791495008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d48ec29aeca9e6dc9122cf76cb93768202e1436", + "fields": { + "code_commune_insee": "68013", + "nom_de_la_commune": "ATTENSCHWILLER", + "code_postal": "68220", + "coordonnees_gps": [ + 47.5678328744, + 7.46912969155 + ], + "libelle_d_acheminement": "ATTENSCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46912969155, + 47.5678328744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9252298ad737b2470a20646ad4a5943115a29a55", + "fields": { + "code_commune_insee": "68022", + "nom_de_la_commune": "BATTENHEIM", + "code_postal": "68390", + "coordonnees_gps": [ + 47.818845544, + 7.41535259558 + ], + "libelle_d_acheminement": "BATTENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41535259558, + 47.818845544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceecbc64a68377f0a5383c44116815d5086388f2", + "fields": { + "code_commune_insee": "68026", + "nom_de_la_commune": "BENNWIHR", + "code_postal": "68630", + "coordonnees_gps": [ + 48.1394469818, + 7.33981544547 + ], + "libelle_d_acheminement": "BENNWIHR MITTELWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33981544547, + 48.1394469818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b176719627777de290428a9045f390b5241f0c60", + "fields": { + "code_commune_insee": "68028", + "nom_de_la_commune": "BERGHEIM", + "code_postal": "68750", + "coordonnees_gps": [ + 48.2125964008, + 7.35786517874 + ], + "libelle_d_acheminement": "BERGHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35786517874, + 48.2125964008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c508a1839be497bc363870f19f0b0ab6d3372f46", + "fields": { + "code_commune_insee": "68029", + "nom_de_la_commune": "BERGHOLTZ", + "code_postal": "68500", + "coordonnees_gps": [ + 47.9204515287, + 7.2473083241 + ], + "libelle_d_acheminement": "BERGHOLTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2473083241, + 47.9204515287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b6dbf511da4f26064407cfbe6cd44a3055a86da", + "fields": { + "code_commune_insee": "68038", + "nom_de_la_commune": "BISCHWIHR", + "code_postal": "68320", + "coordonnees_gps": [ + 48.0933356673, + 7.42793671425 + ], + "libelle_d_acheminement": "BISCHWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42793671425, + 48.0933356673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0649449a523f551e884397b0be5fc7a52611d4d4", + "fields": { + "code_commune_insee": "68041", + "nom_de_la_commune": "BLODELSHEIM", + "code_postal": "68740", + "coordonnees_gps": [ + 47.8835902429, + 7.52612797828 + ], + "libelle_d_acheminement": "BLODELSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52612797828, + 47.8835902429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0461e596fa05661e10f051175987ea5c80fa5096", + "fields": { + "code_commune_insee": "68044", + "nom_de_la_commune": "LE BONHOMME", + "code_postal": "68650", + "coordonnees_gps": [ + 48.1634421082, + 7.09862606883 + ], + "libelle_d_acheminement": "LE BONHOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09862606883, + 48.1634421082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17cc7bd338318d561f0bd125c5d34a420a24d3f0", + "fields": { + "code_commune_insee": "68046", + "nom_de_la_commune": "BOURBACH LE HAUT", + "code_postal": "68290", + "coordonnees_gps": [ + 47.7983331125, + 7.03017652946 + ], + "libelle_d_acheminement": "BOURBACH LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03017652946, + 47.7983331125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4268db7256771cc85aefbd6eaae8cc025981bbd", + "fields": { + "code_commune_insee": "68076", + "nom_de_la_commune": "DURRENENTZEN", + "code_postal": "68320", + "coordonnees_gps": [ + 48.0949092632, + 7.50887366008 + ], + "libelle_d_acheminement": "DURRENENTZEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50887366008, + 48.0949092632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fd8ea0e14cffdd83a126f81d0fdc11b8d7232fb", + "fields": { + "code_commune_insee": "68079", + "nom_de_la_commune": "ELBACH", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6424317944, + 7.06940948194 + ], + "libelle_d_acheminement": "ELBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06940948194, + 47.6424317944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0670dfe252795a1df4920fc2cabd4e2e0fa092ba", + "fields": { + "code_commune_insee": "68089", + "nom_de_la_commune": "FELLERING", + "code_postal": "68470", + "coordonnees_gps": [ + 47.9157234129, + 6.95863361019 + ], + "libelle_d_acheminement": "FELLERING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95863361019, + 47.9157234129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9d085b748d33e9addc6b2355bfaa3307ce38115", + "fields": { + "code_commune_insee": "68093", + "nom_de_la_commune": "FLAXLANDEN", + "code_postal": "68720", + "coordonnees_gps": [ + 47.6920814143, + 7.32559027655 + ], + "libelle_d_acheminement": "FLAXLANDEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32559027655, + 47.6920814143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5722fa7fe34fcf7dd875744067d0d6c6aac8cac6", + "fields": { + "code_commune_insee": "68097", + "nom_de_la_commune": "FRELAND", + "code_postal": "68240", + "coordonnees_gps": [ + 48.1836015307, + 7.18808543159 + ], + "libelle_d_acheminement": "FRELAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18808543159, + 48.1836015307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66287122f551e7c216262b96f741d5e70775238b", + "fields": { + "code_commune_insee": "68099", + "nom_de_la_commune": "FROENINGEN", + "code_postal": "68720", + "coordonnees_gps": [ + 47.6951501354, + 7.25691494942 + ], + "libelle_d_acheminement": "FROENINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25691494942, + 47.6951501354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "888d6c79a118c0fd3d2466dfc95a7bbe3b2f6e61", + "fields": { + "code_commune_insee": "68111", + "nom_de_la_commune": "GUEBERSCHWIHR", + "code_postal": "68420", + "coordonnees_gps": [ + 48.0068225604, + 7.25975546236 + ], + "libelle_d_acheminement": "GUEBERSCHWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25975546236, + 48.0068225604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40fe5817d52edeb35e8baaa55548c3a543d4f12b", + "fields": { + "code_commune_insee": "68116", + "nom_de_la_commune": "GUNDOLSHEIM", + "code_postal": "68250", + "coordonnees_gps": [ + 47.9283813908, + 7.29831896796 + ], + "libelle_d_acheminement": "GUNDOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29831896796, + 47.9283813908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72ccf78ef6aa799a2d3ec7a854fc9c586690854c", + "fields": { + "code_commune_insee": "68121", + "nom_de_la_commune": "HAGENTHAL LE HAUT", + "code_postal": "68220", + "coordonnees_gps": [ + 47.5192935701, + 7.45588624848 + ], + "libelle_d_acheminement": "HAGENTHAL LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45588624848, + 47.5192935701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6644fd5ec63bf20b2380f2e1e751b1f9a2d8313", + "fields": { + "code_commune_insee": "68126", + "nom_de_la_commune": "HEGENHEIM", + "code_postal": "68220", + "coordonnees_gps": [ + 47.5611004781, + 7.52631404841 + ], + "libelle_d_acheminement": "HEGENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52631404841, + 47.5611004781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b88590a4d52e30535d9bfb7e293dac22e101759", + "fields": { + "code_commune_insee": "68134", + "nom_de_la_commune": "HERRLISHEIM PRES COLMAR", + "code_postal": "68420", + "coordonnees_gps": [ + 48.0190918794, + 7.32531342644 + ], + "libelle_d_acheminement": "HERRLISHEIM PRES COLMAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32531342644, + 48.0190918794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2397bdadbfbe7bb6e43454339b3ebda172ac4c2f", + "fields": { + "code_commune_insee": "68135", + "nom_de_la_commune": "HESINGUE", + "code_postal": "68220", + "coordonnees_gps": [ + 47.579283771, + 7.51544273738 + ], + "libelle_d_acheminement": "HESINGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51544273738, + 47.579283771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aed49c6a7a289b4715f4f8fa111f9ee9dc0c337f", + "fields": { + "code_commune_insee": "68138", + "nom_de_la_commune": "HIRSINGUE", + "code_postal": "68560", + "coordonnees_gps": [ + 47.5891425411, + 7.25204087522 + ], + "libelle_d_acheminement": "HIRSINGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25204087522, + 47.5891425411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "852e0fbb90e73ba90b9b84c1834590397b92e68d", + "fields": { + "code_commune_insee": "68147", + "nom_de_la_commune": "HUNAWIHR", + "code_postal": "68150", + "coordonnees_gps": [ + 48.1824285926, + 7.30403809307 + ], + "libelle_d_acheminement": "HUNAWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30403809307, + 48.1824285926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f020a120bb99223b115a055af7ff70ce3eef9fc", + "fields": { + "code_commune_insee": "68158", + "nom_de_la_commune": "JETTINGEN", + "code_postal": "68130", + "coordonnees_gps": [ + 47.5961368894, + 7.37922389442 + ], + "libelle_d_acheminement": "JETTINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37922389442, + 47.5961368894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0ca926b44c2e652f55a298c8a62f433e9e10e2c", + "fields": { + "code_commune_insee": "68160", + "nom_de_la_commune": "KAPPELEN", + "code_postal": "68510", + "coordonnees_gps": [ + 47.6138112548, + 7.44104846641 + ], + "libelle_d_acheminement": "KAPPELEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44104846641, + 47.6138112548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "197c8bd9381d6510493923d997e7fc397093baf6", + "fields": { + "ligne_5": "SIGOLSHEIM", + "code_commune_insee": "68162", + "libelle_d_acheminement": "KAYSERSBERG VIGNOBLE", + "code_postal": "68240", + "nom_de_la_commune": "KAYSERSBERG VIGNOBLE", + "coordonnees_gps": [ + 48.1550192582, + 7.23808768656 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23808768656, + 48.1550192582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c795ab139453a8138ee103153362e824a3e248b", + "fields": { + "code_commune_insee": "68168", + "nom_de_la_commune": "KNOERINGUE", + "code_postal": "68220", + "coordonnees_gps": [ + 47.5631849343, + 7.40195763137 + ], + "libelle_d_acheminement": "KNOERINGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40195763137, + 47.5631849343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "976b4661d31f92062ba33d0df05231f37aac0375", + "fields": { + "code_commune_insee": "68171", + "nom_de_la_commune": "KRUTH", + "code_postal": "68820", + "coordonnees_gps": [ + 47.9508833751, + 6.96310163389 + ], + "libelle_d_acheminement": "KRUTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96310163389, + 47.9508833751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2644ca267037e847e3925add1672c6f1e7afcbea", + "fields": { + "ligne_5": "MARKSTEIN", + "code_commune_insee": "68177", + "libelle_d_acheminement": "LAUTENBACH", + "code_postal": "68610", + "nom_de_la_commune": "LAUTENBACH", + "coordonnees_gps": [ + 47.9527349295, + 7.16433010313 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16433010313, + 47.9527349295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c900be9d1e825806bece1b077ef57d89216122f", + "fields": { + "ligne_5": "SCHWEIGHOUSE", + "code_commune_insee": "68177", + "libelle_d_acheminement": "LAUTENBACH", + "code_postal": "68610", + "nom_de_la_commune": "LAUTENBACH", + "coordonnees_gps": [ + 47.9527349295, + 7.16433010313 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16433010313, + 47.9527349295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b20de097038501259dd6b09f7e3de28c649be2c0", + "fields": { + "ligne_5": "SENGERN", + "code_commune_insee": "68178", + "libelle_d_acheminement": "LAUTENBACHZELL", + "code_postal": "68610", + "nom_de_la_commune": "LAUTENBACHZELL", + "coordonnees_gps": [ + 47.9254894792, + 7.09657685658 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09657685658, + 47.9254894792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97e698194b1cdff5af3cc7bfe9b961afcb8341cd", + "fields": { + "code_commune_insee": "68180", + "nom_de_la_commune": "LEIMBACH", + "code_postal": "68800", + "coordonnees_gps": [ + 47.792882847, + 7.09615660086 + ], + "libelle_d_acheminement": "LEIMBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09615660086, + 47.792882847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5694f0e6e58f1f183201a18b6dda8ad23ffd3742", + "fields": { + "code_commune_insee": "68183", + "nom_de_la_commune": "LIEBENSWILLER", + "code_postal": "68220", + "coordonnees_gps": [ + 47.5010138727, + 7.4504371497 + ], + "libelle_d_acheminement": "LIEBENSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4504371497, + 47.5010138727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b6331a6b578ed608efc263bd12fffaf4ff3fc3c", + "fields": { + "code_commune_insee": "68186", + "nom_de_la_commune": "LIGSDORF", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4667364645, + 7.30073437395 + ], + "libelle_d_acheminement": "LIGSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30073437395, + 47.4667364645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eab174be1abfbc5c8dbf469ab8886d3611143490", + "fields": { + "code_commune_insee": "68187", + "nom_de_la_commune": "LINSDORF", + "code_postal": "68480", + "coordonnees_gps": [ + 47.5150509459, + 7.40642698338 + ], + "libelle_d_acheminement": "LINSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40642698338, + 47.5150509459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "406a590071375191939dfbb7cd3dc965882c69ee", + "fields": { + "code_commune_insee": "66194", + "nom_de_la_commune": "SERRALONGUE", + "code_postal": "66230", + "coordonnees_gps": [ + 42.3823857102, + 2.55698391663 + ], + "libelle_d_acheminement": "SERRALONGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55698391663, + 42.3823857102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ca84642c9f7d5ea528d9236713b5dcfa3d62ca8", + "fields": { + "code_commune_insee": "68199", + "nom_de_la_commune": "MALMERSPACH", + "code_postal": "68550", + "coordonnees_gps": [ + 47.8597012807, + 7.0228099709 + ], + "libelle_d_acheminement": "MALMERSPACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0228099709, + 47.8597012807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a084746bfbf8a8cbf6ece10bc7f2c03d7b141000", + "fields": { + "code_commune_insee": "66195", + "nom_de_la_commune": "LE SOLER", + "code_postal": "66270", + "coordonnees_gps": [ + 42.6776853173, + 2.79565359118 + ], + "libelle_d_acheminement": "LE SOLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79565359118, + 42.6776853173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2431ec971e16b71848484cdd4494d9deede12429", + "fields": { + "code_commune_insee": "68203", + "nom_de_la_commune": "MERXHEIM", + "code_postal": "68500", + "coordonnees_gps": [ + 47.9093933635, + 7.30167546188 + ], + "libelle_d_acheminement": "MERXHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30167546188, + 47.9093933635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c398f3d63fa8f2d13dcc8dd87b17c3a58318b3c", + "fields": { + "code_commune_insee": "66198", + "nom_de_la_commune": "SOURNIA", + "code_postal": "66730", + "coordonnees_gps": [ + 42.7145850247, + 2.41454778007 + ], + "libelle_d_acheminement": "SOURNIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41454778007, + 42.7145850247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2a022d6debecca8df5070ffe4c70c878b39961a", + "fields": { + "code_commune_insee": "68207", + "nom_de_la_commune": "MICHELBACH LE BAS", + "code_postal": "68730", + "coordonnees_gps": [ + 47.5936254129, + 7.46476536443 + ], + "libelle_d_acheminement": "MICHELBACH LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46476536443, + 47.5936254129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dafc6162f8380fd2c3276f7c6cdb9248d9bb747e", + "fields": { + "code_commune_insee": "66213", + "nom_de_la_commune": "TOULOUGES", + "code_postal": "66350", + "coordonnees_gps": [ + 42.6696131691, + 2.82406854776 + ], + "libelle_d_acheminement": "TOULOUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82406854776, + 42.6696131691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6068921063be83c0f034d47465985a1c88dba98d", + "fields": { + "code_commune_insee": "68208", + "nom_de_la_commune": "MICHELBACH LE HAUT", + "code_postal": "68220", + "coordonnees_gps": [ + 47.5627694258, + 7.43780573745 + ], + "libelle_d_acheminement": "MICHELBACH LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43780573745, + 47.5627694258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b46b423b81dadd46de43e3553cef297a4c87f4c", + "fields": { + "code_commune_insee": "66214", + "nom_de_la_commune": "TRESSERRE", + "code_postal": "66300", + "coordonnees_gps": [ + 42.5556320578, + 2.83755303653 + ], + "libelle_d_acheminement": "TRESSERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83755303653, + 42.5556320578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d95f7ced76ddc5e7872b23c5455144a832e037b", + "fields": { + "code_commune_insee": "68210", + "nom_de_la_commune": "MITTLACH", + "code_postal": "68380", + "coordonnees_gps": [ + 47.9945265472, + 7.02013274266 + ], + "libelle_d_acheminement": "MITTLACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02013274266, + 47.9945265472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "243b37849362b52af1aff5e890df9761c15c6c64", + "fields": { + "code_commune_insee": "66222", + "nom_de_la_commune": "VERNET LES BAINS", + "code_postal": "66820", + "coordonnees_gps": [ + 42.5385252811, + 2.41579513309 + ], + "libelle_d_acheminement": "VERNET LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41579513309, + 42.5385252811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "172c9cca4a18d5fdacfcd6aa4aff5e1b69e87390", + "fields": { + "code_commune_insee": "68216", + "nom_de_la_commune": "MOOSLARGUE", + "code_postal": "68580", + "coordonnees_gps": [ + 47.5112217629, + 7.21307892037 + ], + "libelle_d_acheminement": "MOOSLARGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21307892037, + 47.5112217629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eadae3cfa2900f5fb858161f8cc40c57d0e08a4", + "fields": { + "code_commune_insee": "66230", + "nom_de_la_commune": "VINCA", + "code_postal": "66320", + "coordonnees_gps": [ + 42.64326224, + 2.52272432664 + ], + "libelle_d_acheminement": "VINCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52272432664, + 42.64326224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feae917a7e826a8b7d7f82b58de4f5b8b5d78cfb", + "fields": { + "code_commune_insee": "68218", + "nom_de_la_commune": "MORSCHWILLER LE BAS", + "code_postal": "68790", + "coordonnees_gps": [ + 47.7341232071, + 7.26513847748 + ], + "libelle_d_acheminement": "MORSCHWILLER LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26513847748, + 47.7341232071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1ccf71c676bf1b12f2465720e3ab5afb39f20c6", + "fields": { + "code_commune_insee": "66234", + "nom_de_la_commune": "LE VIVIER", + "code_postal": "66730", + "coordonnees_gps": [ + 42.7641929196, + 2.44351748783 + ], + "libelle_d_acheminement": "LE VIVIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44351748783, + 42.7641929196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "476f5b9568cd246fc4245dbc8ba31362fe67dbfd", + "fields": { + "code_commune_insee": "68224", + "nom_de_la_commune": "MULHOUSE", + "code_postal": "68200", + "coordonnees_gps": [ + 47.749163303, + 7.32570047509 + ], + "libelle_d_acheminement": "MULHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32570047509, + 47.749163303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "379eabc2d6756ff31183d1f1e17e14f41cc9208f", + "fields": { + "ligne_5": "SINGRIST", + "code_commune_insee": "67004", + "libelle_d_acheminement": "SOMMERAU", + "code_postal": "67440", + "nom_de_la_commune": "SOMMERAU", + "coordonnees_gps": [ + 48.6536185967, + 7.36691370722 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36691370722, + 48.6536185967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c9ec84355a1e588e8e3db91016980f97fcf0334", + "fields": { + "ligne_5": "DORNACH", + "code_commune_insee": "68224", + "libelle_d_acheminement": "MULHOUSE", + "code_postal": "68200", + "nom_de_la_commune": "MULHOUSE", + "coordonnees_gps": [ + 47.749163303, + 7.32570047509 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32570047509, + 47.749163303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "411e7d2629a701ce9b5df19c1fa007afbc153e5d", + "fields": { + "code_commune_insee": "67010", + "nom_de_la_commune": "ANDLAU", + "code_postal": "67140", + "coordonnees_gps": [ + 48.3907003871, + 7.38488102933 + ], + "libelle_d_acheminement": "ANDLAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38488102933, + 48.3907003871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b41f9110bf70bc07a123addaf47d24d0b3c6f93", + "fields": { + "code_commune_insee": "68229", + "nom_de_la_commune": "MURBACH", + "code_postal": "68530", + "coordonnees_gps": [ + 47.9168443337, + 7.13399961465 + ], + "libelle_d_acheminement": "MURBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13399961465, + 47.9168443337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d372836363fbd7950a0996064390e97a9454dbe", + "fields": { + "code_commune_insee": "67013", + "nom_de_la_commune": "ASSWILLER", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8805887917, + 7.224373364 + ], + "libelle_d_acheminement": "ASSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.224373364, + 48.8805887917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07e6983afcf3ee66a330ab94f28c6730df902968", + "fields": { + "code_commune_insee": "68232", + "nom_de_la_commune": "NEUWILLER", + "code_postal": "68220", + "coordonnees_gps": [ + 47.5243158787, + 7.5127533777 + ], + "libelle_d_acheminement": "NEUWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5127533777, + 47.5243158787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d56c10bf29f2e4dced06304bcba67171c522e97b", + "fields": { + "code_commune_insee": "67016", + "nom_de_la_commune": "AVOLSHEIM", + "code_postal": "67120", + "coordonnees_gps": [ + 48.5605883589, + 7.49416534055 + ], + "libelle_d_acheminement": "AVOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49416534055, + 48.5605883589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a740256b784f79c043c5e10f2cb4159560ff02f", + "fields": { + "code_commune_insee": "68235", + "nom_de_la_commune": "NIEDERHERGHEIM", + "code_postal": "68127", + "coordonnees_gps": [ + 47.9897040567, + 7.38918456659 + ], + "libelle_d_acheminement": "NIEDERHERGHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38918456659, + 47.9897040567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c55f210e74e56300782542f441a9e90a8c88991", + "fields": { + "code_commune_insee": "67020", + "nom_de_la_commune": "BAREMBACH", + "code_postal": "67130", + "coordonnees_gps": [ + 48.4670562489, + 7.24316580425 + ], + "libelle_d_acheminement": "BAREMBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24316580425, + 48.4670562489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bcf4f6e4d13e36cc0b3c8bb1aa1e9fead152913", + "fields": { + "code_commune_insee": "68244", + "nom_de_la_commune": "OBERMORSCHWIHR", + "code_postal": "68420", + "coordonnees_gps": [ + 48.0229740954, + 7.29540852921 + ], + "libelle_d_acheminement": "OBERMORSCHWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29540852921, + 48.0229740954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "685c5ccf6c7715bfdc662581c420562093abc500", + "fields": { + "code_commune_insee": "67028", + "nom_de_la_commune": "BENFELD", + "code_postal": "67230", + "coordonnees_gps": [ + 48.3659229092, + 7.60197338557 + ], + "libelle_d_acheminement": "BENFELD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60197338557, + 48.3659229092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69944804e8473719b7f7b9c124f154a42ef9615c", + "fields": { + "code_commune_insee": "68246", + "nom_de_la_commune": "OBERSAASHEIM", + "code_postal": "68600", + "coordonnees_gps": [ + 47.9861233303, + 7.55675214375 + ], + "libelle_d_acheminement": "OBERSAASHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55675214375, + 47.9861233303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "710cd8e6324e581fd9a67addad409be2806cc953", + "fields": { + "code_commune_insee": "67048", + "nom_de_la_commune": "BITSCHHOFFEN", + "code_postal": "67350", + "coordonnees_gps": [ + 48.8628351945, + 7.62438682496 + ], + "libelle_d_acheminement": "BITSCHHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62438682496, + 48.8628351945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "334320d631ae12f578c0757707a006f01a743843", + "fields": { + "code_commune_insee": "68247", + "nom_de_la_commune": "ODEREN", + "code_postal": "68830", + "coordonnees_gps": [ + 47.9289257101, + 6.99426460048 + ], + "libelle_d_acheminement": "ODEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99426460048, + 47.9289257101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd58f17398e353c0942c50715299264ac3170fb3", + "fields": { + "code_commune_insee": "67052", + "nom_de_la_commune": "BOERSCH", + "code_postal": "67530", + "coordonnees_gps": [ + 48.4664860323, + 7.37505113728 + ], + "libelle_d_acheminement": "BOERSCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37505113728, + 48.4664860323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a3616b8e47434660bb63b3f1e5b43b530928303", + "fields": { + "code_commune_insee": "68250", + "nom_de_la_commune": "ORSCHWIHR", + "code_postal": "68500", + "coordonnees_gps": [ + 47.9378114718, + 7.22902845686 + ], + "libelle_d_acheminement": "ORSCHWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22902845686, + 47.9378114718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57924a786a61333c1b753b5d93af22c1c9b43c8e", + "fields": { + "ligne_5": "BOURG", + "code_commune_insee": "67059", + "libelle_d_acheminement": "BOURG BRUCHE", + "code_postal": "67420", + "nom_de_la_commune": "BOURG BRUCHE", + "coordonnees_gps": [ + 48.358768312, + 7.143716963 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.143716963, + 48.358768312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe7c2563b650edc33ce95b634b08372aa584de90", + "fields": { + "code_commune_insee": "68251", + "nom_de_la_commune": "OSENBACH", + "code_postal": "68570", + "coordonnees_gps": [ + 47.9929199138, + 7.21660441722 + ], + "libelle_d_acheminement": "OSENBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21660441722, + 47.9929199138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abe2814cd7194f217eee81861a4f0544e734489a", + "fields": { + "code_commune_insee": "67061", + "nom_de_la_commune": "BOUXWILLER", + "code_postal": "67330", + "coordonnees_gps": [ + 48.8172998086, + 7.46488021539 + ], + "libelle_d_acheminement": "BOUXWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46488021539, + 48.8172998086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "272c60d01ee60945f1a15ac6da429835a945c0d1", + "fields": { + "code_commune_insee": "68255", + "nom_de_la_commune": "PFAFFENHEIM", + "code_postal": "68250", + "coordonnees_gps": [ + 47.9957150402, + 7.25987167223 + ], + "libelle_d_acheminement": "PFAFFENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25987167223, + 47.9957150402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20cb820fe2f78ffb09521174ad76a7e51a8b3768", + "fields": { + "ligne_5": "GRIESBACH LE BASTBERG", + "code_commune_insee": "67061", + "libelle_d_acheminement": "BOUXWILLER", + "code_postal": "67330", + "nom_de_la_commune": "BOUXWILLER", + "coordonnees_gps": [ + 48.8172998086, + 7.46488021539 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46488021539, + 48.8172998086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "876ab3fbfa6976959bd8b8f3b4873f56373fe6f4", + "fields": { + "code_commune_insee": "68257", + "nom_de_la_commune": "PFETTERHOUSE", + "code_postal": "68480", + "coordonnees_gps": [ + 47.506686131, + 7.16823330248 + ], + "libelle_d_acheminement": "PFETTERHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16823330248, + 47.506686131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fb0a6241cdb9dcebcbf72a477dbb63bdc8c348a", + "fields": { + "code_commune_insee": "67066", + "nom_de_la_commune": "LA BROQUE", + "code_postal": "67130", + "coordonnees_gps": [ + 48.4601655449, + 7.17283025504 + ], + "libelle_d_acheminement": "LA BROQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17283025504, + 48.4601655449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e867eb0de35ff5496e4b1c42700f96b827cca7e5", + "fields": { + "code_commune_insee": "68263", + "nom_de_la_commune": "RANSPACH LE BAS", + "code_postal": "68730", + "coordonnees_gps": [ + 47.5873905973, + 7.44587984681 + ], + "libelle_d_acheminement": "RANSPACH LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44587984681, + 47.5873905973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1aebcda2d24ed7c9d9a373182c595f60c2f2110", + "fields": { + "ligne_5": "LA CLAQUETTE", + "code_commune_insee": "67066", + "libelle_d_acheminement": "LA BROQUE", + "code_postal": "67570", + "nom_de_la_commune": "LA BROQUE", + "coordonnees_gps": [ + 48.4601655449, + 7.17283025504 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17283025504, + 48.4601655449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3515c4d764bbb16d0c15c0e6111904ec63c226f2", + "fields": { + "code_commune_insee": "68276", + "nom_de_la_commune": "RIMBACHZELL", + "code_postal": "68500", + "coordonnees_gps": [ + 47.8979516563, + 7.17356848558 + ], + "libelle_d_acheminement": "RIMBACHZELL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17356848558, + 47.8979516563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8aa3c0d61cb63e577c1b245dfc2fc6bd17e82978", + "fields": { + "code_commune_insee": "67071", + "nom_de_la_commune": "BUST", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8338084584, + 7.23455655316 + ], + "libelle_d_acheminement": "BUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23455655316, + 48.8338084584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7eaeb030eae9b0a7ea3959eaf501134269fe9c2", + "fields": { + "code_commune_insee": "68279", + "nom_de_la_commune": "RODEREN", + "code_postal": "68800", + "coordonnees_gps": [ + 47.7778631956, + 7.08771577439 + ], + "libelle_d_acheminement": "RODEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08771577439, + 47.7778631956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f96351726322b429c64401c80e85b76921f382ba", + "fields": { + "code_commune_insee": "67074", + "nom_de_la_commune": "CLEEBOURG", + "code_postal": "67160", + "coordonnees_gps": [ + 48.9953521897, + 7.88602873126 + ], + "libelle_d_acheminement": "CLEEBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.88602873126, + 48.9953521897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "364960ea12daa4cd81d9dd5d6dfcdfb297138ec5", + "fields": { + "code_commune_insee": "68296", + "nom_de_la_commune": "ST HIPPOLYTE", + "code_postal": "68590", + "coordonnees_gps": [ + 48.2386537498, + 7.34591217 + ], + "libelle_d_acheminement": "ST HIPPOLYTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34591217, + 48.2386537498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b782a32a0e6ff5fdf43cb00a34b97a016b2dde9a", + "fields": { + "code_commune_insee": "67080", + "nom_de_la_commune": "DACHSTEIN", + "code_postal": "67120", + "coordonnees_gps": [ + 48.553555897, + 7.54050377618 + ], + "libelle_d_acheminement": "DACHSTEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54050377618, + 48.553555897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acb1a5d0ffd147350f2f43e31b440c525d3934c8", + "fields": { + "code_commune_insee": "68297", + "nom_de_la_commune": "ST LOUIS", + "code_postal": "68300", + "coordonnees_gps": [ + 47.6016553367, + 7.54061872745 + ], + "libelle_d_acheminement": "ST LOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54061872745, + 47.6016553367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "158cd6793326d1a0d75b6aa8f672ccccd6e9e44a", + "fields": { + "code_commune_insee": "67083", + "nom_de_la_commune": "DAMBACH", + "code_postal": "67110", + "coordonnees_gps": [ + 49.0093806397, + 7.64091899107 + ], + "libelle_d_acheminement": "DAMBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64091899107, + 49.0093806397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "000bb4915317feac8a44e3390b01a0b29ed89441", + "fields": { + "code_commune_insee": "68298", + "nom_de_la_commune": "STE MARIE AUX MINES", + "code_postal": "68160", + "coordonnees_gps": [ + 48.2285762223, + 7.16926143657 + ], + "libelle_d_acheminement": "STE MARIE AUX MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16926143657, + 48.2285762223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0610a2355dbe11f180309b665eeed08db701547", + "fields": { + "code_commune_insee": "67086", + "nom_de_la_commune": "DAUBENSAND", + "code_postal": "67150", + "coordonnees_gps": [ + 48.3518354847, + 7.72863456174 + ], + "libelle_d_acheminement": "DAUBENSAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72863456174, + 48.3518354847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d83caede20cf4df430bb478714d894e0c75fe935", + "fields": { + "code_commune_insee": "68300", + "nom_de_la_commune": "SAUSHEIM", + "code_postal": "68390", + "coordonnees_gps": [ + 47.7824980107, + 7.40065794746 + ], + "libelle_d_acheminement": "SAUSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40065794746, + 47.7824980107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07b048007af336b40aba42e43b499affc9f10f35", + "fields": { + "code_commune_insee": "67090", + "nom_de_la_commune": "DIEBOLSHEIM", + "code_postal": "67230", + "coordonnees_gps": [ + 48.2855918549, + 7.6576330222 + ], + "libelle_d_acheminement": "DIEBOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6576330222, + 48.2855918549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f6afca0883b6fda6c9728e41edb6461a7d0c4ad", + "fields": { + "code_commune_insee": "68304", + "nom_de_la_commune": "SENTHEIM", + "code_postal": "68780", + "coordonnees_gps": [ + 47.7544037886, + 7.05013965143 + ], + "libelle_d_acheminement": "SENTHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05013965143, + 47.7544037886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a39f4632e686a8997816ca29deb8469a2c3e3699", + "fields": { + "code_commune_insee": "67091", + "nom_de_la_commune": "DIEDENDORF", + "code_postal": "67260", + "coordonnees_gps": [ + 48.887700346, + 7.02814105959 + ], + "libelle_d_acheminement": "DIEDENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02814105959, + 48.887700346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "391ad16e1bd356b6a4a268b7e1908dc7ffa31393", + "fields": { + "code_commune_insee": "68307", + "nom_de_la_commune": "SEWEN", + "code_postal": "68290", + "coordonnees_gps": [ + 47.8075577891, + 6.88027043152 + ], + "libelle_d_acheminement": "SEWEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88027043152, + 47.8075577891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaba64418767fd90be3cfd3dab4118b81662aa7a", + "fields": { + "code_commune_insee": "67100", + "nom_de_la_commune": "DONNENHEIM", + "code_postal": "67170", + "coordonnees_gps": [ + 48.7219425024, + 7.66278189146 + ], + "libelle_d_acheminement": "DONNENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.66278189146, + 48.7219425024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e564636e32cd1a0c94ac3ffda8c5e60d5001866", + "fields": { + "code_commune_insee": "68309", + "nom_de_la_commune": "SIERENTZ", + "code_postal": "68510", + "coordonnees_gps": [ + 47.6620198901, + 7.46670295254 + ], + "libelle_d_acheminement": "SIERENTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46670295254, + 47.6620198901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "647185ca3533fb2c68790fbdc68b4fbd5e5de27e", + "fields": { + "code_commune_insee": "67103", + "nom_de_la_commune": "DOSSENHEIM SUR ZINSEL", + "code_postal": "67330", + "coordonnees_gps": [ + 48.814142481, + 7.37763215457 + ], + "libelle_d_acheminement": "DOSSENHEIM SUR ZINSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37763215457, + 48.814142481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d5f8a6e35730421af3fcb8fbfaeb1d8b3969c14", + "fields": { + "code_commune_insee": "68311", + "nom_de_la_commune": "SONDERNACH", + "code_postal": "68380", + "coordonnees_gps": [ + 47.9778345263, + 7.07407441215 + ], + "libelle_d_acheminement": "SONDERNACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07407441215, + 47.9778345263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dabb1b3fb103646c1e628967bcf0dad7abc975f1", + "fields": { + "ligne_5": "BIRLENBACH", + "code_commune_insee": "67104", + "libelle_d_acheminement": "DRACHENBRONN BIRLENBACH", + "code_postal": "67160", + "nom_de_la_commune": "DRACHENBRONN BIRLENBACH", + "coordonnees_gps": [ + 48.9809878964, + 7.87807854084 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.87807854084, + 48.9809878964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10d609e9e0e729e234fbb8f8676424235d1a1edc", + "fields": { + "ligne_5": "WINTZFELDEN", + "code_commune_insee": "68318", + "libelle_d_acheminement": "SOULTZMATT", + "code_postal": "68570", + "nom_de_la_commune": "SOULTZMATT", + "coordonnees_gps": [ + 47.9701032152, + 7.21175482373 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21175482373, + 47.9701032152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58100c72ee0cdd5d76d89333c7a59cfcecb248fc", + "fields": { + "code_commune_insee": "67109", + "nom_de_la_commune": "DURNINGEN", + "code_postal": "67270", + "coordonnees_gps": [ + 48.6849651267, + 7.5618284818 + ], + "libelle_d_acheminement": "DURNINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5618284818, + 48.6849651267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a335199573423ea8e542a20e678ef312d9693c3", + "fields": { + "ligne_5": "SPECHBACH LE BAS", + "code_commune_insee": "68320", + "libelle_d_acheminement": "SPECHBACH", + "code_postal": "68720", + "nom_de_la_commune": "SPECHBACH", + "coordonnees_gps": [ + 47.6858659395, + 7.21898279499 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21898279499, + 47.6858659395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed880b3cf4f7024f7914547b7b2f19da2b091259", + "fields": { + "code_commune_insee": "67113", + "nom_de_la_commune": "EBERBACH SELTZ", + "code_postal": "67470", + "coordonnees_gps": [ + 48.928540065, + 8.0666092873 + ], + "libelle_d_acheminement": "EBERBACH SELTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0666092873, + 48.928540065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bfc7125333e450ac03b0c88d523dd9501920639", + "fields": { + "code_commune_insee": "68325", + "nom_de_la_commune": "STEINSOULTZ", + "code_postal": "68640", + "coordonnees_gps": [ + 47.5583266561, + 7.34658107092 + ], + "libelle_d_acheminement": "STEINSOULTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34658107092, + 47.5583266561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64cb278240e0f0b4808f0fcbaa29c9ad314c8a54", + "fields": { + "code_commune_insee": "67116", + "nom_de_la_commune": "EBERSMUNSTER", + "code_postal": "67600", + "coordonnees_gps": [ + 48.3033027968, + 7.53361664193 + ], + "libelle_d_acheminement": "EBERSMUNSTER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53361664193, + 48.3033027968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd686b0ebaaf09ef197e6406591edc64e98059bd", + "fields": { + "code_commune_insee": "68328", + "nom_de_la_commune": "STORCKENSOHN", + "code_postal": "68470", + "coordonnees_gps": [ + 47.8640611767, + 6.94243466248 + ], + "libelle_d_acheminement": "STORCKENSOHN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94243466248, + 47.8640611767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a34501a4f42299a5835d54a84fab2b79d0bb8cd", + "fields": { + "code_commune_insee": "67124", + "nom_de_la_commune": "ENTZHEIM", + "code_postal": "67960", + "coordonnees_gps": [ + 48.5358846915, + 7.63324537487 + ], + "libelle_d_acheminement": "ENTZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63324537487, + 48.5358846915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96998ee4872323d6bb9e474c5d2297e4d4ab47e8", + "fields": { + "code_commune_insee": "68331", + "nom_de_la_commune": "SUNDHOFFEN", + "code_postal": "68280", + "coordonnees_gps": [ + 48.0428411663, + 7.42194556181 + ], + "libelle_d_acheminement": "SUNDHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42194556181, + 48.0428411663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6da01ea7510e2015aee5638af87324320285c255", + "fields": { + "code_commune_insee": "67127", + "nom_de_la_commune": "ERGERSHEIM", + "code_postal": "67120", + "coordonnees_gps": [ + 48.5755353252, + 7.53497410967 + ], + "libelle_d_acheminement": "ERGERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53497410967, + 48.5755353252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49a7d9ffcc6ce882bcaf3f09c657f69ec48a866d", + "fields": { + "code_commune_insee": "68332", + "nom_de_la_commune": "TAGOLSHEIM", + "code_postal": "68720", + "coordonnees_gps": [ + 47.6548634844, + 7.26381080113 + ], + "libelle_d_acheminement": "TAGOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26381080113, + 47.6548634844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eff100f279b01aac2f8eedd53a20b6122539418", + "fields": { + "code_commune_insee": "67130", + "nom_de_la_commune": "ERSTEIN", + "code_postal": "67150", + "coordonnees_gps": [ + 48.4213687934, + 7.68523629922 + ], + "libelle_d_acheminement": "ERSTEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68523629922, + 48.4213687934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af456c220ddc4a8eddf46583e98d5b17111ac749", + "fields": { + "ligne_5": "KRAFFT", + "code_commune_insee": "67130", + "libelle_d_acheminement": "ERSTEIN", + "code_postal": "67150", + "nom_de_la_commune": "ERSTEIN", + "coordonnees_gps": [ + 48.4213687934, + 7.68523629922 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68523629922, + 48.4213687934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63a7a558303e1991db2d6f6f27ff16e1362b3161", + "fields": { + "code_commune_insee": "67138", + "nom_de_la_commune": "FESSENHEIM LE BAS", + "code_postal": "67117", + "coordonnees_gps": [ + 48.6322069438, + 7.54708136376 + ], + "libelle_d_acheminement": "FESSENHEIM LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54708136376, + 48.6322069438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8800165d12b38b4ca30020eb4886b15daf4d50e3", + "fields": { + "code_commune_insee": "67139", + "nom_de_la_commune": "FLEXBOURG", + "code_postal": "67310", + "coordonnees_gps": [ + 48.5682741101, + 7.424259657 + ], + "libelle_d_acheminement": "FLEXBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.424259657, + 48.5682741101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2fc66d9dafaa8636604c70ae2f28a4cc1e1f9e4", + "fields": { + "code_commune_insee": "67148", + "nom_de_la_commune": "FROHMUHL", + "code_postal": "67290", + "coordonnees_gps": [ + 48.9113095227, + 7.27923351719 + ], + "libelle_d_acheminement": "FROHMUHL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27923351719, + 48.9113095227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46b49fa41f2aff26d1f3d9743631f92e5ed92b33", + "fields": { + "code_commune_insee": "67151", + "nom_de_la_commune": "GAMBSHEIM", + "code_postal": "67760", + "coordonnees_gps": [ + 48.6923110768, + 7.8840878201 + ], + "libelle_d_acheminement": "GAMBSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8840878201, + 48.6923110768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f42621c4cb2769b0cd6865ce0aabe1a4c9230f70", + "fields": { + "ligne_5": "MITSCHDORF", + "code_commune_insee": "67160", + "libelle_d_acheminement": "GOERSDORF", + "code_postal": "67360", + "nom_de_la_commune": "GOERSDORF", + "coordonnees_gps": [ + 48.9590667268, + 7.77360094456 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77360094456, + 48.9590667268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abcb78060b7d656708096a5cd5370c6d9ca66822", + "fields": { + "code_commune_insee": "67164", + "nom_de_la_commune": "GOXWILLER", + "code_postal": "67210", + "coordonnees_gps": [ + 48.4309239256, + 7.48344951435 + ], + "libelle_d_acheminement": "GOXWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48344951435, + 48.4309239256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6781b6daeb55f67b794d47caf25548280ffea1d4", + "fields": { + "code_commune_insee": "67172", + "nom_de_la_commune": "GRIESHEIM PRES MOLSHEIM", + "code_postal": "67870", + "coordonnees_gps": [ + 48.5020356636, + 7.53113191824 + ], + "libelle_d_acheminement": "GRIESHEIM PRES MOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53113191824, + 48.5020356636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14d6535966a7612e01f6b42afd5144dfbc7e2bb9", + "fields": { + "code_commune_insee": "67173", + "nom_de_la_commune": "GRIESHEIM SUR SOUFFEL", + "code_postal": "67370", + "coordonnees_gps": [ + 48.6334125597, + 7.6733957235 + ], + "libelle_d_acheminement": "GRIESHEIM SUR SOUFFEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6733957235, + 48.6334125597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7755fe27f670a55981e0937269c3d0252d4e6e93", + "fields": { + "code_commune_insee": "67180", + "nom_de_la_commune": "HAGUENAU", + "code_postal": "67500", + "coordonnees_gps": [ + 48.8417047695, + 7.83010404968 + ], + "libelle_d_acheminement": "HAGUENAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.83010404968, + 48.8417047695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "633b7fd723aeb37911f090091b09c52b422d2012", + "fields": { + "code_commune_insee": "67181", + "nom_de_la_commune": "HANDSCHUHEIM", + "code_postal": "67117", + "coordonnees_gps": [ + 48.5993989361, + 7.57721727962 + ], + "libelle_d_acheminement": "HANDSCHUHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57721727962, + 48.5993989361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "070ebe20cc440aedcf259648177d3030613df243", + "fields": { + "code_commune_insee": "67191", + "nom_de_la_commune": "HERBITZHEIM", + "code_postal": "67260", + "coordonnees_gps": [ + 49.0221359155, + 7.08178967712 + ], + "libelle_d_acheminement": "HERBITZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08178967712, + 49.0221359155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0d19f5cd11eb242941b28af1400f06ebd1a5dc8", + "fields": { + "code_commune_insee": "67198", + "nom_de_la_commune": "HINSBOURG", + "code_postal": "67290", + "coordonnees_gps": [ + 48.902016302, + 7.29622114102 + ], + "libelle_d_acheminement": "HINSBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29622114102, + 48.902016302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fecaf8b1a1d2c32c7f9761bfcd605120b8076767", + "fields": { + "code_commune_insee": "67201", + "nom_de_la_commune": "HIRSCHLAND", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8360079859, + 7.12394256542 + ], + "libelle_d_acheminement": "HIRSCHLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12394256542, + 48.8360079859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdbc2b1ff28bda00952772117ee13092ccf7c65f", + "fields": { + "ligne_5": "HERMERSWILLER", + "code_commune_insee": "67206", + "libelle_d_acheminement": "HOFFEN", + "code_postal": "67250", + "nom_de_la_commune": "HOFFEN", + "coordonnees_gps": [ + 48.9330135449, + 7.93276702942 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93276702942, + 48.9330135449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd43115227897ad6000efd36c2f79d07797db189", + "fields": { + "code_commune_insee": "67214", + "nom_de_la_commune": "HURTIGHEIM", + "code_postal": "67117", + "coordonnees_gps": [ + 48.6171752515, + 7.6034009548 + ], + "libelle_d_acheminement": "HURTIGHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6034009548, + 48.6171752515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc5e2da6bcb18f0ce80235acda19794be0983d08", + "fields": { + "code_commune_insee": "67215", + "nom_de_la_commune": "HUTTENDORF", + "code_postal": "67270", + "coordonnees_gps": [ + 48.801101142, + 7.63868407812 + ], + "libelle_d_acheminement": "HUTTENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63868407812, + 48.801101142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88d47edd859b6575a26a26f3ca16cd050960de75", + "fields": { + "code_commune_insee": "67231", + "nom_de_la_commune": "KAUFFENHEIM", + "code_postal": "67480", + "coordonnees_gps": [ + 48.854005833, + 8.03199767746 + ], + "libelle_d_acheminement": "KAUFFENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.03199767746, + 48.854005833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9323570e7d325d348cbb9cecb62b12740db1554", + "fields": { + "code_commune_insee": "67234", + "nom_de_la_commune": "KESKASTEL", + "code_postal": "67260", + "coordonnees_gps": [ + 48.9764095589, + 7.062926056 + ], + "libelle_d_acheminement": "KESKASTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.062926056, + 48.9764095589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aefb199d3e0286cfb6c26a1a239fd9c6b12c2006", + "fields": { + "code_commune_insee": "67241", + "nom_de_la_commune": "KIRRBERG", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8301802352, + 7.06430672642 + ], + "libelle_d_acheminement": "KIRRBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06430672642, + 48.8301802352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ed27aeaa2e739a3da72e07b6d25168ec60b66dd", + "fields": { + "code_commune_insee": "67242", + "nom_de_la_commune": "KIRRWILLER", + "code_postal": "67330", + "coordonnees_gps": [ + 48.8202222605, + 7.52643377824 + ], + "libelle_d_acheminement": "KIRRWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52643377824, + 48.8202222605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d9f66687c284cb7ee62adcc17969fdbb0644cf4", + "fields": { + "code_commune_insee": "67249", + "nom_de_la_commune": "KRAUTWILLER", + "code_postal": "67170", + "coordonnees_gps": [ + 48.739166546, + 7.67482992477 + ], + "libelle_d_acheminement": "KRAUTWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67482992477, + 48.739166546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "110d7557d4ff18562b3ed76c9ac9625976d2b42c", + "fields": { + "code_commune_insee": "67256", + "nom_de_la_commune": "LAMPERTHEIM", + "code_postal": "67450", + "coordonnees_gps": [ + 48.6551039655, + 7.69405052062 + ], + "libelle_d_acheminement": "LAMPERTHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69405052062, + 48.6551039655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "916f2d0973ca9b9c5f1acfef6c40d6fd0eadaca5", + "fields": { + "code_commune_insee": "67267", + "nom_de_la_commune": "LINGOLSHEIM", + "code_postal": "67380", + "coordonnees_gps": [ + 48.5544875852, + 7.68093840708 + ], + "libelle_d_acheminement": "LINGOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68093840708, + 48.5544875852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2d072b9a443212102e1fd9f0faf33ca75859f8d", + "fields": { + "code_commune_insee": "67274", + "nom_de_la_commune": "LORENTZEN", + "code_postal": "67430", + "coordonnees_gps": [ + 48.9570762629, + 7.18176816001 + ], + "libelle_d_acheminement": "LORENTZEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18176816001, + 48.9570762629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35215e6300fb76b73760a73c1f42b9cf31c5925e", + "fields": { + "code_commune_insee": "67275", + "nom_de_la_commune": "LUPSTEIN", + "code_postal": "67490", + "coordonnees_gps": [ + 48.7379650718, + 7.47592816068 + ], + "libelle_d_acheminement": "LUPSTEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47592816068, + 48.7379650718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37ac19d601a0308ca5225e433b26dc6c453d9002", + "fields": { + "code_commune_insee": "67276", + "nom_de_la_commune": "LUTZELHOUSE", + "code_postal": "67130", + "coordonnees_gps": [ + 48.5376842701, + 7.24174255302 + ], + "libelle_d_acheminement": "LUTZELHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24174255302, + 48.5376842701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5c2e7552762c43860e113d6d2d48081f8046010", + "fields": { + "code_commune_insee": "67291", + "nom_de_la_commune": "MERTZWILLER", + "code_postal": "67580", + "coordonnees_gps": [ + 48.8703439948, + 7.68546930616 + ], + "libelle_d_acheminement": "MERTZWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68546930616, + 48.8703439948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c04be0f466c295d705c08aaa97dd9564053b28b5", + "fields": { + "ligne_5": "EHNWIHR", + "code_commune_insee": "67311", + "libelle_d_acheminement": "MUTTERSHOLTZ", + "code_postal": "67600", + "nom_de_la_commune": "MUTTERSHOLTZ", + "coordonnees_gps": [ + 48.2687190251, + 7.53306592763 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53306592763, + 48.2687190251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "247585a0985fc1c9b3b51ce7019de2ba993783b1", + "fields": { + "code_commune_insee": "67314", + "nom_de_la_commune": "NATZWILLER", + "code_postal": "67130", + "coordonnees_gps": [ + 48.4477521389, + 7.25122799667 + ], + "libelle_d_acheminement": "NATZWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25122799667, + 48.4477521389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d9c61a5943f0503e0356f801bcebd603f9adc30", + "fields": { + "code_commune_insee": "67317", + "nom_de_la_commune": "NEUBOIS", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3028817341, + 7.3176285572 + ], + "libelle_d_acheminement": "NEUBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3176285572, + 48.3028817341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f80e7198abe8c4215288f367a0027aea03b702e5", + "fields": { + "code_commune_insee": "67331", + "nom_de_la_commune": "NIEDERSCHAEFFOLSHEIM", + "code_postal": "67500", + "coordonnees_gps": [ + 48.7725031726, + 7.74386109493 + ], + "libelle_d_acheminement": "NIEDERSCHAEFFOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74386109493, + 48.7725031726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e01515ed5422cb4f93400476805146ac74a174db", + "fields": { + "code_commune_insee": "67339", + "nom_de_la_commune": "BETSCHDORF", + "code_postal": "67660", + "coordonnees_gps": [ + 48.893487303, + 7.92255309446 + ], + "libelle_d_acheminement": "BETSCHDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.92255309446, + 48.893487303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a343cc9cf295b67f416fc42b90b1f1cda7e65f0", + "fields": { + "code_commune_insee": "67346", + "nom_de_la_commune": "OBERLAUTERBACH", + "code_postal": "67160", + "coordonnees_gps": [ + 48.9448114402, + 8.06578726125 + ], + "libelle_d_acheminement": "OBERLAUTERBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.06578726125, + 48.9448114402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cb69ff7417ccb50694b856044671b8dc06e93da", + "fields": { + "code_commune_insee": "67353", + "nom_de_la_commune": "OBERSTEINBACH", + "code_postal": "67510", + "coordonnees_gps": [ + 49.0379940706, + 7.67309796819 + ], + "libelle_d_acheminement": "OBERSTEINBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67309796819, + 49.0379940706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16658577e82abf4c8be30cdba64623e63867f80e", + "fields": { + "code_commune_insee": "67358", + "nom_de_la_commune": "OFFWILLER", + "code_postal": "67340", + "coordonnees_gps": [ + 48.917321847, + 7.5423120492 + ], + "libelle_d_acheminement": "OFFWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5423120492, + 48.917321847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0e2db3ff960cf21361003e6e0a731b7cf80b626", + "fields": { + "code_commune_insee": "67367", + "nom_de_la_commune": "OTTERSWILLER", + "code_postal": "67700", + "coordonnees_gps": [ + 48.7226898525, + 7.37894754782 + ], + "libelle_d_acheminement": "OTTERSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37894754782, + 48.7226898525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "562e909fb9fc95aea07d143128b1c428742c63dd", + "fields": { + "code_commune_insee": "67370", + "nom_de_la_commune": "PETERSBACH", + "code_postal": "67290", + "coordonnees_gps": [ + 48.8771297882, + 7.27203976424 + ], + "libelle_d_acheminement": "PETERSBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27203976424, + 48.8771297882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "363f741f7e83ac4ea2a4de562a4c629cb9a5c358", + "fields": { + "ligne_5": "PFAFFENHOFFEN", + "code_commune_insee": "67372", + "libelle_d_acheminement": "VAL DE MODER", + "code_postal": "67350", + "nom_de_la_commune": "VAL DE MODER", + "coordonnees_gps": [ + 48.8432047964, + 7.59893121728 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59893121728, + 48.8432047964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bbdc882f79b66a95da553098690210752650993", + "fields": { + "code_commune_insee": "67384", + "nom_de_la_commune": "RANRUPT", + "code_postal": "67420", + "coordonnees_gps": [ + 48.3735594187, + 7.19531631799 + ], + "libelle_d_acheminement": "RANRUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19531631799, + 48.3735594187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdd2ba178a6edace52f752d27220634e231ba906", + "fields": { + "code_commune_insee": "67386", + "nom_de_la_commune": "RAUWILLER", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8098418508, + 7.11166295825 + ], + "libelle_d_acheminement": "RAUWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11166295825, + 48.8098418508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf5bafa7689e8927706c925836a3320f9fb1effc", + "fields": { + "code_commune_insee": "67392", + "nom_de_la_commune": "REIPERTSWILLER", + "code_postal": "67340", + "coordonnees_gps": [ + 48.9475831775, + 7.44744692113 + ], + "libelle_d_acheminement": "REIPERTSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44744692113, + 48.9475831775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "854077414744989db519732c7f1ae5da95016655", + "fields": { + "code_commune_insee": "67394", + "nom_de_la_commune": "RETSCHWILLER", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9509410927, + 7.8859650468 + ], + "libelle_d_acheminement": "RETSCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8859650468, + 48.9509410927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e0fd62c9b01dda86b2e712c41212fbd0f3df4fd", + "fields": { + "code_commune_insee": "67400", + "nom_de_la_commune": "RIEDSELTZ", + "code_postal": "67160", + "coordonnees_gps": [ + 48.9891485983, + 7.94873374892 + ], + "libelle_d_acheminement": "RIEDSELTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.94873374892, + 48.9891485983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfd0d1580bab1d339c8bc677e2d980eac6f52d4e", + "fields": { + "code_commune_insee": "67414", + "nom_de_la_commune": "ROTHAU", + "code_postal": "67570", + "coordonnees_gps": [ + 48.447644633, + 7.2070541855 + ], + "libelle_d_acheminement": "ROTHAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2070541855, + 48.447644633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d0dacdf92defd2008cd7c6953a6c9ee52b32b1c", + "fields": { + "ligne_5": "AUENHEIM", + "code_commune_insee": "67418", + "libelle_d_acheminement": "ROUNTZENHEIM AUENHEIM", + "code_postal": "67480", + "nom_de_la_commune": "ROUNTZENHEIM AUENHEIM", + "coordonnees_gps": [ + 48.8214167109, + 7.99834154891 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.99834154891, + 48.8214167109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18a9d799b273e0ee071483a5e62b7ac8051aedad", + "fields": { + "code_commune_insee": "67422", + "nom_de_la_commune": "SAASENHEIM", + "code_postal": "67390", + "coordonnees_gps": [ + 48.239955028, + 7.62929125209 + ], + "libelle_d_acheminement": "SAASENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62929125209, + 48.239955028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f234bf7f11c1ae56579104591ff74d7869b0a6ef", + "fields": { + "code_commune_insee": "67426", + "nom_de_la_commune": "ST MARTIN", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3498144162, + 7.28574653524 + ], + "libelle_d_acheminement": "ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28574653524, + 48.3498144162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c67ee3aa5a36003c872aa58d68c4f1eccd223685", + "fields": { + "code_commune_insee": "67427", + "nom_de_la_commune": "ST MAURICE", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3329201616, + 7.33527285146 + ], + "libelle_d_acheminement": "ST MAURICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33527285146, + 48.3329201616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26d8c0503da0f8abd0a9dda0e944450093c79b73", + "fields": { + "code_commune_insee": "67428", + "nom_de_la_commune": "ST NABOR", + "code_postal": "67530", + "coordonnees_gps": [ + 48.4414538675, + 7.41761781742 + ], + "libelle_d_acheminement": "ST NABOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41761781742, + 48.4414538675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7949557d1b2767adb8826c4c8009c7a028ebc44", + "fields": { + "code_commune_insee": "67429", + "nom_de_la_commune": "ST PIERRE", + "code_postal": "67140", + "coordonnees_gps": [ + 48.3845643843, + 7.46512483546 + ], + "libelle_d_acheminement": "ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46512483546, + 48.3845643843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d62daa64749d81ac2a41ff7686b35b6e7414063e", + "fields": { + "code_commune_insee": "67433", + "nom_de_la_commune": "SAND", + "code_postal": "67230", + "coordonnees_gps": [ + 48.3775481773, + 7.61937437402 + ], + "libelle_d_acheminement": "SAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61937437402, + 48.3775481773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28e9b28b33f6f9bf25fd226ba63610aee0723c08", + "fields": { + "code_commune_insee": "67436", + "nom_de_la_commune": "SAULXURES", + "code_postal": "67420", + "coordonnees_gps": [ + 48.3924491684, + 7.1235892563 + ], + "libelle_d_acheminement": "SAULXURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1235892563, + 48.3924491684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bfcf22fbe3477b856e021eabff261a3a1c1924b", + "fields": { + "code_commune_insee": "67437", + "nom_de_la_commune": "SAVERNE", + "code_postal": "67700", + "coordonnees_gps": [ + 48.7402250066, + 7.34206238199 + ], + "libelle_d_acheminement": "SAVERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34206238199, + 48.7402250066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7571c46258e6630ab7e14132ef0c12243ab6e579", + "fields": { + "code_commune_insee": "67442", + "nom_de_la_commune": "SCHARRACHBERGHEIM IRMSTETT", + "code_postal": "67310", + "coordonnees_gps": [ + 48.5896337884, + 7.4902817682 + ], + "libelle_d_acheminement": "SCHARRACHBERGHEIM IRMSTETT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4902817682, + 48.5896337884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47af5ca32dafeff7555678a77fd52686ef0f1557", + "fields": { + "code_commune_insee": "67443", + "nom_de_la_commune": "SCHEIBENHARD", + "code_postal": "67630", + "coordonnees_gps": [ + 48.9694902772, + 8.14441884715 + ], + "libelle_d_acheminement": "SCHEIBENHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.14441884715, + 48.9694902772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5c1da9768218e70ddddff58d5e68deb5de503e7", + "fields": { + "code_commune_insee": "67447", + "nom_de_la_commune": "SCHILTIGHEIM", + "code_postal": "67300", + "coordonnees_gps": [ + 48.6118660258, + 7.74408199334 + ], + "libelle_d_acheminement": "SCHILTIGHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74408199334, + 48.6118660258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "880f5188c6aba8fc62c68aaab213889923061c63", + "fields": { + "code_commune_insee": "67459", + "nom_de_la_commune": "SCHWENHEIM", + "code_postal": "67440", + "coordonnees_gps": [ + 48.7149255569, + 7.41004083904 + ], + "libelle_d_acheminement": "SCHWENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41004083904, + 48.7149255569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08725d7747e7742c35f718e972caf9bd7a479393", + "fields": { + "code_commune_insee": "67460", + "nom_de_la_commune": "SCHWINDRATZHEIM", + "code_postal": "67270", + "coordonnees_gps": [ + 48.765401982, + 7.60282147839 + ], + "libelle_d_acheminement": "SCHWINDRATZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60282147839, + 48.765401982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9942ea396cce008d600246b2a171ca15cebdd9f", + "fields": { + "code_commune_insee": "67461", + "nom_de_la_commune": "SCHWOBSHEIM", + "code_postal": "67390", + "coordonnees_gps": [ + 48.2365028477, + 7.57432904061 + ], + "libelle_d_acheminement": "SCHWOBSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57432904061, + 48.2365028477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "319c081ae05e5ac444c2509b30aafb5920adc49a", + "fields": { + "code_commune_insee": "67465", + "nom_de_la_commune": "SESSENHEIM", + "code_postal": "67770", + "coordonnees_gps": [ + 48.7952349211, + 7.98061145834 + ], + "libelle_d_acheminement": "SESSENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.98061145834, + 48.7952349211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75e0d06f79a0deefb10465cd38f838ca60bb42d4", + "fields": { + "code_commune_insee": "67481", + "nom_de_la_commune": "STOTZHEIM", + "code_postal": "67140", + "coordonnees_gps": [ + 48.3757768768, + 7.50674742372 + ], + "libelle_d_acheminement": "STOTZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50674742372, + 48.3757768768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2538bf88123c17b10fd655d86f153d032b605d0", + "fields": { + "code_commune_insee": "68340", + "nom_de_la_commune": "UEBERSTRASS", + "code_postal": "68580", + "coordonnees_gps": [ + 47.5461126358, + 7.15301367289 + ], + "libelle_d_acheminement": "UEBERSTRASS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15301367289, + 47.5461126358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9807fe55291377d52a494ea254752fc57aab6657", + "fields": { + "code_commune_insee": "67482", + "nom_de_la_commune": "STRASBOURG", + "code_postal": "67100", + "coordonnees_gps": [ + 48.5712679849, + 7.76752679517 + ], + "libelle_d_acheminement": "STRASBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76752679517, + 48.5712679849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4158b466eebb78a672b7863b8d1242301e1020d8", + "fields": { + "code_commune_insee": "68345", + "nom_de_la_commune": "URSCHENHEIM", + "code_postal": "68320", + "coordonnees_gps": [ + 48.0805859963, + 7.49120640493 + ], + "libelle_d_acheminement": "URSCHENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49120640493, + 48.0805859963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e92d0edeb5f1d46a27bbba07e6d3f32f44c1e40", + "fields": { + "code_commune_insee": "67486", + "nom_de_la_commune": "SUNDHOUSE", + "code_postal": "67920", + "coordonnees_gps": [ + 48.2550723499, + 7.63031906582 + ], + "libelle_d_acheminement": "SUNDHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63031906582, + 48.2550723499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ac70fbf5f3b98e2a5124d652ea00a4a4f6283d9", + "fields": { + "code_commune_insee": "68348", + "nom_de_la_commune": "VIEUX THANN", + "code_postal": "68800", + "coordonnees_gps": [ + 47.8045241371, + 7.12730997069 + ], + "libelle_d_acheminement": "VIEUX THANN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12730997069, + 47.8045241371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e05be12e822424c5514076bb4b5e1bd9b2dc6d01", + "fields": { + "ligne_5": "SCHWEBWILLER", + "code_commune_insee": "67489", + "libelle_d_acheminement": "THAL MARMOUTIER", + "code_postal": "67440", + "nom_de_la_commune": "THAL MARMOUTIER", + "coordonnees_gps": [ + 48.6960773859, + 7.34056735881 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34056735881, + 48.6960773859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9545da4057f8d7ba49bf603326955d1919b37a3f", + "fields": { + "code_commune_insee": "68349", + "nom_de_la_commune": "VILLAGE NEUF", + "code_postal": "68128", + "coordonnees_gps": [ + 47.6099200713, + 7.56836021504 + ], + "libelle_d_acheminement": "VILLAGE NEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56836021504, + 47.6099200713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9864993074d9d74ed0c008f6dbcc4440c4d0bd1d", + "fields": { + "ligne_5": "BEHLENHEIM", + "code_commune_insee": "67495", + "libelle_d_acheminement": "TRUCHTERSHEIM", + "code_postal": "67370", + "nom_de_la_commune": "TRUCHTERSHEIM", + "coordonnees_gps": [ + 48.6564842295, + 7.61650465885 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61650465885, + 48.6564842295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2be3ba9f29e1c2f245d5e82aa5f91f49f70268e", + "fields": { + "code_commune_insee": "68361", + "nom_de_la_commune": "WEGSCHEID", + "code_postal": "68290", + "coordonnees_gps": [ + 47.8152049638, + 6.97607709071 + ], + "libelle_d_acheminement": "WEGSCHEID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97607709071, + 47.8152049638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b74a3d1a6227311a2f285c7c0a5d71ce9feb1159", + "fields": { + "code_commune_insee": "67510", + "nom_de_la_commune": "WAHLENHEIM", + "code_postal": "67170", + "coordonnees_gps": [ + 48.7659087091, + 7.68693403664 + ], + "libelle_d_acheminement": "WAHLENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68693403664, + 48.7659087091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd52152115716a10c74c6bbe148d8615762df591", + "fields": { + "code_commune_insee": "68372", + "nom_de_la_commune": "WILLER SUR THUR", + "code_postal": "68760", + "coordonnees_gps": [ + 47.8518062106, + 7.0803395975 + ], + "libelle_d_acheminement": "WILLER SUR THUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0803395975, + 47.8518062106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1beec6b238cb2a537cbab23407b05bfa5fce6b59", + "fields": { + "code_commune_insee": "67511", + "nom_de_la_commune": "WALBOURG", + "code_postal": "67360", + "coordonnees_gps": [ + 48.8857093075, + 7.78279699588 + ], + "libelle_d_acheminement": "WALBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78279699588, + 48.8857093075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91c37eafdaa441a67a99b9142415ac1dff15b49b", + "fields": { + "code_commune_insee": "68374", + "nom_de_la_commune": "WINTZENHEIM", + "code_postal": "68920", + "coordonnees_gps": [ + 48.0635575339, + 7.27168140769 + ], + "libelle_d_acheminement": "WINTZENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27168140769, + 48.0635575339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a5d56c6587b2b24c1cc9313fbbf1c599f771eb0", + "fields": { + "code_commune_insee": "69003", + "nom_de_la_commune": "ALBIGNY SUR SAONE", + "code_postal": "69250", + "coordonnees_gps": [ + 45.8642146878, + 4.83076882864 + ], + "libelle_d_acheminement": "ALBIGNY SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83076882864, + 45.8642146878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca46e0a326c0c14a3567eb69021c1bd33a56874", + "fields": { + "code_commune_insee": "67531", + "nom_de_la_commune": "WILDERSBACH", + "code_postal": "67130", + "coordonnees_gps": [ + 48.4358512521, + 7.22390399237 + ], + "libelle_d_acheminement": "WILDERSBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22390399237, + 48.4358512521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc80ff728aabae9b581d2592862d13def7574882", + "fields": { + "code_commune_insee": "69006", + "nom_de_la_commune": "AMPLEPUIS", + "code_postal": "69550", + "coordonnees_gps": [ + 45.9651984924, + 4.32676291669 + ], + "libelle_d_acheminement": "AMPLEPUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32676291669, + 45.9651984924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a3cc5b046b125402faa04139739a0dff70a7d31", + "fields": { + "code_commune_insee": "67534", + "nom_de_la_commune": "WILWISHEIM", + "code_postal": "67270", + "coordonnees_gps": [ + 48.753708765, + 7.49990047042 + ], + "libelle_d_acheminement": "WILWISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49990047042, + 48.753708765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f275504272d8f21ada16fcd84c14340eb164a02", + "fields": { + "code_commune_insee": "69007", + "nom_de_la_commune": "AMPUIS", + "code_postal": "69420", + "coordonnees_gps": [ + 45.503261775, + 4.8031868522 + ], + "libelle_d_acheminement": "AMPUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8031868522, + 45.503261775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b8ad0a270610f0c40ab731a6688b1e1f4e7bb06", + "fields": { + "ligne_5": "WINGERSHEIM", + "code_commune_insee": "67539", + "libelle_d_acheminement": "WINGERSHEIM LES QUATRE BANS", + "code_postal": "67170", + "nom_de_la_commune": "WINGERSHEIM LES QUATRE BANS", + "coordonnees_gps": [ + 48.7299632936, + 7.63820636503 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63820636503, + 48.7299632936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "474003ec78dc5423948166e8a79346ae232b16cd", + "fields": { + "code_commune_insee": "69010", + "nom_de_la_commune": "L ARBRESLE", + "code_postal": "69210", + "coordonnees_gps": [ + 45.8356663158, + 4.60937267063 + ], + "libelle_d_acheminement": "L ARBRESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60937267063, + 45.8356663158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f49ed9b7fcbcb3b5a146ce67f5107b96cad8dcb", + "fields": { + "ligne_5": "GINGSHEIM", + "code_commune_insee": "67539", + "libelle_d_acheminement": "WINGERSHEIM LES QUATRE BANS", + "code_postal": "67270", + "nom_de_la_commune": "WINGERSHEIM LES QUATRE BANS", + "coordonnees_gps": [ + 48.7299632936, + 7.63820636503 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63820636503, + 48.7299632936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2765c422a10cdd47cac2364b2d1fd352b3affb1e", + "fields": { + "code_commune_insee": "69013", + "nom_de_la_commune": "ARNAS", + "code_postal": "69400", + "coordonnees_gps": [ + 46.018642208, + 4.71055115549 + ], + "libelle_d_acheminement": "ARNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71055115549, + 46.018642208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a641d6e6c6e681564c85cdb2bd026437c249848", + "fields": { + "code_commune_insee": "69017", + "nom_de_la_commune": "BAGNOLS", + "code_postal": "69620", + "coordonnees_gps": [ + 45.9087285024, + 4.62016773133 + ], + "libelle_d_acheminement": "BAGNOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62016773133, + 45.9087285024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "391b5028659b66dd62b3cf781b537cfd869b627b", + "fields": { + "code_commune_insee": "69018", + "nom_de_la_commune": "BEAUJEU", + "code_postal": "69430", + "coordonnees_gps": [ + 46.1564039833, + 4.58394359167 + ], + "libelle_d_acheminement": "BEAUJEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58394359167, + 46.1564039833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "120405a32474d358864bd035fa4a5d8fc516b8d9", + "fields": { + "code_commune_insee": "67558", + "nom_de_la_commune": "ZINSWILLER", + "code_postal": "67110", + "coordonnees_gps": [ + 48.9161140099, + 7.58112323048 + ], + "libelle_d_acheminement": "ZINSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58112323048, + 48.9161140099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7d9f99c188e8ad15b668bb5273e643399bf2fcd", + "fields": { + "ligne_5": "LE MOLARD", + "code_commune_insee": "69018", + "libelle_d_acheminement": "BEAUJEU", + "code_postal": "69430", + "nom_de_la_commune": "BEAUJEU", + "coordonnees_gps": [ + 46.1564039833, + 4.58394359167 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58394359167, + 46.1564039833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1238480243348c2ae539eab4f4fb429901104bb", + "fields": { + "ligne_5": "LURCIEUX", + "code_commune_insee": "69021", + "libelle_d_acheminement": "BESSENAY", + "code_postal": "69690", + "nom_de_la_commune": "BESSENAY", + "coordonnees_gps": [ + 45.774361074, + 4.54738228306 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54738228306, + 45.774361074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1366d348f28b6b6cb67798e335e71edebd2f2c87", + "fields": { + "code_commune_insee": "68018", + "nom_de_la_commune": "BALSCHWILLER", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6733286773, + 7.16339567268 + ], + "libelle_d_acheminement": "BALSCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16339567268, + 47.6733286773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c780b7ce0e05ccddbe182270f193fb2e08f6259a", + "fields": { + "ligne_5": "POMERIEUX", + "code_commune_insee": "69021", + "libelle_d_acheminement": "BESSENAY", + "code_postal": "69690", + "nom_de_la_commune": "BESSENAY", + "coordonnees_gps": [ + 45.774361074, + 4.54738228306 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54738228306, + 45.774361074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c76a20a1805436724865aa5caea2a0923e31cb92", + "fields": { + "ligne_5": "UEBERKUMEN", + "code_commune_insee": "68018", + "libelle_d_acheminement": "BALSCHWILLER", + "code_postal": "68210", + "nom_de_la_commune": "BALSCHWILLER", + "coordonnees_gps": [ + 47.6733286773, + 7.16339567268 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16339567268, + 47.6733286773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a51e35141c682230b3606ef7e60f8014942150b4", + "fields": { + "code_commune_insee": "69022", + "nom_de_la_commune": "BIBOST", + "code_postal": "69690", + "coordonnees_gps": [ + 45.7969461911, + 4.54895137965 + ], + "libelle_d_acheminement": "BIBOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54895137965, + 45.7969461911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca70ab92df3abf5810a38bde64af395a42ce3977", + "fields": { + "ligne_5": "LE BOIS D OINGT", + "code_commune_insee": "69024", + "libelle_d_acheminement": "VAL D OINGT", + "code_postal": "69620", + "nom_de_la_commune": "VAL D OINGT", + "coordonnees_gps": [ + 45.9188737019, + 4.5787353944 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5787353944, + 45.9188737019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47013af3fbf1f51a441fa3103d56a5ea05dd0c99", + "fields": { + "code_commune_insee": "68050", + "nom_de_la_commune": "BRECHAUMONT", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6646087858, + 7.05590134955 + ], + "libelle_d_acheminement": "BRECHAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05590134955, + 47.6646087858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1afc5356f99abc3f210b2e1392565940722c677b", + "fields": { + "code_commune_insee": "69028", + "nom_de_la_commune": "BRINDAS", + "code_postal": "69126", + "coordonnees_gps": [ + 45.7203432265, + 4.70291458625 + ], + "libelle_d_acheminement": "BRINDAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70291458625, + 45.7203432265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41d1c25ccf755f430b08e3bc5936b4a5f673de33", + "fields": { + "code_commune_insee": "68057", + "nom_de_la_commune": "BUETHWILLER", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6601180217, + 7.13595818077 + ], + "libelle_d_acheminement": "BUETHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13595818077, + 47.6601180217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b369628e026180aef2cd4701c882f30236ae4957", + "fields": { + "code_commune_insee": "69032", + "nom_de_la_commune": "BULLY", + "code_postal": "69210", + "coordonnees_gps": [ + 45.8591183924, + 4.5810550945 + ], + "libelle_d_acheminement": "BULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5810550945, + 45.8591183924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cbab75c9714e7cc125e24a6af098ef5b8497a82", + "fields": { + "code_commune_insee": "68060", + "nom_de_la_commune": "BURNHAUPT LE HAUT", + "code_postal": "68520", + "coordonnees_gps": [ + 47.7343429793, + 7.12813648171 + ], + "libelle_d_acheminement": "BURNHAUPT LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12813648171, + 47.7343429793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1529acabb7cd505697cbd5dd0ee38040e0b0fb93", + "fields": { + "code_commune_insee": "69042", + "nom_de_la_commune": "LA CHAPELLE SUR COISE", + "code_postal": "69590", + "coordonnees_gps": [ + 45.6501998891, + 4.49605895981 + ], + "libelle_d_acheminement": "LA CHAPELLE SUR COISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49605895981, + 45.6501998891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0072c3d6369e299db79c6c710e1aa911367670dd", + "fields": { + "code_commune_insee": "68066", + "nom_de_la_commune": "COLMAR", + "code_postal": "68000", + "coordonnees_gps": [ + 48.1099405789, + 7.38468690323 + ], + "libelle_d_acheminement": "COLMAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38468690323, + 48.1099405789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24c5d51a8f4bf549b234ac2d90cee728aa781fb2", + "fields": { + "code_commune_insee": "69043", + "nom_de_la_commune": "CHAPONOST", + "code_postal": "69630", + "coordonnees_gps": [ + 45.7088623324, + 4.74547903701 + ], + "libelle_d_acheminement": "CHAPONOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74547903701, + 45.7088623324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebfa331366768dd3c3dfb57635e534bcc1913190", + "fields": { + "code_commune_insee": "68068", + "nom_de_la_commune": "DANNEMARIE", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6251404599, + 7.12181938903 + ], + "libelle_d_acheminement": "DANNEMARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12181938903, + 47.6251404599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6518f9b60afc04c7e0dbc37a7db755940e152651", + "fields": { + "code_commune_insee": "69050", + "nom_de_la_commune": "CHATILLON", + "code_postal": "69380", + "coordonnees_gps": [ + 45.8705575392, + 4.64214055868 + ], + "libelle_d_acheminement": "CHATILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64214055868, + 45.8705575392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6250ec6fd0ada2b76e04f3674b2c693a33686c12", + "fields": { + "code_commune_insee": "68073", + "nom_de_la_commune": "DOLLEREN", + "code_postal": "68290", + "coordonnees_gps": [ + 47.7961632915, + 6.91934613041 + ], + "libelle_d_acheminement": "DOLLEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91934613041, + 47.7961632915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04c2321d7d2acbe5f5032957a566a4fcffa6df7d", + "fields": { + "code_commune_insee": "69059", + "nom_de_la_commune": "CIVRIEUX D AZERGUES", + "code_postal": "69380", + "coordonnees_gps": [ + 45.854953276, + 4.71130995652 + ], + "libelle_d_acheminement": "CIVRIEUX D AZERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71130995652, + 45.854953276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40d866bd5f68154d41d8ab0f1e871bc3fbfd7496", + "fields": { + "code_commune_insee": "68096", + "nom_de_la_commune": "FRANKEN", + "code_postal": "68130", + "coordonnees_gps": [ + 47.5945824627, + 7.35367569573 + ], + "libelle_d_acheminement": "FRANKEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35367569573, + 47.5945824627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae6c9416b9d9df432e41164b34883a4d824f6dc6", + "fields": { + "ligne_5": "COURS LA VILLE", + "code_commune_insee": "69066", + "libelle_d_acheminement": "COURS", + "code_postal": "69470", + "nom_de_la_commune": "COURS", + "coordonnees_gps": [ + 46.1087135793, + 4.33699431774 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33699431774, + 46.1087135793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8430ace9f1b2dbd4e21959acbc67ac3d5b6de67e", + "fields": { + "code_commune_insee": "68098", + "nom_de_la_commune": "FRIESEN", + "code_postal": "68580", + "coordonnees_gps": [ + 47.5615367356, + 7.15172348131 + ], + "libelle_d_acheminement": "FRIESEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15172348131, + 47.5615367356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "599c88652b7046005ca65cfc9ea93eee75d6e34d", + "fields": { + "ligne_5": "PONT TRAMBOUZE", + "code_commune_insee": "69066", + "libelle_d_acheminement": "COURS", + "code_postal": "69470", + "nom_de_la_commune": "COURS", + "coordonnees_gps": [ + 46.1087135793, + 4.33699431774 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33699431774, + 46.1087135793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d99d7ce9b693575f5b396c7ea04401cdbc47d32", + "fields": { + "code_commune_insee": "68107", + "nom_de_la_commune": "GOMMERSDORF", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6413930168, + 7.13299368757 + ], + "libelle_d_acheminement": "GOMMERSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13299368757, + 47.6413930168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0974df527d6254a968f37fb66c08019db3aa308", + "fields": { + "ligne_5": "THEL", + "code_commune_insee": "69066", + "libelle_d_acheminement": "COURS", + "code_postal": "69470", + "nom_de_la_commune": "COURS", + "coordonnees_gps": [ + 46.1087135793, + 4.33699431774 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33699431774, + 46.1087135793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b3f7edb122dcd4347db794b7d583e6f5bb3eac4", + "fields": { + "code_commune_insee": "68109", + "nom_de_la_commune": "GRIESBACH AU VAL", + "code_postal": "68140", + "coordonnees_gps": [ + 48.0293037675, + 7.1719566301 + ], + "libelle_d_acheminement": "GRIESBACH AU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1719566301, + 48.0293037675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39eab9fcd16f18306062bc602dec606e39747168", + "fields": { + "code_commune_insee": "69080", + "nom_de_la_commune": "ECHALAS", + "code_postal": "69700", + "coordonnees_gps": [ + 45.5506779948, + 4.72996324702 + ], + "libelle_d_acheminement": "ECHALAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72996324702, + 45.5506779948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "018e819798c6ee887ded88c2e6a31f1da5d1208b", + "fields": { + "code_commune_insee": "69083", + "nom_de_la_commune": "EVEUX", + "code_postal": "69210", + "coordonnees_gps": [ + 45.8241099915, + 4.62228473387 + ], + "libelle_d_acheminement": "EVEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62228473387, + 45.8241099915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be179afcab1854b66ab2ceae43fd94dee2a263c9", + "fields": { + "code_commune_insee": "69084", + "nom_de_la_commune": "FLEURIE", + "code_postal": "69820", + "coordonnees_gps": [ + 46.195108023, + 4.69220963015 + ], + "libelle_d_acheminement": "FLEURIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69220963015, + 46.195108023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fc9f6993c0d819c4d15c01b9766e58f7a2c2192", + "fields": { + "code_commune_insee": "69085", + "nom_de_la_commune": "FLEURIEU SUR SAONE", + "code_postal": "69250", + "coordonnees_gps": [ + 45.8589780699, + 4.85032398358 + ], + "libelle_d_acheminement": "FLEURIEU SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85032398358, + 45.8589780699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc25d12e427d2f95ec0f8003d129cd823414464d", + "fields": { + "ligne_5": "ST MARTIN DE CORNAS", + "code_commune_insee": "69091", + "libelle_d_acheminement": "GIVORS", + "code_postal": "69700", + "nom_de_la_commune": "GIVORS", + "coordonnees_gps": [ + 45.5816626973, + 4.7572616296 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7572616296, + 45.5816626973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3196fc12eab089aaa3afb3c7ead857b3bb72b666", + "fields": { + "ligne_5": "MODENHEIM", + "code_commune_insee": "68154", + "libelle_d_acheminement": "ILLZACH", + "code_postal": "68110", + "nom_de_la_commune": "ILLZACH", + "coordonnees_gps": [ + 47.7734992, + 7.36011136903 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36011136903, + 47.7734992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5ac342abb8379cac23c41875af32e0626bd6dc7", + "fields": { + "code_commune_insee": "69097", + "nom_de_la_commune": "LES HAIES", + "code_postal": "69420", + "coordonnees_gps": [ + 45.512760817, + 4.73868418136 + ], + "libelle_d_acheminement": "LES HAIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73868418136, + 45.512760817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8769ca7fcb85c78f88502547d98bfcc9b6ef4146", + "fields": { + "code_commune_insee": "68166", + "nom_de_la_commune": "KINGERSHEIM", + "code_postal": "68260", + "coordonnees_gps": [ + 47.7889765168, + 7.32299335222 + ], + "libelle_d_acheminement": "KINGERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32299335222, + 47.7889765168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9fa14f46115f4973251940c51dd92ceb1e34ae3", + "fields": { + "code_commune_insee": "69100", + "nom_de_la_commune": "IRIGNY", + "code_postal": "69540", + "coordonnees_gps": [ + 45.6748390924, + 4.81819594216 + ], + "libelle_d_acheminement": "IRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81819594216, + 45.6748390924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76502d983005621906b6a79bad29a409263087b7", + "fields": { + "code_commune_insee": "68173", + "nom_de_la_commune": "LABAROCHE", + "code_postal": "68910", + "coordonnees_gps": [ + 48.1102898888, + 7.19554860246 + ], + "libelle_d_acheminement": "LABAROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19554860246, + 48.1102898888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d125d9b5b35868f9a5351e8b6316a7666428f13d", + "fields": { + "code_commune_insee": "69104", + "nom_de_la_commune": "JULLIE", + "code_postal": "69840", + "coordonnees_gps": [ + 46.2435807553, + 4.66447828334 + ], + "libelle_d_acheminement": "JULLIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66447828334, + 46.2435807553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76a7ab7a343f999aaa2cc69a51917e1b5edaff6a", + "fields": { + "code_commune_insee": "68185", + "nom_de_la_commune": "LIEPVRE", + "code_postal": "68660", + "coordonnees_gps": [ + 48.2678392398, + 7.27599094644 + ], + "libelle_d_acheminement": "LIEPVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27599094644, + 48.2678392398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b554629d2e6a8daf706d213e5e0da86dab5b2034", + "fields": { + "code_commune_insee": "69112", + "nom_de_la_commune": "LENTILLY", + "code_postal": "69210", + "coordonnees_gps": [ + 45.812542419, + 4.67106123334 + ], + "libelle_d_acheminement": "LENTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67106123334, + 45.812542419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d20f1c1e872f2b34b6e434eecf89b5ab828ee6e4", + "fields": { + "code_commune_insee": "69116", + "nom_de_la_commune": "LIMONEST", + "code_postal": "69760", + "coordonnees_gps": [ + 45.8303274483, + 4.7716823325 + ], + "libelle_d_acheminement": "LIMONEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7716823325, + 45.8303274483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edd2ef8ab436dd267b2e89fdff4145df948f4da1", + "fields": { + "code_commune_insee": "68217", + "nom_de_la_commune": "MOOSCH", + "code_postal": "68690", + "coordonnees_gps": [ + 47.8478706578, + 7.03007710689 + ], + "libelle_d_acheminement": "MOOSCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03007710689, + 47.8478706578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cfa4c9dec2451c220579443d2e9436ad9c6c26e", + "fields": { + "code_commune_insee": "69119", + "nom_de_la_commune": "LONGES", + "code_postal": "69420", + "coordonnees_gps": [ + 45.5046386524, + 4.68010031794 + ], + "libelle_d_acheminement": "LONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68010031794, + 45.5046386524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8a550bd35675d50ea7d71f63715aab550b1b26e", + "fields": { + "code_commune_insee": "69120", + "nom_de_la_commune": "LONGESSAIGNE", + "code_postal": "69770", + "coordonnees_gps": [ + 45.7855981526, + 4.42642945537 + ], + "libelle_d_acheminement": "LONGESSAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42642945537, + 45.7855981526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32c98a1400fa76b1588bf22febf3fcceecf985a9", + "fields": { + "ligne_5": "MOYEN MUESPACH", + "code_commune_insee": "68221", + "libelle_d_acheminement": "MUESPACH", + "code_postal": "68640", + "nom_de_la_commune": "MUESPACH", + "coordonnees_gps": [ + 47.5496649857, + 7.37287618717 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37287618717, + 47.5496649857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cb5eff381dbc7b1d4195eec5c5a1bb6aac42e01", + "fields": { + "code_commune_insee": "69124", + "nom_de_la_commune": "MARCHAMPT", + "code_postal": "69430", + "coordonnees_gps": [ + 46.1084857601, + 4.56101357322 + ], + "libelle_d_acheminement": "MARCHAMPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56101357322, + 46.1084857601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27cd31d68e3679887d0a8d982547213ae300ba81", + "fields": { + "ligne_5": "BOURTZWILLER", + "code_commune_insee": "68224", + "libelle_d_acheminement": "MULHOUSE", + "code_postal": "68200", + "nom_de_la_commune": "MULHOUSE", + "coordonnees_gps": [ + 47.749163303, + 7.32570047509 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32570047509, + 47.749163303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbf0a2cf4bff417af5d12e80a32372e08754d9cf", + "fields": { + "code_commune_insee": "69127", + "nom_de_la_commune": "MARCY L ETOILE", + "code_postal": "69280", + "coordonnees_gps": [ + 45.7852649435, + 4.71250416429 + ], + "libelle_d_acheminement": "MARCY L ETOILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71250416429, + 45.7852649435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9406d5bc9bed3939aa0d595947bba3a843d6947e", + "fields": { + "code_commune_insee": "68226", + "nom_de_la_commune": "MUNSTER", + "code_postal": "68140", + "coordonnees_gps": [ + 48.0448514207, + 7.14149744282 + ], + "libelle_d_acheminement": "MUNSTER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14149744282, + 48.0448514207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a201af37461197c16ac741fb3b0017bb1a1852a", + "fields": { + "ligne_5": "AVENAS", + "code_commune_insee": "69135", + "libelle_d_acheminement": "DEUX GROSNES", + "code_postal": "69430", + "nom_de_la_commune": "DEUX GROSNES", + "coordonnees_gps": [ + 46.2227835629, + 4.51394181008 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51394181008, + 46.2227835629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71e59c3c3fa5489cc7e8a185ad518cc5676062cd", + "fields": { + "code_commune_insee": "68234", + "nom_de_la_commune": "NIEDERENTZEN", + "code_postal": "68127", + "coordonnees_gps": [ + 47.9454596765, + 7.39795037001 + ], + "libelle_d_acheminement": "NIEDERENTZEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39795037001, + 47.9454596765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8f0471a87bdd8b2e387de7e5d15763b70ee9865", + "fields": { + "ligne_5": "SOURZY", + "code_commune_insee": "69136", + "libelle_d_acheminement": "MONTAGNY", + "code_postal": "69700", + "nom_de_la_commune": "MONTAGNY", + "coordonnees_gps": [ + 45.6247829418, + 4.75036810523 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75036810523, + 45.6247829418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9993fe115bf9befb243c716bbfd98bb1d4f7fd6c", + "fields": { + "ligne_5": "HENFLINGEN", + "code_commune_insee": "68240", + "libelle_d_acheminement": "ILLTAL", + "code_postal": "68960", + "nom_de_la_commune": "ILLTAL", + "coordonnees_gps": [ + 47.5598733177, + 7.31658096209 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31658096209, + 47.5598733177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80a961dfa6ddd95c7d1999b58d5982819f375765", + "fields": { + "code_commune_insee": "69142", + "nom_de_la_commune": "LA MULATIERE", + "code_postal": "69350", + "coordonnees_gps": [ + 45.7303532192, + 4.8122084071 + ], + "libelle_d_acheminement": "LA MULATIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8122084071, + 45.7303532192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dca679f39df240a3a462dccb8c04b16ed0d4ba7", + "fields": { + "code_commune_insee": "68248", + "nom_de_la_commune": "OLTINGUE", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4891564438, + 7.40057781922 + ], + "libelle_d_acheminement": "OLTINGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40057781922, + 47.4891564438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "349db136200c0463146bf53456e087f97882978b", + "fields": { + "code_commune_insee": "69152", + "nom_de_la_commune": "PIERRE BENITE", + "code_postal": "69310", + "coordonnees_gps": [ + 45.702202274, + 4.82705049921 + ], + "libelle_d_acheminement": "PIERRE BENITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82705049921, + 45.702202274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01b2c13f060afa8ad4c23b3a5586e559941b1a66", + "fields": { + "code_commune_insee": "68253", + "nom_de_la_commune": "OTTMARSHEIM", + "code_postal": "68490", + "coordonnees_gps": [ + 47.7858970322, + 7.49270791037 + ], + "libelle_d_acheminement": "OTTMARSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49270791037, + 47.7858970322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "904a1c41e1098f02b2b3b7db08d57f2fc3042361", + "fields": { + "code_commune_insee": "69154", + "nom_de_la_commune": "POLLIONNAY", + "code_postal": "69290", + "coordonnees_gps": [ + 45.7685281587, + 4.65869632922 + ], + "libelle_d_acheminement": "POLLIONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65869632922, + 45.7685281587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d183002e5db09cdc65461dbd6d9b6d7f6ce8112", + "fields": { + "code_commune_insee": "68256", + "nom_de_la_commune": "PFASTATT", + "code_postal": "68120", + "coordonnees_gps": [ + 47.7696767881, + 7.29485630306 + ], + "libelle_d_acheminement": "PFASTATT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29485630306, + 47.7696767881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5feb7fe7d3b0cfef44370a2f9762e48f5401635b", + "fields": { + "ligne_5": "DAREIZE", + "code_commune_insee": "69157", + "libelle_d_acheminement": "VINDRY SUR TURDINE", + "code_postal": "69490", + "nom_de_la_commune": "VINDRY SUR TURDINE", + "coordonnees_gps": [ + 45.8770735618, + 4.49571511005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49571511005, + 45.8770735618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee510d33f93cf3ff9a1eacf22970d5bc60770881", + "fields": { + "ligne_5": "JARNIOUX", + "code_commune_insee": "69159", + "libelle_d_acheminement": "PORTE DES PIERRES DOREES", + "code_postal": "69640", + "nom_de_la_commune": "PORTE DES PIERRES DOREES", + "coordonnees_gps": [ + 45.9554021029, + 4.64557594844 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64557594844, + 45.9554021029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5bca0cea108b76c2b547d0a85c452ad53e4f081", + "fields": { + "code_commune_insee": "68274", + "nom_de_la_commune": "RIMBACH PRES GUEBWILLER", + "code_postal": "68500", + "coordonnees_gps": [ + 47.9044113934, + 7.15327700335 + ], + "libelle_d_acheminement": "RIMBACH PRES GUEBWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15327700335, + 47.9044113934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d997f1f971416eca2741354fc739894e6f4df399", + "fields": { + "ligne_5": "VEISSIEUX", + "code_commune_insee": "69163", + "libelle_d_acheminement": "QUINCIEUX", + "code_postal": "69650", + "nom_de_la_commune": "QUINCIEUX", + "coordonnees_gps": [ + 45.9136198331, + 4.77375123298 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77375123298, + 45.9136198331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c94c541369224692e026989472499f9abfc67f3d", + "fields": { + "code_commune_insee": "68281", + "nom_de_la_commune": "ROGGENHOUSE", + "code_postal": "68740", + "coordonnees_gps": [ + 47.8849153208, + 7.47508030097 + ], + "libelle_d_acheminement": "ROGGENHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47508030097, + 47.8849153208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "027cfa416bcfc6eefb0413fd23d0cdadabf4f25c", + "fields": { + "ligne_5": "DURETTE", + "code_commune_insee": "69165", + "libelle_d_acheminement": "REGNIE DURETTE", + "code_postal": "69430", + "nom_de_la_commune": "REGNIE DURETTE", + "coordonnees_gps": [ + 46.1466108781, + 4.64172714554 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64172714554, + 46.1466108781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d01152ffd0fa4434e01f3a8b22fc4abe5a3d10ba", + "fields": { + "code_commune_insee": "68284", + "nom_de_la_commune": "ROPPENTZWILLER", + "code_postal": "68480", + "coordonnees_gps": [ + 47.5373715057, + 7.32986002204 + ], + "libelle_d_acheminement": "ROPPENTZWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32986002204, + 47.5373715057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d63b7a0a1054bc830a8f87be63894af46ab564ec", + "fields": { + "code_commune_insee": "69167", + "nom_de_la_commune": "RIVOLET", + "code_postal": "69640", + "coordonnees_gps": [ + 46.0065781442, + 4.58017136765 + ], + "libelle_d_acheminement": "RIVOLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58017136765, + 46.0065781442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b9332c31804f2758462895ddff6a3fd41f2f824", + "fields": { + "code_commune_insee": "69169", + "nom_de_la_commune": "RONNO", + "code_postal": "69550", + "coordonnees_gps": [ + 45.9873139302, + 4.38989521253 + ], + "libelle_d_acheminement": "RONNO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38989521253, + 45.9873139302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beec4fdb01900f9a658dadfb72b9b8818b6d07c6", + "fields": { + "code_commune_insee": "69172", + "nom_de_la_commune": "SALLES ARBUISSONNAS EN BEAUJOLAIS", + "code_postal": "69460", + "coordonnees_gps": [ + 46.0453025139, + 4.63089316572 + ], + "libelle_d_acheminement": "SALLES ARBUISSONNAS BEAUJOLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63089316572, + 46.0453025139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eabe59059c01a240750aff26fb7120b6bd0428db", + "fields": { + "code_commune_insee": "68324", + "nom_de_la_commune": "STEINBRUNN LE HAUT", + "code_postal": "68440", + "coordonnees_gps": [ + 47.6599109756, + 7.34109225666 + ], + "libelle_d_acheminement": "STEINBRUNN LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34109225666, + 47.6599109756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f577673439673ca96727d85a2568a9976d219fd", + "fields": { + "code_commune_insee": "69174", + "nom_de_la_commune": "LES SAUVAGES", + "code_postal": "69170", + "coordonnees_gps": [ + 45.9238716412, + 4.37393979073 + ], + "libelle_d_acheminement": "LES SAUVAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37393979073, + 45.9238716412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "349f47a281cf1447edb25b569ade7eb51073e965", + "fields": { + "code_commune_insee": "68334", + "nom_de_la_commune": "THANN", + "code_postal": "68800", + "coordonnees_gps": [ + 47.8139111281, + 7.09502457233 + ], + "libelle_d_acheminement": "THANN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09502457233, + 47.8139111281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71ebbd85ae7792da2f7ffb9707220c3f04b0e6c9", + "fields": { + "ligne_5": "ST JEAN DE TOUSLAS", + "code_commune_insee": "69179", + "libelle_d_acheminement": "BEAUVALLON", + "code_postal": "69700", + "nom_de_la_commune": "BEAUVALLON", + "coordonnees_gps": [ + 45.5895638016, + 4.69551467475 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69551467475, + 45.5895638016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3af93c59c776a161b50e6686bd0f14467bd40be0", + "fields": { + "code_commune_insee": "69184", + "nom_de_la_commune": "STE CATHERINE", + "code_postal": "69440", + "coordonnees_gps": [ + 45.6030568648, + 4.57279453276 + ], + "libelle_d_acheminement": "STE CATHERINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57279453276, + 45.6030568648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01ce934c2421244b88f991dc7b96dd63e7542465", + "fields": { + "code_commune_insee": "69194", + "nom_de_la_commune": "ST DIDIER AU MONT D OR", + "code_postal": "69370", + "coordonnees_gps": [ + 45.8147288136, + 4.79844330211 + ], + "libelle_d_acheminement": "ST DIDIER AU MONT D OR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79844330211, + 45.8147288136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaf042e08757cdc8033468d33b2f87b1b5afc91e", + "fields": { + "code_commune_insee": "69196", + "nom_de_la_commune": "ST DIDIER SUR BEAUJEU", + "code_postal": "69430", + "coordonnees_gps": [ + 46.1460297825, + 4.53494871719 + ], + "libelle_d_acheminement": "ST DIDIER SUR BEAUJEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53494871719, + 46.1460297825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f47d95e9244153bd65780c031793e590c5c05e3", + "fields": { + "code_commune_insee": "69203", + "nom_de_la_commune": "ST GENIS L ARGENTIERE", + "code_postal": "69610", + "coordonnees_gps": [ + 45.7133172246, + 4.49538138887 + ], + "libelle_d_acheminement": "ST GENIS L ARGENTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49538138887, + 45.7133172246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f169421a1568aace6a4665e970b543e439dd45f", + "fields": { + "code_commune_insee": "69204", + "nom_de_la_commune": "ST GENIS LAVAL", + "code_postal": "69230", + "coordonnees_gps": [ + 45.6936777293, + 4.78919028453 + ], + "libelle_d_acheminement": "ST GENIS LAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78919028453, + 45.6936777293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5ad8fbb7c38e8cc9e5db8ebbc1a9dc6cbc22727", + "fields": { + "code_commune_insee": "69212", + "nom_de_la_commune": "ST JEAN DES VIGNES", + "code_postal": "69380", + "coordonnees_gps": [ + 45.8746263893, + 4.68243695399 + ], + "libelle_d_acheminement": "ST JEAN DES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68243695399, + 45.8746263893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ccfaf2fbc5cfb6ac16bd2c66150a67b33fd868e", + "fields": { + "code_commune_insee": "69219", + "nom_de_la_commune": "ST LAURENT D AGNY", + "code_postal": "69440", + "coordonnees_gps": [ + 45.6427267769, + 4.68437785922 + ], + "libelle_d_acheminement": "ST LAURENT D AGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68437785922, + 45.6427267769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dde53b2e2f2ad11d932b0727dc39518eb4832838", + "fields": { + "ligne_5": "ROCHEFORT", + "code_commune_insee": "69227", + "libelle_d_acheminement": "ST MARTIN EN HAUT", + "code_postal": "69850", + "nom_de_la_commune": "ST MARTIN EN HAUT", + "coordonnees_gps": [ + 45.658238601, + 4.55827258271 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55827258271, + 45.658238601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "244dce3b95b89579c464115e1bc96a69d373a3a7", + "fields": { + "ligne_5": "FILLONNIERE", + "code_commune_insee": "69228", + "libelle_d_acheminement": "CHABANIERE", + "code_postal": "69440", + "nom_de_la_commune": "CHABANIERE", + "coordonnees_gps": [ + 45.5781277955, + 4.64115905425 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64115905425, + 45.5781277955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "099811168e661a0f5b225dea7709f26f3a84772c", + "fields": { + "ligne_5": "ROUSSILLIERE", + "code_commune_insee": "69228", + "libelle_d_acheminement": "CHABANIERE", + "code_postal": "69440", + "nom_de_la_commune": "CHABANIERE", + "coordonnees_gps": [ + 45.5781277955, + 4.64115905425 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64115905425, + 45.5781277955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f2c57f33a70c75bc432856929dcd1ff94003954", + "fields": { + "code_commune_insee": "69241", + "nom_de_la_commune": "TALUYERS", + "code_postal": "69440", + "coordonnees_gps": [ + 45.6362754046, + 4.72434330862 + ], + "libelle_d_acheminement": "TALUYERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72434330862, + 45.6362754046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05bcb22d4ca96d5a6caae007817a67eeb9ad3d9e", + "fields": { + "ligne_5": "LA CHAPELLE DE MARDORE", + "code_commune_insee": "69248", + "libelle_d_acheminement": "THIZY LES BOURGS", + "code_postal": "69240", + "nom_de_la_commune": "THIZY LES BOURGS", + "coordonnees_gps": [ + 46.0302777714, + 4.31390305209 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31390305209, + 46.0302777714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db831ef604c234020d99c4fba6f4b1484c91bb04", + "fields": { + "code_commune_insee": "69249", + "nom_de_la_commune": "THURINS", + "code_postal": "69510", + "coordonnees_gps": [ + 45.6838356004, + 4.6261890947 + ], + "libelle_d_acheminement": "THURINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6261890947, + 45.6838356004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "949aa8171bdd164ef923dc6c988d948a70f0fc72", + "fields": { + "code_commune_insee": "69258", + "nom_de_la_commune": "VAUXRENARD", + "code_postal": "69820", + "coordonnees_gps": [ + 46.2172909716, + 4.63812595224 + ], + "libelle_d_acheminement": "VAUXRENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63812595224, + 46.2172909716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "835c64984a0dd3fd9026fad8666e9c15d0342685", + "fields": { + "code_commune_insee": "69260", + "nom_de_la_commune": "VERNAISON", + "code_postal": "69390", + "coordonnees_gps": [ + 45.6493899066, + 4.80930520738 + ], + "libelle_d_acheminement": "VERNAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80930520738, + 45.6493899066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f84c1f53eca47e70c1b8aeea61ff27c5da5762e8", + "fields": { + "code_commune_insee": "69276", + "nom_de_la_commune": "FEYZIN", + "code_postal": "69320", + "coordonnees_gps": [ + 45.6730630785, + 4.85725794932 + ], + "libelle_d_acheminement": "FEYZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85725794932, + 45.6730630785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68ad406771ec5bdd9412f6ee8ff937bfbbbcb439", + "fields": { + "code_commune_insee": "69283", + "nom_de_la_commune": "MIONS", + "code_postal": "69780", + "coordonnees_gps": [ + 45.6647373498, + 4.94915210897 + ], + "libelle_d_acheminement": "MIONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94915210897, + 45.6647373498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9be0deabc8989e7e8310a971a39fd0264c1308cb", + "fields": { + "code_commune_insee": "69286", + "nom_de_la_commune": "RILLIEUX LA PAPE", + "code_postal": "69140", + "coordonnees_gps": [ + 45.8205988109, + 4.89822639815 + ], + "libelle_d_acheminement": "RILLIEUX LA PAPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89822639815, + 45.8205988109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adf65c9943edd2d32a2a7c3efa55236ba808df69", + "fields": { + "code_commune_insee": "69288", + "nom_de_la_commune": "ST LAURENT DE MURE", + "code_postal": "69720", + "coordonnees_gps": [ + 45.6834072587, + 5.06089287169 + ], + "libelle_d_acheminement": "ST LAURENT DE MURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06089287169, + 45.6834072587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b120bf2d3dc21dfd796fa0dd2b67cacab76060fe", + "fields": { + "code_commune_insee": "69294", + "nom_de_la_commune": "SEREZIN DU RHONE", + "code_postal": "69360", + "coordonnees_gps": [ + 45.6275993813, + 4.82483713363 + ], + "libelle_d_acheminement": "SEREZIN DU RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82483713363, + 45.6275993813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa57073583e13e8b31a9f27877fc15c216f275ae", + "fields": { + "code_commune_insee": "69384", + "nom_de_la_commune": "LYON 04", + "code_postal": "69004", + "coordonnees_gps": [ + 45.7786867581, + 4.82396112689 + ], + "libelle_d_acheminement": "LYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82396112689, + 45.7786867581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "278fa7bcf7aa0d423b7f0264bd4390b32bbcaccf", + "fields": { + "code_commune_insee": "69385", + "nom_de_la_commune": "LYON 05", + "code_postal": "69005", + "coordonnees_gps": [ + 45.7558317849, + 4.8022536949 + ], + "libelle_d_acheminement": "LYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8022536949, + 45.7558317849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf81e9e00f24a49af611cf3bd6813590e181050b", + "fields": { + "code_commune_insee": "70005", + "nom_de_la_commune": "AILLEVANS", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5901064587, + 6.41781812874 + ], + "libelle_d_acheminement": "AILLEVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41781812874, + 47.5901064587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9110ca65b87f307e6a168fa08d6ebf7cbe34fb5", + "fields": { + "code_commune_insee": "70006", + "nom_de_la_commune": "AILLEVILLERS ET LYAUMONT", + "code_postal": "70320", + "coordonnees_gps": [ + 47.9382332806, + 6.33247986136 + ], + "libelle_d_acheminement": "AILLEVILLERS ET LYAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33247986136, + 47.9382332806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f3dfecbe8b91397d7a1f754fb1f66894f36cd8a", + "fields": { + "code_commune_insee": "70009", + "nom_de_la_commune": "AISEY ET RICHECOURT", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8881139494, + 5.95536698113 + ], + "libelle_d_acheminement": "AISEY ET RICHECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95536698113, + 47.8881139494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36bbf842eca49b76db5e991e392930ad8c92ccdb", + "fields": { + "code_commune_insee": "70014", + "nom_de_la_commune": "AMBLANS ET VELOTTE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6809699822, + 6.41769484638 + ], + "libelle_d_acheminement": "AMBLANS ET VELOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41769484638, + 47.6809699822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3e4e04c7c3dcee2fa8b763ac41ac9d435d37370", + "fields": { + "code_commune_insee": "70016", + "nom_de_la_commune": "AMONT ET EFFRENEY", + "code_postal": "70310", + "coordonnees_gps": [ + 47.8672344964, + 6.56250054881 + ], + "libelle_d_acheminement": "AMONT ET EFFRENEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56250054881, + 47.8672344964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6a6a1178a2453be92605d3920944e32d89979d9", + "fields": { + "code_commune_insee": "70026", + "nom_de_la_commune": "ARC LES GRAY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4628603881, + 5.58172003346 + ], + "libelle_d_acheminement": "ARC LES GRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58172003346, + 47.4628603881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8892c3748b63046cb855c4f13b92b90a786cdc13", + "fields": { + "code_commune_insee": "70032", + "nom_de_la_commune": "ATTRICOURT", + "code_postal": "70100", + "coordonnees_gps": [ + 47.487861891, + 5.41120963466 + ], + "libelle_d_acheminement": "ATTRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41120963466, + 47.487861891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff21d551d7fbc30d5c5ba1a2e5337fcef0230860", + "fields": { + "code_commune_insee": "70046", + "nom_de_la_commune": "LES AYNANS", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6183175602, + 6.45040746751 + ], + "libelle_d_acheminement": "LES AYNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45040746751, + 47.6183175602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fadd66525336302018e01db173237462a288ef1", + "fields": { + "code_commune_insee": "70049", + "nom_de_la_commune": "BARGES", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8703689759, + 5.84022865236 + ], + "libelle_d_acheminement": "BARGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84022865236, + 47.8703689759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f97ad6e58c1c4f29faf6dbe9dde6427e0a3c6a93", + "fields": { + "code_commune_insee": "70053", + "nom_de_la_commune": "LES BATIES", + "code_postal": "70130", + "coordonnees_gps": [ + 47.502432547, + 5.8956755541 + ], + "libelle_d_acheminement": "LES BATIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8956755541, + 47.502432547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0477bb85d43c478e395efc67450d10de65e5f92", + "fields": { + "code_commune_insee": "70056", + "nom_de_la_commune": "BAULAY", + "code_postal": "70160", + "coordonnees_gps": [ + 47.7875044497, + 6.01577984949 + ], + "libelle_d_acheminement": "BAULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01577984949, + 47.7875044497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5434e14fc9edd2c41571cec0925be3e96ddd0a74", + "fields": { + "ligne_5": "AUBERTANS", + "code_commune_insee": "70059", + "libelle_d_acheminement": "BEAUMOTTE AUBERTANS", + "code_postal": "70190", + "nom_de_la_commune": "BEAUMOTTE AUBERTANS", + "coordonnees_gps": [ + 47.433936502, + 6.16129269067 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16129269067, + 47.433936502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12d9640bd48917d5f74b3ccd48283a22e33fb7b0", + "fields": { + "code_commune_insee": "70061", + "nom_de_la_commune": "BELFAHY", + "code_postal": "70290", + "coordonnees_gps": [ + 47.7864934066, + 6.73204100977 + ], + "libelle_d_acheminement": "BELFAHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73204100977, + 47.7864934066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "509aeeaa2001317f21f768c723986651dde14833", + "fields": { + "code_commune_insee": "70076", + "nom_de_la_commune": "BONNEVENT VELLOREILLE", + "code_postal": "70700", + "coordonnees_gps": [ + 47.3937756161, + 5.9310298649 + ], + "libelle_d_acheminement": "BONNEVENT VELLOREILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9310298649, + 47.3937756161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82895c820844d0d338c1325219fc354c225922f7", + "fields": { + "code_commune_insee": "70080", + "nom_de_la_commune": "BOUHANS ET FEURG", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4729092139, + 5.51046991531 + ], + "libelle_d_acheminement": "BOUHANS ET FEURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51046991531, + 47.4729092139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99e7314a03e5bf7416981d2f75ac7c36c0cf3317", + "fields": { + "code_commune_insee": "70096", + "nom_de_la_commune": "BREVILLIERS", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5786423606, + 6.79644212349 + ], + "libelle_d_acheminement": "BREVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79644212349, + 47.5786423606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f315fa43326d3fd7583cb51a2b52b23afdced25", + "fields": { + "ligne_5": "AUBIGNEY", + "code_commune_insee": "70101", + "libelle_d_acheminement": "BROYE AUBIGNEY MONTSEUGNY", + "code_postal": "70140", + "nom_de_la_commune": "BROYE AUBIGNEY MONTSEUGNY", + "coordonnees_gps": [ + 47.3305692734, + 5.5187191763 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5187191763, + 47.3305692734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fd6692f6d5a1391a5f82db9d4dfd3b571ab2c0d", + "fields": { + "code_commune_insee": "70102", + "nom_de_la_commune": "BRUSSEY", + "code_postal": "70150", + "coordonnees_gps": [ + 47.3070872023, + 5.80873884228 + ], + "libelle_d_acheminement": "BRUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80873884228, + 47.3070872023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51bc7906b43328177c82c203900efb886ff22a81", + "fields": { + "code_commune_insee": "70107", + "nom_de_la_commune": "BUSSIERES", + "code_postal": "70190", + "coordonnees_gps": [ + 47.3440809004, + 5.98460824617 + ], + "libelle_d_acheminement": "BUSSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98460824617, + 47.3440809004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "049f0a14c4fc66bdb896cc785c5b2001563e930e", + "fields": { + "code_commune_insee": "70113", + "nom_de_la_commune": "CENANS", + "code_postal": "70230", + "coordonnees_gps": [ + 47.4328780684, + 6.18879786969 + ], + "libelle_d_acheminement": "CENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18879786969, + 47.4328780684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3678c4624db86741f3cfedd2998b95d2d0ef15f9", + "fields": { + "ligne_5": "LEFFOND", + "code_commune_insee": "70122", + "libelle_d_acheminement": "CHAMPLITTE", + "code_postal": "70600", + "nom_de_la_commune": "CHAMPLITTE", + "coordonnees_gps": [ + 47.6322292317, + 5.51329036822 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51329036822, + 47.6322292317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0edf8f504ffb4f5b14768a17fafd99de84d639de", + "fields": { + "code_commune_insee": "70129", + "nom_de_la_commune": "LA CHAPELLE ST QUILLAIN", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4849082383, + 5.81725428776 + ], + "libelle_d_acheminement": "LA CHAPELLE ST QUILLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81725428776, + 47.4849082383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e57b2a7ddcd04488b295c96ce3da273ff4e5046c", + "fields": { + "code_commune_insee": "70130", + "nom_de_la_commune": "CHARCENNE", + "code_postal": "70700", + "coordonnees_gps": [ + 47.368580858, + 5.777516428 + ], + "libelle_d_acheminement": "CHARCENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.777516428, + 47.368580858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c61f4ad2cd7dad8aedb10ee525563b850288dd26", + "fields": { + "code_commune_insee": "70132", + "nom_de_la_commune": "CHARGEY LES GRAY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4928980658, + 5.57884831818 + ], + "libelle_d_acheminement": "CHARGEY LES GRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57884831818, + 47.4928980658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76d510f697091218caa4fdc6ae139b4b8ed1c319", + "fields": { + "code_commune_insee": "70136", + "nom_de_la_commune": "CHARMOILLE", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6719755465, + 6.11198681007 + ], + "libelle_d_acheminement": "CHARMOILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11198681007, + 47.6719755465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71e9b8fe343e730c273b8605e530ac6bffc6cd3f", + "fields": { + "code_commune_insee": "70146", + "nom_de_la_commune": "CHAUX LES PORT", + "code_postal": "70170", + "coordonnees_gps": [ + 47.7164049737, + 6.0457583117 + ], + "libelle_d_acheminement": "CHAUX LES PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0457583117, + 47.7164049737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2380f7e20528c53bd20d485f8ffb77a04b736900", + "fields": { + "code_commune_insee": "70147", + "nom_de_la_commune": "CHAVANNE", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5588510857, + 6.65836633701 + ], + "libelle_d_acheminement": "CHAVANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65836633701, + 47.5588510857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fadf7115204af15716644e98775c87c5e1202557", + "fields": { + "code_commune_insee": "70150", + "nom_de_la_commune": "CHENEVREY ET MOROGNE", + "code_postal": "70150", + "coordonnees_gps": [ + 47.2806388545, + 5.73662541628 + ], + "libelle_d_acheminement": "CHENEVREY ET MOROGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73662541628, + 47.2806388545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c8fb2e14e6740051c4aa13c8cdd633c80616cfa", + "fields": { + "code_commune_insee": "70163", + "nom_de_la_commune": "COLOMBIER", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6697895456, + 6.21883495528 + ], + "libelle_d_acheminement": "COLOMBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21883495528, + 47.6697895456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cfa5e614d53c01bbfd637a548c3c2cfa8e29029", + "fields": { + "code_commune_insee": "70165", + "nom_de_la_commune": "COMBEAUFONTAINE", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7097115215, + 5.89708044374 + ], + "libelle_d_acheminement": "COMBEAUFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89708044374, + 47.7097115215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b5ec8dfdf0901a8171f53c0a152fb4d2718a574", + "fields": { + "code_commune_insee": "70172", + "nom_de_la_commune": "LA CORBIERE", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7930040565, + 6.48605188097 + ], + "libelle_d_acheminement": "LA CORBIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48605188097, + 47.7930040565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afaf1861f6aa08c37c27dcb1dbede4a86e9eba9f", + "fields": { + "code_commune_insee": "70182", + "nom_de_la_commune": "COURMONT", + "code_postal": "70400", + "coordonnees_gps": [ + 47.6119425531, + 6.64355841755 + ], + "libelle_d_acheminement": "COURMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64355841755, + 47.6119425531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c945832dd5c06d414bb058f3a5e9530334136c0", + "fields": { + "code_commune_insee": "70186", + "nom_de_la_commune": "LA CREUSE", + "code_postal": "70240", + "coordonnees_gps": [ + 47.6824306767, + 6.3491717627 + ], + "libelle_d_acheminement": "LA CREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3491717627, + 47.6824306767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e2180ec2c162abb3d935703ff334ab564d9bd18", + "fields": { + "code_commune_insee": "70190", + "nom_de_la_commune": "CUBRY LES FAVERNEY", + "code_postal": "70160", + "coordonnees_gps": [ + 47.8157221284, + 6.13346195549 + ], + "libelle_d_acheminement": "CUBRY LES FAVERNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13346195549, + 47.8157221284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49e6a607efe22b6f4b3fdb0f15ad6041baeaab63", + "fields": { + "code_commune_insee": "70193", + "nom_de_la_commune": "CULT", + "code_postal": "70150", + "coordonnees_gps": [ + 47.3144210178, + 5.74365387087 + ], + "libelle_d_acheminement": "CULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74365387087, + 47.3144210178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09ea57f8613e303f0a8eb6eed88d7f9482889994", + "fields": { + "code_commune_insee": "70198", + "nom_de_la_commune": "DAMPIERRE SUR SALON", + "code_postal": "70180", + "coordonnees_gps": [ + 47.5720448624, + 5.67645740995 + ], + "libelle_d_acheminement": "DAMPIERRE SUR SALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67645740995, + 47.5720448624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf2b1938c410b91f801b70fec9697821bc0d2b36", + "fields": { + "code_commune_insee": "70214", + "nom_de_la_commune": "EQUEVILLEY", + "code_postal": "70160", + "coordonnees_gps": [ + 47.7814086958, + 6.18035892728 + ], + "libelle_d_acheminement": "EQUEVILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18035892728, + 47.7814086958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a537487ab2f8f9e0dc2e503779097bcfccd0477", + "fields": { + "code_commune_insee": "70222", + "nom_de_la_commune": "ETRELLES ET LA MONTBLEUSE", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4743685356, + 5.85585221186 + ], + "libelle_d_acheminement": "ETRELLES ET LA MONTBLEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85585221186, + 47.4743685356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c32263150561e65438bac0ee06482063cb5df576", + "fields": { + "code_commune_insee": "70224", + "nom_de_la_commune": "ETUZ", + "code_postal": "70150", + "coordonnees_gps": [ + 47.3581234109, + 5.93622736859 + ], + "libelle_d_acheminement": "ETUZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93622736859, + 47.3581234109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bb8030d565745194ac37612feee4c74d5bea700", + "fields": { + "code_commune_insee": "70229", + "nom_de_la_commune": "FAYMONT", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6057038041, + 6.5983082828 + ], + "libelle_d_acheminement": "FAYMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5983082828, + 47.6057038041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9634a69fc00ca5815751d1672ee9ebea5407edb", + "fields": { + "code_commune_insee": "70230", + "nom_de_la_commune": "FEDRY", + "code_postal": "70120", + "coordonnees_gps": [ + 47.6150426161, + 5.87835228178 + ], + "libelle_d_acheminement": "FEDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87835228178, + 47.6150426161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2197af6eba040440444e8befaef70a0389ab18db", + "fields": { + "code_commune_insee": "70236", + "nom_de_la_commune": "FLEUREY LES FAVERNEY", + "code_postal": "70160", + "coordonnees_gps": [ + 47.7411367393, + 6.09066624014 + ], + "libelle_d_acheminement": "FLEUREY LES FAVERNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09066624014, + 47.7411367393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f225b3c01eb0e78e1ee1ed3aa52cd8ac18b1c803", + "fields": { + "code_commune_insee": "70240", + "nom_de_la_commune": "FONTAINE LES LUXEUIL", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8601010548, + 6.33468118355 + ], + "libelle_d_acheminement": "FONTAINE LES LUXEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33468118355, + 47.8601010548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4331845fee4ba0326791fe177ce1a95cd9a6f31", + "fields": { + "code_commune_insee": "70242", + "nom_de_la_commune": "FONTENOIS LA VILLE", + "code_postal": "70210", + "coordonnees_gps": [ + 47.9384558945, + 6.17553487571 + ], + "libelle_d_acheminement": "FONTENOIS LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17553487571, + 47.9384558945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5d362b26277d7d5f47de811feee8237fd22aab4", + "fields": { + "ligne_5": "ST VALBERT", + "code_commune_insee": "70245", + "libelle_d_acheminement": "FOUGEROLLES ST VALBERT", + "code_postal": "70300", + "nom_de_la_commune": "FOUGEROLLES ST VALBERT", + "coordonnees_gps": [ + 47.9016025414, + 6.4130351203 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4130351203, + 47.9016025414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4a9dde17ec3b51ada639d0342d6e2fac5bfc70c", + "fields": { + "code_commune_insee": "70249", + "nom_de_la_commune": "FRANCALMONT", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8328090874, + 6.27152718954 + ], + "libelle_d_acheminement": "FRANCALMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27152718954, + 47.8328090874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8a995f9296d511b6bae24aeb112873945d6d5ea", + "fields": { + "code_commune_insee": "70250", + "nom_de_la_commune": "FRANCHEVELLE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.7429315817, + 6.46131870322 + ], + "libelle_d_acheminement": "FRANCHEVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46131870322, + 47.7429315817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f5cd149994fdda7b7e1c5b2a20cb3c2826a41ae", + "fields": { + "code_commune_insee": "70269", + "nom_de_la_commune": "GIREFONTAINE", + "code_postal": "70210", + "coordonnees_gps": [ + 47.8953750469, + 6.17205658715 + ], + "libelle_d_acheminement": "GIREFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17205658715, + 47.8953750469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4025858393ee1186efb717a50698939959ce46af", + "fields": { + "code_commune_insee": "70273", + "nom_de_la_commune": "GRAMMONT", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5135309996, + 6.51393062339 + ], + "libelle_d_acheminement": "GRAMMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51393062339, + 47.5135309996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7004078cd8bc1ef1ba8a781523e5aace4bfdad9", + "fields": { + "code_commune_insee": "70279", + "nom_de_la_commune": "GRAY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4320889937, + 5.61070658545 + ], + "libelle_d_acheminement": "GRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61070658545, + 47.4320889937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4f252ae1eb1869edef352f4f5ddb4a4828a4d0b", + "fields": { + "code_commune_insee": "70280", + "nom_de_la_commune": "GRAY LA VILLE", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4400313052, + 5.57140499871 + ], + "libelle_d_acheminement": "GRAY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57140499871, + 47.4400313052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8abcbf85e08d53ef57a522b4130a17636bd53c3", + "fields": { + "code_commune_insee": "70288", + "nom_de_la_commune": "HYET", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4764474836, + 6.07653448218 + ], + "libelle_d_acheminement": "HYET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07653448218, + 47.4764474836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86682039fd68e19e2c8b7027e8e21c31ec2a6119", + "fields": { + "code_commune_insee": "70292", + "nom_de_la_commune": "JUSSEY", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8171454049, + 5.88977076116 + ], + "libelle_d_acheminement": "JUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88977076116, + 47.8171454049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4aa30d96789ac22b294ed91a46a19eca326c175", + "fields": { + "code_commune_insee": "70293", + "nom_de_la_commune": "LAMBREY", + "code_postal": "70500", + "coordonnees_gps": [ + 47.7643209211, + 5.92933904198 + ], + "libelle_d_acheminement": "LAMBREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92933904198, + 47.7643209211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed221a076b344d1dd047aa5d50d8ed820bad772a", + "fields": { + "code_commune_insee": "70297", + "nom_de_la_commune": "LARRET", + "code_postal": "70600", + "coordonnees_gps": [ + 47.6274401476, + 5.63279804414 + ], + "libelle_d_acheminement": "LARRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63279804414, + 47.6274401476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26b0c34a690a8cd6573d7ed42090a0717c373ffa", + "fields": { + "code_commune_insee": "70298", + "nom_de_la_commune": "LAVIGNEY", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7118854069, + 5.80400315712 + ], + "libelle_d_acheminement": "LAVIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80400315712, + 47.7118854069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43138e05860d5e45bac24d9512692d4077d2e6b1", + "fields": { + "code_commune_insee": "70301", + "nom_de_la_commune": "LIEFFRANS", + "code_postal": "70190", + "coordonnees_gps": [ + 47.5224824778, + 5.96809536182 + ], + "libelle_d_acheminement": "LIEFFRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96809536182, + 47.5224824778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6db4b6522c94aed107153f3a98a639601c8e7a05", + "fields": { + "code_commune_insee": "70334", + "nom_de_la_commune": "MARNAY", + "code_postal": "70150", + "coordonnees_gps": [ + 47.2975763661, + 5.77201053595 + ], + "libelle_d_acheminement": "MARNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77201053595, + 47.2975763661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26bcfd0098b08f86b5d0f245a22fd893a6a0d0d5", + "fields": { + "code_commune_insee": "70347", + "nom_de_la_commune": "MIGNAVILLERS", + "code_postal": "70400", + "coordonnees_gps": [ + 47.587556022, + 6.55398478114 + ], + "libelle_d_acheminement": "MIGNAVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55398478114, + 47.587556022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bbbd61f7fe62f45889b430fb40b6165ed87d071", + "fields": { + "code_commune_insee": "70349", + "nom_de_la_commune": "MOIMAY", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5597602693, + 6.39935154409 + ], + "libelle_d_acheminement": "MOIMAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39935154409, + 47.5597602693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1ac0968745569bbb4ee59bee97b713790f5c168", + "fields": { + "code_commune_insee": "70350", + "nom_de_la_commune": "MOLAY", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7343168819, + 5.74176015728 + ], + "libelle_d_acheminement": "MOLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74176015728, + 47.7343168819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "992c0a681fd01fc48caddd7ae25b6c83581cbeff", + "fields": { + "code_commune_insee": "70357", + "nom_de_la_commune": "MONTBOZON", + "code_postal": "70230", + "coordonnees_gps": [ + 47.4596587023, + 6.25631932955 + ], + "libelle_d_acheminement": "MONTBOZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25631932955, + 47.4596587023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ebf4e9055839b7254ca35d1429235c46b3ffb3b", + "fields": { + "code_commune_insee": "70362", + "nom_de_la_commune": "MONTIGNY LES CHERLIEU", + "code_postal": "70500", + "coordonnees_gps": [ + 47.7872395277, + 5.81643260789 + ], + "libelle_d_acheminement": "MONTIGNY LES CHERLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81643260789, + 47.7872395277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10cd1977b35def3848037b6a37fed9a72fd00f0b", + "fields": { + "ligne_5": "SUAUCOURT ET PISSELOUP", + "code_commune_insee": "70373", + "libelle_d_acheminement": "LA ROCHE MOREY", + "code_postal": "70120", + "nom_de_la_commune": "LA ROCHE MOREY", + "coordonnees_gps": [ + 47.6947168026, + 5.75337268526 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75337268526, + 47.6947168026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad5d6ddfdd590c30b00dfa60f9676a15169af307", + "fields": { + "code_commune_insee": "70393", + "nom_de_la_commune": "OISELAY ET GRACHAUX", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4265249519, + 5.92562496608 + ], + "libelle_d_acheminement": "OISELAY ET GRACHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92562496608, + 47.4265249519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eff3ea22ad4f3f673c665a20487913873337e8f", + "fields": { + "code_commune_insee": "70396", + "nom_de_la_commune": "ORICOURT", + "code_postal": "70110", + "coordonnees_gps": [ + 47.597173392, + 6.3945348037 + ], + "libelle_d_acheminement": "ORICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3945348037, + 47.597173392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53019745bca7a25d4dc655af125bda4f210016a2", + "fields": { + "code_commune_insee": "70400", + "nom_de_la_commune": "OUGE", + "code_postal": "70500", + "coordonnees_gps": [ + 47.7986582876, + 5.70114635642 + ], + "libelle_d_acheminement": "OUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70114635642, + 47.7986582876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ac20b59e6cbca7726c7fd8a9ef1a20771ca8ec5", + "fields": { + "code_commune_insee": "70409", + "nom_de_la_commune": "PIERRECOURT", + "code_postal": "70600", + "coordonnees_gps": [ + 47.6432505836, + 5.58620580677 + ], + "libelle_d_acheminement": "PIERRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58620580677, + 47.6432505836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7ecea0d3a708f3c39d5fc33c6bf61a61b3db8b7", + "fields": { + "code_commune_insee": "70411", + "nom_de_la_commune": "LA PISSEURE", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8628951813, + 6.22816351051 + ], + "libelle_d_acheminement": "LA PISSEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22816351051, + 47.8628951813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e894e923b10a04ca5a949e6fa9be2d503e7448ca", + "fields": { + "code_commune_insee": "70417", + "nom_de_la_commune": "PONTCEY", + "code_postal": "70360", + "coordonnees_gps": [ + 47.6283826292, + 6.03204644635 + ], + "libelle_d_acheminement": "PONTCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03204644635, + 47.6283826292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2c06629d450ea12ff1b1805ef620e32cb62585d", + "fields": { + "ligne_5": "VEZET", + "code_commune_insee": "70418", + "libelle_d_acheminement": "LA ROMAINE", + "code_postal": "70130", + "nom_de_la_commune": "LA ROMAINE", + "coordonnees_gps": [ + 47.5374721676, + 5.92263244824 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92263244824, + 47.5374721676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "597af6ed1fafaa284545136de4f93df90d8eefc2", + "fields": { + "code_commune_insee": "70419", + "nom_de_la_commune": "PONT DU BOIS", + "code_postal": "70210", + "coordonnees_gps": [ + 47.9799459833, + 6.12513402916 + ], + "libelle_d_acheminement": "PONT DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12513402916, + 47.9799459833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9050b5ac8f82b57e9a9178549a360287cc496598", + "fields": { + "code_commune_insee": "70426", + "nom_de_la_commune": "PROVENCHERE", + "code_postal": "70170", + "coordonnees_gps": [ + 47.7220120266, + 6.12391376689 + ], + "libelle_d_acheminement": "PROVENCHERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12391376689, + 47.7220120266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76a8d89a090a7488d9144ea754b0e4092f421439", + "fields": { + "code_commune_insee": "70432", + "nom_de_la_commune": "QUERS", + "code_postal": "70200", + "coordonnees_gps": [ + 47.7265725421, + 6.44190113641 + ], + "libelle_d_acheminement": "QUERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44190113641, + 47.7265725421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4900fae1467af7d2b7247bfd4d7ba60f52db61eb", + "fields": { + "code_commune_insee": "70436", + "nom_de_la_commune": "RAINCOURT", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8597701949, + 5.88767726096 + ], + "libelle_d_acheminement": "RAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88767726096, + 47.8597701949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aba16829c7246632563f393654b677e3f30fdcce", + "fields": { + "code_commune_insee": "70447", + "nom_de_la_commune": "RIOZ", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4373192173, + 6.07568807889 + ], + "libelle_d_acheminement": "RIOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07568807889, + 47.4373192173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff483fbe3377eeb547a7cbadcfb37c175d3f66c3", + "fields": { + "code_commune_insee": "70453", + "nom_de_la_commune": "LA ROSIERE", + "code_postal": "70310", + "coordonnees_gps": [ + 47.9104394997, + 6.62199304981 + ], + "libelle_d_acheminement": "LA ROSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62199304981, + 47.9104394997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56e3dc02be5b9826e9b18cb9ee83f80260ab5f2c", + "fields": { + "code_commune_insee": "70454", + "nom_de_la_commune": "ROSIERES SUR MANCE", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8376565053, + 5.80467738771 + ], + "libelle_d_acheminement": "ROSIERES SUR MANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80467738771, + 47.8376565053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aba3eb77c2f448f7859eb54d5f9d46e61472e6f", + "fields": { + "code_commune_insee": "70460", + "nom_de_la_commune": "ST BRESSON", + "code_postal": "70280", + "coordonnees_gps": [ + 47.8772733622, + 6.50674206786 + ], + "libelle_d_acheminement": "ST BRESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50674206786, + 47.8772733622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19e0830c3555ae03da76bc6eb089bd05bfa178dd", + "fields": { + "code_commune_insee": "70474", + "nom_de_la_commune": "ST SULPICE", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5725334014, + 6.45017356755 + ], + "libelle_d_acheminement": "ST SULPICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45017356755, + 47.5725334014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6e6b3b481972bb5128ecb6410997f6507d76309", + "fields": { + "ligne_5": "MIELLIN", + "code_commune_insee": "70489", + "libelle_d_acheminement": "SERVANCE MIELLIN", + "code_postal": "70440", + "nom_de_la_commune": "SERVANCE MIELLIN", + "coordonnees_gps": [ + 47.8257288068, + 6.68597884501 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68597884501, + 47.8257288068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db71bc090d24e2b50d02014578c8d67711cc5b60", + "fields": { + "code_commune_insee": "70490", + "nom_de_la_commune": "SERVIGNEY", + "code_postal": "70240", + "coordonnees_gps": [ + 47.7303296374, + 6.29784435036 + ], + "libelle_d_acheminement": "SERVIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29784435036, + 47.7303296374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9faca8453140207476f7c66d8a6d2b91f08b761", + "fields": { + "ligne_5": "CHARENTENAY", + "code_commune_insee": "70492", + "libelle_d_acheminement": "SOING CUBRY CHARENTENAY", + "code_postal": "70130", + "nom_de_la_commune": "SOING CUBRY CHARENTENAY", + "coordonnees_gps": [ + 47.5851238509, + 5.88891675749 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88891675749, + 47.5851238509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "071cf16624e27b5ddbe48288c785e57dba83a718", + "fields": { + "code_commune_insee": "70493", + "nom_de_la_commune": "SORANS LES BREUREY", + "code_postal": "70190", + "coordonnees_gps": [ + 47.3963302607, + 6.04703992891 + ], + "libelle_d_acheminement": "SORANS LES BREUREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04703992891, + 47.3963302607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d099f4561539f9f6a21664e188fe18aa57b0c811", + "fields": { + "code_commune_insee": "70494", + "nom_de_la_commune": "SORNAY", + "code_postal": "70150", + "coordonnees_gps": [ + 47.2812350721, + 5.6962342284 + ], + "libelle_d_acheminement": "SORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6962342284, + 47.2812350721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21ae54cf32371a231cd30ffba7a9c4bf5099c627", + "fields": { + "code_commune_insee": "70501", + "nom_de_la_commune": "THIENANS", + "code_postal": "70230", + "coordonnees_gps": [ + 47.4697221913, + 6.27863279834 + ], + "libelle_d_acheminement": "THIENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27863279834, + 47.4697221913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b51c5e4dc4c31dae29896c87d75ac8ea12bdac74", + "fields": { + "code_commune_insee": "70505", + "nom_de_la_commune": "LE TREMBLOIS", + "code_postal": "70100", + "coordonnees_gps": [ + 47.3776500721, + 5.58714893059 + ], + "libelle_d_acheminement": "LE TREMBLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58714893059, + 47.3776500721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "298ed610a4f6b24e7519f68014af23609b78e489", + "fields": { + "code_commune_insee": "70506", + "nom_de_la_commune": "TREMOINS", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5648137282, + 6.70462228201 + ], + "libelle_d_acheminement": "TREMOINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70462228201, + 47.5648137282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38061ae8ace12f2523e14816d6c0c005aca6f315", + "fields": { + "code_commune_insee": "70511", + "nom_de_la_commune": "VAITE", + "code_postal": "70180", + "coordonnees_gps": [ + 47.5846720639, + 5.71496489496 + ], + "libelle_d_acheminement": "VAITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71496489496, + 47.5846720639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45200854c70bc18641ffe34b22baff409d938215", + "fields": { + "code_commune_insee": "70513", + "nom_de_la_commune": "VAIVRE ET MONTOILLE", + "code_postal": "70000", + "coordonnees_gps": [ + 47.633860629, + 6.10644479493 + ], + "libelle_d_acheminement": "VAIVRE ET MONTOILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10644479493, + 47.633860629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49319938a62656865c9f6e336761181560f8eb52", + "fields": { + "code_commune_insee": "70522", + "nom_de_la_commune": "VAROGNE", + "code_postal": "70240", + "coordonnees_gps": [ + 47.7190126678, + 6.20728397771 + ], + "libelle_d_acheminement": "VAROGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20728397771, + 47.7190126678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e715ceea852528d0901cfe8daff24fc3aa13c49f", + "fields": { + "code_commune_insee": "70531", + "nom_de_la_commune": "VELLECLAIRE", + "code_postal": "70700", + "coordonnees_gps": [ + 47.4257773503, + 5.87383892919 + ], + "libelle_d_acheminement": "VELLECLAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87383892919, + 47.4257773503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b95e910cb1b9d11f850ab56f681dbec3567d4b1e", + "fields": { + "code_commune_insee": "70535", + "nom_de_la_commune": "VELLEGUINDRY ET LEVRECEY", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5563995344, + 6.08993283091 + ], + "libelle_d_acheminement": "VELLEGUINDRY ET LEVRECEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08993283091, + 47.5563995344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a220cb5c9114d187b777014dbc82bcc1e1e3e7f1", + "fields": { + "code_commune_insee": "70537", + "nom_de_la_commune": "VELLEMINFROY", + "code_postal": "70240", + "coordonnees_gps": [ + 47.6600380526, + 6.31768021672 + ], + "libelle_d_acheminement": "VELLEMINFROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31768021672, + 47.6600380526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a816b852578280f8176aef3023ac174f789f42d", + "fields": { + "code_commune_insee": "70545", + "nom_de_la_commune": "VENISEY", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8354222731, + 6.00091771151 + ], + "libelle_d_acheminement": "VENISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00091771151, + 47.8354222731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5fdf6632fff4a7fac1049c96b18c561b5feb2b6", + "fields": { + "code_commune_insee": "70547", + "nom_de_la_commune": "VERLANS", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5703887849, + 6.71887157746 + ], + "libelle_d_acheminement": "VERLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71887157746, + 47.5703887849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25b264cd8cc438956622b6968bd93894aaef6078", + "fields": { + "code_commune_insee": "70549", + "nom_de_la_commune": "LA VERNOTTE", + "code_postal": "70130", + "coordonnees_gps": [ + 47.5093017415, + 5.8714246202 + ], + "libelle_d_acheminement": "LA VERNOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8714246202, + 47.5093017415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2977bcc75da7927bdc6c18f742b86a41af874483", + "fields": { + "code_commune_insee": "70554", + "nom_de_la_commune": "VILLARS LE PAUTEL", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8959698741, + 5.92002657844 + ], + "libelle_d_acheminement": "VILLARS LE PAUTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92002657844, + 47.8959698741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac310dd671c30953bd6e6e673a3b508ae7afabfa", + "fields": { + "code_commune_insee": "70555", + "nom_de_la_commune": "LA VILLEDIEU EN FONTENETTE", + "code_postal": "70160", + "coordonnees_gps": [ + 47.7712074637, + 6.20381518294 + ], + "libelle_d_acheminement": "LA VILLEDIEU EN FONTENETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20381518294, + 47.7712074637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "411a289c51f02e1174e039d1b802de9cded4d61a", + "fields": { + "code_commune_insee": "70564", + "nom_de_la_commune": "VILLERS LES LUXEUIL", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7687966014, + 6.27995216443 + ], + "libelle_d_acheminement": "VILLERS LES LUXEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27995216443, + 47.7687966014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc6feee96f29e0d364d611b78a5fa2e650bc74a9", + "fields": { + "code_commune_insee": "70574", + "nom_de_la_commune": "VOLON", + "code_postal": "70180", + "coordonnees_gps": [ + 47.6261770622, + 5.7378809498 + ], + "libelle_d_acheminement": "VOLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7378809498, + 47.6261770622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6e34ab32ad0238c93b10f7109f85335d606a796", + "fields": { + "code_commune_insee": "70581", + "nom_de_la_commune": "VY LES LURE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.650001251, + 6.44237601386 + ], + "libelle_d_acheminement": "VY LES LURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44237601386, + 47.650001251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a819c4ceeaf8040814d62e3175046a205a199299", + "fields": { + "code_commune_insee": "70582", + "nom_de_la_commune": "VY LES RUPT", + "code_postal": "70120", + "coordonnees_gps": [ + 47.6393561962, + 5.89227575956 + ], + "libelle_d_acheminement": "VY LES RUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89227575956, + 47.6393561962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c354e34bd8237a0cb15bd8edd10f24f6ac92b13", + "fields": { + "code_commune_insee": "71010", + "nom_de_la_commune": "ANTULLY", + "code_postal": "71400", + "coordonnees_gps": [ + 46.8926537731, + 4.40284807189 + ], + "libelle_d_acheminement": "ANTULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40284807189, + 46.8926537731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb0ee180fb175b0f834b080e0bd426b662e623da", + "fields": { + "ligne_5": "ST PANTALEON", + "code_commune_insee": "71014", + "libelle_d_acheminement": "AUTUN", + "code_postal": "71400", + "nom_de_la_commune": "AUTUN", + "coordonnees_gps": [ + 46.945536773, + 4.31060069532 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31060069532, + 46.945536773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad2fb3dcbb2781e639e7c5809ff24d6682e920d7", + "fields": { + "code_commune_insee": "71019", + "nom_de_la_commune": "BARIZEY", + "code_postal": "71640", + "coordonnees_gps": [ + 46.7917541418, + 4.6720477978 + ], + "libelle_d_acheminement": "BARIZEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6720477978, + 46.7917541418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58c0181f7f4b64abe685dffdd7b3b66120082a46", + "fields": { + "code_commune_insee": "71027", + "nom_de_la_commune": "BEAUREPAIRE EN BRESSE", + "code_postal": "71580", + "coordonnees_gps": [ + 46.6672623715, + 5.39464840853 + ], + "libelle_d_acheminement": "BEAUREPAIRE EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39464840853, + 46.6672623715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d5b5569774d060e7a47d6f32cf1596f9c5fcef9", + "fields": { + "code_commune_insee": "71028", + "nom_de_la_commune": "BEAUVERNOIS", + "code_postal": "71270", + "coordonnees_gps": [ + 46.8413806403, + 5.4403170068 + ], + "libelle_d_acheminement": "BEAUVERNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4403170068, + 46.8413806403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ccdefddc1d7e054da6a6efdc5d205331baf31c4", + "fields": { + "code_commune_insee": "71043", + "nom_de_la_commune": "LES BORDES", + "code_postal": "71350", + "coordonnees_gps": [ + 46.8986962713, + 5.04813103141 + ], + "libelle_d_acheminement": "LES BORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04813103141, + 46.8986962713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe41ed086ea0e182cc4d0fd34ddee2a16f5564d6", + "fields": { + "code_commune_insee": "71044", + "nom_de_la_commune": "BOSJEAN", + "code_postal": "71330", + "coordonnees_gps": [ + 46.7696786287, + 5.34727924927 + ], + "libelle_d_acheminement": "BOSJEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34727924927, + 46.7696786287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fdf37c9784f89c86b47161e663b2eae1a537d9e", + "fields": { + "code_commune_insee": "71046", + "nom_de_la_commune": "LA BOULAYE", + "code_postal": "71320", + "coordonnees_gps": [ + 46.7373325553, + 4.1515013438 + ], + "libelle_d_acheminement": "LA BOULAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1515013438, + 46.7373325553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94332cf917f9a6bc15468e6d56bb240740f29cd4", + "fields": { + "code_commune_insee": "71048", + "nom_de_la_commune": "BOURG LE COMTE", + "code_postal": "71110", + "coordonnees_gps": [ + 46.3102835322, + 3.9837558428 + ], + "libelle_d_acheminement": "BOURG LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9837558428, + 46.3102835322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f7ceeaedabdc6eadbfb619668dab50d92e44e2b", + "fields": { + "code_commune_insee": "71056", + "nom_de_la_commune": "BRANGES", + "code_postal": "71500", + "coordonnees_gps": [ + 46.652956978, + 5.16400928644 + ], + "libelle_d_acheminement": "BRANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16400928644, + 46.652956978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71efef5fc1b4c64ed3b39c93b29bf122f1494db3", + "fields": { + "code_commune_insee": "71063", + "nom_de_la_commune": "BROYE", + "code_postal": "71190", + "coordonnees_gps": [ + 46.888541214, + 4.30809477889 + ], + "libelle_d_acheminement": "BROYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30809477889, + 46.888541214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3923b3884bfaf33d002a46090da507cfc44375b0", + "fields": { + "code_commune_insee": "71064", + "nom_de_la_commune": "BRUAILLES", + "code_postal": "71500", + "coordonnees_gps": [ + 46.5971442892, + 5.25884270547 + ], + "libelle_d_acheminement": "BRUAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25884270547, + 46.5971442892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ccaa5e5f608baade0610ec9d78a4fdfc273e9f6", + "fields": { + "code_commune_insee": "71069", + "nom_de_la_commune": "BUSSIERES", + "code_postal": "71960", + "coordonnees_gps": [ + 46.333719714, + 4.71047131646 + ], + "libelle_d_acheminement": "BUSSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71047131646, + 46.333719714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5e698255e80a16d830b71f97975573b2425770b", + "fields": { + "code_commune_insee": "71070", + "nom_de_la_commune": "BUXY", + "code_postal": "71390", + "coordonnees_gps": [ + 46.7130408432, + 4.71342619185 + ], + "libelle_d_acheminement": "BUXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71342619185, + 46.7130408432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29d9e5bdefde562c821de6befe54842ab9272eef", + "fields": { + "code_commune_insee": "71071", + "nom_de_la_commune": "CERON", + "code_postal": "71110", + "coordonnees_gps": [ + 46.2805440909, + 3.93730889705 + ], + "libelle_d_acheminement": "CERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93730889705, + 46.2805440909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2a9c287bfe6f5031323ecc648ae2df339efbad1", + "fields": { + "code_commune_insee": "71072", + "nom_de_la_commune": "CERSOT", + "code_postal": "71390", + "coordonnees_gps": [ + 46.7053648589, + 4.63239889903 + ], + "libelle_d_acheminement": "CERSOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63239889903, + 46.7053648589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bf58b99477909a370fdba27e4e57f11ee9ccf74", + "fields": { + "code_commune_insee": "71076", + "nom_de_la_commune": "CHALON SUR SAONE", + "code_postal": "71100", + "coordonnees_gps": [ + 46.7900288793, + 4.85191555008 + ], + "libelle_d_acheminement": "CHALON SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85191555008, + 46.7900288793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e403b74ed07fcd0800131dcd00c718101975eb6", + "fields": { + "code_commune_insee": "71082", + "nom_de_la_commune": "CHAMPLECY", + "code_postal": "71120", + "coordonnees_gps": [ + 46.4628044788, + 4.22805088541 + ], + "libelle_d_acheminement": "CHAMPLECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22805088541, + 46.4628044788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eda6449915648cd493d5d8a0e221c2123a77cbe", + "fields": { + "ligne_5": "LA CHAPELLE PONTANEVAUX", + "code_commune_insee": "71090", + "libelle_d_acheminement": "LA CHAPELLE DE GUINCHAY", + "code_postal": "71570", + "nom_de_la_commune": "LA CHAPELLE DE GUINCHAY", + "coordonnees_gps": [ + 46.2183395706, + 4.76075538674 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76075538674, + 46.2183395706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf1dde3924294c7f978c7ac72f893fe9c7e1210c", + "fields": { + "code_commune_insee": "71093", + "nom_de_la_commune": "LA CHAPELLE ST SAUVEUR", + "code_postal": "71310", + "coordonnees_gps": [ + 46.8468026106, + 5.26448829043 + ], + "libelle_d_acheminement": "LA CHAPELLE ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26448829043, + 46.8468026106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85a1840fb6bc3325a80a9b58ccec074b36bb7955", + "fields": { + "code_commune_insee": "71094", + "nom_de_la_commune": "LA CHAPELLE SOUS BRANCION", + "code_postal": "71700", + "coordonnees_gps": [ + 46.5559348952, + 4.78706778132 + ], + "libelle_d_acheminement": "LA CHAPELLE SOUS BRANCION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78706778132, + 46.5559348952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0493992fdb40cc4233005d8adc7090bdcce24381", + "fields": { + "code_commune_insee": "71099", + "nom_de_la_commune": "CHARBONNIERES", + "code_postal": "71260", + "coordonnees_gps": [ + 46.3887744081, + 4.83162031903 + ], + "libelle_d_acheminement": "CHARBONNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83162031903, + 46.3887744081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d712a14db67017172f8764b3bd131608daa1e8c", + "fields": { + "ligne_5": "VARENNE SUR LE DOUBS", + "code_commune_insee": "71101", + "libelle_d_acheminement": "CHARETTE VARENNES", + "code_postal": "71270", + "nom_de_la_commune": "CHARETTE VARENNES", + "coordonnees_gps": [ + 46.9006196221, + 5.19727816775 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19727816775, + 46.9006196221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb26a905e8f4cdf83365e645e7505c34a5bda685", + "fields": { + "code_commune_insee": "71105", + "nom_de_la_commune": "CHARNAY LES MACON", + "code_postal": "71850", + "coordonnees_gps": [ + 46.3041852737, + 4.78693813476 + ], + "libelle_d_acheminement": "CHARNAY LES MACON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78693813476, + 46.3041852737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeb83be2bc7bf283ddc663c62329f27a680a0e72", + "fields": { + "code_commune_insee": "71112", + "nom_de_la_commune": "CHATEAU", + "code_postal": "71250", + "coordonnees_gps": [ + 46.4222263876, + 4.59356497363 + ], + "libelle_d_acheminement": "CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59356497363, + 46.4222263876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e7a068cb3b010fe151695b88e8f85eea90489cb", + "fields": { + "code_commune_insee": "71119", + "nom_de_la_commune": "CHAUDENAY", + "code_postal": "71150", + "coordonnees_gps": [ + 46.9154246356, + 4.79538440748 + ], + "libelle_d_acheminement": "CHAUDENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79538440748, + 46.9154246356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dad9f55c31a0c5bf3a3d915958e54436061e14b7", + "fields": { + "code_commune_insee": "71121", + "nom_de_la_commune": "LA CHAUX", + "code_postal": "71310", + "coordonnees_gps": [ + 46.8226144674, + 5.27235831208 + ], + "libelle_d_acheminement": "LA CHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27235831208, + 46.8226144674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a524c4e5fb9db5e455ea3ba1b0d1b2a9a65c526f", + "fields": { + "ligne_5": "BRANDON", + "code_commune_insee": "71134", + "libelle_d_acheminement": "NAVOUR SUR GROSNE", + "code_postal": "71520", + "nom_de_la_commune": "NAVOUR SUR GROSNE", + "coordonnees_gps": [ + 46.3661832627, + 4.58968637273 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58968637273, + 46.3661832627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0acdce318993b9a901aa254ff84f8fdf4e0cad6", + "fields": { + "code_commune_insee": "71143", + "nom_de_la_commune": "CONDAL", + "code_postal": "71480", + "coordonnees_gps": [ + 46.4647126508, + 5.28216575914 + ], + "libelle_d_acheminement": "CONDAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28216575914, + 46.4647126508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74e6a644e51bf71209732843fb4c540a1630b3e9", + "fields": { + "code_commune_insee": "71150", + "nom_de_la_commune": "CRECHES SUR SAONE", + "code_postal": "71680", + "coordonnees_gps": [ + 46.2410718628, + 4.78718291781 + ], + "libelle_d_acheminement": "CRECHES SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78718291781, + 46.2410718628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37852499ba892297698b78007e857c61a663f998", + "fields": { + "code_commune_insee": "71153", + "nom_de_la_commune": "LE CREUSOT", + "code_postal": "71200", + "coordonnees_gps": [ + 46.8068539189, + 4.42642301163 + ], + "libelle_d_acheminement": "LE CREUSOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42642301163, + 46.8068539189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "133c919d8d9de2f8b67bb72d812e519631a80ed2", + "fields": { + "code_commune_insee": "71154", + "nom_de_la_commune": "CRISSEY", + "code_postal": "71530", + "coordonnees_gps": [ + 46.8169773833, + 4.88423907508 + ], + "libelle_d_acheminement": "CRISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88423907508, + 46.8169773833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "391424833a2dd738b8cf06f087e6bff08ddf0bac", + "fields": { + "code_commune_insee": "71159", + "nom_de_la_commune": "CULLES LES ROCHES", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6451171565, + 4.65261786019 + ], + "libelle_d_acheminement": "CULLES LES ROCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65261786019, + 46.6451171565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "825ccd87b089558f0ed27375967177e0ac6cccf6", + "fields": { + "code_commune_insee": "71166", + "nom_de_la_commune": "CUZY", + "code_postal": "71320", + "coordonnees_gps": [ + 46.7609852867, + 4.03171098199 + ], + "libelle_d_acheminement": "CUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03171098199, + 46.7609852867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49905dd9ab4df801f334234a409aa91ae3efb93c", + "fields": { + "code_commune_insee": "71168", + "nom_de_la_commune": "DAMPIERRE EN BRESSE", + "code_postal": "71310", + "coordonnees_gps": [ + 46.8274117737, + 5.20316156952 + ], + "libelle_d_acheminement": "DAMPIERRE EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20316156952, + 46.8274117737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aea26e7f1d2d398cb2aa317ca818e4b7331c9f5", + "fields": { + "code_commune_insee": "71172", + "nom_de_la_commune": "DETTEY", + "code_postal": "71190", + "coordonnees_gps": [ + 46.7671010152, + 4.1860690251 + ], + "libelle_d_acheminement": "DETTEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1860690251, + 46.7671010152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1e3e265261a9a130442959d2e8af8cb367c96e7", + "fields": { + "code_commune_insee": "71182", + "nom_de_la_commune": "DRACY LE FORT", + "code_postal": "71640", + "coordonnees_gps": [ + 46.7967008104, + 4.77049585592 + ], + "libelle_d_acheminement": "DRACY LE FORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77049585592, + 46.7967008104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "931c095be6a632607a4e340c3f8672c7eabad636", + "fields": { + "code_commune_insee": "71185", + "nom_de_la_commune": "DYO", + "code_postal": "71800", + "coordonnees_gps": [ + 46.3638960777, + 4.28153745354 + ], + "libelle_d_acheminement": "DYO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28153745354, + 46.3638960777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b53035403ea6eff740e492a04835462535c651d", + "fields": { + "code_commune_insee": "71192", + "nom_de_la_commune": "ETANG SUR ARROUX", + "code_postal": "71190", + "coordonnees_gps": [ + 46.859401459, + 4.17913091336 + ], + "libelle_d_acheminement": "ETANG SUR ARROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17913091336, + 46.859401459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b3628b8362c6f77a994b854fefe5ceb071ca722", + "fields": { + "code_commune_insee": "71202", + "nom_de_la_commune": "FONTAINES", + "code_postal": "71150", + "coordonnees_gps": [ + 46.8516219974, + 4.78077093032 + ], + "libelle_d_acheminement": "FONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78077093032, + 46.8516219974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd758b7ddbc8df05d2c34aa4946748a7aa528e67", + "fields": { + "code_commune_insee": "71212", + "nom_de_la_commune": "GENELARD", + "code_postal": "71420", + "coordonnees_gps": [ + 46.5798385493, + 4.25003029458 + ], + "libelle_d_acheminement": "GENELARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25003029458, + 46.5798385493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b57ebfa695ef575dc272aa39237bf5d6567254f0", + "fields": { + "code_commune_insee": "71213", + "nom_de_la_commune": "LA GENETE", + "code_postal": "71290", + "coordonnees_gps": [ + 46.549436103, + 5.04979591392 + ], + "libelle_d_acheminement": "LA GENETE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04979591392, + 46.549436103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "151fb052c131a75230de727c41fd80e0fd3e3c6b", + "fields": { + "code_commune_insee": "71222", + "nom_de_la_commune": "GOURDON", + "code_postal": "71300", + "coordonnees_gps": [ + 46.6403109594, + 4.4421869118 + ], + "libelle_d_acheminement": "GOURDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4421869118, + 46.6403109594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "877b2cdf25bd13215c64f929b11a90bf29edf82c", + "fields": { + "code_commune_insee": "71236", + "nom_de_la_commune": "IGE", + "code_postal": "71960", + "coordonnees_gps": [ + 46.4053982627, + 4.73487976051 + ], + "libelle_d_acheminement": "IGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73487976051, + 46.4053982627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d44bea661103c8a501da9580c991eb03d530497", + "fields": { + "code_commune_insee": "71238", + "nom_de_la_commune": "IGUERANDE", + "code_postal": "71340", + "coordonnees_gps": [ + 46.2165272056, + 4.07699692762 + ], + "libelle_d_acheminement": "IGUERANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07699692762, + 46.2165272056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fd125f4e74fd1759a096afeea46c5307d035501", + "fields": { + "code_commune_insee": "71247", + "nom_de_la_commune": "JULLY LES BUXY", + "code_postal": "71390", + "coordonnees_gps": [ + 46.6874141273, + 4.72317009125 + ], + "libelle_d_acheminement": "JULLY LES BUXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72317009125, + 46.6874141273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feb99d4781c0306cefef2707d398fc91d9b849c8", + "fields": { + "code_commune_insee": "71249", + "nom_de_la_commune": "LAIVES", + "code_postal": "71240", + "coordonnees_gps": [ + 46.6527155264, + 4.83486721421 + ], + "libelle_d_acheminement": "LAIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83486721421, + 46.6527155264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7de0ff14900500f1f44b302d35d7ca97ae313fa2", + "fields": { + "code_commune_insee": "71250", + "nom_de_la_commune": "LAIZE", + "code_postal": "71870", + "coordonnees_gps": [ + 46.3824360235, + 4.80406518536 + ], + "libelle_d_acheminement": "LAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80406518536, + 46.3824360235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17b9d2b98736fea54c30b869483ef71d9e05c29e", + "fields": { + "code_commune_insee": "71257", + "nom_de_la_commune": "LESSARD LE NATIONAL", + "code_postal": "71530", + "coordonnees_gps": [ + 46.8732289132, + 4.84609901293 + ], + "libelle_d_acheminement": "LESSARD LE NATIONAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84609901293, + 46.8732289132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e06308ffc6cac274a04fc1b62fe9d9547a3a642a", + "fields": { + "code_commune_insee": "71259", + "nom_de_la_commune": "LIGNY EN BRIONNAIS", + "code_postal": "71110", + "coordonnees_gps": [ + 46.2402667832, + 4.20177769774 + ], + "libelle_d_acheminement": "LIGNY EN BRIONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20177769774, + 46.2402667832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a9cb2eb4f9ce25a48bc2d74fbcf13a98c659c62", + "fields": { + "code_commune_insee": "71263", + "nom_de_la_commune": "LOUHANS", + "code_postal": "71500", + "coordonnees_gps": [ + 46.6351883548, + 5.23839292789 + ], + "libelle_d_acheminement": "LOUHANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23839292789, + 46.6351883548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13d0528c3696f73d16fec8e0924d2c1a7e56cd61", + "fields": { + "ligne_5": "CHATEAURENAUD", + "code_commune_insee": "71263", + "libelle_d_acheminement": "LOUHANS", + "code_postal": "71500", + "nom_de_la_commune": "LOUHANS", + "coordonnees_gps": [ + 46.6351883548, + 5.23839292789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23839292789, + 46.6351883548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b06f3568b66e27034adcfcd41c8842185a94687e", + "fields": { + "ligne_5": "SENNECE LES MACON", + "code_commune_insee": "71270", + "libelle_d_acheminement": "MACON", + "code_postal": "71000", + "nom_de_la_commune": "MACON", + "coordonnees_gps": [ + 46.3205511756, + 4.81842529639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81842529639, + 46.3205511756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85031cf43880a9454d6096ed638c53e8fbb8b718", + "fields": { + "code_commune_insee": "71281", + "nom_de_la_commune": "MARLY SUR ARROUX", + "code_postal": "71420", + "coordonnees_gps": [ + 46.6196801412, + 4.13156192602 + ], + "libelle_d_acheminement": "MARLY SUR ARROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13156192602, + 46.6196801412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b255f641a34c63af0158741e38c7660f881c22d", + "fields": { + "code_commune_insee": "71283", + "nom_de_la_commune": "MARNAY", + "code_postal": "71240", + "coordonnees_gps": [ + 46.6987582427, + 4.92604799837 + ], + "libelle_d_acheminement": "MARNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92604799837, + 46.6987582427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94f946a0df340535e39a79d1c21f7f739ec3b2f2", + "fields": { + "ligne_5": "GERMOLLES", + "code_commune_insee": "71292", + "libelle_d_acheminement": "MELLECEY", + "code_postal": "71640", + "nom_de_la_commune": "MELLECEY", + "coordonnees_gps": [ + 46.8104311793, + 4.7565417637 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7565417637, + 46.8104311793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39ab9becafd2365f8ec275e4f8a5108435ff4485", + "fields": { + "code_commune_insee": "71306", + "nom_de_la_commune": "MONTCEAU LES MINES", + "code_postal": "71300", + "coordonnees_gps": [ + 46.6762539128, + 4.3540960404 + ], + "libelle_d_acheminement": "MONTCEAU LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3540960404, + 46.6762539128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d773e377a1b61d7fe109934c1cc197a50ed98991", + "fields": { + "code_commune_insee": "71311", + "nom_de_la_commune": "MONTCONY", + "code_postal": "71500", + "coordonnees_gps": [ + 46.6943670716, + 5.29800608262 + ], + "libelle_d_acheminement": "MONTCONY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29800608262, + 46.6943670716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "960cbb80163b179222141d9da906ad12d2538a06", + "fields": { + "code_commune_insee": "71316", + "nom_de_la_commune": "MONTMELARD", + "code_postal": "71520", + "coordonnees_gps": [ + 46.3421169485, + 4.41407367209 + ], + "libelle_d_acheminement": "MONTMELARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41407367209, + 46.3421169485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ce3c688e0681c8e5d2a5c399e3bf7a1677ac1a2", + "fields": { + "code_commune_insee": "71317", + "nom_de_la_commune": "MONTMORT", + "code_postal": "71320", + "coordonnees_gps": [ + 46.7418911079, + 4.09607288589 + ], + "libelle_d_acheminement": "MONTMORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09607288589, + 46.7418911079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "763e9390973df8e32653335bcc5feb5bf4511a76", + "fields": { + "code_commune_insee": "71329", + "nom_de_la_commune": "NAVILLY", + "code_postal": "71270", + "coordonnees_gps": [ + 46.9284745707, + 5.14455605951 + ], + "libelle_d_acheminement": "NAVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14455605951, + 46.9284745707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92467c81c8d4c3cc4da2a3acc63f73b160d815cd", + "fields": { + "code_commune_insee": "71331", + "nom_de_la_commune": "NOCHIZE", + "code_postal": "71600", + "coordonnees_gps": [ + 46.4041760827, + 4.16485920346 + ], + "libelle_d_acheminement": "NOCHIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16485920346, + 46.4041760827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a00dc272cf7440e08d2b808fe4e17ba51adb013", + "fields": { + "code_commune_insee": "71333", + "nom_de_la_commune": "OSLON", + "code_postal": "71380", + "coordonnees_gps": [ + 46.7774536923, + 4.94292036797 + ], + "libelle_d_acheminement": "OSLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94292036797, + 46.7774536923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ace6f44d3d59c315fc2f4d7e8d5743f733626814", + "fields": { + "code_commune_insee": "71342", + "nom_de_la_commune": "PARAY LE MONIAL", + "code_postal": "71600", + "coordonnees_gps": [ + 46.4431191464, + 4.11289928796 + ], + "libelle_d_acheminement": "PARAY LE MONIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11289928796, + 46.4431191464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c86542307bfd6979d51185dd25a25c655e3cb8c", + "fields": { + "code_commune_insee": "71344", + "nom_de_la_commune": "PASSY", + "code_postal": "71220", + "coordonnees_gps": [ + 46.5408746813, + 4.53540370263 + ], + "libelle_d_acheminement": "PASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53540370263, + 46.5408746813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb80e58a32f426073f53ab261403317225a269a3", + "fields": { + "code_commune_insee": "71349", + "nom_de_la_commune": "LA PETITE VERRIERE", + "code_postal": "71400", + "coordonnees_gps": [ + 47.044929839, + 4.16692654458 + ], + "libelle_d_acheminement": "LA PETITE VERRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16692654458, + 47.044929839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b9e13751728a294aaa377bbc66e802c9e088672", + "fields": { + "code_commune_insee": "71354", + "nom_de_la_commune": "POISSON", + "code_postal": "71600", + "coordonnees_gps": [ + 46.3808508262, + 4.13353930479 + ], + "libelle_d_acheminement": "POISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13353930479, + 46.3808508262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "539293932365c8adf281124f64f9c42ca594e256", + "fields": { + "code_commune_insee": "71361", + "nom_de_la_commune": "PRIZY", + "code_postal": "71800", + "coordonnees_gps": [ + 46.3515033821, + 4.21820421458 + ], + "libelle_d_acheminement": "PRIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21820421458, + 46.3515033821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef12758c97dda7f2a44af6e3a70d6df2aa1bf21e", + "fields": { + "code_commune_insee": "71363", + "nom_de_la_commune": "LE PULEY", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6760071385, + 4.56588748503 + ], + "libelle_d_acheminement": "LE PULEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56588748503, + 46.6760071385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4816c2b5c98aef36c5be8cc7fbb0f30e3f413b18", + "fields": { + "code_commune_insee": "71371", + "nom_de_la_commune": "LA ROCHE VINEUSE", + "code_postal": "71960", + "coordonnees_gps": [ + 46.3510235915, + 4.74854768422 + ], + "libelle_d_acheminement": "LA ROCHE VINEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74854768422, + 46.3510235915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "962fd7a17827c7c47aa76b38130132369750fea2", + "fields": { + "code_commune_insee": "71379", + "nom_de_la_commune": "SAGY", + "code_postal": "71580", + "coordonnees_gps": [ + 46.5937236673, + 5.3241808449 + ], + "libelle_d_acheminement": "SAGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3241808449, + 46.5937236673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb81ea7017c4fc3883806d528480bb057e6cea99", + "fields": { + "code_commune_insee": "71388", + "nom_de_la_commune": "ST AUBIN EN CHAROLLAIS", + "code_postal": "71430", + "coordonnees_gps": [ + 46.5008361838, + 4.2089560127 + ], + "libelle_d_acheminement": "ST AUBIN EN CHAROLLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2089560127, + 46.5008361838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46aac2a9ca3ab10d08f0bb24d2eb6cc90fa0949a", + "fields": { + "code_commune_insee": "71392", + "nom_de_la_commune": "ST BOIL", + "code_postal": "71390", + "coordonnees_gps": [ + 46.6416818485, + 4.69957680942 + ], + "libelle_d_acheminement": "ST BOIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69957680942, + 46.6416818485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3322684233e14d1edda37336a06ffd6603a9d122", + "fields": { + "code_commune_insee": "71397", + "nom_de_la_commune": "STE CECILE", + "code_postal": "71250", + "coordonnees_gps": [ + 46.3853014921, + 4.6346635997 + ], + "libelle_d_acheminement": "STE CECILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6346635997, + 46.3853014921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa7a35af7d093290e3161f215bf82598968557d8", + "fields": { + "code_commune_insee": "71415", + "nom_de_la_commune": "STE FOY", + "code_postal": "71110", + "coordonnees_gps": [ + 46.2773831538, + 4.13207987925 + ], + "libelle_d_acheminement": "STE FOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13207987925, + 46.2773831538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac8b0ccf3c824153260f9836ac75067b1f73443d", + "fields": { + "code_commune_insee": "71419", + "nom_de_la_commune": "ST GERMAIN DU BOIS", + "code_postal": "71330", + "coordonnees_gps": [ + 46.7400325151, + 5.244824313 + ], + "libelle_d_acheminement": "ST GERMAIN DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.244824313, + 46.7400325151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86d1b87868351bbc97543fd257343ac70ce7dde3", + "fields": { + "code_commune_insee": "71421", + "nom_de_la_commune": "ST GERMAIN EN BRIONNAIS", + "code_postal": "71800", + "coordonnees_gps": [ + 46.3465365136, + 4.25107234474 + ], + "libelle_d_acheminement": "ST GERMAIN EN BRIONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25107234474, + 46.3465365136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4a99c9e53842847f2e32c43ddacb1647bde7546", + "fields": { + "code_commune_insee": "71426", + "nom_de_la_commune": "STE HELENE", + "code_postal": "71390", + "coordonnees_gps": [ + 46.7577025616, + 4.63460964959 + ], + "libelle_d_acheminement": "STE HELENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63460964959, + 46.7577025616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7829575d8f16d8beec478082f3018859cff1e6f", + "fields": { + "code_commune_insee": "71430", + "nom_de_la_commune": "ST JEAN DE VAUX", + "code_postal": "71640", + "coordonnees_gps": [ + 46.8066073647, + 4.69575049861 + ], + "libelle_d_acheminement": "ST JEAN DE VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69575049861, + 46.8066073647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d61ef1cabe362030431d1765e0e633dd3e0511a2", + "fields": { + "code_commune_insee": "71435", + "nom_de_la_commune": "ST JULIEN SUR DHEUNE", + "code_postal": "71210", + "coordonnees_gps": [ + 46.7729463186, + 4.54776412393 + ], + "libelle_d_acheminement": "ST JULIEN SUR DHEUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54776412393, + 46.7729463186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ae97986a12f8cdff7a6d351d3f0fd37fb801bd1", + "fields": { + "code_commune_insee": "71440", + "nom_de_la_commune": "ST LEGER SOUS BEUVRAY", + "code_postal": "71990", + "coordonnees_gps": [ + 46.9191539488, + 4.09209757526 + ], + "libelle_d_acheminement": "ST LEGER SOUS BEUVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09209757526, + 46.9191539488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b294dab4b7d60ae28c78d039469d9363367cd414", + "fields": { + "code_commune_insee": "71444", + "nom_de_la_commune": "ST LOUP DE VARENNES", + "code_postal": "71240", + "coordonnees_gps": [ + 46.7239907998, + 4.8521089943 + ], + "libelle_d_acheminement": "ST LOUP DE VARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8521089943, + 46.7239907998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31181b9c30554d2c9259765809f37692f28d4b8e", + "fields": { + "code_commune_insee": "71451", + "nom_de_la_commune": "ST MARTIN DE LIXY", + "code_postal": "71740", + "coordonnees_gps": [ + 46.1966932958, + 4.23849403953 + ], + "libelle_d_acheminement": "ST MARTIN DE LIXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23849403953, + 46.1966932958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2256bcdaf33a78fc1b3d5f1a4f7aefb3e164588", + "fields": { + "code_commune_insee": "71455", + "nom_de_la_commune": "ST MARTIN DU TARTRE", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6484823293, + 4.60684665036 + ], + "libelle_d_acheminement": "ST MARTIN DU TARTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60684665036, + 46.6484823293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22167fb8d3274f44cb7f229b3366485ad10f463c", + "fields": { + "code_commune_insee": "71456", + "nom_de_la_commune": "ST MARTIN EN BRESSE", + "code_postal": "71620", + "coordonnees_gps": [ + 46.8045036563, + 5.06009460958 + ], + "libelle_d_acheminement": "ST MARTIN EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06009460958, + 46.8045036563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d38fc84302e9ef73c1eec6e6bbdcbb77464e134", + "fields": { + "code_commune_insee": "71462", + "nom_de_la_commune": "ST MAURICE EN RIVIERE", + "code_postal": "71620", + "coordonnees_gps": [ + 46.8493063168, + 5.02211527314 + ], + "libelle_d_acheminement": "ST MAURICE EN RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02211527314, + 46.8493063168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52a9ec51d7cd8c06ac4a98beee9d5f1a853541b3", + "fields": { + "code_commune_insee": "71463", + "nom_de_la_commune": "ST MAURICE LES CHATEAUNEUF", + "code_postal": "71740", + "coordonnees_gps": [ + 46.2267056236, + 4.25094648512 + ], + "libelle_d_acheminement": "ST MAURICE LES CHATEAUNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25094648512, + 46.2267056236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a1fdab02856569a4a97b493aa4fd6590120a693", + "fields": { + "code_commune_insee": "71472", + "nom_de_la_commune": "ST PRIX", + "code_postal": "71990", + "coordonnees_gps": [ + 46.972172044, + 4.06111114828 + ], + "libelle_d_acheminement": "ST PRIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06111114828, + 46.972172044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b1cac117a93af8e7cf55b11292ed57d07370926", + "fields": { + "code_commune_insee": "71473", + "nom_de_la_commune": "ST RACHO", + "code_postal": "71800", + "coordonnees_gps": [ + 46.2627274208, + 4.37370876485 + ], + "libelle_d_acheminement": "ST RACHO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37370876485, + 46.2627274208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc565ccbff5146a138cfeb7c6ab8b8920ea9c537", + "fields": { + "code_commune_insee": "71482", + "nom_de_la_commune": "ST SYMPHORIEN DE MARMAGNE", + "code_postal": "71710", + "coordonnees_gps": [ + 46.8287800978, + 4.31825474649 + ], + "libelle_d_acheminement": "ST SYMPHORIEN DE MARMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31825474649, + 46.8287800978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c3a42fc1401f1ec0fcd92d75da06d11f2cfd0a0", + "fields": { + "code_commune_insee": "71484", + "nom_de_la_commune": "ST USUGE", + "code_postal": "71500", + "coordonnees_gps": [ + 46.690095883, + 5.24143476661 + ], + "libelle_d_acheminement": "ST USUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24143476661, + 46.690095883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0c4b93dd5d386ac4feea1e8eb38e0c1fd0ce343", + "fields": { + "code_commune_insee": "71490", + "nom_de_la_commune": "ST VINCENT BRAGNY", + "code_postal": "71430", + "coordonnees_gps": [ + 46.5253910915, + 4.12604476033 + ], + "libelle_d_acheminement": "ST VINCENT BRAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12604476033, + 46.5253910915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9e04a2062170ebf5f117a70cd0e578209423dab", + "fields": { + "code_commune_insee": "71494", + "nom_de_la_commune": "LA SALLE", + "code_postal": "71260", + "coordonnees_gps": [ + 46.4089574233, + 4.86086523972 + ], + "libelle_d_acheminement": "LA SALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86086523972, + 46.4089574233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6064203a55c2959692cdc639bb665705a523d9c", + "fields": { + "code_commune_insee": "71503", + "nom_de_la_commune": "SAULES", + "code_postal": "71390", + "coordonnees_gps": [ + 46.6559200534, + 4.67477291847 + ], + "libelle_d_acheminement": "SAULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67477291847, + 46.6559200534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9793de4bfabf12eaab3283dd1b158b1be4de893", + "fields": { + "code_commune_insee": "71506", + "nom_de_la_commune": "SAVIGNY EN REVERMONT", + "code_postal": "71580", + "coordonnees_gps": [ + 46.6336562271, + 5.39078988387 + ], + "libelle_d_acheminement": "SAVIGNY EN REVERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39078988387, + 46.6336562271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfb42754f4d96246a39d2c226f8e9d292043a418", + "fields": { + "code_commune_insee": "71512", + "nom_de_la_commune": "SENNECEY LE GRAND", + "code_postal": "71240", + "coordonnees_gps": [ + 46.6369174742, + 4.8906553054 + ], + "libelle_d_acheminement": "SENNECEY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8906553054, + 46.6369174742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46ee34eae0983f3633e91a23d0674f10362f1651", + "fields": { + "code_commune_insee": "71513", + "nom_de_la_commune": "SENOZAN", + "code_postal": "71260", + "coordonnees_gps": [ + 46.3967416331, + 4.86457842244 + ], + "libelle_d_acheminement": "SENOZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86457842244, + 46.3967416331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f533c5df5648e35aa3d1e9d9a3fc2caa557fbe3", + "fields": { + "code_commune_insee": "71518", + "nom_de_la_commune": "SERRIERES", + "code_postal": "71960", + "coordonnees_gps": [ + 46.3106483119, + 4.66614748504 + ], + "libelle_d_acheminement": "SERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66614748504, + 46.3106483119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e995bff0ca02f9f22194dae1e40c5ab1a6c2547d", + "fields": { + "code_commune_insee": "71523", + "nom_de_la_commune": "SIMARD", + "code_postal": "71330", + "coordonnees_gps": [ + 46.7167185165, + 5.18255120169 + ], + "libelle_d_acheminement": "SIMARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18255120169, + 46.7167185165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8213f557914882ade68e0ffe17272bb825dc8df2", + "fields": { + "code_commune_insee": "71534", + "nom_de_la_commune": "LE TARTRE", + "code_postal": "71330", + "coordonnees_gps": [ + 46.7429466505, + 5.35271245031 + ], + "libelle_d_acheminement": "LE TARTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35271245031, + 46.7429466505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb1172d0dcc219a1cc62ed10e45b020789a6257f", + "fields": { + "code_commune_insee": "71540", + "nom_de_la_commune": "TORCY", + "code_postal": "71210", + "coordonnees_gps": [ + 46.7663790814, + 4.44629007139 + ], + "libelle_d_acheminement": "TORCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44629007139, + 46.7663790814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55cb2d2a376f2c08947664852e2aac7d22859c37", + "fields": { + "code_commune_insee": "71544", + "nom_de_la_commune": "TOUTENANT", + "code_postal": "71350", + "coordonnees_gps": [ + 46.8707263805, + 5.11407040024 + ], + "libelle_d_acheminement": "TOUTENANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11407040024, + 46.8707263805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f48ecf9e56b7da53b8fbe95d51a5e06887e546b5", + "fields": { + "code_commune_insee": "71551", + "nom_de_la_commune": "UCHON", + "code_postal": "71190", + "coordonnees_gps": [ + 46.809110092, + 4.26277763328 + ], + "libelle_d_acheminement": "UCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26277763328, + 46.809110092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4456844d9eb2f00baccfae3bec015fb0910fa4c", + "fields": { + "code_commune_insee": "71555", + "nom_de_la_commune": "VARENNES LE GRAND", + "code_postal": "71240", + "coordonnees_gps": [ + 46.7100754692, + 4.87819266492 + ], + "libelle_d_acheminement": "VARENNES LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87819266492, + 46.7100754692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70d6804a92d2f4a0dd9ef50d04a6bc25b6e257d7", + "fields": { + "code_commune_insee": "71563", + "nom_de_la_commune": "VAUX EN PRE", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6226496963, + 4.60188954425 + ], + "libelle_d_acheminement": "VAUX EN PRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60188954425, + 46.6226496963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38b50355e664f7fd9c89f61129b17569b00c48e6", + "fields": { + "code_commune_insee": "71565", + "nom_de_la_commune": "VENDENESSE SUR ARROUX", + "code_postal": "71130", + "coordonnees_gps": [ + 46.6312878987, + 4.06699365685 + ], + "libelle_d_acheminement": "VENDENESSE SUR ARROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06699365685, + 46.6312878987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99c3b244e87c54b0c99eb3d0a620f9c434fbc033", + "fields": { + "code_commune_insee": "71571", + "nom_de_la_commune": "VEROSVRES", + "code_postal": "71220", + "coordonnees_gps": [ + 46.3956596645, + 4.44032061495 + ], + "libelle_d_acheminement": "VEROSVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44032061495, + 46.3956596645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d69ec78ec2333193b05f5d80e2bb471ee12a7612", + "fields": { + "code_commune_insee": "71574", + "nom_de_la_commune": "VERZE", + "code_postal": "71960", + "coordonnees_gps": [ + 46.3779055015, + 4.73671320238 + ], + "libelle_d_acheminement": "VERZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73671320238, + 46.3779055015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfcdb3e9a02233af2d78d9ca698a46cee4a3ce9d", + "fields": { + "code_commune_insee": "71578", + "nom_de_la_commune": "CLUX VILLENEUVE", + "code_postal": "71270", + "coordonnees_gps": [ + 46.9572279729, + 5.16839319569 + ], + "libelle_d_acheminement": "CLUX VILLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16839319569, + 46.9572279729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "504668f236436ce3dc4c26db992e81b7660ddbbf", + "fields": { + "ligne_5": "LA VINEUSE", + "code_commune_insee": "71582", + "libelle_d_acheminement": "LA VINEUSE SUR FREGANDE", + "code_postal": "71250", + "nom_de_la_commune": "LA VINEUSE SUR FREGANDE", + "coordonnees_gps": [ + 46.4606978689, + 4.60125621922 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60125621922, + 46.4606978689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b4b065d653274673ce5a2475279180e9ced8589", + "fields": { + "ligne_5": "VITRY LES CLUNY", + "code_commune_insee": "71582", + "libelle_d_acheminement": "LA VINEUSE SUR FREGANDE", + "code_postal": "71250", + "nom_de_la_commune": "LA VINEUSE SUR FREGANDE", + "coordonnees_gps": [ + 46.4606978689, + 4.60125621922 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60125621922, + 46.4606978689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f11ed544048e0a17077a5ee7ef5ccc2a5ce78dd0", + "fields": { + "code_commune_insee": "71590", + "nom_de_la_commune": "VOLESVRES", + "code_postal": "71600", + "coordonnees_gps": [ + 46.4730942856, + 4.16777937135 + ], + "libelle_d_acheminement": "VOLESVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16777937135, + 46.4730942856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62920b60e2f3e1c82d3d2eff5a402d70d65d11f5", + "fields": { + "code_commune_insee": "72008", + "nom_de_la_commune": "ARNAGE", + "code_postal": "72230", + "coordonnees_gps": [ + 47.9292220095, + 0.191344248929 + ], + "libelle_d_acheminement": "ARNAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.191344248929, + 47.9292220095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1788d56919446e2321e2ef758056ed71401a78a2", + "fields": { + "code_commune_insee": "72016", + "nom_de_la_commune": "AUVERS LE HAMON", + "code_postal": "72300", + "coordonnees_gps": [ + 47.903917058, + -0.345078374369 + ], + "libelle_d_acheminement": "AUVERS LE HAMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.345078374369, + 47.903917058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7775ba1f5ab80a687c45a2d19809fe494079e82a", + "fields": { + "code_commune_insee": "72019", + "nom_de_la_commune": "AVESSE", + "code_postal": "72350", + "coordonnees_gps": [ + 47.9573422992, + -0.267295988986 + ], + "libelle_d_acheminement": "AVESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.267295988986, + 47.9573422992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a74514219071b9ef13719972beb1fb2fc920b9a1", + "fields": { + "ligne_5": "BALLON", + "code_commune_insee": "72023", + "libelle_d_acheminement": "BALLON ST MARS", + "code_postal": "72290", + "nom_de_la_commune": "BALLON ST MARS", + "coordonnees_gps": [ + 48.1716510339, + 0.226519968503 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.226519968503, + 48.1716510339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b4ecdf42816e9156b604131b0ae354bf02c53be", + "fields": { + "code_commune_insee": "72027", + "nom_de_la_commune": "BEAUMONT SUR DEME", + "code_postal": "72340", + "coordonnees_gps": [ + 47.6873211629, + 0.579539611616 + ], + "libelle_d_acheminement": "BEAUMONT SUR DEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.579539611616, + 47.6873211629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "962e7da3a8e56ed6fce51a7e3510cb65b0b5f9ef", + "fields": { + "code_commune_insee": "72028", + "nom_de_la_commune": "BEAUMONT PIED DE BOEUF", + "code_postal": "72500", + "coordonnees_gps": [ + 47.7574486606, + 0.38353114802 + ], + "libelle_d_acheminement": "BEAUMONT PIED DE BOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38353114802, + 47.7574486606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e9ea827860f28757b99dd3a3e9fbd3a6b076620", + "fields": { + "code_commune_insee": "72032", + "nom_de_la_commune": "BERFAY", + "code_postal": "72320", + "coordonnees_gps": [ + 48.0023104165, + 0.750071551186 + ], + "libelle_d_acheminement": "BERFAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.750071551186, + 48.0023104165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b711b37dd9af1b7a82fb6b95a7f4855cb5dc595", + "fields": { + "code_commune_insee": "72042", + "nom_de_la_commune": "BOULOIRE", + "code_postal": "72440", + "coordonnees_gps": [ + 47.9677979192, + 0.550965416522 + ], + "libelle_d_acheminement": "BOULOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.550965416522, + 47.9677979192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c46e5916a52f3cdfaebc9c07c3cee1560544b66c", + "fields": { + "code_commune_insee": "72043", + "nom_de_la_commune": "BOURG LE ROI", + "code_postal": "72610", + "coordonnees_gps": [ + 48.3460739531, + 0.132093521683 + ], + "libelle_d_acheminement": "BOURG LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.132093521683, + 48.3460739531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b22ef96ed06de6611518dfd4d44f9779d1002d5", + "fields": { + "code_commune_insee": "72046", + "nom_de_la_commune": "LE BREIL SUR MERIZE", + "code_postal": "72370", + "coordonnees_gps": [ + 47.9957779709, + 0.499488585442 + ], + "libelle_d_acheminement": "LE BREIL SUR MERIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.499488585442, + 47.9957779709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1c66641f68b5cdd27ea41a7065bfc8d72e5d499", + "fields": { + "code_commune_insee": "72052", + "nom_de_la_commune": "CHAHAIGNES", + "code_postal": "72340", + "coordonnees_gps": [ + 47.752016178, + 0.513758960916 + ], + "libelle_d_acheminement": "CHAHAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.513758960916, + 47.752016178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d5c4211b9a3addb070ac63d3f87c54205f59267", + "fields": { + "code_commune_insee": "72053", + "nom_de_la_commune": "CHALLES", + "code_postal": "72250", + "coordonnees_gps": [ + 47.9342773547, + 0.428982036509 + ], + "libelle_d_acheminement": "CHALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.428982036509, + 47.9342773547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93a1e3d2fbdf802ea4efa5ed2a1d77d1a6cf710d", + "fields": { + "code_commune_insee": "72059", + "nom_de_la_commune": "CHANTENAY VILLEDIEU", + "code_postal": "72430", + "coordonnees_gps": [ + 47.9198250308, + -0.154140183084 + ], + "libelle_d_acheminement": "CHANTENAY VILLEDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.154140183084, + 47.9198250308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "416d3a41cbf8d94621cf8a6eec3bf0114644ec0e", + "fields": { + "code_commune_insee": "72060", + "nom_de_la_commune": "LA CHAPELLE AUX CHOUX", + "code_postal": "72800", + "coordonnees_gps": [ + 47.6277588052, + 0.229975214122 + ], + "libelle_d_acheminement": "LA CHAPELLE AUX CHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.229975214122, + 47.6277588052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b9ba8ba9a498e2130a19349505ad41784a7d311", + "fields": { + "code_commune_insee": "72064", + "nom_de_la_commune": "LA CHAPELLE HUON", + "code_postal": "72310", + "coordonnees_gps": [ + 47.8558757031, + 0.718983213265 + ], + "libelle_d_acheminement": "LA CHAPELLE HUON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.718983213265, + 47.8558757031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "814a03114037eb1652dc5a19e1b8a8a7ef0a3933", + "fields": { + "ligne_5": "COEMONT", + "code_commune_insee": "72071", + "libelle_d_acheminement": "MONTVAL SUR LOIR", + "code_postal": "72500", + "nom_de_la_commune": "MONTVAL SUR LOIR", + "coordonnees_gps": [ + 47.702207042, + 0.430642762781 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.430642762781, + 47.702207042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0a20d39451ac92a86fe7ed8d641510c2bb8e3bf", + "fields": { + "ligne_5": "MONTABON", + "code_commune_insee": "72071", + "libelle_d_acheminement": "MONTVAL SUR LOIR", + "code_postal": "72500", + "nom_de_la_commune": "MONTVAL SUR LOIR", + "coordonnees_gps": [ + 47.702207042, + 0.430642762781 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.430642762781, + 47.702207042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e15a4a50652386ea6b6e9f682c2ed6fd45ad4b4", + "fields": { + "code_commune_insee": "72076", + "nom_de_la_commune": "CHENAY", + "code_postal": "72610", + "coordonnees_gps": [ + 48.4480039351, + 0.160206730944 + ], + "libelle_d_acheminement": "CHENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.160206730944, + 48.4480039351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5459e6627f2b8d71a1c800eb56081d2ebf7b4f59", + "fields": { + "ligne_5": "CHERRE", + "code_commune_insee": "72080", + "libelle_d_acheminement": "CHERRE AU", + "code_postal": "72400", + "nom_de_la_commune": "CHERRE AU", + "coordonnees_gps": [ + 48.1549219183, + 0.657321436354 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.657321436354, + 48.1549219183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17af0f039ec06a69e4530f4b1f1838bccc658bea", + "fields": { + "code_commune_insee": "72084", + "nom_de_la_commune": "CLERMONT CREANS", + "code_postal": "72200", + "coordonnees_gps": [ + 47.732640164, + -0.0240763113793 + ], + "libelle_d_acheminement": "CLERMONT CREANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0240763113793, + 47.732640164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f88763062aa9b033703c93af64dd5d247d91cc02", + "fields": { + "code_commune_insee": "72088", + "nom_de_la_commune": "CONGE SUR ORNE", + "code_postal": "72290", + "coordonnees_gps": [ + 48.2095776009, + 0.254793307438 + ], + "libelle_d_acheminement": "CONGE SUR ORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.254793307438, + 48.2095776009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fae7fef71470243ef062ede754645ad54e17b440", + "fields": { + "code_commune_insee": "72095", + "nom_de_la_commune": "COULAINES", + "code_postal": "72190", + "coordonnees_gps": [ + 48.0332041252, + 0.211301706062 + ], + "libelle_d_acheminement": "COULAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.211301706062, + 48.0332041252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1067f898889126a7471770237aff32117e9d50f1", + "fields": { + "code_commune_insee": "72096", + "nom_de_la_commune": "COULANS SUR GEE", + "code_postal": "72550", + "coordonnees_gps": [ + 48.0220764526, + 0.0172606870942 + ], + "libelle_d_acheminement": "COULANS SUR GEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0172606870942, + 48.0220764526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "794024e3cbb6fcaae94ea9f4bb4161541dd451da", + "fields": { + "code_commune_insee": "72098", + "nom_de_la_commune": "COULONGE", + "code_postal": "72800", + "coordonnees_gps": [ + 47.6923999815, + 0.194526929998 + ], + "libelle_d_acheminement": "COULONGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.194526929998, + 47.6923999815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1222122ff09e10c088d4528f72480c9e5b24729", + "fields": { + "code_commune_insee": "72113", + "nom_de_la_commune": "DEGRE", + "code_postal": "72550", + "coordonnees_gps": [ + 48.0528331198, + 0.0735665144485 + ], + "libelle_d_acheminement": "DEGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0735665144485, + 48.0528331198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fa3619d6b19e3da9011e1b46d21557c4f02b198", + "fields": { + "code_commune_insee": "72114", + "nom_de_la_commune": "DEHAULT", + "code_postal": "72400", + "coordonnees_gps": [ + 48.208236955, + 0.576083536745 + ], + "libelle_d_acheminement": "DEHAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.576083536745, + 48.208236955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3514dd4b7843e86aa6d674327eb4c6e46b326412", + "fields": { + "code_commune_insee": "72118", + "nom_de_la_commune": "DOLLON", + "code_postal": "72390", + "coordonnees_gps": [ + 48.0360309875, + 0.59353315613 + ], + "libelle_d_acheminement": "DOLLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59353315613, + 48.0360309875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f97392d0f51c0a41ce1c29de14478c04b78835f", + "fields": { + "code_commune_insee": "72124", + "nom_de_la_commune": "ECOMMOY", + "code_postal": "72220", + "coordonnees_gps": [ + 47.8249669123, + 0.284900847455 + ], + "libelle_d_acheminement": "ECOMMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.284900847455, + 47.8249669123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77288af21cee14a0a7382e8cc2f34886d5964b14", + "fields": { + "code_commune_insee": "72130", + "nom_de_la_commune": "FAY", + "code_postal": "72550", + "coordonnees_gps": [ + 48.0006116609, + 0.0719177436046 + ], + "libelle_d_acheminement": "FAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0719177436046, + 48.0006116609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f2dad792196f28d981103f5afea9a7ac5d9fc75", + "fields": { + "code_commune_insee": "72136", + "nom_de_la_commune": "FONTENAY SUR VEGRE", + "code_postal": "72350", + "coordonnees_gps": [ + 47.9074369831, + -0.214830997282 + ], + "libelle_d_acheminement": "FONTENAY SUR VEGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.214830997282, + 47.9074369831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f95fcd796bd4b132a46aa58ca960a300fe402f4", + "fields": { + "code_commune_insee": "72145", + "nom_de_la_commune": "LE GREZ", + "code_postal": "72140", + "coordonnees_gps": [ + 48.189214849, + -0.15566536803 + ], + "libelle_d_acheminement": "LE GREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15566536803, + 48.189214849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1fecd51e7c8af70e97f57b212b174299029aa7a", + "fields": { + "code_commune_insee": "72166", + "nom_de_la_commune": "LONGNES", + "code_postal": "72540", + "coordonnees_gps": [ + 48.0211923594, + -0.0846933792818 + ], + "libelle_d_acheminement": "LONGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0846933792818, + 48.0211923594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58e2d00c8e8953254c1632b2ad517858d91f7986", + "fields": { + "code_commune_insee": "72168", + "nom_de_la_commune": "LOUE", + "code_postal": "72540", + "coordonnees_gps": [ + 47.9976308821, + -0.138237768355 + ], + "libelle_d_acheminement": "LOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.138237768355, + 47.9976308821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bf493a53eccd067630ab19ca8ca6e15c56516d0", + "fields": { + "code_commune_insee": "72169", + "nom_de_la_commune": "LOUPLANDE", + "code_postal": "72210", + "coordonnees_gps": [ + 47.9412506296, + 0.0485514721049 + ], + "libelle_d_acheminement": "LOUPLANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0485514721049, + 47.9412506296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d67192dd15c60a00f0ed7aea3351351c65a3a07", + "fields": { + "code_commune_insee": "72170", + "nom_de_la_commune": "LOUVIGNY", + "code_postal": "72600", + "coordonnees_gps": [ + 48.3361679656, + 0.200765770002 + ], + "libelle_d_acheminement": "LOUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.200765770002, + 48.3361679656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "910a87cd09f7b103c28295e3f794160f55fef759", + "fields": { + "code_commune_insee": "72177", + "nom_de_la_commune": "MAIGNE", + "code_postal": "72210", + "coordonnees_gps": [ + 47.9388716442, + -0.0547288929729 + ], + "libelle_d_acheminement": "MAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0547288929729, + 47.9388716442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a76cf52ab9dcc11c3be6e1b93a675f8269f4229b", + "fields": { + "code_commune_insee": "72179", + "nom_de_la_commune": "MALICORNE SUR SARTHE", + "code_postal": "72270", + "coordonnees_gps": [ + 47.8125544281, + -0.0874543104248 + ], + "libelle_d_acheminement": "MALICORNE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0874543104248, + 47.8125544281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "386bf7de6145c2fb84968ab2041bb4a6a43562f6", + "fields": { + "code_commune_insee": "72183", + "nom_de_la_commune": "MARCON", + "code_postal": "72340", + "coordonnees_gps": [ + 47.7050367685, + 0.526673141254 + ], + "libelle_d_acheminement": "MARCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.526673141254, + 47.7050367685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5271778078105008c2ea5302275a7f72d4ffa6b4", + "fields": { + "code_commune_insee": "72188", + "nom_de_la_commune": "MAROLLETTE", + "code_postal": "72600", + "coordonnees_gps": [ + 48.376493023, + 0.363054801374 + ], + "libelle_d_acheminement": "MAROLLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.363054801374, + 48.376493023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae336c94a800a3ef3d617eb1af2f282a1b644b23", + "fields": { + "code_commune_insee": "72197", + "nom_de_la_commune": "MEZIERES SOUS LAVARDIN", + "code_postal": "72240", + "coordonnees_gps": [ + 48.1562672241, + 0.0477555800744 + ], + "libelle_d_acheminement": "MEZIERES SOUS LAVARDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0477555800744, + 48.1562672241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a87f3571cba8b5ecef5d39c4acda8583e8a9a28", + "fields": { + "code_commune_insee": "72202", + "nom_de_la_commune": "MONHOUDOU", + "code_postal": "72260", + "coordonnees_gps": [ + 48.2873963087, + 0.326162830698 + ], + "libelle_d_acheminement": "MONHOUDOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.326162830698, + 48.2873963087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb7bcd2e261a3dadce5406f7ff9e21620b38db0a", + "fields": { + "code_commune_insee": "72205", + "nom_de_la_commune": "MONTBIZOT", + "code_postal": "72380", + "coordonnees_gps": [ + 48.1530640298, + 0.182398817667 + ], + "libelle_d_acheminement": "MONTBIZOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.182398817667, + 48.1530640298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f4ebd4b6322fc2ad7a8e3fe6516ab7d69a4d53a", + "fields": { + "code_commune_insee": "72214", + "nom_de_la_commune": "NAUVAY", + "code_postal": "72260", + "coordonnees_gps": [ + 48.2541808432, + 0.393397353266 + ], + "libelle_d_acheminement": "NAUVAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.393397353266, + 48.2541808432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bff8a5d716b640650ad109c09d346b6ab4c86d3", + "fields": { + "code_commune_insee": "72223", + "nom_de_la_commune": "NOYEN SUR SARTHE", + "code_postal": "72430", + "coordonnees_gps": [ + 47.8589974473, + -0.100335586338 + ], + "libelle_d_acheminement": "NOYEN SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.100335586338, + 47.8589974473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce425f4120614ebd8e63a9a7f2771607f2e8abe4", + "fields": { + "code_commune_insee": "72224", + "nom_de_la_commune": "NUILLE LE JALAIS", + "code_postal": "72370", + "coordonnees_gps": [ + 48.0204559278, + 0.485891467634 + ], + "libelle_d_acheminement": "NUILLE LE JALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.485891467634, + 48.0204559278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9187a9fd1f84bb7fbcfedc39895c339f9e32d658", + "fields": { + "code_commune_insee": "72226", + "nom_de_la_commune": "OIZE", + "code_postal": "72330", + "coordonnees_gps": [ + 47.8021261548, + 0.109630746883 + ], + "libelle_d_acheminement": "OIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109630746883, + 47.8021261548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23a9c6af0b3cec1f8a76eae42052e13888d5a686", + "fields": { + "code_commune_insee": "72227", + "nom_de_la_commune": "PANON", + "code_postal": "72600", + "coordonnees_gps": [ + 48.3391172905, + 0.300272585869 + ], + "libelle_d_acheminement": "PANON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.300272585869, + 48.3391172905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1a4945d7410acf657646a0418300f9bb48b4867", + "fields": { + "code_commune_insee": "72235", + "nom_de_la_commune": "PIACE", + "code_postal": "72170", + "coordonnees_gps": [ + 48.2662297106, + 0.114166808373 + ], + "libelle_d_acheminement": "PIACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.114166808373, + 48.2662297106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74dccbea2aa832da0f1b2744aec205d2c25509fa", + "fields": { + "code_commune_insee": "72245", + "nom_de_la_commune": "PREVAL", + "code_postal": "72400", + "coordonnees_gps": [ + 48.2266918238, + 0.619955132757 + ], + "libelle_d_acheminement": "PREVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.619955132757, + 48.2266918238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d49560e6c1a093c5fb579a8b052f158d62ae71ff", + "fields": { + "code_commune_insee": "72247", + "nom_de_la_commune": "PRUILLE LE CHETIF", + "code_postal": "72700", + "coordonnees_gps": [ + 47.9926394002, + 0.10552280267 + ], + "libelle_d_acheminement": "PRUILLE LE CHETIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10552280267, + 47.9926394002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c4a3edee33eab9e49b1288c7912b349276b4e5b", + "fields": { + "code_commune_insee": "72254", + "nom_de_la_commune": "ROUESSE FONTAINE", + "code_postal": "72610", + "coordonnees_gps": [ + 48.3186762666, + 0.147946893872 + ], + "libelle_d_acheminement": "ROUESSE FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.147946893872, + 48.3186762666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "271fa070e2a41870006a70522a299a6b30bb69a3", + "fields": { + "code_commune_insee": "72277", + "nom_de_la_commune": "ST DENIS DES COUDRAIS", + "code_postal": "72110", + "coordonnees_gps": [ + 48.1620373195, + 0.506879313638 + ], + "libelle_d_acheminement": "ST DENIS DES COUDRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.506879313638, + 48.1620373195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24cd7f7f586dbf9f569c2c66531eb525b7f69411", + "fields": { + "code_commune_insee": "72282", + "nom_de_la_commune": "ST GEORGES LE GAULTIER", + "code_postal": "72130", + "coordonnees_gps": [ + 48.2951885176, + -0.110267923649 + ], + "libelle_d_acheminement": "ST GEORGES LE GAULTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.110267923649, + 48.2951885176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce0d2de0bab5aed4459bd734d7a00fb2759acb27", + "fields": { + "code_commune_insee": "72303", + "nom_de_la_commune": "ST MICHEL DE CHAVAIGNES", + "code_postal": "72440", + "coordonnees_gps": [ + 48.0092301302, + 0.57342688237 + ], + "libelle_d_acheminement": "ST MICHEL DE CHAVAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57342688237, + 48.0092301302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6201b1050c87d2d9eb879caea7daa186e1e414fa", + "fields": { + "ligne_5": "ST PATERNE", + "code_commune_insee": "72308", + "libelle_d_acheminement": "ST PATERNE LE CHEVAIN", + "code_postal": "72610", + "nom_de_la_commune": "ST PATERNE LE CHEVAIN", + "coordonnees_gps": [ + 48.4136370812, + 0.114907308448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.114907308448, + 48.4136370812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48702a3fe87f4ae9f2091c5f21b9e9bbcc41132c", + "fields": { + "code_commune_insee": "72316", + "nom_de_la_commune": "ST REMY DES MONTS", + "code_postal": "72600", + "coordonnees_gps": [ + 48.321786609, + 0.382928882455 + ], + "libelle_d_acheminement": "ST REMY DES MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.382928882455, + 48.321786609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "056431f447f94039fbd2ced228085133f0332820", + "fields": { + "code_commune_insee": "72322", + "nom_de_la_commune": "ST ULPHACE", + "code_postal": "72320", + "coordonnees_gps": [ + 48.1566973317, + 0.840132351008 + ], + "libelle_d_acheminement": "ST ULPHACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.840132351008, + 48.1566973317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b98a62bb589e7dcc0f8522e07128e417e6657a2", + "fields": { + "code_commune_insee": "72326", + "nom_de_la_commune": "SAOSNES", + "code_postal": "72600", + "coordonnees_gps": [ + 48.3259873984, + 0.288443058218 + ], + "libelle_d_acheminement": "SAOSNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.288443058218, + 48.3259873984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29bd486ac7eb7c782cbdca15cccbb6b995728fb1", + "fields": { + "code_commune_insee": "72329", + "nom_de_la_commune": "SAVIGNE L EVEQUE", + "code_postal": "72460", + "coordonnees_gps": [ + 48.0834488074, + 0.287812838107 + ], + "libelle_d_acheminement": "SAVIGNE L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.287812838107, + 48.0834488074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bb489774c5ed3829e96bcf086e1ad8b73ba41b0", + "fields": { + "code_commune_insee": "72336", + "nom_de_la_commune": "SOLESMES", + "code_postal": "72300", + "coordonnees_gps": [ + 47.8443845125, + -0.280679742039 + ], + "libelle_d_acheminement": "SOLESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.280679742039, + 47.8443845125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd7a0f91a9ed2f42876d1c53a66f1e49a7245944", + "fields": { + "code_commune_insee": "72339", + "nom_de_la_commune": "SOULIGNE FLACE", + "code_postal": "72210", + "coordonnees_gps": [ + 47.9670341132, + 0.0141635131783 + ], + "libelle_d_acheminement": "SOULIGNE FLACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0141635131783, + 47.9670341132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "860dce39aaf17905fd98528206bd7c89dc79eefd", + "fields": { + "code_commune_insee": "72344", + "nom_de_la_commune": "SPAY", + "code_postal": "72700", + "coordonnees_gps": [ + 47.9251136777, + 0.151021420961 + ], + "libelle_d_acheminement": "SPAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.151021420961, + 47.9251136777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5de6110f4e3647920b7f07ca746d499988eb529e", + "fields": { + "code_commune_insee": "72352", + "nom_de_la_commune": "TERREHAULT", + "code_postal": "72110", + "coordonnees_gps": [ + 48.20419337, + 0.406392146471 + ], + "libelle_d_acheminement": "TERREHAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.406392146471, + 48.20419337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6394b3168b45b21c631f2f4c5b08ae470bfd09b3", + "fields": { + "code_commune_insee": "72354", + "nom_de_la_commune": "THOIGNE", + "code_postal": "72260", + "coordonnees_gps": [ + 48.2851988813, + 0.250186351944 + ], + "libelle_d_acheminement": "THOIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.250186351944, + 48.2851988813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "203b66640031949ba592bb3dd07774a5d3238da2", + "fields": { + "code_commune_insee": "72358", + "nom_de_la_commune": "THORIGNE SUR DUE", + "code_postal": "72160", + "coordonnees_gps": [ + 48.0297154005, + 0.519874230361 + ], + "libelle_d_acheminement": "THORIGNE SUR DUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.519874230361, + 48.0297154005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "729fd161c2a21722661519f76becda8bf53924a8", + "fields": { + "code_commune_insee": "72362", + "nom_de_la_commune": "LE TRONCHET", + "code_postal": "72170", + "coordonnees_gps": [ + 48.1800998557, + 0.0814798946478 + ], + "libelle_d_acheminement": "LE TRONCHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0814798946478, + 48.1800998557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4f53dcdea4010ef9a0177498d1cf10d67bdf731", + "fields": { + "ligne_5": "TUFFE", + "code_commune_insee": "72363", + "libelle_d_acheminement": "TUFFE VAL DE LA CHERONNE", + "code_postal": "72160", + "nom_de_la_commune": "TUFFE VAL DE LA CHERONNE", + "coordonnees_gps": [ + 48.120886565, + 0.50838049197 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50838049197, + 48.120886565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cac207b8e6618ef76465e8098e51f797003dcac", + "fields": { + "code_commune_insee": "72367", + "nom_de_la_commune": "VALLON SUR GEE", + "code_postal": "72540", + "coordonnees_gps": [ + 47.9595693292, + -0.0842449217262 + ], + "libelle_d_acheminement": "VALLON SUR GEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0842449217262, + 47.9595693292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5ecb1fed6e578d8bf986bab24cfd52f42121ba5", + "fields": { + "code_commune_insee": "72369", + "nom_de_la_commune": "VERNEIL LE CHETIF", + "code_postal": "72360", + "coordonnees_gps": [ + 47.7196089183, + 0.298597882427 + ], + "libelle_d_acheminement": "VERNEIL LE CHETIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.298597882427, + 47.7196089183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07f76cfbfd268a17c2eb95b2eb5a1acbc159a85b", + "fields": { + "code_commune_insee": "72381", + "nom_de_la_commune": "VOIVRES LES LE MANS", + "code_postal": "72210", + "coordonnees_gps": [ + 47.9278286492, + 0.0845168943294 + ], + "libelle_d_acheminement": "VOIVRES LES LE MANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0845168943294, + 47.9278286492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f0e27eb5d3bb62b12bb2fc1244fb8e8b3bddc21", + "fields": { + "ligne_5": "LE BOIS", + "code_commune_insee": "73003", + "libelle_d_acheminement": "GRAND AIGUEBLANCHE", + "code_postal": "73260", + "nom_de_la_commune": "GRAND AIGUEBLANCHE", + "coordonnees_gps": [ + 45.5198646844, + 6.51470725301 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51470725301, + 45.5198646844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e1d6fa92e203e1043931f3e258e738217e72f1c", + "fields": { + "code_commune_insee": "73004", + "nom_de_la_commune": "AILLON LE JEUNE", + "code_postal": "73340", + "coordonnees_gps": [ + 45.6088639529, + 6.08868598171 + ], + "libelle_d_acheminement": "AILLON LE JEUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08868598171, + 45.6088639529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93b9457e1eeb82ab70324e717b75ec90cf42fdc3", + "fields": { + "code_commune_insee": "73007", + "nom_de_la_commune": "AITON", + "code_postal": "73220", + "coordonnees_gps": [ + 45.5733792643, + 6.257350927 + ], + "libelle_d_acheminement": "AITON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.257350927, + 45.5733792643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6c99dc31f75bf0e44da81c8036f5b24efcd2a54", + "fields": { + "code_commune_insee": "73012", + "nom_de_la_commune": "ALBIEZ LE JEUNE", + "code_postal": "73300", + "coordonnees_gps": [ + 45.2391859578, + 6.35812756812 + ], + "libelle_d_acheminement": "ALBIEZ LE JEUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35812756812, + 45.2391859578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9131f50b854a21c185dfa30728a1a79bca04a838", + "fields": { + "code_commune_insee": "73013", + "nom_de_la_commune": "ALBIEZ MONTROND", + "code_postal": "73300", + "coordonnees_gps": [ + 45.1885296943, + 6.33989973257 + ], + "libelle_d_acheminement": "ALBIEZ MONTROND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33989973257, + 45.1885296943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3319fa6e8d8e2d696febd0bba8a929e3fa24070", + "fields": { + "code_commune_insee": "73021", + "nom_de_la_commune": "ARVILLARD", + "code_postal": "73110", + "coordonnees_gps": [ + 45.4097930929, + 6.16998092383 + ], + "libelle_d_acheminement": "ARVILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16998092383, + 45.4097930929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60485f115ff355b481c276f012bb13e1be4b83de", + "fields": { + "code_commune_insee": "73025", + "nom_de_la_commune": "AVRESSIEUX", + "code_postal": "73240", + "coordonnees_gps": [ + 45.5713044928, + 5.69389635857 + ], + "libelle_d_acheminement": "AVRESSIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69389635857, + 45.5713044928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b0d51f2e5cf505ffbf0a7a3a2d6fa4db1bb94d2", + "fields": { + "code_commune_insee": "73030", + "nom_de_la_commune": "BARBY", + "code_postal": "73230", + "coordonnees_gps": [ + 45.5699721228, + 5.98303026413 + ], + "libelle_d_acheminement": "BARBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98303026413, + 45.5699721228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8409cb8c8d26d2389ef88580cf9830f2bb715b0", + "fields": { + "code_commune_insee": "73047", + "nom_de_la_commune": "BONNEVAL SUR ARC", + "code_postal": "73480", + "coordonnees_gps": [ + 45.3858269371, + 7.09178979521 + ], + "libelle_d_acheminement": "BONNEVAL SUR ARC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09178979521, + 45.3858269371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4f1afc667a272bb6e8037d5951c0ff6fda51f50", + "fields": { + "code_commune_insee": "73052", + "nom_de_la_commune": "BOURGET EN HUILE", + "code_postal": "73110", + "coordonnees_gps": [ + 45.4820997208, + 6.21172718237 + ], + "libelle_d_acheminement": "BOURGET EN HUILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21172718237, + 45.4820997208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "922e594aa3445e1aec93695fe272c27f60c217c1", + "fields": { + "code_commune_insee": "73055", + "nom_de_la_commune": "BOZEL", + "code_postal": "73350", + "coordonnees_gps": [ + 45.4621455547, + 6.65092707324 + ], + "libelle_d_acheminement": "BOZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65092707324, + 45.4621455547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ec0a30deec7682edf68b5f483c7271736135030", + "fields": { + "code_commune_insee": "73064", + "nom_de_la_commune": "CHALLES LES EAUX", + "code_postal": "73190", + "coordonnees_gps": [ + 45.5493464648, + 5.98357559058 + ], + "libelle_d_acheminement": "CHALLES LES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98357559058, + 45.5493464648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb1d6095ec7aefd1c26328e8abc744a18c9198e0", + "fields": { + "code_commune_insee": "73069", + "nom_de_la_commune": "CHAMOUX SUR GELON", + "code_postal": "73390", + "coordonnees_gps": [ + 45.5341655971, + 6.21788663815 + ], + "libelle_d_acheminement": "CHAMOUX SUR GELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21788663815, + 45.5341655971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d24642463de97bdc21785c99d4199184cd9782a5", + "fields": { + "code_commune_insee": "73081", + "nom_de_la_commune": "LE CHATELARD", + "code_postal": "73630", + "coordonnees_gps": [ + 45.6813038277, + 6.12957262483 + ], + "libelle_d_acheminement": "LE CHATELARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12957262483, + 45.6813038277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6c1027bb98fb034a631159ecacc2c7b942a7224", + "fields": { + "code_commune_insee": "73082", + "nom_de_la_commune": "LA CHAVANNE", + "code_postal": "73800", + "coordonnees_gps": [ + 45.4931434452, + 6.06652812144 + ], + "libelle_d_acheminement": "LA CHAVANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06652812144, + 45.4931434452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ec015bf5350d094d028088b76743254cfa2e96f", + "fields": { + "code_commune_insee": "73088", + "nom_de_la_commune": "COHENNOZ", + "code_postal": "73590", + "coordonnees_gps": [ + 45.7632895459, + 6.49611998394 + ], + "libelle_d_acheminement": "COHENNOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49611998394, + 45.7632895459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e294e8b97593aae212322252faa217500e172c85", + "fields": { + "code_commune_insee": "73096", + "nom_de_la_commune": "CRUET", + "code_postal": "73800", + "coordonnees_gps": [ + 45.5313034202, + 6.09302638614 + ], + "libelle_d_acheminement": "CRUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09302638614, + 45.5313034202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd0994ef8414250f3f4692b402ea7ee1cd204074", + "fields": { + "code_commune_insee": "73101", + "nom_de_la_commune": "DOUCY EN BAUGES", + "code_postal": "73630", + "coordonnees_gps": [ + 45.6961895971, + 6.17641277073 + ], + "libelle_d_acheminement": "DOUCY EN BAUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17641277073, + 45.6961895971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b5b119ccbd71cf0f3329effb7667d4f8d276c6a", + "fields": { + "code_commune_insee": "73106", + "nom_de_la_commune": "ECOLE", + "code_postal": "73630", + "coordonnees_gps": [ + 45.6287158464, + 6.1879831519 + ], + "libelle_d_acheminement": "ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1879831519, + 45.6287158464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70a46cf59b51837148083195b4b462e997928ab6", + "fields": { + "code_commune_insee": "73109", + "nom_de_la_commune": "EPIERRE", + "code_postal": "73220", + "coordonnees_gps": [ + 45.4524759546, + 6.32466741894 + ], + "libelle_d_acheminement": "EPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32466741894, + 45.4524759546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d77802115c58e97ea008a5bda33c9ad3145074e", + "fields": { + "code_commune_insee": "73116", + "nom_de_la_commune": "FONTCOUVERTE LA TOUSSUIRE", + "code_postal": "73300", + "coordonnees_gps": [ + 45.2460484635, + 6.28249903846 + ], + "libelle_d_acheminement": "FONTCOUVERTE LA TOUSSUIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28249903846, + 45.2460484635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b074fb79d023c875d14ec400ae8392385e45836e", + "fields": { + "code_commune_insee": "73119", + "nom_de_la_commune": "FRENEY", + "code_postal": "73500", + "coordonnees_gps": [ + 45.1839626924, + 6.61246852795 + ], + "libelle_d_acheminement": "FRENEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61246852795, + 45.1839626924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4af7db8992071873dff61d2dd5358260e34ce805", + "fields": { + "code_commune_insee": "73124", + "nom_de_la_commune": "GILLY SUR ISERE", + "code_postal": "73200", + "coordonnees_gps": [ + 45.653102038, + 6.3498533574 + ], + "libelle_d_acheminement": "GILLY SUR ISERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3498533574, + 45.653102038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "066e7e4a0026ec2daee4dc292e8d048f07fbe532", + "fields": { + "ligne_5": "MONTPASCAL", + "code_commune_insee": "73135", + "libelle_d_acheminement": "LA TOUR EN MAURIENNE", + "code_postal": "73300", + "nom_de_la_commune": "LA TOUR EN MAURIENNE", + "coordonnees_gps": [ + 45.3048823312, + 6.38960278843 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38960278843, + 45.3048823312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21d38efce71350e8bde3a3d51aedda28622883e8", + "fields": { + "ligne_5": "PONTAMAFREY MONTPASCAL", + "code_commune_insee": "73135", + "libelle_d_acheminement": "LA TOUR EN MAURIENNE", + "code_postal": "73300", + "nom_de_la_commune": "LA TOUR EN MAURIENNE", + "coordonnees_gps": [ + 45.3048823312, + 6.38960278843 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38960278843, + 45.3048823312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7d9b72427fb93454162b94a05d45bda63996ac8", + "fields": { + "code_commune_insee": "73147", + "nom_de_la_commune": "LOISIEUX", + "code_postal": "73170", + "coordonnees_gps": [ + 45.6484157655, + 5.72648384584 + ], + "libelle_d_acheminement": "LOISIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72648384584, + 45.6484157655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a45382237f0cefda67e52fcd865eba91c9e022c", + "fields": { + "ligne_5": "MACOT LA PLAGNE", + "code_commune_insee": "73150", + "libelle_d_acheminement": "LA PLAGNE TARENTAISE", + "code_postal": "73210", + "nom_de_la_commune": "LA PLAGNE TARENTAISE", + "coordonnees_gps": [ + 45.5224407762, + 6.69359362189 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69359362189, + 45.5224407762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f56c4853fcd99f5e44c2aca6812a02a2b824de3", + "fields": { + "code_commune_insee": "73153", + "nom_de_la_commune": "MARTHOD", + "code_postal": "73400", + "coordonnees_gps": [ + 45.7320735425, + 6.39451957192 + ], + "libelle_d_acheminement": "MARTHOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39451957192, + 45.7320735425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e4dded5d43d22ce1e26dd6e455be284d4aeafe8", + "fields": { + "code_commune_insee": "73155", + "nom_de_la_commune": "MERY", + "code_postal": "73420", + "coordonnees_gps": [ + 45.6368213368, + 5.93473047597 + ], + "libelle_d_acheminement": "MERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93473047597, + 45.6368213368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06c97f067026781800949c2f349dd4597ed6dfc0", + "fields": { + "code_commune_insee": "73157", + "nom_de_la_commune": "MODANE", + "code_postal": "73500", + "coordonnees_gps": [ + 45.1746302833, + 6.64849495084 + ], + "libelle_d_acheminement": "MODANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64849495084, + 45.1746302833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6e0c7b509e8e332fd97cc7147b59f660e25692e", + "fields": { + "code_commune_insee": "73161", + "nom_de_la_commune": "MONTAGNY", + "code_postal": "73350", + "coordonnees_gps": [ + 45.466297654, + 6.59859826998 + ], + "libelle_d_acheminement": "MONTAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59859826998, + 45.466297654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96fe265525d0838ba628c7160c7aaade8d3ec986", + "fields": { + "code_commune_insee": "73164", + "nom_de_la_commune": "MONTCEL", + "code_postal": "73100", + "coordonnees_gps": [ + 45.7093447772, + 5.9904850832 + ], + "libelle_d_acheminement": "MONTCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9904850832, + 45.7093447772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3ebce7fd54ec8d46b45437f96d76d637a38b54c", + "fields": { + "code_commune_insee": "73182", + "nom_de_la_commune": "MOUXY", + "code_postal": "73100", + "coordonnees_gps": [ + 45.6795438416, + 5.94799104168 + ], + "libelle_d_acheminement": "MOUXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94799104168, + 45.6795438416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b6455aee672bdc88a46d53377581cc845733e77", + "fields": { + "ligne_5": "BONNEVAL", + "code_commune_insee": "73187", + "libelle_d_acheminement": "LA LECHERE", + "code_postal": "73260", + "nom_de_la_commune": "LA LECHERE", + "coordonnees_gps": [ + 45.5274218608, + 6.46078348062 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46078348062, + 45.5274218608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca9c38ed99b40aa81e4a7f26ce7e68a30463a5e9", + "fields": { + "code_commune_insee": "73188", + "nom_de_la_commune": "NOTRE DAME DES MILLIERES", + "code_postal": "73460", + "coordonnees_gps": [ + 45.6133297459, + 6.35632585882 + ], + "libelle_d_acheminement": "NOTRE DAME DES MILLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35632585882, + 45.6133297459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "518424f3ad23e6653f0bb3ea4a5385edbb8265ac", + "fields": { + "code_commune_insee": "73193", + "nom_de_la_commune": "ONTEX", + "code_postal": "73310", + "coordonnees_gps": [ + 45.7490416401, + 5.82274502837 + ], + "libelle_d_acheminement": "ONTEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82274502837, + 45.7490416401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3db17def509fd4c7776a1a8ca3ec64acb47a127f", + "fields": { + "code_commune_insee": "73194", + "nom_de_la_commune": "ORELLE", + "code_postal": "73140", + "coordonnees_gps": [ + 45.1983416758, + 6.56055750586 + ], + "libelle_d_acheminement": "ORELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56055750586, + 45.1983416758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68e3a93564929703527407e96327022d4726e9a0", + "fields": { + "code_commune_insee": "73196", + "nom_de_la_commune": "PALLUD", + "code_postal": "73200", + "coordonnees_gps": [ + 45.6932959601, + 6.38998049719 + ], + "libelle_d_acheminement": "PALLUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38998049719, + 45.6932959601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f0976afdc9dfaa67870767fcc25d0c09ba6bc66", + "fields": { + "code_commune_insee": "73200", + "nom_de_la_commune": "PLANAISE", + "code_postal": "73800", + "coordonnees_gps": [ + 45.5071148069, + 6.09359995038 + ], + "libelle_d_acheminement": "PLANAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09359995038, + 45.5071148069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e2243d234213f9d93fdd8ab8a4f25bd4088c62f", + "fields": { + "code_commune_insee": "73204", + "nom_de_la_commune": "LE PONT DE BEAUVOISIN", + "code_postal": "73330", + "coordonnees_gps": [ + 45.5356435604, + 5.68142349925 + ], + "libelle_d_acheminement": "LE PONT DE BEAUVOISIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68142349925, + 45.5356435604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4a4858fadbfd0d7c9131d76b32aee40ec88793c", + "fields": { + "code_commune_insee": "73205", + "nom_de_la_commune": "LE PONTET", + "code_postal": "73110", + "coordonnees_gps": [ + 45.497081703, + 6.23653163392 + ], + "libelle_d_acheminement": "LE PONTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23653163392, + 45.497081703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfccd9e22f22f947fc4d6fb45f3a882c652389c6", + "fields": { + "code_commune_insee": "73218", + "nom_de_la_commune": "RUFFIEUX", + "code_postal": "73310", + "coordonnees_gps": [ + 45.8514912091, + 5.84328531384 + ], + "libelle_d_acheminement": "RUFFIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84328531384, + 45.8514912091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e13b3efc8bb5430031a0fdaedb59df3d7e3a0ba", + "fields": { + "code_commune_insee": "73219", + "nom_de_la_commune": "ST ALBAN DE MONTBEL", + "code_postal": "73610", + "coordonnees_gps": [ + 45.5515817863, + 5.77939233212 + ], + "libelle_d_acheminement": "ST ALBAN DE MONTBEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77939233212, + 45.5515817863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83c4eaf68e3708a4da2d597162ce3a501ad6b3eb", + "fields": { + "code_commune_insee": "73220", + "nom_de_la_commune": "ST ALBAN D HURTIERES", + "code_postal": "73220", + "coordonnees_gps": [ + 45.4684794014, + 6.24910265774 + ], + "libelle_d_acheminement": "ST ALBAN D HURTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24910265774, + 45.4684794014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22442828c3bbd1b6f17385bed22ec24294610f93", + "fields": { + "code_commune_insee": "73228", + "nom_de_la_commune": "ST CASSIN", + "code_postal": "73160", + "coordonnees_gps": [ + 45.5211376185, + 5.87930172549 + ], + "libelle_d_acheminement": "ST CASSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87930172549, + 45.5211376185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6da7e77a48b46695e0034f6297d9863658abd535", + "fields": { + "code_commune_insee": "73232", + "nom_de_la_commune": "STE FOY TARENTAISE", + "code_postal": "73640", + "coordonnees_gps": [ + 45.5842289817, + 6.94134524499 + ], + "libelle_d_acheminement": "STE FOY TARENTAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94134524499, + 45.5842289817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24aa551b21922191c1628a0ff2173494b12c4af3", + "fields": { + "code_commune_insee": "73234", + "nom_de_la_commune": "ST FRANCOIS DE SALES", + "code_postal": "73340", + "coordonnees_gps": [ + 45.6827462636, + 6.03682788265 + ], + "libelle_d_acheminement": "ST FRANCOIS DE SALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03682788265, + 45.6827462636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "343528bd7617efe477c7e53971b34d22716267fc", + "fields": { + "ligne_5": "GRESIN", + "code_commune_insee": "73236", + "libelle_d_acheminement": "ST GENIX LES VILLAGES", + "code_postal": "73240", + "nom_de_la_commune": "ST GENIX LES VILLAGES", + "coordonnees_gps": [ + 45.5958143287, + 5.65587988646 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65587988646, + 45.5958143287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb13070d217302d051bfb8126f25dd7bde37a10d", + "fields": { + "ligne_5": "ST MAURICE DE ROTHERENS", + "code_commune_insee": "73236", + "libelle_d_acheminement": "ST GENIX LES VILLAGES", + "code_postal": "73240", + "nom_de_la_commune": "ST GENIX LES VILLAGES", + "coordonnees_gps": [ + 45.5958143287, + 5.65587988646 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65587988646, + 45.5958143287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17f6956cb0b8525b12e93e7821ea2cb16d0c3478", + "fields": { + "code_commune_insee": "73240", + "nom_de_la_commune": "STE HELENE DU LAC", + "code_postal": "73800", + "coordonnees_gps": [ + 45.4796430592, + 6.05492059443 + ], + "libelle_d_acheminement": "STE HELENE DU LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05492059443, + 45.4796430592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae94e37499dd9601d560e6423cee919b292678cb", + "fields": { + "code_commune_insee": "73241", + "nom_de_la_commune": "STE HELENE SUR ISERE", + "code_postal": "73460", + "coordonnees_gps": [ + 45.6022927013, + 6.32652357893 + ], + "libelle_d_acheminement": "STE HELENE SUR ISERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32652357893, + 45.6022927013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3cc420bfcb91763804e00802fa439febdf40ec8", + "fields": { + "code_commune_insee": "73248", + "nom_de_la_commune": "ST JEAN DE MAURIENNE", + "code_postal": "73300", + "coordonnees_gps": [ + 45.2713738871, + 6.34553663978 + ], + "libelle_d_acheminement": "ST JEAN DE MAURIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34553663978, + 45.2713738871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "823d1bf548147a85d78a9256f81504692512c79f", + "fields": { + "code_commune_insee": "73255", + "nom_de_la_commune": "STE MARIE DE CUINES", + "code_postal": "73130", + "coordonnees_gps": [ + 45.3192133197, + 6.29393151953 + ], + "libelle_d_acheminement": "STE MARIE DE CUINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29393151953, + 45.3192133197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "476b453b2d2045efdb5eff23dc77be6ab6166882", + "fields": { + "ligne_5": "ST MARTIN DE BELLEVILLE", + "code_commune_insee": "73257", + "libelle_d_acheminement": "LES BELLEVILLE", + "code_postal": "73440", + "nom_de_la_commune": "LES BELLEVILLE", + "coordonnees_gps": [ + 45.334431769, + 6.51686943075 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51686943075, + 45.334431769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "450aa547ba97ccabce5f3fd105bfbc97865bc7f1", + "fields": { + "code_commune_insee": "73261", + "nom_de_la_commune": "ST MICHEL DE MAURIENNE", + "code_postal": "73140", + "coordonnees_gps": [ + 45.2382472621, + 6.49342053727 + ], + "libelle_d_acheminement": "ST MICHEL DE MAURIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49342053727, + 45.2382472621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8e36d4f6e20d5fd56ba85a8cf7841786acba16c", + "fields": { + "code_commune_insee": "73267", + "nom_de_la_commune": "ST PANCRACE", + "code_postal": "73300", + "coordonnees_gps": [ + 45.2661323144, + 6.30078779644 + ], + "libelle_d_acheminement": "ST PANCRACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30078779644, + 45.2661323144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c345fdb515b23959e6e23d4f99d51e1b45725c67", + "fields": { + "code_commune_insee": "73271", + "nom_de_la_commune": "ST PIERRE D ALVEY", + "code_postal": "73170", + "coordonnees_gps": [ + 45.6259001138, + 5.73939754416 + ], + "libelle_d_acheminement": "ST PIERRE D ALVEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73939754416, + 45.6259001138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee5cadba7da827ced772f616f0131020096ccdf7", + "fields": { + "code_commune_insee": "73273", + "nom_de_la_commune": "ST PIERRE DE CURTILLE", + "code_postal": "73310", + "coordonnees_gps": [ + 45.7654977445, + 5.82887775721 + ], + "libelle_d_acheminement": "ST PIERRE DE CURTILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82887775721, + 45.7654977445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e2cdcc6eb356df5be8ba11781843695502ac3e9", + "fields": { + "code_commune_insee": "73292", + "nom_de_la_commune": "THENESOL", + "code_postal": "73200", + "coordonnees_gps": [ + 45.7176908375, + 6.38685541448 + ], + "libelle_d_acheminement": "THENESOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38685541448, + 45.7176908375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f4e42ed892a9516da014f09d625f5a7040ce117", + "fields": { + "code_commune_insee": "73293", + "nom_de_la_commune": "THOIRY", + "code_postal": "73230", + "coordonnees_gps": [ + 45.598757543, + 6.04432776786 + ], + "libelle_d_acheminement": "THOIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04432776786, + 45.598757543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54cb4ccc7af8b93b27d17e3fd731b095f592587c", + "fields": { + "code_commune_insee": "73298", + "nom_de_la_commune": "TOURS EN SAVOIE", + "code_postal": "73790", + "coordonnees_gps": [ + 45.6663871792, + 6.46157169693 + ], + "libelle_d_acheminement": "TOURS EN SAVOIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46157169693, + 45.6663871792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "712fbe85b50213f6dcebbdaceb8ac4aaafc637fe", + "fields": { + "code_commune_insee": "73300", + "nom_de_la_commune": "TRESSERVE", + "code_postal": "73100", + "coordonnees_gps": [ + 45.6743249574, + 5.88968226158 + ], + "libelle_d_acheminement": "TRESSERVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88968226158, + 45.6743249574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a90154248a21fd673c4567d7fec5470af17b745b", + "fields": { + "code_commune_insee": "73302", + "nom_de_la_commune": "LA TRINITE", + "code_postal": "73110", + "coordonnees_gps": [ + 45.5038702551, + 6.15205404986 + ], + "libelle_d_acheminement": "LA TRINITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15205404986, + 45.5038702551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69c30e64e20aeb7045cd103820b84e7815c7b353", + "fields": { + "code_commune_insee": "73312", + "nom_de_la_commune": "VERRENS ARVEY", + "code_postal": "73460", + "coordonnees_gps": [ + 45.6626779644, + 6.29022565576 + ], + "libelle_d_acheminement": "VERRENS ARVEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29022565576, + 45.6626779644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d6f396bff0fefaddfe2dc8bccf79ee906771a1f", + "fields": { + "code_commune_insee": "73314", + "nom_de_la_commune": "VILLARD D HERY", + "code_postal": "73800", + "coordonnees_gps": [ + 45.5142759171, + 6.1391908576 + ], + "libelle_d_acheminement": "VILLARD D HERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1391908576, + 45.5142759171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f856ab0da09e493b045f96cf47c67c3225687a1", + "fields": { + "code_commune_insee": "73315", + "nom_de_la_commune": "VILLARD LEGER", + "code_postal": "73390", + "coordonnees_gps": [ + 45.501239323, + 6.17384945736 + ], + "libelle_d_acheminement": "VILLARD LEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17384945736, + 45.501239323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "535b756bd13044f98ccac66989cfd843002310fc", + "fields": { + "code_commune_insee": "73317", + "nom_de_la_commune": "VILLARD SUR DORON", + "code_postal": "73270", + "coordonnees_gps": [ + 45.727682272, + 6.51866371768 + ], + "libelle_d_acheminement": "VILLARD SUR DORON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51866371768, + 45.727682272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2ca0fb88b05f74820ee6819105d81d791a4c048", + "fields": { + "code_commune_insee": "73320", + "nom_de_la_commune": "VILLARGONDRAN", + "code_postal": "73300", + "coordonnees_gps": [ + 45.2527360599, + 6.37903424342 + ], + "libelle_d_acheminement": "VILLARGONDRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37903424342, + 45.2527360599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f8dda7c23651093935b3e2080fd50a63d1f9fea", + "fields": { + "code_commune_insee": "73328", + "nom_de_la_commune": "VIVIERS DU LAC", + "code_postal": "73420", + "coordonnees_gps": [ + 45.6502423808, + 5.89790868543 + ], + "libelle_d_acheminement": "VIVIERS DU LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89790868543, + 45.6502423808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08609b12706c021b0e0ff9c0c3b56e7593b120f5", + "fields": { + "code_commune_insee": "74008", + "nom_de_la_commune": "AMBILLY", + "code_postal": "74100", + "coordonnees_gps": [ + 46.1961567042, + 6.22429975401 + ], + "libelle_d_acheminement": "AMBILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22429975401, + 46.1961567042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3aae61dc213fed775c288a6fb0951f06c1b6d67", + "fields": { + "code_commune_insee": "74009", + "nom_de_la_commune": "ANDILLY", + "code_postal": "74350", + "coordonnees_gps": [ + 46.0702115695, + 6.0710017836 + ], + "libelle_d_acheminement": "ANDILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0710017836, + 46.0702115695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93fef34b79e57990f89b40a3d366dfb15d705c20", + "fields": { + "code_commune_insee": "74010", + "nom_de_la_commune": "ANNECY", + "code_postal": "74000", + "coordonnees_gps": [ + 45.8906432566, + 6.12551773598 + ], + "libelle_d_acheminement": "ANNECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12551773598, + 45.8906432566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfde1e31bcc3e202a901978e678bee1f8fef05bd", + "fields": { + "ligne_5": "FERRIERES", + "code_commune_insee": "74010", + "libelle_d_acheminement": "ANNECY", + "code_postal": "74370", + "nom_de_la_commune": "ANNECY", + "coordonnees_gps": [ + 45.8906432566, + 6.12551773598 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12551773598, + 45.8906432566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "202788e7693b228090a5503f9d08e337dc6c7770", + "fields": { + "ligne_5": "VIEUGY", + "code_commune_insee": "74010", + "libelle_d_acheminement": "ANNECY", + "code_postal": "74600", + "nom_de_la_commune": "ANNECY", + "coordonnees_gps": [ + 45.8906432566, + 6.12551773598 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12551773598, + 45.8906432566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24da170c79a1fc17d4b4cd6c2d04a89e9bf7d024", + "fields": { + "code_commune_insee": "74013", + "nom_de_la_commune": "ANTHY SUR LEMAN", + "code_postal": "74200", + "coordonnees_gps": [ + 46.3530564511, + 6.42748586139 + ], + "libelle_d_acheminement": "ANTHY SUR LEMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42748586139, + 46.3530564511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e127c1f48af52472877a08b4543850a179ef6062", + "fields": { + "code_commune_insee": "74014", + "nom_de_la_commune": "ARACHES LA FRASSE", + "code_postal": "74300", + "coordonnees_gps": [ + 46.0302694516, + 6.66062068121 + ], + "libelle_d_acheminement": "ARACHES LA FRASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66062068121, + 46.0302694516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c6395cf5017ff9f0ad43f920dd2d69501fcfc60", + "fields": { + "ligne_5": "LA FRASSE", + "code_commune_insee": "74014", + "libelle_d_acheminement": "ARACHES LA FRASSE", + "code_postal": "74300", + "nom_de_la_commune": "ARACHES LA FRASSE", + "coordonnees_gps": [ + 46.0302694516, + 6.66062068121 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66062068121, + 46.0302694516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4dc19a379f074781696b9611fc148d434aea00e", + "fields": { + "code_commune_insee": "74016", + "nom_de_la_commune": "ARCHAMPS", + "code_postal": "74160", + "coordonnees_gps": [ + 46.1222282115, + 6.13971386615 + ], + "libelle_d_acheminement": "ARCHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13971386615, + 46.1222282115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a8313a5f706e82d338e21ba8feba3c6e57e01d4", + "fields": { + "code_commune_insee": "74019", + "nom_de_la_commune": "ARGONAY", + "code_postal": "74370", + "coordonnees_gps": [ + 45.9472669174, + 6.14837081563 + ], + "libelle_d_acheminement": "ARGONAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14837081563, + 45.9472669174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a0b37a75f7a49aa51feede8c9a0da279e634e2e", + "fields": { + "code_commune_insee": "74027", + "nom_de_la_commune": "LA BALME DE THUY", + "code_postal": "74230", + "coordonnees_gps": [ + 45.910029772, + 6.28546229311 + ], + "libelle_d_acheminement": "LA BALME DE THUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28546229311, + 45.910029772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ab9368b79d4c37256444c8c6edeee2157a8ad5c", + "fields": { + "code_commune_insee": "74029", + "nom_de_la_commune": "BASSY", + "code_postal": "74910", + "coordonnees_gps": [ + 45.9914416036, + 5.82815626577 + ], + "libelle_d_acheminement": "BASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82815626577, + 45.9914416036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1306de850fd42b12dcd945e885f9913bbabce681", + "fields": { + "code_commune_insee": "74038", + "nom_de_la_commune": "BOGEVE", + "code_postal": "74250", + "coordonnees_gps": [ + 46.194241107, + 6.43929186038 + ], + "libelle_d_acheminement": "BOGEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43929186038, + 46.194241107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cf191ab0d642b695c33066922eeb6fde91ca43a", + "fields": { + "ligne_5": "LOEX", + "code_commune_insee": "74040", + "libelle_d_acheminement": "BONNE", + "code_postal": "74380", + "nom_de_la_commune": "BONNE", + "coordonnees_gps": [ + 46.1718364348, + 6.31931310923 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31931310923, + 46.1718364348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b3ba24fd8531ca806b3f9aa0ae46be2367e58f5", + "fields": { + "code_commune_insee": "74044", + "nom_de_la_commune": "BOSSEY", + "code_postal": "74160", + "coordonnees_gps": [ + 46.1500584591, + 6.17275446607 + ], + "libelle_d_acheminement": "BOSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17275446607, + 46.1500584591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49d690b122a4db82eac4c033cead1dee683c2294", + "fields": { + "code_commune_insee": "74051", + "nom_de_la_commune": "CERCIER", + "code_postal": "74350", + "coordonnees_gps": [ + 46.021660163, + 6.04815697534 + ], + "libelle_d_acheminement": "CERCIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04815697534, + 46.021660163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "226a5fa9d4e797d0f384f0dbbae1ecdd414e6d1d", + "fields": { + "code_commune_insee": "74052", + "nom_de_la_commune": "CERNEX", + "code_postal": "74350", + "coordonnees_gps": [ + 46.0623077421, + 6.03872026675 + ], + "libelle_d_acheminement": "CERNEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03872026675, + 46.0623077421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "971ddf20a05d4ce205c118a49927eeb3a8f9e8eb", + "fields": { + "ligne_5": "ARGENTIERE", + "code_commune_insee": "74056", + "libelle_d_acheminement": "CHAMONIX MONT BLANC", + "code_postal": "74400", + "nom_de_la_commune": "CHAMONIX MONT BLANC", + "coordonnees_gps": [ + 45.9309819111, + 6.92360096711 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92360096711, + 45.9309819111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cb3a2253f5b53157dfa26247bce91affb09b5c4", + "fields": { + "ligne_5": "LES PRAZ DE CHAMONIX", + "code_commune_insee": "74056", + "libelle_d_acheminement": "CHAMONIX MONT BLANC", + "code_postal": "74400", + "nom_de_la_commune": "CHAMONIX MONT BLANC", + "coordonnees_gps": [ + 45.9309819111, + 6.92360096711 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92360096711, + 45.9309819111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d0dc97df2d68edefbb167c6c1fa03e65bd043a0", + "fields": { + "code_commune_insee": "74074", + "nom_de_la_commune": "CHEVRIER", + "code_postal": "74520", + "coordonnees_gps": [ + 46.1120536918, + 5.91128750728 + ], + "libelle_d_acheminement": "CHEVRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91128750728, + 46.1120536918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63f7468d966142af5ddf0ee4add2d75ddd847df3", + "fields": { + "code_commune_insee": "74077", + "nom_de_la_commune": "CLARAFOND ARCINE", + "code_postal": "74270", + "coordonnees_gps": [ + 46.074723886, + 5.89580535006 + ], + "libelle_d_acheminement": "CLARAFOND ARCINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89580535006, + 46.074723886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c529a2e7d7221b48e5a878f9b3981c2f9414c08b", + "fields": { + "code_commune_insee": "74079", + "nom_de_la_commune": "LES CLEFS", + "code_postal": "74230", + "coordonnees_gps": [ + 45.8448702892, + 6.32686437969 + ], + "libelle_d_acheminement": "LES CLEFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32686437969, + 45.8448702892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ca410dcaf82ec925c9228121d70f31c4cff3aa2", + "fields": { + "code_commune_insee": "74085", + "nom_de_la_commune": "LES CONTAMINES MONTJOIE", + "code_postal": "74170", + "coordonnees_gps": [ + 45.7888971555, + 6.73152876295 + ], + "libelle_d_acheminement": "LES CONTAMINES MONTJOIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73152876295, + 45.7888971555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac12edd45f4763c3487263497b1661d69207983d", + "fields": { + "code_commune_insee": "74087", + "nom_de_la_commune": "CONTAMINE SUR ARVE", + "code_postal": "74130", + "coordonnees_gps": [ + 46.1334593706, + 6.33869457098 + ], + "libelle_d_acheminement": "CONTAMINE SUR ARVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33869457098, + 46.1334593706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "885ceabe66c03e5dc6fa404de778d90a3522db11", + "fields": { + "code_commune_insee": "74095", + "nom_de_la_commune": "CREMPIGNY BONNEGUETE", + "code_postal": "74150", + "coordonnees_gps": [ + 45.9467841367, + 5.90312519314 + ], + "libelle_d_acheminement": "CREMPIGNY BONNEGUETE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90312519314, + 45.9467841367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02f40ae285fed8c6c526ad02ceefdb44bfe76225", + "fields": { + "code_commune_insee": "74109", + "nom_de_la_commune": "ELOISE", + "code_postal": "01200", + "coordonnees_gps": [ + 46.0837640303, + 5.84669856092 + ], + "libelle_d_acheminement": "ELOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84669856092, + 46.0837640303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d07bf69d4e97aba0f5629b7ecb7188206a1ea45", + "fields": { + "code_commune_insee": "74116", + "nom_de_la_commune": "ETAUX", + "code_postal": "74800", + "coordonnees_gps": [ + 46.060819717, + 6.26988707785 + ], + "libelle_d_acheminement": "ETAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26988707785, + 46.060819717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24b5cd087f7eff639907274eff4af6fd35ca05e7", + "fields": { + "code_commune_insee": "74118", + "nom_de_la_commune": "ETREMBIERES", + "code_postal": "74100", + "coordonnees_gps": [ + 46.1698202877, + 6.20839249952 + ], + "libelle_d_acheminement": "ETREMBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20839249952, + 46.1698202877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a065d36c8b531c7aceacc2e676c2426ed66261be", + "fields": { + "code_commune_insee": "74119", + "nom_de_la_commune": "EVIAN LES BAINS", + "code_postal": "74500", + "coordonnees_gps": [ + 46.3924102379, + 6.58612507528 + ], + "libelle_d_acheminement": "EVIAN LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58612507528, + 46.3924102379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "996f757336809a9ce685ba7c6b77316f112297cc", + "fields": { + "code_commune_insee": "74124", + "nom_de_la_commune": "FEIGERES", + "code_postal": "74160", + "coordonnees_gps": [ + 46.1104409048, + 6.07310572582 + ], + "libelle_d_acheminement": "FEIGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07310572582, + 46.1104409048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bccd674d02663523da152c4d1b8c9129f2fe4f8", + "fields": { + "code_commune_insee": "74126", + "nom_de_la_commune": "FESSY", + "code_postal": "74890", + "coordonnees_gps": [ + 46.2708634498, + 6.42354470529 + ], + "libelle_d_acheminement": "FESSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42354470529, + 46.2708634498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a6878477781307c1c53ec451301830914c130bd", + "fields": { + "code_commune_insee": "74131", + "nom_de_la_commune": "FRANGY", + "code_postal": "74270", + "coordonnees_gps": [ + 46.0231025542, + 5.92267414864 + ], + "libelle_d_acheminement": "FRANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92267414864, + 46.0231025542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0b29c2406ce1983f22b1a11361f92da7691f368", + "fields": { + "code_commune_insee": "74138", + "nom_de_la_commune": "GRUFFY", + "code_postal": "74540", + "coordonnees_gps": [ + 45.7831959946, + 6.06312063481 + ], + "libelle_d_acheminement": "GRUFFY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06312063481, + 45.7831959946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ca766d2c1c5950223cf8c20f459cee2db97a945", + "fields": { + "code_commune_insee": "74139", + "nom_de_la_commune": "HABERE LULLIN", + "code_postal": "74420", + "coordonnees_gps": [ + 46.2330939582, + 6.462221779 + ], + "libelle_d_acheminement": "HABERE LULLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.462221779, + 46.2330939582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4b611cf44fab393e8e9d8453b4f1da4826f3403", + "fields": { + "code_commune_insee": "74146", + "nom_de_la_commune": "LARRINGES", + "code_postal": "74500", + "coordonnees_gps": [ + 46.369808059, + 6.58783064485 + ], + "libelle_d_acheminement": "LARRINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58783064485, + 46.369808059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be9748eb16aea472e8f0e877b1f4f7cf9a97317c", + "fields": { + "code_commune_insee": "74155", + "nom_de_la_commune": "LULLIN", + "code_postal": "74470", + "coordonnees_gps": [ + 46.2792006557, + 6.51041633979 + ], + "libelle_d_acheminement": "LULLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51041633979, + 46.2792006557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3602dfea080b84c2584d48206157197f4f6d5464", + "fields": { + "code_commune_insee": "74156", + "nom_de_la_commune": "LULLY", + "code_postal": "74890", + "coordonnees_gps": [ + 46.2927550589, + 6.40876638382 + ], + "libelle_d_acheminement": "LULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40876638382, + 46.2927550589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d04c849bf621689665a51541495c1dc01387153", + "fields": { + "code_commune_insee": "74162", + "nom_de_la_commune": "MARCELLAZ", + "code_postal": "74250", + "coordonnees_gps": [ + 46.1452555386, + 6.35771780068 + ], + "libelle_d_acheminement": "MARCELLAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35771780068, + 46.1452555386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bcb29c50a45477a0a9cb44ff6a9ef1e3957f4df", + "fields": { + "code_commune_insee": "74175", + "nom_de_la_commune": "MEILLERIE", + "code_postal": "74500", + "coordonnees_gps": [ + 46.4006869695, + 6.73172142623 + ], + "libelle_d_acheminement": "MEILLERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73172142623, + 46.4006869695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb48862efa75b5378fb43fb01b9735b1561340af", + "fields": { + "code_commune_insee": "74176", + "nom_de_la_commune": "MENTHON ST BERNARD", + "code_postal": "74290", + "coordonnees_gps": [ + 45.8653434236, + 6.19371720419 + ], + "libelle_d_acheminement": "MENTHON ST BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19371720419, + 45.8653434236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d45d531664aed5d09643a79eb1e4f642d08af7d7", + "fields": { + "code_commune_insee": "74183", + "nom_de_la_commune": "MIEUSSY", + "code_postal": "74440", + "coordonnees_gps": [ + 46.1453438048, + 6.53345961052 + ], + "libelle_d_acheminement": "MIEUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53345961052, + 46.1453438048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22505d367cdb6048a77b8c083b73dd81a003655e", + "fields": { + "ligne_5": "SOMMAND", + "code_commune_insee": "74183", + "libelle_d_acheminement": "MIEUSSY", + "code_postal": "74440", + "nom_de_la_commune": "MIEUSSY", + "coordonnees_gps": [ + 46.1453438048, + 6.53345961052 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53345961052, + 46.1453438048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e95779dec65acf292413389bc57a14ddfadc64bb", + "fields": { + "ligne_5": "ESSERTS SALEVE", + "code_commune_insee": "74185", + "libelle_d_acheminement": "MONNETIER MORNEX", + "code_postal": "74560", + "nom_de_la_commune": "MONNETIER MORNEX", + "coordonnees_gps": [ + 46.1525800446, + 6.21241233878 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21241233878, + 46.1525800446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff5272d4774901f0210252b41324eae35b92a219", + "fields": { + "code_commune_insee": "74190", + "nom_de_la_commune": "MORILLON", + "code_postal": "74440", + "coordonnees_gps": [ + 46.0632390772, + 6.67318237741 + ], + "libelle_d_acheminement": "MORILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67318237741, + 46.0632390772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84d410cea2408d4463e9c1a0040d9e22c76e5173", + "fields": { + "code_commune_insee": "74192", + "nom_de_la_commune": "MOYE", + "code_postal": "74150", + "coordonnees_gps": [ + 45.8711582586, + 5.89506512149 + ], + "libelle_d_acheminement": "MOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89506512149, + 45.8711582586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54d4560e3b8599fabe746b08f06a254333dc3440", + "fields": { + "code_commune_insee": "74196", + "nom_de_la_commune": "NANCY SUR CLUSES", + "code_postal": "74300", + "coordonnees_gps": [ + 46.0239034674, + 6.57403286211 + ], + "libelle_d_acheminement": "NANCY SUR CLUSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57403286211, + 46.0239034674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e69879da5f5bc3919636c0e3930a6f51d018ac3", + "fields": { + "code_commune_insee": "74197", + "nom_de_la_commune": "NANGY", + "code_postal": "74380", + "coordonnees_gps": [ + 46.1500146903, + 6.30645788987 + ], + "libelle_d_acheminement": "NANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30645788987, + 46.1500146903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcb290a525a4698a32d3224bb77e8d1fab3b6ffc", + "fields": { + "ligne_5": "CHEDDE", + "code_commune_insee": "74208", + "libelle_d_acheminement": "PASSY", + "code_postal": "74190", + "nom_de_la_commune": "PASSY", + "coordonnees_gps": [ + 45.9545838758, + 6.74056895873 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74056895873, + 45.9545838758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58b7bf0afda6b6d868809b6ef8fccaeb625a8f6f", + "fields": { + "ligne_5": "SANCELLEMOZ", + "code_commune_insee": "74208", + "libelle_d_acheminement": "PASSY", + "code_postal": "74190", + "nom_de_la_commune": "PASSY", + "coordonnees_gps": [ + 45.9545838758, + 6.74056895873 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74056895873, + 45.9545838758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "265642225c1143da44aef8e4690804a82d696727", + "fields": { + "code_commune_insee": "50231", + "nom_de_la_commune": "HAUTEVILLE SUR MER", + "code_postal": "50590", + "coordonnees_gps": [ + 48.9741132204, + -1.54436628419 + ], + "libelle_d_acheminement": "HAUTEVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54436628419, + 48.9741132204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6cc1feeffc77a3cb6853090864eb7e5a0476668", + "fields": { + "code_commune_insee": "50234", + "nom_de_la_commune": "LA HAYE BELLEFOND", + "code_postal": "50410", + "coordonnees_gps": [ + 48.9808356321, + -1.18892406479 + ], + "libelle_d_acheminement": "LA HAYE BELLEFOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18892406479, + 48.9808356321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa984455b3e082ed9c88845ffa845bf5aaabbc34", + "fields": { + "ligne_5": "SURVILLE", + "code_commune_insee": "50236", + "libelle_d_acheminement": "LA HAYE", + "code_postal": "50250", + "nom_de_la_commune": "LA HAYE", + "coordonnees_gps": [ + 49.2835142105, + -1.53943989107 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53943989107, + 49.2835142105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be13b44b10875e190451020b56dcf02359e56887", + "fields": { + "code_commune_insee": "50237", + "nom_de_la_commune": "LA HAYE PESNEL", + "code_postal": "50320", + "coordonnees_gps": [ + 48.8097220034, + -1.374935921 + ], + "libelle_d_acheminement": "LA HAYE PESNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.374935921, + 48.8097220034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c7d273ca624091a4b7011e4ffa30a410d6c0511", + "fields": { + "code_commune_insee": "50241", + "nom_de_la_commune": "HEMEVEZ", + "code_postal": "50700", + "coordonnees_gps": [ + 49.4623918009, + -1.43528849976 + ], + "libelle_d_acheminement": "HEMEVEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43528849976, + 49.4623918009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab48556909023ef27bdbda53c134e437ab19ac2a", + "fields": { + "code_commune_insee": "50253", + "nom_de_la_commune": "HUISNES SUR MER", + "code_postal": "50170", + "coordonnees_gps": [ + 48.6124227402, + -1.44918235268 + ], + "libelle_d_acheminement": "HUISNES SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44918235268, + 48.6124227402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "383723b6d0317db7d72beb59992b60d70d40f4a3", + "fields": { + "ligne_5": "MONTIGNY", + "code_commune_insee": "50256", + "libelle_d_acheminement": "ISIGNY LE BUAT", + "code_postal": "50540", + "nom_de_la_commune": "ISIGNY LE BUAT", + "coordonnees_gps": [ + 48.6214964353, + -1.18298649234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18298649234, + 48.6214964353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f5d2177f1a3009ef3fb9751be4bde6480c1ecaf", + "fields": { + "ligne_5": "LE MESNIL RAINFRAY", + "code_commune_insee": "50260", + "libelle_d_acheminement": "JUVIGNY LES VALLEES", + "code_postal": "50520", + "nom_de_la_commune": "JUVIGNY LES VALLEES", + "coordonnees_gps": [ + 48.678576703, + -1.04281408802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04281408802, + 48.678576703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c7d78cf5ce6a069def584f3f7c1fde7f5e3b804", + "fields": { + "code_commune_insee": "50262", + "nom_de_la_commune": "LA LANDE D AIROU", + "code_postal": "50800", + "coordonnees_gps": [ + 48.8191087979, + -1.28348605862 + ], + "libelle_d_acheminement": "LA LANDE D AIROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28348605862, + 48.8191087979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41644af302e0d6257f4bed68bb816eb0a238c4c4", + "fields": { + "code_commune_insee": "50269", + "nom_de_la_commune": "LIESVILLE SUR DOUVE", + "code_postal": "50480", + "coordonnees_gps": [ + 49.3526847756, + -1.322250003 + ], + "libelle_d_acheminement": "LIESVILLE SUR DOUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.322250003, + 49.3526847756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6df421b0da4d6a8bb77522e3a6b304f96e8e4613", + "fields": { + "ligne_5": "PRETOT STE SUZANNE", + "code_commune_insee": "50273", + "libelle_d_acheminement": "MONTSENELLE", + "code_postal": "50250", + "nom_de_la_commune": "MONTSENELLE", + "coordonnees_gps": [ + 49.2964016031, + -1.48893562927 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48893562927, + 49.2964016031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddf040b3b6445e42e8ec2143e9e8bc7c5004e9e1", + "fields": { + "ligne_5": "MARIGNY", + "code_commune_insee": "50292", + "libelle_d_acheminement": "MARIGNY LE LOZON", + "code_postal": "50570", + "nom_de_la_commune": "MARIGNY LE LOZON", + "coordonnees_gps": [ + 49.1042100375, + -1.2522099973 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2522099973, + 49.1042100375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "300d74f2e0c8030bcce0ae8a606a3f755b6e788e", + "fields": { + "code_commune_insee": "50315", + "nom_de_la_commune": "LE MESNILLARD", + "code_postal": "50600", + "coordonnees_gps": [ + 48.6310057924, + -1.08070582492 + ], + "libelle_d_acheminement": "LE MESNILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08070582492, + 48.6310057924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96c5b48680e0c9822183f5c3069b1dbcadd7d7b7", + "fields": { + "code_commune_insee": "50317", + "nom_de_la_commune": "LE MESNIL OZENNE", + "code_postal": "50220", + "coordonnees_gps": [ + 48.6675006123, + -1.21767106141 + ], + "libelle_d_acheminement": "LE MESNIL OZENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21767106141, + 48.6675006123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57840df8bc702a734ada7375f399a2381a78ec7e", + "fields": { + "code_commune_insee": "50340", + "nom_de_la_commune": "MONTCUIT", + "code_postal": "50490", + "coordonnees_gps": [ + 49.1158136189, + -1.34654440183 + ], + "libelle_d_acheminement": "MONTCUIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34654440183, + 49.1158136189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cfa238ac8ecbdc4a90cb7da5b9599276d09c4f8", + "fields": { + "code_commune_insee": "50342", + "nom_de_la_commune": "MONTFARVILLE", + "code_postal": "50760", + "coordonnees_gps": [ + 49.6556616978, + -1.26338019218 + ], + "libelle_d_acheminement": "MONTFARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26338019218, + 49.6556616978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9479820dc4c32f96cf6a70891733eb5e5549ec05", + "fields": { + "ligne_5": "NOTRE DAME DU TOUCHET", + "code_commune_insee": "50359", + "libelle_d_acheminement": "MORTAIN BOCAGE", + "code_postal": "50140", + "nom_de_la_commune": "MORTAIN BOCAGE", + "coordonnees_gps": [ + 48.6474805702, + -0.931721848821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.931721848821, + 48.6474805702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e69957c3f803c3b568c3b811d07ef305aaf4f1af", + "fields": { + "code_commune_insee": "50361", + "nom_de_la_commune": "LA MOUCHE", + "code_postal": "50320", + "coordonnees_gps": [ + 48.7848809108, + -1.3527392237 + ], + "libelle_d_acheminement": "LA MOUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3527392237, + 48.7848809108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25a707bc3cb144c20850e9f162c6467d8792efc3", + "fields": { + "ligne_5": "LE MESNIL OPAC", + "code_commune_insee": "50363", + "libelle_d_acheminement": "MOYON VILLAGES", + "code_postal": "50860", + "nom_de_la_commune": "MOYON VILLAGES", + "coordonnees_gps": [ + 48.9941243257, + -1.13665567668 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13665567668, + 48.9941243257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f41813ab40041224c6f5d631318da1a966b3ad7", + "fields": { + "code_commune_insee": "50368", + "nom_de_la_commune": "NAY", + "code_postal": "50190", + "coordonnees_gps": [ + 49.2418464549, + -1.37167813409 + ], + "libelle_d_acheminement": "NAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37167813409, + 49.2418464549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4382ac054dba1d317c77aed15e7c1267f86b4e44", + "fields": { + "code_commune_insee": "50371", + "nom_de_la_commune": "LE NEUFBOURG", + "code_postal": "50140", + "coordonnees_gps": [ + 48.6630193769, + -0.947435614235 + ], + "libelle_d_acheminement": "LE NEUFBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.947435614235, + 48.6630193769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "118be4959fa760189b8edd3e62125810092b7213", + "fields": { + "code_commune_insee": "50379", + "nom_de_la_commune": "NOTRE DAME DE LIVOYE", + "code_postal": "50370", + "coordonnees_gps": [ + 48.7471616775, + -1.19991486968 + ], + "libelle_d_acheminement": "NOTRE DAME DE LIVOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19991486968, + 48.7471616775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea93ba0980518c8242249a6425986a3281246eeb", + "fields": { + "code_commune_insee": "50394", + "nom_de_la_commune": "PERIERS", + "code_postal": "50190", + "coordonnees_gps": [ + 49.1918062542, + -1.41249922765 + ], + "libelle_d_acheminement": "PERIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41249922765, + 49.1918062542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56a4ba71489cf49512bdc019aa7e942490001591", + "fields": { + "ligne_5": "CRETTEVILLE", + "code_commune_insee": "50400", + "libelle_d_acheminement": "PICAUVILLE", + "code_postal": "50250", + "nom_de_la_commune": "PICAUVILLE", + "coordonnees_gps": [ + 49.3794617832, + -1.3877872154 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3877872154, + 49.3794617832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86de8842fc999397d636ae222063cc7ec314fea6", + "fields": { + "ligne_5": "AMFREVILLE", + "code_commune_insee": "50400", + "libelle_d_acheminement": "PICAUVILLE", + "code_postal": "50480", + "nom_de_la_commune": "PICAUVILLE", + "coordonnees_gps": [ + 49.3794617832, + -1.3877872154 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3877872154, + 49.3794617832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7ccfd1cc512a3413f0c83723524c74defd8f1fd", + "fields": { + "ligne_5": "GOURBESVILLE", + "code_commune_insee": "50400", + "libelle_d_acheminement": "PICAUVILLE", + "code_postal": "50480", + "nom_de_la_commune": "PICAUVILLE", + "coordonnees_gps": [ + 49.3794617832, + -1.3877872154 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3877872154, + 49.3794617832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "615c05029ddd7178efd3c65f647e2ec63fb005a3", + "fields": { + "code_commune_insee": "50410", + "nom_de_la_commune": "PONTORSON", + "code_postal": "50170", + "coordonnees_gps": [ + 48.5689721753, + -1.48653363271 + ], + "libelle_d_acheminement": "PONTORSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48653363271, + 48.5689721753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b5641e2249e7db154de7527de4efd6b6549ba37", + "fields": { + "ligne_5": "ARDEVON", + "code_commune_insee": "50410", + "libelle_d_acheminement": "PONTORSON", + "code_postal": "50170", + "nom_de_la_commune": "PONTORSON", + "coordonnees_gps": [ + 48.5689721753, + -1.48653363271 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48653363271, + 48.5689721753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d17d958bf3935493dc774cf13170c9512f357397", + "fields": { + "code_commune_insee": "50417", + "nom_de_la_commune": "QUETTEHOU", + "code_postal": "50630", + "coordonnees_gps": [ + 49.5883938646, + -1.32408087794 + ], + "libelle_d_acheminement": "QUETTEHOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32408087794, + 49.5883938646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce473fe7a61490dd4a14db6d910de15946f25d49", + "fields": { + "ligne_5": "GUEHEBERT", + "code_commune_insee": "50419", + "libelle_d_acheminement": "QUETTREVILLE SUR SIENNE", + "code_postal": "50210", + "nom_de_la_commune": "QUETTREVILLE SUR SIENNE", + "coordonnees_gps": [ + 48.9618413224, + -1.46914956989 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46914956989, + 48.9618413224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd6c8d9373dbdc5b463bdf988db659acb7c3e6f4", + "fields": { + "ligne_5": "CONTRIERES", + "code_commune_insee": "50419", + "libelle_d_acheminement": "QUETTREVILLE SUR SIENNE", + "code_postal": "50660", + "nom_de_la_commune": "QUETTREVILLE SUR SIENNE", + "coordonnees_gps": [ + 48.9618413224, + -1.46914956989 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46914956989, + 48.9618413224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a15bbb17e458189402d66a31a80f7851eb6cf45c", + "fields": { + "code_commune_insee": "50420", + "nom_de_la_commune": "QUIBOU", + "code_postal": "50750", + "coordonnees_gps": [ + 49.0718984354, + -1.2132232691 + ], + "libelle_d_acheminement": "QUIBOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2132232691, + 49.0718984354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26d0fe96c362086ffe404ca464b14b02225f0e0a", + "fields": { + "code_commune_insee": "50430", + "nom_de_la_commune": "REIGNEVILLE BOCAGE", + "code_postal": "50390", + "coordonnees_gps": [ + 49.4109584119, + -1.47453769549 + ], + "libelle_d_acheminement": "REIGNEVILLE BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47453769549, + 49.4109584119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82b55adbdc6f5a8b007d7a92db0b10843e8ca0e5", + "fields": { + "ligne_5": "LES CHAMPS DE LOSQUE", + "code_commune_insee": "50431", + "libelle_d_acheminement": "REMILLY LES MARAIS", + "code_postal": "50620", + "nom_de_la_commune": "REMILLY LES MARAIS", + "coordonnees_gps": [ + 49.1797139942, + -1.26085995101 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26085995101, + 49.1797139942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "365f9f7f65387e65844f6357764105f2ba3058bc", + "fields": { + "code_commune_insee": "50442", + "nom_de_la_commune": "LE ROZEL", + "code_postal": "50340", + "coordonnees_gps": [ + 49.4814801103, + -1.82868622801 + ], + "libelle_d_acheminement": "LE ROZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82868622801, + 49.4814801103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ce71e8de27a845ce0b1e062634c31b5b3e61a2a", + "fields": { + "ligne_5": "LA CHAPELLE DU FEST", + "code_commune_insee": "50444", + "libelle_d_acheminement": "ST AMAND VILLAGES", + "code_postal": "50160", + "nom_de_la_commune": "ST AMAND VILLAGES", + "coordonnees_gps": [ + 49.0444946813, + -0.948478098898 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.948478098898, + 49.0444946813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2af0fbac065ddda0076db0156b21976d54c239d0", + "fields": { + "ligne_5": "PLACY MONTAIGU", + "code_commune_insee": "50444", + "libelle_d_acheminement": "ST AMAND VILLAGES", + "code_postal": "50160", + "nom_de_la_commune": "ST AMAND VILLAGES", + "coordonnees_gps": [ + 49.0444946813, + -0.948478098898 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.948478098898, + 49.0444946813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba20b01de5d7ce125036fc5e8073e7a0712156d6", + "fields": { + "code_commune_insee": "50454", + "nom_de_la_commune": "ST CHRISTOPHE DU FOC", + "code_postal": "50340", + "coordonnees_gps": [ + 49.5546561276, + -1.73523737028 + ], + "libelle_d_acheminement": "ST CHRISTOPHE DU FOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73523737028, + 49.5546561276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5cf883d443d11591bfb527b65fade1aa7e563c4", + "fields": { + "code_commune_insee": "50457", + "nom_de_la_commune": "STE COLOMBE", + "code_postal": "50390", + "coordonnees_gps": [ + 49.4151457162, + -1.51172159828 + ], + "libelle_d_acheminement": "STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51172159828, + 49.4151457162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe62638c64764dbd4720f0510fdba1a4616ee05a", + "fields": { + "code_commune_insee": "50464", + "nom_de_la_commune": "ST DENIS LE VETU", + "code_postal": "50210", + "coordonnees_gps": [ + 48.9932776669, + -1.37792309863 + ], + "libelle_d_acheminement": "ST DENIS LE VETU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37792309863, + 48.9932776669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68056927133d8db26457ba1ada248602d612d167", + "fields": { + "code_commune_insee": "50467", + "nom_de_la_commune": "ST FLOXEL", + "code_postal": "50310", + "coordonnees_gps": [ + 49.4885809022, + -1.35724625484 + ], + "libelle_d_acheminement": "ST FLOXEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35724625484, + 49.4885809022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c3f277374033684432501a93164bd39d342a8e3", + "fields": { + "code_commune_insee": "50468", + "nom_de_la_commune": "ST FROMOND", + "code_postal": "50620", + "coordonnees_gps": [ + 49.2257606006, + -1.10862929646 + ], + "libelle_d_acheminement": "ST FROMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10862929646, + 49.2257606006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ae2c166d2aea960afd1f048316b3b5301eb5f35", + "fields": { + "code_commune_insee": "50479", + "nom_de_la_commune": "ST GERMAIN DE VARREVILLE", + "code_postal": "50480", + "coordonnees_gps": [ + 49.4391006116, + -1.24467615745 + ], + "libelle_d_acheminement": "ST GERMAIN DE VARREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24467615745, + 49.4391006116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77007c3d690789d80e7078c2069cbe34b2258b61", + "fields": { + "code_commune_insee": "50484", + "nom_de_la_commune": "ST HILAIRE DU HARCOUET", + "code_postal": "50600", + "coordonnees_gps": [ + 48.5720535322, + -1.08283897698 + ], + "libelle_d_acheminement": "ST HILAIRE DU HARCOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08283897698, + 48.5720535322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b748ebfcc9543ef0e75def782b84765e8557470", + "fields": { + "ligne_5": "VERGONCEY", + "code_commune_insee": "50487", + "libelle_d_acheminement": "ST JAMES", + "code_postal": "50240", + "nom_de_la_commune": "ST JAMES", + "coordonnees_gps": [ + 48.5257483373, + -1.32634914406 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32634914406, + 48.5257483373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d49529ac77a6eb47971fe3de0992aaa93e894c97", + "fields": { + "code_commune_insee": "50489", + "nom_de_la_commune": "ST JEAN DE LA HAIZE", + "code_postal": "50300", + "coordonnees_gps": [ + 48.7198424785, + -1.35962175748 + ], + "libelle_d_acheminement": "ST JEAN DE LA HAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35962175748, + 48.7198424785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a42932c8d0989cd154a55492f0a85b2905453297", + "fields": { + "code_commune_insee": "50496", + "nom_de_la_commune": "ST JEAN LE THOMAS", + "code_postal": "50530", + "coordonnees_gps": [ + 48.7269044295, + -1.51493536559 + ], + "libelle_d_acheminement": "ST JEAN LE THOMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51493536559, + 48.7269044295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7139f174a4dfa3fc152063290f93ef6fd660b04", + "fields": { + "code_commune_insee": "50505", + "nom_de_la_commune": "ST LOUP", + "code_postal": "50300", + "coordonnees_gps": [ + 48.6657307643, + -1.30380060924 + ], + "libelle_d_acheminement": "ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30380060924, + 48.6657307643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b80e824867c96f12ef77aae3910a1b1d394d346", + "fields": { + "code_commune_insee": "50507", + "nom_de_la_commune": "ST MARCOUF", + "code_postal": "50310", + "coordonnees_gps": [ + 49.4783175934, + -1.28643297158 + ], + "libelle_d_acheminement": "ST MARCOUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28643297158, + 49.4783175934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a505a5f251e29096bcedffe31f521c3fd9d29ab6", + "fields": { + "ligne_5": "ST SAUVEUR DE CHAULIEU", + "code_commune_insee": "50514", + "libelle_d_acheminement": "CHAULIEU", + "code_postal": "50150", + "nom_de_la_commune": "CHAULIEU", + "coordonnees_gps": [ + 48.7475664246, + -0.860916100149 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.860916100149, + 48.7475664246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a5629b8ad6cee2ceaf6ccd6e4a576fee8d08a26", + "fields": { + "code_commune_insee": "50521", + "nom_de_la_commune": "ST MAUR DES BOIS", + "code_postal": "50800", + "coordonnees_gps": [ + 48.816824491, + -1.15153276787 + ], + "libelle_d_acheminement": "ST MAUR DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15153276787, + 48.816824491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03e6a42af594ac30254e89a776bf1264ede2533a", + "fields": { + "code_commune_insee": "50522", + "nom_de_la_commune": "ST MAURICE EN COTENTIN", + "code_postal": "50270", + "coordonnees_gps": [ + 49.3948768703, + -1.70004225617 + ], + "libelle_d_acheminement": "ST MAURICE EN COTENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.70004225617, + 49.3948768703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cf064a1e25951a9be99e5fb93e2882afe9dcfb4", + "fields": { + "ligne_5": "BEUZEVILLE AU PLAIN", + "code_commune_insee": "50523", + "libelle_d_acheminement": "STE MERE EGLISE", + "code_postal": "50480", + "nom_de_la_commune": "STE MERE EGLISE", + "coordonnees_gps": [ + 49.4088606097, + -1.32366056657 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32366056657, + 49.4088606097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f4fa83192d5475b36a140ef92134261e00655e1", + "fields": { + "ligne_5": "LA BOULOUZE", + "code_commune_insee": "50531", + "libelle_d_acheminement": "ST OVIN", + "code_postal": "50300", + "nom_de_la_commune": "ST OVIN", + "coordonnees_gps": [ + 48.6792316921, + -1.24401346918 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24401346918, + 48.6792316921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b36dc67534ba6a4e71fc69cf099d200cc04d0141", + "fields": { + "code_commune_insee": "50532", + "nom_de_la_commune": "ST PAIR SUR MER", + "code_postal": "50380", + "coordonnees_gps": [ + 48.8023738223, + -1.54696599127 + ], + "libelle_d_acheminement": "ST PAIR SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54696599127, + 48.8023738223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbb01b6d6d6fc17b21aa16a8ed5f62ba3369e5c7", + "fields": { + "ligne_5": "STE PIENCE", + "code_commune_insee": "50535", + "libelle_d_acheminement": "LE PARC", + "code_postal": "50870", + "nom_de_la_commune": "LE PARC", + "coordonnees_gps": [ + 48.7713169182, + -1.29851023982 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29851023982, + 48.7713169182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11cd61cafe93cd88a59c0171f03ee0b95b4af32f", + "fields": { + "ligne_5": "LE MESNIL HERMAN", + "code_commune_insee": "50546", + "libelle_d_acheminement": "BOURGVALLEES", + "code_postal": "50750", + "nom_de_la_commune": "BOURGVALLEES", + "coordonnees_gps": [ + 49.0498085612, + -1.1310126677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1310126677, + 49.0498085612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "523eb7c92a053e0bd3cf3f313c292ebea9735ea0", + "fields": { + "ligne_5": "LA RONDE HAYE", + "code_commune_insee": "50550", + "libelle_d_acheminement": "ST SAUVEUR VILLAGES", + "code_postal": "50490", + "nom_de_la_commune": "ST SAUVEUR VILLAGES", + "coordonnees_gps": [ + 49.1238164508, + -1.40639536649 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40639536649, + 49.1238164508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3964379b1a573d1419ee099ed64f4b16665f9048", + "fields": { + "ligne_5": "VAUDRIMESNIL", + "code_commune_insee": "50550", + "libelle_d_acheminement": "ST SAUVEUR VILLAGES", + "code_postal": "50490", + "nom_de_la_commune": "ST SAUVEUR VILLAGES", + "coordonnees_gps": [ + 49.1238164508, + -1.40639536649 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40639536649, + 49.1238164508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d26fab2278f5cb34689ece48ade523dae2f5e3ef", + "fields": { + "code_commune_insee": "50551", + "nom_de_la_commune": "ST SAUVEUR LE VICOMTE", + "code_postal": "50390", + "coordonnees_gps": [ + 49.3798967977, + -1.54758330129 + ], + "libelle_d_acheminement": "ST SAUVEUR LE VICOMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54758330129, + 49.3798967977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ab290836e949aa6571ce6b3ea09f2f8398a6c1b", + "fields": { + "code_commune_insee": "50554", + "nom_de_la_commune": "ST SENIER SOUS AVRANCHES", + "code_postal": "50300", + "coordonnees_gps": [ + 48.6870653386, + -1.31913118915 + ], + "libelle_d_acheminement": "ST SENIER SOUS AVRANCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31913118915, + 48.6870653386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc09ca1947c8b926326e5e1b7cf4803816b788fd", + "fields": { + "code_commune_insee": "50562", + "nom_de_la_commune": "ST VAAST LA HOUGUE", + "code_postal": "50550", + "coordonnees_gps": [ + 49.5993508281, + -1.27306891683 + ], + "libelle_d_acheminement": "ST VAAST LA HOUGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27306891683, + 49.5993508281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c709af2e02447008b4b69d981297cb447773d63", + "fields": { + "ligne_5": "LA ROCHELLE NORMANDE", + "code_commune_insee": "50565", + "libelle_d_acheminement": "SARTILLY BAIE BOCAGE", + "code_postal": "50530", + "nom_de_la_commune": "SARTILLY BAIE BOCAGE", + "coordonnees_gps": [ + 48.7540217735, + -1.46351733597 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46351733597, + 48.7540217735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90308df58e62757c75d93f854f32967a80599218", + "fields": { + "code_commune_insee": "50568", + "nom_de_la_commune": "SAUSSEY", + "code_postal": "50200", + "coordonnees_gps": [ + 49.0115191307, + -1.42526649012 + ], + "libelle_d_acheminement": "SAUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42526649012, + 49.0115191307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9620f453681233af50180aaa788fcc80525882f", + "fields": { + "code_commune_insee": "50572", + "nom_de_la_commune": "SENOVILLE", + "code_postal": "50270", + "coordonnees_gps": [ + 49.4292326453, + -1.77035371165 + ], + "libelle_d_acheminement": "SENOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77035371165, + 49.4292326453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b990d39b19cf895b03246488012880ae951f55bc", + "fields": { + "code_commune_insee": "50574", + "nom_de_la_commune": "SERVON", + "code_postal": "50170", + "coordonnees_gps": [ + 48.6028234324, + -1.41113304944 + ], + "libelle_d_acheminement": "SERVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41113304944, + 48.6028234324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "014b11ad4266cfc176ebf2e9a8069a3f64a78428", + "fields": { + "code_commune_insee": "50578", + "nom_de_la_commune": "SORTOSVILLE", + "code_postal": "50310", + "coordonnees_gps": [ + 49.4817461354, + -1.42985751557 + ], + "libelle_d_acheminement": "SORTOSVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42985751557, + 49.4817461354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11af8ab18bfa52d112936df7cd2299777d5af1c8", + "fields": { + "code_commune_insee": "50579", + "nom_de_la_commune": "SOTTEVAST", + "code_postal": "50260", + "coordonnees_gps": [ + 49.5221585855, + -1.60619449046 + ], + "libelle_d_acheminement": "SOTTEVAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60619449046, + 49.5221585855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5abfb7a60b92c543dc5fec401c31f5f47b99975", + "fields": { + "code_commune_insee": "50584", + "nom_de_la_commune": "SUBLIGNY", + "code_postal": "50870", + "coordonnees_gps": [ + 48.7530084367, + -1.35897250285 + ], + "libelle_d_acheminement": "SUBLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35897250285, + 48.7530084367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7762699c09f45ef07a61b04e58eb60a4b403a3ec", + "fields": { + "ligne_5": "TESSY SUR VIRE", + "code_commune_insee": "50592", + "libelle_d_acheminement": "TESSY BOCAGE", + "code_postal": "50420", + "nom_de_la_commune": "TESSY BOCAGE", + "coordonnees_gps": [ + 48.9633310504, + -1.08464396412 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08464396412, + 48.9633310504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd84c3f5ff3d9abdce97456d2d20e0ab77025475", + "fields": { + "code_commune_insee": "50594", + "nom_de_la_commune": "TEURTHEVILLE HAGUE", + "code_postal": "50690", + "coordonnees_gps": [ + 49.5833092246, + -1.73831108507 + ], + "libelle_d_acheminement": "TEURTHEVILLE HAGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73831108507, + 49.5833092246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9d46c29b2827c17d3dbf03383c9abb858573c34", + "fields": { + "ligne_5": "STE EUGIENNE", + "code_commune_insee": "50597", + "libelle_d_acheminement": "TIREPIED SUR SEE", + "code_postal": "50870", + "nom_de_la_commune": "TIREPIED SUR SEE", + "coordonnees_gps": [ + 48.7239372262, + -1.2735313312 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2735313312, + 48.7239372262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "917e6b37adec3ccb5d34aa19e34a78794b2f57b2", + "fields": { + "code_commune_insee": "50604", + "nom_de_la_commune": "TREAUVILLE", + "code_postal": "50340", + "coordonnees_gps": [ + 49.5379513416, + -1.82387618642 + ], + "libelle_d_acheminement": "TREAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82387618642, + 49.5379513416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7333d26dfc9833237b6d0357672f26f6eecff787", + "fields": { + "code_commune_insee": "50606", + "nom_de_la_commune": "TRIBEHOU", + "code_postal": "50620", + "coordonnees_gps": [ + 49.2091331956, + -1.24592963433 + ], + "libelle_d_acheminement": "TRIBEHOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24592963433, + 49.2091331956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2ea7db74940ee1541611b73f1452dfc30047121", + "fields": { + "code_commune_insee": "50607", + "nom_de_la_commune": "LA TRINITE", + "code_postal": "50800", + "coordonnees_gps": [ + 48.7882899186, + -1.24631476826 + ], + "libelle_d_acheminement": "LA TRINITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24631476826, + 48.7882899186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95e13dc5a308f6c2eca164d0565f0642808fac73", + "fields": { + "code_commune_insee": "50617", + "nom_de_la_commune": "VARENGUEBEC", + "code_postal": "50250", + "coordonnees_gps": [ + 49.3375063908, + -1.49183766292 + ], + "libelle_d_acheminement": "VARENGUEBEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49183766292, + 49.3375063908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52a427ca91a25fa5691c6578f83e467257eb6cc1", + "fields": { + "ligne_5": "VILLEDIEU LES POELES", + "code_commune_insee": "50639", + "libelle_d_acheminement": "VILLEDIEU LES POELES ROUFFIGNY", + "code_postal": "50800", + "nom_de_la_commune": "VILLEDIEU LES POELES ROUFFIGNY", + "coordonnees_gps": [ + 48.8344159273, + -1.22248057231 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22248057231, + 48.8344159273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be32084c3f3aeeadc7d1a6140281cd937ce9f69f", + "fields": { + "code_commune_insee": "50641", + "nom_de_la_commune": "VILLIERS FOSSARD", + "code_postal": "50680", + "coordonnees_gps": [ + 49.1613885671, + -1.06108270385 + ], + "libelle_d_acheminement": "VILLIERS FOSSARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06108270385, + 49.1613885671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3c4a11b741e682211ee7a35d2db00020a646ae8", + "fields": { + "code_commune_insee": "50643", + "nom_de_la_commune": "VIRANDEVILLE", + "code_postal": "50690", + "coordonnees_gps": [ + 49.5693060058, + -1.7150466184 + ], + "libelle_d_acheminement": "VIRANDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.7150466184, + 49.5693060058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9669c410f25a6b8d5a073e64ad856eaecdb744de", + "fields": { + "code_commune_insee": "51002", + "nom_de_la_commune": "ST MARTIN D ABLOIS", + "code_postal": "51530", + "coordonnees_gps": [ + 49.0118734772, + 3.83947434155 + ], + "libelle_d_acheminement": "ST MARTIN D ABLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83947434155, + 49.0118734772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3cdb5115a739f1b6cc48cca93aca96cceeaadfd", + "fields": { + "code_commune_insee": "51004", + "nom_de_la_commune": "ALLEMANCHE LAUNAY ET SOYER", + "code_postal": "51260", + "coordonnees_gps": [ + 48.6066890182, + 3.79098671125 + ], + "libelle_d_acheminement": "ALLEMANCHE LAUNAY ET SOYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79098671125, + 48.6066890182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52724f8300499ea7cf2cb160953b4c01f1840089", + "fields": { + "code_commune_insee": "51006", + "nom_de_la_commune": "ALLIANCELLES", + "code_postal": "51250", + "coordonnees_gps": [ + 48.8033869619, + 4.87418519758 + ], + "libelle_d_acheminement": "ALLIANCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87418519758, + 48.8033869619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6753b11ffdc963a3f9316adc9be42528184c775c", + "fields": { + "code_commune_insee": "51017", + "nom_de_la_commune": "ARZILLIERES NEUVILLE", + "code_postal": "51290", + "coordonnees_gps": [ + 48.6458789827, + 4.60054022663 + ], + "libelle_d_acheminement": "ARZILLIERES NEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60054022663, + 48.6458789827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "920bfd74841b8c5b2272dafdf9165c140771f27a", + "fields": { + "code_commune_insee": "51020", + "nom_de_la_commune": "AUBILLY", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2127739521, + 3.85555629436 + ], + "libelle_d_acheminement": "AUBILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85555629436, + 49.2127739521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a7e1c7b7e6175b877669ff4024eaeaa8d9482b7", + "fields": { + "code_commune_insee": "51025", + "nom_de_la_commune": "AUMENANCOURT", + "code_postal": "51110", + "coordonnees_gps": [ + 49.3855740123, + 4.05833195184 + ], + "libelle_d_acheminement": "AUMENANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05833195184, + 49.3855740123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01041274ea6a3bf04f94fbc32f72b0740ada0dda", + "fields": { + "ligne_5": "BISSEUIL", + "code_commune_insee": "51030", + "libelle_d_acheminement": "AY CHAMPAGNE", + "code_postal": "51150", + "nom_de_la_commune": "AY CHAMPAGNE", + "coordonnees_gps": [ + 49.0625907596, + 3.9973447815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9973447815, + 49.0625907596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4fe3f0b15ab7be9d09bb84206075c616ba96fa7", + "fields": { + "code_commune_insee": "51032", + "nom_de_la_commune": "BAGNEUX", + "code_postal": "51260", + "coordonnees_gps": [ + 48.5608751887, + 3.83152846641 + ], + "libelle_d_acheminement": "BAGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83152846641, + 48.5608751887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7374bb2a22e0418685f6427fc069def4bc1ee5bc", + "fields": { + "code_commune_insee": "51039", + "nom_de_la_commune": "BASSU", + "code_postal": "51300", + "coordonnees_gps": [ + 48.833946829, + 4.69258148533 + ], + "libelle_d_acheminement": "BASSU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69258148533, + 48.833946829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b38932581aea2a50cc1368abb20b967afe0f3bd", + "fields": { + "code_commune_insee": "51063", + "nom_de_la_commune": "BINSON ET ORQUIGNY", + "code_postal": "51700", + "coordonnees_gps": [ + 49.0964941609, + 3.78995380367 + ], + "libelle_d_acheminement": "BINSON ET ORQUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78995380367, + 49.0964941609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0163979ccf1b5c7bb71ef8dac723a93c3c9b5635", + "fields": { + "ligne_5": "BOURGOGNE", + "code_commune_insee": "51075", + "libelle_d_acheminement": "BOURGOGNE FRESNE", + "code_postal": "51110", + "nom_de_la_commune": "BOURGOGNE FRESNE", + "coordonnees_gps": [ + 49.3547870367, + 4.0718983781 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0718983781, + 49.3547870367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89b6789c42974e5c2d7b96f9b853bbc8f4340750", + "fields": { + "code_commune_insee": "51076", + "nom_de_la_commune": "BOURSAULT", + "code_postal": "51480", + "coordonnees_gps": [ + 49.0517564757, + 3.83850554916 + ], + "libelle_d_acheminement": "BOURSAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83850554916, + 49.0517564757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7974b03c8572c59f6ebd91a8dea118c87353698b", + "fields": { + "code_commune_insee": "51082", + "nom_de_la_commune": "BRAUX STE COHIERE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0940197616, + 4.82214706786 + ], + "libelle_d_acheminement": "BRAUX STE COHIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82214706786, + 49.0940197616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68348b90baeea458e427f958915abc7c97c9347f", + "fields": { + "code_commune_insee": "51084", + "nom_de_la_commune": "BREBAN", + "code_postal": "51320", + "coordonnees_gps": [ + 48.5794229708, + 4.39201727027 + ], + "libelle_d_acheminement": "BREBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39201727027, + 48.5794229708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24da74943873c0614e6d276ba26fed0da3151ea8", + "fields": { + "code_commune_insee": "74219", + "nom_de_la_commune": "QUINTAL", + "code_postal": "74600", + "coordonnees_gps": [ + 45.8329607054, + 6.09119171062 + ], + "libelle_d_acheminement": "QUINTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09119171062, + 45.8329607054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aafd5a1d73e411f5e9f7bae14441d8ef16c81884", + "fields": { + "code_commune_insee": "51094", + "nom_de_la_commune": "BRUSSON", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7415318428, + 4.7060593864 + ], + "libelle_d_acheminement": "BRUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7060593864, + 48.7415318428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34afb334e365ace9eab205f686aacebe184a2989", + "fields": { + "code_commune_insee": "74241", + "nom_de_la_commune": "ST JEOIRE", + "code_postal": "74490", + "coordonnees_gps": [ + 46.1392092512, + 6.46500057209 + ], + "libelle_d_acheminement": "ST JEOIRE EN FAUCIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46500057209, + 46.1392092512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fc6e0b47153b07cbf6520ea6d9d876a7e814f0c", + "fields": { + "code_commune_insee": "51095", + "nom_de_la_commune": "LE BUISSON", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7556229579, + 4.7516934988 + ], + "libelle_d_acheminement": "LE BUISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7516934988, + 48.7556229579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab6c14956b2135eff202a5047f673ba3f03af0b8", + "fields": { + "code_commune_insee": "74253", + "nom_de_la_commune": "ST SIXT", + "code_postal": "74800", + "coordonnees_gps": [ + 46.0419013961, + 6.32297351763 + ], + "libelle_d_acheminement": "ST SIXT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32297351763, + 46.0419013961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0c066ad883a6d9b38cfe5aadb2e77ea0a6106cc", + "fields": { + "code_commune_insee": "51119", + "nom_de_la_commune": "CHAMPILLON", + "code_postal": "51160", + "coordonnees_gps": [ + 49.0848248132, + 3.97539279568 + ], + "libelle_d_acheminement": "CHAMPILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97539279568, + 49.0848248132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "724f2ef95a7763a6cc9f3bf69cc972f2812dc5cd", + "fields": { + "code_commune_insee": "74254", + "nom_de_la_commune": "ST SYLVESTRE", + "code_postal": "74540", + "coordonnees_gps": [ + 45.8403822562, + 6.01327128168 + ], + "libelle_d_acheminement": "ST SYLVESTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01327128168, + 45.8403822562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0df0c1794b6c746fa7c03845c63763a03b4e4709", + "fields": { + "code_commune_insee": "51120", + "nom_de_la_commune": "CHAMPLAT ET BOUJACOURT", + "code_postal": "51480", + "coordonnees_gps": [ + 49.1558530772, + 3.82649080886 + ], + "libelle_d_acheminement": "CHAMPLAT ET BOUJACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82649080886, + 49.1558530772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6a815feec1b70e1275ea2c35527e08508489df1", + "fields": { + "ligne_5": "ST ROCH", + "code_commune_insee": "74256", + "libelle_d_acheminement": "SALLANCHES", + "code_postal": "74700", + "nom_de_la_commune": "SALLANCHES", + "coordonnees_gps": [ + 45.9468155788, + 6.60711053078 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60711053078, + 45.9468155788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "536ba85deb1e8dd83e406190f6254a80ee0b78a7", + "fields": { + "code_commune_insee": "51130", + "nom_de_la_commune": "CHARMONT", + "code_postal": "51330", + "coordonnees_gps": [ + 48.8691072811, + 4.87049946102 + ], + "libelle_d_acheminement": "CHARMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87049946102, + 48.8691072811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddbe4efe61ee6f36a30c1f78495e842ddb90db0b", + "fields": { + "code_commune_insee": "74260", + "nom_de_la_commune": "SAVIGNY", + "code_postal": "74520", + "coordonnees_gps": [ + 46.0694979288, + 5.95170767195 + ], + "libelle_d_acheminement": "SAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95170767195, + 46.0694979288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97afca6f43d114181b49dacab3b585b86a86e769", + "fields": { + "code_commune_insee": "51138", + "nom_de_la_commune": "CHATRICES", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0394929135, + 4.94531122105 + ], + "libelle_d_acheminement": "CHATRICES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94531122105, + 49.0394929135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9689de826a4beb245925b60a72f1f21634f7039", + "fields": { + "code_commune_insee": "74261", + "nom_de_la_commune": "SAXEL", + "code_postal": "74420", + "coordonnees_gps": [ + 46.2447795601, + 6.40325461428 + ], + "libelle_d_acheminement": "SAXEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40325461428, + 46.2447795601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c182f6f71b9735564b1a838dc518213090e6169", + "fields": { + "code_commune_insee": "51148", + "nom_de_la_commune": "CHEPPES LA PRAIRIE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8177073997, + 4.44216733433 + ], + "libelle_d_acheminement": "CHEPPES LA PRAIRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44216733433, + 48.8177073997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2c0683a07bc18505e9b067f1523ec3bbc89b522", + "fields": { + "code_commune_insee": "74278", + "nom_de_la_commune": "THYEZ", + "code_postal": "74300", + "coordonnees_gps": [ + 46.0881937629, + 6.53665081936 + ], + "libelle_d_acheminement": "THYEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53665081936, + 46.0881937629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efd9be6cd9b46d3b5dd3d55060554937c9eec9d2", + "fields": { + "code_commune_insee": "51152", + "nom_de_la_commune": "CHIGNY LES ROSES", + "code_postal": "51500", + "coordonnees_gps": [ + 49.1510624676, + 4.06063898517 + ], + "libelle_d_acheminement": "CHIGNY LES ROSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06063898517, + 49.1510624676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b7ccc77fd2c42364b57fb5349550acec52147c0", + "fields": { + "ligne_5": "LES OLLIERES", + "code_commune_insee": "74282", + "libelle_d_acheminement": "FILLIERE", + "code_postal": "74370", + "nom_de_la_commune": "FILLIERE", + "coordonnees_gps": [ + 45.9923733891, + 6.28837579239 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28837579239, + 45.9923733891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88510dc8334a688c3303a2cc7b2d713be97539e5", + "fields": { + "code_commune_insee": "51154", + "nom_de_la_commune": "CLAMANGES", + "code_postal": "51130", + "coordonnees_gps": [ + 48.8301398095, + 4.08311012604 + ], + "libelle_d_acheminement": "CLAMANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08311012604, + 48.8301398095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "385d5ea862e8708fb67bb0d7f71c76d45b4bb0be", + "fields": { + "ligne_5": "THORENS GLIERES", + "code_commune_insee": "74282", + "libelle_d_acheminement": "FILLIERE", + "code_postal": "74570", + "nom_de_la_commune": "FILLIERE", + "coordonnees_gps": [ + 45.9923733891, + 6.28837579239 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28837579239, + 45.9923733891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2151e2f8e760e2674483acfbf05cfe8913a05485", + "fields": { + "code_commune_insee": "51158", + "nom_de_la_commune": "VAL DES MARAIS", + "code_postal": "51130", + "coordonnees_gps": [ + 48.8273139118, + 3.96840907593 + ], + "libelle_d_acheminement": "VAL DES MARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96840907593, + 48.8273139118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99ea0792a233ea98357ba8643321d7495993b9f1", + "fields": { + "code_commune_insee": "74292", + "nom_de_la_commune": "VAULX", + "code_postal": "74150", + "coordonnees_gps": [ + 45.9255788911, + 5.99894217943 + ], + "libelle_d_acheminement": "VAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99894217943, + 45.9255788911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8834d56be5de8b4d69445bddabcd9a494312bd0a", + "fields": { + "ligne_5": "AULNAY AUX PLANCHES", + "code_commune_insee": "51158", + "libelle_d_acheminement": "VAL DES MARAIS", + "code_postal": "51130", + "nom_de_la_commune": "VAL DES MARAIS", + "coordonnees_gps": [ + 48.8273139118, + 3.96840907593 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96840907593, + 48.8273139118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10af8b9cc097cab5324b846fd99a99c04d51e735", + "fields": { + "code_commune_insee": "74297", + "nom_de_la_commune": "VERSONNEX", + "code_postal": "74150", + "coordonnees_gps": [ + 45.9261649892, + 5.92765676795 + ], + "libelle_d_acheminement": "VERSONNEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92765676795, + 45.9261649892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8097180d22d8eaf6e5314f7dec3fedabdb176305", + "fields": { + "code_commune_insee": "51166", + "nom_de_la_commune": "CONTAULT", + "code_postal": "51330", + "coordonnees_gps": [ + 48.915677101, + 4.78766587099 + ], + "libelle_d_acheminement": "CONTAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78766587099, + 48.915677101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "620f5eadb5108eaf4ae797a28bf5ac674191a775", + "fields": { + "code_commune_insee": "74305", + "nom_de_la_commune": "VILLE LA GRAND", + "code_postal": "74100", + "coordonnees_gps": [ + 46.2044481273, + 6.26056985125 + ], + "libelle_d_acheminement": "VILLE LA GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26056985125, + 46.2044481273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9608b2b61028e04e3b2acad0f4b568ab232fa32", + "fields": { + "code_commune_insee": "51175", + "nom_de_la_commune": "CORROBERT", + "code_postal": "51210", + "coordonnees_gps": [ + 48.9233679376, + 3.60759515783 + ], + "libelle_d_acheminement": "CORROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60759515783, + 48.9233679376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8be0effe2f52c8c8b3f8dd2e7aecaf784714540b", + "fields": { + "code_commune_insee": "74307", + "nom_de_la_commune": "VILLY LE PELLOUX", + "code_postal": "74350", + "coordonnees_gps": [ + 46.0004341516, + 6.13625958374 + ], + "libelle_d_acheminement": "VILLY LE PELLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13625958374, + 46.0004341516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0ffd94d0c3688f02a638e5b8c98e18b61c24fa3", + "fields": { + "code_commune_insee": "51181", + "nom_de_la_commune": "COURCELLES SAPICOURT", + "code_postal": "51140", + "coordonnees_gps": [ + 49.2678098004, + 3.84186227209 + ], + "libelle_d_acheminement": "COURCELLES SAPICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84186227209, + 49.2678098004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cbc36a46bae3cc2aa6c5addba5a930faa25c34d", + "fields": { + "code_commune_insee": "74309", + "nom_de_la_commune": "VIRY", + "code_postal": "74580", + "coordonnees_gps": [ + 46.1193528783, + 6.02496587452 + ], + "libelle_d_acheminement": "VIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02496587452, + 46.1193528783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8230c278df0716f4fcdd0983e6e97e0ce6d62dbc", + "fields": { + "code_commune_insee": "51216", + "nom_de_la_commune": "DONTRIEN", + "code_postal": "51490", + "coordonnees_gps": [ + 49.2408574651, + 4.41468324878 + ], + "libelle_d_acheminement": "DONTRIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41468324878, + 49.2408574651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9afe44206c543ca4ac3055b140942e29e66376a9", + "fields": { + "code_commune_insee": "74310", + "nom_de_la_commune": "VIUZ LA CHIESAZ", + "code_postal": "74540", + "coordonnees_gps": [ + 45.8113073621, + 6.07554631236 + ], + "libelle_d_acheminement": "VIUZ LA CHIESAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07554631236, + 45.8113073621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4660f253c12f33059e993f8977d10788859b0ee6", + "fields": { + "code_commune_insee": "51217", + "nom_de_la_commune": "DORMANS", + "code_postal": "51700", + "coordonnees_gps": [ + 49.062193047, + 3.6454130311 + ], + "libelle_d_acheminement": "DORMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6454130311, + 49.062193047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a0c85b14f80f06aab4010bdf5eae5327c155e5e", + "fields": { + "code_commune_insee": "74311", + "nom_de_la_commune": "VIUZ EN SALLAZ", + "code_postal": "74250", + "coordonnees_gps": [ + 46.1640902035, + 6.4072679008 + ], + "libelle_d_acheminement": "VIUZ EN SALLAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4072679008, + 46.1640902035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a7c02ff40bb3425f159e815ff1560c2f2faeec4", + "fields": { + "ligne_5": "SOILLY", + "code_commune_insee": "51217", + "libelle_d_acheminement": "DORMANS", + "code_postal": "51700", + "nom_de_la_commune": "DORMANS", + "coordonnees_gps": [ + 49.062193047, + 3.6454130311 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6454130311, + 49.062193047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a103c74eb3c000812a449e93ca9578c76fd404df", + "fields": { + "code_commune_insee": "74315", + "nom_de_la_commune": "YVOIRE", + "code_postal": "74140", + "coordonnees_gps": [ + 46.3635082871, + 6.33214094024 + ], + "libelle_d_acheminement": "YVOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33214094024, + 46.3635082871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93ea817a0a3245c78e301566181e769b1a0a7770", + "fields": { + "code_commune_insee": "51222", + "nom_de_la_commune": "ECLAIRES", + "code_postal": "51800", + "coordonnees_gps": [ + 48.9981693662, + 5.00427988031 + ], + "libelle_d_acheminement": "ECLAIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00427988031, + 48.9981693662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f17b0b829e8eae2d8925922ba0dbcc9820b9d8c7", + "fields": { + "code_commune_insee": "75102", + "nom_de_la_commune": "PARIS 02", + "code_postal": "75002", + "coordonnees_gps": [ + 48.8679033789, + 2.34410716666 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34410716666, + 48.8679033789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "807755947cc6da5a2d0000b7fe87d5b5734151eb", + "fields": { + "code_commune_insee": "51226", + "nom_de_la_commune": "ECURY LE REPOS", + "code_postal": "51230", + "coordonnees_gps": [ + 48.8085024476, + 4.02740679239 + ], + "libelle_d_acheminement": "ECURY LE REPOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02740679239, + 48.8085024476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c0a8acbb1181b8abdedcbc0b5cbf4d0751b391b", + "fields": { + "code_commune_insee": "75103", + "nom_de_la_commune": "PARIS 03", + "code_postal": "75003", + "coordonnees_gps": [ + 48.8630541318, + 2.35936105897 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35936105897, + 48.8630541318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4cd49f0123da1919745dcb1f9a9818ec781b377", + "fields": { + "code_commune_insee": "51229", + "nom_de_la_commune": "EPENSE", + "code_postal": "51330", + "coordonnees_gps": [ + 48.9742892722, + 4.83231337792 + ], + "libelle_d_acheminement": "EPENSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83231337792, + 48.9742892722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "179bb684ced22c9915add5351a9353a15d8faa01", + "fields": { + "code_commune_insee": "75108", + "nom_de_la_commune": "PARIS 08", + "code_postal": "75008", + "coordonnees_gps": [ + 48.8725272666, + 2.31258256042 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31258256042, + 48.8725272666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdfbb7b6f4b53d58f2c055c41e361058e007a2f0", + "fields": { + "code_commune_insee": "51236", + "nom_de_la_commune": "LES ESSARTS LE VICOMTE", + "code_postal": "51310", + "coordonnees_gps": [ + 48.6646500716, + 3.55311169062 + ], + "libelle_d_acheminement": "LES ESSARTS LE VICOMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55311169062, + 48.6646500716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "002c6db0ac42532320564483c63a5ba30a072cea", + "fields": { + "code_commune_insee": "75114", + "nom_de_la_commune": "PARIS 14", + "code_postal": "75014", + "coordonnees_gps": [ + 48.8289932116, + 2.32710088326 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32710088326, + 48.8289932116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63a36c45dd76bcbed4f3a94ff76d791e0f9d532f", + "fields": { + "code_commune_insee": "51238", + "nom_de_la_commune": "ETOGES", + "code_postal": "51270", + "coordonnees_gps": [ + 48.8915340584, + 3.85279805872 + ], + "libelle_d_acheminement": "ETOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85279805872, + 48.8915340584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "498ff92fd006734fde0da9777bd5e642784a9128", + "fields": { + "code_commune_insee": "75116", + "nom_de_la_commune": "PARIS 16", + "code_postal": "75016", + "coordonnees_gps": [ + 48.8603987604, + 2.2620995594 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2620995594, + 48.8603987604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04434e85ee3d552652062bcd6c5b151130da2ec9", + "fields": { + "code_commune_insee": "51241", + "nom_de_la_commune": "EUVY", + "code_postal": "51230", + "coordonnees_gps": [ + 48.7176600126, + 4.01995122819 + ], + "libelle_d_acheminement": "EUVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01995122819, + 48.7176600126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9307881569c64a71a5944454c6f31cdd5ff36b70", + "fields": { + "code_commune_insee": "75117", + "nom_de_la_commune": "PARIS 17", + "code_postal": "75017", + "coordonnees_gps": [ + 48.8873371665, + 2.30748555949 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30748555949, + 48.8873371665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "398343f1b919ed9c4a22a2eb6f7b4d29048afddf", + "fields": { + "code_commune_insee": "51242", + "nom_de_la_commune": "FAGNIERES", + "code_postal": "51510", + "coordonnees_gps": [ + 48.9465486999, + 4.30937334592 + ], + "libelle_d_acheminement": "FAGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30937334592, + 48.9465486999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f34788bf4b8994bfa418b28e9b0b124c3bd2a0a", + "fields": { + "code_commune_insee": "75119", + "nom_de_la_commune": "PARIS 19", + "code_postal": "75019", + "coordonnees_gps": [ + 48.886868623, + 2.38469432787 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38469432787, + 48.886868623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3803cc9239965f70c78f7f973bfcf37b40b887f8", + "fields": { + "code_commune_insee": "51245", + "nom_de_la_commune": "FAVEROLLES ET COEMY", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2326869732, + 3.7908317551 + ], + "libelle_d_acheminement": "FAVEROLLES ET COEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7908317551, + 49.2326869732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3256d6c8eed68537a3cd3bda8cc3d57180773653", + "fields": { + "code_commune_insee": "76002", + "nom_de_la_commune": "ALVIMARE", + "code_postal": "76640", + "coordonnees_gps": [ + 49.6071633233, + 0.63205346079 + ], + "libelle_d_acheminement": "ALVIMARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.63205346079, + 49.6071633233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "318fef5e04a196bed580d5472866bea2ca673082", + "fields": { + "code_commune_insee": "51253", + "nom_de_la_commune": "FLORENT EN ARGONNE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1389592855, + 4.94934662778 + ], + "libelle_d_acheminement": "FLORENT EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94934662778, + 49.1389592855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b36d8a42c36fdc46d6bb262db931670b02f4bd9", + "fields": { + "code_commune_insee": "76005", + "nom_de_la_commune": "AMFREVILLE LA MI VOIE", + "code_postal": "76920", + "coordonnees_gps": [ + 49.4044285564, + 1.12471250441 + ], + "libelle_d_acheminement": "AMFREVILLE LA MI VOIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12471250441, + 49.4044285564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9b0520f4d5038d8f5925e37a56ea9f1deaf4fe7", + "fields": { + "code_commune_insee": "51256", + "nom_de_la_commune": "FONTAINE SUR AY", + "code_postal": "51160", + "coordonnees_gps": [ + 49.0919957027, + 4.06660970581 + ], + "libelle_d_acheminement": "FONTAINE SUR AY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06660970581, + 49.0919957027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b5d41f4e7e343abddadb757a61459a06cd40002", + "fields": { + "code_commune_insee": "76009", + "nom_de_la_commune": "ANCOURTEVILLE SUR HERICOURT", + "code_postal": "76560", + "coordonnees_gps": [ + 49.6907478864, + 0.660651271131 + ], + "libelle_d_acheminement": "ANCOURTEVILLE SUR HERICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.660651271131, + 49.6907478864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f80895ccdd5dd3d4bc0f9370f67bd02de7b92b41", + "fields": { + "code_commune_insee": "51258", + "nom_de_la_commune": "LA FORESTIERE", + "code_postal": "51120", + "coordonnees_gps": [ + 48.6603046786, + 3.6042984967 + ], + "libelle_d_acheminement": "LA FORESTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6042984967, + 48.6603046786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69a56b5332aea90b4f2fd94f34ac69e4443d0b9b", + "fields": { + "code_commune_insee": "76010", + "nom_de_la_commune": "ANCRETIEVILLE ST VICTOR", + "code_postal": "76760", + "coordonnees_gps": [ + 49.6545166114, + 0.967454665493 + ], + "libelle_d_acheminement": "ANCRETIEVILLE ST VICTOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.967454665493, + 49.6545166114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90c032dd651bd5294258a94c06ee931202888ec1", + "fields": { + "code_commune_insee": "51267", + "nom_de_la_commune": "GERMIGNY", + "code_postal": "51390", + "coordonnees_gps": [ + 49.2445998408, + 3.86056138886 + ], + "libelle_d_acheminement": "GERMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86056138886, + 49.2445998408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "773d9146e32a14bcc0c5888084d36bfb0a02d97a", + "fields": { + "code_commune_insee": "76020", + "nom_de_la_commune": "ANNEVILLE AMBOURVILLE", + "code_postal": "76480", + "coordonnees_gps": [ + 49.450044528, + 0.891983658071 + ], + "libelle_d_acheminement": "ANNEVILLE AMBOURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.891983658071, + 49.450044528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b989e6d68ec039fd41197a7914d574d87cce15ae", + "fields": { + "code_commune_insee": "51268", + "nom_de_la_commune": "GERMINON", + "code_postal": "51130", + "coordonnees_gps": [ + 48.8864611799, + 4.17848404466 + ], + "libelle_d_acheminement": "GERMINON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17848404466, + 48.8864611799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3ad1ce428844afdcf6ca2fab65e9450f64485d6", + "fields": { + "code_commune_insee": "76033", + "nom_de_la_commune": "AUBERVILLE LA RENAULT", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6859567281, + 0.37918269349 + ], + "libelle_d_acheminement": "AUBERVILLE LA RENAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37918269349, + 49.6859567281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54de53d0b6097407b2f68d35f3f32bd884230fdc", + "fields": { + "code_commune_insee": "51272", + "nom_de_la_commune": "GIVRY EN ARGONNE", + "code_postal": "51330", + "coordonnees_gps": [ + 48.9489230669, + 4.90669459258 + ], + "libelle_d_acheminement": "GIVRY EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90669459258, + 48.9489230669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77c1a41dc75f85b04b93e2a6c586169f47ac8a1c", + "fields": { + "code_commune_insee": "76043", + "nom_de_la_commune": "AUZEBOSC", + "code_postal": "76190", + "coordonnees_gps": [ + 49.6013719702, + 0.733647175328 + ], + "libelle_d_acheminement": "AUZEBOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.733647175328, + 49.6013719702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b1c151c1bd8aa15565fa3e80a68791805966688", + "fields": { + "code_commune_insee": "51279", + "nom_de_la_commune": "GRANGES SUR AUBE", + "code_postal": "51260", + "coordonnees_gps": [ + 48.5884688345, + 3.85896108603 + ], + "libelle_d_acheminement": "GRANGES SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85896108603, + 48.5884688345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "820d0522ff9fc941a72436f23fcd439931520077", + "fields": { + "code_commune_insee": "76047", + "nom_de_la_commune": "AUZOUVILLE SUR SAANE", + "code_postal": "76730", + "coordonnees_gps": [ + 49.741963291, + 0.931837478003 + ], + "libelle_d_acheminement": "AUZOUVILLE SUR SAANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.931837478003, + 49.741963291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8ae8326976035ebb92e083ea42de0a0761974b2", + "fields": { + "code_commune_insee": "51283", + "nom_de_la_commune": "HANS", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1139160574, + 4.74397425381 + ], + "libelle_d_acheminement": "HANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74397425381, + 49.1139160574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e71ba8666561d44d6cb2b74c5393f28ba0e17837", + "fields": { + "code_commune_insee": "76052", + "nom_de_la_commune": "BAILLEUL NEUVILLE", + "code_postal": "76660", + "coordonnees_gps": [ + 49.8096848103, + 1.42191745617 + ], + "libelle_d_acheminement": "BAILLEUL NEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42191745617, + 49.8096848103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "786bd42728727abc2e4e19f11a0e91422b65baba", + "fields": { + "code_commune_insee": "51284", + "nom_de_la_commune": "HAUSSIGNEMONT", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7163058306, + 4.75359455149 + ], + "libelle_d_acheminement": "HAUSSIGNEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75359455149, + 48.7163058306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c497ea9c86d4e763b6abdf1aa6ea644550045fab", + "fields": { + "code_commune_insee": "76057", + "nom_de_la_commune": "BARENTIN", + "code_postal": "76360", + "coordonnees_gps": [ + 49.5454370326, + 0.957011967644 + ], + "libelle_d_acheminement": "BARENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.957011967644, + 49.5454370326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93490dda6bd4d1e0dada9378c77ad6b00a35f635", + "fields": { + "code_commune_insee": "51295", + "nom_de_la_commune": "HUIRON", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6918417886, + 4.49329566326 + ], + "libelle_d_acheminement": "HUIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49329566326, + 48.6918417886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a110ceeae0d0221db844989716e393d826a5965a", + "fields": { + "code_commune_insee": "76060", + "nom_de_la_commune": "BEAUBEC LA ROSIERE", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6469045876, + 1.51422263037 + ], + "libelle_d_acheminement": "BEAUBEC LA ROSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51422263037, + 49.6469045876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83d004d44a87bdf58d17da6b2b28604425ad017d", + "fields": { + "code_commune_insee": "51300", + "nom_de_la_commune": "ISLE SUR MARNE", + "code_postal": "51290", + "coordonnees_gps": [ + 48.6453011796, + 4.6872585742 + ], + "libelle_d_acheminement": "ISLE SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6872585742, + 48.6453011796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "895dcabd0c59dae449e23c3633e3d2fb0903fc06", + "fields": { + "code_commune_insee": "76062", + "nom_de_la_commune": "BEAUMONT LE HARENG", + "code_postal": "76850", + "coordonnees_gps": [ + 49.6634230992, + 1.22007480848 + ], + "libelle_d_acheminement": "BEAUMONT LE HARENG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22007480848, + 49.6634230992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "693d84e7e9cecb7e4098b4aeada6c5fca06e63d6", + "fields": { + "code_commune_insee": "51316", + "nom_de_la_commune": "LARZICOURT", + "code_postal": "51290", + "coordonnees_gps": [ + 48.6349897271, + 4.72626956254 + ], + "libelle_d_acheminement": "LARZICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72626956254, + 48.6349897271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c9973c398b3a9d400c13b612dace04bf997b4c6", + "fields": { + "code_commune_insee": "76063", + "nom_de_la_commune": "BEAUVAL EN CAUX", + "code_postal": "76890", + "coordonnees_gps": [ + 49.7392898442, + 1.02536395494 + ], + "libelle_d_acheminement": "BEAUVAL EN CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02536395494, + 49.7392898442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb1e59788e35a191bab0400f40bbd447124fb1d1", + "fields": { + "code_commune_insee": "51319", + "nom_de_la_commune": "LENHARREE", + "code_postal": "51230", + "coordonnees_gps": [ + 48.7792639645, + 4.11685316512 + ], + "libelle_d_acheminement": "LENHARREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11685316512, + 48.7792639645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71a8d31951c3a8fd8217a63c03a21e5a65e7a47f", + "fields": { + "code_commune_insee": "76072", + "nom_de_la_commune": "BELLEVILLE EN CAUX", + "code_postal": "76890", + "coordonnees_gps": [ + 49.7043949749, + 0.988901362095 + ], + "libelle_d_acheminement": "BELLEVILLE EN CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.988901362095, + 49.7043949749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62d19f1b4d4a7c139d4eb6bd11e99c548bd313ce", + "fields": { + "code_commune_insee": "51327", + "nom_de_la_commune": "LOISY EN BRIE", + "code_postal": "51130", + "coordonnees_gps": [ + 48.8937645721, + 3.89048343145 + ], + "libelle_d_acheminement": "LOISY EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89048343145, + 48.8937645721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a73b9f85202fd35342095f1449be33405782860a", + "fields": { + "code_commune_insee": "76085", + "nom_de_la_commune": "BERTREVILLE ST OUEN", + "code_postal": "76590", + "coordonnees_gps": [ + 49.8123112354, + 1.04321401128 + ], + "libelle_d_acheminement": "BERTREVILLE ST OUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04321401128, + 49.8123112354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3bd600fd19789233166f12597c99f1864d678d0", + "fields": { + "code_commune_insee": "51339", + "nom_de_la_commune": "MAIRY SUR MARNE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8677969763, + 4.39336523723 + ], + "libelle_d_acheminement": "MAIRY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39336523723, + 48.8677969763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfa9f816eb1fa4e38fca9e3caa54cbc17daa6072", + "fields": { + "code_commune_insee": "76088", + "nom_de_la_commune": "BERVILLE SUR SEINE", + "code_postal": "76480", + "coordonnees_gps": [ + 49.4743258716, + 0.894809841877 + ], + "libelle_d_acheminement": "BERVILLE SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.894809841877, + 49.4743258716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbb8ef2854d5fcf2516cbca0b55eaf1335022479", + "fields": { + "code_commune_insee": "51367", + "nom_de_la_commune": "LE MESNIL SUR OGER", + "code_postal": "51190", + "coordonnees_gps": [ + 48.9392514319, + 4.01968783316 + ], + "libelle_d_acheminement": "LE MESNIL SUR OGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01968783316, + 48.9392514319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "729e8104a2c841639d5c4bdf5dd2dc98ebc95699", + "fields": { + "code_commune_insee": "76096", + "nom_de_la_commune": "BIVILLE LA BAIGNARDE", + "code_postal": "76890", + "coordonnees_gps": [ + 49.7215955868, + 1.04761911483 + ], + "libelle_d_acheminement": "BIVILLE LA BAIGNARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04761911483, + 49.7215955868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1b60b88a5a8e941718baff0e0405b46ac9a53c6", + "fields": { + "code_commune_insee": "51382", + "nom_de_la_commune": "MONT SUR COURVILLE", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2560688238, + 3.67592575502 + ], + "libelle_d_acheminement": "MONT SUR COURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67592575502, + 49.2560688238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5911f9d9c2401f9a029881e32d44b2efceac8226", + "fields": { + "code_commune_insee": "76100", + "nom_de_la_commune": "BLAINVILLE CREVON", + "code_postal": "76116", + "coordonnees_gps": [ + 49.504416715, + 1.29186032794 + ], + "libelle_d_acheminement": "BLAINVILLE CREVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29186032794, + 49.504416715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af4cb9606c256b1415af9ab34e35f6ed6df446bc", + "fields": { + "code_commune_insee": "51387", + "nom_de_la_commune": "MOSLINS", + "code_postal": "51530", + "coordonnees_gps": [ + 48.9566633894, + 3.90961634751 + ], + "libelle_d_acheminement": "MOSLINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90961634751, + 48.9566633894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc6086cdfe423e1fd878a500516e2b1a00fb87fd", + "fields": { + "code_commune_insee": "76119", + "nom_de_la_commune": "BOSC BERENGER", + "code_postal": "76680", + "coordonnees_gps": [ + 49.6345939152, + 1.253580255 + ], + "libelle_d_acheminement": "BOSC BERENGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.253580255, + 49.6345939152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b43b3cb418d77cf70cba9df9accc8b1f2096afb", + "fields": { + "code_commune_insee": "51395", + "nom_de_la_commune": "NESLE LA REPOSTE", + "code_postal": "51120", + "coordonnees_gps": [ + 48.6321483145, + 3.55444537036 + ], + "libelle_d_acheminement": "NESLE LA REPOSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55444537036, + 48.6321483145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec7089641de29d37f3be18e04dd8e06fa5b6f124", + "fields": { + "code_commune_insee": "76125", + "nom_de_la_commune": "BOSC LE HARD", + "code_postal": "76850", + "coordonnees_gps": [ + 49.6217325927, + 1.18584148284 + ], + "libelle_d_acheminement": "BOSC LE HARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18584148284, + 49.6217325927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b0879118786013d9e2fb8fa65add9364c3c940c", + "fields": { + "code_commune_insee": "51407", + "nom_de_la_commune": "LA NOUE", + "code_postal": "51310", + "coordonnees_gps": [ + 48.7384876549, + 3.62179405438 + ], + "libelle_d_acheminement": "LA NOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62179405438, + 48.7384876549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a79c0316f9d4c75c54f4ffe8c7a6b1424da15a5", + "fields": { + "code_commune_insee": "76129", + "nom_de_la_commune": "BOUDEVILLE", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7200445061, + 0.874466208058 + ], + "libelle_d_acheminement": "BOUDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.874466208058, + 49.7200445061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "043d9c9de0223b121ac8b71cadc328634e668f60", + "fields": { + "code_commune_insee": "51415", + "nom_de_la_commune": "OMEY", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8508163201, + 4.5057348075 + ], + "libelle_d_acheminement": "OMEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5057348075, + 48.8508163201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29e1883845e2800017037e8be8ea5939e4327c39", + "fields": { + "code_commune_insee": "76130", + "nom_de_la_commune": "BOUELLES", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7223152226, + 1.49218753372 + ], + "libelle_d_acheminement": "BOUELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49218753372, + 49.7223152226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe6af09d169ce3bdb5cc323eb17aa956e4977b99", + "fields": { + "code_commune_insee": "51420", + "nom_de_la_commune": "OUTREPONT", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7649161607, + 4.68747550141 + ], + "libelle_d_acheminement": "OUTREPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68747550141, + 48.7649161607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afc25d0de7ed123bd1676e119d8de978b9f8a989", + "fields": { + "code_commune_insee": "76147", + "nom_de_la_commune": "BULLY", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7208864104, + 1.35895678494 + ], + "libelle_d_acheminement": "BULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35895678494, + 49.7208864104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "505c8a71b0cd3e63d54910818d966199428e418d", + "fields": { + "code_commune_insee": "51422", + "nom_de_la_commune": "PARGNY LES REIMS", + "code_postal": "51390", + "coordonnees_gps": [ + 49.2191370591, + 3.92180730509 + ], + "libelle_d_acheminement": "PARGNY LES REIMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92180730509, + 49.2191370591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31cb77e005e2ffc557743bfd0b029503cd5d4b46", + "fields": { + "code_commune_insee": "76148", + "nom_de_la_commune": "BURES EN BRAY", + "code_postal": "76660", + "coordonnees_gps": [ + 49.7792273444, + 1.33526447896 + ], + "libelle_d_acheminement": "BURES EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33526447896, + 49.7792273444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "129694d8f391e5deb5af57e94407a16a1ff8fb8e", + "fields": { + "code_commune_insee": "51431", + "nom_de_la_commune": "PIERRY", + "code_postal": "51530", + "coordonnees_gps": [ + 49.0190498467, + 3.94930532069 + ], + "libelle_d_acheminement": "PIERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94930532069, + 49.0190498467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "057a9c88f37115960422cd9a8820a40b6a207589", + "fields": { + "code_commune_insee": "76157", + "nom_de_la_commune": "CANTELEU", + "code_postal": "76380", + "coordonnees_gps": [ + 49.4330992435, + 1.01355208279 + ], + "libelle_d_acheminement": "CANTELEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01355208279, + 49.4330992435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75094379f9869d17485717078ed78a0c7778847f", + "fields": { + "code_commune_insee": "51432", + "nom_de_la_commune": "PLEURS", + "code_postal": "51230", + "coordonnees_gps": [ + 48.6970615395, + 3.87091196227 + ], + "libelle_d_acheminement": "PLEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87091196227, + 48.6970615395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0900c0f4de83c6d0ef5e76265f6d4fbd3a481a1", + "fields": { + "ligne_5": "BAPEAUME LES ROUEN", + "code_commune_insee": "76157", + "libelle_d_acheminement": "CANTELEU", + "code_postal": "76380", + "nom_de_la_commune": "CANTELEU", + "coordonnees_gps": [ + 49.4330992435, + 1.01355208279 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01355208279, + 49.4330992435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d22c5ae98ac7a845345686059cfe235d3272ac9", + "fields": { + "code_commune_insee": "51433", + "nom_de_la_commune": "PLICHANCOURT", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7405847183, + 4.67233357502 + ], + "libelle_d_acheminement": "PLICHANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67233357502, + 48.7405847183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55863fa126b80aa20cd44f14ae07c86631b1bad9", + "fields": { + "code_commune_insee": "76158", + "nom_de_la_commune": "CANVILLE LES DEUX EGLISES", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7745209331, + 0.836317584091 + ], + "libelle_d_acheminement": "CANVILLE LES DEUX EGLISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.836317584091, + 49.7745209331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7788dd4496e726732213c20509e57c8ee9184e4", + "fields": { + "code_commune_insee": "51434", + "nom_de_la_commune": "PLIVOT", + "code_postal": "51150", + "coordonnees_gps": [ + 49.0112410452, + 4.07664321848 + ], + "libelle_d_acheminement": "PLIVOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07664321848, + 49.0112410452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d94c29fde0815df3012783008a1b8b70c61ccb1", + "fields": { + "code_commune_insee": "76169", + "nom_de_la_commune": "LA CERLANGUE", + "code_postal": "76430", + "coordonnees_gps": [ + 49.4885084321, + 0.415722968132 + ], + "libelle_d_acheminement": "LA CERLANGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.415722968132, + 49.4885084321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe2f49864e6405f734d1e969948d5b92d9a07047", + "fields": { + "code_commune_insee": "51446", + "nom_de_la_commune": "PRINGY", + "code_postal": "51300", + "coordonnees_gps": [ + 48.773140994, + 4.48202645952 + ], + "libelle_d_acheminement": "PRINGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48202645952, + 48.773140994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2685da450e8e4fc66aa882b780d9dd92a3539a24", + "fields": { + "code_commune_insee": "76172", + "nom_de_la_commune": "LA CHAPELLE SUR DUN", + "code_postal": "76740", + "coordonnees_gps": [ + 49.8577948391, + 0.845890538309 + ], + "libelle_d_acheminement": "LA CHAPELLE SUR DUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.845890538309, + 49.8577948391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0059dc8ba801bd412b771ab7a242b90592e6e86b", + "fields": { + "ligne_5": "LA NEUVILLETTE", + "code_commune_insee": "51454", + "libelle_d_acheminement": "REIMS", + "code_postal": "51100", + "nom_de_la_commune": "REIMS", + "coordonnees_gps": [ + 49.2514906066, + 4.0402302322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0402302322, + 49.2514906066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0641a06efd743325b7cdce84d71b4213fcbf3e53", + "fields": { + "code_commune_insee": "76174", + "nom_de_la_commune": "CIDEVILLE", + "code_postal": "76570", + "coordonnees_gps": [ + 49.6117818169, + 0.888359643121 + ], + "libelle_d_acheminement": "CIDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.888359643121, + 49.6117818169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4193bd1127018122aa4371165d4ef0d2602d79e3", + "fields": { + "code_commune_insee": "51457", + "nom_de_la_commune": "REUIL", + "code_postal": "51480", + "coordonnees_gps": [ + 49.085169468, + 3.81305711475 + ], + "libelle_d_acheminement": "REUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81305711475, + 49.085169468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c66be108800cd3c17952d0d4bebe3a4c4335b52", + "fields": { + "code_commune_insee": "76179", + "nom_de_la_commune": "CLERES", + "code_postal": "76690", + "coordonnees_gps": [ + 49.5912266795, + 1.10310854217 + ], + "libelle_d_acheminement": "CLERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10310854217, + 49.5912266795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfc44609d1e9d90b56f80bde2aabece3f7cf4467", + "fields": { + "code_commune_insee": "51464", + "nom_de_la_commune": "ROMAIN", + "code_postal": "51140", + "coordonnees_gps": [ + 49.3300427757, + 3.75689883765 + ], + "libelle_d_acheminement": "ROMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75689883765, + 49.3300427757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d552762e4e81d359496c834102d6e068a68ab5f", + "fields": { + "code_commune_insee": "76184", + "nom_de_la_commune": "COLMESNIL MANNEVILLE", + "code_postal": "76550", + "coordonnees_gps": [ + 49.8474747525, + 1.02876696183 + ], + "libelle_d_acheminement": "COLMESNIL MANNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02876696183, + 49.8474747525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3b32788b304211f9de75c460804f93d89f8d1b2", + "fields": { + "code_commune_insee": "51470", + "nom_de_la_commune": "ROUVROY RIPONT", + "code_postal": "51800", + "coordonnees_gps": [ + 49.2227915324, + 4.70463752908 + ], + "libelle_d_acheminement": "ROUVROY RIPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70463752908, + 49.2227915324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5842971c29b4370d94e7a2601d8b4eaa9e251aad", + "fields": { + "code_commune_insee": "76188", + "nom_de_la_commune": "COTTEVRARD", + "code_postal": "76850", + "coordonnees_gps": [ + 49.639544, + 1.22434473478 + ], + "libelle_d_acheminement": "COTTEVRARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22434473478, + 49.639544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0dd0b3350d39817e4ed48548d4a4e38edca490e", + "fields": { + "code_commune_insee": "51477", + "nom_de_la_commune": "ST ETIENNE SUR SUIPPE", + "code_postal": "51110", + "coordonnees_gps": [ + 49.3844633848, + 4.10121019242 + ], + "libelle_d_acheminement": "ST ETIENNE SUR SUIPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10121019242, + 49.3844633848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "057320af4319cecfd746c84026147fc939aca785", + "fields": { + "ligne_5": "MESNIL VAL", + "code_commune_insee": "76192", + "libelle_d_acheminement": "CRIEL SUR MER", + "code_postal": "76910", + "nom_de_la_commune": "CRIEL SUR MER", + "coordonnees_gps": [ + 50.0191932623, + 1.32368263071 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32368263071, + 50.0191932623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa5d3561614907298bb3ade32bfcadca0f2e515a", + "fields": { + "code_commune_insee": "51479", + "nom_de_la_commune": "ST EUPHRAISE ET CLAIRIZET", + "code_postal": "51390", + "coordonnees_gps": [ + 49.2126052966, + 3.88386348503 + ], + "libelle_d_acheminement": "ST EUPHRAISE ET CLAIRIZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88386348503, + 49.2126052966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63b75c2edfdcdda496a6eba02baa85b8f291e6d9", + "fields": { + "code_commune_insee": "76194", + "nom_de_la_commune": "CRIQUEBEUF EN CAUX", + "code_postal": "76111", + "coordonnees_gps": [ + 49.7396135117, + 0.333053861202 + ], + "libelle_d_acheminement": "CRIQUEBEUF EN CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.333053861202, + 49.7396135117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7df17241a5ab528b3e95e64a74d674fdde2617eb", + "fields": { + "code_commune_insee": "51484", + "nom_de_la_commune": "ST GILLES", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2815444611, + 3.6769576626 + ], + "libelle_d_acheminement": "ST GILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6769576626, + 49.2815444611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44b7ff86de5cd68846ca04b7de7ac583b875bb1c", + "fields": { + "code_commune_insee": "76195", + "nom_de_la_commune": "CRIQUETOT LE MAUCONDUIT", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7901620657, + 0.562175801108 + ], + "libelle_d_acheminement": "CRIQUETOT LE MAUCONDUIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.562175801108, + 49.7901620657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0814a80a6a7276f6c95537e026f378ceaf772be", + "fields": { + "code_commune_insee": "51495", + "nom_de_la_commune": "ST LOUP", + "code_postal": "51120", + "coordonnees_gps": [ + 48.7353584914, + 3.82110281161 + ], + "libelle_d_acheminement": "ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82110281161, + 48.7353584914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47dc5f4d0232a3dc82bfef1d78be85dc1e6c3cf1", + "fields": { + "code_commune_insee": "76197", + "nom_de_la_commune": "CRIQUETOT SUR LONGUEVILLE", + "code_postal": "76590", + "coordonnees_gps": [ + 49.7816615167, + 1.07572750232 + ], + "libelle_d_acheminement": "CRIQUETOT SUR LONGUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07572750232, + 49.7816615167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f92f4577931526e9a6bd9399ee0dd83d2d3613a", + "fields": { + "code_commune_insee": "51496", + "nom_de_la_commune": "ST LUMIER EN CHAMPAGNE", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7922000417, + 4.62005564865 + ], + "libelle_d_acheminement": "ST LUMIER EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62005564865, + 48.7922000417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3157236dbb09989c6637f5dbe5a94d8810328154", + "fields": { + "code_commune_insee": "76201", + "nom_de_la_commune": "CROISY SUR ANDELLE", + "code_postal": "76780", + "coordonnees_gps": [ + 49.4594753468, + 1.40681724244 + ], + "libelle_d_acheminement": "CROISY SUR ANDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40681724244, + 49.4594753468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e24ebbe3a7c0d201121578dfa364f04baa59c98", + "fields": { + "code_commune_insee": "51497", + "nom_de_la_commune": "ST LUMIER LA POPULEUSE", + "code_postal": "51340", + "coordonnees_gps": [ + 48.7285501546, + 4.80515575755 + ], + "libelle_d_acheminement": "ST LUMIER LA POPULEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80515575755, + 48.7285501546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "459b197b4cea9710e8200e03010b338a5f52b1a2", + "fields": { + "code_commune_insee": "76211", + "nom_de_la_commune": "DANCOURT", + "code_postal": "76340", + "coordonnees_gps": [ + 49.900965616, + 1.53871070384 + ], + "libelle_d_acheminement": "DANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53871070384, + 49.900965616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c6f686d8dd28e84f3a3596b21e7972d7571ebbe", + "fields": { + "code_commune_insee": "51500", + "nom_de_la_commune": "ST MARD SUR LE MONT", + "code_postal": "51330", + "coordonnees_gps": [ + 48.9236124793, + 4.85276237974 + ], + "libelle_d_acheminement": "ST MARD SUR LE MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85276237974, + 48.9236124793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ae32328d630d1763d13e4242efe2c7736f6a970", + "fields": { + "code_commune_insee": "76214", + "nom_de_la_commune": "DENESTANVILLE", + "code_postal": "76590", + "coordonnees_gps": [ + 49.8076990948, + 1.0908205692 + ], + "libelle_d_acheminement": "DENESTANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0908205692, + 49.8076990948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90d5e806bc70857f5a636eeedd164b928cf5891e", + "fields": { + "code_commune_insee": "51505", + "nom_de_la_commune": "ST MASMES", + "code_postal": "51490", + "coordonnees_gps": [ + 49.3112137886, + 4.24950510453 + ], + "libelle_d_acheminement": "ST MASMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24950510453, + 49.3112137886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12fa6a9be017df700258b1acc55c6d71f2b8efcc", + "fields": { + "ligne_5": "NEUVILLE LES DIEPPE", + "code_commune_insee": "76217", + "libelle_d_acheminement": "DIEPPE", + "code_postal": "76370", + "nom_de_la_commune": "DIEPPE", + "coordonnees_gps": [ + 49.9222503951, + 1.08681168449 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08681168449, + 49.9222503951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ebf84be72a53117285f1b15a5de384c6da92b95", + "fields": { + "code_commune_insee": "51519", + "nom_de_la_commune": "ST THOMAS EN ARGONNE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1912114565, + 4.86655912863 + ], + "libelle_d_acheminement": "ST THOMAS EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86655912863, + 49.1912114565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cb7a3514d23a41dbbc6c45436fad5405d1f7ef2", + "fields": { + "code_commune_insee": "76219", + "nom_de_la_commune": "DOUDEVILLE", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7304839462, + 0.786724721323 + ], + "libelle_d_acheminement": "DOUDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.786724721323, + 49.7304839462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "624ed53f6e314bccab43a8a7478ce9cba7fc6886", + "fields": { + "code_commune_insee": "51527", + "nom_de_la_commune": "SAVIGNY SUR ARDRES", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2533040649, + 3.79359840137 + ], + "libelle_d_acheminement": "SAVIGNY SUR ARDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79359840137, + 49.2533040649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de45593a068561c43ddcc638999ef7bff63a767a", + "fields": { + "code_commune_insee": "76221", + "nom_de_la_commune": "DROSAY", + "code_postal": "76460", + "coordonnees_gps": [ + 49.7921683779, + 0.737326886541 + ], + "libelle_d_acheminement": "DROSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.737326886541, + 49.7921683779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3184b22f267688fd99b3d3cf2c7bc6eed088902", + "fields": { + "code_commune_insee": "51531", + "nom_de_la_commune": "SERMAIZE LES BAINS", + "code_postal": "51250", + "coordonnees_gps": [ + 48.7776497443, + 4.90737969309 + ], + "libelle_d_acheminement": "SERMAIZE LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90737969309, + 48.7776497443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16731ff2029638c6e1cd67de512db8a7f5440a74", + "fields": { + "code_commune_insee": "76227", + "nom_de_la_commune": "ECTOT L AUBER", + "code_postal": "76760", + "coordonnees_gps": [ + 49.6547186988, + 0.929975857879 + ], + "libelle_d_acheminement": "ECTOT L AUBER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.929975857879, + 49.6547186988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbddd2b349f35fd24b36ba1263209b3ebe4d2802", + "fields": { + "code_commune_insee": "51532", + "nom_de_la_commune": "SERMIERS", + "code_postal": "51500", + "coordonnees_gps": [ + 49.1488670974, + 3.97937404873 + ], + "libelle_d_acheminement": "SERMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97937404873, + 49.1488670974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d8e5cfab53f9a059b66e8d7a5e3c3e525a760c6", + "fields": { + "code_commune_insee": "76234", + "nom_de_la_commune": "EMANVILLE", + "code_postal": "76570", + "coordonnees_gps": [ + 49.6220862325, + 0.961800445083 + ], + "libelle_d_acheminement": "EMANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.961800445083, + 49.6220862325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1b412a29579d4647ddcd93bfe5204ccc516faa7", + "fields": { + "code_commune_insee": "51542", + "nom_de_la_commune": "SOIZY AUX BOIS", + "code_postal": "51120", + "coordonnees_gps": [ + 48.8095986689, + 3.72934364469 + ], + "libelle_d_acheminement": "SOIZY AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72934364469, + 48.8095986689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec1e9cc96271c81cbfd955c3f35b5ef7d2f0d4a2", + "fields": { + "code_commune_insee": "76238", + "nom_de_la_commune": "EPOUVILLE", + "code_postal": "76133", + "coordonnees_gps": [ + 49.5632255927, + 0.23002991813 + ], + "libelle_d_acheminement": "EPOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23002991813, + 49.5632255927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8109489c77b848b342cb99d20600b96ef9a454b", + "fields": { + "code_commune_insee": "51560", + "nom_de_la_commune": "SUIZY LE FRANC", + "code_postal": "51270", + "coordonnees_gps": [ + 48.9538152949, + 3.72996910022 + ], + "libelle_d_acheminement": "SUIZY LE FRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72996910022, + 48.9538152949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a777d08272ae0cca86fd4c060aee238f0963a2ad", + "fields": { + "code_commune_insee": "76239", + "nom_de_la_commune": "EPRETOT", + "code_postal": "76430", + "coordonnees_gps": [ + 49.5381322435, + 0.313524869493 + ], + "libelle_d_acheminement": "EPRETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.313524869493, + 49.5381322435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8464b366e087f8d7bb5ab36942ba3ec9f48fc185", + "fields": { + "code_commune_insee": "51562", + "nom_de_la_commune": "TAISSY", + "code_postal": "51500", + "coordonnees_gps": [ + 49.2040224576, + 4.08149844423 + ], + "libelle_d_acheminement": "TAISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08149844423, + 49.2040224576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dc31c2a2b3b42bcdbb5c5f61b15096a18939fc1", + "fields": { + "code_commune_insee": "76242", + "nom_de_la_commune": "ERNEMONT LA VILLETTE", + "code_postal": "76220", + "coordonnees_gps": [ + 49.4548358379, + 1.71169097872 + ], + "libelle_d_acheminement": "ERNEMONT LA VILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71169097872, + 49.4548358379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dc2f2a977c1215a06263fde9d3231c558d72c18", + "fields": { + "ligne_5": "LOUVOIS", + "code_commune_insee": "51564", + "libelle_d_acheminement": "VAL DE LIVRE", + "code_postal": "51150", + "nom_de_la_commune": "VAL DE LIVRE", + "coordonnees_gps": [ + 49.0904462327, + 4.09591940521 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09591940521, + 49.0904462327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87dc872208466bcd46eb87775e0d12b99d04b295", + "fields": { + "code_commune_insee": "76247", + "nom_de_la_commune": "ESTEVILLE", + "code_postal": "76690", + "coordonnees_gps": [ + 49.6091932343, + 1.21578651465 + ], + "libelle_d_acheminement": "ESTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21578651465, + 49.6091932343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c30c1f7bdac8a664aad4afcfcca2cbb5c47e887", + "fields": { + "code_commune_insee": "51565", + "nom_de_la_commune": "THAAS", + "code_postal": "51230", + "coordonnees_gps": [ + 48.6389793802, + 3.87152616864 + ], + "libelle_d_acheminement": "THAAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87152616864, + 48.6389793802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23551b16b5e42cdcb25d67bb9fb64f43a8263455", + "fields": { + "code_commune_insee": "76250", + "nom_de_la_commune": "ETAINHUS", + "code_postal": "76430", + "coordonnees_gps": [ + 49.5667402554, + 0.309275010904 + ], + "libelle_d_acheminement": "ETAINHUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.309275010904, + 49.5667402554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "816e0065fcc625779e8148a2b80f8ad19a3b1154", + "fields": { + "code_commune_insee": "51567", + "nom_de_la_commune": "THIEBLEMONT FAREMONT", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6926709039, + 4.73027706187 + ], + "libelle_d_acheminement": "THIEBLEMONT FAREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73027706187, + 48.6926709039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6b81a9efd253efbcefd5e2d0bfe8d1333adb360", + "fields": { + "code_commune_insee": "76253", + "nom_de_la_commune": "ETOUTTEVILLE", + "code_postal": "76190", + "coordonnees_gps": [ + 49.6720581542, + 0.783187037988 + ], + "libelle_d_acheminement": "ETOUTTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.783187037988, + 49.6720581542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16f4e5253078e1d4139752f0f47e63ee035f4e84", + "fields": { + "code_commune_insee": "51569", + "nom_de_la_commune": "THILLOIS", + "code_postal": "51370", + "coordonnees_gps": [ + 49.2589058142, + 3.94531513362 + ], + "libelle_d_acheminement": "THILLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94531513362, + 49.2589058142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdb12b6dbe583e870b5d5f869790683055213665", + "fields": { + "ligne_5": "BERMONVILLE", + "code_commune_insee": "76258", + "libelle_d_acheminement": "TERRES DE CAUX", + "code_postal": "76640", + "nom_de_la_commune": "TERRES DE CAUX", + "coordonnees_gps": [ + 49.6570851688, + 0.584829133473 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.584829133473, + 49.6570851688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f95fc69b36a2e4433c04fe5750a2c26e2922464", + "fields": { + "code_commune_insee": "51571", + "nom_de_la_commune": "VAL DE VESLE", + "code_postal": "51360", + "coordonnees_gps": [ + 49.1844475204, + 4.22804448988 + ], + "libelle_d_acheminement": "VAL DE VESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22804448988, + 49.1844475204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25e4aa0167e78431cf2c9d5a1dd5a71ab4cd68e7", + "fields": { + "code_commune_insee": "76261", + "nom_de_la_commune": "LA FERTE ST SAMSON", + "code_postal": "76440", + "coordonnees_gps": [ + 49.5772618796, + 1.5368911792 + ], + "libelle_d_acheminement": "LA FERTE ST SAMSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5368911792, + 49.5772618796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78faa36e01faf0808e05bf4c2fe3a4fd2f815884", + "fields": { + "code_commune_insee": "51580", + "nom_de_la_commune": "TREPAIL", + "code_postal": "51380", + "coordonnees_gps": [ + 49.1092248705, + 4.18205770202 + ], + "libelle_d_acheminement": "TREPAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18205770202, + 49.1092248705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbdf5c5484452c28d0acd132f3aa2792ccea9346", + "fields": { + "code_commune_insee": "76262", + "nom_de_la_commune": "FESQUES", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7904664266, + 1.48841081098 + ], + "libelle_d_acheminement": "FESQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48841081098, + 49.7904664266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26b5f1722ef09a13c4768b616e1be653a959b2b5", + "fields": { + "code_commune_insee": "51583", + "nom_de_la_commune": "TROIS FONTAINES L ABBAYE", + "code_postal": "51340", + "coordonnees_gps": [ + 48.7106542315, + 4.9541795358 + ], + "libelle_d_acheminement": "TROIS FONTAINES L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9541795358, + 48.7106542315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c45cc21d11184c54a39ef2c6a8215fd177f1baf8", + "fields": { + "code_commune_insee": "76263", + "nom_de_la_commune": "LA FEUILLIE", + "code_postal": "76220", + "coordonnees_gps": [ + 49.4651776839, + 1.52122263632 + ], + "libelle_d_acheminement": "LA FEUILLIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52122263632, + 49.4651776839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63670735ea68550a092b9d7d654addc97329aef4", + "fields": { + "code_commune_insee": "51586", + "nom_de_la_commune": "UNCHAIR", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2870911732, + 3.74648367671 + ], + "libelle_d_acheminement": "UNCHAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74648367671, + 49.2870911732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e5efdd3e60d291ebb4806a4caf175a7a4217879", + "fields": { + "code_commune_insee": "76272", + "nom_de_la_commune": "FONTAINE LE DUN", + "code_postal": "76740", + "coordonnees_gps": [ + 49.8141727455, + 0.845673532596 + ], + "libelle_d_acheminement": "FONTAINE LE DUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.845673532596, + 49.8141727455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1576fd5ee7e644fd571549c65c6ca510535e3c8", + "fields": { + "code_commune_insee": "51587", + "nom_de_la_commune": "VADENAY", + "code_postal": "51400", + "coordonnees_gps": [ + 49.0836066326, + 4.4164981077 + ], + "libelle_d_acheminement": "VADENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4164981077, + 49.0836066326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb3dc949cb93d9c9836ecfa5f0b82609a7d332c1", + "fields": { + "code_commune_insee": "76276", + "nom_de_la_commune": "FORGES LES EAUX", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6117853364, + 1.53278752911 + ], + "libelle_d_acheminement": "FORGES LES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53278752911, + 49.6117853364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47944107a1f12565e7ef4661b416485b504c24bf", + "fields": { + "code_commune_insee": "51589", + "nom_de_la_commune": "VANAULT LE CHATEL", + "code_postal": "51330", + "coordonnees_gps": [ + 48.8657919705, + 4.70484289994 + ], + "libelle_d_acheminement": "VANAULT LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70484289994, + 48.8657919705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cdebca8880967866a4b1695504c7376eb3ad072", + "fields": { + "code_commune_insee": "76292", + "nom_de_la_commune": "FRY", + "code_postal": "76780", + "coordonnees_gps": [ + 49.5265522704, + 1.53744439837 + ], + "libelle_d_acheminement": "FRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53744439837, + 49.5265522704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcdb7063110299051b6477234ca02568f90a96e7", + "fields": { + "code_commune_insee": "51590", + "nom_de_la_commune": "VANAULT LES DAMES", + "code_postal": "51340", + "coordonnees_gps": [ + 48.8424185091, + 4.7832872554 + ], + "libelle_d_acheminement": "VANAULT LES DAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7832872554, + 48.8424185091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f42379e13b6f7537f61b147348b58d768d1b1df1", + "fields": { + "code_commune_insee": "76294", + "nom_de_la_commune": "LA GAILLARDE", + "code_postal": "76740", + "coordonnees_gps": [ + 49.8380148051, + 0.864208798219 + ], + "libelle_d_acheminement": "LA GAILLARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.864208798219, + 49.8380148051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f5453a1b33a4e354d080f8c8f957389aa0ae7a9", + "fields": { + "code_commune_insee": "51598", + "nom_de_la_commune": "VAUCLERC", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7072494854, + 4.67364422061 + ], + "libelle_d_acheminement": "VAUCLERC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67364422061, + 48.7072494854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "895a1c8712e689fcf53da7fa043666593c63d1a2", + "fields": { + "code_commune_insee": "76296", + "nom_de_la_commune": "GAINNEVILLE", + "code_postal": "76700", + "coordonnees_gps": [ + 49.5177433404, + 0.255469072963 + ], + "libelle_d_acheminement": "GAINNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.255469072963, + 49.5177433404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40df5eacf5156e22405ed0a5e92e6d83f97e7404", + "fields": { + "code_commune_insee": "51604", + "nom_de_la_commune": "VENTELAY", + "code_postal": "51140", + "coordonnees_gps": [ + 49.3416417063, + 3.79943740088 + ], + "libelle_d_acheminement": "VENTELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79943740088, + 49.3416417063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "057a73dd8011bb73e1e7f9960b966317be5dadc2", + "fields": { + "code_commune_insee": "76299", + "nom_de_la_commune": "GERPONVILLE", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7478029078, + 0.563807005364 + ], + "libelle_d_acheminement": "GERPONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.563807005364, + 49.7478029078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a3e4983dd5ec88e3f717c83ed790c39fc44e3f7", + "fields": { + "code_commune_insee": "51607", + "nom_de_la_commune": "VERDON", + "code_postal": "51210", + "coordonnees_gps": [ + 48.9498449588, + 3.62063247963 + ], + "libelle_d_acheminement": "VERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62063247963, + 48.9498449588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba05b30e45771486b9a11027d36e50c6dd15f898", + "fields": { + "code_commune_insee": "76305", + "nom_de_la_commune": "GONFREVILLE L ORCHER", + "code_postal": "76700", + "coordonnees_gps": [ + 49.4860837457, + 0.221985693724 + ], + "libelle_d_acheminement": "GONFREVILLE L ORCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.221985693724, + 49.4860837457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2be0abeec8080ffef89066df58474ea2c86a3db2", + "fields": { + "ligne_5": "VERTUS", + "code_commune_insee": "51612", + "libelle_d_acheminement": "BLANCS COTEAUX", + "code_postal": "51130", + "nom_de_la_commune": "BLANCS COTEAUX", + "coordonnees_gps": [ + 48.9081794912, + 3.97961201086 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97961201086, + 48.9081794912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cba8f501b3cb1789810a442ad72b5e8235ceea1", + "fields": { + "ligne_5": "GOURNAY EN CAUX", + "code_commune_insee": "76305", + "libelle_d_acheminement": "GONFREVILLE L ORCHER", + "code_postal": "76700", + "nom_de_la_commune": "GONFREVILLE L ORCHER", + "coordonnees_gps": [ + 49.4860837457, + 0.221985693724 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.221985693724, + 49.4860837457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dadef7170280420daea205f4f65e06ece2f1a00c", + "fields": { + "code_commune_insee": "51618", + "nom_de_la_commune": "LE VEZIER", + "code_postal": "51210", + "coordonnees_gps": [ + 48.803348161, + 3.45232948902 + ], + "libelle_d_acheminement": "LE VEZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45232948902, + 48.803348161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4584cf2c8e3544ffdeddc0cd8bc859b9834759c2", + "fields": { + "code_commune_insee": "76313", + "nom_de_la_commune": "GOUY", + "code_postal": "76520", + "coordonnees_gps": [ + 49.3576284402, + 1.14309716518 + ], + "libelle_d_acheminement": "GOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14309716518, + 49.3576284402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0f4aa3555a35cb8e9d04e26b77b7b4a87862ec7", + "fields": { + "code_commune_insee": "51627", + "nom_de_la_commune": "VILLENEUVE RENNEVILLE CHEVIGNY", + "code_postal": "51130", + "coordonnees_gps": [ + 48.918550927, + 4.06212540381 + ], + "libelle_d_acheminement": "VILLENEUVE RENNEVILLE CHEVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06212540381, + 48.918550927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ece6f5dd836f2b96de765651709fb899f23a2c64", + "fields": { + "code_commune_insee": "76316", + "nom_de_la_commune": "GRAINVILLE SUR RY", + "code_postal": "76116", + "coordonnees_gps": [ + 49.4748647459, + 1.30031593466 + ], + "libelle_d_acheminement": "GRAINVILLE SUR RY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30031593466, + 49.4748647459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4b455406d851f7bd31a92831f8e1c733e683ca8", + "fields": { + "code_commune_insee": "51632", + "nom_de_la_commune": "VILLERS EN ARGONNE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0180251843, + 4.93994624635 + ], + "libelle_d_acheminement": "VILLERS EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93994624635, + 49.0180251843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f769b7f800c7301c11de2b3040e27d3b9afe482f", + "fields": { + "code_commune_insee": "76320", + "nom_de_la_commune": "GRANDCOURT", + "code_postal": "76660", + "coordonnees_gps": [ + 49.916822702, + 1.48528084939 + ], + "libelle_d_acheminement": "GRANDCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48528084939, + 49.916822702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a0a2494c164c9d24bb75e7ce9bc885033d825ad", + "fields": { + "code_commune_insee": "51638", + "nom_de_la_commune": "VILLESENEUX", + "code_postal": "51130", + "coordonnees_gps": [ + 48.8442040929, + 4.14375966973 + ], + "libelle_d_acheminement": "VILLESENEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14375966973, + 48.8442040929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c39995790be1ca1219b305745cc21b431eeba011", + "fields": { + "code_commune_insee": "76322", + "nom_de_la_commune": "LE GRAND QUEVILLY", + "code_postal": "76120", + "coordonnees_gps": [ + 49.4093798045, + 1.03999262153 + ], + "libelle_d_acheminement": "LE GRAND QUEVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03999262153, + 49.4093798045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "275f6f7e64def4cc169c01a19b1512a46e136877", + "fields": { + "code_commune_insee": "52006", + "nom_de_la_commune": "ALLICHAMPS", + "code_postal": "52130", + "coordonnees_gps": [ + 48.5636922014, + 4.88629237794 + ], + "libelle_d_acheminement": "ALLICHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88629237794, + 48.5636922014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f1dd94ca6e320e6a9db50a5785bc33b915a16b7", + "fields": { + "code_commune_insee": "76333", + "nom_de_la_commune": "GUERVILLE", + "code_postal": "76340", + "coordonnees_gps": [ + 49.9522879492, + 1.52560536135 + ], + "libelle_d_acheminement": "GUERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52560536135, + 49.9522879492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5416d4d08f5651d33812a12f5c4dd0ccc1d39224", + "fields": { + "ligne_5": "BLANCHEVILLE", + "code_commune_insee": "52008", + "libelle_d_acheminement": "ANDELOT BLANCHEVILLE", + "code_postal": "52700", + "nom_de_la_commune": "ANDELOT BLANCHEVILLE", + "coordonnees_gps": [ + 48.2358357276, + 5.28592728312 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28592728312, + 48.2358357276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58b6cc4be87baade1176e92e6d501ca168a82e52", + "fields": { + "code_commune_insee": "76334", + "nom_de_la_commune": "GUEURES", + "code_postal": "76730", + "coordonnees_gps": [ + 49.8422590641, + 0.95206028846 + ], + "libelle_d_acheminement": "GUEURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95206028846, + 49.8422590641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d42e526309b68cd6db292a3ff736258b928f7b8", + "fields": { + "code_commune_insee": "52015", + "nom_de_la_commune": "ARBIGNY SOUS VARENNES", + "code_postal": "52500", + "coordonnees_gps": [ + 47.860574645, + 5.610752246 + ], + "libelle_d_acheminement": "ARBIGNY SOUS VARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.610752246, + 47.860574645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e339637ca5db11bd2d69838eca69e01b0c234001", + "fields": { + "code_commune_insee": "76335", + "nom_de_la_commune": "GUEUTTEVILLE", + "code_postal": "76890", + "coordonnees_gps": [ + 49.6499502123, + 1.00473068067 + ], + "libelle_d_acheminement": "GUEUTTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00473068067, + 49.6499502123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72ade5133f91857b376c90e16d8469597bd3c426", + "fields": { + "code_commune_insee": "52023", + "nom_de_la_commune": "AUBERIVE", + "code_postal": "52160", + "coordonnees_gps": [ + 47.7789330347, + 5.10722171802 + ], + "libelle_d_acheminement": "AUBERIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10722171802, + 47.7789330347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa8c706d365b21d993dcdc594b2eb982b9d34aae", + "fields": { + "code_commune_insee": "76339", + "nom_de_la_commune": "LE HANOUARD", + "code_postal": "76450", + "coordonnees_gps": [ + 49.7227537763, + 0.65491146964 + ], + "libelle_d_acheminement": "LE HANOUARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65491146964, + 49.7227537763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14e7cf3026186bbb9f904aecc6df2abc205cdef7", + "fields": { + "code_commune_insee": "52031", + "nom_de_la_commune": "AUTREVILLE SUR LA RENNE", + "code_postal": "52330", + "coordonnees_gps": [ + 48.1258481479, + 4.97740367937 + ], + "libelle_d_acheminement": "AUTREVILLE SUR LA RENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97740367937, + 48.1258481479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3ffddc07f6d3ab5a49f662868f466f040ddfdc2", + "fields": { + "code_commune_insee": "76343", + "nom_de_la_commune": "HAUCOURT", + "code_postal": "76440", + "coordonnees_gps": [ + 49.64421337, + 1.67253134593 + ], + "libelle_d_acheminement": "HAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67253134593, + 49.64421337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3092e37deec84f1b37ab228bd547608f93091c54", + "fields": { + "code_commune_insee": "52037", + "nom_de_la_commune": "BANNES", + "code_postal": "52360", + "coordonnees_gps": [ + 47.901328666, + 5.3916498109 + ], + "libelle_d_acheminement": "BANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3916498109, + 47.901328666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e126b91783df827594df1996412ebe04a9c2617", + "fields": { + "code_commune_insee": "76349", + "nom_de_la_commune": "HAUTOT SUR MER", + "code_postal": "76550", + "coordonnees_gps": [ + 49.902417401, + 1.04064541491 + ], + "libelle_d_acheminement": "HAUTOT SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04064541491, + 49.902417401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bb35fb6dcf92ccef0ab4362d1864fdf2aba1e52", + "fields": { + "code_commune_insee": "52038", + "nom_de_la_commune": "BASSONCOURT", + "code_postal": "52240", + "coordonnees_gps": [ + 48.0726409981, + 5.55718616762 + ], + "libelle_d_acheminement": "BASSONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55718616762, + 48.0726409981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "565fc7fcb0c25b9069382c6713252961a9efbb0d", + "fields": { + "code_commune_insee": "76351", + "nom_de_la_commune": "LE HAVRE", + "code_postal": "76620", + "coordonnees_gps": [ + 49.498452502, + 0.140153719153 + ], + "libelle_d_acheminement": "LE HAVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.140153719153, + 49.498452502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c23c9768d34e70c19a20e0968d10375602b6c1f8", + "fields": { + "code_commune_insee": "52044", + "nom_de_la_commune": "ROCHES BETTAINCOURT", + "code_postal": "52270", + "coordonnees_gps": [ + 48.2973672533, + 5.25753260566 + ], + "libelle_d_acheminement": "ROCHES BETTAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25753260566, + 48.2973672533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f391b2d868dcb67e8d5e389910ef24d536dce13", + "fields": { + "code_commune_insee": "76352", + "nom_de_la_commune": "LA HAYE", + "code_postal": "76780", + "coordonnees_gps": [ + 49.461049199, + 1.44697821711 + ], + "libelle_d_acheminement": "LA HAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44697821711, + 49.461049199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93c5304ef5791bc9750845b2df03797753fa0e98", + "fields": { + "ligne_5": "LE PUITS DES MEZES", + "code_commune_insee": "52050", + "libelle_d_acheminement": "BIESLES", + "code_postal": "52340", + "nom_de_la_commune": "BIESLES", + "coordonnees_gps": [ + 48.102555202, + 5.28581680401 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28581680401, + 48.102555202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe9689d678f057652fe6b99db83b5fde3ac11c2b", + "fields": { + "code_commune_insee": "76353", + "nom_de_la_commune": "HEBERVILLE", + "code_postal": "76740", + "coordonnees_gps": [ + 49.7831426992, + 0.802685220315 + ], + "libelle_d_acheminement": "HEBERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.802685220315, + 49.7831426992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9336ff995dbd44aa66604878a98863e62d87dfe9", + "fields": { + "code_commune_insee": "52055", + "nom_de_la_commune": "BLECOURT", + "code_postal": "52300", + "coordonnees_gps": [ + 48.3799023139, + 5.08188668024 + ], + "libelle_d_acheminement": "BLECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08188668024, + 48.3799023139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7034803905fd99803365a2f9eb9a8b37e19efc26", + "fields": { + "code_commune_insee": "76356", + "nom_de_la_commune": "HERMANVILLE", + "code_postal": "76730", + "coordonnees_gps": [ + 49.820591572, + 0.987318293515 + ], + "libelle_d_acheminement": "HERMANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.987318293515, + 49.820591572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edb86e1eed5dff7247aed16a86e72b382224075e", + "fields": { + "code_commune_insee": "52057", + "nom_de_la_commune": "BLUMERAY", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3542889175, + 4.86349451944 + ], + "libelle_d_acheminement": "BLUMERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86349451944, + 48.3542889175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cd60300f15d999a03f145a366338361c844d6f0", + "fields": { + "code_commune_insee": "76359", + "nom_de_la_commune": "HERONCHELLES", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5380632023, + 1.38150021966 + ], + "libelle_d_acheminement": "HERONCHELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38150021966, + 49.5380632023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99045b6131d867975f66ec20981e94026f688a3f", + "fields": { + "code_commune_insee": "52058", + "nom_de_la_commune": "BOLOGNE", + "code_postal": "52310", + "coordonnees_gps": [ + 48.1992324541, + 5.14187719083 + ], + "libelle_d_acheminement": "BOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14187719083, + 48.1992324541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd8594064085ce95f0cda5d0eee4e81990ef9a0c", + "fields": { + "code_commune_insee": "76366", + "nom_de_la_commune": "LE HOULME", + "code_postal": "76770", + "coordonnees_gps": [ + 49.5109862944, + 1.03670151831 + ], + "libelle_d_acheminement": "LE HOULME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03670151831, + 49.5109862944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac0d8b575db9ce12625067eda44fb422e001d5ef", + "fields": { + "code_commune_insee": "52060", + "nom_de_la_commune": "BOURBONNE LES BAINS", + "code_postal": "52400", + "coordonnees_gps": [ + 47.9441089031, + 5.7418695819 + ], + "libelle_d_acheminement": "BOURBONNE LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7418695819, + 47.9441089031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a75eabb61364e7acf4eeffef32e58bc2e41ae475", + "fields": { + "code_commune_insee": "76368", + "nom_de_la_commune": "HOUQUETOT", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6046419806, + 0.387795488349 + ], + "libelle_d_acheminement": "HOUQUETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.387795488349, + 49.6046419806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84e12514cf7443e4d42ed949718c0ab84b4de12d", + "fields": { + "ligne_5": "GENRUPT", + "code_commune_insee": "52060", + "libelle_d_acheminement": "BOURBONNE LES BAINS", + "code_postal": "52400", + "nom_de_la_commune": "BOURBONNE LES BAINS", + "coordonnees_gps": [ + 47.9441089031, + 5.7418695819 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7418695819, + 47.9441089031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "989ff9cb2bd780f54fe5fed68109c4469ba080ff", + "fields": { + "code_commune_insee": "52063", + "nom_de_la_commune": "BOURG STE MARIE", + "code_postal": "52150", + "coordonnees_gps": [ + 48.1854541714, + 5.55429126567 + ], + "libelle_d_acheminement": "BOURG STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55429126567, + 48.1854541714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95499ab4c58a4f206164049bbbf920a22b3a87f1", + "fields": { + "ligne_5": "NIJON", + "code_commune_insee": "52064", + "libelle_d_acheminement": "BOURMONT ENTRE MEUSE ET MOUZON", + "code_postal": "52150", + "nom_de_la_commune": "BOURMONT ENTRE MEUSE ET MOUZON", + "coordonnees_gps": [ + 48.2050671577, + 5.60137874866 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60137874866, + 48.2050671577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a13c9d0523f1de665e2f9d5f158ae409d28c8a16", + "fields": { + "code_commune_insee": "52065", + "nom_de_la_commune": "BOUZANCOURT", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3161828914, + 4.95023725164 + ], + "libelle_d_acheminement": "BOUZANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95023725164, + 48.3161828914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b528f6ef4d8c6ccb81e9a58d6409ad20293b954e", + "fields": { + "code_commune_insee": "52067", + "nom_de_la_commune": "BRAINVILLE SUR MEUSE", + "code_postal": "52150", + "coordonnees_gps": [ + 48.1751020027, + 5.59252512247 + ], + "libelle_d_acheminement": "BRAINVILLE SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59252512247, + 48.1751020027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebd8c3c9274e09b386e7687352bb06f3e0d82259", + "fields": { + "code_commune_insee": "52069", + "nom_de_la_commune": "BRAUX LE CHATEL", + "code_postal": "52120", + "coordonnees_gps": [ + 48.1049254714, + 4.93912395764 + ], + "libelle_d_acheminement": "BRAUX LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93912395764, + 48.1049254714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fb41e4ceda686e364eddabe1b4bb42b85d3ce03", + "fields": { + "code_commune_insee": "52074", + "nom_de_la_commune": "BREUVANNES EN BASSIGNY", + "code_postal": "52240", + "coordonnees_gps": [ + 48.0850729223, + 5.61021002539 + ], + "libelle_d_acheminement": "BREUVANNES EN BASSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61021002539, + 48.0850729223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4cc36cdde10c668c2de3db132d3e7d9b71744df", + "fields": { + "code_commune_insee": "52075", + "nom_de_la_commune": "BRIAUCOURT", + "code_postal": "52700", + "coordonnees_gps": [ + 48.2080254801, + 5.19573843371 + ], + "libelle_d_acheminement": "BRIAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19573843371, + 48.2080254801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89c89ef15646a9fddec68319fc654f00cf4645d0", + "fields": { + "ligne_5": "ANGLUS", + "code_commune_insee": "52088", + "libelle_d_acheminement": "CEFFONDS", + "code_postal": "52220", + "nom_de_la_commune": "CEFFONDS", + "coordonnees_gps": [ + 48.4425385457, + 4.74768588072 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74768588072, + 48.4425385457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c16cc5d89885b6c050ac02dcc324274754a6cf8", + "fields": { + "code_commune_insee": "52093", + "nom_de_la_commune": "CHALINDREY", + "code_postal": "52600", + "coordonnees_gps": [ + 47.7928741357, + 5.44307044618 + ], + "libelle_d_acheminement": "CHALINDREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44307044618, + 47.7928741357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "428e8cf046336932abce984b10f67e182b5de18f", + "fields": { + "ligne_5": "VILLEMORON", + "code_commune_insee": "52094", + "libelle_d_acheminement": "VALS DES TILLES", + "code_postal": "52160", + "nom_de_la_commune": "VALS DES TILLES", + "coordonnees_gps": [ + 47.6942815153, + 5.08168973131 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08168973131, + 47.6942815153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a8b6c15f31834bb225423779f0408ca8af76b7f", + "fields": { + "code_commune_insee": "52114", + "nom_de_la_commune": "CHATEAUVILLAIN", + "code_postal": "52120", + "coordonnees_gps": [ + 48.0291535601, + 4.93239064269 + ], + "libelle_d_acheminement": "CHATEAUVILLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93239064269, + 48.0291535601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38991c362bd417de0af132aba4b2ace82b1d957e", + "fields": { + "ligne_5": "ESSEY LES PONTS", + "code_commune_insee": "52114", + "libelle_d_acheminement": "CHATEAUVILLAIN", + "code_postal": "52120", + "nom_de_la_commune": "CHATEAUVILLAIN", + "coordonnees_gps": [ + 48.0291535601, + 4.93239064269 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93239064269, + 48.0291535601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f086c25088d659154a273073283d162e9e4c054", + "fields": { + "ligne_5": "MARMESSE", + "code_commune_insee": "52114", + "libelle_d_acheminement": "CHATEAUVILLAIN", + "code_postal": "52120", + "nom_de_la_commune": "CHATEAUVILLAIN", + "coordonnees_gps": [ + 48.0291535601, + 4.93239064269 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93239064269, + 48.0291535601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ef69e0a2aaac604dc8182c8c05e6acc983d4072", + "fields": { + "code_commune_insee": "52122", + "nom_de_la_commune": "CHAUMONT LA VILLE", + "code_postal": "52150", + "coordonnees_gps": [ + 48.1446272021, + 5.64945872273 + ], + "libelle_d_acheminement": "CHAUMONT LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64945872273, + 48.1446272021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7812af639de0106a80c9108b5ee662d7ce26d9ef", + "fields": { + "code_commune_insee": "52124", + "nom_de_la_commune": "CHEZEAUX", + "code_postal": "52400", + "coordonnees_gps": [ + 47.8796059313, + 5.67169694346 + ], + "libelle_d_acheminement": "CHEZEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67169694346, + 47.8796059313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6523287acfbcef6be1d761ec2a74eb4f4d1a6521", + "fields": { + "code_commune_insee": "52132", + "nom_de_la_commune": "CLEFMONT", + "code_postal": "52240", + "coordonnees_gps": [ + 48.1137318112, + 5.49168449746 + ], + "libelle_d_acheminement": "CLEFMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49168449746, + 48.1137318112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fad6aea93de1156db855f2854696e2185113164c", + "fields": { + "code_commune_insee": "52133", + "nom_de_la_commune": "CLINCHAMP", + "code_postal": "52700", + "coordonnees_gps": [ + 48.1950512199, + 5.45032533735 + ], + "libelle_d_acheminement": "CLINCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45032533735, + 48.1950512199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef009e1826de71979857f76f07f027aef133ddd6", + "fields": { + "code_commune_insee": "52134", + "nom_de_la_commune": "COHONS", + "code_postal": "52600", + "coordonnees_gps": [ + 47.7872946763, + 5.34164047789 + ], + "libelle_d_acheminement": "COHONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34164047789, + 47.7872946763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6d2559f37ac0ea1ca42418a659929e52599161c", + "fields": { + "code_commune_insee": "52140", + "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", + "code_postal": "52330", + "coordonnees_gps": [ + 48.2454844081, + 4.92015393779 + ], + "libelle_d_acheminement": "COLOMBEY LES DEUX EGLISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92015393779, + 48.2454844081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5961d69df867898eecd9984245c70757cd4f7489", + "fields": { + "ligne_5": "ARGENTOLLES", + "code_commune_insee": "52140", + "libelle_d_acheminement": "COLOMBEY LES DEUX EGLISES", + "code_postal": "52330", + "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", + "coordonnees_gps": [ + 48.2454844081, + 4.92015393779 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92015393779, + 48.2454844081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87e5e307fca3c73e8cd748018d5e7860459f4a0f", + "fields": { + "ligne_5": "BLAISE", + "code_commune_insee": "52140", + "libelle_d_acheminement": "COLOMBEY LES DEUX EGLISES", + "code_postal": "52330", + "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", + "coordonnees_gps": [ + 48.2454844081, + 4.92015393779 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92015393779, + 48.2454844081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a6427315cbe785ccac15d0914928850c60364ba", + "fields": { + "ligne_5": "LAVILLENEUVE AUX FRESNES", + "code_commune_insee": "52140", + "libelle_d_acheminement": "COLOMBEY LES DEUX EGLISES", + "code_postal": "52330", + "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", + "coordonnees_gps": [ + 48.2454844081, + 4.92015393779 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92015393779, + 48.2454844081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fdef219b57490437fb162615d35050e933b6945", + "fields": { + "code_commune_insee": "52151", + "nom_de_la_commune": "COUR L EVEQUE", + "code_postal": "52210", + "coordonnees_gps": [ + 47.9767999819, + 4.982031793 + ], + "libelle_d_acheminement": "COUR L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.982031793, + 47.9767999819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b76154e9da479529f067a8cd02b614a1899d2bc", + "fields": { + "code_commune_insee": "52157", + "nom_de_la_commune": "CURMONT", + "code_postal": "52330", + "coordonnees_gps": [ + 48.2556964438, + 4.95172366017 + ], + "libelle_d_acheminement": "CURMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95172366017, + 48.2556964438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c7af9a962ac4e485b7a76ab7a09a2f039718e46", + "fields": { + "code_commune_insee": "52158", + "nom_de_la_commune": "CUSEY", + "code_postal": "52190", + "coordonnees_gps": [ + 47.6250364992, + 5.35268671907 + ], + "libelle_d_acheminement": "CUSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35268671907, + 47.6250364992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbdce9bb980cd7c647a5feeaae91c1b36fd8e563", + "fields": { + "code_commune_insee": "52161", + "nom_de_la_commune": "DAILLECOURT", + "code_postal": "52240", + "coordonnees_gps": [ + 48.0727138198, + 5.50793307633 + ], + "libelle_d_acheminement": "DAILLECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50793307633, + 48.0727138198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ff1e16ea7939b4033d68c1c3f67cafd91df6c40", + "fields": { + "code_commune_insee": "52173", + "nom_de_la_commune": "DOMREMY LANDEVILLE", + "code_postal": "52270", + "coordonnees_gps": [ + 48.359441184, + 5.25296341706 + ], + "libelle_d_acheminement": "DOMREMY LANDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25296341706, + 48.359441184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "623b06bac2861dbb50c3f52642070bc5b8675fd6", + "fields": { + "code_commune_insee": "52174", + "nom_de_la_commune": "DONCOURT SUR MEUSE", + "code_postal": "52150", + "coordonnees_gps": [ + 48.140541872, + 5.58464519798 + ], + "libelle_d_acheminement": "DONCOURT SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58464519798, + 48.140541872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92d39e60174763c05e4e63f0145197a5e88ab892", + "fields": { + "ligne_5": "BETTONCOURT LE HAUT", + "code_commune_insee": "52187", + "libelle_d_acheminement": "EPIZON", + "code_postal": "52230", + "nom_de_la_commune": "EPIZON", + "coordonnees_gps": [ + 48.3781421603, + 5.33232295089 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33232295089, + 48.3781421603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d98b2f0e19ba1c5afdfa60f110b574efdbc0a70d", + "fields": { + "ligne_5": "AUGEVILLE", + "code_commune_insee": "52187", + "libelle_d_acheminement": "EPIZON", + "code_postal": "52270", + "nom_de_la_commune": "EPIZON", + "coordonnees_gps": [ + 48.3781421603, + 5.33232295089 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33232295089, + 48.3781421603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c8cd7169fe96277fa5c72316d583af970fb7b21", + "fields": { + "code_commune_insee": "52194", + "nom_de_la_commune": "EURVILLE BIENVILLE", + "code_postal": "52410", + "coordonnees_gps": [ + 48.5782674919, + 5.02966764311 + ], + "libelle_d_acheminement": "EURVILLE BIENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02966764311, + 48.5782674919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a318aca7b395dfbf177d76d07426e2cc3b205079", + "fields": { + "code_commune_insee": "52197", + "nom_de_la_commune": "FAYL BILLOT", + "code_postal": "52500", + "coordonnees_gps": [ + 47.7869444974, + 5.60488795992 + ], + "libelle_d_acheminement": "FAYL BILLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60488795992, + 47.7869444974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c4ab7823a3f0218843b9079f98d18012aaf8d6e", + "fields": { + "ligne_5": "BRONCOURT", + "code_commune_insee": "52197", + "libelle_d_acheminement": "FAYL BILLOT", + "code_postal": "52500", + "nom_de_la_commune": "FAYL BILLOT", + "coordonnees_gps": [ + 47.7869444974, + 5.60488795992 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60488795992, + 47.7869444974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "518a166eafb60241f9f12cec595c908b56e1762e", + "fields": { + "code_commune_insee": "52199", + "nom_de_la_commune": "FERRIERE ET LAFOLIE", + "code_postal": "52300", + "coordonnees_gps": [ + 48.3990664695, + 5.07542542698 + ], + "libelle_d_acheminement": "FERRIERE ET LAFOLIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07542542698, + 48.3990664695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c79eccaf32b28eb8af62258c7f0209511d70600f", + "fields": { + "code_commune_insee": "52200", + "nom_de_la_commune": "FLAGEY", + "code_postal": "52250", + "coordonnees_gps": [ + 47.7865880267, + 5.24538753249 + ], + "libelle_d_acheminement": "FLAGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24538753249, + 47.7865880267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4ca994037a03156b7e1d8b1738121d75f5bcc61", + "fields": { + "code_commune_insee": "52204", + "nom_de_la_commune": "FORCEY", + "code_postal": "52700", + "coordonnees_gps": [ + 48.1512048179, + 5.36896944878 + ], + "libelle_d_acheminement": "FORCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36896944878, + 48.1512048179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f52a495ada842de224999854a3a9081b03818d2", + "fields": { + "code_commune_insee": "52214", + "nom_de_la_commune": "LA GENEVROYE", + "code_postal": "52320", + "coordonnees_gps": [ + 48.2769154826, + 5.05621670765 + ], + "libelle_d_acheminement": "LA GENEVROYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05621670765, + 48.2769154826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68ec284bdb79b8997e32096a7b2a4e2a9d4f8803", + "fields": { + "code_commune_insee": "52218", + "nom_de_la_commune": "GERMAY", + "code_postal": "52230", + "coordonnees_gps": [ + 48.4076524839, + 5.37142403643 + ], + "libelle_d_acheminement": "GERMAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37142403643, + 48.4076524839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09acf5b4a2aae3d241b3acd73af89b5985f14784", + "fields": { + "code_commune_insee": "52223", + "nom_de_la_commune": "GILLEY", + "code_postal": "52500", + "coordonnees_gps": [ + 47.6894873737, + 5.63261379823 + ], + "libelle_d_acheminement": "GILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63261379823, + 47.6894873737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d92e0057c5b9bbca53f26f0b85518c7db81839eb", + "fields": { + "code_commune_insee": "52232", + "nom_de_la_commune": "GUINDRECOURT SUR BLAISE", + "code_postal": "52330", + "coordonnees_gps": [ + 48.2979328826, + 4.98051100173 + ], + "libelle_d_acheminement": "GUINDRECOURT SUR BLAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98051100173, + 48.2979328826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff1758c9a41fe62301dfdc558dafa432716f6625", + "fields": { + "code_commune_insee": "52234", + "nom_de_la_commune": "HACOURT", + "code_postal": "52150", + "coordonnees_gps": [ + 48.1581819606, + 5.58135190906 + ], + "libelle_d_acheminement": "HACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58135190906, + 48.1581819606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1257116b2d36cfa1a602b7268f4b89e40b758c53", + "fields": { + "code_commune_insee": "52235", + "nom_de_la_commune": "HALLIGNICOURT", + "code_postal": "52100", + "coordonnees_gps": [ + 48.6478891057, + 4.87117380954 + ], + "libelle_d_acheminement": "HALLIGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87117380954, + 48.6478891057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "837c9c344bad4f18121ca4526c3727b0784a9a06", + "fields": { + "code_commune_insee": "52244", + "nom_de_la_commune": "HUMBECOURT", + "code_postal": "52290", + "coordonnees_gps": [ + 48.5797739259, + 4.92181738125 + ], + "libelle_d_acheminement": "HUMBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92181738125, + 48.5797739259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b6944fd6e8dd776611bd1a8951056d6dabdffb8", + "fields": { + "code_commune_insee": "52245", + "nom_de_la_commune": "HUMBERVILLE", + "code_postal": "52700", + "coordonnees_gps": [ + 48.2924560516, + 5.3803496928 + ], + "libelle_d_acheminement": "HUMBERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3803496928, + 48.2924560516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "990b7f3e55445d6f437c330de299b2244746b653", + "fields": { + "code_commune_insee": "52249", + "nom_de_la_commune": "ISOMES", + "code_postal": "52190", + "coordonnees_gps": [ + 47.6383926135, + 5.30585029521 + ], + "libelle_d_acheminement": "ISOMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30585029521, + 47.6383926135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e5940538fb96b689361a686558efc2abb229278", + "fields": { + "code_commune_insee": "52250", + "nom_de_la_commune": "JOINVILLE", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4337759431, + 5.12296134696 + ], + "libelle_d_acheminement": "JOINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12296134696, + 48.4337759431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dae9a0200c575e90633aa38b10898552755af719", + "fields": { + "code_commune_insee": "52254", + "nom_de_la_commune": "LACHAPELLE EN BLAISY", + "code_postal": "52330", + "coordonnees_gps": [ + 48.20850002, + 4.96079377818 + ], + "libelle_d_acheminement": "LACHAPELLE EN BLAISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96079377818, + 48.20850002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1090c80c59044b09dd03bb54ded96d41780a9f5a", + "fields": { + "code_commune_insee": "52260", + "nom_de_la_commune": "LAMANCINE", + "code_postal": "52310", + "coordonnees_gps": [ + 48.2111993531, + 5.11560659049 + ], + "libelle_d_acheminement": "LAMANCINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11560659049, + 48.2111993531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "806b0a7cd8be69391fc0539e2e1a26615671559b", + "fields": { + "ligne_5": "LANEUVILLE A BAYARD", + "code_commune_insee": "52265", + "libelle_d_acheminement": "BAYARD SUR MARNE", + "code_postal": "52170", + "nom_de_la_commune": "BAYARD SUR MARNE", + "coordonnees_gps": [ + 48.5499615771, + 5.06880935835 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06880935835, + 48.5499615771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a36679f4a0b2cff5c561856fd0178843f64af288", + "fields": { + "ligne_5": "CORLEE", + "code_commune_insee": "52269", + "libelle_d_acheminement": "LANGRES", + "code_postal": "52200", + "nom_de_la_commune": "LANGRES", + "coordonnees_gps": [ + 47.8591544821, + 5.33880466821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33880466821, + 47.8591544821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "273b85a86f66229f7e69f2414ebd4c1993a89177", + "fields": { + "code_commune_insee": "52292", + "nom_de_la_commune": "LONGEAU PERCEY", + "code_postal": "52250", + "coordonnees_gps": [ + 47.7600762777, + 5.31857922442 + ], + "libelle_d_acheminement": "LONGEAU PERCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31857922442, + 47.7600762777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f61683bfd5b7a9195affc30cf9dbb472090eaef", + "fields": { + "code_commune_insee": "52308", + "nom_de_la_commune": "MARANVILLE", + "code_postal": "52370", + "coordonnees_gps": [ + 48.134833256, + 4.86564026031 + ], + "libelle_d_acheminement": "MARANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86564026031, + 48.134833256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2ea3555e70ef27bdf178a4828e8cc8906c01f2f", + "fields": { + "ligne_5": "MONTIGNY LE ROI", + "code_commune_insee": "52332", + "libelle_d_acheminement": "VAL DE MEUSE", + "code_postal": "52140", + "nom_de_la_commune": "VAL DE MEUSE", + "coordonnees_gps": [ + 48.007428702, + 5.53409668952 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53409668952, + 48.007428702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b92952f08a3622ee820da3616919cdae3696387f", + "fields": { + "ligne_5": "RAVENNEFONTAINES", + "code_commune_insee": "52332", + "libelle_d_acheminement": "VAL DE MEUSE", + "code_postal": "52140", + "nom_de_la_commune": "VAL DE MEUSE", + "coordonnees_gps": [ + 48.007428702, + 5.53409668952 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53409668952, + 48.007428702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4f34baae18825ea88925db5474d2ed901b72bb4", + "fields": { + "ligne_5": "RECOURT", + "code_commune_insee": "52332", + "libelle_d_acheminement": "VAL DE MEUSE", + "code_postal": "52140", + "nom_de_la_commune": "VAL DE MEUSE", + "coordonnees_gps": [ + 48.007428702, + 5.53409668952 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53409668952, + 48.007428702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4528b3af577a7b7df91a1ed371c94af2affce001", + "fields": { + "code_commune_insee": "52344", + "nom_de_la_commune": "MOUILLERON", + "code_postal": "52160", + "coordonnees_gps": [ + 47.6928820808, + 5.10711887788 + ], + "libelle_d_acheminement": "MOUILLERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10711887788, + 47.6928820808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c4faed1d0f0a5b2c29a94be3b49d5e833f106fc", + "fields": { + "code_commune_insee": "52347", + "nom_de_la_commune": "NARCY", + "code_postal": "52170", + "coordonnees_gps": [ + 48.5802972317, + 5.09906771087 + ], + "libelle_d_acheminement": "NARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09906771087, + 48.5802972317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79c699e8dad5da211e8382aae06a3a1ef81e9b1c", + "fields": { + "code_commune_insee": "52349", + "nom_de_la_commune": "NEUILLY SUR SUIZE", + "code_postal": "52000", + "coordonnees_gps": [ + 48.0378682238, + 5.12863094565 + ], + "libelle_d_acheminement": "NEUILLY SUR SUIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12863094565, + 48.0378682238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdf4c0064fd08b3ee589ce68345a105bbfea2a38", + "fields": { + "code_commune_insee": "52352", + "nom_de_la_commune": "NINVILLE", + "code_postal": "52800", + "coordonnees_gps": [ + 48.0718513418, + 5.43848531398 + ], + "libelle_d_acheminement": "NINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43848531398, + 48.0718513418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d82fa790d7ffd160dd9dbfd92e9a47f826d1f18", + "fields": { + "code_commune_insee": "52353", + "nom_de_la_commune": "NOGENT", + "code_postal": "52800", + "coordonnees_gps": [ + 48.037521428, + 5.36502804198 + ], + "libelle_d_acheminement": "NOGENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36502804198, + 48.037521428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e72e553ee2bfa22ebc44faa8cd5f06eb010f8db", + "fields": { + "code_commune_insee": "52364", + "nom_de_la_commune": "ORCEVAUX", + "code_postal": "52250", + "coordonnees_gps": [ + 47.7743218186, + 5.27109137653 + ], + "libelle_d_acheminement": "ORCEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27109137653, + 47.7743218186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e63f613379edb232a58b7c36186c11da54d3b89c", + "fields": { + "code_commune_insee": "52365", + "nom_de_la_commune": "ORGES", + "code_postal": "52120", + "coordonnees_gps": [ + 48.0782759639, + 4.93479857914 + ], + "libelle_d_acheminement": "ORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93479857914, + 48.0782759639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9790a4536781f92b23252c293f0944ca3895d947", + "fields": { + "code_commune_insee": "52370", + "nom_de_la_commune": "OSNE LE VAL", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4981170566, + 5.20118415597 + ], + "libelle_d_acheminement": "OSNE LE VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20118415597, + 48.4981170566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d97d3119a2c0b890f09c1a72f245d4aa4d81d4ce", + "fields": { + "code_commune_insee": "52372", + "nom_de_la_commune": "OUTREMECOURT", + "code_postal": "52150", + "coordonnees_gps": [ + 48.2159872582, + 5.69127519244 + ], + "libelle_d_acheminement": "OUTREMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69127519244, + 48.2159872582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c666b60a4b0071c4c3ca34695c4602cc6e8228a", + "fields": { + "code_commune_insee": "52373", + "nom_de_la_commune": "OZIERES", + "code_postal": "52700", + "coordonnees_gps": [ + 48.1695665258, + 5.47158712619 + ], + "libelle_d_acheminement": "OZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47158712619, + 48.1695665258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "112903ab9de99a439161c6758e8d75cb85ade897", + "fields": { + "code_commune_insee": "52375", + "nom_de_la_commune": "PALAISEUL", + "code_postal": "52600", + "coordonnees_gps": [ + 47.7669628042, + 5.41731891936 + ], + "libelle_d_acheminement": "PALAISEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41731891936, + 47.7669628042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c79586dc3f9479e192e0f584399d8dff16c9bea", + "fields": { + "ligne_5": "VIEUX MOULINS", + "code_commune_insee": "52383", + "libelle_d_acheminement": "PERRANCEY LES VIEUX MOULINS", + "code_postal": "52200", + "nom_de_la_commune": "PERRANCEY LES VIEUX MOULINS", + "coordonnees_gps": [ + 47.8567750757, + 5.27470200366 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27470200366, + 47.8567750757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3466f04b9d7098f499f66f97dbe70e13a013722", + "fields": { + "ligne_5": "PIERREFONTAINES", + "code_commune_insee": "52384", + "libelle_d_acheminement": "PERROGNEY LES FONTAINES", + "code_postal": "52160", + "nom_de_la_commune": "PERROGNEY LES FONTAINES", + "coordonnees_gps": [ + 47.8046627431, + 5.20244650135 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20244650135, + 47.8046627431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b24e5853839da9c57ff966f4211556817cb17545", + "fields": { + "code_commune_insee": "52388", + "nom_de_la_commune": "PIERREMONT SUR AMANCE", + "code_postal": "52500", + "coordonnees_gps": [ + 47.8040669012, + 5.66061764392 + ], + "libelle_d_acheminement": "PIERREMONT SUR AMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66061764392, + 47.8040669012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "533a9b483f33214ef0c3038c26157b0d832c4dec", + "fields": { + "ligne_5": "PIERREFAITES", + "code_commune_insee": "52388", + "libelle_d_acheminement": "PIERREMONT SUR AMANCE", + "code_postal": "52500", + "nom_de_la_commune": "PIERREMONT SUR AMANCE", + "coordonnees_gps": [ + 47.8040669012, + 5.66061764392 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66061764392, + 47.8040669012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32f7e87a85e9452842afe10197df8ff13d52dfa9", + "fields": { + "code_commune_insee": "52390", + "nom_de_la_commune": "PISSELOUP", + "code_postal": "52500", + "coordonnees_gps": [ + 47.8328972062, + 5.73978482099 + ], + "libelle_d_acheminement": "PISSELOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73978482099, + 47.8328972062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6b301eec1b49252fd6229d4bb6c3e622e3767ea", + "fields": { + "code_commune_insee": "52394", + "nom_de_la_commune": "POINSON LES FAYL", + "code_postal": "52500", + "coordonnees_gps": [ + 47.7498603171, + 5.60394451287 + ], + "libelle_d_acheminement": "POINSON LES FAYL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60394451287, + 47.7498603171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b220d2be0e9587be9505a5a4895610fc9a777045", + "fields": { + "code_commune_insee": "52400", + "nom_de_la_commune": "LE CHATELET SUR MEUSE", + "code_postal": "52400", + "coordonnees_gps": [ + 47.9735467362, + 5.63993048506 + ], + "libelle_d_acheminement": "LE CHATELET SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63993048506, + 47.9735467362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf3001e2fd359eca4465cfc6068b07e573dbbd00", + "fields": { + "ligne_5": "POUILLY EN BASSIGNY", + "code_commune_insee": "52400", + "libelle_d_acheminement": "LE CHATELET SUR MEUSE", + "code_postal": "52400", + "nom_de_la_commune": "LE CHATELET SUR MEUSE", + "coordonnees_gps": [ + 47.9735467362, + 5.63993048506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63993048506, + 47.9735467362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0354700549ade9d52c3b63c8ec11b7b3e3ce4eb8", + "fields": { + "code_commune_insee": "52407", + "nom_de_la_commune": "PREZ SOUS LAFAUCHE", + "code_postal": "52700", + "coordonnees_gps": [ + 48.2760804704, + 5.50328753513 + ], + "libelle_d_acheminement": "PREZ SOUS LAFAUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50328753513, + 48.2760804704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a6595c31d5897767a4d9b27eb27330fc8b8c8ce", + "fields": { + "code_commune_insee": "52415", + "nom_de_la_commune": "RANCONNIERES", + "code_postal": "52140", + "coordonnees_gps": [ + 47.9411957897, + 5.55892920828 + ], + "libelle_d_acheminement": "RANCONNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55892920828, + 47.9411957897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9032f79b46614bc63ded97d283b52e3cec4c5b7f", + "fields": { + "code_commune_insee": "52420", + "nom_de_la_commune": "REYNEL", + "code_postal": "52700", + "coordonnees_gps": [ + 48.3005429211, + 5.33940771996 + ], + "libelle_d_acheminement": "REYNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33940771996, + 48.3005429211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94eccf5ca5152531f8fee2dc576dcda9d9caab05", + "fields": { + "code_commune_insee": "52421", + "nom_de_la_commune": "RIAUCOURT", + "code_postal": "52000", + "coordonnees_gps": [ + 48.1733717496, + 5.16933990762 + ], + "libelle_d_acheminement": "RIAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16933990762, + 48.1733717496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0e1c3b562e9a209ee5d1234da4cd3c07bf9644c", + "fields": { + "code_commune_insee": "52428", + "nom_de_la_commune": "ROCHEFORT SUR LA COTE", + "code_postal": "52700", + "coordonnees_gps": [ + 48.226286585, + 5.21152794505 + ], + "libelle_d_acheminement": "ROCHEFORT SUR LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21152794505, + 48.226286585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1ea240438462cf153457a6f414761caf8b1451e", + "fields": { + "code_commune_insee": "52431", + "nom_de_la_commune": "ROCHETAILLEE", + "code_postal": "52210", + "coordonnees_gps": [ + 47.848841047, + 5.11949041982 + ], + "libelle_d_acheminement": "ROCHETAILLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11949041982, + 47.848841047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6a6a4e79eebd2f068bd2cbf30e810f8964e32c2", + "fields": { + "ligne_5": "LANNES", + "code_commune_insee": "52432", + "libelle_d_acheminement": "ROLAMPONT", + "code_postal": "52260", + "nom_de_la_commune": "ROLAMPONT", + "coordonnees_gps": [ + 47.9506169361, + 5.30859356776 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30859356776, + 47.9506169361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d29db9cbf9b5bab3af892b972529038dd123ff14", + "fields": { + "code_commune_insee": "52439", + "nom_de_la_commune": "ROUVRES SUR AUBE", + "code_postal": "52160", + "coordonnees_gps": [ + 47.8608869669, + 4.98793387974 + ], + "libelle_d_acheminement": "ROUVRES SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98793387974, + 47.8608869669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05f4ddc6286f882d5f1fe4b3805063c107324f4f", + "fields": { + "code_commune_insee": "52443", + "nom_de_la_commune": "SAILLY", + "code_postal": "52230", + "coordonnees_gps": [ + 48.4356912773, + 5.27218061021 + ], + "libelle_d_acheminement": "SAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27218061021, + 48.4356912773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a5a735040c1d6733b66231c316140833c5e75aa", + "fields": { + "code_commune_insee": "52444", + "nom_de_la_commune": "ST BLIN", + "code_postal": "52700", + "coordonnees_gps": [ + 48.2512823872, + 5.41681321098 + ], + "libelle_d_acheminement": "ST BLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41681321098, + 48.2512823872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a5a0bde1eb234fbfce3bd43445a047310cc06f3", + "fields": { + "code_commune_insee": "52445", + "nom_de_la_commune": "ST BROINGT LE BOIS", + "code_postal": "52190", + "coordonnees_gps": [ + 47.7284500611, + 5.41889569327 + ], + "libelle_d_acheminement": "ST BROINGT LE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41889569327, + 47.7284500611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c37d3f386978f5afb7e42956bcee8271ff0bf39f", + "fields": { + "ligne_5": "BALESMES SUR MARNE", + "code_commune_insee": "52449", + "libelle_d_acheminement": "SAINTS GEOSMES", + "code_postal": "52200", + "nom_de_la_commune": "SAINTS GEOSMES", + "coordonnees_gps": [ + 47.8274545004, + 5.31702793629 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31702793629, + 47.8274545004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c6d6a98676686a96253f73d52c53ed529827cce", + "fields": { + "ligne_5": "COURCELLES SUR AUJON", + "code_commune_insee": "52450", + "libelle_d_acheminement": "ST LOUP SUR AUJON", + "code_postal": "52210", + "nom_de_la_commune": "ST LOUP SUR AUJON", + "coordonnees_gps": [ + 47.8798017799, + 5.07916418859 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07916418859, + 47.8798017799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dcc2ce15113a7e15de13f0a86da31bcf7a0b087", + "fields": { + "code_commune_insee": "52453", + "nom_de_la_commune": "ST MAURICE", + "code_postal": "52200", + "coordonnees_gps": [ + 47.8492351289, + 5.41520627627 + ], + "libelle_d_acheminement": "ST MAURICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41520627627, + 47.8492351289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3e7090e2367bd28c8dcce3b35e8beb59fc357c8", + "fields": { + "code_commune_insee": "52455", + "nom_de_la_commune": "ST THIEBAULT", + "code_postal": "52150", + "coordonnees_gps": [ + 48.2003690234, + 5.57648587847 + ], + "libelle_d_acheminement": "ST THIEBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57648587847, + 48.2003690234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "379886d63f37dcfd0f2acb33ea038f5fc828f364", + "fields": { + "code_commune_insee": "52461", + "nom_de_la_commune": "SARREY", + "code_postal": "52140", + "coordonnees_gps": [ + 48.0018035882, + 5.42481168818 + ], + "libelle_d_acheminement": "SARREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42481168818, + 48.0018035882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef0ae7b15118786e5a93133ad69b6e55726f3021", + "fields": { + "code_commune_insee": "52463", + "nom_de_la_commune": "SAUDRON", + "code_postal": "52230", + "coordonnees_gps": [ + 48.4947761197, + 5.32100791464 + ], + "libelle_d_acheminement": "SAUDRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32100791464, + 48.4947761197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed6911f7062711342a49000cbc1a5a093c2f5a44", + "fields": { + "code_commune_insee": "52468", + "nom_de_la_commune": "SEMILLY", + "code_postal": "52700", + "coordonnees_gps": [ + 48.2505992806, + 5.46434760219 + ], + "libelle_d_acheminement": "SEMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46434760219, + 48.2505992806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fc7ebb36b58514d8cfa82eefab63cccb0136438", + "fields": { + "code_commune_insee": "52469", + "nom_de_la_commune": "SEMOUTIERS MONTSAON", + "code_postal": "52000", + "coordonnees_gps": [ + 48.0638816661, + 5.05420561217 + ], + "libelle_d_acheminement": "SEMOUTIERS MONTSAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05420561217, + 48.0638816661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22cd611ba4ed67cd1b5e47416d89f8a82f352114", + "fields": { + "code_commune_insee": "52475", + "nom_de_la_commune": "SOMMANCOURT", + "code_postal": "52130", + "coordonnees_gps": [ + 48.5043560875, + 5.03760918175 + ], + "libelle_d_acheminement": "SOMMANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03760918175, + 48.5043560875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5df91e44271f929564c2361752c729c559482495", + "fields": { + "code_commune_insee": "52484", + "nom_de_la_commune": "SUZANNECOURT", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4423356345, + 5.18183107876 + ], + "libelle_d_acheminement": "SUZANNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18183107876, + 48.4423356345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b7446e5fc987c2e193ce4a1f89f0da45b00ec07", + "fields": { + "code_commune_insee": "52493", + "nom_de_la_commune": "TORNAY", + "code_postal": "52500", + "coordonnees_gps": [ + 47.6940487968, + 5.59873122424 + ], + "libelle_d_acheminement": "TORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59873122424, + 47.6940487968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8da2a74a8945bfbd0e910e404c64769f6957a12", + "fields": { + "code_commune_insee": "52494", + "nom_de_la_commune": "TREIX", + "code_postal": "52000", + "coordonnees_gps": [ + 48.1414838273, + 5.21369102942 + ], + "libelle_d_acheminement": "TREIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21369102942, + 48.1414838273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7784eae703ded3fb51a6f33e95eea8f1ea041c40", + "fields": { + "code_commune_insee": "76374", + "nom_de_la_commune": "INCHEVILLE", + "code_postal": "76117", + "coordonnees_gps": [ + 50.0051595609, + 1.49981533136 + ], + "libelle_d_acheminement": "INCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49981533136, + 50.0051595609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4503d52ad07627c8424c9a22e4be31b002cf7251", + "fields": { + "code_commune_insee": "52499", + "nom_de_la_commune": "VAILLANT", + "code_postal": "52160", + "coordonnees_gps": [ + 47.7152758836, + 5.15527857753 + ], + "libelle_d_acheminement": "VAILLANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15527857753, + 47.7152758836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6e683f2c28c3cd659155432ae7a6262623e6381", + "fields": { + "code_commune_insee": "76379", + "nom_de_la_commune": "LAMBERVILLE", + "code_postal": "76730", + "coordonnees_gps": [ + 49.77385559, + 1.008841901 + ], + "libelle_d_acheminement": "LAMBERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.008841901, + 49.77385559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5b747cfef635ed74c35a594bb345a838d52f1e1", + "fields": { + "code_commune_insee": "52506", + "nom_de_la_commune": "VAUDREMONT", + "code_postal": "52330", + "coordonnees_gps": [ + 48.1318724255, + 4.91034777098 + ], + "libelle_d_acheminement": "VAUDREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91034777098, + 48.1318724255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d367176439199bb34eced79cba4812b86eb394cf", + "fields": { + "code_commune_insee": "76383", + "nom_de_la_commune": "LESTANVILLE", + "code_postal": "76730", + "coordonnees_gps": [ + 49.7481576979, + 0.959648498602 + ], + "libelle_d_acheminement": "LESTANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.959648498602, + 49.7481576979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ef2cb88f967b81c6c97abbde99dfd11204b40f1", + "fields": { + "code_commune_insee": "52510", + "nom_de_la_commune": "VAUX SUR BLAISE", + "code_postal": "52130", + "coordonnees_gps": [ + 48.4691630131, + 4.96829847611 + ], + "libelle_d_acheminement": "VAUX SUR BLAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96829847611, + 48.4691630131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26ff04ab66c201b58824678de6daa1b9e9d346fd", + "fields": { + "code_commune_insee": "76384", + "nom_de_la_commune": "LILLEBONNE", + "code_postal": "76170", + "coordonnees_gps": [ + 49.5087332809, + 0.534041811072 + ], + "libelle_d_acheminement": "LILLEBONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.534041811072, + 49.5087332809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "627e034697e2ea2acbe46592ea3b796c2275016c", + "fields": { + "code_commune_insee": "52516", + "nom_de_la_commune": "VERSEILLES LE HAUT", + "code_postal": "52250", + "coordonnees_gps": [ + 47.7704909127, + 5.29253229775 + ], + "libelle_d_acheminement": "VERSEILLES LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29253229775, + 47.7704909127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf20aa9facf21d574a7101cdc55d388633e56a12", + "fields": { + "code_commune_insee": "76393", + "nom_de_la_commune": "LONGMESNIL", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6229643465, + 1.6127583113 + ], + "libelle_d_acheminement": "LONGMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6127583113, + 49.6229643465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cd1ba9bdce65766872ce21d0985bb5c2b48a541", + "fields": { + "code_commune_insee": "52520", + "nom_de_la_commune": "VICQ", + "code_postal": "52400", + "coordonnees_gps": [ + 47.9269296373, + 5.61019361194 + ], + "libelle_d_acheminement": "VICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61019361194, + 47.9269296373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1169718319ced841f5e0a9f1104b8e3b52b2147b", + "fields": { + "code_commune_insee": "76399", + "nom_de_la_commune": "LUCY", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7722779599, + 1.44769701931 + ], + "libelle_d_acheminement": "LUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44769701931, + 49.7722779599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f1b2489eef85e5aae24dd60c18c1824905adb73", + "fields": { + "code_commune_insee": "52529", + "nom_de_la_commune": "VILLEGUSIEN LE LAC", + "code_postal": "52190", + "coordonnees_gps": [ + 47.7309169271, + 5.31298003747 + ], + "libelle_d_acheminement": "VILLEGUSIEN LE LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31298003747, + 47.7309169271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47cb5c82e26292146fc98b47c63b2d8ca2990ad0", + "fields": { + "ligne_5": "ST NICOLAS DE BLIQUETUIT", + "code_commune_insee": "76401", + "libelle_d_acheminement": "ARELAUNE EN SEINE", + "code_postal": "76940", + "nom_de_la_commune": "ARELAUNE EN SEINE", + "coordonnees_gps": [ + 49.4463462348, + 0.753460847099 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.753460847099, + 49.4463462348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16faf13de28daac222bd686c6efbdf93dc43b959", + "fields": { + "code_commune_insee": "52538", + "nom_de_la_commune": "VILLIERS SUR SUIZE", + "code_postal": "52210", + "coordonnees_gps": [ + 47.9779580006, + 5.19631550116 + ], + "libelle_d_acheminement": "VILLIERS SUR SUIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19631550116, + 47.9779580006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dda85555a8b8c80bc032d5cd4922af86b7e877c2", + "fields": { + "code_commune_insee": "76407", + "nom_de_la_commune": "MANNEVILLE ES PLAINS", + "code_postal": "76460", + "coordonnees_gps": [ + 49.8582585545, + 0.751682408073 + ], + "libelle_d_acheminement": "MANNEVILLE ES PLAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.751682408073, + 49.8582585545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cb1b1b8bce468ddf6a9022c9e01377231e07e03", + "fields": { + "code_commune_insee": "52539", + "nom_de_la_commune": "VIOLOT", + "code_postal": "52600", + "coordonnees_gps": [ + 47.7591470911, + 5.44427189873 + ], + "libelle_d_acheminement": "VIOLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44427189873, + 47.7591470911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf82f76cc3146579712b2d03458995ab62d9f542", + "fields": { + "code_commune_insee": "76410", + "nom_de_la_commune": "MAROMME", + "code_postal": "76150", + "coordonnees_gps": [ + 49.4769434634, + 1.03230514083 + ], + "libelle_d_acheminement": "MAROMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03230514083, + 49.4769434634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb73ad04d002780a3da8f6d55601c767b220ef27", + "fields": { + "code_commune_insee": "52543", + "nom_de_la_commune": "VOILLECOMTE", + "code_postal": "52130", + "coordonnees_gps": [ + 48.5022510829, + 4.86259090368 + ], + "libelle_d_acheminement": "VOILLECOMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86259090368, + 48.5022510829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "961ba1a81f24af7aacbff4008a30bd720fc3bb63", + "fields": { + "code_commune_insee": "76413", + "nom_de_la_commune": "MARTIGNY", + "code_postal": "76880", + "coordonnees_gps": [ + 49.8602278248, + 1.14443608077 + ], + "libelle_d_acheminement": "MARTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14443608077, + 49.8602278248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d70474c8a5eb7fdab7d6ddc12c329d9e5ae2ad3d", + "fields": { + "code_commune_insee": "52545", + "nom_de_la_commune": "VOISINES", + "code_postal": "52200", + "coordonnees_gps": [ + 47.8566535707, + 5.18061608381 + ], + "libelle_d_acheminement": "VOISINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18061608381, + 47.8566535707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41ac99bcdf29fbf070379df08788269d7ac1885f", + "fields": { + "code_commune_insee": "76414", + "nom_de_la_commune": "MARTIN EGLISE", + "code_postal": "76370", + "coordonnees_gps": [ + 49.9099813153, + 1.13201319892 + ], + "libelle_d_acheminement": "MARTIN EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13201319892, + 49.9099813153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ce1bb102b3a01775d1ad258d43476a6e06d3abc", + "fields": { + "code_commune_insee": "53001", + "nom_de_la_commune": "AHUILLE", + "code_postal": "53940", + "coordonnees_gps": [ + 48.0242749675, + -0.872848003304 + ], + "libelle_d_acheminement": "AHUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.872848003304, + 48.0242749675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3618a264d7f15b2d534fae04abff3862dc6bcf9f", + "fields": { + "code_commune_insee": "76417", + "nom_de_la_commune": "MAUCOMBLE", + "code_postal": "76680", + "coordonnees_gps": [ + 49.6874845722, + 1.3335829013 + ], + "libelle_d_acheminement": "MAUCOMBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3335829013, + 49.6874845722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38e30d4810723892c8b0b6d1cc486e5e485c6032", + "fields": { + "ligne_5": "CIGNE", + "code_commune_insee": "53003", + "libelle_d_acheminement": "AMBRIERES LES VALLEES", + "code_postal": "53300", + "nom_de_la_commune": "AMBRIERES LES VALLEES", + "coordonnees_gps": [ + 48.4227200634, + -0.624160085775 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.624160085775, + 48.4227200634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9dc0b688109d5a3e843116f54140b19da106837", + "fields": { + "code_commune_insee": "76421", + "nom_de_la_commune": "MELAMARE", + "code_postal": "76170", + "coordonnees_gps": [ + 49.539757869, + 0.436022183281 + ], + "libelle_d_acheminement": "MELAMARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.436022183281, + 49.539757869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c92389a320c99521480d8292940d231af620d6f4", + "fields": { + "code_commune_insee": "53010", + "nom_de_la_commune": "ASSE LE BERENGER", + "code_postal": "53600", + "coordonnees_gps": [ + 48.155873836, + -0.318587508951 + ], + "libelle_d_acheminement": "ASSE LE BERENGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.318587508951, + 48.155873836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df52d5826885a29a563ce97cf96157cb80f471a9", + "fields": { + "code_commune_insee": "76430", + "nom_de_la_commune": "MESNIL FOLLEMPRISE", + "code_postal": "76660", + "coordonnees_gps": [ + 49.7631399804, + 1.30108791284 + ], + "libelle_d_acheminement": "MESNIL FOLLEMPRISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30108791284, + 49.7631399804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f5ae3e165efa17046b18c26b6a95ba2edc3fea6", + "fields": { + "code_commune_insee": "53012", + "nom_de_la_commune": "ATHEE", + "code_postal": "53400", + "coordonnees_gps": [ + 47.8819468899, + -0.93658289517 + ], + "libelle_d_acheminement": "ATHEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.93658289517, + 47.8819468899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bcb37e8d508fa18417887c63f73dfd87d674dec", + "fields": { + "code_commune_insee": "76439", + "nom_de_la_commune": "MIRVILLE", + "code_postal": "76210", + "coordonnees_gps": [ + 49.6055328939, + 0.440522106499 + ], + "libelle_d_acheminement": "MIRVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.440522106499, + 49.6055328939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca732bed7d78383a1ca3dba90646b522dbfb3daf", + "fields": { + "code_commune_insee": "53013", + "nom_de_la_commune": "AVERTON", + "code_postal": "53700", + "coordonnees_gps": [ + 48.3545540707, + -0.210521518054 + ], + "libelle_d_acheminement": "AVERTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.210521518054, + 48.3545540707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9efae0913e52ca00cf63e42e53d93fe2276536c", + "fields": { + "code_commune_insee": "76441", + "nom_de_la_commune": "MONCHAUX SORENG", + "code_postal": "76340", + "coordonnees_gps": [ + 49.9466134625, + 1.57307821463 + ], + "libelle_d_acheminement": "MONCHAUX SORENG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57307821463, + 49.9466134625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c783b2f4966f41e4b759459a64aa93936be402ac", + "fields": { + "code_commune_insee": "53018", + "nom_de_la_commune": "BALLOTS", + "code_postal": "53350", + "coordonnees_gps": [ + 47.9040903892, + -1.05880243531 + ], + "libelle_d_acheminement": "BALLOTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05880243531, + 47.9040903892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab0fecf0c870bd4be2305aaf1244f10723375fa0", + "fields": { + "code_commune_insee": "76446", + "nom_de_la_commune": "MONTIGNY", + "code_postal": "76380", + "coordonnees_gps": [ + 49.4586828943, + 0.997604647989 + ], + "libelle_d_acheminement": "MONTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.997604647989, + 49.4586828943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a96e5b8358ab7c18e5518d194d5441fac681630", + "fields": { + "code_commune_insee": "53025", + "nom_de_la_commune": "BAZOUGERS", + "code_postal": "53170", + "coordonnees_gps": [ + 48.0261307912, + -0.593302561904 + ], + "libelle_d_acheminement": "BAZOUGERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.593302561904, + 48.0261307912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9a4113940cd1f899b2df63dbb668271b02b4d31", + "fields": { + "code_commune_insee": "76447", + "nom_de_la_commune": "MONTIVILLIERS", + "code_postal": "76290", + "coordonnees_gps": [ + 49.5442665298, + 0.190325264974 + ], + "libelle_d_acheminement": "MONTIVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.190325264974, + 49.5442665298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf9e6358d0a520885ea40f022af3fa487a6807fb", + "fields": { + "ligne_5": "ST MICHEL DE FEINS", + "code_commune_insee": "53029", + "libelle_d_acheminement": "BIERNE LES VILLAGES", + "code_postal": "53290", + "nom_de_la_commune": "BIERNE LES VILLAGES", + "coordonnees_gps": [ + 47.8071088114, + -0.532804034432 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.532804034432, + 47.8071088114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a37331c879ebe4ab9524d7efc2cec3d15f40b722", + "fields": { + "code_commune_insee": "76448", + "nom_de_la_commune": "MONTMAIN", + "code_postal": "76520", + "coordonnees_gps": [ + 49.4093538356, + 1.24612086223 + ], + "libelle_d_acheminement": "MONTMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24612086223, + 49.4093538356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9f08531eea3c2d539ba2656fe2f1365285be621", + "fields": { + "code_commune_insee": "53034", + "nom_de_la_commune": "BONCHAMP LES LAVAL", + "code_postal": "53960", + "coordonnees_gps": [ + 48.067608658, + -0.698304870899 + ], + "libelle_d_acheminement": "BONCHAMP LES LAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.698304870899, + 48.067608658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93b75a8f915b2ac5d5a33e78b44e214f2f634239", + "fields": { + "code_commune_insee": "76450", + "nom_de_la_commune": "MONTROTY", + "code_postal": "76220", + "coordonnees_gps": [ + 49.4316501805, + 1.66162368177 + ], + "libelle_d_acheminement": "MONTROTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66162368177, + 49.4316501805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97d7ffb730b9cf6388c6df91ad960ec9b770a8b6", + "fields": { + "code_commune_insee": "53037", + "nom_de_la_commune": "BOUESSAY", + "code_postal": "53290", + "coordonnees_gps": [ + 47.8721398411, + -0.393398326513 + ], + "libelle_d_acheminement": "BOUESSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.393398326513, + 47.8721398411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16df2f67f93be83c17bd8b29825c818273ef6c2a", + "fields": { + "code_commune_insee": "76453", + "nom_de_la_commune": "MORGNY LA POMMERAYE", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5199542797, + 1.25089069783 + ], + "libelle_d_acheminement": "MORGNY LA POMMERAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25089069783, + 49.5199542797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e068053e0e2c53f58b6ddecded2f591270e48b86", + "fields": { + "code_commune_insee": "53042", + "nom_de_la_commune": "BRECE", + "code_postal": "53120", + "coordonnees_gps": [ + 48.3901761265, + -0.771171459793 + ], + "libelle_d_acheminement": "BRECE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.771171459793, + 48.3901761265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e63fa3d3f0354cb00c1d2f86bddfbb0be79c310e", + "fields": { + "code_commune_insee": "76457", + "nom_de_la_commune": "MOULINEAUX", + "code_postal": "76530", + "coordonnees_gps": [ + 49.3430951193, + 0.957923849124 + ], + "libelle_d_acheminement": "MOULINEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.957923849124, + 49.3430951193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96dc1fea77971dc4d239563bf9361b823f0ed7fb", + "fields": { + "code_commune_insee": "53053", + "nom_de_la_commune": "CHAMPGENETEUX", + "code_postal": "53160", + "coordonnees_gps": [ + 48.2936006558, + -0.376248680161 + ], + "libelle_d_acheminement": "CHAMPGENETEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.376248680161, + 48.2936006558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5029de0c4d6a022db614aec8fd3889f64a6ac49f", + "fields": { + "code_commune_insee": "76459", + "nom_de_la_commune": "NESLE HODENG", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7039732474, + 1.52184808735 + ], + "libelle_d_acheminement": "NESLE HODENG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52184808735, + 49.7039732474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c5f03180c3fb8337c5f36a7a562e573e0fb23ed", + "fields": { + "code_commune_insee": "53056", + "nom_de_la_commune": "LA CHAPELLE ANTHENAISE", + "code_postal": "53950", + "coordonnees_gps": [ + 48.1320145418, + -0.660149410464 + ], + "libelle_d_acheminement": "LA CHAPELLE ANTHENAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.660149410464, + 48.1320145418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5951bd3aae5fb910b04d7899fa70dc027c3e652", + "fields": { + "code_commune_insee": "76460", + "nom_de_la_commune": "NESLE NORMANDEUSE", + "code_postal": "76340", + "coordonnees_gps": [ + 49.9016162412, + 1.6686722972 + ], + "libelle_d_acheminement": "NESLE NORMANDEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6686722972, + 49.9016162412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc3f7fca81590c76b2f1ebb3d59d2b62a4cc35cc", + "fields": { + "ligne_5": "CHATEAU GONTIER", + "code_commune_insee": "53062", + "libelle_d_acheminement": "CHATEAU GONTIER SUR MAYENNE", + "code_postal": "53200", + "nom_de_la_commune": "CHATEAU GONTIER SUR MAYENNE", + "coordonnees_gps": [ + 47.8290067122, + -0.738721767875 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.738721767875, + 47.8290067122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6282e9074366387387ebda84a84984b767cac549", + "fields": { + "code_commune_insee": "76479", + "nom_de_la_commune": "NULLEMONT", + "code_postal": "76390", + "coordonnees_gps": [ + 49.7707112808, + 1.64690403795 + ], + "libelle_d_acheminement": "NULLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64690403795, + 49.7707112808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cfcc63a37829dd732ecebb843ea2dcc32d3ea7a", + "fields": { + "code_commune_insee": "53079", + "nom_de_la_commune": "COUESMES VAUCE", + "code_postal": "53300", + "coordonnees_gps": [ + 48.4480572726, + -0.709938389949 + ], + "libelle_d_acheminement": "COUESMES VAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.709938389949, + 48.4480572726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04645dd98985f94850ea73a84dd99cde0e4da0a5", + "fields": { + "code_commune_insee": "76481", + "nom_de_la_commune": "OCTEVILLE SUR MER", + "code_postal": "76930", + "coordonnees_gps": [ + 49.558902232, + 0.11790804118 + ], + "libelle_d_acheminement": "OCTEVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11790804118, + 49.558902232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "243dba02edd1e49e50ea7a44e0839676cece2ef8", + "fields": { + "ligne_5": "VAUCE", + "code_commune_insee": "53079", + "libelle_d_acheminement": "COUESMES VAUCE", + "code_postal": "53300", + "nom_de_la_commune": "COUESMES VAUCE", + "coordonnees_gps": [ + 48.4480572726, + -0.709938389949 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.709938389949, + 48.4480572726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c0e53192fcad21cc7b701825b31f6b81356e1a3", + "fields": { + "code_commune_insee": "76483", + "nom_de_la_commune": "OHERVILLE", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7271197121, + 0.689847919572 + ], + "libelle_d_acheminement": "OHERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.689847919572, + 49.7271197121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98558142ec7401e5981ecbda480cd955c35b6db4", + "fields": { + "code_commune_insee": "53083", + "nom_de_la_commune": "COURCITE", + "code_postal": "53700", + "coordonnees_gps": [ + 48.3045487938, + -0.253606869806 + ], + "libelle_d_acheminement": "COURCITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.253606869806, + 48.3045487938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afca2a52a8e4b06ecf6a8f04ea53c65b17d36bf0", + "fields": { + "code_commune_insee": "76489", + "nom_de_la_commune": "OUDALLE", + "code_postal": "76430", + "coordonnees_gps": [ + 49.4851409545, + 0.28118891923 + ], + "libelle_d_acheminement": "OUDALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28118891923, + 49.4851409545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c509f4b2f47d8d3748aa7bd53d82a824ad97e428", + "fields": { + "code_commune_insee": "53085", + "nom_de_la_commune": "CRENNES SUR FRAUBEE", + "code_postal": "53700", + "coordonnees_gps": [ + 48.3825961037, + -0.26618187335 + ], + "libelle_d_acheminement": "CRENNES SUR FRAUBEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26618187335, + 48.3825961037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64a8d2132ca19e4affe14f543b03de834e3c0374", + "fields": { + "code_commune_insee": "76495", + "nom_de_la_commune": "PAVILLY", + "code_postal": "76570", + "coordonnees_gps": [ + 49.5758967466, + 0.947253796709 + ], + "libelle_d_acheminement": "PAVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.947253796709, + 49.5758967466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9724104d19cd3092bc48749107839f06ecbea851", + "fields": { + "code_commune_insee": "53087", + "nom_de_la_commune": "LA CROPTE", + "code_postal": "53170", + "coordonnees_gps": [ + 47.9540718566, + -0.491505968258 + ], + "libelle_d_acheminement": "LA CROPTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.491505968258, + 47.9540718566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d0e008957538a6427ef92468a696c3672a5ea82", + "fields": { + "code_commune_insee": "76504", + "nom_de_la_commune": "PLEINE SEVE", + "code_postal": "76460", + "coordonnees_gps": [ + 49.8192764912, + 0.752574707374 + ], + "libelle_d_acheminement": "PLEINE SEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.752574707374, + 49.8192764912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "020495e895d39c48173e33781d1b21a5bbddc71d", + "fields": { + "code_commune_insee": "53089", + "nom_de_la_commune": "DAON", + "code_postal": "53200", + "coordonnees_gps": [ + 47.7578017678, + -0.627519055718 + ], + "libelle_d_acheminement": "DAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.627519055718, + 47.7578017678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d8981c90cfb84aff62bb44a54676e751e535f23", + "fields": { + "code_commune_insee": "76506", + "nom_de_la_commune": "POMMEREVAL", + "code_postal": "76680", + "coordonnees_gps": [ + 49.7348985636, + 1.30505361857 + ], + "libelle_d_acheminement": "POMMEREVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30505361857, + 49.7348985636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c61424bcc7afdc4eb0c97015dca615ef74419806", + "fields": { + "ligne_5": "ST ISLE", + "code_commune_insee": "53103", + "libelle_d_acheminement": "LE GENEST ST ISLE", + "code_postal": "53940", + "nom_de_la_commune": "LE GENEST ST ISLE", + "coordonnees_gps": [ + 48.104173372, + -0.895219707599 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.895219707599, + 48.104173372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b4aff6873b5456749c7988a3843d4641430d237", + "fields": { + "code_commune_insee": "76507", + "nom_de_la_commune": "PONTS ET MARAIS", + "code_postal": "76260", + "coordonnees_gps": [ + 50.0387974172, + 1.45638141872 + ], + "libelle_d_acheminement": "PONTS ET MARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45638141872, + 50.0387974172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28f5239102bab83ccef0cf77ac9c626162aedb0c", + "fields": { + "ligne_5": "GENNES SUR GLAIZE", + "code_commune_insee": "53104", + "libelle_d_acheminement": "GENNES LONGUEFUYE", + "code_postal": "53200", + "nom_de_la_commune": "GENNES LONGUEFUYE", + "coordonnees_gps": [ + 47.8440286792, + -0.586296420609 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.586296420609, + 47.8440286792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79a0a60147dfbcecf4a39750068999a3f54cd37d", + "fields": { + "code_commune_insee": "76516", + "nom_de_la_commune": "QUIEVRECOURT", + "code_postal": "76270", + "coordonnees_gps": [ + 49.725385425, + 1.41857602963 + ], + "libelle_d_acheminement": "QUIEVRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41857602963, + 49.725385425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ad13c594a96e434a0e1cc10c15866df641459da", + "fields": { + "ligne_5": "LONGUEFUYE", + "code_commune_insee": "53104", + "libelle_d_acheminement": "GENNES LONGUEFUYE", + "code_postal": "53200", + "nom_de_la_commune": "GENNES LONGUEFUYE", + "coordonnees_gps": [ + 47.8440286792, + -0.586296420609 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.586296420609, + 47.8440286792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af7b2db3056f170373b0b45226f0ff51852a9dc5", + "fields": { + "code_commune_insee": "76521", + "nom_de_la_commune": "REBETS", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5130690586, + 1.39322276599 + ], + "libelle_d_acheminement": "REBETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39322276599, + 49.5130690586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "395bec89cb131490f5b44d18ec23740f83f00f8a", + "fields": { + "code_commune_insee": "53108", + "nom_de_la_commune": "LA GRAVELLE", + "code_postal": "53410", + "coordonnees_gps": [ + 48.0812094944, + -1.0243127895 + ], + "libelle_d_acheminement": "LA GRAVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0243127895, + 48.0812094944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "371d64f3660275bb5caf082e0d9463b33b485e18", + "fields": { + "code_commune_insee": "76524", + "nom_de_la_commune": "REUVILLE", + "code_postal": "76560", + "coordonnees_gps": [ + 49.747178396, + 0.862712359723 + ], + "libelle_d_acheminement": "REUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.862712359723, + 49.747178396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7b6125c0f2383f50872d27040972c70bce38ef9", + "fields": { + "ligne_5": "BRETIGNOLLES LE MOULIN", + "code_commune_insee": "53118", + "libelle_d_acheminement": "LE HOUSSEAU BRETIGNOLLES", + "code_postal": "53110", + "nom_de_la_commune": "LE HOUSSEAU BRETIGNOLLES", + "coordonnees_gps": [ + 48.4707455149, + -0.537332465722 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.537332465722, + 48.4707455149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c32112f005d69b491a242cd00928ff4584f5b59", + "fields": { + "code_commune_insee": "76528", + "nom_de_la_commune": "RIEUX", + "code_postal": "76340", + "coordonnees_gps": [ + 49.9238830095, + 1.58206484475 + ], + "libelle_d_acheminement": "RIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58206484475, + 49.9238830095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "821a8e7212b7097773c7dbd769de9797dd1e60f1", + "fields": { + "code_commune_insee": "53119", + "nom_de_la_commune": "L HUISSERIE", + "code_postal": "53970", + "coordonnees_gps": [ + 48.0167338344, + -0.766387903128 + ], + "libelle_d_acheminement": "L HUISSERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.766387903128, + 48.0167338344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6809f8954795c911e94a4a76ad8c10e8afce8022", + "fields": { + "code_commune_insee": "76530", + "nom_de_la_commune": "ROBERTOT", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7148325676, + 0.695990388034 + ], + "libelle_d_acheminement": "ROBERTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.695990388034, + 49.7148325676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d0d2772fb7be8bc4181aad9e2ee8d9c085a680c", + "fields": { + "ligne_5": "LES CHAPELLES", + "code_commune_insee": "53121", + "libelle_d_acheminement": "JAVRON LES CHAPELLES", + "code_postal": "53250", + "nom_de_la_commune": "JAVRON LES CHAPELLES", + "coordonnees_gps": [ + 48.4208361061, + -0.330959453036 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.330959453036, + 48.4208361061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cf45d3abdb184a6f75b72cea55b314da8e9f852", + "fields": { + "code_commune_insee": "76533", + "nom_de_la_commune": "ROGERVILLE", + "code_postal": "76700", + "coordonnees_gps": [ + 49.4857634739, + 0.25945469871 + ], + "libelle_d_acheminement": "ROGERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25945469871, + 49.4857634739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb7459e9c158d54b3a49054be2a41e3b3a1741ee", + "fields": { + "code_commune_insee": "53122", + "nom_de_la_commune": "JUBLAINS", + "code_postal": "53160", + "coordonnees_gps": [ + 48.2455340373, + -0.498318427927 + ], + "libelle_d_acheminement": "JUBLAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.498318427927, + 48.2455340373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "650d97ca8a81ad796114be683d778869a5a39adb", + "fields": { + "code_commune_insee": "76535", + "nom_de_la_commune": "RONCHEROLLES EN BRAY", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6149739631, + 1.48812249463 + ], + "libelle_d_acheminement": "RONCHEROLLES EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48812249463, + 49.6149739631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "956789d369dd55ba28f94a56fe2928e512c78cd9", + "fields": { + "code_commune_insee": "53123", + "nom_de_la_commune": "JUVIGNE", + "code_postal": "53380", + "coordonnees_gps": [ + 48.2356053561, + -1.02188545282 + ], + "libelle_d_acheminement": "JUVIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02188545282, + 48.2356053561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a70ba8b556125b299e827d98c91664a1daa7d38e", + "fields": { + "code_commune_insee": "76542", + "nom_de_la_commune": "ROUTES", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7300250553, + 0.747871983525 + ], + "libelle_d_acheminement": "ROUTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.747871983525, + 49.7300250553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6d215c9330ec4a2091e560bda5135211d0e77a0", + "fields": { + "ligne_5": "AMPOIGNE", + "code_commune_insee": "53124", + "libelle_d_acheminement": "PREE D ANJOU", + "code_postal": "53200", + "nom_de_la_commune": "PREE D ANJOU", + "coordonnees_gps": [ + 47.8446027753, + -0.835394769225 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.835394769225, + 47.8446027753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a1f7a04586b22fd4d0aabbee676b9ca3a90594b", + "fields": { + "code_commune_insee": "76544", + "nom_de_la_commune": "ROUVRAY CATILLON", + "code_postal": "76440", + "coordonnees_gps": [ + 49.5765632923, + 1.47751784058 + ], + "libelle_d_acheminement": "ROUVRAY CATILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47751784058, + 49.5765632923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "500abc8a6ab22461775e41edcd6437f06a36d1aa", + "fields": { + "ligne_5": "LAIGNE", + "code_commune_insee": "53124", + "libelle_d_acheminement": "PREE D ANJOU", + "code_postal": "53200", + "nom_de_la_commune": "PREE D ANJOU", + "coordonnees_gps": [ + 47.8446027753, + -0.835394769225 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.835394769225, + 47.8446027753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ada2e2d38616011c98998883de33e242f44bf25f", + "fields": { + "code_commune_insee": "76550", + "nom_de_la_commune": "SAHURS", + "code_postal": "76113", + "coordonnees_gps": [ + 49.3668117102, + 0.948721197736 + ], + "libelle_d_acheminement": "SAHURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.948721197736, + 49.3668117102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f63b2b716d064d6a79fc40129a9c573087dceba", + "fields": { + "code_commune_insee": "53125", + "nom_de_la_commune": "LANDIVY", + "code_postal": "53190", + "coordonnees_gps": [ + 48.4787671606, + -1.03882246254 + ], + "libelle_d_acheminement": "LANDIVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03882246254, + 48.4787671606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79e3f8d117fc9dced70a86d37b69c7690bb09786", + "fields": { + "code_commune_insee": "76552", + "nom_de_la_commune": "STE ADRESSE", + "code_postal": "76310", + "coordonnees_gps": [ + 49.5101291317, + 0.0779770948409 + ], + "libelle_d_acheminement": "STE ADRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0779770948409, + 49.5101291317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76a1000a46a880d8ecd0f4fcc56b526771908dcb", + "fields": { + "code_commune_insee": "53127", + "nom_de_la_commune": "LASSAY LES CHATEAUX", + "code_postal": "53110", + "coordonnees_gps": [ + 48.4421089808, + -0.498821106653 + ], + "libelle_d_acheminement": "LASSAY LES CHATEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.498821106653, + 48.4421089808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3434e1dfe4702cb0c65a7ae85f1a6edb4c7e3a15", + "fields": { + "code_commune_insee": "76556", + "nom_de_la_commune": "ST ANTOINE LA FORET", + "code_postal": "76170", + "coordonnees_gps": [ + 49.5385601912, + 0.480932207517 + ], + "libelle_d_acheminement": "ST ANTOINE LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.480932207517, + 49.5385601912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d539866884c9c0768f651a440c33f89f642157e7", + "fields": { + "ligne_5": "LOIGNE SUR MAYENNE", + "code_commune_insee": "53136", + "libelle_d_acheminement": "LA ROCHE NEUVILLE", + "code_postal": "53200", + "nom_de_la_commune": "LA ROCHE NEUVILLE", + "coordonnees_gps": [ + 47.8683528572, + -0.737119476827 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.737119476827, + 47.8683528572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c059db2300e0114b999cf85ff552d7d74dbc83fe", + "fields": { + "code_commune_insee": "76566", + "nom_de_la_commune": "STE AUSTREBERTHE", + "code_postal": "76570", + "coordonnees_gps": [ + 49.6017062639, + 0.972327447526 + ], + "libelle_d_acheminement": "STE AUSTREBERTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.972327447526, + 49.6017062639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2c28bf55d55c48f16a8d586eb1d7aee1be275fe", + "fields": { + "code_commune_insee": "53141", + "nom_de_la_commune": "LOUVIGNE", + "code_postal": "53210", + "coordonnees_gps": [ + 48.0547197919, + -0.634640720339 + ], + "libelle_d_acheminement": "LOUVIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.634640720339, + 48.0547197919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fe6b56689a88fd7edbb683acdc655a353661f83", + "fields": { + "code_commune_insee": "76573", + "nom_de_la_commune": "ST DENIS LE THIBOULT", + "code_postal": "76116", + "coordonnees_gps": [ + 49.4593462802, + 1.35296066774 + ], + "libelle_d_acheminement": "ST DENIS LE THIBOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35296066774, + 49.4593462802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc508f27df56f10d58d9ef320475dafeb2cff65a", + "fields": { + "code_commune_insee": "53161", + "nom_de_la_commune": "MONTSURS", + "code_postal": "53150", + "coordonnees_gps": [ + 48.1342883147, + -0.552017747624 + ], + "libelle_d_acheminement": "MONTSURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.552017747624, + 48.1342883147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76a82a0df1ec159e71326760e88ca0d8655b9ae1", + "fields": { + "code_commune_insee": "76582", + "nom_de_la_commune": "ST GERMAIN D ETABLES", + "code_postal": "76590", + "coordonnees_gps": [ + 49.8372754134, + 1.18137897384 + ], + "libelle_d_acheminement": "ST GERMAIN D ETABLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18137897384, + 49.8372754134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1539cfe901c6f9971d25f2d5afc8942147b8fce", + "fields": { + "code_commune_insee": "53164", + "nom_de_la_commune": "NEUILLY LE VENDIN", + "code_postal": "53250", + "coordonnees_gps": [ + 48.4904833451, + -0.326146757248 + ], + "libelle_d_acheminement": "NEUILLY LE VENDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.326146757248, + 48.4904833451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ab3b236077e9acd68942a673e6dc6fe275c5b4c", + "fields": { + "code_commune_insee": "76590", + "nom_de_la_commune": "ST JACQUES D ALIERMONT", + "code_postal": "76510", + "coordonnees_gps": [ + 49.8478920039, + 1.25191662151 + ], + "libelle_d_acheminement": "ST JACQUES D ALIERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25191662151, + 49.8478920039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "859cf0c65f9a75bb74e29f88b2c4468a6077b8f0", + "fields": { + "code_commune_insee": "53179", + "nom_de_la_commune": "PLACE", + "code_postal": "53240", + "coordonnees_gps": [ + 48.2644178522, + -0.775676155113 + ], + "libelle_d_acheminement": "PLACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.775676155113, + 48.2644178522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b589bb00551117c57d1bc0d569cdd35cc9a24039", + "fields": { + "code_commune_insee": "76593", + "nom_de_la_commune": "ST JEAN DE LA NEUVILLE", + "code_postal": "76210", + "coordonnees_gps": [ + 49.5749733786, + 0.428297913723 + ], + "libelle_d_acheminement": "ST JEAN DE LA NEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.428297913723, + 49.5749733786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abc47d2777533061250c4a02fb98ab5ff6369c17", + "fields": { + "code_commune_insee": "53182", + "nom_de_la_commune": "PORT BRILLET", + "code_postal": "53410", + "coordonnees_gps": [ + 48.1212899945, + -0.963949064008 + ], + "libelle_d_acheminement": "PORT BRILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.963949064008, + 48.1212899945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd7d2a64dd6a7041cf0d1f43cd85e3581882e749", + "fields": { + "code_commune_insee": "76595", + "nom_de_la_commune": "ST JOUIN BRUNEVAL", + "code_postal": "76280", + "coordonnees_gps": [ + 49.6388529108, + 0.17807226777 + ], + "libelle_d_acheminement": "ST JOUIN BRUNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17807226777, + 49.6388529108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e552050b061e3d6dd0890bd236f45711ef30bdbd", + "fields": { + "code_commune_insee": "53188", + "nom_de_la_commune": "RENAZE", + "code_postal": "53800", + "coordonnees_gps": [ + 47.7843103989, + -1.040222995 + ], + "libelle_d_acheminement": "RENAZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.040222995, + 47.7843103989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b1a47db487338afa18da65a2873df8ff3d51a4d", + "fields": { + "code_commune_insee": "76598", + "nom_de_la_commune": "ST LEGER AUX BOIS", + "code_postal": "76340", + "coordonnees_gps": [ + 49.8298026254, + 1.61197494699 + ], + "libelle_d_acheminement": "ST LEGER AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61197494699, + 49.8298026254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "390832c928d200bf014042392f981d857d5e2ec7", + "fields": { + "code_commune_insee": "53193", + "nom_de_la_commune": "RUILLE FROID FONDS", + "code_postal": "53170", + "coordonnees_gps": [ + 47.9061787546, + -0.625211049544 + ], + "libelle_d_acheminement": "RUILLE FROID FONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.625211049544, + 47.9061787546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3020eaad15e6a8c9e3a1a061331a8529cf96d237", + "fields": { + "code_commune_insee": "76612", + "nom_de_la_commune": "ST MARTIN AU BOSC", + "code_postal": "76340", + "coordonnees_gps": [ + 49.8316316628, + 1.66866654191 + ], + "libelle_d_acheminement": "ST MARTIN AU BOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66866654191, + 49.8316316628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0d8a6af5489073bb055c51cb5f1774849fd5777", + "fields": { + "code_commune_insee": "53195", + "nom_de_la_commune": "SACE", + "code_postal": "53470", + "coordonnees_gps": [ + 48.1800800197, + -0.699374640093 + ], + "libelle_d_acheminement": "SACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.699374640093, + 48.1800800197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7e9cacc1f783be16132a20d0c8fd574d985bf3e", + "fields": { + "code_commune_insee": "76613", + "nom_de_la_commune": "ST MARTIN AUX BUNEAUX", + "code_postal": "76540", + "coordonnees_gps": [ + 49.8270470687, + 0.550567234942 + ], + "libelle_d_acheminement": "ST MARTIN AUX BUNEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.550567234942, + 49.8270470687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54a56288870c381769628327e8bf72bd347c2036", + "fields": { + "code_commune_insee": "53198", + "nom_de_la_commune": "ST AUBIN DU DESERT", + "code_postal": "53700", + "coordonnees_gps": [ + 48.3147006248, + -0.184927866306 + ], + "libelle_d_acheminement": "ST AUBIN DU DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.184927866306, + 48.3147006248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f7a866156065b0b95b1e9ecc3a1358bc2234d93", + "fields": { + "code_commune_insee": "76615", + "nom_de_la_commune": "ST MARTIN DU BEC", + "code_postal": "76133", + "coordonnees_gps": [ + 49.6006687122, + 0.202278495789 + ], + "libelle_d_acheminement": "ST MARTIN DU BEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.202278495789, + 49.6006687122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19951dc2a823daa22b3a87ca4616158c9f0f49a9", + "fields": { + "code_commune_insee": "53199", + "nom_de_la_commune": "ST AUBIN FOSSE LOUVAIN", + "code_postal": "53120", + "coordonnees_gps": [ + 48.4490661735, + -0.836056782555 + ], + "libelle_d_acheminement": "ST AUBIN FOSSE LOUVAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.836056782555, + 48.4490661735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8984e151f686363265954cc615c5715015712f51", + "fields": { + "ligne_5": "BELLEVILLE SUR MER", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76370", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "983fac31cad8b65bdd59180e3c07ea4a08f66291", + "fields": { + "code_commune_insee": "53200", + "nom_de_la_commune": "ST BAUDELLE", + "code_postal": "53100", + "coordonnees_gps": [ + 48.2871604216, + -0.650878906901 + ], + "libelle_d_acheminement": "ST BAUDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.650878906901, + 48.2871604216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30b8d20b1a04f25027e65184e1950139de84b44a", + "fields": { + "ligne_5": "BRUNVILLE", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76630", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc65161ba4401145cd0edbc8227253a07db7ff2f", + "fields": { + "code_commune_insee": "53206", + "nom_de_la_commune": "ST CHARLES LA FORET", + "code_postal": "53170", + "coordonnees_gps": [ + 47.9194763101, + -0.56890485725 + ], + "libelle_d_acheminement": "ST CHARLES LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.56890485725, + 47.9194763101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f71d0257d17bd5a4dae3ebe2a9db284b0355dad", + "fields": { + "ligne_5": "PENLY", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76630", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "979b3848d33fd9c7d627254183e7278730fedea5", + "fields": { + "code_commune_insee": "53208", + "nom_de_la_commune": "ST CYR EN PAIL", + "code_postal": "53140", + "coordonnees_gps": [ + 48.4338588382, + -0.253528252762 + ], + "libelle_d_acheminement": "ST CYR EN PAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.253528252762, + 48.4338588382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3f21485b9ba69fb086b62ee2a73d2caf2411441", + "fields": { + "code_commune_insee": "76627", + "nom_de_la_commune": "ST NICOLAS DE LA TAILLE", + "code_postal": "76170", + "coordonnees_gps": [ + 49.5142461624, + 0.469748142388 + ], + "libelle_d_acheminement": "ST NICOLAS DE LA TAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.469748142388, + 49.5142461624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b5bcc92f59ea661e63b2d6a0f242783d0393da2", + "fields": { + "code_commune_insee": "53210", + "nom_de_la_commune": "ST DENIS D ANJOU", + "code_postal": "53290", + "coordonnees_gps": [ + 47.7899907217, + -0.443836396748 + ], + "libelle_d_acheminement": "ST DENIS D ANJOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.443836396748, + 47.7899907217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9eb450c3562d595bc81866717baa5897dc99e4d", + "fields": { + "code_commune_insee": "76637", + "nom_de_la_commune": "ST PIERRE EN PORT", + "code_postal": "76540", + "coordonnees_gps": [ + 49.8072086102, + 0.500314301045 + ], + "libelle_d_acheminement": "ST PIERRE EN PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.500314301045, + 49.8072086102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06bb345a129f8e963e5f47a2f3149141a8fe413e", + "fields": { + "code_commune_insee": "53211", + "nom_de_la_commune": "ST DENIS DE GASTINES", + "code_postal": "53500", + "coordonnees_gps": [ + 48.3469457308, + -0.87082653269 + ], + "libelle_d_acheminement": "ST DENIS DE GASTINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.87082653269, + 48.3469457308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b899e609c8542e93333995533d370ab76466e5dd", + "fields": { + "code_commune_insee": "76642", + "nom_de_la_commune": "ST PIERRE LE VIGER", + "code_postal": "76740", + "coordonnees_gps": [ + 49.8268946102, + 0.849728214011 + ], + "libelle_d_acheminement": "ST PIERRE LE VIGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.849728214011, + 49.8268946102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb59f302fdd2f017004e1f7b362d3831c7efd9c0", + "fields": { + "code_commune_insee": "53212", + "nom_de_la_commune": "ST DENIS DU MAINE", + "code_postal": "53170", + "coordonnees_gps": [ + 47.9806121004, + -0.521686670231 + ], + "libelle_d_acheminement": "ST DENIS DU MAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.521686670231, + 47.9806121004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce8d3df5133fcc41a11d9e52c1cab8f5b0e50297", + "fields": { + "code_commune_insee": "76647", + "nom_de_la_commune": "ST ROMAIN DE COLBOSC", + "code_postal": "76430", + "coordonnees_gps": [ + 49.5286231796, + 0.363829451738 + ], + "libelle_d_acheminement": "ST ROMAIN DE COLBOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.363829451738, + 49.5286231796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9248a700b4498b54168bc773e50b923f1e5265c3", + "fields": { + "ligne_5": "FONTAINE DANIEL", + "code_commune_insee": "53219", + "libelle_d_acheminement": "ST GEORGES BUTTAVENT", + "code_postal": "53100", + "nom_de_la_commune": "ST GEORGES BUTTAVENT", + "coordonnees_gps": [ + 48.3009765177, + -0.709948140576 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.709948140576, + 48.3009765177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "522f6b030de07a13a8f875f9bbd6f81724a14385", + "fields": { + "code_commune_insee": "76650", + "nom_de_la_commune": "ST SAUVEUR D EMALLEVILLE", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6113638216, + 0.306191805081 + ], + "libelle_d_acheminement": "ST SAUVEUR D EMALLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.306191805081, + 49.6113638216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "456391a292e428ba703f3d421b445e5e48570737", + "fields": { + "code_commune_insee": "53222", + "nom_de_la_commune": "ST GERMAIN D ANXURE", + "code_postal": "53240", + "coordonnees_gps": [ + 48.2180775188, + -0.734109264327 + ], + "libelle_d_acheminement": "ST GERMAIN D ANXURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.734109264327, + 48.2180775188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b9b2be15aaca663e1cbad13d86c9cd1b2bf55bb", + "fields": { + "code_commune_insee": "76651", + "nom_de_la_commune": "ST SYLVAIN", + "code_postal": "76460", + "coordonnees_gps": [ + 49.8484962406, + 0.659644350897 + ], + "libelle_d_acheminement": "ST SYLVAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659644350897, + 49.8484962406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2aeed6dba98a21b953ab4e5c482c4d3024a421f", + "fields": { + "code_commune_insee": "53226", + "nom_de_la_commune": "ST HILAIRE DU MAINE", + "code_postal": "53380", + "coordonnees_gps": [ + 48.2230674956, + -0.930972405821 + ], + "libelle_d_acheminement": "ST HILAIRE DU MAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.930972405821, + 48.2230674956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99e4509d115434a59e7828243443ddc4f426fa51", + "fields": { + "code_commune_insee": "76653", + "nom_de_la_commune": "ST VAAST DIEPPEDALLE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.7575768119, + 0.722349348427 + ], + "libelle_d_acheminement": "ST VAAST DIEPPEDALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.722349348427, + 49.7575768119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "614cb478d30f332536b14bddd0bf3b39950ff0a4", + "fields": { + "ligne_5": "ST JEAN SUR ERVE", + "code_commune_insee": "53228", + "libelle_d_acheminement": "BLANDOUET ST JEAN", + "code_postal": "53270", + "nom_de_la_commune": "BLANDOUET ST JEAN", + "coordonnees_gps": [ + 48.0403224442, + -0.38824131993 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38824131993, + 48.0403224442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf400a61199f92e3266647e10d81fed1cc0f1bb0", + "fields": { + "code_commune_insee": "76655", + "nom_de_la_commune": "ST VALERY EN CAUX", + "code_postal": "76460", + "coordonnees_gps": [ + 49.85975403, + 0.70707488248 + ], + "libelle_d_acheminement": "ST VALERY EN CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.70707488248, + 49.85975403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8218383e3dab2c7a19681fc374cd2f78bc6c1ffa", + "fields": { + "code_commune_insee": "53232", + "nom_de_la_commune": "ST LEGER", + "code_postal": "53480", + "coordonnees_gps": [ + 48.0862593313, + -0.446252425773 + ], + "libelle_d_acheminement": "ST LEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.446252425773, + 48.0862593313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21827f8fefee0f0857dc5c4c7f3e456f7ae899a8", + "fields": { + "code_commune_insee": "76660", + "nom_de_la_commune": "SANDOUVILLE", + "code_postal": "76430", + "coordonnees_gps": [ + 49.4777178239, + 0.301065445929 + ], + "libelle_d_acheminement": "SANDOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301065445929, + 49.4777178239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95744d47e8512baeade7ff3f1abb4831836cc81a", + "fields": { + "code_commune_insee": "53233", + "nom_de_la_commune": "ST LOUP DU DORAT", + "code_postal": "53290", + "coordonnees_gps": [ + 47.8857485976, + -0.423854225277 + ], + "libelle_d_acheminement": "ST LOUP DU DORAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.423854225277, + 47.8857485976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "880b12de1d0e481df033090d6fdf010bc704360a", + "fields": { + "code_commune_insee": "76664", + "nom_de_la_commune": "SASSEVILLE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.7829827981, + 0.690793795865 + ], + "libelle_d_acheminement": "SASSEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.690793795865, + 49.7829827981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2390fb9862f9f8a09649f2a0d658487e0198ec15", + "fields": { + "code_commune_insee": "53238", + "nom_de_la_commune": "ST MARS SUR LA FUTAIE", + "code_postal": "53220", + "coordonnees_gps": [ + 48.4310961702, + -1.01165240815 + ], + "libelle_d_acheminement": "ST MARS SUR LA FUTAIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01165240815, + 48.4310961702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d2f5efebfddcdd445c447f81bcb3eef549479cf", + "fields": { + "code_commune_insee": "76665", + "nom_de_la_commune": "SAUCHAY", + "code_postal": "76630", + "coordonnees_gps": [ + 49.9194809701, + 1.20513608482 + ], + "libelle_d_acheminement": "SAUCHAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20513608482, + 49.9194809701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8be6faeb6bfc9c531cb64e1f4c5ba47960deec48", + "fields": { + "code_commune_insee": "53239", + "nom_de_la_commune": "ST MARTIN DE CONNEE", + "code_postal": "53160", + "coordonnees_gps": [ + 48.2263014135, + -0.246813322677 + ], + "libelle_d_acheminement": "ST MARTIN DE CONNEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.246813322677, + 48.2263014135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04b12da91ab2a731f6a26e617b68d8a165e288f3", + "fields": { + "code_commune_insee": "76669", + "nom_de_la_commune": "SAUSSEUZEMARE EN CAUX", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6710119926, + 0.350018167711 + ], + "libelle_d_acheminement": "SAUSSEUZEMARE EN CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.350018167711, + 49.6710119926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d460fbca1862582ba9e02dbd123a8041cc7cee63", + "fields": { + "code_commune_insee": "53249", + "nom_de_la_commune": "ST PIERRE SUR ORTHE", + "code_postal": "53160", + "coordonnees_gps": [ + 48.2283647918, + -0.193084867876 + ], + "libelle_d_acheminement": "ST PIERRE SUR ORTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.193084867876, + 48.2283647918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "818250fc1dd8941b40db8082686c093d33f61444", + "fields": { + "code_commune_insee": "76675", + "nom_de_la_commune": "SIERVILLE", + "code_postal": "76690", + "coordonnees_gps": [ + 49.5915709945, + 1.03742775738 + ], + "libelle_d_acheminement": "SIERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03742775738, + 49.5915709945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98a867c6515b5b23d2b93f8e065f57720ef566f4", + "fields": { + "code_commune_insee": "53251", + "nom_de_la_commune": "ST QUENTIN LES ANGES", + "code_postal": "53400", + "coordonnees_gps": [ + 47.777433487, + -0.874589070438 + ], + "libelle_d_acheminement": "ST QUENTIN LES ANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.874589070438, + 47.777433487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38c9602ee0744bba6231d3ac47c6b30813badf18", + "fields": { + "code_commune_insee": "76676", + "nom_de_la_commune": "SIGY EN BRAY", + "code_postal": "76780", + "coordonnees_gps": [ + 49.5335628852, + 1.46692134698 + ], + "libelle_d_acheminement": "SIGY EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46692134698, + 49.5335628852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9e0e314acf5ad5be785aaec859007c3880c36ca", + "fields": { + "ligne_5": "STE SUZANNE", + "code_commune_insee": "53255", + "libelle_d_acheminement": "STE SUZANNE ET CHAMMES", + "code_postal": "53270", + "nom_de_la_commune": "STE SUZANNE ET CHAMMES", + "coordonnees_gps": [ + 48.1028813013, + -0.354680320285 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.354680320285, + 48.1028813013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebe02a0f504b699357fc72c183378ee8d5e4151a", + "fields": { + "code_commune_insee": "76681", + "nom_de_la_commune": "SOTTEVILLE LES ROUEN", + "code_postal": "76300", + "coordonnees_gps": [ + 49.4104887444, + 1.09509946531 + ], + "libelle_d_acheminement": "SOTTEVILLE LES ROUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09509946531, + 49.4104887444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd094445e8d5062f35e5219332cdb55f74b32668", + "fields": { + "code_commune_insee": "53257", + "nom_de_la_commune": "SAULGES", + "code_postal": "53340", + "coordonnees_gps": [ + 47.9761126561, + -0.405978103131 + ], + "libelle_d_acheminement": "SAULGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.405978103131, + 47.9761126561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89215e80289b6e53e2a2e88bdabc64e347e7e33a", + "fields": { + "code_commune_insee": "76682", + "nom_de_la_commune": "SOTTEVILLE SOUS LE VAL", + "code_postal": "76410", + "coordonnees_gps": [ + 49.3172603768, + 1.11637971624 + ], + "libelle_d_acheminement": "SOTTEVILLE SOUS LE VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11637971624, + 49.3172603768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63e0c06de9bb3f815cf55c88503133dad256395f", + "fields": { + "code_commune_insee": "53260", + "nom_de_la_commune": "SIMPLE", + "code_postal": "53360", + "coordonnees_gps": [ + 47.8831198696, + -0.854685550737 + ], + "libelle_d_acheminement": "SIMPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.854685550737, + 47.8831198696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e80d9aa90edf3daecc5f81ea9402e56e3514336", + "fields": { + "code_commune_insee": "76688", + "nom_de_la_commune": "THIERGEVILLE", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7282499178, + 0.4881028317 + ], + "libelle_d_acheminement": "THIERGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.4881028317, + 49.7282499178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0983732431f121ec2f1762fb74fb66fe746e2a63", + "fields": { + "code_commune_insee": "53261", + "nom_de_la_commune": "SOUCE", + "code_postal": "53300", + "coordonnees_gps": [ + 48.4670641596, + -0.67042009651 + ], + "libelle_d_acheminement": "SOUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.67042009651, + 48.4670641596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e9c5b6ef1cd60a6e9e1191e1e493c60e85538c2", + "fields": { + "code_commune_insee": "76692", + "nom_de_la_commune": "THIOUVILLE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.6878940847, + 0.627618388941 + ], + "libelle_d_acheminement": "THIOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.627618388941, + 49.6878940847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c8932475fd2f93c509aa4071b74245207e4ef60", + "fields": { + "code_commune_insee": "53269", + "nom_de_la_commune": "VAUTORTE", + "code_postal": "53500", + "coordonnees_gps": [ + 48.2983458845, + -0.823100560436 + ], + "libelle_d_acheminement": "VAUTORTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.823100560436, + 48.2983458845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eb1c619bf357432f5fe937c9189cc4e7744f607", + "fields": { + "code_commune_insee": "76703", + "nom_de_la_commune": "TOUFFREVILLE SUR EU", + "code_postal": "76910", + "coordonnees_gps": [ + 49.9919570086, + 1.32074809461 + ], + "libelle_d_acheminement": "TOUFFREVILLE SUR EU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32074809461, + 49.9919570086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2aacf26555ebada8f828dc1e5a61fd9d4b0fbd9", + "fields": { + "code_commune_insee": "53276", + "nom_de_la_commune": "VOUTRE", + "code_postal": "53600", + "coordonnees_gps": [ + 48.1374251351, + -0.29251688071 + ], + "libelle_d_acheminement": "VOUTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29251688071, + 48.1374251351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85b9fc6edd2aca2b5744b16ca5c6bf19077b4906", + "fields": { + "code_commune_insee": "76707", + "nom_de_la_commune": "TOURVILLE SUR ARQUES", + "code_postal": "76550", + "coordonnees_gps": [ + 49.8597127895, + 1.09318958112 + ], + "libelle_d_acheminement": "TOURVILLE SUR ARQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09318958112, + 49.8597127895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f01f22b61dced0fcd5c8e6e53e69ef6e86d7b07", + "fields": { + "code_commune_insee": "54001", + "nom_de_la_commune": "ABAUCOURT", + "code_postal": "54610", + "coordonnees_gps": [ + 48.8928445916, + 6.26559712571 + ], + "libelle_d_acheminement": "ABAUCOURT SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26559712571, + 48.8928445916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35e25911568d9d7a73b11e20ef79c15f068ff16a", + "fields": { + "code_commune_insee": "76709", + "nom_de_la_commune": "LE TRAIT", + "code_postal": "76580", + "coordonnees_gps": [ + 49.4842765452, + 0.81921057836 + ], + "libelle_d_acheminement": "LE TRAIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81921057836, + 49.4842765452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50e048bb7e74cf46a2058241be5aaffe2533b7f0", + "fields": { + "code_commune_insee": "54010", + "nom_de_la_commune": "ALLAMPS", + "code_postal": "54112", + "coordonnees_gps": [ + 48.548374875, + 5.81464831473 + ], + "libelle_d_acheminement": "ALLAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81464831473, + 48.548374875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bf8e954548f9517e11131bb37317ffef5664612", + "fields": { + "code_commune_insee": "76712", + "nom_de_la_commune": "LA TRINITE DU MONT", + "code_postal": "76170", + "coordonnees_gps": [ + 49.5455789044, + 0.557898876882 + ], + "libelle_d_acheminement": "LA TRINITE DU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.557898876882, + 49.5455789044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12e608219135653ec6cda397b3960dd03d549672", + "fields": { + "code_commune_insee": "54023", + "nom_de_la_commune": "ARRACOURT", + "code_postal": "54370", + "coordonnees_gps": [ + 48.7246216504, + 6.53304766529 + ], + "libelle_d_acheminement": "ARRACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53304766529, + 48.7246216504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23debdf7c25d5c9ddd24557cab42e065ec788f2e", + "fields": { + "code_commune_insee": "76715", + "nom_de_la_commune": "TROUVILLE", + "code_postal": "76210", + "coordonnees_gps": [ + 49.584302439, + 0.60043974665 + ], + "libelle_d_acheminement": "TROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.60043974665, + 49.584302439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a61ae1ab834be386d4ed19538c2ba9ea5797e3b4", + "fields": { + "code_commune_insee": "54026", + "nom_de_la_commune": "ATHIENVILLE", + "code_postal": "54370", + "coordonnees_gps": [ + 48.7174707236, + 6.48605238169 + ], + "libelle_d_acheminement": "ATHIENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48605238169, + 48.7174707236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b28979ce8cd42fcc80f2509e96a89ee5ea797d25", + "fields": { + "code_commune_insee": "76720", + "nom_de_la_commune": "VARENGEVILLE SUR MER", + "code_postal": "76119", + "coordonnees_gps": [ + 49.9033508402, + 0.996096920995 + ], + "libelle_d_acheminement": "VARENGEVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.996096920995, + 49.9033508402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56e7654b0e39b87e76c594c6b17099286992d49b", + "fields": { + "code_commune_insee": "54030", + "nom_de_la_commune": "AUTREPIERRE", + "code_postal": "54450", + "coordonnees_gps": [ + 48.60801728, + 6.79797382207 + ], + "libelle_d_acheminement": "AUTREPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79797382207, + 48.60801728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "145819dcefa555b689ffed5e182e067c009c4897", + "fields": { + "code_commune_insee": "76744", + "nom_de_la_commune": "VILLERS SOUS FOUCARMONT", + "code_postal": "76340", + "coordonnees_gps": [ + 49.8254730877, + 1.55839902863 + ], + "libelle_d_acheminement": "VILLERS SOUS FOUCARMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55839902863, + 49.8254730877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b854a0f79742b2c6b6611efc03d2d67eae23c716", + "fields": { + "code_commune_insee": "54032", + "nom_de_la_commune": "AUTREY", + "code_postal": "54160", + "coordonnees_gps": [ + 48.5315476318, + 6.12732307982 + ], + "libelle_d_acheminement": "AUTREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12732307982, + 48.5315476318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5c8fd248bbf31407235d03278aec02350426780", + "fields": { + "code_commune_insee": "76748", + "nom_de_la_commune": "VITTEFLEUR", + "code_postal": "76450", + "coordonnees_gps": [ + 49.8138689184, + 0.637304764748 + ], + "libelle_d_acheminement": "VITTEFLEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.637304764748, + 49.8138689184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f22c17eff269430aa2fa1d31ab936bd749bb815", + "fields": { + "code_commune_insee": "54033", + "nom_de_la_commune": "AVILLERS", + "code_postal": "54490", + "coordonnees_gps": [ + 49.3225310079, + 5.73813667687 + ], + "libelle_d_acheminement": "AVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73813667687, + 49.3225310079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4126de30584e198f874d07d56273828d477fed55", + "fields": { + "ligne_5": "YPREVILLE", + "code_commune_insee": "76755", + "libelle_d_acheminement": "YPREVILLE BIVILLE", + "code_postal": "76540", + "nom_de_la_commune": "YPREVILLE BIVILLE", + "coordonnees_gps": [ + 49.6944640581, + 0.530994381028 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.530994381028, + 49.6944640581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "323be1fa3e0791c00bba7ef93c3cea874500aa52", + "fields": { + "code_commune_insee": "54036", + "nom_de_la_commune": "AVRIL", + "code_postal": "54150", + "coordonnees_gps": [ + 49.2941688536, + 5.96776937418 + ], + "libelle_d_acheminement": "AVRIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96776937418, + 49.2941688536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b3a8ef92b58378964b4abd03a1d629389f71fd2", + "fields": { + "code_commune_insee": "76757", + "nom_de_la_commune": "YVECRIQUE", + "code_postal": "76560", + "coordonnees_gps": [ + 49.6892609326, + 0.807122350958 + ], + "libelle_d_acheminement": "YVECRIQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.807122350958, + 49.6892609326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ece5af2834297a2d9a792e9276a3decf1dfed8c9", + "fields": { + "ligne_5": "CRIVILLER", + "code_commune_insee": "54039", + "libelle_d_acheminement": "BACCARAT", + "code_postal": "54120", + "nom_de_la_commune": "BACCARAT", + "coordonnees_gps": [ + 48.4499656424, + 6.74057641633 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74057641633, + 48.4499656424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "153a441ff6c341ce73d0669deb345df0d54ac2e4", + "fields": { + "code_commune_insee": "77005", + "nom_de_la_commune": "ANNET SUR MARNE", + "code_postal": "77410", + "coordonnees_gps": [ + 48.9223335323, + 2.70854622393 + ], + "libelle_d_acheminement": "ANNET SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70854622393, + 48.9223335323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7335727ef66c3452b35fc18f277517925dadc291", + "fields": { + "code_commune_insee": "54049", + "nom_de_la_commune": "BASLIEUX", + "code_postal": "54620", + "coordonnees_gps": [ + 49.4380044151, + 5.75072929196 + ], + "libelle_d_acheminement": "BASLIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75072929196, + 49.4380044151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "532801f2fac5f1ccccc064f6c82ee536455d0168", + "fields": { + "code_commune_insee": "77006", + "nom_de_la_commune": "ARBONNE LA FORET", + "code_postal": "77630", + "coordonnees_gps": [ + 48.4103383904, + 2.5610975271 + ], + "libelle_d_acheminement": "ARBONNE LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5610975271, + 48.4103383904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecea46481836528039156d201ba009e62951dad0", + "fields": { + "code_commune_insee": "54056", + "nom_de_la_commune": "BAZAILLES", + "code_postal": "54620", + "coordonnees_gps": [ + 49.4100137123, + 5.76596330618 + ], + "libelle_d_acheminement": "BAZAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76596330618, + 49.4100137123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad6b31eb20aba4e04d2f8e4dcd0ccfcbf52cc8a9", + "fields": { + "code_commune_insee": "77008", + "nom_de_la_commune": "ARMENTIERES EN BRIE", + "code_postal": "77440", + "coordonnees_gps": [ + 48.9805568845, + 3.01556654649 + ], + "libelle_d_acheminement": "ARMENTIERES EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01556654649, + 48.9805568845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "835db2098625bdb6fe694341cf231c86b544f76a", + "fields": { + "ligne_5": "SERRIERES", + "code_commune_insee": "54059", + "libelle_d_acheminement": "BELLEAU", + "code_postal": "54610", + "nom_de_la_commune": "BELLEAU", + "coordonnees_gps": [ + 48.8487345093, + 6.18702961708 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18702961708, + 48.8487345093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52443443637115a0c5e8c4d502f8c7f687b1e2ac", + "fields": { + "ligne_5": "OZOUER LE REPOS", + "code_commune_insee": "77010", + "libelle_d_acheminement": "AUBEPIERRE OZOUER LE REPOS", + "code_postal": "77720", + "nom_de_la_commune": "AUBEPIERRE OZOUER LE REPOS", + "coordonnees_gps": [ + 48.620275445, + 2.90287523402 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90287523402, + 48.620275445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c573e186af190f3e05dc82ea2ad9b9ecaacc8094", + "fields": { + "code_commune_insee": "54061", + "nom_de_la_commune": "BENAMENIL", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5644531096, + 6.66195339245 + ], + "libelle_d_acheminement": "BENAMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66195339245, + 48.5644531096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6660ae318478d7acccedaed8350095d77a212c56", + "fields": { + "code_commune_insee": "77019", + "nom_de_la_commune": "BALLOY", + "code_postal": "77118", + "coordonnees_gps": [ + 48.3968757624, + 3.15136324376 + ], + "libelle_d_acheminement": "BALLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15136324376, + 48.3968757624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f85591f24497c355d90214c23cd0982613e3f25e", + "fields": { + "code_commune_insee": "54063", + "nom_de_la_commune": "BERNECOURT", + "code_postal": "54470", + "coordonnees_gps": [ + 48.8511844853, + 5.84154231501 + ], + "libelle_d_acheminement": "BERNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84154231501, + 48.8511844853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0990b8b7455133f495a9404d760b79c180da0c7b", + "fields": { + "ligne_5": "VILLEGAGNON", + "code_commune_insee": "77020", + "libelle_d_acheminement": "BANNOST VILLEGAGNON", + "code_postal": "77970", + "nom_de_la_commune": "BANNOST VILLEGAGNON", + "coordonnees_gps": [ + 48.6753809899, + 3.19190655288 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19190655288, + 48.6753809899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0afc1166c8cabef30446436cb4db40ef6db6d16", + "fields": { + "code_commune_insee": "54073", + "nom_de_la_commune": "BICQUELEY", + "code_postal": "54200", + "coordonnees_gps": [ + 48.6236921452, + 5.92521609903 + ], + "libelle_d_acheminement": "BICQUELEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92521609903, + 48.6236921452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5be8dbbcb867b2a984de5356e415fcd9f89be62b", + "fields": { + "code_commune_insee": "77022", + "nom_de_la_commune": "BARBIZON", + "code_postal": "77630", + "coordonnees_gps": [ + 48.4485166396, + 2.60051335634 + ], + "libelle_d_acheminement": "BARBIZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60051335634, + 48.4485166396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "441b688a93d90b33465b6aa69d70c357d1505945", + "fields": { + "code_commune_insee": "54078", + "nom_de_la_commune": "BLEMEREY", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5821365938, + 6.73701286982 + ], + "libelle_d_acheminement": "BLEMEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73701286982, + 48.5821365938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "148b41804549f5f39eb82a8704d56aeaec8a0bde", + "fields": { + "code_commune_insee": "77025", + "nom_de_la_commune": "BAZOCHES LES BRAY", + "code_postal": "77118", + "coordonnees_gps": [ + 48.3983722929, + 3.19261811911 + ], + "libelle_d_acheminement": "BAZOCHES LES BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19261811911, + 48.3983722929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6385cd834b55b02b30657eb5c59cd23dde52351b", + "fields": { + "code_commune_insee": "54083", + "nom_de_la_commune": "BONVILLER", + "code_postal": "54300", + "coordonnees_gps": [ + 48.62740859, + 6.49547156004 + ], + "libelle_d_acheminement": "BONVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49547156004, + 48.62740859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c4d259749bbac155e457ea2f9dd508601bfdec8", + "fields": { + "code_commune_insee": "77027", + "nom_de_la_commune": "BEAUMONT DU GATINAIS", + "code_postal": "77890", + "coordonnees_gps": [ + 48.1407704243, + 2.4920346913 + ], + "libelle_d_acheminement": "BEAUMONT DU GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4920346913, + 48.1407704243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4c01eba6a837d9ad096e57857f22847af7867c8", + "fields": { + "code_commune_insee": "54084", + "nom_de_la_commune": "MONT BONVILLERS", + "code_postal": "54111", + "coordonnees_gps": [ + 49.3268467637, + 5.84287018832 + ], + "libelle_d_acheminement": "MONT BONVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84287018832, + 49.3268467637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fdc13aa2948f987420930d72788846b516a051e", + "fields": { + "ligne_5": "VILBERT", + "code_commune_insee": "77031", + "libelle_d_acheminement": "BERNAY VILBERT", + "code_postal": "77540", + "nom_de_la_commune": "BERNAY VILBERT", + "coordonnees_gps": [ + 48.675289546, + 2.92952115165 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92952115165, + 48.675289546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "891c8ea8626a141deeaac5c3c88b35053b15e9cf", + "fields": { + "code_commune_insee": "54086", + "nom_de_la_commune": "BOUCQ", + "code_postal": "54200", + "coordonnees_gps": [ + 48.7548905415, + 5.75734618007 + ], + "libelle_d_acheminement": "BOUCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75734618007, + 48.7548905415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7280dc7f683b186e087e91d8d5345b9a9576641", + "fields": { + "code_commune_insee": "77035", + "nom_de_la_commune": "BLENNES", + "code_postal": "77940", + "coordonnees_gps": [ + 48.2449362017, + 3.01197543789 + ], + "libelle_d_acheminement": "BLENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01197543789, + 48.2449362017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23640c37b8464b50e6d29290f4ca57f717fdff5f", + "fields": { + "code_commune_insee": "54094", + "nom_de_la_commune": "BRALLEVILLE", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4091219312, + 6.19227832829 + ], + "libelle_d_acheminement": "BRALLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19227832829, + 48.4091219312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfedd79f7752f2d1bb05bc5785b82689c67e779b", + "fields": { + "code_commune_insee": "77038", + "nom_de_la_commune": "BOISSETTES", + "code_postal": "77350", + "coordonnees_gps": [ + 48.523493031, + 2.6146358615 + ], + "libelle_d_acheminement": "BOISSETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6146358615, + 48.523493031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed3c75cce061423197e753809bf1ca0f92be7472", + "fields": { + "code_commune_insee": "54100", + "nom_de_la_commune": "BRIN SUR SEILLE", + "code_postal": "54280", + "coordonnees_gps": [ + 48.7740484006, + 6.35487375911 + ], + "libelle_d_acheminement": "BRIN SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35487375911, + 48.7740484006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b01e656e1cb8e0f3d3730acf6b1badc7bb1f67a3", + "fields": { + "code_commune_insee": "77044", + "nom_de_la_commune": "BOMBON", + "code_postal": "77720", + "coordonnees_gps": [ + 48.5678399041, + 2.86764154257 + ], + "libelle_d_acheminement": "BOMBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86764154257, + 48.5678399041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1afcb4ddd8ddc0cc02674a21d7a24d912061a4e3", + "fields": { + "code_commune_insee": "54106", + "nom_de_la_commune": "BURES", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6982412473, + 6.57054339464 + ], + "libelle_d_acheminement": "BURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57054339464, + 48.6982412473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "471ea7ab1dd34951e79c28911685fe7c8743e760", + "fields": { + "code_commune_insee": "77046", + "nom_de_la_commune": "BOULANCOURT", + "code_postal": "77760", + "coordonnees_gps": [ + 48.2614508893, + 2.45112404829 + ], + "libelle_d_acheminement": "BOULANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45112404829, + 48.2614508893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab9e41617ee8e786aceb1969c592c33a585b5734", + "fields": { + "code_commune_insee": "54107", + "nom_de_la_commune": "BURIVILLE", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5370380722, + 6.68839442053 + ], + "libelle_d_acheminement": "BURIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68839442053, + 48.5370380722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d3286e945d67cc6400dd4b9cd3b959d45bdb361", + "fields": { + "code_commune_insee": "77049", + "nom_de_la_commune": "BOUTIGNY", + "code_postal": "77470", + "coordonnees_gps": [ + 48.9127981727, + 2.9292515848 + ], + "libelle_d_acheminement": "BOUTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9292515848, + 48.9127981727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49bddeb080c66bd36fbb25d5c09628e042209c29", + "fields": { + "code_commune_insee": "54109", + "nom_de_la_commune": "CEINTREY", + "code_postal": "54134", + "coordonnees_gps": [ + 48.5333833934, + 6.17792744649 + ], + "libelle_d_acheminement": "CEINTREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17792744649, + 48.5333833934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c17ce06f3fcde82628dc09f24a44dbd47b5fb998", + "fields": { + "code_commune_insee": "77057", + "nom_de_la_commune": "BUSSIERES", + "code_postal": "77750", + "coordonnees_gps": [ + 48.9266351593, + 3.23747220268 + ], + "libelle_d_acheminement": "BUSSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23747220268, + 48.9266351593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcc9be62ac9628ae974c7263530e85207b0fe7ea", + "fields": { + "code_commune_insee": "54117", + "nom_de_la_commune": "CHAOUILLEY", + "code_postal": "54330", + "coordonnees_gps": [ + 48.4409660806, + 6.0668878378 + ], + "libelle_d_acheminement": "CHAOUILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0668878378, + 48.4409660806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1c6488a5dd581bfa8e18f7e2ee5653332bbe7bb", + "fields": { + "code_commune_insee": "77060", + "nom_de_la_commune": "BUTHIERS", + "code_postal": "77760", + "coordonnees_gps": [ + 48.2869147685, + 2.45366687237 + ], + "libelle_d_acheminement": "BUTHIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45366687237, + 48.2869147685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e01b05b34769c8673c4ed4dbe9426b67d8e052d", + "fields": { + "code_commune_insee": "54122", + "nom_de_la_commune": "CHAUDENEY SUR MOSELLE", + "code_postal": "54200", + "coordonnees_gps": [ + 48.6549674771, + 5.92432019683 + ], + "libelle_d_acheminement": "CHAUDENEY SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92432019683, + 48.6549674771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dfffff8a931d1918e693d4c1a8f15f6041252bb", + "fields": { + "code_commune_insee": "77062", + "nom_de_la_commune": "CARNETIN", + "code_postal": "77400", + "coordonnees_gps": [ + 48.9042186439, + 2.69939855845 + ], + "libelle_d_acheminement": "CARNETIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69939855845, + 48.9042186439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75aee04d2971638b30466e3433c7f0d7ee29ea69", + "fields": { + "code_commune_insee": "54126", + "nom_de_la_commune": "CHENICOURT", + "code_postal": "54610", + "coordonnees_gps": [ + 48.8581632637, + 6.28336506418 + ], + "libelle_d_acheminement": "CHENICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28336506418, + 48.8581632637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc6052d813f049508aa39f141215db7d8fcf9d70", + "fields": { + "code_commune_insee": "77065", + "nom_de_la_commune": "CELY", + "code_postal": "77930", + "coordonnees_gps": [ + 48.4599875595, + 2.52531326233 + ], + "libelle_d_acheminement": "CELY EN BIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52531326233, + 48.4599875595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bba4143b3b41149c6388ec9d4d1f26d208017823", + "fields": { + "ligne_5": "FLABEUVILLE", + "code_commune_insee": "54134", + "libelle_d_acheminement": "COLMEY", + "code_postal": "54260", + "nom_de_la_commune": "COLMEY", + "coordonnees_gps": [ + 49.4630021306, + 5.55236900348 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55236900348, + 49.4630021306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f88f5043a59c994124c2931fc232a63e92868f12", + "fields": { + "code_commune_insee": "77072", + "nom_de_la_commune": "CHALAUTRE LA GRANDE", + "code_postal": "77171", + "coordonnees_gps": [ + 48.5497596111, + 3.44637852602 + ], + "libelle_d_acheminement": "CHALAUTRE LA GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44637852602, + 48.5497596111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8417a7113e2b7a134aaa6d07f3520ba06e05ea7", + "fields": { + "code_commune_insee": "54143", + "nom_de_la_commune": "CREPEY", + "code_postal": "54170", + "coordonnees_gps": [ + 48.528093841, + 5.96194835495 + ], + "libelle_d_acheminement": "CREPEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96194835495, + 48.528093841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79f90d8a9d73ca26fb07a379767b1c56089a5d1b", + "fields": { + "code_commune_insee": "77073", + "nom_de_la_commune": "CHALAUTRE LA PETITE", + "code_postal": "77160", + "coordonnees_gps": [ + 48.5273173873, + 3.31527496472 + ], + "libelle_d_acheminement": "CHALAUTRE LA PETITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31527496472, + 48.5273173873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e31f4c25288ed6434a021c553aba723ecd7b930", + "fields": { + "code_commune_insee": "54155", + "nom_de_la_commune": "DEUXVILLE", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6184739539, + 6.45812112896 + ], + "libelle_d_acheminement": "DEUXVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45812112896, + 48.6184739539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8f721b5c214183b93b23a4d8ed6e99561adce50", + "fields": { + "code_commune_insee": "77075", + "nom_de_la_commune": "CHALIFERT", + "code_postal": "77144", + "coordonnees_gps": [ + 48.8952645645, + 2.77324024955 + ], + "libelle_d_acheminement": "CHALIFERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77324024955, + 48.8952645645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0bb70c97c9ad09daa2a511ebc43186046aa9e95", + "fields": { + "code_commune_insee": "54158", + "nom_de_la_commune": "DOLCOURT", + "code_postal": "54170", + "coordonnees_gps": [ + 48.4903130398, + 5.97835316985 + ], + "libelle_d_acheminement": "DOLCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97835316985, + 48.4903130398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "951f60d52f956b05471499a3fbadc79b60cc2abb", + "fields": { + "code_commune_insee": "77077", + "nom_de_la_commune": "CHAMBRY", + "code_postal": "77910", + "coordonnees_gps": [ + 48.9985355569, + 2.89422161914 + ], + "libelle_d_acheminement": "CHAMBRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89422161914, + 48.9985355569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11902bbe58c116fa5b9d7470213572dc17fac95c", + "fields": { + "code_commune_insee": "54166", + "nom_de_la_commune": "DOMMARTIN LA CHAUSSEE", + "code_postal": "54470", + "coordonnees_gps": [ + 49.0108189344, + 5.86625964379 + ], + "libelle_d_acheminement": "DOMMARTIN LA CHAUSSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86625964379, + 49.0108189344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "867c3c1f64009c7f08e8e7f83c029c38cc5fa4cb", + "fields": { + "code_commune_insee": "77078", + "nom_de_la_commune": "CHAMIGNY", + "code_postal": "77260", + "coordonnees_gps": [ + 48.9851781012, + 3.14218296932 + ], + "libelle_d_acheminement": "CHAMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14218296932, + 48.9851781012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "840c3fc9ab7233eec8e38b228311cd9af87c40c5", + "fields": { + "code_commune_insee": "54175", + "nom_de_la_commune": "EINVAUX", + "code_postal": "54360", + "coordonnees_gps": [ + 48.4930960422, + 6.39330940695 + ], + "libelle_d_acheminement": "EINVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39330940695, + 48.4930960422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faae3fbf6e39655b745057a755ccf7e808b2bdf5", + "fields": { + "code_commune_insee": "77079", + "nom_de_la_commune": "CHAMPAGNE SUR SEINE", + "code_postal": "77430", + "coordonnees_gps": [ + 48.4093568314, + 2.8079339272 + ], + "libelle_d_acheminement": "CHAMPAGNE SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8079339272, + 48.4093568314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e8ee7a62c57b02b64e4b5f1e88da02695ee56c8", + "fields": { + "code_commune_insee": "54185", + "nom_de_la_commune": "ETREVAL", + "code_postal": "54330", + "coordonnees_gps": [ + 48.4565833814, + 6.05321514252 + ], + "libelle_d_acheminement": "ETREVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05321514252, + 48.4565833814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ed6853bb19dc5bc6bcfbdd48a9f662f86f683d", + "fields": { + "code_commune_insee": "77084", + "nom_de_la_commune": "CHANGIS SUR MARNE", + "code_postal": "77660", + "coordonnees_gps": [ + 48.9663532581, + 3.02513385587 + ], + "libelle_d_acheminement": "CHANGIS SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02513385587, + 48.9663532581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ae26fdfc41b50b5c38124efc67f509c48bc2044", + "fields": { + "code_commune_insee": "54187", + "nom_de_la_commune": "EUVEZIN", + "code_postal": "54470", + "coordonnees_gps": [ + 48.9198099623, + 5.8592491591 + ], + "libelle_d_acheminement": "EUVEZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8592491591, + 48.9198099623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b08541b166224dcebecfec3006db2a4c3ac6bea4", + "fields": { + "code_commune_insee": "77090", + "nom_de_la_commune": "LA CHAPELLE ST SULPICE", + "code_postal": "77160", + "coordonnees_gps": [ + 48.5577472984, + 3.17990030417 + ], + "libelle_d_acheminement": "LA CHAPELLE ST SULPICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17990030417, + 48.5577472984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9486c711770c80d3ec0f59b8540948d0d695f048", + "fields": { + "code_commune_insee": "54192", + "nom_de_la_commune": "FERRIERES", + "code_postal": "54210", + "coordonnees_gps": [ + 48.5531631357, + 6.2948206682 + ], + "libelle_d_acheminement": "FERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2948206682, + 48.5531631357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba9e831957efc45baa62cae5a74059e61dfe100d", + "fields": { + "code_commune_insee": "77106", + "nom_de_la_commune": "CHAUFFRY", + "code_postal": "77169", + "coordonnees_gps": [ + 48.8218818253, + 3.18099765766 + ], + "libelle_d_acheminement": "CHAUFFRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18099765766, + 48.8218818253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30a36e0eeb7f79e2dedab868de6e11481d02850a", + "fields": { + "code_commune_insee": "54194", + "nom_de_la_commune": "FILLIERES", + "code_postal": "54560", + "coordonnees_gps": [ + 49.4117617368, + 5.84226468429 + ], + "libelle_d_acheminement": "FILLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84226468429, + 49.4117617368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7386a6a309395d6f21c8270e893d6d08890536f", + "fields": { + "code_commune_insee": "77107", + "nom_de_la_commune": "CHAUMES EN BRIE", + "code_postal": "77390", + "coordonnees_gps": [ + 48.6671544898, + 2.84491273965 + ], + "libelle_d_acheminement": "CHAUMES EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84491273965, + 48.6671544898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14f6ba9f3fd48dc2eeaa31b3611efb142b4aea7e", + "fields": { + "code_commune_insee": "54199", + "nom_de_la_commune": "FLIN", + "code_postal": "54122", + "coordonnees_gps": [ + 48.5030439882, + 6.65785821113 + ], + "libelle_d_acheminement": "FLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65785821113, + 48.5030439882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbd13f3cfbd63dc3dc607b74ed7230b88db21001", + "fields": { + "ligne_5": "CUCHARMOY", + "code_commune_insee": "77109", + "libelle_d_acheminement": "CHENOISE CUCHARMOY", + "code_postal": "77160", + "nom_de_la_commune": "CHENOISE CUCHARMOY", + "coordonnees_gps": [ + 48.6221074853, + 3.19218767904 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19218767904, + 48.6221074853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97c8c5c25cd45e9df3bfc57f38dd4e1b6631a4dd", + "fields": { + "code_commune_insee": "54205", + "nom_de_la_commune": "FOUG", + "code_postal": "54570", + "coordonnees_gps": [ + 48.6734425678, + 5.78090769084 + ], + "libelle_d_acheminement": "FOUG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78090769084, + 48.6734425678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23b5b33a1ffc01f3f0a65917aba756792bafa3c3", + "fields": { + "code_commune_insee": "77118", + "nom_de_la_commune": "CLAYE SOUILLY", + "code_postal": "77410", + "coordonnees_gps": [ + 48.9429697515, + 2.67523211808 + ], + "libelle_d_acheminement": "CLAYE SOUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67523211808, + 48.9429697515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2747896d050c59d11220e0b51aacf1b92d2082d9", + "fields": { + "code_commune_insee": "54206", + "nom_de_la_commune": "FRAIMBOIS", + "code_postal": "54300", + "coordonnees_gps": [ + 48.525553895, + 6.54242224099 + ], + "libelle_d_acheminement": "FRAIMBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54242224099, + 48.525553895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfded14c71d34ce4982ca56638b852a646d29408", + "fields": { + "ligne_5": "SOUILLY", + "code_commune_insee": "77118", + "libelle_d_acheminement": "CLAYE SOUILLY", + "code_postal": "77410", + "nom_de_la_commune": "CLAYE SOUILLY", + "coordonnees_gps": [ + 48.9429697515, + 2.67523211808 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67523211808, + 48.9429697515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4248b7880e152057d9d0bac9065e6472fd22d783", + "fields": { + "code_commune_insee": "54208", + "nom_de_la_commune": "FRANCHEVILLE", + "code_postal": "54200", + "coordonnees_gps": [ + 48.7410673805, + 5.92647201254 + ], + "libelle_d_acheminement": "FRANCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92647201254, + 48.7410673805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba07c493f6c16957ea11e12171cbb528a99ddb84", + "fields": { + "code_commune_insee": "77119", + "nom_de_la_commune": "CLOS FONTAINE", + "code_postal": "77370", + "coordonnees_gps": [ + 48.6035279611, + 3.01423593373 + ], + "libelle_d_acheminement": "CLOS FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01423593373, + 48.6035279611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59fcf260c4b62d35c39da59c0f90879af507c73a", + "fields": { + "code_commune_insee": "54214", + "nom_de_la_commune": "FROLOIS", + "code_postal": "54160", + "coordonnees_gps": [ + 48.5721064112, + 6.12655884356 + ], + "libelle_d_acheminement": "FROLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12655884356, + 48.5721064112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fd65709279fea9f2068a652e0c8e137b4afaddb", + "fields": { + "code_commune_insee": "77125", + "nom_de_la_commune": "CONDE STE LIBIAIRE", + "code_postal": "77450", + "coordonnees_gps": [ + 48.8985882759, + 2.83639912671 + ], + "libelle_d_acheminement": "CONDE STE LIBIAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83639912671, + 48.8985882759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e62c521e580e3a9fb1e612516c2f066c3c09a1d2", + "fields": { + "code_commune_insee": "54225", + "nom_de_la_commune": "GEZONCOURT", + "code_postal": "54380", + "coordonnees_gps": [ + 48.8427635602, + 5.98578970414 + ], + "libelle_d_acheminement": "GEZONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98578970414, + 48.8427635602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66e2e1134943c2d43dcce8fd81aa19f4725c8a50", + "fields": { + "code_commune_insee": "77130", + "nom_de_la_commune": "COULOMMES", + "code_postal": "77580", + "coordonnees_gps": [ + 48.8919104938, + 2.92942534432 + ], + "libelle_d_acheminement": "COULOMMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92942534432, + 48.8919104938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec378b52edba1b23b6237459d3234727346e1b6b", + "fields": { + "code_commune_insee": "54226", + "nom_de_la_commune": "GIBEAUMEIX", + "code_postal": "54112", + "coordonnees_gps": [ + 48.5907333488, + 5.74299833726 + ], + "libelle_d_acheminement": "GIBEAUMEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74299833726, + 48.5907333488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7deaf65c09784ca5d67b7bb71f595bf8a2b8657", + "fields": { + "code_commune_insee": "77134", + "nom_de_la_commune": "COURCHAMP", + "code_postal": "77560", + "coordonnees_gps": [ + 48.6425226208, + 3.28982875028 + ], + "libelle_d_acheminement": "COURCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28982875028, + 48.6425226208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e23bcc387caca66836cf136e36bf0629c413dc56", + "fields": { + "code_commune_insee": "54237", + "nom_de_la_commune": "GRIMONVILLER", + "code_postal": "54115", + "coordonnees_gps": [ + 48.380828765, + 6.00797124692 + ], + "libelle_d_acheminement": "GRIMONVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00797124692, + 48.380828765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db984494fe601ee2a8789f2961dcfb9e3d52f9d0", + "fields": { + "code_commune_insee": "77138", + "nom_de_la_commune": "COURTOMER", + "code_postal": "77390", + "coordonnees_gps": [ + 48.6580781598, + 2.89624103762 + ], + "libelle_d_acheminement": "COURTOMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89624103762, + 48.6580781598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bce615e4b01aaf1b400ab81fe136bfc63f9db78", + "fields": { + "code_commune_insee": "54240", + "nom_de_la_commune": "GROSROUVRES", + "code_postal": "54470", + "coordonnees_gps": [ + 48.8291215221, + 5.84616523476 + ], + "libelle_d_acheminement": "GROSROUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84616523476, + 48.8291215221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4fc81b5de95341d4b01a1bfd302af1b9692a3c7", + "fields": { + "code_commune_insee": "77142", + "nom_de_la_commune": "CRECY LA CHAPELLE", + "code_postal": "77580", + "coordonnees_gps": [ + 48.8567446134, + 2.93331153745 + ], + "libelle_d_acheminement": "CRECY LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93331153745, + 48.8567446134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93136a0361decc247ae601d7ae18d6291b4e5091", + "fields": { + "code_commune_insee": "54249", + "nom_de_la_commune": "HANNONVILLE SUZEMONT", + "code_postal": "54800", + "coordonnees_gps": [ + 49.098891613, + 5.83676444356 + ], + "libelle_d_acheminement": "HANNONVILLE SUZEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83676444356, + 49.098891613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ca0282dc8ecf6f373e1fc5168e1e263d06443e5", + "fields": { + "ligne_5": "LA CHAPELLE SUR CRECY", + "code_commune_insee": "77142", + "libelle_d_acheminement": "CRECY LA CHAPELLE", + "code_postal": "77580", + "nom_de_la_commune": "CRECY LA CHAPELLE", + "coordonnees_gps": [ + 48.8567446134, + 2.93331153745 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93331153745, + 48.8567446134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "739d6dd1243c883547ca5abd4b0390b6934c8ae0", + "fields": { + "code_commune_insee": "54250", + "nom_de_la_commune": "HARAUCOURT", + "code_postal": "54110", + "coordonnees_gps": [ + 48.6614357963, + 6.36110636976 + ], + "libelle_d_acheminement": "HARAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36110636976, + 48.6614357963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78647c9fccff26fc522d4ca7b4ac2f39264d1eef", + "fields": { + "code_commune_insee": "77148", + "nom_de_la_commune": "CROUY SUR OURCQ", + "code_postal": "77840", + "coordonnees_gps": [ + 49.0867480473, + 3.07964633492 + ], + "libelle_d_acheminement": "CROUY SUR OURCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07964633492, + 49.0867480473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8449f0e118b2bec3d7584174db39c99a11fc2acb", + "fields": { + "code_commune_insee": "54252", + "nom_de_la_commune": "HAROUE", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4739852791, + 6.18771142507 + ], + "libelle_d_acheminement": "HAROUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18771142507, + 48.4739852791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0b23a99c53dd4c57ea4425d4fe13d868da26f70", + "fields": { + "code_commune_insee": "77157", + "nom_de_la_commune": "DHUISY", + "code_postal": "77440", + "coordonnees_gps": [ + 49.0357759838, + 3.16433496105 + ], + "libelle_d_acheminement": "DHUISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16433496105, + 49.0357759838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ed92b60c56bc75fd896a58a244d2af25573a36a", + "fields": { + "code_commune_insee": "54256", + "nom_de_la_commune": "HAUSSONVILLE", + "code_postal": "54290", + "coordonnees_gps": [ + 48.528593243, + 6.32257433396 + ], + "libelle_d_acheminement": "HAUSSONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32257433396, + 48.528593243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c8edacfb31d8a1955a693098f762ae916963d7f", + "fields": { + "code_commune_insee": "77164", + "nom_de_la_commune": "ECHOUBOULAINS", + "code_postal": "77830", + "coordonnees_gps": [ + 48.4637199643, + 2.9295993076 + ], + "libelle_d_acheminement": "ECHOUBOULAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9295993076, + 48.4637199643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "838db025f0fb963c3b370df07d9ac2bc3abb8eae", + "fields": { + "code_commune_insee": "54260", + "nom_de_la_commune": "HERIMENIL", + "code_postal": "54300", + "coordonnees_gps": [ + 48.5507958672, + 6.50819869804 + ], + "libelle_d_acheminement": "HERIMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50819869804, + 48.5507958672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3447e67863dfb8e25d89900d53fc684d2c18fd6b", + "fields": { + "code_commune_insee": "77165", + "nom_de_la_commune": "LES ECRENNES", + "code_postal": "77820", + "coordonnees_gps": [ + 48.4956746939, + 2.8755286018 + ], + "libelle_d_acheminement": "LES ECRENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8755286018, + 48.4956746939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ba7cbf99010fff3dc8487a0648f5d92c9549d14", + "fields": { + "code_commune_insee": "54262", + "nom_de_la_commune": "HOEVILLE", + "code_postal": "54370", + "coordonnees_gps": [ + 48.7165627893, + 6.43301011258 + ], + "libelle_d_acheminement": "HOEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43301011258, + 48.7165627893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba07f276a2701149c8acf07dee37a100e2a46af9", + "fields": { + "code_commune_insee": "77174", + "nom_de_la_commune": "EVERLY", + "code_postal": "77157", + "coordonnees_gps": [ + 48.4602932041, + 3.2638422634 + ], + "libelle_d_acheminement": "EVERLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2638422634, + 48.4602932041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d999512b5546caa57e91eb170525060833e90710", + "fields": { + "code_commune_insee": "54263", + "nom_de_la_commune": "HOMECOURT", + "code_postal": "54310", + "coordonnees_gps": [ + 49.222479805, + 5.99270563767 + ], + "libelle_d_acheminement": "HOMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99270563767, + 49.222479805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9be7d9121fdac4e26b3d916b44a0beaa2a4e4332", + "fields": { + "code_commune_insee": "77177", + "nom_de_la_commune": "FAVIERES", + "code_postal": "77220", + "coordonnees_gps": [ + 48.7803198731, + 2.76799621912 + ], + "libelle_d_acheminement": "FAVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76799621912, + 48.7803198731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "474d0e24abfc45ff6d1ab8978dd43524ac727bf7", + "fields": { + "code_commune_insee": "54269", + "nom_de_la_commune": "HUDIVILLER", + "code_postal": "54110", + "coordonnees_gps": [ + 48.6000312474, + 6.39073674521 + ], + "libelle_d_acheminement": "HUDIVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39073674521, + 48.6000312474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6319dd88cefa2ca189d8e30fd58fb0096518bfb", + "fields": { + "code_commune_insee": "77180", + "nom_de_la_commune": "FEROLLES ATTILLY", + "code_postal": "77150", + "coordonnees_gps": [ + 48.7335952478, + 2.63893813128 + ], + "libelle_d_acheminement": "FEROLLES ATTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63893813128, + 48.7335952478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4b2cd291949092592d677288c1ec4a67834d1bc", + "fields": { + "code_commune_insee": "54271", + "nom_de_la_commune": "IGNEY", + "code_postal": "54450", + "coordonnees_gps": [ + 48.6323470746, + 6.81983012116 + ], + "libelle_d_acheminement": "IGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81983012116, + 48.6323470746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e774ae463089608edbe64c0d62035ef04edac87", + "fields": { + "code_commune_insee": "77181", + "nom_de_la_commune": "FERRIERES EN BRIE", + "code_postal": "77164", + "coordonnees_gps": [ + 48.8200397561, + 2.70761245584 + ], + "libelle_d_acheminement": "FERRIERES EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70761245584, + 48.8200397561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3fa48db299d7810bc8bb53cbb4c899b2a41d964", + "fields": { + "code_commune_insee": "54273", + "nom_de_la_commune": "JARNY", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1495784035, + 5.88121522823 + ], + "libelle_d_acheminement": "JARNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88121522823, + 49.1495784035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02c201cfdebd652a2fe3b9f90908b31239cbe2c1", + "fields": { + "code_commune_insee": "77183", + "nom_de_la_commune": "LA FERTE SOUS JOUARRE", + "code_postal": "77260", + "coordonnees_gps": [ + 48.9540164057, + 3.12762174384 + ], + "libelle_d_acheminement": "LA FERTE SOUS JOUARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12762174384, + 48.9540164057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df382a5a7d18da8f80074eb9a46ba4a2642dd11b", + "fields": { + "code_commune_insee": "54275", + "nom_de_la_commune": "JAULNY", + "code_postal": "54470", + "coordonnees_gps": [ + 48.9667717545, + 5.89278620377 + ], + "libelle_d_acheminement": "JAULNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89278620377, + 48.9667717545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9444eec2c668c9a4c96bfa91d81fffd1f32681e1", + "fields": { + "code_commune_insee": "77186", + "nom_de_la_commune": "FONTAINEBLEAU", + "code_postal": "77300", + "coordonnees_gps": [ + 48.4066856508, + 2.68031396389 + ], + "libelle_d_acheminement": "FONTAINEBLEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68031396389, + 48.4066856508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ea049df8f7b3e46cd1e48e552be7699d4084b67", + "fields": { + "code_commune_insee": "54284", + "nom_de_la_commune": "JOUDREVILLE", + "code_postal": "54490", + "coordonnees_gps": [ + 49.288175052, + 5.77928680152 + ], + "libelle_d_acheminement": "JOUDREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77928680152, + 49.288175052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2184a0d9f2f48e5ff73e964782b6c938909b7c15", + "fields": { + "code_commune_insee": "77187", + "nom_de_la_commune": "FONTAINE FOURCHES", + "code_postal": "77480", + "coordonnees_gps": [ + 48.4120304455, + 3.39431258442 + ], + "libelle_d_acheminement": "FONTAINE FOURCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39431258442, + 48.4120304455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0339d9ec6a0f15a333bf80a3762e0d26be03801b", + "fields": { + "code_commune_insee": "54285", + "nom_de_la_commune": "JUVRECOURT", + "code_postal": "54370", + "coordonnees_gps": [ + 48.7407750765, + 6.56048529163 + ], + "libelle_d_acheminement": "JUVRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56048529163, + 48.7407750765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3668ab12e7dcb80eaf0aab566080c9293ce21cb", + "fields": { + "code_commune_insee": "77193", + "nom_de_la_commune": "FORFRY", + "code_postal": "77165", + "coordonnees_gps": [ + 49.0535919932, + 2.84961058916 + ], + "libelle_d_acheminement": "FORFRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84961058916, + 49.0535919932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc9dec3b17e42ad0fa33120b0962e61d188fae01", + "fields": { + "code_commune_insee": "54286", + "nom_de_la_commune": "LABRY", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1827676063, + 5.87341636269 + ], + "libelle_d_acheminement": "LABRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87341636269, + 49.1827676063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f07047e71857c2fee8cf08d75dad325e30fc520e", + "fields": { + "code_commune_insee": "77196", + "nom_de_la_commune": "FRESNES SUR MARNE", + "code_postal": "77410", + "coordonnees_gps": [ + 48.9418117332, + 2.73978982468 + ], + "libelle_d_acheminement": "FRESNES SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73978982468, + 48.9418117332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2833c76a237419dd5cb091a8f087ca45791bd75", + "fields": { + "code_commune_insee": "54294", + "nom_de_la_commune": "LANDREMONT", + "code_postal": "54380", + "coordonnees_gps": [ + 48.8549774896, + 6.15220892149 + ], + "libelle_d_acheminement": "LANDREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15220892149, + 48.8549774896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61b70ab1235f5e84ac5c03f42e21313d02bdca84", + "fields": { + "code_commune_insee": "77201", + "nom_de_la_commune": "GASTINS", + "code_postal": "77370", + "coordonnees_gps": [ + 48.6267877328, + 3.02021144057 + ], + "libelle_d_acheminement": "GASTINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02021144057, + 48.6267877328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e84c2d3e02a5589a9a81cd78d317356a5054237", + "fields": { + "code_commune_insee": "54296", + "nom_de_la_commune": "LANEUVELOTTE", + "code_postal": "54280", + "coordonnees_gps": [ + 48.7248084973, + 6.30007004295 + ], + "libelle_d_acheminement": "LANEUVELOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30007004295, + 48.7248084973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a74d98811f787512ec3422b5c08976ff5231f78", + "fields": { + "code_commune_insee": "77206", + "nom_de_la_commune": "GIREMOUTIERS", + "code_postal": "77120", + "coordonnees_gps": [ + 48.853040564, + 3.03326151777 + ], + "libelle_d_acheminement": "GIREMOUTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03326151777, + 48.853040564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5783618a4bca4c08c5ff8b3cf7ccd321a7b69e57", + "fields": { + "code_commune_insee": "54300", + "nom_de_la_commune": "LANEUVEVILLE DEVANT NANCY", + "code_postal": "54410", + "coordonnees_gps": [ + 48.6462056113, + 6.24120543129 + ], + "libelle_d_acheminement": "LANEUVEVILLE DEVANT NANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24120543129, + 48.6462056113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abcd132f69e5ba8beff4fdffc02d18bba44762ef", + "fields": { + "code_commune_insee": "77211", + "nom_de_la_commune": "GRANDPUITS BAILLY CARROIS", + "code_postal": "77720", + "coordonnees_gps": [ + 48.5823205697, + 2.97582475865 + ], + "libelle_d_acheminement": "GRANDPUITS BAILLY CARROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97582475865, + 48.5823205697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b9667f3e4b6a80601bf34c134cbf593250d21da", + "fields": { + "ligne_5": "LA MADELEINE", + "code_commune_insee": "54300", + "libelle_d_acheminement": "LANEUVEVILLE DEVANT NANCY", + "code_postal": "54410", + "nom_de_la_commune": "LANEUVEVILLE DEVANT NANCY", + "coordonnees_gps": [ + 48.6462056113, + 6.24120543129 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24120543129, + 48.6462056113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7518c0646aef94bce6e1a606d1684582fca5b9d6", + "fields": { + "code_commune_insee": "77214", + "nom_de_la_commune": "GRESSY", + "code_postal": "77410", + "coordonnees_gps": [ + 48.9650099729, + 2.66440376724 + ], + "libelle_d_acheminement": "GRESSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66440376724, + 48.9650099729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecf08c84acfc585bfccdb788b7d92b843fdb70c8", + "fields": { + "code_commune_insee": "54303", + "nom_de_la_commune": "LARONXE", + "code_postal": "54950", + "coordonnees_gps": [ + 48.5442014247, + 6.59779172365 + ], + "libelle_d_acheminement": "LARONXE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59779172365, + 48.5442014247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7914fd75b5312c9e376546cdbd64de1f279deca", + "fields": { + "code_commune_insee": "77215", + "nom_de_la_commune": "GRETZ ARMAINVILLIERS", + "code_postal": "77220", + "coordonnees_gps": [ + 48.7495328893, + 2.72623578521 + ], + "libelle_d_acheminement": "GRETZ ARMAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72623578521, + 48.7495328893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd341459314450ff85e23493c0ce5934b5abdfec", + "fields": { + "code_commune_insee": "54317", + "nom_de_la_commune": "LIRONVILLE", + "code_postal": "54470", + "coordonnees_gps": [ + 48.867147586, + 5.91217253236 + ], + "libelle_d_acheminement": "LIRONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91217253236, + 48.867147586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "316d7bc3d090139c14cd0ba967fe1b2ee1cc63ca", + "fields": { + "code_commune_insee": "77217", + "nom_de_la_commune": "GRISY SUISNES", + "code_postal": "77166", + "coordonnees_gps": [ + 48.6844503585, + 2.67647246485 + ], + "libelle_d_acheminement": "GRISY SUISNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67647246485, + 48.6844503585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30833b9559bfe725c39de6a894d16318b435d8d3", + "fields": { + "code_commune_insee": "54320", + "nom_de_la_commune": "LOISY", + "code_postal": "54700", + "coordonnees_gps": [ + 48.8672070236, + 6.09844235852 + ], + "libelle_d_acheminement": "LOISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09844235852, + 48.8672070236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "306982cbfecb3c0784353bb4f688e50716c035fa", + "fields": { + "ligne_5": "CHALAUTRE LA REPOSTE", + "code_commune_insee": "77223", + "libelle_d_acheminement": "GURCY LE CHATEL", + "code_postal": "77520", + "nom_de_la_commune": "GURCY LE CHATEL", + "coordonnees_gps": [ + 48.4844716006, + 3.0809062943 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0809062943, + 48.4844716006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b825ae24e144415781e446d38e5a345c49d9cd7", + "fields": { + "ligne_5": "NOERS", + "code_commune_insee": "54322", + "libelle_d_acheminement": "LONGUYON", + "code_postal": "54260", + "nom_de_la_commune": "LONGUYON", + "coordonnees_gps": [ + 49.4583667355, + 5.59176459376 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59176459376, + 49.4583667355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e80263c8b16ec99234fc0a76af7b3b60541ea8e2", + "fields": { + "code_commune_insee": "77230", + "nom_de_la_commune": "ICHY", + "code_postal": "77890", + "coordonnees_gps": [ + 48.2062867777, + 2.54177134265 + ], + "libelle_d_acheminement": "ICHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54177134265, + 48.2062867777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61a8e6161bad6fd80fe016e476d1c5ffad3cffa1", + "fields": { + "code_commune_insee": "54325", + "nom_de_la_commune": "LOROMONTZEY", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4301459071, + 6.36977813562 + ], + "libelle_d_acheminement": "LOROMONTZEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36977813562, + 48.4301459071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07b57cdd9528a5ace23393855f997919815a03d4", + "fields": { + "code_commune_insee": "77236", + "nom_de_la_commune": "JAULNES", + "code_postal": "77480", + "coordonnees_gps": [ + 48.4144765757, + 3.27634735642 + ], + "libelle_d_acheminement": "JAULNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27634735642, + 48.4144765757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e092a2cde36138e9301027bcc9673f01890fcb6", + "fields": { + "code_commune_insee": "54327", + "nom_de_la_commune": "LUCEY", + "code_postal": "54200", + "coordonnees_gps": [ + 48.7225913687, + 5.82885971661 + ], + "libelle_d_acheminement": "LUCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82885971661, + 48.7225913687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19992908b93670d8c06757c53a603694b89be355", + "fields": { + "code_commune_insee": "77238", + "nom_de_la_commune": "JOUARRE", + "code_postal": "77640", + "coordonnees_gps": [ + 48.9025410128, + 3.11280532504 + ], + "libelle_d_acheminement": "JOUARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11280532504, + 48.9025410128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bab7ff557f835085cba4d7efc0a1fbacd15764a", + "fields": { + "code_commune_insee": "54332", + "nom_de_la_commune": "MAIDIERES", + "code_postal": "54700", + "coordonnees_gps": [ + 48.8958716119, + 6.03587896317 + ], + "libelle_d_acheminement": "MAIDIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03587896317, + 48.8958716119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4681e42542d4cfb6000001022f53ab27cae9b4fb", + "fields": { + "code_commune_insee": "77241", + "nom_de_la_commune": "JUILLY", + "code_postal": "77230", + "coordonnees_gps": [ + 49.0216143315, + 2.70583283653 + ], + "libelle_d_acheminement": "JUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70583283653, + 49.0216143315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf7866ebe6452825aa3a6f95584d00bbf0a1eddf", + "fields": { + "code_commune_insee": "54334", + "nom_de_la_commune": "MAIRY MAINVILLE", + "code_postal": "54150", + "coordonnees_gps": [ + 49.3047502382, + 5.85538054793 + ], + "libelle_d_acheminement": "MAIRY MAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85538054793, + 49.3047502382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbda573b9a6427bfbba175b7299326ae68e5291b", + "fields": { + "code_commune_insee": "77242", + "nom_de_la_commune": "JUTIGNY", + "code_postal": "77650", + "coordonnees_gps": [ + 48.4940082553, + 3.22666999554 + ], + "libelle_d_acheminement": "JUTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22666999554, + 48.4940082553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7c6e86150a52f41cfc99bd8ac2dd22b9a3f99a4", + "fields": { + "code_commune_insee": "54337", + "nom_de_la_commune": "MALAVILLERS", + "code_postal": "54560", + "coordonnees_gps": [ + 49.3574661069, + 5.86577468306 + ], + "libelle_d_acheminement": "MALAVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86577468306, + 49.3574661069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc6b56558bd6768aa61a950fadc09da50d666cc8", + "fields": { + "code_commune_insee": "77244", + "nom_de_la_commune": "LARCHANT", + "code_postal": "77760", + "coordonnees_gps": [ + 48.2829275322, + 2.59886669587 + ], + "libelle_d_acheminement": "LARCHANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59886669587, + 48.2829275322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fb711a651b297cfafd7a672571b0f4201bebc53", + "fields": { + "code_commune_insee": "54346", + "nom_de_la_commune": "MANONCOURT EN WOEVRE", + "code_postal": "54385", + "coordonnees_gps": [ + 48.78198493, + 5.91915355955 + ], + "libelle_d_acheminement": "MANONCOURT EN WOEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91915355955, + 48.78198493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09c901d3f29dbd6159d59bd62caf84579171defc", + "fields": { + "code_commune_insee": "77248", + "nom_de_la_commune": "LESCHES", + "code_postal": "77450", + "coordonnees_gps": [ + 48.9152646344, + 2.79280740269 + ], + "libelle_d_acheminement": "LESCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79280740269, + 48.9152646344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce2b74bf5d9cd584fdc790e2ba529429809664db", + "fields": { + "code_commune_insee": "54353", + "nom_de_la_commune": "MARS LA TOUR", + "code_postal": "54800", + "coordonnees_gps": [ + 49.0967846153, + 5.88467840528 + ], + "libelle_d_acheminement": "MARS LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88467840528, + 49.0967846153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee419a9f09bc9ed87c6e82eae9328e1c471534c1", + "fields": { + "code_commune_insee": "77253", + "nom_de_la_commune": "LISSY", + "code_postal": "77550", + "coordonnees_gps": [ + 48.6181092789, + 2.70150853218 + ], + "libelle_d_acheminement": "LISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70150853218, + 48.6181092789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99d1f3abd58ab133c33166549182b7317a314207", + "fields": { + "code_commune_insee": "54360", + "nom_de_la_commune": "MENIL LA TOUR", + "code_postal": "54200", + "coordonnees_gps": [ + 48.7741697228, + 5.84763659664 + ], + "libelle_d_acheminement": "MENIL LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84763659664, + 48.7741697228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9492edf44c22f1e2fad69a7ad639a5f55cf15f8e", + "fields": { + "code_commune_insee": "77257", + "nom_de_la_commune": "LIZY SUR OURCQ", + "code_postal": "77440", + "coordonnees_gps": [ + 49.0352062852, + 3.01893213028 + ], + "libelle_d_acheminement": "LIZY SUR OURCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01893213028, + 49.0352062852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b90cdf0ce142e1c5c9d97d30c9d7f5b186362fb", + "fields": { + "code_commune_insee": "54366", + "nom_de_la_commune": "MESSEIN", + "code_postal": "54850", + "coordonnees_gps": [ + 48.6104817604, + 6.14212766773 + ], + "libelle_d_acheminement": "MESSEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14212766773, + 48.6104817604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b53c840cc93ad25536d130aa0df82dd34299db2", + "fields": { + "code_commune_insee": "77258", + "nom_de_la_commune": "LOGNES", + "code_postal": "77185", + "coordonnees_gps": [ + 48.8332806021, + 2.63346363172 + ], + "libelle_d_acheminement": "LOGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63346363172, + 48.8332806021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4010e2ff8421302fc5ac87d8e488d0fa8e7b4060", + "fields": { + "code_commune_insee": "54370", + "nom_de_la_commune": "MINORVILLE", + "code_postal": "54385", + "coordonnees_gps": [ + 48.8097499629, + 5.8798507442 + ], + "libelle_d_acheminement": "MINORVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8798507442, + 48.8097499629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d96f5d6425ec8c502884b6811f5c00d5405002ff", + "fields": { + "code_commune_insee": "77261", + "nom_de_la_commune": "LORREZ LE BOCAGE PREAUX", + "code_postal": "77710", + "coordonnees_gps": [ + 48.2397310097, + 2.89648812918 + ], + "libelle_d_acheminement": "LORREZ LE BOCAGE PREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89648812918, + 48.2397310097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52d6fd26414a0adfcebf2fd900b751601fbd5434", + "fields": { + "code_commune_insee": "54379", + "nom_de_la_commune": "MONT L ETROIT", + "code_postal": "54170", + "coordonnees_gps": [ + 48.4986857514, + 5.78282069784 + ], + "libelle_d_acheminement": "MONT L ETROIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78282069784, + 48.4986857514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "103ff10376a8cf0a8f8952b5164870aa667b2659", + "fields": { + "code_commune_insee": "77262", + "nom_de_la_commune": "LOUAN VILLEGRUIS FONTAINE", + "code_postal": "77560", + "coordonnees_gps": [ + 48.6145636708, + 3.48915109409 + ], + "libelle_d_acheminement": "LOUAN VILLEGRUIS FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48915109409, + 48.6145636708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b125cfbff2a66b06c8ee8940998e8babea1d32ed", + "fields": { + "code_commune_insee": "54380", + "nom_de_la_commune": "MONT LE VIGNOBLE", + "code_postal": "54113", + "coordonnees_gps": [ + 48.6194473403, + 5.85052856749 + ], + "libelle_d_acheminement": "MONT LE VIGNOBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85052856749, + 48.6194473403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78ae23d8637af754c3390d377ce573d4cd336797", + "fields": { + "code_commune_insee": "77264", + "nom_de_la_commune": "LUMIGNY NESLES ORMEAUX", + "code_postal": "77540", + "coordonnees_gps": [ + 48.719582466, + 2.95371291045 + ], + "libelle_d_acheminement": "LUMIGNY NESLES ORMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95371291045, + 48.719582466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "668eb7d84cd5eaa09146da677527ef67ce454a66", + "fields": { + "code_commune_insee": "54385", + "nom_de_la_commune": "MORFONTAINE", + "code_postal": "54920", + "coordonnees_gps": [ + 49.4434732186, + 5.81770469629 + ], + "libelle_d_acheminement": "MORFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81770469629, + 49.4434732186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2936a73163ea0cd2cd47dc25a36e690d9dc211ba", + "fields": { + "ligne_5": "ORMEAUX", + "code_commune_insee": "77264", + "libelle_d_acheminement": "LUMIGNY NESLES ORMEAUX", + "code_postal": "77540", + "nom_de_la_commune": "LUMIGNY NESLES ORMEAUX", + "coordonnees_gps": [ + 48.719582466, + 2.95371291045 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95371291045, + 48.719582466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "809bb6b66ed76febd4cea2a4e0f422e8319418f4", + "fields": { + "code_commune_insee": "54392", + "nom_de_la_commune": "MOUTROT", + "code_postal": "54113", + "coordonnees_gps": [ + 48.6018097016, + 5.89684875772 + ], + "libelle_d_acheminement": "MOUTROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89684875772, + 48.6018097016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4acbd4afbe5e1de65a7849954efccc66b352f936", + "fields": { + "code_commune_insee": "77265", + "nom_de_la_commune": "LUZANCY", + "code_postal": "77138", + "coordonnees_gps": [ + 48.9776259019, + 3.18079774595 + ], + "libelle_d_acheminement": "LUZANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18079774595, + 48.9776259019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb604cfbbd02b979d159357efa83a0bf91708ee5", + "fields": { + "code_commune_insee": "54395", + "nom_de_la_commune": "NANCY", + "code_postal": "54000", + "coordonnees_gps": [ + 48.6901995499, + 6.17588254434 + ], + "libelle_d_acheminement": "NANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17588254434, + 48.6901995499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca124a5ed6fbf84676268186bec8fc1cab0fc6b6", + "fields": { + "code_commune_insee": "77271", + "nom_de_la_commune": "MAISONCELLES EN GATINAIS", + "code_postal": "77570", + "coordonnees_gps": [ + 48.1827929678, + 2.6212297089 + ], + "libelle_d_acheminement": "MAISONCELLES EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6212297089, + 48.1827929678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c561f0d3c97ad3d3137000e893c5ac08cf77133", + "fields": { + "code_commune_insee": "54397", + "nom_de_la_commune": "NEUVES MAISONS", + "code_postal": "54230", + "coordonnees_gps": [ + 48.6147598668, + 6.10912661259 + ], + "libelle_d_acheminement": "NEUVES MAISONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10912661259, + 48.6147598668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "119bca879fa088ce79b16ac35b07479c6b5854de", + "fields": { + "code_commune_insee": "77273", + "nom_de_la_commune": "MARCHEMORET", + "code_postal": "77230", + "coordonnees_gps": [ + 49.0528552524, + 2.75169281381 + ], + "libelle_d_acheminement": "MARCHEMORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75169281381, + 49.0528552524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1a06752f4eb1eb7ffc90c4e11bb1359dd834185", + "fields": { + "code_commune_insee": "54398", + "nom_de_la_commune": "NEUVILLER LES BADONVILLER", + "code_postal": "54540", + "coordonnees_gps": [ + 48.5208088136, + 6.87681873145 + ], + "libelle_d_acheminement": "NEUVILLER LES BADONVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87681873145, + 48.5208088136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d28daa74c9582c443e1a361ef1d491dfff8e17da", + "fields": { + "code_commune_insee": "77275", + "nom_de_la_commune": "LES MARETS", + "code_postal": "77560", + "coordonnees_gps": [ + 48.6725110307, + 3.31659971579 + ], + "libelle_d_acheminement": "LES MARETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31659971579, + 48.6725110307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "453c4d3c8c1275c38d479eca608d50ac65ade7c7", + "fields": { + "code_commune_insee": "54400", + "nom_de_la_commune": "NOMENY", + "code_postal": "54610", + "coordonnees_gps": [ + 48.8776522651, + 6.23309013731 + ], + "libelle_d_acheminement": "NOMENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23309013731, + 48.8776522651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d034cf31380d9308793a5f216ba72f00eeaf2a6", + "fields": { + "code_commune_insee": "77280", + "nom_de_la_commune": "MARY SUR MARNE", + "code_postal": "77440", + "coordonnees_gps": [ + 49.0154576269, + 3.0331378952 + ], + "libelle_d_acheminement": "MARY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0331378952, + 49.0154576269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5f6e0a706c9028e608c2652d44adb96ff9dbba7", + "fields": { + "code_commune_insee": "54404", + "nom_de_la_commune": "NOVIANT AUX PRES", + "code_postal": "54385", + "coordonnees_gps": [ + 48.8457598946, + 5.88509402021 + ], + "libelle_d_acheminement": "NOVIANT AUX PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88509402021, + 48.8457598946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b62d4341255b861d8d72ad19fe9a7a51eae2522", + "fields": { + "code_commune_insee": "77286", + "nom_de_la_commune": "MEIGNEUX", + "code_postal": "77520", + "coordonnees_gps": [ + 48.5137853479, + 3.09690502787 + ], + "libelle_d_acheminement": "MEIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09690502787, + 48.5137853479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8c798f623656c2a5b16f0b21ab8b20499950b51", + "fields": { + "code_commune_insee": "54415", + "nom_de_la_commune": "PAGNY SUR MOSELLE", + "code_postal": "54530", + "coordonnees_gps": [ + 48.9884361128, + 6.01116368886 + ], + "libelle_d_acheminement": "PAGNY SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01116368886, + 48.9884361128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25e092713dce390ba1fe0f6c1974662b891e7b76", + "fields": { + "code_commune_insee": "77290", + "nom_de_la_commune": "MERY SUR MARNE", + "code_postal": "77730", + "coordonnees_gps": [ + 48.9758033075, + 3.20315053013 + ], + "libelle_d_acheminement": "MERY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20315053013, + 48.9758033075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc77620911392636cb9b90f0e6d6da87dc8d7028", + "fields": { + "code_commune_insee": "54416", + "nom_de_la_commune": "PANNES", + "code_postal": "54470", + "coordonnees_gps": [ + 48.9298072595, + 5.79605273034 + ], + "libelle_d_acheminement": "PANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79605273034, + 48.9298072595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db715bec1c886a67abb382cc4ce1eaefbdc8ce61", + "fields": { + "code_commune_insee": "77294", + "nom_de_la_commune": "MITRY MORY", + "code_postal": "77290", + "coordonnees_gps": [ + 48.9779450158, + 2.61244465751 + ], + "libelle_d_acheminement": "MITRY MORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61244465751, + 48.9779450158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ac79cf290b20b333bdbf36feb151a3cc70fc7f7", + "fields": { + "code_commune_insee": "54423", + "nom_de_la_commune": "PEXONNE", + "code_postal": "54540", + "coordonnees_gps": [ + 48.4679125322, + 6.88380524568 + ], + "libelle_d_acheminement": "PEXONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88380524568, + 48.4679125322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53874a7067b29db5fb3392bcf17924e1edf774b4", + "fields": { + "code_commune_insee": "77296", + "nom_de_la_commune": "MOISSY CRAMAYEL", + "code_postal": "77550", + "coordonnees_gps": [ + 48.6285851533, + 2.5960231045 + ], + "libelle_d_acheminement": "MOISSY CRAMAYEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5960231045, + 48.6285851533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e7fa25dbe015fd63b8fb056e1d61a56a5df7ad1", + "fields": { + "code_commune_insee": "54424", + "nom_de_la_commune": "PHLIN", + "code_postal": "54610", + "coordonnees_gps": [ + 48.9167225344, + 6.27672257026 + ], + "libelle_d_acheminement": "PHLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27672257026, + 48.9167225344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f73d6d24cb701e70a3bfe894258901795fcd3d7d", + "fields": { + "code_commune_insee": "77297", + "nom_de_la_commune": "MONDREVILLE", + "code_postal": "77570", + "coordonnees_gps": [ + 48.1510497294, + 2.5976435537 + ], + "libelle_d_acheminement": "MONDREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5976435537, + 48.1510497294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b63a4aef5f45479d37d8f96af65206874317e18", + "fields": { + "code_commune_insee": "54431", + "nom_de_la_commune": "PONT A MOUSSON", + "code_postal": "54700", + "coordonnees_gps": [ + 48.9219828048, + 6.05392690748 + ], + "libelle_d_acheminement": "PONT A MOUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05392690748, + 48.9219828048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e3d3c6ae4e17f2216210260af3c577a3b1a8443", + "fields": { + "code_commune_insee": "77303", + "nom_de_la_commune": "MONTDAUPHIN", + "code_postal": "77320", + "coordonnees_gps": [ + 48.8526076022, + 3.41948549224 + ], + "libelle_d_acheminement": "MONTDAUPHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41948549224, + 48.8526076022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1872595eae7bf38539834aca67633eca7a851e66", + "fields": { + "code_commune_insee": "54437", + "nom_de_la_commune": "PULLIGNY", + "code_postal": "54160", + "coordonnees_gps": [ + 48.549622462, + 6.15189007246 + ], + "libelle_d_acheminement": "PULLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15189007246, + 48.549622462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86c70fcfeee7d3f40fcde33358a74f06a5d9d2c5", + "fields": { + "code_commune_insee": "77306", + "nom_de_la_commune": "MONTEREAU SUR LE JARD", + "code_postal": "77950", + "coordonnees_gps": [ + 48.5963121616, + 2.67243506612 + ], + "libelle_d_acheminement": "MONTEREAU SUR LE JARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67243506612, + 48.5963121616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f30add390841705dabc8ae60b87f1d9d43fcb32", + "fields": { + "code_commune_insee": "54447", + "nom_de_la_commune": "RECLONVILLE", + "code_postal": "54450", + "coordonnees_gps": [ + 48.537477465, + 6.72946978651 + ], + "libelle_d_acheminement": "RECLONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72946978651, + 48.537477465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49baeb896b929d9f8ebe0f74fa73bf5f42017794", + "fields": { + "code_commune_insee": "77312", + "nom_de_la_commune": "MONTIGNY SUR LOING", + "code_postal": "77690", + "coordonnees_gps": [ + 48.3413324688, + 2.75094860085 + ], + "libelle_d_acheminement": "MONTIGNY SUR LOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75094860085, + 48.3413324688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9038a97bef89df7b5c2b85a1a4f21e7aa784dcb6", + "fields": { + "code_commune_insee": "54453", + "nom_de_la_commune": "REMBERCOURT SUR MAD", + "code_postal": "54470", + "coordonnees_gps": [ + 48.9851155798, + 5.90361841528 + ], + "libelle_d_acheminement": "REMBERCOURT SUR MAD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90361841528, + 48.9851155798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a646ec58d796a5cefb8f5c3676b7a16db3f1c226", + "fields": { + "code_commune_insee": "77317", + "nom_de_la_commune": "MORMANT", + "code_postal": "77720", + "coordonnees_gps": [ + 48.5977701825, + 2.88204553613 + ], + "libelle_d_acheminement": "MORMANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88204553613, + 48.5977701825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26cefc93a6320ad63a20e3611ca51534f26e9e3b", + "fields": { + "code_commune_insee": "54463", + "nom_de_la_commune": "ROSIERES EN HAYE", + "code_postal": "54385", + "coordonnees_gps": [ + 48.7887620436, + 5.99419781093 + ], + "libelle_d_acheminement": "ROSIERES EN HAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99419781093, + 48.7887620436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f61070be5e998a8be7c43f11ebfd887abd8a938", + "fields": { + "code_commune_insee": "77319", + "nom_de_la_commune": "MORTERY", + "code_postal": "77160", + "coordonnees_gps": [ + 48.5914990543, + 3.24833157158 + ], + "libelle_d_acheminement": "MORTERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24833157158, + 48.5914990543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d52b0474a5d0813ff4da6351f5cef9b1b1edb48", + "fields": { + "code_commune_insee": "54466", + "nom_de_la_commune": "ROYAUMEIX", + "code_postal": "54200", + "coordonnees_gps": [ + 48.7851184202, + 5.8221072138 + ], + "libelle_d_acheminement": "ROYAUMEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8221072138, + 48.7851184202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e0052108e08db0ef26f71650bd378f759898c47", + "fields": { + "code_commune_insee": "77320", + "nom_de_la_commune": "MOUROUX", + "code_postal": "77120", + "coordonnees_gps": [ + 48.8270896205, + 3.0508921508 + ], + "libelle_d_acheminement": "MOUROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0508921508, + 48.8270896205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed005785bb10ab0344db88ea8cca31e55ca928b7", + "fields": { + "ligne_5": "HABONVILLE", + "code_commune_insee": "54469", + "libelle_d_acheminement": "ST AIL", + "code_postal": "54580", + "nom_de_la_commune": "ST AIL", + "coordonnees_gps": [ + 49.1694540532, + 6.0019618843 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0019618843, + 49.1694540532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9951addbec48542444cf2454143f0c814f8258ca", + "fields": { + "code_commune_insee": "77327", + "nom_de_la_commune": "NANGIS", + "code_postal": "77370", + "coordonnees_gps": [ + 48.554637282, + 3.00883892893 + ], + "libelle_d_acheminement": "NANGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00883892893, + 48.554637282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "227de2c43182c5f72b3419c917b60a2794b947c4", + "fields": { + "code_commune_insee": "54471", + "nom_de_la_commune": "ST BOINGT", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4186728188, + 6.42962191006 + ], + "libelle_d_acheminement": "ST BOINGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42962191006, + 48.4186728188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5df103c057f8e3e3943c1ba8335e0b14cfc5fcb5", + "fields": { + "code_commune_insee": "77331", + "nom_de_la_commune": "NANTEUIL SUR MARNE", + "code_postal": "77730", + "coordonnees_gps": [ + 48.9805109737, + 3.22232839885 + ], + "libelle_d_acheminement": "NANTEUIL SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22232839885, + 48.9805109737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bce8bf5ceb34f5a2e069075ffb7086195e2421f9", + "fields": { + "code_commune_insee": "54480", + "nom_de_la_commune": "ST MARTIN", + "code_postal": "54450", + "coordonnees_gps": [ + 48.571711252, + 6.74965214111 + ], + "libelle_d_acheminement": "ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74965214111, + 48.571711252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aab750d6c2d876e11cb373558d5aa30b4a02bf0a", + "fields": { + "code_commune_insee": "77332", + "nom_de_la_commune": "NANTOUILLET", + "code_postal": "77230", + "coordonnees_gps": [ + 49.0009752296, + 2.70169532567 + ], + "libelle_d_acheminement": "NANTOUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70169532567, + 49.0009752296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab5900ab95a55c2e9f25084fb5124b92ddde3256", + "fields": { + "code_commune_insee": "54481", + "nom_de_la_commune": "ST MAURICE AUX FORGES", + "code_postal": "54540", + "coordonnees_gps": [ + 48.5064468487, + 6.85090733519 + ], + "libelle_d_acheminement": "ST MAURICE AUX FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85090733519, + 48.5064468487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1472018d52dfea73aa3adee46d7e9f6fa1d4f437", + "fields": { + "code_commune_insee": "77340", + "nom_de_la_commune": "NONVILLE", + "code_postal": "77140", + "coordonnees_gps": [ + 48.28866643, + 2.7739294965 + ], + "libelle_d_acheminement": "NONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7739294965, + 48.28866643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "508ba1ba7027e274dd2f3b4a0d1692ea113e1285", + "fields": { + "code_commune_insee": "54482", + "nom_de_la_commune": "ST MAX", + "code_postal": "54130", + "coordonnees_gps": [ + 48.7052276034, + 6.20645111198 + ], + "libelle_d_acheminement": "ST MAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20645111198, + 48.7052276034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55b59513d5338b57602b3a332d8bdb00867802c6", + "fields": { + "code_commune_insee": "77341", + "nom_de_la_commune": "NOYEN SUR SEINE", + "code_postal": "77114", + "coordonnees_gps": [ + 48.4518691045, + 3.34226623535 + ], + "libelle_d_acheminement": "NOYEN SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34226623535, + 48.4518691045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4753d1f0a48a9ff6ad00512c7c0b5f37c341c006", + "fields": { + "code_commune_insee": "54488", + "nom_de_la_commune": "ST SAUVEUR", + "code_postal": "54480", + "coordonnees_gps": [ + 48.5230682031, + 7.00308119799 + ], + "libelle_d_acheminement": "ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00308119799, + 48.5230682031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7d843f33182bf55b0bea6161f6fe59b2f1cf78c", + "fields": { + "code_commune_insee": "77344", + "nom_de_la_commune": "OISSERY", + "code_postal": "77178", + "coordonnees_gps": [ + 49.0705440359, + 2.8176701421 + ], + "libelle_d_acheminement": "OISSERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8176701421, + 49.0705440359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab54ffbdf6788fb5c7b6483176848f594db91b6c", + "fields": { + "code_commune_insee": "54491", + "nom_de_la_commune": "SANCY", + "code_postal": "54560", + "coordonnees_gps": [ + 49.3519271584, + 5.92745145012 + ], + "libelle_d_acheminement": "SANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92745145012, + 49.3519271584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c37da07519f3b6cd88824e57e54d1f331692d54", + "fields": { + "code_commune_insee": "77348", + "nom_de_la_commune": "ORMESSON", + "code_postal": "77167", + "coordonnees_gps": [ + 48.243630146, + 2.65160228061 + ], + "libelle_d_acheminement": "ORMESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65160228061, + 48.243630146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8158832110ca1c3da605dd337bbdf3652cf832a", + "fields": { + "code_commune_insee": "54495", + "nom_de_la_commune": "SAULXURES LES NANCY", + "code_postal": "54420", + "coordonnees_gps": [ + 48.685833475, + 6.25394887342 + ], + "libelle_d_acheminement": "SAULXURES LES NANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25394887342, + 48.685833475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68e34be5a2c70478dc1ba0073b6937ba1128b17a", + "fields": { + "code_commune_insee": "77355", + "nom_de_la_commune": "PAROY", + "code_postal": "77520", + "coordonnees_gps": [ + 48.4812861292, + 3.20164565449 + ], + "libelle_d_acheminement": "PAROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20164565449, + 48.4812861292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dc82a3fa7afa9e38bff3b62ab8dc31a9bd3f152", + "fields": { + "code_commune_insee": "54505", + "nom_de_la_commune": "SEXEY AUX FORGES", + "code_postal": "54550", + "coordonnees_gps": [ + 48.6346984648, + 6.02336738736 + ], + "libelle_d_acheminement": "SEXEY AUX FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02336738736, + 48.6346984648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bce4c6ae9555d8395bacd096da3f2268582cca3", + "fields": { + "code_commune_insee": "77357", + "nom_de_la_commune": "PECY", + "code_postal": "77970", + "coordonnees_gps": [ + 48.6467079831, + 3.07507507912 + ], + "libelle_d_acheminement": "PECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07507507912, + 48.6467079831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53ab7f942831fa1393963f8809115c5840610a5c", + "fields": { + "code_commune_insee": "54510", + "nom_de_la_commune": "SORNEVILLE", + "code_postal": "54280", + "coordonnees_gps": [ + 48.7411266505, + 6.41623319667 + ], + "libelle_d_acheminement": "SORNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41623319667, + 48.7411266505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f4d470f8594c4d2bb47753161c1d9b1a8e94c25", + "fields": { + "code_commune_insee": "77366", + "nom_de_la_commune": "LE PLESSIS L EVEQUE", + "code_postal": "77165", + "coordonnees_gps": [ + 49.0072248611, + 2.79558517777 + ], + "libelle_d_acheminement": "LE PLESSIS L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79558517777, + 49.0072248611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b25ca3dedfaf1c199e737bb4ac4d63f486ae1bf", + "fields": { + "code_commune_insee": "54511", + "nom_de_la_commune": "SPONVILLE", + "code_postal": "54800", + "coordonnees_gps": [ + 49.0740783089, + 5.83194943929 + ], + "libelle_d_acheminement": "SPONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83194943929, + 49.0740783089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e27bc93c8d866c2bb9b0286bec1f415eeecc537", + "fields": { + "code_commune_insee": "77369", + "nom_de_la_commune": "POINCY", + "code_postal": "77470", + "coordonnees_gps": [ + 48.9734167231, + 2.92373383139 + ], + "libelle_d_acheminement": "POINCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92373383139, + 48.9734167231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd7b255b69c8e43761053d072273efc3a2a616b8", + "fields": { + "code_commune_insee": "54516", + "nom_de_la_commune": "THEY SOUS VAUDEMONT", + "code_postal": "54930", + "coordonnees_gps": [ + 48.4044708625, + 6.05299530826 + ], + "libelle_d_acheminement": "THEY SOUS VAUDEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05299530826, + 48.4044708625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5addd67b7abef93289c72fe5d9d42913262380e", + "fields": { + "ligne_5": "LA POMPONNETTE", + "code_commune_insee": "77372", + "libelle_d_acheminement": "POMPONNE", + "code_postal": "77400", + "nom_de_la_commune": "POMPONNE", + "coordonnees_gps": [ + 48.8867221487, + 2.67487662086 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67487662086, + 48.8867221487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99448c5d19ce09cd69d9dae6bf14b27417d65d81", + "fields": { + "code_commune_insee": "54519", + "nom_de_la_commune": "THIAVILLE SUR MEURTHE", + "code_postal": "54120", + "coordonnees_gps": [ + 48.4072052471, + 6.80501372608 + ], + "libelle_d_acheminement": "THIAVILLE SUR MEURTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80501372608, + 48.4072052471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cc73f6794e0ba8c3244cdd6a0f10e362221fe30", + "fields": { + "code_commune_insee": "77378", + "nom_de_la_commune": "PRINGY", + "code_postal": "77310", + "coordonnees_gps": [ + 48.5176600254, + 2.55002787016 + ], + "libelle_d_acheminement": "PRINGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55002787016, + 48.5176600254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d3a44f67febd8e370e8d89d59982423398001d0", + "fields": { + "code_commune_insee": "54524", + "nom_de_la_commune": "THUMEREVILLE", + "code_postal": "54800", + "coordonnees_gps": [ + 49.2035423546, + 5.80624858651 + ], + "libelle_d_acheminement": "THUMEREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80624858651, + 49.2035423546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "660dfc1eec74fa77cb31075f11d2d275ad9938c7", + "fields": { + "code_commune_insee": "77382", + "nom_de_la_commune": "QUINCY VOISINS", + "code_postal": "77860", + "coordonnees_gps": [ + 48.8993902334, + 2.87746538082 + ], + "libelle_d_acheminement": "QUINCY VOISINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87746538082, + 48.8993902334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ff231fa6f748fb840c6b181693c4df2bfb482b2", + "fields": { + "code_commune_insee": "54527", + "nom_de_la_commune": "TONNOY", + "code_postal": "54210", + "coordonnees_gps": [ + 48.5545026464, + 6.25931804019 + ], + "libelle_d_acheminement": "TONNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25931804019, + 48.5545026464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6fad07904541ffec6ae33ffb1b51015ca26a7f4", + "fields": { + "code_commune_insee": "77385", + "nom_de_la_commune": "REBAIS", + "code_postal": "77510", + "coordonnees_gps": [ + 48.8579690039, + 3.23286797694 + ], + "libelle_d_acheminement": "REBAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23286797694, + 48.8579690039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49a8be2ffd7e09a613c4011eb6f85e7b56f2b558", + "fields": { + "code_commune_insee": "54531", + "nom_de_la_commune": "TRAMONT ST ANDRE", + "code_postal": "54115", + "coordonnees_gps": [ + 48.4143611906, + 5.92748990163 + ], + "libelle_d_acheminement": "TRAMONT ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92748990163, + 48.4143611906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58168c50b0d60935dfa2c08ec61d202b3b4aaeb9", + "fields": { + "code_commune_insee": "77393", + "nom_de_la_commune": "ROZAY EN BRIE", + "code_postal": "77540", + "coordonnees_gps": [ + 48.6835473801, + 2.96386164436 + ], + "libelle_d_acheminement": "ROZAY EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96386164436, + 48.6835473801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a63c8ae9cd660920d05a524ddac28d61f02fe0bf", + "fields": { + "code_commune_insee": "54535", + "nom_de_la_commune": "TRONVILLE", + "code_postal": "54800", + "coordonnees_gps": [ + 49.0828019053, + 5.91902477431 + ], + "libelle_d_acheminement": "TRONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91902477431, + 49.0828019053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48baa69336ebd432a5c6a8bf214f860c5b822ae5", + "fields": { + "code_commune_insee": "77394", + "nom_de_la_commune": "RUBELLES", + "code_postal": "77950", + "coordonnees_gps": [ + 48.5646424027, + 2.68024008996 + ], + "libelle_d_acheminement": "RUBELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68024008996, + 48.5646424027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b109684fd341ebdf51ae70aebbd9c7358f344190", + "fields": { + "code_commune_insee": "54538", + "nom_de_la_commune": "URUFFE", + "code_postal": "54112", + "coordonnees_gps": [ + 48.5686957619, + 5.74648893211 + ], + "libelle_d_acheminement": "URUFFE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74648893211, + 48.5686957619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03932eb82cbbf2ecabe7195adc806b0b781cc1d5", + "fields": { + "code_commune_insee": "77400", + "nom_de_la_commune": "ST AUGUSTIN", + "code_postal": "77515", + "coordonnees_gps": [ + 48.789144962, + 3.02887733096 + ], + "libelle_d_acheminement": "ST AUGUSTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02887733096, + 48.789144962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e591c2d162335aa69b0b2663c1f61961d0ceb4d7", + "fields": { + "code_commune_insee": "54540", + "nom_de_la_commune": "VAL ET CHATILLON", + "code_postal": "54480", + "coordonnees_gps": [ + 48.5544444959, + 7.00739045852 + ], + "libelle_d_acheminement": "VAL ET CHATILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00739045852, + 48.5544444959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f68f8d1de0033fbb574a72564f7d093a5f13c9b8", + "fields": { + "code_commune_insee": "77403", + "nom_de_la_commune": "ST BRICE", + "code_postal": "77160", + "coordonnees_gps": [ + 48.5723421342, + 3.33441347649 + ], + "libelle_d_acheminement": "ST BRICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33441347649, + 48.5723421342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4429dbc605dc525dbaa8b68a860c5f7b14acef5f", + "fields": { + "code_commune_insee": "54542", + "nom_de_la_commune": "VALLEROY", + "code_postal": "54910", + "coordonnees_gps": [ + 49.2141375647, + 5.91990455999 + ], + "libelle_d_acheminement": "VALLEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91990455999, + 49.2141375647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1774fd7e8eb66d87ff1a625046dd60713cb5cf4", + "fields": { + "code_commune_insee": "77408", + "nom_de_la_commune": "ST FIACRE", + "code_postal": "77470", + "coordonnees_gps": [ + 48.9247152564, + 2.95384065653 + ], + "libelle_d_acheminement": "ST FIACRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95384065653, + 48.9247152564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c20e690559f07e0cc534fa1d641aa41212759d3", + "fields": { + "code_commune_insee": "54547", + "nom_de_la_commune": "VANDOEUVRE LES NANCY", + "code_postal": "54500", + "coordonnees_gps": [ + 48.6579999356, + 6.16531229307 + ], + "libelle_d_acheminement": "VANDOEUVRE LES NANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16531229307, + 48.6579999356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aae5036792e76dd54737b807a3d47693722f65e", + "fields": { + "code_commune_insee": "77415", + "nom_de_la_commune": "ST JEAN LES DEUX JUMEAUX", + "code_postal": "77660", + "coordonnees_gps": [ + 48.9387834694, + 3.02695540228 + ], + "libelle_d_acheminement": "ST JEAN LES DEUX JUMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02695540228, + 48.9387834694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef31b8490efbf8aa15f4913003540bba566deae9", + "fields": { + "code_commune_insee": "54549", + "nom_de_la_commune": "VARANGEVILLE", + "code_postal": "54110", + "coordonnees_gps": [ + 48.6416869467, + 6.32137950944 + ], + "libelle_d_acheminement": "VARANGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32137950944, + 48.6416869467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bd935b5c2a97d66e6416ed31ed40c0f62fe23c7", + "fields": { + "code_commune_insee": "77416", + "nom_de_la_commune": "ST JUST EN BRIE", + "code_postal": "77370", + "coordonnees_gps": [ + 48.6110276431, + 3.12128070176 + ], + "libelle_d_acheminement": "ST JUST EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12128070176, + 48.6110276431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8885fca08403933bd6579f40dd1da9b8def0659d", + "fields": { + "ligne_5": "VELAINE EN HAYE", + "code_commune_insee": "54557", + "libelle_d_acheminement": "BOIS DE HAYE", + "code_postal": "54840", + "nom_de_la_commune": "BOIS DE HAYE", + "coordonnees_gps": [ + 48.6991910373, + 6.04715070856 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04715070856, + 48.6991910373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fc8fef7a5356c53b7ad0c442a28f5b562690be8", + "fields": { + "code_commune_insee": "77436", + "nom_de_la_commune": "ST SIMEON", + "code_postal": "77169", + "coordonnees_gps": [ + 48.8045983956, + 3.19433416433 + ], + "libelle_d_acheminement": "ST SIMEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19433416433, + 48.8045983956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9db6a9657fc8e76444c2b39f4ae4c96e34a06a12", + "fields": { + "code_commune_insee": "54559", + "nom_de_la_commune": "VELLE SUR MOSELLE", + "code_postal": "54290", + "coordonnees_gps": [ + 48.5304708642, + 6.28555083892 + ], + "libelle_d_acheminement": "VELLE SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28555083892, + 48.5304708642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8770ffba2243710d151bae981b255bd8100e4b6e", + "fields": { + "code_commune_insee": "77443", + "nom_de_la_commune": "SANCY", + "code_postal": "77580", + "coordonnees_gps": [ + 48.8791674631, + 2.96108511605 + ], + "libelle_d_acheminement": "SANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96108511605, + 48.8791674631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7fd3893ad59eba8958ae7f0abf3a1e0a5df7138", + "fields": { + "code_commune_insee": "54568", + "nom_de_la_commune": "VILLE AU MONTOIS", + "code_postal": "54620", + "coordonnees_gps": [ + 49.417435049, + 5.80118957601 + ], + "libelle_d_acheminement": "VILLE AU MONTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80118957601, + 49.417435049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c9a1694ff4bffce4433d26ff5178a6203b56219", + "fields": { + "code_commune_insee": "77445", + "nom_de_la_commune": "SAVIGNY LE TEMPLE", + "code_postal": "77176", + "coordonnees_gps": [ + 48.5884785769, + 2.57373861268 + ], + "libelle_d_acheminement": "SAVIGNY LE TEMPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57373861268, + 48.5884785769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6598ab591e8be8715e46881e7646f1df0bae0f2a", + "fields": { + "code_commune_insee": "54571", + "nom_de_la_commune": "VILLE EN VERMOIS", + "code_postal": "54210", + "coordonnees_gps": [ + 48.6194878128, + 6.24428854524 + ], + "libelle_d_acheminement": "VILLE EN VERMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24428854524, + 48.6194878128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3554fb8c9e2908c470a727a175956c9ccc97faf1", + "fields": { + "code_commune_insee": "77449", + "nom_de_la_commune": "SERRIS", + "code_postal": "77700", + "coordonnees_gps": [ + 48.844790279, + 2.78754866071 + ], + "libelle_d_acheminement": "SERRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78754866071, + 48.844790279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48fa16d826e98a26d555a1f7558a33b2ae5eb7af", + "fields": { + "code_commune_insee": "54573", + "nom_de_la_commune": "VILLERS EN HAYE", + "code_postal": "54380", + "coordonnees_gps": [ + 48.8203320027, + 6.00699057007 + ], + "libelle_d_acheminement": "VILLERS EN HAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00699057007, + 48.8203320027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54ff58587e4100ea014ddabb52e69926fa240989", + "fields": { + "code_commune_insee": "77451", + "nom_de_la_commune": "SIGNY SIGNETS", + "code_postal": "77640", + "coordonnees_gps": [ + 48.9173760452, + 3.06397097105 + ], + "libelle_d_acheminement": "SIGNY SIGNETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06397097105, + 48.9173760452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2767fe9e271dab28e15f1184288360515676260", + "fields": { + "code_commune_insee": "54577", + "nom_de_la_commune": "VILLERS LES MOIVRONS", + "code_postal": "54760", + "coordonnees_gps": [ + 48.8144465735, + 6.25119600136 + ], + "libelle_d_acheminement": "VILLERS LES MOIVRONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25119600136, + 48.8144465735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06561995859ad6987ecd538e8f907c90a2e64115", + "fields": { + "code_commune_insee": "77458", + "nom_de_la_commune": "SOUPPES SUR LOING", + "code_postal": "77460", + "coordonnees_gps": [ + 48.186873445, + 2.74753245184 + ], + "libelle_d_acheminement": "SOUPPES SUR LOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74753245184, + 48.186873445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b72f5f941687fb092bceb6f139d58be032ac2e37", + "fields": { + "code_commune_insee": "54580", + "nom_de_la_commune": "VILLERUPT", + "code_postal": "54190", + "coordonnees_gps": [ + 49.4647155933, + 5.92643741054 + ], + "libelle_d_acheminement": "VILLERUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92643741054, + 49.4647155933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad3abbb38986d1e7d12e9411e111a8ad33c29cee", + "fields": { + "code_commune_insee": "77469", + "nom_de_la_commune": "TOUQUIN", + "code_postal": "77131", + "coordonnees_gps": [ + 48.7330599565, + 3.02878980311 + ], + "libelle_d_acheminement": "TOUQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02878980311, + 48.7330599565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42e68cc14a5ac02254c4a482fc21b23a4ea4486f", + "fields": { + "code_commune_insee": "54583", + "nom_de_la_commune": "VILLEY LE SEC", + "code_postal": "54840", + "coordonnees_gps": [ + 48.6576126839, + 5.97596975592 + ], + "libelle_d_acheminement": "VILLEY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97596975592, + 48.6576126839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87d005f1b301efe4c33cd99419af100a0dbc4c4c", + "fields": { + "code_commune_insee": "77481", + "nom_de_la_commune": "VANVILLE", + "code_postal": "77370", + "coordonnees_gps": [ + 48.5547348508, + 3.11550566194 + ], + "libelle_d_acheminement": "VANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11550566194, + 48.5547348508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d043a4ffd20c898b564f90f0ac6d0955bac23300", + "fields": { + "code_commune_insee": "54588", + "nom_de_la_commune": "VITRIMONT", + "code_postal": "54300", + "coordonnees_gps": [ + 48.5905577157, + 6.44238362199 + ], + "libelle_d_acheminement": "VITRIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44238362199, + 48.5905577157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64f7d6596572d1e5534a9aae5add8fd781cf2d4f", + "fields": { + "code_commune_insee": "77483", + "nom_de_la_commune": "VARREDDES", + "code_postal": "77910", + "coordonnees_gps": [ + 49.0058198768, + 2.92807790082 + ], + "libelle_d_acheminement": "VARREDDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92807790082, + 49.0058198768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8dec27d35b18d42a923580cc9b60175d4e49eca", + "fields": { + "code_commune_insee": "54590", + "nom_de_la_commune": "VIVIERS SUR CHIERS", + "code_postal": "54260", + "coordonnees_gps": [ + 49.465789726, + 5.63118044912 + ], + "libelle_d_acheminement": "VIVIERS SUR CHIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63118044912, + 49.465789726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e1b30465c75e55460e9d14bbb04306b06538182", + "fields": { + "code_commune_insee": "77490", + "nom_de_la_commune": "VENDREST", + "code_postal": "77440", + "coordonnees_gps": [ + 49.0415084133, + 3.10843248735 + ], + "libelle_d_acheminement": "VENDREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10843248735, + 49.0415084133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edbe874803f9869441edf2c32dc8757220db9930", + "fields": { + "ligne_5": "BRAUMONT", + "code_commune_insee": "54590", + "libelle_d_acheminement": "VIVIERS SUR CHIERS", + "code_postal": "54260", + "nom_de_la_commune": "VIVIERS SUR CHIERS", + "coordonnees_gps": [ + 49.465789726, + 5.63118044912 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63118044912, + 49.465789726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5979a8a4bc79cc625b12f6c2dd4dee3d71e16018", + "fields": { + "code_commune_insee": "77494", + "nom_de_la_commune": "VERNOU LA CELLE SUR SEINE", + "code_postal": "77670", + "coordonnees_gps": [ + 48.4062374172, + 2.85382135685 + ], + "libelle_d_acheminement": "VERNOU LA CELLE SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85382135685, + 48.4062374172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d29cdb78921c78fa17eb5b91295a3a0f581ae6a3", + "fields": { + "ligne_5": "REVEMONT", + "code_commune_insee": "54590", + "libelle_d_acheminement": "VIVIERS SUR CHIERS", + "code_postal": "54260", + "nom_de_la_commune": "VIVIERS SUR CHIERS", + "coordonnees_gps": [ + 49.465789726, + 5.63118044912 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63118044912, + 49.465789726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f789ba653df9f0fdd6c9674ae066945c2b17300e", + "fields": { + "code_commune_insee": "77498", + "nom_de_la_commune": "VIGNELY", + "code_postal": "77450", + "coordonnees_gps": [ + 48.9326287098, + 2.81578532754 + ], + "libelle_d_acheminement": "VIGNELY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81578532754, + 48.9326287098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d96e6f3ced6ae0df249a18efbc720376041a926d", + "fields": { + "code_commune_insee": "77500", + "nom_de_la_commune": "VILLEBEON", + "code_postal": "77710", + "coordonnees_gps": [ + 48.2049138912, + 2.92837301126 + ], + "libelle_d_acheminement": "VILLEBEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92837301126, + 48.2049138912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1354c1d53d6e6a6a6f9fe85272747e96370f9160", + "fields": { + "ligne_5": "ST ANGE LE VIEL", + "code_commune_insee": "77504", + "libelle_d_acheminement": "VILLEMARECHAL", + "code_postal": "77710", + "nom_de_la_commune": "VILLEMARECHAL", + "coordonnees_gps": [ + 48.2716975707, + 2.86854814458 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86854814458, + 48.2716975707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef3331c9216a7a38a982c97d0b05c2d9952edf05", + "fields": { + "code_commune_insee": "77507", + "nom_de_la_commune": "VILLENAUXE LA PETITE", + "code_postal": "77480", + "coordonnees_gps": [ + 48.4004012721, + 3.31327470557 + ], + "libelle_d_acheminement": "VILLENAUXE LA PETITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31327470557, + 48.4004012721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fed16558d68473225528bbfaf84b9f39d0cd105", + "fields": { + "code_commune_insee": "77510", + "nom_de_la_commune": "VILLENEUVE ST DENIS", + "code_postal": "77174", + "coordonnees_gps": [ + 48.8124542945, + 2.79328879273 + ], + "libelle_d_acheminement": "VILLENEUVE ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79328879273, + 48.8124542945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d7ffcf37d430385dfc0823de7fc85140bd75982", + "fields": { + "code_commune_insee": "77511", + "nom_de_la_commune": "VILLENEUVE SOUS DAMMARTIN", + "code_postal": "77230", + "coordonnees_gps": [ + 49.0287050139, + 2.6367073967 + ], + "libelle_d_acheminement": "VILLENEUVE SOUS DAMMARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6367073967, + 49.0287050139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba8254defba04144cb12e8c15f4f44752ae5ee62", + "fields": { + "code_commune_insee": "77516", + "nom_de_la_commune": "VILLE ST JACQUES", + "code_postal": "77130", + "coordonnees_gps": [ + 48.3445385787, + 2.89832891808 + ], + "libelle_d_acheminement": "VILLE ST JACQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89832891808, + 48.3445385787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc74c77af0a9f3b6c5b7532fb973c1eae70a9696", + "fields": { + "code_commune_insee": "77517", + "nom_de_la_commune": "VILLEVAUDE", + "code_postal": "77410", + "coordonnees_gps": [ + 48.9117801079, + 2.66224807334 + ], + "libelle_d_acheminement": "VILLEVAUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66224807334, + 48.9117801079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4292287ed0bf06870a2b6eecd0441dafa3aa12f2", + "fields": { + "ligne_5": "BORDEAUX", + "code_commune_insee": "77517", + "libelle_d_acheminement": "VILLEVAUDE", + "code_postal": "77410", + "nom_de_la_commune": "VILLEVAUDE", + "coordonnees_gps": [ + 48.9117801079, + 2.66224807334 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66224807334, + 48.9117801079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52405a4a96a50c478a49599c31dc135aa63f932e", + "fields": { + "code_commune_insee": "77522", + "nom_de_la_commune": "VILLIERS SUR SEINE", + "code_postal": "77114", + "coordonnees_gps": [ + 48.4563743528, + 3.38301719826 + ], + "libelle_d_acheminement": "VILLIERS SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38301719826, + 48.4563743528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a75454a7cb9a9d58bc6388519bf79223afd4d07", + "fields": { + "code_commune_insee": "77523", + "nom_de_la_commune": "VILLUIS", + "code_postal": "77480", + "coordonnees_gps": [ + 48.4053424747, + 3.35903644752 + ], + "libelle_d_acheminement": "VILLUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35903644752, + 48.4053424747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e324097e9915b3864a3e58c0b1141978945ed40", + "fields": { + "code_commune_insee": "77524", + "nom_de_la_commune": "VIMPELLES", + "code_postal": "77520", + "coordonnees_gps": [ + 48.4430647512, + 3.16654310181 + ], + "libelle_d_acheminement": "VIMPELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16654310181, + 48.4430647512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f0deaad854e30cf321cb36d5fb94a0cf15d8a41", + "fields": { + "code_commune_insee": "78013", + "nom_de_la_commune": "ANDELU", + "code_postal": "78770", + "coordonnees_gps": [ + 48.8882282833, + 1.81107773324 + ], + "libelle_d_acheminement": "ANDELU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81107773324, + 48.8882282833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87e0c5161125f0878cd493a9223022ade09f9e9c", + "fields": { + "code_commune_insee": "78031", + "nom_de_la_commune": "AUFFREVILLE BRASSEUIL", + "code_postal": "78930", + "coordonnees_gps": [ + 48.954418567, + 1.70514751215 + ], + "libelle_d_acheminement": "AUFFREVILLE BRASSEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70514751215, + 48.954418567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d7ad18e3ecbc9697c37eb9ba85a2add026a2a48", + "fields": { + "code_commune_insee": "78048", + "nom_de_la_commune": "BAZAINVILLE", + "code_postal": "78550", + "coordonnees_gps": [ + 48.8073241204, + 1.66749054563 + ], + "libelle_d_acheminement": "BAZAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66749054563, + 48.8073241204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4da3b34e92eadaa6478b3148a671031132a93826", + "fields": { + "code_commune_insee": "78070", + "nom_de_la_commune": "BOINVILLE EN MANTOIS", + "code_postal": "78930", + "coordonnees_gps": [ + 48.9284835934, + 1.74928034755 + ], + "libelle_d_acheminement": "BOINVILLE EN MANTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74928034755, + 48.9284835934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d29460610118f53ed90afd487e6e5d46350f5875", + "fields": { + "code_commune_insee": "78077", + "nom_de_la_commune": "LA BOISSIERE ECOLE", + "code_postal": "78125", + "coordonnees_gps": [ + 48.6898883767, + 1.66775518226 + ], + "libelle_d_acheminement": "LA BOISSIERE ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66775518226, + 48.6898883767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc9a40e92fe7b9d72f8b5c048cff3cbe06c2823a", + "fields": { + "code_commune_insee": "78084", + "nom_de_la_commune": "BOISSY SANS AVOIR", + "code_postal": "78490", + "coordonnees_gps": [ + 48.8210401327, + 1.79753784845 + ], + "libelle_d_acheminement": "BOISSY SANS AVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79753784845, + 48.8210401327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e9934bacd59ae5a0b992449d1394413be860493", + "fields": { + "code_commune_insee": "78087", + "nom_de_la_commune": "BONNELLES", + "code_postal": "78830", + "coordonnees_gps": [ + 48.6181895067, + 2.0296290825 + ], + "libelle_d_acheminement": "BONNELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0296290825, + 48.6181895067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1dd5a1a81b44a391432d4bb2b3d212e2acc7af1", + "fields": { + "code_commune_insee": "78090", + "nom_de_la_commune": "BOUAFLE", + "code_postal": "78410", + "coordonnees_gps": [ + 48.9605828143, + 1.8971510926 + ], + "libelle_d_acheminement": "BOUAFLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8971510926, + 48.9605828143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd84929134b592318602cc2805daa0aef052d477", + "fields": { + "ligne_5": "LES GRESILLONS", + "code_commune_insee": "78123", + "libelle_d_acheminement": "CARRIERES SOUS POISSY", + "code_postal": "78955", + "nom_de_la_commune": "CARRIERES SOUS POISSY", + "coordonnees_gps": [ + 48.9455638989, + 2.02913706544 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02913706544, + 48.9455638989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b65c69eab551f549ba3541318dbf6d7039af8256", + "fields": { + "code_commune_insee": "78128", + "nom_de_la_commune": "CERNAY LA VILLE", + "code_postal": "78720", + "coordonnees_gps": [ + 48.6696344922, + 1.95970981041 + ], + "libelle_d_acheminement": "CERNAY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95970981041, + 48.6696344922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9199ced02b07cc66b52fafd7a83aeccf6094441", + "fields": { + "code_commune_insee": "78133", + "nom_de_la_commune": "CHAMBOURCY", + "code_postal": "78240", + "coordonnees_gps": [ + 48.8960592796, + 2.03321565205 + ], + "libelle_d_acheminement": "CHAMBOURCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03321565205, + 48.8960592796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8686c023682e26a7d378bf21c30ff381ec9be7a9", + "fields": { + "ligne_5": "LE CHESNAY", + "code_commune_insee": "78158", + "libelle_d_acheminement": "LE CHESNAY ROCQUENCOURT", + "code_postal": "78150", + "nom_de_la_commune": "LE CHESNAY ROCQUENCOURT", + "coordonnees_gps": [ + 48.8272397742, + 2.13014908209 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13014908209, + 48.8272397742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6547efbe771b571e563350e8c2c2d6510fe992ad", + "fields": { + "code_commune_insee": "54594", + "nom_de_la_commune": "XAMMES", + "code_postal": "54470", + "coordonnees_gps": [ + 48.978144801, + 5.84898390072 + ], + "libelle_d_acheminement": "XAMMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84898390072, + 48.978144801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfee525dd9ad0503945d5261ed21bd1ecf1e1cda", + "fields": { + "code_commune_insee": "54596", + "nom_de_la_commune": "XEUILLEY", + "code_postal": "54990", + "coordonnees_gps": [ + 48.5619591921, + 6.09070968141 + ], + "libelle_d_acheminement": "XEUILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09070968141, + 48.5619591921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd6d85923fa29d270416ef01bca5146fb05c9a23", + "fields": { + "code_commune_insee": "54601", + "nom_de_la_commune": "XURES", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6903081814, + 6.65734195369 + ], + "libelle_d_acheminement": "XURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65734195369, + 48.6903081814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3381f5874713c43d8f8397d3b048cdd7cf9e4cd4", + "fields": { + "ligne_5": "HAUTECOURT LES BROVILLE", + "code_commune_insee": "55002", + "libelle_d_acheminement": "ABAUCOURT HAUTECOURT", + "code_postal": "55400", + "nom_de_la_commune": "ABAUCOURT HAUTECOURT", + "coordonnees_gps": [ + 49.1969606553, + 5.54868808043 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54868808043, + 49.1969606553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7a9807adca8e5f171188ab1013eb9e844f3372f", + "fields": { + "code_commune_insee": "55011", + "nom_de_la_commune": "ANDERNAY", + "code_postal": "55800", + "coordonnees_gps": [ + 48.783786876, + 4.95243588603 + ], + "libelle_d_acheminement": "ANDERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95243588603, + 48.783786876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "203a9ffe548d547fc38476f7e48137534a345b9c", + "fields": { + "ligne_5": "ST AGNANT SOUS LES COTES", + "code_commune_insee": "55012", + "libelle_d_acheminement": "APREMONT LA FORET", + "code_postal": "55300", + "nom_de_la_commune": "APREMONT LA FORET", + "coordonnees_gps": [ + 48.8438751454, + 5.62186076093 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62186076093, + 48.8438751454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "545d80e7b927564e76ad9f7ffd01ca9fa7cec562", + "fields": { + "code_commune_insee": "55021", + "nom_de_la_commune": "AVILLERS STE CROIX", + "code_postal": "55210", + "coordonnees_gps": [ + 49.0338833425, + 5.70380804793 + ], + "libelle_d_acheminement": "AVILLERS STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70380804793, + 49.0338833425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba07e547b478b3b8fb358d3cceb8d17323b81c03", + "fields": { + "code_commune_insee": "55026", + "nom_de_la_commune": "BADONVILLIERS GERAUVILLIERS", + "code_postal": "55130", + "coordonnees_gps": [ + 48.5444733383, + 5.5777546612 + ], + "libelle_d_acheminement": "BADONVILLIERS GERAUVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5777546612, + 48.5444733383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b02a185b6022e769f2e73ced1248e8d2c6e849fe", + "fields": { + "code_commune_insee": "55032", + "nom_de_la_commune": "BAUDREMONT", + "code_postal": "55260", + "coordonnees_gps": [ + 48.8371703603, + 5.39335538286 + ], + "libelle_d_acheminement": "BAUDREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39335538286, + 48.8371703603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77e49264ec09d11aa8befe0f8d4e738fa8c62b88", + "fields": { + "code_commune_insee": "55036", + "nom_de_la_commune": "BEAUCLAIR", + "code_postal": "55700", + "coordonnees_gps": [ + 49.451925219, + 5.11758186646 + ], + "libelle_d_acheminement": "BEAUCLAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11758186646, + 49.451925219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d08925bd83241222aa03d4bf078524d07dad4ef0", + "fields": { + "code_commune_insee": "55038", + "nom_de_la_commune": "BEAULIEU EN ARGONNE", + "code_postal": "55250", + "coordonnees_gps": [ + 49.0432133518, + 5.0398062849 + ], + "libelle_d_acheminement": "BEAULIEU EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0398062849, + 49.0432133518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3380cb19dafe3c8e4de3687156e2b41fe1262ff0", + "fields": { + "code_commune_insee": "55042", + "nom_de_la_commune": "BELLERAY", + "code_postal": "55100", + "coordonnees_gps": [ + 49.1313430455, + 5.38090978507 + ], + "libelle_d_acheminement": "BELLERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38090978507, + 49.1313430455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9849500895f1eb5e42161dcaaeed391e64523af", + "fields": { + "code_commune_insee": "55065", + "nom_de_la_commune": "BOUREUILLES", + "code_postal": "55270", + "coordonnees_gps": [ + 49.1963115003, + 5.02208212432 + ], + "libelle_d_acheminement": "BOUREUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02208212432, + 49.1963115003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53fefc6ac3bc7b160d9b3087efabd1252df85f10", + "fields": { + "code_commune_insee": "55066", + "nom_de_la_commune": "BOVEE SUR BARBOURE", + "code_postal": "55190", + "coordonnees_gps": [ + 48.6372168576, + 5.51006564419 + ], + "libelle_d_acheminement": "BOVEE SUR BARBOURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51006564419, + 48.6372168576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3235e539a355034725619a84476bc62531c87df8", + "fields": { + "code_commune_insee": "55067", + "nom_de_la_commune": "BOVIOLLES", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6452890077, + 5.41584931677 + ], + "libelle_d_acheminement": "BOVIOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41584931677, + 48.6452890077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "919d6b05f660dad401462b961ba5a8da3f70571f", + "fields": { + "code_commune_insee": "55068", + "nom_de_la_commune": "BRABANT EN ARGONNE", + "code_postal": "55120", + "coordonnees_gps": [ + 49.1207632255, + 5.14345539293 + ], + "libelle_d_acheminement": "BRABANT EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14345539293, + 49.1207632255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "773eab38d80b90af0072b2bfeb14f7792f5c6b5b", + "fields": { + "code_commune_insee": "55073", + "nom_de_la_commune": "BRAS SUR MEUSE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.2078486836, + 5.38950541121 + ], + "libelle_d_acheminement": "BRAS SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38950541121, + 49.2078486836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77f35f93764c2fe285e2ca1fb8589a8fb1d6722e", + "fields": { + "code_commune_insee": "55076", + "nom_de_la_commune": "BREHEVILLE", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3843029047, + 5.33372175915 + ], + "libelle_d_acheminement": "BREHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33372175915, + 49.3843029047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55a23caedaaab88fd474fad6c2aec159ee07eae9", + "fields": { + "code_commune_insee": "55083", + "nom_de_la_commune": "BROUENNES", + "code_postal": "55700", + "coordonnees_gps": [ + 49.5214266627, + 5.25429244028 + ], + "libelle_d_acheminement": "BROUENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25429244028, + 49.5214266627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be658182a65c1deb14ab0c1dfa18b030330f0bec", + "fields": { + "ligne_5": "DARMONT", + "code_commune_insee": "55094", + "libelle_d_acheminement": "BUZY DARMONT", + "code_postal": "55400", + "nom_de_la_commune": "BUZY DARMONT", + "coordonnees_gps": [ + 49.1747296825, + 5.70639284211 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70639284211, + 49.1747296825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a646d33ff5acfa88c5c779249cdc664064bb03d1", + "fields": { + "code_commune_insee": "55103", + "nom_de_la_commune": "CHARPENTRY", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2572362947, + 5.04141957375 + ], + "libelle_d_acheminement": "CHARPENTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04141957375, + 49.2572362947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fc78c8ecc78c7dde241d4ced5a655594647a294", + "fields": { + "code_commune_insee": "55104", + "nom_de_la_commune": "CHASSEY BEAUPRE", + "code_postal": "55130", + "coordonnees_gps": [ + 48.4464179633, + 5.43815444912 + ], + "libelle_d_acheminement": "CHASSEY BEAUPRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43815444912, + 48.4464179633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f1669e942ef4262f944d379a314e4941e21f4a8", + "fields": { + "code_commune_insee": "55109", + "nom_de_la_commune": "CHAUVENCY LE CHATEAU", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5231474391, + 5.30784952619 + ], + "libelle_d_acheminement": "CHAUVENCY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30784952619, + 49.5231474391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92e2da337dca2d2ff2eeaf4ae8dc096baeb5d027", + "fields": { + "code_commune_insee": "55110", + "nom_de_la_commune": "CHAUVENCY ST HUBERT", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5399729551, + 5.29668874531 + ], + "libelle_d_acheminement": "CHAUVENCY ST HUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29668874531, + 49.5399729551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec871b0413b5e5db9452dfdfbbb11ff2dba0e197", + "fields": { + "code_commune_insee": "55121", + "nom_de_la_commune": "COMBRES SOUS LES COTES", + "code_postal": "55160", + "coordonnees_gps": [ + 49.060064851, + 5.62218735388 + ], + "libelle_d_acheminement": "COMBRES SOUS LES COTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62218735388, + 49.060064851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6880cca9e01dceb63f26d4f4a02b585a3f43291", + "fields": { + "code_commune_insee": "55132", + "nom_de_la_commune": "COUSANCES LES FORGES", + "code_postal": "55170", + "coordonnees_gps": [ + 48.6171588991, + 5.0853615873 + ], + "libelle_d_acheminement": "COUSANCES LES FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0853615873, + 48.6171588991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0040c0a93735c9dcc37a345d3a4175f4685f2ee", + "fields": { + "code_commune_insee": "55133", + "nom_de_la_commune": "COUVERTPUIS", + "code_postal": "55290", + "coordonnees_gps": [ + 48.5811715624, + 5.30645025735 + ], + "libelle_d_acheminement": "COUVERTPUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30645025735, + 48.5811715624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "058064bcf64b24655fb8c6425cb61b7162c27f92", + "fields": { + "ligne_5": "ROSIERES EN BLOIS", + "code_commune_insee": "55148", + "libelle_d_acheminement": "DELOUZE ROSIERES", + "code_postal": "55130", + "nom_de_la_commune": "DELOUZE ROSIERES", + "coordonnees_gps": [ + 48.5657451674, + 5.53076706785 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53076706785, + 48.5657451674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bac73fac442e6985d689015406b0287d00c1f7bc", + "fields": { + "code_commune_insee": "55149", + "nom_de_la_commune": "DELUT", + "code_postal": "55150", + "coordonnees_gps": [ + 49.4112381123, + 5.42861600912 + ], + "libelle_d_acheminement": "DELUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42861600912, + 49.4112381123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2941190e5a914ccbb31e25331e273877bb1383d5", + "fields": { + "ligne_5": "ROCQUENCOURT", + "code_commune_insee": "78158", + "libelle_d_acheminement": "LE CHESNAY ROCQUENCOURT", + "code_postal": "78150", + "nom_de_la_commune": "LE CHESNAY ROCQUENCOURT", + "coordonnees_gps": [ + 48.8272397742, + 2.13014908209 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13014908209, + 48.8272397742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac5846b35faed7661c2dbbcd3fde8db3a54ca22d", + "fields": { + "code_commune_insee": "55159", + "nom_de_la_commune": "DOMPCEVRIN", + "code_postal": "55300", + "coordonnees_gps": [ + 48.9279404037, + 5.46777370123 + ], + "libelle_d_acheminement": "DOMPCEVRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46777370123, + 48.9279404037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adf449bc33289292ff7bce186aab137fd544bd78", + "fields": { + "code_commune_insee": "78162", + "nom_de_la_commune": "CHOISEL", + "code_postal": "78460", + "coordonnees_gps": [ + 48.6739368242, + 2.01450641994 + ], + "libelle_d_acheminement": "CHOISEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01450641994, + 48.6739368242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0e4ad0b3e8f848eda6973b33e5eababbe7ffa49", + "fields": { + "code_commune_insee": "55160", + "nom_de_la_commune": "DOMPIERRE AUX BOIS", + "code_postal": "55300", + "coordonnees_gps": [ + 48.9997079464, + 5.59058564532 + ], + "libelle_d_acheminement": "DOMPIERRE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59058564532, + 48.9997079464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a47305083ea1e51bcd485b031e39e5f8ab1e1802", + "fields": { + "code_commune_insee": "78168", + "nom_de_la_commune": "COIGNIERES", + "code_postal": "78310", + "coordonnees_gps": [ + 48.7497670046, + 1.91381870273 + ], + "libelle_d_acheminement": "COIGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91381870273, + 48.7497670046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bde576e2178b7e87f9170dd2e20003022c181f0e", + "fields": { + "code_commune_insee": "55163", + "nom_de_la_commune": "DONCOURT AUX TEMPLIERS", + "code_postal": "55160", + "coordonnees_gps": [ + 49.0599218489, + 5.7217872725 + ], + "libelle_d_acheminement": "DONCOURT AUX TEMPLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7217872725, + 49.0599218489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b1151e25ab31c050ca80e5b71fef56e2c573bc0", + "fields": { + "code_commune_insee": "78192", + "nom_de_la_commune": "DAMMARTIN EN SERVE", + "code_postal": "78111", + "coordonnees_gps": [ + 48.9114065992, + 1.61781290103 + ], + "libelle_d_acheminement": "DAMMARTIN EN SERVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61781290103, + 48.9114065992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "361b9fcc5ed1c603fc9221e5f21c6f52c9abb97e", + "fields": { + "code_commune_insee": "55165", + "nom_de_la_commune": "DOULCON", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3862415142, + 5.15481342523 + ], + "libelle_d_acheminement": "DOULCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15481342523, + 49.3862415142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "097cd348a27c661c56356922cb90d3bc61e6bc24", + "fields": { + "code_commune_insee": "78193", + "nom_de_la_commune": "DAMPIERRE EN YVELINES", + "code_postal": "78720", + "coordonnees_gps": [ + 48.7037164037, + 1.97307941128 + ], + "libelle_d_acheminement": "DAMPIERRE EN YVELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97307941128, + 48.7037164037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b5bdf536c53ba442c1c3e5bcf6732ca76adabf6", + "fields": { + "code_commune_insee": "55172", + "nom_de_la_commune": "LES EPARGES", + "code_postal": "55160", + "coordonnees_gps": [ + 49.0644524312, + 5.58324844754 + ], + "libelle_d_acheminement": "LES EPARGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58324844754, + 49.0644524312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12e32d0079a7adb0506e2c9818421c814ca77955", + "fields": { + "code_commune_insee": "78227", + "nom_de_la_commune": "EVECQUEMONT", + "code_postal": "78740", + "coordonnees_gps": [ + 49.0172176913, + 1.94219313244 + ], + "libelle_d_acheminement": "EVECQUEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94219313244, + 49.0172176913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc6342a3ecd8e57596f3348656cc74da076cf315", + "fields": { + "ligne_5": "DOMREMY AUX BOIS", + "code_commune_insee": "55179", + "libelle_d_acheminement": "ERNEVILLE AUX BOIS", + "code_postal": "55500", + "nom_de_la_commune": "ERNEVILLE AUX BOIS", + "coordonnees_gps": [ + 48.7418948425, + 5.41343354401 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41343354401, + 48.7418948425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db8057f17defe0da63d5b39e5d666d5eb6fd3a7b", + "fields": { + "code_commune_insee": "78237", + "nom_de_la_commune": "FLINS NEUVE EGLISE", + "code_postal": "78790", + "coordonnees_gps": [ + 48.8927473667, + 1.57663299283 + ], + "libelle_d_acheminement": "FLINS NEUVE EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57663299283, + 48.8927473667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cf756baf6c91e1156d8e54a7a0c198ee2ca4599", + "fields": { + "code_commune_insee": "55186", + "nom_de_la_commune": "FAINS VEEL", + "code_postal": "55000", + "coordonnees_gps": [ + 48.779817337, + 5.11255044282 + ], + "libelle_d_acheminement": "FAINS VEEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11255044282, + 48.779817337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80402522fed20299dfd545496901a1e844d69e4e", + "fields": { + "code_commune_insee": "78238", + "nom_de_la_commune": "FLINS SUR SEINE", + "code_postal": "78410", + "coordonnees_gps": [ + 48.9673692016, + 1.87272187331 + ], + "libelle_d_acheminement": "FLINS SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87272187331, + 48.9673692016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eff7f3f4d8d545aff05b805473f95e7d60820a68", + "fields": { + "ligne_5": "VEEL", + "code_commune_insee": "55186", + "libelle_d_acheminement": "FAINS VEEL", + "code_postal": "55000", + "nom_de_la_commune": "FAINS VEEL", + "coordonnees_gps": [ + 48.779817337, + 5.11255044282 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11255044282, + 48.779817337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c2a11ba1fe8e585183d4f79dbaa915ab135fc17", + "fields": { + "code_commune_insee": "78264", + "nom_de_la_commune": "GAMBAISEUIL", + "code_postal": "78490", + "coordonnees_gps": [ + 48.7565484282, + 1.72527322588 + ], + "libelle_d_acheminement": "GAMBAISEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72527322588, + 48.7565484282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a08a27e414ac1e169bbce3d9a1b19940531997c", + "fields": { + "code_commune_insee": "55194", + "nom_de_la_commune": "FOUCAUCOURT SUR THABAS", + "code_postal": "55250", + "coordonnees_gps": [ + 49.0042517123, + 5.09735038261 + ], + "libelle_d_acheminement": "FOUCAUCOURT SUR THABAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09735038261, + 49.0042517123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7150da65dccacd2471f5973582b81f6a184b9222", + "fields": { + "code_commune_insee": "78269", + "nom_de_la_commune": "GAZERAN", + "code_postal": "78125", + "coordonnees_gps": [ + 48.6334275463, + 1.77758974594 + ], + "libelle_d_acheminement": "GAZERAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77758974594, + 48.6334275463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c309a2be974f8bffe01a81320b3634586c6777ff", + "fields": { + "code_commune_insee": "55195", + "nom_de_la_commune": "FOUCHERES AUX BOIS", + "code_postal": "55500", + "coordonnees_gps": [ + 48.631196437, + 5.25056095689 + ], + "libelle_d_acheminement": "FOUCHERES AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25056095689, + 48.631196437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8fa9015a513fa6df265890ddaeeba711eea543c", + "fields": { + "code_commune_insee": "78278", + "nom_de_la_commune": "GOUPILLIERES", + "code_postal": "78770", + "coordonnees_gps": [ + 48.8811163086, + 1.76679868988 + ], + "libelle_d_acheminement": "GOUPILLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76679868988, + 48.8811163086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "798411d5e929ec589392ecee94950571e90deacb", + "fields": { + "code_commune_insee": "55199", + "nom_de_la_commune": "FROIDOS", + "code_postal": "55120", + "coordonnees_gps": [ + 49.0603189577, + 5.11809128238 + ], + "libelle_d_acheminement": "FROIDOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11809128238, + 49.0603189577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e31a5a0d7fb13e1fb03ee6ee013e6e087d023d9", + "fields": { + "code_commune_insee": "78283", + "nom_de_la_commune": "GRANDCHAMP", + "code_postal": "78113", + "coordonnees_gps": [ + 48.7197572172, + 1.61429077254 + ], + "libelle_d_acheminement": "GRANDCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61429077254, + 48.7197572172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83b5930c2c805fa64ee9c51bca44d43a2d9e92e4", + "fields": { + "code_commune_insee": "55206", + "nom_de_la_commune": "GERCOURT ET DRILLANCOURT", + "code_postal": "55110", + "coordonnees_gps": [ + 49.282283356, + 5.23384529214 + ], + "libelle_d_acheminement": "GERCOURT ET DRILLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23384529214, + 49.282283356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ee7afe86e956d28c63bac5c6d04ee2249250865", + "fields": { + "code_commune_insee": "78291", + "nom_de_la_commune": "GUERVILLE", + "code_postal": "78930", + "coordonnees_gps": [ + 48.9523717718, + 1.74080558769 + ], + "libelle_d_acheminement": "GUERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74080558769, + 48.9523717718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34ac59f2d145edd9d811a1305f8929be0887c653", + "fields": { + "code_commune_insee": "55208", + "nom_de_la_commune": "GESNES EN ARGONNE", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3059315656, + 5.05548499562 + ], + "libelle_d_acheminement": "GESNES EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05548499562, + 49.3059315656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "282638a135c3f4ac2d7b166bc1241319fac228ff", + "fields": { + "code_commune_insee": "78317", + "nom_de_la_commune": "JAMBVILLE", + "code_postal": "78440", + "coordonnees_gps": [ + 49.0484754419, + 1.84836541189 + ], + "libelle_d_acheminement": "JAMBVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84836541189, + 49.0484754419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40fa622572913adc9cb7e67ce17b911e56c92684", + "fields": { + "ligne_5": "TOURAILLES SOUS BOIS", + "code_commune_insee": "55215", + "libelle_d_acheminement": "GONDRECOURT LE CHATEAU", + "code_postal": "55130", + "nom_de_la_commune": "GONDRECOURT LE CHATEAU", + "coordonnees_gps": [ + 48.4927414057, + 5.50567222525 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50567222525, + 48.4927414057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d8f7972b9f78e6556f2f5bf9f433ee67b77d39d", + "fields": { + "code_commune_insee": "78321", + "nom_de_la_commune": "JOUARS PONTCHARTRAIN", + "code_postal": "78760", + "coordonnees_gps": [ + 48.7904544648, + 1.90784227893 + ], + "libelle_d_acheminement": "JOUARS PONTCHARTRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90784227893, + 48.7904544648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aa1da16b416b8f1e647cb1614357e2fe9b35a57", + "fields": { + "code_commune_insee": "55232", + "nom_de_la_commune": "HARVILLE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.0956539028, + 5.72863323305 + ], + "libelle_d_acheminement": "HARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72863323305, + 49.0956539028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79c1224c870d142de3a77e9bc7803767fd867297", + "fields": { + "code_commune_insee": "78327", + "nom_de_la_commune": "JUZIERS", + "code_postal": "78820", + "coordonnees_gps": [ + 48.9999173467, + 1.84036602544 + ], + "libelle_d_acheminement": "JUZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84036602544, + 48.9999173467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0ac9d876d4b047501236b75ec25a933fa6f0578", + "fields": { + "code_commune_insee": "55236", + "nom_de_la_commune": "HAUDAINVILLE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.1247629986, + 5.42686617859 + ], + "libelle_d_acheminement": "HAUDAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42686617859, + 49.1247629986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53b2f4ee64e696078811c79853480b0004aced9c", + "fields": { + "ligne_5": "CRESSELY", + "code_commune_insee": "78356", + "libelle_d_acheminement": "MAGNY LES HAMEAUX", + "code_postal": "78114", + "nom_de_la_commune": "MAGNY LES HAMEAUX", + "coordonnees_gps": [ + 48.7410207273, + 2.0519793397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0519793397, + 48.7410207273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50f91b3a86d7f5c60b259115e2aec4e0040ed3ae", + "fields": { + "code_commune_insee": "55247", + "nom_de_la_commune": "HORVILLE EN ORNOIS", + "code_postal": "55130", + "coordonnees_gps": [ + 48.4878089513, + 5.46806713006 + ], + "libelle_d_acheminement": "HORVILLE EN ORNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46806713006, + 48.4878089513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53164d1892a13a59cb20b32141a760995d48de7c", + "fields": { + "code_commune_insee": "78366", + "nom_de_la_commune": "MAREIL LE GUYON", + "code_postal": "78490", + "coordonnees_gps": [ + 48.7910883719, + 1.85148876174 + ], + "libelle_d_acheminement": "MAREIL LE GUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85148876174, + 48.7910883719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8fac0ed77610c357ab505ebf655531556e0c0f2", + "fields": { + "code_commune_insee": "55250", + "nom_de_la_commune": "INOR", + "code_postal": "55700", + "coordonnees_gps": [ + 49.5549325347, + 5.16437044612 + ], + "libelle_d_acheminement": "INOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16437044612, + 49.5549325347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44a47542e747d9ba082fd9f9a50e7dccca0e1634", + "fields": { + "code_commune_insee": "78380", + "nom_de_la_commune": "MAULE", + "code_postal": "78580", + "coordonnees_gps": [ + 48.9078548612, + 1.83959534526 + ], + "libelle_d_acheminement": "MAULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83959534526, + 48.9078548612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f43af7d784733f4d7515dde41d5b6e831cf4cc17", + "fields": { + "code_commune_insee": "55266", + "nom_de_la_commune": "LACHALADE", + "code_postal": "55120", + "coordonnees_gps": [ + 49.1756905147, + 4.99292199348 + ], + "libelle_d_acheminement": "LACHALADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99292199348, + 49.1756905147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb46f091fc10f935a0bca20e3b012d1cfad60abf", + "fields": { + "code_commune_insee": "78381", + "nom_de_la_commune": "MAULETTE", + "code_postal": "78550", + "coordonnees_gps": [ + 48.7839119459, + 1.61644019132 + ], + "libelle_d_acheminement": "MAULETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61644019132, + 48.7839119459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66d0260d7d95736c3345affa7551e5dffd030ed2", + "fields": { + "code_commune_insee": "55271", + "nom_de_la_commune": "LAHEYCOURT", + "code_postal": "55800", + "coordonnees_gps": [ + 48.9009724444, + 5.03016026608 + ], + "libelle_d_acheminement": "LAHEYCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03016026608, + 48.9009724444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7796daf6fe01f3e0f4018ef1433fea384831092", + "fields": { + "code_commune_insee": "78396", + "nom_de_la_commune": "LE MESNIL LE ROI", + "code_postal": "78600", + "coordonnees_gps": [ + 48.9257999518, + 2.1221732386 + ], + "libelle_d_acheminement": "LE MESNIL LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1221732386, + 48.9257999518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dc4858edb82e9764945b41ac02cb5b62cc16a78", + "fields": { + "ligne_5": "LAVIGNEVILLE", + "code_commune_insee": "55274", + "libelle_d_acheminement": "LAMORVILLE", + "code_postal": "55300", + "nom_de_la_commune": "LAMORVILLE", + "coordonnees_gps": [ + 48.964535147, + 5.59226400853 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59226400853, + 48.964535147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ad28d9c86a950a2a89b98afb7df723bab2249b4", + "fields": { + "code_commune_insee": "78398", + "nom_de_la_commune": "LES MESNULS", + "code_postal": "78490", + "coordonnees_gps": [ + 48.754542649, + 1.83436184333 + ], + "libelle_d_acheminement": "LES MESNULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83436184333, + 48.754542649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70113230c89b799d62c91fcc1c3abe90c968dba9", + "fields": { + "code_commune_insee": "55276", + "nom_de_la_commune": "LANDRECOURT LEMPIRE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.0991326551, + 5.32989005207 + ], + "libelle_d_acheminement": "LANDRECOURT LEMPIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32989005207, + 49.0991326551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3573bed4c9911f20fd1d7ff9a442e6669e9a24a", + "fields": { + "code_commune_insee": "78406", + "nom_de_la_commune": "MILON LA CHAPELLE", + "code_postal": "78470", + "coordonnees_gps": [ + 48.7284642837, + 2.04661853944 + ], + "libelle_d_acheminement": "MILON LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04661853944, + 48.7284642837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb3d086ce0d3fffee334f4beed537d06fa72a8a0", + "fields": { + "ligne_5": "LEMPIRE AUX BOIS", + "code_commune_insee": "55276", + "libelle_d_acheminement": "LANDRECOURT LEMPIRE", + "code_postal": "55100", + "nom_de_la_commune": "LANDRECOURT LEMPIRE", + "coordonnees_gps": [ + 49.0991326551, + 5.32989005207 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32989005207, + 49.0991326551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ab9b03312e865385a2f5235c9b357c8a0e1451f", + "fields": { + "code_commune_insee": "78460", + "nom_de_la_commune": "OINVILLE SUR MONTCIENT", + "code_postal": "78250", + "coordonnees_gps": [ + 49.0255099055, + 1.84612045415 + ], + "libelle_d_acheminement": "OINVILLE SUR MONTCIENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84612045415, + 49.0255099055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68ea049584c261be3d1c762ed04bb184fc7c990c", + "fields": { + "code_commune_insee": "55279", + "nom_de_la_commune": "LANEUVILLE SUR MEUSE", + "code_postal": "55700", + "coordonnees_gps": [ + 49.4960126597, + 5.12109125774 + ], + "libelle_d_acheminement": "LANEUVILLE SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12109125774, + 49.4960126597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54fd2c2b7b95287f0e92c69903c45f99bd95eb9b", + "fields": { + "code_commune_insee": "78465", + "nom_de_la_commune": "ORGERUS", + "code_postal": "78910", + "coordonnees_gps": [ + 48.8379711706, + 1.69620236301 + ], + "libelle_d_acheminement": "ORGERUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69620236301, + 48.8379711706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e57f386ea23c69736d9a24d49e1f939da414f313", + "fields": { + "code_commune_insee": "55295", + "nom_de_la_commune": "LISLE EN BARROIS", + "code_postal": "55250", + "coordonnees_gps": [ + 48.9202691464, + 5.08297428907 + ], + "libelle_d_acheminement": "LISLE EN BARROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08297428907, + 48.9202691464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a051e25ea01184b75fe80d23c99614bb81450bb", + "fields": { + "code_commune_insee": "78474", + "nom_de_la_commune": "ORVILLIERS", + "code_postal": "78910", + "coordonnees_gps": [ + 48.8548104012, + 1.64252100195 + ], + "libelle_d_acheminement": "ORVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64252100195, + 48.8548104012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "901ddee6100ccbcf57fa904a869b03ea64affc8c", + "fields": { + "code_commune_insee": "55303", + "nom_de_la_commune": "LOUPMONT", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8661005424, + 5.67917505776 + ], + "libelle_d_acheminement": "LOUPMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67917505776, + 48.8661005424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6ed3650a9b58b1e0b03964655264f15394bf5ac", + "fields": { + "code_commune_insee": "78498", + "nom_de_la_commune": "POISSY", + "code_postal": "78300", + "coordonnees_gps": [ + 48.9235359371, + 2.02715552772 + ], + "libelle_d_acheminement": "POISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02715552772, + 48.9235359371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "789370d8bab7e134e778d1e6c3a69289f7ee66f1", + "fields": { + "code_commune_insee": "55307", + "nom_de_la_commune": "LOUVEMONT COTE DU POIVRE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.2407092317, + 5.40169210567 + ], + "libelle_d_acheminement": "LOUVEMONT COTE DU POIVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40169210567, + 49.2407092317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e50fe8a18bb1f5b246bb628047b0458fbcc3c926", + "fields": { + "code_commune_insee": "78518", + "nom_de_la_commune": "RENNEMOULIN", + "code_postal": "78590", + "coordonnees_gps": [ + 48.8332483875, + 2.04229462765 + ], + "libelle_d_acheminement": "RENNEMOULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04229462765, + 48.8332483875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "051ec6f8c206bb58aadb965f6fbb46508f294744", + "fields": { + "code_commune_insee": "55312", + "nom_de_la_commune": "MAIZEY", + "code_postal": "55300", + "coordonnees_gps": [ + 48.9230075702, + 5.53791038683 + ], + "libelle_d_acheminement": "MAIZEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53791038683, + 48.9230075702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea29b81a1b9c4900193a350a75cc916f2ad95871", + "fields": { + "code_commune_insee": "78520", + "nom_de_la_commune": "RICHEBOURG", + "code_postal": "78550", + "coordonnees_gps": [ + 48.8248023552, + 1.63460154303 + ], + "libelle_d_acheminement": "RICHEBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63460154303, + 48.8248023552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56b67c1068c167be22c9954da1ccbd520ab7ca4a", + "fields": { + "code_commune_insee": "55326", + "nom_de_la_commune": "MAULAN", + "code_postal": "55500", + "coordonnees_gps": [ + 48.666686474, + 5.25265458532 + ], + "libelle_d_acheminement": "MAULAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25265458532, + 48.666686474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfca65006e9a14a655745bf4b127a24565fccf34", + "fields": { + "code_commune_insee": "78545", + "nom_de_la_commune": "ST CYR L ECOLE", + "code_postal": "78210", + "coordonnees_gps": [ + 48.8065759294, + 2.0659250703 + ], + "libelle_d_acheminement": "ST CYR L ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0659250703, + 48.8065759294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f97260227b2e346a172bd2642a2a0d0ec98e327", + "fields": { + "code_commune_insee": "55333", + "nom_de_la_commune": "MENIL AUX BOIS", + "code_postal": "55260", + "coordonnees_gps": [ + 48.8029208567, + 5.43679104224 + ], + "libelle_d_acheminement": "MENIL AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43679104224, + 48.8029208567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e49e35f2228d8003161b9108761f3129e2247e66", + "fields": { + "ligne_5": "FOURQUEUX", + "code_commune_insee": "78551", + "libelle_d_acheminement": "ST GERMAIN EN LAYE", + "code_postal": "78112", + "nom_de_la_commune": "ST GERMAIN EN LAYE", + "coordonnees_gps": [ + 48.9407041394, + 2.09870929375 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09870929375, + 48.9407041394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4daca06cc527ad3b89a4e3096dc5248315b6dbf", + "fields": { + "code_commune_insee": "55340", + "nom_de_la_commune": "MOGNEVILLE", + "code_postal": "55800", + "coordonnees_gps": [ + 48.7751610805, + 4.99231252941 + ], + "libelle_d_acheminement": "MOGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99231252941, + 48.7751610805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "894e476af2dd7b0af77419fd825024add2c89433", + "fields": { + "code_commune_insee": "78559", + "nom_de_la_commune": "ST ILLIERS LE BOIS", + "code_postal": "78980", + "coordonnees_gps": [ + 48.9650939758, + 1.5118698164 + ], + "libelle_d_acheminement": "ST ILLIERS LE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5118698164, + 48.9650939758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf09b70be06e4b09407b8717fe6d4fc7767cf162", + "fields": { + "code_commune_insee": "55341", + "nom_de_la_commune": "MOIREY FLABAS CREPION", + "code_postal": "55150", + "coordonnees_gps": [ + 49.298309748, + 5.39163772407 + ], + "libelle_d_acheminement": "MOIREY FLABAS CREPION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39163772407, + 49.298309748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "179f99b28fbc3bb6f44fcf47460abd4ca1d421e8", + "fields": { + "code_commune_insee": "78562", + "nom_de_la_commune": "ST LEGER EN YVELINES", + "code_postal": "78610", + "coordonnees_gps": [ + 48.7300275731, + 1.75992099738 + ], + "libelle_d_acheminement": "ST LEGER EN YVELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75992099738, + 48.7300275731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74fdae4fdd1854ce4d9a1500de77b443aeacd258", + "fields": { + "code_commune_insee": "55344", + "nom_de_la_commune": "MONTBRAS", + "code_postal": "55140", + "coordonnees_gps": [ + 48.5153868171, + 5.70082281043 + ], + "libelle_d_acheminement": "MONTBRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70082281043, + 48.5153868171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cb08d517b37cb7568f1727244ee8ac916e9c652", + "fields": { + "code_commune_insee": "78567", + "nom_de_la_commune": "ST MARTIN LA GARENNE", + "code_postal": "78520", + "coordonnees_gps": [ + 49.0359613307, + 1.6773072296 + ], + "libelle_d_acheminement": "ST MARTIN LA GARENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6773072296, + 49.0359613307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c6aa193fe7a5bdef293e97777c0eb6c61036809", + "fields": { + "code_commune_insee": "55345", + "nom_de_la_commune": "MONT DEVANT SASSEY", + "code_postal": "55110", + "coordonnees_gps": [ + 49.411249525, + 5.15862269798 + ], + "libelle_d_acheminement": "MONT DEVANT SASSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15862269798, + 49.411249525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d622058f7baaa72afea5f70f0e6b644ab3f95be0", + "fields": { + "code_commune_insee": "78575", + "nom_de_la_commune": "ST REMY LES CHEVREUSE", + "code_postal": "78470", + "coordonnees_gps": [ + 48.703873758, + 2.07898924956 + ], + "libelle_d_acheminement": "ST REMY LES CHEVREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07898924956, + 48.703873758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "baaa621c29b7aa366fcb87839312083849f4acb0", + "fields": { + "code_commune_insee": "55363", + "nom_de_la_commune": "MOULOTTE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.1019942644, + 5.75171537684 + ], + "libelle_d_acheminement": "MOULOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75171537684, + 49.1019942644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12e2aee3a6a5a93908345fe48178ca6831085d46", + "fields": { + "code_commune_insee": "78601", + "nom_de_la_commune": "SONCHAMP", + "code_postal": "78120", + "coordonnees_gps": [ + 48.5880930813, + 1.86888636176 + ], + "libelle_d_acheminement": "SONCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86888636176, + 48.5880930813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62b98a36561e74f1e7b01be1ce3c129a4a55bc5c", + "fields": { + "ligne_5": "BUSSY LA COTE", + "code_commune_insee": "55366", + "libelle_d_acheminement": "VAL D ORNAIN", + "code_postal": "55000", + "nom_de_la_commune": "VAL D ORNAIN", + "coordonnees_gps": [ + 48.8072006792, + 5.08545079895 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08545079895, + 48.8072006792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bebedcac8c45a70da15b439c0a63ba41df98591", + "fields": { + "code_commune_insee": "78638", + "nom_de_la_commune": "VAUX SUR SEINE", + "code_postal": "78740", + "coordonnees_gps": [ + 49.0095815158, + 1.97449626486 + ], + "libelle_d_acheminement": "VAUX SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97449626486, + 49.0095815158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9bf46800c62d94db3f2b26cb78c4f8dd3173650", + "fields": { + "ligne_5": "VARNEY", + "code_commune_insee": "55366", + "libelle_d_acheminement": "VAL D ORNAIN", + "code_postal": "55000", + "nom_de_la_commune": "VAL D ORNAIN", + "coordonnees_gps": [ + 48.8072006792, + 5.08545079895 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08545079895, + 48.8072006792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "186a5acdb9122df8e9138cea859f61a0fcb94080", + "fields": { + "ligne_5": "MARSINVAL", + "code_commune_insee": "78643", + "libelle_d_acheminement": "VERNOUILLET", + "code_postal": "78540", + "nom_de_la_commune": "VERNOUILLET", + "coordonnees_gps": [ + 48.9655697167, + 1.97530302109 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97530302109, + 48.9655697167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6613be29379b90ba2f6b585bcffc5321c15441b", + "fields": { + "code_commune_insee": "55367", + "nom_de_la_commune": "MUZERAY", + "code_postal": "55230", + "coordonnees_gps": [ + 49.3387535839, + 5.62224266222 + ], + "libelle_d_acheminement": "MUZERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62224266222, + 49.3387535839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50edce78b7d8bc74944f8f48ddd0c48558b70878", + "fields": { + "code_commune_insee": "78655", + "nom_de_la_commune": "VIEILLE EGLISE EN YVELINES", + "code_postal": "78125", + "coordonnees_gps": [ + 48.669743712, + 1.87479828191 + ], + "libelle_d_acheminement": "VIEILLE EGLISE EN YVELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87479828191, + 48.669743712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "578004791ea566829a39ecddbe147840f56ca5c5", + "fields": { + "code_commune_insee": "55369", + "nom_de_la_commune": "NAIVES ROSIERES", + "code_postal": "55000", + "coordonnees_gps": [ + 48.8002647073, + 5.2290200392 + ], + "libelle_d_acheminement": "NAIVES ROSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2290200392, + 48.8002647073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aa235a13c69d6717203e90fd77f0aa501784f8c", + "fields": { + "code_commune_insee": "78674", + "nom_de_la_commune": "VILLEPREUX", + "code_postal": "78450", + "coordonnees_gps": [ + 48.8311450096, + 2.0130908572 + ], + "libelle_d_acheminement": "VILLEPREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0130908572, + 48.8311450096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "615d248c8be7c08bc1d2c3e7757270082a28bb3c", + "fields": { + "code_commune_insee": "55370", + "nom_de_la_commune": "NAIX AUX FORGES", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6330383742, + 5.37144035596 + ], + "libelle_d_acheminement": "NAIX AUX FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37144035596, + 48.6330383742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "565668be9fb07bdcd40bd016ed748deb217d4e06", + "fields": { + "code_commune_insee": "78677", + "nom_de_la_commune": "VILLETTE", + "code_postal": "78930", + "coordonnees_gps": [ + 48.9262788706, + 1.69374172457 + ], + "libelle_d_acheminement": "VILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69374172457, + 48.9262788706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5641fa3201a1436cbba816aa7a4eda5e19619e44", + "fields": { + "code_commune_insee": "55372", + "nom_de_la_commune": "NANCOIS SUR ORNAIN", + "code_postal": "55500", + "coordonnees_gps": [ + 48.7206725009, + 5.31852190946 + ], + "libelle_d_acheminement": "NANCOIS SUR ORNAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31852190946, + 48.7206725009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2483da19233fe7bf9ef1195f37f01e6a71035c45", + "fields": { + "code_commune_insee": "78681", + "nom_de_la_commune": "VILLIERS LE MAHIEU", + "code_postal": "78770", + "coordonnees_gps": [ + 48.8533372475, + 1.77379972597 + ], + "libelle_d_acheminement": "VILLIERS LE MAHIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77379972597, + 48.8533372475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2790e1874ede46e6318b9f0334be480c91010cf7", + "fields": { + "code_commune_insee": "55383", + "nom_de_la_commune": "NEUVILLY EN ARGONNE", + "code_postal": "55120", + "coordonnees_gps": [ + 49.1634575272, + 5.04657677548 + ], + "libelle_d_acheminement": "NEUVILLY EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04657677548, + 49.1634575272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f2a5c5cb94b28f3c136e6093fc1af65c3d075dd", + "fields": { + "code_commune_insee": "79002", + "nom_de_la_commune": "ADILLY", + "code_postal": "79200", + "coordonnees_gps": [ + 46.7014595722, + -0.315563835199 + ], + "libelle_d_acheminement": "ADILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.315563835199, + 46.7014595722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0ed175a31122a1b3393fadf387fdaa9ce109c20", + "fields": { + "ligne_5": "BLERCOURT", + "code_commune_insee": "55385", + "libelle_d_acheminement": "NIXEVILLE BLERCOURT", + "code_postal": "55120", + "nom_de_la_commune": "NIXEVILLE BLERCOURT", + "coordonnees_gps": [ + 49.1118913184, + 5.26188176234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26188176234, + 49.1118913184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68c50d82a17a4a9afe27b4d3ec8d3b983f4d6d9b", + "fields": { + "code_commune_insee": "79005", + "nom_de_la_commune": "AIRVAULT", + "code_postal": "79600", + "coordonnees_gps": [ + 46.8329725103, + -0.135880248296 + ], + "libelle_d_acheminement": "AIRVAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.135880248296, + 46.8329725103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16933fc17cd23ea0d0a8eefd9a5dadf566c5c943", + "fields": { + "code_commune_insee": "55386", + "nom_de_la_commune": "NONSARD LAMARCHE", + "code_postal": "55210", + "coordonnees_gps": [ + 48.9387436314, + 5.75541848294 + ], + "libelle_d_acheminement": "NONSARD LAMARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75541848294, + 48.9387436314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "233e93b886c68eb0eeeb3227c6492057b914f5fc", + "fields": { + "ligne_5": "MOUTIERS SOUS ARGENTON", + "code_commune_insee": "79013", + "libelle_d_acheminement": "ARGENTONNAY", + "code_postal": "79150", + "nom_de_la_commune": "ARGENTONNAY", + "coordonnees_gps": [ + 46.9784261272, + -0.468875242934 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.468875242934, + 46.9784261272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dca80c0eb7ba6e8c7cbea7a781a53f85a616f30", + "fields": { + "code_commune_insee": "55388", + "nom_de_la_commune": "NOYERS AUZECOURT", + "code_postal": "55800", + "coordonnees_gps": [ + 48.8849963805, + 4.9795655698 + ], + "libelle_d_acheminement": "NOYERS AUZECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9795655698, + 48.8849963805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70e448e9f10de600b968f17a82d165171e752382", + "fields": { + "ligne_5": "ULCOT", + "code_commune_insee": "79013", + "libelle_d_acheminement": "ARGENTONNAY", + "code_postal": "79150", + "nom_de_la_commune": "ARGENTONNAY", + "coordonnees_gps": [ + 46.9784261272, + -0.468875242934 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.468875242934, + 46.9784261272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c249ab555e6add46751ddb48a9bfa7299a2a4a36", + "fields": { + "ligne_5": "AUZECOURT", + "code_commune_insee": "55388", + "libelle_d_acheminement": "NOYERS AUZECOURT", + "code_postal": "55800", + "nom_de_la_commune": "NOYERS AUZECOURT", + "coordonnees_gps": [ + 48.8849963805, + 4.9795655698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9795655698, + 48.8849963805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49bd776c9ce5f8afc54f7892c6dfa7fd712b9990", + "fields": { + "code_commune_insee": "79029", + "nom_de_la_commune": "BEAULIEU SOUS PARTHENAY", + "code_postal": "79420", + "coordonnees_gps": [ + 46.5772588868, + -0.208446737008 + ], + "libelle_d_acheminement": "BEAULIEU SOUS PARTHENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.208446737008, + 46.5772588868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "750ab06dbaf7c9c7e531dbac40cb0e1536511b30", + "fields": { + "code_commune_insee": "55399", + "nom_de_la_commune": "PAREID", + "code_postal": "55160", + "coordonnees_gps": [ + 49.1238004957, + 5.70672304736 + ], + "libelle_d_acheminement": "PAREID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70672304736, + 49.1238004957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cae8cd374fba33f1d93e92a4f722c2d36f7d2b92", + "fields": { + "code_commune_insee": "79031", + "nom_de_la_commune": "BEAUVOIR SUR NIORT", + "code_postal": "79360", + "coordonnees_gps": [ + 46.180941644, + -0.473314553431 + ], + "libelle_d_acheminement": "BEAUVOIR SUR NIORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.473314553431, + 46.180941644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59cda2693880eeaac37061c9b5d703e151feb45e", + "fields": { + "code_commune_insee": "55400", + "nom_de_la_commune": "PARFONDRUPT", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1473840735, + 5.72473139951 + ], + "libelle_d_acheminement": "PARFONDRUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72473139951, + 49.1473840735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "187bc798ac2feca346e48ab476ab6f6fdc0f974f", + "fields": { + "ligne_5": "LA REVETIZON", + "code_commune_insee": "79031", + "libelle_d_acheminement": "BEAUVOIR SUR NIORT", + "code_postal": "79360", + "nom_de_la_commune": "BEAUVOIR SUR NIORT", + "coordonnees_gps": [ + 46.180941644, + -0.473314553431 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.473314553431, + 46.180941644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b392debae41110b879486a40d22c0ce8b02aa87b", + "fields": { + "code_commune_insee": "55403", + "nom_de_la_commune": "PEUVILLERS", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3670336223, + 5.39792536022 + ], + "libelle_d_acheminement": "PEUVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39792536022, + 49.3670336223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "714e0fd326ccb971a7af29a1ca8be81c1bffc1c6", + "fields": { + "code_commune_insee": "79046", + "nom_de_la_commune": "LE BOURDET", + "code_postal": "79210", + "coordonnees_gps": [ + 46.238410731, + -0.635204990837 + ], + "libelle_d_acheminement": "LE BOURDET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.635204990837, + 46.238410731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "573a5285b937b99f96c2490f2da3fcfdb65c615f", + "fields": { + "code_commune_insee": "55405", + "nom_de_la_commune": "PILLON", + "code_postal": "55230", + "coordonnees_gps": [ + 49.3719058703, + 5.57959766721 + ], + "libelle_d_acheminement": "PILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57959766721, + 49.3719058703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab10e04f39df3e6a2f5a9fb06020d1524011a43f", + "fields": { + "ligne_5": "BREUIL CHAUSSEE", + "code_commune_insee": "79049", + "libelle_d_acheminement": "BRESSUIRE", + "code_postal": "79300", + "nom_de_la_commune": "BRESSUIRE", + "coordonnees_gps": [ + 46.8545755683, + -0.479375922286 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479375922286, + 46.8545755683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64a6ae0ea6035cea3c5efa1ecb633af83f28ce63", + "fields": { + "code_commune_insee": "55414", + "nom_de_la_commune": "RANCOURT SUR ORNAIN", + "code_postal": "55800", + "coordonnees_gps": [ + 48.8201062551, + 4.91562191671 + ], + "libelle_d_acheminement": "RANCOURT SUR ORNAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91562191671, + 48.8201062551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cc9a06137803479ff486dae7859a1d9a3d71e1e", + "fields": { + "ligne_5": "CLAZAY", + "code_commune_insee": "79049", + "libelle_d_acheminement": "BRESSUIRE", + "code_postal": "79300", + "nom_de_la_commune": "BRESSUIRE", + "coordonnees_gps": [ + 46.8545755683, + -0.479375922286 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479375922286, + 46.8545755683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5892e3147d0c1195302a4cf384742ce0c2a62ded", + "fields": { + "code_commune_insee": "55434", + "nom_de_la_commune": "RIGNY ST MARTIN", + "code_postal": "55140", + "coordonnees_gps": [ + 48.6115007542, + 5.74768119219 + ], + "libelle_d_acheminement": "RIGNY ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74768119219, + 48.6115007542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cbe24ad3ea0bb02c48ec5ba654dce625fb4edf7", + "fields": { + "ligne_5": "ST SAUVEUR", + "code_commune_insee": "79049", + "libelle_d_acheminement": "BRESSUIRE", + "code_postal": "79300", + "nom_de_la_commune": "BRESSUIRE", + "coordonnees_gps": [ + 46.8545755683, + -0.479375922286 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479375922286, + 46.8545755683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b405e767bc6a8987c55c4efd481dff9b15d0c5d", + "fields": { + "code_commune_insee": "55439", + "nom_de_la_commune": "RONVAUX", + "code_postal": "55160", + "coordonnees_gps": [ + 49.1308317869, + 5.56071907553 + ], + "libelle_d_acheminement": "RONVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56071907553, + 49.1308317869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51e2b795f40b94207076d273d465c48435221030", + "fields": { + "code_commune_insee": "79050", + "nom_de_la_commune": "BRETIGNOLLES", + "code_postal": "79140", + "coordonnees_gps": [ + 46.8727956003, + -0.594560629836 + ], + "libelle_d_acheminement": "BRETIGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.594560629836, + 46.8727956003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1858d1e72287569fd983a9dae7e5a29a9c1100af", + "fields": { + "code_commune_insee": "55443", + "nom_de_la_commune": "ROUVRES EN WOEVRE", + "code_postal": "55400", + "coordonnees_gps": [ + 49.224367243, + 5.6960269701 + ], + "libelle_d_acheminement": "ROUVRES EN WOEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6960269701, + 49.224367243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54c671b8de7af40f5c4a995d473ec6df33aa196d", + "fields": { + "code_commune_insee": "79055", + "nom_de_la_commune": "BRIEUIL SUR CHIZE", + "code_postal": "79170", + "coordonnees_gps": [ + 46.1263946231, + -0.326929907334 + ], + "libelle_d_acheminement": "BRIEUIL SUR CHIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.326929907334, + 46.1263946231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71506a5abbd2ae462aff89d4b7187c2bf4f44efe", + "fields": { + "code_commune_insee": "55445", + "nom_de_la_commune": "ROUVROIS SUR OTHAIN", + "code_postal": "55230", + "coordonnees_gps": [ + 49.3871461165, + 5.62761373552 + ], + "libelle_d_acheminement": "ROUVROIS SUR OTHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62761373552, + 49.3871461165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1c6658585ab03944550988479135a55114d4fd0", + "fields": { + "ligne_5": "ST MEDARD", + "code_commune_insee": "79061", + "libelle_d_acheminement": "CELLES SUR BELLE", + "code_postal": "79370", + "nom_de_la_commune": "CELLES SUR BELLE", + "coordonnees_gps": [ + 46.2405369288, + -0.218181064771 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.218181064771, + 46.2405369288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20262aaf10e00bbe398acc6bdd13b2bd62d3a8ae", + "fields": { + "code_commune_insee": "55453", + "nom_de_la_commune": "ST ANDRE EN BARROIS", + "code_postal": "55220", + "coordonnees_gps": [ + 49.0097722899, + 5.23315841367 + ], + "libelle_d_acheminement": "ST ANDRE EN BARROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23315841367, + 49.0097722899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed3f7c94b83aee9a3a925257d8f1536c81836eb6", + "fields": { + "ligne_5": "BOUILLE ST PAUL", + "code_commune_insee": "79063", + "libelle_d_acheminement": "VAL EN VIGNES", + "code_postal": "79290", + "nom_de_la_commune": "VAL EN VIGNES", + "coordonnees_gps": [ + 47.0601100117, + -0.36392979915 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36392979915, + 47.0601100117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf5254178a531e1a216d329fead60b73629b23d3", + "fields": { + "code_commune_insee": "55454", + "nom_de_la_commune": "ST AUBIN SUR AIRE", + "code_postal": "55500", + "coordonnees_gps": [ + 48.7154934695, + 5.44781303231 + ], + "libelle_d_acheminement": "ST AUBIN SUR AIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44781303231, + 48.7154934695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "822da6c5aab9b3831087fff71105dfad653fe113", + "fields": { + "code_commune_insee": "79069", + "nom_de_la_commune": "CHANTELOUP", + "code_postal": "79320", + "coordonnees_gps": [ + 46.7625455282, + -0.505290757688 + ], + "libelle_d_acheminement": "CHANTELOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.505290757688, + 46.7625455282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a25b54f0dd5de20958577b5b38c44593af5b500", + "fields": { + "code_commune_insee": "55457", + "nom_de_la_commune": "ST HILAIRE EN WOEVRE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.074793582, + 5.70636197976 + ], + "libelle_d_acheminement": "ST HILAIRE EN WOEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70636197976, + 49.074793582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cd2ee0bd061212cc4c2863809134c5ffeae40d6", + "fields": { + "code_commune_insee": "79076", + "nom_de_la_commune": "LA CHAPELLE ST LAURENT", + "code_postal": "79430", + "coordonnees_gps": [ + 46.7322726991, + -0.466366098553 + ], + "libelle_d_acheminement": "LA CHAPELLE ST LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.466366098553, + 46.7322726991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ee11eab566e514ae6b938e078b297bc28f13de5", + "fields": { + "code_commune_insee": "55459", + "nom_de_la_commune": "ST JOIRE", + "code_postal": "55130", + "coordonnees_gps": [ + 48.5817287073, + 5.4087600099 + ], + "libelle_d_acheminement": "ST JOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4087600099, + 48.5817287073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dd2119b3e71e1622648fc66c3722ad87493be3f", + "fields": { + "ligne_5": "LE BEUGNON", + "code_commune_insee": "79077", + "libelle_d_acheminement": "BEUGNON THIREUIL", + "code_postal": "79130", + "nom_de_la_commune": "BEUGNON THIREUIL", + "coordonnees_gps": [ + 46.5528411704, + -0.552963332142 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.552963332142, + 46.5528411704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68c66679fe7332bb610a0dbfcd54e77273aabb39", + "fields": { + "code_commune_insee": "55472", + "nom_de_la_commune": "SAULVAUX", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6897973515, + 5.46044345308 + ], + "libelle_d_acheminement": "SAULVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46044345308, + 48.6897973515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d61f0cbe02d2e477c51ce69eff4f6ea654bb6ae", + "fields": { + "ligne_5": "BOISSEROLLES", + "code_commune_insee": "79078", + "libelle_d_acheminement": "PLAINE D ARGENSON", + "code_postal": "79360", + "nom_de_la_commune": "PLAINE D ARGENSON", + "coordonnees_gps": [ + 46.1506834964, + -0.48413782937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48413782937, + 46.1506834964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81c6162919ad6ad6f3cd6771abc6ffe1a75c93ad", + "fields": { + "code_commune_insee": "55479", + "nom_de_la_commune": "SEIGNEULLES", + "code_postal": "55000", + "coordonnees_gps": [ + 48.8524409919, + 5.23092840664 + ], + "libelle_d_acheminement": "SEIGNEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23092840664, + 48.8524409919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68b8c17a251f6cd3a0f8334dec7e7f12f0a98dba", + "fields": { + "ligne_5": "ST ETIENNE LA CIGOGNE", + "code_commune_insee": "79078", + "libelle_d_acheminement": "PLAINE D ARGENSON", + "code_postal": "79360", + "nom_de_la_commune": "PLAINE D ARGENSON", + "coordonnees_gps": [ + 46.1506834964, + -0.48413782937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48413782937, + 46.1506834964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "655badbe45fd47ca8b39642ebf435d83b446e711", + "fields": { + "code_commune_insee": "55482", + "nom_de_la_commune": "SENONCOURT LES MAUJOUY", + "code_postal": "55220", + "coordonnees_gps": [ + 49.0585412777, + 5.34394200098 + ], + "libelle_d_acheminement": "SENONCOURT LES MAUJOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34394200098, + 49.0585412777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36a64d17a27b4a97a85df2bb6315453cd0bef4fc", + "fields": { + "ligne_5": "LOUBLANDE", + "code_commune_insee": "79079", + "libelle_d_acheminement": "MAULEON", + "code_postal": "79700", + "nom_de_la_commune": "MAULEON", + "coordonnees_gps": [ + 46.946804716, + -0.747142973233 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.747142973233, + 46.946804716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44f651dd13020dbbe43cae82f1fc6cf14dc636b2", + "fields": { + "code_commune_insee": "55487", + "nom_de_la_commune": "SEUZEY", + "code_postal": "55300", + "coordonnees_gps": [ + 48.9882446498, + 5.56084684316 + ], + "libelle_d_acheminement": "SEUZEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56084684316, + 48.9882446498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91fefe75618e7a2575b01fa13ffc23f9d443479f", + "fields": { + "code_commune_insee": "79085", + "nom_de_la_commune": "CHERIGNE", + "code_postal": "79170", + "coordonnees_gps": [ + 46.115178559, + -0.172695425322 + ], + "libelle_d_acheminement": "CHERIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.172695425322, + 46.115178559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "789dafe14f557841b0c0681fec139cb56a557d78", + "fields": { + "code_commune_insee": "55504", + "nom_de_la_commune": "TANNOIS", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7133377728, + 5.22030723215 + ], + "libelle_d_acheminement": "TANNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22030723215, + 48.7133377728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41f4cce1a20096b041a44d953a2599457964a2f9", + "fields": { + "code_commune_insee": "79089", + "nom_de_la_commune": "LE CHILLOU", + "code_postal": "79600", + "coordonnees_gps": [ + 46.7695842244, + -0.12153287828 + ], + "libelle_d_acheminement": "LE CHILLOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12153287828, + 46.7695842244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ac867b8adba86ea7d44c20c040fc7c48715cc67", + "fields": { + "code_commune_insee": "55507", + "nom_de_la_commune": "THILLOT", + "code_postal": "55210", + "coordonnees_gps": [ + 49.0250512589, + 5.66665859799 + ], + "libelle_d_acheminement": "THILLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66665859799, + 49.0250512589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "068acee2324111821cbeebeab9f6c36c70668624", + "fields": { + "code_commune_insee": "79092", + "nom_de_la_commune": "CLAVE", + "code_postal": "79420", + "coordonnees_gps": [ + 46.5034289857, + -0.201213420477 + ], + "libelle_d_acheminement": "CLAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.201213420477, + 46.5034289857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f7acf96c000597c692702e9882c5ebae1ece7f3", + "fields": { + "code_commune_insee": "55514", + "nom_de_la_commune": "TREMONT SUR SAULX", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7435666584, + 5.06993719945 + ], + "libelle_d_acheminement": "TREMONT SUR SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06993719945, + 48.7435666584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f9551b20b79aaf7c3ec24cd052ece6df593eaa3", + "fields": { + "code_commune_insee": "79101", + "nom_de_la_commune": "COULONGES SUR L AUTIZE", + "code_postal": "79160", + "coordonnees_gps": [ + 46.4828315658, + -0.599450293173 + ], + "libelle_d_acheminement": "COULONGES SUR L AUTIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.599450293173, + 46.4828315658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "073101951046d28f79ebe8b7f91475bbb497ddab", + "fields": { + "code_commune_insee": "55517", + "nom_de_la_commune": "SEUIL D ARGONNE", + "code_postal": "55250", + "coordonnees_gps": [ + 48.9741184199, + 5.05640187676 + ], + "libelle_d_acheminement": "SEUIL D ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05640187676, + 48.9741184199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6787bdd600fa81494944338d5f7136f77a0be18f", + "fields": { + "ligne_5": "COUTIERES", + "code_commune_insee": "79105", + "libelle_d_acheminement": "LES CHATELIERS", + "code_postal": "79340", + "nom_de_la_commune": "LES CHATELIERS", + "coordonnees_gps": [ + 46.4989423539, + -0.107332373635 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.107332373635, + 46.4989423539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad1a52cfc0a22c16fca23033ecfde0fd337c5be2", + "fields": { + "code_commune_insee": "55518", + "nom_de_la_commune": "COUSANCES LES TRICONVILLE", + "code_postal": "55500", + "coordonnees_gps": [ + 48.769706572, + 5.40036892505 + ], + "libelle_d_acheminement": "COUSANCES LES TRICONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40036892505, + 48.769706572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad22dc6f8b4d4d6e1f1e80b97fdff7156a816314", + "fields": { + "code_commune_insee": "79119", + "nom_de_la_commune": "FENIOUX", + "code_postal": "79160", + "coordonnees_gps": [ + 46.540724799, + -0.494170726123 + ], + "libelle_d_acheminement": "FENIOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.494170726123, + 46.540724799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26dabe1a5443fc8e3fc1c9b2c0f883108f458b45", + "fields": { + "ligne_5": "COUSANCES AU BOIS", + "code_commune_insee": "55518", + "libelle_d_acheminement": "COUSANCES LES TRICONVILLE", + "code_postal": "55500", + "nom_de_la_commune": "COUSANCES LES TRICONVILLE", + "coordonnees_gps": [ + 48.769706572, + 5.40036892505 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40036892505, + 48.769706572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab2611e41c0c24650fce55323470f4f8436b6adb", + "fields": { + "code_commune_insee": "79120", + "nom_de_la_commune": "LA FERRIERE EN PARTHENAY", + "code_postal": "79390", + "coordonnees_gps": [ + 46.6478583733, + -0.0787535449945 + ], + "libelle_d_acheminement": "LA FERRIERE EN PARTHENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0787535449945, + 46.6478583733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b271b659d8336efc70165ecbfabc74ec4c040fc", + "fields": { + "code_commune_insee": "55521", + "nom_de_la_commune": "TROYON", + "code_postal": "55300", + "coordonnees_gps": [ + 49.0009733042, + 5.48594007947 + ], + "libelle_d_acheminement": "TROYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48594007947, + 49.0009733042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c2acc90113cb0fdee7814789f03557df32b4abe", + "fields": { + "code_commune_insee": "79121", + "nom_de_la_commune": "FOMPERRON", + "code_postal": "79340", + "coordonnees_gps": [ + 46.4695567913, + -0.118091718958 + ], + "libelle_d_acheminement": "FOMPERRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.118091718958, + 46.4695567913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccabdfbfd1b325ebd9016d7b1dd61d8ebc75e546", + "fields": { + "code_commune_insee": "55527", + "nom_de_la_commune": "VARENNES EN ARGONNE", + "code_postal": "55270", + "coordonnees_gps": [ + 49.2271516493, + 5.01654206132 + ], + "libelle_d_acheminement": "VARENNES EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01654206132, + 49.2271516493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c321432083c8efb8db9666a36fc307eafc73261", + "fields": { + "ligne_5": "ST MARTIN D ENTRAIGUES", + "code_commune_insee": "79122", + "libelle_d_acheminement": "FONTENILLE ST MARTIN ENTRAIGUES", + "code_postal": "79110", + "nom_de_la_commune": "FONTENILLE ST MARTIN D ENTRAIGUES", + "coordonnees_gps": [ + 46.1121201701, + -0.132411224833 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.132411224833, + 46.1121201701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c97311829dba1ad0b5ed5a762fef52920ece358f", + "fields": { + "code_commune_insee": "55533", + "nom_de_la_commune": "VAUCOULEURS", + "code_postal": "55140", + "coordonnees_gps": [ + 48.6160491817, + 5.64137050524 + ], + "libelle_d_acheminement": "VAUCOULEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64137050524, + 48.6160491817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99e3ac0e91a07d1ec0c030e143c2550686454536", + "fields": { + "code_commune_insee": "79123", + "nom_de_la_commune": "LA FORET SUR SEVRE", + "code_postal": "79380", + "coordonnees_gps": [ + 46.7587446345, + -0.648000879918 + ], + "libelle_d_acheminement": "LA FORET SUR SEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.648000879918, + 46.7587446345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f700a6bd5a8528db9ca028b3a1b9863922ecf0f", + "fields": { + "code_commune_insee": "55543", + "nom_de_la_commune": "VELAINES", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6973807648, + 5.29679363324 + ], + "libelle_d_acheminement": "VELAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29679363324, + 48.6973807648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8495c548cb3d261c45ddcd5a71fe62ee01ffc07", + "fields": { + "code_commune_insee": "79125", + "nom_de_la_commune": "FORS", + "code_postal": "79230", + "coordonnees_gps": [ + 46.2413057135, + -0.414327333899 + ], + "libelle_d_acheminement": "FORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.414327333899, + 46.2413057135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a4d9834d21a1a6d2e1c741f2c4562511fa686ad", + "fields": { + "code_commune_insee": "55545", + "nom_de_la_commune": "VERDUN", + "code_postal": "55100", + "coordonnees_gps": [ + 49.1454831903, + 5.36141821261 + ], + "libelle_d_acheminement": "VERDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36141821261, + 49.1454831903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "775e0162549cb38ac7e12b159bdc90b904cdb819", + "fields": { + "code_commune_insee": "79132", + "nom_de_la_commune": "GENNETON", + "code_postal": "79150", + "coordonnees_gps": [ + 47.0447855312, + -0.437548690394 + ], + "libelle_d_acheminement": "GENNETON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.437548690394, + 47.0447855312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7ecef48569813b8f95f3d16f8cccada1cb75c2f", + "fields": { + "code_commune_insee": "55551", + "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", + "code_postal": "55210", + "coordonnees_gps": [ + 48.9857791469, + 5.724051532 + ], + "libelle_d_acheminement": "VIGNEULLES LES HATTONCHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.724051532, + 48.9857791469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd8800d886ade95a06aa6ffdeb41f890a8781937", + "fields": { + "ligne_5": "ROUVRE", + "code_commune_insee": "79133", + "libelle_d_acheminement": "GERMOND ROUVRE", + "code_postal": "79220", + "nom_de_la_commune": "GERMOND ROUVRE", + "coordonnees_gps": [ + 46.450571365, + -0.418072751644 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.418072751644, + 46.450571365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f88729fe37a14e8980060ccd37135bdaef06d23f", + "fields": { + "code_commune_insee": "55556", + "nom_de_la_commune": "VILLE DEVANT CHAUMONT", + "code_postal": "55150", + "coordonnees_gps": [ + 49.2902473771, + 5.42758806672 + ], + "libelle_d_acheminement": "VILLE DEVANT CHAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42758806672, + 49.2902473771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c63020eb800e1759b8a16d213c005ed7f8575822", + "fields": { + "ligne_5": "LOIZE", + "code_commune_insee": "79136", + "libelle_d_acheminement": "ALLOINAY", + "code_postal": "79110", + "nom_de_la_commune": "ALLOINAY", + "coordonnees_gps": [ + 46.1501272552, + -0.0484413702112 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0484413702112, + 46.1501272552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77a55cec365419d00e10870c9dbbbc50c1d93b94", + "fields": { + "code_commune_insee": "55566", + "nom_de_la_commune": "VILLERS SUR MEUSE", + "code_postal": "55220", + "coordonnees_gps": [ + 49.0229531601, + 5.40373990843 + ], + "libelle_d_acheminement": "VILLERS SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40373990843, + 49.0229531601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57b5d2a8f519a1579472d009818f289a964979ce", + "fields": { + "ligne_5": "ARDILLEUX", + "code_commune_insee": "79140", + "libelle_d_acheminement": "VALDELAUME", + "code_postal": "79110", + "nom_de_la_commune": "VALDELAUME", + "coordonnees_gps": [ + 46.0832090401, + -0.000696246203395 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.000696246203395, + 46.0832090401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e8b086d974585790f98f7e010c317f79d8a1105", + "fields": { + "ligne_5": "HARAUMONT", + "code_commune_insee": "55571", + "libelle_d_acheminement": "VILOSNES HARAUMONT", + "code_postal": "55110", + "nom_de_la_commune": "VILOSNES HARAUMONT", + "coordonnees_gps": [ + 49.3370255498, + 5.2447539057 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2447539057, + 49.3370255498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "015c0d03272d4f0ff84eddacfd6c30e7f5b9e48d", + "fields": { + "ligne_5": "BOUIN", + "code_commune_insee": "79140", + "libelle_d_acheminement": "VALDELAUME", + "code_postal": "79110", + "nom_de_la_commune": "VALDELAUME", + "coordonnees_gps": [ + 46.0832090401, + -0.000696246203395 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.000696246203395, + 46.0832090401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11c0340da4fd7f9b6f27ee345bae4bcb381d3228", + "fields": { + "code_commune_insee": "55572", + "nom_de_la_commune": "VITTARVILLE", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3884920923, + 5.40985151504 + ], + "libelle_d_acheminement": "VITTARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40985151504, + 49.3884920923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e154fd63bfad0108531fbae9f743625f14fff756", + "fields": { + "code_commune_insee": "79142", + "nom_de_la_commune": "JUILLE", + "code_postal": "79170", + "coordonnees_gps": [ + 46.1120285773, + -0.223925439976 + ], + "libelle_d_acheminement": "JUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.223925439976, + 46.1120285773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a3055b5c2c4b2e87c192ce24fb4caa389fec333", + "fields": { + "code_commune_insee": "55573", + "nom_de_la_commune": "VOID VACON", + "code_postal": "55190", + "coordonnees_gps": [ + 48.6743817207, + 5.62159767195 + ], + "libelle_d_acheminement": "VOID VACON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62159767195, + 48.6743817207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dd4120157db0ebba755874f0ee2dbc671b8a333", + "fields": { + "code_commune_insee": "79150", + "nom_de_la_commune": "LIMALONGES", + "code_postal": "79190", + "coordonnees_gps": [ + 46.1367085273, + 0.173652821566 + ], + "libelle_d_acheminement": "LIMALONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.173652821566, + 46.1367085273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2fb77e18a7609e9af18a303105a0c33e5d5f3fb", + "fields": { + "ligne_5": "VACON", + "code_commune_insee": "55573", + "libelle_d_acheminement": "VOID VACON", + "code_postal": "55190", + "nom_de_la_commune": "VOID VACON", + "coordonnees_gps": [ + 48.6743817207, + 5.62159767195 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62159767195, + 48.6743817207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78f969d92519cd678ca5d86a71c9c370f12371ba", + "fields": { + "code_commune_insee": "79158", + "nom_de_la_commune": "LUCHE SUR BRIOUX", + "code_postal": "79170", + "coordonnees_gps": [ + 46.1344762201, + -0.15027346601 + ], + "libelle_d_acheminement": "LUCHE SUR BRIOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.15027346601, + 46.1344762201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a517a562e865283d6c3edd6f5699e4da8fb862a", + "fields": { + "code_commune_insee": "55574", + "nom_de_la_commune": "VOUTHON BAS", + "code_postal": "55130", + "coordonnees_gps": [ + 48.4892446628, + 5.61374554666 + ], + "libelle_d_acheminement": "VOUTHON BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61374554666, + 48.4892446628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a3566720877b0f53e162e751a088df5f353edbc", + "fields": { + "code_commune_insee": "79161", + "nom_de_la_commune": "LUZAY", + "code_postal": "79100", + "coordonnees_gps": [ + 46.9273390043, + -0.2074214162 + ], + "libelle_d_acheminement": "LUZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2074214162, + 46.9273390043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bc9d40bee58e73140c5e64ec0025812ec50021d", + "fields": { + "code_commune_insee": "55578", + "nom_de_la_commune": "WARCQ", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1910139129, + 5.64237556781 + ], + "libelle_d_acheminement": "WARCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64237556781, + 49.1910139129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3ac7d7da6270ad4e2d5117a861f909ce7b94234", + "fields": { + "code_commune_insee": "79165", + "nom_de_la_commune": "MAISONTIERS", + "code_postal": "79600", + "coordonnees_gps": [ + 46.7784936839, + -0.263054037852 + ], + "libelle_d_acheminement": "MAISONTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.263054037852, + 46.7784936839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69882a96c0e83ebd418df53c93ff38e1ce8a2840", + "fields": { + "code_commune_insee": "56001", + "nom_de_la_commune": "ALLAIRE", + "code_postal": "56350", + "coordonnees_gps": [ + 47.6392193445, + -2.17681507496 + ], + "libelle_d_acheminement": "ALLAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17681507496, + 47.6392193445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23371ce8665a4c096cc7b11144d68e17b0f24753", + "fields": { + "code_commune_insee": "79167", + "nom_de_la_commune": "MARNES", + "code_postal": "79600", + "coordonnees_gps": [ + 46.8531541226, + -0.0177888678649 + ], + "libelle_d_acheminement": "MARNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0177888678649, + 46.8531541226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba971c266de4f90e63a997f09a50fb61c523fae5", + "fields": { + "code_commune_insee": "56002", + "nom_de_la_commune": "AMBON", + "code_postal": "56190", + "coordonnees_gps": [ + 47.5570972136, + -2.54057380669 + ], + "libelle_d_acheminement": "AMBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54057380669, + 47.5570972136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae87e5dad065599c04e90cb132fb84c37185ec64", + "fields": { + "code_commune_insee": "79172", + "nom_de_la_commune": "MAZIERES EN GATINE", + "code_postal": "79310", + "coordonnees_gps": [ + 46.5207504336, + -0.323592605264 + ], + "libelle_d_acheminement": "MAZIERES EN GATINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.323592605264, + 46.5207504336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "480ed7021578b98ae208092c3560472c272d22e1", + "fields": { + "code_commune_insee": "56004", + "nom_de_la_commune": "ARZAL", + "code_postal": "56190", + "coordonnees_gps": [ + 47.519901266, + -2.40478493652 + ], + "libelle_d_acheminement": "ARZAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40478493652, + 47.519901266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce38d3b011ff85f2cd91df4bfd27f0269754e989", + "fields": { + "ligne_5": "PAIZAY LE TORT", + "code_commune_insee": "79174", + "libelle_d_acheminement": "MELLE", + "code_postal": "79500", + "nom_de_la_commune": "MELLE", + "coordonnees_gps": [ + 46.2309583731, + -0.147888712984 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.147888712984, + 46.2309583731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe155329677030abce686bf2b5648f83546464f9", + "fields": { + "code_commune_insee": "56012", + "nom_de_la_commune": "BEIGNON", + "code_postal": "56380", + "coordonnees_gps": [ + 47.9655803913, + -2.1804139894 + ], + "libelle_d_acheminement": "BEIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1804139894, + 47.9655803913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95529d0531552d3953a4b1d598a105cf031b69c6", + "fields": { + "ligne_5": "LE BREUIL BERNARD", + "code_commune_insee": "79179", + "libelle_d_acheminement": "MONCOUTANT SUR SEVRE", + "code_postal": "79320", + "nom_de_la_commune": "MONCOUTANT SUR SEVRE", + "coordonnees_gps": [ + 46.7361693715, + -0.578776799054 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.578776799054, + 46.7361693715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18c1934aefcef900052761812f912bc06ecdeb56", + "fields": { + "code_commune_insee": "56014", + "nom_de_la_commune": "BERNE", + "code_postal": "56240", + "coordonnees_gps": [ + 47.9850566608, + -3.37414883543 + ], + "libelle_d_acheminement": "BERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37414883543, + 47.9850566608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f074f388e3ad5aa2aabc43647ca2ff9ec26d299", + "fields": { + "ligne_5": "ST JOUIN DE MILLY", + "code_commune_insee": "79179", + "libelle_d_acheminement": "MONCOUTANT SUR SEVRE", + "code_postal": "79380", + "nom_de_la_commune": "MONCOUTANT SUR SEVRE", + "coordonnees_gps": [ + 46.7361693715, + -0.578776799054 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.578776799054, + 46.7361693715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ede50fb0112a4279622a68cca73242fcc66088c", + "fields": { + "code_commune_insee": "56017", + "nom_de_la_commune": "BIGNAN", + "code_postal": "56500", + "coordonnees_gps": [ + 47.8771804702, + -2.75915073091 + ], + "libelle_d_acheminement": "BIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75915073091, + 47.8771804702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79faa5078bccdf8caa57e18f73fda86ee88c568c", + "fields": { + "ligne_5": "AIGONNAY", + "code_commune_insee": "79185", + "libelle_d_acheminement": "AIGONDIGNE", + "code_postal": "79370", + "nom_de_la_commune": "AIGONDIGNE", + "coordonnees_gps": [ + 46.2907364441, + -0.296041998938 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.296041998938, + 46.2907364441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e5c493788624f8752ac3f9abff5068bf060e91d", + "fields": { + "code_commune_insee": "56018", + "nom_de_la_commune": "BILLIERS", + "code_postal": "56190", + "coordonnees_gps": [ + 47.5234827047, + -2.47972989397 + ], + "libelle_d_acheminement": "BILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.47972989397, + 47.5234827047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d609812230934bc6abf76f49b8cc14e8b63619aa", + "fields": { + "ligne_5": "THORIGNE", + "code_commune_insee": "79185", + "libelle_d_acheminement": "AIGONDIGNE", + "code_postal": "79370", + "nom_de_la_commune": "AIGONDIGNE", + "coordonnees_gps": [ + 46.2907364441, + -0.296041998938 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.296041998938, + 46.2907364441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0f358a531b0fc55ddbf98b6ccf4931fdd6fc3ef", + "fields": { + "code_commune_insee": "56022", + "nom_de_la_commune": "BRANDIVY", + "code_postal": "56390", + "coordonnees_gps": [ + 47.7845009747, + -2.92240814832 + ], + "libelle_d_acheminement": "BRANDIVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.92240814832, + 47.7845009747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f1681c34a5fe49ba80253dbb780f04aa7cea9ec", + "fields": { + "ligne_5": "STE PEZENNE", + "code_commune_insee": "79191", + "libelle_d_acheminement": "NIORT", + "code_postal": "79000", + "nom_de_la_commune": "NIORT", + "coordonnees_gps": [ + 46.328260242, + -0.465353019369 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.465353019369, + 46.328260242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4882ff37c2ad554b8675c8d20a774c59714947e8", + "fields": { + "code_commune_insee": "56026", + "nom_de_la_commune": "BUBRY", + "code_postal": "56310", + "coordonnees_gps": [ + 47.969363201, + -3.17594645997 + ], + "libelle_d_acheminement": "BUBRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.17594645997, + 47.969363201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "150c7bdc5d3a4cd42b516e6dce2d7214e512a40c", + "fields": { + "ligne_5": "MAULAIS", + "code_commune_insee": "79196", + "libelle_d_acheminement": "PLAINE ET VALLEES", + "code_postal": "79100", + "nom_de_la_commune": "PLAINE ET VALLEES", + "coordonnees_gps": [ + 46.9369329202, + -0.0842351282064 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0842351282064, + 46.9369329202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15149c70233181c05ce31cd01ceb1e402594806a", + "fields": { + "code_commune_insee": "56029", + "nom_de_la_commune": "CALAN", + "code_postal": "56240", + "coordonnees_gps": [ + 47.8803732969, + -3.31244277189 + ], + "libelle_d_acheminement": "CALAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.31244277189, + 47.8803732969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8845edf380e890fca0f45a8ff7b103fe34d2ae82", + "fields": { + "ligne_5": "ST JOUIN DE MARNES", + "code_commune_insee": "79196", + "libelle_d_acheminement": "PLAINE ET VALLEES", + "code_postal": "79600", + "nom_de_la_commune": "PLAINE ET VALLEES", + "coordonnees_gps": [ + 46.9369329202, + -0.0842351282064 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0842351282064, + 46.9369329202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efa267b5f243dd0de0def05b599d3b06e6832446", + "fields": { + "code_commune_insee": "56032", + "nom_de_la_commune": "CAMPENEAC", + "code_postal": "56800", + "coordonnees_gps": [ + 47.962439437, + -2.27757699452 + ], + "libelle_d_acheminement": "CAMPENEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.27757699452, + 47.962439437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf708822dde027e8b7fe380088cddebf27c9b454", + "fields": { + "code_commune_insee": "79200", + "nom_de_la_commune": "PAMPLIE", + "code_postal": "79220", + "coordonnees_gps": [ + 46.5267037965, + -0.439316862491 + ], + "libelle_d_acheminement": "PAMPLIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.439316862491, + 46.5267037965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da3c019446bd290764f26354b10a8056672f4954", + "fields": { + "ligne_5": "QUELNEUC", + "code_commune_insee": "56033", + "libelle_d_acheminement": "CARENTOIR", + "code_postal": "56910", + "nom_de_la_commune": "CARENTOIR", + "coordonnees_gps": [ + 47.8204086772, + -2.14646724944 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.14646724944, + 47.8204086772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e48293b08ca19e4581c0f1c0e94e8f2c8e29b11", + "fields": { + "code_commune_insee": "79212", + "nom_de_la_commune": "PLIBOUX", + "code_postal": "79190", + "coordonnees_gps": [ + 46.1647195331, + 0.12277120326 + ], + "libelle_d_acheminement": "PLIBOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12277120326, + 46.1647195331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c39b9a785ca976eaaea02eb1d8931c4230f2292b", + "fields": { + "code_commune_insee": "56034", + "nom_de_la_commune": "CARNAC", + "code_postal": "56340", + "coordonnees_gps": [ + 47.608433163, + -3.06973611145 + ], + "libelle_d_acheminement": "CARNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.06973611145, + 47.608433163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00fb9cefe073765f02701e080b929ef4fd3dd5c1", + "fields": { + "code_commune_insee": "79215", + "nom_de_la_commune": "POUGNE HERISSON", + "code_postal": "79130", + "coordonnees_gps": [ + 46.660301587, + -0.413918277159 + ], + "libelle_d_acheminement": "POUGNE HERISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.413918277159, + 46.660301587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cc3106f44f72ea27e546f19fe25b5f4f0252341", + "fields": { + "code_commune_insee": "56039", + "nom_de_la_commune": "LA CHAPELLE NEUVE", + "code_postal": "56500", + "coordonnees_gps": [ + 47.855020898, + -2.93430872541 + ], + "libelle_d_acheminement": "LA CHAPELLE NEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.93430872541, + 47.855020898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59e8b96910cca0f13f5b4cd6582bed435f3f11f1", + "fields": { + "code_commune_insee": "79235", + "nom_de_la_commune": "ST AMAND SUR SEVRE", + "code_postal": "79700", + "coordonnees_gps": [ + 46.8794926355, + -0.782455017663 + ], + "libelle_d_acheminement": "ST AMAND SUR SEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.782455017663, + 46.8794926355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8486380a9090d7114f8f19c157cb3d6b96364e47", + "fields": { + "code_commune_insee": "56042", + "nom_de_la_commune": "COLPO", + "code_postal": "56390", + "coordonnees_gps": [ + 47.8163021083, + -2.80656999612 + ], + "libelle_d_acheminement": "COLPO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80656999612, + 47.8163021083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a66c56938d4fcace180a0e307955712e3ae325e0", + "fields": { + "code_commune_insee": "79236", + "nom_de_la_commune": "ST ANDRE SUR SEVRE", + "code_postal": "79380", + "coordonnees_gps": [ + 46.7779589756, + -0.699311994263 + ], + "libelle_d_acheminement": "ST ANDRE SUR SEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.699311994263, + 46.7779589756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "833c9ee3f652c83cd6e5018ba3f9368574ccd79c", + "fields": { + "code_commune_insee": "56043", + "nom_de_la_commune": "CONCORET", + "code_postal": "56430", + "coordonnees_gps": [ + 48.0658877259, + -2.2085337227 + ], + "libelle_d_acheminement": "CONCORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.2085337227, + 48.0658877259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "682b6a6676009b615129349994ba72d4d465a40c", + "fields": { + "code_commune_insee": "79253", + "nom_de_la_commune": "ST GEORGES DE NOISNE", + "code_postal": "79400", + "coordonnees_gps": [ + 46.4804515489, + -0.242191937779 + ], + "libelle_d_acheminement": "ST GEORGES DE NOISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.242191937779, + 46.4804515489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebc38bf0b564741dc7f72f8019b76d5088d26763", + "fields": { + "code_commune_insee": "56044", + "nom_de_la_commune": "COURNON", + "code_postal": "56200", + "coordonnees_gps": [ + 47.7490041075, + -2.09816065532 + ], + "libelle_d_acheminement": "COURNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09816065532, + 47.7490041075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a9ef930cae7a9711e70165be7ce53ede4849605", + "fields": { + "code_commune_insee": "79258", + "nom_de_la_commune": "ST JACQUES DE THOUARS", + "code_postal": "79100", + "coordonnees_gps": [ + 46.9694218287, + -0.233924746738 + ], + "libelle_d_acheminement": "ST JACQUES DE THOUARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.233924746738, + 46.9694218287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2922e89f7728c711b2663435d89dc410a51524c", + "fields": { + "code_commune_insee": "56054", + "nom_de_la_commune": "ERDEVEN", + "code_postal": "56410", + "coordonnees_gps": [ + 47.6370207886, + -3.15628129656 + ], + "libelle_d_acheminement": "ERDEVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.15628129656, + 47.6370207886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61669ca558c868c3928980b55af410fc001aac4c", + "fields": { + "code_commune_insee": "79268", + "nom_de_la_commune": "ST LOUP LAMAIRE", + "code_postal": "79600", + "coordonnees_gps": [ + 46.77039082, + -0.157079150205 + ], + "libelle_d_acheminement": "ST LOUP LAMAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.157079150205, + 46.77039082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c684c6503773c3b518fe20dfeedc306598bac1ec", + "fields": { + "code_commune_insee": "56057", + "nom_de_la_commune": "LE FAOUET", + "code_postal": "56320", + "coordonnees_gps": [ + 48.048735927, + -3.50863192945 + ], + "libelle_d_acheminement": "LE FAOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.50863192945, + 48.048735927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1eefbda513ae7f63061212401ea33494d070c1f", + "fields": { + "code_commune_insee": "79269", + "nom_de_la_commune": "ST MAIXENT DE BEUGNE", + "code_postal": "79160", + "coordonnees_gps": [ + 46.5147236196, + -0.613320337812 + ], + "libelle_d_acheminement": "ST MAIXENT DE BEUGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.613320337812, + 46.5147236196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8673cc3dbac78866c61b191f8d840e52dedb576d", + "fields": { + "code_commune_insee": "56066", + "nom_de_la_commune": "GOURIN", + "code_postal": "56110", + "coordonnees_gps": [ + 48.1365207443, + -3.60390071405 + ], + "libelle_d_acheminement": "GOURIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.60390071405, + 48.1365207443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98065dac4c5d9407c0ac71d2f3d75daf478f5bd9", + "fields": { + "code_commune_insee": "79273", + "nom_de_la_commune": "ST MARTIN DE BERNEGOUE", + "code_postal": "79230", + "coordonnees_gps": [ + 46.2362508702, + -0.357119218416 + ], + "libelle_d_acheminement": "ST MARTIN DE BERNEGOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.357119218416, + 46.2362508702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "267b60e8b16e21cc62c1405629d5ef921b5c4fb3", + "fields": { + "code_commune_insee": "56069", + "nom_de_la_commune": "GROIX", + "code_postal": "56590", + "coordonnees_gps": [ + 47.6372394221, + -3.4644268016 + ], + "libelle_d_acheminement": "GROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.4644268016, + 47.6372394221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79516ffa7b2a99588b178ca3cc7964b26a8cfe57", + "fields": { + "code_commune_insee": "79274", + "nom_de_la_commune": "ST MARTIN DE MACON", + "code_postal": "79100", + "coordonnees_gps": [ + 47.0226217222, + -0.11381871589 + ], + "libelle_d_acheminement": "ST MARTIN DE MACON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11381871589, + 47.0226217222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eee40ab4b48740f576bc7a8c31365030812ed78e", + "fields": { + "code_commune_insee": "56077", + "nom_de_la_commune": "LE GUERNO", + "code_postal": "56190", + "coordonnees_gps": [ + 47.5911293554, + -2.39975146229 + ], + "libelle_d_acheminement": "LE GUERNO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39975146229, + 47.5911293554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d323f51769a524b9fa753d73286f0adb9be8b6bc", + "fields": { + "ligne_5": "ST MAURICE LA FOUGEREUSE", + "code_commune_insee": "79280", + "libelle_d_acheminement": "ST MAURICE ETUSSON", + "code_postal": "79150", + "nom_de_la_commune": "ST MAURICE ETUSSON", + "coordonnees_gps": [ + 47.0496404823, + -0.508816707634 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.508816707634, + 47.0496404823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9c4cb854cb7245abcabb1bcd5511c001c61da44", + "fields": { + "code_commune_insee": "56079", + "nom_de_la_commune": "GUILLAC", + "code_postal": "56800", + "coordonnees_gps": [ + 47.9238724593, + -2.47986722223 + ], + "libelle_d_acheminement": "GUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.47986722223, + 47.9238724593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5633a7a4461aef8aa8ffbb5dc039dbe865fdd448", + "fields": { + "code_commune_insee": "79286", + "nom_de_la_commune": "ST PAUL EN GATINE", + "code_postal": "79240", + "coordonnees_gps": [ + 46.6396545543, + -0.61720118582 + ], + "libelle_d_acheminement": "ST PAUL EN GATINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61720118582, + 46.6396545543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3293c532dc09c46b355d6f4ceca2ed5cbe96c0ed", + "fields": { + "code_commune_insee": "56097", + "nom_de_la_commune": "LANDEVANT", + "code_postal": "56690", + "coordonnees_gps": [ + 47.7714410604, + -3.11373409438 + ], + "libelle_d_acheminement": "LANDEVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.11373409438, + 47.7714410604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7514f0ff206e3b4dd55839375e536ca7c0819489", + "fields": { + "code_commune_insee": "79298", + "nom_de_la_commune": "ST SYMPHORIEN", + "code_postal": "79270", + "coordonnees_gps": [ + 46.2674034004, + -0.479082156946 + ], + "libelle_d_acheminement": "ST SYMPHORIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479082156946, + 46.2674034004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f665bbe425206c46154dff4712b8f3986f0488ed", + "fields": { + "ligne_5": "LES FORGES", + "code_commune_insee": "56102", + "libelle_d_acheminement": "FORGES DE LANOUEE", + "code_postal": "56120", + "nom_de_la_commune": "FORGES DE LANOUEE", + "coordonnees_gps": [ + 47.9872211991, + -2.57567607546 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.57567607546, + 47.9872211991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78f44d8cf037a53a9f33167c5bc20c5b4607159a", + "fields": { + "code_commune_insee": "79307", + "nom_de_la_commune": "SAUZE VAUSSAIS", + "code_postal": "79190", + "coordonnees_gps": [ + 46.1223913244, + 0.111211623906 + ], + "libelle_d_acheminement": "SAUZE VAUSSAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.111211623906, + 46.1223913244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea5870b3257c92dcafc371c058f2bc217b3fb2e0", + "fields": { + "code_commune_insee": "56111", + "nom_de_la_commune": "LIMERZEL", + "code_postal": "56220", + "coordonnees_gps": [ + 47.6357871831, + -2.36132601788 + ], + "libelle_d_acheminement": "LIMERZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.36132601788, + 47.6357871831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90b6e3cfc9e17eb1a50b9fe4b4d416fcbf8f7656", + "fields": { + "code_commune_insee": "79322", + "nom_de_la_commune": "LE TALLUD", + "code_postal": "79200", + "coordonnees_gps": [ + 46.627315144, + -0.291049695732 + ], + "libelle_d_acheminement": "LE TALLUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.291049695732, + 46.627315144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d16b4e054f0dfacce45f0231ebff0034d1dafff8", + "fields": { + "code_commune_insee": "56125", + "nom_de_la_commune": "MALGUENAC", + "code_postal": "56300", + "coordonnees_gps": [ + 48.0690022602, + -3.05620760639 + ], + "libelle_d_acheminement": "MALGUENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.05620760639, + 48.0690022602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2855550d17441fdd6b2195a73209ef05c633c030", + "fields": { + "ligne_5": "MAUZE THOUARSAIS", + "code_commune_insee": "79329", + "libelle_d_acheminement": "THOUARS", + "code_postal": "79100", + "nom_de_la_commune": "THOUARS", + "coordonnees_gps": [ + 46.9828628407, + -0.199581467021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.199581467021, + 46.9828628407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8b234867782ed8752931e37830eaac5c8e2afbb", + "fields": { + "code_commune_insee": "56126", + "nom_de_la_commune": "MARZAN", + "code_postal": "56130", + "coordonnees_gps": [ + 47.5415287199, + -2.35411657522 + ], + "libelle_d_acheminement": "MARZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.35411657522, + 47.5415287199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a42fd9c48f0ede1dbffa146f6f8cf412f389d3c", + "fields": { + "ligne_5": "PRIAIRES", + "code_commune_insee": "79334", + "libelle_d_acheminement": "VAL DU MIGNON", + "code_postal": "79210", + "nom_de_la_commune": "VAL DU MIGNON", + "coordonnees_gps": [ + 46.1701185882, + -0.587199474671 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.587199474671, + 46.1701185882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bdddcecb26e12d3808fb8dc220f4f71c17f4575", + "fields": { + "code_commune_insee": "56131", + "nom_de_la_commune": "MESLAN", + "code_postal": "56320", + "coordonnees_gps": [ + 47.9879241099, + -3.44802769432 + ], + "libelle_d_acheminement": "MESLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44802769432, + 47.9879241099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ec92aee58f0ff66b31a3c5cc76bb0dd7acc3b73", + "fields": { + "code_commune_insee": "79338", + "nom_de_la_commune": "VANZAY", + "code_postal": "79120", + "coordonnees_gps": [ + 46.2310672583, + 0.110650290356 + ], + "libelle_d_acheminement": "VANZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.110650290356, + 46.2310672583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "842cc26226c661e935b54bcdd56fb314e37b9551", + "fields": { + "code_commune_insee": "56135", + "nom_de_la_commune": "MOLAC", + "code_postal": "56230", + "coordonnees_gps": [ + 47.7362321249, + -2.43951991682 + ], + "libelle_d_acheminement": "MOLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.43951991682, + 47.7362321249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e9654867f5f87efc41ae90c64ef2853e76f221a", + "fields": { + "code_commune_insee": "79340", + "nom_de_la_commune": "VAUSSEROUX", + "code_postal": "79420", + "coordonnees_gps": [ + 46.5553603723, + -0.138086745707 + ], + "libelle_d_acheminement": "VAUSSEROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.138086745707, + 46.5553603723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be071bb0f957edb1636dfbe3cd55988c0b835174", + "fields": { + "code_commune_insee": "56136", + "nom_de_la_commune": "MONTENEUF", + "code_postal": "56380", + "coordonnees_gps": [ + 47.8782281935, + -2.1931404895 + ], + "libelle_d_acheminement": "MONTENEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1931404895, + 47.8782281935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f27c5578d8561c93f1ec6228450d1c988dc73388", + "fields": { + "code_commune_insee": "79345", + "nom_de_la_commune": "VERRUYES", + "code_postal": "79310", + "coordonnees_gps": [ + 46.5188026675, + -0.282182786375 + ], + "libelle_d_acheminement": "VERRUYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.282182786375, + 46.5188026675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc6ac600807ba8eec710a3bf269734076323d1ef", + "fields": { + "code_commune_insee": "56139", + "nom_de_la_commune": "MONTERTELOT", + "code_postal": "56800", + "coordonnees_gps": [ + 47.8855029773, + -2.41232336354 + ], + "libelle_d_acheminement": "MONTERTELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41232336354, + 47.8855029773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf26abb94bc5a87c94859c76eb4570fa9c65645c", + "fields": { + "code_commune_insee": "79351", + "nom_de_la_commune": "VILLIERS EN PLAINE", + "code_postal": "79160", + "coordonnees_gps": [ + 46.4150506685, + -0.536890888981 + ], + "libelle_d_acheminement": "VILLIERS EN PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.536890888981, + 46.4150506685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd85de6d10e0300ed5d53db1d5abdf39178bf75a", + "fields": { + "code_commune_insee": "56143", + "nom_de_la_commune": "MUZILLAC", + "code_postal": "56190", + "coordonnees_gps": [ + 47.5547990071, + -2.47313130571 + ], + "libelle_d_acheminement": "MUZILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.47313130571, + 47.5547990071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98065a4ebeb7bcab75cc79f211540140c15f13ec", + "fields": { + "code_commune_insee": "79352", + "nom_de_la_commune": "VILLIERS SUR CHIZE", + "code_postal": "79170", + "coordonnees_gps": [ + 46.0980469832, + -0.30373228125 + ], + "libelle_d_acheminement": "VILLIERS SUR CHIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.30373228125, + 46.0980469832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e46543de4006db03a6abc21bba50e41f3245fe1", + "fields": { + "ligne_5": "MOUSTOIR REMUNGOL", + "code_commune_insee": "56144", + "libelle_d_acheminement": "EVELLYS", + "code_postal": "56500", + "nom_de_la_commune": "EVELLYS", + "coordonnees_gps": [ + 47.9969702073, + -2.84450199902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84450199902, + 47.9969702073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9520ef5523caa864cfa9b556b724533f7006f67", + "fields": { + "code_commune_insee": "79357", + "nom_de_la_commune": "XAINTRAY", + "code_postal": "79220", + "coordonnees_gps": [ + 46.4958576969, + -0.48044229191 + ], + "libelle_d_acheminement": "XAINTRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48044229191, + 46.4958576969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cb10a9ff3c60dc0bcfdf005fb3547dbc503f4e1", + "fields": { + "ligne_5": "NAIZIN", + "code_commune_insee": "56144", + "libelle_d_acheminement": "EVELLYS", + "code_postal": "56500", + "nom_de_la_commune": "EVELLYS", + "coordonnees_gps": [ + 47.9969702073, + -2.84450199902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84450199902, + 47.9969702073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "460bcf62e00d704332c4f47fc30c96153e82b9c9", + "fields": { + "code_commune_insee": "80001", + "nom_de_la_commune": "ABBEVILLE", + "code_postal": "80100", + "coordonnees_gps": [ + 50.1083582944, + 1.83209170207 + ], + "libelle_d_acheminement": "ABBEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83209170207, + 50.1083582944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bca33f97420590688fc7077852b6f1cd7a83483", + "fields": { + "code_commune_insee": "56147", + "nom_de_la_commune": "NIVILLAC", + "code_postal": "56130", + "coordonnees_gps": [ + 47.5405533272, + -2.24923467173 + ], + "libelle_d_acheminement": "NIVILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24923467173, + 47.5405533272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecbcec84961ba653d3173e1782b6b5feac3c1b79", + "fields": { + "ligne_5": "DREUIL HAMEL", + "code_commune_insee": "80013", + "libelle_d_acheminement": "AIRAINES", + "code_postal": "80270", + "nom_de_la_commune": "AIRAINES", + "coordonnees_gps": [ + 49.9720712318, + 1.94513035737 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94513035737, + 49.9720712318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e0a5892fea8bb8ec57f8b5b14a43eaa95364334", + "fields": { + "code_commune_insee": "56151", + "nom_de_la_commune": "NOYAL PONTIVY", + "code_postal": "56920", + "coordonnees_gps": [ + 48.0614251201, + -2.89115096448 + ], + "libelle_d_acheminement": "NOYAL PONTIVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89115096448, + 48.0614251201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "385411da159cfae2fb1756df95d77160714cb24f", + "fields": { + "code_commune_insee": "80015", + "nom_de_la_commune": "AIZECOURT LE HAUT", + "code_postal": "80200", + "coordonnees_gps": [ + 49.9669534703, + 2.98250284115 + ], + "libelle_d_acheminement": "AIZECOURT LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98250284115, + 49.9669534703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cac7d7afbe0e3216865e6380f3fd1275d4660e9", + "fields": { + "code_commune_insee": "56153", + "nom_de_la_commune": "PEAULE", + "code_postal": "56130", + "coordonnees_gps": [ + 47.5826411591, + -2.33551260645 + ], + "libelle_d_acheminement": "PEAULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.33551260645, + 47.5826411591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6a66674f90eba0b0260e7ed1951f8bfe9ec8a53", + "fields": { + "code_commune_insee": "80016", + "nom_de_la_commune": "ALBERT", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0040829344, + 2.6483138296 + ], + "libelle_d_acheminement": "ALBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6483138296, + 50.0040829344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3371317bccb4965f38f87047247e9075425a4e7", + "fields": { + "code_commune_insee": "56165", + "nom_de_la_commune": "PLOERMEL", + "code_postal": "56800", + "coordonnees_gps": [ + 47.9221801451, + -2.38313563666 + ], + "libelle_d_acheminement": "PLOERMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.38313563666, + 47.9221801451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4715d818f79db99925816a48c854032be4ad3f22", + "fields": { + "code_commune_insee": "80019", + "nom_de_la_commune": "ALLERY", + "code_postal": "80270", + "coordonnees_gps": [ + 49.9594164117, + 1.88551094402 + ], + "libelle_d_acheminement": "ALLERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88551094402, + 49.9594164117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59d10b0fab21fc1680eca2b347c41bc74da066dc", + "fields": { + "code_commune_insee": "56167", + "nom_de_la_commune": "PLOUGOUMELEN", + "code_postal": "56400", + "coordonnees_gps": [ + 47.6608388788, + -2.89786302771 + ], + "libelle_d_acheminement": "PLOUGOUMELEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89786302771, + 47.6608388788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b0f386901d95fe167647883db935d77b6c8234c", + "fields": { + "code_commune_insee": "80020", + "nom_de_la_commune": "ALLONVILLE", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9379400536, + 2.3677741824 + ], + "libelle_d_acheminement": "ALLONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3677741824, + 49.9379400536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a043d153564766dfb0ea9e87dd2d7f63a6a17ae4", + "fields": { + "code_commune_insee": "56169", + "nom_de_la_commune": "PLOUHINEC", + "code_postal": "56680", + "coordonnees_gps": [ + 47.6929109171, + -3.23358959435 + ], + "libelle_d_acheminement": "PLOUHINEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.23358959435, + 47.6929109171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c65a356d798545dd647e294fde8266106bfd5a70", + "fields": { + "code_commune_insee": "80021", + "nom_de_la_commune": "AMIENS", + "code_postal": "80090", + "coordonnees_gps": [ + 49.9009532186, + 2.29007445539 + ], + "libelle_d_acheminement": "AMIENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29007445539, + 49.9009532186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26391c0af08e358e793911ed07a3ad73d16dc2d3", + "fields": { + "code_commune_insee": "56175", + "nom_de_la_commune": "PLUMERGAT", + "code_postal": "56400", + "coordonnees_gps": [ + 47.7279059531, + -2.92323704418 + ], + "libelle_d_acheminement": "PLUMERGAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.92323704418, + 47.7279059531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "513fba7d7fcd3118f27fde068de8ca6d7444a5dc", + "fields": { + "code_commune_insee": "80032", + "nom_de_la_commune": "ASSAINVILLERS", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6231275288, + 2.59930231823 + ], + "libelle_d_acheminement": "ASSAINVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59930231823, + 49.6231275288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "164f770595f5fe1afafaeeb0bccc2ee2eaaaa2b4", + "fields": { + "code_commune_insee": "56181", + "nom_de_la_commune": "PORT LOUIS", + "code_postal": "56290", + "coordonnees_gps": [ + 47.7099205258, + -3.34845750769 + ], + "libelle_d_acheminement": "PORT LOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34845750769, + 47.7099205258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "619173c3f114e192f7c93652909ac5def8c8689c", + "fields": { + "code_commune_insee": "80038", + "nom_de_la_commune": "AUCHONVILLERS", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0820136591, + 2.63330936836 + ], + "libelle_d_acheminement": "AUCHONVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63330936836, + 50.0820136591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbbd54e303f9b5c6b3e71704811e7a648ab41b9f", + "fields": { + "code_commune_insee": "56191", + "nom_de_la_commune": "REMINIAC", + "code_postal": "56140", + "coordonnees_gps": [ + 47.8638253053, + -2.25279250004 + ], + "libelle_d_acheminement": "REMINIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.25279250004, + 47.8638253053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6826ff5c529de6e79bc8b10ef3530a86f2bd8558", + "fields": { + "code_commune_insee": "80051", + "nom_de_la_commune": "BAILLEUL", + "code_postal": "80490", + "coordonnees_gps": [ + 50.0258469553, + 1.85504998137 + ], + "libelle_d_acheminement": "BAILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85504998137, + 50.0258469553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "248bbd0c465abc642d543829edf38bedbb336653", + "fields": { + "code_commune_insee": "56195", + "nom_de_la_commune": "LA ROCHE BERNARD", + "code_postal": "56130", + "coordonnees_gps": [ + 47.5193208116, + -2.30307422213 + ], + "libelle_d_acheminement": "LA ROCHE BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.30307422213, + 47.5193208116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3fd4ff95aae5a6ad7530b8c59fce52a18df0035", + "fields": { + "code_commune_insee": "80055", + "nom_de_la_commune": "BARLY", + "code_postal": "80600", + "coordonnees_gps": [ + 50.2057087511, + 2.27424425535 + ], + "libelle_d_acheminement": "BARLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27424425535, + 50.2057087511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "827a4fff30124f261746ad5777a61861d88477e3", + "fields": { + "code_commune_insee": "56196", + "nom_de_la_commune": "ROCHEFORT EN TERRE", + "code_postal": "56220", + "coordonnees_gps": [ + 47.6983579224, + -2.34412952507 + ], + "libelle_d_acheminement": "ROCHEFORT EN TERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.34412952507, + 47.6983579224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e90199f9d17af7b0a85a63184339c93eb580076c", + "fields": { + "code_commune_insee": "80058", + "nom_de_la_commune": "BAYONVILLERS", + "code_postal": "80170", + "coordonnees_gps": [ + 49.8647263676, + 2.62854322017 + ], + "libelle_d_acheminement": "BAYONVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62854322017, + 49.8647263676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c90fa55fa622800dd527ddf9a444bb3770e18e5", + "fields": { + "ligne_5": "QUILY", + "code_commune_insee": "56197", + "libelle_d_acheminement": "VAL D OUST", + "code_postal": "56800", + "nom_de_la_commune": "VAL D OUST", + "coordonnees_gps": [ + 47.8685533688, + -2.45624648415 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45624648415, + 47.8685533688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "561d0058973de83ee40ee941c5528b313fcf0179", + "fields": { + "code_commune_insee": "80074", + "nom_de_la_commune": "BECQUIGNY", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6889391045, + 2.62140108119 + ], + "libelle_d_acheminement": "BECQUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62140108119, + 49.6889391045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13ea865ed075a52b9bd3f5ee58af176c4f27ddbd", + "fields": { + "code_commune_insee": "56199", + "nom_de_la_commune": "ROUDOUALLEC", + "code_postal": "56110", + "coordonnees_gps": [ + 48.1198265822, + -3.69385005734 + ], + "libelle_d_acheminement": "ROUDOUALLEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.69385005734, + 48.1198265822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38bee4b794a4ff007cba61f4024e8067f1aa9488", + "fields": { + "code_commune_insee": "80077", + "nom_de_la_commune": "BEHENCOURT", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9738173198, + 2.469734228 + ], + "libelle_d_acheminement": "BEHENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.469734228, + 49.9738173198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "731b0d3f3207a6e48d3308add02ad23f7630db80", + "fields": { + "code_commune_insee": "56205", + "nom_de_la_commune": "ST ARMEL", + "code_postal": "56450", + "coordonnees_gps": [ + 47.5631092443, + -2.71087365172 + ], + "libelle_d_acheminement": "ST ARMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.71087365172, + 47.5631092443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a65cd082810f306c7b22f485a4f053c208cddf1", + "fields": { + "code_commune_insee": "80084", + "nom_de_la_commune": "BERMESNIL", + "code_postal": "80140", + "coordonnees_gps": [ + 49.897842281, + 1.74398450934 + ], + "libelle_d_acheminement": "BERMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74398450934, + 49.897842281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afbb08550409e7467e5fc03c4cec97c636d95a67", + "fields": { + "code_commune_insee": "56207", + "nom_de_la_commune": "ST BARTHELEMY", + "code_postal": "56150", + "coordonnees_gps": [ + 47.9265481211, + -3.04066993826 + ], + "libelle_d_acheminement": "ST BARTHELEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04066993826, + 47.9265481211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "823226c6e5a0d30d0c0a4fe5942775d2e46063ae", + "fields": { + "ligne_5": "MESNIL EUDIN", + "code_commune_insee": "80084", + "libelle_d_acheminement": "BERMESNIL", + "code_postal": "80140", + "nom_de_la_commune": "BERMESNIL", + "coordonnees_gps": [ + 49.897842281, + 1.74398450934 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74398450934, + 49.897842281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e48bd46ea0ed85f13395a361457165c737bdce9", + "fields": { + "code_commune_insee": "56210", + "nom_de_la_commune": "ST CARADEC TREGOMEL", + "code_postal": "56540", + "coordonnees_gps": [ + 48.0321760477, + -3.35137450933 + ], + "libelle_d_acheminement": "ST CARADEC TREGOMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.35137450933, + 48.0321760477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7dba747b22fe8476e311c5c1f2e54e58edfd21d", + "fields": { + "code_commune_insee": "80107", + "nom_de_la_commune": "BLANGY TRONVILLE", + "code_postal": "80440", + "coordonnees_gps": [ + 49.8695433545, + 2.43039869559 + ], + "libelle_d_acheminement": "BLANGY TRONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43039869559, + 49.8695433545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acceed62671e7bab423e98bfb6c0fe13e9c0994d", + "fields": { + "code_commune_insee": "56219", + "nom_de_la_commune": "ST GUYOMARD", + "code_postal": "56460", + "coordonnees_gps": [ + 47.7793419253, + -2.50210374964 + ], + "libelle_d_acheminement": "ST GUYOMARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.50210374964, + 47.7793419253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72130b0d0b75eee15910e1d9311552292642432b", + "fields": { + "code_commune_insee": "80109", + "nom_de_la_commune": "LE BOISLE", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2683509282, + 1.97366129203 + ], + "libelle_d_acheminement": "LE BOISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97366129203, + 50.2683509282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b01a080f8e44c43bb178176b27476870046e02fd", + "fields": { + "code_commune_insee": "56220", + "nom_de_la_commune": "STE HELENE", + "code_postal": "56700", + "coordonnees_gps": [ + 47.7172153555, + -3.18492247934 + ], + "libelle_d_acheminement": "STE HELENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18492247934, + 47.7172153555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97c03a92b7e46cad406bc31bb473304793a63d4c", + "fields": { + "code_commune_insee": "80120", + "nom_de_la_commune": "BOUILLANCOURT EN SERY", + "code_postal": "80220", + "coordonnees_gps": [ + 49.9600031644, + 1.63026565334 + ], + "libelle_d_acheminement": "BOUILLANCOURT EN SERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63026565334, + 49.9600031644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79613a011868ff6d04676fdc1307e42c46458279", + "fields": { + "code_commune_insee": "56223", + "nom_de_la_commune": "ST JEAN LA POTERIE", + "code_postal": "56350", + "coordonnees_gps": [ + 47.6453867213, + -2.12256103473 + ], + "libelle_d_acheminement": "ST JEAN LA POTERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12256103473, + 47.6453867213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d88f2cfde2b915acecf8718aef09ab9efb34e2e6", + "fields": { + "code_commune_insee": "80127", + "nom_de_la_commune": "BOUVAINCOURT SUR BRESLE", + "code_postal": "80220", + "coordonnees_gps": [ + 50.0359241083, + 1.49611906465 + ], + "libelle_d_acheminement": "BOUVAINCOURT SUR BRESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49611906465, + 50.0359241083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "683bf1bb72b8189bf09a25f3414219b03fd64ba0", + "fields": { + "code_commune_insee": "56228", + "nom_de_la_commune": "ST MARCEL", + "code_postal": "56140", + "coordonnees_gps": [ + 47.8114442291, + -2.41640908391 + ], + "libelle_d_acheminement": "ST MARCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41640908391, + 47.8114442291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b635c315a5bd4e67e38b5cb0990beb13ef30b867", + "fields": { + "code_commune_insee": "80131", + "nom_de_la_commune": "BOVES", + "code_postal": "80440", + "coordonnees_gps": [ + 49.8416983547, + 2.38329938431 + ], + "libelle_d_acheminement": "BOVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38329938431, + 49.8416983547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2531aef4e801da1bcf6ea0e90c6d4113d6b0a972", + "fields": { + "code_commune_insee": "56229", + "nom_de_la_commune": "ST MARTIN SUR OUST", + "code_postal": "56200", + "coordonnees_gps": [ + 47.7625644099, + -2.26391469379 + ], + "libelle_d_acheminement": "ST MARTIN SUR OUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.26391469379, + 47.7625644099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55dda4adfb9f8e2714aff54326beeb2c05dcabc4", + "fields": { + "code_commune_insee": "80133", + "nom_de_la_commune": "BRAILLY CORNEHOTTE", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2243173522, + 1.95816617039 + ], + "libelle_d_acheminement": "BRAILLY CORNEHOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95816617039, + 50.2243173522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29c2b4ff7bee1ad9b733cb9c621425dcb6a06eb9", + "fields": { + "code_commune_insee": "56230", + "nom_de_la_commune": "ST NICOLAS DU TERTRE", + "code_postal": "56910", + "coordonnees_gps": [ + 47.7960541424, + -2.21778311468 + ], + "libelle_d_acheminement": "ST NICOLAS DU TERTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21778311468, + 47.7960541424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f71580e48755ec5618694c31c641d92de8efc182", + "fields": { + "code_commune_insee": "80138", + "nom_de_la_commune": "BRESLE", + "code_postal": "80300", + "coordonnees_gps": [ + 49.9903903024, + 2.54921483681 + ], + "libelle_d_acheminement": "BRESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54921483681, + 49.9903903024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "918539544fbd1e46ba06fd84cd587662fe35b65e", + "fields": { + "code_commune_insee": "56231", + "nom_de_la_commune": "ST NOLFF", + "code_postal": "56250", + "coordonnees_gps": [ + 47.6984675237, + -2.66583210925 + ], + "libelle_d_acheminement": "ST NOLFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.66583210925, + 47.6984675237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8fb54abfbc8674c04afee493159932b326d6e97", + "fields": { + "code_commune_insee": "80140", + "nom_de_la_commune": "BREVILLERS", + "code_postal": "80600", + "coordonnees_gps": [ + 50.2154961787, + 2.38099376093 + ], + "libelle_d_acheminement": "BREVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38099376093, + 50.2154961787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "235a718ea092f255cc6441a7cad69dc1568acbec", + "fields": { + "code_commune_insee": "56250", + "nom_de_la_commune": "THEHILLAC", + "code_postal": "56130", + "coordonnees_gps": [ + 47.552020586, + -2.1182992394 + ], + "libelle_d_acheminement": "THEHILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1182992394, + 47.552020586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c3d792bafac2720f6ab6677346827d6f49c80aa", + "fields": { + "code_commune_insee": "80145", + "nom_de_la_commune": "BRUCAMPS", + "code_postal": "80690", + "coordonnees_gps": [ + 50.071318862, + 2.05279274058 + ], + "libelle_d_acheminement": "BRUCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05279274058, + 50.071318862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b706a08cc0aefcbf07e1321ec9ec4b82ec80622e", + "fields": { + "ligne_5": "NOYALO", + "code_commune_insee": "56251", + "libelle_d_acheminement": "THEIX NOYALO", + "code_postal": "56450", + "nom_de_la_commune": "THEIX NOYALO", + "coordonnees_gps": [ + 47.6356885267, + -2.64682620132 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64682620132, + 47.6356885267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac44b01bb808b2092af4bf9108dc7846543d1741", + "fields": { + "code_commune_insee": "80147", + "nom_de_la_commune": "BUIGNY L ABBE", + "code_postal": "80132", + "coordonnees_gps": [ + 50.0970703455, + 1.94454979441 + ], + "libelle_d_acheminement": "BUIGNY L ABBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94454979441, + 50.0970703455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e441b790381e5ebaae794530dee84599d5dbf8ac", + "fields": { + "code_commune_insee": "56253", + "nom_de_la_commune": "TREAL", + "code_postal": "56140", + "coordonnees_gps": [ + 47.832976381, + -2.22970819032 + ], + "libelle_d_acheminement": "TREAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.22970819032, + 47.832976381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1234a8a8cbf138da6d7e5e6205332c437cea5b2", + "fields": { + "code_commune_insee": "80160", + "nom_de_la_commune": "CAGNY", + "code_postal": "80330", + "coordonnees_gps": [ + 49.8505763421, + 2.33749287161 + ], + "libelle_d_acheminement": "CAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33749287161, + 49.8505763421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ab00ecec2b1ec31a3fb1994794186ce419782b5", + "fields": { + "code_commune_insee": "56259", + "nom_de_la_commune": "LA TRINITE SURZUR", + "code_postal": "56190", + "coordonnees_gps": [ + 47.6047054617, + -2.59227223671 + ], + "libelle_d_acheminement": "LA TRINITE SURZUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.59227223671, + 47.6047054617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a331dde7a39a860e9cbf0152408106f5d44ef3f8", + "fields": { + "code_commune_insee": "80166", + "nom_de_la_commune": "CANAPLES", + "code_postal": "80670", + "coordonnees_gps": [ + 50.0613505846, + 2.2308855769 + ], + "libelle_d_acheminement": "CANAPLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2308855769, + 50.0613505846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d963427f446f1c1e9ad7d7f4e42eee0f831ad88", + "fields": { + "code_commune_insee": "56262", + "nom_de_la_commune": "BONO", + "code_postal": "56400", + "coordonnees_gps": [ + 47.6369017681, + -2.93950115097 + ], + "libelle_d_acheminement": "LE BONO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.93950115097, + 47.6369017681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deba2c50432c6b6815124a03c30957685a3a2e83", + "fields": { + "code_commune_insee": "80169", + "nom_de_la_commune": "CANNESSIERES", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9357156714, + 1.76566722724 + ], + "libelle_d_acheminement": "CANNESSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76566722724, + 49.9357156714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a689d0de6b5d41bee525aaebed8ea6e49a2dacb3", + "fields": { + "code_commune_insee": "57009", + "nom_de_la_commune": "AJONCOURT", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8450639322, + 6.3036696933 + ], + "libelle_d_acheminement": "AJONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3036696933, + 48.8450639322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb2ed209f7d35a75c3a1066ec77321313ecf971c", + "fields": { + "code_commune_insee": "80170", + "nom_de_la_commune": "CANTIGNY", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6651675487, + 2.4899456786 + ], + "libelle_d_acheminement": "CANTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4899456786, + 49.6651675487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7544bb41a9348bc20a2d92cc5cf8199ca001129a", + "fields": { + "code_commune_insee": "57017", + "nom_de_la_commune": "AMANVILLERS", + "code_postal": "57865", + "coordonnees_gps": [ + 49.1595048977, + 6.04632244195 + ], + "libelle_d_acheminement": "AMANVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04632244195, + 49.1595048977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3a2e4147d2c97150cb72995182c58a6a5bd4e7e", + "fields": { + "code_commune_insee": "80184", + "nom_de_la_commune": "CERISY", + "code_postal": "80800", + "coordonnees_gps": [ + 49.8960525019, + 2.6224408332 + ], + "libelle_d_acheminement": "CERISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6224408332, + 49.8960525019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0262631f30bdfc94d95a6e1dcd6e4a931052986", + "fields": { + "ligne_5": "MALANCOURT LA MONTAGNE", + "code_commune_insee": "57019", + "libelle_d_acheminement": "AMNEVILLE LES THERMES", + "code_postal": "57360", + "nom_de_la_commune": "AMNEVILLE", + "coordonnees_gps": [ + 49.2396972255, + 6.09947450041 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09947450041, + 49.2396972255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09635a79c73e3f071a3843e033f599a052ee2692", + "fields": { + "code_commune_insee": "80186", + "nom_de_la_commune": "CHAULNES", + "code_postal": "80320", + "coordonnees_gps": [ + 49.8169359721, + 2.80153906029 + ], + "libelle_d_acheminement": "CHAULNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80153906029, + 49.8169359721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ff41fdfc618617a2263d626fee67e388bff1b75", + "fields": { + "code_commune_insee": "57029", + "nom_de_la_commune": "ARRIANCE", + "code_postal": "57580", + "coordonnees_gps": [ + 49.0186311758, + 6.50377825217 + ], + "libelle_d_acheminement": "ARRIANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50377825217, + 49.0186311758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18325b177edb6e1dd697970dad0f15c17f5f5718", + "fields": { + "code_commune_insee": "80188", + "nom_de_la_commune": "CHAUSSOY EPAGNY", + "code_postal": "80250", + "coordonnees_gps": [ + 49.7215007115, + 2.32882055299 + ], + "libelle_d_acheminement": "CHAUSSOY EPAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32882055299, + 49.7215007115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22d7378c9b1ce488dd89ab419ed8d38727ae02f9", + "fields": { + "code_commune_insee": "57037", + "nom_de_la_commune": "AUBE", + "code_postal": "57580", + "coordonnees_gps": [ + 49.0251696747, + 6.3360717944 + ], + "libelle_d_acheminement": "AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3360717944, + 49.0251696747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f05d9a7df8b27a0fbce1f346c823310b47e8104", + "fields": { + "code_commune_insee": "80190", + "nom_de_la_commune": "CHEPY", + "code_postal": "80210", + "coordonnees_gps": [ + 50.0644802332, + 1.64325361744 + ], + "libelle_d_acheminement": "CHEPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64325361744, + 50.0644802332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8538338e43081cd39852e7056d61d2c06a8216dd", + "fields": { + "code_commune_insee": "57041", + "nom_de_la_commune": "AUMETZ", + "code_postal": "57710", + "coordonnees_gps": [ + 49.4185038018, + 5.94689631512 + ], + "libelle_d_acheminement": "AUMETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94689631512, + 49.4185038018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dc4dbad43c1f3148cf6aafbc3f7549b24f18986", + "fields": { + "code_commune_insee": "80191", + "nom_de_la_commune": "CHILLY", + "code_postal": "80170", + "coordonnees_gps": [ + 49.7964728556, + 2.76983345843 + ], + "libelle_d_acheminement": "CHILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76983345843, + 49.7964728556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e0e18324e90767a96eb49ca56a581fe2cf13b99", + "fields": { + "code_commune_insee": "57047", + "nom_de_la_commune": "BAMBIDERSTROFF", + "code_postal": "57690", + "coordonnees_gps": [ + 49.1010213921, + 6.59685944774 + ], + "libelle_d_acheminement": "BAMBIDERSTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59685944774, + 49.1010213921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32245bf1729dc03f9b2aef00d559b73876cdba7b", + "fields": { + "code_commune_insee": "80193", + "nom_de_la_commune": "CHIRMONT", + "code_postal": "80250", + "coordonnees_gps": [ + 49.7148777519, + 2.37183697001 + ], + "libelle_d_acheminement": "CHIRMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37183697001, + 49.7148777519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25bb4236eeeb7a0278a019fcc331cc82ac5736ad", + "fields": { + "code_commune_insee": "57050", + "nom_de_la_commune": "BARCHAIN", + "code_postal": "57830", + "coordonnees_gps": [ + 48.708066115, + 6.95761919263 + ], + "libelle_d_acheminement": "BARCHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95761919263, + 48.708066115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e07e199dd94d65b3e2b5b3ed4831908dd174af5", + "fields": { + "code_commune_insee": "80196", + "nom_de_la_commune": "CITERNE", + "code_postal": "80490", + "coordonnees_gps": [ + 49.9790065102, + 1.81690705354 + ], + "libelle_d_acheminement": "CITERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81690705354, + 49.9790065102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1771434ee998800d1cfc86b7447bc2bd498e39c", + "fields": { + "code_commune_insee": "57059", + "nom_de_la_commune": "BELLANGE", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9009974144, + 6.57445426566 + ], + "libelle_d_acheminement": "BELLANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57445426566, + 48.9009974144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc178ef8e7d80d6e0ef015c432c6649186211b07", + "fields": { + "code_commune_insee": "80197", + "nom_de_la_commune": "CIZANCOURT", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8401313107, + 2.91812526703 + ], + "libelle_d_acheminement": "CIZANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91812526703, + 49.8401313107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae4742149647348736e4e806c54b7eb8c0760102", + "fields": { + "code_commune_insee": "57062", + "nom_de_la_commune": "BERG SUR MOSELLE", + "code_postal": "57570", + "coordonnees_gps": [ + 49.4347777081, + 6.31144547502 + ], + "libelle_d_acheminement": "BERG SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31144547502, + 49.4347777081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "826ab0d804ec133c4f11eb6a54ef2b05615626e0", + "fields": { + "code_commune_insee": "80205", + "nom_de_la_commune": "CONDE FOLIE", + "code_postal": "80890", + "coordonnees_gps": [ + 50.0036692139, + 2.02115271491 + ], + "libelle_d_acheminement": "CONDE FOLIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02115271491, + 50.0036692139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b87a978268070760451857e3d39591a5ba0f38f4", + "fields": { + "code_commune_insee": "57067", + "nom_de_la_commune": "BERTRANGE", + "code_postal": "57310", + "coordonnees_gps": [ + 49.3148066005, + 6.19339809541 + ], + "libelle_d_acheminement": "BERTRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19339809541, + 49.3148066005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c05a071185a3e27b0917d1328e14c138b89533d1", + "fields": { + "code_commune_insee": "80210", + "nom_de_la_commune": "CONTRE", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7457278213, + 2.08802522274 + ], + "libelle_d_acheminement": "CONTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08802522274, + 49.7457278213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19479de51a593c4b35925803ddd2b4644944a432", + "fields": { + "code_commune_insee": "57084", + "nom_de_la_commune": "BIONCOURT", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8014463238, + 6.36953922667 + ], + "libelle_d_acheminement": "BIONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36953922667, + 48.8014463238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47dc2e94d81c7aa72c643bb099eff6d27b5bf074", + "fields": { + "code_commune_insee": "80211", + "nom_de_la_commune": "CONTY", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7503380472, + 2.14458684266 + ], + "libelle_d_acheminement": "CONTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14458684266, + 49.7503380472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d69927fa90245baed6ef3153d03669dc8a3c493", + "fields": { + "code_commune_insee": "57085", + "nom_de_la_commune": "BIONVILLE SUR NIED", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1118093676, + 6.47964260905 + ], + "libelle_d_acheminement": "BIONVILLE SUR NIED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47964260905, + 49.1118093676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86a23c19ae90870392e00ad2e34d697c35e05c89", + "fields": { + "ligne_5": "WAILLY", + "code_commune_insee": "80211", + "libelle_d_acheminement": "CONTY", + "code_postal": "80160", + "nom_de_la_commune": "CONTY", + "coordonnees_gps": [ + 49.7503380472, + 2.14458684266 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14458684266, + 49.7503380472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d395c810a9ed1fd5cb0655dd3b0f87299a0a882e", + "fields": { + "code_commune_insee": "57090", + "nom_de_la_commune": "BLANCHE EGLISE", + "code_postal": "57260", + "coordonnees_gps": [ + 48.7896924974, + 6.67659797693 + ], + "libelle_d_acheminement": "BLANCHE EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67659797693, + 48.7896924974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87e9adf33a6a3f4ba91cd61d852d906cdecc90c8", + "fields": { + "code_commune_insee": "80213", + "nom_de_la_commune": "COTTENCHY", + "code_postal": "80440", + "coordonnees_gps": [ + 49.8071878667, + 2.36831335799 + ], + "libelle_d_acheminement": "COTTENCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36831335799, + 49.8071878667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8af255272f4d1d0be55550fc6307c3e29de53f90", + "fields": { + "code_commune_insee": "57093", + "nom_de_la_commune": "BLIES GUERSVILLER", + "code_postal": "57200", + "coordonnees_gps": [ + 49.1441438381, + 7.09494961773 + ], + "libelle_d_acheminement": "BLIES GUERSVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09494961773, + 49.1441438381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01461ef42e30b5363cc0ec9cdba6f2bd69ec3e41", + "fields": { + "code_commune_insee": "80214", + "nom_de_la_commune": "COULLEMELLE", + "code_postal": "80250", + "coordonnees_gps": [ + 49.6700657392, + 2.42527413369 + ], + "libelle_d_acheminement": "COULLEMELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42527413369, + 49.6700657392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "491fe91d7da2c924338fa21eb3bdd773fe812103", + "fields": { + "ligne_5": "HALLING LES BOULAY", + "code_commune_insee": "57097", + "libelle_d_acheminement": "BOULAY", + "code_postal": "57220", + "nom_de_la_commune": "BOULAY MOSELLE", + "coordonnees_gps": [ + 49.1779901346, + 6.49842566408 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49842566408, + 49.1779901346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74392f65dc8d7a3cdebf13ab47d3e14305c4d56e", + "fields": { + "code_commune_insee": "80220", + "nom_de_la_commune": "COURTEMANCHE", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6644829732, + 2.54537456166 + ], + "libelle_d_acheminement": "COURTEMANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54537456166, + 49.6644829732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2ced6faa9a2e0f3c8de9e12b21e80511a89ca0e", + "fields": { + "code_commune_insee": "57098", + "nom_de_la_commune": "BOURGALTROFF", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8741830367, + 6.76367631386 + ], + "libelle_d_acheminement": "BOURGALTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76367631386, + 48.8741830367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0953f4235d34f2eabb9a1a46850424d570b9db8", + "fields": { + "code_commune_insee": "80222", + "nom_de_la_commune": "CRECY EN PONTHIEU", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2402128609, + 1.84519481744 + ], + "libelle_d_acheminement": "CRECY EN PONTHIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84519481744, + 50.2402128609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d3bb873d7b634d82d571ab4e44499d0e548ec8d", + "fields": { + "code_commune_insee": "57099", + "nom_de_la_commune": "BOURDONNAY", + "code_postal": "57810", + "coordonnees_gps": [ + 48.7246400805, + 6.73626264674 + ], + "libelle_d_acheminement": "BOURDONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73626264674, + 48.7246400805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3665d408078e7abbba1ced91d930a13f56f4c8e", + "fields": { + "code_commune_insee": "80227", + "nom_de_la_commune": "CROIXRAULT", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7945025614, + 1.98646033146 + ], + "libelle_d_acheminement": "CROIXRAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98646033146, + 49.7945025614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2981df7257fde832c2341bdd786d50ec111f78c", + "fields": { + "code_commune_insee": "57102", + "nom_de_la_commune": "BOUSSE", + "code_postal": "57310", + "coordonnees_gps": [ + 49.2758183032, + 6.20436699384 + ], + "libelle_d_acheminement": "BOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20436699384, + 49.2758183032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebb1bce02ad0bfda188815f91762d62819bcae9d", + "fields": { + "code_commune_insee": "80228", + "nom_de_la_commune": "LE CROTOY", + "code_postal": "80550", + "coordonnees_gps": [ + 50.2439123347, + 1.62316246487 + ], + "libelle_d_acheminement": "LE CROTOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62316246487, + 50.2439123347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b57e69addbc0e4a90bd44d5fe7475575f9f28dd", + "fields": { + "code_commune_insee": "57104", + "nom_de_la_commune": "BOUST", + "code_postal": "57570", + "coordonnees_gps": [ + 49.4357529788, + 6.19331179482 + ], + "libelle_d_acheminement": "BOUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19331179482, + 49.4357529788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9b9a030b7f3ce78592dd163366a6dd27f632a3b", + "fields": { + "code_commune_insee": "80234", + "nom_de_la_commune": "DAOURS", + "code_postal": "80800", + "coordonnees_gps": [ + 49.9037514357, + 2.43946725937 + ], + "libelle_d_acheminement": "DAOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43946725937, + 49.9037514357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a91136e6f95f5c10bd3fa97319a9d0ffd625c01", + "fields": { + "code_commune_insee": "57105", + "nom_de_la_commune": "BOUSTROFF", + "code_postal": "57380", + "coordonnees_gps": [ + 49.0017966177, + 6.63111070806 + ], + "libelle_d_acheminement": "BOUSTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63111070806, + 49.0017966177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f355fd1bce3a0b35c48d4696f8e9c6251e91c6a", + "fields": { + "code_commune_insee": "80240", + "nom_de_la_commune": "DOINGT", + "code_postal": "80200", + "coordonnees_gps": [ + 49.9231785362, + 2.96256193239 + ], + "libelle_d_acheminement": "DOINGT FLAMICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96256193239, + 49.9231785362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4facefdc16b0babfbe32cb6bad1fc421a3b99602", + "fields": { + "code_commune_insee": "57119", + "nom_de_la_commune": "BUHL LORRAINE", + "code_postal": "57400", + "coordonnees_gps": [ + 48.7190027122, + 7.07430215859 + ], + "libelle_d_acheminement": "BUHL LORRAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07430215859, + 48.7190027122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39559b6f92c3e5001c2c9905c4f348b9899b06a9", + "fields": { + "code_commune_insee": "80245", + "nom_de_la_commune": "DOMLEGER LONGVILLERS", + "code_postal": "80370", + "coordonnees_gps": [ + 50.155006107, + 2.08731337577 + ], + "libelle_d_acheminement": "DOMLEGER LONGVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08731337577, + 50.155006107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f4c2484a8f5dc01d893fff6a206e14f16a60738", + "fields": { + "code_commune_insee": "57129", + "nom_de_la_commune": "CHARLY ORADOUR", + "code_postal": "57640", + "coordonnees_gps": [ + 49.1760119243, + 6.24626769306 + ], + "libelle_d_acheminement": "CHARLY ORADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24626769306, + 49.1760119243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3410f0a0a23e349f5341dc99b91c17af02ca737e", + "fields": { + "code_commune_insee": "80246", + "nom_de_la_commune": "DOMMARTIN", + "code_postal": "80440", + "coordonnees_gps": [ + 49.7953023134, + 2.40134941683 + ], + "libelle_d_acheminement": "DOMMARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40134941683, + 49.7953023134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "393cd3c623d68343f2eb85da32fe5a74ade25863", + "fields": { + "code_commune_insee": "57134", + "nom_de_la_commune": "CHATEL ST GERMAIN", + "code_postal": "57160", + "coordonnees_gps": [ + 49.1317567029, + 6.0658550675 + ], + "libelle_d_acheminement": "CHATEL ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0658550675, + 49.1317567029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0a18dda044769ea2cc41c23df5de6a9cec672b2", + "fields": { + "code_commune_insee": "80247", + "nom_de_la_commune": "DOMPIERRE BECQUINCOURT", + "code_postal": "80980", + "coordonnees_gps": [ + 49.9109218562, + 2.80675580666 + ], + "libelle_d_acheminement": "DOMPIERRE BECQUINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80675580666, + 49.9109218562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c37084bb8506349d2ce77a90f1cad04b90b60fb", + "fields": { + "code_commune_insee": "57137", + "nom_de_la_commune": "CHEMINOT", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9560682029, + 6.13779293585 + ], + "libelle_d_acheminement": "CHEMINOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13779293585, + 48.9560682029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5eeebbb9400571351b41d5e0f33a3e09e39d353f", + "fields": { + "code_commune_insee": "80250", + "nom_de_la_commune": "DOMVAST", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2018721228, + 1.90447781648 + ], + "libelle_d_acheminement": "DOMVAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90447781648, + 50.2018721228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f52c2c728d91502e8ceef130a255a940547fc95d", + "fields": { + "code_commune_insee": "80253", + "nom_de_la_commune": "DOULLENS", + "code_postal": "80600", + "coordonnees_gps": [ + 50.1631890421, + 2.347176744 + ], + "libelle_d_acheminement": "DOULLENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.347176744, + 50.1631890421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7350b3d4653766826219cef1c0b89296e41fcf44", + "fields": { + "code_commune_insee": "80264", + "nom_de_la_commune": "ECLUSIER VAUX", + "code_postal": "80340", + "coordonnees_gps": [ + 49.9511135171, + 2.79148931118 + ], + "libelle_d_acheminement": "ECLUSIER VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79148931118, + 49.9511135171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4832da783d3c559227c11f3829ca7e26a8a81b02", + "fields": { + "code_commune_insee": "80265", + "nom_de_la_commune": "EMBREVILLE", + "code_postal": "80570", + "coordonnees_gps": [ + 50.0329608641, + 1.55242775238 + ], + "libelle_d_acheminement": "EMBREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55242775238, + 50.0329608641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17601f8abc925e1823e8bc0edec01c55e70c062e", + "fields": { + "code_commune_insee": "80274", + "nom_de_la_commune": "EPPEVILLE", + "code_postal": "80400", + "coordonnees_gps": [ + 49.737763833, + 3.04903557364 + ], + "libelle_d_acheminement": "EPPEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04903557364, + 49.737763833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82cd5cb96d4f011e37618fdd27976ec7e5e1256f", + "fields": { + "code_commune_insee": "80284", + "nom_de_la_commune": "ESMERY HALLON", + "code_postal": "80400", + "coordonnees_gps": [ + 49.711331314, + 3.02468850154 + ], + "libelle_d_acheminement": "ESMERY HALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02468850154, + 49.711331314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f08aa9fda007063bddb458f324383487cfa23134", + "fields": { + "code_commune_insee": "80288", + "nom_de_la_commune": "ESTREES DENIECOURT", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8718517674, + 2.82257224293 + ], + "libelle_d_acheminement": "ESTREES DENIECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82257224293, + 49.8718517674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58f2bb25513c7ad5416ec912c9c9f2f6f97a9d93", + "fields": { + "code_commune_insee": "80290", + "nom_de_la_commune": "ESTREES LES CRECY", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2583279205, + 1.93391857505 + ], + "libelle_d_acheminement": "ESTREES LES CRECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93391857505, + 50.2583279205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40471630c844c82fd98606e1c7ff6e0b8d808061", + "fields": { + "code_commune_insee": "80292", + "nom_de_la_commune": "ETALON", + "code_postal": "80190", + "coordonnees_gps": [ + 49.760781553, + 2.84879580561 + ], + "libelle_d_acheminement": "ETALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84879580561, + 49.760781553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11c5b6256bd3c1225513dc61adbcae8a952e259d", + "fields": { + "ligne_5": "MERICOURT SUR SOMME", + "code_commune_insee": "80295", + "libelle_d_acheminement": "ETINEHEM MERICOURT", + "code_postal": "80340", + "nom_de_la_commune": "ETINEHEM MERICOURT", + "coordonnees_gps": [ + 49.9355483408, + 2.68802553545 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68802553545, + 49.9355483408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "222c179a835b2cc99b3d275963ac006ca8af7d1b", + "fields": { + "code_commune_insee": "80298", + "nom_de_la_commune": "ETRICOURT MANANCOURT", + "code_postal": "80360", + "coordonnees_gps": [ + 50.0296469138, + 2.98220820221 + ], + "libelle_d_acheminement": "ETRICOURT MANANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98220820221, + 50.0296469138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24aa0a0ca36b2a4cb9ee5011d2f31cd0b0c3b804", + "fields": { + "code_commune_insee": "80299", + "nom_de_la_commune": "LA FALOISE", + "code_postal": "80250", + "coordonnees_gps": [ + 49.6967150248, + 2.34026519713 + ], + "libelle_d_acheminement": "LA FALOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34026519713, + 49.6967150248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fb95c3837aa3e46205164bbe13b1764a38bc20b", + "fields": { + "code_commune_insee": "80300", + "nom_de_la_commune": "FALVY", + "code_postal": "80190", + "coordonnees_gps": [ + 49.8226904819, + 2.96264850064 + ], + "libelle_d_acheminement": "FALVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96264850064, + 49.8226904819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e6eeee6ef83fadd8736c84a979a29a89b08d871", + "fields": { + "code_commune_insee": "80301", + "nom_de_la_commune": "FAMECHON", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7670124378, + 2.03228812807 + ], + "libelle_d_acheminement": "FAMECHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03228812807, + 49.7670124378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79531c20064957bbed35585469a5c0f511070f16", + "fields": { + "code_commune_insee": "80306", + "nom_de_la_commune": "FESCAMPS", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6415538079, + 2.6866324021 + ], + "libelle_d_acheminement": "FESCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6866324021, + 49.6415538079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1b81d3f22c2258f9785ce8174b86196dcf36d72", + "fields": { + "code_commune_insee": "80324", + "nom_de_la_commune": "FONTAINE LE SEC", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9436201433, + 1.80412989344 + ], + "libelle_d_acheminement": "FONTAINE LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80412989344, + 49.9436201433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5210026db09ffe9dc9730f4990c803266cf6035b", + "fields": { + "code_commune_insee": "80325", + "nom_de_la_commune": "FONTAINE LES CAPPY", + "code_postal": "80340", + "coordonnees_gps": [ + 49.8992002068, + 2.77659071025 + ], + "libelle_d_acheminement": "FONTAINE LES CAPPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77659071025, + 49.8992002068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c941c7ca4634e8b4e8a7a2959be72bbd35e2941d", + "fields": { + "code_commune_insee": "80332", + "nom_de_la_commune": "FOREST MONTIERS", + "code_postal": "80120", + "coordonnees_gps": [ + 50.2442234148, + 1.73665378586 + ], + "libelle_d_acheminement": "FOREST MONTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73665378586, + 50.2442234148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cff6501b4310cc38f36208b7294055d93720591d", + "fields": { + "code_commune_insee": "80335", + "nom_de_la_commune": "FOUCAUCOURT EN SANTERRE", + "code_postal": "80340", + "coordonnees_gps": [ + 49.8766837829, + 2.76975494054 + ], + "libelle_d_acheminement": "FOUCAUCOURT EN SANTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76975494054, + 49.8766837829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df55a09a387de62e14add153cc8dd4ec8c0c0544", + "fields": { + "code_commune_insee": "80338", + "nom_de_la_commune": "FOUILLOY", + "code_postal": "80800", + "coordonnees_gps": [ + 49.8905768048, + 2.50445171042 + ], + "libelle_d_acheminement": "FOUILLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50445171042, + 49.8905768048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d5d94c8141765e917116e2a9616ff54fa753a24", + "fields": { + "code_commune_insee": "80341", + "nom_de_la_commune": "FOURDRINOY", + "code_postal": "80310", + "coordonnees_gps": [ + 49.9240125168, + 2.10528066329 + ], + "libelle_d_acheminement": "FOURDRINOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10528066329, + 49.9240125168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7505ef73520403657cd412a0c70fb0db5ff0bc4", + "fields": { + "code_commune_insee": "80344", + "nom_de_la_commune": "FRANCIERES", + "code_postal": "80690", + "coordonnees_gps": [ + 50.0743738616, + 1.94581106612 + ], + "libelle_d_acheminement": "FRANCIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94581106612, + 50.0743738616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99f980d55aa6db1706661a259f3330f4f55edeb1", + "fields": { + "code_commune_insee": "80356", + "nom_de_la_commune": "FRESNOY ANDAINVILLE", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9086024009, + 1.79178711806 + ], + "libelle_d_acheminement": "FRESNOY ANDAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79178711806, + 49.9086024009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48b32494b8d135f1819b1579da92caad205364c4", + "fields": { + "code_commune_insee": "80358", + "nom_de_la_commune": "FRESNOY EN CHAUSSEE", + "code_postal": "80110", + "coordonnees_gps": [ + 49.7722587702, + 2.58381477214 + ], + "libelle_d_acheminement": "FRESNOY EN CHAUSSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58381477214, + 49.7722587702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "482a56e363f6b3ac0ffd37735abc45922d877b41", + "fields": { + "code_commune_insee": "80365", + "nom_de_la_commune": "FRICAMPS", + "code_postal": "80290", + "coordonnees_gps": [ + 49.8182138664, + 1.99055503958 + ], + "libelle_d_acheminement": "FRICAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99055503958, + 49.8182138664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c619feae2496ecb640ab33420170409083af603", + "fields": { + "code_commune_insee": "80369", + "nom_de_la_commune": "FROHEN SUR AUTHIE", + "code_postal": "80370", + "coordonnees_gps": [ + 50.2020618045, + 2.20851468779 + ], + "libelle_d_acheminement": "FROHEN SUR AUTHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20851468779, + 50.2020618045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81cf985d6990a1562370d39450868ca943566aec", + "fields": { + "code_commune_insee": "80371", + "nom_de_la_commune": "FROYELLES", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2231594958, + 1.9254990977 + ], + "libelle_d_acheminement": "FROYELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9254990977, + 50.2231594958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0919d8a43dc41764d2c47f6ec39672d08552cd9", + "fields": { + "code_commune_insee": "80379", + "nom_de_la_commune": "GLISY", + "code_postal": "80440", + "coordonnees_gps": [ + 49.8742994501, + 2.38728459314 + ], + "libelle_d_acheminement": "GLISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38728459314, + 49.8742994501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48066533b663c80450fd2343062288ce2e0eeee8", + "fields": { + "code_commune_insee": "80387", + "nom_de_la_commune": "GRATTEPANCHE", + "code_postal": "80680", + "coordonnees_gps": [ + 49.7872512681, + 2.30610022638 + ], + "libelle_d_acheminement": "GRATTEPANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30610022638, + 49.7872512681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf9c3845776c867335937f1e9c1e4df3b2e89d93", + "fields": { + "code_commune_insee": "80391", + "nom_de_la_commune": "GRIVILLERS", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6592730832, + 2.70398733576 + ], + "libelle_d_acheminement": "GRIVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70398733576, + 49.6592730832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8784a0b82739a0424e9628ffd596697133de9237", + "fields": { + "code_commune_insee": "80393", + "nom_de_la_commune": "GRUNY", + "code_postal": "80700", + "coordonnees_gps": [ + 49.726399981, + 2.81653068817 + ], + "libelle_d_acheminement": "GRUNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81653068817, + 49.726399981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6c2e2578efa12c7a9adfb19e81789c858e6f942", + "fields": { + "code_commune_insee": "80401", + "nom_de_la_commune": "GUILLEMONT", + "code_postal": "80360", + "coordonnees_gps": [ + 50.0110490982, + 2.82381757133 + ], + "libelle_d_acheminement": "GUILLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82381757133, + 50.0110490982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf006528ea35bebcf19bbcfacc6df4ce5ef4e463", + "fields": { + "ligne_5": "WANEL", + "code_commune_insee": "80406", + "libelle_d_acheminement": "HALLENCOURT", + "code_postal": "80490", + "nom_de_la_commune": "HALLENCOURT", + "coordonnees_gps": [ + 49.9955608353, + 1.87489334789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87489334789, + 49.9955608353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ec85eb4845077eeae625affe61e990edd3c3e48", + "fields": { + "code_commune_insee": "80409", + "nom_de_la_commune": "HALLU", + "code_postal": "80320", + "coordonnees_gps": [ + 49.7921191949, + 2.78813620404 + ], + "libelle_d_acheminement": "HALLU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78813620404, + 49.7921191949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47b31c351615c8ecb0c76d44dafd16dc2662fb6c", + "fields": { + "code_commune_insee": "80421", + "nom_de_la_commune": "HATTENCOURT", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7691401362, + 2.79281334603 + ], + "libelle_d_acheminement": "HATTENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79281334603, + 49.7691401362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a06388ffdffeb5e7e64ed711f1633cd1361df691", + "fields": { + "code_commune_insee": "80427", + "nom_de_la_commune": "HEM HARDINVAL", + "code_postal": "80600", + "coordonnees_gps": [ + 50.1530964553, + 2.28736362894 + ], + "libelle_d_acheminement": "HEM HARDINVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28736362894, + 50.1530964553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acf6b1bf360df00ae94a1deebff55a35a950142d", + "fields": { + "code_commune_insee": "80430", + "nom_de_la_commune": "HERBECOURT", + "code_postal": "80200", + "coordonnees_gps": [ + 49.9225053134, + 2.83976171493 + ], + "libelle_d_acheminement": "HERBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83976171493, + 49.9225053134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc406479a88fa61934941a8f1396f8f31e42b39c", + "fields": { + "code_commune_insee": "80435", + "nom_de_la_commune": "HESBECOURT", + "code_postal": "80240", + "coordonnees_gps": [ + 49.9465103458, + 3.1425154932 + ], + "libelle_d_acheminement": "HESBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1425154932, + 49.9465103458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da044d7581c2b3fcadfcc7c42c7b24569183a0fc", + "fields": { + "code_commune_insee": "57144", + "nom_de_la_commune": "COCHEREN", + "code_postal": "57800", + "coordonnees_gps": [ + 49.1434616014, + 6.8532637393 + ], + "libelle_d_acheminement": "COCHEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8532637393, + 49.1434616014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80e1af2ab5a16d22caafbccc08db2117a6adfb40", + "fields": { + "ligne_5": "BELLE ROCHE", + "code_commune_insee": "57144", + "libelle_d_acheminement": "COCHEREN", + "code_postal": "57800", + "nom_de_la_commune": "COCHEREN", + "coordonnees_gps": [ + 49.1434616014, + 6.8532637393 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8532637393, + 49.1434616014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e99823600ac9ba33fa6c310d078b11e0892566a1", + "fields": { + "code_commune_insee": "57147", + "nom_de_la_commune": "COIN SUR SEILLE", + "code_postal": "57420", + "coordonnees_gps": [ + 49.0102275931, + 6.15977287871 + ], + "libelle_d_acheminement": "COIN SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15977287871, + 49.0102275931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dccabb9c062cb1c95fea770489b270724d4e0ad3", + "fields": { + "code_commune_insee": "57155", + "nom_de_la_commune": "COURCELLES CHAUSSY", + "code_postal": "57530", + "coordonnees_gps": [ + 49.1184504729, + 6.39972759611 + ], + "libelle_d_acheminement": "COURCELLES CHAUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39972759611, + 49.1184504729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41857dbd28d4626430f8ef8910603040111fcfee", + "fields": { + "code_commune_insee": "57156", + "nom_de_la_commune": "COURCELLES SUR NIED", + "code_postal": "57530", + "coordonnees_gps": [ + 49.0571624727, + 6.30773670444 + ], + "libelle_d_acheminement": "COURCELLES SUR NIED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30773670444, + 49.0571624727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e5d452bd7db59b60cab428d59ea80380560829e", + "fields": { + "code_commune_insee": "57159", + "nom_de_la_commune": "CREHANGE", + "code_postal": "57690", + "coordonnees_gps": [ + 49.0509994159, + 6.57512805664 + ], + "libelle_d_acheminement": "CREHANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57512805664, + 49.0509994159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a71dcf4acf5fea1dca1078e31248f15ad3f93cce", + "fields": { + "code_commune_insee": "57162", + "nom_de_la_commune": "CUVRY", + "code_postal": "57420", + "coordonnees_gps": [ + 49.0397448486, + 6.16141321465 + ], + "libelle_d_acheminement": "CUVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16141321465, + 49.0397448486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acb6159aaff86e5128053cd0222b2387800188f8", + "fields": { + "code_commune_insee": "57168", + "nom_de_la_commune": "DANNE ET QUATRE VENTS", + "code_postal": "57370", + "coordonnees_gps": [ + 48.7616932875, + 7.29067794786 + ], + "libelle_d_acheminement": "DANNE ET QUATRE VENTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29067794786, + 48.7616932875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9906404b75d807e032449c04a1a4c02af8a0fadc", + "fields": { + "code_commune_insee": "57202", + "nom_de_la_commune": "ETZLING", + "code_postal": "57460", + "coordonnees_gps": [ + 49.1801213769, + 6.95820940486 + ], + "libelle_d_acheminement": "ETZLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95820940486, + 49.1801213769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e9a9e8d57ecf37744dac36a7ccf311bb03de703", + "fields": { + "ligne_5": "VREMY", + "code_commune_insee": "57204", + "libelle_d_acheminement": "FAILLY", + "code_postal": "57640", + "nom_de_la_commune": "FAILLY", + "coordonnees_gps": [ + 49.1632324658, + 6.27202810921 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27202810921, + 49.1632324658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5247f4bf1285e64d8c9a5f49976a3d4d1ce1cf9", + "fields": { + "code_commune_insee": "57207", + "nom_de_la_commune": "FAREBERSVILLER", + "code_postal": "57450", + "coordonnees_gps": [ + 49.1168142079, + 6.86777677982 + ], + "libelle_d_acheminement": "FAREBERSVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86777677982, + 49.1168142079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e4977693104ff4395ff7bf4514f7acdc3b65608", + "fields": { + "code_commune_insee": "57212", + "nom_de_la_commune": "FEY", + "code_postal": "57420", + "coordonnees_gps": [ + 49.0296436308, + 6.0997498938 + ], + "libelle_d_acheminement": "FEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0997498938, + 49.0296436308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f6cbb73420d98b6148e0ced75931db4053d68da", + "fields": { + "code_commune_insee": "57216", + "nom_de_la_commune": "FLEISHEIM", + "code_postal": "57635", + "coordonnees_gps": [ + 48.791923368, + 7.16414660657 + ], + "libelle_d_acheminement": "FLEISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16414660657, + 48.791923368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49e0dcd413a30a6ff71eaabae0bcffa5f98c40ef", + "fields": { + "code_commune_insee": "57219", + "nom_de_la_commune": "FLEVY", + "code_postal": "57365", + "coordonnees_gps": [ + 49.2400453527, + 6.26395844495 + ], + "libelle_d_acheminement": "FLEVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26395844495, + 49.2400453527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0f129a44c960e846912b19846d1e334ff3ca65b", + "fields": { + "code_commune_insee": "57222", + "nom_de_la_commune": "FOLKLING", + "code_postal": "57600", + "coordonnees_gps": [ + 49.1512458848, + 6.90623591877 + ], + "libelle_d_acheminement": "FOLKLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90623591877, + 49.1512458848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66a45120686768b590111ac69ea791c8ee33adff", + "fields": { + "code_commune_insee": "57235", + "nom_de_la_commune": "FREISTROFF", + "code_postal": "57320", + "coordonnees_gps": [ + 49.2899855727, + 6.4826695714 + ], + "libelle_d_acheminement": "FREISTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4826695714, + 49.2899855727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d986dadf85a8388115ea5fc5a0767a5d41fdcfa", + "fields": { + "code_commune_insee": "57236", + "nom_de_la_commune": "FREMERY", + "code_postal": "57590", + "coordonnees_gps": [ + 48.9240175363, + 6.47344471901 + ], + "libelle_d_acheminement": "FREMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47344471901, + 48.9240175363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c626c23687f59b3ed36422439659862dfbc0892", + "fields": { + "code_commune_insee": "57242", + "nom_de_la_commune": "GANDRANGE", + "code_postal": "57175", + "coordonnees_gps": [ + 49.2734111238, + 6.13350555493 + ], + "libelle_d_acheminement": "GANDRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13350555493, + 49.2734111238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f953461e8fd1e378511757df0e73f8e1e1291bac", + "fields": { + "code_commune_insee": "57245", + "nom_de_la_commune": "GAVISSE", + "code_postal": "57570", + "coordonnees_gps": [ + 49.4341876365, + 6.28799997345 + ], + "libelle_d_acheminement": "GAVISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28799997345, + 49.4341876365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47d237ad36aac1df7a84a0792cf21ae26a189809", + "fields": { + "code_commune_insee": "57250", + "nom_de_la_commune": "GOETZENBRUCK", + "code_postal": "57620", + "coordonnees_gps": [ + 48.974624573, + 7.37727669636 + ], + "libelle_d_acheminement": "GOETZENBRUCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37727669636, + 48.974624573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "131cb2eb35f70da0b32dbe189906dc4f6a150cf4", + "fields": { + "ligne_5": "SARREINSBERG", + "code_commune_insee": "57250", + "libelle_d_acheminement": "GOETZENBRUCK", + "code_postal": "57620", + "nom_de_la_commune": "GOETZENBRUCK", + "coordonnees_gps": [ + 48.974624573, + 7.37727669636 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37727669636, + 48.974624573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20873b7eb21655c6aa7cda8dbaee1ccd6dd29018", + "fields": { + "code_commune_insee": "57258", + "nom_de_la_commune": "GRENING", + "code_postal": "57660", + "coordonnees_gps": [ + 48.974322105, + 6.84167758808 + ], + "libelle_d_acheminement": "GRENING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84167758808, + 48.974322105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5bce13936b68671031d9f9f8e0ba42c9b86bb98", + "fields": { + "code_commune_insee": "57259", + "nom_de_la_commune": "GRINDORFF BIZING", + "code_postal": "57480", + "coordonnees_gps": [ + 49.3821541257, + 6.51356610302 + ], + "libelle_d_acheminement": "GRINDORFF BIZING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51356610302, + 49.3821541257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d018cdc70e77e284bf5a64df6964f6842567234f", + "fields": { + "code_commune_insee": "57260", + "nom_de_la_commune": "GROSBLIEDERSTROFF", + "code_postal": "57520", + "coordonnees_gps": [ + 49.1552146769, + 7.02220762018 + ], + "libelle_d_acheminement": "GROSBLIEDERSTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02220762018, + 49.1552146769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d39b666e1235909d57c8414a7da135400d09279b", + "fields": { + "code_commune_insee": "57267", + "nom_de_la_commune": "LE VAL DE GUEBLANGE", + "code_postal": "57430", + "coordonnees_gps": [ + 48.980310818, + 6.95647659891 + ], + "libelle_d_acheminement": "LE VAL DE GUEBLANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95647659891, + 48.980310818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "527ba6e0504c8bbd30b015731f17a79df2df5216", + "fields": { + "code_commune_insee": "57271", + "nom_de_la_commune": "GUENVILLER", + "code_postal": "57470", + "coordonnees_gps": [ + 49.1048014179, + 6.80480680693 + ], + "libelle_d_acheminement": "GUENVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80480680693, + 49.1048014179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf550cad23bfa9d949d942d771098a390ef537f1", + "fields": { + "code_commune_insee": "57277", + "nom_de_la_commune": "GUINKIRCHEN", + "code_postal": "57220", + "coordonnees_gps": [ + 49.2071964613, + 6.44513979515 + ], + "libelle_d_acheminement": "GUINKIRCHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44513979515, + 49.2071964613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e08e24a6807781b7261e6fd34111ad14083ad9b", + "fields": { + "code_commune_insee": "57291", + "nom_de_la_commune": "HANGVILLER", + "code_postal": "57370", + "coordonnees_gps": [ + 48.8155200679, + 7.23284930083 + ], + "libelle_d_acheminement": "HANGVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23284930083, + 48.8155200679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90f9a3d43fbd130c1677d4223a17e4b902269b73", + "fields": { + "code_commune_insee": "57294", + "nom_de_la_commune": "HANVILLER", + "code_postal": "57230", + "coordonnees_gps": [ + 49.103795438, + 7.44223800825 + ], + "libelle_d_acheminement": "HANVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44223800825, + 49.103795438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "640807ebadb4fb12fc158c7acdb91c1c6a8e8dcc", + "fields": { + "code_commune_insee": "57295", + "nom_de_la_commune": "HARAUCOURT SUR SEILLE", + "code_postal": "57630", + "coordonnees_gps": [ + 48.8084972349, + 6.60564803108 + ], + "libelle_d_acheminement": "HARAUCOURT SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60564803108, + 48.8084972349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47ce017b6442c9fb941e0ce84e2a586c3a38fd69", + "fields": { + "code_commune_insee": "57296", + "nom_de_la_commune": "HARGARTEN AUX MINES", + "code_postal": "57550", + "coordonnees_gps": [ + 49.2213146736, + 6.60477300575 + ], + "libelle_d_acheminement": "HARGARTEN AUX MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60477300575, + 49.2213146736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b4919c4f5f30ddc7962e8d9958925d280a1fd1b", + "fields": { + "code_commune_insee": "57300", + "nom_de_la_commune": "HASELBOURG", + "code_postal": "57850", + "coordonnees_gps": [ + 48.6894845276, + 7.22182351627 + ], + "libelle_d_acheminement": "HASELBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22182351627, + 48.6894845276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa946d62c061009522244b7cb525123fde8c8926", + "fields": { + "code_commune_insee": "57305", + "nom_de_la_commune": "HAVANGE", + "code_postal": "57650", + "coordonnees_gps": [ + 49.3886163858, + 6.00100680811 + ], + "libelle_d_acheminement": "HAVANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00100680811, + 49.3886163858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e7f07a9007e7aa2ed1b65c2d0b1295f8e4f9a7d", + "fields": { + "code_commune_insee": "57306", + "nom_de_la_commune": "HAYANGE", + "code_postal": "57700", + "coordonnees_gps": [ + 49.330858891, + 6.06649233507 + ], + "libelle_d_acheminement": "HAYANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06649233507, + 49.330858891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fceb749e9d1d51a553e9fb23bdcd1d52a1c13c9", + "fields": { + "ligne_5": "ST NICOLAS EN FORET", + "code_commune_insee": "57306", + "libelle_d_acheminement": "HAYANGE", + "code_postal": "57700", + "nom_de_la_commune": "HAYANGE", + "coordonnees_gps": [ + 49.330858891, + 6.06649233507 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06649233507, + 49.330858891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "065a96de1c48ca30bb9dbd0595259f368581e4e7", + "fields": { + "code_commune_insee": "57307", + "nom_de_la_commune": "HAYES", + "code_postal": "57530", + "coordonnees_gps": [ + 49.1699634472, + 6.37852476248 + ], + "libelle_d_acheminement": "HAYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37852476248, + 49.1699634472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4ec2a1af4ff7ec7fd27ec82d43ef8a6b8a83e30", + "fields": { + "code_commune_insee": "57311", + "nom_de_la_commune": "HELLIMER", + "code_postal": "57660", + "coordonnees_gps": [ + 48.9953314454, + 6.82557922684 + ], + "libelle_d_acheminement": "HELLIMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82557922684, + 48.9953314454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a1e32584955af0f5d44aeb80c34f9f35b517c72", + "fields": { + "code_commune_insee": "57313", + "nom_de_la_commune": "HEMILLY", + "code_postal": "57690", + "coordonnees_gps": [ + 49.0470706428, + 6.49114253745 + ], + "libelle_d_acheminement": "HEMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49114253745, + 49.0470706428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bbaaa2da0776c760a8612bdd5031b9dafd739d7", + "fields": { + "code_commune_insee": "57318", + "nom_de_la_commune": "HERMELANGE", + "code_postal": "57790", + "coordonnees_gps": [ + 48.681898181, + 7.0155466313 + ], + "libelle_d_acheminement": "HERMELANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0155466313, + 48.681898181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca6eb6f17e4bf4f6ddc6997a3f06d1346ddc439f", + "fields": { + "code_commune_insee": "57319", + "nom_de_la_commune": "HERNY", + "code_postal": "57580", + "coordonnees_gps": [ + 49.003612296, + 6.48054105293 + ], + "libelle_d_acheminement": "HERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48054105293, + 49.003612296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ae2bb603deef53feca8d2feac65aef3c4ba6d2c", + "fields": { + "ligne_5": "SELINCOURT", + "code_commune_insee": "80443", + "libelle_d_acheminement": "HORNOY LE BOURG", + "code_postal": "80640", + "nom_de_la_commune": "HORNOY LE BOURG", + "coordonnees_gps": [ + 49.8474299808, + 1.90289897698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90289897698, + 49.8474299808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9143a03dbb48c9cb4a762f2d3e9d5bd885c3da56", + "fields": { + "code_commune_insee": "57324", + "nom_de_la_commune": "HILBESHEIM", + "code_postal": "57400", + "coordonnees_gps": [ + 48.7801948561, + 7.10042717343 + ], + "libelle_d_acheminement": "HILBESHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10042717343, + 48.7801948561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70db043de139e274c173d27b1606d81fa1d29375", + "fields": { + "code_commune_insee": "80451", + "nom_de_la_commune": "IRLES", + "code_postal": "80300", + "coordonnees_gps": [ + 50.1027187266, + 2.76036273759 + ], + "libelle_d_acheminement": "IRLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76036273759, + 50.1027187266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab57bd0b00431e6eebcb415378f39cceb6525501", + "fields": { + "code_commune_insee": "57326", + "nom_de_la_commune": "HINCKANGE", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1876232217, + 6.44855984948 + ], + "libelle_d_acheminement": "HINCKANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44855984948, + 49.1876232217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a274272da664718b15f34e2daeb30240d7c0e91", + "fields": { + "code_commune_insee": "80453", + "nom_de_la_commune": "LABOISSIERE EN SANTERRE", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6588650675, + 2.66756575772 + ], + "libelle_d_acheminement": "LABOISSIERE EN SANTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66756575772, + 49.6588650675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9262cc3163c00da016418f3c30a2238bbf448e0c", + "fields": { + "code_commune_insee": "57328", + "nom_de_la_commune": "HOLACOURT", + "code_postal": "57380", + "coordonnees_gps": [ + 48.977421047, + 6.50810665423 + ], + "libelle_d_acheminement": "HOLACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50810665423, + 48.977421047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62aaef47223bfcddeefa0f0dbd55babf20655812", + "fields": { + "code_commune_insee": "80475", + "nom_de_la_commune": "LIERAMONT", + "code_postal": "80240", + "coordonnees_gps": [ + 49.9958484333, + 3.05178625154 + ], + "libelle_d_acheminement": "LIERAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05178625154, + 49.9958484333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31dd9f24a7b0ec0fd72d7d704515debf717d0705", + "fields": { + "code_commune_insee": "57329", + "nom_de_la_commune": "HOLLING", + "code_postal": "57220", + "coordonnees_gps": [ + 49.2572520068, + 6.49985680786 + ], + "libelle_d_acheminement": "HOLLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49985680786, + 49.2572520068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "936a74ffe58a6c8a258d3cbb7681d4dd19eb66d7", + "fields": { + "ligne_5": "LOEUILLY", + "code_commune_insee": "80485", + "libelle_d_acheminement": "O DE SELLE", + "code_postal": "80160", + "nom_de_la_commune": "O DE SELLE", + "coordonnees_gps": [ + 49.7718632447, + 2.19570627328 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19570627328, + 49.7718632447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e745851748bffa0d8b88c24f9821e06249875212", + "fields": { + "code_commune_insee": "57330", + "nom_de_la_commune": "HOLVING", + "code_postal": "57510", + "coordonnees_gps": [ + 49.0141852798, + 6.96843320029 + ], + "libelle_d_acheminement": "HOLVING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96843320029, + 49.0141852798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63cda73190c9793e0841a9c6e777dcc164f730b2", + "fields": { + "ligne_5": "TILLOY LES CONTY", + "code_commune_insee": "80485", + "libelle_d_acheminement": "O DE SELLE", + "code_postal": "80160", + "nom_de_la_commune": "O DE SELLE", + "coordonnees_gps": [ + 49.7718632447, + 2.19570627328 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19570627328, + 49.7718632447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e9c0e561c7039890f96addc6f3bead59863b66c", + "fields": { + "code_commune_insee": "57332", + "nom_de_la_commune": "HOMBOURG HAUT", + "code_postal": "57470", + "coordonnees_gps": [ + 49.1275851228, + 6.77437338619 + ], + "libelle_d_acheminement": "HOMBOURG HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77437338619, + 49.1275851228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c6630b2e0f558c74c9cfb730304c38d82f79adb", + "fields": { + "code_commune_insee": "80488", + "nom_de_la_commune": "LONGPRE LES CORPS SAINTS", + "code_postal": "80510", + "coordonnees_gps": [ + 50.0122641772, + 1.98145875228 + ], + "libelle_d_acheminement": "LONGPRE LES CORPS SAINTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98145875228, + 50.0122641772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52df17c6f80f99aa83587021458ca86fe982b628", + "fields": { + "code_commune_insee": "57339", + "nom_de_la_commune": "HULTEHOUSE", + "code_postal": "57820", + "coordonnees_gps": [ + 48.7180055538, + 7.26302245691 + ], + "libelle_d_acheminement": "HULTEHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26302245691, + 48.7180055538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe18ab296eb71bea623d585e74a103abb8449d94", + "fields": { + "code_commune_insee": "80491", + "nom_de_la_commune": "LONGUEVILLETTE", + "code_postal": "80600", + "coordonnees_gps": [ + 50.1302872079, + 2.27525304662 + ], + "libelle_d_acheminement": "LONGUEVILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27525304662, + 50.1302872079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "989fc539412349e48a35a1a87cf14e6ba598aa00", + "fields": { + "code_commune_insee": "57340", + "nom_de_la_commune": "HUNDLING", + "code_postal": "57990", + "coordonnees_gps": [ + 49.1019689356, + 6.98521601159 + ], + "libelle_d_acheminement": "HUNDLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98521601159, + 49.1019689356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c3f878c04cf7d9093bab70bd8ea821e700973ec", + "fields": { + "code_commune_insee": "80501", + "nom_de_la_commune": "MAISON PONTHIEU", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2071660042, + 2.04267098305 + ], + "libelle_d_acheminement": "MAISON PONTHIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04267098305, + 50.2071660042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b8b53460ba15b3343866048f4d51bd38fe677f9", + "fields": { + "code_commune_insee": "57342", + "nom_de_la_commune": "IBIGNY", + "code_postal": "57830", + "coordonnees_gps": [ + 48.6456165478, + 6.89793311842 + ], + "libelle_d_acheminement": "IBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89793311842, + 48.6456165478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53fd31140da4f32c3e72a378f526aa77b06ba846", + "fields": { + "code_commune_insee": "80508", + "nom_de_la_commune": "MARCHE ALLOUARDE", + "code_postal": "80700", + "coordonnees_gps": [ + 49.72387927, + 2.86471134703 + ], + "libelle_d_acheminement": "MARCHE ALLOUARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86471134703, + 49.72387927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec18a0394c58a14e3c6aa83c96dfc31d264eccc2", + "fields": { + "code_commune_insee": "57348", + "nom_de_la_commune": "IPPLING", + "code_postal": "57990", + "coordonnees_gps": [ + 49.1058301525, + 7.00408307681 + ], + "libelle_d_acheminement": "IPPLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00408307681, + 49.1058301525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4abc8bbc1355d5202e2cf3ce181df45c0f1cdfff", + "fields": { + "code_commune_insee": "80514", + "nom_de_la_commune": "MARIEUX", + "code_postal": "80560", + "coordonnees_gps": [ + 50.1008204397, + 2.44635415913 + ], + "libelle_d_acheminement": "MARIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44635415913, + 50.1008204397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6382ba73f18a1f80f0e10dc4c167be87bf61a4cc", + "fields": { + "code_commune_insee": "57356", + "nom_de_la_commune": "KANFEN", + "code_postal": "57330", + "coordonnees_gps": [ + 49.4352156072, + 6.1146772839 + ], + "libelle_d_acheminement": "KANFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1146772839, + 49.4352156072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e9bcaa2903f04d1416a23bde8b6a1d3b580755c", + "fields": { + "code_commune_insee": "80517", + "nom_de_la_commune": "MARQUIVILLERS", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6799122523, + 2.6897278702 + ], + "libelle_d_acheminement": "MARQUIVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6897278702, + 49.6799122523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d595e54cf4eadec000c874cba2a2603781c334a2", + "fields": { + "code_commune_insee": "57359", + "nom_de_la_commune": "KEMPLICH", + "code_postal": "57920", + "coordonnees_gps": [ + 49.3245509599, + 6.39523707067 + ], + "libelle_d_acheminement": "KEMPLICH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39523707067, + 49.3245509599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f787cda6e12dd29edc9159aaa8100abb1509cf9", + "fields": { + "code_commune_insee": "80518", + "nom_de_la_commune": "MARTAINNEVILLE", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9987691783, + 1.70652941696 + ], + "libelle_d_acheminement": "MARTAINNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70652941696, + 49.9987691783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7da129b4b3da7cd86a15a52bae9efa076903e0e9", + "fields": { + "code_commune_insee": "57360", + "nom_de_la_commune": "KERBACH", + "code_postal": "57460", + "coordonnees_gps": [ + 49.162415506, + 6.97402349356 + ], + "libelle_d_acheminement": "KERBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97402349356, + 49.162415506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c68aa3d7099ae832f7b5444cc450792601bb138", + "fields": { + "code_commune_insee": "80544", + "nom_de_la_commune": "MEZEROLLES", + "code_postal": "80600", + "coordonnees_gps": [ + 50.1854908448, + 2.22657090414 + ], + "libelle_d_acheminement": "MEZEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22657090414, + 50.1854908448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b5448e71865dd0a62b7035beefba0d340c55dc3", + "fields": { + "code_commune_insee": "57367", + "nom_de_la_commune": "KLANG", + "code_postal": "57920", + "coordonnees_gps": [ + 49.3187329539, + 6.37045880316 + ], + "libelle_d_acheminement": "KLANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37045880316, + 49.3187329539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f021136f5f26fa6dcf987b6b239b415cfa109168", + "fields": { + "code_commune_insee": "80546", + "nom_de_la_commune": "MIANNAY", + "code_postal": "80132", + "coordonnees_gps": [ + 50.0958685201, + 1.71810274117 + ], + "libelle_d_acheminement": "MIANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71810274117, + 50.0958685201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdfe2abcebf9ccac4e29e32540df5aacc004e18c", + "fields": { + "code_commune_insee": "57368", + "nom_de_la_commune": "KNUTANGE", + "code_postal": "57240", + "coordonnees_gps": [ + 49.3372900264, + 6.03313873426 + ], + "libelle_d_acheminement": "KNUTANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03313873426, + 49.3372900264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "819cc2e1b1f1d5c50c806493a960bc50fbad0901", + "fields": { + "code_commune_insee": "80555", + "nom_de_la_commune": "MONCHY LAGACHE", + "code_postal": "80200", + "coordonnees_gps": [ + 49.850644033, + 3.04313545321 + ], + "libelle_d_acheminement": "MONCHY LAGACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04313545321, + 49.850644033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0d2bdef60b847079017f9550dcc1a59b61f350f", + "fields": { + "code_commune_insee": "57371", + "nom_de_la_commune": "HAUTE KONTZ", + "code_postal": "57480", + "coordonnees_gps": [ + 49.4551080766, + 6.31777701549 + ], + "libelle_d_acheminement": "HAUTE KONTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31777701549, + 49.4551080766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40df86527b68fca116307b0c86cc209a21fd34ff", + "fields": { + "code_commune_insee": "80556", + "nom_de_la_commune": "MONS BOUBERT", + "code_postal": "80210", + "coordonnees_gps": [ + 50.1261955466, + 1.66415808821 + ], + "libelle_d_acheminement": "MONS BOUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66415808821, + 50.1261955466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b6680ed2fcff6d8f83bb67c6bee99a6c56a9d46", + "fields": { + "code_commune_insee": "57377", + "nom_de_la_commune": "LANDANGE", + "code_postal": "57830", + "coordonnees_gps": [ + 48.6688126564, + 6.96056023007 + ], + "libelle_d_acheminement": "LANDANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96056023007, + 48.6688126564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1863a22eafe33d5821000fcb2caae481473d2185", + "fields": { + "code_commune_insee": "80571", + "nom_de_la_commune": "MORISEL", + "code_postal": "80110", + "coordonnees_gps": [ + 49.7650422662, + 2.45934575457 + ], + "libelle_d_acheminement": "MORISEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45934575457, + 49.7650422662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8efa4e79bdf1f4794c3dec3d8a3ba74be83073f6", + "fields": { + "code_commune_insee": "57386", + "nom_de_la_commune": "LAUDREFANG", + "code_postal": "57385", + "coordonnees_gps": [ + 49.0828663736, + 6.6421743054 + ], + "libelle_d_acheminement": "LAUDREFANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6421743054, + 49.0828663736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e412ead09cea451e67c4b68d2d28895c0021c5c9", + "fields": { + "code_commune_insee": "80572", + "nom_de_la_commune": "MORLANCOURT", + "code_postal": "80300", + "coordonnees_gps": [ + 49.948084747, + 2.6473273905 + ], + "libelle_d_acheminement": "MORLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6473273905, + 49.948084747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7210091f54d5067a02eec2a8a3e7c456f24cb983", + "fields": { + "code_commune_insee": "57387", + "nom_de_la_commune": "LAUMESFELD", + "code_postal": "57480", + "coordonnees_gps": [ + 49.3683939393, + 6.44377458501 + ], + "libelle_d_acheminement": "LAUMESFELD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44377458501, + 49.3683939393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d99fd56967c1bfe40376c029b0495a68fca6e059", + "fields": { + "code_commune_insee": "80573", + "nom_de_la_commune": "MORVILLERS ST SATURNIN", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7787461187, + 1.81527896317 + ], + "libelle_d_acheminement": "MORVILLERS ST SATURNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81527896317, + 49.7787461187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4a0ab070d9075ab13ae1dd4021f5bc54fa00f90", + "fields": { + "code_commune_insee": "57395", + "nom_de_la_commune": "LESSE", + "code_postal": "57580", + "coordonnees_gps": [ + 48.9515094121, + 6.51596582053 + ], + "libelle_d_acheminement": "LESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51596582053, + 48.9515094121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d15fddf479b0842f4526d6eaf9fcf01fc4b14b8b", + "fields": { + "ligne_5": "DIGEON", + "code_commune_insee": "80573", + "libelle_d_acheminement": "MORVILLERS ST SATURNIN", + "code_postal": "80290", + "nom_de_la_commune": "MORVILLERS ST SATURNIN", + "coordonnees_gps": [ + 49.7787461187, + 1.81527896317 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81527896317, + 49.7787461187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a86909c24ec87fa32426cdcd04c93b9ea076853e", + "fields": { + "code_commune_insee": "57397", + "nom_de_la_commune": "LEY", + "code_postal": "57810", + "coordonnees_gps": [ + 48.736472131, + 6.65504252874 + ], + "libelle_d_acheminement": "LEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65504252874, + 48.736472131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bc8462896305ed8d3dbc2848cfb46f0acd84c59", + "fields": { + "code_commune_insee": "80579", + "nom_de_la_commune": "MUILLE VILLETTE", + "code_postal": "80400", + "coordonnees_gps": [ + 49.7250440198, + 3.06872712121 + ], + "libelle_d_acheminement": "MUILLE VILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06872712121, + 49.7250440198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44e781c0aedc635ddeb11127e90159e3f45caa65", + "fields": { + "code_commune_insee": "57401", + "nom_de_la_commune": "LIDREZING", + "code_postal": "57340", + "coordonnees_gps": [ + 48.8816795144, + 6.71394586116 + ], + "libelle_d_acheminement": "LIDREZING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71394586116, + 48.8816795144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "726103b2ee313f508d1896291947cbb823243b8b", + "fields": { + "ligne_5": "RUMAISNIL", + "code_commune_insee": "80582", + "libelle_d_acheminement": "NAMPS MAISNIL", + "code_postal": "80290", + "nom_de_la_commune": "NAMPS MAISNIL", + "coordonnees_gps": [ + 49.8061321479, + 2.1229976802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1229976802, + 49.8061321479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dd404bb6627b9bcb22d3d30d239fe89768b0e1a", + "fields": { + "code_commune_insee": "57407", + "nom_de_la_commune": "LIXHEIM", + "code_postal": "57635", + "coordonnees_gps": [ + 48.7874942792, + 7.14504787778 + ], + "libelle_d_acheminement": "LIXHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14504787778, + 48.7874942792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb15bc9f37e820be715e2b83c07c5cc40d5caa96", + "fields": { + "code_commune_insee": "80586", + "nom_de_la_commune": "NESLE L HOPITAL", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9141969237, + 1.69287988387 + ], + "libelle_d_acheminement": "NESLE L HOPITAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69287988387, + 49.9141969237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa772edad47dd29b9cdf64c8239c6e6d93bb92c8", + "fields": { + "code_commune_insee": "57408", + "nom_de_la_commune": "LIXING LES ROUHLING", + "code_postal": "57520", + "coordonnees_gps": [ + 49.1510106332, + 6.99074075556 + ], + "libelle_d_acheminement": "LIXING LES ROUHLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99074075556, + 49.1510106332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce599fa7170768ba3d8a415a98c568dc8a262f10", + "fields": { + "code_commune_insee": "80590", + "nom_de_la_commune": "NEUILLY L HOPITAL", + "code_postal": "80132", + "coordonnees_gps": [ + 50.1693770105, + 1.88017182256 + ], + "libelle_d_acheminement": "NEUILLY L HOPITAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88017182256, + 50.1693770105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6719b29d26d6c717deaf8e5a5d626306eb15022b", + "fields": { + "code_commune_insee": "57409", + "nom_de_la_commune": "LIXING LES ST AVOLD", + "code_postal": "57660", + "coordonnees_gps": [ + 49.0343991815, + 6.74031521371 + ], + "libelle_d_acheminement": "LIXING LES ST AVOLD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74031521371, + 49.0343991815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93a66d2d528b3b235ba6aee40c6c12f55f02d856", + "fields": { + "code_commune_insee": "80596", + "nom_de_la_commune": "NEUVILLETTE", + "code_postal": "80600", + "coordonnees_gps": [ + 50.2084339297, + 2.3146303419 + ], + "libelle_d_acheminement": "NEUVILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3146303419, + 50.2084339297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a936aa03ee11c65cd883268e2b731cc1a0eaf5c4", + "fields": { + "code_commune_insee": "57414", + "nom_de_la_commune": "LORQUIN", + "code_postal": "57790", + "coordonnees_gps": [ + 48.6664066936, + 7.00099165249 + ], + "libelle_d_acheminement": "LORQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00099165249, + 48.6664066936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dc0065a4e8b445866812bbf68a27db1545d2f91", + "fields": { + "code_commune_insee": "80603", + "nom_de_la_commune": "OCHANCOURT", + "code_postal": "80210", + "coordonnees_gps": [ + 50.1010216248, + 1.61201531961 + ], + "libelle_d_acheminement": "OCHANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61201531961, + 50.1010216248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a30b498cd6c3079208602b8e4f9d9c1a7bfe4def", + "fields": { + "code_commune_insee": "57415", + "nom_de_la_commune": "LORRY LES METZ", + "code_postal": "57050", + "coordonnees_gps": [ + 49.1440695242, + 6.10904481635 + ], + "libelle_d_acheminement": "LORRY LES METZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10904481635, + 49.1440695242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b740148be6b37cdb548cfc646ae28b1dc2b3c6a", + "fields": { + "code_commune_insee": "80607", + "nom_de_la_commune": "OISSY", + "code_postal": "80540", + "coordonnees_gps": [ + 49.9026966706, + 2.06025866834 + ], + "libelle_d_acheminement": "OISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06025866834, + 49.9026966706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34efa3d258f1dd3df61a6c8dd1d1bfdf44ff0ac4", + "fields": { + "code_commune_insee": "57416", + "nom_de_la_commune": "LORRY MARDIGNY", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9830745569, + 6.09424023575 + ], + "libelle_d_acheminement": "LORRY MARDIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09424023575, + 48.9830745569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd2f819629dd5821afaf22efec9b68664a31aca8", + "fields": { + "code_commune_insee": "80616", + "nom_de_la_commune": "PARGNY", + "code_postal": "80190", + "coordonnees_gps": [ + 49.8086448801, + 2.94770982571 + ], + "libelle_d_acheminement": "PARGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94770982571, + 49.8086448801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b3dfbd65f537ff6a3aa5c63f385457e79f344d7", + "fields": { + "code_commune_insee": "57417", + "nom_de_la_commune": "LOSTROFF", + "code_postal": "57670", + "coordonnees_gps": [ + 48.8651920526, + 6.8639069452 + ], + "libelle_d_acheminement": "LOSTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8639069452, + 48.8651920526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03878def886f25ada2d93fbad235e70d1efd0568", + "fields": { + "code_commune_insee": "80617", + "nom_de_la_commune": "PARVILLERS LE QUESNOY", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7466464905, + 2.72555344352 + ], + "libelle_d_acheminement": "PARVILLERS LE QUESNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72555344352, + 49.7466464905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f694694e206b8d6ca122121a2ca6f942753beb09", + "fields": { + "ligne_5": "PETIT EBERSVILLER", + "code_commune_insee": "57428", + "libelle_d_acheminement": "MACHEREN", + "code_postal": "57730", + "nom_de_la_commune": "MACHEREN", + "coordonnees_gps": [ + 49.0948492367, + 6.76865484007 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76865484007, + 49.0948492367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f8d3c7a5871cf68b009f73eb16cff4a982c72c1", + "fields": { + "code_commune_insee": "80618", + "nom_de_la_commune": "PENDE", + "code_postal": "80230", + "coordonnees_gps": [ + 50.1611960507, + 1.58412882815 + ], + "libelle_d_acheminement": "PENDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58412882815, + 50.1611960507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cb3e2cafb8b66bea41d1671859c24ad82236dcc", + "fields": { + "code_commune_insee": "57437", + "nom_de_la_commune": "MALLING", + "code_postal": "57480", + "coordonnees_gps": [ + 49.4148882065, + 6.30672522537 + ], + "libelle_d_acheminement": "MALLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30672522537, + 49.4148882065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2da0975d6f3b71f3e71a491bde9cf3f82fac316a", + "fields": { + "code_commune_insee": "80619", + "nom_de_la_commune": "PERNOIS", + "code_postal": "80670", + "coordonnees_gps": [ + 50.0612738693, + 2.18597099318 + ], + "libelle_d_acheminement": "PERNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18597099318, + 50.0612738693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef09baaea0052d7da45bcabb9795d5740ce96a53", + "fields": { + "ligne_5": "MANDEREN", + "code_commune_insee": "57439", + "libelle_d_acheminement": "MANDEREN RITZING", + "code_postal": "57480", + "nom_de_la_commune": "MANDEREN RITZING", + "coordonnees_gps": [ + 49.4535376683, + 6.44989622561 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44989622561, + 49.4535376683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fac5a3fb611b8998ad93dd20fce875f665ce1ac8", + "fields": { + "code_commune_insee": "80623", + "nom_de_la_commune": "PIENNES ONVILLERS", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6253121248, + 2.64673689542 + ], + "libelle_d_acheminement": "PIENNES ONVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64673689542, + 49.6253121248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b783fe44d213418218dbcfc9ef560ff6a2603e2", + "fields": { + "code_commune_insee": "57442", + "nom_de_la_commune": "MANY", + "code_postal": "57380", + "coordonnees_gps": [ + 49.0008874067, + 6.52779955702 + ], + "libelle_d_acheminement": "MANY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52779955702, + 49.0008874067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "422374b525350e49ca29ea0376b614d895ab96c6", + "fields": { + "ligne_5": "ONVILLERS", + "code_commune_insee": "80623", + "libelle_d_acheminement": "PIENNES ONVILLERS", + "code_postal": "80500", + "nom_de_la_commune": "PIENNES ONVILLERS", + "coordonnees_gps": [ + 49.6253121248, + 2.64673689542 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64673689542, + 49.6253121248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "158b920ad3f37c2c314fc8659328b2ab3b9444a9", + "fields": { + "code_commune_insee": "57448", + "nom_de_la_commune": "MARSAL", + "code_postal": "57630", + "coordonnees_gps": [ + 48.7823947316, + 6.61581078575 + ], + "libelle_d_acheminement": "MARSAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61581078575, + 48.7823947316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcc4cfd335d702f237d8db2442c378e0dc6b9229", + "fields": { + "ligne_5": "HARGICOURT", + "code_commune_insee": "80625", + "libelle_d_acheminement": "TROIS RIVIERES", + "code_postal": "80500", + "nom_de_la_commune": "TROIS RIVIERES", + "coordonnees_gps": [ + 49.7068924487, + 2.5511767234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5511767234, + 49.7068924487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10ae4dc66ec9492d29c3e0104e1fdc37b55edad8", + "fields": { + "code_commune_insee": "57460", + "nom_de_la_commune": "MERTEN", + "code_postal": "57550", + "coordonnees_gps": [ + 49.2468555754, + 6.66349016101 + ], + "libelle_d_acheminement": "MERTEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66349016101, + 49.2468555754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e66a7af86a5c2d32c376c29b4881d3413f54d9c5", + "fields": { + "code_commune_insee": "80626", + "nom_de_la_commune": "PISSY", + "code_postal": "80540", + "coordonnees_gps": [ + 49.8666021286, + 2.12931431789 + ], + "libelle_d_acheminement": "PISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12931431789, + 49.8666021286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85795a816d37ae9ea5550cad4606bd9cdc0fdbd1", + "fields": { + "code_commune_insee": "57463", + "nom_de_la_commune": "METZ", + "code_postal": "57000", + "coordonnees_gps": [ + 49.1081133279, + 6.1955245421 + ], + "libelle_d_acheminement": "METZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1955245421, + 49.1081133279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53c46732df1fa19f64e96d2d2c206bfbf9e9babf", + "fields": { + "code_commune_insee": "80632", + "nom_de_la_commune": "PONT DE METZ", + "code_postal": "80480", + "coordonnees_gps": [ + 49.8829992379, + 2.22861660834 + ], + "libelle_d_acheminement": "PONT DE METZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22861660834, + 49.8829992379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe812e297fa92aae9b3ec5cc5dd0f9c6735f7968", + "fields": { + "code_commune_insee": "57464", + "nom_de_la_commune": "METZERESCHE", + "code_postal": "57920", + "coordonnees_gps": [ + 49.2949941385, + 6.30743995125 + ], + "libelle_d_acheminement": "METZERESCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30743995125, + 49.2949941385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79b1f84114d41a001c4a52309075ce0b88dbc686", + "fields": { + "code_commune_insee": "80634", + "nom_de_la_commune": "PONT NOYELLES", + "code_postal": "80115", + "coordonnees_gps": [ + 49.9405653949, + 2.45269277473 + ], + "libelle_d_acheminement": "PONT NOYELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45269277473, + 49.9405653949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe8965d441fe5b3057de661258e7de6e6307fd30", + "fields": { + "code_commune_insee": "57465", + "nom_de_la_commune": "METZERVISSE", + "code_postal": "57940", + "coordonnees_gps": [ + 49.3168013752, + 6.28918104694 + ], + "libelle_d_acheminement": "METZERVISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28918104694, + 49.3168013752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae9c095f234137f2cbb20ed05df16bf1de177dd0", + "fields": { + "code_commune_insee": "80635", + "nom_de_la_commune": "PONT REMY", + "code_postal": "80580", + "coordonnees_gps": [ + 50.0614985686, + 1.91476030645 + ], + "libelle_d_acheminement": "PONT REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91476030645, + 50.0614985686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "103012261cd6aeee17a4411a21cb741038585dc7", + "fields": { + "code_commune_insee": "57469", + "nom_de_la_commune": "MITTERSHEIM", + "code_postal": "57930", + "coordonnees_gps": [ + 48.855832503, + 6.94423877984 + ], + "libelle_d_acheminement": "MITTERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94423877984, + 48.855832503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "289b743d027c88a6e18375ee0307e27543248ad3", + "fields": { + "code_commune_insee": "80654", + "nom_de_la_commune": "QUESNOY LE MONTANT", + "code_postal": "80132", + "coordonnees_gps": [ + 50.1063029095, + 1.68766890084 + ], + "libelle_d_acheminement": "QUESNOY LE MONTANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68766890084, + 50.1063029095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffcaa3925fe858d623e92c87c7155d18bccda86a", + "fields": { + "code_commune_insee": "57477", + "nom_de_la_commune": "MONTBRONN", + "code_postal": "57415", + "coordonnees_gps": [ + 48.9975807124, + 7.30621869916 + ], + "libelle_d_acheminement": "MONTBRONN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30621869916, + 48.9975807124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ee32c13996c00a4b1b7ac3f90b0db063ec3e590", + "fields": { + "code_commune_insee": "80657", + "nom_de_la_commune": "QUIRY LE SEC", + "code_postal": "80250", + "coordonnees_gps": [ + 49.6700274695, + 2.3838470915 + ], + "libelle_d_acheminement": "QUIRY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3838470915, + 49.6700274695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ea8a2982b02966ee095040fadeb6500be513f56", + "fields": { + "code_commune_insee": "57479", + "nom_de_la_commune": "MONTENACH", + "code_postal": "57480", + "coordonnees_gps": [ + 49.4142449665, + 6.38637260457 + ], + "libelle_d_acheminement": "MONTENACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38637260457, + 49.4142449665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b230b82e80fdc87d470b52deecf835a92186358", + "fields": { + "code_commune_insee": "80667", + "nom_de_la_commune": "REMAUGIES", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6270583774, + 2.67048609499 + ], + "libelle_d_acheminement": "REMAUGIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67048609499, + 49.6270583774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60b88badeca0d263e957417cf291316e6e2dfeb4", + "fields": { + "code_commune_insee": "57481", + "nom_de_la_commune": "MONTOIS LA MONTAGNE", + "code_postal": "57860", + "coordonnees_gps": [ + 49.2211420359, + 6.02743804311 + ], + "libelle_d_acheminement": "MONTOIS LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02743804311, + 49.2211420359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b865bf6c070f7155e5b0906eb097e4a81324f5b1", + "fields": { + "code_commune_insee": "80668", + "nom_de_la_commune": "REMIENCOURT", + "code_postal": "80250", + "coordonnees_gps": [ + 49.7784769361, + 2.38496357187 + ], + "libelle_d_acheminement": "REMIENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38496357187, + 49.7784769361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90c02ea3d71ff782030a62e0a1e7b9fce2bf5999", + "fields": { + "code_commune_insee": "57483", + "nom_de_la_commune": "MORHANGE", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9274404434, + 6.64219551497 + ], + "libelle_d_acheminement": "MORHANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64219551497, + 48.9274404434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4485280375d8646b5d2d91957abcfa8ff6e33d82", + "fields": { + "code_commune_insee": "80677", + "nom_de_la_commune": "ROISEL", + "code_postal": "80240", + "coordonnees_gps": [ + 49.9450495593, + 3.09614374784 + ], + "libelle_d_acheminement": "ROISEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09614374784, + 49.9450495593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53c9fc00f58f660858648332edf1b35b99edbbb9", + "fields": { + "code_commune_insee": "57486", + "nom_de_la_commune": "MORVILLE SUR NIED", + "code_postal": "57590", + "coordonnees_gps": [ + 48.9493034431, + 6.42925654166 + ], + "libelle_d_acheminement": "MORVILLE SUR NIED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42925654166, + 48.9493034431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaafe71bc133b460b21f59f1dac7125b55e45e37", + "fields": { + "code_commune_insee": "80678", + "nom_de_la_commune": "ROLLOT", + "code_postal": "80500", + "coordonnees_gps": [ + 49.5939801333, + 2.64865776071 + ], + "libelle_d_acheminement": "ROLLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64865776071, + 49.5939801333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a810b35bc40592c3bc7a32862733b5970020995", + "fields": { + "code_commune_insee": "57487", + "nom_de_la_commune": "MOULINS LES METZ", + "code_postal": "57160", + "coordonnees_gps": [ + 49.0926450491, + 6.11852525419 + ], + "libelle_d_acheminement": "MOULINS LES METZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11852525419, + 49.0926450491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cbb2a75f2ee5be730ffc907a3cba4c28d893c6c", + "fields": { + "code_commune_insee": "80683", + "nom_de_la_commune": "ROUY LE GRAND", + "code_postal": "80190", + "coordonnees_gps": [ + 49.7797743059, + 2.94948921504 + ], + "libelle_d_acheminement": "ROUY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94948921504, + 49.7797743059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04f8016d81bf067ac35f0a1265d9bd1c156681bb", + "fields": { + "code_commune_insee": "57490", + "nom_de_la_commune": "MOYENVIC", + "code_postal": "57630", + "coordonnees_gps": [ + 48.7832829713, + 6.57005924028 + ], + "libelle_d_acheminement": "MOYENVIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57005924028, + 48.7832829713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5619d8b6f948c862df8e94f3df8d2e19250288df", + "fields": { + "code_commune_insee": "80684", + "nom_de_la_commune": "ROUY LE PETIT", + "code_postal": "80190", + "coordonnees_gps": [ + 49.7653735196, + 2.95478924129 + ], + "libelle_d_acheminement": "ROUY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95478924129, + 49.7653735196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66b78472c90e94032f40ea9509838d647e3a91ab", + "fields": { + "code_commune_insee": "57507", + "nom_de_la_commune": "NIEDERVISSE", + "code_postal": "57220", + "coordonnees_gps": [ + 49.16173296, + 6.56498885511 + ], + "libelle_d_acheminement": "NIEDERVISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56498885511, + 49.16173296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa25e2b0215c9e6c1e27d58753e2abc146c159a9", + "fields": { + "code_commune_insee": "80688", + "nom_de_la_commune": "RUE", + "code_postal": "80120", + "coordonnees_gps": [ + 50.2781968108, + 1.6650080675 + ], + "libelle_d_acheminement": "RUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6650080675, + 50.2781968108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4f0856c270217b15f666461ce438665981c6792", + "fields": { + "code_commune_insee": "57513", + "nom_de_la_commune": "NOUSSEVILLER LES BITCHE", + "code_postal": "57720", + "coordonnees_gps": [ + 49.1000930479, + 7.37370577565 + ], + "libelle_d_acheminement": "NOUSSEVILLER LES BITCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37370577565, + 49.1000930479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e1964d036326f05aa44b536c9b05f10006b39cb", + "fields": { + "code_commune_insee": "80690", + "nom_de_la_commune": "RUMIGNY", + "code_postal": "80680", + "coordonnees_gps": [ + 49.8049587982, + 2.28324796815 + ], + "libelle_d_acheminement": "RUMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28324796815, + 49.8049587982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e31b438baa1b61576934b8a6b6a3333b8195a660", + "fields": { + "code_commune_insee": "57515", + "nom_de_la_commune": "NOVEANT SUR MOSELLE", + "code_postal": "57680", + "coordonnees_gps": [ + 49.0322950446, + 6.03876360118 + ], + "libelle_d_acheminement": "NOVEANT SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03876360118, + 49.0322950446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47e80821aba75fde645b61a0834d91bdd03a95d2", + "fields": { + "code_commune_insee": "80691", + "nom_de_la_commune": "SAIGNEVILLE", + "code_postal": "80230", + "coordonnees_gps": [ + 50.1393465326, + 1.71615502696 + ], + "libelle_d_acheminement": "SAIGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71615502696, + 50.1393465326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "384c25fae2eb30ccdddb3800ed7ccdf446e4cd26", + "fields": { + "code_commune_insee": "57516", + "nom_de_la_commune": "OBERDORFF", + "code_postal": "57320", + "coordonnees_gps": [ + 49.274217248, + 6.58132683065 + ], + "libelle_d_acheminement": "OBERDORFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58132683065, + 49.274217248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13389310032d67b9c6ed41df8b1fe00ed377210f", + "fields": { + "code_commune_insee": "80693", + "nom_de_la_commune": "SAILLY LAURETTE", + "code_postal": "80800", + "coordonnees_gps": [ + 49.9206257095, + 2.61569223377 + ], + "libelle_d_acheminement": "SAILLY LAURETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61569223377, + 49.9206257095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e1a43aa2ca7038fb2cc6a5c514629eb67d96cbc", + "fields": { + "code_commune_insee": "57519", + "nom_de_la_commune": "OBERVISSE", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1506436659, + 6.57888159109 + ], + "libelle_d_acheminement": "OBERVISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57888159109, + 49.1506436659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcfcf2ee01acbe976598c0ecb221741bde6d3c84", + "fields": { + "code_commune_insee": "80696", + "nom_de_la_commune": "SAINS EN AMIENOIS", + "code_postal": "80680", + "coordonnees_gps": [ + 49.8147147037, + 2.32407977472 + ], + "libelle_d_acheminement": "SAINS EN AMIENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32407977472, + 49.8147147037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f66c1c6a3faece1be1b7cfbde0a5890bf722f574", + "fields": { + "code_commune_insee": "57524", + "nom_de_la_commune": "OMMERAY", + "code_postal": "57810", + "coordonnees_gps": [ + 48.7181618127, + 6.68721833616 + ], + "libelle_d_acheminement": "OMMERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68721833616, + 48.7181618127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d3f6f8f7ca83727a28e949c2f61d1179874004a", + "fields": { + "code_commune_insee": "80706", + "nom_de_la_commune": "ST LEGER LES DOMART", + "code_postal": "80780", + "coordonnees_gps": [ + 50.0559093538, + 2.14029922949 + ], + "libelle_d_acheminement": "ST LEGER LES DOMART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14029922949, + 50.0559093538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d1762f2a153688dc981c3c31b738084ccf8a3f3", + "fields": { + "code_commune_insee": "57525", + "nom_de_la_commune": "ORIOCOURT", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8582626227, + 6.41317599769 + ], + "libelle_d_acheminement": "ORIOCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41317599769, + 48.8582626227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c033bb788840d2e8e3bdd034380d3925d463a082", + "fields": { + "code_commune_insee": "80707", + "nom_de_la_commune": "ST LEGER SUR BRESLE", + "code_postal": "80140", + "coordonnees_gps": [ + 49.8713733215, + 1.7212418664 + ], + "libelle_d_acheminement": "ST LEGER SUR BRESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7212418664, + 49.8713733215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70e774cfbc7b1312a92f422f3c1258a9f4b4e50c", + "fields": { + "code_commune_insee": "57529", + "nom_de_la_commune": "OTTANGE", + "code_postal": "57840", + "coordonnees_gps": [ + 49.437722146, + 6.00701265216 + ], + "libelle_d_acheminement": "OTTANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00701265216, + 49.437722146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c88867aaa8a3c3952e34e55273a08cda52512fc9", + "fields": { + "code_commune_insee": "80710", + "nom_de_la_commune": "ST MAXENT", + "code_postal": "80140", + "coordonnees_gps": [ + 49.998092452, + 1.73127217091 + ], + "libelle_d_acheminement": "ST MAXENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73127217091, + 49.998092452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b719fab38707bd5959b7992f9667c34f9bdae9d3", + "fields": { + "code_commune_insee": "57533", + "nom_de_la_commune": "PANGE", + "code_postal": "57530", + "coordonnees_gps": [ + 49.0816476726, + 6.35523146056 + ], + "libelle_d_acheminement": "PANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35523146056, + 49.0816476726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa6bd33229e1b07f296c8708dfbffc85be81cbba", + "fields": { + "code_commune_insee": "80711", + "nom_de_la_commune": "ST OUEN", + "code_postal": "80610", + "coordonnees_gps": [ + 50.0342986699, + 2.1311595738 + ], + "libelle_d_acheminement": "ST OUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1311595738, + 50.0342986699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a94e56c29a24e012363853368cba3314555fc538", + "fields": { + "code_commune_insee": "57535", + "nom_de_la_commune": "PETIT REDERCHING", + "code_postal": "57410", + "coordonnees_gps": [ + 49.054551428, + 7.31625533519 + ], + "libelle_d_acheminement": "PETIT REDERCHING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31625533519, + 49.054551428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c56641ae760902e5ad9b7f31bfaafc447fb2402e", + "fields": { + "code_commune_insee": "80716", + "nom_de_la_commune": "ST RIQUIER", + "code_postal": "80135", + "coordonnees_gps": [ + 50.1279792191, + 1.94290239471 + ], + "libelle_d_acheminement": "ST RIQUIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94290239471, + 50.1279792191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dec182bef2d0d8f8f62756eccb78278bc06350a7", + "fields": { + "code_commune_insee": "57537", + "nom_de_la_commune": "PETITE ROSSELLE", + "code_postal": "57540", + "coordonnees_gps": [ + 49.2095397191, + 6.85924244683 + ], + "libelle_d_acheminement": "PETITE ROSSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85924244683, + 49.2095397191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e10828e0a4561cd64bd18882521b0cc92ff4500", + "fields": { + "code_commune_insee": "80717", + "nom_de_la_commune": "ST SAUFLIEU", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7853940061, + 2.2529940743 + ], + "libelle_d_acheminement": "ST SAUFLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2529940743, + 49.7853940061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "409c3f7b9a71a9416f465e32be004cb356c422f4", + "fields": { + "code_commune_insee": "57538", + "nom_de_la_commune": "PETTONCOURT", + "code_postal": "57170", + "coordonnees_gps": [ + 48.7881263595, + 6.41106883774 + ], + "libelle_d_acheminement": "PETTONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41106883774, + 48.7881263595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f125966c1e9ecd9eec3306821869c748d9643d64", + "fields": { + "code_commune_insee": "80719", + "nom_de_la_commune": "STE SEGREE", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7602729981, + 1.91464272826 + ], + "libelle_d_acheminement": "STE SEGREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91464272826, + 49.7602729981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8288565954698325fa2ca4f5664e9c036e10a57d", + "fields": { + "code_commune_insee": "57539", + "nom_de_la_commune": "PEVANGE", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9080570122, + 6.62186068756 + ], + "libelle_d_acheminement": "PEVANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62186068756, + 48.9080570122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9f53d3e3433665a83b58197569d14f4b95e65f9", + "fields": { + "code_commune_insee": "80721", + "nom_de_la_commune": "ST VALERY SUR SOMME", + "code_postal": "80230", + "coordonnees_gps": [ + 50.1761767829, + 1.62262280183 + ], + "libelle_d_acheminement": "ST VALERY SUR SOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62262280183, + 50.1761767829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0a79352c6f61cb9cac69dde92ebf72c563153c7", + "fields": { + "code_commune_insee": "57541", + "nom_de_la_commune": "PHILIPPSBOURG", + "code_postal": "57230", + "coordonnees_gps": [ + 49.0028642083, + 7.56619934882 + ], + "libelle_d_acheminement": "PHILIPPSBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56619934882, + 49.0028642083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00f05df54acce67832a7fd9ac1b2bef446f8b382", + "fields": { + "code_commune_insee": "80722", + "nom_de_la_commune": "ST VAAST EN CHAUSSEE", + "code_postal": "80310", + "coordonnees_gps": [ + 49.9709493809, + 2.20409804378 + ], + "libelle_d_acheminement": "ST VAAST EN CHAUSSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20409804378, + 49.9709493809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8939a611898a3650a691a0047336b16a5b22467", + "fields": { + "code_commune_insee": "57545", + "nom_de_la_commune": "PLAPPEVILLE", + "code_postal": "57050", + "coordonnees_gps": [ + 49.130840924, + 6.12422757212 + ], + "libelle_d_acheminement": "PLAPPEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12422757212, + 49.130840924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f603a793ec754bd4141ee125fadf2f8de925d5f", + "fields": { + "code_commune_insee": "80733", + "nom_de_la_commune": "SENLIS LE SEC", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0274617519, + 2.57771803132 + ], + "libelle_d_acheminement": "SENLIS LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57771803132, + 50.0274617519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebeb5175738d73b72c9e305d49adc552ba1295d3", + "fields": { + "code_commune_insee": "57555", + "nom_de_la_commune": "PREVOCOURT", + "code_postal": "57590", + "coordonnees_gps": [ + 48.926748986, + 6.4339887271 + ], + "libelle_d_acheminement": "PREVOCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4339887271, + 48.926748986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "604ab834af1548ec934be603edfdfe6435a4915c", + "fields": { + "code_commune_insee": "80736", + "nom_de_la_commune": "SOREL EN VIMEU", + "code_postal": "80490", + "coordonnees_gps": [ + 50.0125363922, + 1.91305863458 + ], + "libelle_d_acheminement": "SOREL EN VIMEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91305863458, + 50.0125363922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58c7414603adce505879859adb4ed2e91264ff9b", + "fields": { + "code_commune_insee": "57559", + "nom_de_la_commune": "PUZIEUX", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8902553561, + 6.36255550089 + ], + "libelle_d_acheminement": "PUZIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36255550089, + 48.8902553561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f7eb879bfe4bc145f83e7e217b9feb77111fe69", + "fields": { + "code_commune_insee": "80743", + "nom_de_la_commune": "SUZANNE", + "code_postal": "80340", + "coordonnees_gps": [ + 49.9592734284, + 2.76074272727 + ], + "libelle_d_acheminement": "SUZANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76074272727, + 49.9592734284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bd786809fca12b4ed673061270e3f9bc3ca3bf8", + "fields": { + "code_commune_insee": "57561", + "nom_de_la_commune": "RAHLING", + "code_postal": "57410", + "coordonnees_gps": [ + 48.9964768458, + 7.23869707911 + ], + "libelle_d_acheminement": "RAHLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23869707911, + 48.9964768458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7f27c33bb30e9e3549decfe8822424b9ce1c2ca", + "fields": { + "code_commune_insee": "80748", + "nom_de_la_commune": "TEMPLEUX LE GUERARD", + "code_postal": "80240", + "coordonnees_gps": [ + 49.9633304017, + 3.14471423364 + ], + "libelle_d_acheminement": "TEMPLEUX LE GUERARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14471423364, + 49.9633304017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32b5aed1b8ad189f28f5ceca03a908e3cc191376", + "fields": { + "code_commune_insee": "57570", + "nom_de_la_commune": "REMERING", + "code_postal": "57550", + "coordonnees_gps": [ + 49.2594876827, + 6.62884080525 + ], + "libelle_d_acheminement": "REMERING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62884080525, + 49.2594876827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ba8ee7c531c8969730303b32b9daa8e7f7dc292", + "fields": { + "code_commune_insee": "80755", + "nom_de_la_commune": "THIEULLOY LA VILLE", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7433577525, + 1.9296286879 + ], + "libelle_d_acheminement": "THIEULLOY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9296286879, + 49.7433577525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ec077d56678a0d8e9aa601e6db1042f3fb6397d", + "fields": { + "code_commune_insee": "57571", + "nom_de_la_commune": "REMERING LES PUTTELANGE", + "code_postal": "57510", + "coordonnees_gps": [ + 49.0326911576, + 6.93171898464 + ], + "libelle_d_acheminement": "REMERING LES PUTTELANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93171898464, + 49.0326911576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dece30227f3f333dfe6e84d80de83cf25c55f8c", + "fields": { + "code_commune_insee": "80759", + "nom_de_la_commune": "TILLOLOY", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6416492977, + 2.74418919931 + ], + "libelle_d_acheminement": "TILLOLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74418919931, + 49.6416492977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "877078ecd4b7f16a347747c511a18d97b53b3065", + "fields": { + "code_commune_insee": "57574", + "nom_de_la_commune": "BASSE RENTGEN", + "code_postal": "57570", + "coordonnees_gps": [ + 49.4899417302, + 6.2028697524 + ], + "libelle_d_acheminement": "BASSE RENTGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2028697524, + 49.4899417302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1562b049d3c8766225cafa4cbf0ed75848643287", + "fields": { + "code_commune_insee": "80767", + "nom_de_la_commune": "LE TRANSLAY", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9738240696, + 1.66432935832 + ], + "libelle_d_acheminement": "LE TRANSLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66432935832, + 49.9738240696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63e2918ca8bea27ac917b56bf05c1d75df7c8dbb", + "fields": { + "code_commune_insee": "57576", + "nom_de_la_commune": "RETTEL", + "code_postal": "57480", + "coordonnees_gps": [ + 49.4341736247, + 6.33743036901 + ], + "libelle_d_acheminement": "RETTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33743036901, + 49.4341736247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beb99b41a67babf86c56dbad1cd6fd47a225d553", + "fields": { + "code_commune_insee": "80775", + "nom_de_la_commune": "VALINES", + "code_postal": "80210", + "coordonnees_gps": [ + 50.0793776169, + 1.62717052139 + ], + "libelle_d_acheminement": "VALINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62717052139, + 50.0793776169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0199624ad3cdf34ac471846c7241b02a988741e5", + "fields": { + "code_commune_insee": "57577", + "nom_de_la_commune": "REYERSVILLER", + "code_postal": "57230", + "coordonnees_gps": [ + 49.0389385883, + 7.39557012544 + ], + "libelle_d_acheminement": "REYERSVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39557012544, + 49.0389385883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bc4bce3bd0f708a914a5227c1485dbe8a0e5cb9", + "fields": { + "code_commune_insee": "80777", + "nom_de_la_commune": "VAUCHELLES LES AUTHIE", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0942754973, + 2.46950083799 + ], + "libelle_d_acheminement": "VAUCHELLES LES AUTHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46950083799, + 50.0942754973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b6f695d6fafc5f3af677dbda67a820717b77f43", + "fields": { + "code_commune_insee": "57579", + "nom_de_la_commune": "RHODES", + "code_postal": "57810", + "coordonnees_gps": [ + 48.7558241125, + 6.90704140563 + ], + "libelle_d_acheminement": "RHODES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90704140563, + 48.7558241125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed75d9f0f8def21cbba5f4b395eb4634465f6ab3", + "fields": { + "code_commune_insee": "80782", + "nom_de_la_commune": "VAUX EN AMIENOIS", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9726260936, + 2.24284070578 + ], + "libelle_d_acheminement": "VAUX EN AMIENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24284070578, + 49.9726260936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0eb0940968576d1fc5925ac70ae520974080851", + "fields": { + "code_commune_insee": "57582", + "nom_de_la_commune": "RICHEMONT", + "code_postal": "57270", + "coordonnees_gps": [ + 49.2844440368, + 6.16265276093 + ], + "libelle_d_acheminement": "RICHEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16265276093, + 49.2844440368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05230c3ee65f40ac17a5902b1e970242dbd70764", + "fields": { + "code_commune_insee": "80784", + "nom_de_la_commune": "VAUX SUR SOMME", + "code_postal": "80800", + "coordonnees_gps": [ + 49.9273645021, + 2.55257487917 + ], + "libelle_d_acheminement": "VAUX SUR SOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55257487917, + 49.9273645021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "225739aa4fff287d92fb6e2cdea1895e9472a797", + "fields": { + "code_commune_insee": "57587", + "nom_de_la_commune": "RODALBE", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9109394561, + 6.71447347935 + ], + "libelle_d_acheminement": "RODALBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71447347935, + 48.9109394561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64f3f453d3680a835adf9c6be4d2fff9a3d41c48", + "fields": { + "code_commune_insee": "80789", + "nom_de_la_commune": "VERMANDOVILLERS", + "code_postal": "80320", + "coordonnees_gps": [ + 49.8450788348, + 2.78314998144 + ], + "libelle_d_acheminement": "VERMANDOVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78314998144, + 49.8450788348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70d7b7d921d91a73dba5981a04a1818b3e2ae1f4", + "fields": { + "code_commune_insee": "57595", + "nom_de_la_commune": "RORBACH LES DIEUZE", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8290007353, + 6.84003792776 + ], + "libelle_d_acheminement": "RORBACH LES DIEUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84003792776, + 48.8290007353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4a60d3a4d63d55b9a039b718902892bb84fa9d2", + "fields": { + "code_commune_insee": "80798", + "nom_de_la_commune": "VILLERS BOCAGE", + "code_postal": "80260", + "coordonnees_gps": [ + 50.0046385115, + 2.32263311872 + ], + "libelle_d_acheminement": "VILLERS BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32263311872, + 50.0046385115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df20a43cd1a4b2cce327d55f731416d5bbbf7768", + "fields": { + "code_commune_insee": "57603", + "nom_de_la_commune": "RUSSANGE", + "code_postal": "57390", + "coordonnees_gps": [ + 49.4870922211, + 5.94585152871 + ], + "libelle_d_acheminement": "RUSSANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94585152871, + 49.4870922211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dad5d69ec96d0d7256db1a751583c72e4c6f6564", + "fields": { + "code_commune_insee": "80824", + "nom_de_la_commune": "WIENCOURT L EQUIPEE", + "code_postal": "80170", + "coordonnees_gps": [ + 49.840059378, + 2.60476090583 + ], + "libelle_d_acheminement": "WIENCOURT L EQUIPEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60476090583, + 49.840059378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ade7040141414bccbf8e7fa195ad2beb1fa61567", + "fields": { + "code_commune_insee": "57605", + "nom_de_la_commune": "SAILLY ACHATEL", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9419543892, + 6.30208152793 + ], + "libelle_d_acheminement": "SAILLY ACHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30208152793, + 48.9419543892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecafe49ea6779a97cfdf0e384265d2f97767082f", + "fields": { + "code_commune_insee": "80828", + "nom_de_la_commune": "WOIREL", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9589067876, + 1.81988569934 + ], + "libelle_d_acheminement": "WOIREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81988569934, + 49.9589067876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "792854f01010012cbaa55851abc9952a26add66c", + "fields": { + "code_commune_insee": "57606", + "nom_de_la_commune": "ST AVOLD", + "code_postal": "57500", + "coordonnees_gps": [ + 49.12845245, + 6.71233591282 + ], + "libelle_d_acheminement": "ST AVOLD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71233591282, + 49.12845245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a0d8aa864712d80dbe338fa1d269e349991785b", + "fields": { + "code_commune_insee": "80830", + "nom_de_la_commune": "YAUCOURT BUSSUS", + "code_postal": "80135", + "coordonnees_gps": [ + 50.106026331, + 1.97674033898 + ], + "libelle_d_acheminement": "YAUCOURT BUSSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97674033898, + 50.106026331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23b381803392ce861ec604ff254830fca641bb87", + "fields": { + "code_commune_insee": "57611", + "nom_de_la_commune": "ST GEORGES", + "code_postal": "57830", + "coordonnees_gps": [ + 48.6575343955, + 6.92704793516 + ], + "libelle_d_acheminement": "ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92704793516, + 48.6575343955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8c849e1950194b49ecd4eb2b0430956f46024dc", + "fields": { + "code_commune_insee": "80833", + "nom_de_la_commune": "YVRENCHEUX", + "code_postal": "80150", + "coordonnees_gps": [ + 50.177369499, + 1.98620389971 + ], + "libelle_d_acheminement": "YVRENCHEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98620389971, + 50.177369499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "991a93b977363fde274fe5ffca0c2b3bb76c7e16", + "fields": { + "code_commune_insee": "57617", + "nom_de_la_commune": "ST JURE", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9431905301, + 6.23274904029 + ], + "libelle_d_acheminement": "ST JURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23274904029, + 48.9431905301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c46219b3953488a802f09402d692b7151dc1b89d", + "fields": { + "code_commune_insee": "81005", + "nom_de_la_commune": "ALBINE", + "code_postal": "81240", + "coordonnees_gps": [ + 43.4439474577, + 2.52811969517 + ], + "libelle_d_acheminement": "ALBINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52811969517, + 43.4439474577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86aba38c7b90d34323c840e8080069d043025b19", + "fields": { + "code_commune_insee": "57618", + "nom_de_la_commune": "ST LOUIS", + "code_postal": "57820", + "coordonnees_gps": [ + 48.710897697, + 7.1949734352 + ], + "libelle_d_acheminement": "ST LOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1949734352, + 48.710897697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cba6cfebfe7bb98c44a1fe4ca2ecc061de567cfe", + "fields": { + "code_commune_insee": "81008", + "nom_de_la_commune": "ALMAYRAC", + "code_postal": "81190", + "coordonnees_gps": [ + 44.0989296815, + 2.155985909 + ], + "libelle_d_acheminement": "ALMAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.155985909, + 44.0989296815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d8ef347f72538173cdab5d47758778b9fa9468f", + "fields": { + "code_commune_insee": "57621", + "nom_de_la_commune": "ST MEDARD", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8140487517, + 6.63779394361 + ], + "libelle_d_acheminement": "ST MEDARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63779394361, + 48.8140487517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3807b5b6f0cf89bf73c6b07d385b37de058b196c", + "fields": { + "code_commune_insee": "81012", + "nom_de_la_commune": "ANDILLAC", + "code_postal": "81140", + "coordonnees_gps": [ + 44.0051181728, + 1.89353888985 + ], + "libelle_d_acheminement": "ANDILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89353888985, + 44.0051181728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "210e5a2f356f97c00189df74926cc356d34b02fa", + "fields": { + "code_commune_insee": "57626", + "nom_de_la_commune": "SANRY LES VIGY", + "code_postal": "57640", + "coordonnees_gps": [ + 49.185187158, + 6.27924889026 + ], + "libelle_d_acheminement": "SANRY LES VIGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27924889026, + 49.185187158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71851f5d04675fd97224df3d2a0373e937a03194", + "fields": { + "code_commune_insee": "81019", + "nom_de_la_commune": "ASSAC", + "code_postal": "81340", + "coordonnees_gps": [ + 43.9784300195, + 2.43430907568 + ], + "libelle_d_acheminement": "ASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43430907568, + 43.9784300195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad9a26ab04195111912441332a2788215d8a21ab", + "fields": { + "code_commune_insee": "57630", + "nom_de_la_commune": "SARREBOURG", + "code_postal": "57400", + "coordonnees_gps": [ + 48.7379661581, + 7.04683266422 + ], + "libelle_d_acheminement": "SARREBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04683266422, + 48.7379661581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aad62b7d2129cae38f938ef6cfa5d462b2f9a252", + "fields": { + "ligne_5": "BELLEGARDE", + "code_commune_insee": "81026", + "libelle_d_acheminement": "BELLEGARDE MARSAL", + "code_postal": "81430", + "nom_de_la_commune": "BELLEGARDE MARSAL", + "coordonnees_gps": [ + 43.9045721736, + 2.27727320222 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27727320222, + 43.9045721736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31ab5787a81ffa123ebccd719a443e0df59585bd", + "fields": { + "code_commune_insee": "81033", + "nom_de_la_commune": "BLAYE LES MINES", + "code_postal": "81400", + "coordonnees_gps": [ + 44.033065795, + 2.14278920127 + ], + "libelle_d_acheminement": "BLAYE LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14278920127, + 44.033065795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63fa14107156cabea1575efdf352d04997b45c60", + "fields": { + "code_commune_insee": "81041", + "nom_de_la_commune": "BROZE", + "code_postal": "81600", + "coordonnees_gps": [ + 43.9545871483, + 1.89131601329 + ], + "libelle_d_acheminement": "BROZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89131601329, + 43.9545871483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b873760dfa2341af9590f84874f07b5ead0e8768", + "fields": { + "code_commune_insee": "81042", + "nom_de_la_commune": "BURLATS", + "code_postal": "81100", + "coordonnees_gps": [ + 43.634494226, + 2.32985791816 + ], + "libelle_d_acheminement": "BURLATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32985791816, + 43.634494226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ec9599937ffa297b456140156882b82d11e5a8c", + "fields": { + "code_commune_insee": "81044", + "nom_de_la_commune": "CABANES", + "code_postal": "81500", + "coordonnees_gps": [ + 43.7158848933, + 1.94997109086 + ], + "libelle_d_acheminement": "CABANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94997109086, + 43.7158848933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fc237b1335d597589871b86263f6fab8280fc24", + "fields": { + "code_commune_insee": "81048", + "nom_de_la_commune": "CAGNAC LES MINES", + "code_postal": "81130", + "coordonnees_gps": [ + 43.9810206314, + 2.11921214 + ], + "libelle_d_acheminement": "CAGNAC LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11921214, + 43.9810206314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c720ad6d262a465369b69b02c0b003658a062f7c", + "fields": { + "code_commune_insee": "81049", + "nom_de_la_commune": "CAHUZAC", + "code_postal": "81540", + "coordonnees_gps": [ + 43.4764567582, + 2.08126437181 + ], + "libelle_d_acheminement": "CAHUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08126437181, + 43.4764567582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "680e23663274aee32bd6cd8bc58fd03619f620f6", + "fields": { + "code_commune_insee": "81050", + "nom_de_la_commune": "CAMBON LES LAVAUR", + "code_postal": "81470", + "coordonnees_gps": [ + 43.5919658336, + 1.84810953199 + ], + "libelle_d_acheminement": "CAMBON LES LAVAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84810953199, + 43.5919658336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5aa3b5fcbe5a0e153394d83258af6d43bac5d50", + "fields": { + "code_commune_insee": "81052", + "nom_de_la_commune": "CAMBON", + "code_postal": "81990", + "coordonnees_gps": [ + 43.9118287405, + 2.2237324057 + ], + "libelle_d_acheminement": "CAMBON D ALBI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2237324057, + 43.9118287405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "566eba6420bbbc410c9b4bb4c1c34971532ab417", + "fields": { + "code_commune_insee": "81056", + "nom_de_la_commune": "CAMPAGNAC", + "code_postal": "81140", + "coordonnees_gps": [ + 44.0329274572, + 1.83921027036 + ], + "libelle_d_acheminement": "CAMPAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83921027036, + 44.0329274572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5956c44b06b6239ecd7855c46900a04a4d944f65", + "fields": { + "ligne_5": "FERRIERES", + "code_commune_insee": "81062", + "libelle_d_acheminement": "FONTRIEU", + "code_postal": "81260", + "nom_de_la_commune": "FONTRIEU", + "coordonnees_gps": [ + 43.6578748652, + 2.52758390349 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52758390349, + 43.6578748652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eee715e7624e8307fbdb3b26822f2bf1588fd52d", + "fields": { + "code_commune_insee": "81068", + "nom_de_la_commune": "COMBEFA", + "code_postal": "81640", + "coordonnees_gps": [ + 44.0498006457, + 2.09498362646 + ], + "libelle_d_acheminement": "COMBEFA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09498362646, + 44.0498006457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a241f04736d7df58959c5131b5db21f9f443c873", + "fields": { + "code_commune_insee": "81070", + "nom_de_la_commune": "COUFOULEUX", + "code_postal": "81800", + "coordonnees_gps": [ + 43.7978489409, + 1.73158426557 + ], + "libelle_d_acheminement": "COUFOULEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73158426557, + 43.7978489409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "488f737fbc4d8246a801c67e5e5ef7fac9dd0563", + "fields": { + "code_commune_insee": "81072", + "nom_de_la_commune": "CRESPIN", + "code_postal": "81350", + "coordonnees_gps": [ + 44.0469014925, + 2.30614613299 + ], + "libelle_d_acheminement": "CRESPIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30614613299, + 44.0469014925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "765676dcac1ef38c9b368b1054e6f1e2aa8b1c37", + "fields": { + "code_commune_insee": "81073", + "nom_de_la_commune": "CRESPINET", + "code_postal": "81350", + "coordonnees_gps": [ + 43.9551249562, + 2.29516613633 + ], + "libelle_d_acheminement": "CRESPINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29516613633, + 43.9551249562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4452b1af4e1a9bdff5a497a7c0d45c21eed6a8cc", + "fields": { + "code_commune_insee": "81077", + "nom_de_la_commune": "CURVALLE", + "code_postal": "81250", + "coordonnees_gps": [ + 43.911329791, + 2.50746154724 + ], + "libelle_d_acheminement": "CURVALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50746154724, + 43.911329791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f260a81b81e48e4e1e78f6104e33ec62a3c48434", + "fields": { + "code_commune_insee": "81081", + "nom_de_la_commune": "DOURGNE", + "code_postal": "81110", + "coordonnees_gps": [ + 43.4753070746, + 2.14244605538 + ], + "libelle_d_acheminement": "DOURGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14244605538, + 43.4753070746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ef63e719cd40896211812812b6f3bf797a15ffa", + "fields": { + "code_commune_insee": "81082", + "nom_de_la_commune": "LE DOURN", + "code_postal": "81340", + "coordonnees_gps": [ + 44.0155897925, + 2.47073380785 + ], + "libelle_d_acheminement": "LE DOURN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47073380785, + 44.0155897925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c19046b31fe3d2baa4ad3d1165c006a574d5ec9", + "fields": { + "code_commune_insee": "81085", + "nom_de_la_commune": "ESCROUX", + "code_postal": "81530", + "coordonnees_gps": [ + 43.7575872342, + 2.64191518496 + ], + "libelle_d_acheminement": "ESCROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64191518496, + 43.7575872342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f32ff2eafb918bb939fa0ca287999737617e8dcf", + "fields": { + "code_commune_insee": "81089", + "nom_de_la_commune": "FAUSSERGUES", + "code_postal": "81340", + "coordonnees_gps": [ + 44.0406000553, + 2.43023975408 + ], + "libelle_d_acheminement": "FAUSSERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43023975408, + 44.0406000553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "549fee0d29e950040852f5866bd70c710c7872cd", + "fields": { + "code_commune_insee": "81094", + "nom_de_la_commune": "FRAISSINES", + "code_postal": "81340", + "coordonnees_gps": [ + 43.9732107109, + 2.50810158198 + ], + "libelle_d_acheminement": "FRAISSINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50810158198, + 43.9732107109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e46623e8787d4c493fa3a5b3d4c3cee04b7e757", + "fields": { + "code_commune_insee": "81105", + "nom_de_la_commune": "GRAULHET", + "code_postal": "81300", + "coordonnees_gps": [ + 43.7576562195, + 2.00122512851 + ], + "libelle_d_acheminement": "GRAULHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00122512851, + 43.7576562195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9d53be86d53f4156c0521185eeeede8c09d5e50", + "fields": { + "code_commune_insee": "81111", + "nom_de_la_commune": "LABARTHE BLEYS", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0838134122, + 1.89558851535 + ], + "libelle_d_acheminement": "LABARTHE BLEYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89558851535, + 44.0838134122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b218ec1b26883114c1beb8c2d904d889f405799", + "fields": { + "code_commune_insee": "81115", + "nom_de_la_commune": "LABASTIDE ROUAIROUX", + "code_postal": "81270", + "coordonnees_gps": [ + 43.4826602247, + 2.63557921234 + ], + "libelle_d_acheminement": "LABASTIDE ROUAIROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63557921234, + 43.4826602247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52ded891a9ccc096565a4427337c2dd1789b4b83", + "fields": { + "code_commune_insee": "81118", + "nom_de_la_commune": "LABOULBENE", + "code_postal": "81100", + "coordonnees_gps": [ + 43.6660569606, + 2.20401840916 + ], + "libelle_d_acheminement": "LABOULBENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20401840916, + 43.6660569606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b75ffddad06f695840cedaf595a4a0b75135e65a", + "fields": { + "code_commune_insee": "81119", + "nom_de_la_commune": "LABOUTARIE", + "code_postal": "81120", + "coordonnees_gps": [ + 43.7886845517, + 2.11353900719 + ], + "libelle_d_acheminement": "LABOUTARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11353900719, + 43.7886845517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e57323fe1ccf7133670431d4d67378968b9b7ba6", + "fields": { + "code_commune_insee": "81121", + "nom_de_la_commune": "LACABAREDE", + "code_postal": "81240", + "coordonnees_gps": [ + 43.4490307181, + 2.593058648 + ], + "libelle_d_acheminement": "LACABAREDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.593058648, + 43.4490307181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb05322c5df8aa85a34ce5f86b7ffcbd9f7064ad", + "fields": { + "code_commune_insee": "81129", + "nom_de_la_commune": "LAGARDIOLLE", + "code_postal": "81110", + "coordonnees_gps": [ + 43.4996169804, + 2.0926664241 + ], + "libelle_d_acheminement": "LAGARDIOLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0926664241, + 43.4996169804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1915a518eeea77d3f9e60d02a77491f81ca4ad7b", + "fields": { + "code_commune_insee": "81130", + "nom_de_la_commune": "LAGARRIGUE", + "code_postal": "81090", + "coordonnees_gps": [ + 43.5759645911, + 2.28583565829 + ], + "libelle_d_acheminement": "LAGARRIGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28583565829, + 43.5759645911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89de9ebdc3a9ecb553a6599274214e12d0b79927", + "fields": { + "code_commune_insee": "81134", + "nom_de_la_commune": "LAMONTELARIE", + "code_postal": "81260", + "coordonnees_gps": [ + 43.6201473366, + 2.6080895123 + ], + "libelle_d_acheminement": "LAMONTELARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6080895123, + 43.6201473366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ece11d491bb42e3cc12341c8b5e25ff4f3b58fff", + "fields": { + "code_commune_insee": "81136", + "nom_de_la_commune": "LARROQUE", + "code_postal": "81140", + "coordonnees_gps": [ + 44.0083844325, + 1.68734477168 + ], + "libelle_d_acheminement": "LARROQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68734477168, + 44.0083844325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae73d6cb491f11dd8674da6b47ecdfe773db49e0", + "fields": { + "code_commune_insee": "81138", + "nom_de_la_commune": "LASGRAISSES", + "code_postal": "81300", + "coordonnees_gps": [ + 43.8230864344, + 2.03526038178 + ], + "libelle_d_acheminement": "LASGRAISSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03526038178, + 43.8230864344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8906fbfbb104b44013ca81107b6377aba341259", + "fields": { + "code_commune_insee": "81144", + "nom_de_la_commune": "LESCURE D ALBIGEOIS", + "code_postal": "81380", + "coordonnees_gps": [ + 43.9656164383, + 2.18230929953 + ], + "libelle_d_acheminement": "LESCURE D ALBIGEOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18230929953, + 43.9656164383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf794aceee36ae91a511ff79063441e294291550", + "fields": { + "code_commune_insee": "81149", + "nom_de_la_commune": "LOUPIAC", + "code_postal": "81800", + "coordonnees_gps": [ + 43.8241806897, + 1.78265206515 + ], + "libelle_d_acheminement": "LOUPIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78265206515, + 43.8241806897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0002c4411b7caf9809242e0caa98d0c2062cd6d", + "fields": { + "code_commune_insee": "81157", + "nom_de_la_commune": "MARZENS", + "code_postal": "81500", + "coordonnees_gps": [ + 43.6542488768, + 1.84294854921 + ], + "libelle_d_acheminement": "MARZENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84294854921, + 43.6542488768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e627aea7e90b3008d2fa4c69b31a835e3f41e5d", + "fields": { + "code_commune_insee": "81164", + "nom_de_la_commune": "MEZENS", + "code_postal": "81800", + "coordonnees_gps": [ + 43.7911506401, + 1.65853736504 + ], + "libelle_d_acheminement": "MEZENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65853736504, + 43.7911506401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8299d0de9357902f0bf13ea6416d469d3598aebd", + "fields": { + "code_commune_insee": "81166", + "nom_de_la_commune": "MILHAVET", + "code_postal": "81130", + "coordonnees_gps": [ + 44.0326429455, + 2.02741008603 + ], + "libelle_d_acheminement": "MILHAVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02741008603, + 44.0326429455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba5317eef427891a8c86fcf1f4f99f3d22aad134", + "fields": { + "code_commune_insee": "81167", + "nom_de_la_commune": "MIOLLES", + "code_postal": "81250", + "coordonnees_gps": [ + 43.8782226811, + 2.55075875276 + ], + "libelle_d_acheminement": "MIOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55075875276, + 43.8782226811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b7d925ab9b3539dcae85a5f4165212d555b0b4a", + "fields": { + "code_commune_insee": "81172", + "nom_de_la_commune": "MONTAURIOL", + "code_postal": "81190", + "coordonnees_gps": [ + 44.0815510672, + 2.32726239581 + ], + "libelle_d_acheminement": "MONTAURIOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32726239581, + 44.0815510672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6258501b53c75f4326f31156246bcf85dba9970", + "fields": { + "code_commune_insee": "81173", + "nom_de_la_commune": "MONTCABRIER", + "code_postal": "81500", + "coordonnees_gps": [ + 43.6216995124, + 1.73631591494 + ], + "libelle_d_acheminement": "MONTCABRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73631591494, + 43.6216995124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af75b9aecd840559bd88b3ea7acaa062aefc7d48", + "fields": { + "code_commune_insee": "81175", + "nom_de_la_commune": "MONTDURAUSSE", + "code_postal": "81630", + "coordonnees_gps": [ + 43.9525325063, + 1.59348701072 + ], + "libelle_d_acheminement": "MONTDURAUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59348701072, + 43.9525325063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed052f77604c2cd9168a9d01bc2a488494e09779", + "fields": { + "code_commune_insee": "81181", + "nom_de_la_commune": "MONTPINIER", + "code_postal": "81440", + "coordonnees_gps": [ + 43.6789611247, + 2.18996517245 + ], + "libelle_d_acheminement": "MONTPINIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18996517245, + 43.6789611247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "947d0ffb7806d26c9095448021164f2b32d63d77", + "fields": { + "code_commune_insee": "81184", + "nom_de_la_commune": "MONTROSIER", + "code_postal": "81170", + "coordonnees_gps": [ + 44.1302381155, + 1.84091338428 + ], + "libelle_d_acheminement": "MONTROSIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84091338428, + 44.1302381155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d790d78f41e3165c24ef35594a7a34321445d8a", + "fields": { + "code_commune_insee": "81188", + "nom_de_la_commune": "MOULIN MAGE", + "code_postal": "81320", + "coordonnees_gps": [ + 43.7198358431, + 2.77600372304 + ], + "libelle_d_acheminement": "MOULIN MAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77600372304, + 43.7198358431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "622320e96658b8c40f8761331e44861f79012f1a", + "fields": { + "code_commune_insee": "81199", + "nom_de_la_commune": "PADIES", + "code_postal": "81340", + "coordonnees_gps": [ + 44.0448721385, + 2.36414366845 + ], + "libelle_d_acheminement": "PADIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36414366845, + 44.0448721385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb3c711b657f5b15c6971c13b4bc8a0024bad196", + "fields": { + "code_commune_insee": "81202", + "nom_de_la_commune": "PARISOT", + "code_postal": "81310", + "coordonnees_gps": [ + 43.8046304256, + 1.83642655485 + ], + "libelle_d_acheminement": "PARISOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83642655485, + 43.8046304256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3ee6e950960ccf7288b79004ffc07e779a7c3c6", + "fields": { + "code_commune_insee": "81204", + "nom_de_la_commune": "PAYRIN AUGMONTEL", + "code_postal": "81660", + "coordonnees_gps": [ + 43.538512955, + 2.34476965371 + ], + "libelle_d_acheminement": "PAYRIN AUGMONTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34476965371, + 43.538512955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "886f0d9006a72eed923f997436d340b85d3998d6", + "fields": { + "code_commune_insee": "81206", + "nom_de_la_commune": "PENNE", + "code_postal": "81140", + "coordonnees_gps": [ + 44.083378684, + 1.72222569874 + ], + "libelle_d_acheminement": "PENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72222569874, + 44.083378684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49f3c8d86becdec286df871820c00fe234525ccc", + "fields": { + "code_commune_insee": "81207", + "nom_de_la_commune": "PEYREGOUX", + "code_postal": "81440", + "coordonnees_gps": [ + 43.7005423286, + 2.19477882918 + ], + "libelle_d_acheminement": "PEYREGOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19477882918, + 43.7005423286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce5db77f75c5b1bf25744f237d53696090382254", + "fields": { + "code_commune_insee": "81209", + "nom_de_la_commune": "PONT DE LARN", + "code_postal": "81660", + "coordonnees_gps": [ + 43.5308469607, + 2.40980470346 + ], + "libelle_d_acheminement": "PONT DE LARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40980470346, + 43.5308469607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c68ed6b6f03181245a847ba8b80c9fd20b8002c4", + "fields": { + "code_commune_insee": "81213", + "nom_de_la_commune": "PRATVIEL", + "code_postal": "81500", + "coordonnees_gps": [ + 43.638704181, + 1.88490760875 + ], + "libelle_d_acheminement": "PRATVIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88490760875, + 43.638704181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dfd2625eb8fd19746cbef5a5d8bde5e1531d0cb", + "fields": { + "code_commune_insee": "81216", + "nom_de_la_commune": "PUYCALVEL", + "code_postal": "81440", + "coordonnees_gps": [ + 43.6838355288, + 2.07099624199 + ], + "libelle_d_acheminement": "PUYCALVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07099624199, + 43.6838355288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f89ad9c287fbbe30c50e3047214f2eef44048ab", + "fields": { + "code_commune_insee": "81217", + "nom_de_la_commune": "PUYCELSI", + "code_postal": "81140", + "coordonnees_gps": [ + 43.9765161784, + 1.70709054548 + ], + "libelle_d_acheminement": "PUYCELSI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70709054548, + 43.9765161784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51f12fb7b9106f03d06c46a3ad607a88baf7ff6f", + "fields": { + "code_commune_insee": "81219", + "nom_de_la_commune": "PUYLAURENS", + "code_postal": "81700", + "coordonnees_gps": [ + 43.5824524921, + 2.01685800368 + ], + "libelle_d_acheminement": "PUYLAURENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01685800368, + 43.5824524921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa8bad0abed96a95e0217a809b8d0941a7e775fe", + "fields": { + "code_commune_insee": "81220", + "nom_de_la_commune": "RABASTENS", + "code_postal": "81800", + "coordonnees_gps": [ + 43.8484040939, + 1.71495143196 + ], + "libelle_d_acheminement": "RABASTENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71495143196, + 43.8484040939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8b950919f22ae538416525b059c46df3991b1df", + "fields": { + "code_commune_insee": "81222", + "nom_de_la_commune": "REALMONT", + "code_postal": "81120", + "coordonnees_gps": [ + 43.7799765873, + 2.19017910647 + ], + "libelle_d_acheminement": "REALMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19017910647, + 43.7799765873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd17b9af9a85423ccf9256afcee35ec2c593471f", + "fields": { + "code_commune_insee": "81223", + "nom_de_la_commune": "LE RIALET", + "code_postal": "81240", + "coordonnees_gps": [ + 43.5590728174, + 2.47081958622 + ], + "libelle_d_acheminement": "LE RIALET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47081958622, + 43.5590728174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5509271c705f4c191c095ab285c5113cdd351ed", + "fields": { + "code_commune_insee": "81228", + "nom_de_la_commune": "ROQUEMAURE", + "code_postal": "81800", + "coordonnees_gps": [ + 43.8230103992, + 1.61753468648 + ], + "libelle_d_acheminement": "ROQUEMAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61753468648, + 43.8230103992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61e758d084ac67328ff8ddb7553a27c4bef821bf", + "fields": { + "code_commune_insee": "81232", + "nom_de_la_commune": "ROUFFIAC", + "code_postal": "81150", + "coordonnees_gps": [ + 43.8826639291, + 2.07172030466 + ], + "libelle_d_acheminement": "ROUFFIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07172030466, + 43.8826639291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffb9af181fca1004e3b4a36744280988ede4816c", + "fields": { + "ligne_5": "RONEL", + "code_commune_insee": "81233", + "libelle_d_acheminement": "TERRE DE BANCALIE", + "code_postal": "81120", + "nom_de_la_commune": "TERRE DE BANCALIE", + "coordonnees_gps": [ + 43.8091924031, + 2.26353154386 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26353154386, + 43.8091924031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd9a23965aa21a1d92f9ce02b1a97e80637a3184", + "fields": { + "ligne_5": "TERRE CLAPIER", + "code_commune_insee": "81233", + "libelle_d_acheminement": "TERRE DE BANCALIE", + "code_postal": "81120", + "nom_de_la_commune": "TERRE DE BANCALIE", + "coordonnees_gps": [ + 43.8091924031, + 2.26353154386 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26353154386, + 43.8091924031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c85f79a73d8b1d55e712c6a0701555479ef61df0", + "fields": { + "code_commune_insee": "81235", + "nom_de_la_commune": "ST AFFRIQUE LES MONTAGNES", + "code_postal": "81290", + "coordonnees_gps": [ + 43.5281225419, + 2.20135060333 + ], + "libelle_d_acheminement": "ST AFFRIQUE LES MONTAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20135060333, + 43.5281225419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6232ce1cf0d27db9d62d6905615530595ed5fb17", + "fields": { + "ligne_5": "CAMPES", + "code_commune_insee": "81262", + "libelle_d_acheminement": "ST MARCEL CAMPES", + "code_postal": "81170", + "nom_de_la_commune": "ST MARCEL CAMPES", + "coordonnees_gps": [ + 44.083875553, + 2.00175106626 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00175106626, + 44.083875553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11c7230143b2dee77946fd42289327641f836cdd", + "fields": { + "code_commune_insee": "81263", + "nom_de_la_commune": "ST MARTIN LAGUEPIE", + "code_postal": "81170", + "coordonnees_gps": [ + 44.1349838436, + 1.96022083037 + ], + "libelle_d_acheminement": "ST MARTIN LAGUEPIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96022083037, + 44.1349838436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ee006ec41ef9380ac13594cec196cef064490c5", + "fields": { + "code_commune_insee": "81266", + "nom_de_la_commune": "ST PAUL CAP DE JOUX", + "code_postal": "81220", + "coordonnees_gps": [ + 43.635057866, + 1.98923840323 + ], + "libelle_d_acheminement": "ST PAUL CAP DE JOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98923840323, + 43.635057866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec84c95078510076165bd759302442e685150b35", + "fields": { + "code_commune_insee": "81270", + "nom_de_la_commune": "ST SERNIN LES LAVAUR", + "code_postal": "81700", + "coordonnees_gps": [ + 43.543395503, + 1.97224589323 + ], + "libelle_d_acheminement": "ST SERNIN LES LAVAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97224589323, + 43.543395503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aa6ed8193ef7b3448b44482e1b17b8ed65069f6", + "fields": { + "code_commune_insee": "81274", + "nom_de_la_commune": "SALIES", + "code_postal": "81990", + "coordonnees_gps": [ + 43.8859141044, + 2.13293354556 + ], + "libelle_d_acheminement": "SALIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13293354556, + 43.8859141044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec6afa2a7b2f72ea8238aec534eee84ffdc06f22", + "fields": { + "code_commune_insee": "81276", + "nom_de_la_commune": "SALVAGNAC", + "code_postal": "81630", + "coordonnees_gps": [ + 43.9201151478, + 1.67981306162 + ], + "libelle_d_acheminement": "SALVAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67981306162, + 43.9201151478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6842e69d14097cb744b271b6be2f826d684de7f", + "fields": { + "code_commune_insee": "81281", + "nom_de_la_commune": "SEMALENS", + "code_postal": "81570", + "coordonnees_gps": [ + 43.598998518, + 2.10929167449 + ], + "libelle_d_acheminement": "SEMALENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10929167449, + 43.598998518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbcc36ccf0807b9a750fbb4fa46625d0f6c87038", + "fields": { + "code_commune_insee": "81285", + "nom_de_la_commune": "SERENAC", + "code_postal": "81350", + "coordonnees_gps": [ + 43.9589302642, + 2.32732633415 + ], + "libelle_d_acheminement": "SERENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32732633415, + 43.9589302642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c33d5c8d2051d98c839c6b9d0dd3db8dd7b06844", + "fields": { + "code_commune_insee": "81286", + "nom_de_la_commune": "SERVIES", + "code_postal": "81220", + "coordonnees_gps": [ + 43.6653039824, + 2.03248661491 + ], + "libelle_d_acheminement": "SERVIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03248661491, + 43.6653039824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fe362a2e109a80a12e643cb8f861e4f9f383571", + "fields": { + "code_commune_insee": "81292", + "nom_de_la_commune": "TANUS", + "code_postal": "81190", + "coordonnees_gps": [ + 44.1080524235, + 2.30592694814 + ], + "libelle_d_acheminement": "TANUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30592694814, + 44.1080524235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae35d3df64d100f0597bae74a13ebab4df145bbe", + "fields": { + "code_commune_insee": "81299", + "nom_de_la_commune": "TEYSSODE", + "code_postal": "81220", + "coordonnees_gps": [ + 43.646080345, + 1.92563367726 + ], + "libelle_d_acheminement": "TEYSSODE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92563367726, + 43.646080345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf42f6eb73a655459fd4566decb040458211ee0c", + "fields": { + "code_commune_insee": "81300", + "nom_de_la_commune": "TONNAC", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0717430834, + 1.85301094203 + ], + "libelle_d_acheminement": "TONNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85301094203, + 44.0717430834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21897aa2895a1fa1c59e12db544a97348cd6234a", + "fields": { + "code_commune_insee": "81302", + "nom_de_la_commune": "TREBAN", + "code_postal": "81190", + "coordonnees_gps": [ + 44.0915936004, + 2.3448678628 + ], + "libelle_d_acheminement": "TREBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3448678628, + 44.0915936004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20032b2b1a0c90a088004ad7ba4ef1c7488da575", + "fields": { + "code_commune_insee": "81311", + "nom_de_la_commune": "VENES", + "code_postal": "81440", + "coordonnees_gps": [ + 43.7373706752, + 2.19476004846 + ], + "libelle_d_acheminement": "VENES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19476004846, + 43.7373706752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f0f73005b9a9e62ee87d1a8d8ad26a545c6d945", + "fields": { + "code_commune_insee": "81312", + "nom_de_la_commune": "VERDALLE", + "code_postal": "81110", + "coordonnees_gps": [ + 43.4967627255, + 2.17944315605 + ], + "libelle_d_acheminement": "VERDALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17944315605, + 43.4967627255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "148ca7ecee18f842b5c3638f2613df6c4213caff", + "fields": { + "code_commune_insee": "81321", + "nom_de_la_commune": "LE VINTROU", + "code_postal": "81240", + "coordonnees_gps": [ + 43.531445482, + 2.47366636477 + ], + "libelle_d_acheminement": "LE VINTROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47366636477, + 43.531445482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47e1c3edb1b3e7ad0d830a102aab7ed763a62907", + "fields": { + "code_commune_insee": "82004", + "nom_de_la_commune": "ASQUES", + "code_postal": "82120", + "coordonnees_gps": [ + 44.0092369862, + 0.955085490691 + ], + "libelle_d_acheminement": "ASQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.955085490691, + 44.0092369862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a32e32bd7ac2d812a21205497d2572f348b4797c", + "fields": { + "code_commune_insee": "82018", + "nom_de_la_commune": "BIOULE", + "code_postal": "82800", + "coordonnees_gps": [ + 44.0992261106, + 1.54336811906 + ], + "libelle_d_acheminement": "BIOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54336811906, + 44.0992261106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e97e7426d104899c4cfed9965b1ec65d0cc938c", + "fields": { + "code_commune_insee": "82021", + "nom_de_la_commune": "BOULOC EN QUERCY", + "code_postal": "82110", + "coordonnees_gps": [ + 44.3002675818, + 1.12464954976 + ], + "libelle_d_acheminement": "BOULOC EN QUERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12464954976, + 44.3002675818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d17c071829c3c3c508e22e8aca88a583a7cb9fbc", + "fields": { + "code_commune_insee": "82023", + "nom_de_la_commune": "BOURRET", + "code_postal": "82700", + "coordonnees_gps": [ + 43.9436352242, + 1.15609472542 + ], + "libelle_d_acheminement": "BOURRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15609472542, + 43.9436352242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04f3985e6b5d0ce1790c9fbf30218015f50b70c0", + "fields": { + "code_commune_insee": "82028", + "nom_de_la_commune": "CANALS", + "code_postal": "82170", + "coordonnees_gps": [ + 43.8610543748, + 1.29934658197 + ], + "libelle_d_acheminement": "CANALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29934658197, + 43.8610543748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a47d903be09e7a228249c95e66dde94871c25e7", + "fields": { + "code_commune_insee": "82029", + "nom_de_la_commune": "CASTANET", + "code_postal": "82160", + "coordonnees_gps": [ + 44.2603354224, + 1.92951732347 + ], + "libelle_d_acheminement": "CASTANET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92951732347, + 44.2603354224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75dccdebacdaea319ccedac31c28178c2da892bf", + "fields": { + "code_commune_insee": "82031", + "nom_de_la_commune": "CASTELMAYRAN", + "code_postal": "82210", + "coordonnees_gps": [ + 44.0227123316, + 1.04707174068 + ], + "libelle_d_acheminement": "CASTELMAYRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04707174068, + 44.0227123316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c82dde9bb4b946a64c8e49009585a67bb28e7ad5", + "fields": { + "code_commune_insee": "82032", + "nom_de_la_commune": "CASTELSAGRAT", + "code_postal": "82400", + "coordonnees_gps": [ + 44.1767582704, + 0.960294296377 + ], + "libelle_d_acheminement": "CASTELSAGRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.960294296377, + 44.1767582704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4fd920253748b1b02a06b0f0dc54071b87bf043", + "fields": { + "code_commune_insee": "82040", + "nom_de_la_commune": "CAYRIECH", + "code_postal": "82240", + "coordonnees_gps": [ + 44.2153908954, + 1.60546514624 + ], + "libelle_d_acheminement": "CAYRIECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60546514624, + 44.2153908954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4498fc5be0b35c9157a8c9e39f775238990361a5", + "fields": { + "code_commune_insee": "82047", + "nom_de_la_commune": "CUMONT", + "code_postal": "82500", + "coordonnees_gps": [ + 43.8703403158, + 0.903369775759 + ], + "libelle_d_acheminement": "CUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.903369775759, + 43.8703403158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f73ebc683bf716bf3232a619fb202e446a1fca51", + "fields": { + "code_commune_insee": "82052", + "nom_de_la_commune": "ESCATALENS", + "code_postal": "82700", + "coordonnees_gps": [ + 43.9817694616, + 1.19368002494 + ], + "libelle_d_acheminement": "ESCATALENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19368002494, + 43.9817694616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6eed406f63b360a3106412d76c36f66d55d946e", + "fields": { + "code_commune_insee": "82061", + "nom_de_la_commune": "FENEYROLS", + "code_postal": "82140", + "coordonnees_gps": [ + 44.1415263063, + 1.82521779243 + ], + "libelle_d_acheminement": "FENEYROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82521779243, + 44.1415263063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "918b37a8ad27f75a2a9a75251018930121433e4a", + "fields": { + "code_commune_insee": "82065", + "nom_de_la_commune": "GASQUES", + "code_postal": "82400", + "coordonnees_gps": [ + 44.1489786487, + 0.910582677512 + ], + "libelle_d_acheminement": "GASQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.910582677512, + 44.1489786487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb8ba981fb6d3be3d4631ece4bdd159b345bc5fa", + "fields": { + "code_commune_insee": "57641", + "nom_de_la_commune": "SCHWEYEN", + "code_postal": "57720", + "coordonnees_gps": [ + 49.1601477497, + 7.39627940351 + ], + "libelle_d_acheminement": "SCHWEYEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39627940351, + 49.1601477497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6197362e07ae81a7c39d446299aae8503713bae4", + "fields": { + "code_commune_insee": "82068", + "nom_de_la_commune": "GIMAT", + "code_postal": "82500", + "coordonnees_gps": [ + 43.8656341647, + 0.940199875887 + ], + "libelle_d_acheminement": "GIMAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.940199875887, + 43.8656341647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d64660adb67194b1d604d11ea3a5084d78549e82", + "fields": { + "code_commune_insee": "57648", + "nom_de_la_commune": "SERVIGNY LES RAVILLE", + "code_postal": "57530", + "coordonnees_gps": [ + 49.0792585927, + 6.43935938 + ], + "libelle_d_acheminement": "SERVIGNY LES RAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43935938, + 49.0792585927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d1ec43a780e520d28befd565d528c8908372f56", + "fields": { + "code_commune_insee": "82075", + "nom_de_la_commune": "GRISOLLES", + "code_postal": "82170", + "coordonnees_gps": [ + 43.8224483737, + 1.28670830479 + ], + "libelle_d_acheminement": "GRISOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28670830479, + 43.8224483737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45acc43a94cd4be5d86cff4a313f7d01d3ee6a11", + "fields": { + "code_commune_insee": "57656", + "nom_de_la_commune": "SORBEY", + "code_postal": "57580", + "coordonnees_gps": [ + 49.0397485789, + 6.31695459653 + ], + "libelle_d_acheminement": "SORBEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31695459653, + 49.0397485789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abd24b545ed6bbee56c566d140ecbf0b3ef1677c", + "fields": { + "code_commune_insee": "82076", + "nom_de_la_commune": "L HONOR DE COS", + "code_postal": "82130", + "coordonnees_gps": [ + 44.1168766255, + 1.3569697203 + ], + "libelle_d_acheminement": "L HONOR DE COS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3569697203, + 44.1168766255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "168e9af942b4b5b440d5b12ee28279f807569738", + "fields": { + "code_commune_insee": "57658", + "nom_de_la_commune": "SOUCHT", + "code_postal": "57960", + "coordonnees_gps": [ + 48.9616739785, + 7.31992410346 + ], + "libelle_d_acheminement": "SOUCHT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31992410346, + 48.9616739785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e05c5718bea7b4bdbbfcd4412a126abab76c894", + "fields": { + "code_commune_insee": "82080", + "nom_de_la_commune": "LABASTIDE DU TEMPLE", + "code_postal": "82100", + "coordonnees_gps": [ + 44.0810961823, + 1.20235818385 + ], + "libelle_d_acheminement": "LABASTIDE DU TEMPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20235818385, + 44.0810961823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bd8ad0788efc2b0703b519402b1405e460600df", + "fields": { + "ligne_5": "LA BREME D OR", + "code_commune_insee": "57659", + "libelle_d_acheminement": "SPICHEREN", + "code_postal": "57350", + "nom_de_la_commune": "SPICHEREN", + "coordonnees_gps": [ + 49.1948583946, + 6.97044688686 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97044688686, + 49.1948583946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd6e0966cc12bd97321bf46f36ae593422a9812d", + "fields": { + "code_commune_insee": "82089", + "nom_de_la_commune": "LAMAGISTERE", + "code_postal": "82360", + "coordonnees_gps": [ + 44.1320571715, + 0.821877164854 + ], + "libelle_d_acheminement": "LAMAGISTERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.821877164854, + 44.1320571715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30c78b5b826dee37805c34f515c29b75cc9831e7", + "fields": { + "code_commune_insee": "57660", + "nom_de_la_commune": "STIRING WENDEL", + "code_postal": "57350", + "coordonnees_gps": [ + 49.2025325702, + 6.93271905155 + ], + "libelle_d_acheminement": "STIRING WENDEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93271905155, + 49.2025325702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17a163579cd49bc15a417584e1cf46302c585fa7", + "fields": { + "code_commune_insee": "82091", + "nom_de_la_commune": "LAMOTHE CUMONT", + "code_postal": "82500", + "coordonnees_gps": [ + 43.8829270496, + 0.913928018748 + ], + "libelle_d_acheminement": "LAMOTHE CUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.913928018748, + 43.8829270496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97f5ceb22719203629e701996c7a9dac5b2733e3", + "fields": { + "code_commune_insee": "57668", + "nom_de_la_commune": "TETING SUR NIED", + "code_postal": "57385", + "coordonnees_gps": [ + 49.0532700783, + 6.6696096112 + ], + "libelle_d_acheminement": "TETING SUR NIED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6696096112, + 49.0532700783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04740a128317c3068d220c95b08c39a5b0c6f037", + "fields": { + "code_commune_insee": "82099", + "nom_de_la_commune": "LIZAC", + "code_postal": "82200", + "coordonnees_gps": [ + 44.1127415173, + 1.18684429621 + ], + "libelle_d_acheminement": "LIZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18684429621, + 44.1127415173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "933c06331adda52227fb27e3ce364c503bcbb496", + "fields": { + "code_commune_insee": "57669", + "nom_de_la_commune": "THEDING", + "code_postal": "57450", + "coordonnees_gps": [ + 49.1284878197, + 6.89011082531 + ], + "libelle_d_acheminement": "THEDING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89011082531, + 49.1284878197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c6d89f571e37afc46c5c063f65652ccaa6f5145", + "fields": { + "code_commune_insee": "82110", + "nom_de_la_commune": "MIRABEL", + "code_postal": "82440", + "coordonnees_gps": [ + 44.1424577987, + 1.4113688594 + ], + "libelle_d_acheminement": "MIRABEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4113688594, + 44.1424577987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "191016c07cd3cfb6880e8e53100bad26ab7583e9", + "fields": { + "ligne_5": "OEUTRANGE", + "code_commune_insee": "57672", + "libelle_d_acheminement": "THIONVILLE", + "code_postal": "57100", + "nom_de_la_commune": "THIONVILLE", + "coordonnees_gps": [ + 49.3759716201, + 6.12928314217 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12928314217, + 49.3759716201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "351b64c7a3bc60f4373cf3ab10cb1c8b55dab20b", + "fields": { + "code_commune_insee": "82113", + "nom_de_la_commune": "MOLIERES", + "code_postal": "82220", + "coordonnees_gps": [ + 44.1933793632, + 1.39317951886 + ], + "libelle_d_acheminement": "MOLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39317951886, + 44.1933793632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7bf71da44f5dbe38bdba0f57d56b2ef84c70f81", + "fields": { + "code_commune_insee": "57673", + "nom_de_la_commune": "THONVILLE", + "code_postal": "57380", + "coordonnees_gps": [ + 48.9813587624, + 6.56673792931 + ], + "libelle_d_acheminement": "THONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56673792931, + 48.9813587624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3cfccbcfe40f974ae3b7ef85752a7495d2792c9", + "fields": { + "code_commune_insee": "82117", + "nom_de_la_commune": "MONTAIGU DE QUERCY", + "code_postal": "82150", + "coordonnees_gps": [ + 44.3406420111, + 1.03252683687 + ], + "libelle_d_acheminement": "MONTAIGU DE QUERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03252683687, + 44.3406420111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3960cc15ade6b303d844f165cac6cef3959797d1", + "fields": { + "code_commune_insee": "57677", + "nom_de_la_commune": "TREMERY", + "code_postal": "57300", + "coordonnees_gps": [ + 49.2538335062, + 6.24271493427 + ], + "libelle_d_acheminement": "TREMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24271493427, + 49.2538335062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e992e90c355ec0bcf75b02efbd149bf2fe637b73", + "fields": { + "code_commune_insee": "82125", + "nom_de_la_commune": "MONTECH", + "code_postal": "82700", + "coordonnees_gps": [ + 43.9524124123, + 1.23764675579 + ], + "libelle_d_acheminement": "MONTECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23764675579, + 43.9524124123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5df3b1fb91ace795601ae224267cc8aa580c0e97", + "fields": { + "code_commune_insee": "57679", + "nom_de_la_commune": "TRITTELING REDLACH", + "code_postal": "57385", + "coordonnees_gps": [ + 49.0775355368, + 6.616775943 + ], + "libelle_d_acheminement": "TRITTELING REDLACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.616775943, + 49.0775355368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce897549bbf2bb17a89bfd7bd183d32d58447261", + "fields": { + "code_commune_insee": "82127", + "nom_de_la_commune": "MONTESQUIEU", + "code_postal": "82200", + "coordonnees_gps": [ + 44.1792539863, + 1.06193133749 + ], + "libelle_d_acheminement": "MONTESQUIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06193133749, + 44.1792539863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bceea91324653ad7a1cb6f9e12164c992d3cbf8", + "fields": { + "code_commune_insee": "57680", + "nom_de_la_commune": "TROISFONTAINES", + "code_postal": "57870", + "coordonnees_gps": [ + 48.6710669896, + 7.12727960239 + ], + "libelle_d_acheminement": "TROISFONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12727960239, + 48.6710669896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c22cf5807dd2fc6279fa56bd4dd8fa257919944", + "fields": { + "code_commune_insee": "82153", + "nom_de_la_commune": "ST AMANS DU PECH", + "code_postal": "82150", + "coordonnees_gps": [ + 44.3114103481, + 0.893358658989 + ], + "libelle_d_acheminement": "ST AMANS DU PECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.893358658989, + 44.3114103481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "190d1ad0c856ec97f9af06c7fce5da61a7604a01", + "fields": { + "code_commune_insee": "57681", + "nom_de_la_commune": "TROMBORN", + "code_postal": "57320", + "coordonnees_gps": [ + 49.257002543, + 6.5958597076 + ], + "libelle_d_acheminement": "TROMBORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5958597076, + 49.257002543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60d0d0630c5f192dc0f1b3a5890c036c65277606", + "fields": { + "code_commune_insee": "82155", + "nom_de_la_commune": "ST ANTONIN NOBLE VAL", + "code_postal": "82140", + "coordonnees_gps": [ + 44.156093011, + 1.73640541242 + ], + "libelle_d_acheminement": "ST ANTONIN NOBLE VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73640541242, + 44.156093011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "620dc22ecc86558e565195a2d72a009ca4b3f416", + "fields": { + "code_commune_insee": "57690", + "nom_de_la_commune": "VALMONT", + "code_postal": "57730", + "coordonnees_gps": [ + 49.0843033887, + 6.70254231837 + ], + "libelle_d_acheminement": "VALMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70254231837, + 49.0843033887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06fe8e52425975e3ac989319448a86452cfdf8d8", + "fields": { + "code_commune_insee": "82164", + "nom_de_la_commune": "STE JULIETTE", + "code_postal": "82110", + "coordonnees_gps": [ + 44.2920682024, + 1.16527808537 + ], + "libelle_d_acheminement": "STE JULIETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16527808537, + 44.2920682024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3a897a722ddb7a25ca8f2221beea141dfab8760", + "fields": { + "ligne_5": "VARIZE", + "code_commune_insee": "57695", + "libelle_d_acheminement": "VARIZE VAUDONCOURT", + "code_postal": "57220", + "nom_de_la_commune": "VARIZE VAUDONCOURT", + "coordonnees_gps": [ + 49.1254107578, + 6.44934014942 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44934014942, + 49.1254107578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e30de8c6c7a3fb9fa1aafdd76593573f492e0041", + "fields": { + "code_commune_insee": "82174", + "nom_de_la_commune": "ST VINCENT D AUTEJAC", + "code_postal": "82300", + "coordonnees_gps": [ + 44.1643134123, + 1.46636504185 + ], + "libelle_d_acheminement": "ST VINCENT D AUTEJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46636504185, + 44.1643134123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "980811c2b29c4e48e303cfe76f110c6a59b2369c", + "fields": { + "code_commune_insee": "57702", + "nom_de_la_commune": "VAXY", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8590225328, + 6.52663158102 + ], + "libelle_d_acheminement": "VAXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52663158102, + 48.8590225328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75a36aa1a193b6b6b2df065dc1486af1c98de2fe", + "fields": { + "code_commune_insee": "82177", + "nom_de_la_commune": "SAUVETERRE", + "code_postal": "82110", + "coordonnees_gps": [ + 44.2678274881, + 1.2726165468 + ], + "libelle_d_acheminement": "SAUVETERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2726165468, + 44.2678274881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31c5a7205bac73506bf2aee4ad65ee7cffcc3af0", + "fields": { + "code_commune_insee": "57704", + "nom_de_la_commune": "VECKRING", + "code_postal": "57920", + "coordonnees_gps": [ + 49.3355810386, + 6.36306382549 + ], + "libelle_d_acheminement": "VECKRING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36306382549, + 49.3355810386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a91f8093d5770a2364559573b78716b81fcc0dbc", + "fields": { + "code_commune_insee": "82178", + "nom_de_la_commune": "SAVENES", + "code_postal": "82600", + "coordonnees_gps": [ + 43.830592054, + 1.18506891098 + ], + "libelle_d_acheminement": "SAVENES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18506891098, + 43.830592054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa119d14f9a0ed1520831111c00b722b23b6e4e4", + "fields": { + "code_commune_insee": "57713", + "nom_de_la_commune": "VIEUX LIXHEIM", + "code_postal": "57635", + "coordonnees_gps": [ + 48.7801701567, + 7.12597432049 + ], + "libelle_d_acheminement": "VIEUX LIXHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12597432049, + 48.7801701567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21b1aa18ad4be82815bbc5e01c49d285287f2a02", + "fields": { + "code_commune_insee": "82187", + "nom_de_la_commune": "VAREN", + "code_postal": "82330", + "coordonnees_gps": [ + 44.1580435232, + 1.88633565997 + ], + "libelle_d_acheminement": "VAREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88633565997, + 44.1580435232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd3b21962f517854c55a8fb25b10beee004485fe", + "fields": { + "code_commune_insee": "57716", + "nom_de_la_commune": "VIGY", + "code_postal": "57640", + "coordonnees_gps": [ + 49.2080435062, + 6.3068125723 + ], + "libelle_d_acheminement": "VIGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3068125723, + 49.2080435062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2d336ee8b6037d1e1af47c488da1f032952f392", + "fields": { + "code_commune_insee": "82188", + "nom_de_la_commune": "VARENNES", + "code_postal": "82370", + "coordonnees_gps": [ + 43.9165718677, + 1.49011749068 + ], + "libelle_d_acheminement": "VARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49011749068, + 43.9165718677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3104c25a22fba0d5e32cd1c07006325ddaaab07", + "fields": { + "code_commune_insee": "57717", + "nom_de_la_commune": "VILLER", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9884059966, + 6.64577215725 + ], + "libelle_d_acheminement": "VILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64577215725, + 48.9884059966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88a455145ff17c8f36f0321d484d8119a3f6868c", + "fields": { + "code_commune_insee": "82189", + "nom_de_la_commune": "VAZERAC", + "code_postal": "82220", + "coordonnees_gps": [ + 44.195295259, + 1.27659596104 + ], + "libelle_d_acheminement": "VAZERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27659596104, + 44.195295259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09a83420d1009b2f60957b86372fb8faf2855c92", + "fields": { + "code_commune_insee": "57728", + "nom_de_la_commune": "VOIMHAUT", + "code_postal": "57580", + "coordonnees_gps": [ + 49.026429553, + 6.4205093614 + ], + "libelle_d_acheminement": "VOIMHAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4205093614, + 49.026429553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ad676ccb36161aaa547ac613f8ce03e533c6515", + "fields": { + "code_commune_insee": "82190", + "nom_de_la_commune": "VERDUN SUR GARONNE", + "code_postal": "82600", + "coordonnees_gps": [ + 43.849145335, + 1.22845642714 + ], + "libelle_d_acheminement": "VERDUN SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22845642714, + 43.849145335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aa014f6c326db239c10605fdc01d424ea3660b3", + "fields": { + "code_commune_insee": "57733", + "nom_de_la_commune": "VOLSTROFF", + "code_postal": "57940", + "coordonnees_gps": [ + 49.3014063896, + 6.25187794488 + ], + "libelle_d_acheminement": "VOLSTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25187794488, + 49.3014063896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b02bddca0499e19d408405ee4c99bb1ae31674bd", + "fields": { + "code_commune_insee": "82194", + "nom_de_la_commune": "VILLEBRUMIER", + "code_postal": "82370", + "coordonnees_gps": [ + 43.9202948869, + 1.4512543274 + ], + "libelle_d_acheminement": "VILLEBRUMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4512543274, + 43.9202948869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7d4418f40f109f8319692c828ab4866c6edf7c3", + "fields": { + "code_commune_insee": "57739", + "nom_de_la_commune": "WALDWEISTROFF", + "code_postal": "57320", + "coordonnees_gps": [ + 49.3575723655, + 6.49576337503 + ], + "libelle_d_acheminement": "WALDWEISTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49576337503, + 49.3575723655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "053803c8e80877c2b7b08ddcb059b604c4507d0a", + "fields": { + "code_commune_insee": "82195", + "nom_de_la_commune": "VILLEMADE", + "code_postal": "82130", + "coordonnees_gps": [ + 44.0801227297, + 1.2899145835 + ], + "libelle_d_acheminement": "VILLEMADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2899145835, + 44.0801227297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "583bd09b44fecd4129aaad7275d790e8e54d7e7f", + "fields": { + "code_commune_insee": "57745", + "nom_de_la_commune": "WIESVILLER", + "code_postal": "57200", + "coordonnees_gps": [ + 49.0772822429, + 7.16122161095 + ], + "libelle_d_acheminement": "WIESVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16122161095, + 49.0772822429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "934261caf0106441046f46e2ec047df9cd57a98f", + "fields": { + "code_commune_insee": "83009", + "nom_de_la_commune": "BANDOL", + "code_postal": "83150", + "coordonnees_gps": [ + 43.1473544522, + 5.74789358398 + ], + "libelle_d_acheminement": "BANDOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74789358398, + 43.1473544522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9727bf6d928ad2f4d503a2778791685221ee14ba", + "fields": { + "code_commune_insee": "57750", + "nom_de_la_commune": "WOELFLING LES SARREGUEMINES", + "code_postal": "57200", + "coordonnees_gps": [ + 49.0853812881, + 7.18464267698 + ], + "libelle_d_acheminement": "WOELFLING LES SARREGUEMINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18464267698, + 49.0853812881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b82c7cb8cdf04f5c1374d120274a66840ad6e2ab", + "fields": { + "code_commune_insee": "83014", + "nom_de_la_commune": "BAUDINARD SUR VERDON", + "code_postal": "83630", + "coordonnees_gps": [ + 43.7138038426, + 6.13352757623 + ], + "libelle_d_acheminement": "BAUDINARD SUR VERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13352757623, + 43.7138038426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad3be1e8d9a957f35513c57b28d1b4043f699ca1", + "fields": { + "code_commune_insee": "57751", + "nom_de_la_commune": "WOIPPY", + "code_postal": "57140", + "coordonnees_gps": [ + 49.1638098271, + 6.15770213219 + ], + "libelle_d_acheminement": "WOIPPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15770213219, + 49.1638098271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc8bdd0fe19881b7b907908aa8b78974cb1d2a37", + "fields": { + "code_commune_insee": "83021", + "nom_de_la_commune": "BRAS", + "code_postal": "83149", + "coordonnees_gps": [ + 43.4704081648, + 5.95853254417 + ], + "libelle_d_acheminement": "BRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95853254417, + 43.4704081648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "603b51f91838dce2d1e20e1bbcf52537676ddf29", + "fields": { + "code_commune_insee": "57755", + "nom_de_la_commune": "XOCOURT", + "code_postal": "57590", + "coordonnees_gps": [ + 48.9097711268, + 6.37642709292 + ], + "libelle_d_acheminement": "XOCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37642709292, + 48.9097711268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea04e8a7cf3c9169e3fa77fad6bc9d617704873f", + "fields": { + "code_commune_insee": "83034", + "nom_de_la_commune": "CARQUEIRANNE", + "code_postal": "83320", + "coordonnees_gps": [ + 43.0971940145, + 6.0717379342 + ], + "libelle_d_acheminement": "CARQUEIRANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0717379342, + 43.0971940145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a63a5fc2d0703991146967d1a7bf81264251c7b", + "fields": { + "code_commune_insee": "57759", + "nom_de_la_commune": "ZARBELING", + "code_postal": "57340", + "coordonnees_gps": [ + 48.8901000277, + 6.68836654162 + ], + "libelle_d_acheminement": "ZARBELING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68836654162, + 48.8901000277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa33d82b1c52d83f9111e24009f800f8c28eeb49", + "fields": { + "ligne_5": "LA BEGUDE", + "code_commune_insee": "83035", + "libelle_d_acheminement": "LE CASTELLET", + "code_postal": "83330", + "nom_de_la_commune": "LE CASTELLET", + "coordonnees_gps": [ + 43.227667489, + 5.76560108367 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76560108367, + 43.227667489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82f881f12b90ffb0c02d9f543fd39f9792a5e9b3", + "fields": { + "code_commune_insee": "58002", + "nom_de_la_commune": "ALLIGNY COSNE", + "code_postal": "58200", + "coordonnees_gps": [ + 47.4435756978, + 3.07325894698 + ], + "libelle_d_acheminement": "ALLIGNY COSNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07325894698, + 47.4435756978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b3f0a5c984294f5a8c8eb2ce98ff1d268c08fdd", + "fields": { + "ligne_5": "STE ANNE DU CASTELLET", + "code_commune_insee": "83035", + "libelle_d_acheminement": "LE CASTELLET", + "code_postal": "83330", + "nom_de_la_commune": "LE CASTELLET", + "coordonnees_gps": [ + 43.227667489, + 5.76560108367 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76560108367, + 43.227667489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "418a18f1649fdbe98129c71366510578b6b3e8e7", + "fields": { + "code_commune_insee": "58012", + "nom_de_la_commune": "ARQUIAN", + "code_postal": "58310", + "coordonnees_gps": [ + 47.5349426855, + 2.99793071135 + ], + "libelle_d_acheminement": "ARQUIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99793071135, + 47.5349426855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6ed8c395da13751b7be6604210a5674bd6a5078", + "fields": { + "ligne_5": "REBOUILLON", + "code_commune_insee": "83038", + "libelle_d_acheminement": "CHATEAUDOUBLE", + "code_postal": "83300", + "nom_de_la_commune": "CHATEAUDOUBLE", + "coordonnees_gps": [ + 43.6234657127, + 6.43567132454 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43567132454, + 43.6234657127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86159591c9e687f4e8dbbbda0ede2c51c0bc09a4", + "fields": { + "code_commune_insee": "58024", + "nom_de_la_commune": "BAZOLLES", + "code_postal": "58110", + "coordonnees_gps": [ + 47.1455832324, + 3.60825350452 + ], + "libelle_d_acheminement": "BAZOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60825350452, + 47.1455832324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "838277ec7a070da9d1441d30c48d957867c65b36", + "fields": { + "code_commune_insee": "83039", + "nom_de_la_commune": "CHATEAUVERT", + "code_postal": "83670", + "coordonnees_gps": [ + 43.5012629533, + 6.01120516318 + ], + "libelle_d_acheminement": "CHATEAUVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01120516318, + 43.5012629533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79ddf26b6af2eb8ba5f5f07247eee8cb3dddc13e", + "fields": { + "code_commune_insee": "58028", + "nom_de_la_commune": "BEAUMONT SARDOLLES", + "code_postal": "58270", + "coordonnees_gps": [ + 46.9351521565, + 3.39695451595 + ], + "libelle_d_acheminement": "BEAUMONT SARDOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39695451595, + 46.9351521565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac4363668e5127fa6eb02b6519cdd432be00994f", + "fields": { + "code_commune_insee": "83047", + "nom_de_la_commune": "LA CRAU", + "code_postal": "83260", + "coordonnees_gps": [ + 43.1635207421, + 6.09268351583 + ], + "libelle_d_acheminement": "LA CRAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09268351583, + 43.1635207421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bb9710d137f884643de3031df678a24dc9951ec", + "fields": { + "code_commune_insee": "58038", + "nom_de_la_commune": "BREUGNON", + "code_postal": "58460", + "coordonnees_gps": [ + 47.4272649445, + 3.45776279567 + ], + "libelle_d_acheminement": "BREUGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45776279567, + 47.4272649445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8b979afb55f451b226a7e996268ce7f5e9cf31d", + "fields": { + "code_commune_insee": "83054", + "nom_de_la_commune": "LA FARLEDE", + "code_postal": "83210", + "coordonnees_gps": [ + 43.1615363005, + 6.04275325508 + ], + "libelle_d_acheminement": "LA FARLEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04275325508, + 43.1615363005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffa6906e2af277d60914c9a61ca8d3c6b7ce8a9a", + "fields": { + "code_commune_insee": "58041", + "nom_de_la_commune": "BRINON SUR BEUVRON", + "code_postal": "58420", + "coordonnees_gps": [ + 47.2843863072, + 3.49020583859 + ], + "libelle_d_acheminement": "BRINON SUR BEUVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49020583859, + 47.2843863072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9b970301e9f34547bd3b7edcbc216a7993031f8", + "fields": { + "code_commune_insee": "83060", + "nom_de_la_commune": "FOX AMPHOUX", + "code_postal": "83670", + "coordonnees_gps": [ + 43.5955417496, + 6.10909327573 + ], + "libelle_d_acheminement": "FOX AMPHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10909327573, + 43.5955417496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3670cf9a1c0baf3dc3157bd83b5b070ff95fb0c", + "fields": { + "code_commune_insee": "58052", + "nom_de_la_commune": "CHAMPALLEMENT", + "code_postal": "58420", + "coordonnees_gps": [ + 47.2284006437, + 3.48161378948 + ], + "libelle_d_acheminement": "CHAMPALLEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48161378948, + 47.2284006437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d07d624c4940ee90f1e1a3f6abd75c16559fdfa", + "fields": { + "code_commune_insee": "83062", + "nom_de_la_commune": "LA GARDE", + "code_postal": "83130", + "coordonnees_gps": [ + 43.1263279384, + 6.01898164719 + ], + "libelle_d_acheminement": "LA GARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01898164719, + 43.1263279384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d90aef0df7da14d5796c04644124861d4cd58523", + "fields": { + "ligne_5": "ST IMBERT", + "code_commune_insee": "58057", + "libelle_d_acheminement": "CHANTENAY ST IMBERT", + "code_postal": "58240", + "nom_de_la_commune": "CHANTENAY ST IMBERT", + "coordonnees_gps": [ + 46.7394357002, + 3.17150423035 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17150423035, + 46.7394357002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6246a389909e01aa3b35d6cb916da100359879ef", + "fields": { + "code_commune_insee": "83064", + "nom_de_la_commune": "GAREOULT", + "code_postal": "83136", + "coordonnees_gps": [ + 43.3403271328, + 6.04087625954 + ], + "libelle_d_acheminement": "GAREOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04087625954, + 43.3403271328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8273e435fcd3f67ccd221ecd69c2fcbbf183af3", + "fields": { + "code_commune_insee": "58060", + "nom_de_la_commune": "CHARRIN", + "code_postal": "58300", + "coordonnees_gps": [ + 46.7983120336, + 3.5962141687 + ], + "libelle_d_acheminement": "CHARRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5962141687, + 46.7983120336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7314b1fcdafd70644d3635ce030f5455551bb25", + "fields": { + "code_commune_insee": "83065", + "nom_de_la_commune": "GASSIN", + "code_postal": "83580", + "coordonnees_gps": [ + 43.2392065224, + 6.58617518642 + ], + "libelle_d_acheminement": "GASSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58617518642, + 43.2392065224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fa3e754e6318a9b1bf9d8c8fc89d870a4d0d309", + "fields": { + "code_commune_insee": "58065", + "nom_de_la_commune": "CHATILLON EN BAZOIS", + "code_postal": "58110", + "coordonnees_gps": [ + 47.0557553811, + 3.65816113346 + ], + "libelle_d_acheminement": "CHATILLON EN BAZOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65816113346, + 47.0557553811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19d17a28bbff69e74fd9459910aa5fa73f42dce9", + "fields": { + "ligne_5": "GIENS", + "code_commune_insee": "83069", + "libelle_d_acheminement": "HYERES", + "code_postal": "83400", + "nom_de_la_commune": "HYERES", + "coordonnees_gps": [ + 43.1018713534, + 6.18898508469 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18898508469, + 43.1018713534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c81a668cec2f55d205d7c9b5067b78197c26911", + "fields": { + "code_commune_insee": "58068", + "nom_de_la_commune": "CHAUMARD", + "code_postal": "58120", + "coordonnees_gps": [ + 47.1456786521, + 3.91332080752 + ], + "libelle_d_acheminement": "CHAUMARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91332080752, + 47.1456786521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68f65675919d83ccb80c18424cf83ada99a4a449", + "fields": { + "ligne_5": "HYERES PLAGE", + "code_commune_insee": "83069", + "libelle_d_acheminement": "HYERES", + "code_postal": "83400", + "nom_de_la_commune": "HYERES", + "coordonnees_gps": [ + 43.1018713534, + 6.18898508469 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18898508469, + 43.1018713534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0d130a9a1f715c2004101a0160bd1965b034f86", + "fields": { + "code_commune_insee": "58069", + "nom_de_la_commune": "CHAUMOT", + "code_postal": "58800", + "coordonnees_gps": [ + 47.251942409, + 3.64281891552 + ], + "libelle_d_acheminement": "CHAUMOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64281891552, + 47.251942409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0744af58ad49684a47a59b33f92eb41df387cc0", + "fields": { + "ligne_5": "ILE DE PORT CROS", + "code_commune_insee": "83069", + "libelle_d_acheminement": "HYERES", + "code_postal": "83400", + "nom_de_la_commune": "HYERES", + "coordonnees_gps": [ + 43.1018713534, + 6.18898508469 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18898508469, + 43.1018713534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3e69f3c1195b4038f187eb511d5a7f5be4c6ca1", + "fields": { + "code_commune_insee": "58070", + "nom_de_la_commune": "CHAZEUIL", + "code_postal": "58700", + "coordonnees_gps": [ + 47.2780823598, + 3.40392511236 + ], + "libelle_d_acheminement": "CHAZEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40392511236, + 47.2780823598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74fce740f7ac76d8ad52be039dc197c9f4dcf53a", + "fields": { + "code_commune_insee": "58073", + "nom_de_la_commune": "CHEVROCHES", + "code_postal": "58500", + "coordonnees_gps": [ + 47.4447632015, + 3.54472363708 + ], + "libelle_d_acheminement": "CHEVROCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54472363708, + 47.4447632015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75964d0c93f24f92f6e42f2eadd17925c044c876", + "fields": { + "code_commune_insee": "58076", + "nom_de_la_commune": "CHOUGNY", + "code_postal": "58110", + "coordonnees_gps": [ + 47.0896123144, + 3.7576422765 + ], + "libelle_d_acheminement": "CHOUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7576422765, + 47.0896123144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdf970e0ab08ee8f42f221d8ecbe9def631c2132", + "fields": { + "code_commune_insee": "58078", + "nom_de_la_commune": "CIZELY", + "code_postal": "58270", + "coordonnees_gps": [ + 46.9834200347, + 3.46889795447 + ], + "libelle_d_acheminement": "CIZELY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46889795447, + 46.9834200347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42b87180422208c39c3e7dd0dcd58e043bf1eb22", + "fields": { + "code_commune_insee": "58079", + "nom_de_la_commune": "CLAMECY", + "code_postal": "58500", + "coordonnees_gps": [ + 47.4610140738, + 3.51008131187 + ], + "libelle_d_acheminement": "CLAMECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51008131187, + 47.4610140738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b9a796a8484aa0a67e830b6d7e6d6029565217f", + "fields": { + "ligne_5": "MOULOT", + "code_commune_insee": "58079", + "libelle_d_acheminement": "CLAMECY", + "code_postal": "58500", + "nom_de_la_commune": "CLAMECY", + "coordonnees_gps": [ + 47.4610140738, + 3.51008131187 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51008131187, + 47.4610140738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b151ba311fa3e000f470c6d5622e4e1f7214ed0c", + "fields": { + "code_commune_insee": "58083", + "nom_de_la_commune": "CORBIGNY", + "code_postal": "58800", + "coordonnees_gps": [ + 47.2565578889, + 3.68948978336 + ], + "libelle_d_acheminement": "CORBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68948978336, + 47.2565578889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01a06a2339c94ba4b88e980f1f3433204385045e", + "fields": { + "code_commune_insee": "58095", + "nom_de_la_commune": "DECIZE", + "code_postal": "58300", + "coordonnees_gps": [ + 46.8088592771, + 3.46630747619 + ], + "libelle_d_acheminement": "DECIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46630747619, + 46.8088592771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "335ae8831190ff0d218c1e137b35243a587d9764", + "fields": { + "code_commune_insee": "58098", + "nom_de_la_commune": "DIROL", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3184800902, + 3.64313334318 + ], + "libelle_d_acheminement": "DIROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64313334318, + 47.3184800902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9336022016192fb834026e5c31b1539fe03e05a", + "fields": { + "code_commune_insee": "58110", + "nom_de_la_commune": "EPIRY", + "code_postal": "58800", + "coordonnees_gps": [ + 47.170814257, + 3.73120598102 + ], + "libelle_d_acheminement": "EPIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73120598102, + 47.170814257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2ef0bf329acd4cb497dd414a0e1b35147f69ac4", + "fields": { + "code_commune_insee": "58112", + "nom_de_la_commune": "LA FERMETE", + "code_postal": "58160", + "coordonnees_gps": [ + 46.9561343358, + 3.32854721893 + ], + "libelle_d_acheminement": "LA FERMETE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32854721893, + 46.9561343358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "804d1c986ef9078f40570e9775513e6567c9e84d", + "fields": { + "code_commune_insee": "58115", + "nom_de_la_commune": "FLEURY SUR LOIRE", + "code_postal": "58240", + "coordonnees_gps": [ + 46.830039713, + 3.31570978537 + ], + "libelle_d_acheminement": "FLEURY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31570978537, + 46.830039713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c4581b54e6382f76f2257533663fad597aa69f8", + "fields": { + "code_commune_insee": "58124", + "nom_de_la_commune": "GERMIGNY SUR LOIRE", + "code_postal": "58320", + "coordonnees_gps": [ + 47.0779068845, + 3.04792148383 + ], + "libelle_d_acheminement": "GERMIGNY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04792148383, + 47.0779068845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e769b5f5d4ab9074f704c38d2a56d6a7ee2c2fa9", + "fields": { + "code_commune_insee": "58127", + "nom_de_la_commune": "GIRY", + "code_postal": "58700", + "coordonnees_gps": [ + 47.2145145857, + 3.33712972505 + ], + "libelle_d_acheminement": "GIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33712972505, + 47.2145145857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4b34b48a95d754fe77b1dcf13400c08f3351bb6", + "fields": { + "code_commune_insee": "58132", + "nom_de_la_commune": "GUIPY", + "code_postal": "58420", + "coordonnees_gps": [ + 47.2288349928, + 3.57914407014 + ], + "libelle_d_acheminement": "GUIPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57914407014, + 47.2288349928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dd52cfff6254f2213e94fe7321c5094deee90ba", + "fields": { + "code_commune_insee": "58134", + "nom_de_la_commune": "IMPHY", + "code_postal": "58160", + "coordonnees_gps": [ + 46.9351930768, + 3.2810945093 + ], + "libelle_d_acheminement": "IMPHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2810945093, + 46.9351930768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8418bcda9aef96472632dc97fcbfa9b990cdb426", + "fields": { + "code_commune_insee": "58135", + "nom_de_la_commune": "ISENAY", + "code_postal": "58290", + "coordonnees_gps": [ + 46.9182601112, + 3.71038298673 + ], + "libelle_d_acheminement": "ISENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71038298673, + 46.9182601112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d55f8a8fd33a68b92cf95e36c379e2343dd95af2", + "fields": { + "code_commune_insee": "58139", + "nom_de_la_commune": "LANTY", + "code_postal": "58250", + "coordonnees_gps": [ + 46.8028139778, + 3.82941818317 + ], + "libelle_d_acheminement": "LANTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82941818317, + 46.8028139778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1747e17d2b1f9e07b0de16d1e3666a00ea30aadc", + "fields": { + "code_commune_insee": "58146", + "nom_de_la_commune": "LUCENAY LES AIX", + "code_postal": "58380", + "coordonnees_gps": [ + 46.6979583473, + 3.49166232072 + ], + "libelle_d_acheminement": "LUCENAY LES AIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49166232072, + 46.6979583473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33079bdbe836e27cf1812db278e80e2aab8a07fb", + "fields": { + "code_commune_insee": "58153", + "nom_de_la_commune": "MAGNY LORMES", + "code_postal": "58800", + "coordonnees_gps": [ + 47.2909908741, + 3.74767215343 + ], + "libelle_d_acheminement": "MAGNY LORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74767215343, + 47.2909908741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78eccfbd3e5df43ff1945ad3cdea36f948bfab85", + "fields": { + "code_commune_insee": "58158", + "nom_de_la_commune": "MARS SUR ALLIER", + "code_postal": "58240", + "coordonnees_gps": [ + 46.8583738333, + 3.08787262562 + ], + "libelle_d_acheminement": "MARS SUR ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08787262562, + 46.8583738333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07ec1cf30c09794e57620a333da9854e1d19ef03", + "fields": { + "code_commune_insee": "58179", + "nom_de_la_commune": "MONTREUILLON", + "code_postal": "58800", + "coordonnees_gps": [ + 47.1714740778, + 3.79148953079 + ], + "libelle_d_acheminement": "MONTREUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79148953079, + 47.1714740778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14328ecdecd2fc1dc76ba819d44c2c207fe6b76d", + "fields": { + "code_commune_insee": "58188", + "nom_de_la_commune": "NANNAY", + "code_postal": "58350", + "coordonnees_gps": [ + 47.2606508434, + 3.16417632976 + ], + "libelle_d_acheminement": "NANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16417632976, + 47.2606508434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0a16adb4486228e00f8c5fa2f4fa9edf8d0ec9c", + "fields": { + "code_commune_insee": "58189", + "nom_de_la_commune": "NARCY", + "code_postal": "58400", + "coordonnees_gps": [ + 47.2328455003, + 3.10662279955 + ], + "libelle_d_acheminement": "NARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10662279955, + 47.2328455003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59deee85f9cf9d5eab029744477ba1ac9588ae59", + "fields": { + "code_commune_insee": "58193", + "nom_de_la_commune": "NEUVY SUR LOIRE", + "code_postal": "58450", + "coordonnees_gps": [ + 47.5317453883, + 2.89007280988 + ], + "libelle_d_acheminement": "NEUVY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89007280988, + 47.5317453883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b613e8f7a42a8f5145d0a9cc4ce7ddecab9f3da7", + "fields": { + "ligne_5": "BALLERAY", + "code_commune_insee": "58204", + "libelle_d_acheminement": "VAUX D AMOGNES", + "code_postal": "58130", + "nom_de_la_commune": "VAUX D AMOGNES", + "coordonnees_gps": [ + 47.0613273631, + 3.30090661535 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30090661535, + 47.0613273631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9500f76140c771acbe84b2f3a6126125a46e6d7d", + "fields": { + "code_commune_insee": "58217", + "nom_de_la_commune": "POUSSEAUX", + "code_postal": "58500", + "coordonnees_gps": [ + 47.4985703451, + 3.54164743196 + ], + "libelle_d_acheminement": "POUSSEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54164743196, + 47.4985703451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c62635d3609433327952421247bd341418543a20", + "fields": { + "code_commune_insee": "58219", + "nom_de_la_commune": "PREPORCHE", + "code_postal": "58360", + "coordonnees_gps": [ + 46.9362843762, + 3.86451394261 + ], + "libelle_d_acheminement": "PREPORCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86451394261, + 46.9362843762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2ae18cc3154499874513ad4ced37c7618d7b3d5", + "fields": { + "code_commune_insee": "58220", + "nom_de_la_commune": "RAVEAU", + "code_postal": "58400", + "coordonnees_gps": [ + 47.1789620063, + 3.11552861009 + ], + "libelle_d_acheminement": "RAVEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11552861009, + 47.1789620063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbc5cfa53732c1a6c2472523f014dccf1ed800ed", + "fields": { + "code_commune_insee": "58224", + "nom_de_la_commune": "RUAGES", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3117824259, + 3.68294903942 + ], + "libelle_d_acheminement": "RUAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68294903942, + 47.3117824259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd16bc7689fffe93799847e231820a4669b1d889", + "fields": { + "code_commune_insee": "58226", + "nom_de_la_commune": "ST AGNAN", + "code_postal": "58230", + "coordonnees_gps": [ + 47.3229791004, + 4.09119317284 + ], + "libelle_d_acheminement": "ST AGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09119317284, + 47.3229791004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78291373bc5ce4166df06509a92e47fd6556b948", + "fields": { + "code_commune_insee": "58229", + "nom_de_la_commune": "ST ANDRE EN MORVAN", + "code_postal": "58140", + "coordonnees_gps": [ + 47.3985163696, + 3.85566396441 + ], + "libelle_d_acheminement": "ST ANDRE EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85566396441, + 47.3985163696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7185d0b443c9ef4ddd5c303e1ffcb998d6879327", + "fields": { + "code_commune_insee": "58233", + "nom_de_la_commune": "ST BENIN DES BOIS", + "code_postal": "58330", + "coordonnees_gps": [ + 47.1194281851, + 3.40476489067 + ], + "libelle_d_acheminement": "ST BENIN DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40476489067, + 47.1194281851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84df967dc6737e0643aa6e38688b3bb75cfbf12a", + "fields": { + "code_commune_insee": "58237", + "nom_de_la_commune": "ST DIDIER", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3478980035, + 3.62016798803 + ], + "libelle_d_acheminement": "ST DIDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62016798803, + 47.3478980035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0f39cbb42a3d291ea191f0bf1cd04448cc64979", + "fields": { + "code_commune_insee": "58238", + "nom_de_la_commune": "ST ELOI", + "code_postal": "58000", + "coordonnees_gps": [ + 46.9901181067, + 3.22198605099 + ], + "libelle_d_acheminement": "ST ELOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22198605099, + 46.9901181067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f197d1906f5f4a84f625342d418c6f464624e88", + "fields": { + "code_commune_insee": "58241", + "nom_de_la_commune": "ST GERMAIN CHASSENAY", + "code_postal": "58300", + "coordonnees_gps": [ + 46.7812644833, + 3.39785224897 + ], + "libelle_d_acheminement": "ST GERMAIN CHASSENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39785224897, + 46.7812644833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4c59c485cd36ad0c5395fb74a017f363e0f5d01", + "fields": { + "code_commune_insee": "58248", + "nom_de_la_commune": "ST LAURENT L ABBAYE", + "code_postal": "58150", + "coordonnees_gps": [ + 47.3370394747, + 2.99458105958 + ], + "libelle_d_acheminement": "ST LAURENT L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99458105958, + 47.3370394747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc88e548e8a7b53929bb58e8ffe339617032fcfd", + "fields": { + "code_commune_insee": "58249", + "nom_de_la_commune": "ST LEGER DE FOUGERET", + "code_postal": "58120", + "coordonnees_gps": [ + 47.0085324049, + 3.90770959425 + ], + "libelle_d_acheminement": "ST LEGER DE FOUGERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90770959425, + 47.0085324049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05215285dd0c13c9f532eb42414730ff5a7db7d5", + "fields": { + "code_commune_insee": "58250", + "nom_de_la_commune": "ST LEGER DES VIGNES", + "code_postal": "58300", + "coordonnees_gps": [ + 46.8489006615, + 3.45264311674 + ], + "libelle_d_acheminement": "ST LEGER DES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45264311674, + 46.8489006615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f277c42091dde8590d5c5e04c9bf3aedab449886", + "fields": { + "code_commune_insee": "58252", + "nom_de_la_commune": "ST MALO EN DONZIOIS", + "code_postal": "58350", + "coordonnees_gps": [ + 47.3114598029, + 3.27714440768 + ], + "libelle_d_acheminement": "ST MALO EN DONZIOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27714440768, + 47.3114598029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e67d76a8f7b59101fb4e8b4ddb83531e86f00154", + "fields": { + "code_commune_insee": "58265", + "nom_de_la_commune": "ST QUENTIN SUR NOHAIN", + "code_postal": "58150", + "coordonnees_gps": [ + 47.3245431361, + 3.02155254017 + ], + "libelle_d_acheminement": "ST QUENTIN SUR NOHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02155254017, + 47.3245431361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1e3f1552e0d9230771655d1511c9206e4fa1012", + "fields": { + "code_commune_insee": "58268", + "nom_de_la_commune": "ST SEINE", + "code_postal": "58250", + "coordonnees_gps": [ + 46.7247057323, + 3.81621435 + ], + "libelle_d_acheminement": "ST SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81621435, + 46.7247057323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5eef0954e7f895dbdca37f3854b134c3976dfb28", + "fields": { + "ligne_5": "FORGES", + "code_commune_insee": "58273", + "libelle_d_acheminement": "SAUVIGNY LES BOIS", + "code_postal": "58160", + "nom_de_la_commune": "SAUVIGNY LES BOIS", + "coordonnees_gps": [ + 46.977062374, + 3.2660919409 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2660919409, + 46.977062374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b48f1009ee11cd84635d0ad567c7c22866a69865", + "fields": { + "code_commune_insee": "58281", + "nom_de_la_commune": "SUILLY LA TOUR", + "code_postal": "58150", + "coordonnees_gps": [ + 47.3335127052, + 3.07213356568 + ], + "libelle_d_acheminement": "SUILLY LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07213356568, + 47.3335127052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4edb466b2d1668d7259b5e02927718711d802d3a", + "fields": { + "code_commune_insee": "58294", + "nom_de_la_commune": "TOURY SUR JOUR", + "code_postal": "58240", + "coordonnees_gps": [ + 46.729128696, + 3.25509046367 + ], + "libelle_d_acheminement": "TOURY SUR JOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25509046367, + 46.729128696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32cffd80a85dd13063976665245841ea5fc08c02", + "fields": { + "code_commune_insee": "58298", + "nom_de_la_commune": "TRONSANGES", + "code_postal": "58400", + "coordonnees_gps": [ + 47.1171713979, + 3.05070672439 + ], + "libelle_d_acheminement": "TRONSANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05070672439, + 47.1171713979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4573094248e22e2c7ec41814264909e403c92413", + "fields": { + "code_commune_insee": "58300", + "nom_de_la_commune": "URZY", + "code_postal": "58130", + "coordonnees_gps": [ + 47.0592677863, + 3.20126668844 + ], + "libelle_d_acheminement": "URZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20126668844, + 47.0592677863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "220b46d0a26233ab0a3ab5322af0710ae2380c6d", + "fields": { + "code_commune_insee": "58301", + "nom_de_la_commune": "VANDENESSE", + "code_postal": "58290", + "coordonnees_gps": [ + 46.9128337385, + 3.77795147316 + ], + "libelle_d_acheminement": "VANDENESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77795147316, + 46.9128337385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fca76897ae542e8cdc6ee1840c64c73aca1f8082", + "fields": { + "code_commune_insee": "58307", + "nom_de_la_commune": "VIELMANAY", + "code_postal": "58150", + "coordonnees_gps": [ + 47.2776012604, + 3.11071354211 + ], + "libelle_d_acheminement": "VIELMANAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11071354211, + 47.2776012604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a559e6d5f45305d50faaa5b0d6c8c3e42b7c745", + "fields": { + "code_commune_insee": "59005", + "nom_de_la_commune": "ALLENNES LES MARAIS", + "code_postal": "59251", + "coordonnees_gps": [ + 50.5417063572, + 2.94865877262 + ], + "libelle_d_acheminement": "ALLENNES LES MARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94865877262, + 50.5417063572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ad2f34aa87df89d658765cc82ca198c12a2c102", + "fields": { + "code_commune_insee": "59006", + "nom_de_la_commune": "AMFROIPRET", + "code_postal": "59144", + "coordonnees_gps": [ + 50.2776390302, + 3.73565394566 + ], + "libelle_d_acheminement": "AMFROIPRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73565394566, + 50.2776390302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a75c4750b3921fccb16c976c1365e2b4a757834", + "fields": { + "code_commune_insee": "59009", + "nom_de_la_commune": "VILLENEUVE D ASCQ", + "code_postal": "59650", + "coordonnees_gps": [ + 50.6324372393, + 3.1535257221 + ], + "libelle_d_acheminement": "VILLENEUVE D ASCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1535257221, + 50.6324372393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cc9badb814b140b1a3c0a2095fa0fc2e2b060ea", + "fields": { + "code_commune_insee": "59010", + "nom_de_la_commune": "ANNEUX", + "code_postal": "59400", + "coordonnees_gps": [ + 50.1570164384, + 3.12505671113 + ], + "libelle_d_acheminement": "ANNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12505671113, + 50.1570164384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "649f1f7bd17f5a887b66da35c62fa89dbef8fb48", + "fields": { + "code_commune_insee": "59014", + "nom_de_la_commune": "ANZIN", + "code_postal": "59410", + "coordonnees_gps": [ + 50.3753643424, + 3.51113183833 + ], + "libelle_d_acheminement": "ANZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51113183833, + 50.3753643424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d38b4dccfe065ac0379c4d294034d3679c9cb9d0", + "fields": { + "code_commune_insee": "59027", + "nom_de_la_commune": "AUBRY DU HAINAUT", + "code_postal": "59494", + "coordonnees_gps": [ + 50.3759590091, + 3.4522066329 + ], + "libelle_d_acheminement": "AUBRY DU HAINAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4522066329, + 50.3759590091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf3275ecd8bbf630c382cb3320613557be370f3e", + "fields": { + "code_commune_insee": "59033", + "nom_de_la_commune": "AULNOYE AYMERIES", + "code_postal": "59620", + "coordonnees_gps": [ + 50.2058749072, + 3.83263118494 + ], + "libelle_d_acheminement": "AULNOYE AYMERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83263118494, + 50.2058749072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ef8c541444f204cddd8a69be446d67c15994f73", + "fields": { + "ligne_5": "LOUVIGNIES BAVAY", + "code_commune_insee": "59053", + "libelle_d_acheminement": "BAVAY", + "code_postal": "59570", + "nom_de_la_commune": "BAVAY", + "coordonnees_gps": [ + 50.2936087618, + 3.80308794658 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80308794658, + 50.2936087618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03a1ef66d21d13ba2483ff490d6e44914c1bd65b", + "fields": { + "code_commune_insee": "59055", + "nom_de_la_commune": "BAZUEL", + "code_postal": "59360", + "coordonnees_gps": [ + 50.0816021977, + 3.59590423049 + ], + "libelle_d_acheminement": "BAZUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59590423049, + 50.0816021977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27910e77eed4798c7f20d7aa6a9f202ceeab6f12", + "fields": { + "code_commune_insee": "59059", + "nom_de_la_commune": "BEAUMONT EN CAMBRESIS", + "code_postal": "59540", + "coordonnees_gps": [ + 50.1265847908, + 3.45162407092 + ], + "libelle_d_acheminement": "BEAUMONT EN CAMBRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45162407092, + 50.1265847908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "799387b57d2e0bcd5e9072c5a3bfaeb1bfbfbfe9", + "fields": { + "code_commune_insee": "59063", + "nom_de_la_commune": "BEAUVOIS EN CAMBRESIS", + "code_postal": "59157", + "coordonnees_gps": [ + 50.1403335661, + 3.38449590227 + ], + "libelle_d_acheminement": "BEAUVOIS EN CAMBRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38449590227, + 50.1403335661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bc80f6c8ecbcfa1dbf80ff1d423f268c083038f", + "fields": { + "code_commune_insee": "59064", + "nom_de_la_commune": "BELLAING", + "code_postal": "59135", + "coordonnees_gps": [ + 50.3659312022, + 3.42553238229 + ], + "libelle_d_acheminement": "BELLAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42553238229, + 50.3659312022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf0a8cdd334bd0009352201dac46da7d507e8b7b", + "fields": { + "code_commune_insee": "59065", + "nom_de_la_commune": "BELLIGNIES", + "code_postal": "59570", + "coordonnees_gps": [ + 50.3225210245, + 3.76276954523 + ], + "libelle_d_acheminement": "BELLIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76276954523, + 50.3225210245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c8a1b82831f26bbe26837968dfc54e26b3c9787", + "fields": { + "code_commune_insee": "59068", + "nom_de_la_commune": "BERLAIMONT", + "code_postal": "59145", + "coordonnees_gps": [ + 50.2057229954, + 3.79391306597 + ], + "libelle_d_acheminement": "BERLAIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79391306597, + 50.2057229954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d74bcdd5c7ebe88f8430cade5fe1da66b8c8cb28", + "fields": { + "code_commune_insee": "59071", + "nom_de_la_commune": "BERSEE", + "code_postal": "59235", + "coordonnees_gps": [ + 50.4804538835, + 3.15078397856 + ], + "libelle_d_acheminement": "BERSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15078397856, + 50.4804538835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "558697422aa6f2608d3dbba27ddfcb832b9a06d2", + "fields": { + "ligne_5": "MONT DES CATS", + "code_commune_insee": "59073", + "libelle_d_acheminement": "BERTHEN", + "code_postal": "59270", + "nom_de_la_commune": "BERTHEN", + "coordonnees_gps": [ + 50.7779383016, + 2.6875622719 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6875622719, + 50.7779383016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84a0493455add3a7c6d5424fec25c9fb5cdb001d", + "fields": { + "code_commune_insee": "59075", + "nom_de_la_commune": "BETHENCOURT", + "code_postal": "59540", + "coordonnees_gps": [ + 50.1426560397, + 3.42342136756 + ], + "libelle_d_acheminement": "BETHENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42342136756, + 50.1426560397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfd4ad3126f0bf3d100d222e311b163fca295b9c", + "fields": { + "code_commune_insee": "59077", + "nom_de_la_commune": "BETTRECHIES", + "code_postal": "59570", + "coordonnees_gps": [ + 50.3221407699, + 3.74013412317 + ], + "libelle_d_acheminement": "BETTRECHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74013412317, + 50.3221407699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e640f2639388b0fb255738a3b40ce04279d7b86", + "fields": { + "code_commune_insee": "59081", + "nom_de_la_commune": "BEVILLERS", + "code_postal": "59217", + "coordonnees_gps": [ + 50.158314463, + 3.39072994469 + ], + "libelle_d_acheminement": "BEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39072994469, + 50.158314463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "918453fc7bb90fa58237ac43bceb3d1c3a78a876", + "fields": { + "code_commune_insee": "59089", + "nom_de_la_commune": "BOLLEZEELE", + "code_postal": "59470", + "coordonnees_gps": [ + 50.8652273621, + 2.34136933381 + ], + "libelle_d_acheminement": "BOLLEZEELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34136933381, + 50.8652273621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21f5d065383731f2ad9d22f0112571a911cf04a7", + "fields": { + "code_commune_insee": "59098", + "nom_de_la_commune": "BOUSBECQUE", + "code_postal": "59166", + "coordonnees_gps": [ + 50.7638184317, + 3.07542848088 + ], + "libelle_d_acheminement": "BOUSBECQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07542848088, + 50.7638184317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1011785af08618366a5096989acefc6f02d28374", + "fields": { + "code_commune_insee": "59100", + "nom_de_la_commune": "BOUSIGNIES", + "code_postal": "59178", + "coordonnees_gps": [ + 50.4302087604, + 3.35488860191 + ], + "libelle_d_acheminement": "BOUSIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35488860191, + 50.4302087604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "900d33b6fa37f4b53d9ef396b0dd2523fc761015", + "fields": { + "code_commune_insee": "59101", + "nom_de_la_commune": "BOUSIGNIES SUR ROC", + "code_postal": "59149", + "coordonnees_gps": [ + 50.2638826677, + 4.18728654005 + ], + "libelle_d_acheminement": "BOUSIGNIES SUR ROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18728654005, + 50.2638826677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7921140c41c3f6e2a3641e4927100da9cb96135b", + "fields": { + "code_commune_insee": "59102", + "nom_de_la_commune": "BOUSSIERES EN CAMBRESIS", + "code_postal": "59217", + "coordonnees_gps": [ + 50.1638275467, + 3.37224279409 + ], + "libelle_d_acheminement": "BOUSSIERES EN CAMBRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37224279409, + 50.1638275467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4f11628b444409845302ad54f054233a3af76d2", + "fields": { + "code_commune_insee": "59109", + "nom_de_la_commune": "BRILLON", + "code_postal": "59178", + "coordonnees_gps": [ + 50.4339939197, + 3.33534225599 + ], + "libelle_d_acheminement": "BRILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33534225599, + 50.4339939197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "034ab11f29bbe4ae37b8a1319ab851aa288abb42", + "fields": { + "code_commune_insee": "59113", + "nom_de_la_commune": "BRUILLE LEZ MARCHIENNES", + "code_postal": "59490", + "coordonnees_gps": [ + 50.3559112318, + 3.24310396614 + ], + "libelle_d_acheminement": "BRUILLE LEZ MARCHIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24310396614, + 50.3559112318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba853f187c2885e40a237fc35275fea9cecb2e8", + "fields": { + "code_commune_insee": "59116", + "nom_de_la_commune": "BRY", + "code_postal": "59144", + "coordonnees_gps": [ + 50.3162997425, + 3.68368839887 + ], + "libelle_d_acheminement": "BRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68368839887, + 50.3162997425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d0cefc66b6c7d5eb39f4cefa9f723a9bd269dd5", + "fields": { + "code_commune_insee": "59119", + "nom_de_la_commune": "BUYSSCHEURE", + "code_postal": "59285", + "coordonnees_gps": [ + 50.806582613, + 2.33507855755 + ], + "libelle_d_acheminement": "BUYSSCHEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33507855755, + 50.806582613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e968a190b2e504391ab0247e3101d14293a815c8", + "fields": { + "code_commune_insee": "59124", + "nom_de_la_commune": "CAMPHIN EN PEVELE", + "code_postal": "59780", + "coordonnees_gps": [ + 50.5923766053, + 3.25767476267 + ], + "libelle_d_acheminement": "CAMPHIN EN PEVELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25767476267, + 50.5923766053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "715dd6625f112882510d6f87b55a5d07a06fa9a9", + "fields": { + "code_commune_insee": "59129", + "nom_de_la_commune": "CAPPELLE EN PEVELE", + "code_postal": "59242", + "coordonnees_gps": [ + 50.5045434166, + 3.17433068381 + ], + "libelle_d_acheminement": "CAPPELLE EN PEVELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17433068381, + 50.5045434166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99d8d7422ba9b722fc36ec99e703653d2abff942", + "fields": { + "code_commune_insee": "59132", + "nom_de_la_commune": "CARNIERES", + "code_postal": "59217", + "coordonnees_gps": [ + 50.1649512039, + 3.34587128459 + ], + "libelle_d_acheminement": "CARNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34587128459, + 50.1649512039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aa972da559664e834ba9ec6f99f86422d2de327", + "fields": { + "code_commune_insee": "59139", + "nom_de_la_commune": "CAUDRY", + "code_postal": "59540", + "coordonnees_gps": [ + 50.1187185043, + 3.4192394153 + ], + "libelle_d_acheminement": "CAUDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4192394153, + 50.1187185043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edaeb2206de5465ab1acc23e0ffb2e06b6c3e530", + "fields": { + "code_commune_insee": "59144", + "nom_de_la_commune": "CHATEAU L ABBAYE", + "code_postal": "59230", + "coordonnees_gps": [ + 50.4858024683, + 3.47414949128 + ], + "libelle_d_acheminement": "CHATEAU L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47414949128, + 50.4858024683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d803c0da066d49b3ea75ee2b05fa1a6c5207455a", + "fields": { + "code_commune_insee": "59145", + "nom_de_la_commune": "CHEMY", + "code_postal": "59147", + "coordonnees_gps": [ + 50.5317873736, + 2.99537239927 + ], + "libelle_d_acheminement": "CHEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99537239927, + 50.5317873736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ddee5ed195675a75db750a59414c5a0818afde5", + "fields": { + "code_commune_insee": "59147", + "nom_de_la_commune": "CHOISIES", + "code_postal": "59740", + "coordonnees_gps": [ + 50.212677337, + 4.04878255804 + ], + "libelle_d_acheminement": "CHOISIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04878255804, + 50.212677337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "037c4613f3f9e579ba4ecda1d47e64e365cddbc8", + "fields": { + "code_commune_insee": "59155", + "nom_de_la_commune": "COUDEKERQUE BRANCHE", + "code_postal": "59210", + "coordonnees_gps": [ + 51.0179541343, + 2.39580832593 + ], + "libelle_d_acheminement": "COUDEKERQUE BRANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39580832593, + 51.0179541343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20fa6cadf990c6a55da640249daf574e50cc0b19", + "fields": { + "code_commune_insee": "59157", + "nom_de_la_commune": "COUSOLRE", + "code_postal": "59149", + "coordonnees_gps": [ + 50.2372536419, + 4.15308223751 + ], + "libelle_d_acheminement": "COUSOLRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15308223751, + 50.2372536419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d11a616f1caa05a1c20a537d2415c9b98d26cf44", + "fields": { + "code_commune_insee": "59159", + "nom_de_la_commune": "CRAYWICK", + "code_postal": "59279", + "coordonnees_gps": [ + 50.9726285741, + 2.22142508421 + ], + "libelle_d_acheminement": "CRAYWICK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22142508421, + 50.9726285741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "babbba932a0296f7fb27a7fc7bb41e7b4180be2b", + "fields": { + "code_commune_insee": "59165", + "nom_de_la_commune": "CUINCY", + "code_postal": "59553", + "coordonnees_gps": [ + 50.3743818914, + 3.03412629786 + ], + "libelle_d_acheminement": "CUINCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03412629786, + 50.3743818914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "793991d579c28d90d59f358da13b4fc0134d9e7a", + "fields": { + "code_commune_insee": "59172", + "nom_de_la_commune": "DENAIN", + "code_postal": "59220", + "coordonnees_gps": [ + 50.3299660733, + 3.3898623357 + ], + "libelle_d_acheminement": "DENAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3898623357, + 50.3299660733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f4f1dce46eb91a7563576f0946a996810a0464f", + "fields": { + "ligne_5": "FRAIS MARAIS", + "code_commune_insee": "59178", + "libelle_d_acheminement": "DOUAI", + "code_postal": "59500", + "nom_de_la_commune": "DOUAI", + "coordonnees_gps": [ + 50.3823195335, + 3.09145683114 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09145683114, + 50.3823195335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffa5392e6d22835167c5451ce13ce0fecb6e2185", + "fields": { + "code_commune_insee": "59182", + "nom_de_la_commune": "DRINCHAM", + "code_postal": "59630", + "coordonnees_gps": [ + 50.9104379281, + 2.31996661732 + ], + "libelle_d_acheminement": "DRINCHAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31996661732, + 50.9104379281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a115535b6db9779436f94dd56a0d9bcafffddbef", + "fields": { + "ligne_5": "MALO LES BAINS", + "code_commune_insee": "59183", + "libelle_d_acheminement": "DUNKERQUE", + "code_postal": "59240", + "nom_de_la_commune": "DUNKERQUE", + "coordonnees_gps": [ + 51.0307229078, + 2.33752414095 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33752414095, + 51.0307229078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6789e012186f314f4195fe765aedc5ad42584f94", + "fields": { + "code_commune_insee": "59189", + "nom_de_la_commune": "EECKE", + "code_postal": "59114", + "coordonnees_gps": [ + 50.7800648549, + 2.59723080781 + ], + "libelle_d_acheminement": "EECKE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59723080781, + 50.7800648549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d264fbfd4b87bbd889bcabc3fa0d78b47e992624", + "fields": { + "code_commune_insee": "59193", + "nom_de_la_commune": "EMMERIN", + "code_postal": "59320", + "coordonnees_gps": [ + 50.5908761975, + 3.00549490357 + ], + "libelle_d_acheminement": "EMMERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00549490357, + 50.5908761975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07a39de3b21f8044634b363a0331d4dfb971b5e7", + "fields": { + "code_commune_insee": "59196", + "nom_de_la_commune": "ENNETIERES EN WEPPES", + "code_postal": "59320", + "coordonnees_gps": [ + 50.640484704, + 2.93312247961 + ], + "libelle_d_acheminement": "ENNETIERES EN WEPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93312247961, + 50.640484704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a85a79af377231eb53141e246571d6d4adecd842", + "fields": { + "code_commune_insee": "59198", + "nom_de_la_commune": "EPPE SAUVAGE", + "code_postal": "59132", + "coordonnees_gps": [ + 50.1185512931, + 4.16530475504 + ], + "libelle_d_acheminement": "EPPE SAUVAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16530475504, + 50.1185512931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7449e576e54e004cbdc61afc16d5dcb2f091036", + "fields": { + "code_commune_insee": "59206", + "nom_de_la_commune": "ESCAUDOEUVRES", + "code_postal": "59161", + "coordonnees_gps": [ + 50.1924313857, + 3.27406978358 + ], + "libelle_d_acheminement": "ESCAUDOEUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27406978358, + 50.1924313857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5cf1ae40ac7dbaf10fa5509877b37229e3b3c47", + "fields": { + "code_commune_insee": "59216", + "nom_de_la_commune": "ESWARS", + "code_postal": "59161", + "coordonnees_gps": [ + 50.2182439323, + 3.26546336103 + ], + "libelle_d_acheminement": "ESWARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26546336103, + 50.2182439323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "208827c4b597b9ffa50838e509f2b54b46a805bc", + "fields": { + "code_commune_insee": "59220", + "nom_de_la_commune": "FACHES THUMESNIL", + "code_postal": "59155", + "coordonnees_gps": [ + 50.593618421, + 3.07229537426 + ], + "libelle_d_acheminement": "FACHES THUMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07229537426, + 50.593618421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6fe384a66f4d93eeb44c49443efc7893c5b70e0", + "fields": { + "code_commune_insee": "59221", + "nom_de_la_commune": "FAMARS", + "code_postal": "59300", + "coordonnees_gps": [ + 50.3123396289, + 3.52179790977 + ], + "libelle_d_acheminement": "FAMARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52179790977, + 50.3123396289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e8587458a5559723999124a103139865cd3e37c", + "fields": { + "code_commune_insee": "59223", + "nom_de_la_commune": "LE FAVRIL", + "code_postal": "59550", + "coordonnees_gps": [ + 50.0938595271, + 3.71988086994 + ], + "libelle_d_acheminement": "LE FAVRIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71988086994, + 50.0938595271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "346628cb95765a4503de73eff59347e56d54de94", + "fields": { + "code_commune_insee": "59234", + "nom_de_la_commune": "FLERS EN ESCREBIEUX", + "code_postal": "59128", + "coordonnees_gps": [ + 50.401307148, + 3.05136553917 + ], + "libelle_d_acheminement": "FLERS EN ESCREBIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05136553917, + 50.401307148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5118ca40afa0083b1b07f97f56b6652d0b884e32", + "fields": { + "code_commune_insee": "59246", + "nom_de_la_commune": "FOREST EN CAMBRESIS", + "code_postal": "59222", + "coordonnees_gps": [ + 50.1406649942, + 3.57049484282 + ], + "libelle_d_acheminement": "FOREST EN CAMBRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57049484282, + 50.1406649942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e20cc35bea056a7fcf2891ead64b4c4faf16b16d", + "fields": { + "code_commune_insee": "59247", + "nom_de_la_commune": "FOREST SUR MARQUE", + "code_postal": "59510", + "coordonnees_gps": [ + 50.6330739631, + 3.18918578659 + ], + "libelle_d_acheminement": "FOREST SUR MARQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18918578659, + 50.6330739631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e8e08959cd505b41ead31032ff6a2517ed69513", + "fields": { + "code_commune_insee": "59254", + "nom_de_la_commune": "FRESSAIN", + "code_postal": "59234", + "coordonnees_gps": [ + 50.2829594632, + 3.19200167251 + ], + "libelle_d_acheminement": "FRESSAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19200167251, + 50.2829594632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07a90819d3dc4d02bb1e782724c2d6ff34df318a", + "fields": { + "code_commune_insee": "59255", + "nom_de_la_commune": "FRESSIES", + "code_postal": "59268", + "coordonnees_gps": [ + 50.2494910786, + 3.18888373782 + ], + "libelle_d_acheminement": "FRESSIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18888373782, + 50.2494910786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81e59841ccc1db03ac76038b96b1bf29fc3a1fd3", + "fields": { + "code_commune_insee": "59257", + "nom_de_la_commune": "FROMELLES", + "code_postal": "59249", + "coordonnees_gps": [ + 50.6109686203, + 2.85464946616 + ], + "libelle_d_acheminement": "FROMELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85464946616, + 50.6109686203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3765ccf2a4b9e133a81400cadfa5b8295df1c56a", + "fields": { + "code_commune_insee": "59263", + "nom_de_la_commune": "GOEULZIN", + "code_postal": "59169", + "coordonnees_gps": [ + 50.3185089576, + 3.09937496212 + ], + "libelle_d_acheminement": "GOEULZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09937496212, + 50.3185089576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94d347c7de24db9b8e8532156b554f561b42e3ac", + "fields": { + "code_commune_insee": "59269", + "nom_de_la_commune": "GOUZEAUCOURT", + "code_postal": "59231", + "coordonnees_gps": [ + 50.0555182827, + 3.11588275361 + ], + "libelle_d_acheminement": "GOUZEAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11588275361, + 50.0555182827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b444a19e1773646cea91223ab76f85ae1d5249a", + "fields": { + "code_commune_insee": "59272", + "nom_de_la_commune": "GRAND FORT PHILIPPE", + "code_postal": "59153", + "coordonnees_gps": [ + 50.9994095872, + 2.10036684474 + ], + "libelle_d_acheminement": "GRAND FORT PHILIPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10036684474, + 50.9994095872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e566a5f191ff2956fa74444d8ceb684657da3a74", + "fields": { + "code_commune_insee": "59283", + "nom_de_la_commune": "HARGNIES", + "code_postal": "59138", + "coordonnees_gps": [ + 50.2577740991, + 3.84173807004 + ], + "libelle_d_acheminement": "HARGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84173807004, + 50.2577740991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03143bca66099460a9c149ae9be50e9f0bbeae34", + "fields": { + "code_commune_insee": "59287", + "nom_de_la_commune": "HAUCOURT EN CAMBRESIS", + "code_postal": "59191", + "coordonnees_gps": [ + 50.1068286942, + 3.34360726309 + ], + "libelle_d_acheminement": "HAUCOURT EN CAMBRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34360726309, + 50.1068286942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65b69a09e74e2f97c6154e503c47bc1d19b83607", + "fields": { + "code_commune_insee": "59301", + "nom_de_la_commune": "HERGNIES", + "code_postal": "59199", + "coordonnees_gps": [ + 50.4809811628, + 3.53133874107 + ], + "libelle_d_acheminement": "HERGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53133874107, + 50.4809811628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cefaa7a142e46cc6d72a78792ae7a8bc7f0bcac", + "fields": { + "code_commune_insee": "59310", + "nom_de_la_commune": "HON HERGIES", + "code_postal": "59570", + "coordonnees_gps": [ + 50.3348329757, + 3.82037377932 + ], + "libelle_d_acheminement": "HON HERGIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82037377932, + 50.3348329757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d2f3751b9a7f8d490ba75e7c42b9484deeef87b", + "fields": { + "code_commune_insee": "59324", + "nom_de_la_commune": "JEUMONT", + "code_postal": "59460", + "coordonnees_gps": [ + 50.2913767196, + 4.10405698183 + ], + "libelle_d_acheminement": "JEUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10405698183, + 50.2913767196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4174fd151d3307dcbe80340033812d487d6a06d5", + "fields": { + "code_commune_insee": "59332", + "nom_de_la_commune": "LANNOY", + "code_postal": "59390", + "coordonnees_gps": [ + 50.666027423, + 3.21037021622 + ], + "libelle_d_acheminement": "LANNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21037021622, + 50.666027423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d787d60ad64e021440d2df604dd744025c6d998c", + "fields": { + "code_commune_insee": "59334", + "nom_de_la_commune": "LAUWIN PLANQUE", + "code_postal": "59553", + "coordonnees_gps": [ + 50.3929252275, + 3.02930995162 + ], + "libelle_d_acheminement": "LAUWIN PLANQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02930995162, + 50.3929252275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16e80758072e384d6b9f0a8a706d7b9a8955cd35", + "fields": { + "code_commune_insee": "59335", + "nom_de_la_commune": "LECELLES", + "code_postal": "59226", + "coordonnees_gps": [ + 50.474778936, + 3.39878461837 + ], + "libelle_d_acheminement": "LECELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39878461837, + 50.474778936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4978bc136bd0be37ad675f0c65c7b26bba90633f", + "fields": { + "code_commune_insee": "59337", + "nom_de_la_commune": "LEDERZEELE", + "code_postal": "59143", + "coordonnees_gps": [ + 50.8134333231, + 2.29316091241 + ], + "libelle_d_acheminement": "LEDERZEELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29316091241, + 50.8134333231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01268cca9dd8273b94b241bf0bcad790d6184274", + "fields": { + "code_commune_insee": "59338", + "nom_de_la_commune": "LEDRINGHEM", + "code_postal": "59470", + "coordonnees_gps": [ + 50.862026516, + 2.44478876781 + ], + "libelle_d_acheminement": "LEDRINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44478876781, + 50.862026516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "310c4e59cab236372bc4c7ffdc9ab0ca7292a760", + "fields": { + "code_commune_insee": "59339", + "nom_de_la_commune": "LEERS", + "code_postal": "59115", + "coordonnees_gps": [ + 50.6813150077, + 3.23964411032 + ], + "libelle_d_acheminement": "LEERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23964411032, + 50.6813150077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b3f58f6c16da471e45890126422fb7f26455b00", + "fields": { + "code_commune_insee": "83072", + "nom_de_la_commune": "LORGUES", + "code_postal": "83510", + "coordonnees_gps": [ + 43.4814630298, + 6.35892744946 + ], + "libelle_d_acheminement": "LORGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35892744946, + 43.4814630298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27a77c8fccad3faa6afa8fd9755801de3a209f1e", + "fields": { + "code_commune_insee": "59342", + "nom_de_la_commune": "LEZ FONTAINE", + "code_postal": "59740", + "coordonnees_gps": [ + 50.1733832806, + 4.06309065769 + ], + "libelle_d_acheminement": "LEZ FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06309065769, + 50.1733832806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21abd779c8e30f862dc09094fe98705c68282bce", + "fields": { + "code_commune_insee": "83074", + "nom_de_la_commune": "LA MARTRE", + "code_postal": "83840", + "coordonnees_gps": [ + 43.76358635, + 6.59269594698 + ], + "libelle_d_acheminement": "LA MARTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59269594698, + 43.76358635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc987c76bd335e137db9a314a5c6df9badc403a4", + "fields": { + "code_commune_insee": "59343", + "nom_de_la_commune": "LESQUIN", + "code_postal": "59810", + "coordonnees_gps": [ + 50.5892285666, + 3.11191934713 + ], + "libelle_d_acheminement": "LESQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11191934713, + 50.5892285666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c94fd9e117adb0a59cd8d5b658f128ebff59ecb5", + "fields": { + "code_commune_insee": "83081", + "nom_de_la_commune": "MONTAUROUX", + "code_postal": "83440", + "coordonnees_gps": [ + 43.5990101065, + 6.78985995347 + ], + "libelle_d_acheminement": "MONTAUROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78985995347, + 43.5990101065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cb4f43febf050a75fa34eaa4693367fa0b989f0", + "fields": { + "code_commune_insee": "59350", + "nom_de_la_commune": "LILLE", + "code_postal": "59000", + "coordonnees_gps": [ + 50.6317183168, + 3.04783272312 + ], + "libelle_d_acheminement": "LILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04783272312, + 50.6317183168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e71849963fd1d6f139490d864cc17bb51749d91", + "fields": { + "code_commune_insee": "83082", + "nom_de_la_commune": "MONTFERRAT", + "code_postal": "83131", + "coordonnees_gps": [ + 43.6363885978, + 6.47846723467 + ], + "libelle_d_acheminement": "MONTFERRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47846723467, + 43.6363885978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bd3da9d060f5e4ddee0886eaf627a6b384f38f0", + "fields": { + "code_commune_insee": "59350", + "nom_de_la_commune": "LILLE", + "code_postal": "59800", + "coordonnees_gps": [ + 50.6317183168, + 3.04783272312 + ], + "libelle_d_acheminement": "LILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04783272312, + 50.6317183168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "594034a0a866be8debc492bc61b16ada46c34ac0", + "fields": { + "code_commune_insee": "83085", + "nom_de_la_commune": "LA MOTTE", + "code_postal": "83920", + "coordonnees_gps": [ + 43.5078511168, + 6.55055399937 + ], + "libelle_d_acheminement": "LA MOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55055399937, + 43.5078511168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93b59e7c8ec4ba544ea7a1c0b1a6b34ad4695182", + "fields": { + "code_commune_insee": "59365", + "nom_de_la_commune": "LOUVROIL", + "code_postal": "59720", + "coordonnees_gps": [ + 50.2577866904, + 3.95387643411 + ], + "libelle_d_acheminement": "LOUVROIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95387643411, + 50.2577866904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d6443049159ce338a7393ae5c0f5681ae7e9133", + "fields": { + "code_commune_insee": "83100", + "nom_de_la_commune": "PUGET VILLE", + "code_postal": "83390", + "coordonnees_gps": [ + 43.2763475939, + 6.14893054109 + ], + "libelle_d_acheminement": "PUGET VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14893054109, + 43.2763475939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebe97c5b8554c04b75dbc286d27ff473e7d4965a", + "fields": { + "code_commune_insee": "59366", + "nom_de_la_commune": "LYNDE", + "code_postal": "59173", + "coordonnees_gps": [ + 50.7186012441, + 2.43465079994 + ], + "libelle_d_acheminement": "LYNDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43465079994, + 50.7186012441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a4948674e308024625ddcfdb97208302f4e8d3d", + "fields": { + "code_commune_insee": "83103", + "nom_de_la_commune": "LE REVEST LES EAUX", + "code_postal": "83200", + "coordonnees_gps": [ + 43.1824918424, + 5.94565392204 + ], + "libelle_d_acheminement": "LE REVEST LES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94565392204, + 43.1824918424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1616c38bf12f2f352ed22d341c07aa1937c7b8e", + "fields": { + "code_commune_insee": "59394", + "nom_de_la_commune": "MAUROIS", + "code_postal": "59980", + "coordonnees_gps": [ + 50.0727158621, + 3.4590777682 + ], + "libelle_d_acheminement": "MAUROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4590777682, + 50.0727158621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "663d673d25e8bcef027f50c67dd8411120a20325", + "fields": { + "code_commune_insee": "83106", + "nom_de_la_commune": "ROCBARON", + "code_postal": "83136", + "coordonnees_gps": [ + 43.3066686926, + 6.08361658334 + ], + "libelle_d_acheminement": "ROCBARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08361658334, + 43.3066686926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76208fa865f76a47d3f12e8b8ec78e9b47f95f9c", + "fields": { + "code_commune_insee": "59396", + "nom_de_la_commune": "MECQUIGNIES", + "code_postal": "59570", + "coordonnees_gps": [ + 50.2704309321, + 3.80248207777 + ], + "libelle_d_acheminement": "MECQUIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80248207777, + 50.2704309321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df612e30ba59742fd83f547d43618f70c929b7c2", + "fields": { + "code_commune_insee": "83108", + "nom_de_la_commune": "LA ROQUEBRUSSANNE", + "code_postal": "83136", + "coordonnees_gps": [ + 43.3371906607, + 5.9839377705 + ], + "libelle_d_acheminement": "LA ROQUEBRUSSANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9839377705, + 43.3371906607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddbf51e80bdb0e629f338dbac1814d539b58fd0f", + "fields": { + "code_commune_insee": "59398", + "nom_de_la_commune": "MERIGNIES", + "code_postal": "59710", + "coordonnees_gps": [ + 50.5069205161, + 3.12172446457 + ], + "libelle_d_acheminement": "MERIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12172446457, + 50.5069205161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be540144a390732de7ca2350e2c0a4cef466c785", + "fields": { + "ligne_5": "AGAY", + "code_commune_insee": "83118", + "libelle_d_acheminement": "ST RAPHAEL", + "code_postal": "83530", + "nom_de_la_commune": "ST RAPHAEL", + "coordonnees_gps": [ + 43.4574625431, + 6.84734210398 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84734210398, + 43.4574625431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c7ed487dfeba3bf188e8abbbcf484b8b1ab7b99", + "fields": { + "code_commune_insee": "59425", + "nom_de_la_commune": "NEUVILLE EN AVESNOIS", + "code_postal": "59218", + "coordonnees_gps": [ + 50.1995093719, + 3.57904088445 + ], + "libelle_d_acheminement": "NEUVILLE EN AVESNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57904088445, + 50.1995093719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b46426f2f866616ad12ba1c500a551668e3b4b4", + "fields": { + "ligne_5": "ANTHEOR", + "code_commune_insee": "83118", + "libelle_d_acheminement": "ST RAPHAEL", + "code_postal": "83530", + "nom_de_la_commune": "ST RAPHAEL", + "coordonnees_gps": [ + 43.4574625431, + 6.84734210398 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84734210398, + 43.4574625431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faec346063301f0e7ed3f66abef2118015ad606e", + "fields": { + "code_commune_insee": "59432", + "nom_de_la_commune": "NIERGNIES", + "code_postal": "59400", + "coordonnees_gps": [ + 50.1416253963, + 3.25613708021 + ], + "libelle_d_acheminement": "NIERGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25613708021, + 50.1416253963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdbd5b776f2b7e47c56c1b08dafd54db2e98b584", + "fields": { + "ligne_5": "LE TRAYAS", + "code_commune_insee": "83118", + "libelle_d_acheminement": "ST RAPHAEL", + "code_postal": "83530", + "nom_de_la_commune": "ST RAPHAEL", + "coordonnees_gps": [ + 43.4574625431, + 6.84734210398 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84734210398, + 43.4574625431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c92740b8748f783d86b6eabb6d19cd61acff4ae", + "fields": { + "code_commune_insee": "59438", + "nom_de_la_commune": "NOYELLES SUR ESCAUT", + "code_postal": "59159", + "coordonnees_gps": [ + 50.1373086019, + 3.17631469975 + ], + "libelle_d_acheminement": "NOYELLES SUR ESCAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17631469975, + 50.1373086019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0f694f391f2bde163dafb54f9d957d361936614", + "fields": { + "code_commune_insee": "83122", + "nom_de_la_commune": "LES SALLES SUR VERDON", + "code_postal": "83630", + "coordonnees_gps": [ + 43.7670142156, + 6.20652542725 + ], + "libelle_d_acheminement": "LES SALLES SUR VERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20652542725, + 43.7670142156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b702bf18c3b08c78df08c2c429c53501a7d9d414", + "fields": { + "code_commune_insee": "59439", + "nom_de_la_commune": "NOYELLES SUR SAMBRE", + "code_postal": "59550", + "coordonnees_gps": [ + 50.1616211802, + 3.79528710452 + ], + "libelle_d_acheminement": "NOYELLES SUR SAMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79528710452, + 50.1616211802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c50c46827e09323c692b61d8c9397b952f366f3", + "fields": { + "ligne_5": "BROVES", + "code_commune_insee": "83124", + "libelle_d_acheminement": "SEILLANS", + "code_postal": "83440", + "nom_de_la_commune": "SEILLANS", + "coordonnees_gps": [ + 43.6466457482, + 6.61301408536 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61301408536, + 43.6466457482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a13b47a67a6271bcf4a3127e9d8bada998a9f6d5", + "fields": { + "code_commune_insee": "59445", + "nom_de_la_commune": "OHAIN", + "code_postal": "59132", + "coordonnees_gps": [ + 50.0369176402, + 4.12652703676 + ], + "libelle_d_acheminement": "OHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12652703676, + 50.0369176402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae686d34702de966725882b4a20208a1d038ed3d", + "fields": { + "ligne_5": "LES SABLETTES", + "code_commune_insee": "83126", + "libelle_d_acheminement": "LA SEYNE SUR MER", + "code_postal": "83500", + "nom_de_la_commune": "LA SEYNE SUR MER", + "coordonnees_gps": [ + 43.0880294967, + 5.87089841754 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87089841754, + 43.0880294967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "923683d1fcff86659f90db10aab8db295059778a", + "fields": { + "code_commune_insee": "59449", + "nom_de_la_commune": "ORCHIES", + "code_postal": "59310", + "coordonnees_gps": [ + 50.4684491037, + 3.23890685351 + ], + "libelle_d_acheminement": "ORCHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23890685351, + 50.4684491037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b214caa09c4070e4c147d69c1470cbf2bc1123d", + "fields": { + "code_commune_insee": "83132", + "nom_de_la_commune": "SOLLIES VILLE", + "code_postal": "83210", + "coordonnees_gps": [ + 43.1784166306, + 6.01726722545 + ], + "libelle_d_acheminement": "SOLLIES VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01726722545, + 43.1784166306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "313f453c3b6c3a7fec37abbb7481c99e34815e84", + "fields": { + "code_commune_insee": "59455", + "nom_de_la_commune": "PAILLENCOURT", + "code_postal": "59295", + "coordonnees_gps": [ + 50.2487376852, + 3.26355890022 + ], + "libelle_d_acheminement": "PAILLENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26355890022, + 50.2487376852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "320df2a07dfcf5846ce6f15629afdd81d4f9b764", + "fields": { + "code_commune_insee": "83133", + "nom_de_la_commune": "TANNERON", + "code_postal": "83440", + "coordonnees_gps": [ + 43.5748995232, + 6.85671079494 + ], + "libelle_d_acheminement": "TANNERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85671079494, + 43.5748995232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4836255d9213ef0ed888b7a27613bb3b152d4c64", + "fields": { + "code_commune_insee": "59459", + "nom_de_la_commune": "PETITE FORET", + "code_postal": "59494", + "coordonnees_gps": [ + 50.3747760096, + 3.47594179576 + ], + "libelle_d_acheminement": "PETITE FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47594179576, + 50.3747760096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd2c032005ed62220e21c6d05c148cb53a1f4b29", + "fields": { + "code_commune_insee": "83143", + "nom_de_la_commune": "LE VAL", + "code_postal": "83143", + "coordonnees_gps": [ + 43.4452384829, + 6.05179903767 + ], + "libelle_d_acheminement": "LE VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05179903767, + 43.4452384829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a44a1577037ea4f3441b69ef9dec20b00766f128", + "fields": { + "code_commune_insee": "59466", + "nom_de_la_commune": "PONT A MARCQ", + "code_postal": "59710", + "coordonnees_gps": [ + 50.5213224802, + 3.11535964739 + ], + "libelle_d_acheminement": "PONT A MARCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11535964739, + 50.5213224802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c909cbc0cc0bd00ca83c5dcac3c596f04f48b83", + "fields": { + "code_commune_insee": "83144", + "nom_de_la_commune": "LA VALETTE DU VAR", + "code_postal": "83160", + "coordonnees_gps": [ + 43.1499152044, + 5.99222538877 + ], + "libelle_d_acheminement": "LA VALETTE DU VAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99222538877, + 43.1499152044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11d0dc346988cd4c0b6aa528dd9b69e0a66ecd3e", + "fields": { + "code_commune_insee": "59471", + "nom_de_la_commune": "PRESEAU", + "code_postal": "59990", + "coordonnees_gps": [ + 50.311072595, + 3.57351530616 + ], + "libelle_d_acheminement": "PRESEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57351530616, + 50.311072595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e1293b69b380abf7c6a1503de1dd2c8f0d1c7da", + "fields": { + "code_commune_insee": "83149", + "nom_de_la_commune": "VILLECROZE", + "code_postal": "83690", + "coordonnees_gps": [ + 43.564445349, + 6.28543419016 + ], + "libelle_d_acheminement": "VILLECROZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28543419016, + 43.564445349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c701fd72277cb97f88ab640bfd6d3970674d533b", + "fields": { + "code_commune_insee": "59476", + "nom_de_la_commune": "PROVILLE", + "code_postal": "59267", + "coordonnees_gps": [ + 50.15582108, + 3.20370328154 + ], + "libelle_d_acheminement": "PROVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20370328154, + 50.15582108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cf5917981df80194ea500053ad945e49b00a8d1", + "fields": { + "code_commune_insee": "84002", + "nom_de_la_commune": "ANSOUIS", + "code_postal": "84240", + "coordonnees_gps": [ + 43.7365172868, + 5.47136689464 + ], + "libelle_d_acheminement": "ANSOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47136689464, + 43.7365172868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "307c421e9a5e238b1857ff236277508e63e3a7f5", + "fields": { + "code_commune_insee": "59492", + "nom_de_la_commune": "RAMILLIES", + "code_postal": "59161", + "coordonnees_gps": [ + 50.2072582763, + 3.24940380157 + ], + "libelle_d_acheminement": "RAMILLIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24940380157, + 50.2072582763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba2248e978142de4b2d689509ae89e44cb7d2011", + "fields": { + "code_commune_insee": "84008", + "nom_de_la_commune": "LE BARROUX", + "code_postal": "84330", + "coordonnees_gps": [ + 44.1547724058, + 5.09918948911 + ], + "libelle_d_acheminement": "LE BARROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09918948911, + 44.1547724058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa0eff5f633b0d8191c3422ae5335d09c1b3b890", + "fields": { + "code_commune_insee": "59496", + "nom_de_la_commune": "REJET DE BEAULIEU", + "code_postal": "59360", + "coordonnees_gps": [ + 50.0452957797, + 3.63508660272 + ], + "libelle_d_acheminement": "REJET DE BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63508660272, + 50.0452957797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b67d2f9a4127739ba6caa3b4ddcf518b1babbfb", + "fields": { + "code_commune_insee": "84017", + "nom_de_la_commune": "BEDOIN", + "code_postal": "84410", + "coordonnees_gps": [ + 44.1374624096, + 5.23446005284 + ], + "libelle_d_acheminement": "BEDOIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23446005284, + 44.1374624096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "357f8a84973d05b0cfdcadaadf2eae6fda37f834", + "fields": { + "code_commune_insee": "59499", + "nom_de_la_commune": "REXPOEDE", + "code_postal": "59122", + "coordonnees_gps": [ + 50.9353119359, + 2.54496726178 + ], + "libelle_d_acheminement": "REXPOEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54496726178, + 50.9353119359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af0b376084ede394efcad508a26c7fbea754e908", + "fields": { + "code_commune_insee": "84019", + "nom_de_la_commune": "BOLLENE", + "code_postal": "84500", + "coordonnees_gps": [ + 44.2882016409, + 4.75235956257 + ], + "libelle_d_acheminement": "BOLLENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75235956257, + 44.2882016409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e189d4d857f9076b463d090eed7ede92fc1515e9", + "fields": { + "code_commune_insee": "59500", + "nom_de_la_commune": "RIBECOURT LA TOUR", + "code_postal": "59159", + "coordonnees_gps": [ + 50.1039235945, + 3.13170162173 + ], + "libelle_d_acheminement": "RIBECOURT LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13170162173, + 50.1039235945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79bc0e2f23ce9945058e2d29d71275fd8be1fe33", + "fields": { + "code_commune_insee": "84023", + "nom_de_la_commune": "BUOUX", + "code_postal": "84480", + "coordonnees_gps": [ + 43.8218210603, + 5.37501768295 + ], + "libelle_d_acheminement": "BUOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37501768295, + 43.8218210603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5847dbcc5df7400df684340665a83d7dcc14c13", + "fields": { + "code_commune_insee": "59501", + "nom_de_la_commune": "RIEULAY", + "code_postal": "59870", + "coordonnees_gps": [ + 50.3871460601, + 3.2654482403 + ], + "libelle_d_acheminement": "RIEULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2654482403, + 50.3871460601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06dc34615661fda21ba5776158acb9571ff6944a", + "fields": { + "code_commune_insee": "84041", + "nom_de_la_commune": "CRILLON LE BRAVE", + "code_postal": "84410", + "coordonnees_gps": [ + 44.1180400609, + 5.15095331396 + ], + "libelle_d_acheminement": "CRILLON LE BRAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15095331396, + 44.1180400609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c592256d17587a278000c4fb8ac36eafcf32b45", + "fields": { + "code_commune_insee": "59504", + "nom_de_la_commune": "ROEULX", + "code_postal": "59172", + "coordonnees_gps": [ + 50.3127229733, + 3.32813430468 + ], + "libelle_d_acheminement": "ROEULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32813430468, + 50.3127229733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c45a9a2b5d60f6f2ef8a74266d624789ffe8040", + "fields": { + "code_commune_insee": "84050", + "nom_de_la_commune": "GORDES", + "code_postal": "84220", + "coordonnees_gps": [ + 43.909019241, + 5.19801978618 + ], + "libelle_d_acheminement": "GORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19801978618, + 43.909019241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21e998f50834790f400894a7d5fa729f5d2b0f3e", + "fields": { + "code_commune_insee": "59507", + "nom_de_la_commune": "RONCHIN", + "code_postal": "59790", + "coordonnees_gps": [ + 50.6044738955, + 3.09168585537 + ], + "libelle_d_acheminement": "RONCHIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09168585537, + 50.6044738955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32186a4dbf5437df9cf63e745e49518193fb6313", + "fields": { + "code_commune_insee": "84051", + "nom_de_la_commune": "GOULT", + "code_postal": "84220", + "coordonnees_gps": [ + 43.8672520591, + 5.24782759369 + ], + "libelle_d_acheminement": "GOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24782759369, + 43.8672520591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a081e11f33ace6e8e939f224006869fd0faf3c5f", + "fields": { + "code_commune_insee": "59526", + "nom_de_la_commune": "ST AMAND LES EAUX", + "code_postal": "59230", + "coordonnees_gps": [ + 50.4401000981, + 3.44460708029 + ], + "libelle_d_acheminement": "ST AMAND LES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44460708029, + 50.4401000981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ecd5f0013f0be53b7392dfe5ae87f31c7e05bac", + "fields": { + "code_commune_insee": "84053", + "nom_de_la_commune": "GRILLON", + "code_postal": "84600", + "coordonnees_gps": [ + 44.3945766896, + 4.93414256152 + ], + "libelle_d_acheminement": "GRILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93414256152, + 44.3945766896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a21357287364f5dde55c779f8794e413ad43936", + "fields": { + "code_commune_insee": "59528", + "nom_de_la_commune": "ST AUBERT", + "code_postal": "59188", + "coordonnees_gps": [ + 50.2076147877, + 3.41741294384 + ], + "libelle_d_acheminement": "ST AUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41741294384, + 50.2076147877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0eef82e25db856fd3ecb1874857176759bbe24b", + "fields": { + "code_commune_insee": "84054", + "nom_de_la_commune": "L ISLE SUR LA SORGUE", + "code_postal": "84800", + "coordonnees_gps": [ + 43.913397592, + 5.05664277545 + ], + "libelle_d_acheminement": "L ISLE SUR LA SORGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05664277545, + 43.913397592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70c5bd433a716c8b3e9d59274baf3cc8f5b875b1", + "fields": { + "code_commune_insee": "59530", + "nom_de_la_commune": "ST AYBERT", + "code_postal": "59163", + "coordonnees_gps": [ + 50.4513178883, + 3.64979329449 + ], + "libelle_d_acheminement": "ST AYBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64979329449, + 50.4513178883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f7c26f2205340121960bc9a4eef1b5070626191", + "fields": { + "code_commune_insee": "84056", + "nom_de_la_commune": "JONQUIERES", + "code_postal": "84150", + "coordonnees_gps": [ + 44.1318029558, + 4.91341542999 + ], + "libelle_d_acheminement": "JONQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91341542999, + 44.1318029558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71dd0cc752922ba43fd83b7ba290856d621447dd", + "fields": { + "code_commune_insee": "59532", + "nom_de_la_commune": "ST GEORGES SUR L AA", + "code_postal": "59820", + "coordonnees_gps": [ + 50.967052608, + 2.15668818231 + ], + "libelle_d_acheminement": "ST GEORGES SUR L AA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15668818231, + 50.967052608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2e725056d7054d965f3b1880dfce5e0f12300b5", + "fields": { + "code_commune_insee": "84065", + "nom_de_la_commune": "LAURIS", + "code_postal": "84360", + "coordonnees_gps": [ + 43.7630365491, + 5.30333693211 + ], + "libelle_d_acheminement": "LAURIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30333693211, + 43.7630365491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6b649e21fe6ae9a55259d66bfb4b37e202cec2b", + "fields": { + "code_commune_insee": "59533", + "nom_de_la_commune": "ST HILAIRE LEZ CAMBRAI", + "code_postal": "59292", + "coordonnees_gps": [ + 50.1812812123, + 3.4168912736 + ], + "libelle_d_acheminement": "ST HILAIRE LEZ CAMBRAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4168912736, + 50.1812812123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2597111576ccc70842879600586aeb56053cd9a2", + "fields": { + "code_commune_insee": "84071", + "nom_de_la_commune": "MAUBEC", + "code_postal": "84660", + "coordonnees_gps": [ + 43.8417800592, + 5.13767903423 + ], + "libelle_d_acheminement": "MAUBEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13767903423, + 43.8417800592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0687fbd8ecaa0afe2a2782dc459bb5a251e0d00c", + "fields": { + "code_commune_insee": "59534", + "nom_de_la_commune": "ST HILAIRE SUR HELPE", + "code_postal": "59440", + "coordonnees_gps": [ + 50.1366870157, + 3.90004713488 + ], + "libelle_d_acheminement": "ST HILAIRE SUR HELPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90004713488, + 50.1366870157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88dee97b8d12906a5b52a6ad16eb52acb826b62b", + "fields": { + "code_commune_insee": "84072", + "nom_de_la_commune": "MAZAN", + "code_postal": "84380", + "coordonnees_gps": [ + 44.0545320098, + 5.13048600927 + ], + "libelle_d_acheminement": "MAZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13048600927, + 44.0545320098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1bc5e704363d832b24da8f300fb0e45c0ec6b4e", + "fields": { + "code_commune_insee": "84079", + "nom_de_la_commune": "MONIEUX", + "code_postal": "84390", + "coordonnees_gps": [ + 44.0568668171, + 5.34149223081 + ], + "libelle_d_acheminement": "MONIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34149223081, + 44.0568668171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3eeae76ac74dd535fccad2caa6e074a81cc02ca", + "fields": { + "code_commune_insee": "84081", + "nom_de_la_commune": "MORIERES LES AVIGNON", + "code_postal": "84310", + "coordonnees_gps": [ + 43.9337788848, + 4.90875878315 + ], + "libelle_d_acheminement": "MORIERES LES AVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90875878315, + 43.9337788848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c46025f0c27658420cef2b8d07e89a8982e40644", + "fields": { + "code_commune_insee": "84083", + "nom_de_la_commune": "MORNAS", + "code_postal": "84550", + "coordonnees_gps": [ + 44.2037476388, + 4.74014549297 + ], + "libelle_d_acheminement": "MORNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74014549297, + 44.2037476388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b08418592331a92cb668c1fc94f424b3888e391f", + "fields": { + "code_commune_insee": "84094", + "nom_de_la_commune": "PUYMERAS", + "code_postal": "84110", + "coordonnees_gps": [ + 44.2849517081, + 5.13590933781 + ], + "libelle_d_acheminement": "PUYMERAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13590933781, + 44.2849517081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff951b485e9efcdb691a10ee62b0bc1c1c71498e", + "fields": { + "code_commune_insee": "84100", + "nom_de_la_commune": "LA ROQUE ALRIC", + "code_postal": "84190", + "coordonnees_gps": [ + 44.1448441393, + 5.06883398959 + ], + "libelle_d_acheminement": "LA ROQUE ALRIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06883398959, + 44.1448441393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94213a99268b649c0e12c61d44bfa72c3c6322d5", + "fields": { + "code_commune_insee": "84103", + "nom_de_la_commune": "RUSTREL", + "code_postal": "84400", + "coordonnees_gps": [ + 43.9299576961, + 5.47580805616 + ], + "libelle_d_acheminement": "RUSTREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47580805616, + 43.9299576961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3930fa17c10f799f048e80f471a361de572e55b", + "fields": { + "code_commune_insee": "84105", + "nom_de_la_commune": "SAIGNON", + "code_postal": "84400", + "coordonnees_gps": [ + 43.8604088316, + 5.43831613647 + ], + "libelle_d_acheminement": "SAIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43831613647, + 43.8604088316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faec05676aa0868670f9ba5ba621464fb792d8fd", + "fields": { + "code_commune_insee": "84108", + "nom_de_la_commune": "ST DIDIER", + "code_postal": "84210", + "coordonnees_gps": [ + 44.0092549793, + 5.10865247521 + ], + "libelle_d_acheminement": "ST DIDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10865247521, + 44.0092549793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "335b7cd71797878c2984ee4f7bee1f7f56a0c6b1", + "fields": { + "code_commune_insee": "84110", + "nom_de_la_commune": "ST LEGER DU VENTOUX", + "code_postal": "84390", + "coordonnees_gps": [ + 44.2059476763, + 5.27072625011 + ], + "libelle_d_acheminement": "ST LEGER DU VENTOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27072625011, + 44.2059476763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69a2db95d48d9872cc67e1751fc07162b7a5a1d8", + "fields": { + "code_commune_insee": "84123", + "nom_de_la_commune": "SAULT", + "code_postal": "84390", + "coordonnees_gps": [ + 44.0729876027, + 5.39889956617 + ], + "libelle_d_acheminement": "SAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39889956617, + 44.0729876027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ca3037551b26ad95a48da59976e221c6540357b", + "fields": { + "code_commune_insee": "84129", + "nom_de_la_commune": "SORGUES", + "code_postal": "84700", + "coordonnees_gps": [ + 44.0145763951, + 4.86740515419 + ], + "libelle_d_acheminement": "SORGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86740515419, + 44.0145763951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b17bd7c2b4748a501c7b7595a64ea711e56997e9", + "fields": { + "code_commune_insee": "84144", + "nom_de_la_commune": "VIENS", + "code_postal": "84750", + "coordonnees_gps": [ + 43.9031226397, + 5.5602158314 + ], + "libelle_d_acheminement": "VIENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5602158314, + 43.9031226397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95ac09c6ef0b8198e366c5227cecbaab85cffd38", + "fields": { + "code_commune_insee": "85005", + "nom_de_la_commune": "ANTIGNY", + "code_postal": "85120", + "coordonnees_gps": [ + 46.6191770822, + -0.767030058653 + ], + "libelle_d_acheminement": "ANTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.767030058653, + 46.6191770822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32198286365433623205d16711353d0fbc21bd7f", + "fields": { + "ligne_5": "LES CLOUZEAUX", + "code_commune_insee": "85008", + "libelle_d_acheminement": "AUBIGNY LES CLOUZEAUX", + "code_postal": "85430", + "nom_de_la_commune": "AUBIGNY LES CLOUZEAUX", + "coordonnees_gps": [ + 46.6028241769, + -1.46743549114 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46743549114, + 46.6028241769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17bd520deea59a20171f9be706e02d657ce2cf66", + "fields": { + "ligne_5": "AUZAY", + "code_commune_insee": "85009", + "libelle_d_acheminement": "AUCHAY SUR VENDEE", + "code_postal": "85200", + "nom_de_la_commune": "AUCHAY SUR VENDEE", + "coordonnees_gps": [ + 46.4474386161, + -0.876574265149 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.876574265149, + 46.4474386161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c2610700f2ed331832b8ffddb9d98dd32327ab5", + "fields": { + "ligne_5": "BELLEVILLE SUR VIE", + "code_commune_insee": "85019", + "libelle_d_acheminement": "BELLEVIGNY", + "code_postal": "85170", + "nom_de_la_commune": "BELLEVIGNY", + "coordonnees_gps": [ + 46.7756383534, + -1.43313700054 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43313700054, + 46.7756383534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "311b591010798cfa66133a3e05a513d26d547c7b", + "fields": { + "code_commune_insee": "85023", + "nom_de_la_commune": "BESSAY", + "code_postal": "85320", + "coordonnees_gps": [ + 46.5397253861, + -1.17028433093 + ], + "libelle_d_acheminement": "BESSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17028433093, + 46.5397253861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f6aab168947696b6922b9e40e3e3b3353aa62cb", + "fields": { + "code_commune_insee": "85035", + "nom_de_la_commune": "BRETIGNOLLES SUR MER", + "code_postal": "85470", + "coordonnees_gps": [ + 46.6374826705, + -1.86324200464 + ], + "libelle_d_acheminement": "BRETIGNOLLES SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86324200464, + 46.6374826705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7270f3cdd3df626e87cf216311ebab2a45d1d096", + "fields": { + "code_commune_insee": "85036", + "nom_de_la_commune": "LA BRETONNIERE LA CLAYE", + "code_postal": "85320", + "coordonnees_gps": [ + 46.4879459421, + -1.26773426545 + ], + "libelle_d_acheminement": "LA BRETONNIERE LA CLAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26773426545, + 46.4879459421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d5f4ed1986f0a2a94fe81c4052df0f7ef37583e", + "fields": { + "code_commune_insee": "85045", + "nom_de_la_commune": "LA CHAIZE GIRAUD", + "code_postal": "85220", + "coordonnees_gps": [ + 46.6476375058, + -1.81865076161 + ], + "libelle_d_acheminement": "LA CHAIZE GIRAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.81865076161, + 46.6476375058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f01a5909c64a1f3ccf7565d661a29adba35bc84", + "fields": { + "code_commune_insee": "85046", + "nom_de_la_commune": "LA CHAIZE LE VICOMTE", + "code_postal": "85310", + "coordonnees_gps": [ + 46.6729533879, + -1.29188591019 + ], + "libelle_d_acheminement": "LA CHAIZE LE VICOMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29188591019, + 46.6729533879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85f1767dad7342042b9c789e9768fb1206c6fe1e", + "fields": { + "code_commune_insee": "85047", + "nom_de_la_commune": "CHALLANS", + "code_postal": "85300", + "coordonnees_gps": [ + 46.8354416653, + -1.84036683139 + ], + "libelle_d_acheminement": "CHALLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84036683139, + 46.8354416653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42e013e89f2790a164a2430fc09f93e9dcfa8e06", + "fields": { + "code_commune_insee": "85076", + "nom_de_la_commune": "CUGAND", + "code_postal": "85610", + "coordonnees_gps": [ + 47.0602388146, + -1.25289811103 + ], + "libelle_d_acheminement": "CUGAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25289811103, + 47.0602388146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f216e96f5be949f7d0bfe9e52055af6c7f03739", + "fields": { + "code_commune_insee": "85092", + "nom_de_la_commune": "FONTENAY LE COMTE", + "code_postal": "85200", + "coordonnees_gps": [ + 46.4563186117, + -0.793449510859 + ], + "libelle_d_acheminement": "FONTENAY LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.793449510859, + 46.4563186117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9857b886ae7789277b120695416035edd6737f01", + "fields": { + "code_commune_insee": "85093", + "nom_de_la_commune": "FOUGERE", + "code_postal": "85480", + "coordonnees_gps": [ + 46.6617881911, + -1.23612691916 + ], + "libelle_d_acheminement": "FOUGERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23612691916, + 46.6617881911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1acb34cef005e7dc8e097dffc2139ee5454509a8", + "fields": { + "code_commune_insee": "85095", + "nom_de_la_commune": "FROIDFOND", + "code_postal": "85300", + "coordonnees_gps": [ + 46.8789464367, + -1.75511438567 + ], + "libelle_d_acheminement": "FROIDFOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75511438567, + 46.8789464367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fa90e2b2ddde68b0aefc12b1768007f3fe0c283", + "fields": { + "code_commune_insee": "85110", + "nom_de_la_commune": "L HERMENAULT", + "code_postal": "85570", + "coordonnees_gps": [ + 46.5156262822, + -0.898430664265 + ], + "libelle_d_acheminement": "L HERMENAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.898430664265, + 46.5156262822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f25a2e4bea0be1908489bbdaa57360906232bd2", + "fields": { + "code_commune_insee": "85115", + "nom_de_la_commune": "LA JAUDONNIERE", + "code_postal": "85110", + "coordonnees_gps": [ + 46.6488761831, + -0.962477574588 + ], + "libelle_d_acheminement": "LA JAUDONNIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.962477574588, + 46.6488761831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1799b79ce57c3ca775790d18818f22bc28944972", + "fields": { + "code_commune_insee": "85120", + "nom_de_la_commune": "LANDEVIEILLE", + "code_postal": "85220", + "coordonnees_gps": [ + 46.6444349925, + -1.7854367847 + ], + "libelle_d_acheminement": "LANDEVIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.7854367847, + 46.6444349925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd920b63d0d64b9238561f987586747cdcdd5485", + "fields": { + "code_commune_insee": "85123", + "nom_de_la_commune": "LIEZ", + "code_postal": "85420", + "coordonnees_gps": [ + 46.3698532376, + -0.70502476758 + ], + "libelle_d_acheminement": "LIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.70502476758, + 46.3698532376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a30f8ffe89ea8e000b1de755f3d7e4ef1bed91c6", + "fields": { + "code_commune_insee": "85138", + "nom_de_la_commune": "MARTINET", + "code_postal": "85150", + "coordonnees_gps": [ + 46.6620680463, + -1.6772013304 + ], + "libelle_d_acheminement": "MARTINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6772013304, + 46.6620680463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c6f9093d5cbb0d3983ff7f5be1892607bf66786", + "fields": { + "code_commune_insee": "85142", + "nom_de_la_commune": "LA MERLATIERE", + "code_postal": "85140", + "coordonnees_gps": [ + 46.7557703112, + -1.29794577 + ], + "libelle_d_acheminement": "LA MERLATIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29794577, + 46.7557703112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bf3b80ca523804a146ecf42a5cbdca23c26e3af", + "fields": { + "code_commune_insee": "85143", + "nom_de_la_commune": "MERVENT", + "code_postal": "85200", + "coordonnees_gps": [ + 46.5325327351, + -0.748519927998 + ], + "libelle_d_acheminement": "MERVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.748519927998, + 46.5325327351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3bc667587a9e15aa5a22e686d19036ffe2eddb0", + "fields": { + "ligne_5": "BOUFFERE", + "code_commune_insee": "85146", + "libelle_d_acheminement": "MONTAIGU VENDEE", + "code_postal": "85600", + "nom_de_la_commune": "MONTAIGU VENDEE", + "coordonnees_gps": [ + 46.9759800852, + -1.31364530268 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31364530268, + 46.9759800852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59d390e9fc5dc0f7ecd607d5f45e253c4434c0b1", + "fields": { + "code_commune_insee": "85156", + "nom_de_la_commune": "MOUTIERS LES MAUXFAITS", + "code_postal": "85540", + "coordonnees_gps": [ + 46.489279204, + -1.43622387207 + ], + "libelle_d_acheminement": "MOUTIERS LES MAUXFAITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43622387207, + 46.489279204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d54fc273558059dd89b6e9a90b9460515303946", + "fields": { + "code_commune_insee": "85158", + "nom_de_la_commune": "MOUZEUIL ST MARTIN", + "code_postal": "85370", + "coordonnees_gps": [ + 46.4591118412, + -0.984449849889 + ], + "libelle_d_acheminement": "MOUZEUIL ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.984449849889, + 46.4591118412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0796b31e3cdc59de6dc0e580cea792d223b428c", + "fields": { + "code_commune_insee": "85159", + "nom_de_la_commune": "NALLIERS", + "code_postal": "85370", + "coordonnees_gps": [ + 46.4658962703, + -1.03958611312 + ], + "libelle_d_acheminement": "NALLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03958611312, + 46.4658962703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae7c8472602f1014628735a92c83b13e891d3987", + "fields": { + "code_commune_insee": "85161", + "nom_de_la_commune": "NIEUL LE DOLENT", + "code_postal": "85430", + "coordonnees_gps": [ + 46.5676509922, + -1.51560194548 + ], + "libelle_d_acheminement": "NIEUL LE DOLENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51560194548, + 46.5676509922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1fb7e2ed0603854a695a29ae5203a2c8100e2a1", + "fields": { + "code_commune_insee": "85174", + "nom_de_la_commune": "PETOSSE", + "code_postal": "85570", + "coordonnees_gps": [ + 46.4796848965, + -0.911734176662 + ], + "libelle_d_acheminement": "PETOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.911734176662, + 46.4796848965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf0037f0575c84a0f891e9fef4d0d3ca6f4a9ba4", + "fields": { + "code_commune_insee": "85178", + "nom_de_la_commune": "LE POIRE SUR VIE", + "code_postal": "85170", + "coordonnees_gps": [ + 46.769919754, + -1.50488626452 + ], + "libelle_d_acheminement": "LE POIRE SUR VIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50488626452, + 46.769919754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8b57416dd0d4fe29a9a964d64f498ae2214fd2d", + "fields": { + "code_commune_insee": "85179", + "nom_de_la_commune": "POIROUX", + "code_postal": "85440", + "coordonnees_gps": [ + 46.5107890457, + -1.53929317556 + ], + "libelle_d_acheminement": "POIROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53929317556, + 46.5107890457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "136c6e885a9a8588fcdf45848138a4f864a625e8", + "fields": { + "code_commune_insee": "85188", + "nom_de_la_commune": "LA REORTHE", + "code_postal": "85210", + "coordonnees_gps": [ + 46.6113748938, + -1.04881036553 + ], + "libelle_d_acheminement": "LA REORTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04881036553, + 46.6113748938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7c5ab150958d46d7054580d5234c7960ad6b759", + "fields": { + "code_commune_insee": "85189", + "nom_de_la_commune": "NOTRE DAME DE RIEZ", + "code_postal": "85270", + "coordonnees_gps": [ + 46.7532179022, + -1.8935292542 + ], + "libelle_d_acheminement": "NOTRE DAME DE RIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8935292542, + 46.7532179022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c983a7f6a949bc930231af88323d6e21d1cccde", + "fields": { + "code_commune_insee": "85191", + "nom_de_la_commune": "LA ROCHE SUR YON", + "code_postal": "85000", + "coordonnees_gps": [ + 46.6675261644, + -1.4077954093 + ], + "libelle_d_acheminement": "LA ROCHE SUR YON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4077954093, + 46.6675261644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a87303738240492e4882dda4ae399c8d193f840f", + "fields": { + "code_commune_insee": "85196", + "nom_de_la_commune": "ST ANDRE GOULE D OIE", + "code_postal": "85250", + "coordonnees_gps": [ + 46.8410224478, + -1.19644211396 + ], + "libelle_d_acheminement": "ST ANDRE GOULE D OIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19644211396, + 46.8410224478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae1d4f75c43516b06155fdb5875ac1d684dc75b3", + "fields": { + "code_commune_insee": "85199", + "nom_de_la_commune": "ST AUBIN LA PLAINE", + "code_postal": "85210", + "coordonnees_gps": [ + 46.5040293195, + -1.06506577005 + ], + "libelle_d_acheminement": "ST AUBIN LA PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06506577005, + 46.5040293195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a495a679008e04b2d592b0e04cb08d1f51e5f162", + "fields": { + "ligne_5": "CHAILLE SOUS LES ORMEAUX", + "code_commune_insee": "85213", + "libelle_d_acheminement": "RIVES DE L YON", + "code_postal": "85310", + "nom_de_la_commune": "RIVES DE L YON", + "coordonnees_gps": [ + 46.605637391, + -1.3354497172 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3354497172, + 46.605637391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e81f16f71e130853bafd590e9b05dca40a51f65", + "fields": { + "code_commune_insee": "85216", + "nom_de_la_commune": "STE GEMME LA PLAINE", + "code_postal": "85400", + "coordonnees_gps": [ + 46.4732196212, + -1.11103084694 + ], + "libelle_d_acheminement": "STE GEMME LA PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11103084694, + 46.4732196212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d13eae7e00809aea2d48154ef95bca9fd3b862a2", + "fields": { + "code_commune_insee": "85220", + "nom_de_la_commune": "ST GERMAIN DE PRINCAY", + "code_postal": "85110", + "coordonnees_gps": [ + 46.7356314659, + -1.04299885081 + ], + "libelle_d_acheminement": "ST GERMAIN DE PRINCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04299885081, + 46.7356314659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6535eec9f1e8fb6df46d5721eee18b944d17bbbe", + "fields": { + "code_commune_insee": "85222", + "nom_de_la_commune": "ST GILLES CROIX DE VIE", + "code_postal": "85800", + "coordonnees_gps": [ + 46.6904708814, + -1.91946363327 + ], + "libelle_d_acheminement": "ST GILLES CROIX DE VIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.91946363327, + 46.6904708814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9cb7d153658edef75911172f3345105903c649e", + "fields": { + "code_commune_insee": "85227", + "nom_de_la_commune": "ST HILAIRE DES LOGES", + "code_postal": "85240", + "coordonnees_gps": [ + 46.4747117878, + -0.650611151998 + ], + "libelle_d_acheminement": "ST HILAIRE DES LOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.650611151998, + 46.4747117878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "678e6fe716bf09b924501ce093549a6cf05e693f", + "fields": { + "code_commune_insee": "85235", + "nom_de_la_commune": "ST JUIRE CHAMPGILLON", + "code_postal": "85210", + "coordonnees_gps": [ + 46.5882648491, + -1.00959676911 + ], + "libelle_d_acheminement": "ST JUIRE CHAMPGILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00959676911, + 46.5882648491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16c55c12715fee1e8d65208ab7a1bc9496eea41f", + "fields": { + "code_commune_insee": "59543", + "nom_de_la_commune": "ST REMY DU NORD", + "code_postal": "59330", + "coordonnees_gps": [ + 50.2280842932, + 3.90173812805 + ], + "libelle_d_acheminement": "ST REMY DU NORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90173812805, + 50.2280842932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "316a3615b7ff409d3b040908069b813563edc309", + "fields": { + "code_commune_insee": "59545", + "nom_de_la_commune": "ST SOUPLET", + "code_postal": "59360", + "coordonnees_gps": [ + 50.0531218076, + 3.51585525327 + ], + "libelle_d_acheminement": "ST SOUPLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51585525327, + 50.0531218076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e180172d8ddeab779d256554e8c2ae6aab396084", + "fields": { + "code_commune_insee": "59550", + "nom_de_la_commune": "SALOME", + "code_postal": "59496", + "coordonnees_gps": [ + 50.5358395709, + 2.83692247297 + ], + "libelle_d_acheminement": "SALOME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83692247297, + 50.5358395709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1784da82ac0ec4320368164993780a7b6ff9125", + "fields": { + "code_commune_insee": "59551", + "nom_de_la_commune": "SAMEON", + "code_postal": "59310", + "coordonnees_gps": [ + 50.4772545596, + 3.33248163784 + ], + "libelle_d_acheminement": "SAMEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33248163784, + 50.4772545596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "913e9206ede6f16aa132ae2f3bbaf37995530953", + "fields": { + "code_commune_insee": "59553", + "nom_de_la_commune": "SANTES", + "code_postal": "59211", + "coordonnees_gps": [ + 50.5909879066, + 2.96114421951 + ], + "libelle_d_acheminement": "SANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96114421951, + 50.5909879066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "717f9c32539dbe24aead7dbcfd9e62cad8ddd1b6", + "fields": { + "code_commune_insee": "59564", + "nom_de_la_commune": "LA SENTINELLE", + "code_postal": "59174", + "coordonnees_gps": [ + 50.3486299909, + 3.47455507349 + ], + "libelle_d_acheminement": "LA SENTINELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47455507349, + 50.3486299909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7de3384d7343981ad1cbb457b658c3fcea76c2a4", + "fields": { + "code_commune_insee": "59568", + "nom_de_la_commune": "SERCUS", + "code_postal": "59173", + "coordonnees_gps": [ + 50.7083527622, + 2.45193657383 + ], + "libelle_d_acheminement": "SERCUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45193657383, + 50.7083527622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daeccd99e22baa0952e1f82668d07348362048ab", + "fields": { + "code_commune_insee": "59569", + "nom_de_la_commune": "SIN LE NOBLE", + "code_postal": "59450", + "coordonnees_gps": [ + 50.3677512577, + 3.12071297192 + ], + "libelle_d_acheminement": "SIN LE NOBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12071297192, + 50.3677512577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aed3044df9e97ae61f4ac5084b19fd6ee2c91fd4", + "fields": { + "code_commune_insee": "59570", + "nom_de_la_commune": "SOCX", + "code_postal": "59380", + "coordonnees_gps": [ + 50.9358655303, + 2.42417743396 + ], + "libelle_d_acheminement": "SOCX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42417743396, + 50.9358655303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "230ba274d393064d09b155c4f75c70a6af82f9ad", + "fields": { + "code_commune_insee": "59578", + "nom_de_la_commune": "STEENBECQUE", + "code_postal": "59189", + "coordonnees_gps": [ + 50.6774388783, + 2.48812239192 + ], + "libelle_d_acheminement": "STEENBECQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48812239192, + 50.6774388783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d40800ba1593cddc45792039c2ead660fc8c8344", + "fields": { + "code_commune_insee": "59580", + "nom_de_la_commune": "STEENVOORDE", + "code_postal": "59114", + "coordonnees_gps": [ + 50.8214340622, + 2.58556642469 + ], + "libelle_d_acheminement": "STEENVOORDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58556642469, + 50.8214340622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd6fae955adda8452fa11b38299b0cc725ec9dc5", + "fields": { + "code_commune_insee": "59581", + "nom_de_la_commune": "STEENWERCK", + "code_postal": "59181", + "coordonnees_gps": [ + 50.6864176007, + 2.76933714516 + ], + "libelle_d_acheminement": "STEENWERCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76933714516, + 50.6864176007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d8e7cfc3f9116e47c1273a6fa74d23c2db044e2", + "fields": { + "code_commune_insee": "59582", + "nom_de_la_commune": "STRAZEELE", + "code_postal": "59270", + "coordonnees_gps": [ + 50.7237136693, + 2.61971858959 + ], + "libelle_d_acheminement": "STRAZEELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61971858959, + 50.7237136693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1155b55c32760f3465353c5f7741b7639461d6cf", + "fields": { + "code_commune_insee": "59587", + "nom_de_la_commune": "TERDEGHEM", + "code_postal": "59114", + "coordonnees_gps": [ + 50.7976310827, + 2.55518666354 + ], + "libelle_d_acheminement": "TERDEGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55518666354, + 50.7976310827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd44de89a60fef626369bc1b9501359b509715fb", + "fields": { + "ligne_5": "COUDEKERQUE VILLAGE", + "code_commune_insee": "59588", + "libelle_d_acheminement": "TETEGHEM COUDEKERQUE VILLAGE", + "code_postal": "59380", + "nom_de_la_commune": "TETEGHEM COUDEKERQUE VILLAGE", + "coordonnees_gps": [ + 51.0158652678, + 2.45278368133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45278368133, + 51.0158652678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c66b8220352b48233f7cbc832f58f5c9c6751ba", + "fields": { + "code_commune_insee": "59590", + "nom_de_la_commune": "THIENNES", + "code_postal": "59189", + "coordonnees_gps": [ + 50.6509078196, + 2.47577776887 + ], + "libelle_d_acheminement": "THIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47577776887, + 50.6509078196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "598d261d4c0383665679312d9cdc3a767250795d", + "fields": { + "code_commune_insee": "59591", + "nom_de_la_commune": "THIVENCELLE", + "code_postal": "59163", + "coordonnees_gps": [ + 50.4459598369, + 3.62768756311 + ], + "libelle_d_acheminement": "THIVENCELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62768756311, + 50.4459598369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8723a01084b0814c76b4686486d901c976d2c259", + "fields": { + "code_commune_insee": "59592", + "nom_de_la_commune": "THUMERIES", + "code_postal": "59239", + "coordonnees_gps": [ + 50.4729282172, + 3.06360015777 + ], + "libelle_d_acheminement": "THUMERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06360015777, + 50.4729282172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92328e3dee81ef603d86b46174b7321cf914b767", + "fields": { + "code_commune_insee": "59594", + "nom_de_la_commune": "THUN ST AMAND", + "code_postal": "59158", + "coordonnees_gps": [ + 50.4847098079, + 3.44835522897 + ], + "libelle_d_acheminement": "THUN ST AMAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44835522897, + 50.4847098079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "656246b2431f3389ed3199910641d6f7a6501215", + "fields": { + "code_commune_insee": "59607", + "nom_de_la_commune": "VENDEGIES AU BOIS", + "code_postal": "59218", + "coordonnees_gps": [ + 50.1780771295, + 3.57802377396 + ], + "libelle_d_acheminement": "VENDEGIES AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57802377396, + 50.1780771295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4ee8fac2627b389ec9b7036429bfab52e7c3746", + "fields": { + "code_commune_insee": "59609", + "nom_de_la_commune": "VENDEVILLE", + "code_postal": "59175", + "coordonnees_gps": [ + 50.5731550754, + 3.08064149278 + ], + "libelle_d_acheminement": "VENDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08064149278, + 50.5731550754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b4fcd9492bf22969a7955685f7daad78dee6e85", + "fields": { + "code_commune_insee": "59610", + "nom_de_la_commune": "VERCHAIN MAUGRE", + "code_postal": "59227", + "coordonnees_gps": [ + 50.2661390084, + 3.46320478499 + ], + "libelle_d_acheminement": "VERCHAIN MAUGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46320478499, + 50.2661390084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a2ce7d929deefd1c786f1f618854c4dfb2361dc", + "fields": { + "code_commune_insee": "59612", + "nom_de_la_commune": "VERTAIN", + "code_postal": "59730", + "coordonnees_gps": [ + 50.2124028613, + 3.52268754362 + ], + "libelle_d_acheminement": "VERTAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52268754362, + 50.2124028613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1392be7742fba66e24c64dfaf3ddf4da3e5d8a6", + "fields": { + "code_commune_insee": "59613", + "nom_de_la_commune": "VICQ", + "code_postal": "59970", + "coordonnees_gps": [ + 50.4144657364, + 3.6078304121 + ], + "libelle_d_acheminement": "VICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6078304121, + 50.4144657364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04a3fcc712d2ff3e1e2ad3a9026a1c9659d25e4e", + "fields": { + "code_commune_insee": "59614", + "nom_de_la_commune": "VIESLY", + "code_postal": "59271", + "coordonnees_gps": [ + 50.1571125186, + 3.45621053562 + ], + "libelle_d_acheminement": "VIESLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45621053562, + 50.1571125186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70e0bc646102161092b1bc7609a28f7783dd9216", + "fields": { + "code_commune_insee": "59619", + "nom_de_la_commune": "VILLEREAU", + "code_postal": "59530", + "coordonnees_gps": [ + 50.2478551697, + 3.68060159072 + ], + "libelle_d_acheminement": "VILLEREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68060159072, + 50.2478551697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6727d729de151c71a2c0a03a1319e908b5b10ae1", + "fields": { + "code_commune_insee": "59620", + "nom_de_la_commune": "VILLERS AU TERTRE", + "code_postal": "59234", + "coordonnees_gps": [ + 50.3020721089, + 3.17587411198 + ], + "libelle_d_acheminement": "VILLERS AU TERTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17587411198, + 50.3020721089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bd64e11299e5f568a9266c193a5e11a8bcd2f49", + "fields": { + "code_commune_insee": "59622", + "nom_de_la_commune": "VILLERS EN CAUCHIES", + "code_postal": "59188", + "coordonnees_gps": [ + 50.2264212975, + 3.39435479006 + ], + "libelle_d_acheminement": "VILLERS EN CAUCHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39435479006, + 50.2264212975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09ea7ac3bebd6ac9642099dbb8c6151012059ee4", + "fields": { + "code_commune_insee": "59626", + "nom_de_la_commune": "VILLERS POL", + "code_postal": "59530", + "coordonnees_gps": [ + 50.2889516363, + 3.6151652439 + ], + "libelle_d_acheminement": "VILLERS POL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6151652439, + 50.2889516363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8806cc4ea42daae5a0ef2f81dbd09b78f7df3249", + "fields": { + "code_commune_insee": "59632", + "nom_de_la_commune": "WALLERS", + "code_postal": "59135", + "coordonnees_gps": [ + 50.3808461182, + 3.39313610701 + ], + "libelle_d_acheminement": "WALLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39313610701, + 50.3808461182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91992ddb18b97ba5e496a7c62ce21d8a9f1f23e6", + "fields": { + "ligne_5": "ARENBERG", + "code_commune_insee": "59632", + "libelle_d_acheminement": "WALLERS", + "code_postal": "59135", + "nom_de_la_commune": "WALLERS", + "coordonnees_gps": [ + 50.3808461182, + 3.39313610701 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39313610701, + 50.3808461182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c0f5c22a562340e3a39064d8a161e7721b21a68", + "fields": { + "code_commune_insee": "59633", + "nom_de_la_commune": "WALLERS EN FAGNE", + "code_postal": "59132", + "coordonnees_gps": [ + 50.0613544764, + 4.16718008292 + ], + "libelle_d_acheminement": "WALLERS EN FAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16718008292, + 50.0613544764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d34122cf526fa3ca7d2ef2b67ca942914574772", + "fields": { + "code_commune_insee": "59639", + "nom_de_la_commune": "WARGNIES LE GRAND", + "code_postal": "59144", + "coordonnees_gps": [ + 50.3079420993, + 3.65866407405 + ], + "libelle_d_acheminement": "WARGNIES LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65866407405, + 50.3079420993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "269c4b6cbd3b11bb084d3b0778765b3b314e9108", + "fields": { + "code_commune_insee": "59640", + "nom_de_la_commune": "WARGNIES LE PETIT", + "code_postal": "59144", + "coordonnees_gps": [ + 50.2986246557, + 3.68344256708 + ], + "libelle_d_acheminement": "WARGNIES LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68344256708, + 50.2986246557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbe716285ac95fc429c1169fe9104b922dbbba69", + "fields": { + "code_commune_insee": "59641", + "nom_de_la_commune": "WARHEM", + "code_postal": "59380", + "coordonnees_gps": [ + 50.9770774555, + 2.50331327056 + ], + "libelle_d_acheminement": "WARHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50331327056, + 50.9770774555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8e84df60e3ba1394cf3ee2578e1aa5aa18662dd", + "fields": { + "code_commune_insee": "59642", + "nom_de_la_commune": "WARLAING", + "code_postal": "59870", + "coordonnees_gps": [ + 50.4093268684, + 3.32433906396 + ], + "libelle_d_acheminement": "WARLAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32433906396, + 50.4093268684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ca9022d4c831e4fc369f65ab8bfd539c9313790", + "fields": { + "code_commune_insee": "59643", + "nom_de_la_commune": "WARNETON", + "code_postal": "59560", + "coordonnees_gps": [ + 50.7453105306, + 2.96704012681 + ], + "libelle_d_acheminement": "WARNETON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96704012681, + 50.7453105306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb526f241cf5a68091f079ea034869e80a4dce28", + "fields": { + "code_commune_insee": "59647", + "nom_de_la_commune": "WATTEN", + "code_postal": "59143", + "coordonnees_gps": [ + 50.833804191, + 2.22588651794 + ], + "libelle_d_acheminement": "WATTEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22588651794, + 50.833804191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7ee08d96dba1d501e1e3bd3f4f897efd85366c2", + "fields": { + "code_commune_insee": "59653", + "nom_de_la_commune": "WAVRIN", + "code_postal": "59136", + "coordonnees_gps": [ + 50.5726224029, + 2.93337226806 + ], + "libelle_d_acheminement": "WAVRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93337226806, + 50.5726224029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31f31ad91cc08795366de472a89ee8e468d1fef3", + "fields": { + "code_commune_insee": "59655", + "nom_de_la_commune": "WEMAERS CAPPEL", + "code_postal": "59670", + "coordonnees_gps": [ + 50.8152774849, + 2.44143393834 + ], + "libelle_d_acheminement": "WEMAERS CAPPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44143393834, + 50.8152774849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8697ec43f1e22bdb3a847004ed18fd47578664aa", + "fields": { + "code_commune_insee": "60004", + "nom_de_la_commune": "ACHY", + "code_postal": "60690", + "coordonnees_gps": [ + 49.5562211633, + 1.97185766368 + ], + "libelle_d_acheminement": "ACHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97185766368, + 49.5562211633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ea0e2823bf6a9978a1915c4680ea0253408cce3", + "fields": { + "code_commune_insee": "60006", + "nom_de_la_commune": "LES AGEUX", + "code_postal": "60700", + "coordonnees_gps": [ + 49.3183042237, + 2.5890180969 + ], + "libelle_d_acheminement": "LES AGEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5890180969, + 49.3183042237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ad2fd23f245fcc0f2ae4e56b4cf2978a2a1cfdb", + "fields": { + "code_commune_insee": "60014", + "nom_de_la_commune": "ANGIVILLERS", + "code_postal": "60130", + "coordonnees_gps": [ + 49.4889521261, + 2.49971184199 + ], + "libelle_d_acheminement": "ANGIVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49971184199, + 49.4889521261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c957fc9554556dae358546631ab8e840fd732bd", + "fields": { + "code_commune_insee": "60023", + "nom_de_la_commune": "ARMANCOURT", + "code_postal": "60880", + "coordonnees_gps": [ + 49.370833099, + 2.76400949363 + ], + "libelle_d_acheminement": "ARMANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76400949363, + 49.370833099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec86b20f857863d5e894ce30f42677fc331c492d", + "fields": { + "code_commune_insee": "60024", + "nom_de_la_commune": "ARSY", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4056086887, + 2.68958438939 + ], + "libelle_d_acheminement": "ARSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68958438939, + 49.4056086887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "953fc9a539e64b51e7f28e43e51b50f1245b333b", + "fields": { + "code_commune_insee": "60025", + "nom_de_la_commune": "ATTICHY", + "code_postal": "60350", + "coordonnees_gps": [ + 49.4257269191, + 3.04404702722 + ], + "libelle_d_acheminement": "ATTICHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04404702722, + 49.4257269191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1551320431962e0e369911eb5ba54bb0a408d047", + "fields": { + "code_commune_insee": "60029", + "nom_de_la_commune": "AUNEUIL", + "code_postal": "60390", + "coordonnees_gps": [ + 49.3702714618, + 1.99554869838 + ], + "libelle_d_acheminement": "AUNEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99554869838, + 49.3702714618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ad81a1e9189e5dd1bf120a37511d1e2bf82621d", + "fields": { + "code_commune_insee": "85245", + "nom_de_la_commune": "ST MARTIN DES FONTAINES", + "code_postal": "85570", + "coordonnees_gps": [ + 46.5464637508, + -0.907394581139 + ], + "libelle_d_acheminement": "ST MARTIN DES FONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.907394581139, + 46.5464637508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b329d0763581b77cde276ec06b971357882bd064", + "fields": { + "code_commune_insee": "60055", + "nom_de_la_commune": "BEAURAINS LES NOYON", + "code_postal": "60400", + "coordonnees_gps": [ + 49.6065980784, + 2.9753206205 + ], + "libelle_d_acheminement": "BEAURAINS LES NOYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9753206205, + 49.6065980784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a29eaf24447be9a639f95fdc0bcb0473297659f", + "fields": { + "code_commune_insee": "85247", + "nom_de_la_commune": "ST MARTIN DES TILLEULS", + "code_postal": "85130", + "coordonnees_gps": [ + 46.9711539531, + -1.06282621567 + ], + "libelle_d_acheminement": "ST MARTIN DES TILLEULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06282621567, + 46.9711539531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf7f43b728d20847eaa67aaa7797c95a7e600db6", + "fields": { + "code_commune_insee": "60063", + "nom_de_la_commune": "BERNEUIL EN BRAY", + "code_postal": "60390", + "coordonnees_gps": [ + 49.3578687801, + 2.05826883915 + ], + "libelle_d_acheminement": "BERNEUIL EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05826883915, + 49.3578687801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e1fac36f381c78454fad9622179da64744db176", + "fields": { + "code_commune_insee": "85251", + "nom_de_la_commune": "ST MAURICE DES NOUES", + "code_postal": "85120", + "coordonnees_gps": [ + 46.5955876221, + -0.724327725888 + ], + "libelle_d_acheminement": "ST MAURICE DES NOUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.724327725888, + 46.5955876221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fd0c3aa5b7110cc334277d096b7cbd7f73a5a5c", + "fields": { + "code_commune_insee": "60071", + "nom_de_la_commune": "BIERMONT", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5770777764, + 2.73899530755 + ], + "libelle_d_acheminement": "BIERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73899530755, + 49.5770777764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40e1fbe37c84f605e8deda427da75fc0388125ba", + "fields": { + "code_commune_insee": "85259", + "nom_de_la_commune": "ST PAUL EN PAREDS", + "code_postal": "85500", + "coordonnees_gps": [ + 46.8303789022, + -0.964515191283 + ], + "libelle_d_acheminement": "ST PAUL EN PAREDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.964515191283, + 46.8303789022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a13a5c97fdba73c82c0de0ba363821ab3318db0", + "fields": { + "code_commune_insee": "60077", + "nom_de_la_commune": "BLICOURT", + "code_postal": "60860", + "coordonnees_gps": [ + 49.5608239154, + 2.06049872178 + ], + "libelle_d_acheminement": "BLICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06049872178, + 49.5608239154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "643516b5a9e2d22ba0feae2036bb9b12adb6246b", + "fields": { + "code_commune_insee": "85273", + "nom_de_la_commune": "ST URBAIN", + "code_postal": "85230", + "coordonnees_gps": [ + 46.8818371328, + -2.01607828912 + ], + "libelle_d_acheminement": "ST URBAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01607828912, + 46.8818371328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f2a30c8c6a7c852ee9a0c94a559a49ae11b3df1", + "fields": { + "code_commune_insee": "60078", + "nom_de_la_commune": "BLINCOURT", + "code_postal": "60190", + "coordonnees_gps": [ + 49.3848096307, + 2.61936803553 + ], + "libelle_d_acheminement": "BLINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61936803553, + 49.3848096307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a60e19f636f1f2ce415ec86cc8321bbc772ecc3", + "fields": { + "code_commune_insee": "85284", + "nom_de_la_commune": "SOULLANS", + "code_postal": "85300", + "coordonnees_gps": [ + 46.7951288466, + -1.91392699457 + ], + "libelle_d_acheminement": "SOULLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.91392699457, + 46.7951288466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ea8e1dc265f44054959be325577296f2604fc97", + "fields": { + "code_commune_insee": "60086", + "nom_de_la_commune": "BORAN SUR OISE", + "code_postal": "60820", + "coordonnees_gps": [ + 49.1749794772, + 2.35195670267 + ], + "libelle_d_acheminement": "BORAN SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35195670267, + 49.1749794772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d84563b0af2cf9dfcee50a854e760cf1891203f", + "fields": { + "code_commune_insee": "85293", + "nom_de_la_commune": "TIFFAUGES", + "code_postal": "85130", + "coordonnees_gps": [ + 47.0020573556, + -1.09858009203 + ], + "libelle_d_acheminement": "TIFFAUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09858009203, + 47.0020573556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77dec4505149e2e7bd7bb4038432b29e2d6f7476", + "fields": { + "code_commune_insee": "60093", + "nom_de_la_commune": "BOULOGNE LA GRASSE", + "code_postal": "60490", + "coordonnees_gps": [ + 49.6080302361, + 2.70097863571 + ], + "libelle_d_acheminement": "BOULOGNE LA GRASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70097863571, + 49.6080302361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e049414e191cac287edb12312689cb60191dd811", + "fields": { + "code_commune_insee": "85295", + "nom_de_la_commune": "TREIZE SEPTIERS", + "code_postal": "85600", + "coordonnees_gps": [ + 46.9975586143, + -1.23193361154 + ], + "libelle_d_acheminement": "TREIZE SEPTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23193361154, + 46.9975586143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c0a643985d3378f73748670de3811b5b1ffcb4d", + "fields": { + "code_commune_insee": "60099", + "nom_de_la_commune": "BRAISNES SUR ARONDE", + "code_postal": "60113", + "coordonnees_gps": [ + 49.4761042434, + 2.77402760825 + ], + "libelle_d_acheminement": "BRAISNES SUR ARONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77402760825, + 49.4761042434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0620d1f49b8edbfe9eb004b2a4e08915dfb4079a", + "fields": { + "code_commune_insee": "85300", + "nom_de_la_commune": "VENANSAULT", + "code_postal": "85190", + "coordonnees_gps": [ + 46.685677363, + -1.54112129191 + ], + "libelle_d_acheminement": "VENANSAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54112129191, + 46.685677363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa3b1f7eb15c80abef77ce372b340a87b7bd8e54", + "fields": { + "code_commune_insee": "60107", + "nom_de_la_commune": "BREUIL LE VERT", + "code_postal": "60600", + "coordonnees_gps": [ + 49.3619627867, + 2.42549520398 + ], + "libelle_d_acheminement": "BREUIL LE VERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42549520398, + 49.3619627867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "769dea8a584813b0163120a60afe8548f4c5e55b", + "fields": { + "ligne_5": "LA VERRIE", + "code_commune_insee": "85302", + "libelle_d_acheminement": "CHANVERRIE", + "code_postal": "85130", + "nom_de_la_commune": "CHANVERRIE", + "coordonnees_gps": [ + 46.9634774521, + -0.985340006089 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.985340006089, + 46.9634774521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f836eccc8bc53093732aa811b952cf474388a928", + "fields": { + "code_commune_insee": "60114", + "nom_de_la_commune": "BUICOURT", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5341980923, + 1.81531179837 + ], + "libelle_d_acheminement": "BUICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81531179837, + 49.5341980923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3924ef4511dee051f80ea73f68d9a778e73edade", + "fields": { + "code_commune_insee": "85307", + "nom_de_la_commune": "LA FAUTE SUR MER", + "code_postal": "85460", + "coordonnees_gps": [ + 46.3199919131, + -1.31487049579 + ], + "libelle_d_acheminement": "LA FAUTE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31487049579, + 46.3199919131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5dac5fd06be419586ddcc902ed3edcaf8ebddc0", + "fields": { + "code_commune_insee": "60120", + "nom_de_la_commune": "CAMBRONNE LES CLERMONT", + "code_postal": "60290", + "coordonnees_gps": [ + 49.3259611654, + 2.40115486808 + ], + "libelle_d_acheminement": "CAMBRONNE LES CLERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40115486808, + 49.3259611654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c8a12345848f7e9a9cccfa119a1c3e77197e1b5", + "fields": { + "code_commune_insee": "86002", + "nom_de_la_commune": "AMBERRE", + "code_postal": "86110", + "coordonnees_gps": [ + 46.7578511349, + 0.153603662903 + ], + "libelle_d_acheminement": "AMBERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.153603662903, + 46.7578511349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75c23c68413c1d1fdbe9d1935919dbdc84c57377", + "fields": { + "code_commune_insee": "60121", + "nom_de_la_commune": "CAMPAGNE", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6495792933, + 2.96070669901 + ], + "libelle_d_acheminement": "CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96070669901, + 49.6495792933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d93937e11d6a240f02a1e1fd22c1af59d9fd01e6", + "fields": { + "code_commune_insee": "86013", + "nom_de_la_commune": "AULNAY", + "code_postal": "86330", + "coordonnees_gps": [ + 46.9060273599, + 0.0912871261314 + ], + "libelle_d_acheminement": "AULNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0912871261314, + 46.9060273599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92af90666bcbf6383184c42c8c613096e7c1559b", + "fields": { + "code_commune_insee": "60129", + "nom_de_la_commune": "CARLEPONT", + "code_postal": "60170", + "coordonnees_gps": [ + 49.5191522759, + 3.02234053869 + ], + "libelle_d_acheminement": "CARLEPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02234053869, + 49.5191522759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0d1a8578e8a46fb5174196019d3bb42d069969a", + "fields": { + "code_commune_insee": "86014", + "nom_de_la_commune": "AVAILLES EN CHATELLERAULT", + "code_postal": "86530", + "coordonnees_gps": [ + 46.7561922634, + 0.569776256918 + ], + "libelle_d_acheminement": "AVAILLES EN CHATELLERAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.569776256918, + 46.7561922634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "487524c19157e05d2e7e64cca5594e2f0f465559", + "fields": { + "code_commune_insee": "60138", + "nom_de_la_commune": "CHAMANT", + "code_postal": "60300", + "coordonnees_gps": [ + 49.2258210412, + 2.61918764925 + ], + "libelle_d_acheminement": "CHAMANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61918764925, + 49.2258210412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57f45619305cedd0cbe882a2369fa67332d5ae40", + "fields": { + "code_commune_insee": "86015", + "nom_de_la_commune": "AVAILLES LIMOUZINE", + "code_postal": "86460", + "coordonnees_gps": [ + 46.1339246514, + 0.647417301116 + ], + "libelle_d_acheminement": "AVAILLES LIMOUZINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.647417301116, + 46.1339246514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb951e902f3bdabfe28c8d719d7773d1c56740e0", + "fields": { + "code_commune_insee": "60142", + "nom_de_la_commune": "LA CHAPELLE EN SERVAL", + "code_postal": "60520", + "coordonnees_gps": [ + 49.1212917393, + 2.5265939072 + ], + "libelle_d_acheminement": "LA CHAPELLE EN SERVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5265939072, + 49.1212917393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8165af9e4a82df3a3075748ecc22629d1a45bd7", + "fields": { + "code_commune_insee": "86016", + "nom_de_la_commune": "AVANTON", + "code_postal": "86170", + "coordonnees_gps": [ + 46.6636113656, + 0.304857474533 + ], + "libelle_d_acheminement": "AVANTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.304857474533, + 46.6636113656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e71d78a30eab39db9d1fcbcf874fed5ac4fc847", + "fields": { + "code_commune_insee": "60147", + "nom_de_la_commune": "CHEVINCOURT", + "code_postal": "60150", + "coordonnees_gps": [ + 49.5167606649, + 2.85123034306 + ], + "libelle_d_acheminement": "CHEVINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85123034306, + 49.5167606649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4724c2f8f20e5ca77120f599bd79d82619b1059", + "fields": { + "ligne_5": "ST CYR", + "code_commune_insee": "86019", + "libelle_d_acheminement": "BEAUMONT ST CYR", + "code_postal": "86130", + "nom_de_la_commune": "BEAUMONT ST CYR", + "coordonnees_gps": [ + 46.7432070332, + 0.436999990753 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.436999990753, + 46.7432070332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8521739fd8fdf0f424c0b53a2e09d8bbd927aa82", + "fields": { + "code_commune_insee": "60151", + "nom_de_la_commune": "CHOISY AU BAC", + "code_postal": "60750", + "coordonnees_gps": [ + 49.442089833, + 2.89567270285 + ], + "libelle_d_acheminement": "CHOISY AU BAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89567270285, + 49.442089833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4319d5d9b6dd1d2da9aacacd356e93a1a114142e", + "fields": { + "code_commune_insee": "86034", + "nom_de_la_commune": "BOURESSE", + "code_postal": "86410", + "coordonnees_gps": [ + 46.3555804441, + 0.581776252494 + ], + "libelle_d_acheminement": "BOURESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.581776252494, + 46.3555804441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e219a3d6dcd46949595ae26c41b622150a5c19f5", + "fields": { + "code_commune_insee": "60154", + "nom_de_la_commune": "CINQUEUX", + "code_postal": "60940", + "coordonnees_gps": [ + 49.3243592276, + 2.53354291409 + ], + "libelle_d_acheminement": "CINQUEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53354291409, + 49.3243592276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f013c6c4342bfd9ff78b808c04e07751b94e5e4", + "fields": { + "code_commune_insee": "86035", + "nom_de_la_commune": "BOURG ARCHAMBAULT", + "code_postal": "86390", + "coordonnees_gps": [ + 46.3726210899, + 1.00188704322 + ], + "libelle_d_acheminement": "BOURG ARCHAMBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00188704322, + 46.3726210899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b57976da0020c34064082f095afc8cede29bc77", + "fields": { + "code_commune_insee": "60158", + "nom_de_la_commune": "COIVREL", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5554230001, + 2.55108811608 + ], + "libelle_d_acheminement": "COIVREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55108811608, + 49.5554230001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac443ce1f712069042f1a731b4be651c5adab515", + "fields": { + "code_commune_insee": "86038", + "nom_de_la_commune": "BRION", + "code_postal": "86160", + "coordonnees_gps": [ + 46.357045926, + 0.472294724687 + ], + "libelle_d_acheminement": "BRION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.472294724687, + 46.357045926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32e4755740dd7337a206094c776fea2ebbd1ad3a", + "fields": { + "code_commune_insee": "60159", + "nom_de_la_commune": "COMPIEGNE", + "code_postal": "60200", + "coordonnees_gps": [ + 49.3990601478, + 2.85317249363 + ], + "libelle_d_acheminement": "COMPIEGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85317249363, + 49.3990601478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c84d7eff2c1ede43a5cc92d64137087741d72041", + "fields": { + "code_commune_insee": "86040", + "nom_de_la_commune": "LA BUSSIERE", + "code_postal": "86310", + "coordonnees_gps": [ + 46.6315763741, + 0.82155717047 + ], + "libelle_d_acheminement": "LA BUSSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82155717047, + 46.6315763741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bd65047a96e1592e0b65e87f84ee110a5aae19e", + "fields": { + "code_commune_insee": "60160", + "nom_de_la_commune": "CONCHY LES POTS", + "code_postal": "60490", + "coordonnees_gps": [ + 49.6073168338, + 2.73630966072 + ], + "libelle_d_acheminement": "CONCHY LES POTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73630966072, + 49.6073168338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb6d731fb19fb2e3eac42712fd0e776511f2d400", + "fields": { + "code_commune_insee": "86041", + "nom_de_la_commune": "BUXEROLLES", + "code_postal": "86180", + "coordonnees_gps": [ + 46.6054095506, + 0.369205479606 + ], + "libelle_d_acheminement": "BUXEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.369205479606, + 46.6054095506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d246d2ebcbf17aa43aa3dbc14230be1f1b158c9", + "fields": { + "code_commune_insee": "60163", + "nom_de_la_commune": "CORMEILLES", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6424440702, + 2.19661684856 + ], + "libelle_d_acheminement": "CORMEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19661684856, + 49.6424440702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd9391a32fc88e6e010631aae8253eec1770851f", + "fields": { + "code_commune_insee": "86046", + "nom_de_la_commune": "CENON SUR VIENNE", + "code_postal": "86530", + "coordonnees_gps": [ + 46.7589403896, + 0.529064773205 + ], + "libelle_d_acheminement": "CENON SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.529064773205, + 46.7589403896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96702f48ebf1b99b7b34bca7092657d5f0f88e1f", + "fields": { + "code_commune_insee": "60164", + "nom_de_la_commune": "LE COUDRAY ST GERMER", + "code_postal": "60850", + "coordonnees_gps": [ + 49.4006526373, + 1.83221910213 + ], + "libelle_d_acheminement": "LE COUDRAY ST GERMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83221910213, + 49.4006526373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a60b0a3f03fb66820056f4b74db36f828c8d3145", + "fields": { + "code_commune_insee": "86048", + "nom_de_la_commune": "CHABOURNAY", + "code_postal": "86380", + "coordonnees_gps": [ + 46.7196688259, + 0.269258187544 + ], + "libelle_d_acheminement": "CHABOURNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.269258187544, + 46.7196688259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b44733432a52d6998e05846801c8e11d7ac530c0", + "fields": { + "code_commune_insee": "60169", + "nom_de_la_commune": "COURCELLES LES GISORS", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2594249464, + 1.73615075347 + ], + "libelle_d_acheminement": "COURCELLES LES GISORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73615075347, + 49.2594249464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f1cc5cc18f255017d1392d240139398d7d3d91b", + "fields": { + "code_commune_insee": "86054", + "nom_de_la_commune": "CHAMPNIERS", + "code_postal": "86400", + "coordonnees_gps": [ + 46.2148195994, + 0.327805032659 + ], + "libelle_d_acheminement": "CHAMPNIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.327805032659, + 46.2148195994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbe2f2904a8772ae20fdefd3152c566aa9b66dee", + "fields": { + "code_commune_insee": "60170", + "nom_de_la_commune": "COURTEUIL", + "code_postal": "60300", + "coordonnees_gps": [ + 49.2065256712, + 2.54439836724 + ], + "libelle_d_acheminement": "COURTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54439836724, + 49.2065256712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deffdfd644260dbb6a3f399d9b22d0b028e19d7b", + "fields": { + "code_commune_insee": "86065", + "nom_de_la_commune": "CHATEAU LARCHER", + "code_postal": "86370", + "coordonnees_gps": [ + 46.4163092918, + 0.300807728817 + ], + "libelle_d_acheminement": "CHATEAU LARCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.300807728817, + 46.4163092918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c30fae0ee72d65d5d3c644356aa5fbf5c736bc6", + "fields": { + "code_commune_insee": "60174", + "nom_de_la_commune": "CRAPEAUMESNIL", + "code_postal": "60310", + "coordonnees_gps": [ + 49.6404571177, + 2.80722897477 + ], + "libelle_d_acheminement": "CRAPEAUMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80722897477, + 49.6404571177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6ea3a6afe6b2ec3117838ac41fb5c21078511b8", + "fields": { + "code_commune_insee": "86072", + "nom_de_la_commune": "CHENEVELLES", + "code_postal": "86450", + "coordonnees_gps": [ + 46.7240115678, + 0.674147109983 + ], + "libelle_d_acheminement": "CHENEVELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.674147109983, + 46.7240115678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da0ad9a3e85744e672cec1d17bbef21777ab6f55", + "fields": { + "code_commune_insee": "60177", + "nom_de_la_commune": "CRESSONSACQ", + "code_postal": "60190", + "coordonnees_gps": [ + 49.448238217, + 2.56793368491 + ], + "libelle_d_acheminement": "CRESSONSACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56793368491, + 49.448238217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82790fde1a12af2c99144c82db22a7d69f2de7fe", + "fields": { + "code_commune_insee": "86073", + "nom_de_la_commune": "CHERVES", + "code_postal": "86170", + "coordonnees_gps": [ + 46.6943513948, + 0.0270041425401 + ], + "libelle_d_acheminement": "CHERVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0270041425401, + 46.6943513948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ac84c49814fb36a4543453fc59eb79183d0155", + "fields": { + "code_commune_insee": "60181", + "nom_de_la_commune": "CRISOLLES", + "code_postal": "60400", + "coordonnees_gps": [ + 49.6230708747, + 3.02420793836 + ], + "libelle_d_acheminement": "CRISOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02420793836, + 49.6230708747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a15faa61737c29b417df066712a504c5dd5659c2", + "fields": { + "code_commune_insee": "86077", + "nom_de_la_commune": "CIVAUX", + "code_postal": "86320", + "coordonnees_gps": [ + 46.4423086476, + 0.66823243898 + ], + "libelle_d_acheminement": "CIVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.66823243898, + 46.4423086476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23e446f717efc2bc08638399776ccb9cfdb5d75b", + "fields": { + "code_commune_insee": "60183", + "nom_de_la_commune": "CROISSY SUR CELLE", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6903535459, + 2.17212127925 + ], + "libelle_d_acheminement": "CROISSY SUR CELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17212127925, + 49.6903535459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1d172b78770754bb316d27b92ab7abfeeb1346c", + "fields": { + "code_commune_insee": "86079", + "nom_de_la_commune": "LA ROCHE RIGAULT", + "code_postal": "86200", + "coordonnees_gps": [ + 46.9698026391, + 0.170597990866 + ], + "libelle_d_acheminement": "LA ROCHE RIGAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.170597990866, + 46.9698026391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2923f6c1b938e1cc5f0d12b8243ab769f7fb427", + "fields": { + "code_commune_insee": "60193", + "nom_de_la_commune": "DAMERAUCOURT", + "code_postal": "60210", + "coordonnees_gps": [ + 49.701294681, + 1.92280713557 + ], + "libelle_d_acheminement": "DAMERAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92280713557, + 49.701294681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffb6b8dbfedb1b3011f9b203261cfb68e8dc5f92", + "fields": { + "ligne_5": "CEAUX EN COUHE", + "code_commune_insee": "86082", + "libelle_d_acheminement": "VALENCE EN POITOU", + "code_postal": "86700", + "nom_de_la_commune": "VALENCE EN POITOU", + "coordonnees_gps": [ + 46.2960515844, + 0.179497066899 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.179497066899, + 46.2960515844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "550745e2567b25084a12c1a6f5bc25ce4d5c7bf6", + "fields": { + "code_commune_insee": "60198", + "nom_de_la_commune": "DIVES", + "code_postal": "60310", + "coordonnees_gps": [ + 49.5909351098, + 2.8785644648 + ], + "libelle_d_acheminement": "DIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8785644648, + 49.5909351098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b74cc73e605cba396e7b96ec0e260e60383b8146", + "fields": { + "ligne_5": "VAUX", + "code_commune_insee": "86082", + "libelle_d_acheminement": "VALENCE EN POITOU", + "code_postal": "86700", + "nom_de_la_commune": "VALENCE EN POITOU", + "coordonnees_gps": [ + 46.2960515844, + 0.179497066899 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.179497066899, + 46.2960515844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfc9de005b488875ea78e377ebf91ccc4757dd1d", + "fields": { + "code_commune_insee": "60211", + "nom_de_la_commune": "ERAGNY SUR EPTE", + "code_postal": "60590", + "coordonnees_gps": [ + 49.312023845, + 1.78713220993 + ], + "libelle_d_acheminement": "ERAGNY SUR EPTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78713220993, + 49.312023845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cde66b203a879228a8e600851e3367f0b7675a5", + "fields": { + "code_commune_insee": "86085", + "nom_de_la_commune": "COUSSAY", + "code_postal": "86110", + "coordonnees_gps": [ + 46.8386789415, + 0.201706399643 + ], + "libelle_d_acheminement": "COUSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.201706399643, + 46.8386789415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27d38d791980338ba49cdc8a5007741046ba80e0", + "fields": { + "code_commune_insee": "60215", + "nom_de_la_commune": "ERQUERY", + "code_postal": "60600", + "coordonnees_gps": [ + 49.4136451151, + 2.45644712469 + ], + "libelle_d_acheminement": "ERQUERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45644712469, + 49.4136451151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f25cac1273be3b4d126f636d14382476418fce7", + "fields": { + "code_commune_insee": "86086", + "nom_de_la_commune": "COUSSAY LES BOIS", + "code_postal": "86270", + "coordonnees_gps": [ + 46.8131222702, + 0.725467078625 + ], + "libelle_d_acheminement": "COUSSAY LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.725467078625, + 46.8131222702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b7d7e2abab5df474f22f2b146a88ece6427212e", + "fields": { + "code_commune_insee": "60221", + "nom_de_la_commune": "ESQUENNOY", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6550975512, + 2.26906443197 + ], + "libelle_d_acheminement": "ESQUENNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26906443197, + 49.6550975512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbebda223b964c75cffc6cf5bd295a14706db24b", + "fields": { + "code_commune_insee": "86090", + "nom_de_la_commune": "CURCAY SUR DIVE", + "code_postal": "86120", + "coordonnees_gps": [ + 47.012286666, + -0.0577125676726 + ], + "libelle_d_acheminement": "CURCAY SUR DIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0577125676726, + 47.012286666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "468a7bb02203ed65b2003731f488435ae1b0a86c", + "fields": { + "code_commune_insee": "60223", + "nom_de_la_commune": "ESTREES ST DENIS", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4263442144, + 2.62953613001 + ], + "libelle_d_acheminement": "ESTREES ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62953613001, + 49.4263442144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82943eec3787daba66d63061bdb9739d01c10326", + "fields": { + "code_commune_insee": "86102", + "nom_de_la_commune": "FROZES", + "code_postal": "86190", + "coordonnees_gps": [ + 46.6645340062, + 0.134127229856 + ], + "libelle_d_acheminement": "FROZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.134127229856, + 46.6645340062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd6c99381331b0f5486d3002e04909a98527cdbd", + "fields": { + "code_commune_insee": "60226", + "nom_de_la_commune": "EVE", + "code_postal": "60330", + "coordonnees_gps": [ + 49.087549811, + 2.70898194051 + ], + "libelle_d_acheminement": "EVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70898194051, + 49.087549811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3af9ff8ac4006e9e76ea5bf828ae4381a0a3bf0", + "fields": { + "code_commune_insee": "86104", + "nom_de_la_commune": "GENOUILLE", + "code_postal": "86250", + "coordonnees_gps": [ + 46.101002656, + 0.338161906694 + ], + "libelle_d_acheminement": "GENOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.338161906694, + 46.101002656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bea4dec50864df72e882a88d8a2e4b915a10b921", + "fields": { + "code_commune_insee": "60227", + "nom_de_la_commune": "EVRICOURT", + "code_postal": "60310", + "coordonnees_gps": [ + 49.570401673, + 2.91627648313 + ], + "libelle_d_acheminement": "EVRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91627648313, + 49.570401673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a993abd672c17fac41bea043eb891f05b637aceb", + "fields": { + "ligne_5": "VERGER SUR DIVE", + "code_commune_insee": "86108", + "libelle_d_acheminement": "LA GRIMAUDIERE", + "code_postal": "86110", + "nom_de_la_commune": "LA GRIMAUDIERE", + "coordonnees_gps": [ + 46.8026516286, + 0.0301338119599 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0301338119599, + 46.8026516286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fd4a9cc063c1f972779ae52d129f15c6a03ea04", + "fields": { + "code_commune_insee": "60228", + "nom_de_la_commune": "FAY LES ETANGS", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2495116378, + 1.94467191321 + ], + "libelle_d_acheminement": "FAY LES ETANGS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94467191321, + 49.2495116378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc3ef0c5077cfcaaa811052525c76a2d43cc536d", + "fields": { + "code_commune_insee": "86108", + "nom_de_la_commune": "LA GRIMAUDIERE", + "code_postal": "86330", + "coordonnees_gps": [ + 46.8026516286, + 0.0301338119599 + ], + "libelle_d_acheminement": "LA GRIMAUDIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0301338119599, + 46.8026516286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ca64bc3d3ef26489d74d1e5ff31a994f3eaa70d", + "fields": { + "code_commune_insee": "60229", + "nom_de_la_commune": "LE FAYEL", + "code_postal": "60680", + "coordonnees_gps": [ + 49.3722915111, + 2.6969172661 + ], + "libelle_d_acheminement": "LE FAYEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6969172661, + 49.3722915111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c91c37b0e6e7ad4c817275a664a115be71478192", + "fields": { + "ligne_5": "NOTRE DAME D OR", + "code_commune_insee": "86108", + "libelle_d_acheminement": "LA GRIMAUDIERE", + "code_postal": "86330", + "nom_de_la_commune": "LA GRIMAUDIERE", + "coordonnees_gps": [ + 46.8026516286, + 0.0301338119599 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0301338119599, + 46.8026516286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0b2a525a0f43a0142320b560258242db780f587", + "fields": { + "code_commune_insee": "60230", + "nom_de_la_commune": "LE FAY ST QUENTIN", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4490275764, + 2.25128332435 + ], + "libelle_d_acheminement": "LE FAY ST QUENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25128332435, + 49.4490275764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f76028d76c75f35fc28d04727be4fb34b142f9a", + "fields": { + "code_commune_insee": "86109", + "nom_de_la_commune": "GUESNES", + "code_postal": "86420", + "coordonnees_gps": [ + 46.9083772846, + 0.149597143414 + ], + "libelle_d_acheminement": "GUESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.149597143414, + 46.9083772846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9f3090be49b8387d0dd13e2a7bc9b95cbe0681a", + "fields": { + "code_commune_insee": "60235", + "nom_de_la_commune": "FLAVACOURT", + "code_postal": "60590", + "coordonnees_gps": [ + 49.3460308859, + 1.82886153194 + ], + "libelle_d_acheminement": "FLAVACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82886153194, + 49.3460308859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5401aab58423fd337425efc3e558e5750135ed9b", + "fields": { + "code_commune_insee": "86110", + "nom_de_la_commune": "HAIMS", + "code_postal": "86310", + "coordonnees_gps": [ + 46.513121388, + 0.927029519838 + ], + "libelle_d_acheminement": "HAIMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.927029519838, + 46.513121388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ace7e267cfa1fbf85b2b4c14b692fff4b88d882c", + "fields": { + "code_commune_insee": "60241", + "nom_de_la_commune": "FONTAINE CHAALIS", + "code_postal": "60300", + "coordonnees_gps": [ + 49.1547073818, + 2.66051125918 + ], + "libelle_d_acheminement": "FONTAINE CHAALIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66051125918, + 49.1547073818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25286448ac4ecaa32a8207ef7e2d590c3fefcd47", + "fields": { + "code_commune_insee": "86111", + "nom_de_la_commune": "INGRANDES", + "code_postal": "86220", + "coordonnees_gps": [ + 46.8739924084, + 0.59309229474 + ], + "libelle_d_acheminement": "INGRANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59309229474, + 46.8739924084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d23d8c91977d9986a66237619c3af30967c8440e", + "fields": { + "code_commune_insee": "60243", + "nom_de_la_commune": "FONTAINE ST LUCIEN", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5040754183, + 2.14696786986 + ], + "libelle_d_acheminement": "FONTAINE ST LUCIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14696786986, + 49.5040754183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c11b266dd4cf4bfc5d6750d6c3cb4564a0f9271c", + "fields": { + "code_commune_insee": "86113", + "nom_de_la_commune": "ITEUIL", + "code_postal": "86240", + "coordonnees_gps": [ + 46.484768544, + 0.291606821215 + ], + "libelle_d_acheminement": "ITEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.291606821215, + 46.484768544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a5684883542b9f28e7f0b47aec7f0081318ba78", + "fields": { + "code_commune_insee": "60251", + "nom_de_la_commune": "FOUQUEROLLES", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4590327609, + 2.21413521512 + ], + "libelle_d_acheminement": "FOUQUEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21413521512, + 49.4590327609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65aa3c8548bd521a09ab77ff29d0e26e93b9d6ea", + "fields": { + "code_commune_insee": "86120", + "nom_de_la_commune": "LATHUS ST REMY", + "code_postal": "86390", + "coordonnees_gps": [ + 46.3208334605, + 0.944330571873 + ], + "libelle_d_acheminement": "LATHUS ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.944330571873, + 46.3208334605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "108805c2d5b539d091ff99f66278c50516d936aa", + "fields": { + "code_commune_insee": "60261", + "nom_de_la_commune": "FRESNOY LE LUAT", + "code_postal": "60800", + "coordonnees_gps": [ + 49.2127033818, + 2.76283065148 + ], + "libelle_d_acheminement": "FRESNOY LE LUAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76283065148, + 49.2127033818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a396f17705d24afb91022d6d8b4bcd200163931", + "fields": { + "ligne_5": "MONTREUIL BONNIN", + "code_commune_insee": "86123", + "libelle_d_acheminement": "BOIVRE LA VALLEE", + "code_postal": "86470", + "nom_de_la_commune": "BOIVRE LA VALLEE", + "coordonnees_gps": [ + 46.5433549804, + 0.0821497150944 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0821497150944, + 46.5433549804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2189f867affd4e05cc687db93ec68b26dbe43777", + "fields": { + "code_commune_insee": "60269", + "nom_de_la_commune": "GAUDECHART", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6181645312, + 1.96029040389 + ], + "libelle_d_acheminement": "GAUDECHART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96029040389, + 49.6181645312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9013a12278053273bfafc23a12a74ea688ebaec2", + "fields": { + "code_commune_insee": "86125", + "nom_de_la_commune": "LEIGNE LES BOIS", + "code_postal": "86450", + "coordonnees_gps": [ + 46.7640626474, + 0.705788693742 + ], + "libelle_d_acheminement": "LEIGNE LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.705788693742, + 46.7640626474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ef14c98f92b04aecd80f15cef7dc309ccb29401", + "fields": { + "code_commune_insee": "60274", + "nom_de_la_commune": "GLAIGNES", + "code_postal": "60129", + "coordonnees_gps": [ + 49.2730688353, + 2.84005159158 + ], + "libelle_d_acheminement": "GLAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84005159158, + 49.2730688353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec7c2a467e7abd49cc164d6d317e0c87e392185f", + "fields": { + "code_commune_insee": "86129", + "nom_de_la_commune": "LESIGNY", + "code_postal": "86270", + "coordonnees_gps": [ + 46.8368423097, + 0.772346287299 + ], + "libelle_d_acheminement": "LESIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.772346287299, + 46.8368423097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7489ec6f78a13383bd54fd9582915c328f4f10a", + "fields": { + "code_commune_insee": "60276", + "nom_de_la_commune": "GODENVILLERS", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5820126531, + 2.54731751004 + ], + "libelle_d_acheminement": "GODENVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54731751004, + 49.5820126531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94031d69a2e94369ebe1c69362ec8064c3aeeb57", + "fields": { + "code_commune_insee": "86134", + "nom_de_la_commune": "LINAZAY", + "code_postal": "86400", + "coordonnees_gps": [ + 46.1672922184, + 0.192422386232 + ], + "libelle_d_acheminement": "LINAZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.192422386232, + 46.1672922184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d3e76800622597b8d3e55b2d849840eadafad11", + "fields": { + "code_commune_insee": "60279", + "nom_de_la_commune": "GONDREVILLE", + "code_postal": "60117", + "coordonnees_gps": [ + 49.2201415565, + 2.94864804292 + ], + "libelle_d_acheminement": "GONDREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94864804292, + 49.2201415565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03c21ca625e5e4df9c9c98463a4b1682e8bd607d", + "fields": { + "code_commune_insee": "86136", + "nom_de_la_commune": "LIZANT", + "code_postal": "86400", + "coordonnees_gps": [ + 46.0800915192, + 0.283290344941 + ], + "libelle_d_acheminement": "LIZANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.283290344941, + 46.0800915192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99fb068faf0db1787e002d5a50394a56244b9366", + "fields": { + "code_commune_insee": "60282", + "nom_de_la_commune": "GOUVIEUX", + "code_postal": "60270", + "coordonnees_gps": [ + 49.1895816267, + 2.42026324989 + ], + "libelle_d_acheminement": "GOUVIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42026324989, + 49.1895816267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13aabbc49aaa954a86d7c7e4e38396d0071986d2", + "fields": { + "code_commune_insee": "86138", + "nom_de_la_commune": "LUCHAPT", + "code_postal": "86430", + "coordonnees_gps": [ + 46.1824696586, + 0.770449311399 + ], + "libelle_d_acheminement": "LUCHAPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.770449311399, + 46.1824696586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f03d3f419f173b74d74621717e5a8f2f78d5498c", + "fields": { + "code_commune_insee": "60297", + "nom_de_la_commune": "LE HAMEL", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6453258761, + 2.01203536602 + ], + "libelle_d_acheminement": "LE HAMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01203536602, + 49.6453258761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c606cfe34dc25f46adc44bf326612aefc21866b", + "fields": { + "code_commune_insee": "86139", + "nom_de_la_commune": "LUSIGNAN", + "code_postal": "86600", + "coordonnees_gps": [ + 46.4377572057, + 0.114217790925 + ], + "libelle_d_acheminement": "LUSIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.114217790925, + 46.4377572057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dab83324b6f59acbeef69ba293edd723ddf387e", + "fields": { + "code_commune_insee": "60303", + "nom_de_la_commune": "HAUTBOS", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6277629796, + 1.86981129568 + ], + "libelle_d_acheminement": "HAUTBOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86981129568, + 49.6277629796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e34ea1644cbb095b3d6a320f2e26a61687b6a3a3", + "fields": { + "code_commune_insee": "86142", + "nom_de_la_commune": "MAILLE", + "code_postal": "86190", + "coordonnees_gps": [ + 46.6780011133, + 0.0958034977141 + ], + "libelle_d_acheminement": "MAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0958034977141, + 46.6780011133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e78e4bcdc45f3364cde05d08406a3b2af29b655b", + "fields": { + "code_commune_insee": "60308", + "nom_de_la_commune": "HEMEVILLERS", + "code_postal": "60190", + "coordonnees_gps": [ + 49.471836742, + 2.67275797723 + ], + "libelle_d_acheminement": "HEMEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67275797723, + 49.471836742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6166b39e4cc765971407bf83eaa0194155deb71", + "fields": { + "code_commune_insee": "86143", + "nom_de_la_commune": "MAIRE", + "code_postal": "86270", + "coordonnees_gps": [ + 46.8576358517, + 0.717189204675 + ], + "libelle_d_acheminement": "MAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.717189204675, + 46.8576358517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "386c21ca5384a670500b00e5ea0d577be3fa5659", + "fields": { + "code_commune_insee": "60309", + "nom_de_la_commune": "HENONVILLE", + "code_postal": "60119", + "coordonnees_gps": [ + 49.2100313417, + 2.05597443118 + ], + "libelle_d_acheminement": "HENONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05597443118, + 49.2100313417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "000fce6753dcbd5a53f64e4cf2c061fc532e7375", + "fields": { + "code_commune_insee": "86150", + "nom_de_la_commune": "MASSOGNES", + "code_postal": "86170", + "coordonnees_gps": [ + 46.7475089271, + 0.0578073811289 + ], + "libelle_d_acheminement": "MASSOGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0578073811289, + 46.7475089271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13209df9d092abba8d93460334d1447e486c7cd8", + "fields": { + "code_commune_insee": "60314", + "nom_de_la_commune": "HETOMESNIL", + "code_postal": "60360", + "coordonnees_gps": [ + 49.631830901, + 2.04103130989 + ], + "libelle_d_acheminement": "HETOMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04103130989, + 49.631830901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbd29429b2aedb8a93c83f5a290f5b2e09c7e3be", + "fields": { + "ligne_5": "OUZILLY VIGNOLLES", + "code_commune_insee": "86161", + "libelle_d_acheminement": "MONCONTOUR", + "code_postal": "86330", + "nom_de_la_commune": "MONCONTOUR", + "coordonnees_gps": [ + 46.8774293684, + 0.00356289624888 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00356289624888, + 46.8774293684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af9b9cb5d5f1439e0843b5d61c2c0c1a155be593", + "fields": { + "code_commune_insee": "60317", + "nom_de_la_commune": "HONDAINVILLE", + "code_postal": "60250", + "coordonnees_gps": [ + 49.344933293, + 2.30785725358 + ], + "libelle_d_acheminement": "HONDAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30785725358, + 49.344933293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d756319c7806e2a442f3102573b0fe4c604e5ef0", + "fields": { + "code_commune_insee": "86162", + "nom_de_la_commune": "MONDION", + "code_postal": "86230", + "coordonnees_gps": [ + 46.9382399083, + 0.47233536935 + ], + "libelle_d_acheminement": "MONDION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.47233536935, + 46.9382399083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d9967d3bc9d843e1bd5a41361671003f8168939", + "fields": { + "code_commune_insee": "60318", + "nom_de_la_commune": "HOUDANCOURT", + "code_postal": "60710", + "coordonnees_gps": [ + 49.3375370465, + 2.64802307732 + ], + "libelle_d_acheminement": "HOUDANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64802307732, + 49.3375370465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09fb90ead542d5ea91e057125fe484d103d9bdcc", + "fields": { + "code_commune_insee": "86167", + "nom_de_la_commune": "MONTS SUR GUESNES", + "code_postal": "86420", + "coordonnees_gps": [ + 46.9128254124, + 0.193721339579 + ], + "libelle_d_acheminement": "MONTS SUR GUESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.193721339579, + 46.9128254124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a33af785e2aa3f77e735a496dad87419f089c40c", + "fields": { + "code_commune_insee": "60327", + "nom_de_la_commune": "JOUY SOUS THELLE", + "code_postal": "60240", + "coordonnees_gps": [ + 49.3223267421, + 1.96068066064 + ], + "libelle_d_acheminement": "JOUY SOUS THELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96068066064, + 49.3223267421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "639da9772df659b404ea7e9366625c297ec48855", + "fields": { + "code_commune_insee": "86171", + "nom_de_la_commune": "MOUSSAC", + "code_postal": "86150", + "coordonnees_gps": [ + 46.276159957, + 0.691938825774 + ], + "libelle_d_acheminement": "MOUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.691938825774, + 46.276159957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4c1c01472b0db8bc0d52a85c2942e761b2410ce", + "fields": { + "code_commune_insee": "60331", + "nom_de_la_commune": "LABOSSE", + "code_postal": "60590", + "coordonnees_gps": [ + 49.3540781627, + 1.89832023675 + ], + "libelle_d_acheminement": "LABOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89832023675, + 49.3540781627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4533d0ae46797ea5fb086422d2f20937740e464c", + "fields": { + "code_commune_insee": "86178", + "nom_de_la_commune": "NIEUIL L ESPOIR", + "code_postal": "86340", + "coordonnees_gps": [ + 46.4856610471, + 0.464374544179 + ], + "libelle_d_acheminement": "NIEUIL L ESPOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.464374544179, + 46.4856610471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7a105d6fd3ca96c46bc52858b9b38b4b091d967", + "fields": { + "code_commune_insee": "60336", + "nom_de_la_commune": "LACHAUSSEE DU BOIS D ECU", + "code_postal": "60480", + "coordonnees_gps": [ + 49.562241218, + 2.17627773976 + ], + "libelle_d_acheminement": "LACHAUSSEE DU BOIS D ECU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17627773976, + 49.562241218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6ed2cb5b2f458e6128c53e09c14b348701206f0", + "fields": { + "code_commune_insee": "86180", + "nom_de_la_commune": "NOUAILLE MAUPERTUIS", + "code_postal": "86340", + "coordonnees_gps": [ + 46.5052879632, + 0.418002332762 + ], + "libelle_d_acheminement": "NOUAILLE MAUPERTUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.418002332762, + 46.5052879632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b06282f041b78eef486a114be0ad659a2cb19df0", + "fields": { + "code_commune_insee": "60348", + "nom_de_la_commune": "LARBROYE", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5711545725, + 2.96064290936 + ], + "libelle_d_acheminement": "LARBROYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96064290936, + 49.5711545725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c5ce97ae4cf47f505194e1242d9cae0b2286d75", + "fields": { + "code_commune_insee": "86192", + "nom_de_la_commune": "PLAISANCE", + "code_postal": "86500", + "coordonnees_gps": [ + 46.3144693498, + 0.854061453997 + ], + "libelle_d_acheminement": "PLAISANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.854061453997, + 46.3144693498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0926ae7fe7411244c1986603886699120261b40", + "fields": { + "code_commune_insee": "60353", + "nom_de_la_commune": "LAVACQUERIE", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6799986377, + 2.10079870289 + ], + "libelle_d_acheminement": "LAVACQUERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10079870289, + 49.6799986377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f557861e836de84347d307dc91d365de9c3f618e", + "fields": { + "code_commune_insee": "86195", + "nom_de_la_commune": "PORT DE PILES", + "code_postal": "86220", + "coordonnees_gps": [ + 46.9999667755, + 0.59772473181 + ], + "libelle_d_acheminement": "PORT DE PILES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59772473181, + 46.9999667755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ef199e43417519c7e87f6d9420f553a4d529648", + "fields": { + "code_commune_insee": "60354", + "nom_de_la_commune": "LAVERRIERE", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6863142025, + 2.01097764056 + ], + "libelle_d_acheminement": "LAVERRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01097764056, + 49.6863142025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55ef885fc3b42d7cf08b56c3ea928b8920a74357", + "fields": { + "code_commune_insee": "86205", + "nom_de_la_commune": "RANTON", + "code_postal": "86200", + "coordonnees_gps": [ + 46.9989197523, + -0.0327224982621 + ], + "libelle_d_acheminement": "RANTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0327224982621, + 46.9989197523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d93eaaa50c7e50aa42210c5e7fc0bd1afc7346d", + "fields": { + "code_commune_insee": "60358", + "nom_de_la_commune": "LEVIGNEN", + "code_postal": "60800", + "coordonnees_gps": [ + 49.1970697917, + 2.91542960657 + ], + "libelle_d_acheminement": "LEVIGNEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91542960657, + 49.1970697917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb6e846124b7467c2501b8219116291ee928b375", + "fields": { + "code_commune_insee": "86214", + "nom_de_la_commune": "ST BENOIT", + "code_postal": "86280", + "coordonnees_gps": [ + 46.5486469496, + 0.352443691442 + ], + "libelle_d_acheminement": "ST BENOIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.352443691442, + 46.5486469496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89b37259de556280b8a2ab34b1dade2ab92b35fa", + "fields": { + "code_commune_insee": "60361", + "nom_de_la_commune": "LIANCOURT ST PIERRE", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2330864401, + 1.90635269506 + ], + "libelle_d_acheminement": "LIANCOURT ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90635269506, + 49.2330864401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb5e3ed438b9aefd9f40acd36d599c72fe9acc8e", + "fields": { + "code_commune_insee": "86218", + "nom_de_la_commune": "ST CLAIR", + "code_postal": "86330", + "coordonnees_gps": [ + 46.881517057, + 0.0572109516962 + ], + "libelle_d_acheminement": "ST CLAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0572109516962, + 46.881517057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef59dc10ead2e79759f3adc3d4b938ff4b88d0ba", + "fields": { + "code_commune_insee": "60362", + "nom_de_la_commune": "LIBERMONT", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6880319126, + 2.98026221191 + ], + "libelle_d_acheminement": "LIBERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98026221191, + 49.6880319126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15a45c3bc0ab73694bab4a2f625d88815fa6d2f1", + "fields": { + "code_commune_insee": "86234", + "nom_de_la_commune": "ST MARTIN L ARS", + "code_postal": "86350", + "coordonnees_gps": [ + 46.2123889925, + 0.556851383529 + ], + "libelle_d_acheminement": "ST MARTIN L ARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.556851383529, + 46.2123889925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9838cac452b802e3cbf6a47f4cc8c473ecdc5e21", + "fields": { + "code_commune_insee": "60366", + "nom_de_la_commune": "LITZ", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4262725966, + 2.32354551734 + ], + "libelle_d_acheminement": "LITZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32354551734, + 49.4262725966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6731011f511ebfb4748fc4190d3a7320a31bd6e8", + "fields": { + "code_commune_insee": "86236", + "nom_de_la_commune": "ST PIERRE DE MAILLE", + "code_postal": "86260", + "coordonnees_gps": [ + 46.6777213024, + 0.825185186332 + ], + "libelle_d_acheminement": "ST PIERRE DE MAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.825185186332, + 46.6777213024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8419b8b33897c51c3090081b9d9d8b2c72c51e4e", + "fields": { + "code_commune_insee": "60369", + "nom_de_la_commune": "LONGUEIL STE MARIE", + "code_postal": "60126", + "coordonnees_gps": [ + 49.3400219614, + 2.71142471159 + ], + "libelle_d_acheminement": "LONGUEIL STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71142471159, + 49.3400219614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "213f3a7a3f9ff59170f590cc324d978146e6321e", + "fields": { + "code_commune_insee": "86239", + "nom_de_la_commune": "STE RADEGONDE", + "code_postal": "86300", + "coordonnees_gps": [ + 46.6183112808, + 0.700038534304 + ], + "libelle_d_acheminement": "STE RADEGONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.700038534304, + 46.6183112808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f5f75832f48bace6f7519cb6c5d3c63ca25eb45", + "fields": { + "code_commune_insee": "60375", + "nom_de_la_commune": "MAIMBEVILLE", + "code_postal": "60600", + "coordonnees_gps": [ + 49.4147776174, + 2.522051381 + ], + "libelle_d_acheminement": "MAIMBEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.522051381, + 49.4147776174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "770270d6986916a8aea8a2e9e11bb0f651e03cb4", + "fields": { + "code_commune_insee": "86241", + "nom_de_la_commune": "ST REMY SUR CREUSE", + "code_postal": "86220", + "coordonnees_gps": [ + 46.934761065, + 0.68067530374 + ], + "libelle_d_acheminement": "ST REMY SUR CREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68067530374, + 46.934761065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74a1a2f7ebb8ff84c4c1c157d7b2fb337d941513", + "fields": { + "code_commune_insee": "60381", + "nom_de_la_commune": "MARGNY AUX CERISES", + "code_postal": "60310", + "coordonnees_gps": [ + 49.6724443709, + 2.86865853956 + ], + "libelle_d_acheminement": "MARGNY AUX CERISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86865853956, + 49.6724443709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8968e88350e18cd8862dc5b4868e0c9476a28d70", + "fields": { + "code_commune_insee": "86252", + "nom_de_la_commune": "SAMMARCOLLES", + "code_postal": "86200", + "coordonnees_gps": [ + 47.0399718378, + 0.170367422545 + ], + "libelle_d_acheminement": "SAMMARCOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.170367422545, + 47.0399718378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1517ec2a7a9feb8130af8f09dfbc689dde4ef1b", + "fields": { + "code_commune_insee": "60385", + "nom_de_la_commune": "MAROLLES", + "code_postal": "60890", + "coordonnees_gps": [ + 49.1636748962, + 3.10850778789 + ], + "libelle_d_acheminement": "MAROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10850778789, + 49.1636748962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17eabecab1ef64813ef5ebb1f04fd3f105e622d4", + "fields": { + "code_commune_insee": "86255", + "nom_de_la_commune": "SAVIGNE", + "code_postal": "86400", + "coordonnees_gps": [ + 46.1709124872, + 0.330245588195 + ], + "libelle_d_acheminement": "SAVIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.330245588195, + 46.1709124872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efbd051fc8d5f798fc1a22eb12b48ead4f0b52af", + "fields": { + "code_commune_insee": "60393", + "nom_de_la_commune": "MELLO", + "code_postal": "60660", + "coordonnees_gps": [ + 49.2782636292, + 2.37545666755 + ], + "libelle_d_acheminement": "MELLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37545666755, + 49.2782636292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62875305794938570c1713e15f2f9752effa36cb", + "fields": { + "code_commune_insee": "86261", + "nom_de_la_commune": "SEVRES ANXAUMONT", + "code_postal": "86800", + "coordonnees_gps": [ + 46.5739320338, + 0.46197050544 + ], + "libelle_d_acheminement": "SEVRES ANXAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46197050544, + 46.5739320338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92d2a14d4bec25c9ab714f9be250bb1d95cd4451", + "fields": { + "code_commune_insee": "60401", + "nom_de_la_commune": "LE MESNIL THERIBUS", + "code_postal": "60240", + "coordonnees_gps": [ + 49.3057295939, + 1.99122891939 + ], + "libelle_d_acheminement": "LE MESNIL THERIBUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99122891939, + 49.3057295939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cccee5ff24111bc87cb9eed389742516914058e5", + "fields": { + "code_commune_insee": "86265", + "nom_de_la_commune": "SOSSAIS", + "code_postal": "86230", + "coordonnees_gps": [ + 46.8680162271, + 0.37661262737 + ], + "libelle_d_acheminement": "SOSSAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37661262737, + 46.8680162271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcf90fe35cbdc4abdc03ecf9fc1e0ed245199f9c", + "fields": { + "code_commune_insee": "60402", + "nom_de_la_commune": "LE MEUX", + "code_postal": "60880", + "coordonnees_gps": [ + 49.3675243058, + 2.74517943461 + ], + "libelle_d_acheminement": "LE MEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74517943461, + 49.3675243058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2099b7e30d11c7d733a63419117140ad204ed27", + "fields": { + "code_commune_insee": "86271", + "nom_de_la_commune": "THURAGEAU", + "code_postal": "86110", + "coordonnees_gps": [ + 46.7777377985, + 0.268042481696 + ], + "libelle_d_acheminement": "THURAGEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.268042481696, + 46.7777377985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3464e5760bae178dee4a1c4aae779eb31928d38d", + "fields": { + "code_commune_insee": "60405", + "nom_de_la_commune": "MOLIENS", + "code_postal": "60220", + "coordonnees_gps": [ + 49.6713332232, + 1.81534943912 + ], + "libelle_d_acheminement": "MOLIENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81534943912, + 49.6713332232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "696019b400c1b454cd10ef3b8b6b3332b379248b", + "fields": { + "code_commune_insee": "86273", + "nom_de_la_commune": "LA TRIMOUILLE", + "code_postal": "86290", + "coordonnees_gps": [ + 46.4540599175, + 1.05894947542 + ], + "libelle_d_acheminement": "LA TRIMOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05894947542, + 46.4540599175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e1556fb6bf7fd94f0e23524add28131bf9add43", + "fields": { + "code_commune_insee": "60408", + "nom_de_la_commune": "MONCHY HUMIERES", + "code_postal": "60113", + "coordonnees_gps": [ + 49.4768018948, + 2.73831899509 + ], + "libelle_d_acheminement": "MONCHY HUMIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73831899509, + 49.4768018948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddb64ea8a4e990ea221f53f59585172df69494c3", + "fields": { + "code_commune_insee": "86279", + "nom_de_la_commune": "VAUX SUR VIENNE", + "code_postal": "86220", + "coordonnees_gps": [ + 46.9093051898, + 0.560295416492 + ], + "libelle_d_acheminement": "VAUX SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.560295416492, + 46.9093051898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eff6693f43b14e65220fc41be6c68867b33b5b90", + "fields": { + "code_commune_insee": "60411", + "nom_de_la_commune": "MONNEVILLE", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2123743231, + 1.97064890593 + ], + "libelle_d_acheminement": "MONNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97064890593, + 49.2123743231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12d3ee1996ae2e378ded52cc588c120e396c154c", + "fields": { + "ligne_5": "CHARRAIS", + "code_commune_insee": "86281", + "libelle_d_acheminement": "ST MARTIN LA PALLU", + "code_postal": "86170", + "nom_de_la_commune": "ST MARTIN LA PALLU", + "coordonnees_gps": [ + 46.7257294261, + 0.312684454169 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.312684454169, + 46.7257294261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bdc9b0dd5688e6341c27f06104df69a3cce40ea", + "fields": { + "code_commune_insee": "60413", + "nom_de_la_commune": "MONTAGNY STE FELICITE", + "code_postal": "60950", + "coordonnees_gps": [ + 49.1299636301, + 2.74708435457 + ], + "libelle_d_acheminement": "MONTAGNY STE FELICITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74708435457, + 49.1299636301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c48aee9447e8ca4fc2d008ad8e5159d1f2bfed84", + "fields": { + "ligne_5": "VENDEUVRE DU POITOU", + "code_commune_insee": "86281", + "libelle_d_acheminement": "ST MARTIN LA PALLU", + "code_postal": "86380", + "nom_de_la_commune": "ST MARTIN LA PALLU", + "coordonnees_gps": [ + 46.7257294261, + 0.312684454169 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.312684454169, + 46.7257294261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d54c5f00bc327840e3df85227848696450502337", + "fields": { + "code_commune_insee": "60421", + "nom_de_la_commune": "MONT L EVEQUE", + "code_postal": "60300", + "coordonnees_gps": [ + 49.1904259616, + 2.6339267851 + ], + "libelle_d_acheminement": "MONT L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6339267851, + 49.1904259616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6bc411a97ac9d8aa789ffc5a9946634f79d20b6", + "fields": { + "ligne_5": "POUZIOUX LA JARRIE", + "code_commune_insee": "86297", + "libelle_d_acheminement": "VOUNEUIL SOUS BIARD", + "code_postal": "86580", + "nom_de_la_commune": "VOUNEUIL SOUS BIARD", + "coordonnees_gps": [ + 46.5792555716, + 0.270706459664 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.270706459664, + 46.5792555716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47e6afaa2f21617b0195330be2999427a164473e", + "fields": { + "code_commune_insee": "60428", + "nom_de_la_commune": "LE MONT ST ADRIEN", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4492939211, + 2.01420488112 + ], + "libelle_d_acheminement": "LE MONT ST ADRIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01420488112, + 49.4492939211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d06748f99c828fc06b0bbdef98056eb3079d460", + "fields": { + "code_commune_insee": "86299", + "nom_de_la_commune": "VOUZAILLES", + "code_postal": "86170", + "coordonnees_gps": [ + 46.7134181526, + 0.0956426803777 + ], + "libelle_d_acheminement": "VOUZAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0956426803777, + 46.7134181526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79d8a8ce06be1bedea2d6ce6bc522fc383473fd9", + "fields": { + "code_commune_insee": "60432", + "nom_de_la_commune": "MORTEFONTAINE", + "code_postal": "60128", + "coordonnees_gps": [ + 49.1222609821, + 2.60876023484 + ], + "libelle_d_acheminement": "MORTEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60876023484, + 49.1222609821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "006491877c924ed03a789e5dfacda2c98db63b5b", + "fields": { + "code_commune_insee": "87003", + "nom_de_la_commune": "ARNAC LA POSTE", + "code_postal": "87160", + "coordonnees_gps": [ + 46.2639834442, + 1.37338277352 + ], + "libelle_d_acheminement": "ARNAC LA POSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37338277352, + 46.2639834442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be6f08a92bb1963b96823ff56c599e686b72c2ea", + "fields": { + "code_commune_insee": "60441", + "nom_de_la_commune": "MOYVILLERS", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4071700438, + 2.64288403755 + ], + "libelle_d_acheminement": "MOYVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64288403755, + 49.4071700438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3386e6a56c3f686c00ef0485c0a2b5943212f64b", + "fields": { + "code_commune_insee": "87005", + "nom_de_la_commune": "AUREIL", + "code_postal": "87220", + "coordonnees_gps": [ + 45.8095050976, + 1.40129162849 + ], + "libelle_d_acheminement": "AUREIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40129162849, + 45.8095050976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f2242c5a0e367f39666039cf88dffaa37825068", + "fields": { + "code_commune_insee": "60445", + "nom_de_la_commune": "NAMPCEL", + "code_postal": "60400", + "coordonnees_gps": [ + 49.4918764493, + 3.09066471681 + ], + "libelle_d_acheminement": "NAMPCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09066471681, + 49.4918764493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "997fa276c79a03d0ec6db688f748526c09edd398", + "fields": { + "code_commune_insee": "87012", + "nom_de_la_commune": "BERNEUIL", + "code_postal": "87300", + "coordonnees_gps": [ + 46.0655121435, + 1.10952207011 + ], + "libelle_d_acheminement": "BERNEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10952207011, + 46.0655121435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "291545ab3b07be4b84f9cd99fc4203ecbc5a9ffb", + "fields": { + "code_commune_insee": "60448", + "nom_de_la_commune": "NEUFCHELLES", + "code_postal": "60890", + "coordonnees_gps": [ + 49.1155773029, + 3.05195614829 + ], + "libelle_d_acheminement": "NEUFCHELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05195614829, + 49.1155773029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0ca3b1f9653612dee01d46c3119be3e1e967e5f", + "fields": { + "code_commune_insee": "87019", + "nom_de_la_commune": "BOISSEUIL", + "code_postal": "87220", + "coordonnees_gps": [ + 45.7619114827, + 1.32848172081 + ], + "libelle_d_acheminement": "BOISSEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32848172081, + 45.7619114827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "422225056a3551fcf3e42a8d209a2fa9c26ebdd5", + "fields": { + "code_commune_insee": "60451", + "nom_de_la_commune": "NEUILLY SOUS CLERMONT", + "code_postal": "60290", + "coordonnees_gps": [ + 49.3496103814, + 2.40083374421 + ], + "libelle_d_acheminement": "NEUILLY SOUS CLERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40083374421, + 49.3496103814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1498aa7e1e92b0c67fd11553ddc60541b9100dc5", + "fields": { + "code_commune_insee": "87020", + "nom_de_la_commune": "BONNAC LA COTE", + "code_postal": "87270", + "coordonnees_gps": [ + 45.9470701507, + 1.29289430243 + ], + "libelle_d_acheminement": "BONNAC LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29289430243, + 45.9470701507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd1e4d1691b3b1b783f5fb0ffbd08a31e493407e", + "fields": { + "code_commune_insee": "60452", + "nom_de_la_commune": "NEUVILLE BOSC", + "code_postal": "60119", + "coordonnees_gps": [ + 49.2027066455, + 2.01455667374 + ], + "libelle_d_acheminement": "NEUVILLE BOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01455667374, + 49.2027066455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4fba24276bb75f9d31e80d8e1a2186fca08f6dd", + "fields": { + "ligne_5": "DARNAC", + "code_commune_insee": "87028", + "libelle_d_acheminement": "VAL D OIRE ET GARTEMPE", + "code_postal": "87320", + "nom_de_la_commune": "VAL D OIRE ET GARTEMPE", + "coordonnees_gps": [ + 46.2418910166, + 0.90395962145 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90395962145, + 46.2418910166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc852035201da414f044f1fe0cc6026fae444a6b", + "fields": { + "code_commune_insee": "60463", + "nom_de_la_commune": "NOGENT SUR OISE", + "code_postal": "60180", + "coordonnees_gps": [ + 49.2761508066, + 2.46417183632 + ], + "libelle_d_acheminement": "NOGENT SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46417183632, + 49.2761508066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "328ed9d0e8776a3250f85cbbffcd8bd34d44f1b6", + "fields": { + "ligne_5": "THIAT", + "code_commune_insee": "87028", + "libelle_d_acheminement": "VAL D OIRE ET GARTEMPE", + "code_postal": "87320", + "nom_de_la_commune": "VAL D OIRE ET GARTEMPE", + "coordonnees_gps": [ + 46.2418910166, + 0.90395962145 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90395962145, + 46.2418910166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cec1644d8cb7c8f802ff2dc24fc0db3a443279d", + "fields": { + "code_commune_insee": "60468", + "nom_de_la_commune": "NOURARD LE FRANC", + "code_postal": "60130", + "coordonnees_gps": [ + 49.5007862004, + 2.36368956147 + ], + "libelle_d_acheminement": "NOURARD LE FRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36368956147, + 49.5007862004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d6f37a40039f4e64c8bf8bde1ff5aa3fc1f9a7b", + "fields": { + "code_commune_insee": "87034", + "nom_de_la_commune": "CHAMPAGNAC LA RIVIERE", + "code_postal": "87150", + "coordonnees_gps": [ + 45.6948820019, + 0.913114020173 + ], + "libelle_d_acheminement": "CHAMPAGNAC LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.913114020173, + 45.6948820019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f1ba0acbe98c43c37ef11ae3a2fdff6a893ac25", + "fields": { + "code_commune_insee": "60469", + "nom_de_la_commune": "NOVILLERS", + "code_postal": "60730", + "coordonnees_gps": [ + 49.269638659, + 2.21663678041 + ], + "libelle_d_acheminement": "NOVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21663678041, + 49.269638659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d7de43757f65982284c7c6dce66835bbdffd2cb", + "fields": { + "code_commune_insee": "87036", + "nom_de_la_commune": "CHAMPSAC", + "code_postal": "87230", + "coordonnees_gps": [ + 45.7039235898, + 0.962300272807 + ], + "libelle_d_acheminement": "CHAMPSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.962300272807, + 45.7039235898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dd41393de24b9f4e733bb1984b1af201839ae2a", + "fields": { + "code_commune_insee": "60476", + "nom_de_la_commune": "OMECOURT", + "code_postal": "60220", + "coordonnees_gps": [ + 49.6166743846, + 1.83402395723 + ], + "libelle_d_acheminement": "OMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83402395723, + 49.6166743846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1ec8ac6dbbd1686035025984706804d8bdfcddb", + "fields": { + "code_commune_insee": "87043", + "nom_de_la_commune": "CHEISSOUX", + "code_postal": "87460", + "coordonnees_gps": [ + 45.831716182, + 1.63811418482 + ], + "libelle_d_acheminement": "CHEISSOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63811418482, + 45.831716182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e529d49be6da581f8a316a9f2f586ddd3d2574e8", + "fields": { + "code_commune_insee": "60484", + "nom_de_la_commune": "OUDEUIL", + "code_postal": "60860", + "coordonnees_gps": [ + 49.5491561309, + 2.02722725517 + ], + "libelle_d_acheminement": "OUDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02722725517, + 49.5491561309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e1b76c9940a846df9c7f6cdf46b4db65c288345", + "fields": { + "code_commune_insee": "87044", + "nom_de_la_commune": "CHERONNAC", + "code_postal": "87600", + "coordonnees_gps": [ + 45.7566840064, + 0.753584510197 + ], + "libelle_d_acheminement": "CHERONNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.753584510197, + 45.7566840064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6764d0bdfa9ff8b2002de1dc2e00ed0c7e1977e0", + "fields": { + "code_commune_insee": "60492", + "nom_de_la_commune": "PIMPREZ", + "code_postal": "60170", + "coordonnees_gps": [ + 49.5123733256, + 2.95178055109 + ], + "libelle_d_acheminement": "PIMPREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95178055109, + 49.5123733256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92190075866d24e1cced9f6763345f603a2cbbcb", + "fields": { + "code_commune_insee": "87049", + "nom_de_la_commune": "COUSSAC BONNEVAL", + "code_postal": "87500", + "coordonnees_gps": [ + 45.51678588, + 1.32396460585 + ], + "libelle_d_acheminement": "COUSSAC BONNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32396460585, + 45.51678588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67affb4f5dc16fc74516bfd6d140bd690ae7dbfc", + "fields": { + "code_commune_insee": "60497", + "nom_de_la_commune": "LE PLESSIER SUR BULLES", + "code_postal": "60130", + "coordonnees_gps": [ + 49.4924154529, + 2.31813572468 + ], + "libelle_d_acheminement": "LE PLESSIER SUR BULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31813572468, + 49.4924154529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "761a8ac08297934c5512e73e195c0619753d60e9", + "fields": { + "code_commune_insee": "87073", + "nom_de_la_commune": "GORRE", + "code_postal": "87310", + "coordonnees_gps": [ + 45.7376552254, + 0.995309472743 + ], + "libelle_d_acheminement": "GORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.995309472743, + 45.7376552254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59a80e840256b2d7a1a2bbb22b3de0f2d7f6a8cb", + "fields": { + "code_commune_insee": "60499", + "nom_de_la_commune": "PLESSIS DE ROYE", + "code_postal": "60310", + "coordonnees_gps": [ + 49.5715853896, + 2.82849127947 + ], + "libelle_d_acheminement": "PLESSIS DE ROYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82849127947, + 49.5715853896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ef0aa418610a53454c7257c1cad0018cc4cf6f0", + "fields": { + "code_commune_insee": "87084", + "nom_de_la_commune": "LAVIGNAC", + "code_postal": "87230", + "coordonnees_gps": [ + 45.7194893338, + 1.12198041488 + ], + "libelle_d_acheminement": "LAVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12198041488, + 45.7194893338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84771652edf0da317232d966ed9c10b4754ede3e", + "fields": { + "code_commune_insee": "60504", + "nom_de_la_commune": "PONCHON", + "code_postal": "60430", + "coordonnees_gps": [ + 49.3480922542, + 2.18400439052 + ], + "libelle_d_acheminement": "PONCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18400439052, + 49.3480922542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f27204dc3eb8f9749c73bcff2c94014c5da63fe3", + "fields": { + "code_commune_insee": "87085", + "nom_de_la_commune": "LIMOGES", + "code_postal": "87100", + "coordonnees_gps": [ + 45.8542549589, + 1.2487579024 + ], + "libelle_d_acheminement": "LIMOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2487579024, + 45.8542549589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cae72656010ba7e3c2e0c52f9c8c4c356d131972", + "fields": { + "code_commune_insee": "60505", + "nom_de_la_commune": "PONTARME", + "code_postal": "60520", + "coordonnees_gps": [ + 49.1652249379, + 2.55752249629 + ], + "libelle_d_acheminement": "PONTARME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55752249629, + 49.1652249379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fabfc68911742108eb7bd8d6013e057015f985d", + "fields": { + "code_commune_insee": "87085", + "nom_de_la_commune": "LIMOGES", + "code_postal": "87280", + "coordonnees_gps": [ + 45.8542549589, + 1.2487579024 + ], + "libelle_d_acheminement": "LIMOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2487579024, + 45.8542549589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeb63fece12d3cda62ece55de390c180dc8ee705", + "fields": { + "code_commune_insee": "60506", + "nom_de_la_commune": "PONT L EVEQUE", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5627550625, + 2.98667327051 + ], + "libelle_d_acheminement": "PONT L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98667327051, + 49.5627550625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1c1e6ee0c9615919b251fd463407254358ab43b", + "fields": { + "code_commune_insee": "87087", + "nom_de_la_commune": "LUSSAC LES EGLISES", + "code_postal": "87360", + "coordonnees_gps": [ + 46.341752819, + 1.17591592466 + ], + "libelle_d_acheminement": "LUSSAC LES EGLISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17591592466, + 46.341752819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f2ad710ab043077ee135a9efffc23c13ef8f291", + "fields": { + "code_commune_insee": "60508", + "nom_de_la_commune": "PONTPOINT", + "code_postal": "60700", + "coordonnees_gps": [ + 49.3004968016, + 2.64847829127 + ], + "libelle_d_acheminement": "PONTPOINT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64847829127, + 49.3004968016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77c242871d9a294d41edba3ca5b715aefb14a393", + "fields": { + "ligne_5": "MILHAGUET", + "code_commune_insee": "87092", + "libelle_d_acheminement": "MARVAL", + "code_postal": "87440", + "nom_de_la_commune": "MARVAL", + "coordonnees_gps": [ + 45.6348755661, + 0.7960449348 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7960449348, + 45.6348755661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3fc9346d545e691276e02bf773dcc96a1e50bf5", + "fields": { + "code_commune_insee": "60509", + "nom_de_la_commune": "PONT STE MAXENCE", + "code_postal": "60700", + "coordonnees_gps": [ + 49.3049711726, + 2.60798085563 + ], + "libelle_d_acheminement": "PONT STE MAXENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60798085563, + 49.3049711726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fce0ecb09faf16faf05fde8934f82454bf1f1d2", + "fields": { + "code_commune_insee": "87093", + "nom_de_la_commune": "MASLEON", + "code_postal": "87130", + "coordonnees_gps": [ + 45.7667545003, + 1.57463204916 + ], + "libelle_d_acheminement": "MASLEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57463204916, + 45.7667545003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a6a56bcacc40671c8032fdc8b54810c2f0203ad", + "fields": { + "code_commune_insee": "60516", + "nom_de_la_commune": "PUISEUX EN BRAY", + "code_postal": "60850", + "coordonnees_gps": [ + 49.4107616918, + 1.77846343904 + ], + "libelle_d_acheminement": "PUISEUX EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77846343904, + 49.4107616918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cc3176c1f2592e0a3b68ff1c54350cd4ef853a5", + "fields": { + "ligne_5": "BUSSIERE BOFFY", + "code_commune_insee": "87097", + "libelle_d_acheminement": "VAL D ISSOIRE", + "code_postal": "87330", + "nom_de_la_commune": "VAL D ISSOIRE", + "coordonnees_gps": [ + 46.1111458501, + 0.914010969665 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.914010969665, + 46.1111458501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cb0c45dc4f8d63bb36effbb382afdeb95d1e001", + "fields": { + "code_commune_insee": "60518", + "nom_de_la_commune": "PUITS LA VALLEE", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5836339442, + 2.19003543051 + ], + "libelle_d_acheminement": "PUITS LA VALLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19003543051, + 49.5836339442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d69a536bffbe16077894664cb6f1df24f24e174", + "fields": { + "code_commune_insee": "87100", + "nom_de_la_commune": "MONTROL SENARD", + "code_postal": "87330", + "coordonnees_gps": [ + 46.0172432009, + 0.952770711759 + ], + "libelle_d_acheminement": "MONTROL SENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.952770711759, + 46.0172432009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a164cd9cdfb6c047b95bc020052e3dcfa8dd165e", + "fields": { + "code_commune_insee": "60521", + "nom_de_la_commune": "QUINCAMPOIX FLEUZY", + "code_postal": "60220", + "coordonnees_gps": [ + 49.7455416962, + 1.76896943429 + ], + "libelle_d_acheminement": "QUINCAMPOIX FLEUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76896943429, + 49.7455416962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1885c2281ea9f184c9a9ee6cbe2dcc1d614e115", + "fields": { + "code_commune_insee": "87110", + "nom_de_la_commune": "ORADOUR SUR GLANE", + "code_postal": "87520", + "coordonnees_gps": [ + 45.9310728054, + 1.02303381376 + ], + "libelle_d_acheminement": "ORADOUR SUR GLANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02303381376, + 45.9310728054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "574c1c443ce0c2aa2474c60251a8d2e9e09ecdfb", + "fields": { + "code_commune_insee": "60522", + "nom_de_la_commune": "QUINQUEMPOIX", + "code_postal": "60130", + "coordonnees_gps": [ + 49.5472914802, + 2.41866842622 + ], + "libelle_d_acheminement": "QUINQUEMPOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41866842622, + 49.5472914802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce379a7b9d0e1a8d6017857408d67e32546848e9", + "fields": { + "code_commune_insee": "87111", + "nom_de_la_commune": "ORADOUR SUR VAYRES", + "code_postal": "87150", + "coordonnees_gps": [ + 45.74094203, + 0.879569821515 + ], + "libelle_d_acheminement": "ORADOUR SUR VAYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.879569821515, + 45.74094203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdb7d2cf3c0e214379ec933276678bddd7b9d7a4", + "fields": { + "code_commune_insee": "60524", + "nom_de_la_commune": "RANTIGNY", + "code_postal": "60290", + "coordonnees_gps": [ + 49.3338498991, + 2.43555395564 + ], + "libelle_d_acheminement": "RANTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43555395564, + 49.3338498991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df1b58318c86d0f102c4349a0d82db094966bb12", + "fields": { + "code_commune_insee": "87112", + "nom_de_la_commune": "PAGEAS", + "code_postal": "87230", + "coordonnees_gps": [ + 45.6827360451, + 1.01676119087 + ], + "libelle_d_acheminement": "PAGEAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01676119087, + 45.6827360451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dfa73dae15ec1a7bc46cfd46a7c76210963060c", + "fields": { + "code_commune_insee": "60528", + "nom_de_la_commune": "REILLY", + "code_postal": "60240", + "coordonnees_gps": [ + 49.240746359, + 1.85701777759 + ], + "libelle_d_acheminement": "REILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85701777759, + 49.240746359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f1c833ffdcff5c324766e91d9b8a1842428ece6", + "fields": { + "code_commune_insee": "87113", + "nom_de_la_commune": "LE PALAIS SUR VIENNE", + "code_postal": "87410", + "coordonnees_gps": [ + 45.8734595202, + 1.32526799595 + ], + "libelle_d_acheminement": "LE PALAIS SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32526799595, + 45.8734595202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dc240e3a444cac28101a3eea271c96b59c0b0c7", + "fields": { + "code_commune_insee": "60531", + "nom_de_la_commune": "REMY", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4346894863, + 2.70312726692 + ], + "libelle_d_acheminement": "REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70312726692, + 49.4346894863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e175c61308e8dec856bb750bf84c3bf042bf695", + "fields": { + "code_commune_insee": "87115", + "nom_de_la_commune": "PENSOL", + "code_postal": "87440", + "coordonnees_gps": [ + 45.5997290212, + 0.828238655778 + ], + "libelle_d_acheminement": "PENSOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.828238655778, + 45.5997290212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16486332482d3365d778b2187ec009c4ae06aeaf", + "fields": { + "code_commune_insee": "60533", + "nom_de_la_commune": "RESSONS SUR MATZ", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5337304815, + 2.73255438737 + ], + "libelle_d_acheminement": "RESSONS SUR MATZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73255438737, + 49.5337304815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab4c95fef0ba19a9b0be388a861878d982fd9a52", + "fields": { + "code_commune_insee": "87118", + "nom_de_la_commune": "PEYRILHAC", + "code_postal": "87510", + "coordonnees_gps": [ + 45.9617192828, + 1.12081829671 + ], + "libelle_d_acheminement": "PEYRILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12081829671, + 45.9617192828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3c233289fba92814d73e580dcb8e48d6640444c", + "fields": { + "code_commune_insee": "60537", + "nom_de_la_commune": "RIBECOURT DRESLINCOURT", + "code_postal": "60170", + "coordonnees_gps": [ + 49.5224343786, + 2.91876179627 + ], + "libelle_d_acheminement": "RIBECOURT DRESLINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91876179627, + 49.5224343786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94d52b7c5ba948ec2b3ff60b82823e726d36efc5", + "fields": { + "code_commune_insee": "87122", + "nom_de_la_commune": "RAZES", + "code_postal": "87640", + "coordonnees_gps": [ + 46.0371218575, + 1.34072006273 + ], + "libelle_d_acheminement": "RAZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34072006273, + 46.0371218575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba040cff7198cae4da864af6b34226bf766f446b", + "fields": { + "code_commune_insee": "60543", + "nom_de_la_commune": "ROCQUEMONT", + "code_postal": "60800", + "coordonnees_gps": [ + 49.2596362011, + 2.81990784544 + ], + "libelle_d_acheminement": "ROCQUEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81990784544, + 49.2596362011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77001b0e3e685b6c000eeada69ea577253479fac", + "fields": { + "code_commune_insee": "87124", + "nom_de_la_commune": "RILHAC LASTOURS", + "code_postal": "87800", + "coordonnees_gps": [ + 45.6589406753, + 1.11379948125 + ], + "libelle_d_acheminement": "RILHAC LASTOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11379948125, + 45.6589406753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0f3ac9d12d8e9f4d8945273ef01d4e5eea28e96", + "fields": { + "code_commune_insee": "60551", + "nom_de_la_commune": "ROUSSELOY", + "code_postal": "60660", + "coordonnees_gps": [ + 49.2984297084, + 2.39261860558 + ], + "libelle_d_acheminement": "ROUSSELOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39261860558, + 49.2984297084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0e9aabb83ace374d78856b0845a907b7e29104f", + "fields": { + "ligne_5": "ROUSSAC", + "code_commune_insee": "87128", + "libelle_d_acheminement": "ST PARDOUX LE LAC", + "code_postal": "87140", + "nom_de_la_commune": "ST PARDOUX LE LAC", + "coordonnees_gps": [ + 46.0716643434, + 1.19803600698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19803600698, + 46.0716643434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ac1261369c5bee3f1923a884b4bbbca6c4322a8", + "fields": { + "code_commune_insee": "60553", + "nom_de_la_commune": "ROUVILLERS", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4557611545, + 2.62988775379 + ], + "libelle_d_acheminement": "ROUVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62988775379, + 49.4557611545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c9a746b0434a042436f04ded84c2b8171e641d9", + "fields": { + "code_commune_insee": "87134", + "nom_de_la_commune": "STE ANNE ST PRIEST", + "code_postal": "87120", + "coordonnees_gps": [ + 45.6978352865, + 1.68283333119 + ], + "libelle_d_acheminement": "STE ANNE ST PRIEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68283333119, + 45.6978352865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5498ad4004818b194d62c545fb2046cc9e64b884", + "fields": { + "code_commune_insee": "60555", + "nom_de_la_commune": "ROUVROY LES MERLES", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6509731175, + 2.3591696972 + ], + "libelle_d_acheminement": "ROUVROY LES MERLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3591696972, + 49.6509731175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aeb877df4dc5b99089aaf26fcbec4a672f3acb6", + "fields": { + "code_commune_insee": "87135", + "nom_de_la_commune": "ST AUVENT", + "code_postal": "87310", + "coordonnees_gps": [ + 45.8104090888, + 0.921077426918 + ], + "libelle_d_acheminement": "ST AUVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.921077426918, + 45.8104090888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5125e9bfe9a0af7f7b92a965fc929615778e83ec", + "fields": { + "code_commune_insee": "60559", + "nom_de_la_commune": "LA RUE ST PIERRE", + "code_postal": "60510", + "coordonnees_gps": [ + 49.414002576, + 2.29121659235 + ], + "libelle_d_acheminement": "LA RUE ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29121659235, + 49.414002576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa73ccb5d3f74b87c635f4f09c09e99b6fe3cd1c", + "fields": { + "code_commune_insee": "87144", + "nom_de_la_commune": "ST GENEST SUR ROSELLE", + "code_postal": "87260", + "coordonnees_gps": [ + 45.700683139, + 1.42511195393 + ], + "libelle_d_acheminement": "ST GENEST SUR ROSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42511195393, + 45.700683139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "874722afb54b5b84f97c6a783c6988eee828ff8e", + "fields": { + "code_commune_insee": "60561", + "nom_de_la_commune": "RUSSY BEMONT", + "code_postal": "60117", + "coordonnees_gps": [ + 49.249762849, + 2.95637817553 + ], + "libelle_d_acheminement": "RUSSY BEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95637817553, + 49.249762849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53e1b27d6dadfef84b2a787b5343bbbecf32ae88", + "fields": { + "code_commune_insee": "87145", + "nom_de_la_commune": "ST GEORGES LES LANDES", + "code_postal": "87160", + "coordonnees_gps": [ + 46.3614067916, + 1.34841876713 + ], + "libelle_d_acheminement": "ST GEORGES LES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34841876713, + 46.3614067916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04f93c22136f1ef2dd151db93d8d3ff639d38687", + "fields": { + "ligne_5": "MONTHERLANT", + "code_commune_insee": "60570", + "libelle_d_acheminement": "ST CREPIN IBOUVILLERS", + "code_postal": "60790", + "nom_de_la_commune": "ST CREPIN IBOUVILLERS", + "coordonnees_gps": [ + 49.2592528645, + 2.06773136457 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06773136457, + 49.2592528645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "885f048c26d5e2762e293c456dab93841a8155c6", + "fields": { + "code_commune_insee": "87147", + "nom_de_la_commune": "ST GILLES LES FORETS", + "code_postal": "87130", + "coordonnees_gps": [ + 45.6290760183, + 1.66694771198 + ], + "libelle_d_acheminement": "ST GILLES LES FORETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66694771198, + 45.6290760183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6d9a6c7539c178a24321002a24be1b1b2a5a82c", + "fields": { + "code_commune_insee": "60583", + "nom_de_la_commune": "ST LEGER EN BRAY", + "code_postal": "60155", + "coordonnees_gps": [ + 49.3882002284, + 2.02635842771 + ], + "libelle_d_acheminement": "ST LEGER EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02635842771, + 49.3882002284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15cdf88e9e444338e1604739574dc6b8fa3a3005", + "fields": { + "code_commune_insee": "87149", + "nom_de_la_commune": "ST HILAIRE LA TREILLE", + "code_postal": "87190", + "coordonnees_gps": [ + 46.2488590739, + 1.31048173483 + ], + "libelle_d_acheminement": "ST HILAIRE LA TREILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31048173483, + 46.2488590739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "728d02dc79d59461b2d7955fcd2f9d6bdaad250e", + "fields": { + "code_commune_insee": "60587", + "nom_de_la_commune": "ST MARTIN LONGUEAU", + "code_postal": "60700", + "coordonnees_gps": [ + 49.3474706445, + 2.59996403152 + ], + "libelle_d_acheminement": "ST MARTIN LONGUEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59996403152, + 49.3474706445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0668f0cb99d0f2791fedf10dd5f80bfcddeb0b96", + "fields": { + "code_commune_insee": "87152", + "nom_de_la_commune": "ST JOUVENT", + "code_postal": "87510", + "coordonnees_gps": [ + 45.9566184003, + 1.20981236101 + ], + "libelle_d_acheminement": "ST JOUVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20981236101, + 45.9566184003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5362e7a3ec2b1dd8eaf02f1436af283b58e14007", + "fields": { + "code_commune_insee": "60595", + "nom_de_la_commune": "ST REMY EN L EAU", + "code_postal": "60130", + "coordonnees_gps": [ + 49.4703008041, + 2.42414502443 + ], + "libelle_d_acheminement": "ST REMY EN L EAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42414502443, + 49.4703008041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad98c3ec2c402f8e9f59fd54ffbc96101ddd7bab", + "fields": { + "code_commune_insee": "87154", + "nom_de_la_commune": "ST JUNIEN", + "code_postal": "87200", + "coordonnees_gps": [ + 45.9024520048, + 0.887855844778 + ], + "libelle_d_acheminement": "ST JUNIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.887855844778, + 45.9024520048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b34126206248a9cc4c8a4c1fd21f1eeebd9d404", + "fields": { + "code_commune_insee": "60597", + "nom_de_la_commune": "ST SAUVEUR", + "code_postal": "60320", + "coordonnees_gps": [ + 49.3285204781, + 2.80616373785 + ], + "libelle_d_acheminement": "ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80616373785, + 49.3285204781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e3f22671f02c747ad91ff4071186649050846d5", + "fields": { + "code_commune_insee": "87161", + "nom_de_la_commune": "ST LEONARD DE NOBLAT", + "code_postal": "87400", + "coordonnees_gps": [ + 45.8409102505, + 1.4960643503 + ], + "libelle_d_acheminement": "ST LEONARD DE NOBLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4960643503, + 45.8409102505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fba150fa0736f3c152538b40956318ef258cb025", + "fields": { + "code_commune_insee": "60605", + "nom_de_la_commune": "SARNOIS", + "code_postal": "60210", + "coordonnees_gps": [ + 49.680399425, + 1.92482666497 + ], + "libelle_d_acheminement": "SARNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92482666497, + 49.680399425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efc809273f9fcf8a16d4b62369ab79f719858cd0", + "fields": { + "code_commune_insee": "87165", + "nom_de_la_commune": "ST MARTIN LE MAULT", + "code_postal": "87360", + "coordonnees_gps": [ + 46.3605510633, + 1.21596116795 + ], + "libelle_d_acheminement": "ST MARTIN LE MAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21596116795, + 46.3605510633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ff328cbf61a6cc083671bfbcc940d259bf708a", + "fields": { + "code_commune_insee": "60611", + "nom_de_la_commune": "SENANTES", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4824791427, + 1.8336835055 + ], + "libelle_d_acheminement": "SENANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8336835055, + 49.4824791427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37c0d2dcc1f1c2bd0ccbc98a3378fd6a8bd4e81d", + "fields": { + "code_commune_insee": "87167", + "nom_de_la_commune": "ST MARTIN TERRESSUS", + "code_postal": "87400", + "coordonnees_gps": [ + 45.914804187, + 1.4602338555 + ], + "libelle_d_acheminement": "ST MARTIN TERRESSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4602338555, + 45.914804187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea46abbaafe922cb7db15d7ba66a4f08f2f14b27", + "fields": { + "code_commune_insee": "60614", + "nom_de_la_commune": "SERANS", + "code_postal": "60240", + "coordonnees_gps": [ + 49.1909346161, + 1.82734336167 + ], + "libelle_d_acheminement": "SERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82734336167, + 49.1909346161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b93a9d5353531661c655c481d89ef65ce189028", + "fields": { + "code_commune_insee": "87170", + "nom_de_la_commune": "ST MEARD", + "code_postal": "87130", + "coordonnees_gps": [ + 45.6640777038, + 1.54260179229 + ], + "libelle_d_acheminement": "ST MEARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54260179229, + 45.6640777038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e54f0b9a98c7ee08d1ed5b81372595f499f82fa", + "fields": { + "code_commune_insee": "60615", + "nom_de_la_commune": "SEREVILLERS", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6352843192, + 2.43516839817 + ], + "libelle_d_acheminement": "SEREVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43516839817, + 49.6352843192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0a8401424bf784198b6a4f4d77451341500fec1", + "fields": { + "code_commune_insee": "87172", + "nom_de_la_commune": "ST OUEN SUR GARTEMPE", + "code_postal": "87300", + "coordonnees_gps": [ + 46.1733248247, + 1.0789231125 + ], + "libelle_d_acheminement": "ST OUEN SUR GARTEMPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0789231125, + 46.1733248247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a844e49026076fb8014167bd558dde8e2b90f125", + "fields": { + "code_commune_insee": "60616", + "nom_de_la_commune": "SERIFONTAINE", + "code_postal": "60590", + "coordonnees_gps": [ + 49.3615071345, + 1.79376324721 + ], + "libelle_d_acheminement": "SERIFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79376324721, + 49.3615071345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e9f8ed98a4ded7ec2837b7e8172c2ecc04db3e1", + "fields": { + "code_commune_insee": "87183", + "nom_de_la_commune": "ST SYLVESTRE", + "code_postal": "87240", + "coordonnees_gps": [ + 45.9944455486, + 1.36513414834 + ], + "libelle_d_acheminement": "ST SYLVESTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36513414834, + 45.9944455486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "900cf061fcaba6095bedd3222b2e24d4d04afa79", + "fields": { + "code_commune_insee": "60620", + "nom_de_la_commune": "SILLY TILLARD", + "code_postal": "60430", + "coordonnees_gps": [ + 49.3175765383, + 2.15326097758 + ], + "libelle_d_acheminement": "SILLY TILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15326097758, + 49.3175765383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3927a1785c7452b7b2719d3c4abbb7cbe1343491", + "fields": { + "code_commune_insee": "87190", + "nom_de_la_commune": "SAUVIAT SUR VIGE", + "code_postal": "87400", + "coordonnees_gps": [ + 45.9066917646, + 1.58854846904 + ], + "libelle_d_acheminement": "SAUVIAT SUR VIGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58854846904, + 45.9066917646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31441e4b2289160932722e7ccab6ad54ca67fc31", + "fields": { + "code_commune_insee": "60622", + "nom_de_la_commune": "SOMMEREUX", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6749063836, + 2.00347221953 + ], + "libelle_d_acheminement": "SOMMEREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00347221953, + 49.6749063836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3785946ae379a47258ad39081fcce154ac4288c2", + "fields": { + "code_commune_insee": "87192", + "nom_de_la_commune": "SOLIGNAC", + "code_postal": "87110", + "coordonnees_gps": [ + 45.7548854905, + 1.25753601348 + ], + "libelle_d_acheminement": "SOLIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25753601348, + 45.7548854905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4274b4775f3c07441f67cece7f53804b97a5a4f8", + "fields": { + "code_commune_insee": "60624", + "nom_de_la_commune": "SULLY", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5582968682, + 1.77942067528 + ], + "libelle_d_acheminement": "SULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77942067528, + 49.5582968682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e773d6c9c64411d1892609adc51854d85d7d1d9e", + "fields": { + "code_commune_insee": "87193", + "nom_de_la_commune": "SURDOUX", + "code_postal": "87130", + "coordonnees_gps": [ + 45.605245887, + 1.65032140968 + ], + "libelle_d_acheminement": "SURDOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65032140968, + 45.605245887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc1679457b317a974358275b47138bf33f75d154", + "fields": { + "code_commune_insee": "60628", + "nom_de_la_commune": "THERDONNE", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4231387844, + 2.15300884654 + ], + "libelle_d_acheminement": "THERDONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15300884654, + 49.4231387844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "196669af27808e8de8a8ddaaf77b7b66cf880106", + "fields": { + "code_commune_insee": "87205", + "nom_de_la_commune": "LE VIGEN", + "code_postal": "87110", + "coordonnees_gps": [ + 45.7366862945, + 1.28148315318 + ], + "libelle_d_acheminement": "LE VIGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28148315318, + 45.7366862945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "016e3397e0ccd8aefafc6393d9febf4d150d3e65", + "fields": { + "code_commune_insee": "60636", + "nom_de_la_commune": "THOUROTTE", + "code_postal": "60150", + "coordonnees_gps": [ + 49.4793368724, + 2.88124505032 + ], + "libelle_d_acheminement": "THOUROTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88124505032, + 49.4793368724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50e771ae9b7272989d90e450256117e4a05a9d29", + "fields": { + "code_commune_insee": "88002", + "nom_de_la_commune": "AHEVILLE", + "code_postal": "88500", + "coordonnees_gps": [ + 48.2846289398, + 6.19935683316 + ], + "libelle_d_acheminement": "AHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19935683316, + 48.2846289398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b80105056bdb5f2beb05a296adc71b4d2047338a", + "fields": { + "code_commune_insee": "60637", + "nom_de_la_commune": "THURY EN VALOIS", + "code_postal": "60890", + "coordonnees_gps": [ + 49.1516839082, + 3.02876069607 + ], + "libelle_d_acheminement": "THURY EN VALOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02876069607, + 49.1516839082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "414dd06d513d8ced71c4f580d69a48515133bb69", + "fields": { + "code_commune_insee": "88003", + "nom_de_la_commune": "AINGEVILLE", + "code_postal": "88140", + "coordonnees_gps": [ + 48.2051593697, + 5.76821691233 + ], + "libelle_d_acheminement": "AINGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76821691233, + 48.2051593697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "190531cc8bb5ee53bed1422f5891121f58aca44d", + "fields": { + "code_commune_insee": "60641", + "nom_de_la_commune": "TRACY LE MONT", + "code_postal": "60170", + "coordonnees_gps": [ + 49.469047669, + 3.00367907538 + ], + "libelle_d_acheminement": "TRACY LE MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00367907538, + 49.469047669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aee9a8837b7b5ff237563b6f10538d2ef9711c66", + "fields": { + "code_commune_insee": "88004", + "nom_de_la_commune": "AINVELLE", + "code_postal": "88320", + "coordonnees_gps": [ + 47.9873795965, + 5.82891715063 + ], + "libelle_d_acheminement": "AINVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82891715063, + 47.9873795965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5f84395a265bbef23782a3a616f771a34bccbea", + "fields": { + "code_commune_insee": "60644", + "nom_de_la_commune": "TRIE CHATEAU", + "code_postal": "60590", + "coordonnees_gps": [ + 49.2868018979, + 1.81392681407 + ], + "libelle_d_acheminement": "TRIE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81392681407, + 49.2868018979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1197de3e7aebdb63fa94c2bfcb0a994859bbfa1", + "fields": { + "code_commune_insee": "88006", + "nom_de_la_commune": "AMBACOURT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3519571223, + 6.13963930684 + ], + "libelle_d_acheminement": "AMBACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13963930684, + 48.3519571223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98d25beede6c3e7a0375f49f83906c3687f2d367", + "fields": { + "code_commune_insee": "60646", + "nom_de_la_commune": "TROISSEREUX", + "code_postal": "60112", + "coordonnees_gps": [ + 49.4839349109, + 2.05750411907 + ], + "libelle_d_acheminement": "TROISSEREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05750411907, + 49.4839349109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "777bb9f5f807265cca9ec4b4c565079dd31e6edb", + "fields": { + "code_commune_insee": "88007", + "nom_de_la_commune": "AMEUVELLE", + "code_postal": "88410", + "coordonnees_gps": [ + 47.9496470575, + 5.95257004647 + ], + "libelle_d_acheminement": "AMEUVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95257004647, + 47.9496470575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eb9772c51025dd5eeb7f65491ffc89a438c0499", + "fields": { + "code_commune_insee": "60647", + "nom_de_la_commune": "TROSLY BREUIL", + "code_postal": "60350", + "coordonnees_gps": [ + 49.3995937676, + 2.96594779621 + ], + "libelle_d_acheminement": "TROSLY BREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96594779621, + 49.3995937676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e855ae7c87d116df525d873871b91b123404ec37", + "fields": { + "code_commune_insee": "88010", + "nom_de_la_commune": "AOUZE", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3842823677, + 5.86742713416 + ], + "libelle_d_acheminement": "AOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86742713416, + 48.3842823677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31dc7354a301ae764735d82869548a830d365c82", + "fields": { + "code_commune_insee": "60651", + "nom_de_la_commune": "ULLY ST GEORGES", + "code_postal": "60730", + "coordonnees_gps": [ + 49.2743733295, + 2.27563757505 + ], + "libelle_d_acheminement": "ULLY ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27563757505, + 49.2743733295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44a4c9a9d65b5b3d83399a289d94dd9ea20c17dd", + "fields": { + "code_commune_insee": "88017", + "nom_de_la_commune": "AULNOIS", + "code_postal": "88300", + "coordonnees_gps": [ + 48.2618188421, + 5.77706254235 + ], + "libelle_d_acheminement": "AULNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77706254235, + 48.2618188421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bd2024ef49743fbc2a93df9c573092238ece029", + "fields": { + "code_commune_insee": "60664", + "nom_de_la_commune": "VENDEUIL CAPLY", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6103570649, + 2.29253043617 + ], + "libelle_d_acheminement": "VENDEUIL CAPLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29253043617, + 49.6103570649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4054fe68297ec1454b45bb7b058c6773bf0e8920", + "fields": { + "code_commune_insee": "88022", + "nom_de_la_commune": "AUZAINVILLIERS", + "code_postal": "88140", + "coordonnees_gps": [ + 48.2367790067, + 5.8528751887 + ], + "libelle_d_acheminement": "AUZAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8528751887, + 48.2367790067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a53d42f504358da720ffe0cd481c8aa718b32522", + "fields": { + "code_commune_insee": "60666", + "nom_de_la_commune": "VER SUR LAUNETTE", + "code_postal": "60950", + "coordonnees_gps": [ + 49.1055721825, + 2.67260382684 + ], + "libelle_d_acheminement": "VER SUR LAUNETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67260382684, + 49.1055721825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "087a987ae5607189c8cf4b26c68ae77a30545758", + "fields": { + "code_commune_insee": "88026", + "nom_de_la_commune": "AYDOILLES", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2106398796, + 6.5713006214 + ], + "libelle_d_acheminement": "AYDOILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5713006214, + 48.2106398796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff409e8771e0c155056c1ebfb820c8b4426a6003", + "fields": { + "code_commune_insee": "60669", + "nom_de_la_commune": "VERDERONNE", + "code_postal": "60140", + "coordonnees_gps": [ + 49.3288283373, + 2.49160157922 + ], + "libelle_d_acheminement": "VERDERONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49160157922, + 49.3288283373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02d3cdf8d1371b54e974ae3c3ec5bf779c585e1f", + "fields": { + "ligne_5": "BAINS LES BAINS", + "code_commune_insee": "88029", + "libelle_d_acheminement": "LA VOGE LES BAINS", + "code_postal": "88240", + "nom_de_la_commune": "LA VOGE LES BAINS", + "coordonnees_gps": [ + 47.9968747353, + 6.26194585854 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26194585854, + 47.9968747353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b52c7ae0f8d432163e17c3c70e8292a9a322a0c", + "fields": { + "code_commune_insee": "60670", + "nom_de_la_commune": "VERNEUIL EN HALATTE", + "code_postal": "60550", + "coordonnees_gps": [ + 49.2729920918, + 2.53462190972 + ], + "libelle_d_acheminement": "VERNEUIL EN HALATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53462190972, + 49.2729920918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e070ac6be5d93b1be80db4250e4a872ecf908447", + "fields": { + "ligne_5": "THUNIMONT", + "code_commune_insee": "88029", + "libelle_d_acheminement": "LA VOGE LES BAINS", + "code_postal": "88240", + "nom_de_la_commune": "LA VOGE LES BAINS", + "coordonnees_gps": [ + 47.9968747353, + 6.26194585854 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26194585854, + 47.9968747353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d470861eb6da94724f79fba57751429898b89b0c", + "fields": { + "code_commune_insee": "60671", + "nom_de_la_commune": "VERSIGNY", + "code_postal": "60440", + "coordonnees_gps": [ + 49.1606951564, + 2.78351758115 + ], + "libelle_d_acheminement": "VERSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78351758115, + 49.1606951564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7923593cf19cb8c9b0336b886a73b3e9a31de881", + "fields": { + "code_commune_insee": "88031", + "nom_de_la_commune": "BALLEVILLE", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3345074129, + 5.84687687585 + ], + "libelle_d_acheminement": "BALLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84687687585, + 48.3345074129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "407d417d53c0316b9c6bd4ee91a5d48aa49d366c", + "fields": { + "code_commune_insee": "60672", + "nom_de_la_commune": "VEZ", + "code_postal": "60117", + "coordonnees_gps": [ + 49.256896611, + 3.00864189174 + ], + "libelle_d_acheminement": "VEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00864189174, + 49.256896611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14ed73d518ccc4083686c9edda7b202eeccc2d2b", + "fields": { + "code_commune_insee": "88038", + "nom_de_la_commune": "BATTEXEY", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3894996662, + 6.1814174155 + ], + "libelle_d_acheminement": "BATTEXEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1814174155, + 48.3894996662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "453d83db5fb876934b0ccda6ca49441c5d677004", + "fields": { + "code_commune_insee": "60675", + "nom_de_la_commune": "VIGNEMONT", + "code_postal": "60162", + "coordonnees_gps": [ + 49.496646661, + 2.77690716811 + ], + "libelle_d_acheminement": "VIGNEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77690716811, + 49.496646661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70fcb1f1852d4f77c08022164baccd9950c3c526", + "fields": { + "code_commune_insee": "88039", + "nom_de_la_commune": "BAUDRICOURT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3097281212, + 6.05717256739 + ], + "libelle_d_acheminement": "BAUDRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05717256739, + 48.3097281212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e63a6f8de7b629e805f255f917d2b681d33b11b", + "fields": { + "code_commune_insee": "60678", + "nom_de_la_commune": "VILLENEUVE LES SABLONS", + "code_postal": "60175", + "coordonnees_gps": [ + 49.2334293804, + 2.07366432947 + ], + "libelle_d_acheminement": "VILLENEUVE LES SABLONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07366432947, + 49.2334293804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96076149b17e52219ac29720a4c858813c96e4c6", + "fields": { + "code_commune_insee": "88047", + "nom_de_la_commune": "BEGNECOURT", + "code_postal": "88270", + "coordonnees_gps": [ + 48.209918075, + 6.16460965145 + ], + "libelle_d_acheminement": "BEGNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16460965145, + 48.209918075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b3093c9f46b9e393f6301225a448940c862ca48", + "fields": { + "code_commune_insee": "60684", + "nom_de_la_commune": "VILLERS ST PAUL", + "code_postal": "60870", + "coordonnees_gps": [ + 49.2881764019, + 2.49334191961 + ], + "libelle_d_acheminement": "VILLERS ST PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49334191961, + 49.2881764019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f0bf2aea8d88189759f7b2d7e0aa0691b0a29f4", + "fields": { + "code_commune_insee": "88048", + "nom_de_la_commune": "BELLEFONTAINE", + "code_postal": "88370", + "coordonnees_gps": [ + 48.0103753572, + 6.46413016754 + ], + "libelle_d_acheminement": "BELLEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46413016754, + 48.0103753572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0feda8812076e79c4f062934766bd28bd884f2c", + "fields": { + "code_commune_insee": "60695", + "nom_de_la_commune": "VINEUIL ST FIRMIN", + "code_postal": "60500", + "coordonnees_gps": [ + 49.2047770407, + 2.50069915861 + ], + "libelle_d_acheminement": "VINEUIL ST FIRMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50069915861, + 49.2047770407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bc6d34c431d35a0a0f08d4df46818e574040b20", + "fields": { + "code_commune_insee": "88059", + "nom_de_la_commune": "BIFFONTAINE", + "code_postal": "88430", + "coordonnees_gps": [ + 48.2134810702, + 6.81492622288 + ], + "libelle_d_acheminement": "BIFFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81492622288, + 48.2134810702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47190a47717b4722240291de4a25d409c99c9f42", + "fields": { + "code_commune_insee": "60699", + "nom_de_la_commune": "WAMBEZ", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5222569394, + 1.84463132714 + ], + "libelle_d_acheminement": "WAMBEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84463132714, + 49.5222569394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d436a9d8e986782b1e3b5f834cb942a14020caf8", + "fields": { + "code_commune_insee": "88060", + "nom_de_la_commune": "BLEMEREY", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3578801926, + 6.04237392778 + ], + "libelle_d_acheminement": "BLEMEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04237392778, + 48.3578801926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1deaf94c745adafc0997432f785998f8765e0432", + "fields": { + "code_commune_insee": "60700", + "nom_de_la_commune": "WARLUIS", + "code_postal": "60430", + "coordonnees_gps": [ + 49.3861654492, + 2.15875512452 + ], + "libelle_d_acheminement": "WARLUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15875512452, + 49.3861654492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6806df55b8637ead9eec09319b11509c5a6ebeb5", + "fields": { + "code_commune_insee": "88061", + "nom_de_la_commune": "BLEURVILLE", + "code_postal": "88410", + "coordonnees_gps": [ + 48.0671041641, + 5.95653169115 + ], + "libelle_d_acheminement": "BLEURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95653169115, + 48.0671041641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e131a4e55d9dc6931146e9f91b3b3463b052e47", + "fields": { + "code_commune_insee": "61002", + "nom_de_la_commune": "ALMENECHES", + "code_postal": "61570", + "coordonnees_gps": [ + 48.6982248016, + 0.125681370095 + ], + "libelle_d_acheminement": "ALMENECHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.125681370095, + 48.6982248016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0527043eb566bb66cb6d1454837a7be46b03a9b8", + "fields": { + "code_commune_insee": "88063", + "nom_de_la_commune": "BOCQUEGNEY", + "code_postal": "88270", + "coordonnees_gps": [ + 48.220268825, + 6.3097147916 + ], + "libelle_d_acheminement": "BOCQUEGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3097147916, + 48.220268825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13c18975eafed578d7510d0a10a62be4fe078fd9", + "fields": { + "code_commune_insee": "61005", + "nom_de_la_commune": "APPENAI SOUS BELLEME", + "code_postal": "61130", + "coordonnees_gps": [ + 48.3400960941, + 0.564708341058 + ], + "libelle_d_acheminement": "APPENAI SOUS BELLEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.564708341058, + 48.3400960941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4361f60e39a6466bc152d677d7855ccd64804e2", + "fields": { + "code_commune_insee": "88065", + "nom_de_la_commune": "BONVILLET", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1023210347, + 6.06320564561 + ], + "libelle_d_acheminement": "BONVILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06320564561, + 48.1023210347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1b1a34c3346c7966134f81e607e45367e0c64b6", + "fields": { + "ligne_5": "LA CARNEILLE", + "code_commune_insee": "61007", + "libelle_d_acheminement": "ATHIS VAL DE ROUVRE", + "code_postal": "61100", + "nom_de_la_commune": "ATHIS VAL DE ROUVRE", + "coordonnees_gps": [ + 48.7951982952, + -0.509617196105 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509617196105, + 48.7951982952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d288b1119de4920dc9e55678ce5983bed505c47", + "fields": { + "code_commune_insee": "88068", + "nom_de_la_commune": "LA BOURGONCE", + "code_postal": "88470", + "coordonnees_gps": [ + 48.3025993945, + 6.81104954686 + ], + "libelle_d_acheminement": "LA BOURGONCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81104954686, + 48.3025993945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2785f29b726d484bb0df18d295bf40c8cd44e602", + "fields": { + "ligne_5": "TAILLEBOIS", + "code_commune_insee": "61007", + "libelle_d_acheminement": "ATHIS VAL DE ROUVRE", + "code_postal": "61100", + "nom_de_la_commune": "ATHIS VAL DE ROUVRE", + "coordonnees_gps": [ + 48.7951982952, + -0.509617196105 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509617196105, + 48.7951982952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bb7a13a63046cfb46f055325bc431b1a77e4db2", + "fields": { + "code_commune_insee": "88077", + "nom_de_la_commune": "BRU", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3537732863, + 6.6891785388 + ], + "libelle_d_acheminement": "BRU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6891785388, + 48.3537732863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a246166a83cb839c6eb968af689c442f92bc830e", + "fields": { + "code_commune_insee": "61012", + "nom_de_la_commune": "AUGUAISE", + "code_postal": "61270", + "coordonnees_gps": [ + 48.6981000827, + 0.551574938976 + ], + "libelle_d_acheminement": "AUGUAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.551574938976, + 48.6981000827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17bf0363b30cb466f1c09d37342d023544062377", + "fields": { + "code_commune_insee": "88080", + "nom_de_la_commune": "BULT", + "code_postal": "88700", + "coordonnees_gps": [ + 48.2997463865, + 6.59680830924 + ], + "libelle_d_acheminement": "BULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59680830924, + 48.2997463865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9e2e4a96c96964e3e243411ef8c65b92790f98b", + "fields": { + "code_commune_insee": "61015", + "nom_de_la_commune": "AUNOU SUR ORNE", + "code_postal": "61500", + "coordonnees_gps": [ + 48.6057819219, + 0.238232234334 + ], + "libelle_d_acheminement": "AUNOU SUR ORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.238232234334, + 48.6057819219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d52472a744dc468552b941b4a42c9ec4d2014ec", + "fields": { + "code_commune_insee": "88084", + "nom_de_la_commune": "CHAMAGNE", + "code_postal": "88130", + "coordonnees_gps": [ + 48.4085056939, + 6.29230922358 + ], + "libelle_d_acheminement": "CHAMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29230922358, + 48.4085056939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7656b7f9c9b152acfafac763c5591d5565c111cf", + "fields": { + "code_commune_insee": "61056", + "nom_de_la_commune": "LE BOUILLON", + "code_postal": "61500", + "coordonnees_gps": [ + 48.558226063, + 0.0985668726868 + ], + "libelle_d_acheminement": "LE BOUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0985668726868, + 48.558226063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cda73e69c15df78e9aaa02fb39c36bb6d1f507a", + "fields": { + "code_commune_insee": "88088", + "nom_de_la_commune": "LA CHAPELLE AUX BOIS", + "code_postal": "88240", + "coordonnees_gps": [ + 48.0282401085, + 6.32319521959 + ], + "libelle_d_acheminement": "LA CHAPELLE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32319521959, + 48.0282401085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "309ade386f69063a6d7823f69e8fb9bf92d39ada", + "fields": { + "code_commune_insee": "61064", + "nom_de_la_commune": "BRULLEMAIL", + "code_postal": "61390", + "coordonnees_gps": [ + 48.6595245184, + 0.324213865898 + ], + "libelle_d_acheminement": "BRULLEMAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.324213865898, + 48.6595245184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edb8f57e08ec2c3d2359305d6f6c60356f0bc9a4", + "fields": { + "code_commune_insee": "88096", + "nom_de_la_commune": "CHATILLON SUR SAONE", + "code_postal": "88410", + "coordonnees_gps": [ + 47.9487239173, + 5.87799177631 + ], + "libelle_d_acheminement": "CHATILLON SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87799177631, + 47.9487239173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d8db83b66ad26bc35427ebe1e624c436e64c954", + "fields": { + "code_commune_insee": "61074", + "nom_de_la_commune": "CARROUGES", + "code_postal": "61320", + "coordonnees_gps": [ + 48.5691225023, + -0.160230464301 + ], + "libelle_d_acheminement": "CARROUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.160230464301, + 48.5691225023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2a6bea53657ac8594802b6ce7d46435378b0fe1", + "fields": { + "code_commune_insee": "88101", + "nom_de_la_commune": "CHENIMENIL", + "code_postal": "88460", + "coordonnees_gps": [ + 48.1372346109, + 6.59779908953 + ], + "libelle_d_acheminement": "CHENIMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59779908953, + 48.1372346109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d7acc85be5782626a2dac795c4cce1d17ccbb93", + "fields": { + "code_commune_insee": "61075", + "nom_de_la_commune": "CEAUCE", + "code_postal": "61330", + "coordonnees_gps": [ + 48.4936450518, + -0.634587693157 + ], + "libelle_d_acheminement": "CEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.634587693157, + 48.4936450518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df9e38b61c15088753270fa137bca15250d0aa68", + "fields": { + "code_commune_insee": "88104", + "nom_de_la_commune": "CIRCOURT SUR MOUZON", + "code_postal": "88300", + "coordonnees_gps": [ + 48.3053639157, + 5.70211881967 + ], + "libelle_d_acheminement": "CIRCOURT SUR MOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70211881967, + 48.3053639157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b152000709af60a6d9118b4d63b786b89aa5668d", + "fields": { + "code_commune_insee": "61076", + "nom_de_la_commune": "LE CERCUEIL", + "code_postal": "61500", + "coordonnees_gps": [ + 48.5939742322, + 0.0100728220332 + ], + "libelle_d_acheminement": "LE CERCUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0100728220332, + 48.5939742322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "899e2b7fd11bf13ea8a959ba7dc886ed3af4c329", + "fields": { + "code_commune_insee": "88110", + "nom_de_la_commune": "CLEZENTAINE", + "code_postal": "88700", + "coordonnees_gps": [ + 48.4061376641, + 6.52855942576 + ], + "libelle_d_acheminement": "CLEZENTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52855942576, + 48.4061376641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c3bad9a095f55e50d52c3cb38cf727cfc07c046", + "fields": { + "code_commune_insee": "61077", + "nom_de_la_commune": "CERISE", + "code_postal": "61000", + "coordonnees_gps": [ + 48.4441981247, + 0.131476179306 + ], + "libelle_d_acheminement": "CERISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.131476179306, + 48.4441981247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abc17e5e6edc1e1d9213430cc6e4ce81fbb78bb2", + "fields": { + "code_commune_insee": "88119", + "nom_de_la_commune": "CRAINVILLIERS", + "code_postal": "88140", + "coordonnees_gps": [ + 48.1478456269, + 5.83524764728 + ], + "libelle_d_acheminement": "CRAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83524764728, + 48.1478456269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e4fdd565bda50000d0ded51907ebd6772492772", + "fields": { + "ligne_5": "MARMOUILLE", + "code_commune_insee": "61081", + "libelle_d_acheminement": "CHAILLOUE", + "code_postal": "61240", + "nom_de_la_commune": "CHAILLOUE", + "coordonnees_gps": [ + 48.6568911726, + 0.196513358702 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.196513358702, + 48.6568911726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc60c23f6aef855441c18e14a617a65882117f41", + "fields": { + "code_commune_insee": "88126", + "nom_de_la_commune": "DARNIEULLES", + "code_postal": "88390", + "coordonnees_gps": [ + 48.1974773569, + 6.33832716875 + ], + "libelle_d_acheminement": "DARNIEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33832716875, + 48.1974773569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b27d061b414e4adbf7659e7d177ae86697130e9a", + "fields": { + "code_commune_insee": "61086", + "nom_de_la_commune": "LES CHAMPEAUX", + "code_postal": "61120", + "coordonnees_gps": [ + 48.8883947737, + 0.134248218764 + ], + "libelle_d_acheminement": "LES CHAMPEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.134248218764, + 48.8883947737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f479dfb7818d89171048deaddbe3df9c01b171bc", + "fields": { + "code_commune_insee": "88132", + "nom_de_la_commune": "DEYVILLERS", + "code_postal": "88000", + "coordonnees_gps": [ + 48.1965304597, + 6.52329047209 + ], + "libelle_d_acheminement": "DEYVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52329047209, + 48.1965304597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5ba0a581f1bb7760a54c66725d4d9574fb37b7b", + "fields": { + "code_commune_insee": "61089", + "nom_de_la_commune": "CHAMPOSOULT", + "code_postal": "61120", + "coordonnees_gps": [ + 48.8633242426, + 0.16705586887 + ], + "libelle_d_acheminement": "CHAMPOSOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.16705586887, + 48.8633242426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0af3d3aa0f0510de33fdc3b27ed576cc3e53bfb", + "fields": { + "code_commune_insee": "88153", + "nom_de_la_commune": "DOMPTAIL", + "code_postal": "88700", + "coordonnees_gps": [ + 48.4448145819, + 6.61620921538 + ], + "libelle_d_acheminement": "DOMPTAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61620921538, + 48.4448145819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d867536ca774120305071c5292cb725de2c037b", + "fields": { + "code_commune_insee": "61091", + "nom_de_la_commune": "CHAMPSECRET", + "code_postal": "61700", + "coordonnees_gps": [ + 48.605210467, + -0.525248571661 + ], + "libelle_d_acheminement": "CHAMPSECRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.525248571661, + 48.605210467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7566fbad17f4fb6378bd01f1a61199b075d172b", + "fields": { + "code_commune_insee": "88170", + "nom_de_la_commune": "FERDRUPT", + "code_postal": "88360", + "coordonnees_gps": [ + 47.9111858178, + 6.71995195157 + ], + "libelle_d_acheminement": "FERDRUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71995195157, + 47.9111858178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "925e88466cb750e4f588b6992e08202d27cb2b19", + "fields": { + "ligne_5": "LA CHAPELLE D ANDAINE", + "code_commune_insee": "61096", + "libelle_d_acheminement": "RIVES D ANDAINE", + "code_postal": "61140", + "nom_de_la_commune": "RIVES D ANDAINE", + "coordonnees_gps": [ + 48.5439558211, + -0.466370828883 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.466370828883, + 48.5439558211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01693025f6b98f40118df62c47122077bca1f898", + "fields": { + "code_commune_insee": "88182", + "nom_de_la_commune": "FRAPELLE", + "code_postal": "88490", + "coordonnees_gps": [ + 48.2948095294, + 7.05288854277 + ], + "libelle_d_acheminement": "FRAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05288854277, + 48.2948095294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46ffd3e9fc33c35bc188716f9d156cb0ffac4e4e", + "fields": { + "ligne_5": "COUTERNE", + "code_commune_insee": "61096", + "libelle_d_acheminement": "RIVES D ANDAINE", + "code_postal": "61410", + "nom_de_la_commune": "RIVES D ANDAINE", + "coordonnees_gps": [ + 48.5439558211, + -0.466370828883 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.466370828883, + 48.5439558211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a39a8770535b31fa0d3da6122136e8c1ba2e1486", + "fields": { + "code_commune_insee": "88188", + "nom_de_la_commune": "FRESSE SUR MOSELLE", + "code_postal": "88160", + "coordonnees_gps": [ + 47.8718454361, + 6.8055791741 + ], + "libelle_d_acheminement": "FRESSE SUR MOSELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8055791741, + 47.8718454361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fb05b3f84943d0190d876b38762d30919d2042d", + "fields": { + "code_commune_insee": "61103", + "nom_de_la_commune": "CHAUMONT", + "code_postal": "61230", + "coordonnees_gps": [ + 48.8445061451, + 0.338218709549 + ], + "libelle_d_acheminement": "CHAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.338218709549, + 48.8445061451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcae12c7ba0518314ea4049d3303c8df0d936b8d", + "fields": { + "ligne_5": "RONCOURT", + "code_commune_insee": "88227", + "libelle_d_acheminement": "HAGNEVILLE ET RONCOURT", + "code_postal": "88300", + "nom_de_la_commune": "HAGNEVILLE ET RONCOURT", + "coordonnees_gps": [ + 48.2462613874, + 5.79111153508 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79111153508, + 48.2462613874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d841e35c6abafcb9452f838d418ee2ff9d5610e2", + "fields": { + "ligne_5": "CONDE SUR HUISNE", + "code_commune_insee": "61116", + "libelle_d_acheminement": "SABLONS SUR HUISNE", + "code_postal": "61110", + "nom_de_la_commune": "SABLONS SUR HUISNE", + "coordonnees_gps": [ + 48.3793529122, + 0.864706610339 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.864706610339, + 48.3793529122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdeb89f4f642f21ba71036a6e9f3561618f9c0dd", + "fields": { + "code_commune_insee": "88230", + "nom_de_la_commune": "HARDANCOURT", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3793075457, + 6.56231179534 + ], + "libelle_d_acheminement": "HARDANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56231179534, + 48.3793075457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d83c17591adac00d630eb8563b181a7a4b6a3ea", + "fields": { + "code_commune_insee": "61122", + "nom_de_la_commune": "COULMER", + "code_postal": "61230", + "coordonnees_gps": [ + 48.7666900667, + 0.303236402861 + ], + "libelle_d_acheminement": "COULMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.303236402861, + 48.7666900667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d231e499a99e634b9f9cff71173574304c87f9b", + "fields": { + "code_commune_insee": "88232", + "nom_de_la_commune": "HARMONVILLE", + "code_postal": "88300", + "coordonnees_gps": [ + 48.464571091, + 5.87162601143 + ], + "libelle_d_acheminement": "HARMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87162601143, + 48.464571091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd7718f0fbf741220a9f51e105d4c6b6b26942f7", + "fields": { + "code_commune_insee": "61123", + "nom_de_la_commune": "COULONCES", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8320426038, + 0.0154675970058 + ], + "libelle_d_acheminement": "COULONCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0154675970058, + 48.8320426038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ed64ad5279cb2e04a738688f4b0d694375217bc", + "fields": { + "code_commune_insee": "88236", + "nom_de_la_commune": "LA HAYE", + "code_postal": "88240", + "coordonnees_gps": [ + 48.0622716294, + 6.20516802139 + ], + "libelle_d_acheminement": "LA HAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20516802139, + 48.0622716294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f49c6cc63c3503dff4f74724459e4e0e8243323", + "fields": { + "code_commune_insee": "61126", + "nom_de_la_commune": "COULONGES SUR SARTHE", + "code_postal": "61170", + "coordonnees_gps": [ + 48.5299458495, + 0.395044867838 + ], + "libelle_d_acheminement": "COULONGES SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.395044867838, + 48.5299458495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d38c7168e227d4aa849a32194fc71673d1ad51c", + "fields": { + "code_commune_insee": "88238", + "nom_de_la_commune": "HENNEZEL", + "code_postal": "88260", + "coordonnees_gps": [ + 48.051849427, + 6.11266975905 + ], + "libelle_d_acheminement": "HENNEZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11266975905, + 48.051849427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4203db98137733b570e81cfd2e081a0f927e530c", + "fields": { + "code_commune_insee": "61139", + "nom_de_la_commune": "CROUTTES", + "code_postal": "61120", + "coordonnees_gps": [ + 48.9223848816, + 0.136536392714 + ], + "libelle_d_acheminement": "CROUTTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.136536392714, + 48.9223848816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d2747e89aab08d105daf7150d0dcf5b42ebf65c", + "fields": { + "code_commune_insee": "88242", + "nom_de_la_commune": "HOUEVILLE", + "code_postal": "88300", + "coordonnees_gps": [ + 48.3700796834, + 5.80595939885 + ], + "libelle_d_acheminement": "HOUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80595939885, + 48.3700796834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4190e284dc83addef433a8b22758bc045091a73c", + "fields": { + "code_commune_insee": "61140", + "nom_de_la_commune": "CRULAI", + "code_postal": "61300", + "coordonnees_gps": [ + 48.6957117873, + 0.659111574519 + ], + "libelle_d_acheminement": "CRULAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659111574519, + 48.6957117873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df72d43ab6aeb15f5fad49dd4e90b62ce11628f8", + "fields": { + "code_commune_insee": "88245", + "nom_de_la_commune": "HURBACHE", + "code_postal": "88210", + "coordonnees_gps": [ + 48.3466578384, + 6.93090895956 + ], + "libelle_d_acheminement": "HURBACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93090895956, + 48.3466578384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2c9c0e71bac03e3c4a8070e5aec5f7ecf9175c7", + "fields": { + "ligne_5": "ECOUCHE", + "code_commune_insee": "61153", + "libelle_d_acheminement": "ECOUCHE LES VALLEES", + "code_postal": "61150", + "nom_de_la_commune": "ECOUCHE LES VALLEES", + "coordonnees_gps": [ + 48.715236562, + -0.11079364791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11079364791, + 48.715236562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1b132b3aa9060e86a9200d7d09fb6f53e4e20a0", + "fields": { + "code_commune_insee": "88259", + "nom_de_la_commune": "LANDAVILLE", + "code_postal": "88300", + "coordonnees_gps": [ + 48.2828814687, + 5.74689524585 + ], + "libelle_d_acheminement": "LANDAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74689524585, + 48.2828814687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b118595e86de090de16501d6e77dd7c2bf0fa9d", + "fields": { + "ligne_5": "SERANS", + "code_commune_insee": "61153", + "libelle_d_acheminement": "ECOUCHE LES VALLEES", + "code_postal": "61150", + "nom_de_la_commune": "ECOUCHE LES VALLEES", + "coordonnees_gps": [ + 48.715236562, + -0.11079364791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11079364791, + 48.715236562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fd4ee2a7ef894fc68f3412d8e870ac52a706e1b", + "fields": { + "code_commune_insee": "88261", + "nom_de_la_commune": "LAVAL SUR VOLOGNE", + "code_postal": "88600", + "coordonnees_gps": [ + 48.1965616078, + 6.69279704432 + ], + "libelle_d_acheminement": "LAVAL SUR VOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69279704432, + 48.1965616078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62012878fc6416b58e3686d87f9147d8adb46ac4", + "fields": { + "ligne_5": "ST OUEN SUR MAIRE", + "code_commune_insee": "61153", + "libelle_d_acheminement": "ECOUCHE LES VALLEES", + "code_postal": "61150", + "nom_de_la_commune": "ECOUCHE LES VALLEES", + "coordonnees_gps": [ + 48.715236562, + -0.11079364791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11079364791, + 48.715236562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1ddf18014bb7c4f58a2a58c15b9c4d0a5886cce", + "fields": { + "code_commune_insee": "88262", + "nom_de_la_commune": "LAVELINE DEVANT BRUYERES", + "code_postal": "88600", + "coordonnees_gps": [ + 48.1852298177, + 6.75828843679 + ], + "libelle_d_acheminement": "LAVELINE DEVANT BRUYERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75828843679, + 48.1852298177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6632375662fdb10c17607c1611653e7a21e04544", + "fields": { + "code_commune_insee": "61164", + "nom_de_la_commune": "LA FERRIERE BECHET", + "code_postal": "61500", + "coordonnees_gps": [ + 48.5753978113, + 0.0709025033541 + ], + "libelle_d_acheminement": "LA FERRIERE BECHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0709025033541, + 48.5753978113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73f942cf41a68e075b5dc799830b322a8bbc35e0", + "fields": { + "code_commune_insee": "88266", + "nom_de_la_commune": "LEPANGES SUR VOLOGNE", + "code_postal": "88600", + "coordonnees_gps": [ + 48.1792216625, + 6.66672756752 + ], + "libelle_d_acheminement": "LEPANGES SUR VOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66672756752, + 48.1792216625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66226f90966c989eb5004412a7c4de7a0166c84f", + "fields": { + "code_commune_insee": "61165", + "nom_de_la_commune": "LA FERRIERE BOCHARD", + "code_postal": "61420", + "coordonnees_gps": [ + 48.4160824644, + -0.0368422233193 + ], + "libelle_d_acheminement": "LA FERRIERE BOCHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0368422233193, + 48.4160824644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a90b6b57d6c061f0dcbd9bddcfc2c364ac7eadb9", + "fields": { + "code_commune_insee": "88270", + "nom_de_la_commune": "LIFFOL LE GRAND", + "code_postal": "88350", + "coordonnees_gps": [ + 48.3192155275, + 5.57551328055 + ], + "libelle_d_acheminement": "LIFFOL LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57551328055, + 48.3192155275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca7aeadd160d21385a06de070eba693b7f3235de", + "fields": { + "code_commune_insee": "61166", + "nom_de_la_commune": "FERRIERES LA VERRERIE", + "code_postal": "61390", + "coordonnees_gps": [ + 48.6526270893, + 0.376818250873 + ], + "libelle_d_acheminement": "FERRIERES LA VERRERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.376818250873, + 48.6526270893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d10ebdd157caff814ec211a08ff734914b86c0b", + "fields": { + "code_commune_insee": "88271", + "nom_de_la_commune": "LIGNEVILLE", + "code_postal": "88800", + "coordonnees_gps": [ + 48.1635558918, + 5.95344174382 + ], + "libelle_d_acheminement": "LIGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95344174382, + 48.1635558918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c34efd0c7941c840e43771ff3253548da767bae", + "fields": { + "ligne_5": "HEUGON", + "code_commune_insee": "61167", + "libelle_d_acheminement": "LA FERTE EN OUCHE", + "code_postal": "61470", + "nom_de_la_commune": "LA FERTE EN OUCHE", + "coordonnees_gps": [ + 48.8362459554, + 0.508544741133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.508544741133, + 48.8362459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89398dbad6d884e1a643f5f1e8664b84985b4f68", + "fields": { + "code_commune_insee": "88276", + "nom_de_la_commune": "LUSSE", + "code_postal": "88490", + "coordonnees_gps": [ + 48.28922256, + 7.12769332056 + ], + "libelle_d_acheminement": "LUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12769332056, + 48.28922256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a4f593b7e340f413058bb5614ed96c12e77946d", + "fields": { + "ligne_5": "COUVAINS", + "code_commune_insee": "61167", + "libelle_d_acheminement": "LA FERTE EN OUCHE", + "code_postal": "61550", + "nom_de_la_commune": "LA FERTE EN OUCHE", + "coordonnees_gps": [ + 48.8362459554, + 0.508544741133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.508544741133, + 48.8362459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de155c8f67dff07379ed35afdcb153b5db033802", + "fields": { + "code_commune_insee": "88277", + "nom_de_la_commune": "LUVIGNY", + "code_postal": "88110", + "coordonnees_gps": [ + 48.4980673357, + 7.07712772937 + ], + "libelle_d_acheminement": "LUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07712772937, + 48.4980673357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a228ec0e59b684ebce31d368b5efd003fa5501e", + "fields": { + "ligne_5": "MARNEFER", + "code_commune_insee": "61167", + "libelle_d_acheminement": "LA FERTE EN OUCHE", + "code_postal": "61550", + "nom_de_la_commune": "LA FERTE EN OUCHE", + "coordonnees_gps": [ + 48.8362459554, + 0.508544741133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.508544741133, + 48.8362459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dae7415c557d5cc19acf6ca80a37cee948206aa", + "fields": { + "code_commune_insee": "88279", + "nom_de_la_commune": "MADECOURT", + "code_postal": "88270", + "coordonnees_gps": [ + 48.239342474, + 6.11505012899 + ], + "libelle_d_acheminement": "MADECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11505012899, + 48.239342474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9d3c86a7628aaacb0d79f6d6ae98a0b6f853110", + "fields": { + "ligne_5": "ST NICOLAS DES LAITIERS", + "code_commune_insee": "61167", + "libelle_d_acheminement": "LA FERTE EN OUCHE", + "code_postal": "61550", + "nom_de_la_commune": "LA FERTE EN OUCHE", + "coordonnees_gps": [ + 48.8362459554, + 0.508544741133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.508544741133, + 48.8362459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01cb12b678aa19d7f9aebeadd03caa0a8fe4ff36", + "fields": { + "code_commune_insee": "88283", + "nom_de_la_commune": "MALAINCOURT", + "code_postal": "88140", + "coordonnees_gps": [ + 48.2246104086, + 5.76671107877 + ], + "libelle_d_acheminement": "MALAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76671107877, + 48.2246104086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c4a3820a78feb5edcc1c2f90a26ef30d280b61c", + "fields": { + "code_commune_insee": "88285", + "nom_de_la_commune": "MANDRES SUR VAIR", + "code_postal": "88800", + "coordonnees_gps": [ + 48.221407533, + 5.88533867624 + ], + "libelle_d_acheminement": "MANDRES SUR VAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88533867624, + 48.221407533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3e3b69e082aa7fe6039a8520bd476c23312faa5", + "fields": { + "code_commune_insee": "88291", + "nom_de_la_commune": "MARTINVELLE", + "code_postal": "88410", + "coordonnees_gps": [ + 47.9903283135, + 6.00645786429 + ], + "libelle_d_acheminement": "MARTINVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00645786429, + 47.9903283135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e36e1bb5835d1c029685918fbc9041782dd46156", + "fields": { + "code_commune_insee": "88293", + "nom_de_la_commune": "MAXEY SUR MEUSE", + "code_postal": "88630", + "coordonnees_gps": [ + 48.4490229482, + 5.71682995945 + ], + "libelle_d_acheminement": "MAXEY SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71682995945, + 48.4490229482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a47aea47e80f909bd64192e756cfb4cb931d6b87", + "fields": { + "code_commune_insee": "88297", + "nom_de_la_commune": "MEMENIL", + "code_postal": "88600", + "coordonnees_gps": [ + 48.209159964, + 6.61588245016 + ], + "libelle_d_acheminement": "MEMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61588245016, + 48.209159964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d612247c9225fd512302552e702038bc8535ff0a", + "fields": { + "code_commune_insee": "88298", + "nom_de_la_commune": "MENARMONT", + "code_postal": "88700", + "coordonnees_gps": [ + 48.4181626654, + 6.64903014535 + ], + "libelle_d_acheminement": "MENARMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64903014535, + 48.4181626654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a499e620a3ab0d2f041df5ad46fa6e5632e4d24", + "fields": { + "code_commune_insee": "88300", + "nom_de_la_commune": "MENIL DE SENONES", + "code_postal": "88210", + "coordonnees_gps": [ + 48.3750069219, + 6.99707479761 + ], + "libelle_d_acheminement": "MENIL DE SENONES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99707479761, + 48.3750069219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06d213a27a88b8f4544e8db02fe6a522061318e5", + "fields": { + "code_commune_insee": "88306", + "nom_de_la_commune": "LE MONT", + "code_postal": "88210", + "coordonnees_gps": [ + 48.4096696255, + 7.02450086631 + ], + "libelle_d_acheminement": "LE MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02450086631, + 48.4096696255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b482d497f8d5fe30b4c45411e261c3115d82eb72", + "fields": { + "code_commune_insee": "88309", + "nom_de_la_commune": "MONTHUREUX LE SEC", + "code_postal": "88800", + "coordonnees_gps": [ + 48.1678786007, + 6.02913581296 + ], + "libelle_d_acheminement": "MONTHUREUX LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02913581296, + 48.1678786007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c364365aa2e7c4604f17631c7bd2ec3a95b18aef", + "fields": { + "code_commune_insee": "88328", + "nom_de_la_commune": "NOMPATELIZE", + "code_postal": "88470", + "coordonnees_gps": [ + 48.3293457502, + 6.85556075648 + ], + "libelle_d_acheminement": "NOMPATELIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85556075648, + 48.3293457502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "776e0f339f9fb4d8d44685570628efa516e6db13", + "fields": { + "code_commune_insee": "88338", + "nom_de_la_commune": "ORTONCOURT", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3681665513, + 6.50942324126 + ], + "libelle_d_acheminement": "ORTONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50942324126, + 48.3681665513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bc76319e228a4fa1ec7074bdd35a203d15732cc", + "fields": { + "code_commune_insee": "88342", + "nom_de_la_commune": "PALLEGNEY", + "code_postal": "88330", + "coordonnees_gps": [ + 48.2905022008, + 6.4466547327 + ], + "libelle_d_acheminement": "PALLEGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4466547327, + 48.2905022008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b08a1f5d64121c72173c3627a08de8fbac9424ae", + "fields": { + "code_commune_insee": "88344", + "nom_de_la_commune": "PARGNY SOUS MUREAU", + "code_postal": "88350", + "coordonnees_gps": [ + 48.3646298199, + 5.58928467692 + ], + "libelle_d_acheminement": "PARGNY SOUS MUREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58928467692, + 48.3646298199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0b41b7c7e8a899dff8cf2bccee3b435836abb18", + "fields": { + "code_commune_insee": "88355", + "nom_de_la_commune": "PORTIEUX", + "code_postal": "88330", + "coordonnees_gps": [ + 48.3478769237, + 6.35610035139 + ], + "libelle_d_acheminement": "PORTIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35610035139, + 48.3478769237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c414a550032ff49c678146f714666707f55a6ef", + "fields": { + "code_commune_insee": "88358", + "nom_de_la_commune": "POUXEUX", + "code_postal": "88550", + "coordonnees_gps": [ + 48.0951237995, + 6.56483709152 + ], + "libelle_d_acheminement": "POUXEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56483709152, + 48.0951237995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1d33322ba6d782819559f767217bc6eb86dea65", + "fields": { + "code_commune_insee": "88359", + "nom_de_la_commune": "PREY", + "code_postal": "88600", + "coordonnees_gps": [ + 48.176574396, + 6.69007777136 + ], + "libelle_d_acheminement": "PREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69007777136, + 48.176574396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05740436954c16763c4aedc3015cdff3dc0c759e", + "fields": { + "code_commune_insee": "88363", + "nom_de_la_commune": "PUNEROT", + "code_postal": "88630", + "coordonnees_gps": [ + 48.4769780957, + 5.81474360261 + ], + "libelle_d_acheminement": "PUNEROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81474360261, + 48.4769780957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7670ba3ed989b2062c0f13a3916461c2d499341", + "fields": { + "code_commune_insee": "88364", + "nom_de_la_commune": "PUZIEUX", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3347554492, + 6.0998994342 + ], + "libelle_d_acheminement": "PUZIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0998994342, + 48.3347554492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7b8ca1685fcf500c28b84cfb64e8db0c6c2d409", + "fields": { + "code_commune_insee": "88365", + "nom_de_la_commune": "RACECOURT", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2590688539, + 6.19750172811 + ], + "libelle_d_acheminement": "RACECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19750172811, + 48.2590688539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b47040f1945084f3c9ad5fb966845d9d30c7769", + "fields": { + "code_commune_insee": "88380", + "nom_de_la_commune": "REHAUPAL", + "code_postal": "88640", + "coordonnees_gps": [ + 48.1189218406, + 6.74191754292 + ], + "libelle_d_acheminement": "REHAUPAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74191754292, + 48.1189218406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac7583f56003e8c3ec0c014848b0dd46ea95433a", + "fields": { + "code_commune_insee": "88387", + "nom_de_la_commune": "REMOVILLE", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3667922699, + 5.84601094575 + ], + "libelle_d_acheminement": "REMOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84601094575, + 48.3667922699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4a5203e9d48b296ba7b57f2e4d2e8f86e396744", + "fields": { + "code_commune_insee": "88388", + "nom_de_la_commune": "RENAUVOID", + "code_postal": "88390", + "coordonnees_gps": [ + 48.1427648527, + 6.38176151044 + ], + "libelle_d_acheminement": "RENAUVOID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38176151044, + 48.1427648527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e5fcac0adee0ee69e9d598a0886bcc6533c581e", + "fields": { + "code_commune_insee": "88391", + "nom_de_la_commune": "ROCHESSON", + "code_postal": "88120", + "coordonnees_gps": [ + 48.0197429303, + 6.82438573999 + ], + "libelle_d_acheminement": "ROCHESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82438573999, + 48.0197429303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bcc0ba382864c0e50f12790efc40665e2b72049", + "fields": { + "code_commune_insee": "88394", + "nom_de_la_commune": "ROMAIN AUX BOIS", + "code_postal": "88320", + "coordonnees_gps": [ + 48.0766280164, + 5.71451432126 + ], + "libelle_d_acheminement": "ROMAIN AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71451432126, + 48.0766280164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef1f105ebe9fe4d40c8c787a6d6194132e3cc4dc", + "fields": { + "code_commune_insee": "88403", + "nom_de_la_commune": "ROZEROTTE", + "code_postal": "88500", + "coordonnees_gps": [ + 48.2385664029, + 6.08531096455 + ], + "libelle_d_acheminement": "ROZEROTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08531096455, + 48.2385664029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58e45513a6d4bc9a2044c2b0d71bfc7dca30ac48", + "fields": { + "code_commune_insee": "88429", + "nom_de_la_commune": "ST NABORD", + "code_postal": "88200", + "coordonnees_gps": [ + 48.0360750198, + 6.55639744064 + ], + "libelle_d_acheminement": "ST NABORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55639744064, + 48.0360750198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65df414c83f92f69697716f06278221129c38645", + "fields": { + "code_commune_insee": "88436", + "nom_de_la_commune": "ST STAIL", + "code_postal": "88210", + "coordonnees_gps": [ + 48.3781845866, + 7.08693862118 + ], + "libelle_d_acheminement": "ST STAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08693862118, + 48.3781845866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "386aa46b92c22d4e303157800617ae2428abede3", + "fields": { + "code_commune_insee": "88440", + "nom_de_la_commune": "SANDAUCOURT", + "code_postal": "88170", + "coordonnees_gps": [ + 48.2612303664, + 5.84458431334 + ], + "libelle_d_acheminement": "SANDAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84458431334, + 48.2612303664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f3582bfcadc991b5b121215e9d55ea3e10db227", + "fields": { + "code_commune_insee": "61189", + "nom_de_la_commune": "GIEL COURTEILLES", + "code_postal": "61210", + "coordonnees_gps": [ + 48.7650250908, + -0.208008269332 + ], + "libelle_d_acheminement": "GIEL COURTEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.208008269332, + 48.7650250908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "032ffd0c2de87ab65a4e458edd3246e2c83f5586", + "fields": { + "code_commune_insee": "61190", + "nom_de_la_commune": "GINAI", + "code_postal": "61310", + "coordonnees_gps": [ + 48.7444923709, + 0.209513017562 + ], + "libelle_d_acheminement": "GINAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.209513017562, + 48.7444923709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80cabff8e72e7bd400b7eed265f1f1332f0f22c5", + "fields": { + "code_commune_insee": "61192", + "nom_de_la_commune": "GODISSON", + "code_postal": "61240", + "coordonnees_gps": [ + 48.6758477819, + 0.249741558022 + ], + "libelle_d_acheminement": "GODISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.249741558022, + 48.6758477819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00a4336c9da8dea1ff7da9bac755e8c93f069a6f", + "fields": { + "code_commune_insee": "61193", + "nom_de_la_commune": "LA GONFRIERE", + "code_postal": "61550", + "coordonnees_gps": [ + 48.8156823436, + 0.490360081148 + ], + "libelle_d_acheminement": "LA GONFRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.490360081148, + 48.8156823436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af2dfb7d14c80cd8e34a4bf9bd2665a780a70e46", + "fields": { + "ligne_5": "GOULET", + "code_commune_insee": "61194", + "libelle_d_acheminement": "MONTS SUR ORNE", + "code_postal": "61150", + "nom_de_la_commune": "MONTS SUR ORNE", + "coordonnees_gps": [ + 48.7360749427, + -0.0897289866447 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0897289866447, + 48.7360749427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe5f152abb01845eaff172029da0f517d8029fad", + "fields": { + "ligne_5": "LE GUE DE LA CHAINE", + "code_commune_insee": "61196", + "libelle_d_acheminement": "BELFORET EN PERCHE", + "code_postal": "61130", + "nom_de_la_commune": "BELFORET EN PERCHE", + "coordonnees_gps": [ + 48.3725300515, + 0.509787667614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.509787667614, + 48.3725300515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be53ade4ca7f4aed41c6cf2c18bab7abd888f34f", + "fields": { + "code_commune_insee": "61209", + "nom_de_la_commune": "JOUE DU BOIS", + "code_postal": "61320", + "coordonnees_gps": [ + 48.5845783211, + -0.231209382514 + ], + "libelle_d_acheminement": "JOUE DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.231209382514, + 48.5845783211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48059610cb791cb18e15a185768955c7b7dae802", + "fields": { + "code_commune_insee": "61210", + "nom_de_la_commune": "JOUE DU PLAIN", + "code_postal": "61150", + "coordonnees_gps": [ + 48.6801916267, + -0.140023769708 + ], + "libelle_d_acheminement": "JOUE DU PLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.140023769708, + 48.6801916267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75464a272d94c61359799ce3f60767a452b34974", + "fields": { + "code_commune_insee": "61216", + "nom_de_la_commune": "LA LANDE DE GOULT", + "code_postal": "61320", + "coordonnees_gps": [ + 48.5840302708, + -0.0548449345783 + ], + "libelle_d_acheminement": "LA LANDE DE GOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0548449345783, + 48.5840302708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95cb29b4ebc603510c1cfd41a845364df089b43d", + "fields": { + "code_commune_insee": "61221", + "nom_de_la_commune": "LANDIGOU", + "code_postal": "61100", + "coordonnees_gps": [ + 48.7436800101, + -0.47751409105 + ], + "libelle_d_acheminement": "LANDIGOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47751409105, + 48.7436800101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b620d8a5e9b0e1feb50b4f9f9cf72b7b0ab6765f", + "fields": { + "code_commune_insee": "61222", + "nom_de_la_commune": "LANDISACQ", + "code_postal": "61100", + "coordonnees_gps": [ + 48.752851397, + -0.658625971927 + ], + "libelle_d_acheminement": "LANDISACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658625971927, + 48.752851397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5082e39d4982aa5789b7cc4a561391873bf96d0", + "fields": { + "ligne_5": "ST DIDIER SOUS ECOUVES", + "code_commune_insee": "61228", + "libelle_d_acheminement": "L OREE D ECOUVES", + "code_postal": "61320", + "nom_de_la_commune": "L OREE D ECOUVES", + "coordonnees_gps": [ + 48.5076444763, + -0.0385013329846 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0385013329846, + 48.5076444763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5e3df97cbfdc67bb77bf0de569eefd40e611f00", + "fields": { + "code_commune_insee": "61229", + "nom_de_la_commune": "LOISAIL", + "code_postal": "61400", + "coordonnees_gps": [ + 48.5049086488, + 0.586338732219 + ], + "libelle_d_acheminement": "LOISAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.586338732219, + 48.5049086488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6db38be764a085a8e2aefa934c4131a938b82ae1", + "fields": { + "ligne_5": "LA LANDE SUR EURE", + "code_commune_insee": "61230", + "libelle_d_acheminement": "LONGNY LES VILLAGES", + "code_postal": "61290", + "nom_de_la_commune": "LONGNY LES VILLAGES", + "coordonnees_gps": [ + 48.5293923919, + 0.757893185933 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.757893185933, + 48.5293923919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d1d388dfd226513ff436ff612e9a8bff4806962", + "fields": { + "ligne_5": "MOULICENT", + "code_commune_insee": "61230", + "libelle_d_acheminement": "LONGNY LES VILLAGES", + "code_postal": "61290", + "nom_de_la_commune": "LONGNY LES VILLAGES", + "coordonnees_gps": [ + 48.5293923919, + 0.757893185933 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.757893185933, + 48.5293923919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b23b69a5881828f947f961794c43625c1db1d622", + "fields": { + "code_commune_insee": "61237", + "nom_de_la_commune": "LOUGE SUR MAIRE", + "code_postal": "61150", + "coordonnees_gps": [ + 48.7010300474, + -0.221367554163 + ], + "libelle_d_acheminement": "LOUGE SUR MAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.221367554163, + 48.7010300474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "159fd942190c521b8d09a0996dd9c05d829d3dc5", + "fields": { + "code_commune_insee": "61240", + "nom_de_la_commune": "MACE", + "code_postal": "61500", + "coordonnees_gps": [ + 48.6476898388, + 0.136870409048 + ], + "libelle_d_acheminement": "MACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.136870409048, + 48.6476898388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb1578ef204bf8f39ae6b46f4381398237f043a2", + "fields": { + "code_commune_insee": "61243", + "nom_de_la_commune": "MAGNY LE DESERT", + "code_postal": "61600", + "coordonnees_gps": [ + 48.570570213, + -0.323140546642 + ], + "libelle_d_acheminement": "MAGNY LE DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.323140546642, + 48.570570213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "429d126cce1b2711568fba29c23cfd466a4d8150", + "fields": { + "code_commune_insee": "61252", + "nom_de_la_commune": "MARDILLY", + "code_postal": "61230", + "coordonnees_gps": [ + 48.829136334, + 0.262656669322 + ], + "libelle_d_acheminement": "MARDILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.262656669322, + 48.829136334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c8f0d512ae5c9f3474bd2767f2b70f46aec59ba", + "fields": { + "code_commune_insee": "61258", + "nom_de_la_commune": "LE MELE SUR SARTHE", + "code_postal": "61170", + "coordonnees_gps": [ + 48.5109025611, + 0.35265245515 + ], + "libelle_d_acheminement": "LE MELE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.35265245515, + 48.5109025611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2400e1ccf3c940b7c375430934d7261917c8d10", + "fields": { + "code_commune_insee": "61259", + "nom_de_la_commune": "LE MENIL BERARD", + "code_postal": "61270", + "coordonnees_gps": [ + 48.7055430019, + 0.510723949969 + ], + "libelle_d_acheminement": "LE MENIL BERARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.510723949969, + 48.7055430019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6284addb89bd98f7824acac810bb86191fcb04a", + "fields": { + "code_commune_insee": "61265", + "nom_de_la_commune": "MENIL GONDOUIN", + "code_postal": "61210", + "coordonnees_gps": [ + 48.7541147745, + -0.296950238626 + ], + "libelle_d_acheminement": "MENIL GONDOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.296950238626, + 48.7541147745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e2dde2b4e9ae336cda5b5df789ba83b29dd1390", + "fields": { + "code_commune_insee": "61276", + "nom_de_la_commune": "MERRI", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8496427055, + -0.0480442687765 + ], + "libelle_d_acheminement": "MERRI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0480442687765, + 48.8496427055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09abd7b68d1348bc257e5d07c8e5ebf5ece6be85", + "fields": { + "code_commune_insee": "61288", + "nom_de_la_commune": "MONTMERREI", + "code_postal": "61570", + "coordonnees_gps": [ + 48.6305942263, + 0.0318720441424 + ], + "libelle_d_acheminement": "MONTMERREI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0318720441424, + 48.6305942263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78be705f5d47169cace62b3cb1d512f8253af66e", + "fields": { + "code_commune_insee": "61292", + "nom_de_la_commune": "MONTSECRET CLAIREFOUGERE", + "code_postal": "61800", + "coordonnees_gps": [ + 48.7964115214, + -0.677236896006 + ], + "libelle_d_acheminement": "MONTSECRET CLAIREFOUGERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.677236896006, + 48.7964115214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c883681b990820e8aa30a3d690c59a4c78ef31a6", + "fields": { + "code_commune_insee": "61295", + "nom_de_la_commune": "LA MOTTE FOUQUET", + "code_postal": "61600", + "coordonnees_gps": [ + 48.5665252218, + -0.268780930667 + ], + "libelle_d_acheminement": "LA MOTTE FOUQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.268780930667, + 48.5665252218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "196e06de1dfe3b41bb45edefb5e6f39a85aebb8c", + "fields": { + "code_commune_insee": "61307", + "nom_de_la_commune": "NEUVILLE SUR TOUQUES", + "code_postal": "61120", + "coordonnees_gps": [ + 48.862323733, + 0.280747613281 + ], + "libelle_d_acheminement": "NEUVILLE SUR TOUQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.280747613281, + 48.862323733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67867252f0ed8207ce7da9e9a30bfb3069a25d44", + "fields": { + "code_commune_insee": "88443", + "nom_de_la_commune": "SARTES", + "code_postal": "88300", + "coordonnees_gps": [ + 48.2431645689, + 5.66789266323 + ], + "libelle_d_acheminement": "SARTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66789266323, + 48.2431645689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1ad32c4251d27836c8249e28d692d81509b1341", + "fields": { + "ligne_5": "PREAUX DU PERCHE", + "code_commune_insee": "61309", + "libelle_d_acheminement": "PERCHE EN NOCE", + "code_postal": "61340", + "nom_de_la_commune": "PERCHE EN NOCE", + "coordonnees_gps": [ + 48.3808259058, + 0.686799351677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.686799351677, + 48.3808259058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ef99df2184a6db00478f72dc83fa5d2f54d9e19", + "fields": { + "code_commune_insee": "88446", + "nom_de_la_commune": "SAULXURES LES BULGNEVILLE", + "code_postal": "88140", + "coordonnees_gps": [ + 48.1919857407, + 5.81576543656 + ], + "libelle_d_acheminement": "SAULXURES LES BULGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81576543656, + 48.1919857407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4d7a71b45b2a023b544425b2b49b3fdea3b49bb", + "fields": { + "code_commune_insee": "61314", + "nom_de_la_commune": "OCCAGNES", + "code_postal": "61200", + "coordonnees_gps": [ + 48.7813226676, + -0.0658264012764 + ], + "libelle_d_acheminement": "OCCAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0658264012764, + 48.7813226676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "858658f10aefeb1defaa93697969979146d5cd2f", + "fields": { + "code_commune_insee": "88447", + "nom_de_la_commune": "SAULXURES SUR MOSELOTTE", + "code_postal": "88290", + "coordonnees_gps": [ + 47.9512129215, + 6.77493861259 + ], + "libelle_d_acheminement": "SAULXURES SUR MOSELOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77493861259, + 47.9512129215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fa668effa5daa14fcd28becac08891491801f61", + "fields": { + "code_commune_insee": "61316", + "nom_de_la_commune": "OMMOY", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8545702425, + -0.0238115124899 + ], + "libelle_d_acheminement": "OMMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0238115124899, + 48.8545702425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d607313c2839b66165e4759ba1d69d0179ea9bb3", + "fields": { + "code_commune_insee": "88448", + "nom_de_la_commune": "SAUVILLE", + "code_postal": "88140", + "coordonnees_gps": [ + 48.1485506254, + 5.74281944188 + ], + "libelle_d_acheminement": "SAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74281944188, + 48.1485506254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6db69778486fe5f407f6d6206be1776d311359b", + "fields": { + "code_commune_insee": "61327", + "nom_de_la_commune": "PERVENCHERES", + "code_postal": "61360", + "coordonnees_gps": [ + 48.4439121887, + 0.411023261659 + ], + "libelle_d_acheminement": "PERVENCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.411023261659, + 48.4439121887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15bc4754b0a48a7f51ca3bce209d3f2df11b895f", + "fields": { + "code_commune_insee": "88449", + "nom_de_la_commune": "SAVIGNY", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3555922592, + 6.21861150216 + ], + "libelle_d_acheminement": "SAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21861150216, + 48.3555922592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d007478555a3f3afe6c2ae26313dd52f296ecf7", + "fields": { + "code_commune_insee": "61328", + "nom_de_la_commune": "LE PIN AU HARAS", + "code_postal": "61310", + "coordonnees_gps": [ + 48.7473548359, + 0.136994750389 + ], + "libelle_d_acheminement": "LE PIN AU HARAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.136994750389, + 48.7473548359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8d2140f16fe990e031509862f423fe28f79b661", + "fields": { + "code_commune_insee": "88461", + "nom_de_la_commune": "SURIAUVILLE", + "code_postal": "88140", + "coordonnees_gps": [ + 48.1666133431, + 5.86398613974 + ], + "libelle_d_acheminement": "SURIAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86398613974, + 48.1666133431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83906b21b47c72707da5bfb435bcd9149dd6455d", + "fields": { + "code_commune_insee": "61333", + "nom_de_la_commune": "PONTCHARDON", + "code_postal": "61120", + "coordonnees_gps": [ + 48.9301943035, + 0.262438401104 + ], + "libelle_d_acheminement": "PONTCHARDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.262438401104, + 48.9301943035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe3ae405b1d30d821fc8050e316a21776e4c74a4", + "fields": { + "code_commune_insee": "88463", + "nom_de_la_commune": "TAINTRUX", + "code_postal": "88100", + "coordonnees_gps": [ + 48.2503150047, + 6.88300452991 + ], + "libelle_d_acheminement": "TAINTRUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88300452991, + 48.2503150047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95c763d7a208eb753d33d261d31bd9184d64ab5c", + "fields": { + "code_commune_insee": "61357", + "nom_de_la_commune": "ROUPERROUX", + "code_postal": "61320", + "coordonnees_gps": [ + 48.5486223106, + -0.0783070425264 + ], + "libelle_d_acheminement": "ROUPERROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0783070425264, + 48.5486223106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f89753097737da31beffd28f3205f4331d909b5", + "fields": { + "ligne_5": "ONCOURT", + "code_commune_insee": "88465", + "libelle_d_acheminement": "CAPAVENIR VOSGES", + "code_postal": "88150", + "nom_de_la_commune": "CAPAVENIR VOSGES", + "coordonnees_gps": [ + 48.2495514114, + 6.40863836497 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40863836497, + 48.2495514114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d7a94722f336c55fee3bb71ccf83ddbd032df12", + "fields": { + "code_commune_insee": "61392", + "nom_de_la_commune": "ST GERMAIN D AUNAY", + "code_postal": "61470", + "coordonnees_gps": [ + 48.9290248327, + 0.381614351113 + ], + "libelle_d_acheminement": "ST GERMAIN D AUNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.381614351113, + 48.9290248327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db59824a839af249058060634826129a50282a7f", + "fields": { + "ligne_5": "BOUVACOTE", + "code_commune_insee": "88470", + "libelle_d_acheminement": "LE THOLY", + "code_postal": "88530", + "nom_de_la_commune": "LE THOLY", + "coordonnees_gps": [ + 48.0875038996, + 6.73898025546 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73898025546, + 48.0875038996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "110bf7438bba35cb156b4fdcd18df1deb9f90540", + "fields": { + "code_commune_insee": "61393", + "nom_de_la_commune": "ST GERMAIN DE CLAIREFEUILLE", + "code_postal": "61240", + "coordonnees_gps": [ + 48.7256386551, + 0.24088318968 + ], + "libelle_d_acheminement": "ST GERMAIN DE CLAIREFEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.24088318968, + 48.7256386551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f5c7d0975afaf2c8e0e41f18a859ca4fb8b36cf", + "fields": { + "code_commune_insee": "88471", + "nom_de_la_commune": "LES THONS", + "code_postal": "88410", + "coordonnees_gps": [ + 47.987988516, + 5.8737744025 + ], + "libelle_d_acheminement": "LES THONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8737744025, + 47.987988516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07cf1bc92de5f1c891be9c4cbb83acc022fa2956", + "fields": { + "code_commune_insee": "61394", + "nom_de_la_commune": "ST GERMAIN DE LA COUDRE", + "code_postal": "61130", + "coordonnees_gps": [ + 48.2717389911, + 0.591626706972 + ], + "libelle_d_acheminement": "ST GERMAIN DE LA COUDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.591626706972, + 48.2717389911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f987ccd1601f9198035fd17e8921f563aaf724bb", + "fields": { + "code_commune_insee": "88476", + "nom_de_la_commune": "TOTAINVILLE", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3263637306, + 5.98420590394 + ], + "libelle_d_acheminement": "TOTAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98420590394, + 48.3263637306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "173c1f60ead9131c29c4241ffdf4ddcc4b1b4687", + "fields": { + "code_commune_insee": "61395", + "nom_de_la_commune": "ST GERMAIN DES GROIS", + "code_postal": "61110", + "coordonnees_gps": [ + 48.4049147624, + 0.815631940601 + ], + "libelle_d_acheminement": "ST GERMAIN DES GROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.815631940601, + 48.4049147624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90d89f22265133580545d011af285f36763bf473", + "fields": { + "code_commune_insee": "88478", + "nom_de_la_commune": "TRANQUEVILLE GRAUX", + "code_postal": "88300", + "coordonnees_gps": [ + 48.4392316325, + 5.8449609523 + ], + "libelle_d_acheminement": "TRANQUEVILLE GRAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8449609523, + 48.4392316325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43fc6dca9f365282d0f8fa9c541e2dba1d0e0566", + "fields": { + "code_commune_insee": "61399", + "nom_de_la_commune": "ST GERVAIS DES SABLONS", + "code_postal": "61160", + "coordonnees_gps": [ + 48.9014613359, + 0.0731396137637 + ], + "libelle_d_acheminement": "ST GERVAIS DES SABLONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0731396137637, + 48.9014613359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "819336c11bd465619685e83efce0e698a808934f", + "fields": { + "code_commune_insee": "88482", + "nom_de_la_commune": "URVILLE", + "code_postal": "88140", + "coordonnees_gps": [ + 48.1905034513, + 5.74420469938 + ], + "libelle_d_acheminement": "URVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74420469938, + 48.1905034513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5da67019ff55e44be2edbb1264353f4276ab4414", + "fields": { + "code_commune_insee": "61400", + "nom_de_la_commune": "ST GERVAIS DU PERRON", + "code_postal": "61500", + "coordonnees_gps": [ + 48.5368344624, + 0.150158348014 + ], + "libelle_d_acheminement": "ST GERVAIS DU PERRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.150158348014, + 48.5368344624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28c362b529900b0f3fcfcf8d8a503e0f9401d310", + "fields": { + "code_commune_insee": "88488", + "nom_de_la_commune": "VALFROICOURT", + "code_postal": "88270", + "coordonnees_gps": [ + 48.1957789984, + 6.08889066839 + ], + "libelle_d_acheminement": "VALFROICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08889066839, + 48.1957789984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15290e04ad8e5db16a76e57201ba603ffb957c98", + "fields": { + "code_commune_insee": "61411", + "nom_de_la_commune": "ST JOUIN DE BLAVOU", + "code_postal": "61360", + "coordonnees_gps": [ + 48.4486820251, + 0.4823333383 + ], + "libelle_d_acheminement": "ST JOUIN DE BLAVOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.4823333383, + 48.4486820251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42c6cf3235e893e352629ebc3cf3b4017186669e", + "fields": { + "code_commune_insee": "88490", + "nom_de_la_commune": "VALLEROY LE SEC", + "code_postal": "88800", + "coordonnees_gps": [ + 48.184872138, + 6.0007659937 + ], + "libelle_d_acheminement": "VALLEROY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0007659937, + 48.184872138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d961e1edce442471e9a827226c992429dfb3d282", + "fields": { + "code_commune_insee": "61421", + "nom_de_la_commune": "ST MARS D EGRENNE", + "code_postal": "61350", + "coordonnees_gps": [ + 48.5513540605, + -0.733712113871 + ], + "libelle_d_acheminement": "ST MARS D EGRENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.733712113871, + 48.5513540605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d9c667cbb2ca2f7ef098ee53cecdb6ac078e646", + "fields": { + "code_commune_insee": "88495", + "nom_de_la_commune": "VAUDEVILLE", + "code_postal": "88000", + "coordonnees_gps": [ + 48.2298063128, + 6.53994247926 + ], + "libelle_d_acheminement": "VAUDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53994247926, + 48.2298063128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bfc1a338e7e599df458820d255d18adf87b6399", + "fields": { + "code_commune_insee": "61422", + "nom_de_la_commune": "LES ASPRES", + "code_postal": "61270", + "coordonnees_gps": [ + 48.6753438359, + 0.610110315479 + ], + "libelle_d_acheminement": "LES ASPRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.610110315479, + 48.6753438359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a46ae2c201ef30ea9156b5136398be5ebc9cd98", + "fields": { + "code_commune_insee": "88496", + "nom_de_la_commune": "VAUDONCOURT", + "code_postal": "88140", + "coordonnees_gps": [ + 48.2205661672, + 5.80563694701 + ], + "libelle_d_acheminement": "VAUDONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80563694701, + 48.2205661672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb2928a871e14e500c48bf411981d9a92aea1cbb", + "fields": { + "code_commune_insee": "61443", + "nom_de_la_commune": "ST PAUL", + "code_postal": "61100", + "coordonnees_gps": [ + 48.7391706962, + -0.63036026972 + ], + "libelle_d_acheminement": "ST PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63036026972, + 48.7391706962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2127234c59dd5787f527c5f253eb02ce2a84e497", + "fields": { + "code_commune_insee": "88500", + "nom_de_la_commune": "VENTRON", + "code_postal": "88310", + "coordonnees_gps": [ + 47.9369910932, + 6.88525672777 + ], + "libelle_d_acheminement": "VENTRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88525672777, + 47.9369910932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "591537547f6ece59e9d5c92d9894769f6acb4a13", + "fields": { + "code_commune_insee": "61448", + "nom_de_la_commune": "ST PIERRE LA BRUYERE", + "code_postal": "61340", + "coordonnees_gps": [ + 48.35901525, + 0.799156524403 + ], + "libelle_d_acheminement": "ST PIERRE LA BRUYERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.799156524403, + 48.35901525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3c8e8654ab12ad082f6f88e97a17e06eb15f695", + "fields": { + "code_commune_insee": "88501", + "nom_de_la_commune": "LE VERMONT", + "code_postal": "88210", + "coordonnees_gps": [ + 48.388919763, + 7.06729393945 + ], + "libelle_d_acheminement": "LE VERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06729393945, + 48.388919763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34c11f94d79887a8b35184b5d557f2d0f140e6bd", + "fields": { + "code_commune_insee": "61454", + "nom_de_la_commune": "STE SCOLASSE SUR SARTHE", + "code_postal": "61170", + "coordonnees_gps": [ + 48.5810388449, + 0.385128508121 + ], + "libelle_d_acheminement": "STE SCOLASSE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.385128508121, + 48.5810388449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fce93a4b167bd7b70833ea483f7adbefc55334d2", + "fields": { + "code_commune_insee": "88502", + "nom_de_la_commune": "VERVEZELLE", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2208582004, + 6.74098838874 + ], + "libelle_d_acheminement": "VERVEZELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74098838874, + 48.2208582004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56bf2a441bbc4781eab74547b53b8b0b41006f8a", + "fields": { + "code_commune_insee": "61456", + "nom_de_la_commune": "ST SULPICE SUR RISLE", + "code_postal": "61300", + "coordonnees_gps": [ + 48.776305281, + 0.671403390128 + ], + "libelle_d_acheminement": "ST SULPICE SUR RISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.671403390128, + 48.776305281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f60998cc1f621015ac40ec1d664723c6a46e539", + "fields": { + "code_commune_insee": "88503", + "nom_de_la_commune": "VEXAINCOURT", + "code_postal": "88110", + "coordonnees_gps": [ + 48.4815540361, + 7.06463312135 + ], + "libelle_d_acheminement": "VEXAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06463312135, + 48.4815540361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "097246e910b1ec68ede51f617cfff0688154a4e5", + "fields": { + "code_commune_insee": "61461", + "nom_de_la_commune": "LE SAP ANDRE", + "code_postal": "61230", + "coordonnees_gps": [ + 48.8285699503, + 0.390076945635 + ], + "libelle_d_acheminement": "LE SAP ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.390076945635, + 48.8285699503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa981824bb0d3816d13128210bc3796e23397c72", + "fields": { + "code_commune_insee": "88504", + "nom_de_la_commune": "VICHEREY", + "code_postal": "88170", + "coordonnees_gps": [ + 48.382979978, + 5.93580495171 + ], + "libelle_d_acheminement": "VICHEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93580495171, + 48.382979978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "060841775f621bf7bf0f5879dd31c92a5d976d29", + "fields": { + "code_commune_insee": "61466", + "nom_de_la_commune": "LA SELLE LA FORGE", + "code_postal": "61100", + "coordonnees_gps": [ + 48.7354177799, + -0.53278023694 + ], + "libelle_d_acheminement": "LA SELLE LA FORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53278023694, + 48.7354177799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6eab625431f7257383cf0dfecc057c8b1c08e810", + "fields": { + "code_commune_insee": "88506", + "nom_de_la_commune": "VIEUX MOULIN", + "code_postal": "88210", + "coordonnees_gps": [ + 48.39320709, + 7.00559918116 + ], + "libelle_d_acheminement": "VIEUX MOULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00559918116, + 48.39320709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5504b872a71226214baf1ae3335695b4e9541555", + "fields": { + "code_commune_insee": "61467", + "nom_de_la_commune": "SEMALLE", + "code_postal": "61250", + "coordonnees_gps": [ + 48.4735348664, + 0.15478366717 + ], + "libelle_d_acheminement": "SEMALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.15478366717, + 48.4735348664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50d254242765784c0cefc3cfc6ad742d16d21b35", + "fields": { + "code_commune_insee": "88511", + "nom_de_la_commune": "VILLOUXEL", + "code_postal": "88350", + "coordonnees_gps": [ + 48.3475437712, + 5.58000245649 + ], + "libelle_d_acheminement": "VILLOUXEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58000245649, + 48.3475437712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1da35e43304e054027340746a2cbfa9970a752e8", + "fields": { + "ligne_5": "CHAMBOIS", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61160", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "562503dd865912cbd7e9653ffac8fd1574c0b0f3", + "fields": { + "code_commune_insee": "88513", + "nom_de_la_commune": "VINCEY", + "code_postal": "88450", + "coordonnees_gps": [ + 48.3305229808, + 6.32859572261 + ], + "libelle_d_acheminement": "VINCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32859572261, + 48.3305229808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cd78601406453e1c3eddc51cba78611c2a3f159", + "fields": { + "ligne_5": "AVERNES SOUS EXMES", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61310", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae7c87af916843d63e37946686105c7385044202", + "fields": { + "code_commune_insee": "88515", + "nom_de_la_commune": "VIOMENIL", + "code_postal": "88260", + "coordonnees_gps": [ + 48.0901280753, + 6.1705515055 + ], + "libelle_d_acheminement": "VIOMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1705515055, + 48.0901280753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f732936135b8aba7ea84a1129e1a73c92f6f1a86", + "fields": { + "ligne_5": "LA COCHERE", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61310", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "814f0342a8adf52ab2d4fdced48c645b87fca226", + "fields": { + "code_commune_insee": "88519", + "nom_de_la_commune": "LA VOIVRE", + "code_postal": "88470", + "coordonnees_gps": [ + 48.3414006349, + 6.89978411056 + ], + "libelle_d_acheminement": "LA VOIVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89978411056, + 48.3414006349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "731948fe8818103261049e029569c381eea11c1c", + "fields": { + "code_commune_insee": "61482", + "nom_de_la_commune": "TESSE FROULAY", + "code_postal": "61410", + "coordonnees_gps": [ + 48.5310517444, + -0.428931253176 + ], + "libelle_d_acheminement": "TESSE FROULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.428931253176, + 48.5310517444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a802d6e282eacaee8f53c1cfa9164ebb5e9736a", + "fields": { + "code_commune_insee": "88528", + "nom_de_la_commune": "XAMONTARUPT", + "code_postal": "88460", + "coordonnees_gps": [ + 48.1237337157, + 6.64357894957 + ], + "libelle_d_acheminement": "XAMONTARUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64357894957, + 48.1237337157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3e745c5a2cf3e1683f0824d108c16ddf6f434f1", + "fields": { + "ligne_5": "LA ROUGE", + "code_commune_insee": "61484", + "libelle_d_acheminement": "VAL AU PERCHE", + "code_postal": "61260", + "nom_de_la_commune": "VAL AU PERCHE", + "coordonnees_gps": [ + 48.2676940084, + 0.650909010002 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.650909010002, + 48.2676940084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "201bc614cd9552cc2bb21256742bf82d919ad2c8", + "fields": { + "code_commune_insee": "88530", + "nom_de_la_commune": "XERTIGNY", + "code_postal": "88220", + "coordonnees_gps": [ + 48.0387121214, + 6.38237551394 + ], + "libelle_d_acheminement": "XERTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38237551394, + 48.0387121214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea85025728d2ad39c94432d13f8e0b974bb4df96", + "fields": { + "ligne_5": "BIVILLIERS", + "code_commune_insee": "61491", + "libelle_d_acheminement": "TOUROUVRE AU PERCHE", + "code_postal": "61190", + "nom_de_la_commune": "TOUROUVRE AU PERCHE", + "coordonnees_gps": [ + 48.5889926319, + 0.659944291667 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659944291667, + 48.5889926319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1736eea38c1a0b8489c196bba7f17690d22fec08", + "fields": { + "code_commune_insee": "88531", + "nom_de_la_commune": "XONRUPT LONGEMER", + "code_postal": "88400", + "coordonnees_gps": [ + 48.0716092272, + 6.95374586425 + ], + "libelle_d_acheminement": "XONRUPT LONGEMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95374586425, + 48.0716092272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8617b6f87c0e25faa30e560c9ecab020f16041a", + "fields": { + "ligne_5": "BRESOLETTES", + "code_commune_insee": "61491", + "libelle_d_acheminement": "TOUROUVRE AU PERCHE", + "code_postal": "61190", + "nom_de_la_commune": "TOUROUVRE AU PERCHE", + "coordonnees_gps": [ + 48.5889926319, + 0.659944291667 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659944291667, + 48.5889926319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c718c9695e25054cbfd0ea8961ecc34ea9796f8", + "fields": { + "ligne_5": "VOLGRE", + "code_commune_insee": "89003", + "libelle_d_acheminement": "MONTHOLON", + "code_postal": "89710", + "nom_de_la_commune": "MONTHOLON", + "coordonnees_gps": [ + 47.8710829792, + 3.32834802576 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32834802576, + 47.8710829792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adae895af09f712829f4eeed7f1e4a1006b10261", + "fields": { + "ligne_5": "CHAMPS", + "code_commune_insee": "61491", + "libelle_d_acheminement": "TOUROUVRE AU PERCHE", + "code_postal": "61190", + "nom_de_la_commune": "TOUROUVRE AU PERCHE", + "coordonnees_gps": [ + 48.5889926319, + 0.659944291667 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659944291667, + 48.5889926319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00746b4e3e0e3d3f93c8074d9d15d569debce49a", + "fields": { + "code_commune_insee": "89006", + "nom_de_la_commune": "ANCY LE LIBRE", + "code_postal": "89160", + "coordonnees_gps": [ + 47.8056331303, + 4.14511090809 + ], + "libelle_d_acheminement": "ANCY LE LIBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14511090809, + 47.8056331303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "495ba2b136f2b9694411221efe1259d25fc6a82d", + "fields": { + "code_commune_insee": "61501", + "nom_de_la_commune": "VERRIERES", + "code_postal": "61110", + "coordonnees_gps": [ + 48.3940369878, + 0.751793679416 + ], + "libelle_d_acheminement": "VERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.751793679416, + 48.3940369878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2c45245ad9432e6890aaf9b3dea5040444eb46e", + "fields": { + "code_commune_insee": "89008", + "nom_de_la_commune": "ANGELY", + "code_postal": "89440", + "coordonnees_gps": [ + 47.560677405, + 4.01177532833 + ], + "libelle_d_acheminement": "ANGELY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01177532833, + 47.560677405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11facbb124be421225ca5231d5e3760d20305576", + "fields": { + "code_commune_insee": "61508", + "nom_de_la_commune": "VIMOUTIERS", + "code_postal": "61120", + "coordonnees_gps": [ + 48.9244621074, + 0.200660290146 + ], + "libelle_d_acheminement": "VIMOUTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.200660290146, + 48.9244621074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02ded383b74d40b58b055051520b3ac3c9539f04", + "fields": { + "code_commune_insee": "89010", + "nom_de_la_commune": "ANNAY SUR SEREIN", + "code_postal": "89310", + "coordonnees_gps": [ + 47.728708318, + 3.96334270407 + ], + "libelle_d_acheminement": "ANNAY SUR SEREIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96334270407, + 47.728708318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc839e10f01d1142cf7b960a27edc7994ec9b4ba", + "fields": { + "code_commune_insee": "62006", + "nom_de_la_commune": "ACHIET LE PETIT", + "code_postal": "62121", + "coordonnees_gps": [ + 50.1256395888, + 2.7552096399 + ], + "libelle_d_acheminement": "ACHIET LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7552096399, + 50.1256395888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "153c6d021c24d6c867dd9fa5e6666a2f831ef403", + "fields": { + "code_commune_insee": "89016", + "nom_de_la_commune": "ARGENTENAY", + "code_postal": "89160", + "coordonnees_gps": [ + 47.822524019, + 4.11478245867 + ], + "libelle_d_acheminement": "ARGENTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11478245867, + 47.822524019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2017ce952ae6cf1c36089b50b4eda35fc1f74a2", + "fields": { + "code_commune_insee": "62010", + "nom_de_la_commune": "AFFRINGUES", + "code_postal": "62380", + "coordonnees_gps": [ + 50.6903350571, + 2.07492436119 + ], + "libelle_d_acheminement": "AFFRINGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07492436119, + 50.6903350571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a892066fd7188f97e0cf204237be2ac604edacd1", + "fields": { + "code_commune_insee": "89017", + "nom_de_la_commune": "ARGENTEUIL SUR ARMANCON", + "code_postal": "89160", + "coordonnees_gps": [ + 47.7437885259, + 4.10154534909 + ], + "libelle_d_acheminement": "ARGENTEUIL SUR ARMANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10154534909, + 47.7437885259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69c4250f988bbad262b7693ed18da4157d9fd2ac", + "fields": { + "code_commune_insee": "62021", + "nom_de_la_commune": "ALETTE", + "code_postal": "62650", + "coordonnees_gps": [ + 50.524381531, + 1.85083000523 + ], + "libelle_d_acheminement": "ALETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85083000523, + 50.524381531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e20930c6ba8459a92f402e48fbd751da36b6f8f", + "fields": { + "code_commune_insee": "89034", + "nom_de_la_commune": "BEINE", + "code_postal": "89800", + "coordonnees_gps": [ + 47.816668822, + 3.72338396242 + ], + "libelle_d_acheminement": "BEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72338396242, + 47.816668822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "111a59efb56924a9694471b0547528ec5f0b7eb3", + "fields": { + "code_commune_insee": "62034", + "nom_de_la_commune": "ANNEQUIN", + "code_postal": "62149", + "coordonnees_gps": [ + 50.5032887953, + 2.71958159288 + ], + "libelle_d_acheminement": "ANNEQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71958159288, + 50.5032887953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55fae425bfc42c8ebdca86c728674ab9eac6803e", + "fields": { + "code_commune_insee": "89037", + "nom_de_la_commune": "BEON", + "code_postal": "89410", + "coordonnees_gps": [ + 47.9490435845, + 3.31322327005 + ], + "libelle_d_acheminement": "BEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31322327005, + 47.9490435845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3899994e3b626d1a963c1342da33ee590834ba0e", + "fields": { + "code_commune_insee": "62035", + "nom_de_la_commune": "ANNEZIN", + "code_postal": "62232", + "coordonnees_gps": [ + 50.5396043649, + 2.61906640484 + ], + "libelle_d_acheminement": "ANNEZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61906640484, + 50.5396043649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0566b5d1cde81d929471fca8864a31800c92e44", + "fields": { + "code_commune_insee": "89042", + "nom_de_la_commune": "BIERRY LES BELLES FONTAINES", + "code_postal": "89420", + "coordonnees_gps": [ + 47.6159994404, + 4.17905397705 + ], + "libelle_d_acheminement": "BIERRY LES BELLES FONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17905397705, + 47.6159994404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a353c709019c87b5c67857b4876a916ffa069609", + "fields": { + "code_commune_insee": "62038", + "nom_de_la_commune": "ARDRES", + "code_postal": "62610", + "coordonnees_gps": [ + 50.8768753502, + 1.98398234284 + ], + "libelle_d_acheminement": "ARDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98398234284, + 50.8768753502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12892ebb0b6e9bfb0ea227eca4798cfb37207f36", + "fields": { + "code_commune_insee": "89049", + "nom_de_la_commune": "BOIS D ARCY", + "code_postal": "89660", + "coordonnees_gps": [ + 47.5510372024, + 3.72064912624 + ], + "libelle_d_acheminement": "BOIS D ARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72064912624, + 47.5510372024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77735986a79223fd93f51c177f34721179b68217", + "fields": { + "code_commune_insee": "62046", + "nom_de_la_commune": "AUBIN ST VAAST", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3867453505, + 1.96316204355 + ], + "libelle_d_acheminement": "AUBIN ST VAAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96316204355, + 50.3867453505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea891fd736b79da6acd422f8de619b4b14a4929c", + "fields": { + "code_commune_insee": "89050", + "nom_de_la_commune": "BONNARD", + "code_postal": "89400", + "coordonnees_gps": [ + 47.9295214402, + 3.53452583503 + ], + "libelle_d_acheminement": "BONNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53452583503, + 47.9295214402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25de78251ce9ae6abf8894654e47a41085e12afa", + "fields": { + "code_commune_insee": "62055", + "nom_de_la_commune": "AUDREHEM", + "code_postal": "62890", + "coordonnees_gps": [ + 50.7714356577, + 1.98451606586 + ], + "libelle_d_acheminement": "AUDREHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98451606586, + 50.7714356577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8653a1d80ee73fedd3edba79f26100dbf60ced8", + "fields": { + "ligne_5": "BLIGNY EN OTHE", + "code_commune_insee": "89055", + "libelle_d_acheminement": "BRIENON SUR ARMANCON", + "code_postal": "89210", + "nom_de_la_commune": "BRIENON SUR ARMANCON", + "coordonnees_gps": [ + 48.0009924544, + 3.61784777108 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61784777108, + 48.0009924544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56ed4027d60ff89a55f7ffcee3602644ebf04648", + "fields": { + "code_commune_insee": "62059", + "nom_de_la_commune": "AUTINGUES", + "code_postal": "62610", + "coordonnees_gps": [ + 50.8422869707, + 1.98640127698 + ], + "libelle_d_acheminement": "AUTINGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98640127698, + 50.8422869707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "114f6661bc955dbc93fbfd1ea696eaf3b7b87852", + "fields": { + "code_commune_insee": "89059", + "nom_de_la_commune": "BUSSY EN OTHE", + "code_postal": "89400", + "coordonnees_gps": [ + 48.0413773601, + 3.50603239143 + ], + "libelle_d_acheminement": "BUSSY EN OTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50603239143, + 48.0413773601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e9a80211040d9fbfe5c647755e21c453e82a1ab", + "fields": { + "code_commune_insee": "62060", + "nom_de_la_commune": "AUXI LE CHATEAU", + "code_postal": "62390", + "coordonnees_gps": [ + 50.2310426213, + 2.11720873928 + ], + "libelle_d_acheminement": "AUXI LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11720873928, + 50.2310426213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85bb138158ab3f360a49610e9856bd32d20ac94c", + "fields": { + "code_commune_insee": "89063", + "nom_de_la_commune": "LA CELLE ST CYR", + "code_postal": "89116", + "coordonnees_gps": [ + 47.9792470887, + 3.28365784022 + ], + "libelle_d_acheminement": "LA CELLE ST CYR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28365784022, + 47.9792470887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5adf43e553b237fb80144455aed0667bd04a34e9", + "fields": { + "code_commune_insee": "62062", + "nom_de_la_commune": "AVESNES", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5516543223, + 1.96214874129 + ], + "libelle_d_acheminement": "AVESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96214874129, + 50.5516543223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed66d3db4fd45187a438f0946cb24c7e1a0b2213", + "fields": { + "code_commune_insee": "89066", + "nom_de_la_commune": "CERISIERS", + "code_postal": "89320", + "coordonnees_gps": [ + 48.1190156789, + 3.49841417451 + ], + "libelle_d_acheminement": "CERISIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49841417451, + 48.1190156789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53b5003c99e1ff30a3736d3cb20b450259aef07d", + "fields": { + "code_commune_insee": "62064", + "nom_de_la_commune": "AVESNES LES BAPAUME", + "code_postal": "62450", + "coordonnees_gps": [ + 50.1049859352, + 2.83305700978 + ], + "libelle_d_acheminement": "AVESNES LES BAPAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83305700978, + 50.1049859352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23e1a0b3c50fb660bd3f86a7a547f489b8162d4b", + "fields": { + "ligne_5": "POINCHY", + "code_commune_insee": "89068", + "libelle_d_acheminement": "CHABLIS", + "code_postal": "89800", + "nom_de_la_commune": "CHABLIS", + "coordonnees_gps": [ + 47.8075995199, + 3.79091424228 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79091424228, + 47.8075995199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9d51447ad1896ad4c4339566560764a1e552fdf", + "fields": { + "code_commune_insee": "62066", + "nom_de_la_commune": "AVONDANCE", + "code_postal": "62310", + "coordonnees_gps": [ + 50.4792838147, + 2.10125197413 + ], + "libelle_d_acheminement": "AVONDANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10125197413, + 50.4792838147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b717bed9b52675599e5d57246a0c97faa24f88f0", + "fields": { + "ligne_5": "LOUESME", + "code_commune_insee": "89073", + "libelle_d_acheminement": "CHAMPIGNELLES", + "code_postal": "89350", + "nom_de_la_commune": "CHAMPIGNELLES", + "coordonnees_gps": [ + 47.7800283506, + 3.07775894136 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07775894136, + 47.7800283506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e1a6687a62a3d56ba941a55a55ab4bd7a4796c7", + "fields": { + "code_commune_insee": "62069", + "nom_de_la_commune": "AZINCOURT", + "code_postal": "62310", + "coordonnees_gps": [ + 50.4588971511, + 2.11716559112 + ], + "libelle_d_acheminement": "AZINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11716559112, + 50.4588971511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f9a399c3105504f0745fc35cc1aa6831cbae0ad", + "fields": { + "code_commune_insee": "89074", + "nom_de_la_commune": "CHAMPIGNY", + "code_postal": "89340", + "coordonnees_gps": [ + 48.3042190014, + 3.13177066366 + ], + "libelle_d_acheminement": "CHAMPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13177066366, + 48.3042190014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99ba121e60618e6213bd1b469729de5c854b3f7e", + "fields": { + "code_commune_insee": "62071", + "nom_de_la_commune": "BAILLEUL LES PERNES", + "code_postal": "62550", + "coordonnees_gps": [ + 50.5078665231, + 2.3803188111 + ], + "libelle_d_acheminement": "BAILLEUL LES PERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3803188111, + 50.5078665231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "115f4ed70833848aab33e1d51c4f6e4cc768d3ec", + "fields": { + "code_commune_insee": "89077", + "nom_de_la_commune": "CHAMPS SUR YONNE", + "code_postal": "89290", + "coordonnees_gps": [ + 47.7506618668, + 3.60173279363 + ], + "libelle_d_acheminement": "CHAMPS SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60173279363, + 47.7506618668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06d565139ca902ab041d025896759e15c90678c0", + "fields": { + "code_commune_insee": "62073", + "nom_de_la_commune": "BAILLEUL SIR BERTHOULT", + "code_postal": "62580", + "coordonnees_gps": [ + 50.3357112804, + 2.84376737542 + ], + "libelle_d_acheminement": "BAILLEUL SIR BERTHOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84376737542, + 50.3357112804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f255409ee991d52b3c2b789a9743d0f231924636", + "fields": { + "ligne_5": "CHARNY", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da03ffe6bf8020edcb65a551fddfd8e1b983fb05", + "fields": { + "code_commune_insee": "62081", + "nom_de_la_commune": "BARALLE", + "code_postal": "62860", + "coordonnees_gps": [ + 50.2138070796, + 3.05693800103 + ], + "libelle_d_acheminement": "BARALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05693800103, + 50.2138070796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd44a713b552677d07f2027d2b8dded69c0e0060", + "fields": { + "ligne_5": "CHEVILLON", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "837f914f21b4c26d9d48607b0c1c5a9a54ca8339", + "fields": { + "code_commune_insee": "62082", + "nom_de_la_commune": "BARASTRE", + "code_postal": "62124", + "coordonnees_gps": [ + 50.071129509, + 2.93896011115 + ], + "libelle_d_acheminement": "BARASTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93896011115, + 50.071129509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09c996ffea673c79b9cda8f7e1e59c19ecce8d56", + "fields": { + "ligne_5": "PRUNOY", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eafbdb53272e08fc4d240b3e6b70f36c7eae700", + "fields": { + "code_commune_insee": "62086", + "nom_de_la_commune": "BAVINCOURT", + "code_postal": "62158", + "coordonnees_gps": [ + 50.2235500941, + 2.5641980363 + ], + "libelle_d_acheminement": "BAVINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5641980363, + 50.2235500941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf0051a156e2ff57eba89822f10b5523f40f30c9", + "fields": { + "ligne_5": "ST DENIS SUR OUANNE", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1eed7628dea4d84cd6756b67b109e3481e637d4", + "fields": { + "code_commune_insee": "62090", + "nom_de_la_commune": "BEALENCOURT", + "code_postal": "62770", + "coordonnees_gps": [ + 50.4365269815, + 2.12585170509 + ], + "libelle_d_acheminement": "BEALENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12585170509, + 50.4365269815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59e1dcd16ff372c2ba1937877d691f9e1109b758", + "fields": { + "code_commune_insee": "89100", + "nom_de_la_commune": "CHEROY", + "code_postal": "89690", + "coordonnees_gps": [ + 48.2016247737, + 3.00697319562 + ], + "libelle_d_acheminement": "CHEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00697319562, + 48.2016247737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac6f9520b040ae42d76d76843f1215e550bb8dc7", + "fields": { + "code_commune_insee": "62093", + "nom_de_la_commune": "BEAULENCOURT", + "code_postal": "62450", + "coordonnees_gps": [ + 50.0732677142, + 2.86940557722 + ], + "libelle_d_acheminement": "BEAULENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86940557722, + 50.0732677142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d94b50329a224c10fddc562c6e8efffdea92105", + "fields": { + "code_commune_insee": "89113", + "nom_de_la_commune": "COLLEMIERS", + "code_postal": "89100", + "coordonnees_gps": [ + 48.153962733, + 3.22037217648 + ], + "libelle_d_acheminement": "COLLEMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22037217648, + 48.153962733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "139e8d2724b24dbd0ea08df732c5ffa877f6b420", + "fields": { + "code_commune_insee": "62108", + "nom_de_la_commune": "BERCK", + "code_postal": "62600", + "coordonnees_gps": [ + 50.4141574341, + 1.58229663833 + ], + "libelle_d_acheminement": "BERCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58229663833, + 50.4141574341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f432feca0280e76e0ec8f0621a33151b8406640", + "fields": { + "code_commune_insee": "89116", + "nom_de_la_commune": "CORNANT", + "code_postal": "89500", + "coordonnees_gps": [ + 48.1352293859, + 3.1876647879 + ], + "libelle_d_acheminement": "CORNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1876647879, + 48.1352293859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a51586d1f9c049168d5e1f16ee87c921e1d0932", + "fields": { + "code_commune_insee": "62115", + "nom_de_la_commune": "BERNEVILLE", + "code_postal": "62123", + "coordonnees_gps": [ + 50.2641580645, + 2.67337034713 + ], + "libelle_d_acheminement": "BERNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67337034713, + 50.2641580645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3e0c158b861da7e9ca69d98eaf82966a514c857", + "fields": { + "code_commune_insee": "89117", + "nom_de_la_commune": "COULANGERON", + "code_postal": "89580", + "coordonnees_gps": [ + 47.6835328856, + 3.46990544997 + ], + "libelle_d_acheminement": "COULANGERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46990544997, + 47.6835328856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "316ae1dc02da23ec90a94b1788a502f186c67ccd", + "fields": { + "code_commune_insee": "62119", + "nom_de_la_commune": "BETHUNE", + "code_postal": "62400", + "coordonnees_gps": [ + 50.5288922584, + 2.64242379342 + ], + "libelle_d_acheminement": "BETHUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64242379342, + 50.5288922584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b897f7c15487270ffefb44fa3b700b652cbc94f2", + "fields": { + "code_commune_insee": "89120", + "nom_de_la_commune": "COULOURS", + "code_postal": "89320", + "coordonnees_gps": [ + 48.162216856, + 3.59391352446 + ], + "libelle_d_acheminement": "COULOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59391352446, + 48.162216856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81d371f61274fc7e6f2962e676e4fb4110b74844", + "fields": { + "code_commune_insee": "62120", + "nom_de_la_commune": "BEUGIN", + "code_postal": "62150", + "coordonnees_gps": [ + 50.4421075569, + 2.50784218991 + ], + "libelle_d_acheminement": "BEUGIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50784218991, + 50.4421075569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb7eecbad81e9e405e89b8b626ec67af2121b70b", + "fields": { + "code_commune_insee": "89129", + "nom_de_la_commune": "CRAIN", + "code_postal": "89480", + "coordonnees_gps": [ + 47.5378170554, + 3.5683240293 + ], + "libelle_d_acheminement": "CRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5683240293, + 47.5378170554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fde6620805b66714b905cf66d927c24b51f584f5", + "fields": { + "code_commune_insee": "62122", + "nom_de_la_commune": "BEUGNY", + "code_postal": "62124", + "coordonnees_gps": [ + 50.1183185417, + 2.93213204111 + ], + "libelle_d_acheminement": "BEUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93213204111, + 50.1183185417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ea37d25b21cae5227fadc6598c20b75dc249f2", + "fields": { + "code_commune_insee": "89131", + "nom_de_la_commune": "CRUZY LE CHATEL", + "code_postal": "89740", + "coordonnees_gps": [ + 47.8725277385, + 4.22845479455 + ], + "libelle_d_acheminement": "CRUZY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22845479455, + 47.8725277385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edf6e5c30a7426b89b5688b276203d4a5737d130", + "fields": { + "code_commune_insee": "62126", + "nom_de_la_commune": "BEUVRY", + "code_postal": "62660", + "coordonnees_gps": [ + 50.5328399462, + 2.69176985674 + ], + "libelle_d_acheminement": "BEUVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69176985674, + 50.5328399462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8b84cb6605e454648304768274ba2eee373240a", + "fields": { + "code_commune_insee": "89141", + "nom_de_la_commune": "DISSANGIS", + "code_postal": "89440", + "coordonnees_gps": [ + 47.5932127691, + 3.98208557179 + ], + "libelle_d_acheminement": "DISSANGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98208557179, + 47.5932127691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d4d33bb80659750ee4497a803333805722860ec", + "fields": { + "code_commune_insee": "62140", + "nom_de_la_commune": "BLEQUIN", + "code_postal": "62380", + "coordonnees_gps": [ + 50.6645152898, + 1.97143085721 + ], + "libelle_d_acheminement": "BLEQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97143085721, + 50.6645152898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d04efcd5fd041750208bcd6e14cbcedec6a122ce", + "fields": { + "code_commune_insee": "89144", + "nom_de_la_commune": "DOMATS", + "code_postal": "89150", + "coordonnees_gps": [ + 48.1175257061, + 3.05983267835 + ], + "libelle_d_acheminement": "DOMATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05983267835, + 48.1175257061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aca724ab9965fe1f585e4ee5aa0b848b3b4c7987", + "fields": { + "code_commune_insee": "62141", + "nom_de_la_commune": "BLESSY", + "code_postal": "62120", + "coordonnees_gps": [ + 50.6164683999, + 2.33114392012 + ], + "libelle_d_acheminement": "BLESSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33114392012, + 50.6164683999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cea13ded0d509bbe3fe4632f34b3c7d5923a172", + "fields": { + "code_commune_insee": "89146", + "nom_de_la_commune": "DOMECY SUR LE VAULT", + "code_postal": "89200", + "coordonnees_gps": [ + 47.489569621, + 3.81025505067 + ], + "libelle_d_acheminement": "DOMECY SUR LE VAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81025505067, + 47.489569621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d89a533f982a4670118e87956cf208055fa19ec5", + "fields": { + "code_commune_insee": "62144", + "nom_de_la_commune": "BOIRY BECQUERELLE", + "code_postal": "62128", + "coordonnees_gps": [ + 50.2137016789, + 2.82007955522 + ], + "libelle_d_acheminement": "BOIRY BECQUERELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82007955522, + 50.2137016789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67728a45d55a76a73015befa6d822898ef0e7cb7", + "fields": { + "code_commune_insee": "89147", + "nom_de_la_commune": "DRACY", + "code_postal": "89130", + "coordonnees_gps": [ + 47.7486734408, + 3.23090426169 + ], + "libelle_d_acheminement": "DRACY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23090426169, + 47.7486734408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0c20bfb0da76ff2987371bb00f430ba395b6159", + "fields": { + "code_commune_insee": "62149", + "nom_de_la_commune": "BOISDINGHEM", + "code_postal": "62500", + "coordonnees_gps": [ + 50.7490608016, + 2.09427817413 + ], + "libelle_d_acheminement": "BOISDINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09427817413, + 50.7490608016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c376afc854cd686f85e5df06b740237e3d4a5158", + "fields": { + "code_commune_insee": "89153", + "nom_de_la_commune": "EPINEUIL", + "code_postal": "89700", + "coordonnees_gps": [ + 47.8812855119, + 3.98935069483 + ], + "libelle_d_acheminement": "EPINEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98935069483, + 47.8812855119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "616a109eab1da8ba897b901fc66102ae7917939f", + "fields": { + "code_commune_insee": "62151", + "nom_de_la_commune": "BOISLEUX AU MONT", + "code_postal": "62175", + "coordonnees_gps": [ + 50.212571363, + 2.77755045242 + ], + "libelle_d_acheminement": "BOISLEUX AU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77755045242, + 50.212571363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee622edb9b4f9d723c5386efd1cab02f173559e2", + "fields": { + "code_commune_insee": "89156", + "nom_de_la_commune": "ESNON", + "code_postal": "89210", + "coordonnees_gps": [ + 48.0079365464, + 3.5680062853 + ], + "libelle_d_acheminement": "ESNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5680062853, + 48.0079365464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc6559d4ebb90471e2dbca1b9b57eafb7741aed1", + "fields": { + "code_commune_insee": "62152", + "nom_de_la_commune": "BOISLEUX ST MARC", + "code_postal": "62175", + "coordonnees_gps": [ + 50.212910679, + 2.79651597969 + ], + "libelle_d_acheminement": "BOISLEUX ST MARC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79651597969, + 50.212910679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d092224273604175218b82002eda58154f24465", + "fields": { + "code_commune_insee": "89168", + "nom_de_la_commune": "FLEYS", + "code_postal": "89800", + "coordonnees_gps": [ + 47.8164766516, + 3.85937202058 + ], + "libelle_d_acheminement": "FLEYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85937202058, + 47.8164766516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "202bd05eb02edbe873128e0da79e061ee570851a", + "fields": { + "code_commune_insee": "62154", + "nom_de_la_commune": "BONNIERES", + "code_postal": "62270", + "coordonnees_gps": [ + 50.2370246537, + 2.26837260211 + ], + "libelle_d_acheminement": "BONNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26837260211, + 50.2370246537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08fc04d3e0e78603b43b47b5239f4fd1c83eaf47", + "fields": { + "code_commune_insee": "89175", + "nom_de_la_commune": "FONTENAY PRES CHABLIS", + "code_postal": "89800", + "coordonnees_gps": [ + 47.8431550159, + 3.81463603577 + ], + "libelle_d_acheminement": "FONTENAY PRES CHABLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81463603577, + 47.8431550159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b0c0717df3dc34e8736d7831912fc79d76ddef1", + "fields": { + "code_commune_insee": "62155", + "nom_de_la_commune": "BONNINGUES LES ARDRES", + "code_postal": "62890", + "coordonnees_gps": [ + 50.7756349885, + 2.0218630949 + ], + "libelle_d_acheminement": "BONNINGUES LES ARDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0218630949, + 50.7756349885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "154d9efec76b6855b1566849bde237ba2643ed7d", + "fields": { + "code_commune_insee": "89194", + "nom_de_la_commune": "GRIMAULT", + "code_postal": "89310", + "coordonnees_gps": [ + 47.6605721672, + 3.97653630246 + ], + "libelle_d_acheminement": "GRIMAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97653630246, + 47.6605721672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "add616fee40f3ff5a285543c5c3ad2be9b00f3b5", + "fields": { + "code_commune_insee": "62156", + "nom_de_la_commune": "BONNINGUES LES CALAIS", + "code_postal": "62340", + "coordonnees_gps": [ + 50.8931678254, + 1.77107438801 + ], + "libelle_d_acheminement": "BONNINGUES LES CALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77107438801, + 50.8931678254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f024a830f7b8bf8b6b6a990c127e590922298a1e", + "fields": { + "ligne_5": "VILLEMER", + "code_commune_insee": "89196", + "libelle_d_acheminement": "VALRAVILLON", + "code_postal": "89113", + "nom_de_la_commune": "VALRAVILLON", + "coordonnees_gps": [ + 47.8968225975, + 3.42698733417 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42698733417, + 47.8968225975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91f6ba542d1a3c5d40c394ecf79350bef60d2ee5", + "fields": { + "code_commune_insee": "62158", + "nom_de_la_commune": "BOUBERS SUR CANCHE", + "code_postal": "62270", + "coordonnees_gps": [ + 50.2910196847, + 2.236634893 + ], + "libelle_d_acheminement": "BOUBERS SUR CANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.236634893, + 50.2910196847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60c19ffcd8d6cd84049c6c2b9f4f02a6b497289a", + "fields": { + "ligne_5": "GUILLON", + "code_commune_insee": "89197", + "libelle_d_acheminement": "GUILLON TERRE PLAINE", + "code_postal": "89420", + "nom_de_la_commune": "GUILLON TERRE PLAINE", + "coordonnees_gps": [ + 47.5289305152, + 4.09122331538 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09122331538, + 47.5289305152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73a02284870a79eff496c347876756eb4df96dc8", + "fields": { + "code_commune_insee": "62166", + "nom_de_la_commune": "BOURS", + "code_postal": "62550", + "coordonnees_gps": [ + 50.4489923653, + 2.40723757367 + ], + "libelle_d_acheminement": "BOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40723757367, + 50.4489923653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1554aeaa72a0be66f39831c9eb379fa8085b3b7", + "fields": { + "ligne_5": "VIGNES", + "code_commune_insee": "89197", + "libelle_d_acheminement": "GUILLON TERRE PLAINE", + "code_postal": "89420", + "nom_de_la_commune": "GUILLON TERRE PLAINE", + "coordonnees_gps": [ + 47.5289305152, + 4.09122331538 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09122331538, + 47.5289305152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67247731fe4985712e64bc349ab63937e7ee6b55", + "fields": { + "code_commune_insee": "62169", + "nom_de_la_commune": "BOUVELINGHEM", + "code_postal": "62380", + "coordonnees_gps": [ + 50.7353867231, + 2.03289516346 + ], + "libelle_d_acheminement": "BOUVELINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03289516346, + 50.7353867231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5312ca9e53004d48275b3cc05faabaff595a46c", + "fields": { + "code_commune_insee": "89199", + "nom_de_la_commune": "GY L EVEQUE", + "code_postal": "89580", + "coordonnees_gps": [ + 47.7133845487, + 3.53370265252 + ], + "libelle_d_acheminement": "GY L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53370265252, + 47.7133845487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c130c94df7c4a3806c86ed4d7b1dc78ac60efb2", + "fields": { + "code_commune_insee": "62177", + "nom_de_la_commune": "BRIMEUX", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4355050534, + 1.83617898169 + ], + "libelle_d_acheminement": "BRIMEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83617898169, + 50.4355050534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "438216200dda0d57b5307c5e7f0048a013506d6b", + "fields": { + "code_commune_insee": "89200", + "nom_de_la_commune": "HAUTERIVE", + "code_postal": "89250", + "coordonnees_gps": [ + 47.9314503852, + 3.60699286989 + ], + "libelle_d_acheminement": "HAUTERIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60699286989, + 47.9314503852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dbca6cb1f7dc6256e38349b4ae95c284a66ce3a", + "fields": { + "code_commune_insee": "62179", + "nom_de_la_commune": "BRUNEMBERT", + "code_postal": "62240", + "coordonnees_gps": [ + 50.7149478254, + 1.88770340365 + ], + "libelle_d_acheminement": "BRUNEMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88770340365, + 50.7149478254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a13579e3242ab017fe6297704083bbbff0902d2d", + "fields": { + "code_commune_insee": "89202", + "nom_de_la_commune": "IRANCY", + "code_postal": "89290", + "coordonnees_gps": [ + 47.7118538877, + 3.68956867667 + ], + "libelle_d_acheminement": "IRANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68956867667, + 47.7118538877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89f289d0dcceea2f80fd48fdd8171e9d74045c22", + "fields": { + "code_commune_insee": "62184", + "nom_de_la_commune": "BUISSY", + "code_postal": "62860", + "coordonnees_gps": [ + 50.2010903848, + 3.02979862167 + ], + "libelle_d_acheminement": "BUISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02979862167, + 50.2010903848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35d2493228d745f7aab83850236f5a5ae4a69ba6", + "fields": { + "code_commune_insee": "89203", + "nom_de_la_commune": "ISLAND", + "code_postal": "89200", + "coordonnees_gps": [ + 47.460108291, + 3.85626941235 + ], + "libelle_d_acheminement": "ISLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85626941235, + 47.460108291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e67dc8e026cbcada7c8ae24a86894a101c653cee", + "fields": { + "code_commune_insee": "62209", + "nom_de_la_commune": "CANLERS", + "code_postal": "62310", + "coordonnees_gps": [ + 50.4863634901, + 2.14578275774 + ], + "libelle_d_acheminement": "CANLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14578275774, + 50.4863634901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98e1f8d4fd2d3e71b9cde43dffa97df277e7125a", + "fields": { + "code_commune_insee": "89206", + "nom_de_la_commune": "JOIGNY", + "code_postal": "89300", + "coordonnees_gps": [ + 48.0088550804, + 3.40980180815 + ], + "libelle_d_acheminement": "JOIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40980180815, + 48.0088550804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11861f8640286d602ca0b5b4925a5968679837f8", + "fields": { + "code_commune_insee": "62215", + "nom_de_la_commune": "CARVIN", + "code_postal": "62220", + "coordonnees_gps": [ + 50.4895185959, + 2.94858062937 + ], + "libelle_d_acheminement": "CARVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94858062937, + 50.4895185959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1837cd7c00285ac34b25ae50b4be1e5afe5a914", + "fields": { + "code_commune_insee": "89208", + "nom_de_la_commune": "JOUX LA VILLE", + "code_postal": "89440", + "coordonnees_gps": [ + 47.6195970225, + 3.87008209889 + ], + "libelle_d_acheminement": "JOUX LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87008209889, + 47.6195970225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d27f6cc682aecf2f67e3bb09e725b879cb4c4068", + "fields": { + "code_commune_insee": "62216", + "nom_de_la_commune": "LA CAUCHIE", + "code_postal": "62158", + "coordonnees_gps": [ + 50.2049912603, + 2.58249828284 + ], + "libelle_d_acheminement": "LA CAUCHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58249828284, + 50.2049912603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1bff923afea87fcc1b431a13329df3de7fdfa74", + "fields": { + "code_commune_insee": "89215", + "nom_de_la_commune": "LAIN", + "code_postal": "89560", + "coordonnees_gps": [ + 47.611857386, + 3.34372648975 + ], + "libelle_d_acheminement": "LAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34372648975, + 47.611857386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09126bf09cf6599a2f1c105946cb67dfe4510b02", + "fields": { + "code_commune_insee": "62220", + "nom_de_la_commune": "CAVRON ST MARTIN", + "code_postal": "62140", + "coordonnees_gps": [ + 50.4210471112, + 2.00405279554 + ], + "libelle_d_acheminement": "CAVRON ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00405279554, + 50.4210471112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c33bd148bca9051202650ba86cb935ab48d9a2d", + "fields": { + "code_commune_insee": "89216", + "nom_de_la_commune": "LAINSECQ", + "code_postal": "89520", + "coordonnees_gps": [ + 47.5486374956, + 3.27963840045 + ], + "libelle_d_acheminement": "LAINSECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27963840045, + 47.5486374956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dfb7abf42698eb270911d7a2614af13771b4ff4", + "fields": { + "code_commune_insee": "62223", + "nom_de_la_commune": "CHERISY", + "code_postal": "62128", + "coordonnees_gps": [ + 50.233594509, + 2.91299322756 + ], + "libelle_d_acheminement": "CHERISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91299322756, + 50.233594509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee51c163e7105acf412ea7e0c0e1b0e4498636b4", + "fields": { + "code_commune_insee": "89219", + "nom_de_la_commune": "LASSON", + "code_postal": "89570", + "coordonnees_gps": [ + 48.0641584411, + 3.81006151723 + ], + "libelle_d_acheminement": "LASSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81006151723, + 48.0641584411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bd8c85d8eff9dc3cd5ca23e24f3effe2f61a8e4", + "fields": { + "code_commune_insee": "62232", + "nom_de_la_commune": "LA COMTE", + "code_postal": "62150", + "coordonnees_gps": [ + 50.4259527407, + 2.49981751816 + ], + "libelle_d_acheminement": "LA COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49981751816, + 50.4259527407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8fbdaec4069fa2d40eb18e41b88cded02065b88", + "fields": { + "code_commune_insee": "89220", + "nom_de_la_commune": "LAVAU", + "code_postal": "89170", + "coordonnees_gps": [ + 47.5985003916, + 2.99655139016 + ], + "libelle_d_acheminement": "LAVAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99655139016, + 47.5985003916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fef3ea6f5598be7dfc664c00f4bcfa43246abf51", + "fields": { + "code_commune_insee": "62236", + "nom_de_la_commune": "CONTES", + "code_postal": "62990", + "coordonnees_gps": [ + 50.4166808226, + 1.96163690095 + ], + "libelle_d_acheminement": "CONTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96163690095, + 50.4166808226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8bbd385d572c5c8b5a3783a2964d30badba067b", + "fields": { + "code_commune_insee": "89224", + "nom_de_la_commune": "LICHERES PRES AIGREMONT", + "code_postal": "89800", + "coordonnees_gps": [ + 47.7159130853, + 3.84254969498 + ], + "libelle_d_acheminement": "LICHERES PRES AIGREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84254969498, + 47.7159130853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f92520be5009cc52f1a42f984bd348ae23a76234", + "fields": { + "code_commune_insee": "62237", + "nom_de_la_commune": "CONTEVILLE LES BOULOGNE", + "code_postal": "62126", + "coordonnees_gps": [ + 50.7441321021, + 1.72974942382 + ], + "libelle_d_acheminement": "CONTEVILLE LES BOULOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72974942382, + 50.7441321021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7534b1b1ca9e121c2e7573097c2f650132e8a3eb", + "fields": { + "code_commune_insee": "89225", + "nom_de_la_commune": "LICHERES SUR YONNE", + "code_postal": "89660", + "coordonnees_gps": [ + 47.4918181077, + 3.59463823295 + ], + "libelle_d_acheminement": "LICHERES SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59463823295, + 47.4918181077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5538bf91c9959d490a7429123ff01e312b112608", + "fields": { + "code_commune_insee": "62240", + "nom_de_la_commune": "CORBEHEM", + "code_postal": "62112", + "coordonnees_gps": [ + 50.3351261232, + 3.0477618854 + ], + "libelle_d_acheminement": "CORBEHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0477618854, + 50.3351261232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7462a1da842765e9fdc1dcaac06140126f054935", + "fields": { + "code_commune_insee": "89226", + "nom_de_la_commune": "LIGNORELLES", + "code_postal": "89800", + "coordonnees_gps": [ + 47.8591784948, + 3.72515040743 + ], + "libelle_d_acheminement": "LIGNORELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72515040743, + 47.8591784948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f874e94be6cd1c034cd63c380ca93d06fcf0010", + "fields": { + "code_commune_insee": "62249", + "nom_de_la_commune": "COURCELLES LES LENS", + "code_postal": "62970", + "coordonnees_gps": [ + 50.4147715319, + 3.01497181219 + ], + "libelle_d_acheminement": "COURCELLES LES LENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01497181219, + 50.4147715319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a56dbb74fc7702dede98bad79d30a6d7d44a3aae", + "fields": { + "code_commune_insee": "89228", + "nom_de_la_commune": "LINDRY", + "code_postal": "89240", + "coordonnees_gps": [ + 47.8006537092, + 3.4288280044 + ], + "libelle_d_acheminement": "LINDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4288280044, + 47.8006537092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "996d0b81d923ad4543bf46df651f3a6222e9d00c", + "fields": { + "code_commune_insee": "62261", + "nom_de_la_commune": "CUCQ", + "code_postal": "62780", + "coordonnees_gps": [ + 50.4861371651, + 1.6129406035 + ], + "libelle_d_acheminement": "CUCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6129406035, + 50.4861371651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dbf5e97066b8253c1ca797269e6ffc231e2bf0c", + "fields": { + "code_commune_insee": "89229", + "nom_de_la_commune": "LIXY", + "code_postal": "89140", + "coordonnees_gps": [ + 48.2485392063, + 3.11023826563 + ], + "libelle_d_acheminement": "LIXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11023826563, + 48.2485392063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90837d9e0c07f86ea1140069ea240b6440e66eab", + "fields": { + "ligne_5": "TREPIED", + "code_commune_insee": "62261", + "libelle_d_acheminement": "CUCQ", + "code_postal": "62780", + "nom_de_la_commune": "CUCQ", + "coordonnees_gps": [ + 50.4861371651, + 1.6129406035 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6129406035, + 50.4861371651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b02755287d80dbdf20d1d66d6e6064342f43bca5", + "fields": { + "code_commune_insee": "89230", + "nom_de_la_commune": "LOOZE", + "code_postal": "89300", + "coordonnees_gps": [ + 47.9974732281, + 3.44023544311 + ], + "libelle_d_acheminement": "LOOZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44023544311, + 47.9974732281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc3074bb7f66c3a4a3ec870719f508c982ad6e3b", + "fields": { + "code_commune_insee": "62262", + "nom_de_la_commune": "CUINCHY", + "code_postal": "62149", + "coordonnees_gps": [ + 50.5192106267, + 2.74651659216 + ], + "libelle_d_acheminement": "CUINCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74651659216, + 50.5192106267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01699dc69b18a15c8421b60072816307e0958838", + "fields": { + "code_commune_insee": "89234", + "nom_de_la_commune": "LUCY SUR YONNE", + "code_postal": "89480", + "coordonnees_gps": [ + 47.5149808001, + 3.5673481793 + ], + "libelle_d_acheminement": "LUCY SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5673481793, + 47.5149808001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88676a4b6d794c5fad5d210cea2cfc05a88da85f", + "fields": { + "code_commune_insee": "62265", + "nom_de_la_commune": "DELETTES", + "code_postal": "62129", + "coordonnees_gps": [ + 50.6223136659, + 2.21751946622 + ], + "libelle_d_acheminement": "DELETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21751946622, + 50.6223136659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20f9f2cff3e9b4fba658f330fc4a8f1496414ce1", + "fields": { + "code_commune_insee": "89236", + "nom_de_la_commune": "MAILLOT", + "code_postal": "89100", + "coordonnees_gps": [ + 48.1655005137, + 3.3148393225 + ], + "libelle_d_acheminement": "MAILLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3148393225, + 48.1655005137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0496c43a0123b6805f85194c3174d8a5c9a06958", + "fields": { + "code_commune_insee": "62266", + "nom_de_la_commune": "DENIER", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2905902827, + 2.44714550707 + ], + "libelle_d_acheminement": "DENIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44714550707, + 50.2905902827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "885e9efa4882961219144b59043eced6f02f5a37", + "fields": { + "code_commune_insee": "89245", + "nom_de_la_commune": "MARSANGY", + "code_postal": "89500", + "coordonnees_gps": [ + 48.1141834081, + 3.24562152715 + ], + "libelle_d_acheminement": "MARSANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24562152715, + 48.1141834081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3960548d9af6fc52068eefc8d265dee04513395c", + "fields": { + "code_commune_insee": "62269", + "nom_de_la_commune": "DIEVAL", + "code_postal": "62460", + "coordonnees_gps": [ + 50.4365599827, + 2.44830895254 + ], + "libelle_d_acheminement": "DIEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44830895254, + 50.4365599827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca23a7887ed37c0053a6b855fe6630fae91db3df", + "fields": { + "code_commune_insee": "89253", + "nom_de_la_commune": "MERRY SUR YONNE", + "code_postal": "89660", + "coordonnees_gps": [ + 47.5617133971, + 3.63656103822 + ], + "libelle_d_acheminement": "MERRY SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63656103822, + 47.5617133971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35f4c37ca9b1d5f4b90154d56e7d1c614ec4b401", + "fields": { + "code_commune_insee": "62276", + "nom_de_la_commune": "DOUVRIN", + "code_postal": "62138", + "coordonnees_gps": [ + 50.5121447638, + 2.8263130337 + ], + "libelle_d_acheminement": "DOUVRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8263130337, + 50.5121447638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd39adc50830457ff86e598dd691dbb1e6407eb2", + "fields": { + "code_commune_insee": "89256", + "nom_de_la_commune": "MIGE", + "code_postal": "89580", + "coordonnees_gps": [ + 47.676526095, + 3.53286271854 + ], + "libelle_d_acheminement": "MIGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53286271854, + 47.676526095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fcd979489d2d919a4364e5800fb2f5adfb15693", + "fields": { + "code_commune_insee": "62278", + "nom_de_la_commune": "DROUVIN LE MARAIS", + "code_postal": "62131", + "coordonnees_gps": [ + 50.4892270417, + 2.63277217205 + ], + "libelle_d_acheminement": "DROUVIN LE MARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63277217205, + 50.4892270417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23d8a4f5dc0bff1bc2b877328b36bbd71ef34665", + "fields": { + "code_commune_insee": "89262", + "nom_de_la_commune": "MOLOSMES", + "code_postal": "89700", + "coordonnees_gps": [ + 47.9022725609, + 4.0235561506 + ], + "libelle_d_acheminement": "MOLOSMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0235561506, + 47.9022725609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f92a9f4103f5095dd374c8794037407e86f2b68e", + "fields": { + "ligne_5": "ENQUIN LES MINES", + "code_commune_insee": "62295", + "libelle_d_acheminement": "ENQUIN LEZ GUINEGATTE", + "code_postal": "62145", + "nom_de_la_commune": "ENQUIN LEZ GUINEGATTE", + "coordonnees_gps": [ + 50.5860830884, + 2.29343023005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29343023005, + 50.5860830884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "428dc4060a09e6b3b56d39c00d9fafc57481d324", + "fields": { + "code_commune_insee": "89274", + "nom_de_la_commune": "NAILLY", + "code_postal": "89100", + "coordonnees_gps": [ + 48.2207451981, + 3.20592737072 + ], + "libelle_d_acheminement": "NAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20592737072, + 48.2207451981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f257b1735ace49449eb36de440845414e9efae82", + "fields": { + "code_commune_insee": "62296", + "nom_de_la_commune": "ENQUIN SUR BAILLONS", + "code_postal": "62650", + "coordonnees_gps": [ + 50.57162689, + 1.84772501897 + ], + "libelle_d_acheminement": "ENQUIN SUR BAILLONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84772501897, + 50.57162689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e387b2c0146632ac1aff3611444445a30d2c0af", + "fields": { + "code_commune_insee": "89280", + "nom_de_la_commune": "NUITS", + "code_postal": "89390", + "coordonnees_gps": [ + 47.7192463173, + 4.19503154053 + ], + "libelle_d_acheminement": "NUITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19503154053, + 47.7192463173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "834039af39b9b7638722be19e0d8aafdd95fa213", + "fields": { + "code_commune_insee": "62306", + "nom_de_la_commune": "ERVILLERS", + "code_postal": "62121", + "coordonnees_gps": [ + 50.1644439777, + 2.82560253669 + ], + "libelle_d_acheminement": "ERVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82560253669, + 50.1644439777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e29cd6a4dec18745a7e210762e24084cd6f0ea5a", + "fields": { + "code_commune_insee": "89281", + "nom_de_la_commune": "LES ORMES", + "code_postal": "89110", + "coordonnees_gps": [ + 47.8457217659, + 3.25863457163 + ], + "libelle_d_acheminement": "LES ORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25863457163, + 47.8457217659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "992133d3de5591973079ba25d71b2b138f0b3aa4", + "fields": { + "code_commune_insee": "62307", + "nom_de_la_commune": "ESCALLES", + "code_postal": "62179", + "coordonnees_gps": [ + 50.9112503142, + 1.72061882421 + ], + "libelle_d_acheminement": "ESCALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72061882421, + 50.9112503142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28de1db2cf5e129b77c1de8e5b083de49acc4717", + "fields": { + "code_commune_insee": "89283", + "nom_de_la_commune": "OUANNE", + "code_postal": "89560", + "coordonnees_gps": [ + 47.6575722012, + 3.4192034023 + ], + "libelle_d_acheminement": "OUANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4192034023, + 47.6575722012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9450fd00c318618c1b76e2b1c0d5154010ebc715", + "fields": { + "code_commune_insee": "62308", + "nom_de_la_commune": "ESCOEUILLES", + "code_postal": "62850", + "coordonnees_gps": [ + 50.7236925633, + 1.93553476901 + ], + "libelle_d_acheminement": "ESCOEUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93553476901, + 50.7236925633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "651b3490eb03a82707f39f3c68a8e7c73e7274f8", + "fields": { + "code_commune_insee": "89286", + "nom_de_la_commune": "PARLY", + "code_postal": "89240", + "coordonnees_gps": [ + 47.7584885598, + 3.34962637067 + ], + "libelle_d_acheminement": "PARLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34962637067, + 47.7584885598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9eb17f8750fdb36be1b343ae12baa54ba2301199", + "fields": { + "code_commune_insee": "62315", + "nom_de_la_commune": "ESTREELLES", + "code_postal": "62170", + "coordonnees_gps": [ + 50.5013343429, + 1.77932498079 + ], + "libelle_d_acheminement": "ESTREELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77932498079, + 50.5013343429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd90711f413a85344dfeddb84c75abd5b7204073", + "fields": { + "code_commune_insee": "89295", + "nom_de_la_commune": "PERRIGNY", + "code_postal": "89000", + "coordonnees_gps": [ + 47.8264618403, + 3.52927414133 + ], + "libelle_d_acheminement": "PERRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52927414133, + 47.8264618403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03b73e992dd2cce61838ff78ad957117904a390c", + "fields": { + "code_commune_insee": "62318", + "nom_de_la_commune": "ETAPLES", + "code_postal": "62630", + "coordonnees_gps": [ + 50.5235816785, + 1.65199985504 + ], + "libelle_d_acheminement": "ETAPLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65199985504, + 50.5235816785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dc116582aaaa7c23c31d294b0ffbc3c280d1437", + "fields": { + "code_commune_insee": "89314", + "nom_de_la_commune": "PREGILBERT", + "code_postal": "89460", + "coordonnees_gps": [ + 47.6364183019, + 3.68092082062 + ], + "libelle_d_acheminement": "PREGILBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68092082062, + 47.6364183019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ebd716ffeab9c239931ccf12d0e1c564149d5e7", + "fields": { + "code_commune_insee": "62319", + "nom_de_la_commune": "ETERPIGNY", + "code_postal": "62156", + "coordonnees_gps": [ + 50.2560087957, + 2.98044212985 + ], + "libelle_d_acheminement": "ETERPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98044212985, + 50.2560087957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49bcee56e69e4aae55e4bdbde72ddc261644fd09", + "fields": { + "code_commune_insee": "89315", + "nom_de_la_commune": "PREHY", + "code_postal": "89800", + "coordonnees_gps": [ + 47.7526421328, + 3.78750634442 + ], + "libelle_d_acheminement": "PREHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78750634442, + 47.7526421328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b96ff80ac602ae7ea55ea4a5bbc98a73005d44ff", + "fields": { + "code_commune_insee": "62338", + "nom_de_la_commune": "FLEURBAIX", + "code_postal": "62840", + "coordonnees_gps": [ + 50.6384888387, + 2.83066487498 + ], + "libelle_d_acheminement": "FLEURBAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83066487498, + 50.6384888387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e9fe60192e2025728404d2b83ee125f320ee6ad", + "fields": { + "code_commune_insee": "89316", + "nom_de_la_commune": "PROVENCY", + "code_postal": "89200", + "coordonnees_gps": [ + 47.5412749752, + 3.95391774558 + ], + "libelle_d_acheminement": "PROVENCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95391774558, + 47.5412749752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6077f7b75e18848ddea17e910206b5980300e62", + "fields": { + "code_commune_insee": "62340", + "nom_de_la_commune": "FLORINGHEM", + "code_postal": "62550", + "coordonnees_gps": [ + 50.497209636, + 2.42943014623 + ], + "libelle_d_acheminement": "FLORINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42943014623, + 50.497209636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe39a5e3874e7af8188da4d0c6859b902027e8f7", + "fields": { + "code_commune_insee": "89321", + "nom_de_la_commune": "RAVIERES", + "code_postal": "89390", + "coordonnees_gps": [ + 47.743102178, + 4.25236559824 + ], + "libelle_d_acheminement": "RAVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25236559824, + 47.743102178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9b764db6531eedfa7361627d37f96a3db770d6e", + "fields": { + "code_commune_insee": "62347", + "nom_de_la_commune": "FOSSEUX", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2541868154, + 2.56492880738 + ], + "libelle_d_acheminement": "FOSSEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56492880738, + 50.2541868154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8657fc8486680bf9adff80ebfd63daba1b562e05", + "fields": { + "code_commune_insee": "89325", + "nom_de_la_commune": "RONCHERES", + "code_postal": "89170", + "coordonnees_gps": [ + 47.6589905273, + 3.12087826286 + ], + "libelle_d_acheminement": "RONCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12087826286, + 47.6589905273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be450f8c6ecf9142a3654168ce6f082a1f47b3da", + "fields": { + "code_commune_insee": "62359", + "nom_de_la_commune": "FRESSIN", + "code_postal": "62140", + "coordonnees_gps": [ + 50.4488605209, + 2.05259326434 + ], + "libelle_d_acheminement": "FRESSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05259326434, + 50.4488605209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a85ac9f1488eae44977c43348aa14efee17467a", + "fields": { + "code_commune_insee": "89327", + "nom_de_la_commune": "ROUSSON", + "code_postal": "89500", + "coordonnees_gps": [ + 48.0909896672, + 3.26123308338 + ], + "libelle_d_acheminement": "ROUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26123308338, + 48.0909896672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa612f47a316826c7275634decf421f6c4433814", + "fields": { + "code_commune_insee": "62360", + "nom_de_la_commune": "FRETHUN", + "code_postal": "62185", + "coordonnees_gps": [ + 50.9121649744, + 1.81683480747 + ], + "libelle_d_acheminement": "FRETHUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81683480747, + 50.9121649744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ce0d82d0317c2536d17f4d7542539d2b1da4f61", + "fields": { + "code_commune_insee": "89333", + "nom_de_la_commune": "ST ANDRE EN TERRE PLAINE", + "code_postal": "89420", + "coordonnees_gps": [ + 47.4822498163, + 4.05335131054 + ], + "libelle_d_acheminement": "ST ANDRE EN TERRE PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05335131054, + 47.4822498163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b866ca41caac11b5b53b5ff249db59a9fde9698c", + "fields": { + "code_commune_insee": "62363", + "nom_de_la_commune": "FREVIN CAPELLE", + "code_postal": "62690", + "coordonnees_gps": [ + 50.3505908973, + 2.63573550055 + ], + "libelle_d_acheminement": "FREVIN CAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63573550055, + 50.3505908973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f31a55aedf9b7d4dd336b2e93568f99e9583cd3c", + "fields": { + "code_commune_insee": "89342", + "nom_de_la_commune": "ST DENIS LES SENS", + "code_postal": "89100", + "coordonnees_gps": [ + 48.2347117121, + 3.26672512395 + ], + "libelle_d_acheminement": "ST DENIS LES SENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26672512395, + 48.2347117121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62599c0a80bd70b12791840616f89ea8ab154c94", + "fields": { + "code_commune_insee": "62369", + "nom_de_la_commune": "GAVRELLE", + "code_postal": "62580", + "coordonnees_gps": [ + 50.3261836927, + 2.88569261923 + ], + "libelle_d_acheminement": "GAVRELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88569261923, + 50.3261836927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad0142e535d974ff3f195b6fc206405beda87c7f", + "fields": { + "ligne_5": "SEPTFONDS", + "code_commune_insee": "89344", + "libelle_d_acheminement": "ST FARGEAU", + "code_postal": "89170", + "nom_de_la_commune": "ST FARGEAU", + "coordonnees_gps": [ + 47.6424423236, + 3.08488500512 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08488500512, + 47.6424423236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07cf4c6e14db8317ee92f7e6252fa89f54219928", + "fields": { + "code_commune_insee": "62375", + "nom_de_la_commune": "GOMMECOURT", + "code_postal": "62111", + "coordonnees_gps": [ + 50.1379205953, + 2.65284245293 + ], + "libelle_d_acheminement": "GOMMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65284245293, + 50.1379205953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0722cae369220be4a4e666dcac5792ba4bd7e81", + "fields": { + "code_commune_insee": "89345", + "nom_de_la_commune": "ST FLORENTIN", + "code_postal": "89600", + "coordonnees_gps": [ + 47.996991653, + 3.70472818773 + ], + "libelle_d_acheminement": "ST FLORENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70472818773, + 47.996991653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69451a24b78658f114b9218b197d084813dbfb31", + "fields": { + "code_commune_insee": "62391", + "nom_de_la_commune": "GUARBECQUE", + "code_postal": "62330", + "coordonnees_gps": [ + 50.6071737755, + 2.48934824993 + ], + "libelle_d_acheminement": "GUARBECQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48934824993, + 50.6071737755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc37d0060fb61083af4e725aae2d54f709a9b3b8", + "fields": { + "code_commune_insee": "89347", + "nom_de_la_commune": "ST GERMAIN DES CHAMPS", + "code_postal": "89630", + "coordonnees_gps": [ + 47.4173168736, + 3.92129827487 + ], + "libelle_d_acheminement": "ST GERMAIN DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92129827487, + 47.4173168736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "536fe0c85e1e2121ac5f48bde32fc7f4e2e42f46", + "fields": { + "code_commune_insee": "62396", + "nom_de_la_commune": "GUINECOURT", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3477039372, + 2.22804664838 + ], + "libelle_d_acheminement": "GUINECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22804664838, + 50.3477039372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "267a73ea495fe066d5ceedbcf3cb3b123a7dac43", + "fields": { + "code_commune_insee": "89364", + "nom_de_la_commune": "ST PERE", + "code_postal": "89450", + "coordonnees_gps": [ + 47.4609189917, + 3.77642616957 + ], + "libelle_d_acheminement": "ST PERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77642616957, + 47.4609189917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19a37de52eceaba427ff7161968b75f074140a61", + "fields": { + "code_commune_insee": "62397", + "nom_de_la_commune": "GUINES", + "code_postal": "62340", + "coordonnees_gps": [ + 50.8582256362, + 1.87057931185 + ], + "libelle_d_acheminement": "GUINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87057931185, + 50.8582256362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2420f12e37289128209a07bb2afd2711f94e8ed8", + "fields": { + "code_commune_insee": "89367", + "nom_de_la_commune": "SAINTS EN PUISAYE", + "code_postal": "89520", + "coordonnees_gps": [ + 47.6231345556, + 3.27095693205 + ], + "libelle_d_acheminement": "SAINTS EN PUISAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27095693205, + 47.6231345556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07eacc6c4dffc127eae7413069c78bc72ccd07af", + "fields": { + "code_commune_insee": "62403", + "nom_de_la_commune": "HALLINES", + "code_postal": "62570", + "coordonnees_gps": [ + 50.7007255503, + 2.20827364581 + ], + "libelle_d_acheminement": "HALLINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20827364581, + 50.7007255503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b902c172970a0125c41bda8c0f5b3d50606a858", + "fields": { + "code_commune_insee": "89375", + "nom_de_la_commune": "SANTIGNY", + "code_postal": "89420", + "coordonnees_gps": [ + 47.5763950286, + 4.12196091631 + ], + "libelle_d_acheminement": "SANTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12196091631, + 47.5763950286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0007757b95ad7a3ac00d1d033fecdd33e275b26f", + "fields": { + "code_commune_insee": "62412", + "nom_de_la_commune": "HARDINGHEN", + "code_postal": "62132", + "coordonnees_gps": [ + 50.7968528137, + 1.82812334781 + ], + "libelle_d_acheminement": "HARDINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82812334781, + 50.7968528137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b88ba07c7c212833008a47ca8fe6d1d385fd6bf", + "fields": { + "code_commune_insee": "89393", + "nom_de_la_commune": "SERRIGNY", + "code_postal": "89700", + "coordonnees_gps": [ + 47.8338277666, + 3.91219434333 + ], + "libelle_d_acheminement": "SERRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91219434333, + 47.8338277666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fc88a980247fceb177fa0c2c86542e792da1428", + "fields": { + "code_commune_insee": "62422", + "nom_de_la_commune": "HEBUTERNE", + "code_postal": "62111", + "coordonnees_gps": [ + 50.1180452685, + 2.64625006269 + ], + "libelle_d_acheminement": "HEBUTERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64625006269, + 50.1180452685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47e8d514b5cd67db1d19a3d9f06af17e3048b48d", + "fields": { + "code_commune_insee": "89397", + "nom_de_la_commune": "SOMMECAISE", + "code_postal": "89110", + "coordonnees_gps": [ + 47.8381404726, + 3.22296633404 + ], + "libelle_d_acheminement": "SOMMECAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22296633404, + 47.8381404726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "891bb4ea1769b615890c03d9cfd92fc7eecc37fd", + "fields": { + "code_commune_insee": "62424", + "nom_de_la_commune": "HENDECOURT LES CAGNICOURT", + "code_postal": "62182", + "coordonnees_gps": [ + 50.2147999984, + 2.94877835826 + ], + "libelle_d_acheminement": "HENDECOURT LES CAGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94877835826, + 50.2147999984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e6dff81fd9c4ea4bf5392f5498e91c8d5ab5906", + "fields": { + "code_commune_insee": "89398", + "nom_de_la_commune": "SORMERY", + "code_postal": "89570", + "coordonnees_gps": [ + 48.104865517, + 3.75966718846 + ], + "libelle_d_acheminement": "SORMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75966718846, + 48.104865517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cda18811bd94fe8071d0f26770b82b5443c54c0a", + "fields": { + "code_commune_insee": "62438", + "nom_de_la_commune": "HERMAVILLE", + "code_postal": "62690", + "coordonnees_gps": [ + 50.325082478, + 2.58386198522 + ], + "libelle_d_acheminement": "HERMAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58386198522, + 50.325082478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39ac6a4fcf5d05c9c4c00d9dbb433418449471ef", + "fields": { + "ligne_5": "FONTENAILLES", + "code_commune_insee": "89405", + "libelle_d_acheminement": "LES HAUTS DE FORTERRE", + "code_postal": "89560", + "nom_de_la_commune": "LES HAUTS DE FORTERRE", + "coordonnees_gps": [ + 47.6123914189, + 3.40803434271 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40803434271, + 47.6123914189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "329a48f04d9e9daf5c6f79b0497a4455abeaf770", + "fields": { + "code_commune_insee": "62447", + "nom_de_la_commune": "HESDIN", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3737561031, + 2.03813237444 + ], + "libelle_d_acheminement": "HESDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03813237444, + 50.3737561031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3726ce2eab492b925ca6e8e64a57e99b5ab72dc8", + "fields": { + "code_commune_insee": "89409", + "nom_de_la_commune": "THAROISEAU", + "code_postal": "89450", + "coordonnees_gps": [ + 47.4635077803, + 3.8130360009 + ], + "libelle_d_acheminement": "THAROISEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8130360009, + 47.4635077803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9a4462129f000d19ff0c823502cdddd3c9883c4", + "fields": { + "code_commune_insee": "62449", + "nom_de_la_commune": "HESMOND", + "code_postal": "62990", + "coordonnees_gps": [ + 50.4640913287, + 1.94222442678 + ], + "libelle_d_acheminement": "HESMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94222442678, + 50.4640913287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "766abacef2f3448e04f1b795963cd6760bff7bad", + "fields": { + "ligne_5": "VAREILLES", + "code_commune_insee": "89411", + "libelle_d_acheminement": "LES VALLEES DE LA VANNE", + "code_postal": "89320", + "nom_de_la_commune": "LES VALLEES DE LA VANNE", + "coordonnees_gps": [ + 48.163480288, + 3.43929036088 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43929036088, + 48.163480288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7b87490b3e3a15cacaf9dc6a27034707eeaaa7a", + "fields": { + "code_commune_insee": "62453", + "nom_de_la_commune": "HEZECQUES", + "code_postal": "62310", + "coordonnees_gps": [ + 50.5341909306, + 2.19182773822 + ], + "libelle_d_acheminement": "HEZECQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19182773822, + 50.5341909306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12e61f5feb25a954010847434fb9c1b3c74a6265", + "fields": { + "code_commune_insee": "89413", + "nom_de_la_commune": "THOREY", + "code_postal": "89430", + "coordonnees_gps": [ + 47.8996209486, + 4.11461177122 + ], + "libelle_d_acheminement": "THOREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11461177122, + 47.8996209486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85a4213d747e2ade840e0f53bb4b85d877bd58a7", + "fields": { + "code_commune_insee": "62454", + "nom_de_la_commune": "HINGES", + "code_postal": "62232", + "coordonnees_gps": [ + 50.5707161285, + 2.62942563762 + ], + "libelle_d_acheminement": "HINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62942563762, + 50.5707161285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d56c2e62339e2b729c857f653aa3169c5ef34904", + "fields": { + "code_commune_insee": "89416", + "nom_de_la_commune": "THURY", + "code_postal": "89520", + "coordonnees_gps": [ + 47.5889340898, + 3.30089549955 + ], + "libelle_d_acheminement": "THURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30089549955, + 47.5889340898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a1e2f9bedabd3ef378c5ea5ea379cceb09b973f", + "fields": { + "code_commune_insee": "62457", + "nom_de_la_commune": "HOUDAIN", + "code_postal": "62150", + "coordonnees_gps": [ + 50.4548178375, + 2.53664303679 + ], + "libelle_d_acheminement": "HOUDAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53664303679, + 50.4548178375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a0b47ef5953dfa9def8d27af7f341cb8d64d8d8", + "fields": { + "ligne_5": "PERREUSE", + "code_commune_insee": "89420", + "libelle_d_acheminement": "TREIGNY PERREUSE STE COLOMBE", + "code_postal": "89520", + "nom_de_la_commune": "TREIGNY PERREUSE STE COLOMBE", + "coordonnees_gps": [ + 47.5555889247, + 3.17487086988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17487086988, + 47.5555889247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11411745400bec16c2e76f5337d600a1154a72b7", + "fields": { + "code_commune_insee": "62459", + "nom_de_la_commune": "HOUVIN HOUVIGNEUL", + "code_postal": "62270", + "coordonnees_gps": [ + 50.2960440098, + 2.37739765685 + ], + "libelle_d_acheminement": "HOUVIN HOUVIGNEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37739765685, + 50.2960440098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ddaa84514d685bfce09dc71abe2418329607942", + "fields": { + "code_commune_insee": "89437", + "nom_de_la_commune": "VENOUSE", + "code_postal": "89230", + "coordonnees_gps": [ + 47.8979028984, + 3.69249058859 + ], + "libelle_d_acheminement": "VENOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69249058859, + 47.8979028984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a223ce6f64eb4d084fdc85e63a52d43a62d461a", + "fields": { + "ligne_5": "BERGUETTE", + "code_commune_insee": "62473", + "libelle_d_acheminement": "ISBERGUES", + "code_postal": "62330", + "nom_de_la_commune": "ISBERGUES", + "coordonnees_gps": [ + 50.6163010723, + 2.45566347831 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45566347831, + 50.6163010723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0933ee6a66f87e3af77d4e99b0b13f08e1d69dc5", + "fields": { + "code_commune_insee": "89450", + "nom_de_la_commune": "VILLEBOUGIS", + "code_postal": "89150", + "coordonnees_gps": [ + 48.2086439691, + 3.15617870614 + ], + "libelle_d_acheminement": "VILLEBOUGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15617870614, + 48.2086439691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ce6d3b3a89fb6b7759d0183e10b6a3f67da5ad0", + "fields": { + "code_commune_insee": "62488", + "nom_de_la_commune": "LANDRETHUN LES ARDRES", + "code_postal": "62610", + "coordonnees_gps": [ + 50.816140117, + 1.96682595063 + ], + "libelle_d_acheminement": "LANDRETHUN LES ARDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96682595063, + 50.816140117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f55c2861c7e14b8a082bad6a4c97b605eeadfd55", + "fields": { + "code_commune_insee": "89451", + "nom_de_la_commune": "VILLECHETIVE", + "code_postal": "89320", + "coordonnees_gps": [ + 48.0957287781, + 3.53016603926 + ], + "libelle_d_acheminement": "VILLECHETIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53016603926, + 48.0957287781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88d10ec23b1ce989711ce7f45e001a1168c9361d", + "fields": { + "code_commune_insee": "62489", + "nom_de_la_commune": "LAPUGNOY", + "code_postal": "62122", + "coordonnees_gps": [ + 50.5191431274, + 2.53207580559 + ], + "libelle_d_acheminement": "LAPUGNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53207580559, + 50.5191431274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39ed8b95a6d7cb4f7592b2062ce314b8aab1f998", + "fields": { + "code_commune_insee": "89462", + "nom_de_la_commune": "VILLENEUVE LES GENETS", + "code_postal": "89350", + "coordonnees_gps": [ + 47.7375292074, + 3.07590152841 + ], + "libelle_d_acheminement": "VILLENEUVE LES GENETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07590152841, + 47.7375292074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "105f0344a5090826eda87977bb3599a3135deb21", + "fields": { + "code_commune_insee": "62491", + "nom_de_la_commune": "LAVENTIE", + "code_postal": "62840", + "coordonnees_gps": [ + 50.6122806488, + 2.78361228614 + ], + "libelle_d_acheminement": "LAVENTIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78361228614, + 50.6122806488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bce2c6178f4ef93170059916eee486312a0f9f8d", + "fields": { + "code_commune_insee": "89463", + "nom_de_la_commune": "VILLENEUVE ST SALVES", + "code_postal": "89230", + "coordonnees_gps": [ + 47.8501834559, + 3.64214223918 + ], + "libelle_d_acheminement": "VILLENEUVE ST SALVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64214223918, + 47.8501834559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d330b4ffd48b6e24eb130edd0158cc6251cbc763", + "fields": { + "code_commune_insee": "62492", + "nom_de_la_commune": "LEBIEZ", + "code_postal": "62990", + "coordonnees_gps": [ + 50.4592668371, + 1.97830860496 + ], + "libelle_d_acheminement": "LEBIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97830860496, + 50.4592668371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "470ae62c695550e707faab09608616f489f524af", + "fields": { + "code_commune_insee": "89467", + "nom_de_la_commune": "VILLETHIERRY", + "code_postal": "89140", + "coordonnees_gps": [ + 48.2677766627, + 3.07197353642 + ], + "libelle_d_acheminement": "VILLETHIERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07197353642, + 48.2677766627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfc38216235781ebd62156d04e5c19b30e6bc42b", + "fields": { + "code_commune_insee": "62497", + "nom_de_la_commune": "LEFOREST", + "code_postal": "62790", + "coordonnees_gps": [ + 50.4394110642, + 3.05859008926 + ], + "libelle_d_acheminement": "LEFOREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05859008926, + 50.4394110642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "137d636ac7fe940c71aabf13fec548f7ab7db340", + "fields": { + "code_commune_insee": "89477", + "nom_de_la_commune": "VILLY", + "code_postal": "89800", + "coordonnees_gps": [ + 47.8668272951, + 3.74734170454 + ], + "libelle_d_acheminement": "VILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74734170454, + 47.8668272951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5acc146fec62990a23563ee2dfa27eac9e7fa162", + "fields": { + "code_commune_insee": "62504", + "nom_de_la_commune": "LEULINGHEM", + "code_postal": "62500", + "coordonnees_gps": [ + 50.7346790388, + 2.16911709043 + ], + "libelle_d_acheminement": "LEULINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16911709043, + 50.7346790388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18e5ea51a3c80070deab2566efcbb051d33f239d", + "fields": { + "code_commune_insee": "89478", + "nom_de_la_commune": "VINCELLES", + "code_postal": "89290", + "coordonnees_gps": [ + 47.6886915621, + 3.63296032864 + ], + "libelle_d_acheminement": "VINCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63296032864, + 47.6886915621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04c28db47ff18522464cef277b19bbb9efd9355c", + "fields": { + "code_commune_insee": "62511", + "nom_de_la_commune": "LIGNEREUIL", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2913104341, + 2.47081083726 + ], + "libelle_d_acheminement": "LIGNEREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47081083726, + 50.2913104341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "813209e4be3f0d5bd2d4e1f16a8ff7c7e2b62110", + "fields": { + "code_commune_insee": "89485", + "nom_de_la_commune": "VOUTENAY SUR CURE", + "code_postal": "89270", + "coordonnees_gps": [ + 47.5577664247, + 3.78586900239 + ], + "libelle_d_acheminement": "VOUTENAY SUR CURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78586900239, + 47.5577664247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32c95b05fd99f669cb906793f19cf947b6f68161", + "fields": { + "code_commune_insee": "62514", + "nom_de_la_commune": "LIGNY ST FLOCHEL", + "code_postal": "62127", + "coordonnees_gps": [ + 50.3584786276, + 2.42321914967 + ], + "libelle_d_acheminement": "LIGNY ST FLOCHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42321914967, + 50.3584786276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bacbe846066057e24ca94920b79cb7fd3abb02d8", + "fields": { + "code_commune_insee": "90004", + "nom_de_la_commune": "ARGIESANS", + "code_postal": "90800", + "coordonnees_gps": [ + 47.6049743564, + 6.82328122613 + ], + "libelle_d_acheminement": "ARGIESANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82328122613, + 47.6049743564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26f69e945dee03677b0d159d7d860a9aaf7d613e", + "fields": { + "code_commune_insee": "62516", + "nom_de_la_commune": "LILLERS", + "code_postal": "62190", + "coordonnees_gps": [ + 50.5614379612, + 2.48197499021 + ], + "libelle_d_acheminement": "LILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48197499021, + 50.5614379612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68fda1d38191a52362349ec524c20a1a8597f226", + "fields": { + "code_commune_insee": "90018", + "nom_de_la_commune": "BREBOTTE", + "code_postal": "90140", + "coordonnees_gps": [ + 47.5785857282, + 6.97299379772 + ], + "libelle_d_acheminement": "BREBOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97299379772, + 47.5785857282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35fda4d46a681cfa43ce57b469e67d7a19e6d292", + "fields": { + "code_commune_insee": "62538", + "nom_de_la_commune": "MAINTENAY", + "code_postal": "62870", + "coordonnees_gps": [ + 50.369972884, + 1.81633084989 + ], + "libelle_d_acheminement": "MAINTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81633084989, + 50.369972884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3544165e0fa6b184706ed32ca7c073917e2d866", + "fields": { + "code_commune_insee": "90034", + "nom_de_la_commune": "DENNEY", + "code_postal": "90160", + "coordonnees_gps": [ + 47.6552442246, + 6.90807737911 + ], + "libelle_d_acheminement": "DENNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90807737911, + 47.6552442246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bc1dc6ed76032ace093cbb414fbe0fefdb23fde", + "fields": { + "code_commune_insee": "62541", + "nom_de_la_commune": "MAISONCELLE", + "code_postal": "62310", + "coordonnees_gps": [ + 50.4509090574, + 2.14815135855 + ], + "libelle_d_acheminement": "MAISONCELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14815135855, + 50.4509090574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "077602bd99aa97eb09e55aa99cf393db370df718", + "fields": { + "code_commune_insee": "90035", + "nom_de_la_commune": "DORANS", + "code_postal": "90400", + "coordonnees_gps": [ + 47.584744627, + 6.83724758711 + ], + "libelle_d_acheminement": "DORANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83724758711, + 47.584744627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "403765f70371b1e7e386475a319257779477e097", + "fields": { + "code_commune_insee": "62544", + "nom_de_la_commune": "MANIN", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2966374738, + 2.5072774682 + ], + "libelle_d_acheminement": "MANIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5072774682, + 50.2966374738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f30bdeba16a2f2d596f09b101e0713815f364904", + "fields": { + "code_commune_insee": "90037", + "nom_de_la_commune": "ELOIE", + "code_postal": "90300", + "coordonnees_gps": [ + 47.6875264608, + 6.87288702572 + ], + "libelle_d_acheminement": "ELOIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87288702572, + 47.6875264608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b71d2855df4d90bc5bcd91584ecd4e1531b579fe", + "fields": { + "code_commune_insee": "62547", + "nom_de_la_commune": "MARANT", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4709192925, + 1.84034009219 + ], + "libelle_d_acheminement": "MARANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84034009219, + 50.4709192925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aab18bc822993f519730ef059f4ea950d930741", + "fields": { + "code_commune_insee": "90052", + "nom_de_la_commune": "GIROMAGNY", + "code_postal": "90200", + "coordonnees_gps": [ + 47.741048439, + 6.82264329531 + ], + "libelle_d_acheminement": "GIROMAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82264329531, + 47.741048439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1ca9fde0c6d190ccfeffbd04ee5bc59914c6b0e", + "fields": { + "code_commune_insee": "62554", + "nom_de_la_commune": "MARESVILLE", + "code_postal": "62630", + "coordonnees_gps": [ + 50.5232708818, + 1.73018696482 + ], + "libelle_d_acheminement": "MARESVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73018696482, + 50.5232708818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "660e4fa25f32808f88544d024f94ad657db6987e", + "fields": { + "code_commune_insee": "90058", + "nom_de_la_commune": "LACHAPELLE SOUS ROUGEMONT", + "code_postal": "90360", + "coordonnees_gps": [ + 47.7137681909, + 7.01591974575 + ], + "libelle_d_acheminement": "LACHAPELLE SOUS ROUGEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01591974575, + 47.7137681909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92cdff614b019a40d71d68f4630bb5cc4911f5e9", + "fields": { + "code_commune_insee": "62556", + "nom_de_la_commune": "MARLES SUR CANCHE", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4638642323, + 1.8200426932 + ], + "libelle_d_acheminement": "MARLES SUR CANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8200426932, + 50.4638642323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edf7ec7f19940583ca3ad292a78cf1be8ea26a97", + "fields": { + "code_commune_insee": "90061", + "nom_de_la_commune": "LAMADELEINE VAL DES ANGES", + "code_postal": "90170", + "coordonnees_gps": [ + 47.7601153142, + 6.90910336251 + ], + "libelle_d_acheminement": "LAMADELEINE VAL DES ANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90910336251, + 47.7601153142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "926ee182c31e01e4191931ceea2abf655e9dc71b", + "fields": { + "code_commune_insee": "62566", + "nom_de_la_commune": "MENNEVILLE", + "code_postal": "62240", + "coordonnees_gps": [ + 50.6741251308, + 1.86280714354 + ], + "libelle_d_acheminement": "MENNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86280714354, + 50.6741251308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9bba399ab78a29c378c212fed7907f324cc4141", + "fields": { + "code_commune_insee": "90062", + "nom_de_la_commune": "LARIVIERE", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6769376385, + 6.99381327055 + ], + "libelle_d_acheminement": "LARIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99381327055, + 47.6769376385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a07ddaa6259f90bf99b8e1f7979550822b2a9b86", + "fields": { + "code_commune_insee": "62567", + "nom_de_la_commune": "MENTQUE NORTBECOURT", + "code_postal": "62890", + "coordonnees_gps": [ + 50.7729975278, + 2.09168559465 + ], + "libelle_d_acheminement": "MENTQUE NORTBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09168559465, + 50.7729975278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46c1d5826a4d6208bf67ac41b18e4d5d61c0b077", + "fields": { + "code_commune_insee": "90065", + "nom_de_la_commune": "LEPUIX", + "code_postal": "90200", + "coordonnees_gps": [ + 47.7806013604, + 6.82197185625 + ], + "libelle_d_acheminement": "LEPUIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82197185625, + 47.7806013604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb27226156e55100e6aa368eb313df8abee0db27", + "fields": { + "code_commune_insee": "62569", + "nom_de_la_commune": "MERCK ST LIEVIN", + "code_postal": "62560", + "coordonnees_gps": [ + 50.6363344754, + 2.10761618871 + ], + "libelle_d_acheminement": "MERCK ST LIEVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10761618871, + 50.6363344754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfad5e200d56cdc49323b135b135bf05c609ae32", + "fields": { + "code_commune_insee": "90077", + "nom_de_la_commune": "PETIT CROIX", + "code_postal": "90130", + "coordonnees_gps": [ + 47.6212088279, + 6.97354282285 + ], + "libelle_d_acheminement": "PETIT CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97354282285, + 47.6212088279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5f2ac6b7f3df83fa36e2b3c13a51a37c74e59b2", + "fields": { + "code_commune_insee": "62570", + "nom_de_la_commune": "MERICOURT", + "code_postal": "62680", + "coordonnees_gps": [ + 50.3992003873, + 2.86819314424 + ], + "libelle_d_acheminement": "MERICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86819314424, + 50.3992003873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "095ffbe55596ba6d26b061ba86ec70a1e63d4ab7", + "fields": { + "code_commune_insee": "90083", + "nom_de_la_commune": "RECOUVRANCE", + "code_postal": "90140", + "coordonnees_gps": [ + 47.5703574644, + 6.97895072336 + ], + "libelle_d_acheminement": "RECOUVRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97895072336, + 47.5703574644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abb21784a37461f0c84d90ba85c966b5110b228a", + "fields": { + "code_commune_insee": "62571", + "nom_de_la_commune": "MERLIMONT", + "code_postal": "62155", + "coordonnees_gps": [ + 50.4528272137, + 1.60785781096 + ], + "libelle_d_acheminement": "MERLIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60785781096, + 50.4528272137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af541487e5ce36b45004a39f2039c615dec86e9e", + "fields": { + "code_commune_insee": "90101", + "nom_de_la_commune": "VELLESCOT", + "code_postal": "90100", + "coordonnees_gps": [ + 47.5752045188, + 7.01784519688 + ], + "libelle_d_acheminement": "VELLESCOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01784519688, + 47.5752045188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e91ad8313d140b7cc7fb876a42e3a8f7991edd0c", + "fields": { + "code_commune_insee": "62572", + "nom_de_la_commune": "METZ EN COUTURE", + "code_postal": "62124", + "coordonnees_gps": [ + 50.0624565501, + 3.06272750972 + ], + "libelle_d_acheminement": "METZ EN COUTURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06272750972, + 50.0624565501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7acd59e374ed9a233ed6478ab24069e0e45c393", + "fields": { + "code_commune_insee": "90104", + "nom_de_la_commune": "VEZELOIS", + "code_postal": "90400", + "coordonnees_gps": [ + 47.6094018086, + 6.91908506936 + ], + "libelle_d_acheminement": "VEZELOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91908506936, + 47.6094018086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcc0e5d00d437bd9ea2c43cd7bcfece3463c4e30", + "fields": { + "code_commune_insee": "62578", + "nom_de_la_commune": "MONCHIET", + "code_postal": "62123", + "coordonnees_gps": [ + 50.2381944656, + 2.62311825865 + ], + "libelle_d_acheminement": "MONCHIET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62311825865, + 50.2381944656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80df8bbed5f059390bfb7930c425667857d7f2ba", + "fields": { + "ligne_5": "DOMMERVILLE", + "code_commune_insee": "91016", + "libelle_d_acheminement": "ANGERVILLE", + "code_postal": "91670", + "nom_de_la_commune": "ANGERVILLE", + "coordonnees_gps": [ + 48.3095627706, + 2.00619112268 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00619112268, + 48.3095627706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ff65ab534d77bd2adeaa676ba5e3a30ade9b2b3", + "fields": { + "code_commune_insee": "62596", + "nom_de_la_commune": "MOURIEZ", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3470493042, + 1.95514283314 + ], + "libelle_d_acheminement": "MOURIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95514283314, + 50.3470493042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "914247133271f5820c793b23dcdaa70edf39a4b5", + "fields": { + "code_commune_insee": "91045", + "nom_de_la_commune": "BALLANCOURT SUR ESSONNE", + "code_postal": "91610", + "coordonnees_gps": [ + 48.521899752, + 2.38788025142 + ], + "libelle_d_acheminement": "BALLANCOURT SUR ESSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38788025142, + 48.521899752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35a122cde9e0985d3cfdfa7c264e8f24efbf3c94", + "fields": { + "code_commune_insee": "62597", + "nom_de_la_commune": "MOYENNEVILLE", + "code_postal": "62121", + "coordonnees_gps": [ + 50.1799294808, + 2.77141568163 + ], + "libelle_d_acheminement": "MOYENNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77141568163, + 50.1799294808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89cd2c85cc6c24eb12404ee601fedaec01d216c6", + "fields": { + "code_commune_insee": "91075", + "nom_de_la_commune": "BOIS HERPIN", + "code_postal": "91150", + "coordonnees_gps": [ + 48.3717921411, + 2.24398863454 + ], + "libelle_d_acheminement": "BOIS HERPIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24398863454, + 48.3717921411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63a8efbde62ce66a8275e6ade0f559d20e04eaf3", + "fields": { + "code_commune_insee": "62599", + "nom_de_la_commune": "NABRINGHEN", + "code_postal": "62142", + "coordonnees_gps": [ + 50.7417350163, + 1.86256483299 + ], + "libelle_d_acheminement": "NABRINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86256483299, + 50.7417350163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5fec3a151a3b838e038c11c6814462eeb28b3ca", + "fields": { + "code_commune_insee": "91086", + "nom_de_la_commune": "BONDOUFLE", + "code_postal": "91070", + "coordonnees_gps": [ + 48.6140476567, + 2.38002541357 + ], + "libelle_d_acheminement": "BONDOUFLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38002541357, + 48.6140476567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e4d76853b69e20e9c9ac704d33206371dd03744", + "fields": { + "code_commune_insee": "62607", + "nom_de_la_commune": "NEUVILLE AU CORNET", + "code_postal": "62130", + "coordonnees_gps": [ + 50.334282171, + 2.36952468939 + ], + "libelle_d_acheminement": "NEUVILLE AU CORNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36952468939, + 50.334282171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1620f93fef9eedd7e67b0e4da153bb5dee955e2", + "fields": { + "code_commune_insee": "91105", + "nom_de_la_commune": "BREUILLET", + "code_postal": "91650", + "coordonnees_gps": [ + 48.5718215115, + 2.16598389799 + ], + "libelle_d_acheminement": "BREUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16598389799, + 48.5718215115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72b18f548ea73229de720117c7296f66747aa4be", + "fields": { + "code_commune_insee": "62614", + "nom_de_la_commune": "NIELLES LES ARDRES", + "code_postal": "62610", + "coordonnees_gps": [ + 50.8486968374, + 2.00661569937 + ], + "libelle_d_acheminement": "NIELLES LES ARDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00661569937, + 50.8486968374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5772e63e548f91df25216fae87188475a58de97a", + "fields": { + "code_commune_insee": "91106", + "nom_de_la_commune": "BREUX JOUY", + "code_postal": "91650", + "coordonnees_gps": [ + 48.5549501512, + 2.16049670709 + ], + "libelle_d_acheminement": "BREUX JOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16049670709, + 48.5549501512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e046c4d42fe28c29e3aea72cf47b5b1cd7b339d", + "fields": { + "code_commune_insee": "62618", + "nom_de_la_commune": "NORDAUSQUES", + "code_postal": "62890", + "coordonnees_gps": [ + 50.8139376345, + 2.08471496754 + ], + "libelle_d_acheminement": "NORDAUSQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08471496754, + 50.8139376345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48c48765095ae11946f14833e9333a0bb0ef4755", + "fields": { + "code_commune_insee": "91114", + "nom_de_la_commune": "BRUNOY", + "code_postal": "91800", + "coordonnees_gps": [ + 48.6964396294, + 2.50394753271 + ], + "libelle_d_acheminement": "BRUNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50394753271, + 48.6964396294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e53b7522a76ac7c883fc5db4139730277adf2814", + "fields": { + "code_commune_insee": "62619", + "nom_de_la_commune": "NOREUIL", + "code_postal": "62128", + "coordonnees_gps": [ + 50.170479855, + 2.93868570028 + ], + "libelle_d_acheminement": "NOREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93868570028, + 50.170479855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a30c6abef0d8b8fdac00d6fc69c6ed01e2f6d7b5", + "fields": { + "code_commune_insee": "91121", + "nom_de_la_commune": "BUNO BONNEVAUX", + "code_postal": "91720", + "coordonnees_gps": [ + 48.3569089853, + 2.40696147299 + ], + "libelle_d_acheminement": "BUNO BONNEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40696147299, + 48.3569089853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c43f75ed11d701500ee37f806701ca2c93d715fc", + "fields": { + "code_commune_insee": "62623", + "nom_de_la_commune": "NOUVELLE EGLISE", + "code_postal": "62370", + "coordonnees_gps": [ + 50.9318131132, + 2.0456999898 + ], + "libelle_d_acheminement": "NOUVELLE EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0456999898, + 50.9318131132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bc8a98a8a5200e5ed18f4dfaef9ac5aaed7bb34", + "fields": { + "code_commune_insee": "91122", + "nom_de_la_commune": "BURES SUR YVETTE", + "code_postal": "91440", + "coordonnees_gps": [ + 48.6929979919, + 2.15838686116 + ], + "libelle_d_acheminement": "BURES SUR YVETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15838686116, + 48.6929979919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0c513e09785de8d107601508187f8d39bfb376d", + "fields": { + "code_commune_insee": "62629", + "nom_de_la_commune": "NOYELLETTE", + "code_postal": "62123", + "coordonnees_gps": [ + 50.2978570958, + 2.59183341606 + ], + "libelle_d_acheminement": "NOYELLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59183341606, + 50.2978570958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46be8dd1946998bf569ecfe4562729f0308f6d6e", + "fields": { + "code_commune_insee": "91191", + "nom_de_la_commune": "CROSNE", + "code_postal": "91560", + "coordonnees_gps": [ + 48.7200869901, + 2.46331727859 + ], + "libelle_d_acheminement": "CROSNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46331727859, + 48.7200869901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "840eb2867e6dba17f8fd3c98734b8226ea861b4a", + "fields": { + "code_commune_insee": "62630", + "nom_de_la_commune": "NOYELLE VION", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2915190134, + 2.54478161296 + ], + "libelle_d_acheminement": "NOYELLE VION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54478161296, + 50.2915190134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f08813d69f4d40d5b7efc4176fa927857ca78c3b", + "fields": { + "ligne_5": "COURCOURONNES", + "code_commune_insee": "91228", + "libelle_d_acheminement": "EVRY COURCOURONNES", + "code_postal": "91080", + "nom_de_la_commune": "EVRY COURCOURONNES", + "coordonnees_gps": [ + 48.6294831659, + 2.44008244492 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44008244492, + 48.6294831659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "777ce9efd223fd6ebe37197822de003b3ec89a75", + "fields": { + "ligne_5": "HAUTECOTE", + "code_commune_insee": "62631", + "libelle_d_acheminement": "NUNCQ HAUTECOTE", + "code_postal": "62270", + "nom_de_la_commune": "NUNCQ HAUTECOTE", + "coordonnees_gps": [ + 50.3077191679, + 2.28678904322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28678904322, + 50.3077191679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "119e2fa7c21b740f8c8fee2c190e95d581bef65b", + "fields": { + "code_commune_insee": "91240", + "nom_de_la_commune": "FONTAINE LA RIVIERE", + "code_postal": "91690", + "coordonnees_gps": [ + 48.3602367763, + 2.16482780211 + ], + "libelle_d_acheminement": "FONTAINE LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16482780211, + 48.3602367763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4713065f04d1bdf2dbe493a4f180ec341f1fabfb", + "fields": { + "code_commune_insee": "62632", + "nom_de_la_commune": "OBLINGHEM", + "code_postal": "62920", + "coordonnees_gps": [ + 50.5512476487, + 2.59352729136 + ], + "libelle_d_acheminement": "OBLINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59352729136, + 50.5512476487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cf6b2feeffb8ada6822f11bf93e82a0015fc52d", + "fields": { + "code_commune_insee": "91248", + "nom_de_la_commune": "LA FORET STE CROIX", + "code_postal": "91150", + "coordonnees_gps": [ + 48.3840802182, + 2.23053467052 + ], + "libelle_d_acheminement": "LA FORET STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23053467052, + 48.3840802182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a2a8fee6d4558e14ecf9ae6cd663b8f4a088cd8", + "fields": { + "code_commune_insee": "62640", + "nom_de_la_commune": "ORVILLE", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1286097362, + 2.41900637434 + ], + "libelle_d_acheminement": "ORVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41900637434, + 50.1286097362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4baca88e53decf6cc329145c451db035f225d906", + "fields": { + "code_commune_insee": "91272", + "nom_de_la_commune": "GIF SUR YVETTE", + "code_postal": "91190", + "coordonnees_gps": [ + 48.6988273634, + 2.12788365005 + ], + "libelle_d_acheminement": "GIF SUR YVETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12788365005, + 48.6988273634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed50f240c379038175f510d0c53b52dee9975a59", + "fields": { + "code_commune_insee": "62643", + "nom_de_la_commune": "OUTREAU", + "code_postal": "62230", + "coordonnees_gps": [ + 50.6980158519, + 1.59211375998 + ], + "libelle_d_acheminement": "OUTREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59211375998, + 50.6980158519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1a225fe251e2a7c05b3a15739f4a66c6ae2891e", + "fields": { + "code_commune_insee": "91273", + "nom_de_la_commune": "GIRONVILLE SUR ESSONNE", + "code_postal": "91720", + "coordonnees_gps": [ + 48.3663326191, + 2.34574347653 + ], + "libelle_d_acheminement": "GIRONVILLE SUR ESSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34574347653, + 48.3663326191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3e37defccac674feea0e07d038aa0be099cbae3", + "fields": { + "code_commune_insee": "62648", + "nom_de_la_commune": "PARENTY", + "code_postal": "62650", + "coordonnees_gps": [ + 50.5942219579, + 1.80057178458 + ], + "libelle_d_acheminement": "PARENTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80057178458, + 50.5942219579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "093091a9cf0109d35ee7f95dc2ecb0d4c7a8fb2b", + "fields": { + "code_commune_insee": "91274", + "nom_de_la_commune": "GOMETZ LA VILLE", + "code_postal": "91400", + "coordonnees_gps": [ + 48.672349947, + 2.10961593577 + ], + "libelle_d_acheminement": "GOMETZ LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10961593577, + 48.672349947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a30d3446f9fe546840058f9337437ac50074323b", + "fields": { + "code_commune_insee": "62655", + "nom_de_la_commune": "PIERREMONT", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3983828785, + 2.2554720629 + ], + "libelle_d_acheminement": "PIERREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2554720629, + 50.3983828785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fe825323b266edc3073be185c891e899477487c", + "fields": { + "code_commune_insee": "91286", + "nom_de_la_commune": "GRIGNY", + "code_postal": "91350", + "coordonnees_gps": [ + 48.6568896116, + 2.38789647858 + ], + "libelle_d_acheminement": "GRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38789647858, + 48.6568896116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0074e22c2b10cabf555b74b33ec1ba67433b62f", + "fields": { + "code_commune_insee": "91315", + "nom_de_la_commune": "ITTEVILLE", + "code_postal": "91760", + "coordonnees_gps": [ + 48.5145241389, + 2.34431579636 + ], + "libelle_d_acheminement": "ITTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34431579636, + 48.5145241389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7625b3a227474685890777ec65668b142db76f5c", + "fields": { + "code_commune_insee": "91330", + "nom_de_la_commune": "LARDY", + "code_postal": "91510", + "coordonnees_gps": [ + 48.5270354108, + 2.27017712838 + ], + "libelle_d_acheminement": "LARDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27017712838, + 48.5270354108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "101cf98d35ab98d99e521741f82ae5b0966d7da9", + "fields": { + "code_commune_insee": "91333", + "nom_de_la_commune": "LEUVILLE SUR ORGE", + "code_postal": "91310", + "coordonnees_gps": [ + 48.614191732, + 2.26786916606 + ], + "libelle_d_acheminement": "LEUVILLE SUR ORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26786916606, + 48.614191732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "597ffa6cad746f7dcf38de5cc2e1b3b6dc7659bd", + "fields": { + "code_commune_insee": "91340", + "nom_de_la_commune": "LISSES", + "code_postal": "91090", + "coordonnees_gps": [ + 48.5966688856, + 2.42469094606 + ], + "libelle_d_acheminement": "LISSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42469094606, + 48.5966688856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa8836ef0203944e205d1ede6ee25926e372cff8", + "fields": { + "code_commune_insee": "91376", + "nom_de_la_commune": "MAROLLES EN HUREPOIX", + "code_postal": "91630", + "coordonnees_gps": [ + 48.5649798618, + 2.29920657171 + ], + "libelle_d_acheminement": "MAROLLES EN HUREPOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29920657171, + 48.5649798618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f98c015bc81428900e6a70d4a0a50e5cc1074df", + "fields": { + "code_commune_insee": "91378", + "nom_de_la_commune": "MAUCHAMPS", + "code_postal": "91730", + "coordonnees_gps": [ + 48.5272680908, + 2.19718165044 + ], + "libelle_d_acheminement": "MAUCHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19718165044, + 48.5272680908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ac54954909d535230b28e4062985c93c37a7099", + "fields": { + "ligne_5": "ESTOUCHES", + "code_commune_insee": "91390", + "libelle_d_acheminement": "LE MEREVILLOIS", + "code_postal": "91660", + "nom_de_la_commune": "LE MEREVILLOIS", + "coordonnees_gps": [ + 48.3183780776, + 2.07369929257 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07369929257, + 48.3183780776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bee20b3dc9f05a5076072ddce2a2c2a60c7d5c1b", + "fields": { + "code_commune_insee": "91432", + "nom_de_la_commune": "MORANGIS", + "code_postal": "91420", + "coordonnees_gps": [ + 48.702703885, + 2.33614296581 + ], + "libelle_d_acheminement": "MORANGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33614296581, + 48.702703885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5374255f652ea40ba0ab1696013bdec75cf4d5ca", + "fields": { + "code_commune_insee": "91463", + "nom_de_la_commune": "ONCY SUR ECOLE", + "code_postal": "91490", + "coordonnees_gps": [ + 48.3819349973, + 2.45686876187 + ], + "libelle_d_acheminement": "ONCY SUR ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45686876187, + 48.3819349973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "117863864d54e936395340ccaffe4afc76c3a6a3", + "fields": { + "code_commune_insee": "91507", + "nom_de_la_commune": "PRUNAY SUR ESSONNE", + "code_postal": "91720", + "coordonnees_gps": [ + 48.3520662513, + 2.36130827572 + ], + "libelle_d_acheminement": "PRUNAY SUR ESSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36130827572, + 48.3520662513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c7d11c2c45ae6017268148dafec5ebcb6229956", + "fields": { + "code_commune_insee": "91514", + "nom_de_la_commune": "QUINCY SOUS SENART", + "code_postal": "91480", + "coordonnees_gps": [ + 48.6703327314, + 2.52837404941 + ], + "libelle_d_acheminement": "QUINCY SOUS SENART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52837404941, + 48.6703327314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1caa8def412db31dc2d4860ddfcc56112c63a600", + "fields": { + "code_commune_insee": "91519", + "nom_de_la_commune": "RICHARVILLE", + "code_postal": "91410", + "coordonnees_gps": [ + 48.4685502881, + 1.99842610136 + ], + "libelle_d_acheminement": "RICHARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99842610136, + 48.4685502881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d80c1ee3cd0bdec3528495c09ecfc08230c6b6f", + "fields": { + "code_commune_insee": "91521", + "nom_de_la_commune": "RIS ORANGIS", + "code_postal": "91130", + "coordonnees_gps": [ + 48.6451939168, + 2.40793631766 + ], + "libelle_d_acheminement": "RIS ORANGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40793631766, + 48.6451939168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56f07cc36149028bec3490377d9c3495b5c5a2da", + "fields": { + "code_commune_insee": "91619", + "nom_de_la_commune": "TORFOU", + "code_postal": "91730", + "coordonnees_gps": [ + 48.5320494268, + 2.23447204587 + ], + "libelle_d_acheminement": "TORFOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23447204587, + 48.5320494268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdd669a7b1221f8e62dc478f38552e86ca8dda09", + "fields": { + "code_commune_insee": "91630", + "nom_de_la_commune": "LE VAL ST GERMAIN", + "code_postal": "91530", + "coordonnees_gps": [ + 48.5678789376, + 2.08128870384 + ], + "libelle_d_acheminement": "LE VAL ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08128870384, + 48.5678789376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "547cfa4cc411e1c106523adb509d91b62d873d55", + "fields": { + "code_commune_insee": "91631", + "nom_de_la_commune": "VARENNES JARCY", + "code_postal": "91480", + "coordonnees_gps": [ + 48.6815226941, + 2.56238031249 + ], + "libelle_d_acheminement": "VARENNES JARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56238031249, + 48.6815226941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae7da85af7196087724447f54d49152909c17ba8", + "fields": { + "code_commune_insee": "91639", + "nom_de_la_commune": "VAYRES SUR ESSONNE", + "code_postal": "91820", + "coordonnees_gps": [ + 48.431521942, + 2.34569131487 + ], + "libelle_d_acheminement": "VAYRES SUR ESSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34569131487, + 48.431521942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84292045b8189a08c85166b682a44e15de967ea5", + "fields": { + "code_commune_insee": "91665", + "nom_de_la_commune": "LA VILLE DU BOIS", + "code_postal": "91620", + "coordonnees_gps": [ + 48.6610194975, + 2.26503430984 + ], + "libelle_d_acheminement": "LA VILLE DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26503430984, + 48.6610194975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6181020de3bec77640ad15c7be7b61a17fcc3893", + "fields": { + "code_commune_insee": "91671", + "nom_de_la_commune": "VILLENEUVE SUR AUVERS", + "code_postal": "91580", + "coordonnees_gps": [ + 48.4671191613, + 2.25415010197 + ], + "libelle_d_acheminement": "VILLENEUVE SUR AUVERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25415010197, + 48.4671191613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94aa1cfc42346ce35b39468c20a1d6743b912ef3", + "fields": { + "code_commune_insee": "91685", + "nom_de_la_commune": "VILLIERS SUR ORGE", + "code_postal": "91700", + "coordonnees_gps": [ + 48.6584199819, + 2.29950120792 + ], + "libelle_d_acheminement": "VILLIERS SUR ORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29950120792, + 48.6584199819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ff96d4a37771dbb137da6a6e4eb212c2fe7b940", + "fields": { + "code_commune_insee": "92009", + "nom_de_la_commune": "BOIS COLOMBES", + "code_postal": "92270", + "coordonnees_gps": [ + 48.9153368426, + 2.26738552597 + ], + "libelle_d_acheminement": "BOIS COLOMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26738552597, + 48.9153368426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0388e672eabea1565ad81ef1605cd80b18a1ff6", + "fields": { + "code_commune_insee": "92012", + "nom_de_la_commune": "BOULOGNE BILLANCOURT", + "code_postal": "92100", + "coordonnees_gps": [ + 48.8365843138, + 2.23913599058 + ], + "libelle_d_acheminement": "BOULOGNE BILLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23913599058, + 48.8365843138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f59ac1d043dbbe02b1fa76049c79dd254a89740", + "fields": { + "code_commune_insee": "92022", + "nom_de_la_commune": "CHAVILLE", + "code_postal": "92370", + "coordonnees_gps": [ + 48.8076083562, + 2.19234061062 + ], + "libelle_d_acheminement": "CHAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19234061062, + 48.8076083562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ef58cd10893593ee1452e2e31513ec7f183ef07", + "fields": { + "code_commune_insee": "92026", + "nom_de_la_commune": "COURBEVOIE", + "code_postal": "92400", + "coordonnees_gps": [ + 48.8984504771, + 2.25570587289 + ], + "libelle_d_acheminement": "COURBEVOIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25570587289, + 48.8984504771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6711658a33c0d6864aeb5a46e09b36231bd85d28", + "fields": { + "code_commune_insee": "92035", + "nom_de_la_commune": "LA GARENNE COLOMBES", + "code_postal": "92250", + "coordonnees_gps": [ + 48.9067577111, + 2.24464604084 + ], + "libelle_d_acheminement": "LA GARENNE COLOMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24464604084, + 48.9067577111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b1f7a7325c4cadfdc643efb03dd613b508bb417", + "fields": { + "code_commune_insee": "92044", + "nom_de_la_commune": "LEVALLOIS PERRET", + "code_postal": "92300", + "coordonnees_gps": [ + 48.895071672, + 2.28688268127 + ], + "libelle_d_acheminement": "LEVALLOIS PERRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28688268127, + 48.895071672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d7b9ce0837c3e0d2cfd1cbede37a3397a46235a", + "fields": { + "code_commune_insee": "92046", + "nom_de_la_commune": "MALAKOFF", + "code_postal": "92240", + "coordonnees_gps": [ + 48.8169695977, + 2.29693599517 + ], + "libelle_d_acheminement": "MALAKOFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29693599517, + 48.8169695977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "625707b7a3ad79adfedbcb10de42d5d96f76e826", + "fields": { + "code_commune_insee": "92063", + "nom_de_la_commune": "RUEIL MALMAISON", + "code_postal": "92500", + "coordonnees_gps": [ + 48.8691897371, + 2.1773406315 + ], + "libelle_d_acheminement": "RUEIL MALMAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1773406315, + 48.8691897371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75b39931fdc11d76ac40f4800b07797fc5f5b827", + "fields": { + "code_commune_insee": "92071", + "nom_de_la_commune": "SCEAUX", + "code_postal": "92330", + "coordonnees_gps": [ + 48.776816369, + 2.29529414514 + ], + "libelle_d_acheminement": "SCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29529414514, + 48.776816369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "becfc58718accdc1ba9b88cc7aa2efaea4a7741a", + "fields": { + "code_commune_insee": "92072", + "nom_de_la_commune": "SEVRES", + "code_postal": "92310", + "coordonnees_gps": [ + 48.821476509, + 2.21052297438 + ], + "libelle_d_acheminement": "SEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21052297438, + 48.821476509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b419c707453cc0e1c2db10d96c73717bb1c8f5ba", + "fields": { + "code_commune_insee": "93013", + "nom_de_la_commune": "LE BOURGET", + "code_postal": "93350", + "coordonnees_gps": [ + 48.9361847458, + 2.42827855593 + ], + "libelle_d_acheminement": "LE BOURGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42827855593, + 48.9361847458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "490f5c567402a4e0767a4e8ea4047ad8e1d4a2c5", + "fields": { + "code_commune_insee": "93015", + "nom_de_la_commune": "COUBRON", + "code_postal": "93470", + "coordonnees_gps": [ + 48.9176519555, + 2.57631231652 + ], + "libelle_d_acheminement": "COUBRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57631231652, + 48.9176519555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "449f81e92628fc96064198da171f04398fe5ba53", + "fields": { + "code_commune_insee": "93047", + "nom_de_la_commune": "MONTFERMEIL", + "code_postal": "93370", + "coordonnees_gps": [ + 48.8982616679, + 2.56714354796 + ], + "libelle_d_acheminement": "MONTFERMEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56714354796, + 48.8982616679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b1a21ffb67973a5d1ba4d441c463b7879d1203b", + "fields": { + "code_commune_insee": "93050", + "nom_de_la_commune": "NEUILLY SUR MARNE", + "code_postal": "93330", + "coordonnees_gps": [ + 48.8624578581, + 2.54000288785 + ], + "libelle_d_acheminement": "NEUILLY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54000288785, + 48.8624578581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3dbc7c621e3dae8c837f3de6103c756d4c8d8bc", + "fields": { + "code_commune_insee": "93055", + "nom_de_la_commune": "PANTIN", + "code_postal": "93500", + "coordonnees_gps": [ + 48.8983093876, + 2.40872147475 + ], + "libelle_d_acheminement": "PANTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40872147475, + 48.8983093876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8386265a4116a85e48a608b03bc98f337b0d8a81", + "fields": { + "code_commune_insee": "93057", + "nom_de_la_commune": "LES PAVILLONS SOUS BOIS", + "code_postal": "93320", + "coordonnees_gps": [ + 48.9082060253, + 2.50297448267 + ], + "libelle_d_acheminement": "LES PAVILLONS SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50297448267, + 48.9082060253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef86a3a769ded5dd112b9940eac1a4aa97778440", + "fields": { + "code_commune_insee": "93074", + "nom_de_la_commune": "VAUJOURS", + "code_postal": "93410", + "coordonnees_gps": [ + 48.9324772605, + 2.5810025704 + ], + "libelle_d_acheminement": "VAUJOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5810025704, + 48.9324772605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c922aa0b944b94690b43d07f43791b1026db661", + "fields": { + "code_commune_insee": "94001", + "nom_de_la_commune": "ABLON SUR SEINE", + "code_postal": "94480", + "coordonnees_gps": [ + 48.7238409464, + 2.42117629348 + ], + "libelle_d_acheminement": "ABLON SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42117629348, + 48.7238409464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e712da0de237e976557ac5cd30d985cc2c97bca", + "fields": { + "ligne_5": "COEUILLY", + "code_commune_insee": "94017", + "libelle_d_acheminement": "CHAMPIGNY SUR MARNE", + "code_postal": "94500", + "nom_de_la_commune": "CHAMPIGNY SUR MARNE", + "coordonnees_gps": [ + 48.817254364, + 2.51709815257 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51709815257, + 48.817254364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2134e2a70fef7faadb5d90619f81f784f49a5caf", + "fields": { + "code_commune_insee": "94019", + "nom_de_la_commune": "CHENNEVIERES SUR MARNE", + "code_postal": "94430", + "coordonnees_gps": [ + 48.7976502878, + 2.54157630073 + ], + "libelle_d_acheminement": "CHENNEVIERES SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54157630073, + 48.7976502878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c47508bec9020330c8573e4009f38c901220fbc", + "fields": { + "code_commune_insee": "94033", + "nom_de_la_commune": "FONTENAY SOUS BOIS", + "code_postal": "94120", + "coordonnees_gps": [ + 48.8511046382, + 2.47395409774 + ], + "libelle_d_acheminement": "FONTENAY SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47395409774, + 48.8511046382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1513ac7c30ee4df66db3a45f3d2938cceda903c9", + "fields": { + "code_commune_insee": "94038", + "nom_de_la_commune": "L HAY LES ROSES", + "code_postal": "94240", + "coordonnees_gps": [ + 48.7763207843, + 2.33772915609 + ], + "libelle_d_acheminement": "L HAY LES ROSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33772915609, + 48.7763207843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b825b43ee9a8d9bb622816bfb2a6bfb7efefb569", + "fields": { + "code_commune_insee": "94042", + "nom_de_la_commune": "JOINVILLE LE PONT", + "code_postal": "94340", + "coordonnees_gps": [ + 48.8193683216, + 2.47044977809 + ], + "libelle_d_acheminement": "JOINVILLE LE PONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47044977809, + 48.8193683216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71b166fb6bea154a2c1f0b01d8d7700d5a79f6d7", + "fields": { + "code_commune_insee": "94046", + "nom_de_la_commune": "MAISONS ALFORT", + "code_postal": "94700", + "coordonnees_gps": [ + 48.8063923267, + 2.43818248906 + ], + "libelle_d_acheminement": "MAISONS ALFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43818248906, + 48.8063923267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "443ff547c2f5d544ea847c9b69c4fa03411f046e", + "fields": { + "code_commune_insee": "62665", + "nom_de_la_commune": "LE PONCHEL", + "code_postal": "62390", + "coordonnees_gps": [ + 50.2568499569, + 2.08536374004 + ], + "libelle_d_acheminement": "LE PONCHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08536374004, + 50.2568499569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ada4c811d776b6cdefd9512da4f67b009105d08f", + "fields": { + "code_commune_insee": "62667", + "nom_de_la_commune": "LE PORTEL", + "code_postal": "62480", + "coordonnees_gps": [ + 50.7126100716, + 1.57611235445 + ], + "libelle_d_acheminement": "LE PORTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57611235445, + 50.7126100716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "319322061a4b7c63f909f665937a608403d1cea1", + "fields": { + "code_commune_insee": "62669", + "nom_de_la_commune": "PRESSY", + "code_postal": "62550", + "coordonnees_gps": [ + 50.4741367266, + 2.39005609292 + ], + "libelle_d_acheminement": "PRESSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39005609292, + 50.4741367266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5b7d3ac7fe9e12d5f24ae68521a65782718e002", + "fields": { + "code_commune_insee": "62679", + "nom_de_la_commune": "QUESTRECQUES", + "code_postal": "62830", + "coordonnees_gps": [ + 50.6645692579, + 1.74592527562 + ], + "libelle_d_acheminement": "QUESTRECQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74592527562, + 50.6645692579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f65a0605323c4231d4a46fa7a233d0212f1a6f82", + "fields": { + "code_commune_insee": "62683", + "nom_de_la_commune": "QUOEUX HAUT MAINIL", + "code_postal": "62390", + "coordonnees_gps": [ + 50.3010617239, + 2.10429355404 + ], + "libelle_d_acheminement": "QUOEUX HAUT MAINIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10429355404, + 50.3010617239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f201ef023a568787609f7f8c75339e4897c211ad", + "fields": { + "code_commune_insee": "62684", + "nom_de_la_commune": "RACQUINGHEM", + "code_postal": "62120", + "coordonnees_gps": [ + 50.6951552372, + 2.36039554568 + ], + "libelle_d_acheminement": "RACQUINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36039554568, + 50.6951552372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "807c260bb8273927a92a273dc96dcf0581f4dbbe", + "fields": { + "ligne_5": "CLARQUES", + "code_commune_insee": "62691", + "libelle_d_acheminement": "ST AUGUSTIN", + "code_postal": "62129", + "nom_de_la_commune": "ST AUGUSTIN", + "coordonnees_gps": [ + 50.6486142358, + 2.30256500172 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30256500172, + 50.6486142358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7405a8f7e9b6599dd868f66a32b9535d0113ab5", + "fields": { + "code_commune_insee": "62702", + "nom_de_la_commune": "REMILLY WIRQUIN", + "code_postal": "62380", + "coordonnees_gps": [ + 50.6699885591, + 2.17457011207 + ], + "libelle_d_acheminement": "REMILLY WIRQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17457011207, + 50.6699885591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5f7b5a13074f5a28aa3ed8bd4a8cf35e93d9780", + "fields": { + "code_commune_insee": "62710", + "nom_de_la_commune": "RIMBOVAL", + "code_postal": "62990", + "coordonnees_gps": [ + 50.5151477103, + 1.98923496959 + ], + "libelle_d_acheminement": "RIMBOVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98923496959, + 50.5151477103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e65a05a2cb89e00a329d5cd3e4038fb2540fe12", + "fields": { + "code_commune_insee": "62717", + "nom_de_la_commune": "ROELLECOURT", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3682282573, + 2.387937901 + ], + "libelle_d_acheminement": "ROELLECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.387937901, + 50.3682282573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "502c7260384e1afc150b0f85e1f2f161d4d24b34", + "fields": { + "code_commune_insee": "62723", + "nom_de_la_commune": "ROUSSENT", + "code_postal": "62870", + "coordonnees_gps": [ + 50.3713244129, + 1.77455343487 + ], + "libelle_d_acheminement": "ROUSSENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77455343487, + 50.3713244129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55d4828bd65b7f7b2b81b3d846f7dfca59c53d2e", + "fields": { + "code_commune_insee": "62728", + "nom_de_la_commune": "RUMAUCOURT", + "code_postal": "62860", + "coordonnees_gps": [ + 50.2382420752, + 3.06500657544 + ], + "libelle_d_acheminement": "RUMAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06500657544, + 50.2382420752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9304304e40b30e052443ca1b347173edca192f6c", + "fields": { + "code_commune_insee": "62731", + "nom_de_la_commune": "RUYAULCOURT", + "code_postal": "62124", + "coordonnees_gps": [ + 50.0828450646, + 3.01620386019 + ], + "libelle_d_acheminement": "RUYAULCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01620386019, + 50.0828450646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16b749c2921e35b93ad60b88569a06990b4d8c0a", + "fields": { + "code_commune_insee": "62733", + "nom_de_la_commune": "SAILLY AU BOIS", + "code_postal": "62111", + "coordonnees_gps": [ + 50.1213705437, + 2.59867218191 + ], + "libelle_d_acheminement": "SAILLY AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59867218191, + 50.1213705437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a11034ed88c48eee78435f5e0076fb2ac3687eef", + "fields": { + "code_commune_insee": "62734", + "nom_de_la_commune": "SAILLY EN OSTREVENT", + "code_postal": "62490", + "coordonnees_gps": [ + 50.2875880806, + 2.99003702164 + ], + "libelle_d_acheminement": "SAILLY EN OSTREVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99003702164, + 50.2875880806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a9a75cde5744d3c2319c3b3b7054b017f529d83", + "fields": { + "code_commune_insee": "62739", + "nom_de_la_commune": "SAINS LES MARQUION", + "code_postal": "62860", + "coordonnees_gps": [ + 50.1855341097, + 3.07837118721 + ], + "libelle_d_acheminement": "SAINS LES MARQUION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07837118721, + 50.1855341097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c81b9335302b883f6ed6722c6fef74369c0fc81", + "fields": { + "code_commune_insee": "62748", + "nom_de_la_commune": "ST FOLQUIN", + "code_postal": "62370", + "coordonnees_gps": [ + 50.9379112392, + 2.12543329678 + ], + "libelle_d_acheminement": "ST FOLQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12543329678, + 50.9379112392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68c9e6dd73c5f7ee27558c2d1ac4e1ec6d5c4e17", + "fields": { + "code_commune_insee": "62754", + "nom_de_la_commune": "ST LEGER", + "code_postal": "62128", + "coordonnees_gps": [ + 50.1836392129, + 2.8515731694 + ], + "libelle_d_acheminement": "ST LEGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8515731694, + 50.1836392129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5d339c7a44e92752097ab3c51f5d638f934fa6d", + "fields": { + "code_commune_insee": "62755", + "nom_de_la_commune": "ST LEONARD", + "code_postal": "62360", + "coordonnees_gps": [ + 50.6957085427, + 1.62300066383 + ], + "libelle_d_acheminement": "ST LEONARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62300066383, + 50.6957085427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfb1a44f23e3c9567a15ba1d853e6b2c7a5722e5", + "fields": { + "code_commune_insee": "62767", + "nom_de_la_commune": "ST POL SUR TERNOISE", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3883542632, + 2.35010590037 + ], + "libelle_d_acheminement": "ST POL SUR TERNOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35010590037, + 50.3883542632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e799bdd6ece7c9668cc4fa8abf6f173edc6c6939", + "fields": { + "code_commune_insee": "62775", + "nom_de_la_commune": "SANGHEN", + "code_postal": "62850", + "coordonnees_gps": [ + 50.7731524304, + 1.89264979524 + ], + "libelle_d_acheminement": "SANGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89264979524, + 50.7731524304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "846d2cc8df0210663344a54a8843ab96777d57ee", + "fields": { + "code_commune_insee": "62776", + "nom_de_la_commune": "SAPIGNIES", + "code_postal": "62121", + "coordonnees_gps": [ + 50.1316392726, + 2.83675199369 + ], + "libelle_d_acheminement": "SAPIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83675199369, + 50.1316392726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1d2110d711a389e52dcf420ab3d5f168631bf48", + "fields": { + "code_commune_insee": "62777", + "nom_de_la_commune": "LE SARS", + "code_postal": "62450", + "coordonnees_gps": [ + 50.0668702821, + 2.78329520895 + ], + "libelle_d_acheminement": "LE SARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78329520895, + 50.0668702821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5fceb86733b19efb922daefb85b0236226f512a", + "fields": { + "code_commune_insee": "62779", + "nom_de_la_commune": "SARTON", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1088396237, + 2.43057048265 + ], + "libelle_d_acheminement": "SARTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43057048265, + 50.1088396237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50f88bf54ce63a6cdb246f0fbb41b3a109022941", + "fields": { + "code_commune_insee": "62781", + "nom_de_la_commune": "SAUCHY LESTREE", + "code_postal": "62860", + "coordonnees_gps": [ + 50.2199513579, + 3.11647492412 + ], + "libelle_d_acheminement": "SAUCHY LESTREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11647492412, + 50.2199513579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8c89953d3fe563162180e40f8b8e5b448fab7a8", + "fields": { + "code_commune_insee": "62784", + "nom_de_la_commune": "SAULTY", + "code_postal": "62158", + "coordonnees_gps": [ + 50.2118204122, + 2.52470460058 + ], + "libelle_d_acheminement": "SAULTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52470460058, + 50.2118204122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25147db150402a4f728226a9b409f07814d4e77f", + "fields": { + "code_commune_insee": "62788", + "nom_de_la_commune": "SENINGHEM", + "code_postal": "62380", + "coordonnees_gps": [ + 50.6984836133, + 2.02702639439 + ], + "libelle_d_acheminement": "SENINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02702639439, + 50.6984836133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a88be830b28f62a2fb45adab67ad3ac7341e37c8", + "fields": { + "code_commune_insee": "62792", + "nom_de_la_commune": "SERQUES", + "code_postal": "62910", + "coordonnees_gps": [ + 50.7907495973, + 2.20166097242 + ], + "libelle_d_acheminement": "SERQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20166097242, + 50.7907495973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8acc3fe79c9cda6b02ee7e61f46197d66897969d", + "fields": { + "code_commune_insee": "62793", + "nom_de_la_commune": "SERVINS", + "code_postal": "62530", + "coordonnees_gps": [ + 50.4073388544, + 2.63620262652 + ], + "libelle_d_acheminement": "SERVINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63620262652, + 50.4073388544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d35061f4f44990ed7e3c415c3c93f6dc2a99da4", + "fields": { + "code_commune_insee": "62794", + "nom_de_la_commune": "SETQUES", + "code_postal": "62380", + "coordonnees_gps": [ + 50.7145017028, + 2.15645765074 + ], + "libelle_d_acheminement": "SETQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15645765074, + 50.7145017028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae2bce383777913b1d339c549c351a0c8e6ed09d", + "fields": { + "code_commune_insee": "62796", + "nom_de_la_commune": "SIMENCOURT", + "code_postal": "62123", + "coordonnees_gps": [ + 50.2544725245, + 2.63378258972 + ], + "libelle_d_acheminement": "SIMENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63378258972, + 50.2544725245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7e181bd0fc8d2d2224f3ac6b60cb445fde1e90c", + "fields": { + "code_commune_insee": "62801", + "nom_de_la_commune": "SOUCHEZ", + "code_postal": "62153", + "coordonnees_gps": [ + 50.388730428, + 2.74349744668 + ], + "libelle_d_acheminement": "SOUCHEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74349744668, + 50.388730428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c64a44c219745e8cdad85b2c033a6b442ee6ae91", + "fields": { + "code_commune_insee": "62803", + "nom_de_la_commune": "SURQUES", + "code_postal": "62850", + "coordonnees_gps": [ + 50.7434489941, + 1.92294829855 + ], + "libelle_d_acheminement": "SURQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92294829855, + 50.7434489941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86ddf8c2c33f6bbc2ffa1e3a322a9d9f62c0407f", + "fields": { + "code_commune_insee": "62806", + "nom_de_la_commune": "TARDINGHEN", + "code_postal": "62179", + "coordonnees_gps": [ + 50.8654992895, + 1.64282403638 + ], + "libelle_d_acheminement": "TARDINGHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64282403638, + 50.8654992895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "017efae87007fdb883228a708bad4229867b2b47", + "fields": { + "code_commune_insee": "94067", + "nom_de_la_commune": "ST MANDE", + "code_postal": "94160", + "coordonnees_gps": [ + 48.842440243, + 2.4192191088 + ], + "libelle_d_acheminement": "ST MANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4192191088, + 48.842440243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c29aaaab0e0b9953dcce217cf335f2938c583783", + "fields": { + "code_commune_insee": "62808", + "nom_de_la_commune": "TENEUR", + "code_postal": "62134", + "coordonnees_gps": [ + 50.4521719287, + 2.22043017933 + ], + "libelle_d_acheminement": "TENEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22043017933, + 50.4521719287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e480be8d57981361a034d54b88c48e3d434a82ff", + "fields": { + "ligne_5": "LA VARENNE ST HILAIRE", + "code_commune_insee": "94068", + "libelle_d_acheminement": "ST MAUR DES FOSSES", + "code_postal": "94210", + "nom_de_la_commune": "ST MAUR DES FOSSES", + "coordonnees_gps": [ + 48.7990677797, + 2.49386450452 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49386450452, + 48.7990677797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e647987a28e672c8b3eb5ab5b1b54a5d9bdde991", + "fields": { + "code_commune_insee": "62813", + "nom_de_la_commune": "LA THIEULOYE", + "code_postal": "62130", + "coordonnees_gps": [ + 50.4137694617, + 2.43289315348 + ], + "libelle_d_acheminement": "LA THIEULOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43289315348, + 50.4137694617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f013695c4221fa8f4b8b2d0d329af95d99eaec92", + "fields": { + "ligne_5": "LES BRUYERES", + "code_commune_insee": "94071", + "libelle_d_acheminement": "SUCY EN BRIE", + "code_postal": "94370", + "nom_de_la_commune": "SUCY EN BRIE", + "coordonnees_gps": [ + 48.7656456593, + 2.5330560803 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5330560803, + 48.7656456593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9547c6c6e7c81439e29988446ee70f67917250a4", + "fields": { + "code_commune_insee": "62814", + "nom_de_la_commune": "THIEVRES", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1320744532, + 2.44789711987 + ], + "libelle_d_acheminement": "THIEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44789711987, + 50.1320744532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9c3e838f4b32f3820462c6ee00ddf8476f1cff8", + "fields": { + "code_commune_insee": "94078", + "nom_de_la_commune": "VILLENEUVE ST GEORGES", + "code_postal": "94190", + "coordonnees_gps": [ + 48.7413809637, + 2.448998846 + ], + "libelle_d_acheminement": "VILLENEUVE ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.448998846, + 48.7413809637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb62893c8075d6da84a01566f037dc0b3a9f78dd", + "fields": { + "code_commune_insee": "62816", + "nom_de_la_commune": "TILLOY LES HERMAVILLE", + "code_postal": "62690", + "coordonnees_gps": [ + 50.3286181773, + 2.55390925943 + ], + "libelle_d_acheminement": "TILLOY LES HERMAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55390925943, + 50.3286181773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2563366e523f70d79cb3f6900acbddcb2a5cc0b7", + "fields": { + "code_commune_insee": "95002", + "nom_de_la_commune": "ABLEIGES", + "code_postal": "95450", + "coordonnees_gps": [ + 49.085772994, + 1.97486524588 + ], + "libelle_d_acheminement": "ABLEIGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97486524588, + 49.085772994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06fdc9d8d7e468349a621af0d9d166170401f8c5", + "fields": { + "code_commune_insee": "62817", + "nom_de_la_commune": "TILLOY LES MOFFLAINES", + "code_postal": "62217", + "coordonnees_gps": [ + 50.2772825816, + 2.82150381922 + ], + "libelle_d_acheminement": "TILLOY LES MOFFLAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82150381922, + 50.2772825816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ffa4c9f637c0a20ac6a5cd9c9335c471131708", + "fields": { + "code_commune_insee": "95008", + "nom_de_la_commune": "AINCOURT", + "code_postal": "95510", + "coordonnees_gps": [ + 49.0728443021, + 1.77403416153 + ], + "libelle_d_acheminement": "AINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77403416153, + 49.0728443021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "307a8d651b8f3d469ab1ee2de37bc2c573273120", + "fields": { + "code_commune_insee": "62826", + "nom_de_la_commune": "LE TOUQUET PARIS PLAGE", + "code_postal": "62520", + "coordonnees_gps": [ + 50.5083984501, + 1.59923820583 + ], + "libelle_d_acheminement": "LE TOUQUET PARIS PLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59923820583, + 50.5083984501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22a6b1b6501659a44d2cf0a84586a395c7e510c5", + "fields": { + "code_commune_insee": "95012", + "nom_de_la_commune": "AMENUCOURT", + "code_postal": "95510", + "coordonnees_gps": [ + 49.11033118, + 1.65004984269 + ], + "libelle_d_acheminement": "AMENUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65004984269, + 49.11033118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce60e98f2eacefc5848452d84a5fc99da297120c", + "fields": { + "code_commune_insee": "62829", + "nom_de_la_commune": "LE TRANSLOY", + "code_postal": "62450", + "coordonnees_gps": [ + 50.0502514612, + 2.89232344 + ], + "libelle_d_acheminement": "LE TRANSLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89232344, + 50.0502514612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30cca9168cc13703b1923b2356c55d5a8dfe41ff", + "fields": { + "code_commune_insee": "95023", + "nom_de_la_commune": "ARRONVILLE", + "code_postal": "95810", + "coordonnees_gps": [ + 49.1740736985, + 2.1128755699 + ], + "libelle_d_acheminement": "ARRONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1128755699, + 49.1740736985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afbacae535f99924f4c8adbd06c8c85a71effa2e", + "fields": { + "code_commune_insee": "62834", + "nom_de_la_commune": "VACQUERIETTE ERQUIERES", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3228879351, + 2.07435637725 + ], + "libelle_d_acheminement": "VACQUERIETTE ERQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07435637725, + 50.3228879351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42880702b4d496e7fa8c657e4657354b6f387c7a", + "fields": { + "code_commune_insee": "95040", + "nom_de_la_commune": "AVERNES", + "code_postal": "95450", + "coordonnees_gps": [ + 49.0888264241, + 1.87003944746 + ], + "libelle_d_acheminement": "AVERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87003944746, + 49.0888264241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e7cb899b1b947c9c6988158395de197dd5e6720", + "fields": { + "code_commune_insee": "62858", + "nom_de_la_commune": "VILLERS LES CAGNICOURT", + "code_postal": "62182", + "coordonnees_gps": [ + 50.2253150593, + 3.01039978275 + ], + "libelle_d_acheminement": "VILLERS LES CAGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01039978275, + 50.2253150593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9f31e6ac04e5734767ec2897c22e8295c1cbd37", + "fields": { + "code_commune_insee": "95055", + "nom_de_la_commune": "BELLEFONTAINE", + "code_postal": "95270", + "coordonnees_gps": [ + 49.0925450079, + 2.46955814701 + ], + "libelle_d_acheminement": "BELLEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46955814701, + 49.0925450079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "222700a839ab6fba53fcb5b160a7a799ecf2aac6", + "fields": { + "code_commune_insee": "62860", + "nom_de_la_commune": "VILLERS SIR SIMON", + "code_postal": "62127", + "coordonnees_gps": [ + 50.3148651908, + 2.49209480845 + ], + "libelle_d_acheminement": "VILLERS SIR SIMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49209480845, + 50.3148651908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c1ae4a5ccc2e881b0aebcb953a40c64c6182305", + "fields": { + "code_commune_insee": "95088", + "nom_de_la_commune": "BONNEUIL EN FRANCE", + "code_postal": "95500", + "coordonnees_gps": [ + 48.9651461518, + 2.43492885419 + ], + "libelle_d_acheminement": "BONNEUIL EN FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43492885419, + 48.9651461518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5d05785940b8effa62e03dd3254e5728838deed", + "fields": { + "code_commune_insee": "62872", + "nom_de_la_commune": "WAMIN", + "code_postal": "62770", + "coordonnees_gps": [ + 50.4153161017, + 2.06205464514 + ], + "libelle_d_acheminement": "WAMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06205464514, + 50.4153161017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d0473f32a77d7ec4f9116f535900beabae3216d", + "fields": { + "code_commune_insee": "95091", + "nom_de_la_commune": "BOUFFEMONT", + "code_postal": "95570", + "coordonnees_gps": [ + 49.04157253, + 2.29838457991 + ], + "libelle_d_acheminement": "BOUFFEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29838457991, + 49.04157253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44fb26a0e2935d9269980059e4a080b82611cfed", + "fields": { + "code_commune_insee": "62878", + "nom_de_la_commune": "WARLUS", + "code_postal": "62123", + "coordonnees_gps": [ + 50.2793115608, + 2.66486908357 + ], + "libelle_d_acheminement": "WARLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66486908357, + 50.2793115608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74ac28da8baf4e45cdd8fc14253ff5ad8b0b3edb", + "fields": { + "code_commune_insee": "95127", + "nom_de_la_commune": "CERGY", + "code_postal": "95000", + "coordonnees_gps": [ + 49.0401131567, + 2.05082123731 + ], + "libelle_d_acheminement": "CERGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05082123731, + 49.0401131567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d2d1597b2a9f1dd9dc916fabbc8acddd21c56ea", + "fields": { + "code_commune_insee": "62891", + "nom_de_la_commune": "WILLENCOURT", + "code_postal": "62390", + "coordonnees_gps": [ + 50.2394266639, + 2.07766867117 + ], + "libelle_d_acheminement": "WILLENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07766867117, + 50.2394266639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef030f5801ddcfbaeaf2b9ecc054cb5b2adf5010", + "fields": { + "code_commune_insee": "95150", + "nom_de_la_commune": "CHAUSSY", + "code_postal": "95710", + "coordonnees_gps": [ + 49.1134565492, + 1.70351386398 + ], + "libelle_d_acheminement": "CHAUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70351386398, + 49.1134565492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75461edee5036956879422aa6b53d932211ea85f", + "fields": { + "code_commune_insee": "62898", + "nom_de_la_commune": "WISQUES", + "code_postal": "62219", + "coordonnees_gps": [ + 50.7269504581, + 2.1911996601 + ], + "libelle_d_acheminement": "WISQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1911996601, + 50.7269504581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "484591ebe9a1fb47390ed3aaa71c23c550e3cc20", + "fields": { + "code_commune_insee": "95197", + "nom_de_la_commune": "DEUIL LA BARRE", + "code_postal": "95170", + "coordonnees_gps": [ + 48.9712690171, + 2.32616290144 + ], + "libelle_d_acheminement": "DEUIL LA BARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32616290144, + 48.9712690171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75482d78f0e8da21d259a566137ed687a540e899", + "fields": { + "code_commune_insee": "63001", + "nom_de_la_commune": "AIGUEPERSE", + "code_postal": "63260", + "coordonnees_gps": [ + 46.014833908, + 3.2012859723 + ], + "libelle_d_acheminement": "AIGUEPERSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2012859723, + 46.014833908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1124982f0b731e371c5f29d269950376a85a8e4e", + "fields": { + "code_commune_insee": "95210", + "nom_de_la_commune": "ENGHIEN LES BAINS", + "code_postal": "95880", + "coordonnees_gps": [ + 48.97016048, + 2.30485955429 + ], + "libelle_d_acheminement": "ENGHIEN LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30485955429, + 48.97016048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "758e1e82de2ee027577bcb18643be897e55d9e0e", + "fields": { + "code_commune_insee": "63011", + "nom_de_la_commune": "ARS LES FAVETS", + "code_postal": "63700", + "coordonnees_gps": [ + 46.2002650376, + 2.74850375721 + ], + "libelle_d_acheminement": "ARS LES FAVETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74850375721, + 46.2002650376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "259481a0d3fcb8146d53f7d3beb26437af4053af", + "fields": { + "code_commune_insee": "95213", + "nom_de_la_commune": "EPIAIS RHUS", + "code_postal": "95810", + "coordonnees_gps": [ + 49.1238363223, + 2.07311253247 + ], + "libelle_d_acheminement": "EPIAIS RHUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07311253247, + 49.1238363223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "945bde044e4f381461d8465d1146dbf14350878e", + "fields": { + "code_commune_insee": "63023", + "nom_de_la_commune": "AUZELLES", + "code_postal": "63590", + "coordonnees_gps": [ + 45.6068543824, + 3.51902613907 + ], + "libelle_d_acheminement": "AUZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51902613907, + 45.6068543824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae0ca3915b065ea530d5660f9f8a56ab14f44702", + "fields": { + "code_commune_insee": "95219", + "nom_de_la_commune": "ERMONT", + "code_postal": "95120", + "coordonnees_gps": [ + 48.98824217, + 2.25662443737 + ], + "libelle_d_acheminement": "ERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25662443737, + 48.98824217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bba4d8e3be3002f4f5e1be94edaf62568111341", + "fields": { + "code_commune_insee": "63027", + "nom_de_la_commune": "BAFFIE", + "code_postal": "63600", + "coordonnees_gps": [ + 45.4768637549, + 3.82808996896 + ], + "libelle_d_acheminement": "BAFFIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82808996896, + 45.4768637549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22556493114952dd0a55f365341bbd84c3741691", + "fields": { + "code_commune_insee": "95241", + "nom_de_la_commune": "FONTENAY EN PARISIS", + "code_postal": "95190", + "coordonnees_gps": [ + 49.0501196631, + 2.44539371928 + ], + "libelle_d_acheminement": "FONTENAY EN PARISIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44539371928, + 49.0501196631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15b5baa7899e3937b9a183aa630724491acb84de", + "fields": { + "code_commune_insee": "63029", + "nom_de_la_commune": "BANSAT", + "code_postal": "63570", + "coordonnees_gps": [ + 45.4834504429, + 3.3603356252 + ], + "libelle_d_acheminement": "BANSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3603356252, + 45.4834504429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0ab0d8fb525fbfbc2ea6ce6577c45efde8a469f", + "fields": { + "code_commune_insee": "95256", + "nom_de_la_commune": "FREPILLON", + "code_postal": "95740", + "coordonnees_gps": [ + 49.0501306912, + 2.20489899147 + ], + "libelle_d_acheminement": "FREPILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20489899147, + 49.0501306912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2df3d643e5b26165d9659941b08735693eef95b", + "fields": { + "code_commune_insee": "63032", + "nom_de_la_commune": "BEAUMONT", + "code_postal": "63110", + "coordonnees_gps": [ + 45.7498745868, + 3.08667875235 + ], + "libelle_d_acheminement": "BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08667875235, + 45.7498745868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a2077aba2ab64e4d65fad7210e112b01cd52ad6", + "fields": { + "code_commune_insee": "95257", + "nom_de_la_commune": "LA FRETTE SUR SEINE", + "code_postal": "95530", + "coordonnees_gps": [ + 48.9745244717, + 2.17786777518 + ], + "libelle_d_acheminement": "LA FRETTE SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17786777518, + 48.9745244717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5fdcf3ca2fa9e143a30bd0a8ea6cb13299ad75e", + "fields": { + "code_commune_insee": "63034", + "nom_de_la_commune": "BEAUREGARD L EVEQUE", + "code_postal": "63116", + "coordonnees_gps": [ + 45.8137742226, + 3.29884607281 + ], + "libelle_d_acheminement": "BEAUREGARD L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29884607281, + 45.8137742226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ded828c2523dc3b058abdfa74b7fa2066359f51", + "fields": { + "code_commune_insee": "95258", + "nom_de_la_commune": "FROUVILLE", + "code_postal": "95690", + "coordonnees_gps": [ + 49.1574870013, + 2.14659092833 + ], + "libelle_d_acheminement": "FROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14659092833, + 49.1574870013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d54eb2d83fa470d4f0ff40b0d4ab098562dd4b60", + "fields": { + "code_commune_insee": "63037", + "nom_de_la_commune": "BERTIGNAT", + "code_postal": "63480", + "coordonnees_gps": [ + 45.6174754909, + 3.69083488933 + ], + "libelle_d_acheminement": "BERTIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69083488933, + 45.6174754909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ffa3db9ad99a47e2ab1df98e3ddbc9a16282a80", + "fields": { + "code_commune_insee": "95282", + "nom_de_la_commune": "GOUZANGREZ", + "code_postal": "95450", + "coordonnees_gps": [ + 49.113864439, + 1.90836879616 + ], + "libelle_d_acheminement": "GOUZANGREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90836879616, + 49.113864439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6f492d47df093ed49e1a47eb7dfc8da099c530a", + "fields": { + "ligne_5": "SUPER BESSE", + "code_commune_insee": "63038", + "libelle_d_acheminement": "BESSE ET ST ANASTAISE", + "code_postal": "63610", + "nom_de_la_commune": "BESSE ET ST ANASTAISE", + "coordonnees_gps": [ + 45.4967792648, + 2.90703862997 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90703862997, + 45.4967792648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad6fc2d894697036d65f9c1d2178ea09f6d1b1dc", + "fields": { + "code_commune_insee": "95303", + "nom_de_la_commune": "LE HEAULME", + "code_postal": "95640", + "coordonnees_gps": [ + 49.1669918244, + 2.00040147185 + ], + "libelle_d_acheminement": "LE HEAULME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00040147185, + 49.1669918244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa6becb5f773bdc367f25c0a93c93cf20447685c", + "fields": { + "code_commune_insee": "63040", + "nom_de_la_commune": "BILLOM", + "code_postal": "63160", + "coordonnees_gps": [ + 45.7251184657, + 3.32304115809 + ], + "libelle_d_acheminement": "BILLOM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32304115809, + 45.7251184657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1051c214c46132873ff88b2d562bef1bd4ee83e", + "fields": { + "code_commune_insee": "95304", + "nom_de_la_commune": "HEDOUVILLE", + "code_postal": "95690", + "coordonnees_gps": [ + 49.1584963577, + 2.17768034545 + ], + "libelle_d_acheminement": "HEDOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17768034545, + 49.1584963577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03189ddddf162fb7a35c34907a8311d0fd5406c5", + "fields": { + "code_commune_insee": "63058", + "nom_de_la_commune": "BULHON", + "code_postal": "63350", + "coordonnees_gps": [ + 45.8848012313, + 3.39133454384 + ], + "libelle_d_acheminement": "BULHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39133454384, + 45.8848012313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "332efef854a7d81f3dac471e3f1b9f8bae9b3f03", + "fields": { + "code_commune_insee": "95309", + "nom_de_la_commune": "HODENT", + "code_postal": "95420", + "coordonnees_gps": [ + 49.1421704888, + 1.762430658 + ], + "libelle_d_acheminement": "HODENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.762430658, + 49.1421704888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1bda5fee55d33b404e7fde93806e6291f480c36", + "fields": { + "code_commune_insee": "63062", + "nom_de_la_commune": "BUXIERES SOUS MONTAIGUT", + "code_postal": "63700", + "coordonnees_gps": [ + 46.2017165035, + 2.8370551426 + ], + "libelle_d_acheminement": "BUXIERES SOUS MONTAIGUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8370551426, + 46.2017165035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45699a2ab40402f01ccb4777a7d3db4f2ee997d0", + "fields": { + "ligne_5": "JOUY LA FONTAINE", + "code_commune_insee": "95323", + "libelle_d_acheminement": "JOUY LE MOUTIER", + "code_postal": "95280", + "nom_de_la_commune": "JOUY LE MOUTIER", + "coordonnees_gps": [ + 49.0113625056, + 2.03408317867 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03408317867, + 49.0113625056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8072721fa03d9a486595a96a64b70ace83f23043", + "fields": { + "code_commune_insee": "63065", + "nom_de_la_commune": "CEILLOUX", + "code_postal": "63520", + "coordonnees_gps": [ + 45.6552162831, + 3.51622303139 + ], + "libelle_d_acheminement": "CEILLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51622303139, + 45.6552162831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1886732d433e553dc1c28fafe8c89113dde538fa", + "fields": { + "code_commune_insee": "95355", + "nom_de_la_commune": "MAGNY EN VEXIN", + "code_postal": "95420", + "coordonnees_gps": [ + 49.158617564, + 1.81039322129 + ], + "libelle_d_acheminement": "MAGNY EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81039322129, + 49.158617564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91572be311e29ae6d9f5c7216af0e57e34d6a7c9", + "fields": { + "ligne_5": "BOISSEJOUR", + "code_commune_insee": "63070", + "libelle_d_acheminement": "CEYRAT", + "code_postal": "63122", + "nom_de_la_commune": "CEYRAT", + "coordonnees_gps": [ + 45.7385665795, + 3.06427177861 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06427177861, + 45.7385665795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62f170ae13dbc19bb8845e94e34611aea2483211", + "fields": { + "code_commune_insee": "95387", + "nom_de_la_commune": "MENOUVILLE", + "code_postal": "95810", + "coordonnees_gps": [ + 49.1532355635, + 2.10779433987 + ], + "libelle_d_acheminement": "MENOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10779433987, + 49.1532355635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cba1a6654ff559a46153ca9c610596f4e81db8c", + "fields": { + "code_commune_insee": "63072", + "nom_de_la_commune": "CHABRELOCHE", + "code_postal": "63250", + "coordonnees_gps": [ + 45.8711155066, + 3.69927199533 + ], + "libelle_d_acheminement": "CHABRELOCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69927199533, + 45.8711155066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bc1abd0f412345cb1d571902baf68aee806610a", + "fields": { + "code_commune_insee": "95447", + "nom_de_la_commune": "NEUILLY EN VEXIN", + "code_postal": "95640", + "coordonnees_gps": [ + 49.1737847677, + 1.98023153343 + ], + "libelle_d_acheminement": "NEUILLY EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98023153343, + 49.1737847677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "684767a7249520849768f71a49802d8883d4a6c2", + "fields": { + "ligne_5": "PAUGNAT", + "code_commune_insee": "63092", + "libelle_d_acheminement": "CHARBONNIERES LES VARENNES", + "code_postal": "63410", + "nom_de_la_commune": "CHARBONNIERES LES VARENNES", + "coordonnees_gps": [ + 45.8981076915, + 2.98002956187 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98002956187, + 45.8981076915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24bf45c048bafd7067c1d3126ef2e775ca814a32", + "fields": { + "code_commune_insee": "95480", + "nom_de_la_commune": "PARMAIN", + "code_postal": "95620", + "coordonnees_gps": [ + 49.1228699088, + 2.201277887 + ], + "libelle_d_acheminement": "PARMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.201277887, + 49.1228699088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c5d27c6a6a485dd74364f06a9a916a7c58cc8f5", + "fields": { + "code_commune_insee": "63096", + "nom_de_la_commune": "CHAS", + "code_postal": "63160", + "coordonnees_gps": [ + 45.7472569761, + 3.30727070935 + ], + "libelle_d_acheminement": "CHAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30727070935, + 45.7472569761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "453ee0f02da7411b771c91e63ad6428a556d9083", + "fields": { + "code_commune_insee": "95500", + "nom_de_la_commune": "PONTOISE", + "code_postal": "95300", + "coordonnees_gps": [ + 49.0513737853, + 2.09487928948 + ], + "libelle_d_acheminement": "PONTOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09487928948, + 49.0513737853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d2690233270db4132d9c41fea1071aaf909e6ca", + "fields": { + "code_commune_insee": "63097", + "nom_de_la_commune": "CHASSAGNE", + "code_postal": "63320", + "coordonnees_gps": [ + 45.492969211, + 3.06150388982 + ], + "libelle_d_acheminement": "CHASSAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06150388982, + 45.492969211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b69c0e107a45c039fa8e8ac25ed8de05d5535be", + "fields": { + "code_commune_insee": "95527", + "nom_de_la_commune": "ROISSY EN FRANCE", + "code_postal": "95700", + "coordonnees_gps": [ + 49.00660444, + 2.51417743519 + ], + "libelle_d_acheminement": "ROISSY EN FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51417743519, + 49.00660444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8103fa570fa6c4089f38e7172696003895d245c", + "fields": { + "code_commune_insee": "63099", + "nom_de_la_commune": "CHATEAUGAY", + "code_postal": "63119", + "coordonnees_gps": [ + 45.8537260918, + 3.09327050267 + ], + "libelle_d_acheminement": "CHATEAUGAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09327050267, + 45.8537260918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3abad3f2133b09a12f8bf7459c9e92e11c26f2af", + "fields": { + "code_commune_insee": "95529", + "nom_de_la_commune": "RONQUEROLLES", + "code_postal": "95340", + "coordonnees_gps": [ + 49.1677039084, + 2.21341666638 + ], + "libelle_d_acheminement": "RONQUEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21341666638, + 49.1677039084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a3dc26c30af4acceac1ad825410e53c4ab90228", + "fields": { + "code_commune_insee": "63103", + "nom_de_la_commune": "CHATEL GUYON", + "code_postal": "63140", + "coordonnees_gps": [ + 45.9206993185, + 3.0632143777 + ], + "libelle_d_acheminement": "CHATEL GUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0632143777, + 45.9206993185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3e44214d6980a5738d04a505c47edaf6bdb38f1", + "fields": { + "code_commune_insee": "95543", + "nom_de_la_commune": "ST CYR EN ARTHIES", + "code_postal": "95510", + "coordonnees_gps": [ + 49.059130605, + 1.74195790474 + ], + "libelle_d_acheminement": "ST CYR EN ARTHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74195790474, + 49.059130605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "029820d07fdfe2f2bcccb91a3ca2f6738d7b0dcd", + "fields": { + "code_commune_insee": "63109", + "nom_de_la_commune": "CHIDRAC", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5594914487, + 3.15044914308 + ], + "libelle_d_acheminement": "CHIDRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15044914308, + 45.5594914487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3570c3319522d7bd0c75596fd923398346a3f5d", + "fields": { + "code_commune_insee": "95584", + "nom_de_la_commune": "SANTEUIL", + "code_postal": "95640", + "coordonnees_gps": [ + 49.1295034535, + 1.95810304373 + ], + "libelle_d_acheminement": "SANTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95810304373, + 49.1295034535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8900d4456bd2036d774d9a2d451f556d3b5f85ab", + "fields": { + "code_commune_insee": "63110", + "nom_de_la_commune": "CISTERNES LA FORET", + "code_postal": "63740", + "coordonnees_gps": [ + 45.808024859, + 2.71463037162 + ], + "libelle_d_acheminement": "CISTERNES LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71463037162, + 45.808024859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a6fc7dfbf6b486f387422dff99b5425ff73bf25", + "fields": { + "code_commune_insee": "95598", + "nom_de_la_commune": "SOISY SOUS MONTMORENCY", + "code_postal": "95230", + "coordonnees_gps": [ + 48.9884077875, + 2.30049978342 + ], + "libelle_d_acheminement": "SOISY SOUS MONTMORENCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30049978342, + 48.9884077875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "467357fea09219ced1f4b9f105b38b1a55a18479", + "fields": { + "code_commune_insee": "63111", + "nom_de_la_commune": "CLEMENSAT", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5641956437, + 3.10521274351 + ], + "libelle_d_acheminement": "CLEMENSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10521274351, + 45.5641956437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6876ea063af4fc396063317873f0038e96001b0", + "fields": { + "code_commune_insee": "95611", + "nom_de_la_commune": "THEUVILLE", + "code_postal": "95810", + "coordonnees_gps": [ + 49.1567965357, + 2.0691663538 + ], + "libelle_d_acheminement": "THEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0691663538, + 49.1567965357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ff90ee86df93d92b089bc79e32898320d427bf2", + "fields": { + "code_commune_insee": "63112", + "nom_de_la_commune": "CLERLANDE", + "code_postal": "63720", + "coordonnees_gps": [ + 45.916303528, + 3.19013272843 + ], + "libelle_d_acheminement": "CLERLANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19013272843, + 45.916303528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c29a715b02df4a73d720e43ca3ab0537e39a00c", + "fields": { + "code_commune_insee": "95628", + "nom_de_la_commune": "VALMONDOIS", + "code_postal": "95760", + "coordonnees_gps": [ + 49.0976500716, + 2.18016319535 + ], + "libelle_d_acheminement": "VALMONDOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18016319535, + 49.0976500716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3871560cc0922c2fd70d5d732a681cd352a177a", + "fields": { + "code_commune_insee": "63114", + "nom_de_la_commune": "COLLANGES", + "code_postal": "63340", + "coordonnees_gps": [ + 45.435304448, + 3.21485301473 + ], + "libelle_d_acheminement": "COLLANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21485301473, + 45.435304448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32f75c6d8a37810d44d7429172257b4b46062991", + "fields": { + "code_commune_insee": "95633", + "nom_de_la_commune": "VAUDHERLAND", + "code_postal": "95500", + "coordonnees_gps": [ + 49.0004967295, + 2.48642956224 + ], + "libelle_d_acheminement": "VAUDHERLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48642956224, + 49.0004967295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dbdff5b7a8ee9fd148480ab5a90568910073c41", + "fields": { + "code_commune_insee": "63118", + "nom_de_la_commune": "CONDAT EN COMBRAILLE", + "code_postal": "63380", + "coordonnees_gps": [ + 45.8621808314, + 2.56600859259 + ], + "libelle_d_acheminement": "CONDAT EN COMBRAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56600859259, + 45.8621808314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8801e4b6ba07968ad6b65538fc20fa458a60cd8", + "fields": { + "code_commune_insee": "95652", + "nom_de_la_commune": "VIARMES", + "code_postal": "95270", + "coordonnees_gps": [ + 49.1231107932, + 2.37799676025 + ], + "libelle_d_acheminement": "VIARMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37799676025, + 49.1231107932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73e14953919667f4e05c8c1d9553484970861cde", + "fields": { + "code_commune_insee": "63120", + "nom_de_la_commune": "CORENT", + "code_postal": "63730", + "coordonnees_gps": [ + 45.6605122795, + 3.19265515129 + ], + "libelle_d_acheminement": "CORENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19265515129, + 45.6605122795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d99b7fe404d7424aa7a4d3990c490b17e933865a", + "fields": { + "code_commune_insee": "95656", + "nom_de_la_commune": "VIENNE EN ARTHIES", + "code_postal": "95510", + "coordonnees_gps": [ + 49.0664410063, + 1.72229012946 + ], + "libelle_d_acheminement": "VIENNE EN ARTHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72229012946, + 49.0664410063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dd4ed88f5724d3872503adc4f8363a0c0a5ad71", + "fields": { + "code_commune_insee": "63126", + "nom_de_la_commune": "LE CREST", + "code_postal": "63450", + "coordonnees_gps": [ + 45.6887173351, + 3.13282364947 + ], + "libelle_d_acheminement": "LE CREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13282364947, + 45.6887173351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b07ddfcd0e02683a285505c41534ae943a2d9a3", + "fields": { + "code_commune_insee": "97102", + "nom_de_la_commune": "ANSE BERTRAND", + "code_postal": "97121", + "coordonnees_gps": [ + 16.4655608425, + -61.4616707348 + ], + "libelle_d_acheminement": "ANSE BERTRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.4616707348, + 16.4655608425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "064f4166203f2d5013a75a6494cfb5d18ea3ca30", + "fields": { + "code_commune_insee": "63128", + "nom_de_la_commune": "CREVANT LAVEINE", + "code_postal": "63350", + "coordonnees_gps": [ + 45.90236787, + 3.4014570747 + ], + "libelle_d_acheminement": "CREVANT LAVEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4014570747, + 45.90236787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4685986e6e279dc650bbcb782a6aaa5961b17dff", + "fields": { + "ligne_5": "PIGEON", + "code_commune_insee": "97106", + "libelle_d_acheminement": "BOUILLANTE", + "code_postal": "97125", + "nom_de_la_commune": "BOUILLANTE", + "coordonnees_gps": [ + 16.1437220237, + -61.754179331 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.754179331, + 16.1437220237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "949ed2d351b490c829d5a8d29a2f16323c6d1a30", + "fields": { + "code_commune_insee": "63141", + "nom_de_la_commune": "DURTOL", + "code_postal": "63830", + "coordonnees_gps": [ + 45.7965429295, + 3.05159715299 + ], + "libelle_d_acheminement": "DURTOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05159715299, + 45.7965429295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b56c1b3e8b924c81da5bbb79b8db8e95a63d214", + "fields": { + "code_commune_insee": "97107", + "nom_de_la_commune": "CAPESTERRE BELLE EAU", + "code_postal": "97130", + "coordonnees_gps": [ + 16.0553416101, + -61.6117007507 + ], + "libelle_d_acheminement": "CAPESTERRE BELLE EAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.6117007507, + 16.0553416101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f03f27e3b9c0797c965532a86fbb6501aba6a6eb", + "fields": { + "code_commune_insee": "63142", + "nom_de_la_commune": "ECHANDELYS", + "code_postal": "63980", + "coordonnees_gps": [ + 45.5469529567, + 3.53131238334 + ], + "libelle_d_acheminement": "ECHANDELYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53131238334, + 45.5469529567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fc83c26797692f2f3ab0744b347964a903c1a00", + "fields": { + "ligne_5": "BANANIER", + "code_commune_insee": "97107", + "libelle_d_acheminement": "CAPESTERRE BELLE EAU", + "code_postal": "97130", + "nom_de_la_commune": "CAPESTERRE BELLE EAU", + "coordonnees_gps": [ + 16.0553416101, + -61.6117007507 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.6117007507, + 16.0553416101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "680d2897009380b105a45af8d47ded3419b487ef", + "fields": { + "code_commune_insee": "63143", + "nom_de_la_commune": "EFFIAT", + "code_postal": "63260", + "coordonnees_gps": [ + 46.0444270814, + 3.26882771667 + ], + "libelle_d_acheminement": "EFFIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26882771667, + 46.0444270814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aa3ff2d36c2c7d9966ace19a9f5403d95e06c87", + "fields": { + "code_commune_insee": "97109", + "nom_de_la_commune": "GOURBEYRE", + "code_postal": "97113", + "coordonnees_gps": [ + 15.9939024439, + -61.6864178604 + ], + "libelle_d_acheminement": "GOURBEYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.6864178604, + 15.9939024439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "793d02eb78b2528c5bf08bced69d9381c743d187", + "fields": { + "code_commune_insee": "63144", + "nom_de_la_commune": "EGLISENEUVE D ENTRAIGUES", + "code_postal": "63850", + "coordonnees_gps": [ + 45.4211832681, + 2.82270295289 + ], + "libelle_d_acheminement": "EGLISENEUVE D ENTRAIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82270295289, + 45.4211832681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f5128e954288e744d69f4b824cec94b7e22e96a", + "fields": { + "ligne_5": "LES MANGLES", + "code_commune_insee": "97119", + "libelle_d_acheminement": "PETIT CANAL", + "code_postal": "97131", + "nom_de_la_commune": "PETIT CANAL", + "coordonnees_gps": [ + 16.3893559546, + -61.4497634927 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.4497634927, + 16.3893559546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "858796139dfd195682cbd514a8fc1d782fbaa52f", + "fields": { + "code_commune_insee": "63154", + "nom_de_la_commune": "ESPIRAT", + "code_postal": "63160", + "coordonnees_gps": [ + 45.7531766214, + 3.3349537305 + ], + "libelle_d_acheminement": "ESPIRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3349537305, + 45.7531766214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b35187854a8963eb40977ab7f34c53397ceca0f3", + "fields": { + "code_commune_insee": "97122", + "nom_de_la_commune": "PORT LOUIS", + "code_postal": "97117", + "coordonnees_gps": [ + 16.4263736562, + -61.4965320062 + ], + "libelle_d_acheminement": "PORT LOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.4965320062, + 16.4263736562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1d6c15ec25d7ae122b3dd9fdf23416996f980ba", + "fields": { + "code_commune_insee": "63155", + "nom_de_la_commune": "ESTANDEUIL", + "code_postal": "63520", + "coordonnees_gps": [ + 45.6814605393, + 3.44431665529 + ], + "libelle_d_acheminement": "ESTANDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44431665529, + 45.6814605393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3297074a2acf56a094062ad1d4f29e3ec14ade3", + "fields": { + "code_commune_insee": "97130", + "nom_de_la_commune": "TERRE DE BAS", + "code_postal": "97136", + "coordonnees_gps": [ + 15.8543976309, + -61.6341060684 + ], + "libelle_d_acheminement": "TERRE DE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.6341060684, + 15.8543976309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8f37bc49e75ae229fa43572f807afc2e756b94a", + "fields": { + "ligne_5": "AULHAT ST PRIVAT", + "code_commune_insee": "63160", + "libelle_d_acheminement": "AULHAT FLAT", + "code_postal": "63500", + "nom_de_la_commune": "AULHAT FLAT", + "coordonnees_gps": [ + 45.5717634419, + 3.294046648 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.294046648, + 45.5717634419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc46970454382b10b0b8ed308b3d1b98625b8066", + "fields": { + "code_commune_insee": "97133", + "nom_de_la_commune": "VIEUX FORT", + "code_postal": "97141", + "coordonnees_gps": [ + 15.9602228219, + -61.6945194162 + ], + "libelle_d_acheminement": "VIEUX FORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.6945194162, + 15.9602228219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd1e84927413094fcd8df77fe697f64b451488c6", + "fields": { + "ligne_5": "FLAT", + "code_commune_insee": "63160", + "libelle_d_acheminement": "AULHAT FLAT", + "code_postal": "63500", + "nom_de_la_commune": "AULHAT FLAT", + "coordonnees_gps": [ + 45.5717634419, + 3.294046648 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.294046648, + 45.5717634419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d777b530c22e35c56b0fb382cb207675c5c523e8", + "fields": { + "code_commune_insee": "97202", + "nom_de_la_commune": "LES ANSES D ARLET", + "code_postal": "97217", + "coordonnees_gps": [ + 14.4993591112, + -61.0720993976 + ], + "libelle_d_acheminement": "LES ANSES D ARLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.0720993976, + 14.4993591112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd093db1ca383a1ce47abf7e5dc575ee9b2a0fee", + "fields": { + "code_commune_insee": "63165", + "nom_de_la_commune": "GIAT", + "code_postal": "63620", + "coordonnees_gps": [ + 45.7993582147, + 2.47685317783 + ], + "libelle_d_acheminement": "GIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47685317783, + 45.7993582147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cda304a07957fcd17cf6edc2ef4f5ea9eb3f8bef", + "fields": { + "code_commune_insee": "97204", + "nom_de_la_commune": "LE CARBET", + "code_postal": "97221", + "coordonnees_gps": [ + 14.7110039815, + -61.1647565483 + ], + "libelle_d_acheminement": "LE CARBET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.1647565483, + 14.7110039815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6294d78691ec7493e465870db749ac2b53f1e581", + "fields": { + "code_commune_insee": "63166", + "nom_de_la_commune": "GIGNAT", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4865085499, + 3.21841465193 + ], + "libelle_d_acheminement": "GIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21841465193, + 45.4865085499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d69c5f142ddcef691a4c1ba9a3e3f0959da386ea", + "fields": { + "code_commune_insee": "97209", + "nom_de_la_commune": "FORT DE FRANCE", + "code_postal": "97200", + "coordonnees_gps": [ + 14.6411114389, + -61.0691889244 + ], + "libelle_d_acheminement": "FORT DE FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.0691889244, + 14.6411114389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "954ef23c4702f44ae3de5e9230ba3322c980060a", + "fields": { + "code_commune_insee": "63168", + "nom_de_la_commune": "GLAINE MONTAIGUT", + "code_postal": "63160", + "coordonnees_gps": [ + 45.7509787495, + 3.38638176937 + ], + "libelle_d_acheminement": "GLAINE MONTAIGUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38638176937, + 45.7509787495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21361c78086ec058b0ac9d7859292d72775a71ee", + "fields": { + "code_commune_insee": "97209", + "nom_de_la_commune": "FORT DE FRANCE", + "code_postal": "97234", + "coordonnees_gps": [ + 14.6411114389, + -61.0691889244 + ], + "libelle_d_acheminement": "FORT DE FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.0691889244, + 14.6411114389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c0e664d44ffb82ba13d3c8c6055952b23f90908", + "fields": { + "code_commune_insee": "63170", + "nom_de_la_commune": "LA GOUTELLE", + "code_postal": "63230", + "coordonnees_gps": [ + 45.844471607, + 2.74702322197 + ], + "libelle_d_acheminement": "LA GOUTELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74702322197, + 45.844471607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeb479c6e9d637e20e2b799c13f4e4718f7df6c0", + "fields": { + "code_commune_insee": "97220", + "nom_de_la_commune": "RIVIERE PILOTE", + "code_postal": "97211", + "coordonnees_gps": [ + 14.5088319879, + -60.8978478666 + ], + "libelle_d_acheminement": "RIVIERE PILOTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8978478666, + 14.5088319879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2251cf19e84a9a8e9265c1379cdd4dd5aeea433f", + "fields": { + "code_commune_insee": "63171", + "nom_de_la_commune": "GOUTTIERES", + "code_postal": "63390", + "coordonnees_gps": [ + 46.0642315277, + 2.77508071716 + ], + "libelle_d_acheminement": "GOUTTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77508071716, + 46.0642315277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec2e7c6e59e1bf33869e40ac756ec7b9162d613c", + "fields": { + "code_commune_insee": "97223", + "nom_de_la_commune": "ST ESPRIT", + "code_postal": "97270", + "coordonnees_gps": [ + 14.5588947803, + -60.9216071826 + ], + "libelle_d_acheminement": "ST ESPRIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.9216071826, + 14.5588947803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f697457fbe0d368bdb047209e3b3a1eb5060a4b9", + "fields": { + "code_commune_insee": "63178", + "nom_de_la_commune": "ISSOIRE", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5455577894, + 3.24499324643 + ], + "libelle_d_acheminement": "ISSOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24499324643, + 45.5455577894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa551d7f1fde378fb60bb1e843b703968dc2d855", + "fields": { + "code_commune_insee": "97224", + "nom_de_la_commune": "ST JOSEPH", + "code_postal": "97212", + "coordonnees_gps": [ + 14.6764143687, + -61.0439024925 + ], + "libelle_d_acheminement": "ST JOSEPH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.0439024925, + 14.6764143687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5649537f37c30ada62dda80f26466a35df62e81e", + "fields": { + "code_commune_insee": "63181", + "nom_de_la_commune": "JOZERAND", + "code_postal": "63460", + "coordonnees_gps": [ + 46.0248498581, + 3.09894573011 + ], + "libelle_d_acheminement": "JOZERAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09894573011, + 46.0248498581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8f855ee331a2d0afcc63f7e4a0410794f63fe67", + "fields": { + "code_commune_insee": "97234", + "nom_de_la_commune": "BELLEFONTAINE", + "code_postal": "97222", + "coordonnees_gps": [ + 14.6763386824, + -61.1469824012 + ], + "libelle_d_acheminement": "BELLEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.1469824012, + 14.6763386824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb809eff3fa7b333531359ac331755005a05a688", + "fields": { + "code_commune_insee": "63182", + "nom_de_la_commune": "JUMEAUX", + "code_postal": "63570", + "coordonnees_gps": [ + 45.43440961, + 3.34825518447 + ], + "libelle_d_acheminement": "JUMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34825518447, + 45.43440961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b20eb90c424d0f56e5b8ff1b86c32e015e79e9d1", + "fields": { + "code_commune_insee": "97301", + "nom_de_la_commune": "REGINA", + "code_postal": "97390", + "coordonnees_gps": [ + 3.94091776652, + -52.5199269871 + ], + "libelle_d_acheminement": "REGINA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.5199269871, + 3.94091776652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a56c71fda6e106c9af78fdbccc3507f898ab265f", + "fields": { + "code_commune_insee": "63185", + "nom_de_la_commune": "LAMONTGIE", + "code_postal": "63570", + "coordonnees_gps": [ + 45.4745838897, + 3.32883718084 + ], + "libelle_d_acheminement": "LAMONTGIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32883718084, + 45.4745838897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c45de738276bd9f554cf030374c979560bf46649", + "fields": { + "code_commune_insee": "97303", + "nom_de_la_commune": "IRACOUBO", + "code_postal": "97350", + "coordonnees_gps": [ + 5.27291181428, + -53.3208385984 + ], + "libelle_d_acheminement": "IRACOUBO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.3208385984, + 5.27291181428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3c1c931883a3c291a8a436fcbca329fb84b75dc", + "fields": { + "code_commune_insee": "63189", + "nom_de_la_commune": "LAQUEUILLE", + "code_postal": "63820", + "coordonnees_gps": [ + 45.6509383388, + 2.74601941375 + ], + "libelle_d_acheminement": "LAQUEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74601941375, + 45.6509383388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3efade8b15f387a8cb2e56db8a568bdc0906f8b7", + "fields": { + "code_commune_insee": "97309", + "nom_de_la_commune": "REMIRE MONTJOLY", + "code_postal": "97354", + "coordonnees_gps": [ + 4.88437128593, + -52.2788402688 + ], + "libelle_d_acheminement": "REMIRE MONTJOLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.2788402688, + 4.88437128593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d2e72b7fb9816c7e390792acdafb6e3c1dd7120", + "fields": { + "code_commune_insee": "63197", + "nom_de_la_commune": "LISSEUIL", + "code_postal": "63440", + "coordonnees_gps": [ + 46.0569589114, + 2.93429771729 + ], + "libelle_d_acheminement": "LISSEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93429771729, + 46.0569589114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e559642ef70664e239a7e63ba6a07e64fdbebac", + "fields": { + "code_commune_insee": "97352", + "nom_de_la_commune": "SAUL", + "code_postal": "97314", + "coordonnees_gps": [ + 3.91592827293, + -53.3990290604 + ], + "libelle_d_acheminement": "SAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.3990290604, + 3.91592827293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecae767e4bb46d5d4b2f8029638ffef51e391605", + "fields": { + "code_commune_insee": "63201", + "nom_de_la_commune": "LUZILLAT", + "code_postal": "63350", + "coordonnees_gps": [ + 45.9588040696, + 3.38536946431 + ], + "libelle_d_acheminement": "LUZILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38536946431, + 45.9588040696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a88eaf1dbe05e15e7dcbfc8984daa1393f6f8223", + "fields": { + "code_commune_insee": "97362", + "nom_de_la_commune": "PAPAICHTON", + "code_postal": "97316", + "coordonnees_gps": [ + 4.04155401384, + -54.044235852 + ], + "libelle_d_acheminement": "POMPIDOU PAPA ICHTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.044235852, + 4.04155401384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2eb652b3931d1a9f99421d756bece5d99134094", + "fields": { + "code_commune_insee": "63205", + "nom_de_la_commune": "MANGLIEU", + "code_postal": "63270", + "coordonnees_gps": [ + 45.6117755124, + 3.35655394687 + ], + "libelle_d_acheminement": "MANGLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35655394687, + 45.6117755124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fe301bc74f63d915aa1adfb0a6c584f6c9cf9d6", + "fields": { + "code_commune_insee": "97406", + "nom_de_la_commune": "LA PLAINE DES PALMISTES", + "code_postal": "97431", + "coordonnees_gps": [ + -21.1521762495, + 55.6445268962 + ], + "libelle_d_acheminement": "LA PLAINE DES PALMISTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.6445268962, + -21.1521762495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8da28dd23c98ca07d370c4441de763c36e82e1ce", + "fields": { + "code_commune_insee": "63206", + "nom_de_la_commune": "MANZAT", + "code_postal": "63410", + "coordonnees_gps": [ + 45.944894562, + 2.94042540915 + ], + "libelle_d_acheminement": "MANZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94042540915, + 45.944894562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bd1f0e6a33908091858545068e537ebfee215d1", + "fields": { + "code_commune_insee": "97407", + "nom_de_la_commune": "LE PORT", + "code_postal": "97420", + "coordonnees_gps": [ + -20.9448851377, + 55.305326715 + ], + "libelle_d_acheminement": "LE PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.305326715, + -20.9448851377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da10f631cdd907e4616e7dbbaeda23a179c392d8", + "fields": { + "code_commune_insee": "63209", + "nom_de_la_commune": "MAREUGHEOL", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4840734656, + 3.16169878471 + ], + "libelle_d_acheminement": "MAREUGHEOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16169878471, + 45.4840734656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6f08c3d15b84a5807a3a544d9231178de62213d", + "fields": { + "ligne_5": "LE PORT MARINE", + "code_commune_insee": "97407", + "libelle_d_acheminement": "LE PORT", + "code_postal": "97420", + "nom_de_la_commune": "LE PORT", + "coordonnees_gps": [ + -20.9448851377, + 55.305326715 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.305326715, + -20.9448851377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24d02987a42486333c148b057e456b0131bc1df7", + "fields": { + "code_commune_insee": "63215", + "nom_de_la_commune": "MARTRES SUR MORGE", + "code_postal": "63720", + "coordonnees_gps": [ + 45.9367934098, + 3.21935374869 + ], + "libelle_d_acheminement": "MARTRES SUR MORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21935374869, + 45.9367934098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6664e1e5d1e7400284ee4c0d74ead8cf60ee65fa", + "fields": { + "ligne_5": "ST DENIS CAMELIAS", + "code_commune_insee": "97411", + "libelle_d_acheminement": "ST DENIS", + "code_postal": "97400", + "nom_de_la_commune": "ST DENIS", + "coordonnees_gps": [ + -20.9329708192, + 55.446867167 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.446867167, + -20.9329708192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52ac96c02b7c1e1b24fa678288963cbb8c0cfdfb", + "fields": { + "code_commune_insee": "63223", + "nom_de_la_commune": "MENAT", + "code_postal": "63560", + "coordonnees_gps": [ + 46.1110382839, + 2.89522075999 + ], + "libelle_d_acheminement": "MENAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89522075999, + 46.1110382839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63d455714e7036289ab01b258aafd050c4b0026c", + "fields": { + "ligne_5": "ST FRANCOIS", + "code_commune_insee": "97411", + "libelle_d_acheminement": "ST DENIS", + "code_postal": "97400", + "nom_de_la_commune": "ST DENIS", + "coordonnees_gps": [ + -20.9329708192, + 55.446867167 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.446867167, + -20.9329708192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "932630308aaa6b9308ecf0b632cfd960e3c206a4", + "fields": { + "code_commune_insee": "63225", + "nom_de_la_commune": "MESSEIX", + "code_postal": "63750", + "coordonnees_gps": [ + 45.6122699559, + 2.533971784 + ], + "libelle_d_acheminement": "MESSEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.533971784, + 45.6122699559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfe7a24df07bc2944ac95c396794b4f692044408", + "fields": { + "ligne_5": "MOUFIA", + "code_commune_insee": "97411", + "libelle_d_acheminement": "ST DENIS", + "code_postal": "97490", + "nom_de_la_commune": "ST DENIS", + "coordonnees_gps": [ + -20.9329708192, + 55.446867167 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.446867167, + -20.9329708192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fe936dc397d813dc542495017229eb3f777f2c7", + "fields": { + "ligne_5": "DALLET", + "code_commune_insee": "63226", + "libelle_d_acheminement": "MUR SUR ALLIER", + "code_postal": "63111", + "nom_de_la_commune": "MUR SUR ALLIER", + "coordonnees_gps": [ + 45.7490361428, + 3.24075330378 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24075330378, + 45.7490361428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad28981c07db9a6f9bb107a90466e145cb95aa8d", + "fields": { + "ligne_5": "ST DENIS CHAUDRON", + "code_commune_insee": "97411", + "libelle_d_acheminement": "ST DENIS", + "code_postal": "97490", + "nom_de_la_commune": "ST DENIS", + "coordonnees_gps": [ + -20.9329708192, + 55.446867167 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.446867167, + -20.9329708192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9373a84f9d96ea0c6050db5ab03e57ea43cd40f6", + "fields": { + "code_commune_insee": "63228", + "nom_de_la_commune": "MIREMONT", + "code_postal": "63380", + "coordonnees_gps": [ + 45.9076476666, + 2.71763320469 + ], + "libelle_d_acheminement": "MIREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71763320469, + 45.9076476666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33c84c30f9052cb5aa87af04ae6638bae307ff2b", + "fields": { + "code_commune_insee": "97412", + "nom_de_la_commune": "ST JOSEPH", + "code_postal": "97480", + "coordonnees_gps": [ + -21.3063550443, + 55.6420686506 + ], + "libelle_d_acheminement": "ST JOSEPH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.6420686506, + -21.3063550443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "933bfb707d87eeec54c99414b73d1e91e50bd3ac", + "fields": { + "code_commune_insee": "63231", + "nom_de_la_commune": "LA MONNERIE LE MONTEL", + "code_postal": "63650", + "coordonnees_gps": [ + 45.8732657663, + 3.6116173358 + ], + "libelle_d_acheminement": "LA MONNERIE LE MONTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6116173358, + 45.8732657663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22cc0bcfd2f747bc927d93e1a74b27faa1960b52", + "fields": { + "ligne_5": "LES MAKES", + "code_commune_insee": "97414", + "libelle_d_acheminement": "ST LOUIS", + "code_postal": "97421", + "nom_de_la_commune": "ST LOUIS", + "coordonnees_gps": [ + -21.2339268494, + 55.4213388686 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.4213388686, + -21.2339268494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aef886dbb55af711eb10e761d4b7856115d4f02e", + "fields": { + "code_commune_insee": "63241", + "nom_de_la_commune": "MONTPEYROUX", + "code_postal": "63114", + "coordonnees_gps": [ + 45.6253241922, + 3.20376168016 + ], + "libelle_d_acheminement": "MONTPEYROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20376168016, + 45.6253241922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3d69da744c86ce8eb5a7dbde6845df97256d41f", + "fields": { + "ligne_5": "BOIS DE NEFLES ST PAUL", + "code_commune_insee": "97415", + "libelle_d_acheminement": "ST PAUL", + "code_postal": "97411", + "nom_de_la_commune": "ST PAUL", + "coordonnees_gps": [ + -21.0445317522, + 55.3223334298 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3223334298, + -21.0445317522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e2663fa0484bc1a690d55d7e706a664759fb700", + "fields": { + "code_commune_insee": "63252", + "nom_de_la_commune": "NEUVILLE", + "code_postal": "63160", + "coordonnees_gps": [ + 45.75084815, + 3.44292731359 + ], + "libelle_d_acheminement": "NEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44292731359, + 45.75084815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75943dd2773f07c932da5c48433ce8a1c4bb2be1", + "fields": { + "ligne_5": "LA SALINE LES BAINS", + "code_commune_insee": "97415", + "libelle_d_acheminement": "ST PAUL", + "code_postal": "97434", + "nom_de_la_commune": "ST PAUL", + "coordonnees_gps": [ + -21.0445317522, + 55.3223334298 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3223334298, + -21.0445317522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33c1880b45f977a6d22065d7ba63503044c84007", + "fields": { + "code_commune_insee": "63259", + "nom_de_la_commune": "OLLOIX", + "code_postal": "63450", + "coordonnees_gps": [ + 45.6226524872, + 3.05077529203 + ], + "libelle_d_acheminement": "OLLOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05077529203, + 45.6226524872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae826359d99b53bf5b7bfbb6d86924520e35a58f", + "fields": { + "ligne_5": "ST GILLES LES HAUTS", + "code_commune_insee": "97415", + "libelle_d_acheminement": "ST PAUL", + "code_postal": "97435", + "nom_de_la_commune": "ST PAUL", + "coordonnees_gps": [ + -21.0445317522, + 55.3223334298 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3223334298, + -21.0445317522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96bf656d41ccb185431d04c8ca1d3e2cabb70bab", + "fields": { + "code_commune_insee": "63260", + "nom_de_la_commune": "OLMET", + "code_postal": "63880", + "coordonnees_gps": [ + 45.7163915803, + 3.66395528311 + ], + "libelle_d_acheminement": "OLMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66395528311, + 45.7163915803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea255b62937c2e6c65cd8b2a1b890ceb53bfbe8e", + "fields": { + "code_commune_insee": "97417", + "nom_de_la_commune": "ST PHILIPPE", + "code_postal": "97442", + "coordonnees_gps": [ + -21.3040005374, + 55.7454668204 + ], + "libelle_d_acheminement": "ST PHILIPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.7454668204, + -21.3040005374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "838e2559c189d9c12193ab51424332ce00bd56c0", + "fields": { + "code_commune_insee": "63264", + "nom_de_la_commune": "ORCIVAL", + "code_postal": "63210", + "coordonnees_gps": [ + 45.6564020975, + 2.83878096942 + ], + "libelle_d_acheminement": "ORCIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83878096942, + 45.6564020975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2c4c72304bd6974b8f72f71094af7215830e126", + "fields": { + "ligne_5": "BASSE VALLEE", + "code_commune_insee": "97417", + "libelle_d_acheminement": "ST PHILIPPE", + "code_postal": "97442", + "nom_de_la_commune": "ST PHILIPPE", + "coordonnees_gps": [ + -21.3040005374, + 55.7454668204 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.7454668204, + -21.3040005374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea8a84925ea2fc5f684cb1e81c0e0382ee32d1d6", + "fields": { + "code_commune_insee": "63269", + "nom_de_la_commune": "PARENT", + "code_postal": "63270", + "coordonnees_gps": [ + 45.6233589577, + 3.22638862151 + ], + "libelle_d_acheminement": "PARENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22638862151, + 45.6233589577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e60987b8b9585a5d959c6c6c230d4d81daa92b7", + "fields": { + "code_commune_insee": "97418", + "nom_de_la_commune": "STE MARIE", + "code_postal": "97438", + "coordonnees_gps": [ + -20.9470588515, + 55.5303555863 + ], + "libelle_d_acheminement": "STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5303555863, + -20.9470588515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab8de2a72804d1c8dd69b30d87f194bff5ec989e", + "fields": { + "code_commune_insee": "63272", + "nom_de_la_commune": "PERIGNAT LES SARLIEVE", + "code_postal": "63170", + "coordonnees_gps": [ + 45.7334187796, + 3.14276506265 + ], + "libelle_d_acheminement": "PERIGNAT LES SARLIEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14276506265, + 45.7334187796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be6989fff58574863bbf418fe9597909e6be4f11", + "fields": { + "ligne_5": "LA GRANDE MONTEE", + "code_commune_insee": "97418", + "libelle_d_acheminement": "STE MARIE", + "code_postal": "97438", + "nom_de_la_commune": "STE MARIE", + "coordonnees_gps": [ + -20.9470588515, + 55.5303555863 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5303555863, + -20.9470588515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce62a7e7e0c78f3a9619b9e57df90d006f28e609", + "fields": { + "code_commune_insee": "63283", + "nom_de_la_commune": "PONTAUMUR", + "code_postal": "63380", + "coordonnees_gps": [ + 45.8601283416, + 2.68239147553 + ], + "libelle_d_acheminement": "PONTAUMUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68239147553, + 45.8601283416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b76770550d5b7b14d12e6286af90d41c519e1d1", + "fields": { + "ligne_5": "ROLAND GARROS AEROPORT", + "code_commune_insee": "97418", + "libelle_d_acheminement": "STE MARIE", + "code_postal": "97438", + "nom_de_la_commune": "STE MARIE", + "coordonnees_gps": [ + -20.9470588515, + 55.5303555863 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5303555863, + -20.9470588515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8a556d6ab5b77a5f40786080047bbc17a647036", + "fields": { + "code_commune_insee": "63289", + "nom_de_la_commune": "PRONDINES", + "code_postal": "63470", + "coordonnees_gps": [ + 45.7591745171, + 2.68428069953 + ], + "libelle_d_acheminement": "PRONDINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68428069953, + 45.7591745171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51e43f02e1a3d984137794559aa8fefc2861630a", + "fields": { + "ligne_5": "LE PITON STE ROSE", + "code_commune_insee": "97419", + "libelle_d_acheminement": "STE ROSE", + "code_postal": "97439", + "nom_de_la_commune": "STE ROSE", + "coordonnees_gps": [ + -21.1925353922, + 55.7545224725 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.7545224725, + -21.1925353922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c88cee84731bc11865a4d6fc39c383e17f056219", + "fields": { + "code_commune_insee": "63301", + "nom_de_la_commune": "RIS", + "code_postal": "63290", + "coordonnees_gps": [ + 46.0038743026, + 3.51270074491 + ], + "libelle_d_acheminement": "RIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51270074491, + 46.0038743026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "518672147d105851cd6ce19eadaf8366fdfd2a10", + "fields": { + "ligne_5": "TAMPON 17EME KM", + "code_commune_insee": "97422", + "libelle_d_acheminement": "LE TAMPON", + "code_postal": "97418", + "nom_de_la_commune": "LE TAMPON", + "coordonnees_gps": [ + -21.223274585, + 55.5584875266 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5584875266, + -21.223274585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2eb045cb99180242f839aaac280f76a324a5f71", + "fields": { + "code_commune_insee": "63305", + "nom_de_la_commune": "ROCHEFORT MONTAGNE", + "code_postal": "63210", + "coordonnees_gps": [ + 45.6822657676, + 2.80889976555 + ], + "libelle_d_acheminement": "ROCHEFORT MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80889976555, + 45.6822657676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3a9184f1934484230c01c3445684789a478d337", + "fields": { + "code_commune_insee": "97422", + "nom_de_la_commune": "LE TAMPON", + "code_postal": "97430", + "coordonnees_gps": [ + -21.223274585, + 55.5584875266 + ], + "libelle_d_acheminement": "LE TAMPON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5584875266, + -21.223274585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4e0fd2317b92b2ec587c0c3bad4b783f28199c8", + "fields": { + "ligne_5": "OPME", + "code_commune_insee": "63307", + "libelle_d_acheminement": "ROMAGNAT", + "code_postal": "63540", + "nom_de_la_commune": "ROMAGNAT", + "coordonnees_gps": [ + 45.7210583634, + 3.08824671856 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08824671856, + 45.7210583634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "175ecaea831acc5cbe78398c391831cc068ec1e0", + "fields": { + "code_commune_insee": "97424", + "nom_de_la_commune": "CILAOS", + "code_postal": "97413", + "coordonnees_gps": [ + -21.1441659144, + 55.4586035944 + ], + "libelle_d_acheminement": "CILAOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.4586035944, + -21.1441659144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4396f75c864d75111993aca598474192eb0b66be", + "fields": { + "ligne_5": "SAULZET LE CHAUD", + "code_commune_insee": "63307", + "libelle_d_acheminement": "ROMAGNAT", + "code_postal": "63540", + "nom_de_la_commune": "ROMAGNAT", + "coordonnees_gps": [ + 45.7210583634, + 3.08824671856 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08824671856, + 45.7210583634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ced30f28c5f14774ac7a828b1ce7fe0f87233f6", + "fields": { + "nom_de_la_commune": "MIQUELON LANGLADE", + "ligne_5": "LANGLADE", + "code_postal": "97500", + "code_commune_insee": "97501", + "libelle_d_acheminement": "ST PIERRE ET MIQUELON" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17c4883483226d2a3d26102ceadeb16eccec407c", + "fields": { + "code_commune_insee": "63308", + "nom_de_la_commune": "ROYAT", + "code_postal": "63130", + "coordonnees_gps": [ + 45.7578437859, + 3.04076552996 + ], + "libelle_d_acheminement": "ROYAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04076552996, + 45.7578437859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "593901ff4f09bca58e099171cf63d5d237cd4dea", + "fields": { + "code_commune_insee": "97601", + "nom_de_la_commune": "ACOUA", + "code_postal": "97630", + "coordonnees_gps": [ + -12.7238913738, + 45.0687067258 + ], + "libelle_d_acheminement": "ACOUA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.0687067258, + -12.7238913738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b6df0b4bbd29515c1a8be6308fbe21359e5fc82", + "fields": { + "code_commune_insee": "63309", + "nom_de_la_commune": "SAILLANT", + "code_postal": "63840", + "coordonnees_gps": [ + 45.4486696779, + 3.92581266951 + ], + "libelle_d_acheminement": "SAILLANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92581266951, + 45.4486696779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12fb2af6e13cde959896acb652827e87f1e3c758", + "fields": { + "code_commune_insee": "97605", + "nom_de_la_commune": "CHICONI", + "code_postal": "97670", + "coordonnees_gps": [ + -12.821522233, + 45.1132970298 + ], + "libelle_d_acheminement": "CHICONI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1132970298, + -12.821522233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa53711cb1ba327311b6d981e2657e244294509d", + "fields": { + "code_commune_insee": "63310", + "nom_de_la_commune": "STE AGATHE", + "code_postal": "63120", + "coordonnees_gps": [ + 45.8212374629, + 3.62274798435 + ], + "libelle_d_acheminement": "STE AGATHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62274798435, + 45.8212374629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fedd12f521325eab353a2e7118435d5afc8fccad", + "fields": { + "code_commune_insee": "97606", + "nom_de_la_commune": "CHIRONGUI", + "code_postal": "97620", + "coordonnees_gps": [ + -12.9197356613, + 45.1484046861 + ], + "libelle_d_acheminement": "CHIRONGUI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1484046861, + -12.9197356613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ae869078b6fbc44fedee95e65838678de2cfbd4", + "fields": { + "code_commune_insee": "63312", + "nom_de_la_commune": "ST ALYRE D ARLANC", + "code_postal": "63220", + "coordonnees_gps": [ + 45.3674865412, + 3.62684726981 + ], + "libelle_d_acheminement": "ST ALYRE D ARLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62684726981, + 45.3674865412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "952e2b635fdfe98d7d11b90074460680180cca92", + "fields": { + "code_commune_insee": "97609", + "nom_de_la_commune": "KANI KELI", + "code_postal": "97625", + "coordonnees_gps": [ + -12.9717285854, + 45.1251508512 + ], + "libelle_d_acheminement": "KANI KELI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1251508512, + -12.9717285854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aecacd25ba64628bdbeb39e7a8d00c05b8a05649", + "fields": { + "code_commune_insee": "63314", + "nom_de_la_commune": "ST AMANT ROCHE SAVINE", + "code_postal": "63890", + "coordonnees_gps": [ + 45.5783076578, + 3.60730566057 + ], + "libelle_d_acheminement": "ST AMANT ROCHE SAVINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60730566057, + 45.5783076578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4895e31e33baf021cbb76da330d16f2fee2098f3", + "fields": { + "code_commune_insee": "97610", + "nom_de_la_commune": "KOUNGOU", + "code_postal": "97600", + "coordonnees_gps": [ + -12.7465604467, + 45.1869991913 + ], + "libelle_d_acheminement": "KOUNGOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1869991913, + -12.7465604467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7e9c9344ce135e45597a6161beee5e71e8bdbcf", + "fields": { + "code_commune_insee": "63324", + "nom_de_la_commune": "ST BONNET LE CHASTEL", + "code_postal": "63630", + "coordonnees_gps": [ + 45.4613295123, + 3.6383745969 + ], + "libelle_d_acheminement": "ST BONNET LE CHASTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6383745969, + 45.4613295123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d8c517d599f7e7e2a6073118e992575d0a650f3", + "fields": { + "code_commune_insee": "97614", + "nom_de_la_commune": "OUANGANI", + "code_postal": "97670", + "coordonnees_gps": [ + -12.8370955196, + 45.1379095497 + ], + "libelle_d_acheminement": "OUANGANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1379095497, + -12.8370955196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "481beb5ed79274d5f70166d9f47631e8345490bc", + "fields": { + "code_commune_insee": "63328", + "nom_de_la_commune": "STE CATHERINE", + "code_postal": "63580", + "coordonnees_gps": [ + 45.4508139616, + 3.47808095492 + ], + "libelle_d_acheminement": "STE CATHERINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47808095492, + 45.4508139616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "506e8023f95d1db3f89d9e6eb1ad330c781cf8ff", + "fields": { + "ligne_5": "COCONI", + "code_commune_insee": "97614", + "libelle_d_acheminement": "OUANGANI", + "code_postal": "97670", + "nom_de_la_commune": "OUANGANI", + "coordonnees_gps": [ + -12.8370955196, + 45.1379095497 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1379095497, + -12.8370955196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eca6b05f198567d26002fa8d8c6294f467cbec58", + "fields": { + "code_commune_insee": "63333", + "nom_de_la_commune": "ST DENIS COMBARNAZAT", + "code_postal": "63310", + "coordonnees_gps": [ + 45.9758266274, + 3.34809938141 + ], + "libelle_d_acheminement": "ST DENIS COMBARNAZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34809938141, + 45.9758266274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b53274342b62d1618dd8e3778348ba622a0174fb", + "fields": { + "nom_de_la_commune": "ANAA", + "ligne_5": "ANAA", + "code_postal": "98786", + "code_commune_insee": "98711", + "libelle_d_acheminement": "HITIANAU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6475d449c661c4a4141e9b664af7fa8303a4027", + "fields": { + "code_commune_insee": "63338", + "nom_de_la_commune": "ST ELOY LES MINES", + "code_postal": "63700", + "coordonnees_gps": [ + 46.1638179584, + 2.84278214683 + ], + "libelle_d_acheminement": "ST ELOY LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84278214683, + 46.1638179584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d6f9b7f8c072f3c787ee5ccbeccece819f6c961", + "fields": { + "nom_de_la_commune": "ARUE", + "code_postal": "98701", + "code_commune_insee": "98712", + "libelle_d_acheminement": "ARUE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ea1935e6e36f97864ea038b53475e1b2e46c057", + "fields": { + "code_commune_insee": "63342", + "nom_de_la_commune": "ST FLORET", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5393613066, + 3.0936807019 + ], + "libelle_d_acheminement": "ST FLORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0936807019, + 45.5393613066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbccb676254409d7c9727db1804fa6fab51af8dc", + "fields": { + "nom_de_la_commune": "ARUTUA", + "ligne_5": "ARUTUA", + "code_postal": "98761", + "code_commune_insee": "98713", + "libelle_d_acheminement": "RAUTINI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "072e54631f3e05bcd93eddc5b3bdafd5e8555fb8", + "fields": { + "code_commune_insee": "63344", + "nom_de_la_commune": "ST GAL SUR SIOULE", + "code_postal": "63440", + "coordonnees_gps": [ + 46.1079395641, + 2.99416305431 + ], + "libelle_d_acheminement": "ST GAL SUR SIOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99416305431, + 46.1079395641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f35a1b6a41f7c86caf9ea28e5418d6458a158fb8", + "fields": { + "nom_de_la_commune": "ARUTUA", + "ligne_5": "ARUTUA", + "code_postal": "98762", + "code_commune_insee": "98713", + "libelle_d_acheminement": "NIUTAHI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ee55eb8e9d720a4f8a246630f17e45fa5338db6", + "fields": { + "code_commune_insee": "63346", + "nom_de_la_commune": "ST GENES CHAMPESPE", + "code_postal": "63850", + "coordonnees_gps": [ + 45.4155027111, + 2.72512948108 + ], + "libelle_d_acheminement": "ST GENES CHAMPESPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72512948108, + 45.4155027111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c59af4d560fe6e34f37efc109b9dcc191c791ca3", + "fields": { + "nom_de_la_commune": "BORA BORA", + "ligne_5": "BORA BORA", + "code_postal": "98730", + "code_commune_insee": "98714", + "libelle_d_acheminement": "ANAU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0ea98a82d06327791081e1a5e65da8d9d6dadba", + "fields": { + "code_commune_insee": "63347", + "nom_de_la_commune": "ST GENES DU RETZ", + "code_postal": "63260", + "coordonnees_gps": [ + 46.0629678805, + 3.2121024758 + ], + "libelle_d_acheminement": "ST GENES DU RETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2121024758, + 46.0629678805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff77362ce51a6ff9b0493ac095e25fd1ea29a766", + "fields": { + "nom_de_la_commune": "BORA BORA", + "ligne_5": "BORA BORA", + "code_postal": "98730", + "code_commune_insee": "98714", + "libelle_d_acheminement": "NUNUE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3db3a5601b3a38a5ac76500a0336169a1ec0e1c", + "fields": { + "code_commune_insee": "63351", + "nom_de_la_commune": "ST GERMAIN PRES HERMENT", + "code_postal": "63470", + "coordonnees_gps": [ + 45.7236097881, + 2.5533478726 + ], + "libelle_d_acheminement": "ST GERMAIN PRES HERMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5533478726, + 45.7236097881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4b98a7e0f57c83f2d08cef32dc3f16787e50755", + "fields": { + "nom_de_la_commune": "FAAA", + "code_postal": "98704", + "code_commune_insee": "98715", + "libelle_d_acheminement": "FAAA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e70ed8a1a40d403ee86ad26cfa787e77103f42de", + "fields": { + "code_commune_insee": "63360", + "nom_de_la_commune": "ST HILAIRE", + "code_postal": "63330", + "coordonnees_gps": [ + 46.1055031441, + 2.61988914983 + ], + "libelle_d_acheminement": "ST HILAIRE PRES PIONSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61988914983, + 46.1055031441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b81d765bc8a2b687b8d2d030e2dba7af572b5b6", + "fields": { + "nom_de_la_commune": "FAKARAVA", + "ligne_5": "FAKARAVA", + "code_postal": "98790", + "code_commune_insee": "98716", + "libelle_d_acheminement": "OFARE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0b47d31b2c3659c12c3b8a2a57d3f0ce6078398", + "fields": { + "code_commune_insee": "63376", + "nom_de_la_commune": "ST MARTIN D OLLIERES", + "code_postal": "63580", + "coordonnees_gps": [ + 45.4170695019, + 3.44908379911 + ], + "libelle_d_acheminement": "ST MARTIN D OLLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44908379911, + 45.4170695019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8e0f66a72c81de496f947ae15283b8106c86048", + "fields": { + "nom_de_la_commune": "FATU HIVA", + "ligne_5": "FATU HIVA", + "code_postal": "98740", + "code_commune_insee": "98718", + "libelle_d_acheminement": "HANAVAVE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9ec99af079324f30deb0c7171a58f75f3c33933", + "fields": { + "code_commune_insee": "63377", + "nom_de_la_commune": "ST MAURICE PRES PIONSAT", + "code_postal": "63330", + "coordonnees_gps": [ + 46.0687545413, + 2.59304544754 + ], + "libelle_d_acheminement": "ST MAURICE PRES PIONSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59304544754, + 46.0687545413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4f7eb5a19b3a286baab24c0e070dcf5cec23207", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98755", + "code_commune_insee": "98719", + "libelle_d_acheminement": "KAMAKA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ef1e4301d076d24a5b15ffda22b2fba2299b17", + "fields": { + "code_commune_insee": "63379", + "nom_de_la_commune": "ST MYON", + "code_postal": "63460", + "coordonnees_gps": [ + 45.9871537427, + 3.12955448011 + ], + "libelle_d_acheminement": "ST MYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12955448011, + 45.9871537427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e789a3a1f66d0286c0b79745c8a5b1d3c4851b9e", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98755", + "code_commune_insee": "98719", + "libelle_d_acheminement": "AKAMARU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "487d75e0ba907ffd2f5e4663704aa35f852d0b36", + "fields": { + "code_commune_insee": "63386", + "nom_de_la_commune": "ST PIERRE ROCHE", + "code_postal": "63210", + "coordonnees_gps": [ + 45.7293103902, + 2.814651997 + ], + "libelle_d_acheminement": "ST PIERRE ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.814651997, + 45.7293103902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6379f561589804bbcfe8f43fdc6a4c749de6612", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98792", + "code_commune_insee": "98719", + "libelle_d_acheminement": "MOTUREIVAVAO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba92501f47e02b7ff03f6158481d007de526e79", + "fields": { + "code_commune_insee": "63404", + "nom_de_la_commune": "ST YVOINE", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5750111656, + 3.22572717039 + ], + "libelle_d_acheminement": "ST YVOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22572717039, + 45.5750111656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61bebd9ce4da033069c50a6162c18393dc48ecbc", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98792", + "code_commune_insee": "98719", + "libelle_d_acheminement": "TENARARO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "196f39f656e9110461f15d9348c965c75b567e61", + "fields": { + "code_commune_insee": "63411", + "nom_de_la_commune": "SAUVAGNAT STE MARTHE", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5897061355, + 3.20853805822 + ], + "libelle_d_acheminement": "SAUVAGNAT STE MARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20853805822, + 45.5897061355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b32bb533a5c7fc2b21a753860309d2ce43f6aaaa", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98793", + "code_commune_insee": "98719", + "libelle_d_acheminement": "MARUTEA SUD" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb9a6863551f85a9506699e0fcffb4150594b55d", + "fields": { + "code_commune_insee": "63414", + "nom_de_la_commune": "SAUVIAT", + "code_postal": "63120", + "coordonnees_gps": [ + 45.7189041361, + 3.55697409571 + ], + "libelle_d_acheminement": "SAUVIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55697409571, + 45.7189041361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0cacf1efc335ac35b5f52b7f40ca1c510593324", + "fields": { + "nom_de_la_commune": "HAO", + "ligne_5": "HAO", + "code_postal": "98790", + "code_commune_insee": "98720", + "libelle_d_acheminement": "OTETOU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ded6578428e1330310dd99062b867e9e666d902e", + "fields": { + "code_commune_insee": "63426", + "nom_de_la_commune": "TAUVES", + "code_postal": "63690", + "coordonnees_gps": [ + 45.5635422743, + 2.62732246631 + ], + "libelle_d_acheminement": "TAUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62732246631, + 45.5635422743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7deff102b65d97b3de1ff0dd1ed96dd6f3d22f5c", + "fields": { + "nom_de_la_commune": "HIKUERU", + "ligne_5": "HIKUERU", + "code_postal": "98790", + "code_commune_insee": "98721", + "libelle_d_acheminement": "MOTUTAPU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9659ee741b74ede0cd26162a6857a0c5cf610b1", + "fields": { + "code_commune_insee": "63427", + "nom_de_la_commune": "TEILHEDE", + "code_postal": "63460", + "coordonnees_gps": [ + 45.9614924136, + 3.05247762419 + ], + "libelle_d_acheminement": "TEILHEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05247762419, + 45.9614924136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f004bce766e37220446aa55e686440af8af0aff4", + "fields": { + "nom_de_la_commune": "HIKUERU", + "ligne_5": "HIKUERU", + "code_postal": "98790", + "code_commune_insee": "98721", + "libelle_d_acheminement": "RAVAHERE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd9495ab7eb5b076a68f3e67a5b77a070506b5c4", + "fields": { + "code_commune_insee": "63429", + "nom_de_la_commune": "TERNANT LES EAUX", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4812539874, + 3.12762758694 + ], + "libelle_d_acheminement": "TERNANT LES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12762758694, + 45.4812539874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df03e86e5e74e7352b64565cebd0ab0f2d9d3b46", + "fields": { + "nom_de_la_commune": "HIVA OA", + "ligne_5": "HIVA OA", + "code_postal": "98741", + "code_commune_insee": "98723", + "libelle_d_acheminement": "HANAIAPA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d1b80a194df8f4bf3a4ab1521bbde076d49a618", + "fields": { + "code_commune_insee": "63430", + "nom_de_la_commune": "THIERS", + "code_postal": "63300", + "coordonnees_gps": [ + 45.8620554106, + 3.53945258847 + ], + "libelle_d_acheminement": "THIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53945258847, + 45.8620554106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f30136d36992d7accf6698ca4edf9f30734b22d", + "fields": { + "nom_de_la_commune": "HUAHINE", + "ligne_5": "HUAHINE", + "code_postal": "98731", + "code_commune_insee": "98724", + "libelle_d_acheminement": "FARE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cbf6e865624a5554008d7378c49190cf84bb3ff", + "fields": { + "code_commune_insee": "63437", + "nom_de_la_commune": "TREMOUILLE ST LOUP", + "code_postal": "63810", + "coordonnees_gps": [ + 45.486076065, + 2.56362799557 + ], + "libelle_d_acheminement": "TREMOUILLE ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56362799557, + 45.486076065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de013466a7b52bcdefbd1090736196037cb0ea74", + "fields": { + "nom_de_la_commune": "HUAHINE", + "ligne_5": "HUAHINE", + "code_postal": "98731", + "code_commune_insee": "98724", + "libelle_d_acheminement": "FITII" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "265d1321f6bb78618e7a743473467664ef803cbf", + "fields": { + "code_commune_insee": "63444", + "nom_de_la_commune": "VARENNES SUR USSON", + "code_postal": "63500", + "coordonnees_gps": [ + 45.535308248, + 3.32399311749 + ], + "libelle_d_acheminement": "VARENNES SUR USSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32399311749, + 45.535308248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dafbde5c44f5786a5d0de8aa6c9b8fead42d2f7e", + "fields": { + "nom_de_la_commune": "HUAHINE", + "ligne_5": "HUAHINE", + "code_postal": "98732", + "code_commune_insee": "98724", + "libelle_d_acheminement": "AVERA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f41e6b84ad3c29c4c384c085a9a806e1b05c9fe6", + "fields": { + "ligne_5": "CHAMEANE", + "code_commune_insee": "63448", + "libelle_d_acheminement": "LE VERNET CHAMEANE", + "code_postal": "63580", + "nom_de_la_commune": "LE VERNET CHAMEANE", + "coordonnees_gps": [ + 45.4784207253, + 3.45441467275 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45441467275, + 45.4784207253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef5a32b6b447d99c4ca7a2894aefe1e49cd8c59b", + "fields": { + "nom_de_la_commune": "MAHINA", + "code_postal": "98709", + "code_commune_insee": "98725", + "libelle_d_acheminement": "MAHINA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07e1c33097191ae3418501605effc87930e500e4", + "fields": { + "code_commune_insee": "63453", + "nom_de_la_commune": "VERTAIZON", + "code_postal": "63910", + "coordonnees_gps": [ + 45.7750797019, + 3.2843067169 + ], + "libelle_d_acheminement": "VERTAIZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2843067169, + 45.7750797019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fead593d06da5d0deceb485ccf882e248af726d7", + "fields": { + "nom_de_la_commune": "MAHINA", + "ligne_5": "MAHINA", + "code_postal": "98710", + "code_commune_insee": "98725", + "libelle_d_acheminement": "OROFARA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26a6894b11c266611c0b42ee1b69e706d88bfc03", + "fields": { + "code_commune_insee": "63454", + "nom_de_la_commune": "VERTOLAYE", + "code_postal": "63480", + "coordonnees_gps": [ + 45.6538886313, + 3.73749020485 + ], + "libelle_d_acheminement": "VERTOLAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73749020485, + 45.6538886313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bc376d6914b844b4d798415977e9d4427265d62", + "fields": { + "nom_de_la_commune": "MAKEMO", + "ligne_5": "MAKEMO", + "code_postal": "98790", + "code_commune_insee": "98726", + "libelle_d_acheminement": "HARAIKI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eba45798bfe2065594a1bc9c9e73e7cdf340b98", + "fields": { + "code_commune_insee": "63457", + "nom_de_la_commune": "VIC LE COMTE", + "code_postal": "63270", + "coordonnees_gps": [ + 45.6440673683, + 3.24047430326 + ], + "libelle_d_acheminement": "VIC LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24047430326, + 45.6440673683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1807356f432ad430a34bc990e2a506498640297", + "fields": { + "nom_de_la_commune": "MAKEMO", + "ligne_5": "MAKEMO", + "code_postal": "98790", + "code_commune_insee": "98726", + "libelle_d_acheminement": "HENUAPAREA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26a0f935544629b0b7eef4573f9773ae82eaec07", + "fields": { + "code_commune_insee": "63459", + "nom_de_la_commune": "VILLENEUVE LES CERFS", + "code_postal": "63310", + "coordonnees_gps": [ + 46.0188653048, + 3.3291939424 + ], + "libelle_d_acheminement": "VILLENEUVE LES CERFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3291939424, + 46.0188653048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83ece9b1fb163c65781649258625c5af1fd9b9c6", + "fields": { + "nom_de_la_commune": "MAKEMO", + "ligne_5": "MAKEMO", + "code_postal": "98790", + "code_commune_insee": "98726", + "libelle_d_acheminement": "HITI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4637c0204dd9bedbd3b545af233866204573b68", + "fields": { + "code_commune_insee": "63460", + "nom_de_la_commune": "VILLOSSANGES", + "code_postal": "63380", + "coordonnees_gps": [ + 45.9190356938, + 2.64520886545 + ], + "libelle_d_acheminement": "VILLOSSANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64520886545, + 45.9190356938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "136092208b1691ed88eeb807363f3787690d3426", + "fields": { + "nom_de_la_commune": "MAUPITI", + "code_postal": "98732", + "code_commune_insee": "98728", + "libelle_d_acheminement": "MAUPITI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3365418ee7e41524b8bfadfc4389b3a03f3167d2", + "fields": { + "code_commune_insee": "63462", + "nom_de_la_commune": "VIRLET", + "code_postal": "63330", + "coordonnees_gps": [ + 46.1545658295, + 2.70225561671 + ], + "libelle_d_acheminement": "VIRLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70225561671, + 46.1545658295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13bc792f6be543dabde02c5c976e7f82d0e41b4f", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98728", + "code_commune_insee": "98729", + "libelle_d_acheminement": "TEMAE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "735b0c84f6f6c33e0fcc7051cf7894302b57f94b", + "fields": { + "code_commune_insee": "63472", + "nom_de_la_commune": "YRONDE ET BURON", + "code_postal": "63270", + "coordonnees_gps": [ + 45.6099212666, + 3.25296189739 + ], + "libelle_d_acheminement": "YRONDE ET BURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25296189739, + 45.6099212666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9b8dee505668854b5578c406ff9270bf1b9755c", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98728", + "code_commune_insee": "98729", + "libelle_d_acheminement": "VAIARE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bded198dd5c604707fc8404d4536ba978eef2da1", + "fields": { + "code_commune_insee": "64002", + "nom_de_la_commune": "ABERE", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3870958576, + -0.174833109291 + ], + "libelle_d_acheminement": "ABERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.174833109291, + 43.3870958576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3e6c2dec2a00948522b05cff57ad557a8d46127", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98729", + "code_commune_insee": "98729", + "libelle_d_acheminement": "ATIHA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32dcf84f05a3096203b4f644a54ee3dd5873d77b", + "fields": { + "code_commune_insee": "64003", + "nom_de_la_commune": "ABIDOS", + "code_postal": "64150", + "coordonnees_gps": [ + 43.3951950748, + -0.628336499241 + ], + "libelle_d_acheminement": "ABIDOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.628336499241, + 43.3951950748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1f9ac4dba2d17a617cec6ef724c31b381b80c72", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98729", + "code_commune_insee": "98729", + "libelle_d_acheminement": "HAAPITI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83e3b3a807ca26b99b56172c43938e2365bafe58", + "fields": { + "code_commune_insee": "64004", + "nom_de_la_commune": "ABITAIN", + "code_postal": "64390", + "coordonnees_gps": [ + 43.4173386214, + -0.99809023231 + ], + "libelle_d_acheminement": "ABITAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.99809023231, + 43.4173386214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57f38fc00008a0acb93d8df2d5b3f1cdd973d29a", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98729", + "code_commune_insee": "98729", + "libelle_d_acheminement": "VARARI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7738484596c861748aa14e8aa097a66cd8ef0b7a", + "fields": { + "code_commune_insee": "64011", + "nom_de_la_commune": "AINCILLE", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1339521918, + -1.19765745268 + ], + "libelle_d_acheminement": "AINCILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19765745268, + 43.1339521918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31d9358e059c5b91fff6742857c97bf0bb76dc47", + "fields": { + "nom_de_la_commune": "NUKUTAVAKE", + "ligne_5": "NUKUTAVAKE", + "code_postal": "98773", + "code_commune_insee": "98732", + "libelle_d_acheminement": "TAVAVA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc7bd84e0863287685f8db5b023b7e6428adcc94", + "fields": { + "code_commune_insee": "64013", + "nom_de_la_commune": "AINHICE MONGELOS", + "code_postal": "64220", + "coordonnees_gps": [ + 43.2143412216, + -1.15953469932 + ], + "libelle_d_acheminement": "AINHICE MONGELOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15953469932, + 43.2143412216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e473671d74cdc75e3fb63dc6801b41f9c2f84792", + "fields": { + "nom_de_la_commune": "PAPARA", + "code_postal": "98712", + "code_commune_insee": "98734", + "libelle_d_acheminement": "PAPARA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bbfea5f4c7eeab9e600058eb05880d5ac40dc4c", + "fields": { + "code_commune_insee": "64027", + "nom_de_la_commune": "ANOS", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3974753128, + -0.289222563999 + ], + "libelle_d_acheminement": "ANOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.289222563999, + 43.3974753128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c646cacc2528c7ea2c7a067c5fac1cd962383f0", + "fields": { + "nom_de_la_commune": "RAIVAVAE", + "ligne_5": "RAIVAVAE", + "code_postal": "98750", + "code_commune_insee": "98739", + "libelle_d_acheminement": "MAHANATOA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd31be949938a813d6bcba3e09ea6cb6b4fdd1f7", + "fields": { + "code_commune_insee": "64034", + "nom_de_la_commune": "ARBERATS SILLEGUE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.340809615, + -0.991760283648 + ], + "libelle_d_acheminement": "ARBERATS SILLEGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.991760283648, + 43.340809615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b29b1563c911e7d09b7c3a156b02629e6429e45", + "fields": { + "nom_de_la_commune": "RANGIROA", + "ligne_5": "RANGIROA", + "code_postal": "98775", + "code_commune_insee": "98740", + "libelle_d_acheminement": "AVATORU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a0283bd5a92323b18bbcc912476febf5842421b", + "fields": { + "code_commune_insee": "64036", + "nom_de_la_commune": "ARBOUET SUSSAUTE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3718035763, + -0.989499391955 + ], + "libelle_d_acheminement": "ARBOUET SUSSAUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.989499391955, + 43.3718035763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0d220f6fedce6c50f5c135aac5c8ecbc16da774", + "fields": { + "nom_de_la_commune": "TAHAA", + "ligne_5": "TAHAA", + "code_postal": "98733", + "code_commune_insee": "98745", + "libelle_d_acheminement": "PATIO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ed48796ecfab3abd7bcb8eadd1429e97986e4d6", + "fields": { + "code_commune_insee": "64038", + "nom_de_la_commune": "ARCANGUES", + "code_postal": "64200", + "coordonnees_gps": [ + 43.4260778242, + -1.51681726621 + ], + "libelle_d_acheminement": "ARCANGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51681726621, + 43.4260778242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b90ffe0002c4b6d0939752bad40dc5be5b05676", + "fields": { + "nom_de_la_commune": "TAHAA", + "ligne_5": "TAHAA", + "code_postal": "98734", + "code_commune_insee": "98745", + "libelle_d_acheminement": "NIUA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a12c224a68a365a85f1852ba91482c955861d6d1", + "fields": { + "code_commune_insee": "64041", + "nom_de_la_commune": "ARESSY", + "code_postal": "64320", + "coordonnees_gps": [ + 43.2780475519, + -0.328128024391 + ], + "libelle_d_acheminement": "ARESSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.328128024391, + 43.2780475519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10338868fff637a543162c2fca5a12c16513b36b", + "fields": { + "nom_de_la_commune": "TAHUATA", + "ligne_5": "TAHUATA", + "code_postal": "98743", + "code_commune_insee": "98746", + "libelle_d_acheminement": "HAPATONI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b94a89a6c69c7c210da27e873bd788286ea3f72", + "fields": { + "code_commune_insee": "64044", + "nom_de_la_commune": "ARGET", + "code_postal": "64410", + "coordonnees_gps": [ + 43.5449611911, + -0.532086605631 + ], + "libelle_d_acheminement": "ARGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.532086605631, + 43.5449611911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32078954dc0fd86f35e2986f1e918b6694532bf0", + "fields": { + "nom_de_la_commune": "TAIARAPU EST", + "ligne_5": "TAIARAPU EST", + "code_postal": "98719", + "code_commune_insee": "98747", + "libelle_d_acheminement": "AFAAHITI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9adb3f39a34aec36d38b064175e5790341544da0", + "fields": { + "code_commune_insee": "64046", + "nom_de_la_commune": "ARMENDARITS", + "code_postal": "64640", + "coordonnees_gps": [ + 43.2995874286, + -1.16163775322 + ], + "libelle_d_acheminement": "ARMENDARITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16163775322, + 43.2995874286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5f43af3cef906f0e43ba01892db288019b2f79a", + "fields": { + "nom_de_la_commune": "TAIARAPU EST", + "ligne_5": "TAIARAPU EST", + "code_postal": "98720", + "code_commune_insee": "98747", + "libelle_d_acheminement": "FAAONE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfca8d5534d91378c38f374316afb1be1325bef4", + "fields": { + "code_commune_insee": "64047", + "nom_de_la_commune": "ARNEGUY", + "code_postal": "64220", + "coordonnees_gps": [ + 43.0855581818, + -1.27601688686 + ], + "libelle_d_acheminement": "ARNEGUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27601688686, + 43.0855581818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dce03dd508b8220511626ccf6f22eb70c4541bb", + "fields": { + "nom_de_la_commune": "TAIARAPU OUEST", + "ligne_5": "TAIARAPU OUEST", + "code_postal": "98724", + "code_commune_insee": "98748", + "libelle_d_acheminement": "TOAHOTU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40550da61d9304f6898651fb6393ea0bb75ed536", + "fields": { + "code_commune_insee": "64049", + "nom_de_la_commune": "AROUE ITHOROTS OLHAIBY", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3085352376, + -0.928425599929 + ], + "libelle_d_acheminement": "AROUE ITHOROTS OLHAIBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.928425599929, + 43.3085352376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82163c703a241c58d45951e327779f8905fb3f00", + "fields": { + "nom_de_la_commune": "TAKAROA", + "ligne_5": "TAKAROA", + "code_postal": "98781", + "code_commune_insee": "98749", + "libelle_d_acheminement": "TEAVAROA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f2bb564624008226287f16ce7f5ed57a409091a", + "fields": { + "code_commune_insee": "64052", + "nom_de_la_commune": "ARRICAU BORDES", + "code_postal": "64350", + "coordonnees_gps": [ + 43.5019052094, + -0.142484551875 + ], + "libelle_d_acheminement": "ARRICAU BORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.142484551875, + 43.5019052094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d47393c6f8376ece46e70ea9ce02fcda0241192", + "fields": { + "nom_de_la_commune": "TAPUTAPUATEA", + "ligne_5": "TAPUTAPUATEA", + "code_postal": "98735", + "code_commune_insee": "98750", + "libelle_d_acheminement": "OPOA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5832b677f874f4c3712f068174ec465606763317", + "fields": { + "code_commune_insee": "64053", + "nom_de_la_commune": "ARRIEN", + "code_postal": "64420", + "coordonnees_gps": [ + 43.3128952701, + -0.162235527982 + ], + "libelle_d_acheminement": "ARRIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.162235527982, + 43.3128952701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cc201caceaf70397e22e1ef6d61094e97ab46ae", + "fields": { + "nom_de_la_commune": "TUREIA", + "ligne_5": "TUREIA", + "code_postal": "98784", + "code_commune_insee": "98755", + "libelle_d_acheminement": "FAKAMARU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba7cd32b0d9e9efe7d6191f5d19281118bcb70a0", + "fields": { + "ligne_5": "ARROS D OLORON", + "code_commune_insee": "64064", + "libelle_d_acheminement": "ASASP ARROS", + "code_postal": "64660", + "nom_de_la_commune": "ASASP ARROS", + "coordonnees_gps": [ + 43.1179115359, + -0.629962098599 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.629962098599, + 43.1179115359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c2d4110291382ad30d221dfb1bbf759fe453617", + "fields": { + "nom_de_la_commune": "UA POU", + "ligne_5": "UA POU", + "code_postal": "98745", + "code_commune_insee": "98757", + "libelle_d_acheminement": "HOHOI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fc5ee3d496a84a4ffeff43e9ddf52ac2911bbf7", + "fields": { + "code_commune_insee": "64072", + "nom_de_la_commune": "AUBERTIN", + "code_postal": "64290", + "coordonnees_gps": [ + 43.2716852677, + -0.480982579779 + ], + "libelle_d_acheminement": "AUBERTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.480982579779, + 43.2716852677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6294fdab82f0e2517083d673b6dd6b370439a47f", + "fields": { + "nom_de_la_commune": "UA POU", + "ligne_5": "UA POU", + "code_postal": "98746", + "code_commune_insee": "98757", + "libelle_d_acheminement": "HAAKUTI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4159892f2c424a1d53a333033832634a120872f3", + "fields": { + "code_commune_insee": "64074", + "nom_de_la_commune": "AUBOUS", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5761449327, + -0.141071694882 + ], + "libelle_d_acheminement": "AUBOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.141071694882, + 43.5761449327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "535f5670687b73c7c1540782b625ca76b2da0983", + "fields": { + "nom_de_la_commune": "DUMBEA", + "code_postal": "98830", + "code_commune_insee": "98805", + "libelle_d_acheminement": "DUMBEA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "529ff2cb7c2f85685abe74dc828fd04fa75685eb", + "fields": { + "code_commune_insee": "64083", + "nom_de_la_commune": "AUTEVIELLE ST MARTIN BIDEREN", + "code_postal": "64390", + "coordonnees_gps": [ + 43.3956392905, + -0.977749738282 + ], + "libelle_d_acheminement": "AUTEVIELLE ST MARTIN BIDEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.977749738282, + 43.3956392905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b18ccfc1d9eaa11d005b65f562803fe2cf542f3", + "fields": { + "nom_de_la_commune": "KONE", + "code_postal": "98859", + "code_commune_insee": "98811", + "libelle_d_acheminement": "KONE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "993401d602ff620400e6190843ab6e9fd428505e", + "fields": { + "code_commune_insee": "64087", + "nom_de_la_commune": "BAIGTS DE BEARN", + "code_postal": "64300", + "coordonnees_gps": [ + 43.5246551723, + -0.845538853902 + ], + "libelle_d_acheminement": "BAIGTS DE BEARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.845538853902, + 43.5246551723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b2b23a9f2b3cd7a01b87a67c237a44857b0ceb7", + "fields": { + "nom_de_la_commune": "LIFOU", + "ligne_5": "LIFOU", + "code_postal": "98820", + "code_commune_insee": "98814", + "libelle_d_acheminement": "WE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6f993834ba5f44e0f277f1acd7ecff7f353eb3f", + "fields": { + "code_commune_insee": "64095", + "nom_de_la_commune": "BARINQUE", + "code_postal": "64160", + "coordonnees_gps": [ + 43.4040350013, + -0.269781784045 + ], + "libelle_d_acheminement": "BARINQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.269781784045, + 43.4040350013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03e4f55536c3c1b6c619f1063ba2f43368087a5c", + "fields": { + "nom_de_la_commune": "MOINDOU", + "code_postal": "98819", + "code_commune_insee": "98816", + "libelle_d_acheminement": "MOINDOU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4637add8277ce55e4aa306dd6097dca9b673bd6", + "fields": { + "code_commune_insee": "64107", + "nom_de_la_commune": "BEHORLEGUY", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1201655995, + -1.08535669994 + ], + "libelle_d_acheminement": "BEHORLEGUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08535669994, + 43.1201655995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a2ea1170830e96630cf1364946b3d15db40f422", + "fields": { + "nom_de_la_commune": "LE MONT DORE", + "ligne_5": "LE MONT DORE", + "code_postal": "98874", + "code_commune_insee": "98817", + "libelle_d_acheminement": "PONT DES FRANCAIS" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3a18279bc2a63461074348db46ba4d2b7d757ff", + "fields": { + "code_commune_insee": "64109", + "nom_de_la_commune": "BENEJACQ", + "code_postal": "64800", + "coordonnees_gps": [ + 43.1946371974, + -0.190128875721 + ], + "libelle_d_acheminement": "BENEJACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.190128875721, + 43.1946371974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "454e6e34fb8fc451f5499019d26668dfb4ba6e62", + "fields": { + "nom_de_la_commune": "LE MONT DORE", + "ligne_5": "LE MONT DORE", + "code_postal": "98876", + "code_commune_insee": "98817", + "libelle_d_acheminement": "LA COULEE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e33be8bcf0b5c1ca6be5fa8840e1ff299901bf48", + "fields": { + "ligne_5": "VIELLENAVE SUR BIDOUZE", + "code_commune_insee": "64113", + "libelle_d_acheminement": "BERGOUEY VIELLENAVE", + "code_postal": "64270", + "nom_de_la_commune": "BERGOUEY VIELLENAVE", + "coordonnees_gps": [ + 43.4248305248, + -1.06247099125 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06247099125, + 43.4248305248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b24097836704b1de6d9472e982aee6102769f4b5", + "fields": { + "nom_de_la_commune": "NOUMEA", + "code_postal": "98800", + "code_commune_insee": "98818", + "libelle_d_acheminement": "NOUMEA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f188c4c96624a6f5ffa732e589617637d6f1d254", + "fields": { + "code_commune_insee": "64118", + "nom_de_la_commune": "BETRACQ", + "code_postal": "64350", + "coordonnees_gps": [ + 43.5180487775, + -0.0544692925119 + ], + "libelle_d_acheminement": "BETRACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0544692925119, + 43.5180487775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7998b49c8f5b6840fa02144bb31ff46e0be60bce", + "fields": { + "nom_de_la_commune": "PAITA", + "ligne_5": "PAITA", + "code_postal": "98840", + "code_commune_insee": "98821", + "libelle_d_acheminement": "TONTOUTA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b34e74dee3ff3511084af86bbab3b672355ac51", + "fields": { + "code_commune_insee": "64121", + "nom_de_la_commune": "BEYRIE EN BEARN", + "code_postal": "64230", + "coordonnees_gps": [ + 43.3720098717, + -0.465298241664 + ], + "libelle_d_acheminement": "BEYRIE EN BEARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.465298241664, + 43.3720098717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e260f2584d2096cb07f5a3e0ff2b5659b124712", + "fields": { + "nom_de_la_commune": "PAITA", + "code_postal": "98889", + "code_commune_insee": "98821", + "libelle_d_acheminement": "PAITA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30f96a697f753556ba1ac8a42cf6bbe6ee511a6d", + "fields": { + "code_commune_insee": "64123", + "nom_de_la_commune": "BIDACHE", + "code_postal": "64520", + "coordonnees_gps": [ + 43.4637748051, + -1.14534438631 + ], + "libelle_d_acheminement": "BIDACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14534438631, + 43.4637748051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a8cf8a9ec019f962ca0c76d70e45d279064e5f0", + "fields": { + "nom_de_la_commune": "PONERIHOUEN", + "code_postal": "98823", + "code_commune_insee": "98823", + "libelle_d_acheminement": "PONERIHOUEN" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccdb85e4680df6dd20c320754959bbfc9501cf1c", + "fields": { + "code_commune_insee": "64124", + "nom_de_la_commune": "BIDARRAY", + "code_postal": "64780", + "coordonnees_gps": [ + 43.2723557234, + -1.35385755497 + ], + "libelle_d_acheminement": "BIDARRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35385755497, + 43.2723557234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbac356345919d4f3bd5a54ab219e92392b7ef27", + "fields": { + "code_commune_insee": "64131", + "nom_de_la_commune": "BIRON", + "code_postal": "64300", + "coordonnees_gps": [ + 43.4626761667, + -0.741219830743 + ], + "libelle_d_acheminement": "BIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.741219830743, + 43.4626761667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8b2bce71d2e781bc5d0fd8f15ad84315345433b", + "fields": { + "code_commune_insee": "64133", + "nom_de_la_commune": "BOEIL BEZING", + "code_postal": "64510", + "coordonnees_gps": [ + 43.2275428829, + -0.25100390075 + ], + "libelle_d_acheminement": "BOEIL BEZING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25100390075, + 43.2275428829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90d7749b2ba986623f351299c397b99c7ad78f0f", + "fields": { + "code_commune_insee": "64136", + "nom_de_la_commune": "BORCE", + "code_postal": "64490", + "coordonnees_gps": [ + 42.8583801271, + -0.587747470754 + ], + "libelle_d_acheminement": "BORCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.587747470754, + 42.8583801271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8176c4f0de7841ab23af6fda980bf4ae2ff3b759", + "fields": { + "code_commune_insee": "64138", + "nom_de_la_commune": "BORDES", + "code_postal": "64510", + "coordonnees_gps": [ + 43.2436324189, + -0.272861349005 + ], + "libelle_d_acheminement": "BORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.272861349005, + 43.2436324189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb64dbe64d7ecab7b37cc0b551f502ceafa4bc28", + "fields": { + "code_commune_insee": "64144", + "nom_de_la_commune": "BOUMOURT", + "code_postal": "64370", + "coordonnees_gps": [ + 43.4423096627, + -0.514147087954 + ], + "libelle_d_acheminement": "BOUMOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.514147087954, + 43.4423096627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "621d2107da7ea3b59df9c4552d42fe839f5372c8", + "fields": { + "code_commune_insee": "64146", + "nom_de_la_commune": "BOURNOS", + "code_postal": "64450", + "coordonnees_gps": [ + 43.4388278116, + -0.395430501786 + ], + "libelle_d_acheminement": "BOURNOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.395430501786, + 43.4388278116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "300cd51df35e1bb2bad9ab0c926202b790c4ad31", + "fields": { + "code_commune_insee": "64151", + "nom_de_la_commune": "BURGARONNE", + "code_postal": "64390", + "coordonnees_gps": [ + 43.4177713373, + -0.906845978602 + ], + "libelle_d_acheminement": "BURGARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.906845978602, + 43.4177713373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52e7e77f543a7b4d89ac23c7e726b726e83574be", + "fields": { + "code_commune_insee": "64153", + "nom_de_la_commune": "BUROSSE MENDOUSSE", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5133919734, + -0.209328142304 + ], + "libelle_d_acheminement": "BUROSSE MENDOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.209328142304, + 43.5133919734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a53da2f952c719f57b9e7c65b50e2899576393f4", + "fields": { + "code_commune_insee": "64157", + "nom_de_la_commune": "BUZY", + "code_postal": "64260", + "coordonnees_gps": [ + 43.1407278397, + -0.446234672821 + ], + "libelle_d_acheminement": "BUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.446234672821, + 43.1407278397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8cbaca5807a6ddae34325a905616d5c053b48df", + "fields": { + "code_commune_insee": "64161", + "nom_de_la_commune": "CAME", + "code_postal": "64520", + "coordonnees_gps": [ + 43.48131751, + -1.09178751513 + ], + "libelle_d_acheminement": "CAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09178751513, + 43.48131751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5aeff4b69e1de13a4e7ac27a6d1caa5419d74a3b", + "fields": { + "code_commune_insee": "64166", + "nom_de_la_commune": "CARO", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1487167236, + -1.22057717225 + ], + "libelle_d_acheminement": "CARO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22057717225, + 43.1487167236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64dd9994fb7310f8b2f546582725bb069fed6b7e", + "fields": { + "code_commune_insee": "64167", + "nom_de_la_commune": "CARRERE", + "code_postal": "64160", + "coordonnees_gps": [ + 43.478719085, + -0.277971738226 + ], + "libelle_d_acheminement": "CARRERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.277971738226, + 43.478719085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61f2cc0a76293c5a9ab35ef734cd3ca19788ab71", + "fields": { + "code_commune_insee": "64170", + "nom_de_la_commune": "CASTAGNEDE", + "code_postal": "64270", + "coordonnees_gps": [ + 43.4556389583, + -0.974073017031 + ], + "libelle_d_acheminement": "CASTAGNEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.974073017031, + 43.4556389583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34f3c661f74f877bb83af0c6e285af5c93816099", + "fields": { + "code_commune_insee": "64171", + "nom_de_la_commune": "CASTEIDE CAMI", + "code_postal": "64170", + "coordonnees_gps": [ + 43.4244241199, + -0.528274059167 + ], + "libelle_d_acheminement": "CASTEIDE CAMI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.528274059167, + 43.4244241199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e53c738454ed1e37dc8f9ebbe96a65786d05bc90", + "fields": { + "code_commune_insee": "64173", + "nom_de_la_commune": "CASTEIDE DOAT", + "code_postal": "64460", + "coordonnees_gps": [ + 43.3740019876, + -0.0110617940773 + ], + "libelle_d_acheminement": "CASTEIDE DOAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0110617940773, + 43.3740019876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5e8498a174dbc00ac61612555c29e655c786b14", + "fields": { + "code_commune_insee": "64179", + "nom_de_la_commune": "CASTETNER", + "code_postal": "64300", + "coordonnees_gps": [ + 43.4401622593, + -0.729783827554 + ], + "libelle_d_acheminement": "CASTETNER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.729783827554, + 43.4401622593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "017135cc0f7a1e57b81dfc806733a072e81a7379", + "fields": { + "code_commune_insee": "64181", + "nom_de_la_commune": "CASTILLON D ARTHEZ", + "code_postal": "64370", + "coordonnees_gps": [ + 43.4647790726, + -0.57522696758 + ], + "libelle_d_acheminement": "CASTILLON D ARTHEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57522696758, + 43.4647790726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f66beacfc7247c71bc8905c898f62e3e0b64058", + "fields": { + "code_commune_insee": "64187", + "nom_de_la_commune": "CHARRITTE DE BAS", + "code_postal": "64130", + "coordonnees_gps": [ + 43.2950340435, + -0.897219835697 + ], + "libelle_d_acheminement": "CHARRITTE DE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.897219835697, + 43.2950340435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07b28383c604bf18b4b00cb66ce560f025cdeee7", + "fields": { + "code_commune_insee": "64188", + "nom_de_la_commune": "CHERAUTE", + "code_postal": "64130", + "coordonnees_gps": [ + 43.2304528106, + -0.821599852605 + ], + "libelle_d_acheminement": "CHERAUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.821599852605, + 43.2304528106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aed229dc5ec4eb6bfcc4dbb4aef34ee1ffff8017", + "fields": { + "code_commune_insee": "64196", + "nom_de_la_commune": "CROUSEILLES", + "code_postal": "64350", + "coordonnees_gps": [ + 43.5309932657, + -0.0816458802012 + ], + "libelle_d_acheminement": "CROUSEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0816458802012, + 43.5309932657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b574ecb24a1e319b855dd5dc9da526f3288ec3a6", + "fields": { + "code_commune_insee": "64200", + "nom_de_la_commune": "DOAZON", + "code_postal": "64370", + "coordonnees_gps": [ + 43.4553885972, + -0.553044979993 + ], + "libelle_d_acheminement": "DOAZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.553044979993, + 43.4553885972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58ae8690f8c0561ed2e00c4bdda7909b0ae7bb38", + "fields": { + "code_commune_insee": "64203", + "nom_de_la_commune": "DOUMY", + "code_postal": "64450", + "coordonnees_gps": [ + 43.4451222979, + -0.377112446292 + ], + "libelle_d_acheminement": "DOUMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.377112446292, + 43.4451222979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdf43800eceaf9f9c7d83421263bc69ef9a7a30d", + "fields": { + "code_commune_insee": "64205", + "nom_de_la_commune": "ESCOS", + "code_postal": "64270", + "coordonnees_gps": [ + 43.4428467771, + -1.00557759768 + ], + "libelle_d_acheminement": "ESCOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00557759768, + 43.4428467771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b05224d2aa138e86640ea5673380ae61191f3f03", + "fields": { + "code_commune_insee": "64216", + "nom_de_la_commune": "ESPOEY", + "code_postal": "64420", + "coordonnees_gps": [ + 43.2514996266, + -0.155421762891 + ], + "libelle_d_acheminement": "ESPOEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.155421762891, + 43.2514996266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a477688fb4616869d5c2e0ae2aa2bc22eab0f13", + "fields": { + "code_commune_insee": "64223", + "nom_de_la_commune": "ETSAUT", + "code_postal": "64490", + "coordonnees_gps": [ + 42.8973131851, + -0.528220911971 + ], + "libelle_d_acheminement": "ETSAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.528220911971, + 42.8973131851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e66491e2620cc66dba3e3a06f0bbb302d536979", + "fields": { + "code_commune_insee": "64230", + "nom_de_la_commune": "GAN", + "code_postal": "64290", + "coordonnees_gps": [ + 43.2086903788, + -0.410215112205 + ], + "libelle_d_acheminement": "GAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.410215112205, + 43.2086903788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c8e46c475d99696b83e3c84f09ca45bd279132a", + "fields": { + "code_commune_insee": "64236", + "nom_de_la_commune": "GAYON", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4853661293, + -0.165938339941 + ], + "libelle_d_acheminement": "GAYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.165938339941, + 43.4853661293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "946e41035202731f706c2e89eae418cf1ebcf528", + "fields": { + "code_commune_insee": "64237", + "nom_de_la_commune": "GELOS", + "code_postal": "64110", + "coordonnees_gps": [ + 43.2558653705, + -0.36978595434 + ], + "libelle_d_acheminement": "GELOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36978595434, + 43.2558653705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62b92951509d217ebba5f8496c6809e13423447f", + "fields": { + "code_commune_insee": "64259", + "nom_de_la_commune": "HELETTE", + "code_postal": "64640", + "coordonnees_gps": [ + 43.306287983, + -1.24580704734 + ], + "libelle_d_acheminement": "HELETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24580704734, + 43.306287983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c660e4217a6500c89b812716ef59a9e69d621b2c", + "fields": { + "code_commune_insee": "64263", + "nom_de_la_commune": "L HOPITAL D ORION", + "code_postal": "64270", + "coordonnees_gps": [ + 43.441442284, + -0.853283494968 + ], + "libelle_d_acheminement": "L HOPITAL D ORION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.853283494968, + 43.441442284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa1928d000d180c2209132cbbfb6569c9fc82d4c", + "fields": { + "code_commune_insee": "64269", + "nom_de_la_commune": "IDRON", + "code_postal": "64320", + "coordonnees_gps": [ + 43.2983178945, + -0.306106204673 + ], + "libelle_d_acheminement": "IDRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.306106204673, + 43.2983178945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bb72a302e2668c54768b1f5d39055cfe5ca9604", + "fields": { + "code_commune_insee": "64275", + "nom_de_la_commune": "ISPOURE", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1832686174, + -1.23994963712 + ], + "libelle_d_acheminement": "ISPOURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23994963712, + 43.1832686174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50fe928f67de938bdd5b81d9ad2ce42d0f33d5cf", + "fields": { + "code_commune_insee": "64279", + "nom_de_la_commune": "ITXASSOU", + "code_postal": "64250", + "coordonnees_gps": [ + 43.3100742796, + -1.40531371043 + ], + "libelle_d_acheminement": "ITXASSOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40531371043, + 43.3100742796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c5a720034f6a4d81f20fe2081fc67bb647cd2c7", + "fields": { + "code_commune_insee": "64280", + "nom_de_la_commune": "IZESTE", + "code_postal": "64260", + "coordonnees_gps": [ + 43.0842981048, + -0.44404003206 + ], + "libelle_d_acheminement": "IZESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44404003206, + 43.0842981048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e78f316a053024419089e55dde42c6396716a9ed", + "fields": { + "code_commune_insee": "64282", + "nom_de_la_commune": "JATXOU", + "code_postal": "64480", + "coordonnees_gps": [ + 43.4070870725, + -1.41179120283 + ], + "libelle_d_acheminement": "JATXOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41179120283, + 43.4070870725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afd4c2ce3987cd5bc824f12ca8ee86de8a23ce6a", + "fields": { + "code_commune_insee": "64283", + "nom_de_la_commune": "JAXU", + "code_postal": "64220", + "coordonnees_gps": [ + 43.2043840286, + -1.20784344564 + ], + "libelle_d_acheminement": "JAXU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20784344564, + 43.2043840286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24e52616c2531fede3f2fcd4d52309049741a28f", + "fields": { + "code_commune_insee": "64291", + "nom_de_la_commune": "LABASTIDE VILLEFRANCHE", + "code_postal": "64270", + "coordonnees_gps": [ + 43.4542845438, + -1.03617926766 + ], + "libelle_d_acheminement": "LABASTIDE VILLEFRANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03617926766, + 43.4542845438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0062810aa368ed1bf68b8c97e7ce7b0d7898ade7", + "fields": { + "code_commune_insee": "64293", + "nom_de_la_commune": "LABATUT", + "code_postal": "64460", + "coordonnees_gps": [ + 43.4165864025, + -0.0134728274425 + ], + "libelle_d_acheminement": "LABATUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0134728274425, + 43.4165864025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bc44f7193670eed1535c2b5132b7270d00a1e7b", + "fields": { + "code_commune_insee": "64294", + "nom_de_la_commune": "LABETS BISCAY", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3901052681, + -1.06356701774 + ], + "libelle_d_acheminement": "LABETS BISCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06356701774, + 43.3901052681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2710d1e48b55437395465c9601a05480ea9ee603", + "fields": { + "code_commune_insee": "64295", + "nom_de_la_commune": "LABEYRIE", + "code_postal": "64300", + "coordonnees_gps": [ + 43.5417553069, + -0.631736420575 + ], + "libelle_d_acheminement": "LABEYRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.631736420575, + 43.5417553069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e0897448aa0827d8c65d4df2f0cd6d491c37586", + "fields": { + "code_commune_insee": "64297", + "nom_de_la_commune": "LACARRE", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1875203489, + -1.16195961403 + ], + "libelle_d_acheminement": "LACARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16195961403, + 43.1875203489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b667d5f0183591678bbbf3523bd616e45ba5b5a", + "fields": { + "code_commune_insee": "64298", + "nom_de_la_commune": "LACARRY ARHAN CHARRITTE DE HAUT", + "code_postal": "64470", + "coordonnees_gps": [ + 43.0712585016, + -0.950546305865 + ], + "libelle_d_acheminement": "LACARRY ARHAN CHARRITTE DE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.950546305865, + 43.0712585016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "700b707c5d9bfd689816c804a4f88bfe74fe3867", + "fields": { + "code_commune_insee": "64299", + "nom_de_la_commune": "LACOMMANDE", + "code_postal": "64360", + "coordonnees_gps": [ + 43.2762663968, + -0.50925390327 + ], + "libelle_d_acheminement": "LACOMMANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50925390327, + 43.2762663968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0371b6504fc2d5645887a4e94db62c04c4ec3056", + "fields": { + "code_commune_insee": "64300", + "nom_de_la_commune": "LACQ", + "code_postal": "64170", + "coordonnees_gps": [ + 43.4215600876, + -0.612163653339 + ], + "libelle_d_acheminement": "LACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.612163653339, + 43.4215600876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5b66c6b5ecc84f0897d484af65420c408fc217f", + "fields": { + "ligne_5": "AUDEJOS", + "code_commune_insee": "64300", + "libelle_d_acheminement": "LACQ", + "code_postal": "64170", + "nom_de_la_commune": "LACQ", + "coordonnees_gps": [ + 43.4215600876, + -0.612163653339 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.612163653339, + 43.4215600876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84f4a62ff554ae487d3fc0ee50bcad5c3ee9fa85", + "fields": { + "code_commune_insee": "64301", + "nom_de_la_commune": "LAGOR", + "code_postal": "64150", + "coordonnees_gps": [ + 43.382938836, + -0.66718204589 + ], + "libelle_d_acheminement": "LAGOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66718204589, + 43.382938836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c8ec4d81762a76ef11f3cd1a96e6007afd01012", + "fields": { + "code_commune_insee": "64302", + "nom_de_la_commune": "LAGOS", + "code_postal": "64800", + "coordonnees_gps": [ + 43.2122827806, + -0.220943768634 + ], + "libelle_d_acheminement": "LAGOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.220943768634, + 43.2122827806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6c9a84b63e34ce04d221b637d54b14d673379b7", + "fields": { + "code_commune_insee": "64305", + "nom_de_la_commune": "LAHONTAN", + "code_postal": "64270", + "coordonnees_gps": [ + 43.5208233379, + -0.968131907041 + ], + "libelle_d_acheminement": "LAHONTAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.968131907041, + 43.5208233379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f01deaf4fe723c7bf733299299a53f2514a07def", + "fields": { + "code_commune_insee": "64309", + "nom_de_la_commune": "LAMAYOU", + "code_postal": "64460", + "coordonnees_gps": [ + 43.3849922326, + -0.030140439683 + ], + "libelle_d_acheminement": "LAMAYOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.030140439683, + 43.3849922326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88dc801cca3f57ec9092eb117f7a5f9db0802b3a", + "fields": { + "code_commune_insee": "64310", + "nom_de_la_commune": "LANNE EN BARETOUS", + "code_postal": "64570", + "coordonnees_gps": [ + 43.0731187091, + -0.784065423581 + ], + "libelle_d_acheminement": "LANNE EN BARETOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.784065423581, + 43.0731187091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d71be115b936c248898f0454691ec694a21e340", + "fields": { + "code_commune_insee": "64317", + "nom_de_la_commune": "LARRESSORE", + "code_postal": "64480", + "coordonnees_gps": [ + 43.3695046276, + -1.44321557321 + ], + "libelle_d_acheminement": "LARRESSORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44321557321, + 43.3695046276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "270d662f2645b29d485524354918de7ecab1919c", + "fields": { + "code_commune_insee": "64331", + "nom_de_la_commune": "LEMBEYE", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4517373745, + -0.104621641637 + ], + "libelle_d_acheminement": "LEMBEYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.104621641637, + 43.4517373745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2f6a88d150a083ae61daf749cfaebac40aa8ba6", + "fields": { + "code_commune_insee": "64335", + "nom_de_la_commune": "LESCAR", + "code_postal": "64230", + "coordonnees_gps": [ + 43.3404556993, + -0.428066847423 + ], + "libelle_d_acheminement": "LESCAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.428066847423, + 43.3404556993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0518546f91db9cac5b673d8aa6da465a871bfda5", + "fields": { + "code_commune_insee": "64344", + "nom_de_la_commune": "LIVRON", + "code_postal": "64530", + "coordonnees_gps": [ + 43.2327692583, + -0.127683079228 + ], + "libelle_d_acheminement": "LIVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.127683079228, + 43.2327692583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f698e870b33fa351518132ac05374ae153e9e66", + "fields": { + "code_commune_insee": "64352", + "nom_de_la_commune": "LOURENTIES", + "code_postal": "64420", + "coordonnees_gps": [ + 43.2864004571, + -0.159610916229 + ], + "libelle_d_acheminement": "LOURENTIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.159610916229, + 43.2864004571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d56a4fb1c66f53180b2942f623c9bd334d9962d1", + "fields": { + "code_commune_insee": "64355", + "nom_de_la_commune": "LOUVIGNY", + "code_postal": "64410", + "coordonnees_gps": [ + 43.5050422971, + -0.445140263297 + ], + "libelle_d_acheminement": "LOUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.445140263297, + 43.5050422971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ece9c027d063031ef86f50a3b016a3b880880dd7", + "fields": { + "code_commune_insee": "64358", + "nom_de_la_commune": "LUCGARIER", + "code_postal": "64420", + "coordonnees_gps": [ + 43.2320475565, + -0.194294488173 + ], + "libelle_d_acheminement": "LUCGARIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.194294488173, + 43.2320475565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28fe4c050f4ece6d42d322cecb2a25c45638a171", + "fields": { + "code_commune_insee": "64360", + "nom_de_la_commune": "LURBE ST CHRISTAU", + "code_postal": "64660", + "coordonnees_gps": [ + 43.1077815258, + -0.60256135415 + ], + "libelle_d_acheminement": "LURBE ST CHRISTAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60256135415, + 43.1077815258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeb4e115f34065c73962aa4d6eee0b79f13f5fe3", + "fields": { + "code_commune_insee": "64381", + "nom_de_la_commune": "MERITEIN", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3386651984, + -0.750086761557 + ], + "libelle_d_acheminement": "MERITEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.750086761557, + 43.3386651984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b23ddba17318fb656444189117bac54022183b1", + "fields": { + "code_commune_insee": "64382", + "nom_de_la_commune": "MESPLEDE", + "code_postal": "64370", + "coordonnees_gps": [ + 43.494020254, + -0.652404668429 + ], + "libelle_d_acheminement": "MESPLEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.652404668429, + 43.494020254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82400f4b2676e9edbd350d495211811bd7dc8b6f", + "fields": { + "ligne_5": "GOUZE", + "code_commune_insee": "64396", + "libelle_d_acheminement": "MONT", + "code_postal": "64300", + "nom_de_la_commune": "MONT", + "coordonnees_gps": [ + 43.4270216184, + -0.659420644515 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.659420644515, + 43.4270216184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f2bcbc0ed74905e194e8d39eaee195ff1a27e75", + "fields": { + "code_commune_insee": "64400", + "nom_de_la_commune": "MONTAUT", + "code_postal": "64800", + "coordonnees_gps": [ + 43.1325527294, + -0.181058529507 + ], + "libelle_d_acheminement": "MONTAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.181058529507, + 43.1325527294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cd6fa35f1539bade9a0cdaf8289d30ac0fc7680", + "fields": { + "code_commune_insee": "64403", + "nom_de_la_commune": "MONTFORT", + "code_postal": "64190", + "coordonnees_gps": [ + 43.368781372, + -0.864438809018 + ], + "libelle_d_acheminement": "MONTFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.864438809018, + 43.368781372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b9cf86f9b10da69d15d38d49de39d8e99a5316d", + "fields": { + "code_commune_insee": "64408", + "nom_de_la_commune": "MOUHOUS", + "code_postal": "64330", + "coordonnees_gps": [ + 43.4918785951, + -0.25442895349 + ], + "libelle_d_acheminement": "MOUHOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.25442895349, + 43.4918785951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e63f4f4aa8be8229f0735fbc92dffe356c47a7b", + "fields": { + "code_commune_insee": "64412", + "nom_de_la_commune": "NABAS", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3317101736, + -0.888663049804 + ], + "libelle_d_acheminement": "NABAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.888663049804, + 43.3317101736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82f56bd976ec76e9c13c629a908249a62deed0ea", + "fields": { + "code_commune_insee": "64414", + "nom_de_la_commune": "NARP", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3839548451, + -0.825430886901 + ], + "libelle_d_acheminement": "NARP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.825430886901, + 43.3839548451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc9cb42199e6bd8af3784771fc493514a701d1d5", + "fields": { + "code_commune_insee": "64417", + "nom_de_la_commune": "NAY", + "code_postal": "64800", + "coordonnees_gps": [ + 43.1761249342, + -0.263143755533 + ], + "libelle_d_acheminement": "NAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.263143755533, + 43.1761249342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a27b0c5008b3366f5ff67c301be74815285478a", + "fields": { + "code_commune_insee": "64425", + "nom_de_la_commune": "OREGUE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.4048811444, + -1.16532813582 + ], + "libelle_d_acheminement": "OREGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16532813582, + 43.4048811444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af1e33e97dc75f76991b1b6fc9047eeeb35b8167", + "fields": { + "code_commune_insee": "64433", + "nom_de_la_commune": "OSSE EN ASPE", + "code_postal": "64490", + "coordonnees_gps": [ + 43.0104152948, + -0.669602106566 + ], + "libelle_d_acheminement": "OSSE EN ASPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.669602106566, + 43.0104152948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bae1df944d0634e92bd3de170abc0600e30d980", + "fields": { + "code_commune_insee": "64438", + "nom_de_la_commune": "OUILLON", + "code_postal": "64160", + "coordonnees_gps": [ + 43.326993012, + -0.227554610182 + ], + "libelle_d_acheminement": "OUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.227554610182, + 43.326993012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fccc07ec0783bac537d6a1eda2a018c2b55f9f74", + "fields": { + "code_commune_insee": "64443", + "nom_de_la_commune": "PARDIES", + "code_postal": "64150", + "coordonnees_gps": [ + 43.3669144852, + -0.586119410196 + ], + "libelle_d_acheminement": "PARDIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.586119410196, + 43.3669144852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60eb41e741fe5ed77ea32275d5b157f286e7b1bd", + "fields": { + "code_commune_insee": "64450", + "nom_de_la_commune": "POMPS", + "code_postal": "64370", + "coordonnees_gps": [ + 43.4857880693, + -0.553202333963 + ], + "libelle_d_acheminement": "POMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.553202333963, + 43.4857880693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71167f4c0a70ddc5dd3107df161e89db7134590d", + "fields": { + "code_commune_insee": "64451", + "nom_de_la_commune": "PONSON DEBAT POUTS", + "code_postal": "64460", + "coordonnees_gps": [ + 43.3304533156, + -0.0494811878674 + ], + "libelle_d_acheminement": "PONSON DEBAT POUTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0494811878674, + 43.3304533156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7048cf482e2c4fc4618a19e503191caab58ee2f6", + "fields": { + "code_commune_insee": "64471", + "nom_de_la_commune": "ST BOES", + "code_postal": "64300", + "coordonnees_gps": [ + 43.5290119415, + -0.806166229833 + ], + "libelle_d_acheminement": "ST BOES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.806166229833, + 43.5290119415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcc4063854a8dd0ca79386f332481164b882f809", + "fields": { + "code_commune_insee": "64483", + "nom_de_la_commune": "ST JEAN DE LUZ", + "code_postal": "64500", + "coordonnees_gps": [ + 43.3947886873, + -1.63099021573 + ], + "libelle_d_acheminement": "ST JEAN DE LUZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63099021573, + 43.3947886873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee3369fa53500a4348d3cd82e65f02b6b8277328", + "fields": { + "code_commune_insee": "64490", + "nom_de_la_commune": "ST MARTIN D ARROSSA", + "code_postal": "64780", + "coordonnees_gps": [ + 43.2283517771, + -1.31623061822 + ], + "libelle_d_acheminement": "ST MARTIN D ARROSSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31623061822, + 43.2283517771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81b35b3b88013d6c777aedb42430020b59d512ac", + "fields": { + "ligne_5": "EYHARCE", + "code_commune_insee": "64490", + "libelle_d_acheminement": "ST MARTIN D ARROSSA", + "code_postal": "64780", + "nom_de_la_commune": "ST MARTIN D ARROSSA", + "coordonnees_gps": [ + 43.2283517771, + -1.31623061822 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31623061822, + 43.2283517771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ebaff6e873a478f4d8bee72fa6773b97ff0428b", + "fields": { + "code_commune_insee": "64493", + "nom_de_la_commune": "ST PALAIS", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3153764046, + -1.0377471932 + ], + "libelle_d_acheminement": "ST PALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0377471932, + 43.3153764046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92d15b68386577d6c68b204a80b606b83e115bc4", + "fields": { + "code_commune_insee": "64494", + "nom_de_la_commune": "ST PE DE LEREN", + "code_postal": "64270", + "coordonnees_gps": [ + 43.4909560582, + -1.03877508063 + ], + "libelle_d_acheminement": "ST PE DE LEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03877508063, + 43.4909560582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d658ac00f4dd13d56f8001d27ebd78d1ccabb5af", + "fields": { + "code_commune_insee": "64498", + "nom_de_la_commune": "ST VINCENT", + "code_postal": "64800", + "coordonnees_gps": [ + 43.1610140979, + -0.159752736727 + ], + "libelle_d_acheminement": "ST VINCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.159752736727, + 43.1610140979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d82076626901831c7cb42b5fd9922fbf643828c7", + "fields": { + "code_commune_insee": "64500", + "nom_de_la_commune": "SALLES MONGISCARD", + "code_postal": "64300", + "coordonnees_gps": [ + 43.4855052626, + -0.839260147941 + ], + "libelle_d_acheminement": "SALLES MONGISCARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.839260147941, + 43.4855052626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dad18773e47530d823854da2bc9432f934e49c9", + "fields": { + "code_commune_insee": "64506", + "nom_de_la_commune": "SARRANCE", + "code_postal": "64490", + "coordonnees_gps": [ + 43.0446957599, + -0.575631142614 + ], + "libelle_d_acheminement": "SARRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.575631142614, + 43.0446957599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14eae49aa58da8f441da0101b54517353fa1a5ca", + "fields": { + "code_commune_insee": "64507", + "nom_de_la_commune": "SAUBOLE", + "code_postal": "64420", + "coordonnees_gps": [ + 43.3105788075, + -0.112194249958 + ], + "libelle_d_acheminement": "SAUBOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.112194249958, + 43.3105788075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17628b13aa1724df19ad8ce118f8e6329640d263", + "fields": { + "code_commune_insee": "64508", + "nom_de_la_commune": "SAUCEDE", + "code_postal": "64400", + "coordonnees_gps": [ + 43.2656744342, + -0.669441853203 + ], + "libelle_d_acheminement": "SAUCEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.669441853203, + 43.2656744342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc9ad645f6e432fce52b056ddf566e6eedcc2e5b", + "fields": { + "code_commune_insee": "64511", + "nom_de_la_commune": "SAUVAGNON", + "code_postal": "64230", + "coordonnees_gps": [ + 43.3933131319, + -0.389091623871 + ], + "libelle_d_acheminement": "SAUVAGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.389091623871, + 43.3933131319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70525dcefa942e35d115e0c8b114aeb53c16e354", + "fields": { + "code_commune_insee": "64517", + "nom_de_la_commune": "SEMEACQ BLACHON", + "code_postal": "64350", + "coordonnees_gps": [ + 43.5034837711, + -0.107040592287 + ], + "libelle_d_acheminement": "SEMEACQ BLACHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.107040592287, + 43.5034837711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17bda867188ddcb2cbda355931c88e5226df90de", + "fields": { + "code_commune_insee": "64526", + "nom_de_la_commune": "SOUMOULOU", + "code_postal": "64420", + "coordonnees_gps": [ + 43.2616113493, + -0.192918125557 + ], + "libelle_d_acheminement": "SOUMOULOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.192918125557, + 43.2616113493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a22fd3f3b5304a5c01c0a8af059357774a6dee96", + "fields": { + "code_commune_insee": "64527", + "nom_de_la_commune": "SOURAIDE", + "code_postal": "64250", + "coordonnees_gps": [ + 43.3438919475, + -1.48818031049 + ], + "libelle_d_acheminement": "SOURAIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48818031049, + 43.3438919475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0e3aa6e2e660e5693e5c7329b5ce1b7920f8119", + "fields": { + "code_commune_insee": "64535", + "nom_de_la_commune": "TARSACQ", + "code_postal": "64360", + "coordonnees_gps": [ + 43.3557575881, + -0.531704585094 + ], + "libelle_d_acheminement": "TARSACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.531704585094, + 43.3557575881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc99c887900d6857aedccd4edf3d7d671561cc83", + "fields": { + "code_commune_insee": "64537", + "nom_de_la_commune": "TROIS VILLES", + "code_postal": "64470", + "coordonnees_gps": [ + 43.1398804842, + -0.865595669268 + ], + "libelle_d_acheminement": "TROIS VILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.865595669268, + 43.1398804842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55ce4394983d41a914dcca440235fc3bbe82e6e7", + "fields": { + "code_commune_insee": "64544", + "nom_de_la_commune": "UROST", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3400983469, + -0.150921233415 + ], + "libelle_d_acheminement": "UROST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.150921233415, + 43.3400983469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeaaed733797cb210cb239d14d3930e332e67be9", + "fields": { + "code_commune_insee": "64545", + "nom_de_la_commune": "URRUGNE", + "code_postal": "64122", + "coordonnees_gps": [ + 43.3497136026, + -1.69722838309 + ], + "libelle_d_acheminement": "URRUGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69722838309, + 43.3497136026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3659ad99c2d2ff596d33492bbcd6d6f503942290", + "fields": { + "code_commune_insee": "64547", + "nom_de_la_commune": "USTARITZ", + "code_postal": "64480", + "coordonnees_gps": [ + 43.401807303, + -1.4751898518 + ], + "libelle_d_acheminement": "USTARITZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4751898518, + 43.401807303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a34f2fef9e8f850893eaf0c032c646b9ec3d1e25", + "fields": { + "code_commune_insee": "64549", + "nom_de_la_commune": "UZEIN", + "code_postal": "64230", + "coordonnees_gps": [ + 43.3960752682, + -0.432656657054 + ], + "libelle_d_acheminement": "UZEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.432656657054, + 43.3960752682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc255b0296cc48d2262ecbc812b1e94ae6df832e", + "fields": { + "code_commune_insee": "64550", + "nom_de_la_commune": "UZOS", + "code_postal": "64110", + "coordonnees_gps": [ + 43.2607603254, + -0.349153042882 + ], + "libelle_d_acheminement": "UZOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.349153042882, + 43.2607603254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d531ba69ea5f5742083267c3a9d6d558fda551d", + "fields": { + "code_commune_insee": "64551", + "nom_de_la_commune": "VERDETS", + "code_postal": "64400", + "coordonnees_gps": [ + 43.232186115, + -0.642308183699 + ], + "libelle_d_acheminement": "VERDETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.642308183699, + 43.232186115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afc1264783f3cb9c1c29e4793cd984e1c8f0ed96", + "fields": { + "code_commune_insee": "64554", + "nom_de_la_commune": "VIELLENAVE D ARTHEZ", + "code_postal": "64170", + "coordonnees_gps": [ + 43.412202813, + -0.47673612803 + ], + "libelle_d_acheminement": "VIELLENAVE D ARTHEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47673612803, + 43.412202813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "737f2f376fdb25e422384d00b0032ace10b79b27", + "fields": { + "code_commune_insee": "65007", + "nom_de_la_commune": "ANDREST", + "code_postal": "65390", + "coordonnees_gps": [ + 43.3162323845, + 0.0661292310469 + ], + "libelle_d_acheminement": "ANDREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0661292310469, + 43.3162323845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82730d362a3b587e572ccd59af8c8173ff8b1756", + "fields": { + "code_commune_insee": "65011", + "nom_de_la_commune": "LES ANGLES", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0840991852, + 0.00392016448307 + ], + "libelle_d_acheminement": "LES ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00392016448307, + 43.0840991852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c229c3472d39397063a32b2c65a81f83af01b4c9", + "fields": { + "code_commune_insee": "65016", + "nom_de_la_commune": "ANTIST", + "code_postal": "65200", + "coordonnees_gps": [ + 43.1198806357, + 0.135249572657 + ], + "libelle_d_acheminement": "ANTIST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.135249572657, + 43.1198806357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96884de731946f0d261946366233040eb025becf", + "fields": { + "code_commune_insee": "65019", + "nom_de_la_commune": "ARCIZAC ADOUR", + "code_postal": "65360", + "coordonnees_gps": [ + 43.1496570834, + 0.0906664946254 + ], + "libelle_d_acheminement": "ARCIZAC ADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0906664946254, + 43.1496570834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02bd84bcd0253e86e10dee3564a4501a2006e2db", + "fields": { + "code_commune_insee": "65021", + "nom_de_la_commune": "ARCIZANS AVANT", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9591847371, + -0.119079504665 + ], + "libelle_d_acheminement": "ARCIZANS AVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.119079504665, + 42.9591847371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2783b96a68cbc63fb823b3955186f89a06c3653", + "fields": { + "code_commune_insee": "65023", + "nom_de_la_commune": "ARDENGOST", + "code_postal": "65240", + "coordonnees_gps": [ + 42.9275389079, + 0.414150481685 + ], + "libelle_d_acheminement": "ARDENGOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.414150481685, + 42.9275389079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c69007d912ec159b17dd28e60cbe0dd976a18ae7", + "fields": { + "code_commune_insee": "65026", + "nom_de_la_commune": "ARIES ESPENAN", + "code_postal": "65230", + "coordonnees_gps": [ + 43.2757729573, + 0.53011685665 + ], + "libelle_d_acheminement": "ARIES ESPENAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53011685665, + 43.2757729573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfcd370d319bd7164f5b717421ad14aefd1c0e21", + "fields": { + "code_commune_insee": "65033", + "nom_de_la_commune": "ARRODETS EZ ANGLES", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0705428308, + 0.0409733731908 + ], + "libelle_d_acheminement": "ARRODETS EZ ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0409733731908, + 43.0705428308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8b1f9510bdcba7beb3517a5a0f575f53a383e5d", + "fields": { + "code_commune_insee": "65036", + "nom_de_la_commune": "ARTALENS SOUIN", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9782578727, + -0.0414043062586 + ], + "libelle_d_acheminement": "ARTALENS SOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0414043062586, + 42.9782578727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5bd1ccbf964e2b252a4be7680c007bf4ddb4f72", + "fields": { + "code_commune_insee": "65041", + "nom_de_la_commune": "ASQUE", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0249620557, + 0.252854845671 + ], + "libelle_d_acheminement": "ASQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.252854845671, + 43.0249620557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5db725a143415d2423ed05f34acc8d63f9eb2d35", + "fields": { + "code_commune_insee": "65043", + "nom_de_la_commune": "ASTUGUE", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0973955816, + 0.072326458171 + ], + "libelle_d_acheminement": "ASTUGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.072326458171, + 43.0973955816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d6dbf7f60895b9c9a19147621f720f5d7dfd10f", + "fields": { + "code_commune_insee": "65048", + "nom_de_la_commune": "AURENSAN", + "code_postal": "65390", + "coordonnees_gps": [ + 43.3062200799, + 0.0955012093615 + ], + "libelle_d_acheminement": "AURENSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0955012093615, + 43.3062200799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4584a0d878cfb22dfb85d1edf7eaba08a312ebde", + "fields": { + "code_commune_insee": "65053", + "nom_de_la_commune": "AVEUX", + "code_postal": "65370", + "coordonnees_gps": [ + 43.0085622623, + 0.563703514189 + ], + "libelle_d_acheminement": "AVEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.563703514189, + 43.0085622623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "242815cae135813e3175f353e4514766b3ea6843", + "fields": { + "code_commune_insee": "65058", + "nom_de_la_commune": "AZET", + "code_postal": "65170", + "coordonnees_gps": [ + 42.7786994405, + 0.359541705229 + ], + "libelle_d_acheminement": "AZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.359541705229, + 42.7786994405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dcdbb5b7911576ad35d9360fa120d9aeea7bf1c", + "fields": { + "code_commune_insee": "65061", + "nom_de_la_commune": "BARBACHEN", + "code_postal": "65140", + "coordonnees_gps": [ + 43.4291256681, + 0.12612843943 + ], + "libelle_d_acheminement": "BARBACHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12612843943, + 43.4291256681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94f58c48b64ed75031dd7dbe75776d83fcd68213", + "fields": { + "code_commune_insee": "65065", + "nom_de_la_commune": "BARLEST", + "code_postal": "65100", + "coordonnees_gps": [ + 43.1500535146, + -0.0958058355214 + ], + "libelle_d_acheminement": "BARLEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0958058355214, + 43.1500535146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f9b87a002db0630c48555cfd47663f936a0038e", + "fields": { + "code_commune_insee": "65071", + "nom_de_la_commune": "BATSERE", + "code_postal": "65130", + "coordonnees_gps": [ + 43.059770593, + 0.284319513747 + ], + "libelle_d_acheminement": "BATSERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.284319513747, + 43.059770593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a54daaed24f5edd2b4849216fa49d28b31088b2", + "fields": { + "ligne_5": "BENQUE", + "code_commune_insee": "65081", + "libelle_d_acheminement": "BENQUE MOLERE", + "code_postal": "65130", + "nom_de_la_commune": "BENQUE MOLERE", + "coordonnees_gps": [ + 43.0967455334, + 0.279787256256 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.279787256256, + 43.0967455334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64bb43b5e77b585cbcc7f1376e0da597872e90e9", + "fields": { + "code_commune_insee": "65088", + "nom_de_la_commune": "BETBEZE", + "code_postal": "65230", + "coordonnees_gps": [ + 43.2898534376, + 0.572647104239 + ], + "libelle_d_acheminement": "BETBEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.572647104239, + 43.2898534376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1be16a23edd226c98345ddfebaa1a432377f0ad", + "fields": { + "code_commune_insee": "65097", + "nom_de_la_commune": "BONREPOS", + "code_postal": "65330", + "coordonnees_gps": [ + 43.1931725535, + 0.381397370482 + ], + "libelle_d_acheminement": "BONREPOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.381397370482, + 43.1931725535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfc31fd893ea4bb621568b7ab44e071de7579766", + "fields": { + "code_commune_insee": "65105", + "nom_de_la_commune": "BOURG DE BIGORRE", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0860330702, + 0.257177493123 + ], + "libelle_d_acheminement": "BOURG DE BIGORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.257177493123, + 43.0860330702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04e05f081f692e751b3dbfef27b58ef2e977df44", + "fields": { + "code_commune_insee": "65109", + "nom_de_la_commune": "BRAMEVAQUE", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9775013643, + 0.559652236891 + ], + "libelle_d_acheminement": "BRAMEVAQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.559652236891, + 42.9775013643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "717c163c05129d516ec9e14315278b1f45e53a03", + "fields": { + "code_commune_insee": "65113", + "nom_de_la_commune": "BURG", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1876222355, + 0.317969712946 + ], + "libelle_d_acheminement": "BURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.317969712946, + 43.1876222355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14a57cb0b41978e8a9579281a246dd399306ec4d", + "fields": { + "code_commune_insee": "65115", + "nom_de_la_commune": "CABANAC", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2733956234, + 0.225559355522 + ], + "libelle_d_acheminement": "CABANAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.225559355522, + 43.2733956234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15136fe5e4b7bc9f013fcabeaf12bd06c17b6fd4", + "fields": { + "ligne_5": "ARTIGUES CAMPAN", + "code_commune_insee": "65123", + "libelle_d_acheminement": "CAMPAN", + "code_postal": "65710", + "nom_de_la_commune": "CAMPAN", + "coordonnees_gps": [ + 42.9614883707, + 0.217031289795 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.217031289795, + 42.9614883707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e05719b8f36d13aeb344c017bde548ff07b9716", + "fields": { + "ligne_5": "GRIPP", + "code_commune_insee": "65123", + "libelle_d_acheminement": "CAMPAN", + "code_postal": "65710", + "nom_de_la_commune": "CAMPAN", + "coordonnees_gps": [ + 42.9614883707, + 0.217031289795 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.217031289795, + 42.9614883707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37d9318c97713469b07963527c15f85670794ecd", + "fields": { + "code_commune_insee": "65134", + "nom_de_la_commune": "CASTERETS", + "code_postal": "65230", + "coordonnees_gps": [ + 43.3154419047, + 0.582927112072 + ], + "libelle_d_acheminement": "CASTERETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.582927112072, + 43.3154419047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ca8747debe070598e29ea0946b8173b91adb466", + "fields": { + "code_commune_insee": "65135", + "nom_de_la_commune": "CASTILLON", + "code_postal": "65130", + "coordonnees_gps": [ + 43.094301823, + 0.221465619218 + ], + "libelle_d_acheminement": "CASTILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.221465619218, + 43.094301823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e86cf4bfd76672556da13f045cd8b0722f04746", + "fields": { + "code_commune_insee": "65139", + "nom_de_la_commune": "CAZARILH", + "code_postal": "65370", + "coordonnees_gps": [ + 42.950946353, + 0.589319300613 + ], + "libelle_d_acheminement": "CAZARILH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.589319300613, + 42.950946353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b3738b264f26e1b8fee3abb241851a4fa7aa0af", + "fields": { + "ligne_5": "ANERAN CAMORS", + "code_commune_insee": "65141", + "libelle_d_acheminement": "CAZAUX FRECHET ANERAN CAMORS", + "code_postal": "65240", + "nom_de_la_commune": "CAZAUX FRECHET ANERAN CAMORS", + "coordonnees_gps": [ + 42.8433198052, + 0.433537773802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.433537773802, + 42.8433198052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "311911c1b1f44ea0ea6c939c0c9f96a85368df87", + "fields": { + "ligne_5": "CAZAUX FRECHET", + "code_commune_insee": "65141", + "libelle_d_acheminement": "CAZAUX FRECHET ANERAN CAMORS", + "code_postal": "65240", + "nom_de_la_commune": "CAZAUX FRECHET ANERAN CAMORS", + "coordonnees_gps": [ + 42.8433198052, + 0.433537773802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.433537773802, + 42.8433198052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b250e1032ba6bf413e097c927430d325f0e5071", + "fields": { + "code_commune_insee": "65149", + "nom_de_la_commune": "CLARAC", + "code_postal": "65190", + "coordonnees_gps": [ + 43.2189623801, + 0.251872148873 + ], + "libelle_d_acheminement": "CLARAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.251872148873, + 43.2189623801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfa8e3551f105287fc69fbe5c82b15e8739b50c9", + "fields": { + "code_commune_insee": "65166", + "nom_de_la_commune": "ESPECHE", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0616013882, + 0.301518033021 + ], + "libelle_d_acheminement": "ESPECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301518033021, + 43.0616013882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4259c205888e16cc8ca35666bc4f3537bb6fe4c1", + "fields": { + "code_commune_insee": "65173", + "nom_de_la_commune": "ESTERRE", + "code_postal": "65120", + "coordonnees_gps": [ + 42.8715920542, + 0.0105585516206 + ], + "libelle_d_acheminement": "ESTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0105585516206, + 42.8715920542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae0ee204cf6f54e8b02756998043688226b68914", + "fields": { + "code_commune_insee": "65180", + "nom_de_la_commune": "FRECHET AURE", + "code_postal": "65240", + "coordonnees_gps": [ + 42.9266185238, + 0.379649905195 + ], + "libelle_d_acheminement": "FRECHET AURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.379649905195, + 42.9266185238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77f9615e0adcc132c81e7a8387d3689132f6871c", + "fields": { + "code_commune_insee": "65183", + "nom_de_la_commune": "GALAN", + "code_postal": "65330", + "coordonnees_gps": [ + 43.2229884965, + 0.403470787681 + ], + "libelle_d_acheminement": "GALAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.403470787681, + 43.2229884965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e85ee9c3a3ba2651f2c1d336b87828189ac56cff", + "fields": { + "code_commune_insee": "65184", + "nom_de_la_commune": "GALEZ", + "code_postal": "65330", + "coordonnees_gps": [ + 43.1867712791, + 0.406830649029 + ], + "libelle_d_acheminement": "GALEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.406830649029, + 43.1867712791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee1d69689382ffdc96571b557d7a2adbd459dd8d", + "fields": { + "code_commune_insee": "65187", + "nom_de_la_commune": "GAUSSAN", + "code_postal": "65670", + "coordonnees_gps": [ + 43.2227037647, + 0.478344428126 + ], + "libelle_d_acheminement": "GAUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.478344428126, + 43.2227037647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7144577246f7a6e149d95cb03354b94b1d279c8", + "fields": { + "ligne_5": "GAVARNIE", + "code_commune_insee": "65192", + "libelle_d_acheminement": "GAVARNIE GEDRE", + "code_postal": "65120", + "nom_de_la_commune": "GAVARNIE GEDRE", + "coordonnees_gps": [ + 42.766573981, + 0.041488959159 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.041488959159, + 42.766573981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "783ec94840ecfd8136537307ea4c60491457b379", + "fields": { + "code_commune_insee": "65196", + "nom_de_la_commune": "GENSAC", + "code_postal": "65140", + "coordonnees_gps": [ + 43.4335645933, + 0.0908531453962 + ], + "libelle_d_acheminement": "GENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0908531453962, + 43.4335645933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83db0c4610962a2f4c6fb5fd27b88b5625b3aefd", + "fields": { + "code_commune_insee": "65197", + "nom_de_la_commune": "GER", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0533440987, + -0.041359283067 + ], + "libelle_d_acheminement": "GER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.041359283067, + 43.0533440987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7651e2b0519e5367a96ec63d548dc97977618d14", + "fields": { + "code_commune_insee": "65201", + "nom_de_la_commune": "GEU", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0400523893, + -0.0525256694523 + ], + "libelle_d_acheminement": "GEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0525256694523, + 43.0400523893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c0b8dcf81cfe10d837a77084277af47b5a581be", + "fields": { + "code_commune_insee": "65204", + "nom_de_la_commune": "GONEZ", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2336842296, + 0.20961075838 + ], + "libelle_d_acheminement": "GONEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.20961075838, + 43.2336842296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf2c3f11079dcc87040bba4035f899da97231689", + "fields": { + "code_commune_insee": "65213", + "nom_de_la_commune": "GUIZERIX", + "code_postal": "65230", + "coordonnees_gps": [ + 43.3229464044, + 0.453311797259 + ], + "libelle_d_acheminement": "GUIZERIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.453311797259, + 43.3229464044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afe6c4b6c832169cd8f37e3e8c10613d28abd570", + "fields": { + "ligne_5": "REBOUC", + "code_commune_insee": "65218", + "libelle_d_acheminement": "HECHES", + "code_postal": "65250", + "nom_de_la_commune": "HECHES", + "coordonnees_gps": [ + 42.9998996047, + 0.373888635101 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.373888635101, + 42.9998996047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c63f11696e58fe4f8f7275abbe46f4ebf6290144", + "fields": { + "code_commune_insee": "65237", + "nom_de_la_commune": "JUNCALAS", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0527699826, + 0.00117393417508 + ], + "libelle_d_acheminement": "JUNCALAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00117393417508, + 43.0527699826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5a76e4212caed28c089f0d2316f33d6761a783f", + "fields": { + "code_commune_insee": "65241", + "nom_de_la_commune": "LABORDE", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0340643997, + 0.294781061742 + ], + "libelle_d_acheminement": "LABORDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.294781061742, + 43.0340643997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e4981ce4b05c8cc4d8f9b00b1f39c973b44936c", + "fields": { + "code_commune_insee": "65244", + "nom_de_la_commune": "LAGARDE", + "code_postal": "65320", + "coordonnees_gps": [ + 43.3040330291, + 0.0211696262511 + ], + "libelle_d_acheminement": "LAGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0211696262511, + 43.3040330291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e19ce8de4e1b051cc087cb703eedc1b69b30390", + "fields": { + "code_commune_insee": "65249", + "nom_de_la_commune": "LALANNE", + "code_postal": "65230", + "coordonnees_gps": [ + 43.2735240227, + 0.581021273893 + ], + "libelle_d_acheminement": "LALANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.581021273893, + 43.2735240227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48f7e0bf439c1060d0e033b02138d9519ac8f22c", + "fields": { + "code_commune_insee": "65270", + "nom_de_la_commune": "LESPOUEY", + "code_postal": "65190", + "coordonnees_gps": [ + 43.2123292378, + 0.172154745019 + ], + "libelle_d_acheminement": "LESPOUEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.172154745019, + 43.2123292378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a6dbdbf79e6197fb5d5f6197ae82bcbd620863c", + "fields": { + "code_commune_insee": "65276", + "nom_de_la_commune": "LIZOS", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2589588685, + 0.146081263735 + ], + "libelle_d_acheminement": "LIZOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.146081263735, + 43.2589588685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1a586217ef82d1e83157228f789a0ef35ceb58e", + "fields": { + "code_commune_insee": "65293", + "nom_de_la_commune": "LUSTAR", + "code_postal": "65220", + "coordonnees_gps": [ + 43.2694349953, + 0.340455146819 + ], + "libelle_d_acheminement": "LUSTAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.340455146819, + 43.2694349953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac5f796306b7fd8ab69e82f2e608eb2b43321082", + "fields": { + "code_commune_insee": "65298", + "nom_de_la_commune": "MARQUERIE", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2592951961, + 0.208002985993 + ], + "libelle_d_acheminement": "MARQUERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.208002985993, + 43.2592951961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f82959af35bb5708118581d61f210809637bccb", + "fields": { + "code_commune_insee": "65299", + "nom_de_la_commune": "MARSAC", + "code_postal": "65500", + "coordonnees_gps": [ + 43.3299316069, + 0.0847711611787 + ], + "libelle_d_acheminement": "MARSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0847711611787, + 43.3299316069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10b149d5fc25cf361b67923b5bdc8bf12dcad129", + "fields": { + "code_commune_insee": "65307", + "nom_de_la_commune": "MAZERES DE NESTE", + "code_postal": "65150", + "coordonnees_gps": [ + 43.0760786715, + 0.540392902484 + ], + "libelle_d_acheminement": "MAZERES DE NESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.540392902484, + 43.0760786715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97847d7194c840d85d1aa3dba818aed7ec486f3d", + "fields": { + "code_commune_insee": "65310", + "nom_de_la_commune": "MERILHEU", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0996506102, + 0.179357214328 + ], + "libelle_d_acheminement": "MERILHEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.179357214328, + 43.0996506102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d46637182d86af97ae9ef22da2a42768928f9de", + "fields": { + "code_commune_insee": "65311", + "nom_de_la_commune": "MINGOT", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3742203643, + 0.171415164704 + ], + "libelle_d_acheminement": "MINGOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.171415164704, + 43.3742203643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "504998124986523ff5c7ab7413f631c9c7fef909", + "fields": { + "code_commune_insee": "65314", + "nom_de_la_commune": "MONFAUCON", + "code_postal": "65140", + "coordonnees_gps": [ + 43.4543600444, + 0.120919395519 + ], + "libelle_d_acheminement": "MONFAUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.120919395519, + 43.4543600444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "060f5f01049815fa757165fa64586da61b6e0ef1", + "fields": { + "code_commune_insee": "65323", + "nom_de_la_commune": "MONTSERIE", + "code_postal": "65150", + "coordonnees_gps": [ + 43.0493730572, + 0.437520292 + ], + "libelle_d_acheminement": "MONTSERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.437520292, + 43.0493730572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c24da61bc407dc3b2df4f158fb2b124fe5f2fae", + "fields": { + "code_commune_insee": "65329", + "nom_de_la_commune": "NISTOS", + "code_postal": "65150", + "coordonnees_gps": [ + 42.9901954674, + 0.462879990115 + ], + "libelle_d_acheminement": "NISTOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.462879990115, + 42.9901954674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb6eaa4c6ccf3d456a01e9c01363f02d5d76a88a", + "fields": { + "code_commune_insee": "65338", + "nom_de_la_commune": "ORIGNAC", + "code_postal": "65200", + "coordonnees_gps": [ + 43.1260618827, + 0.168829805939 + ], + "libelle_d_acheminement": "ORIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.168829805939, + 43.1260618827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5138fc8bdc0ae7c226d3998089517d671d667095", + "fields": { + "code_commune_insee": "65339", + "nom_de_la_commune": "ORINCLES", + "code_postal": "65380", + "coordonnees_gps": [ + 43.1235842747, + 0.0409425529196 + ], + "libelle_d_acheminement": "ORINCLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0409425529196, + 43.1235842747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05bf90d061936f06d70347e317a8660fd96bddfb", + "fields": { + "code_commune_insee": "65341", + "nom_de_la_commune": "OROIX", + "code_postal": "65320", + "coordonnees_gps": [ + 43.2948050605, + -0.0231123059147 + ], + "libelle_d_acheminement": "OROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0231123059147, + 43.2948050605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bc0f7b503c674dddb100fc9d1d52b90324be57b", + "fields": { + "code_commune_insee": "65343", + "nom_de_la_commune": "OSSEN", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0638671027, + -0.0763064224879 + ], + "libelle_d_acheminement": "OSSEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0763064224879, + 43.0638671027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59e3c68132e17eb5f54ee3b97ce6400e75dff8a3", + "fields": { + "code_commune_insee": "65351", + "nom_de_la_commune": "OUSTE", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0464855651, + -0.0149801465463 + ], + "libelle_d_acheminement": "OUSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0149801465463, + 43.0464855651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14a0b8997972eb270ae8f1ab770b71ed21f49103", + "fields": { + "code_commune_insee": "65356", + "nom_de_la_commune": "PERE", + "code_postal": "65130", + "coordonnees_gps": [ + 43.1456315546, + 0.295918034098 + ], + "libelle_d_acheminement": "PERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.295918034098, + 43.1456315546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a77bc71beb947045b1970fe4046e4a3891275186", + "fields": { + "code_commune_insee": "65360", + "nom_de_la_commune": "PEYROUSE", + "code_postal": "65270", + "coordonnees_gps": [ + 43.1090326974, + -0.115779330923 + ], + "libelle_d_acheminement": "PEYROUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.115779330923, + 43.1090326974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23b800401c12fc0f02300de01a4cd11806640090", + "fields": { + "code_commune_insee": "65363", + "nom_de_la_commune": "PINAS", + "code_postal": "65300", + "coordonnees_gps": [ + 43.1171174899, + 0.440832164226 + ], + "libelle_d_acheminement": "PINAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.440832164226, + 43.1171174899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dfa2da4282a756fc9c6a291b3e9a22d29db7146", + "fields": { + "code_commune_insee": "65374", + "nom_de_la_commune": "PUYDARRIEUX", + "code_postal": "65220", + "coordonnees_gps": [ + 43.289930505, + 0.40087886965 + ], + "libelle_d_acheminement": "PUYDARRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.40087886965, + 43.289930505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c05bacac96801b4b2316ff8965bac5caa92523f9", + "fields": { + "code_commune_insee": "65375", + "nom_de_la_commune": "RABASTENS DE BIGORRE", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3859669642, + 0.156153624575 + ], + "libelle_d_acheminement": "RABASTENS DE BIGORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.156153624575, + 43.3859669642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c7478c5e1b5cb0aa4957a1c1efa960987fcab38", + "fields": { + "code_commune_insee": "65376", + "nom_de_la_commune": "RECURT", + "code_postal": "65330", + "coordonnees_gps": [ + 43.2006170869, + 0.434943895633 + ], + "libelle_d_acheminement": "RECURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.434943895633, + 43.2006170869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc8fb88a45590a2aa48f229b9b9f2f0e4ba29e3d", + "fields": { + "code_commune_insee": "65377", + "nom_de_la_commune": "REJAUMONT", + "code_postal": "65300", + "coordonnees_gps": [ + 43.164905946, + 0.452687259013 + ], + "libelle_d_acheminement": "REJAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.452687259013, + 43.164905946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e57fc7a217b0e68d2e41a3e20dfc0b200126b5b2", + "fields": { + "code_commune_insee": "65382", + "nom_de_la_commune": "SACOUE", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9860898554, + 0.529831805774 + ], + "libelle_d_acheminement": "SACOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.529831805774, + 42.9860898554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88eafe6bcd4f020622be589376ea79edc94dd47d", + "fields": { + "code_commune_insee": "65383", + "nom_de_la_commune": "SADOURNIN", + "code_postal": "65220", + "coordonnees_gps": [ + 43.3176909375, + 0.410703923997 + ], + "libelle_d_acheminement": "SADOURNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.410703923997, + 43.3176909375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f8fd45ad75042a07621a3e54aa1148ab7995714", + "fields": { + "code_commune_insee": "65385", + "nom_de_la_commune": "ST ARROMAN", + "code_postal": "65250", + "coordonnees_gps": [ + 43.0447990556, + 0.403215538636 + ], + "libelle_d_acheminement": "ST ARROMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.403215538636, + 43.0447990556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e162f130b14894f7ce9afadf6439197b340a7251", + "fields": { + "code_commune_insee": "65390", + "nom_de_la_commune": "ST LEZER", + "code_postal": "65500", + "coordonnees_gps": [ + 43.3591040686, + 0.0308771458332 + ], + "libelle_d_acheminement": "ST LEZER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0308771458332, + 43.3591040686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cea82bcc8c97f1cce0a9a9c22735fb430ebf6157", + "fields": { + "code_commune_insee": "65391", + "nom_de_la_commune": "STE MARIE", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9691035062, + 0.628958999643 + ], + "libelle_d_acheminement": "STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.628958999643, + 42.9691035062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f935a0cb44a5e525aa83636d848ac5f83be71ea", + "fields": { + "code_commune_insee": "65396", + "nom_de_la_commune": "ST SAVIN", + "code_postal": "65400", + "coordonnees_gps": [ + 42.9753213682, + -0.0917828178997 + ], + "libelle_d_acheminement": "ST SAVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0917828178997, + 42.9753213682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c2df8f1559500f49dc8332da446b9a16967479c", + "fields": { + "ligne_5": "VIZOS", + "code_commune_insee": "65399", + "libelle_d_acheminement": "SALIGOS", + "code_postal": "65120", + "nom_de_la_commune": "SALIGOS", + "coordonnees_gps": [ + 42.9015701967, + -0.0144385336677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0144385336677, + 42.9015701967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd7f2d52274f7be69e4ff5a0c5193e83564bef5e", + "fields": { + "code_commune_insee": "65401", + "nom_de_la_commune": "SALLES ADOUR", + "code_postal": "65360", + "coordonnees_gps": [ + 43.1867597741, + 0.101493602864 + ], + "libelle_d_acheminement": "SALLES ADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.101493602864, + 43.1867597741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaaa50704b250659e2c754981c7b04d0fcd629ea", + "fields": { + "code_commune_insee": "65402", + "nom_de_la_commune": "SAMURAN", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9851402717, + 0.600350618237 + ], + "libelle_d_acheminement": "SAMURAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.600350618237, + 42.9851402717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6601d049c010de5653f22dcc7e04e25a49855934", + "fields": { + "code_commune_insee": "65415", + "nom_de_la_commune": "SEGUS", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0601957152, + -0.109294599709 + ], + "libelle_d_acheminement": "SEGUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109294599709, + 43.0601957152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90ca5cc91f7efc7ece731148500785aadd4f6699", + "fields": { + "code_commune_insee": "65421", + "nom_de_la_commune": "SERE LANSO", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0673096557, + 0.0151038377966 + ], + "libelle_d_acheminement": "SERE LANSO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0151038377966, + 43.0673096557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2a6bb80f899d86062c9f1a562c1fa1b3ca00b1f", + "fields": { + "code_commune_insee": "65422", + "nom_de_la_commune": "SERON", + "code_postal": "65320", + "coordonnees_gps": [ + 43.3227244461, + -0.0918151618276 + ], + "libelle_d_acheminement": "SERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0918151618276, + 43.3227244461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6ae1ba4a473f6f841f53df93aca89cc0fe18f76", + "fields": { + "code_commune_insee": "65425", + "nom_de_la_commune": "SIARROUY", + "code_postal": "65500", + "coordonnees_gps": [ + 43.3224858434, + 0.0355258903188 + ], + "libelle_d_acheminement": "SIARROUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0355258903188, + 43.3224858434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce1cb67ec4f636cda3c877ee3eb875bd7bd97dbf", + "fields": { + "code_commune_insee": "65440", + "nom_de_la_commune": "TARBES", + "code_postal": "65000", + "coordonnees_gps": [ + 43.2347859635, + 0.0660093937851 + ], + "libelle_d_acheminement": "TARBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0660093937851, + 43.2347859635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a125de9b17a65972834de401ed529eef0a997178", + "fields": { + "code_commune_insee": "65443", + "nom_de_la_commune": "THUY", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2572755846, + 0.240856974444 + ], + "libelle_d_acheminement": "THUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.240856974444, + 43.2572755846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "314e021a074e8beb517956baca945bb2d966bd5a", + "fields": { + "code_commune_insee": "65456", + "nom_de_la_commune": "UGLAS", + "code_postal": "65300", + "coordonnees_gps": [ + 43.1402100651, + 0.4386284458 + ], + "libelle_d_acheminement": "UGLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.4386284458, + 43.1402100651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "676d067b0924e755a1ece5a09cd3d715d8d24525", + "fields": { + "code_commune_insee": "65457", + "nom_de_la_commune": "UGNOUAS", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3421854183, + 0.103951257526 + ], + "libelle_d_acheminement": "UGNOUAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.103951257526, + 43.3421854183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "392c317bdad29e44cc0abb1d527cfc618088540a", + "fields": { + "code_commune_insee": "66002", + "nom_de_la_commune": "ALENYA", + "code_postal": "66200", + "coordonnees_gps": [ + 42.6407019491, + 2.98145485065 + ], + "libelle_d_acheminement": "ALENYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98145485065, + 42.6407019491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4629ae63a6e2386d4ba2929015d35fbb650ce20e", + "fields": { + "code_commune_insee": "66013", + "nom_de_la_commune": "BAILLESTAVY", + "code_postal": "66320", + "coordonnees_gps": [ + 42.5644827066, + 2.52207120058 + ], + "libelle_d_acheminement": "BAILLESTAVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52207120058, + 42.5644827066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83f4cea67f6554da25980f6589afdaeb0d408662", + "fields": { + "code_commune_insee": "66017", + "nom_de_la_commune": "LE BARCARES", + "code_postal": "66420", + "coordonnees_gps": [ + 42.8127710984, + 3.02834125149 + ], + "libelle_d_acheminement": "LE BARCARES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02834125149, + 42.8127710984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d76635fd2b9a75cf1bbfccd6841b1299390951f", + "fields": { + "ligne_5": "PORT BARCARES", + "code_commune_insee": "66017", + "libelle_d_acheminement": "LE BARCARES", + "code_postal": "66420", + "nom_de_la_commune": "LE BARCARES", + "coordonnees_gps": [ + 42.8127710984, + 3.02834125149 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02834125149, + 42.8127710984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7034d1c5a9bb4098a0d626974d016b6ab74750f1", + "fields": { + "code_commune_insee": "66018", + "nom_de_la_commune": "LA BASTIDE", + "code_postal": "66110", + "coordonnees_gps": [ + 42.5373299609, + 2.57199667182 + ], + "libelle_d_acheminement": "LA BASTIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57199667182, + 42.5373299609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b4665b7f4e0326e3998b38d8789c7199684ef71", + "fields": { + "code_commune_insee": "66019", + "nom_de_la_commune": "BELESTA", + "code_postal": "66720", + "coordonnees_gps": [ + 42.7208095071, + 2.62374902434 + ], + "libelle_d_acheminement": "BELESTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62374902434, + 42.7208095071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57f9124ddceecb5af621fe4928c74d1dbc881735", + "fields": { + "code_commune_insee": "66024", + "nom_de_la_commune": "LE BOULOU", + "code_postal": "66160", + "coordonnees_gps": [ + 42.526358117, + 2.83157706562 + ], + "libelle_d_acheminement": "LE BOULOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83157706562, + 42.526358117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9091c55ac32e59dbd2e7e100092a9051753801ba", + "fields": { + "code_commune_insee": "66028", + "nom_de_la_commune": "CABESTANY", + "code_postal": "66330", + "coordonnees_gps": [ + 42.6790392044, + 2.94628633406 + ], + "libelle_d_acheminement": "CABESTANY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94628633406, + 42.6790392044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30c63f91d40b287a3eba4293855fbecb22806cc2", + "fields": { + "code_commune_insee": "66029", + "nom_de_la_commune": "CAIXAS", + "code_postal": "66300", + "coordonnees_gps": [ + 42.6003698334, + 2.66171249085 + ], + "libelle_d_acheminement": "CAIXAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66171249085, + 42.6003698334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adb2609d345e36ce2d5153e5bf4930c1ddd715d3", + "fields": { + "code_commune_insee": "66040", + "nom_de_la_commune": "CASEFABRE", + "code_postal": "66130", + "coordonnees_gps": [ + 42.6184473874, + 2.61434229279 + ], + "libelle_d_acheminement": "CASEFABRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61434229279, + 42.6184473874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8991321d31934e3defc854b775497bb39e1713bf", + "fields": { + "code_commune_insee": "66044", + "nom_de_la_commune": "CASTELNOU", + "code_postal": "66300", + "coordonnees_gps": [ + 42.6193831125, + 2.70904889838 + ], + "libelle_d_acheminement": "CASTELNOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70904889838, + 42.6193831125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a47114a4e4108c7848fd0f7852c2ece251a2318", + "fields": { + "code_commune_insee": "66046", + "nom_de_la_commune": "CAUDIES DE FENOUILLEDES", + "code_postal": "66220", + "coordonnees_gps": [ + 42.8195033862, + 2.37751985492 + ], + "libelle_d_acheminement": "CAUDIES DE FENOUILLEDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37751985492, + 42.8195033862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28c185339a3edf149bc6742f3d3800f5141220e2", + "fields": { + "code_commune_insee": "66051", + "nom_de_la_commune": "CLARA VILLERACH", + "code_postal": "66500", + "coordonnees_gps": [ + 42.5844703036, + 2.4511008593 + ], + "libelle_d_acheminement": "CLARA VILLERACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4511008593, + 42.5844703036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5eea863f4992c050d91bee31a19b6be8d41f8a2b", + "fields": { + "code_commune_insee": "66052", + "nom_de_la_commune": "CODALET", + "code_postal": "66500", + "coordonnees_gps": [ + 42.5997201968, + 2.41580874288 + ], + "libelle_d_acheminement": "CODALET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41580874288, + 42.5997201968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b40afb23439c9b38b59a34ac3d6a8d35b4852e5", + "fields": { + "code_commune_insee": "66059", + "nom_de_la_commune": "CORNEILLA DEL VERCOL", + "code_postal": "66200", + "coordonnees_gps": [ + 42.6232156993, + 2.95070116658 + ], + "libelle_d_acheminement": "CORNEILLA DEL VERCOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95070116658, + 42.6232156993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "579c67ae43e7fb458ecbd5b11bff16f6a71e9abd", + "fields": { + "code_commune_insee": "66061", + "nom_de_la_commune": "COUSTOUGES", + "code_postal": "66260", + "coordonnees_gps": [ + 42.3559782284, + 2.63785307332 + ], + "libelle_d_acheminement": "COUSTOUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63785307332, + 42.3559782284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64f283b24d074878c17dea8a913d37ebe32363f8", + "fields": { + "code_commune_insee": "66070", + "nom_de_la_commune": "ESPIRA DE CONFLENT", + "code_postal": "66320", + "coordonnees_gps": [ + 42.6190777893, + 2.49374976371 + ], + "libelle_d_acheminement": "ESPIRA DE CONFLENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49374976371, + 42.6190777893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "818951c9a90ee76a0797bb28e5dc0c178d03ea72", + "fields": { + "code_commune_insee": "66072", + "nom_de_la_commune": "ESTAVAR", + "code_postal": "66800", + "coordonnees_gps": [ + 42.4747536018, + 2.00935678563 + ], + "libelle_d_acheminement": "ESTAVAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00935678563, + 42.4747536018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c61726fbeb2793bb0755b7bfbe4b825d6f082b2e", + "fields": { + "code_commune_insee": "66075", + "nom_de_la_commune": "EYNE", + "code_postal": "66800", + "coordonnees_gps": [ + 42.4551578677, + 2.10885426854 + ], + "libelle_d_acheminement": "EYNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10885426854, + 42.4551578677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a27d3c92046f963e4993f8788d58aadb8603c536", + "fields": { + "code_commune_insee": "66089", + "nom_de_la_commune": "JOCH", + "code_postal": "66320", + "coordonnees_gps": [ + 42.6155239513, + 2.52614634923 + ], + "libelle_d_acheminement": "JOCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52614634923, + 42.6155239513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ce0a498f2e04e1a3ac3aa8be52ce9b1665d59fc", + "fields": { + "code_commune_insee": "66091", + "nom_de_la_commune": "LAMANERE", + "code_postal": "66230", + "coordonnees_gps": [ + 42.3581335381, + 2.51960965655 + ], + "libelle_d_acheminement": "LAMANERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51960965655, + 42.3581335381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b248c2bcc0d3ce0301a4e5241e0b9ab52861bca6", + "fields": { + "code_commune_insee": "66094", + "nom_de_la_commune": "LATOUR BAS ELNE", + "code_postal": "66200", + "coordonnees_gps": [ + 42.6043043945, + 3.0052419925 + ], + "libelle_d_acheminement": "LATOUR BAS ELNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0052419925, + 42.6043043945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86beedf626008b8ccb4819bb93eb0a9674d3e715", + "fields": { + "code_commune_insee": "66097", + "nom_de_la_commune": "LESQUERDE", + "code_postal": "66220", + "coordonnees_gps": [ + 42.7937247188, + 2.544623285 + ], + "libelle_d_acheminement": "LESQUERDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.544623285, + 42.7937247188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38363756254b453ae059ac7be49ef7decf23b870", + "fields": { + "code_commune_insee": "66098", + "nom_de_la_commune": "LA LLAGONNE", + "code_postal": "66210", + "coordonnees_gps": [ + 42.5372670169, + 2.09507395014 + ], + "libelle_d_acheminement": "LA LLAGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09507395014, + 42.5372670169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bba17c7b642961e003544f2bfa2e386f4bb4ed0", + "fields": { + "code_commune_insee": "66104", + "nom_de_la_commune": "LOS MASOS", + "code_postal": "66500", + "coordonnees_gps": [ + 42.6155047259, + 2.46056294865 + ], + "libelle_d_acheminement": "LOS MASOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46056294865, + 42.6155047259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdeb9430db1da633461e1da925a8df93a817c9e0", + "fields": { + "code_commune_insee": "66105", + "nom_de_la_commune": "MATEMALE", + "code_postal": "66210", + "coordonnees_gps": [ + 42.5770065721, + 2.11612519256 + ], + "libelle_d_acheminement": "MATEMALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11612519256, + 42.5770065721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05d886f2a78368cb2373e611ba925eb489e7db46", + "fields": { + "code_commune_insee": "66106", + "nom_de_la_commune": "MAUREILLAS LAS ILLAS", + "code_postal": "66480", + "coordonnees_gps": [ + 42.460076792, + 2.8011796582 + ], + "libelle_d_acheminement": "MAUREILLAS LAS ILLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8011796582, + 42.460076792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "246b949d86c9fbc409162b78d84105fd0aab2391", + "fields": { + "ligne_5": "RIUNOGUES", + "code_commune_insee": "66106", + "libelle_d_acheminement": "MAUREILLAS LAS ILLAS", + "code_postal": "66480", + "nom_de_la_commune": "MAUREILLAS LAS ILLAS", + "coordonnees_gps": [ + 42.460076792, + 2.8011796582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8011796582, + 42.460076792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14c1042a009d359183563c8e745233933da76aff", + "fields": { + "code_commune_insee": "66109", + "nom_de_la_commune": "MOLITG LES BAINS", + "code_postal": "66500", + "coordonnees_gps": [ + 42.6637917961, + 2.39585353258 + ], + "libelle_d_acheminement": "MOLITG LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39585353258, + 42.6637917961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98caff4d0e30aae7fd5cd55c40bba20d84764915", + "fields": { + "code_commune_insee": "66116", + "nom_de_la_commune": "MONTFERRER", + "code_postal": "66150", + "coordonnees_gps": [ + 42.4434669097, + 2.5643017322 + ], + "libelle_d_acheminement": "MONTFERRER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5643017322, + 42.4434669097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc44cdbcdf8641b816aaeea1651fb76508ae8872", + "fields": { + "code_commune_insee": "66118", + "nom_de_la_commune": "MONTNER", + "code_postal": "66720", + "coordonnees_gps": [ + 42.7408986624, + 2.68850770885 + ], + "libelle_d_acheminement": "MONTNER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68850770885, + 42.7408986624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6e0b4812fbd383aa8d2d63144ecdc498c71e3c6", + "fields": { + "code_commune_insee": "66119", + "nom_de_la_commune": "MOSSET", + "code_postal": "66500", + "coordonnees_gps": [ + 42.6739429511, + 2.30444228005 + ], + "libelle_d_acheminement": "MOSSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30444228005, + 42.6739429511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e820f30aedc616422aa435d4da2ceadb6240f516", + "fields": { + "code_commune_insee": "66126", + "nom_de_la_commune": "OMS", + "code_postal": "66400", + "coordonnees_gps": [ + 42.5336508458, + 2.709631236 + ], + "libelle_d_acheminement": "OMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.709631236, + 42.5336508458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0145a23a0b039a4b3b1bc16cc93765e6b35dddc7", + "fields": { + "code_commune_insee": "66127", + "nom_de_la_commune": "OPOUL PERILLOS", + "code_postal": "66600", + "coordonnees_gps": [ + 42.8800628012, + 2.85805113344 + ], + "libelle_d_acheminement": "OPOUL PERILLOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85805113344, + 42.8800628012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e4be789d7f0150178f440b2a5051235ba47afc5", + "fields": { + "code_commune_insee": "66128", + "nom_de_la_commune": "OREILLA", + "code_postal": "66360", + "coordonnees_gps": [ + 42.5763756825, + 2.2219872927 + ], + "libelle_d_acheminement": "OREILLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2219872927, + 42.5763756825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e49512e87f21493e84e186b0e3e4ddae4b90f4bb", + "fields": { + "code_commune_insee": "66129", + "nom_de_la_commune": "ORTAFFA", + "code_postal": "66560", + "coordonnees_gps": [ + 42.5843466688, + 2.92083398591 + ], + "libelle_d_acheminement": "ORTAFFA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92083398591, + 42.5843466688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b9b19455583276d83c1f2b75527521bc8687eca", + "fields": { + "code_commune_insee": "66132", + "nom_de_la_commune": "PALAU DE CERDAGNE", + "code_postal": "66340", + "coordonnees_gps": [ + 42.3857763378, + 1.97991972852 + ], + "libelle_d_acheminement": "PALAU DE CERDAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97991972852, + 42.3857763378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1c34df4ef8d0344633e5c54f3f654cfa7ed06b0", + "fields": { + "code_commune_insee": "66141", + "nom_de_la_commune": "PIA", + "code_postal": "66380", + "coordonnees_gps": [ + 42.7487012331, + 2.91497381059 + ], + "libelle_d_acheminement": "PIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91497381059, + 42.7487012331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc82873f8053a481ca5a1dd1e35390b885f5822d", + "fields": { + "code_commune_insee": "66143", + "nom_de_la_commune": "PLANEZES", + "code_postal": "66720", + "coordonnees_gps": [ + 42.7742310967, + 2.62167277524 + ], + "libelle_d_acheminement": "PLANEZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62167277524, + 42.7742310967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98a5acbce80ef610440bb56b9c4fcfce422b6e99", + "fields": { + "code_commune_insee": "66146", + "nom_de_la_commune": "PORTA", + "code_postal": "66760", + "coordonnees_gps": [ + 42.515624655, + 1.79216910759 + ], + "libelle_d_acheminement": "PORTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79216910759, + 42.515624655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b625b1787a14a9f35840dd64cc40eca8dc5bd41b", + "fields": { + "code_commune_insee": "66150", + "nom_de_la_commune": "PRATS DE MOLLO LA PRESTE", + "code_postal": "66230", + "coordonnees_gps": [ + 42.4201535171, + 2.44098964514 + ], + "libelle_d_acheminement": "PRATS DE MOLLO LA PRESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44098964514, + 42.4201535171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a640e82bd61cfc47733b8ef38f640b92c2b6e351", + "fields": { + "code_commune_insee": "66153", + "nom_de_la_commune": "PRUNET ET BELPUIG", + "code_postal": "66130", + "coordonnees_gps": [ + 42.5661186047, + 2.63306302211 + ], + "libelle_d_acheminement": "PRUNET ET BELPUIG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63306302211, + 42.5661186047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcc72b38a94cf2b45e713464c981a35ff0af6849", + "fields": { + "code_commune_insee": "66160", + "nom_de_la_commune": "REYNES", + "code_postal": "66400", + "coordonnees_gps": [ + 42.475553684, + 2.70559051736 + ], + "libelle_d_acheminement": "REYNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70559051736, + 42.475553684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44d7dee42ed18e7cc80c09136519ea820bca496a", + "fields": { + "code_commune_insee": "66162", + "nom_de_la_commune": "RIGARDA", + "code_postal": "66320", + "coordonnees_gps": [ + 42.6279224154, + 2.5378645197 + ], + "libelle_d_acheminement": "RIGARDA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5378645197, + 42.6279224154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1961bcbabd3abf5c654b7f1e8722250dd11224a0", + "fields": { + "code_commune_insee": "66174", + "nom_de_la_commune": "ST FELIU D AVALL", + "code_postal": "66170", + "coordonnees_gps": [ + 42.6726973076, + 2.74775654622 + ], + "libelle_d_acheminement": "ST FELIU D AVALL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74775654622, + 42.6726973076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "459263bc2b2fd56f7a79743a1f6e021506822bef", + "fields": { + "code_commune_insee": "66190", + "nom_de_la_commune": "SALSES LE CHATEAU", + "code_postal": "66600", + "coordonnees_gps": [ + 42.8371985526, + 2.91593580268 + ], + "libelle_d_acheminement": "SALSES LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91593580268, + 42.8371985526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d75dd6a304dd46a3f460f0114a1ed4e00550990d", + "fields": { + "code_commune_insee": "66206", + "nom_de_la_commune": "LE TECH", + "code_postal": "66230", + "coordonnees_gps": [ + 42.4414680314, + 2.51364104722 + ], + "libelle_d_acheminement": "LE TECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51364104722, + 42.4414680314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e86c517dfffad676c83f7da06c84fd0b59b1c79", + "fields": { + "code_commune_insee": "66219", + "nom_de_la_commune": "URBANYA", + "code_postal": "66500", + "coordonnees_gps": [ + 42.6433739876, + 2.29947678761 + ], + "libelle_d_acheminement": "URBANYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29947678761, + 42.6433739876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19ff2b988af49516ac72a4e36c833601e47f5a3d", + "fields": { + "code_commune_insee": "66223", + "nom_de_la_commune": "VILLEFRANCHE DE CONFLENT", + "code_postal": "66500", + "coordonnees_gps": [ + 42.5964793448, + 2.3599348086 + ], + "libelle_d_acheminement": "VILLEFRANCHE DE CONFLENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3599348086, + 42.5964793448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70a167937472293de93cfeda8b67884fcfb8f1f4", + "fields": { + "code_commune_insee": "66227", + "nom_de_la_commune": "VILLENEUVE DE LA RAHO", + "code_postal": "66180", + "coordonnees_gps": [ + 42.6399917541, + 2.91045028538 + ], + "libelle_d_acheminement": "VILLENEUVE DE LA RAHO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91045028538, + 42.6399917541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95c2bf8c2f17e32d8c42230f0bd88ffb09e1a941", + "fields": { + "code_commune_insee": "66231", + "nom_de_la_commune": "VINGRAU", + "code_postal": "66600", + "coordonnees_gps": [ + 42.8577422264, + 2.7906568133 + ], + "libelle_d_acheminement": "VINGRAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7906568133, + 42.8577422264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8baa9eeae4331096604a400028f2d8c65bd42ea7", + "fields": { + "code_commune_insee": "66232", + "nom_de_la_commune": "VIRA", + "code_postal": "66220", + "coordonnees_gps": [ + 42.7632437549, + 2.39447328597 + ], + "libelle_d_acheminement": "VIRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39447328597, + 42.7632437549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a01dacc0af3cfc46738e3d9e1a997b7f16e7796", + "fields": { + "code_commune_insee": "67005", + "nom_de_la_commune": "ALTECKENDORF", + "code_postal": "67270", + "coordonnees_gps": [ + 48.7944549979, + 7.59641028848 + ], + "libelle_d_acheminement": "ALTECKENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59641028848, + 48.7944549979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d3de8503274734155362405a74f9830806f5223", + "fields": { + "code_commune_insee": "67009", + "nom_de_la_commune": "ALTWILLER", + "code_postal": "67260", + "coordonnees_gps": [ + 48.9155179716, + 6.97971818024 + ], + "libelle_d_acheminement": "ALTWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97971818024, + 48.9155179716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95411b97de82fa8c614f826f6dd3dc6063eaae74", + "fields": { + "code_commune_insee": "67017", + "nom_de_la_commune": "BAERENDORF", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8306192171, + 7.08989424787 + ], + "libelle_d_acheminement": "BAERENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08989424787, + 48.8306192171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f16ce33b351ef64e29b191ac3635e6debe91b1f4", + "fields": { + "code_commune_insee": "67022", + "nom_de_la_commune": "BASSEMBERG", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3359466326, + 7.27796558319 + ], + "libelle_d_acheminement": "BASSEMBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27796558319, + 48.3359466326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d88f3a5f2864383324c54344cdcfef476acefc1", + "fields": { + "code_commune_insee": "67030", + "nom_de_la_commune": "BERGBIETEN", + "code_postal": "67310", + "coordonnees_gps": [ + 48.5771244719, + 7.4507261973 + ], + "libelle_d_acheminement": "BERGBIETEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4507261973, + 48.5771244719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6896a0de528e7f01c951a4226252d7060984ccd3", + "fields": { + "code_commune_insee": "67033", + "nom_de_la_commune": "BERNOLSHEIM", + "code_postal": "67170", + "coordonnees_gps": [ + 48.7529512586, + 7.68495908894 + ], + "libelle_d_acheminement": "BERNOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68495908894, + 48.7529512586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55261285982f9ab39eb449cee22e8e179ed6f03c", + "fields": { + "ligne_5": "RUMERSHEIM", + "code_commune_insee": "67034", + "libelle_d_acheminement": "BERSTETT", + "code_postal": "67370", + "nom_de_la_commune": "BERSTETT", + "coordonnees_gps": [ + 48.6822332576, + 7.63237996044 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63237996044, + 48.6822332576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3097c3047015a9d5d1d45b105a3f05b68f2fe31a", + "fields": { + "code_commune_insee": "67035", + "nom_de_la_commune": "BERSTHEIM", + "code_postal": "67170", + "coordonnees_gps": [ + 48.7926179333, + 7.67977428284 + ], + "libelle_d_acheminement": "BERSTHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67977428284, + 48.7926179333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0685e1608125a5a9c104418e385348d0f2e4489", + "fields": { + "code_commune_insee": "67038", + "nom_de_la_commune": "BIETLENHEIM", + "code_postal": "67720", + "coordonnees_gps": [ + 48.7204274461, + 7.7833019212 + ], + "libelle_d_acheminement": "BIETLENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7833019212, + 48.7204274461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8711cd1e968685f9ff2235e95699a7e00a93ce4a", + "fields": { + "code_commune_insee": "67043", + "nom_de_la_commune": "BISCHHEIM", + "code_postal": "67800", + "coordonnees_gps": [ + 48.6215316062, + 7.75864282518 + ], + "libelle_d_acheminement": "BISCHHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75864282518, + 48.6215316062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99dd92bc0000bd1e826e37c77ad723c25715cd75", + "fields": { + "code_commune_insee": "67044", + "nom_de_la_commune": "BISCHHOLTZ", + "code_postal": "67340", + "coordonnees_gps": [ + 48.8907710974, + 7.53068422833 + ], + "libelle_d_acheminement": "BISCHHOLTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53068422833, + 48.8907710974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9d878c3ec2f635140593933c82e7cc038d0a07b", + "fields": { + "code_commune_insee": "67045", + "nom_de_la_commune": "BISCHOFFSHEIM", + "code_postal": "67870", + "coordonnees_gps": [ + 48.4855267183, + 7.52599035848 + ], + "libelle_d_acheminement": "BISCHOFFSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52599035848, + 48.4855267183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85ef7251ea5dfaa2fd81eb14ade74608974097a0", + "fields": { + "code_commune_insee": "67049", + "nom_de_la_commune": "BLAESHEIM", + "code_postal": "67113", + "coordonnees_gps": [ + 48.5022035714, + 7.60873399472 + ], + "libelle_d_acheminement": "BLAESHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60873399472, + 48.5022035714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "113d0f4982be636d1acfcab6e0ec8078cdfe77a7", + "fields": { + "code_commune_insee": "67051", + "nom_de_la_commune": "BLIENSCHWILLER", + "code_postal": "67650", + "coordonnees_gps": [ + 48.3454000894, + 7.41533948904 + ], + "libelle_d_acheminement": "BLIENSCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41533948904, + 48.3454000894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49f3cec7a9ae9ed7cb8fff5eb2e31c71090ff4c8", + "fields": { + "code_commune_insee": "67073", + "nom_de_la_commune": "CHATENOIS", + "code_postal": "67730", + "coordonnees_gps": [ + 48.2803314907, + 7.38582937668 + ], + "libelle_d_acheminement": "CHATENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38582937668, + 48.2803314907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e929dea1dfb9c15596aacbe5759aadc8be61fb7e", + "fields": { + "code_commune_insee": "67094", + "nom_de_la_commune": "DIEFFENTHAL", + "code_postal": "67650", + "coordonnees_gps": [ + 48.3073185385, + 7.41146997738 + ], + "libelle_d_acheminement": "DIEFFENTHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41146997738, + 48.3073185385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "322387ed0049ce66228670bf6368f88830339926", + "fields": { + "code_commune_insee": "67098", + "nom_de_la_commune": "DINSHEIM SUR BRUCHE", + "code_postal": "67190", + "coordonnees_gps": [ + 48.5475535578, + 7.42402678958 + ], + "libelle_d_acheminement": "DINSHEIM SUR BRUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42402678958, + 48.5475535578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e91cb562790266df0471e287e3ff00fcb253a086", + "fields": { + "code_commune_insee": "67101", + "nom_de_la_commune": "DORLISHEIM", + "code_postal": "67120", + "coordonnees_gps": [ + 48.5199427115, + 7.48035735807 + ], + "libelle_d_acheminement": "DORLISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48035735807, + 48.5199427115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ecfa437824a81c73c8700f65e6a2dc62c1bea90", + "fields": { + "code_commune_insee": "67111", + "nom_de_la_commune": "DURSTEL", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8910133304, + 7.20487622199 + ], + "libelle_d_acheminement": "DURSTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20487622199, + 48.8910133304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba2bf1f343a53d586a210ebcbf04d122b86ba6f7", + "fields": { + "code_commune_insee": "67120", + "nom_de_la_commune": "EICHHOFFEN", + "code_postal": "67140", + "coordonnees_gps": [ + 48.3784061586, + 7.4410649341 + ], + "libelle_d_acheminement": "EICHHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4410649341, + 48.3784061586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb0c6906c5130597d7a2733164476e1ea7eef7a1", + "fields": { + "code_commune_insee": "67122", + "nom_de_la_commune": "WANGENBOURG ENGENTHAL", + "code_postal": "67710", + "coordonnees_gps": [ + 48.6212665024, + 7.30505408726 + ], + "libelle_d_acheminement": "WANGENBOURG ENGENTHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30505408726, + 48.6212665024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5ccd3d85c057f25671ef27727fe64f7ac41a85e", + "fields": { + "ligne_5": "ENGENTHAL", + "code_commune_insee": "67122", + "libelle_d_acheminement": "WANGENBOURG ENGENTHAL", + "code_postal": "67710", + "nom_de_la_commune": "WANGENBOURG ENGENTHAL", + "coordonnees_gps": [ + 48.6212665024, + 7.30505408726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30505408726, + 48.6212665024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c273120875595138dce7930c5b8b40ee607b8ef5", + "fields": { + "code_commune_insee": "67132", + "nom_de_la_commune": "ESCHBACH", + "code_postal": "67360", + "coordonnees_gps": [ + 48.8758347944, + 7.73863882524 + ], + "libelle_d_acheminement": "ESCHBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73863882524, + 48.8758347944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dde2b274429dace16affeee89f25212e5899c0ba", + "fields": { + "code_commune_insee": "67136", + "nom_de_la_commune": "EYWILLER", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8716690735, + 7.12428089902 + ], + "libelle_d_acheminement": "EYWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12428089902, + 48.8716690735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a58cf1960d8c43e90cc65d928d58d02ff782477e", + "fields": { + "code_commune_insee": "67137", + "nom_de_la_commune": "FEGERSHEIM", + "code_postal": "67640", + "coordonnees_gps": [ + 48.4974401666, + 7.68863317258 + ], + "libelle_d_acheminement": "FEGERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68863317258, + 48.4974401666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75072659e494d8b4b9d2b5c8075a5327d4508ac2", + "fields": { + "code_commune_insee": "67141", + "nom_de_la_commune": "FORSTHEIM", + "code_postal": "67580", + "coordonnees_gps": [ + 48.8959541759, + 7.71097392643 + ], + "libelle_d_acheminement": "FORSTHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71097392643, + 48.8959541759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a5ba4c153e0ebc60b5e44e8ea916728c5583937", + "fields": { + "code_commune_insee": "67155", + "nom_de_la_commune": "GERTWILLER", + "code_postal": "67140", + "coordonnees_gps": [ + 48.4115755061, + 7.47499866604 + ], + "libelle_d_acheminement": "GERTWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47499866604, + 48.4115755061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b05f14ec0b435da4297fc8bfc731a44d3241cf04", + "fields": { + "code_commune_insee": "67156", + "nom_de_la_commune": "GEUDERTHEIM", + "code_postal": "67170", + "coordonnees_gps": [ + 48.7154836732, + 7.76052070487 + ], + "libelle_d_acheminement": "GEUDERTHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76052070487, + 48.7154836732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "960f3f6314ea6606bce06f16734143bed7487cc8", + "fields": { + "code_commune_insee": "67161", + "nom_de_la_commune": "GOTTENHOUSE", + "code_postal": "67700", + "coordonnees_gps": [ + 48.7180135851, + 7.35834197528 + ], + "libelle_d_acheminement": "GOTTENHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35834197528, + 48.7180135851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c08aaaddb39c4b91fc22893e61335b166613b75c", + "fields": { + "code_commune_insee": "67167", + "nom_de_la_commune": "GRENDELBRUCH", + "code_postal": "67190", + "coordonnees_gps": [ + 48.4812263837, + 7.30476049546 + ], + "libelle_d_acheminement": "GRENDELBRUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30476049546, + 48.4812263837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b92a2b0a342fbd91bfc4cdb1d4bc072e6f6556a6", + "fields": { + "code_commune_insee": "67168", + "nom_de_la_commune": "GRESSWILLER", + "code_postal": "67190", + "coordonnees_gps": [ + 48.5249899072, + 7.40991098161 + ], + "libelle_d_acheminement": "GRESSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40991098161, + 48.5249899072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14e4901667eaf1e2741ee84ed175a58102f5b5a6", + "fields": { + "code_commune_insee": "67169", + "nom_de_la_commune": "GRIES", + "code_postal": "67240", + "coordonnees_gps": [ + 48.7513621625, + 7.82473437694 + ], + "libelle_d_acheminement": "GRIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.82473437694, + 48.7513621625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2df19dfaea6f4d7807b351da77f9d1e90e9bfc6a", + "fields": { + "ligne_5": "EBERBACH", + "code_commune_insee": "67176", + "libelle_d_acheminement": "GUNDERSHOFFEN", + "code_postal": "67110", + "nom_de_la_commune": "GUNDERSHOFFEN", + "coordonnees_gps": [ + 48.9073472641, + 7.68204357189 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68204357189, + 48.9073472641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7956076521f7738db2b8b29ed0e2232cb54bad22", + "fields": { + "code_commune_insee": "67177", + "nom_de_la_commune": "GUNSTETT", + "code_postal": "67360", + "coordonnees_gps": [ + 48.9150746894, + 7.77903805347 + ], + "libelle_d_acheminement": "GUNSTETT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77903805347, + 48.9150746894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6841094e7ba492134d9b78886b45d87859dc2c3", + "fields": { + "code_commune_insee": "67196", + "nom_de_la_commune": "HILSENHEIM", + "code_postal": "67600", + "coordonnees_gps": [ + 48.2969573251, + 7.57311937757 + ], + "libelle_d_acheminement": "HILSENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57311937757, + 48.2969573251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12287725eced8183b2ddca54f64fab7003edd468", + "fields": { + "code_commune_insee": "67202", + "nom_de_la_commune": "HOCHFELDEN", + "code_postal": "67270", + "coordonnees_gps": [ + 48.7558373026, + 7.56312887309 + ], + "libelle_d_acheminement": "HOCHFELDEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56312887309, + 48.7558373026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ea85e4101dfc32a432da47f1261c377fdb7f515", + "fields": { + "code_commune_insee": "67208", + "nom_de_la_commune": "HOHENGOEFT", + "code_postal": "67310", + "coordonnees_gps": [ + 48.6607527966, + 7.46742297306 + ], + "libelle_d_acheminement": "HOHENGOEFT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46742297306, + 48.6607527966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c06118e72da05bc26f0167f524e9d1f97e64c51", + "fields": { + "code_commune_insee": "67227", + "nom_de_la_commune": "ITTERSWILLER", + "code_postal": "67140", + "coordonnees_gps": [ + 48.3665982092, + 7.42936455525 + ], + "libelle_d_acheminement": "ITTERSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42936455525, + 48.3665982092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "858fac4c1a8267f565805341ad9b499c3f7a188e", + "fields": { + "code_commune_insee": "67233", + "nom_de_la_commune": "KERTZFELD", + "code_postal": "67230", + "coordonnees_gps": [ + 48.3845479788, + 7.55526368096 + ], + "libelle_d_acheminement": "KERTZFELD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55526368096, + 48.3845479788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b253d08207f73f7626c312f337213ab769dd5749", + "fields": { + "code_commune_insee": "67235", + "nom_de_la_commune": "KESSELDORF", + "code_postal": "67930", + "coordonnees_gps": [ + 48.8843920264, + 8.05901750428 + ], + "libelle_d_acheminement": "KESSELDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.05901750428, + 48.8843920264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67f99c5ddd3043e022f786869f4a490952999733", + "fields": { + "code_commune_insee": "67246", + "nom_de_la_commune": "KOGENHEIM", + "code_postal": "67230", + "coordonnees_gps": [ + 48.331885522, + 7.53140383573 + ], + "libelle_d_acheminement": "KOGENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53140383573, + 48.331885522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "691383b8ebe7fbb6a2e13fecff7cc6d10a59b818", + "fields": { + "code_commune_insee": "67253", + "nom_de_la_commune": "KUTTOLSHEIM", + "code_postal": "67520", + "coordonnees_gps": [ + 48.6478359715, + 7.51923399394 + ], + "libelle_d_acheminement": "KUTTOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51923399394, + 48.6478359715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8bdd5e64fb6fd4a37024ea9a783703c067d3306", + "fields": { + "code_commune_insee": "67254", + "nom_de_la_commune": "KUTZENHAUSEN", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9388573117, + 7.8491381943 + ], + "libelle_d_acheminement": "KUTZENHAUSEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8491381943, + 48.9388573117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2e8d5168f7d06b4f8b24c3a1ef80ac1770d1b53", + "fields": { + "ligne_5": "CHARBES", + "code_commune_insee": "67255", + "libelle_d_acheminement": "LALAYE", + "code_postal": "67220", + "nom_de_la_commune": "LALAYE", + "coordonnees_gps": [ + 48.3386901777, + 7.23525154111 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23525154111, + 48.3386901777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "263667b667d0835a2056a085c72e26b382f94e02", + "fields": { + "code_commune_insee": "67258", + "nom_de_la_commune": "LANDERSHEIM", + "code_postal": "67700", + "coordonnees_gps": [ + 48.6902190893, + 7.50257928239 + ], + "libelle_d_acheminement": "LANDERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50257928239, + 48.6902190893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc9ae31a080936100fbcd9a48bca79a39d5b9d6d", + "fields": { + "code_commune_insee": "67263", + "nom_de_la_commune": "LEMBACH", + "code_postal": "67510", + "coordonnees_gps": [ + 49.0124690471, + 7.768432419 + ], + "libelle_d_acheminement": "LEMBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.768432419, + 49.0124690471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "babff631998e847c601480fc2eedb2a72f875d38", + "fields": { + "code_commune_insee": "67272", + "nom_de_la_commune": "LOCHWILLER", + "code_postal": "67440", + "coordonnees_gps": [ + 48.6974249676, + 7.414828958 + ], + "libelle_d_acheminement": "LOCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.414828958, + 48.6974249676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e535093d547d1249300ea42523476cdf4ddc51b", + "fields": { + "code_commune_insee": "67273", + "nom_de_la_commune": "LOHR", + "code_postal": "67290", + "coordonnees_gps": [ + 48.854674328, + 7.26417699771 + ], + "libelle_d_acheminement": "LOHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26417699771, + 48.854674328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f872877532deb626cbb69eed9fc4aa3ba4fb9ee0", + "fields": { + "code_commune_insee": "67281", + "nom_de_la_commune": "MARCKOLSHEIM", + "code_postal": "67390", + "coordonnees_gps": [ + 48.1496222393, + 7.56101805973 + ], + "libelle_d_acheminement": "MARCKOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56101805973, + 48.1496222393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d18e589c232857bcc67fb198500ec8d741c5d11", + "fields": { + "code_commune_insee": "67282", + "nom_de_la_commune": "MARLENHEIM", + "code_postal": "67520", + "coordonnees_gps": [ + 48.6190542828, + 7.50589211094 + ], + "libelle_d_acheminement": "MARLENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50589211094, + 48.6190542828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28bf97131459bcea83cfc05770269ad14ee2125a", + "fields": { + "code_commune_insee": "67283", + "nom_de_la_commune": "MARMOUTIER", + "code_postal": "67440", + "coordonnees_gps": [ + 48.694247484, + 7.37099677128 + ], + "libelle_d_acheminement": "MARMOUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37099677128, + 48.694247484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45f54fe6f74c4e2603ecdaa278bf09c7739b575e", + "fields": { + "code_commune_insee": "67286", + "nom_de_la_commune": "MEISTRATZHEIM", + "code_postal": "67210", + "coordonnees_gps": [ + 48.4525286856, + 7.56113902632 + ], + "libelle_d_acheminement": "MEISTRATZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56113902632, + 48.4525286856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cee154e249fbf65178ee6f782bf31dfd38b51f9d", + "fields": { + "code_commune_insee": "67289", + "nom_de_la_commune": "MENCHHOFFEN", + "code_postal": "67340", + "coordonnees_gps": [ + 48.8636588921, + 7.49803716008 + ], + "libelle_d_acheminement": "MENCHHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49803716008, + 48.8636588921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10ff6c21fab7273854ba505c231602bc0564bff3", + "fields": { + "code_commune_insee": "67299", + "nom_de_la_commune": "MOLLKIRCH", + "code_postal": "67190", + "coordonnees_gps": [ + 48.5058373844, + 7.36568374858 + ], + "libelle_d_acheminement": "MOLLKIRCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36568374858, + 48.5058373844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3f175cbd8bb6837a3e04d1b4a6eeb3b81cb17e6", + "fields": { + "code_commune_insee": "67310", + "nom_de_la_commune": "MUSSIG", + "code_postal": "67600", + "coordonnees_gps": [ + 48.2266111578, + 7.51848492236 + ], + "libelle_d_acheminement": "MUSSIG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51848492236, + 48.2266111578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebfeca78406a4f7249b6af794fd7d653c0a57d6f", + "fields": { + "code_commune_insee": "67311", + "nom_de_la_commune": "MUTTERSHOLTZ", + "code_postal": "67600", + "coordonnees_gps": [ + 48.2687190251, + 7.53306592763 + ], + "libelle_d_acheminement": "MUTTERSHOLTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53306592763, + 48.2687190251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cda2b2636f0b614733cadd49fef2ff292c319a0", + "fields": { + "code_commune_insee": "67313", + "nom_de_la_commune": "MUTZIG", + "code_postal": "67190", + "coordonnees_gps": [ + 48.538054845, + 7.45530315563 + ], + "libelle_d_acheminement": "MUTZIG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45530315563, + 48.538054845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1be7fdcd922e907faf89b4d59175e1f348e3af8a", + "fields": { + "code_commune_insee": "67315", + "nom_de_la_commune": "NEEWILLER PRES LAUTERBOURG", + "code_postal": "67630", + "coordonnees_gps": [ + 48.9516989257, + 8.11931601006 + ], + "libelle_d_acheminement": "NEEWILLER PRES LAUTERBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.11931601006, + 48.9516989257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2388966a2253a8fff1b83bcb4100182af72cefcb", + "fields": { + "ligne_5": "HAUTE GOUTTE", + "code_commune_insee": "67321", + "libelle_d_acheminement": "NEUVILLER LA ROCHE", + "code_postal": "67130", + "nom_de_la_commune": "NEUVILLER LA ROCHE", + "coordonnees_gps": [ + 48.4309499766, + 7.26437049524 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26437049524, + 48.4309499766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "289ce612b066b03bc0f64045e742290040cbf208", + "fields": { + "code_commune_insee": "67324", + "nom_de_la_commune": "NIEDERBRONN LES BAINS", + "code_postal": "67110", + "coordonnees_gps": [ + 48.9638157112, + 7.63986093383 + ], + "libelle_d_acheminement": "NIEDERBRONN LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63986093383, + 48.9638157112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d20977d04ae748f2556647c6e818bb25f603b4c8", + "fields": { + "code_commune_insee": "67328", + "nom_de_la_commune": "NIEDERMODERN", + "code_postal": "67350", + "coordonnees_gps": [ + 48.8407663139, + 7.63538850073 + ], + "libelle_d_acheminement": "NIEDERMODERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63538850073, + 48.8407663139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ad138365a54c03a5a12264cb913d5d3c25a5a5f", + "fields": { + "code_commune_insee": "67330", + "nom_de_la_commune": "NIEDERROEDERN", + "code_postal": "67470", + "coordonnees_gps": [ + 48.912896258, + 8.05241114765 + ], + "libelle_d_acheminement": "NIEDERROEDERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.05241114765, + 48.912896258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5bf93ca79c40aa246ff0365a1117460f8b9b88f", + "fields": { + "code_commune_insee": "67345", + "nom_de_la_commune": "OBERHOFFEN SUR MODER", + "code_postal": "67240", + "coordonnees_gps": [ + 48.7801040272, + 7.88738513222 + ], + "libelle_d_acheminement": "OBERHOFFEN SUR MODER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.88738513222, + 48.7801040272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ddddb69c914975f65011c20a61cddb9c2b80b79", + "fields": { + "ligne_5": "ZUTZENDORF", + "code_commune_insee": "67347", + "libelle_d_acheminement": "OBERMODERN ZUTZENDORF", + "code_postal": "67330", + "nom_de_la_commune": "OBERMODERN ZUTZENDORF", + "coordonnees_gps": [ + 48.8479068198, + 7.54015464948 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54015464948, + 48.8479068198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "792ec8d880fef1e34ec0a5afda170377c2017524", + "fields": { + "code_commune_insee": "67352", + "nom_de_la_commune": "OBERSOULTZBACH", + "code_postal": "67330", + "coordonnees_gps": [ + 48.851369071, + 7.44768959028 + ], + "libelle_d_acheminement": "OBERSOULTZBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44768959028, + 48.851369071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56d1566e8636eed483639f30b598d4431b24b798", + "fields": { + "ligne_5": "KEFFENDORF", + "code_commune_insee": "67359", + "libelle_d_acheminement": "OHLUNGEN", + "code_postal": "67170", + "nom_de_la_commune": "OHLUNGEN", + "coordonnees_gps": [ + 48.8121908123, + 7.69421854068 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69421854068, + 48.8121908123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30ac0afdfc52f77bb0bb32941fa740776150b5c3", + "fields": { + "ligne_5": "UBERACH", + "code_commune_insee": "67372", + "libelle_d_acheminement": "VAL DE MODER", + "code_postal": "67350", + "nom_de_la_commune": "VAL DE MODER", + "coordonnees_gps": [ + 48.8432047964, + 7.59893121728 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59893121728, + 48.8432047964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "574f1d86d651a69b436a7aff52bc2fdc10b474d2", + "fields": { + "code_commune_insee": "67373", + "nom_de_la_commune": "PFALZWEYER", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8087234106, + 7.25966087365 + ], + "libelle_d_acheminement": "PFALZWEYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25966087365, + 48.8087234106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c61224ef261262a7e0203d94c7ab9e4d401bba0", + "fields": { + "code_commune_insee": "67378", + "nom_de_la_commune": "PLOBSHEIM", + "code_postal": "67115", + "coordonnees_gps": [ + 48.4612697761, + 7.73493123238 + ], + "libelle_d_acheminement": "PLOBSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.73493123238, + 48.4612697761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a25a4c254ba3be32bf3573090909e0efdc38387c", + "fields": { + "code_commune_insee": "67379", + "nom_de_la_commune": "PREUSCHDORF", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9468559983, + 7.80368021275 + ], + "libelle_d_acheminement": "PREUSCHDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.80368021275, + 48.9468559983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf22845cdc3e7a63f763a5259e9e572e44ba8e64", + "fields": { + "code_commune_insee": "67382", + "nom_de_la_commune": "QUATZENHEIM", + "code_postal": "67117", + "coordonnees_gps": [ + 48.6274123136, + 7.57602311143 + ], + "libelle_d_acheminement": "QUATZENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57602311143, + 48.6274123136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fb13c235a1bae8618a796d00005eee02e7c530d", + "fields": { + "code_commune_insee": "67389", + "nom_de_la_commune": "REICHSTETT", + "code_postal": "67116", + "coordonnees_gps": [ + 48.6474873068, + 7.75703020685 + ], + "libelle_d_acheminement": "REICHSTETT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.75703020685, + 48.6474873068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d953d56c34c89a367e43bd4c557e8eb247cb5552", + "fields": { + "code_commune_insee": "67395", + "nom_de_la_commune": "REUTENBOURG", + "code_postal": "67440", + "coordonnees_gps": [ + 48.6821850405, + 7.40817008946 + ], + "libelle_d_acheminement": "REUTENBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40817008946, + 48.6821850405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d1b129a063df8bb032027552090da642ccd8f32", + "fields": { + "code_commune_insee": "67397", + "nom_de_la_commune": "RHINAU", + "code_postal": "67860", + "coordonnees_gps": [ + 48.3122226913, + 7.70444455631 + ], + "libelle_d_acheminement": "RHINAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70444455631, + 48.3122226913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67746070362cd96abf2de45458ff6961b2e5e5c6", + "fields": { + "code_commune_insee": "67411", + "nom_de_la_commune": "ROSHEIM", + "code_postal": "67560", + "coordonnees_gps": [ + 48.490413735, + 7.41207007733 + ], + "libelle_d_acheminement": "ROSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41207007733, + 48.490413735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88366eb51341210632871420d1267605e567ac76", + "fields": { + "code_commune_insee": "67413", + "nom_de_la_commune": "ROSTEIG", + "code_postal": "67290", + "coordonnees_gps": [ + 48.9319268767, + 7.33608226075 + ], + "libelle_d_acheminement": "ROSTEIG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33608226075, + 48.9319268767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84d545f3c217ea0925c12836bdff21ee3c222f35", + "fields": { + "code_commune_insee": "67415", + "nom_de_la_commune": "ROTHBACH", + "code_postal": "67340", + "coordonnees_gps": [ + 48.9053776455, + 7.51101928675 + ], + "libelle_d_acheminement": "ROTHBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51101928675, + 48.9053776455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b4d1d8a89b11340422984f138708898f4070166", + "fields": { + "ligne_5": "SCHWARZBACH", + "code_commune_insee": "67420", + "libelle_d_acheminement": "RUSS", + "code_postal": "67130", + "nom_de_la_commune": "RUSS", + "coordonnees_gps": [ + 48.485644468, + 7.26907262122 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26907262122, + 48.485644468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b390e9cfd7ca7206c9751cc68894f8bc1eb7ac7a", + "fields": { + "ligne_5": "HOHWARTH", + "code_commune_insee": "67430", + "libelle_d_acheminement": "ST PIERRE BOIS", + "code_postal": "67220", + "nom_de_la_commune": "ST PIERRE BOIS", + "coordonnees_gps": [ + 48.3357426244, + 7.36372911449 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36372911449, + 48.3357426244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d55193c0daf93a33cf5299b14bda7c8874f2cbcc", + "fields": { + "ligne_5": "ZORNHOF", + "code_commune_insee": "67437", + "libelle_d_acheminement": "SAVERNE", + "code_postal": "67700", + "nom_de_la_commune": "SAVERNE", + "coordonnees_gps": [ + 48.7402250066, + 7.34206238199 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34206238199, + 48.7402250066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc5680c7c3020dc9e548d661cfa709abb5c1b04e", + "fields": { + "code_commune_insee": "67438", + "nom_de_la_commune": "SCHAEFFERSHEIM", + "code_postal": "67150", + "coordonnees_gps": [ + 48.4340220417, + 7.61316826135 + ], + "libelle_d_acheminement": "SCHAEFFERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61316826135, + 48.4340220417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b99dd7b0ff388b30193813b4ef34254d692d923d", + "fields": { + "code_commune_insee": "67444", + "nom_de_la_commune": "SCHERLENHEIM", + "code_postal": "67270", + "coordonnees_gps": [ + 48.7660880313, + 7.53344245942 + ], + "libelle_d_acheminement": "SCHERLENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53344245942, + 48.7660880313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "697e74f2310d4b96bd6f40e540cb1dad37eeb05f", + "fields": { + "ligne_5": "KIENTZVILLE", + "code_commune_insee": "67445", + "libelle_d_acheminement": "SCHERWILLER", + "code_postal": "67750", + "nom_de_la_commune": "SCHERWILLER", + "coordonnees_gps": [ + 48.2952491317, + 7.41512520333 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41512520333, + 48.2952491317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6086dc5d3bdbd460dfb5dae7b86694afa78ba26a", + "fields": { + "code_commune_insee": "67462", + "nom_de_la_commune": "SELESTAT", + "code_postal": "67600", + "coordonnees_gps": [ + 48.2481136279, + 7.46224896454 + ], + "libelle_d_acheminement": "SELESTAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46224896454, + 48.2481136279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3161a27238c21cc3c6c987c0aacabdd6d0352543", + "fields": { + "code_commune_insee": "67470", + "nom_de_la_commune": "SOLBACH", + "code_postal": "67130", + "coordonnees_gps": [ + 48.4311691709, + 7.19975808177 + ], + "libelle_d_acheminement": "SOLBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19975808177, + 48.4311691709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeff6099ea25ba725add77b9a46489bb969bafc0", + "fields": { + "ligne_5": "HOHWILLER", + "code_commune_insee": "67474", + "libelle_d_acheminement": "SOULTZ SOUS FORETS", + "code_postal": "67250", + "nom_de_la_commune": "SOULTZ SOUS FORETS", + "coordonnees_gps": [ + 48.9461642075, + 7.87359864642 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.87359864642, + 48.9461642075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3967d8338022fc18fd26a7f69eceeaf5a51a4ef6", + "fields": { + "code_commune_insee": "67482", + "nom_de_la_commune": "STRASBOURG", + "code_postal": "67200", + "coordonnees_gps": [ + 48.5712679849, + 7.76752679517 + ], + "libelle_d_acheminement": "STRASBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76752679517, + 48.5712679849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f3d3f172bf285a180d25b6783261411a4d1d0f1", + "fields": { + "code_commune_insee": "67485", + "nom_de_la_commune": "STUTZHEIM OFFENHEIM", + "code_postal": "67370", + "coordonnees_gps": [ + 48.6266854677, + 7.62711611103 + ], + "libelle_d_acheminement": "STUTZHEIM OFFENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62711611103, + 48.6266854677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "058cf9e58ea8bc06b5b7c1811bacdcc39f629d8a", + "fields": { + "code_commune_insee": "67498", + "nom_de_la_commune": "UHRWILLER", + "code_postal": "67350", + "coordonnees_gps": [ + 48.8809856779, + 7.57978326718 + ], + "libelle_d_acheminement": "UHRWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57978326718, + 48.8809856779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "866dd58b8d2d4d5b8f6a7d6bab7cc08147b0507c", + "fields": { + "code_commune_insee": "67509", + "nom_de_la_commune": "VOLKSBERG", + "code_postal": "67290", + "coordonnees_gps": [ + 48.940471202, + 7.29797593831 + ], + "libelle_d_acheminement": "VOLKSBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29797593831, + 48.940471202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b3eeab63b11be42c0683dd35f9df6395884e0ba", + "fields": { + "code_commune_insee": "67515", + "nom_de_la_commune": "WALDOLWISHEIM", + "code_postal": "67700", + "coordonnees_gps": [ + 48.734237181, + 7.4372618571 + ], + "libelle_d_acheminement": "WALDOLWISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4372618571, + 48.734237181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b42b89270ae650488637e242d96388450b14bcf8", + "fields": { + "code_commune_insee": "67519", + "nom_de_la_commune": "LA WANTZENAU", + "code_postal": "67610", + "coordonnees_gps": [ + 48.6593283518, + 7.83143435964 + ], + "libelle_d_acheminement": "LA WANTZENAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.83143435964, + 48.6593283518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5dd284d38c110fea6ed7936b4b25a2c4dd72829", + "fields": { + "code_commune_insee": "67520", + "nom_de_la_commune": "WASSELONNE", + "code_postal": "67310", + "coordonnees_gps": [ + 48.6388786162, + 7.44230441985 + ], + "libelle_d_acheminement": "WASSELONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44230441985, + 48.6388786162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7125a41ccb8ff425f9dc08a009cf3e224a31f475", + "fields": { + "code_commune_insee": "67529", + "nom_de_la_commune": "WEYERSHEIM", + "code_postal": "67720", + "coordonnees_gps": [ + 48.7165328229, + 7.83088991844 + ], + "libelle_d_acheminement": "WEYERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.83088991844, + 48.7165328229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5a061a65c4240ae278fd6eb8678703fe2d77543", + "fields": { + "ligne_5": "WILSHAUSEN", + "code_commune_insee": "67530", + "libelle_d_acheminement": "WICKERSHEIM WILSHAUSEN", + "code_postal": "67270", + "nom_de_la_commune": "WICKERSHEIM WILSHAUSEN", + "coordonnees_gps": [ + 48.7815411023, + 7.53331362139 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53331362139, + 48.7815411023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bde7aa5fddc1145acd35338bccdb6fd07a939194", + "fields": { + "code_commune_insee": "67536", + "nom_de_la_commune": "WINDSTEIN", + "code_postal": "67110", + "coordonnees_gps": [ + 48.9912433394, + 7.69559951845 + ], + "libelle_d_acheminement": "WINDSTEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69559951845, + 48.9912433394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c897f5d1e94f85c1558ecb7b82f1f0cd581f251", + "fields": { + "ligne_5": "MITTELHAUSEN", + "code_commune_insee": "67539", + "libelle_d_acheminement": "WINGERSHEIM LES QUATRE BANS", + "code_postal": "67170", + "nom_de_la_commune": "WINGERSHEIM LES QUATRE BANS", + "coordonnees_gps": [ + 48.7299632936, + 7.63820636503 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63820636503, + 48.7299632936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c07dcbbfa038f19d1795c2857270ac6b8097f22", + "fields": { + "ligne_5": "NETZENBACH", + "code_commune_insee": "67543", + "libelle_d_acheminement": "WISCHES", + "code_postal": "67130", + "nom_de_la_commune": "WISCHES", + "coordonnees_gps": [ + 48.5121595612, + 7.21702183927 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21702183927, + 48.5121595612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e25861c20ed9d828b7710efbad04277d5fba43bf", + "fields": { + "code_commune_insee": "67546", + "nom_de_la_commune": "WITTERSHEIM", + "code_postal": "67670", + "coordonnees_gps": [ + 48.7801634182, + 7.65461502349 + ], + "libelle_d_acheminement": "WITTERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.65461502349, + 48.7801634182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5453c3929551dad006e52c8487bdc369e3d1f938", + "fields": { + "code_commune_insee": "67553", + "nom_de_la_commune": "WOLSCHHEIM", + "code_postal": "67700", + "coordonnees_gps": [ + 48.706871713, + 7.45128183005 + ], + "libelle_d_acheminement": "WOLSCHHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45128183005, + 48.706871713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a63e11b56f72fbc7eb9ac06b819a2c3e3a2bf5c", + "fields": { + "code_commune_insee": "67556", + "nom_de_la_commune": "ZEINHEIM", + "code_postal": "67310", + "coordonnees_gps": [ + 48.6785745127, + 7.48842740498 + ], + "libelle_d_acheminement": "ZEINHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48842740498, + 48.6785745127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae29328fa6caba62efa0807fb71b14185af65e42", + "fields": { + "code_commune_insee": "68009", + "nom_de_la_commune": "ARTZENHEIM", + "code_postal": "68320", + "coordonnees_gps": [ + 48.1150139228, + 7.54242627283 + ], + "libelle_d_acheminement": "ARTZENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54242627283, + 48.1150139228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da7baeaeb4101a3e4bb77520d51b9b013c701c54", + "fields": { + "code_commune_insee": "68020", + "nom_de_la_commune": "BANTZENHEIM", + "code_postal": "68490", + "coordonnees_gps": [ + 47.8222082924, + 7.50289765703 + ], + "libelle_d_acheminement": "BANTZENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50289765703, + 47.8222082924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59ed2c50a5e0658d471154e69d24f900bdeb4771", + "fields": { + "ligne_5": "BARTENHEIM LA CHAUSSEE", + "code_commune_insee": "68021", + "libelle_d_acheminement": "BARTENHEIM", + "code_postal": "68870", + "nom_de_la_commune": "BARTENHEIM", + "coordonnees_gps": [ + 47.6362849044, + 7.4885344409 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4885344409, + 47.6362849044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1364051aaff80714f882387cc54d29695b356dd1", + "fields": { + "code_commune_insee": "68023", + "nom_de_la_commune": "BEBLENHEIM", + "code_postal": "68980", + "coordonnees_gps": [ + 48.1591484173, + 7.34155964145 + ], + "libelle_d_acheminement": "BEBLENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34155964145, + 48.1591484173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73c3a1e063ee1ae0a281f5aa46e2013bea39b6c7", + "fields": { + "code_commune_insee": "68024", + "nom_de_la_commune": "BELLEMAGNY", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6903963579, + 7.05935022603 + ], + "libelle_d_acheminement": "BELLEMAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05935022603, + 47.6903963579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6d252628112a65339f42c20d9c8d56e812f33e1", + "fields": { + "code_commune_insee": "68032", + "nom_de_la_commune": "BERRWILLER", + "code_postal": "68500", + "coordonnees_gps": [ + 47.8459225933, + 7.21845369299 + ], + "libelle_d_acheminement": "BERRWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21845369299, + 47.8459225933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c11e3e438f1b045c4081626288703cfc2dcbb81", + "fields": { + "code_commune_insee": "68034", + "nom_de_la_commune": "BETTLACH", + "code_postal": "68480", + "coordonnees_gps": [ + 47.511555294, + 7.42254471079 + ], + "libelle_d_acheminement": "BETTLACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42254471079, + 47.511555294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fec33eedc65c8b1f6885e873e837f29003a04e20", + "fields": { + "code_commune_insee": "68036", + "nom_de_la_commune": "BIESHEIM", + "code_postal": "68600", + "coordonnees_gps": [ + 48.0504323482, + 7.53680970912 + ], + "libelle_d_acheminement": "BIESHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53680970912, + 48.0504323482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27bf4697183c0287c4ce61296d93e044e6817c48", + "fields": { + "code_commune_insee": "68039", + "nom_de_la_commune": "BISEL", + "code_postal": "68580", + "coordonnees_gps": [ + 47.53847364, + 7.22083949332 + ], + "libelle_d_acheminement": "BISEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22083949332, + 47.53847364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f42dacc398488e4b7782c73dd92eded14b91e58c", + "fields": { + "code_commune_insee": "68045", + "nom_de_la_commune": "BOURBACH LE BAS", + "code_postal": "68290", + "coordonnees_gps": [ + 47.7727515199, + 7.05308714247 + ], + "libelle_d_acheminement": "BOURBACH LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05308714247, + 47.7727515199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f726feb1051fc9c3be75d74e20fd9a8f29cc017", + "fields": { + "code_commune_insee": "68054", + "nom_de_la_commune": "BRINCKHEIM", + "code_postal": "68870", + "coordonnees_gps": [ + 47.6210927169, + 7.45833574797 + ], + "libelle_d_acheminement": "BRINCKHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45833574797, + 47.6210927169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be496e5ce982c707f4362c06c8ff3c50022e9c11", + "fields": { + "code_commune_insee": "68069", + "nom_de_la_commune": "DESSENHEIM", + "code_postal": "68600", + "coordonnees_gps": [ + 47.9735592224, + 7.48193458989 + ], + "libelle_d_acheminement": "DESSENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48193458989, + 47.9735592224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ef3910b338d52b523bce32f16555a287c84daea", + "fields": { + "code_commune_insee": "68072", + "nom_de_la_commune": "DIETWILLER", + "code_postal": "68440", + "coordonnees_gps": [ + 47.7010678326, + 7.42599778593 + ], + "libelle_d_acheminement": "DIETWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42599778593, + 47.7010678326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e61a6c8a8e25ad82eb43fba04da6ae549356f21e", + "fields": { + "code_commune_insee": "68074", + "nom_de_la_commune": "DURLINSDORF", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4919501348, + 7.23379893851 + ], + "libelle_d_acheminement": "DURLINSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23379893851, + 47.4919501348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2972fd830f59a80eeb3c57f266fa91ea6c8159ba", + "fields": { + "code_commune_insee": "68077", + "nom_de_la_commune": "EGLINGEN", + "code_postal": "68720", + "coordonnees_gps": [ + 47.6565496554, + 7.18346024257 + ], + "libelle_d_acheminement": "EGLINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18346024257, + 47.6565496554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fdf0274b581a456e2f0c8185cc25dfa72a9c080", + "fields": { + "code_commune_insee": "68080", + "nom_de_la_commune": "EMLINGEN", + "code_postal": "68130", + "coordonnees_gps": [ + 47.627841475, + 7.29119379488 + ], + "libelle_d_acheminement": "EMLINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29119379488, + 47.627841475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8caab56d6d1d84b62f7eb3ea8817174a34b3403b", + "fields": { + "code_commune_insee": "68084", + "nom_de_la_commune": "ESCHENTZWILLER", + "code_postal": "68440", + "coordonnees_gps": [ + 47.7097157075, + 7.39173125323 + ], + "libelle_d_acheminement": "ESCHENTZWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39173125323, + 47.7097157075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90eead5734ac7ca3420bbab9601646e5837d43b8", + "fields": { + "code_commune_insee": "68086", + "nom_de_la_commune": "FALKWILLER", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6808376844, + 7.1296631306 + ], + "libelle_d_acheminement": "FALKWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1296631306, + 47.6808376844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd66288584e6b0382bcd5364abbfcfff470901e5", + "fields": { + "code_commune_insee": "68087", + "nom_de_la_commune": "FELDBACH", + "code_postal": "68640", + "coordonnees_gps": [ + 47.5339340394, + 7.25619803671 + ], + "libelle_d_acheminement": "FELDBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25619803671, + 47.5339340394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c3161ce4821f7705f07d5d5a10dd4207a062a1b", + "fields": { + "code_commune_insee": "68088", + "nom_de_la_commune": "FELDKIRCH", + "code_postal": "68540", + "coordonnees_gps": [ + 47.8564873154, + 7.27311359047 + ], + "libelle_d_acheminement": "FELDKIRCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27311359047, + 47.8564873154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c3f688fed4c0ddc0a39de152f328e08fbb93c08", + "fields": { + "code_commune_insee": "68094", + "nom_de_la_commune": "FOLGENSBOURG", + "code_postal": "68220", + "coordonnees_gps": [ + 47.5385121748, + 7.44187031126 + ], + "libelle_d_acheminement": "FOLGENSBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44187031126, + 47.5385121748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c1d5b5e82effff9efd945e755e9dfd439ac5f20", + "fields": { + "code_commune_insee": "68100", + "nom_de_la_commune": "FULLEREN", + "code_postal": "68210", + "coordonnees_gps": [ + 47.5915166873, + 7.15765946964 + ], + "libelle_d_acheminement": "FULLEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15765946964, + 47.5915166873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ea8c14a92befa1f9e27b8ec3ebc3f56a46dfca9", + "fields": { + "code_commune_insee": "68114", + "nom_de_la_commune": "GUEVENATTEN", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6827031934, + 7.08344025468 + ], + "libelle_d_acheminement": "GUEVENATTEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08344025468, + 47.6827031934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38cb22bc0aa11f7eb1c155b599ca51ffb967fa18", + "fields": { + "code_commune_insee": "68115", + "nom_de_la_commune": "GUEWENHEIM", + "code_postal": "68116", + "coordonnees_gps": [ + 47.7499350784, + 7.09127523458 + ], + "libelle_d_acheminement": "GUEWENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09127523458, + 47.7499350784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a746c37bf4f6a8effd4a32ce9b4c9c3aae2d47c", + "fields": { + "code_commune_insee": "68117", + "nom_de_la_commune": "GUNSBACH", + "code_postal": "68140", + "coordonnees_gps": [ + 48.0614208106, + 7.16506568008 + ], + "libelle_d_acheminement": "GUNSBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16506568008, + 48.0614208106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b6475458ec0c5d384604f7f5281327b9d1d5be5", + "fields": { + "code_commune_insee": "68123", + "nom_de_la_commune": "HATTSTATT", + "code_postal": "68420", + "coordonnees_gps": [ + 48.0147694216, + 7.27362142833 + ], + "libelle_d_acheminement": "HATTSTATT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27362142833, + 48.0147694216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93160486fa83f50c272546e527ab74d24b935fa5", + "fields": { + "code_commune_insee": "68124", + "nom_de_la_commune": "HAUSGAUEN", + "code_postal": "68130", + "coordonnees_gps": [ + 47.6037839946, + 7.31760111595 + ], + "libelle_d_acheminement": "HAUSGAUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31760111595, + 47.6037839946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0341a5f4d7618340d1c31dbecdad2469391a05b6", + "fields": { + "code_commune_insee": "68127", + "nom_de_la_commune": "HEIDWILLER", + "code_postal": "68720", + "coordonnees_gps": [ + 47.6568601238, + 7.23377297694 + ], + "libelle_d_acheminement": "HEIDWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23377297694, + 47.6568601238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e63fb5d830e29e4c558c5d61363cf184dc659dea", + "fields": { + "code_commune_insee": "68130", + "nom_de_la_commune": "HEITEREN", + "code_postal": "68600", + "coordonnees_gps": [ + 47.9616184488, + 7.54628533058 + ], + "libelle_d_acheminement": "HEITEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54628533058, + 47.9616184488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef40bb5722cdd02ff735db03e41ce98cca92c965", + "fields": { + "code_commune_insee": "68136", + "nom_de_la_commune": "HETTENSCHLAG", + "code_postal": "68600", + "coordonnees_gps": [ + 48.0076759842, + 7.456998109 + ], + "libelle_d_acheminement": "HETTENSCHLAG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.456998109, + 48.0076759842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "873d4afab20ecd04c8aaba8c57db105d2947e142", + "fields": { + "code_commune_insee": "68139", + "nom_de_la_commune": "HIRTZBACH", + "code_postal": "68118", + "coordonnees_gps": [ + 47.5906206548, + 7.20843110407 + ], + "libelle_d_acheminement": "HIRTZBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20843110407, + 47.5906206548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "589bfbced850661eac8bbe05970f8a8e970eba07", + "fields": { + "code_commune_insee": "68140", + "nom_de_la_commune": "HIRTZFELDEN", + "code_postal": "68740", + "coordonnees_gps": [ + 47.9099477204, + 7.44697509823 + ], + "libelle_d_acheminement": "HIRTZFELDEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44697509823, + 47.9099477204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bb80cad4367c7659759f5c6828ab84697efb5fd", + "fields": { + "code_commune_insee": "68142", + "nom_de_la_commune": "HOHROD", + "code_postal": "68140", + "coordonnees_gps": [ + 48.063242328, + 7.13261807916 + ], + "libelle_d_acheminement": "HOHROD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13261807916, + 48.063242328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4d0a4d61f32db0cc5b7374e0e56607c1cbe9417", + "fields": { + "ligne_5": "RIEDWIHR", + "code_commune_insee": "68143", + "libelle_d_acheminement": "PORTE DU RIED", + "code_postal": "68320", + "nom_de_la_commune": "PORTE DU RIED", + "coordonnees_gps": [ + 48.1164812033, + 7.41859914847 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41859914847, + 48.1164812033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc27a957ed7ac99e080ab97661916caf2855e653", + "fields": { + "code_commune_insee": "68144", + "nom_de_la_commune": "HOMBOURG", + "code_postal": "68490", + "coordonnees_gps": [ + 47.7566036089, + 7.49041917296 + ], + "libelle_d_acheminement": "HOMBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49041917296, + 47.7566036089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "245270e2f5c28c2f894c2668471ac9f2f08dc1c1", + "fields": { + "code_commune_insee": "68145", + "nom_de_la_commune": "HORBOURG WIHR", + "code_postal": "68180", + "coordonnees_gps": [ + 48.08274524, + 7.40392986791 + ], + "libelle_d_acheminement": "HORBOURG WIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40392986791, + 48.08274524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0d8bfdfe41fca9c390b792c9cb75ecc37014240", + "fields": { + "ligne_5": "WIHR EN PLAINE", + "code_commune_insee": "68145", + "libelle_d_acheminement": "HORBOURG WIHR", + "code_postal": "68180", + "nom_de_la_commune": "HORBOURG WIHR", + "coordonnees_gps": [ + 48.08274524, + 7.40392986791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40392986791, + 48.08274524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6bea5543d517f29bb3b69b3169e9315bf42f267", + "fields": { + "code_commune_insee": "68150", + "nom_de_la_commune": "HUSSEREN LES CHATEAUX", + "code_postal": "68420", + "coordonnees_gps": [ + 48.0364791705, + 7.27810251549 + ], + "libelle_d_acheminement": "HUSSEREN LES CHATEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27810251549, + 48.0364791705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4944c4566c11b7ce3a2932186ade805a1d19fc89", + "fields": { + "code_commune_insee": "68152", + "nom_de_la_commune": "ILLFURTH", + "code_postal": "68720", + "coordonnees_gps": [ + 47.6759898554, + 7.26634202969 + ], + "libelle_d_acheminement": "ILLFURTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26634202969, + 47.6759898554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c6ade381c0663aa21a142fc59cdb0c934371739", + "fields": { + "code_commune_insee": "68154", + "nom_de_la_commune": "ILLZACH", + "code_postal": "68110", + "coordonnees_gps": [ + 47.7734992, + 7.36011136903 + ], + "libelle_d_acheminement": "ILLZACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36011136903, + 47.7734992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42c986848e8efd0c6035f28ef3ea43b1f949f146", + "fields": { + "code_commune_insee": "68161", + "nom_de_la_commune": "KATZENTHAL", + "code_postal": "68230", + "coordonnees_gps": [ + 48.1067132118, + 7.28187124195 + ], + "libelle_d_acheminement": "KATZENTHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28187124195, + 48.1067132118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6978856068095cd55d37307070ed3867beb8c897", + "fields": { + "ligne_5": "KAYSERSBERG", + "code_commune_insee": "68162", + "libelle_d_acheminement": "KAYSERSBERG VIGNOBLE", + "code_postal": "68240", + "nom_de_la_commune": "KAYSERSBERG VIGNOBLE", + "coordonnees_gps": [ + 48.1550192582, + 7.23808768656 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23808768656, + 48.1550192582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6af2905a582c1df64371c59a824b116a74453a7", + "fields": { + "ligne_5": "KIENTZHEIM", + "code_commune_insee": "68162", + "libelle_d_acheminement": "KAYSERSBERG VIGNOBLE", + "code_postal": "68240", + "nom_de_la_commune": "KAYSERSBERG VIGNOBLE", + "coordonnees_gps": [ + 48.1550192582, + 7.23808768656 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23808768656, + 48.1550192582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da9e141498af0c4cf66fef215cbc2368c83bbd1f", + "fields": { + "code_commune_insee": "68163", + "nom_de_la_commune": "KEMBS", + "code_postal": "68680", + "coordonnees_gps": [ + 47.6793674876, + 7.50063130465 + ], + "libelle_d_acheminement": "KEMBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50063130465, + 47.6793674876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e21b4ccbb06f441e129d4999aac1d89fb01317e", + "fields": { + "code_commune_insee": "68179", + "nom_de_la_commune": "LAUW", + "code_postal": "68290", + "coordonnees_gps": [ + 47.7620734612, + 7.02156776589 + ], + "libelle_d_acheminement": "LAUW" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02156776589, + 47.7620734612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d438e74ad58afd5897b3a4d8917a90b491771a0", + "fields": { + "code_commune_insee": "68182", + "nom_de_la_commune": "LEYMEN", + "code_postal": "68220", + "coordonnees_gps": [ + 47.5003880526, + 7.48444885931 + ], + "libelle_d_acheminement": "LEYMEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48444885931, + 47.5003880526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "311e3451cb6f9e61cbde10d31d1566da938f7052", + "fields": { + "code_commune_insee": "68188", + "nom_de_la_commune": "LINTHAL", + "code_postal": "68610", + "coordonnees_gps": [ + 47.951973745, + 7.09406827161 + ], + "libelle_d_acheminement": "LINTHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09406827161, + 47.951973745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d0e04be2a3c1a67399d9b612f012bac27553d0a", + "fields": { + "code_commune_insee": "68192", + "nom_de_la_commune": "VALDIEU LUTRAN", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6265524313, + 7.05577643274 + ], + "libelle_d_acheminement": "VALDIEU LUTRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05577643274, + 47.6265524313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58493e79f764547a19dd5d4fe76118251edd22c8", + "fields": { + "code_commune_insee": "68194", + "nom_de_la_commune": "LUTTER", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4578548286, + 7.37180651285 + ], + "libelle_d_acheminement": "LUTTER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37180651285, + 47.4578548286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2332cfb30df4970b20e9dbdf1bc547b37b85db8b", + "fields": { + "ligne_5": "MASEVAUX", + "code_commune_insee": "68201", + "libelle_d_acheminement": "MASEVAUX NIEDERBRUCK", + "code_postal": "68290", + "nom_de_la_commune": "MASEVAUX NIEDERBRUCK", + "coordonnees_gps": [ + 47.7778607514, + 6.99469023455 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99469023455, + 47.7778607514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30b68104f299e8f018246ecb31e4cff46917aec1", + "fields": { + "code_commune_insee": "68211", + "nom_de_la_commune": "MITZACH", + "code_postal": "68470", + "coordonnees_gps": [ + 47.8611986942, + 6.99775039385 + ], + "libelle_d_acheminement": "MITZACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99775039385, + 47.8611986942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ff8991adc9e6c07403ab67b4eb17916a19dcfb1", + "fields": { + "code_commune_insee": "68214", + "nom_de_la_commune": "MONTREUX JEUNE", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6042120757, + 7.02432974787 + ], + "libelle_d_acheminement": "MONTREUX JEUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02432974787, + 47.6042120757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ff4b4a8310e623f2204fcf853e4393a2fc6cf5f", + "fields": { + "code_commune_insee": "68221", + "nom_de_la_commune": "MUESPACH", + "code_postal": "68640", + "coordonnees_gps": [ + 47.5496649857, + 7.37287618717 + ], + "libelle_d_acheminement": "MUESPACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37287618717, + 47.5496649857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8884f7fb40e835bff57bfc25da93c812451eb3fe", + "fields": { + "code_commune_insee": "68223", + "nom_de_la_commune": "MUHLBACH SUR MUNSTER", + "code_postal": "68380", + "coordonnees_gps": [ + 48.028840895, + 7.07080984321 + ], + "libelle_d_acheminement": "MUHLBACH SUR MUNSTER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07080984321, + 48.028840895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbcc83e26ed3d378f7fb35b896c62ee932466205", + "fields": { + "code_commune_insee": "68227", + "nom_de_la_commune": "MUNTZENHEIM", + "code_postal": "68320", + "coordonnees_gps": [ + 48.1008840089, + 7.46904401123 + ], + "libelle_d_acheminement": "MUNTZENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46904401123, + 48.1008840089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92b3cb6b9f8d7fac7c2aff836fc2d18bec85bd36", + "fields": { + "code_commune_insee": "68239", + "nom_de_la_commune": "OBERBRUCK", + "code_postal": "68290", + "coordonnees_gps": [ + 47.8191429574, + 6.92431221811 + ], + "libelle_d_acheminement": "OBERBRUCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92431221811, + 47.8191429574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0e847859be636d82620f74165437cf11ccadee5", + "fields": { + "code_commune_insee": "68241", + "nom_de_la_commune": "OBERENTZEN", + "code_postal": "68127", + "coordonnees_gps": [ + 47.9380454434, + 7.38091455268 + ], + "libelle_d_acheminement": "OBERENTZEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.38091455268, + 47.9380454434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f516186ad423792049f6591a51dce483138d72e4", + "fields": { + "code_commune_insee": "68261", + "nom_de_la_commune": "RAMMERSMATT", + "code_postal": "68800", + "coordonnees_gps": [ + 47.7943948271, + 7.05982977679 + ], + "libelle_d_acheminement": "RAMMERSMATT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05982977679, + 47.7943948271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f424f17203b35af9d7615f90ea61a33f0de6807b", + "fields": { + "code_commune_insee": "68267", + "nom_de_la_commune": "REININGUE", + "code_postal": "68950", + "coordonnees_gps": [ + 47.7554724889, + 7.22032709078 + ], + "libelle_d_acheminement": "REININGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22032709078, + 47.7554724889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45a110b304bc1866cdea9f01413517bcf12bd613", + "fields": { + "code_commune_insee": "68268", + "nom_de_la_commune": "RETZWILLER", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6292733626, + 7.08760761112 + ], + "libelle_d_acheminement": "RETZWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08760761112, + 47.6292733626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b1d58c3ee6cc6855d9d4cbd9535decc273e4a55", + "fields": { + "code_commune_insee": "68275", + "nom_de_la_commune": "RIMBACH PRES MASEVAUX", + "code_postal": "68290", + "coordonnees_gps": [ + 47.8345267818, + 6.94187078441 + ], + "libelle_d_acheminement": "RIMBACH PRES MASEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94187078441, + 47.8345267818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f5dba8c59811494f05787dcfaa96db995a75b15", + "fields": { + "code_commune_insee": "68277", + "nom_de_la_commune": "RIQUEWIHR", + "code_postal": "68340", + "coordonnees_gps": [ + 48.1787804995, + 7.27259187393 + ], + "libelle_d_acheminement": "RIQUEWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27259187393, + 48.1787804995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d20d4b1aedef74c15c000814ffb2f42f74fe4362", + "fields": { + "code_commune_insee": "68278", + "nom_de_la_commune": "RIXHEIM", + "code_postal": "68170", + "coordonnees_gps": [ + 47.7495819243, + 7.4072406005 + ], + "libelle_d_acheminement": "RIXHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4072406005, + 47.7495819243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "628b0a465c99a419d70dfd21fe878d9022c20cd8", + "fields": { + "code_commune_insee": "68288", + "nom_de_la_commune": "RUEDERBACH", + "code_postal": "68560", + "coordonnees_gps": [ + 47.5556783925, + 7.25778215672 + ], + "libelle_d_acheminement": "RUEDERBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25778215672, + 47.5556783925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c72de5bcad337158dd183571f2a9c001efdf18f", + "fields": { + "code_commune_insee": "68289", + "nom_de_la_commune": "RUELISHEIM", + "code_postal": "68270", + "coordonnees_gps": [ + 47.8223744559, + 7.35273202444 + ], + "libelle_d_acheminement": "RUELISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35273202444, + 47.8223744559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e1510b4cf17480ad5772ca1518c06adfbc6a8a3", + "fields": { + "code_commune_insee": "68291", + "nom_de_la_commune": "RUMERSHEIM LE HAUT", + "code_postal": "68740", + "coordonnees_gps": [ + 47.8531681217, + 7.51760806653 + ], + "libelle_d_acheminement": "RUMERSHEIM LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51760806653, + 47.8531681217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe3922f6559b7d418792e40df4346d46646699cb", + "fields": { + "code_commune_insee": "68293", + "nom_de_la_commune": "ST COSME", + "code_postal": "68210", + "coordonnees_gps": [ + 47.680928319, + 7.0534744668 + ], + "libelle_d_acheminement": "ST COSME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0534744668, + 47.680928319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71877fa6e0fe13a175700d16c6bf0932486ba6fa", + "fields": { + "ligne_5": "ST LOUIS LA CHAUSSEE", + "code_commune_insee": "68297", + "libelle_d_acheminement": "ST LOUIS", + "code_postal": "68300", + "nom_de_la_commune": "ST LOUIS", + "coordonnees_gps": [ + 47.6016553367, + 7.54061872745 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54061872745, + 47.6016553367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39afbe5af808f7d247f94dba7dda4d101ba088d1", + "fields": { + "ligne_5": "ECHERY", + "code_commune_insee": "68298", + "libelle_d_acheminement": "STE MARIE AUX MINES", + "code_postal": "68160", + "nom_de_la_commune": "STE MARIE AUX MINES", + "coordonnees_gps": [ + 48.2285762223, + 7.16926143657 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16926143657, + 48.2285762223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d36796e9597af72b8e3e5ffb7a6c050b5b14bbf1", + "fields": { + "code_commune_insee": "68312", + "nom_de_la_commune": "SONDERSDORF", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4773648942, + 7.33375593304 + ], + "libelle_d_acheminement": "SONDERSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33375593304, + 47.4773648942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ee2189ec5023f319b98d9d3fddae0b5341b0bc4", + "fields": { + "code_commune_insee": "68316", + "nom_de_la_commune": "SOULTZBACH LES BAINS", + "code_postal": "68230", + "coordonnees_gps": [ + 48.0284078615, + 7.20442898654 + ], + "libelle_d_acheminement": "SOULTZBACH LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20442898654, + 48.0284078615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "055a2e8492df4c2017da10392591881ad10e64e8", + "fields": { + "code_commune_insee": "68318", + "nom_de_la_commune": "SOULTZMATT", + "code_postal": "68570", + "coordonnees_gps": [ + 47.9701032152, + 7.21175482373 + ], + "libelle_d_acheminement": "SOULTZMATT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21175482373, + 47.9701032152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dd33006f4a06dd0f090b73c08fca93e1877f90a", + "fields": { + "code_commune_insee": "01006", + "nom_de_la_commune": "AMBLEON", + "code_postal": "01300", + "coordonnees_gps": [ + 45.7494989044, + 5.59432017366 + ], + "libelle_d_acheminement": "AMBLEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59432017366, + 45.7494989044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa9aa24e1d9608037b97ec2bd62ba1a98610356d", + "fields": { + "code_commune_insee": "01007", + "nom_de_la_commune": "AMBRONAY", + "code_postal": "01500", + "coordonnees_gps": [ + 46.0055913782, + 5.35760660735 + ], + "libelle_d_acheminement": "AMBRONAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35760660735, + 46.0055913782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b80cfaca0684ebfe84e039c981b001d8a0056501", + "fields": { + "code_commune_insee": "01014", + "nom_de_la_commune": "ARBENT", + "code_postal": "01100", + "coordonnees_gps": [ + 46.2834936005, + 5.69061651221 + ], + "libelle_d_acheminement": "ARBENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69061651221, + 46.2834936005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53fdce91d8f3ec50d474a5b2b2ca57b98720caca", + "fields": { + "ligne_5": "ARBIGNIEU", + "code_commune_insee": "01015", + "libelle_d_acheminement": "ARBOYS EN BUGEY", + "code_postal": "01300", + "nom_de_la_commune": "ARBOYS EN BUGEY", + "coordonnees_gps": [ + 45.7237621545, + 5.65263086429 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65263086429, + 45.7237621545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b20d52e1efe1a585d39fea75b722cd6ab57086da", + "fields": { + "code_commune_insee": "01016", + "nom_de_la_commune": "ARBIGNY", + "code_postal": "01190", + "coordonnees_gps": [ + 46.4776762988, + 4.9599416863 + ], + "libelle_d_acheminement": "ARBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9599416863, + 46.4776762988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92ad28f5e5933beb5541cfaddc675a8745390158", + "fields": { + "code_commune_insee": "01026", + "nom_de_la_commune": "BAGE LE CHATEL", + "code_postal": "01380", + "coordonnees_gps": [ + 46.3077069231, + 4.92862084189 + ], + "libelle_d_acheminement": "BAGE LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92862084189, + 46.3077069231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9e28497db96ce8c709b2f394c48ce756d3eb03d", + "fields": { + "code_commune_insee": "01027", + "nom_de_la_commune": "BALAN", + "code_postal": "01360", + "coordonnees_gps": [ + 45.8311226453, + 5.10780019249 + ], + "libelle_d_acheminement": "BALAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10780019249, + 45.8311226453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "273d1a23890d2796239b7a5db019ef26b1cfd800", + "fields": { + "code_commune_insee": "01034", + "nom_de_la_commune": "BELLEY", + "code_postal": "01300", + "coordonnees_gps": [ + 45.7494697806, + 5.68412365526 + ], + "libelle_d_acheminement": "BELLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68412365526, + 45.7494697806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cb4976d1f9db74164247b7afae89b39df9bb6da", + "fields": { + "ligne_5": "CHARANCIN", + "code_commune_insee": "01036", + "libelle_d_acheminement": "VALROMEY SUR SERAN", + "code_postal": "01260", + "nom_de_la_commune": "VALROMEY SUR SERAN", + "coordonnees_gps": [ + 45.8847475883, + 5.65115788055 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65115788055, + 45.8847475883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03c3a4ef22389527055d9c43b03589f44618b5f8", + "fields": { + "ligne_5": "FITIGNIEU", + "code_commune_insee": "01036", + "libelle_d_acheminement": "VALROMEY SUR SERAN", + "code_postal": "01260", + "nom_de_la_commune": "VALROMEY SUR SERAN", + "coordonnees_gps": [ + 45.8847475883, + 5.65115788055 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65115788055, + 45.8847475883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55991c564f26b61aab96ca2c0b755dcd7545e2be", + "fields": { + "code_commune_insee": "01037", + "nom_de_la_commune": "BENONCES", + "code_postal": "01470", + "coordonnees_gps": [ + 45.8374974718, + 5.48285330863 + ], + "libelle_d_acheminement": "BENONCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48285330863, + 45.8374974718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63c270cd04e41ffbe7b8f89a5fc15617f4f57bb8", + "fields": { + "code_commune_insee": "01039", + "nom_de_la_commune": "BEON", + "code_postal": "01350", + "coordonnees_gps": [ + 45.8568920052, + 5.75220315052 + ], + "libelle_d_acheminement": "BEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75220315052, + 45.8568920052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "593d7286f6fadc4c8dcf7b93c5581e573d716ef9", + "fields": { + "code_commune_insee": "01050", + "nom_de_la_commune": "BOISSEY", + "code_postal": "01380", + "coordonnees_gps": [ + 46.3727973545, + 4.9989764059 + ], + "libelle_d_acheminement": "BOISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9989764059, + 46.3727973545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb124fd5475607f3bdef155d0d41d9a383a548f8", + "fields": { + "code_commune_insee": "01062", + "nom_de_la_commune": "BRESSOLLES", + "code_postal": "01360", + "coordonnees_gps": [ + 45.869423064, + 5.1009428902 + ], + "libelle_d_acheminement": "BRESSOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1009428902, + 45.869423064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94e6ada78cbb56114183f8f3e1321b010ea09a03", + "fields": { + "code_commune_insee": "01063", + "nom_de_la_commune": "BRION", + "code_postal": "01460", + "coordonnees_gps": [ + 46.1686327301, + 5.54656422194 + ], + "libelle_d_acheminement": "BRION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54656422194, + 46.1686327301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbd56e8c3d74f4ed96a3f269c610050787eb89ca", + "fields": { + "code_commune_insee": "01067", + "nom_de_la_commune": "CEIGNES", + "code_postal": "01430", + "coordonnees_gps": [ + 46.1256533435, + 5.49457379202 + ], + "libelle_d_acheminement": "CEIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49457379202, + 46.1256533435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7ea55aaf131b87eb90630c7ed7b11e9957e7b3c", + "fields": { + "code_commune_insee": "01068", + "nom_de_la_commune": "CERDON", + "code_postal": "01450", + "coordonnees_gps": [ + 46.0720202633, + 5.47577586118 + ], + "libelle_d_acheminement": "CERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47577586118, + 46.0720202633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84f97f48fb45ff6b58789130a7db881be8689aca", + "fields": { + "code_commune_insee": "01069", + "nom_de_la_commune": "CERTINES", + "code_postal": "01240", + "coordonnees_gps": [ + 46.1337950959, + 5.26239539372 + ], + "libelle_d_acheminement": "CERTINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26239539372, + 46.1337950959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b0e89c2a995ac711f6d6950c50c563d563b1c26", + "fields": { + "code_commune_insee": "01071", + "nom_de_la_commune": "CESSY", + "code_postal": "01170", + "coordonnees_gps": [ + 46.315689376, + 6.0779844362 + ], + "libelle_d_acheminement": "CESSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0779844362, + 46.315689376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe58a120ea847f11c59316de106c6e6bc777cb15", + "fields": { + "code_commune_insee": "01073", + "nom_de_la_commune": "CEYZERIEU", + "code_postal": "01350", + "coordonnees_gps": [ + 45.8335530148, + 5.71933090966 + ], + "libelle_d_acheminement": "CEYZERIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71933090966, + 45.8335530148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d254b6fb18732f49a7ec64665b542432a5c7bb82", + "fields": { + "code_commune_insee": "01074", + "nom_de_la_commune": "CHALAMONT", + "code_postal": "01320", + "coordonnees_gps": [ + 46.0076491739, + 5.16936568 + ], + "libelle_d_acheminement": "CHALAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16936568, + 46.0076491739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "819ada4a2f6b3e8a430955a516da22d56e396721", + "fields": { + "code_commune_insee": "01076", + "nom_de_la_commune": "CHALEY", + "code_postal": "01230", + "coordonnees_gps": [ + 45.9533367734, + 5.53682505273 + ], + "libelle_d_acheminement": "CHALEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53682505273, + 45.9533367734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23272f92f6be3c8a498d9135391e4ab10fefb36e", + "fields": { + "code_commune_insee": "01077", + "nom_de_la_commune": "CHALLES LA MONTAGNE", + "code_postal": "01450", + "coordonnees_gps": [ + 46.1221539654, + 5.45755377201 + ], + "libelle_d_acheminement": "CHALLES LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45755377201, + 46.1221539654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8fc49be6807cd13146e58125eff8ffb733ce009", + "fields": { + "ligne_5": "CORCELLES", + "code_commune_insee": "01080", + "libelle_d_acheminement": "CHAMPDOR CORCELLES", + "code_postal": "01110", + "nom_de_la_commune": "CHAMPDOR CORCELLES", + "coordonnees_gps": [ + 46.0198844188, + 5.60008759722 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60008759722, + 46.0198844188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c806b5dfacbc1b7d90a9e780a656711c8388e2d9", + "fields": { + "code_commune_insee": "01088", + "nom_de_la_commune": "CHARNOZ SUR AIN", + "code_postal": "01800", + "coordonnees_gps": [ + 45.8736786869, + 5.2211032563 + ], + "libelle_d_acheminement": "CHARNOZ SUR AIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2211032563, + 45.8736786869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a3740081e24eb9f1b08b4e926fab2bf24279f9e", + "fields": { + "code_commune_insee": "01089", + "nom_de_la_commune": "CHATEAU GAILLARD", + "code_postal": "01500", + "coordonnees_gps": [ + 45.9730390239, + 5.30754273532 + ], + "libelle_d_acheminement": "CHATEAU GAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30754273532, + 45.9730390239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0246532582570ca693d438a88b992cf11c2f0d6", + "fields": { + "ligne_5": "CHAVANNES SUR SURAN", + "code_commune_insee": "01095", + "libelle_d_acheminement": "NIVIGNE ET SURAN", + "code_postal": "01250", + "nom_de_la_commune": "NIVIGNE ET SURAN", + "coordonnees_gps": [ + 46.2750157946, + 5.41649423093 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41649423093, + 46.2750157946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e18c1304ae4ef2c761e34909731d69791e495fb5", + "fields": { + "code_commune_insee": "01098", + "nom_de_la_commune": "CHAZEY BONS", + "code_postal": "01300", + "coordonnees_gps": [ + 45.7925770617, + 5.68477063188 + ], + "libelle_d_acheminement": "CHAZEY BONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68477063188, + 45.7925770617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25ad0c021eafce91c4ce6662667d339ff47bbba2", + "fields": { + "code_commune_insee": "01102", + "nom_de_la_commune": "CHEVROUX", + "code_postal": "01190", + "coordonnees_gps": [ + 46.38249255, + 4.96288275972 + ], + "libelle_d_acheminement": "CHEVROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96288275972, + 46.38249255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab37fc190768986d1539b567c6a6a2fed798b7a8", + "fields": { + "code_commune_insee": "01104", + "nom_de_la_commune": "CHEZERY FORENS", + "code_postal": "01410", + "coordonnees_gps": [ + 46.222573373, + 5.87248105275 + ], + "libelle_d_acheminement": "CHEZERY FORENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87248105275, + 46.222573373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdc29e2ac996ef1ed8d6d312d2436b7c24791b99", + "fields": { + "code_commune_insee": "01106", + "nom_de_la_commune": "CIZE", + "code_postal": "01250", + "coordonnees_gps": [ + 46.2003848172, + 5.45082526739 + ], + "libelle_d_acheminement": "CIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45082526739, + 46.2003848172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c418ae81c7ba44afa4c6a61c101ee6fe95cddaf4", + "fields": { + "code_commune_insee": "01110", + "nom_de_la_commune": "COLOMIEU", + "code_postal": "01300", + "coordonnees_gps": [ + 45.7361469025, + 5.62670101041 + ], + "libelle_d_acheminement": "COLOMIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62670101041, + 45.7361469025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70626ace84413484288477db9e1dbc2d483246a9", + "fields": { + "code_commune_insee": "01113", + "nom_de_la_commune": "CONDEISSIAT", + "code_postal": "01400", + "coordonnees_gps": [ + 46.1538469834, + 5.08437171701 + ], + "libelle_d_acheminement": "CONDEISSIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08437171701, + 46.1538469834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6691fe97d53947ecfd13ecbea398a8007cdb3071", + "fields": { + "code_commune_insee": "01118", + "nom_de_la_commune": "CORBONOD", + "code_postal": "01420", + "coordonnees_gps": [ + 45.9659473187, + 5.78961970355 + ], + "libelle_d_acheminement": "CORBONOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78961970355, + 45.9659473187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64941bf5f95488c7fadbc2622c9a963706ea0b93", + "fields": { + "code_commune_insee": "01121", + "nom_de_la_commune": "CORLIER", + "code_postal": "01110", + "coordonnees_gps": [ + 46.0336885573, + 5.49635755029 + ], + "libelle_d_acheminement": "CORLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49635755029, + 46.0336885573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8d8af42cf99a31d316be9e3c6829cac95e1b0a5", + "fields": { + "code_commune_insee": "01124", + "nom_de_la_commune": "CORMOZ", + "code_postal": "01560", + "coordonnees_gps": [ + 46.4336632942, + 5.22181275755 + ], + "libelle_d_acheminement": "CORMOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22181275755, + 46.4336632942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13126047d82fd82e6f50ef7c846153a1baa7a55a", + "fields": { + "code_commune_insee": "01128", + "nom_de_la_commune": "COURTES", + "code_postal": "01560", + "coordonnees_gps": [ + 46.4570082032, + 5.11128546723 + ], + "libelle_d_acheminement": "COURTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11128546723, + 46.4570082032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9f46e63df699257b0a52c05fcedaa5b3e871871", + "fields": { + "code_commune_insee": "01133", + "nom_de_la_commune": "CRESSIN ROCHEFORT", + "code_postal": "01350", + "coordonnees_gps": [ + 45.7826434885, + 5.76546256637 + ], + "libelle_d_acheminement": "CRESSIN ROCHEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76546256637, + 45.7826434885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d91f430a213a0d5c38d12a5fbf1289c3fadd8de", + "fields": { + "code_commune_insee": "01134", + "nom_de_la_commune": "CROTTET", + "code_postal": "01290", + "coordonnees_gps": [ + 46.283072336, + 4.87747971182 + ], + "libelle_d_acheminement": "CROTTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87747971182, + 46.283072336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4750c4fd20320d40a18e35c6fe98056ea5930213", + "fields": { + "code_commune_insee": "01136", + "nom_de_la_commune": "CRUZILLES LES MEPILLAT", + "code_postal": "01290", + "coordonnees_gps": [ + 46.2220588715, + 4.8752193513 + ], + "libelle_d_acheminement": "CRUZILLES LES MEPILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8752193513, + 46.2220588715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "715b16b92623d178e5cbbe1ee9f6f596740cd94d", + "fields": { + "code_commune_insee": "01163", + "nom_de_la_commune": "FOISSIAT", + "code_postal": "01340", + "coordonnees_gps": [ + 46.3784759782, + 5.18483641417 + ], + "libelle_d_acheminement": "FOISSIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18483641417, + 46.3784759782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e4d161f2353ebe3c4fd8f333e189591c79f26a3", + "fields": { + "ligne_5": "AMAREINS", + "code_commune_insee": "01165", + "libelle_d_acheminement": "FRANCHELEINS", + "code_postal": "01090", + "nom_de_la_commune": "FRANCHELEINS", + "coordonnees_gps": [ + 46.0735946256, + 4.81293575559 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81293575559, + 46.0735946256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72667c0c7dac233c5ae382799f1ea56fec9820ac", + "fields": { + "code_commune_insee": "01167", + "nom_de_la_commune": "GARNERANS", + "code_postal": "01140", + "coordonnees_gps": [ + 46.2136224825, + 4.82843188743 + ], + "libelle_d_acheminement": "GARNERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82843188743, + 46.2136224825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "746eb0d001c8360b994291920027d573febbbca2", + "fields": { + "code_commune_insee": "01171", + "nom_de_la_commune": "GEOVREISSET", + "code_postal": "01100", + "coordonnees_gps": [ + 46.2508621615, + 5.61271973915 + ], + "libelle_d_acheminement": "GEOVREISSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61271973915, + 46.2508621615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1e05c3290bd0cfa526e2cbfc90a932d9fe0e655", + "fields": { + "code_commune_insee": "01181", + "nom_de_la_commune": "GROISSIAT", + "code_postal": "01100", + "coordonnees_gps": [ + 46.2260039429, + 5.61095413441 + ], + "libelle_d_acheminement": "GROISSIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61095413441, + 46.2260039429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2e671617ccd7daa19efd95c811c83411037ccba", + "fields": { + "ligne_5": "HOTONNES", + "code_commune_insee": "01187", + "libelle_d_acheminement": "HAUT VALROMEY", + "code_postal": "01260", + "nom_de_la_commune": "HAUT VALROMEY", + "coordonnees_gps": [ + 46.0317412192, + 5.70267027388 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70267027388, + 46.0317412192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4e240f267d227682cfb4a3f9b40911d81e93015", + "fields": { + "ligne_5": "CRAZ", + "code_commune_insee": "01189", + "libelle_d_acheminement": "INJOUX GENISSIAT", + "code_postal": "01200", + "nom_de_la_commune": "INJOUX GENISSIAT", + "coordonnees_gps": [ + 46.0497734524, + 5.75991363273 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75991363273, + 46.0497734524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa28b07e893e8d322ddc81735f3b43b1f2c82256", + "fields": { + "code_commune_insee": "01199", + "nom_de_la_commune": "JUJURIEUX", + "code_postal": "01640", + "coordonnees_gps": [ + 46.0497041467, + 5.41094771899 + ], + "libelle_d_acheminement": "JUJURIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41094771899, + 46.0497041467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee256b1a804c503e7d2360e02d44186649432428", + "fields": { + "code_commune_insee": "01214", + "nom_de_la_commune": "LEYSSARD", + "code_postal": "01450", + "coordonnees_gps": [ + 46.1624187428, + 5.47633297491 + ], + "libelle_d_acheminement": "LEYSSARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47633297491, + 46.1624187428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53234332cd621be4ff251f5ba05207713e2375c2", + "fields": { + "code_commune_insee": "01228", + "nom_de_la_commune": "MAILLAT", + "code_postal": "01430", + "coordonnees_gps": [ + 46.1201642836, + 5.52854394238 + ], + "libelle_d_acheminement": "MAILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52854394238, + 46.1201642836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9050454dac055f787d4a670562a5b251317bb7ec", + "fields": { + "code_commune_insee": "01235", + "nom_de_la_commune": "MARLIEUX", + "code_postal": "01240", + "coordonnees_gps": [ + 46.0549073186, + 5.0741150816 + ], + "libelle_d_acheminement": "MARLIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0741150816, + 46.0549073186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04319e2aa96355078201df2413ba2f68302a73d6", + "fields": { + "code_commune_insee": "01245", + "nom_de_la_commune": "BOHAS MEYRIAT RIGNAT", + "code_postal": "01250", + "coordonnees_gps": [ + 46.1427060662, + 5.3780109646 + ], + "libelle_d_acheminement": "BOHAS MEYRIAT RIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3780109646, + 46.1427060662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2782d4493ea7c6b4723389a42afc0584254075d0", + "fields": { + "code_commune_insee": "01246", + "nom_de_la_commune": "MEZERIAT", + "code_postal": "01660", + "coordonnees_gps": [ + 46.2423102101, + 5.04725416984 + ], + "libelle_d_acheminement": "MEZERIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04725416984, + 46.2423102101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a85bf08bb68ecdf98cdc6632a9cfd01e96bd13ba", + "fields": { + "code_commune_insee": "01247", + "nom_de_la_commune": "MIJOUX", + "code_postal": "01170", + "coordonnees_gps": [ + 46.3622451724, + 6.00902631941 + ], + "libelle_d_acheminement": "MIJOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00902631941, + 46.3622451724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "560ed092794651464b4b46bcc4184a8bc456c6bf", + "fields": { + "code_commune_insee": "01254", + "nom_de_la_commune": "MONTAGNAT", + "code_postal": "01250", + "coordonnees_gps": [ + 46.1686969123, + 5.27962107938 + ], + "libelle_d_acheminement": "MONTAGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27962107938, + 46.1686969123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f60e88a3b750179e020806f886cc3002eb4b1592", + "fields": { + "code_commune_insee": "01255", + "nom_de_la_commune": "MONTAGNIEU", + "code_postal": "01470", + "coordonnees_gps": [ + 45.799449019, + 5.46428608859 + ], + "libelle_d_acheminement": "MONTAGNIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46428608859, + 45.799449019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a343b2d70bf5664231998662cacc3a10b19b51f4", + "fields": { + "ligne_5": "CORDIEUX", + "code_commune_insee": "01262", + "libelle_d_acheminement": "MONTLUEL", + "code_postal": "01120", + "nom_de_la_commune": "MONTLUEL", + "coordonnees_gps": [ + 45.8909006209, + 5.01987566185 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01987566185, + 45.8909006209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "884509601c92fdf6aa7baf63020a5a5ee2c641a6", + "fields": { + "code_commune_insee": "01264", + "nom_de_la_commune": "MONTRACOL", + "code_postal": "01310", + "coordonnees_gps": [ + 46.1867200301, + 5.11706011755 + ], + "libelle_d_acheminement": "MONTRACOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11706011755, + 46.1867200301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a164a629fa21439419e66729c905176727c92f14", + "fields": { + "code_commune_insee": "01268", + "nom_de_la_commune": "MURS ET GELIGNIEUX", + "code_postal": "01300", + "coordonnees_gps": [ + 45.6420014274, + 5.66039684889 + ], + "libelle_d_acheminement": "MURS ET GELIGNIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66039684889, + 45.6420014274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ee8808f1eef317a4394d02df82fa47a92f3e709", + "fields": { + "code_commune_insee": "01281", + "nom_de_la_commune": "ORNEX", + "code_postal": "01210", + "coordonnees_gps": [ + 46.2774557513, + 6.09454723599 + ], + "libelle_d_acheminement": "ORNEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09454723599, + 46.2774557513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b559e57c60d30ca25be91c81b0421913095dd8d", + "fields": { + "code_commune_insee": "01282", + "nom_de_la_commune": "OUTRIAZ", + "code_postal": "01430", + "coordonnees_gps": [ + 46.067796636, + 5.55697547429 + ], + "libelle_d_acheminement": "OUTRIAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55697547429, + 46.067796636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08c718bd71d9bae7ff5e6ba2ee2862c838ac1402", + "fields": { + "code_commune_insee": "01283", + "nom_de_la_commune": "OYONNAX", + "code_postal": "01100", + "coordonnees_gps": [ + 46.2605435859, + 5.65344320923 + ], + "libelle_d_acheminement": "OYONNAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65344320923, + 46.2605435859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a06235e5a75e36528e183e00b3b6cb680e0ceaa7", + "fields": { + "code_commune_insee": "01293", + "nom_de_la_commune": "PEYRIAT", + "code_postal": "01430", + "coordonnees_gps": [ + 46.1498184067, + 5.50572312284 + ], + "libelle_d_acheminement": "PEYRIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50572312284, + 46.1498184067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa23bcb6c4e3a3da1ccd7447075310244503161b", + "fields": { + "code_commune_insee": "01296", + "nom_de_la_commune": "PIRAJOUX", + "code_postal": "01270", + "coordonnees_gps": [ + 46.385801285, + 5.27417594024 + ], + "libelle_d_acheminement": "PIRAJOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27417594024, + 46.385801285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe2aa22e9fd56afd86c5e5ac559bb7d9459431f9", + "fields": { + "code_commune_insee": "01297", + "nom_de_la_commune": "PIZAY", + "code_postal": "01120", + "coordonnees_gps": [ + 45.8928509581, + 5.08915465965 + ], + "libelle_d_acheminement": "PIZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08915465965, + 45.8928509581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56f9e6a7d3a37ca1aaaa118b3dea257467e44a7d", + "fields": { + "code_commune_insee": "01303", + "nom_de_la_commune": "PONCIN", + "code_postal": "01450", + "coordonnees_gps": [ + 46.089530586, + 5.41681266947 + ], + "libelle_d_acheminement": "PONCIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41681266947, + 46.089530586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3b1cc16eb5d0c41163248a9fee1c063ff3c1b00", + "fields": { + "code_commune_insee": "01306", + "nom_de_la_commune": "PONT DE VEYLE", + "code_postal": "01290", + "coordonnees_gps": [ + 46.2637215091, + 4.88186068102 + ], + "libelle_d_acheminement": "PONT DE VEYLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88186068102, + 46.2637215091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "547c454a009bcaee2bd03ff33fc8082ccedcef83", + "fields": { + "code_commune_insee": "01311", + "nom_de_la_commune": "PREMILLIEU", + "code_postal": "01110", + "coordonnees_gps": [ + 45.876457149, + 5.56475010385 + ], + "libelle_d_acheminement": "PREMILLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56475010385, + 45.876457149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29b29ca3a592513d2d452c2cb1ef5f6ea045c068", + "fields": { + "code_commune_insee": "01314", + "nom_de_la_commune": "PRIAY", + "code_postal": "01160", + "coordonnees_gps": [ + 46.0197521486, + 5.28523353803 + ], + "libelle_d_acheminement": "PRIAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28523353803, + 46.0197521486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1204f59ae10141bdfbbbb34a04855b7493aa450", + "fields": { + "code_commune_insee": "01321", + "nom_de_la_commune": "REVONNAS", + "code_postal": "01250", + "coordonnees_gps": [ + 46.1615355815, + 5.33543916388 + ], + "libelle_d_acheminement": "REVONNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33543916388, + 46.1615355815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5aa9331776f59a03e6b458b119b41774596a3d0", + "fields": { + "code_commune_insee": "01333", + "nom_de_la_commune": "ST ANDRE DE CORCY", + "code_postal": "01390", + "coordonnees_gps": [ + 45.927001954, + 4.95373324492 + ], + "libelle_d_acheminement": "ST ANDRE DE CORCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95373324492, + 45.927001954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e4e4e52793c4ecea5208b3f4b8add4b417dec61", + "fields": { + "code_commune_insee": "01334", + "nom_de_la_commune": "ST ANDRE D HUIRIAT", + "code_postal": "01290", + "coordonnees_gps": [ + 46.2140960915, + 4.91291358797 + ], + "libelle_d_acheminement": "ST ANDRE D HUIRIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91291358797, + 46.2140960915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a80753cd51c27a5d6df940bf293e9293a9848f2a", + "fields": { + "ligne_5": "ST BENOIT", + "code_commune_insee": "01338", + "libelle_d_acheminement": "GROSLEE ST BENOIT", + "code_postal": "01300", + "nom_de_la_commune": "GROSLEE ST BENOIT", + "coordonnees_gps": [ + 45.6891842277, + 5.5843972561 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5843972561, + 45.6891842277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8183b8c91316cfab531818c069fbad54cd357fb1", + "fields": { + "ligne_5": "GROSLEE", + "code_commune_insee": "01338", + "libelle_d_acheminement": "GROSLEE ST BENOIT", + "code_postal": "01680", + "nom_de_la_commune": "GROSLEE ST BENOIT", + "coordonnees_gps": [ + 45.6891842277, + 5.5843972561 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5843972561, + 45.6891842277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad80e06f754cec5aca5ac189b0c90f149e277e17", + "fields": { + "code_commune_insee": "01342", + "nom_de_la_commune": "STE CROIX", + "code_postal": "01120", + "coordonnees_gps": [ + 45.895522477, + 5.04935536228 + ], + "libelle_d_acheminement": "STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04935536228, + 45.895522477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0257b4b9f9d85f8252706dd76381ff57525f660", + "fields": { + "code_commune_insee": "01343", + "nom_de_la_commune": "ST CYR SUR MENTHON", + "code_postal": "01380", + "coordonnees_gps": [ + 46.2754005606, + 4.96757105158 + ], + "libelle_d_acheminement": "ST CYR SUR MENTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96757105158, + 46.2754005606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7c4ecf092983e3b37868256167b65b18eb2bdb4", + "fields": { + "code_commune_insee": "01352", + "nom_de_la_commune": "ST ETIENNE SUR REYSSOUZE", + "code_postal": "01190", + "coordonnees_gps": [ + 46.4030398952, + 5.00605581573 + ], + "libelle_d_acheminement": "ST ETIENNE SUR REYSSOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00605581573, + 46.4030398952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f08a734e62476e5983deb2812818705474b6bf6", + "fields": { + "code_commune_insee": "01365", + "nom_de_la_commune": "ST JEAN SUR VEYLE", + "code_postal": "01290", + "coordonnees_gps": [ + 46.2683632132, + 4.92198366998 + ], + "libelle_d_acheminement": "ST JEAN SUR VEYLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92198366998, + 46.2683632132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "562c92862bd8874384097d274c14382149c5cab1", + "fields": { + "code_commune_insee": "01379", + "nom_de_la_commune": "ST MAURICE DE REMENS", + "code_postal": "01500", + "coordonnees_gps": [ + 45.9527471237, + 5.2708276475 + ], + "libelle_d_acheminement": "ST MAURICE DE REMENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2708276475, + 45.9527471237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67b2fa59b637420b15ff4916292e0e07a60bd3dd", + "fields": { + "code_commune_insee": "01381", + "nom_de_la_commune": "ST NIZIER LE DESERT", + "code_postal": "01320", + "coordonnees_gps": [ + 46.052861561, + 5.14246131764 + ], + "libelle_d_acheminement": "ST NIZIER LE DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14246131764, + 46.052861561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ab0893f3c5c235c92bb5adaab9906369aeb5b68", + "fields": { + "code_commune_insee": "01408", + "nom_de_la_commune": "SIMANDRE SUR SURAN", + "code_postal": "01250", + "coordonnees_gps": [ + 46.2340471594, + 5.42240815305 + ], + "libelle_d_acheminement": "SIMANDRE SUR SURAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42240815305, + 46.2340471594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee3f9448d62dede1f58e033b1881cdc8ddd98025", + "fields": { + "code_commune_insee": "01415", + "nom_de_la_commune": "TALISSIEU", + "code_postal": "01510", + "coordonnees_gps": [ + 45.8637167128, + 5.72090411074 + ], + "libelle_d_acheminement": "TALISSIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72090411074, + 45.8637167128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58c722c94def17f08ccdf919d06b6be4d0c00d24", + "fields": { + "code_commune_insee": "01420", + "nom_de_la_commune": "THOISSEY", + "code_postal": "01140", + "coordonnees_gps": [ + 46.1700943481, + 4.79387095814 + ], + "libelle_d_acheminement": "THOISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79387095814, + 46.1700943481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c46699b836584ca3851ded90cce88152f7d152a2", + "fields": { + "ligne_5": "CUISIAT", + "code_commune_insee": "01426", + "libelle_d_acheminement": "VAL REVERMONT", + "code_postal": "01370", + "nom_de_la_commune": "VAL REVERMONT", + "coordonnees_gps": [ + 46.2803281838, + 5.36083165162 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36083165162, + 46.2803281838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cd3a89bf407a50080d72476b5270038fd980d01", + "fields": { + "code_commune_insee": "01428", + "nom_de_la_commune": "VALEINS", + "code_postal": "01140", + "coordonnees_gps": [ + 46.1146467438, + 4.86551696868 + ], + "libelle_d_acheminement": "VALEINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86551696868, + 46.1146467438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d844a2382a15beb79bcc11bf91728f53c751e6bb", + "fields": { + "code_commune_insee": "01433", + "nom_de_la_commune": "VERNOUX", + "code_postal": "01560", + "coordonnees_gps": [ + 46.4848229774, + 5.10590413121 + ], + "libelle_d_acheminement": "VERNOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10590413121, + 46.4848229774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e9efaf8dcfb4d27235582043f2abebbcd6149e4", + "fields": { + "code_commune_insee": "01434", + "nom_de_la_commune": "VERSAILLEUX", + "code_postal": "01330", + "coordonnees_gps": [ + 45.9854373478, + 5.11204819151 + ], + "libelle_d_acheminement": "VERSAILLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11204819151, + 45.9854373478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81047965a51eb0243adf0c3b5cf07a9ca647692f", + "fields": { + "code_commune_insee": "01437", + "nom_de_la_commune": "VESCOURS", + "code_postal": "01560", + "coordonnees_gps": [ + 46.4743960759, + 5.02617426573 + ], + "libelle_d_acheminement": "VESCOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02617426573, + 46.4743960759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f1eb9ca044e91b35dc291b4d8db4d777bf3159f", + "fields": { + "code_commune_insee": "01439", + "nom_de_la_commune": "VESINES", + "code_postal": "01570", + "coordonnees_gps": [ + 46.3593397751, + 4.86265852202 + ], + "libelle_d_acheminement": "VESINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86265852202, + 46.3593397751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f53e02286d0e8dacb163989302343ac7d2cbd29f", + "fields": { + "code_commune_insee": "01441", + "nom_de_la_commune": "VIEU D IZENAVE", + "code_postal": "01430", + "coordonnees_gps": [ + 46.0853386653, + 5.54922100161 + ], + "libelle_d_acheminement": "VIEU D IZENAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54922100161, + 46.0853386653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eec93ecbd72b6695743846a197aae599918b637", + "fields": { + "ligne_5": "MOLLON", + "code_commune_insee": "01450", + "libelle_d_acheminement": "VILLIEU LOYES MOLLON", + "code_postal": "01800", + "nom_de_la_commune": "VILLIEU LOYES MOLLON", + "coordonnees_gps": [ + 45.932014998, + 5.22953071636 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22953071636, + 45.932014998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc0f78f7ba1b9e8d9b255336a7713e2f338ff8cf", + "fields": { + "code_commune_insee": "01454", + "nom_de_la_commune": "VIRIGNIN", + "code_postal": "01300", + "coordonnees_gps": [ + 45.7267387762, + 5.71282330936 + ], + "libelle_d_acheminement": "VIRIGNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71282330936, + 45.7267387762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc5e01364b2625a4258e40446b526f98d46b74f3", + "fields": { + "code_commune_insee": "01456", + "nom_de_la_commune": "VONGNES", + "code_postal": "01350", + "coordonnees_gps": [ + 45.8129059524, + 5.72536666767 + ], + "libelle_d_acheminement": "VONGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72536666767, + 45.8129059524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab267fad0420ce12932bda7336fdfb742231bc3d", + "fields": { + "code_commune_insee": "02003", + "nom_de_la_commune": "ACY", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3471963534, + 3.41817609834 + ], + "libelle_d_acheminement": "ACY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41817609834, + 49.3471963534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b082f0aa231fb0754b5c52cd1b5269ff60323257", + "fields": { + "code_commune_insee": "02005", + "nom_de_la_commune": "AGUILCOURT", + "code_postal": "02190", + "coordonnees_gps": [ + 49.393650796, + 3.96803679426 + ], + "libelle_d_acheminement": "AGUILCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96803679426, + 49.393650796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21b087fbbb7be70f871a14f550e4401d72a651c1", + "fields": { + "ligne_5": "FAUCOUCOURT", + "code_commune_insee": "02018", + "libelle_d_acheminement": "ANIZY LE GRAND", + "code_postal": "02320", + "nom_de_la_commune": "ANIZY LE GRAND", + "coordonnees_gps": [ + 49.5045058305, + 3.43129584952 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43129584952, + 49.5045058305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "343942b32dc1c8121e0287b3d52a40274af51e76", + "fields": { + "ligne_5": "BRANGES", + "code_commune_insee": "02022", + "libelle_d_acheminement": "ARCY STE RESTITUE", + "code_postal": "02130", + "nom_de_la_commune": "ARCY STE RESTITUE", + "coordonnees_gps": [ + 49.2548799371, + 3.47829076337 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47829076337, + 49.2548799371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c286fef7cb9b0729a56ae4342449f76e82301c5b", + "fields": { + "code_commune_insee": "02027", + "nom_de_la_commune": "ASSIS SUR SERRE", + "code_postal": "02270", + "coordonnees_gps": [ + 49.6803739117, + 3.55491692691 + ], + "libelle_d_acheminement": "ASSIS SUR SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55491692691, + 49.6803739117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1905ab1803c4dcf51e5225e75163e4d1578ca84a", + "fields": { + "code_commune_insee": "02030", + "nom_de_la_commune": "AUBENCHEUL AUX BOIS", + "code_postal": "02420", + "coordonnees_gps": [ + 50.0239903854, + 3.26103215604 + ], + "libelle_d_acheminement": "AUBENCHEUL AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26103215604, + 50.0239903854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09ea86e632ca75e951e0c6721a965bd8978a90e6", + "fields": { + "code_commune_insee": "02041", + "nom_de_la_commune": "AUTREVILLE", + "code_postal": "02300", + "coordonnees_gps": [ + 49.5860875305, + 3.23602708427 + ], + "libelle_d_acheminement": "AUTREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23602708427, + 49.5860875305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4580899ea549ddd7f481fe279d19f71c99d7e043", + "fields": { + "code_commune_insee": "02047", + "nom_de_la_commune": "BARENTON CEL", + "code_postal": "02000", + "coordonnees_gps": [ + 49.6477517259, + 3.64469997459 + ], + "libelle_d_acheminement": "BARENTON CEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64469997459, + 49.6477517259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d988def8243674192c315ec9675ec4911c97c09e", + "fields": { + "code_commune_insee": "02051", + "nom_de_la_commune": "BARZY SUR MARNE", + "code_postal": "02850", + "coordonnees_gps": [ + 49.0906196202, + 3.56214117254 + ], + "libelle_d_acheminement": "BARZY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56214117254, + 49.0906196202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a11209524408c6236a40ec9f7426c083473450a9", + "fields": { + "ligne_5": "ST AGNAN", + "code_commune_insee": "02053", + "libelle_d_acheminement": "VALLEES EN CHAMPAGNE", + "code_postal": "02330", + "nom_de_la_commune": "VALLEES EN CHAMPAGNE", + "coordonnees_gps": [ + 48.9896915811, + 3.60486686026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60486686026, + 48.9896915811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32f8dc026f753d808dd961f9642df1c973c42dd9", + "fields": { + "code_commune_insee": "02058", + "nom_de_la_commune": "BEAURIEUX", + "code_postal": "02160", + "coordonnees_gps": [ + 49.402806797, + 3.75287161991 + ], + "libelle_d_acheminement": "BEAURIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75287161991, + 49.402806797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33d7fb1ba41a28fb1fc9057775437cd08d3e9098", + "fields": { + "code_commune_insee": "02064", + "nom_de_la_commune": "BELLEU", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3567574344, + 3.34051688283 + ], + "libelle_d_acheminement": "BELLEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34051688283, + 49.3567574344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d604e8782461d30897a663b0fe849a0c55091f1", + "fields": { + "code_commune_insee": "02068", + "nom_de_la_commune": "BERLANCOURT", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7808533631, + 3.75710714699 + ], + "libelle_d_acheminement": "BERLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75710714699, + 49.7808533631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c51ac4383b979e7f04f70e4dc27c8cb444c0e531", + "fields": { + "code_commune_insee": "02071", + "nom_de_la_commune": "BERNY RIVIERE", + "code_postal": "02290", + "coordonnees_gps": [ + 49.4113288887, + 3.14975272702 + ], + "libelle_d_acheminement": "BERNY RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14975272702, + 49.4113288887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "140463f85c46be8908d513acd1109ada83d2e7ef", + "fields": { + "code_commune_insee": "02077", + "nom_de_la_commune": "BERZY LE SEC", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3172125296, + 3.29666086699 + ], + "libelle_d_acheminement": "BERZY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29666086699, + 49.3172125296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82604800f3c9ceab0737c87518246cff7780a176", + "fields": { + "code_commune_insee": "02086", + "nom_de_la_commune": "BICHANCOURT", + "code_postal": "02300", + "coordonnees_gps": [ + 49.578776546, + 3.21263017443 + ], + "libelle_d_acheminement": "BICHANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21263017443, + 49.578776546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ebe51be7da16c76024d398a4e7f4104dfaed8c3", + "fields": { + "code_commune_insee": "02091", + "nom_de_la_commune": "BLANZY LES FISMES", + "code_postal": "02160", + "coordonnees_gps": [ + 49.3372673738, + 3.671868408 + ], + "libelle_d_acheminement": "BLANZY LES FISMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.671868408, + 49.3372673738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a80265c4a8af6f5dbc9783c01d92f8582a6afd1", + "fields": { + "code_commune_insee": "02120", + "nom_de_la_commune": "BRENELLE", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3680052078, + 3.5442035574 + ], + "libelle_d_acheminement": "BRENELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5442035574, + 49.3680052078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "666ebaddd5fa31f42961e858258dd7efd9100446", + "fields": { + "code_commune_insee": "02122", + "nom_de_la_commune": "BRIE", + "code_postal": "02870", + "coordonnees_gps": [ + 49.5973962294, + 3.4733634659 + ], + "libelle_d_acheminement": "BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4733634659, + 49.5973962294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c3573b608586e5b31cf72d01746cd11ee8f6c9b", + "fields": { + "code_commune_insee": "02124", + "nom_de_la_commune": "BRISSY HAMEGICOURT", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7432786375, + 3.39968837909 + ], + "libelle_d_acheminement": "BRISSY HAMEGICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39968837909, + 49.7432786375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0ccdcdfeb76323d8469553028a2aac144bd04ca", + "fields": { + "code_commune_insee": "02125", + "nom_de_la_commune": "BRUMETZ", + "code_postal": "02810", + "coordonnees_gps": [ + 49.1103074474, + 3.15291445147 + ], + "libelle_d_acheminement": "BRUMETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15291445147, + 49.1103074474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0176856a8123e79531651046c495e29261493747", + "fields": { + "code_commune_insee": "02132", + "nom_de_la_commune": "BUCY LES CERNY", + "code_postal": "02870", + "coordonnees_gps": [ + 49.5790852566, + 3.496908306 + ], + "libelle_d_acheminement": "BUCY LES CERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.496908306, + 49.5790852566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "841ad8c633ac57d7c7410ae95ffa9bee344e30a8", + "fields": { + "code_commune_insee": "02134", + "nom_de_la_commune": "BUIRE", + "code_postal": "02500", + "coordonnees_gps": [ + 49.9070296259, + 4.05674542304 + ], + "libelle_d_acheminement": "BUIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05674542304, + 49.9070296259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2261e2d5022c440c492cd3d05dc3eb200bbd7f4f", + "fields": { + "code_commune_insee": "02138", + "nom_de_la_commune": "BUZANCY", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3099528163, + 3.3478744079 + ], + "libelle_d_acheminement": "BUZANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3478744079, + 49.3099528163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72b44d784e0230b0e73d180c4af124287768fa3b", + "fields": { + "code_commune_insee": "02141", + "nom_de_la_commune": "LA CAPELLE", + "code_postal": "02260", + "coordonnees_gps": [ + 49.9732109539, + 3.91398483546 + ], + "libelle_d_acheminement": "LA CAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91398483546, + 49.9732109539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "274a67c7d84b3acd3b2456d148525c7708fd3afc", + "fields": { + "code_commune_insee": "02144", + "nom_de_la_commune": "CAULAINCOURT", + "code_postal": "02490", + "coordonnees_gps": [ + 49.864658382, + 3.11126489473 + ], + "libelle_d_acheminement": "CAULAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11126489473, + 49.864658382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64b4da330ef9be341c1fac894c9843ef1b61cbce", + "fields": { + "code_commune_insee": "02150", + "nom_de_la_commune": "CERNY EN LAONNOIS", + "code_postal": "02860", + "coordonnees_gps": [ + 49.4500150087, + 3.67982439455 + ], + "libelle_d_acheminement": "CERNY EN LAONNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67982439455, + 49.4500150087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5473de307b44de6066c12362ab742049fc7b306e", + "fields": { + "code_commune_insee": "02169", + "nom_de_la_commune": "CHATILLON LES SONS", + "code_postal": "02270", + "coordonnees_gps": [ + 49.7618503091, + 3.70312508858 + ], + "libelle_d_acheminement": "CHATILLON LES SONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70312508858, + 49.7618503091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4ddb8a2533bbd3ebd3bcbde56621366936b8e9a", + "fields": { + "code_commune_insee": "02171", + "nom_de_la_commune": "CHAUDARDES", + "code_postal": "02160", + "coordonnees_gps": [ + 49.3962562981, + 3.78942153696 + ], + "libelle_d_acheminement": "CHAUDARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78942153696, + 49.3962562981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d4c55a7d941259ccb8de8b0582bc833d873b7b3", + "fields": { + "code_commune_insee": "02177", + "nom_de_la_commune": "CHERET", + "code_postal": "02860", + "coordonnees_gps": [ + 49.5141661683, + 3.68718851388 + ], + "libelle_d_acheminement": "CHERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68718851388, + 49.5141661683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89ac4bf7ea8ee5d2232586ede6bf0a397e80578c", + "fields": { + "code_commune_insee": "02183", + "nom_de_la_commune": "CHEVREGNY", + "code_postal": "02000", + "coordonnees_gps": [ + 49.4661009452, + 3.59365333616 + ], + "libelle_d_acheminement": "CHEVREGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59365333616, + 49.4661009452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47df05f0d2a2d0da4eb03f90918f8263d322a4ca", + "fields": { + "code_commune_insee": "02186", + "nom_de_la_commune": "CHEZY SUR MARNE", + "code_postal": "02570", + "coordonnees_gps": [ + 48.983996655, + 3.38226485102 + ], + "libelle_d_acheminement": "CHEZY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38226485102, + 48.983996655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d78beb8223c37a82484e0aa5c28064cbaf64f20", + "fields": { + "code_commune_insee": "02190", + "nom_de_la_commune": "CHIVRES VAL", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4029298198, + 3.43836038727 + ], + "libelle_d_acheminement": "CHIVRES VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43836038727, + 49.4029298198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d085ba9020e0ee90209a162b52c733a907138412", + "fields": { + "code_commune_insee": "02200", + "nom_de_la_commune": "CLERMONT LES FERMES", + "code_postal": "02340", + "coordonnees_gps": [ + 49.6601654327, + 3.94320327145 + ], + "libelle_d_acheminement": "CLERMONT LES FERMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94320327145, + 49.6601654327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad7425a8c76908ae42aeb15145115b50bfc4ea3b", + "fields": { + "code_commune_insee": "02210", + "nom_de_la_commune": "CONDE SUR AISNE", + "code_postal": "02370", + "coordonnees_gps": [ + 49.4007552828, + 3.46571591087 + ], + "libelle_d_acheminement": "CONDE SUR AISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46571591087, + 49.4007552828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53d625c2dfdfd7decbb28665f5ec881e080db979", + "fields": { + "code_commune_insee": "02212", + "nom_de_la_commune": "CONDREN", + "code_postal": "02700", + "coordonnees_gps": [ + 49.6370236167, + 3.27726632135 + ], + "libelle_d_acheminement": "CONDREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27726632135, + 49.6370236167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58921cc64ac25ca2cc5200fd65f6c544448ced7c", + "fields": { + "code_commune_insee": "02221", + "nom_de_la_commune": "COUPRU", + "code_postal": "02310", + "coordonnees_gps": [ + 49.0313536349, + 3.2743801467 + ], + "libelle_d_acheminement": "COUPRU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2743801467, + 49.0313536349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83ff20687f8acd9794beaf1767638fe688148c44", + "fields": { + "code_commune_insee": "02248", + "nom_de_la_commune": "CUIRIEUX", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6834404265, + 3.81994750866 + ], + "libelle_d_acheminement": "CUIRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81994750866, + 49.6834404265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3d230cdaf15bac6b07afb410de5d82fc37d6281", + "fields": { + "code_commune_insee": "02249", + "nom_de_la_commune": "CUIRY HOUSSE", + "code_postal": "02220", + "coordonnees_gps": [ + 49.2904033438, + 3.48843248507 + ], + "libelle_d_acheminement": "CUIRY HOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48843248507, + 49.2904033438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2b638fd2dc63bb01bd28925a7a78560ef20ccf0", + "fields": { + "code_commune_insee": "02253", + "nom_de_la_commune": "CUISY EN ALMONT", + "code_postal": "02200", + "coordonnees_gps": [ + 49.4207417064, + 3.24887510168 + ], + "libelle_d_acheminement": "CUISY EN ALMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24887510168, + 49.4207417064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbade2255db630961ade059c6582ac18b1dee72a", + "fields": { + "code_commune_insee": "02261", + "nom_de_la_commune": "DERCY", + "code_postal": "02270", + "coordonnees_gps": [ + 49.709705981, + 3.68499803784 + ], + "libelle_d_acheminement": "DERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68499803784, + 49.709705981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8f00ef06a7d436755c744959e3c9489d86e7f00", + "fields": { + "code_commune_insee": "02262", + "nom_de_la_commune": "DEUILLET", + "code_postal": "02700", + "coordonnees_gps": [ + 49.6285991184, + 3.36051598302 + ], + "libelle_d_acheminement": "DEUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36051598302, + 49.6285991184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c77b0043de4b4e10598b69d3b3c639697ba837e7", + "fields": { + "code_commune_insee": "02268", + "nom_de_la_commune": "DOMPTIN", + "code_postal": "02310", + "coordonnees_gps": [ + 49.0156995656, + 3.27296497779 + ], + "libelle_d_acheminement": "DOMPTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27296497779, + 49.0156995656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2974b7c4dfc318945f5d738654c1112949ef3ef2", + "fields": { + "code_commune_insee": "02271", + "nom_de_la_commune": "DRAVEGNY", + "code_postal": "02130", + "coordonnees_gps": [ + 49.2391906053, + 3.64128453803 + ], + "libelle_d_acheminement": "DRAVEGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64128453803, + 49.2391906053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbb82f47199293fd8b6d2a161c750611d31a4dcd", + "fields": { + "code_commune_insee": "02272", + "nom_de_la_commune": "DROIZY", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2773564352, + 3.38965007811 + ], + "libelle_d_acheminement": "DROIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38965007811, + 49.2773564352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b94160045e2a1456e1315206c36a6412c219f7c", + "fields": { + "code_commune_insee": "02294", + "nom_de_la_commune": "ETOUVELLES", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5186450995, + 3.58156180986 + ], + "libelle_d_acheminement": "ETOUVELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58156180986, + 49.5186450995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05cef96913ebd61b865afefd57901af25a0d528e", + "fields": { + "code_commune_insee": "02307", + "nom_de_la_commune": "LA FERTE MILON", + "code_postal": "02460", + "coordonnees_gps": [ + 49.1759874423, + 3.14237641756 + ], + "libelle_d_acheminement": "LA FERTE MILON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14237641756, + 49.1759874423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c8ff7f25b7f3b08425fa92fd9a058326f32d108", + "fields": { + "code_commune_insee": "02330", + "nom_de_la_commune": "FRANCILLY SELENCY", + "code_postal": "02760", + "coordonnees_gps": [ + 49.8546596853, + 3.22822036861 + ], + "libelle_d_acheminement": "FRANCILLY SELENCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22822036861, + 49.8546596853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af1d455d104716f80fe909f6497d5dd9832fb591", + "fields": { + "code_commune_insee": "02334", + "nom_de_la_commune": "FRESNOY LE GRAND", + "code_postal": "02230", + "coordonnees_gps": [ + 49.9540724704, + 3.41858032499 + ], + "libelle_d_acheminement": "FRESNOY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41858032499, + 49.9540724704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a90c6131afb40e545cf68c92cb4deb34a9486c45", + "fields": { + "code_commune_insee": "02340", + "nom_de_la_commune": "GAUCHY", + "code_postal": "02430", + "coordonnees_gps": [ + 49.8234688599, + 3.28649189661 + ], + "libelle_d_acheminement": "GAUCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28649189661, + 49.8234688599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e40f7a33bdea074cc48ccab59dd9c74fcfb4eb3", + "fields": { + "code_commune_insee": "02343", + "nom_de_la_commune": "GERMAINE", + "code_postal": "02590", + "coordonnees_gps": [ + 49.8124843843, + 3.11903042429 + ], + "libelle_d_acheminement": "GERMAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11903042429, + 49.8124843843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "040885f8a0384a5f1d0acc66eb3247df2564f1ff", + "fields": { + "code_commune_insee": "02346", + "nom_de_la_commune": "GIZY", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6104960814, + 3.76786152197 + ], + "libelle_d_acheminement": "GIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76786152197, + 49.6104960814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1bc8592fe7accfaf06db27955fa2aca25dca5c4", + "fields": { + "code_commune_insee": "02353", + "nom_de_la_commune": "GRANDLUP ET FAY", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6512687794, + 3.73646950468 + ], + "libelle_d_acheminement": "GRANDLUP ET FAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73646950468, + 49.6512687794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bba814116c8e295777961f59249dd6d8c3846d8", + "fields": { + "code_commune_insee": "02354", + "nom_de_la_commune": "GRANDRIEUX", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7291718471, + 4.1879249496 + ], + "libelle_d_acheminement": "GRANDRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1879249496, + 49.7291718471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59a2b0b6a798e676e4b875405658845d527eb9d8", + "fields": { + "code_commune_insee": "02356", + "nom_de_la_commune": "GRISOLLES", + "code_postal": "02210", + "coordonnees_gps": [ + 49.130183511, + 3.37217369933 + ], + "libelle_d_acheminement": "GRISOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37217369933, + 49.130183511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "632c77e211a1611f39a6a3c99e263ceba4807d8d", + "fields": { + "code_commune_insee": "02369", + "nom_de_la_commune": "HARCIGNY", + "code_postal": "02140", + "coordonnees_gps": [ + 49.80256362, + 3.9828364762 + ], + "libelle_d_acheminement": "HARCIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9828364762, + 49.80256362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9c6d13c1723b01aa8ef4bd6e2918bde710d2dfd", + "fields": { + "code_commune_insee": "02370", + "nom_de_la_commune": "HARGICOURT", + "code_postal": "02420", + "coordonnees_gps": [ + 49.9664492878, + 3.19055510378 + ], + "libelle_d_acheminement": "HARGICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19055510378, + 49.9664492878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b5f81e24d38f24271c7aa829544632a7fdce958", + "fields": { + "code_commune_insee": "02373", + "nom_de_la_commune": "HARY", + "code_postal": "02140", + "coordonnees_gps": [ + 49.797388651, + 3.91927403736 + ], + "libelle_d_acheminement": "HARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91927403736, + 49.797388651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "366aa6f341f2018d3be1ccb0034f53bf3fb77eb7", + "fields": { + "code_commune_insee": "02376", + "nom_de_la_commune": "HAUTEVILLE", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8884981223, + 3.52369340599 + ], + "libelle_d_acheminement": "HAUTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52369340599, + 49.8884981223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a8db85f549579178e92557c4272fcdab6df3cdf", + "fields": { + "code_commune_insee": "02380", + "nom_de_la_commune": "HINACOURT", + "code_postal": "02440", + "coordonnees_gps": [ + 49.7459956466, + 3.29422566384 + ], + "libelle_d_acheminement": "HINACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29422566384, + 49.7459956466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15f0c1e9e4ff0710c7dff2d6cdc02936f74bf6e3", + "fields": { + "code_commune_insee": "02392", + "nom_de_la_commune": "JONCOURT", + "code_postal": "02420", + "coordonnees_gps": [ + 49.9601487798, + 3.30407272701 + ], + "libelle_d_acheminement": "JONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30407272701, + 49.9601487798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc494a467a46b0872489ae139fce1be3fcc3b2eb", + "fields": { + "code_commune_insee": "02395", + "nom_de_la_commune": "JUMENCOURT", + "code_postal": "02380", + "coordonnees_gps": [ + 49.5122950231, + 3.34939792383 + ], + "libelle_d_acheminement": "JUMENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34939792383, + 49.5122950231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76df319684975c7392246f87437a2ae60a92dbb2", + "fields": { + "code_commune_insee": "02410", + "nom_de_la_commune": "LARGNY SUR AUTOMNE", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2610748419, + 3.05411123113 + ], + "libelle_d_acheminement": "LARGNY SUR AUTOMNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05411123113, + 49.2610748419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e03b4d270fc8d9f2ac6dc0aef53ffe4e7ee0a66", + "fields": { + "code_commune_insee": "02411", + "nom_de_la_commune": "LATILLY", + "code_postal": "02210", + "coordonnees_gps": [ + 49.1538863119, + 3.31218468893 + ], + "libelle_d_acheminement": "LATILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31218468893, + 49.1538863119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0602fc36a360cea1618111a123a88874673135d", + "fields": { + "code_commune_insee": "02421", + "nom_de_la_commune": "LESGES", + "code_postal": "02220", + "coordonnees_gps": [ + 49.309828392, + 3.50034767893 + ], + "libelle_d_acheminement": "LESGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50034767893, + 49.309828392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a68a2a8e62c72de545a04e365bb362876fb17002", + "fields": { + "code_commune_insee": "02430", + "nom_de_la_commune": "LIESSE NOTRE DAME", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6108544067, + 3.81711786834 + ], + "libelle_d_acheminement": "LIESSE NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81711786834, + 49.6108544067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f5f30549a5f6126274fc14462f3b9d2fe62b784", + "fields": { + "code_commune_insee": "02432", + "nom_de_la_commune": "LIME", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3234940469, + 3.55539520178 + ], + "libelle_d_acheminement": "LIME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55539520178, + 49.3234940469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac863fcb25355895947d58d293e056712e1fbe34", + "fields": { + "code_commune_insee": "02438", + "nom_de_la_commune": "LONGPONT", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2843362442, + 3.22069360555 + ], + "libelle_d_acheminement": "LONGPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22069360555, + 49.2843362442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac70ed567d18070d73bf4bef0a94752a77f5cd9e", + "fields": { + "ligne_5": "MERVAL", + "code_commune_insee": "02439", + "libelle_d_acheminement": "LES SEPTVALLONS", + "code_postal": "02160", + "nom_de_la_commune": "LES SEPTVALLONS", + "coordonnees_gps": [ + 49.3603355862, + 3.65567844397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65567844397, + 49.3603355862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24f214f09960c5e112776284e9e729bb5aa07317", + "fields": { + "code_commune_insee": "02440", + "nom_de_la_commune": "LOR", + "code_postal": "02190", + "coordonnees_gps": [ + 49.5296668744, + 4.05453884406 + ], + "libelle_d_acheminement": "LOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05453884406, + 49.5296668744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "196036afc873d3a1533bd6fa26faad87eec1c47c", + "fields": { + "code_commune_insee": "02446", + "nom_de_la_commune": "LY FONTAINE", + "code_postal": "02440", + "coordonnees_gps": [ + 49.732033107, + 3.31099377857 + ], + "libelle_d_acheminement": "LY FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31099377857, + 49.732033107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "098cb24974e9d2773448ed04c6a315f93e5611c7", + "fields": { + "code_commune_insee": "02455", + "nom_de_la_commune": "MALZY", + "code_postal": "02120", + "coordonnees_gps": [ + 49.921297034, + 3.73000059946 + ], + "libelle_d_acheminement": "MALZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73000059946, + 49.921297034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "092f60e675320b0b9bf73182ee1def59b005e180", + "fields": { + "code_commune_insee": "02457", + "nom_de_la_commune": "MARCHAIS", + "code_postal": "02350", + "coordonnees_gps": [ + 49.5850707567, + 3.82150148626 + ], + "libelle_d_acheminement": "MARCHAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82150148626, + 49.5850707567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfd5bf9d5848ba06c04fdbf1fc1a479a27850c10", + "fields": { + "code_commune_insee": "02461", + "nom_de_la_commune": "MAREST DAMPCOURT", + "code_postal": "02300", + "coordonnees_gps": [ + 49.59443854, + 3.14627124688 + ], + "libelle_d_acheminement": "MAREST DAMPCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14627124688, + 49.59443854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b14137aa04ce25f8e77d2429ecad0d04277242a", + "fields": { + "code_commune_insee": "02462", + "nom_de_la_commune": "MAREUIL EN DOLE", + "code_postal": "02130", + "coordonnees_gps": [ + 49.2424552782, + 3.56114326739 + ], + "libelle_d_acheminement": "MAREUIL EN DOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56114326739, + 49.2424552782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8ebfd242727f23d5514b3ccdb6a9fe508534046", + "fields": { + "code_commune_insee": "02463", + "nom_de_la_commune": "MARFONTAINE", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8080469097, + 3.7639268819 + ], + "libelle_d_acheminement": "MARFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7639268819, + 49.8080469097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bdebd6b3ff5258400eb704452a0c45eed2c64b1", + "fields": { + "code_commune_insee": "02468", + "nom_de_la_commune": "MARLE", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7451393478, + 3.7652054501 + ], + "libelle_d_acheminement": "MARLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7652054501, + 49.7451393478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e344aba6a232353f667a6b3e36b4c953564452d", + "fields": { + "code_commune_insee": "02473", + "nom_de_la_commune": "MAYOT", + "code_postal": "02800", + "coordonnees_gps": [ + 49.7090117255, + 3.39804766077 + ], + "libelle_d_acheminement": "MAYOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39804766077, + 49.7090117255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09e473e4109e092370566337b097c013e0880f42", + "fields": { + "code_commune_insee": "02491", + "nom_de_la_commune": "MONCEAU LE NEUF ET FAUCOUZY", + "code_postal": "02270", + "coordonnees_gps": [ + 49.7845792788, + 3.63110860935 + ], + "libelle_d_acheminement": "MONCEAU LE NEUF ET FAUCOUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63110860935, + 49.7845792788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f023da6af055e348c23a93d6b7189da39d0e54b8", + "fields": { + "code_commune_insee": "02494", + "nom_de_la_commune": "MONCEAU SUR OISE", + "code_postal": "02120", + "coordonnees_gps": [ + 49.9097732744, + 3.69947432588 + ], + "libelle_d_acheminement": "MONCEAU SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69947432588, + 49.9097732744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a91df91ee08dc311a2f37c17bbe9d0578649ca6", + "fields": { + "code_commune_insee": "02496", + "nom_de_la_commune": "MONNES", + "code_postal": "02470", + "coordonnees_gps": [ + 49.1458358775, + 3.22861820737 + ], + "libelle_d_acheminement": "MONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22861820737, + 49.1458358775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84e20763475bc07576194ab7b3e663c5fd5d0c1f", + "fields": { + "code_commune_insee": "02502", + "nom_de_la_commune": "MONTCORNET", + "code_postal": "02340", + "coordonnees_gps": [ + 49.6890129328, + 4.02915061151 + ], + "libelle_d_acheminement": "MONTCORNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02915061151, + 49.6890129328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56012849ff90dde9db9d77d43f55cc32998e34ab", + "fields": { + "code_commune_insee": "02512", + "nom_de_la_commune": "MONTIGNY L ALLIER", + "code_postal": "02810", + "coordonnees_gps": [ + 49.1221418457, + 3.10744372815 + ], + "libelle_d_acheminement": "MONTIGNY L ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10744372815, + 49.1221418457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8192da67e014b60f8d71a8a4375f7d0a0e5cb754", + "fields": { + "code_commune_insee": "02515", + "nom_de_la_commune": "MONTIGNY LES CONDE", + "code_postal": "02330", + "coordonnees_gps": [ + 48.9830055534, + 3.56635546224 + ], + "libelle_d_acheminement": "MONTIGNY LES CONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56635546224, + 48.9830055534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "418c547e9d9536bf93492de5545b29cd9a2f3ba3", + "fields": { + "code_commune_insee": "02517", + "nom_de_la_commune": "MONTIGNY SUR CRECY", + "code_postal": "02270", + "coordonnees_gps": [ + 49.7149248587, + 3.58368023998 + ], + "libelle_d_acheminement": "MONTIGNY SUR CRECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58368023998, + 49.7149248587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf533cfe683937a66b27bb54a61e26f07c3ef90a", + "fields": { + "code_commune_insee": "02530", + "nom_de_la_commune": "MOULINS", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4198471298, + 3.67884923026 + ], + "libelle_d_acheminement": "MOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67884923026, + 49.4198471298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dc5f8a73ea503a23939352825c8b892d61e17b8", + "fields": { + "code_commune_insee": "02540", + "nom_de_la_commune": "NESLES LA MONTAGNE", + "code_postal": "02400", + "coordonnees_gps": [ + 48.9997837313, + 3.44587892818 + ], + "libelle_d_acheminement": "NESLES LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44587892818, + 48.9997837313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28123c20cb49782218f6077cce07bc575f8dda06", + "fields": { + "code_commune_insee": "02545", + "nom_de_la_commune": "LA NEUVILLE BOSMONT", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7145039747, + 3.83367274994 + ], + "libelle_d_acheminement": "LA NEUVILLE BOSMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83367274994, + 49.7145039747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cebd5cdad5c2f9b12d99a2c4af3159ca0bcac94", + "fields": { + "code_commune_insee": "02549", + "nom_de_la_commune": "NEUVILLE ST AMAND", + "code_postal": "02100", + "coordonnees_gps": [ + 49.8206477091, + 3.33360991741 + ], + "libelle_d_acheminement": "NEUVILLE ST AMAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33360991741, + 49.8206477091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d7a6287ae58b58e3ccadf7c72f3ba232d540ad1", + "fields": { + "code_commune_insee": "02551", + "nom_de_la_commune": "NEUVILLE SUR MARGIVAL", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4548729773, + 3.3986658815 + ], + "libelle_d_acheminement": "NEUVILLE SUR MARGIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3986658815, + 49.4548729773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0fcfbade8b625e7db9e9ac26d07d7b6e85205b8", + "fields": { + "code_commune_insee": "02558", + "nom_de_la_commune": "LE NOUVION EN THIERACHE", + "code_postal": "02170", + "coordonnees_gps": [ + 50.0086867152, + 3.80929288198 + ], + "libelle_d_acheminement": "LE NOUVION EN THIERACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80929288198, + 50.0086867152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8d38342d7d91574971f17f981c188052dde1a64", + "fields": { + "code_commune_insee": "02563", + "nom_de_la_commune": "NOYALES", + "code_postal": "02120", + "coordonnees_gps": [ + 49.9082559491, + 3.53848565514 + ], + "libelle_d_acheminement": "NOYALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53848565514, + 49.9082559491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35d6a3eac8edf0571ae6047c73a784987fac8ebe", + "fields": { + "code_commune_insee": "02565", + "nom_de_la_commune": "OEUILLY", + "code_postal": "02160", + "coordonnees_gps": [ + 49.3928856944, + 3.68222741301 + ], + "libelle_d_acheminement": "OEUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68222741301, + 49.3928856944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eac1212246e59e6fe9c699fbdc8904d10f761eff", + "fields": { + "code_commune_insee": "02573", + "nom_de_la_commune": "ORGEVAL", + "code_postal": "02860", + "coordonnees_gps": [ + 49.5041140764, + 3.70337016497 + ], + "libelle_d_acheminement": "ORGEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70337016497, + 49.5041140764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82aebfa00c9f74751b4a3afc552a9f7338fc589b", + "fields": { + "code_commune_insee": "02574", + "nom_de_la_commune": "ORIGNY EN THIERACHE", + "code_postal": "02550", + "coordonnees_gps": [ + 49.8861904623, + 4.01101149757 + ], + "libelle_d_acheminement": "ORIGNY EN THIERACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01101149757, + 49.8861904623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2da7ccd8a933431eb3d07a4f19898700fa293b96", + "fields": { + "code_commune_insee": "02582", + "nom_de_la_commune": "PAISSY", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4263466952, + 3.7014989195 + ], + "libelle_d_acheminement": "PAISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7014989195, + 49.4263466952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c4722e693b1046e3fe8a78c759aa2e4ac4e59e3", + "fields": { + "code_commune_insee": "02584", + "nom_de_la_commune": "PAPLEUX", + "code_postal": "02260", + "coordonnees_gps": [ + 50.0169167744, + 3.88023781289 + ], + "libelle_d_acheminement": "PAPLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88023781289, + 50.0169167744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d937a93b3b88937fbcabc632752423a63b7f5c16", + "fields": { + "code_commune_insee": "02598", + "nom_de_la_commune": "PERNANT", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3756522114, + 3.23031459047 + ], + "libelle_d_acheminement": "PERNANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23031459047, + 49.3756522114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10151f77e466bcbb6af9d707c6605c30e0fc28f3", + "fields": { + "code_commune_insee": "02599", + "nom_de_la_commune": "PIERREMANDE", + "code_postal": "02300", + "coordonnees_gps": [ + 49.566550412, + 3.25836777343 + ], + "libelle_d_acheminement": "PIERREMANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25836777343, + 49.566550412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b894729dfb4c97d7e163715dfe15e7eefcf24e16", + "fields": { + "code_commune_insee": "02600", + "nom_de_la_commune": "PIERREPONT", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6482784601, + 3.78777546723 + ], + "libelle_d_acheminement": "PIERREPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78777546723, + 49.6482784601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe8b9fa0505aea47713bf3d3e31e163ede814a64", + "fields": { + "code_commune_insee": "02604", + "nom_de_la_commune": "PITHON", + "code_postal": "02480", + "coordonnees_gps": [ + 49.7562365167, + 3.10422093946 + ], + "libelle_d_acheminement": "PITHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10422093946, + 49.7562365167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "083c7858f8c43f2536c9ce61448e2dace559f4f3", + "fields": { + "code_commune_insee": "02609", + "nom_de_la_commune": "PLOYART ET VAURSEINE", + "code_postal": "02860", + "coordonnees_gps": [ + 49.493253698, + 3.74014252866 + ], + "libelle_d_acheminement": "PLOYART ET VAURSEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74014252866, + 49.493253698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b11b44c04e2a1f752715a2c465f0d49b42507328", + "fields": { + "code_commune_insee": "02610", + "nom_de_la_commune": "POMMIERS", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3921873782, + 3.27884937169 + ], + "libelle_d_acheminement": "POMMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27884937169, + 49.3921873782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a715ead145b072c72f170adce38245edf6c1057", + "fields": { + "code_commune_insee": "02619", + "nom_de_la_commune": "PREMONTRE", + "code_postal": "02320", + "coordonnees_gps": [ + 49.5493580112, + 3.4177638358 + ], + "libelle_d_acheminement": "PREMONTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4177638358, + 49.5493580112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0531d2ef6bc9fd933e4b53e2a1595feaef05582", + "fields": { + "code_commune_insee": "02621", + "nom_de_la_commune": "PRESLES ET THIERNY", + "code_postal": "02860", + "coordonnees_gps": [ + 49.5144603614, + 3.62483361601 + ], + "libelle_d_acheminement": "PRESLES ET THIERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62483361601, + 49.5144603614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f29c864faa6cf0261b0d47f0f7c340b0d5cfa796", + "fields": { + "code_commune_insee": "02625", + "nom_de_la_commune": "PROIX", + "code_postal": "02120", + "coordonnees_gps": [ + 49.9022161869, + 3.57346862626 + ], + "libelle_d_acheminement": "PROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57346862626, + 49.9022161869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a3615bf79ee55a951d5ca2d0aea4260c724efcd", + "fields": { + "code_commune_insee": "02631", + "nom_de_la_commune": "QUIERZY", + "code_postal": "02300", + "coordonnees_gps": [ + 49.5641090409, + 3.14613795931 + ], + "libelle_d_acheminement": "QUIERZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14613795931, + 49.5641090409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6002b95fdece5577bd33f8390cdad51aa81353a0", + "fields": { + "code_commune_insee": "02637", + "nom_de_la_commune": "REMAUCOURT", + "code_postal": "02100", + "coordonnees_gps": [ + 49.8954350618, + 3.34948034131 + ], + "libelle_d_acheminement": "REMAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34948034131, + 49.8954350618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff7326c725e7fe64d118dc83d0314c53a79b17f1", + "fields": { + "code_commune_insee": "02639", + "nom_de_la_commune": "REMIGNY", + "code_postal": "02440", + "coordonnees_gps": [ + 49.7141625709, + 3.29518707017 + ], + "libelle_d_acheminement": "REMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29518707017, + 49.7141625709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d5a665043d91d9d11c3e140e399222aa34b247c", + "fields": { + "code_commune_insee": "02641", + "nom_de_la_commune": "RENNEVAL", + "code_postal": "02340", + "coordonnees_gps": [ + 49.7391714019, + 4.03674170066 + ], + "libelle_d_acheminement": "RENNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03674170066, + 49.7391714019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9eb167e0d2ef7faf499418908ae718498cbde39e", + "fields": { + "code_commune_insee": "02648", + "nom_de_la_commune": "RIBEMONT", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7885436581, + 3.47018526049 + ], + "libelle_d_acheminement": "RIBEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47018526049, + 49.7885436581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a938c350c462cd444566703484bb8615f19be260", + "fields": { + "code_commune_insee": "02668", + "nom_de_la_commune": "SAINS RICHAUMONT", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8276068685, + 3.70490926861 + ], + "libelle_d_acheminement": "SAINS RICHAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70490926861, + 49.8276068685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27414bec934c5d3c608d614198581c25789bacb7", + "fields": { + "code_commune_insee": "02674", + "nom_de_la_commune": "ST CLEMENT", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7752799579, + 4.07288901165 + ], + "libelle_d_acheminement": "ST CLEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07288901165, + 49.7752799579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0475fa6ca5e6409d3022e2e00ec109739ce6912d", + "fields": { + "code_commune_insee": "02677", + "nom_de_la_commune": "ST EUGENE", + "code_postal": "02330", + "coordonnees_gps": [ + 49.0155450781, + 3.51721331428 + ], + "libelle_d_acheminement": "ST EUGENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51721331428, + 49.0155450781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e8f36c35cb7125aa80d46290099c4913b8fa0ef", + "fields": { + "code_commune_insee": "02688", + "nom_de_la_commune": "ST PIERRE LES FRANQUEVILLE", + "code_postal": "02140", + "coordonnees_gps": [ + 49.824528104, + 3.81406121819 + ], + "libelle_d_acheminement": "ST PIERRE LES FRANQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81406121819, + 49.824528104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6294a13fe4889fe58bf18f9fd5f5320b6b6964ad", + "fields": { + "code_commune_insee": "02691", + "nom_de_la_commune": "ST QUENTIN", + "code_postal": "02100", + "coordonnees_gps": [ + 49.8472336321, + 3.27769499462 + ], + "libelle_d_acheminement": "ST QUENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27769499462, + 49.8472336321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24f8679eaba8c7021a12391068b6393c7339289c", + "fields": { + "code_commune_insee": "02713", + "nom_de_la_commune": "SERINGES ET NESLES", + "code_postal": "02130", + "coordonnees_gps": [ + 49.2116537607, + 3.55885016448 + ], + "libelle_d_acheminement": "SERINGES ET NESLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55885016448, + 49.2116537607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cfd9faf7b752a340b0b8f4a2c716b399a300e29", + "fields": { + "code_commune_insee": "02714", + "nom_de_la_commune": "SERMOISE", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3724753933, + 3.44697180612 + ], + "libelle_d_acheminement": "SERMOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44697180612, + 49.3724753933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26f624c6bb161e51ff16fe5425be57451ebb753a", + "fields": { + "code_commune_insee": "02717", + "nom_de_la_commune": "SERY LES MEZIERES", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7647253763, + 3.42321314919 + ], + "libelle_d_acheminement": "SERY LES MEZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42321314919, + 49.7647253763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bda74ff331dc1bc64f4d368638b01ded9e34dba", + "fields": { + "code_commune_insee": "02721", + "nom_de_la_commune": "SISSY", + "code_postal": "02240", + "coordonnees_gps": [ + 49.8106555228, + 3.42084647603 + ], + "libelle_d_acheminement": "SISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42084647603, + 49.8106555228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b6063b3e5b2a67f57af79752e49565bca8afedd", + "fields": { + "code_commune_insee": "02722", + "nom_de_la_commune": "SOISSONS", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3791742979, + 3.32471758491 + ], + "libelle_d_acheminement": "SOISSONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32471758491, + 49.3791742979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08c165de2a9fe74fba35df6572f57bfc13b28b87", + "fields": { + "code_commune_insee": "02724", + "nom_de_la_commune": "SOMMELANS", + "code_postal": "02470", + "coordonnees_gps": [ + 49.135392, + 3.29302303663 + ], + "libelle_d_acheminement": "SOMMELANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29302303663, + 49.135392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9556161f44a11296a25b328fb0f6c424e3de55c", + "fields": { + "code_commune_insee": "02726", + "nom_de_la_commune": "SOMMETTE EAUCOURT", + "code_postal": "02480", + "coordonnees_gps": [ + 49.727418066, + 3.11947808471 + ], + "libelle_d_acheminement": "SOMMETTE EAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11947808471, + 49.727418066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a44c46dc81bd2d2fd659e262df0b04903cf56e9", + "fields": { + "code_commune_insee": "02727", + "nom_de_la_commune": "SONS ET RONCHERES", + "code_postal": "02270", + "coordonnees_gps": [ + 49.7689463972, + 3.66761782458 + ], + "libelle_d_acheminement": "SONS ET RONCHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66761782458, + 49.7689463972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c797436464953704c4061b4951eed0583f0aa5f9", + "fields": { + "code_commune_insee": "02730", + "nom_de_la_commune": "SOUPIR", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4106784751, + 3.59989736789 + ], + "libelle_d_acheminement": "SOUPIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59989736789, + 49.4106784751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c72b161c738f25f21e30433225b393fa5435902b", + "fields": { + "code_commune_insee": "02731", + "nom_de_la_commune": "LE SOURD", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8656956341, + 3.75208012539 + ], + "libelle_d_acheminement": "LE SOURD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75208012539, + 49.8656956341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bff03f5629e685066c8158c9baffe5c7e09e6fd", + "fields": { + "code_commune_insee": "02732", + "nom_de_la_commune": "SURFONTAINE", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7471421081, + 3.47979315066 + ], + "libelle_d_acheminement": "SURFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47979315066, + 49.7471421081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e58f60e6c86f00df0dc871086806b41d22b9a82a", + "fields": { + "ligne_5": "FARGNIERS", + "code_commune_insee": "02738", + "libelle_d_acheminement": "TERGNIER", + "code_postal": "02700", + "nom_de_la_commune": "TERGNIER", + "coordonnees_gps": [ + 49.6572646109, + 3.29924077478 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29924077478, + 49.6572646109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a57844e5eb30249bdc40147debe94d1cd09cd6c3", + "fields": { + "ligne_5": "QUESSY", + "code_commune_insee": "02738", + "libelle_d_acheminement": "TERGNIER", + "code_postal": "02700", + "nom_de_la_commune": "TERGNIER", + "coordonnees_gps": [ + 49.6572646109, + 3.29924077478 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29924077478, + 49.6572646109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9b711f3dd80da98959e0d8be64d1eea311fd938", + "fields": { + "code_commune_insee": "02741", + "nom_de_la_commune": "THENELLES", + "code_postal": "02390", + "coordonnees_gps": [ + 49.8314948078, + 3.45894075748 + ], + "libelle_d_acheminement": "THENELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45894075748, + 49.8314948078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "677cddac235595165fe136e4d80bb9d7576fea5c", + "fields": { + "code_commune_insee": "02747", + "nom_de_la_commune": "TREFCON", + "code_postal": "02490", + "coordonnees_gps": [ + 49.859082365, + 3.08864647254 + ], + "libelle_d_acheminement": "TREFCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08864647254, + 49.859082365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69be123fbb70c6c79e49680e11713d5fa9af5ba7", + "fields": { + "code_commune_insee": "02751", + "nom_de_la_commune": "TRUCY", + "code_postal": "02860", + "coordonnees_gps": [ + 49.472149818, + 3.61092318317 + ], + "libelle_d_acheminement": "TRUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61092318317, + 49.472149818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "728d869054a3723888ce5d747c607843ab1ee383", + "fields": { + "code_commune_insee": "02753", + "nom_de_la_commune": "TUPIGNY", + "code_postal": "02120", + "coordonnees_gps": [ + 49.9705608416, + 3.59399622464 + ], + "libelle_d_acheminement": "TUPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59399622464, + 49.9705608416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8c09836f66b506db153874679dac72f30957230", + "fields": { + "code_commune_insee": "02755", + "nom_de_la_commune": "URCEL", + "code_postal": "02000", + "coordonnees_gps": [ + 49.4940437763, + 3.55713233917 + ], + "libelle_d_acheminement": "URCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55713233917, + 49.4940437763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da13b8476e2a8046215f36b579394e839fc72d22", + "fields": { + "ligne_5": "LONGCHAMPS", + "code_commune_insee": "02757", + "libelle_d_acheminement": "VADENCOURT", + "code_postal": "02120", + "nom_de_la_commune": "VADENCOURT", + "coordonnees_gps": [ + 49.9229771613, + 3.57386118846 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57386118846, + 49.9229771613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9efcb28a765b57a79643a37907d1ab9fd043efd0", + "fields": { + "code_commune_insee": "02760", + "nom_de_la_commune": "LA VALLEE MULATRE", + "code_postal": "02110", + "coordonnees_gps": [ + 50.0255708699, + 3.56063329937 + ], + "libelle_d_acheminement": "LA VALLEE MULATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56063329937, + 50.0255708699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8940327354b867995c9a4ee5f4ea2be69a5f190", + "fields": { + "code_commune_insee": "02761", + "nom_de_la_commune": "VARISCOURT", + "code_postal": "02190", + "coordonnees_gps": [ + 49.4148891865, + 3.98066282251 + ], + "libelle_d_acheminement": "VARISCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98066282251, + 49.4148891865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bab0cfd4ea186755a059bb659e3b8fc8ac1ff9f", + "fields": { + "code_commune_insee": "02766", + "nom_de_la_commune": "VAUDESSON", + "code_postal": "02320", + "coordonnees_gps": [ + 49.4750001736, + 3.48695975523 + ], + "libelle_d_acheminement": "VAUDESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48695975523, + 49.4750001736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cfa32c8578e0af1b55cddbdc031131e893bd46b", + "fields": { + "code_commune_insee": "02768", + "nom_de_la_commune": "VAUXAILLON", + "code_postal": "02320", + "coordonnees_gps": [ + 49.4770651148, + 3.40823751638 + ], + "libelle_d_acheminement": "VAUXAILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40823751638, + 49.4770651148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "775a46290342db95d486629412ebfc61e02fe580", + "fields": { + "code_commune_insee": "02790", + "nom_de_la_commune": "VESLES ET CAUMONT", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6750932677, + 3.78950879053 + ], + "libelle_d_acheminement": "VESLES ET CAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78950879053, + 49.6750932677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38228439d76b2643ee855af2008941cde1197384", + "fields": { + "code_commune_insee": "02795", + "nom_de_la_commune": "VIC SUR AISNE", + "code_postal": "02290", + "coordonnees_gps": [ + 49.410747629, + 3.10912550549 + ], + "libelle_d_acheminement": "VIC SUR AISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10912550549, + 49.410747629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cac3c81ff5957ff0feec9b55e54b664abb5d2c42", + "fields": { + "code_commune_insee": "02797", + "nom_de_la_commune": "VIEL ARCY", + "code_postal": "02160", + "coordonnees_gps": [ + 49.3789345254, + 3.62589443596 + ], + "libelle_d_acheminement": "VIEL ARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62589443596, + 49.3789345254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86ecd0ed83ce18c017d641250e5d037fb4fcdf5e", + "fields": { + "code_commune_insee": "02799", + "nom_de_la_commune": "VIERZY", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2868570454, + 3.27759490696 + ], + "libelle_d_acheminement": "VIERZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27759490696, + 49.2868570454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86be18b05cb933d441278465c3711f1df9b2b3d0", + "fields": { + "code_commune_insee": "02800", + "nom_de_la_commune": "VIFFORT", + "code_postal": "02540", + "coordonnees_gps": [ + 48.9576165601, + 3.46972594402 + ], + "libelle_d_acheminement": "VIFFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46972594402, + 48.9576165601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58c72087c62f2a5749c2b9e9c0e7116abed1fe55", + "fields": { + "code_commune_insee": "02808", + "nom_de_la_commune": "VILLERET", + "code_postal": "02420", + "coordonnees_gps": [ + 49.9494418046, + 3.18749892652 + ], + "libelle_d_acheminement": "VILLERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18749892652, + 49.9494418046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad98907b6efbe586c00cc35d022c3278b63d4520", + "fields": { + "code_commune_insee": "02810", + "nom_de_la_commune": "VILLERS COTTERETS", + "code_postal": "02600", + "coordonnees_gps": [ + 49.2392000574, + 3.09612191097 + ], + "libelle_d_acheminement": "VILLERS COTTERETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09612191097, + 49.2392000574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "846e16f1c6ad36e26cf41bce2216c23eeb5a8dad", + "fields": { + "code_commune_insee": "02813", + "nom_de_la_commune": "VILLERS LE SEC", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7711456702, + 3.50490696746 + ], + "libelle_d_acheminement": "VILLERS LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50490696746, + 49.7711456702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a25cb861aae891249fa02571e99eaa583343c6e", + "fields": { + "code_commune_insee": "02814", + "nom_de_la_commune": "VILLERS LES GUISE", + "code_postal": "02120", + "coordonnees_gps": [ + 49.9255661982, + 3.68241664598 + ], + "libelle_d_acheminement": "VILLERS LES GUISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68241664598, + 49.9255661982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63e8e6f5d988829ee104ecb38e3393e2b0b180d6", + "fields": { + "code_commune_insee": "02820", + "nom_de_la_commune": "VIRY NOUREUIL", + "code_postal": "02300", + "coordonnees_gps": [ + 49.6385456387, + 3.24823591959 + ], + "libelle_d_acheminement": "VIRY NOUREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24823591959, + 49.6385456387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f72be56f7071269321a35e01ec3f424b72c5ca4", + "fields": { + "code_commune_insee": "02821", + "nom_de_la_commune": "VIVAISE", + "code_postal": "02870", + "coordonnees_gps": [ + 49.6228688465, + 3.56431943267 + ], + "libelle_d_acheminement": "VIVAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56431943267, + 49.6228688465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33d89bf71a57d79d64808b49abd35631983387f2", + "fields": { + "code_commune_insee": "02828", + "nom_de_la_commune": "VREGNY", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4140619853, + 3.4197356356 + ], + "libelle_d_acheminement": "VREGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4197356356, + 49.4140619853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a15e65a8c6172dc446914a5a4b41f20739a6aaf4", + "fields": { + "code_commune_insee": "02829", + "nom_de_la_commune": "VUILLERY", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4306831911, + 3.38794524263 + ], + "libelle_d_acheminement": "VUILLERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38794524263, + 49.4306831911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cd3aba50bb577d47b9888277bb1944b2d578b95", + "fields": { + "code_commune_insee": "02833", + "nom_de_la_commune": "WIMY", + "code_postal": "02500", + "coordonnees_gps": [ + 49.9480535708, + 3.99735885106 + ], + "libelle_d_acheminement": "WIMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99735885106, + 49.9480535708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60991261ae0a5a0936ee7b22ed6be7c18728d0c4", + "fields": { + "code_commune_insee": "03003", + "nom_de_la_commune": "AINAY LE CHATEAU", + "code_postal": "03360", + "coordonnees_gps": [ + 46.7155678491, + 2.72085613518 + ], + "libelle_d_acheminement": "AINAY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72085613518, + 46.7155678491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5531323b4897c50d7c3bddb5b8b4250584c3b03a", + "fields": { + "code_commune_insee": "03007", + "nom_de_la_commune": "ARPHEUILLES ST PRIEST", + "code_postal": "03420", + "coordonnees_gps": [ + 46.2269459869, + 2.66485932203 + ], + "libelle_d_acheminement": "ARPHEUILLES ST PRIEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66485932203, + 46.2269459869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62d6bac079d5dbc1c937ae61061eabea80ef06aa", + "fields": { + "code_commune_insee": "03016", + "nom_de_la_commune": "BARBERIER", + "code_postal": "03140", + "coordonnees_gps": [ + 46.2199674425, + 3.24930716448 + ], + "libelle_d_acheminement": "BARBERIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24930716448, + 46.2199674425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ab0da513e6e57c71b915fc8ec59159b5ee2550b", + "fields": { + "code_commune_insee": "03018", + "nom_de_la_commune": "BAYET", + "code_postal": "03500", + "coordonnees_gps": [ + 46.257529442, + 3.27682744078 + ], + "libelle_d_acheminement": "BAYET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27682744078, + 46.257529442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a83736c0954c43bca93be8b28e4acbe880aaaa1d", + "fields": { + "code_commune_insee": "03019", + "nom_de_la_commune": "BEAULON", + "code_postal": "03230", + "coordonnees_gps": [ + 46.5874411926, + 3.66899984776 + ], + "libelle_d_acheminement": "BEAULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66899984776, + 46.5874411926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af0d28be3ac59044d94d85d8e7a4a369d0d48ab0", + "fields": { + "code_commune_insee": "03024", + "nom_de_la_commune": "BERT", + "code_postal": "03130", + "coordonnees_gps": [ + 46.3276009713, + 3.70176788462 + ], + "libelle_d_acheminement": "BERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70176788462, + 46.3276009713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85ee4fbb264dcb5448f247f532d94649b4109298", + "fields": { + "code_commune_insee": "03027", + "nom_de_la_commune": "BEZENET", + "code_postal": "03170", + "coordonnees_gps": [ + 46.3323101362, + 2.84939307523 + ], + "libelle_d_acheminement": "BEZENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84939307523, + 46.3323101362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ef03c7cf6d6852df48e84a98eeaf9d26affd1d3", + "fields": { + "code_commune_insee": "03031", + "nom_de_la_commune": "BIZENEUILLE", + "code_postal": "03170", + "coordonnees_gps": [ + 46.4015746011, + 2.73071658216 + ], + "libelle_d_acheminement": "BIZENEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73071658216, + 46.4015746011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a8947f7a7282da5d1c20e2ab24a3eb3918aed3f", + "fields": { + "code_commune_insee": "03037", + "nom_de_la_commune": "BRAIZE", + "code_postal": "03360", + "coordonnees_gps": [ + 46.658636225, + 2.65427484498 + ], + "libelle_d_acheminement": "BRAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65427484498, + 46.658636225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "576a29dfaebb45e30e34cf12f708c06151f83ee0", + "fields": { + "code_commune_insee": "03038", + "nom_de_la_commune": "BRANSAT", + "code_postal": "03500", + "coordonnees_gps": [ + 46.3291248847, + 3.21707091921 + ], + "libelle_d_acheminement": "BRANSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21707091921, + 46.3291248847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cef7375f3fc55b28603ad668329bad6544b8250", + "fields": { + "code_commune_insee": "03043", + "nom_de_la_commune": "BROUT VERNET", + "code_postal": "03110", + "coordonnees_gps": [ + 46.1961727418, + 3.28851651471 + ], + "libelle_d_acheminement": "BROUT VERNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28851651471, + 46.1961727418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98d0c6a30a5d85452b880ff853838b09259a4519", + "fields": { + "code_commune_insee": "03046", + "nom_de_la_commune": "BUXIERES LES MINES", + "code_postal": "03440", + "coordonnees_gps": [ + 46.4698341323, + 2.95493090181 + ], + "libelle_d_acheminement": "BUXIERES LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95493090181, + 46.4698341323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03163a896c1d9742700b2cf0ec02bc182fd72854", + "fields": { + "code_commune_insee": "03050", + "nom_de_la_commune": "LA CHABANNE", + "code_postal": "03250", + "coordonnees_gps": [ + 46.0244474804, + 3.75155529865 + ], + "libelle_d_acheminement": "LA CHABANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75155529865, + 46.0244474804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a6261afeaf52b8c582ef4bc5401c4d6e5415229", + "fields": { + "code_commune_insee": "03053", + "nom_de_la_commune": "CHANTELLE", + "code_postal": "03140", + "coordonnees_gps": [ + 46.2365355832, + 3.16046709261 + ], + "libelle_d_acheminement": "CHANTELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16046709261, + 46.2365355832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67bb15de76446f9681bbc91e6ec5f2b3b2b3b1b2", + "fields": { + "code_commune_insee": "03055", + "nom_de_la_commune": "LA CHAPELAUDE", + "code_postal": "03380", + "coordonnees_gps": [ + 46.4276365849, + 2.50433585569 + ], + "libelle_d_acheminement": "LA CHAPELAUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50433585569, + 46.4276365849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7da84f33420b386df5f33dea590df83954e7247", + "fields": { + "code_commune_insee": "03058", + "nom_de_la_commune": "CHAPPES", + "code_postal": "03390", + "coordonnees_gps": [ + 46.3828961665, + 2.94412358895 + ], + "libelle_d_acheminement": "CHAPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94412358895, + 46.3828961665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d63074b877a798feb5857038b57946fc984519df", + "fields": { + "code_commune_insee": "03061", + "nom_de_la_commune": "CHARMES", + "code_postal": "03800", + "coordonnees_gps": [ + 46.0829571549, + 3.24639555805 + ], + "libelle_d_acheminement": "CHARMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24639555805, + 46.0829571549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4595403b513ca886dee214ad8264daeb56c1dc5f", + "fields": { + "code_commune_insee": "03062", + "nom_de_la_commune": "CHARROUX", + "code_postal": "03140", + "coordonnees_gps": [ + 46.1823286094, + 3.16415034202 + ], + "libelle_d_acheminement": "CHARROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16415034202, + 46.1823286094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1db30368ad027c7827faacc11e88993bc53efc88", + "fields": { + "code_commune_insee": "03063", + "nom_de_la_commune": "CHASSENARD", + "code_postal": "03510", + "coordonnees_gps": [ + 46.441587471, + 3.97329862567 + ], + "libelle_d_acheminement": "CHASSENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97329862567, + 46.441587471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fee70761e17f47177a2da9ad642478f04e7511ac", + "fields": { + "code_commune_insee": "03066", + "nom_de_la_commune": "CHATEL MONTAGNE", + "code_postal": "03250", + "coordonnees_gps": [ + 46.1000720289, + 3.71657168388 + ], + "libelle_d_acheminement": "CHATEL MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71657168388, + 46.1000720289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5db738f0db227f9cbbb86f2b9e76dc945712f422", + "fields": { + "code_commune_insee": "03069", + "nom_de_la_commune": "CHATILLON", + "code_postal": "03210", + "coordonnees_gps": [ + 46.4615377644, + 3.12807465548 + ], + "libelle_d_acheminement": "CHATILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12807465548, + 46.4615377644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3413424b53860eca5413ec524206a5acb7eeb762", + "fields": { + "code_commune_insee": "03074", + "nom_de_la_commune": "CHEVAGNES", + "code_postal": "03230", + "coordonnees_gps": [ + 46.6082038568, + 3.56403297131 + ], + "libelle_d_acheminement": "CHEVAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56403297131, + 46.6082038568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39948b4a7d9462787b5d41ad7503e09b654224da", + "fields": { + "code_commune_insee": "03076", + "nom_de_la_commune": "CHEZY", + "code_postal": "03230", + "coordonnees_gps": [ + 46.612475752, + 3.45934804797 + ], + "libelle_d_acheminement": "CHEZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45934804797, + 46.612475752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c0feeac262286a16065b0473b11f82742b2c6f7", + "fields": { + "code_commune_insee": "03092", + "nom_de_la_commune": "CRESSANGES", + "code_postal": "03240", + "coordonnees_gps": [ + 46.4443092739, + 3.17072489552 + ], + "libelle_d_acheminement": "CRESSANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17072489552, + 46.4443092739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c51bca7069d69d77ca7e0911a71e87dc76462fa", + "fields": { + "code_commune_insee": "03096", + "nom_de_la_commune": "DENEUILLE LES CHANTELLE", + "code_postal": "03140", + "coordonnees_gps": [ + 46.252932184, + 3.1458559831 + ], + "libelle_d_acheminement": "DENEUILLE LES CHANTELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1458559831, + 46.252932184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63d34a5f4ae1578e07ecedbdebc4598e74ac8948", + "fields": { + "code_commune_insee": "03106", + "nom_de_la_commune": "DURDAT LAREQUILLE", + "code_postal": "03310", + "coordonnees_gps": [ + 46.2540040648, + 2.69686439225 + ], + "libelle_d_acheminement": "DURDAT LAREQUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69686439225, + 46.2540040648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fb900f35213f90d4843195bb94d6a55d2c8d2c0", + "fields": { + "code_commune_insee": "03118", + "nom_de_la_commune": "GANNAT", + "code_postal": "03800", + "coordonnees_gps": [ + 46.0984192073, + 3.17790823629 + ], + "libelle_d_acheminement": "GANNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17790823629, + 46.0984192073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b232bd3657504981b6bfcda543e6950dafc77b7d", + "fields": { + "code_commune_insee": "03126", + "nom_de_la_commune": "HAUTERIVE", + "code_postal": "03270", + "coordonnees_gps": [ + 46.0773045238, + 3.43868453629 + ], + "libelle_d_acheminement": "HAUTERIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43868453629, + 46.0773045238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a94aec83dc61b36f2f101963f434538c6860eae", + "fields": { + "code_commune_insee": "03130", + "nom_de_la_commune": "ISLE ET BARDAIS", + "code_postal": "03360", + "coordonnees_gps": [ + 46.6820455059, + 2.77701869373 + ], + "libelle_d_acheminement": "ISLE ET BARDAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77701869373, + 46.6820455059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d65f1fefdec949db426751b955a00a036b87827", + "fields": { + "code_commune_insee": "03144", + "nom_de_la_commune": "LIERNOLLES", + "code_postal": "03130", + "coordonnees_gps": [ + 46.3986289465, + 3.76799783799 + ], + "libelle_d_acheminement": "LIERNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76799783799, + 46.3986289465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35c7cce0936574ff88612a62556a8af47e573852", + "fields": { + "code_commune_insee": "03149", + "nom_de_la_commune": "LOUCHY MONTFAND", + "code_postal": "03500", + "coordonnees_gps": [ + 46.3075829687, + 3.24491928356 + ], + "libelle_d_acheminement": "LOUCHY MONTFAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24491928356, + 46.3075829687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41a32049b72bc0655b2888222ba07ba6a86c7665", + "fields": { + "code_commune_insee": "03155", + "nom_de_la_commune": "LURCY LEVIS", + "code_postal": "03320", + "coordonnees_gps": [ + 46.7350922642, + 2.91800325447 + ], + "libelle_d_acheminement": "LURCY LEVIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91800325447, + 46.7350922642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de718a524ccfa8b1aca31fe67882bca3d4733c97", + "fields": { + "code_commune_insee": "03157", + "nom_de_la_commune": "MAGNET", + "code_postal": "03260", + "coordonnees_gps": [ + 46.2172906901, + 3.5106036727 + ], + "libelle_d_acheminement": "MAGNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5106036727, + 46.2172906901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57a29828eb1b40d128f50db9fe5ce064fe05556a", + "fields": { + "code_commune_insee": "03162", + "nom_de_la_commune": "MARIGNY", + "code_postal": "03210", + "coordonnees_gps": [ + 46.579557675, + 3.20989648546 + ], + "libelle_d_acheminement": "MARIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20989648546, + 46.579557675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92b660b2a5089caac9c8570c56bd83de707faef5", + "fields": { + "ligne_5": "MEAULNE", + "code_commune_insee": "03168", + "libelle_d_acheminement": "MEAULNE VITRAY", + "code_postal": "03360", + "nom_de_la_commune": "MEAULNE VITRAY", + "coordonnees_gps": [ + 46.5959256579, + 2.62022117679 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62022117679, + 46.5959256579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a503e2b32f189548a5c366a417c9e3165d62fa1d", + "fields": { + "code_commune_insee": "03173", + "nom_de_la_commune": "MOLINET", + "code_postal": "03510", + "coordonnees_gps": [ + 46.464220041, + 3.9262713854 + ], + "libelle_d_acheminement": "MOLINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9262713854, + 46.464220041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5df2a940de32e90e458eaba81dea0c5a67922f0", + "fields": { + "code_commune_insee": "03177", + "nom_de_la_commune": "MONETAY SUR LOIRE", + "code_postal": "03470", + "coordonnees_gps": [ + 46.4350468294, + 3.82462613047 + ], + "libelle_d_acheminement": "MONETAY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82462613047, + 46.4350468294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "122e587156c1ac1a0cb18137fe84976d66c5653e", + "fields": { + "code_commune_insee": "03178", + "nom_de_la_commune": "MONTAIGUET EN FOREZ", + "code_postal": "03130", + "coordonnees_gps": [ + 46.267429173, + 3.8221356053 + ], + "libelle_d_acheminement": "MONTAIGUET EN FOREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8221356053, + 46.267429173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c6f8780d5c2beff0417d69f4e040ec76569bfa6", + "fields": { + "code_commune_insee": "03185", + "nom_de_la_commune": "MONTLUCON", + "code_postal": "03100", + "coordonnees_gps": [ + 46.3385883496, + 2.60390499777 + ], + "libelle_d_acheminement": "MONTLUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60390499777, + 46.3385883496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cfd78ee07f879087ec896c65b137c30245b51f6", + "fields": { + "code_commune_insee": "03191", + "nom_de_la_commune": "MURAT", + "code_postal": "03390", + "coordonnees_gps": [ + 46.410976289, + 2.90417805262 + ], + "libelle_d_acheminement": "MURAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90417805262, + 46.410976289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c77da493ecd35f43b6ee20b049bc7fb4c895bfb8", + "fields": { + "code_commune_insee": "03200", + "nom_de_la_commune": "NEUVY", + "code_postal": "03000", + "coordonnees_gps": [ + 46.5712518334, + 3.28275338591 + ], + "libelle_d_acheminement": "NEUVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28275338591, + 46.5712518334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d01cf22c0d320f8347dba58fd5da505f172748ce", + "fields": { + "code_commune_insee": "03203", + "nom_de_la_commune": "PARAY LE FRESIL", + "code_postal": "03230", + "coordonnees_gps": [ + 46.6598970323, + 3.60383070741 + ], + "libelle_d_acheminement": "PARAY LE FRESIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60383070741, + 46.6598970323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb631e1780c3aac70059ec54ec74fb0e885b3b87", + "fields": { + "code_commune_insee": "03204", + "nom_de_la_commune": "PARAY SOUS BRIAILLES", + "code_postal": "03500", + "coordonnees_gps": [ + 46.2903733952, + 3.36980984118 + ], + "libelle_d_acheminement": "PARAY SOUS BRIAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36980984118, + 46.2903733952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9067af4e2ecd73428c025753ad5ec4a468b2069c", + "fields": { + "code_commune_insee": "03207", + "nom_de_la_commune": "PIERREFITTE SUR LOIRE", + "code_postal": "03470", + "coordonnees_gps": [ + 46.5040402992, + 3.81007064731 + ], + "libelle_d_acheminement": "PIERREFITTE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81007064731, + 46.5040402992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5c5a28a1c2cf9b2d2445b7076229cb3d2c26c04", + "fields": { + "code_commune_insee": "03209", + "nom_de_la_commune": "POEZAT", + "code_postal": "03800", + "coordonnees_gps": [ + 46.0755325422, + 3.22701379423 + ], + "libelle_d_acheminement": "POEZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22701379423, + 46.0755325422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "299d25bc386e01f10ca56bd29843df13da9e9153", + "fields": { + "code_commune_insee": "03211", + "nom_de_la_commune": "PREMILHAT", + "code_postal": "03410", + "coordonnees_gps": [ + 46.3099309772, + 2.54719729208 + ], + "libelle_d_acheminement": "PREMILHAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54719729208, + 46.3099309772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bd59dd1d4551f90a225e2ff86a423b54f1762c6", + "fields": { + "code_commune_insee": "03216", + "nom_de_la_commune": "RONNET", + "code_postal": "03420", + "coordonnees_gps": [ + 46.2015478227, + 2.70087446856 + ], + "libelle_d_acheminement": "RONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70087446856, + 46.2015478227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f34b8840719fcbb4f3e64b4ba12b9dd4468a88c", + "fields": { + "code_commune_insee": "03217", + "nom_de_la_commune": "ST ANGEL", + "code_postal": "03170", + "coordonnees_gps": [ + 46.3558498078, + 2.68461176543 + ], + "libelle_d_acheminement": "ST ANGEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68461176543, + 46.3558498078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88c79f0520cf8715354d5a4d67430aa112f7a6a4", + "fields": { + "code_commune_insee": "03221", + "nom_de_la_commune": "ST BONNET TRONCAIS", + "code_postal": "03360", + "coordonnees_gps": [ + 46.6697641721, + 2.69613341169 + ], + "libelle_d_acheminement": "ST BONNET TRONCAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69613341169, + 46.6697641721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51fad9d35053fd04e72a4e20c3614c45d23eb3d1", + "fields": { + "code_commune_insee": "03232", + "nom_de_la_commune": "ST FELIX", + "code_postal": "03260", + "coordonnees_gps": [ + 46.229193409, + 3.47524603973 + ], + "libelle_d_acheminement": "ST FELIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47524603973, + 46.229193409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff98fe3fbd0f22f2e30edb3963362cc7cf8e7bc0", + "fields": { + "code_commune_insee": "03236", + "nom_de_la_commune": "ST GERMAIN DES FOSSES", + "code_postal": "03260", + "coordonnees_gps": [ + 46.1959477042, + 3.42997700831 + ], + "libelle_d_acheminement": "ST GERMAIN DES FOSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42997700831, + 46.1959477042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fa151b0a6e0945b78a70762b7eb6fdfc5e17011", + "fields": { + "code_commune_insee": "03240", + "nom_de_la_commune": "ST LEON", + "code_postal": "03220", + "coordonnees_gps": [ + 46.410638894, + 3.68775721106 + ], + "libelle_d_acheminement": "ST LEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68775721106, + 46.410638894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a68ec772e135280af5fcc01172ba681e3973e0cc", + "fields": { + "code_commune_insee": "03242", + "nom_de_la_commune": "ST LOUP", + "code_postal": "03150", + "coordonnees_gps": [ + 46.3549641882, + 3.37601860081 + ], + "libelle_d_acheminement": "ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37601860081, + 46.3549641882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffac63136ce7154bd63dc5ec157c127c94cde898", + "fields": { + "code_commune_insee": "03244", + "nom_de_la_commune": "ST MARCEL EN MARCILLAT", + "code_postal": "03420", + "coordonnees_gps": [ + 46.1532804539, + 2.58075381141 + ], + "libelle_d_acheminement": "ST MARCEL EN MARCILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58075381141, + 46.1532804539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f187bddea0308ae671362309340960248a40cbca", + "fields": { + "code_commune_insee": "03248", + "nom_de_la_commune": "ST NICOLAS DES BIEFS", + "code_postal": "03250", + "coordonnees_gps": [ + 46.0632245634, + 3.79460612214 + ], + "libelle_d_acheminement": "ST NICOLAS DES BIEFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79460612214, + 46.0632245634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6446f089c8c726f25a23092507770b3410bd9443", + "fields": { + "code_commune_insee": "03256", + "nom_de_la_commune": "ST PRIEST EN MURAT", + "code_postal": "03390", + "coordonnees_gps": [ + 46.3556892534, + 2.90261837567 + ], + "libelle_d_acheminement": "ST PRIEST EN MURAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90261837567, + 46.3556892534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f94200fca9d5add65ad1646e86dddfb65f27c9bf", + "fields": { + "code_commune_insee": "03257", + "nom_de_la_commune": "ST PRIX", + "code_postal": "03120", + "coordonnees_gps": [ + 46.2252273378, + 3.64894031518 + ], + "libelle_d_acheminement": "ST PRIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64894031518, + 46.2252273378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35afb8962bf58fdc6320085566ff1a510df4267d", + "fields": { + "code_commune_insee": "03260", + "nom_de_la_commune": "ST SORNIN", + "code_postal": "03240", + "coordonnees_gps": [ + 46.4116980303, + 3.00356131793 + ], + "libelle_d_acheminement": "ST SORNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00356131793, + 46.4116980303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba292f3c899a05006539475a6093ee2a4cc5642", + "fields": { + "code_commune_insee": "03263", + "nom_de_la_commune": "ST VOIR", + "code_postal": "03220", + "coordonnees_gps": [ + 46.410067, + 3.5060612523 + ], + "libelle_d_acheminement": "ST VOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5060612523, + 46.410067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "989ab6ac0af349be0cb5a65277b7c452f1ac683b", + "fields": { + "code_commune_insee": "03269", + "nom_de_la_commune": "SAUVAGNY", + "code_postal": "03430", + "coordonnees_gps": [ + 46.4345448666, + 2.79955608965 + ], + "libelle_d_acheminement": "SAUVAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79955608965, + 46.4345448666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "809b091ffc89365c66f272954c6b2d9cf72a3baf", + "fields": { + "code_commune_insee": "03279", + "nom_de_la_commune": "TEILLET ARGENTY", + "code_postal": "03410", + "coordonnees_gps": [ + 46.262769167, + 2.51658003922 + ], + "libelle_d_acheminement": "TEILLET ARGENTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51658003922, + 46.262769167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19038a4e1f06c19b753f5ed062a15ec5c400c9dd", + "fields": { + "code_commune_insee": "03281", + "nom_de_la_commune": "LE THEIL", + "code_postal": "03240", + "coordonnees_gps": [ + 46.3563893296, + 3.12547357039 + ], + "libelle_d_acheminement": "LE THEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12547357039, + 46.3563893296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bedeb072f8e66056fc6e6a43f7e794b9c0eeb4ad", + "fields": { + "code_commune_insee": "03282", + "nom_de_la_commune": "THENEUILLE", + "code_postal": "03350", + "coordonnees_gps": [ + 46.587490556, + 2.87994545903 + ], + "libelle_d_acheminement": "THENEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87994545903, + 46.587490556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a61485710c826340e39bdb7e96e093193d67ad4f", + "fields": { + "code_commune_insee": "03291", + "nom_de_la_commune": "TREZELLES", + "code_postal": "03220", + "coordonnees_gps": [ + 46.3195324708, + 3.59671419361 + ], + "libelle_d_acheminement": "TREZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59671419361, + 46.3195324708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4084df1610425df7dbc621a382143efd6d13eed9", + "fields": { + "code_commune_insee": "03295", + "nom_de_la_commune": "VALIGNAT", + "code_postal": "03330", + "coordonnees_gps": [ + 46.1744050814, + 3.07839354321 + ], + "libelle_d_acheminement": "VALIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07839354321, + 46.1744050814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31ce0e766109ecef7f98bdd333d67530d21709b3", + "fields": { + "code_commune_insee": "03302", + "nom_de_la_commune": "VEAUCE", + "code_postal": "03450", + "coordonnees_gps": [ + 46.1700928934, + 3.05432607962 + ], + "libelle_d_acheminement": "VEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05432607962, + 46.1700928934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4b2a689a3e48172e738481bb895ff7664f078aa", + "fields": { + "code_commune_insee": "03304", + "nom_de_la_commune": "VENDAT", + "code_postal": "03110", + "coordonnees_gps": [ + 46.1618116569, + 3.34727094186 + ], + "libelle_d_acheminement": "VENDAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34727094186, + 46.1618116569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9542abafab0fcf4a449aa6abfaf50d111e3a96cd", + "fields": { + "code_commune_insee": "03305", + "nom_de_la_commune": "VERNEIX", + "code_postal": "03190", + "coordonnees_gps": [ + 46.4080547115, + 2.6746212521 + ], + "libelle_d_acheminement": "VERNEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6746212521, + 46.4080547115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1538cbe2d7140a2b12b97056c959187e61423931", + "fields": { + "code_commune_insee": "03313", + "nom_de_la_commune": "LE VILHAIN", + "code_postal": "03350", + "coordonnees_gps": [ + 46.5619095522, + 2.79303077979 + ], + "libelle_d_acheminement": "LE VILHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79303077979, + 46.5619095522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c8a4b250f537f67a0cd3d3b7f5ee8945fa8ec5a", + "fields": { + "code_commune_insee": "04009", + "nom_de_la_commune": "ARCHAIL", + "code_postal": "04420", + "coordonnees_gps": [ + 44.1110653424, + 6.33071411194 + ], + "libelle_d_acheminement": "ARCHAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33071411194, + 44.1110653424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eed5b9270f675ea8f9b3d3436be9e5cf49be8b01", + "fields": { + "code_commune_insee": "04012", + "nom_de_la_commune": "AUBENAS LES ALPES", + "code_postal": "04110", + "coordonnees_gps": [ + 43.9335584163, + 5.67694693989 + ], + "libelle_d_acheminement": "AUBENAS LES ALPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67694693989, + 43.9335584163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "214fc13a2a722dd781c532ac050a71a62c23fb86", + "fields": { + "code_commune_insee": "04028", + "nom_de_la_commune": "BEYNES", + "code_postal": "04270", + "coordonnees_gps": [ + 43.9834965171, + 6.24025663148 + ], + "libelle_d_acheminement": "BEYNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24025663148, + 43.9834965171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46097b63913c0a1c4d90ab1c7c182ba37b136057", + "fields": { + "code_commune_insee": "04031", + "nom_de_la_commune": "BRAS D ASSE", + "code_postal": "04270", + "coordonnees_gps": [ + 43.9263257197, + 6.12649772452 + ], + "libelle_d_acheminement": "BRAS D ASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12649772452, + 43.9263257197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d9f877372424893bea01ee0b34bf64502d3c7af", + "fields": { + "code_commune_insee": "04034", + "nom_de_la_commune": "LA BRILLANNE", + "code_postal": "04700", + "coordonnees_gps": [ + 43.9319005392, + 5.88421838797 + ], + "libelle_d_acheminement": "LA BRILLANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88421838797, + 43.9319005392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51afc160cd3bac2c621e3f5efb1308033c83bc90", + "fields": { + "code_commune_insee": "04035", + "nom_de_la_commune": "BRUNET", + "code_postal": "04210", + "coordonnees_gps": [ + 43.8858785364, + 6.03257536276 + ], + "libelle_d_acheminement": "BRUNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03257536276, + 43.8858785364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31af6ba5af78d367d3855c30c717eb7fca0e76eb", + "fields": { + "code_commune_insee": "04037", + "nom_de_la_commune": "LE CAIRE", + "code_postal": "04250", + "coordonnees_gps": [ + 44.3744163533, + 6.06875774225 + ], + "libelle_d_acheminement": "LE CAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06875774225, + 44.3744163533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4c0e9196d91d933d67a46a653cddd95f03655ac", + "fields": { + "ligne_5": "CHASTEUIL", + "code_commune_insee": "04039", + "libelle_d_acheminement": "CASTELLANE", + "code_postal": "04120", + "nom_de_la_commune": "CASTELLANE", + "coordonnees_gps": [ + 43.8449862174, + 6.49029842016 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49029842016, + 43.8449862174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00ead465e960bacadf16c7dc4f9779b379c88812", + "fields": { + "ligne_5": "MELAN", + "code_commune_insee": "04040", + "libelle_d_acheminement": "LE CASTELLARD MELAN", + "code_postal": "04380", + "nom_de_la_commune": "LE CASTELLARD MELAN", + "coordonnees_gps": [ + 44.2016431995, + 6.13159521325 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13159521325, + 44.2016431995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00ad41b58150b2d03d7dbf7be4fb7c4401e0716a", + "fields": { + "ligne_5": "MONTBLANC", + "code_commune_insee": "04043", + "libelle_d_acheminement": "VAL DE CHALVAGNE", + "code_postal": "04320", + "nom_de_la_commune": "VAL DE CHALVAGNE", + "coordonnees_gps": [ + 43.9046374337, + 6.76578520195 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76578520195, + 43.9046374337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3eb9adef4d00ae948292c84523fdfbdeb3868fd5", + "fields": { + "code_commune_insee": "04046", + "nom_de_la_commune": "LE CHAFFAUT ST JURSON", + "code_postal": "04510", + "coordonnees_gps": [ + 44.0231804287, + 6.14073798744 + ], + "libelle_d_acheminement": "LE CHAFFAUT ST JURSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14073798744, + 44.0231804287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "361b88a68996d835497a5e13c1fb607de6997fac", + "fields": { + "ligne_5": "ESPINOUSE", + "code_commune_insee": "04046", + "libelle_d_acheminement": "LE CHAFFAUT ST JURSON", + "code_postal": "04510", + "nom_de_la_commune": "LE CHAFFAUT ST JURSON", + "coordonnees_gps": [ + 44.0231804287, + 6.14073798744 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14073798744, + 44.0231804287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e396eca86cbddbc338223cbb09eb5d6be9769675", + "fields": { + "code_commune_insee": "04053", + "nom_de_la_commune": "CHATEAUNEUF VAL ST DONAT", + "code_postal": "04200", + "coordonnees_gps": [ + 44.0954534225, + 5.93054683108 + ], + "libelle_d_acheminement": "CHATEAUNEUF VAL ST DONAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93054683108, + 44.0954534225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0592846c8ea7e690cd5adf5a0333170b6145cfab", + "fields": { + "code_commune_insee": "04055", + "nom_de_la_commune": "CHAUDON NORANTE", + "code_postal": "04330", + "coordonnees_gps": [ + 43.9919149482, + 6.31736807144 + ], + "libelle_d_acheminement": "CHAUDON NORANTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31736807144, + 43.9919149482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1de82e08496737ee1f2fa2a0f66cbe3ad402658d", + "fields": { + "code_commune_insee": "04058", + "nom_de_la_commune": "CLARET", + "code_postal": "05110", + "coordonnees_gps": [ + 44.3738118271, + 5.96467673226 + ], + "libelle_d_acheminement": "CLARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96467673226, + 44.3738118271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b487cc0b6870ba35fd7fd8e57e7c30d067c075c4", + "fields": { + "code_commune_insee": "04066", + "nom_de_la_commune": "CURBANS", + "code_postal": "05110", + "coordonnees_gps": [ + 44.4083473334, + 6.03005001215 + ], + "libelle_d_acheminement": "CURBANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03005001215, + 44.4083473334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9292555ff336bb30d60fc8a3e9b9b6c6e5806d3c", + "fields": { + "ligne_5": "LE SAUZE", + "code_commune_insee": "04073", + "libelle_d_acheminement": "ENCHASTRAYES", + "code_postal": "04400", + "nom_de_la_commune": "ENCHASTRAYES", + "coordonnees_gps": [ + 44.3640085405, + 6.71028980662 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71028980662, + 44.3640085405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aedd628b83e60ebb43bd08cc5d4a23cd7f488eb", + "fields": { + "ligne_5": "VILHOSC", + "code_commune_insee": "04075", + "libelle_d_acheminement": "ENTREPIERRES", + "code_postal": "04200", + "nom_de_la_commune": "ENTREPIERRES", + "coordonnees_gps": [ + 44.1956537173, + 6.02224124199 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02224124199, + 44.1956537173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49b3355ca39c40e6f45df1d17c34ad03fdf5d1f1", + "fields": { + "ligne_5": "ALBIOSC", + "code_commune_insee": "04081", + "libelle_d_acheminement": "ESPARRON DE VERDON", + "code_postal": "04800", + "nom_de_la_commune": "ESPARRON DE VERDON", + "coordonnees_gps": [ + 43.7438250286, + 5.98891639232 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98891639232, + 43.7438250286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fd48a91d23058d46d634614ced937bdcdf80193", + "fields": { + "code_commune_insee": "04085", + "nom_de_la_commune": "FAUCON DU CAIRE", + "code_postal": "04250", + "coordonnees_gps": [ + 44.3959463913, + 6.1036738865 + ], + "libelle_d_acheminement": "FAUCON DU CAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1036738865, + 44.3959463913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5cf29379179cdb759fe3cc8c7a071dbc8746a0b", + "fields": { + "code_commune_insee": "04090", + "nom_de_la_commune": "LE FUGERET", + "code_postal": "04240", + "coordonnees_gps": [ + 44.0145000822, + 6.66560747142 + ], + "libelle_d_acheminement": "LE FUGERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66560747142, + 44.0145000822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5e604c98ab688fb799e02e5e2d849f78117ed73", + "fields": { + "code_commune_insee": "04091", + "nom_de_la_commune": "GANAGOBIE", + "code_postal": "04310", + "coordonnees_gps": [ + 44.0025862123, + 5.90850076129 + ], + "libelle_d_acheminement": "GANAGOBIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90850076129, + 44.0025862123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0b899e4650bde932f92191d9af5f6c93aa86c70", + "fields": { + "code_commune_insee": "04095", + "nom_de_la_commune": "L HOSPITALET", + "code_postal": "04150", + "coordonnees_gps": [ + 44.1089187611, + 5.70685925605 + ], + "libelle_d_acheminement": "L HOSPITALET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70685925605, + 44.1089187611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcf84f18e916018cea37f99cb2fbdc497c6a5c75", + "fields": { + "code_commune_insee": "04099", + "nom_de_la_commune": "LAMBRUISSE", + "code_postal": "04170", + "coordonnees_gps": [ + 44.0448344934, + 6.44538846702 + ], + "libelle_d_acheminement": "LAMBRUISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44538846702, + 44.0448344934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84f4f5ec744e9c994568e41b92249e482f0741dd", + "fields": { + "code_commune_insee": "04106", + "nom_de_la_commune": "LURS", + "code_postal": "04700", + "coordonnees_gps": [ + 43.9698343331, + 5.8804940629 + ], + "libelle_d_acheminement": "LURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8804940629, + 43.9698343331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24378f637ec3b0c4aa58c88c9d185290f7135c28", + "fields": { + "code_commune_insee": "04111", + "nom_de_la_commune": "MANE", + "code_postal": "04300", + "coordonnees_gps": [ + 43.9388973757, + 5.74234213479 + ], + "libelle_d_acheminement": "MANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74234213479, + 43.9388973757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66ccf426f9ee2cdf07e96b4a677ba88b661873d8", + "fields": { + "code_commune_insee": "04129", + "nom_de_la_commune": "MONTJUSTIN", + "code_postal": "04110", + "coordonnees_gps": [ + 43.8452930923, + 5.65023560321 + ], + "libelle_d_acheminement": "MONTJUSTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65023560321, + 43.8452930923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55bf912d12de6a363cd36145f86c84121ca39c06", + "fields": { + "code_commune_insee": "04132", + "nom_de_la_commune": "MONTSALIER", + "code_postal": "04150", + "coordonnees_gps": [ + 44.0299525826, + 5.59574173796 + ], + "libelle_d_acheminement": "MONTSALIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59574173796, + 44.0299525826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e0bb7b5c464cde6baf5059eb03acf17b83e3d55", + "fields": { + "code_commune_insee": "04134", + "nom_de_la_commune": "LA MOTTE DU CAIRE", + "code_postal": "04250", + "coordonnees_gps": [ + 44.3408705676, + 6.03052669324 + ], + "libelle_d_acheminement": "LA MOTTE DU CAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03052669324, + 44.3408705676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdaeaafb5e448134f1961d38d2eb613588287fb2", + "fields": { + "code_commune_insee": "04138", + "nom_de_la_commune": "NIOZELLES", + "code_postal": "04300", + "coordonnees_gps": [ + 43.9318568104, + 5.84735007889 + ], + "libelle_d_acheminement": "NIOZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84735007889, + 43.9318568104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8361b722bdc2dbb4fedd005d779626cc8be69ed6", + "fields": { + "code_commune_insee": "04149", + "nom_de_la_commune": "PEYRUIS", + "code_postal": "04310", + "coordonnees_gps": [ + 44.03515352, + 5.92833355728 + ], + "libelle_d_acheminement": "PEYRUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92833355728, + 44.03515352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e310d6d9a203a6dfdc4923c377ed19c3400230d", + "fields": { + "code_commune_insee": "04155", + "nom_de_la_commune": "PRADS HAUTE BLEONE", + "code_postal": "04420", + "coordonnees_gps": [ + 44.2134336367, + 6.46376994635 + ], + "libelle_d_acheminement": "PRADS HAUTE BLEONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46376994635, + 44.2134336367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "494ec4da60da2d231dd15042c24909bd50c1d9ae", + "fields": { + "ligne_5": "MARIAUD", + "code_commune_insee": "04155", + "libelle_d_acheminement": "PRADS HAUTE BLEONE", + "code_postal": "04420", + "nom_de_la_commune": "PRADS HAUTE BLEONE", + "coordonnees_gps": [ + 44.2134336367, + 6.46376994635 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46376994635, + 44.2134336367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40ccf6eab82693048298a6e3f1cf780c19e1da9c", + "fields": { + "code_commune_insee": "04156", + "nom_de_la_commune": "PUIMICHEL", + "code_postal": "04700", + "coordonnees_gps": [ + 43.9791657071, + 6.02538678185 + ], + "libelle_d_acheminement": "PUIMICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02538678185, + 43.9791657071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce537ed5ddc6df03ea210329a9562cfb75306601", + "fields": { + "code_commune_insee": "04162", + "nom_de_la_commune": "REVEST DES BROUSSES", + "code_postal": "04150", + "coordonnees_gps": [ + 43.9754850716, + 5.67501221174 + ], + "libelle_d_acheminement": "REVEST DES BROUSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67501221174, + 43.9754850716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "192576c24236d170bcbe5bf59bbad797ffa4678f", + "fields": { + "code_commune_insee": "04169", + "nom_de_la_commune": "LA ROCHEGIRON", + "code_postal": "04150", + "coordonnees_gps": [ + 44.1094183926, + 5.66381397427 + ], + "libelle_d_acheminement": "LA ROCHEGIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66381397427, + 44.1094183926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26be7808cc3cca5266366d7a761e556484e984ec", + "fields": { + "code_commune_insee": "04172", + "nom_de_la_commune": "ROUMOULES", + "code_postal": "04500", + "coordonnees_gps": [ + 43.821041609, + 6.14864703263 + ], + "libelle_d_acheminement": "ROUMOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14864703263, + 43.821041609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d567045af7541d501cdc1d3d30c771e601ffb9d", + "fields": { + "code_commune_insee": "04173", + "nom_de_la_commune": "ST ANDRE LES ALPES", + "code_postal": "04170", + "coordonnees_gps": [ + 43.9713301406, + 6.50149712225 + ], + "libelle_d_acheminement": "ST ANDRE LES ALPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50149712225, + 43.9713301406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6833c0d45e963837f1c0763230bbd4adee0c435f", + "fields": { + "code_commune_insee": "04176", + "nom_de_la_commune": "STE CROIX DU VERDON", + "code_postal": "04500", + "coordonnees_gps": [ + 43.7642821493, + 6.15158882357 + ], + "libelle_d_acheminement": "STE CROIX DU VERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15158882357, + 43.7642821493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77730d5db07622f6b03126606cbfa6b6d6195555", + "fields": { + "code_commune_insee": "04182", + "nom_de_la_commune": "ST JULIEN D ASSE", + "code_postal": "04270", + "coordonnees_gps": [ + 43.9266153853, + 6.07806454992 + ], + "libelle_d_acheminement": "ST JULIEN D ASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07806454992, + 43.9266153853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfe858f81918cd2905b97c7c4cfd20d473aeee2f", + "fields": { + "code_commune_insee": "04188", + "nom_de_la_commune": "ST MAIME", + "code_postal": "04300", + "coordonnees_gps": [ + 43.900642071, + 5.801542403 + ], + "libelle_d_acheminement": "ST MAIME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.801542403, + 43.900642071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d1cbcf5465bb196a6a9588653d48e9951e4919e", + "fields": { + "ligne_5": "LINCEL", + "code_commune_insee": "04192", + "libelle_d_acheminement": "ST MICHEL L OBSERVATOIRE", + "code_postal": "04870", + "nom_de_la_commune": "ST MICHEL L OBSERVATOIRE", + "coordonnees_gps": [ + 43.909879406, + 5.72004315449 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72004315449, + 43.909879406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f506871f56cc23b29d6604535985c6fa822b3f08", + "fields": { + "code_commune_insee": "04194", + "nom_de_la_commune": "ST PIERRE", + "code_postal": "06260", + "coordonnees_gps": [ + 43.9088889412, + 6.92184591099 + ], + "libelle_d_acheminement": "ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92184591099, + 43.9088889412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a2c48d329bbc1af539ee1e863ed69defe43e8e1", + "fields": { + "code_commune_insee": "04197", + "nom_de_la_commune": "STE TULLE", + "code_postal": "04220", + "coordonnees_gps": [ + 43.7830482525, + 5.77302331731 + ], + "libelle_d_acheminement": "STE TULLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77302331731, + 43.7830482525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "051cc14baef1d8afb8efa147440ef66562c91a38", + "fields": { + "code_commune_insee": "04201", + "nom_de_la_commune": "SAUMANE", + "code_postal": "04150", + "coordonnees_gps": [ + 44.0812808516, + 5.68214602167 + ], + "libelle_d_acheminement": "SAUMANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68214602167, + 44.0812808516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "976a5262180f03d2698d2b5f34ffe1d1f2531f41", + "fields": { + "code_commune_insee": "04206", + "nom_de_la_commune": "SIGONCE", + "code_postal": "04300", + "coordonnees_gps": [ + 44.0045227576, + 5.85658315569 + ], + "libelle_d_acheminement": "SIGONCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85658315569, + 44.0045227576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5977ed63800173d19d844c656501556df6a20d2", + "fields": { + "code_commune_insee": "04209", + "nom_de_la_commune": "SISTERON", + "code_postal": "04200", + "coordonnees_gps": [ + 44.2001925067, + 5.93083716039 + ], + "libelle_d_acheminement": "SISTERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93083716039, + 44.2001925067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "662a1754fbb5b21bc4828c3fba483bd0386c6bd7", + "fields": { + "code_commune_insee": "04218", + "nom_de_la_commune": "THORAME BASSE", + "code_postal": "04170", + "coordonnees_gps": [ + 44.1071929199, + 6.48931325437 + ], + "libelle_d_acheminement": "THORAME BASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48931325437, + 44.1071929199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f5ba819bd3b3af6709b353582325ada412d15d4", + "fields": { + "code_commune_insee": "04220", + "nom_de_la_commune": "LES THUILES", + "code_postal": "04400", + "coordonnees_gps": [ + 44.390358455, + 6.56135597439 + ], + "libelle_d_acheminement": "LES THUILES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56135597439, + 44.390358455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adafc68c4cdae8c8675a489c3acdc644d9d3ceab", + "fields": { + "code_commune_insee": "04233", + "nom_de_la_commune": "VAUMEILH", + "code_postal": "04200", + "coordonnees_gps": [ + 44.2903076957, + 5.95653121817 + ], + "libelle_d_acheminement": "VAUMEILH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95653121817, + 44.2903076957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29f63756f91d46499a0dc66b8611c8d81e357b1f", + "fields": { + "code_commune_insee": "04236", + "nom_de_la_commune": "VERGONS", + "code_postal": "04170", + "coordonnees_gps": [ + 43.9152134017, + 6.6046313619 + ], + "libelle_d_acheminement": "VERGONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6046313619, + 43.9152134017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35b2a1dc259ec15008b945adb041daf66fa728e6", + "fields": { + "code_commune_insee": "04241", + "nom_de_la_commune": "VILLEMUS", + "code_postal": "04110", + "coordonnees_gps": [ + 43.8613317961, + 5.70930443127 + ], + "libelle_d_acheminement": "VILLEMUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70930443127, + 43.8613317961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30fd5cb3e511a901d33f040bbb540a4e2f8a781b", + "fields": { + "ligne_5": "RISTOLAS", + "code_commune_insee": "05001", + "libelle_d_acheminement": "ABRIES RISTOLAS", + "code_postal": "05460", + "nom_de_la_commune": "ABRIES RISTOLAS", + "coordonnees_gps": [ + 44.8163462455, + 6.94164442809 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94164442809, + 44.8163462455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd2627f8176675700bbb67bae87448416598fd9e", + "fields": { + "code_commune_insee": "05006", + "nom_de_la_commune": "L ARGENTIERE LA BESSEE", + "code_postal": "05120", + "coordonnees_gps": [ + 44.7821732712, + 6.47214497323 + ], + "libelle_d_acheminement": "L ARGENTIERE LA BESSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47214497323, + 44.7821732712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67b4ba05399df28fac37372e269ec359027d2e4b", + "fields": { + "code_commune_insee": "05009", + "nom_de_la_commune": "ASPRES LES CORPS", + "code_postal": "05800", + "coordonnees_gps": [ + 44.8128831432, + 6.00076834757 + ], + "libelle_d_acheminement": "ASPRES LES CORPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00076834757, + 44.8128831432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e08180a9ee8cd314aa60b71604d349be7f7a8902", + "fields": { + "code_commune_insee": "05010", + "nom_de_la_commune": "ASPRES SUR BUECH", + "code_postal": "05140", + "coordonnees_gps": [ + 44.5617512104, + 5.77203298744 + ], + "libelle_d_acheminement": "ASPRES SUR BUECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77203298744, + 44.5617512104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53156849a5b2fb864efb092965a60b25c426bb76", + "fields": { + "code_commune_insee": "05011", + "nom_de_la_commune": "AVANCON", + "code_postal": "05230", + "coordonnees_gps": [ + 44.5339475338, + 6.19116390114 + ], + "libelle_d_acheminement": "AVANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19116390114, + 44.5339475338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cac72e8c45b733691a7bd3bdbeb28e6879a52b1", + "fields": { + "code_commune_insee": "05012", + "nom_de_la_commune": "BARATIER", + "code_postal": "05200", + "coordonnees_gps": [ + 44.5049966967, + 6.50494218197 + ], + "libelle_d_acheminement": "BARATIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50494218197, + 44.5049966967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b137a27879f4e479a3db6687dc075e42c9ae1a01", + "fields": { + "code_commune_insee": "05017", + "nom_de_la_commune": "LA BATIE NEUVE", + "code_postal": "05230", + "coordonnees_gps": [ + 44.5797566279, + 6.21267983536 + ], + "libelle_d_acheminement": "LA BATIE NEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21267983536, + 44.5797566279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cdbd7583f1e19bc5e0098a86fcc7a945ea4b098", + "fields": { + "code_commune_insee": "05018", + "nom_de_la_commune": "LA BATIE VIEILLE", + "code_postal": "05000", + "coordonnees_gps": [ + 44.5553227405, + 6.15570739329 + ], + "libelle_d_acheminement": "LA BATIE VIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15570739329, + 44.5553227405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d377c3d9b75201bd114ff6da088742a4ff1ecf52", + "fields": { + "code_commune_insee": "05021", + "nom_de_la_commune": "LE BERSAC", + "code_postal": "05700", + "coordonnees_gps": [ + 44.4056964766, + 5.75340964069 + ], + "libelle_d_acheminement": "LE BERSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75340964069, + 44.4056964766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a8b8a20bfcfd0b3833b235a635863f6e6e0accd", + "fields": { + "code_commune_insee": "05026", + "nom_de_la_commune": "CEILLAC", + "code_postal": "05600", + "coordonnees_gps": [ + 44.6526516194, + 6.80366189831 + ], + "libelle_d_acheminement": "CEILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80366189831, + 44.6526516194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36ae304d140f47d62a2dea4b301369f03ed8e856", + "fields": { + "code_commune_insee": "05029", + "nom_de_la_commune": "CHABOTTES", + "code_postal": "05260", + "coordonnees_gps": [ + 44.6475783169, + 6.16791978587 + ], + "libelle_d_acheminement": "CHABOTTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16791978587, + 44.6475783169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d36a4dcc820ed56107dde385f1b54a42f7cbf1d0", + "fields": { + "code_commune_insee": "05037", + "nom_de_la_commune": "CHATEAUVIEUX", + "code_postal": "05000", + "coordonnees_gps": [ + 44.4841748312, + 6.05187114632 + ], + "libelle_d_acheminement": "CHATEAUVIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05187114632, + 44.4841748312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c27dcce61cd45731743f136a4db1b922a03adb9d", + "fields": { + "ligne_5": "CHATEAU QUEYRAS", + "code_commune_insee": "05038", + "libelle_d_acheminement": "CHATEAU VILLE VIEILLE", + "code_postal": "05350", + "nom_de_la_commune": "CHATEAU VILLE VIEILLE", + "coordonnees_gps": [ + 44.7677289666, + 6.8000656504 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8000656504, + 44.7677289666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9da3e22ff9030992713bfcaa8d679695e6a75e2d", + "fields": { + "code_commune_insee": "05049", + "nom_de_la_commune": "ESPARRON", + "code_postal": "05110", + "coordonnees_gps": [ + 44.4627395922, + 5.89302848154 + ], + "libelle_d_acheminement": "ESPARRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89302848154, + 44.4627395922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a109dd2d9b91b445c18b62856ae9c1f53f4d4937", + "fields": { + "code_commune_insee": "05057", + "nom_de_la_commune": "FOUILLOUSE", + "code_postal": "05130", + "coordonnees_gps": [ + 44.4531851404, + 6.00063153146 + ], + "libelle_d_acheminement": "FOUILLOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00063153146, + 44.4531851404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "192c42b09d4fa646f5933923d269831c446f8fae", + "fields": { + "code_commune_insee": "05068", + "nom_de_la_commune": "JARJAYES", + "code_postal": "05130", + "coordonnees_gps": [ + 44.50532996, + 6.10808996032 + ], + "libelle_d_acheminement": "JARJAYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10808996032, + 44.50532996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db6b9498d5700f84b4ec28cdc1a254de51d583b6", + "fields": { + "code_commune_insee": "05071", + "nom_de_la_commune": "LARDIER ET VALENCA", + "code_postal": "05110", + "coordonnees_gps": [ + 44.4366046505, + 5.97348526761 + ], + "libelle_d_acheminement": "LARDIER ET VALENCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97348526761, + 44.4366046505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbc0eb26d5fbc063bcb2cdd874edf46e2b406ebe", + "fields": { + "code_commune_insee": "05079", + "nom_de_la_commune": "LE MONETIER LES BAINS", + "code_postal": "05220", + "coordonnees_gps": [ + 44.9956106766, + 6.46966497275 + ], + "libelle_d_acheminement": "LE MONETIER LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46966497275, + 44.9956106766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e212f89f340d53cccf38a4a8fd521156847df73e", + "fields": { + "code_commune_insee": "05094", + "nom_de_la_commune": "NOSSAGE ET BENEVENT", + "code_postal": "05700", + "coordonnees_gps": [ + 44.3097205577, + 5.75452221708 + ], + "libelle_d_acheminement": "NOSSAGE ET BENEVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75452221708, + 44.3097205577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0c9b60873b59c540385f949033db0985ad2481f", + "fields": { + "ligne_5": "MERLETTE", + "code_commune_insee": "05096", + "libelle_d_acheminement": "ORCIERES", + "code_postal": "05170", + "nom_de_la_commune": "ORCIERES", + "coordonnees_gps": [ + 44.6840982803, + 6.34897527824 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34897527824, + 44.6840982803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eb130d5cb32a7298cc5eeac43c91273e4f7288f", + "fields": { + "code_commune_insee": "05097", + "nom_de_la_commune": "ORPIERRE", + "code_postal": "05700", + "coordonnees_gps": [ + 44.3146933801, + 5.70618607588 + ], + "libelle_d_acheminement": "ORPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70618607588, + 44.3146933801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a850b78fd3c764955a07c7d6a644934aadfcc85b", + "fields": { + "ligne_5": "AILEFROIDE", + "code_commune_insee": "05101", + "libelle_d_acheminement": "VALLOUISE PELVOUX", + "code_postal": "05340", + "nom_de_la_commune": "VALLOUISE PELVOUX", + "coordonnees_gps": [ + 44.899639207, + 6.43586430867 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43586430867, + 44.899639207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b33eda4b2c90fa74f5208d7a2512fbeb7ef1184", + "fields": { + "ligne_5": "PELVOUX", + "code_commune_insee": "05101", + "libelle_d_acheminement": "VALLOUISE PELVOUX", + "code_postal": "05340", + "nom_de_la_commune": "VALLOUISE PELVOUX", + "coordonnees_gps": [ + 44.899639207, + 6.43586430867 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43586430867, + 44.899639207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b559ddb6cd96a4c4c60bf5b794e388bf18f9e75", + "fields": { + "code_commune_insee": "05103", + "nom_de_la_commune": "LE POET", + "code_postal": "05300", + "coordonnees_gps": [ + 44.2789746584, + 5.90131318428 + ], + "libelle_d_acheminement": "LE POET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90131318428, + 44.2789746584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68f5ce1eb2fe4dada2047620395e6def7028e6a3", + "fields": { + "code_commune_insee": "05107", + "nom_de_la_commune": "PUY ST ANDRE", + "code_postal": "05100", + "coordonnees_gps": [ + 44.8909036618, + 6.56677781045 + ], + "libelle_d_acheminement": "PUY ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56677781045, + 44.8909036618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cad02d520a7f7f15b5c79e8768f8c07590855c8", + "fields": { + "code_commune_insee": "05108", + "nom_de_la_commune": "PUY ST EUSEBE", + "code_postal": "05200", + "coordonnees_gps": [ + 44.5685889454, + 6.41129829522 + ], + "libelle_d_acheminement": "PUY ST EUSEBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41129829522, + 44.5685889454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea7464d8a2661da737d0a51048568fc96da568a8", + "fields": { + "code_commune_insee": "05110", + "nom_de_la_commune": "PUY ST VINCENT", + "code_postal": "05290", + "coordonnees_gps": [ + 44.8144250588, + 6.4647473741 + ], + "libelle_d_acheminement": "PUY ST VINCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4647473741, + 44.8144250588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68c8d87d5b87b53bc72743ab3a773d15495a710f", + "fields": { + "code_commune_insee": "05117", + "nom_de_la_commune": "RIBEYRET", + "code_postal": "05150", + "coordonnees_gps": [ + 44.4107304576, + 5.55802862069 + ], + "libelle_d_acheminement": "RIBEYRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55802862069, + 44.4107304576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4d9590ed5aec0be7779a9ae68ce2bd6561cc717", + "fields": { + "ligne_5": "ANTONAVES", + "code_commune_insee": "05118", + "libelle_d_acheminement": "VAL BUECH MEOUGE", + "code_postal": "05300", + "nom_de_la_commune": "VAL BUECH MEOUGE", + "coordonnees_gps": [ + 44.2207910151, + 5.84342231314 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84342231314, + 44.2207910151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db45af573928879f8db7a05c035443f58d16f847", + "fields": { + "code_commune_insee": "05119", + "nom_de_la_commune": "RISOUL", + "code_postal": "05600", + "coordonnees_gps": [ + 44.6240380773, + 6.62317402744 + ], + "libelle_d_acheminement": "RISOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62317402744, + 44.6240380773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df47800addcecdf09e40a495aa70bd7e0fddd015", + "fields": { + "code_commune_insee": "05121", + "nom_de_la_commune": "ROCHEBRUNE", + "code_postal": "05190", + "coordonnees_gps": [ + 44.452250356, + 6.19249346455 + ], + "libelle_d_acheminement": "ROCHEBRUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19249346455, + 44.452250356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ac783f1fab57d97757e6714d9c83fa6e0c7f70b", + "fields": { + "code_commune_insee": "05126", + "nom_de_la_commune": "ROSANS", + "code_postal": "05150", + "coordonnees_gps": [ + 44.399871954, + 5.46146531817 + ], + "libelle_d_acheminement": "ROSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46146531817, + 44.399871954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45dc17d55ad452f4a299d8ca41adc7f8e9ad145b", + "fields": { + "code_commune_insee": "05130", + "nom_de_la_commune": "ST APOLLINAIRE", + "code_postal": "05160", + "coordonnees_gps": [ + 44.5578704136, + 6.3539003526 + ], + "libelle_d_acheminement": "ST APOLLINAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3539003526, + 44.5578704136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "906401b088e163b76145485ef8fe16eac69203bd", + "fields": { + "ligne_5": "SUPERDEVOLUY", + "code_commune_insee": "05139", + "libelle_d_acheminement": "LE DEVOLUY", + "code_postal": "05250", + "nom_de_la_commune": "LE DEVOLUY", + "coordonnees_gps": [ + 44.6775419763, + 5.94047368781 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94047368781, + 44.6775419763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb4e23c7301c557b4e145f05637e51a56284337e", + "fields": { + "code_commune_insee": "05145", + "nom_de_la_commune": "ST JEAN ST NICOLAS", + "code_postal": "05260", + "coordonnees_gps": [ + 44.6744954225, + 6.23085847467 + ], + "libelle_d_acheminement": "ST JEAN ST NICOLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23085847467, + 44.6744954225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "616b99c2b9e90cd7ec4b1ce7b2b281838e943ef2", + "fields": { + "ligne_5": "LE PONT DU FOSSE", + "code_commune_insee": "05145", + "libelle_d_acheminement": "ST JEAN ST NICOLAS", + "code_postal": "05260", + "nom_de_la_commune": "ST JEAN ST NICOLAS", + "coordonnees_gps": [ + 44.6744954225, + 6.23085847467 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23085847467, + 44.6744954225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8951af5a80fb0bd4a2138caae38c3365c6b9461e", + "fields": { + "code_commune_insee": "05146", + "nom_de_la_commune": "ST JULIEN EN BEAUCHENE", + "code_postal": "05140", + "coordonnees_gps": [ + 44.6264570637, + 5.71979975938 + ], + "libelle_d_acheminement": "ST JULIEN EN BEAUCHENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71979975938, + 44.6264570637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdbbba54f09803a9dcec11b222e9e323bb18f8d6", + "fields": { + "code_commune_insee": "05151", + "nom_de_la_commune": "ST MARTIN DE QUEYRIERES", + "code_postal": "05120", + "coordonnees_gps": [ + 44.8375257288, + 6.58255010654 + ], + "libelle_d_acheminement": "ST MARTIN DE QUEYRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58255010654, + 44.8375257288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1af1ed921891134b61b0d24e75aee1fdf408453", + "fields": { + "code_commune_insee": "05153", + "nom_de_la_commune": "ST MICHEL DE CHAILLOL", + "code_postal": "05260", + "coordonnees_gps": [ + 44.6888900905, + 6.16982010891 + ], + "libelle_d_acheminement": "ST MICHEL DE CHAILLOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16982010891, + 44.6888900905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07952ffe7e227d91d83cfb541a1db35a914576c5", + "fields": { + "code_commune_insee": "05158", + "nom_de_la_commune": "LE SAIX", + "code_postal": "05400", + "coordonnees_gps": [ + 44.4638478254, + 5.83381616664 + ], + "libelle_d_acheminement": "LE SAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83381616664, + 44.4638478254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7afdbe0bcd9bc1bb768578f7b74d6390dc681ff7", + "fields": { + "code_commune_insee": "05160", + "nom_de_la_commune": "SALERANS", + "code_postal": "05300", + "coordonnees_gps": [ + 44.2421298245, + 5.70096058268 + ], + "libelle_d_acheminement": "SALERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70096058268, + 44.2421298245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "442c576a6f80ee2ff7dde826e997a8d3fa9bab66", + "fields": { + "code_commune_insee": "05170", + "nom_de_la_commune": "TALLARD", + "code_postal": "05130", + "coordonnees_gps": [ + 44.459122073, + 6.04485602868 + ], + "libelle_d_acheminement": "TALLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04485602868, + 44.459122073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "336aa739e551a3ca30db2265d2db0ca0b4449b8a", + "fields": { + "code_commune_insee": "05171", + "nom_de_la_commune": "THEUS", + "code_postal": "05190", + "coordonnees_gps": [ + 44.4852106101, + 6.19688253047 + ], + "libelle_d_acheminement": "THEUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19688253047, + 44.4852106101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aedd3588826af023efced192fd66749b14cf0837", + "fields": { + "code_commune_insee": "05173", + "nom_de_la_commune": "UPAIX", + "code_postal": "05300", + "coordonnees_gps": [ + 44.3196073716, + 5.88311432396 + ], + "libelle_d_acheminement": "UPAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88311432396, + 44.3196073716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4545afdc25449aa307b1e137710b3578121e0b6", + "fields": { + "code_commune_insee": "05184", + "nom_de_la_commune": "VITROLLES", + "code_postal": "05110", + "coordonnees_gps": [ + 44.4246526523, + 5.94769008285 + ], + "libelle_d_acheminement": "VITROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94769008285, + 44.4246526523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f647e133e8d978a15edfb8d711db4419125240e3", + "fields": { + "code_commune_insee": "06001", + "nom_de_la_commune": "AIGLUN", + "code_postal": "06910", + "coordonnees_gps": [ + 43.8524188, + 6.934942333 + ], + "libelle_d_acheminement": "AIGLUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.934942333, + 43.8524188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32f4edbc00bfcb2847f948ea2af919605bbc3227", + "fields": { + "code_commune_insee": "06003", + "nom_de_la_commune": "ANDON", + "code_postal": "06750", + "coordonnees_gps": [ + 43.7769856778, + 6.82318647257 + ], + "libelle_d_acheminement": "ANDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82318647257, + 43.7769856778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e98818c2214e0042b1be14016901cfdad8d27e92", + "fields": { + "code_commune_insee": "06008", + "nom_de_la_commune": "AUVARE", + "code_postal": "06260", + "coordonnees_gps": [ + 44.0074205826, + 6.91467896828 + ], + "libelle_d_acheminement": "AUVARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91467896828, + 44.0074205826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "972120f266b2dcdd472530074551a25de5715263", + "fields": { + "code_commune_insee": "06009", + "nom_de_la_commune": "BAIROLS", + "code_postal": "06420", + "coordonnees_gps": [ + 43.9870510207, + 7.11969473058 + ], + "libelle_d_acheminement": "BAIROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11969473058, + 43.9870510207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa3a4f86fb1f96942763823f9e555c8c3fcbf051", + "fields": { + "code_commune_insee": "06015", + "nom_de_la_commune": "BERRE LES ALPES", + "code_postal": "06390", + "coordonnees_gps": [ + 43.8378738812, + 7.33076301102 + ], + "libelle_d_acheminement": "BERRE LES ALPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33076301102, + 43.8378738812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1617572e9bba890baf7d42282e8f3eb747db9204", + "fields": { + "code_commune_insee": "06026", + "nom_de_la_commune": "CABRIS", + "code_postal": "06530", + "coordonnees_gps": [ + 43.6599560638, + 6.87825509814 + ], + "libelle_d_acheminement": "CABRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87825509814, + 43.6599560638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6bd8fac6fab688c3930d8eca01c9e85228d894e", + "fields": { + "ligne_5": "CROS DE CAGNES", + "code_commune_insee": "06027", + "libelle_d_acheminement": "CAGNES SUR MER", + "code_postal": "06800", + "nom_de_la_commune": "CAGNES SUR MER", + "coordonnees_gps": [ + 43.6715162078, + 7.15275703379 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15275703379, + 43.6715162078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "781d7cba411026bc5c3957b50d9b3ad0bc17d6ea", + "fields": { + "ligne_5": "CANNES LA BOCCA", + "code_commune_insee": "06029", + "libelle_d_acheminement": "CANNES", + "code_postal": "06150", + "nom_de_la_commune": "CANNES", + "coordonnees_gps": [ + 43.5526202843, + 7.00427592728 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00427592728, + 43.5526202843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1835cd6b2c69cc8fad2fb911f938b7aef025cd61", + "fields": { + "code_commune_insee": "06033", + "nom_de_la_commune": "CARROS", + "code_postal": "06510", + "coordonnees_gps": [ + 43.7850390592, + 7.18414159904 + ], + "libelle_d_acheminement": "CARROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18414159904, + 43.7850390592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa76e4b7ea10bad681868f11bce1ba1f601962cb", + "fields": { + "code_commune_insee": "06037", + "nom_de_la_commune": "CAUSSOLS", + "code_postal": "06460", + "coordonnees_gps": [ + 43.7373447398, + 6.90247233198 + ], + "libelle_d_acheminement": "CAUSSOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90247233198, + 43.7373447398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c64c760568505224cbe8c16b777bb605e816eba5", + "fields": { + "code_commune_insee": "06040", + "nom_de_la_commune": "CHATEAUNEUF D ENTRAUNES", + "code_postal": "06470", + "coordonnees_gps": [ + 44.1639701619, + 6.83506555715 + ], + "libelle_d_acheminement": "CHATEAUNEUF D ENTRAUNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83506555715, + 44.1639701619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e12bb612b9582a60a70ed0fe9dcef9725ce18bf", + "fields": { + "code_commune_insee": "06042", + "nom_de_la_commune": "CLANS", + "code_postal": "06420", + "coordonnees_gps": [ + 44.0049097261, + 7.17876366942 + ], + "libelle_d_acheminement": "CLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17876366942, + 44.0049097261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3f181324860d93bd4e8028bc7cedd842ece51d4", + "fields": { + "code_commune_insee": "06043", + "nom_de_la_commune": "COARAZE", + "code_postal": "06390", + "coordonnees_gps": [ + 43.8664901786, + 7.29913349222 + ], + "libelle_d_acheminement": "COARAZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29913349222, + 43.8664901786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "194c4874f8479ba72625b9c07980def01f4040d3", + "fields": { + "code_commune_insee": "06048", + "nom_de_la_commune": "CONTES", + "code_postal": "06390", + "coordonnees_gps": [ + 43.8092959296, + 7.3242451162 + ], + "libelle_d_acheminement": "CONTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3242451162, + 43.8092959296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd39262798c9f98471c31a5653d4b651d32efb0d", + "fields": { + "code_commune_insee": "06052", + "nom_de_la_commune": "CUEBRIS", + "code_postal": "06910", + "coordonnees_gps": [ + 43.8892125828, + 7.00448794285 + ], + "libelle_d_acheminement": "CUEBRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00448794285, + 43.8892125828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe65186304f1d0379b9950154fdff77b05f18c3d", + "fields": { + "code_commune_insee": "06053", + "nom_de_la_commune": "DALUIS", + "code_postal": "06470", + "coordonnees_gps": [ + 44.0387244451, + 6.79997095786 + ], + "libelle_d_acheminement": "DALUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79997095786, + 44.0387244451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5855b7f904895fae957f9a467f7b0dd666e48fe", + "fields": { + "code_commune_insee": "06054", + "nom_de_la_commune": "DRAP", + "code_postal": "06340", + "coordonnees_gps": [ + 43.7582432488, + 7.33724090222 + ], + "libelle_d_acheminement": "DRAP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33724090222, + 43.7582432488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "153e35038ec2111dc97cdc65edc6c3e95db496a2", + "fields": { + "code_commune_insee": "06055", + "nom_de_la_commune": "DURANUS", + "code_postal": "06670", + "coordonnees_gps": [ + 43.8940350601, + 7.28022686159 + ], + "libelle_d_acheminement": "DURANUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28022686159, + 43.8940350601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85af16f9f9d8964cff01c8bdb792c23b911bd58f", + "fields": { + "code_commune_insee": "06057", + "nom_de_la_commune": "L ESCARENE", + "code_postal": "06440", + "coordonnees_gps": [ + 43.8339717674, + 7.36565804143 + ], + "libelle_d_acheminement": "L ESCARENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36565804143, + 43.8339717674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51efa25791bf8ca7476a644d232b2817c0f6f5ad", + "fields": { + "code_commune_insee": "06063", + "nom_de_la_commune": "GARS", + "code_postal": "06850", + "coordonnees_gps": [ + 43.8605226685, + 6.81676294521 + ], + "libelle_d_acheminement": "GARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81676294521, + 43.8605226685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddfc4d05fad0579683468ca8b8d24a661f6533ef", + "fields": { + "ligne_5": "PLASCASSIER", + "code_commune_insee": "06069", + "libelle_d_acheminement": "GRASSE", + "code_postal": "06130", + "nom_de_la_commune": "GRASSE", + "coordonnees_gps": [ + 43.655639428, + 6.93190508233 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93190508233, + 43.655639428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44415fb0ae80010baa6c846235748422315ff23a", + "fields": { + "ligne_5": "MAGAGNOSC", + "code_commune_insee": "06069", + "libelle_d_acheminement": "GRASSE", + "code_postal": "06520", + "nom_de_la_commune": "GRASSE", + "coordonnees_gps": [ + 43.655639428, + 6.93190508233 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93190508233, + 43.655639428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b1ceee55967a8ff82409b57043253498df999a7", + "fields": { + "ligne_5": "PEIRA CAVA", + "code_commune_insee": "06077", + "libelle_d_acheminement": "LUCERAM", + "code_postal": "06440", + "nom_de_la_commune": "LUCERAM", + "coordonnees_gps": [ + 43.9005726905, + 7.35265575307 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35265575307, + 43.9005726905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa2bd312d420d955dff5a1606618cfd30fd884e0", + "fields": { + "code_commune_insee": "06088", + "nom_de_la_commune": "NICE", + "code_postal": "06000", + "coordonnees_gps": [ + 43.7119992661, + 7.23826889465 + ], + "libelle_d_acheminement": "NICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23826889465, + 43.7119992661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec15adc726fcda4e8e37ada9e14e8f9b19d1f91c", + "fields": { + "code_commune_insee": "06088", + "nom_de_la_commune": "NICE", + "code_postal": "06300", + "coordonnees_gps": [ + 43.7119992661, + 7.23826889465 + ], + "libelle_d_acheminement": "NICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23826889465, + 43.7119992661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7d9c82bca0d08d67f73c0af46b084769cf1e1ed", + "fields": { + "code_commune_insee": "06091", + "nom_de_la_commune": "PEILLE", + "code_postal": "06440", + "coordonnees_gps": [ + 43.8064648293, + 7.41111016741 + ], + "libelle_d_acheminement": "PEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41111016741, + 43.8064648293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c278c9c209953207af6387c8c8469018baeae755", + "fields": { + "code_commune_insee": "06093", + "nom_de_la_commune": "LA PENNE", + "code_postal": "06260", + "coordonnees_gps": [ + 43.9246861706, + 6.94222404957 + ], + "libelle_d_acheminement": "LA PENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94222404957, + 43.9246861706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "621d180805eb6bfbd7f7b94e6ad6843149c4890f", + "fields": { + "code_commune_insee": "06094", + "nom_de_la_commune": "PEONE", + "code_postal": "06470", + "coordonnees_gps": [ + 44.1299250439, + 6.92098583862 + ], + "libelle_d_acheminement": "PEONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92098583862, + 44.1299250439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d557dc64c476c34c66b999c8c264dd5ab0a54abc", + "fields": { + "code_commune_insee": "06096", + "nom_de_la_commune": "PIERLAS", + "code_postal": "06260", + "coordonnees_gps": [ + 44.0346760802, + 7.01697586732 + ], + "libelle_d_acheminement": "PIERLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01697586732, + 44.0346760802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f20f5bce5a3c6cc7937ee5b74c79ae46315e1c3e", + "fields": { + "code_commune_insee": "06108", + "nom_de_la_commune": "LA ROQUETTE SUR SIAGNE", + "code_postal": "06550", + "coordonnees_gps": [ + 43.5849092456, + 6.95049794824 + ], + "libelle_d_acheminement": "LA ROQUETTE SUR SIAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95049794824, + 43.5849092456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "978a62a45149c56c7d6ad52c1e3fc18928eae33b", + "fields": { + "code_commune_insee": "06112", + "nom_de_la_commune": "LE ROURET", + "code_postal": "06650", + "coordonnees_gps": [ + 43.6795612779, + 7.00962553615 + ], + "libelle_d_acheminement": "LE ROURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00962553615, + 43.6795612779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b88ffd602d2e6f56f6d7222afba778a30a08329b", + "fields": { + "code_commune_insee": "06137", + "nom_de_la_commune": "SPERACEDES", + "code_postal": "06530", + "coordonnees_gps": [ + 43.6524506812, + 6.85685670407 + ], + "libelle_d_acheminement": "SPERACEDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85685670407, + 43.6524506812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac0a1938dd2f60a922256b1555d611a49211a254", + "fields": { + "code_commune_insee": "06154", + "nom_de_la_commune": "VALDEROURE", + "code_postal": "06750", + "coordonnees_gps": [ + 43.7942044466, + 6.71003568639 + ], + "libelle_d_acheminement": "VALDEROURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71003568639, + 43.7942044466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17af57df3fd8281d0f4475a7ee4f990e2d09b148", + "fields": { + "code_commune_insee": "06158", + "nom_de_la_commune": "VILLARS SUR VAR", + "code_postal": "06710", + "coordonnees_gps": [ + 43.9518663257, + 7.08024521071 + ], + "libelle_d_acheminement": "VILLARS SUR VAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08024521071, + 43.9518663257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5936bd634246069ba12db18295e749fdfe8f93e3", + "fields": { + "code_commune_insee": "06161", + "nom_de_la_commune": "VILLENEUVE LOUBET", + "code_postal": "06270", + "coordonnees_gps": [ + 43.6492560734, + 7.10728434873 + ], + "libelle_d_acheminement": "VILLENEUVE LOUBET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10728434873, + 43.6492560734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77e650f1eac270c9a265d97cf7c8d0b6bdc1a244", + "fields": { + "code_commune_insee": "07007", + "nom_de_la_commune": "ALBOUSSIERE", + "code_postal": "07440", + "coordonnees_gps": [ + 44.9397584607, + 4.73413213329 + ], + "libelle_d_acheminement": "ALBOUSSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73413213329, + 44.9397584607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a32f7ec0c27c282ef1c38f7a65b6b68a3e57e7d9", + "fields": { + "code_commune_insee": "07008", + "nom_de_la_commune": "ALISSAS", + "code_postal": "07210", + "coordonnees_gps": [ + 44.7070337034, + 4.6240636083 + ], + "libelle_d_acheminement": "ALISSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6240636083, + 44.7070337034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2369ef003e8a932f2ab680c535e902c9c9d8b14", + "fields": { + "ligne_5": "ANTRAIGUES SUR VOLANE", + "code_commune_insee": "07011", + "libelle_d_acheminement": "VALLEES D ANTRAIGUES ASPERJOC", + "code_postal": "07530", + "nom_de_la_commune": "VALLEES D ANTRAIGUES ASPERJOC", + "coordonnees_gps": [ + 44.7393183247, + 4.35517589387 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35517589387, + 44.7393183247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc5d4d8961c64470579d70e06ca26e55c396c095", + "fields": { + "ligne_5": "ASPERJOC", + "code_commune_insee": "07011", + "libelle_d_acheminement": "VALLEES D ANTRAIGUES ASPERJOC", + "code_postal": "07600", + "nom_de_la_commune": "VALLEES D ANTRAIGUES ASPERJOC", + "coordonnees_gps": [ + 44.7393183247, + 4.35517589387 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35517589387, + 44.7393183247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d95b8d3ea64356aba717539161ba8e8f6648b9da", + "fields": { + "code_commune_insee": "07018", + "nom_de_la_commune": "ASTET", + "code_postal": "07330", + "coordonnees_gps": [ + 44.6847057844, + 4.02649606307 + ], + "libelle_d_acheminement": "ASTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02649606307, + 44.6847057844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f52d81613b07264b6c2879f17d480bfbc915505d", + "fields": { + "code_commune_insee": "07025", + "nom_de_la_commune": "BARNAS", + "code_postal": "07330", + "coordonnees_gps": [ + 44.6689664287, + 4.15925851766 + ], + "libelle_d_acheminement": "BARNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15925851766, + 44.6689664287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc1dc8d1d7ec53fa9b13f205bbda7841555b8485", + "fields": { + "code_commune_insee": "07026", + "nom_de_la_commune": "LE BEAGE", + "code_postal": "07630", + "coordonnees_gps": [ + 44.8556634675, + 4.13043465741 + ], + "libelle_d_acheminement": "LE BEAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13043465741, + 44.8556634675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1291d227f1a136619f453f4709bd33577e9ad0c", + "fields": { + "code_commune_insee": "07030", + "nom_de_la_commune": "BEAUVENE", + "code_postal": "07190", + "coordonnees_gps": [ + 44.8695132682, + 4.51162362429 + ], + "libelle_d_acheminement": "BEAUVENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51162362429, + 44.8695132682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad759fcf6aecdaa2fdd29e1d5fe2aaea109a531e", + "fields": { + "code_commune_insee": "07031", + "nom_de_la_commune": "BERRIAS ET CASTELJAU", + "code_postal": "07460", + "coordonnees_gps": [ + 44.3832302552, + 4.20749715425 + ], + "libelle_d_acheminement": "BERRIAS ET CASTELJAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20749715425, + 44.3832302552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3100b11ff855b0ea84acdb0f7a5f7dbb686b56e2", + "fields": { + "code_commune_insee": "07034", + "nom_de_la_commune": "BIDON", + "code_postal": "07700", + "coordonnees_gps": [ + 44.3567960749, + 4.54452567772 + ], + "libelle_d_acheminement": "BIDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54452567772, + 44.3567960749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07ed3a39092951908063ac166544f03451238504", + "fields": { + "code_commune_insee": "07035", + "nom_de_la_commune": "BOFFRES", + "code_postal": "07440", + "coordonnees_gps": [ + 44.919020401, + 4.69606511142 + ], + "libelle_d_acheminement": "BOFFRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69606511142, + 44.919020401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c07d6526b9fdc691ee0720e2f262c1f049eea14", + "fields": { + "code_commune_insee": "07038", + "nom_de_la_commune": "BORNE", + "code_postal": "07590", + "coordonnees_gps": [ + 44.6172223655, + 4.04171006026 + ], + "libelle_d_acheminement": "BORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04171006026, + 44.6172223655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93b8582c4a197469fea1ff16d2b55389986f97b3", + "fields": { + "code_commune_insee": "07041", + "nom_de_la_commune": "BOULIEU LES ANNONAY", + "code_postal": "07100", + "coordonnees_gps": [ + 45.2673233399, + 4.64536894386 + ], + "libelle_d_acheminement": "BOULIEU LES ANNONAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64536894386, + 45.2673233399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60045e25ccfbb8dceb1143e5b230ec20378a8887", + "fields": { + "code_commune_insee": "07047", + "nom_de_la_commune": "CELLIER DU LUC", + "code_postal": "07590", + "coordonnees_gps": [ + 44.6734677534, + 3.90176725594 + ], + "libelle_d_acheminement": "CELLIER DU LUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90176725594, + 44.6734677534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76618a607a011be23358b536bc78555b88d438f0", + "fields": { + "code_commune_insee": "07048", + "nom_de_la_commune": "CHALENCON", + "code_postal": "07240", + "coordonnees_gps": [ + 44.8797912682, + 4.55772069308 + ], + "libelle_d_acheminement": "CHALENCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55772069308, + 44.8797912682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc4115e6704b57f93561eb279f82a74832883f07", + "fields": { + "code_commune_insee": "07061", + "nom_de_la_commune": "CHAUZON", + "code_postal": "07120", + "coordonnees_gps": [ + 44.4913888491, + 4.34449609751 + ], + "libelle_d_acheminement": "CHAUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34449609751, + 44.4913888491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9731539d504f1cd1eb7dd9a213cfd7c56567fa54", + "fields": { + "code_commune_insee": "07068", + "nom_de_la_commune": "COLOMBIER LE JEUNE", + "code_postal": "07270", + "coordonnees_gps": [ + 45.0115690732, + 4.71536623274 + ], + "libelle_d_acheminement": "COLOMBIER LE JEUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71536623274, + 45.0115690732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b4d3291190ef2ea0bdc41881d94c8d9c9f28a4f", + "fields": { + "code_commune_insee": "07075", + "nom_de_la_commune": "CROS DE GEORAND", + "code_postal": "07510", + "coordonnees_gps": [ + 44.7994633979, + 4.12786466116 + ], + "libelle_d_acheminement": "CROS DE GEORAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12786466116, + 44.7994633979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1738f774097b71c18a7a12e31e4ce1b989c8d61", + "fields": { + "code_commune_insee": "07095", + "nom_de_la_commune": "GILHOC SUR ORMEZE", + "code_postal": "07270", + "coordonnees_gps": [ + 44.9855282825, + 4.67742067444 + ], + "libelle_d_acheminement": "GILHOC SUR ORMEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67742067444, + 44.9855282825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "660adc2b48d8a7a625ec49673aadfa9e416f01ae", + "fields": { + "code_commune_insee": "07102", + "nom_de_la_commune": "GUILHERAND GRANGES", + "code_postal": "07500", + "coordonnees_gps": [ + 44.9301318307, + 4.86629603942 + ], + "libelle_d_acheminement": "GUILHERAND GRANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86629603942, + 44.9301318307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b1192928e2b315ebfe016904f327e014806854f", + "fields": { + "ligne_5": "ST JULIEN BOUTIERES", + "code_commune_insee": "07103", + "libelle_d_acheminement": "ST JULIEN D INTRES", + "code_postal": "07310", + "nom_de_la_commune": "ST JULIEN D INTRES", + "coordonnees_gps": [ + 44.9864739922, + 4.3441511813 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3441511813, + 44.9864739922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc8b62f27c52beaf62f9a3de7325223150fb3701", + "fields": { + "code_commune_insee": "07118", + "nom_de_la_commune": "LABOULE", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5955201697, + 4.16972538359 + ], + "libelle_d_acheminement": "LABOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16972538359, + 44.5955201697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f52c7ed3f3b59ce36fbabbb720c526ab125e2fbf", + "fields": { + "code_commune_insee": "07127", + "nom_de_la_commune": "LALEVADE D ARDECHE", + "code_postal": "07380", + "coordonnees_gps": [ + 44.6521200865, + 4.31392373316 + ], + "libelle_d_acheminement": "LALEVADE D ARDECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31392373316, + 44.6521200865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbcd611903cc84a816aed1ad847628bf3a64f2c2", + "fields": { + "code_commune_insee": "07128", + "nom_de_la_commune": "LALOUVESC", + "code_postal": "07520", + "coordonnees_gps": [ + 45.1156584818, + 4.52555631475 + ], + "libelle_d_acheminement": "LALOUVESC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52555631475, + 45.1156584818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afafd020880360ead3475d0bda4100006d84b98d", + "fields": { + "code_commune_insee": "07130", + "nom_de_la_commune": "LANARCE", + "code_postal": "07660", + "coordonnees_gps": [ + 44.7292437972, + 3.99688544753 + ], + "libelle_d_acheminement": "LANARCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99688544753, + 44.7292437972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f171b8ee7b379c60da52064147d04e425f3b9dc", + "fields": { + "code_commune_insee": "07132", + "nom_de_la_commune": "LARGENTIERE", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5338484702, + 4.30128054451 + ], + "libelle_d_acheminement": "LARGENTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30128054451, + 44.5338484702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "583f89533f08bcf22b0f623b4026f06c8b263818", + "fields": { + "code_commune_insee": "07149", + "nom_de_la_commune": "MARCOLS LES EAUX", + "code_postal": "07190", + "coordonnees_gps": [ + 44.8058528887, + 4.3890569537 + ], + "libelle_d_acheminement": "MARCOLS LES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3890569537, + 44.8058528887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92a33f0956ec45d2b591f09be76ceb4aecb972e1", + "fields": { + "code_commune_insee": "07152", + "nom_de_la_commune": "MAUVES", + "code_postal": "07300", + "coordonnees_gps": [ + 45.0288028345, + 4.81953244192 + ], + "libelle_d_acheminement": "MAUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81953244192, + 45.0288028345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "919186aff3e7818012c5dfad7a84e6540533cadc", + "fields": { + "code_commune_insee": "07153", + "nom_de_la_commune": "MAYRES", + "code_postal": "07330", + "coordonnees_gps": [ + 44.6646143476, + 4.10092674787 + ], + "libelle_d_acheminement": "MAYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10092674787, + 44.6646143476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef4463658c697f3f80ed2ce2883bd432c2aebfdb", + "fields": { + "code_commune_insee": "07160", + "nom_de_la_commune": "MONESTIER", + "code_postal": "07690", + "coordonnees_gps": [ + 45.199947411, + 4.5047555186 + ], + "libelle_d_acheminement": "MONESTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5047555186, + 45.199947411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b21d01235e1b40ab68520d8877474487baf9b15", + "fields": { + "code_commune_insee": "07170", + "nom_de_la_commune": "PAILHARES", + "code_postal": "07410", + "coordonnees_gps": [ + 45.0796648371, + 4.55727839601 + ], + "libelle_d_acheminement": "PAILHARES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55727839601, + 45.0796648371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26c8f133e3b3ea62cd0b975d8907352a81476966", + "fields": { + "code_commune_insee": "07171", + "nom_de_la_commune": "PAYZAC", + "code_postal": "07230", + "coordonnees_gps": [ + 44.4550131939, + 4.14925400268 + ], + "libelle_d_acheminement": "PAYZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14925400268, + 44.4550131939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7395a086f8eb852c2a5b8f17a4db3ae870ed29e3", + "fields": { + "code_commune_insee": "07172", + "nom_de_la_commune": "PEAUGRES", + "code_postal": "07340", + "coordonnees_gps": [ + 45.2857807098, + 4.72747805706 + ], + "libelle_d_acheminement": "PEAUGRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72747805706, + 45.2857807098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "513600d25628aa8668ff0099d133e948a4b0e73c", + "fields": { + "code_commune_insee": "07178", + "nom_de_la_commune": "PONT DE LABEAUME", + "code_postal": "07380", + "coordonnees_gps": [ + 44.6657587714, + 4.29738768266 + ], + "libelle_d_acheminement": "PONT DE LABEAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29738768266, + 44.6657587714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04b18cb8cac44fe8766e233edbf0a79839629615", + "fields": { + "code_commune_insee": "07181", + "nom_de_la_commune": "LE POUZIN", + "code_postal": "07250", + "coordonnees_gps": [ + 44.751745622, + 4.74858526888 + ], + "libelle_d_acheminement": "LE POUZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74858526888, + 44.751745622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "616d78c7dfa2d260b244e6946c0eb25ff22568f6", + "fields": { + "code_commune_insee": "07186", + "nom_de_la_commune": "PRIVAS", + "code_postal": "07000", + "coordonnees_gps": [ + 44.7225391147, + 4.59449538667 + ], + "libelle_d_acheminement": "PRIVAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59449538667, + 44.7225391147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6af4cbb576a7b08b36b2a66cc0a33180cd6c5818", + "fields": { + "code_commune_insee": "07193", + "nom_de_la_commune": "ROCHER", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5805813909, + 4.2790675943 + ], + "libelle_d_acheminement": "ROCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2790675943, + 44.5805813909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d453a1c576fecdd9fcd6af647d54d54f04254b3d", + "fields": { + "code_commune_insee": "07200", + "nom_de_la_commune": "LE ROUX", + "code_postal": "07560", + "coordonnees_gps": [ + 44.7211157335, + 4.14333586468 + ], + "libelle_d_acheminement": "LE ROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14333586468, + 44.7211157335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "378d841945e2323f887ed2bc438afd8f75a07e0b", + "fields": { + "ligne_5": "LE POUZAT", + "code_commune_insee": "07204", + "libelle_d_acheminement": "ST AGREVE", + "code_postal": "07320", + "nom_de_la_commune": "ST AGREVE", + "coordonnees_gps": [ + 45.0052980637, + 4.41285687419 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41285687419, + 45.0052980637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b715c53068e7bac1a454f77c8eb67cf7b614a1f", + "fields": { + "code_commune_insee": "07207", + "nom_de_la_commune": "ST ALBAN AURIOLLES", + "code_postal": "07120", + "coordonnees_gps": [ + 44.4342653055, + 4.29515757348 + ], + "libelle_d_acheminement": "ST ALBAN AURIOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29515757348, + 44.4342653055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c7603723a0aa79d09fac000c090678a46387dc5", + "fields": { + "code_commune_insee": "07209", + "nom_de_la_commune": "ST ANDEOL DE FOURCHADES", + "code_postal": "07160", + "coordonnees_gps": [ + 44.844995475, + 4.28822767491 + ], + "libelle_d_acheminement": "ST ANDEOL DE FOURCHADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28822767491, + 44.844995475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fec006982fd1c882501c5da4e31adc421810b0de", + "fields": { + "code_commune_insee": "07212", + "nom_de_la_commune": "ST ANDRE EN VIVARAIS", + "code_postal": "07690", + "coordonnees_gps": [ + 45.1164853445, + 4.40960303294 + ], + "libelle_d_acheminement": "ST ANDRE EN VIVARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40960303294, + 45.1164853445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6848fd0d9eef44ae74dd366aa1e0869fed628bd", + "fields": { + "code_commune_insee": "07221", + "nom_de_la_commune": "ST CIERGE LA SERRE", + "code_postal": "07800", + "coordonnees_gps": [ + 44.7935573483, + 4.6802724287 + ], + "libelle_d_acheminement": "ST CIERGE LA SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6802724287, + 44.7935573483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83c0ff806ce5dab49ea7fe9353da4b17fc2976a2", + "fields": { + "code_commune_insee": "07224", + "nom_de_la_commune": "ST CIRGUES EN MONTAGNE", + "code_postal": "07510", + "coordonnees_gps": [ + 44.7681344892, + 4.0890257431 + ], + "libelle_d_acheminement": "ST CIRGUES EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0890257431, + 44.7681344892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9cd9055861edb772020957c71dfba211dc9e518", + "fields": { + "code_commune_insee": "07226", + "nom_de_la_commune": "ST CLEMENT", + "code_postal": "07310", + "coordonnees_gps": [ + 44.9499994905, + 4.26018660775 + ], + "libelle_d_acheminement": "ST CLEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26018660775, + 44.9499994905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ede60c31758526443dc09f662ed3e6d4c84c79e", + "fields": { + "code_commune_insee": "07233", + "nom_de_la_commune": "ST ETIENNE DE SERRE", + "code_postal": "07190", + "coordonnees_gps": [ + 44.8012229727, + 4.52362326693 + ], + "libelle_d_acheminement": "ST ETIENNE DE SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52362326693, + 44.8012229727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "991bac18d71ebe16b06d326b0fe4f46c352d477a", + "fields": { + "code_commune_insee": "07236", + "nom_de_la_commune": "ST FELICIEN", + "code_postal": "07410", + "coordonnees_gps": [ + 45.0768793363, + 4.60975134284 + ], + "libelle_d_acheminement": "ST FELICIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60975134284, + 45.0768793363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76ed849b95696ea5d5825a6217657623e8136088", + "fields": { + "code_commune_insee": "07239", + "nom_de_la_commune": "ST GENEST LACHAMP", + "code_postal": "07160", + "coordonnees_gps": [ + 44.8439891457, + 4.42424753719 + ], + "libelle_d_acheminement": "ST GENEST LACHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42424753719, + 44.8439891457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3456c96e615d05f853518a032f4ea90bf52b0b2d", + "fields": { + "code_commune_insee": "07239", + "nom_de_la_commune": "ST GENEST LACHAMP", + "code_postal": "07190", + "coordonnees_gps": [ + 44.8439891457, + 4.42424753719 + ], + "libelle_d_acheminement": "ST GENEST LACHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42424753719, + 44.8439891457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1088aeee7b4e0020614f902fcc11eb54bdec73f4", + "fields": { + "code_commune_insee": "07240", + "nom_de_la_commune": "ST GEORGES LES BAINS", + "code_postal": "07800", + "coordonnees_gps": [ + 44.8592532012, + 4.8096971497 + ], + "libelle_d_acheminement": "ST GEORGES LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8096971497, + 44.8592532012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a9b5b9c9deb2b5e9ae42e20adb3e08089444be8", + "fields": { + "code_commune_insee": "07245", + "nom_de_la_commune": "ST JEAN DE MUZOLS", + "code_postal": "07300", + "coordonnees_gps": [ + 45.0791512889, + 4.79987361991 + ], + "libelle_d_acheminement": "ST JEAN DE MUZOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79987361991, + 45.0791512889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7af36a87099ccad84c98dc4890132fff5fbdd194", + "fields": { + "code_commune_insee": "07250", + "nom_de_la_commune": "ST JEURE D AY", + "code_postal": "07290", + "coordonnees_gps": [ + 45.1448039852, + 4.71028966691 + ], + "libelle_d_acheminement": "ST JEURE D AY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71028966691, + 45.1448039852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d6be13212ad0d8bba5397545fe1fda48b8d3852", + "fields": { + "code_commune_insee": "07260", + "nom_de_la_commune": "ST LAGER BRESSAC", + "code_postal": "07210", + "coordonnees_gps": [ + 44.6916750931, + 4.71621277437 + ], + "libelle_d_acheminement": "ST LAGER BRESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71621277437, + 44.6916750931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "352a992dd2fd9fd1f9e05e747bd751aa48a152b1", + "fields": { + "code_commune_insee": "07272", + "nom_de_la_commune": "ST MAURICE D ARDECHE", + "code_postal": "07200", + "coordonnees_gps": [ + 44.5189878085, + 4.40483643435 + ], + "libelle_d_acheminement": "ST MAURICE D ARDECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40483643435, + 44.5189878085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aed34f33ff9d2724db61d49ad6338e20cb50d299", + "fields": { + "code_commune_insee": "07282", + "nom_de_la_commune": "ST PIERRE DE COLOMBIER", + "code_postal": "07450", + "coordonnees_gps": [ + 44.7102969449, + 4.26637389652 + ], + "libelle_d_acheminement": "ST PIERRE DE COLOMBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26637389652, + 44.7102969449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a7ccf2aee9c82276bc24f31b2c0d6b5e7a33a22", + "fields": { + "code_commune_insee": "07284", + "nom_de_la_commune": "ST PIERRE ST JEAN", + "code_postal": "07140", + "coordonnees_gps": [ + 44.4825896332, + 4.10164484089 + ], + "libelle_d_acheminement": "ST PIERRE ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10164484089, + 44.4825896332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6de2038e4286e2bf295fead2426651cb0c699cf", + "fields": { + "code_commune_insee": "07291", + "nom_de_la_commune": "ST REMEZE", + "code_postal": "07700", + "coordonnees_gps": [ + 44.3781737875, + 4.49634983061 + ], + "libelle_d_acheminement": "ST REMEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49634983061, + 44.3781737875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02bb23ab937f906d691f0ac2ba0cd273e161852b", + "fields": { + "code_commune_insee": "07292", + "nom_de_la_commune": "ST ROMAIN D AY", + "code_postal": "07290", + "coordonnees_gps": [ + 45.1657034684, + 4.68149456221 + ], + "libelle_d_acheminement": "ST ROMAIN D AY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68149456221, + 45.1657034684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a06b404de56d4d4bb3a0348f93f53f8729105b8b", + "fields": { + "code_commune_insee": "07298", + "nom_de_la_commune": "ST SYMPHORIEN SOUS CHOMERAC", + "code_postal": "07210", + "coordonnees_gps": [ + 44.7285052281, + 4.705839287 + ], + "libelle_d_acheminement": "ST SYMPHORIEN SOUS CHOMERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.705839287, + 44.7285052281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "495d160bc6e47c625241b50729946d83f4c36a94", + "fields": { + "code_commune_insee": "07302", + "nom_de_la_commune": "ST VINCENT DE BARRES", + "code_postal": "07210", + "coordonnees_gps": [ + 44.6573798022, + 4.70779936262 + ], + "libelle_d_acheminement": "ST VINCENT DE BARRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70779936262, + 44.6573798022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e891df74b8907d1902aba04d7b8093737fd65855", + "fields": { + "code_commune_insee": "07304", + "nom_de_la_commune": "SALAVAS", + "code_postal": "07150", + "coordonnees_gps": [ + 44.3884517023, + 4.36713374298 + ], + "libelle_d_acheminement": "SALAVAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36713374298, + 44.3884517023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "338a21694f631ad0e16562bddd4ba487f0e85775", + "fields": { + "code_commune_insee": "07305", + "nom_de_la_commune": "LES SALELLES", + "code_postal": "07140", + "coordonnees_gps": [ + 44.4365281515, + 4.09837976088 + ], + "libelle_d_acheminement": "LES SALELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09837976088, + 44.4365281515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3374e89455ba1bef61a7b9022c4dd839d371f73", + "fields": { + "code_commune_insee": "07306", + "nom_de_la_commune": "SAMPZON", + "code_postal": "07120", + "coordonnees_gps": [ + 44.4123532588, + 4.33204376099 + ], + "libelle_d_acheminement": "SAMPZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33204376099, + 44.4123532588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3086023e4a57cdc80b6808b20754654e26ba995", + "fields": { + "code_commune_insee": "07315", + "nom_de_la_commune": "LA SOUCHE", + "code_postal": "07380", + "coordonnees_gps": [ + 44.6277336502, + 4.16243697678 + ], + "libelle_d_acheminement": "LA SOUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16243697678, + 44.6277336502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7404f3c9a1e46b81512a70d67b0128792905636c", + "fields": { + "code_commune_insee": "07321", + "nom_de_la_commune": "THORRENC", + "code_postal": "07340", + "coordonnees_gps": [ + 45.2336802249, + 4.75948467595 + ], + "libelle_d_acheminement": "THORRENC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75948467595, + 45.2336802249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8b9ae728eb8c7530cc57082c79bba8e1aba24d8", + "fields": { + "code_commune_insee": "07322", + "nom_de_la_commune": "THUEYTS", + "code_postal": "07330", + "coordonnees_gps": [ + 44.6744968668, + 4.21216612879 + ], + "libelle_d_acheminement": "THUEYTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21216612879, + 44.6744968668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f8abca0d5d56ec1ad34137605749a64629939b8", + "fields": { + "code_commune_insee": "07324", + "nom_de_la_commune": "TOURNON SUR RHONE", + "code_postal": "07300", + "coordonnees_gps": [ + 45.0535734386, + 4.81493474284 + ], + "libelle_d_acheminement": "TOURNON SUR RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81493474284, + 45.0535734386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31a57b63a28eedca7159fa4c5538684e815e6f86", + "fields": { + "code_commune_insee": "07331", + "nom_de_la_commune": "VALS LES BAINS", + "code_postal": "07600", + "coordonnees_gps": [ + 44.6671044258, + 4.3432629413 + ], + "libelle_d_acheminement": "VALS LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3432629413, + 44.6671044258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14cff5e5c043489217656556add854086d41efd6", + "fields": { + "code_commune_insee": "07333", + "nom_de_la_commune": "VANOSC", + "code_postal": "07690", + "coordonnees_gps": [ + 45.2240895311, + 4.53452254097 + ], + "libelle_d_acheminement": "VANOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53452254097, + 45.2240895311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5297f9b55a0cff274f990d251aceed608fa09e63", + "fields": { + "code_commune_insee": "07340", + "nom_de_la_commune": "VEYRAS", + "code_postal": "07000", + "coordonnees_gps": [ + 44.735095562, + 4.55638123378 + ], + "libelle_d_acheminement": "VEYRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55638123378, + 44.735095562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b46734d0fea8e7068fc627a4c8cfdfe48ca81e2", + "fields": { + "code_commune_insee": "08005", + "nom_de_la_commune": "ALINCOURT", + "code_postal": "08310", + "coordonnees_gps": [ + 49.4030540812, + 4.34518271318 + ], + "libelle_d_acheminement": "ALINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34518271318, + 49.4030540812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7b9ed2b7167e2b5a375be77e1106582c5cf715a", + "fields": { + "code_commune_insee": "08021", + "nom_de_la_commune": "ARNICOURT", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5539593023, + 4.34161870964 + ], + "libelle_d_acheminement": "ARNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34161870964, + 49.5539593023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd6e00a198e753c3efe625f9e2d934b404bc83d5", + "fields": { + "code_commune_insee": "08026", + "nom_de_la_commune": "AUBIGNY LES POTHEES", + "code_postal": "08150", + "coordonnees_gps": [ + 49.7645065042, + 4.42763979942 + ], + "libelle_d_acheminement": "AUBIGNY LES POTHEES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42763979942, + 49.7645065042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31ded81a524c32b1f7e36f6b78e8b43c26b11ffc", + "fields": { + "code_commune_insee": "08035", + "nom_de_la_commune": "AUTRUCHE", + "code_postal": "08240", + "coordonnees_gps": [ + 49.4541460978, + 4.90568109184 + ], + "libelle_d_acheminement": "AUTRUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90568109184, + 49.4541460978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f95ec125bb5ce99375f5f0bad401165e917fedb", + "fields": { + "ligne_5": "MON IDEE", + "code_commune_insee": "08037", + "libelle_d_acheminement": "AUVILLERS LES FORGES", + "code_postal": "08260", + "nom_de_la_commune": "AUVILLERS LES FORGES", + "coordonnees_gps": [ + 49.8661184339, + 4.36077137657 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36077137657, + 49.8661184339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c226e202e97f7198180e2959bf50e8334136c61", + "fields": { + "code_commune_insee": "08039", + "nom_de_la_commune": "AVAUX", + "code_postal": "08190", + "coordonnees_gps": [ + 49.4659424316, + 4.06887306041 + ], + "libelle_d_acheminement": "AVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06887306041, + 49.4659424316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93105936cf8b0bfd3e3cbd1719c160566fa8104e", + "fields": { + "code_commune_insee": "08043", + "nom_de_la_commune": "BALAN", + "code_postal": "08200", + "coordonnees_gps": [ + 49.6897594511, + 4.96358286973 + ], + "libelle_d_acheminement": "BALAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96358286973, + 49.6897594511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47073b58c1fe207fe4fa6be637c4c8dd1d8de7c3", + "fields": { + "code_commune_insee": "08046", + "nom_de_la_commune": "BANOGNE RECOUVRANCE", + "code_postal": "08220", + "coordonnees_gps": [ + 49.5702609587, + 4.13247064343 + ], + "libelle_d_acheminement": "BANOGNE RECOUVRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13247064343, + 49.5702609587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceae3b332b666c7e79a3283294e390705dbbd573", + "fields": { + "code_commune_insee": "08055", + "nom_de_la_commune": "BEAUMONT EN ARGONNE", + "code_postal": "08210", + "coordonnees_gps": [ + 49.5275973525, + 5.03536973288 + ], + "libelle_d_acheminement": "BEAUMONT EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03536973288, + 49.5275973525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3bc5ba329f80a09440349f4929d6ed0abf0261f", + "fields": { + "ligne_5": "CHATILLON SUR BAR", + "code_commune_insee": "08057", + "libelle_d_acheminement": "BELLEVILLE ET CHATILLON SUR BAR", + "code_postal": "08240", + "nom_de_la_commune": "BELLEVILLE ET CHATILLON SUR BAR", + "coordonnees_gps": [ + 49.4653139409, + 4.8175627334 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8175627334, + 49.4653139409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc978327a4b07b6aa5a9cefc117c8de8f22f3f7a", + "fields": { + "code_commune_insee": "08058", + "nom_de_la_commune": "BELVAL", + "code_postal": "08090", + "coordonnees_gps": [ + 49.7730174963, + 4.63758771996 + ], + "libelle_d_acheminement": "BELVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63758771996, + 49.7730174963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f400a5613996181bace80aee64b2ebefa29cfae1", + "fields": { + "code_commune_insee": "08059", + "nom_de_la_commune": "BELVAL BOIS DES DAMES", + "code_postal": "08240", + "coordonnees_gps": [ + 49.4815181071, + 5.04412784142 + ], + "libelle_d_acheminement": "BELVAL BOIS DES DAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04412784142, + 49.4815181071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc77cef65d8f9d7661fd270ba340474fd663a6d0", + "fields": { + "code_commune_insee": "08063", + "nom_de_la_commune": "LA BESACE", + "code_postal": "08450", + "coordonnees_gps": [ + 49.5535273676, + 4.97012957408 + ], + "libelle_d_acheminement": "LA BESACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97012957408, + 49.5535273676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3727a1c3038d98db1b21ec7ae581296cd60b03c4", + "fields": { + "code_commune_insee": "08080", + "nom_de_la_commune": "BOUVELLEMONT", + "code_postal": "08430", + "coordonnees_gps": [ + 49.583627508, + 4.66481668205 + ], + "libelle_d_acheminement": "BOUVELLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66481668205, + 49.583627508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b2942dc4881cdda3463658dd18fd2c3445cd005", + "fields": { + "code_commune_insee": "08082", + "nom_de_la_commune": "BRECY BRIERES", + "code_postal": "08400", + "coordonnees_gps": [ + 49.3320872015, + 4.75555118868 + ], + "libelle_d_acheminement": "BRECY BRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75555118868, + 49.3320872015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a50c88a69e49dd863cd98a6d66f005711027d05f", + "fields": { + "code_commune_insee": "08084", + "nom_de_la_commune": "BRIENNE SUR AISNE", + "code_postal": "08190", + "coordonnees_gps": [ + 49.4260069494, + 4.06243994616 + ], + "libelle_d_acheminement": "BRIENNE SUR AISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06243994616, + 49.4260069494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "700bf1b5b23d6c45f49f011b2b2aba4b00b52f08", + "fields": { + "code_commune_insee": "08089", + "nom_de_la_commune": "BUZANCY", + "code_postal": "08240", + "coordonnees_gps": [ + 49.418434996, + 4.97363448798 + ], + "libelle_d_acheminement": "BUZANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97363448798, + 49.418434996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43f029a3be1a4d0038ffff2ee60f5bee7bc8f778", + "fields": { + "ligne_5": "SIVRY LES BUZANCY", + "code_commune_insee": "08089", + "libelle_d_acheminement": "BUZANCY", + "code_postal": "08240", + "nom_de_la_commune": "BUZANCY", + "coordonnees_gps": [ + 49.418434996, + 4.97363448798 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97363448798, + 49.418434996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ea1712c400d0bf09e504dd08278796d10325752", + "fields": { + "code_commune_insee": "08101", + "nom_de_la_commune": "LA CHAPELLE", + "code_postal": "08200", + "coordonnees_gps": [ + 49.7607573258, + 5.02411858823 + ], + "libelle_d_acheminement": "LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02411858823, + 49.7607573258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e322448406d299a353b891dcf9e056daaada81c", + "fields": { + "code_commune_insee": "08102", + "nom_de_la_commune": "CHAPPES", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6074225712, + 4.2794051826 + ], + "libelle_d_acheminement": "CHAPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2794051826, + 49.6074225712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab7a9de6ca83f6d3a60670399706118d1b83d00c", + "fields": { + "code_commune_insee": "08109", + "nom_de_la_commune": "CHATEL CHEHERY", + "code_postal": "08250", + "coordonnees_gps": [ + 49.2790366403, + 4.95238223114 + ], + "libelle_d_acheminement": "CHATEL CHEHERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95238223114, + 49.2790366403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45b9dbba7e83fb1e0728877ebcc290b3463448ad", + "fields": { + "ligne_5": "CONNAGE", + "code_commune_insee": "08115", + "libelle_d_acheminement": "CHEMERY CHEHERY", + "code_postal": "08450", + "nom_de_la_commune": "CHEMERY CHEHERY", + "coordonnees_gps": [ + 49.6121866829, + 4.86796266494 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86796266494, + 49.6121866829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b4a7efb78c453d16fedd6f291f02e62882e953c", + "fields": { + "ligne_5": "LE CHESNE", + "code_commune_insee": "08116", + "libelle_d_acheminement": "BAIRON ET SES ENVIRONS", + "code_postal": "08390", + "nom_de_la_commune": "BAIRON ET SES ENVIRONS", + "coordonnees_gps": [ + 49.511753823, + 4.76986600812 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76986600812, + 49.511753823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "306e49286c855fdccce24341451efe1034e27cf5", + "fields": { + "ligne_5": "LOUVERGNY", + "code_commune_insee": "08116", + "libelle_d_acheminement": "BAIRON ET SES ENVIRONS", + "code_postal": "08390", + "nom_de_la_commune": "BAIRON ET SES ENVIRONS", + "coordonnees_gps": [ + 49.511753823, + 4.76986600812 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76986600812, + 49.511753823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f528e37c339fbb22910bba880d17aaeac0bc7684", + "fields": { + "ligne_5": "LES ALLEUX", + "code_commune_insee": "08116", + "libelle_d_acheminement": "BAIRON ET SES ENVIRONS", + "code_postal": "08400", + "nom_de_la_commune": "BAIRON ET SES ENVIRONS", + "coordonnees_gps": [ + 49.511753823, + 4.76986600812 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76986600812, + 49.511753823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb5629219b1ccb7272851f0e658cf2672517aeb5", + "fields": { + "code_commune_insee": "08120", + "nom_de_la_commune": "CHEVIERES", + "code_postal": "08250", + "coordonnees_gps": [ + 49.3232883064, + 4.89352975191 + ], + "libelle_d_acheminement": "CHEVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89352975191, + 49.3232883064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93f51be4cb89589fe5a05cd2a306d8d6de309bd1", + "fields": { + "code_commune_insee": "08128", + "nom_de_la_commune": "CONDE LES AUTRY", + "code_postal": "08250", + "coordonnees_gps": [ + 49.2451972649, + 4.85549543299 + ], + "libelle_d_acheminement": "CONDE LES AUTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85549543299, + 49.2451972649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53479215804336c2ad0ec13caf25088807516ca0", + "fields": { + "code_commune_insee": "08131", + "nom_de_la_commune": "CORNAY", + "code_postal": "08250", + "coordonnees_gps": [ + 49.2986310738, + 4.93353443761 + ], + "libelle_d_acheminement": "CORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93353443761, + 49.2986310738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f52e1a9289cc8796de65959a63e9a113db57da35", + "fields": { + "code_commune_insee": "08136", + "nom_de_la_commune": "DAIGNY", + "code_postal": "08140", + "coordonnees_gps": [ + 49.7049209581, + 5.0012134779 + ], + "libelle_d_acheminement": "DAIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0012134779, + 49.7049209581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4c3bb70d939e61d698efd45bb6abaa05f759a19", + "fields": { + "code_commune_insee": "08138", + "nom_de_la_commune": "LES DEUX VILLES", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6544288446, + 5.23054948304 + ], + "libelle_d_acheminement": "LES DEUX VILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23054948304, + 49.6544288446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e70f3e096b4ff06e0e2e3a0b39f0e0c8b35ada39", + "fields": { + "ligne_5": "PONT A BAR", + "code_commune_insee": "08140", + "libelle_d_acheminement": "DOM LE MESNIL", + "code_postal": "08160", + "nom_de_la_commune": "DOM LE MESNIL", + "coordonnees_gps": [ + 49.6858585977, + 4.80997399118 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80997399118, + 49.6858585977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8bd448343d01f022fc8cc3ae41f191bd92690ee", + "fields": { + "code_commune_insee": "08142", + "nom_de_la_commune": "DONCHERY", + "code_postal": "08350", + "coordonnees_gps": [ + 49.7374565797, + 4.89027824131 + ], + "libelle_d_acheminement": "DONCHERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89027824131, + 49.7374565797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef27b50dbc128e32b2c9b2004636d9ac59c9732f", + "fields": { + "code_commune_insee": "08143", + "nom_de_la_commune": "DOUMELY BEGNY", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6337317142, + 4.30573701489 + ], + "libelle_d_acheminement": "DOUMELY BEGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30573701489, + 49.6337317142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86fb0a83707a832bf7dd0d8bfe3846998bac52da", + "fields": { + "code_commune_insee": "08146", + "nom_de_la_commune": "DRAIZE", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6529770497, + 4.33345611843 + ], + "libelle_d_acheminement": "DRAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33345611843, + 49.6529770497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c00d83bbe12e12e9de947441976ebda58f835d6", + "fields": { + "code_commune_insee": "08150", + "nom_de_la_commune": "ECLY", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5544898631, + 4.28769534327 + ], + "libelle_d_acheminement": "ECLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28769534327, + 49.5544898631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cef814ba8a08908343b7fbdccf3f4580cd402579", + "fields": { + "code_commune_insee": "08155", + "nom_de_la_commune": "ETALLE", + "code_postal": "08260", + "coordonnees_gps": [ + 49.8528034918, + 4.44618670271 + ], + "libelle_d_acheminement": "ETALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44618670271, + 49.8528034918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "009f947ebe72ea150a4308bb335112e5c8b5e68c", + "fields": { + "code_commune_insee": "08158", + "nom_de_la_commune": "ETREPIGNY", + "code_postal": "08160", + "coordonnees_gps": [ + 49.6869749564, + 4.7486340191 + ], + "libelle_d_acheminement": "ETREPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7486340191, + 49.6869749564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90f291f9d37b6ce3ea3d4e6b66dcd5d85664caf1", + "fields": { + "code_commune_insee": "08159", + "nom_de_la_commune": "EUILLY ET LOMBUT", + "code_postal": "08210", + "coordonnees_gps": [ + 49.6288481448, + 5.11368214907 + ], + "libelle_d_acheminement": "EUILLY ET LOMBUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11368214907, + 49.6288481448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83fb3fe41852fa31e3b34915e4bc917b9e6bf73b", + "fields": { + "code_commune_insee": "08160", + "nom_de_la_commune": "EVIGNY", + "code_postal": "08090", + "coordonnees_gps": [ + 49.7271036646, + 4.6755894996 + ], + "libelle_d_acheminement": "EVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6755894996, + 49.7271036646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7401aa31995d387b45c60ba1243ab27284e478c", + "fields": { + "code_commune_insee": "08161", + "nom_de_la_commune": "EXERMONT", + "code_postal": "08250", + "coordonnees_gps": [ + 49.2945448996, + 5.02222022722 + ], + "libelle_d_acheminement": "EXERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02222022722, + 49.2945448996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31bedaf64cec3c72b594c64a5f7717591764c09b", + "fields": { + "code_commune_insee": "08164", + "nom_de_la_commune": "FALAISE", + "code_postal": "08400", + "coordonnees_gps": [ + 49.383860062, + 4.7411656616 + ], + "libelle_d_acheminement": "FALAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7411656616, + 49.383860062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee67ffa24086c6dfbefbd7feb8a538fcaf9e76e4", + "fields": { + "code_commune_insee": "08167", + "nom_de_la_commune": "LA FEREE", + "code_postal": "08290", + "coordonnees_gps": [ + 49.7581958842, + 4.30411303081 + ], + "libelle_d_acheminement": "LA FEREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30411303081, + 49.7581958842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6da1480ba6944559b2cde7dd8ce38ec6e98d238b", + "fields": { + "code_commune_insee": "08169", + "nom_de_la_commune": "FLAIGNES HAVYS", + "code_postal": "08260", + "coordonnees_gps": [ + 49.8189516311, + 4.39912003911 + ], + "libelle_d_acheminement": "FLAIGNES HAVYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39912003911, + 49.8189516311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa9b010eb2c2087b8e88d018ef0a50112b10af05", + "fields": { + "ligne_5": "ELAN", + "code_commune_insee": "08173", + "libelle_d_acheminement": "FLIZE", + "code_postal": "08160", + "nom_de_la_commune": "FLIZE", + "coordonnees_gps": [ + 49.6952977524, + 4.77517346922 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77517346922, + 49.6952977524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f2e7c337bcb6013807ec0f7db9d8d2afb896142", + "fields": { + "code_commune_insee": "08189", + "nom_de_la_commune": "GIRONDELLE", + "code_postal": "08260", + "coordonnees_gps": [ + 49.8523190175, + 4.38644508861 + ], + "libelle_d_acheminement": "GIRONDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38644508861, + 49.8523190175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43d864f9352b3f6d8e90c2dbc1288331d988a008", + "fields": { + "code_commune_insee": "08197", + "nom_de_la_commune": "GRANDHAM", + "code_postal": "08250", + "coordonnees_gps": [ + 49.2909334684, + 4.85500439411 + ], + "libelle_d_acheminement": "GRANDHAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85500439411, + 49.2909334684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "def926c0f22dfd140e3f8daf57b94e4b692ebe10", + "fields": { + "code_commune_insee": "08199", + "nom_de_la_commune": "LA GRANDVILLE", + "code_postal": "08700", + "coordonnees_gps": [ + 49.7864206755, + 4.80382569831 + ], + "libelle_d_acheminement": "LA GRANDVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80382569831, + 49.7864206755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "351228a582a691630f499b58777216821cccf9be", + "fields": { + "code_commune_insee": "08209", + "nom_de_la_commune": "HANNOGNE ST MARTIN", + "code_postal": "08160", + "coordonnees_gps": [ + 49.67277982, + 4.82911892902 + ], + "libelle_d_acheminement": "HANNOGNE ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82911892902, + 49.67277982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb8ee5fa839984a258a5515bfe8250b3fc66bf37", + "fields": { + "code_commune_insee": "08210", + "nom_de_la_commune": "HANNOGNE ST REMY", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6062120313, + 4.14321052174 + ], + "libelle_d_acheminement": "HANNOGNE ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14321052174, + 49.6062120313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cad0ff590f039ac37209b72c55de1e9ab795142", + "fields": { + "code_commune_insee": "08217", + "nom_de_la_commune": "HAULME", + "code_postal": "08800", + "coordonnees_gps": [ + 49.8579040636, + 4.79255790765 + ], + "libelle_d_acheminement": "HAULME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79255790765, + 49.8579040636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e63fd07750c7a1a1d4529d129c025a4e473da6f", + "fields": { + "code_commune_insee": "08239", + "nom_de_la_commune": "JUNIVILLE", + "code_postal": "08310", + "coordonnees_gps": [ + 49.3942990916, + 4.37988598391 + ], + "libelle_d_acheminement": "JUNIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37988598391, + 49.3942990916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c37fcf913aa1ddfdaebf9da599cf5d631649b0d", + "fields": { + "code_commune_insee": "08255", + "nom_de_la_commune": "LINAY", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6161969407, + 5.22890359934 + ], + "libelle_d_acheminement": "LINAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22890359934, + 49.6161969407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8385cea264d4f20c87929bf0045d4d5d648e942b", + "fields": { + "code_commune_insee": "08263", + "nom_de_la_commune": "LUMES", + "code_postal": "08440", + "coordonnees_gps": [ + 49.7351968419, + 4.78694401385 + ], + "libelle_d_acheminement": "LUMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78694401385, + 49.7351968419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc906c2dbab37f066d643eba2e5b508d9bf4c123", + "fields": { + "code_commune_insee": "08264", + "nom_de_la_commune": "MACHAULT", + "code_postal": "08310", + "coordonnees_gps": [ + 49.3529253335, + 4.50744242096 + ], + "libelle_d_acheminement": "MACHAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50744242096, + 49.3529253335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6189933a8b205586a5c9a9d45fd9536215e133b7", + "fields": { + "code_commune_insee": "08269", + "nom_de_la_commune": "MALANDRY", + "code_postal": "08370", + "coordonnees_gps": [ + 49.5756613588, + 5.18088695115 + ], + "libelle_d_acheminement": "MALANDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18088695115, + 49.5756613588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b268c51003297d2af0164c962bbd5c195bad0383", + "fields": { + "code_commune_insee": "08271", + "nom_de_la_commune": "MANRE", + "code_postal": "08400", + "coordonnees_gps": [ + 49.2568173255, + 4.65534541081 + ], + "libelle_d_acheminement": "MANRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65534541081, + 49.2568173255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97451da14dfe6b0d1d690b07d23c1bf1043c62bf", + "fields": { + "code_commune_insee": "08283", + "nom_de_la_commune": "MAZERNY", + "code_postal": "08430", + "coordonnees_gps": [ + 49.610898748, + 4.61820857627 + ], + "libelle_d_acheminement": "MAZERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61820857627, + 49.610898748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ac5ee3469bb34b4410a1f966f958a686b56ff02", + "fields": { + "code_commune_insee": "08287", + "nom_de_la_commune": "MENIL LEPINOIS", + "code_postal": "08310", + "coordonnees_gps": [ + 49.3745768771, + 4.28760480612 + ], + "libelle_d_acheminement": "MENIL LEPINOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28760480612, + 49.3745768771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9067d17441cf05834d57fae884e9ce9d6d72aaa9", + "fields": { + "code_commune_insee": "08289", + "nom_de_la_commune": "MESSINCOURT", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6912180369, + 5.15283901706 + ], + "libelle_d_acheminement": "MESSINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15283901706, + 49.6912180369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa6a9f38014f8e6754c2dc76fe1d0a3b59b447c9", + "fields": { + "code_commune_insee": "08297", + "nom_de_la_commune": "MONTCORNET", + "code_postal": "08090", + "coordonnees_gps": [ + 49.8356951738, + 4.65045194231 + ], + "libelle_d_acheminement": "MONTCORNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65045194231, + 49.8356951738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "008998e29cb71b7d6a6b94646c15b071c246a3c9", + "fields": { + "code_commune_insee": "08300", + "nom_de_la_commune": "LE MONT DIEU", + "code_postal": "08390", + "coordonnees_gps": [ + 49.5494900352, + 4.85937044031 + ], + "libelle_d_acheminement": "LE MONT DIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85937044031, + 49.5494900352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d7946be04d0f9a25e46d5f8bce485c72d0c9ea2", + "fields": { + "ligne_5": "PHADE", + "code_commune_insee": "08302", + "libelle_d_acheminement": "MONTHERME", + "code_postal": "08800", + "nom_de_la_commune": "MONTHERME", + "coordonnees_gps": [ + 49.8995880396, + 4.74792062514 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74792062514, + 49.8995880396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f8495e57b0cdfaac18acb67edd883e1e1b1df27", + "fields": { + "code_commune_insee": "08308", + "nom_de_la_commune": "MONT ST MARTIN", + "code_postal": "08400", + "coordonnees_gps": [ + 49.3314585967, + 4.64133268542 + ], + "libelle_d_acheminement": "MONT ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64133268542, + 49.3314585967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7a7e97573f04602bab35ba5fe8364ab489c2f99", + "fields": { + "code_commune_insee": "08315", + "nom_de_la_commune": "NEUFMAISON", + "code_postal": "08460", + "coordonnees_gps": [ + 49.7574971491, + 4.51243402336 + ], + "libelle_d_acheminement": "NEUFMAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51243402336, + 49.7574971491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9de6c747ce30baa527d52fe0d7c4bd9e5cf95387", + "fields": { + "ligne_5": "BEAULIEU", + "code_commune_insee": "08319", + "libelle_d_acheminement": "NEUVILLE LEZ BEAULIEU", + "code_postal": "08380", + "nom_de_la_commune": "NEUVILLE LEZ BEAULIEU", + "coordonnees_gps": [ + 49.9062756338, + 4.35291936249 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35291936249, + 49.9062756338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70c7a5f1c2cdf2483ac7d1bcf21b208abff6400e", + "fields": { + "ligne_5": "LE CHAMPY", + "code_commune_insee": "08326", + "libelle_d_acheminement": "NOUART", + "code_postal": "08240", + "nom_de_la_commune": "NOUART", + "coordonnees_gps": [ + 49.4505639742, + 5.05484805727 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05484805727, + 49.4505639742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16913d698b09b6f7e4a9bb5ee3b56ce7110cf0a8", + "fields": { + "code_commune_insee": "08328", + "nom_de_la_commune": "NOUZONVILLE", + "code_postal": "08700", + "coordonnees_gps": [ + 49.819774473, + 4.75390800409 + ], + "libelle_d_acheminement": "NOUZONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75390800409, + 49.819774473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f45da6e14edc3f41cf1837b796637998529ab8e4", + "fields": { + "code_commune_insee": "08338", + "nom_de_la_commune": "PAUVRES", + "code_postal": "08310", + "coordonnees_gps": [ + 49.4128321727, + 4.50025321007 + ], + "libelle_d_acheminement": "PAUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50025321007, + 49.4128321727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd63d3b0c9c9258b50769cefb14f115a71f1306f", + "fields": { + "code_commune_insee": "08340", + "nom_de_la_commune": "POILCOURT SYDNEY", + "code_postal": "08190", + "coordonnees_gps": [ + 49.4196830149, + 4.09489893984 + ], + "libelle_d_acheminement": "POILCOURT SYDNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09489893984, + 49.4196830149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67c94b7c052fe6041e38a0231cf0a0daafda6c8b", + "fields": { + "code_commune_insee": "08352", + "nom_de_la_commune": "RAILLICOURT", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6525273198, + 4.59097690404 + ], + "libelle_d_acheminement": "RAILLICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59097690404, + 49.6525273198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7cdddfd14c04ba2871b388545086c1d055e35ae", + "fields": { + "code_commune_insee": "08361", + "nom_de_la_commune": "RENWEZ", + "code_postal": "08150", + "coordonnees_gps": [ + 49.8491275921, + 4.60517090507 + ], + "libelle_d_acheminement": "RENWEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60517090507, + 49.8491275921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58ed32c2b25fd94d76f991c9dc2366f2f72734e1", + "fields": { + "code_commune_insee": "08362", + "nom_de_la_commune": "RETHEL", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5131807048, + 4.3835241644 + ], + "libelle_d_acheminement": "RETHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3835241644, + 49.5131807048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d2decf5adc93652edfffe52af7c28e03e903f7b", + "fields": { + "code_commune_insee": "08363", + "nom_de_la_commune": "REVIN", + "code_postal": "08500", + "coordonnees_gps": [ + 49.9343612918, + 4.69218802167 + ], + "libelle_d_acheminement": "REVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69218802167, + 49.9343612918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffd265961f029dcf96bc547fcc231e8df1831ba0", + "fields": { + "code_commune_insee": "08364", + "nom_de_la_commune": "RILLY SUR AISNE", + "code_postal": "08130", + "coordonnees_gps": [ + 49.4845290428, + 4.63687135237 + ], + "libelle_d_acheminement": "RILLY SUR AISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63687135237, + 49.4845290428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5db10b4879759df759b94cac0e74b5e78ee5e366", + "fields": { + "ligne_5": "HONGREAU", + "code_commune_insee": "08367", + "libelle_d_acheminement": "ROCROI", + "code_postal": "08230", + "nom_de_la_commune": "ROCROI", + "coordonnees_gps": [ + 49.9315002925, + 4.55842430748 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55842430748, + 49.9315002925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e368aeaa1ec11c3a240fa4b5584bc6e98ef8298", + "fields": { + "code_commune_insee": "08376", + "nom_de_la_commune": "SAILLY", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6003253149, + 5.17350598808 + ], + "libelle_d_acheminement": "SAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17350598808, + 49.6003253149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7885beb62f761ed4deb74404bf75e5a8d0321b95", + "fields": { + "code_commune_insee": "08377", + "nom_de_la_commune": "ST AIGNAN", + "code_postal": "08350", + "coordonnees_gps": [ + 49.6549320402, + 4.85224753054 + ], + "libelle_d_acheminement": "ST AIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85224753054, + 49.6549320402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d5d96bb03581a7827413e283189fc1c63612079", + "fields": { + "code_commune_insee": "08379", + "nom_de_la_commune": "ST ETIENNE A ARNES", + "code_postal": "08310", + "coordonnees_gps": [ + 49.3075159297, + 4.51140608204 + ], + "libelle_d_acheminement": "ST ETIENNE A ARNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51140608204, + 49.3075159297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e149209295662837a815e303c35ef6bde6db4003", + "fields": { + "code_commune_insee": "08380", + "nom_de_la_commune": "ST FERGEUX", + "code_postal": "08360", + "coordonnees_gps": [ + 49.5733658942, + 4.20117468938 + ], + "libelle_d_acheminement": "ST FERGEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20117468938, + 49.5733658942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a223f45b1b32984a89255348ce0162e70abc313", + "fields": { + "code_commune_insee": "08398", + "nom_de_la_commune": "STE VAUBOURG", + "code_postal": "08130", + "coordonnees_gps": [ + 49.4597154807, + 4.59237076112 + ], + "libelle_d_acheminement": "STE VAUBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59237076112, + 49.4597154807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ed5fbbc92ec4ab2510417d1da8c159a54259cd4", + "fields": { + "code_commune_insee": "08399", + "nom_de_la_commune": "SAPOGNE SUR MARCHE", + "code_postal": "08370", + "coordonnees_gps": [ + 49.5978665854, + 5.3136409637 + ], + "libelle_d_acheminement": "SAPOGNE SUR MARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3136409637, + 49.5978665854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f2b4c3a5d954ac7c8ca2363aa6d3e8da457d096", + "fields": { + "code_commune_insee": "08410", + "nom_de_la_commune": "SEMIDE", + "code_postal": "08400", + "coordonnees_gps": [ + 49.3291026008, + 4.57642997944 + ], + "libelle_d_acheminement": "SEMIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57642997944, + 49.3291026008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b0806ddf16b96b0e8e0b382a0f93f7c2e82f791", + "fields": { + "code_commune_insee": "08416", + "nom_de_la_commune": "SEUIL", + "code_postal": "08300", + "coordonnees_gps": [ + 49.474185421, + 4.45289966908 + ], + "libelle_d_acheminement": "SEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45289966908, + 49.474185421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d89dea143e1d3b9f9c0e324d5da2d5c54e55c88", + "fields": { + "code_commune_insee": "08420", + "nom_de_la_commune": "SIGNY LE PETIT", + "code_postal": "08380", + "coordonnees_gps": [ + 49.9309499097, + 4.2990463026 + ], + "libelle_d_acheminement": "SIGNY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2990463026, + 49.9309499097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4efd97b41236c0ea2b478c69941d4b643ed1bd9", + "fields": { + "code_commune_insee": "08424", + "nom_de_la_commune": "SOMMAUTHE", + "code_postal": "08240", + "coordonnees_gps": [ + 49.5025511911, + 4.98687284799 + ], + "libelle_d_acheminement": "SOMMAUTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98687284799, + 49.5025511911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "312ce4abcb8a6c9327bddf7239f669c8f084bd59", + "fields": { + "code_commune_insee": "08425", + "nom_de_la_commune": "SOMMERANCE", + "code_postal": "08250", + "coordonnees_gps": [ + 49.3263866648, + 4.99327810692 + ], + "libelle_d_acheminement": "SOMMERANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99327810692, + 49.3263866648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "427917ad91519bb4e02a0b160e773922130c540d", + "fields": { + "code_commune_insee": "08426", + "nom_de_la_commune": "SON", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5802891216, + 4.26717062031 + ], + "libelle_d_acheminement": "SON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26717062031, + 49.5802891216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "481d5fc922d1db2068c8789cc5e1f572c4d2e173", + "fields": { + "code_commune_insee": "08430", + "nom_de_la_commune": "STONNE", + "code_postal": "08390", + "coordonnees_gps": [ + 49.5495309711, + 4.92206804747 + ], + "libelle_d_acheminement": "STONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92206804747, + 49.5495309711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e5a3e8ddf29539c2451f7ed1d1dfd135013d098", + "fields": { + "ligne_5": "REMONVILLE", + "code_commune_insee": "08437", + "libelle_d_acheminement": "TAILLY", + "code_postal": "08240", + "nom_de_la_commune": "TAILLY", + "coordonnees_gps": [ + 49.4074530876, + 5.06834679927 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06834679927, + 49.4074530876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "487571788fe2c88ca337ec76e8c893889c1f6e68", + "fields": { + "code_commune_insee": "08454", + "nom_de_la_commune": "TOULIGNY", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6767256577, + 4.61499383082 + ], + "libelle_d_acheminement": "TOULIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61499383082, + 49.6767256577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff31ff4142479652694dbeb956bb0bede5982d88", + "fields": { + "code_commune_insee": "08456", + "nom_de_la_commune": "TOURNAVAUX", + "code_postal": "08800", + "coordonnees_gps": [ + 49.8728127638, + 4.78394804684 + ], + "libelle_d_acheminement": "TOURNAVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78394804684, + 49.8728127638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64caca19eb6fd02c89630e09a4336a69a7e6533b", + "fields": { + "code_commune_insee": "08459", + "nom_de_la_commune": "TREMBLOIS LES CARIGNAN", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6624363858, + 5.26029307221 + ], + "libelle_d_acheminement": "TREMBLOIS LES CARIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26029307221, + 49.6624363858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf78418d77524bdcfd02712cc9fdc4abb8665f57", + "fields": { + "code_commune_insee": "08460", + "nom_de_la_commune": "TREMBLOIS LES ROCROI", + "code_postal": "08150", + "coordonnees_gps": [ + 49.8448912084, + 4.50057688801 + ], + "libelle_d_acheminement": "TREMBLOIS LES ROCROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50057688801, + 49.8448912084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75486aae851659f03cade4d7b3f6834377332cb2", + "fields": { + "code_commune_insee": "08461", + "nom_de_la_commune": "VANDY", + "code_postal": "08400", + "coordonnees_gps": [ + 49.4408407157, + 4.71763738316 + ], + "libelle_d_acheminement": "VANDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71763738316, + 49.4408407157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e644bc9cd0e85ff3a4e2a12d7ebabd1e729abb9", + "fields": { + "code_commune_insee": "08470", + "nom_de_la_commune": "VERPEL", + "code_postal": "08240", + "coordonnees_gps": [ + 49.3818565442, + 4.92885901444 + ], + "libelle_d_acheminement": "VERPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92885901444, + 49.3818565442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa6b14b40a749b57e88728434d1d62ab745cb2b7", + "fields": { + "ligne_5": "MARGY", + "code_commune_insee": "08472", + "libelle_d_acheminement": "VIEL ST REMY", + "code_postal": "08270", + "nom_de_la_commune": "VIEL ST REMY", + "coordonnees_gps": [ + 49.632572198, + 4.48367438059 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48367438059, + 49.632572198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ef9d864294a6202c9a6a53992d254ad348e7ccf", + "fields": { + "code_commune_insee": "08476", + "nom_de_la_commune": "VILLERS DEVANT LE THOUR", + "code_postal": "08190", + "coordonnees_gps": [ + 49.5043027928, + 4.076652193 + ], + "libelle_d_acheminement": "VILLERS DEVANT LE THOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.076652193, + 49.5043027928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6db959632f79040a7445f50fedf19c9a5d636899", + "fields": { + "code_commune_insee": "08483", + "nom_de_la_commune": "VILLE SUR LUMES", + "code_postal": "08440", + "coordonnees_gps": [ + 49.7557065835, + 4.79606849833 + ], + "libelle_d_acheminement": "VILLE SUR LUMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79606849833, + 49.7557065835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9eaf1930cd877f89a314b08967b0c0eef4c715dc", + "fields": { + "ligne_5": "TERRON SUR AISNE", + "code_commune_insee": "08490", + "libelle_d_acheminement": "VOUZIERS", + "code_postal": "08400", + "nom_de_la_commune": "VOUZIERS", + "coordonnees_gps": [ + 49.4000316087, + 4.70126283768 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70126283768, + 49.4000316087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b794ef44deb11211e9c2020fffaa2e0cd470f1e", + "fields": { + "code_commune_insee": "08497", + "nom_de_la_commune": "WARCQ", + "code_postal": "08000", + "coordonnees_gps": [ + 49.7682874486, + 4.66643502857 + ], + "libelle_d_acheminement": "WARCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66643502857, + 49.7682874486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c5f72c773300890488524e8e9d6b1d4409d4b19", + "fields": { + "code_commune_insee": "09014", + "nom_de_la_commune": "ARGEIN", + "code_postal": "09800", + "coordonnees_gps": [ + 42.924142227, + 0.990874865954 + ], + "libelle_d_acheminement": "ARGEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.990874865954, + 42.924142227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca7049617f3695bd375c68eb25fa239dcfdad77b", + "fields": { + "code_commune_insee": "09020", + "nom_de_la_commune": "ARTIGUES", + "code_postal": "09460", + "coordonnees_gps": [ + 42.6901417235, + 2.03778896431 + ], + "libelle_d_acheminement": "ARTIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03778896431, + 42.6901417235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5aad0915ce04151503a30e68dc425c316697ccd", + "fields": { + "code_commune_insee": "09022", + "nom_de_la_commune": "ARVIGNA", + "code_postal": "09100", + "coordonnees_gps": [ + 43.0592469458, + 1.72868094967 + ], + "libelle_d_acheminement": "ARVIGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72868094967, + 43.0592469458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ab04c91b913db5b0ba0e2a7cbfcbfe8b3a32d98", + "fields": { + "code_commune_insee": "09025", + "nom_de_la_commune": "AUCAZEIN", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9208994328, + 0.966291342849 + ], + "libelle_d_acheminement": "AUCAZEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.966291342849, + 42.9208994328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b552912c68f435490bb5e34bc963b5ed84979fb", + "fields": { + "code_commune_insee": "09030", + "nom_de_la_commune": "AUZAT", + "code_postal": "09220", + "coordonnees_gps": [ + 42.7023538618, + 1.44304412674 + ], + "libelle_d_acheminement": "AUZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44304412674, + 42.7023538618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "785110870edcce97a36de4cc28309e5faa0c1a25", + "fields": { + "code_commune_insee": "09034", + "nom_de_la_commune": "BALACET", + "code_postal": "09800", + "coordonnees_gps": [ + 42.8882588426, + 0.983446901785 + ], + "libelle_d_acheminement": "BALACET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.983446901785, + 42.8882588426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1134b328be3b5aa0704465d0ee911e52ab024c6e", + "fields": { + "code_commune_insee": "09035", + "nom_de_la_commune": "BALAGUERES", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9673311242, + 1.0176138943 + ], + "libelle_d_acheminement": "BALAGUERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0176138943, + 42.9673311242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b56125b8b83dfd0a79baa8f887ad9a0641fbb0d2", + "fields": { + "code_commune_insee": "09044", + "nom_de_la_commune": "BAULOU", + "code_postal": "09000", + "coordonnees_gps": [ + 43.0181651187, + 1.54215154554 + ], + "libelle_d_acheminement": "BAULOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54215154554, + 43.0181651187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41c265418f824d8e86cd1c21c75d084e2f9e47d6", + "fields": { + "code_commune_insee": "09066", + "nom_de_la_commune": "BRASSAC", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9322144767, + 1.51243170827 + ], + "libelle_d_acheminement": "BRASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51243170827, + 42.9322144767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f88c1f2fac3b9f52a2d6afdf2fa1ae96ddd48d2", + "fields": { + "code_commune_insee": "09075", + "nom_de_la_commune": "CAMPAGNE SUR ARIZE", + "code_postal": "09350", + "coordonnees_gps": [ + 43.1197500573, + 1.32148049798 + ], + "libelle_d_acheminement": "CAMPAGNE SUR ARIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32148049798, + 43.1197500573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b3acf1ad7dd2bb1adb3c1fc4d9d04ea8e9cb2b4", + "fields": { + "code_commune_insee": "09088", + "nom_de_la_commune": "CAYCHAX", + "code_postal": "09250", + "coordonnees_gps": [ + 42.8074176311, + 1.72818525568 + ], + "libelle_d_acheminement": "CAYCHAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72818525568, + 42.8074176311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff764054a9e35e7203afac76c17591381ca94bb0", + "fields": { + "code_commune_insee": "09089", + "nom_de_la_commune": "CAZALS DES BAYLES", + "code_postal": "09500", + "coordonnees_gps": [ + 43.0932624655, + 1.93968174187 + ], + "libelle_d_acheminement": "CAZALS DES BAYLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93968174187, + 43.0932624655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dedd07796e4a3adcf8d8632f661b5c26f950a64", + "fields": { + "code_commune_insee": "09094", + "nom_de_la_commune": "CERIZOLS", + "code_postal": "09230", + "coordonnees_gps": [ + 43.1195647903, + 1.06738869925 + ], + "libelle_d_acheminement": "CERIZOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06738869925, + 43.1195647903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24f725b10018fc4b6a8496a5c3efc0ff9e0bdee7", + "fields": { + "ligne_5": "ENGRAVIES", + "code_commune_insee": "09107", + "libelle_d_acheminement": "DUN", + "code_postal": "09600", + "nom_de_la_commune": "DUN", + "coordonnees_gps": [ + 43.0256431764, + 1.79296928754 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79296928754, + 43.0256431764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bda014b27370af38cfcb55fd3b38ba35299b7bff", + "fields": { + "code_commune_insee": "09115", + "nom_de_la_commune": "ESCLAGNE", + "code_postal": "09600", + "coordonnees_gps": [ + 42.9809223416, + 1.8433667162 + ], + "libelle_d_acheminement": "ESCLAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8433667162, + 42.9809223416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90447b5ce02b420f150822d5b6979e6b0bc4bf1e", + "fields": { + "code_commune_insee": "09120", + "nom_de_la_commune": "FABAS", + "code_postal": "09230", + "coordonnees_gps": [ + 43.1194009842, + 1.11405257208 + ], + "libelle_d_acheminement": "FABAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11405257208, + 43.1194009842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b078523c77000d39ebf6336fccc16ea928169af", + "fields": { + "code_commune_insee": "09125", + "nom_de_la_commune": "FOUGAX ET BARRINEUF", + "code_postal": "09300", + "coordonnees_gps": [ + 42.8725013217, + 1.89849774718 + ], + "libelle_d_acheminement": "FOUGAX ET BARRINEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89849774718, + 42.8725013217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c423eb573be04d52bc22d2767a62bdc7fabc33e", + "fields": { + "code_commune_insee": "09129", + "nom_de_la_commune": "GALEY", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9459014431, + 0.901835208774 + ], + "libelle_d_acheminement": "GALEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.901835208774, + 42.9459014431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9c44439e65cc086d00355d93811a379851cb759", + "fields": { + "code_commune_insee": "09140", + "nom_de_la_commune": "IGNAUX", + "code_postal": "09110", + "coordonnees_gps": [ + 42.7427436536, + 1.84606817097 + ], + "libelle_d_acheminement": "IGNAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84606817097, + 42.7427436536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f65dab2070760d003672dda08f25a972e047995d", + "fields": { + "code_commune_insee": "09145", + "nom_de_la_commune": "LES ISSARDS", + "code_postal": "09100", + "coordonnees_gps": [ + 43.0794860719, + 1.73901376752 + ], + "libelle_d_acheminement": "LES ISSARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73901376752, + 43.0794860719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b161f48ca30485f06667ad3d2d1dac18d91b977", + "fields": { + "code_commune_insee": "09147", + "nom_de_la_commune": "LABATUT", + "code_postal": "09700", + "coordonnees_gps": [ + 43.2621796954, + 1.521626119 + ], + "libelle_d_acheminement": "LABATUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.521626119, + 43.2621796954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "994fb1352c475cfee1fbc0b610be9a6a2469de1f", + "fields": { + "code_commune_insee": "09149", + "nom_de_la_commune": "LACOURT", + "code_postal": "09200", + "coordonnees_gps": [ + 42.9330702659, + 1.17065014177 + ], + "libelle_d_acheminement": "LACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17065014177, + 42.9330702659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13c79bd829b3522e2d8de83a5d77c04cc2cabc87", + "fields": { + "code_commune_insee": "09150", + "nom_de_la_commune": "LAGARDE", + "code_postal": "09500", + "coordonnees_gps": [ + 43.0463308145, + 1.93595085091 + ], + "libelle_d_acheminement": "LAGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93595085091, + 43.0463308145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fa68bf40ce0f77a53f15d8142c75c9791ec75c9", + "fields": { + "code_commune_insee": "09155", + "nom_de_la_commune": "LARCAT", + "code_postal": "09310", + "coordonnees_gps": [ + 42.7686691724, + 1.64646916937 + ], + "libelle_d_acheminement": "LARCAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64646916937, + 42.7686691724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adac0ca420fc7dcaa05539b80c908ecf93031e23", + "fields": { + "code_commune_insee": "09156", + "nom_de_la_commune": "LARNAT", + "code_postal": "09310", + "coordonnees_gps": [ + 42.7968380129, + 1.62850019482 + ], + "libelle_d_acheminement": "LARNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62850019482, + 42.7968380129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5663690b94dc73406b6ef96bd609802e9154e0fe", + "fields": { + "code_commune_insee": "09158", + "nom_de_la_commune": "LASSERRE", + "code_postal": "09230", + "coordonnees_gps": [ + 43.0766218333, + 1.16412918224 + ], + "libelle_d_acheminement": "LASSERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16412918224, + 43.0766218333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1342c42ae8ad8540d61363193320b376125a1d45", + "fields": { + "code_commune_insee": "09172", + "nom_de_la_commune": "LOUBAUT", + "code_postal": "09350", + "coordonnees_gps": [ + 43.1881252111, + 1.28310345305 + ], + "libelle_d_acheminement": "LOUBAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28310345305, + 43.1881252111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b279778be6a31e6818f111c47d90498a1a08361", + "fields": { + "code_commune_insee": "09173", + "nom_de_la_commune": "LOUBENS", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0430976217, + 1.5546667982 + ], + "libelle_d_acheminement": "LOUBENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5546667982, + 43.0430976217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37bec45d734769eb81d976422b5abf656e23620c", + "fields": { + "code_commune_insee": "09176", + "nom_de_la_commune": "LUZENAC", + "code_postal": "09250", + "coordonnees_gps": [ + 42.7200086673, + 1.74308334552 + ], + "libelle_d_acheminement": "LUZENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74308334552, + 42.7200086673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc67f65b92248ff80e12a536d4ea797a0c9e1629", + "fields": { + "code_commune_insee": "09177", + "nom_de_la_commune": "MADIERE", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1091748089, + 1.51121426863 + ], + "libelle_d_acheminement": "MADIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51121426863, + 43.1091748089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b8f878324830771fc3bb063579bf0a408f28903", + "fields": { + "code_commune_insee": "09178", + "nom_de_la_commune": "MALEGOUDE", + "code_postal": "09500", + "coordonnees_gps": [ + 43.1120592505, + 1.93343728109 + ], + "libelle_d_acheminement": "MALEGOUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93343728109, + 43.1120592505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efec81b3070ca9ce693ded393262eb3e33727cd0", + "fields": { + "code_commune_insee": "09186", + "nom_de_la_commune": "MERAS", + "code_postal": "09350", + "coordonnees_gps": [ + 43.1823470835, + 1.3078528703 + ], + "libelle_d_acheminement": "MERAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3078528703, + 43.1823470835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fd3ce0cbc5b1bcd4454720dea5855012b5c47c3", + "fields": { + "code_commune_insee": "09192", + "nom_de_la_commune": "MIGLOS", + "code_postal": "09400", + "coordonnees_gps": [ + 42.7798466891, + 1.60572144685 + ], + "libelle_d_acheminement": "MIGLOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60572144685, + 42.7798466891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9301ea07d8e91efde7b452825a18b6b340040199", + "fields": { + "code_commune_insee": "09195", + "nom_de_la_commune": "MONESPLE", + "code_postal": "09130", + "coordonnees_gps": [ + 43.0953255323, + 1.47652178879 + ], + "libelle_d_acheminement": "MONESPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47652178879, + 43.0953255323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "904f552c4c1049628a557eb57a10cc8d75e90635", + "fields": { + "code_commune_insee": "09205", + "nom_de_la_commune": "MONTFA", + "code_postal": "09350", + "coordonnees_gps": [ + 43.1005107546, + 1.28811198649 + ], + "libelle_d_acheminement": "MONTFA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28811198649, + 43.1005107546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88608ac235711949cecf702801b4a8a6b03b3366", + "fields": { + "code_commune_insee": "09207", + "nom_de_la_commune": "MONTGAILLARD", + "code_postal": "09330", + "coordonnees_gps": [ + 42.9377639768, + 1.64370144319 + ], + "libelle_d_acheminement": "MONTGAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64370144319, + 42.9377639768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c71256769aff08554d5e95c0fabb26476d262d84", + "fields": { + "code_commune_insee": "09211", + "nom_de_la_commune": "MONTSEGUR", + "code_postal": "09300", + "coordonnees_gps": [ + 42.8427100582, + 1.82683539568 + ], + "libelle_d_acheminement": "MONTSEGUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82683539568, + 42.8427100582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86aa89dbfaf4c71191fbd9b276e3444f261f6207", + "fields": { + "code_commune_insee": "09213", + "nom_de_la_commune": "MOULIN NEUF", + "code_postal": "09500", + "coordonnees_gps": [ + 43.072355696, + 1.94815938033 + ], + "libelle_d_acheminement": "MOULIN NEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94815938033, + 43.072355696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7deee214a9e119cac87addfa05db2603af9c2f3f", + "fields": { + "code_commune_insee": "09225", + "nom_de_la_commune": "PAMIERS", + "code_postal": "09100", + "coordonnees_gps": [ + 43.1234860673, + 1.61523399037 + ], + "libelle_d_acheminement": "PAMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61523399037, + 43.1234860673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf8ea97408bdfa69cbedb8fce25ef332d48b12f2", + "fields": { + "code_commune_insee": "09226", + "nom_de_la_commune": "PECH", + "code_postal": "09310", + "coordonnees_gps": [ + 42.7627973715, + 1.68798310232 + ], + "libelle_d_acheminement": "PECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68798310232, + 42.7627973715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "308466f3751e602b68cb5a2059ee203fcf52c8c7", + "fields": { + "code_commune_insee": "09227", + "nom_de_la_commune": "PEREILLE", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9291256621, + 1.80848741794 + ], + "libelle_d_acheminement": "PEREILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80848741794, + 42.9291256621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87b50c4d9dca82a7e1bfc26417c40df23d069ce3", + "fields": { + "code_commune_insee": "09237", + "nom_de_la_commune": "LE PUCH", + "code_postal": "09460", + "coordonnees_gps": [ + 42.7207669696, + 2.09926724082 + ], + "libelle_d_acheminement": "LE PUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09926724082, + 42.7207669696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c0298f10179bfe762814548a6a636f3a146917f", + "fields": { + "code_commune_insee": "09241", + "nom_de_la_commune": "RABAT LES TROIS SEIGNEURS", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8457065317, + 1.49314286744 + ], + "libelle_d_acheminement": "RABAT LES TROIS SEIGNEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49314286744, + 42.8457065317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a0cf002013d71e79c4d64a5e825fcd2caf9ad4b", + "fields": { + "code_commune_insee": "09247", + "nom_de_la_commune": "RIVERENERT", + "code_postal": "09200", + "coordonnees_gps": [ + 42.951363295, + 1.26184128734 + ], + "libelle_d_acheminement": "RIVERENERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26184128734, + 42.951363295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f885d4992dba744d36bbff2b19f4616a7c46c5d9", + "fields": { + "code_commune_insee": "09253", + "nom_de_la_commune": "SABARAT", + "code_postal": "09350", + "coordonnees_gps": [ + 43.0975088252, + 1.39998085844 + ], + "libelle_d_acheminement": "SABARAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39998085844, + 43.0975088252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8001972c8c229da2ba527cdf66d74f91b91b22ef", + "fields": { + "code_commune_insee": "09256", + "nom_de_la_commune": "ST BAUZEIL", + "code_postal": "09120", + "coordonnees_gps": [ + 43.082423951, + 1.58105497045 + ], + "libelle_d_acheminement": "ST BAUZEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58105497045, + 43.082423951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "536151b7173597976b49a3beb94acfa0b6f76ce7", + "fields": { + "code_commune_insee": "09265", + "nom_de_la_commune": "ST JEAN DU FALGA", + "code_postal": "09100", + "coordonnees_gps": [ + 43.0862015725, + 1.62439338858 + ], + "libelle_d_acheminement": "ST JEAN DU FALGA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62439338858, + 43.0862015725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "537e68741fd359d137b2fa2aa5ba0efd5b25794e", + "fields": { + "code_commune_insee": "09267", + "nom_de_la_commune": "ST LARY", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9005720195, + 0.868448000614 + ], + "libelle_d_acheminement": "ST LARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.868448000614, + 42.9005720195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40e9cb4256c39b1455afe09c9c46ed7eea2c7001", + "fields": { + "code_commune_insee": "09281", + "nom_de_la_commune": "SAUTEL", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9679030208, + 1.81630442967 + ], + "libelle_d_acheminement": "SAUTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81630442967, + 42.9679030208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d009b7d327d0ee5fbfe2d45aaa3b9ed23b7f0b6e", + "fields": { + "code_commune_insee": "09282", + "nom_de_la_commune": "SAVERDUN", + "code_postal": "09700", + "coordonnees_gps": [ + 43.2265667321, + 1.57373634569 + ], + "libelle_d_acheminement": "SAVERDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57373634569, + 43.2265667321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89e790c7ae712c95cea420ef41074a8863dbf4af", + "fields": { + "code_commune_insee": "09283", + "nom_de_la_commune": "SAVIGNAC LES ORMEAUX", + "code_postal": "09110", + "coordonnees_gps": [ + 42.6824950812, + 1.77944672349 + ], + "libelle_d_acheminement": "SAVIGNAC LES ORMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77944672349, + 42.6824950812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dcc5839bd47e92ba2af3056c474a0e1d93700e6", + "fields": { + "code_commune_insee": "09298", + "nom_de_la_commune": "SORGEAT", + "code_postal": "09110", + "coordonnees_gps": [ + 42.7441981533, + 1.88816623684 + ], + "libelle_d_acheminement": "SORGEAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88816623684, + 42.7441981533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "409f0640193cfadaefc497b1904c3076a670f8c3", + "fields": { + "code_commune_insee": "09304", + "nom_de_la_commune": "SUZAN", + "code_postal": "09240", + "coordonnees_gps": [ + 43.0294117749, + 1.43489468125 + ], + "libelle_d_acheminement": "SUZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43489468125, + 43.0294117749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27cd6c13e70edd31ffa188e289f82e205a0179c4", + "fields": { + "code_commune_insee": "09307", + "nom_de_la_commune": "TAURIGNAN CASTET", + "code_postal": "09160", + "coordonnees_gps": [ + 43.0599556813, + 1.10196353645 + ], + "libelle_d_acheminement": "TAURIGNAN CASTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10196353645, + 43.0599556813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d2a83d1cf3dd26606a1851509ae7b3d577895ad", + "fields": { + "code_commune_insee": "09314", + "nom_de_la_commune": "TOURTROL", + "code_postal": "09500", + "coordonnees_gps": [ + 43.0689607654, + 1.79942821361 + ], + "libelle_d_acheminement": "TOURTROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79942821361, + 43.0689607654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d3a6430c4956269d2c4a2997d1da1a512721bac", + "fields": { + "code_commune_insee": "09323", + "nom_de_la_commune": "VALS", + "code_postal": "09500", + "coordonnees_gps": [ + 43.1015841649, + 1.75587607399 + ], + "libelle_d_acheminement": "VALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75587607399, + 43.1015841649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2bf9b598237ae66e6f6ee73c1cd7e93e3ca6d09", + "fields": { + "code_commune_insee": "09331", + "nom_de_la_commune": "LE VERNET", + "code_postal": "09700", + "coordonnees_gps": [ + 43.1871732316, + 1.60423543704 + ], + "libelle_d_acheminement": "LE VERNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60423543704, + 43.1871732316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27727d23059d066e3075d20bd91e2431a22efa5e", + "fields": { + "code_commune_insee": "09338", + "nom_de_la_commune": "VILLENEUVE DU LATOU", + "code_postal": "09130", + "coordonnees_gps": [ + 43.2032906079, + 1.43351747814 + ], + "libelle_d_acheminement": "VILLENEUVE DU LATOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43351747814, + 43.2032906079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11c723ac8528a26a06d42c1137779f04ce16ee89", + "fields": { + "code_commune_insee": "10005", + "nom_de_la_commune": "AMANCE", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2918540736, + 4.4870489216 + ], + "libelle_d_acheminement": "AMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4870489216, + 48.2918540736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6a879dee2635c416a9440ed32d32ecb94c9cf61", + "fields": { + "code_commune_insee": "10013", + "nom_de_la_commune": "ASSENAY", + "code_postal": "10320", + "coordonnees_gps": [ + 48.178622926, + 4.06510904999 + ], + "libelle_d_acheminement": "ASSENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06510904999, + 48.178622926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd7db52f8c826d776d43dee42b1f2936477211a5", + "fields": { + "code_commune_insee": "10015", + "nom_de_la_commune": "AUBETERRE", + "code_postal": "10150", + "coordonnees_gps": [ + 48.4223977311, + 4.10677615502 + ], + "libelle_d_acheminement": "AUBETERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10677615502, + 48.4223977311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74db54ce72cc6ff41bbcdd2e3bb55bfa87100a42", + "fields": { + "code_commune_insee": "10025", + "nom_de_la_commune": "BAGNEUX LA FOSSE", + "code_postal": "10340", + "coordonnees_gps": [ + 47.9987642556, + 4.291107685 + ], + "libelle_d_acheminement": "BAGNEUX LA FOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.291107685, + 47.9987642556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26c74d6a332174dd6a1b57036bce49230e3541c3", + "fields": { + "code_commune_insee": "10034", + "nom_de_la_commune": "BAR SUR SEINE", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1127221863, + 4.37880982139 + ], + "libelle_d_acheminement": "BAR SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37880982139, + 48.1127221863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f894cc7ed4c73b855b40f77e146842c5c4613c2", + "fields": { + "code_commune_insee": "10038", + "nom_de_la_commune": "BERCENAY LE HAYER", + "code_postal": "10290", + "coordonnees_gps": [ + 48.3318095412, + 3.58999948378 + ], + "libelle_d_acheminement": "BERCENAY LE HAYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58999948378, + 48.3318095412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7bfba4e565a2e336b7544b30d135883de1888b9", + "fields": { + "code_commune_insee": "10039", + "nom_de_la_commune": "BERGERES", + "code_postal": "10200", + "coordonnees_gps": [ + 48.1844237719, + 4.66943083986 + ], + "libelle_d_acheminement": "BERGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66943083986, + 48.1844237719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc91307c03eb54e5bf006f9f7764bfcd4f8e4328", + "fields": { + "code_commune_insee": "10046", + "nom_de_la_commune": "BLAINCOURT SUR AUBE", + "code_postal": "10500", + "coordonnees_gps": [ + 48.3814393214, + 4.45229884656 + ], + "libelle_d_acheminement": "BLAINCOURT SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45229884656, + 48.3814393214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f62f3cc4ffb806be33cb7e7cb5c384f89c047c9", + "fields": { + "code_commune_insee": "10048", + "nom_de_la_commune": "BLIGNY", + "code_postal": "10200", + "coordonnees_gps": [ + 48.1737009624, + 4.6045187109 + ], + "libelle_d_acheminement": "BLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6045187109, + 48.1737009624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9ffe9b92e747373b33f4e0327501a0b0693b02a", + "fields": { + "code_commune_insee": "10051", + "nom_de_la_commune": "BOUILLY", + "code_postal": "10320", + "coordonnees_gps": [ + 48.1864006342, + 3.99123563409 + ], + "libelle_d_acheminement": "BOUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99123563409, + 48.1864006342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "654f7596ba182712d088fabaf741b04b29b8ab9a", + "fields": { + "code_commune_insee": "10058", + "nom_de_la_commune": "BRAGELOGNE BEAUVOIR", + "code_postal": "10340", + "coordonnees_gps": [ + 47.9698706523, + 4.26657498666 + ], + "libelle_d_acheminement": "BRAGELOGNE BEAUVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26657498666, + 47.9698706523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "674cbb0ccf58f3b0c048ebcaa86f7fbb249bb391", + "fields": { + "code_commune_insee": "10061", + "nom_de_la_commune": "BREVONNES", + "code_postal": "10220", + "coordonnees_gps": [ + 48.3493701075, + 4.40891289591 + ], + "libelle_d_acheminement": "BREVONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40891289591, + 48.3493701075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "368339862aeb9f15f7fcc3b839624c9166245ed7", + "fields": { + "code_commune_insee": "01001", + "nom_de_la_commune": "L ABERGEMENT CLEMENCIAT", + "code_postal": "01400", + "coordonnees_gps": [ + 46.1534255214, + 4.92611354223 + ], + "libelle_d_acheminement": "L ABERGEMENT CLEMENCIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92611354223, + 46.1534255214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f586f77f7cb3f9e585fa1848f24aef265d7be628", + "fields": { + "code_commune_insee": "10062", + "nom_de_la_commune": "BRIEL SUR BARSE", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2131293074, + 4.35408912876 + ], + "libelle_d_acheminement": "BRIEL SUR BARSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35408912876, + 48.2131293074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74989e5f2ffcb96b7eaf1b90ef45a514c5afb904", + "fields": { + "code_commune_insee": "01002", + "nom_de_la_commune": "L ABERGEMENT DE VAREY", + "code_postal": "01640", + "coordonnees_gps": [ + 46.0091878776, + 5.42801696363 + ], + "libelle_d_acheminement": "L ABERGEMENT DE VAREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42801696363, + 46.0091878776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cb2ae854d3b75a300888af7d451db13ea92ba66", + "fields": { + "code_commune_insee": "10068", + "nom_de_la_commune": "BUXEUIL", + "code_postal": "10110", + "coordonnees_gps": [ + 48.0540843697, + 4.40552369519 + ], + "libelle_d_acheminement": "BUXEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40552369519, + 48.0540843697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3f6e45e18098e385d7aea3867e25f9e0ff10dd7", + "fields": { + "code_commune_insee": "01005", + "nom_de_la_commune": "AMBERIEUX EN DOMBES", + "code_postal": "01330", + "coordonnees_gps": [ + 45.9961799872, + 4.91227250796 + ], + "libelle_d_acheminement": "AMBERIEUX EN DOMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91227250796, + 45.9961799872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85a24f9bf7320ffb4e516ff0b0562c5ca8945157", + "fields": { + "code_commune_insee": "10073", + "nom_de_la_commune": "CHALETTE SUR VOIRE", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4518666815, + 4.42460080275 + ], + "libelle_d_acheminement": "CHALETTE SUR VOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42460080275, + 48.4518666815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4a654ae6d5796e770d1d9b2add527b1e565b15b", + "fields": { + "code_commune_insee": "01010", + "nom_de_la_commune": "ANGLEFORT", + "code_postal": "01350", + "coordonnees_gps": [ + 45.9093715116, + 5.79516005674 + ], + "libelle_d_acheminement": "ANGLEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79516005674, + 45.9093715116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eec1b5c208a221773715550bd9a90d81b81b14c6", + "fields": { + "code_commune_insee": "10114", + "nom_de_la_commune": "CRANCEY", + "code_postal": "10100", + "coordonnees_gps": [ + 48.5188432879, + 3.63661201802 + ], + "libelle_d_acheminement": "CRANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63661201802, + 48.5188432879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e13be37f554c09bc1ebd5878290069ccede1ed61", + "fields": { + "code_commune_insee": "01013", + "nom_de_la_commune": "ARANDAS", + "code_postal": "01230", + "coordonnees_gps": [ + 45.8908155275, + 5.49870439091 + ], + "libelle_d_acheminement": "ARANDAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49870439091, + 45.8908155275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c746dd5eef3bc086693ff8bdd2d080843b5e40d", + "fields": { + "ligne_5": "ARGENTOLLES", + "code_commune_insee": "10115", + "libelle_d_acheminement": "CRENEY PRES TROYES", + "code_postal": "10150", + "nom_de_la_commune": "CRENEY PRES TROYES", + "coordonnees_gps": [ + 48.342847974, + 4.13898615195 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13898615195, + 48.342847974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ec59e945ba4b113f3dd29c48adbb27d2f9c4f9f", + "fields": { + "code_commune_insee": "01024", + "nom_de_la_commune": "ATTIGNAT", + "code_postal": "01340", + "coordonnees_gps": [ + 46.2861802203, + 5.1795233845 + ], + "libelle_d_acheminement": "ATTIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1795233845, + 46.2861802203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb23535ebf7d3399fbdfd2430f8381e60543aecd", + "fields": { + "code_commune_insee": "10118", + "nom_de_la_commune": "LES CROUTES", + "code_postal": "10130", + "coordonnees_gps": [ + 47.9934515972, + 3.86370610292 + ], + "libelle_d_acheminement": "LES CROUTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86370610292, + 47.9934515972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78466bada51ee801a07c069f2a5cf3fe91865b6e", + "fields": { + "ligne_5": "BAGE LA VILLE", + "code_commune_insee": "01025", + "libelle_d_acheminement": "BAGE DOMMARTIN", + "code_postal": "01380", + "nom_de_la_commune": "BAGE DOMMARTIN", + "coordonnees_gps": [ + 46.3233203302, + 4.9528678933 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9528678933, + 46.3233203302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f8b44212a672a5f900630eebf0e8d14ea141f93", + "fields": { + "code_commune_insee": "10126", + "nom_de_la_commune": "DOLANCOURT", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2661527498, + 4.60812858632 + ], + "libelle_d_acheminement": "DOLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60812858632, + 48.2661527498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d5c104a10fa635c263b8562371ff3dd83d71c52", + "fields": { + "ligne_5": "DOMMARTIN", + "code_commune_insee": "01025", + "libelle_d_acheminement": "BAGE DOMMARTIN", + "code_postal": "01380", + "nom_de_la_commune": "BAGE DOMMARTIN", + "coordonnees_gps": [ + 46.3233203302, + 4.9528678933 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9528678933, + 46.3233203302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee776c226a5bc16066da93544503c32046df76d2", + "fields": { + "code_commune_insee": "10129", + "nom_de_la_commune": "DOSCHES", + "code_postal": "10220", + "coordonnees_gps": [ + 48.3146008777, + 4.26804909725 + ], + "libelle_d_acheminement": "DOSCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26804909725, + 48.3146008777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66accd574947032ea76790bd98e03636bd7f9581", + "fields": { + "code_commune_insee": "01030", + "nom_de_la_commune": "BEAUREGARD", + "code_postal": "01480", + "coordonnees_gps": [ + 46.0008580204, + 4.75600664694 + ], + "libelle_d_acheminement": "BEAUREGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75600664694, + 46.0008580204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cceb1dd370954323cb5e9110ba33ba88088c5ba2", + "fields": { + "code_commune_insee": "10139", + "nom_de_la_commune": "EPOTHEMONT", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4152756334, + 4.66162028772 + ], + "libelle_d_acheminement": "EPOTHEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66162028772, + 48.4152756334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "857aa3a8ab80297c8169938779579fcbbbbdfbd2", + "fields": { + "ligne_5": "CAMP DE LA VALBONNE", + "code_commune_insee": "01032", + "libelle_d_acheminement": "BELIGNEUX", + "code_postal": "01360", + "nom_de_la_commune": "BELIGNEUX", + "coordonnees_gps": [ + 45.8591464826, + 5.13989505865 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13989505865, + 45.8591464826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d00491999ffa091519bc4c1afcf1b70ef83b1fdf", + "fields": { + "code_commune_insee": "10141", + "nom_de_la_commune": "ESSOYES", + "code_postal": "10360", + "coordonnees_gps": [ + 48.0494900211, + 4.53941791707 + ], + "libelle_d_acheminement": "ESSOYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53941791707, + 48.0494900211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c922121ca2a290d92cf080de54afe5e0457c9237", + "fields": { + "ligne_5": "CHANES", + "code_commune_insee": "01032", + "libelle_d_acheminement": "BELIGNEUX", + "code_postal": "01360", + "nom_de_la_commune": "BELIGNEUX", + "coordonnees_gps": [ + 45.8591464826, + 5.13989505865 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13989505865, + 45.8591464826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e552b53ea469455da3d2ccf0c17a1521dffef49a", + "fields": { + "code_commune_insee": "10142", + "nom_de_la_commune": "ESTISSAC", + "code_postal": "10190", + "coordonnees_gps": [ + 48.2557294277, + 3.81076673969 + ], + "libelle_d_acheminement": "ESTISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81076673969, + 48.2557294277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86ffc89ec68f1cafa71abc2a60194512c501a041", + "fields": { + "ligne_5": "LA VALBONNE", + "code_commune_insee": "01032", + "libelle_d_acheminement": "BELIGNEUX", + "code_postal": "01360", + "nom_de_la_commune": "BELIGNEUX", + "coordonnees_gps": [ + 45.8591464826, + 5.13989505865 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13989505865, + 45.8591464826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffc39e559ffd2e6862a015202fc4671b709fcc84", + "fields": { + "code_commune_insee": "10149", + "nom_de_la_commune": "FEUGES", + "code_postal": "10150", + "coordonnees_gps": [ + 48.396564153, + 4.1086742347 + ], + "libelle_d_acheminement": "FEUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1086742347, + 48.396564153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "874b21801cedc994c0e840e494fbc07cdf5f1d0c", + "fields": { + "ligne_5": "LANCRANS", + "code_commune_insee": "01033", + "libelle_d_acheminement": "VALSERHONE", + "code_postal": "01200", + "nom_de_la_commune": "VALSERHONE", + "coordonnees_gps": [ + 46.1067901755, + 5.83202736464 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83202736464, + 46.1067901755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a29fe2d0d684d507f37cd1ef005ebaedfeab44f2", + "fields": { + "code_commune_insee": "10165", + "nom_de_la_commune": "GERAUDOT", + "code_postal": "10220", + "coordonnees_gps": [ + 48.3065900914, + 4.32289147943 + ], + "libelle_d_acheminement": "GERAUDOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32289147943, + 48.3065900914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a71dcffa155b02be71a843a38d85ae562d57f468", + "fields": { + "code_commune_insee": "01038", + "nom_de_la_commune": "BENY", + "code_postal": "01370", + "coordonnees_gps": [ + 46.3188629218, + 5.28253433405 + ], + "libelle_d_acheminement": "BENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28253433405, + 46.3188629218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d2549ed6115b4480a62ab151ad84700701afec0", + "fields": { + "code_commune_insee": "10171", + "nom_de_la_commune": "HAMPIGNY", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4605262856, + 4.60136674938 + ], + "libelle_d_acheminement": "HAMPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60136674938, + 48.4605262856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32695f59944a244ce24deb9c3029e631fff4b5ea", + "fields": { + "code_commune_insee": "01040", + "nom_de_la_commune": "BEREZIAT", + "code_postal": "01340", + "coordonnees_gps": [ + 46.3674371012, + 5.04021655965 + ], + "libelle_d_acheminement": "BEREZIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04021655965, + 46.3674371012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "928ad4974119f818fc08bf85ecb50e7df6cc8087", + "fields": { + "code_commune_insee": "10180", + "nom_de_la_commune": "JONCREUIL", + "code_postal": "10330", + "coordonnees_gps": [ + 48.5270359202, + 4.62391326662 + ], + "libelle_d_acheminement": "JONCREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62391326662, + 48.5270359202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3daf3d50ba64f3c753009b373e6d1124d29d5909", + "fields": { + "code_commune_insee": "01041", + "nom_de_la_commune": "BETTANT", + "code_postal": "01500", + "coordonnees_gps": [ + 45.9368718303, + 5.36667617009 + ], + "libelle_d_acheminement": "BETTANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36667617009, + 45.9368718303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3d421155527e92adac9c704caa5862c49503f3b", + "fields": { + "code_commune_insee": "10183", + "nom_de_la_commune": "JUVANZE", + "code_postal": "10140", + "coordonnees_gps": [ + 48.3237109111, + 4.58905857262 + ], + "libelle_d_acheminement": "JUVANZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58905857262, + 48.3237109111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3169c6e2a43f07b781420ea59bc09d9a4b85b7a", + "fields": { + "code_commune_insee": "01042", + "nom_de_la_commune": "BEY", + "code_postal": "01290", + "coordonnees_gps": [ + 46.2191748844, + 4.84642690241 + ], + "libelle_d_acheminement": "BEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84642690241, + 46.2191748844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b9b1f20fdbdbfe0e3369955a9631237f63257bd", + "fields": { + "code_commune_insee": "10189", + "nom_de_la_commune": "LASSICOURT", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4357415556, + 4.50042412067 + ], + "libelle_d_acheminement": "LASSICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50042412067, + 48.4357415556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87bc2a17b85c0aa186adcbc7c53c75829576a7ba", + "fields": { + "code_commune_insee": "01056", + "nom_de_la_commune": "BOYEUX ST JEROME", + "code_postal": "01640", + "coordonnees_gps": [ + 46.0363677631, + 5.46322744717 + ], + "libelle_d_acheminement": "BOYEUX ST JEROME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46322744717, + 46.0363677631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "506de753ae6242e294ed49fcfed7c71be911a6d5", + "fields": { + "code_commune_insee": "10195", + "nom_de_la_commune": "LHUITRE", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5811831935, + 4.27395119742 + ], + "libelle_d_acheminement": "LHUITRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27395119742, + 48.5811831935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "634098ef496434a61411f715d00fe0830ccfc670", + "fields": { + "code_commune_insee": "01060", + "nom_de_la_commune": "BRENOD", + "code_postal": "01110", + "coordonnees_gps": [ + 46.0759940484, + 5.61418361314 + ], + "libelle_d_acheminement": "BRENOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61418361314, + 46.0759940484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29dcd85929b94b634b479100ec10f53375a9a67e", + "fields": { + "code_commune_insee": "10198", + "nom_de_la_commune": "LIREY", + "code_postal": "10320", + "coordonnees_gps": [ + 48.1605014296, + 4.03885762812 + ], + "libelle_d_acheminement": "LIREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03885762812, + 48.1605014296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7e3a532b1836bff54371f60492e6c52047ecf97", + "fields": { + "code_commune_insee": "01061", + "nom_de_la_commune": "BRENS", + "code_postal": "01300", + "coordonnees_gps": [ + 45.7135069062, + 5.68998154517 + ], + "libelle_d_acheminement": "BRENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68998154517, + 45.7135069062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3ab89825ad90c587e3cf745f98c3fcb9e8a62cb", + "fields": { + "code_commune_insee": "10200", + "nom_de_la_commune": "LA LOGE AUX CHEVRES", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2694215855, + 4.40750585645 + ], + "libelle_d_acheminement": "LA LOGE AUX CHEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40750585645, + 48.2694215855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e07091f69e310682dccacaed5912649cdcfcec1", + "fields": { + "code_commune_insee": "01075", + "nom_de_la_commune": "CHALEINS", + "code_postal": "01480", + "coordonnees_gps": [ + 46.0340545373, + 4.79853838574 + ], + "libelle_d_acheminement": "CHALEINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79853838574, + 46.0340545373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "180cb932837020151d7fd94af9fcee0a04acfa20", + "fields": { + "code_commune_insee": "10207", + "nom_de_la_commune": "LONGUEVILLE SUR AUBE", + "code_postal": "10170", + "coordonnees_gps": [ + 48.5509934474, + 3.91289272795 + ], + "libelle_d_acheminement": "LONGUEVILLE SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91289272795, + 48.5509934474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d85b63c2a422f849bfb28b3b958efdac4ace8fd9", + "fields": { + "code_commune_insee": "01081", + "nom_de_la_commune": "CHAMPFROMIER", + "code_postal": "01410", + "coordonnees_gps": [ + 46.220365768, + 5.82233573131 + ], + "libelle_d_acheminement": "CHAMPFROMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82233573131, + 46.220365768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe2e7a130ee8c8a14c03071d3a75f07a8e76e63a", + "fields": { + "code_commune_insee": "10217", + "nom_de_la_commune": "MAISON DES CHAMPS", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2437981025, + 4.57090591016 + ], + "libelle_d_acheminement": "MAISON DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57090591016, + 48.2437981025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e09379768fdbf19ccb4d25be51b7dc7f28301f29", + "fields": { + "code_commune_insee": "01092", + "nom_de_la_commune": "CHATILLON LA PALUD", + "code_postal": "01320", + "coordonnees_gps": [ + 45.9748017433, + 5.2416027725 + ], + "libelle_d_acheminement": "CHATILLON LA PALUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2416027725, + 45.9748017433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1b20c6c254dd3de38bfe7a746998deec18ed975", + "fields": { + "code_commune_insee": "10219", + "nom_de_la_commune": "MAISONS LES SOULAINES", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2950290982, + 4.78298618577 + ], + "libelle_d_acheminement": "MAISONS LES SOULAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78298618577, + 48.2950290982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8db23815d5107eedd158496f998da7a3ebbacfcc", + "fields": { + "code_commune_insee": "01096", + "nom_de_la_commune": "CHAVEYRIAT", + "code_postal": "01660", + "coordonnees_gps": [ + 46.1991513767, + 5.0564069258 + ], + "libelle_d_acheminement": "CHAVEYRIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0564069258, + 46.1991513767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4af59b530caf4c0cca6ccea00742cd8ce08e638", + "fields": { + "code_commune_insee": "10221", + "nom_de_la_commune": "MAIZIERES LES BRIENNE", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4303148659, + 4.6007889307 + ], + "libelle_d_acheminement": "MAIZIERES LES BRIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6007889307, + 48.4303148659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9a896d934fd659d358bc5d6fff3e3ce9b8929b6", + "fields": { + "code_commune_insee": "01103", + "nom_de_la_commune": "CHEVRY", + "code_postal": "01170", + "coordonnees_gps": [ + 46.283152935, + 6.04707941462 + ], + "libelle_d_acheminement": "CHEVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04707941462, + 46.283152935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbfa3f7a698659c2df66e6c3188183fa88b8b8e5", + "fields": { + "code_commune_insee": "10233", + "nom_de_la_commune": "MERY SUR SEINE", + "code_postal": "10170", + "coordonnees_gps": [ + 48.5090415373, + 3.89883069261 + ], + "libelle_d_acheminement": "MERY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89883069261, + 48.5090415373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a3087a0d89550160858ff75bce3a8a563ac3997", + "fields": { + "code_commune_insee": "01116", + "nom_de_la_commune": "CONTREVOZ", + "code_postal": "01300", + "coordonnees_gps": [ + 45.8009403071, + 5.62087768159 + ], + "libelle_d_acheminement": "CONTREVOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62087768159, + 45.8009403071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dca8f41eb4cf17c7a890e85b1a8d27ab0ef093b", + "fields": { + "code_commune_insee": "10237", + "nom_de_la_commune": "MESNIL ST LOUP", + "code_postal": "10190", + "coordonnees_gps": [ + 48.3083238587, + 3.77156922851 + ], + "libelle_d_acheminement": "MESNIL ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77156922851, + 48.3083238587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5eedc56aa4b35209851e48e7cc488795627662d", + "fields": { + "code_commune_insee": "01123", + "nom_de_la_commune": "CORMORANCHE SUR SAONE", + "code_postal": "01290", + "coordonnees_gps": [ + 46.2403530179, + 4.8276569593 + ], + "libelle_d_acheminement": "CORMORANCHE SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8276569593, + 46.2403530179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "602d01e4579b46c4ec22417d1618be37d9e48b9d", + "fields": { + "code_commune_insee": "10241", + "nom_de_la_commune": "METZ ROBERT", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0694714886, + 4.09978778841 + ], + "libelle_d_acheminement": "METZ ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09978778841, + 48.0694714886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f72753d7b36d15102043b9718b80874cbc0a9ae1", + "fields": { + "ligne_5": "ETREZ", + "code_commune_insee": "01130", + "libelle_d_acheminement": "BRESSE VALLONS", + "code_postal": "01340", + "nom_de_la_commune": "BRESSE VALLONS", + "coordonnees_gps": [ + 46.3130831891, + 5.17796707174 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17796707174, + 46.3130831891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80dffb6d107fb5be1584e0e76f4ef7a471bb7517", + "fields": { + "code_commune_insee": "10252", + "nom_de_la_commune": "MONTMARTIN LE HAUT", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2094879831, + 4.54987689229 + ], + "libelle_d_acheminement": "MONTMARTIN LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54987689229, + 48.2094879831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b490008c32a7c34b2c8e4ee29f0c298fad3900fa", + "fields": { + "code_commune_insee": "01134", + "nom_de_la_commune": "CROTTET", + "code_postal": "01750", + "coordonnees_gps": [ + 46.283072336, + 4.87747971182 + ], + "libelle_d_acheminement": "CROTTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87747971182, + 46.283072336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "303ad9fe21e1439c8204178a420ba21e908c7b2e", + "fields": { + "code_commune_insee": "10253", + "nom_de_la_commune": "MONTMORENCY BEAUFORT", + "code_postal": "10330", + "coordonnees_gps": [ + 48.4860560595, + 4.55616218734 + ], + "libelle_d_acheminement": "MONTMORENCY BEAUFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55616218734, + 48.4860560595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6090f46532ae0c93bdf71d303aa2d9d16acfcc77", + "fields": { + "code_commune_insee": "01135", + "nom_de_la_commune": "CROZET", + "code_postal": "01170", + "coordonnees_gps": [ + 46.2915659686, + 5.99510417092 + ], + "libelle_d_acheminement": "CROZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99510417092, + 46.2915659686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94e146e42e6700583662879e6fc1173e2a720124", + "fields": { + "code_commune_insee": "10256", + "nom_de_la_commune": "MONTSUZAIN", + "code_postal": "10150", + "coordonnees_gps": [ + 48.4457957709, + 4.14056971998 + ], + "libelle_d_acheminement": "MONTSUZAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14056971998, + 48.4457957709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8baedbe95f3fd69f67254f518facc88dcb1eb73", + "fields": { + "code_commune_insee": "01139", + "nom_de_la_commune": "CURCIAT DONGALON", + "code_postal": "01560", + "coordonnees_gps": [ + 46.4885456881, + 5.16344336837 + ], + "libelle_d_acheminement": "CURCIAT DONGALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16344336837, + 46.4885456881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec6ee5e7af368b2259eb866d89fe42fd34215e13", + "fields": { + "code_commune_insee": "10261", + "nom_de_la_commune": "MUSSY SUR SEINE", + "code_postal": "10250", + "coordonnees_gps": [ + 47.9845203158, + 4.50679375168 + ], + "libelle_d_acheminement": "MUSSY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50679375168, + 47.9845203158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63ce79556fe96a57473c6a2d095747173504d84b", + "fields": { + "code_commune_insee": "01148", + "nom_de_la_commune": "DORTAN", + "code_postal": "01590", + "coordonnees_gps": [ + 46.3133221173, + 5.64146584117 + ], + "libelle_d_acheminement": "DORTAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64146584117, + 46.3133221173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24a23f92e46cee8c65213380af2120227c08f931", + "fields": { + "code_commune_insee": "10269", + "nom_de_la_commune": "NOZAY", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5002763071, + 4.08266438587 + ], + "libelle_d_acheminement": "NOZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08266438587, + 48.5002763071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c03bb1bf3856f9d0af14d0c09db5c563c23fab6f", + "fields": { + "code_commune_insee": "01150", + "nom_de_la_commune": "DROM", + "code_postal": "01250", + "coordonnees_gps": [ + 46.2196603059, + 5.36799994918 + ], + "libelle_d_acheminement": "DROM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36799994918, + 46.2196603059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "057561a2ac5ba71a15b29c6cc45ecd7fe5d1f9cd", + "fields": { + "code_commune_insee": "10273", + "nom_de_la_commune": "ORTILLON", + "code_postal": "10700", + "coordonnees_gps": [ + 48.4923353048, + 4.23005258544 + ], + "libelle_d_acheminement": "ORTILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23005258544, + 48.4923353048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74e5d330f8e9a981c19f4b60c9a4370111687e9a", + "fields": { + "code_commune_insee": "01158", + "nom_de_la_commune": "FARGES", + "code_postal": "01550", + "coordonnees_gps": [ + 46.166230455, + 5.90019477201 + ], + "libelle_d_acheminement": "FARGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90019477201, + 46.166230455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b29be521b877a498cd4cadcd42515e9669aef13", + "fields": { + "code_commune_insee": "10275", + "nom_de_la_commune": "OSSEY LES TROIS MAISONS", + "code_postal": "10100", + "coordonnees_gps": [ + 48.4386027369, + 3.74395562708 + ], + "libelle_d_acheminement": "OSSEY LES TROIS MAISONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74395562708, + 48.4386027369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b22aa7f8cba35ad7d3ff1fa74c5aba021677f540", + "fields": { + "ligne_5": "CESSEINS", + "code_commune_insee": "01165", + "libelle_d_acheminement": "FRANCHELEINS", + "code_postal": "01090", + "nom_de_la_commune": "FRANCHELEINS", + "coordonnees_gps": [ + 46.0735946256, + 4.81293575559 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81293575559, + 46.0735946256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b3d262b8b222931270609e1979a0ea87f98fdd0", + "fields": { + "code_commune_insee": "10276", + "nom_de_la_commune": "PAISY COSDON", + "code_postal": "10160", + "coordonnees_gps": [ + 48.2147753548, + 3.69896514252 + ], + "libelle_d_acheminement": "PAISY COSDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69896514252, + 48.2147753548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6568062160e672448c3c5ed30c9dfb908014f5b", + "fields": { + "code_commune_insee": "01175", + "nom_de_la_commune": "GORREVOD", + "code_postal": "01190", + "coordonnees_gps": [ + 46.414943437, + 4.95120595427 + ], + "libelle_d_acheminement": "GORREVOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95120595427, + 46.414943437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a55b8512ddc67694435bb7cae92a72329ffe8fb6", + "fields": { + "code_commune_insee": "10281", + "nom_de_la_commune": "LE PAVILLON STE JULIE", + "code_postal": "10350", + "coordonnees_gps": [ + 48.3665011556, + 3.9015348936 + ], + "libelle_d_acheminement": "LE PAVILLON STE JULIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9015348936, + 48.3665011556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7a7578f6a2b88f82e3b905a0e5decdd040a6530", + "fields": { + "code_commune_insee": "01177", + "nom_de_la_commune": "GRAND CORENT", + "code_postal": "01250", + "coordonnees_gps": [ + 46.207387937, + 5.43318666027 + ], + "libelle_d_acheminement": "GRAND CORENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43318666027, + 46.207387937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17f662343ada8e7971e8e2966e103b4bc044d259", + "fields": { + "code_commune_insee": "10282", + "nom_de_la_commune": "PAYNS", + "code_postal": "10600", + "coordonnees_gps": [ + 48.3754453406, + 3.95779312203 + ], + "libelle_d_acheminement": "PAYNS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95779312203, + 48.3754453406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae63c5108fded54ca69bf4740e64f982ab880ef4", + "fields": { + "code_commune_insee": "01180", + "nom_de_la_commune": "GRILLY", + "code_postal": "01220", + "coordonnees_gps": [ + 46.3318810665, + 6.11366767978 + ], + "libelle_d_acheminement": "GRILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11366767978, + 46.3318810665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c34148d4496d3a3c2d540fbc4125f0cd3ad30f7", + "fields": { + "code_commune_insee": "10283", + "nom_de_la_commune": "PEL ET DER", + "code_postal": "10500", + "coordonnees_gps": [ + 48.3952042908, + 4.41036179152 + ], + "libelle_d_acheminement": "PEL ET DER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41036179152, + 48.3952042908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9010a5002d9376650ef74c4566d6333e9ddfe41", + "fields": { + "ligne_5": "HAUTEVILLE LOMPNES", + "code_commune_insee": "01185", + "libelle_d_acheminement": "PLATEAU D HAUTEVILLE", + "code_postal": "01110", + "nom_de_la_commune": "PLATEAU D HAUTEVILLE", + "coordonnees_gps": [ + 45.9696520061, + 5.57627261783 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57627261783, + 45.9696520061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6620ca20467c43865e79b4ab4ea7204963955429", + "fields": { + "code_commune_insee": "10286", + "nom_de_la_commune": "PETIT MESNIL", + "code_postal": "10500", + "coordonnees_gps": [ + 48.3405305907, + 4.62293165674 + ], + "libelle_d_acheminement": "PETIT MESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62293165674, + 48.3405305907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aceedecddea818117f6bf86fdc2d7d806fb7013", + "fields": { + "ligne_5": "HOSTIAZ", + "code_commune_insee": "01185", + "libelle_d_acheminement": "PLATEAU D HAUTEVILLE", + "code_postal": "01110", + "nom_de_la_commune": "PLATEAU D HAUTEVILLE", + "coordonnees_gps": [ + 45.9696520061, + 5.57627261783 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57627261783, + 45.9696520061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74b54dce0b7842900fc98f6f653bf5e080e9f318", + "fields": { + "ligne_5": "VIAPRES LE GRAND", + "code_commune_insee": "10289", + "libelle_d_acheminement": "PLANCY L ABBAYE", + "code_postal": "10380", + "nom_de_la_commune": "PLANCY L ABBAYE", + "coordonnees_gps": [ + 48.5851575322, + 3.98528853809 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98528853809, + 48.5851575322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b1a9a355897f1e1b6a1028604d77b4604e6fbbc", + "fields": { + "code_commune_insee": "01190", + "nom_de_la_commune": "INNIMOND", + "code_postal": "01680", + "coordonnees_gps": [ + 45.7919647191, + 5.57389398559 + ], + "libelle_d_acheminement": "INNIMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57389398559, + 45.7919647191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de9a184760d57edea9b66bebb305340ad5414930", + "fields": { + "code_commune_insee": "10291", + "nom_de_la_commune": "PLESSIS BARBUISE", + "code_postal": "10400", + "coordonnees_gps": [ + 48.5730831109, + 3.58602602539 + ], + "libelle_d_acheminement": "PLESSIS BARBUISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58602602539, + 48.5730831109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80999f28a4c3badef44fe95b7196bcedeb9cba30", + "fields": { + "code_commune_insee": "01193", + "nom_de_la_commune": "IZIEU", + "code_postal": "01300", + "coordonnees_gps": [ + 45.6557496407, + 5.63909140794 + ], + "libelle_d_acheminement": "IZIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63909140794, + 45.6557496407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1800aa17a97e4bc1e1617fe135206e6aaab6a474", + "fields": { + "code_commune_insee": "10296", + "nom_de_la_commune": "POLISY", + "code_postal": "10110", + "coordonnees_gps": [ + 48.0575849334, + 4.36193308689 + ], + "libelle_d_acheminement": "POLISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36193308689, + 48.0575849334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bdc7c594d3f279922f74b2c70edb2db7b464595", + "fields": { + "code_commune_insee": "01196", + "nom_de_la_commune": "JAYAT", + "code_postal": "01340", + "coordonnees_gps": [ + 46.3660828991, + 5.11429701617 + ], + "libelle_d_acheminement": "JAYAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11429701617, + 46.3660828991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "822dd8271739711f5ecf54192dad21df74498329", + "fields": { + "code_commune_insee": "10299", + "nom_de_la_commune": "POUAN LES VALLEES", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5339280475, + 4.06177485223 + ], + "libelle_d_acheminement": "POUAN LES VALLEES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06177485223, + 48.5339280475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab166dac0c16be274565a86fcc5bb309ccc18635", + "fields": { + "code_commune_insee": "01198", + "nom_de_la_commune": "JOYEUX", + "code_postal": "01800", + "coordonnees_gps": [ + 45.9499899849, + 5.10261326872 + ], + "libelle_d_acheminement": "JOYEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10261326872, + 45.9499899849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e37731d3d09562164de527680a8b90958836c84", + "fields": { + "code_commune_insee": "10305", + "nom_de_la_commune": "PREMIERFAIT", + "code_postal": "10170", + "coordonnees_gps": [ + 48.5029794134, + 4.02255796125 + ], + "libelle_d_acheminement": "PREMIERFAIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02255796125, + 48.5029794134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db7a45aceb2c754fae47d8c9b32a1a4d6c7ce4f9", + "fields": { + "code_commune_insee": "01200", + "nom_de_la_commune": "LABALME", + "code_postal": "01450", + "coordonnees_gps": [ + 46.0932491295, + 5.49438685213 + ], + "libelle_d_acheminement": "LABALME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49438685213, + 46.0932491295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "368b931b25bcbf8960b5820a517af15e17e11bde", + "fields": { + "code_commune_insee": "10307", + "nom_de_la_commune": "PRUGNY", + "code_postal": "10190", + "coordonnees_gps": [ + 48.2473913847, + 3.94199151664 + ], + "libelle_d_acheminement": "PRUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94199151664, + 48.2473913847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93c3f0bf93843d3ceaaf476287f1a4fa2954c0e8", + "fields": { + "code_commune_insee": "01203", + "nom_de_la_commune": "LAIZ", + "code_postal": "01290", + "coordonnees_gps": [ + 46.2469919709, + 4.89933490972 + ], + "libelle_d_acheminement": "LAIZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89933490972, + 46.2469919709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41682fb57ea7d255b092ca8f005482641f6250de", + "fields": { + "code_commune_insee": "10325", + "nom_de_la_commune": "ROSIERES PRES TROYES", + "code_postal": "10430", + "coordonnees_gps": [ + 48.2626897407, + 4.06345677209 + ], + "libelle_d_acheminement": "ROSIERES PRES TROYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06345677209, + 48.2626897407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a458fa19316114a329145cd7d1452a016b5b6c0", + "fields": { + "code_commune_insee": "01210", + "nom_de_la_commune": "LELEX", + "code_postal": "01410", + "coordonnees_gps": [ + 46.2855010936, + 5.92927713771 + ], + "libelle_d_acheminement": "LELEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92927713771, + 46.2855010936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "648708c3f7944da2da9fd574b2a07a962c1db7c1", + "fields": { + "code_commune_insee": "10335", + "nom_de_la_commune": "ST BENOIST SUR VANNE", + "code_postal": "10160", + "coordonnees_gps": [ + 48.2352398291, + 3.66828750117 + ], + "libelle_d_acheminement": "ST BENOIST SUR VANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66828750117, + 48.2352398291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64855dc7d0b3dbbcfd01ae9a5bf28224d6d5605f", + "fields": { + "ligne_5": "LHOPITAL", + "code_commune_insee": "01215", + "libelle_d_acheminement": "SURJOUX LHOPITAL", + "code_postal": "01420", + "nom_de_la_commune": "SURJOUX LHOPITAL", + "coordonnees_gps": [ + 46.0238143134, + 5.76236736492 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76236736492, + 46.0238143134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8aabb3625319a1e8d947edc8f4896d45f8b90c64", + "fields": { + "code_commune_insee": "10338", + "nom_de_la_commune": "ST ETIENNE SOUS BARBUISE", + "code_postal": "10700", + "coordonnees_gps": [ + 48.4925522857, + 4.11536192405 + ], + "libelle_d_acheminement": "ST ETIENNE SOUS BARBUISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11536192405, + 48.4925522857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "628895c41ab4b1f7bd7676712ec8af5b7fe67e8c", + "fields": { + "ligne_5": "SURJOUX", + "code_commune_insee": "01215", + "libelle_d_acheminement": "SURJOUX LHOPITAL", + "code_postal": "01420", + "nom_de_la_commune": "SURJOUX LHOPITAL", + "coordonnees_gps": [ + 46.0238143134, + 5.76236736492 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76236736492, + 46.0238143134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe356487fa2425aeb39f8bb5eeb2a6e8867c8688", + "fields": { + "code_commune_insee": "10341", + "nom_de_la_commune": "ST HILAIRE SOUS ROMILLY", + "code_postal": "10100", + "coordonnees_gps": [ + 48.4978643652, + 3.65717692243 + ], + "libelle_d_acheminement": "ST HILAIRE SOUS ROMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65717692243, + 48.4978643652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "298d430946ee8fe6470711fee548b197151591ef", + "fields": { + "code_commune_insee": "01227", + "nom_de_la_commune": "MAGNIEU", + "code_postal": "01300", + "coordonnees_gps": [ + 45.7754050255, + 5.71540945601 + ], + "libelle_d_acheminement": "MAGNIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71540945601, + 45.7754050255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04be9a745504a8816d0141f68c5ff9d923232b50", + "fields": { + "code_commune_insee": "10348", + "nom_de_la_commune": "ST LUPIEN", + "code_postal": "10350", + "coordonnees_gps": [ + 48.3644950452, + 3.69973385805 + ], + "libelle_d_acheminement": "ST LUPIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69973385805, + 48.3644950452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b588a88c2e2551b255e9f0f6b1f4b0d454e6ac2a", + "fields": { + "code_commune_insee": "01232", + "nom_de_la_commune": "MARBOZ", + "code_postal": "01851", + "coordonnees_gps": [ + 46.3434312497, + 5.24374534963 + ], + "libelle_d_acheminement": "MARBOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24374534963, + 46.3434312497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d64eb3aa6eea911d260cc59f12ee5a0662d906d", + "fields": { + "ligne_5": "BARBEREY AUX MOINES", + "code_commune_insee": "10349", + "libelle_d_acheminement": "ST LYE", + "code_postal": "10180", + "nom_de_la_commune": "ST LYE", + "coordonnees_gps": [ + 48.3442113534, + 3.9810222993 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9810222993, + 48.3442113534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac47927435c5376d559fbcf1aaeb967b1be9695b", + "fields": { + "code_commune_insee": "01239", + "nom_de_la_commune": "MASSIGNIEU DE RIVES", + "code_postal": "01300", + "coordonnees_gps": [ + 45.7571503942, + 5.7620535823 + ], + "libelle_d_acheminement": "MASSIGNIEU DE RIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7620535823, + 45.7571503942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51117312d9dab1eea00cd4724099ccf28ae79f71", + "fields": { + "code_commune_insee": "10359", + "nom_de_la_commune": "ST PHAL", + "code_postal": "10130", + "coordonnees_gps": [ + 48.1142637321, + 4.00171688367 + ], + "libelle_d_acheminement": "ST PHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00171688367, + 48.1142637321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4b692fa2093200f42b2ded195487c82016ea63d", + "fields": { + "code_commune_insee": "01247", + "nom_de_la_commune": "MIJOUX", + "code_postal": "01410", + "coordonnees_gps": [ + 46.3622451724, + 6.00902631941 + ], + "libelle_d_acheminement": "MIJOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00902631941, + 46.3622451724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6792c50077dc7b6c474e6dd75fd8bd4794bbe7f", + "fields": { + "code_commune_insee": "10360", + "nom_de_la_commune": "ST POUANGE", + "code_postal": "10120", + "coordonnees_gps": [ + 48.224064228, + 4.04074318461 + ], + "libelle_d_acheminement": "ST POUANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04074318461, + 48.224064228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11b59cfc23668e5e5ac00e8d77abb5036e02c008", + "fields": { + "code_commune_insee": "01259", + "nom_de_la_commune": "MONTCET", + "code_postal": "01310", + "coordonnees_gps": [ + 46.219333227, + 5.11149132074 + ], + "libelle_d_acheminement": "MONTCET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11149132074, + 46.219333227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "301be373a1806fb415d25fa45b5611310dcaa762", + "fields": { + "code_commune_insee": "10364", + "nom_de_la_commune": "ST USAGE", + "code_postal": "10360", + "coordonnees_gps": [ + 48.0990942326, + 4.63420644531 + ], + "libelle_d_acheminement": "ST USAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63420644531, + 48.0990942326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6c2c96c962add8d9190a80b50873c7b696267b4", + "fields": { + "code_commune_insee": "01262", + "nom_de_la_commune": "MONTLUEL", + "code_postal": "01120", + "coordonnees_gps": [ + 45.8909006209, + 5.01987566185 + ], + "libelle_d_acheminement": "MONTLUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01987566185, + 45.8909006209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b916227df74769b52fc44ec853d04df292f5c57", + "fields": { + "code_commune_insee": "10370", + "nom_de_la_commune": "SOLIGNY LES ETANGS", + "code_postal": "10400", + "coordonnees_gps": [ + 48.4021938714, + 3.51624678712 + ], + "libelle_d_acheminement": "SOLIGNY LES ETANGS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51624678712, + 48.4021938714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "406e96bd08cfb3b7c33b7160a9d628b2dd9757f6", + "fields": { + "ligne_5": "JAILLEUX", + "code_commune_insee": "01262", + "libelle_d_acheminement": "MONTLUEL", + "code_postal": "01120", + "nom_de_la_commune": "MONTLUEL", + "coordonnees_gps": [ + 45.8909006209, + 5.01987566185 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01987566185, + 45.8909006209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9a9d20376d4209001c14aab2fdd1a2ec4ac4067", + "fields": { + "code_commune_insee": "10376", + "nom_de_la_commune": "THIEFFRAIN", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2003070687, + 4.43842199513 + ], + "libelle_d_acheminement": "THIEFFRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43842199513, + 48.2003070687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b58f62d12869035547e45309c0177fa580e9c628", + "fields": { + "code_commune_insee": "01265", + "nom_de_la_commune": "MONTREAL LA CLUSE", + "code_postal": "01460", + "coordonnees_gps": [ + 46.1795688194, + 5.59510550127 + ], + "libelle_d_acheminement": "MONTREAL LA CLUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59510550127, + 46.1795688194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0c5e39990abe373c43237b9302d1dd76be30dd0", + "fields": { + "code_commune_insee": "10386", + "nom_de_la_commune": "TROUANS", + "code_postal": "10700", + "coordonnees_gps": [ + 48.6388005085, + 4.24987699201 + ], + "libelle_d_acheminement": "TROUANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24987699201, + 48.6388005085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db778eab759fae91ec990517d390f78fbc4a4689", + "fields": { + "ligne_5": "VOLOGNAT", + "code_commune_insee": "01267", + "libelle_d_acheminement": "NURIEUX VOLOGNAT", + "code_postal": "01460", + "nom_de_la_commune": "NURIEUX VOLOGNAT", + "coordonnees_gps": [ + 46.1830720992, + 5.51435812316 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51435812316, + 46.1830720992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a8f40f6eaf6606c5ca3dc96918c5443191f4909", + "fields": { + "code_commune_insee": "10392", + "nom_de_la_commune": "VALLANT ST GEORGES", + "code_postal": "10170", + "coordonnees_gps": [ + 48.4606930046, + 3.88605241357 + ], + "libelle_d_acheminement": "VALLANT ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88605241357, + 48.4606930046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c0dff448874d62ed3447a6dfb24251bcc8ae826", + "fields": { + "code_commune_insee": "01276", + "nom_de_la_commune": "NIEVROZ", + "code_postal": "01120", + "coordonnees_gps": [ + 45.8222941077, + 5.05949629195 + ], + "libelle_d_acheminement": "NIEVROZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05949629195, + 45.8222941077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fd765c55eb4e07cf683e6792d6488339bec4425", + "fields": { + "code_commune_insee": "10399", + "nom_de_la_commune": "VAUDES", + "code_postal": "10260", + "coordonnees_gps": [ + 48.1755264671, + 4.1822235389 + ], + "libelle_d_acheminement": "VAUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1822235389, + 48.1755264671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59cec19654e1f4a4363f24ca9f8f03a694a6eb5f", + "fields": { + "code_commune_insee": "01279", + "nom_de_la_commune": "ONCIEU", + "code_postal": "01230", + "coordonnees_gps": [ + 45.9651165469, + 5.47146617499 + ], + "libelle_d_acheminement": "ONCIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47146617499, + 45.9651165469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fce336df5ebd17134d091230506050ca97e5254", + "fields": { + "code_commune_insee": "10406", + "nom_de_la_commune": "VERRIERES", + "code_postal": "10390", + "coordonnees_gps": [ + 48.2345711401, + 4.15425792921 + ], + "libelle_d_acheminement": "VERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15425792921, + 48.2345711401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2240e1fb22ee15b7668e8bcf83919129ddd14a6c", + "fields": { + "code_commune_insee": "01291", + "nom_de_la_commune": "PERREX", + "code_postal": "01540", + "coordonnees_gps": [ + 46.2465065604, + 4.97464940331 + ], + "libelle_d_acheminement": "PERREX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97464940331, + 46.2465065604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b15967988b79167dea8d3679f4ab7cf20a98f3e", + "fields": { + "code_commune_insee": "10412", + "nom_de_la_commune": "VILLECHETIF", + "code_postal": "10410", + "coordonnees_gps": [ + 48.3182253913, + 4.14937893854 + ], + "libelle_d_acheminement": "VILLECHETIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14937893854, + 48.3182253913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1abfb694a17b5a9bfe4658953e1707288c591cc", + "fields": { + "code_commune_insee": "01294", + "nom_de_la_commune": "PEYRIEU", + "code_postal": "01300", + "coordonnees_gps": [ + 45.6762428663, + 5.67912809192 + ], + "libelle_d_acheminement": "PEYRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67912809192, + 45.6762428663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b1a716bac86d257d3e73e8542c7258200c336de", + "fields": { + "code_commune_insee": "10429", + "nom_de_la_commune": "VILLETTE SUR AUBE", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5289053559, + 4.10868142527 + ], + "libelle_d_acheminement": "VILLETTE SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10868142527, + 48.5289053559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5e432cf838f412536080e0cc7089f812d44922d", + "fields": { + "code_commune_insee": "01295", + "nom_de_la_commune": "PEYZIEUX SUR SAONE", + "code_postal": "01140", + "coordonnees_gps": [ + 46.1226331853, + 4.82243226719 + ], + "libelle_d_acheminement": "PEYZIEUX SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82243226719, + 46.1226331853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5eda27cd88b2e32938ca20b79d8190d9b913fce", + "fields": { + "code_commune_insee": "10432", + "nom_de_la_commune": "VILLIERS SOUS PRASLIN", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0606648453, + 4.25215912758 + ], + "libelle_d_acheminement": "VILLIERS SOUS PRASLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25215912758, + 48.0606648453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6593ef20fb528e6ee9eb52ca66c20684cf91bad", + "fields": { + "code_commune_insee": "01301", + "nom_de_la_commune": "POLLIAT", + "code_postal": "01310", + "coordonnees_gps": [ + 46.2463108642, + 5.13794412439 + ], + "libelle_d_acheminement": "POLLIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13794412439, + 46.2463108642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc5d2c7b57d220236c50aae1b776dea46c947073", + "fields": { + "code_commune_insee": "10435", + "nom_de_la_commune": "VILLY LE MARECHAL", + "code_postal": "10800", + "coordonnees_gps": [ + 48.1889486496, + 4.07411625371 + ], + "libelle_d_acheminement": "VILLY LE MARECHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07411625371, + 48.1889486496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fde475e4ce220a4416ada5f906cb27f114b7b1f", + "fields": { + "code_commune_insee": "01302", + "nom_de_la_commune": "POLLIEU", + "code_postal": "01350", + "coordonnees_gps": [ + 45.7965373468, + 5.74794515549 + ], + "libelle_d_acheminement": "POLLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74794515549, + 45.7965373468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a91be53898bd6fa819a4f07ce498d414b8f3ee2e", + "fields": { + "code_commune_insee": "11012", + "nom_de_la_commune": "ARGELIERS", + "code_postal": "11120", + "coordonnees_gps": [ + 43.3110246072, + 2.91115452781 + ], + "libelle_d_acheminement": "ARGELIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91115452781, + 43.3110246072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c59a33493a9cdbb3b2bacc02c7d4714e4036e5d", + "fields": { + "code_commune_insee": "01309", + "nom_de_la_commune": "POUILLAT", + "code_postal": "01250", + "coordonnees_gps": [ + 46.3219301481, + 5.42318000482 + ], + "libelle_d_acheminement": "POUILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42318000482, + 46.3219301481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98a2a091daf485d79552a725d09c4bab2cb96dc5", + "fields": { + "code_commune_insee": "11016", + "nom_de_la_commune": "ARQUETTES EN VAL", + "code_postal": "11220", + "coordonnees_gps": [ + 43.1050377635, + 2.49669784552 + ], + "libelle_d_acheminement": "ARQUETTES EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49669784552, + 43.1050377635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c71ba87413fe397dd946869d3d62442b6cdd22a5", + "fields": { + "code_commune_insee": "01319", + "nom_de_la_commune": "RELEVANT", + "code_postal": "01990", + "coordonnees_gps": [ + 46.0843657897, + 4.94176845356 + ], + "libelle_d_acheminement": "RELEVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94176845356, + 46.0843657897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd1a29782f077ed8f4a45df5b5caa8e4370f4bf2", + "fields": { + "code_commune_insee": "11019", + "nom_de_la_commune": "AUNAT", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7889932939, + 2.10048727427 + ], + "libelle_d_acheminement": "AUNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10048727427, + 42.7889932939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2d952f597aaaf55bce04488dcb553c62608229e", + "fields": { + "code_commune_insee": "01322", + "nom_de_la_commune": "REYRIEUX", + "code_postal": "01600", + "coordonnees_gps": [ + 45.9367652442, + 4.82840395968 + ], + "libelle_d_acheminement": "REYRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82840395968, + 45.9367652442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b0a1f80759aec14886ebee2707e2900f6ef3b23", + "fields": { + "code_commune_insee": "11028", + "nom_de_la_commune": "BELCAIRE", + "code_postal": "11340", + "coordonnees_gps": [ + 42.831546255, + 1.94592570583 + ], + "libelle_d_acheminement": "BELCAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94592570583, + 42.831546255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5be74832404a0deccc508ec56bc29becf39443a", + "fields": { + "code_commune_insee": "01323", + "nom_de_la_commune": "REYSSOUZE", + "code_postal": "01190", + "coordonnees_gps": [ + 46.4285569061, + 4.91285056272 + ], + "libelle_d_acheminement": "REYSSOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91285056272, + 46.4285569061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1d39ac642219f4b38f92a55bcf5d395616e7091", + "fields": { + "code_commune_insee": "11030", + "nom_de_la_commune": "BELFLOU", + "code_postal": "11410", + "coordonnees_gps": [ + 43.3189976269, + 1.798174168 + ], + "libelle_d_acheminement": "BELFLOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.798174168, + 43.3189976269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9ae23850b4ca69f6aa19435d8585f8f8a8cca2e", + "fields": { + "code_commune_insee": "01329", + "nom_de_la_commune": "ROSSILLON", + "code_postal": "01510", + "coordonnees_gps": [ + 45.8363854589, + 5.59926863007 + ], + "libelle_d_acheminement": "ROSSILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59926863007, + 45.8363854589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a19ea422bc85612795213fa8c993ac4eed13e0e", + "fields": { + "code_commune_insee": "11031", + "nom_de_la_commune": "BELFORT SUR REBENTY", + "code_postal": "11140", + "coordonnees_gps": [ + 42.8301323698, + 2.04993539204 + ], + "libelle_d_acheminement": "BELFORT SUR REBENTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04993539204, + 42.8301323698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9f2317b8d203e8734c056ca4bfe77ed4768d9d1", + "fields": { + "code_commune_insee": "01330", + "nom_de_la_commune": "RUFFIEU", + "code_postal": "01260", + "coordonnees_gps": [ + 46.0037108867, + 5.65322391497 + ], + "libelle_d_acheminement": "RUFFIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65322391497, + 46.0037108867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed5398a899c3e9c766a286d32c6975071dc5c6c6", + "fields": { + "code_commune_insee": "11032", + "nom_de_la_commune": "BELLEGARDE DU RAZES", + "code_postal": "11240", + "coordonnees_gps": [ + 43.1076849546, + 2.05088227839 + ], + "libelle_d_acheminement": "BELLEGARDE DU RAZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05088227839, + 43.1076849546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8059dfa6c70ecdb99a50af7c59a130f00db12db7", + "fields": { + "code_commune_insee": "01337", + "nom_de_la_commune": "ST BENIGNE", + "code_postal": "01190", + "coordonnees_gps": [ + 46.4519173207, + 4.95309825903 + ], + "libelle_d_acheminement": "ST BENIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95309825903, + 46.4519173207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc81f4ab342767f655926220cb40073235dae629", + "fields": { + "code_commune_insee": "11036", + "nom_de_la_commune": "BELVIS", + "code_postal": "11340", + "coordonnees_gps": [ + 42.8560597727, + 2.07533369425 + ], + "libelle_d_acheminement": "BELVIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07533369425, + 42.8560597727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e5ea1813451409fd93274bb4a4f10958b013899", + "fields": { + "code_commune_insee": "01345", + "nom_de_la_commune": "ST DENIS EN BUGEY", + "code_postal": "01500", + "coordonnees_gps": [ + 45.9488551151, + 5.32367701698 + ], + "libelle_d_acheminement": "ST DENIS EN BUGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32367701698, + 45.9488551151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1c4737f69e9d2950dd6c23a483c01769328e47c", + "fields": { + "code_commune_insee": "11037", + "nom_de_la_commune": "BERRIAC", + "code_postal": "11000", + "coordonnees_gps": [ + 43.21409862, + 2.40773271657 + ], + "libelle_d_acheminement": "BERRIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40773271657, + 43.21409862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d15a68b7bb593be549ec3d7b7c50d992c6ea909b", + "fields": { + "code_commune_insee": "01346", + "nom_de_la_commune": "ST DIDIER D AUSSIAT", + "code_postal": "01340", + "coordonnees_gps": [ + 46.3069992095, + 5.05820697692 + ], + "libelle_d_acheminement": "ST DIDIER D AUSSIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05820697692, + 46.3069992095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf652b472bf55481db4f70921b4fcaaa3b8d2d3a", + "fields": { + "code_commune_insee": "11040", + "nom_de_la_commune": "BIZANET", + "code_postal": "11200", + "coordonnees_gps": [ + 43.1482543689, + 2.86981441339 + ], + "libelle_d_acheminement": "BIZANET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86981441339, + 43.1482543689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ffb24d1b0351258196573fe5216d9b83ac2dc70", + "fields": { + "code_commune_insee": "01347", + "nom_de_la_commune": "ST DIDIER DE FORMANS", + "code_postal": "01600", + "coordonnees_gps": [ + 45.9564926067, + 4.77766764875 + ], + "libelle_d_acheminement": "ST DIDIER DE FORMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77766764875, + 45.9564926067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6662e38b31a044e799851102e4aef6b30e30ca91", + "fields": { + "code_commune_insee": "11043", + "nom_de_la_commune": "BOUILHONNAC", + "code_postal": "11800", + "coordonnees_gps": [ + 43.232345623, + 2.44410859417 + ], + "libelle_d_acheminement": "BOUILHONNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44410859417, + 43.232345623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfb69e5e73ce381865fd23215554af34532570d5", + "fields": { + "code_commune_insee": "01358", + "nom_de_la_commune": "ST GERMAIN LES PAROISSES", + "code_postal": "01300", + "coordonnees_gps": [ + 45.7709749249, + 5.61753440834 + ], + "libelle_d_acheminement": "ST GERMAIN LES PAROISSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61753440834, + 45.7709749249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d590232690d3977fde1da81865cd1e509a3b20b9", + "fields": { + "code_commune_insee": "11047", + "nom_de_la_commune": "LE BOUSQUET", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7166535371, + 2.1756411124 + ], + "libelle_d_acheminement": "LE BOUSQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1756411124, + 42.7166535371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a8f9c0c8e082dedfbd4da73bde9988a335244d1", + "fields": { + "code_commune_insee": "01363", + "nom_de_la_commune": "ST JEAN LE VIEUX", + "code_postal": "01640", + "coordonnees_gps": [ + 46.0291437714, + 5.38252835538 + ], + "libelle_d_acheminement": "ST JEAN LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38252835538, + 46.0291437714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f3e8e29b78de5f40fed6dd699f1b048aa42eab3", + "fields": { + "code_commune_insee": "11059", + "nom_de_la_commune": "CAILHAVEL", + "code_postal": "11240", + "coordonnees_gps": [ + 43.1654349576, + 2.12414531475 + ], + "libelle_d_acheminement": "CAILHAVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12414531475, + 43.1654349576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e524ab733b517a8e1dd83bc9fe9133b155f2f7a9", + "fields": { + "code_commune_insee": "01364", + "nom_de_la_commune": "ST JEAN SUR REYSSOUZE", + "code_postal": "01560", + "coordonnees_gps": [ + 46.3972479854, + 5.06297763777 + ], + "libelle_d_acheminement": "ST JEAN SUR REYSSOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06297763777, + 46.3972479854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb7c4b0f072b3f12025d60489134826f0912dac1", + "fields": { + "code_commune_insee": "11064", + "nom_de_la_commune": "CAMPLONG D AUDE", + "code_postal": "11200", + "coordonnees_gps": [ + 43.1336113618, + 2.65379340398 + ], + "libelle_d_acheminement": "CAMPLONG D AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65379340398, + 43.1336113618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7e16777490be5d4c82abf18dd00eb049e01ef94", + "fields": { + "code_commune_insee": "01369", + "nom_de_la_commune": "ST JUST", + "code_postal": "01250", + "coordonnees_gps": [ + 46.1929758576, + 5.28494181398 + ], + "libelle_d_acheminement": "ST JUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28494181398, + 46.1929758576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0567b5422656f8458702499059308cbf76af06eb", + "fields": { + "ligne_5": "VILLALBE", + "code_commune_insee": "11069", + "libelle_d_acheminement": "CARCASSONNE", + "code_postal": "11000", + "nom_de_la_commune": "CARCASSONNE", + "coordonnees_gps": [ + 43.2093798444, + 2.34398855385 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34398855385, + 43.2093798444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ff12052400929adf4134390b22fc6e65495b79e", + "fields": { + "code_commune_insee": "01378", + "nom_de_la_commune": "ST MAURICE DE GOURDANS", + "code_postal": "01800", + "coordonnees_gps": [ + 45.8200191939, + 5.16980415584 + ], + "libelle_d_acheminement": "ST MAURICE DE GOURDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16980415584, + 45.8200191939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27007df013ca145177de1c8281b4f4047a3a15b9", + "fields": { + "code_commune_insee": "11071", + "nom_de_la_commune": "CASCASTEL DES CORBIERES", + "code_postal": "11360", + "coordonnees_gps": [ + 42.9806877582, + 2.74761489893 + ], + "libelle_d_acheminement": "CASCASTEL DES CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74761489893, + 42.9806877582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42d155bbfd2f22c6a22537f82ff125a6632dfb34", + "fields": { + "code_commune_insee": "01382", + "nom_de_la_commune": "STE OLIVE", + "code_postal": "01330", + "coordonnees_gps": [ + 46.0142006121, + 4.93624894982 + ], + "libelle_d_acheminement": "STE OLIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93624894982, + 46.0142006121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52cb3cdcf10e0924c1379996a8306f7c4a1c0e88", + "fields": { + "code_commune_insee": "11075", + "nom_de_la_commune": "CASTANS", + "code_postal": "11160", + "coordonnees_gps": [ + 43.4141480376, + 2.48796143931 + ], + "libelle_d_acheminement": "CASTANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48796143931, + 43.4141480376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d40dff1cf7ff5e0706dae4a2d65da62ab299a283", + "fields": { + "code_commune_insee": "01383", + "nom_de_la_commune": "ST PAUL DE VARAX", + "code_postal": "01240", + "coordonnees_gps": [ + 46.0956691617, + 5.12762470203 + ], + "libelle_d_acheminement": "ST PAUL DE VARAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12762470203, + 46.0956691617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3bedefa17eec6a8f4bcb0ae9117f0c7be439da9", + "fields": { + "code_commune_insee": "11077", + "nom_de_la_commune": "CASTELNAU D AUDE", + "code_postal": "11700", + "coordonnees_gps": [ + 43.2334707961, + 2.67749002021 + ], + "libelle_d_acheminement": "CASTELNAU D AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67749002021, + 43.2334707961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "371ebd9464c72bb609d9ea2b3f439cd4f5e42e16", + "fields": { + "code_commune_insee": "01387", + "nom_de_la_commune": "ST SULPICE", + "code_postal": "01340", + "coordonnees_gps": [ + 46.3209806116, + 5.04148389346 + ], + "libelle_d_acheminement": "ST SULPICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04148389346, + 46.3209806116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c45b79c87e7dc8a6afc44389f963a1ac44b1809f", + "fields": { + "code_commune_insee": "11079", + "nom_de_la_commune": "CAUDEBRONDE", + "code_postal": "11390", + "coordonnees_gps": [ + 43.3873063189, + 2.30289301086 + ], + "libelle_d_acheminement": "CAUDEBRONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30289301086, + 43.3873063189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "848c9a88221191f1acdf7361975f24d3e0ed6410", + "fields": { + "code_commune_insee": "01391", + "nom_de_la_commune": "SALAVRE", + "code_postal": "01270", + "coordonnees_gps": [ + 46.3635396668, + 5.34742387197 + ], + "libelle_d_acheminement": "SALAVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34742387197, + 46.3635396668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09f9c5137b7d01ade90133d7dd18506e38dcc523", + "fields": { + "ligne_5": "CAUDEVAL", + "code_commune_insee": "11080", + "libelle_d_acheminement": "VAL DE LAMBRONNE", + "code_postal": "11230", + "nom_de_la_commune": "VAL DE LAMBRONNE", + "coordonnees_gps": [ + 43.074926897, + 1.97483631739 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97483631739, + 43.074926897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "869a23069aa56e015c0c018abc208d399f7fab00", + "fields": { + "code_commune_insee": "01393", + "nom_de_la_commune": "SANDRANS", + "code_postal": "01400", + "coordonnees_gps": [ + 46.0656961548, + 4.98282673172 + ], + "libelle_d_acheminement": "SANDRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98282673172, + 46.0656961548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04a694c5e9c62bd2ec8200ce7d414a476b79fcd0", + "fields": { + "code_commune_insee": "11083", + "nom_de_la_commune": "CAUNETTES EN VAL", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0641782017, + 2.56293845393 + ], + "libelle_d_acheminement": "CAUNETTES EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56293845393, + 43.0641782017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06f722568c2afc8b950b2cc8e598358846cf4a5b", + "fields": { + "code_commune_insee": "01400", + "nom_de_la_commune": "SEILLONNAZ", + "code_postal": "01470", + "coordonnees_gps": [ + 45.7976976614, + 5.49810658524 + ], + "libelle_d_acheminement": "SEILLONNAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49810658524, + 45.7976976614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ff01d02e711db230ea9729149eb6a9a3956922c", + "fields": { + "code_commune_insee": "11087", + "nom_de_la_commune": "CAZALRENOUX", + "code_postal": "11270", + "coordonnees_gps": [ + 43.1886848888, + 1.94714608711 + ], + "libelle_d_acheminement": "CAZALRENOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94714608711, + 43.1886848888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cde8d65c819e7bb921c48259e3241071ed14d308", + "fields": { + "code_commune_insee": "01402", + "nom_de_la_commune": "SERMOYER", + "code_postal": "01190", + "coordonnees_gps": [ + 46.4981991944, + 4.97856020441 + ], + "libelle_d_acheminement": "SERMOYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97856020441, + 46.4981991944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96f43562bb7719a6280b44dee1526cdda93a5fa2", + "fields": { + "code_commune_insee": "11093", + "nom_de_la_commune": "LE CLAT", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7871660993, + 2.17404309802 + ], + "libelle_d_acheminement": "LE CLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17404309802, + 42.7871660993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d792a4d70234fd681f3dae70ccc3e2118e1de29", + "fields": { + "code_commune_insee": "01406", + "nom_de_la_commune": "SERVIGNAT", + "code_postal": "01560", + "coordonnees_gps": [ + 46.4346497878, + 5.05559973107 + ], + "libelle_d_acheminement": "SERVIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05559973107, + 46.4346497878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e036bb169d2ca19d80f8b5508dc4e67116ed6e8a", + "fields": { + "code_commune_insee": "11096", + "nom_de_la_commune": "COMUS", + "code_postal": "11340", + "coordonnees_gps": [ + 42.8284437871, + 1.88864024045 + ], + "libelle_d_acheminement": "COMUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88864024045, + 42.8284437871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94fe0ef437ad59d52fb4d44cdd377f278c6c0ca0", + "fields": { + "code_commune_insee": "01412", + "nom_de_la_commune": "SULIGNAT", + "code_postal": "01400", + "coordonnees_gps": [ + 46.1735383313, + 4.95772382526 + ], + "libelle_d_acheminement": "SULIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95772382526, + 46.1735383313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1078e35e23551f0356a6dfd728b2a91b55ef6670", + "fields": { + "code_commune_insee": "11098", + "nom_de_la_commune": "CONILHAC CORBIERES", + "code_postal": "11200", + "coordonnees_gps": [ + 43.1847654132, + 2.71572755182 + ], + "libelle_d_acheminement": "CONILHAC CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71572755182, + 43.1847654132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87f019d7acdfe054c83ad8a3151c180953a68e57", + "fields": { + "code_commune_insee": "01416", + "nom_de_la_commune": "TENAY", + "code_postal": "01230", + "coordonnees_gps": [ + 45.922698278, + 5.51453923595 + ], + "libelle_d_acheminement": "TENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51453923595, + 45.922698278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a78409abcacd0d148a4f8e18465951df011159a", + "fields": { + "code_commune_insee": "11099", + "nom_de_la_commune": "CONQUES SUR ORBIEL", + "code_postal": "11600", + "coordonnees_gps": [ + 43.2842108379, + 2.38445720467 + ], + "libelle_d_acheminement": "CONQUES SUR ORBIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38445720467, + 43.2842108379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c89268c744a7cf895a2b718761569e9ee7dd421e", + "fields": { + "code_commune_insee": "01418", + "nom_de_la_commune": "THIL", + "code_postal": "01120", + "coordonnees_gps": [ + 45.8169214201, + 5.0184098869 + ], + "libelle_d_acheminement": "THIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0184098869, + 45.8169214201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d162874b235125286a4d84ce9f089279e8bd524a", + "fields": { + "code_commune_insee": "11102", + "nom_de_la_commune": "COUFFOULENS", + "code_postal": "11250", + "coordonnees_gps": [ + 43.1550733435, + 2.30512897888 + ], + "libelle_d_acheminement": "COUFFOULENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30512897888, + 43.1550733435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d4807a51dade3b0261681459a3cba275b7cd551", + "fields": { + "code_commune_insee": "01419", + "nom_de_la_commune": "THOIRY", + "code_postal": "01710", + "coordonnees_gps": [ + 46.2435475879, + 5.96506297987 + ], + "libelle_d_acheminement": "THOIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96506297987, + 46.2435475879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cf40c41b930742318e363115598dcf982bf6067", + "fields": { + "code_commune_insee": "11103", + "nom_de_la_commune": "COUIZA", + "code_postal": "11190", + "coordonnees_gps": [ + 42.9352199297, + 2.27047605296 + ], + "libelle_d_acheminement": "COUIZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27047605296, + 42.9352199297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b4313fe24208023652336578eff240551a0336b", + "fields": { + "code_commune_insee": "01422", + "nom_de_la_commune": "TOSSIAT", + "code_postal": "01250", + "coordonnees_gps": [ + 46.1384790158, + 5.30400055922 + ], + "libelle_d_acheminement": "TOSSIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30400055922, + 46.1384790158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c13928e7c9d0833249fa37d609779a78b67c8120", + "fields": { + "code_commune_insee": "11112", + "nom_de_la_commune": "CUBIERES SUR CINOBLE", + "code_postal": "11190", + "coordonnees_gps": [ + 42.8630454111, + 2.46622412753 + ], + "libelle_d_acheminement": "CUBIERES SUR CINOBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46622412753, + 42.8630454111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "367eda4aec679edc742e3f5a775791f8993f1bef", + "fields": { + "code_commune_insee": "01424", + "nom_de_la_commune": "TRAMOYES", + "code_postal": "01390", + "coordonnees_gps": [ + 45.8745670311, + 4.9639268325 + ], + "libelle_d_acheminement": "TRAMOYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9639268325, + 45.8745670311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba0703d404f7fa210b8e5a778c8c4e3ba6bbf28a", + "fields": { + "code_commune_insee": "11121", + "nom_de_la_commune": "DONAZAC", + "code_postal": "11240", + "coordonnees_gps": [ + 43.0792117133, + 2.12081734346 + ], + "libelle_d_acheminement": "DONAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12081734346, + 43.0792117133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "085cc28c6a3a24a63f9535a06692fb1b96cfb7bb", + "fields": { + "code_commune_insee": "01425", + "nom_de_la_commune": "LA TRANCLIERE", + "code_postal": "01160", + "coordonnees_gps": [ + 46.0970027075, + 5.26099875456 + ], + "libelle_d_acheminement": "LA TRANCLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26099875456, + 46.0970027075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac87ebcb6d7e57f770baea2395eb3d0dd040b100", + "fields": { + "code_commune_insee": "11125", + "nom_de_la_commune": "EMBRES ET CASTELMAURE", + "code_postal": "11360", + "coordonnees_gps": [ + 42.9295753013, + 2.81822778929 + ], + "libelle_d_acheminement": "EMBRES ET CASTELMAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81822778929, + 42.9295753013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3c1337a56ea9ca3aa0b8471e65baa01c93d81d5", + "fields": { + "code_commune_insee": "01429", + "nom_de_la_commune": "VANDEINS", + "code_postal": "01660", + "coordonnees_gps": [ + 46.217806795, + 5.08189056957 + ], + "libelle_d_acheminement": "VANDEINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08189056957, + 46.217806795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bc8ffb88eaa247ef8cfe6e8dc0a7618925ef386", + "fields": { + "ligne_5": "ST JUST DE BELENGARD", + "code_commune_insee": "11128", + "libelle_d_acheminement": "ESCUEILLENS ET ST JUST", + "code_postal": "11240", + "nom_de_la_commune": "ESCUEILLENS ET ST JUST DE BELENGARD", + "coordonnees_gps": [ + 43.100423517, + 2.02148370571 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02148370571, + 43.100423517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd5acc65e270fdc43d99002e3c6f404ac592c3ef", + "fields": { + "code_commune_insee": "01430", + "nom_de_la_commune": "VARAMBON", + "code_postal": "01160", + "coordonnees_gps": [ + 46.0433928197, + 5.2947944594 + ], + "libelle_d_acheminement": "VARAMBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2947944594, + 46.0433928197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f63803841b0cee41396f8d3a942120773969a8c", + "fields": { + "code_commune_insee": "11136", + "nom_de_la_commune": "FANJEAUX", + "code_postal": "11270", + "coordonnees_gps": [ + 43.1870163521, + 2.03666099746 + ], + "libelle_d_acheminement": "FANJEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03666099746, + 43.1870163521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a5bd5729678b7027e2edd192041c527608f3f03", + "fields": { + "code_commune_insee": "01436", + "nom_de_la_commune": "VESANCY", + "code_postal": "01170", + "coordonnees_gps": [ + 46.3610768127, + 6.08470665475 + ], + "libelle_d_acheminement": "VESANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08470665475, + 46.3610768127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e61bdd7852a2b428f0488b27c20d9cba8fc5df7d", + "fields": { + "code_commune_insee": "11137", + "nom_de_la_commune": "FELINES TERMENES", + "code_postal": "11330", + "coordonnees_gps": [ + 42.984590933, + 2.61454462855 + ], + "libelle_d_acheminement": "FELINES TERMENES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61454462855, + 42.984590933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6753de997a393089be0acda09c938a895b9b126", + "fields": { + "code_commune_insee": "01448", + "nom_de_la_commune": "VILLES", + "code_postal": "01200", + "coordonnees_gps": [ + 46.0954293058, + 5.7569250415 + ], + "libelle_d_acheminement": "VILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7569250415, + 46.0954293058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a859dcee476705d536fc5bc68a9ff7bedefcc77", + "fields": { + "code_commune_insee": "11143", + "nom_de_la_commune": "FEUILLA", + "code_postal": "11510", + "coordonnees_gps": [ + 42.9291375888, + 2.90138923544 + ], + "libelle_d_acheminement": "FEUILLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90138923544, + 42.9291375888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c8afc8f7d0de897799b494f5abef719d6c87665", + "fields": { + "code_commune_insee": "01452", + "nom_de_la_commune": "VIRIEU LE GRAND", + "code_postal": "01510", + "coordonnees_gps": [ + 45.8464417872, + 5.63971940347 + ], + "libelle_d_acheminement": "VIRIEU LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63971940347, + 45.8464417872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "294dfde44d108b5dc57b7cafff8791c3b2fb2002", + "fields": { + "ligne_5": "CABANES DE FITOU", + "code_commune_insee": "11144", + "libelle_d_acheminement": "FITOU", + "code_postal": "11510", + "nom_de_la_commune": "FITOU", + "coordonnees_gps": [ + 42.8959362575, + 2.96671997397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96671997397, + 42.8959362575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5642c7141228ef338a33bbb856f0a311e310b8d", + "fields": { + "ligne_5": "VIRIEU LE PETIT", + "code_commune_insee": "01453", + "libelle_d_acheminement": "ARVIERE EN VALROMEY", + "code_postal": "01260", + "nom_de_la_commune": "ARVIERE EN VALROMEY", + "coordonnees_gps": [ + 45.9063608209, + 5.73707051523 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73707051523, + 45.9063608209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa1eb3f9b1050b37f62bcb9972ee5c913286a6cd", + "fields": { + "code_commune_insee": "11147", + "nom_de_la_commune": "FONTANES DE SAULT", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7683692415, + 2.08206759306 + ], + "libelle_d_acheminement": "FONTANES DE SAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08206759306, + 42.7683692415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65a0e838da4ed3c0bad52de8dce9e00010e64c2b", + "fields": { + "code_commune_insee": "02010", + "nom_de_la_commune": "ALLEMANT", + "code_postal": "02320", + "coordonnees_gps": [ + 49.4624440593, + 3.45394275872 + ], + "libelle_d_acheminement": "ALLEMANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45394275872, + 49.4624440593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1b543fcf9929a23839237d02c96634ba435c83d", + "fields": { + "code_commune_insee": "11157", + "nom_de_la_commune": "FRAISSE DES CORBIERES", + "code_postal": "11360", + "coordonnees_gps": [ + 42.9614186239, + 2.87149437178 + ], + "libelle_d_acheminement": "FRAISSE DES CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87149437178, + 42.9614186239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f744bea94aa45cecee7ebd62faad87cb7367e010", + "fields": { + "code_commune_insee": "02011", + "nom_de_la_commune": "AMBLENY", + "code_postal": "02290", + "coordonnees_gps": [ + 49.3762672939, + 3.18334679178 + ], + "libelle_d_acheminement": "AMBLENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18334679178, + 49.3762672939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "191ab17338f7b5cbfc9f0fb424ec5c86aa9bfd55", + "fields": { + "code_commune_insee": "11162", + "nom_de_la_commune": "GENERVILLE", + "code_postal": "11270", + "coordonnees_gps": [ + 43.2104473587, + 1.931378621 + ], + "libelle_d_acheminement": "GENERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.931378621, + 43.2104473587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e217215c585313d3a40fc65cf4af447fe0a3c132", + "fields": { + "code_commune_insee": "02012", + "nom_de_la_commune": "AMBRIEF", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3215250088, + 3.40362196255 + ], + "libelle_d_acheminement": "AMBRIEF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40362196255, + 49.3215250088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46dbf8b8010919766aa942bae6ae08a897aa8403", + "fields": { + "ligne_5": "GRUISSAN PLAGE", + "code_commune_insee": "11170", + "libelle_d_acheminement": "GRUISSAN", + "code_postal": "11430", + "nom_de_la_commune": "GRUISSAN", + "coordonnees_gps": [ + 43.1040163547, + 3.08229513652 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08229513652, + 43.1040163547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea94f3759015b7cbe66335d67f991fb772d60a72", + "fields": { + "code_commune_insee": "02013", + "nom_de_la_commune": "AMIFONTAINE", + "code_postal": "02190", + "coordonnees_gps": [ + 49.498787026, + 3.92278993322 + ], + "libelle_d_acheminement": "AMIFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92278993322, + 49.498787026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb93c0f60fec048156b89150b79e75efe9a933f3", + "fields": { + "code_commune_insee": "11172", + "nom_de_la_commune": "HOMPS", + "code_postal": "11200", + "coordonnees_gps": [ + 43.2673621854, + 2.72098282202 + ], + "libelle_d_acheminement": "HOMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72098282202, + 43.2673621854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa414910df2adc64a91241d099cca20cf7fef0a7", + "fields": { + "ligne_5": "LIZY", + "code_commune_insee": "02018", + "libelle_d_acheminement": "ANIZY LE GRAND", + "code_postal": "02320", + "nom_de_la_commune": "ANIZY LE GRAND", + "coordonnees_gps": [ + 49.5045058305, + 3.43129584952 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43129584952, + 49.5045058305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2bb14c99143415e0106b1d43cd55effd7cf66ea", + "fields": { + "code_commune_insee": "11185", + "nom_de_la_commune": "LAGRASSE", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0957230349, + 2.60436046295 + ], + "libelle_d_acheminement": "LAGRASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60436046295, + 43.0957230349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "427f76c7d9eafd37949c7b240920d4af7b1bc174", + "fields": { + "code_commune_insee": "02022", + "nom_de_la_commune": "ARCY STE RESTITUE", + "code_postal": "02130", + "coordonnees_gps": [ + 49.2548799371, + 3.47829076337 + ], + "libelle_d_acheminement": "ARCY STE RESTITUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47829076337, + 49.2548799371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "838eb1117a28f7874b87f795de7bd0f7808ce592", + "fields": { + "code_commune_insee": "11186", + "nom_de_la_commune": "LAIRIERE", + "code_postal": "11330", + "coordonnees_gps": [ + 43.0231109524, + 2.48132587257 + ], + "libelle_d_acheminement": "LAIRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48132587257, + 43.0231109524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "224d4bc415ca4e5537317addbe21fd69e3ced407", + "fields": { + "code_commune_insee": "02028", + "nom_de_la_commune": "ATHIES SOUS LAON", + "code_postal": "02840", + "coordonnees_gps": [ + 49.5757750686, + 3.69006632109 + ], + "libelle_d_acheminement": "ATHIES SOUS LAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69006632109, + 49.5757750686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c016a8465ba0af18261b2dedfb61139abcfb8b7", + "fields": { + "code_commune_insee": "11194", + "nom_de_la_commune": "LASTOURS", + "code_postal": "11600", + "coordonnees_gps": [ + 43.326249809, + 2.37863845502 + ], + "libelle_d_acheminement": "LASTOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37863845502, + 43.326249809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f27a50975c1e922c74fe80df54b3066c6e06653", + "fields": { + "code_commune_insee": "02029", + "nom_de_la_commune": "ATTILLY", + "code_postal": "02490", + "coordonnees_gps": [ + 49.8554489068, + 3.15363305662 + ], + "libelle_d_acheminement": "ATTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15363305662, + 49.8554489068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa9a828d9fabb7bdc20bb4490e665eb3ff2cb5b5", + "fields": { + "ligne_5": "LA FRANQUI", + "code_commune_insee": "11202", + "libelle_d_acheminement": "LEUCATE", + "code_postal": "11370", + "nom_de_la_commune": "LEUCATE", + "coordonnees_gps": [ + 42.8993650672, + 3.02676038573 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02676038573, + 42.8993650672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69a7686770bb9e9f03c4ddd3d1e0034145b7e75b", + "fields": { + "code_commune_insee": "02035", + "nom_de_la_commune": "AUDIGNY", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8660645425, + 3.6312599901 + ], + "libelle_d_acheminement": "AUDIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6312599901, + 49.8660645425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03f806da1505492ee6c5657c767bf8c45fd0e250", + "fields": { + "code_commune_insee": "11205", + "nom_de_la_commune": "LIMOUSIS", + "code_postal": "11600", + "coordonnees_gps": [ + 43.3274801411, + 2.40460608517 + ], + "libelle_d_acheminement": "LIMOUSIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40460608517, + 43.3274801411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "682544566913264d38316932cf40e62d0b69619d", + "fields": { + "code_commune_insee": "02036", + "nom_de_la_commune": "AUGY", + "code_postal": "02220", + "coordonnees_gps": [ + 49.340063724, + 3.5110198819 + ], + "libelle_d_acheminement": "AUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5110198819, + 49.340063724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69b68dc63f2c33831997a880a9d85ecabe9bc7d7", + "fields": { + "code_commune_insee": "11217", + "nom_de_la_commune": "MARCORIGNAN", + "code_postal": "11120", + "coordonnees_gps": [ + 43.2247080876, + 2.91473054807 + ], + "libelle_d_acheminement": "MARCORIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91473054807, + 43.2247080876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee9cef4c85113e445cc3d1b7b70852d3ba8246d7", + "fields": { + "code_commune_insee": "02037", + "nom_de_la_commune": "AULNOIS SOUS LAON", + "code_postal": "02000", + "coordonnees_gps": [ + 49.6198117499, + 3.60981962105 + ], + "libelle_d_acheminement": "AULNOIS SOUS LAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60981962105, + 49.6198117499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07f2ad864396d43e2b89a9aada5fd4fbd6145e08", + "fields": { + "code_commune_insee": "11219", + "nom_de_la_commune": "MARSA", + "code_postal": "11140", + "coordonnees_gps": [ + 42.8197040579, + 2.1393561286 + ], + "libelle_d_acheminement": "MARSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1393561286, + 42.8197040579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dfe0d22a5fdfa4986f1b4ff402f680430efefd9", + "fields": { + "code_commune_insee": "02044", + "nom_de_la_commune": "BANCIGNY", + "code_postal": "02140", + "coordonnees_gps": [ + 49.7978711595, + 4.03669866073 + ], + "libelle_d_acheminement": "BANCIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03669866073, + 49.7978711595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcdcf734a4ebbd6d9fb08929a17fec5921d6bfc2", + "fields": { + "code_commune_insee": "11221", + "nom_de_la_commune": "LES MARTYS", + "code_postal": "11390", + "coordonnees_gps": [ + 43.4219858305, + 2.31009266044 + ], + "libelle_d_acheminement": "LES MARTYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31009266044, + 43.4219858305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ae7295be5e4b78679dc525a69fe20774e7fe092", + "fields": { + "code_commune_insee": "02046", + "nom_de_la_commune": "BARENTON BUGNY", + "code_postal": "02000", + "coordonnees_gps": [ + 49.6218589779, + 3.66103056579 + ], + "libelle_d_acheminement": "BARENTON BUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66103056579, + 49.6218589779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecea2ff6747e9d32229eb337fe96c6045f5ae527", + "fields": { + "code_commune_insee": "11222", + "nom_de_la_commune": "MAS CABARDES", + "code_postal": "11380", + "coordonnees_gps": [ + 43.3995255593, + 2.35766754646 + ], + "libelle_d_acheminement": "MAS CABARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35766754646, + 43.3995255593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ae0a22b7b359223c1e0a670549f057e7ee3fcd6", + "fields": { + "code_commune_insee": "02052", + "nom_de_la_commune": "BASSOLES AULERS", + "code_postal": "02380", + "coordonnees_gps": [ + 49.5332813699, + 3.38492604839 + ], + "libelle_d_acheminement": "BASSOLES AULERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38492604839, + 49.5332813699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd6e6df8482e471368895f8ccdb007271f20b374", + "fields": { + "code_commune_insee": "11224", + "nom_de_la_commune": "MASSAC", + "code_postal": "11330", + "coordonnees_gps": [ + 42.9160146126, + 2.55792629782 + ], + "libelle_d_acheminement": "MASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55792629782, + 42.9160146126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b20ea2596d599136348b5b25b49aa0cb7d06e74a", + "fields": { + "code_commune_insee": "02055", + "nom_de_la_commune": "BEAUME", + "code_postal": "02500", + "coordonnees_gps": [ + 49.8211281836, + 4.15200066545 + ], + "libelle_d_acheminement": "BEAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15200066545, + 49.8211281836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c0f421da5d0e4ea28ccb7c9d84354cb3d0652dd", + "fields": { + "code_commune_insee": "11231", + "nom_de_la_commune": "MEZERVILLE", + "code_postal": "11410", + "coordonnees_gps": [ + 43.2510059536, + 1.78428235297 + ], + "libelle_d_acheminement": "MEZERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78428235297, + 43.2510059536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1820172bed239baaa07bacdb1f35e7c6811ce4a7", + "fields": { + "code_commune_insee": "02056", + "nom_de_la_commune": "BEAUMONT EN BEINE", + "code_postal": "02300", + "coordonnees_gps": [ + 49.6874633882, + 3.13133369335 + ], + "libelle_d_acheminement": "BEAUMONT EN BEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13133369335, + 49.6874633882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00df63c0803ae63ca9578bf4496aefe2bb5c8261", + "fields": { + "code_commune_insee": "11236", + "nom_de_la_commune": "MOLANDIER", + "code_postal": "11420", + "coordonnees_gps": [ + 43.2516930483, + 1.72403903685 + ], + "libelle_d_acheminement": "MOLANDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72403903685, + 43.2516930483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7eae688a576ae5df28bda66f7a54988abf7eff8", + "fields": { + "code_commune_insee": "02060", + "nom_de_la_commune": "BEAUVOIS EN VERMANDOIS", + "code_postal": "02590", + "coordonnees_gps": [ + 49.8339921767, + 3.10282045546 + ], + "libelle_d_acheminement": "BEAUVOIS EN VERMANDOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10282045546, + 49.8339921767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31fb7f0f581e58bd4efba7033ad807e810a29c32", + "fields": { + "code_commune_insee": "11242", + "nom_de_la_commune": "MONTCLAR", + "code_postal": "11250", + "coordonnees_gps": [ + 43.1369169209, + 2.24273890747 + ], + "libelle_d_acheminement": "MONTCLAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24273890747, + 43.1369169209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85ec4097719dbe134dc66ac9e541922fc1fd1c98", + "fields": { + "code_commune_insee": "02065", + "nom_de_la_commune": "BELLICOURT", + "code_postal": "02420", + "coordonnees_gps": [ + 49.9592991729, + 3.23020850852 + ], + "libelle_d_acheminement": "BELLICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23020850852, + 49.9592991729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "516a5ee784f2c055d153a049f3ce565625e076d0", + "fields": { + "code_commune_insee": "11245", + "nom_de_la_commune": "MONTGAILLARD", + "code_postal": "11330", + "coordonnees_gps": [ + 42.9046014463, + 2.62879585851 + ], + "libelle_d_acheminement": "MONTGAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62879585851, + 42.9046014463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98db6677fc45c8333845f14c905d50647cb3aa8c", + "fields": { + "code_commune_insee": "02072", + "nom_de_la_commune": "BERRIEUX", + "code_postal": "02820", + "coordonnees_gps": [ + 49.4823563962, + 3.8521031839 + ], + "libelle_d_acheminement": "BERRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8521031839, + 49.4823563962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb685d57e90cf6fc29ff8716813bf08e83413f03", + "fields": { + "code_commune_insee": "11246", + "nom_de_la_commune": "MONTGRADAIL", + "code_postal": "11240", + "coordonnees_gps": [ + 43.1233667557, + 2.03299800063 + ], + "libelle_d_acheminement": "MONTGRADAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03299800063, + 43.1233667557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e25fd31c820f29c9a4cc8626250997d0de1e7f11", + "fields": { + "code_commune_insee": "02082", + "nom_de_la_commune": "BEUGNEUX", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2275759309, + 3.41647403702 + ], + "libelle_d_acheminement": "BEUGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41647403702, + 49.2275759309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "368f6868b0e4dbf6f9fc0a8af1690b66665a0e61", + "fields": { + "code_commune_insee": "11253", + "nom_de_la_commune": "MONTOLIEU", + "code_postal": "11170", + "coordonnees_gps": [ + 43.3135618602, + 2.21473143338 + ], + "libelle_d_acheminement": "MONTOLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21473143338, + 43.3135618602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15b8a940a4aa8d99cb4c6c550e7ca2c917042ea4", + "fields": { + "code_commune_insee": "02087", + "nom_de_la_commune": "BIEUXY", + "code_postal": "02290", + "coordonnees_gps": [ + 49.4476050585, + 3.26985890807 + ], + "libelle_d_acheminement": "BIEUXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26985890807, + 49.4476050585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec3d33a56d0351033f8a78a6831adbde07b911ce", + "fields": { + "code_commune_insee": "11256", + "nom_de_la_commune": "MONTSERET", + "code_postal": "11200", + "coordonnees_gps": [ + 43.1053577967, + 2.80704090239 + ], + "libelle_d_acheminement": "MONTSERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80704090239, + 43.1053577967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1aa6d5ff89d704da4ed457abb49dc356a8c31c1", + "fields": { + "code_commune_insee": "02089", + "nom_de_la_commune": "BILLY SUR AISNE", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3556556532, + 3.37609947556 + ], + "libelle_d_acheminement": "BILLY SUR AISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37609947556, + 49.3556556532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "020b267ebdc522d6cf71c71564b53b329cf8c718", + "fields": { + "code_commune_insee": "11261", + "nom_de_la_commune": "MOUX", + "code_postal": "11700", + "coordonnees_gps": [ + 43.1727610204, + 2.64604983695 + ], + "libelle_d_acheminement": "MOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64604983695, + 43.1727610204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2afd714c2d2d60cd64ba5984f2897dd30bcf0ff", + "fields": { + "code_commune_insee": "02090", + "nom_de_la_commune": "BILLY SUR OURCQ", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2215032882, + 3.29903267663 + ], + "libelle_d_acheminement": "BILLY SUR OURCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29903267663, + 49.2215032882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1362e57dacb6f0f98a8e3517a3ae367ce2f6be0", + "fields": { + "ligne_5": "NARBONNE PLAGE", + "code_commune_insee": "11262", + "libelle_d_acheminement": "NARBONNE", + "code_postal": "11100", + "nom_de_la_commune": "NARBONNE", + "coordonnees_gps": [ + 43.1652399898, + 3.02023868739 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02023868739, + 43.1652399898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a2a2977d262e1bfec2e49df14e47c753380d2ba", + "fields": { + "code_commune_insee": "02096", + "nom_de_la_commune": "BOIS LES PARGNY", + "code_postal": "02270", + "coordonnees_gps": [ + 49.7369350689, + 3.65414834535 + ], + "libelle_d_acheminement": "BOIS LES PARGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65414834535, + 49.7369350689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52c814396df1d7ddd41fa82efc996e821c0f434b", + "fields": { + "code_commune_insee": "11265", + "nom_de_la_commune": "NIORT DE SAULT", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7837312275, + 1.99823215105 + ], + "libelle_d_acheminement": "NIORT DE SAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99823215105, + 42.7837312275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f8ea0dc8351a7c9d5b4de6e0e6a16a1b089dae9", + "fields": { + "code_commune_insee": "02099", + "nom_de_la_commune": "BONNESVALYN", + "code_postal": "02400", + "coordonnees_gps": [ + 49.1264049496, + 3.32541661771 + ], + "libelle_d_acheminement": "BONNESVALYN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32541661771, + 49.1264049496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0352573ecd654ba2eae831b5835122181434f48", + "fields": { + "code_commune_insee": "11272", + "nom_de_la_commune": "PALAJA", + "code_postal": "11570", + "coordonnees_gps": [ + 43.1671058484, + 2.38726861011 + ], + "libelle_d_acheminement": "PALAJA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38726861011, + 43.1671058484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd9a4694895f83cff557386d9c9df744f3e16705", + "fields": { + "code_commune_insee": "02100", + "nom_de_la_commune": "BONY", + "code_postal": "02420", + "coordonnees_gps": [ + 49.9908643724, + 3.22116002448 + ], + "libelle_d_acheminement": "BONY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22116002448, + 49.9908643724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "effd6af247e6cd8327af332268e8ce293449728d", + "fields": { + "code_commune_insee": "11277", + "nom_de_la_commune": "PECHARIC ET LE PY", + "code_postal": "11420", + "coordonnees_gps": [ + 43.193546034, + 1.82736532628 + ], + "libelle_d_acheminement": "PECHARIC ET LE PY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82736532628, + 43.193546034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79a0c53a7d8228e68cd7fed07b1fc4ad600cc904", + "fields": { + "code_commune_insee": "02101", + "nom_de_la_commune": "BOSMONT SUR SERRE", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7390653213, + 3.86733568391 + ], + "libelle_d_acheminement": "BOSMONT SUR SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86733568391, + 49.7390653213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c51a0c0e344084d8906be9b86a9d47609341c03c", + "fields": { + "code_commune_insee": "11290", + "nom_de_la_commune": "PLAIGNE", + "code_postal": "11420", + "coordonnees_gps": [ + 43.1706673671, + 1.80732697623 + ], + "libelle_d_acheminement": "PLAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80732697623, + 43.1706673671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f052e19f8f7cc9061f743f6547071e7c2f8829a", + "fields": { + "code_commune_insee": "02106", + "nom_de_la_commune": "BOURG ET COMIN", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4022354002, + 3.65944342757 + ], + "libelle_d_acheminement": "BOURG ET COMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65944342757, + 49.4022354002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d97a158d6038bb27c8cf10792af23d526a0fcd91", + "fields": { + "code_commune_insee": "11293", + "nom_de_la_commune": "POMAS", + "code_postal": "11250", + "coordonnees_gps": [ + 43.1071292824, + 2.28053295596 + ], + "libelle_d_acheminement": "POMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28053295596, + 43.1071292824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22efe0f2611d36d7366406f5cb27ad9d23b4d369", + "fields": { + "code_commune_insee": "02107", + "nom_de_la_commune": "BOURGUIGNON SOUS COUCY", + "code_postal": "02300", + "coordonnees_gps": [ + 49.5427641575, + 3.15422957657 + ], + "libelle_d_acheminement": "BOURGUIGNON SOUS COUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15422957657, + 49.5427641575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16aedae11398cac0316f8b46c6c123355a59bfab", + "fields": { + "code_commune_insee": "11294", + "nom_de_la_commune": "POMY", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0607354639, + 2.05930441377 + ], + "libelle_d_acheminement": "POMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05930441377, + 43.0607354639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77ebac8d76aca4b81cbafc526935372dcbddf63f", + "fields": { + "code_commune_insee": "02112", + "nom_de_la_commune": "BRANCOURT LE GRAND", + "code_postal": "02110", + "coordonnees_gps": [ + 49.98081057, + 3.39391192109 + ], + "libelle_d_acheminement": "BRANCOURT LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39391192109, + 49.98081057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "447ca2a47600d0c065e8ac29f6f76f2dafc58822", + "fields": { + "code_commune_insee": "11301", + "nom_de_la_commune": "PUICHERIC", + "code_postal": "11700", + "coordonnees_gps": [ + 43.2293360442, + 2.61236027776 + ], + "libelle_d_acheminement": "PUICHERIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61236027776, + 43.2293360442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37b4bb294a51c3a7f3535d8b9f4e8ddd2a835cfb", + "fields": { + "code_commune_insee": "02114", + "nom_de_la_commune": "BRASLES", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0567927241, + 3.42453409652 + ], + "libelle_d_acheminement": "BRASLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42453409652, + 49.0567927241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70cf2e1d6c9a14d9b0bdbbec0b6448c743029ea8", + "fields": { + "code_commune_insee": "11302", + "nom_de_la_commune": "PUILAURENS", + "code_postal": "11140", + "coordonnees_gps": [ + 42.8132848695, + 2.29884099838 + ], + "libelle_d_acheminement": "PUILAURENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29884099838, + 42.8132848695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ec562b06249dbde73aaea79487bd778ee558c87", + "fields": { + "code_commune_insee": "02117", + "nom_de_la_commune": "BRAY ST CHRISTOPHE", + "code_postal": "02480", + "coordonnees_gps": [ + 49.7746700975, + 3.14070965091 + ], + "libelle_d_acheminement": "BRAY ST CHRISTOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14070965091, + 49.7746700975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35289bd999d1949aa573d911032a7eef3bc22f64", + "fields": { + "code_commune_insee": "11303", + "nom_de_la_commune": "PUIVERT", + "code_postal": "11230", + "coordonnees_gps": [ + 42.9088493046, + 2.05940105724 + ], + "libelle_d_acheminement": "PUIVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05940105724, + 42.9088493046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21b7257444d9abe9fdfa54d17093eea107947e18", + "fields": { + "code_commune_insee": "02123", + "nom_de_la_commune": "BRISSAY CHOIGNY", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7228299725, + 3.39639768252 + ], + "libelle_d_acheminement": "BRISSAY CHOIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39639768252, + 49.7228299725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c78ba65941bb421c657f70b053b0b3fe6ea0cc8", + "fields": { + "code_commune_insee": "11309", + "nom_de_la_commune": "RENNES LE CHATEAU", + "code_postal": "11190", + "coordonnees_gps": [ + 42.9139113416, + 2.27362239522 + ], + "libelle_d_acheminement": "RENNES LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27362239522, + 42.9139113416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01abfa52891a63a5585c4474bc713382b2ec9513", + "fields": { + "code_commune_insee": "02126", + "nom_de_la_commune": "BRUNEHAMEL", + "code_postal": "02360", + "coordonnees_gps": [ + 49.7718100626, + 4.18649398572 + ], + "libelle_d_acheminement": "BRUNEHAMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18649398572, + 49.7718100626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75e5ca1067d73078c22a264a5f79f7ed340582b1", + "fields": { + "code_commune_insee": "11310", + "nom_de_la_commune": "RENNES LES BAINS", + "code_postal": "11190", + "coordonnees_gps": [ + 42.9243873687, + 2.34144050489 + ], + "libelle_d_acheminement": "RENNES LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34144050489, + 42.9243873687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1073210a23890ea1e6cbef9a6b071f62fe55224", + "fields": { + "code_commune_insee": "02128", + "nom_de_la_commune": "BRUYERES ET MONTBERAULT", + "code_postal": "02860", + "coordonnees_gps": [ + 49.5239615523, + 3.66954693798 + ], + "libelle_d_acheminement": "BRUYERES ET MONTBERAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66954693798, + 49.5239615523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4894c91ead0f12c6430565303a49ee81591ab6fb", + "fields": { + "code_commune_insee": "11312", + "nom_de_la_commune": "RIBOUISSE", + "code_postal": "11270", + "coordonnees_gps": [ + 43.1712295534, + 1.90430739678 + ], + "libelle_d_acheminement": "RIBOUISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90430739678, + 43.1712295534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfc5339402ff8fa99c1ae44dfc5b1c4f2ebe06aa", + "fields": { + "code_commune_insee": "02129", + "nom_de_la_commune": "BRUYS", + "code_postal": "02220", + "coordonnees_gps": [ + 49.2621681637, + 3.56863439754 + ], + "libelle_d_acheminement": "BRUYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56863439754, + 49.2621681637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a6e1cd956f9129b2baa62732dcd56cbccff198f", + "fields": { + "code_commune_insee": "11314", + "nom_de_la_commune": "RIEUX EN VAL", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0785029535, + 2.54068701739 + ], + "libelle_d_acheminement": "RIEUX EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54068701739, + 43.0785029535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc0fef17502822da2e3f8c9bf29dbd0280c1090d", + "fields": { + "code_commune_insee": "02131", + "nom_de_la_commune": "BUCY LE LONG", + "code_postal": "02880", + "coordonnees_gps": [ + 49.3884447185, + 3.39828602712 + ], + "libelle_d_acheminement": "BUCY LE LONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39828602712, + 49.3884447185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f280ccf7ad4c06dedc59f2415d130487ef48d171", + "fields": { + "code_commune_insee": "11327", + "nom_de_la_commune": "ROULLENS", + "code_postal": "11290", + "coordonnees_gps": [ + 43.1658809134, + 2.26951945766 + ], + "libelle_d_acheminement": "ROULLENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26951945766, + 43.1658809134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c19bc2715e2319ab519c78546f2c540f33f8063", + "fields": { + "code_commune_insee": "02133", + "nom_de_la_commune": "BUCY LES PIERREPONT", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6467998089, + 3.90358311553 + ], + "libelle_d_acheminement": "BUCY LES PIERREPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90358311553, + 49.6467998089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a801309af390f6cc520aafef4141f2e1087161ab", + "fields": { + "code_commune_insee": "11330", + "nom_de_la_commune": "RUSTIQUES", + "code_postal": "11800", + "coordonnees_gps": [ + 43.2179978056, + 2.47940555787 + ], + "libelle_d_acheminement": "RUSTIQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47940555787, + 43.2179978056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d91ba30dbe239b264657d1cc3ce7bbee50f4157b", + "fields": { + "code_commune_insee": "02140", + "nom_de_la_commune": "CAMELIN", + "code_postal": "02300", + "coordonnees_gps": [ + 49.5205248253, + 3.12854853594 + ], + "libelle_d_acheminement": "CAMELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12854853594, + 49.5205248253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13b921061f033147f92c1084d64301cf2eeec1f7", + "fields": { + "code_commune_insee": "11332", + "nom_de_la_commune": "ST ANDRE DE ROQUELONGUE", + "code_postal": "11200", + "coordonnees_gps": [ + 43.0927941425, + 2.84905910088 + ], + "libelle_d_acheminement": "ST ANDRE DE ROQUELONGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84905910088, + 43.0927941425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9e59505a45b48a6e12085780920e7dfe78b49ea", + "fields": { + "code_commune_insee": "02143", + "nom_de_la_commune": "LE CATELET", + "code_postal": "02420", + "coordonnees_gps": [ + 50.0009779444, + 3.2423098464 + ], + "libelle_d_acheminement": "LE CATELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2423098464, + 50.0009779444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2876c203172bda770ebe6cc97c916fa8498905d8", + "fields": { + "code_commune_insee": "11338", + "nom_de_la_commune": "ST COUAT DU RAZES", + "code_postal": "11300", + "coordonnees_gps": [ + 42.9974690927, + 2.10792269276 + ], + "libelle_d_acheminement": "ST COUAT DU RAZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10792269276, + 42.9974690927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04fcea091ddf9ce187919ee8ffcbfb2480897063", + "fields": { + "code_commune_insee": "02148", + "nom_de_la_commune": "CELLES SUR AISNE", + "code_postal": "02370", + "coordonnees_gps": [ + 49.4159264546, + 3.47446927431 + ], + "libelle_d_acheminement": "CELLES SUR AISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47446927431, + 49.4159264546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "774abf4a9f2b074137a62620965229cff26b11df", + "fields": { + "code_commune_insee": "11339", + "nom_de_la_commune": "ST DENIS", + "code_postal": "11310", + "coordonnees_gps": [ + 43.3563040517, + 2.21782788415 + ], + "libelle_d_acheminement": "ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21782788415, + 43.3563040517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c9b3903a70acbefc43687e184306b4a3015caf0", + "fields": { + "ligne_5": "CESSIERES", + "code_commune_insee": "02153", + "libelle_d_acheminement": "CESSIERES SUZY", + "code_postal": "02320", + "nom_de_la_commune": "CESSIERES SUZY", + "coordonnees_gps": [ + 49.5595788079, + 3.50190405701 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50190405701, + 49.5595788079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb15cf6472b6d10b3a8e882753b53d5d186d2c67", + "fields": { + "code_commune_insee": "11340", + "nom_de_la_commune": "STE EULALIE", + "code_postal": "11170", + "coordonnees_gps": [ + 43.2427203696, + 2.20565895321 + ], + "libelle_d_acheminement": "STE EULALIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20565895321, + 43.2427203696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8834c77caab110c29797507766f89788969e111f", + "fields": { + "code_commune_insee": "02156", + "nom_de_la_commune": "CHALANDRY", + "code_postal": "02270", + "coordonnees_gps": [ + 49.6702675165, + 3.64445509533 + ], + "libelle_d_acheminement": "CHALANDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64445509533, + 49.6702675165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b129b1216248e9116cf3d6e63c66ea878b7b78f2", + "fields": { + "code_commune_insee": "11344", + "nom_de_la_commune": "ST HILAIRE", + "code_postal": "11250", + "coordonnees_gps": [ + 43.0789376145, + 2.33839378811 + ], + "libelle_d_acheminement": "ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33839378811, + 43.0789376145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93f9a312ecce5a3b322294b725557a8160c1e11b", + "fields": { + "code_commune_insee": "02170", + "nom_de_la_commune": "CHATILLON SUR OISE", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7938161671, + 3.41630401708 + ], + "libelle_d_acheminement": "CHATILLON SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41630401708, + 49.7938161671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac47c8c406f214714d8cc9b284884aadc6c75010", + "fields": { + "code_commune_insee": "11352", + "nom_de_la_commune": "ST LOUIS ET PARAHOU", + "code_postal": "11500", + "coordonnees_gps": [ + 42.851588066, + 2.32197109444 + ], + "libelle_d_acheminement": "ST LOUIS ET PARAHOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32197109444, + 42.851588066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ac786d4fd9d5f855b3461e3fc37a9329fe2dd4a", + "fields": { + "code_commune_insee": "02173", + "nom_de_la_commune": "CHAUNY", + "code_postal": "02300", + "coordonnees_gps": [ + 49.619880673, + 3.21875355041 + ], + "libelle_d_acheminement": "CHAUNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21875355041, + 49.619880673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d04f017a086355bb3e2f01f44d25058587d0bc6", + "fields": { + "code_commune_insee": "11355", + "nom_de_la_commune": "ST MARTIN DE VILLEREGLAN", + "code_postal": "11300", + "coordonnees_gps": [ + 43.1038939734, + 2.21100886207 + ], + "libelle_d_acheminement": "ST MARTIN DE VILLEREGLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21100886207, + 43.1038939734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaf4fcf719be73330a50cd0fee882bc158534aab", + "fields": { + "code_commune_insee": "02179", + "nom_de_la_commune": "CHERY CHARTREUVE", + "code_postal": "02220", + "coordonnees_gps": [ + 49.2556867214, + 3.60484629397 + ], + "libelle_d_acheminement": "CHERY CHARTREUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60484629397, + 49.2556867214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c98f072b27d951873cc69385c9565881bcfba837", + "fields": { + "code_commune_insee": "11363", + "nom_de_la_commune": "ST PIERRE DES CHAMPS", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0493029283, + 2.6079517501 + ], + "libelle_d_acheminement": "ST PIERRE DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6079517501, + 43.0493029283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5473208aa90d78cccc10420e57b9afede76246c", + "fields": { + "code_commune_insee": "02193", + "nom_de_la_commune": "CIERGES", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1648316775, + 3.60411788847 + ], + "libelle_d_acheminement": "CIERGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60411788847, + 49.1648316775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b86277feefaeaac7b918253725a1597e604180f7", + "fields": { + "code_commune_insee": "11367", + "nom_de_la_commune": "SAISSAC", + "code_postal": "11310", + "coordonnees_gps": [ + 43.3660090567, + 2.16153708941 + ], + "libelle_d_acheminement": "SAISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16153708941, + 43.3660090567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbfcb6560262171b998115a324a39efe612f7019", + "fields": { + "code_commune_insee": "02198", + "nom_de_la_commune": "CLAMECY", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4281077825, + 3.36378754787 + ], + "libelle_d_acheminement": "CLAMECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36378754787, + 49.4281077825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4aa702b30f2c52b234e6c4d10cef6f8177c59213", + "fields": { + "code_commune_insee": "11376", + "nom_de_la_commune": "LA SERPENT", + "code_postal": "11190", + "coordonnees_gps": [ + 42.9646308122, + 2.17458556586 + ], + "libelle_d_acheminement": "LA SERPENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17458556586, + 42.9646308122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0c2153760c6d1155e08bf1b4483188a1cb2c070", + "fields": { + "code_commune_insee": "02209", + "nom_de_la_commune": "CONDE EN BRIE", + "code_postal": "02330", + "coordonnees_gps": [ + 49.0016101753, + 3.56116999962 + ], + "libelle_d_acheminement": "CONDE EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56116999962, + 49.0016101753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f929e5e8432bc1a0a004a6866ac75df1a3b7bc32", + "fields": { + "code_commune_insee": "11382", + "nom_de_la_commune": "SOUILHANELS", + "code_postal": "11400", + "coordonnees_gps": [ + 43.3559262458, + 1.91704210416 + ], + "libelle_d_acheminement": "SOUILHANELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91704210416, + 43.3559262458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf89b9c44b6fe14d072169f5225c0819157d935b", + "fields": { + "code_commune_insee": "02214", + "nom_de_la_commune": "CONTESCOURT", + "code_postal": "02680", + "coordonnees_gps": [ + 49.7916934603, + 3.23428350737 + ], + "libelle_d_acheminement": "CONTESCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23428350737, + 49.7916934603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51f3a69134e71e25731816b3cbc3e3dd05e10d71", + "fields": { + "code_commune_insee": "11385", + "nom_de_la_commune": "SOUPEX", + "code_postal": "11320", + "coordonnees_gps": [ + 43.3819001261, + 1.89059609045 + ], + "libelle_d_acheminement": "SOUPEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89059609045, + 43.3819001261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66bc4d63629e2c06c654ce7c6da6f6e620203c3f", + "fields": { + "code_commune_insee": "02225", + "nom_de_la_commune": "COURCHAMPS", + "code_postal": "02810", + "coordonnees_gps": [ + 49.1164230809, + 3.26303714363 + ], + "libelle_d_acheminement": "COURCHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26303714363, + 49.1164230809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f78ea738a5ffdc0b61211b7ddb7935a0c7aece97", + "fields": { + "code_commune_insee": "11391", + "nom_de_la_commune": "LA TOURETTE CABARDES", + "code_postal": "11380", + "coordonnees_gps": [ + 43.3821297406, + 2.32541957732 + ], + "libelle_d_acheminement": "LA TOURETTE CABARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32541957732, + 43.3821297406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74988400146683845df9fad12257ef552faa324f", + "fields": { + "code_commune_insee": "02226", + "nom_de_la_commune": "COURMELLES", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3434328339, + 3.30199112892 + ], + "libelle_d_acheminement": "COURMELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30199112892, + 49.3434328339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93dc6ffea783d50b99d5a2a2760b986b963d2598", + "fields": { + "code_commune_insee": "11393", + "nom_de_la_commune": "TOUROUZELLE", + "code_postal": "11200", + "coordonnees_gps": [ + 43.247184256, + 2.72709501548 + ], + "libelle_d_acheminement": "TOUROUZELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72709501548, + 43.247184256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb23d72bb7a20d0f9167e4153b775228c54c1d5e", + "fields": { + "code_commune_insee": "02228", + "nom_de_la_commune": "COURTEMONT VARENNES", + "code_postal": "02850", + "coordonnees_gps": [ + 49.0715288855, + 3.54168079771 + ], + "libelle_d_acheminement": "COURTEMONT VARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54168079771, + 49.0715288855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e02007ebe3749a83e8ec2e28c36b3a495e5fc596", + "fields": { + "code_commune_insee": "11398", + "nom_de_la_commune": "TREILLES", + "code_postal": "11510", + "coordonnees_gps": [ + 42.9180396161, + 2.9426895388 + ], + "libelle_d_acheminement": "TREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9426895388, + 42.9180396161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "745d5b6cc9a0f044e8466a7b960b2d4677509363", + "fields": { + "code_commune_insee": "02233", + "nom_de_la_commune": "CRAMAILLE", + "code_postal": "02130", + "coordonnees_gps": [ + 49.2285541737, + 3.45227303073 + ], + "libelle_d_acheminement": "CRAMAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45227303073, + 49.2285541737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "896ba54e246ab6956cc832b2a612f20764c38a2f", + "fields": { + "code_commune_insee": "11402", + "nom_de_la_commune": "VALMIGERE", + "code_postal": "11580", + "coordonnees_gps": [ + 42.9838312232, + 2.38430278672 + ], + "libelle_d_acheminement": "VALMIGERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38430278672, + 42.9838312232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2192488298c65fbaf91ebc0e7c09add2d697e9c6", + "fields": { + "code_commune_insee": "02237", + "nom_de_la_commune": "CRECY SUR SERRE", + "code_postal": "02270", + "coordonnees_gps": [ + 49.698624191, + 3.62256564798 + ], + "libelle_d_acheminement": "CRECY SUR SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62256564798, + 49.698624191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3810f7998fb2b94199377c3772773eb27538166f", + "fields": { + "code_commune_insee": "11404", + "nom_de_la_commune": "VENTENAC CABARDES", + "code_postal": "11610", + "coordonnees_gps": [ + 43.275168057, + 2.28232242512 + ], + "libelle_d_acheminement": "VENTENAC CABARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28232242512, + 43.275168057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ad9b83a1879001e4985cf46b0b64b47fcfe7427", + "fields": { + "code_commune_insee": "02238", + "nom_de_la_commune": "CREPY", + "code_postal": "02870", + "coordonnees_gps": [ + 49.6082534854, + 3.5125070585 + ], + "libelle_d_acheminement": "CREPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5125070585, + 49.6082534854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc1f5232a33b86d20468c7a6d3e262e7ad0a0fdd", + "fields": { + "code_commune_insee": "11410", + "nom_de_la_commune": "VILLALIER", + "code_postal": "11600", + "coordonnees_gps": [ + 43.2521774853, + 2.41886505909 + ], + "libelle_d_acheminement": "VILLALIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41886505909, + 43.2521774853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d77447d2c97ebdd294902826d0be73f1e76852fb", + "fields": { + "code_commune_insee": "02239", + "nom_de_la_commune": "CREZANCY", + "code_postal": "02650", + "coordonnees_gps": [ + 49.0428713757, + 3.51138201699 + ], + "libelle_d_acheminement": "CREZANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51138201699, + 49.0428713757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5fc4959d170a944dc80b651bddc76b5f3080977", + "fields": { + "code_commune_insee": "11412", + "nom_de_la_commune": "VILLARDEBELLE", + "code_postal": "11580", + "coordonnees_gps": [ + 43.012050439, + 2.40517931832 + ], + "libelle_d_acheminement": "VILLARDEBELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40517931832, + 43.012050439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "216193da7f4a4234a6960a6acd913651fb782972", + "fields": { + "code_commune_insee": "02260", + "nom_de_la_commune": "DANIZY", + "code_postal": "02800", + "coordonnees_gps": [ + 49.6665738585, + 3.40089557013 + ], + "libelle_d_acheminement": "DANIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40089557013, + 49.6665738585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a380a11520a49ad24f80e9afeb12eaed07a86ab0", + "fields": { + "code_commune_insee": "11414", + "nom_de_la_commune": "VILLAR EN VAL", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0808550222, + 2.44510735168 + ], + "libelle_d_acheminement": "VILLAR EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44510735168, + 43.0808550222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dfe3114f8ee71049e78879173b65f84c22b7536", + "fields": { + "code_commune_insee": "02274", + "nom_de_la_commune": "EBOULEAU", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6781110152, + 3.88259465732 + ], + "libelle_d_acheminement": "EBOULEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88259465732, + 49.6781110152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f55dc582aca3064c87ba109c00c4be3c1bf48b17", + "fields": { + "code_commune_insee": "11424", + "nom_de_la_commune": "VILLEFORT", + "code_postal": "11230", + "coordonnees_gps": [ + 42.9512982212, + 2.04814958894 + ], + "libelle_d_acheminement": "VILLEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04814958894, + 42.9512982212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6e16e4e9edbc93b4ad01a2c809bf836bc19cdc0", + "fields": { + "code_commune_insee": "02276", + "nom_de_la_commune": "ENGLANCOURT", + "code_postal": "02260", + "coordonnees_gps": [ + 49.9258825845, + 3.80718694445 + ], + "libelle_d_acheminement": "ENGLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80718694445, + 49.9258825845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e5d843e206220fba72085c39b09c72dbc6ffcb7", + "fields": { + "code_commune_insee": "11431", + "nom_de_la_commune": "VILLENEUVE LES CORBIERES", + "code_postal": "11360", + "coordonnees_gps": [ + 42.9584800361, + 2.7700013115 + ], + "libelle_d_acheminement": "VILLENEUVE LES CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7700013115, + 42.9584800361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5122416646238ddaa14b98dafe498e39d2c03e09", + "fields": { + "code_commune_insee": "02277", + "nom_de_la_commune": "EPAGNY", + "code_postal": "02290", + "coordonnees_gps": [ + 49.471791053, + 3.25384432012 + ], + "libelle_d_acheminement": "EPAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25384432012, + 49.471791053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af3376a21e94d9768d5e047ca78ee728fe299cae", + "fields": { + "code_commune_insee": "11437", + "nom_de_la_commune": "VILLESEQUELANDE", + "code_postal": "11170", + "coordonnees_gps": [ + 43.2329788288, + 2.23031885355 + ], + "libelle_d_acheminement": "VILLESEQUELANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23031885355, + 43.2329788288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f437c788b05edb74edb3c933ed2ea493b7e1ac87", + "fields": { + "code_commune_insee": "02278", + "nom_de_la_commune": "EPARCY", + "code_postal": "02500", + "coordonnees_gps": [ + 49.8861370225, + 4.0702371205 + ], + "libelle_d_acheminement": "EPARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0702371205, + 49.8861370225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b09f7b3fe100ade9c276bdc44fce8d4b2b148b70", + "fields": { + "code_commune_insee": "11440", + "nom_de_la_commune": "VILLETRITOULS", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0752738, + 2.48956786102 + ], + "libelle_d_acheminement": "VILLETRITOULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48956786102, + 43.0752738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "208be9b98349648d4034e382003a94f8d1543245", + "fields": { + "code_commune_insee": "02287", + "nom_de_la_commune": "ESSIGNY LE GRAND", + "code_postal": "02690", + "coordonnees_gps": [ + 49.7740780116, + 3.27214459324 + ], + "libelle_d_acheminement": "ESSIGNY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27214459324, + 49.7740780116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6a841217898611a257a31c83f284c2a1b67b001", + "fields": { + "code_commune_insee": "12003", + "nom_de_la_commune": "LES ALBRES", + "code_postal": "12220", + "coordonnees_gps": [ + 44.5408024664, + 2.18023147565 + ], + "libelle_d_acheminement": "LES ALBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18023147565, + 44.5408024664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8215e171d6cc566879e95c265346264e3bd03c34", + "fields": { + "code_commune_insee": "02292", + "nom_de_la_commune": "ETAMPES SUR MARNE", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0317558536, + 3.41777664616 + ], + "libelle_d_acheminement": "ETAMPES SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41777664616, + 49.0317558536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30b8041b3765c5ca00ad49bab6a1e90cb961f04d", + "fields": { + "code_commune_insee": "12007", + "nom_de_la_commune": "AMBEYRAC", + "code_postal": "12260", + "coordonnees_gps": [ + 44.4943534957, + 1.9357162857 + ], + "libelle_d_acheminement": "AMBEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9357162857, + 44.4943534957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9adab18a36601b68842e3892adfc06e4c1eb228", + "fields": { + "code_commune_insee": "02297", + "nom_de_la_commune": "ETREPILLY", + "code_postal": "02400", + "coordonnees_gps": [ + 49.0822681369, + 3.34802063568 + ], + "libelle_d_acheminement": "ETREPILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34802063568, + 49.0822681369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8d4a1db4aa96bf6318223bc550d15f1840a59ce", + "fields": { + "code_commune_insee": "12009", + "nom_de_la_commune": "ARNAC SUR DOURDOU", + "code_postal": "12360", + "coordonnees_gps": [ + 43.7187010455, + 2.94592121582 + ], + "libelle_d_acheminement": "ARNAC SUR DOURDOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94592121582, + 43.7187010455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4582b3bafed82d9cfb2db2292da0e97c006695b", + "fields": { + "code_commune_insee": "02302", + "nom_de_la_commune": "FAVEROLLES", + "code_postal": "02600", + "coordonnees_gps": [ + 49.227064775, + 3.17814481548 + ], + "libelle_d_acheminement": "FAVEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17814481548, + 49.227064775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bcbdb56c89dd48287763b2d6cd9361ec58a5608", + "fields": { + "code_commune_insee": "12011", + "nom_de_la_commune": "ARVIEU", + "code_postal": "12120", + "coordonnees_gps": [ + 44.1907834578, + 2.66728393102 + ], + "libelle_d_acheminement": "ARVIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66728393102, + 44.1907834578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99ea14cd435b0d8275a035c9c8ea657c5a30f418", + "fields": { + "ligne_5": "MOSLOY", + "code_commune_insee": "02307", + "libelle_d_acheminement": "LA FERTE MILON", + "code_postal": "02460", + "nom_de_la_commune": "LA FERTE MILON", + "coordonnees_gps": [ + 49.1759874423, + 3.14237641756 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14237641756, + 49.1759874423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7fcbb155e48999b6d4059d42ee693bd3ac44604", + "fields": { + "ligne_5": "COMBES", + "code_commune_insee": "12013", + "libelle_d_acheminement": "AUBIN", + "code_postal": "12110", + "nom_de_la_commune": "AUBIN", + "coordonnees_gps": [ + 44.5318545051, + 2.25591796926 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25591796926, + 44.5318545051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6417c21b82d9d20fc7f6c63067616ee65d081a0b", + "fields": { + "ligne_5": "LE SART", + "code_commune_insee": "02308", + "libelle_d_acheminement": "FESMY LE SART", + "code_postal": "02450", + "nom_de_la_commune": "FESMY LE SART", + "coordonnees_gps": [ + 50.0482154856, + 3.69825469199 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69825469199, + 50.0482154856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dd88d929a58c43165c10baf621c681e04dee798", + "fields": { + "code_commune_insee": "12016", + "nom_de_la_commune": "AUZITS", + "code_postal": "12390", + "coordonnees_gps": [ + 44.4995549267, + 2.32166840443 + ], + "libelle_d_acheminement": "AUZITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32166840443, + 44.4995549267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a073e0bc80f2aa2dcbde6000a3c9e17d2474aff2", + "fields": { + "code_commune_insee": "02310", + "nom_de_la_commune": "FIEULAINE", + "code_postal": "02110", + "coordonnees_gps": [ + 49.9018502295, + 3.44594045878 + ], + "libelle_d_acheminement": "FIEULAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44594045878, + 49.9018502295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35d9f580faf463560c4d0477cf9ef0f650a4fb7f", + "fields": { + "ligne_5": "LA BASTIDE L EVEQUE", + "code_commune_insee": "12021", + "libelle_d_acheminement": "LE BAS SEGALA", + "code_postal": "12200", + "nom_de_la_commune": "LE BAS SEGALA", + "coordonnees_gps": [ + 44.3386235465, + 2.14341113213 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14341113213, + 44.3386235465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "867b80098b2b1b6844cd4036c7f5eb4c4000c7a1", + "fields": { + "code_commune_insee": "02312", + "nom_de_la_commune": "LA FLAMENGRIE", + "code_postal": "02260", + "coordonnees_gps": [ + 50.0002036206, + 3.92466690244 + ], + "libelle_d_acheminement": "LA FLAMENGRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92466690244, + 50.0002036206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89413cc6bb7273f3a4b8b7c2ace046ab313a06f8", + "fields": { + "code_commune_insee": "12022", + "nom_de_la_commune": "LA BASTIDE PRADINES", + "code_postal": "12490", + "coordonnees_gps": [ + 44.0105483436, + 3.05634130776 + ], + "libelle_d_acheminement": "LA BASTIDE PRADINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05634130776, + 44.0105483436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b92af7cafe53c3c486c1c6a416edaa507ad177b7", + "fields": { + "code_commune_insee": "02324", + "nom_de_la_commune": "FONTENELLE", + "code_postal": "02170", + "coordonnees_gps": [ + 50.0309452362, + 3.84625365761 + ], + "libelle_d_acheminement": "FONTENELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84625365761, + 50.0309452362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ab8d79df035510e8a27908ba3e5b6d1473cd7b5", + "fields": { + "code_commune_insee": "12031", + "nom_de_la_commune": "BOURNAZEL", + "code_postal": "12390", + "coordonnees_gps": [ + 44.4601104771, + 2.30271323299 + ], + "libelle_d_acheminement": "BOURNAZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30271323299, + 44.4601104771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84f0dcf320450c9c1c90699757dc4cb94f03e538", + "fields": { + "code_commune_insee": "02329", + "nom_de_la_commune": "FOURDRAIN", + "code_postal": "02870", + "coordonnees_gps": [ + 49.6194184451, + 3.46049121118 + ], + "libelle_d_acheminement": "FOURDRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46049121118, + 49.6194184451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5286c17247362afdc26b742a9cfdf404175915f", + "fields": { + "code_commune_insee": "12041", + "nom_de_la_commune": "CABANES", + "code_postal": "12800", + "coordonnees_gps": [ + 44.191255782, + 2.29209486155 + ], + "libelle_d_acheminement": "CABANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29209486155, + 44.191255782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fbb7735dd75b404f400f7b6a4c4e2c7d4d372ce", + "fields": { + "code_commune_insee": "02332", + "nom_de_la_commune": "FRESNES EN TARDENOIS", + "code_postal": "02130", + "coordonnees_gps": [ + 49.1427948273, + 3.54893406985 + ], + "libelle_d_acheminement": "FRESNES EN TARDENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54893406985, + 49.1427948273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b63ebf38fbff9bcccc52f26aff703c87083e5bf6", + "fields": { + "code_commune_insee": "12045", + "nom_de_la_commune": "CAMBOULAZET", + "code_postal": "12160", + "coordonnees_gps": [ + 44.2226481528, + 2.44714046316 + ], + "libelle_d_acheminement": "CAMBOULAZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44714046316, + 44.2226481528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5245a34bc003367ccfb666ad8f8ca95721b4f44d", + "fields": { + "code_commune_insee": "02333", + "nom_de_la_commune": "FRESNES SOUS COUCY", + "code_postal": "02380", + "coordonnees_gps": [ + 49.5548078585, + 3.37018022508 + ], + "libelle_d_acheminement": "FRESNES SOUS COUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37018022508, + 49.5548078585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42a876e08e2ec1c09ceba27d2293efefc2fdb708", + "fields": { + "code_commune_insee": "12051", + "nom_de_la_commune": "CANTOIN", + "code_postal": "12420", + "coordonnees_gps": [ + 44.8387938503, + 2.82485729528 + ], + "libelle_d_acheminement": "CANTOIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82485729528, + 44.8387938503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dba63a4dd99efdb59ef62631d7e58bea3c139dca", + "fields": { + "code_commune_insee": "02335", + "nom_de_la_commune": "FRESSANCOURT", + "code_postal": "02800", + "coordonnees_gps": [ + 49.6284783975, + 3.42727910427 + ], + "libelle_d_acheminement": "FRESSANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42727910427, + 49.6284783975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26742deb246d1c1a8c45fa653ffa210d743548e4", + "fields": { + "code_commune_insee": "12057", + "nom_de_la_commune": "CASSAGNES BEGONHES", + "code_postal": "12120", + "coordonnees_gps": [ + 44.1789643613, + 2.51462788603 + ], + "libelle_d_acheminement": "CASSAGNES BEGONHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51462788603, + 44.1789643613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9967bae362ed3deba499f728217968d7dc73b00e", + "fields": { + "code_commune_insee": "02336", + "nom_de_la_commune": "FRIERES FAILLOUEL", + "code_postal": "02700", + "coordonnees_gps": [ + 49.6835552621, + 3.23680430341 + ], + "libelle_d_acheminement": "FRIERES FAILLOUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23680430341, + 49.6835552621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4feacd6a918c32daa5977a0a2516d8e2faa3c81b", + "fields": { + "code_commune_insee": "12060", + "nom_de_la_commune": "CASTELMARY", + "code_postal": "12800", + "coordonnees_gps": [ + 44.1721922742, + 2.24442015696 + ], + "libelle_d_acheminement": "CASTELMARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24442015696, + 44.1721922742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "968a98629b1b93509f275c31dd6d6607fe1b5513", + "fields": { + "code_commune_insee": "02345", + "nom_de_la_commune": "GIBERCOURT", + "code_postal": "02440", + "coordonnees_gps": [ + 49.7393520234, + 3.28269647304 + ], + "libelle_d_acheminement": "GIBERCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28269647304, + 49.7393520234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a720283ee6538c032a5dacc5c92ad16a6788112", + "fields": { + "code_commune_insee": "12061", + "nom_de_la_commune": "CASTELNAU DE MANDAILLES", + "code_postal": "12500", + "coordonnees_gps": [ + 44.5310923776, + 2.88749197911 + ], + "libelle_d_acheminement": "CASTELNAU DE MANDAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88749197911, + 44.5310923776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c09764619baa233c10a3c9978ceaa8aefb34e429", + "fields": { + "code_commune_insee": "02355", + "nom_de_la_commune": "GRICOURT", + "code_postal": "02100", + "coordonnees_gps": [ + 49.8869947757, + 3.23960817466 + ], + "libelle_d_acheminement": "GRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23960817466, + 49.8869947757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d1c6e5caa00e0ba2e91284ab153e0efd853a83e", + "fields": { + "code_commune_insee": "12062", + "nom_de_la_commune": "CASTELNAU PEGAYROLS", + "code_postal": "12620", + "coordonnees_gps": [ + 44.1404700763, + 2.92770802784 + ], + "libelle_d_acheminement": "CASTELNAU PEGAYROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92770802784, + 44.1404700763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "268f23e12143089b2a437a4cc88c88634004ca46", + "fields": { + "ligne_5": "GUIGNICOURT", + "code_commune_insee": "02360", + "libelle_d_acheminement": "VILLENEUVE SUR AISNE", + "code_postal": "02190", + "nom_de_la_commune": "VILLENEUVE SUR AISNE", + "coordonnees_gps": [ + 49.4433017606, + 3.95534582458 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95534582458, + 49.4433017606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a22713ead32b503753f0688bb1963f3a663fad9a", + "fields": { + "code_commune_insee": "12066", + "nom_de_la_commune": "CLAIRVAUX D AVEYRON", + "code_postal": "12330", + "coordonnees_gps": [ + 44.4068685217, + 2.40873081566 + ], + "libelle_d_acheminement": "CLAIRVAUX D AVEYRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40873081566, + 44.4068685217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2391df5f4e643eb333c70c81d42c49f3a2321387", + "fields": { + "code_commune_insee": "02362", + "nom_de_la_commune": "GUIVRY", + "code_postal": "02300", + "coordonnees_gps": [ + 49.651625761, + 3.12103476493 + ], + "libelle_d_acheminement": "GUIVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12103476493, + 49.651625761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2359f4f0e897aea20ef66d03cafc4578d760b57a", + "fields": { + "code_commune_insee": "12067", + "nom_de_la_commune": "LE CLAPIER", + "code_postal": "12540", + "coordonnees_gps": [ + 43.8281226174, + 3.17391582367 + ], + "libelle_d_acheminement": "LE CLAPIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17391582367, + 43.8281226174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79fa3ba2879d61d1cd9214647ac702856b33a2ef", + "fields": { + "code_commune_insee": "02374", + "nom_de_la_commune": "LEHAUCOURT", + "code_postal": "02420", + "coordonnees_gps": [ + 49.911760676, + 3.27675235436 + ], + "libelle_d_acheminement": "LEHAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27675235436, + 49.911760676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6824900ea0ad65d27c5a8b7348f4afd207db0d2", + "fields": { + "code_commune_insee": "12069", + "nom_de_la_commune": "COMBRET", + "code_postal": "12370", + "coordonnees_gps": [ + 43.8406339417, + 2.68483003393 + ], + "libelle_d_acheminement": "COMBRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68483003393, + 43.8406339417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "403ec12f036bee23d12acb1899756035970be2aa", + "fields": { + "code_commune_insee": "02377", + "nom_de_la_commune": "HAUTION", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8721128525, + 3.82719888249 + ], + "libelle_d_acheminement": "HAUTION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82719888249, + 49.8721128525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d46526d13f340c54aca72e38bf8d6cb8d2685e0", + "fields": { + "code_commune_insee": "12072", + "nom_de_la_commune": "COMPREGNAC", + "code_postal": "12100", + "coordonnees_gps": [ + 44.0964783684, + 2.97961913091 + ], + "libelle_d_acheminement": "COMPREGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97961913091, + 44.0964783684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9b211931eb5061e039ae2400b8d9a50dddbc48c", + "fields": { + "code_commune_insee": "02379", + "nom_de_la_commune": "LE HERIE LA VIEVILLE", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8222697536, + 3.65376324724 + ], + "libelle_d_acheminement": "LE HERIE LA VIEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65376324724, + 49.8222697536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8912b533c62f5c1271ae515d788a5cb1f73d6ed0", + "fields": { + "ligne_5": "ST CYPRIEN SUR DOURDOU", + "code_commune_insee": "12076", + "libelle_d_acheminement": "CONQUES EN ROUERGUE", + "code_postal": "12320", + "nom_de_la_commune": "CONQUES EN ROUERGUE", + "coordonnees_gps": [ + 44.5952473002, + 2.4201643341 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4201643341, + 44.5952473002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8e2ba0ea2cf06ea660b45b7dd53d8a0a5505673", + "fields": { + "code_commune_insee": "02391", + "nom_de_la_commune": "JEANTES", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8127276252, + 4.06715502895 + ], + "libelle_d_acheminement": "JEANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06715502895, + 49.8127276252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52f391021ed6bf95663a07ad3fc191be0289a45a", + "fields": { + "code_commune_insee": "12080", + "nom_de_la_commune": "COUPIAC", + "code_postal": "12550", + "coordonnees_gps": [ + 43.947128591, + 2.59314085517 + ], + "libelle_d_acheminement": "COUPIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59314085517, + 43.947128591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86b0c5b2858caaa135e7b0bd76a64e3eca0efdf0", + "fields": { + "code_commune_insee": "02393", + "nom_de_la_commune": "JOUAIGNES", + "code_postal": "02220", + "coordonnees_gps": [ + 49.2928418789, + 3.52818628425 + ], + "libelle_d_acheminement": "JOUAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52818628425, + 49.2928418789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fa45aed697e9b909e863b1deb8865fff3846868", + "fields": { + "code_commune_insee": "12089", + "nom_de_la_commune": "DECAZEVILLE", + "code_postal": "12300", + "coordonnees_gps": [ + 44.567273002, + 2.25243853064 + ], + "libelle_d_acheminement": "DECAZEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25243853064, + 44.567273002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d5ca80744a02cfd10946913c5fca2c124fbd82d", + "fields": { + "code_commune_insee": "02396", + "nom_de_la_commune": "JUMIGNY", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4083834603, + 3.72524669282 + ], + "libelle_d_acheminement": "JUMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72524669282, + 49.4083834603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40314be54854681af451e692d179c443924f42a5", + "fields": { + "code_commune_insee": "12094", + "nom_de_la_commune": "ENTRAYGUES SUR TRUYERE", + "code_postal": "12140", + "coordonnees_gps": [ + 44.6544227279, + 2.57843798744 + ], + "libelle_d_acheminement": "ENTRAYGUES SUR TRUYERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57843798744, + 44.6544227279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd67c4d3b4abd0df06012e847fda147ccb35aac1", + "fields": { + "code_commune_insee": "02397", + "nom_de_la_commune": "JUSSY", + "code_postal": "02480", + "coordonnees_gps": [ + 49.7172050931, + 3.23611732777 + ], + "libelle_d_acheminement": "JUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23611732777, + 49.7172050931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb80e997edc983530b1d1edecfb242e9fbb197d4", + "fields": { + "code_commune_insee": "12096", + "nom_de_la_commune": "ESPALION", + "code_postal": "12500", + "coordonnees_gps": [ + 44.5188717043, + 2.76426608276 + ], + "libelle_d_acheminement": "ESPALION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76426608276, + 44.5188717043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "157b237ab0c772f38f42228a5f0641c7d167dd28", + "fields": { + "code_commune_insee": "02402", + "nom_de_la_commune": "LANCHY", + "code_postal": "02590", + "coordonnees_gps": [ + 49.8292105187, + 3.07415428089 + ], + "libelle_d_acheminement": "LANCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07415428089, + 49.8292105187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "427ee031a113d33d878a7abf30002cc9dbfb00b2", + "fields": { + "code_commune_insee": "12103", + "nom_de_la_commune": "FLORENTIN LA CAPELLE", + "code_postal": "12140", + "coordonnees_gps": [ + 44.6389814573, + 2.64439043133 + ], + "libelle_d_acheminement": "FLORENTIN LA CAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64439043133, + 44.6389814573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d87e35601f30193af1e0f6b4cf7a9fecfc102d3", + "fields": { + "code_commune_insee": "02404", + "nom_de_la_commune": "LANDOUZY LA COUR", + "code_postal": "02140", + "coordonnees_gps": [ + 49.8441415789, + 3.99358286375 + ], + "libelle_d_acheminement": "LANDOUZY LA COUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99358286375, + 49.8441415789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16fa0a36a3c6e7c75e9829a913ee872dc729098a", + "fields": { + "code_commune_insee": "12106", + "nom_de_la_commune": "GABRIAC", + "code_postal": "12340", + "coordonnees_gps": [ + 44.4619669953, + 2.80472572393 + ], + "libelle_d_acheminement": "GABRIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80472572393, + 44.4619669953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f912ff8f21d7adc2644a8d6b2e99058a1d5c9d4", + "fields": { + "code_commune_insee": "02409", + "nom_de_la_commune": "LAPPION", + "code_postal": "02150", + "coordonnees_gps": [ + 49.5898015281, + 3.96457967258 + ], + "libelle_d_acheminement": "LAPPION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96457967258, + 49.5898015281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1734b5587134b79c8cdf06305e3e76c79565939a", + "fields": { + "code_commune_insee": "12119", + "nom_de_la_commune": "LAGUIOLE", + "code_postal": "12210", + "coordonnees_gps": [ + 44.6942493054, + 2.86714579983 + ], + "libelle_d_acheminement": "LAGUIOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86714579983, + 44.6942493054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36500fe8fc179f80e39055a11a75862cd5b548c8", + "fields": { + "code_commune_insee": "02414", + "nom_de_la_commune": "LAVAQUERESSE", + "code_postal": "02450", + "coordonnees_gps": [ + 49.9465387553, + 3.7166420191 + ], + "libelle_d_acheminement": "LAVAQUERESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7166420191, + 49.9465387553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c453783a67fb486dba0d2d88f2941c0e76851bf", + "fields": { + "ligne_5": "SEVERAC L EGLISE", + "code_commune_insee": "12120", + "libelle_d_acheminement": "LAISSAC SEVERAC L EGLISE", + "code_postal": "12310", + "nom_de_la_commune": "LAISSAC SEVERAC L EGLISE", + "coordonnees_gps": [ + 44.3644570513, + 2.81804424075 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81804424075, + 44.3644570513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebd1d9eb65aa2b88cfa906e97fadcc3403a8a5a5", + "fields": { + "code_commune_insee": "02416", + "nom_de_la_commune": "LEME", + "code_postal": "02140", + "coordonnees_gps": [ + 49.843926232, + 3.7576717994 + ], + "libelle_d_acheminement": "LEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7576717994, + 49.843926232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c5109b3da1dea2e1261b0a95f779706354c7fc1", + "fields": { + "code_commune_insee": "12122", + "nom_de_la_commune": "LAPANOUSE DE CERNON", + "code_postal": "12230", + "coordonnees_gps": [ + 44.0062686145, + 3.09638242965 + ], + "libelle_d_acheminement": "LAPANOUSE DE CERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09638242965, + 44.0062686145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bc3b098a35fe56761b5ec5a91d69bd1c12f19a0", + "fields": { + "code_commune_insee": "02422", + "nom_de_la_commune": "LESQUIELLES ST GERMAIN", + "code_postal": "02120", + "coordonnees_gps": [ + 49.931687068, + 3.62808644318 + ], + "libelle_d_acheminement": "LESQUIELLES ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62808644318, + 49.931687068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acc92942c5b4e68347262aa146d3e04c6c6ca33d", + "fields": { + "code_commune_insee": "12127", + "nom_de_la_commune": "LEDERGUES", + "code_postal": "12170", + "coordonnees_gps": [ + 44.0802539644, + 2.4399944588 + ], + "libelle_d_acheminement": "LEDERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4399944588, + 44.0802539644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b538b551805075ef6f7c9acf0f25b54a541ae1a", + "fields": { + "code_commune_insee": "02423", + "nom_de_la_commune": "LEUILLY SOUS COUCY", + "code_postal": "02380", + "coordonnees_gps": [ + 49.4734455044, + 3.35288205414 + ], + "libelle_d_acheminement": "LEUILLY SOUS COUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35288205414, + 49.4734455044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2568b401340ca808bf61d9746e8054051ff87d8", + "fields": { + "code_commune_insee": "12139", + "nom_de_la_commune": "MARNHAGUES ET LATOUR", + "code_postal": "12540", + "coordonnees_gps": [ + 43.8794497161, + 3.04168349472 + ], + "libelle_d_acheminement": "MARNHAGUES ET LATOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04168349472, + 43.8794497161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cbf29b016b58a4007cbce7109fbb136bda8b29c", + "fields": { + "ligne_5": "GLENNES", + "code_commune_insee": "02439", + "libelle_d_acheminement": "LES SEPTVALLONS", + "code_postal": "02160", + "nom_de_la_commune": "LES SEPTVALLONS", + "coordonnees_gps": [ + 49.3603355862, + 3.65567844397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65567844397, + 49.3603355862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c213ad63ea542ce3db472ee17ea9753263f26cee", + "fields": { + "code_commune_insee": "12140", + "nom_de_la_commune": "MARTIEL", + "code_postal": "12200", + "coordonnees_gps": [ + 44.3811674619, + 1.91298331714 + ], + "libelle_d_acheminement": "MARTIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91298331714, + 44.3811674619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "517ad70aee142bba9cff4a05f4605f7e8dd417b6", + "fields": { + "ligne_5": "VAUXCERE", + "code_commune_insee": "02439", + "libelle_d_acheminement": "LES SEPTVALLONS", + "code_postal": "02160", + "nom_de_la_commune": "LES SEPTVALLONS", + "coordonnees_gps": [ + 49.3603355862, + 3.65567844397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65567844397, + 49.3603355862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9439907d4856dd68f56408d7560eed02117d9b1", + "fields": { + "ligne_5": "CENOMES", + "code_commune_insee": "12147", + "libelle_d_acheminement": "MONTAGNOL", + "code_postal": "12360", + "nom_de_la_commune": "MONTAGNOL", + "coordonnees_gps": [ + 43.831157935, + 3.02461521529 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02461521529, + 43.831157935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a2dc3eead1ca5ad0d1871c57ffd2c11d1133751", + "fields": { + "ligne_5": "VILLERS EN PRAYERES", + "code_commune_insee": "02439", + "libelle_d_acheminement": "LES SEPTVALLONS", + "code_postal": "02160", + "nom_de_la_commune": "LES SEPTVALLONS", + "coordonnees_gps": [ + 49.3603355862, + 3.65567844397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65567844397, + 49.3603355862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "107e773f7e4debc3911172c369c332d2bc56285a", + "fields": { + "code_commune_insee": "12149", + "nom_de_la_commune": "MONTCLAR", + "code_postal": "12550", + "coordonnees_gps": [ + 43.9795757997, + 2.63093615826 + ], + "libelle_d_acheminement": "MONTCLAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63093615826, + 43.9795757997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca7a351a7ac1dd9a06f80c65cc8528ae5143c8a8", + "fields": { + "code_commune_insee": "02444", + "nom_de_la_commune": "LUGNY", + "code_postal": "02140", + "coordonnees_gps": [ + 49.782281297, + 3.8121953982 + ], + "libelle_d_acheminement": "LUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8121953982, + 49.782281297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "797042d7c66ead418127c9aa46924a55b0335077", + "fields": { + "code_commune_insee": "12151", + "nom_de_la_commune": "MONTEZIC", + "code_postal": "12460", + "coordonnees_gps": [ + 44.7168656794, + 2.64085756114 + ], + "libelle_d_acheminement": "MONTEZIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64085756114, + 44.7168656794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "250e47911dff241e4d592294eef036f2bd66ba94", + "fields": { + "code_commune_insee": "02447", + "nom_de_la_commune": "MAAST ET VIOLAINE", + "code_postal": "02220", + "coordonnees_gps": [ + 49.2931740531, + 3.45694908531 + ], + "libelle_d_acheminement": "MAAST ET VIOLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45694908531, + 49.2931740531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34822a46140648dcec3e044820212069e0b0240b", + "fields": { + "code_commune_insee": "12155", + "nom_de_la_commune": "FONDAMENTE", + "code_postal": "12540", + "coordonnees_gps": [ + 43.8617533926, + 3.11468710973 + ], + "libelle_d_acheminement": "FONDAMENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11468710973, + 43.8617533926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "313cdbd284413078d48eb6971380ae0df739f5b7", + "fields": { + "code_commune_insee": "02453", + "nom_de_la_commune": "MAIZY", + "code_postal": "02160", + "coordonnees_gps": [ + 49.377259904, + 3.71616526094 + ], + "libelle_d_acheminement": "MAIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71616526094, + 49.377259904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c1233aa8c23309259b26319c0f76a64144b1e95", + "fields": { + "code_commune_insee": "12165", + "nom_de_la_commune": "MURET LE CHATEAU", + "code_postal": "12330", + "coordonnees_gps": [ + 44.4957128112, + 2.57147635051 + ], + "libelle_d_acheminement": "MURET LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57147635051, + 44.4957128112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44fc289546ff465f97e8fef6006962d6e40a10b4", + "fields": { + "code_commune_insee": "02459", + "nom_de_la_commune": "MARCY", + "code_postal": "02720", + "coordonnees_gps": [ + 49.8535898318, + 3.41135532201 + ], + "libelle_d_acheminement": "MARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41135532201, + 49.8535898318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed35aae9f3e213959130f6052bbf8aa0ee95a128", + "fields": { + "code_commune_insee": "12171", + "nom_de_la_commune": "NAUVIALE", + "code_postal": "12330", + "coordonnees_gps": [ + 44.5133117554, + 2.43273501132 + ], + "libelle_d_acheminement": "NAUVIALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43273501132, + 44.5133117554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b32f2c5c94c6b835125fc6b132c47958a23d830d", + "fields": { + "code_commune_insee": "02469", + "nom_de_la_commune": "MARLY GOMONT", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8913737841, + 3.7849871912 + ], + "libelle_d_acheminement": "MARLY GOMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7849871912, + 49.8913737841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3140ad2a40fb18d4590c815b9b20fbd4f2b3154", + "fields": { + "code_commune_insee": "12176", + "nom_de_la_commune": "ONET LE CHATEAU", + "code_postal": "12000", + "coordonnees_gps": [ + 44.3825530939, + 2.56000835023 + ], + "libelle_d_acheminement": "ONET LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56000835023, + 44.3825530939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "771d4b1e9549ba24723e63c4c15362ef8dc65bea", + "fields": { + "code_commune_insee": "02470", + "nom_de_la_commune": "MARTIGNY", + "code_postal": "02500", + "coordonnees_gps": [ + 49.866582249, + 4.13443052228 + ], + "libelle_d_acheminement": "MARTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13443052228, + 49.866582249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f2e245aca977c1e56431e44a34a4a1996639f2a", + "fields": { + "ligne_5": "QUATRE SAISONS", + "code_commune_insee": "12176", + "libelle_d_acheminement": "ONET LE CHATEAU", + "code_postal": "12850", + "nom_de_la_commune": "ONET LE CHATEAU", + "coordonnees_gps": [ + 44.3825530939, + 2.56000835023 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56000835023, + 44.3825530939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d35a00fbc5cc86ca19265ad04bbfc0818f73732", + "fields": { + "code_commune_insee": "02471", + "nom_de_la_commune": "MARTIGNY COURPIERRE", + "code_postal": "02860", + "coordonnees_gps": [ + 49.4900405005, + 3.6867077549 + ], + "libelle_d_acheminement": "MARTIGNY COURPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6867077549, + 49.4900405005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "742dca11030878f13fb040a6ed7b7941cf20a140", + "fields": { + "code_commune_insee": "12178", + "nom_de_la_commune": "PAULHE", + "code_postal": "12520", + "coordonnees_gps": [ + 44.1486388779, + 3.11148254471 + ], + "libelle_d_acheminement": "PAULHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11148254471, + 44.1486388779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c836f9cd7c79a5d65e7cf17a9d1b840ae1babad", + "fields": { + "code_commune_insee": "02474", + "nom_de_la_commune": "MENNESSIS", + "code_postal": "02700", + "coordonnees_gps": [ + 49.6918385873, + 3.27543313236 + ], + "libelle_d_acheminement": "MENNESSIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27543313236, + 49.6918385873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2ab0b5d58489ae54fd85018248c014c731bd916", + "fields": { + "code_commune_insee": "12179", + "nom_de_la_commune": "PEUX ET COUFFOULEUX", + "code_postal": "12360", + "coordonnees_gps": [ + 43.7634161386, + 2.8805204264 + ], + "libelle_d_acheminement": "PEUX ET COUFFOULEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8805204264, + 43.7634161386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c013d233101b9a7ff74c1029eb8cd6c9fb3a4f91", + "fields": { + "code_commune_insee": "02476", + "nom_de_la_commune": "MENNEVRET", + "code_postal": "02630", + "coordonnees_gps": [ + 49.9919704555, + 3.55884133428 + ], + "libelle_d_acheminement": "MENNEVRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55884133428, + 49.9919704555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cd908a5f0b8396ad61b060bfe8d0ed9c0f911c6", + "fields": { + "code_commune_insee": "12183", + "nom_de_la_commune": "PLAISANCE", + "code_postal": "12550", + "coordonnees_gps": [ + 43.929841907, + 2.56266384044 + ], + "libelle_d_acheminement": "PLAISANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56266384044, + 43.929841907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f98fbe6b33ba2c6bab6c9ed953542145e3f0f5af", + "fields": { + "code_commune_insee": "02477", + "nom_de_la_commune": "MERCIN ET VAUX", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3705627456, + 3.27070140635 + ], + "libelle_d_acheminement": "MERCIN ET VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27070140635, + 49.3705627456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b617fc06ea6f98f407e919ce14851b7c9b4ca57", + "fields": { + "code_commune_insee": "12185", + "nom_de_la_commune": "PONT DE SALARS", + "code_postal": "12290", + "coordonnees_gps": [ + 44.277717255, + 2.70931526263 + ], + "libelle_d_acheminement": "PONT DE SALARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70931526263, + 44.277717255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a88eb29102a5deef45e06f67e62d2bd29760266", + "fields": { + "code_commune_insee": "02481", + "nom_de_la_commune": "MESNIL ST LAURENT", + "code_postal": "02720", + "coordonnees_gps": [ + 49.8290188644, + 3.36454012617 + ], + "libelle_d_acheminement": "MESNIL ST LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36454012617, + 49.8290188644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88c1d1e5a6f49a62fda8e0867bb6fc1d4965f988", + "fields": { + "code_commune_insee": "12186", + "nom_de_la_commune": "POUSTHOMY", + "code_postal": "12380", + "coordonnees_gps": [ + 43.8560294243, + 2.59842075923 + ], + "libelle_d_acheminement": "POUSTHOMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59842075923, + 43.8560294243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5be7668419a227b799de0ee08b6e013c20b6fe22", + "fields": { + "code_commune_insee": "02485", + "nom_de_la_commune": "MISSY AUX BOIS", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3349407256, + 3.24662970633 + ], + "libelle_d_acheminement": "MISSY AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24662970633, + 49.3349407256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90f54fbe5d033475fe21c8f484725067b1a20906", + "fields": { + "code_commune_insee": "12191", + "nom_de_la_commune": "PRIVEZAC", + "code_postal": "12350", + "coordonnees_gps": [ + 44.4103475612, + 2.19453209894 + ], + "libelle_d_acheminement": "PRIVEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19453209894, + 44.4103475612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "941536c6d3efb9fa5dd94a19b0f37b1f47b99058", + "fields": { + "code_commune_insee": "02486", + "nom_de_la_commune": "MISSY LES PIERREPONT", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6279354887, + 3.7841954065 + ], + "libelle_d_acheminement": "MISSY LES PIERREPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7841954065, + 49.6279354887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad4586f15afb4efb4bc03d8e54b431ec135b5585", + "fields": { + "code_commune_insee": "12193", + "nom_de_la_commune": "PRUINES", + "code_postal": "12320", + "coordonnees_gps": [ + 44.534819715, + 2.4875783018 + ], + "libelle_d_acheminement": "PRUINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4875783018, + 44.534819715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "399ba41a398794d6b831296cbb36a0757aac8935", + "fields": { + "code_commune_insee": "02487", + "nom_de_la_commune": "MISSY SUR AISNE", + "code_postal": "02880", + "coordonnees_gps": [ + 49.3855898418, + 3.43829672684 + ], + "libelle_d_acheminement": "MISSY SUR AISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43829672684, + 49.3855898418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e382a457a72810d960e7cb44054b191fe75bec2d", + "fields": { + "code_commune_insee": "12194", + "nom_de_la_commune": "QUINS", + "code_postal": "12800", + "coordonnees_gps": [ + 44.2295906034, + 2.37852465105 + ], + "libelle_d_acheminement": "QUINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37852465105, + 44.2295906034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b99a996a200b2c19d4629c1a7be79a77323e4c04", + "fields": { + "code_commune_insee": "02492", + "nom_de_la_commune": "MONCEAU LES LEUPS", + "code_postal": "02270", + "coordonnees_gps": [ + 49.6617789272, + 3.48549133203 + ], + "libelle_d_acheminement": "MONCEAU LES LEUPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48549133203, + 49.6617789272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1e1511414f148518a07f33140dc6231936e082b", + "fields": { + "code_commune_insee": "12198", + "nom_de_la_commune": "RIEUPEYROUX", + "code_postal": "12240", + "coordonnees_gps": [ + 44.3085754076, + 2.22948755681 + ], + "libelle_d_acheminement": "RIEUPEYROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22948755681, + 44.3085754076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89ac0de8363febda7f8b711acf91f1550df73f3d", + "fields": { + "code_commune_insee": "02493", + "nom_de_la_commune": "MONCEAU LE WAAST", + "code_postal": "02840", + "coordonnees_gps": [ + 49.6217435488, + 3.71656668597 + ], + "libelle_d_acheminement": "MONCEAU LE WAAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71656668597, + 49.6217435488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54f1efe2037de498db112c196c3121d70a798a64", + "fields": { + "ligne_5": "BOYNE", + "code_commune_insee": "12200", + "libelle_d_acheminement": "RIVIERE SUR TARN", + "code_postal": "12640", + "nom_de_la_commune": "RIVIERE SUR TARN", + "coordonnees_gps": [ + 44.2108724191, + 3.12758575217 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12758575217, + 44.2108724191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd62900749936fba0615451438fa3f1796a78e09", + "fields": { + "code_commune_insee": "02495", + "nom_de_la_commune": "MONDREPUIS", + "code_postal": "02500", + "coordonnees_gps": [ + 49.9637441269, + 4.05128113518 + ], + "libelle_d_acheminement": "MONDREPUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05128113518, + 49.9637441269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4101dc47d77ad08d7dd574311334d6c5c8b6df05", + "fields": { + "code_commune_insee": "12209", + "nom_de_la_commune": "ST AMANS DES COTS", + "code_postal": "12460", + "coordonnees_gps": [ + 44.6868560667, + 2.69135482513 + ], + "libelle_d_acheminement": "ST AMANS DES COTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69135482513, + 44.6868560667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2177f052130c3deea1eeb9a46949292749d0b10", + "fields": { + "code_commune_insee": "02507", + "nom_de_la_commune": "MONTGRU ST HILAIRE", + "code_postal": "02210", + "coordonnees_gps": [ + 49.1768851038, + 3.32722209943 + ], + "libelle_d_acheminement": "MONTGRU ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32722209943, + 49.1768851038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "129c82f9adef407f55553109802d1256b5d23df1", + "fields": { + "code_commune_insee": "12211", + "nom_de_la_commune": "ST ANDRE DE VEZINES", + "code_postal": "12720", + "coordonnees_gps": [ + 44.1476911332, + 3.27124677006 + ], + "libelle_d_acheminement": "ST ANDRE DE VEZINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27124677006, + 44.1476911332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4bb96dd6db50c81d79beeecd32a2d310f148a80", + "fields": { + "code_commune_insee": "02514", + "nom_de_la_commune": "MONTIGNY LENGRAIN", + "code_postal": "02290", + "coordonnees_gps": [ + 49.3726900463, + 3.09924630011 + ], + "libelle_d_acheminement": "MONTIGNY LENGRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09924630011, + 49.3726900463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3889d3cc0217ec3865f1330fd474952982dcc820", + "fields": { + "code_commune_insee": "12214", + "nom_de_la_commune": "ST CHELY D AUBRAC", + "code_postal": "12470", + "coordonnees_gps": [ + 44.5918935634, + 2.94672559934 + ], + "libelle_d_acheminement": "ST CHELY D AUBRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94672559934, + 44.5918935634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "804c5f7df39a0c20230053e0b0947ffa1a6765b5", + "fields": { + "code_commune_insee": "02518", + "nom_de_la_commune": "MONTLEVON", + "code_postal": "02330", + "coordonnees_gps": [ + 48.9627005485, + 3.51543798042 + ], + "libelle_d_acheminement": "MONTLEVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51543798042, + 48.9627005485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1054e772a025576a4f06827156b0c41cc2a9e086", + "fields": { + "code_commune_insee": "12219", + "nom_de_la_commune": "STE EULALIE D OLT", + "code_postal": "12130", + "coordonnees_gps": [ + 44.4661013084, + 2.91950653018 + ], + "libelle_d_acheminement": "STE EULALIE D OLT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91950653018, + 44.4661013084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58cfcfcf6a8fb7e721b80ed28ef00c0b2e9ca0dd", + "fields": { + "code_commune_insee": "02519", + "nom_de_la_commune": "MONTLOUE", + "code_postal": "02340", + "coordonnees_gps": [ + 49.6682396007, + 4.06275825607 + ], + "libelle_d_acheminement": "MONTLOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06275825607, + 49.6682396007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b1dc2db837023a7eecd1738b51dbe7c619debc0", + "fields": { + "code_commune_insee": "12222", + "nom_de_la_commune": "ST FELIX DE SORGUES", + "code_postal": "12400", + "coordonnees_gps": [ + 43.8825601072, + 2.98664718926 + ], + "libelle_d_acheminement": "ST FELIX DE SORGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98664718926, + 43.8825601072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "449de3da28d535e1cf4a00690ea8ac813b44030f", + "fields": { + "code_commune_insee": "02521", + "nom_de_la_commune": "MONTREUIL AUX LIONS", + "code_postal": "02310", + "coordonnees_gps": [ + 49.0264607134, + 3.19454438663 + ], + "libelle_d_acheminement": "MONTREUIL AUX LIONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19454438663, + 49.0264607134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b7c7592a9b6bf593d247e889caee9e60ffcecff", + "fields": { + "ligne_5": "STE GENEVIEVE SUR ARGENCE", + "code_commune_insee": "12223", + "libelle_d_acheminement": "ARGENCES EN AUBRAC", + "code_postal": "12420", + "nom_de_la_commune": "ARGENCES EN AUBRAC", + "coordonnees_gps": [ + 44.8003905234, + 2.7434750028 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7434750028, + 44.8003905234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40d1d7c743043bcc37da9d9a8c6c30b32f9971b0", + "fields": { + "code_commune_insee": "02525", + "nom_de_la_commune": "MORCOURT", + "code_postal": "02100", + "coordonnees_gps": [ + 49.8759595448, + 3.33400206098 + ], + "libelle_d_acheminement": "MORCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33400206098, + 49.8759595448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71bd21aaeb17d166aa09bb7c547bba5f57d8eb71", + "fields": { + "code_commune_insee": "12226", + "nom_de_la_commune": "ST HIPPOLYTE", + "code_postal": "12140", + "coordonnees_gps": [ + 44.7257623817, + 2.58415334807 + ], + "libelle_d_acheminement": "ST HIPPOLYTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58415334807, + 44.7257623817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25e4e3101380d309f467c29a3e868d471dade1d2", + "fields": { + "code_commune_insee": "02527", + "nom_de_la_commune": "MORSAIN", + "code_postal": "02290", + "coordonnees_gps": [ + 49.4616807631, + 3.19122405616 + ], + "libelle_d_acheminement": "MORSAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19122405616, + 49.4616807631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab22b5ea00d4bace33ee5b02f1b6231a41e063a2", + "fields": { + "code_commune_insee": "12241", + "nom_de_la_commune": "STE RADEGONDE", + "code_postal": "12850", + "coordonnees_gps": [ + 44.3313046455, + 2.63272943848 + ], + "libelle_d_acheminement": "STE RADEGONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63272943848, + 44.3313046455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88000bf8407ab60ae453d6757f98add94532c2cf", + "fields": { + "code_commune_insee": "02528", + "nom_de_la_commune": "MORTEFONTAINE", + "code_postal": "02600", + "coordonnees_gps": [ + 49.3362768244, + 3.08053479514 + ], + "libelle_d_acheminement": "MORTEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08053479514, + 49.3362768244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa5e1e8d4b827e456db2f2ba57d3afec7200b324", + "fields": { + "code_commune_insee": "12243", + "nom_de_la_commune": "ST ROME DE CERNON", + "code_postal": "12490", + "coordonnees_gps": [ + 44.0092815524, + 2.98362792023 + ], + "libelle_d_acheminement": "ST ROME DE CERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98362792023, + 44.0092815524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2f18ace3312435989281a74b31d7668b3ef0c4c", + "fields": { + "code_commune_insee": "02531", + "nom_de_la_commune": "MOUSSY VERNEUIL", + "code_postal": "02160", + "coordonnees_gps": [ + 49.4126815323, + 3.63718132987 + ], + "libelle_d_acheminement": "MOUSSY VERNEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63718132987, + 49.4126815323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "324940c50ebcb50540c941fb860f6c71837d6035", + "fields": { + "ligne_5": "LOUPIAC", + "code_commune_insee": "12257", + "libelle_d_acheminement": "CAUSSE ET DIEGE", + "code_postal": "12700", + "nom_de_la_commune": "CAUSSE ET DIEGE", + "coordonnees_gps": [ + 44.5282954974, + 2.03482919718 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03482919718, + 44.5282954974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "130cfdf108eaab94992404e309ba8b782633267b", + "fields": { + "code_commune_insee": "02533", + "nom_de_la_commune": "MURET ET CROUTTES", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2781417953, + 3.43464742094 + ], + "libelle_d_acheminement": "MURET ET CROUTTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43464742094, + 49.2781417953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b0ae0cc1a707536e7d98c49df88bdf45d5a5d9d", + "fields": { + "code_commune_insee": "12259", + "nom_de_la_commune": "SANVENSA", + "code_postal": "12200", + "coordonnees_gps": [ + 44.2844997959, + 2.04052425454 + ], + "libelle_d_acheminement": "SANVENSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04052425454, + 44.2844997959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c01dc678703c19b10fdf608c128417d28daf6387", + "fields": { + "code_commune_insee": "02536", + "nom_de_la_commune": "NAMPTEUIL SOUS MURET", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3051403969, + 3.43398003516 + ], + "libelle_d_acheminement": "NAMPTEUIL SOUS MURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43398003516, + 49.3051403969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "396dc9584c34bfaf31ed516bdd0594a47ef6b09c", + "fields": { + "code_commune_insee": "12261", + "nom_de_la_commune": "SAUJAC", + "code_postal": "12260", + "coordonnees_gps": [ + 44.4777699225, + 1.90179850313 + ], + "libelle_d_acheminement": "SAUJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90179850313, + 44.4777699225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b4d4b295605c0315e417a79a3109e1bda9ace46", + "fields": { + "code_commune_insee": "02538", + "nom_de_la_commune": "NANTEUIL NOTRE DAME", + "code_postal": "02210", + "coordonnees_gps": [ + 49.1907421685, + 3.41207163018 + ], + "libelle_d_acheminement": "NANTEUIL NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41207163018, + 49.1907421685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b023caf5eab05a41ce8cb3a6f6cae945157c74c", + "fields": { + "code_commune_insee": "12263", + "nom_de_la_commune": "SAVIGNAC", + "code_postal": "12200", + "coordonnees_gps": [ + 44.3599482177, + 1.95859629036 + ], + "libelle_d_acheminement": "SAVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95859629036, + 44.3599482177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a4fa231f8186e9fbbc218f39bd4a72705e5b986", + "fields": { + "code_commune_insee": "02548", + "nom_de_la_commune": "LA NEUVILLE LES DORENGT", + "code_postal": "02450", + "coordonnees_gps": [ + 49.983064353, + 3.68565926181 + ], + "libelle_d_acheminement": "LA NEUVILLE LES DORENGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68565926181, + 49.983064353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aad026a452b7216e23484fa4fe8cfa6c23584edc", + "fields": { + "ligne_5": "LAVERNHE", + "code_commune_insee": "12270", + "libelle_d_acheminement": "SEVERAC D AVEYRON", + "code_postal": "12150", + "nom_de_la_commune": "SEVERAC D AVEYRON", + "coordonnees_gps": [ + 44.3000638764, + 3.08915100601 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08915100601, + 44.3000638764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "280bf1036c889f8e365e8ad2faff22e8acd9ad1e", + "fields": { + "code_commune_insee": "02550", + "nom_de_la_commune": "NEUVILLE SUR AILETTE", + "code_postal": "02860", + "coordonnees_gps": [ + 49.4695141414, + 3.69819946444 + ], + "libelle_d_acheminement": "NEUVILLE SUR AILETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69819946444, + 49.4695141414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb383a45b39ffc10f224a4e910ef762b1de58170", + "fields": { + "code_commune_insee": "12278", + "nom_de_la_commune": "TAYRAC", + "code_postal": "12440", + "coordonnees_gps": [ + 44.2036765147, + 2.24341011271 + ], + "libelle_d_acheminement": "TAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24341011271, + 44.2036765147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0ca7d55da47f09d0692eecb8075a0ae5b914c7e", + "fields": { + "code_commune_insee": "02555", + "nom_de_la_commune": "NOGENT L ARTAUD", + "code_postal": "02310", + "coordonnees_gps": [ + 48.9426222247, + 3.332802902 + ], + "libelle_d_acheminement": "NOGENT L ARTAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.332802902, + 48.9426222247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a308eb45737c0ae8c366e991e30eb43d371c3343", + "fields": { + "code_commune_insee": "12286", + "nom_de_la_commune": "VABRES L ABBAYE", + "code_postal": "12400", + "coordonnees_gps": [ + 43.9213497351, + 2.81975476984 + ], + "libelle_d_acheminement": "VABRES L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81975476984, + 43.9213497351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06ecf9399d596b20280ac3ada9c88e74d4216e20", + "fields": { + "code_commune_insee": "02556", + "nom_de_la_commune": "NOIRCOURT", + "code_postal": "02340", + "coordonnees_gps": [ + 49.6691648747, + 4.09433809595 + ], + "libelle_d_acheminement": "NOIRCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09433809595, + 49.6691648747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b55910361852d1493a0de2aa3a568d8845fffc60", + "fields": { + "code_commune_insee": "12296", + "nom_de_la_commune": "VIALA DU TARN", + "code_postal": "12490", + "coordonnees_gps": [ + 44.0855039631, + 2.83906955497 + ], + "libelle_d_acheminement": "VIALA DU TARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83906955497, + 44.0855039631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bc33a3e6d495475dc7c8803ab98bf87f0d51370", + "fields": { + "code_commune_insee": "02561", + "nom_de_la_commune": "NOUVION LE VINEUX", + "code_postal": "02860", + "coordonnees_gps": [ + 49.5092763308, + 3.605351266 + ], + "libelle_d_acheminement": "NOUVION LE VINEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.605351266, + 49.5092763308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5f49e463833950da563f6ef59866ee6856055af", + "fields": { + "code_commune_insee": "12303", + "nom_de_la_commune": "VIMENET", + "code_postal": "12310", + "coordonnees_gps": [ + 44.4000547322, + 2.92952468147 + ], + "libelle_d_acheminement": "VIMENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92952468147, + 44.4000547322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c9234ceadf1107c560db82661b387f2adbf2038", + "fields": { + "code_commune_insee": "02571", + "nom_de_la_commune": "OMISSY", + "code_postal": "02100", + "coordonnees_gps": [ + 49.8804267246, + 3.29788036707 + ], + "libelle_d_acheminement": "OMISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29788036707, + 49.8804267246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f8523440b11bb36a9165623aa5bb1c9f7864da4", + "fields": { + "code_commune_insee": "13001", + "nom_de_la_commune": "AIX EN PROVENCE", + "code_postal": "13100", + "coordonnees_gps": [ + 43.5360708378, + 5.39857444582 + ], + "libelle_d_acheminement": "AIX EN PROVENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39857444582, + 43.5360708378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "919143dad74591b27c4a2ef8cf2d9cca433d4bae", + "fields": { + "code_commune_insee": "02577", + "nom_de_la_commune": "OSTEL", + "code_postal": "02370", + "coordonnees_gps": [ + 49.4299692983, + 3.56538871192 + ], + "libelle_d_acheminement": "OSTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56538871192, + 49.4299692983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8757d56ab590c1e255be1cdfe355fbd1c28428d", + "fields": { + "code_commune_insee": "13002", + "nom_de_la_commune": "ALLAUCH", + "code_postal": "13190", + "coordonnees_gps": [ + 43.3533145712, + 5.51134767187 + ], + "libelle_d_acheminement": "ALLAUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51134767187, + 43.3533145712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69a9a3688ac89b461acc49f79fbb2a508e2b22d5", + "fields": { + "code_commune_insee": "02579", + "nom_de_la_commune": "OULCHY LA VILLE", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2098503819, + 3.34062520679 + ], + "libelle_d_acheminement": "OULCHY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34062520679, + 49.2098503819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b4630891f5b4ecf4e11c8caf0b60b21f86119c6", + "fields": { + "code_commune_insee": "13003", + "nom_de_la_commune": "ALLEINS", + "code_postal": "13980", + "coordonnees_gps": [ + 43.7074197745, + 5.15105029207 + ], + "libelle_d_acheminement": "ALLEINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15105029207, + 43.7074197745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7624591c6c195f5d13e9bbc49efccccd9fbbe341", + "fields": { + "code_commune_insee": "02589", + "nom_de_la_commune": "PARGNY FILAIN", + "code_postal": "02000", + "coordonnees_gps": [ + 49.4629055692, + 3.53929108659 + ], + "libelle_d_acheminement": "PARGNY FILAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53929108659, + 49.4629055692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26a52e24cf58c0be7fe63b79b765db9081d2c382", + "fields": { + "code_commune_insee": "13005", + "nom_de_la_commune": "AUBAGNE", + "code_postal": "13400", + "coordonnees_gps": [ + 43.2934843764, + 5.56331273477 + ], + "libelle_d_acheminement": "AUBAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56331273477, + 43.2934843764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bb8e723b6cd2065c870cc5f35d52f5548abff33", + "fields": { + "code_commune_insee": "02592", + "nom_de_la_commune": "PARPEVILLE", + "code_postal": "02240", + "coordonnees_gps": [ + 49.7943758027, + 3.56422835389 + ], + "libelle_d_acheminement": "PARPEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56422835389, + 49.7943758027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca37e2074f2b8eb8a8c5bfbda1ed92aa2b02a8e2", + "fields": { + "code_commune_insee": "13008", + "nom_de_la_commune": "AURONS", + "code_postal": "13121", + "coordonnees_gps": [ + 43.6715125585, + 5.14903600713 + ], + "libelle_d_acheminement": "AURONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14903600713, + 43.6715125585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "968f97d8633c536e92423a6e7467c94065d89cc7", + "fields": { + "code_commune_insee": "02602", + "nom_de_la_commune": "PINON", + "code_postal": "02320", + "coordonnees_gps": [ + 49.488480349, + 3.46156583024 + ], + "libelle_d_acheminement": "PINON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46156583024, + 49.488480349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3cb599298b38f6436166971da1a5db1780be3e5", + "fields": { + "code_commune_insee": "13011", + "nom_de_la_commune": "LES BAUX DE PROVENCE", + "code_postal": "13520", + "coordonnees_gps": [ + 43.745808725, + 4.80218162499 + ], + "libelle_d_acheminement": "LES BAUX DE PROVENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80218162499, + 43.745808725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "354906bd958aa04ef873e4a89f25924fcc998af2", + "fields": { + "code_commune_insee": "02612", + "nom_de_la_commune": "PONT ARCY", + "code_postal": "02160", + "coordonnees_gps": [ + 49.391846031, + 3.62003836186 + ], + "libelle_d_acheminement": "PONT ARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62003836186, + 49.391846031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee36de8a22e0a5c05a948dff29a9b4c55721edf0", + "fields": { + "code_commune_insee": "13015", + "nom_de_la_commune": "BOUC BEL AIR", + "code_postal": "13320", + "coordonnees_gps": [ + 43.4472296617, + 5.41237056144 + ], + "libelle_d_acheminement": "BOUC BEL AIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41237056144, + 43.4472296617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f44784ae5dd10f35f5b82897768e02cb08e45ad0", + "fields": { + "code_commune_insee": "02615", + "nom_de_la_commune": "PONTRUET", + "code_postal": "02490", + "coordonnees_gps": [ + 49.9148506173, + 3.2294738031 + ], + "libelle_d_acheminement": "PONTRUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2294738031, + 49.9148506173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceb7da2bf02a358fd4b658548d9d7c164c3f1da2", + "fields": { + "ligne_5": "LE ROUET", + "code_commune_insee": "13021", + "libelle_d_acheminement": "CARRY LE ROUET", + "code_postal": "13620", + "nom_de_la_commune": "CARRY LE ROUET", + "coordonnees_gps": [ + 43.3427663021, + 5.15373765817 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15373765817, + 43.3427663021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a156ceb3291e4eafa5e70e8be8c60dda56f28922", + "fields": { + "code_commune_insee": "02617", + "nom_de_la_commune": "POUILLY SUR SERRE", + "code_postal": "02270", + "coordonnees_gps": [ + 49.6778615755, + 3.58559308314 + ], + "libelle_d_acheminement": "POUILLY SUR SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58559308314, + 49.6778615755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bd8e81b04e722c88067d673a5282d0243aeb4df", + "fields": { + "code_commune_insee": "13027", + "nom_de_la_commune": "CHATEAURENARD", + "code_postal": "13160", + "coordonnees_gps": [ + 43.8824707581, + 4.83990004648 + ], + "libelle_d_acheminement": "CHATEAURENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83990004648, + 43.8824707581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53da54780f03a52593cbb3a37d718720bc0f3593", + "fields": { + "code_commune_insee": "02627", + "nom_de_la_commune": "PROVISEUX ET PLESNOY", + "code_postal": "02190", + "coordonnees_gps": [ + 49.4777224772, + 4.0158784311 + ], + "libelle_d_acheminement": "PROVISEUX ET PLESNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0158784311, + 49.4777224772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67fab1b995e6e30f6f0d5480481923093e4f1af0", + "fields": { + "code_commune_insee": "13046", + "nom_de_la_commune": "GREASQUE", + "code_postal": "13850", + "coordonnees_gps": [ + 43.4262029745, + 5.54685109195 + ], + "libelle_d_acheminement": "GREASQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54685109195, + 43.4262029745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc1dfd6971492dfdce01aa1094bc3c1c0b87dd62", + "fields": { + "code_commune_insee": "02629", + "nom_de_la_commune": "PUISIEUX ET CLANLIEU", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8472444334, + 3.66367663689 + ], + "libelle_d_acheminement": "PUISIEUX ET CLANLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66367663689, + 49.8472444334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dbbba61fa57a8a8418252dfa80f521e09305d86", + "fields": { + "ligne_5": "ENTRESSEN", + "code_commune_insee": "13047", + "libelle_d_acheminement": "ISTRES", + "code_postal": "13118", + "nom_de_la_commune": "ISTRES", + "coordonnees_gps": [ + 43.5502689105, + 4.9511813524 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9511813524, + 43.5502689105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93ccda28be39178de87de300785da920f2391234", + "fields": { + "code_commune_insee": "02632", + "nom_de_la_commune": "QUINCY BASSE", + "code_postal": "02380", + "coordonnees_gps": [ + 49.5091437001, + 3.38465364189 + ], + "libelle_d_acheminement": "QUINCY BASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38465364189, + 49.5091437001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e65af31797169294e9dcc0a6f06de6351cb94fc3", + "fields": { + "code_commune_insee": "13047", + "nom_de_la_commune": "ISTRES", + "code_postal": "13800", + "coordonnees_gps": [ + 43.5502689105, + 4.9511813524 + ], + "libelle_d_acheminement": "ISTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9511813524, + 43.5502689105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7565b9045253d57c830cb7206aad3d4548e33de6", + "fields": { + "code_commune_insee": "02636", + "nom_de_la_commune": "REGNY", + "code_postal": "02240", + "coordonnees_gps": [ + 49.8343070304, + 3.42061400129 + ], + "libelle_d_acheminement": "REGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42061400129, + 49.8343070304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0141defcb275ce03538a87c3bd430c2f28466edc", + "fields": { + "ligne_5": "CROIX STE", + "code_commune_insee": "13056", + "libelle_d_acheminement": "MARTIGUES", + "code_postal": "13500", + "nom_de_la_commune": "MARTIGUES", + "coordonnees_gps": [ + 43.3798920489, + 5.04945402314 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04945402314, + 43.3798920489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f77d4987c3391291b1d006d632838aeaaf54e5e2", + "fields": { + "code_commune_insee": "02638", + "nom_de_la_commune": "REMIES", + "code_postal": "02270", + "coordonnees_gps": [ + 49.6793679757, + 3.52478064261 + ], + "libelle_d_acheminement": "REMIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52478064261, + 49.6793679757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa7bf628d694caf95e2d59c64b48b01d25c9e812", + "fields": { + "code_commune_insee": "13059", + "nom_de_la_commune": "MEYRARGUES", + "code_postal": "13650", + "coordonnees_gps": [ + 43.6244876475, + 5.52271513103 + ], + "libelle_d_acheminement": "MEYRARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52271513103, + 43.6244876475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "790cf215c4fb848782a965d5fee998cbda36b258", + "fields": { + "code_commune_insee": "02647", + "nom_de_la_commune": "RIBEAUVILLE", + "code_postal": "02110", + "coordonnees_gps": [ + 50.0366991182, + 3.58754496166 + ], + "libelle_d_acheminement": "RIBEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58754496166, + 50.0366991182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c81a4d5d92b53c8bf0c786ecb4c5b51fff08f3c", + "fields": { + "code_commune_insee": "13061", + "nom_de_la_commune": "ST PIERRE DE MEZOARGUES", + "code_postal": "13150", + "coordonnees_gps": [ + 43.8612350805, + 4.65739524122 + ], + "libelle_d_acheminement": "ST PIERRE DE MEZOARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65739524122, + 43.8612350805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e82c5632ddf3d02f906e40f868fca843989b9425", + "fields": { + "code_commune_insee": "02652", + "nom_de_la_commune": "ROGNY", + "code_postal": "02140", + "coordonnees_gps": [ + 49.766712979, + 3.82104672788 + ], + "libelle_d_acheminement": "ROGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82104672788, + 49.766712979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebafe16581ac6e259614eb924706b5cca3536e13", + "fields": { + "code_commune_insee": "13065", + "nom_de_la_commune": "MOURIES", + "code_postal": "13890", + "coordonnees_gps": [ + 43.7008454163, + 4.89038486174 + ], + "libelle_d_acheminement": "MOURIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89038486174, + 43.7008454163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22b997dbf6dde64208ba9eeafa61d0d3aa8000e8", + "fields": { + "code_commune_insee": "02653", + "nom_de_la_commune": "ROMENY SUR MARNE", + "code_postal": "02310", + "coordonnees_gps": [ + 48.9852721229, + 3.3344209065 + ], + "libelle_d_acheminement": "ROMENY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3344209065, + 48.9852721229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ecf637c243af8a702b2a6147a952a05871a5f38", + "fields": { + "code_commune_insee": "13068", + "nom_de_la_commune": "PARADOU", + "code_postal": "13520", + "coordonnees_gps": [ + 43.7082242761, + 4.77828143607 + ], + "libelle_d_acheminement": "PARADOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77828143607, + 43.7082242761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "064ea571b73202680b73fb636c138946f9842e04", + "fields": { + "code_commune_insee": "02654", + "nom_de_la_commune": "ROMERY", + "code_postal": "02120", + "coordonnees_gps": [ + 49.8882844958, + 3.73266627848 + ], + "libelle_d_acheminement": "ROMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73266627848, + 49.8882844958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5e6f95722a907626acc5c30a76275e5492b46da", + "fields": { + "ligne_5": "BASTIDONNE", + "code_commune_insee": "13070", + "libelle_d_acheminement": "LA PENNE SUR HUVEAUNE", + "code_postal": "13821", + "nom_de_la_commune": "LA PENNE SUR HUVEAUNE", + "coordonnees_gps": [ + 43.2772079729, + 5.51850914394 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51850914394, + 43.2772079729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80aba1507e361201ab13b86f809a622a359c97ed", + "fields": { + "code_commune_insee": "02658", + "nom_de_la_commune": "ROUPY", + "code_postal": "02590", + "coordonnees_gps": [ + 49.8120572031, + 3.18195896491 + ], + "libelle_d_acheminement": "ROUPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18195896491, + 49.8120572031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd89c3ce9eb252497915a8bedd0e6923c7f08c5a", + "fields": { + "ligne_5": "LA GAVOTTE", + "code_commune_insee": "13071", + "libelle_d_acheminement": "LES PENNES MIRABEAU", + "code_postal": "13170", + "nom_de_la_commune": "LES PENNES MIRABEAU", + "coordonnees_gps": [ + 43.4026791235, + 5.31547094057 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31547094057, + 43.4026791235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e7348d3972b9510bac435913115aef2fa47cccb", + "fields": { + "code_commune_insee": "02661", + "nom_de_la_commune": "ROYAUCOURT ET CHAILVET", + "code_postal": "02000", + "coordonnees_gps": [ + 49.5119671872, + 3.53821206051 + ], + "libelle_d_acheminement": "ROYAUCOURT ET CHAILVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53821206051, + 49.5119671872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb3c8d3c8264a3a40711866d6533015448033f83", + "fields": { + "code_commune_insee": "13072", + "nom_de_la_commune": "PEYNIER", + "code_postal": "13790", + "coordonnees_gps": [ + 43.439686405, + 5.62516789037 + ], + "libelle_d_acheminement": "PEYNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62516789037, + 43.439686405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4b0613d92a6b1572da23a8f17f8e7a74e165d4a", + "fields": { + "code_commune_insee": "02665", + "nom_de_la_commune": "GRAND ROZOY", + "code_postal": "02210", + "coordonnees_gps": [ + 49.2423109815, + 3.38147360131 + ], + "libelle_d_acheminement": "GRAND ROZOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38147360131, + 49.2423109815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6afb3285080e4e713e77cedca4490ca167ecd57b", + "fields": { + "code_commune_insee": "13075", + "nom_de_la_commune": "PLAN DE CUQUES", + "code_postal": "13380", + "coordonnees_gps": [ + 43.3670927162, + 5.46488623464 + ], + "libelle_d_acheminement": "PLAN DE CUQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46488623464, + 43.3670927162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e23d5f9ab5119f13ca0058048c302359492c9c86", + "fields": { + "code_commune_insee": "02667", + "nom_de_la_commune": "SACONIN ET BREUIL", + "code_postal": "02200", + "coordonnees_gps": [ + 49.3506902358, + 3.24672146323 + ], + "libelle_d_acheminement": "SACONIN ET BREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24672146323, + 49.3506902358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef1884628d65960a39bce5923be2221063d60eda", + "fields": { + "code_commune_insee": "13077", + "nom_de_la_commune": "PORT DE BOUC", + "code_postal": "13110", + "coordonnees_gps": [ + 43.4233518835, + 4.99266322339 + ], + "libelle_d_acheminement": "PORT DE BOUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99266322339, + 43.4233518835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feebee08c28d086292327159c37daae15bc33de8", + "fields": { + "code_commune_insee": "02673", + "nom_de_la_commune": "ST CHRISTOPHE A BERRY", + "code_postal": "02290", + "coordonnees_gps": [ + 49.4290499245, + 3.12949472733 + ], + "libelle_d_acheminement": "ST CHRISTOPHE A BERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12949472733, + 49.4290499245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6d25b0c3df40d9b41f72d37b7ff55acc240ed31", + "fields": { + "code_commune_insee": "13079", + "nom_de_la_commune": "PUYLOUBIER", + "code_postal": "13114", + "coordonnees_gps": [ + 43.5186378192, + 5.67758737833 + ], + "libelle_d_acheminement": "PUYLOUBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67758737833, + 43.5186378192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89474dac98470f3c6e7dfde7123442baff4bbdba", + "fields": { + "code_commune_insee": "02682", + "nom_de_la_commune": "ST MARD", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3813338634, + 3.58902035004 + ], + "libelle_d_acheminement": "ST MARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58902035004, + 49.3813338634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1585f2423290797f05b1a3d11a8c834befa5089a", + "fields": { + "ligne_5": "LE BASTIDON", + "code_commune_insee": "13079", + "libelle_d_acheminement": "PUYLOUBIER", + "code_postal": "13114", + "nom_de_la_commune": "PUYLOUBIER", + "coordonnees_gps": [ + 43.5186378192, + 5.67758737833 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67758737833, + 43.5186378192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "627da0de6638c22079c0b997bc916f95a97cacca", + "fields": { + "code_commune_insee": "02683", + "nom_de_la_commune": "ST MARTIN RIVIERE", + "code_postal": "02110", + "coordonnees_gps": [ + 50.044008328, + 3.55486334419 + ], + "libelle_d_acheminement": "ST MARTIN RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55486334419, + 50.044008328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "366ea33a836fbe89ad33317a4e1aa4280b1bfc86", + "fields": { + "code_commune_insee": "13080", + "nom_de_la_commune": "LE PUY STE REPARADE", + "code_postal": "13610", + "coordonnees_gps": [ + 43.6518285649, + 5.43958389565 + ], + "libelle_d_acheminement": "LE PUY STE REPARADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43958389565, + 43.6518285649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7757c79af1cb3c2443baa8da70eb304cd1e1abe", + "fields": { + "code_commune_insee": "02686", + "nom_de_la_commune": "ST PAUL AUX BOIS", + "code_postal": "02300", + "coordonnees_gps": [ + 49.5443121228, + 3.20260437248 + ], + "libelle_d_acheminement": "ST PAUL AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20260437248, + 49.5443121228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c97156491fa3ef398a347130daf12ead132c4d6e", + "fields": { + "code_commune_insee": "13083", + "nom_de_la_commune": "ROGNONAS", + "code_postal": "13870", + "coordonnees_gps": [ + 43.9000833173, + 4.79857977479 + ], + "libelle_d_acheminement": "ROGNONAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79857977479, + 43.9000833173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c6b9bcaca4f4af46b4e5df90af0a04497e80c4b", + "fields": { + "code_commune_insee": "02690", + "nom_de_la_commune": "STE PREUVE", + "code_postal": "02350", + "coordonnees_gps": [ + 49.6173037494, + 3.91098324267 + ], + "libelle_d_acheminement": "STE PREUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91098324267, + 49.6173037494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "416240729dc0285bd98232d354bb971b16100b46", + "fields": { + "code_commune_insee": "13087", + "nom_de_la_commune": "ROUSSET", + "code_postal": "13790", + "coordonnees_gps": [ + 43.4841496165, + 5.62380799416 + ], + "libelle_d_acheminement": "ROUSSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62380799416, + 43.4841496165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d76e1b9d0c29d2101d2910414175e545c3c6dcb7", + "fields": { + "code_commune_insee": "02694", + "nom_de_la_commune": "ST SIMON", + "code_postal": "02640", + "coordonnees_gps": [ + 49.7458877556, + 3.18260412516 + ], + "libelle_d_acheminement": "ST SIMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18260412516, + 49.7458877556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b90226a32b47223212a92d700be3ec0e651ab483", + "fields": { + "code_commune_insee": "13090", + "nom_de_la_commune": "ST ANTONIN SUR BAYON", + "code_postal": "13100", + "coordonnees_gps": [ + 43.517185261, + 5.59403460953 + ], + "libelle_d_acheminement": "ST ANTONIN SUR BAYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59403460953, + 43.517185261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c715727584ebe3e7c45405b1136271dd4dcf44e", + "fields": { + "code_commune_insee": "02709", + "nom_de_la_commune": "SERAIN", + "code_postal": "02110", + "coordonnees_gps": [ + 50.0246912807, + 3.36304349229 + ], + "libelle_d_acheminement": "SERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36304349229, + 50.0246912807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d300de25440716d0016ceb30ac04ce6164af096", + "fields": { + "code_commune_insee": "13106", + "nom_de_la_commune": "SEPTEMES LES VALLONS", + "code_postal": "13240", + "coordonnees_gps": [ + 43.3934944571, + 5.3808040555 + ], + "libelle_d_acheminement": "SEPTEMES LES VALLONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3808040555, + 43.3934944571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac346d00c93183bcc3a9625ee746b5c35a6f4ba5", + "fields": { + "code_commune_insee": "02711", + "nom_de_la_commune": "SERCHES", + "code_postal": "02220", + "coordonnees_gps": [ + 49.3320664098, + 3.44951495068 + ], + "libelle_d_acheminement": "SERCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44951495068, + 49.3320664098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5289df4d515668f67e2c8a8359cade43b81fe213", + "fields": { + "ligne_5": "CADENET", + "code_commune_insee": "13110", + "libelle_d_acheminement": "TRETS", + "code_postal": "13530", + "nom_de_la_commune": "TRETS", + "coordonnees_gps": [ + 43.4378087269, + 5.6999524319 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6999524319, + 43.4378087269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff94b411e857c8e878f6627fdd4a7bfaa4949998", + "fields": { + "code_commune_insee": "02715", + "nom_de_la_commune": "SERVAL", + "code_postal": "02160", + "coordonnees_gps": [ + 49.352069984, + 3.68270184221 + ], + "libelle_d_acheminement": "SERVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68270184221, + 49.352069984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b900d2835ca7257cbd0e5e3c390ba3a1fc91eb20", + "fields": { + "code_commune_insee": "13204", + "nom_de_la_commune": "MARSEILLE 04", + "code_postal": "13004", + "coordonnees_gps": [ + 43.306733355, + 5.40087488752 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40087488752, + 43.306733355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "327b627cdd0019cf58dac923fcd06d6024c0806c", + "fields": { + "code_commune_insee": "02719", + "nom_de_la_commune": "SINCENY", + "code_postal": "02300", + "coordonnees_gps": [ + 49.5910938147, + 3.26877002882 + ], + "libelle_d_acheminement": "SINCENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26877002882, + 49.5910938147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "991deb0366fbd752d3945ddc18d5d9f0c5ea38e8", + "fields": { + "code_commune_insee": "13208", + "nom_de_la_commune": "MARSEILLE 08", + "code_postal": "13008", + "coordonnees_gps": [ + 43.2417271832, + 5.37464436293 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37464436293, + 43.2417271832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4db2e7b3567c4737f0ad3133c4d8caabfcc90d63", + "fields": { + "code_commune_insee": "02725", + "nom_de_la_commune": "SOMMERON", + "code_postal": "02260", + "coordonnees_gps": [ + 49.9569688333, + 3.94573288215 + ], + "libelle_d_acheminement": "SOMMERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94573288215, + 49.9569688333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09e28d047f9499b36ce7d1fa1ff3cc69b53bbadf", + "fields": { + "code_commune_insee": "13209", + "nom_de_la_commune": "MARSEILLE 09", + "code_postal": "13009", + "coordonnees_gps": [ + 43.2340834927, + 5.45249683067 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45249683067, + 43.2340834927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77f9fa416deaa72007e8a31f28ffaa76f86e3f85", + "fields": { + "code_commune_insee": "02737", + "nom_de_la_commune": "TAVAUX ET PONTSERICOURT", + "code_postal": "02250", + "coordonnees_gps": [ + 49.7296446334, + 3.9190519179 + ], + "libelle_d_acheminement": "TAVAUX ET PONTSERICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9190519179, + 49.7296446334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db9970e4217142dd00e1ee16f6d89622ac9d46ce", + "fields": { + "code_commune_insee": "13210", + "nom_de_la_commune": "MARSEILLE 10", + "code_postal": "13010", + "coordonnees_gps": [ + 43.2755155435, + 5.42681101081 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42681101081, + 43.2755155435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f05eaf8422a920e8e2a71869ea6408c058477727", + "fields": { + "code_commune_insee": "02739", + "nom_de_la_commune": "TERNY SORNY", + "code_postal": "02880", + "coordonnees_gps": [ + 49.4472096599, + 3.36942791187 + ], + "libelle_d_acheminement": "TERNY SORNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36942791187, + 49.4472096599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1123b53bfc3bfd6448dcb03b1a43c3e92f76f56f", + "fields": { + "ligne_5": "CHATEAU GOMBERT", + "code_commune_insee": "13213", + "libelle_d_acheminement": "MARSEILLE", + "code_postal": "13013", + "nom_de_la_commune": "MARSEILLE 13", + "coordonnees_gps": [ + 43.3492780005, + 5.43372238738 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43372238738, + 43.3492780005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60e0f9b7eee679143d617b706ba6dcfaf757257e", + "fields": { + "code_commune_insee": "02743", + "nom_de_la_commune": "LE THUEL", + "code_postal": "02340", + "coordonnees_gps": [ + 49.6413105954, + 4.08903091475 + ], + "libelle_d_acheminement": "LE THUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08903091475, + 49.6413105954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c6880e38746c0f76d40caaa8b13a55f4220685f", + "fields": { + "ligne_5": "L ESTAQUE", + "code_commune_insee": "13216", + "libelle_d_acheminement": "MARSEILLE", + "code_postal": "13016", + "nom_de_la_commune": "MARSEILLE 16", + "coordonnees_gps": [ + 43.3649054121, + 5.31337828595 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31337828595, + 43.3649054121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "866f1048059cac8276d10d53a247b2c3dbae5119", + "fields": { + "code_commune_insee": "02748", + "nom_de_la_commune": "TRELOU SUR MARNE", + "code_postal": "02850", + "coordonnees_gps": [ + 49.0916773783, + 3.60157906913 + ], + "libelle_d_acheminement": "TRELOU SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60157906913, + 49.0916773783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f42db8c8ab90b6d5975a644c22a588baae576c16", + "fields": { + "code_commune_insee": "14001", + "nom_de_la_commune": "ABLON", + "code_postal": "14600", + "coordonnees_gps": [ + 49.3942506112, + 0.286767648584 + ], + "libelle_d_acheminement": "ABLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.286767648584, + 49.3942506112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15268a8705a4809ce4ad0985a75391d98e7477eb", + "fields": { + "code_commune_insee": "02752", + "nom_de_la_commune": "TUGNY ET PONT", + "code_postal": "02640", + "coordonnees_gps": [ + 49.7704032986, + 3.16072597634 + ], + "libelle_d_acheminement": "TUGNY ET PONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16072597634, + 49.7704032986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "959616c7906c98e817e0e7416f8639ff5c8482e1", + "fields": { + "ligne_5": "AIRAN", + "code_commune_insee": "14005", + "libelle_d_acheminement": "VALAMBRAY", + "code_postal": "14370", + "nom_de_la_commune": "VALAMBRAY", + "coordonnees_gps": [ + 49.0953124219, + -0.145440484479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.145440484479, + 49.0953124219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbb672308b5feeb5e897267e5f02bee1a4fa531d", + "fields": { + "code_commune_insee": "02762", + "nom_de_la_commune": "VASSENS", + "code_postal": "02290", + "coordonnees_gps": [ + 49.4754669876, + 3.15640761403 + ], + "libelle_d_acheminement": "VASSENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15640761403, + 49.4754669876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64bf3adeb5da09aaa972052b7f8681b6779e475f", + "fields": { + "code_commune_insee": "14024", + "nom_de_la_commune": "AUBERVILLE", + "code_postal": "14640", + "coordonnees_gps": [ + 49.311097988, + -0.0268928739803 + ], + "libelle_d_acheminement": "AUBERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0268928739803, + 49.311097988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df15b7ebea8e7f71ae18626c197fcd2f3b01aa8d", + "fields": { + "code_commune_insee": "02782", + "nom_de_la_commune": "LE VERGUIER", + "code_postal": "02490", + "coordonnees_gps": [ + 49.9231401902, + 3.16936385423 + ], + "libelle_d_acheminement": "LE VERGUIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16936385423, + 49.9231401902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd55f7f9793223a4c069c65cdcb53b36a2e8545e", + "fields": { + "ligne_5": "DANVOU LA FERRIERE", + "code_commune_insee": "14027", + "libelle_d_acheminement": "LES MONTS D AUNAY", + "code_postal": "14770", + "nom_de_la_commune": "LES MONTS D AUNAY", + "coordonnees_gps": [ + 49.0144785445, + -0.633929762668 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.633929762668, + 49.0144785445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5954420848568fe1c5a2879582d375112801e2c8", + "fields": { + "code_commune_insee": "02784", + "nom_de_la_commune": "PETIT VERLY", + "code_postal": "02630", + "coordonnees_gps": [ + 49.9581493631, + 3.56275189688 + ], + "libelle_d_acheminement": "PETIT VERLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56275189688, + 49.9581493631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "173c630a3f230b1cc8489e5ad31f8fe5cabc6f8a", + "fields": { + "code_commune_insee": "14033", + "nom_de_la_commune": "AUVILLARS", + "code_postal": "14340", + "coordonnees_gps": [ + 49.1974017349, + 0.0757798080926 + ], + "libelle_d_acheminement": "AUVILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0757798080926, + 49.1974017349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "213806430ff4dd954753a9d9a5bb55e9e3be6cb9", + "fields": { + "code_commune_insee": "02786", + "nom_de_la_commune": "VERNEUIL SOUS COUCY", + "code_postal": "02380", + "coordonnees_gps": [ + 49.5451146096, + 3.31890035764 + ], + "libelle_d_acheminement": "VERNEUIL SOUS COUCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31890035764, + 49.5451146096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1729bdf65871ab70ff393d3c290c3d5ee5ab57a9", + "fields": { + "ligne_5": "BALLEROY", + "code_commune_insee": "14035", + "libelle_d_acheminement": "BALLEROY SUR DROME", + "code_postal": "14490", + "nom_de_la_commune": "BALLEROY SUR DROME", + "coordonnees_gps": [ + 49.1801660324, + -0.839275566606 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.839275566606, + 49.1801660324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca60c32820f3ab7697f46c1a30363f2ad3c6e18", + "fields": { + "code_commune_insee": "02787", + "nom_de_la_commune": "VERNEUIL SUR SERRE", + "code_postal": "02000", + "coordonnees_gps": [ + 49.6436030037, + 3.67943401416 + ], + "libelle_d_acheminement": "VERNEUIL SUR SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67943401416, + 49.6436030037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e1136f45469a78a9353aacc930eb31c1dfca1b8", + "fields": { + "code_commune_insee": "14036", + "nom_de_la_commune": "BANNEVILLE LA CAMPAGNE", + "code_postal": "14940", + "coordonnees_gps": [ + 49.1686883347, + -0.224327204511 + ], + "libelle_d_acheminement": "BANNEVILLE LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.224327204511, + 49.1686883347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "175af860eaeaa75ca60b5954ce2886f6efaf5352", + "fields": { + "code_commune_insee": "02788", + "nom_de_la_commune": "VERSIGNY", + "code_postal": "02800", + "coordonnees_gps": [ + 49.658136733, + 3.44270966266 + ], + "libelle_d_acheminement": "VERSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44270966266, + 49.658136733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82307043f86feb74d93d89a28125ff251602c1a4", + "fields": { + "code_commune_insee": "14040", + "nom_de_la_commune": "BARBEVILLE", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2738503472, + -0.75503800867 + ], + "libelle_d_acheminement": "BARBEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75503800867, + 49.2738503472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe175c07ed902e3fb998bd0309a91d92ab6ae6fe", + "fields": { + "code_commune_insee": "02792", + "nom_de_la_commune": "VEUILLY LA POTERIE", + "code_postal": "02810", + "coordonnees_gps": [ + 49.0832976282, + 3.2188650234 + ], + "libelle_d_acheminement": "VEUILLY LA POTERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2188650234, + 49.0832976282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d66541e5e9a8f104d27da3c2550485304074fb7f", + "fields": { + "code_commune_insee": "14041", + "nom_de_la_commune": "BARNEVILLE LA BERTRAN", + "code_postal": "14600", + "coordonnees_gps": [ + 49.3913668809, + 0.182164681877 + ], + "libelle_d_acheminement": "BARNEVILLE LA BERTRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.182164681877, + 49.3913668809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc7e3127f0c15e99f0dbb6660f81ea8a734f0d83", + "fields": { + "code_commune_insee": "02796", + "nom_de_la_commune": "VICHEL NANTEUIL", + "code_postal": "02210", + "coordonnees_gps": [ + 49.1822486294, + 3.29889935708 + ], + "libelle_d_acheminement": "VICHEL NANTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29889935708, + 49.1822486294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "155a091fdc64474eb19fb135872b783d0fb9265b", + "fields": { + "code_commune_insee": "14043", + "nom_de_la_commune": "BAROU EN AUGE", + "code_postal": "14620", + "coordonnees_gps": [ + 48.9297518504, + -0.0386142732111 + ], + "libelle_d_acheminement": "BAROU EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0386142732111, + 48.9297518504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f255ae5cee8594ce694feac25dff674a907a7eed", + "fields": { + "ligne_5": "PISSELEUX", + "code_commune_insee": "02810", + "libelle_d_acheminement": "VILLERS COTTERETS", + "code_postal": "02600", + "nom_de_la_commune": "VILLERS COTTERETS", + "coordonnees_gps": [ + 49.2392000574, + 3.09612191097 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09612191097, + 49.2392000574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9e387d817236c35628e26e45e2f80543baa97b3", + "fields": { + "code_commune_insee": "14044", + "nom_de_la_commune": "BASLY", + "code_postal": "14610", + "coordonnees_gps": [ + 49.2759084631, + -0.426109621277 + ], + "libelle_d_acheminement": "BASLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.426109621277, + 49.2759084631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "551e1e307c3f9731fa4d45d94fba66f7b37216dc", + "fields": { + "code_commune_insee": "02815", + "nom_de_la_commune": "VILLERS ST CHRISTOPHE", + "code_postal": "02590", + "coordonnees_gps": [ + 49.7796914155, + 3.09099897496 + ], + "libelle_d_acheminement": "VILLERS ST CHRISTOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09099897496, + 49.7796914155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65eb05adaf6655a026445c0f98a2e814c437ee58", + "fields": { + "code_commune_insee": "14054", + "nom_de_la_commune": "BEAUMESNIL", + "code_postal": "14380", + "coordonnees_gps": [ + 48.8967676433, + -0.968365915831 + ], + "libelle_d_acheminement": "BEAUMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.968365915831, + 48.8967676433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c827008c87861d05a79da4e0203f579b3dd5ed9", + "fields": { + "code_commune_insee": "02818", + "nom_de_la_commune": "VILLIERS ST DENIS", + "code_postal": "02310", + "coordonnees_gps": [ + 48.9977206046, + 3.26104064101 + ], + "libelle_d_acheminement": "VILLIERS ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26104064101, + 48.9977206046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cf8e6ef080fb850cbd40b7b6073cc038f6e531e", + "fields": { + "code_commune_insee": "14055", + "nom_de_la_commune": "BEAUMONT EN AUGE", + "code_postal": "14950", + "coordonnees_gps": [ + 49.2673749732, + 0.110186947305 + ], + "libelle_d_acheminement": "BEAUMONT EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.110186947305, + 49.2673749732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53ec1d6c6afd086d7ca8ca12b13ece773ef19788", + "fields": { + "code_commune_insee": "02823", + "nom_de_la_commune": "VOHARIES", + "code_postal": "02140", + "coordonnees_gps": [ + 49.7871481245, + 3.79203868186 + ], + "libelle_d_acheminement": "VOHARIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79203868186, + 49.7871481245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d5a05d54257538cbd3c15cb228ce069341477f2", + "fields": { + "code_commune_insee": "14057", + "nom_de_la_commune": "BELLENGREVILLE", + "code_postal": "14370", + "coordonnees_gps": [ + 49.1202677758, + -0.233407879923 + ], + "libelle_d_acheminement": "BELLENGREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.233407879923, + 49.1202677758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a5d2f41d97c88ddbf52bd132ceac9d108541891", + "fields": { + "code_commune_insee": "03005", + "nom_de_la_commune": "ARCHIGNAT", + "code_postal": "03380", + "coordonnees_gps": [ + 46.3670864602, + 2.41001210443 + ], + "libelle_d_acheminement": "ARCHIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41001210443, + 46.3670864602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccf8d8f36c057b3bb2bba186c5885abc436591da", + "fields": { + "ligne_5": "ETOUVY", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "731ff68e75b092b8e761ecb392f48baae787c751", + "fields": { + "code_commune_insee": "03010", + "nom_de_la_commune": "AUDES", + "code_postal": "03190", + "coordonnees_gps": [ + 46.4607707399, + 2.55904786289 + ], + "libelle_d_acheminement": "AUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55904786289, + 46.4607707399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d3848cb7fead9c88546c9520f15849df7b0a93c", + "fields": { + "ligne_5": "LA FERRIERE HARANG", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9029642a6178a40211cc4e278de9a66f56a4bbd3", + "fields": { + "code_commune_insee": "03015", + "nom_de_la_commune": "BAGNEUX", + "code_postal": "03460", + "coordonnees_gps": [ + 46.6455268495, + 3.20422374955 + ], + "libelle_d_acheminement": "BAGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20422374955, + 46.6455268495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6008757001b398cc1feefeb03031700d721f34d2", + "fields": { + "ligne_5": "LA GRAVERIE", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42b68b61116e30a06de9374b6434584859fd0e8c", + "fields": { + "code_commune_insee": "03020", + "nom_de_la_commune": "BEAUNE D ALLIER", + "code_postal": "03390", + "coordonnees_gps": [ + 46.272817743, + 2.8909137183 + ], + "libelle_d_acheminement": "BEAUNE D ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8909137183, + 46.272817743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fd8e9b9979a206de1c94b93b2939c5b846d165b", + "fields": { + "ligne_5": "ST DENIS MAISONCELLES", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22355af91652b8cf90099d65971ea80fade3c85d", + "fields": { + "code_commune_insee": "03030", + "nom_de_la_commune": "BIOZAT", + "code_postal": "03800", + "coordonnees_gps": [ + 46.0812713782, + 3.28868518632 + ], + "libelle_d_acheminement": "BIOZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28868518632, + 46.0812713782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9da39e9e81447f8627da34e42cb7e6b9323b6929", + "fields": { + "ligne_5": "ST PIERRE TARENTAINE", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8159dd5d777e0ce9a7e58be8a0c63fb111ffd5f9", + "fields": { + "code_commune_insee": "03033", + "nom_de_la_commune": "BOST", + "code_postal": "03300", + "coordonnees_gps": [ + 46.1834084633, + 3.50582300177 + ], + "libelle_d_acheminement": "BOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50582300177, + 46.1834084633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05901c2ac594f63e7878c701819c1dc3cca667b9", + "fields": { + "code_commune_insee": "14068", + "nom_de_la_commune": "BIEVILLE BEUVILLE", + "code_postal": "14112", + "coordonnees_gps": [ + 49.2394857474, + -0.336897222292 + ], + "libelle_d_acheminement": "BIEVILLE BEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.336897222292, + 49.2394857474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d215d17d8057534eb65ea7256c752bf713e8fbf4", + "fields": { + "code_commune_insee": "03034", + "nom_de_la_commune": "BOUCE", + "code_postal": "03150", + "coordonnees_gps": [ + 46.3203697694, + 3.49250482471 + ], + "libelle_d_acheminement": "BOUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49250482471, + 46.3203697694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9e0e3a14a7b7e557521e6ddd5100395f6d710f0", + "fields": { + "code_commune_insee": "14069", + "nom_de_la_commune": "BEUVILLERS", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1262889873, + 0.249746310711 + ], + "libelle_d_acheminement": "BEUVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.249746310711, + 49.1262889873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf884cf2918f2090a71a6e0c30ec8e12edf7e0a4", + "fields": { + "code_commune_insee": "03040", + "nom_de_la_commune": "BRESSOLLES", + "code_postal": "03000", + "coordonnees_gps": [ + 46.5280643075, + 3.295748661 + ], + "libelle_d_acheminement": "BRESSOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.295748661, + 46.5280643075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf45d1c2e2be0529ff09b4acd81984cc8b8ae588", + "fields": { + "code_commune_insee": "14076", + "nom_de_la_commune": "BLAINVILLE SUR ORNE", + "code_postal": "14550", + "coordonnees_gps": [ + 49.2281536645, + -0.304322423176 + ], + "libelle_d_acheminement": "BLAINVILLE SUR ORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.304322423176, + 49.2281536645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b145fd2f7ce1b9e6d8b0ac32d4010014cec28a7b", + "fields": { + "code_commune_insee": "03041", + "nom_de_la_commune": "LE BRETHON", + "code_postal": "03350", + "coordonnees_gps": [ + 46.5841457281, + 2.71525662654 + ], + "libelle_d_acheminement": "LE BRETHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71525662654, + 46.5841457281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faa0e5791470362c35c33ebebdef0e46dc8c4333", + "fields": { + "code_commune_insee": "14080", + "nom_de_la_commune": "LE BO", + "code_postal": "14690", + "coordonnees_gps": [ + 48.9063561928, + -0.441664417518 + ], + "libelle_d_acheminement": "LE BO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441664417518, + 48.9063561928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1caf53ca45ec762887721ccc9b3383db04c30345", + "fields": { + "code_commune_insee": "03042", + "nom_de_la_commune": "LE BREUIL", + "code_postal": "03120", + "coordonnees_gps": [ + 46.1767784559, + 3.66869091002 + ], + "libelle_d_acheminement": "LE BREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66869091002, + 46.1767784559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe0b3f33cb774eb17f3e917e4a35d46c96d441f9", + "fields": { + "code_commune_insee": "14083", + "nom_de_la_commune": "BONNEBOSQ", + "code_postal": "14340", + "coordonnees_gps": [ + 49.2183141516, + 0.0906070280253 + ], + "libelle_d_acheminement": "BONNEBOSQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0906070280253, + 49.2183141516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec0d5546776f465338fce810996ab69a1084ea6f", + "fields": { + "code_commune_insee": "03044", + "nom_de_la_commune": "BRUGHEAS", + "code_postal": "03700", + "coordonnees_gps": [ + 46.0728347147, + 3.3660599245 + ], + "libelle_d_acheminement": "BRUGHEAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3660599245, + 46.0728347147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99c84baf56055be606814d6200f463744fcacdbc", + "fields": { + "code_commune_insee": "14088", + "nom_de_la_commune": "BONS TASSILLY", + "code_postal": "14420", + "coordonnees_gps": [ + 48.9592439721, + -0.230410534534 + ], + "libelle_d_acheminement": "BONS TASSILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.230410534534, + 48.9592439721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16bf4f605edbc6a311968b54fefbd4fdff117f91", + "fields": { + "code_commune_insee": "03048", + "nom_de_la_commune": "CERILLY", + "code_postal": "03350", + "coordonnees_gps": [ + 46.6265101815, + 2.80901857226 + ], + "libelle_d_acheminement": "CERILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80901857226, + 46.6265101815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c50857c780d0a977687074eeb7c6a2742cdbaed7", + "fields": { + "code_commune_insee": "14093", + "nom_de_la_commune": "BRANVILLE", + "code_postal": "14430", + "coordonnees_gps": [ + 49.2691883633, + 0.0233678399188 + ], + "libelle_d_acheminement": "BRANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0233678399188, + 49.2691883633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e4728ccee3aa28978edea41bf2bf774f81187ef", + "fields": { + "code_commune_insee": "03064", + "nom_de_la_commune": "CHATEAU SUR ALLIER", + "code_postal": "03320", + "coordonnees_gps": [ + 46.7817092789, + 2.98716115012 + ], + "libelle_d_acheminement": "CHATEAU SUR ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98716115012, + 46.7817092789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea6cb9f723707c7a422a29dbb6c21c03fa1c24d8", + "fields": { + "code_commune_insee": "14096", + "nom_de_la_commune": "BREMOY", + "code_postal": "14260", + "coordonnees_gps": [ + 48.998435085, + -0.780841649522 + ], + "libelle_d_acheminement": "BREMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.780841649522, + 48.998435085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e6ca0c701950b82046a7383715b7e3b3f43aeea", + "fields": { + "code_commune_insee": "03070", + "nom_de_la_commune": "CHAVENON", + "code_postal": "03440", + "coordonnees_gps": [ + 46.4219939323, + 2.95170741295 + ], + "libelle_d_acheminement": "CHAVENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95170741295, + 46.4219939323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d576bef4f4c72444f44d4b4236ce5b94abb6ef2", + "fields": { + "ligne_5": "BROUAY", + "code_commune_insee": "14098", + "libelle_d_acheminement": "THUE ET MUE", + "code_postal": "14250", + "nom_de_la_commune": "THUE ET MUE", + "coordonnees_gps": [ + 49.2151517714, + -0.51673661621 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51673661621, + 49.2151517714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38a43a37e02d85db7c0b10cd70e67451a66e7fb8", + "fields": { + "code_commune_insee": "03081", + "nom_de_la_commune": "COLOMBIER", + "code_postal": "03600", + "coordonnees_gps": [ + 46.2669829489, + 2.7937131637 + ], + "libelle_d_acheminement": "COLOMBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7937131637, + 46.2669829489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bb49629d16293cb5706a6ce8ef5ce462342488e", + "fields": { + "code_commune_insee": "14110", + "nom_de_la_commune": "BRUCOURT", + "code_postal": "14160", + "coordonnees_gps": [ + 49.2468046177, + -0.103823258822 + ], + "libelle_d_acheminement": "BRUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.103823258822, + 49.2468046177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "317d48f0d3008e9a8cef1f9bb81f4cf9251164f9", + "fields": { + "code_commune_insee": "03094", + "nom_de_la_commune": "CREUZIER LE VIEUX", + "code_postal": "03300", + "coordonnees_gps": [ + 46.1605988745, + 3.43435089726 + ], + "libelle_d_acheminement": "CREUZIER LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43435089726, + 46.1605988745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "939ca428467831de02a11183916a807ba81f9d4a", + "fields": { + "code_commune_insee": "14111", + "nom_de_la_commune": "BUCEELS", + "code_postal": "14250", + "coordonnees_gps": [ + 49.1869481935, + -0.639612687818 + ], + "libelle_d_acheminement": "BUCEELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.639612687818, + 49.1869481935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6b54fa62ded11336640d991b0d15c230e8ab03e", + "fields": { + "code_commune_insee": "03097", + "nom_de_la_commune": "DENEUILLE LES MINES", + "code_postal": "03170", + "coordonnees_gps": [ + 46.3782924502, + 2.77557506066 + ], + "libelle_d_acheminement": "DENEUILLE LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77557506066, + 46.3782924502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a54dc5379f8397c12f46d9978e0a16aeae3bd5c", + "fields": { + "code_commune_insee": "14116", + "nom_de_la_commune": "LE BU SUR ROUVRES", + "code_postal": "14190", + "coordonnees_gps": [ + 49.0324526222, + -0.176721251591 + ], + "libelle_d_acheminement": "LE BU SUR ROUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.176721251591, + 49.0324526222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e80a690d4ac8b6254da65be2739969a9e794e64", + "fields": { + "code_commune_insee": "03109", + "nom_de_la_commune": "ESCUROLLES", + "code_postal": "03110", + "coordonnees_gps": [ + 46.1418285128, + 3.26795917971 + ], + "libelle_d_acheminement": "ESCUROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26795917971, + 46.1418285128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf7f8e7e8549e967acfbfadb3142afb08d5c1a0c", + "fields": { + "code_commune_insee": "14119", + "nom_de_la_commune": "CAGNY", + "code_postal": "14630", + "coordonnees_gps": [ + 49.154208668, + -0.260672944073 + ], + "libelle_d_acheminement": "CAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.260672944073, + 49.154208668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d840c2743034eec203dfd95d252aae356584f4e", + "fields": { + "code_commune_insee": "03110", + "nom_de_la_commune": "ESPINASSE VOZELLE", + "code_postal": "03110", + "coordonnees_gps": [ + 46.1292798016, + 3.33501762138 + ], + "libelle_d_acheminement": "ESPINASSE VOZELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33501762138, + 46.1292798016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d6e92c8d1fecbefd9793fd8009160ed4663a424", + "fields": { + "code_commune_insee": "14121", + "nom_de_la_commune": "CAHAGNOLLES", + "code_postal": "14490", + "coordonnees_gps": [ + 49.1633520253, + -0.776151012142 + ], + "libelle_d_acheminement": "CAHAGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.776151012142, + 49.1633520253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "253ba44179a22f9324c80c941adeea30ae4c12cf", + "fields": { + "code_commune_insee": "03111", + "nom_de_la_commune": "ESTIVAREILLES", + "code_postal": "03190", + "coordonnees_gps": [ + 46.4250969781, + 2.62477435556 + ], + "libelle_d_acheminement": "ESTIVAREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62477435556, + 46.4250969781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f718ae06bcd199960116b8a00a96cb05299d072", + "fields": { + "code_commune_insee": "14124", + "nom_de_la_commune": "LA CAMBE", + "code_postal": "14230", + "coordonnees_gps": [ + 49.3447032998, + -1.0093041857 + ], + "libelle_d_acheminement": "LA CAMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0093041857, + 49.3447032998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4554606b8a24fff3f0b2e7d1ed5bf3f928489ee", + "fields": { + "code_commune_insee": "03119", + "nom_de_la_commune": "GANNAY SUR LOIRE", + "code_postal": "03230", + "coordonnees_gps": [ + 46.7179070524, + 3.59634650725 + ], + "libelle_d_acheminement": "GANNAY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59634650725, + 46.7179070524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f44706559a5e7e8e553b3773543b732181dafbb0", + "fields": { + "code_commune_insee": "14130", + "nom_de_la_commune": "CAMPIGNY", + "code_postal": "14490", + "coordonnees_gps": [ + 49.2492188135, + -0.800557652048 + ], + "libelle_d_acheminement": "CAMPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.800557652048, + 49.2492188135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aacd4db1eadedea163babb11b1a15ea33607599d", + "fields": { + "code_commune_insee": "03122", + "nom_de_la_commune": "GIPCY", + "code_postal": "03210", + "coordonnees_gps": [ + 46.5110673404, + 3.05138939193 + ], + "libelle_d_acheminement": "GIPCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05138939193, + 46.5110673404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5436c9fbc7fcfe1b0ac99b4f00786cda704d453c", + "fields": { + "code_commune_insee": "14167", + "nom_de_la_commune": "COLOMBELLES", + "code_postal": "14460", + "coordonnees_gps": [ + 49.1982444899, + -0.295509264279 + ], + "libelle_d_acheminement": "COLOMBELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.295509264279, + 49.1982444899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5320f06aeb35b8e27711df6a8a08b91ea6c8c4ae", + "fields": { + "code_commune_insee": "03124", + "nom_de_la_commune": "GOUISE", + "code_postal": "03340", + "coordonnees_gps": [ + 46.4107128153, + 3.43846428318 + ], + "libelle_d_acheminement": "GOUISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43846428318, + 46.4107128153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1612f419ee5065c81954837cf60409df3bbc67af", + "fields": { + "ligne_5": "CONDE SUR NOIREAU", + "code_commune_insee": "14174", + "libelle_d_acheminement": "CONDE EN NORMANDIE", + "code_postal": "14110", + "nom_de_la_commune": "CONDE EN NORMANDIE", + "coordonnees_gps": [ + 48.8496985115, + -0.562504676497 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.562504676497, + 48.8496985115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaf08fc51d587cb34454a55186cdc7f3a1f0b5be", + "fields": { + "code_commune_insee": "03125", + "nom_de_la_commune": "LA GUILLERMIE", + "code_postal": "03250", + "coordonnees_gps": [ + 45.9813228114, + 3.64529174052 + ], + "libelle_d_acheminement": "LA GUILLERMIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64529174052, + 45.9813228114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea808dcaf7992b67263e586c4cad38cef597bebd", + "fields": { + "ligne_5": "ST GERMAIN DU CRIOULT", + "code_commune_insee": "14174", + "libelle_d_acheminement": "CONDE EN NORMANDIE", + "code_postal": "14110", + "nom_de_la_commune": "CONDE EN NORMANDIE", + "coordonnees_gps": [ + 48.8496985115, + -0.562504676497 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.562504676497, + 48.8496985115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dc63c8d47cc06c728ea6799cc46e382c7127adf", + "fields": { + "code_commune_insee": "03133", + "nom_de_la_commune": "JENZAT", + "code_postal": "03800", + "coordonnees_gps": [ + 46.1601157879, + 3.19738809001 + ], + "libelle_d_acheminement": "JENZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19738809001, + 46.1601157879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6394f278cd32102aac19a9b47797cf05024159b6", + "fields": { + "ligne_5": "ST PIERRE LA VIEILLE", + "code_commune_insee": "14174", + "libelle_d_acheminement": "CONDE EN NORMANDIE", + "code_postal": "14770", + "nom_de_la_commune": "CONDE EN NORMANDIE", + "coordonnees_gps": [ + 48.8496985115, + -0.562504676497 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.562504676497, + 48.8496985115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d232db05a7f64c2159b3c735df53fc18994a512f", + "fields": { + "code_commune_insee": "03145", + "nom_de_la_commune": "LIGNEROLLES", + "code_postal": "03410", + "coordonnees_gps": [ + 46.2822531749, + 2.56690530803 + ], + "libelle_d_acheminement": "LIGNEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56690530803, + 46.2822531749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d36d3c31b75a00b4cfb914048227bf47b9e9758", + "fields": { + "code_commune_insee": "14179", + "nom_de_la_commune": "CORDEBUGLE", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1134254456, + 0.379835846184 + ], + "libelle_d_acheminement": "CORDEBUGLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.379835846184, + 49.1134254456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca2169bbc2bd2b3f1735f7b43140eeeefcbe08a8", + "fields": { + "code_commune_insee": "03148", + "nom_de_la_commune": "LORIGES", + "code_postal": "03500", + "coordonnees_gps": [ + 46.2659177615, + 3.34188086413 + ], + "libelle_d_acheminement": "LORIGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34188086413, + 46.2659177615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db69f02158817b67038c945fd8fb8b03804b8f1a", + "fields": { + "code_commune_insee": "14181", + "nom_de_la_commune": "CORMELLES LE ROYAL", + "code_postal": "14123", + "coordonnees_gps": [ + 49.1547732827, + -0.327418700171 + ], + "libelle_d_acheminement": "CORMELLES LE ROYAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.327418700171, + 49.1547732827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11cb44085d8249146a606dd8c370f67be68fdf90", + "fields": { + "code_commune_insee": "03152", + "nom_de_la_commune": "LOUROUX DE BOUBLE", + "code_postal": "03330", + "coordonnees_gps": [ + 46.2297197928, + 2.97309854454 + ], + "libelle_d_acheminement": "LOUROUX DE BOUBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97309854454, + 46.2297197928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40103e4c89e2a2142f5af3f9814ab5d8dc062254", + "fields": { + "code_commune_insee": "14184", + "nom_de_la_commune": "COTTUN", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2679469163, + -0.785755484018 + ], + "libelle_d_acheminement": "COTTUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.785755484018, + 49.2679469163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "663cefdc4ab37bb3cb72c19294992beabc33771a", + "fields": { + "code_commune_insee": "03154", + "nom_de_la_commune": "LUNEAU", + "code_postal": "03130", + "coordonnees_gps": [ + 46.3662876048, + 3.95278636616 + ], + "libelle_d_acheminement": "LUNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95278636616, + 46.3662876048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5cd651480476df737eda6a1a37ffd93ee8dd00e", + "fields": { + "code_commune_insee": "14194", + "nom_de_la_commune": "COURTONNE LES DEUX EGLISES", + "code_postal": "14290", + "coordonnees_gps": [ + 49.0888311326, + 0.37808461753 + ], + "libelle_d_acheminement": "COURTONNE LES DEUX EGLISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37808461753, + 49.0888311326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dfdc0af756ff977a381f7693d767b0a044f6f45", + "fields": { + "ligne_5": "GIVARLAIS", + "code_commune_insee": "03158", + "libelle_d_acheminement": "HAUT BOCAGE", + "code_postal": "03190", + "nom_de_la_commune": "HAUT BOCAGE", + "coordonnees_gps": [ + 46.4928636302, + 2.65852361334 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65852361334, + 46.4928636302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68177b33b537a6a4a85f460fe9ac0a591f090bbf", + "fields": { + "code_commune_insee": "14197", + "nom_de_la_commune": "CRESSERONS", + "code_postal": "14440", + "coordonnees_gps": [ + 49.2876312473, + -0.354257196415 + ], + "libelle_d_acheminement": "CRESSERONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.354257196415, + 49.2876312473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c3e36fb36f66def445b624bd8df6e7cdc461e2e", + "fields": { + "code_commune_insee": "03161", + "nom_de_la_commune": "MARCILLAT EN COMBRAILLE", + "code_postal": "03420", + "coordonnees_gps": [ + 46.1701624404, + 2.63441118376 + ], + "libelle_d_acheminement": "MARCILLAT EN COMBRAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63441118376, + 46.1701624404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64a9d2c59ca33fde389ab02692db20c721227153", + "fields": { + "code_commune_insee": "14209", + "nom_de_la_commune": "CROUAY", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2690354674, + -0.817371239475 + ], + "libelle_d_acheminement": "CROUAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.817371239475, + 49.2690354674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fe324f6d8f6ef8fa2478b887e75a6a4c0dc8caa", + "fields": { + "code_commune_insee": "03166", + "nom_de_la_commune": "MAZERIER", + "code_postal": "03800", + "coordonnees_gps": [ + 46.1325144393, + 3.18170482903 + ], + "libelle_d_acheminement": "MAZERIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18170482903, + 46.1325144393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5326fbc269157b2fa72b99a5f1773a309766c284", + "fields": { + "code_commune_insee": "14215", + "nom_de_la_commune": "CUVERVILLE", + "code_postal": "14840", + "coordonnees_gps": [ + 49.1917821033, + -0.261435495897 + ], + "libelle_d_acheminement": "CUVERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.261435495897, + 49.1917821033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "914d07cb24d5d7b25b99e1664083fa07fc0ed546", + "fields": { + "code_commune_insee": "03179", + "nom_de_la_commune": "MONTAIGU LE BLIN", + "code_postal": "03150", + "coordonnees_gps": [ + 46.2907437255, + 3.51623839378 + ], + "libelle_d_acheminement": "MONTAIGU LE BLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51623839378, + 46.2907437255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc2302fd9e8041153cf3072339d70e9f99d3bbc8", + "fields": { + "code_commune_insee": "14226", + "nom_de_la_commune": "DONNAY", + "code_postal": "14220", + "coordonnees_gps": [ + 48.9469344961, + -0.41732907803 + ], + "libelle_d_acheminement": "DONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41732907803, + 48.9469344961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "521bbb5c64921c0c570b663c829e641561c9dd8e", + "fields": { + "code_commune_insee": "03186", + "nom_de_la_commune": "MONTMARAULT", + "code_postal": "03390", + "coordonnees_gps": [ + 46.3201872756, + 2.95237432039 + ], + "libelle_d_acheminement": "MONTMARAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95237432039, + 46.3201872756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "988ab2356485398c3d97277f85763ad65da55149", + "fields": { + "code_commune_insee": "14243", + "nom_de_la_commune": "EQUEMAUVILLE", + "code_postal": "14600", + "coordonnees_gps": [ + 49.4031514807, + 0.209917592829 + ], + "libelle_d_acheminement": "EQUEMAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.209917592829, + 49.4031514807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f3e44b01fa11154a3e055ab7d43fe9f1cd57c49", + "fields": { + "code_commune_insee": "03188", + "nom_de_la_commune": "MONTORD", + "code_postal": "03500", + "coordonnees_gps": [ + 46.2897924844, + 3.23962321645 + ], + "libelle_d_acheminement": "MONTORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23962321645, + 46.2897924844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bd6a1e42ba7fb50a46347b901980d82c8b0c60c", + "fields": { + "code_commune_insee": "14248", + "nom_de_la_commune": "ESPINS", + "code_postal": "14220", + "coordonnees_gps": [ + 48.9996788, + -0.414663338937 + ], + "libelle_d_acheminement": "ESPINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.414663338937, + 48.9996788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87ab6a3770da5e94488e4edb586ce56c853ca268", + "fields": { + "code_commune_insee": "03193", + "nom_de_la_commune": "NASSIGNY", + "code_postal": "03190", + "coordonnees_gps": [ + 46.4978434905, + 2.59440652102 + ], + "libelle_d_acheminement": "NASSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59440652102, + 46.4978434905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f299e89a6a406302282d728e1d2e166710aec2e3", + "fields": { + "code_commune_insee": "14257", + "nom_de_la_commune": "EVRECY", + "code_postal": "14210", + "coordonnees_gps": [ + 49.0940016709, + -0.501372307136 + ], + "libelle_d_acheminement": "EVRECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.501372307136, + 49.0940016709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "114e234587994de533b2f98d5d3fff2826eefafd", + "fields": { + "code_commune_insee": "03196", + "nom_de_la_commune": "NEUILLY EN DONJON", + "code_postal": "03130", + "coordonnees_gps": [ + 46.3427363495, + 3.88528963495 + ], + "libelle_d_acheminement": "NEUILLY EN DONJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88528963495, + 46.3427363495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15060daa838b86353cd6ea859c563bee272b45c7", + "fields": { + "ligne_5": "BULLY", + "code_commune_insee": "14266", + "libelle_d_acheminement": "FEUGUEROLLES BULLY", + "code_postal": "14320", + "nom_de_la_commune": "FEUGUEROLLES BULLY", + "coordonnees_gps": [ + 49.1119321886, + -0.407584971568 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.407584971568, + 49.1119321886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93cd0f4bd0c3edbde80472c66d7c067d22a92697", + "fields": { + "code_commune_insee": "03197", + "nom_de_la_commune": "NEUILLY LE REAL", + "code_postal": "03340", + "coordonnees_gps": [ + 46.466710676, + 3.43721508538 + ], + "libelle_d_acheminement": "NEUILLY LE REAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43721508538, + 46.466710676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bc6020a3dac3561a781b9e66d6f51d1cf104a8d", + "fields": { + "code_commune_insee": "14273", + "nom_de_la_commune": "LA FOLLETIERE ABENON", + "code_postal": "14290", + "coordonnees_gps": [ + 48.973853559, + 0.408000802048 + ], + "libelle_d_acheminement": "LA FOLLETIERE ABENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.408000802048, + 48.973853559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67506f21e9350eba18665ec18a870fa5f1da5a37", + "fields": { + "code_commune_insee": "03198", + "nom_de_la_commune": "NEURE", + "code_postal": "03320", + "coordonnees_gps": [ + 46.7448146276, + 2.97978880995 + ], + "libelle_d_acheminement": "NEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97978880995, + 46.7448146276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a6c6b13acdc4f4a498cd0dd830d8bef4bfd1b38", + "fields": { + "ligne_5": "AIGNERVILLE", + "code_commune_insee": "14281", + "libelle_d_acheminement": "FORMIGNY LA BATAILLE", + "code_postal": "14710", + "nom_de_la_commune": "FORMIGNY LA BATAILLE", + "coordonnees_gps": [ + 49.3358463072, + -0.896417546016 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.896417546016, + 49.3358463072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "602dad4835d48717226902961f54323d650eafe6", + "fields": { + "code_commune_insee": "03206", + "nom_de_la_commune": "LA PETITE MARCHE", + "code_postal": "03420", + "coordonnees_gps": [ + 46.1898756857, + 2.56142616231 + ], + "libelle_d_acheminement": "LA PETITE MARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56142616231, + 46.1898756857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95ccafb7ac0269b493fdf7e4e991a951cb214d0a", + "fields": { + "ligne_5": "FORMIGNY", + "code_commune_insee": "14281", + "libelle_d_acheminement": "FORMIGNY LA BATAILLE", + "code_postal": "14710", + "nom_de_la_commune": "FORMIGNY LA BATAILLE", + "coordonnees_gps": [ + 49.3358463072, + -0.896417546016 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.896417546016, + 49.3358463072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4c87546e46249f945bcb692695244e1c0221532", + "fields": { + "code_commune_insee": "03210", + "nom_de_la_commune": "POUZY MESANGY", + "code_postal": "03320", + "coordonnees_gps": [ + 46.7049856575, + 3.00718039936 + ], + "libelle_d_acheminement": "POUZY MESANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00718039936, + 46.7049856575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98f4cd1843268f20d59f7349b518511930a6282e", + "fields": { + "ligne_5": "LOUVIERES", + "code_commune_insee": "14281", + "libelle_d_acheminement": "FORMIGNY LA BATAILLE", + "code_postal": "14710", + "nom_de_la_commune": "FORMIGNY LA BATAILLE", + "coordonnees_gps": [ + 49.3358463072, + -0.896417546016 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.896417546016, + 49.3358463072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19372c59c77096f46fb62ad35ae4baff720306a0", + "fields": { + "code_commune_insee": "03222", + "nom_de_la_commune": "ST CAPRAIS", + "code_postal": "03190", + "coordonnees_gps": [ + 46.5449333532, + 2.73980095211 + ], + "libelle_d_acheminement": "ST CAPRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73980095211, + 46.5449333532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0980c13100b7ca8a0bc05d64ac2cadeec23a7295", + "fields": { + "code_commune_insee": "14284", + "nom_de_la_commune": "FOURNEAUX LE VAL", + "code_postal": "14700", + "coordonnees_gps": [ + 48.8625465885, + -0.269829926137 + ], + "libelle_d_acheminement": "FOURNEAUX LE VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.269829926137, + 48.8625465885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dc8e7a4eed1e1dcbf0e8536e097dbae1a9e24ef", + "fields": { + "code_commune_insee": "03226", + "nom_de_la_commune": "ST DIDIER EN DONJON", + "code_postal": "03130", + "coordonnees_gps": [ + 46.3830807017, + 3.86098077845 + ], + "libelle_d_acheminement": "ST DIDIER EN DONJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86098077845, + 46.3830807017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "536ff1d7f6f9693882b39f325b40757547fa8e7a", + "fields": { + "code_commune_insee": "14289", + "nom_de_la_commune": "FRESNE LA MERE", + "code_postal": "14700", + "coordonnees_gps": [ + 48.8880480669, + -0.125057878602 + ], + "libelle_d_acheminement": "FRESNE LA MERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.125057878602, + 48.8880480669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5c4d36695001dcd7432ab71c116764c95685e3c", + "fields": { + "code_commune_insee": "03246", + "nom_de_la_commune": "ST MARTINIEN", + "code_postal": "03380", + "coordonnees_gps": [ + 46.3329189292, + 2.44287081295 + ], + "libelle_d_acheminement": "ST MARTINIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44287081295, + 46.3329189292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a698ac5de71f9a404f480b5124f013aad7b2c916", + "fields": { + "code_commune_insee": "14290", + "nom_de_la_commune": "FRESNEY LE PUCEUX", + "code_postal": "14680", + "coordonnees_gps": [ + 49.0660952631, + -0.3530701321 + ], + "libelle_d_acheminement": "FRESNEY LE PUCEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.3530701321, + 49.0660952631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fb773ededed54ae0ce6002c7e19cdda80ed9ff7", + "fields": { + "code_commune_insee": "03247", + "nom_de_la_commune": "ST MENOUX", + "code_postal": "03210", + "coordonnees_gps": [ + 46.5823923172, + 3.14494082801 + ], + "libelle_d_acheminement": "ST MENOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14494082801, + 46.5823923172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fb261c2f9de97c43702b9d85b1817d06d2c6eb7", + "fields": { + "code_commune_insee": "14299", + "nom_de_la_commune": "GENNEVILLE", + "code_postal": "14600", + "coordonnees_gps": [ + 49.3598603886, + 0.273712320272 + ], + "libelle_d_acheminement": "GENNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.273712320272, + 49.3598603886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f2413c223cb271ec6f5bc5ffb916f5315e96484", + "fields": { + "code_commune_insee": "03252", + "nom_de_la_commune": "ST PONT", + "code_postal": "03110", + "coordonnees_gps": [ + 46.1588138012, + 3.29855532517 + ], + "libelle_d_acheminement": "ST PONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29855532517, + 46.1588138012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca27d8a3db04bc8566647ce24e99c9501f8a958d", + "fields": { + "code_commune_insee": "14304", + "nom_de_la_commune": "GONNEVILLE SUR HONFLEUR", + "code_postal": "14600", + "coordonnees_gps": [ + 49.381480242, + 0.236373405465 + ], + "libelle_d_acheminement": "GONNEVILLE SUR HONFLEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236373405465, + 49.381480242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9ada2c252b0d95e6be10bcb62817ef61a18b32b", + "fields": { + "code_commune_insee": "03259", + "nom_de_la_commune": "ST SAUVIER", + "code_postal": "03370", + "coordonnees_gps": [ + 46.396594391, + 2.33154584912 + ], + "libelle_d_acheminement": "ST SAUVIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33154584912, + 46.396594391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "633304076917c46d71a17e90b56d89f370af8688", + "fields": { + "code_commune_insee": "14325", + "nom_de_la_commune": "HERMANVILLE SUR MER", + "code_postal": "14880", + "coordonnees_gps": [ + 49.2832471592, + -0.32297738333 + ], + "libelle_d_acheminement": "HERMANVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.32297738333, + 49.2832471592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e64d83ad8068b58ca0b25568c70e7aad34e58522", + "fields": { + "code_commune_insee": "03278", + "nom_de_la_commune": "TAXAT SENAT", + "code_postal": "03140", + "coordonnees_gps": [ + 46.207728501, + 3.14578508085 + ], + "libelle_d_acheminement": "TAXAT SENAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14578508085, + 46.207728501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "874b250d3b4855d8062459f2feb1bf2c00ceff0a", + "fields": { + "code_commune_insee": "14328", + "nom_de_la_commune": "HEROUVILLETTE", + "code_postal": "14850", + "coordonnees_gps": [ + 49.2140427905, + -0.260172250622 + ], + "libelle_d_acheminement": "HEROUVILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.260172250622, + 49.2140427905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62c20a6e93e404c3a2f899060fa689bac6f06b5f", + "fields": { + "code_commune_insee": "03280", + "nom_de_la_commune": "TERJAT", + "code_postal": "03420", + "coordonnees_gps": [ + 46.2144621437, + 2.61879197582 + ], + "libelle_d_acheminement": "TERJAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61879197582, + 46.2144621437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8cf2511a476e201c017030afe7f64854ef2578a", + "fields": { + "ligne_5": "BROCOTTES", + "code_commune_insee": "14335", + "libelle_d_acheminement": "HOTOT EN AUGE", + "code_postal": "14430", + "nom_de_la_commune": "HOTOT EN AUGE", + "coordonnees_gps": [ + 49.1774252803, + -0.076370337762 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.076370337762, + 49.1774252803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fdaae72bb6be840625481974f1adfd72856ccb2", + "fields": { + "code_commune_insee": "03286", + "nom_de_la_commune": "TOULON SUR ALLIER", + "code_postal": "03400", + "coordonnees_gps": [ + 46.51061605, + 3.37706265767 + ], + "libelle_d_acheminement": "TOULON SUR ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37706265767, + 46.51061605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13100570a29b0370abf6879ad96c7653b5b28562", + "fields": { + "code_commune_insee": "14337", + "nom_de_la_commune": "LA HOUBLONNIERE", + "code_postal": "14340", + "coordonnees_gps": [ + 49.1233026249, + 0.102461250649 + ], + "libelle_d_acheminement": "LA HOUBLONNIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.102461250649, + 49.1233026249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34566dc9bb0aeb2e3cc54fdca36ba44aa69eab6d", + "fields": { + "code_commune_insee": "03290", + "nom_de_la_commune": "TREVOL", + "code_postal": "03460", + "coordonnees_gps": [ + 46.6370512909, + 3.31589139326 + ], + "libelle_d_acheminement": "TREVOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31589139326, + 46.6370512909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6b205ccac4602b592e925fb44c5e80b93867a1b", + "fields": { + "code_commune_insee": "14342", + "nom_de_la_commune": "ISIGNY SUR MER", + "code_postal": "14230", + "coordonnees_gps": [ + 49.305761488, + -1.10256916512 + ], + "libelle_d_acheminement": "ISIGNY SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10256916512, + 49.305761488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45217bcc196b48fe3e879466900526172a8c00d9", + "fields": { + "code_commune_insee": "03299", + "nom_de_la_commune": "VARENNES SUR TECHE", + "code_postal": "03220", + "coordonnees_gps": [ + 46.3177738358, + 3.6374417286 + ], + "libelle_d_acheminement": "VARENNES SUR TECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6374417286, + 46.3177738358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eec0bf5fa6c82f77f77d711acab70c4cdf39bb1c", + "fields": { + "code_commune_insee": "14352", + "nom_de_la_commune": "LANDELLES ET COUPIGNY", + "code_postal": "14380", + "coordonnees_gps": [ + 48.8983991959, + -1.00295458631 + ], + "libelle_d_acheminement": "LANDELLES ET COUPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00295458631, + 48.8983991959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "860d9f440dcfadaac76c8ddbfa3d1c2f2793a201", + "fields": { + "ligne_5": "NEUVILLE", + "code_commune_insee": "03315", + "libelle_d_acheminement": "VILLEFRANCHE D ALLIER", + "code_postal": "03430", + "nom_de_la_commune": "VILLEFRANCHE D ALLIER", + "coordonnees_gps": [ + 46.3963110357, + 2.84126895926 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84126895926, + 46.3963110357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95b2e53844680965c03b99ab7ba18a1b8ed0dd77", + "fields": { + "code_commune_insee": "14354", + "nom_de_la_commune": "LANGRUNE SUR MER", + "code_postal": "14830", + "coordonnees_gps": [ + 49.3129812752, + -0.378266023421 + ], + "libelle_d_acheminement": "LANGRUNE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.378266023421, + 49.3129812752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df410aade7a23323123b80d1b73e69f39767bb3c", + "fields": { + "ligne_5": "LA FOUX D ALLOS", + "code_commune_insee": "04006", + "libelle_d_acheminement": "ALLOS", + "code_postal": "04260", + "nom_de_la_commune": "ALLOS", + "coordonnees_gps": [ + 44.2614961379, + 6.62671789984 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62671789984, + 44.2614961379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b5e7de882ec273508f9f398dacceb10b703b085", + "fields": { + "code_commune_insee": "14358", + "nom_de_la_commune": "LEAUPARTIE", + "code_postal": "14340", + "coordonnees_gps": [ + 49.1802281883, + 0.0527677741155 + ], + "libelle_d_acheminement": "LEAUPARTIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0527677741155, + 49.1802281883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70e97acc82329209b2fa568359d1eb5ea8709826", + "fields": { + "code_commune_insee": "04008", + "nom_de_la_commune": "ANNOT", + "code_postal": "04240", + "coordonnees_gps": [ + 43.9620009704, + 6.66395811566 + ], + "libelle_d_acheminement": "ANNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66395811566, + 43.9620009704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7d0039535dfb5759866e341b057c1d1cb69c1a7", + "fields": { + "code_commune_insee": "14360", + "nom_de_la_commune": "LEFFARD", + "code_postal": "14700", + "coordonnees_gps": [ + 48.9163712497, + -0.297239121567 + ], + "libelle_d_acheminement": "LEFFARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.297239121567, + 48.9163712497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a774b2d094ee4bd8826fb81c6f2b737313d267c", + "fields": { + "code_commune_insee": "04016", + "nom_de_la_commune": "AUTHON", + "code_postal": "04200", + "coordonnees_gps": [ + 44.2492545518, + 6.15102271049 + ], + "libelle_d_acheminement": "AUTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15102271049, + 44.2492545518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d61442d186a737f4548ea7957919c30e69f2d604", + "fields": { + "code_commune_insee": "14362", + "nom_de_la_commune": "LESSARD ET LE CHENE", + "code_postal": "14140", + "coordonnees_gps": [ + 49.0709184093, + 0.13127569904 + ], + "libelle_d_acheminement": "LESSARD ET LE CHENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.13127569904, + 49.0709184093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80e564d9c10c922779b3b44808f582f534b6dae5", + "fields": { + "ligne_5": "ESPARRON LA BATIE", + "code_commune_insee": "04023", + "libelle_d_acheminement": "BAYONS", + "code_postal": "04250", + "nom_de_la_commune": "BAYONS", + "coordonnees_gps": [ + 44.3249277264, + 6.17282537759 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17282537759, + 44.3249277264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dbe64348a2afa4d12aaa3c56639b4ff08e053b1", + "fields": { + "code_commune_insee": "14365", + "nom_de_la_commune": "LION SUR MER", + "code_postal": "14780", + "coordonnees_gps": [ + 49.3007695684, + -0.333954811691 + ], + "libelle_d_acheminement": "LION SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.333954811691, + 49.3007695684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f26d63d8f486116d7d79e5aec1f0d3ddfeaec795", + "fields": { + "code_commune_insee": "04027", + "nom_de_la_commune": "BEVONS", + "code_postal": "04200", + "coordonnees_gps": [ + 44.1779964769, + 5.87895928741 + ], + "libelle_d_acheminement": "BEVONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87895928741, + 44.1779964769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be4b447cc7e8291e8f1430a890fd3aff4762c8a8", + "fields": { + "ligne_5": "LE MOLAY", + "code_commune_insee": "14370", + "libelle_d_acheminement": "LE MOLAY LITTRY", + "code_postal": "14330", + "nom_de_la_commune": "LE MOLAY LITTRY", + "coordonnees_gps": [ + 49.2344021109, + -0.889241335163 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889241335163, + 49.2344021109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d35eb0fc87bed9e02956171b657349236fd76a3a", + "fields": { + "ligne_5": "TAULANNE", + "code_commune_insee": "04039", + "libelle_d_acheminement": "CASTELLANE", + "code_postal": "04120", + "nom_de_la_commune": "CASTELLANE", + "coordonnees_gps": [ + 43.8449862174, + 6.49029842016 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49029842016, + 43.8449862174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05649308adb24bcd7aca8962c9eeafbbdd038557", + "fields": { + "ligne_5": "FERVAQUES", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b35db8a945272897fad9f94aa06876750fd70dc3", + "fields": { + "code_commune_insee": "04040", + "nom_de_la_commune": "LE CASTELLARD MELAN", + "code_postal": "04380", + "coordonnees_gps": [ + 44.2016431995, + 6.13159521325 + ], + "libelle_d_acheminement": "LE CASTELLARD MELAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13159521325, + 44.2016431995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cb9208cb2c522c2ee7b43efd0535c075dc8d815", + "fields": { + "ligne_5": "LA CROUPTE", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bee6c5d7295f4af29bd596d0953dd4ab4596ece9", + "fields": { + "code_commune_insee": "04043", + "nom_de_la_commune": "VAL DE CHALVAGNE", + "code_postal": "04320", + "coordonnees_gps": [ + 43.9046374337, + 6.76578520195 + ], + "libelle_d_acheminement": "VAL DE CHALVAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76578520195, + 43.9046374337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b385367a51d76a9c3239330e9908d1cbff439c1", + "fields": { + "ligne_5": "LE MESNIL DURAND", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce5990641d8a6079ad81e7e8bde121511b45a44e", + "fields": { + "code_commune_insee": "04049", + "nom_de_la_commune": "CHATEAU ARNOUX ST AUBAN", + "code_postal": "04160", + "coordonnees_gps": [ + 44.0854706133, + 5.99239535024 + ], + "libelle_d_acheminement": "CHATEAU ARNOUX ST AUBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99239535024, + 44.0854706133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5d93239b9287563cd7393ac07b31a7e397dea51", + "fields": { + "ligne_5": "LES MOUTIERS HUBERT", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d88f6e45b6a12d43516ebfd82a72eb24d7874d3a", + "fields": { + "code_commune_insee": "04054", + "nom_de_la_commune": "CHATEAUREDON", + "code_postal": "04270", + "coordonnees_gps": [ + 44.026508747, + 6.22429507853 + ], + "libelle_d_acheminement": "CHATEAUREDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22429507853, + 44.026508747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7065109dc621c1c98e13e49b8ca779877c93c27", + "fields": { + "ligne_5": "PREAUX ST SEBASTIEN", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14290", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48a7c1ecf8fdf52dd8a63f4a8dc4ad6a3e40bcff", + "fields": { + "ligne_5": "STE ANNE", + "code_commune_insee": "04062", + "libelle_d_acheminement": "LA CONDAMINE CHATELARD", + "code_postal": "04530", + "nom_de_la_commune": "LA CONDAMINE CHATELARD", + "coordonnees_gps": [ + 44.4627686721, + 6.69629170403 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69629170403, + 44.4627686721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ac7aef0502425b079ecd50a926c3836832d8193", + "fields": { + "code_commune_insee": "14378", + "nom_de_la_commune": "LONGUEVILLE", + "code_postal": "14230", + "coordonnees_gps": [ + 49.3354924873, + -0.957303295702 + ], + "libelle_d_acheminement": "LONGUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.957303295702, + 49.3354924873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11b11cca67a83996d561a589b665b5870f64efc1", + "fields": { + "code_commune_insee": "04065", + "nom_de_la_commune": "CRUIS", + "code_postal": "04230", + "coordonnees_gps": [ + 44.0831626991, + 5.83846949092 + ], + "libelle_d_acheminement": "CRUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83846949092, + 44.0831626991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00ec806d2f62ec1514f1fc26bcab1b62edccfd94", + "fields": { + "code_commune_insee": "14380", + "nom_de_la_commune": "LOUCELLES", + "code_postal": "14250", + "coordonnees_gps": [ + 49.225730744, + -0.578019893606 + ], + "libelle_d_acheminement": "LOUCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.578019893606, + 49.225730744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e77ec98ba5ebe48a5f0554fa3769120d1415e5e", + "fields": { + "code_commune_insee": "04070", + "nom_de_la_commune": "DIGNE LES BAINS", + "code_postal": "04000", + "coordonnees_gps": [ + 44.0908723554, + 6.23590323452 + ], + "libelle_d_acheminement": "DIGNE LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23590323452, + 44.0908723554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e32b2201e423bb69b110ee5b193dcae1aa0a8483", + "fields": { + "code_commune_insee": "14396", + "nom_de_la_commune": "MALTOT", + "code_postal": "14930", + "coordonnees_gps": [ + 49.1315977028, + -0.422983283738 + ], + "libelle_d_acheminement": "MALTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.422983283738, + 49.1315977028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed490fdeeafcbe59ead4ab40c65dca75fc6c8fa3", + "fields": { + "ligne_5": "CHABRIERES", + "code_commune_insee": "04074", + "libelle_d_acheminement": "ENTRAGES", + "code_postal": "04270", + "nom_de_la_commune": "ENTRAGES", + "coordonnees_gps": [ + 44.0379332734, + 6.26880026038 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26880026038, + 44.0379332734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0106765d0e8a64e8a1314c244293501c4dc453a0", + "fields": { + "code_commune_insee": "14397", + "nom_de_la_commune": "MANDEVILLE EN BESSIN", + "code_postal": "14710", + "coordonnees_gps": [ + 49.3069905991, + -0.864918148377 + ], + "libelle_d_acheminement": "MANDEVILLE EN BESSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.864918148377, + 49.3069905991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0767c3999faf50867fb4dfa79e1dc31035ca7608", + "fields": { + "code_commune_insee": "04076", + "nom_de_la_commune": "ENTREVAUX", + "code_postal": "04320", + "coordonnees_gps": [ + 43.9502625021, + 6.80238543689 + ], + "libelle_d_acheminement": "ENTREVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80238543689, + 43.9502625021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a161d207ec55b2c601f8a7e30949fd0db2c23e4", + "fields": { + "code_commune_insee": "14398", + "nom_de_la_commune": "MANERBE", + "code_postal": "14340", + "coordonnees_gps": [ + 49.1784066008, + 0.143884808036 + ], + "libelle_d_acheminement": "MANERBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.143884808036, + 49.1784066008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43acd135fd7a70b98c85d51ad3b26502b9aedab5", + "fields": { + "code_commune_insee": "04079", + "nom_de_la_commune": "L ESCALE", + "code_postal": "04160", + "coordonnees_gps": [ + 44.0810058608, + 6.03455494518 + ], + "libelle_d_acheminement": "L ESCALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03455494518, + 44.0810058608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cae8dc26fcb27d46620503dece5ef189535962b7", + "fields": { + "code_commune_insee": "14399", + "nom_de_la_commune": "MANNEVILLE LA PIPARD", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2652939412, + 0.228360552544 + ], + "libelle_d_acheminement": "MANNEVILLE LA PIPARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.228360552544, + 49.2652939412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3ab99bdccb0bb5eb76dafd56d4cf14ceb1be826", + "fields": { + "code_commune_insee": "04084", + "nom_de_la_commune": "ESTOUBLON", + "code_postal": "04270", + "coordonnees_gps": [ + 43.943168614, + 6.19407821084 + ], + "libelle_d_acheminement": "ESTOUBLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19407821084, + 43.943168614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3cc9950e1c77b8d5f861f7a9522fccda5edc594", + "fields": { + "code_commune_insee": "14400", + "nom_de_la_commune": "LE MANOIR", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2888976256, + -0.599271328471 + ], + "libelle_d_acheminement": "LE MANOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.599271328471, + 49.2888976256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1c4562dafe4e0a24b74523caaeb8591d1764ef7", + "fields": { + "code_commune_insee": "04093", + "nom_de_la_commune": "GIGORS", + "code_postal": "04250", + "coordonnees_gps": [ + 44.4239994398, + 6.14097306258 + ], + "libelle_d_acheminement": "GIGORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14097306258, + 44.4239994398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83be7c3b3669fe62ee9f221c0fd4112dbb41f3bc", + "fields": { + "code_commune_insee": "14405", + "nom_de_la_commune": "MARTIGNY SUR L ANTE", + "code_postal": "14700", + "coordonnees_gps": [ + 48.890276343, + -0.287046389252 + ], + "libelle_d_acheminement": "MARTIGNY SUR L ANTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.287046389252, + 48.890276343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4476f7d30554f83b9c75842ee11f2dffdeec01ea", + "fields": { + "code_commune_insee": "04094", + "nom_de_la_commune": "GREOUX LES BAINS", + "code_postal": "04800", + "coordonnees_gps": [ + 43.7676102812, + 5.86495046225 + ], + "libelle_d_acheminement": "GREOUX LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86495046225, + 43.7676102812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dac27e2e9a82f4cb5845ce31f519606a7ecd2a7", + "fields": { + "ligne_5": "COULOMBS", + "code_commune_insee": "14406", + "libelle_d_acheminement": "MOULINS EN BESSIN", + "code_postal": "14480", + "nom_de_la_commune": "MOULINS EN BESSIN", + "coordonnees_gps": [ + 49.2486390509, + -0.60137367329 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60137367329, + 49.2486390509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "119247542b192b51ed685da71760df4c5da055c9", + "fields": { + "code_commune_insee": "04096", + "nom_de_la_commune": "JAUSIERS", + "code_postal": "04850", + "coordonnees_gps": [ + 44.3876110175, + 6.78602312361 + ], + "libelle_d_acheminement": "JAUSIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78602312361, + 44.3876110175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cb859ff257703c57200ee6ec9268ff8913c6ab0", + "fields": { + "code_commune_insee": "14421", + "nom_de_la_commune": "LE MESNIL GUILLAUME", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1048879579, + 0.282566648467 + ], + "libelle_d_acheminement": "LE MESNIL GUILLAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.282566648467, + 49.1048879579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc960a69465b13c7a677d46f1f6eabc9ad3eb2ec", + "fields": { + "code_commune_insee": "04097", + "nom_de_la_commune": "LA JAVIE", + "code_postal": "04420", + "coordonnees_gps": [ + 44.1971990157, + 6.32157607452 + ], + "libelle_d_acheminement": "LA JAVIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32157607452, + 44.1971990157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef458d7b80b2a313c5bdb3d86149d304fa024897", + "fields": { + "code_commune_insee": "14424", + "nom_de_la_commune": "LE MESNIL ROBERT", + "code_postal": "14380", + "coordonnees_gps": [ + 48.8801018014, + -0.972914180513 + ], + "libelle_d_acheminement": "LE MESNIL ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.972914180513, + 48.8801018014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bfa4d869d409367ce3522817f4502c4b3814e46", + "fields": { + "code_commune_insee": "04109", + "nom_de_la_commune": "MALLEFOUGASSE AUGES", + "code_postal": "04230", + "coordonnees_gps": [ + 44.0759918613, + 5.89779648569 + ], + "libelle_d_acheminement": "MALLEFOUGASSE AUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89779648569, + 44.0759918613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "521cd308e970f9541e07d1613b795a92bbe89666", + "fields": { + "code_commune_insee": "14427", + "nom_de_la_commune": "LE MESNIL VILLEMENT", + "code_postal": "14690", + "coordonnees_gps": [ + 48.8563899917, + -0.376578654979 + ], + "libelle_d_acheminement": "LE MESNIL VILLEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.376578654979, + 48.8563899917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d18bb2f87525ec276c23eae6b0a8b56ac44e3dd5", + "fields": { + "code_commune_insee": "04118", + "nom_de_la_commune": "MELVE", + "code_postal": "04250", + "coordonnees_gps": [ + 44.3563698074, + 5.9929110209 + ], + "libelle_d_acheminement": "MELVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9929110209, + 44.3563698074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e41529a952f39de62a8ae9cd3c289aeda7b0c3b", + "fields": { + "code_commune_insee": "14430", + "nom_de_la_commune": "MEUVAINES", + "code_postal": "14960", + "coordonnees_gps": [ + 49.3256472804, + -0.572440458403 + ], + "libelle_d_acheminement": "MEUVAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.572440458403, + 49.3256472804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65d7de7b8ae8b350727381e567ae48eb4250bdc6", + "fields": { + "ligne_5": "MEYRONNES", + "code_commune_insee": "04120", + "libelle_d_acheminement": "VAL D ORONAYE", + "code_postal": "04530", + "nom_de_la_commune": "VAL D ORONAYE", + "coordonnees_gps": [ + 44.4730642294, + 6.81114702697 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81114702697, + 44.4730642294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf1ac40abbc1897f939855a58ff4c786d336a63d", + "fields": { + "ligne_5": "GRANDCHAMP LE CHATEAU", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f8f61a8833a9e3a07872b3e9502a6ec3e18b82a", + "fields": { + "code_commune_insee": "04121", + "nom_de_la_commune": "MEZEL", + "code_postal": "04270", + "coordonnees_gps": [ + 43.9980863365, + 6.17879892264 + ], + "libelle_d_acheminement": "MEZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17879892264, + 43.9980863365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f61e6e6464e6d1e8dcc53b37e6aad06ca8eb8907", + "fields": { + "ligne_5": "ST CRESPIN", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14270", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f382add743c9c583aa01956f66a4779c0e32066", + "fields": { + "code_commune_insee": "04123", + "nom_de_la_commune": "MISON", + "code_postal": "04200", + "coordonnees_gps": [ + 44.2624329752, + 5.86562678758 + ], + "libelle_d_acheminement": "MISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86562678758, + 44.2624329752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b75d0f2e53b37ce1ed416e63491177eb2bc9a690", + "fields": { + "code_commune_insee": "14436", + "nom_de_la_commune": "MONCEAUX EN BESSIN", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2503317019, + -0.689321766659 + ], + "libelle_d_acheminement": "MONCEAUX EN BESSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.689321766659, + 49.2503317019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8a1e7bf13f213b11ac8dca764f50c99fd194731", + "fields": { + "code_commune_insee": "04133", + "nom_de_la_commune": "MORIEZ", + "code_postal": "04170", + "coordonnees_gps": [ + 43.9640929535, + 6.46253345907 + ], + "libelle_d_acheminement": "MORIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46253345907, + 43.9640929535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0179ee81bbc3635f541aff8bd79db4c0a05ba83c", + "fields": { + "code_commune_insee": "14437", + "nom_de_la_commune": "MONDEVILLE", + "code_postal": "14120", + "coordonnees_gps": [ + 49.1693649378, + -0.310691187417 + ], + "libelle_d_acheminement": "MONDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.310691187417, + 49.1693649378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ccb3889f9614363ace50dac013e058582120ef6", + "fields": { + "code_commune_insee": "04135", + "nom_de_la_commune": "MOUSTIERS STE MARIE", + "code_postal": "04360", + "coordonnees_gps": [ + 43.8383278559, + 6.22818909628 + ], + "libelle_d_acheminement": "MOUSTIERS STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22818909628, + 43.8383278559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c22a6d6361f4d2d0d42d93e9c203937743b5eec2", + "fields": { + "code_commune_insee": "14452", + "nom_de_la_commune": "MORTEAUX COULIBOEUF", + "code_postal": "14620", + "coordonnees_gps": [ + 48.9239845756, + -0.081385727774 + ], + "libelle_d_acheminement": "MORTEAUX COULIBOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.081385727774, + 48.9239845756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08ce143047b0629b575240bd19dcddb3d378ef1e", + "fields": { + "code_commune_insee": "04143", + "nom_de_la_commune": "ORAISON", + "code_postal": "04700", + "coordonnees_gps": [ + 43.911106033, + 5.92458011626 + ], + "libelle_d_acheminement": "ORAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92458011626, + 43.911106033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98b146a8afde0c8efe673777d3c5ab30c48ddff9", + "fields": { + "code_commune_insee": "14453", + "nom_de_la_commune": "MOSLES", + "code_postal": "14400", + "coordonnees_gps": [ + 49.3054549485, + -0.820523193825 + ], + "libelle_d_acheminement": "MOSLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.820523193825, + 49.3054549485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceb1b6f5fbe0dbf7fa884ba8be45f92b60fe34a8", + "fields": { + "code_commune_insee": "04145", + "nom_de_la_commune": "PEIPIN", + "code_postal": "04200", + "coordonnees_gps": [ + 44.1413026547, + 5.9437147381 + ], + "libelle_d_acheminement": "PEIPIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9437147381, + 44.1413026547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61ecf184c36c6b34746bceb7e68ada75d3690fe1", + "fields": { + "code_commune_insee": "14454", + "nom_de_la_commune": "MOUEN", + "code_postal": "14790", + "coordonnees_gps": [ + 49.1498499035, + -0.488405654437 + ], + "libelle_d_acheminement": "MOUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.488405654437, + 49.1498499035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56c3e88025f3b14c51409d62451e3b093374fe40", + "fields": { + "code_commune_insee": "04150", + "nom_de_la_commune": "PIEGUT", + "code_postal": "05130", + "coordonnees_gps": [ + 44.4533786118, + 6.1317225786 + ], + "libelle_d_acheminement": "PIEGUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1317225786, + 44.4533786118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "548ed198977588acf646592e126f79b29f6f90e0", + "fields": { + "ligne_5": "MOULT", + "code_commune_insee": "14456", + "libelle_d_acheminement": "MOULT CHICHEBOVILLE", + "code_postal": "14370", + "nom_de_la_commune": "MOULT CHICHEBOVILLE", + "coordonnees_gps": [ + 49.1127187184, + -0.165293838791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.165293838791, + 49.1127187184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73b0ea6adc0e5e318c22a341c626218348842e22", + "fields": { + "code_commune_insee": "04152", + "nom_de_la_commune": "PIERREVERT", + "code_postal": "04860", + "coordonnees_gps": [ + 43.8065050599, + 5.72273821724 + ], + "libelle_d_acheminement": "PIERREVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72273821724, + 43.8065050599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9f530a18c301c50d0d9f0151dc313f4b54d5624", + "fields": { + "code_commune_insee": "14457", + "nom_de_la_commune": "LES MOUTIERS EN AUGE", + "code_postal": "14620", + "coordonnees_gps": [ + 48.8983599621, + 0.00771639719015 + ], + "libelle_d_acheminement": "LES MOUTIERS EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00771639719015, + 48.8983599621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38b3c30f620a76821de203c4dc6284627722e41a", + "fields": { + "ligne_5": "BLEGIERS", + "code_commune_insee": "04155", + "libelle_d_acheminement": "PRADS HAUTE BLEONE", + "code_postal": "04420", + "nom_de_la_commune": "PRADS HAUTE BLEONE", + "coordonnees_gps": [ + 44.2134336367, + 6.46376994635 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46376994635, + 44.2134336367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ef5b0e468c408195d85323c4f0df7af9ef3a7d9", + "fields": { + "ligne_5": "CORBON", + "code_commune_insee": "14474", + "libelle_d_acheminement": "NOTRE DAME D ESTREES CORBON", + "code_postal": "14340", + "nom_de_la_commune": "NOTRE DAME D ESTREES CORBON", + "coordonnees_gps": [ + 49.1354583044, + -0.00148553423555 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00148553423555, + 49.1354583044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1eeedd16e4fa89eb2ba1510c4457d6c955d385f", + "fields": { + "code_commune_insee": "04159", + "nom_de_la_commune": "REDORTIERS", + "code_postal": "04150", + "coordonnees_gps": [ + 44.0981211073, + 5.61414591507 + ], + "libelle_d_acheminement": "REDORTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61414591507, + 44.0981211073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9e15ff4eb4367a245dbf50feaf11e4a5902768a", + "fields": { + "ligne_5": "TOURNAY SUR ODON", + "code_commune_insee": "14475", + "libelle_d_acheminement": "VAL D ARRY", + "code_postal": "14310", + "nom_de_la_commune": "VAL D ARRY", + "coordonnees_gps": [ + 49.1241683725, + -0.575352839603 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.575352839603, + 49.1241683725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "042ad9a2033006b73bd090d90d812541b2c650e8", + "fields": { + "ligne_5": "MEOLANS", + "code_commune_insee": "04161", + "libelle_d_acheminement": "MEOLANS REVEL", + "code_postal": "04340", + "nom_de_la_commune": "MEOLANS REVEL", + "coordonnees_gps": [ + 44.3714312017, + 6.49846404885 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49846404885, + 44.3714312017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60cd24813bf1e61b3098abede9468d9dd7e4c7d6", + "fields": { + "code_commune_insee": "14482", + "nom_de_la_commune": "OUEZY", + "code_postal": "14270", + "coordonnees_gps": [ + 49.0852774139, + -0.103965705023 + ], + "libelle_d_acheminement": "OUEZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.103965705023, + 49.0852774139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44bb9737b0b488c50c0e2fc33a9765bd8b2c2136", + "fields": { + "code_commune_insee": "04174", + "nom_de_la_commune": "ST BENOIT", + "code_postal": "04240", + "coordonnees_gps": [ + 43.9629414064, + 6.72386704569 + ], + "libelle_d_acheminement": "ST BENOIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72386704569, + 43.9629414064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bbdee2693416cf9f9d7c4292668a31bd565d62e", + "fields": { + "code_commune_insee": "14486", + "nom_de_la_commune": "OUILLY LE TESSON", + "code_postal": "14190", + "coordonnees_gps": [ + 48.9909032572, + -0.21312584412 + ], + "libelle_d_acheminement": "OUILLY LE TESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.21312584412, + 48.9909032572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d49d3f4a1b29a69c0345113c3b1a5ce22c82647", + "fields": { + "code_commune_insee": "04177", + "nom_de_la_commune": "HAUTES DUYES", + "code_postal": "04380", + "coordonnees_gps": [ + 44.1949051654, + 6.17423380965 + ], + "libelle_d_acheminement": "HAUTES DUYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17423380965, + 44.1949051654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66fd3ca5fd6a4b8540168ede1a13cfd1f1f6d22e", + "fields": { + "code_commune_insee": "14494", + "nom_de_la_commune": "PERIERS EN AUGE", + "code_postal": "14160", + "coordonnees_gps": [ + 49.2645646622, + -0.094148558043 + ], + "libelle_d_acheminement": "PERIERS EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.094148558043, + 49.2645646622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d43932cb37cf7e2b36d3d058c72c7e65a51b5579", + "fields": { + "code_commune_insee": "04179", + "nom_de_la_commune": "ST GENIEZ", + "code_postal": "04200", + "coordonnees_gps": [ + 44.2326668931, + 6.06267402716 + ], + "libelle_d_acheminement": "ST GENIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06267402716, + 44.2326668931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "434bf32cb9dc330057511a7f4958a14f88d07992", + "fields": { + "code_commune_insee": "14497", + "nom_de_la_commune": "PERRIERES", + "code_postal": "14170", + "coordonnees_gps": [ + 48.9597084503, + -0.125803038768 + ], + "libelle_d_acheminement": "PERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.125803038768, + 48.9597084503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b0a9528d921c13cd5bdb718e7ff0125d731e571", + "fields": { + "code_commune_insee": "04180", + "nom_de_la_commune": "ST JACQUES", + "code_postal": "04330", + "coordonnees_gps": [ + 43.976917929, + 6.37128517143 + ], + "libelle_d_acheminement": "ST JACQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37128517143, + 43.976917929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cc943acbf208f283e312a8b0ab6d8a2bdf2a846", + "fields": { + "code_commune_insee": "14498", + "nom_de_la_commune": "PERTHEVILLE NERS", + "code_postal": "14700", + "coordonnees_gps": [ + 48.8758297587, + -0.109353634654 + ], + "libelle_d_acheminement": "PERTHEVILLE NERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109353634654, + 48.8758297587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c710a24a9a522fd79fc7a54a610834adf16dd976", + "fields": { + "code_commune_insee": "04186", + "nom_de_la_commune": "ST LAURENT DU VERDON", + "code_postal": "04500", + "coordonnees_gps": [ + 43.7216172183, + 6.06859538838 + ], + "libelle_d_acheminement": "ST LAURENT DU VERDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06859538838, + 43.7216172183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44ad0a4ffc0bcbeeb3246c1d253cfa790edf0ce8", + "fields": { + "code_commune_insee": "14510", + "nom_de_la_commune": "LA POMMERAYE", + "code_postal": "14690", + "coordonnees_gps": [ + 48.9094040854, + -0.41548285835 + ], + "libelle_d_acheminement": "LA POMMERAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41548285835, + 48.9094040854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c7e0227682bc9780cad15c2976e4a4c6cecdfe5", + "fields": { + "code_commune_insee": "04193", + "nom_de_la_commune": "ST PAUL SUR UBAYE", + "code_postal": "04530", + "coordonnees_gps": [ + 44.5588988433, + 6.82078770145 + ], + "libelle_d_acheminement": "ST PAUL SUR UBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82078770145, + 44.5588988433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab942e587f779f7f9be4a55e1e401201ba9a250f", + "fields": { + "code_commune_insee": "14514", + "nom_de_la_commune": "PONT L EVEQUE", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2805619214, + 0.187666368193 + ], + "libelle_d_acheminement": "PONT L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.187666368193, + 49.2805619214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "021ce9cfd7b2f50fc0b784736dc9770a201f5d04", + "fields": { + "code_commune_insee": "04208", + "nom_de_la_commune": "SIMIANE LA ROTONDE", + "code_postal": "04150", + "coordonnees_gps": [ + 43.9838128235, + 5.56248994589 + ], + "libelle_d_acheminement": "SIMIANE LA ROTONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56248994589, + 43.9838128235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d50bc03949df848c74fbefbc35e765fc08eef00", + "fields": { + "code_commune_insee": "14519", + "nom_de_la_commune": "PREAUX BOCAGE", + "code_postal": "14210", + "coordonnees_gps": [ + 49.0526321231, + -0.509209645231 + ], + "libelle_d_acheminement": "PREAUX BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509209645231, + 49.0526321231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ba93f02fa1b390e0b07dc31a1054eca55bde87f", + "fields": { + "ligne_5": "CARNIOL", + "code_commune_insee": "04208", + "libelle_d_acheminement": "SIMIANE LA ROTONDE", + "code_postal": "04150", + "nom_de_la_commune": "SIMIANE LA ROTONDE", + "coordonnees_gps": [ + 43.9838128235, + 5.56248994589 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56248994589, + 43.9838128235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bb6320c8f3bab37b4f8a1f6c6f66bfbb4257184", + "fields": { + "code_commune_insee": "14531", + "nom_de_la_commune": "RAPILLY", + "code_postal": "14690", + "coordonnees_gps": [ + 48.8569781675, + -0.343804758393 + ], + "libelle_d_acheminement": "RAPILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.343804758393, + 48.8569781675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ade67dd3f0cefca594a179022d5f10743c0e118", + "fields": { + "code_commune_insee": "04210", + "nom_de_la_commune": "SOLEILHAS", + "code_postal": "04120", + "coordonnees_gps": [ + 43.8599760555, + 6.64860753226 + ], + "libelle_d_acheminement": "SOLEILHAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64860753226, + 43.8599760555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b8886e77e6cd97cc24c66f91d38ebb9d11d8a96", + "fields": { + "code_commune_insee": "14536", + "nom_de_la_commune": "LA RIVIERE ST SAUVEUR", + "code_postal": "14600", + "coordonnees_gps": [ + 49.4080358178, + 0.268004849021 + ], + "libelle_d_acheminement": "LA RIVIERE ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.268004849021, + 49.4080358178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6269317ea3ecda634547838bcf13e05144c86651", + "fields": { + "code_commune_insee": "04222", + "nom_de_la_commune": "TURRIERS", + "code_postal": "04250", + "coordonnees_gps": [ + 44.3915882101, + 6.15918221528 + ], + "libelle_d_acheminement": "TURRIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15918221528, + 44.3915882101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0e0a9a5d73705b87ede421870f07b52e4cd3413", + "fields": { + "code_commune_insee": "14541", + "nom_de_la_commune": "LA ROQUE BAIGNARD", + "code_postal": "14340", + "coordonnees_gps": [ + 49.1779193913, + 0.091587015818 + ], + "libelle_d_acheminement": "LA ROQUE BAIGNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.091587015818, + 49.1779193913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e02a22fbda89fa298b8af39ef604908e6138a80", + "fields": { + "code_commune_insee": "04226", + "nom_de_la_commune": "UVERNET FOURS", + "code_postal": "04400", + "coordonnees_gps": [ + 44.3191132083, + 6.67028443403 + ], + "libelle_d_acheminement": "UVERNET FOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67028443403, + 44.3191132083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ca75d86d0630b0c0cf60ccddeeee98c7846efc0", + "fields": { + "code_commune_insee": "14543", + "nom_de_la_commune": "ROTS", + "code_postal": "14980", + "coordonnees_gps": [ + 49.2060587409, + -0.474725507611 + ], + "libelle_d_acheminement": "ROTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.474725507611, + 49.2060587409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc356fcd3c30d54423f3a861f0d5bf639cb3b091", + "fields": { + "code_commune_insee": "04230", + "nom_de_la_commune": "VALENSOLE", + "code_postal": "04210", + "coordonnees_gps": [ + 43.8380844852, + 5.94191847166 + ], + "libelle_d_acheminement": "VALENSOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94191847166, + 43.8380844852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fecc83bbbc41cbc7a7e20163df83f5cd39dad283", + "fields": { + "ligne_5": "GARCELLES SECQUEVILLE", + "code_commune_insee": "14554", + "libelle_d_acheminement": "LE CASTELET", + "code_postal": "14540", + "nom_de_la_commune": "LE CASTELET", + "coordonnees_gps": [ + 49.0816169321, + -0.286022666698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.286022666698, + 49.0816169321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8244ade89673f89bde9008bee1c56821422c3e63", + "fields": { + "code_commune_insee": "04235", + "nom_de_la_commune": "VERDACHES", + "code_postal": "04140", + "coordonnees_gps": [ + 44.2677990746, + 6.34334657591 + ], + "libelle_d_acheminement": "VERDACHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34334657591, + 44.2677990746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2fafd3509dde7aebdd79004b55d21335fed3f19", + "fields": { + "ligne_5": "LA CHAPELLE YVON", + "code_commune_insee": "14570", + "libelle_d_acheminement": "VALORBIQUET", + "code_postal": "14290", + "nom_de_la_commune": "VALORBIQUET", + "coordonnees_gps": [ + 49.0508380133, + 0.301847275517 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301847275517, + 49.0508380133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed7cd1ab77eb47e644089abd01a3b8fa7bf24e45", + "fields": { + "code_commune_insee": "04244", + "nom_de_la_commune": "VOLONNE", + "code_postal": "04290", + "coordonnees_gps": [ + 44.1239478859, + 6.03467827528 + ], + "libelle_d_acheminement": "VOLONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03467827528, + 44.1239478859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad123d7c14f797cebedd217dba5cec5aac9ea9f2", + "fields": { + "code_commune_insee": "14571", + "nom_de_la_commune": "ST DENIS DE MAILLOC", + "code_postal": "14100", + "coordonnees_gps": [ + 49.0982778471, + 0.314133133909 + ], + "libelle_d_acheminement": "ST DENIS DE MAILLOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.314133133909, + 49.0982778471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ff6ba0a1ba31b4865b9ab5934a0b7f117f4d053", + "fields": { + "ligne_5": "ABRIES", + "code_commune_insee": "05001", + "libelle_d_acheminement": "ABRIES RISTOLAS", + "code_postal": "05460", + "nom_de_la_commune": "ABRIES RISTOLAS", + "coordonnees_gps": [ + 44.8163462455, + 6.94164442809 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94164442809, + 44.8163462455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "885e58c462f8b139c68aa7437f04f6539065140b", + "fields": { + "code_commune_insee": "14574", + "nom_de_la_commune": "ST DESIR", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1441541002, + 0.190725369715 + ], + "libelle_d_acheminement": "ST DESIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.190725369715, + 49.1441541002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f7e312fafbf1fc1c69100641c59a4186fb07988", + "fields": { + "code_commune_insee": "05003", + "nom_de_la_commune": "AIGUILLES", + "code_postal": "05470", + "coordonnees_gps": [ + 44.7793442905, + 6.87518098236 + ], + "libelle_d_acheminement": "AIGUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87518098236, + 44.7793442905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b9f6e8f8c2ce235725123a22cdb9be117fbf555", + "fields": { + "ligne_5": "STE FOY DE MONTGOMMERY", + "code_commune_insee": "14576", + "libelle_d_acheminement": "VAL DE VIE", + "code_postal": "14140", + "nom_de_la_commune": "VAL DE VIE", + "coordonnees_gps": [ + 48.9587088015, + 0.163639221018 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.163639221018, + 48.9587088015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c53685fb05298be004dcb2dfbcf2be9cb93ece6", + "fields": { + "code_commune_insee": "05014", + "nom_de_la_commune": "BARRET SUR MEOUGE", + "code_postal": "05300", + "coordonnees_gps": [ + 44.2647188875, + 5.72864435071 + ], + "libelle_d_acheminement": "BARRET SUR MEOUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72864435071, + 44.2647188875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd03d97e8fb63db7f3fc27657efb3052d475ae2b", + "fields": { + "code_commune_insee": "14578", + "nom_de_la_commune": "ST GATIEN DES BOIS", + "code_postal": "14130", + "coordonnees_gps": [ + 49.3508650728, + 0.186845848605 + ], + "libelle_d_acheminement": "ST GATIEN DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.186845848605, + 49.3508650728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d1dee80352a7d6769b575011cd025b9596b1357", + "fields": { + "code_commune_insee": "05019", + "nom_de_la_commune": "LA BEAUME", + "code_postal": "05140", + "coordonnees_gps": [ + 44.5482914658, + 5.65375214301 + ], + "libelle_d_acheminement": "LA BEAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65375214301, + 44.5482914658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dabfb7e77cffdc7aae20371b2a0805f8fa655f82", + "fields": { + "code_commune_insee": "14589", + "nom_de_la_commune": "ST GERMAIN LE VASSON", + "code_postal": "14190", + "coordonnees_gps": [ + 48.9999441182, + -0.301428564884 + ], + "libelle_d_acheminement": "ST GERMAIN LE VASSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.301428564884, + 48.9999441182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cee3f0eebcbff5d6521427eefeadcb48e43881c", + "fields": { + "ligne_5": "BRUIS", + "code_commune_insee": "05024", + "libelle_d_acheminement": "VALDOULE", + "code_postal": "05150", + "nom_de_la_commune": "VALDOULE", + "coordonnees_gps": [ + 44.4677366709, + 5.50388863719 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50388863719, + 44.4677366709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fcd7ed518ab93898ffcec4a10eae61ad6f4be33", + "fields": { + "code_commune_insee": "14593", + "nom_de_la_commune": "ST HYMER", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2432932718, + 0.167395984438 + ], + "libelle_d_acheminement": "ST HYMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.167395984438, + 49.2432932718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3eee1431877e013ce71a706fe8b0201a766dd18", + "fields": { + "code_commune_insee": "05031", + "nom_de_la_commune": "CHAMPCELLA", + "code_postal": "05310", + "coordonnees_gps": [ + 44.7175774929, + 6.53138042905 + ], + "libelle_d_acheminement": "CHAMPCELLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53138042905, + 44.7175774929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7649164b50ebebb30eafaaf3fcffc916b7cb51a", + "fields": { + "code_commune_insee": "14598", + "nom_de_la_commune": "ST JOUIN", + "code_postal": "14430", + "coordonnees_gps": [ + 49.2175501244, + -0.0129782416911 + ], + "libelle_d_acheminement": "ST JOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0129782416911, + 49.2175501244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9978b5f34381058eb0bcdc41723a40d25551d932", + "fields": { + "code_commune_insee": "05035", + "nom_de_la_commune": "CHATEAUNEUF D OZE", + "code_postal": "05400", + "coordonnees_gps": [ + 44.5053255197, + 5.89775602851 + ], + "libelle_d_acheminement": "CHATEAUNEUF D OZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89775602851, + 44.5053255197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac23c2feba05b2440e0e974b4f023c63cd351ec1", + "fields": { + "code_commune_insee": "14606", + "nom_de_la_commune": "ST LEGER DUBOSQ", + "code_postal": "14430", + "coordonnees_gps": [ + 49.2302039549, + -0.0147539397439 + ], + "libelle_d_acheminement": "ST LEGER DUBOSQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0147539397439, + 49.2302039549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14ebf4b2d6f9b513d5a94f5be39aacba541373fd", + "fields": { + "code_commune_insee": "05038", + "nom_de_la_commune": "CHATEAU VILLE VIEILLE", + "code_postal": "05350", + "coordonnees_gps": [ + 44.7677289666, + 6.8000656504 + ], + "libelle_d_acheminement": "CHATEAU VILLE VIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8000656504, + 44.7677289666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b61d84ce31cdacd092b246fb7a31c9c50dc022c", + "fields": { + "code_commune_insee": "14621", + "nom_de_la_commune": "ST MARTIN DE BIENFAITE LA CRESSONNIERE", + "code_postal": "14290", + "coordonnees_gps": [ + 49.0328920711, + 0.352774402255 + ], + "libelle_d_acheminement": "ST MARTIN BIENFAITE CRESSONNIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.352774402255, + 49.0328920711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ffdd32d0b734d65f70fd46a546fe76cd3689dc3", + "fields": { + "code_commune_insee": "05051", + "nom_de_la_commune": "ETOILE ST CYRICE", + "code_postal": "05700", + "coordonnees_gps": [ + 44.3209708871, + 5.64377761466 + ], + "libelle_d_acheminement": "ETOILE ST CYRICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64377761466, + 44.3209708871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3452396b62ea7d5cf386a464638faa7b55fceadf", + "fields": { + "code_commune_insee": "14625", + "nom_de_la_commune": "ST MARTIN DE LA LIEUE", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1102778699, + 0.224396339009 + ], + "libelle_d_acheminement": "ST MARTIN DE LA LIEUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.224396339009, + 49.1102778699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "372f964fc7952f6e44e7fb793575c62a6e6f6fc3", + "fields": { + "code_commune_insee": "05052", + "nom_de_la_commune": "EYGLIERS", + "code_postal": "05600", + "coordonnees_gps": [ + 44.6925244966, + 6.66688741371 + ], + "libelle_d_acheminement": "EYGLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66688741371, + 44.6925244966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fad8c0b698ad9e0fe9a9fe43b43828ed523b5607", + "fields": { + "code_commune_insee": "14626", + "nom_de_la_commune": "ST MARTIN DE MAILLOC", + "code_postal": "14100", + "coordonnees_gps": [ + 49.088406569, + 0.286444688377 + ], + "libelle_d_acheminement": "ST MARTIN DE MAILLOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.286444688377, + 49.088406569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41e612580cef58149f56bdfc1e7e9104ff41b90c", + "fields": { + "ligne_5": "EYGUIANS", + "code_commune_insee": "05053", + "libelle_d_acheminement": "GARDE COLOMBE", + "code_postal": "05300", + "nom_de_la_commune": "GARDE COLOMBE", + "coordonnees_gps": [ + 44.3570512046, + 5.78336490177 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78336490177, + 44.3570512046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c7268a38e14265a29802d645c594bb5d38137b0", + "fields": { + "code_commune_insee": "14627", + "nom_de_la_commune": "ST MARTIN DE MIEUX", + "code_postal": "14700", + "coordonnees_gps": [ + 48.8735138252, + -0.240621816891 + ], + "libelle_d_acheminement": "ST MARTIN DE MIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.240621816891, + 48.8735138252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cec152cd6020360c6be177d9d0229b63bd04392d", + "fields": { + "code_commune_insee": "05055", + "nom_de_la_commune": "LA FAURIE", + "code_postal": "05140", + "coordonnees_gps": [ + 44.5674587303, + 5.74040594768 + ], + "libelle_d_acheminement": "LA FAURIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74040594768, + 44.5674587303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "890df334fe71ccdf035738a50c9365cad7d30864", + "fields": { + "code_commune_insee": "14637", + "nom_de_la_commune": "ST OUEN DU MESNIL OGER", + "code_postal": "14670", + "coordonnees_gps": [ + 49.1575801048, + -0.115265598688 + ], + "libelle_d_acheminement": "ST OUEN DU MESNIL OGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.115265598688, + 49.1575801048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eb6633277b2ea8657bc3f24e253a248262e2c6a", + "fields": { + "ligne_5": "ROMETTE", + "code_commune_insee": "05061", + "libelle_d_acheminement": "GAP", + "code_postal": "05000", + "nom_de_la_commune": "GAP", + "coordonnees_gps": [ + 44.5798600596, + 6.06486052138 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06486052138, + 44.5798600596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26e1e86afe6b7b5e1d0c80205f370bed8605ab25", + "fields": { + "code_commune_insee": "14648", + "nom_de_la_commune": "ST PIERRE DES IFS", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1146186654, + 0.161876822628 + ], + "libelle_d_acheminement": "ST PIERRE DES IFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.161876822628, + 49.1146186654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15eb4fdc93171b15aebc27e1663a9d5bb354668d", + "fields": { + "code_commune_insee": "05064", + "nom_de_la_commune": "LA CHAPELLE EN VALGAUDEMAR", + "code_postal": "05800", + "coordonnees_gps": [ + 44.8166177861, + 6.2425779341 + ], + "libelle_d_acheminement": "LA CHAPELLE EN VALGAUDEMAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2425779341, + 44.8166177861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83d38a6aa82736e69b9f0aa7eb0263f351741cfb", + "fields": { + "code_commune_insee": "14652", + "nom_de_la_commune": "ST PIERRE DU MONT", + "code_postal": "14450", + "coordonnees_gps": [ + 49.3811236375, + -0.975198693862 + ], + "libelle_d_acheminement": "ST PIERRE DU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.975198693862, + 49.3811236375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "467efb7653a4f1b7e1fcf75b1c0f0e1d74733085", + "fields": { + "code_commune_insee": "05065", + "nom_de_la_commune": "GUILLESTRE", + "code_postal": "05600", + "coordonnees_gps": [ + 44.6680987436, + 6.7010158705 + ], + "libelle_d_acheminement": "GUILLESTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7010158705, + 44.6680987436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f00d148ebe3bfc584b884324f0479fdcea8bc87", + "fields": { + "ligne_5": "MONTVIETTE", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14140", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1770719e80a9b1bd849e6378de4b6aebde2996a4", + "fields": { + "code_commune_insee": "05073", + "nom_de_la_commune": "LAZER", + "code_postal": "05300", + "coordonnees_gps": [ + 44.3517300661, + 5.84995060396 + ], + "libelle_d_acheminement": "LAZER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84995060396, + 44.3517300661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac458ac4e0693d8e477e899f6289864e150c8b7d", + "fields": { + "ligne_5": "ST GEORGES EN AUGE", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14140", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebc02e8512f050ff67908443921addf380cae659", + "fields": { + "code_commune_insee": "05077", + "nom_de_la_commune": "MOLINES EN QUEYRAS", + "code_postal": "05350", + "coordonnees_gps": [ + 44.7166553487, + 6.89190806069 + ], + "libelle_d_acheminement": "MOLINES EN QUEYRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89190806069, + 44.7166553487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b60d6552a661919b9a1a69b05d4c9c9a520e4b92", + "fields": { + "ligne_5": "BERVILLE", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c868b18209b0d3e2779177ee6f8b05c17f3bf47", + "fields": { + "code_commune_insee": "05081", + "nom_de_la_commune": "MONTCLUS", + "code_postal": "05700", + "coordonnees_gps": [ + 44.4149343324, + 5.66992087691 + ], + "libelle_d_acheminement": "MONTCLUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66992087691, + 44.4149343324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7ab1a7574f5629d151304f7ec505e942dd5583a", + "fields": { + "ligne_5": "GARNETOT", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69ba0c84bedf668fa86e685426060277c706950c", + "fields": { + "code_commune_insee": "05084", + "nom_de_la_commune": "MONTGARDIN", + "code_postal": "05230", + "coordonnees_gps": [ + 44.543584781, + 6.23305665739 + ], + "libelle_d_acheminement": "MONTGARDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23305665739, + 44.543584781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba3385a58266679cdd4b28bdc255582f5a94151e", + "fields": { + "ligne_5": "HIEVILLE", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97b935960d587eab08b8bb54077452001572eee0", + "fields": { + "code_commune_insee": "05085", + "nom_de_la_commune": "MONTGENEVRE", + "code_postal": "05100", + "coordonnees_gps": [ + 44.9389932221, + 6.72778259009 + ], + "libelle_d_acheminement": "MONTGENEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72778259009, + 44.9389932221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "247d0e709870ef633a070d182d01168b5d12ee22", + "fields": { + "ligne_5": "MONTPINCON", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0f048a4bbee5f82539b29cdb27a367f362b0b33", + "fields": { + "code_commune_insee": "05096", + "nom_de_la_commune": "ORCIERES", + "code_postal": "05170", + "coordonnees_gps": [ + 44.6840982803, + 6.34897527824 + ], + "libelle_d_acheminement": "ORCIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34897527824, + 44.6840982803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ca632ef85df51e567f62b5c6c7b802f77b463fe", + "fields": { + "ligne_5": "TOTES", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afc7c643b81167084d1ec92d184232ed0ca82a6d", + "fields": { + "ligne_5": "VALLOUISE", + "code_commune_insee": "05101", + "libelle_d_acheminement": "VALLOUISE PELVOUX", + "code_postal": "05290", + "nom_de_la_commune": "VALLOUISE PELVOUX", + "coordonnees_gps": [ + 44.899639207, + 6.43586430867 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43586430867, + 44.899639207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44e1cf8e642c2b99b2421aada9c7d748eaaa3cd3", + "fields": { + "ligne_5": "LE MESNIL CAUSSOIS", + "code_commune_insee": "14658", + "libelle_d_acheminement": "NOUES DE SIENNE", + "code_postal": "14380", + "nom_de_la_commune": "NOUES DE SIENNE", + "coordonnees_gps": [ + 48.8217597918, + -1.04661139436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04661139436, + 48.8217597918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36cd8126d1b612db973524634497d8b006dc2d00", + "fields": { + "code_commune_insee": "05113", + "nom_de_la_commune": "RAMBAUD", + "code_postal": "05000", + "coordonnees_gps": [ + 44.5468227894, + 6.13166613475 + ], + "libelle_d_acheminement": "RAMBAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13166613475, + 44.5468227894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2fcaafb689d5f5d27eb0031f8003b2547e4024b", + "fields": { + "code_commune_insee": "14665", + "nom_de_la_commune": "SALLENELLES", + "code_postal": "14121", + "coordonnees_gps": [ + 49.2637001725, + -0.233420635581 + ], + "libelle_d_acheminement": "SALLENELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.233420635581, + 49.2637001725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "620555153359b6d5b538c4260b12ee5750fcfaf9", + "fields": { + "code_commune_insee": "05114", + "nom_de_la_commune": "REALLON", + "code_postal": "05160", + "coordonnees_gps": [ + 44.6107753971, + 6.36046039369 + ], + "libelle_d_acheminement": "REALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36046039369, + 44.6107753971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60de3838f13041424260c80888f60c930b08de83", + "fields": { + "code_commune_insee": "14666", + "nom_de_la_commune": "SANNERVILLE", + "code_postal": "14940", + "coordonnees_gps": [ + 49.183938753, + -0.22288028462 + ], + "libelle_d_acheminement": "SANNERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.22288028462, + 49.183938753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7b4042b9fd7ac5375b51d220ec8dc9a7c5b5948", + "fields": { + "code_commune_insee": "05115", + "nom_de_la_commune": "REMOLLON", + "code_postal": "05190", + "coordonnees_gps": [ + 44.4716185236, + 6.15977657931 + ], + "libelle_d_acheminement": "REMOLLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15977657931, + 44.4716185236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac74db79ca823378b7721c48368b620758f7bf92", + "fields": { + "code_commune_insee": "14669", + "nom_de_la_commune": "SASSY", + "code_postal": "14170", + "coordonnees_gps": [ + 48.9857053888, + -0.139276273101 + ], + "libelle_d_acheminement": "SASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.139276273101, + 48.9857053888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d1586b9101e061852d05f8d27a262e033b0d88c", + "fields": { + "code_commune_insee": "05122", + "nom_de_la_commune": "LA ROCHE DE RAME", + "code_postal": "05310", + "coordonnees_gps": [ + 44.7656681153, + 6.61644369734 + ], + "libelle_d_acheminement": "LA ROCHE DE RAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61644369734, + 44.7656681153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d10ffb7ed5ad006d88862b42d8d49f3d4fb88ba", + "fields": { + "code_commune_insee": "14676", + "nom_de_la_commune": "SOMMERVIEU", + "code_postal": "14400", + "coordonnees_gps": [ + 49.292637722, + -0.645876714207 + ], + "libelle_d_acheminement": "SOMMERVIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.645876714207, + 49.292637722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a88d9548cd89d472b6c58fee1e3b57b45af0c403", + "fields": { + "code_commune_insee": "05124", + "nom_de_la_commune": "LA ROCHETTE", + "code_postal": "05000", + "coordonnees_gps": [ + 44.5932114107, + 6.14883098142 + ], + "libelle_d_acheminement": "LA ROCHETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14883098142, + 44.5932114107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa63d4fd8e6e1935fb1896f689b65adfc1c2371c", + "fields": { + "code_commune_insee": "14685", + "nom_de_la_commune": "THAON", + "code_postal": "14610", + "coordonnees_gps": [ + 49.2549683004, + -0.449172989846 + ], + "libelle_d_acheminement": "THAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.449172989846, + 49.2549683004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a78ed61d2af83c8c4231763dfb9fdec2b8148297", + "fields": { + "code_commune_insee": "05128", + "nom_de_la_commune": "ST ANDRE D EMBRUN", + "code_postal": "05200", + "coordonnees_gps": [ + 44.5866569322, + 6.57072142721 + ], + "libelle_d_acheminement": "ST ANDRE D EMBRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57072142721, + 44.5866569322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc6c7648b9362fc5d65d4943be1756d21a431431", + "fields": { + "ligne_5": "THURY HARCOURT", + "code_commune_insee": "14689", + "libelle_d_acheminement": "LE HOM", + "code_postal": "14220", + "nom_de_la_commune": "LE HOM", + "coordonnees_gps": [ + 48.9864514562, + -0.485109067102 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.485109067102, + 48.9864514562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "544270a9c81739de66a60188621da92dffca98c8", + "fields": { + "code_commune_insee": "05129", + "nom_de_la_commune": "ST ANDRE DE ROSANS", + "code_postal": "05150", + "coordonnees_gps": [ + 44.3647393809, + 5.52097371787 + ], + "libelle_d_acheminement": "ST ANDRE DE ROSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52097371787, + 44.3647393809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "748498beef079ed692f7a136b2c86e88da270cdd", + "fields": { + "code_commune_insee": "14694", + "nom_de_la_commune": "LE TORQUESNE", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2181230377, + 0.169348180951 + ], + "libelle_d_acheminement": "LE TORQUESNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.169348180951, + 49.2181230377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac40441a88660cb09c719315a32852b958e22079", + "fields": { + "code_commune_insee": "05136", + "nom_de_la_commune": "ST CREPIN", + "code_postal": "05600", + "coordonnees_gps": [ + 44.7243260485, + 6.63555027257 + ], + "libelle_d_acheminement": "ST CREPIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63555027257, + 44.7243260485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0172c5aa156a336f72800d15daa2f1db94becf1", + "fields": { + "code_commune_insee": "14698", + "nom_de_la_commune": "TOUFFREVILLE", + "code_postal": "14940", + "coordonnees_gps": [ + 49.1993620809, + -0.225024326729 + ], + "libelle_d_acheminement": "TOUFFREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.225024326729, + 49.1993620809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeec5b8d5d079306234ab0ad82dceca065b86de5", + "fields": { + "ligne_5": "AGNIERES EN DEVOLUY", + "code_commune_insee": "05139", + "libelle_d_acheminement": "LE DEVOLUY", + "code_postal": "05250", + "nom_de_la_commune": "LE DEVOLUY", + "coordonnees_gps": [ + 44.6775419763, + 5.94047368781 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94047368781, + 44.6775419763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5558e59918dbbf5851a25435bc0fa785105b7ad", + "fields": { + "code_commune_insee": "14708", + "nom_de_la_commune": "TRACY BOCAGE", + "code_postal": "14310", + "coordonnees_gps": [ + 49.0726320347, + -0.689428412856 + ], + "libelle_d_acheminement": "TRACY BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.689428412856, + 49.0726320347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6ee3656adaa8da3f5887ed974429b9918af315d", + "fields": { + "ligne_5": "ST DISDIER", + "code_commune_insee": "05139", + "libelle_d_acheminement": "LE DEVOLUY", + "code_postal": "05250", + "nom_de_la_commune": "LE DEVOLUY", + "coordonnees_gps": [ + 44.6775419763, + 5.94047368781 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94047368781, + 44.6775419763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a1c4d43f7a3a57de979e7f20c073a73217eb36d", + "fields": { + "code_commune_insee": "14709", + "nom_de_la_commune": "TRACY SUR MER", + "code_postal": "14117", + "coordonnees_gps": [ + 49.3311618539, + -0.644633136548 + ], + "libelle_d_acheminement": "TRACY SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.644633136548, + 49.3311618539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09d3ffbc08975035e426a91319164b49f6effd90", + "fields": { + "code_commune_insee": "05140", + "nom_de_la_commune": "ST ETIENNE LE LAUS", + "code_postal": "05130", + "coordonnees_gps": [ + 44.5080346822, + 6.16323058106 + ], + "libelle_d_acheminement": "ST ETIENNE LE LAUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16323058106, + 44.5080346822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb46cfa92c6bfad607c3e95b9f9963bdef1cc1c5", + "fields": { + "ligne_5": "BURES SUR DIVES", + "code_commune_insee": "14712", + "libelle_d_acheminement": "TROARN", + "code_postal": "14670", + "nom_de_la_commune": "TROARN", + "coordonnees_gps": [ + 49.191539378, + -0.183683620831 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.183683620831, + 49.191539378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbf53801c7e42cfbd4d798e25be010d7a5725c7b", + "fields": { + "code_commune_insee": "05144", + "nom_de_la_commune": "ST JACQUES EN VALGODEMARD", + "code_postal": "05800", + "coordonnees_gps": [ + 44.7740637825, + 6.06964600691 + ], + "libelle_d_acheminement": "ST JACQUES EN VALGODEMARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06964600691, + 44.7740637825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24a57c399e1e389148f6697b9c96e8449a146ec1", + "fields": { + "ligne_5": "ESTRY", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14410", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce81ce8e14a4c13d6ce1f3b83400bab08b43e4c5", + "fields": { + "code_commune_insee": "05148", + "nom_de_la_commune": "ST LAURENT DU CROS", + "code_postal": "05500", + "coordonnees_gps": [ + 44.6342790978, + 6.10886829684 + ], + "libelle_d_acheminement": "ST LAURENT DU CROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10886829684, + 44.6342790978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3e7703f7cf18304e5d3906c322f3af494d5cf44", + "fields": { + "ligne_5": "PRESLES", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14410", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f620acbc505a2d6cfac866bf9fb4ad0c6b607e7", + "fields": { + "code_commune_insee": "05152", + "nom_de_la_commune": "ST MAURICE EN VALGODEMARD", + "code_postal": "05800", + "coordonnees_gps": [ + 44.7981863804, + 6.11278800187 + ], + "libelle_d_acheminement": "ST MAURICE EN VALGODEMARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11278800187, + 44.7981863804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47692a1a6b1ac0a5a7de3bd99b819a7b8649a6b1", + "fields": { + "code_commune_insee": "14735", + "nom_de_la_commune": "VENDEUVRE", + "code_postal": "14170", + "coordonnees_gps": [ + 49.0067565786, + -0.0828921340383 + ], + "libelle_d_acheminement": "VENDEUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0828921340383, + 49.0067565786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7379c3065bee3d6dc46dc50eed934b000657231d", + "fields": { + "code_commune_insee": "05155", + "nom_de_la_commune": "ST PIERRE AVEZ", + "code_postal": "05300", + "coordonnees_gps": [ + 44.2485428256, + 5.76838211104 + ], + "libelle_d_acheminement": "ST PIERRE AVEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76838211104, + 44.2485428256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ed8da81bc3e1a564c85ad5df2bede6de22d35e0", + "fields": { + "code_commune_insee": "14741", + "nom_de_la_commune": "LE VEY", + "code_postal": "14570", + "coordonnees_gps": [ + 48.9166093894, + -0.461914999707 + ], + "libelle_d_acheminement": "LE VEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.461914999707, + 48.9166093894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44dd897d8400a2bfc36a0666768a072737f5b002", + "fields": { + "code_commune_insee": "05162", + "nom_de_la_commune": "LA SAULCE", + "code_postal": "05110", + "coordonnees_gps": [ + 44.4305124468, + 6.01099383219 + ], + "libelle_d_acheminement": "LA SAULCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01099383219, + 44.4305124468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e345b0f7c6bd9a70b1350d74096b5685028a24d8", + "fields": { + "code_commune_insee": "14743", + "nom_de_la_commune": "VICTOT PONTFOL", + "code_postal": "14430", + "coordonnees_gps": [ + 49.1680232284, + -0.00948313586649 + ], + "libelle_d_acheminement": "VICTOT PONTFOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00948313586649, + 49.1680232284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccf48bc5dc3085ab2e7d39ac553ed083cf876317", + "fields": { + "code_commune_insee": "05174", + "nom_de_la_commune": "VAL DES PRES", + "code_postal": "05100", + "coordonnees_gps": [ + 44.9505522191, + 6.66654834986 + ], + "libelle_d_acheminement": "VAL DES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66654834986, + 44.9505522191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11d9420214e5fdf6d9c5128be054b60f43682f7b", + "fields": { + "code_commune_insee": "14756", + "nom_de_la_commune": "LA VILLETTE", + "code_postal": "14570", + "coordonnees_gps": [ + 48.9090423979, + -0.543205008591 + ], + "libelle_d_acheminement": "LA VILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.543205008591, + 48.9090423979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bca039dd65087c34334405a0be2bfc05c5fe1b03", + "fields": { + "code_commune_insee": "05177", + "nom_de_la_commune": "VARS", + "code_postal": "05560", + "coordonnees_gps": [ + 44.5925220925, + 6.71351456892 + ], + "libelle_d_acheminement": "VARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71351456892, + 44.5925220925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "531dfd81cf7890ea8f4e515175f0552fb46533bd", + "fields": { + "code_commune_insee": "14760", + "nom_de_la_commune": "VILLY BOCAGE", + "code_postal": "14310", + "coordonnees_gps": [ + 49.1039219543, + -0.641975562637 + ], + "libelle_d_acheminement": "VILLY BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.641975562637, + 49.1039219543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7855b8eae67f31ecfdc022940706cbc865c9489c", + "fields": { + "code_commune_insee": "05181", + "nom_de_la_commune": "VILLAR D ARENE", + "code_postal": "05480", + "coordonnees_gps": [ + 44.999721765, + 6.36428454594 + ], + "libelle_d_acheminement": "VILLAR D ARENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36428454594, + 44.999721765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf5ef34fce49620273caa34a6deaa63ca25819a6", + "fields": { + "ligne_5": "MAISONCELLES LA JOURDAN", + "code_commune_insee": "14762", + "libelle_d_acheminement": "VIRE NORMANDIE", + "code_postal": "14500", + "nom_de_la_commune": "VIRE NORMANDIE", + "coordonnees_gps": [ + 48.8512498219, + -0.889601911342 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889601911342, + 48.8512498219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42ba58480097d755ad9c94b3b4b6127f89781b50", + "fields": { + "code_commune_insee": "05182", + "nom_de_la_commune": "VILLAR LOUBIERE", + "code_postal": "05800", + "coordonnees_gps": [ + 44.8367273336, + 6.13559761308 + ], + "libelle_d_acheminement": "VILLAR LOUBIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13559761308, + 44.8367273336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7108534d83f244482b781d9c0dbc42be5c1e69c", + "fields": { + "code_commune_insee": "15001", + "nom_de_la_commune": "ALLANCHE", + "code_postal": "15160", + "coordonnees_gps": [ + 45.2312708319, + 2.95300274076 + ], + "libelle_d_acheminement": "ALLANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95300274076, + 45.2312708319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01e36348eba3640254ee6fcd1b74de1112f1eb54", + "fields": { + "code_commune_insee": "06002", + "nom_de_la_commune": "AMIRAT", + "code_postal": "06910", + "coordonnees_gps": [ + 43.8962973508, + 6.81255950456 + ], + "libelle_d_acheminement": "AMIRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81255950456, + 43.8962973508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "628f77a12c2aa720449bb11b1906ab92e68e5849", + "fields": { + "code_commune_insee": "15002", + "nom_de_la_commune": "ALLEUZE", + "code_postal": "15100", + "coordonnees_gps": [ + 44.9602873313, + 3.09831933936 + ], + "libelle_d_acheminement": "ALLEUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09831933936, + 44.9602873313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55ea7507c5a4aaa02efcf7ad85ed13c69a87247f", + "fields": { + "code_commune_insee": "06006", + "nom_de_la_commune": "ASPREMONT", + "code_postal": "06790", + "coordonnees_gps": [ + 43.7750731742, + 7.24475771199 + ], + "libelle_d_acheminement": "ASPREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24475771199, + 43.7750731742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65205651911c57f417826fa3a4a828ebe6832ee9", + "fields": { + "code_commune_insee": "15014", + "nom_de_la_commune": "AURILLAC", + "code_postal": "15000", + "coordonnees_gps": [ + 44.9245233686, + 2.44162453828 + ], + "libelle_d_acheminement": "AURILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44162453828, + 44.9245233686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b926e44c3bd48b02686fa5530c01fb95147884e1", + "fields": { + "code_commune_insee": "06007", + "nom_de_la_commune": "AURIBEAU SUR SIAGNE", + "code_postal": "06810", + "coordonnees_gps": [ + 43.612406867, + 6.91211356657 + ], + "libelle_d_acheminement": "AURIBEAU SUR SIAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91211356657, + 43.612406867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c3a30838308f6eeef793e883e0851dcb46efd9f", + "fields": { + "code_commune_insee": "15019", + "nom_de_la_commune": "BASSIGNAC", + "code_postal": "15240", + "coordonnees_gps": [ + 45.3148849641, + 2.40014280339 + ], + "libelle_d_acheminement": "BASSIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40014280339, + 45.3148849641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52f8f5045468c71d2007a1b32eb217e7bad86f0b", + "fields": { + "code_commune_insee": "06011", + "nom_de_la_commune": "BEAULIEU SUR MER", + "code_postal": "06310", + "coordonnees_gps": [ + 43.7079039397, + 7.33256934881 + ], + "libelle_d_acheminement": "BEAULIEU SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33256934881, + 43.7079039397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd9bd23809ecde78216a4734283b14c3af06c39c", + "fields": { + "code_commune_insee": "15026", + "nom_de_la_commune": "BREZONS", + "code_postal": "15230", + "coordonnees_gps": [ + 45.0097700141, + 2.79211398004 + ], + "libelle_d_acheminement": "BREZONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79211398004, + 45.0097700141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1784699b988609a1fe84ad075b090a79546be4d3", + "fields": { + "code_commune_insee": "06012", + "nom_de_la_commune": "BEAUSOLEIL", + "code_postal": "06240", + "coordonnees_gps": [ + 43.747724383, + 7.42222154586 + ], + "libelle_d_acheminement": "BEAUSOLEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42222154586, + 43.747724383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f4a98c358bc73e3cdcea5e2e8d72c7cf9285880", + "fields": { + "ligne_5": "CALVINET", + "code_commune_insee": "15027", + "libelle_d_acheminement": "PUYCAPEL", + "code_postal": "15340", + "nom_de_la_commune": "PUYCAPEL", + "coordonnees_gps": [ + 44.7211847531, + 2.36192054351 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36192054351, + 44.7211847531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deb867271674e39d4c4659470f97bd6909eaa172", + "fields": { + "code_commune_insee": "06017", + "nom_de_la_commune": "BEZAUDUN LES ALPES", + "code_postal": "06510", + "coordonnees_gps": [ + 43.803621969, + 7.09357147024 + ], + "libelle_d_acheminement": "BEZAUDUN LES ALPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09357147024, + 43.803621969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7684b0aeae287548ecdc22856ec0186a134574de", + "fields": { + "code_commune_insee": "15033", + "nom_de_la_commune": "CEZENS", + "code_postal": "15230", + "coordonnees_gps": [ + 44.9845893263, + 2.8586925887 + ], + "libelle_d_acheminement": "CEZENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8586925887, + 44.9845893263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c26e14119e8dc0cf2b85ddd11fbe05bb9a05fc9f", + "fields": { + "code_commune_insee": "06020", + "nom_de_la_commune": "LA BOLLENE VESUBIE", + "code_postal": "06450", + "coordonnees_gps": [ + 43.9951453194, + 7.37184375426 + ], + "libelle_d_acheminement": "LA BOLLENE VESUBIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37184375426, + 43.9951453194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45064f49fd253939bdcd80567aa745cdf46549de", + "fields": { + "code_commune_insee": "15036", + "nom_de_la_commune": "CHALVIGNAC", + "code_postal": "15200", + "coordonnees_gps": [ + 45.2475912738, + 2.26458985433 + ], + "libelle_d_acheminement": "CHALVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26458985433, + 45.2475912738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c206199fe6d487676572a3c87162f24e17de194", + "fields": { + "code_commune_insee": "06023", + "nom_de_la_commune": "BREIL SUR ROYA", + "code_postal": "06540", + "coordonnees_gps": [ + 43.9404304718, + 7.50391615024 + ], + "libelle_d_acheminement": "BREIL SUR ROYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50391615024, + 43.9404304718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e35ea478ba78a94156bf868f3b231cdbf859f95", + "fields": { + "code_commune_insee": "15037", + "nom_de_la_commune": "CHAMPAGNAC", + "code_postal": "15350", + "coordonnees_gps": [ + 45.3633081405, + 2.40307399126 + ], + "libelle_d_acheminement": "CHAMPAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40307399126, + 45.3633081405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a3247c9a583645e3c5a64546c567f65cf9cd651", + "fields": { + "code_commune_insee": "06024", + "nom_de_la_commune": "BRIANCONNET", + "code_postal": "06850", + "coordonnees_gps": [ + 43.8649498097, + 6.74501344628 + ], + "libelle_d_acheminement": "BRIANCONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74501344628, + 43.8649498097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fef117ac1c2d169d134af66fa73e8ea392e3785", + "fields": { + "code_commune_insee": "15043", + "nom_de_la_commune": "CHARMENSAC", + "code_postal": "15500", + "coordonnees_gps": [ + 45.2264013054, + 3.07503500969 + ], + "libelle_d_acheminement": "CHARMENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07503500969, + 45.2264013054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bb594444491b794925132537d93886be59db28e", + "fields": { + "code_commune_insee": "06028", + "nom_de_la_commune": "CAILLE", + "code_postal": "06750", + "coordonnees_gps": [ + 43.7686953119, + 6.75666650268 + ], + "libelle_d_acheminement": "CAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75666650268, + 43.7686953119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9204a3c2c7cf70280bee6400e4ff2dd401dc2e2", + "fields": { + "code_commune_insee": "15048", + "nom_de_la_commune": "CHAZELLES", + "code_postal": "15500", + "coordonnees_gps": [ + 45.1057762736, + 3.32678478247 + ], + "libelle_d_acheminement": "CHAZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32678478247, + 45.1057762736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ee328afd17499b5d6699f4b6f32fbfe98c6b04c", + "fields": { + "code_commune_insee": "06038", + "nom_de_la_commune": "CHATEAUNEUF GRASSE", + "code_postal": "06740", + "coordonnees_gps": [ + 43.6656345765, + 6.9791405929 + ], + "libelle_d_acheminement": "CHATEAUNEUF GRASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9791405929, + 43.6656345765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcfc0c4325c59f358730c89fdb7b6f847b9c3b4d", + "fields": { + "code_commune_insee": "15050", + "nom_de_la_commune": "LE CLAUX", + "code_postal": "15400", + "coordonnees_gps": [ + 45.150079853, + 2.69958551259 + ], + "libelle_d_acheminement": "LE CLAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69958551259, + 45.150079853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e53c129f3756beb625927cc7a1d4f5880ee0d3d", + "fields": { + "code_commune_insee": "06050", + "nom_de_la_commune": "COURSEGOULES", + "code_postal": "06140", + "coordonnees_gps": [ + 43.7915580349, + 7.03622643471 + ], + "libelle_d_acheminement": "COURSEGOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03622643471, + 43.7915580349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e722aa5607ec9f8f4a2ef16fa033d7b8b1ab11fd", + "fields": { + "code_commune_insee": "15058", + "nom_de_la_commune": "CROS DE RONESQUE", + "code_postal": "15130", + "coordonnees_gps": [ + 44.8616190704, + 2.60679689587 + ], + "libelle_d_acheminement": "CROS DE RONESQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60679689587, + 44.8616190704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c25ef8b9e1ed7e0a775289b2a9b743a065a8e18e", + "fields": { + "code_commune_insee": "06051", + "nom_de_la_commune": "LA CROIX SUR ROUDOULE", + "code_postal": "06260", + "coordonnees_gps": [ + 44.0003096653, + 6.87019911618 + ], + "libelle_d_acheminement": "LA CROIX SUR ROUDOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87019911618, + 44.0003096653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "746ae02e2586d23b677c390c6e432d8e1e7dd542", + "fields": { + "code_commune_insee": "15073", + "nom_de_la_commune": "FRIDEFONT", + "code_postal": "15110", + "coordonnees_gps": [ + 44.9060191099, + 3.09513699893 + ], + "libelle_d_acheminement": "FRIDEFONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09513699893, + 44.9060191099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de0397e910d6857c20148284b359c428c0e53fd8", + "fields": { + "code_commune_insee": "06061", + "nom_de_la_commune": "LES FERRES", + "code_postal": "06510", + "coordonnees_gps": [ + 43.8424232733, + 7.09342755196 + ], + "libelle_d_acheminement": "LES FERRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09342755196, + 43.8424232733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6189c28e8be2bd1d3f6c90fce97a24abf20131ca", + "fields": { + "code_commune_insee": "15075", + "nom_de_la_commune": "GIRGOLS", + "code_postal": "15310", + "coordonnees_gps": [ + 45.0493144178, + 2.52185538424 + ], + "libelle_d_acheminement": "GIRGOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52185538424, + 45.0493144178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f15fad57014cb01911d3bd80db3e09666b5ad664", + "fields": { + "code_commune_insee": "06062", + "nom_de_la_commune": "FONTAN", + "code_postal": "06540", + "coordonnees_gps": [ + 44.0219052577, + 7.54428215207 + ], + "libelle_d_acheminement": "FONTAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54428215207, + 44.0219052577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13af9ac73ac21d16ca3937171cd94dff918b8ac1", + "fields": { + "code_commune_insee": "15086", + "nom_de_la_commune": "LACAPELLE BARRES", + "code_postal": "15230", + "coordonnees_gps": [ + 44.9504311526, + 2.72347580122 + ], + "libelle_d_acheminement": "LACAPELLE BARRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72347580122, + 44.9504311526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bce994d288204a4256e94e8c87f4040143fd0848", + "fields": { + "code_commune_insee": "06064", + "nom_de_la_commune": "GATTIERES", + "code_postal": "06510", + "coordonnees_gps": [ + 43.7652195423, + 7.16877468184 + ], + "libelle_d_acheminement": "GATTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16877468184, + 43.7652195423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5747874d8ca9552d596a716a914424ad1bfddd8", + "fields": { + "code_commune_insee": "15094", + "nom_de_la_commune": "LAROQUEBROU", + "code_postal": "15150", + "coordonnees_gps": [ + 44.974801878, + 2.19344155664 + ], + "libelle_d_acheminement": "LAROQUEBROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19344155664, + 44.974801878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "977e1f03fe5081ff658ed32e4abd9219c45e27e4", + "fields": { + "code_commune_insee": "06069", + "nom_de_la_commune": "GRASSE", + "code_postal": "06130", + "coordonnees_gps": [ + 43.655639428, + 6.93190508233 + ], + "libelle_d_acheminement": "GRASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93190508233, + 43.655639428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11d392246887fd7778a1a5a7ec7f6949ed75df6b", + "fields": { + "code_commune_insee": "15095", + "nom_de_la_commune": "LAROQUEVIEILLE", + "code_postal": "15250", + "coordonnees_gps": [ + 45.0241515201, + 2.52853115841 + ], + "libelle_d_acheminement": "LAROQUEVIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52853115841, + 45.0241515201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71aea8116d714fa411dc8e8d89adeeaeb342809d", + "fields": { + "code_commune_insee": "06075", + "nom_de_la_commune": "LEVENS", + "code_postal": "06670", + "coordonnees_gps": [ + 43.8500976014, + 7.24033027327 + ], + "libelle_d_acheminement": "LEVENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24033027327, + 43.8500976014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d212401b3fa458ac916cb6989b2dbda5c001206", + "fields": { + "code_commune_insee": "15103", + "nom_de_la_commune": "LEUCAMP", + "code_postal": "15120", + "coordonnees_gps": [ + 44.7847764014, + 2.53963344667 + ], + "libelle_d_acheminement": "LEUCAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53963344667, + 44.7847764014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f0aa4e3e823b72153c826280cdface96a055430", + "fields": { + "code_commune_insee": "06086", + "nom_de_la_commune": "MOULINET", + "code_postal": "06380", + "coordonnees_gps": [ + 43.9536991394, + 7.41400405447 + ], + "libelle_d_acheminement": "MOULINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41400405447, + 43.9536991394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf4d96147e059168060c4723a02c32c7fa8c8625", + "fields": { + "code_commune_insee": "15111", + "nom_de_la_commune": "MADIC", + "code_postal": "15210", + "coordonnees_gps": [ + 45.372048674, + 2.45917498583 + ], + "libelle_d_acheminement": "MADIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45917498583, + 45.372048674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "922d09166d29f2a091dd2ad80436adb7f89a5363", + "fields": { + "code_commune_insee": "06087", + "nom_de_la_commune": "LES MUJOULS", + "code_postal": "06910", + "coordonnees_gps": [ + 43.8719847668, + 6.85912279446 + ], + "libelle_d_acheminement": "LES MUJOULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85912279446, + 43.8719847668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6141336ce816d53e801634a306cbc4fec2fbb77f", + "fields": { + "code_commune_insee": "15113", + "nom_de_la_commune": "MANDAILLES ST JULIEN", + "code_postal": "15590", + "coordonnees_gps": [ + 45.0776793977, + 2.66430120889 + ], + "libelle_d_acheminement": "MANDAILLES ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66430120889, + 45.0776793977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c10ba5178a241bb01928bf1fd34eeddb24e04d9b", + "fields": { + "code_commune_insee": "06097", + "nom_de_la_commune": "PIERREFEU", + "code_postal": "06910", + "coordonnees_gps": [ + 43.8851912789, + 7.0710081371 + ], + "libelle_d_acheminement": "PIERREFEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0710081371, + 43.8851912789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52ac560fcc3cb802170f62c859dbd97d456b01c6", + "fields": { + "ligne_5": "ST JULIEN DE JORDANNE", + "code_commune_insee": "15113", + "libelle_d_acheminement": "MANDAILLES ST JULIEN", + "code_postal": "15590", + "nom_de_la_commune": "MANDAILLES ST JULIEN", + "coordonnees_gps": [ + 45.0776793977, + 2.66430120889 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66430120889, + 45.0776793977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c72ecae4b36bceab768d680be1d490768cc96e9", + "fields": { + "code_commune_insee": "06099", + "nom_de_la_commune": "PUGET THENIERS", + "code_postal": "06260", + "coordonnees_gps": [ + 43.9521649219, + 6.90609311435 + ], + "libelle_d_acheminement": "PUGET THENIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90609311435, + 43.9521649219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0baed0e6cc942ac97c1b061922033441d3ee70ab", + "fields": { + "code_commune_insee": "15121", + "nom_de_la_commune": "MAURINES", + "code_postal": "15110", + "coordonnees_gps": [ + 44.870056489, + 3.08208971264 + ], + "libelle_d_acheminement": "MAURINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08208971264, + 44.870056489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f87863eeacb98942f1b546c108940445fe5fad76", + "fields": { + "code_commune_insee": "06100", + "nom_de_la_commune": "REVEST LES ROCHES", + "code_postal": "06830", + "coordonnees_gps": [ + 43.8831297435, + 7.16778277098 + ], + "libelle_d_acheminement": "REVEST LES ROCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16778277098, + 43.8831297435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c85cfc4b91684b48cac82b128c7655a293add580", + "fields": { + "code_commune_insee": "15125", + "nom_de_la_commune": "MENTIERES", + "code_postal": "15100", + "coordonnees_gps": [ + 45.0786565074, + 3.14231362985 + ], + "libelle_d_acheminement": "MENTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14231362985, + 45.0786565074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fd1c2ea8aa8f6e082b85b88a3bb5d6bbec96495", + "fields": { + "code_commune_insee": "06102", + "nom_de_la_commune": "RIMPLAS", + "code_postal": "06420", + "coordonnees_gps": [ + 44.1027644402, + 7.14505338526 + ], + "libelle_d_acheminement": "RIMPLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14505338526, + 44.1027644402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f46a42d85fb7b8325ec63913ed63d53c5747acbc", + "fields": { + "code_commune_insee": "15130", + "nom_de_la_commune": "MONTCHAMP", + "code_postal": "15100", + "coordonnees_gps": [ + 45.0691032448, + 3.21504140983 + ], + "libelle_d_acheminement": "MONTCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21504140983, + 45.0691032448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c7204aa08228d1301f9ae9442e8e224edc3876f", + "fields": { + "code_commune_insee": "06119", + "nom_de_la_commune": "ST DALMAS LE SELVAGE", + "code_postal": "06660", + "coordonnees_gps": [ + 44.2894656829, + 6.84084539624 + ], + "libelle_d_acheminement": "ST DALMAS LE SELVAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84084539624, + 44.2894656829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9628cb24e8be27307431b6deb266b63f739cc83f", + "fields": { + "code_commune_insee": "15137", + "nom_de_la_commune": "MOUSSAGES", + "code_postal": "15380", + "coordonnees_gps": [ + 45.2336429755, + 2.47256542244 + ], + "libelle_d_acheminement": "MOUSSAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47256542244, + 45.2336429755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aff9ca249ac81fcf8d93b66ad1fd19ecdd3811df", + "fields": { + "code_commune_insee": "06123", + "nom_de_la_commune": "ST LAURENT DU VAR", + "code_postal": "06700", + "coordonnees_gps": [ + 43.6859625772, + 7.18218791815 + ], + "libelle_d_acheminement": "ST LAURENT DU VAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18218791815, + 43.6859625772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d8cc32c415d49faa0b515673b266b76c6900069", + "fields": { + "ligne_5": "CHASTEL SUR MURAT", + "code_commune_insee": "15138", + "libelle_d_acheminement": "MURAT", + "code_postal": "15300", + "nom_de_la_commune": "MURAT", + "coordonnees_gps": [ + 45.1111408605, + 2.86065494152 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86065494152, + 45.1111408605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93b100e1b421533185972b7f8fa58d5c20814803", + "fields": { + "code_commune_insee": "06125", + "nom_de_la_commune": "ST MARTIN D ENTRAUNES", + "code_postal": "06470", + "coordonnees_gps": [ + 44.1494414084, + 6.74588335024 + ], + "libelle_d_acheminement": "ST MARTIN D ENTRAUNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74588335024, + 44.1494414084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc9f6414465e957fbcf0e1f2f7ac2829baad059e", + "fields": { + "code_commune_insee": "15139", + "nom_de_la_commune": "NARNHAC", + "code_postal": "15230", + "coordonnees_gps": [ + 44.9347231602, + 2.76628642462 + ], + "libelle_d_acheminement": "NARNHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76628642462, + 44.9347231602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b7d270e9e5b431bbd102fb506228b057e7bf714", + "fields": { + "code_commune_insee": "06128", + "nom_de_la_commune": "ST PAUL DE VENCE", + "code_postal": "06570", + "coordonnees_gps": [ + 43.6950190291, + 7.12116951865 + ], + "libelle_d_acheminement": "ST PAUL DE VENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.12116951865, + 43.6950190291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b805df7cc19bfeb5bc4c42f4d1d8635c7cad66c9", + "fields": { + "ligne_5": "LAVASTRIE", + "code_commune_insee": "15142", + "libelle_d_acheminement": "NEUVEGLISE SUR TRUYERE", + "code_postal": "15260", + "nom_de_la_commune": "NEUVEGLISE SUR TRUYERE", + "coordonnees_gps": [ + 44.9309902257, + 2.97942663368 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97942663368, + 44.9309902257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "031373e3fa9849f0273fb825ad42ddd2e0ee5669", + "fields": { + "code_commune_insee": "06132", + "nom_de_la_commune": "SAORGE", + "code_postal": "06540", + "coordonnees_gps": [ + 43.9935318832, + 7.53767348426 + ], + "libelle_d_acheminement": "SAORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53767348426, + 43.9935318832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86b907f7f39af686b0b4a081d50f522205f4a4f2", + "fields": { + "code_commune_insee": "15143", + "nom_de_la_commune": "NIEUDAN", + "code_postal": "15150", + "coordonnees_gps": [ + 44.9831085193, + 2.24617399797 + ], + "libelle_d_acheminement": "NIEUDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24617399797, + 44.9831085193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01bcfbe62ca0713f9d23f1470e9038edad1c4fdf", + "fields": { + "code_commune_insee": "06134", + "nom_de_la_commune": "SERANON", + "code_postal": "06750", + "coordonnees_gps": [ + 43.7656662777, + 6.6904329696 + ], + "libelle_d_acheminement": "SERANON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6904329696, + 43.7656662777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99886c9fd05e0d493fa1160abaffcf66552c1fc6", + "fields": { + "code_commune_insee": "15161", + "nom_de_la_commune": "REZENTIERES", + "code_postal": "15170", + "coordonnees_gps": [ + 45.1342001841, + 3.10566449995 + ], + "libelle_d_acheminement": "REZENTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10566449995, + 45.1342001841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a863e278070f6ecef6be49f845f56ed08a831e18", + "fields": { + "code_commune_insee": "06139", + "nom_de_la_commune": "THIERY", + "code_postal": "06710", + "coordonnees_gps": [ + 43.9741390022, + 7.0424567137 + ], + "libelle_d_acheminement": "THIERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0424567137, + 43.9741390022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d88ea6e36d73bb45f6832cff52daa0f497328b5", + "fields": { + "code_commune_insee": "15167", + "nom_de_la_commune": "ROUZIERS", + "code_postal": "15600", + "coordonnees_gps": [ + 44.7965226108, + 2.20974187733 + ], + "libelle_d_acheminement": "ROUZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20974187733, + 44.7965226108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db6a053df57f56d90b7afa1d5bce6b8f4da17b03", + "fields": { + "code_commune_insee": "06140", + "nom_de_la_commune": "LE TIGNET", + "code_postal": "06530", + "coordonnees_gps": [ + 43.623581463, + 6.85261791799 + ], + "libelle_d_acheminement": "LE TIGNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85261791799, + 43.623581463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f4799e63715d69d2a4554cea5e96af5b929d6b9", + "fields": { + "code_commune_insee": "15168", + "nom_de_la_commune": "RUYNES EN MARGERIDE", + "code_postal": "15320", + "coordonnees_gps": [ + 45.0046123239, + 3.22362001629 + ], + "libelle_d_acheminement": "RUYNES EN MARGERIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22362001629, + 45.0046123239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beb937bf9a823d2a418d9bdf968f2cda12508545", + "fields": { + "code_commune_insee": "06141", + "nom_de_la_commune": "TOUDON", + "code_postal": "06830", + "coordonnees_gps": [ + 43.8914641921, + 7.10840770616 + ], + "libelle_d_acheminement": "TOUDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10840770616, + 43.8914641921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8084670c877c6e3675c3758a861101f2106676e", + "fields": { + "code_commune_insee": "15174", + "nom_de_la_commune": "ST BONNET DE SALERS", + "code_postal": "15140", + "coordonnees_gps": [ + 45.1605077564, + 2.47969406134 + ], + "libelle_d_acheminement": "ST BONNET DE SALERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47969406134, + 45.1605077564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9225b1cdc4ce4dbd9bd69b812e785193abe34abf", + "fields": { + "code_commune_insee": "06149", + "nom_de_la_commune": "LA TRINITE", + "code_postal": "06340", + "coordonnees_gps": [ + 43.7433480978, + 7.33946073911 + ], + "libelle_d_acheminement": "LA TRINITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33946073911, + 43.7433480978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d3c1c407a31fa4aca462c7c73748869c7c393bf", + "fields": { + "code_commune_insee": "15184", + "nom_de_la_commune": "ST ETIENNE DE MAURS", + "code_postal": "15600", + "coordonnees_gps": [ + 44.7216425562, + 2.22943690133 + ], + "libelle_d_acheminement": "ST ETIENNE DE MAURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22943690133, + 44.7216425562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d4ffa393d372721059ad5287bb156d08422544b", + "fields": { + "ligne_5": "ST JEAN LA RIVIERE", + "code_commune_insee": "06151", + "libelle_d_acheminement": "UTELLE", + "code_postal": "06450", + "nom_de_la_commune": "UTELLE", + "coordonnees_gps": [ + 43.9273181411, + 7.23864462941 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23864462941, + 43.9273181411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60c726ffafad5f90b2a7cb231a17a238849d4a15", + "fields": { + "code_commune_insee": "15187", + "nom_de_la_commune": "ST FLOUR", + "code_postal": "15100", + "coordonnees_gps": [ + 45.0278919825, + 3.08320563232 + ], + "libelle_d_acheminement": "ST FLOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08320563232, + 45.0278919825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5a2efe9286500015de4bb5a56e12ab61c28e2c2", + "fields": { + "code_commune_insee": "06152", + "nom_de_la_commune": "VALBONNE", + "code_postal": "06560", + "coordonnees_gps": [ + 43.628288325, + 7.02954476696 + ], + "libelle_d_acheminement": "VALBONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02954476696, + 43.628288325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36e2a08b5195e6a67f1a3f069b00dcbe605e37bc", + "fields": { + "code_commune_insee": "15188", + "nom_de_la_commune": "ST GEORGES", + "code_postal": "15100", + "coordonnees_gps": [ + 45.0195024779, + 3.13844362927 + ], + "libelle_d_acheminement": "ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13844362927, + 45.0195024779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8788d8cf27a1001d8dfe8a60a1194fac80e36335", + "fields": { + "ligne_5": "SOPHIA ANTIPOLIS", + "code_commune_insee": "06152", + "libelle_d_acheminement": "VALBONNE", + "code_postal": "06560", + "nom_de_la_commune": "VALBONNE", + "coordonnees_gps": [ + 43.628288325, + 7.02954476696 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02954476696, + 43.628288325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d2645ee75f8915a96c31cbdfa6d7453b33ee1be", + "fields": { + "code_commune_insee": "15189", + "nom_de_la_commune": "ST GERONS", + "code_postal": "15150", + "coordonnees_gps": [ + 44.9415058026, + 2.20469091333 + ], + "libelle_d_acheminement": "ST GERONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20469091333, + 44.9415058026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ba63d0221d54dffb48b698a0956b9aa3011c78c", + "fields": { + "code_commune_insee": "06155", + "nom_de_la_commune": "VALLAURIS", + "code_postal": "06220", + "coordonnees_gps": [ + 43.5766472999, + 7.05836612893 + ], + "libelle_d_acheminement": "VALLAURIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05836612893, + 43.5766472999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c399a4ba6e06919d138d617f3c6724ec928d900", + "fields": { + "code_commune_insee": "15191", + "nom_de_la_commune": "ST ILLIDE", + "code_postal": "15310", + "coordonnees_gps": [ + 45.050570658, + 2.32079424966 + ], + "libelle_d_acheminement": "ST ILLIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32079424966, + 45.050570658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7eb6a4a16a4017a96b4a2fdd3e2e9e10ef1cc50", + "fields": { + "code_commune_insee": "06156", + "nom_de_la_commune": "VENANSON", + "code_postal": "06450", + "coordonnees_gps": [ + 44.0413364561, + 7.23918508448 + ], + "libelle_d_acheminement": "VENANSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23918508448, + 44.0413364561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbbc02fbd68f864be38171e7486fee0578e0a608", + "fields": { + "code_commune_insee": "15200", + "nom_de_la_commune": "ST MARTIN CANTALES", + "code_postal": "15140", + "coordonnees_gps": [ + 45.0888141636, + 2.30515856288 + ], + "libelle_d_acheminement": "ST MARTIN CANTALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30515856288, + 45.0888141636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e59d9f0539897322bc1e867207d87ed63ed9ee0", + "fields": { + "code_commune_insee": "06159", + "nom_de_la_commune": "VILLEFRANCHE SUR MER", + "code_postal": "06230", + "coordonnees_gps": [ + 43.7122153121, + 7.32225410533 + ], + "libelle_d_acheminement": "VILLEFRANCHE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.32225410533, + 43.7122153121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b2b5422a3b101fddc4556373339cc89e5959304", + "fields": { + "code_commune_insee": "15202", + "nom_de_la_commune": "ST MARTIN VALMEROUX", + "code_postal": "15140", + "coordonnees_gps": [ + 45.1201305737, + 2.44307130609 + ], + "libelle_d_acheminement": "ST MARTIN VALMEROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44307130609, + 45.1201305737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "539e0a7b03453ce6216785212a33a88859f1d259", + "fields": { + "code_commune_insee": "07005", + "nom_de_la_commune": "ALBA LA ROMAINE", + "code_postal": "07400", + "coordonnees_gps": [ + 44.5544439142, + 4.59597695147 + ], + "libelle_d_acheminement": "ALBA LA ROMAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59597695147, + 44.5544439142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aee18d691ab8f9ed6a4c7c75bf94adf93b56a3c", + "fields": { + "code_commune_insee": "15206", + "nom_de_la_commune": "ST PIERRE", + "code_postal": "15350", + "coordonnees_gps": [ + 45.3953414957, + 2.38207391325 + ], + "libelle_d_acheminement": "ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38207391325, + 45.3953414957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6cc46e8ac6806550a237990d812b3c7b653dea8", + "fields": { + "code_commune_insee": "07009", + "nom_de_la_commune": "ANDANCE", + "code_postal": "07340", + "coordonnees_gps": [ + 45.2279590632, + 4.79738593664 + ], + "libelle_d_acheminement": "ANDANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79738593664, + 45.2279590632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c38e65705a1e566a9d64de49c4e46667a6d356d", + "fields": { + "code_commune_insee": "15208", + "nom_de_la_commune": "ST PROJET DE SALERS", + "code_postal": "15140", + "coordonnees_gps": [ + 45.0821687828, + 2.55897131007 + ], + "libelle_d_acheminement": "ST PROJET DE SALERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55897131007, + 45.0821687828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "562bd0f18796cd336f58d9c7d16224f9bcd1b92f", + "fields": { + "code_commune_insee": "07012", + "nom_de_la_commune": "ARCENS", + "code_postal": "07310", + "coordonnees_gps": [ + 44.9005086707, + 4.31778204029 + ], + "libelle_d_acheminement": "ARCENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31778204029, + 44.9005086707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a7447209830287901c4deeccba4c2d89867d26f", + "fields": { + "code_commune_insee": "15212", + "nom_de_la_commune": "ST SANTIN DE MAURS", + "code_postal": "15600", + "coordonnees_gps": [ + 44.6554891093, + 2.2106562412 + ], + "libelle_d_acheminement": "ST SANTIN DE MAURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2106562412, + 44.6554891093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffc0d8e70b3590a97b3cf6b028772c71ef3a897c", + "fields": { + "code_commune_insee": "07020", + "nom_de_la_commune": "AUBIGNAS", + "code_postal": "07400", + "coordonnees_gps": [ + 44.5854785853, + 4.63389075909 + ], + "libelle_d_acheminement": "AUBIGNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63389075909, + 44.5854785853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "952965d65d359cc685768634a393a291ea79671e", + "fields": { + "code_commune_insee": "15216", + "nom_de_la_commune": "ST URCIZE", + "code_postal": "15110", + "coordonnees_gps": [ + 44.7054618442, + 2.97925067316 + ], + "libelle_d_acheminement": "ST URCIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97925067316, + 44.7054618442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b66364c9ea5b75d1d873a623c21090b960cf631", + "fields": { + "code_commune_insee": "07023", + "nom_de_la_commune": "BALAZUC", + "code_postal": "07120", + "coordonnees_gps": [ + 44.5082860556, + 4.37244725798 + ], + "libelle_d_acheminement": "BALAZUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37244725798, + 44.5082860556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ef1e61aab44260523743ba9aac1e62c2ee354a3", + "fields": { + "code_commune_insee": "15219", + "nom_de_la_commune": "SALERS", + "code_postal": "15140", + "coordonnees_gps": [ + 45.1450926367, + 2.49622722458 + ], + "libelle_d_acheminement": "SALERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49622722458, + 45.1450926367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cd402d8f098db0f86cb02ae5e2eaa8e3c3e5392", + "fields": { + "code_commune_insee": "07037", + "nom_de_la_commune": "BOREE", + "code_postal": "07310", + "coordonnees_gps": [ + 44.8950782143, + 4.22692375234 + ], + "libelle_d_acheminement": "BOREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22692375234, + 44.8950782143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "104c3d4683c35d5e586e0b20177be8d7f7d8f798", + "fields": { + "code_commune_insee": "15224", + "nom_de_la_commune": "LA SEGALASSIERE", + "code_postal": "15290", + "coordonnees_gps": [ + 44.8934183165, + 2.20866783261 + ], + "libelle_d_acheminement": "LA SEGALASSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20866783261, + 44.8934183165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0018cfea78102980fe7de3b9da29932b5d28ca3e", + "fields": { + "code_commune_insee": "07045", + "nom_de_la_commune": "BURZET", + "code_postal": "07450", + "coordonnees_gps": [ + 44.748232889, + 4.23385605882 + ], + "libelle_d_acheminement": "BURZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23385605882, + 44.748232889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bee71d289d158c89fceafa16f509c26561e007d7", + "fields": { + "code_commune_insee": "15235", + "nom_de_la_commune": "LES TERNES", + "code_postal": "15100", + "coordonnees_gps": [ + 44.9962837997, + 2.99411909646 + ], + "libelle_d_acheminement": "LES TERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99411909646, + 44.9962837997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbea91f6695144c5e6c2c2d830a18659b16ea487", + "fields": { + "code_commune_insee": "07052", + "nom_de_la_commune": "CHAMPIS", + "code_postal": "07440", + "coordonnees_gps": [ + 44.9556198694, + 4.75241851344 + ], + "libelle_d_acheminement": "CHAMPIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75241851344, + 44.9556198694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "681f02986d6f99c48c628b3777c2a06d62699eaf", + "fields": { + "code_commune_insee": "15237", + "nom_de_la_commune": "TIVIERS", + "code_postal": "15100", + "coordonnees_gps": [ + 45.0745302568, + 3.17567191659 + ], + "libelle_d_acheminement": "TIVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17567191659, + 45.0745302568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05646d7a1241b4c4a9b51fdf1d6ec8c39e30819b", + "fields": { + "code_commune_insee": "07067", + "nom_de_la_commune": "COLOMBIER LE CARDINAL", + "code_postal": "07430", + "coordonnees_gps": [ + 45.2645730149, + 4.74565260834 + ], + "libelle_d_acheminement": "COLOMBIER LE CARDINAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74565260834, + 45.2645730149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9312dafc1148875415094360256d6affa77af69", + "fields": { + "code_commune_insee": "15243", + "nom_de_la_commune": "TRIZAC", + "code_postal": "15400", + "coordonnees_gps": [ + 45.2442328606, + 2.5444240314 + ], + "libelle_d_acheminement": "TRIZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5444240314, + 45.2442328606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9aaefbe34288edc0f658ceb916426b42ff74edd", + "fields": { + "code_commune_insee": "07075", + "nom_de_la_commune": "CROS DE GEORAND", + "code_postal": "07630", + "coordonnees_gps": [ + 44.7994633979, + 4.12786466116 + ], + "libelle_d_acheminement": "CROS DE GEORAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12786466116, + 44.7994633979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6f25fc7f2b5bd0cfd1867a4aabbcef2e461db6e", + "fields": { + "code_commune_insee": "15250", + "nom_de_la_commune": "VEBRET", + "code_postal": "15240", + "coordonnees_gps": [ + 45.3556816292, + 2.51538998658 + ], + "libelle_d_acheminement": "VEBRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51538998658, + 45.3556816292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13547fbcd8dc1fadc76215490f0254e8b3333035", + "fields": { + "code_commune_insee": "07078", + "nom_de_la_commune": "DAVEZIEUX", + "code_postal": "07430", + "coordonnees_gps": [ + 45.2551141043, + 4.70210482466 + ], + "libelle_d_acheminement": "DAVEZIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70210482466, + 45.2551141043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe7327e7c15730c272546c82b18c3d7fbdcddff6", + "fields": { + "code_commune_insee": "15251", + "nom_de_la_commune": "VEDRINES ST LOUP", + "code_postal": "15100", + "coordonnees_gps": [ + 45.0527660016, + 3.27223653153 + ], + "libelle_d_acheminement": "VEDRINES ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27223653153, + 45.0527660016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eb26ef0edb5075d98d7ad6f87ec4bd62d9bfc5e", + "fields": { + "code_commune_insee": "07079", + "nom_de_la_commune": "DESAIGNES", + "code_postal": "07570", + "coordonnees_gps": [ + 44.992108782, + 4.50096602027 + ], + "libelle_d_acheminement": "DESAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50096602027, + 44.992108782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f41c357de341e32e92ff4511abf0e2ae5817b739", + "fields": { + "code_commune_insee": "15258", + "nom_de_la_commune": "VIC SUR CERE", + "code_postal": "15800", + "coordonnees_gps": [ + 44.9716667765, + 2.62023551236 + ], + "libelle_d_acheminement": "VIC SUR CERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62023551236, + 44.9716667765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abf0efa48ef80aff4d0bfaa3f9c14fac8fd4d314", + "fields": { + "code_commune_insee": "07087", + "nom_de_la_commune": "FABRAS", + "code_postal": "07380", + "coordonnees_gps": [ + 44.6484389575, + 4.28119591056 + ], + "libelle_d_acheminement": "FABRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28119591056, + 44.6484389575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "996f4276f637d68cf6a09e9e8b519701febaaa54", + "fields": { + "code_commune_insee": "15260", + "nom_de_la_commune": "VIEILLEVIE", + "code_postal": "15120", + "coordonnees_gps": [ + 44.6519777769, + 2.43471765124 + ], + "libelle_d_acheminement": "VIEILLEVIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43471765124, + 44.6519777769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "044930883f6cfd6e4288d848cd4848746659dec2", + "fields": { + "code_commune_insee": "07088", + "nom_de_la_commune": "FAUGERES", + "code_postal": "07230", + "coordonnees_gps": [ + 44.4791202629, + 4.13971608703 + ], + "libelle_d_acheminement": "FAUGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13971608703, + 44.4791202629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11f5431934570b82a4b31bc6c5427f80a0ba38a8", + "fields": { + "code_commune_insee": "15266", + "nom_de_la_commune": "YOLET", + "code_postal": "15130", + "coordonnees_gps": [ + 44.9307481726, + 2.5382689478 + ], + "libelle_d_acheminement": "YOLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5382689478, + 44.9307481726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a238f9abdd896219456218a2d3a10628d191072a", + "fields": { + "code_commune_insee": "07094", + "nom_de_la_commune": "GILHAC ET BRUZAC", + "code_postal": "07800", + "coordonnees_gps": [ + 44.8632410732, + 4.74540308425 + ], + "libelle_d_acheminement": "GILHAC ET BRUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74540308425, + 44.8632410732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de40f75d6170e193d696ec55ffca809eb4b545f1", + "fields": { + "ligne_5": "VILLEJESUS", + "code_commune_insee": "16005", + "libelle_d_acheminement": "AIGRE", + "code_postal": "16140", + "nom_de_la_commune": "AIGRE", + "coordonnees_gps": [ + 45.8891702634, + -0.000376399361894 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.000376399361894, + 45.8891702634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc7c43815fafef04787c1112fa62048c77e16b30", + "fields": { + "code_commune_insee": "07099", + "nom_de_la_commune": "GRAS", + "code_postal": "07700", + "coordonnees_gps": [ + 44.4453699955, + 4.5342825809 + ], + "libelle_d_acheminement": "GRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5342825809, + 44.4453699955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbf29e5bb378b2d3c77fa61121e3f5eada617796", + "fields": { + "code_commune_insee": "16009", + "nom_de_la_commune": "AMBERNAC", + "code_postal": "16490", + "coordonnees_gps": [ + 45.9747688433, + 0.556409302245 + ], + "libelle_d_acheminement": "AMBERNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.556409302245, + 45.9747688433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba44700b7f06a0938f66b4abc46bca52cbf5e129", + "fields": { + "code_commune_insee": "07108", + "nom_de_la_commune": "JAUNAC", + "code_postal": "07160", + "coordonnees_gps": [ + 44.9198243034, + 4.39270254716 + ], + "libelle_d_acheminement": "JAUNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39270254716, + 44.9198243034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64d546c57fdf1ea263ca57e5deb1d4315704e9ea", + "fields": { + "code_commune_insee": "16014", + "nom_de_la_commune": "ANGEDUC", + "code_postal": "16300", + "coordonnees_gps": [ + 45.4783133378, + -0.0552960913383 + ], + "libelle_d_acheminement": "ANGEDUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0552960913383, + 45.4783133378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2b64498bd37713045bd63dc42e21ece7b2902ec", + "fields": { + "code_commune_insee": "07112", + "nom_de_la_commune": "LABASTIDE SUR BESORGUES", + "code_postal": "07600", + "coordonnees_gps": [ + 44.7487657631, + 4.29812295465 + ], + "libelle_d_acheminement": "LABASTIDE SUR BESORGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29812295465, + 44.7487657631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "612f89fa74403ad701dff1002ffd5e993e442c20", + "fields": { + "code_commune_insee": "16018", + "nom_de_la_commune": "ARS", + "code_postal": "16130", + "coordonnees_gps": [ + 45.6370134609, + -0.402334253854 + ], + "libelle_d_acheminement": "ARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.402334253854, + 45.6370134609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec58c02deee182093418642f52588dedfd21d812", + "fields": { + "code_commune_insee": "07117", + "nom_de_la_commune": "LABLACHERE", + "code_postal": "07230", + "coordonnees_gps": [ + 44.4602290219, + 4.21397084394 + ], + "libelle_d_acheminement": "LABLACHERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21397084394, + 44.4602290219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd3fea16807e5f286429eedcae293c2c9e1d853e", + "fields": { + "ligne_5": "AUNAC", + "code_commune_insee": "16023", + "libelle_d_acheminement": "AUNAC SUR CHARENTE", + "code_postal": "16460", + "nom_de_la_commune": "AUNAC SUR CHARENTE", + "coordonnees_gps": [ + 45.9151202066, + 0.255788080504 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.255788080504, + 45.9151202066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f52b9d315f5fd4477ec10f94f1e3f0b789f9e38c", + "fields": { + "code_commune_insee": "07119", + "nom_de_la_commune": "LE LAC D ISSARLES", + "code_postal": "07470", + "coordonnees_gps": [ + 44.8233324216, + 4.07465283031 + ], + "libelle_d_acheminement": "LE LAC D ISSARLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07465283031, + 44.8233324216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "430564d5cf229e60a62cac53576aaf10bd8aae6a", + "fields": { + "ligne_5": "CHENOMMET", + "code_commune_insee": "16023", + "libelle_d_acheminement": "AUNAC SUR CHARENTE", + "code_postal": "16460", + "nom_de_la_commune": "AUNAC SUR CHARENTE", + "coordonnees_gps": [ + 45.9151202066, + 0.255788080504 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.255788080504, + 45.9151202066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7de588c46fc75da3101bf474f66f440f48160a90", + "fields": { + "code_commune_insee": "07121", + "nom_de_la_commune": "LACHAPELLE GRAILLOUSE", + "code_postal": "07470", + "coordonnees_gps": [ + 44.8117618119, + 4.01886475359 + ], + "libelle_d_acheminement": "LACHAPELLE GRAILLOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01886475359, + 44.8117618119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "992ee975a7e4e65cb0588932e1ccbf28161d6e3e", + "fields": { + "code_commune_insee": "16028", + "nom_de_la_commune": "BARBEZIEUX ST HILAIRE", + "code_postal": "16300", + "coordonnees_gps": [ + 45.4780382344, + -0.157746079718 + ], + "libelle_d_acheminement": "BARBEZIEUX ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.157746079718, + 45.4780382344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae8f327c9ba2c27eaa167f783e5cb495ad2e180b", + "fields": { + "code_commune_insee": "07122", + "nom_de_la_commune": "LACHAPELLE SOUS AUBENAS", + "code_postal": "07200", + "coordonnees_gps": [ + 44.5622616562, + 4.35906947518 + ], + "libelle_d_acheminement": "LACHAPELLE SOUS AUBENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35906947518, + 44.5622616562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64d4db792f66caa1b37e17007ff9da2673ed6b56", + "fields": { + "code_commune_insee": "16035", + "nom_de_la_commune": "BEAULIEU SUR SONNETTE", + "code_postal": "16450", + "coordonnees_gps": [ + 45.9272378764, + 0.372798156825 + ], + "libelle_d_acheminement": "BEAULIEU SUR SONNETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.372798156825, + 45.9272378764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "044e6a0f27656bb96a91cdd7bb231f5fe8cadb02", + "fields": { + "code_commune_insee": "07123", + "nom_de_la_commune": "LACHAPELLE SOUS CHANEAC", + "code_postal": "07310", + "coordonnees_gps": [ + 44.9541324494, + 4.31904223748 + ], + "libelle_d_acheminement": "LACHAPELLE SOUS CHANEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31904223748, + 44.9541324494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e45cef84e910030e48a329bf035bfd06ab5707d1", + "fields": { + "ligne_5": "BLANZAC PORCHERESSE", + "code_commune_insee": "16046", + "libelle_d_acheminement": "COTEAUX DU BLANZACAIS", + "code_postal": "16250", + "nom_de_la_commune": "COTEAUX DU BLANZACAIS", + "coordonnees_gps": [ + 45.4714654807, + 0.0236302142689 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0236302142689, + 45.4714654807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94e7a1fc1bd73d0843b9404109da4ca93bd4cabe", + "fields": { + "code_commune_insee": "07124", + "nom_de_la_commune": "LAFARRE", + "code_postal": "07520", + "coordonnees_gps": [ + 45.0784792733, + 4.51659927273 + ], + "libelle_d_acheminement": "LAFARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51659927273, + 45.0784792733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "110fee710cf8b3ec19f2433118066db2904219bc", + "fields": { + "ligne_5": "ST GENIS DE BLANZAC", + "code_commune_insee": "16046", + "libelle_d_acheminement": "COTEAUX DU BLANZACAIS", + "code_postal": "16250", + "nom_de_la_commune": "COTEAUX DU BLANZACAIS", + "coordonnees_gps": [ + 45.4714654807, + 0.0236302142689 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0236302142689, + 45.4714654807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d175dbc7283fc3c4f91f3d004d4d8dadbf5d93b1", + "fields": { + "code_commune_insee": "07131", + "nom_de_la_commune": "LANAS", + "code_postal": "07200", + "coordonnees_gps": [ + 44.5369264194, + 4.38390095509 + ], + "libelle_d_acheminement": "LANAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38390095509, + 44.5369264194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3eb3974c377286d459f968f28a8699baac73c06", + "fields": { + "code_commune_insee": "16052", + "nom_de_la_commune": "BORS DE MONTMOREAU", + "code_postal": "16190", + "coordonnees_gps": [ + 45.3401040524, + 0.147879846098 + ], + "libelle_d_acheminement": "BORS DE MONTMOREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.147879846098, + 45.3401040524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35dfb212faadcf845ec6a96c44c1d0e06d8dfe74", + "fields": { + "code_commune_insee": "07134", + "nom_de_la_commune": "LAURAC EN VIVARAIS", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5033057192, + 4.28830492174 + ], + "libelle_d_acheminement": "LAURAC EN VIVARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28830492174, + 44.5033057192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7509abfc5f1052dc3496de67581417358cfa02d", + "fields": { + "code_commune_insee": "16062", + "nom_de_la_commune": "BRIE SOUS BARBEZIEUX", + "code_postal": "16300", + "coordonnees_gps": [ + 45.4238677604, + -0.0407675127777 + ], + "libelle_d_acheminement": "BRIE SOUS BARBEZIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407675127777, + 45.4238677604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d644cabf6fc600c976e44e53108a50e24344a9f2", + "fields": { + "code_commune_insee": "07139", + "nom_de_la_commune": "LAVIOLLE", + "code_postal": "07530", + "coordonnees_gps": [ + 44.7621284676, + 4.33354571625 + ], + "libelle_d_acheminement": "LAVIOLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33354571625, + 44.7621284676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20f2a5765805e9c89feaa8668c3af31288a2da19", + "fields": { + "code_commune_insee": "16066", + "nom_de_la_commune": "BROSSAC", + "code_postal": "16480", + "coordonnees_gps": [ + 45.3238579692, + -0.0465934055861 + ], + "libelle_d_acheminement": "BROSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0465934055861, + 45.3238579692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb5c650ec1e7182ca4e2ed4fcdcf823f986c8e85", + "fields": { + "code_commune_insee": "07140", + "nom_de_la_commune": "LEMPS", + "code_postal": "07610", + "coordonnees_gps": [ + 45.0972922386, + 4.778993534 + ], + "libelle_d_acheminement": "LEMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.778993534, + 45.0972922386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc074a63f792a094ecb972e6807914b185a4dcb5", + "fields": { + "code_commune_insee": "16070", + "nom_de_la_commune": "CHABANAIS", + "code_postal": "16150", + "coordonnees_gps": [ + 45.8638291864, + 0.711713773005 + ], + "libelle_d_acheminement": "CHABANAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.711713773005, + 45.8638291864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88b7330df97d7452c51fae12ac389389bb7afaa4", + "fields": { + "ligne_5": "LAFIGERE", + "code_commune_insee": "07147", + "libelle_d_acheminement": "MALARCE SUR LA THINES", + "code_postal": "07140", + "nom_de_la_commune": "MALARCE SUR LA THINES", + "coordonnees_gps": [ + 44.4780272206, + 4.05011924136 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05011924136, + 44.4780272206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d23415bbfa2e1fb09edbafe8e9b6c027b458a117", + "fields": { + "code_commune_insee": "16073", + "nom_de_la_commune": "CHALAIS", + "code_postal": "16210", + "coordonnees_gps": [ + 45.2739548684, + 0.0385508867289 + ], + "libelle_d_acheminement": "CHALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0385508867289, + 45.2739548684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a19e1ae56f94aded2311e28256e9e8d886e4e886", + "fields": { + "code_commune_insee": "07151", + "nom_de_la_commune": "MARS", + "code_postal": "07320", + "coordonnees_gps": [ + 45.0104543843, + 4.3290005107 + ], + "libelle_d_acheminement": "MARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3290005107, + 45.0104543843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b856bc76a2971b656259f60db4395445ac8fd9f", + "fields": { + "ligne_5": "STE MARIE", + "code_commune_insee": "16073", + "libelle_d_acheminement": "CHALAIS", + "code_postal": "16210", + "nom_de_la_commune": "CHALAIS", + "coordonnees_gps": [ + 45.2739548684, + 0.0385508867289 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0385508867289, + 45.2739548684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05bf63010e939fc6a3d7bda847dab002e51d0a0c", + "fields": { + "code_commune_insee": "07154", + "nom_de_la_commune": "MAZAN L ABBAYE", + "code_postal": "07510", + "coordonnees_gps": [ + 44.7246364592, + 4.08102609773 + ], + "libelle_d_acheminement": "MAZAN L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08102609773, + 44.7246364592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97d1220252bc7db844e36083586e98288b44be12", + "fields": { + "code_commune_insee": "16076", + "nom_de_la_commune": "CHAMPAGNE MOUTON", + "code_postal": "16350", + "coordonnees_gps": [ + 45.993087674, + 0.412273153255 + ], + "libelle_d_acheminement": "CHAMPAGNE MOUTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.412273153255, + 45.993087674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95fb4e4b373547193db5813f3a04e4eb4a47a1ce", + "fields": { + "code_commune_insee": "07159", + "nom_de_la_commune": "MIRABEL", + "code_postal": "07170", + "coordonnees_gps": [ + 44.5960574224, + 4.49616494242 + ], + "libelle_d_acheminement": "MIRABEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49616494242, + 44.5960574224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b59e6482452e38210094964a2da7bed305ef687a", + "fields": { + "code_commune_insee": "16087", + "nom_de_la_commune": "CHASSIECQ", + "code_postal": "16350", + "coordonnees_gps": [ + 45.9509527297, + 0.368543478454 + ], + "libelle_d_acheminement": "CHASSIECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.368543478454, + 45.9509527297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab7f8680e4d0f5e65a1299683596dede59999ca3", + "fields": { + "code_commune_insee": "07161", + "nom_de_la_commune": "MONTPEZAT SOUS BAUZON", + "code_postal": "07560", + "coordonnees_gps": [ + 44.7167471772, + 4.19649706588 + ], + "libelle_d_acheminement": "MONTPEZAT SOUS BAUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19649706588, + 44.7167471772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ec4928b6b69f24a8b6d87bc7c3fedce1376f04c", + "fields": { + "code_commune_insee": "16090", + "nom_de_la_commune": "CHATEAUNEUF SUR CHARENTE", + "code_postal": "16120", + "coordonnees_gps": [ + 45.5961486354, + -0.0514205671468 + ], + "libelle_d_acheminement": "CHATEAUNEUF SUR CHARENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0514205671468, + 45.5961486354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f610205bbacbd526f64df09f094dd0f0ab9802e9", + "fields": { + "ligne_5": "NONIERES", + "code_commune_insee": "07165", + "libelle_d_acheminement": "BELSENTES", + "code_postal": "07160", + "nom_de_la_commune": "BELSENTES", + "coordonnees_gps": [ + 44.9277079206, + 4.47689363843 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47689363843, + 44.9277079206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a19c39cc1993c752047ae4c13e41ee6da487d76f", + "fields": { + "ligne_5": "ST GERMAIN DE CONFOLENS", + "code_commune_insee": "16106", + "libelle_d_acheminement": "CONFOLENS", + "code_postal": "16500", + "nom_de_la_commune": "CONFOLENS", + "coordonnees_gps": [ + 46.0191386034, + 0.658522279035 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.658522279035, + 46.0191386034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fde250f16895ea84a296645dec0537d4c2060427", + "fields": { + "code_commune_insee": "07166", + "nom_de_la_commune": "NOZIERES", + "code_postal": "07270", + "coordonnees_gps": [ + 45.0340943157, + 4.54645934869 + ], + "libelle_d_acheminement": "NOZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54645934869, + 45.0340943157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "897b7aa60b4b2982e5e3fb4191dc73f7ec3cd410", + "fields": { + "code_commune_insee": "16108", + "nom_de_la_commune": "COULONGES", + "code_postal": "16330", + "coordonnees_gps": [ + 45.8376302744, + 0.0898755953494 + ], + "libelle_d_acheminement": "COULONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0898755953494, + 45.8376302744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c32c62320c615298c4a7759da806939418fb40cd", + "fields": { + "code_commune_insee": "07174", + "nom_de_la_commune": "PEYRAUD", + "code_postal": "07340", + "coordonnees_gps": [ + 45.2964031304, + 4.78361394668 + ], + "libelle_d_acheminement": "PEYRAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78361394668, + 45.2964031304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a689401f0800e9d067e16f1315963eaa18771944", + "fields": { + "ligne_5": "TUZIE", + "code_commune_insee": "16110", + "libelle_d_acheminement": "COURCOME", + "code_postal": "16700", + "nom_de_la_commune": "COURCOME", + "coordonnees_gps": [ + 45.9857430952, + 0.133351057987 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.133351057987, + 45.9857430952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "741e108a8785bd4b938b9c4a6798c069c80843e0", + "fields": { + "code_commune_insee": "07175", + "nom_de_la_commune": "LE PLAGNAL", + "code_postal": "07590", + "coordonnees_gps": [ + 44.6933752514, + 3.95120350218 + ], + "libelle_d_acheminement": "LE PLAGNAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95120350218, + 44.6933752514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "418ab607df029172e38f9e4adf4865ba7fa95051", + "fields": { + "code_commune_insee": "16111", + "nom_de_la_commune": "COURGEAC", + "code_postal": "16190", + "coordonnees_gps": [ + 45.3944594925, + 0.0818231361752 + ], + "libelle_d_acheminement": "COURGEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0818231361752, + 45.3944594925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbfc35fa2a100876e4944404588b1d544134f723", + "fields": { + "code_commune_insee": "07182", + "nom_de_la_commune": "PRADES", + "code_postal": "07380", + "coordonnees_gps": [ + 44.632791917, + 4.31054797837 + ], + "libelle_d_acheminement": "PRADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31054797837, + 44.632791917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51d8dddcd6ee3d9e4579c26ead3652a7ad44514d", + "fields": { + "code_commune_insee": "16116", + "nom_de_la_commune": "CRITEUIL LA MAGDELEINE", + "code_postal": "16300", + "coordonnees_gps": [ + 45.5364679101, + -0.2103850238 + ], + "libelle_d_acheminement": "CRITEUIL LA MAGDELEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2103850238, + 45.5364679101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48b7cb65690544e237d551411c41bc4ca1c79557", + "fields": { + "code_commune_insee": "07184", + "nom_de_la_commune": "PRANLES", + "code_postal": "07000", + "coordonnees_gps": [ + 44.7808511718, + 4.57520431156 + ], + "libelle_d_acheminement": "PRANLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57520431156, + 44.7808511718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7691fbcc6f9fa41d9d191de1f87a3d139a71a88e", + "fields": { + "code_commune_insee": "16118", + "nom_de_la_commune": "DEVIAT", + "code_postal": "16190", + "coordonnees_gps": [ + 45.4087322108, + 0.0148313347537 + ], + "libelle_d_acheminement": "DEVIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0148313347537, + 45.4087322108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a9f7273e6b9774de1c7b2fe66cee89044231399", + "fields": { + "code_commune_insee": "07185", + "nom_de_la_commune": "PREAUX", + "code_postal": "07290", + "coordonnees_gps": [ + 45.1362813279, + 4.65371648034 + ], + "libelle_d_acheminement": "PREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65371648034, + 45.1362813279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e14e6fdd30b60db8d62353b67c5b9fe10e1184f", + "fields": { + "code_commune_insee": "16122", + "nom_de_la_commune": "EBREON", + "code_postal": "16140", + "coordonnees_gps": [ + 45.9419566214, + 0.0300094172426 + ], + "libelle_d_acheminement": "EBREON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0300094172426, + 45.9419566214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81aa47daf61df2618ce6e85c7856392271504779", + "fields": { + "code_commune_insee": "07189", + "nom_de_la_commune": "RIBES", + "code_postal": "07260", + "coordonnees_gps": [ + 44.5036367428, + 4.19775293307 + ], + "libelle_d_acheminement": "RIBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19775293307, + 44.5036367428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b71a3a2dc25f2668a28039382e96fdec4a2f83ee", + "fields": { + "code_commune_insee": "16128", + "nom_de_la_commune": "EPENEDE", + "code_postal": "16490", + "coordonnees_gps": [ + 46.069351116, + 0.537822207003 + ], + "libelle_d_acheminement": "EPENEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.537822207003, + 46.069351116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52adead71691cedc541b04b39e908dd51e484615", + "fields": { + "code_commune_insee": "07190", + "nom_de_la_commune": "ROCHECOLOMBE", + "code_postal": "07200", + "coordonnees_gps": [ + 44.5184712658, + 4.44840556481 + ], + "libelle_d_acheminement": "ROCHECOLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44840556481, + 44.5184712658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b106ac32f4a2ceca47e4a44ab3bb73ab9ab7538", + "fields": { + "code_commune_insee": "16131", + "nom_de_la_commune": "ESSE", + "code_postal": "16500", + "coordonnees_gps": [ + 46.0262718319, + 0.720395594442 + ], + "libelle_d_acheminement": "ESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.720395594442, + 46.0262718319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d67dbbaa2d625c782f91f3b8f8fec52ea60c96a", + "fields": { + "code_commune_insee": "07192", + "nom_de_la_commune": "ROCHEPAULE", + "code_postal": "07320", + "coordonnees_gps": [ + 45.0856715901, + 4.45942671204 + ], + "libelle_d_acheminement": "ROCHEPAULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45942671204, + 45.0856715901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d345f68e32dbe81b7aa048304f1fb93eb0c7d912", + "fields": { + "code_commune_insee": "16138", + "nom_de_la_commune": "FLEAC", + "code_postal": "16730", + "coordonnees_gps": [ + 45.6757321488, + 0.0883493158258 + ], + "libelle_d_acheminement": "FLEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0883493158258, + 45.6757321488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbcfb9a7ca76155f7f19142b2dfd0bb62119cd11", + "fields": { + "code_commune_insee": "07194", + "nom_de_la_commune": "ROCHESSAUVE", + "code_postal": "07210", + "coordonnees_gps": [ + 44.6806789523, + 4.61124085602 + ], + "libelle_d_acheminement": "ROCHESSAUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61124085602, + 44.6806789523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "300fc0629d15b8937af82494027c20df6b1fe85d", + "fields": { + "code_commune_insee": "16143", + "nom_de_la_commune": "FOUQUEBRUNE", + "code_postal": "16410", + "coordonnees_gps": [ + 45.5273705176, + 0.196901956839 + ], + "libelle_d_acheminement": "FOUQUEBRUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.196901956839, + 45.5273705176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a017d506308f5e17402046b747de8485a3cf268", + "fields": { + "code_commune_insee": "07210", + "nom_de_la_commune": "ST ANDEOL DE VALS", + "code_postal": "07600", + "coordonnees_gps": [ + 44.6925998295, + 4.40100662602 + ], + "libelle_d_acheminement": "ST ANDEOL DE VALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40100662602, + 44.6925998295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ee254d94bc9571e375fed66c766335abe702979", + "fields": { + "code_commune_insee": "16147", + "nom_de_la_commune": "GARDES LE PONTAROUX", + "code_postal": "16320", + "coordonnees_gps": [ + 45.5102605309, + 0.309516332026 + ], + "libelle_d_acheminement": "GARDES LE PONTAROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.309516332026, + 45.5102605309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c059505a8d3af73331b1fe65bf9606f89570679", + "fields": { + "code_commune_insee": "07217", + "nom_de_la_commune": "ST BARTHELEMY LE PLAIN", + "code_postal": "07300", + "coordonnees_gps": [ + 45.0454601149, + 4.74368013077 + ], + "libelle_d_acheminement": "ST BARTHELEMY LE PLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74368013077, + 45.0454601149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d73d31cebe450c1c14f9f1037b92680383acbde", + "fields": { + "ligne_5": "MAINXE", + "code_commune_insee": "16153", + "libelle_d_acheminement": "MAINXE GONDEVILLE", + "code_postal": "16200", + "nom_de_la_commune": "MAINXE GONDEVILLE", + "coordonnees_gps": [ + 45.6684412124, + -0.155937890008 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.155937890008, + 45.6684412124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10940fdc2cd2a8251b503464c2061d1a0a6ea811", + "fields": { + "code_commune_insee": "07223", + "nom_de_la_commune": "ST CIRGUES DE PRADES", + "code_postal": "07380", + "coordonnees_gps": [ + 44.6202111771, + 4.27429398841 + ], + "libelle_d_acheminement": "ST CIRGUES DE PRADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27429398841, + 44.6202111771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d97b3fe37607f7c6add7bef6a332844f442025c4", + "fields": { + "code_commune_insee": "16157", + "nom_de_la_commune": "LE GRAND MADIEU", + "code_postal": "16450", + "coordonnees_gps": [ + 45.9414000516, + 0.44751280825 + ], + "libelle_d_acheminement": "LE GRAND MADIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.44751280825, + 45.9414000516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3cfa21184e9fd61c6b04a0b00e46f5ecb0c33a3", + "fields": { + "code_commune_insee": "07225", + "nom_de_la_commune": "ST CLAIR", + "code_postal": "07430", + "coordonnees_gps": [ + 45.2755892948, + 4.68712205 + ], + "libelle_d_acheminement": "ST CLAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68712205, + 45.2755892948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e13691cd042a52b636517b6c7691edc61672e198", + "fields": { + "code_commune_insee": "16169", + "nom_de_la_commune": "JAVREZAC", + "code_postal": "16100", + "coordonnees_gps": [ + 45.7029983448, + -0.363647705405 + ], + "libelle_d_acheminement": "JAVREZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.363647705405, + 45.7029983448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c541268fce2ff3071ba540b9cd05015121c6a9f1", + "fields": { + "code_commune_insee": "07228", + "nom_de_la_commune": "ST DESIRAT", + "code_postal": "07340", + "coordonnees_gps": [ + 45.2586090044, + 4.77940382807 + ], + "libelle_d_acheminement": "ST DESIRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77940382807, + 45.2586090044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d47ccc64695c3400bed8f2636badf99719a9dce", + "fields": { + "code_commune_insee": "16170", + "nom_de_la_commune": "JUIGNAC", + "code_postal": "16190", + "coordonnees_gps": [ + 45.3679418137, + 0.158358681368 + ], + "libelle_d_acheminement": "JUIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.158358681368, + 45.3679418137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac9264284778b7ed56bb64139554eef54752f6a1", + "fields": { + "code_commune_insee": "07234", + "nom_de_la_commune": "ST ETIENNE DE VALOUX", + "code_postal": "07340", + "coordonnees_gps": [ + 45.2429551073, + 4.77699144156 + ], + "libelle_d_acheminement": "ST ETIENNE DE VALOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77699144156, + 45.2429551073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ddc5e0a7d57d5fc2f22ffd0e5d0db6686b5b295", + "fields": { + "code_commune_insee": "16171", + "nom_de_la_commune": "JUILLAC LE COQ", + "code_postal": "16130", + "coordonnees_gps": [ + 45.5891696148, + -0.256462985988 + ], + "libelle_d_acheminement": "JUILLAC LE COQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.256462985988, + 45.5891696148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5610c4209ca81bfbf0cbc27cee94666d2a7dfcd5", + "fields": { + "code_commune_insee": "07241", + "nom_de_la_commune": "ST GERMAIN", + "code_postal": "07170", + "coordonnees_gps": [ + 44.5531057942, + 4.44825609237 + ], + "libelle_d_acheminement": "ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44825609237, + 44.5531057942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d6270b8771d5b68e0358ab038c7be295e65dba9", + "fields": { + "code_commune_insee": "16173", + "nom_de_la_commune": "JUILLE", + "code_postal": "16230", + "coordonnees_gps": [ + 45.9263168412, + 0.141585678419 + ], + "libelle_d_acheminement": "JUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.141585678419, + 45.9263168412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6065bf44510a46b2603f664281ec0c145faf8576", + "fields": { + "code_commune_insee": "07248", + "nom_de_la_commune": "ST JEAN ROURE", + "code_postal": "07160", + "coordonnees_gps": [ + 44.9554453172, + 4.41885438779 + ], + "libelle_d_acheminement": "ST JEAN ROURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41885438779, + 44.9554453172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4324420eb7f0e95de0b91bf1ed37597b5a2398a2", + "fields": { + "ligne_5": "AUBEVILLE", + "code_commune_insee": "16175", + "libelle_d_acheminement": "VAL DES VIGNES", + "code_postal": "16250", + "nom_de_la_commune": "VAL DES VIGNES", + "coordonnees_gps": [ + 45.5351688008, + -0.0353997702364 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0353997702364, + 45.5351688008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b177ed20ec282e459a649980fa2b8b1b36c89dca", + "fields": { + "code_commune_insee": "07255", + "nom_de_la_commune": "ST JULIEN EN ST ALBAN", + "code_postal": "07000", + "coordonnees_gps": [ + 44.7586202476, + 4.69261801015 + ], + "libelle_d_acheminement": "ST JULIEN EN ST ALBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69261801015, + 44.7586202476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2e69ec5ecf3e5fa713d0c082f2394e3e67f37a3", + "fields": { + "code_commune_insee": "16186", + "nom_de_la_commune": "LIGNIERES SONNEVILLE", + "code_postal": "16130", + "coordonnees_gps": [ + 45.5660291672, + -0.185136397799 + ], + "libelle_d_acheminement": "LIGNIERES SONNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.185136397799, + 45.5660291672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2820205038bf84b9b4ce8b2ea56f0f72d8e648a8", + "fields": { + "code_commune_insee": "07259", + "nom_de_la_commune": "ST JUST D ARDECHE", + "code_postal": "07700", + "coordonnees_gps": [ + 44.2932027853, + 4.62448546044 + ], + "libelle_d_acheminement": "ST JUST D ARDECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62448546044, + 44.2932027853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ca1f1b8f8ee0a6650a6a19fce874073aea3d010", + "fields": { + "ligne_5": "GENOUILLAC", + "code_commune_insee": "16192", + "libelle_d_acheminement": "TERRES DE HAUTE CHARENTE", + "code_postal": "16270", + "nom_de_la_commune": "TERRES DE HAUTE CHARENTE", + "coordonnees_gps": [ + 45.9100102437, + 0.573121657498 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.573121657498, + 45.9100102437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5af2b4ee442bb1f069febfb0f7349a94742ccb11", + "fields": { + "code_commune_insee": "07268", + "nom_de_la_commune": "ST MARTIN D ARDECHE", + "code_postal": "07700", + "coordonnees_gps": [ + 44.3068621325, + 4.57318657163 + ], + "libelle_d_acheminement": "ST MARTIN D ARDECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57318657163, + 44.3068621325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bbbbee034586043d444875dddd4166ecd0c6d3a", + "fields": { + "code_commune_insee": "16194", + "nom_de_la_commune": "LUPSAULT", + "code_postal": "16140", + "coordonnees_gps": [ + 45.9351371201, + -0.0650569575239 + ], + "libelle_d_acheminement": "LUPSAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0650569575239, + 45.9351371201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf19ef40bc76552374f20c115f33dd1e539c6745", + "fields": { + "code_commune_insee": "07285", + "nom_de_la_commune": "ST PIERRE SUR DOUX", + "code_postal": "07520", + "coordonnees_gps": [ + 45.1287002576, + 4.48532647522 + ], + "libelle_d_acheminement": "ST PIERRE SUR DOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48532647522, + 45.1287002576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83cdf60096ec933cc18381777e833830d4196952", + "fields": { + "code_commune_insee": "16195", + "nom_de_la_commune": "LUSSAC", + "code_postal": "16450", + "coordonnees_gps": [ + 45.8580701828, + 0.466519460774 + ], + "libelle_d_acheminement": "LUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.466519460774, + 45.8580701828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c64571adbd1061415f3b85dbc08066fc4132b162", + "fields": { + "code_commune_insee": "07286", + "nom_de_la_commune": "ST PIERREVILLE", + "code_postal": "07190", + "coordonnees_gps": [ + 44.819009873, + 4.48134078114 + ], + "libelle_d_acheminement": "ST PIERREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48134078114, + 44.819009873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1a0528052b5d5ccb3a2dc4deb375ca1da4d38d7", + "fields": { + "code_commune_insee": "16196", + "nom_de_la_commune": "LUXE", + "code_postal": "16230", + "coordonnees_gps": [ + 45.8951621262, + 0.124490429132 + ], + "libelle_d_acheminement": "LUXE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.124490429132, + 45.8951621262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c2aad042c6433c3cbc18e9fc237ba410a307b3f", + "fields": { + "code_commune_insee": "07293", + "nom_de_la_commune": "ST ROMAIN DE LERPS", + "code_postal": "07130", + "coordonnees_gps": [ + 44.9763077401, + 4.79626374125 + ], + "libelle_d_acheminement": "ST ROMAIN DE LERPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79626374125, + 44.9763077401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cca1b0f67085fb83cdc296272f7ede3503cd22b1", + "fields": { + "code_commune_insee": "16203", + "nom_de_la_commune": "MAINZAC", + "code_postal": "16380", + "coordonnees_gps": [ + 45.5538600835, + 0.476645844368 + ], + "libelle_d_acheminement": "MAINZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.476645844368, + 45.5538600835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dde898d6d6b715b7ba70d4452de5245716c56ac", + "fields": { + "code_commune_insee": "07295", + "nom_de_la_commune": "ST SAUVEUR DE MONTAGUT", + "code_postal": "07190", + "coordonnees_gps": [ + 44.8202271347, + 4.57255179328 + ], + "libelle_d_acheminement": "ST SAUVEUR DE MONTAGUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57255179328, + 44.8202271347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a5381ea25623d26bbb30ca1c7f7f862e2586fa4", + "fields": { + "ligne_5": "MALAVILLE", + "code_commune_insee": "16204", + "libelle_d_acheminement": "BELLEVIGNE", + "code_postal": "16120", + "nom_de_la_commune": "BELLEVIGNE", + "coordonnees_gps": [ + 45.5525236965, + -0.103272182432 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.103272182432, + 45.5525236965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87a6f05e5276b70b8b8ddba393f391240b34a0bf", + "fields": { + "code_commune_insee": "07297", + "nom_de_la_commune": "ST SYLVESTRE", + "code_postal": "07440", + "coordonnees_gps": [ + 44.9879627989, + 4.74987587664 + ], + "libelle_d_acheminement": "ST SYLVESTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74987587664, + 44.9879627989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5de3beed0087a9d546bada16e9423ac52696297b", + "fields": { + "ligne_5": "NONAVILLE", + "code_commune_insee": "16204", + "libelle_d_acheminement": "BELLEVIGNE", + "code_postal": "16120", + "nom_de_la_commune": "BELLEVIGNE", + "coordonnees_gps": [ + 45.5525236965, + -0.103272182432 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.103272182432, + 45.5525236965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f48d6a44805ec9b9898f84dabc8827c532cba636", + "fields": { + "code_commune_insee": "07301", + "nom_de_la_commune": "ST VICTOR", + "code_postal": "07410", + "coordonnees_gps": [ + 45.0991678025, + 4.6879539211 + ], + "libelle_d_acheminement": "ST VICTOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6879539211, + 45.0991678025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "902ecc2351f8e9d372eda8194b8080ff38a687a3", + "fields": { + "ligne_5": "VIVILLE", + "code_commune_insee": "16204", + "libelle_d_acheminement": "BELLEVIGNE", + "code_postal": "16120", + "nom_de_la_commune": "BELLEVIGNE", + "coordonnees_gps": [ + 45.5525236965, + -0.103272182432 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.103272182432, + 45.5525236965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f977693413334248d665d22721cc5c452cb9e86", + "fields": { + "code_commune_insee": "07307", + "nom_de_la_commune": "SANILHAC", + "code_postal": "07110", + "coordonnees_gps": [ + 44.5327416488, + 4.23228758163 + ], + "libelle_d_acheminement": "SANILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23228758163, + 44.5327416488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e95563385da75712264267c7ee8431ffd492853", + "fields": { + "code_commune_insee": "16205", + "nom_de_la_commune": "MANOT", + "code_postal": "16500", + "coordonnees_gps": [ + 45.9343000992, + 0.621390097085 + ], + "libelle_d_acheminement": "MANOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.621390097085, + 45.9343000992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c84f65379f992ae1bd98ff09196d88c5060a68e", + "fields": { + "code_commune_insee": "07309", + "nom_de_la_commune": "SATILLIEU", + "code_postal": "07290", + "coordonnees_gps": [ + 45.1414705974, + 4.58761138968 + ], + "libelle_d_acheminement": "SATILLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58761138968, + 45.1414705974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de879dc7c68f09361cf2d292e9faf2f462427396", + "fields": { + "code_commune_insee": "16212", + "nom_de_la_commune": "MASSIGNAC", + "code_postal": "16310", + "coordonnees_gps": [ + 45.77722919, + 0.656859261312 + ], + "libelle_d_acheminement": "MASSIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.656859261312, + 45.77722919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3319a3380851ab3158287df2f6041b8c4eab1db9", + "fields": { + "code_commune_insee": "07314", + "nom_de_la_commune": "SILHAC", + "code_postal": "07240", + "coordonnees_gps": [ + 44.8740499723, + 4.61339409596 + ], + "libelle_d_acheminement": "SILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61339409596, + 44.8740499723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "449e162b6ad92d362a5524ff783646377bbb51d0", + "fields": { + "code_commune_insee": "16216", + "nom_de_la_commune": "MERIGNAC", + "code_postal": "16200", + "coordonnees_gps": [ + 45.6959537144, + -0.0708885459324 + ], + "libelle_d_acheminement": "MERIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0708885459324, + 45.6959537144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1e54d8f9cc5ea1c96e9ab55330a620a07a67f2f", + "fields": { + "code_commune_insee": "07317", + "nom_de_la_commune": "TALENCIEUX", + "code_postal": "07340", + "coordonnees_gps": [ + 45.219237035, + 4.77408036091 + ], + "libelle_d_acheminement": "TALENCIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77408036091, + 45.219237035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ffa1749631233113fd07274d30224f7ebfdc4eb", + "fields": { + "ligne_5": "LAMERAC", + "code_commune_insee": "16224", + "libelle_d_acheminement": "MONTMERAC", + "code_postal": "16300", + "nom_de_la_commune": "MONTMERAC", + "coordonnees_gps": [ + 45.4462725205, + -0.208192784801 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.208192784801, + 45.4462725205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "656cc27c83c2c9ed549e280516834e90251ee6f8", + "fields": { + "code_commune_insee": "07326", + "nom_de_la_commune": "USCLADES ET RIEUTORD", + "code_postal": "07510", + "coordonnees_gps": [ + 44.7709560867, + 4.1691617243 + ], + "libelle_d_acheminement": "USCLADES ET RIEUTORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1691617243, + 44.7709560867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ddd9caa9c0a06082c8f88d358ff40ed164152bc", + "fields": { + "ligne_5": "MONTCHAUDE", + "code_commune_insee": "16224", + "libelle_d_acheminement": "MONTMERAC", + "code_postal": "16300", + "nom_de_la_commune": "MONTMERAC", + "coordonnees_gps": [ + 45.4462725205, + -0.208192784801 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.208192784801, + 45.4462725205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d960315a4fc5cf61a51da1a81f6286ac910d03c", + "fields": { + "code_commune_insee": "07330", + "nom_de_la_commune": "VALLON PONT D ARC", + "code_postal": "07150", + "coordonnees_gps": [ + 44.4003012449, + 4.40537086036 + ], + "libelle_d_acheminement": "VALLON PONT D ARC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40537086036, + 44.4003012449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67d10cdfa82bb9ee1a3ff349f81917a46bf37a89", + "fields": { + "code_commune_insee": "16227", + "nom_de_la_commune": "MONTIGNAC LE COQ", + "code_postal": "16390", + "coordonnees_gps": [ + 45.3419148325, + 0.214682193579 + ], + "libelle_d_acheminement": "MONTIGNAC LE COQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.214682193579, + 45.3419148325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94a285d5c5de72ef2243ae65f422d45f786a31ac", + "fields": { + "code_commune_insee": "07338", + "nom_de_la_commune": "VERNOUX EN VIVARAIS", + "code_postal": "07240", + "coordonnees_gps": [ + 44.9051558168, + 4.64438568731 + ], + "libelle_d_acheminement": "VERNOUX EN VIVARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64438568731, + 44.9051558168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e46a72762b88fba4dcd90214e6f7b2f5839603a0", + "fields": { + "code_commune_insee": "16238", + "nom_de_la_commune": "MOUTONNEAU", + "code_postal": "16460", + "coordonnees_gps": [ + 45.9131671826, + 0.22543914525 + ], + "libelle_d_acheminement": "MOUTONNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22543914525, + 45.9131671826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4837ee97efd5eb6bb32467db6db4818be544409b", + "fields": { + "code_commune_insee": "07342", + "nom_de_la_commune": "VILLEVOCANCE", + "code_postal": "07690", + "coordonnees_gps": [ + 45.2257853403, + 4.59519658449 + ], + "libelle_d_acheminement": "VILLEVOCANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59519658449, + 45.2257853403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "183b6cd1df47aaebfb6600a08ec0ad38377acf92", + "fields": { + "code_commune_insee": "16242", + "nom_de_la_commune": "NANTEUIL EN VALLEE", + "code_postal": "16700", + "coordonnees_gps": [ + 46.0061029111, + 0.32369225522 + ], + "libelle_d_acheminement": "NANTEUIL EN VALLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32369225522, + 46.0061029111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dd3cea255e5b144da326dd8d393db3ed70ccad6", + "fields": { + "code_commune_insee": "07344", + "nom_de_la_commune": "VINZIEUX", + "code_postal": "07340", + "coordonnees_gps": [ + 45.330873084, + 4.70162834233 + ], + "libelle_d_acheminement": "VINZIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70162834233, + 45.330873084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db5b8a264d2108f87c4f600d0cdda4fee206274e", + "fields": { + "ligne_5": "MOUTARDON", + "code_commune_insee": "16242", + "libelle_d_acheminement": "NANTEUIL EN VALLEE", + "code_postal": "16700", + "nom_de_la_commune": "NANTEUIL EN VALLEE", + "coordonnees_gps": [ + 46.0061029111, + 0.32369225522 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.32369225522, + 46.0061029111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f61b89177c441aacddf19ab3420b4b6aae194681", + "fields": { + "code_commune_insee": "07346", + "nom_de_la_commune": "VIVIERS", + "code_postal": "07220", + "coordonnees_gps": [ + 44.4834547319, + 4.66986126314 + ], + "libelle_d_acheminement": "VIVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66986126314, + 44.4834547319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb7825c648a389fdc1ab6a2aa7feeaf9906d0bd9", + "fields": { + "code_commune_insee": "16246", + "nom_de_la_commune": "NONAC", + "code_postal": "16190", + "coordonnees_gps": [ + 45.4216451203, + 0.0552810681358 + ], + "libelle_d_acheminement": "NONAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0552810681358, + 45.4216451203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "576c876675e2b9e8452ae7b12da1089c387c4f6a", + "fields": { + "code_commune_insee": "07349", + "nom_de_la_commune": "LA VOULTE SUR RHONE", + "code_postal": "07800", + "coordonnees_gps": [ + 44.8015403943, + 4.78018830634 + ], + "libelle_d_acheminement": "LA VOULTE SUR RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78018830634, + 44.8015403943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbcfd3c4b5a5744519e52dab5ed97e2a9ac8b20c", + "fields": { + "code_commune_insee": "16248", + "nom_de_la_commune": "ORADOUR", + "code_postal": "16140", + "coordonnees_gps": [ + 45.9118627713, + -0.0373971324151 + ], + "libelle_d_acheminement": "ORADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0373971324151, + 45.9118627713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b035bbac5ad15c5d8bb4fb64a90281531454b43d", + "fields": { + "code_commune_insee": "08001", + "nom_de_la_commune": "ACY ROMANCE", + "code_postal": "08300", + "coordonnees_gps": [ + 49.4918922835, + 4.32704942138 + ], + "libelle_d_acheminement": "ACY ROMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32704942138, + 49.4918922835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d53c8480f0da3bb78a18a92e9cdbbc6cacd36241", + "fields": { + "code_commune_insee": "16251", + "nom_de_la_commune": "ORIOLLES", + "code_postal": "16480", + "coordonnees_gps": [ + 45.3564714888, + -0.1368388888 + ], + "libelle_d_acheminement": "ORIOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1368388888, + 45.3564714888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b152b0a42a1a1926dd4f6e4b724ed39108f4a3c6", + "fields": { + "code_commune_insee": "08003", + "nom_de_la_commune": "AIGLEMONT", + "code_postal": "08090", + "coordonnees_gps": [ + 49.7902205775, + 4.77008728822 + ], + "libelle_d_acheminement": "AIGLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77008728822, + 49.7902205775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50a8682c0415200d6bb77ac7d576c97cd6ce3855", + "fields": { + "code_commune_insee": "16268", + "nom_de_la_commune": "POURSAC", + "code_postal": "16700", + "coordonnees_gps": [ + 45.9617677073, + 0.265403568791 + ], + "libelle_d_acheminement": "POURSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.265403568791, + 45.9617677073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "064076c4daf5fb91733d4bf476970b30f43e2787", + "fields": { + "code_commune_insee": "08008", + "nom_de_la_commune": "AMAGNE", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5164052633, + 4.50308478101 + ], + "libelle_d_acheminement": "AMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50308478101, + 49.5164052633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c924c4c51177bf901a3e4181ca79c7b6acfdb8ff", + "fields": { + "code_commune_insee": "16269", + "nom_de_la_commune": "PRANZAC", + "code_postal": "16110", + "coordonnees_gps": [ + 45.67389958, + 0.346548387034 + ], + "libelle_d_acheminement": "PRANZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.346548387034, + 45.67389958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3678ce9fdef858618186f63ef004142f93ec503", + "fields": { + "code_commune_insee": "08010", + "nom_de_la_commune": "AMBLY FLEURY", + "code_postal": "08130", + "coordonnees_gps": [ + 49.4891172634, + 4.48932267943 + ], + "libelle_d_acheminement": "AMBLY FLEURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48932267943, + 49.4891172634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5615ca1fc42b301957728637b23baefc54a8480a", + "fields": { + "code_commune_insee": "16276", + "nom_de_la_commune": "REIGNAC", + "code_postal": "16360", + "coordonnees_gps": [ + 45.4250019229, + -0.174457411531 + ], + "libelle_d_acheminement": "REIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.174457411531, + 45.4250019229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3e608b634e78a3a342dd705f08ff713a743a34d", + "fields": { + "code_commune_insee": "08014", + "nom_de_la_commune": "ANNELLES", + "code_postal": "08310", + "coordonnees_gps": [ + 49.4316285312, + 4.41382133592 + ], + "libelle_d_acheminement": "ANNELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41382133592, + 49.4316285312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91356192c69de7c6ae47b64227836212e72dfffd", + "fields": { + "code_commune_insee": "16286", + "nom_de_la_commune": "ROUILLAC", + "code_postal": "16170", + "coordonnees_gps": [ + 45.781947293, + -0.074390136916 + ], + "libelle_d_acheminement": "ROUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.074390136916, + 45.781947293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a9cde332c9b3c6883f1453ee9ddabfa5ed1cefd", + "fields": { + "code_commune_insee": "08016", + "nom_de_la_commune": "AOUSTE", + "code_postal": "08290", + "coordonnees_gps": [ + 49.7952206071, + 4.31356214296 + ], + "libelle_d_acheminement": "AOUSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31356214296, + 49.7952206071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcada94f308f873606a9c195c275d53c86503f84", + "fields": { + "code_commune_insee": "16291", + "nom_de_la_commune": "RUELLE SUR TOUVRE", + "code_postal": "16600", + "coordonnees_gps": [ + 45.6836924747, + 0.231195852301 + ], + "libelle_d_acheminement": "RUELLE SUR TOUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.231195852301, + 45.6836924747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "660b55543c444200c5a007473acb5f8453e2e82e", + "fields": { + "code_commune_insee": "08030", + "nom_de_la_commune": "AUGE", + "code_postal": "08380", + "coordonnees_gps": [ + 49.8571900309, + 4.26843508085 + ], + "libelle_d_acheminement": "AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26843508085, + 49.8571900309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa98ed21085b1309b15417044e9c3b05d50233b4", + "fields": { + "ligne_5": "STE COLOMBE", + "code_commune_insee": "16300", + "libelle_d_acheminement": "VAL DE BONNIEURE", + "code_postal": "16230", + "nom_de_la_commune": "VAL DE BONNIEURE", + "coordonnees_gps": [ + 45.8371884276, + 0.272464077721 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.272464077721, + 45.8371884276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ac70f0384dbc5bc8ef8adf5724c8c040a9b2b47", + "fields": { + "code_commune_insee": "08033", + "nom_de_la_commune": "AUTHE", + "code_postal": "08240", + "coordonnees_gps": [ + 49.460146318, + 4.87768322282 + ], + "libelle_d_acheminement": "AUTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87768322282, + 49.460146318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2b4e51e893c5b61501f18f6f2782cb42f54f78e", + "fields": { + "code_commune_insee": "16304", + "nom_de_la_commune": "ST BRICE", + "code_postal": "16100", + "coordonnees_gps": [ + 45.6902103203, + -0.264553424103 + ], + "libelle_d_acheminement": "ST BRICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.264553424103, + 45.6902103203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "402e6d1af1638e575b668949c88fb8bb8d39dd35", + "fields": { + "code_commune_insee": "08044", + "nom_de_la_commune": "BALHAM", + "code_postal": "08190", + "coordonnees_gps": [ + 49.4914098748, + 4.15107633205 + ], + "libelle_d_acheminement": "BALHAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15107633205, + 49.4914098748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1e3dbe60202f3b96419eb85d0fc9583f9908b33", + "fields": { + "code_commune_insee": "16316", + "nom_de_la_commune": "ST FORT SUR LE NE", + "code_postal": "16130", + "coordonnees_gps": [ + 45.5831748847, + -0.303510624665 + ], + "libelle_d_acheminement": "ST FORT SUR LE NE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.303510624665, + 45.5831748847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6fef0d6c7327ad61991c37ef2679460ea6a879c", + "fields": { + "code_commune_insee": "08052", + "nom_de_la_commune": "BAYONVILLE", + "code_postal": "08240", + "coordonnees_gps": [ + 49.3964581365, + 5.01111628168 + ], + "libelle_d_acheminement": "BAYONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01111628168, + 49.3964581365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a1d2e10c06a484cfd76fb9e32c56641895ef44e", + "fields": { + "code_commune_insee": "16318", + "nom_de_la_commune": "ST FRONT", + "code_postal": "16460", + "coordonnees_gps": [ + 45.8962473577, + 0.281694716965 + ], + "libelle_d_acheminement": "ST FRONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.281694716965, + 45.8962473577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd74dc28703a053b22129b4949373e46dc1ab792", + "fields": { + "ligne_5": "VILLERS CERNAY", + "code_commune_insee": "08053", + "libelle_d_acheminement": "BAZEILLES", + "code_postal": "08140", + "nom_de_la_commune": "BAZEILLES", + "coordonnees_gps": [ + 49.6774342411, + 4.98515455089 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98515455089, + 49.6774342411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b31199a2603f99729451a158788fa16323178cd9", + "fields": { + "code_commune_insee": "16320", + "nom_de_la_commune": "ST GENIS D HIERSAC", + "code_postal": "16570", + "coordonnees_gps": [ + 45.7541273266, + 0.0365172036644 + ], + "libelle_d_acheminement": "ST GENIS D HIERSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0365172036644, + 45.7541273266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54784e39d8f4813d797e7e7a459e5ab3eebea587", + "fields": { + "code_commune_insee": "08057", + "nom_de_la_commune": "BELLEVILLE ET CHATILLON SUR BAR", + "code_postal": "08240", + "coordonnees_gps": [ + 49.4653139409, + 4.8175627334 + ], + "libelle_d_acheminement": "BELLEVILLE ET CHATILLON SUR BAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8175627334, + 49.4653139409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb2a419c358a4adde42e2625a93385e2f840a8d8", + "fields": { + "code_commune_insee": "16331", + "nom_de_la_commune": "ST LAURENT DES COMBES", + "code_postal": "16480", + "coordonnees_gps": [ + 45.3532898017, + 0.0345106941668 + ], + "libelle_d_acheminement": "ST LAURENT DES COMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0345106941668, + 45.3532898017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5117643cb17663cac5f5f7e1a887f38eb173a6f3", + "fields": { + "code_commune_insee": "08064", + "nom_de_la_commune": "BIERMES", + "code_postal": "08300", + "coordonnees_gps": [ + 49.4766763751, + 4.3845292895 + ], + "libelle_d_acheminement": "BIERMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3845292895, + 49.4766763751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e53fe8aabf15a39e17669ab778ae1a68a0e51c65", + "fields": { + "code_commune_insee": "16335", + "nom_de_la_commune": "ST MARTIN DU CLOCHER", + "code_postal": "16700", + "coordonnees_gps": [ + 46.0649581339, + 0.149662855292 + ], + "libelle_d_acheminement": "ST MARTIN DU CLOCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.149662855292, + 46.0649581339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f1f17978714592a9d3bb81856b189bd42b0997b", + "fields": { + "code_commune_insee": "08065", + "nom_de_la_commune": "BIEVRES", + "code_postal": "08370", + "coordonnees_gps": [ + 49.5573406504, + 5.27746314985 + ], + "libelle_d_acheminement": "BIEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27746314985, + 49.5573406504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b5390818a00e0759a5e205e4496c287d8dec1d3", + "fields": { + "code_commune_insee": "16338", + "nom_de_la_commune": "ST MEDARD", + "code_postal": "16300", + "coordonnees_gps": [ + 45.5085263849, + -0.134402702237 + ], + "libelle_d_acheminement": "ST MEDARD DE BARBEZIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.134402702237, + 45.5085263849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa0d1445afa3e8367b97ba3c880e24b1751fbf37", + "fields": { + "code_commune_insee": "08066", + "nom_de_la_commune": "BIGNICOURT", + "code_postal": "08310", + "coordonnees_gps": [ + 49.3901473074, + 4.42198979893 + ], + "libelle_d_acheminement": "BIGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42198979893, + 49.3901473074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e6ffa318b13f7d58525252eb2c815b71976827e", + "fields": { + "ligne_5": "BONNEVILLE", + "code_commune_insee": "16339", + "libelle_d_acheminement": "VAL D AUGE", + "code_postal": "16170", + "nom_de_la_commune": "VAL D AUGE", + "coordonnees_gps": [ + 45.8511416602, + -0.0872262855566 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0872262855566, + 45.8511416602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "906d6df7c6d5f43996de0c00407480ab929962c3", + "fields": { + "code_commune_insee": "08069", + "nom_de_la_commune": "BLANCHEFOSSE ET BAY", + "code_postal": "08290", + "coordonnees_gps": [ + 49.7665831974, + 4.25235197584 + ], + "libelle_d_acheminement": "BLANCHEFOSSE ET BAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25235197584, + 49.7665831974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d31641f9ef69ea7759eac9ee9fb43428b016b3b", + "fields": { + "code_commune_insee": "16345", + "nom_de_la_commune": "ST QUENTIN SUR CHARENTE", + "code_postal": "16150", + "coordonnees_gps": [ + 45.838055704, + 0.675525418032 + ], + "libelle_d_acheminement": "ST QUENTIN SUR CHARENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.675525418032, + 45.838055704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbabe7529f1917ae1675999eba0438b1ea39006f", + "fields": { + "code_commune_insee": "08071", + "nom_de_la_commune": "BLOMBAY", + "code_postal": "08260", + "coordonnees_gps": [ + 49.8159741255, + 4.45410147722 + ], + "libelle_d_acheminement": "BLOMBAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45410147722, + 49.8159741255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ea2353c9bb097089419cfe2b96bdd0facfb53c4", + "fields": { + "code_commune_insee": "16351", + "nom_de_la_commune": "ST SIMEUX", + "code_postal": "16120", + "coordonnees_gps": [ + 45.6340380938, + -0.0343232416979 + ], + "libelle_d_acheminement": "ST SIMEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0343232416979, + 45.6340380938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6f1e11866f87c9667ff31ab80fc82a84b650980", + "fields": { + "code_commune_insee": "08081", + "nom_de_la_commune": "BOGNY SUR MEUSE", + "code_postal": "08120", + "coordonnees_gps": [ + 49.8477354025, + 4.7508301548 + ], + "libelle_d_acheminement": "BOGNY SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7508301548, + 49.8477354025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "487983c648d54b937f0b686e9f3cff49d4ca2eb8", + "fields": { + "code_commune_insee": "16389", + "nom_de_la_commune": "TURGON", + "code_postal": "16350", + "coordonnees_gps": [ + 45.9523992009, + 0.410917379931 + ], + "libelle_d_acheminement": "TURGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.410917379931, + 45.9523992009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "857cf1ede00f36641fc3a9cba5bcfc6ea987d893", + "fields": { + "code_commune_insee": "08085", + "nom_de_la_commune": "BRIEULLES SUR BAR", + "code_postal": "08240", + "coordonnees_gps": [ + 49.481616678, + 4.86131007494 + ], + "libelle_d_acheminement": "BRIEULLES SUR BAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86131007494, + 49.481616678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2c7c679b5641cdce45a3c98cb50bf60bddb0a2e", + "fields": { + "code_commune_insee": "16390", + "nom_de_la_commune": "TUSSON", + "code_postal": "16140", + "coordonnees_gps": [ + 45.931556365, + 0.0704135702766 + ], + "libelle_d_acheminement": "TUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0704135702766, + 45.931556365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01f3d6dd5c1642e35d5f1236b504af87243e0274", + "fields": { + "code_commune_insee": "08087", + "nom_de_la_commune": "BROGNON", + "code_postal": "08380", + "coordonnees_gps": [ + 49.9327420219, + 4.28047046988 + ], + "libelle_d_acheminement": "BROGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28047046988, + 49.9327420219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7c41b5d3845819612934e1e7194b4b626853cba", + "fields": { + "code_commune_insee": "16392", + "nom_de_la_commune": "VALENCE", + "code_postal": "16460", + "coordonnees_gps": [ + 45.8823772883, + 0.317842370883 + ], + "libelle_d_acheminement": "VALENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.317842370883, + 45.8823772883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3194508a859f7e7fae3b296348b20a1a3e04da15", + "fields": { + "ligne_5": "WE", + "code_commune_insee": "08090", + "libelle_d_acheminement": "CARIGNAN", + "code_postal": "08110", + "nom_de_la_commune": "CARIGNAN", + "coordonnees_gps": [ + 49.6387329311, + 5.1718269254 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1718269254, + 49.6387329311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1950bfef2f48c9f8b1787c209130255c1a6cdb68", + "fields": { + "code_commune_insee": "16394", + "nom_de_la_commune": "VAUX LAVALETTE", + "code_postal": "16320", + "coordonnees_gps": [ + 45.4166039956, + 0.240652397324 + ], + "libelle_d_acheminement": "VAUX LAVALETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.240652397324, + 45.4166039956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cc0eb77d96051481cf921e2ebb145365ad358d5", + "fields": { + "code_commune_insee": "08097", + "nom_de_la_commune": "CHALLERANGE", + "code_postal": "08400", + "coordonnees_gps": [ + 49.3083659488, + 4.74594763415 + ], + "libelle_d_acheminement": "CHALLERANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74594763415, + 49.3083659488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "116f1899820e2d905cda20c2c5812958795b2990", + "fields": { + "code_commune_insee": "16404", + "nom_de_la_commune": "VIEUX RUFFEC", + "code_postal": "16350", + "coordonnees_gps": [ + 46.0162630355, + 0.379086474568 + ], + "libelle_d_acheminement": "VIEUX RUFFEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.379086474568, + 46.0162630355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c67a5aaf89347e7fb0a5d5aa44b87bc1e0e2f2d9", + "fields": { + "code_commune_insee": "08098", + "nom_de_la_commune": "CHAMPIGNEULLE", + "code_postal": "08250", + "coordonnees_gps": [ + 49.3514936339, + 4.9279688945 + ], + "libelle_d_acheminement": "CHAMPIGNEULLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9279688945, + 49.3514936339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e22f6d8b3e4536dc2bbca48c30669d49021a3126", + "fields": { + "code_commune_insee": "16416", + "nom_de_la_commune": "VITRAC ST VINCENT", + "code_postal": "16310", + "coordonnees_gps": [ + 45.7977956824, + 0.494903805374 + ], + "libelle_d_acheminement": "VITRAC ST VINCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.494903805374, + 45.7977956824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba65d46f92aa8d4790684e9174f49d1fb46371fd", + "fields": { + "code_commune_insee": "08111", + "nom_de_la_commune": "LE CHATELET SUR RETOURNE", + "code_postal": "08300", + "coordonnees_gps": [ + 49.4102528694, + 4.27415473111 + ], + "libelle_d_acheminement": "LE CHATELET SUR RETOURNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27415473111, + 49.4102528694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9414258533a6fc12cecb9c26caaf065da2cc3931", + "fields": { + "code_commune_insee": "16418", + "nom_de_la_commune": "VOEUIL ET GIGET", + "code_postal": "16400", + "coordonnees_gps": [ + 45.5931085464, + 0.158699054904 + ], + "libelle_d_acheminement": "VOEUIL ET GIGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.158699054904, + 45.5931085464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63e17d257f9d787a6a75d95006a3b2bdacbb9fb2", + "fields": { + "ligne_5": "LOGNY LES CHAUMONT", + "code_commune_insee": "08113", + "libelle_d_acheminement": "CHAUMONT PORCIEN", + "code_postal": "08220", + "nom_de_la_commune": "CHAUMONT PORCIEN", + "coordonnees_gps": [ + 49.6486344865, + 4.23823742678 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23823742678, + 49.6486344865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6998c481346922658b310b7d8124bc3de2f3455f", + "fields": { + "code_commune_insee": "16419", + "nom_de_la_commune": "VOUHARTE", + "code_postal": "16330", + "coordonnees_gps": [ + 45.807659891, + 0.0797642978998 + ], + "libelle_d_acheminement": "VOUHARTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0797642978998, + 45.807659891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cef7a35c0c82a7cda280f465c34f3498a9f9e81e", + "fields": { + "ligne_5": "CHEHERY", + "code_commune_insee": "08115", + "libelle_d_acheminement": "CHEMERY CHEHERY", + "code_postal": "08350", + "nom_de_la_commune": "CHEMERY CHEHERY", + "coordonnees_gps": [ + 49.6121866829, + 4.86796266494 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86796266494, + 49.6121866829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04ef05f0011a857dde2177f2027829591d46ea93", + "fields": { + "code_commune_insee": "16423", + "nom_de_la_commune": "XAMBES", + "code_postal": "16330", + "coordonnees_gps": [ + 45.8237702139, + 0.106210551409 + ], + "libelle_d_acheminement": "XAMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.106210551409, + 45.8237702139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87fd12f77cfb8dfc537587c34e71591d1437f685", + "fields": { + "ligne_5": "MALMY", + "code_commune_insee": "08115", + "libelle_d_acheminement": "CHEMERY CHEHERY", + "code_postal": "08450", + "nom_de_la_commune": "CHEMERY CHEHERY", + "coordonnees_gps": [ + 49.6121866829, + 4.86796266494 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86796266494, + 49.6121866829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e3a88a2fcb5df44a9294218f6883f349832be88", + "fields": { + "code_commune_insee": "16424", + "nom_de_la_commune": "YVIERS", + "code_postal": "16210", + "coordonnees_gps": [ + 45.2735939808, + -0.0246156679485 + ], + "libelle_d_acheminement": "YVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0246156679485, + 45.2735939808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fbdae53094b294e2818e65ded0cc3c253d89f58", + "fields": { + "code_commune_insee": "08119", + "nom_de_la_commune": "CHEVEUGES", + "code_postal": "08350", + "coordonnees_gps": [ + 49.6628247903, + 4.88904844255 + ], + "libelle_d_acheminement": "CHEVEUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88904844255, + 49.6628247903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fad72ea538de4c29a0820a71de6f227897f0524", + "fields": { + "code_commune_insee": "17007", + "nom_de_la_commune": "ANAIS", + "code_postal": "17540", + "coordonnees_gps": [ + 46.175505871, + -0.904331941311 + ], + "libelle_d_acheminement": "ANAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.904331941311, + 46.175505871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f91aa9c2a9cfb023e9450efea21273324911cb65", + "fields": { + "code_commune_insee": "08123", + "nom_de_la_commune": "CHUFFILLY ROCHE", + "code_postal": "08130", + "coordonnees_gps": [ + 49.4510357652, + 4.62193241864 + ], + "libelle_d_acheminement": "CHUFFILLY ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62193241864, + 49.4510357652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad08aaad7502dd9101ba91b5f34acf8b273d9a1b", + "fields": { + "code_commune_insee": "17009", + "nom_de_la_commune": "ANGLIERS", + "code_postal": "17540", + "coordonnees_gps": [ + 46.2061055614, + -0.949106581868 + ], + "libelle_d_acheminement": "ANGLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.949106581868, + 46.2061055614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bca79f57aa47b880af2fa2f81dcc4aed816179e7", + "fields": { + "code_commune_insee": "08125", + "nom_de_la_commune": "CLIRON", + "code_postal": "08090", + "coordonnees_gps": [ + 49.8088052199, + 4.6118553488 + ], + "libelle_d_acheminement": "CLIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6118553488, + 49.8088052199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecbea10ccf81469729e5586eaad77402e35c1c12", + "fields": { + "code_commune_insee": "17010", + "nom_de_la_commune": "ANGOULINS", + "code_postal": "17690", + "coordonnees_gps": [ + 46.1067042744, + -1.10617840927 + ], + "libelle_d_acheminement": "ANGOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10617840927, + 46.1067042744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ecd49efa22178915deab558c8f641edb3aa45bf", + "fields": { + "code_commune_insee": "08132", + "nom_de_la_commune": "CORNY MACHEROMENIL", + "code_postal": "08270", + "coordonnees_gps": [ + 49.5821949538, + 4.45459243485 + ], + "libelle_d_acheminement": "CORNY MACHEROMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45459243485, + 49.5821949538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f55ab04b563ff441e9ddaacab1207e50b6fb096", + "fields": { + "code_commune_insee": "17012", + "nom_de_la_commune": "ANNEZAY", + "code_postal": "17380", + "coordonnees_gps": [ + 46.010330476, + -0.69607751086 + ], + "libelle_d_acheminement": "ANNEZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.69607751086, + 46.010330476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "797884a86c1f75ee150f6de1da3e5b0b455e82e6", + "fields": { + "code_commune_insee": "08134", + "nom_de_la_commune": "COULOMMES ET MARQUENY", + "code_postal": "08130", + "coordonnees_gps": [ + 49.4295524989, + 4.57430150955 + ], + "libelle_d_acheminement": "COULOMMES ET MARQUENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57430150955, + 49.4295524989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dd16fffb1a1bd129da4300ae32461f2c84af6b6", + "fields": { + "code_commune_insee": "17013", + "nom_de_la_commune": "ANTEZANT LA CHAPELLE", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9950682393, + -0.482871743818 + ], + "libelle_d_acheminement": "ANTEZANT LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.482871743818, + 45.9950682393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68c703297e14b2baa5d2d21e2a564b5907849adc", + "fields": { + "code_commune_insee": "08135", + "nom_de_la_commune": "LA CROIX AUX BOIS", + "code_postal": "08400", + "coordonnees_gps": [ + 49.4054523521, + 4.78917859814 + ], + "libelle_d_acheminement": "LA CROIX AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78917859814, + 49.4054523521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2b2d47d9d58aabc03d9ea61ceb1cef3c864cffd", + "fields": { + "ligne_5": "CHAGNON", + "code_commune_insee": "17025", + "libelle_d_acheminement": "AUMAGNE", + "code_postal": "17770", + "nom_de_la_commune": "AUMAGNE", + "coordonnees_gps": [ + 45.880093124, + -0.411702053139 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.411702053139, + 45.880093124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5b5998ec70e89af14eba11a05b9e889b4df307d", + "fields": { + "code_commune_insee": "08140", + "nom_de_la_commune": "DOM LE MESNIL", + "code_postal": "08160", + "coordonnees_gps": [ + 49.6858585977, + 4.80997399118 + ], + "libelle_d_acheminement": "DOM LE MESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80997399118, + 49.6858585977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88e8d5f2bb21aa676cb584cc262b5fccfcf0f863", + "fields": { + "code_commune_insee": "17034", + "nom_de_la_commune": "BARZAN", + "code_postal": "17120", + "coordonnees_gps": [ + 45.531214889, + -0.867749982144 + ], + "libelle_d_acheminement": "BARZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.867749982144, + 45.531214889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f90045a8bd1a39c9158b008e9617becf5686723", + "fields": { + "code_commune_insee": "08141", + "nom_de_la_commune": "DOMMERY", + "code_postal": "08460", + "coordonnees_gps": [ + 49.6799788217, + 4.48172197244 + ], + "libelle_d_acheminement": "DOMMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48172197244, + 49.6799788217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61c4701f83d58add05959d21904cb54b42718d72", + "fields": { + "code_commune_insee": "17037", + "nom_de_la_commune": "BEAUVAIS SUR MATHA", + "code_postal": "17490", + "coordonnees_gps": [ + 45.8934079411, + -0.179132842333 + ], + "libelle_d_acheminement": "BEAUVAIS SUR MATHA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.179132842333, + 45.8934079411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b45c1d227bec92e68a2b0aebffc54e1e5840afff", + "fields": { + "code_commune_insee": "08147", + "nom_de_la_commune": "DRICOURT", + "code_postal": "08310", + "coordonnees_gps": [ + 49.3935675536, + 4.51560795965 + ], + "libelle_d_acheminement": "DRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51560795965, + 49.3935675536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fe6a7a9e6d9b01c5c1bee9deecb1641462979be", + "fields": { + "code_commune_insee": "17039", + "nom_de_la_commune": "BELLUIRE", + "code_postal": "17800", + "coordonnees_gps": [ + 45.5301565729, + -0.55598529375 + ], + "libelle_d_acheminement": "BELLUIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.55598529375, + 45.5301565729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "685f9aa3eccd1884f087b64d521915566f2d7510", + "fields": { + "code_commune_insee": "08153", + "nom_de_la_commune": "ESCOMBRES ET LE CHESNOIS", + "code_postal": "08110", + "coordonnees_gps": [ + 49.697280399, + 5.12609721908 + ], + "libelle_d_acheminement": "ESCOMBRES ET LE CHESNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12609721908, + 49.697280399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0defac4e438503533a8893c8a9709b8ba260405d", + "fields": { + "code_commune_insee": "17042", + "nom_de_la_commune": "BERCLOUX", + "code_postal": "17770", + "coordonnees_gps": [ + 45.8393523202, + -0.459046739442 + ], + "libelle_d_acheminement": "BERCLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.459046739442, + 45.8393523202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5a463bb668c02b21196f401cc698011acd03bb0", + "fields": { + "code_commune_insee": "08165", + "nom_de_la_commune": "FAUX", + "code_postal": "08270", + "coordonnees_gps": [ + 49.5369829788, + 4.50393939951 + ], + "libelle_d_acheminement": "FAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50393939951, + 49.5369829788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b2cfa76c82f4b8cd5c1250622cec21a1cce7cfd", + "fields": { + "code_commune_insee": "17043", + "nom_de_la_commune": "BERNAY ST MARTIN", + "code_postal": "17330", + "coordonnees_gps": [ + 46.0666811311, + -0.625648729603 + ], + "libelle_d_acheminement": "BERNAY ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.625648729603, + 46.0666811311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f37c1d9cd1a95e5d87bfde57bfb366cb3655a1c0", + "fields": { + "code_commune_insee": "08171", + "nom_de_la_commune": "FLEVILLE", + "code_postal": "08250", + "coordonnees_gps": [ + 49.3088637287, + 4.98128015071 + ], + "libelle_d_acheminement": "FLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98128015071, + 49.3088637287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4db99c4fc174c604a38e83778923524c3752f505", + "fields": { + "ligne_5": "ST MARTIN DE LA COUDRE", + "code_commune_insee": "17043", + "libelle_d_acheminement": "BERNAY ST MARTIN", + "code_postal": "17330", + "nom_de_la_commune": "BERNAY ST MARTIN", + "coordonnees_gps": [ + 46.0666811311, + -0.625648729603 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.625648729603, + 46.0666811311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b97e4015db0ee7bd2510195c65b653c76b8f1d24", + "fields": { + "code_commune_insee": "08180", + "nom_de_la_commune": "LA FRANCHEVILLE", + "code_postal": "08000", + "coordonnees_gps": [ + 49.7255789105, + 4.70732068022 + ], + "libelle_d_acheminement": "LA FRANCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70732068022, + 49.7255789105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8782065ca45bcedb7ef858b7a777cdf3e6020a1b", + "fields": { + "code_commune_insee": "17063", + "nom_de_la_commune": "BREUIL LA REORTE", + "code_postal": "17700", + "coordonnees_gps": [ + 46.0634336642, + -0.695728258066 + ], + "libelle_d_acheminement": "BREUIL LA REORTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.695728258066, + 46.0634336642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef541da23cc7aa8fb41ec3b34d981b2ecca7fd15", + "fields": { + "code_commune_insee": "08186", + "nom_de_la_commune": "GERMONT", + "code_postal": "08240", + "coordonnees_gps": [ + 49.432933415, + 4.87916676236 + ], + "libelle_d_acheminement": "GERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87916676236, + 49.432933415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2baf8b08d03ca2227e695243e7dd71c5f1e1bc9", + "fields": { + "code_commune_insee": "17067", + "nom_de_la_commune": "BRIE SOUS MATHA", + "code_postal": "17160", + "coordonnees_gps": [ + 45.8171155217, + -0.253480989934 + ], + "libelle_d_acheminement": "BRIE SOUS MATHA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.253480989934, + 45.8171155217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e685ab863bfa9cccfac9febfaf6b7fe33f5b7e2", + "fields": { + "code_commune_insee": "08188", + "nom_de_la_commune": "GESPUNSART", + "code_postal": "08700", + "coordonnees_gps": [ + 49.8176588618, + 4.84437565328 + ], + "libelle_d_acheminement": "GESPUNSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84437565328, + 49.8176588618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "837b98fdd18646d62c1730e55bc138e63b363c6a", + "fields": { + "code_commune_insee": "17074", + "nom_de_la_commune": "BUSSAC FORET", + "code_postal": "17210", + "coordonnees_gps": [ + 45.2021566078, + -0.378592509253 + ], + "libelle_d_acheminement": "BUSSAC FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.378592509253, + 45.2021566078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1da3762f4d351c056d617034bc88692ff7588f0", + "fields": { + "code_commune_insee": "08194", + "nom_de_la_commune": "GLAIRE", + "code_postal": "08200", + "coordonnees_gps": [ + 49.7168781678, + 4.9057121108 + ], + "libelle_d_acheminement": "GLAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9057121108, + 49.7168781678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92ec01539d4c67f3ab555b3e7dd2b73bab7e209b", + "fields": { + "code_commune_insee": "17092", + "nom_de_la_commune": "CHARTUZAC", + "code_postal": "17130", + "coordonnees_gps": [ + 45.3371917387, + -0.416732007642 + ], + "libelle_d_acheminement": "CHARTUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.416732007642, + 45.3371917387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32fd2313aa61a7de2456fd1b5181b78897e62eaa", + "fields": { + "code_commune_insee": "08201", + "nom_de_la_commune": "GRUYERES", + "code_postal": "08430", + "coordonnees_gps": [ + 49.7096886364, + 4.60418894057 + ], + "libelle_d_acheminement": "GRUYERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60418894057, + 49.7096886364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a88d5895f6c7f43e34fb3ff55133d3d4048be17", + "fields": { + "code_commune_insee": "17097", + "nom_de_la_commune": "LE CHAY", + "code_postal": "17600", + "coordonnees_gps": [ + 45.6408933917, + -0.902258961295 + ], + "libelle_d_acheminement": "LE CHAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.902258961295, + 45.6408933917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3af3b37ca2eb71ea31b74c3d9947b86d3db9aa4", + "fields": { + "code_commune_insee": "08202", + "nom_de_la_commune": "GUE D HOSSUS", + "code_postal": "08230", + "coordonnees_gps": [ + 49.9534600751, + 4.53901296551 + ], + "libelle_d_acheminement": "GUE D HOSSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53901296551, + 49.9534600751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b569c2773740e34d218a49d150888f8ac1a8adb", + "fields": { + "code_commune_insee": "17100", + "nom_de_la_commune": "CHERAC", + "code_postal": "17610", + "coordonnees_gps": [ + 45.7130812452, + -0.446891176255 + ], + "libelle_d_acheminement": "CHERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.446891176255, + 45.7130812452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a7264debd8f67e9692f57776233d433a815addf", + "fields": { + "code_commune_insee": "08208", + "nom_de_la_commune": "HANNAPPES", + "code_postal": "08290", + "coordonnees_gps": [ + 49.8168662674, + 4.23446602627 + ], + "libelle_d_acheminement": "HANNAPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23446602627, + 49.8168662674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcb49e15afe32ca4a694dd30511cf1861a8b7db8", + "fields": { + "code_commune_insee": "17110", + "nom_de_la_commune": "CLERAC", + "code_postal": "17270", + "coordonnees_gps": [ + 45.170720294, + -0.234166115218 + ], + "libelle_d_acheminement": "CLERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.234166115218, + 45.170720294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d91acef71f943a462a760b0dfef5fe4134b21fe2", + "fields": { + "code_commune_insee": "08222", + "nom_de_la_commune": "HAYBES", + "code_postal": "08170", + "coordonnees_gps": [ + 49.9928060436, + 4.73512767453 + ], + "libelle_d_acheminement": "HAYBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73512767453, + 49.9928060436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "188f1f1f9a1cad5a32f1d20fd040c236a5885070", + "fields": { + "code_commune_insee": "17129", + "nom_de_la_commune": "COURPIGNAC", + "code_postal": "17130", + "coordonnees_gps": [ + 45.3142239112, + -0.50021379321 + ], + "libelle_d_acheminement": "COURPIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.50021379321, + 45.3142239112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8d4f3dc46b9956afad26acf8219250948ca9524", + "fields": { + "code_commune_insee": "08226", + "nom_de_la_commune": "HIERGES", + "code_postal": "08320", + "coordonnees_gps": [ + 50.0988093717, + 4.73380069028 + ], + "libelle_d_acheminement": "HIERGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73380069028, + 50.0988093717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8ec5ba96ebb821928b42dbdd5e40bb8d362f79e", + "fields": { + "code_commune_insee": "17133", + "nom_de_la_commune": "CRAVANS", + "code_postal": "17260", + "coordonnees_gps": [ + 45.5951968202, + -0.714548761582 + ], + "libelle_d_acheminement": "CRAVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.714548761582, + 45.5951968202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0fef00b596b72dc218b7036838dc9f285c76732", + "fields": { + "code_commune_insee": "08240", + "nom_de_la_commune": "JUSTINE HERBIGNY", + "code_postal": "08270", + "coordonnees_gps": [ + 49.6051538292, + 4.32575291795 + ], + "libelle_d_acheminement": "JUSTINE HERBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32575291795, + 49.6051538292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49baf45eadef31e92f56dca7d35402ef0b979bfd", + "fields": { + "code_commune_insee": "17140", + "nom_de_la_commune": "DOLUS D OLERON", + "code_postal": "17550", + "coordonnees_gps": [ + 45.9096185439, + -1.25750953748 + ], + "libelle_d_acheminement": "DOLUS D OLERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25750953748, + 45.9096185439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5fe780f92800a6adf7a6adfe2e88ec649d00aa4", + "fields": { + "code_commune_insee": "08244", + "nom_de_la_commune": "LAMETZ", + "code_postal": "08130", + "coordonnees_gps": [ + 49.5265430662, + 4.68902629394 + ], + "libelle_d_acheminement": "LAMETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68902629394, + 49.5265430662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cde625483ce1c565621dafebc34020e01550ebc2", + "fields": { + "code_commune_insee": "17148", + "nom_de_la_commune": "ECURAT", + "code_postal": "17810", + "coordonnees_gps": [ + 45.7939911304, + -0.694780604398 + ], + "libelle_d_acheminement": "ECURAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.694780604398, + 45.7939911304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5e80eae7aad2b9eb39b3718a82f2ed30e107847", + "fields": { + "code_commune_insee": "08246", + "nom_de_la_commune": "LANDRES ET ST GEORGES", + "code_postal": "08240", + "coordonnees_gps": [ + 49.3522247331, + 5.01297002283 + ], + "libelle_d_acheminement": "LANDRES ET ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01297002283, + 49.3522247331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77e254cb917c9db7c09cc29f7d7a7617e3cb992a", + "fields": { + "code_commune_insee": "17150", + "nom_de_la_commune": "LES EGLISES D ARGENTEUIL", + "code_postal": "17400", + "coordonnees_gps": [ + 45.978753015, + -0.424376314206 + ], + "libelle_d_acheminement": "LES EGLISES D ARGENTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.424376314206, + 45.978753015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a99eb0f0aa1c9adc77c1cc408e3d527d026e606", + "fields": { + "code_commune_insee": "08274", + "nom_de_la_commune": "MARCQ", + "code_postal": "08250", + "coordonnees_gps": [ + 49.3140144117, + 4.91977304358 + ], + "libelle_d_acheminement": "MARCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91977304358, + 49.3140144117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52dd902c3a2152e2dc09bb9a4b316e6064b0256d", + "fields": { + "code_commune_insee": "17154", + "nom_de_la_commune": "LES ESSARDS", + "code_postal": "17250", + "coordonnees_gps": [ + 45.7949558042, + -0.770156195099 + ], + "libelle_d_acheminement": "LES ESSARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.770156195099, + 45.7949558042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "260ba88b935c5cad990dc9c3f7bf7868f8c8f851", + "fields": { + "code_commune_insee": "08275", + "nom_de_la_commune": "MARGNY", + "code_postal": "08370", + "coordonnees_gps": [ + 49.6171394298, + 5.36137071894 + ], + "libelle_d_acheminement": "MARGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36137071894, + 49.6171394298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8b79546c6d44f0244d409d174e67f75ceb40292", + "fields": { + "code_commune_insee": "17167", + "nom_de_la_commune": "LE FOUILLOUX", + "code_postal": "17270", + "coordonnees_gps": [ + 45.2054910873, + -0.125754357032 + ], + "libelle_d_acheminement": "LE FOUILLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.125754357032, + 45.2054910873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a288590a63b2a3f78801309831aebf744c8a9b91", + "fields": { + "code_commune_insee": "08278", + "nom_de_la_commune": "MARQUIGNY", + "code_postal": "08390", + "coordonnees_gps": [ + 49.5485160355, + 4.70534618848 + ], + "libelle_d_acheminement": "MARQUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70534618848, + 49.5485160355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1f018e97b2fde13cdc3f89252207ee8c7bf34c8", + "fields": { + "code_commune_insee": "17174", + "nom_de_la_commune": "GENOUILLE", + "code_postal": "17430", + "coordonnees_gps": [ + 46.0190321633, + -0.782334091478 + ], + "libelle_d_acheminement": "GENOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.782334091478, + 46.0190321633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "640d885c865368168fb0625eb7515387e473f11b", + "fields": { + "code_commune_insee": "08280", + "nom_de_la_commune": "MARVAUX VIEUX", + "code_postal": "08400", + "coordonnees_gps": [ + 49.2876432373, + 4.69052619792 + ], + "libelle_d_acheminement": "MARVAUX VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69052619792, + 49.2876432373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b17a0c6b724e46540fb01bc209a7cd356a1d6dd", + "fields": { + "code_commune_insee": "17177", + "nom_de_la_commune": "LE GICQ", + "code_postal": "17160", + "coordonnees_gps": [ + 45.9355569039, + -0.250780805223 + ], + "libelle_d_acheminement": "LE GICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.250780805223, + 45.9355569039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2f3b8ceac2ef3be3b325e8cdc0b7a18ddb4414a", + "fields": { + "code_commune_insee": "08282", + "nom_de_la_commune": "MAUBERT FONTAINE", + "code_postal": "08260", + "coordonnees_gps": [ + 49.8821419517, + 4.43262736768 + ], + "libelle_d_acheminement": "MAUBERT FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43262736768, + 49.8821419517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40f567b4789b8f0c580ab1487f4bace4b780909c", + "fields": { + "code_commune_insee": "17192", + "nom_de_la_commune": "JARNAC CHAMPAGNE", + "code_postal": "17520", + "coordonnees_gps": [ + 45.5533573947, + -0.405979459811 + ], + "libelle_d_acheminement": "JARNAC CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.405979459811, + 45.5533573947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "540296777c56a3e29ee911c8f828784ded4f2854", + "fields": { + "code_commune_insee": "08295", + "nom_de_la_commune": "MONDIGNY", + "code_postal": "08430", + "coordonnees_gps": [ + 49.7118483439, + 4.63666533431 + ], + "libelle_d_acheminement": "MONDIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63666533431, + 49.7118483439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d90484754139d4377cccdd6191209f9a3d473f23", + "fields": { + "code_commune_insee": "17198", + "nom_de_la_commune": "JUICQ", + "code_postal": "17770", + "coordonnees_gps": [ + 45.8399129453, + -0.577046782244 + ], + "libelle_d_acheminement": "JUICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.577046782244, + 45.8399129453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26365b232ac97c94ff9468941256b68ff57d2104", + "fields": { + "code_commune_insee": "08301", + "nom_de_la_commune": "MONTGON", + "code_postal": "08390", + "coordonnees_gps": [ + 49.5124383754, + 4.71891434142 + ], + "libelle_d_acheminement": "MONTGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71891434142, + 49.5124383754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe3a060471e29277a2c8386404560170afdd0081", + "fields": { + "code_commune_insee": "17200", + "nom_de_la_commune": "LAGORD", + "code_postal": "17140", + "coordonnees_gps": [ + 46.1865247974, + -1.15219925305 + ], + "libelle_d_acheminement": "LAGORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15219925305, + 46.1865247974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc34107e50e3b4a81ab94ebd11bc66837070bbcf", + "fields": { + "code_commune_insee": "08303", + "nom_de_la_commune": "MONTHOIS", + "code_postal": "08400", + "coordonnees_gps": [ + 49.3091411656, + 4.70416534611 + ], + "libelle_d_acheminement": "MONTHOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70416534611, + 49.3091411656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a761cd8195bcd723374134841ec57b9b59a52db2", + "fields": { + "code_commune_insee": "17211", + "nom_de_la_commune": "LOULAY", + "code_postal": "17330", + "coordonnees_gps": [ + 46.0441648862, + -0.513759292382 + ], + "libelle_d_acheminement": "LOULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.513759292382, + 46.0441648862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c4668ded467b22969bf94791aa7a8801ccd337c", + "fields": { + "ligne_5": "AMBLIMONT", + "code_commune_insee": "08311", + "libelle_d_acheminement": "MOUZON", + "code_postal": "08210", + "nom_de_la_commune": "MOUZON", + "coordonnees_gps": [ + 49.5898672379, + 5.07669736879 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07669736879, + 49.5898672379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab2544f2a28ea1e118de45cc3bbab8f52aa1e2cd", + "fields": { + "code_commune_insee": "17212", + "nom_de_la_commune": "LOUZIGNAC", + "code_postal": "17160", + "coordonnees_gps": [ + 45.8315187866, + -0.228314120891 + ], + "libelle_d_acheminement": "LOUZIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.228314120891, + 45.8315187866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c4dbc3d46f90e6661a481bcf8443e097f142e9e", + "fields": { + "code_commune_insee": "08312", + "nom_de_la_commune": "MURTIN ET BOGNY", + "code_postal": "08150", + "coordonnees_gps": [ + 49.8101486815, + 4.53946924815 + ], + "libelle_d_acheminement": "MURTIN ET BOGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53946924815, + 49.8101486815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff7ce4cbb567aa46a429a2e8a3a43fee99fc7e43", + "fields": { + "code_commune_insee": "17213", + "nom_de_la_commune": "LOZAY", + "code_postal": "17330", + "coordonnees_gps": [ + 46.0435885992, + -0.543351399248 + ], + "libelle_d_acheminement": "LOZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.543351399248, + 46.0435885992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16f43012d2027b494eeff066336a032b0ea7632f", + "fields": { + "code_commune_insee": "08313", + "nom_de_la_commune": "NANTEUIL SUR AISNE", + "code_postal": "08300", + "coordonnees_gps": [ + 49.5032675297, + 4.29634828525 + ], + "libelle_d_acheminement": "NANTEUIL SUR AISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29634828525, + 49.5032675297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79acc34c2c7ca27cb89ad9391abd8dbca134d2b8", + "fields": { + "code_commune_insee": "17224", + "nom_de_la_commune": "MATHA", + "code_postal": "17160", + "coordonnees_gps": [ + 45.8637317103, + -0.314996278369 + ], + "libelle_d_acheminement": "MATHA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.314996278369, + 45.8637317103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db35fa2ff91e4a81c1542ba8d1588e395671b28e", + "fields": { + "code_commune_insee": "08314", + "nom_de_la_commune": "NEUFLIZE", + "code_postal": "08300", + "coordonnees_gps": [ + 49.4065310007, + 4.31198213958 + ], + "libelle_d_acheminement": "NEUFLIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31198213958, + 49.4065310007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3236939c3479b64e9f2520983a1c1e4bdd504ad", + "fields": { + "code_commune_insee": "17232", + "nom_de_la_commune": "MEURSAC", + "code_postal": "17120", + "coordonnees_gps": [ + 45.6523583243, + -0.82013449004 + ], + "libelle_d_acheminement": "MEURSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82013449004, + 45.6523583243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8e94e05dda0949cc7c5b986b4f89b703126495b", + "fields": { + "code_commune_insee": "08324", + "nom_de_la_commune": "NEUVIZY", + "code_postal": "08430", + "coordonnees_gps": [ + 49.626891276, + 4.53916344302 + ], + "libelle_d_acheminement": "NEUVIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53916344302, + 49.626891276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f86482aed55cde988fabaa72933087c933f9be15", + "fields": { + "code_commune_insee": "17233", + "nom_de_la_commune": "MEUX", + "code_postal": "17500", + "coordonnees_gps": [ + 45.44359095, + -0.355376176711 + ], + "libelle_d_acheminement": "MEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.355376176711, + 45.44359095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37c31976d8728a311c50726ed1a013ab184cfc7f", + "fields": { + "ligne_5": "MEILLIER FONTAINE", + "code_commune_insee": "08328", + "libelle_d_acheminement": "NOUZONVILLE", + "code_postal": "08700", + "nom_de_la_commune": "NOUZONVILLE", + "coordonnees_gps": [ + 49.819774473, + 4.75390800409 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75390800409, + 49.819774473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "811dbe522f02a3e64d0e435aaba64994e7d655b7", + "fields": { + "code_commune_insee": "17248", + "nom_de_la_commune": "MORTAGNE SUR GIRONDE", + "code_postal": "17120", + "coordonnees_gps": [ + 45.4982547943, + -0.777581892089 + ], + "libelle_d_acheminement": "MORTAGNE SUR GIRONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.777581892089, + 45.4982547943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6d847b1f3ba74c9eddcd81c1cfcf0c7512927ee", + "fields": { + "code_commune_insee": "08341", + "nom_de_la_commune": "POIX TERRON", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6441162488, + 4.65261121158 + ], + "libelle_d_acheminement": "POIX TERRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65261121158, + 49.6441162488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b713514fba7fd692072721553b766406e1687a9", + "fields": { + "code_commune_insee": "17255", + "nom_de_la_commune": "NANCRAS", + "code_postal": "17600", + "coordonnees_gps": [ + 45.7474799691, + -0.875438147918 + ], + "libelle_d_acheminement": "NANCRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.875438147918, + 45.7474799691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fc851b2c11fe8cb22a550586b2005d5918d75d3", + "fields": { + "code_commune_insee": "08344", + "nom_de_la_commune": "PREZ", + "code_postal": "08290", + "coordonnees_gps": [ + 49.8014597717, + 4.36121089611 + ], + "libelle_d_acheminement": "PREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36121089611, + 49.8014597717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "596f6f6cb0be56750c4f43ace768b032d47f5320", + "fields": { + "code_commune_insee": "17258", + "nom_de_la_commune": "NEUILLAC", + "code_postal": "17520", + "coordonnees_gps": [ + 45.5147014586, + -0.399573394694 + ], + "libelle_d_acheminement": "NEUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.399573394694, + 45.5147014586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c939547de3c37f238f65127472dd4621cadc546", + "fields": { + "code_commune_insee": "08348", + "nom_de_la_commune": "PUISEUX", + "code_postal": "08270", + "coordonnees_gps": [ + 49.5944900597, + 4.53674361589 + ], + "libelle_d_acheminement": "PUISEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53674361589, + 49.5944900597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50f79939e12e8d510f041337b391f052d2eff2fc", + "fields": { + "code_commune_insee": "17261", + "nom_de_la_commune": "NEUVICQ LE CHATEAU", + "code_postal": "17490", + "coordonnees_gps": [ + 45.8124380764, + -0.160919990251 + ], + "libelle_d_acheminement": "NEUVICQ LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.160919990251, + 45.8124380764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afb33685682965352d7c94c69dab430e60ea0352", + "fields": { + "code_commune_insee": "08350", + "nom_de_la_commune": "QUATRE CHAMPS", + "code_postal": "08400", + "coordonnees_gps": [ + 49.4459378032, + 4.77673410789 + ], + "libelle_d_acheminement": "QUATRE CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77673410789, + 49.4459378032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "824f1e34d5f77bd0563b73249cb57632a02bd905", + "fields": { + "code_commune_insee": "17267", + "nom_de_la_commune": "NUAILLE D AUNIS", + "code_postal": "17540", + "coordonnees_gps": [ + 46.2376314923, + -0.92874328241 + ], + "libelle_d_acheminement": "NUAILLE D AUNIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.92874328241, + 46.2376314923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc75c0035446472707f21f9d32408464f4c6a52c", + "fields": { + "code_commune_insee": "08351", + "nom_de_la_commune": "QUILLY", + "code_postal": "08400", + "coordonnees_gps": [ + 49.4054549894, + 4.58222403304 + ], + "libelle_d_acheminement": "QUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58222403304, + 49.4054549894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a4fe4d08655b2f8d6165917e2d3eb479a208c59", + "fields": { + "code_commune_insee": "17270", + "nom_de_la_commune": "OZILLAC", + "code_postal": "17500", + "coordonnees_gps": [ + 45.4075198729, + -0.402895489298 + ], + "libelle_d_acheminement": "OZILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.402895489298, + 45.4075198729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb89d0d5e1ca8a91fe78b8505172981d9e1823eb", + "fields": { + "code_commune_insee": "08355", + "nom_de_la_commune": "REGNIOWEZ", + "code_postal": "08230", + "coordonnees_gps": [ + 49.9257731775, + 4.41489817556 + ], + "libelle_d_acheminement": "REGNIOWEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41489817556, + 49.9257731775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a86084d52a0b2ad80a1e0cb0cd173ea8fbf21b7", + "fields": { + "code_commune_insee": "17273", + "nom_de_la_commune": "PERIGNAC", + "code_postal": "17800", + "coordonnees_gps": [ + 45.6367129971, + -0.459608407894 + ], + "libelle_d_acheminement": "PERIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.459608407894, + 45.6367129971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2380df7c66e2f10e05d93a5bcfd4402f8272e028", + "fields": { + "code_commune_insee": "08357", + "nom_de_la_commune": "REMILLY AILLICOURT", + "code_postal": "08450", + "coordonnees_gps": [ + 49.6485856467, + 4.99371291541 + ], + "libelle_d_acheminement": "REMILLY AILLICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99371291541, + 49.6485856467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "157d4453ad10c4e8589a96e5548130458b691c62", + "fields": { + "ligne_5": "LA BENATE", + "code_commune_insee": "17277", + "libelle_d_acheminement": "ESSOUVERT", + "code_postal": "17400", + "nom_de_la_commune": "ESSOUVERT", + "coordonnees_gps": [ + 45.9951682951, + -0.52001872758 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.52001872758, + 45.9951682951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eca1924d80a42576f4db90123c19af17552f22f", + "fields": { + "code_commune_insee": "08360", + "nom_de_la_commune": "RENNEVILLE", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6508149655, + 4.13569086647 + ], + "libelle_d_acheminement": "RENNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13569086647, + 49.6508149655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3e7c499b1b899d263cfa11f20526671318677e5", + "fields": { + "code_commune_insee": "17278", + "nom_de_la_commune": "PISANY", + "code_postal": "17600", + "coordonnees_gps": [ + 45.7047969225, + -0.794411464518 + ], + "libelle_d_acheminement": "PISANY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.794411464518, + 45.7047969225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd749b9347f6f7933fe29d8b7f033814f752aa18", + "fields": { + "ligne_5": "PARGNY RESSON", + "code_commune_insee": "08362", + "libelle_d_acheminement": "RETHEL", + "code_postal": "08300", + "nom_de_la_commune": "RETHEL", + "coordonnees_gps": [ + 49.5131807048, + 4.3835241644 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3835241644, + 49.5131807048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee36a44daef094af22168c8e8a2a46b53a8df179", + "fields": { + "code_commune_insee": "17279", + "nom_de_la_commune": "PLASSAC", + "code_postal": "17240", + "coordonnees_gps": [ + 45.4510770094, + -0.578865597012 + ], + "libelle_d_acheminement": "PLASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.578865597012, + 45.4510770094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1405d1badd74362a1a6c427b9af153b132d8e43a", + "fields": { + "code_commune_insee": "08369", + "nom_de_la_commune": "LA ROMAGNE", + "code_postal": "08220", + "coordonnees_gps": [ + 49.6844748534, + 4.30631629815 + ], + "libelle_d_acheminement": "LA ROMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30631629815, + 49.6844748534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3f56b09b890304828ebb65ffefe52589a26beae", + "fields": { + "code_commune_insee": "17288", + "nom_de_la_commune": "POURSAY GARNAUD", + "code_postal": "17400", + "coordonnees_gps": [ + 45.949447685, + -0.452458051451 + ], + "libelle_d_acheminement": "POURSAY GARNAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.452458051451, + 45.949447685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf0d326fe79e1651af829bbe94118633d657de83", + "fields": { + "code_commune_insee": "08370", + "nom_de_la_commune": "ROUVROY SUR AUDRY", + "code_postal": "08150", + "coordonnees_gps": [ + 49.7853360056, + 4.50242620208 + ], + "libelle_d_acheminement": "ROUVROY SUR AUDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50242620208, + 49.7853360056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4b7cf747d808cdc17ed50446f297f99d22de0cd", + "fields": { + "ligne_5": "ST MAURICE DE TAVERNOLE", + "code_commune_insee": "17295", + "libelle_d_acheminement": "REAUX SUR TREFLE", + "code_postal": "17500", + "nom_de_la_commune": "REAUX SUR TREFLE", + "coordonnees_gps": [ + 45.4656327459, + -0.380359644815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.380359644815, + 45.4656327459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b674840f075558a0a681ad47480adc22e7c6fb0", + "fields": { + "code_commune_insee": "08374", + "nom_de_la_commune": "LA SABOTTERIE", + "code_postal": "08130", + "coordonnees_gps": [ + 49.5447543677, + 4.66996190814 + ], + "libelle_d_acheminement": "LA SABOTTERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66996190814, + 49.5447543677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b2c4292e0cb683177063db45b2fa0386a372cea", + "fields": { + "code_commune_insee": "17299", + "nom_de_la_commune": "ROCHEFORT", + "code_postal": "17300", + "coordonnees_gps": [ + 45.9432344536, + -0.972356445692 + ], + "libelle_d_acheminement": "ROCHEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.972356445692, + 45.9432344536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b00796c065670de5e1e77477748d3a10f43160f6", + "fields": { + "ligne_5": "CHAUDION", + "code_commune_insee": "08380", + "libelle_d_acheminement": "ST FERGEUX", + "code_postal": "08360", + "nom_de_la_commune": "ST FERGEUX", + "coordonnees_gps": [ + 49.5733658942, + 4.20117468938 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20117468938, + 49.5733658942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2f89fb5cce05a3b9b91b80859faea623167f6e7", + "fields": { + "code_commune_insee": "17306", + "nom_de_la_commune": "ROYAN", + "code_postal": "17200", + "coordonnees_gps": [ + 45.6346574238, + -1.01791403375 + ], + "libelle_d_acheminement": "ROYAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01791403375, + 45.6346574238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a059b8709561dc5e1b84775bf2625999cf8f7a75", + "fields": { + "code_commune_insee": "08390", + "nom_de_la_commune": "STE MARIE", + "code_postal": "08400", + "coordonnees_gps": [ + 49.3713339748, + 4.67168297398 + ], + "libelle_d_acheminement": "STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67168297398, + 49.3713339748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8f015c7fd90c2157bdba3f39e5979c56b607c02", + "fields": { + "code_commune_insee": "17311", + "nom_de_la_commune": "ST AUGUSTIN", + "code_postal": "17570", + "coordonnees_gps": [ + 45.6859547185, + -1.10616889515 + ], + "libelle_d_acheminement": "ST AUGUSTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10616889515, + 45.6859547185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a336a55aff59b68a2cc39eb2af62240ac76d3bf", + "fields": { + "code_commune_insee": "08393", + "nom_de_la_commune": "ST PIERRE A ARNES", + "code_postal": "08310", + "coordonnees_gps": [ + 49.2962803328, + 4.46414717799 + ], + "libelle_d_acheminement": "ST PIERRE A ARNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46414717799, + 49.2962803328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff2fd0cfd8c446079b160a7e1d03adb64ab5e756", + "fields": { + "code_commune_insee": "17314", + "nom_de_la_commune": "ST CESAIRE", + "code_postal": "17770", + "coordonnees_gps": [ + 45.7554033226, + -0.490821600158 + ], + "libelle_d_acheminement": "ST CESAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.490821600158, + 45.7554033226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f10337f0b50188ebbbee5d010e609ce6add5bfc", + "fields": { + "code_commune_insee": "08397", + "nom_de_la_commune": "ST REMY LE PETIT", + "code_postal": "08300", + "coordonnees_gps": [ + 49.399507719, + 4.23173978008 + ], + "libelle_d_acheminement": "ST REMY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23173978008, + 49.399507719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bc8aab81a8c7b57e7a88ad756b89e921bc26631", + "fields": { + "code_commune_insee": "17321", + "nom_de_la_commune": "ST CREPIN", + "code_postal": "17380", + "coordonnees_gps": [ + 45.9970417081, + -0.740341875161 + ], + "libelle_d_acheminement": "ST CREPIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.740341875161, + 45.9970417081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ae1336e4c362f34a01f78bf2455ce9266dc4abe", + "fields": { + "code_commune_insee": "08401", + "nom_de_la_commune": "SAULCES CHAMPENOISES", + "code_postal": "08130", + "coordonnees_gps": [ + 49.4466612892, + 4.50417073987 + ], + "libelle_d_acheminement": "SAULCES CHAMPENOISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50417073987, + 49.4466612892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54ce02a1a0424a0d9d3bf7bcf75c7e0eb00501bc", + "fields": { + "code_commune_insee": "17327", + "nom_de_la_commune": "ST FELIX", + "code_postal": "17330", + "coordonnees_gps": [ + 46.0937313231, + -0.603804881739 + ], + "libelle_d_acheminement": "ST FELIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.603804881739, + 46.0937313231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae31f9ca9a15364cdcb3ed3c0300a9513f661e6a", + "fields": { + "code_commune_insee": "08402", + "nom_de_la_commune": "SAULCES MONCLIN", + "code_postal": "08270", + "coordonnees_gps": [ + 49.5762159457, + 4.50750212768 + ], + "libelle_d_acheminement": "SAULCES MONCLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50750212768, + 49.5762159457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45aa3b601b062f49076ae66ea9a7af52570f2cd7", + "fields": { + "code_commune_insee": "17330", + "nom_de_la_commune": "STE GEMME", + "code_postal": "17250", + "coordonnees_gps": [ + 45.7749267656, + -0.892730905107 + ], + "libelle_d_acheminement": "STE GEMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.892730905107, + 45.7749267656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0573c4bf731947da0d962b561a6bb985815fb48", + "fields": { + "ligne_5": "FOREST", + "code_commune_insee": "08413", + "libelle_d_acheminement": "SERAINCOURT", + "code_postal": "08220", + "nom_de_la_commune": "SERAINCOURT", + "coordonnees_gps": [ + 49.6220794201, + 4.18799249278 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18799249278, + 49.6220794201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac08158b50d27da2353af68dee9865bd819d104a", + "fields": { + "code_commune_insee": "17332", + "nom_de_la_commune": "ST GEORGES ANTIGNAC", + "code_postal": "17240", + "coordonnees_gps": [ + 45.4918057493, + -0.482750821829 + ], + "libelle_d_acheminement": "ST GEORGES ANTIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.482750821829, + 45.4918057493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7faebd34208c72d046b968c30fe2dede02aedf36", + "fields": { + "code_commune_insee": "08421", + "nom_de_la_commune": "SIGNY MONTLIBERT", + "code_postal": "08370", + "coordonnees_gps": [ + 49.5783230756, + 5.3108582465 + ], + "libelle_d_acheminement": "SIGNY MONTLIBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3108582465, + 49.5783230756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fd61ddf4b88d2ce5423ce4b15d2e5b021f7d607", + "fields": { + "ligne_5": "SAUZELLE", + "code_commune_insee": "17337", + "libelle_d_acheminement": "ST GEORGES D OLERON", + "code_postal": "17190", + "nom_de_la_commune": "ST GEORGES D OLERON", + "coordonnees_gps": [ + 45.9762465553, + -1.32432969206 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32432969206, + 45.9762465553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e65c014bb732cf5e9a6128d7f13ef378d7115af3", + "fields": { + "code_commune_insee": "08433", + "nom_de_la_commune": "SUZANNE", + "code_postal": "08130", + "coordonnees_gps": [ + 49.5196448821, + 4.63904554401 + ], + "libelle_d_acheminement": "SUZANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63904554401, + 49.5196448821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eced106bf67c359f52260b31912ad186b99fdfa7", + "fields": { + "code_commune_insee": "17338", + "nom_de_la_commune": "ST GEORGES DU BOIS", + "code_postal": "17700", + "coordonnees_gps": [ + 46.1500553419, + -0.739061354783 + ], + "libelle_d_acheminement": "ST GEORGES DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.739061354783, + 46.1500553419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2410d0ee25d353722561fa4b708dcdc5d20cf6e9", + "fields": { + "ligne_5": "ANDEVANNE", + "code_commune_insee": "08437", + "libelle_d_acheminement": "TAILLY", + "code_postal": "08240", + "nom_de_la_commune": "TAILLY", + "coordonnees_gps": [ + 49.4074530876, + 5.06834679927 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06834679927, + 49.4074530876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05514c0a8f1f33932ee25466e344c4d96234f2d4", + "fields": { + "code_commune_insee": "17339", + "nom_de_la_commune": "ST GERMAIN DE LUSIGNAN", + "code_postal": "17500", + "coordonnees_gps": [ + 45.4642351151, + -0.44363159116 + ], + "libelle_d_acheminement": "ST GERMAIN DE LUSIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44363159116, + 45.4642351151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d5fd1c99d5be60762e95e756cab7b54eebb434d", + "fields": { + "code_commune_insee": "08444", + "nom_de_la_commune": "TETAIGNE", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6494350396, + 5.11700090478 + ], + "libelle_d_acheminement": "TETAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11700090478, + 49.6494350396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7212e69e55aef439346c6eaa6213d89a1c3cde20", + "fields": { + "code_commune_insee": "17341", + "nom_de_la_commune": "ST GERMAIN DE VIBRAC", + "code_postal": "17500", + "coordonnees_gps": [ + 45.4214033132, + -0.327825347194 + ], + "libelle_d_acheminement": "ST GERMAIN DE VIBRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.327825347194, + 45.4214033132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17983ba76c7a24d186158f1b8028bd1585f0bc74", + "fields": { + "code_commune_insee": "08450", + "nom_de_la_commune": "THIS", + "code_postal": "08090", + "coordonnees_gps": [ + 49.7524093055, + 4.61053535908 + ], + "libelle_d_acheminement": "THIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61053535908, + 49.7524093055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4312ef3dc4e9a368b76d8b1a13dee7cad48fbd9", + "fields": { + "code_commune_insee": "17343", + "nom_de_la_commune": "ST GREGOIRE D ARDENNES", + "code_postal": "17240", + "coordonnees_gps": [ + 45.5102408927, + -0.508841326499 + ], + "libelle_d_acheminement": "ST GREGOIRE D ARDENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.508841326499, + 45.5102408927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c920b7590ee1399e49363955f110df5db6b2215e", + "fields": { + "code_commune_insee": "08467", + "nom_de_la_commune": "VAUX MONTREUIL", + "code_postal": "08270", + "coordonnees_gps": [ + 49.5833689396, + 4.556489457 + ], + "libelle_d_acheminement": "VAUX MONTREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.556489457, + 49.5833689396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c853334a6870945b9b6e02c282a98fb7e8d3009", + "fields": { + "code_commune_insee": "17346", + "nom_de_la_commune": "ST HIPPOLYTE", + "code_postal": "17430", + "coordonnees_gps": [ + 45.9198703097, + -0.905117939333 + ], + "libelle_d_acheminement": "ST HIPPOLYTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.905117939333, + 45.9198703097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a44a9f1be3a0803516a68d88bb3fdb76e7284c3", + "fields": { + "code_commune_insee": "08478", + "nom_de_la_commune": "VILLERS LE TILLEUL", + "code_postal": "08430", + "coordonnees_gps": [ + 49.6274458529, + 4.72758462411 + ], + "libelle_d_acheminement": "VILLERS LE TILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72758462411, + 49.6274458529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b4d9ecfb17c0f0d996317d8d89a69fe2e20be23", + "fields": { + "code_commune_insee": "17347", + "nom_de_la_commune": "ST JEAN D ANGELY", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9427172637, + -0.519834100838 + ], + "libelle_d_acheminement": "ST JEAN D ANGELY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.519834100838, + 45.9427172637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0c9cdb7c8a5e44b1e79a094145921ddc4357a0f", + "fields": { + "code_commune_insee": "08484", + "nom_de_la_commune": "VILLE SUR RETOURNE", + "code_postal": "08310", + "coordonnees_gps": [ + 49.3939644349, + 4.44716012221 + ], + "libelle_d_acheminement": "VILLE SUR RETOURNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44716012221, + 49.3939644349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fc1e4c82e25da28e65354e40225a4174c8cbb08", + "fields": { + "code_commune_insee": "17355", + "nom_de_la_commune": "STE LHEURINE", + "code_postal": "17520", + "coordonnees_gps": [ + 45.5224276512, + -0.356868114482 + ], + "libelle_d_acheminement": "STE LHEURINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.356868114482, + 45.5224276512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b8d1a5216747b031f033873e01931af8dbdd59e", + "fields": { + "code_commune_insee": "08488", + "nom_de_la_commune": "VIVIER AU COURT", + "code_postal": "08440", + "coordonnees_gps": [ + 49.7320421095, + 4.82406160373 + ], + "libelle_d_acheminement": "VIVIER AU COURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82406160373, + 49.7320421095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24375f6f062106daf7d898e8f81e27f63db27c64", + "fields": { + "code_commune_insee": "17359", + "nom_de_la_commune": "ST MARD", + "code_postal": "17700", + "coordonnees_gps": [ + 46.0930729273, + -0.695778851 + ], + "libelle_d_acheminement": "ST MARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.695778851, + 46.0930729273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17bb85b07404d0e360ab2bf9c0f0071fc9bbe610", + "fields": { + "code_commune_insee": "08496", + "nom_de_la_commune": "WAGNON", + "code_postal": "08270", + "coordonnees_gps": [ + 49.6470472996, + 4.44569183886 + ], + "libelle_d_acheminement": "WAGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44569183886, + 49.6470472996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6974ad588822eaca46bb56a8bf444bb262d465c8", + "fields": { + "code_commune_insee": "17379", + "nom_de_la_commune": "ST PALAIS DE PHIOLIN", + "code_postal": "17800", + "coordonnees_gps": [ + 45.5151577125, + -0.591464489682 + ], + "libelle_d_acheminement": "ST PALAIS DE PHIOLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.591464489682, + 45.5151577125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "215af5867d6376553cd320dbd18e952e7b5f0fff", + "fields": { + "code_commune_insee": "08498", + "nom_de_la_commune": "WARNECOURT", + "code_postal": "08090", + "coordonnees_gps": [ + 49.7325377304, + 4.65582481048 + ], + "libelle_d_acheminement": "WARNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65582481048, + 49.7325377304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a6910bbe1f489752f20867f7ac13d505d36738c", + "fields": { + "code_commune_insee": "17380", + "nom_de_la_commune": "ST PALAIS SUR MER", + "code_postal": "17420", + "coordonnees_gps": [ + 45.6579754062, + -1.10115118709 + ], + "libelle_d_acheminement": "ST PALAIS SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10115118709, + 45.6579754062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc08c409a6ab01d8d51f707243865ef70915b924", + "fields": { + "code_commune_insee": "08500", + "nom_de_la_commune": "WIGNICOURT", + "code_postal": "08270", + "coordonnees_gps": [ + 49.586756413, + 4.58208905132 + ], + "libelle_d_acheminement": "WIGNICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58208905132, + 49.586756413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fccc2d0969088be03b852fb511607d39bd24a54", + "fields": { + "code_commune_insee": "17381", + "nom_de_la_commune": "ST PARDOULT", + "code_postal": "17400", + "coordonnees_gps": [ + 46.0057367763, + -0.455137574227 + ], + "libelle_d_acheminement": "ST PARDOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.455137574227, + 46.0057367763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b7ebee330381961ec14a77a47e5def84322fd22", + "fields": { + "code_commune_insee": "08501", + "nom_de_la_commune": "WILLIERS", + "code_postal": "08110", + "coordonnees_gps": [ + 49.6689882863, + 5.30073584121 + ], + "libelle_d_acheminement": "WILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30073584121, + 49.6689882863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceb883cc8a69d6a98b1280b093ad370bc6c15ce7", + "fields": { + "code_commune_insee": "17382", + "nom_de_la_commune": "ST PIERRE D AMILLY", + "code_postal": "17700", + "coordonnees_gps": [ + 46.1753767073, + -0.698370030473 + ], + "libelle_d_acheminement": "ST PIERRE D AMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.698370030473, + 46.1753767073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96c748f8debc85ab8bcb32fe5c4cdfa51d863138", + "fields": { + "code_commune_insee": "09004", + "nom_de_la_commune": "ALBIES", + "code_postal": "09310", + "coordonnees_gps": [ + 42.7544533927, + 1.69800818291 + ], + "libelle_d_acheminement": "ALBIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69800818291, + 42.7544533927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b6a77547c127a1b697d903e435f262cf7d97100", + "fields": { + "code_commune_insee": "17388", + "nom_de_la_commune": "ST QUANTIN DE RANCANNE", + "code_postal": "17800", + "coordonnees_gps": [ + 45.5349054123, + -0.596758868836 + ], + "libelle_d_acheminement": "ST QUANTIN DE RANCANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.596758868836, + 45.5349054123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c10067ea5b6a761cb1a5b3d1e43824c8a6d604e5", + "fields": { + "code_commune_insee": "09007", + "nom_de_la_commune": "ALLIERES", + "code_postal": "09240", + "coordonnees_gps": [ + 43.0385438599, + 1.36390734959 + ], + "libelle_d_acheminement": "ALLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36390734959, + 43.0385438599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b7b95dcedce6210a0ddec0d87acda78b94dadb6", + "fields": { + "code_commune_insee": "17396", + "nom_de_la_commune": "ST SAUVEUR D AUNIS", + "code_postal": "17540", + "coordonnees_gps": [ + 46.2102668971, + -0.891705417189 + ], + "libelle_d_acheminement": "ST SAUVEUR D AUNIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.891705417189, + 46.2102668971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "615d68379d4baeae228ba9bceafcc878ab6e739b", + "fields": { + "code_commune_insee": "09009", + "nom_de_la_commune": "ALZEN", + "code_postal": "09240", + "coordonnees_gps": [ + 42.9813926821, + 1.45571678885 + ], + "libelle_d_acheminement": "ALZEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45571678885, + 42.9813926821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b577bfe677ba9d212cd9ba78e4468631a87a4b0", + "fields": { + "code_commune_insee": "17405", + "nom_de_la_commune": "ST SORLIN DE CONAC", + "code_postal": "17150", + "coordonnees_gps": [ + 45.3565207322, + -0.694899173419 + ], + "libelle_d_acheminement": "ST SORLIN DE CONAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.694899173419, + 45.3565207322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83fa3527fed06804879001ba4ad078b9bb9c59bc", + "fields": { + "code_commune_insee": "09012", + "nom_de_la_commune": "APPY", + "code_postal": "09250", + "coordonnees_gps": [ + 42.8035768143, + 1.74201642035 + ], + "libelle_d_acheminement": "APPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74201642035, + 42.8035768143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f84d11c52deb44aa1d5e351174a919d0aa26458", + "fields": { + "code_commune_insee": "17414", + "nom_de_la_commune": "ST XANDRE", + "code_postal": "17138", + "coordonnees_gps": [ + 46.2127706642, + -1.09160546158 + ], + "libelle_d_acheminement": "ST XANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09160546158, + 46.2127706642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3fb9a30dfa46a461d5c257e0a573052dee1f8c1", + "fields": { + "code_commune_insee": "09017", + "nom_de_la_commune": "ARRIEN EN BETHMALE", + "code_postal": "09800", + "coordonnees_gps": [ + 42.8837512369, + 1.05330418003 + ], + "libelle_d_acheminement": "ARRIEN EN BETHMALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05330418003, + 42.8837512369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf222f8d3e709180054491c14fa829dab597ba10", + "fields": { + "code_commune_insee": "17416", + "nom_de_la_commune": "SALEIGNES", + "code_postal": "17510", + "coordonnees_gps": [ + 46.0171498466, + -0.185321832625 + ], + "libelle_d_acheminement": "SALEIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.185321832625, + 46.0171498466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0547293243ffe503d3d99f708b55a0345dbd017", + "fields": { + "code_commune_insee": "09023", + "nom_de_la_commune": "ASCOU", + "code_postal": "09110", + "coordonnees_gps": [ + 42.7192720915, + 1.93149239536 + ], + "libelle_d_acheminement": "ASCOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93149239536, + 42.7192720915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd964752c86c8bcabdd73f715a799dc0c3775d5d", + "fields": { + "code_commune_insee": "17418", + "nom_de_la_commune": "SALIGNAC SUR CHARENTE", + "code_postal": "17800", + "coordonnees_gps": [ + 45.6692835871, + -0.415946816258 + ], + "libelle_d_acheminement": "SALIGNAC SUR CHARENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.415946816258, + 45.6692835871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21eb8e28241ca747d75c7cd8899ec7b9790ae133", + "fields": { + "code_commune_insee": "09033", + "nom_de_la_commune": "BAGERT", + "code_postal": "09230", + "coordonnees_gps": [ + 43.07935173, + 1.07008338409 + ], + "libelle_d_acheminement": "BAGERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07008338409, + 43.07935173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16f3863a0920baaa9bc26c8f78025d0322b204fa", + "fields": { + "code_commune_insee": "17423", + "nom_de_la_commune": "SEMILLAC", + "code_postal": "17150", + "coordonnees_gps": [ + 45.4004704154, + -0.591603220864 + ], + "libelle_d_acheminement": "SEMILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.591603220864, + 45.4004704154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e43419beb0d9b1602927d076db38a4b9a1ec3d4", + "fields": { + "ligne_5": "BALAGUE", + "code_commune_insee": "09035", + "libelle_d_acheminement": "BALAGUERES", + "code_postal": "09800", + "nom_de_la_commune": "BALAGUERES", + "coordonnees_gps": [ + 42.9673311242, + 1.0176138943 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0176138943, + 42.9673311242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d0eaaf247c4fa6acab3ae2ad7d26a9e34a235ab", + "fields": { + "code_commune_insee": "17426", + "nom_de_la_commune": "LE SEURE", + "code_postal": "17770", + "coordonnees_gps": [ + 45.792713341, + -0.355583104704 + ], + "libelle_d_acheminement": "LE SEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.355583104704, + 45.792713341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72c48814c5a0fed0e4fe5f07bb5d99765590cd34", + "fields": { + "code_commune_insee": "09037", + "nom_de_la_commune": "BARJAC", + "code_postal": "09230", + "coordonnees_gps": [ + 43.062297676, + 1.13524619399 + ], + "libelle_d_acheminement": "BARJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13524619399, + 43.062297676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64321eca1917c6a0a30f296f67af85677a8ac8de", + "fields": { + "code_commune_insee": "17429", + "nom_de_la_commune": "SOUBISE", + "code_postal": "17780", + "coordonnees_gps": [ + 45.9097262725, + -1.00226108589 + ], + "libelle_d_acheminement": "SOUBISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00226108589, + 45.9097262725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93a4086f0faa1bc83ec6cd04bb6ccc34285342a5", + "fields": { + "code_commune_insee": "09038", + "nom_de_la_commune": "LA BASTIDE DE BESPLAS", + "code_postal": "09350", + "coordonnees_gps": [ + 43.1691827843, + 1.27411323859 + ], + "libelle_d_acheminement": "LA BASTIDE DE BESPLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27411323859, + 43.1691827843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c7926cf2bfddcc9298cb75548fd06326526fa4b", + "fields": { + "code_commune_insee": "17433", + "nom_de_la_commune": "SOUSMOULINS", + "code_postal": "17130", + "coordonnees_gps": [ + 45.3070848749, + -0.327704818651 + ], + "libelle_d_acheminement": "SOUSMOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.327704818651, + 45.3070848749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32c6325b8236bcd0336a1f2cfeba4e4fc4db4c34", + "fields": { + "code_commune_insee": "09042", + "nom_de_la_commune": "LA BASTIDE DE SEROU", + "code_postal": "09240", + "coordonnees_gps": [ + 43.0242795037, + 1.42677885373 + ], + "libelle_d_acheminement": "LA BASTIDE DE SEROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42677885373, + 43.0242795037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fe1837a3a308011da4d75d8156709ea3ac43808", + "fields": { + "code_commune_insee": "17445", + "nom_de_la_commune": "THEZAC", + "code_postal": "17600", + "coordonnees_gps": [ + 45.6764768852, + -0.789153508281 + ], + "libelle_d_acheminement": "THEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.789153508281, + 45.6764768852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9b70e533fd0b7b494a0602841b38c04144bf333", + "fields": { + "code_commune_insee": "09043", + "nom_de_la_commune": "LA BASTIDE SUR L HERS", + "code_postal": "09600", + "coordonnees_gps": [ + 42.9509022615, + 1.89982042742 + ], + "libelle_d_acheminement": "LA BASTIDE SUR L HERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89982042742, + 42.9509022615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52052435e039c242a17d2eda3786045209457c8c", + "fields": { + "code_commune_insee": "17454", + "nom_de_la_commune": "TUGERAS ST MAURICE", + "code_postal": "17130", + "coordonnees_gps": [ + 45.3553716796, + -0.407478613071 + ], + "libelle_d_acheminement": "TUGERAS ST MAURICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.407478613071, + 45.3553716796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc97fcc953c5c811f1505a89c2b50687d97942bd", + "fields": { + "code_commune_insee": "09047", + "nom_de_la_commune": "BELESTA", + "code_postal": "09300", + "coordonnees_gps": [ + 42.8934707761, + 1.95274389658 + ], + "libelle_d_acheminement": "BELESTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95274389658, + 42.8934707761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79a0ff36b7218eabb46cacba57a099b7d351e77d", + "fields": { + "code_commune_insee": "17455", + "nom_de_la_commune": "LA VALLEE", + "code_postal": "17250", + "coordonnees_gps": [ + 45.8908313129, + -0.845996319512 + ], + "libelle_d_acheminement": "LA VALLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.845996319512, + 45.8908313129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24929d105df4e476f1fe9599bc8d6c8d6375bcd9", + "fields": { + "code_commune_insee": "09049", + "nom_de_la_commune": "BENAC", + "code_postal": "09000", + "coordonnees_gps": [ + 42.9583402851, + 1.52803181268 + ], + "libelle_d_acheminement": "BENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52803181268, + 42.9583402851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e847579a757c627ebaaf6d9f0d3bac37aea966a", + "fields": { + "ligne_5": "ST LAURENT DE LA BARRIERE", + "code_commune_insee": "17457", + "libelle_d_acheminement": "LA DEVISE", + "code_postal": "17380", + "nom_de_la_commune": "LA DEVISE", + "coordonnees_gps": [ + 46.0532187101, + -0.753825189117 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.753825189117, + 46.0532187101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbebbbfe8bc23679d66cf769419d11edbb45bd20", + "fields": { + "code_commune_insee": "09050", + "nom_de_la_commune": "BENAGUES", + "code_postal": "09100", + "coordonnees_gps": [ + 43.0777992381, + 1.60901857498 + ], + "libelle_d_acheminement": "BENAGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60901857498, + 43.0777992381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b0f8005ac7663061ec948b80b059a1cc7a659f6", + "fields": { + "ligne_5": "VANDRE", + "code_commune_insee": "17457", + "libelle_d_acheminement": "LA DEVISE", + "code_postal": "17700", + "nom_de_la_commune": "LA DEVISE", + "coordonnees_gps": [ + 46.0532187101, + -0.753825189117 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.753825189117, + 46.0532187101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aa26219d19b01ce652797352e29241adb8d6a3e", + "fields": { + "code_commune_insee": "09051", + "nom_de_la_commune": "BENAIX", + "code_postal": "09300", + "coordonnees_gps": [ + 42.895006557, + 1.85092848655 + ], + "libelle_d_acheminement": "BENAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85092848655, + 42.895006557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4869ff2a5472678ab1b7d67e0f134cb9b33d225", + "fields": { + "code_commune_insee": "17463", + "nom_de_la_commune": "VERGEROUX", + "code_postal": "17300", + "coordonnees_gps": [ + 45.9737006196, + -0.986529132827 + ], + "libelle_d_acheminement": "VERGEROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.986529132827, + 45.9737006196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc66892ca749225374c5c2f440aa1d55715793cc", + "fields": { + "code_commune_insee": "09053", + "nom_de_la_commune": "BESTIAC", + "code_postal": "09250", + "coordonnees_gps": [ + 42.786687605, + 1.80050215253 + ], + "libelle_d_acheminement": "BESTIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80050215253, + 42.786687605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9c529c2d94807564da81de860fd66c01bf63d62", + "fields": { + "code_commune_insee": "17467", + "nom_de_la_commune": "VERVANT", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9696119746, + -0.445129006344 + ], + "libelle_d_acheminement": "VERVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.445129006344, + 45.9696119746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6ae80cb0edc647c62e12efe4bc0f0da1d177069", + "fields": { + "code_commune_insee": "09054", + "nom_de_la_commune": "BETCHAT", + "code_postal": "09160", + "coordonnees_gps": [ + 43.0851470548, + 1.02888628828 + ], + "libelle_d_acheminement": "BETCHAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02888628828, + 43.0851470548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "494f242b01c7e5265cd338dc7f3d86624fc4bff1", + "fields": { + "code_commune_insee": "17468", + "nom_de_la_commune": "VIBRAC", + "code_postal": "17130", + "coordonnees_gps": [ + 45.3505626693, + -0.340389510498 + ], + "libelle_d_acheminement": "VIBRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.340389510498, + 45.3505626693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05e2c7cde7b82e37299be57f641954a0ba630efb", + "fields": { + "code_commune_insee": "09055", + "nom_de_la_commune": "BETHMALE", + "code_postal": "09800", + "coordonnees_gps": [ + 42.854188599, + 1.07758523335 + ], + "libelle_d_acheminement": "BETHMALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07758523335, + 42.854188599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77eaa3fc1c6907f20dd8a677ae2425d9b035483f", + "fields": { + "code_commune_insee": "17473", + "nom_de_la_commune": "VILLEMORIN", + "code_postal": "17470", + "coordonnees_gps": [ + 45.9936606529, + -0.308323028167 + ], + "libelle_d_acheminement": "VILLEMORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.308323028167, + 45.9936606529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49f96c446a91881dc0e0b077715ec39a65eba5c5", + "fields": { + "code_commune_insee": "09057", + "nom_de_la_commune": "BIERT", + "code_postal": "09320", + "coordonnees_gps": [ + 42.9046164394, + 1.3087912454 + ], + "libelle_d_acheminement": "BIERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3087912454, + 42.9046164394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fc6b4db2def54a5823491b3e3e5c4d3625b66bb", + "fields": { + "code_commune_insee": "18005", + "nom_de_la_commune": "ALLOUIS", + "code_postal": "18500", + "coordonnees_gps": [ + 47.1778132314, + 2.24096841873 + ], + "libelle_d_acheminement": "ALLOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24096841873, + 47.1778132314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41edaa46748e75360d6a9603f8ed5a98d24073cb", + "fields": { + "code_commune_insee": "09058", + "nom_de_la_commune": "BOMPAS", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8628959409, + 1.61987890527 + ], + "libelle_d_acheminement": "BOMPAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61987890527, + 42.8628959409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b089de9651553bbe4a089b348266a9c3542c5d7", + "fields": { + "code_commune_insee": "18006", + "nom_de_la_commune": "ANNOIX", + "code_postal": "18340", + "coordonnees_gps": [ + 46.9690286816, + 2.54279366157 + ], + "libelle_d_acheminement": "ANNOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54279366157, + 46.9690286816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b95a2f4d6ff3cbe016eedfe339d268877fdbe1e5", + "fields": { + "code_commune_insee": "09069", + "nom_de_la_commune": "BUZAN", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9574233332, + 0.959841625997 + ], + "libelle_d_acheminement": "BUZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.959841625997, + 42.9574233332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30dda0e502c6a34e3537d1d3791942c91d422172", + "fields": { + "ligne_5": "LAVERDINES", + "code_commune_insee": "18023", + "libelle_d_acheminement": "BAUGY", + "code_postal": "18800", + "nom_de_la_commune": "BAUGY", + "coordonnees_gps": [ + 47.0713406909, + 2.71558067108 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71558067108, + 47.0713406909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64a6dd8d1af76f59ecb6a40374793c9888a3d7f8", + "fields": { + "code_commune_insee": "09080", + "nom_de_la_commune": "CARLA DE ROQUEFORT", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9751735118, + 1.762010526 + ], + "libelle_d_acheminement": "CARLA DE ROQUEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.762010526, + 42.9751735118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5654b3bdb481dc51296e9a79e6e07249364582e7", + "fields": { + "ligne_5": "SALIGNY LE VIF", + "code_commune_insee": "18023", + "libelle_d_acheminement": "BAUGY", + "code_postal": "18800", + "nom_de_la_commune": "BAUGY", + "coordonnees_gps": [ + 47.0713406909, + 2.71558067108 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71558067108, + 47.0713406909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bd24e58171112241a95437d7351bf2b481633e1", + "fields": { + "code_commune_insee": "09091", + "nom_de_la_commune": "CAZAVET", + "code_postal": "09160", + "coordonnees_gps": [ + 42.9980540032, + 1.03529654774 + ], + "libelle_d_acheminement": "CAZAVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03529654774, + 42.9980540032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e4faee7ad2ee9deb9de253b9f26ff2b7452eecb", + "fields": { + "code_commune_insee": "18038", + "nom_de_la_commune": "BRUERE ALLICHAMPS", + "code_postal": "18200", + "coordonnees_gps": [ + 46.7757107356, + 2.42892835888 + ], + "libelle_d_acheminement": "BRUERE ALLICHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42892835888, + 46.7757107356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20634cc875925a91ed2ed1f7058d4e0616d7869d", + "fields": { + "code_commune_insee": "09095", + "nom_de_la_commune": "CESCAU", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9288304478, + 1.04814357665 + ], + "libelle_d_acheminement": "CESCAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04814357665, + 42.9288304478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "390a5afc7fd6d6f0e29c71be726985207ae158b5", + "fields": { + "code_commune_insee": "18048", + "nom_de_la_commune": "LA CHAPELLE HUGON", + "code_postal": "18150", + "coordonnees_gps": [ + 46.8956501509, + 2.95415961262 + ], + "libelle_d_acheminement": "LA CHAPELLE HUGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95415961262, + 46.8956501509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2140bb40875847b990b7911d189cf9713b3cf21", + "fields": { + "code_commune_insee": "09102", + "nom_de_la_commune": "COUTENS", + "code_postal": "09500", + "coordonnees_gps": [ + 43.0675702569, + 1.82251157352 + ], + "libelle_d_acheminement": "COUTENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82251157352, + 43.0675702569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1a1f4562d2a75d16b17771d0d4a151986ec5d89", + "fields": { + "code_commune_insee": "18060", + "nom_de_la_commune": "CHAUMONT", + "code_postal": "18350", + "coordonnees_gps": [ + 46.8416938785, + 2.75008563898 + ], + "libelle_d_acheminement": "CHAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75008563898, + 46.8416938785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccc461104b9d6a9073537a3e28f7015a30daf4c9", + "fields": { + "code_commune_insee": "09103", + "nom_de_la_commune": "CRAMPAGNA", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0283504432, + 1.58947099246 + ], + "libelle_d_acheminement": "CRAMPAGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58947099246, + 43.0283504432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d95ee9a98fc54f217d3fc227b97fc516b7030f57", + "fields": { + "code_commune_insee": "18061", + "nom_de_la_commune": "CHAUMOUX MARCILLY", + "code_postal": "18140", + "coordonnees_gps": [ + 47.142667178, + 2.77994573074 + ], + "libelle_d_acheminement": "CHAUMOUX MARCILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77994573074, + 47.142667178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecfdc594101033fbfb75d4fe938fb22a990f89e7", + "fields": { + "code_commune_insee": "09105", + "nom_de_la_commune": "DAUMAZAN SUR ARIZE", + "code_postal": "09350", + "coordonnees_gps": [ + 43.1445751789, + 1.30386151934 + ], + "libelle_d_acheminement": "DAUMAZAN SUR ARIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30386151934, + 43.1445751789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cbcf20067ea507a2e8e80124403918db6c28024", + "fields": { + "code_commune_insee": "18066", + "nom_de_la_commune": "CIVRAY", + "code_postal": "18290", + "coordonnees_gps": [ + 46.9738711356, + 2.18516682907 + ], + "libelle_d_acheminement": "CIVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18516682907, + 46.9738711356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5831c995912b5aa9361e2c00697e619b5ab1dc0", + "fields": { + "code_commune_insee": "09106", + "nom_de_la_commune": "DREUILHE", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9440531861, + 1.87119790216 + ], + "libelle_d_acheminement": "DREUILHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87119790216, + 42.9440531861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "754cead999c71c44b3879b85f5187b8bf08f5a0d", + "fields": { + "code_commune_insee": "18068", + "nom_de_la_commune": "COGNY", + "code_postal": "18130", + "coordonnees_gps": [ + 46.8511371281, + 2.64397338804 + ], + "libelle_d_acheminement": "COGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64397338804, + 46.8511371281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b207efa5f44147022cbcb21d8aeb4d0786dc0999", + "fields": { + "ligne_5": "SENESSE DE SENABUGUE", + "code_commune_insee": "09107", + "libelle_d_acheminement": "DUN", + "code_postal": "09600", + "nom_de_la_commune": "DUN", + "coordonnees_gps": [ + 43.0256431764, + 1.79296928754 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79296928754, + 43.0256431764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "044115f7113ee7c5dc9743c1feb1c61db3706f75", + "fields": { + "code_commune_insee": "18073", + "nom_de_la_commune": "CORQUOY", + "code_postal": "18190", + "coordonnees_gps": [ + 46.8920009794, + 2.29746216707 + ], + "libelle_d_acheminement": "CORQUOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29746216707, + 46.8920009794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "568e3b0d2253e807e0a03eb5633556521689bf75", + "fields": { + "code_commune_insee": "09109", + "nom_de_la_commune": "DURFORT", + "code_postal": "09130", + "coordonnees_gps": [ + 43.1953151642, + 1.46374682599 + ], + "libelle_d_acheminement": "DURFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46374682599, + 43.1953151642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e50888192364608df2bbfac7b78909f03cf9127", + "fields": { + "code_commune_insee": "18075", + "nom_de_la_commune": "COURS LES BARRES", + "code_postal": "18320", + "coordonnees_gps": [ + 47.0221738133, + 3.03745097069 + ], + "libelle_d_acheminement": "COURS LES BARRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03745097069, + 47.0221738133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24b5eb13637151dbf69eeaa7f3609dbdd07d94f5", + "fields": { + "code_commune_insee": "09114", + "nom_de_la_commune": "ERP", + "code_postal": "09200", + "coordonnees_gps": [ + 42.9350909858, + 1.20010016005 + ], + "libelle_d_acheminement": "ERP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20010016005, + 42.9350909858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cabc1596252b4f6bf10b3d0196455a704c26904", + "fields": { + "code_commune_insee": "18079", + "nom_de_la_commune": "CREZANCY EN SANCERRE", + "code_postal": "18300", + "coordonnees_gps": [ + 47.3043105708, + 2.74787668704 + ], + "libelle_d_acheminement": "CREZANCY EN SANCERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74787668704, + 47.3043105708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8fa9ade1bc7434691b1717900bdbdbcd43938a2", + "fields": { + "code_commune_insee": "09117", + "nom_de_la_commune": "ESPLAS", + "code_postal": "09700", + "coordonnees_gps": [ + 43.1866045103, + 1.4996220667 + ], + "libelle_d_acheminement": "ESPLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4996220667, + 43.1866045103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55569d077f8f91ae6355baf0af58535a45483eb8", + "fields": { + "code_commune_insee": "18094", + "nom_de_la_commune": "FEUX", + "code_postal": "18300", + "coordonnees_gps": [ + 47.229346809, + 2.86665110758 + ], + "libelle_d_acheminement": "FEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86665110758, + 47.229346809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a3e784a14d253126f724c8dff8c505ff0dba6cb", + "fields": { + "code_commune_insee": "09123", + "nom_de_la_commune": "FORNEX", + "code_postal": "09350", + "coordonnees_gps": [ + 43.1641429511, + 1.24167256274 + ], + "libelle_d_acheminement": "FORNEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24167256274, + 43.1641429511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f5f11fdbe8080c5fc69914ff9f13887d436fda6", + "fields": { + "code_commune_insee": "18106", + "nom_de_la_commune": "GROSSOUVRE", + "code_postal": "18600", + "coordonnees_gps": [ + 46.8722999491, + 2.93595390975 + ], + "libelle_d_acheminement": "GROSSOUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93595390975, + 46.8722999491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8be37d5ca276b041decffa06bdf381c548e50417", + "fields": { + "code_commune_insee": "09131", + "nom_de_la_commune": "GARANOU", + "code_postal": "09250", + "coordonnees_gps": [ + 42.7646194319, + 1.74523092663 + ], + "libelle_d_acheminement": "GARANOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74523092663, + 42.7646194319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a243723c73327ec66251c26a4af4290f6c07ffce", + "fields": { + "code_commune_insee": "18112", + "nom_de_la_commune": "IDS ST ROCH", + "code_postal": "18170", + "coordonnees_gps": [ + 46.7139612641, + 2.25788543249 + ], + "libelle_d_acheminement": "IDS ST ROCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25788543249, + 46.7139612641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90be340f3eb847da0d5182e830dddb6be0fe61ba", + "fields": { + "code_commune_insee": "09136", + "nom_de_la_commune": "GOURBIT", + "code_postal": "09400", + "coordonnees_gps": [ + 42.828206908, + 1.51547643918 + ], + "libelle_d_acheminement": "GOURBIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51547643918, + 42.828206908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75d39f38dc3f5beed9cb284e818630c646dd3aee", + "fields": { + "code_commune_insee": "18129", + "nom_de_la_commune": "LISSAY LOCHY", + "code_postal": "18340", + "coordonnees_gps": [ + 46.9742881367, + 2.38711520359 + ], + "libelle_d_acheminement": "LISSAY LOCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38711520359, + 46.9742881367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39d333c9d487437ab39fe78d3f9443de75bc4618", + "fields": { + "code_commune_insee": "09141", + "nom_de_la_commune": "ILLARTEIN", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9224446922, + 0.954341364793 + ], + "libelle_d_acheminement": "ILLARTEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.954341364793, + 42.9224446922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd08fa48537f3d30bb848525ea50c267a306c9a2", + "fields": { + "code_commune_insee": "18146", + "nom_de_la_commune": "MENETREOL SOUS SANCERRE", + "code_postal": "18300", + "coordonnees_gps": [ + 47.3182695839, + 2.86662649363 + ], + "libelle_d_acheminement": "MENETREOL SOUS SANCERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86662649363, + 47.3182695839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a631b7f3326368da0a723664275b2b5683863445", + "fields": { + "code_commune_insee": "09162", + "nom_de_la_commune": "LERCOUL", + "code_postal": "09220", + "coordonnees_gps": [ + 42.7098891708, + 1.52802126242 + ], + "libelle_d_acheminement": "LERCOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52802126242, + 42.7098891708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b4b35203380eddac1cd1d33529655c8c20913b7", + "fields": { + "code_commune_insee": "18148", + "nom_de_la_commune": "MEREAU", + "code_postal": "18120", + "coordonnees_gps": [ + 47.1794168881, + 2.05220231898 + ], + "libelle_d_acheminement": "MEREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05220231898, + 47.1794168881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42f30bb23c60e918805323a2de647ba1542359d1", + "fields": { + "code_commune_insee": "09166", + "nom_de_la_commune": "LEYCHERT", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9461349991, + 1.72568604456 + ], + "libelle_d_acheminement": "LEYCHERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72568604456, + 42.9461349991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d2f8cc985ec0c5e1c2ccea57daeefe4bf71878b", + "fields": { + "code_commune_insee": "18151", + "nom_de_la_commune": "MONTIGNY", + "code_postal": "18250", + "coordonnees_gps": [ + 47.2282072534, + 2.68756376755 + ], + "libelle_d_acheminement": "MONTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68756376755, + 47.2282072534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41f98b2bd9fa46cc6c63978bb6099564ba271377", + "fields": { + "code_commune_insee": "09167", + "nom_de_la_commune": "LEZAT SUR LEZE", + "code_postal": "09210", + "coordonnees_gps": [ + 43.280210332, + 1.34476803133 + ], + "libelle_d_acheminement": "LEZAT SUR LEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34476803133, + 43.280210332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9123d9183a55d6243c27b44875037760bdf59537", + "fields": { + "code_commune_insee": "18156", + "nom_de_la_commune": "MOROGUES", + "code_postal": "18220", + "coordonnees_gps": [ + 47.2574083445, + 2.59600177096 + ], + "libelle_d_acheminement": "MOROGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59600177096, + 47.2574083445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f90602d9c05bd3d8892479a47c0068a04f54161e", + "fields": { + "code_commune_insee": "09168", + "nom_de_la_commune": "LIEURAC", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9850209725, + 1.79078001145 + ], + "libelle_d_acheminement": "LIEURAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79078001145, + 42.9850209725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f00d98987c8a689211004cc81ba1fa9bce6000dd", + "fields": { + "code_commune_insee": "18159", + "nom_de_la_commune": "NANCAY", + "code_postal": "18330", + "coordonnees_gps": [ + 47.3670326924, + 2.17549519635 + ], + "libelle_d_acheminement": "NANCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17549519635, + 47.3670326924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "479c245523cde7d18f38ca191d6dde3fe8ca1a73", + "fields": { + "code_commune_insee": "09179", + "nom_de_la_commune": "MALLEON", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0330014748, + 1.71547943736 + ], + "libelle_d_acheminement": "MALLEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71547943736, + 43.0330014748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37c87f1c68f60d90ef8d1c7d3d1cae0dee38d9d3", + "fields": { + "code_commune_insee": "18161", + "nom_de_la_commune": "NEUILLY EN DUN", + "code_postal": "18600", + "coordonnees_gps": [ + 46.8022857542, + 2.78268305253 + ], + "libelle_d_acheminement": "NEUILLY EN DUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78268305253, + 46.8022857542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b255bb0d3683924d5838a0c7e6fbf0b15285262e", + "fields": { + "code_commune_insee": "09181", + "nom_de_la_commune": "LE MAS D AZIL", + "code_postal": "09290", + "coordonnees_gps": [ + 43.0692744925, + 1.34937176896 + ], + "libelle_d_acheminement": "LE MAS D AZIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34937176896, + 43.0692744925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f7fe0566ff08b709d77c923570e451afe475420", + "fields": { + "code_commune_insee": "18162", + "nom_de_la_commune": "NEUILLY EN SANCERRE", + "code_postal": "18250", + "coordonnees_gps": [ + 47.305628773, + 2.65561084881 + ], + "libelle_d_acheminement": "NEUILLY EN SANCERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65561084881, + 47.305628773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22c7cd13d1c966addd82c862a8e60b445d648e6a", + "fields": { + "code_commune_insee": "09182", + "nom_de_la_commune": "MASSAT", + "code_postal": "09320", + "coordonnees_gps": [ + 42.8756880579, + 1.37725705929 + ], + "libelle_d_acheminement": "MASSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37725705929, + 42.8756880579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ab0d57376c37b95ef645c43d460da2315af43b2", + "fields": { + "code_commune_insee": "18164", + "nom_de_la_commune": "NEUVY LE BARROIS", + "code_postal": "18600", + "coordonnees_gps": [ + 46.8597953067, + 3.01962993984 + ], + "libelle_d_acheminement": "NEUVY LE BARROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01962993984, + 46.8597953067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f74da3373339d9823091a706e2a833d6c9c8eaf", + "fields": { + "code_commune_insee": "09190", + "nom_de_la_commune": "MERIGON", + "code_postal": "09230", + "coordonnees_gps": [ + 43.0906597398, + 1.20465385881 + ], + "libelle_d_acheminement": "MERIGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20465385881, + 43.0906597398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e23d453a1a59e6bc2e4ca7ef252239e3e1ecb9e9", + "fields": { + "code_commune_insee": "18169", + "nom_de_la_commune": "NOZIERES", + "code_postal": "18200", + "coordonnees_gps": [ + 46.734983408, + 2.42074813599 + ], + "libelle_d_acheminement": "NOZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42074813599, + 46.734983408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "138e23ab96fb1e0e3a72587fa048b9f73c5cd77c", + "fields": { + "code_commune_insee": "09194", + "nom_de_la_commune": "MIREPOIX", + "code_postal": "09500", + "coordonnees_gps": [ + 43.1093995072, + 1.86916991814 + ], + "libelle_d_acheminement": "MIREPOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86916991814, + 43.1093995072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b5b41f9d8dd39c6015913df6aad7b145ec02517", + "fields": { + "code_commune_insee": "18173", + "nom_de_la_commune": "OSMERY", + "code_postal": "18130", + "coordonnees_gps": [ + 46.9385913345, + 2.65792888635 + ], + "libelle_d_acheminement": "OSMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65792888635, + 46.9385913345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3766124ef086ff53be601a966f9c89b8fc773537", + "fields": { + "code_commune_insee": "09199", + "nom_de_la_commune": "MONTAUT", + "code_postal": "09700", + "coordonnees_gps": [ + 43.186244822, + 1.65640135229 + ], + "libelle_d_acheminement": "MONTAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65640135229, + 43.186244822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73c62d328652285c3e0753ea42ee682881566ebe", + "fields": { + "code_commune_insee": "18174", + "nom_de_la_commune": "OSMOY", + "code_postal": "18390", + "coordonnees_gps": [ + 47.0631160847, + 2.50571113255 + ], + "libelle_d_acheminement": "OSMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50571113255, + 47.0631160847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64d2370f79e6a7199ca8b208f461eae724cc3d53", + "fields": { + "code_commune_insee": "09200", + "nom_de_la_commune": "MONTBEL", + "code_postal": "09600", + "coordonnees_gps": [ + 42.9784689513, + 1.96705977285 + ], + "libelle_d_acheminement": "MONTBEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96705977285, + 42.9784689513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b899772fbae97854eec4d502def1d71cf7b44104", + "fields": { + "code_commune_insee": "18181", + "nom_de_la_commune": "PLOU", + "code_postal": "18290", + "coordonnees_gps": [ + 47.0315088379, + 2.14830052941 + ], + "libelle_d_acheminement": "PLOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14830052941, + 47.0315088379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dbc4a60f9f1082f3cd08b95eddf1435cd090dba", + "fields": { + "code_commune_insee": "09202", + "nom_de_la_commune": "MONTEGUT PLANTAUREL", + "code_postal": "09120", + "coordonnees_gps": [ + 43.0757579679, + 1.49683578194 + ], + "libelle_d_acheminement": "MONTEGUT PLANTAUREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49683578194, + 43.0757579679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db211f886c1b59690688f2eb7914fffb7947697b", + "fields": { + "code_commune_insee": "18191", + "nom_de_la_commune": "RAYMOND", + "code_postal": "18130", + "coordonnees_gps": [ + 46.9716860127, + 2.68986237741 + ], + "libelle_d_acheminement": "RAYMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68986237741, + 46.9716860127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3749122695d868d22f9e28066d09f70f3d8447d", + "fields": { + "code_commune_insee": "09204", + "nom_de_la_commune": "MONTESQUIEU AVANTES", + "code_postal": "09200", + "coordonnees_gps": [ + 43.0350392135, + 1.21647131708 + ], + "libelle_d_acheminement": "MONTESQUIEU AVANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21647131708, + 43.0350392135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcc3929f8a7c28089b58b8725f89b4f8d6d73e81", + "fields": { + "code_commune_insee": "18195", + "nom_de_la_commune": "SAGONNE", + "code_postal": "18600", + "coordonnees_gps": [ + 46.8604606569, + 2.82886441436 + ], + "libelle_d_acheminement": "SAGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82886441436, + 46.8604606569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77876e2e97137f0228537b9889711e908b9ec662", + "fields": { + "code_commune_insee": "09206", + "nom_de_la_commune": "MONTFERRIER", + "code_postal": "09300", + "coordonnees_gps": [ + 42.8659061967, + 1.77079235235 + ], + "libelle_d_acheminement": "MONTFERRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77079235235, + 42.8659061967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31cf0d1f96848f0304f665c8fd99a59708c8145e", + "fields": { + "code_commune_insee": "18196", + "nom_de_la_commune": "ST AIGNAN DES NOYERS", + "code_postal": "18600", + "coordonnees_gps": [ + 46.755350283, + 2.82189743565 + ], + "libelle_d_acheminement": "ST AIGNAN DES NOYERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82189743565, + 46.755350283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f64289f63a50672ad288a121dbad21e1b819de90", + "fields": { + "code_commune_insee": "09216", + "nom_de_la_commune": "NESCUS", + "code_postal": "09240", + "coordonnees_gps": [ + 42.9917806971, + 1.43531153938 + ], + "libelle_d_acheminement": "NESCUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43531153938, + 42.9917806971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb87e83542c9bb333b53489d515c8860ecdf64fa", + "fields": { + "code_commune_insee": "18203", + "nom_de_la_commune": "ST CHRISTOPHE LE CHAUDRY", + "code_postal": "18270", + "coordonnees_gps": [ + 46.5829439875, + 2.3889430213 + ], + "libelle_d_acheminement": "ST CHRISTOPHE LE CHAUDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3889430213, + 46.5829439875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4aa1a3bbaf6cea84cb9347ab4864777a112f6bce", + "fields": { + "code_commune_insee": "09218", + "nom_de_la_commune": "ORGEIX", + "code_postal": "09110", + "coordonnees_gps": [ + 42.6754737936, + 1.87610097386 + ], + "libelle_d_acheminement": "ORGEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87610097386, + 42.6754737936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3df63486affac2463182529e0f2d97b9865215b", + "fields": { + "code_commune_insee": "18211", + "nom_de_la_commune": "ST GEORGES SUR MOULON", + "code_postal": "18110", + "coordonnees_gps": [ + 47.1855306923, + 2.42096610291 + ], + "libelle_d_acheminement": "ST GEORGES SUR MOULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42096610291, + 47.1855306923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53a4c633d78758dc6838584465b8495afea4ef18", + "fields": { + "code_commune_insee": "09219", + "nom_de_la_commune": "ORGIBET", + "code_postal": "09800", + "coordonnees_gps": [ + 42.9263246353, + 0.938509265904 + ], + "libelle_d_acheminement": "ORGIBET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.938509265904, + 42.9263246353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1268a4cdabf5dfd1aa4b5ad5c6db91fd9a6f33a5", + "fields": { + "code_commune_insee": "18216", + "nom_de_la_commune": "ST HILAIRE EN LIGNIERES", + "code_postal": "18160", + "coordonnees_gps": [ + 46.7380344095, + 2.13022589921 + ], + "libelle_d_acheminement": "ST HILAIRE EN LIGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13022589921, + 46.7380344095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef5e7d4c32ed2ac4d6187eda4669a50f7045d9ee", + "fields": { + "code_commune_insee": "09220", + "nom_de_la_commune": "ORLU", + "code_postal": "09110", + "coordonnees_gps": [ + 42.6581771284, + 1.93694023792 + ], + "libelle_d_acheminement": "ORLU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93694023792, + 42.6581771284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "343c275d1e7141fc8d3368b34ddb9e179168992b", + "fields": { + "code_commune_insee": "18218", + "nom_de_la_commune": "ST JUST", + "code_postal": "18340", + "coordonnees_gps": [ + 46.9879440291, + 2.50186876753 + ], + "libelle_d_acheminement": "ST JUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50186876753, + 46.9879440291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adf9b3000763d702f285a1f4e8d32f5883560f8a", + "fields": { + "code_commune_insee": "09223", + "nom_de_la_commune": "OUST", + "code_postal": "09140", + "coordonnees_gps": [ + 42.8601715616, + 1.23475872502 + ], + "libelle_d_acheminement": "OUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23475872502, + 42.8601715616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc333619e212efb4170cf61398b152d2cd40ae57", + "fields": { + "code_commune_insee": "18223", + "nom_de_la_commune": "ST MARTIN D AUXIGNY", + "code_postal": "18110", + "coordonnees_gps": [ + 47.2103197455, + 2.38165698999 + ], + "libelle_d_acheminement": "ST MARTIN D AUXIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38165698999, + 47.2103197455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed72d6c1012d5fb837e561c212aeee49adc9970b", + "fields": { + "code_commune_insee": "09228", + "nom_de_la_commune": "PERLES ET CASTELET", + "code_postal": "09110", + "coordonnees_gps": [ + 42.7186237095, + 1.77447704915 + ], + "libelle_d_acheminement": "PERLES ET CASTELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77447704915, + 42.7186237095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc9a7b32a228a542ef622e4889c12abbf86f3aa3", + "fields": { + "code_commune_insee": "18226", + "nom_de_la_commune": "ST MICHEL DE VOLANGIS", + "code_postal": "18390", + "coordonnees_gps": [ + 47.1432035311, + 2.48143699712 + ], + "libelle_d_acheminement": "ST MICHEL DE VOLANGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48143699712, + 47.1432035311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cc2e300a35b8081caa738863729fd1cbc539f8d", + "fields": { + "code_commune_insee": "09229", + "nom_de_la_commune": "LE PEYRAT", + "code_postal": "09600", + "coordonnees_gps": [ + 42.9558799437, + 1.92773507045 + ], + "libelle_d_acheminement": "LE PEYRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92773507045, + 42.9558799437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d6969ec81f224329b82d980499cbe980f95185d", + "fields": { + "code_commune_insee": "18233", + "nom_de_la_commune": "ST SATUR", + "code_postal": "18300", + "coordonnees_gps": [ + 47.3465019322, + 2.85418697553 + ], + "libelle_d_acheminement": "ST SATUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85418697553, + 47.3465019322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d14ab6e56b6bb07c80f8adb2d7b8265e2b198ec", + "fields": { + "code_commune_insee": "09235", + "nom_de_la_commune": "PRAT BONREPAUX", + "code_postal": "09160", + "coordonnees_gps": [ + 43.0312285165, + 1.02890152351 + ], + "libelle_d_acheminement": "PRAT BONREPAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02890152351, + 43.0312285165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4107ef6e1c9c2f6479cd80f13f087d774836e46e", + "fields": { + "code_commune_insee": "18235", + "nom_de_la_commune": "STE SOLANGE", + "code_postal": "18220", + "coordonnees_gps": [ + 47.1423943953, + 2.55094608842 + ], + "libelle_d_acheminement": "STE SOLANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55094608842, + 47.1423943953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c47300b32618cab2fdabf1b75ca170c4e7429237", + "fields": { + "code_commune_insee": "09240", + "nom_de_la_commune": "QUIE", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8425853909, + 1.58955333024 + ], + "libelle_d_acheminement": "QUIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58955333024, + 42.8425853909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eea0389ca5a1ce3de2f7e956ffdef30f73612422", + "fields": { + "code_commune_insee": "18238", + "nom_de_la_commune": "ST VITTE", + "code_postal": "18360", + "coordonnees_gps": [ + 46.5392889664, + 2.52939957448 + ], + "libelle_d_acheminement": "ST VITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52939957448, + 46.5392889664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56426e9d4d5dcc6be33541c285846d50a4f0bccf", + "fields": { + "code_commune_insee": "09243", + "nom_de_la_commune": "REGAT", + "code_postal": "09600", + "coordonnees_gps": [ + 42.9885315709, + 1.88732041565 + ], + "libelle_d_acheminement": "REGAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88732041565, + 42.9885315709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86fa586824b16465e2aae48745c8a856bd08ce3f", + "fields": { + "code_commune_insee": "18240", + "nom_de_la_commune": "SANCERGUES", + "code_postal": "18140", + "coordonnees_gps": [ + 47.1626367318, + 2.89993573993 + ], + "libelle_d_acheminement": "SANCERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89993573993, + 47.1626367318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82e4b833119f3975e73edd83c344cbf3595d49d2", + "fields": { + "code_commune_insee": "09249", + "nom_de_la_commune": "ROQUEFIXADE", + "code_postal": "09300", + "coordonnees_gps": [ + 42.9332936149, + 1.76440291493 + ], + "libelle_d_acheminement": "ROQUEFIXADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76440291493, + 42.9332936149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7b57d0c641bb03f26751961550b603d7de03f57", + "fields": { + "code_commune_insee": "18249", + "nom_de_la_commune": "SENS BEAUJEU", + "code_postal": "18300", + "coordonnees_gps": [ + 47.334144202, + 2.68875381486 + ], + "libelle_d_acheminement": "SENS BEAUJEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68875381486, + 47.334144202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50e52323f1cc2500d77de9931670e7dc84612feb", + "fields": { + "code_commune_insee": "09274", + "nom_de_la_commune": "ST QUENTIN LA TOUR", + "code_postal": "09500", + "coordonnees_gps": [ + 43.0310774856, + 1.90668418489 + ], + "libelle_d_acheminement": "ST QUENTIN LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90668418489, + 43.0310774856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e6690115661d0eb4100b2737ed7b47e98709aa1", + "fields": { + "code_commune_insee": "18253", + "nom_de_la_commune": "SOULANGIS", + "code_postal": "18220", + "coordonnees_gps": [ + 47.1798980762, + 2.51528453779 + ], + "libelle_d_acheminement": "SOULANGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51528453779, + 47.1798980762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1964c5d0f61037ca1c25df8dbf4ba20e9d6c36b6", + "fields": { + "code_commune_insee": "09277", + "nom_de_la_commune": "ST YBARS", + "code_postal": "09210", + "coordonnees_gps": [ + 43.2421519244, + 1.39839166457 + ], + "libelle_d_acheminement": "ST YBARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39839166457, + 43.2421519244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c42e2d15828b578f6544d86c62b9860494499d5d", + "fields": { + "code_commune_insee": "18255", + "nom_de_la_commune": "LE SUBDRAY", + "code_postal": "18570", + "coordonnees_gps": [ + 47.0183022938, + 2.30988777756 + ], + "libelle_d_acheminement": "LE SUBDRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30988777756, + 47.0183022938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b268f6da0a59ac8e17585c4dcfc0450d15785663", + "fields": { + "code_commune_insee": "09280", + "nom_de_la_commune": "SAURAT", + "code_postal": "09400", + "coordonnees_gps": [ + 42.883738441, + 1.50479848751 + ], + "libelle_d_acheminement": "SAURAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50479848751, + 42.883738441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d12877541444b792b329e957d7cbc1200d92f6dd", + "fields": { + "code_commune_insee": "18257", + "nom_de_la_commune": "SURY PRES LERE", + "code_postal": "18240", + "coordonnees_gps": [ + 47.4832014247, + 2.84484460437 + ], + "libelle_d_acheminement": "SURY PRES LERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84484460437, + 47.4832014247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ee23e4e2be174fe17630c1959a891e49083f86d", + "fields": { + "ligne_5": "AULOS", + "code_commune_insee": "09296", + "libelle_d_acheminement": "AULOS SINSAT", + "code_postal": "09310", + "nom_de_la_commune": "AULOS SINSAT", + "coordonnees_gps": [ + 42.8010692971, + 1.66015755913 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66015755913, + 42.8010692971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4245a6e2d8bcd9c7a8833c8dda900d4a679b316", + "fields": { + "code_commune_insee": "18264", + "nom_de_la_commune": "THOU", + "code_postal": "18260", + "coordonnees_gps": [ + 47.4220683094, + 2.6720550629 + ], + "libelle_d_acheminement": "THOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6720550629, + 47.4220683094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eed9ee8a71275a8b620311ec99bcd52c7cbb1a27", + "fields": { + "code_commune_insee": "09301", + "nom_de_la_commune": "SOULAN", + "code_postal": "09320", + "coordonnees_gps": [ + 42.9162917459, + 1.2434207 + ], + "libelle_d_acheminement": "SOULAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2434207, + 42.9162917459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6ab68354a58974de02553f861c6b2ba97e7df44", + "fields": { + "code_commune_insee": "18269", + "nom_de_la_commune": "VAILLY SUR SAULDRE", + "code_postal": "18260", + "coordonnees_gps": [ + 47.4563676608, + 2.65132659906 + ], + "libelle_d_acheminement": "VAILLY SUR SAULDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65132659906, + 47.4563676608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f573fab8802187e18452fd9696e5a0332776249", + "fields": { + "code_commune_insee": "09306", + "nom_de_la_commune": "TARASCON SUR ARIEGE", + "code_postal": "09400", + "coordonnees_gps": [ + 42.8461514685, + 1.59648461871 + ], + "libelle_d_acheminement": "TARASCON SUR ARIEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59648461871, + 42.8461514685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5a452d7e14a5075a16675f6a1c066dac28c7af9", + "fields": { + "code_commune_insee": "18279", + "nom_de_la_commune": "VIERZON", + "code_postal": "18100", + "coordonnees_gps": [ + 47.2368836077, + 2.0790757049 + ], + "libelle_d_acheminement": "VIERZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0790757049, + 47.2368836077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbfdd95485684a56ebddf02eac4ca9d5df62d7b6", + "fields": { + "code_commune_insee": "09322", + "nom_de_la_commune": "USTOU", + "code_postal": "09140", + "coordonnees_gps": [ + 42.7738686412, + 1.2631778859 + ], + "libelle_d_acheminement": "USTOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2631778859, + 42.7738686412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "352219bdf5355f7b8cee41aa6374cbee3763aaaa", + "fields": { + "code_commune_insee": "18289", + "nom_de_la_commune": "VORNAY", + "code_postal": "18130", + "coordonnees_gps": [ + 46.9659233978, + 2.59474797116 + ], + "libelle_d_acheminement": "VORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59474797116, + 46.9659233978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "655e9625c723e5fa3b55177d413470ec63a4f2b2", + "fields": { + "code_commune_insee": "09327", + "nom_de_la_commune": "VENTENAC", + "code_postal": "09120", + "coordonnees_gps": [ + 42.9973884693, + 1.72364720344 + ], + "libelle_d_acheminement": "VENTENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72364720344, + 42.9973884693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a33dc7fe841ff2267cd1cb3fb0d1ad4362f527a2", + "fields": { + "code_commune_insee": "19014", + "nom_de_la_commune": "AURIAC", + "code_postal": "19220", + "coordonnees_gps": [ + 45.2002215851, + 2.13938146562 + ], + "libelle_d_acheminement": "AURIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13938146562, + 45.2002215851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5a1e67dc2d404439c242a7112f3b9ea64d18e39", + "fields": { + "code_commune_insee": "09328", + "nom_de_la_commune": "VERDUN", + "code_postal": "09310", + "coordonnees_gps": [ + 42.8060735388, + 1.69239160264 + ], + "libelle_d_acheminement": "VERDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69239160264, + 42.8060735388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "945a565b27812e24e728daa95b2f322ec8a415da", + "fields": { + "code_commune_insee": "19015", + "nom_de_la_commune": "AYEN", + "code_postal": "19310", + "coordonnees_gps": [ + 45.2543308546, + 1.32442831194 + ], + "libelle_d_acheminement": "AYEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32442831194, + 45.2543308546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b32babc9b07e1ba0329287c39a449aaa7bc96737", + "fields": { + "code_commune_insee": "09332", + "nom_de_la_commune": "VERNIOLLE", + "code_postal": "09340", + "coordonnees_gps": [ + 43.0809118963, + 1.6610092477 + ], + "libelle_d_acheminement": "VERNIOLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6610092477, + 43.0809118963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89d5d4345b6866c073c8df61dd46f93fc357c48a", + "fields": { + "code_commune_insee": "19021", + "nom_de_la_commune": "BELLECHASSAGNE", + "code_postal": "19290", + "coordonnees_gps": [ + 45.6486687844, + 2.22209059554 + ], + "libelle_d_acheminement": "BELLECHASSAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22209059554, + 45.6486687844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5730cc324688b661696cbff34cecedaab8db3621", + "fields": { + "ligne_5": "GOULIER", + "code_commune_insee": "09334", + "libelle_d_acheminement": "VAL DE SOS", + "code_postal": "09220", + "nom_de_la_commune": "VAL DE SOS", + "coordonnees_gps": [ + 42.7733893717, + 1.51114862986 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51114862986, + 42.7733893717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a18692a8eb3ee346113cfc8746abfb465190c12c", + "fields": { + "code_commune_insee": "19029", + "nom_de_la_commune": "BRANCEILLES", + "code_postal": "19500", + "coordonnees_gps": [ + 45.0080597171, + 1.708482812 + ], + "libelle_d_acheminement": "BRANCEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.708482812, + 45.0080597171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbf2f3f8dc7585d3209faa31a0537c60164bf4e8", + "fields": { + "ligne_5": "SEM", + "code_commune_insee": "09334", + "libelle_d_acheminement": "VAL DE SOS", + "code_postal": "09220", + "nom_de_la_commune": "VAL DE SOS", + "coordonnees_gps": [ + 42.7733893717, + 1.51114862986 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51114862986, + 42.7733893717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f609704c640af585fca19f79f0b8870047fbfa71", + "fields": { + "code_commune_insee": "19035", + "nom_de_la_commune": "CHABRIGNAC", + "code_postal": "19350", + "coordonnees_gps": [ + 45.3140230281, + 1.34219381764 + ], + "libelle_d_acheminement": "CHABRIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34219381764, + 45.3140230281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d9825442ef5b37ef733c6bd3917e8b3fa8fcdc4", + "fields": { + "code_commune_insee": "09342", + "nom_de_la_commune": "STE SUZANNE", + "code_postal": "09130", + "coordonnees_gps": [ + 43.2055435306, + 1.3790061442 + ], + "libelle_d_acheminement": "STE SUZANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3790061442, + 43.2055435306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a85c7a738c8472d6d9b47f3380bbeb89d8d7d388", + "fields": { + "code_commune_insee": "19036", + "nom_de_la_commune": "CHAMBERET", + "code_postal": "19370", + "coordonnees_gps": [ + 45.6025012498, + 1.71951080332 + ], + "libelle_d_acheminement": "CHAMBERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71951080332, + 45.6025012498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38874318b69f19ca17cd1ab2de8af0f1a2e733aa", + "fields": { + "ligne_5": "PALIS", + "code_commune_insee": "10003", + "libelle_d_acheminement": "AIX VILLEMAUR PALIS", + "code_postal": "10190", + "nom_de_la_commune": "AIX VILLEMAUR PALIS", + "coordonnees_gps": [ + 48.1975745771, + 3.73632794113 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73632794113, + 48.1975745771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "458518bf7ff481e6a1f2565ac35df83733c311bb", + "fields": { + "code_commune_insee": "19039", + "nom_de_la_commune": "CHAMPAGNAC LA NOAILLE", + "code_postal": "19320", + "coordonnees_gps": [ + 45.3065974134, + 1.99824201855 + ], + "libelle_d_acheminement": "CHAMPAGNAC LA NOAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99824201855, + 45.3065974134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01e2bbc93f0c4f05f89d44cfc504b9343e67e0eb", + "fields": { + "code_commune_insee": "10004", + "nom_de_la_commune": "ALLIBAUDIERES", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5863997964, + 4.12292771236 + ], + "libelle_d_acheminement": "ALLIBAUDIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12292771236, + 48.5863997964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b7bb76cdb5f8cd08c38c1e7959fc0ce5ca863e6", + "fields": { + "code_commune_insee": "19041", + "nom_de_la_commune": "CHANAC LES MINES", + "code_postal": "19150", + "coordonnees_gps": [ + 45.2703621999, + 1.81731506278 + ], + "libelle_d_acheminement": "CHANAC LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81731506278, + 45.2703621999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6459c9efade8130e9670152f9914a01e9a12d94a", + "fields": { + "code_commune_insee": "10008", + "nom_de_la_commune": "ARGANCON", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2503053567, + 4.59608826027 + ], + "libelle_d_acheminement": "ARGANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59608826027, + 48.2503053567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df2cf6ce5cf7006b42920e80b2982c0d4c541888", + "fields": { + "code_commune_insee": "19043", + "nom_de_la_commune": "LA CHAPELLE AUX BROCS", + "code_postal": "19360", + "coordonnees_gps": [ + 45.1437616861, + 1.62661152472 + ], + "libelle_d_acheminement": "LA CHAPELLE AUX BROCS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62661152472, + 45.1437616861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92f63bf24a26bae1f8fccbd3b952f4ed1d5a6df9", + "fields": { + "code_commune_insee": "10009", + "nom_de_la_commune": "ARRELLES", + "code_postal": "10340", + "coordonnees_gps": [ + 48.0462178704, + 4.27438158257 + ], + "libelle_d_acheminement": "ARRELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27438158257, + 48.0462178704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4519c9735cd56e198d17945a47995a27a541116", + "fields": { + "code_commune_insee": "19045", + "nom_de_la_commune": "LA CHAPELLE ST GERAUD", + "code_postal": "19430", + "coordonnees_gps": [ + 45.0490483837, + 1.94780274708 + ], + "libelle_d_acheminement": "LA CHAPELLE ST GERAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94780274708, + 45.0490483837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d62559afeb3348f1b7d30d95e29d77b1a8944e3", + "fields": { + "code_commune_insee": "10014", + "nom_de_la_commune": "ASSENCIERES", + "code_postal": "10220", + "coordonnees_gps": [ + 48.3556065426, + 4.20154600861 + ], + "libelle_d_acheminement": "ASSENCIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20154600861, + 48.3556065426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00eb5ec3b1425d681c1b58dcd35613c76ce1b5de", + "fields": { + "code_commune_insee": "19051", + "nom_de_la_commune": "CHAUMEIL", + "code_postal": "19390", + "coordonnees_gps": [ + 45.4552902265, + 1.88020391469 + ], + "libelle_d_acheminement": "CHAUMEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88020391469, + 45.4552902265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1342b1bdb0e83aacafe873133549e118d27bc559", + "fields": { + "code_commune_insee": "10019", + "nom_de_la_commune": "VAL D AUZON", + "code_postal": "10220", + "coordonnees_gps": [ + 48.4004769736, + 4.35930739825 + ], + "libelle_d_acheminement": "VAL D AUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35930739825, + 48.4004769736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "175c83ef6ab075d43995d0ecc7d7d9ec12c41028", + "fields": { + "code_commune_insee": "19056", + "nom_de_la_commune": "CLERGOUX", + "code_postal": "19320", + "coordonnees_gps": [ + 45.2759455396, + 1.95673708604 + ], + "libelle_d_acheminement": "CLERGOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95673708604, + 45.2759455396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00d5cf8b9529decd708e2def021d9988dc20cfd8", + "fields": { + "code_commune_insee": "10024", + "nom_de_la_commune": "AVREUIL", + "code_postal": "10130", + "coordonnees_gps": [ + 48.0531394763, + 3.99802844236 + ], + "libelle_d_acheminement": "AVREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99802844236, + 48.0531394763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "172505c04821fb7497bd495e8ee8019572ac8139", + "fields": { + "code_commune_insee": "19060", + "nom_de_la_commune": "CONDAT SUR GANAVEIX", + "code_postal": "19140", + "coordonnees_gps": [ + 45.4824773803, + 1.59889305142 + ], + "libelle_d_acheminement": "CONDAT SUR GANAVEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59889305142, + 45.4824773803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b02857190cade28d76cf383a6757ef3f586e03c4", + "fields": { + "code_commune_insee": "10030", + "nom_de_la_commune": "BARBEREY ST SULPICE", + "code_postal": "10600", + "coordonnees_gps": [ + 48.3271986159, + 4.01643187202 + ], + "libelle_d_acheminement": "BARBEREY ST SULPICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01643187202, + 48.3271986159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e1ae2bb56ec8f6bcc3553f53fd2327ca8bb735d", + "fields": { + "code_commune_insee": "19072", + "nom_de_la_commune": "DONZENAC", + "code_postal": "19270", + "coordonnees_gps": [ + 45.23129159, + 1.52635846524 + ], + "libelle_d_acheminement": "DONZENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52635846524, + 45.23129159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "740a9b78df904cbba1623f6d321c99649dd6339d", + "fields": { + "code_commune_insee": "10031", + "nom_de_la_commune": "BARBUISE", + "code_postal": "10400", + "coordonnees_gps": [ + 48.5509217232, + 3.562035391 + ], + "libelle_d_acheminement": "BARBUISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.562035391, + 48.5509217232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e16928abba0a4e249364a976c3939226f7bf9208", + "fields": { + "code_commune_insee": "19077", + "nom_de_la_commune": "ESTIVALS", + "code_postal": "19600", + "coordonnees_gps": [ + 45.0308663151, + 1.45856989292 + ], + "libelle_d_acheminement": "ESTIVALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45856989292, + 45.0308663151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1c812b5489d657e188caf51a2b6a293a3e16ab6", + "fields": { + "code_commune_insee": "10032", + "nom_de_la_commune": "BAROVILLE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.1827443847, + 4.74092531324 + ], + "libelle_d_acheminement": "BAROVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74092531324, + 48.1827443847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea67cb16d3989cbaf6cf594f3cb1ec7beeccbb25", + "fields": { + "code_commune_insee": "19079", + "nom_de_la_commune": "EYBURIE", + "code_postal": "19140", + "coordonnees_gps": [ + 45.4690737187, + 1.64470023601 + ], + "libelle_d_acheminement": "EYBURIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64470023601, + 45.4690737187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bbbfbad50d378c6b9735ab3697e53ee65283d69", + "fields": { + "code_commune_insee": "10049", + "nom_de_la_commune": "LES BORDES AUMONT", + "code_postal": "10800", + "coordonnees_gps": [ + 48.1880650067, + 4.11899705959 + ], + "libelle_d_acheminement": "LES BORDES AUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11899705959, + 48.1880650067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4adba0e1de99332d6fb6915e73baa1fbbd1bd4ef", + "fields": { + "code_commune_insee": "19082", + "nom_de_la_commune": "FAVARS", + "code_postal": "19330", + "coordonnees_gps": [ + 45.2632599727, + 1.67035512416 + ], + "libelle_d_acheminement": "FAVARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67035512416, + 45.2632599727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d853eca356af4bd9d177585646fa7b5562789e1", + "fields": { + "code_commune_insee": "10050", + "nom_de_la_commune": "BOSSANCOURT", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2832853612, + 4.61146739237 + ], + "libelle_d_acheminement": "BOSSANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61146739237, + 48.2832853612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7628778bde1e1ac2253039303014acb66c120c0", + "fields": { + "code_commune_insee": "19097", + "nom_de_la_commune": "LAFAGE SUR SOMBRE", + "code_postal": "19320", + "coordonnees_gps": [ + 45.2926824126, + 2.07691880797 + ], + "libelle_d_acheminement": "LAFAGE SUR SOMBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07691880797, + 45.2926824126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e7551f3c128156dcd185dd2b47b16537674d7e7", + "fields": { + "ligne_5": "VILLEPART", + "code_commune_insee": "10060", + "libelle_d_acheminement": "BREVIANDES", + "code_postal": "10450", + "nom_de_la_commune": "BREVIANDES", + "coordonnees_gps": [ + 48.2562259501, + 4.10756293028 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10756293028, + 48.2562259501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05965a236a3c7b0a6629e781b0283000aa81e2cb", + "fields": { + "code_commune_insee": "19121", + "nom_de_la_commune": "LUBERSAC", + "code_postal": "19210", + "coordonnees_gps": [ + 45.454027392, + 1.40027554352 + ], + "libelle_d_acheminement": "LUBERSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40027554352, + 45.454027392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fb1b01b7d772261b29366984cea62a3931339fa", + "fields": { + "code_commune_insee": "10065", + "nom_de_la_commune": "BRILLECOURT", + "code_postal": "10240", + "coordonnees_gps": [ + 48.4771455797, + 4.37072298984 + ], + "libelle_d_acheminement": "BRILLECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37072298984, + 48.4771455797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a709904b8137b6f0e8aed7089d7e7b855662298f", + "fields": { + "code_commune_insee": "19132", + "nom_de_la_commune": "MENOIRE", + "code_postal": "19190", + "coordonnees_gps": [ + 45.1054780025, + 1.79311643807 + ], + "libelle_d_acheminement": "MENOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79311643807, + 45.1054780025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b95c66b96791fcfd9ad0bf4010f292509c827ed", + "fields": { + "code_commune_insee": "10069", + "nom_de_la_commune": "BUXIERES SUR ARCE", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1371746662, + 4.45605728723 + ], + "libelle_d_acheminement": "BUXIERES SUR ARCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45605728723, + 48.1371746662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34910457aec442afae5746bc9d1d7c6c1790d574", + "fields": { + "code_commune_insee": "19133", + "nom_de_la_commune": "MERCOEUR", + "code_postal": "19430", + "coordonnees_gps": [ + 45.0115300882, + 1.95247311189 + ], + "libelle_d_acheminement": "MERCOEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95247311189, + 45.0115300882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d3f768d171f0e988dcb8b017ee8643b39248bad", + "fields": { + "code_commune_insee": "10072", + "nom_de_la_commune": "LA CHAISE", + "code_postal": "10500", + "coordonnees_gps": [ + 48.358428601, + 4.67140610567 + ], + "libelle_d_acheminement": "LA CHAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67140610567, + 48.358428601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e3b44322ad28f06fc7a780ed385e96cbb1d2f26", + "fields": { + "code_commune_insee": "19134", + "nom_de_la_commune": "MERLINES", + "code_postal": "19340", + "coordonnees_gps": [ + 45.6253424705, + 2.45844193074 + ], + "libelle_d_acheminement": "MERLINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45844193074, + 45.6253424705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11324414d3518eb6ead4510537dc8bd6d7e964e9", + "fields": { + "code_commune_insee": "10076", + "nom_de_la_commune": "CHAMPIGNOL LEZ MONDEVILLE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.1252290684, + 4.67939293455 + ], + "libelle_d_acheminement": "CHAMPIGNOL LEZ MONDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67939293455, + 48.1252290684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51632bb1a8f37e03dde1afe353831fb461a04671", + "fields": { + "code_commune_insee": "19139", + "nom_de_la_commune": "MILLEVACHES", + "code_postal": "19290", + "coordonnees_gps": [ + 45.6456743847, + 2.08926438394 + ], + "libelle_d_acheminement": "MILLEVACHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08926438394, + 45.6456743847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34d06a94cd17accc5acb71d36d432ef6d64e5f65", + "fields": { + "code_commune_insee": "10081", + "nom_de_la_commune": "LA CHAPELLE ST LUC", + "code_postal": "10600", + "coordonnees_gps": [ + 48.3161316832, + 4.03517553523 + ], + "libelle_d_acheminement": "LA CHAPELLE ST LUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03517553523, + 48.3161316832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "876418fad867fbbbc595f776b95f57b49eec61b7", + "fields": { + "code_commune_insee": "19156", + "nom_de_la_commune": "PALAZINGES", + "code_postal": "19190", + "coordonnees_gps": [ + 45.1645183918, + 1.69754162578 + ], + "libelle_d_acheminement": "PALAZINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69754162578, + 45.1645183918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d56a5d30793c97fc1f7d71274fd1cfaffbb4e70", + "fields": { + "code_commune_insee": "10084", + "nom_de_la_commune": "CHARMONT SOUS BARBUISE", + "code_postal": "10150", + "coordonnees_gps": [ + 48.4150600401, + 4.18047013925 + ], + "libelle_d_acheminement": "CHARMONT SOUS BARBUISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18047013925, + 48.4150600401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05c9e919eeb284b45a1561c9999936f816f0d42f", + "fields": { + "code_commune_insee": "19180", + "nom_de_la_commune": "ST ANGEL", + "code_postal": "19200", + "coordonnees_gps": [ + 45.4941878032, + 2.23150721951 + ], + "libelle_d_acheminement": "ST ANGEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23150721951, + 45.4941878032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf3fe24b5544a342df3042b09ebc85ca5b9f2ae0", + "fields": { + "ligne_5": "FONTAINE LUYERES", + "code_commune_insee": "10084", + "libelle_d_acheminement": "CHARMONT SOUS BARBUISE", + "code_postal": "10150", + "nom_de_la_commune": "CHARMONT SOUS BARBUISE", + "coordonnees_gps": [ + 48.4150600401, + 4.18047013925 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18047013925, + 48.4150600401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9f4b03362ec36a4fbb2088e7b4d36e501cffba5", + "fields": { + "code_commune_insee": "19189", + "nom_de_la_commune": "ST BONNET LES TOURS DE MERLE", + "code_postal": "19430", + "coordonnees_gps": [ + 45.0549433234, + 2.05205394933 + ], + "libelle_d_acheminement": "ST BONNET LES TOURS DE MERLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05205394933, + 45.0549433234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0986201de46053b018e47c57b4d5c9138eebd99c", + "fields": { + "code_commune_insee": "10087", + "nom_de_la_commune": "CHASEREY", + "code_postal": "10210", + "coordonnees_gps": [ + 47.9530607748, + 4.07447909576 + ], + "libelle_d_acheminement": "CHASEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07447909576, + 47.9530607748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4764ae0f09fccbe10848ec639882fad7dab8c721", + "fields": { + "code_commune_insee": "19191", + "nom_de_la_commune": "ST CERNIN DE LARCHE", + "code_postal": "19600", + "coordonnees_gps": [ + 45.0919444107, + 1.41237097897 + ], + "libelle_d_acheminement": "ST CERNIN DE LARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41237097897, + 45.0919444107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "688ed20969045a9f6378a03b8b2c4cbcc2130edd", + "fields": { + "code_commune_insee": "10092", + "nom_de_la_commune": "CHAUFFOUR LES BAILLY", + "code_postal": "10110", + "coordonnees_gps": [ + 48.1856806779, + 4.30967778622 + ], + "libelle_d_acheminement": "CHAUFFOUR LES BAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30967778622, + 48.1856806779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad32079f37f4fe787b1ecb9daf0f6d7925682352", + "fields": { + "code_commune_insee": "19192", + "nom_de_la_commune": "ST CHAMANT", + "code_postal": "19380", + "coordonnees_gps": [ + 45.1266782862, + 1.89882074872 + ], + "libelle_d_acheminement": "ST CHAMANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89882074872, + 45.1266782862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15640178d76abc4c15ce3d8006ec5e943c9b235a", + "fields": { + "code_commune_insee": "10094", + "nom_de_la_commune": "CHAVANGES", + "code_postal": "10330", + "coordonnees_gps": [ + 48.5158465508, + 4.56655874954 + ], + "libelle_d_acheminement": "CHAVANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56655874954, + 48.5158465508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00002e5754919b039db621a8e26a11128ce5451c", + "fields": { + "code_commune_insee": "19194", + "nom_de_la_commune": "ST CLEMENT", + "code_postal": "19700", + "coordonnees_gps": [ + 45.3308184051, + 1.68701999554 + ], + "libelle_d_acheminement": "ST CLEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68701999554, + 45.3308184051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc0a0f05470667afc732f4c0d2a285243ebd41e1", + "fields": { + "code_commune_insee": "10096", + "nom_de_la_commune": "CHENNEGY", + "code_postal": "10190", + "coordonnees_gps": [ + 48.2170539239, + 3.84917512614 + ], + "libelle_d_acheminement": "CHENNEGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84917512614, + 48.2170539239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "756287a183c63fbe5f69efc7a4816ebd1ba8d319", + "fields": { + "code_commune_insee": "19200", + "nom_de_la_commune": "ST ETIENNE LA GENESTE", + "code_postal": "19160", + "coordonnees_gps": [ + 45.4506998857, + 2.34906404541 + ], + "libelle_d_acheminement": "ST ETIENNE LA GENESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34906404541, + 45.4506998857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42a97f6f5645d17ac7c7b3c73518e50f9c5a86b5", + "fields": { + "code_commune_insee": "10107", + "nom_de_la_commune": "COURSAN EN OTHE", + "code_postal": "10130", + "coordonnees_gps": [ + 48.0778186819, + 3.82587613771 + ], + "libelle_d_acheminement": "COURSAN EN OTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82587613771, + 48.0778186819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9283e00ca54bd5f6d5e6d3036d9aba718565f2f", + "fields": { + "code_commune_insee": "19203", + "nom_de_la_commune": "STE FORTUNADE", + "code_postal": "19490", + "coordonnees_gps": [ + 45.2069322003, + 1.76313688229 + ], + "libelle_d_acheminement": "STE FORTUNADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76313688229, + 45.2069322003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c2759c7a5909fe2b28181d97256c5f926269db5", + "fields": { + "code_commune_insee": "10108", + "nom_de_la_commune": "COURTAOULT", + "code_postal": "10130", + "coordonnees_gps": [ + 48.0248110791, + 3.87198564953 + ], + "libelle_d_acheminement": "COURTAOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87198564953, + 48.0248110791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9481defd7137da613374dda2a48a12569871cb02", + "fields": { + "code_commune_insee": "19204", + "nom_de_la_commune": "ST FREJOUX", + "code_postal": "19200", + "coordonnees_gps": [ + 45.5556968719, + 2.37794414526 + ], + "libelle_d_acheminement": "ST FREJOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37794414526, + 45.5556968719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac69cdd9b425c3a1b115c2109a3fbbf33f862b43", + "fields": { + "code_commune_insee": "10113", + "nom_de_la_commune": "COUVIGNON", + "code_postal": "10200", + "coordonnees_gps": [ + 48.204390818, + 4.66976546789 + ], + "libelle_d_acheminement": "COUVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66976546789, + 48.204390818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3741b34023223e0cc45ef26839ece590d3de7bb", + "fields": { + "code_commune_insee": "19215", + "nom_de_la_commune": "ST JULIEN LE PELERIN", + "code_postal": "19430", + "coordonnees_gps": [ + 45.001798962, + 2.06379083317 + ], + "libelle_d_acheminement": "ST JULIEN LE PELERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06379083317, + 45.001798962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f28b0fcf39d9bbe33841e4406e22e64482b28c48", + "fields": { + "ligne_5": "VAL PERDU", + "code_commune_insee": "10113", + "libelle_d_acheminement": "COUVIGNON", + "code_postal": "10200", + "nom_de_la_commune": "COUVIGNON", + "coordonnees_gps": [ + 48.204390818, + 4.66976546789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66976546789, + 48.204390818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97ebcf7fc01d0a22dd2ed2b008e27c49b415a568", + "fields": { + "code_commune_insee": "19221", + "nom_de_la_commune": "ST MARTIAL ENTRAYGUES", + "code_postal": "19400", + "coordonnees_gps": [ + 45.1273004065, + 1.96861582967 + ], + "libelle_d_acheminement": "ST MARTIAL ENTRAYGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96861582967, + 45.1273004065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24dc09855c13a28b086ed2e3114e6176830f79d0", + "fields": { + "code_commune_insee": "10115", + "nom_de_la_commune": "CRENEY PRES TROYES", + "code_postal": "10150", + "coordonnees_gps": [ + 48.342847974, + 4.13898615195 + ], + "libelle_d_acheminement": "CRENEY PRES TROYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13898615195, + 48.342847974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86d870b2c0bce3c1d924fb3973c7533c0c4f0157", + "fields": { + "code_commune_insee": "19233", + "nom_de_la_commune": "ST PARDOUX LE VIEUX", + "code_postal": "19200", + "coordonnees_gps": [ + 45.6022320235, + 2.27197616263 + ], + "libelle_d_acheminement": "ST PARDOUX LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27197616263, + 45.6022320235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43c05c0013bb6712029adf8ba81bec7eb812c66d", + "fields": { + "code_commune_insee": "10117", + "nom_de_la_commune": "CRESPY LE NEUF", + "code_postal": "10500", + "coordonnees_gps": [ + 48.3984963901, + 4.60980302355 + ], + "libelle_d_acheminement": "CRESPY LE NEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60980302355, + 48.3984963901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7415c6a2700c7d82fc5a1bc8a3fa089183bda3be", + "fields": { + "code_commune_insee": "19234", + "nom_de_la_commune": "ST PARDOUX L ORTIGIER", + "code_postal": "19270", + "coordonnees_gps": [ + 45.2998663219, + 1.58155594244 + ], + "libelle_d_acheminement": "ST PARDOUX L ORTIGIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58155594244, + 45.2998663219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa8395c85f5ee4aea92d6b7fd5fe259273e85c34", + "fields": { + "code_commune_insee": "10123", + "nom_de_la_commune": "DIENVILLE", + "code_postal": "10500", + "coordonnees_gps": [ + 48.3297297619, + 4.5139323628 + ], + "libelle_d_acheminement": "DIENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5139323628, + 48.3297297619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a7fb079199dbc9b1f548dfb442fccc903a77e87", + "fields": { + "code_commune_insee": "19246", + "nom_de_la_commune": "ST VIANCE", + "code_postal": "19240", + "coordonnees_gps": [ + 45.2102922064, + 1.46418044061 + ], + "libelle_d_acheminement": "ST VIANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46418044061, + 45.2102922064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b51198f5f00bf62a315dc35456f465410b68e08", + "fields": { + "code_commune_insee": "10130", + "nom_de_la_commune": "DOSNON", + "code_postal": "10700", + "coordonnees_gps": [ + 48.6149582778, + 4.24653182563 + ], + "libelle_d_acheminement": "DOSNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24653182563, + 48.6149582778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b16ed0d4b6a9305349b3602b063d64b1ac56b381", + "fields": { + "code_commune_insee": "19255", + "nom_de_la_commune": "SEILHAC", + "code_postal": "19700", + "coordonnees_gps": [ + 45.3668078049, + 1.72303452473 + ], + "libelle_d_acheminement": "SEILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72303452473, + 45.3668078049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11b6ce16c3fdd6dc50c163e0c80d2a10f16930ac", + "fields": { + "code_commune_insee": "10132", + "nom_de_la_commune": "DROUPT STE MARIE", + "code_postal": "10170", + "coordonnees_gps": [ + 48.5020825173, + 3.93946313114 + ], + "libelle_d_acheminement": "DROUPT STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93946313114, + 48.5020825173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5478b8f2de7932277a1cce44abd236846b90e840", + "fields": { + "code_commune_insee": "19257", + "nom_de_la_commune": "SERILHAC", + "code_postal": "19190", + "coordonnees_gps": [ + 45.0983013338, + 1.73319338162 + ], + "libelle_d_acheminement": "SERILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73319338162, + 45.0983013338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "161cc856c7add888cff3aa37d9f4af59ba114acf", + "fields": { + "code_commune_insee": "10137", + "nom_de_la_commune": "ENGENTE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2800809608, + 4.76374569172 + ], + "libelle_d_acheminement": "ENGENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76374569172, + 48.2800809608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55af3d4222a4e98d0c3da7133f45cbd4c1f7174b", + "fields": { + "code_commune_insee": "19270", + "nom_de_la_commune": "TROCHE", + "code_postal": "19230", + "coordonnees_gps": [ + 45.396965868, + 1.44794561231 + ], + "libelle_d_acheminement": "TROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44794561231, + 45.396965868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81b66b33bad3bcc478a76c64b2658e4df7138069", + "fields": { + "code_commune_insee": "10140", + "nom_de_la_commune": "ERVY LE CHATEL", + "code_postal": "10130", + "coordonnees_gps": [ + 48.0557945163, + 3.90532960286 + ], + "libelle_d_acheminement": "ERVY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90532960286, + 48.0557945163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cc09aa019ac523084f902fd1900bfb4697de1cb", + "fields": { + "code_commune_insee": "19272", + "nom_de_la_commune": "TULLE", + "code_postal": "19000", + "coordonnees_gps": [ + 45.2731516999, + 1.76313875655 + ], + "libelle_d_acheminement": "TULLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76313875655, + 45.2731516999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "088cd0c41a1fe219673a335c450b772998cf8467", + "fields": { + "ligne_5": "THUISY", + "code_commune_insee": "10142", + "libelle_d_acheminement": "ESTISSAC", + "code_postal": "10190", + "nom_de_la_commune": "ESTISSAC", + "coordonnees_gps": [ + 48.2557294277, + 3.81076673969 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81076673969, + 48.2557294277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aae71892f5a43daf5c8c146334e1002ac1380b10", + "fields": { + "code_commune_insee": "19278", + "nom_de_la_commune": "VARETZ", + "code_postal": "19240", + "coordonnees_gps": [ + 45.1887606718, + 1.43403558868 + ], + "libelle_d_acheminement": "VARETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43403558868, + 45.1887606718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64ccfcbd31cdcf8e5e1e2fdef998717d41185a93", + "fields": { + "code_commune_insee": "10144", + "nom_de_la_commune": "ETRELLES SUR AUBE", + "code_postal": "10170", + "coordonnees_gps": [ + 48.5592832077, + 3.8771042148 + ], + "libelle_d_acheminement": "ETRELLES SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8771042148, + 48.5592832077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f77dbef878f09a8fed62618dbc7384d1a7b19a75", + "fields": { + "code_commune_insee": "19280", + "nom_de_la_commune": "VEGENNES", + "code_postal": "19120", + "coordonnees_gps": [ + 44.9822250905, + 1.75103935795 + ], + "libelle_d_acheminement": "VEGENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75103935795, + 44.9822250905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84551aa0c8dc9454ce9ea910ea7484233a5a5118", + "fields": { + "code_commune_insee": "10145", + "nom_de_la_commune": "FAUX VILLECERF", + "code_postal": "10290", + "coordonnees_gps": [ + 48.3298226873, + 3.7399683031 + ], + "libelle_d_acheminement": "FAUX VILLECERF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7399683031, + 48.3298226873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68cc23ce3a8094bd8cb4400a6c94b0e1dc4ca930", + "fields": { + "code_commune_insee": "19281", + "nom_de_la_commune": "VEIX", + "code_postal": "19260", + "coordonnees_gps": [ + 45.5013644265, + 1.83804197666 + ], + "libelle_d_acheminement": "VEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83804197666, + 45.5013644265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fc0d33187a103af8380d615c2c344a9c347f15a", + "fields": { + "code_commune_insee": "10156", + "nom_de_la_commune": "FONTVANNES", + "code_postal": "10190", + "coordonnees_gps": [ + 48.2823364218, + 3.87111996216 + ], + "libelle_d_acheminement": "FONTVANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87111996216, + 48.2823364218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f20dc27628d3b86549aa3cfeb13f3a7f5035e522", + "fields": { + "code_commune_insee": "19288", + "nom_de_la_commune": "VOUTEZAC", + "code_postal": "19130", + "coordonnees_gps": [ + 45.2931226913, + 1.44040079279 + ], + "libelle_d_acheminement": "VOUTEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44040079279, + 45.2931226913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d84dc39763974bfa01cddb9a80c3f193d8e2f5ba", + "fields": { + "code_commune_insee": "10164", + "nom_de_la_commune": "GELANNES", + "code_postal": "10100", + "coordonnees_gps": [ + 48.4754200511, + 3.6678407267 + ], + "libelle_d_acheminement": "GELANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6678407267, + 48.4754200511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2151fa903251101af09b98ab67384e5ccad66f04", + "fields": { + "code_commune_insee": "19289", + "nom_de_la_commune": "YSSANDON", + "code_postal": "19310", + "coordonnees_gps": [ + 45.2044238204, + 1.38366828391 + ], + "libelle_d_acheminement": "YSSANDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38366828391, + 45.2044238204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4941b59d8190d66ac6f51c726d55cfec995b3789", + "fields": { + "code_commune_insee": "10166", + "nom_de_la_commune": "LES GRANDES CHAPELLES", + "code_postal": "10170", + "coordonnees_gps": [ + 48.4684641557, + 4.02789249999 + ], + "libelle_d_acheminement": "LES GRANDES CHAPELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02789249999, + 48.4684641557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a484c11958b18a5954bb15fbad721adec0e25ae4", + "fields": { + "code_commune_insee": "21008", + "nom_de_la_commune": "ALISE STE REINE", + "code_postal": "21150", + "coordonnees_gps": [ + 47.5355145985, + 4.48820121343 + ], + "libelle_d_acheminement": "ALISE STE REINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48820121343, + 47.5355145985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0512fd66d501d6065fb975a3411b1a8e5abfd931", + "fields": { + "code_commune_insee": "10172", + "nom_de_la_commune": "HERBISSE", + "code_postal": "10700", + "coordonnees_gps": [ + 48.6151829352, + 4.12161191885 + ], + "libelle_d_acheminement": "HERBISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12161191885, + 48.6151829352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcd34ed571d5a6acb45ccc5e4a60bf812e301a45", + "fields": { + "code_commune_insee": "21011", + "nom_de_la_commune": "AMPILLY LES BORDES", + "code_postal": "21450", + "coordonnees_gps": [ + 47.6389194024, + 4.62698815562 + ], + "libelle_d_acheminement": "AMPILLY LES BORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62698815562, + 47.6389194024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b8c7f3bfdb79db82343f7f6e82e4db8d0ea35f8", + "fields": { + "code_commune_insee": "10173", + "nom_de_la_commune": "ISLE AUMONT", + "code_postal": "10800", + "coordonnees_gps": [ + 48.2054661706, + 4.12228896976 + ], + "libelle_d_acheminement": "ISLE AUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12228896976, + 48.2054661706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f90c7341803af7347d33c74c5550e1b49c4b5de5", + "fields": { + "code_commune_insee": "21016", + "nom_de_la_commune": "ARCEAU", + "code_postal": "21310", + "coordonnees_gps": [ + 47.3759150158, + 5.19629196424 + ], + "libelle_d_acheminement": "ARCEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19629196424, + 47.3759150158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fecf04b8ed62ecfd5b066adcdcb5bee13edb7a9d", + "fields": { + "code_commune_insee": "10174", + "nom_de_la_commune": "ISLE AUBIGNY", + "code_postal": "10240", + "coordonnees_gps": [ + 48.5438287791, + 4.28206755992 + ], + "libelle_d_acheminement": "ISLE AUBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28206755992, + 48.5438287791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7791d38804096e84fb12c96e62888adab0fd3c6c", + "fields": { + "code_commune_insee": "21020", + "nom_de_la_commune": "ARCONCEY", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2158291471, + 4.46108652997 + ], + "libelle_d_acheminement": "ARCONCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46108652997, + 47.2158291471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aebc5ec5e6eb0fe6f60a91694b02ef9190d54d7b", + "fields": { + "code_commune_insee": "10175", + "nom_de_la_commune": "JASSEINES", + "code_postal": "10330", + "coordonnees_gps": [ + 48.5090150718, + 4.39400392389 + ], + "libelle_d_acheminement": "JASSEINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39400392389, + 48.5090150718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "499a81dee250a902a1c1dc84f1801d0a7ca8d028", + "fields": { + "code_commune_insee": "21026", + "nom_de_la_commune": "ASNIERES EN MONTAGNE", + "code_postal": "21500", + "coordonnees_gps": [ + 47.7130312269, + 4.29307220961 + ], + "libelle_d_acheminement": "ASNIERES EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29307220961, + 47.7130312269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43159f172af44c3f06392e93b0b66a8db7b90f86", + "fields": { + "code_commune_insee": "10179", + "nom_de_la_commune": "JEUGNY", + "code_postal": "10320", + "coordonnees_gps": [ + 48.1156606446, + 4.05456641907 + ], + "libelle_d_acheminement": "JEUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05456641907, + 48.1156606446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fc30c60beb8f19bc408c9a96177584a9ead2eea", + "fields": { + "code_commune_insee": "21028", + "nom_de_la_commune": "ATHEE", + "code_postal": "21130", + "coordonnees_gps": [ + 47.2251419104, + 5.3617920944 + ], + "libelle_d_acheminement": "ATHEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3617920944, + 47.2251419104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17d1e7147e40a66f50bc01680c9f8ec174ef92f5", + "fields": { + "code_commune_insee": "10182", + "nom_de_la_commune": "JUVANCOURT", + "code_postal": "10310", + "coordonnees_gps": [ + 48.1165186849, + 4.81270579284 + ], + "libelle_d_acheminement": "JUVANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81270579284, + 48.1165186849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d834723b82a414066ee052310bac7ddf22ca28e", + "fields": { + "code_commune_insee": "21031", + "nom_de_la_commune": "AUBIGNY EN PLAINE", + "code_postal": "21170", + "coordonnees_gps": [ + 47.1277492064, + 5.16492120772 + ], + "libelle_d_acheminement": "AUBIGNY EN PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16492120772, + 47.1277492064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5020042f0a260f2451a1484639ead62fd40a4f9e", + "fields": { + "ligne_5": "LA VALLOTE", + "code_commune_insee": "10191", + "libelle_d_acheminement": "LAVAU", + "code_postal": "10150", + "nom_de_la_commune": "LAVAU", + "coordonnees_gps": [ + 48.3334867186, + 4.09283972542 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09283972542, + 48.3334867186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b4b07ca4b0776eaaea3eadbc2ecd9ecc8e22c42", + "fields": { + "code_commune_insee": "21032", + "nom_de_la_commune": "AUBIGNY LA RONCE", + "code_postal": "21340", + "coordonnees_gps": [ + 46.9880450918, + 4.59634588492 + ], + "libelle_d_acheminement": "AUBIGNY LA RONCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59634588492, + 46.9880450918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6594ee22e407a57885c9767717efd88d38cfa365", + "fields": { + "code_commune_insee": "10194", + "nom_de_la_commune": "LEVIGNY", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2978727553, + 4.70743033255 + ], + "libelle_d_acheminement": "LEVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70743033255, + 48.2978727553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3afd6111a42a55a420c46e3f0ce89884fccd9d48", + "fields": { + "code_commune_insee": "21035", + "nom_de_la_commune": "AUVILLARS SUR SAONE", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0592766074, + 5.10776303879 + ], + "libelle_d_acheminement": "AUVILLARS SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10776303879, + 47.0592766074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95731ce0de725881446b5f94152cf3ce1569c253", + "fields": { + "code_commune_insee": "10196", + "nom_de_la_commune": "LIGNIERES", + "code_postal": "10130", + "coordonnees_gps": [ + 47.9569372916, + 3.96407269438 + ], + "libelle_d_acheminement": "LIGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96407269438, + 47.9569372916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a64fef121438ec5be59bbb7c36d5cd5101dc844a", + "fields": { + "code_commune_insee": "21039", + "nom_de_la_commune": "AVELANGES", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5873364734, + 5.03060719887 + ], + "libelle_d_acheminement": "AVELANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03060719887, + 47.5873364734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eccbdd89d7ea2a3a1ae7421718242f1d6d0a4e09", + "fields": { + "code_commune_insee": "10197", + "nom_de_la_commune": "LIGNOL LE CHATEAU", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2134404984, + 4.81180296521 + ], + "libelle_d_acheminement": "LIGNOL LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81180296521, + 48.2134404984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46f089e49fe0b2634bad4b6fe7216f33f20d1024", + "fields": { + "code_commune_insee": "21048", + "nom_de_la_commune": "BARGES", + "code_postal": "21910", + "coordonnees_gps": [ + 47.2092455725, + 5.05951734595 + ], + "libelle_d_acheminement": "BARGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05951734595, + 47.2092455725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "109d40977142f6ee46fea59d41428bb3054cebb7", + "fields": { + "code_commune_insee": "10202", + "nom_de_la_commune": "LES LOGES MARGUERON", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0989054968, + 4.11142843878 + ], + "libelle_d_acheminement": "LES LOGES MARGUERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11142843878, + 48.0989054968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cc424c2e5a0957a30dc609253ab076f1f376c6f", + "fields": { + "code_commune_insee": "21051", + "nom_de_la_commune": "BAULME LA ROCHE", + "code_postal": "21410", + "coordonnees_gps": [ + 47.3480241996, + 4.79422345686 + ], + "libelle_d_acheminement": "BAULME LA ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79422345686, + 47.3480241996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68c464e31ec3b493f9741bfc019b6947c7448b10", + "fields": { + "code_commune_insee": "10205", + "nom_de_la_commune": "LONGPRE LE SEC", + "code_postal": "10140", + "coordonnees_gps": [ + 48.1876628751, + 4.52819150084 + ], + "libelle_d_acheminement": "LONGPRE LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52819150084, + 48.1876628751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65d58eedb0390fcbc0f15f112c29ac95299302fb", + "fields": { + "code_commune_insee": "21053", + "nom_de_la_commune": "BEAUMONT SUR VINGEANNE", + "code_postal": "21310", + "coordonnees_gps": [ + 47.4625396249, + 5.34749332128 + ], + "libelle_d_acheminement": "BEAUMONT SUR VINGEANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34749332128, + 47.4625396249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "643cda87b859826d9b1bf5a624d82cb029e9f22c", + "fields": { + "code_commune_insee": "10208", + "nom_de_la_commune": "LA LOUPTIERE THENARD", + "code_postal": "10400", + "coordonnees_gps": [ + 48.3848337142, + 3.43747423179 + ], + "libelle_d_acheminement": "LA LOUPTIERE THENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43747423179, + 48.3848337142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db4c4f046dc53835eb6b6764ab7cc0c5bde64439", + "fields": { + "code_commune_insee": "21055", + "nom_de_la_commune": "BEAUNOTTE", + "code_postal": "21510", + "coordonnees_gps": [ + 47.6813180742, + 4.7162410659 + ], + "libelle_d_acheminement": "BEAUNOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7162410659, + 47.6813180742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8949fcf64a3a8b13469196663c11933989a115fb", + "fields": { + "code_commune_insee": "10212", + "nom_de_la_commune": "MACHY", + "code_postal": "10320", + "coordonnees_gps": [ + 48.1456167821, + 4.03573129763 + ], + "libelle_d_acheminement": "MACHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03573129763, + 48.1456167821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "821f0cc40259bd60b75b62d2cf451769fd95ccc6", + "fields": { + "code_commune_insee": "21065", + "nom_de_la_commune": "BESSEY EN CHAUME", + "code_postal": "21360", + "coordonnees_gps": [ + 47.0874165911, + 4.74194703702 + ], + "libelle_d_acheminement": "BESSEY EN CHAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74194703702, + 47.0874165911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddd4299a8c71e16ecc432666021dc0316f41f0e8", + "fields": { + "code_commune_insee": "10224", + "nom_de_la_commune": "MARIGNY LE CHATEL", + "code_postal": "10350", + "coordonnees_gps": [ + 48.4016409293, + 3.72139203898 + ], + "libelle_d_acheminement": "MARIGNY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72139203898, + 48.4016409293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b694b6c84b45f4ded53bd3f2131219adea3cf56", + "fields": { + "code_commune_insee": "21066", + "nom_de_la_commune": "BESSEY LA COUR", + "code_postal": "21360", + "coordonnees_gps": [ + 47.1033767349, + 4.60499470224 + ], + "libelle_d_acheminement": "BESSEY LA COUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60499470224, + 47.1033767349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c06a52f580d6bbee2473ec35c69c3018c53a5dd", + "fields": { + "code_commune_insee": "10227", + "nom_de_la_commune": "MAROLLES SOUS LIGNIERES", + "code_postal": "10130", + "coordonnees_gps": [ + 47.9606826185, + 3.91959636064 + ], + "libelle_d_acheminement": "MAROLLES SOUS LIGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91959636064, + 47.9606826185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3844e9602d00f1ed7c227497f319fa7274b0382a", + "fields": { + "code_commune_insee": "21082", + "nom_de_la_commune": "BLANCEY", + "code_postal": "21320", + "coordonnees_gps": [ + 47.3027962841, + 4.46007256895 + ], + "libelle_d_acheminement": "BLANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46007256895, + 47.3027962841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64fd168013a682dee21ecaff3bdf356823ec2abf", + "fields": { + "code_commune_insee": "10231", + "nom_de_la_commune": "LE MERIOT", + "code_postal": "10400", + "coordonnees_gps": [ + 48.5105625489, + 3.44198941975 + ], + "libelle_d_acheminement": "LE MERIOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44198941975, + 48.5105625489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4af4a495eb499d099170f9cccbddd5c093999902", + "fields": { + "code_commune_insee": "21083", + "nom_de_la_commune": "BLANOT", + "code_postal": "21430", + "coordonnees_gps": [ + 47.1787083917, + 4.23562665908 + ], + "libelle_d_acheminement": "BLANOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23562665908, + 47.1787083917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1398405a69cf5bb94d07447b5f9a945643a87659", + "fields": { + "code_commune_insee": "10234", + "nom_de_la_commune": "MESGRIGNY", + "code_postal": "10170", + "coordonnees_gps": [ + 48.479960001, + 3.86431513011 + ], + "libelle_d_acheminement": "MESGRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86431513011, + 48.479960001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ef7bf7ab82650201d092f27040c1bc61d0b081b", + "fields": { + "code_commune_insee": "21084", + "nom_de_la_commune": "SOURCE SEINE", + "code_postal": "21690", + "coordonnees_gps": [ + 47.4889159636, + 4.6965588014 + ], + "libelle_d_acheminement": "SOURCE SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6965588014, + 47.4889159636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4e2e54c2eb46b0953cda1e87d2d3a6e8d8e53f3", + "fields": { + "code_commune_insee": "10238", + "nom_de_la_commune": "MESNIL ST PERE", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2511690464, + 4.34558452983 + ], + "libelle_d_acheminement": "MESNIL ST PERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34558452983, + 48.2511690464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3620413dc0048716e5bef0c785920e42ba403ac5", + "fields": { + "ligne_5": "ST GERMAIN SOURCE SEINE", + "code_commune_insee": "21084", + "libelle_d_acheminement": "SOURCE SEINE", + "code_postal": "21690", + "nom_de_la_commune": "SOURCE SEINE", + "coordonnees_gps": [ + 47.4889159636, + 4.6965588014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6965588014, + 47.4889159636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca0ab6a487ca341582f2acd7ed4f8c6523cbadb0", + "fields": { + "code_commune_insee": "10243", + "nom_de_la_commune": "MOLINS SUR AUBE", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4332955789, + 4.38844568734 + ], + "libelle_d_acheminement": "MOLINS SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38844568734, + 48.4332955789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "560adb79c963fed28fc8cc8ba7fe377ad5b61d9c", + "fields": { + "code_commune_insee": "21090", + "nom_de_la_commune": "BOUDREVILLE", + "code_postal": "21520", + "coordonnees_gps": [ + 47.9294547335, + 4.8328363763 + ], + "libelle_d_acheminement": "BOUDREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8328363763, + 47.9294547335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d447b4590eed3d03ad5a7d2469ba559e9cd541c9", + "fields": { + "code_commune_insee": "10245", + "nom_de_la_commune": "MONTAULIN", + "code_postal": "10270", + "coordonnees_gps": [ + 48.2479487774, + 4.1973065201 + ], + "libelle_d_acheminement": "MONTAULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1973065201, + 48.2479487774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10e4cfe6e24d9ee63150aacbddbfcca00c0a0dd0", + "fields": { + "code_commune_insee": "21095", + "nom_de_la_commune": "BOUSSELANGE", + "code_postal": "21250", + "coordonnees_gps": [ + 46.9939920712, + 5.25309460316 + ], + "libelle_d_acheminement": "BOUSSELANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25309460316, + 46.9939920712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f467e541101335bdcb071fc86f7ea8f030298f3", + "fields": { + "code_commune_insee": "10250", + "nom_de_la_commune": "MONTIER EN L ISLE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2695334218, + 4.68288952065 + ], + "libelle_d_acheminement": "MONTIER EN L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68288952065, + 48.2695334218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "121b0dcfb12c449778407334a71a8e2b8d961bf5", + "fields": { + "code_commune_insee": "21099", + "nom_de_la_commune": "BOUZE LES BEAUNE", + "code_postal": "21200", + "coordonnees_gps": [ + 47.0543679441, + 4.77184750805 + ], + "libelle_d_acheminement": "BOUZE LES BEAUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77184750805, + 47.0543679441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a536edf5de342833dba7ff3a23124de92955505b", + "fields": { + "code_commune_insee": "10255", + "nom_de_la_commune": "MONTREUIL SUR BARSE", + "code_postal": "10270", + "coordonnees_gps": [ + 48.2169516287, + 4.28658363089 + ], + "libelle_d_acheminement": "MONTREUIL SUR BARSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28658363089, + 48.2169516287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fee1e5d1b557c6ae2900bfe595ee4b371f79721d", + "fields": { + "code_commune_insee": "21118", + "nom_de_la_commune": "BUSSEROTTE ET MONTENAILLE", + "code_postal": "21580", + "coordonnees_gps": [ + 47.6625787147, + 4.98033576461 + ], + "libelle_d_acheminement": "BUSSEROTTE ET MONTENAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98033576461, + 47.6625787147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d00d2bfd39e6d821da506a36f68cb38c7af94b1d", + "fields": { + "code_commune_insee": "10264", + "nom_de_la_commune": "NOE LES MALLETS", + "code_postal": "10360", + "coordonnees_gps": [ + 48.0984070868, + 4.56182185285 + ], + "libelle_d_acheminement": "NOE LES MALLETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56182185285, + 48.0984070868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d36829668bb4f3c16613f71f6f9fe4b77bdffc11", + "fields": { + "code_commune_insee": "21127", + "nom_de_la_commune": "CHAIGNAY", + "code_postal": "21120", + "coordonnees_gps": [ + 47.4767317204, + 5.06048874496 + ], + "libelle_d_acheminement": "CHAIGNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06048874496, + 47.4767317204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a949450874343aa861feaf57107be24b1cdd26c9", + "fields": { + "code_commune_insee": "10270", + "nom_de_la_commune": "ONJON", + "code_postal": "10220", + "coordonnees_gps": [ + 48.3987860925, + 4.27579822531 + ], + "libelle_d_acheminement": "ONJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27579822531, + 48.3987860925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20879febea0564951dcf7921a672e31aa57967f3", + "fields": { + "code_commune_insee": "21136", + "nom_de_la_commune": "CHAMPAGNY", + "code_postal": "21440", + "coordonnees_gps": [ + 47.4615477148, + 4.76760990741 + ], + "libelle_d_acheminement": "CHAMPAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76760990741, + 47.4615477148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f00a8a85dbfba8136a94d74e83903dcd46c8881", + "fields": { + "code_commune_insee": "10271", + "nom_de_la_commune": "ORIGNY LE SEC", + "code_postal": "10510", + "coordonnees_gps": [ + 48.4630378717, + 3.77926165141 + ], + "libelle_d_acheminement": "ORIGNY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77926165141, + 48.4630378717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f6b2b7ec3eea0b67252c6138d32ae8fb065d0a4", + "fields": { + "code_commune_insee": "21140", + "nom_de_la_commune": "CHAMPIGNOLLES", + "code_postal": "21230", + "coordonnees_gps": [ + 47.0511019463, + 4.56775348817 + ], + "libelle_d_acheminement": "CHAMPIGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56775348817, + 47.0511019463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9010f403ec06daafc3bc3c3601440be2a97e3a2", + "fields": { + "code_commune_insee": "10278", + "nom_de_la_commune": "PARGUES", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0183119376, + 4.20486733483 + ], + "libelle_d_acheminement": "PARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20486733483, + 48.0183119376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60e991080e2d9576aac73f119f3d548a5c0e0dc0", + "fields": { + "code_commune_insee": "21141", + "nom_de_la_commune": "CHAMPRENAULT", + "code_postal": "21690", + "coordonnees_gps": [ + 47.4004814438, + 4.68028370836 + ], + "libelle_d_acheminement": "CHAMPRENAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68028370836, + 47.4004814438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef40ee6fddb36215f0804d646708917765482a9b", + "fields": { + "code_commune_insee": "10279", + "nom_de_la_commune": "PARS LES CHAVANGES", + "code_postal": "10330", + "coordonnees_gps": [ + 48.5173117634, + 4.50334630462 + ], + "libelle_d_acheminement": "PARS LES CHAVANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50334630462, + 48.5173117634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c80a5ce99b1308850d7b2f0509ad67f7b79c8d20", + "fields": { + "code_commune_insee": "21144", + "nom_de_la_commune": "CHARENCEY", + "code_postal": "21690", + "coordonnees_gps": [ + 47.4202471522, + 4.67046145441 + ], + "libelle_d_acheminement": "CHARENCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67046145441, + 47.4202471522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd809efaaf21d7e66cd8cbe923d8bd73de3bc3b9", + "fields": { + "code_commune_insee": "10280", + "nom_de_la_commune": "PARS LES ROMILLY", + "code_postal": "10100", + "coordonnees_gps": [ + 48.4812645725, + 3.72853000882 + ], + "libelle_d_acheminement": "PARS LES ROMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72853000882, + 48.4812645725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23573789a40da72977efdab81376f5a66e87e207", + "fields": { + "code_commune_insee": "21145", + "nom_de_la_commune": "CHARIGNY", + "code_postal": "21140", + "coordonnees_gps": [ + 47.4334660182, + 4.42062588907 + ], + "libelle_d_acheminement": "CHARIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42062588907, + 47.4334660182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7327899a67aa3d0361b32eaeb67ef605fe2767a", + "fields": { + "code_commune_insee": "10288", + "nom_de_la_commune": "PLAINES ST LANGE", + "code_postal": "10250", + "coordonnees_gps": [ + 47.9974095194, + 4.47394656864 + ], + "libelle_d_acheminement": "PLAINES ST LANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47394656864, + 47.9974095194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd704a25b4c767235c9c749fee42853275b14bd9", + "fields": { + "code_commune_insee": "21146", + "nom_de_la_commune": "CHARMES", + "code_postal": "21310", + "coordonnees_gps": [ + 47.3723080464, + 5.35030839785 + ], + "libelle_d_acheminement": "CHARMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35030839785, + 47.3723080464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0da76e138b5c8152de70c7fcb1a18fa30d6dc15", + "fields": { + "code_commune_insee": "10289", + "nom_de_la_commune": "PLANCY L ABBAYE", + "code_postal": "10380", + "coordonnees_gps": [ + 48.5851575322, + 3.98528853809 + ], + "libelle_d_acheminement": "PLANCY L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98528853809, + 48.5851575322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dda2cc3c1b3f8376112a0a128fcce525e5f4aa1a", + "fields": { + "code_commune_insee": "21149", + "nom_de_la_commune": "CHARREY SUR SEINE", + "code_postal": "21400", + "coordonnees_gps": [ + 47.9524790973, + 4.54026647468 + ], + "libelle_d_acheminement": "CHARREY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54026647468, + 47.9524790973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ea52ec30f286adcb9de789faa1a30c066342ad0", + "fields": { + "code_commune_insee": "10295", + "nom_de_la_commune": "POLISOT", + "code_postal": "10110", + "coordonnees_gps": [ + 48.0731308574, + 4.35467201881 + ], + "libelle_d_acheminement": "POLISOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35467201881, + 48.0731308574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65cbe16c3d38a647b6805c3a64b775201dec924c", + "fields": { + "code_commune_insee": "21152", + "nom_de_la_commune": "CHATEAUNEUF", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2193918621, + 4.65146586699 + ], + "libelle_d_acheminement": "CHATEAUNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65146586699, + 47.2193918621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d13b2cca398eebbb54131939b4350aae7a5edeb9", + "fields": { + "code_commune_insee": "10298", + "nom_de_la_commune": "PONT SUR SEINE", + "code_postal": "10400", + "coordonnees_gps": [ + 48.509386823, + 3.59718207099 + ], + "libelle_d_acheminement": "PONT SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59718207099, + 48.509386823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "867cbae66c20b170ef3c8306535a0c75bd5f42a8", + "fields": { + "ligne_5": "COURCHAMP", + "code_commune_insee": "21158", + "libelle_d_acheminement": "CHAUME ET COURCHAMP", + "code_postal": "21610", + "nom_de_la_commune": "CHAUME ET COURCHAMP", + "coordonnees_gps": [ + 47.5806895666, + 5.36162357765 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36162357765, + 47.5806895666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25b9da9fecb2a0763f5a24cc9bccfdacb03f61ae", + "fields": { + "code_commune_insee": "10302", + "nom_de_la_commune": "PRASLIN", + "code_postal": "10210", + "coordonnees_gps": [ + 48.0459143506, + 4.20718637657 + ], + "libelle_d_acheminement": "PRASLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20718637657, + 48.0459143506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad652a2c6219a5e71eafbb36c37be2a677ec217c", + "fields": { + "code_commune_insee": "21159", + "nom_de_la_commune": "LA CHAUME", + "code_postal": "21520", + "coordonnees_gps": [ + 47.8814002109, + 4.8228651027 + ], + "libelle_d_acheminement": "LA CHAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8228651027, + 47.8814002109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6cc05caf316484769a0bde02ade5eb975b47d3f", + "fields": { + "code_commune_insee": "10303", + "nom_de_la_commune": "PRECY NOTRE DAME", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4023333581, + 4.43620676129 + ], + "libelle_d_acheminement": "PRECY NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43620676129, + 48.4023333581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42069cdbd678c8e24b59229adee2b57d4b7082e0", + "fields": { + "code_commune_insee": "21172", + "nom_de_la_commune": "CHIVRES", + "code_postal": "21820", + "coordonnees_gps": [ + 46.9678867333, + 5.09111140101 + ], + "libelle_d_acheminement": "CHIVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09111140101, + 46.9678867333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2582b76a0600eb6ff3063b3c258f788205bd6bf0", + "fields": { + "code_commune_insee": "10304", + "nom_de_la_commune": "PRECY ST MARTIN", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4166599572, + 4.45638796255 + ], + "libelle_d_acheminement": "PRECY ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45638796255, + 48.4166599572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6238fe11185ff9393aae914370077747e6c2d95", + "fields": { + "code_commune_insee": "21173", + "nom_de_la_commune": "CHOREY LES BEAUNE", + "code_postal": "21200", + "coordonnees_gps": [ + 47.0494684617, + 4.86962267371 + ], + "libelle_d_acheminement": "CHOREY LES BEAUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86962267371, + 47.0494684617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b9d4d5d4331206f569744c1bf003afc6a96d092", + "fields": { + "code_commune_insee": "10309", + "nom_de_la_commune": "PRUSY", + "code_postal": "10210", + "coordonnees_gps": [ + 47.9739129756, + 4.05129486893 + ], + "libelle_d_acheminement": "PRUSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05129486893, + 47.9739129756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6943b7cdcb5ab2e3780897b37491ac2349110ea3", + "fields": { + "ligne_5": "PREMIERES", + "code_commune_insee": "21183", + "libelle_d_acheminement": "COLLONGES ET PREMIERES", + "code_postal": "21110", + "nom_de_la_commune": "COLLONGES ET PREMIERES", + "coordonnees_gps": [ + 47.2250095232, + 5.29242565659 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29242565659, + 47.2250095232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e80b6eecf07b59b936e1d6e97e7bb7ac5838afb", + "fields": { + "code_commune_insee": "10313", + "nom_de_la_commune": "RADONVILLIERS", + "code_postal": "10500", + "coordonnees_gps": [ + 48.3337407635, + 4.47438100931 + ], + "libelle_d_acheminement": "RADONVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47438100931, + 48.3337407635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2daccd8e456386bd0bb7ddd97f25f80ec2a3acdb", + "fields": { + "code_commune_insee": "21185", + "nom_de_la_commune": "COMBERTAULT", + "code_postal": "21200", + "coordonnees_gps": [ + 46.9921948598, + 4.90342366807 + ], + "libelle_d_acheminement": "COMBERTAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90342366807, + 46.9921948598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1181b083235a1d21cc8b93d73251626336af0c74", + "fields": { + "code_commune_insee": "10316", + "nom_de_la_commune": "RHEGES", + "code_postal": "10170", + "coordonnees_gps": [ + 48.5320121391, + 3.99460836996 + ], + "libelle_d_acheminement": "RHEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99460836996, + 48.5320121391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31cdd4321051608a6aade5ab1cb6ab8cffeb80e8", + "fields": { + "code_commune_insee": "21186", + "nom_de_la_commune": "COMBLANCHIEN", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1030661161, + 4.91805213591 + ], + "libelle_d_acheminement": "COMBLANCHIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91805213591, + 47.1030661161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2389490872b05bb3289e6087906751f4b0ede5ba", + "fields": { + "code_commune_insee": "10317", + "nom_de_la_commune": "LES RICEYS", + "code_postal": "10340", + "coordonnees_gps": [ + 47.9874878792, + 4.36950096332 + ], + "libelle_d_acheminement": "LES RICEYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36950096332, + 47.9874878792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1e2b1acdc5a316005403819ae89b7c660f2e97a", + "fields": { + "code_commune_insee": "21187", + "nom_de_la_commune": "COMMARIN", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2495525979, + 4.65314181407 + ], + "libelle_d_acheminement": "COMMARIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65314181407, + 47.2495525979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "707db2859a7ac0b3ce1150c0f1f4c5a0b318a6bb", + "fields": { + "code_commune_insee": "10324", + "nom_de_la_commune": "RONCENAY", + "code_postal": "10320", + "coordonnees_gps": [ + 48.1967315175, + 4.04486518985 + ], + "libelle_d_acheminement": "RONCENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04486518985, + 48.1967315175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3344738c88376d31424ad9d788bd0c9fd706d3a1", + "fields": { + "code_commune_insee": "21190", + "nom_de_la_commune": "CORCELLES LES ARTS", + "code_postal": "21190", + "coordonnees_gps": [ + 46.9450397158, + 4.79678522994 + ], + "libelle_d_acheminement": "CORCELLES LES ARTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79678522994, + 46.9450397158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "833c88ae0c7cbf5c4e4effafb7bdf56d6451f9b8", + "fields": { + "code_commune_insee": "10331", + "nom_de_la_commune": "RUMILLY LES VAUDES", + "code_postal": "10260", + "coordonnees_gps": [ + 48.1254003173, + 4.19515234884 + ], + "libelle_d_acheminement": "RUMILLY LES VAUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19515234884, + 48.1254003173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3925a832b4fdb1a76f4f7384e5399f67e9c70d63", + "fields": { + "code_commune_insee": "21192", + "nom_de_la_commune": "CORCELLES LES MONTS", + "code_postal": "21160", + "coordonnees_gps": [ + 47.3040555868, + 4.94246444675 + ], + "libelle_d_acheminement": "CORCELLES LES MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94246444675, + 47.3040555868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdda242591b97bacc83d82ac0e788142928f6335", + "fields": { + "code_commune_insee": "10333", + "nom_de_la_commune": "ST ANDRE LES VERGERS", + "code_postal": "10120", + "coordonnees_gps": [ + 48.2782659904, + 4.04840305057 + ], + "libelle_d_acheminement": "ST ANDRE LES VERGERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04840305057, + 48.2782659904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11505d23f376e9b5fb00526cc557565f8106a3ef", + "fields": { + "code_commune_insee": "21200", + "nom_de_la_commune": "COUCHEY", + "code_postal": "21160", + "coordonnees_gps": [ + 47.2620834886, + 4.96092501578 + ], + "libelle_d_acheminement": "COUCHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96092501578, + 47.2620834886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "baef6d759a6dd02f78267660e14ca4d48677c63a", + "fields": { + "code_commune_insee": "10344", + "nom_de_la_commune": "ST LEGER PRES TROYES", + "code_postal": "10800", + "coordonnees_gps": [ + 48.2395381009, + 4.07306377461 + ], + "libelle_d_acheminement": "ST LEGER PRES TROYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07306377461, + 48.2395381009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1fbbd0a66996b9de415bc63be04aff5524ddfae", + "fields": { + "code_commune_insee": "21203", + "nom_de_la_commune": "COURCELLES FREMOY", + "code_postal": "21460", + "coordonnees_gps": [ + 47.4471425118, + 4.18664982284 + ], + "libelle_d_acheminement": "COURCELLES FREMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18664982284, + 47.4471425118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19280d459933768f96b9f1d8f9ef8c529eb7dba9", + "fields": { + "code_commune_insee": "10345", + "nom_de_la_commune": "ST LEGER SOUS BRIENNE", + "code_postal": "10500", + "coordonnees_gps": [ + 48.4113235789, + 4.50613488827 + ], + "libelle_d_acheminement": "ST LEGER SOUS BRIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50613488827, + 48.4113235789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7783fdb6bd8a94862690ff8905525d9faaa9359d", + "fields": { + "code_commune_insee": "21207", + "nom_de_la_commune": "COURLON", + "code_postal": "21580", + "coordonnees_gps": [ + 47.64572911, + 5.00801867422 + ], + "libelle_d_acheminement": "COURLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00801867422, + 47.64572911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d427df6eb8f6adba0d845c63497aec12c1e0d00d", + "fields": { + "code_commune_insee": "10350", + "nom_de_la_commune": "ST MARDS EN OTHE", + "code_postal": "10160", + "coordonnees_gps": [ + 48.1634046099, + 3.78937817149 + ], + "libelle_d_acheminement": "ST MARDS EN OTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78937817149, + 48.1634046099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c03465b9042d66b0730c4b7b783313d87aca673", + "fields": { + "code_commune_insee": "21219", + "nom_de_la_commune": "CURTIL VERGY", + "code_postal": "21220", + "coordonnees_gps": [ + 47.1707777407, + 4.89403990669 + ], + "libelle_d_acheminement": "CURTIL VERGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89403990669, + 47.1707777407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ffe184c9a7e63d23a4d6cfd9a63706858ef952e", + "fields": { + "code_commune_insee": "10366", + "nom_de_la_commune": "SAULCY", + "code_postal": "10200", + "coordonnees_gps": [ + 48.2775769597, + 4.83542439731 + ], + "libelle_d_acheminement": "SAULCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83542439731, + 48.2775769597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d70d8804ac272c5c34acd22e4cb5a0b75fabb421", + "fields": { + "code_commune_insee": "21221", + "nom_de_la_commune": "CUSSY LA COLONNE", + "code_postal": "21360", + "coordonnees_gps": [ + 47.0424415882, + 4.6482234956 + ], + "libelle_d_acheminement": "CUSSY LA COLONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6482234956, + 47.0424415882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7da37539478358403c4d1ae8a8d3d8b3ce2276d", + "fields": { + "code_commune_insee": "10373", + "nom_de_la_commune": "SOULIGNY", + "code_postal": "10320", + "coordonnees_gps": [ + 48.2082516391, + 3.99414213688 + ], + "libelle_d_acheminement": "SOULIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99414213688, + 48.2082516391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5928bcfe825f9ba9098221c2c6b1f8d2e2deb32", + "fields": { + "code_commune_insee": "21226", + "nom_de_la_commune": "DARCEY", + "code_postal": "21150", + "coordonnees_gps": [ + 47.5468714078, + 4.56688774894 + ], + "libelle_d_acheminement": "DARCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56688774894, + 47.5468714078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1767518ecc318d0e4d1e56f5c62cb189e45fd0aa", + "fields": { + "code_commune_insee": "10380", + "nom_de_la_commune": "TORCY LE PETIT", + "code_postal": "10700", + "coordonnees_gps": [ + 48.5222887571, + 4.18694712376 + ], + "libelle_d_acheminement": "TORCY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18694712376, + 48.5222887571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6b26639d1eb256e75e949066a57c59a583c8d51", + "fields": { + "code_commune_insee": "21234", + "nom_de_la_commune": "DREE", + "code_postal": "21540", + "coordonnees_gps": [ + 47.343829262, + 4.69577530485 + ], + "libelle_d_acheminement": "DREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69577530485, + 47.343829262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46b55f3066f57ae9cddc0216363c4c6373c5b54e", + "fields": { + "code_commune_insee": "10381", + "nom_de_la_commune": "TORVILLIERS", + "code_postal": "10440", + "coordonnees_gps": [ + 48.2754934679, + 3.97217127639 + ], + "libelle_d_acheminement": "TORVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97217127639, + 48.2754934679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9a691805e22fd80a2d8a003027f21fa1c056a3b", + "fields": { + "code_commune_insee": "21239", + "nom_de_la_commune": "ECHENON", + "code_postal": "21170", + "coordonnees_gps": [ + 47.1196116033, + 5.286880332 + ], + "libelle_d_acheminement": "ECHENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.286880332, + 47.1196116033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a17c54869fbaecf3857530bdc824b6a085461e3", + "fields": { + "code_commune_insee": "10384", + "nom_de_la_commune": "TRANNES", + "code_postal": "10140", + "coordonnees_gps": [ + 48.3069705851, + 4.5990873423 + ], + "libelle_d_acheminement": "TRANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5990873423, + 48.3069705851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8739dbd6c33c0175a64a5f6b9f9874dbdcbc77de", + "fields": { + "code_commune_insee": "21243", + "nom_de_la_commune": "ECUTIGNY", + "code_postal": "21360", + "coordonnees_gps": [ + 47.0841130528, + 4.6234249566 + ], + "libelle_d_acheminement": "ECUTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6234249566, + 47.0841130528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "253f0d16df833b5d27a7cd8b5be15fccd0bde25f", + "fields": { + "code_commune_insee": "10389", + "nom_de_la_commune": "UNIENVILLE", + "code_postal": "10140", + "coordonnees_gps": [ + 48.3173788807, + 4.54850083928 + ], + "libelle_d_acheminement": "UNIENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54850083928, + 48.3173788807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbb098592f0a0e5127d6275f04f993247a429c5c", + "fields": { + "code_commune_insee": "21244", + "nom_de_la_commune": "EGUILLY", + "code_postal": "21320", + "coordonnees_gps": [ + 47.3010847339, + 4.49992675685 + ], + "libelle_d_acheminement": "EGUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49992675685, + 47.3010847339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82ef5740e0ec22dbbd2f8f1691d291ae8e5480d0", + "fields": { + "code_commune_insee": "10390", + "nom_de_la_commune": "URVILLE", + "code_postal": "10200", + "coordonnees_gps": [ + 48.1668057798, + 4.66928684991 + ], + "libelle_d_acheminement": "URVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66928684991, + 48.1668057798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e89276e8d124cc8468f8626d0777ee504602e04", + "fields": { + "code_commune_insee": "21259", + "nom_de_la_commune": "FAIN LES MONTBARD", + "code_postal": "21500", + "coordonnees_gps": [ + 47.6174941653, + 4.40346528629 + ], + "libelle_d_acheminement": "FAIN LES MONTBARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40346528629, + 47.6174941653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "918daeadccfed6b134f4c27c6cd60135750aadae", + "fields": { + "code_commune_insee": "10393", + "nom_de_la_commune": "VALLENTIGNY", + "code_postal": "10500", + "coordonnees_gps": [ + 48.442454066, + 4.61489587199 + ], + "libelle_d_acheminement": "VALLENTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61489587199, + 48.442454066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4b672a498dfabaeae60e836a91982a6875e62a0", + "fields": { + "code_commune_insee": "21273", + "nom_de_la_commune": "FLEUREY SUR OUCHE", + "code_postal": "21410", + "coordonnees_gps": [ + 47.3003433625, + 4.86448475268 + ], + "libelle_d_acheminement": "FLEUREY SUR OUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86448475268, + 47.3003433625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3b3ba0425fecf09a8d908a038d76848cc0f084d", + "fields": { + "code_commune_insee": "10394", + "nom_de_la_commune": "VALLIERES", + "code_postal": "10210", + "coordonnees_gps": [ + 47.9992814172, + 4.06184063227 + ], + "libelle_d_acheminement": "VALLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06184063227, + 47.9992814172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0d8955a8f4b3ecf996a390c67dfb350e66ae66e", + "fields": { + "code_commune_insee": "21275", + "nom_de_la_commune": "FONCEGRIVE", + "code_postal": "21260", + "coordonnees_gps": [ + 47.6173922862, + 5.14245423253 + ], + "libelle_d_acheminement": "FONCEGRIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14245423253, + 47.6173922862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31f306792e8b5019a77d673b4185881a4cd19e2d", + "fields": { + "ligne_5": "BELLEY", + "code_commune_insee": "10412", + "libelle_d_acheminement": "VILLECHETIF", + "code_postal": "10410", + "nom_de_la_commune": "VILLECHETIF", + "coordonnees_gps": [ + 48.3182253913, + 4.14937893854 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14937893854, + 48.3182253913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e764dba5786f542413ee472861f1d24113c9255", + "fields": { + "code_commune_insee": "21278", + "nom_de_la_commune": "FONTAINE LES DIJON", + "code_postal": "21121", + "coordonnees_gps": [ + 47.347590176, + 5.0247087947 + ], + "libelle_d_acheminement": "FONTAINE LES DIJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0247087947, + 47.347590176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91f2ac7fa817421711a28ad33085401a2e8dbe6c", + "fields": { + "code_commune_insee": "10416", + "nom_de_la_commune": "VILLEMEREUIL", + "code_postal": "10800", + "coordonnees_gps": [ + 48.2017413737, + 4.08326296474 + ], + "libelle_d_acheminement": "VILLEMEREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08326296474, + 48.2017413737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6733be86ea00dc5041c93d7d689cd2d29e7a2bc6", + "fields": { + "code_commune_insee": "21284", + "nom_de_la_commune": "FRANCHEVILLE", + "code_postal": "21440", + "coordonnees_gps": [ + 47.4593035477, + 4.87971245404 + ], + "libelle_d_acheminement": "FRANCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87971245404, + 47.4593035477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce0b4721113d32e01ef230fc3f9e49fea8cd37f1", + "fields": { + "code_commune_insee": "10421", + "nom_de_la_commune": "LA VILLENEUVE AU CHATELOT", + "code_postal": "10400", + "coordonnees_gps": [ + 48.5495270783, + 3.60717347149 + ], + "libelle_d_acheminement": "LA VILLENEUVE AU CHATELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60717347149, + 48.5495270783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df8dfa41f7427f24f25559311b36a9604ca54aab", + "fields": { + "code_commune_insee": "21291", + "nom_de_la_commune": "GENAY", + "code_postal": "21140", + "coordonnees_gps": [ + 47.5245250886, + 4.28444386819 + ], + "libelle_d_acheminement": "GENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28444386819, + 47.5245250886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63d98b2b505b662cfcf482d8f93a79f9eb954e72", + "fields": { + "code_commune_insee": "10423", + "nom_de_la_commune": "LA VILLENEUVE AU CHENE", + "code_postal": "10140", + "coordonnees_gps": [ + 48.2487579972, + 4.39081684128 + ], + "libelle_d_acheminement": "LA VILLENEUVE AU CHENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39081684128, + 48.2487579972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1375368c00a82c019bef6f63d271cedd7f8afdaa", + "fields": { + "code_commune_insee": "21296", + "nom_de_la_commune": "GEVROLLES", + "code_postal": "21520", + "coordonnees_gps": [ + 47.9895635621, + 4.7506884064 + ], + "libelle_d_acheminement": "GEVROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7506884064, + 47.9895635621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9370df4441d8004e6d821e8c72bff4d0a5a98777", + "fields": { + "code_commune_insee": "10424", + "nom_de_la_commune": "VILLERET", + "code_postal": "10330", + "coordonnees_gps": [ + 48.481503616, + 4.58651626543 + ], + "libelle_d_acheminement": "VILLERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58651626543, + 48.481503616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bae772d5326bf6cdc5f5056776319e797051f137", + "fields": { + "code_commune_insee": "21299", + "nom_de_la_commune": "GISSEY SOUS FLAVIGNY", + "code_postal": "21150", + "coordonnees_gps": [ + 47.5177863232, + 4.58559367649 + ], + "libelle_d_acheminement": "GISSEY SOUS FLAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58559367649, + 47.5177863232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c63852174f6a9824a0dc12adec2c566f78873ddc", + "fields": { + "code_commune_insee": "10425", + "nom_de_la_commune": "VILLERY", + "code_postal": "10320", + "coordonnees_gps": [ + 48.1734982781, + 4.01734084562 + ], + "libelle_d_acheminement": "VILLERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01734084562, + 48.1734982781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8a6455da6d1d90d2fc40108b8f2d01a09fd5884", + "fields": { + "code_commune_insee": "21302", + "nom_de_la_commune": "GOMMEVILLE", + "code_postal": "21400", + "coordonnees_gps": [ + 47.9569435042, + 4.48444403788 + ], + "libelle_d_acheminement": "GOMMEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48444403788, + 47.9569435042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adb41b85fa4773c2cb03c8e315989ae9d7403a30", + "fields": { + "code_commune_insee": "10426", + "nom_de_la_commune": "VILLE SOUS LA FERTE", + "code_postal": "10310", + "coordonnees_gps": [ + 48.1358669154, + 4.77205760299 + ], + "libelle_d_acheminement": "VILLE SOUS LA FERTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77205760299, + 48.1358669154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61627e119b17a69c7979e9643dd47dacebf50e65", + "fields": { + "code_commune_insee": "21312", + "nom_de_la_commune": "GURGY LA VILLE", + "code_postal": "21290", + "coordonnees_gps": [ + 47.8522196324, + 4.93836423447 + ], + "libelle_d_acheminement": "GURGY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93836423447, + 47.8522196324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43536f3aeaedd8a51b41da40bcd103734d393b60", + "fields": { + "code_commune_insee": "10433", + "nom_de_la_commune": "VILLY EN TRODES", + "code_postal": "10140", + "coordonnees_gps": [ + 48.1969362165, + 4.38937663411 + ], + "libelle_d_acheminement": "VILLY EN TRODES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38937663411, + 48.1969362165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "821df6200d16183459dfbdffd06f0d12c9fbe4ba", + "fields": { + "code_commune_insee": "21314", + "nom_de_la_commune": "HAUTEROCHE", + "code_postal": "21150", + "coordonnees_gps": [ + 47.4884901774, + 4.57055360819 + ], + "libelle_d_acheminement": "HAUTEROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57055360819, + 47.4884901774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0576f80825e66a88c4d5b8ec62c1b6ef61708e7", + "fields": { + "code_commune_insee": "10439", + "nom_de_la_commune": "VIVIERS SUR ARTAUT", + "code_postal": "10110", + "coordonnees_gps": [ + 48.097855701, + 4.49784658697 + ], + "libelle_d_acheminement": "VIVIERS SUR ARTAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49784658697, + 48.097855701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97d97fc1568802f9a4b559523bcfcc01199c86a0", + "fields": { + "code_commune_insee": "21330", + "nom_de_la_commune": "LABERGEMENT FOIGNEY", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2578064369, + 5.24786490582 + ], + "libelle_d_acheminement": "LABERGEMENT FOIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24786490582, + 47.2578064369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb24f5a6c6712fc998b62fa1b15ed4fa381d6595", + "fields": { + "code_commune_insee": "11001", + "nom_de_la_commune": "AIGUES VIVES", + "code_postal": "11800", + "coordonnees_gps": [ + 43.2351468241, + 2.5327825562 + ], + "libelle_d_acheminement": "AIGUES VIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5327825562, + 43.2351468241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02a187e894e65599dc26f5e25554b17f4c7e149d", + "fields": { + "code_commune_insee": "21336", + "nom_de_la_commune": "LAIGNES", + "code_postal": "21330", + "coordonnees_gps": [ + 47.8261016815, + 4.36829803111 + ], + "libelle_d_acheminement": "LAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36829803111, + 47.8261016815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04e93b9c15d412b4e69c0a37c06899a971b73434", + "fields": { + "code_commune_insee": "11013", + "nom_de_la_commune": "ARGENS MINERVOIS", + "code_postal": "11200", + "coordonnees_gps": [ + 43.2458340699, + 2.77062357779 + ], + "libelle_d_acheminement": "ARGENS MINERVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77062357779, + 43.2458340699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16f61dd12aa49ff6146b1957fd7c36734f2fb99c", + "fields": { + "code_commune_insee": "21337", + "nom_de_la_commune": "LAMARCHE SUR SAONE", + "code_postal": "21760", + "coordonnees_gps": [ + 47.272628371, + 5.3700531105 + ], + "libelle_d_acheminement": "LAMARCHE SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3700531105, + 47.272628371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2596798a3a5dc9c4270e486f15712f9fa7eb7092", + "fields": { + "code_commune_insee": "11014", + "nom_de_la_commune": "ARMISSAN", + "code_postal": "11110", + "coordonnees_gps": [ + 43.187641628, + 3.08927705991 + ], + "libelle_d_acheminement": "ARMISSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08927705991, + 43.187641628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fa970e366acc5ec5e33bf527756b467083409b3", + "fields": { + "code_commune_insee": "21341", + "nom_de_la_commune": "LANTILLY", + "code_postal": "21140", + "coordonnees_gps": [ + 47.5421056928, + 4.37838223017 + ], + "libelle_d_acheminement": "LANTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37838223017, + 47.5421056928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e462d49644d1765d43139d50a14ca79da850a64e", + "fields": { + "code_commune_insee": "11018", + "nom_de_la_commune": "ARZENS", + "code_postal": "11290", + "coordonnees_gps": [ + 43.2008547509, + 2.20537916173 + ], + "libelle_d_acheminement": "ARZENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20537916173, + 43.2008547509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "439a2dfab257bd9b36149bb06af41aa7554007e4", + "fields": { + "code_commune_insee": "21350", + "nom_de_la_commune": "LIGNEROLLES", + "code_postal": "21520", + "coordonnees_gps": [ + 47.9017137167, + 4.88758854906 + ], + "libelle_d_acheminement": "LIGNEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88758854906, + 47.9017137167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5d19aeafaa67ef40f466c85196ef0323b794494", + "fields": { + "code_commune_insee": "11025", + "nom_de_la_commune": "BAGNOLES", + "code_postal": "11600", + "coordonnees_gps": [ + 43.2681435431, + 2.44889439842 + ], + "libelle_d_acheminement": "BAGNOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44889439842, + 43.2681435431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7df942388bb3ea6648c4aa63f6ff893c95532079", + "fields": { + "code_commune_insee": "21359", + "nom_de_la_commune": "LUCEY", + "code_postal": "21290", + "coordonnees_gps": [ + 47.8522055495, + 4.8627475209 + ], + "libelle_d_acheminement": "LUCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8627475209, + 47.8522055495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3016b12f63a9f5394ccd71805bae3aade5dae009", + "fields": { + "code_commune_insee": "11027", + "nom_de_la_commune": "BARBAIRA", + "code_postal": "11800", + "coordonnees_gps": [ + 43.1754326219, + 2.51471602722 + ], + "libelle_d_acheminement": "BARBAIRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51471602722, + 43.1754326219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2436b1c1eec255646317e0bc696d9aed7e360d9", + "fields": { + "code_commune_insee": "21380", + "nom_de_la_commune": "MARCIGNY SOUS THIL", + "code_postal": "21390", + "coordonnees_gps": [ + 47.3913107616, + 4.38452242711 + ], + "libelle_d_acheminement": "MARCIGNY SOUS THIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38452242711, + 47.3913107616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1048e29d0b98f5d61dfc5b7ca8c59248ee25eaba", + "fields": { + "code_commune_insee": "11029", + "nom_de_la_commune": "BELCASTEL ET BUC", + "code_postal": "11580", + "coordonnees_gps": [ + 43.0278574306, + 2.34929567664 + ], + "libelle_d_acheminement": "BELCASTEL ET BUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34929567664, + 43.0278574306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db954d217f31947d01cbecdec224a0308878fe10", + "fields": { + "code_commune_insee": "21382", + "nom_de_la_commune": "MARCILLY OGNY", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2485958076, + 4.40242796827 + ], + "libelle_d_acheminement": "MARCILLY OGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40242796827, + 47.2485958076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49511de41dabe053ac2d50b25b463f64067bd373", + "fields": { + "code_commune_insee": "11033", + "nom_de_la_commune": "BELPECH", + "code_postal": "11420", + "coordonnees_gps": [ + 43.2034214828, + 1.76339036009 + ], + "libelle_d_acheminement": "BELPECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76339036009, + 43.2034214828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4fef40c67b6bbee943384fdb6add31262a997a5", + "fields": { + "code_commune_insee": "21392", + "nom_de_la_commune": "MARTROIS", + "code_postal": "21320", + "coordonnees_gps": [ + 47.3068577261, + 4.54607714165 + ], + "libelle_d_acheminement": "MARTROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54607714165, + 47.3068577261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "654573ceb155a43fae9f7fc25531c61638afb5e9", + "fields": { + "code_commune_insee": "11035", + "nom_de_la_commune": "BELVIANES ET CAVIRAC", + "code_postal": "11500", + "coordonnees_gps": [ + 42.8470909079, + 2.21251651397 + ], + "libelle_d_acheminement": "BELVIANES ET CAVIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21251651397, + 42.8470909079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95309314aa4547c43677a96d0154aa0e5c51cb0b", + "fields": { + "code_commune_insee": "21395", + "nom_de_la_commune": "MASSINGY LES VITTEAUX", + "code_postal": "21350", + "coordonnees_gps": [ + 47.395705764, + 4.59045021974 + ], + "libelle_d_acheminement": "MASSINGY LES VITTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59045021974, + 47.395705764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "674cc245f47105e7032d037876156cea2409ae04", + "fields": { + "code_commune_insee": "11042", + "nom_de_la_commune": "BLOMAC", + "code_postal": "11700", + "coordonnees_gps": [ + 43.2134329065, + 2.58856166964 + ], + "libelle_d_acheminement": "BLOMAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58856166964, + 43.2134329065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c8ce02ef01a6a9793aded2f032dd14811eb5327", + "fields": { + "code_commune_insee": "21396", + "nom_de_la_commune": "MAUVILLY", + "code_postal": "21510", + "coordonnees_gps": [ + 47.7096666465, + 4.70428549427 + ], + "libelle_d_acheminement": "MAUVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70428549427, + 47.7096666465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93c4024da99303455b94983bcfc800a1ce4c7169", + "fields": { + "code_commune_insee": "11045", + "nom_de_la_commune": "BOURIEGE", + "code_postal": "11300", + "coordonnees_gps": [ + 42.9957636831, + 2.16146598721 + ], + "libelle_d_acheminement": "BOURIEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16146598721, + 42.9957636831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cf9102dfe14281251979a70f4a87696b7d99503", + "fields": { + "code_commune_insee": "21411", + "nom_de_la_commune": "MEURSANGES", + "code_postal": "21200", + "coordonnees_gps": [ + 46.9815545496, + 4.94294705881 + ], + "libelle_d_acheminement": "MEURSANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94294705881, + 46.9815545496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d63b5b259abe8a7b771874016a5986aee2fecfcf", + "fields": { + "code_commune_insee": "11054", + "nom_de_la_commune": "LES BRUNELS", + "code_postal": "11400", + "coordonnees_gps": [ + 43.4099338658, + 2.04826719599 + ], + "libelle_d_acheminement": "LES BRUNELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04826719599, + 43.4099338658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ba4134544c894a444b8f94d01b96c2c75acb451", + "fields": { + "code_commune_insee": "21412", + "nom_de_la_commune": "MEURSAULT", + "code_postal": "21190", + "coordonnees_gps": [ + 46.9702784903, + 4.77216959331 + ], + "libelle_d_acheminement": "MEURSAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77216959331, + 46.9702784903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b2444ac2ee77d9c1f526873d7085ba654a3a83e", + "fields": { + "code_commune_insee": "11058", + "nom_de_la_commune": "CAILHAU", + "code_postal": "11240", + "coordonnees_gps": [ + 43.1451890144, + 2.13010881163 + ], + "libelle_d_acheminement": "CAILHAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13010881163, + 43.1451890144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5038bcb0769c120ebbe2a0a173d8190a77b93c0b", + "fields": { + "code_commune_insee": "21416", + "nom_de_la_commune": "MIREBEAU SUR BEZE", + "code_postal": "21310", + "coordonnees_gps": [ + 47.4024616873, + 5.32235906024 + ], + "libelle_d_acheminement": "MIREBEAU SUR BEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32235906024, + 47.4024616873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ced5e563966bbb8511af3e5384583da653b5b92", + "fields": { + "code_commune_insee": "11060", + "nom_de_la_commune": "CAILLA", + "code_postal": "11140", + "coordonnees_gps": [ + 42.810901034, + 2.19671298076 + ], + "libelle_d_acheminement": "CAILLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19671298076, + 42.810901034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad85c37a4d0e694a112a4debb88ca9d7496feddd", + "fields": { + "code_commune_insee": "21417", + "nom_de_la_commune": "MISSERY", + "code_postal": "21210", + "coordonnees_gps": [ + 47.3113991733, + 4.3748363235 + ], + "libelle_d_acheminement": "MISSERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3748363235, + 47.3113991733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "350f065dad5d1715b09bf9b3200bec2c8b018d2b", + "fields": { + "code_commune_insee": "11066", + "nom_de_la_commune": "CAMURAC", + "code_postal": "11340", + "coordonnees_gps": [ + 42.79912779, + 1.92368266374 + ], + "libelle_d_acheminement": "CAMURAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92368266374, + 42.79912779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ceb9658218785827bfdf1301c09afd882997b62", + "fields": { + "code_commune_insee": "21418", + "nom_de_la_commune": "MOITRON", + "code_postal": "21510", + "coordonnees_gps": [ + 47.681789677, + 4.80835298822 + ], + "libelle_d_acheminement": "MOITRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80835298822, + 47.681789677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f594c39089a43406421cc57479673c2588fd497d", + "fields": { + "code_commune_insee": "11067", + "nom_de_la_commune": "CANET", + "code_postal": "11200", + "coordonnees_gps": [ + 43.2263270796, + 2.83123999016 + ], + "libelle_d_acheminement": "CANET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83123999016, + 43.2263270796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4de20ab86228490bceec3d3c1821400d8457dd4e", + "fields": { + "code_commune_insee": "21431", + "nom_de_la_commune": "MONTIGNY SUR ARMANCON", + "code_postal": "21140", + "coordonnees_gps": [ + 47.4400198641, + 4.37366154755 + ], + "libelle_d_acheminement": "MONTIGNY SUR ARMANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37366154755, + 47.4400198641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d567e1a09daeebff93a4f1654e0260276723bb36", + "fields": { + "ligne_5": "MAQUENS", + "code_commune_insee": "11069", + "libelle_d_acheminement": "CARCASSONNE", + "code_postal": "11000", + "nom_de_la_commune": "CARCASSONNE", + "coordonnees_gps": [ + 43.2093798444, + 2.34398855385 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34398855385, + 43.2093798444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "983eb0e49c26732170fcfba76a099fce69f4ec4b", + "fields": { + "code_commune_insee": "21442", + "nom_de_la_commune": "MOREY ST DENIS", + "code_postal": "21220", + "coordonnees_gps": [ + 47.1999076803, + 4.96207733314 + ], + "libelle_d_acheminement": "MOREY ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96207733314, + 47.1999076803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faa9c773eab8773e80553051b6d4be097bece7d5", + "fields": { + "ligne_5": "MONTLEGUN", + "code_commune_insee": "11069", + "libelle_d_acheminement": "CARCASSONNE", + "code_postal": "11000", + "nom_de_la_commune": "CARCASSONNE", + "coordonnees_gps": [ + 43.2093798444, + 2.34398855385 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34398855385, + 43.2093798444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59207e053c990ceb848ef2cfc75753367ec00ce6", + "fields": { + "code_commune_insee": "21444", + "nom_de_la_commune": "MOSSON", + "code_postal": "21400", + "coordonnees_gps": [ + 47.9206276016, + 4.62892350243 + ], + "libelle_d_acheminement": "MOSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62892350243, + 47.9206276016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "912158cc91d6b93613fbcfa17bc13949a54c226e", + "fields": { + "code_commune_insee": "11076", + "nom_de_la_commune": "CASTELNAUDARY", + "code_postal": "11400", + "coordonnees_gps": [ + 43.3230173159, + 1.96073752488 + ], + "libelle_d_acheminement": "CASTELNAUDARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96073752488, + 43.3230173159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b0839399f6a825609cfa9ede66274bb4c0ef84b", + "fields": { + "code_commune_insee": "21446", + "nom_de_la_commune": "MOUTIERS ST JEAN", + "code_postal": "21500", + "coordonnees_gps": [ + 47.5623920251, + 4.2256453588 + ], + "libelle_d_acheminement": "MOUTIERS ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2256453588, + 47.5623920251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "141c55572031f5cc2e57dd1c074cd435c48d746e", + "fields": { + "code_commune_insee": "11084", + "nom_de_la_commune": "CAUX ET SAUZENS", + "code_postal": "11170", + "coordonnees_gps": [ + 43.2258961133, + 2.25442069615 + ], + "libelle_d_acheminement": "CAUX ET SAUZENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25442069615, + 43.2258961133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf2423c3ce9908ad1327b414c36d2be38566af90", + "fields": { + "code_commune_insee": "21449", + "nom_de_la_commune": "NAN SOUS THIL", + "code_postal": "21390", + "coordonnees_gps": [ + 47.3809368143, + 4.35907058516 + ], + "libelle_d_acheminement": "NAN SOUS THIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35907058516, + 47.3809368143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4edf1e4030a105a3693b41db0b3b09fff38102c1", + "fields": { + "code_commune_insee": "11088", + "nom_de_la_commune": "CAZILHAC", + "code_postal": "11570", + "coordonnees_gps": [ + 43.1781298027, + 2.35922152634 + ], + "libelle_d_acheminement": "CAZILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35922152634, + 43.1781298027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae440f85e6408ae3fcbac5d04b9b86c8f4f5fbd2", + "fields": { + "ligne_5": "NEUILLY LES DIJON", + "code_commune_insee": "21452", + "libelle_d_acheminement": "NEUILLY CRIMOLOIS", + "code_postal": "21800", + "nom_de_la_commune": "NEUILLY CRIMOLOIS", + "coordonnees_gps": [ + 47.2764524522, + 5.10401476317 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10401476317, + 47.2764524522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0ea332a3a11001046e6c1369f6407a3ee8dbd1e", + "fields": { + "code_commune_insee": "11089", + "nom_de_la_commune": "CENNE MONESTIES", + "code_postal": "11170", + "coordonnees_gps": [ + 43.3239782132, + 2.12966126404 + ], + "libelle_d_acheminement": "CENNE MONESTIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12966126404, + 43.3239782132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf62c98d9561e5e5cc7d3ff01bce8c6164cef192", + "fields": { + "code_commune_insee": "21462", + "nom_de_la_commune": "NORGES LA VILLE", + "code_postal": "21490", + "coordonnees_gps": [ + 47.4070463216, + 5.06948581601 + ], + "libelle_d_acheminement": "NORGES LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06948581601, + 47.4070463216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebf3382d6ef9b4b280e2f628e43195706862ecae", + "fields": { + "code_commune_insee": "11092", + "nom_de_la_commune": "CITOU", + "code_postal": "11160", + "coordonnees_gps": [ + 43.3755029489, + 2.53256904263 + ], + "libelle_d_acheminement": "CITOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53256904263, + 43.3755029489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9d38d4b6fa6a2f7785a0313d5890b69610d01bb", + "fields": { + "code_commune_insee": "21467", + "nom_de_la_commune": "OISILLY", + "code_postal": "21310", + "coordonnees_gps": [ + 47.416992177, + 5.36192344642 + ], + "libelle_d_acheminement": "OISILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36192344642, + 47.416992177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "469018f30c33a4ef08ffe915e710a81241d2ccdf", + "fields": { + "code_commune_insee": "11106", + "nom_de_la_commune": "COURSAN", + "code_postal": "11110", + "coordonnees_gps": [ + 43.247330951, + 3.05926886129 + ], + "libelle_d_acheminement": "COURSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05926886129, + 43.247330951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cf9bb0f4c07469f7d9c63e16e996ae57b1790ff", + "fields": { + "code_commune_insee": "21472", + "nom_de_la_commune": "ORVILLE", + "code_postal": "21260", + "coordonnees_gps": [ + 47.5606296412, + 5.21672083508 + ], + "libelle_d_acheminement": "ORVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21672083508, + 47.5606296412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cd83b9c8dd82af0cf4d6612b074c3d4b070e8cb", + "fields": { + "code_commune_insee": "11120", + "nom_de_la_commune": "LA DIGNE D AVAL", + "code_postal": "11300", + "coordonnees_gps": [ + 43.045934192, + 2.17910836448 + ], + "libelle_d_acheminement": "LA DIGNE D AVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17910836448, + 43.045934192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0f4dd936f993531113c7b29bcf1b67f7b5fc86e", + "fields": { + "code_commune_insee": "21475", + "nom_de_la_commune": "PAGNY LE CHATEAU", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0499538846, + 5.21153347867 + ], + "libelle_d_acheminement": "PAGNY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21153347867, + 47.0499538846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16f443176cddf1dc7615d56fb019f1376ae9a7eb", + "fields": { + "code_commune_insee": "11123", + "nom_de_la_commune": "DUILHAC SOUS PEYREPERTUSE", + "code_postal": "11350", + "coordonnees_gps": [ + 42.8656597, + 2.56758604959 + ], + "libelle_d_acheminement": "DUILHAC SOUS PEYREPERTUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56758604959, + 42.8656597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4910056b676b663db58714d3f041c9bfd8a20262", + "fields": { + "code_commune_insee": "21480", + "nom_de_la_commune": "PERNAND VERGELESSES", + "code_postal": "21420", + "coordonnees_gps": [ + 47.0804785498, + 4.8493094586 + ], + "libelle_d_acheminement": "PERNAND VERGELESSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8493094586, + 47.0804785498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77c40430122d557b921afb79b7877f23662f28ae", + "fields": { + "code_commune_insee": "11128", + "nom_de_la_commune": "ESCUEILLENS ET ST JUST DE BELENGARD", + "code_postal": "11240", + "coordonnees_gps": [ + 43.100423517, + 2.02148370571 + ], + "libelle_d_acheminement": "ESCUEILLENS ET ST JUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02148370571, + 43.100423517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0345fe051ed182ec6dc240b15654d05cf7adf081", + "fields": { + "code_commune_insee": "21497", + "nom_de_la_commune": "PONT ET MASSENE", + "code_postal": "21140", + "coordonnees_gps": [ + 47.4690088064, + 4.35812492053 + ], + "libelle_d_acheminement": "PONT ET MASSENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35812492053, + 47.4690088064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "782589a6fb24170d9d6d76503055615c4d18606f", + "fields": { + "ligne_5": "ROUVENAC", + "code_commune_insee": "11131", + "libelle_d_acheminement": "VAL DU FABY", + "code_postal": "11260", + "nom_de_la_commune": "VAL DU FABY", + "coordonnees_gps": [ + 42.9276860891, + 2.17956693905 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17956693905, + 42.9276860891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cbcf779af192359b9b5ff7fdd3edc4e4a49026d", + "fields": { + "code_commune_insee": "21524", + "nom_de_la_commune": "RIEL LES EAUX", + "code_postal": "21570", + "coordonnees_gps": [ + 47.9883595832, + 4.6810588617 + ], + "libelle_d_acheminement": "RIEL LES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6810588617, + 47.9883595832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "909925b79be870d108506b21afe57f7f2ed94dfa", + "fields": { + "code_commune_insee": "11146", + "nom_de_la_commune": "FLOURE", + "code_postal": "11800", + "coordonnees_gps": [ + 43.1786208741, + 2.48513485536 + ], + "libelle_d_acheminement": "FLOURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48513485536, + 43.1786208741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9cb9a11ac127ddc22b2bcf628ec4d1acf703534", + "fields": { + "code_commune_insee": "21537", + "nom_de_la_commune": "SAFFRES", + "code_postal": "21350", + "coordonnees_gps": [ + 47.3662639449, + 4.58064061534 + ], + "libelle_d_acheminement": "SAFFRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58064061534, + 47.3662639449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd63cd32632821a815831e2200abfe74f6597eb4", + "fields": { + "code_commune_insee": "11158", + "nom_de_la_commune": "GAJA ET VILLEDIEU", + "code_postal": "11300", + "coordonnees_gps": [ + 43.079734068, + 2.18579685129 + ], + "libelle_d_acheminement": "GAJA ET VILLEDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18579685129, + 43.079734068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3817839e2d3d329237ae6284e1c5114fdf357c9", + "fields": { + "code_commune_insee": "21540", + "nom_de_la_commune": "ST APOLLINAIRE", + "code_postal": "21850", + "coordonnees_gps": [ + 47.336030345, + 5.09322584658 + ], + "libelle_d_acheminement": "ST APOLLINAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09322584658, + 47.336030345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a49ee889f9c8b3f8a18c05e0988189549a2b019", + "fields": { + "code_commune_insee": "11168", + "nom_de_la_commune": "GRANES", + "code_postal": "11500", + "coordonnees_gps": [ + 42.89537535, + 2.25328133982 + ], + "libelle_d_acheminement": "GRANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25328133982, + 42.89537535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e995b7b47829ae6adac8403a0519a2692a9b736", + "fields": { + "code_commune_insee": "21542", + "nom_de_la_commune": "ST BERNARD", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1597856871, + 5.02381955265 + ], + "libelle_d_acheminement": "ST BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02381955265, + 47.1597856871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8acf6ae6fafdb87c08c1f56a781b78ebc5259d68", + "fields": { + "code_commune_insee": "11169", + "nom_de_la_commune": "GREFFEIL", + "code_postal": "11250", + "coordonnees_gps": [ + 43.0745101503, + 2.39378914841 + ], + "libelle_d_acheminement": "GREFFEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39378914841, + 43.0745101503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f513cd9bedf530ef109c7035e7bef79d75054668", + "fields": { + "code_commune_insee": "21545", + "nom_de_la_commune": "STE COLOMBE SUR SEINE", + "code_postal": "21400", + "coordonnees_gps": [ + 47.8608080678, + 4.52802612244 + ], + "libelle_d_acheminement": "STE COLOMBE SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52802612244, + 47.8608080678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8aaed028d75a634851da8eb33633179c5a4cd2d", + "fields": { + "code_commune_insee": "11180", + "nom_de_la_commune": "LABASTIDE ESPARBAIRENQUE", + "code_postal": "11380", + "coordonnees_gps": [ + 43.3934090766, + 2.40300635339 + ], + "libelle_d_acheminement": "LABASTIDE ESPARBAIRENQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40300635339, + 43.3934090766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9127bc84322dce7d28a5c6810863384515798c67", + "fields": { + "code_commune_insee": "21556", + "nom_de_la_commune": "ST LEGER TRIEY", + "code_postal": "21270", + "coordonnees_gps": [ + 47.3166201603, + 5.35525672839 + ], + "libelle_d_acheminement": "ST LEGER TRIEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35525672839, + 47.3166201603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fd8f49055740f8b0545dc70cd2257ac2a25983f", + "fields": { + "code_commune_insee": "11184", + "nom_de_la_commune": "LAFAGE", + "code_postal": "11420", + "coordonnees_gps": [ + 43.1655958394, + 1.86743843652 + ], + "libelle_d_acheminement": "LAFAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86743843652, + 43.1655958394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca7ee4f336548639284ab0a37bed8b349ea01dd9", + "fields": { + "ligne_5": "PONT DE PANY", + "code_commune_insee": "21559", + "libelle_d_acheminement": "STE MARIE SUR OUCHE", + "code_postal": "21410", + "nom_de_la_commune": "STE MARIE SUR OUCHE", + "coordonnees_gps": [ + 47.2887325943, + 4.80366866589 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80366866589, + 47.2887325943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "588cf8417e5dd14a8efc16c2383eb2d4ba16387c", + "fields": { + "code_commune_insee": "11192", + "nom_de_la_commune": "LASBORDES", + "code_postal": "11400", + "coordonnees_gps": [ + 43.2996016528, + 2.06333742676 + ], + "libelle_d_acheminement": "LASBORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06333742676, + 43.2996016528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e79117ec624af8ee3e12fd213ecf990170da393", + "fields": { + "code_commune_insee": "21565", + "nom_de_la_commune": "ST PHILIBERT", + "code_postal": "21220", + "coordonnees_gps": [ + 47.2033144278, + 5.01321708085 + ], + "libelle_d_acheminement": "ST PHILIBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01321708085, + 47.2033144278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c18453ad495242ffd85cbae9ea8338947eae0ec", + "fields": { + "code_commune_insee": "11197", + "nom_de_la_commune": "LAURAGUEL", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0965194461, + 2.17010023085 + ], + "libelle_d_acheminement": "LAURAGUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17010023085, + 43.0965194461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ee68445c81a8fb1e85e7463323d657959fce5ca", + "fields": { + "code_commune_insee": "21566", + "nom_de_la_commune": "ST PIERRE EN VAUX", + "code_postal": "21230", + "coordonnees_gps": [ + 47.0569877471, + 4.52938380841 + ], + "libelle_d_acheminement": "ST PIERRE EN VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52938380841, + 47.0569877471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a5fedf9ed54fd475969bac741b3c3388469b0bb", + "fields": { + "code_commune_insee": "11203", + "nom_de_la_commune": "LEZIGNAN CORBIERES", + "code_postal": "11200", + "coordonnees_gps": [ + 43.2036730565, + 2.76215028732 + ], + "libelle_d_acheminement": "LEZIGNAN CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76215028732, + 43.2036730565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eec32de45d90665c24e7df7529c242bed8835d94", + "fields": { + "code_commune_insee": "21574", + "nom_de_la_commune": "ST SEINE SUR VINGEANNE", + "code_postal": "21610", + "coordonnees_gps": [ + 47.5168029251, + 5.43323666573 + ], + "libelle_d_acheminement": "ST SEINE SUR VINGEANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43323666573, + 47.5168029251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69ec88bb2a2685afcb13e6ecffc9560b20dc6445", + "fields": { + "code_commune_insee": "11214", + "nom_de_la_commune": "MALRAS", + "code_postal": "11300", + "coordonnees_gps": [ + 43.0609311842, + 2.16809253539 + ], + "libelle_d_acheminement": "MALRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16809253539, + 43.0609311842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6199eb0ea81049b2dcf9d00fdca9f4ffabd0b9a6", + "fields": { + "code_commune_insee": "21575", + "nom_de_la_commune": "ST SYMPHORIEN SUR SAONE", + "code_postal": "21170", + "coordonnees_gps": [ + 47.0909529728, + 5.31775457592 + ], + "libelle_d_acheminement": "ST SYMPHORIEN SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31775457592, + 47.0909529728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c4704d575332eea728567a75b7f21e989410fcf", + "fields": { + "code_commune_insee": "11218", + "nom_de_la_commune": "MARQUEIN", + "code_postal": "11410", + "coordonnees_gps": [ + 43.2994946211, + 1.72364772647 + ], + "libelle_d_acheminement": "MARQUEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72364772647, + 43.2994946211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66e6b45b1bf3e2b4d731d6abafded848c83faec7", + "fields": { + "code_commune_insee": "21579", + "nom_de_la_commune": "SALIVES", + "code_postal": "21580", + "coordonnees_gps": [ + 47.6048838106, + 4.9005997334 + ], + "libelle_d_acheminement": "SALIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9005997334, + 47.6048838106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32f25bfd65434203993d2a32d3828feceedd5c91", + "fields": { + "code_commune_insee": "11220", + "nom_de_la_commune": "MARSEILLETTE", + "code_postal": "11800", + "coordonnees_gps": [ + 43.2106331935, + 2.54884252568 + ], + "libelle_d_acheminement": "MARSEILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54884252568, + 43.2106331935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77bbdff2c098a7db7d9fcd7b95bcde867be78d7a", + "fields": { + "code_commune_insee": "21584", + "nom_de_la_commune": "SAULIEU", + "code_postal": "21210", + "coordonnees_gps": [ + 47.2840306915, + 4.23192469784 + ], + "libelle_d_acheminement": "SAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23192469784, + 47.2840306915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9831688eb91dc3d2db0b2fc2b5459ffa82b14a4a", + "fields": { + "code_commune_insee": "11226", + "nom_de_la_commune": "MAYREVILLE", + "code_postal": "11420", + "coordonnees_gps": [ + 43.2297104101, + 1.84758314766 + ], + "libelle_d_acheminement": "MAYREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84758314766, + 43.2297104101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1954e5c0762fc68c8f85d4d8c3c9d1f70682fab", + "fields": { + "code_commune_insee": "21586", + "nom_de_la_commune": "SAULON LA RUE", + "code_postal": "21910", + "coordonnees_gps": [ + 47.2262535872, + 5.05001697299 + ], + "libelle_d_acheminement": "SAULON LA RUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05001697299, + 47.2262535872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "255071e50fd0c1f42a9d6803a1f4d4e50cb70b8e", + "fields": { + "code_commune_insee": "11227", + "nom_de_la_commune": "MAYRONNES", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0462604281, + 2.52945819038 + ], + "libelle_d_acheminement": "MAYRONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52945819038, + 43.0462604281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f075855f32b6b80d2b52256bcd1186b2b040b05", + "fields": { + "code_commune_insee": "21588", + "nom_de_la_commune": "SAUSSEY", + "code_postal": "21360", + "coordonnees_gps": [ + 47.0636406891, + 4.60953530207 + ], + "libelle_d_acheminement": "SAUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60953530207, + 47.0636406891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "039ec7c9960a5df0d1df1fc89922d4efdc53c3bf", + "fields": { + "code_commune_insee": "11229", + "nom_de_la_commune": "MAZUBY", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7876134652, + 2.03335100934 + ], + "libelle_d_acheminement": "MAZUBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03335100934, + 42.7876134652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc361c821d0b96281f1c8806929949df3555fba6", + "fields": { + "code_commune_insee": "21594", + "nom_de_la_commune": "SAVOISY", + "code_postal": "21500", + "coordonnees_gps": [ + 47.7365116714, + 4.39978655066 + ], + "libelle_d_acheminement": "SAVOISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39978655066, + 47.7365116714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a95215d8820c4f90c424890aba2677319395755", + "fields": { + "code_commune_insee": "11250", + "nom_de_la_commune": "MONTJOI", + "code_postal": "11330", + "coordonnees_gps": [ + 42.9961480629, + 2.47905879175 + ], + "libelle_d_acheminement": "MONTJOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47905879175, + 42.9961480629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad9748cbbab1364489500e0867bcf473a355b541", + "fields": { + "code_commune_insee": "21598", + "nom_de_la_commune": "SEIGNY", + "code_postal": "21150", + "coordonnees_gps": [ + 47.5771836934, + 4.43932756147 + ], + "libelle_d_acheminement": "SEIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43932756147, + 47.5771836934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8be7e7c26d20a2b7307dd86ad207e06c1c57992", + "fields": { + "ligne_5": "MONTLAUR", + "code_commune_insee": "11251", + "libelle_d_acheminement": "VAL DE DAGNE", + "code_postal": "11220", + "nom_de_la_commune": "VAL DE DAGNE", + "coordonnees_gps": [ + 43.1285553787, + 2.56525134026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56525134026, + 43.1285553787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09a34e83a8328a31936878a8ba2923cd2bb08356", + "fields": { + "code_commune_insee": "21601", + "nom_de_la_commune": "SEMEZANGES", + "code_postal": "21220", + "coordonnees_gps": [ + 47.2155736002, + 4.85104991117 + ], + "libelle_d_acheminement": "SEMEZANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85104991117, + 47.2155736002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7297bb90db9be87688b11a58fc598e1493c56cb4", + "fields": { + "code_commune_insee": "11254", + "nom_de_la_commune": "MONTREAL", + "code_postal": "11290", + "coordonnees_gps": [ + 43.2000530731, + 2.14809473682 + ], + "libelle_d_acheminement": "MONTREAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14809473682, + 43.2000530731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "642582eebedec29dfab128d4f559ec261d2c8e23", + "fields": { + "code_commune_insee": "21604", + "nom_de_la_commune": "SENAILLY", + "code_postal": "21500", + "coordonnees_gps": [ + 47.5827263059, + 4.26729697814 + ], + "libelle_d_acheminement": "SENAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26729697814, + 47.5827263059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4bfcae331706a622f564bfe31a9fbfc5e24826e", + "fields": { + "code_commune_insee": "11255", + "nom_de_la_commune": "MONTREDON DES CORBIERES", + "code_postal": "11100", + "coordonnees_gps": [ + 43.1813624756, + 2.92455318608 + ], + "libelle_d_acheminement": "MONTREDON DES CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92455318608, + 43.1813624756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98ae90c966a0d2ab49f7a879e3b4a14079d23b55", + "fields": { + "code_commune_insee": "21605", + "nom_de_la_commune": "SENNECEY LES DIJON", + "code_postal": "21800", + "coordonnees_gps": [ + 47.2920875173, + 5.10418551217 + ], + "libelle_d_acheminement": "SENNECEY LES DIJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10418551217, + 47.2920875173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9ba995cd1ffc675ee6fabfd2542400aefa110a3", + "fields": { + "code_commune_insee": "11260", + "nom_de_la_commune": "MOUTHOUMET", + "code_postal": "11330", + "coordonnees_gps": [ + 42.9638535564, + 2.53168181453 + ], + "libelle_d_acheminement": "MOUTHOUMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53168181453, + 42.9638535564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a6ca57cd39584d1759de40d7942d7f19e40bda3", + "fields": { + "code_commune_insee": "21608", + "nom_de_la_commune": "SINCEY LES ROUVRAY", + "code_postal": "21530", + "coordonnees_gps": [ + 47.4334510862, + 4.13103171651 + ], + "libelle_d_acheminement": "SINCEY LES ROUVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13103171651, + 47.4334510862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f8046704e68b05cf13b9a7d8104d34c6e0f97f5", + "fields": { + "code_commune_insee": "11262", + "nom_de_la_commune": "NARBONNE", + "code_postal": "11100", + "coordonnees_gps": [ + 43.1652399898, + 3.02023868739 + ], + "libelle_d_acheminement": "NARBONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02023868739, + 43.1652399898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a98888f10fc90281247a4b4157963724b814f60", + "fields": { + "code_commune_insee": "21615", + "nom_de_la_commune": "SUSSEY", + "code_postal": "21430", + "coordonnees_gps": [ + 47.2149293227, + 4.37242208694 + ], + "libelle_d_acheminement": "SUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37242208694, + 47.2149293227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f213b350eb01f506775b6528ad971f43a80ee1e5", + "fields": { + "code_commune_insee": "11267", + "nom_de_la_commune": "ORNAISONS", + "code_postal": "11200", + "coordonnees_gps": [ + 43.1784619561, + 2.83659066279 + ], + "libelle_d_acheminement": "ORNAISONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83659066279, + 43.1784619561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4294575019cf883593b49d01bd3ba90db1f2f9e4", + "fields": { + "code_commune_insee": "21626", + "nom_de_la_commune": "TERREFONDREE", + "code_postal": "21290", + "coordonnees_gps": [ + 47.7278892776, + 4.84233839612 + ], + "libelle_d_acheminement": "TERREFONDREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84233839612, + 47.7278892776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbda943195d40e81cca806bba69f47a3bcd8af2c", + "fields": { + "code_commune_insee": "11275", + "nom_de_la_commune": "PAYRA SUR L HERS", + "code_postal": "11410", + "coordonnees_gps": [ + 43.2622935263, + 1.87477238509 + ], + "libelle_d_acheminement": "PAYRA SUR L HERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87477238509, + 43.2622935263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "183579c65b0d6a21892b3a2ee538c6c8c776a2e6", + "fields": { + "code_commune_insee": "21637", + "nom_de_la_commune": "TICHEY", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0128057736, + 5.28875732536 + ], + "libelle_d_acheminement": "TICHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28875732536, + 47.0128057736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "520d619c67cf6e40cab935ad9b9380790fbbe76a", + "fields": { + "code_commune_insee": "11278", + "nom_de_la_commune": "PECH LUNA", + "code_postal": "11420", + "coordonnees_gps": [ + 43.2103140883, + 1.83766149326 + ], + "libelle_d_acheminement": "PECH LUNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83766149326, + 43.2103140883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28fd3157db82b91c22b17d7d83fa4a327a0dc870", + "fields": { + "code_commune_insee": "21653", + "nom_de_la_commune": "VANNAIRE", + "code_postal": "21400", + "coordonnees_gps": [ + 47.9154562474, + 4.57079661731 + ], + "libelle_d_acheminement": "VANNAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57079661731, + 47.9154562474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea2c014020e4c632100f2fb1dfb7fe3739a0c7df", + "fields": { + "code_commune_insee": "11281", + "nom_de_la_commune": "PEXIORA", + "code_postal": "11150", + "coordonnees_gps": [ + 43.2688186857, + 2.04018606486 + ], + "libelle_d_acheminement": "PEXIORA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04018606486, + 43.2688186857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f79af2b5005b803fc335c35e68708bdb2c6d062", + "fields": { + "code_commune_insee": "21659", + "nom_de_la_commune": "VAUX SAULES", + "code_postal": "21440", + "coordonnees_gps": [ + 47.4746631132, + 4.82267310049 + ], + "libelle_d_acheminement": "VAUX SAULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82267310049, + 47.4746631132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea0c1542efa311ce3324d21387f7098379d498b7", + "fields": { + "code_commune_insee": "11284", + "nom_de_la_commune": "PEYRENS", + "code_postal": "11400", + "coordonnees_gps": [ + 43.3618303056, + 1.96005404074 + ], + "libelle_d_acheminement": "PEYRENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96005404074, + 43.3618303056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f14a464045b611edc0b7102f056b0825d64a0b1", + "fields": { + "code_commune_insee": "21678", + "nom_de_la_commune": "VIC SOUS THIL", + "code_postal": "21390", + "coordonnees_gps": [ + 47.3670141656, + 4.31767568757 + ], + "libelle_d_acheminement": "VIC SOUS THIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31767568757, + 47.3670141656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86566d8e3bf2a56eec0d3f8bd5817ce158816f60", + "fields": { + "code_commune_insee": "11288", + "nom_de_la_commune": "PEZENS", + "code_postal": "11170", + "coordonnees_gps": [ + 43.2548914724, + 2.24772297673 + ], + "libelle_d_acheminement": "PEZENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24772297673, + 43.2548914724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "433875b1fc7e5a3742c942ee85042675a55ba911", + "fields": { + "code_commune_insee": "21685", + "nom_de_la_commune": "VILLAINES EN DUESMOIS", + "code_postal": "21450", + "coordonnees_gps": [ + 47.6870774985, + 4.51967425037 + ], + "libelle_d_acheminement": "VILLAINES EN DUESMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51967425037, + 47.6870774985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e626da42a588a0295df0de0bbb8ac963fa32a108", + "fields": { + "code_commune_insee": "11295", + "nom_de_la_commune": "PORTEL DES CORBIERES", + "code_postal": "11490", + "coordonnees_gps": [ + 43.0517396235, + 2.9064611409 + ], + "libelle_d_acheminement": "PORTEL DES CORBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9064611409, + 43.0517396235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c65c860816a2f0122624b30d3ddbabc82fb4ef4", + "fields": { + "code_commune_insee": "21699", + "nom_de_la_commune": "VILLERS LES POTS", + "code_postal": "21130", + "coordonnees_gps": [ + 47.2102286765, + 5.34734391445 + ], + "libelle_d_acheminement": "VILLERS LES POTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34734391445, + 47.2102286765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f148951e5ddd13a32805f96ec82fcc53294b374b", + "fields": { + "code_commune_insee": "11297", + "nom_de_la_commune": "PRADELLES CABARDES", + "code_postal": "11380", + "coordonnees_gps": [ + 43.4116401638, + 2.43867398823 + ], + "libelle_d_acheminement": "PRADELLES CABARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43867398823, + 43.4116401638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84a0873d6dc1c865c9270f1e98199f85c6f3a147", + "fields": { + "code_commune_insee": "21703", + "nom_de_la_commune": "VILLIERS EN MORVAN", + "code_postal": "21430", + "coordonnees_gps": [ + 47.1432363648, + 4.25988582154 + ], + "libelle_d_acheminement": "VILLIERS EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25988582154, + 47.1432363648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54e5c3cdeb5bed79eef4086fd65f07308545e891", + "fields": { + "ligne_5": "LAPRADELLE", + "code_commune_insee": "11302", + "libelle_d_acheminement": "PUILAURENS", + "code_postal": "11140", + "nom_de_la_commune": "PUILAURENS", + "coordonnees_gps": [ + 42.8132848695, + 2.29884099838 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29884099838, + 42.8132848695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0f297fd3bd7c59ad052d1151c8d421d1b62a1b8", + "fields": { + "code_commune_insee": "21713", + "nom_de_la_commune": "VONGES", + "code_postal": "21270", + "coordonnees_gps": [ + 47.2896205229, + 5.39637772205 + ], + "libelle_d_acheminement": "VONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39637772205, + 47.2896205229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb3f7083e3feca4a7d78b99aeb606fa9423018ee", + "fields": { + "code_commune_insee": "11304", + "nom_de_la_commune": "QUILLAN", + "code_postal": "11500", + "coordonnees_gps": [ + 42.8757498926, + 2.19080612724 + ], + "libelle_d_acheminement": "QUILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19080612724, + 42.8757498926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81972b436f6c92605366e11ef455af0cb51e8e61", + "fields": { + "code_commune_insee": "21714", + "nom_de_la_commune": "VOSNE ROMANEE", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1598072854, + 4.95546198904 + ], + "libelle_d_acheminement": "VOSNE ROMANEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95546198904, + 47.1598072854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed25f9215aa8d9e2407d581a4058f915fe26c765", + "fields": { + "code_commune_insee": "11306", + "nom_de_la_commune": "QUIRBAJOU", + "code_postal": "11500", + "coordonnees_gps": [ + 42.8361565518, + 2.16870682885 + ], + "libelle_d_acheminement": "QUIRBAJOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16870682885, + 42.8361565518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d521be39cde0bf62fe8ee5db3ba6249c559a2c75", + "fields": { + "code_commune_insee": "22001", + "nom_de_la_commune": "ALLINEUC", + "code_postal": "22460", + "coordonnees_gps": [ + 48.3113091496, + -2.86736098744 + ], + "libelle_d_acheminement": "ALLINEUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.86736098744, + 48.3113091496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "187b0f17b1e744bc0cfc4813bafae10229fb011c", + "fields": { + "code_commune_insee": "11307", + "nom_de_la_commune": "RAISSAC D AUDE", + "code_postal": "11200", + "coordonnees_gps": [ + 43.2283330728, + 2.87745345663 + ], + "libelle_d_acheminement": "RAISSAC D AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87745345663, + 43.2283330728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "890b9e0e67cca3cc3c640214fe3c8cef0bad48ab", + "fields": { + "code_commune_insee": "22002", + "nom_de_la_commune": "ANDEL", + "code_postal": "22400", + "coordonnees_gps": [ + 48.4944929623, + -2.55104146851 + ], + "libelle_d_acheminement": "ANDEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.55104146851, + 48.4944929623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca8544145445ac647efed0a2fb2cfda256145efb", + "fields": { + "code_commune_insee": "11311", + "nom_de_la_commune": "RIBAUTE", + "code_postal": "11220", + "coordonnees_gps": [ + 43.1073015434, + 2.64058878352 + ], + "libelle_d_acheminement": "RIBAUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64058878352, + 43.1073015434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82a7fdba1968d82f67451869ead537fd6ed71023", + "fields": { + "ligne_5": "BOTLEZAN", + "code_commune_insee": "22004", + "libelle_d_acheminement": "BEGARD", + "code_postal": "22140", + "nom_de_la_commune": "BEGARD", + "coordonnees_gps": [ + 48.6345594689, + -3.29153247621 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29153247621, + 48.6345594689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec9418fe847315a123e727812c5dd21fac94df66", + "fields": { + "code_commune_insee": "11317", + "nom_de_la_commune": "RODOME", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7964846966, + 2.0672394673 + ], + "libelle_d_acheminement": "RODOME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0672394673, + 42.7964846966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dc819a69483d9c2778099f73c107161f7b00e34", + "fields": { + "code_commune_insee": "22009", + "nom_de_la_commune": "LE BODEO", + "code_postal": "22320", + "coordonnees_gps": [ + 48.3263875308, + -2.92155269412 + ], + "libelle_d_acheminement": "LE BODEO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.92155269412, + 48.3263875308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "656b408c81635ef890655022c835957c3496d6b8", + "fields": { + "ligne_5": "CONILHAC DE LA MONTAGNE", + "code_commune_insee": "11323", + "libelle_d_acheminement": "ROQUETAILLADE ET CONILHAC", + "code_postal": "11190", + "nom_de_la_commune": "ROQUETAILLADE ET CONILHAC", + "coordonnees_gps": [ + 42.9986140318, + 2.20719582906 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20719582906, + 42.9986140318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb0de62d54c5808b95f25eb5c4f1bd540bc610da", + "fields": { + "code_commune_insee": "22012", + "nom_de_la_commune": "LA BOUILLIE", + "code_postal": "22240", + "coordonnees_gps": [ + 48.583703743, + -2.44206037787 + ], + "libelle_d_acheminement": "LA BOUILLIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.44206037787, + 48.583703743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e160dd72b7da676086e2fd682fe0b4017acba3ce", + "fields": { + "code_commune_insee": "11331", + "nom_de_la_commune": "ST AMANS", + "code_postal": "11270", + "coordonnees_gps": [ + 43.2274024701, + 1.88551132685 + ], + "libelle_d_acheminement": "ST AMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88551132685, + 43.2274024701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17c57863bdf6787944eef61d52e78c8dc06a255f", + "fields": { + "code_commune_insee": "22016", + "nom_de_la_commune": "ILE DE BREHAT", + "code_postal": "22870", + "coordonnees_gps": [ + 48.851165388, + -3.00126760584 + ], + "libelle_d_acheminement": "ILE DE BREHAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00126760584, + 48.851165388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c746447ceb385b733ce40f60746d80795933ae6", + "fields": { + "code_commune_insee": "11333", + "nom_de_la_commune": "ST BENOIT", + "code_postal": "11230", + "coordonnees_gps": [ + 43.0096303677, + 2.06434477495 + ], + "libelle_d_acheminement": "ST BENOIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06434477495, + 43.0096303677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abb9eb59e749e2290da50aae89405a8d76377839", + "fields": { + "code_commune_insee": "22020", + "nom_de_la_commune": "BROONS", + "code_postal": "22250", + "coordonnees_gps": [ + 48.3108134882, + -2.24133807266 + ], + "libelle_d_acheminement": "BROONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24133807266, + 48.3108134882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c44213abd2405951e3522297e3023f689183bf6", + "fields": { + "code_commune_insee": "11334", + "nom_de_la_commune": "STE CAMELLE", + "code_postal": "11410", + "coordonnees_gps": [ + 43.2710599599, + 1.78451738107 + ], + "libelle_d_acheminement": "STE CAMELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78451738107, + 43.2710599599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42a97a5a1a75acd7bc5097269a8c5bb9b464f0e7", + "fields": { + "code_commune_insee": "22023", + "nom_de_la_commune": "BULAT PESTIVIEN", + "code_postal": "22160", + "coordonnees_gps": [ + 48.4345552125, + -3.33259319991 + ], + "libelle_d_acheminement": "BULAT PESTIVIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33259319991, + 48.4345552125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f04791a40b90526bb0c29f7d1f63622e7c344ee", + "fields": { + "code_commune_insee": "11343", + "nom_de_la_commune": "ST GAUDERIC", + "code_postal": "11270", + "coordonnees_gps": [ + 43.1264567389, + 1.95859327013 + ], + "libelle_d_acheminement": "ST GAUDERIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95859327013, + 43.1264567389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45d7c610120b57894ac50266136cbc9fe4d02bf5", + "fields": { + "code_commune_insee": "22033", + "nom_de_la_commune": "CAUREL", + "code_postal": "22530", + "coordonnees_gps": [ + 48.2174929186, + -3.03912120085 + ], + "libelle_d_acheminement": "CAUREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.03912120085, + 48.2174929186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6eeef2dfe319103c69abd3f9bd512b707b11665d", + "fields": { + "code_commune_insee": "11357", + "nom_de_la_commune": "ST MARTIN LE VIEIL", + "code_postal": "11170", + "coordonnees_gps": [ + 43.2942127146, + 2.15397156403 + ], + "libelle_d_acheminement": "ST MARTIN LE VIEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15397156403, + 43.2942127146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4b15ae7135abc303dcac18999037d9608bd1595", + "fields": { + "code_commune_insee": "22043", + "nom_de_la_commune": "COETLOGON", + "code_postal": "22210", + "coordonnees_gps": [ + 48.1328534354, + -2.54349043634 + ], + "libelle_d_acheminement": "COETLOGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.54349043634, + 48.1328534354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cebb12cb4d8b82900b4cd1e9a692b4a1c875c932", + "fields": { + "code_commune_insee": "11359", + "nom_de_la_commune": "ST MICHEL DE LANES", + "code_postal": "11410", + "coordonnees_gps": [ + 43.3265442555, + 1.75090038228 + ], + "libelle_d_acheminement": "ST MICHEL DE LANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75090038228, + 43.3265442555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8a9beea55b6bd8f8ad0389aca98edb70e2407c9", + "fields": { + "code_commune_insee": "22045", + "nom_de_la_commune": "COHINIAC", + "code_postal": "22800", + "coordonnees_gps": [ + 48.4521950063, + -2.94662716848 + ], + "libelle_d_acheminement": "COHINIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.94662716848, + 48.4521950063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a9e7685ff5a37a4694aea0d2ec6ca6ff594b1fc", + "fields": { + "code_commune_insee": "11360", + "nom_de_la_commune": "ST NAZAIRE D AUDE", + "code_postal": "11120", + "coordonnees_gps": [ + 43.2489566147, + 2.89118063794 + ], + "libelle_d_acheminement": "ST NAZAIRE D AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89118063794, + 43.2489566147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0fb114b6bc1c3c80b5e3f7f18e9e7d064aa77da", + "fields": { + "ligne_5": "ST GOUENO", + "code_commune_insee": "22046", + "libelle_d_acheminement": "LE MENE", + "code_postal": "22330", + "nom_de_la_commune": "LE MENE", + "coordonnees_gps": [ + 48.2937312654, + -2.52246803693 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52246803693, + 48.2937312654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0664d32b57b11b91598c18072904744a9e696f6c", + "fields": { + "code_commune_insee": "11368", + "nom_de_la_commune": "SALLELES CABARDES", + "code_postal": "11600", + "coordonnees_gps": [ + 43.3201466432, + 2.42096628155 + ], + "libelle_d_acheminement": "SALLELES CABARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42096628155, + 43.3201466432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96a9ae1d6ef1a960b579a5387c7c6b1a636d5f3c", + "fields": { + "ligne_5": "ST JACUT DU MENE", + "code_commune_insee": "22046", + "libelle_d_acheminement": "LE MENE", + "code_postal": "22330", + "nom_de_la_commune": "LE MENE", + "coordonnees_gps": [ + 48.2937312654, + -2.52246803693 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52246803693, + 48.2937312654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f40c3f34f4287db46fd1666c94588ff8269da572", + "fields": { + "code_commune_insee": "11370", + "nom_de_la_commune": "SALLES D AUDE", + "code_postal": "11110", + "coordonnees_gps": [ + 43.2361241545, + 3.10717237313 + ], + "libelle_d_acheminement": "SALLES D AUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10717237313, + 43.2361241545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "637f7f2f55894f54ae4f8b2149bfe98c264ece03", + "fields": { + "ligne_5": "LEHON", + "code_commune_insee": "22050", + "libelle_d_acheminement": "DINAN", + "code_postal": "22100", + "nom_de_la_commune": "DINAN", + "coordonnees_gps": [ + 48.4557709953, + -2.04816149693 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04816149693, + 48.4557709953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78c34206b13bc55eecca3bd1b0f97adcecc2c650", + "fields": { + "code_commune_insee": "11373", + "nom_de_la_commune": "SALVEZINES", + "code_postal": "11140", + "coordonnees_gps": [ + 42.7749408531, + 2.28540415468 + ], + "libelle_d_acheminement": "SALVEZINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28540415468, + 42.7749408531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c48006da62351cd4e2f6f8c54b6af9bced3391b", + "fields": { + "code_commune_insee": "22054", + "nom_de_la_commune": "ERQUY", + "code_postal": "22430", + "coordonnees_gps": [ + 48.6194186311, + -2.45858442922 + ], + "libelle_d_acheminement": "ERQUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45858442922, + 48.6194186311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f051c19ae9715bf4f4cf217a8f93f01df2db564f", + "fields": { + "code_commune_insee": "11377", + "nom_de_la_commune": "SERRES", + "code_postal": "11190", + "coordonnees_gps": [ + 42.9445748833, + 2.32874834613 + ], + "libelle_d_acheminement": "SERRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32874834613, + 42.9445748833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20aaac7ebbe69bb5a30752ec6a2fd5f0c0b6d234", + "fields": { + "ligne_5": "CAROUAL", + "code_commune_insee": "22054", + "libelle_d_acheminement": "ERQUY", + "code_postal": "22430", + "nom_de_la_commune": "ERQUY", + "coordonnees_gps": [ + 48.6194186311, + -2.45858442922 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45858442922, + 48.6194186311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8133821314d6a8ba4fcc56221f0c72901963743c", + "fields": { + "code_commune_insee": "11379", + "nom_de_la_commune": "SIGEAN", + "code_postal": "11130", + "coordonnees_gps": [ + 43.0395983609, + 2.98124209143 + ], + "libelle_d_acheminement": "SIGEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98124209143, + 43.0395983609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dc9322c1139f100c03b377437096d4f183bbae6", + "fields": { + "code_commune_insee": "22060", + "nom_de_la_commune": "GAUSSON", + "code_postal": "22150", + "coordonnees_gps": [ + 48.2927028032, + -2.76114606915 + ], + "libelle_d_acheminement": "GAUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76114606915, + 48.2927028032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94a7a23f42d4f785f4c82a42ffd1a4ef1a8f0682", + "fields": { + "code_commune_insee": "11387", + "nom_de_la_commune": "TAURIZE", + "code_postal": "11220", + "coordonnees_gps": [ + 43.0644951313, + 2.50638468749 + ], + "libelle_d_acheminement": "TAURIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50638468749, + 43.0644951313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb845767105cb4ce8df19fa7d4d07ff0004c585f", + "fields": { + "code_commune_insee": "22067", + "nom_de_la_commune": "GRACES", + "code_postal": "22200", + "coordonnees_gps": [ + 48.5450744926, + -3.18200897738 + ], + "libelle_d_acheminement": "GRACES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18200897738, + 48.5450744926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e80595d4d754c76fc888f924be9fc1e29b64f4c", + "fields": { + "code_commune_insee": "11388", + "nom_de_la_commune": "TERMES", + "code_postal": "11330", + "coordonnees_gps": [ + 43.0033668711, + 2.57033427463 + ], + "libelle_d_acheminement": "TERMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57033427463, + 43.0033668711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cb6c4536e47597ce84b06d7da0d3f4dcfd7e839", + "fields": { + "ligne_5": "GOURLAN GRACES", + "code_commune_insee": "22067", + "libelle_d_acheminement": "GRACES", + "code_postal": "22200", + "nom_de_la_commune": "GRACES", + "coordonnees_gps": [ + 48.5450744926, + -3.18200897738 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18200897738, + 48.5450744926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "637069c5f87fe58ba543ad93aa800bc2d8d9fdff", + "fields": { + "code_commune_insee": "11399", + "nom_de_la_commune": "TREVILLE", + "code_postal": "11400", + "coordonnees_gps": [ + 43.3828691726, + 1.95497022333 + ], + "libelle_d_acheminement": "TREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95497022333, + 43.3828691726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a27cd72c3f6c95080cda6bcbed07a68f0af6652", + "fields": { + "code_commune_insee": "22073", + "nom_de_la_commune": "LA HARMOYE", + "code_postal": "22320", + "coordonnees_gps": [ + 48.3463965, + -2.96935303524 + ], + "libelle_d_acheminement": "LA HARMOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96935303524, + 48.3463965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d96f44a6b1c59518c89e4bfa092e7d14d09fd6b", + "fields": { + "code_commune_insee": "11409", + "nom_de_la_commune": "VIGNEVIEILLE", + "code_postal": "11330", + "coordonnees_gps": [ + 43.0156409984, + 2.53032066323 + ], + "libelle_d_acheminement": "VIGNEVIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53032066323, + 43.0156409984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9bd9fe131b3c3de1859c9732c03d8e93bcc609c", + "fields": { + "code_commune_insee": "22074", + "nom_de_la_commune": "LE HAUT CORLAY", + "code_postal": "22320", + "coordonnees_gps": [ + 48.3406704165, + -3.03202477497 + ], + "libelle_d_acheminement": "LE HAUT CORLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.03202477497, + 48.3406704165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc9b15870d74f2c07616668c45c799dc6bc736eb", + "fields": { + "code_commune_insee": "11416", + "nom_de_la_commune": "VILLARZEL CABARDES", + "code_postal": "11600", + "coordonnees_gps": [ + 43.2840663729, + 2.46920880268 + ], + "libelle_d_acheminement": "VILLARZEL CABARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46920880268, + 43.2840663729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cab4f1f115ac0e77dd15c7d3039e7990e8ed59af", + "fields": { + "code_commune_insee": "22077", + "nom_de_la_commune": "HENANSAL", + "code_postal": "22400", + "coordonnees_gps": [ + 48.5382499804, + -2.44821651079 + ], + "libelle_d_acheminement": "HENANSAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.44821651079, + 48.5382499804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a93831b08e17218acc8bb949dd86091026953aca", + "fields": { + "code_commune_insee": "11417", + "nom_de_la_commune": "VILLARZEL DU RAZES", + "code_postal": "11300", + "coordonnees_gps": [ + 43.1426266338, + 2.20324687273 + ], + "libelle_d_acheminement": "VILLARZEL DU RAZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20324687273, + 43.1426266338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d04640147e630660152fcd4f550bae845833d4a8", + "fields": { + "code_commune_insee": "22079", + "nom_de_la_commune": "HENON", + "code_postal": "22150", + "coordonnees_gps": [ + 48.3866424703, + -2.68322883028 + ], + "libelle_d_acheminement": "HENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.68322883028, + 48.3866424703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f67e37df4d8e1e3f9d97103070625cf16ba31d02", + "fields": { + "code_commune_insee": "11422", + "nom_de_la_commune": "VILLEDUBERT", + "code_postal": "11800", + "coordonnees_gps": [ + 43.2318046897, + 2.41699108756 + ], + "libelle_d_acheminement": "VILLEDUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41699108756, + 43.2318046897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbd883b5ef058da960a0e2852fbd48e7538ddf90", + "fields": { + "code_commune_insee": "22083", + "nom_de_la_commune": "ILLIFAUT", + "code_postal": "22230", + "coordonnees_gps": [ + 48.1441743723, + -2.3357832336 + ], + "libelle_d_acheminement": "ILLIFAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.3357832336, + 48.1441743723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "962cbba4a4017233471b349aac1878da64fee2a5", + "fields": { + "code_commune_insee": "11423", + "nom_de_la_commune": "VILLEFLOURE", + "code_postal": "11570", + "coordonnees_gps": [ + 43.1293275132, + 2.3891099941 + ], + "libelle_d_acheminement": "VILLEFLOURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3891099941, + 43.1293275132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad2392ab58db2120e3a451f1d0906b630dfdf0ce", + "fields": { + "ligne_5": "JUGON LES LACS", + "code_commune_insee": "22084", + "libelle_d_acheminement": "JUGON LES LACS COMMUNE NOUVELLE", + "code_postal": "22270", + "nom_de_la_commune": "JUGON LES LACS COMMUNE NOUVELLE", + "coordonnees_gps": [ + 48.4166591067, + -2.32522349689 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.32522349689, + 48.4166591067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecb44190f4cbf916c8a921c8af6d916bb3abf42e", + "fields": { + "code_commune_insee": "11425", + "nom_de_la_commune": "VILLEGAILHENC", + "code_postal": "11600", + "coordonnees_gps": [ + 43.2718025661, + 2.34692667896 + ], + "libelle_d_acheminement": "VILLEGAILHENC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34692667896, + 43.2718025661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a68af064b0c32bf8bff2717433c32af04a88b3e7", + "fields": { + "ligne_5": "LA COTENTIN PLANGUENOUAL", + "code_commune_insee": "22093", + "libelle_d_acheminement": "LAMBALLE ARMOR", + "code_postal": "22400", + "nom_de_la_commune": "LAMBALLE ARMOR", + "coordonnees_gps": [ + 48.4684404751, + -2.49534815954 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49534815954, + 48.4684404751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "710d1f60f36bef291ea747db845a5596fb64b0a0", + "fields": { + "code_commune_insee": "11426", + "nom_de_la_commune": "VILLEGLY", + "code_postal": "11600", + "coordonnees_gps": [ + 43.2930208254, + 2.43699100253 + ], + "libelle_d_acheminement": "VILLEGLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43699100253, + 43.2930208254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ac70a46df8c83feee85f4416753a7a2a0f85d86", + "fields": { + "ligne_5": "MORIEUX", + "code_commune_insee": "22093", + "libelle_d_acheminement": "LAMBALLE ARMOR", + "code_postal": "22400", + "nom_de_la_commune": "LAMBALLE ARMOR", + "coordonnees_gps": [ + 48.4684404751, + -2.49534815954 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49534815954, + 48.4684404751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91f4db6cffe43ef293214fe9cea2392bce918525", + "fields": { + "code_commune_insee": "11429", + "nom_de_la_commune": "VILLEMOUSTAUSSOU", + "code_postal": "11620", + "coordonnees_gps": [ + 43.2495624385, + 2.36587017807 + ], + "libelle_d_acheminement": "VILLEMOUSTAUSSOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36587017807, + 43.2495624385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55bd06714cbe555572f8e37cea2f1bf20d18577e", + "fields": { + "ligne_5": "PLANGUENOUAL", + "code_commune_insee": "22093", + "libelle_d_acheminement": "LAMBALLE ARMOR", + "code_postal": "22400", + "nom_de_la_commune": "LAMBALLE ARMOR", + "coordonnees_gps": [ + 48.4684404751, + -2.49534815954 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49534815954, + 48.4684404751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e49f03ebd221acd071445c43f4af9bad01576e96", + "fields": { + "code_commune_insee": "11430", + "nom_de_la_commune": "VILLENEUVE LA COMPTAL", + "code_postal": "11400", + "coordonnees_gps": [ + 43.285181262, + 1.91990066613 + ], + "libelle_d_acheminement": "VILLENEUVE LA COMPTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91990066613, + 43.285181262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09c94886dba12404b6d5edadf560b77abf7c49f3", + "fields": { + "code_commune_insee": "22094", + "nom_de_la_commune": "LANCIEUX", + "code_postal": "22770", + "coordonnees_gps": [ + 48.6012844665, + -2.14729508559 + ], + "libelle_d_acheminement": "LANCIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.14729508559, + 48.6012844665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aafd9b090a961455e0410fe1a6f1b3acefb24d5", + "fields": { + "code_commune_insee": "11438", + "nom_de_la_commune": "VILLESISCLE", + "code_postal": "11150", + "coordonnees_gps": [ + 43.2278470431, + 2.08978989468 + ], + "libelle_d_acheminement": "VILLESISCLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08978989468, + 43.2278470431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dfed2853e56d946f60e32007179d65ae28c10a5", + "fields": { + "code_commune_insee": "22097", + "nom_de_la_commune": "LA LANDEC", + "code_postal": "22980", + "coordonnees_gps": [ + 48.4261108974, + -2.18321076589 + ], + "libelle_d_acheminement": "LA LANDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18321076589, + 48.4261108974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d8bf95edcb1cbf2020a188e3b98d5d43a8999bc", + "fields": { + "code_commune_insee": "12001", + "nom_de_la_commune": "AGEN D AVEYRON", + "code_postal": "12630", + "coordonnees_gps": [ + 44.3513031939, + 2.69339680513 + ], + "libelle_d_acheminement": "AGEN D AVEYRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69339680513, + 44.3513031939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4481b3e8280c77d22b2cd8724a841cd364d7373", + "fields": { + "code_commune_insee": "22103", + "nom_de_la_commune": "LANGROLAY SUR RANCE", + "code_postal": "22490", + "coordonnees_gps": [ + 48.5530223296, + -2.01383816063 + ], + "libelle_d_acheminement": "LANGROLAY SUR RANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01383816063, + 48.5530223296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28c41a314356e541efd8b8b5e3f3cde6f85d6f6f", + "fields": { + "code_commune_insee": "12006", + "nom_de_la_commune": "ALRANCE", + "code_postal": "12430", + "coordonnees_gps": [ + 44.1352241599, + 2.67560444399 + ], + "libelle_d_acheminement": "ALRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67560444399, + 44.1352241599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bd5b62d2bea5dddd4f2f361cb467ac757d7338f", + "fields": { + "code_commune_insee": "22106", + "nom_de_la_commune": "LANGUEUX", + "code_postal": "22360", + "coordonnees_gps": [ + 48.5000522834, + -2.70972282168 + ], + "libelle_d_acheminement": "LANGUEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.70972282168, + 48.5000522834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d876c0b6528ca74990e7613f03ba71e166cbeed2", + "fields": { + "code_commune_insee": "12013", + "nom_de_la_commune": "AUBIN", + "code_postal": "12110", + "coordonnees_gps": [ + 44.5318545051, + 2.25591796926 + ], + "libelle_d_acheminement": "AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25591796926, + 44.5318545051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b391138327689a406a15aadd95fe35e1a89a0425", + "fields": { + "ligne_5": "LANISCAT", + "code_commune_insee": "22107", + "libelle_d_acheminement": "BON REPOS SUR BLAVET", + "code_postal": "22570", + "nom_de_la_commune": "BON REPOS SUR BLAVET", + "coordonnees_gps": [ + 48.2402807469, + -3.13725653018 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13725653018, + 48.2402807469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef3ee91d7a8e518836dee00a200848a8f6612e2e", + "fields": { + "code_commune_insee": "12017", + "nom_de_la_commune": "AYSSENES", + "code_postal": "12430", + "coordonnees_gps": [ + 44.092111179, + 2.76570045651 + ], + "libelle_d_acheminement": "AYSSENES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76570045651, + 44.092111179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33a805bb609ee606f7ec1423ad110b07cfd7f6f4", + "fields": { + "code_commune_insee": "22112", + "nom_de_la_commune": "LANNEBERT", + "code_postal": "22290", + "coordonnees_gps": [ + 48.6506329837, + -3.00889441473 + ], + "libelle_d_acheminement": "LANNEBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00889441473, + 48.6506329837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "214d2ac133f97b9b5e8917438161876bf292cebf", + "fields": { + "ligne_5": "VABRE TIZAC", + "code_commune_insee": "12021", + "libelle_d_acheminement": "LE BAS SEGALA", + "code_postal": "12240", + "nom_de_la_commune": "LE BAS SEGALA", + "coordonnees_gps": [ + 44.3386235465, + 2.14341113213 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14341113213, + 44.3386235465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2366a287c622819e1702bcc718fe41e77afd96b", + "fields": { + "code_commune_insee": "22113", + "nom_de_la_commune": "LANNION", + "code_postal": "22300", + "coordonnees_gps": [ + 48.7433496707, + -3.46159799691 + ], + "libelle_d_acheminement": "LANNION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.46159799691, + 48.7433496707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cce0e30113dcc21b486fdeb2ddaa9faf97a64bf", + "fields": { + "code_commune_insee": "12025", + "nom_de_la_commune": "BELMONT SUR RANCE", + "code_postal": "12370", + "coordonnees_gps": [ + 43.8248066613, + 2.75112588712 + ], + "libelle_d_acheminement": "BELMONT SUR RANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75112588712, + 43.8248066613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc8623829bd4cab6e5a2f119d4c0130b685ac328", + "fields": { + "code_commune_insee": "22114", + "nom_de_la_commune": "LANRELAS", + "code_postal": "22250", + "coordonnees_gps": [ + 48.2463148524, + -2.29585343012 + ], + "libelle_d_acheminement": "LANRELAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.29585343012, + 48.2463148524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47eaea9ff0d694aa77f7dc009c38055690debcb0", + "fields": { + "code_commune_insee": "12026", + "nom_de_la_commune": "BERTHOLENE", + "code_postal": "12310", + "coordonnees_gps": [ + 44.3951997527, + 2.78341531364 + ], + "libelle_d_acheminement": "BERTHOLENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78341531364, + 44.3951997527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80988cb50b6f3841c5458a60ff151a37915626c9", + "fields": { + "code_commune_insee": "22124", + "nom_de_la_commune": "LESCOUET GOUAREC", + "code_postal": "22570", + "coordonnees_gps": [ + 48.1688076407, + -3.20708353658 + ], + "libelle_d_acheminement": "LESCOUET GOUAREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.20708353658, + 48.1688076407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "016d4db84c4affb5c40f5763adaa24300a850f93", + "fields": { + "code_commune_insee": "12033", + "nom_de_la_commune": "BOZOULS", + "code_postal": "12340", + "coordonnees_gps": [ + 44.4675229225, + 2.70795409779 + ], + "libelle_d_acheminement": "BOZOULS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70795409779, + 44.4675229225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74df4f304c9acbb10a205b3f0371808a7090e3ac", + "fields": { + "code_commune_insee": "22126", + "nom_de_la_commune": "LE LESLAY", + "code_postal": "22800", + "coordonnees_gps": [ + 48.4240369028, + -2.96496738118 + ], + "libelle_d_acheminement": "LE LESLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96496738118, + 48.4240369028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92e9c12be1d34ae0c142f847e171d44dae8f69dc", + "fields": { + "code_commune_insee": "12037", + "nom_de_la_commune": "BROQUIES", + "code_postal": "12480", + "coordonnees_gps": [ + 44.0179354928, + 2.70623918127 + ], + "libelle_d_acheminement": "BROQUIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70623918127, + 44.0179354928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94237278ef92468182f1853189f881ec0474a5c6", + "fields": { + "code_commune_insee": "22135", + "nom_de_la_commune": "LOUARGAT", + "code_postal": "22540", + "coordonnees_gps": [ + 48.5612002546, + -3.34101341684 + ], + "libelle_d_acheminement": "LOUARGAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34101341684, + 48.5612002546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a455571c2b959c344dfd50a98d088f1a6ba6959e", + "fields": { + "ligne_5": "CEIGNAC", + "code_commune_insee": "12043", + "libelle_d_acheminement": "CALMONT", + "code_postal": "12450", + "nom_de_la_commune": "CALMONT", + "coordonnees_gps": [ + 44.2590321912, + 2.52423447426 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52423447426, + 44.2590321912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "932b664afe18ba481ec5b7ddd384bad111732288", + "fields": { + "code_commune_insee": "22137", + "nom_de_la_commune": "MAEL CARHAIX", + "code_postal": "22340", + "coordonnees_gps": [ + 48.2882583933, + -3.41055453588 + ], + "libelle_d_acheminement": "MAEL CARHAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41055453588, + 48.2882583933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0905d0b55b6451f8620a15bf89c6f05c4f9ea73", + "fields": { + "code_commune_insee": "12047", + "nom_de_la_commune": "CAMPAGNAC", + "code_postal": "12560", + "coordonnees_gps": [ + 44.4014190434, + 3.08798041232 + ], + "libelle_d_acheminement": "CAMPAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08798041232, + 44.4014190434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf463832b966d3f4df0a992a4428d5d7699d4ff5", + "fields": { + "code_commune_insee": "22144", + "nom_de_la_commune": "LA MEAUGON", + "code_postal": "22440", + "coordonnees_gps": [ + 48.5044768613, + -2.84729418508 + ], + "libelle_d_acheminement": "LA MEAUGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84729418508, + 48.5044768613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02b67a19bf1b5359c39f35dabed93e01020b0db4", + "fields": { + "ligne_5": "BANHARS", + "code_commune_insee": "12048", + "libelle_d_acheminement": "CAMPOURIEZ", + "code_postal": "12140", + "nom_de_la_commune": "CAMPOURIEZ", + "coordonnees_gps": [ + 44.6808744001, + 2.60936956955 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60936956955, + 44.6808744001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f95790fc3f60464660b82228b863dcbc217099b3", + "fields": { + "code_commune_insee": "22145", + "nom_de_la_commune": "MEGRIT", + "code_postal": "22270", + "coordonnees_gps": [ + 48.38979598, + -2.26731642249 + ], + "libelle_d_acheminement": "MEGRIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.26731642249, + 48.38979598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85a67e36eeb434747af61c3cfee2ff8a75e74964", + "fields": { + "code_commune_insee": "12048", + "nom_de_la_commune": "CAMPOURIEZ", + "code_postal": "12460", + "coordonnees_gps": [ + 44.6808744001, + 2.60936956955 + ], + "libelle_d_acheminement": "CAMPOURIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60936956955, + 44.6808744001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f18f0a02ccf0aac5c31ddfba7f913d686faf95f3", + "fields": { + "code_commune_insee": "22163", + "nom_de_la_commune": "PAULE", + "code_postal": "22340", + "coordonnees_gps": [ + 48.2274085967, + -3.46128178015 + ], + "libelle_d_acheminement": "PAULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.46128178015, + 48.2274085967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75bf40214f079c95c9100cf2cbba4c278d60eaef", + "fields": { + "code_commune_insee": "12050", + "nom_de_la_commune": "CANET DE SALARS", + "code_postal": "12290", + "coordonnees_gps": [ + 44.2325871392, + 2.7377561154 + ], + "libelle_d_acheminement": "CANET DE SALARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7377561154, + 44.2325871392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c31dfb534e1e42274d2759333d65512d3d0c844", + "fields": { + "code_commune_insee": "22164", + "nom_de_la_commune": "PEDERNEC", + "code_postal": "22540", + "coordonnees_gps": [ + 48.5880169887, + -3.27690620211 + ], + "libelle_d_acheminement": "PEDERNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.27690620211, + 48.5880169887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "224b32a38224ca58c890734544a15635c549ccf2", + "fields": { + "code_commune_insee": "12053", + "nom_de_la_commune": "LA CAPELLE BALAGUIER", + "code_postal": "12260", + "coordonnees_gps": [ + 44.4390516926, + 1.9259338711 + ], + "libelle_d_acheminement": "LA CAPELLE BALAGUIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9259338711, + 44.4390516926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d4a243dc6eded9197fe8c2aad0d9a93df803da6", + "fields": { + "ligne_5": "LE QUINQUIS", + "code_commune_insee": "22164", + "libelle_d_acheminement": "PEDERNEC", + "code_postal": "22540", + "nom_de_la_commune": "PEDERNEC", + "coordonnees_gps": [ + 48.5880169887, + -3.27690620211 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.27690620211, + 48.5880169887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f194299130dba0362eeb7db162e01bdae9b491a6", + "fields": { + "code_commune_insee": "12068", + "nom_de_la_commune": "COLOMBIES", + "code_postal": "12240", + "coordonnees_gps": [ + 44.3435829134, + 2.32786073616 + ], + "libelle_d_acheminement": "COLOMBIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32786073616, + 44.3435829134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6e761921e221263b388abe786c8e06221870ea0", + "fields": { + "code_commune_insee": "22168", + "nom_de_la_commune": "PERROS GUIREC", + "code_postal": "22700", + "coordonnees_gps": [ + 48.8094393417, + -3.46769227891 + ], + "libelle_d_acheminement": "PERROS GUIREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.46769227891, + 48.8094393417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf4241c651bbe55570b5d7589ce32b94cb3fc35e", + "fields": { + "code_commune_insee": "12075", + "nom_de_la_commune": "CONNAC", + "code_postal": "12170", + "coordonnees_gps": [ + 44.0203997041, + 2.59454534597 + ], + "libelle_d_acheminement": "CONNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59454534597, + 44.0203997041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b5cbbc813a3a2f7110e909a689e06795f0585f7", + "fields": { + "code_commune_insee": "22174", + "nom_de_la_commune": "PLEBOULLE", + "code_postal": "22550", + "coordonnees_gps": [ + 48.5946127518, + -2.33355800652 + ], + "libelle_d_acheminement": "PLEBOULLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.33355800652, + 48.5946127518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c4bcb7a12e8b1ede57895ddbfec5ac649bd8236", + "fields": { + "code_commune_insee": "12077", + "nom_de_la_commune": "CORNUS", + "code_postal": "12540", + "coordonnees_gps": [ + 43.8924370352, + 3.20078895944 + ], + "libelle_d_acheminement": "CORNUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20078895944, + 43.8924370352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d5b4596558f1cdf45828fbd456e24d2be3cc41d", + "fields": { + "code_commune_insee": "22178", + "nom_de_la_commune": "PLEHEDEL", + "code_postal": "22290", + "coordonnees_gps": [ + 48.6949303191, + -3.00638352485 + ], + "libelle_d_acheminement": "PLEHEDEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00638352485, + 48.6949303191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f0d44e9543f4eea7f5bc9c7248c9b6c86681598", + "fields": { + "code_commune_insee": "12078", + "nom_de_la_commune": "LES COSTES GOZON", + "code_postal": "12400", + "coordonnees_gps": [ + 44.0165312389, + 2.80008517701 + ], + "libelle_d_acheminement": "LES COSTES GOZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80008517701, + 44.0165312389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c57c6384255aa7491fdafdc14ab4feb4a735e745", + "fields": { + "ligne_5": "SABLES D OR LES PINS", + "code_commune_insee": "22179", + "libelle_d_acheminement": "FREHEL", + "code_postal": "22240", + "nom_de_la_commune": "FREHEL", + "coordonnees_gps": [ + 48.6348223959, + -2.36202603588 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.36202603588, + 48.6348223959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "883dc8d199997abc892464280702f6ed67f0bef5", + "fields": { + "code_commune_insee": "12082", + "nom_de_la_commune": "LA COUVERTOIRADE", + "code_postal": "12230", + "coordonnees_gps": [ + 43.9292282018, + 3.28890121279 + ], + "libelle_d_acheminement": "LA COUVERTOIRADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28890121279, + 43.9292282018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d48956df83c48814d113d81c825d461f482fc28", + "fields": { + "code_commune_insee": "22180", + "nom_de_la_commune": "PLELAN LE PETIT", + "code_postal": "22980", + "coordonnees_gps": [ + 48.427284639, + -2.22409129331 + ], + "libelle_d_acheminement": "PLELAN LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.22409129331, + 48.427284639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3044be437ab8cd7dc013d6840b9240fa6de771b5", + "fields": { + "code_commune_insee": "12083", + "nom_de_la_commune": "CRANSAC", + "code_postal": "12110", + "coordonnees_gps": [ + 44.5186350592, + 2.28781785665 + ], + "libelle_d_acheminement": "CRANSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28781785665, + 44.5186350592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb1b040fbc2b4ac79925cfa9874f6577dbaf3fd7", + "fields": { + "code_commune_insee": "22188", + "nom_de_la_commune": "PLERNEUF", + "code_postal": "22170", + "coordonnees_gps": [ + 48.5062272479, + -2.88034239328 + ], + "libelle_d_acheminement": "PLERNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.88034239328, + 48.5062272479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff240ce06b574a706d75a853646b3c34cdda35ff", + "fields": { + "ligne_5": "AMPIAC", + "code_commune_insee": "12090", + "libelle_d_acheminement": "DRUELLE BALSAC", + "code_postal": "12000", + "nom_de_la_commune": "DRUELLE BALSAC", + "coordonnees_gps": [ + 44.3609252009, + 2.47671597719 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47671597719, + 44.3609252009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5084defe725b396e452a29622b4ab9f0c24e548a", + "fields": { + "ligne_5": "ST EFFLAM", + "code_commune_insee": "22194", + "libelle_d_acheminement": "PLESTIN LES GREVES", + "code_postal": "22310", + "nom_de_la_commune": "PLESTIN LES GREVES", + "coordonnees_gps": [ + 48.6476598998, + -3.6197891944 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6197891944, + 48.6476598998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6facf52ac132fb64c8779b14d510f86fba3d99f9", + "fields": { + "ligne_5": "DRUELLE", + "code_commune_insee": "12090", + "libelle_d_acheminement": "DRUELLE BALSAC", + "code_postal": "12510", + "nom_de_la_commune": "DRUELLE BALSAC", + "coordonnees_gps": [ + 44.3609252009, + 2.47671597719 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47671597719, + 44.3609252009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d515a897360ee206d55b917802dcd2d95a206f3", + "fields": { + "code_commune_insee": "22201", + "nom_de_la_commune": "PLEVENON", + "code_postal": "22240", + "coordonnees_gps": [ + 48.6575564031, + -2.32020473916 + ], + "libelle_d_acheminement": "PLEVENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.32020473916, + 48.6575564031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebfffa85dde518fd150ab553ff797cd2ab224558", + "fields": { + "code_commune_insee": "12091", + "nom_de_la_commune": "DRULHE", + "code_postal": "12350", + "coordonnees_gps": [ + 44.4558448387, + 2.13481083586 + ], + "libelle_d_acheminement": "DRULHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13481083586, + 44.4558448387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2197754602024377b66439721009e77d4b21d817", + "fields": { + "ligne_5": "L HERMITAGE LORGE", + "code_commune_insee": "22203", + "libelle_d_acheminement": "PLOEUC L HERMITAGE", + "code_postal": "22150", + "nom_de_la_commune": "PLOEUC L HERMITAGE", + "coordonnees_gps": [ + 48.3440952237, + -2.76649702896 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76649702896, + 48.3440952237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d59633ff354389a578b2df7a6b8a293596b2ec31", + "fields": { + "code_commune_insee": "12097", + "nom_de_la_commune": "ESPEYRAC", + "code_postal": "12140", + "coordonnees_gps": [ + 44.619095045, + 2.51940471481 + ], + "libelle_d_acheminement": "ESPEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51940471481, + 44.619095045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b76233f0000751a62e84783186e6b7649b6fe3c6", + "fields": { + "ligne_5": "PLOEUC SUR LIE", + "code_commune_insee": "22203", + "libelle_d_acheminement": "PLOEUC L HERMITAGE", + "code_postal": "22150", + "nom_de_la_commune": "PLOEUC L HERMITAGE", + "coordonnees_gps": [ + 48.3440952237, + -2.76649702896 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.76649702896, + 48.3440952237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc2455b8014e2fa382fc9accfacc8514250eeea5", + "fields": { + "code_commune_insee": "12098", + "nom_de_la_commune": "ESTAING", + "code_postal": "12190", + "coordonnees_gps": [ + 44.5694224223, + 2.68750805663 + ], + "libelle_d_acheminement": "ESTAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68750805663, + 44.5694224223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5b8b29e6caff5d43a54fe56b12170b1a9823735", + "fields": { + "code_commune_insee": "22205", + "nom_de_la_commune": "PLOREC SUR ARGUENON", + "code_postal": "22130", + "coordonnees_gps": [ + 48.4632496274, + -2.30133142884 + ], + "libelle_d_acheminement": "PLOREC SUR ARGUENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.30133142884, + 48.4632496274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "216ed0d475b663b31dd6e514b81f72cc99c069c6", + "fields": { + "code_commune_insee": "12102", + "nom_de_la_commune": "FLAVIN", + "code_postal": "12450", + "coordonnees_gps": [ + 44.2880137822, + 2.62175551429 + ], + "libelle_d_acheminement": "FLAVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62175551429, + 44.2880137822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "041ad94a405221ea1af6b44aee27858ceef433ec", + "fields": { + "ligne_5": "CHATELAUDREN", + "code_commune_insee": "22206", + "libelle_d_acheminement": "CHATELAUDREN PLOUAGAT", + "code_postal": "22170", + "nom_de_la_commune": "CHATELAUDREN PLOUAGAT", + "coordonnees_gps": [ + 48.5303656854, + -2.98952865818 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98952865818, + 48.5303656854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d811754e05aae7fa16a65f82760779ef6cc266cb", + "fields": { + "code_commune_insee": "12110", + "nom_de_la_commune": "GOLINHAC", + "code_postal": "12140", + "coordonnees_gps": [ + 44.5959231172, + 2.58644592091 + ], + "libelle_d_acheminement": "GOLINHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58644592091, + 44.5959231172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b56b76d08fa0afe9aa6c9dae014fbbd7daaada5b", + "fields": { + "ligne_5": "PLOUAGAT", + "code_commune_insee": "22206", + "libelle_d_acheminement": "CHATELAUDREN PLOUAGAT", + "code_postal": "22170", + "nom_de_la_commune": "CHATELAUDREN PLOUAGAT", + "coordonnees_gps": [ + 48.5303656854, + -2.98952865818 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98952865818, + 48.5303656854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7064bef71b3beaaae713ed34bdccf4b63e8f0346", + "fields": { + "code_commune_insee": "12115", + "nom_de_la_commune": "L HOSPITALET DU LARZAC", + "code_postal": "12230", + "coordonnees_gps": [ + 43.9737680653, + 3.20839520735 + ], + "libelle_d_acheminement": "L HOSPITALET DU LARZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20839520735, + 43.9737680653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebad7ef10961e1e06e238ad7f6fcc075c59e0534", + "fields": { + "ligne_5": "PLESSIX BALISSON", + "code_commune_insee": "22209", + "libelle_d_acheminement": "BEAUSSAIS SUR MER", + "code_postal": "22650", + "nom_de_la_commune": "BEAUSSAIS SUR MER", + "coordonnees_gps": [ + 48.5596688192, + -2.12838362694 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12838362694, + 48.5596688192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66f46361bef8b6a13efbbe105dc58d8a2cec540d", + "fields": { + "ligne_5": "LAISSAC", + "code_commune_insee": "12120", + "libelle_d_acheminement": "LAISSAC SEVERAC L EGLISE", + "code_postal": "12310", + "nom_de_la_commune": "LAISSAC SEVERAC L EGLISE", + "coordonnees_gps": [ + 44.3644570513, + 2.81804424075 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81804424075, + 44.3644570513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7f26f52942866467e37179c6207a72bc9be4e5c", + "fields": { + "code_commune_insee": "22210", + "nom_de_la_commune": "PLOUBAZLANEC", + "code_postal": "22620", + "coordonnees_gps": [ + 48.80535932, + -3.04524739912 + ], + "libelle_d_acheminement": "PLOUBAZLANEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04524739912, + 48.80535932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b23354d608f46fd5d062b7fba47142df48aae3a6", + "fields": { + "code_commune_insee": "12131", + "nom_de_la_commune": "LA LOUBIERE", + "code_postal": "12740", + "coordonnees_gps": [ + 44.3909930617, + 2.65068486955 + ], + "libelle_d_acheminement": "LA LOUBIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65068486955, + 44.3909930617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c991868ee8238ec26d3e64b763a793b878f9b182", + "fields": { + "ligne_5": "L ARCOUEST", + "code_commune_insee": "22210", + "libelle_d_acheminement": "PLOUBAZLANEC", + "code_postal": "22620", + "nom_de_la_commune": "PLOUBAZLANEC", + "coordonnees_gps": [ + 48.80535932, + -3.04524739912 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.04524739912, + 48.80535932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3154805bb721af7d20d23f11285754ce4caffbe4", + "fields": { + "code_commune_insee": "12142", + "nom_de_la_commune": "MAYRAN", + "code_postal": "12390", + "coordonnees_gps": [ + 44.3890735468, + 2.37196392635 + ], + "libelle_d_acheminement": "MAYRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37196392635, + 44.3890735468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93cacb62b92bbda3598d57dd317771afe5077b9e", + "fields": { + "code_commune_insee": "22217", + "nom_de_la_commune": "PLOUGRAS", + "code_postal": "22780", + "coordonnees_gps": [ + 48.4964328915, + -3.56487485198 + ], + "libelle_d_acheminement": "PLOUGRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.56487485198, + 48.4964328915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3731a73d4e8315f56522408af47e5e65a06665bc", + "fields": { + "code_commune_insee": "12144", + "nom_de_la_commune": "MELJAC", + "code_postal": "12120", + "coordonnees_gps": [ + 44.133704443, + 2.43387018423 + ], + "libelle_d_acheminement": "MELJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43387018423, + 44.133704443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f0ef472010a1000f519b9556c288f9f4b1737ec", + "fields": { + "ligne_5": "LANGAST", + "code_commune_insee": "22219", + "libelle_d_acheminement": "PLOUGUENAST LANGAST", + "code_postal": "22150", + "nom_de_la_commune": "PLOUGUENAST LANGAST", + "coordonnees_gps": [ + 48.2772549866, + -2.71012681366 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.71012681366, + 48.2772549866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a335c4d1dda3bc7639b749f862ef99e243ac0865", + "fields": { + "code_commune_insee": "12147", + "nom_de_la_commune": "MONTAGNOL", + "code_postal": "12360", + "coordonnees_gps": [ + 43.831157935, + 3.02461521529 + ], + "libelle_d_acheminement": "MONTAGNOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02461521529, + 43.831157935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d5b814ed032846e353b1a797dd4bce3628ce308", + "fields": { + "code_commune_insee": "22221", + "nom_de_la_commune": "PLOUGUIEL", + "code_postal": "22220", + "coordonnees_gps": [ + 48.8047926753, + -3.2454956347 + ], + "libelle_d_acheminement": "PLOUGUIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.2454956347, + 48.8047926753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23c4b7f3e13e272caf4a9bc742db7630a1e059c0", + "fields": { + "code_commune_insee": "12148", + "nom_de_la_commune": "MONTBAZENS", + "code_postal": "12220", + "coordonnees_gps": [ + 44.476808221, + 2.21289087598 + ], + "libelle_d_acheminement": "MONTBAZENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21289087598, + 44.476808221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8fe15ca36a4c6f2643b2d7a7f701a242b54c513", + "fields": { + "ligne_5": "KEREGAL", + "code_commune_insee": "22222", + "libelle_d_acheminement": "PLOUHA", + "code_postal": "22580", + "nom_de_la_commune": "PLOUHA", + "coordonnees_gps": [ + 48.6822316529, + -2.93147403458 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.93147403458, + 48.6822316529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd32d0c7254bb5d7717e9a2932a4711a000acecc", + "fields": { + "code_commune_insee": "12150", + "nom_de_la_commune": "MONTEILS", + "code_postal": "12200", + "coordonnees_gps": [ + 44.2654912574, + 1.98762525429 + ], + "libelle_d_acheminement": "MONTEILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98762525429, + 44.2654912574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3677779d2525dc3fe78c0ddc39075e5df0a33a7f", + "fields": { + "code_commune_insee": "22226", + "nom_de_la_commune": "PLOUMILLIAU", + "code_postal": "22300", + "coordonnees_gps": [ + 48.6842832137, + -3.51392982207 + ], + "libelle_d_acheminement": "PLOUMILLIAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.51392982207, + 48.6842832137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "147c626e97d26ea209b83d144d8782e3335749ec", + "fields": { + "code_commune_insee": "12152", + "nom_de_la_commune": "MONTFRANC", + "code_postal": "12380", + "coordonnees_gps": [ + 43.8408623643, + 2.57981205316 + ], + "libelle_d_acheminement": "MONTFRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57981205316, + 43.8408623643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "679e91ed55cb6e684c18ca571c535d982e855b60", + "fields": { + "code_commune_insee": "22251", + "nom_de_la_commune": "PORDIC", + "code_postal": "22590", + "coordonnees_gps": [ + 48.5702275208, + -2.82517190036 + ], + "libelle_d_acheminement": "PORDIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82517190036, + 48.5702275208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4c10950d71c8c81364c875853bd3a2d05dd469d", + "fields": { + "code_commune_insee": "12159", + "nom_de_la_commune": "MORLHON LE HAUT", + "code_postal": "12200", + "coordonnees_gps": [ + 44.3218697288, + 2.08182819744 + ], + "libelle_d_acheminement": "MORLHON LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08182819744, + 44.3218697288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10185fedbb78cd35ac31f73236e1bd129b795f21", + "fields": { + "ligne_5": "TREMELOIR", + "code_commune_insee": "22251", + "libelle_d_acheminement": "PORDIC", + "code_postal": "22590", + "nom_de_la_commune": "PORDIC", + "coordonnees_gps": [ + 48.5702275208, + -2.82517190036 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82517190036, + 48.5702275208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3f7df21b00a7b56a1d01238b36aa01b41e890cb", + "fields": { + "code_commune_insee": "12162", + "nom_de_la_commune": "MOYRAZES", + "code_postal": "12160", + "coordonnees_gps": [ + 44.3275804769, + 2.42736716891 + ], + "libelle_d_acheminement": "MOYRAZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42736716891, + 44.3275804769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c991689197869cfbaefcd00443184eba0400ae4d", + "fields": { + "ligne_5": "L HOPITAL", + "code_commune_insee": "22258", + "libelle_d_acheminement": "QUESSOY", + "code_postal": "22120", + "nom_de_la_commune": "QUESSOY", + "coordonnees_gps": [ + 48.4272969207, + -2.65707016677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.65707016677, + 48.4272969207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d52af791d6f371f37bb1e5647d8743e8a8a7e013", + "fields": { + "code_commune_insee": "12163", + "nom_de_la_commune": "MURASSON", + "code_postal": "12370", + "coordonnees_gps": [ + 43.7612201142, + 2.7618005022 + ], + "libelle_d_acheminement": "MURASSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7618005022, + 43.7612201142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaaaa070ac5081bbf7afcdeebf257697ec2788f9", + "fields": { + "code_commune_insee": "22261", + "nom_de_la_commune": "QUINTENIC", + "code_postal": "22400", + "coordonnees_gps": [ + 48.5102353944, + -2.42178978603 + ], + "libelle_d_acheminement": "QUINTENIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.42178978603, + 48.5102353944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46baca9ce4d0d60ece5e0d42989a702c21f2c0a4", + "fields": { + "code_commune_insee": "12170", + "nom_de_la_commune": "NAUSSAC", + "code_postal": "12700", + "coordonnees_gps": [ + 44.5070770958, + 2.09742065884 + ], + "libelle_d_acheminement": "NAUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09742065884, + 44.5070770958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c3671108453334f07e53c4674720cecc14707af", + "fields": { + "code_commune_insee": "22262", + "nom_de_la_commune": "QUINTIN", + "code_postal": "22800", + "coordonnees_gps": [ + 48.4030218249, + -2.91221040842 + ], + "libelle_d_acheminement": "QUINTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91221040842, + 48.4030218249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16181b921b49dddb8f97dac8fadff49bd7a7a35b", + "fields": { + "code_commune_insee": "12176", + "nom_de_la_commune": "ONET LE CHATEAU", + "code_postal": "12850", + "coordonnees_gps": [ + 44.3825530939, + 2.56000835023 + ], + "libelle_d_acheminement": "ONET LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56000835023, + 44.3825530939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "399a928efee757f2ecf1c8d0999b7df8fd55387e", + "fields": { + "ligne_5": "LA ROCHE DERRIEN", + "code_commune_insee": "22264", + "libelle_d_acheminement": "LA ROCHE JAUDY", + "code_postal": "22450", + "nom_de_la_commune": "LA ROCHE JAUDY", + "coordonnees_gps": [ + 48.7456370261, + -3.25762802773 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.25762802773, + 48.7456370261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e20b1eaf23a8aa3e561589c279830d5b0ba18a33", + "fields": { + "code_commune_insee": "12190", + "nom_de_la_commune": "PREVINQUIERES", + "code_postal": "12350", + "coordonnees_gps": [ + 44.3659665402, + 2.24437860842 + ], + "libelle_d_acheminement": "PREVINQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24437860842, + 44.3659665402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a4e3699b2443030819a8d163dbc6feba01d2868", + "fields": { + "code_commune_insee": "22280", + "nom_de_la_commune": "ST CARNE", + "code_postal": "22100", + "coordonnees_gps": [ + 48.4195714776, + -2.05460996507 + ], + "libelle_d_acheminement": "ST CARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05460996507, + 48.4195714776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a0bcf97f0c9d6a3d3d387001e00bb55754f3a86", + "fields": { + "code_commune_insee": "12192", + "nom_de_la_commune": "MOUNES PROHENCOUX", + "code_postal": "12370", + "coordonnees_gps": [ + 43.7982858454, + 2.81918000593 + ], + "libelle_d_acheminement": "MOUNES PROHENCOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81918000593, + 43.7982858454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5409919af82608f2e15bcdeee5306a84a34bdd77", + "fields": { + "code_commune_insee": "22281", + "nom_de_la_commune": "ST CARREUC", + "code_postal": "22150", + "coordonnees_gps": [ + 48.4036055637, + -2.7500378807 + ], + "libelle_d_acheminement": "ST CARREUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.7500378807, + 48.4036055637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21bbc1915fb7a9187e0c285d0cd783ba796932e2", + "fields": { + "code_commune_insee": "12199", + "nom_de_la_commune": "RIGNAC", + "code_postal": "12390", + "coordonnees_gps": [ + 44.4038329146, + 2.29228871208 + ], + "libelle_d_acheminement": "RIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29228871208, + 44.4038329146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab4f79e547c2240fbee089761063cebe9de41122", + "fields": { + "code_commune_insee": "22283", + "nom_de_la_commune": "ST CLET", + "code_postal": "22260", + "coordonnees_gps": [ + 48.6699370955, + -3.13667326185 + ], + "libelle_d_acheminement": "ST CLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13667326185, + 48.6699370955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ff8e3008e77db0c634a45ee03d5ac1f80186a51", + "fields": { + "code_commune_insee": "12212", + "nom_de_la_commune": "ST BEAULIZE", + "code_postal": "12540", + "coordonnees_gps": [ + 43.9061421509, + 3.10001497795 + ], + "libelle_d_acheminement": "ST BEAULIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10001497795, + 43.9061421509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2aa77059e5ee476bbb399133c6d10b5e8dfb638a", + "fields": { + "code_commune_insee": "22287", + "nom_de_la_commune": "ST DONAN", + "code_postal": "22800", + "coordonnees_gps": [ + 48.4657753573, + -2.8865935093 + ], + "libelle_d_acheminement": "ST DONAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.8865935093, + 48.4657753573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55c3fc67295c816bfbfc73c95009ed6db4829ef9", + "fields": { + "ligne_5": "AUBRAC", + "code_commune_insee": "12214", + "libelle_d_acheminement": "ST CHELY D AUBRAC", + "code_postal": "12470", + "nom_de_la_commune": "ST CHELY D AUBRAC", + "coordonnees_gps": [ + 44.5918935634, + 2.94672559934 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94672559934, + 44.5918935634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c221e1a81723b0d498a1710ed6635e3acbe33df0", + "fields": { + "code_commune_insee": "22312", + "nom_de_la_commune": "ST MADEN", + "code_postal": "22350", + "coordonnees_gps": [ + 48.3373513586, + -2.06855041218 + ], + "libelle_d_acheminement": "ST MADEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06855041218, + 48.3373513586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5f180a05901413f5fbc327260512996cacd5e75", + "fields": { + "ligne_5": "LACALM", + "code_commune_insee": "12223", + "libelle_d_acheminement": "ARGENCES EN AUBRAC", + "code_postal": "12210", + "nom_de_la_commune": "ARGENCES EN AUBRAC", + "coordonnees_gps": [ + 44.8003905234, + 2.7434750028 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7434750028, + 44.8003905234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aa6f778d31594d90d4dad02661fe2e885ecc8c5", + "fields": { + "code_commune_insee": "22315", + "nom_de_la_commune": "ST MAUDEZ", + "code_postal": "22980", + "coordonnees_gps": [ + 48.4547574615, + -2.18331618664 + ], + "libelle_d_acheminement": "ST MAUDEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18331618664, + 48.4547574615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6cc8833a1d4c04bd636484febf8f7cedc9eb938", + "fields": { + "ligne_5": "PONS", + "code_commune_insee": "12226", + "libelle_d_acheminement": "ST HIPPOLYTE", + "code_postal": "12140", + "nom_de_la_commune": "ST HIPPOLYTE", + "coordonnees_gps": [ + 44.7257623817, + 2.58415334807 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58415334807, + 44.7257623817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3de784084f99bc62a4daef7571713ab087a2061c", + "fields": { + "code_commune_insee": "22316", + "nom_de_la_commune": "ST MAYEUX", + "code_postal": "22320", + "coordonnees_gps": [ + 48.2645956467, + -3.01553906728 + ], + "libelle_d_acheminement": "ST MAYEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.01553906728, + 48.2645956467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c954a7bd904b9dc949ffcac1030cf3a08bf10648", + "fields": { + "code_commune_insee": "12230", + "nom_de_la_commune": "ST JEAN DELNOUS", + "code_postal": "12170", + "coordonnees_gps": [ + 44.0414081, + 2.49245464315 + ], + "libelle_d_acheminement": "ST JEAN DELNOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49245464315, + 44.0414081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a92406ad395fadce621821e243635ba488c14c91", + "fields": { + "code_commune_insee": "22319", + "nom_de_la_commune": "ST MICHEL EN GREVE", + "code_postal": "22300", + "coordonnees_gps": [ + 48.6744448926, + -3.5570602946 + ], + "libelle_d_acheminement": "ST MICHEL EN GREVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.5570602946, + 48.6744448926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d9ff901eeb3aeacf0fbbc6e0ea435440af16d68", + "fields": { + "code_commune_insee": "12234", + "nom_de_la_commune": "STE JULIETTE SUR VIAUR", + "code_postal": "12120", + "coordonnees_gps": [ + 44.2186396438, + 2.50113925253 + ], + "libelle_d_acheminement": "STE JULIETTE SUR VIAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50113925253, + 44.2186396438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94d80629894d35884523a4103b0e9f8a30cf2b87", + "fields": { + "code_commune_insee": "22321", + "nom_de_la_commune": "ST NICOLAS DU PELEM", + "code_postal": "22480", + "coordonnees_gps": [ + 48.3228229089, + -3.16405050641 + ], + "libelle_d_acheminement": "ST NICOLAS DU PELEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.16405050641, + 48.3228229089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea13d2f6fe9d8abcf215ef0814180378d29ce7dd", + "fields": { + "code_commune_insee": "12235", + "nom_de_la_commune": "ST JUST SUR VIAUR", + "code_postal": "12170", + "coordonnees_gps": [ + 44.1200489541, + 2.37849533385 + ], + "libelle_d_acheminement": "ST JUST SUR VIAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37849533385, + 44.1200489541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "033d1eaf5d81895404b8d446f43fea70f22bfd0c", + "fields": { + "code_commune_insee": "22327", + "nom_de_la_commune": "ST SAMSON SUR RANCE", + "code_postal": "22100", + "coordonnees_gps": [ + 48.4914561731, + -2.01805917808 + ], + "libelle_d_acheminement": "ST SAMSON SUR RANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01805917808, + 48.4914561731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93e3368f3903b3217ddc2675ed3a81722ca30e10", + "fields": { + "code_commune_insee": "12240", + "nom_de_la_commune": "ST PARTHEM", + "code_postal": "12300", + "coordonnees_gps": [ + 44.6329765505, + 2.29151431858 + ], + "libelle_d_acheminement": "ST PARTHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29151431858, + 44.6329765505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e373c72d7b9ab9db3d42cb7439b6946da50d78bf", + "fields": { + "code_commune_insee": "22330", + "nom_de_la_commune": "ST THELO", + "code_postal": "22460", + "coordonnees_gps": [ + 48.2459300421, + -2.84098515337 + ], + "libelle_d_acheminement": "ST THELO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84098515337, + 48.2459300421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8efd565d6cbf76e70b2ebd57edd9ecd1c7e1d4a", + "fields": { + "code_commune_insee": "12253", + "nom_de_la_commune": "SALLES CURAN", + "code_postal": "12410", + "coordonnees_gps": [ + 44.159383352, + 2.78625740284 + ], + "libelle_d_acheminement": "SALLES CURAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78625740284, + 44.159383352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c69edf7e2208f6dcb5be5b5b5ebad5c75698887", + "fields": { + "code_commune_insee": "22331", + "nom_de_la_commune": "STE TREPHINE", + "code_postal": "22480", + "coordonnees_gps": [ + 48.2666933558, + -3.16936458058 + ], + "libelle_d_acheminement": "STE TREPHINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.16936458058, + 48.2666933558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e19982636f3f141d25dc9a6a4d6f64c64d6f918", + "fields": { + "code_commune_insee": "12254", + "nom_de_la_commune": "SALLES LA SOURCE", + "code_postal": "12330", + "coordonnees_gps": [ + 44.4437884405, + 2.5250957268 + ], + "libelle_d_acheminement": "SALLES LA SOURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5250957268, + 44.4437884405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "535fb1399cc11fda2871871edd305d749d8d7cb5", + "fields": { + "code_commune_insee": "22337", + "nom_de_la_commune": "SEVIGNAC", + "code_postal": "22250", + "coordonnees_gps": [ + 48.3321356963, + -2.3200523158 + ], + "libelle_d_acheminement": "SEVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.3200523158, + 48.3321356963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c73765ef711e112b9881768bf964ef47afd45b85", + "fields": { + "code_commune_insee": "12255", + "nom_de_la_commune": "SALMIECH", + "code_postal": "12120", + "coordonnees_gps": [ + 44.1937884405, + 2.58717278711 + ], + "libelle_d_acheminement": "SALMIECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58717278711, + 44.1937884405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46f39a8e7f6254cc772fa1c206c3e623ae1d4f3b", + "fields": { + "code_commune_insee": "22338", + "nom_de_la_commune": "SQUIFFIEC", + "code_postal": "22200", + "coordonnees_gps": [ + 48.6379229078, + -3.16710907614 + ], + "libelle_d_acheminement": "SQUIFFIEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.16710907614, + 48.6379229078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "744dc8d18ae23d40b78289b624c74ab1de42ac64", + "fields": { + "code_commune_insee": "12258", + "nom_de_la_commune": "LA SALVETAT PEYRALES", + "code_postal": "12440", + "coordonnees_gps": [ + 44.2210453595, + 2.19673523902 + ], + "libelle_d_acheminement": "LA SALVETAT PEYRALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19673523902, + 44.2210453595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d1d8b8796e64ed588d68a21af1c2e90af1d56cd", + "fields": { + "code_commune_insee": "22344", + "nom_de_la_commune": "TREBRIVAN", + "code_postal": "22340", + "coordonnees_gps": [ + 48.3102383072, + -3.48210939966 + ], + "libelle_d_acheminement": "TREBRIVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.48210939966, + 48.3102383072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62650793fdf223befa69593af4e1ee33438f98b6", + "fields": { + "code_commune_insee": "12264", + "nom_de_la_commune": "SEBAZAC CONCOURES", + "code_postal": "12740", + "coordonnees_gps": [ + 44.4232783345, + 2.6111835082 + ], + "libelle_d_acheminement": "SEBAZAC CONCOURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6111835082, + 44.4232783345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23509bcc10c2c2dee48760aff5dfaa83c001b189", + "fields": { + "code_commune_insee": "22353", + "nom_de_la_commune": "TREGASTEL", + "code_postal": "22730", + "coordonnees_gps": [ + 48.817321796, + -3.50640333126 + ], + "libelle_d_acheminement": "TREGASTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.50640333126, + 48.817321796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c13ff9b47d5994708647e1ff2d7ad758efa8e7c", + "fields": { + "code_commune_insee": "12265", + "nom_de_la_commune": "SEBRAZAC", + "code_postal": "12190", + "coordonnees_gps": [ + 44.537422675, + 2.65492320608 + ], + "libelle_d_acheminement": "SEBRAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65492320608, + 44.537422675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a737c07c7de4fb88330c377c4c4785931858bbff", + "fields": { + "code_commune_insee": "22364", + "nom_de_la_commune": "TRELIVAN", + "code_postal": "22100", + "coordonnees_gps": [ + 48.4303990334, + -2.10633550903 + ], + "libelle_d_acheminement": "TRELIVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.10633550903, + 48.4303990334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ab2d6d5862defb2e5c8233b3ea611a281b2e177", + "fields": { + "code_commune_insee": "12267", + "nom_de_la_commune": "LA SELVE", + "code_postal": "12170", + "coordonnees_gps": [ + 44.1061917162, + 2.53638704269 + ], + "libelle_d_acheminement": "LA SELVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53638704269, + 44.1061917162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "876dc2240fc666d43bff3240274b5f65f15968d9", + "fields": { + "code_commune_insee": "22365", + "nom_de_la_commune": "TREMARGAT", + "code_postal": "22110", + "coordonnees_gps": [ + 48.3299865723, + -3.26674956087 + ], + "libelle_d_acheminement": "TREMARGAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.26674956087, + 48.3299865723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05f4bf24727883e2f139da14e890a578874be2a4", + "fields": { + "ligne_5": "BUZEINS", + "code_commune_insee": "12270", + "libelle_d_acheminement": "SEVERAC D AVEYRON", + "code_postal": "12150", + "nom_de_la_commune": "SEVERAC D AVEYRON", + "coordonnees_gps": [ + 44.3000638764, + 3.08915100601 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08915100601, + 44.3000638764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef9d32b58ae8e6f7e794c98883627937d08f2cc0", + "fields": { + "code_commune_insee": "22366", + "nom_de_la_commune": "TREMEL", + "code_postal": "22310", + "coordonnees_gps": [ + 48.6047752602, + -3.61826523039 + ], + "libelle_d_acheminement": "TREMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.61826523039, + 48.6047752602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e727807ec53ce223130bae8eb4af2a3e9d19ddf4", + "fields": { + "ligne_5": "SEVERAC LE CHATEAU", + "code_commune_insee": "12270", + "libelle_d_acheminement": "SEVERAC D AVEYRON", + "code_postal": "12150", + "nom_de_la_commune": "SEVERAC D AVEYRON", + "coordonnees_gps": [ + 44.3000638764, + 3.08915100601 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08915100601, + 44.3000638764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec1e342b0b0e1dd77757782aa3e3d479f69e3dc6", + "fields": { + "code_commune_insee": "22380", + "nom_de_la_commune": "TREVRON", + "code_postal": "22100", + "coordonnees_gps": [ + 48.389428188, + -2.06825084533 + ], + "libelle_d_acheminement": "TREVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06825084533, + 48.389428188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7db3e8f9ba816d7dd06ca6832acbf1dc9ecf9ce", + "fields": { + "code_commune_insee": "12272", + "nom_de_la_commune": "SONNAC", + "code_postal": "12700", + "coordonnees_gps": [ + 44.5381449172, + 2.11452059209 + ], + "libelle_d_acheminement": "SONNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11452059209, + 44.5381449172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ecf5e99c6d9dd160f2573f6e37782bcedaaa997", + "fields": { + "code_commune_insee": "22381", + "nom_de_la_commune": "TREZENY", + "code_postal": "22450", + "coordonnees_gps": [ + 48.7546408684, + -3.36053531612 + ], + "libelle_d_acheminement": "TREZENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.36053531612, + 48.7546408684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a32208887a59968a7d5a8f491e1b379c7f79bfc", + "fields": { + "code_commune_insee": "12273", + "nom_de_la_commune": "SOULAGES BONNEVAL", + "code_postal": "12210", + "coordonnees_gps": [ + 44.6772152529, + 2.77442908262 + ], + "libelle_d_acheminement": "SOULAGES BONNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77442908262, + 44.6772152529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81e24177d04b70b14143bd844c335fe8641bdbcd", + "fields": { + "code_commune_insee": "22388", + "nom_de_la_commune": "VILDE GUINGALAN", + "code_postal": "22980", + "coordonnees_gps": [ + 48.4365421209, + -2.1517921556 + ], + "libelle_d_acheminement": "VILDE GUINGALAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1517921556, + 48.4365421209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d834d5320b46bea93f5bcf5365ecfb26bc343eb", + "fields": { + "code_commune_insee": "12282", + "nom_de_la_commune": "TOURNEMIRE", + "code_postal": "12250", + "coordonnees_gps": [ + 43.9686808628, + 3.02681795473 + ], + "libelle_d_acheminement": "TOURNEMIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02681795473, + 43.9686808628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d42b901e32121f6656d8ed16d3f823c7a4acfc02", + "fields": { + "code_commune_insee": "22391", + "nom_de_la_commune": "YVIGNAC LA TOUR", + "code_postal": "22350", + "coordonnees_gps": [ + 48.3488527307, + -2.17094067762 + ], + "libelle_d_acheminement": "YVIGNAC LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17094067762, + 48.3488527307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bc5b9ca0797fec6c33d4ac0972bedae3e4d0a2c", + "fields": { + "code_commune_insee": "12287", + "nom_de_la_commune": "VAILHOURLES", + "code_postal": "12200", + "coordonnees_gps": [ + 44.3082129467, + 1.90937722563 + ], + "libelle_d_acheminement": "VAILHOURLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90937722563, + 44.3082129467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e79d7d9ac7d8ce647dafea714c07677726cfae3", + "fields": { + "code_commune_insee": "23003", + "nom_de_la_commune": "ALLEYRAT", + "code_postal": "23200", + "coordonnees_gps": [ + 45.9878416933, + 2.15421492891 + ], + "libelle_d_acheminement": "ALLEYRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15421492891, + 45.9878416933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa4ace2bbbfd1af4cf6b01a7fcb4f5b69ff4bb4a", + "fields": { + "ligne_5": "NUCES", + "code_commune_insee": "12288", + "libelle_d_acheminement": "VALADY", + "code_postal": "12330", + "nom_de_la_commune": "VALADY", + "coordonnees_gps": [ + 44.4471578876, + 2.44255701566 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44255701566, + 44.4471578876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39c05b5d728a04d1a3469d345e3ad77e1e97730e", + "fields": { + "code_commune_insee": "23004", + "nom_de_la_commune": "ANZEME", + "code_postal": "23000", + "coordonnees_gps": [ + 46.2540912663, + 1.84997964766 + ], + "libelle_d_acheminement": "ANZEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84997964766, + 46.2540912663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa37f470a88d704ae35917d72ca709845229de89", + "fields": { + "code_commune_insee": "12292", + "nom_de_la_commune": "VERSOLS ET LAPEYRE", + "code_postal": "12400", + "coordonnees_gps": [ + 43.8998471678, + 2.93585871543 + ], + "libelle_d_acheminement": "VERSOLS ET LAPEYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93585871543, + 43.8998471678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b63c0098e4c6f221f414044c73363946bde40b60", + "fields": { + "code_commune_insee": "23007", + "nom_de_la_commune": "ARS", + "code_postal": "23480", + "coordonnees_gps": [ + 45.9991439171, + 2.08403361225 + ], + "libelle_d_acheminement": "ARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08403361225, + 45.9991439171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5600fdff0d011b13eade88da7bc3980a82fe4f05", + "fields": { + "code_commune_insee": "12297", + "nom_de_la_commune": "LE VIBAL", + "code_postal": "12290", + "coordonnees_gps": [ + 44.3214095463, + 2.74143536761 + ], + "libelle_d_acheminement": "LE VIBAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74143536761, + 44.3214095463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcbc336b7aaca1f72a88d46a53cdb45efcbb1ba0", + "fields": { + "code_commune_insee": "23008", + "nom_de_la_commune": "AUBUSSON", + "code_postal": "23200", + "coordonnees_gps": [ + 45.9509017497, + 2.16588054786 + ], + "libelle_d_acheminement": "AUBUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16588054786, + 45.9509017497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf6bc0df98e58502c74cb78b4d4a083aecace196", + "fields": { + "code_commune_insee": "12299", + "nom_de_la_commune": "VILLEFRANCHE DE PANAT", + "code_postal": "12430", + "coordonnees_gps": [ + 44.0971941681, + 2.71527258024 + ], + "libelle_d_acheminement": "VILLEFRANCHE DE PANAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71527258024, + 44.0971941681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5f8bc73f4365c6905b25edbe25f0c402eb11c03", + "fields": { + "code_commune_insee": "23014", + "nom_de_la_commune": "AZAT CHATENET", + "code_postal": "23210", + "coordonnees_gps": [ + 46.0866252044, + 1.76923265041 + ], + "libelle_d_acheminement": "AZAT CHATENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76923265041, + 46.0866252044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b103bb14853b626a3154035a54762f4aa8f5df67", + "fields": { + "ligne_5": "LUYNES", + "code_commune_insee": "13001", + "libelle_d_acheminement": "AIX EN PROVENCE", + "code_postal": "13080", + "nom_de_la_commune": "AIX EN PROVENCE", + "coordonnees_gps": [ + 43.5360708378, + 5.39857444582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39857444582, + 43.5360708378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce259f9e8fca8609db62773a6fe6568409c7c2da", + "fields": { + "code_commune_insee": "23015", + "nom_de_la_commune": "AZERABLES", + "code_postal": "23160", + "coordonnees_gps": [ + 46.3524585788, + 1.47492272648 + ], + "libelle_d_acheminement": "AZERABLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47492272648, + 46.3524585788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdc4ee8933cb5445d1a4c6c13113ab920038d02d", + "fields": { + "ligne_5": "PUYRICARD", + "code_commune_insee": "13001", + "libelle_d_acheminement": "AIX EN PROVENCE", + "code_postal": "13540", + "nom_de_la_commune": "AIX EN PROVENCE", + "coordonnees_gps": [ + 43.5360708378, + 5.39857444582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39857444582, + 43.5360708378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5d717e297d408d4a9c76cc0e1a6b6243f77c287", + "fields": { + "code_commune_insee": "23022", + "nom_de_la_commune": "BETETE", + "code_postal": "23270", + "coordonnees_gps": [ + 46.3616170895, + 2.06970642299 + ], + "libelle_d_acheminement": "BETETE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06970642299, + 46.3616170895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf51b04f956e2e304ae8ba38738983d032d33b67", + "fields": { + "ligne_5": "LE LOGIS NEUF", + "code_commune_insee": "13002", + "libelle_d_acheminement": "ALLAUCH", + "code_postal": "13190", + "nom_de_la_commune": "ALLAUCH", + "coordonnees_gps": [ + 43.3533145712, + 5.51134767187 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51134767187, + 43.3533145712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3573175ddf7a440b65d9fde81e44248d2715622", + "fields": { + "code_commune_insee": "23023", + "nom_de_la_commune": "BLAUDEIX", + "code_postal": "23140", + "coordonnees_gps": [ + 46.2296903027, + 2.08515076921 + ], + "libelle_d_acheminement": "BLAUDEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08515076921, + 46.2296903027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d10b42932c9e868f1882c31a3437b025195c3bab", + "fields": { + "ligne_5": "LE BASTIDON", + "code_commune_insee": "13003", + "libelle_d_acheminement": "ALLEINS", + "code_postal": "13980", + "nom_de_la_commune": "ALLEINS", + "coordonnees_gps": [ + 43.7074197745, + 5.15105029207 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15105029207, + 43.7074197745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "860b4fcdcc6bdc5b0affdc7a4af47b6ad4b498f7", + "fields": { + "code_commune_insee": "23040", + "nom_de_la_commune": "LA CELLE SOUS GOUZON", + "code_postal": "23230", + "coordonnees_gps": [ + 46.2188855114, + 2.20927433054 + ], + "libelle_d_acheminement": "LA CELLE SOUS GOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20927433054, + 46.2188855114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "347325d6f660908984d23a000020b7c34e9a8632", + "fields": { + "code_commune_insee": "13009", + "nom_de_la_commune": "LA BARBEN", + "code_postal": "13330", + "coordonnees_gps": [ + 43.6183855123, + 5.21385052651 + ], + "libelle_d_acheminement": "LA BARBEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21385052651, + 43.6183855123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ca1a64b59ab8d1cd3fcf77707a76c7a93ce782b", + "fields": { + "code_commune_insee": "23042", + "nom_de_la_commune": "CEYROUX", + "code_postal": "23210", + "coordonnees_gps": [ + 46.0590279799, + 1.66489308266 + ], + "libelle_d_acheminement": "CEYROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66489308266, + 46.0590279799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3713b12778512da0f04a38264d2aa8b0a7ddf66f", + "fields": { + "code_commune_insee": "13013", + "nom_de_la_commune": "BELCODENE", + "code_postal": "13720", + "coordonnees_gps": [ + 43.4220302139, + 5.58376148513 + ], + "libelle_d_acheminement": "BELCODENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58376148513, + 43.4220302139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a82a2277da3872a2070e274fb86aff150f8339a8", + "fields": { + "code_commune_insee": "23048", + "nom_de_la_commune": "CHAMPAGNAT", + "code_postal": "23190", + "coordonnees_gps": [ + 46.0202394723, + 2.28670592425 + ], + "libelle_d_acheminement": "CHAMPAGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28670592425, + 46.0202394723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1972a4bf2ff38d376e06a021977ab4fb75d7f78", + "fields": { + "code_commune_insee": "13016", + "nom_de_la_commune": "LA BOUILLADISSE", + "code_postal": "13720", + "coordonnees_gps": [ + 43.397192269, + 5.61980749093 + ], + "libelle_d_acheminement": "LA BOUILLADISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61980749093, + 43.397192269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89615c7de846e777a445a0da0260a16d2b3692f9", + "fields": { + "code_commune_insee": "23049", + "nom_de_la_commune": "CHAMPSANGLARD", + "code_postal": "23220", + "coordonnees_gps": [ + 46.2806561579, + 1.88931352646 + ], + "libelle_d_acheminement": "CHAMPSANGLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88931352646, + 46.2806561579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef0f6f43d577433ae1ec9774e3b83fa6328fe4c3", + "fields": { + "ligne_5": "LE PIGEONNIER", + "code_commune_insee": "13016", + "libelle_d_acheminement": "LA BOUILLADISSE", + "code_postal": "13720", + "nom_de_la_commune": "LA BOUILLADISSE", + "coordonnees_gps": [ + 43.397192269, + 5.61980749093 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61980749093, + 43.397192269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1561d4175d331aee2367fd06c13e5ce2a282dd9", + "fields": { + "code_commune_insee": "23052", + "nom_de_la_commune": "LA CHAPELLE TAILLEFERT", + "code_postal": "23000", + "coordonnees_gps": [ + 46.1137729071, + 1.8336197788 + ], + "libelle_d_acheminement": "LA CHAPELLE TAILLEFERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8336197788, + 46.1137729071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc0114f151b05fa25266f1867e149f04d723abc6", + "fields": { + "code_commune_insee": "13031", + "nom_de_la_commune": "LA DESTROUSSE", + "code_postal": "13112", + "coordonnees_gps": [ + 43.3764232809, + 5.59885932444 + ], + "libelle_d_acheminement": "LA DESTROUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59885932444, + 43.3764232809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d931ecb27737492aa93c761902a7fe10df6556ea", + "fields": { + "code_commune_insee": "23054", + "nom_de_la_commune": "CHARRON", + "code_postal": "23700", + "coordonnees_gps": [ + 46.0375605731, + 2.56407684022 + ], + "libelle_d_acheminement": "CHARRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56407684022, + 46.0375605731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b745f8e33f280fc15db92910f68775f3165ce2e9", + "fields": { + "ligne_5": "LA REDONNE", + "code_commune_insee": "13033", + "libelle_d_acheminement": "ENSUES LA REDONNE", + "code_postal": "13820", + "nom_de_la_commune": "ENSUES LA REDONNE", + "coordonnees_gps": [ + 43.3536539601, + 5.19960307575 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19960307575, + 43.3536539601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ced4c2afdd191727917804ebefdacc86232b0794", + "fields": { + "code_commune_insee": "23064", + "nom_de_la_commune": "CLUGNAT", + "code_postal": "23270", + "coordonnees_gps": [ + 46.2993581624, + 2.11966414545 + ], + "libelle_d_acheminement": "CLUGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11966414545, + 46.2993581624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "122524ac681f25753827c44cbd07cc6b031be361", + "fields": { + "code_commune_insee": "13038", + "nom_de_la_commune": "FONTVIEILLE", + "code_postal": "13990", + "coordonnees_gps": [ + 43.7232610704, + 4.72310168882 + ], + "libelle_d_acheminement": "FONTVIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72310168882, + 43.7232610704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a65893ccbed743198a3e9ee089e1f76aa4fcd99f", + "fields": { + "code_commune_insee": "23070", + "nom_de_la_commune": "CROZANT", + "code_postal": "23160", + "coordonnees_gps": [ + 46.3822860468, + 1.61270659121 + ], + "libelle_d_acheminement": "CROZANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61270659121, + 46.3822860468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac1bd0b2bb70fe5975e0a74f39d73b7a4fcb1225", + "fields": { + "ligne_5": "LA BEGUDE", + "code_commune_insee": "13040", + "libelle_d_acheminement": "FUVEAU", + "code_postal": "13710", + "nom_de_la_commune": "FUVEAU", + "coordonnees_gps": [ + 43.4594948454, + 5.55305747206 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55305747206, + 43.4594948454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "782a89681ac513ab23ebdb185a5c9d6eef03753e", + "fields": { + "code_commune_insee": "23077", + "nom_de_la_commune": "FAUX LA MONTAGNE", + "code_postal": "23340", + "coordonnees_gps": [ + 45.7429564648, + 1.93500942222 + ], + "libelle_d_acheminement": "FAUX LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93500942222, + 45.7429564648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fe9b6351dbe0db513fc188d7e87bd93f23017d7", + "fields": { + "ligne_5": "BIVER", + "code_commune_insee": "13041", + "libelle_d_acheminement": "GARDANNE", + "code_postal": "13120", + "nom_de_la_commune": "GARDANNE", + "coordonnees_gps": [ + 43.4526063249, + 5.47963860272 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47963860272, + 43.4526063249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79c6414d9ab5c6846a8ac1c86030c4135cf2516a", + "fields": { + "code_commune_insee": "23078", + "nom_de_la_commune": "FAUX MAZURAS", + "code_postal": "23400", + "coordonnees_gps": [ + 45.9224179922, + 1.77972681023 + ], + "libelle_d_acheminement": "FAUX MAZURAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77972681023, + 45.9224179922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "286d739e80d4cd63aa4768af40a2fd39e47e175d", + "fields": { + "code_commune_insee": "13044", + "nom_de_la_commune": "GRANS", + "code_postal": "13450", + "coordonnees_gps": [ + 43.6142225937, + 5.04474558898 + ], + "libelle_d_acheminement": "GRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04474558898, + 43.6142225937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeb796386b2b264452a637ea48ea8dfcdc7e7ec0", + "fields": { + "code_commune_insee": "23081", + "nom_de_la_commune": "FLAYAT", + "code_postal": "23260", + "coordonnees_gps": [ + 45.7785868628, + 2.38619915341 + ], + "libelle_d_acheminement": "FLAYAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38619915341, + 45.7785868628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58142d0bb7ebf885acffbddf1045b54bf05301ac", + "fields": { + "code_commune_insee": "13051", + "nom_de_la_commune": "LANCON PROVENCE", + "code_postal": "13680", + "coordonnees_gps": [ + 43.5760406168, + 5.15953601477 + ], + "libelle_d_acheminement": "LANCON PROVENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15953601477, + 43.5760406168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1113a483111355afd57b49135a72d20d3fd82f8", + "fields": { + "code_commune_insee": "23084", + "nom_de_la_commune": "LA FORET DU TEMPLE", + "code_postal": "23360", + "coordonnees_gps": [ + 46.4271220659, + 1.90602362472 + ], + "libelle_d_acheminement": "LA FORET DU TEMPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90602362472, + 46.4271220659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d498de2ef2ff59196210dc1872c85032be98c2b8", + "fields": { + "code_commune_insee": "13052", + "nom_de_la_commune": "MAILLANE", + "code_postal": "13910", + "coordonnees_gps": [ + 43.8230609796, + 4.78456570653 + ], + "libelle_d_acheminement": "MAILLANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78456570653, + 43.8230609796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c715a3e2e75bde0ee3e1664efddf048c42defd4", + "fields": { + "code_commune_insee": "23088", + "nom_de_la_commune": "GARTEMPE", + "code_postal": "23320", + "coordonnees_gps": [ + 46.1523609453, + 1.72597584698 + ], + "libelle_d_acheminement": "GARTEMPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72597584698, + 46.1523609453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "983df699c53cec80b63ca210d7dc05d27d050831", + "fields": { + "ligne_5": "NOTRE DAME", + "code_commune_insee": "13053", + "libelle_d_acheminement": "MALLEMORT", + "code_postal": "13370", + "nom_de_la_commune": "MALLEMORT", + "coordonnees_gps": [ + 43.7285832667, + 5.18297726548 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18297726548, + 43.7285832667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9ab3c06041214f5f5f76ab858b8e4dda42e0a8d", + "fields": { + "code_commune_insee": "23091", + "nom_de_la_commune": "GIOUX", + "code_postal": "23500", + "coordonnees_gps": [ + 45.8012431656, + 2.11443257853 + ], + "libelle_d_acheminement": "GIOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11443257853, + 45.8012431656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4af112fb7360a3668019464c85b91356c1c65602", + "fields": { + "code_commune_insee": "13058", + "nom_de_la_commune": "MAUSSANE LES ALPILLES", + "code_postal": "13520", + "coordonnees_gps": [ + 43.7145004234, + 4.83333459578 + ], + "libelle_d_acheminement": "MAUSSANE LES ALPILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83333459578, + 43.7145004234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85181eef685a35e056f5fb236d937a5205679d95", + "fields": { + "code_commune_insee": "23092", + "nom_de_la_commune": "GLENIC", + "code_postal": "23380", + "coordonnees_gps": [ + 46.2297069592, + 1.94120796612 + ], + "libelle_d_acheminement": "GLENIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94120796612, + 46.2297069592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6c2ad82676e50896eabb69dcc0747b0830a318c", + "fields": { + "code_commune_insee": "13066", + "nom_de_la_commune": "NOVES", + "code_postal": "13550", + "coordonnees_gps": [ + 43.8584523466, + 4.89952194493 + ], + "libelle_d_acheminement": "NOVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89952194493, + 43.8584523466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41a84eaa0b4b5b025a5a0575f7600525a2b8a71f", + "fields": { + "code_commune_insee": "23098", + "nom_de_la_commune": "JALESCHES", + "code_postal": "23270", + "coordonnees_gps": [ + 46.2952982934, + 2.08236208756 + ], + "libelle_d_acheminement": "JALESCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08236208756, + 46.2952982934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b86e0e628b25cb99f05e5359f2a462d7d47b5ca", + "fields": { + "ligne_5": "PALUD DE NOVES", + "code_commune_insee": "13066", + "libelle_d_acheminement": "NOVES", + "code_postal": "13550", + "nom_de_la_commune": "NOVES", + "coordonnees_gps": [ + 43.8584523466, + 4.89952194493 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89952194493, + 43.8584523466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae3cf43d7f729c2c4801ade8dabb8bb6ffe2fc41", + "fields": { + "code_commune_insee": "23103", + "nom_de_la_commune": "LAFAT", + "code_postal": "23800", + "coordonnees_gps": [ + 46.3383631539, + 1.6058357703 + ], + "libelle_d_acheminement": "LAFAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6058357703, + 46.3383631539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c702a70a3e1baf959ba15b7a2b4add86e9b9285d", + "fields": { + "code_commune_insee": "13071", + "nom_de_la_commune": "LES PENNES MIRABEAU", + "code_postal": "13170", + "coordonnees_gps": [ + 43.4026791235, + 5.31547094057 + ], + "libelle_d_acheminement": "LES PENNES MIRABEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31547094057, + 43.4026791235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6a412fb1034393e14049ed243f96346af750add", + "fields": { + "code_commune_insee": "23106", + "nom_de_la_commune": "LEPAUD", + "code_postal": "23170", + "coordonnees_gps": [ + 46.2313447495, + 2.38424161518 + ], + "libelle_d_acheminement": "LEPAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38424161518, + 46.2313447495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7cd9bdc72641523c0fa9e7f5f34601d43330024", + "fields": { + "code_commune_insee": "13073", + "nom_de_la_commune": "PEYPIN", + "code_postal": "13124", + "coordonnees_gps": [ + 43.3847877457, + 5.57131918284 + ], + "libelle_d_acheminement": "PEYPIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57131918284, + 43.3847877457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69ba61039d4fb69eaf1ce3dc2e2fd0037387e854", + "fields": { + "code_commune_insee": "23122", + "nom_de_la_commune": "MANSAT LA COURRIERE", + "code_postal": "23400", + "coordonnees_gps": [ + 45.9652490444, + 1.79570521606 + ], + "libelle_d_acheminement": "MANSAT LA COURRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79570521606, + 45.9652490444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0be5bce7db5042616b3c46e019b3db52a4267a5e", + "fields": { + "code_commune_insee": "13078", + "nom_de_la_commune": "PORT ST LOUIS DU RHONE", + "code_postal": "13230", + "coordonnees_gps": [ + 43.4148193741, + 4.80679663589 + ], + "libelle_d_acheminement": "PORT ST LOUIS DU RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80679663589, + 43.4148193741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6de402a555e514fa1425c660b1d0900d27c5e7b6", + "fields": { + "code_commune_insee": "23127", + "nom_de_la_commune": "MAUTES", + "code_postal": "23190", + "coordonnees_gps": [ + 45.936197398, + 2.38523342152 + ], + "libelle_d_acheminement": "MAUTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38523342152, + 45.936197398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f220ede1e0d015a3add96a016ab72b4027ad5f36", + "fields": { + "code_commune_insee": "13085", + "nom_de_la_commune": "ROQUEFORT LA BEDOULE", + "code_postal": "13830", + "coordonnees_gps": [ + 43.2510907217, + 5.62904634328 + ], + "libelle_d_acheminement": "ROQUEFORT LA BEDOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62904634328, + 43.2510907217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c21bef420866baa0bf9fa48bda872ab10eb03752", + "fields": { + "code_commune_insee": "23128", + "nom_de_la_commune": "MAZEIRAT", + "code_postal": "23150", + "coordonnees_gps": [ + 46.1381078382, + 1.98735515173 + ], + "libelle_d_acheminement": "MAZEIRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98735515173, + 46.1381078382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ff8090239bb575924022c417a5917fed0612bb", + "fields": { + "ligne_5": "LE DOUARD", + "code_commune_insee": "13088", + "libelle_d_acheminement": "LE ROVE", + "code_postal": "13740", + "nom_de_la_commune": "LE ROVE", + "coordonnees_gps": [ + 43.3653374562, + 5.25292240431 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25292240431, + 43.3653374562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7176446696709cca3f4747a6ac691614b05c7ab", + "fields": { + "code_commune_insee": "23137", + "nom_de_la_commune": "MOURIOUX VIEILLEVILLE", + "code_postal": "23210", + "coordonnees_gps": [ + 46.079416865, + 1.63796262107 + ], + "libelle_d_acheminement": "MOURIOUX VIEILLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63796262107, + 46.079416865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52582c9d13b62e1cd3aeb7adfc87cd4d523ee7a4", + "fields": { + "code_commune_insee": "13091", + "nom_de_la_commune": "ST CANNAT", + "code_postal": "13760", + "coordonnees_gps": [ + 43.6136286667, + 5.30698257258 + ], + "libelle_d_acheminement": "ST CANNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30698257258, + 43.6136286667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcf797db95694400f9cb25fd790038794d267ffe", + "fields": { + "code_commune_insee": "23145", + "nom_de_la_commune": "NOUHANT", + "code_postal": "23170", + "coordonnees_gps": [ + 46.287074332, + 2.39209394225 + ], + "libelle_d_acheminement": "NOUHANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39209394225, + 46.287074332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78e045e48ebb38f381b684c830d9312f5273d64b", + "fields": { + "code_commune_insee": "13093", + "nom_de_la_commune": "ST ESTEVE JANSON", + "code_postal": "13610", + "coordonnees_gps": [ + 43.6923695558, + 5.38958912604 + ], + "libelle_d_acheminement": "ST ESTEVE JANSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38958912604, + 43.6923695558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6979b8fd1df33efe0b1d7267703018366955e58", + "fields": { + "code_commune_insee": "23156", + "nom_de_la_commune": "PONTCHARRAUD", + "code_postal": "23260", + "coordonnees_gps": [ + 45.861496557, + 2.27462161303 + ], + "libelle_d_acheminement": "PONTCHARRAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27462161303, + 45.861496557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef45cac0cbd9b7ec580f4358b5bdce3f95216d3f", + "fields": { + "code_commune_insee": "13098", + "nom_de_la_commune": "ST MITRE LES REMPARTS", + "code_postal": "13920", + "coordonnees_gps": [ + 43.4554029916, + 5.01494725455 + ], + "libelle_d_acheminement": "ST MITRE LES REMPARTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01494725455, + 43.4554029916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a108f868882dd14d354b2e868917a88a77122f16", + "fields": { + "code_commune_insee": "23165", + "nom_de_la_commune": "ROYERE DE VASSIVIERE", + "code_postal": "23460", + "coordonnees_gps": [ + 45.8375355848, + 1.90167387635 + ], + "libelle_d_acheminement": "ROYERE DE VASSIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90167387635, + 45.8375355848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1409a886e9410c7eafa5a497bf7c4594711e62dd", + "fields": { + "code_commune_insee": "13102", + "nom_de_la_commune": "ST VICTORET", + "code_postal": "13730", + "coordonnees_gps": [ + 43.4142378837, + 5.25398700813 + ], + "libelle_d_acheminement": "ST VICTORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25398700813, + 43.4142378837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0617f4a6a26bb4d5700256a5baad4e19665a7dd", + "fields": { + "code_commune_insee": "23166", + "nom_de_la_commune": "SAGNAT", + "code_postal": "23800", + "coordonnees_gps": [ + 46.313083165, + 1.62441629818 + ], + "libelle_d_acheminement": "SAGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62441629818, + 46.313083165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "956860f6cb18874ca5e448cbbb5b97e30d08915f", + "fields": { + "code_commune_insee": "13103", + "nom_de_la_commune": "SALON DE PROVENCE", + "code_postal": "13300", + "coordonnees_gps": [ + 43.6462885238, + 5.06814649576 + ], + "libelle_d_acheminement": "SALON DE PROVENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06814649576, + 43.6462885238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "711043392888b170d6aeefd5ac90fb8115155d79", + "fields": { + "code_commune_insee": "23173", + "nom_de_la_commune": "SOUBREBOST", + "code_postal": "23250", + "coordonnees_gps": [ + 45.9625506165, + 1.83880495702 + ], + "libelle_d_acheminement": "SOUBREBOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83880495702, + 45.9625506165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cddff1d011e2f17d17111ad2a558f7f4b500656", + "fields": { + "code_commune_insee": "13112", + "nom_de_la_commune": "VELAUX", + "code_postal": "13880", + "coordonnees_gps": [ + 43.5239854581, + 5.24996424883 + ], + "libelle_d_acheminement": "VELAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24996424883, + 43.5239854581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f394b3a0f1250955e262239c6397fcc8bc74db32", + "fields": { + "code_commune_insee": "23178", + "nom_de_la_commune": "ST AGNANT PRES CROCQ", + "code_postal": "23260", + "coordonnees_gps": [ + 45.8065352344, + 2.33755197927 + ], + "libelle_d_acheminement": "ST AGNANT PRES CROCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33755197927, + 45.8065352344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c04045d18a86ef600daca55170e2fda7c42c94f4", + "fields": { + "ligne_5": "LE PIGEONNIER", + "code_commune_insee": "13114", + "libelle_d_acheminement": "VENTABREN", + "code_postal": "13122", + "nom_de_la_commune": "VENTABREN", + "coordonnees_gps": [ + 43.5422528534, + 5.30622321985 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30622321985, + 43.5422528534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd3b947ff705c3f51e2f4b93cf85bafee08892c0", + "fields": { + "code_commune_insee": "23179", + "nom_de_la_commune": "ST ALPINIEN", + "code_postal": "23200", + "coordonnees_gps": [ + 45.962112522, + 2.24239447602 + ], + "libelle_d_acheminement": "ST ALPINIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24239447602, + 45.962112522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da2f852d249b6cc1e7875793f06b895b46734f96", + "fields": { + "code_commune_insee": "13115", + "nom_de_la_commune": "VERNEGUES", + "code_postal": "13116", + "coordonnees_gps": [ + 43.6841394366, + 5.18825526479 + ], + "libelle_d_acheminement": "VERNEGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18825526479, + 43.6841394366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ec32406f3dc5cb91fd114f3224601433735dcda", + "fields": { + "code_commune_insee": "23187", + "nom_de_la_commune": "ST DIZIER LA TOUR", + "code_postal": "23130", + "coordonnees_gps": [ + 46.1424414999, + 2.15051617488 + ], + "libelle_d_acheminement": "ST DIZIER LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15051617488, + 46.1424414999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "137c06a3f9d96344fb46ee50374747c2a895dbd2", + "fields": { + "code_commune_insee": "13201", + "nom_de_la_commune": "MARSEILLE 01", + "code_postal": "13001", + "coordonnees_gps": [ + 43.2999009436, + 5.38227869795 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38227869795, + 43.2999009436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "872bc89089af6ac6480f009fb66b955fb3393aed", + "fields": { + "ligne_5": "ST PIERRE DE FURSAC", + "code_commune_insee": "23192", + "libelle_d_acheminement": "FURSAC", + "code_postal": "23290", + "nom_de_la_commune": "FURSAC", + "coordonnees_gps": [ + 46.1269796893, + 1.53252260223 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53252260223, + 46.1269796893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "840841b1dabe5181422e0197e6c1d1bfd9244064", + "fields": { + "code_commune_insee": "13202", + "nom_de_la_commune": "MARSEILLE 02", + "code_postal": "13002", + "coordonnees_gps": [ + 43.3126964178, + 5.36364983265 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36364983265, + 43.3126964178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33feb5d94067e0a4115f27fcb0e69a02eee0774b", + "fields": { + "code_commune_insee": "23193", + "nom_de_la_commune": "STE FEYRE", + "code_postal": "23000", + "coordonnees_gps": [ + 46.1570987846, + 1.91328237303 + ], + "libelle_d_acheminement": "STE FEYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91328237303, + 46.1570987846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d877b0704f1088e8769cfdd8747964c03e1ef8b9", + "fields": { + "ligne_5": "LES GOUDES", + "code_commune_insee": "13208", + "libelle_d_acheminement": "MARSEILLE", + "code_postal": "13008", + "nom_de_la_commune": "MARSEILLE 08", + "coordonnees_gps": [ + 43.2417271832, + 5.37464436293 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37464436293, + 43.2417271832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "245fef26987056e25a797ee45267a8ce7f1a451b", + "fields": { + "code_commune_insee": "23194", + "nom_de_la_commune": "STE FEYRE LA MONTAGNE", + "code_postal": "23500", + "coordonnees_gps": [ + 45.8948418395, + 2.23233670208 + ], + "libelle_d_acheminement": "STE FEYRE LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23233670208, + 45.8948418395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9124a394333b85d2904b296ac805ba0898e5f880", + "fields": { + "ligne_5": "LES BAUMETTES", + "code_commune_insee": "13209", + "libelle_d_acheminement": "MARSEILLE", + "code_postal": "13009", + "nom_de_la_commune": "MARSEILLE 09", + "coordonnees_gps": [ + 43.2340834927, + 5.45249683067 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45249683067, + 43.2340834927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76d6d27a4f6a0c0938cc7fc89f65b997361a8890", + "fields": { + "code_commune_insee": "23196", + "nom_de_la_commune": "ST FRION", + "code_postal": "23500", + "coordonnees_gps": [ + 45.8644020911, + 2.22307984483 + ], + "libelle_d_acheminement": "ST FRION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22307984483, + 45.8644020911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd3972b0be18a3902b31c47eca0bada5a8dc8596", + "fields": { + "code_commune_insee": "13213", + "nom_de_la_commune": "MARSEILLE 13", + "code_postal": "13013", + "coordonnees_gps": [ + 43.3492780005, + 5.43372238738 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43372238738, + 43.3492780005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a11b021f9364d4d07c151549bc35e38b90abd543", + "fields": { + "code_commune_insee": "23201", + "nom_de_la_commune": "ST HILAIRE LA PLAINE", + "code_postal": "23150", + "coordonnees_gps": [ + 46.1156085065, + 1.98483910793 + ], + "libelle_d_acheminement": "ST HILAIRE LA PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98483910793, + 46.1156085065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fff9f8f5f916c921c60cdff05c4b66359273f0f", + "fields": { + "ligne_5": "CROIX ROUGE", + "code_commune_insee": "13213", + "libelle_d_acheminement": "MARSEILLE", + "code_postal": "13013", + "nom_de_la_commune": "MARSEILLE 13", + "coordonnees_gps": [ + 43.3492780005, + 5.43372238738 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43372238738, + 43.3492780005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "214ea8ec6ba7a2b6d96c9771cc7e1a0b863cb67d", + "fields": { + "code_commune_insee": "23202", + "nom_de_la_commune": "ST HILAIRE LE CHATEAU", + "code_postal": "23250", + "coordonnees_gps": [ + 45.993749867, + 1.89775218863 + ], + "libelle_d_acheminement": "ST HILAIRE LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89775218863, + 45.993749867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31e8a1f2f59ed5626942c13cdbab50e7100758f1", + "fields": { + "ligne_5": "LA BATARELLE", + "code_commune_insee": "13213", + "libelle_d_acheminement": "MARSEILLE", + "code_postal": "13013", + "nom_de_la_commune": "MARSEILLE 13", + "coordonnees_gps": [ + 43.3492780005, + 5.43372238738 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43372238738, + 43.3492780005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90fdfa85df1e859ef74d0ca4c7c18cfbf8c9d6f0", + "fields": { + "code_commune_insee": "23208", + "nom_de_la_commune": "ST LEGER LE GUERETOIS", + "code_postal": "23000", + "coordonnees_gps": [ + 46.1507777907, + 1.8151398543 + ], + "libelle_d_acheminement": "ST LEGER LE GUERETOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8151398543, + 46.1507777907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "626419379b7f622f0caa6aeae1a6fb97b23a035f", + "fields": { + "ligne_5": "ST MITRE", + "code_commune_insee": "13213", + "libelle_d_acheminement": "MARSEILLE", + "code_postal": "13013", + "nom_de_la_commune": "MARSEILLE 13", + "coordonnees_gps": [ + 43.3492780005, + 5.43372238738 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43372238738, + 43.3492780005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49eaefc0d975c9a7c3d16e62dac99cf63a9173e7", + "fields": { + "code_commune_insee": "23209", + "nom_de_la_commune": "ST LOUP", + "code_postal": "23130", + "coordonnees_gps": [ + 46.1463514525, + 2.28115998053 + ], + "libelle_d_acheminement": "ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28115998053, + 46.1463514525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad7d08b20cbf7e9c3d9740160fa96b210d66573e", + "fields": { + "code_commune_insee": "13214", + "nom_de_la_commune": "MARSEILLE 14", + "code_postal": "13014", + "coordonnees_gps": [ + 43.3455018067, + 5.39408915769 + ], + "libelle_d_acheminement": "MARSEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39408915769, + 43.3455018067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "952f3b1aa14f686e067ed0b4d7ea1d9d79e6da0b", + "fields": { + "code_commune_insee": "23213", + "nom_de_la_commune": "ST MARIEN", + "code_postal": "23600", + "coordonnees_gps": [ + 46.4127359723, + 2.21573799955 + ], + "libelle_d_acheminement": "ST MARIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21573799955, + 46.4127359723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "022dd80f971835458a7caeb1f241933aae413c46", + "fields": { + "ligne_5": "POUSSY LA CAMPAGNE", + "code_commune_insee": "14005", + "libelle_d_acheminement": "VALAMBRAY", + "code_postal": "14540", + "nom_de_la_commune": "VALAMBRAY", + "coordonnees_gps": [ + 49.0953124219, + -0.145440484479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.145440484479, + 49.0953124219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf6896c9f904dcbc5e95bb3f9616c64590b8a138", + "fields": { + "code_commune_insee": "23219", + "nom_de_la_commune": "ST MAURICE LA SOUTERRAINE", + "code_postal": "23300", + "coordonnees_gps": [ + 46.2106603665, + 1.42584956204 + ], + "libelle_d_acheminement": "ST MAURICE LA SOUTERRAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42584956204, + 46.2106603665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f7f5ec68aa20450eb957e2631a4e02f0eb8d402", + "fields": { + "code_commune_insee": "14009", + "nom_de_la_commune": "AMFREVILLE", + "code_postal": "14860", + "coordonnees_gps": [ + 49.2501431721, + -0.241578864111 + ], + "libelle_d_acheminement": "AMFREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.241578864111, + 49.2501431721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97a1ea37cb3913496491d093e2a9873b30ce3d14", + "fields": { + "ligne_5": "LE DOGNON", + "code_commune_insee": "23219", + "libelle_d_acheminement": "ST MAURICE LA SOUTERRAINE", + "code_postal": "23300", + "nom_de_la_commune": "ST MAURICE LA SOUTERRAINE", + "coordonnees_gps": [ + 46.2106603665, + 1.42584956204 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42584956204, + 46.2106603665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c0169d8a5aadcef6c5949748006db9330bb5369", + "fields": { + "ligne_5": "FEUGUEROLLES SUR SEULLES", + "code_commune_insee": "14011", + "libelle_d_acheminement": "AURSEULLES", + "code_postal": "14240", + "nom_de_la_commune": "AURSEULLES", + "coordonnees_gps": [ + 49.1129887811, + -0.690829418472 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.690829418472, + 49.1129887811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8355443c7ec3b74246f2a91dffc9a695f099d057", + "fields": { + "ligne_5": "FOURNEAUX", + "code_commune_insee": "23220", + "libelle_d_acheminement": "ST MEDARD LA ROCHETTE", + "code_postal": "23200", + "nom_de_la_commune": "ST MEDARD LA ROCHETTE", + "coordonnees_gps": [ + 46.0220936926, + 2.14641995346 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14641995346, + 46.0220936926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "938f3f2241c6fbef4030835f5660242aa5ae5b9c", + "fields": { + "ligne_5": "QUESNAY GUESNON", + "code_commune_insee": "14011", + "libelle_d_acheminement": "AURSEULLES", + "code_postal": "14240", + "nom_de_la_commune": "AURSEULLES", + "coordonnees_gps": [ + 49.1129887811, + -0.690829418472 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.690829418472, + 49.1129887811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea1ad4c975955477799ffe233727606ff2782b21", + "fields": { + "ligne_5": "LA ROCHETTE", + "code_commune_insee": "23220", + "libelle_d_acheminement": "ST MEDARD LA ROCHETTE", + "code_postal": "23200", + "nom_de_la_commune": "ST MEDARD LA ROCHETTE", + "coordonnees_gps": [ + 46.0220936926, + 2.14641995346 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14641995346, + 46.0220936926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf99d7c9182f1508db5e0dffbf3e019da42fb6f8", + "fields": { + "ligne_5": "ANGUERNY", + "code_commune_insee": "14014", + "libelle_d_acheminement": "COLOMBY ANGUERNY", + "code_postal": "14610", + "nom_de_la_commune": "COLOMBY ANGUERNY", + "coordonnees_gps": [ + 49.2653517186, + -0.396935454008 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.396935454008, + 49.2653517186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1064c9e2e79b153af25bf9ed8c368d52157e92d9", + "fields": { + "code_commune_insee": "23223", + "nom_de_la_commune": "ST MOREIL", + "code_postal": "23400", + "coordonnees_gps": [ + 45.8603059195, + 1.69391361996 + ], + "libelle_d_acheminement": "ST MOREIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69391361996, + 45.8603059195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9ede1de5660de380eadbc3bb3db6cd9353aa17e", + "fields": { + "code_commune_insee": "14015", + "nom_de_la_commune": "ANISY", + "code_postal": "14610", + "coordonnees_gps": [ + 49.25086166, + -0.398796097225 + ], + "libelle_d_acheminement": "ANISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.398796097225, + 49.25086166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c418ea89a3b7b9d8485f288a84c8de44b0c75db7", + "fields": { + "code_commune_insee": "23227", + "nom_de_la_commune": "ST PARDOUX MORTEROLLES", + "code_postal": "23400", + "coordonnees_gps": [ + 45.9054465384, + 1.82901180429 + ], + "libelle_d_acheminement": "ST PARDOUX MORTEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82901180429, + 45.9054465384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a780687152137f1c75cf7921c2b1c2f9d24d04fd", + "fields": { + "code_commune_insee": "14021", + "nom_de_la_commune": "ARROMANCHES LES BAINS", + "code_postal": "14117", + "coordonnees_gps": [ + 49.3357973304, + -0.620617244161 + ], + "libelle_d_acheminement": "ARROMANCHES LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.620617244161, + 49.3357973304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e94977507ab87fb71aba0d879a253f8f8bf48a5", + "fields": { + "code_commune_insee": "23228", + "nom_de_la_commune": "ST PARDOUX LE NEUF", + "code_postal": "23200", + "coordonnees_gps": [ + 45.9364998667, + 2.22787618622 + ], + "libelle_d_acheminement": "ST PARDOUX LE NEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22787618622, + 45.9364998667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55a8d4f079b5054770262397ee43f5215ee4e7b7", + "fields": { + "code_commune_insee": "14023", + "nom_de_la_commune": "ASNIERES EN BESSIN", + "code_postal": "14710", + "coordonnees_gps": [ + 49.3600707823, + -0.938258707013 + ], + "libelle_d_acheminement": "ASNIERES EN BESSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.938258707013, + 49.3600707823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6293223680f6564bb6f10e05a382bc34aee0e22c", + "fields": { + "code_commune_insee": "23235", + "nom_de_la_commune": "ST PRIEST LA FEUILLE", + "code_postal": "23300", + "coordonnees_gps": [ + 46.1984256064, + 1.53565448112 + ], + "libelle_d_acheminement": "ST PRIEST LA FEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53565448112, + 46.1984256064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cef70021e84079b06603efe7ab3244e872d0053a", + "fields": { + "code_commune_insee": "14025", + "nom_de_la_commune": "AUBIGNY", + "code_postal": "14700", + "coordonnees_gps": [ + 48.9145772293, + -0.215543424215 + ], + "libelle_d_acheminement": "AUBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.215543424215, + 48.9145772293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72865ee3b0b7661e79a58dc798fca05e1ae2e1d2", + "fields": { + "code_commune_insee": "23239", + "nom_de_la_commune": "ST SEBASTIEN", + "code_postal": "23160", + "coordonnees_gps": [ + 46.3933331691, + 1.53031685925 + ], + "libelle_d_acheminement": "ST SEBASTIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53031685925, + 46.3933331691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbb7c6d98228b4cb29f162027de645e9a362a1c2", + "fields": { + "ligne_5": "AUNAY SUR ODON", + "code_commune_insee": "14027", + "libelle_d_acheminement": "LES MONTS D AUNAY", + "code_postal": "14260", + "nom_de_la_commune": "LES MONTS D AUNAY", + "coordonnees_gps": [ + 49.0144785445, + -0.633929762668 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.633929762668, + 49.0144785445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ade99f0cc812d494a2471b6988ff93a049c8679d", + "fields": { + "code_commune_insee": "23250", + "nom_de_la_commune": "ST YRIEIX LES BOIS", + "code_postal": "23150", + "coordonnees_gps": [ + 46.0936669043, + 1.95720229248 + ], + "libelle_d_acheminement": "ST YRIEIX LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95720229248, + 46.0936669043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce3888b4ff0f6ed2d2eaed285687f9d215848c07", + "fields": { + "ligne_5": "LA FERRIERE DUVAL", + "code_commune_insee": "14027", + "libelle_d_acheminement": "LES MONTS D AUNAY", + "code_postal": "14770", + "nom_de_la_commune": "LES MONTS D AUNAY", + "coordonnees_gps": [ + 49.0144785445, + -0.633929762668 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.633929762668, + 49.0144785445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c923bc3ad72656820d4912217179f56729c97352", + "fields": { + "code_commune_insee": "23252", + "nom_de_la_commune": "TERCILLAT", + "code_postal": "23350", + "coordonnees_gps": [ + 46.403527358, + 2.05486198243 + ], + "libelle_d_acheminement": "TERCILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05486198243, + 46.403527358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04091c4e5fb99a599881e3f6fcf8e875852399f4", + "fields": { + "code_commune_insee": "14030", + "nom_de_la_commune": "AUTHIE", + "code_postal": "14280", + "coordonnees_gps": [ + 49.205811786, + -0.430653066001 + ], + "libelle_d_acheminement": "AUTHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.430653066001, + 49.205811786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a8cb749aa9216179a81246d1140d7780a3217a5", + "fields": { + "code_commune_insee": "23254", + "nom_de_la_commune": "TOULX STE CROIX", + "code_postal": "23600", + "coordonnees_gps": [ + 46.291110215, + 2.21724671243 + ], + "libelle_d_acheminement": "TOULX STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21724671243, + 46.291110215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bdd17b26ef55cc75f534c5713db577dcf859a11", + "fields": { + "ligne_5": "VAUBADON", + "code_commune_insee": "14035", + "libelle_d_acheminement": "BALLEROY SUR DROME", + "code_postal": "14490", + "nom_de_la_commune": "BALLEROY SUR DROME", + "coordonnees_gps": [ + 49.1801660324, + -0.839275566606 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.839275566606, + 49.1801660324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5744981ab068c08c8ed6aa98393447f1efa40a87", + "fields": { + "code_commune_insee": "23260", + "nom_de_la_commune": "VIDAILLAT", + "code_postal": "23250", + "coordonnees_gps": [ + 45.9552228626, + 1.89790597519 + ], + "libelle_d_acheminement": "VIDAILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89790597519, + 45.9552228626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d84d26a64c4691ec3f20e280d169955f9aa8914b", + "fields": { + "code_commune_insee": "14039", + "nom_de_la_commune": "BARBERY", + "code_postal": "14220", + "coordonnees_gps": [ + 49.0142202148, + -0.345317052278 + ], + "libelle_d_acheminement": "BARBERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.345317052278, + 49.0142202148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b07102558a3a0b464e1814dbdc492a7882eddbc", + "fields": { + "code_commune_insee": "23264", + "nom_de_la_commune": "LA VILLEDIEU", + "code_postal": "23340", + "coordonnees_gps": [ + 45.7327546531, + 1.89245043112 + ], + "libelle_d_acheminement": "LA VILLEDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89245043112, + 45.7327546531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ff0a259ba76ffb9a26007bb36d393fc00327c05", + "fields": { + "code_commune_insee": "14042", + "nom_de_la_commune": "BARON SUR ODON", + "code_postal": "14210", + "coordonnees_gps": [ + 49.1280853524, + -0.481929855729 + ], + "libelle_d_acheminement": "BARON SUR ODON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.481929855729, + 49.1280853524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "126647a7908de5bc0fb725be50ebc59e6d145fb0", + "fields": { + "code_commune_insee": "24012", + "nom_de_la_commune": "ARCHIGNAC", + "code_postal": "24590", + "coordonnees_gps": [ + 45.0157581227, + 1.29160105992 + ], + "libelle_d_acheminement": "ARCHIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29160105992, + 45.0157581227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f1e8b1d27e4010da65b4fa87d1c4e4f066bd43f", + "fields": { + "ligne_5": "ROBEHOMME", + "code_commune_insee": "14046", + "libelle_d_acheminement": "BAVENT", + "code_postal": "14860", + "nom_de_la_commune": "BAVENT", + "coordonnees_gps": [ + 49.2260268215, + -0.182663216453 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.182663216453, + 49.2260268215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f822c7d14ef1b10b2d72c3db922ff6be76b8784", + "fields": { + "code_commune_insee": "24022", + "nom_de_la_commune": "BADEFOLS SUR DORDOGNE", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8391204649, + 0.800580246575 + ], + "libelle_d_acheminement": "BADEFOLS SUR DORDOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.800580246575, + 44.8391204649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a47ea9a7dfa87b24ca30fea8b190ae77b4c44d84", + "fields": { + "code_commune_insee": "14053", + "nom_de_la_commune": "BEAUMAIS", + "code_postal": "14620", + "coordonnees_gps": [ + 48.8992282698, + -0.0710822591803 + ], + "libelle_d_acheminement": "BEAUMAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0710822591803, + 48.8992282698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1804fbff13a662b4ad26e2b27905d623e9644b97", + "fields": { + "code_commune_insee": "24023", + "nom_de_la_commune": "BANEUIL", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8529470727, + 0.69340604246 + ], + "libelle_d_acheminement": "BANEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69340604246, + 44.8529470727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25431a3c131b9557ad11bba4fbe5dc21222859b8", + "fields": { + "code_commune_insee": "14059", + "nom_de_la_commune": "BENERVILLE SUR MER", + "code_postal": "14910", + "coordonnees_gps": [ + 49.3390106956, + 0.0477938566692 + ], + "libelle_d_acheminement": "BENERVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0477938566692, + 49.3390106956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3f00b750b6512c2052532930b73e0d0cfee4330", + "fields": { + "ligne_5": "BASSILLAC", + "code_commune_insee": "24026", + "libelle_d_acheminement": "BASSILLAC ET AUBEROCHE", + "code_postal": "24330", + "nom_de_la_commune": "BASSILLAC ET AUBEROCHE", + "coordonnees_gps": [ + 45.1789592433, + 0.820956969026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.820956969026, + 45.1789592433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37414a793e7fcfefc43da0fe54680987bb5e7ac8", + "fields": { + "ligne_5": "BURES LES MONTS", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45eb37730b0d38ddf83354db1a64a356fc5c6247", + "fields": { + "ligne_5": "BLIS ET BORN", + "code_commune_insee": "24026", + "libelle_d_acheminement": "BASSILLAC ET AUBEROCHE", + "code_postal": "24330", + "nom_de_la_commune": "BASSILLAC ET AUBEROCHE", + "coordonnees_gps": [ + 45.1789592433, + 0.820956969026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.820956969026, + 45.1789592433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce5b1799aa6eb588c8c65f8d641139716bfba48b", + "fields": { + "ligne_5": "CAMPEAUX", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60aa6806125445624a6f69defd47dcd1b250459c", + "fields": { + "ligne_5": "NOJALS ET CLOTTE", + "code_commune_insee": "24028", + "libelle_d_acheminement": "BEAUMONTOIS EN PERIGORD", + "code_postal": "24440", + "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", + "coordonnees_gps": [ + 44.773801258, + 0.75409629331 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75409629331, + 44.773801258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47124dfb41e5af1d2247c37313bd81f5ee09cb86", + "fields": { + "ligne_5": "CARVILLE", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df0fc27bcaa3d0c037713de6536b02e37b0ba1a8", + "fields": { + "code_commune_insee": "24032", + "nom_de_la_commune": "BEAURONNE", + "code_postal": "24400", + "coordonnees_gps": [ + 45.1003503966, + 0.363141785914 + ], + "libelle_d_acheminement": "BEAURONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.363141785914, + 45.1003503966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2facee409df52780758123d8dc34c921a974be38", + "fields": { + "ligne_5": "LE RECULEY", + "code_commune_insee": "14061", + "libelle_d_acheminement": "SOULEUVRE EN BOCAGE", + "code_postal": "14350", + "nom_de_la_commune": "SOULEUVRE EN BOCAGE", + "coordonnees_gps": [ + 48.9311056012, + -0.829700488318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829700488318, + 48.9311056012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64dc0248fcb9fb9e37bba4151148c61ed17303c3", + "fields": { + "code_commune_insee": "24043", + "nom_de_la_commune": "BIRON", + "code_postal": "24540", + "coordonnees_gps": [ + 44.6225958112, + 0.874123602504 + ], + "libelle_d_acheminement": "BIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.874123602504, + 44.6225958112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06ef51b3414ffb361a9dc3987fb15f7ee907e027", + "fields": { + "code_commune_insee": "14062", + "nom_de_la_commune": "BENY SUR MER", + "code_postal": "14440", + "coordonnees_gps": [ + 49.2906537032, + -0.436236066881 + ], + "libelle_d_acheminement": "BENY SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.436236066881, + 49.2906537032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b461b69f36e4af4aa614c460e80ad5b49379cc07", + "fields": { + "ligne_5": "ATUR", + "code_commune_insee": "24053", + "libelle_d_acheminement": "BOULAZAC ISLE MANOIRE", + "code_postal": "24750", + "nom_de_la_commune": "BOULAZAC ISLE MANOIRE", + "coordonnees_gps": [ + 45.1737726952, + 0.769368950586 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.769368950586, + 45.1737726952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c62e8f75aed274372dc8d275c2e05becccd8fae9", + "fields": { + "code_commune_insee": "14066", + "nom_de_la_commune": "BERNIERES SUR MER", + "code_postal": "14990", + "coordonnees_gps": [ + 49.3194698748, + -0.417743184424 + ], + "libelle_d_acheminement": "BERNIERES SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.417743184424, + 49.3194698748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d221d4125142a33b0de66c85c46428155521bd01", + "fields": { + "code_commune_insee": "24059", + "nom_de_la_commune": "BOURGNAC", + "code_postal": "24400", + "coordonnees_gps": [ + 45.0173532557, + 0.397961446009 + ], + "libelle_d_acheminement": "BOURGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.397961446009, + 45.0173532557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "345f56e273302c169a176763fa7d835bd53b23be", + "fields": { + "ligne_5": "BIEVILLE SUR ORNE", + "code_commune_insee": "14068", + "libelle_d_acheminement": "BIEVILLE BEUVILLE", + "code_postal": "14112", + "nom_de_la_commune": "BIEVILLE BEUVILLE", + "coordonnees_gps": [ + 49.2394857474, + -0.336897222292 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.336897222292, + 49.2394857474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ead06c367275aaebe537e52c41682c6bd766956", + "fields": { + "ligne_5": "ST JULIEN DE BOURDEILLES", + "code_commune_insee": "24064", + "libelle_d_acheminement": "BRANTOME EN PERIGORD", + "code_postal": "24310", + "nom_de_la_commune": "BRANTOME EN PERIGORD", + "coordonnees_gps": [ + 45.360114867, + 0.65590360604 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65590360604, + 45.360114867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2df2a541bde0f3913910dffde937ea47005f2139", + "fields": { + "code_commune_insee": "14085", + "nom_de_la_commune": "BONNEVILLE LA LOUVET", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2730898592, + 0.341971829681 + ], + "libelle_d_acheminement": "BONNEVILLE LA LOUVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.341971829681, + 49.2730898592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd77e7250e8bc3755046941a59147009226674fe", + "fields": { + "ligne_5": "EYVIRAT", + "code_commune_insee": "24064", + "libelle_d_acheminement": "BRANTOME EN PERIGORD", + "code_postal": "24460", + "nom_de_la_commune": "BRANTOME EN PERIGORD", + "coordonnees_gps": [ + 45.360114867, + 0.65590360604 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65590360604, + 45.360114867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3977f219f507f3f304c8897f1354fc34de74e884", + "fields": { + "code_commune_insee": "14086", + "nom_de_la_commune": "BONNEVILLE SUR TOUQUES", + "code_postal": "14800", + "coordonnees_gps": [ + 49.3299368884, + 0.119217690355 + ], + "libelle_d_acheminement": "BONNEVILLE SUR TOUQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.119217690355, + 49.3299368884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6615054c2354d61b44c5dd06d34eceb4934b2c64", + "fields": { + "ligne_5": "CANTILLAC", + "code_commune_insee": "24064", + "libelle_d_acheminement": "BRANTOME EN PERIGORD", + "code_postal": "24530", + "nom_de_la_commune": "BRANTOME EN PERIGORD", + "coordonnees_gps": [ + 45.360114867, + 0.65590360604 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65590360604, + 45.360114867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63976532f3d2d56e361264e1e90a187131949034", + "fields": { + "code_commune_insee": "14091", + "nom_de_la_commune": "BOURGEAUVILLE", + "code_postal": "14430", + "coordonnees_gps": [ + 49.2681454005, + 0.0583853935141 + ], + "libelle_d_acheminement": "BOURGEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0583853935141, + 49.2681454005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "558ef1a40f425cc8f904944762f8a6075e93e1cc", + "fields": { + "code_commune_insee": "24067", + "nom_de_la_commune": "LE BUGUE", + "code_postal": "24260", + "coordonnees_gps": [ + 44.9264427991, + 0.924662888033 + ], + "libelle_d_acheminement": "LE BUGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.924662888033, + 44.9264427991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d32322f275cc410e038034c0f232a7b38ea6cccd", + "fields": { + "ligne_5": "CHEUX", + "code_commune_insee": "14098", + "libelle_d_acheminement": "THUE ET MUE", + "code_postal": "14210", + "nom_de_la_commune": "THUE ET MUE", + "coordonnees_gps": [ + 49.2151517714, + -0.51673661621 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51673661621, + 49.2151517714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eed192ec20fd4993c0989c0374de4f39ea2b4024", + "fields": { + "code_commune_insee": "24069", + "nom_de_la_commune": "BUSSAC", + "code_postal": "24350", + "coordonnees_gps": [ + 45.266644062, + 0.602717592385 + ], + "libelle_d_acheminement": "BUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.602717592385, + 45.266644062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aa284c4dc0ff9bc44ae55c9656b6848d7f7f771", + "fields": { + "ligne_5": "LE MESNIL PATRY", + "code_commune_insee": "14098", + "libelle_d_acheminement": "THUE ET MUE", + "code_postal": "14740", + "nom_de_la_commune": "THUE ET MUE", + "coordonnees_gps": [ + 49.2151517714, + -0.51673661621 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51673661621, + 49.2151517714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "953f80e26495e39a2e9563b8c933dfa8c6035f7c", + "fields": { + "code_commune_insee": "24070", + "nom_de_la_commune": "BUSSEROLLES", + "code_postal": "24360", + "coordonnees_gps": [ + 45.6716660842, + 0.646120502455 + ], + "libelle_d_acheminement": "BUSSEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.646120502455, + 45.6716660842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "099aab3059fda3aff02eb6a51238961180b333f6", + "fields": { + "code_commune_insee": "14100", + "nom_de_la_commune": "BRETTEVILLE SUR LAIZE", + "code_postal": "14680", + "coordonnees_gps": [ + 49.0498397509, + -0.326047063424 + ], + "libelle_d_acheminement": "BRETTEVILLE SUR LAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.326047063424, + 49.0498397509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab2928fa04b4b6d0e47a424ef85f658732239f6b", + "fields": { + "code_commune_insee": "24073", + "nom_de_la_commune": "CALES", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8631926385, + 0.815037014409 + ], + "libelle_d_acheminement": "CALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.815037014409, + 44.8631926385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dd7fd059f975eeea279f09419e03a6cb844fed7", + "fields": { + "code_commune_insee": "14140", + "nom_de_la_commune": "CASTILLON", + "code_postal": "14490", + "coordonnees_gps": [ + 49.1953923219, + -0.797563519369 + ], + "libelle_d_acheminement": "CASTILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.797563519369, + 49.1953923219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d72a9f9ffae7d62a8ca897b935bb4aaf920483c", + "fields": { + "code_commune_insee": "24074", + "nom_de_la_commune": "CALVIAC EN PERIGORD", + "code_postal": "24370", + "coordonnees_gps": [ + 44.8610771393, + 1.32210433458 + ], + "libelle_d_acheminement": "CALVIAC EN PERIGORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32210433458, + 44.8610771393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d89007eeab8d440be3ab086970aaf013b0124bcc", + "fields": { + "ligne_5": "PLACY", + "code_commune_insee": "14150", + "libelle_d_acheminement": "CESNY LES SOURCES", + "code_postal": "14220", + "nom_de_la_commune": "CESNY LES SOURCES", + "coordonnees_gps": [ + 48.9853267914, + -0.394469235831 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.394469235831, + 48.9853267914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f565e98d9ae828a658c4e6d1c46f043a432e6bd7", + "fields": { + "code_commune_insee": "24080", + "nom_de_la_commune": "CAPDROT", + "code_postal": "24540", + "coordonnees_gps": [ + 44.6788316075, + 0.945174141112 + ], + "libelle_d_acheminement": "CAPDROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.945174141112, + 44.6788316075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffc3a256f1872e22774e61740d446e98e0f64935", + "fields": { + "ligne_5": "TOURNEBU", + "code_commune_insee": "14150", + "libelle_d_acheminement": "CESNY LES SOURCES", + "code_postal": "14220", + "nom_de_la_commune": "CESNY LES SOURCES", + "coordonnees_gps": [ + 48.9853267914, + -0.394469235831 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.394469235831, + 48.9853267914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcaf042478b8eac89398c7d17165a46e9aecb261", + "fields": { + "code_commune_insee": "24085", + "nom_de_la_commune": "LA CASSAGNE", + "code_postal": "24120", + "coordonnees_gps": [ + 45.0565548056, + 1.30647398924 + ], + "libelle_d_acheminement": "LA CASSAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30647398924, + 45.0565548056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43ae533171439aff042fd03de3de594f1a42229d", + "fields": { + "code_commune_insee": "14163", + "nom_de_la_commune": "CLEVILLE", + "code_postal": "14370", + "coordonnees_gps": [ + 49.1440586411, + -0.0944377388042 + ], + "libelle_d_acheminement": "CLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0944377388042, + 49.1440586411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41895c34ce5e05ed94a36208f07d267047e9a259", + "fields": { + "ligne_5": "LA CHAPELLE PECHAUD", + "code_commune_insee": "24086", + "libelle_d_acheminement": "CASTELNAUD LA CHAPELLE", + "code_postal": "24250", + "nom_de_la_commune": "CASTELNAUD LA CHAPELLE", + "coordonnees_gps": [ + 44.8017266303, + 1.13058711758 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13058711758, + 44.8017266303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9a3b779792a021577f2438826f184c45946e0a2", + "fields": { + "code_commune_insee": "14168", + "nom_de_la_commune": "COLOMBIERES", + "code_postal": "14710", + "coordonnees_gps": [ + 49.3031615554, + -0.988453131673 + ], + "libelle_d_acheminement": "COLOMBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.988453131673, + 49.3031615554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07d97ec68d3f5dd3ae3af7c6bf3d7dad6d981f5d", + "fields": { + "ligne_5": "BEZENAC", + "code_commune_insee": "24087", + "libelle_d_acheminement": "CASTELS ET BEZENAC", + "code_postal": "24220", + "nom_de_la_commune": "CASTELS ET BEZENAC", + "coordonnees_gps": [ + 44.8705381917, + 1.08038180095 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08038180095, + 44.8705381917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2cda13b4ae330377105a748f9a23288ce8c576a", + "fields": { + "code_commune_insee": "14169", + "nom_de_la_commune": "COLOMBIERS SUR SEULLES", + "code_postal": "14480", + "coordonnees_gps": [ + 49.2992378071, + -0.506001365428 + ], + "libelle_d_acheminement": "COLOMBIERS SUR SEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.506001365428, + 49.2992378071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cf9c93e4db87f9499ab2fe148f2b498f3aaf046", + "fields": { + "code_commune_insee": "24102", + "nom_de_la_commune": "CHANCELADE", + "code_postal": "24650", + "coordonnees_gps": [ + 45.2100121087, + 0.655273444534 + ], + "libelle_d_acheminement": "CHANCELADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.655273444534, + 45.2100121087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee163ff70d74e0292dba4e8aae998a73c4dddc11", + "fields": { + "code_commune_insee": "14171", + "nom_de_la_commune": "COMBRAY", + "code_postal": "14220", + "coordonnees_gps": [ + 48.9461421049, + -0.445696929099 + ], + "libelle_d_acheminement": "COMBRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.445696929099, + 48.9461421049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "692b1d748224d5b782f3237e094b0676feef96be", + "fields": { + "code_commune_insee": "24107", + "nom_de_la_commune": "LA CHAPELLE FAUCHER", + "code_postal": "24530", + "coordonnees_gps": [ + 45.3743763047, + 0.761777486719 + ], + "libelle_d_acheminement": "LA CHAPELLE FAUCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.761777486719, + 45.3743763047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94e1553f784b681d3c0026958cb7960c1b08573a", + "fields": { + "code_commune_insee": "14173", + "nom_de_la_commune": "CONDE SUR IFS", + "code_postal": "14270", + "coordonnees_gps": [ + 49.0365024572, + -0.139687850488 + ], + "libelle_d_acheminement": "CONDE SUR IFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.139687850488, + 49.0365024572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64e3afbd4018c52fe79fa3de76eae55069d7bd4d", + "fields": { + "ligne_5": "CHAVAGNAC", + "code_commune_insee": "24117", + "libelle_d_acheminement": "LES COTEAUX PERIGOURDINS", + "code_postal": "24120", + "nom_de_la_commune": "LES COTEAUX PERIGOURDINS", + "coordonnees_gps": [ + 45.0871076181, + 1.37000176576 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37000176576, + 45.0871076181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a298e4eaa1ee56664fc4a80f4ef382fd3e6f42c", + "fields": { + "code_commune_insee": "14175", + "nom_de_la_commune": "CONDE SUR SEULLES", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2211365701, + -0.641273751306 + ], + "libelle_d_acheminement": "CONDE SUR SEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.641273751306, + 49.2211365701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cd330c66c07d7e261f117d594939d0a52ec3cd1", + "fields": { + "code_commune_insee": "24119", + "nom_de_la_commune": "CHERVAL", + "code_postal": "24320", + "coordonnees_gps": [ + 45.3879420014, + 0.384934329038 + ], + "libelle_d_acheminement": "CHERVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.384934329038, + 45.3879420014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d168a44e8bc14660c2a7766cc231c20f78cc8c1", + "fields": { + "code_commune_insee": "14190", + "nom_de_la_commune": "COURCY", + "code_postal": "14170", + "coordonnees_gps": [ + 48.9695873658, + -0.0337679175987 + ], + "libelle_d_acheminement": "COURCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0337679175987, + 48.9695873658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "256babe4abba344fa59cb0b26adac262304aa53f", + "fields": { + "code_commune_insee": "24124", + "nom_de_la_commune": "CLERMONT D EXCIDEUIL", + "code_postal": "24160", + "coordonnees_gps": [ + 45.3645597684, + 1.04715685137 + ], + "libelle_d_acheminement": "CLERMONT D EXCIDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04715685137, + 45.3645597684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b7f4cafbb52590eac15c6e0c98defc60f490309", + "fields": { + "code_commune_insee": "14193", + "nom_de_la_commune": "COURTONNE LA MEURDRAC", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1202461329, + 0.329059637996 + ], + "libelle_d_acheminement": "COURTONNE LA MEURDRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.329059637996, + 49.1202461329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85193de58047f6601e020a5e71010ed3e2e28ea6", + "fields": { + "code_commune_insee": "24128", + "nom_de_la_commune": "COMBERANCHE ET EPELUCHE", + "code_postal": "24600", + "coordonnees_gps": [ + 45.2768659289, + 0.280086546492 + ], + "libelle_d_acheminement": "COMBERANCHE ET EPELUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.280086546492, + 45.2768659289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28e699c208eabecbb6c9c85f7efde58465129006", + "fields": { + "ligne_5": "ST PAUL DE COURTONNE", + "code_commune_insee": "14194", + "libelle_d_acheminement": "COURTONNE LES DEUX EGLISES", + "code_postal": "14290", + "nom_de_la_commune": "COURTONNE LES DEUX EGLISES", + "coordonnees_gps": [ + 49.0888311326, + 0.37808461753 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.37808461753, + 49.0888311326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c07a41500b353ebb393d1ff225e3877f6b6bc7a2", + "fields": { + "code_commune_insee": "24130", + "nom_de_la_commune": "CONDAT SUR VEZERE", + "code_postal": "24570", + "coordonnees_gps": [ + 45.1064273912, + 1.22906271409 + ], + "libelle_d_acheminement": "CONDAT SUR VEZERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22906271409, + 45.1064273912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b44089b44d35e3f0050c26c57bf8744eb49b84cb", + "fields": { + "code_commune_insee": "14196", + "nom_de_la_commune": "CREPON", + "code_postal": "14480", + "coordonnees_gps": [ + 49.314511496, + -0.545657702381 + ], + "libelle_d_acheminement": "CREPON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.545657702381, + 49.314511496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2483d01ed861e4758402d571819f029d6520629e", + "fields": { + "code_commune_insee": "24145", + "nom_de_la_commune": "CREYSSE", + "code_postal": "24100", + "coordonnees_gps": [ + 44.8643965465, + 0.548982733811 + ], + "libelle_d_acheminement": "CREYSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.548982733811, + 44.8643965465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fcfe807af78a48d828e23e14e6a9d987175c8ae", + "fields": { + "ligne_5": "VILLIERS LE SEC", + "code_commune_insee": "14200", + "libelle_d_acheminement": "CREULLY SUR SEULLES", + "code_postal": "14480", + "nom_de_la_commune": "CREULLY SUR SEULLES", + "coordonnees_gps": [ + 49.2864524812, + -0.543327621635 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.543327621635, + 49.2864524812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd3c6d024982ded6e74f7c121e5710e50033f521", + "fields": { + "code_commune_insee": "24148", + "nom_de_la_commune": "CUNEGES", + "code_postal": "24240", + "coordonnees_gps": [ + 44.7797858613, + 0.374061836484 + ], + "libelle_d_acheminement": "CUNEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.374061836484, + 44.7797858613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1678bdadab8488e60e3da2d0a5928087e53db381", + "fields": { + "code_commune_insee": "14221", + "nom_de_la_commune": "DEMOUVILLE", + "code_postal": "14840", + "coordonnees_gps": [ + 49.1778085857, + -0.263135480926 + ], + "libelle_d_acheminement": "DEMOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.263135480926, + 49.1778085857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99f0d00b3d2396fce56bddf39be03cd984d144db", + "fields": { + "code_commune_insee": "24151", + "nom_de_la_commune": "DOISSAT", + "code_postal": "24170", + "coordonnees_gps": [ + 44.7217623924, + 1.08561401475 + ], + "libelle_d_acheminement": "DOISSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08561401475, + 44.7217623924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "053e39f80328f1ea66ffd058c548f986d3a111ef", + "fields": { + "code_commune_insee": "14224", + "nom_de_la_commune": "DEUX JUMEAUX", + "code_postal": "14230", + "coordonnees_gps": [ + 49.3547956014, + -0.968791450871 + ], + "libelle_d_acheminement": "DEUX JUMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.968791450871, + 49.3547956014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4970a4450606fc937c531013911a368881779898", + "fields": { + "code_commune_insee": "24154", + "nom_de_la_commune": "DOUCHAPT", + "code_postal": "24350", + "coordonnees_gps": [ + 45.2320756784, + 0.4456872925 + ], + "libelle_d_acheminement": "DOUCHAPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.4456872925, + 45.2320756784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c899ba6531060e7e2f82746aab4ebf6aafaf1075", + "fields": { + "code_commune_insee": "14227", + "nom_de_la_commune": "DOUVILLE EN AUGE", + "code_postal": "14430", + "coordonnees_gps": [ + 49.2639806447, + -0.0212654288375 + ], + "libelle_d_acheminement": "DOUVILLE EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0212654288375, + 49.2639806447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1ec455b50719c315a75f9c2ccc1808c2202f120", + "fields": { + "code_commune_insee": "24156", + "nom_de_la_commune": "LA DOUZE", + "code_postal": "24330", + "coordonnees_gps": [ + 45.0680583989, + 0.86230765342 + ], + "libelle_d_acheminement": "LA DOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86230765342, + 45.0680583989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2573bd10911ecc7718a0bc90b97d3ba12cf67bc", + "fields": { + "code_commune_insee": "14237", + "nom_de_la_commune": "EMIEVILLE", + "code_postal": "14630", + "coordonnees_gps": [ + 49.1536061686, + -0.224040672945 + ], + "libelle_d_acheminement": "EMIEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.224040672945, + 49.1536061686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a358516b99adf80ac8fc392021182234542bb1e2", + "fields": { + "code_commune_insee": "24159", + "nom_de_la_commune": "ECHOURGNAC", + "code_postal": "24410", + "coordonnees_gps": [ + 45.1290868682, + 0.223067920753 + ], + "libelle_d_acheminement": "ECHOURGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.223067920753, + 45.1290868682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a13913eb8146225fc275427aa8498bcb77469530", + "fields": { + "code_commune_insee": "14238", + "nom_de_la_commune": "ENGLESQUEVILLE EN AUGE", + "code_postal": "14800", + "coordonnees_gps": [ + 49.3318566528, + 0.149882595019 + ], + "libelle_d_acheminement": "ENGLESQUEVILLE EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.149882595019, + 49.3318566528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d79d83bd3684df6bc70b0ea6d1d95d8c85384916", + "fields": { + "code_commune_insee": "24164", + "nom_de_la_commune": "EXCIDEUIL", + "code_postal": "24160", + "coordonnees_gps": [ + 45.3293054433, + 1.06217894627 + ], + "libelle_d_acheminement": "EXCIDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06217894627, + 45.3293054433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96f5e746c0486cb8761420caf3a3f8b68bbf85dd", + "fields": { + "code_commune_insee": "14241", + "nom_de_la_commune": "EPINAY SUR ODON", + "code_postal": "14310", + "coordonnees_gps": [ + 49.0688314523, + -0.619078817289 + ], + "libelle_d_acheminement": "EPINAY SUR ODON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.619078817289, + 49.0688314523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "482c878681e31bb87207e02dd2c4f50914e5e631", + "fields": { + "code_commune_insee": "24165", + "nom_de_la_commune": "EYGURANDE ET GARDEDEUIL", + "code_postal": "24700", + "coordonnees_gps": [ + 45.0789974169, + 0.121214949187 + ], + "libelle_d_acheminement": "EYGURANDE ET GARDEDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.121214949187, + 45.0789974169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfa1cf9b161d62df3aac6bec19ccb6a8da262d32", + "fields": { + "code_commune_insee": "14244", + "nom_de_la_commune": "ERAINES", + "code_postal": "14700", + "coordonnees_gps": [ + 48.9048554681, + -0.157109731827 + ], + "libelle_d_acheminement": "ERAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.157109731827, + 48.9048554681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "485a28d3992a87a56e93738da69af235fb8b3aa1", + "fields": { + "code_commune_insee": "24168", + "nom_de_la_commune": "PLAISANCE", + "code_postal": "24560", + "coordonnees_gps": [ + 44.6984219504, + 0.555541273455 + ], + "libelle_d_acheminement": "PLAISANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.555541273455, + 44.6984219504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60fbf16f4a6eaf88b4484e682669f8f3914a26d5", + "fields": { + "code_commune_insee": "14251", + "nom_de_la_commune": "ESSON", + "code_postal": "14220", + "coordonnees_gps": [ + 48.9690516026, + -0.459505012941 + ], + "libelle_d_acheminement": "ESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.459505012941, + 48.9690516026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d59fe30e2c139a6718c147421118b047b930b49", + "fields": { + "ligne_5": "MANDACOU", + "code_commune_insee": "24168", + "libelle_d_acheminement": "PLAISANCE", + "code_postal": "24560", + "nom_de_la_commune": "PLAISANCE", + "coordonnees_gps": [ + 44.6984219504, + 0.555541273455 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.555541273455, + 44.6984219504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc12cd4586ae6fe9cf6c36f02df4034a98a70a97", + "fields": { + "code_commune_insee": "14258", + "nom_de_la_commune": "FALAISE", + "code_postal": "14700", + "coordonnees_gps": [ + 48.8957800281, + -0.193401711782 + ], + "libelle_d_acheminement": "FALAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.193401711782, + 48.8957800281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad9a1ff736c9bdb675d03a84e7aff3535aefb774", + "fields": { + "code_commune_insee": "24177", + "nom_de_la_commune": "FAUX", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7855307145, + 0.646344267604 + ], + "libelle_d_acheminement": "FAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.646344267604, + 44.7855307145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5e7cb9b4715bdd428e72c228ff630383722baea", + "fields": { + "code_commune_insee": "14260", + "nom_de_la_commune": "FAUGUERNON", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1890209562, + 0.268855843357 + ], + "libelle_d_acheminement": "FAUGUERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.268855843357, + 49.1890209562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70f5cae71d9f6fa776c44609e5c588aab2c820a3", + "fields": { + "code_commune_insee": "24184", + "nom_de_la_commune": "FLORIMONT GAUMIER", + "code_postal": "24250", + "coordonnees_gps": [ + 44.708224337, + 1.23864373133 + ], + "libelle_d_acheminement": "FLORIMONT GAUMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23864373133, + 44.708224337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c024c20a991b9998772e7cd429a8fa28e800bd7", + "fields": { + "code_commune_insee": "14271", + "nom_de_la_commune": "FLEURY SUR ORNE", + "code_postal": "14123", + "coordonnees_gps": [ + 49.1444292345, + -0.377619145275 + ], + "libelle_d_acheminement": "FLEURY SUR ORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.377619145275, + 49.1444292345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64635657e04c38ad6641770b95b5db88d446cb65", + "fields": { + "code_commune_insee": "24190", + "nom_de_la_commune": "FOULEIX", + "code_postal": "24380", + "coordonnees_gps": [ + 44.9755144028, + 0.673637945149 + ], + "libelle_d_acheminement": "FOULEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.673637945149, + 44.9755144028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9daf5ba93f42e44d2367588397a899f599f3d272", + "fields": { + "code_commune_insee": "14274", + "nom_de_la_commune": "FONTAINE ETOUPEFOUR", + "code_postal": "14790", + "coordonnees_gps": [ + 49.1379993992, + -0.454203302795 + ], + "libelle_d_acheminement": "FONTAINE ETOUPEFOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.454203302795, + 49.1379993992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc6bcd49a55ef844f4799b9b6edb7666762d0ab9", + "fields": { + "code_commune_insee": "24193", + "nom_de_la_commune": "GAGEAC ET ROUILLAC", + "code_postal": "24240", + "coordonnees_gps": [ + 44.8038484874, + 0.357689330262 + ], + "libelle_d_acheminement": "GAGEAC ET ROUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.357689330262, + 44.8038484874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8c4a72a59c4e4652171d6ebde7a5baf0de2d5b2", + "fields": { + "code_commune_insee": "14275", + "nom_de_la_commune": "FONTAINE HENRY", + "code_postal": "14610", + "coordonnees_gps": [ + 49.2777846535, + -0.465842356858 + ], + "libelle_d_acheminement": "FONTAINE HENRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.465842356858, + 49.2777846535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe9c4ad73f8c70897b9d6e431bd4d41f9015b81f", + "fields": { + "code_commune_insee": "24197", + "nom_de_la_commune": "GINESTET", + "code_postal": "24130", + "coordonnees_gps": [ + 44.904098467, + 0.437644888806 + ], + "libelle_d_acheminement": "GINESTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.437644888806, + 44.904098467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb84f54f75a98029f41a30ce5033010fc2b5dd02", + "fields": { + "ligne_5": "ECRAMMEVILLE", + "code_commune_insee": "14281", + "libelle_d_acheminement": "FORMIGNY LA BATAILLE", + "code_postal": "14710", + "nom_de_la_commune": "FORMIGNY LA BATAILLE", + "coordonnees_gps": [ + 49.3358463072, + -0.896417546016 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.896417546016, + 49.3358463072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bae553f7b94ad1ae0523e0e3764798af5960d60c", + "fields": { + "code_commune_insee": "24212", + "nom_de_la_commune": "ISSIGEAC", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7277197609, + 0.605495408497 + ], + "libelle_d_acheminement": "ISSIGEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.605495408497, + 44.7277197609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd54f9c7f9787326a2ff0984f659b53ab98cf7f6", + "fields": { + "code_commune_insee": "14302", + "nom_de_la_commune": "GLANVILLE", + "code_postal": "14950", + "coordonnees_gps": [ + 49.2767710581, + 0.0750189891546 + ], + "libelle_d_acheminement": "GLANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0750189891546, + 49.2767710581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69205591d35b874216d43165888c4179dc99bcde", + "fields": { + "code_commune_insee": "24214", + "nom_de_la_commune": "JAVERLHAC ET LA CHAPELLE ST ROBERT", + "code_postal": "24300", + "coordonnees_gps": [ + 45.5610374028, + 0.55048383986 + ], + "libelle_d_acheminement": "JAVERLHAC LA CHAPELLE ST ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55048383986, + 45.5610374028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c19a03bfb4c7e86a40f036a500794abe8bdc3945", + "fields": { + "code_commune_insee": "14316", + "nom_de_la_commune": "GRANGUES", + "code_postal": "14160", + "coordonnees_gps": [ + 49.2620621593, + -0.0581924167296 + ], + "libelle_d_acheminement": "GRANGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0581924167296, + 49.2620621593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "647d80cba20b98126734a94159ca8d47ae37521c", + "fields": { + "ligne_5": "PONTEYRAUD", + "code_commune_insee": "24216", + "libelle_d_acheminement": "LA JEMAYE PONTEYRAUD", + "code_postal": "24410", + "nom_de_la_commune": "LA JEMAYE PONTEYRAUD", + "coordonnees_gps": [ + 45.1605027107, + 0.2625699124 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.2625699124, + 45.1605027107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbdff53f0c52b5ad7333bdfdc975432d28b1f1fd", + "fields": { + "code_commune_insee": "14320", + "nom_de_la_commune": "GRIMBOSQ", + "code_postal": "14220", + "coordonnees_gps": [ + 49.0446792733, + -0.443624384517 + ], + "libelle_d_acheminement": "GRIMBOSQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.443624384517, + 49.0446792733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba11606f8d9a918407e8b13b97695283e06e70ac", + "fields": { + "code_commune_insee": "24217", + "nom_de_la_commune": "JOURNIAC", + "code_postal": "24260", + "coordonnees_gps": [ + 44.9659647609, + 0.885753776591 + ], + "libelle_d_acheminement": "JOURNIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.885753776591, + 44.9659647609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "335c204490da55d71375fdd27bce2f5e270431a2", + "fields": { + "code_commune_insee": "14327", + "nom_de_la_commune": "HEROUVILLE ST CLAIR", + "code_postal": "14200", + "coordonnees_gps": [ + 49.2073560619, + -0.331022626025 + ], + "libelle_d_acheminement": "HEROUVILLE ST CLAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.331022626025, + 49.2073560619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd666f37255ebda323c3caa110b6c14724a41fb6", + "fields": { + "code_commune_insee": "24226", + "nom_de_la_commune": "LAMOTHE MONTRAVEL", + "code_postal": "24230", + "coordonnees_gps": [ + 44.8527560372, + 0.0166870245724 + ], + "libelle_d_acheminement": "LAMOTHE MONTRAVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0166870245724, + 44.8527560372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5314f50423ab72335f2d3f14953c3174ba502ca9", + "fields": { + "code_commune_insee": "14332", + "nom_de_la_commune": "LA HOGUETTE", + "code_postal": "14700", + "coordonnees_gps": [ + 48.8530698263, + -0.160675825982 + ], + "libelle_d_acheminement": "LA HOGUETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.160675825982, + 48.8530698263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6eadd4a125dff6866127580d6c44048a48228f7", + "fields": { + "code_commune_insee": "24242", + "nom_de_la_commune": "LIORAC SUR LOUYRE", + "code_postal": "24520", + "coordonnees_gps": [ + 44.8959905533, + 0.64158293825 + ], + "libelle_d_acheminement": "LIORAC SUR LOUYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64158293825, + 44.8959905533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e23d21c5a983dd5b573bb877a7db50c5e578d8a5", + "fields": { + "code_commune_insee": "14335", + "nom_de_la_commune": "HOTOT EN AUGE", + "code_postal": "14430", + "coordonnees_gps": [ + 49.1774252803, + -0.076370337762 + ], + "libelle_d_acheminement": "HOTOT EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.076370337762, + 49.1774252803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2536d7b64cfc52beb4cbe4ef6707a0f04eb064f7", + "fields": { + "code_commune_insee": "24251", + "nom_de_la_commune": "MANZAC SUR VERN", + "code_postal": "24110", + "coordonnees_gps": [ + 45.08449412, + 0.590479755164 + ], + "libelle_d_acheminement": "MANZAC SUR VERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.590479755164, + 45.08449412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25a0b37e54abe99e6a910fd93f4a16a65ce57c84", + "fields": { + "ligne_5": "LES OUBEAUX", + "code_commune_insee": "14342", + "libelle_d_acheminement": "ISIGNY SUR MER", + "code_postal": "14230", + "nom_de_la_commune": "ISIGNY SUR MER", + "coordonnees_gps": [ + 49.305761488, + -1.10256916512 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10256916512, + 49.305761488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e6793209e57109b57e43319f62d8bfb841e1d6f", + "fields": { + "ligne_5": "CHAMPEAUX ET LA CHAPELLE POMMIER", + "code_commune_insee": "24253", + "libelle_d_acheminement": "MAREUIL EN PERIGORD", + "code_postal": "24340", + "nom_de_la_commune": "MAREUIL EN PERIGORD", + "coordonnees_gps": [ + 45.4407517575, + 0.447904772653 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.447904772653, + 45.4407517575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bb1556e8f0b555d5c474b031d43d3cc8545bf84", + "fields": { + "code_commune_insee": "14348", + "nom_de_la_commune": "JUVIGNY SUR SEULLES", + "code_postal": "14250", + "coordonnees_gps": [ + 49.1556573472, + -0.60264289279 + ], + "libelle_d_acheminement": "JUVIGNY SUR SEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60264289279, + 49.1556573472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0b22164dff33bfb277ecf2782489648cb341d5f", + "fields": { + "ligne_5": "PUYRENIER", + "code_commune_insee": "24253", + "libelle_d_acheminement": "MAREUIL EN PERIGORD", + "code_postal": "24340", + "nom_de_la_commune": "MAREUIL EN PERIGORD", + "coordonnees_gps": [ + 45.4407517575, + 0.447904772653 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.447904772653, + 45.4407517575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b2baee43837974b534cf59f10f333144933e50b", + "fields": { + "ligne_5": "LAIZE LA VILLE", + "code_commune_insee": "14349", + "libelle_d_acheminement": "LAIZE CLINCHAMPS", + "code_postal": "14320", + "nom_de_la_commune": "LAIZE CLINCHAMPS", + "coordonnees_gps": [ + 49.0801189772, + -0.380625006843 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.380625006843, + 49.0801189772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "473d4fa996e507a7a99e654b425e0fe002e714cd", + "fields": { + "ligne_5": "VIEUX MAREUIL", + "code_commune_insee": "24253", + "libelle_d_acheminement": "MAREUIL EN PERIGORD", + "code_postal": "24340", + "nom_de_la_commune": "MAREUIL EN PERIGORD", + "coordonnees_gps": [ + 45.4407517575, + 0.447904772653 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.447904772653, + 45.4407517575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd2476a0f90ffcb49210c4bda8f28f24c273deca", + "fields": { + "ligne_5": "LASSY", + "code_commune_insee": "14357", + "libelle_d_acheminement": "TERRES DE DRUANCE", + "code_postal": "14770", + "nom_de_la_commune": "TERRES DE DRUANCE", + "coordonnees_gps": [ + 48.9136477151, + -0.684142611751 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.684142611751, + 48.9136477151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dac6255c1b6428f3a03bcb15ca00ec80a3f0c46", + "fields": { + "code_commune_insee": "24254", + "nom_de_la_commune": "MARNAC", + "code_postal": "24220", + "coordonnees_gps": [ + 44.8296793291, + 1.02879857641 + ], + "libelle_d_acheminement": "MARNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02879857641, + 44.8296793291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa7ff16e65a73be26b286f3491f05089b884e7e7", + "fields": { + "code_commune_insee": "14367", + "nom_de_la_commune": "LISON", + "code_postal": "14330", + "coordonnees_gps": [ + 49.2416115428, + -1.05227521877 + ], + "libelle_d_acheminement": "LISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05227521877, + 49.2416115428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d1b3f37ce90b32d927fab66e776138c9add0470", + "fields": { + "ligne_5": "LAVEYSSIERE", + "code_commune_insee": "24259", + "libelle_d_acheminement": "EYRAUD CREMPSE MAURENS", + "code_postal": "24130", + "nom_de_la_commune": "EYRAUD CREMPSE MAURENS", + "coordonnees_gps": [ + 44.9268775631, + 0.482243594531 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.482243594531, + 44.9268775631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f47151e9004e4ca00c309a4f609c9332805620ff", + "fields": { + "ligne_5": "BELLOU", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28c7068a0b9e1507bc1f224a34695db0f9fc2484", + "fields": { + "code_commune_insee": "24261", + "nom_de_la_commune": "MAUZENS ET MIREMONT", + "code_postal": "24260", + "coordonnees_gps": [ + 44.9907571497, + 0.929133081058 + ], + "libelle_d_acheminement": "MAUZENS ET MIREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.929133081058, + 44.9907571497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48c5f26930b2090a859ec35f03ae76e0c9d5dd1f", + "fields": { + "ligne_5": "LE MESNIL GERMAIN", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f55c3ed54d7b2ed8d451a46c4143bd61342080a2", + "fields": { + "code_commune_insee": "24264", + "nom_de_la_commune": "MENESPLET", + "code_postal": "24700", + "coordonnees_gps": [ + 45.0036275997, + 0.10542960424 + ], + "libelle_d_acheminement": "MENESPLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10542960424, + 45.0036275997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02615fc94eff95d5a970fbe5abb3849b748c1cfc", + "fields": { + "ligne_5": "ST MICHEL DE LIVET", + "code_commune_insee": "14371", + "libelle_d_acheminement": "LIVAROT PAYS D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "LIVAROT PAYS D AUGE", + "coordonnees_gps": [ + 49.005159699, + 0.165980940625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165980940625, + 49.005159699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e65263d2d0fa8765ffd53b06144751742ad8ccdb", + "fields": { + "code_commune_insee": "24272", + "nom_de_la_commune": "MINZAC", + "code_postal": "24610", + "coordonnees_gps": [ + 44.9616610497, + 0.0299559568134 + ], + "libelle_d_acheminement": "MINZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0299559568134, + 44.9616610497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fa6f32e0a8bdcd9cffbdff47534b088fcb4ed27", + "fields": { + "code_commune_insee": "14374", + "nom_de_la_commune": "LES LOGES", + "code_postal": "14240", + "coordonnees_gps": [ + 49.0444032135, + -0.801249419422 + ], + "libelle_d_acheminement": "LES LOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.801249419422, + 49.0444032135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5cd8af6c455766dc38629b6b512d97a704b42ab", + "fields": { + "code_commune_insee": "24277", + "nom_de_la_commune": "MONFAUCON", + "code_postal": "24130", + "coordonnees_gps": [ + 44.9145875796, + 0.255669856393 + ], + "libelle_d_acheminement": "MONFAUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.255669856393, + 44.9145875796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5eeceaade180521cd01d9062e6f2ed3b242c5e1d", + "fields": { + "code_commune_insee": "14394", + "nom_de_la_commune": "MAIZIERES", + "code_postal": "14190", + "coordonnees_gps": [ + 49.0141796622, + -0.166976287789 + ], + "libelle_d_acheminement": "MAIZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.166976287789, + 49.0141796622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b275527b02292b962a883530877599557a9bd930", + "fields": { + "code_commune_insee": "24282", + "nom_de_la_commune": "MONSAGUEL", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7389162676, + 0.571474458124 + ], + "libelle_d_acheminement": "MONSAGUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.571474458124, + 44.7389162676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3d5e2a58e9927d7902cc82d40ff03d37f634d70", + "fields": { + "code_commune_insee": "14404", + "nom_de_la_commune": "MARTAINVILLE", + "code_postal": "14220", + "coordonnees_gps": [ + 48.9474686277, + -0.350260817596 + ], + "libelle_d_acheminement": "MARTAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.350260817596, + 48.9474686277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c035edba6902b7453eb646f2f80a9b1b7ce1dbce", + "fields": { + "code_commune_insee": "24288", + "nom_de_la_commune": "MONTAZEAU", + "code_postal": "24230", + "coordonnees_gps": [ + 44.902644776, + 0.130890418216 + ], + "libelle_d_acheminement": "MONTAZEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.130890418216, + 44.902644776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "845689b1b0536fa80dec18bbd78fddfbd124a229", + "fields": { + "code_commune_insee": "14407", + "nom_de_la_commune": "MATHIEU", + "code_postal": "14920", + "coordonnees_gps": [ + 49.2562339956, + -0.366730572403 + ], + "libelle_d_acheminement": "MATHIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.366730572403, + 49.2562339956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef2595441f977a4acd8cb6157bdd0a5c0896163b", + "fields": { + "code_commune_insee": "24289", + "nom_de_la_commune": "MONTCARET", + "code_postal": "24230", + "coordonnees_gps": [ + 44.8618483354, + 0.0660005005906 + ], + "libelle_d_acheminement": "MONTCARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0660005005906, + 44.8618483354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b865ddae84f0339bde48cf6a1e75dc1296afa42", + "fields": { + "ligne_5": "BISSIERES", + "code_commune_insee": "14410", + "libelle_d_acheminement": "MERY BISSIERES EN AUGE", + "code_postal": "14370", + "nom_de_la_commune": "MERY BISSIERES EN AUGE", + "coordonnees_gps": [ + 49.1315507489, + -0.0746479739995 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0746479739995, + 49.1315507489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2be7073592d338ceb48386271ea38b7900bea5e3", + "fields": { + "code_commune_insee": "24293", + "nom_de_la_commune": "MONPLAISANT", + "code_postal": "24170", + "coordonnees_gps": [ + 44.7933486992, + 0.995152605862 + ], + "libelle_d_acheminement": "MONPLAISANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.995152605862, + 44.7933486992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dfb288fc0b05f20a75b51aadc796d8432241b9d", + "fields": { + "ligne_5": "MERY CORBON", + "code_commune_insee": "14410", + "libelle_d_acheminement": "MERY BISSIERES EN AUGE", + "code_postal": "14370", + "nom_de_la_commune": "MERY BISSIERES EN AUGE", + "coordonnees_gps": [ + 49.1315507489, + -0.0746479739995 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0746479739995, + 49.1315507489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0c7e679cc4b28bec1150ece833303f535a5f93e", + "fields": { + "code_commune_insee": "24295", + "nom_de_la_commune": "MONTREM", + "code_postal": "24110", + "coordonnees_gps": [ + 45.1310326965, + 0.58097170515 + ], + "libelle_d_acheminement": "MONTREM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58097170515, + 45.1310326965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb6bb9bb309c5cc27b349a6ab24b06709574ffdd", + "fields": { + "code_commune_insee": "14412", + "nom_de_la_commune": "LE MESNIL AU GRAIN", + "code_postal": "14260", + "coordonnees_gps": [ + 49.0467992669, + -0.606121307613 + ], + "libelle_d_acheminement": "LE MESNIL AU GRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.606121307613, + 49.0467992669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05c060b387eecfe906cf3b1e5f5bbc70cbef77bc", + "fields": { + "code_commune_insee": "24299", + "nom_de_la_commune": "MUSSIDAN", + "code_postal": "24400", + "coordonnees_gps": [ + 45.0296732356, + 0.364777087199 + ], + "libelle_d_acheminement": "MUSSIDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.364777087199, + 45.0296732356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b6b65e935fd878e67398776cf7cced703ed2441", + "fields": { + "code_commune_insee": "14426", + "nom_de_la_commune": "LE MESNIL SUR BLANGY", + "code_postal": "14130", + "coordonnees_gps": [ + 49.2595243271, + 0.261073976764 + ], + "libelle_d_acheminement": "LE MESNIL SUR BLANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.261073976764, + 49.2595243271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a24f3d2202c4eeeb399185d0bc47e9842e7eee7", + "fields": { + "code_commune_insee": "24309", + "nom_de_la_commune": "NEUVIC", + "code_postal": "24190", + "coordonnees_gps": [ + 45.0893401063, + 0.466172128928 + ], + "libelle_d_acheminement": "NEUVIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.466172128928, + 45.0893401063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "399db0a75732d7131652118019b80201aab7fe41", + "fields": { + "ligne_5": "LECAUDE", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14140", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbbc58ba6e199ba1aff4c1177f74f229c7b9a40f", + "fields": { + "code_commune_insee": "24322", + "nom_de_la_commune": "PERIGUEUX", + "code_postal": "24000", + "coordonnees_gps": [ + 45.1918704873, + 0.711825549847 + ], + "libelle_d_acheminement": "PERIGUEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.711825549847, + 45.1918704873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46dff871a2612aff7a87c0c8014a9ef181e99541", + "fields": { + "ligne_5": "CANON", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14270", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d44984ce73aadb376a6d8e57fd550a21283cd58", + "fields": { + "code_commune_insee": "24326", + "nom_de_la_commune": "PEYZAC LE MOUSTIER", + "code_postal": "24620", + "coordonnees_gps": [ + 44.9822248475, + 1.07992123223 + ], + "libelle_d_acheminement": "PEYZAC LE MOUSTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07992123223, + 44.9822248475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be7060cf09935c688e7164ed3d9286a0d2786cac", + "fields": { + "ligne_5": "ECAJEUL", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14270", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "020ed7e3816a748cbf05f00f02a4f75d93770b5b", + "fields": { + "code_commune_insee": "24328", + "nom_de_la_commune": "PIEGUT PLUVIERS", + "code_postal": "24360", + "coordonnees_gps": [ + 45.6318996846, + 0.699945364852 + ], + "libelle_d_acheminement": "PIEGUT PLUVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.699945364852, + 45.6318996846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f60650b3af63e789a3e030cebcd902d854411c25", + "fields": { + "ligne_5": "MEZIDON CANON", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14270", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bf94023856181404e1925e3f236f2d8e51ff0f9", + "fields": { + "code_commune_insee": "24334", + "nom_de_la_commune": "PONTOURS", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8272888569, + 0.771900914466 + ], + "libelle_d_acheminement": "PONTOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.771900914466, + 44.8272888569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a35e8a953e2d47c558f0d1fe2761a30aa47fe42", + "fields": { + "ligne_5": "STE MARIE AUX ANGLAIS", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14270", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9745bf4cd58b4820e29126bff1dc3c5e074fd4d", + "fields": { + "code_commune_insee": "24336", + "nom_de_la_commune": "PRATS DE CARLUX", + "code_postal": "24370", + "coordonnees_gps": [ + 44.8917275129, + 1.30870869193 + ], + "libelle_d_acheminement": "PRATS DE CARLUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30870869193, + 44.8917275129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e94886f542f068531f6cbabed396ac6584971cc6", + "fields": { + "ligne_5": "VIEUX FUME", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14270", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eea70c851afadd94cfb4c119718217a5b6f02d26", + "fields": { + "code_commune_insee": "24352", + "nom_de_la_commune": "RIBERAC", + "code_postal": "24600", + "coordonnees_gps": [ + 45.2457883325, + 0.334782848632 + ], + "libelle_d_acheminement": "RIBERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.334782848632, + 45.2457883325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "520d3313256740b92290654a6812a44f588847a2", + "fields": { + "ligne_5": "CREVECOEUR EN AUGE", + "code_commune_insee": "14431", + "libelle_d_acheminement": "MEZIDON VALLEE D AUGE", + "code_postal": "14340", + "nom_de_la_commune": "MEZIDON VALLEE D AUGE", + "coordonnees_gps": [ + 49.0784400196, + -0.0740245515937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0740245515937, + 49.0784400196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eebd584175e2cde4d7fc2c00ea79ddd70bba9f58", + "fields": { + "code_commune_insee": "24353", + "nom_de_la_commune": "LA ROCHEBEAUCOURT ET ARGENTINE", + "code_postal": "24340", + "coordonnees_gps": [ + 45.4660887787, + 0.382652455353 + ], + "libelle_d_acheminement": "LA ROCHEBEAUCOURT ET ARGENTINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.382652455353, + 45.4660887787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26283aebd6fca1c6822421c2f470b33eb7118c7e", + "fields": { + "code_commune_insee": "14438", + "nom_de_la_commune": "MONDRAINVILLE", + "code_postal": "14210", + "coordonnees_gps": [ + 49.1419945444, + -0.512296020857 + ], + "libelle_d_acheminement": "MONDRAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.512296020857, + 49.1419945444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed7dc233299d80edd93ce15d689a67a05a435c83", + "fields": { + "ligne_5": "ST MICHEL L ECLUSE ET LEPARON", + "code_commune_insee": "24354", + "libelle_d_acheminement": "LA ROCHE CHALAIS", + "code_postal": "24490", + "nom_de_la_commune": "LA ROCHE CHALAIS", + "coordonnees_gps": [ + 45.1355934306, + 0.0550563261049 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0550563261049, + 45.1355934306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1388d2fbc1bac1116ba2e0916ca80d0dda98a24b", + "fields": { + "code_commune_insee": "14455", + "nom_de_la_commune": "MOULINES", + "code_postal": "14220", + "coordonnees_gps": [ + 48.9921142499, + -0.347452623429 + ], + "libelle_d_acheminement": "MOULINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.347452623429, + 48.9921142499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81c03e259824fd99fbb52b636b57ab837f483c80", + "fields": { + "code_commune_insee": "24357", + "nom_de_la_commune": "ROUFFIGNAC DE SIGOULES", + "code_postal": "24240", + "coordonnees_gps": [ + 44.7794080781, + 0.444335706895 + ], + "libelle_d_acheminement": "ROUFFIGNAC DE SIGOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.444335706895, + 44.7794080781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "262936f816ce99b359ed0e316cb52a5ff1c39108", + "fields": { + "ligne_5": "CHICHEBOVILLE", + "code_commune_insee": "14456", + "libelle_d_acheminement": "MOULT CHICHEBOVILLE", + "code_postal": "14370", + "nom_de_la_commune": "MOULT CHICHEBOVILLE", + "coordonnees_gps": [ + 49.1127187184, + -0.165293838791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.165293838791, + 49.1127187184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0855282617e8ea3799500f9e8e89ff3866e93506", + "fields": { + "ligne_5": "ST LAURENT DES BATONS", + "code_commune_insee": "24362", + "libelle_d_acheminement": "VAL DE LOUYRE ET CAUDEAU", + "code_postal": "24510", + "nom_de_la_commune": "VAL DE LOUYRE ET CAUDEAU", + "coordonnees_gps": [ + 44.9471700299, + 0.810464512122 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.810464512122, + 44.9471700299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf87b4e6c952adaf85e816d4c3511124ee57e25c", + "fields": { + "code_commune_insee": "14458", + "nom_de_la_commune": "LES MOUTIERS EN CINGLAIS", + "code_postal": "14220", + "coordonnees_gps": [ + 49.0231039076, + -0.437703643826 + ], + "libelle_d_acheminement": "LES MOUTIERS EN CINGLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.437703643826, + 49.0231039076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40612a8b31e4792477562a5ccd424ef60255ab38", + "fields": { + "code_commune_insee": "24367", + "nom_de_la_commune": "ST ANDRE DE DOUBLE", + "code_postal": "24190", + "coordonnees_gps": [ + 45.1409249857, + 0.325384566649 + ], + "libelle_d_acheminement": "ST ANDRE DE DOUBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.325384566649, + 45.1409249857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cccd4b1395dc35108fd9c2e07b35a4dac5ca39ec", + "fields": { + "code_commune_insee": "14465", + "nom_de_la_commune": "NONANT", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2368440133, + -0.647728935836 + ], + "libelle_d_acheminement": "NONANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.647728935836, + 49.2368440133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fceceec2dc00f4b8965e0dd97f2d3fd23d886311", + "fields": { + "ligne_5": "ST AULAYE", + "code_commune_insee": "24376", + "libelle_d_acheminement": "ST AULAYE PUYMANGOU", + "code_postal": "24410", + "nom_de_la_commune": "ST AULAYE PUYMANGOU", + "coordonnees_gps": [ + 45.1823303924, + 0.136303399419 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.136303399419, + 45.1823303924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59c56020eae9d0fb21f69937d591758e59dec7a6", + "fields": { + "code_commune_insee": "14467", + "nom_de_la_commune": "NORON L ABBAYE", + "code_postal": "14700", + "coordonnees_gps": [ + 48.8960398002, + -0.247654065673 + ], + "libelle_d_acheminement": "NORON L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.247654065673, + 48.8960398002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ab819a46669fe533047ca67d4dae3370540d276", + "fields": { + "code_commune_insee": "24382", + "nom_de_la_commune": "ST CAPRAISE DE LALINDE", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8463175043, + 0.655294285249 + ], + "libelle_d_acheminement": "ST CAPRAISE DE LALINDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.655294285249, + 44.8463175043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7cf63ae80db97db68bf0e54ba5ac4a9d3ccd7ff", + "fields": { + "code_commune_insee": "14474", + "nom_de_la_commune": "NOTRE DAME D ESTREES CORBON", + "code_postal": "14340", + "coordonnees_gps": [ + 49.1354583044, + -0.00148553423555 + ], + "libelle_d_acheminement": "NOTRE DAME D ESTREES CORBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00148553423555, + 49.1354583044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64636f0c6a12715e796439edd8f07752e5002a6d", + "fields": { + "code_commune_insee": "24383", + "nom_de_la_commune": "ST CAPRAISE D EYMET", + "code_postal": "24500", + "coordonnees_gps": [ + 44.711179433, + 0.51051059596 + ], + "libelle_d_acheminement": "ST CAPRAISE D EYMET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51051059596, + 44.711179433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39149e87a9d0e91825064ac14f2d4f1f3a06c65c", + "fields": { + "code_commune_insee": "14487", + "nom_de_la_commune": "OUILLY LE VICOMTE", + "code_postal": "14100", + "coordonnees_gps": [ + 49.1778461306, + 0.215312555979 + ], + "libelle_d_acheminement": "OUILLY LE VICOMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.215312555979, + 49.1778461306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d0c99e4a3b29b43d9f3359fb6878c94aeacc3d8", + "fields": { + "code_commune_insee": "24390", + "nom_de_la_commune": "ST CREPIN D AUBEROCHE", + "code_postal": "24330", + "coordonnees_gps": [ + 45.1177639491, + 0.895951381831 + ], + "libelle_d_acheminement": "ST CREPIN D AUBEROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.895951381831, + 45.1177639491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "077b32e8549085c706f6efa56d2ff2833ae1ed58", + "fields": { + "code_commune_insee": "14512", + "nom_de_la_commune": "PONTECOULANT", + "code_postal": "14110", + "coordonnees_gps": [ + 48.8918716437, + -0.583734830586 + ], + "libelle_d_acheminement": "PONTECOULANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.583734830586, + 48.8918716437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3bb19b8fa8957c9e59223b4d04fd4f3b7361aee", + "fields": { + "code_commune_insee": "24399", + "nom_de_la_commune": "ST ETIENNE DE PUYCORBIER", + "code_postal": "24400", + "coordonnees_gps": [ + 45.0929275989, + 0.323452712792 + ], + "libelle_d_acheminement": "ST ETIENNE DE PUYCORBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.323452712792, + 45.0929275989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddae4643fba9db1a6349fa3843ea35680a0b36e1", + "fields": { + "ligne_5": "HUPPAIN", + "code_commune_insee": "14515", + "libelle_d_acheminement": "PORT EN BESSIN HUPPAIN", + "code_postal": "14520", + "nom_de_la_commune": "PORT EN BESSIN HUPPAIN", + "coordonnees_gps": [ + 49.3396014282, + -0.772708434394 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.772708434394, + 49.3396014282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53d3cd68b39a8467d075e61c944c5efe85b776a5", + "fields": { + "code_commune_insee": "24401", + "nom_de_la_commune": "STE EULALIE D ANS", + "code_postal": "24640", + "coordonnees_gps": [ + 45.2493030255, + 1.02147550691 + ], + "libelle_d_acheminement": "STE EULALIE D ANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02147550691, + 45.2493030255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bdaa682fee403eaaccefdf4fdd1a4cdbcde7aad", + "fields": { + "ligne_5": "BIEVILLE EN AUGE", + "code_commune_insee": "14527", + "libelle_d_acheminement": "BELLE VIE EN AUGE", + "code_postal": "14270", + "nom_de_la_commune": "BELLE VIE EN AUGE", + "coordonnees_gps": [ + 49.116121463, + -0.0357079622156 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0357079622156, + 49.116121463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7e1dd840c1a5e1fe4da123358fdf9694ad24877", + "fields": { + "code_commune_insee": "24405", + "nom_de_la_commune": "ST FELIX DE VILLADEIX", + "code_postal": "24510", + "coordonnees_gps": [ + 44.9319312699, + 0.677290095994 + ], + "libelle_d_acheminement": "ST FELIX DE VILLADEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.677290095994, + 44.9319312699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c9e7cc850cac46875772ae25e243226d4ad20e9", + "fields": { + "code_commune_insee": "14528", + "nom_de_la_commune": "QUETTEVILLE", + "code_postal": "14130", + "coordonnees_gps": [ + 49.3419911166, + 0.300133346216 + ], + "libelle_d_acheminement": "QUETTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.300133346216, + 49.3419911166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b180727db2d7c03795361f5fd6a3644b92d5f14", + "fields": { + "code_commune_insee": "24425", + "nom_de_la_commune": "ST JEAN DE COLE", + "code_postal": "24800", + "coordonnees_gps": [ + 45.4135771577, + 0.83539033285 + ], + "libelle_d_acheminement": "ST JEAN DE COLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.83539033285, + 45.4135771577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb399e0d16f23d5b8327169eab09e447f5f575b2", + "fields": { + "code_commune_insee": "14535", + "nom_de_la_commune": "REVIERS", + "code_postal": "14470", + "coordonnees_gps": [ + 49.2984627336, + -0.465691637716 + ], + "libelle_d_acheminement": "REVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.465691637716, + 49.2984627336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cbacd2cdb72f76a3275c52ce948435697888964", + "fields": { + "code_commune_insee": "24429", + "nom_de_la_commune": "ST JORY LAS BLOUX", + "code_postal": "24160", + "coordonnees_gps": [ + 45.3421390696, + 0.9470147152 + ], + "libelle_d_acheminement": "ST JORY LAS BLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9470147152, + 45.3421390696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "751402dca7d203918c9600f2c19236c4907e6b03", + "fields": { + "ligne_5": "SECQUEVILLE EN BESSIN", + "code_commune_insee": "14543", + "libelle_d_acheminement": "ROTS", + "code_postal": "14740", + "nom_de_la_commune": "ROTS", + "coordonnees_gps": [ + 49.2060587409, + -0.474725507611 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.474725507611, + 49.2060587409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c38fd29a6e5df0c1bc9ac0791fa4bd7b64951d62", + "fields": { + "code_commune_insee": "24444", + "nom_de_la_commune": "ST LOUIS EN L ISLE", + "code_postal": "24400", + "coordonnees_gps": [ + 45.0621473038, + 0.388564917962 + ], + "libelle_d_acheminement": "ST LOUIS EN L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.388564917962, + 45.0621473038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a118923c9710811fce244c099579def68b2999c5", + "fields": { + "code_commune_insee": "14556", + "nom_de_la_commune": "ST ANDRE SUR ORNE", + "code_postal": "14320", + "coordonnees_gps": [ + 49.1244015625, + -0.388404822316 + ], + "libelle_d_acheminement": "ST ANDRE SUR ORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.388404822316, + 49.1244015625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3df0ecc52ed71ed0cff7abc6a207bed9b20d4d95", + "fields": { + "code_commune_insee": "24453", + "nom_de_la_commune": "ST MARTIN DE FRESSENGEAS", + "code_postal": "24800", + "coordonnees_gps": [ + 45.4533715908, + 0.841754032741 + ], + "libelle_d_acheminement": "ST MARTIN DE FRESSENGEAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.841754032741, + 45.4533715908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e44870e401e0483f4280335d74f43a0f9284b400", + "fields": { + "code_commune_insee": "14565", + "nom_de_la_commune": "ST COME DE FRESNE", + "code_postal": "14960", + "coordonnees_gps": [ + 49.3265345546, + -0.602210066475 + ], + "libelle_d_acheminement": "ST COME DE FRESNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.602210066475, + 49.3265345546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7592a74bdb66beafb8c95b048dd4d674af98fd65", + "fields": { + "code_commune_insee": "24462", + "nom_de_la_commune": "ST MEDARD DE MUSSIDAN", + "code_postal": "24400", + "coordonnees_gps": [ + 45.0220026441, + 0.331868096414 + ], + "libelle_d_acheminement": "ST MEDARD DE MUSSIDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.331868096414, + 45.0220026441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dc3960b2e83525117abebed68bd61b4161046fa", + "fields": { + "ligne_5": "ST PIERRE DE MAILLOC", + "code_commune_insee": "14570", + "libelle_d_acheminement": "VALORBIQUET", + "code_postal": "14290", + "nom_de_la_commune": "VALORBIQUET", + "coordonnees_gps": [ + 49.0508380133, + 0.301847275517 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301847275517, + 49.0508380133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5a1cb165988fb086ac7b14b0ecc3bcca204cf85", + "fields": { + "code_commune_insee": "24476", + "nom_de_la_commune": "ST PANTALY D EXCIDEUIL", + "code_postal": "24160", + "coordonnees_gps": [ + 45.31204529, + 1.01148957185 + ], + "libelle_d_acheminement": "ST PANTALY D EXCIDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01148957185, + 45.31204529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ab66ae3c050d6a0b86ed15366ac1d7bccaa1a7d", + "fields": { + "code_commune_insee": "14572", + "nom_de_la_commune": "ST DENIS DE MERE", + "code_postal": "14110", + "coordonnees_gps": [ + 48.8648108622, + -0.503133289019 + ], + "libelle_d_acheminement": "ST DENIS DE MERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.503133289019, + 48.8648108622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21fe33ff8428c69030c8b2d30b0e3ae7bcaf607a", + "fields": { + "code_commune_insee": "24477", + "nom_de_la_commune": "ST PARDOUX DE DRONE", + "code_postal": "24600", + "coordonnees_gps": [ + 45.2231080483, + 0.419036833254 + ], + "libelle_d_acheminement": "ST PARDOUX DE DRONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.419036833254, + 45.2231080483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d9104056b86494c0cfd1be4cbd32536b217d611", + "fields": { + "ligne_5": "LA BREVIERE", + "code_commune_insee": "14576", + "libelle_d_acheminement": "VAL DE VIE", + "code_postal": "14140", + "nom_de_la_commune": "VAL DE VIE", + "coordonnees_gps": [ + 48.9587088015, + 0.163639221018 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.163639221018, + 48.9587088015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d0c4036d40fc1469f736bf5be5b753d443db594", + "fields": { + "code_commune_insee": "24481", + "nom_de_la_commune": "ST PAUL LA ROCHE", + "code_postal": "24800", + "coordonnees_gps": [ + 45.4833291569, + 0.989443506607 + ], + "libelle_d_acheminement": "ST PAUL LA ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.989443506607, + 45.4833291569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50fef408d3a7f495e537f324b037c013e7ac332e", + "fields": { + "ligne_5": "STE HONORINE DES PERTES", + "code_commune_insee": "14591", + "libelle_d_acheminement": "AURE SUR MER", + "code_postal": "14520", + "nom_de_la_commune": "AURE SUR MER", + "coordonnees_gps": [ + 49.346789785, + -0.810432609525 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.810432609525, + 49.346789785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e5229ad9ef9b90a70d0f0ab57f27fd7845dc251", + "fields": { + "code_commune_insee": "24482", + "nom_de_la_commune": "ST PAUL LIZONNE", + "code_postal": "24320", + "coordonnees_gps": [ + 45.3169310321, + 0.283269437916 + ], + "libelle_d_acheminement": "ST PAUL LIZONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.283269437916, + 45.3169310321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e2974a09cddbaf7e8c408453bb0981311e5d66d", + "fields": { + "code_commune_insee": "14592", + "nom_de_la_commune": "STE HONORINE DU FAY", + "code_postal": "14210", + "coordonnees_gps": [ + 49.0700697986, + -0.491095883025 + ], + "libelle_d_acheminement": "STE HONORINE DU FAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.491095883025, + 49.0700697986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8145566b71776773d5901131844155268cd6ec3d", + "fields": { + "code_commune_insee": "24486", + "nom_de_la_commune": "ST PIERRE DE FRUGIE", + "code_postal": "24450", + "coordonnees_gps": [ + 45.5841655969, + 1.00632128921 + ], + "libelle_d_acheminement": "ST PIERRE DE FRUGIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00632128921, + 45.5841655969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a88bdd36ea9bf168c3d0032e4b32696a1d95e639", + "fields": { + "code_commune_insee": "14603", + "nom_de_la_commune": "ST LAURENT DE CONDEL", + "code_postal": "14220", + "coordonnees_gps": [ + 49.0261365757, + -0.394821606161 + ], + "libelle_d_acheminement": "ST LAURENT DE CONDEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.394821606161, + 49.0261365757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "014608363ff6c12510e0cc3b4001d0992a190154", + "fields": { + "code_commune_insee": "24496", + "nom_de_la_commune": "ST ROMAIN ET ST CLEMENT", + "code_postal": "24800", + "coordonnees_gps": [ + 45.4243804635, + 0.872078702147 + ], + "libelle_d_acheminement": "ST ROMAIN ET ST CLEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.872078702147, + 45.4243804635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1b031e3422ad29c711dce4ef5ff8b5d1c82cbee", + "fields": { + "code_commune_insee": "14605", + "nom_de_la_commune": "ST LAURENT SUR MER", + "code_postal": "14710", + "coordonnees_gps": [ + 49.3577049946, + -0.876012116729 + ], + "libelle_d_acheminement": "ST LAURENT SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.876012116729, + 49.3577049946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "185c7107caca082498ceb68e72f84308212d06b1", + "fields": { + "code_commune_insee": "24517", + "nom_de_la_commune": "SALLES DE BELVES", + "code_postal": "24170", + "coordonnees_gps": [ + 44.7165357238, + 0.998995067473 + ], + "libelle_d_acheminement": "SALLES DE BELVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.998995067473, + 44.7165357238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "421ea0ea0b8c2bc12f048a0ac11efefcf8476549", + "fields": { + "code_commune_insee": "14609", + "nom_de_la_commune": "ST LOUP HORS", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2602090731, + -0.730457240474 + ], + "libelle_d_acheminement": "ST LOUP HORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730457240474, + 49.2602090731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4aad6988cab061ebc51b38ee9dd53f8ff7579077", + "fields": { + "code_commune_insee": "24520", + "nom_de_la_commune": "SARLAT LA CANEDA", + "code_postal": "24200", + "coordonnees_gps": [ + 44.8983558068, + 1.2066486429 + ], + "libelle_d_acheminement": "SARLAT LA CANEDA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2066486429, + 44.8983558068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a23ae2742175a4bf2e20b1a803c38bde111d509", + "fields": { + "code_commune_insee": "14623", + "nom_de_la_commune": "ST MARTIN DE FONTENAY", + "code_postal": "14320", + "coordonnees_gps": [ + 49.1146147135, + -0.351793766031 + ], + "libelle_d_acheminement": "ST MARTIN DE FONTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.351793766031, + 49.1146147135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc0fdb5358a01f2e752fa9411187b22b8dbbe913", + "fields": { + "code_commune_insee": "24522", + "nom_de_la_commune": "SARRAZAC", + "code_postal": "24800", + "coordonnees_gps": [ + 45.4378608397, + 1.0348457868 + ], + "libelle_d_acheminement": "SARRAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0348457868, + 45.4378608397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ae2885212af8d67d1bcfcc26a768f75fe579d02", + "fields": { + "code_commune_insee": "14645", + "nom_de_la_commune": "ST PIERRE AZIF", + "code_postal": "14950", + "coordonnees_gps": [ + 49.292775444, + 0.0372567744774 + ], + "libelle_d_acheminement": "ST PIERRE AZIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0372567744774, + 49.292775444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6e03201853cb1c72217d12c1dadaf59972cd819", + "fields": { + "code_commune_insee": "24549", + "nom_de_la_commune": "THENAC", + "code_postal": "24240", + "coordonnees_gps": [ + 44.7458412342, + 0.354889717281 + ], + "libelle_d_acheminement": "THENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.354889717281, + 44.7458412342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "419b4e701714639c614e28507a45d659e8420a88", + "fields": { + "code_commune_insee": "14649", + "nom_de_la_commune": "ST PIERRE DU BU", + "code_postal": "14700", + "coordonnees_gps": [ + 48.8646040738, + -0.204189427047 + ], + "libelle_d_acheminement": "ST PIERRE DU BU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.204189427047, + 48.8646040738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cc28b368b3bdfab1b5715d0f384e719de212e55", + "fields": { + "ligne_5": "CERCLES", + "code_commune_insee": "24554", + "libelle_d_acheminement": "LA TOUR BLANCHE CERCLES", + "code_postal": "24320", + "nom_de_la_commune": "LA TOUR BLANCHE CERCLES", + "coordonnees_gps": [ + 45.3671927431, + 0.426955885949 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.426955885949, + 45.3671927431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13ae5d68977a77d10b1e6b64d2bbabc9eeaaec99", + "fields": { + "code_commune_insee": "14651", + "nom_de_la_commune": "ST PIERRE DU JONQUET", + "code_postal": "14670", + "coordonnees_gps": [ + 49.1658152003, + -0.139476122836 + ], + "libelle_d_acheminement": "ST PIERRE DU JONQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.139476122836, + 49.1658152003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2071d783dbd067d00a94016fb038d707793d6766", + "fields": { + "code_commune_insee": "24557", + "nom_de_la_commune": "TRELISSAC", + "code_postal": "24750", + "coordonnees_gps": [ + 45.2097381668, + 0.778416322658 + ], + "libelle_d_acheminement": "TRELISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.778416322658, + 45.2097381668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "911378d10349808ed28e1f2666a97e700ad6dd4f", + "fields": { + "ligne_5": "STE MARGUERITE DE VIETTE", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14140", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc8126b2983bbf05aa1e3b48fa544bb7093455ab", + "fields": { + "code_commune_insee": "24563", + "nom_de_la_commune": "VALOJOULX", + "code_postal": "24290", + "coordonnees_gps": [ + 45.0168357588, + 1.14780270034 + ], + "libelle_d_acheminement": "VALOJOULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14780270034, + 45.0168357588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe1862cdadeb29ccfb7fac790cb91e5a16ee7316", + "fields": { + "ligne_5": "BRETTEVILLE SUR DIVES", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62cac8692fda33f2e2f832b1649b4893af0cd87a", + "fields": { + "code_commune_insee": "24564", + "nom_de_la_commune": "VANXAINS", + "code_postal": "24600", + "coordonnees_gps": [ + 45.2121494971, + 0.28978883887 + ], + "libelle_d_acheminement": "VANXAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28978883887, + 45.2121494971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43377ff73beb399c7611eec26f685b0302ca1e18", + "fields": { + "ligne_5": "LIEURY", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "415c3ac40e0dd30e4e716067182d0e71a49bae79", + "fields": { + "code_commune_insee": "24569", + "nom_de_la_commune": "VENDOIRE", + "code_postal": "24320", + "coordonnees_gps": [ + 45.4123053163, + 0.288800712815 + ], + "libelle_d_acheminement": "VENDOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.288800712815, + 45.4123053163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d02cdc0eaef22dee780bf50b1a509c9af670ea8a", + "fields": { + "ligne_5": "ST PIERRE SUR DIVES", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37fef4eb27252a1ecb7e70b438ae7f5ea75fef78", + "fields": { + "code_commune_insee": "24576", + "nom_de_la_commune": "VEYRINES DE VERGT", + "code_postal": "24380", + "coordonnees_gps": [ + 44.9902399091, + 0.77321349644 + ], + "libelle_d_acheminement": "VEYRINES DE VERGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77321349644, + 44.9902399091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17baca749e0c0fa31b5c3a997557b3859827f707", + "fields": { + "ligne_5": "THIEVILLE", + "code_commune_insee": "14654", + "libelle_d_acheminement": "ST PIERRE EN AUGE", + "code_postal": "14170", + "nom_de_la_commune": "ST PIERRE EN AUGE", + "coordonnees_gps": [ + 49.0158504483, + -0.0407749520168 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0407749520168, + 49.0158504483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a1492f05b054328cad4b010ed4cdfca013b3e97", + "fields": { + "code_commune_insee": "25007", + "nom_de_la_commune": "ADAM LES VERCEL", + "code_postal": "25530", + "coordonnees_gps": [ + 47.1623507424, + 6.39047378128 + ], + "libelle_d_acheminement": "ADAM LES VERCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39047378128, + 47.1623507424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67cb8d29684aeebe5b0ca7a0be62853f0f803014", + "fields": { + "ligne_5": "CHAMP DU BOULT", + "code_commune_insee": "14658", + "libelle_d_acheminement": "NOUES DE SIENNE", + "code_postal": "14380", + "nom_de_la_commune": "NOUES DE SIENNE", + "coordonnees_gps": [ + 48.8217597918, + -1.04661139436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04661139436, + 48.8217597918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23139018f42e24462d0ae37169689313c6cbf160", + "fields": { + "code_commune_insee": "25015", + "nom_de_la_commune": "AMANCEY", + "code_postal": "25330", + "coordonnees_gps": [ + 47.0311972081, + 6.07639327081 + ], + "libelle_d_acheminement": "AMANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07639327081, + 47.0311972081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "060ded21b8c9e0dd75dcfe8b2a36a6fb24571d22", + "fields": { + "ligne_5": "COURSON", + "code_commune_insee": "14658", + "libelle_d_acheminement": "NOUES DE SIENNE", + "code_postal": "14380", + "nom_de_la_commune": "NOUES DE SIENNE", + "coordonnees_gps": [ + 48.8217597918, + -1.04661139436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04661139436, + 48.8217597918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bc81a4026a07d7c7bcff77cec2054f5c45f5820", + "fields": { + "code_commune_insee": "25019", + "nom_de_la_commune": "APPENANS", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4512206188, + 6.56926667052 + ], + "libelle_d_acheminement": "APPENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56926667052, + 47.4512206188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f74d16f5a41931af6e26fb2a3e96543831e1af0", + "fields": { + "ligne_5": "LE MESNIL BENOIST", + "code_commune_insee": "14658", + "libelle_d_acheminement": "NOUES DE SIENNE", + "code_postal": "14380", + "nom_de_la_commune": "NOUES DE SIENNE", + "coordonnees_gps": [ + 48.8217597918, + -1.04661139436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04661139436, + 48.8217597918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bee72be226cded9f70d3b7d623a51d68a6f29a54", + "fields": { + "code_commune_insee": "25038", + "nom_de_la_commune": "AVILLEY", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4289797534, + 6.26888707781 + ], + "libelle_d_acheminement": "AVILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26888707781, + 47.4289797534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac2c8b489cf158c6b860913efbdd28bc80bf5f7a", + "fields": { + "ligne_5": "SEPT FRERES", + "code_commune_insee": "14658", + "libelle_d_acheminement": "NOUES DE SIENNE", + "code_postal": "14380", + "nom_de_la_commune": "NOUES DE SIENNE", + "coordonnees_gps": [ + 48.8217597918, + -1.04661139436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04661139436, + 48.8217597918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb568457f198d6a3e5cd6e17a134e9a48ee7d5b4", + "fields": { + "code_commune_insee": "25043", + "nom_de_la_commune": "BART", + "code_postal": "25420", + "coordonnees_gps": [ + 47.4914667979, + 6.76751047027 + ], + "libelle_d_acheminement": "BART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76751047027, + 47.4914667979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "215a9195cad9f6820885590cc1292561ff7bdc61", + "fields": { + "ligne_5": "ST MANVIEU BOCAGE", + "code_commune_insee": "14658", + "libelle_d_acheminement": "NOUES DE SIENNE", + "code_postal": "14380", + "nom_de_la_commune": "NOUES DE SIENNE", + "coordonnees_gps": [ + 48.8217597918, + -1.04661139436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04661139436, + 48.8217597918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "730a39eece3f1d8b82c91392da37dbce8c32e693", + "fields": { + "code_commune_insee": "25051", + "nom_de_la_commune": "BELLEHERBE", + "code_postal": "25380", + "coordonnees_gps": [ + 47.2636257295, + 6.65161515081 + ], + "libelle_d_acheminement": "BELLEHERBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65161515081, + 47.2636257295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a89b8763929ee36a31d207ac318542c1bb7b8c5", + "fields": { + "code_commune_insee": "14659", + "nom_de_la_commune": "ST SYLVAIN", + "code_postal": "14190", + "coordonnees_gps": [ + 49.0531521208, + -0.215598170882 + ], + "libelle_d_acheminement": "ST SYLVAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.215598170882, + 49.0531521208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "189842f8abead4d5652a4b26fa2cf73e874ed243", + "fields": { + "code_commune_insee": "25056", + "nom_de_la_commune": "BESANCON", + "code_postal": "25000", + "coordonnees_gps": [ + 47.2553872249, + 6.01948696494 + ], + "libelle_d_acheminement": "BESANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01948696494, + 47.2553872249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8b257f80f6b30ed1fe9d0f8f6a0531733f1556b", + "fields": { + "code_commune_insee": "14663", + "nom_de_la_commune": "ST VIGOR LE GRAND", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2877194467, + -0.676858813101 + ], + "libelle_d_acheminement": "ST VIGOR LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.676858813101, + 49.2877194467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18d6d8ecd73cfb59f8ce2d0e4263eb6e323a4234", + "fields": { + "code_commune_insee": "25058", + "nom_de_la_commune": "BEURE", + "code_postal": "25720", + "coordonnees_gps": [ + 47.2060766708, + 6.00526129105 + ], + "libelle_d_acheminement": "BEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00526129105, + 47.2060766708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80425679ccc064c7f0ccfcfa4a31862d1753a132", + "fields": { + "code_commune_insee": "14674", + "nom_de_la_commune": "SOIGNOLLES", + "code_postal": "14190", + "coordonnees_gps": [ + 49.0293562485, + -0.216616984997 + ], + "libelle_d_acheminement": "SOIGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.216616984997, + 49.0293562485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be9837dd1f522a6bc914fe157eb58ed198753b1d", + "fields": { + "code_commune_insee": "25059", + "nom_de_la_commune": "BEUTAL", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4748011239, + 6.63576492619 + ], + "libelle_d_acheminement": "BEUTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63576492619, + 47.4748011239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7ff4c8929b786fabf0bce5afc75e49af4288914", + "fields": { + "code_commune_insee": "14675", + "nom_de_la_commune": "SOLIERS", + "code_postal": "14540", + "coordonnees_gps": [ + 49.1315274797, + -0.287622280265 + ], + "libelle_d_acheminement": "SOLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.287622280265, + 49.1315274797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae773f59b8e977c2fc30c33313d6b4cde479c920", + "fields": { + "code_commune_insee": "25060", + "nom_de_la_commune": "BIANS LES USIERS", + "code_postal": "25520", + "coordonnees_gps": [ + 46.9636846209, + 6.27269283538 + ], + "libelle_d_acheminement": "BIANS LES USIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27269283538, + 46.9636846209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38382fc7c80558ecaec0cb56660d2f1429f51ca7", + "fields": { + "code_commune_insee": "14682", + "nom_de_la_commune": "SURVILLE", + "code_postal": "14130", + "coordonnees_gps": [ + 49.3028988613, + 0.223364343411 + ], + "libelle_d_acheminement": "SURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.223364343411, + 49.3028988613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77ea64959a0adfb7f9c787ac78fe702a3bf0a215", + "fields": { + "code_commune_insee": "25066", + "nom_de_la_commune": "BLUSSANGEAUX", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4352037788, + 6.61831164486 + ], + "libelle_d_acheminement": "BLUSSANGEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61831164486, + 47.4352037788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a1a41fe4121379e6025ab8fab23bc8adbe8f75e", + "fields": { + "ligne_5": "CAUMONT SUR ORNE", + "code_commune_insee": "14689", + "libelle_d_acheminement": "LE HOM", + "code_postal": "14220", + "nom_de_la_commune": "LE HOM", + "coordonnees_gps": [ + 48.9864514562, + -0.485109067102 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.485109067102, + 48.9864514562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d20bdc937f3d2235d6dda9387cc1d17995597442", + "fields": { + "code_commune_insee": "25075", + "nom_de_la_commune": "BONNEVAUX", + "code_postal": "25560", + "coordonnees_gps": [ + 46.8091056758, + 6.19702516593 + ], + "libelle_d_acheminement": "BONNEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19702516593, + 46.8091056758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c65be5f5031845a2b4a23465a4ec8a874454cc4", + "fields": { + "ligne_5": "HAMARS", + "code_commune_insee": "14689", + "libelle_d_acheminement": "LE HOM", + "code_postal": "14220", + "nom_de_la_commune": "LE HOM", + "coordonnees_gps": [ + 48.9864514562, + -0.485109067102 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.485109067102, + 48.9864514562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1cbf3bb2b7ee553b1d95f560ffbf3d2c774e5d9", + "fields": { + "ligne_5": "VAUCHAMPS", + "code_commune_insee": "25078", + "libelle_d_acheminement": "BOUCLANS", + "code_postal": "25360", + "nom_de_la_commune": "BOUCLANS", + "coordonnees_gps": [ + 47.2413584714, + 6.23301360703 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23301360703, + 47.2413584714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de70ca2d24ed64ea60688072f77c346e45a25081", + "fields": { + "ligne_5": "ST MARTIN DE SALLEN", + "code_commune_insee": "14689", + "libelle_d_acheminement": "LE HOM", + "code_postal": "14220", + "nom_de_la_commune": "LE HOM", + "coordonnees_gps": [ + 48.9864514562, + -0.485109067102 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.485109067102, + 48.9864514562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7b091f1b478fde9c53b468b2052149948ee76e7", + "fields": { + "code_commune_insee": "25083", + "nom_de_la_commune": "BOURNOIS", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4883948482, + 6.49638983869 + ], + "libelle_d_acheminement": "BOURNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49638983869, + 47.4883948482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48e4ccdddcb7215d8d1abddf73fc26a02c4605b8", + "fields": { + "code_commune_insee": "14692", + "nom_de_la_commune": "TILLY SUR SEULLES", + "code_postal": "14250", + "coordonnees_gps": [ + 49.1718691291, + -0.62341766889 + ], + "libelle_d_acheminement": "TILLY SUR SEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62341766889, + 49.1718691291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d0a82ff9ce377bd3a9fcd2ac2fe9a4b876f9359", + "fields": { + "code_commune_insee": "25087", + "nom_de_la_commune": "BRANNE", + "code_postal": "25340", + "coordonnees_gps": [ + 47.3794678972, + 6.47979347027 + ], + "libelle_d_acheminement": "BRANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47979347027, + 47.3794678972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72595206c5b72be17bcaaf39c1161ca51df0f6b5", + "fields": { + "code_commune_insee": "14699", + "nom_de_la_commune": "TOUQUES", + "code_postal": "14800", + "coordonnees_gps": [ + 49.353602734, + 0.112669944999 + ], + "libelle_d_acheminement": "TOUQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.112669944999, + 49.353602734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73d543507b7c80734f05c1b395601b4ea43bff85", + "fields": { + "code_commune_insee": "25089", + "nom_de_la_commune": "BREMONDANS", + "code_postal": "25530", + "coordonnees_gps": [ + 47.231963581, + 6.3971630777 + ], + "libelle_d_acheminement": "BREMONDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3971630777, + 47.231963581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbc1c989b76edc19be47aa2fa8029ac29cac0535", + "fields": { + "code_commune_insee": "14701", + "nom_de_la_commune": "TOURGEVILLE", + "code_postal": "14800", + "coordonnees_gps": [ + 49.3179026019, + 0.0798157742255 + ], + "libelle_d_acheminement": "TOURGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0798157742255, + 49.3179026019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "956b38b2d5b52b77b421dffb1b408d7010f0d14a", + "fields": { + "code_commune_insee": "25091", + "nom_de_la_commune": "LES BRESEUX", + "code_postal": "25120", + "coordonnees_gps": [ + 47.2746972567, + 6.80149118385 + ], + "libelle_d_acheminement": "LES BRESEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80149118385, + 47.2746972567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c882bfbd0359444a786dc78a667e260c6ead5abe", + "fields": { + "code_commune_insee": "14706", + "nom_de_la_commune": "TOURVILLE EN AUGE", + "code_postal": "14130", + "coordonnees_gps": [ + 49.3197258498, + 0.195138987607 + ], + "libelle_d_acheminement": "TOURVILLE EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.195138987607, + 49.3197258498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bb3828761835ab6cb236ea680f4659d49750247", + "fields": { + "code_commune_insee": "25095", + "nom_de_la_commune": "BRETONVILLERS", + "code_postal": "25380", + "coordonnees_gps": [ + 47.2158579813, + 6.61718921929 + ], + "libelle_d_acheminement": "BRETONVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61718921929, + 47.2158579813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9dfc8604d6a217beb33c04340e355e04dc60c80", + "fields": { + "code_commune_insee": "14707", + "nom_de_la_commune": "TOURVILLE SUR ODON", + "code_postal": "14210", + "coordonnees_gps": [ + 49.1370651902, + -0.500682712982 + ], + "libelle_d_acheminement": "TOURVILLE SUR ODON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.500682712982, + 49.1370651902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7f62d622ba6c2f24c0c1db3955ec6fdc9eac7d5", + "fields": { + "code_commune_insee": "25096", + "nom_de_la_commune": "BREY ET MAISON DU BOIS", + "code_postal": "25240", + "coordonnees_gps": [ + 46.7468077071, + 6.24254842118 + ], + "libelle_d_acheminement": "BREY ET MAISON DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24254842118, + 46.7468077071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "557525ac1fa4f71cf1bee1278ca7012080311125", + "fields": { + "ligne_5": "GOUPILLIERES", + "code_commune_insee": "14713", + "libelle_d_acheminement": "MONTILLIERES SUR ORNE", + "code_postal": "14210", + "nom_de_la_commune": "MONTILLIERES SUR ORNE", + "coordonnees_gps": [ + 49.0488456416, + -0.479036744908 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479036744908, + 49.0488456416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "288e6ee8c2150727833930651ef0cb885e82a70c", + "fields": { + "ligne_5": "CHAZOY", + "code_commune_insee": "25101", + "libelle_d_acheminement": "BURGILLE", + "code_postal": "25170", + "nom_de_la_commune": "BURGILLE", + "coordonnees_gps": [ + 47.2616950181, + 5.7819919512 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7819919512, + 47.2616950181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bffbc1b5be3351bf01533dbe43859c338e0bc08", + "fields": { + "code_commune_insee": "14716", + "nom_de_la_commune": "TRUNGY", + "code_postal": "14490", + "coordonnees_gps": [ + 49.1936866317, + -0.722397448796 + ], + "libelle_d_acheminement": "TRUNGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.722397448796, + 49.1936866317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27819b108e91e64f17346a637e783d60fc27fbba", + "fields": { + "ligne_5": "CORDIRON", + "code_commune_insee": "25101", + "libelle_d_acheminement": "BURGILLE", + "code_postal": "25170", + "nom_de_la_commune": "BURGILLE", + "coordonnees_gps": [ + 47.2616950181, + 5.7819919512 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7819919512, + 47.2616950181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4255c9bf11e19413d73415fa19ff74f2c1bc19ed", + "fields": { + "code_commune_insee": "14719", + "nom_de_la_commune": "URVILLE", + "code_postal": "14190", + "coordonnees_gps": [ + 49.025159713, + -0.29441724721 + ], + "libelle_d_acheminement": "URVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.29441724721, + 49.025159713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c93a24879a1d2fc1483d6dd9529d792971bf8d7e", + "fields": { + "code_commune_insee": "25108", + "nom_de_la_commune": "CERNAY L EGLISE", + "code_postal": "25120", + "coordonnees_gps": [ + 47.2506553278, + 6.83349587828 + ], + "libelle_d_acheminement": "CERNAY L EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83349587828, + 47.2506553278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8b5ccccce8f59091170ba6995450efb606d5076", + "fields": { + "code_commune_insee": "14720", + "nom_de_la_commune": "USSY", + "code_postal": "14420", + "coordonnees_gps": [ + 48.9460697102, + -0.290005556569 + ], + "libelle_d_acheminement": "USSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.290005556569, + 48.9460697102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "585c3825d626b4d5c1926e94056a89ab973ba6ff", + "fields": { + "code_commune_insee": "25110", + "nom_de_la_commune": "CHAFFOIS", + "code_postal": "25300", + "coordonnees_gps": [ + 46.9171603801, + 6.25633927954 + ], + "libelle_d_acheminement": "CHAFFOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25633927954, + 46.9171603801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d8707b9f0b3ea8af292c0ea267b738e23bec1a7", + "fields": { + "code_commune_insee": "14721", + "nom_de_la_commune": "VACOGNES NEUILLY", + "code_postal": "14210", + "coordonnees_gps": [ + 49.085434169, + -0.534237961822 + ], + "libelle_d_acheminement": "VACOGNES NEUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.534237961822, + 49.085434169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a45ecafebd495fb7c7d78df77f5640eb37fe74ce", + "fields": { + "code_commune_insee": "25111", + "nom_de_la_commune": "CHALEZE", + "code_postal": "25220", + "coordonnees_gps": [ + 47.261122307, + 6.09541799233 + ], + "libelle_d_acheminement": "CHALEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09541799233, + 47.261122307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed79976dd6a4946c856a295c29fb08805c08b497", + "fields": { + "ligne_5": "LE DESERT", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14350", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e8f482ebf246bb1a8ecbbc032e35c12425eaf09", + "fields": { + "code_commune_insee": "25119", + "nom_de_la_commune": "CHAMPVANS LES MOULINS", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2566266106, + 5.90746432732 + ], + "libelle_d_acheminement": "CHAMPVANS LES MOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90746432732, + 47.2566266106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "878cac5b7cbbc9d26e6824d14cc3455c6c5db805", + "fields": { + "ligne_5": "BERNIERES LE PATRY", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14410", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "707d2d24bdc1c8e61013796144baa7f5d34a6714", + "fields": { + "code_commune_insee": "25125", + "nom_de_la_commune": "CHARMOILLE", + "code_postal": "25380", + "coordonnees_gps": [ + 47.2394562597, + 6.66850732349 + ], + "libelle_d_acheminement": "CHARMOILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66850732349, + 47.2394562597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5125df291c0058d90901c88228a7b99771d1892d", + "fields": { + "ligne_5": "CHENEDOLLE", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14410", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59dc3af23fbff42797b5cca94d70b14fb78c2d9f", + "fields": { + "code_commune_insee": "25126", + "nom_de_la_commune": "CHARNAY", + "code_postal": "25440", + "coordonnees_gps": [ + 47.128142281, + 5.95023128953 + ], + "libelle_d_acheminement": "CHARNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95023128953, + 47.128142281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab0569731f53a1031b02ba5a83886aa775b1af97", + "fields": { + "ligne_5": "PIERRES", + "code_commune_insee": "14726", + "libelle_d_acheminement": "VALDALLIERE", + "code_postal": "14410", + "nom_de_la_commune": "VALDALLIERE", + "coordonnees_gps": [ + 48.8636010778, + -0.658303472061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.658303472061, + 48.8636010778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "048c3bb61ed9b5a18dc2e1f56a689e8750827c15", + "fields": { + "code_commune_insee": "25141", + "nom_de_la_commune": "CHAUX LES PASSAVANT", + "code_postal": "25530", + "coordonnees_gps": [ + 47.23589775, + 6.35007228666 + ], + "libelle_d_acheminement": "CHAUX LES PASSAVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35007228666, + 47.23589775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2a4aaf1996226ce408fe7fbbaaa2cf0381be119", + "fields": { + "code_commune_insee": "14738", + "nom_de_la_commune": "VERSON", + "code_postal": "14790", + "coordonnees_gps": [ + 49.1637623946, + -0.463308814178 + ], + "libelle_d_acheminement": "VERSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.463308814178, + 49.1637623946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cfe32393c987cde9f184df1636c8485db5bcece", + "fields": { + "ligne_5": "CHEMAUDIN", + "code_commune_insee": "25147", + "libelle_d_acheminement": "CHEMAUDIN ET VAUX", + "code_postal": "25320", + "nom_de_la_commune": "CHEMAUDIN ET VAUX", + "coordonnees_gps": [ + 47.2179705804, + 5.89261031415 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89261031415, + 47.2179705804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cf6a50af38e44ba6ebbbc7ca0e26904501498f0", + "fields": { + "code_commune_insee": "14744", + "nom_de_la_commune": "VIENNE EN BESSIN", + "code_postal": "14400", + "coordonnees_gps": [ + 49.2812059817, + -0.627760995032 + ], + "libelle_d_acheminement": "VIENNE EN BESSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.627760995032, + 49.2812059817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28703271c56cf4af143efa97257918629e9d3fa7", + "fields": { + "ligne_5": "VAUX LES PRES", + "code_commune_insee": "25147", + "libelle_d_acheminement": "CHEMAUDIN ET VAUX", + "code_postal": "25770", + "nom_de_la_commune": "CHEMAUDIN ET VAUX", + "coordonnees_gps": [ + 47.2179705804, + 5.89261031415 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89261031415, + 47.2179705804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99ac4b389532697ce6b1abd764a77d689e458251", + "fields": { + "code_commune_insee": "14752", + "nom_de_la_commune": "VILLERS BOCAGE", + "code_postal": "14310", + "coordonnees_gps": [ + 49.0782420975, + -0.652664428102 + ], + "libelle_d_acheminement": "VILLERS BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.652664428102, + 49.0782420975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dc6e166c4c9f304ee61474c07488bcf87541a5a", + "fields": { + "code_commune_insee": "25149", + "nom_de_la_commune": "CHENECEY BUILLON", + "code_postal": "25440", + "coordonnees_gps": [ + 47.138479482, + 5.97528493565 + ], + "libelle_d_acheminement": "CHENECEY BUILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97528493565, + 47.138479482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5a0a483fd4820c20a4a1093fc7df49501b9b163", + "fields": { + "code_commune_insee": "14753", + "nom_de_la_commune": "VILLERS CANIVET", + "code_postal": "14420", + "coordonnees_gps": [ + 48.9336012913, + -0.261312485378 + ], + "libelle_d_acheminement": "VILLERS CANIVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.261312485378, + 48.9336012913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb0574dfdca1351793e9a98a57c277a85df1aedb", + "fields": { + "code_commune_insee": "25151", + "nom_de_la_commune": "CHEVIGNEY LES VERCEL", + "code_postal": "25530", + "coordonnees_gps": [ + 47.1651371592, + 6.36768229649 + ], + "libelle_d_acheminement": "CHEVIGNEY LES VERCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36768229649, + 47.1651371592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93c9c60786ebbd871a5984cd3f296e33674ecc78", + "fields": { + "code_commune_insee": "14758", + "nom_de_la_commune": "VILLONS LES BUISSONS", + "code_postal": "14610", + "coordonnees_gps": [ + 49.2361922294, + -0.411267584761 + ], + "libelle_d_acheminement": "VILLONS LES BUISSONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.411267584761, + 49.2361922294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0e26b441c1b9c2cdfe33407e6a1f5fe1bfabb98", + "fields": { + "code_commune_insee": "25153", + "nom_de_la_commune": "CHEVROZ", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3313541877, + 5.99948362535 + ], + "libelle_d_acheminement": "CHEVROZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99948362535, + 47.3313541877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bfc971fa01767f56b7af174fce2bf994503b227", + "fields": { + "ligne_5": "COULONCES", + "code_commune_insee": "14762", + "libelle_d_acheminement": "VIRE NORMANDIE", + "code_postal": "14500", + "nom_de_la_commune": "VIRE NORMANDIE", + "coordonnees_gps": [ + 48.8512498219, + -0.889601911342 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889601911342, + 48.8512498219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6add9a736cea1dfb0d9d8a7e712460605ea35b5", + "fields": { + "ligne_5": "CLERVAL", + "code_commune_insee": "25156", + "libelle_d_acheminement": "PAYS DE CLERVAL", + "code_postal": "25340", + "nom_de_la_commune": "PAYS DE CLERVAL", + "coordonnees_gps": [ + 47.3991705551, + 6.50259246766 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50259246766, + 47.3991705551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f52ed82ffd355c3d6fabe185fa2d77cff1241ff", + "fields": { + "ligne_5": "ROULLOURS", + "code_commune_insee": "14762", + "libelle_d_acheminement": "VIRE NORMANDIE", + "code_postal": "14500", + "nom_de_la_commune": "VIRE NORMANDIE", + "coordonnees_gps": [ + 48.8512498219, + -0.889601911342 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889601911342, + 48.8512498219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32478ff196528eb494838768ba893b422c092d47", + "fields": { + "code_commune_insee": "25160", + "nom_de_la_commune": "LES COMBES", + "code_postal": "25500", + "coordonnees_gps": [ + 47.0470386207, + 6.53657573654 + ], + "libelle_d_acheminement": "LES COMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53657573654, + 47.0470386207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d5ac3b607eabe7e190d7dc8d20d7cb17770c2c3", + "fields": { + "ligne_5": "TRUTTEMER LE GRAND", + "code_commune_insee": "14762", + "libelle_d_acheminement": "VIRE NORMANDIE", + "code_postal": "14500", + "nom_de_la_commune": "VIRE NORMANDIE", + "coordonnees_gps": [ + 48.8512498219, + -0.889601911342 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.889601911342, + 48.8512498219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c35a5725bdc6506bcdfe1a7fa25a8b8f607514b9", + "fields": { + "code_commune_insee": "25161", + "nom_de_la_commune": "CONSOLATION MAISONNETTES", + "code_postal": "25390", + "coordonnees_gps": [ + 47.1545771077, + 6.60275781844 + ], + "libelle_d_acheminement": "CONSOLATION MAISONNETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60275781844, + 47.1545771077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a57d8d7cfa44a3bc43592cfd108b56889bf6f27", + "fields": { + "code_commune_insee": "15005", + "nom_de_la_commune": "ANGLARDS DE ST FLOUR", + "code_postal": "15100", + "coordonnees_gps": [ + 44.9887543021, + 3.15851184449 + ], + "libelle_d_acheminement": "ANGLARDS DE ST FLOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15851184449, + 44.9887543021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7c9bf4b88e5181d6ce9c08d0e925656328c779c", + "fields": { + "code_commune_insee": "25170", + "nom_de_la_commune": "COURCELLES LES MONTBELIARD", + "code_postal": "25420", + "coordonnees_gps": [ + 47.4947051288, + 6.78554896767 + ], + "libelle_d_acheminement": "COURCELLES LES MONTBELIARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78554896767, + 47.4947051288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb1926cd67bd68b89755684c1a85304ebfcd857d", + "fields": { + "code_commune_insee": "15008", + "nom_de_la_commune": "ANTIGNAC", + "code_postal": "15240", + "coordonnees_gps": [ + 45.3513149351, + 2.56147315935 + ], + "libelle_d_acheminement": "ANTIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56147315935, + 45.3513149351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76316d824e5ea5c4e9937e73c630a8eb235dc241", + "fields": { + "code_commune_insee": "25171", + "nom_de_la_commune": "COURCELLES", + "code_postal": "25440", + "coordonnees_gps": [ + 47.1007094404, + 5.95901905679 + ], + "libelle_d_acheminement": "COURCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95901905679, + 47.1007094404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0da029289c5b6e31800d3b199dace3706745cd16", + "fields": { + "code_commune_insee": "15016", + "nom_de_la_commune": "AYRENS", + "code_postal": "15250", + "coordonnees_gps": [ + 44.9909323836, + 2.32370356489 + ], + "libelle_d_acheminement": "AYRENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32370356489, + 44.9909323836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59208660e032b1b7539fe6fd031bd211b237c4de", + "fields": { + "code_commune_insee": "25174", + "nom_de_la_commune": "COURTEFONTAINE", + "code_postal": "25470", + "coordonnees_gps": [ + 47.3214778627, + 6.91192058012 + ], + "libelle_d_acheminement": "COURTEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91192058012, + 47.3214778627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbd5635b37b52f2c7c0f0ad72a4f33977fb728b2", + "fields": { + "code_commune_insee": "15017", + "nom_de_la_commune": "BADAILHAC", + "code_postal": "15800", + "coordonnees_gps": [ + 44.9142134347, + 2.62817849396 + ], + "libelle_d_acheminement": "BADAILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62817849396, + 44.9142134347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ecbb8bf7a7ac7a354f3a8a7899e399aac1fac6c", + "fields": { + "code_commune_insee": "25180", + "nom_de_la_commune": "CROUZET MIGETTE", + "code_postal": "25270", + "coordonnees_gps": [ + 46.9567035839, + 6.01221278274 + ], + "libelle_d_acheminement": "CROUZET MIGETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01221278274, + 46.9567035839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "066e86c01ab4e0609c0799689958872e468c4275", + "fields": { + "ligne_5": "MOURJOU", + "code_commune_insee": "15027", + "libelle_d_acheminement": "PUYCAPEL", + "code_postal": "15340", + "nom_de_la_commune": "PUYCAPEL", + "coordonnees_gps": [ + 44.7211847531, + 2.36192054351 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36192054351, + 44.7211847531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "837f5e69f164d53f22e78476eb790291b93d999f", + "fields": { + "code_commune_insee": "25182", + "nom_de_la_commune": "CUBRY", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4984298197, + 6.42360175883 + ], + "libelle_d_acheminement": "CUBRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42360175883, + 47.4984298197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1487f921bdf9419cd0a1a402d56641d1f32bc6d4", + "fields": { + "code_commune_insee": "15028", + "nom_de_la_commune": "CARLAT", + "code_postal": "15130", + "coordonnees_gps": [ + 44.8833132335, + 2.57177332561 + ], + "libelle_d_acheminement": "CARLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57177332561, + 44.8833132335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "177e0a4dda556766a970eaa3e3ab6aed967caa5f", + "fields": { + "code_commune_insee": "25207", + "nom_de_la_commune": "DUNG", + "code_postal": "25550", + "coordonnees_gps": [ + 47.5064924582, + 6.7452490029 + ], + "libelle_d_acheminement": "DUNG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7452490029, + 47.5064924582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95f7c7f75ac2514f3661739674a4b4c1c976f0d0", + "fields": { + "code_commune_insee": "15045", + "nom_de_la_commune": "CHAUDES AIGUES", + "code_postal": "15110", + "coordonnees_gps": [ + 44.848937782, + 2.9982305989 + ], + "libelle_d_acheminement": "CHAUDES AIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9982305989, + 44.848937782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe34f910cce86137add8cf22f9fbca74abe0b4b3", + "fields": { + "code_commune_insee": "25211", + "nom_de_la_commune": "ECHEVANNES", + "code_postal": "25580", + "coordonnees_gps": [ + 47.0707841808, + 6.23691834165 + ], + "libelle_d_acheminement": "ECHEVANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23691834165, + 47.0707841808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b4fe32ea483cdd2f352c9b54ae96303297778b9", + "fields": { + "code_commune_insee": "15049", + "nom_de_la_commune": "CHEYLADE", + "code_postal": "15400", + "coordonnees_gps": [ + 45.1989830549, + 2.72030952547 + ], + "libelle_d_acheminement": "CHEYLADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72030952547, + 45.1989830549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a3e4a4d8dd771441afda19296c588c5bb05e52a", + "fields": { + "code_commune_insee": "25216", + "nom_de_la_commune": "ECURCEY", + "code_postal": "25150", + "coordonnees_gps": [ + 47.4031119157, + 6.8050274649 + ], + "libelle_d_acheminement": "ECURCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8050274649, + 47.4031119157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afee09bbf3a01306fbaeae829bef3e9314ed38ef", + "fields": { + "code_commune_insee": "15051", + "nom_de_la_commune": "CLAVIERES", + "code_postal": "15320", + "coordonnees_gps": [ + 44.9934261034, + 3.31053306448 + ], + "libelle_d_acheminement": "CLAVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31053306448, + 44.9934261034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd95ef1fcbe1978c0dc551b5568aa74249bb9940", + "fields": { + "code_commune_insee": "25235", + "nom_de_la_commune": "FERRIERES LES BOIS", + "code_postal": "25410", + "coordonnees_gps": [ + 47.2091232902, + 5.80270382568 + ], + "libelle_d_acheminement": "FERRIERES LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80270382568, + 47.2091232902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2301ec4453c3d4fba1d70807a6c96f1f2a9846b", + "fields": { + "code_commune_insee": "15054", + "nom_de_la_commune": "CONDAT", + "code_postal": "15190", + "coordonnees_gps": [ + 45.3488007633, + 2.79188252959 + ], + "libelle_d_acheminement": "CONDAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79188252959, + 45.3488007633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4404a4d8b8d5714ce63af86dc36a20bc9709111", + "fields": { + "code_commune_insee": "25239", + "nom_de_la_commune": "FEULE", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3509896425, + 6.73538806097 + ], + "libelle_d_acheminement": "FEULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73538806097, + 47.3509896425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55a8d736b32a1adef255934693f1a3436ef25fe0", + "fields": { + "code_commune_insee": "15056", + "nom_de_la_commune": "CRANDELLES", + "code_postal": "15250", + "coordonnees_gps": [ + 44.9569827507, + 2.36041501133 + ], + "libelle_d_acheminement": "CRANDELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36041501133, + 44.9569827507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79396949c7e36779cb53cbf39d1472ebd4f5eaf3", + "fields": { + "code_commune_insee": "25243", + "nom_de_la_commune": "FLANGEBOUCHE", + "code_postal": "25390", + "coordonnees_gps": [ + 47.1212999202, + 6.47198800405 + ], + "libelle_d_acheminement": "FLANGEBOUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47198800405, + 47.1212999202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "662259faece4c0a24cc7b48fc3c4c7870ababf22", + "fields": { + "code_commune_insee": "15070", + "nom_de_la_commune": "FONTANGES", + "code_postal": "15140", + "coordonnees_gps": [ + 45.1090707389, + 2.51731759077 + ], + "libelle_d_acheminement": "FONTANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51731759077, + 45.1090707389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5adaeb201e81e34ace01e87c3b64c0633bbaba45", + "fields": { + "code_commune_insee": "25257", + "nom_de_la_commune": "FRANEY", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2589627246, + 5.81341333993 + ], + "libelle_d_acheminement": "FRANEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81341333993, + 47.2589627246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f677447737a17d1334d9b398019e7205192f7d05", + "fields": { + "code_commune_insee": "15074", + "nom_de_la_commune": "GIOU DE MAMOU", + "code_postal": "15130", + "coordonnees_gps": [ + 44.9352952684, + 2.50768962826 + ], + "libelle_d_acheminement": "GIOU DE MAMOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50768962826, + 44.9352952684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ce0a8f0753112a4b648ea3e11e6051c0d6497d0", + "fields": { + "code_commune_insee": "25262", + "nom_de_la_commune": "FUANS", + "code_postal": "25390", + "coordonnees_gps": [ + 47.1275313249, + 6.59080450829 + ], + "libelle_d_acheminement": "FUANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59080450829, + 47.1275313249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e93bcfa4aa05e9784a5cff80ed4a000bff23d12", + "fields": { + "code_commune_insee": "15078", + "nom_de_la_commune": "JABRUN", + "code_postal": "15110", + "coordonnees_gps": [ + 44.793937351, + 2.96316583017 + ], + "libelle_d_acheminement": "JABRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96316583017, + 44.793937351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c797e26ddeee56c302a3b96a57bfa69cc8c818e", + "fields": { + "code_commune_insee": "25280", + "nom_de_la_commune": "GOUMOIS", + "code_postal": "25470", + "coordonnees_gps": [ + 47.2664069171, + 6.93962528255 + ], + "libelle_d_acheminement": "GOUMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93962528255, + 47.2664069171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e9942b485f71eec5598d890b4b48a0414de7b9d", + "fields": { + "code_commune_insee": "15079", + "nom_de_la_commune": "JALEYRAC", + "code_postal": "15200", + "coordonnees_gps": [ + 45.2697268838, + 2.36782201629 + ], + "libelle_d_acheminement": "JALEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36782201629, + 45.2697268838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8c9326d2905528a04f59c523f9daa92ff733ca0", + "fields": { + "code_commune_insee": "25282", + "nom_de_la_commune": "GOUX LES USIERS", + "code_postal": "25520", + "coordonnees_gps": [ + 46.9810184806, + 6.29488743137 + ], + "libelle_d_acheminement": "GOUX LES USIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29488743137, + 46.9810184806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b4583719891acaa75cc9c815a14b56600d4224a", + "fields": { + "code_commune_insee": "15080", + "nom_de_la_commune": "JOURSAC", + "code_postal": "15170", + "coordonnees_gps": [ + 45.165021316, + 3.01361412899 + ], + "libelle_d_acheminement": "JOURSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01361412899, + 45.165021316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8de57ee4e710004896e7336b0979f9f52a8cc149", + "fields": { + "code_commune_insee": "25283", + "nom_de_la_commune": "GOUX SOUS LANDET", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0782912931, + 5.93334206195 + ], + "libelle_d_acheminement": "GOUX SOUS LANDET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93334206195, + 47.0782912931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd3e2b80e68b4702a6b93cf92751241c67e6c36d", + "fields": { + "code_commune_insee": "15082", + "nom_de_la_commune": "JUNHAC", + "code_postal": "15120", + "coordonnees_gps": [ + 44.6956285648, + 2.4519931764 + ], + "libelle_d_acheminement": "JUNHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4519931764, + 44.6956285648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af106038eb0c8e91c5315210339cef5d7c54653a", + "fields": { + "code_commune_insee": "25288", + "nom_de_la_commune": "FOURNETS LUISANS", + "code_postal": "25390", + "coordonnees_gps": [ + 47.1017956393, + 6.55927911483 + ], + "libelle_d_acheminement": "FOURNETS LUISANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55927911483, + 47.1017956393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b00d4a5b23c9e62047c64f34ec6fa6024c894167", + "fields": { + "code_commune_insee": "15087", + "nom_de_la_commune": "LACAPELLE DEL FRAISSE", + "code_postal": "15120", + "coordonnees_gps": [ + 44.7730782584, + 2.43049970218 + ], + "libelle_d_acheminement": "LACAPELLE DEL FRAISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43049970218, + 44.7730782584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ad677e0caeebb8aded47d02c128068b4cd2dc06", + "fields": { + "code_commune_insee": "25293", + "nom_de_la_commune": "GRANGES NARBOZ", + "code_postal": "25300", + "coordonnees_gps": [ + 46.8783998916, + 6.32016359916 + ], + "libelle_d_acheminement": "GRANGES NARBOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32016359916, + 46.8783998916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4d8ee1d6c974cec60baaac752e9daa014d35371", + "fields": { + "code_commune_insee": "15088", + "nom_de_la_commune": "LACAPELLE VIESCAMP", + "code_postal": "15150", + "coordonnees_gps": [ + 44.9257153749, + 2.27440087718 + ], + "libelle_d_acheminement": "LACAPELLE VIESCAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27440087718, + 44.9257153749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeecf90f8278fb3e13d470db7088ac321f1b529d", + "fields": { + "code_commune_insee": "25300", + "nom_de_la_commune": "GUYANS DURNES", + "code_postal": "25580", + "coordonnees_gps": [ + 47.1294465972, + 6.24421111235 + ], + "libelle_d_acheminement": "GUYANS DURNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24421111235, + 47.1294465972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a207f83e56bdd0111fbfee8429e67c74e41188a", + "fields": { + "code_commune_insee": "15091", + "nom_de_la_commune": "LANDEYRAT", + "code_postal": "15160", + "coordonnees_gps": [ + 45.2728910978, + 2.8723635219 + ], + "libelle_d_acheminement": "LANDEYRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8723635219, + 45.2728910978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22ae4b53346c27c4ad4b4273c61438efe036c815", + "fields": { + "code_commune_insee": "25304", + "nom_de_la_commune": "HERIMONCOURT", + "code_postal": "25310", + "coordonnees_gps": [ + 47.4359019021, + 6.8851676894 + ], + "libelle_d_acheminement": "HERIMONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8851676894, + 47.4359019021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d8ae877a5d7ad4472c94be02e6ec808c709b0e1", + "fields": { + "code_commune_insee": "15097", + "nom_de_la_commune": "LASTIC", + "code_postal": "15500", + "coordonnees_gps": [ + 45.1115073317, + 3.2185679587 + ], + "libelle_d_acheminement": "LASTIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2185679587, + 45.1115073317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b72275aee403037d9dbc0acb8cb2e9c2ac143711", + "fields": { + "code_commune_insee": "25309", + "nom_de_la_commune": "HOUTAUD", + "code_postal": "25300", + "coordonnees_gps": [ + 46.9119596503, + 6.30024980473 + ], + "libelle_d_acheminement": "HOUTAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30024980473, + 46.9119596503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c005d501fdaf51132c499c7317314fce6264b69a", + "fields": { + "code_commune_insee": "15101", + "nom_de_la_commune": "LAVEISSIERE", + "code_postal": "15300", + "coordonnees_gps": [ + 45.1035229375, + 2.78285034579 + ], + "libelle_d_acheminement": "LAVEISSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78285034579, + 45.1035229375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bca90b902d6e46edc1c446675b8a3d56f06e6ec", + "fields": { + "code_commune_insee": "25311", + "nom_de_la_commune": "HYEMONDANS", + "code_postal": "25250", + "coordonnees_gps": [ + 47.3809106703, + 6.63896940193 + ], + "libelle_d_acheminement": "HYEMONDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63896940193, + 47.3809106703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eea71be70ad2d85640fe691f0525455d85ab56f0", + "fields": { + "ligne_5": "LOUBARESSE", + "code_commune_insee": "15108", + "libelle_d_acheminement": "VAL D ARCOMIE", + "code_postal": "15320", + "nom_de_la_commune": "VAL D ARCOMIE", + "coordonnees_gps": [ + 44.9384891268, + 3.20556437292 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20556437292, + 44.9384891268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30ede99d4823803a672d0351f50de7d59983d60c", + "fields": { + "code_commune_insee": "25314", + "nom_de_la_commune": "INDEVILLERS", + "code_postal": "25470", + "coordonnees_gps": [ + 47.3122685986, + 6.96941804742 + ], + "libelle_d_acheminement": "INDEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96941804742, + 47.3122685986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fca658f1bff424e219f56190fd26745cfc04dd8a", + "fields": { + "code_commune_insee": "15117", + "nom_de_la_commune": "MARCOLES", + "code_postal": "15220", + "coordonnees_gps": [ + 44.7824610941, + 2.35726989792 + ], + "libelle_d_acheminement": "MARCOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35726989792, + 44.7824610941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8100403143e3977fbb119e1e022e792f9e2731f3", + "fields": { + "code_commune_insee": "25320", + "nom_de_la_commune": "LABERGEMENT STE MARIE", + "code_postal": "25160", + "coordonnees_gps": [ + 46.7792090782, + 6.276761432 + ], + "libelle_d_acheminement": "LABERGEMENT STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.276761432, + 46.7792090782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc2814d8d6c920243a63da9f98af47570fc29b13", + "fields": { + "code_commune_insee": "15123", + "nom_de_la_commune": "MEALLET", + "code_postal": "15200", + "coordonnees_gps": [ + 45.2627638015, + 2.41469819713 + ], + "libelle_d_acheminement": "MEALLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41469819713, + 45.2627638015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6c35ba4f2cc3b6c6cdc213e323378f6ee05201b", + "fields": { + "ligne_5": "GRANGES STE MARIE", + "code_commune_insee": "25320", + "libelle_d_acheminement": "LABERGEMENT STE MARIE", + "code_postal": "25160", + "nom_de_la_commune": "LABERGEMENT STE MARIE", + "coordonnees_gps": [ + 46.7792090782, + 6.276761432 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.276761432, + 46.7792090782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea521ea7123a00910693931b32a3a6f433a013b8", + "fields": { + "code_commune_insee": "15124", + "nom_de_la_commune": "MENET", + "code_postal": "15400", + "coordonnees_gps": [ + 45.2974849213, + 2.57917392075 + ], + "libelle_d_acheminement": "MENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57917392075, + 45.2974849213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce5b1439a8d67ee51bb295c7740ea8af4b94959d", + "fields": { + "code_commune_insee": "25321", + "nom_de_la_commune": "VILLERS LE LAC", + "code_postal": "25130", + "coordonnees_gps": [ + 47.0702797882, + 6.68940922893 + ], + "libelle_d_acheminement": "VILLERS LE LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68940922893, + 47.0702797882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d1b5be75a6ef4177e414d976505a9d025154de9", + "fields": { + "code_commune_insee": "15128", + "nom_de_la_commune": "LA MONSELIE", + "code_postal": "15240", + "coordonnees_gps": [ + 45.321229006, + 2.55132616965 + ], + "libelle_d_acheminement": "LA MONSELIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55132616965, + 45.321229006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51e52878577ceae7e3e431492075e5f5a467a27f", + "fields": { + "code_commune_insee": "25322", + "nom_de_la_commune": "LAIRE", + "code_postal": "25550", + "coordonnees_gps": [ + 47.550304631, + 6.73502312394 + ], + "libelle_d_acheminement": "LAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73502312394, + 47.550304631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1249072bb69c9871cb56c78f93f62540690902ed", + "fields": { + "code_commune_insee": "15129", + "nom_de_la_commune": "MONTBOUDIF", + "code_postal": "15190", + "coordonnees_gps": [ + 45.3704230499, + 2.73226065206 + ], + "libelle_d_acheminement": "MONTBOUDIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73226065206, + 45.3704230499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bd9cfa1b91b2a7a668e08b967f696aba9f77696", + "fields": { + "code_commune_insee": "25336", + "nom_de_la_commune": "LIESLE", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0662026944, + 5.8125818072 + ], + "libelle_d_acheminement": "LIESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8125818072, + 47.0662026944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecf9dec99f4d811f168ca015930a5abaa12e6817", + "fields": { + "code_commune_insee": "15132", + "nom_de_la_commune": "MONTGRELEIX", + "code_postal": "15190", + "coordonnees_gps": [ + 45.3555338617, + 2.88889825644 + ], + "libelle_d_acheminement": "MONTGRELEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88889825644, + 45.3555338617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "614c9e5088225df7061bd46748180cd58f6afc39", + "fields": { + "code_commune_insee": "25341", + "nom_de_la_commune": "LOMONT SUR CRETE", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3380402467, + 6.43834071215 + ], + "libelle_d_acheminement": "LOMONT SUR CRETE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43834071215, + 47.3380402467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a88f79fef024c625c3332740f76efb76b9912a0a", + "fields": { + "code_commune_insee": "15135", + "nom_de_la_commune": "MONTVERT", + "code_postal": "15150", + "coordonnees_gps": [ + 44.9956514856, + 2.16312803314 + ], + "libelle_d_acheminement": "MONTVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16312803314, + 44.9956514856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88ffe2d4cddb9aad7838611facc7470cd5750ce8", + "fields": { + "code_commune_insee": "25351", + "nom_de_la_commune": "LE LUHIER", + "code_postal": "25210", + "coordonnees_gps": [ + 47.1703571491, + 6.6776498858 + ], + "libelle_d_acheminement": "LE LUHIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6776498858, + 47.1703571491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a11580f77759fb72e30da68673c4c79e819a253", + "fields": { + "code_commune_insee": "15140", + "nom_de_la_commune": "NAUCELLES", + "code_postal": "15250", + "coordonnees_gps": [ + 44.952486045, + 2.42117716236 + ], + "libelle_d_acheminement": "NAUCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42117716236, + 44.952486045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb9330a81c737207f01eef5c5aff1b59e2be34aa", + "fields": { + "code_commune_insee": "25373", + "nom_de_la_commune": "LE MEMONT", + "code_postal": "25210", + "coordonnees_gps": [ + 47.1601369438, + 6.68774987996 + ], + "libelle_d_acheminement": "LE MEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68774987996, + 47.1601369438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b28165cea34d709f26918b05511852c210341680", + "fields": { + "code_commune_insee": "15144", + "nom_de_la_commune": "OMPS", + "code_postal": "15290", + "coordonnees_gps": [ + 44.880430829, + 2.26818388104 + ], + "libelle_d_acheminement": "OMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26818388104, + 44.880430829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81c0576a20b68571bcb03c52d754671583a53752", + "fields": { + "code_commune_insee": "25376", + "nom_de_la_commune": "MEREY VIEILLEY", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3332322953, + 6.06387544689 + ], + "libelle_d_acheminement": "MEREY VIEILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06387544689, + 47.3332322953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "137256476f6653c80232be7050dad5f01689c7c6", + "fields": { + "code_commune_insee": "15149", + "nom_de_la_commune": "PAULHENC", + "code_postal": "15230", + "coordonnees_gps": [ + 44.8849681536, + 2.81626761404 + ], + "libelle_d_acheminement": "PAULHENC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81626761404, + 44.8849681536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f60411717fe61cf4697103a494148c64a14728ec", + "fields": { + "code_commune_insee": "25391", + "nom_de_la_commune": "MONT DE LAVAL", + "code_postal": "25210", + "coordonnees_gps": [ + 47.161609954, + 6.63636805448 + ], + "libelle_d_acheminement": "MONT DE LAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63636805448, + 47.161609954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c148fe8067f6ca670da12bad35d8c311ee7a39df", + "fields": { + "code_commune_insee": "15152", + "nom_de_la_commune": "PIERREFORT", + "code_postal": "15230", + "coordonnees_gps": [ + 44.9288418231, + 2.83819601697 + ], + "libelle_d_acheminement": "PIERREFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83819601697, + 44.9288418231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c16a5a3c40924bb357a8d6e30f36722aeb50c5f", + "fields": { + "code_commune_insee": "25401", + "nom_de_la_commune": "MONTIVERNAGE", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3105623861, + 6.42153165074 + ], + "libelle_d_acheminement": "MONTIVERNAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42153165074, + 47.3105623861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7a935e5feca386300fb1e441cc8af9ca5cae351", + "fields": { + "code_commune_insee": "15154", + "nom_de_la_commune": "POLMINHAC", + "code_postal": "15800", + "coordonnees_gps": [ + 44.9524740825, + 2.57588922139 + ], + "libelle_d_acheminement": "POLMINHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57588922139, + 44.9524740825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "619b24ae82110a435b9deae7b984b393b134fc8e", + "fields": { + "code_commune_insee": "25402", + "nom_de_la_commune": "MONTJOIE LE CHATEAU", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3462625605, + 6.89671768398 + ], + "libelle_d_acheminement": "MONTJOIE LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89671768398, + 47.3462625605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3588af009f23806d21e59ff3141534c81f9bcc8", + "fields": { + "code_commune_insee": "15157", + "nom_de_la_commune": "QUEZAC", + "code_postal": "15600", + "coordonnees_gps": [ + 44.7584182677, + 2.18352283274 + ], + "libelle_d_acheminement": "QUEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18352283274, + 44.7584182677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd1b3a51872f15019f4c32960a6265e9db04df0b", + "fields": { + "code_commune_insee": "25404", + "nom_de_la_commune": "MONTMAHOUX", + "code_postal": "25270", + "coordonnees_gps": [ + 46.9830184805, + 6.03348984475 + ], + "libelle_d_acheminement": "MONTMAHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03348984475, + 46.9830184805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19388a1af2a6c2d4df2035eac27da525906feabb", + "fields": { + "code_commune_insee": "15162", + "nom_de_la_commune": "RIOM ES MONTAGNES", + "code_postal": "15400", + "coordonnees_gps": [ + 45.2897248338, + 2.65677992591 + ], + "libelle_d_acheminement": "RIOM ES MONTAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65677992591, + 45.2897248338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e8c538b89eea80dbac7bdafa0b507a8ed1b1b57", + "fields": { + "code_commune_insee": "25408", + "nom_de_la_commune": "MONTUSSAINT", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4360060247, + 6.2912957658 + ], + "libelle_d_acheminement": "MONTUSSAINT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2912957658, + 47.4360060247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f49da740a614b76e6fd26c02d9d01606e76e2f3", + "fields": { + "code_commune_insee": "15172", + "nom_de_la_commune": "ST ANTOINE", + "code_postal": "15220", + "coordonnees_gps": [ + 44.7494339962, + 2.33617223491 + ], + "libelle_d_acheminement": "ST ANTOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33617223491, + 44.7494339962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37ca1b06c3b3429c55ebda5c95408398e89afe97", + "fields": { + "code_commune_insee": "25410", + "nom_de_la_commune": "MORRE", + "code_postal": "25660", + "coordonnees_gps": [ + 47.2196069824, + 6.07140212978 + ], + "libelle_d_acheminement": "MORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07140212978, + 47.2196069824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb12ae0c1a45b5e30eda19afbad8aa5003ded6c5", + "fields": { + "code_commune_insee": "15176", + "nom_de_la_commune": "ST CHAMANT", + "code_postal": "15140", + "coordonnees_gps": [ + 45.0923673037, + 2.44545518519 + ], + "libelle_d_acheminement": "ST CHAMANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44545518519, + 45.0923673037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bede595b4de14309d81d82e77d4f773417b1a739", + "fields": { + "code_commune_insee": "25417", + "nom_de_la_commune": "NAISEY LES GRANGES", + "code_postal": "25360", + "coordonnees_gps": [ + 47.2083549506, + 6.2346662977 + ], + "libelle_d_acheminement": "NAISEY LES GRANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2346662977, + 47.2083549506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1cd913d7f7b43f2b1a6ca1dc02b8b087e5f8068", + "fields": { + "code_commune_insee": "15186", + "nom_de_la_commune": "STE EULALIE", + "code_postal": "15140", + "coordonnees_gps": [ + 45.1248339578, + 2.38105299616 + ], + "libelle_d_acheminement": "STE EULALIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38105299616, + 45.1248339578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "980b6e4409da9e7cb0a00160d5b7f69ec2eceb51", + "fields": { + "code_commune_insee": "25420", + "nom_de_la_commune": "NANS SOUS STE ANNE", + "code_postal": "25330", + "coordonnees_gps": [ + 46.9768468942, + 5.9927570154 + ], + "libelle_d_acheminement": "NANS SOUS STE ANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9927570154, + 46.9768468942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bc28bb674b112e3dc5890e02a01f6f41cee1543", + "fields": { + "code_commune_insee": "15190", + "nom_de_la_commune": "ST HIPPOLYTE", + "code_postal": "15400", + "coordonnees_gps": [ + 45.2193859021, + 2.70277477856 + ], + "libelle_d_acheminement": "ST HIPPOLYTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70277477856, + 45.2193859021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d5ca70154ebb0a29450a83e3cea12f6915189d1", + "fields": { + "code_commune_insee": "25422", + "nom_de_la_commune": "NEUCHATEL URTIERE", + "code_postal": "25150", + "coordonnees_gps": [ + 47.3748161465, + 6.73046629435 + ], + "libelle_d_acheminement": "NEUCHATEL URTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73046629435, + 47.3748161465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca41ebbb2f262b86dfa6fa95e7b191db7361e4c2", + "fields": { + "code_commune_insee": "15192", + "nom_de_la_commune": "ST JACQUES DES BLATS", + "code_postal": "15800", + "coordonnees_gps": [ + 45.0554659628, + 2.72104045324 + ], + "libelle_d_acheminement": "ST JACQUES DES BLATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72104045324, + 45.0554659628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "156c00c8951833c87ee0398484d36119e2b59856", + "fields": { + "ligne_5": "RANTECHAUX", + "code_commune_insee": "25424", + "libelle_d_acheminement": "LES PREMIERS SAPINS", + "code_postal": "25580", + "nom_de_la_commune": "LES PREMIERS SAPINS", + "coordonnees_gps": [ + 47.0885558465, + 6.3501261359 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3501261359, + 47.0885558465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "548310467d2a7d65f82930c2e3c149770388ae73", + "fields": { + "code_commune_insee": "15196", + "nom_de_la_commune": "ST MAMET LA SALVETAT", + "code_postal": "15220", + "coordonnees_gps": [ + 44.8563990707, + 2.30496359467 + ], + "libelle_d_acheminement": "ST MAMET LA SALVETAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30496359467, + 44.8563990707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d706d417c9ee24df3746378e813b4641058fb1e8", + "fields": { + "code_commune_insee": "25431", + "nom_de_la_commune": "ONANS", + "code_postal": "25250", + "coordonnees_gps": [ + 47.5003692831, + 6.60417908896 + ], + "libelle_d_acheminement": "ONANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60417908896, + 47.5003692831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba77e36dbfb50b86c8ad538cbbc7c670f00917a0", + "fields": { + "code_commune_insee": "15199", + "nom_de_la_commune": "ST MARTIAL", + "code_postal": "15110", + "coordonnees_gps": [ + 44.8874161517, + 3.0435828016 + ], + "libelle_d_acheminement": "ST MARTIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0435828016, + 44.8874161517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d52dec2d51e9835b1fd096b387c59741209b5ef2", + "fields": { + "ligne_5": "BLANCHEFONTAINE", + "code_commune_insee": "25433", + "libelle_d_acheminement": "ORGEANS BLANCHEFONTAINE", + "code_postal": "25120", + "nom_de_la_commune": "ORGEANS BLANCHEFONTAINE", + "coordonnees_gps": [ + 47.266487614, + 6.75428346905 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75428346905, + 47.266487614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bf36ec98a090ee99f7423300124a117ed75f7fe", + "fields": { + "code_commune_insee": "15201", + "nom_de_la_commune": "ST MARTIN SOUS VIGOUROUX", + "code_postal": "15230", + "coordonnees_gps": [ + 44.9352892796, + 2.79358439032 + ], + "libelle_d_acheminement": "ST MARTIN SOUS VIGOUROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79358439032, + 44.9352892796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc6071718bf01004ac0d4ac5c690a49befd0c910", + "fields": { + "code_commune_insee": "25435", + "nom_de_la_commune": "ORSANS", + "code_postal": "25530", + "coordonnees_gps": [ + 47.2505392758, + 6.38074499024 + ], + "libelle_d_acheminement": "ORSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38074499024, + 47.2505392758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4e4f8907d13ef88c956a93bb6a3dd9da6bbd13f", + "fields": { + "code_commune_insee": "15203", + "nom_de_la_commune": "ST MARY LE PLAIN", + "code_postal": "15500", + "coordonnees_gps": [ + 45.1760315691, + 3.14393366298 + ], + "libelle_d_acheminement": "ST MARY LE PLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14393366298, + 45.1760315691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4c62e2311cee8c9926023036e41b1f84f3aa26f", + "fields": { + "code_commune_insee": "25437", + "nom_de_la_commune": "OSSE", + "code_postal": "25360", + "coordonnees_gps": [ + 47.2716954435, + 6.21232234224 + ], + "libelle_d_acheminement": "OSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21232234224, + 47.2716954435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a3a98937fd815e918510b1ca2a1a4887383b572", + "fields": { + "code_commune_insee": "15213", + "nom_de_la_commune": "ST SATURNIN", + "code_postal": "15190", + "coordonnees_gps": [ + 45.2334692107, + 2.79417752257 + ], + "libelle_d_acheminement": "ST SATURNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79417752257, + 45.2334692107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de4cd8fce203374f1592f2c3a677e08c51c43e40", + "fields": { + "code_commune_insee": "25445", + "nom_de_la_commune": "PAROY", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0354181237, + 5.8834858808 + ], + "libelle_d_acheminement": "PAROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8834858808, + 47.0354181237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb489e59c4078c338c448e12f5463452e74c00ec", + "fields": { + "code_commune_insee": "15215", + "nom_de_la_commune": "ST SIMON", + "code_postal": "15130", + "coordonnees_gps": [ + 44.9695334779, + 2.49738848961 + ], + "libelle_d_acheminement": "ST SIMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49738848961, + 44.9695334779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b698ce2d32917cdb009443c967c118d42f8ffa8b", + "fields": { + "code_commune_insee": "25446", + "nom_de_la_commune": "PASSAVANT", + "code_postal": "25360", + "coordonnees_gps": [ + 47.2781329553, + 6.39496038555 + ], + "libelle_d_acheminement": "PASSAVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39496038555, + 47.2781329553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09e25f17e6cb77269bb27792d2f62b590712febb", + "fields": { + "code_commune_insee": "15230", + "nom_de_la_commune": "SOURNIAC", + "code_postal": "15200", + "coordonnees_gps": [ + 45.2752903351, + 2.33484723544 + ], + "libelle_d_acheminement": "SOURNIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33484723544, + 45.2752903351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f718680ab525f9284372258f3c6d3f1960d8f902", + "fields": { + "code_commune_insee": "25448", + "nom_de_la_commune": "PELOUSEY", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2782210495, + 5.92416021087 + ], + "libelle_d_acheminement": "PELOUSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92416021087, + 47.2782210495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9947c16b9ee83c8c1f599a9d14ec69cb15c7eb5b", + "fields": { + "code_commune_insee": "15232", + "nom_de_la_commune": "TANAVELLE", + "code_postal": "15100", + "coordonnees_gps": [ + 45.0263494142, + 2.98445909466 + ], + "libelle_d_acheminement": "TANAVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98445909466, + 45.0263494142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1989411963fe7a4277adfb539d1a5e23cedce8bf", + "fields": { + "code_commune_insee": "25455", + "nom_de_la_commune": "PLACEY", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2582388477, + 5.84946760643 + ], + "libelle_d_acheminement": "PLACEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84946760643, + 47.2582388477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d44bc4915f825023acd3eeda3de234ee50344ff", + "fields": { + "code_commune_insee": "15241", + "nom_de_la_commune": "LA TRINITAT", + "code_postal": "15110", + "coordonnees_gps": [ + 44.752159656, + 2.94545314762 + ], + "libelle_d_acheminement": "LA TRINITAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94545314762, + 44.752159656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "324bea9991d5714e041bd30de863d653126243e9", + "fields": { + "ligne_5": "VERMONDANS", + "code_commune_insee": "25463", + "libelle_d_acheminement": "PONT DE ROIDE VERMONDANS", + "code_postal": "25150", + "nom_de_la_commune": "PONT DE ROIDE VERMONDANS", + "coordonnees_gps": [ + 47.3852773517, + 6.7626810066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7626810066, + 47.3852773517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70692384d117b9c56d5515bf94fc8688af4046ab", + "fields": { + "code_commune_insee": "15245", + "nom_de_la_commune": "VABRES", + "code_postal": "15100", + "coordonnees_gps": [ + 45.0375713324, + 3.19551902127 + ], + "libelle_d_acheminement": "VABRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19551902127, + 45.0375713324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3bf8f29352325efaeb29261f1b6699e99486eed", + "fields": { + "code_commune_insee": "25469", + "nom_de_la_commune": "PRESENTEVILLERS", + "code_postal": "25550", + "coordonnees_gps": [ + 47.5012810913, + 6.72665419806 + ], + "libelle_d_acheminement": "PRESENTEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72665419806, + 47.5012810913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e9264d1ea5b85224460dd2b5bf9026edad657f5", + "fields": { + "code_commune_insee": "15252", + "nom_de_la_commune": "VELZIC", + "code_postal": "15590", + "coordonnees_gps": [ + 44.995618273, + 2.55559240833 + ], + "libelle_d_acheminement": "VELZIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55559240833, + 44.995618273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90aa0150d0be162348f7fbd5b8e062abbe1bd7f5", + "fields": { + "code_commune_insee": "25475", + "nom_de_la_commune": "QUINGEY", + "code_postal": "25440", + "coordonnees_gps": [ + 47.1025398446, + 5.88098542141 + ], + "libelle_d_acheminement": "QUINGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88098542141, + 47.1025398446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2050cae00d7ed0f9de7ee58f9d081c89a5c878f", + "fields": { + "code_commune_insee": "15255", + "nom_de_la_commune": "VEZAC", + "code_postal": "15130", + "coordonnees_gps": [ + 44.8954464372, + 2.5219529711 + ], + "libelle_d_acheminement": "VEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5219529711, + 44.8954464372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd3dcb97f20b6e823c0f959caf593ba983ac1721", + "fields": { + "code_commune_insee": "25477", + "nom_de_la_commune": "RANCENAY", + "code_postal": "25320", + "coordonnees_gps": [ + 47.185849528, + 5.94490685267 + ], + "libelle_d_acheminement": "RANCENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94490685267, + 47.185849528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea811e682fe6c88ba5db11d5183feab36fa277a8", + "fields": { + "code_commune_insee": "15256", + "nom_de_la_commune": "VEZE", + "code_postal": "15160", + "coordonnees_gps": [ + 45.278399535, + 2.97817620096 + ], + "libelle_d_acheminement": "VEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97817620096, + 45.278399535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7340e47e41e693b7a42c36dd7e8a45c1e1d1aa6", + "fields": { + "code_commune_insee": "25481", + "nom_de_la_commune": "RAYNANS", + "code_postal": "25550", + "coordonnees_gps": [ + 47.5368460098, + 6.72116733981 + ], + "libelle_d_acheminement": "RAYNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72116733981, + 47.5368460098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f95d4ced20210660d03d31050131995b4cd3838", + "fields": { + "code_commune_insee": "15267", + "nom_de_la_commune": "YTRAC", + "code_postal": "15000", + "coordonnees_gps": [ + 44.9161324548, + 2.36598098395 + ], + "libelle_d_acheminement": "YTRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36598098395, + 44.9161324548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16585c406a4fc52155c1f8aca1d76ba236846821", + "fields": { + "ligne_5": "BOUJEONS", + "code_commune_insee": "25486", + "libelle_d_acheminement": "REMORAY BOUJEONS", + "code_postal": "25160", + "nom_de_la_commune": "REMORAY BOUJEONS", + "coordonnees_gps": [ + 46.7590078628, + 6.21661455982 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21661455982, + 46.7590078628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01056742a0b318a17dc331d03a7a8dc06ebe4e3d", + "fields": { + "code_commune_insee": "16042", + "nom_de_la_commune": "BESSE", + "code_postal": "16140", + "coordonnees_gps": [ + 45.9581333221, + 0.0818571588343 + ], + "libelle_d_acheminement": "BESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0818571588343, + 45.9581333221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80597f8e2673731ee5a3ddfc01bf2385a5910614", + "fields": { + "code_commune_insee": "25490", + "nom_de_la_commune": "RIGNEY", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3885471699, + 6.18175113626 + ], + "libelle_d_acheminement": "RIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18175113626, + 47.3885471699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4ac7bd3439832029cc5e3bb9a8441007b1ed3ec", + "fields": { + "ligne_5": "PORCHERESSE", + "code_commune_insee": "16046", + "libelle_d_acheminement": "COTEAUX DU BLANZACAIS", + "code_postal": "16250", + "nom_de_la_commune": "COTEAUX DU BLANZACAIS", + "coordonnees_gps": [ + 45.4714654807, + 0.0236302142689 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0236302142689, + 45.4714654807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75c9c78476db98d8e1ca44d5d05ffce2fae488d0", + "fields": { + "code_commune_insee": "25497", + "nom_de_la_commune": "ROCHES LES BLAMONT", + "code_postal": "25310", + "coordonnees_gps": [ + 47.4106474482, + 6.85440566573 + ], + "libelle_d_acheminement": "ROCHES LES BLAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85440566573, + 47.4106474482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "499e8c83981bf715e5176ab066c7eba58eefbf2b", + "fields": { + "code_commune_insee": "16047", + "nom_de_la_commune": "BLANZAGUET ST CYBARD", + "code_postal": "16320", + "coordonnees_gps": [ + 45.4732165365, + 0.313168592903 + ], + "libelle_d_acheminement": "BLANZAGUET ST CYBARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.313168592903, + 45.4732165365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16e09734652c8f95a08fb1ec4abb1966a355a39f", + "fields": { + "code_commune_insee": "25504", + "nom_de_la_commune": "ROSUREUX", + "code_postal": "25380", + "coordonnees_gps": [ + 47.2139578431, + 6.68360932268 + ], + "libelle_d_acheminement": "ROSUREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68360932268, + 47.2139578431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbc561132cae7b02bbcd4be87f4f03efe9fbf4b5", + "fields": { + "code_commune_insee": "16049", + "nom_de_la_commune": "BONNES", + "code_postal": "16390", + "coordonnees_gps": [ + 45.2363248091, + 0.143594569626 + ], + "libelle_d_acheminement": "BONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.143594569626, + 45.2363248091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "437463b6f15b3b08443e7770778753034a597265", + "fields": { + "code_commune_insee": "25505", + "nom_de_la_commune": "ROUGEMONT", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4795835178, + 6.34800687837 + ], + "libelle_d_acheminement": "ROUGEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34800687837, + 47.4795835178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "043529e6a475c27dbb61ea883b9ae141dbe77c1e", + "fields": { + "code_commune_insee": "16054", + "nom_de_la_commune": "LE BOUCHAGE", + "code_postal": "16350", + "coordonnees_gps": [ + 46.0493103798, + 0.376687406962 + ], + "libelle_d_acheminement": "LE BOUCHAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.376687406962, + 46.0493103798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ccfc552a2a317a03cb1bc6ae511583255ad6d2e", + "fields": { + "code_commune_insee": "25514", + "nom_de_la_commune": "ST ANTOINE", + "code_postal": "25370", + "coordonnees_gps": [ + 46.7821317328, + 6.33373558381 + ], + "libelle_d_acheminement": "ST ANTOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33373558381, + 46.7821317328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79e4b464f9cc126946bfa8af4bbacf40bc41cac0", + "fields": { + "code_commune_insee": "16056", + "nom_de_la_commune": "BOURG CHARENTE", + "code_postal": "16200", + "coordonnees_gps": [ + 45.6659937822, + -0.222233070692 + ], + "libelle_d_acheminement": "BOURG CHARENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.222233070692, + 45.6659937822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50dd4cd8678bd47b31295ec333deaf59d1a4fd7b", + "fields": { + "code_commune_insee": "25516", + "nom_de_la_commune": "ST GEORGES ARMONT", + "code_postal": "25340", + "coordonnees_gps": [ + 47.4042841362, + 6.54940433653 + ], + "libelle_d_acheminement": "ST GEORGES ARMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54940433653, + 47.4042841362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd1166b052a09a72122c2388d34410def88035f5", + "fields": { + "code_commune_insee": "16068", + "nom_de_la_commune": "CELLEFROUIN", + "code_postal": "16260", + "coordonnees_gps": [ + 45.8877573804, + 0.391851835711 + ], + "libelle_d_acheminement": "CELLEFROUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.391851835711, + 45.8877573804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efc7de5348abeb937755cb832cd6e4f1d83299ae", + "fields": { + "code_commune_insee": "25522", + "nom_de_la_commune": "ST JULIEN LES RUSSEY", + "code_postal": "25210", + "coordonnees_gps": [ + 47.2167228369, + 6.72957115326 + ], + "libelle_d_acheminement": "ST JULIEN LES RUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72957115326, + 47.2167228369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b9e0149ef718fdb855a49961f95f12c94e6cf94", + "fields": { + "code_commune_insee": "16069", + "nom_de_la_commune": "CELLETTES", + "code_postal": "16230", + "coordonnees_gps": [ + 45.8643336097, + 0.145594673488 + ], + "libelle_d_acheminement": "CELLETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.145594673488, + 45.8643336097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8227b91970b653212f4da97815a9c68377941757", + "fields": { + "code_commune_insee": "25526", + "nom_de_la_commune": "STE SUZANNE", + "code_postal": "25630", + "coordonnees_gps": [ + 47.5077397674, + 6.76777970529 + ], + "libelle_d_acheminement": "STE SUZANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76777970529, + 47.5077397674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c430644a804c6d4f3274637a4b01a204cb16235", + "fields": { + "code_commune_insee": "16071", + "nom_de_la_commune": "CHABRAC", + "code_postal": "16150", + "coordonnees_gps": [ + 45.926486151, + 0.746752143002 + ], + "libelle_d_acheminement": "CHABRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.746752143002, + 45.926486151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6dfdcabf80274ddb269e866150be26068d897aa", + "fields": { + "ligne_5": "ANTORPE", + "code_commune_insee": "25527", + "libelle_d_acheminement": "ST VIT", + "code_postal": "25410", + "nom_de_la_commune": "ST VIT", + "coordonnees_gps": [ + 47.1854090254, + 5.82031300598 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82031300598, + 47.1854090254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bafde7072948713aa26496600b51942cad75bcc", + "fields": { + "ligne_5": "SERIGNAC", + "code_commune_insee": "16073", + "libelle_d_acheminement": "CHALAIS", + "code_postal": "16210", + "nom_de_la_commune": "CHALAIS", + "coordonnees_gps": [ + 45.2739548684, + 0.0385508867289 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0385508867289, + 45.2739548684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72fe76023146dba45da725e18f8a3a53f41ec5fd", + "fields": { + "code_commune_insee": "25535", + "nom_de_la_commune": "SAULES", + "code_postal": "25580", + "coordonnees_gps": [ + 47.1247786594, + 6.20093911163 + ], + "libelle_d_acheminement": "SAULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20093911163, + 47.1247786594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c583cb808ca8fa9c11da2dfc8d8a40215afb754", + "fields": { + "code_commune_insee": "16075", + "nom_de_la_commune": "CHAMPAGNE VIGNY", + "code_postal": "16250", + "coordonnees_gps": [ + 45.507125249, + 0.0414709267054 + ], + "libelle_d_acheminement": "CHAMPAGNE VIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0414709267054, + 45.507125249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9938231da94b78c6f74597199467cbc5a7cc76c8", + "fields": { + "ligne_5": "MAISIERES NOTRE DAME", + "code_commune_insee": "25537", + "libelle_d_acheminement": "SCEY MAISIERES", + "code_postal": "25290", + "nom_de_la_commune": "SCEY MAISIERES", + "coordonnees_gps": [ + 47.1092770576, + 6.07924521048 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07924521048, + 47.1092770576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b0bf9c8ef14e26fc12e6b409c8250cebac8ae2c", + "fields": { + "code_commune_insee": "16077", + "nom_de_la_commune": "CHAMPMILLON", + "code_postal": "16290", + "coordonnees_gps": [ + 45.6471775425, + 0.00523666300318 + ], + "libelle_d_acheminement": "CHAMPMILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00523666300318, + 45.6471775425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee1825de20cfe3759c04628de12783adff7259f0", + "fields": { + "code_commune_insee": "25544", + "nom_de_la_commune": "SERVIN", + "code_postal": "25430", + "coordonnees_gps": [ + 47.3054149371, + 6.47182127802 + ], + "libelle_d_acheminement": "SERVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47182127802, + 47.3054149371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97d62435178510511cfe9b22e314e93af8905d90", + "fields": { + "code_commune_insee": "16078", + "nom_de_la_commune": "CHAMPNIERS", + "code_postal": "16430", + "coordonnees_gps": [ + 45.7166708711, + 0.196450542402 + ], + "libelle_d_acheminement": "CHAMPNIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.196450542402, + 45.7166708711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4acb23e3ed21b3f7c4d1d07cf0ceb005cd039978", + "fields": { + "code_commune_insee": "25555", + "nom_de_la_commune": "TAILLECOURT", + "code_postal": "25400", + "coordonnees_gps": [ + 47.4947013752, + 6.85393764134 + ], + "libelle_d_acheminement": "TAILLECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85393764134, + 47.4947013752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "162a702a8bfe9f39829afd6a8b522b961cbe0bed", + "fields": { + "code_commune_insee": "16081", + "nom_de_la_commune": "LA CHAPELLE", + "code_postal": "16140", + "coordonnees_gps": [ + 45.8307508643, + 0.0517878633867 + ], + "libelle_d_acheminement": "LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0517878633867, + 45.8307508643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f30752d36848d6bd6dde19c61546ea1d7f0002a0", + "fields": { + "code_commune_insee": "25557", + "nom_de_la_commune": "TALLENAY", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3056934565, + 6.02035372248 + ], + "libelle_d_acheminement": "TALLENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02035372248, + 47.3056934565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "777becfd207dba675d55a3bc62009054ae111835", + "fields": { + "ligne_5": "CHAVENAT", + "code_commune_insee": "16082", + "libelle_d_acheminement": "BOISNE LA TUDE", + "code_postal": "16320", + "nom_de_la_commune": "BOISNE LA TUDE", + "coordonnees_gps": [ + 45.4838960103, + 0.177074136817 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.177074136817, + 45.4838960103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "539cd5008ade8e1552311aa8c9ec55962d3e7c37", + "fields": { + "code_commune_insee": "25584", + "nom_de_la_commune": "VALOREILLE", + "code_postal": "25190", + "coordonnees_gps": [ + 47.2938610141, + 6.74127046044 + ], + "libelle_d_acheminement": "VALOREILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74127046044, + 47.2938610141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc53bdad49a84487f2cd34dcb0f2fc0a52c17e24", + "fields": { + "code_commune_insee": "16083", + "nom_de_la_commune": "CHARME", + "code_postal": "16140", + "coordonnees_gps": [ + 45.9500924838, + 0.120032287303 + ], + "libelle_d_acheminement": "CHARME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.120032287303, + 45.9500924838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26c01dd7ceab67ab39a7ac052922b182edb0e7a0", + "fields": { + "code_commune_insee": "25588", + "nom_de_la_commune": "VAUCLUSE", + "code_postal": "25380", + "coordonnees_gps": [ + 47.2483159585, + 6.69118061201 + ], + "libelle_d_acheminement": "VAUCLUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69118061201, + 47.2483159585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5003247d7a4fa26574818ea01c041135270c259", + "fields": { + "code_commune_insee": "16091", + "nom_de_la_commune": "CHATIGNAC", + "code_postal": "16480", + "coordonnees_gps": [ + 45.3484001611, + -0.00433406647489 + ], + "libelle_d_acheminement": "CHATIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00433406647489, + 45.3484001611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82ca6f9c9043a14778c2d1c90dd248473bf48284", + "fields": { + "code_commune_insee": "25598", + "nom_de_la_commune": "VENISE", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3499226615, + 6.11345012494 + ], + "libelle_d_acheminement": "VENISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11345012494, + 47.3499226615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6cf4223d2776966a842571bfcbab2f526b87637", + "fields": { + "code_commune_insee": "16096", + "nom_de_la_commune": "CHERVES CHATELARS", + "code_postal": "16310", + "coordonnees_gps": [ + 45.8106961072, + 0.554054470604 + ], + "libelle_d_acheminement": "CHERVES CHATELARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.554054470604, + 45.8106961072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef002605ebd4ef45937b9237b3503b5d9f8132b5", + "fields": { + "code_commune_insee": "25608", + "nom_de_la_commune": "LE VERNOY", + "code_postal": "25750", + "coordonnees_gps": [ + 47.5668061551, + 6.67140627153 + ], + "libelle_d_acheminement": "LE VERNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.67140627153, + 47.5668061551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eccef398cdddff9e5004eb8299da4a258636e966", + "fields": { + "code_commune_insee": "16098", + "nom_de_la_commune": "LA CHEVRERIE", + "code_postal": "16240", + "coordonnees_gps": [ + 46.0444193002, + 0.136305747393 + ], + "libelle_d_acheminement": "LA CHEVRERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.136305747393, + 46.0444193002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e54342c131fe4128611c3de262c45d752b67abdf", + "fields": { + "code_commune_insee": "25626", + "nom_de_la_commune": "VILLERS ST MARTIN", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3422489797, + 6.40450092241 + ], + "libelle_d_acheminement": "VILLERS ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40450092241, + 47.3422489797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb8d06f6495e81e5c5b54dfe1ffaae23ac02d52f", + "fields": { + "code_commune_insee": "16100", + "nom_de_la_commune": "CHIRAC", + "code_postal": "16150", + "coordonnees_gps": [ + 45.9131739872, + 0.685106701432 + ], + "libelle_d_acheminement": "CHIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.685106701432, + 45.9131739872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc856ef38393b9e4db8c8fc0929138caf7879245", + "fields": { + "code_commune_insee": "25629", + "nom_de_la_commune": "VOILLANS", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3909535657, + 6.4185381191 + ], + "libelle_d_acheminement": "VOILLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4185381191, + 47.3909535657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00809f799fa580bab05e9914000f70e30c6159c2", + "fields": { + "ligne_5": "VILLEGATS", + "code_commune_insee": "16110", + "libelle_d_acheminement": "COURCOME", + "code_postal": "16700", + "nom_de_la_commune": "COURCOME", + "coordonnees_gps": [ + 45.9857430952, + 0.133351057987 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.133351057987, + 45.9857430952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "733cd385277cd21ffdf1ebc8bccc71671a159f34", + "fields": { + "code_commune_insee": "25630", + "nom_de_la_commune": "VOIRES", + "code_postal": "25580", + "coordonnees_gps": [ + 47.099837579, + 6.25737122884 + ], + "libelle_d_acheminement": "VOIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25737122884, + 47.099837579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "029f6e126f083ff88a7ef8253135f4bc36fae25a", + "fields": { + "code_commune_insee": "16113", + "nom_de_la_commune": "LA COURONNE", + "code_postal": "16400", + "coordonnees_gps": [ + 45.6096373338, + 0.109121178707 + ], + "libelle_d_acheminement": "LA COURONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109121178707, + 45.6096373338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e12f9852c5593c310c375db9f72a9b870cbae00", + "fields": { + "code_commune_insee": "26008", + "nom_de_la_commune": "ANCONE", + "code_postal": "26200", + "coordonnees_gps": [ + 44.5798033579, + 4.72035521485 + ], + "libelle_d_acheminement": "ANCONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72035521485, + 44.5798033579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a577767d1708e4897186b08a2b0df2a9fa935f40", + "fields": { + "code_commune_insee": "16114", + "nom_de_la_commune": "COUTURE", + "code_postal": "16460", + "coordonnees_gps": [ + 45.9318430742, + 0.288257076109 + ], + "libelle_d_acheminement": "COUTURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.288257076109, + 45.9318430742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a3b03b1f4ffcd8795fb731e62912905fa1c3532", + "fields": { + "code_commune_insee": "26009", + "nom_de_la_commune": "ANDANCETTE", + "code_postal": "26140", + "coordonnees_gps": [ + 45.2464246163, + 4.81244292927 + ], + "libelle_d_acheminement": "ANDANCETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81244292927, + 45.2464246163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adf5295a01ec719759907527968eccac25f87a94", + "fields": { + "code_commune_insee": "16117", + "nom_de_la_commune": "CURAC", + "code_postal": "16210", + "coordonnees_gps": [ + 45.2960921096, + 0.0212788949535 + ], + "libelle_d_acheminement": "CURAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0212788949535, + 45.2960921096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e78259c58f918d25d19fdbd632a28952ef6d9ca", + "fields": { + "code_commune_insee": "26011", + "nom_de_la_commune": "AOUSTE SUR SYE", + "code_postal": "26400", + "coordonnees_gps": [ + 44.706679476, + 5.05730534436 + ], + "libelle_d_acheminement": "AOUSTE SUR SYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05730534436, + 44.706679476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39f577d2cc9c138a565d24110ef18f5347f206d9", + "fields": { + "code_commune_insee": "16119", + "nom_de_la_commune": "DIGNAC", + "code_postal": "16410", + "coordonnees_gps": [ + 45.5542534164, + 0.283491007595 + ], + "libelle_d_acheminement": "DIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.283491007595, + 45.5542534164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "632a73f1bb4b38c969cca0bde4473adada68baae", + "fields": { + "code_commune_insee": "26015", + "nom_de_la_commune": "AUBENASSON", + "code_postal": "26340", + "coordonnees_gps": [ + 44.6779492335, + 5.14503680871 + ], + "libelle_d_acheminement": "AUBENASSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14503680871, + 44.6779492335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93da072ed16e4d70cdddcd25beb8cdd839da3576", + "fields": { + "code_commune_insee": "16123", + "nom_de_la_commune": "ECHALLAT", + "code_postal": "16170", + "coordonnees_gps": [ + 45.7224468632, + -0.04347825715 + ], + "libelle_d_acheminement": "ECHALLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04347825715, + 45.7224468632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63874cbf7a88344a03f3f9cc669750d6390fb6f3", + "fields": { + "code_commune_insee": "26020", + "nom_de_la_commune": "LA REPARA AURIPLES", + "code_postal": "26400", + "coordonnees_gps": [ + 44.6614747098, + 4.9942784244 + ], + "libelle_d_acheminement": "LA REPARA AURIPLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9942784244, + 44.6614747098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4569d2c7995bf54284e673793b26d835cd738145", + "fields": { + "code_commune_insee": "16130", + "nom_de_la_commune": "LES ESSARDS", + "code_postal": "16210", + "coordonnees_gps": [ + 45.237352605, + 0.111052044267 + ], + "libelle_d_acheminement": "LES ESSARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.111052044267, + 45.237352605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86f19a05d0789ed74e0bc78bccceb5bdd8342a5a", + "fields": { + "code_commune_insee": "26023", + "nom_de_la_commune": "BARBIERES", + "code_postal": "26300", + "coordonnees_gps": [ + 44.9407100008, + 5.1621339854 + ], + "libelle_d_acheminement": "BARBIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1621339854, + 44.9407100008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cd088d3931f9947b8bda065c38445f51ee05e8b", + "fields": { + "code_commune_insee": "16133", + "nom_de_la_commune": "ETRIAC", + "code_postal": "16250", + "coordonnees_gps": [ + 45.527140208, + -0.00959232022065 + ], + "libelle_d_acheminement": "ETRIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00959232022065, + 45.527140208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f947d2a27db24a38bedb8477fc60cb0fa9138188", + "fields": { + "code_commune_insee": "26024", + "nom_de_la_commune": "BARCELONNE", + "code_postal": "26120", + "coordonnees_gps": [ + 44.8669475417, + 5.05494635699 + ], + "libelle_d_acheminement": "BARCELONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05494635699, + 44.8669475417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2174359e9d3251b383a4c6d5816b203c41a16016", + "fields": { + "code_commune_insee": "16139", + "nom_de_la_commune": "FLEURAC", + "code_postal": "16200", + "coordonnees_gps": [ + 45.7181471826, + -0.0857758671202 + ], + "libelle_d_acheminement": "FLEURAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0857758671202, + 45.7181471826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "078120b49ca98f7fd4d18ebe8e9b6d10a04cf847", + "fields": { + "code_commune_insee": "26028", + "nom_de_la_commune": "BATHERNAY", + "code_postal": "26260", + "coordonnees_gps": [ + 45.1829648207, + 4.99799784463 + ], + "libelle_d_acheminement": "BATHERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99799784463, + 45.1829648207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "743182c55c86169970f73698d8d40465c6651c8d", + "fields": { + "code_commune_insee": "16144", + "nom_de_la_commune": "FOUQUEURE", + "code_postal": "16140", + "coordonnees_gps": [ + 45.8847149549, + 0.0756577865437 + ], + "libelle_d_acheminement": "FOUQUEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0756577865437, + 45.8847149549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6fa6a81787ce062a410ea5ef4a89f64f92be152", + "fields": { + "code_commune_insee": "26032", + "nom_de_la_commune": "LA BAUME CORNILLANE", + "code_postal": "26120", + "coordonnees_gps": [ + 44.8296348413, + 5.04790034542 + ], + "libelle_d_acheminement": "LA BAUME CORNILLANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04790034542, + 44.8296348413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6670005a635428ad40f21891de9b02648e9d647a", + "fields": { + "code_commune_insee": "16150", + "nom_de_la_commune": "GENSAC LA PALLUE", + "code_postal": "16130", + "coordonnees_gps": [ + 45.6572262883, + -0.268790187481 + ], + "libelle_d_acheminement": "GENSAC LA PALLUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.268790187481, + 45.6572262883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "890b2ab0ed39cc7a8981d29ada90616c03a94ee2", + "fields": { + "code_commune_insee": "26047", + "nom_de_la_commune": "BELLEGARDE EN DIOIS", + "code_postal": "26470", + "coordonnees_gps": [ + 44.5369730578, + 5.43406204674 + ], + "libelle_d_acheminement": "BELLEGARDE EN DIOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43406204674, + 44.5369730578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51cc1041557e97538ef1e1e21e6379aa1719f8d3", + "fields": { + "code_commune_insee": "16151", + "nom_de_la_commune": "GENTE", + "code_postal": "16130", + "coordonnees_gps": [ + 45.636977239, + -0.306975028365 + ], + "libelle_d_acheminement": "GENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.306975028365, + 45.636977239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58f57e7c89fa24b33da07597447fa62a5a92f4f8", + "fields": { + "code_commune_insee": "26058", + "nom_de_la_commune": "BOURG LES VALENCE", + "code_postal": "26500", + "coordonnees_gps": [ + 44.9651094188, + 4.89411636376 + ], + "libelle_d_acheminement": "BOURG LES VALENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89411636376, + 44.9651094188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6890a064a8e8964f1eb74836744f15e17569f09d", + "fields": { + "code_commune_insee": "16152", + "nom_de_la_commune": "GIMEUX", + "code_postal": "16130", + "coordonnees_gps": [ + 45.6414379624, + -0.36669079786 + ], + "libelle_d_acheminement": "GIMEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.36669079786, + 45.6414379624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3106ea5068e934951dbcf78ab584d52906fb15d", + "fields": { + "code_commune_insee": "26064", + "nom_de_la_commune": "CHABEUIL", + "code_postal": "26120", + "coordonnees_gps": [ + 44.9082255842, + 5.00743034189 + ], + "libelle_d_acheminement": "CHABEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00743034189, + 44.9082255842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ea8129551d2104029b8036f92ac69d98aa638f5", + "fields": { + "code_commune_insee": "16154", + "nom_de_la_commune": "GOND PONTOUVRE", + "code_postal": "16160", + "coordonnees_gps": [ + 45.6797580078, + 0.165506204221 + ], + "libelle_d_acheminement": "GOND PONTOUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165506204221, + 45.6797580078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f390168b12fc580c87bf188fe93bfd7d2769cd30", + "fields": { + "code_commune_insee": "26074", + "nom_de_la_commune": "LA CHAPELLE EN VERCORS", + "code_postal": "26420", + "coordonnees_gps": [ + 44.9725101475, + 5.41245391515 + ], + "libelle_d_acheminement": "LA CHAPELLE EN VERCORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41245391515, + 44.9725101475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82c0466cfbdbe88cb539204a97ddc96fde547656", + "fields": { + "code_commune_insee": "16165", + "nom_de_la_commune": "HOULETTE", + "code_postal": "16200", + "coordonnees_gps": [ + 45.7564757122, + -0.210601025302 + ], + "libelle_d_acheminement": "HOULETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.210601025302, + 45.7564757122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfaa9673b5d3d0c67ddf9ad8f4d62bcab6bce9f4", + "fields": { + "code_commune_insee": "26083", + "nom_de_la_commune": "CHATEAUNEUF DE GALAURE", + "code_postal": "26330", + "coordonnees_gps": [ + 45.2359387102, + 4.95905904864 + ], + "libelle_d_acheminement": "CHATEAUNEUF DE GALAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95905904864, + 45.2359387102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a27a0dd5e1f9f6389997ddff7b091f01dbed764", + "fields": { + "code_commune_insee": "16168", + "nom_de_la_commune": "JAULDES", + "code_postal": "16560", + "coordonnees_gps": [ + 45.7808261202, + 0.250693934038 + ], + "libelle_d_acheminement": "JAULDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.250693934038, + 45.7808261202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff71ff03e4ce2e64580e0cd0d5b719f4a4290969", + "fields": { + "ligne_5": "CREYERS", + "code_commune_insee": "26086", + "libelle_d_acheminement": "CHATILLON EN DIOIS", + "code_postal": "26410", + "nom_de_la_commune": "CHATILLON EN DIOIS", + "coordonnees_gps": [ + 44.7022249654, + 5.48618538025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48618538025, + 44.7022249654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "251f17f2a944329bb6734d90e9a639a47ff23ff4", + "fields": { + "code_commune_insee": "16176", + "nom_de_la_commune": "LACHAISE", + "code_postal": "16300", + "coordonnees_gps": [ + 45.5169284894, + -0.24205405202 + ], + "libelle_d_acheminement": "LACHAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24205405202, + 45.5169284894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3668e8e777dd434225d804ecad1346e4cc581242", + "fields": { + "code_commune_insee": "26092", + "nom_de_la_commune": "CHAVANNES", + "code_postal": "26260", + "coordonnees_gps": [ + 45.1039110552, + 4.92378813351 + ], + "libelle_d_acheminement": "CHAVANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92378813351, + 45.1039110552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8c887db533fd76aee245bbf424da049d3f3b066", + "fields": { + "code_commune_insee": "16183", + "nom_de_la_commune": "LESIGNAC DURAND", + "code_postal": "16310", + "coordonnees_gps": [ + 45.8150582723, + 0.6446900761 + ], + "libelle_d_acheminement": "LESIGNAC DURAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.6446900761, + 45.8150582723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e2fb332ab227a63f60762d3cb552640c4ad94a1", + "fields": { + "code_commune_insee": "26093", + "nom_de_la_commune": "CLANSAYES", + "code_postal": "26130", + "coordonnees_gps": [ + 44.3776230906, + 4.80624945597 + ], + "libelle_d_acheminement": "CLANSAYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80624945597, + 44.3776230906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f192bb7b1f872f2a06b3df78a082d5a954b05161", + "fields": { + "code_commune_insee": "16187", + "nom_de_la_commune": "LINARS", + "code_postal": "16730", + "coordonnees_gps": [ + 45.6535202094, + 0.0737335176195 + ], + "libelle_d_acheminement": "LINARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0737335176195, + 45.6535202094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7439c31911aeb11ea9417e0f1546664123f4326", + "fields": { + "code_commune_insee": "26100", + "nom_de_la_commune": "COMBOVIN", + "code_postal": "26120", + "coordonnees_gps": [ + 44.8585100129, + 5.10771313744 + ], + "libelle_d_acheminement": "COMBOVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10771313744, + 44.8585100129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "265c6825e34df4fab1a786e3822c521d8dc4fe13", + "fields": { + "code_commune_insee": "16189", + "nom_de_la_commune": "LONDIGNY", + "code_postal": "16700", + "coordonnees_gps": [ + 46.0846035892, + 0.140380117543 + ], + "libelle_d_acheminement": "LONDIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.140380117543, + 46.0846035892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2dee7b4eeb4ee05d790f7ed3e545187b209153b", + "fields": { + "code_commune_insee": "26113", + "nom_de_la_commune": "DIE", + "code_postal": "26150", + "coordonnees_gps": [ + 44.7482217645, + 5.37640774818 + ], + "libelle_d_acheminement": "DIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37640774818, + 44.7482217645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81c4361cc20cb4145c7a60184cd042966b780aa7", + "fields": { + "code_commune_insee": "16190", + "nom_de_la_commune": "LONGRE", + "code_postal": "16240", + "coordonnees_gps": [ + 45.9956136861, + -0.0236778823819 + ], + "libelle_d_acheminement": "LONGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0236778823819, + 45.9956136861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6ddccb9d16ae8d0288989f5ac8419456661eb1b", + "fields": { + "code_commune_insee": "26116", + "nom_de_la_commune": "DONZERE", + "code_postal": "26290", + "coordonnees_gps": [ + 44.4321090221, + 4.70892869285 + ], + "libelle_d_acheminement": "DONZERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70892869285, + 44.4321090221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe6eea6227cbeb53dd41ebc52c9130782d5a52a1", + "fields": { + "ligne_5": "ROUMAZIERES", + "code_commune_insee": "16192", + "libelle_d_acheminement": "TERRES DE HAUTE CHARENTE", + "code_postal": "16270", + "nom_de_la_commune": "TERRES DE HAUTE CHARENTE", + "coordonnees_gps": [ + 45.9100102437, + 0.573121657498 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.573121657498, + 45.9100102437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e45db868cf8ebf286a0934c491066342ebf2ea15", + "fields": { + "code_commune_insee": "26117", + "nom_de_la_commune": "ECHEVIS", + "code_postal": "26190", + "coordonnees_gps": [ + 45.024234316, + 5.38546643164 + ], + "libelle_d_acheminement": "ECHEVIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38546643164, + 45.024234316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f97d252371a876c6a68ac8af505f63d98f2dfcd9", + "fields": { + "ligne_5": "ROUMAZIERES LOUBERT", + "code_commune_insee": "16192", + "libelle_d_acheminement": "TERRES DE HAUTE CHARENTE", + "code_postal": "16270", + "nom_de_la_commune": "TERRES DE HAUTE CHARENTE", + "coordonnees_gps": [ + 45.9100102437, + 0.573121657498 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.573121657498, + 45.9100102437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58409331b9fc3cf84cfbded40300e5b702f9cab8", + "fields": { + "code_commune_insee": "26118", + "nom_de_la_commune": "EPINOUZE", + "code_postal": "26210", + "coordonnees_gps": [ + 45.3116175099, + 4.93837201077 + ], + "libelle_d_acheminement": "EPINOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93837201077, + 45.3116175099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee1f6479e92ed4ef2015ed810ad3c4c270c91d66", + "fields": { + "code_commune_insee": "16197", + "nom_de_la_commune": "LA MAGDELEINE", + "code_postal": "16240", + "coordonnees_gps": [ + 46.0486518125, + 0.0781578029437 + ], + "libelle_d_acheminement": "LA MAGDELEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0781578029437, + 46.0486518125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c4c1606c2a8ea96822aa0d759c4130526c798fd", + "fields": { + "code_commune_insee": "26128", + "nom_de_la_commune": "EYGLUY ESCOULIN", + "code_postal": "26400", + "coordonnees_gps": [ + 44.7982493088, + 5.20984977249 + ], + "libelle_d_acheminement": "EYGLUY ESCOULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20984977249, + 44.7982493088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b4249b1342d5f7e80feba0086b5f107c82f9b2b", + "fields": { + "code_commune_insee": "16221", + "nom_de_la_commune": "MONS", + "code_postal": "16140", + "coordonnees_gps": [ + 45.874585555, + -0.0332855724322 + ], + "libelle_d_acheminement": "MONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0332855724322, + 45.874585555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "227788646e4295adcfd1adcbcc555a309ef442df", + "fields": { + "code_commune_insee": "26134", + "nom_de_la_commune": "FELINES SUR RIMANDOULE", + "code_postal": "26160", + "coordonnees_gps": [ + 44.5855071367, + 5.05544129691 + ], + "libelle_d_acheminement": "FELINES SUR RIMANDOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05544129691, + 44.5855071367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7cce722e06532fbdbe7cd3c1295240042672aed", + "fields": { + "code_commune_insee": "16222", + "nom_de_la_commune": "MONTBOYER", + "code_postal": "16620", + "coordonnees_gps": [ + 45.3315158314, + 0.0690097423513 + ], + "libelle_d_acheminement": "MONTBOYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0690097423513, + 45.3315158314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eecdd70786a3dc6cd32fccea8ece3088e9da92c", + "fields": { + "code_commune_insee": "26142", + "nom_de_la_commune": "GLANDAGE", + "code_postal": "26410", + "coordonnees_gps": [ + 44.6985798592, + 5.61337993572 + ], + "libelle_d_acheminement": "GLANDAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61337993572, + 44.6985798592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4837cf15bb069214e1b94c5d147e0bab15afafb1", + "fields": { + "code_commune_insee": "16223", + "nom_de_la_commune": "MONTBRON", + "code_postal": "16220", + "coordonnees_gps": [ + 45.667656871, + 0.504316384558 + ], + "libelle_d_acheminement": "MONTBRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.504316384558, + 45.667656871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbe7190718a94068e8b6ee892d5cc1e6d26543dd", + "fields": { + "code_commune_insee": "26145", + "nom_de_la_commune": "LES GRANGES GONTARDES", + "code_postal": "26290", + "coordonnees_gps": [ + 44.4276255565, + 4.75667290767 + ], + "libelle_d_acheminement": "LES GRANGES GONTARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75667290767, + 44.4276255565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e241e8df8b226ca46693da025e8ba4cc449bc472", + "fields": { + "code_commune_insee": "16225", + "nom_de_la_commune": "MONTEMBOEUF", + "code_postal": "16310", + "coordonnees_gps": [ + 45.7738787675, + 0.551136998408 + ], + "libelle_d_acheminement": "MONTEMBOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.551136998408, + 45.7738787675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5be39f6ab7df6f0f0477d155517cfef7549a69cc", + "fields": { + "code_commune_insee": "26149", + "nom_de_la_commune": "HOSTUN", + "code_postal": "26730", + "coordonnees_gps": [ + 45.0322321943, + 5.20271143898 + ], + "libelle_d_acheminement": "HOSTUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20271143898, + 45.0322321943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7998f3da163459fe42d78c50067860c2017c8a7", + "fields": { + "code_commune_insee": "16226", + "nom_de_la_commune": "MONTIGNAC CHARENTE", + "code_postal": "16330", + "coordonnees_gps": [ + 45.7802147183, + 0.10266574824 + ], + "libelle_d_acheminement": "MONTIGNAC CHARENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10266574824, + 45.7802147183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "931adbf7766a0d21946c7909bd991c42799a83a9", + "fields": { + "code_commune_insee": "26165", + "nom_de_la_commune": "LIVRON SUR DROME", + "code_postal": "26250", + "coordonnees_gps": [ + 44.7874186099, + 4.83899378303 + ], + "libelle_d_acheminement": "LIVRON SUR DROME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83899378303, + 44.7874186099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "617a566ed6bf502aa856c03ecc07ba24ca294329", + "fields": { + "ligne_5": "AIGNES ET PUYPEROUX", + "code_commune_insee": "16230", + "libelle_d_acheminement": "MONTMOREAU", + "code_postal": "16190", + "nom_de_la_commune": "MONTMOREAU", + "coordonnees_gps": [ + 45.4225777872, + 0.127349505692 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.127349505692, + 45.4225777872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5483b223adbe0ce0563e5365012ecf099def4e34", + "fields": { + "code_commune_insee": "26168", + "nom_de_la_commune": "LUS LA CROIX HAUTE", + "code_postal": "26620", + "coordonnees_gps": [ + 44.6828031377, + 5.72316122016 + ], + "libelle_d_acheminement": "LUS LA CROIX HAUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72316122016, + 44.6828031377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bd87483aee21a90affb1336e26e5a741c3f04db", + "fields": { + "ligne_5": "ST EUTROPE", + "code_commune_insee": "16230", + "libelle_d_acheminement": "MONTMOREAU", + "code_postal": "16190", + "nom_de_la_commune": "MONTMOREAU", + "coordonnees_gps": [ + 45.4225777872, + 0.127349505692 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.127349505692, + 45.4225777872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dca5d65c8fc9a3d8f04a50124a23f4886b4699ea", + "fields": { + "code_commune_insee": "26172", + "nom_de_la_commune": "MANTHES", + "code_postal": "26210", + "coordonnees_gps": [ + 45.3074924961, + 5.00340183347 + ], + "libelle_d_acheminement": "MANTHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00340183347, + 45.3074924961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c17188db2cdc1dc51484edbfd4fecd1e65227ae", + "fields": { + "ligne_5": "ST LAURENT DE BELZAGOT", + "code_commune_insee": "16230", + "libelle_d_acheminement": "MONTMOREAU", + "code_postal": "16190", + "nom_de_la_commune": "MONTMOREAU", + "coordonnees_gps": [ + 45.4225777872, + 0.127349505692 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.127349505692, + 45.4225777872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c48a0b70af493d64306d63e98079f2dc101a6627", + "fields": { + "code_commune_insee": "26177", + "nom_de_la_commune": "MARSAZ", + "code_postal": "26260", + "coordonnees_gps": [ + 45.1211976778, + 4.932214307 + ], + "libelle_d_acheminement": "MARSAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.932214307, + 45.1211976778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b9f16270e6aaf7e38ed7f3d466dd00fcf19eabd", + "fields": { + "code_commune_insee": "16234", + "nom_de_la_commune": "MOULIDARS", + "code_postal": "16290", + "coordonnees_gps": [ + 45.6676169254, + -0.0379131392099 + ], + "libelle_d_acheminement": "MOULIDARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0379131392099, + 45.6676169254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "385ad964222eb9731b5c62581b7a02125e5cba6b", + "fields": { + "ligne_5": "VEAUNES", + "code_commune_insee": "26179", + "libelle_d_acheminement": "MERCUROL VEAUNES", + "code_postal": "26600", + "nom_de_la_commune": "MERCUROL VEAUNES", + "coordonnees_gps": [ + 45.0714881151, + 4.88879562324 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88879562324, + 45.0714881151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d48202f49c711aa30ea73e4dc884c8f0b00b3416", + "fields": { + "code_commune_insee": "16237", + "nom_de_la_commune": "MOUTON", + "code_postal": "16460", + "coordonnees_gps": [ + 45.8874435614, + 0.236451070535 + ], + "libelle_d_acheminement": "MOUTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236451070535, + 45.8874435614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d0726afddf9309e41a5162044abfca01f5de6ed", + "fields": { + "code_commune_insee": "26182", + "nom_de_la_commune": "MIRABEL AUX BARONNIES", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3146283758, + 5.10177171848 + ], + "libelle_d_acheminement": "MIRABEL AUX BARONNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10177171848, + 44.3146283758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1655ba55c009bcc40025325a242ea8f4868a3070", + "fields": { + "code_commune_insee": "16244", + "nom_de_la_commune": "NERSAC", + "code_postal": "16440", + "coordonnees_gps": [ + 45.6253691605, + 0.0621903047823 + ], + "libelle_d_acheminement": "NERSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0621903047823, + 45.6253691605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3dedca20161dfb25eec55dc4eceee7eee27a593", + "fields": { + "code_commune_insee": "26183", + "nom_de_la_commune": "MIRABEL ET BLACONS", + "code_postal": "26400", + "coordonnees_gps": [ + 44.7140812623, + 5.12302837932 + ], + "libelle_d_acheminement": "MIRABEL ET BLACONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12302837932, + 44.7140812623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f964356278abde7a26bf821c8141a4db00291447", + "fields": { + "code_commune_insee": "16256", + "nom_de_la_commune": "PASSIRAC", + "code_postal": "16480", + "coordonnees_gps": [ + 45.3475668313, + -0.0619236639057 + ], + "libelle_d_acheminement": "PASSIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0619236639057, + 45.3475668313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "193cf6e38f1fcca99b60e46ae9d4237aa508d549", + "fields": { + "code_commune_insee": "26192", + "nom_de_la_commune": "MONTBRISON SUR LEZ", + "code_postal": "26770", + "coordonnees_gps": [ + 44.4341876361, + 5.02273025287 + ], + "libelle_d_acheminement": "MONTBRISON SUR LEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02273025287, + 44.4341876361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "783b9d003df745c114a199c48513220f3220f9d9", + "fields": { + "code_commune_insee": "16270", + "nom_de_la_commune": "PRESSIGNAC", + "code_postal": "16150", + "coordonnees_gps": [ + 45.8193617706, + 0.739906904422 + ], + "libelle_d_acheminement": "PRESSIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.739906904422, + 45.8193617706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55af9634a0f762c9df07bf92dd8034387b13b41a", + "fields": { + "code_commune_insee": "26198", + "nom_de_la_commune": "MONTELIMAR", + "code_postal": "26200", + "coordonnees_gps": [ + 44.5540845734, + 4.74869387765 + ], + "libelle_d_acheminement": "MONTELIMAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74869387765, + 44.5540845734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8604514e69b487b67b526b2357b9264748295f92", + "fields": { + "code_commune_insee": "16273", + "nom_de_la_commune": "RAIX", + "code_postal": "16240", + "coordonnees_gps": [ + 46.0041231051, + 0.11629336996 + ], + "libelle_d_acheminement": "RAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11629336996, + 46.0041231051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4551efaae034872769dd3d0c4eeeaef03ea09751", + "fields": { + "code_commune_insee": "26201", + "nom_de_la_commune": "MONTGUERS", + "code_postal": "26170", + "coordonnees_gps": [ + 44.301845332, + 5.47245831893 + ], + "libelle_d_acheminement": "MONTGUERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47245831893, + 44.301845332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d353b3664c49e9860ad0e24ae867da62f38c16f", + "fields": { + "ligne_5": "GOURVILLE", + "code_commune_insee": "16286", + "libelle_d_acheminement": "ROUILLAC", + "code_postal": "16170", + "nom_de_la_commune": "ROUILLAC", + "coordonnees_gps": [ + 45.781947293, + -0.074390136916 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.074390136916, + 45.781947293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "896c4bffd805cd2f8be1facaf2fbe842bb15ceed", + "fields": { + "code_commune_insee": "26203", + "nom_de_la_commune": "MONTJOYER", + "code_postal": "26230", + "coordonnees_gps": [ + 44.4826616889, + 4.87794122757 + ], + "libelle_d_acheminement": "MONTJOYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87794122757, + 44.4826616889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41b06a6fa1f3c0213b491b04b4f5358313fb432c", + "fields": { + "code_commune_insee": "16290", + "nom_de_la_commune": "ROUZEDE", + "code_postal": "16220", + "coordonnees_gps": [ + 45.7200534944, + 0.562265132073 + ], + "libelle_d_acheminement": "ROUZEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.562265132073, + 45.7200534944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f524ee5de6a39d5f2858bbae91980e6d9dcd1dd", + "fields": { + "ligne_5": "MIRIBEL", + "code_commune_insee": "26210", + "libelle_d_acheminement": "VALHERBASSE", + "code_postal": "26350", + "nom_de_la_commune": "VALHERBASSE", + "coordonnees_gps": [ + 45.2264302385, + 5.14289630898 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14289630898, + 45.2264302385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b1c050450d7e169f8bd70180dfc4194d999c65a", + "fields": { + "code_commune_insee": "16292", + "nom_de_la_commune": "RUFFEC", + "code_postal": "16700", + "coordonnees_gps": [ + 46.039455304, + 0.199192104707 + ], + "libelle_d_acheminement": "RUFFEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.199192104707, + 46.039455304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "087dcf9e6df34e4caabbb6f918c096cdbbcd1142", + "fields": { + "ligne_5": "ST BONNET DE VALCLERIEUX", + "code_commune_insee": "26210", + "libelle_d_acheminement": "VALHERBASSE", + "code_postal": "26350", + "nom_de_la_commune": "VALHERBASSE", + "coordonnees_gps": [ + 45.2264302385, + 5.14289630898 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14289630898, + 45.2264302385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "197f4ecc927036b3f6f2a3b7d7728d0871b42342", + "fields": { + "ligne_5": "ST AMANT DE BONNIEURE", + "code_commune_insee": "16300", + "libelle_d_acheminement": "VAL DE BONNIEURE", + "code_postal": "16230", + "nom_de_la_commune": "VAL DE BONNIEURE", + "coordonnees_gps": [ + 45.8371884276, + 0.272464077721 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.272464077721, + 45.8371884276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb377e41efd90c4a3a363450a22629d8115ea769", + "fields": { + "code_commune_insee": "26214", + "nom_de_la_commune": "MORNANS", + "code_postal": "26460", + "coordonnees_gps": [ + 44.6208884748, + 5.13309651112 + ], + "libelle_d_acheminement": "MORNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13309651112, + 44.6208884748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "256b9ab480a8f30c9db4739e6d3b55832ffcd959", + "fields": { + "ligne_5": "ST ANGEAU", + "code_commune_insee": "16300", + "libelle_d_acheminement": "VAL DE BONNIEURE", + "code_postal": "16230", + "nom_de_la_commune": "VAL DE BONNIEURE", + "coordonnees_gps": [ + 45.8371884276, + 0.272464077721 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.272464077721, + 45.8371884276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ecaad673507fc0829611291a6e55bb7a2775059", + "fields": { + "code_commune_insee": "26215", + "nom_de_la_commune": "LA MOTTE CHALANCON", + "code_postal": "26470", + "coordonnees_gps": [ + 44.4953213004, + 5.38478825225 + ], + "libelle_d_acheminement": "LA MOTTE CHALANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38478825225, + 44.4953213004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f690cb51444a9cf29892a07ed87f8b4c7419e728", + "fields": { + "code_commune_insee": "16315", + "nom_de_la_commune": "ST FELIX", + "code_postal": "16480", + "coordonnees_gps": [ + 45.3707836082, + 0.0116218652853 + ], + "libelle_d_acheminement": "ST FELIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0116218652853, + 45.3707836082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5da5c1b360fa9b4175e0d4066c95c21043ca85b", + "fields": { + "code_commune_insee": "26218", + "nom_de_la_commune": "MOURS ST EUSEBE", + "code_postal": "26540", + "coordonnees_gps": [ + 45.0710106759, + 5.05923924282 + ], + "libelle_d_acheminement": "MOURS ST EUSEBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05923924282, + 45.0710106759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08475e73e3074e5bc47f3c0ac11cccf6e8440762", + "fields": { + "code_commune_insee": "16325", + "nom_de_la_commune": "ST GOURSON", + "code_postal": "16700", + "coordonnees_gps": [ + 45.9521446438, + 0.312520807637 + ], + "libelle_d_acheminement": "ST GOURSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.312520807637, + 45.9521446438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0093a958f2df956f6f3b26da85040eb80af958a1", + "fields": { + "code_commune_insee": "26224", + "nom_de_la_commune": "OURCHES", + "code_postal": "26120", + "coordonnees_gps": [ + 44.8061327174, + 5.04664200561 + ], + "libelle_d_acheminement": "OURCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04664200561, + 44.8061327174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15a1789686409a77198b2c586cb836f0bacc8332", + "fields": { + "ligne_5": "AUGE", + "code_commune_insee": "16339", + "libelle_d_acheminement": "VAL D AUGE", + "code_postal": "16170", + "nom_de_la_commune": "VAL D AUGE", + "coordonnees_gps": [ + 45.8511416602, + -0.0872262855566 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0872262855566, + 45.8511416602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce5e1074f832c6388643e12f38784cfc25497431", + "fields": { + "code_commune_insee": "26236", + "nom_de_la_commune": "PIERRELONGUE", + "code_postal": "26170", + "coordonnees_gps": [ + 44.2495510618, + 5.21417355869 + ], + "libelle_d_acheminement": "PIERRELONGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21417355869, + 44.2495510618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fae3812ac9e141528f2337a45089ec4222bea04", + "fields": { + "ligne_5": "AUGE ST MEDARD", + "code_commune_insee": "16339", + "libelle_d_acheminement": "VAL D AUGE", + "code_postal": "16170", + "nom_de_la_commune": "VAL D AUGE", + "coordonnees_gps": [ + 45.8511416602, + -0.0872262855566 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0872262855566, + 45.8511416602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "119d37aadacf01c25f372637938897181b624167", + "fields": { + "code_commune_insee": "26241", + "nom_de_la_commune": "LE POET CELARD", + "code_postal": "26460", + "coordonnees_gps": [ + 44.5979359897, + 5.10082918034 + ], + "libelle_d_acheminement": "LE POET CELARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10082918034, + 44.5979359897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4214c74f7b2410a083d7eb679f452690582bf6b", + "fields": { + "code_commune_insee": "16342", + "nom_de_la_commune": "ST PALAIS DU NE", + "code_postal": "16300", + "coordonnees_gps": [ + 45.5408910376, + -0.28660127584 + ], + "libelle_d_acheminement": "ST PALAIS DU NE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.28660127584, + 45.5408910376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7453225a72dcc881ccb66df99225077bd80dc4e", + "fields": { + "code_commune_insee": "26262", + "nom_de_la_commune": "RECOUBEAU JANSAC", + "code_postal": "26310", + "coordonnees_gps": [ + 44.6516625854, + 5.40361308462 + ], + "libelle_d_acheminement": "RECOUBEAU JANSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40361308462, + 44.6516625854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d894f22bd4d88d2a8b9d24f177196549e57c30b", + "fields": { + "code_commune_insee": "16346", + "nom_de_la_commune": "ST QUENTIN DE CHALAIS", + "code_postal": "16210", + "coordonnees_gps": [ + 45.2429849506, + 0.0733899615391 + ], + "libelle_d_acheminement": "ST QUENTIN DE CHALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0733899615391, + 45.2429849506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49316f34f95e0e7a99bf5f61786883054b6124c6", + "fields": { + "code_commune_insee": "26264", + "nom_de_la_commune": "REMUZAT", + "code_postal": "26510", + "coordonnees_gps": [ + 44.4038075452, + 5.35604206561 + ], + "libelle_d_acheminement": "REMUZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35604206561, + 44.4038075452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f01f99c6685f33668b028fc935950d0f9761f8b", + "fields": { + "code_commune_insee": "16350", + "nom_de_la_commune": "ST SEVERIN", + "code_postal": "16390", + "coordonnees_gps": [ + 45.3109814226, + 0.245248838194 + ], + "libelle_d_acheminement": "ST SEVERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.245248838194, + 45.3109814226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac0255c93bee72f729c46fe30f14d22d2be1ac68", + "fields": { + "code_commune_insee": "26268", + "nom_de_la_commune": "ROCHEBAUDIN", + "code_postal": "26160", + "coordonnees_gps": [ + 44.5748560489, + 5.03096278757 + ], + "libelle_d_acheminement": "ROCHEBAUDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03096278757, + 44.5748560489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec30aeae5fa7f5e222806cc5b038a7955d568479", + "fields": { + "code_commune_insee": "16353", + "nom_de_la_commune": "ST SORNIN", + "code_postal": "16220", + "coordonnees_gps": [ + 45.6950797067, + 0.443014259379 + ], + "libelle_d_acheminement": "ST SORNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.443014259379, + 45.6950797067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11e114fe64727c49d3abc39bbdefcacb7f5288f1", + "fields": { + "code_commune_insee": "26279", + "nom_de_la_commune": "LA ROCHETTE DU BUIS", + "code_postal": "26170", + "coordonnees_gps": [ + 44.2610706065, + 5.42166701119 + ], + "libelle_d_acheminement": "LA ROCHETTE DU BUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42166701119, + 44.2610706065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dd57f0697cee0ffbd198acddf1eccef9d564b0d", + "fields": { + "code_commune_insee": "16354", + "nom_de_la_commune": "STE SOULINE", + "code_postal": "16480", + "coordonnees_gps": [ + 45.3774799244, + -0.0211237715554 + ], + "libelle_d_acheminement": "STE SOULINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0211237715554, + 45.3774799244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf2254df2187641ffe0c9340bb80886233f12af9", + "fields": { + "code_commune_insee": "26281", + "nom_de_la_commune": "ROMANS SUR ISERE", + "code_postal": "26100", + "coordonnees_gps": [ + 45.0547531985, + 5.03797756012 + ], + "libelle_d_acheminement": "ROMANS SUR ISERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03797756012, + 45.0547531985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc2bbd25c6f24db2631379ea786befaec286b4da", + "fields": { + "code_commune_insee": "16362", + "nom_de_la_commune": "SALLES LAVALETTE", + "code_postal": "16190", + "coordonnees_gps": [ + 45.3880236045, + 0.23183888353 + ], + "libelle_d_acheminement": "SALLES LAVALETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.23183888353, + 45.3880236045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc92e53b3cf6d895d0cd49ff7201eee8c3283bd0", + "fields": { + "code_commune_insee": "26282", + "nom_de_la_commune": "ROMEYER", + "code_postal": "26150", + "coordonnees_gps": [ + 44.7925236938, + 5.43666252412 + ], + "libelle_d_acheminement": "ROMEYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43666252412, + 44.7925236938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d649fcda40875149d676e64e337d3eb3b292b517", + "fields": { + "code_commune_insee": "16364", + "nom_de_la_commune": "SAUVAGNAC", + "code_postal": "16310", + "coordonnees_gps": [ + 45.7495247956, + 0.647983960034 + ], + "libelle_d_acheminement": "SAUVAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.647983960034, + 45.7495247956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a148449f456a00f0413519b9d4f4f59030a1a38a", + "fields": { + "code_commune_insee": "26284", + "nom_de_la_commune": "ROUSSAS", + "code_postal": "26230", + "coordonnees_gps": [ + 44.4429508183, + 4.78702172828 + ], + "libelle_d_acheminement": "ROUSSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78702172828, + 44.4429508183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b499376ba19bf3e59be1a66076ef85d2a38e9963", + "fields": { + "code_commune_insee": "16369", + "nom_de_la_commune": "SIGOGNE", + "code_postal": "16200", + "coordonnees_gps": [ + 45.7376347381, + -0.165302283456 + ], + "libelle_d_acheminement": "SIGOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.165302283456, + 45.7376347381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deca0e0374f698f4a3929f4e50aab7982aa7e9a2", + "fields": { + "code_commune_insee": "26291", + "nom_de_la_commune": "ST ANDEOL", + "code_postal": "26150", + "coordonnees_gps": [ + 44.8078998133, + 5.26289331722 + ], + "libelle_d_acheminement": "ST ANDEOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26289331722, + 44.8078998133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b647c637aa8036a0801b717c854f567ee9a6d83", + "fields": { + "code_commune_insee": "16370", + "nom_de_la_commune": "SIREUIL", + "code_postal": "16440", + "coordonnees_gps": [ + 45.6203072664, + 0.0196009850937 + ], + "libelle_d_acheminement": "SIREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0196009850937, + 45.6203072664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67a37f2658f387f43b7a82bcdd8585d1450579b9", + "fields": { + "code_commune_insee": "26299", + "nom_de_la_commune": "STE CROIX", + "code_postal": "26150", + "coordonnees_gps": [ + 44.7715735756, + 5.28737455542 + ], + "libelle_d_acheminement": "STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28737455542, + 44.7715735756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed073598190dc19d37178c7b97d5c3c1a77a9bba", + "fields": { + "code_commune_insee": "16373", + "nom_de_la_commune": "SOUVIGNE", + "code_postal": "16240", + "coordonnees_gps": [ + 45.9708257553, + 0.0505294709471 + ], + "libelle_d_acheminement": "SOUVIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0505294709471, + 45.9708257553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a006e664441413d99f648e1e4820dfc7c32e9349", + "fields": { + "code_commune_insee": "26305", + "nom_de_la_commune": "ST GERVAIS SUR ROUBION", + "code_postal": "26160", + "coordonnees_gps": [ + 44.5837379912, + 4.89798294347 + ], + "libelle_d_acheminement": "ST GERVAIS SUR ROUBION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89798294347, + 44.5837379912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "015ce0806e50922efb0167f275202d463f7df687", + "fields": { + "code_commune_insee": "16374", + "nom_de_la_commune": "SOYAUX", + "code_postal": "16800", + "coordonnees_gps": [ + 45.6397669318, + 0.206625703571 + ], + "libelle_d_acheminement": "SOYAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.206625703571, + 45.6397669318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e312a2bdb60d78a4095b312aa0a8142d3e15e593", + "fields": { + "code_commune_insee": "26326", + "nom_de_la_commune": "ST RESTITUT", + "code_postal": "26130", + "coordonnees_gps": [ + 44.327032986, + 4.79615124312 + ], + "libelle_d_acheminement": "ST RESTITUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79615124312, + 44.327032986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb5cf77f231358b2f12039e95e2fc98897ac819c", + "fields": { + "code_commune_insee": "16375", + "nom_de_la_commune": "SUAUX", + "code_postal": "16260", + "coordonnees_gps": [ + 45.8479006288, + 0.513524239877 + ], + "libelle_d_acheminement": "SUAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.513524239877, + 45.8479006288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53621fb82702124a0190560e529ea85ca84b5494", + "fields": { + "code_commune_insee": "26328", + "nom_de_la_commune": "ST SAUVEUR EN DIOIS", + "code_postal": "26340", + "coordonnees_gps": [ + 44.6743762083, + 5.16582168009 + ], + "libelle_d_acheminement": "ST SAUVEUR EN DIOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16582168009, + 44.6743762083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3d1284ef522b8596b874030c565b67f2ace9a3f", + "fields": { + "code_commune_insee": "16380", + "nom_de_la_commune": "LE TATRE", + "code_postal": "16360", + "coordonnees_gps": [ + 45.3977502437, + -0.200743802609 + ], + "libelle_d_acheminement": "LE TATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.200743802609, + 45.3977502437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1375b1481a5defd24abaf0cab64f11e233e483f", + "fields": { + "code_commune_insee": "26332", + "nom_de_la_commune": "ST UZE", + "code_postal": "26240", + "coordonnees_gps": [ + 45.1900433327, + 4.86747069605 + ], + "libelle_d_acheminement": "ST UZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86747069605, + 45.1900433327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89c82ca0da57c6c010d666de2be34e476c6d574e", + "fields": { + "code_commune_insee": "16382", + "nom_de_la_commune": "TORSAC", + "code_postal": "16410", + "coordonnees_gps": [ + 45.5690420588, + 0.208774743637 + ], + "libelle_d_acheminement": "TORSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.208774743637, + 45.5690420588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20099e6150207a3a92f29ae7db27a451b3ac8cfb", + "fields": { + "code_commune_insee": "26334", + "nom_de_la_commune": "SALETTES", + "code_postal": "26160", + "coordonnees_gps": [ + 44.5660899687, + 4.96944510091 + ], + "libelle_d_acheminement": "SALETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96944510091, + 44.5660899687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f578e4f76b64c61e89b007820519909d1cf4447e", + "fields": { + "code_commune_insee": "16388", + "nom_de_la_commune": "TROIS PALIS", + "code_postal": "16730", + "coordonnees_gps": [ + 45.6399613297, + 0.0464434707725 + ], + "libelle_d_acheminement": "TROIS PALIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0464434707725, + 45.6399613297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dd4aed71d6c8871c85f83b846e99dbbccc8a40b", + "fields": { + "code_commune_insee": "26342", + "nom_de_la_commune": "SOLERIEUX", + "code_postal": "26130", + "coordonnees_gps": [ + 44.3477984022, + 4.82557061801 + ], + "libelle_d_acheminement": "SOLERIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82557061801, + 44.3477984022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97e002b458b3e2aca7b6334c6668183fff3d3748", + "fields": { + "code_commune_insee": "16401", + "nom_de_la_commune": "VERVANT", + "code_postal": "16330", + "coordonnees_gps": [ + 45.8353596714, + 0.129842160718 + ], + "libelle_d_acheminement": "VERVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.129842160718, + 45.8353596714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d0edd4768d04a4fbd56c105e31fe85a5865c79e", + "fields": { + "code_commune_insee": "26344", + "nom_de_la_commune": "SOYANS", + "code_postal": "26400", + "coordonnees_gps": [ + 44.6375234986, + 5.02542323659 + ], + "libelle_d_acheminement": "SOYANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02542323659, + 44.6375234986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "281cef8017f2f050a3a65e02ff022eeb7cf4db59", + "fields": { + "code_commune_insee": "16409", + "nom_de_la_commune": "VILLEFAGNAN", + "code_postal": "16240", + "coordonnees_gps": [ + 46.0118055338, + 0.0886198122699 + ], + "libelle_d_acheminement": "VILLEFAGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0886198122699, + 46.0118055338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db250fe521887b44312ff3657b4789deb5467896", + "fields": { + "code_commune_insee": "26351", + "nom_de_la_commune": "LES TONILS", + "code_postal": "26460", + "coordonnees_gps": [ + 44.5863590312, + 5.21024609596 + ], + "libelle_d_acheminement": "LES TONILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21024609596, + 44.5863590312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d15773e65da7b12dd1ce69d8226b8ea5127b2fc", + "fields": { + "code_commune_insee": "16413", + "nom_de_la_commune": "VILLIERS LE ROUX", + "code_postal": "16240", + "coordonnees_gps": [ + 46.0512318303, + 0.109503463372 + ], + "libelle_d_acheminement": "VILLIERS LE ROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109503463372, + 46.0512318303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f598751cfc9723d28067caf04d2110badcc5b07", + "fields": { + "code_commune_insee": "26358", + "nom_de_la_commune": "UPIE", + "code_postal": "26120", + "coordonnees_gps": [ + 44.7990451826, + 4.98046228806 + ], + "libelle_d_acheminement": "UPIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98046228806, + 44.7990451826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b83ef98d866cdbbb858749e6e727c0a8993fd4f", + "fields": { + "code_commune_insee": "16414", + "nom_de_la_commune": "VILLOGNON", + "code_postal": "16230", + "coordonnees_gps": [ + 45.8607875247, + 0.108513069794 + ], + "libelle_d_acheminement": "VILLOGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.108513069794, + 45.8607875247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ffe1c70a6f34f19b3cbc1dcd0315e4efb4547d3", + "fields": { + "code_commune_insee": "26363", + "nom_de_la_commune": "VALOUSE", + "code_postal": "26110", + "coordonnees_gps": [ + 44.4594883519, + 5.19108928218 + ], + "libelle_d_acheminement": "VALOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19108928218, + 44.4594883519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d005f424c306d1cfbb9a139f705ad80e85f81214", + "fields": { + "code_commune_insee": "16420", + "nom_de_la_commune": "VOULGEZAC", + "code_postal": "16250", + "coordonnees_gps": [ + 45.5124136386, + 0.125737784928 + ], + "libelle_d_acheminement": "VOULGEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.125737784928, + 45.5124136386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2528d2464ff7bfbf06b06ac637c3145793efcd09", + "fields": { + "ligne_5": "LA ROCHETTE SUR CREST", + "code_commune_insee": "26365", + "libelle_d_acheminement": "VAUNAVEYS LA ROCHETTE", + "code_postal": "26400", + "nom_de_la_commune": "VAUNAVEYS LA ROCHETTE", + "coordonnees_gps": [ + 44.7780399465, + 5.03229421632 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03229421632, + 44.7780399465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8318cb95d99c89e91a3a6f984abe8877350994f7", + "fields": { + "ligne_5": "LA CHAPELLE BATON", + "code_commune_insee": "17013", + "libelle_d_acheminement": "ANTEZANT LA CHAPELLE", + "code_postal": "17400", + "nom_de_la_commune": "ANTEZANT LA CHAPELLE", + "coordonnees_gps": [ + 45.9950682393, + -0.482871743818 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.482871743818, + 45.9950682393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73eef9458f77fb9547af5b8174568db54261cbfa", + "fields": { + "code_commune_insee": "26369", + "nom_de_la_commune": "VERCLAUSE", + "code_postal": "26510", + "coordonnees_gps": [ + 44.3954497171, + 5.40735314381 + ], + "libelle_d_acheminement": "VERCLAUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40735314381, + 44.3954497171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d98386522f145bd9fea52d3a26fbce25c0e2fa60", + "fields": { + "code_commune_insee": "17016", + "nom_de_la_commune": "ARCHIAC", + "code_postal": "17520", + "coordonnees_gps": [ + 45.5228923637, + -0.301856482703 + ], + "libelle_d_acheminement": "ARCHIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.301856482703, + 45.5228923637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec61357dd37168c00347cf312c59c84153e0ed1e", + "fields": { + "code_commune_insee": "26370", + "nom_de_la_commune": "VERCOIRAN", + "code_postal": "26170", + "coordonnees_gps": [ + 44.2937794965, + 5.35057643289 + ], + "libelle_d_acheminement": "VERCOIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35057643289, + 44.2937794965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46ed8fbc3f5dfad931ddf2b6daa50655ddd56caf", + "fields": { + "code_commune_insee": "17020", + "nom_de_la_commune": "ARTHENAC", + "code_postal": "17520", + "coordonnees_gps": [ + 45.5031576669, + -0.323776644453 + ], + "libelle_d_acheminement": "ARTHENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.323776644453, + 45.5031576669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36a9ff31b2dc75db884c6ae73b9b696d29b52c78", + "fields": { + "code_commune_insee": "26371", + "nom_de_la_commune": "VERONNE", + "code_postal": "26340", + "coordonnees_gps": [ + 44.7363252417, + 5.20695979719 + ], + "libelle_d_acheminement": "VERONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20695979719, + 44.7363252417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43e6e217cfbbc5bbec250a8a1c1af62c6d42ca47", + "fields": { + "code_commune_insee": "17021", + "nom_de_la_commune": "ARVERT", + "code_postal": "17530", + "coordonnees_gps": [ + 45.7467177587, + -1.12303418678 + ], + "libelle_d_acheminement": "ARVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12303418678, + 45.7467177587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efda91d3dc12a20229b919c422543e8b913b8333", + "fields": { + "code_commune_insee": "26377", + "nom_de_la_commune": "VINSOBRES", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3356176138, + 5.0506163995 + ], + "libelle_d_acheminement": "VINSOBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0506163995, + 44.3356176138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f66750718edba450490b55a4819ff15b89f0af90", + "fields": { + "ligne_5": "EBEON", + "code_commune_insee": "17026", + "libelle_d_acheminement": "AUTHON EBEON", + "code_postal": "17770", + "nom_de_la_commune": "AUTHON EBEON", + "coordonnees_gps": [ + 45.8418838316, + -0.426249552572 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.426249552572, + 45.8418838316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b37561a4343714373dc1b2d767edeb2aabb84e1", + "fields": { + "code_commune_insee": "26380", + "nom_de_la_commune": "GERVANS", + "code_postal": "26600", + "coordonnees_gps": [ + 45.1078817162, + 4.83145777292 + ], + "libelle_d_acheminement": "GERVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83145777292, + 45.1078817162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c854f8982d9fcc75bf1536d6fa7dd15abe3c19c", + "fields": { + "code_commune_insee": "17029", + "nom_de_la_commune": "BAGNIZEAU", + "code_postal": "17160", + "coordonnees_gps": [ + 45.9004170603, + -0.316541376972 + ], + "libelle_d_acheminement": "BAGNIZEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.316541376972, + 45.9004170603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9edd15b809def86dd3f9a28a619913867a718678", + "fields": { + "ligne_5": "LES PLANCHES", + "code_commune_insee": "27003", + "libelle_d_acheminement": "ACQUIGNY", + "code_postal": "27400", + "nom_de_la_commune": "ACQUIGNY", + "coordonnees_gps": [ + 49.1648717394, + 1.1765581743 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1765581743, + 49.1648717394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa4d243875efa2539d2152a7aedc7c35eb28d8f1", + "fields": { + "code_commune_insee": "17030", + "nom_de_la_commune": "BALANZAC", + "code_postal": "17600", + "coordonnees_gps": [ + 45.7481778738, + -0.843964939234 + ], + "libelle_d_acheminement": "BALANZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.843964939234, + 45.7481778738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71cebc576660bb3aa4a183cbf8eca2675005b607", + "fields": { + "code_commune_insee": "27012", + "nom_de_la_commune": "AMFREVILLE LES CHAMPS", + "code_postal": "27380", + "coordonnees_gps": [ + 49.3126551036, + 1.32149788001 + ], + "libelle_d_acheminement": "AMFREVILLE LES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32149788001, + 49.3126551036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e71ac48f99118e04d740810368d7f7a193160639", + "fields": { + "code_commune_insee": "17032", + "nom_de_la_commune": "BALLON", + "code_postal": "17290", + "coordonnees_gps": [ + 46.0535112924, + -0.97296366419 + ], + "libelle_d_acheminement": "BALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.97296366419, + 46.0535112924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdc3e23b948587833115f6356960c6ff3b7f91b8", + "fields": { + "code_commune_insee": "27019", + "nom_de_la_commune": "ARMENTIERES SUR AVRE", + "code_postal": "27820", + "coordonnees_gps": [ + 48.6804230358, + 0.805130428787 + ], + "libelle_d_acheminement": "ARMENTIERES SUR AVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.805130428787, + 48.6804230358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7352b8a4a3bedd07dff7c93b82af46cc0e9f2ca7", + "fields": { + "code_commune_insee": "17038", + "nom_de_la_commune": "BEDENAC", + "code_postal": "17210", + "coordonnees_gps": [ + 45.1855001238, + -0.31284209172 + ], + "libelle_d_acheminement": "BEDENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31284209172, + 45.1855001238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e82de2edfaa807d06a98a2b50a3f0884ed412eab", + "fields": { + "code_commune_insee": "27020", + "nom_de_la_commune": "ARNIERES SUR ITON", + "code_postal": "27180", + "coordonnees_gps": [ + 48.9895768522, + 1.10363451837 + ], + "libelle_d_acheminement": "ARNIERES SUR ITON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10363451837, + 48.9895768522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d18bdf3e75a82e9527dedd74f80e9dd2a20cb8b1", + "fields": { + "code_commune_insee": "17045", + "nom_de_la_commune": "BEURLAY", + "code_postal": "17250", + "coordonnees_gps": [ + 45.861283729, + -0.845151509892 + ], + "libelle_d_acheminement": "BEURLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.845151509892, + 45.861283729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6867eb2cc4793450bc123101ce39a516b077db5a", + "fields": { + "ligne_5": "STE BARBE SUR GAILLON", + "code_commune_insee": "27022", + "libelle_d_acheminement": "LE VAL D HAZEY", + "code_postal": "27600", + "nom_de_la_commune": "LE VAL D HAZEY", + "coordonnees_gps": [ + 49.1751629599, + 1.33329956002 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33329956002, + 49.1751629599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eb44639ec3a974d2354921323caa934edfe9a10", + "fields": { + "code_commune_insee": "17050", + "nom_de_la_commune": "BOIS", + "code_postal": "17240", + "coordonnees_gps": [ + 45.4820911995, + -0.6152588969 + ], + "libelle_d_acheminement": "BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6152588969, + 45.4820911995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a1086f4b05e4a912a73c299fc0c036d5c08519d", + "fields": { + "code_commune_insee": "27023", + "nom_de_la_commune": "AULNAY SUR ITON", + "code_postal": "27180", + "coordonnees_gps": [ + 48.9939471399, + 1.05509802791 + ], + "libelle_d_acheminement": "AULNAY SUR ITON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05509802791, + 48.9939471399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36b7c2cdae41125fadc02f03a6bde86a47ea6cc6", + "fields": { + "code_commune_insee": "17056", + "nom_de_la_commune": "BOUGNEAU", + "code_postal": "17800", + "coordonnees_gps": [ + 45.600075653, + -0.505955746131 + ], + "libelle_d_acheminement": "BOUGNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.505955746131, + 45.600075653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cd2ca074290c040391a3e830bd87e49ca402d59", + "fields": { + "code_commune_insee": "27026", + "nom_de_la_commune": "AUTHEVERNES", + "code_postal": "27420", + "coordonnees_gps": [ + 49.2194914224, + 1.63268872658 + ], + "libelle_d_acheminement": "AUTHEVERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63268872658, + 49.2194914224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2229e45154e413756929bf6d0784bacc092585a0", + "fields": { + "code_commune_insee": "17064", + "nom_de_la_commune": "BREUILLET", + "code_postal": "17920", + "coordonnees_gps": [ + 45.6939630579, + -1.05445584311 + ], + "libelle_d_acheminement": "BREUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05445584311, + 45.6939630579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0019ed2e8401ca898e003c56ef25d83e56af5bb", + "fields": { + "code_commune_insee": "27027", + "nom_de_la_commune": "LES AUTHIEUX", + "code_postal": "27220", + "coordonnees_gps": [ + 48.898268785, + 1.23438595727 + ], + "libelle_d_acheminement": "LES AUTHIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23438595727, + 48.898268785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdfa4e4f72ecbe0582b28c4c0b18d78bfd99ca98", + "fields": { + "code_commune_insee": "17066", + "nom_de_la_commune": "BRIE SOUS ARCHIAC", + "code_postal": "17520", + "coordonnees_gps": [ + 45.4750262399, + -0.300808640902 + ], + "libelle_d_acheminement": "BRIE SOUS ARCHIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.300808640902, + 45.4750262399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7327e37eacf2720638f657f950dc897d10355f3", + "fields": { + "ligne_5": "AVRILLY", + "code_commune_insee": "27032", + "libelle_d_acheminement": "CHAMBOIS", + "code_postal": "27240", + "nom_de_la_commune": "CHAMBOIS", + "coordonnees_gps": [ + 48.9282451292, + 1.14607632884 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14607632884, + 48.9282451292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "654c8bc3047b3276d125cdf350865a9f15ed7122", + "fields": { + "code_commune_insee": "17069", + "nom_de_la_commune": "BRIVES SUR CHARENTE", + "code_postal": "17800", + "coordonnees_gps": [ + 45.6665031177, + -0.455953367996 + ], + "libelle_d_acheminement": "BRIVES SUR CHARENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.455953367996, + 45.6665031177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef14e50f952458953f4818cd6286c5435867fbfb", + "fields": { + "ligne_5": "CORNEUIL", + "code_commune_insee": "27032", + "libelle_d_acheminement": "CHAMBOIS", + "code_postal": "27240", + "nom_de_la_commune": "CHAMBOIS", + "coordonnees_gps": [ + 48.9282451292, + 1.14607632884 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14607632884, + 48.9282451292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcbc4a4bbaf0db670307eaf12f2a66065f032c93", + "fields": { + "code_commune_insee": "17073", + "nom_de_la_commune": "BUSSAC SUR CHARENTE", + "code_postal": "17100", + "coordonnees_gps": [ + 45.7919880619, + -0.624437131463 + ], + "libelle_d_acheminement": "BUSSAC SUR CHARENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.624437131463, + 45.7919880619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "377d0a1aec5144fa4c3572e91d5e685e2d5a10a0", + "fields": { + "code_commune_insee": "27039", + "nom_de_la_commune": "BARNEVILLE SUR SEINE", + "code_postal": "27310", + "coordonnees_gps": [ + 49.3845601903, + 0.854432442318 + ], + "libelle_d_acheminement": "BARNEVILLE SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.854432442318, + 49.3845601903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eb15f18d5b54e3a95bf47ef2535f4a8dfc99587", + "fields": { + "code_commune_insee": "17075", + "nom_de_la_commune": "CABARIOT", + "code_postal": "17430", + "coordonnees_gps": [ + 45.9278243256, + -0.849803658691 + ], + "libelle_d_acheminement": "CABARIOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.849803658691, + 45.9278243256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74bb45ea53c7bcac86b4fa0e40a853ee21dfd5a8", + "fields": { + "ligne_5": "THEVRAY", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27330", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b2df3eac0bdc10e5751dad12247fc4f6d770c9f", + "fields": { + "code_commune_insee": "17077", + "nom_de_la_commune": "CERCOUX", + "code_postal": "17270", + "coordonnees_gps": [ + 45.1273503043, + -0.207698631448 + ], + "libelle_d_acheminement": "CERCOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.207698631448, + 45.1273503043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c589673f712850d13ff79f90b86abe260cef5e6", + "fields": { + "ligne_5": "GRANCHAIN", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27410", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69836550492360f8e4112c9e9cfa6cb324b12c43", + "fields": { + "code_commune_insee": "17085", + "nom_de_la_commune": "CHAMPDOLENT", + "code_postal": "17430", + "coordonnees_gps": [ + 45.9141109921, + -0.777335359216 + ], + "libelle_d_acheminement": "CHAMPDOLENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.777335359216, + 45.9141109921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63558d1be6fd9eb1c55080090908483414dea1d4", + "fields": { + "code_commune_insee": "27053", + "nom_de_la_commune": "LE BEC THOMAS", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2389327797, + 0.975785168185 + ], + "libelle_d_acheminement": "LE BEC THOMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.975785168185, + 49.2389327797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cad25d95c75ba4415e6af64aa69c46da3b991a74", + "fields": { + "code_commune_insee": "17086", + "nom_de_la_commune": "CHANIERS", + "code_postal": "17610", + "coordonnees_gps": [ + 45.7339723464, + -0.551943475215 + ], + "libelle_d_acheminement": "CHANIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.551943475215, + 45.7339723464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd30c3ac7f13669491857b64aafe3b5ebb7d66ce", + "fields": { + "code_commune_insee": "27068", + "nom_de_la_commune": "BOIS ANZERAY", + "code_postal": "27330", + "coordonnees_gps": [ + 48.9262450221, + 0.691751943479 + ], + "libelle_d_acheminement": "BOIS ANZERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.691751943479, + 48.9262450221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c35ebaa06b650dc2493a3ae59693bfe3bbe98cc1", + "fields": { + "code_commune_insee": "17087", + "nom_de_la_commune": "CHANTEMERLE SUR LA SOIE", + "code_postal": "17380", + "coordonnees_gps": [ + 45.9732176097, + -0.644264493345 + ], + "libelle_d_acheminement": "CHANTEMERLE SUR LA SOIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.644264493345, + 45.9732176097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3cf9737f116df04b267cc4e69689340793d0d85", + "fields": { + "code_commune_insee": "27071", + "nom_de_la_commune": "LE BOIS HELLAIN", + "code_postal": "27260", + "coordonnees_gps": [ + 49.2759556083, + 0.391123392323 + ], + "libelle_d_acheminement": "LE BOIS HELLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.391123392323, + 49.2759556083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd23af5a4b5a5c2f88b11cacad16d04c0739fde8", + "fields": { + "ligne_5": "BOURG CHAPON", + "code_commune_insee": "17091", + "libelle_d_acheminement": "CHARRON", + "code_postal": "17230", + "nom_de_la_commune": "CHARRON", + "coordonnees_gps": [ + 46.2936903771, + -1.08092039856 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08092039856, + 46.2936903771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da9e7c058ef39dc2f38d36ae8a26ae8a83dfae31", + "fields": { + "code_commune_insee": "27076", + "nom_de_la_commune": "BOISSET LES PREVANCHES", + "code_postal": "27120", + "coordonnees_gps": [ + 48.9662323678, + 1.33275154134 + ], + "libelle_d_acheminement": "BOISSET LES PREVANCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33275154134, + 48.9662323678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66b8703568a15b645ba69fa37bff167ad4676f3e", + "fields": { + "code_commune_insee": "17096", + "nom_de_la_commune": "CHAUNAC", + "code_postal": "17130", + "coordonnees_gps": [ + 45.3568170486, + -0.359382651655 + ], + "libelle_d_acheminement": "CHAUNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.359382651655, + 45.3568170486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9fbf88c452fc9ca6fecbc3f857d9be0358c138c", + "fields": { + "code_commune_insee": "27079", + "nom_de_la_commune": "BOISSY LAMBERVILLE", + "code_postal": "27300", + "coordonnees_gps": [ + 49.1567974903, + 0.578455295801 + ], + "libelle_d_acheminement": "BOISSY LAMBERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.578455295801, + 49.1567974903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c33ff83d7bf6b9c3353a61da01828558f39ab0a8", + "fields": { + "code_commune_insee": "17098", + "nom_de_la_commune": "CHENAC ST SEURIN D UZET", + "code_postal": "17120", + "coordonnees_gps": [ + 45.5140296568, + -0.812247078106 + ], + "libelle_d_acheminement": "CHENAC ST SEURIN D UZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.812247078106, + 45.5140296568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c759d20322dbddad9ec1180b823ebfb7ac77a6a9", + "fields": { + "ligne_5": "BOSC BENARD CRESCY", + "code_commune_insee": "27085", + "libelle_d_acheminement": "FLANCOURT CRESCY EN ROUMOIS", + "code_postal": "27310", + "nom_de_la_commune": "FLANCOURT CRESCY EN ROUMOIS", + "coordonnees_gps": [ + 49.3166032869, + 0.807172708005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.807172708005, + 49.3166032869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c872adc155cc51a6be52cba2ec01f34c807dd50e", + "fields": { + "code_commune_insee": "17099", + "nom_de_la_commune": "CHEPNIERS", + "code_postal": "17210", + "coordonnees_gps": [ + 45.2531986872, + -0.326507193163 + ], + "libelle_d_acheminement": "CHEPNIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.326507193163, + 45.2531986872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c21eae1ccb1630e61a52fe32bd2749d420b726cd", + "fields": { + "ligne_5": "EPREVILLE EN ROUMOIS", + "code_commune_insee": "27085", + "libelle_d_acheminement": "FLANCOURT CRESCY EN ROUMOIS", + "code_postal": "27310", + "nom_de_la_commune": "FLANCOURT CRESCY EN ROUMOIS", + "coordonnees_gps": [ + 49.3166032869, + 0.807172708005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.807172708005, + 49.3166032869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9fec456ea70b810b42ccfd37410c936b4dc0834", + "fields": { + "code_commune_insee": "17104", + "nom_de_la_commune": "CHEVANCEAUX", + "code_postal": "17210", + "coordonnees_gps": [ + 45.2991036157, + -0.212745427896 + ], + "libelle_d_acheminement": "CHEVANCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.212745427896, + 45.2991036157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48a726414f5760a93fb598b9abc3ffb428b2ad09", + "fields": { + "ligne_5": "TOUVILLE SUR MONTFORT", + "code_commune_insee": "27089", + "libelle_d_acheminement": "THENOUVILLE", + "code_postal": "27290", + "nom_de_la_commune": "THENOUVILLE", + "coordonnees_gps": [ + 49.2989521674, + 0.772087753969 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.772087753969, + 49.2989521674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "666f42e298479e926494cba4a25a7432cb1e3578", + "fields": { + "code_commune_insee": "17105", + "nom_de_la_commune": "CHIVES", + "code_postal": "17510", + "coordonnees_gps": [ + 45.9508835378, + -0.121918052323 + ], + "libelle_d_acheminement": "CHIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.121918052323, + 45.9508835378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcc90cf1dfcedba8d016c8279f9a99032d8d07fb", + "fields": { + "ligne_5": "BOSC RENOULT EN ROUMOIS", + "code_commune_insee": "27089", + "libelle_d_acheminement": "THENOUVILLE", + "code_postal": "27520", + "nom_de_la_commune": "THENOUVILLE", + "coordonnees_gps": [ + 49.2989521674, + 0.772087753969 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.772087753969, + 49.2989521674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "332460e164fe16a28c22233e45514bb655a13bde", + "fields": { + "code_commune_insee": "17107", + "nom_de_la_commune": "CIRE D AUNIS", + "code_postal": "17290", + "coordonnees_gps": [ + 46.0380687499, + -0.930603200492 + ], + "libelle_d_acheminement": "CIRE D AUNIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.930603200492, + 46.0380687499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b29461c0e74143f6aa4920b52157a2b1bc77425", + "fields": { + "code_commune_insee": "27091", + "nom_de_la_commune": "BOSGOUET", + "code_postal": "27310", + "coordonnees_gps": [ + 49.3542020873, + 0.846231180237 + ], + "libelle_d_acheminement": "BOSGOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.846231180237, + 49.3542020873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88bb902b6373c180888dd778e174f83b4cfaaa7b", + "fields": { + "code_commune_insee": "17111", + "nom_de_la_commune": "CLION", + "code_postal": "17240", + "coordonnees_gps": [ + 45.470800102, + -0.509938882977 + ], + "libelle_d_acheminement": "CLION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.509938882977, + 45.470800102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7ee0f83dc70fc64811b2a69eed4dcbc1d3c3059", + "fields": { + "code_commune_insee": "27095", + "nom_de_la_commune": "BOSROBERT", + "code_postal": "27800", + "coordonnees_gps": [ + 49.2201107981, + 0.765612349329 + ], + "libelle_d_acheminement": "BOSROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.765612349329, + 49.2201107981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccc40e1958158b724c45c748ba1fc1cc6e3bfc67", + "fields": { + "code_commune_insee": "17112", + "nom_de_la_commune": "LA CLISSE", + "code_postal": "17600", + "coordonnees_gps": [ + 45.7320429784, + -0.75493581331 + ], + "libelle_d_acheminement": "LA CLISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75493581331, + 45.7320429784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80820ca0f94c4dd4c916be157e9c50ca13c3d54f", + "fields": { + "code_commune_insee": "27096", + "nom_de_la_commune": "LES BOTTEREAUX", + "code_postal": "27250", + "coordonnees_gps": [ + 48.8712188786, + 0.676548267263 + ], + "libelle_d_acheminement": "LES BOTTEREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.676548267263, + 48.8712188786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "214f8a1dd0e7ed6533e2be0d43e285041877057f", + "fields": { + "code_commune_insee": "17116", + "nom_de_la_commune": "CONSAC", + "code_postal": "17150", + "coordonnees_gps": [ + 45.4182495786, + -0.588917528415 + ], + "libelle_d_acheminement": "CONSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.588917528415, + 45.4182495786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c9b5f7f64fed7a5cb7cbfcd3749028c5a0b60db", + "fields": { + "code_commune_insee": "27101", + "nom_de_la_commune": "BOUQUELON", + "code_postal": "27500", + "coordonnees_gps": [ + 49.3995142843, + 0.49146423829 + ], + "libelle_d_acheminement": "BOUQUELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49146423829, + 49.3995142843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "123e14833056d53483c243babbda3698fdd930c5", + "fields": { + "code_commune_insee": "17117", + "nom_de_la_commune": "CONTRE", + "code_postal": "17470", + "coordonnees_gps": [ + 46.0122478554, + -0.261363378689 + ], + "libelle_d_acheminement": "CONTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.261363378689, + 46.0122478554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ea3b10a8d768ddac850ca5760c04110331fd2fe", + "fields": { + "ligne_5": "BOSCHERVILLE", + "code_commune_insee": "27105", + "libelle_d_acheminement": "GRAND BOURGTHEROULDE", + "code_postal": "27520", + "nom_de_la_commune": "GRAND BOURGTHEROULDE", + "coordonnees_gps": [ + 49.2995530921, + 0.876522751918 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.876522751918, + 49.2995530921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5a18407bc1e66e4b2b7cf499af68dfb31a82565", + "fields": { + "code_commune_insee": "17118", + "nom_de_la_commune": "CORIGNAC", + "code_postal": "17130", + "coordonnees_gps": [ + 45.2448604983, + -0.39280322021 + ], + "libelle_d_acheminement": "CORIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.39280322021, + 45.2448604983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9ffce046bdd2447a9cf3be8b9d1bcd891b5a4a3", + "fields": { + "ligne_5": "THUIT HEBERT", + "code_commune_insee": "27105", + "libelle_d_acheminement": "GRAND BOURGTHEROULDE", + "code_postal": "27520", + "nom_de_la_commune": "GRAND BOURGTHEROULDE", + "coordonnees_gps": [ + 49.2995530921, + 0.876522751918 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.876522751918, + 49.2995530921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e913546bfa401ac81e608be75d0e30557d05eb1", + "fields": { + "code_commune_insee": "17119", + "nom_de_la_commune": "CORME ECLUSE", + "code_postal": "17600", + "coordonnees_gps": [ + 45.6322589932, + -0.864025818728 + ], + "libelle_d_acheminement": "CORME ECLUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.864025818728, + 45.6322589932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3269fc689b44fa9db05ea3ba26744375fcd488e7", + "fields": { + "ligne_5": "BOURNEVILLE", + "code_commune_insee": "27107", + "libelle_d_acheminement": "BOURNEVILLE STE CROIX", + "code_postal": "27500", + "nom_de_la_commune": "BOURNEVILLE STE CROIX", + "coordonnees_gps": [ + 49.39187586, + 0.620240697299 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.620240697299, + 49.39187586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9e4bc8f9753570b98340cfb4780701572e8ffa8", + "fields": { + "code_commune_insee": "17122", + "nom_de_la_commune": "COULONGES", + "code_postal": "17800", + "coordonnees_gps": [ + 45.6088801122, + -0.428936735857 + ], + "libelle_d_acheminement": "COULONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.428936735857, + 45.6088801122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8280f0f5015e85a85dcc64c0cfc80668633cceb", + "fields": { + "ligne_5": "STE CROIX SUR AIZIER", + "code_commune_insee": "27107", + "libelle_d_acheminement": "BOURNEVILLE STE CROIX", + "code_postal": "27500", + "nom_de_la_commune": "BOURNEVILLE STE CROIX", + "coordonnees_gps": [ + 49.39187586, + 0.620240697299 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.620240697299, + 49.39187586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c02fd71301e33a80221ade337237624259defe9", + "fields": { + "code_commune_insee": "17128", + "nom_de_la_commune": "COURCOURY", + "code_postal": "17100", + "coordonnees_gps": [ + 45.7030914699, + -0.563571541525 + ], + "libelle_d_acheminement": "COURCOURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.563571541525, + 45.7030914699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a43e7a03cebcee5bce1121e544c66be34f66a30d", + "fields": { + "code_commune_insee": "27109", + "nom_de_la_commune": "BRAY", + "code_postal": "27170", + "coordonnees_gps": [ + 49.1042865972, + 0.836034010242 + ], + "libelle_d_acheminement": "BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.836034010242, + 49.1042865972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b4f1133f05c440fa3781661eb1519cb1dca5f41", + "fields": { + "code_commune_insee": "17130", + "nom_de_la_commune": "COUX", + "code_postal": "17130", + "coordonnees_gps": [ + 45.3197414345, + -0.409244232565 + ], + "libelle_d_acheminement": "COUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.409244232565, + 45.3197414345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7faf051b086ba98ecfa0c6f6f2feacd0bcf15f60", + "fields": { + "code_commune_insee": "27114", + "nom_de_la_commune": "BREUILPONT", + "code_postal": "27640", + "coordonnees_gps": [ + 48.9649279458, + 1.43949488173 + ], + "libelle_d_acheminement": "BREUILPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43949488173, + 48.9649279458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b22707576028f236accb68d3e605df83cb50e5e", + "fields": { + "code_commune_insee": "17131", + "nom_de_la_commune": "COZES", + "code_postal": "17120", + "coordonnees_gps": [ + 45.576167197, + -0.823756709657 + ], + "libelle_d_acheminement": "COZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.823756709657, + 45.576167197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fc1a375eb44deba621e769559507ada21dfd8f5", + "fields": { + "code_commune_insee": "27119", + "nom_de_la_commune": "BUEIL", + "code_postal": "27730", + "coordonnees_gps": [ + 48.9343375603, + 1.44434816017 + ], + "libelle_d_acheminement": "BUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44434816017, + 48.9343375603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95d981cce13abaa0ec2f8de0550004b0c77e9bdf", + "fields": { + "code_commune_insee": "17138", + "nom_de_la_commune": "DAMPIERRE SUR BOUTONNE", + "code_postal": "17470", + "coordonnees_gps": [ + 46.0734166242, + -0.387793874556 + ], + "libelle_d_acheminement": "DAMPIERRE SUR BOUTONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.387793874556, + 46.0734166242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5e9a5043808784fafcfe1e63abdd76739031a8d", + "fields": { + "code_commune_insee": "27129", + "nom_de_la_commune": "CAORCHES ST NICOLAS", + "code_postal": "27300", + "coordonnees_gps": [ + 49.0782233141, + 0.547592654037 + ], + "libelle_d_acheminement": "CAORCHES ST NICOLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.547592654037, + 49.0782233141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80c2a78e77bb4c835aa99f98320c708b3046dc40", + "fields": { + "code_commune_insee": "17143", + "nom_de_la_commune": "LE DOUHET", + "code_postal": "17100", + "coordonnees_gps": [ + 45.8077681995, + -0.578258177424 + ], + "libelle_d_acheminement": "LE DOUHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.578258177424, + 45.8077681995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87563bc46a0b6b4f78a61effb8081cd9c7b692cf", + "fields": { + "code_commune_insee": "27134", + "nom_de_la_commune": "CAUVERVILLE EN ROUMOIS", + "code_postal": "27350", + "coordonnees_gps": [ + 49.3552369036, + 0.647055646241 + ], + "libelle_d_acheminement": "CAUVERVILLE EN ROUMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.647055646241, + 49.3552369036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "023b5a2612c8978ba3f67155988fc2509ef5fa2e", + "fields": { + "code_commune_insee": "17145", + "nom_de_la_commune": "ECHEBRUNE", + "code_postal": "17800", + "coordonnees_gps": [ + 45.5887183751, + -0.452205793733 + ], + "libelle_d_acheminement": "ECHEBRUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.452205793733, + 45.5887183751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "338e8dfa61ad6ec52ab5c3238249a4809db88a09", + "fields": { + "code_commune_insee": "27135", + "nom_de_la_commune": "CESSEVILLE", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1795942946, + 0.976416349214 + ], + "libelle_d_acheminement": "CESSEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.976416349214, + 49.1795942946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d506b8600d1842f243cb1659d0b196dca1f6fae8", + "fields": { + "code_commune_insee": "17153", + "nom_de_la_commune": "ESNANDES", + "code_postal": "17137", + "coordonnees_gps": [ + 46.2481463868, + -1.11394343673 + ], + "libelle_d_acheminement": "ESNANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11394343673, + 46.2481463868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd57e8db34d1816eaa1d863db12705b67a0675e5", + "fields": { + "code_commune_insee": "27136", + "nom_de_la_commune": "CHAIGNES", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0138196072, + 1.45166731752 + ], + "libelle_d_acheminement": "CHAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45166731752, + 49.0138196072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbd01a92343536a9f7aeeac528f01f6ec1524a79", + "fields": { + "code_commune_insee": "17162", + "nom_de_la_commune": "FONTAINE CHALENDRAY", + "code_postal": "17510", + "coordonnees_gps": [ + 45.9472253367, + -0.176439795727 + ], + "libelle_d_acheminement": "FONTAINE CHALENDRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.176439795727, + 45.9472253367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "794acc863de7679ea4b188385d04705e1ce94199", + "fields": { + "code_commune_insee": "27137", + "nom_de_la_commune": "CHAISE DIEU DU THEIL", + "code_postal": "27580", + "coordonnees_gps": [ + 48.7557442906, + 0.770932355905 + ], + "libelle_d_acheminement": "CHAISE DIEU DU THEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.770932355905, + 48.7557442906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdfa196e2a29d50c0ba38523a78fd9fb8456d14e", + "fields": { + "code_commune_insee": "17172", + "nom_de_la_commune": "GEMOZAC", + "code_postal": "17260", + "coordonnees_gps": [ + 45.5615748972, + -0.684082033771 + ], + "libelle_d_acheminement": "GEMOZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.684082033771, + 45.5615748972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2173020c4b8f337cca2c34b32df07ad27539e682", + "fields": { + "code_commune_insee": "27139", + "nom_de_la_commune": "CHAMBORD", + "code_postal": "27250", + "coordonnees_gps": [ + 48.8825741815, + 0.620980424578 + ], + "libelle_d_acheminement": "CHAMBORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.620980424578, + 48.8825741815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d23c6696219dcb6e314925ff489a99d061ca4039", + "fields": { + "code_commune_insee": "17183", + "nom_de_la_commune": "GREZAC", + "code_postal": "17120", + "coordonnees_gps": [ + 45.6032269459, + -0.83530051461 + ], + "libelle_d_acheminement": "GREZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83530051461, + 45.6032269459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97ac8a87f208f5da29bc15f759ad882f5bc996a7", + "fields": { + "code_commune_insee": "27151", + "nom_de_la_commune": "CHARLEVAL", + "code_postal": "27380", + "coordonnees_gps": [ + 49.3796508002, + 1.38961447522 + ], + "libelle_d_acheminement": "CHARLEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38961447522, + 49.3796508002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "597b5406c3ad500d2b171ecfd9b11061bc5d980f", + "fields": { + "code_commune_insee": "17185", + "nom_de_la_commune": "LE GUA", + "code_postal": "17600", + "coordonnees_gps": [ + 45.7264855028, + -0.965197924835 + ], + "libelle_d_acheminement": "LE GUA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.965197924835, + 45.7264855028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f493f8989cc584fab7bf352525fae41d2e712ac", + "fields": { + "code_commune_insee": "27152", + "nom_de_la_commune": "CHATEAU SUR EPTE", + "code_postal": "27420", + "coordonnees_gps": [ + 49.2004173663, + 1.65874504917 + ], + "libelle_d_acheminement": "CHATEAU SUR EPTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65874504917, + 49.2004173663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f796e57a9f2392d3e0785aab2184459d602eff2", + "fields": { + "code_commune_insee": "17193", + "nom_de_la_commune": "LA JARNE", + "code_postal": "17220", + "coordonnees_gps": [ + 46.1214512061, + -1.07142455217 + ], + "libelle_d_acheminement": "LA JARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07142455217, + 46.1214512061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "060cbad591f6b3f515bfa91f97484c80ed6a59bb", + "fields": { + "ligne_5": "PROVEMONT", + "code_commune_insee": "27153", + "libelle_d_acheminement": "CHAUVINCOURT PROVEMONT", + "code_postal": "27150", + "nom_de_la_commune": "CHAUVINCOURT PROVEMONT", + "coordonnees_gps": [ + 49.2808952315, + 1.64529134367 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64529134367, + 49.2808952315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70c3406e079e38e75cb04dd20a4035487e78586b", + "fields": { + "code_commune_insee": "17197", + "nom_de_la_commune": "JONZAC", + "code_postal": "17500", + "coordonnees_gps": [ + 45.4419827405, + -0.427614839205 + ], + "libelle_d_acheminement": "JONZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.427614839205, + 45.4419827405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ab1880739ba4ecbd5d703c4300a4d061c381b8a", + "fields": { + "code_commune_insee": "27155", + "nom_de_la_commune": "CHENNEBRUN", + "code_postal": "27820", + "coordonnees_gps": [ + 48.6841164258, + 0.774515882818 + ], + "libelle_d_acheminement": "CHENNEBRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.774515882818, + 48.6841164258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7848e029721be7aadc6f0acf5692230e4f42fcc7", + "fields": { + "code_commune_insee": "17201", + "nom_de_la_commune": "LA LAIGNE", + "code_postal": "17170", + "coordonnees_gps": [ + 46.2156875435, + -0.755573639604 + ], + "libelle_d_acheminement": "LA LAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.755573639604, + 46.2156875435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0662ff81021a8218c17d000f461300019a95a5c4", + "fields": { + "ligne_5": "CHANTELOUP", + "code_commune_insee": "27157", + "libelle_d_acheminement": "MARBOIS", + "code_postal": "27240", + "nom_de_la_commune": "MARBOIS", + "coordonnees_gps": [ + 48.8910449707, + 0.93590219795 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93590219795, + 48.8910449707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da87b3c661aedc6f54fcfe6c7d17e33d209a7f38", + "fields": { + "code_commune_insee": "17214", + "nom_de_la_commune": "LUCHAT", + "code_postal": "17600", + "coordonnees_gps": [ + 45.7151143734, + -0.763297956769 + ], + "libelle_d_acheminement": "LUCHAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.763297956769, + 45.7151143734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5de64c5a87baea57aacffe31f1c04314025d31c0", + "fields": { + "code_commune_insee": "27158", + "nom_de_la_commune": "CIERREY", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0017720899, + 1.26604981286 + ], + "libelle_d_acheminement": "CIERREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26604981286, + 49.0017720899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c621e7a5065f51752efd0cb158f689faf3f0b339", + "fields": { + "code_commune_insee": "17215", + "nom_de_la_commune": "LUSSAC", + "code_postal": "17500", + "coordonnees_gps": [ + 45.4672777871, + -0.473062753484 + ], + "libelle_d_acheminement": "LUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.473062753484, + 45.4672777871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75c4391dc8dc979904d415cb1124419c487c7112", + "fields": { + "code_commune_insee": "27162", + "nom_de_la_commune": "COLLANDRES QUINCARNON", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9937537371, + 0.86271555609 + ], + "libelle_d_acheminement": "COLLANDRES QUINCARNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.86271555609, + 48.9937537371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de0e5bef3af7099e80b56ace1359e5380dd1acde", + "fields": { + "code_commune_insee": "17230", + "nom_de_la_commune": "MESCHERS SUR GIRONDE", + "code_postal": "17132", + "coordonnees_gps": [ + 45.5728672886, + -0.94771675691 + ], + "libelle_d_acheminement": "MESCHERS SUR GIRONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.94771675691, + 45.5728672886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4011e376ca676e40770a056f2a5794479858a09d", + "fields": { + "code_commune_insee": "27173", + "nom_de_la_commune": "CORNEVILLE LA FOUQUETIERE", + "code_postal": "27300", + "coordonnees_gps": [ + 49.0598701998, + 0.703048495388 + ], + "libelle_d_acheminement": "CORNEVILLE LA FOUQUETIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.703048495388, + 49.0598701998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eab5c012721986b145fbbf32fc30c9927590b614", + "fields": { + "code_commune_insee": "17236", + "nom_de_la_commune": "MIRAMBEAU", + "code_postal": "17150", + "coordonnees_gps": [ + 45.364556119, + -0.565410361333 + ], + "libelle_d_acheminement": "MIRAMBEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.565410361333, + 45.364556119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "309a8a9528bb20357b87904d9de5e72bb74c92a2", + "fields": { + "code_commune_insee": "27177", + "nom_de_la_commune": "COUDRES", + "code_postal": "27220", + "coordonnees_gps": [ + 48.8631247309, + 1.23599075462 + ], + "libelle_d_acheminement": "COUDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23599075462, + 48.8631247309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2bd17783edf39a153d3719fa383cb6c70318558", + "fields": { + "ligne_5": "CHARDES", + "code_commune_insee": "17240", + "libelle_d_acheminement": "MONTENDRE", + "code_postal": "17130", + "nom_de_la_commune": "MONTENDRE", + "coordonnees_gps": [ + 45.2880726146, + -0.387479585943 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.387479585943, + 45.2880726146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daced618fd7341afc57b77fe7a5fffb6408674c8", + "fields": { + "code_commune_insee": "27179", + "nom_de_la_commune": "COURBEPINE", + "code_postal": "27300", + "coordonnees_gps": [ + 49.1293094881, + 0.566197050846 + ], + "libelle_d_acheminement": "COURBEPINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.566197050846, + 49.1293094881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f03d3395c41c90d4157e780f130809e089b186e4", + "fields": { + "ligne_5": "VALLET", + "code_commune_insee": "17240", + "libelle_d_acheminement": "MONTENDRE", + "code_postal": "17130", + "nom_de_la_commune": "MONTENDRE", + "coordonnees_gps": [ + 45.2880726146, + -0.387479585943 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.387479585943, + 45.2880726146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf2275c04debf074b4c2485391344394f1aab3b3", + "fields": { + "code_commune_insee": "27183", + "nom_de_la_commune": "LA COUTURE BOUSSEY", + "code_postal": "27750", + "coordonnees_gps": [ + 48.9020135083, + 1.396314901 + ], + "libelle_d_acheminement": "LA COUTURE BOUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.396314901, + 48.9020135083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70639a201873d63cb978f399ee5aa3513a886373", + "fields": { + "code_commune_insee": "17242", + "nom_de_la_commune": "MONTILS", + "code_postal": "17800", + "coordonnees_gps": [ + 45.6577145022, + -0.511550722755 + ], + "libelle_d_acheminement": "MONTILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.511550722755, + 45.6577145022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb9fd4fe3c03a6c44af07f67ed8fc4388bc4c942", + "fields": { + "code_commune_insee": "27189", + "nom_de_la_commune": "LA CROISILLE", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9904943471, + 0.97564552342 + ], + "libelle_d_acheminement": "LA CROISILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97564552342, + 48.9904943471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e9189099f28d4964e5fd64db63dcc9de6abcae1", + "fields": { + "code_commune_insee": "17243", + "nom_de_la_commune": "MONTLIEU LA GARDE", + "code_postal": "17210", + "coordonnees_gps": [ + 45.2335398359, + -0.270683431895 + ], + "libelle_d_acheminement": "MONTLIEU LA GARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.270683431895, + 45.2335398359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6aa00dc4888bf082275d7e1bc969d5cd543e01a", + "fields": { + "ligne_5": "CONDE SUR ITON", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27160", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dc18c80b8f6ae3522cc514836eb46127639c550", + "fields": { + "code_commune_insee": "17244", + "nom_de_la_commune": "MONTPELLIER DE MEDILLAN", + "code_postal": "17260", + "coordonnees_gps": [ + 45.633394289, + -0.754060385506 + ], + "libelle_d_acheminement": "MONTPELLIER DE MEDILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.754060385506, + 45.633394289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "710e473d8fb5b6085f47191c653571edd212813e", + "fields": { + "ligne_5": "LE RONCENAY AUTHENAY", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27240", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04f7176e4470aa387cc891c75520937ed8e11c0a", + "fields": { + "code_commune_insee": "17246", + "nom_de_la_commune": "MORAGNE", + "code_postal": "17430", + "coordonnees_gps": [ + 45.9768256622, + -0.797162979537 + ], + "libelle_d_acheminement": "MORAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.797162979537, + 45.9768256622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38877e75a5f37924f6585cb12ffe306212263374", + "fields": { + "code_commune_insee": "27199", + "nom_de_la_commune": "DANGU", + "code_postal": "27720", + "coordonnees_gps": [ + 49.2614400843, + 1.6883198485 + ], + "libelle_d_acheminement": "DANGU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6883198485, + 49.2614400843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5f266df66e4ea3ec84189c649e9bcb5c9507302", + "fields": { + "code_commune_insee": "17247", + "nom_de_la_commune": "MORNAC SUR SEUDRE", + "code_postal": "17113", + "coordonnees_gps": [ + 45.7079105893, + -1.02132531485 + ], + "libelle_d_acheminement": "MORNAC SUR SEUDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02132531485, + 45.7079105893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50161c3089b5cde322cb91994979a417b62d61d9", + "fields": { + "code_commune_insee": "27204", + "nom_de_la_commune": "DOUDEAUVILLE EN VEXIN", + "code_postal": "27150", + "coordonnees_gps": [ + 49.322695985, + 1.58935105876 + ], + "libelle_d_acheminement": "DOUDEAUVILLE EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58935105876, + 49.322695985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd6f282e16c215dfb31bc89fd9ec0d44156a39eb", + "fields": { + "code_commune_insee": "17259", + "nom_de_la_commune": "NEULLES", + "code_postal": "17500", + "coordonnees_gps": [ + 45.5096455454, + -0.42809234056 + ], + "libelle_d_acheminement": "NEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.42809234056, + 45.5096455454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d20f7f1da40e8a0d74a24f7d36ad5bd64b3cd05b", + "fields": { + "ligne_5": "PANLATTE", + "code_commune_insee": "27206", + "libelle_d_acheminement": "DROISY", + "code_postal": "27320", + "nom_de_la_commune": "DROISY", + "coordonnees_gps": [ + 48.7975773096, + 1.1258906091 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1258906091, + 48.7975773096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8266b38d83e8bc1412519426c973be23d153ee1", + "fields": { + "code_commune_insee": "17262", + "nom_de_la_commune": "NIEUL LES SAINTES", + "code_postal": "17810", + "coordonnees_gps": [ + 45.7541162328, + -0.745291406801 + ], + "libelle_d_acheminement": "NIEUL LES SAINTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.745291406801, + 45.7541162328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef6ccb535aaef15217d484aa43e5e20637aa2608", + "fields": { + "code_commune_insee": "27207", + "nom_de_la_commune": "DRUCOURT", + "code_postal": "27230", + "coordonnees_gps": [ + 49.116516097, + 0.459175546757 + ], + "libelle_d_acheminement": "DRUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.459175546757, + 49.116516097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ad6c958fb5445a6d0564f72f78f3568da531847", + "fields": { + "code_commune_insee": "17264", + "nom_de_la_commune": "NIEUL SUR MER", + "code_postal": "17137", + "coordonnees_gps": [ + 46.2087181622, + -1.16596945116 + ], + "libelle_d_acheminement": "NIEUL SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16596945116, + 46.2087181622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa060cefd731be34ca7619a2daab22daf76c7dac", + "fields": { + "ligne_5": "TOURNY", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27510", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28db4bc9872ede84669112da7b787326a69057ed", + "fields": { + "ligne_5": "LAUZIERES", + "code_commune_insee": "17264", + "libelle_d_acheminement": "NIEUL SUR MER", + "code_postal": "17137", + "nom_de_la_commune": "NIEUL SUR MER", + "coordonnees_gps": [ + 46.2087181622, + -1.16596945116 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16596945116, + 46.2087181622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88e0d961c371271896de6484b8e4aa167bed59ac", + "fields": { + "ligne_5": "DAMPSMESNIL", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27630", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6ca44a76fcc1faeae3bc30a4451562d440e23f5", + "fields": { + "ligne_5": "MOULONS", + "code_commune_insee": "17282", + "libelle_d_acheminement": "POMMIERS MOULONS", + "code_postal": "17130", + "nom_de_la_commune": "POMMIERS MOULONS", + "coordonnees_gps": [ + 45.3278061357, + -0.348630198728 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.348630198728, + 45.3278061357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09e1763218850169fed4ccd3607972af83f0fb25", + "fields": { + "code_commune_insee": "27218", + "nom_de_la_commune": "EPAIGNES", + "code_postal": "27260", + "coordonnees_gps": [ + 49.2733162513, + 0.45367421999 + ], + "libelle_d_acheminement": "EPAIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45367421999, + 49.2733162513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b11d280ba5524e0bbfa044a858811a25a24e9c51", + "fields": { + "code_commune_insee": "17283", + "nom_de_la_commune": "PONS", + "code_postal": "17800", + "coordonnees_gps": [ + 45.5770487335, + -0.557449237102 + ], + "libelle_d_acheminement": "PONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.557449237102, + 45.5770487335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c1fd15d586a448cd2c77f3240229520ac770b0b", + "fields": { + "code_commune_insee": "27220", + "nom_de_la_commune": "EPIEDS", + "code_postal": "27730", + "coordonnees_gps": [ + 48.9349153283, + 1.39579544609 + ], + "libelle_d_acheminement": "EPIEDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39579544609, + 48.9349153283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fcbdf118df664d32159b424ac8860995397c2ca", + "fields": { + "code_commune_insee": "17289", + "nom_de_la_commune": "PREGUILLAC", + "code_postal": "17460", + "coordonnees_gps": [ + 45.6684430786, + -0.624175706556 + ], + "libelle_d_acheminement": "PREGUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.624175706556, + 45.6684430786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e111ec354d03784c53651028c38f462ee96d9b4", + "fields": { + "code_commune_insee": "27227", + "nom_de_la_commune": "ETREVILLE", + "code_postal": "27350", + "coordonnees_gps": [ + 49.3795673555, + 0.65533275771 + ], + "libelle_d_acheminement": "ETREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65533275771, + 49.3795673555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85005f5f5a4086c8e814668a4f4598afd8e64a22", + "fields": { + "code_commune_insee": "17294", + "nom_de_la_commune": "PUYROLLAND", + "code_postal": "17380", + "coordonnees_gps": [ + 46.0332957375, + -0.656009266758 + ], + "libelle_d_acheminement": "PUYROLLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.656009266758, + 46.0332957375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6893b929f6871634154a8e01fa618ee265e4bf8", + "fields": { + "ligne_5": "LA MADELEINE", + "code_commune_insee": "27229", + "libelle_d_acheminement": "EVREUX", + "code_postal": "27000", + "nom_de_la_commune": "EVREUX", + "coordonnees_gps": [ + 49.02015421, + 1.14164412464 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14164412464, + 49.02015421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6849e88da56fb3735fe4cc15fe21a122b195ce77", + "fields": { + "code_commune_insee": "17298", + "nom_de_la_commune": "RIOUX", + "code_postal": "17460", + "coordonnees_gps": [ + 45.6387910641, + -0.708723744526 + ], + "libelle_d_acheminement": "RIOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.708723744526, + 45.6387910641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8243769d1edc0e2c1cf2118aad9052c10b14c4b5", + "fields": { + "code_commune_insee": "27232", + "nom_de_la_commune": "FARCEAUX", + "code_postal": "27150", + "coordonnees_gps": [ + 49.2917599678, + 1.52826011548 + ], + "libelle_d_acheminement": "FARCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52826011548, + 49.2917599678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d8976fcb638d411a107ee9f0abd179b54b6bd19", + "fields": { + "ligne_5": "LA PALLICE", + "code_commune_insee": "17300", + "libelle_d_acheminement": "LA ROCHELLE", + "code_postal": "17000", + "nom_de_la_commune": "LA ROCHELLE", + "coordonnees_gps": [ + 46.1620643972, + -1.17465702836 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17465702836, + 46.1620643972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f398ebe46af4eee8b9ea594d0537117d9cef8f5", + "fields": { + "code_commune_insee": "27240", + "nom_de_la_commune": "LA FERRIERE SUR RISLE", + "code_postal": "27760", + "coordonnees_gps": [ + 48.9777818863, + 0.787128070523 + ], + "libelle_d_acheminement": "LA FERRIERE SUR RISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.787128070523, + 48.9777818863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c27d3f995b099ef935493fc609cc541226fc7d52", + "fields": { + "code_commune_insee": "17303", + "nom_de_la_commune": "LA RONDE", + "code_postal": "17170", + "coordonnees_gps": [ + 46.299708575, + -0.786738515903 + ], + "libelle_d_acheminement": "LA RONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.786738515903, + 46.299708575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aab559382d26b77cae8d8dc9387551baae43f5a", + "fields": { + "code_commune_insee": "27249", + "nom_de_la_commune": "FONTAINE BELLENGER", + "code_postal": "27600", + "coordonnees_gps": [ + 49.1802280169, + 1.2530305732 + ], + "libelle_d_acheminement": "FONTAINE BELLENGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2530305732, + 49.1802280169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e16d3ee69da5cb91a5fc98b35df7b27fb658632", + "fields": { + "code_commune_insee": "17309", + "nom_de_la_commune": "ST AIGULIN", + "code_postal": "17360", + "coordonnees_gps": [ + 45.1668978802, + -0.0436327584694 + ], + "libelle_d_acheminement": "ST AIGULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0436327584694, + 45.1668978802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67faf44f556317218815f202dfc55efb22ea9fed", + "fields": { + "code_commune_insee": "27252", + "nom_de_la_commune": "FONTAINE LA LOUVET", + "code_postal": "27230", + "coordonnees_gps": [ + 49.1584396153, + 0.445984273017 + ], + "libelle_d_acheminement": "FONTAINE LA LOUVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.445984273017, + 49.1584396153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f6ada271c72183826cf6e8c43466911c853f3aa", + "fields": { + "code_commune_insee": "17310", + "nom_de_la_commune": "ST ANDRE DE LIDON", + "code_postal": "17260", + "coordonnees_gps": [ + 45.5833337815, + -0.75733412108 + ], + "libelle_d_acheminement": "ST ANDRE DE LIDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75733412108, + 45.5833337815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6af2a446a76aaef44ea7912e579dc6a9a93ab34", + "fields": { + "code_commune_insee": "27254", + "nom_de_la_commune": "FONTAINE SOUS JOUY", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0644082735, + 1.28056210161 + ], + "libelle_d_acheminement": "FONTAINE SOUS JOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28056210161, + 49.0644082735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0af52564eb72a0dbc01878f8929c3187856cff9", + "fields": { + "code_commune_insee": "17317", + "nom_de_la_commune": "ST CIERS DU TAILLON", + "code_postal": "17240", + "coordonnees_gps": [ + 45.4314531462, + -0.633076943744 + ], + "libelle_d_acheminement": "ST CIERS DU TAILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.633076943744, + 45.4314531462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed997ff2de30633f3a151ffd8096d43ddbd4bd81", + "fields": { + "code_commune_insee": "27258", + "nom_de_la_commune": "FORT MOVILLE", + "code_postal": "27210", + "coordonnees_gps": [ + 49.3289644222, + 0.401718314243 + ], + "libelle_d_acheminement": "FORT MOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.401718314243, + 49.3289644222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "797925e98fc2f932c28ed068760eafeac0110a9c", + "fields": { + "code_commune_insee": "17318", + "nom_de_la_commune": "ST CLEMENT DES BALEINES", + "code_postal": "17590", + "coordonnees_gps": [ + 46.2363966414, + -1.53823691013 + ], + "libelle_d_acheminement": "ST CLEMENT DES BALEINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53823691013, + 46.2363966414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc82b83b8e53f12db4d43fb3bcfb98ae97a140bd", + "fields": { + "code_commune_insee": "27260", + "nom_de_la_commune": "FOULBEC", + "code_postal": "27210", + "coordonnees_gps": [ + 49.3940595963, + 0.422225026398 + ], + "libelle_d_acheminement": "FOULBEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.422225026398, + 49.3940595963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c05fa4480cf349721ad4a691d17f64d4ac5c036f", + "fields": { + "ligne_5": "LE GILLIEUX", + "code_commune_insee": "17318", + "libelle_d_acheminement": "ST CLEMENT DES BALEINES", + "code_postal": "17590", + "nom_de_la_commune": "ST CLEMENT DES BALEINES", + "coordonnees_gps": [ + 46.2363966414, + -1.53823691013 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53823691013, + 46.2363966414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f3ea3f900858d648bb9abcce9cadeeab7aae13e", + "fields": { + "code_commune_insee": "27271", + "nom_de_la_commune": "FRESNEY", + "code_postal": "27220", + "coordonnees_gps": [ + 48.9473622629, + 1.30677941323 + ], + "libelle_d_acheminement": "FRESNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30677941323, + 48.9473622629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee118cb633a3f80618efa59f4f9d9506b308cfeb", + "fields": { + "code_commune_insee": "17319", + "nom_de_la_commune": "STE COLOMBE", + "code_postal": "17210", + "coordonnees_gps": [ + 45.281890465, + -0.273965618336 + ], + "libelle_d_acheminement": "STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.273965618336, + 45.281890465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f056f2f9fa95352ba10d2a59fbfa5c1214a5f905", + "fields": { + "code_commune_insee": "27275", + "nom_de_la_commune": "GAILLON", + "code_postal": "27600", + "coordonnees_gps": [ + 49.1591132617, + 1.34701632223 + ], + "libelle_d_acheminement": "GAILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34701632223, + 49.1591132617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de73ffe82eccc9edea1aa8b3efea90d4054efff3", + "fields": { + "code_commune_insee": "17320", + "nom_de_la_commune": "ST COUTANT LE GRAND", + "code_postal": "17430", + "coordonnees_gps": [ + 45.9480944751, + -0.787759581608 + ], + "libelle_d_acheminement": "ST COUTANT LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.787759581608, + 45.9480944751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6954b7b5746edafc82b875a9c29d80b36debb61", + "fields": { + "code_commune_insee": "27278", + "nom_de_la_commune": "GARENNES SUR EURE", + "code_postal": "27780", + "coordonnees_gps": [ + 48.9091632866, + 1.43367322183 + ], + "libelle_d_acheminement": "GARENNES SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43367322183, + 48.9091632866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35cb7e67f5e05066d53b7b8eedfa257b39f89ec0", + "fields": { + "code_commune_insee": "17322", + "nom_de_la_commune": "ST CYR DU DORET", + "code_postal": "17170", + "coordonnees_gps": [ + 46.2689963967, + -0.827114338607 + ], + "libelle_d_acheminement": "ST CYR DU DORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.827114338607, + 46.2689963967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e8fbad24d5a504f7dfdcd6e8965dd4149e6a80f", + "fields": { + "code_commune_insee": "27280", + "nom_de_la_commune": "GAUCIEL", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0356183804, + 1.24708624979 + ], + "libelle_d_acheminement": "GAUCIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24708624979, + 49.0356183804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe888ef582693301e9b509d7951ba269c4166ce8", + "fields": { + "code_commune_insee": "17323", + "nom_de_la_commune": "ST DENIS D OLERON", + "code_postal": "17650", + "coordonnees_gps": [ + 46.0234747885, + -1.38577964477 + ], + "libelle_d_acheminement": "ST DENIS D OLERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38577964477, + 46.0234747885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76e6d35174f7385e10b47107e40e5b8a6e3a7832", + "fields": { + "code_commune_insee": "27284", + "nom_de_la_commune": "GISORS", + "code_postal": "27140", + "coordonnees_gps": [ + 49.2786723691, + 1.76876649685 + ], + "libelle_d_acheminement": "GISORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76876649685, + 49.2786723691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af7ab9580dcfc9a3ee9aa1fa911dd3daec923e95", + "fields": { + "code_commune_insee": "17329", + "nom_de_la_commune": "ST FROULT", + "code_postal": "17780", + "coordonnees_gps": [ + 45.9134705375, + -1.06195684494 + ], + "libelle_d_acheminement": "ST FROULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06195684494, + 45.9134705375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca032d76d9d7807f67f54740cf56adb86503745d", + "fields": { + "ligne_5": "LE TILLEUL OTHON", + "code_commune_insee": "27290", + "libelle_d_acheminement": "GOUPIL OTHON", + "code_postal": "27170", + "nom_de_la_commune": "GOUPIL OTHON", + "coordonnees_gps": [ + 49.1218249959, + 0.765958514912 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.765958514912, + 49.1218249959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35c09c250989fb68591ec8bc9a11f3c2ffd52cbb", + "fields": { + "code_commune_insee": "17333", + "nom_de_la_commune": "ST GEORGES DE DIDONNE", + "code_postal": "17110", + "coordonnees_gps": [ + 45.6036278448, + -0.980098297165 + ], + "libelle_d_acheminement": "ST GEORGES DE DIDONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.980098297165, + 45.6036278448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c62e909a9c6968902fdbda4b6b52bf698cbbb1ad", + "fields": { + "ligne_5": "GRAINVILLE", + "code_commune_insee": "27294", + "libelle_d_acheminement": "VAL D ORGER", + "code_postal": "27380", + "nom_de_la_commune": "VAL D ORGER", + "coordonnees_gps": [ + 49.3450350135, + 1.3678564295 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3678564295, + 49.3450350135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b3f3d500ef18dc12d84642f91678afaee55d90a", + "fields": { + "ligne_5": "PERE", + "code_commune_insee": "17340", + "libelle_d_acheminement": "ST PIERRE LA NOUE", + "code_postal": "17700", + "nom_de_la_commune": "ST PIERRE LA NOUE", + "coordonnees_gps": [ + 46.0675190065, + -0.79880232463 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.79880232463, + 46.0675190065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e401298396673a09271bccb6e32f16ca3c39273c", + "fields": { + "ligne_5": "ST NICOLAS DU BOSC", + "code_commune_insee": "27302", + "libelle_d_acheminement": "LE BOSC DU THEIL", + "code_postal": "27370", + "nom_de_la_commune": "LE BOSC DU THEIL", + "coordonnees_gps": [ + 49.2281464419, + 0.840519309317 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.840519309317, + 49.2281464419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfc290852a482f4e75141deeb6f1116958137457", + "fields": { + "code_commune_insee": "17348", + "nom_de_la_commune": "ST JEAN D ANGLE", + "code_postal": "17620", + "coordonnees_gps": [ + 45.8311345147, + -0.972275648087 + ], + "libelle_d_acheminement": "ST JEAN D ANGLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.972275648087, + 45.8311345147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d126c3e982f1d32d941d05654ffe1fdcaf6d089", + "fields": { + "code_commune_insee": "27316", + "nom_de_la_commune": "HAUVILLE", + "code_postal": "27350", + "coordonnees_gps": [ + 49.3970508691, + 0.766578744404 + ], + "libelle_d_acheminement": "HAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.766578744404, + 49.3970508691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "658afcfe37b319e15ec2d5c3717d0372f16c45af", + "fields": { + "code_commune_insee": "17349", + "nom_de_la_commune": "ST JEAN DE LIVERSAY", + "code_postal": "17170", + "coordonnees_gps": [ + 46.2797585875, + -0.882374660253 + ], + "libelle_d_acheminement": "ST JEAN DE LIVERSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.882374660253, + 46.2797585875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c82a994a42376fa6174dfd9a8876a7baad96cd4", + "fields": { + "code_commune_insee": "27318", + "nom_de_la_commune": "LA HAYE DE CALLEVILLE", + "code_postal": "27800", + "coordonnees_gps": [ + 49.187518982, + 0.777866352437 + ], + "libelle_d_acheminement": "LA HAYE DE CALLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.777866352437, + 49.187518982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e76ee0ce2065ef15608761c7f98a30ec4b70d939", + "fields": { + "code_commune_insee": "17358", + "nom_de_la_commune": "ST MANDE SUR BREDOIRE", + "code_postal": "17470", + "coordonnees_gps": [ + 46.0372800682, + -0.27822687633 + ], + "libelle_d_acheminement": "ST MANDE SUR BREDOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27822687633, + 46.0372800682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0b88ca700109c7c8d8f358e82c3304fe6a21ffa", + "fields": { + "ligne_5": "HARICOURT", + "code_commune_insee": "27331", + "libelle_d_acheminement": "HEUBECOURT HARICOURT", + "code_postal": "27630", + "nom_de_la_commune": "HEUBECOURT HARICOURT", + "coordonnees_gps": [ + 49.1301336149, + 1.56459912242 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56459912242, + 49.1301336149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c67f0461b0b4b83dda025393df0664caf0c0ebd", + "fields": { + "code_commune_insee": "17372", + "nom_de_la_commune": "ST MEDARD", + "code_postal": "17500", + "coordonnees_gps": [ + 45.4003157593, + -0.353646613509 + ], + "libelle_d_acheminement": "ST MEDARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.353646613509, + 45.4003157593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdd0a24874b029765ba8dd8ad3fe885bbd282eb0", + "fields": { + "code_commune_insee": "27336", + "nom_de_la_commune": "LA HEUNIERE", + "code_postal": "27950", + "coordonnees_gps": [ + 49.0649738684, + 1.41307259092 + ], + "libelle_d_acheminement": "LA HEUNIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41307259092, + 49.0649738684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90bce1443bba7333b5856506d0484d56a8d22687", + "fields": { + "code_commune_insee": "17374", + "nom_de_la_commune": "STE MEME", + "code_postal": "17770", + "coordonnees_gps": [ + 45.8798297244, + -0.456697276737 + ], + "libelle_d_acheminement": "STE MEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.456697276737, + 45.8798297244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbd943deb73ea1515470cba60a5d70102773cb04", + "fields": { + "code_commune_insee": "27348", + "nom_de_la_commune": "IGOVILLE", + "code_postal": "27460", + "coordonnees_gps": [ + 49.3227331737, + 1.15098333541 + ], + "libelle_d_acheminement": "IGOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15098333541, + 49.3227331737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83305cb4e99098456fa33573be1d75022a305cff", + "fields": { + "code_commune_insee": "17376", + "nom_de_la_commune": "ST OUEN D AUNIS", + "code_postal": "17230", + "coordonnees_gps": [ + 46.2295901157, + -1.03191615683 + ], + "libelle_d_acheminement": "ST OUEN D AUNIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03191615683, + 46.2295901157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d323cd91057526d35451fcc4e7665cd012a2922f", + "fields": { + "code_commune_insee": "27350", + "nom_de_la_commune": "ILLIERS L EVEQUE", + "code_postal": "27770", + "coordonnees_gps": [ + 48.8249944319, + 1.25958790614 + ], + "libelle_d_acheminement": "ILLIERS L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25958790614, + 48.8249944319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d169f35587d5da908f22c744bdbf3c106d27b0e", + "fields": { + "code_commune_insee": "17377", + "nom_de_la_commune": "ST OUEN LA THENE", + "code_postal": "17490", + "coordonnees_gps": [ + 45.8643049345, + -0.170063984534 + ], + "libelle_d_acheminement": "ST OUEN LA THENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.170063984534, + 45.8643049345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd4f1a2fcba7d3091802791ba7ffc620eccf4e39", + "fields": { + "code_commune_insee": "27353", + "nom_de_la_commune": "IRREVILLE", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0984880529, + 1.19967557825 + ], + "libelle_d_acheminement": "IRREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19967557825, + 49.0984880529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6668aeb278884dbdc16d3bd78f063cc38afe2537", + "fields": { + "ligne_5": "COURLAY SUR MER", + "code_commune_insee": "17380", + "libelle_d_acheminement": "ST PALAIS SUR MER", + "code_postal": "17420", + "nom_de_la_commune": "ST PALAIS SUR MER", + "coordonnees_gps": [ + 45.6579754062, + -1.10115118709 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10115118709, + 45.6579754062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbfcc8a8b71f74ba94978767397366af42aef637", + "fields": { + "code_commune_insee": "27359", + "nom_de_la_commune": "JUIGNETTES", + "code_postal": "27250", + "coordonnees_gps": [ + 48.8472706788, + 0.64345379282 + ], + "libelle_d_acheminement": "JUIGNETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.64345379282, + 48.8472706788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa9e672545661f5dbb029657447cb0c771f1a836", + "fields": { + "code_commune_insee": "17383", + "nom_de_la_commune": "ST PIERRE DE JUILLERS", + "code_postal": "17400", + "coordonnees_gps": [ + 45.9459752445, + -0.384995955573 + ], + "libelle_d_acheminement": "ST PIERRE DE JUILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.384995955573, + 45.9459752445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b6d86953ffa559aeb2e89e235b4701ab8c4a6f6", + "fields": { + "code_commune_insee": "27360", + "nom_de_la_commune": "JUMELLES", + "code_postal": "27220", + "coordonnees_gps": [ + 48.9167408883, + 1.21193085577 + ], + "libelle_d_acheminement": "JUMELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21193085577, + 48.9167408883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f24e1366fbbd6945e901dfa5bddf39af1b7f2192", + "fields": { + "ligne_5": "LA COTINIERE", + "code_commune_insee": "17385", + "libelle_d_acheminement": "ST PIERRE D OLERON", + "code_postal": "17310", + "nom_de_la_commune": "ST PIERRE D OLERON", + "coordonnees_gps": [ + 45.9396931461, + -1.30530935595 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30530935595, + 45.9396931461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e7d8be54ae66fb5fb41b45ca9318167d5d0a984", + "fields": { + "code_commune_insee": "27369", + "nom_de_la_commune": "LILLY", + "code_postal": "27480", + "coordonnees_gps": [ + 49.4029373278, + 1.56677975295 + ], + "libelle_d_acheminement": "LILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56677975295, + 49.4029373278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a92430ff4f37bad8e0fbd4fc66cf70d6432aa75c", + "fields": { + "code_commune_insee": "17403", + "nom_de_la_commune": "ST SIMON DE BORDES", + "code_postal": "17500", + "coordonnees_gps": [ + 45.410900172, + -0.452211214542 + ], + "libelle_d_acheminement": "ST SIMON DE BORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.452211214542, + 45.410900172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1c8e996901cfffc1c8b3bb897dab436ed78cc39", + "fields": { + "code_commune_insee": "27370", + "nom_de_la_commune": "LISORS", + "code_postal": "27440", + "coordonnees_gps": [ + 49.3579867554, + 1.4732613577 + ], + "libelle_d_acheminement": "LISORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4732613577, + 49.3579867554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aef9a31d32ec1096e3cbbe892f94ca340e8e8bfa", + "fields": { + "code_commune_insee": "17412", + "nom_de_la_commune": "ST VAIZE", + "code_postal": "17100", + "coordonnees_gps": [ + 45.8161479617, + -0.621357223048 + ], + "libelle_d_acheminement": "ST VAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.621357223048, + 45.8161479617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f18d934aa3e60c24154df74e0af1c5456074aada", + "fields": { + "code_commune_insee": "27378", + "nom_de_la_commune": "LA MADELEINE DE NONANCOURT", + "code_postal": "27320", + "coordonnees_gps": [ + 48.7901504026, + 1.21800401971 + ], + "libelle_d_acheminement": "LA MADELEINE DE NONANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21800401971, + 48.7901504026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2eedd4742f806db039b1433c6f4c90c124c1a65", + "fields": { + "code_commune_insee": "17427", + "nom_de_la_commune": "SIECQ", + "code_postal": "17490", + "coordonnees_gps": [ + 45.839849714, + -0.190558367177 + ], + "libelle_d_acheminement": "SIECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.190558367177, + 45.839849714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a34fd90e983e5e6da22567abac89eaf3de21930", + "fields": { + "code_commune_insee": "27379", + "nom_de_la_commune": "MAINNEVILLE", + "code_postal": "27150", + "coordonnees_gps": [ + 49.3748963411, + 1.68713802474 + ], + "libelle_d_acheminement": "MAINNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68713802474, + 49.3748963411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "758cddbb16873afac480d2c6bb195499d30f941e", + "fields": { + "code_commune_insee": "17431", + "nom_de_la_commune": "SOULIGNONNE", + "code_postal": "17250", + "coordonnees_gps": [ + 45.7800875895, + -0.792759962295 + ], + "libelle_d_acheminement": "SOULIGNONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.792759962295, + 45.7800875895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79b030a29b932e932527648d40afbdd2e0541c8c", + "fields": { + "code_commune_insee": "27382", + "nom_de_la_commune": "MANDEVILLE", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2154721135, + 1.01292163537 + ], + "libelle_d_acheminement": "MANDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01292163537, + 49.2154721135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af3c9a5994aa72040225aac1af305bf7576a49c1", + "fields": { + "code_commune_insee": "17432", + "nom_de_la_commune": "SOUMERAS", + "code_postal": "17130", + "coordonnees_gps": [ + 45.2941676327, + -0.437417270599 + ], + "libelle_d_acheminement": "SOUMERAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.437417270599, + 45.2941676327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35d0e16f082f0f6957ff4b0c8ca2d84b8a2b05ad", + "fields": { + "code_commune_insee": "27391", + "nom_de_la_commune": "MARCILLY SUR EURE", + "code_postal": "27810", + "coordonnees_gps": [ + 48.8213584613, + 1.33287296161 + ], + "libelle_d_acheminement": "MARCILLY SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33287296161, + 48.8213584613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a907a49b7c613edfa29249c52c25a58bcbdde8e", + "fields": { + "code_commune_insee": "17435", + "nom_de_la_commune": "TAILLANT", + "code_postal": "17350", + "coordonnees_gps": [ + 45.9017839657, + -0.622044572982 + ], + "libelle_d_acheminement": "TAILLANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.622044572982, + 45.9017839657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7e4b3f358752f29ea93fea0dc8f238e96bb7595", + "fields": { + "code_commune_insee": "27403", + "nom_de_la_commune": "LE MESNIL JOURDAIN", + "code_postal": "27400", + "coordonnees_gps": [ + 49.1815334603, + 1.12763185285 + ], + "libelle_d_acheminement": "LE MESNIL JOURDAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12763185285, + 49.1815334603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ec508ad73082320911b353157ebc7d74102939f", + "fields": { + "code_commune_insee": "17441", + "nom_de_la_commune": "TESSON", + "code_postal": "17460", + "coordonnees_gps": [ + 45.6319623788, + -0.656221839044 + ], + "libelle_d_acheminement": "TESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.656221839044, + 45.6319623788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc976e0fce828f26e7da1103c132315db13de677", + "fields": { + "code_commune_insee": "27406", + "nom_de_la_commune": "MESNIL SUR L ESTREE", + "code_postal": "27650", + "coordonnees_gps": [ + 48.7767004178, + 1.29009142642 + ], + "libelle_d_acheminement": "MESNIL SUR L ESTREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29009142642, + 48.7767004178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d32ba420a301c18a8fdef6f666df652b11cc3cf", + "fields": { + "code_commune_insee": "17444", + "nom_de_la_commune": "THENAC", + "code_postal": "17460", + "coordonnees_gps": [ + 45.6757625165, + -0.651811940995 + ], + "libelle_d_acheminement": "THENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.651811940995, + 45.6757625165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ec6ce038d2c6fdc119e8078b9ac791700fc6f10", + "fields": { + "ligne_5": "TOSTES", + "code_commune_insee": "27412", + "libelle_d_acheminement": "TERRES DE BORD", + "code_postal": "27340", + "nom_de_la_commune": "TERRES DE BORD", + "coordonnees_gps": [ + 49.2297208339, + 1.09813170606 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09813170606, + 49.2297208339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fcb688db133c10406bad599ebceea0f5cf2035b", + "fields": { + "code_commune_insee": "17449", + "nom_de_la_commune": "TONNAY CHARENTE", + "code_postal": "17430", + "coordonnees_gps": [ + 45.9633766445, + -0.874412067316 + ], + "libelle_d_acheminement": "TONNAY CHARENTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.874412067316, + 45.9633766445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "321d14426d1061bebbbccaacb6f239475753159b", + "fields": { + "ligne_5": "MONTAURE", + "code_commune_insee": "27412", + "libelle_d_acheminement": "TERRES DE BORD", + "code_postal": "27400", + "nom_de_la_commune": "TERRES DE BORD", + "coordonnees_gps": [ + 49.2297208339, + 1.09813170606 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09813170606, + 49.2297208339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e057f921627bea83eb7b993ca4a6c6a10421aa87", + "fields": { + "code_commune_insee": "17450", + "nom_de_la_commune": "TORXE", + "code_postal": "17380", + "coordonnees_gps": [ + 45.9609696756, + -0.637755810704 + ], + "libelle_d_acheminement": "TORXE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.637755810704, + 45.9609696756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b721e337fa95469e569a0eeebe4586d477fc7dd", + "fields": { + "ligne_5": "ST AQUILIN D AUGERONS", + "code_commune_insee": "27414", + "libelle_d_acheminement": "MONTREUIL L ARGILLE", + "code_postal": "27390", + "nom_de_la_commune": "MONTREUIL L ARGILLE", + "coordonnees_gps": [ + 48.9396490466, + 0.468484360386 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.468484360386, + 48.9396490466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0835db10f9e28f46c294d412d1f2be5f3368160a", + "fields": { + "code_commune_insee": "17452", + "nom_de_la_commune": "LA TREMBLADE", + "code_postal": "17390", + "coordonnees_gps": [ + 45.7595222262, + -1.19070707014 + ], + "libelle_d_acheminement": "LA TREMBLADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19070707014, + 45.7595222262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbaa85521fd53a404bb3a3c78bd2f7a1c4713d05", + "fields": { + "ligne_5": "FONTAINE LA SORET", + "code_commune_insee": "27425", + "libelle_d_acheminement": "NASSANDRES SUR RISLE", + "code_postal": "27550", + "nom_de_la_commune": "NASSANDRES SUR RISLE", + "coordonnees_gps": [ + 49.1339917413, + 0.739306485861 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.739306485861, + 49.1339917413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2caee67db52654b138efe6d2e41bdef72ceca3fe", + "fields": { + "code_commune_insee": "17466", + "nom_de_la_commune": "VERINES", + "code_postal": "17540", + "coordonnees_gps": [ + 46.1972486983, + -0.972947355741 + ], + "libelle_d_acheminement": "VERINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.972947355741, + 46.1972486983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99a4639a9b8a18873c100c453ce52847a3e1116e", + "fields": { + "ligne_5": "AUVERGNY", + "code_commune_insee": "27427", + "libelle_d_acheminement": "NEAUFLES AUVERGNY", + "code_postal": "27250", + "nom_de_la_commune": "NEAUFLES AUVERGNY", + "coordonnees_gps": [ + 48.8743528336, + 0.74447514343 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74447514343, + 48.8743528336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f412060218e7c8bea3cee1e0e99f55bb5cb1fe2", + "fields": { + "code_commune_insee": "17470", + "nom_de_la_commune": "VILLARS LES BOIS", + "code_postal": "17770", + "coordonnees_gps": [ + 45.7969827822, + -0.435523123575 + ], + "libelle_d_acheminement": "VILLARS LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.435523123575, + 45.7969827822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5efde63be290df4c7b5b8707ac8f357057e372ca", + "fields": { + "code_commune_insee": "27428", + "nom_de_la_commune": "LE NEUBOURG", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1482790328, + 0.897176574238 + ], + "libelle_d_acheminement": "LE NEUBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.897176574238, + 49.1482790328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cef00f377830db34f0e2deace064d9258197b8a8", + "fields": { + "code_commune_insee": "17471", + "nom_de_la_commune": "LA VILLEDIEU", + "code_postal": "17470", + "coordonnees_gps": [ + 46.0652942658, + -0.322967627263 + ], + "libelle_d_acheminement": "LA VILLEDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.322967627263, + 46.0652942658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5c794a78214c55b1a3bc0bdfe223f93b1c69fcd", + "fields": { + "code_commune_insee": "27431", + "nom_de_la_commune": "LA NEUVE LYRE", + "code_postal": "27330", + "coordonnees_gps": [ + 48.9023268219, + 0.736464562108 + ], + "libelle_d_acheminement": "LA NEUVE LYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.736464562108, + 48.9023268219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99a7526af076e06b489860b5fb7a5613c6416741", + "fields": { + "code_commune_insee": "17474", + "nom_de_la_commune": "VILLENEUVE LA COMTESSE", + "code_postal": "17330", + "coordonnees_gps": [ + 46.0950730201, + -0.490293993465 + ], + "libelle_d_acheminement": "VILLENEUVE LA COMTESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.490293993465, + 46.0950730201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e54da894eb555518b7cde86a2c62003662b8a5f9", + "fields": { + "code_commune_insee": "27438", + "nom_de_la_commune": "NONANCOURT", + "code_postal": "27320", + "coordonnees_gps": [ + 48.7770036234, + 1.17931073126 + ], + "libelle_d_acheminement": "NONANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17931073126, + 48.7770036234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50a071d8c1a1c1c660f8fd90a44047f9e4725556", + "fields": { + "ligne_5": "VILLENOUVELLE", + "code_commune_insee": "17474", + "libelle_d_acheminement": "VILLENEUVE LA COMTESSE", + "code_postal": "17330", + "nom_de_la_commune": "VILLENEUVE LA COMTESSE", + "coordonnees_gps": [ + 46.0950730201, + -0.490293993465 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.490293993465, + 46.0950730201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f12d781db086068064e1bdf7323ab7c97430c470", + "fields": { + "code_commune_insee": "27440", + "nom_de_la_commune": "NOTRE DAME DE L ISLE", + "code_postal": "27940", + "coordonnees_gps": [ + 49.1559698641, + 1.44753514433 + ], + "libelle_d_acheminement": "NOTRE DAME DE L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44753514433, + 49.1559698641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff565aac599c1a454945f7358a74eca7f3ffc1dd", + "fields": { + "code_commune_insee": "18002", + "nom_de_la_commune": "AINAY LE VIEIL", + "code_postal": "18200", + "coordonnees_gps": [ + 46.6641114038, + 2.54417379933 + ], + "libelle_d_acheminement": "AINAY LE VIEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54417379933, + 46.6641114038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b9db2eb767530a3ba072044400864aa67dea0ff", + "fields": { + "code_commune_insee": "27445", + "nom_de_la_commune": "NOYERS", + "code_postal": "27720", + "coordonnees_gps": [ + 49.2458221928, + 1.67352293727 + ], + "libelle_d_acheminement": "NOYERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67352293727, + 49.2458221928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d810a10112da9f60497bb31e76d77fead2859c8f", + "fields": { + "code_commune_insee": "18008", + "nom_de_la_commune": "ARCAY", + "code_postal": "18340", + "coordonnees_gps": [ + 46.9625352039, + 2.3359112711 + ], + "libelle_d_acheminement": "ARCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3359112711, + 46.9625352039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7471be079502ee0e9aa55005e765fd9f6ee8550c", + "fields": { + "code_commune_insee": "27448", + "nom_de_la_commune": "PACY SUR EURE", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0221961311, + 1.39950768038 + ], + "libelle_d_acheminement": "PACY SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39950768038, + 49.0221961311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b33efc5d25bc80f5b1026beed56615dad52c86db", + "fields": { + "code_commune_insee": "18014", + "nom_de_la_commune": "ASSIGNY", + "code_postal": "18260", + "coordonnees_gps": [ + 47.4310286105, + 2.75030716643 + ], + "libelle_d_acheminement": "ASSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75030716643, + 47.4310286105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fd6e65e0cfeb0110c7fb2186c8624833c84f505", + "fields": { + "code_commune_insee": "27454", + "nom_de_la_commune": "PERRUEL", + "code_postal": "27910", + "coordonnees_gps": [ + 49.4322323114, + 1.36153418506 + ], + "libelle_d_acheminement": "PERRUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36153418506, + 49.4322323114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b55fd78fc737ba0bbf1dcfc813f12f84845a742", + "fields": { + "code_commune_insee": "18018", + "nom_de_la_commune": "AVORD", + "code_postal": "18520", + "coordonnees_gps": [ + 47.0320503423, + 2.66580708853 + ], + "libelle_d_acheminement": "AVORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66580708853, + 47.0320503423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "295fd2df7284dff0e7a1184c664540beb2187882", + "fields": { + "code_commune_insee": "27458", + "nom_de_la_commune": "PITRES", + "code_postal": "27590", + "coordonnees_gps": [ + 49.3311910772, + 1.21797145454 + ], + "libelle_d_acheminement": "PITRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21797145454, + 49.3311910772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f460d0d74080fec25bea2081379e815675632e2f", + "fields": { + "code_commune_insee": "18026", + "nom_de_la_commune": "BELLEVILLE SUR LOIRE", + "code_postal": "18240", + "coordonnees_gps": [ + 47.5017852498, + 2.84619659629 + ], + "libelle_d_acheminement": "BELLEVILLE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84619659629, + 47.5017852498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88029c55998bdfeb30445eb329e689a6f105b4bf", + "fields": { + "code_commune_insee": "27460", + "nom_de_la_commune": "PLAINVILLE", + "code_postal": "27300", + "coordonnees_gps": [ + 49.0789480792, + 0.499627134702 + ], + "libelle_d_acheminement": "PLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.499627134702, + 49.0789480792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b4d432f2d13195ed07f8bc7d29a5f706ca27bc1", + "fields": { + "code_commune_insee": "18032", + "nom_de_la_commune": "BOULLERET", + "code_postal": "18240", + "coordonnees_gps": [ + 47.4322257963, + 2.88490125663 + ], + "libelle_d_acheminement": "BOULLERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88490125663, + 47.4322257963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c2e92389d86b7e115fc761fa46c1f97b1db6dee", + "fields": { + "code_commune_insee": "27463", + "nom_de_la_commune": "PLASNES", + "code_postal": "27300", + "coordonnees_gps": [ + 49.1376315129, + 0.624753060628 + ], + "libelle_d_acheminement": "PLASNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.624753060628, + 49.1376315129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ddc1b2dcaabe23b6d9717fef75c07421151e1f2", + "fields": { + "code_commune_insee": "18039", + "nom_de_la_commune": "BUE", + "code_postal": "18300", + "coordonnees_gps": [ + 47.3103309784, + 2.79357015319 + ], + "libelle_d_acheminement": "BUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79357015319, + 47.3103309784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e7306dca0e4cefd48d02a9aef1b54caf71a4226", + "fields": { + "code_commune_insee": "27469", + "nom_de_la_commune": "PONT DE L ARCHE", + "code_postal": "27340", + "coordonnees_gps": [ + 49.2909189807, + 1.14424790108 + ], + "libelle_d_acheminement": "PONT DE L ARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14424790108, + 49.2909189807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88930d80a42c62a079c219f18a76ae20b5bf2698", + "fields": { + "code_commune_insee": "18041", + "nom_de_la_commune": "LA CELETTE", + "code_postal": "18360", + "coordonnees_gps": [ + 46.6382674585, + 2.522655765 + ], + "libelle_d_acheminement": "LA CELETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.522655765, + 46.6382674585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b9c188557808070a3a73da1420045c3a2df8a68", + "fields": { + "ligne_5": "PORTE JOIE", + "code_commune_insee": "27471", + "libelle_d_acheminement": "PORTE DE SEINE", + "code_postal": "27430", + "nom_de_la_commune": "PORTE DE SEINE", + "coordonnees_gps": [ + 49.2524086765, + 1.25122427132 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25122427132, + 49.2524086765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6d7f0ed835c7c19dd9b23317022e71d679f5031", + "fields": { + "code_commune_insee": "18045", + "nom_de_la_commune": "CHALIVOY MILON", + "code_postal": "18130", + "coordonnees_gps": [ + 46.860388257, + 2.7018249242 + ], + "libelle_d_acheminement": "CHALIVOY MILON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7018249242, + 46.860388257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "672c6888ad2effeae812bdc7385a9473055fadbb", + "fields": { + "code_commune_insee": "27473", + "nom_de_la_commune": "PORT MORT", + "code_postal": "27940", + "coordonnees_gps": [ + 49.1735749166, + 1.4105023213 + ], + "libelle_d_acheminement": "PORT MORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4105023213, + 49.1735749166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d698c65170cc5e2495c42b967d8cb990ee1c4503", + "fields": { + "code_commune_insee": "18062", + "nom_de_la_commune": "LE CHAUTAY", + "code_postal": "18150", + "coordonnees_gps": [ + 46.9852189195, + 2.9640713443 + ], + "libelle_d_acheminement": "LE CHAUTAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9640713443, + 46.9852189195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2236f7862733f7fa447b455b30c138b02282bead", + "fields": { + "code_commune_insee": "27474", + "nom_de_la_commune": "POSES", + "code_postal": "27740", + "coordonnees_gps": [ + 49.299571684, + 1.24071359731 + ], + "libelle_d_acheminement": "POSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24071359731, + 49.299571684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fc609a4e3fd6a3a151e3b4a2ac9c7d52281a797", + "fields": { + "code_commune_insee": "18072", + "nom_de_la_commune": "CORNUSSE", + "code_postal": "18350", + "coordonnees_gps": [ + 46.9561295033, + 2.73264385975 + ], + "libelle_d_acheminement": "CORNUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73264385975, + 46.9561295033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "078c1342ce9373e309530c2904485b4d2400460a", + "fields": { + "code_commune_insee": "27485", + "nom_de_la_commune": "QUILLEBEUF SUR SEINE", + "code_postal": "27680", + "coordonnees_gps": [ + 49.4700117305, + 0.501728586509 + ], + "libelle_d_acheminement": "QUILLEBEUF SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.501728586509, + 49.4700117305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54e08bb3afcb8e36a4c7ba3ac36936fde1350009", + "fields": { + "ligne_5": "STE LUNAISE", + "code_commune_insee": "18073", + "libelle_d_acheminement": "CORQUOY", + "code_postal": "18340", + "nom_de_la_commune": "CORQUOY", + "coordonnees_gps": [ + 46.8920009794, + 2.29746216707 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29746216707, + 46.8920009794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4a97223939b9552167163630b07a51024eb68a1", + "fields": { + "code_commune_insee": "27487", + "nom_de_la_commune": "RADEPONT", + "code_postal": "27380", + "coordonnees_gps": [ + 49.3531161459, + 1.32420205477 + ], + "libelle_d_acheminement": "RADEPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32420205477, + 49.3531161459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45a44be7e7e0b28f3d1ed25dda4d33a5d5bc03e6", + "fields": { + "code_commune_insee": "18074", + "nom_de_la_commune": "COUARGUES", + "code_postal": "18300", + "coordonnees_gps": [ + 47.2840191035, + 2.92686969695 + ], + "libelle_d_acheminement": "COUARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92686969695, + 47.2840191035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b77d9d9659a9cd03c549ea3ea807531af8801495", + "fields": { + "code_commune_insee": "27489", + "nom_de_la_commune": "REUILLY", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0728383808, + 1.22648323234 + ], + "libelle_d_acheminement": "REUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22648323234, + 49.0728383808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffa8502a95c7e55b8e75bc14c513fc36359e880e", + "fields": { + "code_commune_insee": "18078", + "nom_de_la_commune": "CREZANCAY SUR CHER", + "code_postal": "18190", + "coordonnees_gps": [ + 46.8142017646, + 2.34261889116 + ], + "libelle_d_acheminement": "CREZANCAY SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34261889116, + 46.8142017646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90554cf6a5abf9dcc4366448879fa2b6d8b539b8", + "fields": { + "code_commune_insee": "27497", + "nom_de_la_commune": "ROUGEMONTIERS", + "code_postal": "27350", + "coordonnees_gps": [ + 49.3579322426, + 0.724785098446 + ], + "libelle_d_acheminement": "ROUGEMONTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.724785098446, + 49.3579322426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "593d51c075c2221ec072f5a2a28302ed1c2b6d64", + "fields": { + "code_commune_insee": "18083", + "nom_de_la_commune": "CULAN", + "code_postal": "18270", + "coordonnees_gps": [ + 46.5455100179, + 2.35583784131 + ], + "libelle_d_acheminement": "CULAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35583784131, + 46.5455100179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f62bde25ee273f44e2ce75f4dbcc7bcc772adaa2", + "fields": { + "code_commune_insee": "27498", + "nom_de_la_commune": "ROUGE PERRIERS", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1460940587, + 0.833122827372 + ], + "libelle_d_acheminement": "ROUGE PERRIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.833122827372, + 49.1460940587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0b6e6302bf51e7237c59ed84bff0dceac712044", + "fields": { + "code_commune_insee": "18090", + "nom_de_la_commune": "ETRECHY", + "code_postal": "18800", + "coordonnees_gps": [ + 47.1597133509, + 2.7158646405 + ], + "libelle_d_acheminement": "ETRECHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7158646405, + 47.1597133509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "104f3add746fda1233b9b15878c2eaf212baf4eb", + "fields": { + "code_commune_insee": "27500", + "nom_de_la_commune": "ROUTOT", + "code_postal": "27350", + "coordonnees_gps": [ + 49.3851066473, + 0.726281563291 + ], + "libelle_d_acheminement": "ROUTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.726281563291, + 49.3851066473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcabdc80eaf1f9303eb00fee4a326097e59ccbd8", + "fields": { + "code_commune_insee": "18092", + "nom_de_la_commune": "FARGES EN SEPTAINE", + "code_postal": "18800", + "coordonnees_gps": [ + 47.0658935028, + 2.64111638709 + ], + "libelle_d_acheminement": "FARGES EN SEPTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64111638709, + 47.0658935028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f64cb25c7de02043fbba78854d66339ccb0ee0dd", + "fields": { + "code_commune_insee": "27525", + "nom_de_la_commune": "STE COLOMBE PRES VERNON", + "code_postal": "27950", + "coordonnees_gps": [ + 49.094937175, + 1.34106749304 + ], + "libelle_d_acheminement": "STE COLOMBE PRES VERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34106749304, + 49.094937175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f6726282065e3402e25f8ea2cb344545d888e25", + "fields": { + "code_commune_insee": "18095", + "nom_de_la_commune": "FLAVIGNY", + "code_postal": "18350", + "coordonnees_gps": [ + 46.9616811492, + 2.80011813798 + ], + "libelle_d_acheminement": "FLAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80011813798, + 46.9616811492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbe37099ec27ad5808821907cd3ce14c6a9c2ba2", + "fields": { + "code_commune_insee": "27533", + "nom_de_la_commune": "ST DENIS LE FERMENT", + "code_postal": "27140", + "coordonnees_gps": [ + 49.3218230563, + 1.71779088308 + ], + "libelle_d_acheminement": "ST DENIS LE FERMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71779088308, + 49.3218230563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a428246bf2ca8c20af06cb489504b67e6ad50c3", + "fields": { + "code_commune_insee": "18096", + "nom_de_la_commune": "FOECY", + "code_postal": "18500", + "coordonnees_gps": [ + 47.1803415795, + 2.15455136481 + ], + "libelle_d_acheminement": "FOECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15455136481, + 47.1803415795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0f09140903bf70634010bffc543c4836a494749", + "fields": { + "code_commune_insee": "27536", + "nom_de_la_commune": "ST ELOI DE FOURQUES", + "code_postal": "27800", + "coordonnees_gps": [ + 49.2356732201, + 0.802775022457 + ], + "libelle_d_acheminement": "ST ELOI DE FOURQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.802775022457, + 49.2356732201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "424d7dbddf78c7668821378aa433456e02762c5b", + "fields": { + "code_commune_insee": "18104", + "nom_de_la_commune": "GROISES", + "code_postal": "18140", + "coordonnees_gps": [ + 47.2059415173, + 2.8120139 + ], + "libelle_d_acheminement": "GROISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8120139, + 47.2059415173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4288f33b381dc155de4187537d5105fba8226af5", + "fields": { + "code_commune_insee": "27537", + "nom_de_la_commune": "ST ETIENNE DU VAUVRAY", + "code_postal": "27430", + "coordonnees_gps": [ + 49.2422112638, + 1.21540763977 + ], + "libelle_d_acheminement": "ST ETIENNE DU VAUVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21540763977, + 49.2422112638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8fa748378fd62fc61b392e76961ea6d62e1bdb8", + "fields": { + "code_commune_insee": "18108", + "nom_de_la_commune": "LA GUERCHE SUR L AUBOIS", + "code_postal": "18150", + "coordonnees_gps": [ + 46.9518824158, + 2.94540320329 + ], + "libelle_d_acheminement": "LA GUERCHE SUR L AUBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94540320329, + 46.9518824158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72eece5728d56670b40cc3f90625cafa42b0c8e4", + "fields": { + "code_commune_insee": "27538", + "nom_de_la_commune": "ST ETIENNE L ALLIER", + "code_postal": "27450", + "coordonnees_gps": [ + 49.266311791, + 0.557474976869 + ], + "libelle_d_acheminement": "ST ETIENNE L ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.557474976869, + 49.266311791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10dfda0c91dcf149913587f945941dd3c571a70f", + "fields": { + "code_commune_insee": "18111", + "nom_de_la_commune": "HUMBLIGNY", + "code_postal": "18250", + "coordonnees_gps": [ + 47.2622294774, + 2.64819893365 + ], + "libelle_d_acheminement": "HUMBLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64819893365, + 47.2622294774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71cde756a7d41d79cca1214a14a14996d44f15ff", + "fields": { + "code_commune_insee": "27540", + "nom_de_la_commune": "STE GENEVIEVE LES GASNY", + "code_postal": "27620", + "coordonnees_gps": [ + 49.0822659054, + 1.57046260822 + ], + "libelle_d_acheminement": "STE GENEVIEVE LES GASNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57046260822, + 49.0822659054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40dfcc6a0b204990841594287c6aa6d58a9e16f9", + "fields": { + "code_commune_insee": "18119", + "nom_de_la_commune": "JUSSY CHAMPAGNE", + "code_postal": "18130", + "coordonnees_gps": [ + 46.9911303193, + 2.646073906 + ], + "libelle_d_acheminement": "JUSSY CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.646073906, + 46.9911303193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0080fd5f857fde70f2a6008cade97810e85dbd89", + "fields": { + "ligne_5": "ST GEORGES DU MESNIL", + "code_commune_insee": "27541", + "libelle_d_acheminement": "LE MESNIL ST JEAN", + "code_postal": "27560", + "nom_de_la_commune": "LE MESNIL ST JEAN", + "coordonnees_gps": [ + 49.210758804, + 0.56657576286 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56657576286, + 49.210758804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "130665181e703a68b5581d4491d8c38812f9a21b", + "fields": { + "code_commune_insee": "18120", + "nom_de_la_commune": "JUSSY LE CHAUDRIER", + "code_postal": "18140", + "coordonnees_gps": [ + 47.1213846381, + 2.94318254275 + ], + "libelle_d_acheminement": "JUSSY LE CHAUDRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94318254275, + 47.1213846381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56b686bebcf0a4555890f563a53f04e05a1c7561", + "fields": { + "code_commune_insee": "27544", + "nom_de_la_commune": "ST GERMAIN DE FRESNEY", + "code_postal": "27220", + "coordonnees_gps": [ + 48.9585228548, + 1.28735678198 + ], + "libelle_d_acheminement": "ST GERMAIN DE FRESNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28735678198, + 48.9585228548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0daf6fa00978a46618aac3cbecb7dc7c9d383260", + "fields": { + "code_commune_insee": "18124", + "nom_de_la_commune": "LAZENAY", + "code_postal": "18120", + "coordonnees_gps": [ + 47.0669527618, + 2.0765874358 + ], + "libelle_d_acheminement": "LAZENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0765874358, + 47.0669527618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed12279b5fc96ea092bc96ad4eccab0ec3193c2c", + "fields": { + "ligne_5": "ST JUST", + "code_commune_insee": "27554", + "libelle_d_acheminement": "LA CHAPELLE LONGUEVILLE", + "code_postal": "27950", + "nom_de_la_commune": "LA CHAPELLE LONGUEVILLE", + "coordonnees_gps": [ + 49.1061858744, + 1.4332609397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4332609397, + 49.1061858744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e255bbecc6ae603bc92ffc9ac8e0445861fa41a3", + "fields": { + "code_commune_insee": "18126", + "nom_de_la_commune": "LEVET", + "code_postal": "18340", + "coordonnees_gps": [ + 46.9301181385, + 2.39251813835 + ], + "libelle_d_acheminement": "LEVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39251813835, + 46.9301181385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c73b625aa501d56711c30def229b87dbb9d90451", + "fields": { + "code_commune_insee": "27556", + "nom_de_la_commune": "ST LAURENT DU TENCEMENT", + "code_postal": "27390", + "coordonnees_gps": [ + 48.8917851204, + 0.46057263416 + ], + "libelle_d_acheminement": "ST LAURENT DU TENCEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46057263416, + 48.8917851204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b596e6f215e5935f3b36ce2562aad0561189bc8", + "fields": { + "code_commune_insee": "18130", + "nom_de_la_commune": "LOYE SUR ARNON", + "code_postal": "18170", + "coordonnees_gps": [ + 46.6333009116, + 2.40164471398 + ], + "libelle_d_acheminement": "LOYE SUR ARNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40164471398, + 46.6333009116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e069d26da27e8061e142fe5b5892278151569f7a", + "fields": { + "code_commune_insee": "27561", + "nom_de_la_commune": "ST MACLOU", + "code_postal": "27210", + "coordonnees_gps": [ + 49.36198979, + 0.413624402884 + ], + "libelle_d_acheminement": "ST MACLOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.413624402884, + 49.36198979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70003df22b7becd65935b390e482c5b7087ea201", + "fields": { + "code_commune_insee": "18137", + "nom_de_la_commune": "MAREUIL SUR ARNON", + "code_postal": "18290", + "coordonnees_gps": [ + 46.8786192829, + 2.16312700894 + ], + "libelle_d_acheminement": "MAREUIL SUR ARNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16312700894, + 46.8786192829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef4caae519cab35d8f1e2217d05e227d73a2ad56", + "fields": { + "code_commune_insee": "27577", + "nom_de_la_commune": "STE OPPORTUNE LA MARE", + "code_postal": "27680", + "coordonnees_gps": [ + 49.4248481767, + 0.533630300174 + ], + "libelle_d_acheminement": "STE OPPORTUNE LA MARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.533630300174, + 49.4248481767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a0ef677151fd2f82cfc145c7dd98c473714b836", + "fields": { + "code_commune_insee": "18157", + "nom_de_la_commune": "MORTHOMIERS", + "code_postal": "18570", + "coordonnees_gps": [ + 47.0436630553, + 2.27235598629 + ], + "libelle_d_acheminement": "MORTHOMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27235598629, + 47.0436630553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d287ae835a525e1580480f9a5d97724357f52aa2", + "fields": { + "ligne_5": "ST NICOLAS D ATTEZ", + "code_commune_insee": "27578", + "libelle_d_acheminement": "STE MARIE D ATTEZ", + "code_postal": "27160", + "nom_de_la_commune": "STE MARIE D ATTEZ", + "coordonnees_gps": [ + 48.7957619883, + 0.943848248614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.943848248614, + 48.7957619883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c0bf60411253d2d9214d5cdbb5529cbe2f1a5cd", + "fields": { + "code_commune_insee": "18158", + "nom_de_la_commune": "MOULINS SUR YEVRE", + "code_postal": "18390", + "coordonnees_gps": [ + 47.0934510675, + 2.52827991158 + ], + "libelle_d_acheminement": "MOULINS SUR YEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52827991158, + 47.0934510675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9207012e425d7b90ff4e6214e07494078e28b5d", + "fields": { + "ligne_5": "ST OUEN D ATTEZ", + "code_commune_insee": "27578", + "libelle_d_acheminement": "STE MARIE D ATTEZ", + "code_postal": "27160", + "nom_de_la_commune": "STE MARIE D ATTEZ", + "coordonnees_gps": [ + 48.7957619883, + 0.943848248614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.943848248614, + 48.7957619883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c24bf6b0682d7ecaeecabca7aabbced6a19814f9", + "fields": { + "code_commune_insee": "18160", + "nom_de_la_commune": "NERONDES", + "code_postal": "18350", + "coordonnees_gps": [ + 47.0040801539, + 2.83841274012 + ], + "libelle_d_acheminement": "NERONDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83841274012, + 47.0040801539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69393096baa27e1c7ea0f1d5c5cc178c07883cee", + "fields": { + "code_commune_insee": "27582", + "nom_de_la_commune": "ST OUEN DU TILLEUL", + "code_postal": "27670", + "coordonnees_gps": [ + 49.3006192126, + 0.944908698044 + ], + "libelle_d_acheminement": "ST OUEN DU TILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.944908698044, + 49.3006192126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f27ee49e9a3163f2ec76e863aa371acd1431eec9", + "fields": { + "code_commune_insee": "18167", + "nom_de_la_commune": "NOHANT EN GRACAY", + "code_postal": "18310", + "coordonnees_gps": [ + 47.1336454344, + 1.91231886836 + ], + "libelle_d_acheminement": "NOHANT EN GRACAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91231886836, + 47.1336454344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fb34a71be42048d8bcbf33e4be9847ce0435443", + "fields": { + "code_commune_insee": "27589", + "nom_de_la_commune": "ST PIERRE DE BAILLEUL", + "code_postal": "27920", + "coordonnees_gps": [ + 49.1263328488, + 1.38351691696 + ], + "libelle_d_acheminement": "ST PIERRE DE BAILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38351691696, + 49.1263328488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfe85bfb7fdb22a38707031baeec36b03df56643", + "fields": { + "code_commune_insee": "18175", + "nom_de_la_commune": "OUROUER LES BOURDELINS", + "code_postal": "18350", + "coordonnees_gps": [ + 46.9212610646, + 2.79033730796 + ], + "libelle_d_acheminement": "OUROUER LES BOURDELINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79033730796, + 46.9212610646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4ff4e3128a96cc76f8ec5aa0d023d587623bbee", + "fields": { + "code_commune_insee": "27590", + "nom_de_la_commune": "ST PIERRE DE CERNIERES", + "code_postal": "27390", + "coordonnees_gps": [ + 48.9309306433, + 0.519530805974 + ], + "libelle_d_acheminement": "ST PIERRE DE CERNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.519530805974, + 48.9309306433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40e9aae65fb5e8426a88ad6b818a723b7b2fe1f2", + "fields": { + "code_commune_insee": "18179", + "nom_de_la_commune": "PIGNY", + "code_postal": "18110", + "coordonnees_gps": [ + 47.1639629987, + 2.4440003398 + ], + "libelle_d_acheminement": "PIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4440003398, + 47.1639629987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "294dafdcc9e1d9a6073e27137a5e9e2f4a6b3464", + "fields": { + "code_commune_insee": "27591", + "nom_de_la_commune": "ST PIERRE DE CORMEILLES", + "code_postal": "27260", + "coordonnees_gps": [ + 49.2383462213, + 0.365250085842 + ], + "libelle_d_acheminement": "ST PIERRE DE CORMEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.365250085842, + 49.2383462213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4edba82da8501c775cbbbecbbf7d55426e43f68f", + "fields": { + "code_commune_insee": "18200", + "nom_de_la_commune": "ST BOUIZE", + "code_postal": "18300", + "coordonnees_gps": [ + 47.2707643696, + 2.89210091282 + ], + "libelle_d_acheminement": "ST BOUIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89210091282, + 47.2707643696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac679d3d24cd39b7fbdfa80d10357cb34cda102f", + "fields": { + "code_commune_insee": "27592", + "nom_de_la_commune": "ST PIERRE DE SALERNE", + "code_postal": "27800", + "coordonnees_gps": [ + 49.2053766905, + 0.667415097582 + ], + "libelle_d_acheminement": "ST PIERRE DE SALERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.667415097582, + 49.2053766905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e7c15e6b2a7456c6e4e81ed74d02cf090bc123b", + "fields": { + "code_commune_insee": "18201", + "nom_de_la_commune": "ST CAPRAIS", + "code_postal": "18400", + "coordonnees_gps": [ + 46.9713797864, + 2.29866398637 + ], + "libelle_d_acheminement": "ST CAPRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29866398637, + 46.9713797864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a00c0472a51226bb80ba30baffb62080f7dfdad7", + "fields": { + "code_commune_insee": "27602", + "nom_de_la_commune": "ST SEBASTIEN DE MORSENT", + "code_postal": "27180", + "coordonnees_gps": [ + 49.0125501489, + 1.07438380244 + ], + "libelle_d_acheminement": "ST SEBASTIEN DE MORSENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07438380244, + 49.0125501489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88a043b0f5536aeed5e0d23d93c701ee89f4f11d", + "fields": { + "code_commune_insee": "18202", + "nom_de_la_commune": "ST CEOLS", + "code_postal": "18220", + "coordonnees_gps": [ + 47.2192248164, + 2.6363263069 + ], + "libelle_d_acheminement": "ST CEOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6363263069, + 47.2192248164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4f342d62f82e848f718dda6a32ca1ce030ba8f9", + "fields": { + "code_commune_insee": "27610", + "nom_de_la_commune": "ST VICTOR SUR AVRE", + "code_postal": "27130", + "coordonnees_gps": [ + 48.6962855225, + 0.850882569116 + ], + "libelle_d_acheminement": "ST VICTOR SUR AVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.850882569116, + 48.6962855225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6a5deb282fd992029f7ab7ba2aab71f914f899c", + "fields": { + "code_commune_insee": "18212", + "nom_de_la_commune": "ST GERMAIN DES BOIS", + "code_postal": "18340", + "coordonnees_gps": [ + 46.8892474462, + 2.45128555429 + ], + "libelle_d_acheminement": "ST GERMAIN DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45128555429, + 46.8892474462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a4f63101f0740a04d5ab9edcaa9992da2eb73ef", + "fields": { + "code_commune_insee": "27617", + "nom_de_la_commune": "SAUSSAY LA CAMPAGNE", + "code_postal": "27150", + "coordonnees_gps": [ + 49.318922019, + 1.5084674826 + ], + "libelle_d_acheminement": "SAUSSAY LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5084674826, + 49.318922019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "686d107e3a7a63c238adb6949f9d329efa3b2008", + "fields": { + "code_commune_insee": "18215", + "nom_de_la_commune": "ST HILAIRE DE GONDILLY", + "code_postal": "18320", + "coordonnees_gps": [ + 47.0235769936, + 2.90253231971 + ], + "libelle_d_acheminement": "ST HILAIRE DE GONDILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90253231971, + 47.0235769936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b3a75e8e6ce04e94742251200109c036d2b9dd4", + "fields": { + "code_commune_insee": "27621", + "nom_de_la_commune": "SEREZ", + "code_postal": "27220", + "coordonnees_gps": [ + 48.9337049982, + 1.35814785401 + ], + "libelle_d_acheminement": "SEREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35814785401, + 48.9337049982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9c6aae186155ce9803e9967eeba92c153b7227a", + "fields": { + "code_commune_insee": "18220", + "nom_de_la_commune": "ST LEGER LE PETIT", + "code_postal": "18140", + "coordonnees_gps": [ + 47.1148472744, + 2.99914312574 + ], + "libelle_d_acheminement": "ST LEGER LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99914312574, + 47.1148472744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8708d891aacafb8247d291dc0e3e5c69cd27492", + "fields": { + "ligne_5": "LE THUIT SIGNOL", + "code_commune_insee": "27638", + "libelle_d_acheminement": "LE THUIT DE L OISON", + "code_postal": "27370", + "nom_de_la_commune": "LE THUIT DE L OISON", + "coordonnees_gps": [ + 49.2568957879, + 0.939183220001 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.939183220001, + 49.2568957879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "586aab9131332282ae44f0645023a2efcf26a3f2", + "fields": { + "code_commune_insee": "18230", + "nom_de_la_commune": "ST PIERRE LES BOIS", + "code_postal": "18170", + "coordonnees_gps": [ + 46.6716980525, + 2.28339234015 + ], + "libelle_d_acheminement": "ST PIERRE LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28339234015, + 46.6716980525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a03d0ce470d3bc7682d7cb8da0313c7d6480252e", + "fields": { + "ligne_5": "LE THUIT SIMER", + "code_commune_insee": "27638", + "libelle_d_acheminement": "LE THUIT DE L OISON", + "code_postal": "27370", + "nom_de_la_commune": "LE THUIT DE L OISON", + "coordonnees_gps": [ + 49.2568957879, + 0.939183220001 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.939183220001, + 49.2568957879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3f989e4b94271609b268dcb895368d79cc892e5", + "fields": { + "code_commune_insee": "18231", + "nom_de_la_commune": "ST PIERRE LES ETIEUX", + "code_postal": "18210", + "coordonnees_gps": [ + 46.7342983903, + 2.59346083362 + ], + "libelle_d_acheminement": "ST PIERRE LES ETIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59346083362, + 46.7342983903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7ce611274dea951df8f93cfd18705d4212758b2", + "fields": { + "code_commune_insee": "27641", + "nom_de_la_commune": "LE TILLEUL LAMBERT", + "code_postal": "27110", + "coordonnees_gps": [ + 49.0813497086, + 0.931190842277 + ], + "libelle_d_acheminement": "LE TILLEUL LAMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.931190842277, + 49.0813497086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "501accbd19e457a95b28d3ac2ed420847faed431", + "fields": { + "code_commune_insee": "18248", + "nom_de_la_commune": "SENNECAY", + "code_postal": "18340", + "coordonnees_gps": [ + 46.9523538586, + 2.43947669146 + ], + "libelle_d_acheminement": "SENNECAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43947669146, + 46.9523538586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "032944c401c160db5c84e2f98f5e0a25362db0cd", + "fields": { + "code_commune_insee": "27649", + "nom_de_la_commune": "TOUFFREVILLE", + "code_postal": "27440", + "coordonnees_gps": [ + 49.3443475717, + 1.4360738543 + ], + "libelle_d_acheminement": "TOUFFREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4360738543, + 49.3443475717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "297d2a8f2865b1654df1cfb75fa067328b6768ec", + "fields": { + "code_commune_insee": "18268", + "nom_de_la_commune": "UZAY LE VENON", + "code_postal": "18190", + "coordonnees_gps": [ + 46.8241835073, + 2.45690051792 + ], + "libelle_d_acheminement": "UZAY LE VENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45690051792, + 46.8241835073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55c7e792cfd3e043049e0b4794c04a5a7a50774c", + "fields": { + "ligne_5": "TOSNY", + "code_commune_insee": "27676", + "libelle_d_acheminement": "LES TROIS LACS", + "code_postal": "27700", + "nom_de_la_commune": "LES TROIS LACS", + "coordonnees_gps": [ + 49.2012200794, + 1.29594833053 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29594833053, + 49.2012200794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33b889a563e8a5573726ce61793242f371b5b7f9", + "fields": { + "code_commune_insee": "18274", + "nom_de_la_commune": "VERDIGNY", + "code_postal": "18300", + "coordonnees_gps": [ + 47.3488262505, + 2.81132446593 + ], + "libelle_d_acheminement": "VERDIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81132446593, + 47.3488262505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b67e011824267d4695b8463e8bcbbae2cc04f9ee", + "fields": { + "code_commune_insee": "27684", + "nom_de_la_commune": "LE VIEIL EVREUX", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0036162938, + 1.21290711297 + ], + "libelle_d_acheminement": "LE VIEIL EVREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21290711297, + 49.0036162938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02b8799586f7efed096e4250786e6fa1ab8507d8", + "fields": { + "code_commune_insee": "18278", + "nom_de_la_commune": "VESDUN", + "code_postal": "18360", + "coordonnees_gps": [ + 46.5533487781, + 2.43911843304 + ], + "libelle_d_acheminement": "VESDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43911843304, + 46.5533487781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28bf01e5f36bd09db9e760a8f6f442869f61b834", + "fields": { + "code_commune_insee": "27686", + "nom_de_la_commune": "VIEUX PORT", + "code_postal": "27680", + "coordonnees_gps": [ + 49.4269809388, + 0.6083368192 + ], + "libelle_d_acheminement": "VIEUX PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.6083368192, + 49.4269809388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e29956b2f5d9803f495d610320224348fcdd8f73", + "fields": { + "code_commune_insee": "18281", + "nom_de_la_commune": "VIGNOUX SUR BARANGEON", + "code_postal": "18500", + "coordonnees_gps": [ + 47.2080522932, + 2.18031155899 + ], + "libelle_d_acheminement": "VIGNOUX SUR BARANGEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18031155899, + 47.2080522932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "998b16b247d721ab05b74211222f9b39aadd499a", + "fields": { + "code_commune_insee": "27693", + "nom_de_la_commune": "SYLVAINS LES MOULINS", + "code_postal": "27240", + "coordonnees_gps": [ + 48.9028184134, + 1.10269659898 + ], + "libelle_d_acheminement": "SYLVAINS LES MOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10269659898, + 48.9028184134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51db213fb035f70a3dcd8a73fb0ab97ec0faf298", + "fields": { + "code_commune_insee": "18290", + "nom_de_la_commune": "VOUZERON", + "code_postal": "18330", + "coordonnees_gps": [ + 47.2723604119, + 2.21589340689 + ], + "libelle_d_acheminement": "VOUZERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21589340689, + 47.2723604119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7192b98813278e88376f1041578af76294329c54", + "fields": { + "code_commune_insee": "27694", + "nom_de_la_commune": "VILLEZ SOUS BAILLEUL", + "code_postal": "27950", + "coordonnees_gps": [ + 49.1075931676, + 1.36528860734 + ], + "libelle_d_acheminement": "VILLEZ SOUS BAILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36528860734, + 49.1075931676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "337de13e37e282b7183d628884ccd53b10173c8b", + "fields": { + "code_commune_insee": "19002", + "nom_de_la_commune": "AIX", + "code_postal": "19200", + "coordonnees_gps": [ + 45.6131404682, + 2.39218552695 + ], + "libelle_d_acheminement": "AIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39218552695, + 45.6131404682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "234e0cd035fc95044ccc8361abae28b8a5829a04", + "fields": { + "code_commune_insee": "28001", + "nom_de_la_commune": "ABONDANT", + "code_postal": "28410", + "coordonnees_gps": [ + 48.795057031, + 1.42001117062 + ], + "libelle_d_acheminement": "ABONDANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42001117062, + 48.795057031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deacdee3dbe5619395d42a548ac1d192f97dfb5b", + "fields": { + "code_commune_insee": "19003", + "nom_de_la_commune": "ALBIGNAC", + "code_postal": "19190", + "coordonnees_gps": [ + 45.147448938, + 1.67744680624 + ], + "libelle_d_acheminement": "ALBIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67744680624, + 45.147448938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61b01d054862cf7254c7a6940414ed753fb90f81", + "fields": { + "code_commune_insee": "28004", + "nom_de_la_commune": "ALLONNES", + "code_postal": "28150", + "coordonnees_gps": [ + 48.3316342289, + 1.65200413227 + ], + "libelle_d_acheminement": "ALLONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65200413227, + 48.3316342289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24d1b610613885323c0ae0854e8f306e2d8a2f40", + "fields": { + "code_commune_insee": "19004", + "nom_de_la_commune": "ALBUSSAC", + "code_postal": "19380", + "coordonnees_gps": [ + 45.1413289444, + 1.8139819421 + ], + "libelle_d_acheminement": "ALBUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8139819421, + 45.1413289444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "194e4729ac0b51a8902994323fb8834c7521530a", + "fields": { + "ligne_5": "BOISGASSON", + "code_commune_insee": "28012", + "libelle_d_acheminement": "COMMUNE NOUVELLE D ARROU", + "code_postal": "28220", + "nom_de_la_commune": "COMMUNE NOUVELLE D ARROU", + "coordonnees_gps": [ + 48.1120067473, + 1.08598331855 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08598331855, + 48.1120067473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feda0b6d416d9dc2294dd0c75b04cdb83c73f542", + "fields": { + "code_commune_insee": "19019", + "nom_de_la_commune": "BEAULIEU SUR DORDOGNE", + "code_postal": "19120", + "coordonnees_gps": [ + 44.9808198297, + 1.82767287912 + ], + "libelle_d_acheminement": "BEAULIEU SUR DORDOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82767287912, + 44.9808198297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "726cba102e064a617dd86efda7653e67594ce803", + "fields": { + "ligne_5": "ST PELLERIN", + "code_commune_insee": "28012", + "libelle_d_acheminement": "COMMUNE NOUVELLE D ARROU", + "code_postal": "28290", + "nom_de_la_commune": "COMMUNE NOUVELLE D ARROU", + "coordonnees_gps": [ + 48.1120067473, + 1.08598331855 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08598331855, + 48.1120067473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "134d10ba2056309baf3a959bb66d4e162fa60785", + "fields": { + "ligne_5": "BRIVEZAC", + "code_commune_insee": "19019", + "libelle_d_acheminement": "BEAULIEU SUR DORDOGNE", + "code_postal": "19120", + "nom_de_la_commune": "BEAULIEU SUR DORDOGNE", + "coordonnees_gps": [ + 44.9808198297, + 1.82767287912 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82767287912, + 44.9808198297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53b9cdac23b60dc74bc0be63a47b15affecd9ef9", + "fields": { + "code_commune_insee": "28018", + "nom_de_la_commune": "AUTHON DU PERCHE", + "code_postal": "28330", + "coordonnees_gps": [ + 48.2017280828, + 0.885473078137 + ], + "libelle_d_acheminement": "AUTHON DU PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.885473078137, + 48.2017280828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e73c9bf99822e0ca57814e0a5abbdc567ff2d9a", + "fields": { + "code_commune_insee": "19022", + "nom_de_la_commune": "BENAYES", + "code_postal": "19510", + "coordonnees_gps": [ + 45.5230685233, + 1.46845374515 + ], + "libelle_d_acheminement": "BENAYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46845374515, + 45.5230685233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54040cd099bfcfedddaccb41107fd1721932f765", + "fields": { + "code_commune_insee": "28021", + "nom_de_la_commune": "BAILLEAU LE PIN", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3590646091, + 1.32280842634 + ], + "libelle_d_acheminement": "BAILLEAU LE PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32280842634, + 48.3590646091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "672638e2c29e0ab1580d523f4438b8916410d019", + "fields": { + "code_commune_insee": "19023", + "nom_de_la_commune": "BEYNAT", + "code_postal": "19190", + "coordonnees_gps": [ + 45.1315842922, + 1.7298060186 + ], + "libelle_d_acheminement": "BEYNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7298060186, + 45.1315842922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e1d6b85f18c5bf35b7f8ea7906ec475c711b7a6", + "fields": { + "code_commune_insee": "28026", + "nom_de_la_commune": "BAUDREVILLE", + "code_postal": "28310", + "coordonnees_gps": [ + 48.3260694084, + 1.89005723992 + ], + "libelle_d_acheminement": "BAUDREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89005723992, + 48.3260694084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e938a43080d8c61cec8508ec3645aa10d7ea4e8c", + "fields": { + "code_commune_insee": "19024", + "nom_de_la_commune": "BEYSSAC", + "code_postal": "19230", + "coordonnees_gps": [ + 45.368379997, + 1.41904693308 + ], + "libelle_d_acheminement": "BEYSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41904693308, + 45.368379997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81db3ce4887e6f6a2b1c640f8f7b0aee37363bce", + "fields": { + "code_commune_insee": "28027", + "nom_de_la_commune": "LA BAZOCHE GOUET", + "code_postal": "28330", + "coordonnees_gps": [ + 48.140010199, + 0.970669440312 + ], + "libelle_d_acheminement": "LA BAZOCHE GOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.970669440312, + 48.140010199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d15bbf826f1be449a7cc3e77c7d706b41f01184", + "fields": { + "code_commune_insee": "19028", + "nom_de_la_commune": "BORT LES ORGUES", + "code_postal": "19110", + "coordonnees_gps": [ + 45.3932255345, + 2.49171563604 + ], + "libelle_d_acheminement": "BORT LES ORGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49171563604, + 45.3932255345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02f9c1cde5790e5355ccae4388aa8a9f0c751f40", + "fields": { + "code_commune_insee": "28033", + "nom_de_la_commune": "BELHOMERT GUEHOUVILLE", + "code_postal": "28240", + "coordonnees_gps": [ + 48.5054756735, + 1.05051096321 + ], + "libelle_d_acheminement": "BELHOMERT GUEHOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05051096321, + 48.5054756735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "172f85cffeb0228fb2f1adf21f226a9ebb2aa107", + "fields": { + "code_commune_insee": "19031", + "nom_de_la_commune": "BRIVE LA GAILLARDE", + "code_postal": "19100", + "coordonnees_gps": [ + 45.1435830664, + 1.51936836063 + ], + "libelle_d_acheminement": "BRIVE LA GAILLARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51936836063, + 45.1435830664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3cc592c401e2bb77a6499576c0741b27854bd18", + "fields": { + "code_commune_insee": "28037", + "nom_de_la_commune": "BEROU LA MULOTIERE", + "code_postal": "28270", + "coordonnees_gps": [ + 48.7406485574, + 1.07282067612 + ], + "libelle_d_acheminement": "BEROU LA MULOTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07282067612, + 48.7406485574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "546ce2ebb2f8cc1a4309bc7574eb2b445b2c4677", + "fields": { + "code_commune_insee": "19042", + "nom_de_la_commune": "CHANTEIX", + "code_postal": "19330", + "coordonnees_gps": [ + 45.3124205901, + 1.6226623783 + ], + "libelle_d_acheminement": "CHANTEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6226623783, + 45.3124205901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67e34ffef0b5b2b6b2fe8ac82edfcf2ff1bd9dad", + "fields": { + "code_commune_insee": "28038", + "nom_de_la_commune": "BETHONVILLIERS", + "code_postal": "28330", + "coordonnees_gps": [ + 48.2309678406, + 0.900029304684 + ], + "libelle_d_acheminement": "BETHONVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.900029304684, + 48.2309678406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bb35468aecb1456f814d394637d23a61f69bfdb", + "fields": { + "code_commune_insee": "19047", + "nom_de_la_commune": "CHARTRIER FERRIERE", + "code_postal": "19600", + "coordonnees_gps": [ + 45.0582166872, + 1.4341213591 + ], + "libelle_d_acheminement": "CHARTRIER FERRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4341213591, + 45.0582166872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0469fb34287f234ca8b53c5de76076fd59b55219", + "fields": { + "code_commune_insee": "28047", + "nom_de_la_commune": "BOISVILLE LA ST PERE", + "code_postal": "28150", + "coordonnees_gps": [ + 48.3320420844, + 1.6998719539 + ], + "libelle_d_acheminement": "BOISVILLE LA ST PERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6998719539, + 48.3320420844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b00c2bad964517c7995a6016c91dfdb257da10ec", + "fields": { + "code_commune_insee": "19050", + "nom_de_la_commune": "CHAUFFOUR SUR VELL", + "code_postal": "19500", + "coordonnees_gps": [ + 45.0194374555, + 1.67141752339 + ], + "libelle_d_acheminement": "CHAUFFOUR SUR VELL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67141752339, + 45.0194374555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80caa6a08c3277e9fa3351e8f74e1cab92709e36", + "fields": { + "code_commune_insee": "28054", + "nom_de_la_commune": "LE BOULLAY MIVOYE", + "code_postal": "28210", + "coordonnees_gps": [ + 48.6541877494, + 1.40635782342 + ], + "libelle_d_acheminement": "LE BOULLAY MIVOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40635782342, + 48.6541877494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bd80d645a4133da2b63d430171ad562cb84bc61", + "fields": { + "code_commune_insee": "19057", + "nom_de_la_commune": "COLLONGES LA ROUGE", + "code_postal": "19500", + "coordonnees_gps": [ + 45.0661814484, + 1.65335823441 + ], + "libelle_d_acheminement": "COLLONGES LA ROUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65335823441, + 45.0661814484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1552fbac37bae9a0dbba2d857595767caa323677", + "fields": { + "code_commune_insee": "28056", + "nom_de_la_commune": "BOUTIGNY PROUAIS", + "code_postal": "28410", + "coordonnees_gps": [ + 48.7343916136, + 1.56955678251 + ], + "libelle_d_acheminement": "BOUTIGNY PROUAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56955678251, + 48.7343916136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dac74486edfdf23c7bde2de25cd9341f76823f5", + "fields": { + "code_commune_insee": "19059", + "nom_de_la_commune": "CONCEZE", + "code_postal": "19350", + "coordonnees_gps": [ + 45.3604032352, + 1.33771562463 + ], + "libelle_d_acheminement": "CONCEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33771562463, + 45.3604032352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "331bca53c9df55a2f107eeb96aa61a8055a38c55", + "fields": { + "code_commune_insee": "28057", + "nom_de_la_commune": "BOUVILLE", + "code_postal": "28800", + "coordonnees_gps": [ + 48.2618330754, + 1.37825366464 + ], + "libelle_d_acheminement": "BOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37825366464, + 48.2618330754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "818fb781ae1ffe2b2eb7f40e8f91b4398b27b0e2", + "fields": { + "code_commune_insee": "19064", + "nom_de_la_commune": "COUFFY SUR SARSONNE", + "code_postal": "19340", + "coordonnees_gps": [ + 45.6719053866, + 2.34459730076 + ], + "libelle_d_acheminement": "COUFFY SUR SARSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34459730076, + 45.6719053866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe3f1b371966a9b604742f87ad541cf64e34b643", + "fields": { + "code_commune_insee": "28060", + "nom_de_la_commune": "BRICONVILLE", + "code_postal": "28300", + "coordonnees_gps": [ + 48.5160983011, + 1.38866084264 + ], + "libelle_d_acheminement": "BRICONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38866084264, + 48.5160983011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16602b58263ee912387b5aaa0311969ca09e5dd4", + "fields": { + "code_commune_insee": "19065", + "nom_de_la_commune": "COURTEIX", + "code_postal": "19340", + "coordonnees_gps": [ + 45.6460610624, + 2.34358593599 + ], + "libelle_d_acheminement": "COURTEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34358593599, + 45.6460610624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e61afa233eedeac4a564fb36ee3115b4b88dadd", + "fields": { + "code_commune_insee": "28062", + "nom_de_la_commune": "BROUE", + "code_postal": "28410", + "coordonnees_gps": [ + 48.7523989393, + 1.52435606759 + ], + "libelle_d_acheminement": "BROUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52435606759, + 48.7523989393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2ed130c9c6a2063f0623f4e2fd298dfadc820d7", + "fields": { + "code_commune_insee": "19066", + "nom_de_la_commune": "CUBLAC", + "code_postal": "19520", + "coordonnees_gps": [ + 45.1562309473, + 1.30589609182 + ], + "libelle_d_acheminement": "CUBLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30589609182, + 45.1562309473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f46cb7855cad50244b7189b732c1f1389eba9c44", + "fields": { + "code_commune_insee": "28064", + "nom_de_la_commune": "BU", + "code_postal": "28410", + "coordonnees_gps": [ + 48.8022272101, + 1.49327920018 + ], + "libelle_d_acheminement": "BU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49327920018, + 48.8022272101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3a874198f92a398587d612ca37dd26edb0e5e1a", + "fields": { + "code_commune_insee": "19069", + "nom_de_la_commune": "DARAZAC", + "code_postal": "19220", + "coordonnees_gps": [ + 45.1741698919, + 2.0813262625 + ], + "libelle_d_acheminement": "DARAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0813262625, + 45.1741698919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5e8e258a202875dabb59c7b31a8faf9adfce1ba", + "fields": { + "code_commune_insee": "28072", + "nom_de_la_commune": "CHAMPROND EN PERCHET", + "code_postal": "28400", + "coordonnees_gps": [ + 48.3085191806, + 0.888503086856 + ], + "libelle_d_acheminement": "CHAMPROND EN PERCHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.888503086856, + 48.3085191806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7596070f5e6df8fae1a05e6a8cbd3203326fa143", + "fields": { + "code_commune_insee": "19081", + "nom_de_la_commune": "EYREIN", + "code_postal": "19800", + "coordonnees_gps": [ + 45.3273225675, + 1.94274800441 + ], + "libelle_d_acheminement": "EYREIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94274800441, + 45.3273225675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9478adce788c0182c1c4ebd784eb968ba1b7554", + "fields": { + "code_commune_insee": "28074", + "nom_de_la_commune": "LA CHAPELLE D AUNAINVILLE", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4158203912, + 1.79760418666 + ], + "libelle_d_acheminement": "LA CHAPELLE D AUNAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79760418666, + 48.4158203912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14c6aadb26bf215707da8d93b849795c744dfc57", + "fields": { + "code_commune_insee": "19086", + "nom_de_la_commune": "GOULLES", + "code_postal": "19430", + "coordonnees_gps": [ + 45.0195641507, + 2.09352892736 + ], + "libelle_d_acheminement": "GOULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09352892736, + 45.0195641507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10d4b21da1528b1870b22c6adea7aef752383587", + "fields": { + "code_commune_insee": "28077", + "nom_de_la_commune": "LA CHAPELLE FORTIN", + "code_postal": "28340", + "coordonnees_gps": [ + 48.6478574812, + 0.862854348715 + ], + "libelle_d_acheminement": "LA CHAPELLE FORTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.862854348715, + 48.6478574812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40e1fd65243ba906b2533d044c7ecb625855981c", + "fields": { + "code_commune_insee": "19092", + "nom_de_la_commune": "LE JARDIN", + "code_postal": "19300", + "coordonnees_gps": [ + 45.3210874234, + 2.05026860148 + ], + "libelle_d_acheminement": "LE JARDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05026860148, + 45.3210874234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2d368e5fa32bfe66ebe65788243e3b9500ee104", + "fields": { + "code_commune_insee": "28100", + "nom_de_la_commune": "CINTRAY", + "code_postal": "28300", + "coordonnees_gps": [ + 48.4458871543, + 1.3658542518 + ], + "libelle_d_acheminement": "CINTRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3658542518, + 48.4458871543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae2895ea789cd5cdecb9ff0e1dbd9c2722e4b43b", + "fields": { + "code_commune_insee": "19093", + "nom_de_la_commune": "JUGEALS NAZARETH", + "code_postal": "19500", + "coordonnees_gps": [ + 45.0889828477, + 1.55455491162 + ], + "libelle_d_acheminement": "JUGEALS NAZARETH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55455491162, + 45.0889828477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59ae1c12cbdb8d8220b07a5e5a0fd039fc094759", + "fields": { + "ligne_5": "AUTHEUIL", + "code_commune_insee": "28103", + "libelle_d_acheminement": "CLOYES LES TROIS RIVIERES", + "code_postal": "28220", + "nom_de_la_commune": "CLOYES LES TROIS RIVIERES", + "coordonnees_gps": [ + 47.9934559542, + 1.22150535909 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22150535909, + 47.9934559542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b73d92193242af3df1b5a4228ca9f64b6aea6568", + "fields": { + "code_commune_insee": "19096", + "nom_de_la_commune": "LADIGNAC SUR RONDELLES", + "code_postal": "19150", + "coordonnees_gps": [ + 45.2302018148, + 1.82480345617 + ], + "libelle_d_acheminement": "LADIGNAC SUR RONDELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82480345617, + 45.2302018148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e29766674168240a76d9522d50f136c52d76cfa6", + "fields": { + "ligne_5": "DOUY", + "code_commune_insee": "28103", + "libelle_d_acheminement": "CLOYES LES TROIS RIVIERES", + "code_postal": "28220", + "nom_de_la_commune": "CLOYES LES TROIS RIVIERES", + "coordonnees_gps": [ + 47.9934559542, + 1.22150535909 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22150535909, + 47.9934559542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bd9615472b57e816f5cc3d86a1ca7f1850cfe64", + "fields": { + "ligne_5": "LAGARDE ENVAL", + "code_commune_insee": "19098", + "libelle_d_acheminement": "LAGARDE MARC LA TOUR", + "code_postal": "19150", + "nom_de_la_commune": "LAGARDE MARC LA TOUR", + "coordonnees_gps": [ + 45.1855958017, + 1.81780911509 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81780911509, + 45.1855958017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4336fd46ee80c5d8866b2a18f22701c35c14c76", + "fields": { + "ligne_5": "ROMILLY SUR AIGRE", + "code_commune_insee": "28103", + "libelle_d_acheminement": "CLOYES LES TROIS RIVIERES", + "code_postal": "28220", + "nom_de_la_commune": "CLOYES LES TROIS RIVIERES", + "coordonnees_gps": [ + 47.9934559542, + 1.22150535909 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22150535909, + 47.9934559542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f48bc20240ddb441957422032dc88f751f6f2c0", + "fields": { + "code_commune_insee": "19099", + "nom_de_la_commune": "LAGLEYGEOLLE", + "code_postal": "19500", + "coordonnees_gps": [ + 45.084341553, + 1.69557036344 + ], + "libelle_d_acheminement": "LAGLEYGEOLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69557036344, + 45.084341553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e450b6f40fe3e43704b614c1632e4987a86a060d", + "fields": { + "ligne_5": "ST HILAIRE SUR YERRE", + "code_commune_insee": "28103", + "libelle_d_acheminement": "CLOYES LES TROIS RIVIERES", + "code_postal": "28220", + "nom_de_la_commune": "CLOYES LES TROIS RIVIERES", + "coordonnees_gps": [ + 47.9934559542, + 1.22150535909 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22150535909, + 47.9934559542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "147cbd5b89ebe51349ca34c51f32b23765c2861a", + "fields": { + "code_commune_insee": "19102", + "nom_de_la_commune": "LAMAZIERE BASSE", + "code_postal": "19160", + "coordonnees_gps": [ + 45.3730034504, + 2.17148208461 + ], + "libelle_d_acheminement": "LAMAZIERE BASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17148208461, + 45.3730034504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efcb4b7485d3aafb95745323c40d5d04b4c78090", + "fields": { + "code_commune_insee": "28111", + "nom_de_la_commune": "COUDRAY AU PERCHE", + "code_postal": "28330", + "coordonnees_gps": [ + 48.2383164259, + 0.857009664222 + ], + "libelle_d_acheminement": "COUDRAY AU PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.857009664222, + 48.2383164259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef249dcdf82ca38596b2b76c0c63f48c20b1c6b2", + "fields": { + "code_commune_insee": "19113", + "nom_de_la_commune": "LIGINIAC", + "code_postal": "19160", + "coordonnees_gps": [ + 45.405035846, + 2.32343781175 + ], + "libelle_d_acheminement": "LIGINIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32343781175, + 45.405035846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc41255d8352b4f8a02d6277c2083e9ccdecd696", + "fields": { + "code_commune_insee": "28118", + "nom_de_la_commune": "CROISILLES", + "code_postal": "28210", + "coordonnees_gps": [ + 48.6907785003, + 1.49908136395 + ], + "libelle_d_acheminement": "CROISILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49908136395, + 48.6907785003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37db77b9c6dcc25f5d13e1690303eb28b086306b", + "fields": { + "code_commune_insee": "19122", + "nom_de_la_commune": "MADRANGES", + "code_postal": "19470", + "coordonnees_gps": [ + 45.4674850296, + 1.79655382411 + ], + "libelle_d_acheminement": "MADRANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79655382411, + 45.4674850296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "737883faf0c8a0dfb3dfeeddafc33e27d99fec8b", + "fields": { + "ligne_5": "MAINTERNE", + "code_commune_insee": "28120", + "libelle_d_acheminement": "CRUCEY VILLAGES", + "code_postal": "28270", + "nom_de_la_commune": "CRUCEY VILLAGES", + "coordonnees_gps": [ + 48.6685590578, + 1.10718898581 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10718898581, + 48.6685590578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "306cf6e70e9de0822211b5c26c588cd10f491fe4", + "fields": { + "code_commune_insee": "19125", + "nom_de_la_commune": "MARCILLAC LA CROISILLE", + "code_postal": "19320", + "coordonnees_gps": [ + 45.2528826231, + 2.0341111396 + ], + "libelle_d_acheminement": "MARCILLAC LA CROISILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0341111396, + 45.2528826231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5329c8e46e02f42b58525e6c5667e92f107482e4", + "fields": { + "code_commune_insee": "28130", + "nom_de_la_commune": "DIGNY", + "code_postal": "28250", + "coordonnees_gps": [ + 48.5287429775, + 1.13541399668 + ], + "libelle_d_acheminement": "DIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13541399668, + 48.5287429775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b32c2a45406882cad4a971e6c96800472a1795e", + "fields": { + "code_commune_insee": "19126", + "nom_de_la_commune": "MARCILLAC LA CROZE", + "code_postal": "19500", + "coordonnees_gps": [ + 45.0331846728, + 1.73789456774 + ], + "libelle_d_acheminement": "MARCILLAC LA CROZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73789456774, + 45.0331846728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6021163dafb6a7a09730405c569045b4cbe0f23d", + "fields": { + "code_commune_insee": "28144", + "nom_de_la_commune": "LES ETILLEUX", + "code_postal": "28330", + "coordonnees_gps": [ + 48.2447661829, + 0.81627272785 + ], + "libelle_d_acheminement": "LES ETILLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.81627272785, + 48.2447661829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "984ebce923747dc8b02e0f829d06e60504f0417c", + "fields": { + "code_commune_insee": "19136", + "nom_de_la_commune": "MEYMAC", + "code_postal": "19250", + "coordonnees_gps": [ + 45.5542315824, + 2.14009183651 + ], + "libelle_d_acheminement": "MEYMAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14009183651, + 45.5542315824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d291e901db80097700036c144adfed0d5553251", + "fields": { + "code_commune_insee": "28161", + "nom_de_la_commune": "FRAZE", + "code_postal": "28160", + "coordonnees_gps": [ + 48.2597341794, + 1.09855168328 + ], + "libelle_d_acheminement": "FRAZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09855168328, + 48.2597341794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ed4b896516df330a4a204fb2a37da4faf49a545", + "fields": { + "code_commune_insee": "19138", + "nom_de_la_commune": "MEYSSAC", + "code_postal": "19500", + "coordonnees_gps": [ + 45.0503878402, + 1.68376616908 + ], + "libelle_d_acheminement": "MEYSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68376616908, + 45.0503878402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0044363104977e782ee67fa49346aebf640dbda5", + "fields": { + "code_commune_insee": "28171", + "nom_de_la_commune": "GARNAY", + "code_postal": "28500", + "coordonnees_gps": [ + 48.6998026129, + 1.33718579474 + ], + "libelle_d_acheminement": "GARNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33718579474, + 48.6998026129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a099787f1619ca20661aa20214d1c279b1ab05a", + "fields": { + "code_commune_insee": "19141", + "nom_de_la_commune": "MONESTIER MERLINES", + "code_postal": "19340", + "coordonnees_gps": [ + 45.6502055059, + 2.48933845927 + ], + "libelle_d_acheminement": "MONESTIER MERLINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48933845927, + 45.6502055059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d28bc7a317c6b0111f5586ba1f1bece80faa198b", + "fields": { + "code_commune_insee": "28185", + "nom_de_la_commune": "GOUSSAINVILLE", + "code_postal": "28410", + "coordonnees_gps": [ + 48.7829804111, + 1.56001143121 + ], + "libelle_d_acheminement": "GOUSSAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56001143121, + 48.7829804111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91112ed51320cf23f8e450186262fc2942347e34", + "fields": { + "code_commune_insee": "19144", + "nom_de_la_commune": "MONTGIBAUD", + "code_postal": "19210", + "coordonnees_gps": [ + 45.5088660524, + 1.4212214212 + ], + "libelle_d_acheminement": "MONTGIBAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4212214212, + 45.5088660524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f82dc6d039ebaeca3cd7323fd6586186481d1de4", + "fields": { + "ligne_5": "CHAMPAGNE", + "code_commune_insee": "28185", + "libelle_d_acheminement": "GOUSSAINVILLE", + "code_postal": "28410", + "nom_de_la_commune": "GOUSSAINVILLE", + "coordonnees_gps": [ + 48.7829804111, + 1.56001143121 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56001143121, + 48.7829804111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9c64af46e1db89ed782f7cb1f2abae22d6d8aa9", + "fields": { + "code_commune_insee": "19148", + "nom_de_la_commune": "NEUVIC", + "code_postal": "19160", + "coordonnees_gps": [ + 45.3714171238, + 2.25865560062 + ], + "libelle_d_acheminement": "NEUVIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25865560062, + 45.3714171238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c2869f0df15a4d64320ca87a9d2f51760f8b243", + "fields": { + "code_commune_insee": "28189", + "nom_de_la_commune": "GUILLEVILLE", + "code_postal": "28310", + "coordonnees_gps": [ + 48.2218869218, + 1.80247996905 + ], + "libelle_d_acheminement": "GUILLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80247996905, + 48.2218869218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4777750f6debab970069904734c9c457d873d9f7", + "fields": { + "code_commune_insee": "19150", + "nom_de_la_commune": "NOAILHAC", + "code_postal": "19500", + "coordonnees_gps": [ + 45.0827332005, + 1.61660799829 + ], + "libelle_d_acheminement": "NOAILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61660799829, + 45.0827332005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d58a4a8a473ff790a6ed734425a262a6071baccc", + "fields": { + "ligne_5": "ALLAINES MERVILLIERS", + "code_commune_insee": "28199", + "libelle_d_acheminement": "JANVILLE EN BEAUCE", + "code_postal": "28310", + "nom_de_la_commune": "JANVILLE EN BEAUCE", + "coordonnees_gps": [ + 48.200814518, + 1.89039239434 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89039239434, + 48.200814518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f3a4e151236bfd171c5b29dc73c45dbdf27a303", + "fields": { + "code_commune_insee": "19154", + "nom_de_la_commune": "ORGNAC SUR VEZERE", + "code_postal": "19410", + "coordonnees_gps": [ + 45.3405611146, + 1.46183907103 + ], + "libelle_d_acheminement": "ORGNAC SUR VEZERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46183907103, + 45.3405611146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7dcfe6501192958a82c381350bffa543bab5aad", + "fields": { + "code_commune_insee": "28203", + "nom_de_la_commune": "LANDELLES", + "code_postal": "28190", + "coordonnees_gps": [ + 48.4626590612, + 1.19157539443 + ], + "libelle_d_acheminement": "LANDELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19157539443, + 48.4626590612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33aa8388a8a489af3fbc7f94080a3d6be7e7c16d", + "fields": { + "code_commune_insee": "19159", + "nom_de_la_commune": "PERET BEL AIR", + "code_postal": "19300", + "coordonnees_gps": [ + 45.4725257232, + 2.02530353299 + ], + "libelle_d_acheminement": "PERET BEL AIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02530353299, + 45.4725257232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89f6f57653163834fce05ca820acc8ec2bc3e0b0", + "fields": { + "code_commune_insee": "28207", + "nom_de_la_commune": "LETHUIN", + "code_postal": "28700", + "coordonnees_gps": [ + 48.3768807843, + 1.86192482612 + ], + "libelle_d_acheminement": "LETHUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86192482612, + 48.3768807843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e18b69797c266a5d899dd4706005d1beaf3a578c", + "fields": { + "code_commune_insee": "19160", + "nom_de_la_commune": "PEROLS SUR VEZERE", + "code_postal": "19170", + "coordonnees_gps": [ + 45.5751012606, + 2.0039583591 + ], + "libelle_d_acheminement": "PEROLS SUR VEZERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0039583591, + 45.5751012606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10281123ed8181f592d4f6f62ecc099e26e5595d", + "fields": { + "code_commune_insee": "28211", + "nom_de_la_commune": "LOGRON", + "code_postal": "28200", + "coordonnees_gps": [ + 48.1408053653, + 1.25353586529 + ], + "libelle_d_acheminement": "LOGRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25353586529, + 48.1408053653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91a6481667927a4d01a96888922ea8d33a6cb269", + "fields": { + "code_commune_insee": "19170", + "nom_de_la_commune": "QUEYSSAC LES VIGNES", + "code_postal": "19120", + "coordonnees_gps": [ + 44.9644974999, + 1.76788116489 + ], + "libelle_d_acheminement": "QUEYSSAC LES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76788116489, + 44.9644974999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e93f5aa59f28c90e037f5258bca6a800cceb328c", + "fields": { + "code_commune_insee": "28212", + "nom_de_la_commune": "LOIGNY LA BATAILLE", + "code_postal": "28140", + "coordonnees_gps": [ + 48.126976397, + 1.72344653891 + ], + "libelle_d_acheminement": "LOIGNY LA BATAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72344653891, + 48.126976397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ab6172f56631c678783876dedeba82d4e60ebe3", + "fields": { + "code_commune_insee": "19173", + "nom_de_la_commune": "RILHAC XAINTRIE", + "code_postal": "19220", + "coordonnees_gps": [ + 45.1727059294, + 2.18984077677 + ], + "libelle_d_acheminement": "RILHAC XAINTRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18984077677, + 45.1727059294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fce8ba325969000f7c8ae119ae1f43eabf864580", + "fields": { + "code_commune_insee": "28218", + "nom_de_la_commune": "LUCE", + "code_postal": "28110", + "coordonnees_gps": [ + 48.434779098, + 1.45277569654 + ], + "libelle_d_acheminement": "LUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45277569654, + 48.434779098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85fc530e96a90436130523eeea9ec785dc43c2d7", + "fields": { + "code_commune_insee": "19175", + "nom_de_la_commune": "ROCHE LE PEYROUX", + "code_postal": "19160", + "coordonnees_gps": [ + 45.4277118588, + 2.37982336368 + ], + "libelle_d_acheminement": "ROCHE LE PEYROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37982336368, + 45.4277118588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42e40e7d9cede4abc9143603f1129163fc282e5b", + "fields": { + "code_commune_insee": "28221", + "nom_de_la_commune": "LUMEAU", + "code_postal": "28140", + "coordonnees_gps": [ + 48.106757981, + 1.7776103465 + ], + "libelle_d_acheminement": "LUMEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7776103465, + 48.106757981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77d590b771507fda4b0c016dced16d062c04bad4", + "fields": { + "code_commune_insee": "19179", + "nom_de_la_commune": "SAILLAC", + "code_postal": "19500", + "coordonnees_gps": [ + 45.0401470821, + 1.6412703898 + ], + "libelle_d_acheminement": "SAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6412703898, + 45.0401470821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "414d466a745b7ce0a95c98675cc7288c8be55a35", + "fields": { + "code_commune_insee": "28225", + "nom_de_la_commune": "MAGNY", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3445190999, + 1.27019288378 + ], + "libelle_d_acheminement": "MAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27019288378, + 48.3445190999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8f472fad2fd9e67492f8bdde4b67c4b84008770", + "fields": { + "code_commune_insee": "19181", + "nom_de_la_commune": "ST AUGUSTIN", + "code_postal": "19390", + "coordonnees_gps": [ + 45.4330402984, + 1.83259259547 + ], + "libelle_d_acheminement": "ST AUGUSTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83259259547, + 45.4330402984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a1e436cebb058ce5f7a5756e4659a06a716a5ed", + "fields": { + "code_commune_insee": "28229", + "nom_de_la_commune": "MAINVILLIERS", + "code_postal": "28300", + "coordonnees_gps": [ + 48.4625411561, + 1.44581970225 + ], + "libelle_d_acheminement": "MAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44581970225, + 48.4625411561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54d5008038e7ab3f7044f78638f409ab499b1856", + "fields": { + "code_commune_insee": "19182", + "nom_de_la_commune": "ST AULAIRE", + "code_postal": "19130", + "coordonnees_gps": [ + 45.2363536459, + 1.38790567067 + ], + "libelle_d_acheminement": "ST AULAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38790567067, + 45.2363536459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a96e27d0636cc133eb95dd3ea0f4a7fefb87e2d", + "fields": { + "code_commune_insee": "28232", + "nom_de_la_commune": "MANOU", + "code_postal": "28240", + "coordonnees_gps": [ + 48.5363856348, + 0.962933887077 + ], + "libelle_d_acheminement": "MANOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.962933887077, + 48.5363856348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d092a2578d0b9e2cbb3dbd773d0162546b7c0105", + "fields": { + "code_commune_insee": "19186", + "nom_de_la_commune": "ST BONNET ELVERT", + "code_postal": "19380", + "coordonnees_gps": [ + 45.1580000269, + 1.9167435017 + ], + "libelle_d_acheminement": "ST BONNET ELVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9167435017, + 45.1580000269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8af4a07bfa36c1b74de382117d5658456e1301ca", + "fields": { + "code_commune_insee": "28237", + "nom_de_la_commune": "MAROLLES LES BUIS", + "code_postal": "28400", + "coordonnees_gps": [ + 48.366153704, + 0.94298127545 + ], + "libelle_d_acheminement": "MAROLLES LES BUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.94298127545, + 48.366153704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d18c054b5770e4bec3bd2b950a7c11c69f47ac3d", + "fields": { + "code_commune_insee": "19193", + "nom_de_la_commune": "ST CIRGUES LA LOUTRE", + "code_postal": "19220", + "coordonnees_gps": [ + 45.0892873396, + 2.09970697485 + ], + "libelle_d_acheminement": "ST CIRGUES LA LOUTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09970697485, + 45.0892873396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "071bee0c753f04705df37ec738c66ce451866a7f", + "fields": { + "code_commune_insee": "28243", + "nom_de_la_commune": "MEROUVILLE", + "code_postal": "28310", + "coordonnees_gps": [ + 48.3030421961, + 1.9009195604 + ], + "libelle_d_acheminement": "MEROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9009195604, + 48.3030421961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99b8a67115c00409d8cb5d114e7b8afbad1ffe16", + "fields": { + "code_commune_insee": "19195", + "nom_de_la_commune": "ST CYPRIEN", + "code_postal": "19130", + "coordonnees_gps": [ + 45.2509684533, + 1.35607241092 + ], + "libelle_d_acheminement": "ST CYPRIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35607241092, + 45.2509684533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc2f205442646a4aa1325d21c7cbae58a2142602", + "fields": { + "code_commune_insee": "28245", + "nom_de_la_commune": "MESLAY LE GRENET", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3706581245, + 1.38965705749 + ], + "libelle_d_acheminement": "MESLAY LE GRENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38965705749, + 48.3706581245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9501f69651d18093f03907251a97322f7c4e1bb", + "fields": { + "code_commune_insee": "19196", + "nom_de_la_commune": "ST CYR LA ROCHE", + "code_postal": "19130", + "coordonnees_gps": [ + 45.2792183518, + 1.38416762976 + ], + "libelle_d_acheminement": "ST CYR LA ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38416762976, + 45.2792183518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99a005b72c5e066c744ce3bdd20b4db152e02eb8", + "fields": { + "code_commune_insee": "28247", + "nom_de_la_commune": "LE MESNIL SIMON", + "code_postal": "28260", + "coordonnees_gps": [ + 48.8900734081, + 1.53507885253 + ], + "libelle_d_acheminement": "LE MESNIL SIMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53507885253, + 48.8900734081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c66456ec981b66f34af47764015a5240ba515dbb", + "fields": { + "code_commune_insee": "19198", + "nom_de_la_commune": "ST ELOY LES TUILERIES", + "code_postal": "19210", + "coordonnees_gps": [ + 45.4551252981, + 1.27792315725 + ], + "libelle_d_acheminement": "ST ELOY LES TUILERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27792315725, + 45.4551252981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f65562c8024329f043fadce5ebe489389f5fd5a", + "fields": { + "code_commune_insee": "28249", + "nom_de_la_commune": "MEVOISINS", + "code_postal": "28130", + "coordonnees_gps": [ + 48.5527925971, + 1.59900194364 + ], + "libelle_d_acheminement": "MEVOISINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59900194364, + 48.5527925971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb5a85e5ec3e4c2ebc17cde09ab38ec9c7aa370a", + "fields": { + "code_commune_insee": "19199", + "nom_de_la_commune": "ST ETIENNE AUX CLOS", + "code_postal": "19200", + "coordonnees_gps": [ + 45.5661403766, + 2.44957915705 + ], + "libelle_d_acheminement": "ST ETIENNE AUX CLOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44957915705, + 45.5661403766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9597516dff4c1351d1a7606d839fa70877003af2", + "fields": { + "ligne_5": "VERIGNY", + "code_commune_insee": "28254", + "libelle_d_acheminement": "MITTAINVILLIERS VERIGNY", + "code_postal": "28190", + "nom_de_la_commune": "MITTAINVILLIERS VERIGNY", + "coordonnees_gps": [ + 48.499607648, + 1.31332241726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31332241726, + 48.499607648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68369fcfb7471bd05917b1edd64ebf4bf727982b", + "fields": { + "code_commune_insee": "19201", + "nom_de_la_commune": "ST EXUPERY LES ROCHES", + "code_postal": "19200", + "coordonnees_gps": [ + 45.5112778828, + 2.36990833562 + ], + "libelle_d_acheminement": "ST EXUPERY LES ROCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36990833562, + 45.5112778828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaa25c9758941197d910c43a566d94a5d6301691", + "fields": { + "code_commune_insee": "28264", + "nom_de_la_commune": "MONTIREAU", + "code_postal": "28240", + "coordonnees_gps": [ + 48.4147284509, + 1.03540606287 + ], + "libelle_d_acheminement": "MONTIREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03540606287, + 48.4147284509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02898086cc91c7029d8a4ca01dcde2f00ec0df6f", + "fields": { + "code_commune_insee": "19208", + "nom_de_la_commune": "ST HILAIRE FOISSAC", + "code_postal": "19550", + "coordonnees_gps": [ + 45.3237427477, + 2.11464630625 + ], + "libelle_d_acheminement": "ST HILAIRE FOISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11464630625, + 45.3237427477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "294411c8ffa02ae28dee0c3fd3dd12f2eb394248", + "fields": { + "code_commune_insee": "28267", + "nom_de_la_commune": "MONTREUIL", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7726380793, + 1.38032861219 + ], + "libelle_d_acheminement": "MONTREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38032861219, + 48.7726380793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b1706377137e4dfadfef5e33e51cbec4c81e37c", + "fields": { + "code_commune_insee": "19210", + "nom_de_la_commune": "ST HILAIRE LUC", + "code_postal": "19160", + "coordonnees_gps": [ + 45.3460319369, + 2.20762618382 + ], + "libelle_d_acheminement": "ST HILAIRE LUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20762618382, + 45.3460319369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93700aa1331e73c65d8527448579e6c2737c9ba2", + "fields": { + "code_commune_insee": "28273", + "nom_de_la_commune": "MOULHARD", + "code_postal": "28160", + "coordonnees_gps": [ + 48.2126188689, + 1.01237475524 + ], + "libelle_d_acheminement": "MOULHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01237475524, + 48.2126188689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b208201cfd7f077f6739d3d08fff4ba0cb34b246", + "fields": { + "code_commune_insee": "19212", + "nom_de_la_commune": "ST HILAIRE TAURIEUX", + "code_postal": "19400", + "coordonnees_gps": [ + 45.0831887822, + 1.83285780001 + ], + "libelle_d_acheminement": "ST HILAIRE TAURIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83285780001, + 45.0831887822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5665d91800684d1ae9d5724a3634dbb683752e5", + "fields": { + "code_commune_insee": "28276", + "nom_de_la_commune": "NEUVY EN BEAUCE", + "code_postal": "28310", + "coordonnees_gps": [ + 48.2759003271, + 1.87399760682 + ], + "libelle_d_acheminement": "NEUVY EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87399760682, + 48.2759003271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dd0034388f6a771f88e54466f094afd5c16f2de", + "fields": { + "code_commune_insee": "19213", + "nom_de_la_commune": "ST JAL", + "code_postal": "19700", + "coordonnees_gps": [ + 45.3931451216, + 1.6489461128 + ], + "libelle_d_acheminement": "ST JAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6489461128, + 45.3931451216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c97a8a703193adff87bdc733cfbb1bfa185ffc9", + "fields": { + "code_commune_insee": "28278", + "nom_de_la_commune": "NOGENT LE PHAYE", + "code_postal": "28630", + "coordonnees_gps": [ + 48.4518880415, + 1.57822633062 + ], + "libelle_d_acheminement": "NOGENT LE PHAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57822633062, + 48.4518880415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae46172204c4cc35922753597ddf3fa03bcdac95", + "fields": { + "code_commune_insee": "19220", + "nom_de_la_commune": "ST MARTIAL DE GIMEL", + "code_postal": "19150", + "coordonnees_gps": [ + 45.2721132058, + 1.88642214024 + ], + "libelle_d_acheminement": "ST MARTIAL DE GIMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88642214024, + 45.2721132058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "197532dba52a369b7804d9844b337cdc6e581175", + "fields": { + "code_commune_insee": "28287", + "nom_de_la_commune": "ORGERES EN BEAUCE", + "code_postal": "28140", + "coordonnees_gps": [ + 48.1385604714, + 1.684325346 + ], + "libelle_d_acheminement": "ORGERES EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.684325346, + 48.1385604714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5512abd20dd4cf15e0b875473853a366a58a606", + "fields": { + "code_commune_insee": "19223", + "nom_de_la_commune": "ST MARTIN SEPERT", + "code_postal": "19210", + "coordonnees_gps": [ + 45.443440592, + 1.48235840703 + ], + "libelle_d_acheminement": "ST MARTIN SEPERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48235840703, + 45.443440592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2e63291a19b4f074b336ffc4fae97e9fa99bb2c", + "fields": { + "code_commune_insee": "28289", + "nom_de_la_commune": "ORMOY", + "code_postal": "28210", + "coordonnees_gps": [ + 48.6243546141, + 1.47177078539 + ], + "libelle_d_acheminement": "ORMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47177078539, + 48.6243546141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d456810c1f411343e2004763a5dc1adbcbf58e5b", + "fields": { + "code_commune_insee": "19225", + "nom_de_la_commune": "ST MERD DE LAPLEAU", + "code_postal": "19320", + "coordonnees_gps": [ + 45.248513057, + 2.09602630818 + ], + "libelle_d_acheminement": "ST MERD DE LAPLEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09602630818, + 45.248513057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24daa40e67523e892213a32972fcc8454d870c07", + "fields": { + "code_commune_insee": "28292", + "nom_de_la_commune": "OUERRE", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7080614292, + 1.48885870583 + ], + "libelle_d_acheminement": "OUERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48885870583, + 48.7080614292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80cc45e61ac4d2c8f21f6eeb8cd3d60235c4999f", + "fields": { + "code_commune_insee": "19230", + "nom_de_la_commune": "ST PARDOUX CORBIER", + "code_postal": "19210", + "coordonnees_gps": [ + 45.4428777879, + 1.45525591811 + ], + "libelle_d_acheminement": "ST PARDOUX CORBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45525591811, + 45.4428777879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83f205bcceb1920bdabe6d44707d674d8a19ab23", + "fields": { + "code_commune_insee": "28299", + "nom_de_la_commune": "LES PINTHIERES", + "code_postal": "28210", + "coordonnees_gps": [ + 48.7047238564, + 1.57392519381 + ], + "libelle_d_acheminement": "LES PINTHIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57392519381, + 48.7047238564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92dbf644949a340cee0d6b570708be98d1d1f9a9", + "fields": { + "code_commune_insee": "19236", + "nom_de_la_commune": "ST PRIEST DE GIMEL", + "code_postal": "19800", + "coordonnees_gps": [ + 45.3086188465, + 1.8936669424 + ], + "libelle_d_acheminement": "ST PRIEST DE GIMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8936669424, + 45.3086188465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59da031d9f38166386e68f1fe6c9d50417772b6f", + "fields": { + "code_commune_insee": "28306", + "nom_de_la_commune": "PRE ST MARTIN", + "code_postal": "28800", + "coordonnees_gps": [ + 48.2195680245, + 1.47285651616 + ], + "libelle_d_acheminement": "PRE ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47285651616, + 48.2195680245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e6b9e72cb5596143230c14185edf98b9d94a966", + "fields": { + "code_commune_insee": "19239", + "nom_de_la_commune": "ST ROBERT", + "code_postal": "19310", + "coordonnees_gps": [ + 45.2536741713, + 1.29535319885 + ], + "libelle_d_acheminement": "ST ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29535319885, + 45.2536741713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be46805dc47b9e8021d3c13036ed94c4cade0227", + "fields": { + "code_commune_insee": "28323", + "nom_de_la_commune": "ST ANGE ET TORCAY", + "code_postal": "28170", + "coordonnees_gps": [ + 48.6495007318, + 1.21435953964 + ], + "libelle_d_acheminement": "ST ANGE ET TORCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21435953964, + 48.6495007318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b2581a2dcdba7fd265a41cbbc0c9d58467a879f", + "fields": { + "code_commune_insee": "19242", + "nom_de_la_commune": "ST SOLVE", + "code_postal": "19130", + "coordonnees_gps": [ + 45.3063549675, + 1.403519902 + ], + "libelle_d_acheminement": "ST SOLVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.403519902, + 45.3063549675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0048acc491388d2b7f22bcc376906badf2cf5852", + "fields": { + "code_commune_insee": "28333", + "nom_de_la_commune": "ST DENIS DES PUITS", + "code_postal": "28240", + "coordonnees_gps": [ + 48.3801274748, + 1.16252048003 + ], + "libelle_d_acheminement": "ST DENIS DES PUITS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16252048003, + 48.3801274748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0446234f326608d2104911b43d4abe4d0dbab605", + "fields": { + "code_commune_insee": "19259", + "nom_de_la_commune": "SEXCLES", + "code_postal": "19430", + "coordonnees_gps": [ + 45.0477027294, + 2.01682416184 + ], + "libelle_d_acheminement": "SEXCLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01682416184, + 45.0477027294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb76d6665b5fcc70deb931e8f09dd284b114b576", + "fields": { + "ligne_5": "ST DENIS LES PONTS", + "code_commune_insee": "28334", + "libelle_d_acheminement": "ST DENIS LANNERAY", + "code_postal": "28200", + "nom_de_la_commune": "ST DENIS LANNERAY", + "coordonnees_gps": [ + 48.0613637512, + 1.27228736611 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27228736611, + 48.0613637512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48fbb94cf425605c5ccea48ea8b56b6766b6cbbb", + "fields": { + "code_commune_insee": "19260", + "nom_de_la_commune": "SIONIAC", + "code_postal": "19120", + "coordonnees_gps": [ + 44.9776918533, + 1.80010891382 + ], + "libelle_d_acheminement": "SIONIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80010891382, + 44.9776918533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85230643647eb018442736165f2deb81e4718d5d", + "fields": { + "code_commune_insee": "28346", + "nom_de_la_commune": "ST LUBIN DE CRAVANT", + "code_postal": "28270", + "coordonnees_gps": [ + 48.7071767352, + 1.10138248239 + ], + "libelle_d_acheminement": "ST LUBIN DE CRAVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10138248239, + 48.7071767352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92549e1a00984438b6c7b7f496bf65acb506d3b5", + "fields": { + "code_commune_insee": "19264", + "nom_de_la_commune": "SOURSAC", + "code_postal": "19550", + "coordonnees_gps": [ + 45.2617933713, + 2.20363976923 + ], + "libelle_d_acheminement": "SOURSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20363976923, + 45.2617933713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3329b9249a4107bdcae52bd38b27e50522cd9a37", + "fields": { + "code_commune_insee": "28349", + "nom_de_la_commune": "ST LUCIEN", + "code_postal": "28210", + "coordonnees_gps": [ + 48.6391626613, + 1.62330924951 + ], + "libelle_d_acheminement": "ST LUCIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62330924951, + 48.6391626613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9dbe2ab775db0095dceb48c122fe2458a3ff56d", + "fields": { + "code_commune_insee": "19271", + "nom_de_la_commune": "TUDEILS", + "code_postal": "19120", + "coordonnees_gps": [ + 45.0497594208, + 1.78452745167 + ], + "libelle_d_acheminement": "TUDEILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78452745167, + 45.0497594208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c69f19ff07e11dfd0b12368c850a551d79393e38", + "fields": { + "code_commune_insee": "28350", + "nom_de_la_commune": "ST LUPERCE", + "code_postal": "28190", + "coordonnees_gps": [ + 48.4372634991, + 1.30302415414 + ], + "libelle_d_acheminement": "ST LUPERCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30302415414, + 48.4372634991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a2584e6e6be28084fec8076ec6dc2668b93468e", + "fields": { + "code_commune_insee": "19275", + "nom_de_la_commune": "USSEL", + "code_postal": "19200", + "coordonnees_gps": [ + 45.5502290763, + 2.30449906488 + ], + "libelle_d_acheminement": "USSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30449906488, + 45.5502290763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d81dd3e0582907e80bd8e017b3570d3278a0f10f", + "fields": { + "code_commune_insee": "28353", + "nom_de_la_commune": "ST MAUR SUR LE LOIR", + "code_postal": "28800", + "coordonnees_gps": [ + 48.1518179148, + 1.41832259921 + ], + "libelle_d_acheminement": "ST MAUR SUR LE LOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41832259921, + 48.1518179148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a61d2b6915a0731fcf3e3d61cf12423ecc06d5a", + "fields": { + "code_commune_insee": "19277", + "nom_de_la_commune": "VALIERGUES", + "code_postal": "19200", + "coordonnees_gps": [ + 45.4747797354, + 2.28180692007 + ], + "libelle_d_acheminement": "VALIERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28180692007, + 45.4747797354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2ecde60f31fd2a1f7fa8a84fb54b6e42600691f", + "fields": { + "code_commune_insee": "28354", + "nom_de_la_commune": "ST MAURICE ST GERMAIN", + "code_postal": "28240", + "coordonnees_gps": [ + 48.4900427542, + 1.07345601066 + ], + "libelle_d_acheminement": "ST MAURICE ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07345601066, + 48.4900427542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c57eef7cfd867bb37c7ba1a14e966a9753b4ea5", + "fields": { + "code_commune_insee": "19286", + "nom_de_la_commune": "VIGNOLS", + "code_postal": "19130", + "coordonnees_gps": [ + 45.328176854, + 1.40068283398 + ], + "libelle_d_acheminement": "VIGNOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40068283398, + 45.328176854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a76c8598d3116477abb6672b81a14db8a731ffbd", + "fields": { + "code_commune_insee": "28357", + "nom_de_la_commune": "ST PIAT", + "code_postal": "28130", + "coordonnees_gps": [ + 48.5477876279, + 1.57936715019 + ], + "libelle_d_acheminement": "ST PIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57936715019, + 48.5477876279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f28c1a5632ca986a9933f131a6c10f066901e0e9", + "fields": { + "code_commune_insee": "19287", + "nom_de_la_commune": "VITRAC SUR MONTANE", + "code_postal": "19800", + "coordonnees_gps": [ + 45.3727168836, + 1.93317365283 + ], + "libelle_d_acheminement": "VITRAC SUR MONTANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93317365283, + 45.3727168836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "853b4d732a506eb44c2812c788ca6217502caf95", + "fields": { + "ligne_5": "MARVILLE LES BOIS", + "code_commune_insee": "28360", + "libelle_d_acheminement": "ST SAUVEUR MARVILLE", + "code_postal": "28170", + "nom_de_la_commune": "ST SAUVEUR MARVILLE", + "coordonnees_gps": [ + 48.6047259778, + 1.2856796289 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2856796289, + 48.6047259778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d016e0bfeb18d1ae4fb930c90a3fd25f3b3120bc", + "fields": { + "code_commune_insee": "21005", + "nom_de_la_commune": "AISEREY", + "code_postal": "21110", + "coordonnees_gps": [ + 47.1728785893, + 5.16876522456 + ], + "libelle_d_acheminement": "AISEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16876522456, + 47.1728785893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5121ecd5338b8fecd9b79c4bb7f274a87a6e45cc", + "fields": { + "code_commune_insee": "28372", + "nom_de_la_commune": "SENANTES", + "code_postal": "28210", + "coordonnees_gps": [ + 48.6560652225, + 1.58443037368 + ], + "libelle_d_acheminement": "SENANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58443037368, + 48.6560652225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d72d61adbc352148074a099c8431491dfc015665", + "fields": { + "code_commune_insee": "21007", + "nom_de_la_commune": "AISY SOUS THIL", + "code_postal": "21390", + "coordonnees_gps": [ + 47.3934525171, + 4.27887372398 + ], + "libelle_d_acheminement": "AISY SOUS THIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27887372398, + 47.3934525171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7191f4e0839cb28c181036f5ecbe021f52db1e0f", + "fields": { + "ligne_5": "TARDAIS", + "code_commune_insee": "28373", + "libelle_d_acheminement": "SENONCHES", + "code_postal": "28250", + "nom_de_la_commune": "SENONCHES", + "coordonnees_gps": [ + 48.559589174, + 1.01905757079 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01905757079, + 48.559589174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c522c4cfb96e7fffc1ec4bf73a896d27918bcec", + "fields": { + "code_commune_insee": "21010", + "nom_de_la_commune": "ALOXE CORTON", + "code_postal": "21420", + "coordonnees_gps": [ + 47.0682393129, + 4.86123205088 + ], + "libelle_d_acheminement": "ALOXE CORTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86123205088, + 47.0682393129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ad87ba981a0e5d7efd28486263da29aa8fe64f3", + "fields": { + "ligne_5": "PEZY", + "code_commune_insee": "28383", + "libelle_d_acheminement": "THEUVILLE", + "code_postal": "28150", + "nom_de_la_commune": "THEUVILLE", + "coordonnees_gps": [ + 48.3326223196, + 1.59154245059 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59154245059, + 48.3326223196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00d461b88dca62c4c21899d05e87b2d145c94833", + "fields": { + "code_commune_insee": "21013", + "nom_de_la_commune": "ANCEY", + "code_postal": "21410", + "coordonnees_gps": [ + 47.3337177684, + 4.82268168932 + ], + "libelle_d_acheminement": "ANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82268168932, + 47.3337177684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ef57f9384ed450a30ea75fca979fb31012606ea", + "fields": { + "code_commune_insee": "28386", + "nom_de_la_commune": "THIMERT GATELLES", + "code_postal": "28170", + "coordonnees_gps": [ + 48.55496534, + 1.26206894057 + ], + "libelle_d_acheminement": "THIMERT GATELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26206894057, + 48.55496534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b60f939f6a0bed87ff202424834c43dbe1b45e1", + "fields": { + "code_commune_insee": "21018", + "nom_de_la_commune": "ARCEY", + "code_postal": "21410", + "coordonnees_gps": [ + 47.2746433472, + 4.82435366127 + ], + "libelle_d_acheminement": "ARCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82435366127, + 47.2746433472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c03c836021d505eb032cee8de216bda3c64d369", + "fields": { + "code_commune_insee": "28387", + "nom_de_la_commune": "THIRON GARDAIS", + "code_postal": "28480", + "coordonnees_gps": [ + 48.3047563926, + 1.01132470631 + ], + "libelle_d_acheminement": "THIRON GARDAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01132470631, + 48.3047563926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d920d911b95dd27ed55da2e42912a502bb9d417", + "fields": { + "code_commune_insee": "21034", + "nom_de_la_commune": "AUTRICOURT", + "code_postal": "21570", + "coordonnees_gps": [ + 47.9932834773, + 4.62176742822 + ], + "libelle_d_acheminement": "AUTRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62176742822, + 47.9932834773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7729eb4f8255ac470f103adf6578bd3dc277f2a", + "fields": { + "code_commune_insee": "28390", + "nom_de_la_commune": "TILLAY LE PENEUX", + "code_postal": "28140", + "coordonnees_gps": [ + 48.1589221633, + 1.76370317108 + ], + "libelle_d_acheminement": "TILLAY LE PENEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76370317108, + 48.1589221633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f9f34b556c2bca6200de4f936c35bd91e5b8ad3", + "fields": { + "code_commune_insee": "21037", + "nom_de_la_commune": "AUXEY DURESSES", + "code_postal": "21190", + "coordonnees_gps": [ + 46.985207614, + 4.7314121472 + ], + "libelle_d_acheminement": "AUXEY DURESSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7314121472, + 46.985207614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "143f82126950c158b5d8bb698fb16e72166039f2", + "fields": { + "code_commune_insee": "28391", + "nom_de_la_commune": "TOURY", + "code_postal": "28310", + "coordonnees_gps": [ + 48.1954185813, + 1.94344855336 + ], + "libelle_d_acheminement": "TOURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94344855336, + 48.1954185813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dda719c2f46b82058e17c9a96bdcd699cd86b77d", + "fields": { + "code_commune_insee": "21038", + "nom_de_la_commune": "AUXONNE", + "code_postal": "21130", + "coordonnees_gps": [ + 47.1886126051, + 5.41450389351 + ], + "libelle_d_acheminement": "AUXONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41450389351, + 47.1886126051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8982b3747f40de3fe341dd36f40021ba54039ac7", + "fields": { + "ligne_5": "GIRONVILLE ET NEUVILLE", + "code_commune_insee": "28393", + "libelle_d_acheminement": "TREMBLAY LES VILLAGES", + "code_postal": "28170", + "nom_de_la_commune": "TREMBLAY LES VILLAGES", + "coordonnees_gps": [ + 48.5881626072, + 1.36867843258 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36867843258, + 48.5881626072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32eb9e03f5a2964d8d5ab41a6ce3b675bb2bd9b0", + "fields": { + "code_commune_insee": "21049", + "nom_de_la_commune": "BARJON", + "code_postal": "21580", + "coordonnees_gps": [ + 47.6163680497, + 4.9625109297 + ], + "libelle_d_acheminement": "BARJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9625109297, + 47.6163680497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "103ad31985be66b96c9648e16bfd1f41c86e30a1", + "fields": { + "code_commune_insee": "28394", + "nom_de_la_commune": "TREON", + "code_postal": "28500", + "coordonnees_gps": [ + 48.6752456837, + 1.32503557014 + ], + "libelle_d_acheminement": "TREON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32503557014, + 48.6752456837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddd861d616292a2a4d9dca8dfd9fcd6fd8b80374", + "fields": { + "code_commune_insee": "21050", + "nom_de_la_commune": "BAUBIGNY", + "code_postal": "21340", + "coordonnees_gps": [ + 46.9901330844, + 4.68217029734 + ], + "libelle_d_acheminement": "BAUBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68217029734, + 46.9901330844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acd56c71cdad43c68e13205d477809858305e088", + "fields": { + "code_commune_insee": "28395", + "nom_de_la_commune": "TRIZAY COUTRETOT ST SERGE", + "code_postal": "28400", + "coordonnees_gps": [ + 48.2928451299, + 0.878132374708 + ], + "libelle_d_acheminement": "TRIZAY COUTRETOT ST SERGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.878132374708, + 48.2928451299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e40637b4cadac71d53bebf6cc01c2654ec3033e0", + "fields": { + "code_commune_insee": "21058", + "nom_de_la_commune": "BELAN SUR OURCE", + "code_postal": "21570", + "coordonnees_gps": [ + 47.9515958894, + 4.63862833374 + ], + "libelle_d_acheminement": "BELAN SUR OURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63862833374, + 47.9515958894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3944fedd7c9fa7b9cebfea6c27b42c07688b17ee", + "fields": { + "ligne_5": "BAIGNOLET", + "code_commune_insee": "28406", + "libelle_d_acheminement": "EOLE EN BEAUCE", + "code_postal": "28150", + "nom_de_la_commune": "EOLE EN BEAUCE", + "coordonnees_gps": [ + 48.2158073726, + 1.69304337817 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69304337817, + 48.2158073726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30d8bcf0fdc9e9613827edeea35c3113210b4534", + "fields": { + "code_commune_insee": "21071", + "nom_de_la_commune": "BEZE", + "code_postal": "21310", + "coordonnees_gps": [ + 47.4660482708, + 5.27867233051 + ], + "libelle_d_acheminement": "BEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27867233051, + 47.4660482708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1f82670bd261776a6dfbebe5b0ffc42b1f33754", + "fields": { + "ligne_5": "VILLEAU", + "code_commune_insee": "28406", + "libelle_d_acheminement": "EOLE EN BEAUCE", + "code_postal": "28150", + "nom_de_la_commune": "EOLE EN BEAUCE", + "coordonnees_gps": [ + 48.2158073726, + 1.69304337817 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69304337817, + 48.2158073726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e332f133e1f97c9fb45f0008da5abfa7f638bddb", + "fields": { + "code_commune_insee": "21080", + "nom_de_la_commune": "BLAISY BAS", + "code_postal": "21540", + "coordonnees_gps": [ + 47.3693914963, + 4.73506402999 + ], + "libelle_d_acheminement": "BLAISY BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73506402999, + 47.3693914963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "132fc65ec33ac8a4f6d3335540726ca9f35274c9", + "fields": { + "code_commune_insee": "28407", + "nom_de_la_commune": "VICHERES", + "code_postal": "28480", + "coordonnees_gps": [ + 48.2648756716, + 0.907051525279 + ], + "libelle_d_acheminement": "VICHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.907051525279, + 48.2648756716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c56c8df2d761d6695f24230a314487cef4852fd", + "fields": { + "code_commune_insee": "21093", + "nom_de_la_commune": "BOUIX", + "code_postal": "21330", + "coordonnees_gps": [ + 47.8995552729, + 4.4682965536 + ], + "libelle_d_acheminement": "BOUIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4682965536, + 47.8995552729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92cd1bf4fa4a4b28ec3c4f0ea8a16f4e926bf6a7", + "fields": { + "code_commune_insee": "28418", + "nom_de_la_commune": "VILLIERS ST ORIEN", + "code_postal": "28800", + "coordonnees_gps": [ + 48.1426331097, + 1.49462124785 + ], + "libelle_d_acheminement": "VILLIERS ST ORIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49462124785, + 48.1426331097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0d549a35a71aef8ef8e0241409b3b2e3de07ac0", + "fields": { + "code_commune_insee": "21094", + "nom_de_la_commune": "BOURBERAIN", + "code_postal": "21610", + "coordonnees_gps": [ + 47.5090799793, + 5.29223191696 + ], + "libelle_d_acheminement": "BOURBERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29223191696, + 47.5090799793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36403bcc5c0ab582ae56c4ece2d7b4e44df4293b", + "fields": { + "code_commune_insee": "28421", + "nom_de_la_commune": "VOISE", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4021777408, + 1.70860045511 + ], + "libelle_d_acheminement": "VOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70860045511, + 48.4021777408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0865e7b1535fc1a227c6547cc253804683570223", + "fields": { + "code_commune_insee": "21097", + "nom_de_la_commune": "BOUSSEY", + "code_postal": "21350", + "coordonnees_gps": [ + 47.361027083, + 4.54086129653 + ], + "libelle_d_acheminement": "BOUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54086129653, + 47.361027083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b8e84dc4bf326fe519776c93d6adbcb9726657e", + "fields": { + "code_commune_insee": "29003", + "nom_de_la_commune": "AUDIERNE", + "code_postal": "29770", + "coordonnees_gps": [ + 48.0241077574, + -4.54448750165 + ], + "libelle_d_acheminement": "AUDIERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.54448750165, + 48.0241077574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbcc2846b2b2e600dbf2857d8055c1f671f37ebf", + "fields": { + "code_commune_insee": "21101", + "nom_de_la_commune": "BRAUX", + "code_postal": "21390", + "coordonnees_gps": [ + 47.4108469631, + 4.41872277915 + ], + "libelle_d_acheminement": "BRAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41872277915, + 47.4108469631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69d03955749236266b35460ea1cb621179695ee4", + "fields": { + "ligne_5": "ESQUIBIEN", + "code_commune_insee": "29003", + "libelle_d_acheminement": "AUDIERNE", + "code_postal": "29770", + "nom_de_la_commune": "AUDIERNE", + "coordonnees_gps": [ + 48.0241077574, + -4.54448750165 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.54448750165, + 48.0241077574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c04659a23f53729bfa6e52ea00fce83e5bd3bbec", + "fields": { + "code_commune_insee": "21109", + "nom_de_la_commune": "BRION SUR OURCE", + "code_postal": "21570", + "coordonnees_gps": [ + 47.9060657741, + 4.66987212053 + ], + "libelle_d_acheminement": "BRION SUR OURCE BELAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66987212053, + 47.9060657741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edeabae8868eed367ff73ee9abb7d26f5079b6c3", + "fields": { + "code_commune_insee": "29013", + "nom_de_la_commune": "BOTMEUR", + "code_postal": "29690", + "coordonnees_gps": [ + 48.3762281047, + -3.92275613595 + ], + "libelle_d_acheminement": "BOTMEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.92275613595, + 48.3762281047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acdc340bbba9df04beeefb3b1260e6734fcf7dda", + "fields": { + "code_commune_insee": "21111", + "nom_de_la_commune": "BROGNON", + "code_postal": "21490", + "coordonnees_gps": [ + 47.4109519413, + 5.16845513342 + ], + "libelle_d_acheminement": "BROGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16845513342, + 47.4109519413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6bdad320ec3124e49044c7916bec7718792262d", + "fields": { + "code_commune_insee": "29015", + "nom_de_la_commune": "BOURG BLANC", + "code_postal": "29860", + "coordonnees_gps": [ + 48.4956224464, + -4.49991805356 + ], + "libelle_d_acheminement": "BOURG BLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.49991805356, + 48.4956224464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2005c7c2f655bf9b71a19e151e72695cb52ce7ec", + "fields": { + "code_commune_insee": "21113", + "nom_de_la_commune": "BROINDON", + "code_postal": "21220", + "coordonnees_gps": [ + 47.1957469906, + 5.03994792471 + ], + "libelle_d_acheminement": "BROINDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03994792471, + 47.1957469906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "575c78964f25f5e31c30fda68b74a61a3ce56226", + "fields": { + "ligne_5": "BRIGNOGAN PLAGE", + "code_commune_insee": "29021", + "libelle_d_acheminement": "PLOUNEOUR BRIGNOGAN PLAGES", + "code_postal": "29890", + "nom_de_la_commune": "PLOUNEOUR BRIGNOGAN PLAGES", + "coordonnees_gps": [ + 48.6673259175, + -4.33395670694 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.33395670694, + 48.6673259175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "981bd4be0adb49d8be28dc547ab18a28efa05498", + "fields": { + "code_commune_insee": "21116", + "nom_de_la_commune": "BURE LES TEMPLIERS", + "code_postal": "21290", + "coordonnees_gps": [ + 47.7321717407, + 4.91091716802 + ], + "libelle_d_acheminement": "BURE LES TEMPLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91091716802, + 47.7321717407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "165aed23a32481d749877d011e2edf45b15478c9", + "fields": { + "code_commune_insee": "29024", + "nom_de_la_commune": "CARHAIX PLOUGUER", + "code_postal": "29270", + "coordonnees_gps": [ + 48.2687578823, + -3.56626363851 + ], + "libelle_d_acheminement": "CARHAIX PLOUGUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.56626363851, + 48.2687578823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e5446eae668b820abf87edb2f510680f403b2a3", + "fields": { + "code_commune_insee": "21123", + "nom_de_la_commune": "BUXEROLLES", + "code_postal": "21290", + "coordonnees_gps": [ + 47.8077545652, + 4.95548684515 + ], + "libelle_d_acheminement": "BUXEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95548684515, + 47.8077545652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b46df6e1baaff3cd5ba230003107cd09b96d5386", + "fields": { + "code_commune_insee": "29028", + "nom_de_la_commune": "CLEDEN CAP SIZUN", + "code_postal": "29770", + "coordonnees_gps": [ + 48.0539041456, + -4.65683195318 + ], + "libelle_d_acheminement": "CLEDEN CAP SIZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.65683195318, + 48.0539041456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97603d0948c5b4a9fa2ea94e2c0109b33d6e2e77", + "fields": { + "code_commune_insee": "21124", + "nom_de_la_commune": "CENSEREY", + "code_postal": "21430", + "coordonnees_gps": [ + 47.1975226763, + 4.33557297312 + ], + "libelle_d_acheminement": "CENSEREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33557297312, + 47.1975226763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d8d11c4abecd1e8b5eb73368c8121ebb6b7eb46", + "fields": { + "code_commune_insee": "29042", + "nom_de_la_commune": "CROZON", + "code_postal": "29160", + "coordonnees_gps": [ + 48.2449715382, + -4.49170347769 + ], + "libelle_d_acheminement": "CROZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.49170347769, + 48.2449715382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f331eed2ed2fdccd133eef2a026e346391d6736", + "fields": { + "code_commune_insee": "21131", + "nom_de_la_commune": "CHAMBLANC", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0222258183, + 5.16878563446 + ], + "libelle_d_acheminement": "CHAMBLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16878563446, + 47.0222258183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c748062ae380321c78296f88c7735e5e4eeef3b9", + "fields": { + "code_commune_insee": "29045", + "nom_de_la_commune": "DIRINON", + "code_postal": "29460", + "coordonnees_gps": [ + 48.4011232723, + -4.26930832464 + ], + "libelle_d_acheminement": "DIRINON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.26930832464, + 48.4011232723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef77c352fd85c537c605b2161664f7c8018297d8", + "fields": { + "code_commune_insee": "21137", + "nom_de_la_commune": "CHAMP D OISEAU", + "code_postal": "21500", + "coordonnees_gps": [ + 47.5549844256, + 4.34798073365 + ], + "libelle_d_acheminement": "CHAMP D OISEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34798073365, + 47.5549844256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "603c1d9889f4ac06733da1cea6e43130b6f24c19", + "fields": { + "code_commune_insee": "29048", + "nom_de_la_commune": "EDERN", + "code_postal": "29510", + "coordonnees_gps": [ + 48.1199968279, + -3.96022667408 + ], + "libelle_d_acheminement": "EDERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.96022667408, + 48.1199968279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d477e6e8f84bbc79d1d7c3ce0f93ebcb7ffd0290", + "fields": { + "code_commune_insee": "21148", + "nom_de_la_commune": "CHARREY SUR SAONE", + "code_postal": "21170", + "coordonnees_gps": [ + 47.0987888037, + 5.15412539566 + ], + "libelle_d_acheminement": "CHARREY SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15412539566, + 47.0987888037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee6ee239377653a3da45cf5b27e07bc37bc642c2", + "fields": { + "code_commune_insee": "29049", + "nom_de_la_commune": "ELLIANT", + "code_postal": "29370", + "coordonnees_gps": [ + 48.0078908681, + -3.90263136694 + ], + "libelle_d_acheminement": "ELLIANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.90263136694, + 48.0078908681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c664ff90178e4dd6ee012389268605004b0ec3de", + "fields": { + "code_commune_insee": "21154", + "nom_de_la_commune": "CHATILLON SUR SEINE", + "code_postal": "21400", + "coordonnees_gps": [ + 47.8582160336, + 4.59192199701 + ], + "libelle_d_acheminement": "CHATILLON SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59192199701, + 47.8582160336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9679df37eb7256c26f7f9540d8f8ac09afafc630", + "fields": { + "code_commune_insee": "29055", + "nom_de_la_commune": "LE FOLGOET", + "code_postal": "29260", + "coordonnees_gps": [ + 48.5666216124, + -4.35251906312 + ], + "libelle_d_acheminement": "LE FOLGOET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.35251906312, + 48.5666216124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c087be39684ee38c186ebf454dca73fc63ecce7f", + "fields": { + "code_commune_insee": "21162", + "nom_de_la_commune": "CHAUX", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1272831301, + 4.90718762417 + ], + "libelle_d_acheminement": "CHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90718762417, + 47.1272831301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1beeb08c04e021b97588b6170986030f22df0ea5", + "fields": { + "code_commune_insee": "29061", + "nom_de_la_commune": "GOUESNOU", + "code_postal": "29850", + "coordonnees_gps": [ + 48.446717951, + -4.46327934378 + ], + "libelle_d_acheminement": "GOUESNOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46327934378, + 48.446717951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79117eb8e72f519738c7ee2bdb07259ac3c666ca", + "fields": { + "code_commune_insee": "21184", + "nom_de_la_commune": "COLOMBIER", + "code_postal": "21360", + "coordonnees_gps": [ + 47.168419932, + 4.67469855204 + ], + "libelle_d_acheminement": "COLOMBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67469855204, + 47.168419932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66b1c44c6995c413883e679a22c3a7146657350e", + "fields": { + "code_commune_insee": "29067", + "nom_de_la_commune": "GUERLESQUIN", + "code_postal": "29650", + "coordonnees_gps": [ + 48.5315286912, + -3.58783458581 + ], + "libelle_d_acheminement": "GUERLESQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.58783458581, + 48.5315286912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96235742cf24b64abbf780b2885451ffa1b8f341", + "fields": { + "code_commune_insee": "21193", + "nom_de_la_commune": "CORGENGOUX", + "code_postal": "21250", + "coordonnees_gps": [ + 46.9883081581, + 5.01123700929 + ], + "libelle_d_acheminement": "CORGENGOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01123700929, + 46.9883081581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcc01f4d46de091797ee9820bbdba63fc0b0ede7", + "fields": { + "code_commune_insee": "29072", + "nom_de_la_commune": "GUILVINEC", + "code_postal": "29730", + "coordonnees_gps": [ + 47.8012448483, + -4.28617785695 + ], + "libelle_d_acheminement": "GUILVINEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28617785695, + 47.8012448483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebb7fac7701c637cf0d50eebcb5b58965ed0c679", + "fields": { + "code_commune_insee": "21196", + "nom_de_la_commune": "CORPEAU", + "code_postal": "21190", + "coordonnees_gps": [ + 46.9274010331, + 4.75964773647 + ], + "libelle_d_acheminement": "CORPEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75964773647, + 46.9274010331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b19ba65cf3ec929b49d51318dfed867b1fa47f9", + "fields": { + "ligne_5": "GUIPRONVEL", + "code_commune_insee": "29076", + "libelle_d_acheminement": "MILIZAC GUIPRONVEL", + "code_postal": "29290", + "nom_de_la_commune": "MILIZAC GUIPRONVEL", + "coordonnees_gps": [ + 48.4913026079, + -4.56960723712 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.56960723712, + 48.4913026079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddfe13d760ba2b51b11cc775e0bef8030d1d490a", + "fields": { + "code_commune_insee": "21208", + "nom_de_la_commune": "COURTIVRON", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5345406355, + 4.95268156841 + ], + "libelle_d_acheminement": "COURTIVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95268156841, + 47.5345406355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e9094721dc754667c10a764e17cc5517566331f", + "fields": { + "code_commune_insee": "29077", + "nom_de_la_commune": "GUISSENY", + "code_postal": "29880", + "coordonnees_gps": [ + 48.6169101259, + -4.41110953523 + ], + "libelle_d_acheminement": "GUISSENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.41110953523, + 48.6169101259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3bb2745ecf671682d9dbb6175f9a40a3aae1926", + "fields": { + "code_commune_insee": "21209", + "nom_de_la_commune": "COUTERNON", + "code_postal": "21560", + "coordonnees_gps": [ + 47.3303548853, + 5.15014868393 + ], + "libelle_d_acheminement": "COUTERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15014868393, + 47.3303548853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "076b83563a4486fd68ac2ec57ef6d850683325c7", + "fields": { + "code_commune_insee": "29081", + "nom_de_la_commune": "HUELGOAT", + "code_postal": "29690", + "coordonnees_gps": [ + 48.3615514061, + -3.75817537147 + ], + "libelle_d_acheminement": "HUELGOAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.75817537147, + 48.3615514061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23a921cc411cf9926fb4e95c2e0f0d2c6afea099", + "fields": { + "code_commune_insee": "21216", + "nom_de_la_commune": "CULETRE", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1468951211, + 4.56864595469 + ], + "libelle_d_acheminement": "CULETRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56864595469, + 47.1468951211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc5e8c1e5c7b0eba95dc50c4a769ea73b1bb00df", + "fields": { + "code_commune_insee": "29086", + "nom_de_la_commune": "IRVILLAC", + "code_postal": "29460", + "coordonnees_gps": [ + 48.3668454247, + -4.20163770975 + ], + "libelle_d_acheminement": "IRVILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.20163770975, + 48.3668454247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f21441cfe30a25c78c5dcd0747016da80cc1d14", + "fields": { + "code_commune_insee": "21217", + "nom_de_la_commune": "CURLEY", + "code_postal": "21220", + "coordonnees_gps": [ + 47.2040051178, + 4.91078289972 + ], + "libelle_d_acheminement": "CURLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91078289972, + 47.2040051178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2270cfa59fe979b026adea6778e423b28152db7c", + "fields": { + "code_commune_insee": "29090", + "nom_de_la_commune": "KERLAZ", + "code_postal": "29100", + "coordonnees_gps": [ + 48.0912560808, + -4.26315829954 + ], + "libelle_d_acheminement": "KERLAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.26315829954, + 48.0912560808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1a07286b9769c319d343b574d14353a45a38b25", + "fields": { + "code_commune_insee": "21222", + "nom_de_la_commune": "CUSSY LE CHATEL", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1643515054, + 4.58476170388 + ], + "libelle_d_acheminement": "CUSSY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58476170388, + 47.1643515054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b438e4a12edbb54bd9a1fd2d2d51024145d8cf6", + "fields": { + "code_commune_insee": "29100", + "nom_de_la_commune": "LANARVILY", + "code_postal": "29260", + "coordonnees_gps": [ + 48.5609189419, + -4.38280376453 + ], + "libelle_d_acheminement": "LANARVILY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.38280376453, + 48.5609189419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07f1170933d445bdc41d12f960e795a60540f688", + "fields": { + "code_commune_insee": "21223", + "nom_de_la_commune": "DAIX", + "code_postal": "21121", + "coordonnees_gps": [ + 47.3605540938, + 4.96901845433 + ], + "libelle_d_acheminement": "DAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96901845433, + 47.3605540938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ca0daf8c7a41771070e79b8fb1dd02c5e85c538", + "fields": { + "code_commune_insee": "29105", + "nom_de_la_commune": "LANDIVISIAU", + "code_postal": "29400", + "coordonnees_gps": [ + 48.5160095172, + -4.06130712731 + ], + "libelle_d_acheminement": "LANDIVISIAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.06130712731, + 48.5160095172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c24c879ea7657319af491f87c84016776bd2a872", + "fields": { + "code_commune_insee": "21229", + "nom_de_la_commune": "DIANCEY", + "code_postal": "21430", + "coordonnees_gps": [ + 47.1747778525, + 4.36718162662 + ], + "libelle_d_acheminement": "DIANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36718162662, + 47.1747778525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3fcd695bbaad245b2ed80e4effa574061092db9", + "fields": { + "code_commune_insee": "29114", + "nom_de_la_commune": "LANNEANOU", + "code_postal": "29640", + "coordonnees_gps": [ + 48.4980971712, + -3.66516986251 + ], + "libelle_d_acheminement": "LANNEANOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.66516986251, + 48.4980971712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeb1618397bc0998cabe2bf9fbcbd98ed435c497", + "fields": { + "code_commune_insee": "21237", + "nom_de_la_commune": "ECHALOT", + "code_postal": "21510", + "coordonnees_gps": [ + 47.6074344727, + 4.83509767429 + ], + "libelle_d_acheminement": "ECHALOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83509767429, + 47.6074344727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad04435445ca13d8064878234b50cdfae01a42d5", + "fields": { + "code_commune_insee": "29119", + "nom_de_la_commune": "LANRIVOARE", + "code_postal": "29290", + "coordonnees_gps": [ + 48.4660390019, + -4.63526600246 + ], + "libelle_d_acheminement": "LANRIVOARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.63526600246, + 48.4660390019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "165cd6359fe56c7a91b0efaca1a888b9f97440b9", + "fields": { + "code_commune_insee": "21245", + "nom_de_la_commune": "EPAGNY", + "code_postal": "21380", + "coordonnees_gps": [ + 47.4523461757, + 5.04973678654 + ], + "libelle_d_acheminement": "EPAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04973678654, + 47.4523461757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6be28a294933465df8ad35281c523e6b4419d445", + "fields": { + "code_commune_insee": "29122", + "nom_de_la_commune": "LAZ", + "code_postal": "29520", + "coordonnees_gps": [ + 48.135398381, + -3.83990955332 + ], + "libelle_d_acheminement": "LAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.83990955332, + 48.135398381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24eed4713f89472923d232f3d3020883f930109c", + "fields": { + "code_commune_insee": "21246", + "nom_de_la_commune": "EPERNAY SOUS GEVREY", + "code_postal": "21220", + "coordonnees_gps": [ + 47.1745053731, + 5.03736521835 + ], + "libelle_d_acheminement": "EPERNAY SOUS GEVREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03736521835, + 47.1745053731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "977df399b00157d39c3644b0e45af5a2c5483294", + "fields": { + "code_commune_insee": "29135", + "nom_de_la_commune": "LOCTUDY", + "code_postal": "29750", + "coordonnees_gps": [ + 47.8239824718, + -4.1873881827 + ], + "libelle_d_acheminement": "LOCTUDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.1873881827, + 47.8239824718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab32b6c6fc411a8a60b7d9ee78e1de169ee68ed2", + "fields": { + "code_commune_insee": "21250", + "nom_de_la_commune": "ESSAROIS", + "code_postal": "21290", + "coordonnees_gps": [ + 47.7575910417, + 4.7939937712 + ], + "libelle_d_acheminement": "ESSAROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7939937712, + 47.7575910417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0d3efb263ad03c8ef5f6d886d80fc983324307b", + "fields": { + "code_commune_insee": "29139", + "nom_de_la_commune": "LOPEREC", + "code_postal": "29590", + "coordonnees_gps": [ + 48.3017361102, + -4.03428132272 + ], + "libelle_d_acheminement": "LOPEREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.03428132272, + 48.3017361102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7baf9ad1dfdbc7c96362a58c9dd17f742a1591b2", + "fields": { + "code_commune_insee": "21252", + "nom_de_la_commune": "ETAIS", + "code_postal": "21500", + "coordonnees_gps": [ + 47.7014131668, + 4.44028509951 + ], + "libelle_d_acheminement": "ETAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44028509951, + 47.7014131668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c12ae04e3416aa638aa5ecae269b39e6ce9f80e", + "fields": { + "ligne_5": "PORT MANECH", + "code_commune_insee": "29153", + "libelle_d_acheminement": "NEVEZ", + "code_postal": "29920", + "nom_de_la_commune": "NEVEZ", + "coordonnees_gps": [ + 47.8154082656, + -3.77625131302 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.77625131302, + 47.8154082656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c54d7cb2ff7f1c778e7fd4ebddd1863c886cbee", + "fields": { + "code_commune_insee": "21257", + "nom_de_la_commune": "ETORMAY", + "code_postal": "21450", + "coordonnees_gps": [ + 47.5978554183, + 4.58158673769 + ], + "libelle_d_acheminement": "ETORMAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58158673769, + 47.5978554183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1902d76247b3c935a88984513619cf42d825d1f9", + "fields": { + "code_commune_insee": "29158", + "nom_de_la_commune": "PENMARCH", + "code_postal": "29760", + "coordonnees_gps": [ + 47.8121478804, + -4.34003367039 + ], + "libelle_d_acheminement": "PENMARCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.34003367039, + 47.8121478804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bec7dc3b1ae5aefa9f6d811c48073ae78e72f7a", + "fields": { + "code_commune_insee": "21266", + "nom_de_la_commune": "FLACEY", + "code_postal": "21490", + "coordonnees_gps": [ + 47.4343838109, + 5.13481855634 + ], + "libelle_d_acheminement": "FLACEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13481855634, + 47.4343838109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c30be141874059648c29e00f98616bc0ffcb6451", + "fields": { + "ligne_5": "LESCONIL", + "code_commune_insee": "29165", + "libelle_d_acheminement": "PLOBANNALEC LESCONIL", + "code_postal": "29740", + "nom_de_la_commune": "PLOBANNALEC LESCONIL", + "coordonnees_gps": [ + 47.8217825314, + -4.22818604821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.22818604821, + 47.8217825314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65b95582f1d5da8d0089e7ed3d03745fad20791f", + "fields": { + "code_commune_insee": "21268", + "nom_de_la_commune": "FLAGEY LES AUXONNE", + "code_postal": "21130", + "coordonnees_gps": [ + 47.1312658767, + 5.3944404843 + ], + "libelle_d_acheminement": "FLAGEY LES AUXONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3944404843, + 47.1312658767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fcc9e33c5ddeee5630c30db87fa0ffa2cf19fc2", + "fields": { + "ligne_5": "PORTSALL", + "code_commune_insee": "29178", + "libelle_d_acheminement": "PLOUDALMEZEAU", + "code_postal": "29830", + "nom_de_la_commune": "PLOUDALMEZEAU", + "coordonnees_gps": [ + 48.5380194426, + -4.66954529014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.66954529014, + 48.5380194426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcbd79ddf1d5d942536aa654ca7839c74a0fab83", + "fields": { + "code_commune_insee": "21269", + "nom_de_la_commune": "FLAMMERANS", + "code_postal": "21130", + "coordonnees_gps": [ + 47.230058163, + 5.44115548466 + ], + "libelle_d_acheminement": "FLAMMERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44115548466, + 47.230058163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7dade14a397a31d31ab8ac9991b58e172abad7e", + "fields": { + "code_commune_insee": "29185", + "nom_de_la_commune": "PLOUESCAT", + "code_postal": "29430", + "coordonnees_gps": [ + 48.6657604594, + -4.17989213924 + ], + "libelle_d_acheminement": "PLOUESCAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.17989213924, + 48.6657604594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f77ae1809fc51e49c10ae938e7247941b45928aa", + "fields": { + "code_commune_insee": "21279", + "nom_de_la_commune": "FONTAINES LES SECHES", + "code_postal": "21330", + "coordonnees_gps": [ + 47.7844430098, + 4.35896530181 + ], + "libelle_d_acheminement": "FONTAINES LES SECHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35896530181, + 47.7844430098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd88961c40dce0ba6202655faa6c0bc46d842ca8", + "fields": { + "code_commune_insee": "29189", + "nom_de_la_commune": "PLOUGASTEL DAOULAS", + "code_postal": "29470", + "coordonnees_gps": [ + 48.3601932144, + -4.38292105021 + ], + "libelle_d_acheminement": "PLOUGASTEL DAOULAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.38292105021, + 48.3601932144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e71b0643baf62e3068b475844b4e63240260db0", + "fields": { + "code_commune_insee": "21281", + "nom_de_la_commune": "FONTENELLE", + "code_postal": "21610", + "coordonnees_gps": [ + 47.502916038, + 5.36176306939 + ], + "libelle_d_acheminement": "FONTENELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36176306939, + 47.502916038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef4eca087f75cb3cc835ecf67b2a7e67850c6096", + "fields": { + "code_commune_insee": "29190", + "nom_de_la_commune": "PLOUGONVELIN", + "code_postal": "29217", + "coordonnees_gps": [ + 48.3513274854, + -4.71760872698 + ], + "libelle_d_acheminement": "PLOUGONVELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.71760872698, + 48.3513274854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a66e3066099b5910b906d08e2e2c683fd077c073", + "fields": { + "code_commune_insee": "21283", + "nom_de_la_commune": "FRAIGNOT ET VESVROTTE", + "code_postal": "21580", + "coordonnees_gps": [ + 47.6494704786, + 4.9384456562 + ], + "libelle_d_acheminement": "FRAIGNOT ET VESVROTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9384456562, + 47.6494704786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0e794d7c35390ebeee669a6544b5a6a9e0ce882", + "fields": { + "code_commune_insee": "29191", + "nom_de_la_commune": "PLOUGONVEN", + "code_postal": "29640", + "coordonnees_gps": [ + 48.5052769563, + -3.72721201852 + ], + "libelle_d_acheminement": "PLOUGONVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.72721201852, + 48.5052769563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7e777ab4542100f8ed196ccad5cb7ee4360f0be", + "fields": { + "code_commune_insee": "21292", + "nom_de_la_commune": "GENLIS", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2407395134, + 5.2209768706 + ], + "libelle_d_acheminement": "GENLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2209768706, + 47.2407395134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6e5fda424daaccace10b96f7a33ad84222c9d0e", + "fields": { + "code_commune_insee": "29192", + "nom_de_la_commune": "PLOUGOULM", + "code_postal": "29250", + "coordonnees_gps": [ + 48.655920654, + -4.04176176078 + ], + "libelle_d_acheminement": "PLOUGOULM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.04176176078, + 48.655920654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a06cb8cbb63d60666acd8649dbb0afd6f4b641c", + "fields": { + "code_commune_insee": "21294", + "nom_de_la_commune": "GERLAND", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1023774932, + 5.02325039471 + ], + "libelle_d_acheminement": "GERLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02325039471, + 47.1023774932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e87728ba0d6b2f9ea9666b4fa3b76a5affca31de", + "fields": { + "code_commune_insee": "29196", + "nom_de_la_commune": "PLOUGUIN", + "code_postal": "29830", + "coordonnees_gps": [ + 48.52926645, + -4.59194113774 + ], + "libelle_d_acheminement": "PLOUGUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.59194113774, + 48.52926645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "217998073f133249b95489b33960d42298d436b3", + "fields": { + "code_commune_insee": "21298", + "nom_de_la_commune": "GISSEY LE VIEIL", + "code_postal": "21350", + "coordonnees_gps": [ + 47.3221932401, + 4.4861696452 + ], + "libelle_d_acheminement": "GISSEY LE VIEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4861696452, + 47.3221932401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20a71b0b00cb1e4b27237c878dca73268501d39f", + "fields": { + "code_commune_insee": "29209", + "nom_de_la_commune": "PLOUVIEN", + "code_postal": "29860", + "coordonnees_gps": [ + 48.5390737689, + -4.46505517448 + ], + "libelle_d_acheminement": "PLOUVIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.46505517448, + 48.5390737689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a140bb784725e6e20b7043d7183c58ccc6ad02f", + "fields": { + "code_commune_insee": "21301", + "nom_de_la_commune": "GLANON", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0397116967, + 5.10712051482 + ], + "libelle_d_acheminement": "GLANON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10712051482, + 47.0397116967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71047057409d97e5528bc712f0e4a09ff87a1706", + "fields": { + "code_commune_insee": "29210", + "nom_de_la_commune": "PLOUVORN", + "code_postal": "29420", + "coordonnees_gps": [ + 48.5765978002, + -4.02210161181 + ], + "libelle_d_acheminement": "PLOUVORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.02210161181, + 48.5765978002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01f24f2354e94b0066b4b4c3e04a148994a43a00", + "fields": { + "code_commune_insee": "21304", + "nom_de_la_commune": "GRANCEY LE CHATEAU NEUVELLE", + "code_postal": "21580", + "coordonnees_gps": [ + 47.6736710294, + 5.02411190173 + ], + "libelle_d_acheminement": "GRANCEY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02411190173, + 47.6736710294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbbd28a13e731b7d87d956dbcb00644820061edc", + "fields": { + "code_commune_insee": "29222", + "nom_de_la_commune": "PORT LAUNAY", + "code_postal": "29150", + "coordonnees_gps": [ + 48.2176622722, + -4.08308169881 + ], + "libelle_d_acheminement": "PORT LAUNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.08308169881, + 48.2176622722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96a2e5a1aeec37eadcf21da63335d3c1dc14af3e", + "fields": { + "code_commune_insee": "21306", + "nom_de_la_commune": "GRENANT LES SOMBERNON", + "code_postal": "21540", + "coordonnees_gps": [ + 47.2689950151, + 4.71215611881 + ], + "libelle_d_acheminement": "GRENANT LES SOMBERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71215611881, + 47.2689950151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e0ed1a623d62b85086c338d79986d97e9f7ea15", + "fields": { + "code_commune_insee": "29228", + "nom_de_la_commune": "PRIMELIN", + "code_postal": "29770", + "coordonnees_gps": [ + 48.0287724431, + -4.60550316515 + ], + "libelle_d_acheminement": "PRIMELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.60550316515, + 48.0287724431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a9fa9ebbf67bbae49c8800b0b4d573608db9bbd", + "fields": { + "code_commune_insee": "21319", + "nom_de_la_commune": "IZEURE", + "code_postal": "21110", + "coordonnees_gps": [ + 47.1662982943, + 5.12029891779 + ], + "libelle_d_acheminement": "IZEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12029891779, + 47.1662982943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2b877d8855f765bf9925f3e2519bdfbd96cb056", + "fields": { + "code_commune_insee": "29234", + "nom_de_la_commune": "REDENE", + "code_postal": "29300", + "coordonnees_gps": [ + 47.8554814745, + -3.48681564705 + ], + "libelle_d_acheminement": "REDENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.48681564705, + 47.8554814745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f28abcf5069cf49b301b23db1a3412c3f90751e", + "fields": { + "code_commune_insee": "21326", + "nom_de_la_commune": "JOURS LES BAIGNEUX", + "code_postal": "21450", + "coordonnees_gps": [ + 47.6253821222, + 4.60399533048 + ], + "libelle_d_acheminement": "JOURS LES BAIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60399533048, + 47.6253821222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64df30736475a85c8d112434ad4c1eea633c5994", + "fields": { + "code_commune_insee": "29239", + "nom_de_la_commune": "ROSCOFF", + "code_postal": "29680", + "coordonnees_gps": [ + 48.7123362901, + -3.989722876 + ], + "libelle_d_acheminement": "ROSCOFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.989722876, + 48.7123362901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e892fb6c54e3c9476fbd44448ce2964e34632f7", + "fields": { + "code_commune_insee": "21333", + "nom_de_la_commune": "LABRUYERE", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0383104584, + 5.14163984518 + ], + "libelle_d_acheminement": "LABRUYERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14163984518, + 47.0383104584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "347d6e34628919df88196072b7659acc00e7f9fe", + "fields": { + "code_commune_insee": "29243", + "nom_de_la_commune": "ST COULITZ", + "code_postal": "29150", + "coordonnees_gps": [ + 48.1819241474, + -4.06727219736 + ], + "libelle_d_acheminement": "ST COULITZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.06727219736, + 48.1819241474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebda2e8dedb6823ac730a0926854e49e32c7210f", + "fields": { + "code_commune_insee": "21339", + "nom_de_la_commune": "LANTENAY", + "code_postal": "21370", + "coordonnees_gps": [ + 47.3437761758, + 4.86573170898 + ], + "libelle_d_acheminement": "LANTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86573170898, + 47.3437761758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d72019c833a660cf981eaf7656d3b04c01c1972d", + "fields": { + "code_commune_insee": "29257", + "nom_de_la_commune": "ST PABU", + "code_postal": "29830", + "coordonnees_gps": [ + 48.5627924623, + -4.62029383485 + ], + "libelle_d_acheminement": "ST PABU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.62029383485, + 48.5627924623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ac5a717181cfd46a1a36312fe7717912221da51", + "fields": { + "code_commune_insee": "21342", + "nom_de_la_commune": "LAPERRIERE SUR SAONE", + "code_postal": "21170", + "coordonnees_gps": [ + 47.1063954039, + 5.34614793707 + ], + "libelle_d_acheminement": "LAPERRIERE SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34614793707, + 47.1063954039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fd1a3f9cd6eb656fc52aebe053455e38740b4a9", + "fields": { + "code_commune_insee": "29259", + "nom_de_la_commune": "ST POL DE LEON", + "code_postal": "29250", + "coordonnees_gps": [ + 48.6727716649, + -3.98863587243 + ], + "libelle_d_acheminement": "ST POL DE LEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.98863587243, + 48.6727716649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d19eb6e4d652e7cb25544dd8986f5a8187b027c", + "fields": { + "code_commune_insee": "21344", + "nom_de_la_commune": "LECHATELET", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0530922759, + 5.14157005423 + ], + "libelle_d_acheminement": "LECHATELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14157005423, + 47.0530922759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30462e87e30de277de7559c5bc2fe679236c3e37", + "fields": { + "code_commune_insee": "29263", + "nom_de_la_commune": "ST SEGAL", + "code_postal": "29590", + "coordonnees_gps": [ + 48.2359944685, + -4.07720037055 + ], + "libelle_d_acheminement": "ST SEGAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07720037055, + 48.2359944685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e781208b6fb973e376af5bacdf4924bdf85d3232", + "fields": { + "code_commune_insee": "21351", + "nom_de_la_commune": "LONGCHAMP", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2617509825, + 5.295682026 + ], + "libelle_d_acheminement": "LONGCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.295682026, + 47.2617509825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05e102d649a1c042ac0e71c1985ae388868d8a1c", + "fields": { + "code_commune_insee": "29272", + "nom_de_la_commune": "ST YVI", + "code_postal": "29140", + "coordonnees_gps": [ + 47.959882104, + -3.93921852098 + ], + "libelle_d_acheminement": "ST YVI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.93921852098, + 47.959882104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff73ab834319e86b9450a054f0166489b11cf57f", + "fields": { + "code_commune_insee": "21355", + "nom_de_la_commune": "LONGVIC", + "code_postal": "21600", + "coordonnees_gps": [ + 47.285832398, + 5.05278368483 + ], + "libelle_d_acheminement": "LONGVIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05278368483, + 47.285832398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71e4220dc2657f0d539c94d5b980e3f53d76b2ad", + "fields": { + "code_commune_insee": "29279", + "nom_de_la_commune": "TAULE", + "code_postal": "29670", + "coordonnees_gps": [ + 48.6041383541, + -3.89875729836 + ], + "libelle_d_acheminement": "TAULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.89875729836, + 48.6041383541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f74bd80cbd46313c6cddcd6d7d6ae0432ff9c144", + "fields": { + "code_commune_insee": "21356", + "nom_de_la_commune": "LOSNE", + "code_postal": "21170", + "coordonnees_gps": [ + 47.0776286494, + 5.2762318698 + ], + "libelle_d_acheminement": "LOSNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2762318698, + 47.0776286494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e04a91fa7aa2c0ae3b3d8d2cb9a6baa37c6a11c", + "fields": { + "code_commune_insee": "29284", + "nom_de_la_commune": "TREFFIAGAT", + "code_postal": "29730", + "coordonnees_gps": [ + 47.8049042408, + -4.2597485124 + ], + "libelle_d_acheminement": "TREFFIAGAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.2597485124, + 47.8049042408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d105c5f812144e05082903e619c2503ca6ed16b0", + "fields": { + "code_commune_insee": "21358", + "nom_de_la_commune": "LUCENAY LE DUC", + "code_postal": "21150", + "coordonnees_gps": [ + 47.6225345197, + 4.49972011434 + ], + "libelle_d_acheminement": "LUCENAY LE DUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49972011434, + 47.6225345197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85fca9dc33fdb95a491bb7dfd667657befe184c1", + "fields": { + "code_commune_insee": "29292", + "nom_de_la_commune": "TREGUENNEC", + "code_postal": "29720", + "coordonnees_gps": [ + 47.8842839467, + -4.33896722365 + ], + "libelle_d_acheminement": "TREGUENNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.33896722365, + 47.8842839467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc91611d6a21734bc6df6f054fe1b0a82cc4ea21", + "fields": { + "code_commune_insee": "21362", + "nom_de_la_commune": "MACONGE", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2256941351, + 4.57793028997 + ], + "libelle_d_acheminement": "MACONGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57793028997, + 47.2256941351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38d4bbb0f1101cdf4be772487432e8391a223cdf", + "fields": { + "code_commune_insee": "29293", + "nom_de_la_commune": "TREGUNC", + "code_postal": "29910", + "coordonnees_gps": [ + 47.8380684896, + -3.8408529946 + ], + "libelle_d_acheminement": "TREGUNC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8408529946, + 47.8380684896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d828b8666019e169c415cbcdd4f1e77f1b40788", + "fields": { + "code_commune_insee": "21372", + "nom_de_la_commune": "MAISEY LE DUC", + "code_postal": "21400", + "coordonnees_gps": [ + 47.8448667792, + 4.67600444524 + ], + "libelle_d_acheminement": "MAISEY LE DUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67600444524, + 47.8448667792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93487c61d70cbef9146383a5b6a37f21beb664c6", + "fields": { + "code_commune_insee": "29299", + "nom_de_la_commune": "TREOUERGAT", + "code_postal": "29290", + "coordonnees_gps": [ + 48.495243067, + -4.60294644618 + ], + "libelle_d_acheminement": "TREOUERGAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.60294644618, + 48.495243067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44f9200cc288df012ba862fed585de2213c5a7ba", + "fields": { + "code_commune_insee": "21379", + "nom_de_la_commune": "MARCHESEUIL", + "code_postal": "21430", + "coordonnees_gps": [ + 47.1449732022, + 4.37213113513 + ], + "libelle_d_acheminement": "MARCHESEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37213113513, + 47.1449732022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47ec5579fb4d75e00b659d7e76b835cc905e06dd", + "fields": { + "code_commune_insee": "2A001", + "nom_de_la_commune": "AFA", + "code_postal": "20167", + "coordonnees_gps": [ + 41.9844089346, + 8.79828936731 + ], + "libelle_d_acheminement": "AFA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.79828936731, + 41.9844089346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73418a3f94f6ed24d380fdf8a1f146da52021651", + "fields": { + "code_commune_insee": "21393", + "nom_de_la_commune": "MASSINGY", + "code_postal": "21400", + "coordonnees_gps": [ + 47.9022741112, + 4.59925018266 + ], + "libelle_d_acheminement": "MASSINGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59925018266, + 47.9022741112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bdea1f0cdd2a3fdb31ade84f0a4f5f11076ab6d", + "fields": { + "code_commune_insee": "2A017", + "nom_de_la_commune": "APPIETTO", + "code_postal": "20167", + "coordonnees_gps": [ + 42.0032023283, + 8.73355643393 + ], + "libelle_d_acheminement": "APPIETTO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73355643393, + 42.0032023283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "671873ab028c8b4090a8fd8d3d41102ba19af7f4", + "fields": { + "code_commune_insee": "21397", + "nom_de_la_commune": "MAVILLY MANDELOT", + "code_postal": "21190", + "coordonnees_gps": [ + 47.0605876593, + 4.73091558724 + ], + "libelle_d_acheminement": "MAVILLY MANDELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73091558724, + 47.0605876593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0115dc4c43d2fc6d6ba213aff86eeefe111daf8e", + "fields": { + "code_commune_insee": "2A019", + "nom_de_la_commune": "ARBORI", + "code_postal": "20160", + "coordonnees_gps": [ + 42.1278317001, + 8.79544743856 + ], + "libelle_d_acheminement": "ARBORI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.79544743856, + 42.1278317001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f49b562920258f8930a09c412b89fbb489361d22", + "fields": { + "code_commune_insee": "21401", + "nom_de_la_commune": "MELOISEY", + "code_postal": "21190", + "coordonnees_gps": [ + 47.034440345, + 4.72026948117 + ], + "libelle_d_acheminement": "MELOISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72026948117, + 47.034440345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0019bb0e839d888e127d361a8ced5e288af4cfdf", + "fields": { + "code_commune_insee": "2A026", + "nom_de_la_commune": "AZILONE AMPAZA", + "code_postal": "20190", + "coordonnees_gps": [ + 41.8704409452, + 9.01683572798 + ], + "libelle_d_acheminement": "AZILONE AMPAZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.01683572798, + 41.8704409452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbf1e76ba8260f86c7043d83f6ff386e53486246", + "fields": { + "code_commune_insee": "21408", + "nom_de_la_commune": "MESSIGNY ET VANTOUX", + "code_postal": "21380", + "coordonnees_gps": [ + 47.4189090037, + 5.00144598531 + ], + "libelle_d_acheminement": "MESSIGNY ET VANTOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00144598531, + 47.4189090037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a7a02bba0b96592fcf3d025f84eb010bc097891", + "fields": { + "code_commune_insee": "2A031", + "nom_de_la_commune": "BASTELICA", + "code_postal": "20119", + "coordonnees_gps": [ + 41.988063407, + 9.04861808353 + ], + "libelle_d_acheminement": "BASTELICA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.04861808353, + 41.988063407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c21e01cb338a903ded7db811b440af1ad11b086", + "fields": { + "code_commune_insee": "21409", + "nom_de_la_commune": "MEUILLEY", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1410996463, + 4.87828584204 + ], + "libelle_d_acheminement": "MEUILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87828584204, + 47.1410996463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73b0b3ce5d9273296b6adb899e4ccc145f3ea76a", + "fields": { + "code_commune_insee": "2A032", + "nom_de_la_commune": "BASTELICACCIA", + "code_postal": "20129", + "coordonnees_gps": [ + 41.9352135675, + 8.83650751371 + ], + "libelle_d_acheminement": "BASTELICACCIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.83650751371, + 41.9352135675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "239205b25481b2bfe2b104d3668ca0bee83730d6", + "fields": { + "code_commune_insee": "21413", + "nom_de_la_commune": "MILLERY", + "code_postal": "21140", + "coordonnees_gps": [ + 47.5135595984, + 4.31750870868 + ], + "libelle_d_acheminement": "MILLERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31750870868, + 47.5135595984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9baa9fadcf61343df6122596d9ec184e6165d54", + "fields": { + "code_commune_insee": "2A041", + "nom_de_la_commune": "BONIFACIO", + "code_postal": "20169", + "coordonnees_gps": [ + 41.4354987425, + 9.18514890376 + ], + "libelle_d_acheminement": "BONIFACIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.18514890376, + 41.4354987425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac4188efdf4d57115ac2b3abc3a6129dab102e34", + "fields": { + "code_commune_insee": "21415", + "nom_de_la_commune": "MINOT", + "code_postal": "21510", + "coordonnees_gps": [ + 47.6626858601, + 4.87161006058 + ], + "libelle_d_acheminement": "MINOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87161006058, + 47.6626858601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7453759e32e54a7047ae9d3716588729442485fd", + "fields": { + "code_commune_insee": "2A056", + "nom_de_la_commune": "CAMPO", + "code_postal": "20142", + "coordonnees_gps": [ + 41.890691356, + 9.00098485443 + ], + "libelle_d_acheminement": "CAMPO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.00098485443, + 41.890691356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a352e1f6697b8ed6cc51cde7af8a8e1f67dad4b1", + "fields": { + "code_commune_insee": "21425", + "nom_de_la_commune": "MONTBARD", + "code_postal": "21500", + "coordonnees_gps": [ + 47.6576730148, + 4.35039569753 + ], + "libelle_d_acheminement": "MONTBARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35039569753, + 47.6576730148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e52ecbb83353c092aceebc3b188c0855003bc91a", + "fields": { + "code_commune_insee": "2A061", + "nom_de_la_commune": "CARBINI", + "code_postal": "20170", + "coordonnees_gps": [ + 41.6757000728, + 9.16018139778 + ], + "libelle_d_acheminement": "CARBINI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.16018139778, + 41.6757000728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6542b052b0d876ae88bbea94656c92483e54bba7", + "fields": { + "code_commune_insee": "21426", + "nom_de_la_commune": "MONTBERTHAULT", + "code_postal": "21460", + "coordonnees_gps": [ + 47.4611172528, + 4.15752601087 + ], + "libelle_d_acheminement": "MONTBERTHAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15752601087, + 47.4611172528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bb014bd70e926e6102277800c913462e7af2789", + "fields": { + "code_commune_insee": "2A062", + "nom_de_la_commune": "CARBUCCIA", + "code_postal": "20133", + "coordonnees_gps": [ + 42.0302927596, + 8.93626600653 + ], + "libelle_d_acheminement": "CARBUCCIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.93626600653, + 42.0302927596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "800a11d1699c0cdba1c8d26fb32358eccd8d7044", + "fields": { + "code_commune_insee": "21428", + "nom_de_la_commune": "MONTHELIE", + "code_postal": "21190", + "coordonnees_gps": [ + 46.999641101, + 4.76134767684 + ], + "libelle_d_acheminement": "MONTHELIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76134767684, + 46.999641101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70a2132694a463f6d6257d038117628dfa2741cd", + "fields": { + "code_commune_insee": "2A065", + "nom_de_la_commune": "CARGESE", + "code_postal": "20130", + "coordonnees_gps": [ + 42.1544254567, + 8.62659836115 + ], + "libelle_d_acheminement": "CARGESE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.62659836115, + 42.1544254567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07267ef49ef58350eb4078d21b8c90a644d4c746", + "fields": { + "code_commune_insee": "21433", + "nom_de_la_commune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE", + "code_postal": "21610", + "coordonnees_gps": [ + 47.5685941578, + 5.45036193766 + ], + "libelle_d_acheminement": "MONTIGNY MORNAY VILLENEUVE VINGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45036193766, + 47.5685941578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cb92938a3169580aa5a441198cbecb86254ccb4", + "fields": { + "code_commune_insee": "2A066", + "nom_de_la_commune": "CARGIACA", + "code_postal": "20164", + "coordonnees_gps": [ + 41.7315838648, + 9.04097819601 + ], + "libelle_d_acheminement": "CARGIACA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.04097819601, + 41.7315838648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afa07bc1cc13f0cf46d01a550babf094eb14c004", + "fields": { + "ligne_5": "MORNAY", + "code_commune_insee": "21433", + "libelle_d_acheminement": "MONTIGNY MORNAY VILLENEUVE VINGE", + "code_postal": "21610", + "nom_de_la_commune": "MONTIGNY MORNAY VILLENEUVE VINGEANNE", + "coordonnees_gps": [ + 47.5685941578, + 5.45036193766 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45036193766, + 47.5685941578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d54d0db924f0e46150e7bd466a4bfab4e725d35a", + "fields": { + "code_commune_insee": "2A094", + "nom_de_la_commune": "CORRANO", + "code_postal": "20168", + "coordonnees_gps": [ + 41.8820885118, + 9.07104035554 + ], + "libelle_d_acheminement": "CORRANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.07104035554, + 41.8820885118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9daaeb23b8afecd05df632272704fad33589b527", + "fields": { + "code_commune_insee": "21435", + "nom_de_la_commune": "MONTLIOT ET COURCELLES", + "code_postal": "21400", + "coordonnees_gps": [ + 47.8949444484, + 4.56001662806 + ], + "libelle_d_acheminement": "MONTLIOT ET COURCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56001662806, + 47.8949444484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae911026f81a61c01f51e7b423fe6ea697be7769", + "fields": { + "code_commune_insee": "2A103", + "nom_de_la_commune": "CUTTOLI CORTICCHIATO", + "code_postal": "20167", + "coordonnees_gps": [ + 41.976733682, + 8.88406617978 + ], + "libelle_d_acheminement": "CUTTOLI CORTICCHIATO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.88406617978, + 41.976733682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba2af4e55eafface921a1626b500782456c6f04e", + "fields": { + "code_commune_insee": "21447", + "nom_de_la_commune": "MUSIGNY", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1649661089, + 4.5232598082 + ], + "libelle_d_acheminement": "MUSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5232598082, + 47.1649661089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64d2fd412d11929a94ca1709c2daab2f94439f46", + "fields": { + "code_commune_insee": "2A117", + "nom_de_la_commune": "FORCIOLO", + "code_postal": "20190", + "coordonnees_gps": [ + 41.8481431897, + 9.01587239961 + ], + "libelle_d_acheminement": "FORCIOLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.01587239961, + 41.8481431897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67c9d392e40602d5e44cb52f8f9f9fc184d07726", + "fields": { + "code_commune_insee": "21464", + "nom_de_la_commune": "NUITS ST GEORGES", + "code_postal": "21700", + "coordonnees_gps": [ + 47.146518392, + 4.9385500417 + ], + "libelle_d_acheminement": "NUITS ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9385500417, + 47.146518392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c794e1000f86a02ce195bfb0882701f25bfc1abc", + "fields": { + "code_commune_insee": "2A118", + "nom_de_la_commune": "FOZZANO", + "code_postal": "20143", + "coordonnees_gps": [ + 41.6987815052, + 8.98770991864 + ], + "libelle_d_acheminement": "FOZZANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.98770991864, + 41.6987815052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0103ea4c5dbec1fff0df700cddd06ff5e1667d6", + "fields": { + "code_commune_insee": "21469", + "nom_de_la_commune": "ORGEUX", + "code_postal": "21490", + "coordonnees_gps": [ + 47.3642286227, + 5.15182250045 + ], + "libelle_d_acheminement": "ORGEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15182250045, + 47.3642286227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd1e1bc6521955cd807ec3af04cb018d3d35e0c6", + "fields": { + "code_commune_insee": "2A128", + "nom_de_la_commune": "GRANACE", + "code_postal": "20100", + "coordonnees_gps": [ + 41.6403012602, + 9.01221939492 + ], + "libelle_d_acheminement": "GRANACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.01221939492, + 41.6403012602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f8ce02ada3e8f0934b7a16bea3eb35f3db90124", + "fields": { + "code_commune_insee": "21476", + "nom_de_la_commune": "PAINBLANC", + "code_postal": "21360", + "coordonnees_gps": [ + 47.1486717783, + 4.62462875846 + ], + "libelle_d_acheminement": "PAINBLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62462875846, + 47.1486717783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b26877ffd47359136d2a35f69f0be8e642a518de", + "fields": { + "code_commune_insee": "2A130", + "nom_de_la_commune": "GROSSETO PRUGNA", + "code_postal": "20128", + "coordonnees_gps": [ + 41.8837141916, + 8.87384830361 + ], + "libelle_d_acheminement": "GROSSETO PRUGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.87384830361, + 41.8837141916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b650791f8e712873917be251a43fff61bae8034", + "fields": { + "code_commune_insee": "21478", + "nom_de_la_commune": "PASQUES", + "code_postal": "21370", + "coordonnees_gps": [ + 47.3774354507, + 4.85215697056 + ], + "libelle_d_acheminement": "PASQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85215697056, + 47.3774354507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "120322486761a58bf450c59c1a864d7ef83975cb", + "fields": { + "ligne_5": "PORTICCIO", + "code_commune_insee": "2A130", + "libelle_d_acheminement": "GROSSETO PRUGNA", + "code_postal": "20166", + "nom_de_la_commune": "GROSSETO PRUGNA", + "coordonnees_gps": [ + 41.8837141916, + 8.87384830361 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.87384830361, + 41.8837141916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7a78c868c9bd649197214d23b3a6a79e0db4aad", + "fields": { + "code_commune_insee": "21485", + "nom_de_la_commune": "PLOMBIERES LES DIJON", + "code_postal": "21370", + "coordonnees_gps": [ + 47.3386201573, + 4.95005416615 + ], + "libelle_d_acheminement": "PLOMBIERES LES DIJON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95005416615, + 47.3386201573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f581eca465d9bb9be396595e922c99422449e24a", + "fields": { + "code_commune_insee": "2A186", + "nom_de_la_commune": "OLIVESE", + "code_postal": "20140", + "coordonnees_gps": [ + 41.8404362861, + 9.06885180924 + ], + "libelle_d_acheminement": "OLIVESE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.06885180924, + 41.8404362861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d026008348b3caf0eb36639005a3444b63ce32a2", + "fields": { + "code_commune_insee": "21490", + "nom_de_la_commune": "POISEUL LA VILLE ET LAPERRIERE", + "code_postal": "21450", + "coordonnees_gps": [ + 47.5699836945, + 4.66438928448 + ], + "libelle_d_acheminement": "POISEUL LA VILLE ET LAPERRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66438928448, + 47.5699836945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1e99a0ee92478e429601b8e40f91eb318e1bdde", + "fields": { + "code_commune_insee": "2A191", + "nom_de_la_commune": "OLMICCIA", + "code_postal": "20112", + "coordonnees_gps": [ + 41.6701338778, + 9.03297164192 + ], + "libelle_d_acheminement": "OLMICCIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.03297164192, + 41.6701338778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43c5db091586f87bd950afe5c21df08541cd08ab", + "fields": { + "code_commune_insee": "21491", + "nom_de_la_commune": "POISEUL LES SAULX", + "code_postal": "21120", + "coordonnees_gps": [ + 47.5785116858, + 4.98176331953 + ], + "libelle_d_acheminement": "POISEUL LES SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98176331953, + 47.5785116858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee7a6485c5010e5c05d69635a88b983ce01b95d7", + "fields": { + "code_commune_insee": "2A200", + "nom_de_la_commune": "PALNECA", + "code_postal": "20134", + "coordonnees_gps": [ + 41.9917474274, + 9.18910929636 + ], + "libelle_d_acheminement": "PALNECA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.18910929636, + 41.9917474274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ac52a6fdacb270d4252cd8a742c5607c7415ece", + "fields": { + "code_commune_insee": "21492", + "nom_de_la_commune": "POMMARD", + "code_postal": "21630", + "coordonnees_gps": [ + 47.0136884402, + 4.79517699243 + ], + "libelle_d_acheminement": "POMMARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79517699243, + 47.0136884402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "891b7ef1e307cd8a78f3fe38b1a179a95e021c32", + "fields": { + "code_commune_insee": "2A203", + "nom_de_la_commune": "PARTINELLO", + "code_postal": "20147", + "coordonnees_gps": [ + 42.3189049324, + 8.68973829673 + ], + "libelle_d_acheminement": "PARTINELLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68973829673, + 42.3189049324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b1db1327747c8b2b3446afb86ee6f968953b502", + "fields": { + "code_commune_insee": "21505", + "nom_de_la_commune": "PRECY SOUS THIL", + "code_postal": "21390", + "coordonnees_gps": [ + 47.4014711109, + 4.3167537134 + ], + "libelle_d_acheminement": "PRECY SOUS THIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3167537134, + 47.4014711109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e447a53da7271261305bac440889e2f5d0693dc2", + "fields": { + "code_commune_insee": "2A247", + "nom_de_la_commune": "PORTO VECCHIO", + "code_postal": "20137", + "coordonnees_gps": [ + 41.5924932873, + 9.25363087024 + ], + "libelle_d_acheminement": "PORTO VECCHIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.25363087024, + 41.5924932873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08e9fa5cc127ab819e39ff665a08d395e7ece4b0", + "fields": { + "ligne_5": "PRISSEY", + "code_commune_insee": "21506", + "libelle_d_acheminement": "PREMEAUX PRISSEY", + "code_postal": "21700", + "nom_de_la_commune": "PREMEAUX PRISSEY", + "coordonnees_gps": [ + 47.1049527311, + 4.9428568446 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9428568446, + 47.1049527311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f949941246d3696f800119a2e5563cc2ef86e8a3", + "fields": { + "code_commune_insee": "2A249", + "nom_de_la_commune": "PROPRIANO", + "code_postal": "20110", + "coordonnees_gps": [ + 41.6504172843, + 8.89378639473 + ], + "libelle_d_acheminement": "PROPRIANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.89378639473, + 41.6504172843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c514563b5c28a59e80d58b659e78139aaff9a81", + "fields": { + "code_commune_insee": "21518", + "nom_de_la_commune": "QUINCY LE VICOMTE", + "code_postal": "21500", + "coordonnees_gps": [ + 47.6174690195, + 4.23973284667 + ], + "libelle_d_acheminement": "QUINCY LE VICOMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23973284667, + 47.6174690195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4f14dbe8097bd94902d8953062f475e8b8e38c1", + "fields": { + "code_commune_insee": "2A253", + "nom_de_la_commune": "QUASQUARA", + "code_postal": "20142", + "coordonnees_gps": [ + 41.9087537102, + 9.00836117907 + ], + "libelle_d_acheminement": "QUASQUARA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.00836117907, + 41.9087537102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "840fa6e6b07c54bbeef065ad09da408d7b4bd64e", + "fields": { + "code_commune_insee": "21522", + "nom_de_la_commune": "RENEVE", + "code_postal": "21310", + "coordonnees_gps": [ + 47.4109093151, + 5.40765013154 + ], + "libelle_d_acheminement": "RENEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40765013154, + 47.4109093151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "852d5acc2564df174ae7b51b4e5414297706d913", + "fields": { + "code_commune_insee": "2A254", + "nom_de_la_commune": "QUENZA", + "code_postal": "20122", + "coordonnees_gps": [ + 41.8077584567, + 9.2009533879 + ], + "libelle_d_acheminement": "QUENZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2009533879, + 41.8077584567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9fcf811bf704e20be86bc28cb2ed735f24cde03", + "fields": { + "code_commune_insee": "21525", + "nom_de_la_commune": "LA ROCHE EN BRENIL", + "code_postal": "21530", + "coordonnees_gps": [ + 47.3820372605, + 4.17164198526 + ], + "libelle_d_acheminement": "LA ROCHE EN BRENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17164198526, + 47.3820372605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51037394fd79059ee03fe3ba82d382c4c55823a5", + "fields": { + "code_commune_insee": "2A258", + "nom_de_la_commune": "RENNO", + "code_postal": "20160", + "coordonnees_gps": [ + 42.2067544831, + 8.8197756757 + ], + "libelle_d_acheminement": "RENNO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8197756757, + 42.2067544831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31c425e9461016733a7c65b075cf92fa2812cea1", + "fields": { + "code_commune_insee": "21539", + "nom_de_la_commune": "ST ANTHOT", + "code_postal": "21540", + "coordonnees_gps": [ + 47.3208885867, + 4.64348045859 + ], + "libelle_d_acheminement": "ST ANTHOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64348045859, + 47.3208885867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d53fb90d369c6af47ff37944dcc9b48a8e3fcfd7", + "fields": { + "code_commune_insee": "2A262", + "nom_de_la_commune": "ROSAZIA", + "code_postal": "20121", + "coordonnees_gps": [ + 42.1258026167, + 8.86199135489 + ], + "libelle_d_acheminement": "ROSAZIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.86199135489, + 42.1258026167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c94147e8f1a3a4e265f5b0813bec54681ccd96f6", + "fields": { + "code_commune_insee": "21544", + "nom_de_la_commune": "STE COLOMBE EN AUXOIS", + "code_postal": "21350", + "coordonnees_gps": [ + 47.4272975926, + 4.46203899793 + ], + "libelle_d_acheminement": "STE COLOMBE EN AUXOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46203899793, + 47.4272975926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8034a20b24e302cea51bf05f2ff27403848374e", + "fields": { + "ligne_5": "SOLENZARA", + "code_commune_insee": "2A269", + "libelle_d_acheminement": "SARI SOLENZARA", + "code_postal": "20145", + "nom_de_la_commune": "SARI SOLENZARA", + "coordonnees_gps": [ + 41.8133599634, + 9.35220683826 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.35220683826, + 41.8133599634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28dc6c6baf6edfdb13c6186c9ecad5ea7b6242bc", + "fields": { + "code_commune_insee": "21552", + "nom_de_la_commune": "ST HELIER", + "code_postal": "21690", + "coordonnees_gps": [ + 47.389027921, + 4.68824509954 + ], + "libelle_d_acheminement": "ST HELIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68824509954, + 47.389027921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90ba3a675a3ee60cc89271fce2d2d9c8b9e27c4b", + "fields": { + "code_commune_insee": "2A270", + "nom_de_la_commune": "SARI D ORCINO", + "code_postal": "20151", + "coordonnees_gps": [ + 42.0648114999, + 8.83377089939 + ], + "libelle_d_acheminement": "SARI D ORCINO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.83377089939, + 42.0648114999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56c5fdd647aebc2c2c156cbaa5e0adcc9115f903", + "fields": { + "code_commune_insee": "21553", + "nom_de_la_commune": "ST JEAN DE BOEUF", + "code_postal": "21410", + "coordonnees_gps": [ + 47.2113480166, + 4.76378552245 + ], + "libelle_d_acheminement": "ST JEAN DE BOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76378552245, + 47.2113480166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce9e9867ac674656a25a49ed14ff4c1478094ac8", + "fields": { + "code_commune_insee": "2A272", + "nom_de_la_commune": "SARTENE", + "code_postal": "20100", + "coordonnees_gps": [ + 41.5718443328, + 8.93538107497 + ], + "libelle_d_acheminement": "SARTENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.93538107497, + 41.5718443328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9d17064fec47a623dc1247b72a71e122a3c092d", + "fields": { + "code_commune_insee": "21564", + "nom_de_la_commune": "ST NICOLAS LES CITEAUX", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1291027258, + 5.08467105168 + ], + "libelle_d_acheminement": "ST NICOLAS LES CITEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08467105168, + 47.1291027258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40b0ab3d1c1dbc20fe508e66ac462d9c61941590", + "fields": { + "code_commune_insee": "2A276", + "nom_de_la_commune": "SERRA DI FERRO", + "code_postal": "20140", + "coordonnees_gps": [ + 41.7410474334, + 8.81250812436 + ], + "libelle_d_acheminement": "SERRA DI FERRO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.81250812436, + 41.7410474334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7578c90f7d40ef9505d5de9ea345436e11ea7ff", + "fields": { + "code_commune_insee": "21567", + "nom_de_la_commune": "ST PRIX LES ARNAY", + "code_postal": "21230", + "coordonnees_gps": [ + 47.1127122088, + 4.50442046153 + ], + "libelle_d_acheminement": "ST PRIX LES ARNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50442046153, + 47.1127122088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19dea2469523a8c4a7a5f6773fee90772bfad089", + "fields": { + "code_commune_insee": "2A284", + "nom_de_la_commune": "SOLLACARO", + "code_postal": "20140", + "coordonnees_gps": [ + 41.7417710939, + 8.88010382989 + ], + "libelle_d_acheminement": "SOLLACARO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.88010382989, + 41.7417710939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53e90775e9553bc313f2dc63d7e816a219437cc7", + "fields": { + "code_commune_insee": "21569", + "nom_de_la_commune": "ST ROMAIN", + "code_postal": "21190", + "coordonnees_gps": [ + 47.0125065355, + 4.70264461223 + ], + "libelle_d_acheminement": "ST ROMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70264461223, + 47.0125065355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd070debb6b73959f4f0893e9e908fd490632051", + "fields": { + "code_commune_insee": "2A300", + "nom_de_la_commune": "SAN GAVINO DI CARBINI", + "code_postal": "20170", + "coordonnees_gps": [ + 41.6806017168, + 9.23310910423 + ], + "libelle_d_acheminement": "SAN GAVINO DI CARBINI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.23310910423, + 41.6806017168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30bdffa3155181425643211137e6104a1fbbd12a", + "fields": { + "code_commune_insee": "21571", + "nom_de_la_commune": "ST SAUVEUR", + "code_postal": "21270", + "coordonnees_gps": [ + 47.3580525419, + 5.40644354145 + ], + "libelle_d_acheminement": "ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40644354145, + 47.3580525419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7faef2395e6aede3f9baa1814e1e4831dba70217", + "fields": { + "code_commune_insee": "2A310", + "nom_de_la_commune": "SANTA MARIA FIGANIELLA", + "code_postal": "20143", + "coordonnees_gps": [ + 41.725389582, + 9.00886511105 + ], + "libelle_d_acheminement": "SANTA MARIA FIGANIELLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.00886511105, + 41.725389582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9cff58e631b7093e00e9071616806ccd761a62d", + "fields": { + "code_commune_insee": "21577", + "nom_de_la_commune": "ST USAGE", + "code_postal": "21170", + "coordonnees_gps": [ + 47.1093598345, + 5.25017482483 + ], + "libelle_d_acheminement": "ST USAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25017482483, + 47.1093598345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0af2ee7e79b25653a40c98711591a0a3f44eb75d", + "fields": { + "code_commune_insee": "2A312", + "nom_de_la_commune": "SANTA MARIA SICHE", + "code_postal": "20190", + "coordonnees_gps": [ + 41.8839751228, + 8.97997119242 + ], + "libelle_d_acheminement": "SANTA MARIA SICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.97997119242, + 41.8839751228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45f1ab78a09cab66ee0e066740ba2d695ed52750", + "fields": { + "code_commune_insee": "21580", + "nom_de_la_commune": "SALMAISE", + "code_postal": "21690", + "coordonnees_gps": [ + 47.4550732587, + 4.67554399967 + ], + "libelle_d_acheminement": "SALMAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67554399967, + 47.4550732587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0add7a96587467ac121579a2ff9bd51da809913d", + "fields": { + "code_commune_insee": "2A336", + "nom_de_la_commune": "VALLE DI MEZZANA", + "code_postal": "20167", + "coordonnees_gps": [ + 42.0235582479, + 8.8195514546 + ], + "libelle_d_acheminement": "VALLE DI MEZZANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8195514546, + 42.0235582479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c66f89bc60d5769a6307f636987aee4b3770172", + "fields": { + "code_commune_insee": "21585", + "nom_de_la_commune": "SAULON LA CHAPELLE", + "code_postal": "21910", + "coordonnees_gps": [ + 47.2106852941, + 5.09385756752 + ], + "libelle_d_acheminement": "SAULON LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09385756752, + 47.2106852941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19245ccdc3079552b15536e4ef7d26c3849baa0b", + "fields": { + "code_commune_insee": "2A345", + "nom_de_la_commune": "VERO", + "code_postal": "20172", + "coordonnees_gps": [ + 42.0610612103, + 8.92182128111 + ], + "libelle_d_acheminement": "VERO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.92182128111, + 42.0610612103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "794bace1902f5ffe1f88c8bded01fcde770c92c8", + "fields": { + "code_commune_insee": "21591", + "nom_de_la_commune": "SAVIGNY LE SEC", + "code_postal": "21380", + "coordonnees_gps": [ + 47.434029559, + 5.04178102646 + ], + "libelle_d_acheminement": "SAVIGNY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04178102646, + 47.434029559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aa4162a7c454b23e366e72818f603b7ad6e5af8", + "fields": { + "code_commune_insee": "2B013", + "nom_de_la_commune": "ALZI", + "code_postal": "20212", + "coordonnees_gps": [ + 42.312646335, + 9.3147546564 + ], + "libelle_d_acheminement": "ALZI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3147546564, + 42.312646335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59f1023ad93ee2965694c0ddc467a1f4056fda3d", + "fields": { + "code_commune_insee": "21603", + "nom_de_la_commune": "SEMUR EN AUXOIS", + "code_postal": "21140", + "coordonnees_gps": [ + 47.4909559267, + 4.34106366761 + ], + "libelle_d_acheminement": "SEMUR EN AUXOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34106366761, + 47.4909559267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60a6eb32fc8967a84aa006f195133f633c1789a0", + "fields": { + "code_commune_insee": "2B023", + "nom_de_la_commune": "ASCO", + "code_postal": "20276", + "coordonnees_gps": [ + 42.4346334244, + 8.99704854725 + ], + "libelle_d_acheminement": "ASCO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99704854725, + 42.4346334244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26d3e7638a9b7a25dfb896012e98cad982d6a62c", + "fields": { + "code_commune_insee": "21612", + "nom_de_la_commune": "SOUHEY", + "code_postal": "21140", + "coordonnees_gps": [ + 47.4876530398, + 4.421356507 + ], + "libelle_d_acheminement": "SOUHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.421356507, + 47.4876530398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e1fff12aa90283231cbf7634ffe75e48d02908d", + "fields": { + "code_commune_insee": "2B037", + "nom_de_la_commune": "BIGUGLIA", + "code_postal": "20620", + "coordonnees_gps": [ + 42.6164219998, + 9.44048317398 + ], + "libelle_d_acheminement": "BIGUGLIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.44048317398, + 42.6164219998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a43d13fe21fa565a80f15d4fe5c7f846b281776a", + "fields": { + "code_commune_insee": "21616", + "nom_de_la_commune": "TAILLY", + "code_postal": "21190", + "coordonnees_gps": [ + 46.9655888224, + 4.81679158031 + ], + "libelle_d_acheminement": "TAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81679158031, + 46.9655888224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9df6e780624c3bd607e3fb773b62535bb690e01", + "fields": { + "ligne_5": "VALROSE", + "code_commune_insee": "2B042", + "libelle_d_acheminement": "BORGO", + "code_postal": "20290", + "nom_de_la_commune": "BORGO", + "coordonnees_gps": [ + 42.573930097, + 9.45690314359 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45690314359, + 42.573930097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4676800f098e0d582d4ef373400014a1e4dd5ef0", + "fields": { + "code_commune_insee": "21622", + "nom_de_la_commune": "TART LE BAS", + "code_postal": "21110", + "coordonnees_gps": [ + 47.206605373, + 5.22359243318 + ], + "libelle_d_acheminement": "TART LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22359243318, + 47.206605373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc75b938971f30eb9e7719353753b8703ee5f838", + "fields": { + "code_commune_insee": "2B059", + "nom_de_la_commune": "CANAVAGGIA", + "code_postal": "20235", + "coordonnees_gps": [ + 42.4966282507, + 9.23425707415 + ], + "libelle_d_acheminement": "CANAVAGGIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.23425707415, + 42.4966282507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0464f58084fe615d4a68c658b2f71da43df93fe", + "fields": { + "ligne_5": "TART L ABBAYE", + "code_commune_insee": "21623", + "libelle_d_acheminement": "TART", + "code_postal": "21110", + "nom_de_la_commune": "TART", + "coordonnees_gps": [ + 47.1958586219, + 5.20512336576 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20512336576, + 47.1958586219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c93ff1b4e5de92c92d00f866c4b07c549e42756e", + "fields": { + "code_commune_insee": "2B063", + "nom_de_la_commune": "CARCHETO BRUSTICO", + "code_postal": "20229", + "coordonnees_gps": [ + 42.3547035924, + 9.36050471193 + ], + "libelle_d_acheminement": "CARCHETO BRUSTICO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36050471193, + 42.3547035924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bac77da4fcdcf012bf218b02580f10a4e29548fd", + "fields": { + "code_commune_insee": "21624", + "nom_de_la_commune": "TELLECEY", + "code_postal": "21270", + "coordonnees_gps": [ + 47.2904695595, + 5.29922695853 + ], + "libelle_d_acheminement": "TELLECEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29922695853, + 47.2904695595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56d34d34dd2f09d0860f63f2e56a198ea7f371d3", + "fields": { + "code_commune_insee": "2B087", + "nom_de_la_commune": "CERVIONE", + "code_postal": "20221", + "coordonnees_gps": [ + 42.3210930584, + 9.5154262188 + ], + "libelle_d_acheminement": "CERVIONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.5154262188, + 42.3210930584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09785cfbdd385b90a2d351f6653fc8c63a64a637", + "fields": { + "code_commune_insee": "21633", + "nom_de_la_commune": "THOREY SOUS CHARNY", + "code_postal": "21350", + "coordonnees_gps": [ + 47.3298168474, + 4.44950750431 + ], + "libelle_d_acheminement": "THOREY SOUS CHARNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44950750431, + 47.3298168474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aff0555665151a84ee2e6852585902a5fe30f164", + "fields": { + "code_commune_insee": "2B096", + "nom_de_la_commune": "CORTE", + "code_postal": "20250", + "coordonnees_gps": [ + 42.2700703225, + 9.0828946136 + ], + "libelle_d_acheminement": "CORTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0828946136, + 42.2700703225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ad17ea229d7b1f293504725fac9173826759259", + "fields": { + "code_commune_insee": "21645", + "nom_de_la_commune": "TROUHANS", + "code_postal": "21170", + "coordonnees_gps": [ + 47.1528128162, + 5.27088407904 + ], + "libelle_d_acheminement": "TROUHANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27088407904, + 47.1528128162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dffb6bac4bd4e9d5d51a4c17da2a1cd930a7626", + "fields": { + "code_commune_insee": "2B101", + "nom_de_la_commune": "CROCE", + "code_postal": "20237", + "coordonnees_gps": [ + 42.4077831336, + 9.35731368031 + ], + "libelle_d_acheminement": "CROCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.35731368031, + 42.4077831336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "968a16d8411a743ef271aed816783b0ce9e2529e", + "fields": { + "code_commune_insee": "21650", + "nom_de_la_commune": "URCY", + "code_postal": "21220", + "coordonnees_gps": [ + 47.2641409242, + 4.84612094396 + ], + "libelle_d_acheminement": "URCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84612094396, + 47.2641409242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7719587b71a6313b4d4cebc37f0b0f9cf9b3c077", + "fields": { + "code_commune_insee": "2B105", + "nom_de_la_commune": "ERBAJOLO", + "code_postal": "20212", + "coordonnees_gps": [ + 42.2523377533, + 9.26307967113 + ], + "libelle_d_acheminement": "ERBAJOLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.26307967113, + 42.2523377533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fce62712ba97c29fb4a91abdb01c004e0c1bd0f", + "fields": { + "code_commune_insee": "21652", + "nom_de_la_commune": "VANDENESSE EN AUXOIS", + "code_postal": "21320", + "coordonnees_gps": [ + 47.2234387567, + 4.62083828495 + ], + "libelle_d_acheminement": "VANDENESSE EN AUXOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62083828495, + 47.2234387567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bc11fba47840ea5b70cae4d12fd1c55580d4ddf", + "fields": { + "code_commune_insee": "2B111", + "nom_de_la_commune": "FELCE", + "code_postal": "20234", + "coordonnees_gps": [ + 42.3462578102, + 9.42479183294 + ], + "libelle_d_acheminement": "FELCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42479183294, + 42.3462578102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7289214a980d0482fb4fb569df95ef706df2d5ba", + "fields": { + "code_commune_insee": "21656", + "nom_de_la_commune": "VARANGES", + "code_postal": "21110", + "coordonnees_gps": [ + 47.2348268799, + 5.19088383489 + ], + "libelle_d_acheminement": "VARANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19088383489, + 47.2348268799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d974388f589c661b145dad9bf93e7dfc4f47df98", + "fields": { + "code_commune_insee": "2B113", + "nom_de_la_commune": "FICAJA", + "code_postal": "20237", + "coordonnees_gps": [ + 42.420940762, + 9.37847639312 + ], + "libelle_d_acheminement": "FICAJA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.37847639312, + 42.420940762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cc15c1254ee88776c92a3126760f741f95e564c", + "fields": { + "code_commune_insee": "21662", + "nom_de_la_commune": "VELOGNY", + "code_postal": "21350", + "coordonnees_gps": [ + 47.4020910842, + 4.46540583752 + ], + "libelle_d_acheminement": "VELOGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46540583752, + 47.4020910842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "798926cbf57c9764d905fb85a442f716752e7c3b", + "fields": { + "code_commune_insee": "2B120", + "nom_de_la_commune": "FURIANI", + "code_postal": "20600", + "coordonnees_gps": [ + 42.6523411195, + 9.4172647007 + ], + "libelle_d_acheminement": "FURIANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.4172647007, + 42.6523411195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2877035a5df7cd293fe5c682b82f029075e016cf", + "fields": { + "code_commune_insee": "21664", + "nom_de_la_commune": "VERDONNET", + "code_postal": "21330", + "coordonnees_gps": [ + 47.742034197, + 4.33534875629 + ], + "libelle_d_acheminement": "VERDONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33534875629, + 47.742034197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c584a55b6b3f7df7a35378f6df5cf57c2b8c555", + "fields": { + "ligne_5": "PIETRAPOLA", + "code_commune_insee": "2B135", + "libelle_d_acheminement": "ISOLACCIO DI FIUMORBO", + "code_postal": "20243", + "nom_de_la_commune": "ISOLACCIO DI FIUMORBO", + "coordonnees_gps": [ + 42.0157488768, + 9.26439576415 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.26439576415, + 42.0157488768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3561702a596464d46aeb3b068f690729e6a156f3", + "fields": { + "code_commune_insee": "21674", + "nom_de_la_commune": "VEUXHAULLES SUR AUBE", + "code_postal": "21520", + "coordonnees_gps": [ + 47.9393395308, + 4.81167181822 + ], + "libelle_d_acheminement": "VEUXHAULLES SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81167181822, + 47.9393395308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89cd11c5d7263cf08abc40ce963428ff645db1bc", + "fields": { + "code_commune_insee": "2B147", + "nom_de_la_commune": "LOZZI", + "code_postal": "20224", + "coordonnees_gps": [ + 42.3625664581, + 8.98031669387 + ], + "libelle_d_acheminement": "LOZZI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.98031669387, + 42.3625664581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63ab43ae2d7d9e4248f56def728059be000773d2", + "fields": { + "code_commune_insee": "21675", + "nom_de_la_commune": "VIANGES", + "code_postal": "21430", + "coordonnees_gps": [ + 47.1657435342, + 4.32416073393 + ], + "libelle_d_acheminement": "VIANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32416073393, + 47.1657435342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1b167c74331ce1be83916fc07a414bc98a80952", + "fields": { + "code_commune_insee": "2B150", + "nom_de_la_commune": "LUMIO", + "code_postal": "20260", + "coordonnees_gps": [ + 42.5800438458, + 8.82575573819 + ], + "libelle_d_acheminement": "LUMIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.82575573819, + 42.5800438458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9ecfd161777b462b838809caac309327b00ac02", + "fields": { + "code_commune_insee": "21676", + "nom_de_la_commune": "VIC DE CHASSENAY", + "code_postal": "21140", + "coordonnees_gps": [ + 47.4708474849, + 4.26265511038 + ], + "libelle_d_acheminement": "VIC DE CHASSENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26265511038, + 47.4708474849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b12a7a00da2602c2428a953730b283bf57b8f77c", + "fields": { + "code_commune_insee": "2B152", + "nom_de_la_commune": "LURI", + "code_postal": "20228", + "coordonnees_gps": [ + 42.8934435302, + 9.40987964362 + ], + "libelle_d_acheminement": "LURI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.40987964362, + 42.8934435302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d468dc32dbaa9f53bed47d82fa3a331c88b5a34", + "fields": { + "code_commune_insee": "21681", + "nom_de_la_commune": "VIEUX CHATEAU", + "code_postal": "21460", + "coordonnees_gps": [ + 47.4716319276, + 4.13565741481 + ], + "libelle_d_acheminement": "VIEUX CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13565741481, + 47.4716319276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50b109fc2ffea3845fb7b784cd101811f88366f0", + "fields": { + "code_commune_insee": "2B157", + "nom_de_la_commune": "MAZZOLA", + "code_postal": "20212", + "coordonnees_gps": [ + 42.3045556873, + 9.32842829627 + ], + "libelle_d_acheminement": "MAZZOLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.32842829627, + 42.3045556873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77dc1c4e358d5a9e0bbc629d04c0685dc93a68bb", + "fields": { + "code_commune_insee": "21686", + "nom_de_la_commune": "VILLAINES LES PREVOTES", + "code_postal": "21500", + "coordonnees_gps": [ + 47.5537362446, + 4.30749786549 + ], + "libelle_d_acheminement": "VILLAINES LES PREVOTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30749786549, + 47.5537362446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74d7d58dad99a81221cf67ca68c25287313a8997", + "fields": { + "code_commune_insee": "2B159", + "nom_de_la_commune": "MERIA", + "code_postal": "20287", + "coordonnees_gps": [ + 42.9200015376, + 9.4368174556 + ], + "libelle_d_acheminement": "MERIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.4368174556, + 42.9200015376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45e2372a0cf62798a1feeb5b863b7fc17bbeb061", + "fields": { + "code_commune_insee": "21687", + "nom_de_la_commune": "VILLARGOIX", + "code_postal": "21210", + "coordonnees_gps": [ + 47.29233714, + 4.29085327301 + ], + "libelle_d_acheminement": "VILLARGOIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29085327301, + 47.29233714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76b962f2fce1bf7250c7491c5144f2b807eb3446", + "fields": { + "code_commune_insee": "2B164", + "nom_de_la_commune": "MONACIA D OREZZA", + "code_postal": "20229", + "coordonnees_gps": [ + 42.3814112942, + 9.40502593518 + ], + "libelle_d_acheminement": "MONACIA D OREZZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.40502593518, + 42.3814112942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c97df76e96b251551c3a99907266cafcff491303", + "fields": { + "code_commune_insee": "21694", + "nom_de_la_commune": "VILLEFERRY", + "code_postal": "21350", + "coordonnees_gps": [ + 47.4498866756, + 4.52944557667 + ], + "libelle_d_acheminement": "VILLEFERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52944557667, + 47.4498866756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "321ddbcc8c3c1eb9e269e8b1d1d80be3becf243e", + "fields": { + "code_commune_insee": "2B165", + "nom_de_la_commune": "MONCALE", + "code_postal": "20214", + "coordonnees_gps": [ + 42.5033810267, + 8.81947177573 + ], + "libelle_d_acheminement": "MONCALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.81947177573, + 42.5033810267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf7676d2deb1748a67fd514aa8d3a4e75e626a3b", + "fields": { + "code_commune_insee": "21698", + "nom_de_la_commune": "VILLERS LA FAYE", + "code_postal": "21700", + "coordonnees_gps": [ + 47.1087180571, + 4.88391750001 + ], + "libelle_d_acheminement": "VILLERS LA FAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88391750001, + 47.1087180571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8009e8f9d6367623fb324725573f6ca5a3175ea7", + "fields": { + "code_commune_insee": "2B169", + "nom_de_la_commune": "MOROSAGLIA", + "code_postal": "20218", + "coordonnees_gps": [ + 42.4476687598, + 9.25468558646 + ], + "libelle_d_acheminement": "MOROSAGLIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.25468558646, + 42.4476687598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9df5fcfa0995fd7f1339e8dfcf2af96112f7a2f", + "fields": { + "code_commune_insee": "21708", + "nom_de_la_commune": "VILLY LE MOUTIER", + "code_postal": "21250", + "coordonnees_gps": [ + 47.0390086783, + 4.98680226747 + ], + "libelle_d_acheminement": "VILLY LE MOUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98680226747, + 47.0390086783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d9524515c280fe0e7241b900147381ec4afc052", + "fields": { + "code_commune_insee": "2B170", + "nom_de_la_commune": "MORSIGLIA", + "code_postal": "20238", + "coordonnees_gps": [ + 42.9359197477, + 9.37347710388 + ], + "libelle_d_acheminement": "MORSIGLIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.37347710388, + 42.9359197477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e25eaa268dac0050a90ad00e949f3f2a0f0067ab", + "fields": { + "code_commune_insee": "21712", + "nom_de_la_commune": "VOLNAY", + "code_postal": "21190", + "coordonnees_gps": [ + 46.9995837009, + 4.78217107692 + ], + "libelle_d_acheminement": "VOLNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78217107692, + 46.9995837009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b6b8e7c45a0d9f48b4993d3ac066e57da7834ef", + "fields": { + "code_commune_insee": "2B179", + "nom_de_la_commune": "NOVALE", + "code_postal": "20234", + "coordonnees_gps": [ + 42.3048180295, + 9.41089162229 + ], + "libelle_d_acheminement": "NOVALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.41089162229, + 42.3048180295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a37a976d2c10b927e359df8aa2456b2fc65b047a", + "fields": { + "code_commune_insee": "21717", + "nom_de_la_commune": "VOULAINES LES TEMPLIERS", + "code_postal": "21290", + "coordonnees_gps": [ + 47.8306417712, + 4.77656655885 + ], + "libelle_d_acheminement": "VOULAINES LES TEMPLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77656655885, + 47.8306417712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23e64ea7c35edb1f5b41541a4cc91a2ac1005ddf", + "fields": { + "code_commune_insee": "2B184", + "nom_de_la_commune": "OLCANI", + "code_postal": "20217", + "coordonnees_gps": [ + 42.8060476882, + 9.38654004779 + ], + "libelle_d_acheminement": "OLCANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.38654004779, + 42.8060476882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19338e0c7697ff75b37fa2b27aa94db413817b96", + "fields": { + "code_commune_insee": "22004", + "nom_de_la_commune": "BEGARD", + "code_postal": "22140", + "coordonnees_gps": [ + 48.6345594689, + -3.29153247621 + ], + "libelle_d_acheminement": "BEGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29153247621, + 48.6345594689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f2d85f8e53f159fdd6cdd01c749ac8494c82ce7", + "fields": { + "code_commune_insee": "2B194", + "nom_de_la_commune": "ORTALE", + "code_postal": "20234", + "coordonnees_gps": [ + 42.3108287185, + 9.43462429228 + ], + "libelle_d_acheminement": "ORTALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43462429228, + 42.3108287185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80456f623a85c22285d73ae1594a95c1c677e704", + "fields": { + "ligne_5": "GUENEZAN", + "code_commune_insee": "22004", + "libelle_d_acheminement": "BEGARD", + "code_postal": "22140", + "nom_de_la_commune": "BEGARD", + "coordonnees_gps": [ + 48.6345594689, + -3.29153247621 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.29153247621, + 48.6345594689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfc122740f1b4ca84bcb2b2b89445f111f71b9de", + "fields": { + "code_commune_insee": "2B205", + "nom_de_la_commune": "PATRIMONIO", + "code_postal": "20253", + "coordonnees_gps": [ + 42.7066867042, + 9.3670488048 + ], + "libelle_d_acheminement": "PATRIMONIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3670488048, + 42.7066867042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c1a9ae56332c2a4f0db7cf9b9bf3916106080a3", + "fields": { + "code_commune_insee": "22014", + "nom_de_la_commune": "BOURSEUL", + "code_postal": "22130", + "coordonnees_gps": [ + 48.4671372478, + -2.26507368746 + ], + "libelle_d_acheminement": "BOURSEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.26507368746, + 48.4671372478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94b0bbca7d30a151abdf5b679f56759a39d3133a", + "fields": { + "code_commune_insee": "2B206", + "nom_de_la_commune": "PENTA ACQUATELLA", + "code_postal": "20290", + "coordonnees_gps": [ + 42.4636442257, + 9.37213628263 + ], + "libelle_d_acheminement": "PENTA ACQUATELLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.37213628263, + 42.4636442257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1858304c5642462830623e7e0e553c70d9db9dde", + "fields": { + "code_commune_insee": "22015", + "nom_de_la_commune": "BREHAND", + "code_postal": "22510", + "coordonnees_gps": [ + 48.393898689, + -2.58915945139 + ], + "libelle_d_acheminement": "BREHAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.58915945139, + 48.393898689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4867b5bdb4dbe6f3a580614194464cf5fd494037", + "fields": { + "code_commune_insee": "2B210", + "nom_de_la_commune": "PERO CASEVECCHIE", + "code_postal": "20230", + "coordonnees_gps": [ + 42.4163942737, + 9.46376889393 + ], + "libelle_d_acheminement": "PERO CASEVECCHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.46376889393, + 42.4163942737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21c87fa2de99b5e7f9886146a0975b32001f44bb", + "fields": { + "code_commune_insee": "22018", + "nom_de_la_commune": "BRELIDY", + "code_postal": "22140", + "coordonnees_gps": [ + 48.6489532985, + -3.22763480343 + ], + "libelle_d_acheminement": "BRELIDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.22763480343, + 48.6489532985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39b6de45d4f0e279c8c1df32c256751236528a59", + "fields": { + "code_commune_insee": "2B230", + "nom_de_la_commune": "PIEVE", + "code_postal": "20246", + "coordonnees_gps": [ + 42.5857060069, + 9.27821414573 + ], + "libelle_d_acheminement": "PIEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.27821414573, + 42.5857060069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55ea7d49cdd3cacd9fe7377a80e5175b20d46db7", + "fields": { + "code_commune_insee": "22021", + "nom_de_la_commune": "BRUSVILY", + "code_postal": "22100", + "coordonnees_gps": [ + 48.3939754306, + -2.11740584106 + ], + "libelle_d_acheminement": "BRUSVILY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.11740584106, + 48.3939754306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49e2b11dac0839b28f251e81bbba7853cb8e386f", + "fields": { + "code_commune_insee": "2B248", + "nom_de_la_commune": "PRATO DI GIOVELLINA", + "code_postal": "20218", + "coordonnees_gps": [ + 42.4191789343, + 9.16926425696 + ], + "libelle_d_acheminement": "PRATO DI GIOVELLINA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.16926425696, + 42.4191789343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68fb2de4493f2ba7106d095febef5d6004072152", + "fields": { + "code_commune_insee": "22032", + "nom_de_la_commune": "CAULNES", + "code_postal": "22350", + "coordonnees_gps": [ + 48.302140665, + -2.16070598296 + ], + "libelle_d_acheminement": "CAULNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16070598296, + 48.302140665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "855d5fb33e4366b429d219b7a6102a59357ab338", + "fields": { + "code_commune_insee": "2B255", + "nom_de_la_commune": "QUERCITELLO", + "code_postal": "20237", + "coordonnees_gps": [ + 42.4279847152, + 9.34339471958 + ], + "libelle_d_acheminement": "QUERCITELLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.34339471958, + 42.4279847152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5eb28cbc05c522a4a92e2badde84f60134fa6568", + "fields": { + "code_commune_insee": "22039", + "nom_de_la_commune": "LA CHEZE", + "code_postal": "22210", + "coordonnees_gps": [ + 48.1346308811, + -2.66260913976 + ], + "libelle_d_acheminement": "LA CHEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.66260913976, + 48.1346308811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f99ad8b7cd9f46dcca0bd5dca246dc05f29df88", + "fields": { + "ligne_5": "MACINAGGIO", + "code_commune_insee": "2B261", + "libelle_d_acheminement": "ROGLIANO", + "code_postal": "20248", + "nom_de_la_commune": "ROGLIANO", + "coordonnees_gps": [ + 42.9720512637, + 9.42539823747 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42539823747, + 42.9720512637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f0e23d525257acd422ee24fd7dd2cb1f39b5313", + "fields": { + "code_commune_insee": "22052", + "nom_de_la_commune": "DUAULT", + "code_postal": "22160", + "coordonnees_gps": [ + 48.3648237544, + -3.43619932088 + ], + "libelle_d_acheminement": "DUAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.43619932088, + 48.3648237544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "231c7b2bb835095f4724e3e3038690284d3c81a5", + "fields": { + "code_commune_insee": "2B265", + "nom_de_la_commune": "RUTALI", + "code_postal": "20239", + "coordonnees_gps": [ + 42.5827324452, + 9.38160373146 + ], + "libelle_d_acheminement": "RUTALI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.38160373146, + 42.5827324452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1ded70194d40dc7e37200d0ac0898d7aaae21e2", + "fields": { + "code_commune_insee": "22053", + "nom_de_la_commune": "EREAC", + "code_postal": "22250", + "coordonnees_gps": [ + 48.2743206835, + -2.34355511126 + ], + "libelle_d_acheminement": "EREAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.34355511126, + 48.2743206835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fdcf2ff857631f8d4ae8549f18a0c18749d76fe", + "fields": { + "code_commune_insee": "2B267", + "nom_de_la_commune": "SALICETO", + "code_postal": "20218", + "coordonnees_gps": [ + 42.4110475003, + 9.26291373059 + ], + "libelle_d_acheminement": "SALICETO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.26291373059, + 42.4110475003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d94f0f03b26c8da61c705b0e09b9b843fd68a199", + "fields": { + "ligne_5": "ETABLES SUR MER", + "code_commune_insee": "22055", + "libelle_d_acheminement": "BINIC ETABLES SUR MER", + "code_postal": "22680", + "nom_de_la_commune": "BINIC ETABLES SUR MER", + "coordonnees_gps": [ + 48.6255350477, + -2.8413899481 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.8413899481, + 48.6255350477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c2dd4295db94336e4143baf7b863175976461cc", + "fields": { + "code_commune_insee": "2B275", + "nom_de_la_commune": "SERMANO", + "code_postal": "20212", + "coordonnees_gps": [ + 42.3157105384, + 9.26621042677 + ], + "libelle_d_acheminement": "SERMANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.26621042677, + 42.3157105384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9dd497804e50dbe9dcd2961bbf74cff2c5484aa", + "fields": { + "code_commune_insee": "22057", + "nom_de_la_commune": "LE FAOUET", + "code_postal": "22290", + "coordonnees_gps": [ + 48.6788862743, + -3.07342665968 + ], + "libelle_d_acheminement": "LE FAOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.07342665968, + 48.6788862743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7e12551e6d1dfe46068395b891d98ccc2bf8b4b", + "fields": { + "code_commune_insee": "2B287", + "nom_de_la_commune": "SORIO", + "code_postal": "20246", + "coordonnees_gps": [ + 42.5778173926, + 9.24430317014 + ], + "libelle_d_acheminement": "SORIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.24430317014, + 42.5778173926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be35d567e8ea64a459416ef93792f2e637fba544", + "fields": { + "code_commune_insee": "22062", + "nom_de_la_commune": "GOMENE", + "code_postal": "22230", + "coordonnees_gps": [ + 48.1798510762, + -2.49181773591 + ], + "libelle_d_acheminement": "GOMENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49181773591, + 48.1798510762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93cd95c79886e7d23e0deb3fe05e322344908830", + "fields": { + "code_commune_insee": "2B289", + "nom_de_la_commune": "SOVERIA", + "code_postal": "20250", + "coordonnees_gps": [ + 42.3496030616, + 9.14569806657 + ], + "libelle_d_acheminement": "SOVERIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.14569806657, + 42.3496030616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c93867fbb79d7c6be5889d293ce3dcedff4091e", + "fields": { + "code_commune_insee": "22065", + "nom_de_la_commune": "GOUDELIN", + "code_postal": "22290", + "coordonnees_gps": [ + 48.6033329233, + -3.02259063099 + ], + "libelle_d_acheminement": "GOUDELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.02259063099, + 48.6033329233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5bc41c193a8f040b309ee69c227ddf74b9141e7", + "fields": { + "code_commune_insee": "2B292", + "nom_de_la_commune": "SANT ANDREA DI BOZIO", + "code_postal": "20212", + "coordonnees_gps": [ + 42.2767589636, + 9.28470824076 + ], + "libelle_d_acheminement": "SANT ANDREA DI BOZIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.28470824076, + 42.2767589636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70d89531b57cf0c41736919f760276e7d6cbe56e", + "fields": { + "code_commune_insee": "22075", + "nom_de_la_commune": "HEMONSTOIR", + "code_postal": "22600", + "coordonnees_gps": [ + 48.1571543373, + -2.84985311411 + ], + "libelle_d_acheminement": "HEMONSTOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84985311411, + 48.1571543373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0a165146b2c3bb94edf42abbfcd1460ecc710dd", + "fields": { + "code_commune_insee": "2B296", + "nom_de_la_commune": "SANT ANTONINO", + "code_postal": "20220", + "coordonnees_gps": [ + 42.5845277906, + 8.90827098079 + ], + "libelle_d_acheminement": "SANT ANTONINO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.90827098079, + 42.5845277906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e4d2e550a11864bae2897ae37fe29f0a0cf7381", + "fields": { + "code_commune_insee": "22081", + "nom_de_la_commune": "HILLION", + "code_postal": "22120", + "coordonnees_gps": [ + 48.5029884697, + -2.64614749418 + ], + "libelle_d_acheminement": "HILLION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.64614749418, + 48.5029884697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed03004b801c25bcfe653d6daa55fd5d48fa1558", + "fields": { + "code_commune_insee": "2B297", + "nom_de_la_commune": "SAN DAMIANO", + "code_postal": "20213", + "coordonnees_gps": [ + 42.4061531707, + 9.41439045887 + ], + "libelle_d_acheminement": "SAN DAMIANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.41439045887, + 42.4061531707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be405c738903ddd8834355305ad701eec8eb8875", + "fields": { + "code_commune_insee": "22085", + "nom_de_la_commune": "KERBORS", + "code_postal": "22610", + "coordonnees_gps": [ + 48.8236353401, + -3.1817520424 + ], + "libelle_d_acheminement": "KERBORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.1817520424, + 48.8236353401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ea57eb5fd9ea5c35043fca7d7c1b77f1c9f7b81", + "fields": { + "ligne_5": "MORIANI", + "code_commune_insee": "2B313", + "libelle_d_acheminement": "SAN NICOLAO", + "code_postal": "20230", + "nom_de_la_commune": "SAN NICOLAO", + "coordonnees_gps": [ + 42.3681811247, + 9.50945182928 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.50945182928, + 42.3681811247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "112e59411d00eafa225261598b7dbd47d6939c60", + "fields": { + "code_commune_insee": "22091", + "nom_de_la_commune": "KERMOROC H", + "code_postal": "22140", + "coordonnees_gps": [ + 48.614435841, + -3.20327360757 + ], + "libelle_d_acheminement": "KERMOROC H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.20327360757, + 48.614435841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca03182e69240a0c1d5542cf092359578e5e2bd9", + "fields": { + "ligne_5": "CASTA", + "code_commune_insee": "2B314", + "libelle_d_acheminement": "SANTO PIETRO DI TENDA", + "code_postal": "20217", + "nom_de_la_commune": "SANTO PIETRO DI TENDA", + "coordonnees_gps": [ + 42.6724371425, + 9.20380969804 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.20380969804, + 42.6724371425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8134754a90459d266b9ece1831a373b573526f85", + "fields": { + "ligne_5": "MESLIN", + "code_commune_insee": "22093", + "libelle_d_acheminement": "LAMBALLE ARMOR", + "code_postal": "22400", + "nom_de_la_commune": "LAMBALLE ARMOR", + "coordonnees_gps": [ + 48.4684404751, + -2.49534815954 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.49534815954, + 48.4684404751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "500063f6fe469c2528d1d4eded8ceb9039874d65", + "fields": { + "code_commune_insee": "2B315", + "nom_de_la_commune": "SANTO PIETRO DI VENACO", + "code_postal": "20250", + "coordonnees_gps": [ + 42.2451439725, + 9.16595729369 + ], + "libelle_d_acheminement": "SANTO PIETRO DI VENACO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.16595729369, + 42.2451439725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0997b4821f876a0b290ef1dfd4c9cbc567c6bae3", + "fields": { + "code_commune_insee": "22095", + "nom_de_la_commune": "LANDEBAERON", + "code_postal": "22140", + "coordonnees_gps": [ + 48.6375635962, + -3.20497735412 + ], + "libelle_d_acheminement": "LANDEBAERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.20497735412, + 48.6375635962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb41a528287f36f39a5acc15e97068c4a65ce39f", + "fields": { + "code_commune_insee": "2B316", + "nom_de_la_commune": "SANTA REPARATA DI BALAGNA", + "code_postal": "20220", + "coordonnees_gps": [ + 42.6011280818, + 8.93155852318 + ], + "libelle_d_acheminement": "SANTA REPARATA DI BALAGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.93155852318, + 42.6011280818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "756c704a8756c8925bd2bd39a58b41e924a8b00d", + "fields": { + "code_commune_insee": "22096", + "nom_de_la_commune": "LANDEBIA", + "code_postal": "22130", + "coordonnees_gps": [ + 48.5152409812, + -2.33740214876 + ], + "libelle_d_acheminement": "LANDEBIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.33740214876, + 48.5152409812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ff461e9b238a88166410eacec842da998a47db0", + "fields": { + "code_commune_insee": "2B318", + "nom_de_la_commune": "TAGLIO ISOLACCIO", + "code_postal": "20230", + "coordonnees_gps": [ + 42.4345865472, + 9.49734774126 + ], + "libelle_d_acheminement": "TAGLIO ISOLACCIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.49734774126, + 42.4345865472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c6ac81312c81448fa4d701f4f47cac50cffe69b", + "fields": { + "code_commune_insee": "22099", + "nom_de_la_commune": "LANFAINS", + "code_postal": "22800", + "coordonnees_gps": [ + 48.3653621373, + -2.91178425275 + ], + "libelle_d_acheminement": "LANFAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.91178425275, + 48.3653621373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8566124cd96a6589d9140930e48567e479c8f77", + "fields": { + "code_commune_insee": "2B320", + "nom_de_la_commune": "TALLONE", + "code_postal": "20270", + "coordonnees_gps": [ + 42.1844920407, + 9.46562453139 + ], + "libelle_d_acheminement": "TALLONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.46562453139, + 42.1844920407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "095578a70c71c4088ad90a40fc523a254c846cac", + "fields": { + "code_commune_insee": "22104", + "nom_de_la_commune": "LANGUEDIAS", + "code_postal": "22980", + "coordonnees_gps": [ + 48.3929940858, + -2.20566739672 + ], + "libelle_d_acheminement": "LANGUEDIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.20566739672, + 48.3929940858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9da49a9430b1d882e71e4dbbc72ab983379b1101", + "fields": { + "code_commune_insee": "2B333", + "nom_de_la_commune": "VALLECALLE", + "code_postal": "20232", + "coordonnees_gps": [ + 42.5997369417, + 9.33661797877 + ], + "libelle_d_acheminement": "VALLECALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.33661797877, + 42.5997369417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d1477d87c8373e3d16fd7300865fc721c7f2617", + "fields": { + "ligne_5": "PERRET", + "code_commune_insee": "22107", + "libelle_d_acheminement": "BON REPOS SUR BLAVET", + "code_postal": "22570", + "nom_de_la_commune": "BON REPOS SUR BLAVET", + "coordonnees_gps": [ + 48.2402807469, + -3.13725653018 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13725653018, + 48.2402807469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ff464a345c4c9d0775798ad4e441056812c31ab", + "fields": { + "code_commune_insee": "2B340", + "nom_de_la_commune": "VELONE ORNETO", + "code_postal": "20230", + "coordonnees_gps": [ + 42.3913143891, + 9.45150821019 + ], + "libelle_d_acheminement": "VELONE ORNETO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45150821019, + 42.3913143891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4753ec1c9ba7a6d78b15d37ef4558eab258adf6d", + "fields": { + "ligne_5": "ST GELVEN", + "code_commune_insee": "22107", + "libelle_d_acheminement": "BON REPOS SUR BLAVET", + "code_postal": "22570", + "nom_de_la_commune": "BON REPOS SUR BLAVET", + "coordonnees_gps": [ + 48.2402807469, + -3.13725653018 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13725653018, + 48.2402807469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05d5ecd15bcb8f5cd6abf28ac4e13f79ded686eb", + "fields": { + "ligne_5": "TRAVO", + "code_commune_insee": "2B342", + "libelle_d_acheminement": "VENTISERI", + "code_postal": "20240", + "nom_de_la_commune": "VENTISERI", + "coordonnees_gps": [ + 41.9410129854, + 9.36287097036 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36287097036, + 41.9410129854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b583f39a20c66b6bf8453980a1dd3e41c38c5878", + "fields": { + "code_commune_insee": "22110", + "nom_de_la_commune": "LANMERIN", + "code_postal": "22300", + "coordonnees_gps": [ + 48.7402849617, + -3.35598717898 + ], + "libelle_d_acheminement": "LANMERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.35598717898, + 48.7402849617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d719e21a9e2fd3f400488e4056f7030f5c2f8647", + "fields": { + "code_commune_insee": "2B347", + "nom_de_la_commune": "VEZZANI", + "code_postal": "20242", + "coordonnees_gps": [ + 42.1573513565, + 9.292359887 + ], + "libelle_d_acheminement": "VEZZANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.292359887, + 42.1573513565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3679d39ffbe0e175b4deaab5e24a7c240eff3e9", + "fields": { + "code_commune_insee": "22127", + "nom_de_la_commune": "LEZARDRIEUX", + "code_postal": "22740", + "coordonnees_gps": [ + 48.8036302757, + -3.1089212671 + ], + "libelle_d_acheminement": "LEZARDRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.1089212671, + 48.8036302757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "570816c90cbe8ab0beef0a73fcb60e225f72201d", + "fields": { + "ligne_5": "BARCHETTA", + "code_commune_insee": "2B355", + "libelle_d_acheminement": "VOLPAJOLA", + "code_postal": "20290", + "nom_de_la_commune": "VOLPAJOLA", + "coordonnees_gps": [ + 42.5200129525, + 9.36071505878 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36071505878, + 42.5200129525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5d2da4884d43f613fd189dc48fe8afae7c77344", + "fields": { + "ligne_5": "KERMOUSTER", + "code_commune_insee": "22127", + "libelle_d_acheminement": "LEZARDRIEUX", + "code_postal": "22740", + "nom_de_la_commune": "LEZARDRIEUX", + "coordonnees_gps": [ + 48.8036302757, + -3.1089212671 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.1089212671, + 48.8036302757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b65d7436a3780242c734e7000bc073418c00b782", + "fields": { + "code_commune_insee": "2B365", + "nom_de_la_commune": "SAN GAVINO DI FIUMORBO", + "code_postal": "20243", + "coordonnees_gps": [ + 41.9714498244, + 9.24775602009 + ], + "libelle_d_acheminement": "SAN GAVINO DI FIUMORBO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.24775602009, + 41.9714498244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "977931bcc72fbfe506a885b3117341be42f4ce22", + "fields": { + "code_commune_insee": "22131", + "nom_de_la_commune": "LOGUIVY PLOUGRAS", + "code_postal": "22780", + "coordonnees_gps": [ + 48.5106432062, + -3.49141017809 + ], + "libelle_d_acheminement": "LOGUIVY PLOUGRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.49141017809, + 48.5106432062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65a6cec0a49d7e2afcfbc6128fb1926b382902aa", + "fields": { + "code_commune_insee": "30002", + "nom_de_la_commune": "AIGREMONT", + "code_postal": "30350", + "coordonnees_gps": [ + 43.9613248241, + 4.11795546515 + ], + "libelle_d_acheminement": "AIGREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11795546515, + 43.9613248241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e06499d458f705ccbc0921f61ec87a0ad4ff659", + "fields": { + "ligne_5": "ST ELOI", + "code_commune_insee": "22135", + "libelle_d_acheminement": "LOUARGAT", + "code_postal": "22540", + "nom_de_la_commune": "LOUARGAT", + "coordonnees_gps": [ + 48.5612002546, + -3.34101341684 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34101341684, + 48.5612002546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16452463901d9013a6bf67461784c900aaf24d5e", + "fields": { + "code_commune_insee": "30017", + "nom_de_la_commune": "ARRIGAS", + "code_postal": "30770", + "coordonnees_gps": [ + 43.9902038605, + 3.48117676072 + ], + "libelle_d_acheminement": "ARRIGAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48117676072, + 43.9902038605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0d533423987b6d6ef0662c1822cfde5402ea1ac", + "fields": { + "ligne_5": "MUR DE BRETAGNE", + "code_commune_insee": "22158", + "libelle_d_acheminement": "GUERLEDAN", + "code_postal": "22530", + "nom_de_la_commune": "GUERLEDAN", + "coordonnees_gps": [ + 48.1957524474, + -2.9837108711 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.9837108711, + 48.1957524474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e72957e55f2400250f4933d104ede1634c19297", + "fields": { + "code_commune_insee": "30022", + "nom_de_la_commune": "AUJAC", + "code_postal": "30450", + "coordonnees_gps": [ + 44.3551368588, + 4.01860850568 + ], + "libelle_d_acheminement": "AUJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01860850568, + 44.3551368588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5abdfbafda07d107070306abb52cd03b5fdcc7de", + "fields": { + "code_commune_insee": "22160", + "nom_de_la_commune": "NOYAL", + "code_postal": "22400", + "coordonnees_gps": [ + 48.4508228232, + -2.46340477987 + ], + "libelle_d_acheminement": "NOYAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.46340477987, + 48.4508228232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81342ac8c15553f98345c2b1519c7d7e70c4338c", + "fields": { + "code_commune_insee": "30025", + "nom_de_la_commune": "AUMESSAS", + "code_postal": "30770", + "coordonnees_gps": [ + 44.0113365754, + 3.51374005993 + ], + "libelle_d_acheminement": "AUMESSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51374005993, + 44.0113365754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48a19a97298ba52aab622a13436b78c65444abc2", + "fields": { + "ligne_5": "BUGUELES", + "code_commune_insee": "22166", + "libelle_d_acheminement": "PENVENAN", + "code_postal": "22710", + "nom_de_la_commune": "PENVENAN", + "coordonnees_gps": [ + 48.816014407, + -3.30224745841 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.30224745841, + 48.816014407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6308ec1b8030c1b220b3b614876f1b8ae3605de", + "fields": { + "code_commune_insee": "30028", + "nom_de_la_commune": "BAGNOLS SUR CEZE", + "code_postal": "30200", + "coordonnees_gps": [ + 44.1622496736, + 4.62477380854 + ], + "libelle_d_acheminement": "BAGNOLS SUR CEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62477380854, + 44.1622496736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7b946a11043065899b2931978615ed582958133", + "fields": { + "code_commune_insee": "22169", + "nom_de_la_commune": "PEUMERIT QUINTIN", + "code_postal": "22480", + "coordonnees_gps": [ + 48.3635016654, + -3.28335906879 + ], + "libelle_d_acheminement": "PEUMERIT QUINTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.28335906879, + 48.3635016654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "664e114a4e8609b6a914fe38ff8a7e6908deac15", + "fields": { + "code_commune_insee": "30030", + "nom_de_la_commune": "BARON", + "code_postal": "30700", + "coordonnees_gps": [ + 44.0555735383, + 4.2751122058 + ], + "libelle_d_acheminement": "BARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2751122058, + 44.0555735383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b16eb05d66aca7d15a5322d466d87f7df66df76a", + "fields": { + "code_commune_insee": "22175", + "nom_de_la_commune": "PLEDELIAC", + "code_postal": "22270", + "coordonnees_gps": [ + 48.46875643, + -2.37175488421 + ], + "libelle_d_acheminement": "PLEDELIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.37175488421, + 48.46875643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50ed950749c18af29b155cd85ec9c55fb471dbea", + "fields": { + "code_commune_insee": "30031", + "nom_de_la_commune": "LA BASTIDE D ENGRAS", + "code_postal": "30330", + "coordonnees_gps": [ + 44.0933546759, + 4.47729781673 + ], + "libelle_d_acheminement": "LA BASTIDE D ENGRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47729781673, + 44.0933546759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2733d60a03e7c5d214b2c4503de53b2aa3a97bf0", + "fields": { + "code_commune_insee": "22176", + "nom_de_la_commune": "PLEDRAN", + "code_postal": "22960", + "coordonnees_gps": [ + 48.4430297904, + -2.745361546 + ], + "libelle_d_acheminement": "PLEDRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.745361546, + 48.4430297904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d57d94c74799e9358c5b796803233ee3bed9157", + "fields": { + "code_commune_insee": "30038", + "nom_de_la_commune": "BEZ ET ESPARON", + "code_postal": "30120", + "coordonnees_gps": [ + 43.9789082922, + 3.5343559846 + ], + "libelle_d_acheminement": "BEZ ET ESPARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5343559846, + 43.9789082922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c89dba2c903ed99f1dde0a982fa10b6bb901ecf4", + "fields": { + "code_commune_insee": "22177", + "nom_de_la_commune": "PLEGUIEN", + "code_postal": "22290", + "coordonnees_gps": [ + 48.634729938, + -2.948078639 + ], + "libelle_d_acheminement": "PLEGUIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.948078639, + 48.634729938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecaa04f86a69de60bfa7886a353f37c8dfa48a87", + "fields": { + "code_commune_insee": "30040", + "nom_de_la_commune": "BLANDAS", + "code_postal": "30770", + "coordonnees_gps": [ + 43.9210570231, + 3.50734376894 + ], + "libelle_d_acheminement": "BLANDAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50734376894, + 43.9210570231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9288f33461b48434ae1c2328d54b2f6840a623cb", + "fields": { + "ligne_5": "LA CARQUOIS", + "code_commune_insee": "22179", + "libelle_d_acheminement": "FREHEL", + "code_postal": "22240", + "nom_de_la_commune": "FREHEL", + "coordonnees_gps": [ + 48.6348223959, + -2.36202603588 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.36202603588, + 48.6348223959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68fd7cb2bac62455f02eefe9e978946c37446a1f", + "fields": { + "code_commune_insee": "30050", + "nom_de_la_commune": "BRAGASSARGUES", + "code_postal": "30260", + "coordonnees_gps": [ + 43.9187684688, + 4.04532393955 + ], + "libelle_d_acheminement": "BRAGASSARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04532393955, + 43.9187684688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "165cbaa4734659dbbcbdbd1767bd630df300ff9f", + "fields": { + "code_commune_insee": "22181", + "nom_de_la_commune": "PLELAUFF", + "code_postal": "22570", + "coordonnees_gps": [ + 48.1984075827, + -3.20337969883 + ], + "libelle_d_acheminement": "PLELAUFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.20337969883, + 48.1984075827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75f15650652092314cb5203e5d0ae5e16561d238", + "fields": { + "code_commune_insee": "30054", + "nom_de_la_commune": "BROUZET LES QUISSAC", + "code_postal": "30260", + "coordonnees_gps": [ + 43.863135128, + 3.98371432291 + ], + "libelle_d_acheminement": "BROUZET LES QUISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98371432291, + 43.863135128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f672be1ee34d1412f55832fe806ff389af9c43f1", + "fields": { + "code_commune_insee": "22186", + "nom_de_la_commune": "PLENEUF VAL ANDRE", + "code_postal": "22370", + "coordonnees_gps": [ + 48.5840054611, + -2.53016887694 + ], + "libelle_d_acheminement": "PLENEUF VAL ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.53016887694, + 48.5840054611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1325efd19916917250b11165392af5aee79c8b2a", + "fields": { + "code_commune_insee": "30069", + "nom_de_la_commune": "CARNAS", + "code_postal": "30260", + "coordonnees_gps": [ + 43.8280194179, + 3.99134225562 + ], + "libelle_d_acheminement": "CARNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99134225562, + 43.8280194179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "341ad43bdd8aa3fa89eb9dcfccea6b8150a9af39", + "fields": { + "code_commune_insee": "22189", + "nom_de_la_commune": "PLESIDY", + "code_postal": "22720", + "coordonnees_gps": [ + 48.4414674679, + -3.12592291873 + ], + "libelle_d_acheminement": "PLESIDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.12592291873, + 48.4414674679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d498689ddc72fda286e4fbb905cbfd70e5733c6b", + "fields": { + "code_commune_insee": "30074", + "nom_de_la_commune": "CAUSSE BEGON", + "code_postal": "30750", + "coordonnees_gps": [ + 44.0660478253, + 3.35485547926 + ], + "libelle_d_acheminement": "CAUSSE BEGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35485547926, + 44.0660478253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d34f121fec3408428380ca95fc28aa1f37684799", + "fields": { + "code_commune_insee": "22190", + "nom_de_la_commune": "PLESLIN TRIGAVOU", + "code_postal": "22490", + "coordonnees_gps": [ + 48.5279257425, + -2.07094753611 + ], + "libelle_d_acheminement": "PLESLIN TRIGAVOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07094753611, + 48.5279257425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12f9df60fb4745447bd6521762caf850c442ae10", + "fields": { + "code_commune_insee": "30086", + "nom_de_la_commune": "COLLORGUES", + "code_postal": "30190", + "coordonnees_gps": [ + 44.0163774455, + 4.28741311644 + ], + "libelle_d_acheminement": "COLLORGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28741311644, + 44.0163774455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "073d951059524aa4cbe1150047db995cfd063f11", + "fields": { + "code_commune_insee": "22193", + "nom_de_la_commune": "PLESTAN", + "code_postal": "22640", + "coordonnees_gps": [ + 48.4145560996, + -2.44084892144 + ], + "libelle_d_acheminement": "PLESTAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.44084892144, + 48.4145560996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6109e32451b88a49010aa038285391ccc368b778", + "fields": { + "code_commune_insee": "30096", + "nom_de_la_commune": "CORNILLON", + "code_postal": "30630", + "coordonnees_gps": [ + 44.2191528402, + 4.49474987476 + ], + "libelle_d_acheminement": "CORNILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49474987476, + 44.2191528402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4820419ec3c84dd24b3d4d4826efeff007e8233e", + "fields": { + "code_commune_insee": "22194", + "nom_de_la_commune": "PLESTIN LES GREVES", + "code_postal": "22310", + "coordonnees_gps": [ + 48.6476598998, + -3.6197891944 + ], + "libelle_d_acheminement": "PLESTIN LES GREVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6197891944, + 48.6476598998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c68407f7007986d0e87349f020151437000de022", + "fields": { + "code_commune_insee": "30098", + "nom_de_la_commune": "CRESPIAN", + "code_postal": "30260", + "coordonnees_gps": [ + 43.8837508539, + 4.11149749514 + ], + "libelle_d_acheminement": "CRESPIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11149749514, + 43.8837508539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a6de8bc43456d7ace7757db8a99912d891d4a94", + "fields": { + "code_commune_insee": "22195", + "nom_de_la_commune": "PLEUBIAN", + "code_postal": "22610", + "coordonnees_gps": [ + 48.8434804253, + -3.13340767618 + ], + "libelle_d_acheminement": "PLEUBIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13340767618, + 48.8434804253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a850d8e3ad06e3cdcca0453ae1f9355bebca4840", + "fields": { + "code_commune_insee": "30100", + "nom_de_la_commune": "CRUVIERS LASCOURS", + "code_postal": "30360", + "coordonnees_gps": [ + 44.0122958419, + 4.19264442539 + ], + "libelle_d_acheminement": "CRUVIERS LASCOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19264442539, + 44.0122958419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b221844f2130e449eb239bf4ac6c00a1b96d7e47", + "fields": { + "ligne_5": "PLOUBALAY", + "code_commune_insee": "22209", + "libelle_d_acheminement": "BEAUSSAIS SUR MER", + "code_postal": "22650", + "nom_de_la_commune": "BEAUSSAIS SUR MER", + "coordonnees_gps": [ + 48.5596688192, + -2.12838362694 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12838362694, + 48.5596688192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c278213775e67d15f990a5c7c5f75253e136324", + "fields": { + "code_commune_insee": "30103", + "nom_de_la_commune": "DOMAZAN", + "code_postal": "30390", + "coordonnees_gps": [ + 43.9372823194, + 4.6563619676 + ], + "libelle_d_acheminement": "DOMAZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6563619676, + 43.9372823194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e497a89be91c7f2d99eccc6ba75e5f8eeadcaf50", + "fields": { + "code_commune_insee": "22212", + "nom_de_la_commune": "PLOUEC DU TRIEUX", + "code_postal": "22260", + "coordonnees_gps": [ + 48.6722943477, + -3.18747531315 + ], + "libelle_d_acheminement": "PLOUEC DU TRIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.18747531315, + 48.6722943477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6b60f95477c0e43add7948ca62a388e1ffa569a", + "fields": { + "code_commune_insee": "30114", + "nom_de_la_commune": "FONTANES", + "code_postal": "30250", + "coordonnees_gps": [ + 43.8315622077, + 4.09323827432 + ], + "libelle_d_acheminement": "FONTANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09323827432, + 43.8315622077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10b2e211579fc80ca519e34bcef17bcfdc33a8a9", + "fields": { + "ligne_5": "LE QUESTEL", + "code_commune_insee": "22214", + "libelle_d_acheminement": "PLOUEZEC", + "code_postal": "22470", + "nom_de_la_commune": "PLOUEZEC", + "coordonnees_gps": [ + 48.7387813748, + -2.9791439557 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.9791439557, + 48.7387813748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad1979e6f767725ad3dc8e77cb7d7055a5ace889", + "fields": { + "code_commune_insee": "30115", + "nom_de_la_commune": "FONTARECHES", + "code_postal": "30580", + "coordonnees_gps": [ + 44.1163250744, + 4.43122211916 + ], + "libelle_d_acheminement": "FONTARECHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43122211916, + 44.1163250744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7972bc10259bdf1a99ecb654054890393b3cebfc", + "fields": { + "code_commune_insee": "22218", + "nom_de_la_commune": "PLOUGRESCANT", + "code_postal": "22820", + "coordonnees_gps": [ + 48.8389480714, + -3.24154914571 + ], + "libelle_d_acheminement": "PLOUGRESCANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.24154914571, + 48.8389480714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05cf801dfcdec3aca79ce9a82495375f7439e3d3", + "fields": { + "code_commune_insee": "30116", + "nom_de_la_commune": "FOURNES", + "code_postal": "30210", + "coordonnees_gps": [ + 43.9332827518, + 4.60385526319 + ], + "libelle_d_acheminement": "FOURNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60385526319, + 43.9332827518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d63d6b747e2934b4e0b8a038fa73982ae1be684", + "fields": { + "ligne_5": "PLOUGUENAST", + "code_commune_insee": "22219", + "libelle_d_acheminement": "PLOUGUENAST LANGAST", + "code_postal": "22150", + "nom_de_la_commune": "PLOUGUENAST LANGAST", + "coordonnees_gps": [ + 48.2772549866, + -2.71012681366 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.71012681366, + 48.2772549866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "264504a75e1a919f185fc3426d9d729e717e5580", + "fields": { + "code_commune_insee": "30120", + "nom_de_la_commune": "GAGNIERES", + "code_postal": "30160", + "coordonnees_gps": [ + 44.315356746, + 4.12257109543 + ], + "libelle_d_acheminement": "GAGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12257109543, + 44.315356746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faae63fe7f5c32cef42b5262cea9ca6519cd8ddd", + "fields": { + "code_commune_insee": "22220", + "nom_de_la_commune": "PLOUGUERNEVEL", + "code_postal": "22110", + "coordonnees_gps": [ + 48.2340717388, + -3.24711732443 + ], + "libelle_d_acheminement": "PLOUGUERNEVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.24711732443, + 48.2340717388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07bc7ecc798bc23a4126332003df86aafdb22033", + "fields": { + "code_commune_insee": "30124", + "nom_de_la_commune": "LE GARN", + "code_postal": "30760", + "coordonnees_gps": [ + 44.3130601565, + 4.46524537631 + ], + "libelle_d_acheminement": "LE GARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46524537631, + 44.3130601565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01843d5fcec036d3e34562c7e42a88db86c8987e", + "fields": { + "code_commune_insee": "22222", + "nom_de_la_commune": "PLOUHA", + "code_postal": "22580", + "coordonnees_gps": [ + 48.6822316529, + -2.93147403458 + ], + "libelle_d_acheminement": "PLOUHA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.93147403458, + 48.6822316529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e8b0c41d2ae47e6817d070273ee181877340994", + "fields": { + "code_commune_insee": "30125", + "nom_de_la_commune": "GARONS", + "code_postal": "30128", + "coordonnees_gps": [ + 43.7717357731, + 4.43848561872 + ], + "libelle_d_acheminement": "GARONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43848561872, + 43.7717357731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adfd6da5710f63408d62a2c9b88aa74f992c0372", + "fields": { + "code_commune_insee": "22223", + "nom_de_la_commune": "PLOUISY", + "code_postal": "22200", + "coordonnees_gps": [ + 48.5834889346, + -3.19153287341 + ], + "libelle_d_acheminement": "PLOUISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.19153287341, + 48.5834889346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3aaa6bbc85ace56befc8b868ccfba917d14ec88", + "fields": { + "code_commune_insee": "30126", + "nom_de_la_commune": "GARRIGUES STE EULALIE", + "code_postal": "30190", + "coordonnees_gps": [ + 43.9879024392, + 4.30556472108 + ], + "libelle_d_acheminement": "GARRIGUES STE EULALIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30556472108, + 43.9879024392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "772a9130f9456d29c6b3179fe1f0fc08e1364370", + "fields": { + "code_commune_insee": "22224", + "nom_de_la_commune": "PLOULEC H", + "code_postal": "22300", + "coordonnees_gps": [ + 48.7189901633, + -3.50164887821 + ], + "libelle_d_acheminement": "PLOULEC H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.50164887821, + 48.7189901633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77fb93b7c23fc8a919704e0d7cda707254846911", + "fields": { + "code_commune_insee": "30130", + "nom_de_la_commune": "GENOLHAC", + "code_postal": "30450", + "coordonnees_gps": [ + 44.3439338933, + 3.95189024113 + ], + "libelle_d_acheminement": "GENOLHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95189024113, + 44.3439338933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95839d1e87c6575a49b60833304321a0ef0310db", + "fields": { + "code_commune_insee": "22233", + "nom_de_la_commune": "PLOURIVO", + "code_postal": "22860", + "coordonnees_gps": [ + 48.7416286084, + -3.09320460347 + ], + "libelle_d_acheminement": "PLOURIVO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09320460347, + 48.7416286084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5fcd10551087d21649fa5019b47c0300ebd08d3", + "fields": { + "ligne_5": "PONT DE RASTEL", + "code_commune_insee": "30130", + "libelle_d_acheminement": "GENOLHAC", + "code_postal": "30450", + "nom_de_la_commune": "GENOLHAC", + "coordonnees_gps": [ + 44.3439338933, + 3.95189024113 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95189024113, + 44.3439338933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3d8b2972c27c5870b05c723b4990d3b0c706fb5", + "fields": { + "code_commune_insee": "22234", + "nom_de_la_commune": "PLOUVARA", + "code_postal": "22170", + "coordonnees_gps": [ + 48.4973028138, + -2.92552470033 + ], + "libelle_d_acheminement": "PLOUVARA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.92552470033, + 48.4973028138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f24f8055626bdc0438013a775b57f79996c1c453", + "fields": { + "ligne_5": "PORT CAMARGUE", + "code_commune_insee": "30133", + "libelle_d_acheminement": "LE GRAU DU ROI", + "code_postal": "30240", + "nom_de_la_commune": "LE GRAU DU ROI", + "coordonnees_gps": [ + 43.5072810882, + 4.16622948662 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16622948662, + 43.5072810882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da89f61ebaba5e7571049c2b5639d1bf284f1eb6", + "fields": { + "code_commune_insee": "22236", + "nom_de_la_commune": "PLUDUAL", + "code_postal": "22290", + "coordonnees_gps": [ + 48.6666296854, + -2.98679017544 + ], + "libelle_d_acheminement": "PLUDUAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.98679017544, + 48.6666296854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d5ba9304abbd247e4070103fb289920c6336a06", + "fields": { + "code_commune_insee": "30137", + "nom_de_la_commune": "LAMELOUZE", + "code_postal": "30110", + "coordonnees_gps": [ + 44.1973231084, + 3.96216462612 + ], + "libelle_d_acheminement": "LAMELOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96216462612, + 44.1973231084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8c751edcd3637df5a5aee7723eb516a8e3fe36a", + "fields": { + "code_commune_insee": "22237", + "nom_de_la_commune": "PLUDUNO", + "code_postal": "22130", + "coordonnees_gps": [ + 48.5232615716, + -2.28079325793 + ], + "libelle_d_acheminement": "PLUDUNO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28079325793, + 48.5232615716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a870b3b8c2b5e1d4151dc368cf3a25eb68e1d847", + "fields": { + "code_commune_insee": "30140", + "nom_de_la_commune": "LASALLE", + "code_postal": "30460", + "coordonnees_gps": [ + 44.0428979358, + 3.85182045128 + ], + "libelle_d_acheminement": "LASALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85182045128, + 44.0428979358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8883821146050fe89f4321923b48bd31eed76a44", + "fields": { + "code_commune_insee": "22244", + "nom_de_la_commune": "PLUSSULIEN", + "code_postal": "22320", + "coordonnees_gps": [ + 48.2785043926, + -3.0656896089 + ], + "libelle_d_acheminement": "PLUSSULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.0656896089, + 48.2785043926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "980418760d95caf951a9141687c7110d95c96618", + "fields": { + "code_commune_insee": "30141", + "nom_de_la_commune": "LAUDUN L ARDOISE", + "code_postal": "30290", + "coordonnees_gps": [ + 44.1029568271, + 4.66389513091 + ], + "libelle_d_acheminement": "LAUDUN L ARDOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66389513091, + 44.1029568271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea170d0b4e9a56b507e703ac51b59e7fb42fa8ca", + "fields": { + "code_commune_insee": "22246", + "nom_de_la_commune": "POMMERET", + "code_postal": "22120", + "coordonnees_gps": [ + 48.4585503252, + -2.62222031469 + ], + "libelle_d_acheminement": "POMMERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.62222031469, + 48.4585503252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "980d1cf67478f185240de7eb01925a7fd403a272", + "fields": { + "code_commune_insee": "30144", + "nom_de_la_commune": "LECQUES", + "code_postal": "30250", + "coordonnees_gps": [ + 43.8432239983, + 4.05620169328 + ], + "libelle_d_acheminement": "LECQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05620169328, + 43.8432239983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "924e738718109d45e5e487b1cd26d1b41790affe", + "fields": { + "code_commune_insee": "22259", + "nom_de_la_commune": "QUEVERT", + "code_postal": "22100", + "coordonnees_gps": [ + 48.463126899, + -2.08562877928 + ], + "libelle_d_acheminement": "QUEVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08562877928, + 48.463126899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3063a8998b66fb0874d32d69584938a56574ce58", + "fields": { + "code_commune_insee": "30148", + "nom_de_la_commune": "LIOUC", + "code_postal": "30260", + "coordonnees_gps": [ + 43.8897491816, + 3.98276323477 + ], + "libelle_d_acheminement": "LIOUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98276323477, + 43.8897491816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a52e743e597fbf90e0bb1266ec20197898424f9f", + "fields": { + "code_commune_insee": "22271", + "nom_de_la_commune": "ST ADRIEN", + "code_postal": "22390", + "coordonnees_gps": [ + 48.4898946488, + -3.13256978406 + ], + "libelle_d_acheminement": "ST ADRIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.13256978406, + 48.4898946488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d8856dc15aad94ae52870d8fd174c838c102602", + "fields": { + "code_commune_insee": "30153", + "nom_de_la_commune": "MALONS ET ELZE", + "code_postal": "30450", + "coordonnees_gps": [ + 44.4227680052, + 4.01865417625 + ], + "libelle_d_acheminement": "MALONS ET ELZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01865417625, + 44.4227680052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ea0110ca1e20c3fc3535f36e3c841a107c2d870", + "fields": { + "code_commune_insee": "22285", + "nom_de_la_commune": "ST CONNEC", + "code_postal": "22530", + "coordonnees_gps": [ + 48.1800139025, + -2.92593080092 + ], + "libelle_d_acheminement": "ST CONNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.92593080092, + 48.1800139025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce46f16411f03b951cdcd56a287e65e217283ef7", + "fields": { + "code_commune_insee": "30154", + "nom_de_la_commune": "MANDAGOUT", + "code_postal": "30120", + "coordonnees_gps": [ + 44.025220492, + 3.62733015524 + ], + "libelle_d_acheminement": "MANDAGOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62733015524, + 44.025220492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a238a8e3ba6b8f4758493f17a7e186fbe67fc682", + "fields": { + "code_commune_insee": "22289", + "nom_de_la_commune": "ST FIACRE", + "code_postal": "22720", + "coordonnees_gps": [ + 48.4553482894, + -3.05227274488 + ], + "libelle_d_acheminement": "ST FIACRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.05227274488, + 48.4553482894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b216251d80058a16324511f6e8ef0f3fca771cd6", + "fields": { + "code_commune_insee": "30161", + "nom_de_la_commune": "MASSANES", + "code_postal": "30350", + "coordonnees_gps": [ + 44.0223485002, + 4.11089321183 + ], + "libelle_d_acheminement": "MASSANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11089321183, + 44.0223485002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35d18f9558f9dc7883682834185ba3a9f1d35711", + "fields": { + "code_commune_insee": "22291", + "nom_de_la_commune": "ST GILDAS", + "code_postal": "22800", + "coordonnees_gps": [ + 48.4221536178, + -3.00656525522 + ], + "libelle_d_acheminement": "ST GILDAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.00656525522, + 48.4221536178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68b2fbd93c4fe4a7edca715b84f2b629dc83679f", + "fields": { + "code_commune_insee": "30166", + "nom_de_la_commune": "MEYNES", + "code_postal": "30840", + "coordonnees_gps": [ + 43.8773658406, + 4.55418222492 + ], + "libelle_d_acheminement": "MEYNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55418222492, + 43.8773658406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e6e76d71a07d05f8dec1ce711e908dfb17f992e", + "fields": { + "code_commune_insee": "22293", + "nom_de_la_commune": "ST GILLES LES BOIS", + "code_postal": "22290", + "coordonnees_gps": [ + 48.6570226311, + -3.09056968713 + ], + "libelle_d_acheminement": "ST GILLES LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09056968713, + 48.6570226311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52e409f5007cf78b159c4fb07eef50e0bfa1409a", + "fields": { + "code_commune_insee": "30177", + "nom_de_la_commune": "MONTEILS", + "code_postal": "30360", + "coordonnees_gps": [ + 44.0893365296, + 4.18124085766 + ], + "libelle_d_acheminement": "MONTEILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18124085766, + 44.0893365296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72339cd3cbb36a47a78dc2d8c9d41ed281b89a61", + "fields": { + "code_commune_insee": "22300", + "nom_de_la_commune": "ST HERVE", + "code_postal": "22460", + "coordonnees_gps": [ + 48.2737787659, + -2.81191749639 + ], + "libelle_d_acheminement": "ST HERVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.81191749639, + 48.2737787659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4d36baa97530a604a26da9389a964d22c6b5c07", + "fields": { + "code_commune_insee": "30192", + "nom_de_la_commune": "ORTHOUX SERIGNAC QUILHAN", + "code_postal": "30260", + "coordonnees_gps": [ + 43.8876882882, + 4.0431656403 + ], + "libelle_d_acheminement": "ORTHOUX SERIGNAC QUILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0431656403, + 43.8876882882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43d7410bb288dea0e4bc2ead66d4bcbb17ca26cf", + "fields": { + "code_commune_insee": "22306", + "nom_de_la_commune": "ST JUDOCE", + "code_postal": "22630", + "coordonnees_gps": [ + 48.3625267167, + -1.95432639485 + ], + "libelle_d_acheminement": "ST JUDOCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95432639485, + 48.3625267167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ccd5393c869fe953441cb59e57ceedd0cb98f9f", + "fields": { + "code_commune_insee": "30195", + "nom_de_la_commune": "PEYROLLES", + "code_postal": "30124", + "coordonnees_gps": [ + 44.1048102089, + 3.82926189297 + ], + "libelle_d_acheminement": "PEYROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82926189297, + 44.1048102089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d1f1a6c6c8b7d75d920d6477985b22c334a20a1", + "fields": { + "code_commune_insee": "22313", + "nom_de_la_commune": "ST MARTIN DES PRES", + "code_postal": "22320", + "coordonnees_gps": [ + 48.3055992864, + -2.96456859759 + ], + "libelle_d_acheminement": "ST MARTIN DES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96456859759, + 48.3055992864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71b80a419eb6165ddce889efb97c6e5155f9b928", + "fields": { + "code_commune_insee": "30200", + "nom_de_la_commune": "POMPIGNAN", + "code_postal": "30170", + "coordonnees_gps": [ + 43.8962167009, + 3.85986243613 + ], + "libelle_d_acheminement": "POMPIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85986243613, + 43.8962167009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da6bc70f153f4439e288954d3bd2fbc396a0d94d", + "fields": { + "code_commune_insee": "22317", + "nom_de_la_commune": "ST MELOIR DES BOIS", + "code_postal": "22980", + "coordonnees_gps": [ + 48.4415973403, + -2.25735689122 + ], + "libelle_d_acheminement": "ST MELOIR DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.25735689122, + 48.4415973403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "512ef1c2c3cdb73637514f41d88a480664ef5d2c", + "fields": { + "code_commune_insee": "30205", + "nom_de_la_commune": "POUGNADORESSE", + "code_postal": "30330", + "coordonnees_gps": [ + 44.0910913985, + 4.50932689497 + ], + "libelle_d_acheminement": "POUGNADORESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50932689497, + 44.0910913985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0d52bb2a92787df662ac31f9169dd083ba37224", + "fields": { + "code_commune_insee": "22320", + "nom_de_la_commune": "ST NICODEME", + "code_postal": "22160", + "coordonnees_gps": [ + 48.3537346868, + -3.33942059612 + ], + "libelle_d_acheminement": "ST NICODEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33942059612, + 48.3537346868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c401fd61b307f27551127bcb108f6fbaf29299e0", + "fields": { + "code_commune_insee": "30209", + "nom_de_la_commune": "PUJAUT", + "code_postal": "30131", + "coordonnees_gps": [ + 43.9993699011, + 4.76481099943 + ], + "libelle_d_acheminement": "PUJAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76481099943, + 43.9993699011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a253de52e6ed097994c62b8eceae616c929426ce", + "fields": { + "code_commune_insee": "22339", + "nom_de_la_commune": "TADEN", + "code_postal": "22100", + "coordonnees_gps": [ + 48.4879367095, + -2.05402856575 + ], + "libelle_d_acheminement": "TADEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05402856575, + 48.4879367095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2c630bf694bedabc83a52b24a3131e9a1f847c2", + "fields": { + "code_commune_insee": "30210", + "nom_de_la_commune": "QUISSAC", + "code_postal": "30260", + "coordonnees_gps": [ + 43.9179934684, + 3.99722251825 + ], + "libelle_d_acheminement": "QUISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99722251825, + 43.9179934684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "222427395f1772cc1ccdbba9fbd898a1fdd8d9de", + "fields": { + "code_commune_insee": "22340", + "nom_de_la_commune": "TONQUEDEC", + "code_postal": "22140", + "coordonnees_gps": [ + 48.6751108479, + -3.40013620109 + ], + "libelle_d_acheminement": "TONQUEDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.40013620109, + 48.6751108479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a145b8cc9f10d1c21b1dc8d97ad5ac670e46231", + "fields": { + "code_commune_insee": "30215", + "nom_de_la_commune": "RIVIERES", + "code_postal": "30430", + "coordonnees_gps": [ + 44.2144809997, + 4.28853303845 + ], + "libelle_d_acheminement": "RIVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28853303845, + 44.2144809997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "474f29a827101d4decad4d399daa3b6fbb391d56", + "fields": { + "code_commune_insee": "22342", + "nom_de_la_commune": "TREBEDAN", + "code_postal": "22980", + "coordonnees_gps": [ + 48.4057639956, + -2.16287110256 + ], + "libelle_d_acheminement": "TREBEDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.16287110256, + 48.4057639956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7cc056b8467b0c0d48c477ff83968e229e992eb", + "fields": { + "code_commune_insee": "30231", + "nom_de_la_commune": "ST ANDRE DE VALBORGNE", + "code_postal": "30940", + "coordonnees_gps": [ + 44.1476476774, + 3.68551072033 + ], + "libelle_d_acheminement": "ST ANDRE DE VALBORGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68551072033, + 44.1476476774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d13ff1139f8a8fef6cd9c01345cbedbaba08a6b5", + "fields": { + "code_commune_insee": "22346", + "nom_de_la_commune": "TREDANIEL", + "code_postal": "22510", + "coordonnees_gps": [ + 48.346590108, + -2.6057121928 + ], + "libelle_d_acheminement": "TREDANIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.6057121928, + 48.346590108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99cae6de53baf8fdde79f97fcf3c68a5710a3cb1", + "fields": { + "code_commune_insee": "30236", + "nom_de_la_commune": "ST BONNET DE SALENDRINQUE", + "code_postal": "30460", + "coordonnees_gps": [ + 44.0361215826, + 3.8716582524 + ], + "libelle_d_acheminement": "ST BONNET DE SALENDRINQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8716582524, + 44.0361215826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a23f37cdb9b74f8f53606604ad642e3a1df0add7", + "fields": { + "code_commune_insee": "22356", + "nom_de_la_commune": "TREGOMEUR", + "code_postal": "22590", + "coordonnees_gps": [ + 48.5678577171, + -2.88321807622 + ], + "libelle_d_acheminement": "TREGOMEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.88321807622, + 48.5678577171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c751b7de625adcf29ec4ab4a30f8d0f750cfa40", + "fields": { + "code_commune_insee": "30243", + "nom_de_la_commune": "ST CHRISTOL LEZ ALES", + "code_postal": "30380", + "coordonnees_gps": [ + 44.0837854635, + 4.0766500677 + ], + "libelle_d_acheminement": "ST CHRISTOL LEZ ALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0766500677, + 44.0837854635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79c2a3a635c2d6c4392105162aea0fdb120116c8", + "fields": { + "ligne_5": "CREAC H TREGUEUX", + "code_commune_insee": "22360", + "libelle_d_acheminement": "TREGUEUX", + "code_postal": "22950", + "nom_de_la_commune": "TREGUEUX", + "coordonnees_gps": [ + 48.480075769, + -2.74506421541 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.74506421541, + 48.480075769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5024631d15d47ec1fc10b04ef7852374def051a7", + "fields": { + "code_commune_insee": "30246", + "nom_de_la_commune": "STE CROIX DE CADERLE", + "code_postal": "30460", + "coordonnees_gps": [ + 44.0681849372, + 3.87021747137 + ], + "libelle_d_acheminement": "STE CROIX DE CADERLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87021747137, + 44.0681849372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efbdc10261a609f1f93b327ccbeae0a992482c4c", + "fields": { + "code_commune_insee": "22362", + "nom_de_la_commune": "TREGUIER", + "code_postal": "22220", + "coordonnees_gps": [ + 48.7850465816, + -3.23178776538 + ], + "libelle_d_acheminement": "TREGUIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.23178776538, + 48.7850465816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc1f07fd60939dbf78811f7541375a5307e9262f", + "fields": { + "code_commune_insee": "30257", + "nom_de_la_commune": "ST GERVASY", + "code_postal": "30320", + "coordonnees_gps": [ + 43.8745230811, + 4.46960919044 + ], + "libelle_d_acheminement": "ST GERVASY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46960919044, + 43.8745230811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "244ed095fe98b2d56d4d5720f67609e03fe24176", + "fields": { + "code_commune_insee": "22369", + "nom_de_la_commune": "TREMEUR", + "code_postal": "22250", + "coordonnees_gps": [ + 48.351008857, + -2.26842512279 + ], + "libelle_d_acheminement": "TREMEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.26842512279, + 48.351008857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4907c95d832fec7742ece8d4a26fe49cd4101f43", + "fields": { + "code_commune_insee": "30260", + "nom_de_la_commune": "ST HILAIRE D OZILHAN", + "code_postal": "30210", + "coordonnees_gps": [ + 43.9723003096, + 4.59999456727 + ], + "libelle_d_acheminement": "ST HILAIRE D OZILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59999456727, + 43.9723003096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98f2ae070fa5e4f48a03135ddd1ed035e2b608d0", + "fields": { + "code_commune_insee": "22372", + "nom_de_la_commune": "TREMUSON", + "code_postal": "22440", + "coordonnees_gps": [ + 48.5248190208, + -2.84790774522 + ], + "libelle_d_acheminement": "TREMUSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84790774522, + 48.5248190208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "530d2150e3cba10ea7dd4e8c004aa40ab836adfa", + "fields": { + "code_commune_insee": "30264", + "nom_de_la_commune": "ST JEAN DE CEYRARGUES", + "code_postal": "30360", + "coordonnees_gps": [ + 44.0547404287, + 4.22631388818 + ], + "libelle_d_acheminement": "ST JEAN DE CEYRARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22631388818, + 44.0547404287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77675e6ce5f8ae5df4b02abee4591b854b0c6a4c", + "fields": { + "code_commune_insee": "22373", + "nom_de_la_commune": "TREOGAN", + "code_postal": "22340", + "coordonnees_gps": [ + 48.1867140981, + -3.53008460226 + ], + "libelle_d_acheminement": "TREOGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.53008460226, + 48.1867140981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "621ce273870da1da71513ce0d33524d6cd1d6667", + "fields": { + "code_commune_insee": "30266", + "nom_de_la_commune": "ST JEAN DE MARUEJOLS ET AVEJAN", + "code_postal": "30430", + "coordonnees_gps": [ + 44.2671009093, + 4.30048021617 + ], + "libelle_d_acheminement": "ST JEAN DE MARUEJOLS ET AVEJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30048021617, + 44.2671009093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5524e9ece2a11255a465d56d22984a5e69b548e", + "fields": { + "code_commune_insee": "22379", + "nom_de_la_commune": "TREVOU TREGUIGNEC", + "code_postal": "22660", + "coordonnees_gps": [ + 48.8121355763, + -3.34499178706 + ], + "libelle_d_acheminement": "TREVOU TREGUIGNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.34499178706, + 48.8121355763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35b389c5884818b4f55b88f3e9cecb12e61730ec", + "fields": { + "code_commune_insee": "30272", + "nom_de_la_commune": "ST JULIEN DE LA NEF", + "code_postal": "30440", + "coordonnees_gps": [ + 43.9627238994, + 3.68479655301 + ], + "libelle_d_acheminement": "ST JULIEN DE LA NEF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68479655301, + 43.9627238994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "322ee1c409e11e82e4ed007ff32c7a55d98217b3", + "fields": { + "code_commune_insee": "23005", + "nom_de_la_commune": "ARFEUILLE CHATAIN", + "code_postal": "23700", + "coordonnees_gps": [ + 46.0604129524, + 2.43471824628 + ], + "libelle_d_acheminement": "ARFEUILLE CHATAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43471824628, + 46.0604129524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48ed8d15d38855c9ca42197abe5a9e3074bc99b2", + "fields": { + "code_commune_insee": "30274", + "nom_de_la_commune": "ST JULIEN LES ROSIERS", + "code_postal": "30340", + "coordonnees_gps": [ + 44.1899717344, + 4.10039832397 + ], + "libelle_d_acheminement": "ST JULIEN LES ROSIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10039832397, + 44.1899717344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8812224b495474af1d02971b27fd8bf4365b702c", + "fields": { + "code_commune_insee": "23009", + "nom_de_la_commune": "AUGE", + "code_postal": "23170", + "coordonnees_gps": [ + 46.2367809239, + 2.33256543891 + ], + "libelle_d_acheminement": "AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33256543891, + 46.2367809239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a304cd47281948c0d2e2a45b37ae3e466f6482b", + "fields": { + "code_commune_insee": "30278", + "nom_de_la_commune": "ST LAURENT DES ARBRES", + "code_postal": "30126", + "coordonnees_gps": [ + 44.0556997374, + 4.69243062934 + ], + "libelle_d_acheminement": "ST LAURENT DES ARBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69243062934, + 44.0556997374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09237262116357e8245d89a16d29a760aee85faf", + "fields": { + "code_commune_insee": "23010", + "nom_de_la_commune": "AUGERES", + "code_postal": "23210", + "coordonnees_gps": [ + 46.0799619042, + 1.72763541074 + ], + "libelle_d_acheminement": "AUGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72763541074, + 46.0799619042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0353ada686231668e27fdd4c50cdcfdb5df77c7a", + "fields": { + "code_commune_insee": "30283", + "nom_de_la_commune": "ST MARTIAL", + "code_postal": "30440", + "coordonnees_gps": [ + 44.0382099804, + 3.74399705326 + ], + "libelle_d_acheminement": "ST MARTIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74399705326, + 44.0382099804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "510778debdac0f4903399f1b6db9a4e4da6072aa", + "fields": { + "code_commune_insee": "23012", + "nom_de_la_commune": "AURIAT", + "code_postal": "23400", + "coordonnees_gps": [ + 45.8709814148, + 1.63389938351 + ], + "libelle_d_acheminement": "AURIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63389938351, + 45.8709814148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a080726a4cfa764333bce9c9cd677af894da5331", + "fields": { + "code_commune_insee": "30288", + "nom_de_la_commune": "ST NAZAIRE", + "code_postal": "30200", + "coordonnees_gps": [ + 44.2000873648, + 4.62191805958 + ], + "libelle_d_acheminement": "ST NAZAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62191805958, + 44.2000873648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88cd2aa354c9db8f6aedd1b56c4559c5a550b3d1", + "fields": { + "code_commune_insee": "23019", + "nom_de_la_commune": "BEISSAT", + "code_postal": "23260", + "coordonnees_gps": [ + 45.7647646424, + 2.28346440159 + ], + "libelle_d_acheminement": "BEISSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28346440159, + 45.7647646424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed72345a1537853b540ccf73a9d5e84fa5663b90", + "fields": { + "code_commune_insee": "30313", + "nom_de_la_commune": "SAUZET", + "code_postal": "30190", + "coordonnees_gps": [ + 43.962257461, + 4.21739461052 + ], + "libelle_d_acheminement": "SAUZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21739461052, + 43.962257461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b67220a08b3f3b0987855f38214747814b7fad88", + "fields": { + "code_commune_insee": "23020", + "nom_de_la_commune": "BELLEGARDE EN MARCHE", + "code_postal": "23190", + "coordonnees_gps": [ + 45.9815413082, + 2.29291200261 + ], + "libelle_d_acheminement": "BELLEGARDE EN MARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29291200261, + 45.9815413082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08e31d2644a669110efa3009e7183b33ef33b90a", + "fields": { + "code_commune_insee": "30314", + "nom_de_la_commune": "SAVIGNARGUES", + "code_postal": "30350", + "coordonnees_gps": [ + 43.9664958937, + 4.0802622327 + ], + "libelle_d_acheminement": "SAVIGNARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0802622327, + 43.9664958937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0f4ebfda20c6f76c4c19d2e8f845d27c678ad10", + "fields": { + "code_commune_insee": "23021", + "nom_de_la_commune": "BENEVENT L ABBAYE", + "code_postal": "23210", + "coordonnees_gps": [ + 46.1177051494, + 1.62940216696 + ], + "libelle_d_acheminement": "BENEVENT L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62940216696, + 46.1177051494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93dbc95faf890b143ccdf824889c76ce8f58a176", + "fields": { + "code_commune_insee": "30319", + "nom_de_la_commune": "SERVIERS ET LABAUME", + "code_postal": "30700", + "coordonnees_gps": [ + 44.0381898089, + 4.3433728744 + ], + "libelle_d_acheminement": "SERVIERS ET LABAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3433728744, + 44.0381898089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bce2927dc51aa9bd4ba47d16eaf0cd0106308b3", + "fields": { + "code_commune_insee": "23028", + "nom_de_la_commune": "BOSROGER", + "code_postal": "23200", + "coordonnees_gps": [ + 46.0038432661, + 2.25085603328 + ], + "libelle_d_acheminement": "BOSROGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25085603328, + 46.0038432661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0138cfe8740111dc75f926667bd91fb69ce7953f", + "fields": { + "code_commune_insee": "30320", + "nom_de_la_commune": "SEYNES", + "code_postal": "30580", + "coordonnees_gps": [ + 44.1120676608, + 4.29388522611 + ], + "libelle_d_acheminement": "SEYNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29388522611, + 44.1120676608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d38fee7b4332cbad286c539ff2a789f30731be7", + "fields": { + "code_commune_insee": "23031", + "nom_de_la_commune": "BOUSSAC", + "code_postal": "23600", + "coordonnees_gps": [ + 46.3477988383, + 2.2230835624 + ], + "libelle_d_acheminement": "BOUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2230835624, + 46.3477988383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b4f634b86445364756a711e4768f5cdbd5e3e9e", + "fields": { + "code_commune_insee": "30324", + "nom_de_la_commune": "SOUVIGNARGUES", + "code_postal": "30250", + "coordonnees_gps": [ + 43.8195872223, + 4.13553347163 + ], + "libelle_d_acheminement": "SOUVIGNARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13553347163, + 43.8195872223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba1abd6cd89eb8730269bc603e62daeb35da4f26", + "fields": { + "code_commune_insee": "23034", + "nom_de_la_commune": "BROUSSE", + "code_postal": "23700", + "coordonnees_gps": [ + 45.9721485733, + 2.45298546881 + ], + "libelle_d_acheminement": "BROUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45298546881, + 45.9721485733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71ba69627d3d0c6f2101188298a1c3bea3632dbb", + "fields": { + "ligne_5": "PONT D HERAULT", + "code_commune_insee": "30325", + "libelle_d_acheminement": "SUMENE", + "code_postal": "30440", + "nom_de_la_commune": "SUMENE", + "coordonnees_gps": [ + 43.9885776737, + 3.73217518553 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73217518553, + 43.9885776737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37c64d2115b1fab223cad4cf8f89194e7f282936", + "fields": { + "code_commune_insee": "23037", + "nom_de_la_commune": "BUSSIERE NOUVELLE", + "code_postal": "23700", + "coordonnees_gps": [ + 46.0136722652, + 2.41956472448 + ], + "libelle_d_acheminement": "BUSSIERE NOUVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41956472448, + 46.0136722652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0679d442ecb454b9fb425ee05cfc302434ced8a9", + "fields": { + "code_commune_insee": "30330", + "nom_de_la_commune": "TORNAC", + "code_postal": "30140", + "coordonnees_gps": [ + 44.0186321006, + 3.98505349689 + ], + "libelle_d_acheminement": "TORNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98505349689, + 44.0186321006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6af32de2a53117c9127425849339e9eb3b3c441b", + "fields": { + "code_commune_insee": "23041", + "nom_de_la_commune": "LA CELLETTE", + "code_postal": "23350", + "coordonnees_gps": [ + 46.4013328197, + 2.00952314466 + ], + "libelle_d_acheminement": "LA CELLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00952314466, + 46.4013328197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7550416231d84d7ff22d203f6cf775cac1227ee0", + "fields": { + "code_commune_insee": "30333", + "nom_de_la_commune": "UCHAUD", + "code_postal": "30620", + "coordonnees_gps": [ + 43.7590865488, + 4.26505748262 + ], + "libelle_d_acheminement": "UCHAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26505748262, + 43.7590865488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e797780858663d48346a73646294f0656920669a", + "fields": { + "code_commune_insee": "23056", + "nom_de_la_commune": "CHATELUS LE MARCHEIX", + "code_postal": "23430", + "coordonnees_gps": [ + 46.0069474646, + 1.62547774124 + ], + "libelle_d_acheminement": "CHATELUS LE MARCHEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62547774124, + 46.0069474646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71c98ba7b961596c55fd2dd1177e359de9830036", + "fields": { + "code_commune_insee": "30338", + "nom_de_la_commune": "VALLERARGUES", + "code_postal": "30580", + "coordonnees_gps": [ + 44.1268462189, + 4.35725202722 + ], + "libelle_d_acheminement": "VALLERARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35725202722, + 44.1268462189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7db35aedcee361d18bbba841865c0e993cc83aa", + "fields": { + "code_commune_insee": "23065", + "nom_de_la_commune": "COLONDANNES", + "code_postal": "23800", + "coordonnees_gps": [ + 46.288107572, + 1.61692069958 + ], + "libelle_d_acheminement": "COLONDANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61692069958, + 46.288107572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa55642031e914e8da4005e651f8eb4a321886f2", + "fields": { + "ligne_5": "MONTCALM", + "code_commune_insee": "30341", + "libelle_d_acheminement": "VAUVERT", + "code_postal": "30600", + "nom_de_la_commune": "VAUVERT", + "coordonnees_gps": [ + 43.6258468531, + 4.30597093294 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30597093294, + 43.6258468531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81bec493ee1d404e87d56ed9967ef6a0ac425f5a", + "fields": { + "code_commune_insee": "23072", + "nom_de_la_commune": "DOMEYROT", + "code_postal": "23140", + "coordonnees_gps": [ + 46.2491823013, + 2.14721070641 + ], + "libelle_d_acheminement": "DOMEYROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14721070641, + 46.2491823013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d23310d52d1abd58a7041d85b35a3e5e7f7afa4", + "fields": { + "code_commune_insee": "30343", + "nom_de_la_commune": "VERFEUIL", + "code_postal": "30630", + "coordonnees_gps": [ + 44.1658255744, + 4.44866506669 + ], + "libelle_d_acheminement": "VERFEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44866506669, + 44.1658255744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62add853914606d3c42cb3db9321b47c298f0c51", + "fields": { + "code_commune_insee": "23075", + "nom_de_la_commune": "DUN LE PALESTEL", + "code_postal": "23800", + "coordonnees_gps": [ + 46.3032821577, + 1.66218300041 + ], + "libelle_d_acheminement": "DUN LE PALESTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66218300041, + 46.3032821577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92b2639f8a96d2ae23cd7c1d1a9bc7c3c9cfcd78", + "fields": { + "code_commune_insee": "30349", + "nom_de_la_commune": "VIC LE FESQ", + "code_postal": "30260", + "coordonnees_gps": [ + 43.8679462707, + 4.07716172546 + ], + "libelle_d_acheminement": "VIC LE FESQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07716172546, + 43.8679462707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6386fbb35e37b42b5557d47b41fe3875e92a2ef0", + "fields": { + "code_commune_insee": "23076", + "nom_de_la_commune": "EVAUX LES BAINS", + "code_postal": "23110", + "coordonnees_gps": [ + 46.168925905, + 2.49933110004 + ], + "libelle_d_acheminement": "EVAUX LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49933110004, + 46.168925905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9be4a3e6a7f6498c808503be304734ba4eea2cc1", + "fields": { + "code_commune_insee": "30351", + "nom_de_la_commune": "VILLENEUVE LES AVIGNON", + "code_postal": "30400", + "coordonnees_gps": [ + 43.9771673582, + 4.79466040665 + ], + "libelle_d_acheminement": "VILLENEUVE LES AVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79466040665, + 43.9771673582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "794105b12794a8a3d839bca2800b3c6ea6ecb36a", + "fields": { + "code_commune_insee": "23080", + "nom_de_la_commune": "FENIERS", + "code_postal": "23100", + "coordonnees_gps": [ + 45.7440562611, + 2.12615175724 + ], + "libelle_d_acheminement": "FENIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12615175724, + 45.7440562611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a444f5a47e33fc46243c3432770faa309cc1ab9", + "fields": { + "code_commune_insee": "30352", + "nom_de_la_commune": "VILLEVIEILLE", + "code_postal": "30250", + "coordonnees_gps": [ + 43.7960985026, + 4.10074898591 + ], + "libelle_d_acheminement": "VILLEVIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10074898591, + 43.7960985026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed8825aef6161aa144218223d88fd5e577a92830", + "fields": { + "code_commune_insee": "23082", + "nom_de_la_commune": "FLEURAT", + "code_postal": "23320", + "coordonnees_gps": [ + 46.2324388485, + 1.68303685298 + ], + "libelle_d_acheminement": "FLEURAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68303685298, + 46.2324388485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dd784730fdb437aa95b77c024eebc6818f84e50", + "fields": { + "code_commune_insee": "31002", + "nom_de_la_commune": "AIGNES", + "code_postal": "31550", + "coordonnees_gps": [ + 43.3349232679, + 1.58645774821 + ], + "libelle_d_acheminement": "AIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58645774821, + 43.3349232679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac49a2081dbf9944bcc5becc89e35bf639b26ae6", + "fields": { + "code_commune_insee": "23087", + "nom_de_la_commune": "FRESSELINES", + "code_postal": "23450", + "coordonnees_gps": [ + 46.3778373605, + 1.69897316161 + ], + "libelle_d_acheminement": "FRESSELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69897316161, + 46.3778373605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0113bd36d367989785a49372050fad9c20b7c3e6", + "fields": { + "code_commune_insee": "31015", + "nom_de_la_commune": "ARGUT DESSOUS", + "code_postal": "31440", + "coordonnees_gps": [ + 42.8924379244, + 0.715516624447 + ], + "libelle_d_acheminement": "ARGUT DESSOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.715516624447, + 42.8924379244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48b204ce3b8a82d677473e73235162a78c214d5b", + "fields": { + "ligne_5": "LES FORGES", + "code_commune_insee": "23093", + "libelle_d_acheminement": "GOUZON", + "code_postal": "23230", + "nom_de_la_commune": "GOUZON", + "coordonnees_gps": [ + 46.1872230665, + 2.23078389232 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23078389232, + 46.1872230665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e84beee812509ad82ec67084e9b359e129d19141", + "fields": { + "code_commune_insee": "31029", + "nom_de_la_commune": "AURIN", + "code_postal": "31570", + "coordonnees_gps": [ + 43.5351953574, + 1.68120009719 + ], + "libelle_d_acheminement": "AURIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68120009719, + 43.5351953574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9927ca3934f1b668a208fdb7cecbdb1f98c665e4", + "fields": { + "code_commune_insee": "23096", + "nom_de_la_commune": "GUERET", + "code_postal": "23000", + "coordonnees_gps": [ + 46.1632121428, + 1.87078672735 + ], + "libelle_d_acheminement": "GUERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87078672735, + 46.1632121428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c25c1a804cf4b3028e65e7796d50a29ec1ea410", + "fields": { + "code_commune_insee": "31040", + "nom_de_la_commune": "BACHOS", + "code_postal": "31440", + "coordonnees_gps": [ + 42.8985486101, + 0.604716422837 + ], + "libelle_d_acheminement": "BACHOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.604716422837, + 42.8985486101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ddbeeb44a1d7175bdd4d979a7bbde1341620ab5", + "fields": { + "ligne_5": "LINARD", + "code_commune_insee": "23109", + "libelle_d_acheminement": "LINARD MALVAL", + "code_postal": "23220", + "nom_de_la_commune": "LINARD MALVAL", + "coordonnees_gps": [ + 46.3666691845, + 1.87647741216 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87647741216, + 46.3666691845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "854b88e55ac2b5f46240092a5e177a369abe405f", + "fields": { + "code_commune_insee": "31042", + "nom_de_la_commune": "BAGNERES DE LUCHON", + "code_postal": "31110", + "coordonnees_gps": [ + 42.736147731, + 0.626640395614 + ], + "libelle_d_acheminement": "BAGNERES DE LUCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.626640395614, + 42.736147731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "023c80df0db6d2ae8ffa763955c42c887fa6033d", + "fields": { + "code_commune_insee": "23111", + "nom_de_la_commune": "LIZIERES", + "code_postal": "23240", + "coordonnees_gps": [ + 46.2087390078, + 1.57238796935 + ], + "libelle_d_acheminement": "LIZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57238796935, + 46.2087390078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c91d5c8af2f0e301f2c2bb42e14c7069e4203466", + "fields": { + "code_commune_insee": "31046", + "nom_de_la_commune": "BAREN", + "code_postal": "31440", + "coordonnees_gps": [ + 42.8676983193, + 0.634971126368 + ], + "libelle_d_acheminement": "BAREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.634971126368, + 42.8676983193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06006a5efbc8d43dfa3dcf575da7e7113b3746d9", + "fields": { + "code_commune_insee": "23118", + "nom_de_la_commune": "MAISONNISSES", + "code_postal": "23150", + "coordonnees_gps": [ + 46.0608263373, + 1.90309804931 + ], + "libelle_d_acheminement": "MAISONNISSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90309804931, + 46.0608263373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1ebc55fca157be1dd8150506ee480786479fc53", + "fields": { + "code_commune_insee": "31050", + "nom_de_la_commune": "BEAUCHALOT", + "code_postal": "31360", + "coordonnees_gps": [ + 43.1144562142, + 0.869747129853 + ], + "libelle_d_acheminement": "BEAUCHALOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.869747129853, + 43.1144562142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54c4e0cae4e82ffbba633a391d8b8d180dd6ef8c", + "fields": { + "code_commune_insee": "23136", + "nom_de_la_commune": "MORTROUX", + "code_postal": "23220", + "coordonnees_gps": [ + 46.3956198653, + 1.90748729651 + ], + "libelle_d_acheminement": "MORTROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90748729651, + 46.3956198653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aef70c81b1e796b7e04a2d567709837c663d01f7", + "fields": { + "code_commune_insee": "31051", + "nom_de_la_commune": "BEAUFORT", + "code_postal": "31370", + "coordonnees_gps": [ + 43.4548618098, + 1.10650961074 + ], + "libelle_d_acheminement": "BEAUFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10650961074, + 43.4548618098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04889db19ed10f63c7093297a6de0e1aa5f77c23", + "fields": { + "code_commune_insee": "23140", + "nom_de_la_commune": "MOUTIER ROZEILLE", + "code_postal": "23200", + "coordonnees_gps": [ + 45.9183117798, + 2.19838575108 + ], + "libelle_d_acheminement": "MOUTIER ROZEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19838575108, + 45.9183117798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1ff9042d3a3772d7f95aae5ae3febe6d3584e45", + "fields": { + "code_commune_insee": "31052", + "nom_de_la_commune": "BEAUMONT SUR LEZE", + "code_postal": "31870", + "coordonnees_gps": [ + 43.3798440302, + 1.35610208847 + ], + "libelle_d_acheminement": "BEAUMONT SUR LEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35610208847, + 43.3798440302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c363450f9f7d7920bc6215dd05b8e4db79f7385", + "fields": { + "code_commune_insee": "23146", + "nom_de_la_commune": "NOUZERINES", + "code_postal": "23600", + "coordonnees_gps": [ + 46.3891832834, + 2.11086671444 + ], + "libelle_d_acheminement": "NOUZERINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11086671444, + 46.3891832834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd5b6bb304440fe088e6685f7a450550b01c84b1", + "fields": { + "code_commune_insee": "31054", + "nom_de_la_commune": "BEAUTEVILLE", + "code_postal": "31290", + "coordonnees_gps": [ + 43.349128147, + 1.73283349188 + ], + "libelle_d_acheminement": "BEAUTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73283349188, + 43.349128147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d62447adec636d01a0f3c115559c616dc9fe2888", + "fields": { + "code_commune_insee": "23148", + "nom_de_la_commune": "NOUZIERS", + "code_postal": "23350", + "coordonnees_gps": [ + 46.4236220738, + 1.96158183611 + ], + "libelle_d_acheminement": "NOUZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96158183611, + 46.4236220738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20160153f0575b1435fdf2a4f072f3e87333a629", + "fields": { + "code_commune_insee": "31056", + "nom_de_la_commune": "BEAUZELLE", + "code_postal": "31700", + "coordonnees_gps": [ + 43.667783714, + 1.37408906279 + ], + "libelle_d_acheminement": "BEAUZELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37408906279, + 43.667783714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c02b8c1ec7421782e823510e13457ad010db563d", + "fields": { + "ligne_5": "RIMONDEIX", + "code_commune_insee": "23149", + "libelle_d_acheminement": "PARSAC RIMONDEIX", + "code_postal": "23140", + "nom_de_la_commune": "PARSAC RIMONDEIX", + "coordonnees_gps": [ + 46.1973815424, + 2.1397496521 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1397496521, + 46.1973815424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed664350bd6da73c50208e8ba9e2fc09d688f649", + "fields": { + "code_commune_insee": "31060", + "nom_de_la_commune": "BELESTA EN LAURAGAIS", + "code_postal": "31540", + "coordonnees_gps": [ + 43.4395844562, + 1.83164556128 + ], + "libelle_d_acheminement": "BELESTA EN LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83164556128, + 43.4395844562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "423ba5856a02e02e2e50c07ed7cee95d481e1478", + "fields": { + "code_commune_insee": "23152", + "nom_de_la_commune": "PIERREFITTE", + "code_postal": "23130", + "coordonnees_gps": [ + 46.1520867476, + 2.23278629425 + ], + "libelle_d_acheminement": "PIERREFITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23278629425, + 46.1520867476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90490519dd115793c4f7ef46761f748341f008bd", + "fields": { + "code_commune_insee": "31067", + "nom_de_la_commune": "BEZINS GARRAUX", + "code_postal": "31440", + "coordonnees_gps": [ + 42.9389029798, + 0.702058330112 + ], + "libelle_d_acheminement": "BEZINS GARRAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.702058330112, + 42.9389029798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce6a6a8123f9d08a5d09ba69a8eea634e0c913be", + "fields": { + "code_commune_insee": "23154", + "nom_de_la_commune": "PIONNAT", + "code_postal": "23140", + "coordonnees_gps": [ + 46.1700387523, + 2.02653941278 + ], + "libelle_d_acheminement": "PIONNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02653941278, + 46.1700387523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2a675f09834b31945eaa1c2b3e9ad440e6d3265", + "fields": { + "code_commune_insee": "31079", + "nom_de_la_commune": "BOULOC", + "code_postal": "31620", + "coordonnees_gps": [ + 43.7958003847, + 1.4191891401 + ], + "libelle_d_acheminement": "BOULOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4191891401, + 43.7958003847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf345e8b664a3ab42ff420a22bece2a09eda537f", + "fields": { + "code_commune_insee": "23157", + "nom_de_la_commune": "LA POUGE", + "code_postal": "23250", + "coordonnees_gps": [ + 45.9737443345, + 1.9401973026 + ], + "libelle_d_acheminement": "LA POUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9401973026, + 45.9737443345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9c2b379952731e40edd07e1b01238eaa0b6e108", + "fields": { + "code_commune_insee": "31082", + "nom_de_la_commune": "BOURG ST BERNARD", + "code_postal": "31570", + "coordonnees_gps": [ + 43.6062435509, + 1.69878224324 + ], + "libelle_d_acheminement": "BOURG ST BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69878224324, + 43.6062435509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ff45de0feb1dd15fe0e5ee22091bf8ce219c716", + "fields": { + "code_commune_insee": "23160", + "nom_de_la_commune": "RETERRE", + "code_postal": "23110", + "coordonnees_gps": [ + 46.1065631303, + 2.46758526788 + ], + "libelle_d_acheminement": "RETERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46758526788, + 46.1065631303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d69a7c3c1245f45e9d372a9d595cbf5e150cce5", + "fields": { + "code_commune_insee": "31096", + "nom_de_la_commune": "CABANAC SEGUENVILLE", + "code_postal": "31480", + "coordonnees_gps": [ + 43.791486988, + 1.01984051649 + ], + "libelle_d_acheminement": "CABANAC SEGUENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01984051649, + 43.791486988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cef2ce557145110853f47d49a7fc292b45a80ab4", + "fields": { + "code_commune_insee": "23174", + "nom_de_la_commune": "SOUMANS", + "code_postal": "23600", + "coordonnees_gps": [ + 46.3041417254, + 2.33116198481 + ], + "libelle_d_acheminement": "SOUMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33116198481, + 46.3041417254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a383ed6adf3f035c2820766b2acb4ff751ad6c6", + "fields": { + "code_commune_insee": "31097", + "nom_de_la_commune": "LE CABANIAL", + "code_postal": "31460", + "coordonnees_gps": [ + 43.5220437405, + 1.86897842751 + ], + "libelle_d_acheminement": "LE CABANIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86897842751, + 43.5220437405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33da2f236a14408fa47f9e2e0a9ba658a3322692", + "fields": { + "code_commune_insee": "23177", + "nom_de_la_commune": "ST AGNANT DE VERSILLAT", + "code_postal": "23300", + "coordonnees_gps": [ + 46.2809892727, + 1.50573009278 + ], + "libelle_d_acheminement": "ST AGNANT DE VERSILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50573009278, + 46.2809892727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3fcbcb283ecb8271902dd2ca351826c3a60f051", + "fields": { + "code_commune_insee": "31098", + "nom_de_la_commune": "CADOURS", + "code_postal": "31480", + "coordonnees_gps": [ + 43.7262666734, + 1.04672330873 + ], + "libelle_d_acheminement": "CADOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04672330873, + 43.7262666734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ea640c1e699ffd3c74a76d11cd013fe661f6678", + "fields": { + "code_commune_insee": "23184", + "nom_de_la_commune": "ST BARD", + "code_postal": "23260", + "coordonnees_gps": [ + 45.9133006129, + 2.40762090733 + ], + "libelle_d_acheminement": "ST BARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40762090733, + 45.9133006129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9412eb4ab01eb390a095980d4f7fc785bc98b2fd", + "fields": { + "code_commune_insee": "31101", + "nom_de_la_commune": "CAMBERNARD", + "code_postal": "31470", + "coordonnees_gps": [ + 43.4619758547, + 1.17879278743 + ], + "libelle_d_acheminement": "CAMBERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17879278743, + 43.4619758547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41ccdfd44ebea1551bf42f240d9df01ec73cf0f8", + "fields": { + "ligne_5": "ST DIZIER LEYRENNE", + "code_commune_insee": "23189", + "libelle_d_acheminement": "ST DIZIER MASBARAUD", + "code_postal": "23400", + "nom_de_la_commune": "ST DIZIER MASBARAUD", + "coordonnees_gps": [ + 46.0272675127, + 1.70488354974 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70488354974, + 46.0272675127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70ed52164ff63f391ff612f54861702531ac3bbe", + "fields": { + "code_commune_insee": "31103", + "nom_de_la_commune": "CANENS", + "code_postal": "31310", + "coordonnees_gps": [ + 43.2165330138, + 1.33272050885 + ], + "libelle_d_acheminement": "CANENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33272050885, + 43.2165330138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bc7ef0504b24386619b633ae5532f9e9c5265ed", + "fields": { + "code_commune_insee": "23198", + "nom_de_la_commune": "ST GEORGES NIGREMONT", + "code_postal": "23500", + "coordonnees_gps": [ + 45.8360016114, + 2.27335627417 + ], + "libelle_d_acheminement": "ST GEORGES NIGREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27335627417, + 45.8360016114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c6afb26b7ae872e2db204900727df2791c5957d", + "fields": { + "code_commune_insee": "31110", + "nom_de_la_commune": "CASSAGNE", + "code_postal": "31260", + "coordonnees_gps": [ + 43.1242700684, + 0.991401965489 + ], + "libelle_d_acheminement": "CASSAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.991401965489, + 43.1242700684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ab9bc33841b984519f24b1c264b81e538347c2f", + "fields": { + "code_commune_insee": "23200", + "nom_de_la_commune": "ST GOUSSAUD", + "code_postal": "23430", + "coordonnees_gps": [ + 46.0310651725, + 1.56127982806 + ], + "libelle_d_acheminement": "ST GOUSSAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56127982806, + 46.0310651725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4b716656a7d38b3fdee762fe53df0caeda73b9c", + "fields": { + "code_commune_insee": "31115", + "nom_de_la_commune": "CASTELGAILLARD", + "code_postal": "31230", + "coordonnees_gps": [ + 43.352091246, + 0.901912825584 + ], + "libelle_d_acheminement": "CASTELGAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.901912825584, + 43.352091246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de3e3b7425352c85ccde829fa1891fb44cdb95d4", + "fields": { + "code_commune_insee": "23204", + "nom_de_la_commune": "ST JULIEN LE CHATEL", + "code_postal": "23130", + "coordonnees_gps": [ + 46.118231154, + 2.26998040696 + ], + "libelle_d_acheminement": "ST JULIEN LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26998040696, + 46.118231154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbe515789dd6bea522615181b18fa39de40577f2", + "fields": { + "code_commune_insee": "31116", + "nom_de_la_commune": "CASTELGINEST", + "code_postal": "31780", + "coordonnees_gps": [ + 43.6974132735, + 1.4355878363 + ], + "libelle_d_acheminement": "CASTELGINEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4355878363, + 43.6974132735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2322ef6383d76263c9db7a7b3b06176a5e2aaf06", + "fields": { + "code_commune_insee": "23214", + "nom_de_la_commune": "ST MARTIAL LE MONT", + "code_postal": "23150", + "coordonnees_gps": [ + 46.0501750563, + 2.09062935629 + ], + "libelle_d_acheminement": "ST MARTIAL LE MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09062935629, + 46.0501750563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff7b8b185bfb9afdb872bafade8de9a6f1ccf50e", + "fields": { + "code_commune_insee": "31125", + "nom_de_la_commune": "CATHERVIELLE", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8234692001, + 0.507545845496 + ], + "libelle_d_acheminement": "CATHERVIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.507545845496, + 42.8234692001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b5deee2cda6ab79d3573cc6e54930a0ff73af53", + "fields": { + "code_commune_insee": "23215", + "nom_de_la_commune": "ST MARTIAL LE VIEUX", + "code_postal": "23100", + "coordonnees_gps": [ + 45.6896336571, + 2.30842367741 + ], + "libelle_d_acheminement": "ST MARTIAL LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30842367741, + 45.6896336571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90f7707b417283b56b96c6f08a5d1531fe008305", + "fields": { + "code_commune_insee": "31127", + "nom_de_la_commune": "CAUBOUS", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8472592399, + 0.521910394334 + ], + "libelle_d_acheminement": "CAUBOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.521910394334, + 42.8472592399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04ccf1dfe9b7237e5c7fd36aebbe0108afe7f76b", + "fields": { + "code_commune_insee": "23217", + "nom_de_la_commune": "ST MARTIN STE CATHERINE", + "code_postal": "23430", + "coordonnees_gps": [ + 45.9426860436, + 1.56102508429 + ], + "libelle_d_acheminement": "ST MARTIN STE CATHERINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56102508429, + 45.9426860436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f2bedb69c0f9b76e8440e9a223d21e4898f017b", + "fields": { + "code_commune_insee": "31132", + "nom_de_la_commune": "CAZAUX LAYRISSE", + "code_postal": "31440", + "coordonnees_gps": [ + 42.8715028336, + 0.59693837031 + ], + "libelle_d_acheminement": "CAZAUX LAYRISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.59693837031, + 42.8715028336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ce315e8d8fdcade2045ec7cdcb7c5979e722f25", + "fields": { + "code_commune_insee": "23220", + "nom_de_la_commune": "ST MEDARD LA ROCHETTE", + "code_postal": "23200", + "coordonnees_gps": [ + 46.0220936926, + 2.14641995346 + ], + "libelle_d_acheminement": "ST MEDARD LA ROCHETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14641995346, + 46.0220936926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b47a1ff1add64b726675287ecc5d8b07a4b15d91", + "fields": { + "code_commune_insee": "31133", + "nom_de_la_commune": "CAZEAUX DE LARBOUST", + "code_postal": "31110", + "coordonnees_gps": [ + 42.7515051317, + 0.532234410988 + ], + "libelle_d_acheminement": "CAZEAUX DE LARBOUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.532234410988, + 42.7515051317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68789021885c7599eebcfd9d9c8e35a0ea3aec2c", + "fields": { + "code_commune_insee": "23226", + "nom_de_la_commune": "ST PARDOUX D ARNET", + "code_postal": "23260", + "coordonnees_gps": [ + 45.881920162, + 2.32602565268 + ], + "libelle_d_acheminement": "ST PARDOUX D ARNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32602565268, + 45.881920162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c94a57c330beaf88062227d21f8ced53a723bd1b", + "fields": { + "code_commune_insee": "31136", + "nom_de_la_commune": "CEPET", + "code_postal": "31620", + "coordonnees_gps": [ + 43.7456992513, + 1.43660975601 + ], + "libelle_d_acheminement": "CEPET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43660975601, + 43.7456992513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86efc7481422a2caf347c0da8ccb759389772267", + "fields": { + "code_commune_insee": "23238", + "nom_de_la_commune": "ST QUENTIN LA CHABANNE", + "code_postal": "23500", + "coordonnees_gps": [ + 45.8786461454, + 2.14631978008 + ], + "libelle_d_acheminement": "ST QUENTIN LA CHABANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14631978008, + 45.8786461454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27095c8b56ed34cc5b362092d3d09305ff013fd6", + "fields": { + "code_commune_insee": "31137", + "nom_de_la_commune": "CESSALES", + "code_postal": "31290", + "coordonnees_gps": [ + 43.4578290788, + 1.74447351258 + ], + "libelle_d_acheminement": "CESSALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74447351258, + 43.4578290788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b2b629521709e0ab404bdebf355fa191648a18b", + "fields": { + "code_commune_insee": "23240", + "nom_de_la_commune": "ST SILVAIN BAS LE ROC", + "code_postal": "23600", + "coordonnees_gps": [ + 46.3319366836, + 2.21828718051 + ], + "libelle_d_acheminement": "ST SILVAIN BAS LE ROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21828718051, + 46.3319366836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f1ab3d459fa87e425dfd5a87c80fef8e214a701", + "fields": { + "code_commune_insee": "31146", + "nom_de_la_commune": "CIRES", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8523193923, + 0.509249607327 + ], + "libelle_d_acheminement": "CIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.509249607327, + 42.8523193923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1e1e7084a808b32f008b6b53a2209fbf21a28de", + "fields": { + "code_commune_insee": "23242", + "nom_de_la_commune": "ST SILVAIN MONTAIGUT", + "code_postal": "23320", + "coordonnees_gps": [ + 46.1412485496, + 1.76065637075 + ], + "libelle_d_acheminement": "ST SILVAIN MONTAIGUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76065637075, + 46.1412485496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df0097e4469d764529661b9be3097216852f1262", + "fields": { + "code_commune_insee": "31147", + "nom_de_la_commune": "CLARAC", + "code_postal": "31210", + "coordonnees_gps": [ + 43.1137180327, + 0.6161886319 + ], + "libelle_d_acheminement": "CLARAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.6161886319, + 43.1137180327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16ccf9a2cdcffa706fd6c0bec9a237c5dcfc367c", + "fields": { + "code_commune_insee": "23246", + "nom_de_la_commune": "ST SULPICE LES CHAMPS", + "code_postal": "23480", + "coordonnees_gps": [ + 45.9883129474, + 2.02002682411 + ], + "libelle_d_acheminement": "ST SULPICE LES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02002682411, + 45.9883129474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45875ee5e14c80dc0afe2db022e03ee07a0a03c7", + "fields": { + "code_commune_insee": "31152", + "nom_de_la_commune": "COUEILLES", + "code_postal": "31230", + "coordonnees_gps": [ + 43.346722057, + 0.878316762368 + ], + "libelle_d_acheminement": "COUEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.878316762368, + 43.346722057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d65808031362f10b5b16ecc1c75668dd85335714", + "fields": { + "code_commune_insee": "23251", + "nom_de_la_commune": "TARDES", + "code_postal": "23170", + "coordonnees_gps": [ + 46.1414668676, + 2.35456258635 + ], + "libelle_d_acheminement": "TARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35456258635, + 46.1414668676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa3a3a8370503e0c533c42aef3bb56ae3298ea88", + "fields": { + "code_commune_insee": "31158", + "nom_de_la_commune": "CUGURON", + "code_postal": "31210", + "coordonnees_gps": [ + 43.104325893, + 0.51568143449 + ], + "libelle_d_acheminement": "CUGURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.51568143449, + 43.104325893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b494f0cb1a5cb2b2276ba035b189405fe4cc010", + "fields": { + "code_commune_insee": "23259", + "nom_de_la_commune": "VERNEIGES", + "code_postal": "23170", + "coordonnees_gps": [ + 46.2641701184, + 2.34076152374 + ], + "libelle_d_acheminement": "VERNEIGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34076152374, + 46.2641701184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36a4c9426d565d896631536b3b497b18b143ff1a", + "fields": { + "code_commune_insee": "31159", + "nom_de_la_commune": "LE CUING", + "code_postal": "31210", + "coordonnees_gps": [ + 43.1471175091, + 0.611931912745 + ], + "libelle_d_acheminement": "LE CUING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.611931912745, + 43.1471175091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d079db8e80b093d71232e7743eec4c5cc18664bf", + "fields": { + "code_commune_insee": "24002", + "nom_de_la_commune": "AGONAC", + "code_postal": "24460", + "coordonnees_gps": [ + 45.281599202, + 0.745318376451 + ], + "libelle_d_acheminement": "AGONAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.745318376451, + 45.281599202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecf89506ebe05629039f12755d3d5712f7aac5e2", + "fields": { + "code_commune_insee": "31160", + "nom_de_la_commune": "DAUX", + "code_postal": "31700", + "coordonnees_gps": [ + 43.6872531862, + 1.26634638544 + ], + "libelle_d_acheminement": "DAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26634638544, + 43.6872531862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "196bcff744431570d88d9baf66a0138b1801c547", + "fields": { + "code_commune_insee": "24008", + "nom_de_la_commune": "ANGOISSE", + "code_postal": "24270", + "coordonnees_gps": [ + 45.4299135686, + 1.15056975659 + ], + "libelle_d_acheminement": "ANGOISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15056975659, + 45.4299135686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b498fe24197f502c67a9928f178fb2ea9cfa12d", + "fields": { + "code_commune_insee": "31168", + "nom_de_la_commune": "EOUX", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2774587805, + 0.882334397451 + ], + "libelle_d_acheminement": "EOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.882334397451, + 43.2774587805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed6f5f9668a4c4bdedb8f7541b6fc21b2daf2a38", + "fields": { + "code_commune_insee": "24011", + "nom_de_la_commune": "ANTONNE ET TRIGONANT", + "code_postal": "24420", + "coordonnees_gps": [ + 45.2300537681, + 0.831654901001 + ], + "libelle_d_acheminement": "ANTONNE ET TRIGONANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.831654901001, + 45.2300537681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "502bfbfccad49b21229699e90f87750886103b9b", + "fields": { + "code_commune_insee": "31170", + "nom_de_la_commune": "ESCANECRABE", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2716594526, + 0.757214642692 + ], + "libelle_d_acheminement": "ESCANECRABE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.757214642692, + 43.2716594526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a8929c09b76441d308dc8abee28f5d968a6c708", + "fields": { + "code_commune_insee": "24016", + "nom_de_la_commune": "AUGIGNAC", + "code_postal": "24300", + "coordonnees_gps": [ + 45.5838223647, + 0.702320065534 + ], + "libelle_d_acheminement": "AUGIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.702320065534, + 45.5838223647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3007d32d1ce887606fe8dd971adf29d515adda0f", + "fields": { + "code_commune_insee": "31178", + "nom_de_la_commune": "FABAS", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3119614436, + 0.89311883238 + ], + "libelle_d_acheminement": "FABAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89311883238, + 43.3119614436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35f74cb50f6e97ad5af8981d7b1c187b86f115de", + "fields": { + "code_commune_insee": "24020", + "nom_de_la_commune": "LA BACHELLERIE", + "code_postal": "24210", + "coordonnees_gps": [ + 45.1339229192, + 1.16376326914 + ], + "libelle_d_acheminement": "LA BACHELLERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16376326914, + 45.1339229192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c570a7991c5084c1af9f00c9348f8674c94883c", + "fields": { + "code_commune_insee": "31182", + "nom_de_la_commune": "FENOUILLET", + "code_postal": "31150", + "coordonnees_gps": [ + 43.6848098988, + 1.39052053451 + ], + "libelle_d_acheminement": "FENOUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39052053451, + 43.6848098988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4810dd48c973069df69475bdda354da6061acca3", + "fields": { + "code_commune_insee": "24027", + "nom_de_la_commune": "BAYAC", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8047466213, + 0.7227976753 + ], + "libelle_d_acheminement": "BAYAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7227976753, + 44.8047466213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "188b92679dae5954d00c7289be2855c0c87c0eff", + "fields": { + "code_commune_insee": "31184", + "nom_de_la_commune": "FLOURENS", + "code_postal": "31130", + "coordonnees_gps": [ + 43.5977742595, + 1.55391307823 + ], + "libelle_d_acheminement": "FLOURENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55391307823, + 43.5977742595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44f0134c5ac5ac55329ccd53fe064e0c90919e19", + "fields": { + "ligne_5": "LABOUQUERIE", + "code_commune_insee": "24028", + "libelle_d_acheminement": "BEAUMONTOIS EN PERIGORD", + "code_postal": "24440", + "nom_de_la_commune": "BEAUMONTOIS EN PERIGORD", + "coordonnees_gps": [ + 44.773801258, + 0.75409629331 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75409629331, + 44.773801258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fae873aa0c9991bd177254fb856481bcba59a7cd", + "fields": { + "code_commune_insee": "31186", + "nom_de_la_commune": "FONBEAUZARD", + "code_postal": "31140", + "coordonnees_gps": [ + 43.6798211278, + 1.43492132755 + ], + "libelle_d_acheminement": "FONBEAUZARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43492132755, + 43.6798211278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f06895ba30042415ef6c58276031c00e281729b1", + "fields": { + "ligne_5": "BELVES", + "code_commune_insee": "24035", + "libelle_d_acheminement": "PAYS DE BELVES", + "code_postal": "24170", + "nom_de_la_commune": "PAYS DE BELVES", + "coordonnees_gps": [ + 44.7462034463, + 0.980486487157 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.980486487157, + 44.7462034463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f94a0d552d24123220ac680488f153ce32d6627", + "fields": { + "code_commune_insee": "31188", + "nom_de_la_commune": "FONTENILLES", + "code_postal": "31470", + "coordonnees_gps": [ + 43.5554168376, + 1.19738282576 + ], + "libelle_d_acheminement": "FONTENILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19738282576, + 43.5554168376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eac971bef4f0bd3f3cda1169427e11b0de4bbab8", + "fields": { + "ligne_5": "ST AMAND DE BELVES", + "code_commune_insee": "24035", + "libelle_d_acheminement": "PAYS DE BELVES", + "code_postal": "24170", + "nom_de_la_commune": "PAYS DE BELVES", + "coordonnees_gps": [ + 44.7462034463, + 0.980486487157 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.980486487157, + 44.7462034463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "338079ff0ea0dde8253a675f41a62da92c62f099", + "fields": { + "code_commune_insee": "31190", + "nom_de_la_commune": "FOS", + "code_postal": "31440", + "coordonnees_gps": [ + 42.8605439221, + 0.747535403685 + ], + "libelle_d_acheminement": "FOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.747535403685, + 42.8605439221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de8a9f282996cfb55e458b28674163360a443482", + "fields": { + "code_commune_insee": "24039", + "nom_de_la_commune": "BESSE", + "code_postal": "24550", + "coordonnees_gps": [ + 44.6649913736, + 1.11317333778 + ], + "libelle_d_acheminement": "BESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11317333778, + 44.6649913736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "696798efe67c57866a031e6ac0849a3d998a3d0d", + "fields": { + "code_commune_insee": "31191", + "nom_de_la_commune": "FOUGARON", + "code_postal": "31160", + "coordonnees_gps": [ + 42.9816089588, + 0.935465370602 + ], + "libelle_d_acheminement": "FOUGARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.935465370602, + 42.9816089588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95e9cfe9d7c25c083fa7a29cc33083fee4491b9b", + "fields": { + "code_commune_insee": "24042", + "nom_de_la_commune": "BIRAS", + "code_postal": "24310", + "coordonnees_gps": [ + 45.2868677633, + 0.638949936557 + ], + "libelle_d_acheminement": "BIRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.638949936557, + 45.2868677633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "248050bc89cf8bd274fbd792019dac02fdae31ff", + "fields": { + "code_commune_insee": "31192", + "nom_de_la_commune": "FOURQUEVAUX", + "code_postal": "31450", + "coordonnees_gps": [ + 43.498117622, + 1.62175051569 + ], + "libelle_d_acheminement": "FOURQUEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62175051569, + 43.498117622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81253c0e9bd2c5a436116d7141e97e420335d314", + "fields": { + "code_commune_insee": "24048", + "nom_de_la_commune": "BONNEVILLE ET ST AVIT DE FUMADIERES", + "code_postal": "24230", + "coordonnees_gps": [ + 44.8838960782, + 0.0812094359486 + ], + "libelle_d_acheminement": "BONNEVILLE ST AVIT DE FUMADIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0812094359486, + 44.8838960782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "867e294ccba444ed2e11fa5b7b6a6e4c13a22da5", + "fields": { + "code_commune_insee": "31194", + "nom_de_la_commune": "FRANCARVILLE", + "code_postal": "31460", + "coordonnees_gps": [ + 43.5867124964, + 1.74796127213 + ], + "libelle_d_acheminement": "FRANCARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74796127213, + 43.5867124964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae7c2e29446fe51ef57618ac97921f763744fe28", + "fields": { + "code_commune_insee": "24056", + "nom_de_la_commune": "LE BOURDEIX", + "code_postal": "24300", + "coordonnees_gps": [ + 45.5790760433, + 0.635522742578 + ], + "libelle_d_acheminement": "LE BOURDEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.635522742578, + 45.5790760433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5047a71f32402461cbab19a0a1ea55d9a948d3c9", + "fields": { + "code_commune_insee": "31196", + "nom_de_la_commune": "FRANCON", + "code_postal": "31420", + "coordonnees_gps": [ + 43.26180406, + 0.988074142918 + ], + "libelle_d_acheminement": "FRANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.988074142918, + 43.26180406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da104afdd0809553534dd99a18c9efe1be9109be", + "fields": { + "code_commune_insee": "24063", + "nom_de_la_commune": "BOUZIC", + "code_postal": "24250", + "coordonnees_gps": [ + 44.7210017816, + 1.21718976678 + ], + "libelle_d_acheminement": "BOUZIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21718976678, + 44.7210017816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3113d47c41e31124a83c7026f748c0a7123752f2", + "fields": { + "code_commune_insee": "31199", + "nom_de_la_commune": "FRONSAC", + "code_postal": "31440", + "coordonnees_gps": [ + 42.9540641644, + 0.662252596199 + ], + "libelle_d_acheminement": "FRONSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.662252596199, + 42.9540641644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a20535e84d37e01128e18c530c0e10a180b3ce30", + "fields": { + "ligne_5": "SENCENAC PUY DE FOURCHES", + "code_commune_insee": "24064", + "libelle_d_acheminement": "BRANTOME EN PERIGORD", + "code_postal": "24310", + "nom_de_la_commune": "BRANTOME EN PERIGORD", + "coordonnees_gps": [ + 45.360114867, + 0.65590360604 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65590360604, + 45.360114867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "059c56e9e73d8120d60b819d96d43ef66f41d1ef", + "fields": { + "code_commune_insee": "31203", + "nom_de_la_commune": "FROUZINS", + "code_postal": "31270", + "coordonnees_gps": [ + 43.5213246491, + 1.31308144472 + ], + "libelle_d_acheminement": "FROUZINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31308144472, + 43.5213246491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e31cd97460d3e6c2123b7fc739bf584da30690b6", + "fields": { + "ligne_5": "ST CREPIN DE RICHEMONT", + "code_commune_insee": "24064", + "libelle_d_acheminement": "BRANTOME EN PERIGORD", + "code_postal": "24310", + "nom_de_la_commune": "BRANTOME EN PERIGORD", + "coordonnees_gps": [ + 45.360114867, + 0.65590360604 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65590360604, + 45.360114867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be832735d63880ae4a6d9f184bdfd7ccae11f725", + "fields": { + "code_commune_insee": "31209", + "nom_de_la_commune": "GARAC", + "code_postal": "31480", + "coordonnees_gps": [ + 43.6892862656, + 1.09168485036 + ], + "libelle_d_acheminement": "GARAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09168485036, + 43.6892862656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00c20feb6e55b6ed646d5d25bb7c23f3276af6a0", + "fields": { + "ligne_5": "VALEUIL", + "code_commune_insee": "24064", + "libelle_d_acheminement": "BRANTOME EN PERIGORD", + "code_postal": "24310", + "nom_de_la_commune": "BRANTOME EN PERIGORD", + "coordonnees_gps": [ + 45.360114867, + 0.65590360604 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.65590360604, + 45.360114867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c23a0b5e8a91c692afe226505a197e079bcf46a5", + "fields": { + "code_commune_insee": "31215", + "nom_de_la_commune": "GAURE", + "code_postal": "31590", + "coordonnees_gps": [ + 43.6176900589, + 1.63698361771 + ], + "libelle_d_acheminement": "GAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63698361771, + 43.6176900589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d77106573ffdcec4c24ff1b606c296f866a08c0", + "fields": { + "code_commune_insee": "24075", + "nom_de_la_commune": "CAMPAGNAC LES QUERCY", + "code_postal": "24550", + "coordonnees_gps": [ + 44.6954132053, + 1.17519301119 + ], + "libelle_d_acheminement": "CAMPAGNAC LES QUERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17519301119, + 44.6954132053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d97a8d4e539b62d54254f351c81c2739381d716", + "fields": { + "code_commune_insee": "31222", + "nom_de_la_commune": "GOUAUX DE LUCHON", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8507243735, + 0.641852997269 + ], + "libelle_d_acheminement": "GOUAUX DE LUCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.641852997269, + 42.8507243735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28ec2fff5f5dee7eaccae8ae10ccbffb89ee6d02", + "fields": { + "code_commune_insee": "24082", + "nom_de_la_commune": "CARSAC AILLAC", + "code_postal": "24200", + "coordonnees_gps": [ + 44.8504427417, + 1.27427497558 + ], + "libelle_d_acheminement": "CARSAC AILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27427497558, + 44.8504427417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31dd374caf9ee68fe257126296e86fcc6aebd094", + "fields": { + "code_commune_insee": "31229", + "nom_de_la_commune": "GRATENS", + "code_postal": "31430", + "coordonnees_gps": [ + 43.3258752014, + 1.12264895542 + ], + "libelle_d_acheminement": "GRATENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12264895542, + 43.3258752014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b92a8d795d2055419f6f455a444a82f11ba9bbff", + "fields": { + "ligne_5": "CASTELS", + "code_commune_insee": "24087", + "libelle_d_acheminement": "CASTELS ET BEZENAC", + "code_postal": "24220", + "nom_de_la_commune": "CASTELS ET BEZENAC", + "coordonnees_gps": [ + 44.8705381917, + 1.08038180095 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08038180095, + 44.8705381917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ec60688e16aa39b06c4320e94f283e0d65d05ef", + "fields": { + "code_commune_insee": "31231", + "nom_de_la_commune": "GRAZAC", + "code_postal": "31190", + "coordonnees_gps": [ + 43.3114150359, + 1.44878574515 + ], + "libelle_d_acheminement": "GRAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44878574515, + 43.3114150359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb4b96d0ae8876fda56cf70bc630509baccd7054", + "fields": { + "code_commune_insee": "24095", + "nom_de_la_commune": "CHALAIS", + "code_postal": "24800", + "coordonnees_gps": [ + 45.5032613972, + 0.940330298311 + ], + "libelle_d_acheminement": "CHALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.940330298311, + 45.5032613972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ca152706a7be062444f53b2353c72b069981c6c", + "fields": { + "code_commune_insee": "31232", + "nom_de_la_commune": "GRENADE", + "code_postal": "31330", + "coordonnees_gps": [ + 43.7640507757, + 1.28038974975 + ], + "libelle_d_acheminement": "GRENADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28038974975, + 43.7640507757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4704214346e7a627af2c081a9e5a51dbcf5925cc", + "fields": { + "code_commune_insee": "24100", + "nom_de_la_commune": "CHAMPNIERS ET REILHAC", + "code_postal": "24360", + "coordonnees_gps": [ + 45.6717236599, + 0.721225907489 + ], + "libelle_d_acheminement": "CHAMPNIERS ET REILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.721225907489, + 45.6717236599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81d7faeb47e4c9f2cfdf84653bf87eb74bd14af1", + "fields": { + "code_commune_insee": "31235", + "nom_de_la_commune": "GURAN", + "code_postal": "31440", + "coordonnees_gps": [ + 42.8861684706, + 0.607040581049 + ], + "libelle_d_acheminement": "GURAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.607040581049, + 42.8861684706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4b7f26fd02818bad414ba18ae52514ab8f648d9", + "fields": { + "code_commune_insee": "24101", + "nom_de_la_commune": "CHAMPS ROMAIN", + "code_postal": "24470", + "coordonnees_gps": [ + 45.5404045752, + 0.771560707867 + ], + "libelle_d_acheminement": "CHAMPS ROMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.771560707867, + 45.5404045752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cecfd0eca680a6dcd18fd9210d0d98093e425f5a", + "fields": { + "code_commune_insee": "31238", + "nom_de_la_commune": "HUOS", + "code_postal": "31210", + "coordonnees_gps": [ + 43.0693636592, + 0.6001814706 + ], + "libelle_d_acheminement": "HUOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.6001814706, + 43.0693636592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acd6e9860cd90a3c6815c8e2c104d4933dffa247", + "fields": { + "code_commune_insee": "24108", + "nom_de_la_commune": "LA CHAPELLE GONAGUET", + "code_postal": "24350", + "coordonnees_gps": [ + 45.2301791258, + 0.619050495497 + ], + "libelle_d_acheminement": "LA CHAPELLE GONAGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.619050495497, + 45.2301791258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11853cf766cab7e1ebc9e1898eb7fe8a2eb0c644", + "fields": { + "code_commune_insee": "31248", + "nom_de_la_commune": "LABARTHE SUR LEZE", + "code_postal": "31860", + "coordonnees_gps": [ + 43.4585461585, + 1.40082976957 + ], + "libelle_d_acheminement": "LABARTHE SUR LEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40082976957, + 43.4585461585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b102badcaa27232dd9644782a1578478db49666", + "fields": { + "code_commune_insee": "24109", + "nom_de_la_commune": "LA CHAPELLE GRESIGNAC", + "code_postal": "24320", + "coordonnees_gps": [ + 45.3896352806, + 0.339347115652 + ], + "libelle_d_acheminement": "LA CHAPELLE GRESIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.339347115652, + 45.3896352806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d73bc3a45444702848c545819d1365204b48d62", + "fields": { + "code_commune_insee": "31251", + "nom_de_la_commune": "LABASTIDE PAUMES", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3331852393, + 0.935633531928 + ], + "libelle_d_acheminement": "LABASTIDE PAUMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.935633531928, + 43.3331852393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8b70450de30f060e35ecbb0a7405d07c119dc20", + "fields": { + "ligne_5": "GREZES", + "code_commune_insee": "24117", + "libelle_d_acheminement": "LES COTEAUX PERIGOURDINS", + "code_postal": "24120", + "nom_de_la_commune": "LES COTEAUX PERIGOURDINS", + "coordonnees_gps": [ + 45.0871076181, + 1.37000176576 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37000176576, + 45.0871076181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8b91eade2014c1a1db8612f9ded28ed709eb016", + "fields": { + "code_commune_insee": "31256", + "nom_de_la_commune": "LABRUYERE DORSA", + "code_postal": "31190", + "coordonnees_gps": [ + 43.4049029199, + 1.47157960767 + ], + "libelle_d_acheminement": "LABRUYERE DORSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47157960767, + 43.4049029199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d9f7cc7bc33ee90123a4b7fe2d57d02ba5bfbeb", + "fields": { + "code_commune_insee": "24120", + "nom_de_la_commune": "CHERVEIX CUBAS", + "code_postal": "24390", + "coordonnees_gps": [ + 45.2878322795, + 1.11115123114 + ], + "libelle_d_acheminement": "CHERVEIX CUBAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11115123114, + 45.2878322795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be127c898656da8aec2117d298b54febb6db2416", + "fields": { + "code_commune_insee": "31260", + "nom_de_la_commune": "LAFFITE TOUPIERE", + "code_postal": "31360", + "coordonnees_gps": [ + 43.1654323189, + 0.913233525531 + ], + "libelle_d_acheminement": "LAFFITE TOUPIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.913233525531, + 43.1654323189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43d772f05721ac7782ee6dbdc5914d924b4d6299", + "fields": { + "code_commune_insee": "24121", + "nom_de_la_commune": "CHOURGNAC", + "code_postal": "24640", + "coordonnees_gps": [ + 45.2344208721, + 1.05353436123 + ], + "libelle_d_acheminement": "CHOURGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05353436123, + 45.2344208721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61e0769d8655498424cb4b2565b98f6dbfef6877", + "fields": { + "code_commune_insee": "31261", + "nom_de_la_commune": "LAFITTE VIGORDANE", + "code_postal": "31390", + "coordonnees_gps": [ + 43.3031701623, + 1.1622399774 + ], + "libelle_d_acheminement": "LAFITTE VIGORDANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1622399774, + 43.3031701623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37a0fa1981cbfbab39158d1c86908cfc13034a67", + "fields": { + "code_commune_insee": "24131", + "nom_de_la_commune": "CONNEZAC", + "code_postal": "24300", + "coordonnees_gps": [ + 45.5150974832, + 0.530385430073 + ], + "libelle_d_acheminement": "CONNEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.530385430073, + 45.5150974832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e13452159885f062689dcaceb62224b592761aa8", + "fields": { + "code_commune_insee": "31267", + "nom_de_la_commune": "LAHITERE", + "code_postal": "31310", + "coordonnees_gps": [ + 43.1417576866, + 1.18566582893 + ], + "libelle_d_acheminement": "LAHITERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18566582893, + 43.1417576866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e35f94eaf0b60a63e52dc7b3e276f0292cc3f8a0", + "fields": { + "code_commune_insee": "24132", + "nom_de_la_commune": "CONNE DE LABARDE", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7817676025, + 0.553346911349 + ], + "libelle_d_acheminement": "CONNE DE LABARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.553346911349, + 44.7817676025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee3c97d1214ee64c55c03d99b5631bed6fc0854d", + "fields": { + "code_commune_insee": "31270", + "nom_de_la_commune": "LANDORTHE", + "code_postal": "31800", + "coordonnees_gps": [ + 43.1295155523, + 0.777804003503 + ], + "libelle_d_acheminement": "LANDORTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.777804003503, + 43.1295155523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40af3456cc91c14c1176c6f34a10ac062624cb1d", + "fields": { + "code_commune_insee": "24133", + "nom_de_la_commune": "LA COQUILLE", + "code_postal": "24450", + "coordonnees_gps": [ + 45.5444015671, + 0.965624918469 + ], + "libelle_d_acheminement": "LA COQUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.965624918469, + 45.5444015671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12921fb3c4f9353a6aa828a643911e52a233dc90", + "fields": { + "code_commune_insee": "31278", + "nom_de_la_commune": "LATOUE", + "code_postal": "31800", + "coordonnees_gps": [ + 43.1721599095, + 0.782166730616 + ], + "libelle_d_acheminement": "LATOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.782166730616, + 43.1721599095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81ac6398a1bbf05f172080c005ae43036231f142", + "fields": { + "code_commune_insee": "24135", + "nom_de_la_commune": "CORNILLE", + "code_postal": "24750", + "coordonnees_gps": [ + 45.2457104683, + 0.779065971787 + ], + "libelle_d_acheminement": "CORNILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.779065971787, + 45.2457104683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f815a578b32abf5217926fdeef834625b0ea59d", + "fields": { + "code_commune_insee": "31279", + "nom_de_la_commune": "LATOUR", + "code_postal": "31310", + "coordonnees_gps": [ + 43.2018753864, + 1.2819924767 + ], + "libelle_d_acheminement": "LATOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2819924767, + 43.2018753864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3b6c1631b65523e77031a427813072bad890a79", + "fields": { + "code_commune_insee": "24137", + "nom_de_la_commune": "COULAURES", + "code_postal": "24420", + "coordonnees_gps": [ + 45.3003467761, + 0.973890352625 + ], + "libelle_d_acheminement": "COULAURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.973890352625, + 45.3003467761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95f17b928d8809584b0d36d79a9edf5064725dd3", + "fields": { + "code_commune_insee": "31280", + "nom_de_la_commune": "LATRAPE", + "code_postal": "31310", + "coordonnees_gps": [ + 43.2493492757, + 1.2909801197 + ], + "libelle_d_acheminement": "LATRAPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2909801197, + 43.2493492757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beef2ee8fd8c79f867ac9281c887ef2fab7e34c1", + "fields": { + "code_commune_insee": "24138", + "nom_de_la_commune": "COULOUNIEIX CHAMIERS", + "code_postal": "24660", + "coordonnees_gps": [ + 45.1650799772, + 0.687592493639 + ], + "libelle_d_acheminement": "COULOUNIEIX CHAMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.687592493639, + 45.1650799772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3ad9eeeb844e12cc5c102011d3fee21a3cf73b7", + "fields": { + "code_commune_insee": "31287", + "nom_de_la_commune": "LAVERNOSE LACASSE", + "code_postal": "31410", + "coordonnees_gps": [ + 43.3913118725, + 1.24635316993 + ], + "libelle_d_acheminement": "LAVERNOSE LACASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24635316993, + 43.3913118725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3bf08d94ce36421e890f2ea862b04a024f2685d", + "fields": { + "code_commune_insee": "24139", + "nom_de_la_commune": "COURSAC", + "code_postal": "24430", + "coordonnees_gps": [ + 45.1270017517, + 0.642895051046 + ], + "libelle_d_acheminement": "COURSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.642895051046, + 45.1270017517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63e9aeb4452fb8ba05837c6c3a983f3bd4497810", + "fields": { + "code_commune_insee": "31289", + "nom_de_la_commune": "LECUSSAN", + "code_postal": "31580", + "coordonnees_gps": [ + 43.1552864516, + 0.49261323078 + ], + "libelle_d_acheminement": "LECUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49261323078, + 43.1552864516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d64c2aafd3e8d9c8bf20d0274f165294157f49b3", + "fields": { + "code_commune_insee": "24146", + "nom_de_la_commune": "CREYSSENSAC ET PISSOT", + "code_postal": "24380", + "coordonnees_gps": [ + 45.0708049621, + 0.668083362179 + ], + "libelle_d_acheminement": "CREYSSENSAC ET PISSOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.668083362179, + 45.0708049621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0458f0b5a7ceba73b6530f8736d50513e5af4308", + "fields": { + "code_commune_insee": "31291", + "nom_de_la_commune": "LEGUEVIN", + "code_postal": "31490", + "coordonnees_gps": [ + 43.5919597795, + 1.2290264629 + ], + "libelle_d_acheminement": "LEGUEVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2290264629, + 43.5919597795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9112a1f7081409f060ccbdab13fa788fc0ee5bf", + "fields": { + "ligne_5": "CUBJAC", + "code_commune_insee": "24147", + "libelle_d_acheminement": "CUBJAC AUVEZERE VAL D ANS", + "code_postal": "24640", + "nom_de_la_commune": "CUBJAC AUVEZERE VAL D ANS", + "coordonnees_gps": [ + 45.2253686677, + 0.939009779749 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.939009779749, + 45.2253686677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac230bc50411fe5e5fa75d90c88961c583d8b918", + "fields": { + "code_commune_insee": "31292", + "nom_de_la_commune": "LESCUNS", + "code_postal": "31220", + "coordonnees_gps": [ + 43.2452668117, + 1.00463618554 + ], + "libelle_d_acheminement": "LESCUNS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00463618554, + 43.2452668117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a3a14709ea4f5adb209b6f8e49361b39f03ab5b", + "fields": { + "ligne_5": "ST PANTALY D ANS", + "code_commune_insee": "24147", + "libelle_d_acheminement": "CUBJAC AUVEZERE VAL D ANS", + "code_postal": "24640", + "nom_de_la_commune": "CUBJAC AUVEZERE VAL D ANS", + "coordonnees_gps": [ + 45.2253686677, + 0.939009779749 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.939009779749, + 45.2253686677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b832bb46e0799adf3e95762cfb313e8d5ebf6ab", + "fields": { + "code_commune_insee": "31296", + "nom_de_la_commune": "LESTELLE DE ST MARTORY", + "code_postal": "31360", + "coordonnees_gps": [ + 43.1187447773, + 0.902129686925 + ], + "libelle_d_acheminement": "LESTELLE DE ST MARTORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.902129686925, + 43.1187447773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0e412b372a1811bad758893c074088b0032203f", + "fields": { + "code_commune_insee": "24152", + "nom_de_la_commune": "DOMME", + "code_postal": "24250", + "coordonnees_gps": [ + 44.8035117633, + 1.24433028521 + ], + "libelle_d_acheminement": "DOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24433028521, + 44.8035117633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffb8e02a0be2a1ee058321ba089b78f02aff6286", + "fields": { + "code_commune_insee": "31300", + "nom_de_la_commune": "LIEOUX", + "code_postal": "31800", + "coordonnees_gps": [ + 43.1495836513, + 0.773537344918 + ], + "libelle_d_acheminement": "LIEOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.773537344918, + 43.1495836513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e534094f4152ab3c728739169c42d805f86d8d6d", + "fields": { + "code_commune_insee": "24153", + "nom_de_la_commune": "LA DORNAC", + "code_postal": "24120", + "coordonnees_gps": [ + 45.0734567352, + 1.34321886485 + ], + "libelle_d_acheminement": "LA DORNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34321886485, + 45.0734567352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92ed3386ed756a321f94cf48d0473c66a6f583ec", + "fields": { + "code_commune_insee": "31301", + "nom_de_la_commune": "LILHAC", + "code_postal": "31230", + "coordonnees_gps": [ + 43.2848643262, + 0.809582811778 + ], + "libelle_d_acheminement": "LILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.809582811778, + 43.2848643262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4d1f939d2bea04ec9540b15c4778f4d63ad2676", + "fields": { + "code_commune_insee": "24157", + "nom_de_la_commune": "DOUZILLAC", + "code_postal": "24190", + "coordonnees_gps": [ + 45.0903485072, + 0.407727332302 + ], + "libelle_d_acheminement": "DOUZILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.407727332302, + 45.0903485072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93d3aa8a8f67515953c9777f6972c7efe8500c0b", + "fields": { + "code_commune_insee": "31305", + "nom_de_la_commune": "LOUDET", + "code_postal": "31580", + "coordonnees_gps": [ + 43.1399868523, + 0.576361768273 + ], + "libelle_d_acheminement": "LOUDET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.576361768273, + 43.1399868523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "605829dbac286c479de285dc501c92537e1b7c74", + "fields": { + "code_commune_insee": "24160", + "nom_de_la_commune": "EGLISE NEUVE DE VERGT", + "code_postal": "24380", + "coordonnees_gps": [ + 45.0887254033, + 0.732677000493 + ], + "libelle_d_acheminement": "EGLISE NEUVE DE VERGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.732677000493, + 45.0887254033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2867cdf7f27528776f1366de4a005db89f7bfd7e", + "fields": { + "code_commune_insee": "31311", + "nom_de_la_commune": "LA MAGDELAINE SUR TARN", + "code_postal": "31340", + "coordonnees_gps": [ + 43.8136980944, + 1.5350363614 + ], + "libelle_d_acheminement": "LA MAGDELAINE SUR TARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5350363614, + 43.8136980944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "752a531d38b65c978adb0b04f0a9a03e05add199", + "fields": { + "code_commune_insee": "24161", + "nom_de_la_commune": "EGLISE NEUVE D ISSAC", + "code_postal": "24400", + "coordonnees_gps": [ + 44.9811034103, + 0.427826698139 + ], + "libelle_d_acheminement": "EGLISE NEUVE D ISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.427826698139, + 44.9811034103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90a95f165052c7e243dce6c15e2f3a3e8da72334", + "fields": { + "code_commune_insee": "31312", + "nom_de_la_commune": "MAILHOLAS", + "code_postal": "31310", + "coordonnees_gps": [ + 43.2454899283, + 1.25132543337 + ], + "libelle_d_acheminement": "MAILHOLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25132543337, + 43.2454899283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e45510ef6be837981dde6eea54e54127797a736f", + "fields": { + "code_commune_insee": "24162", + "nom_de_la_commune": "ESCOIRE", + "code_postal": "24420", + "coordonnees_gps": [ + 45.2075114447, + 0.851453516232 + ], + "libelle_d_acheminement": "ESCOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.851453516232, + 45.2075114447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8ad6634ee55810be5e2feb1acef7ac4936097e3", + "fields": { + "code_commune_insee": "31317", + "nom_de_la_commune": "MARIGNAC LASCLARES", + "code_postal": "31430", + "coordonnees_gps": [ + 43.3049878647, + 1.10662037582 + ], + "libelle_d_acheminement": "MARIGNAC LASCLARES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10662037582, + 43.3049878647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db2a7f794206c325707a403ccec811de49155688", + "fields": { + "code_commune_insee": "24171", + "nom_de_la_commune": "EYZERAC", + "code_postal": "24800", + "coordonnees_gps": [ + 45.3874309913, + 0.902512907037 + ], + "libelle_d_acheminement": "EYZERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.902512907037, + 45.3874309913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccf44070bd53c720f1a10173c85dc2a1b7092ecd", + "fields": { + "code_commune_insee": "31329", + "nom_de_la_commune": "MAURENS", + "code_postal": "31540", + "coordonnees_gps": [ + 43.466341669, + 1.79779573538 + ], + "libelle_d_acheminement": "MAURENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79779573538, + 43.466341669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c61704e3a3da8cdbf1beda45600be5048d99b105", + "fields": { + "ligne_5": "LES EYZIES DE TAYAC SIREUIL", + "code_commune_insee": "24172", + "libelle_d_acheminement": "LES EYZIES", + "code_postal": "24620", + "nom_de_la_commune": "LES EYZIES", + "coordonnees_gps": [ + 44.9350703851, + 1.04035256381 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04035256381, + 44.9350703851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b8380096c93ea01604169a22f6fa4340e5b1986", + "fields": { + "code_commune_insee": "31331", + "nom_de_la_commune": "MAUREVILLE", + "code_postal": "31460", + "coordonnees_gps": [ + 43.5296067212, + 1.71445599659 + ], + "libelle_d_acheminement": "MAUREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71445599659, + 43.5296067212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fadcc895a876ec16a18916a8b42a031b5cd6f8e9", + "fields": { + "code_commune_insee": "24175", + "nom_de_la_commune": "LES FARGES", + "code_postal": "24290", + "coordonnees_gps": [ + 45.1147728849, + 1.19318015196 + ], + "libelle_d_acheminement": "LES FARGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19318015196, + 45.1147728849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "902e5e684e8492749555f6d0b1ebf53a39943593", + "fields": { + "code_commune_insee": "31335", + "nom_de_la_commune": "MAYREGNE", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8481521233, + 0.540039042931 + ], + "libelle_d_acheminement": "MAYREGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.540039042931, + 42.8481521233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d64cea25d514f8b8df2c62042f67feb386f32a8", + "fields": { + "code_commune_insee": "24179", + "nom_de_la_commune": "LA FEUILLADE", + "code_postal": "24120", + "coordonnees_gps": [ + 45.1156060328, + 1.39759185904 + ], + "libelle_d_acheminement": "LA FEUILLADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39759185904, + 45.1156060328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d94c3cc1c0150525d819f958943bad950a29bd8a", + "fields": { + "code_commune_insee": "31338", + "nom_de_la_commune": "MENVILLE", + "code_postal": "31530", + "coordonnees_gps": [ + 43.6792240578, + 1.18745822863 + ], + "libelle_d_acheminement": "MENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18745822863, + 43.6792240578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d72d5a1a22e2a7e91adf09270d7914b6263c3ab", + "fields": { + "code_commune_insee": "24189", + "nom_de_la_commune": "FOUGUEYROLLES", + "code_postal": "33220", + "coordonnees_gps": [ + 44.8684209151, + 0.188754198495 + ], + "libelle_d_acheminement": "FOUGUEYROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.188754198495, + 44.8684209151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e88e759d5f1b43eb05e88dca4121054794a68df5", + "fields": { + "code_commune_insee": "31339", + "nom_de_la_commune": "MERENVIELLE", + "code_postal": "31530", + "coordonnees_gps": [ + 43.6206862872, + 1.1676078873 + ], + "libelle_d_acheminement": "MERENVIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1676078873, + 43.6206862872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "796efc3988982f0c5d8266c931ff713149b236d4", + "fields": { + "code_commune_insee": "24191", + "nom_de_la_commune": "FRAISSE", + "code_postal": "24130", + "coordonnees_gps": [ + 44.9336348822, + 0.303365596651 + ], + "libelle_d_acheminement": "FRAISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.303365596651, + 44.9336348822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af791893e1d4e3806cfbb3aa53182c39d02d59e5", + "fields": { + "code_commune_insee": "31341", + "nom_de_la_commune": "MERVILLE", + "code_postal": "31330", + "coordonnees_gps": [ + 43.722156746, + 1.29598401915 + ], + "libelle_d_acheminement": "MERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29598401915, + 43.722156746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f0d890e31cab824758bb35a23fa6122d542a00e", + "fields": { + "code_commune_insee": "24192", + "nom_de_la_commune": "GABILLOU", + "code_postal": "24210", + "coordonnees_gps": [ + 45.2059650119, + 1.03227173677 + ], + "libelle_d_acheminement": "GABILLOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03227173677, + 45.2059650119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94f555eaca7948dfdc055575700a103901de21e9", + "fields": { + "code_commune_insee": "31345", + "nom_de_la_commune": "MIREMONT", + "code_postal": "31190", + "coordonnees_gps": [ + 43.3768947053, + 1.41723287336 + ], + "libelle_d_acheminement": "MIREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41723287336, + 43.3768947053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b347b9133a097b5c7424207c088c3aca4474d919", + "fields": { + "code_commune_insee": "24196", + "nom_de_la_commune": "GENIS", + "code_postal": "24160", + "coordonnees_gps": [ + 45.3306277228, + 1.16364841419 + ], + "libelle_d_acheminement": "GENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16364841419, + 45.3306277228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5bbb52e2e53e97ed410de440683be3b70299d26", + "fields": { + "code_commune_insee": "31353", + "nom_de_la_commune": "MONES", + "code_postal": "31370", + "coordonnees_gps": [ + 43.4181669738, + 1.03320759 + ], + "libelle_d_acheminement": "MONES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03320759, + 43.4181669738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b47591f4decc0a9aeb8c4be80f49c9232e693bee", + "fields": { + "code_commune_insee": "24202", + "nom_de_la_commune": "GRANGES D ANS", + "code_postal": "24390", + "coordonnees_gps": [ + 45.2106803727, + 1.11630422946 + ], + "libelle_d_acheminement": "GRANGES D ANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11630422946, + 45.2106803727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a431af5f916738bf78aa5737861fc72d38379c0", + "fields": { + "code_commune_insee": "31357", + "nom_de_la_commune": "MONTASTRUC DE SALIES", + "code_postal": "31160", + "coordonnees_gps": [ + 43.0375060146, + 0.901473462822 + ], + "libelle_d_acheminement": "MONTASTRUC DE SALIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.901473462822, + 43.0375060146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e87da4e0cf82303a79ab9d006cf350789d017969", + "fields": { + "code_commune_insee": "24205", + "nom_de_la_commune": "GRIGNOLS", + "code_postal": "24110", + "coordonnees_gps": [ + 45.0847043136, + 0.539775704647 + ], + "libelle_d_acheminement": "GRIGNOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.539775704647, + 45.0847043136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5c664eb35c894e70c306c94ec0c08b83eefde3d", + "fields": { + "code_commune_insee": "31377", + "nom_de_la_commune": "MONTGAILLARD LAURAGAIS", + "code_postal": "31290", + "coordonnees_gps": [ + 43.428491369, + 1.70265269114 + ], + "libelle_d_acheminement": "MONTGAILLARD LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70265269114, + 43.428491369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9f9456fc64cb61b06a4b06bf98a43015524e03d", + "fields": { + "code_commune_insee": "24210", + "nom_de_la_commune": "HAUTEFORT", + "code_postal": "24390", + "coordonnees_gps": [ + 45.2589200751, + 1.1354185818 + ], + "libelle_d_acheminement": "HAUTEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1354185818, + 45.2589200751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14b6894cbf96397fd3e027096df5c44f268279da", + "fields": { + "code_commune_insee": "31382", + "nom_de_la_commune": "MONTGRAS", + "code_postal": "31370", + "coordonnees_gps": [ + 43.4499161707, + 1.06831999402 + ], + "libelle_d_acheminement": "MONTGRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06831999402, + 43.4499161707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e92f6c2ed5dc31ca994814794839f36606aba111", + "fields": { + "code_commune_insee": "24215", + "nom_de_la_commune": "JAYAC", + "code_postal": "24590", + "coordonnees_gps": [ + 45.0299010059, + 1.3515117974 + ], + "libelle_d_acheminement": "JAYAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3515117974, + 45.0299010059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33f5c0f8c1f336501259d925e0637304f1951591", + "fields": { + "code_commune_insee": "31385", + "nom_de_la_commune": "MONTMAURIN", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2268173084, + 0.636100975805 + ], + "libelle_d_acheminement": "MONTMAURIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.636100975805, + 43.2268173084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2e5a13312acbbb0f70ed811fb28141db592ff57", + "fields": { + "code_commune_insee": "24220", + "nom_de_la_commune": "LACROPTE", + "code_postal": "24380", + "coordonnees_gps": [ + 45.0488336059, + 0.831249852194 + ], + "libelle_d_acheminement": "LACROPTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.831249852194, + 45.0488336059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0eb011f45c53a16e1ea237adac8b56a626cc9b1", + "fields": { + "code_commune_insee": "31386", + "nom_de_la_commune": "MONTOULIEU ST BERNARD", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2309082471, + 0.906414880793 + ], + "libelle_d_acheminement": "MONTOULIEU ST BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.906414880793, + 43.2309082471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54f88548e6f76f3070e58ed29dc426d45c3e681c", + "fields": { + "code_commune_insee": "24225", + "nom_de_la_commune": "LAMONZIE ST MARTIN", + "code_postal": "24680", + "coordonnees_gps": [ + 44.8334514819, + 0.387772567159 + ], + "libelle_d_acheminement": "LAMONZIE ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.387772567159, + 44.8334514819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e0530062762042460f8b45b470d385e933ddd6e", + "fields": { + "code_commune_insee": "31387", + "nom_de_la_commune": "MONTOUSSIN", + "code_postal": "31430", + "coordonnees_gps": [ + 43.2800737238, + 1.01115822318 + ], + "libelle_d_acheminement": "MONTOUSSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01115822318, + 43.2800737238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eed601b1762b62d5ae8dacab9648abd810d8b1e6", + "fields": { + "code_commune_insee": "24246", + "nom_de_la_commune": "LUNAS", + "code_postal": "24130", + "coordonnees_gps": [ + 44.9246503547, + 0.399062068302 + ], + "libelle_d_acheminement": "LUNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.399062068302, + 44.9246503547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "010f55021462b24a5d387692e05a032d3f1173ef", + "fields": { + "code_commune_insee": "31389", + "nom_de_la_commune": "MONTRABE", + "code_postal": "31850", + "coordonnees_gps": [ + 43.6424532193, + 1.5288063297 + ], + "libelle_d_acheminement": "MONTRABE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5288063297, + 43.6424532193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddf3a331ca3d5747f1689bf317ed0075341a87e0", + "fields": { + "code_commune_insee": "24247", + "nom_de_la_commune": "LUSIGNAC", + "code_postal": "24320", + "coordonnees_gps": [ + 45.3253621541, + 0.315458294924 + ], + "libelle_d_acheminement": "LUSIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.315458294924, + 45.3253621541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34e60081f6e0bf27ae1140203c2b1f3f4d624ee0", + "fields": { + "code_commune_insee": "31390", + "nom_de_la_commune": "MONTREJEAU", + "code_postal": "31210", + "coordonnees_gps": [ + 43.0885884936, + 0.558463262724 + ], + "libelle_d_acheminement": "MONTREJEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.558463262724, + 43.0885884936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3ad1653563cbef7b385b496fd3453fd35d653bd", + "fields": { + "code_commune_insee": "24252", + "nom_de_la_commune": "MARCILLAC ST QUENTIN", + "code_postal": "24200", + "coordonnees_gps": [ + 44.9556998288, + 1.19988431809 + ], + "libelle_d_acheminement": "MARCILLAC ST QUENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19988431809, + 44.9556998288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3c6c82a300b43b8fc7ab9ab5e0e14d2f80cd546", + "fields": { + "code_commune_insee": "31395", + "nom_de_la_commune": "MURET", + "code_postal": "31600", + "coordonnees_gps": [ + 43.4491077783, + 1.30784679414 + ], + "libelle_d_acheminement": "MURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30784679414, + 43.4491077783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca2a81939e50e274ce1cfa230e8ff885f3ec7275", + "fields": { + "ligne_5": "BEAUSSAC", + "code_commune_insee": "24253", + "libelle_d_acheminement": "MAREUIL EN PERIGORD", + "code_postal": "24340", + "nom_de_la_commune": "MAREUIL EN PERIGORD", + "coordonnees_gps": [ + 45.4407517575, + 0.447904772653 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.447904772653, + 45.4407517575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aa531905248af9e63516ab5d5c3058fbedc0650", + "fields": { + "code_commune_insee": "31403", + "nom_de_la_commune": "ONDES", + "code_postal": "31330", + "coordonnees_gps": [ + 43.7861277519, + 1.30409747557 + ], + "libelle_d_acheminement": "ONDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30409747557, + 43.7861277519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6815df357f1fc018363710442f55235a2230f84", + "fields": { + "ligne_5": "LEGUILLAC DE CERCLES", + "code_commune_insee": "24253", + "libelle_d_acheminement": "MAREUIL EN PERIGORD", + "code_postal": "24340", + "nom_de_la_commune": "MAREUIL EN PERIGORD", + "coordonnees_gps": [ + 45.4407517575, + 0.447904772653 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.447904772653, + 45.4407517575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed128819855c2bf62c9400ac28aa7a6e91b9c8c7", + "fields": { + "code_commune_insee": "31406", + "nom_de_la_commune": "PALAMINY", + "code_postal": "31220", + "coordonnees_gps": [ + 43.1942889645, + 1.06030325813 + ], + "libelle_d_acheminement": "PALAMINY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06030325813, + 43.1942889645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b2872540089541fcbe86fdec80f6c1c6bc63c39", + "fields": { + "code_commune_insee": "24260", + "nom_de_la_commune": "MAUZAC ET GRAND CASTANG", + "code_postal": "24150", + "coordonnees_gps": [ + 44.8823545617, + 0.780345381452 + ], + "libelle_d_acheminement": "MAUZAC ET GRAND CASTANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.780345381452, + 44.8823545617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d045e166394bc15ebe094a8ad1f525933572af7", + "fields": { + "code_commune_insee": "31409", + "nom_de_la_commune": "PECHABOU", + "code_postal": "31320", + "coordonnees_gps": [ + 43.5015132384, + 1.51044990153 + ], + "libelle_d_acheminement": "PECHABOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51044990153, + 43.5015132384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35e999d30e637524104b0c41c87c3c572f17ba29", + "fields": { + "code_commune_insee": "24267", + "nom_de_la_commune": "MESCOULES", + "code_postal": "24240", + "coordonnees_gps": [ + 44.7414241256, + 0.425737207718 + ], + "libelle_d_acheminement": "MESCOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.425737207718, + 44.7414241256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "513976b1741ecd4dfd6410a19197ad2cd5a0a4c9", + "fields": { + "ligne_5": "LUNAX", + "code_commune_insee": "31412", + "libelle_d_acheminement": "PEGUILHAN", + "code_postal": "31350", + "nom_de_la_commune": "PEGUILHAN", + "coordonnees_gps": [ + 43.3182848209, + 0.703637578751 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.703637578751, + 43.3182848209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f55d4b134ec9371866486f1e586e88e47f8da4a", + "fields": { + "code_commune_insee": "24269", + "nom_de_la_commune": "MIALET", + "code_postal": "24450", + "coordonnees_gps": [ + 45.5689474684, + 0.897873313459 + ], + "libelle_d_acheminement": "MIALET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.897873313459, + 45.5689474684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "594c68ccb59d4b4bf99bf553807e731bd36fcc03", + "fields": { + "code_commune_insee": "31413", + "nom_de_la_commune": "PELLEPORT", + "code_postal": "31480", + "coordonnees_gps": [ + 43.7414209784, + 1.11866923915 + ], + "libelle_d_acheminement": "PELLEPORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11866923915, + 43.7414209784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ab03e0e89be52b95a28be1182a2307c396f5b5c", + "fields": { + "code_commune_insee": "24280", + "nom_de_la_commune": "MONPAZIER", + "code_postal": "24540", + "coordonnees_gps": [ + 44.6807686841, + 0.894082333283 + ], + "libelle_d_acheminement": "MONPAZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.894082333283, + 44.6807686841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1204d426c01c7eda17c5cba51154c88af0fa890b", + "fields": { + "code_commune_insee": "31421", + "nom_de_la_commune": "PINS JUSTARET", + "code_postal": "31860", + "coordonnees_gps": [ + 43.4824421099, + 1.3908759872 + ], + "libelle_d_acheminement": "PINS JUSTARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3908759872, + 43.4824421099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bd482b2eabefc931a14d9b34efcce16dda98487", + "fields": { + "code_commune_insee": "24281", + "nom_de_la_commune": "MONSAC", + "code_postal": "24440", + "coordonnees_gps": [ + 44.7795909631, + 0.692501614089 + ], + "libelle_d_acheminement": "MONSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.692501614089, + 44.7795909631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87033070b2af3715f0581350291aa72e59c5d6bb", + "fields": { + "code_commune_insee": "31436", + "nom_de_la_commune": "POUY DE TOUGES", + "code_postal": "31430", + "coordonnees_gps": [ + 43.3360758375, + 1.04935301244 + ], + "libelle_d_acheminement": "POUY DE TOUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04935301244, + 43.3360758375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a373395b906d2f47f7ebb1e268f9abcf544c8ac4", + "fields": { + "code_commune_insee": "24285", + "nom_de_la_commune": "MONTAGNAC LA CREMPSE", + "code_postal": "24140", + "coordonnees_gps": [ + 44.978515633, + 0.542942043095 + ], + "libelle_d_acheminement": "MONTAGNAC LA CREMPSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.542942043095, + 44.978515633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07fcd67462b4943dc38a4e0a68cfe8574114dd13", + "fields": { + "code_commune_insee": "31439", + "nom_de_la_commune": "PRESERVILLE", + "code_postal": "31570", + "coordonnees_gps": [ + 43.520415718, + 1.63189068715 + ], + "libelle_d_acheminement": "PRESERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63189068715, + 43.520415718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf09fa1b4aee80fe7868ce711bf8a74218bf9f40", + "fields": { + "code_commune_insee": "24290", + "nom_de_la_commune": "MONTFERRAND DU PERIGORD", + "code_postal": "24440", + "coordonnees_gps": [ + 44.7585180837, + 0.874945849363 + ], + "libelle_d_acheminement": "MONTFERRAND DU PERIGORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.874945849363, + 44.7585180837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "821f7089d7b00da5897dbce6220699ef0479c0ab", + "fields": { + "code_commune_insee": "31440", + "nom_de_la_commune": "PROUPIARY", + "code_postal": "31360", + "coordonnees_gps": [ + 43.158322646, + 0.867952822303 + ], + "libelle_d_acheminement": "PROUPIARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.867952822303, + 43.158322646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcc519fc6b4636703b089e5a61f1410acaa47d06", + "fields": { + "code_commune_insee": "24292", + "nom_de_la_commune": "MONTPEYROUX", + "code_postal": "24610", + "coordonnees_gps": [ + 44.9152258027, + 0.0627373400055 + ], + "libelle_d_acheminement": "MONTPEYROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0627373400055, + 44.9152258027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e89112a067a663c53192968cb9713c1d6ccc353", + "fields": { + "code_commune_insee": "31446", + "nom_de_la_commune": "RAMONVILLE ST AGNE", + "code_postal": "31520", + "coordonnees_gps": [ + 43.5441837911, + 1.47782372823 + ], + "libelle_d_acheminement": "RAMONVILLE ST AGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47782372823, + 43.5441837911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98096e4fecf5526d13fd4eddc90544f341d67c76", + "fields": { + "code_commune_insee": "24296", + "nom_de_la_commune": "MOULEYDIER", + "code_postal": "24520", + "coordonnees_gps": [ + 44.8599634791, + 0.617224513886 + ], + "libelle_d_acheminement": "MOULEYDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.617224513886, + 44.8599634791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b722bbc27bf7778bafa72d4cfb2e5bf3e85a3f18", + "fields": { + "ligne_5": "ST FERREOL LE LAC", + "code_commune_insee": "31451", + "libelle_d_acheminement": "REVEL", + "code_postal": "31250", + "nom_de_la_commune": "REVEL", + "coordonnees_gps": [ + 43.4656037799, + 1.99689394052 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99689394052, + 43.4656037799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "448528f01e530c018d01bdc9609e6eb8023e97ca", + "fields": { + "ligne_5": "MARSANEIX", + "code_commune_insee": "24312", + "libelle_d_acheminement": "SANILHAC", + "code_postal": "24750", + "nom_de_la_commune": "SANILHAC", + "coordonnees_gps": [ + 45.1273768173, + 0.712740186269 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.712740186269, + 45.1273768173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70bb8aeaf9b2c391130b5f84c520afefef277fca", + "fields": { + "code_commune_insee": "31453", + "nom_de_la_commune": "RIEUMAJOU", + "code_postal": "31290", + "coordonnees_gps": [ + 43.4120253183, + 1.80278732023 + ], + "libelle_d_acheminement": "RIEUMAJOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80278732023, + 43.4120253183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7a9501c99621ba8c81b86e76ed88ff798a671d0", + "fields": { + "code_commune_insee": "24314", + "nom_de_la_commune": "ORLIAGUET", + "code_postal": "24370", + "coordonnees_gps": [ + 44.9107564817, + 1.38158275558 + ], + "libelle_d_acheminement": "ORLIAGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38158275558, + 44.9107564817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5b4a44f7c47b69049c59db952e07fee96676a35", + "fields": { + "code_commune_insee": "31467", + "nom_de_la_commune": "ST ALBAN", + "code_postal": "31140", + "coordonnees_gps": [ + 43.6927708878, + 1.41260524785 + ], + "libelle_d_acheminement": "ST ALBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41260524785, + 43.6927708878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "249978873fd152547f021038034db07642fe7b69", + "fields": { + "code_commune_insee": "24318", + "nom_de_la_commune": "PAUNAT", + "code_postal": "24510", + "coordonnees_gps": [ + 44.9027724899, + 0.854531456858 + ], + "libelle_d_acheminement": "PAUNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.854531456858, + 44.9027724899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "031def6e4e06f8291a73ac0a4a07f4633ccac10c", + "fields": { + "ligne_5": "LEZ", + "code_commune_insee": "31471", + "libelle_d_acheminement": "ST BEAT LEZ", + "code_postal": "31440", + "nom_de_la_commune": "ST BEAT LEZ", + "coordonnees_gps": [ + 42.9045912184, + 0.685235191061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.685235191061, + 42.9045912184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73114e0121fcd38718a5736b554659f44ce39342", + "fields": { + "code_commune_insee": "24319", + "nom_de_la_commune": "PAUSSAC ET ST VIVIEN", + "code_postal": "24310", + "coordonnees_gps": [ + 45.3463059633, + 0.539590809201 + ], + "libelle_d_acheminement": "PAUSSAC ET ST VIVIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.539590809201, + 45.3463059633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5228261f47a405934cd315f9c857a0124add0417", + "fields": { + "ligne_5": "ST BEAT", + "code_commune_insee": "31471", + "libelle_d_acheminement": "ST BEAT LEZ", + "code_postal": "31440", + "nom_de_la_commune": "ST BEAT LEZ", + "coordonnees_gps": [ + 42.9045912184, + 0.685235191061 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.685235191061, + 42.9045912184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfac7eefb4f5513cd2ff78a6a69a45551653b5e9", + "fields": { + "code_commune_insee": "24323", + "nom_de_la_commune": "PETIT BERSAC", + "code_postal": "24600", + "coordonnees_gps": [ + 45.2695075194, + 0.227208403812 + ], + "libelle_d_acheminement": "PETIT BERSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.227208403812, + 45.2695075194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "207ae906b15b5a879c866e12b3d242a8e4ce1fc7", + "fields": { + "code_commune_insee": "31476", + "nom_de_la_commune": "ST ELIX LE CHATEAU", + "code_postal": "31430", + "coordonnees_gps": [ + 43.2818516873, + 1.13779524495 + ], + "libelle_d_acheminement": "ST ELIX LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13779524495, + 43.2818516873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "573b9b5544c1a5ac0601e7023103da94c0ef9a90", + "fields": { + "code_commune_insee": "24330", + "nom_de_la_commune": "PLAZAC", + "code_postal": "24580", + "coordonnees_gps": [ + 45.0437255305, + 1.03815328208 + ], + "libelle_d_acheminement": "PLAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03815328208, + 45.0437255305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83f3fdc5a36900b6e1d52df7384ad1d97d576e4b", + "fields": { + "code_commune_insee": "31479", + "nom_de_la_commune": "ST FERREOL DE COMMINGES", + "code_postal": "31350", + "coordonnees_gps": [ + 43.3386598955, + 0.736025268663 + ], + "libelle_d_acheminement": "ST FERREOL DE COMMINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.736025268663, + 43.3386598955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f6d95c56741bd40af09eb6fecafc87e42755a1c", + "fields": { + "code_commune_insee": "24331", + "nom_de_la_commune": "POMPORT", + "code_postal": "24240", + "coordonnees_gps": [ + 44.7950411851, + 0.412973178168 + ], + "libelle_d_acheminement": "POMPORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.412973178168, + 44.7950411851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6079324d3bbdf3392ea6ec3196876c411bb818b", + "fields": { + "code_commune_insee": "31483", + "nom_de_la_commune": "ST GAUDENS", + "code_postal": "31800", + "coordonnees_gps": [ + 43.1199260811, + 0.726613564199 + ], + "libelle_d_acheminement": "ST GAUDENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.726613564199, + 43.1199260811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdfb48135e71156b412575125f58e7b43803a708", + "fields": { + "code_commune_insee": "24346", + "nom_de_la_commune": "QUINSAC", + "code_postal": "24530", + "coordonnees_gps": [ + 45.4362563574, + 0.701396321628 + ], + "libelle_d_acheminement": "QUINSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.701396321628, + 45.4362563574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c2b259e5fa227b0d5c03857fc95a19bad452574", + "fields": { + "code_commune_insee": "31484", + "nom_de_la_commune": "ST GENIES BELLEVUE", + "code_postal": "31180", + "coordonnees_gps": [ + 43.6848850771, + 1.48047033439 + ], + "libelle_d_acheminement": "ST GENIES BELLEVUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48047033439, + 43.6848850771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7087d8e0c651f8bc67beb8c6aedcc63bca9ad785", + "fields": { + "code_commune_insee": "24347", + "nom_de_la_commune": "RAMPIEUX", + "code_postal": "24440", + "coordonnees_gps": [ + 44.7033705088, + 0.800770543563 + ], + "libelle_d_acheminement": "RAMPIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.800770543563, + 44.7033705088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e17d467a08e892b363ca9be907c6b564ab47b64", + "fields": { + "code_commune_insee": "31498", + "nom_de_la_commune": "ST LOUP EN COMMINGES", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2423391988, + 0.573273733666 + ], + "libelle_d_acheminement": "ST LOUP EN COMMINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.573273733666, + 43.2423391988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3c47257e180c9a5e88539c7d5466bad3be7f42e", + "fields": { + "code_commune_insee": "24355", + "nom_de_la_commune": "LA ROQUE GAGEAC", + "code_postal": "24250", + "coordonnees_gps": [ + 44.8177613658, + 1.19861057115 + ], + "libelle_d_acheminement": "LA ROQUE GAGEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19861057115, + 44.8177613658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c17c453a03b9534bb19d3ffde0c9d67055e1fa87", + "fields": { + "code_commune_insee": "31520", + "nom_de_la_commune": "SAJAS", + "code_postal": "31370", + "coordonnees_gps": [ + 43.3752549153, + 1.02521661317 + ], + "libelle_d_acheminement": "SAJAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02521661317, + 43.3752549153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "943feeb5438f94b53a16b3ac25977fa361dacbe0", + "fields": { + "ligne_5": "CENDRIEUX", + "code_commune_insee": "24362", + "libelle_d_acheminement": "VAL DE LOUYRE ET CAUDEAU", + "code_postal": "24380", + "nom_de_la_commune": "VAL DE LOUYRE ET CAUDEAU", + "coordonnees_gps": [ + 44.9471700299, + 0.810464512122 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.810464512122, + 44.9471700299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f6d8312310c9321ccd5489e3e05824b530090a8", + "fields": { + "code_commune_insee": "31524", + "nom_de_la_commune": "SALLES ET PRATVIEL", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8332555084, + 0.606780460661 + ], + "libelle_d_acheminement": "SALLES ET PRATVIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.606780460661, + 42.8332555084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcd35fa3f7c28da0684b2d0aca939c190fdb16cf", + "fields": { + "code_commune_insee": "24372", + "nom_de_la_commune": "ST ASTIER", + "code_postal": "24110", + "coordonnees_gps": [ + 45.1484357281, + 0.519678090961 + ], + "libelle_d_acheminement": "ST ASTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.519678090961, + 45.1484357281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15f8d71b987a50da8999ced9611b951b2c0eda44", + "fields": { + "code_commune_insee": "31533", + "nom_de_la_commune": "SAUBENS", + "code_postal": "31600", + "coordonnees_gps": [ + 43.4793134879, + 1.3595994131 + ], + "libelle_d_acheminement": "SAUBENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3595994131, + 43.4793134879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b9453aba4c5073b148e911de32a7f70df4c744e", + "fields": { + "code_commune_insee": "24374", + "nom_de_la_commune": "ST AUBIN DE LANQUAIS", + "code_postal": "24560", + "coordonnees_gps": [ + 44.7969706456, + 0.602118050756 + ], + "libelle_d_acheminement": "ST AUBIN DE LANQUAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.602118050756, + 44.7969706456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1591ffa70e26d574bba0b07aa4cb8dfe437632e7", + "fields": { + "code_commune_insee": "31535", + "nom_de_la_commune": "SAUVETERRE DE COMMINGES", + "code_postal": "31510", + "coordonnees_gps": [ + 43.0336613165, + 0.672650254321 + ], + "libelle_d_acheminement": "SAUVETERRE DE COMMINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.672650254321, + 43.0336613165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4de7a6f99c0c3e92810505b57a22e108019d7520", + "fields": { + "code_commune_insee": "24375", + "nom_de_la_commune": "ST AUBIN DE NABIRAT", + "code_postal": "24250", + "coordonnees_gps": [ + 44.731908542, + 1.28437608808 + ], + "libelle_d_acheminement": "ST AUBIN DE NABIRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28437608808, + 44.731908542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b39fd2039ba42a3914816f5b7290ec0254d454be", + "fields": { + "code_commune_insee": "31536", + "nom_de_la_commune": "SAUX ET POMAREDE", + "code_postal": "31800", + "coordonnees_gps": [ + 43.1487043658, + 0.704879959692 + ], + "libelle_d_acheminement": "SAUX ET POMAREDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.704879959692, + 43.1487043658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2b259fb07a517ee454f4e585a02f1352b200eba", + "fields": { + "code_commune_insee": "24377", + "nom_de_la_commune": "ST AVIT DE VIALARD", + "code_postal": "24260", + "coordonnees_gps": [ + 44.9453704965, + 0.862154837196 + ], + "libelle_d_acheminement": "ST AVIT DE VIALARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.862154837196, + 44.9453704965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2aac7009a02931cc3386323204dea2c05e2ce6f", + "fields": { + "code_commune_insee": "31540", + "nom_de_la_commune": "SEGREVILLE", + "code_postal": "31460", + "coordonnees_gps": [ + 43.4914303481, + 1.74727223861 + ], + "libelle_d_acheminement": "SEGREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74727223861, + 43.4914303481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b681ec4470289e760c22b50f4cee4f6c7e9a52b", + "fields": { + "code_commune_insee": "24392", + "nom_de_la_commune": "ST CREPIN ET CARLUCET", + "code_postal": "24590", + "coordonnees_gps": [ + 44.9565947973, + 1.27615948362 + ], + "libelle_d_acheminement": "ST CREPIN ET CARLUCET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27615948362, + 44.9565947973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74d53f6572f0263392dc2d0d3246fcfb19b60a0c", + "fields": { + "code_commune_insee": "31543", + "nom_de_la_commune": "SENARENS", + "code_postal": "31430", + "coordonnees_gps": [ + 43.3519005165, + 0.97595832154 + ], + "libelle_d_acheminement": "SENARENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97595832154, + 43.3519005165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "357925fa3a7fe8f757b1085b0711c6bd5b02d931", + "fields": { + "code_commune_insee": "24397", + "nom_de_la_commune": "ST CYR LES CHAMPAGNES", + "code_postal": "24270", + "coordonnees_gps": [ + 45.3724597502, + 1.29106108817 + ], + "libelle_d_acheminement": "ST CYR LES CHAMPAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29106108817, + 45.3724597502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67822e738b4f8d446e7f2f39b8cbfa83e83c52a4", + "fields": { + "code_commune_insee": "31546", + "nom_de_la_commune": "SEYRE", + "code_postal": "31560", + "coordonnees_gps": [ + 43.3641254095, + 1.66358744596 + ], + "libelle_d_acheminement": "SEYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66358744596, + 43.3641254095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecbb3d50475bb68e1167c768683b35806b8c9181", + "fields": { + "code_commune_insee": "24406", + "nom_de_la_commune": "STE FOY DE BELVES", + "code_postal": "24170", + "coordonnees_gps": [ + 44.731269814, + 1.03294229921 + ], + "libelle_d_acheminement": "STE FOY DE BELVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03294229921, + 44.731269814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7b970f4d376be3d8ebaec6c4defed95329c4c25", + "fields": { + "code_commune_insee": "31551", + "nom_de_la_commune": "TARABEL", + "code_postal": "31570", + "coordonnees_gps": [ + 43.512330223, + 1.67558246576 + ], + "libelle_d_acheminement": "TARABEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67558246576, + 43.512330223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c126637ff9794ca222260a09e215e3799d4b64e8", + "fields": { + "code_commune_insee": "24415", + "nom_de_la_commune": "ST GERAUD DE CORPS", + "code_postal": "24700", + "coordonnees_gps": [ + 44.9478425672, + 0.239383729477 + ], + "libelle_d_acheminement": "ST GERAUD DE CORPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.239383729477, + 44.9478425672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30a4d4227604111991ef6daa4d78463785e80a1a", + "fields": { + "code_commune_insee": "31554", + "nom_de_la_commune": "TOUILLE", + "code_postal": "31260", + "coordonnees_gps": [ + 43.0835933902, + 0.981777860359 + ], + "libelle_d_acheminement": "TOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.981777860359, + 43.0835933902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "476d0598604c93b814deb63355afe04b26a9dadf", + "fields": { + "code_commune_insee": "24416", + "nom_de_la_commune": "ST GERMAIN DE BELVES", + "code_postal": "24170", + "coordonnees_gps": [ + 44.806098303, + 1.03606561398 + ], + "libelle_d_acheminement": "ST GERMAIN DE BELVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03606561398, + 44.806098303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00460148410bb0a1918b0ca8a176b7da048b8df7", + "fields": { + "code_commune_insee": "31555", + "nom_de_la_commune": "TOULOUSE", + "code_postal": "31100", + "coordonnees_gps": [ + 43.5963814303, + 1.43167293364 + ], + "libelle_d_acheminement": "TOULOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43167293364, + 43.5963814303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64084ba61fc2e6e53f4065b0e0cea535560cdc7c", + "fields": { + "code_commune_insee": "24419", + "nom_de_la_commune": "ST GERMAIN ET MONS", + "code_postal": "24520", + "coordonnees_gps": [ + 44.8286582128, + 0.591211611663 + ], + "libelle_d_acheminement": "ST GERMAIN ET MONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.591211611663, + 44.8286582128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "165cf576c3b5c9434dbccf53849fba31c66ede1d", + "fields": { + "code_commune_insee": "31555", + "nom_de_la_commune": "TOULOUSE", + "code_postal": "31200", + "coordonnees_gps": [ + 43.5963814303, + 1.43167293364 + ], + "libelle_d_acheminement": "TOULOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43167293364, + 43.5963814303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a35e4f15fe1866d080464b6d8594f31bc73d801f", + "fields": { + "code_commune_insee": "24420", + "nom_de_la_commune": "ST GERY", + "code_postal": "24400", + "coordonnees_gps": [ + 44.9760796886, + 0.326025224409 + ], + "libelle_d_acheminement": "ST GERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.326025224409, + 44.9760796886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7333ad949e8a9fbf27f7954b6ddba33a22835ec3", + "fields": { + "code_commune_insee": "31555", + "nom_de_la_commune": "TOULOUSE", + "code_postal": "31400", + "coordonnees_gps": [ + 43.5963814303, + 1.43167293364 + ], + "libelle_d_acheminement": "TOULOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43167293364, + 43.5963814303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c68cb0fea8b30bac728f9ca672eac0623cbc23ab", + "fields": { + "code_commune_insee": "24422", + "nom_de_la_commune": "ST HILAIRE D ESTISSAC", + "code_postal": "24140", + "coordonnees_gps": [ + 45.014476321, + 0.505394906557 + ], + "libelle_d_acheminement": "ST HILAIRE D ESTISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.505394906557, + 45.014476321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13f2fbb2224f603342280f2e50f838eeadf2e84e", + "fields": { + "code_commune_insee": "31558", + "nom_de_la_commune": "TOUTENS", + "code_postal": "31460", + "coordonnees_gps": [ + 43.4752896942, + 1.74625050707 + ], + "libelle_d_acheminement": "TOUTENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74625050707, + 43.4752896942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "601728c9ba1a541fedf3b50ba3d6be645f5e303e", + "fields": { + "ligne_5": "STE EULALIE D EYMET", + "code_commune_insee": "24423", + "libelle_d_acheminement": "ST JULIEN INNOCENCE EULALIE", + "code_postal": "24500", + "nom_de_la_commune": "ST JULIEN INNOCENCE EULALIE", + "coordonnees_gps": [ + 44.7249335654, + 0.394228419824 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.394228419824, + 44.7249335654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53743232c69bed4c47e40d2ba32227fab1826c46", + "fields": { + "code_commune_insee": "31563", + "nom_de_la_commune": "VACQUIERS", + "code_postal": "31340", + "coordonnees_gps": [ + 43.7908380932, + 1.48368573442 + ], + "libelle_d_acheminement": "VACQUIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48368573442, + 43.7908380932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01701d8308b1d51608ef246ef9144f3c7ea7c218", + "fields": { + "code_commune_insee": "24436", + "nom_de_la_commune": "ST LAURENT DES HOMMES", + "code_postal": "24400", + "coordonnees_gps": [ + 45.0440019083, + 0.253242646867 + ], + "libelle_d_acheminement": "ST LAURENT DES HOMMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.253242646867, + 45.0440019083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8c26429c4aefb3111660bc91b883d71bdaae91b", + "fields": { + "code_commune_insee": "31565", + "nom_de_la_commune": "VALENTINE", + "code_postal": "31800", + "coordonnees_gps": [ + 43.0883480821, + 0.701390343132 + ], + "libelle_d_acheminement": "VALENTINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.701390343132, + 43.0883480821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d363cea0046aa10ffb631442d998e5d5f863aa20", + "fields": { + "code_commune_insee": "24442", + "nom_de_la_commune": "ST LEON SUR L ISLE", + "code_postal": "24110", + "coordonnees_gps": [ + 45.1169557791, + 0.49957697448 + ], + "libelle_d_acheminement": "ST LEON SUR L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.49957697448, + 45.1169557791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c158d48c4163269b857a846df4df0f9fcf3561a", + "fields": { + "code_commune_insee": "31570", + "nom_de_la_commune": "VAUX", + "code_postal": "31540", + "coordonnees_gps": [ + 43.460564024, + 1.82846809824 + ], + "libelle_d_acheminement": "VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82846809824, + 43.460564024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea7f579675bec335fcfc6cc39d92c6ba6fd262c0", + "fields": { + "code_commune_insee": "24448", + "nom_de_la_commune": "ST MARTIAL D ALBAREDE", + "code_postal": "24160", + "coordonnees_gps": [ + 45.3214362718, + 1.03713768464 + ], + "libelle_d_acheminement": "ST MARTIAL D ALBAREDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03713768464, + 45.3214362718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65f7cb0b95a18beaa91501819c5c06975512f7e4", + "fields": { + "code_commune_insee": "31578", + "nom_de_la_commune": "VIGOULET AUZIL", + "code_postal": "31320", + "coordonnees_gps": [ + 43.5076843146, + 1.44766808387 + ], + "libelle_d_acheminement": "VIGOULET AUZIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44766808387, + 43.5076843146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8a568cf00d661ef937874e6df77abb1d03bf584", + "fields": { + "code_commune_insee": "24450", + "nom_de_la_commune": "ST MARTIAL DE NABIRAT", + "code_postal": "24250", + "coordonnees_gps": [ + 44.7473185081, + 1.24789673551 + ], + "libelle_d_acheminement": "ST MARTIAL DE NABIRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24789673551, + 44.7473185081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f147c71ff6e1623cb24caeb7bf6a407050bd918", + "fields": { + "code_commune_insee": "31588", + "nom_de_la_commune": "VILLENEUVE TOLOSANE", + "code_postal": "31270", + "coordonnees_gps": [ + 43.5266707182, + 1.34648807644 + ], + "libelle_d_acheminement": "VILLENEUVE TOLOSANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34648807644, + 43.5266707182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b875663d440405cbc5bb635a80059628a27d3b5", + "fields": { + "code_commune_insee": "24455", + "nom_de_la_commune": "ST MARTIN DE RIBERAC", + "code_postal": "24600", + "coordonnees_gps": [ + 45.2201729451, + 0.36189635056 + ], + "libelle_d_acheminement": "ST MARTIN DE RIBERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.36189635056, + 45.2201729451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ca188856f5fd4287dd2c0ee2b4b51a9fae33951", + "fields": { + "code_commune_insee": "31590", + "nom_de_la_commune": "BINOS", + "code_postal": "31440", + "coordonnees_gps": [ + 42.9047176947, + 0.608457875606 + ], + "libelle_d_acheminement": "BINOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.608457875606, + 42.9047176947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8350d08356c71562d4f4d26e83ccea860997dafe", + "fields": { + "code_commune_insee": "24456", + "nom_de_la_commune": "ST MARTIN DES COMBES", + "code_postal": "24140", + "coordonnees_gps": [ + 44.9646004591, + 0.620912139417 + ], + "libelle_d_acheminement": "ST MARTIN DES COMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.620912139417, + 44.9646004591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd05e641827c25898d521c9f58e6d98c795ff3ec", + "fields": { + "code_commune_insee": "31591", + "nom_de_la_commune": "ESCOULIS", + "code_postal": "31260", + "coordonnees_gps": [ + 43.1114465225, + 1.03132758116 + ], + "libelle_d_acheminement": "ESCOULIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03132758116, + 43.1114465225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a53143157ad5b0443603b5e9dd45bfa5da6b008d", + "fields": { + "code_commune_insee": "24459", + "nom_de_la_commune": "ST MAYME DE PEREYROL", + "code_postal": "24380", + "coordonnees_gps": [ + 45.019275797, + 0.654801325879 + ], + "libelle_d_acheminement": "ST MAYME DE PEREYROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.654801325879, + 45.019275797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cd5783b6cc28a9ecd8eae05da40e131e9bbca83", + "fields": { + "code_commune_insee": "31593", + "nom_de_la_commune": "CAZAC", + "code_postal": "31230", + "coordonnees_gps": [ + 43.347568969, + 0.952593670357 + ], + "libelle_d_acheminement": "CAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.952593670357, + 43.347568969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6e481f564939096c6d419774889e9fc7d400208", + "fields": { + "code_commune_insee": "24464", + "nom_de_la_commune": "ST MESMIN", + "code_postal": "24270", + "coordonnees_gps": [ + 45.3466363763, + 1.23648515355 + ], + "libelle_d_acheminement": "ST MESMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23648515355, + 45.3466363763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cf94afc106ad762a60aaa8c46931737f395777d", + "fields": { + "code_commune_insee": "32005", + "nom_de_la_commune": "ARBLADE LE HAUT", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7407745105, + -0.061788186637 + ], + "libelle_d_acheminement": "ARBLADE LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.061788186637, + 43.7407745105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e106addf199d49e6cbd8ebc338118af41dc3338c", + "fields": { + "code_commune_insee": "24466", + "nom_de_la_commune": "ST MICHEL DE MONTAIGNE", + "code_postal": "24230", + "coordonnees_gps": [ + 44.8790451767, + 0.0249387583377 + ], + "libelle_d_acheminement": "ST MICHEL DE MONTAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0249387583377, + 44.8790451767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96941b330dabace4ef2ba44bd29c05a97bc495e8", + "fields": { + "code_commune_insee": "32012", + "nom_de_la_commune": "AUBIET", + "code_postal": "32270", + "coordonnees_gps": [ + 43.6535011222, + 0.784637869521 + ], + "libelle_d_acheminement": "AUBIET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.784637869521, + 43.6535011222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42b135fabe272eb52ffb8beeb6e3080cc4490b90", + "fields": { + "code_commune_insee": "24471", + "nom_de_la_commune": "STE NATHALENE", + "code_postal": "24200", + "coordonnees_gps": [ + 44.9135267404, + 1.28096434427 + ], + "libelle_d_acheminement": "STE NATHALENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28096434427, + 44.9135267404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "317995c9b5cc32115f5999bd9a1610b8cf60c660", + "fields": { + "code_commune_insee": "32016", + "nom_de_la_commune": "AURADE", + "code_postal": "32600", + "coordonnees_gps": [ + 43.5585584214, + 1.07381651463 + ], + "libelle_d_acheminement": "AURADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07381651463, + 43.5585584214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26a2f8a935671fc7539b0be070421de7806b47d2", + "fields": { + "code_commune_insee": "24485", + "nom_de_la_commune": "ST PIERRE DE COLE", + "code_postal": "24800", + "coordonnees_gps": [ + 45.3807175566, + 0.807692228631 + ], + "libelle_d_acheminement": "ST PIERRE DE COLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.807692228631, + 45.3807175566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd454a9bf81fd853a82d198cf20f78f86c8a639d", + "fields": { + "code_commune_insee": "32017", + "nom_de_la_commune": "AURENSAN", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6203342241, + -0.201948167555 + ], + "libelle_d_acheminement": "AURENSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.201948167555, + 43.6203342241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dbfbe8407b50f245eb659517b5fd79dd4ed65cd", + "fields": { + "ligne_5": "FESTALEMPS", + "code_commune_insee": "24490", + "libelle_d_acheminement": "ST PRIVAT EN PERIGORD", + "code_postal": "24410", + "nom_de_la_commune": "ST PRIVAT EN PERIGORD", + "coordonnees_gps": [ + 45.2186240618, + 0.192239513618 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.192239513618, + 45.2186240618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01a1e6a7f333c5377611d08f3f42ff4767cde84a", + "fields": { + "code_commune_insee": "32019", + "nom_de_la_commune": "AUTERIVE", + "code_postal": "32550", + "coordonnees_gps": [ + 43.5796421888, + 0.632117026282 + ], + "libelle_d_acheminement": "AUTERIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.632117026282, + 43.5796421888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2884606bb977af5d7ccdadd232ea0fd586d6746", + "fields": { + "code_commune_insee": "24495", + "nom_de_la_commune": "ST ROMAIN DE MONPAZIER", + "code_postal": "24540", + "coordonnees_gps": [ + 44.7199482027, + 0.882032615949 + ], + "libelle_d_acheminement": "ST ROMAIN DE MONPAZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.882032615949, + 44.7199482027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d27fab8265f28c06f89d6d47726bdeb694c2ad9", + "fields": { + "code_commune_insee": "32023", + "nom_de_la_commune": "AVEZAN", + "code_postal": "32380", + "coordonnees_gps": [ + 43.8832251075, + 0.801715325498 + ], + "libelle_d_acheminement": "AVEZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.801715325498, + 43.8832251075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac17941f49e60f99ef67e005a762618cdcf0ada0", + "fields": { + "code_commune_insee": "24498", + "nom_de_la_commune": "ST SAUD LACOUSSIERE", + "code_postal": "24470", + "coordonnees_gps": [ + 45.5365082688, + 0.839648874583 + ], + "libelle_d_acheminement": "ST SAUD LACOUSSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.839648874583, + 45.5365082688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeee34c652b8aa131a95519d8a43795b4850f941", + "fields": { + "code_commune_insee": "32024", + "nom_de_la_commune": "AYGUETINTE", + "code_postal": "32410", + "coordonnees_gps": [ + 43.8324278378, + 0.418923178256 + ], + "libelle_d_acheminement": "AYGUETINTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.418923178256, + 43.8324278378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "910ed971db73e78cda3ac7892e452b59298748ca", + "fields": { + "code_commune_insee": "24500", + "nom_de_la_commune": "ST SAUVEUR LALANDE", + "code_postal": "24700", + "coordonnees_gps": [ + 44.9770754792, + 0.252681840344 + ], + "libelle_d_acheminement": "ST SAUVEUR LALANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.252681840344, + 44.9770754792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e877b125533619a6a9d378d3f5cc510075df9c2d", + "fields": { + "code_commune_insee": "32027", + "nom_de_la_commune": "BARCELONNE DU GERS", + "code_postal": "32720", + "coordonnees_gps": [ + 43.69328997, + -0.212928744956 + ], + "libelle_d_acheminement": "BARCELONNE DU GERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.212928744956, + 43.69328997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42bfbed5ca1ff4f34179079b311121f68ce79dc3", + "fields": { + "code_commune_insee": "24509", + "nom_de_la_commune": "ST VINCENT DE CONNEZAC", + "code_postal": "24190", + "coordonnees_gps": [ + 45.1654628762, + 0.392273102143 + ], + "libelle_d_acheminement": "ST VINCENT DE CONNEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.392273102143, + 45.1654628762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3e7c6ae3509b8b6b942d90627462a020d17436f", + "fields": { + "code_commune_insee": "32028", + "nom_de_la_commune": "BARCUGNAN", + "code_postal": "32170", + "coordonnees_gps": [ + 43.3739824992, + 0.398211268041 + ], + "libelle_d_acheminement": "BARCUGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.398211268041, + 43.3739824992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3943139384f43f77aa63b8905aac5b44421239b", + "fields": { + "code_commune_insee": "24510", + "nom_de_la_commune": "ST VINCENT DE COSSE", + "code_postal": "24220", + "coordonnees_gps": [ + 44.8391680454, + 1.10957506457 + ], + "libelle_d_acheminement": "ST VINCENT DE COSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10957506457, + 44.8391680454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eed9df21ee97cb9bc78d8a74a3d7cf26b64daa53", + "fields": { + "code_commune_insee": "32030", + "nom_de_la_commune": "BARS", + "code_postal": "32300", + "coordonnees_gps": [ + 43.5112792278, + 0.301731537971 + ], + "libelle_d_acheminement": "BARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301731537971, + 43.5112792278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f391b047664e7a2c811b6fa45ae9ce9935843685", + "fields": { + "code_commune_insee": "24527", + "nom_de_la_commune": "SAVIGNAC LES EGLISES", + "code_postal": "24420", + "coordonnees_gps": [ + 45.2753181041, + 0.911755704648 + ], + "libelle_d_acheminement": "SAVIGNAC LES EGLISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.911755704648, + 45.2753181041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a7479530b21e7af1818540e91134efa54062b18", + "fields": { + "code_commune_insee": "32038", + "nom_de_la_commune": "BEAUPUY", + "code_postal": "32600", + "coordonnees_gps": [ + 43.6453442033, + 1.01319503145 + ], + "libelle_d_acheminement": "BEAUPUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01319503145, + 43.6453442033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a79d292f103060569ee11b500204340fb43e991", + "fields": { + "code_commune_insee": "24529", + "nom_de_la_commune": "SEGONZAC", + "code_postal": "24600", + "coordonnees_gps": [ + 45.2018222099, + 0.438933354109 + ], + "libelle_d_acheminement": "SEGONZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.438933354109, + 45.2018222099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71e2e1b7e1b6cdb82242094a6f392a5a6ea9b872", + "fields": { + "code_commune_insee": "32050", + "nom_de_la_commune": "BETPLAN", + "code_postal": "32730", + "coordonnees_gps": [ + 43.4186571432, + 0.209559608431 + ], + "libelle_d_acheminement": "BETPLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.209559608431, + 43.4186571432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18d3e8a979ee04687efbbb9bfe3348392e610a4b", + "fields": { + "code_commune_insee": "24533", + "nom_de_la_commune": "SERVANCHES", + "code_postal": "24410", + "coordonnees_gps": [ + 45.1333452116, + 0.164750778267 + ], + "libelle_d_acheminement": "SERVANCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.164750778267, + 45.1333452116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9e1499d94075c5f69b3c452995ffb535b51742f", + "fields": { + "code_commune_insee": "32056", + "nom_de_la_commune": "BLANQUEFORT", + "code_postal": "32270", + "coordonnees_gps": [ + 43.6742793399, + 0.807524720457 + ], + "libelle_d_acheminement": "BLANQUEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.807524720457, + 43.6742793399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09f7606e4adc5f4923b8bde30796eaebfe7523c5", + "fields": { + "ligne_5": "FLAUGEAC", + "code_commune_insee": "24534", + "libelle_d_acheminement": "SIGOULES ET FLAUGEAC", + "code_postal": "24240", + "nom_de_la_commune": "SIGOULES ET FLAUGEAC", + "coordonnees_gps": [ + 44.757893297, + 0.39899735625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39899735625, + 44.757893297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6091c2616cab35a51217a3fe40b0451bead3655c", + "fields": { + "code_commune_insee": "32057", + "nom_de_la_commune": "BLAZIERT", + "code_postal": "32100", + "coordonnees_gps": [ + 43.9259342148, + 0.484820002979 + ], + "libelle_d_acheminement": "BLAZIERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.484820002979, + 43.9259342148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30698b0386fe85ed2456ddcef0a046b68bb6651d", + "fields": { + "ligne_5": "SIGOULES", + "code_commune_insee": "24534", + "libelle_d_acheminement": "SIGOULES ET FLAUGEAC", + "code_postal": "24240", + "nom_de_la_commune": "SIGOULES ET FLAUGEAC", + "coordonnees_gps": [ + 44.757893297, + 0.39899735625 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39899735625, + 44.757893297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb7e57c19b9a27861ab4d158d6711ddfa4a3712d", + "fields": { + "code_commune_insee": "32064", + "nom_de_la_commune": "BRETAGNE D ARMAGNAC", + "code_postal": "32800", + "coordonnees_gps": [ + 43.8896729368, + 0.135584671666 + ], + "libelle_d_acheminement": "BRETAGNE D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.135584671666, + 43.8896729368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "624480ffe2a33be708388d71b4bad54663ee2e68", + "fields": { + "code_commune_insee": "24535", + "nom_de_la_commune": "SIMEYROLS", + "code_postal": "24370", + "coordonnees_gps": [ + 44.9148518315, + 1.33870597483 + ], + "libelle_d_acheminement": "SIMEYROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33870597483, + 44.9148518315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a571de638350df49222c8ed23bbcb47f60a135c", + "fields": { + "code_commune_insee": "32065", + "nom_de_la_commune": "LE BROUILH MONBERT", + "code_postal": "32350", + "coordonnees_gps": [ + 43.6604118625, + 0.395065055584 + ], + "libelle_d_acheminement": "LE BROUILH MONBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.395065055584, + 43.6604118625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d5b2db2e2e956a9eabdf2fa2ed452f2719ff335", + "fields": { + "code_commune_insee": "24538", + "nom_de_la_commune": "SIORAC EN PERIGORD", + "code_postal": "24170", + "coordonnees_gps": [ + 44.8168407105, + 0.979352621358 + ], + "libelle_d_acheminement": "SIORAC EN PERIGORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.979352621358, + 44.8168407105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fee155a528a6b775531d6789e9f4a75ae0ab6541", + "fields": { + "ligne_5": "MONBERT", + "code_commune_insee": "32065", + "libelle_d_acheminement": "LE BROUILH MONBERT", + "code_postal": "32350", + "nom_de_la_commune": "LE BROUILH MONBERT", + "coordonnees_gps": [ + 43.6604118625, + 0.395065055584 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.395065055584, + 43.6604118625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07242528b52c212ebeccde87f483215297f4b431", + "fields": { + "code_commune_insee": "24548", + "nom_de_la_commune": "TEYJAT", + "code_postal": "24300", + "coordonnees_gps": [ + 45.5905740595, + 0.579549924927 + ], + "libelle_d_acheminement": "TEYJAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.579549924927, + 45.5905740595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58da40c0985084c07fc17e901d11f68d209f606c", + "fields": { + "code_commune_insee": "32076", + "nom_de_la_commune": "CASTELNAU BARBARENS", + "code_postal": "32450", + "coordonnees_gps": [ + 43.5810895622, + 0.724408794123 + ], + "libelle_d_acheminement": "CASTELNAU BARBARENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.724408794123, + 43.5810895622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "130132ed26ecebe104a8807fc07219524f5e1c1c", + "fields": { + "ligne_5": "MONBOS", + "code_commune_insee": "24549", + "libelle_d_acheminement": "THENAC", + "code_postal": "24240", + "nom_de_la_commune": "THENAC", + "coordonnees_gps": [ + 44.7458412342, + 0.354889717281 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.354889717281, + 44.7458412342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf3ef100162945ea6bb276696e442e42d6dfd14d", + "fields": { + "code_commune_insee": "32091", + "nom_de_la_commune": "CASTIN", + "code_postal": "32810", + "coordonnees_gps": [ + 43.6939093096, + 0.536074019459 + ], + "libelle_d_acheminement": "CASTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.536074019459, + 43.6939093096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e196be571ed4841f5dd34f3a3c8ad32b0a2ab57", + "fields": { + "ligne_5": "PUYGUILHEM", + "code_commune_insee": "24549", + "libelle_d_acheminement": "THENAC", + "code_postal": "24240", + "nom_de_la_commune": "THENAC", + "coordonnees_gps": [ + 44.7458412342, + 0.354889717281 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.354889717281, + 44.7458412342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "446ae41ad9ccb73330b1fd3b204b0e89aff0c42e", + "fields": { + "code_commune_insee": "32096", + "nom_de_la_commune": "CAZAUBON", + "code_postal": "32150", + "coordonnees_gps": [ + 43.9251854258, + -0.028737932075 + ], + "libelle_d_acheminement": "CAZAUBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.028737932075, + 43.9251854258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e49ca35b324fb6090e31fdb7e009b269b36e5fa", + "fields": { + "code_commune_insee": "24552", + "nom_de_la_commune": "THONAC", + "code_postal": "24290", + "coordonnees_gps": [ + 45.0373590317, + 1.10562801671 + ], + "libelle_d_acheminement": "THONAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10562801671, + 45.0373590317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "767dffc8494d930a8f87b461678bb87809f42783", + "fields": { + "code_commune_insee": "32104", + "nom_de_la_commune": "CLERMONT POUYGUILLES", + "code_postal": "32300", + "coordonnees_gps": [ + 43.4769070936, + 0.524132562872 + ], + "libelle_d_acheminement": "CLERMONT POUYGUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.524132562872, + 43.4769070936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "918b5aa6c1d0c36861810d3bfe3ec86c2a09de48", + "fields": { + "code_commune_insee": "24553", + "nom_de_la_commune": "TOCANE ST APRE", + "code_postal": "24350", + "coordonnees_gps": [ + 45.2373278199, + 0.496959112951 + ], + "libelle_d_acheminement": "TOCANE ST APRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.496959112951, + 45.2373278199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b796543272868cad61d312f16bc0c527f2aa88a", + "fields": { + "code_commune_insee": "32107", + "nom_de_la_commune": "CONDOM", + "code_postal": "32100", + "coordonnees_gps": [ + 43.9716968333, + 0.374186827134 + ], + "libelle_d_acheminement": "CONDOM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.374186827134, + 43.9716968333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a579b7abee59abd824e62dbf8d304b25d606f80", + "fields": { + "code_commune_insee": "24562", + "nom_de_la_commune": "VALLEREUIL", + "code_postal": "24190", + "coordonnees_gps": [ + 45.0715539505, + 0.499522594604 + ], + "libelle_d_acheminement": "VALLEREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.499522594604, + 45.0715539505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57f668d23b702b55db3b49d17963c2f5df041cfd", + "fields": { + "code_commune_insee": "32112", + "nom_de_la_commune": "CRASTES", + "code_postal": "32270", + "coordonnees_gps": [ + 43.7156978127, + 0.73114243925 + ], + "libelle_d_acheminement": "CRASTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73114243925, + 43.7156978127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca556aac57f783a660b5dd5b5c7eb380691cc7fc", + "fields": { + "code_commune_insee": "24568", + "nom_de_la_commune": "VELINES", + "code_postal": "24230", + "coordonnees_gps": [ + 44.8569027334, + 0.112194568411 + ], + "libelle_d_acheminement": "VELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.112194568411, + 44.8569027334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f840570f0190a0374ddedbf1e64961a4a94b84e7", + "fields": { + "code_commune_insee": "32116", + "nom_de_la_commune": "DUFFORT", + "code_postal": "32170", + "coordonnees_gps": [ + 43.3407927968, + 0.419689843256 + ], + "libelle_d_acheminement": "DUFFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.419689843256, + 43.3407927968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3feb52f3597348472e7e5f039bbfb56e556f4b16", + "fields": { + "code_commune_insee": "24575", + "nom_de_la_commune": "VEYRINES DE DOMME", + "code_postal": "24250", + "coordonnees_gps": [ + 44.8003671958, + 1.10571535957 + ], + "libelle_d_acheminement": "VEYRINES DE DOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10571535957, + 44.8003671958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f246ad5dbe85027225653ae441ac8a63eb0b7bc", + "fields": { + "code_commune_insee": "32118", + "nom_de_la_commune": "DURBAN", + "code_postal": "32260", + "coordonnees_gps": [ + 43.5390207852, + 0.5656981485 + ], + "libelle_d_acheminement": "DURBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.5656981485, + 43.5390207852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97a1fd5afec1fc63c8e63ffe1baf28c3b07a2c77", + "fields": { + "code_commune_insee": "24582", + "nom_de_la_commune": "VILLARS", + "code_postal": "24530", + "coordonnees_gps": [ + 45.4222375236, + 0.766527343161 + ], + "libelle_d_acheminement": "VILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.766527343161, + 45.4222375236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dae08bbc1a795e6ee97e3fdd2dcba1416c2c64fb", + "fields": { + "code_commune_insee": "32124", + "nom_de_la_commune": "ESPAON", + "code_postal": "32220", + "coordonnees_gps": [ + 43.4291996718, + 0.870269920288 + ], + "libelle_d_acheminement": "ESPAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.870269920288, + 43.4291996718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cafebba5ae55f6261ec05d7f5008ce8a4e59148", + "fields": { + "code_commune_insee": "24585", + "nom_de_la_commune": "VILLEFRANCHE DU PERIGORD", + "code_postal": "24550", + "coordonnees_gps": [ + 44.6334322041, + 1.10745055962 + ], + "libelle_d_acheminement": "VILLEFRANCHE DU PERIGORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10745055962, + 44.6334322041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a4d5164e38d24942a84c49ca72ec2657728db2f", + "fields": { + "code_commune_insee": "32126", + "nom_de_la_commune": "ESTAMPES", + "code_postal": "32170", + "coordonnees_gps": [ + 43.4000716768, + 0.278946241773 + ], + "libelle_d_acheminement": "ESTAMPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.278946241773, + 43.4000716768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b17c04e5dcd5f226d0d6fba0cd1e5544c91cbade", + "fields": { + "code_commune_insee": "25009", + "nom_de_la_commune": "AISSEY", + "code_postal": "25360", + "coordonnees_gps": [ + 47.2699271702, + 6.32693976026 + ], + "libelle_d_acheminement": "AISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32693976026, + 47.2699271702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83aedb3fe36c71dd34cd5e4253a9fe7f15b085cd", + "fields": { + "code_commune_insee": "32140", + "nom_de_la_commune": "GAUJAC", + "code_postal": "32220", + "coordonnees_gps": [ + 43.4746394425, + 0.825606572307 + ], + "libelle_d_acheminement": "GAUJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.825606572307, + 43.4746394425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dee975015ae8e3938b8e2e4f9ed6d718254fa24d", + "fields": { + "code_commune_insee": "25011", + "nom_de_la_commune": "ALLENJOIE", + "code_postal": "25490", + "coordonnees_gps": [ + 47.5354537745, + 6.8931467059 + ], + "libelle_d_acheminement": "ALLENJOIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8931467059, + 47.5354537745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eb3c57ca7e313271df14b21442654fb8348d300", + "fields": { + "code_commune_insee": "32148", + "nom_de_la_commune": "GISCARO", + "code_postal": "32200", + "coordonnees_gps": [ + 43.6065164877, + 0.93402419559 + ], + "libelle_d_acheminement": "GISCARO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93402419559, + 43.6065164877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "226d52c00329a0c595368ceb4cbdcad75b73080f", + "fields": { + "code_commune_insee": "25016", + "nom_de_la_commune": "AMATHAY VESIGNEUX", + "code_postal": "25330", + "coordonnees_gps": [ + 47.0231471184, + 6.19580927282 + ], + "libelle_d_acheminement": "AMATHAY VESIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19580927282, + 47.0231471184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0951c3f551466aec8cd3b831bae94304ba0baaba", + "fields": { + "code_commune_insee": "32160", + "nom_de_la_commune": "L ISLE JOURDAIN", + "code_postal": "32600", + "coordonnees_gps": [ + 43.6144926041, + 1.08127836593 + ], + "libelle_d_acheminement": "L ISLE JOURDAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08127836593, + 43.6144926041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dfedffe97818778339d591a4c3bec782148d465", + "fields": { + "ligne_5": "GLAINANS", + "code_commune_insee": "25018", + "libelle_d_acheminement": "ANTEUIL", + "code_postal": "25340", + "nom_de_la_commune": "ANTEUIL", + "coordonnees_gps": [ + 47.3758227575, + 6.57605269789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57605269789, + 47.3758227575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f02fc8d5d1c79fa00805aaf853a8a37b7b463a9c", + "fields": { + "code_commune_insee": "32167", + "nom_de_la_commune": "LAAS", + "code_postal": "32170", + "coordonnees_gps": [ + 43.4720603975, + 0.301177050148 + ], + "libelle_d_acheminement": "LAAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.301177050148, + 43.4720603975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0743b6e2619129dbca22205d8480cf74f0f0920", + "fields": { + "ligne_5": "TOURNEDOZ", + "code_commune_insee": "25018", + "libelle_d_acheminement": "ANTEUIL", + "code_postal": "25340", + "nom_de_la_commune": "ANTEUIL", + "coordonnees_gps": [ + 47.3758227575, + 6.57605269789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57605269789, + 47.3758227575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8770947e280155616e10a2325838429feb60d410", + "fields": { + "code_commune_insee": "32172", + "nom_de_la_commune": "LABEJAN", + "code_postal": "32300", + "coordonnees_gps": [ + 43.5370051411, + 0.510006056574 + ], + "libelle_d_acheminement": "LABEJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.510006056574, + 43.5370051411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec1b71b2f21648e495aa742a1626556eecb8b6ca", + "fields": { + "code_commune_insee": "25021", + "nom_de_la_commune": "ARC ET SENANS", + "code_postal": "25610", + "coordonnees_gps": [ + 47.0351046371, + 5.76978366413 + ], + "libelle_d_acheminement": "ARC ET SENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76978366413, + 47.0351046371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4775b502662dd92c2cd308d5f30d28514f5514e6", + "fields": { + "code_commune_insee": "32174", + "nom_de_la_commune": "LADEVEZE RIVIERE", + "code_postal": "32230", + "coordonnees_gps": [ + 43.5507415882, + 0.0840810625549 + ], + "libelle_d_acheminement": "LADEVEZE RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0840810625549, + 43.5507415882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5de6bfbd0e982e94d9f61f90297e6babac8bad75", + "fields": { + "code_commune_insee": "25033", + "nom_de_la_commune": "AUTECHAUX ROIDE", + "code_postal": "25150", + "coordonnees_gps": [ + 47.3889980473, + 6.8102011305 + ], + "libelle_d_acheminement": "AUTECHAUX ROIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8102011305, + 47.3889980473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cff9b9fd6a102f89b987f029a54086360a946369", + "fields": { + "code_commune_insee": "32180", + "nom_de_la_commune": "LAGRAULET DU GERS", + "code_postal": "32330", + "coordonnees_gps": [ + 43.8903093881, + 0.200736474088 + ], + "libelle_d_acheminement": "LAGRAULET DU GERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.200736474088, + 43.8903093881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc47ea2d41a4d80883f6d48828e32992d978027a", + "fields": { + "code_commune_insee": "25036", + "nom_de_la_commune": "AVANNE AVENEY", + "code_postal": "25720", + "coordonnees_gps": [ + 47.2013939319, + 5.9554996988 + ], + "libelle_d_acheminement": "AVANNE AVENEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9554996988, + 47.2013939319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1abf36cd7d8b82a1804b4aa2cb7b415efc14ee53", + "fields": { + "code_commune_insee": "32183", + "nom_de_la_commune": "LAHITTE", + "code_postal": "32810", + "coordonnees_gps": [ + 43.6575045721, + 0.680276833555 + ], + "libelle_d_acheminement": "LAHITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.680276833555, + 43.6575045721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94e6700a30b31cf8878d36a0d3f751851b24fa60", + "fields": { + "code_commune_insee": "25047", + "nom_de_la_commune": "BAUME LES DAMES", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3544401776, + 6.34345370275 + ], + "libelle_d_acheminement": "BAUME LES DAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34345370275, + 47.3544401776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f778503bb272b1d23cc3a70e87aaac855bc289b1", + "fields": { + "code_commune_insee": "32185", + "nom_de_la_commune": "LALANNE ARQUE", + "code_postal": "32140", + "coordonnees_gps": [ + 43.3265650182, + 0.640391489316 + ], + "libelle_d_acheminement": "LALANNE ARQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.640391489316, + 43.3265650182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dead889ba8f73f656488a4833915cbc2d1567fdc", + "fields": { + "code_commune_insee": "25054", + "nom_de_la_commune": "BERCHE", + "code_postal": "25420", + "coordonnees_gps": [ + 47.4657374003, + 6.7470940732 + ], + "libelle_d_acheminement": "BERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7470940732, + 47.4657374003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee1bb1eb0dbaf6d9b0706fdc87a5f7ae94c8db67", + "fields": { + "code_commune_insee": "32192", + "nom_de_la_commune": "LANNUX", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6452094279, + -0.223285876187 + ], + "libelle_d_acheminement": "LANNUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.223285876187, + 43.6452094279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e24a0c3e412d05ebc70819f4d6575856672cede9", + "fields": { + "code_commune_insee": "25072", + "nom_de_la_commune": "BONNAL", + "code_postal": "25680", + "coordonnees_gps": [ + 47.5072386954, + 6.36538228844 + ], + "libelle_d_acheminement": "BONNAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36538228844, + 47.5072386954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eb11784656a25a1d43eb643f90bbf660869cca3", + "fields": { + "code_commune_insee": "32197", + "nom_de_la_commune": "LARROQUE SUR L OSSE", + "code_postal": "32100", + "coordonnees_gps": [ + 43.9755473747, + 0.282230658284 + ], + "libelle_d_acheminement": "LARROQUE SUR L OSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.282230658284, + 43.9755473747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "facee1718c8cd0eef17b154952983e8576347266", + "fields": { + "code_commune_insee": "25073", + "nom_de_la_commune": "BONNAY", + "code_postal": "25870", + "coordonnees_gps": [ + 47.3292152038, + 6.04469587885 + ], + "libelle_d_acheminement": "BONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04469587885, + 47.3292152038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddb4bb7d603518c132aafc5c63dda6017424e882", + "fields": { + "code_commune_insee": "32199", + "nom_de_la_commune": "LASSERRADE", + "code_postal": "32160", + "coordonnees_gps": [ + 43.6298461765, + 0.0609345558619 + ], + "libelle_d_acheminement": "LASSERRADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0609345558619, + 43.6298461765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d35bea6081b7a4baf5eeda5711909e258dad2aff", + "fields": { + "code_commune_insee": "25074", + "nom_de_la_commune": "BONNETAGE", + "code_postal": "25210", + "coordonnees_gps": [ + 47.1802952744, + 6.73897461794 + ], + "libelle_d_acheminement": "BONNETAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73897461794, + 47.1802952744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69397a2c442e04803189b1d16d0ba856879b3e57", + "fields": { + "code_commune_insee": "32202", + "nom_de_la_commune": "LAUJUZAN", + "code_postal": "32110", + "coordonnees_gps": [ + 43.8030824255, + -0.115343246115 + ], + "libelle_d_acheminement": "LAUJUZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.115343246115, + 43.8030824255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5219b45b37d273d7b55820cece7df7732d8e4eb0", + "fields": { + "code_commune_insee": "25088", + "nom_de_la_commune": "BRECONCHAUX", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3418237888, + 6.27061644005 + ], + "libelle_d_acheminement": "BRECONCHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27061644005, + 47.3418237888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09f4c72ace4e7b4b8dec54dcfd1c4167a116cf4c", + "fields": { + "code_commune_insee": "32203", + "nom_de_la_commune": "LAURAET", + "code_postal": "32330", + "coordonnees_gps": [ + 43.923512949, + 0.256724176995 + ], + "libelle_d_acheminement": "LAURAET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.256724176995, + 43.923512949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c26e91209e232aa0aae6d57d12c2dff2ca49c457", + "fields": { + "code_commune_insee": "25092", + "nom_de_la_commune": "LA BRETENIERE", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3774609296, + 6.27686840892 + ], + "libelle_d_acheminement": "LA BRETENIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27686840892, + 47.3774609296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44693aae2174030a1050f045b7749b5107e859ae", + "fields": { + "code_commune_insee": "32207", + "nom_de_la_commune": "LEBOULIN", + "code_postal": "32810", + "coordonnees_gps": [ + 43.670877929, + 0.660565721103 + ], + "libelle_d_acheminement": "LEBOULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.660565721103, + 43.670877929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb2ab5aa4dc266f02ee8fbaf53c3c02478d62d2c", + "fields": { + "code_commune_insee": "25100", + "nom_de_la_commune": "BULLE", + "code_postal": "25560", + "coordonnees_gps": [ + 46.9056438268, + 6.20178714478 + ], + "libelle_d_acheminement": "BULLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20178714478, + 46.9056438268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0d109d851c902cbc24f169a3767fd7d0a69d337", + "fields": { + "code_commune_insee": "32210", + "nom_de_la_commune": "LIAS", + "code_postal": "32600", + "coordonnees_gps": [ + 43.5677012394, + 1.13315206231 + ], + "libelle_d_acheminement": "LIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13315206231, + 43.5677012394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "214d44f6a58176aaa98df8bba1910ea9510864ab", + "fields": { + "code_commune_insee": "25104", + "nom_de_la_commune": "BY", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0123694644, + 5.89880744574 + ], + "libelle_d_acheminement": "BY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89880744574, + 47.0123694644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab35c41814d9c38eb2d46b441204c7e26b066591", + "fields": { + "code_commune_insee": "32213", + "nom_de_la_commune": "LOMBEZ", + "code_postal": "32220", + "coordonnees_gps": [ + 43.4666661613, + 0.901915416413 + ], + "libelle_d_acheminement": "LOMBEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.901915416413, + 43.4666661613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc8a5794bcd4dc0cc8e6b15a99e33bd5259419fa", + "fields": { + "code_commune_insee": "25107", + "nom_de_la_commune": "CENDREY", + "code_postal": "25640", + "coordonnees_gps": [ + 47.39870448, + 6.24551247571 + ], + "libelle_d_acheminement": "CENDREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24551247571, + 47.39870448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90deba289ac1dc1e1244d7762266f92f267ec8f2", + "fields": { + "code_commune_insee": "32216", + "nom_de_la_commune": "LOURTIES MONBRUN", + "code_postal": "32140", + "coordonnees_gps": [ + 43.4572752251, + 0.546073005059 + ], + "libelle_d_acheminement": "LOURTIES MONBRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.546073005059, + 43.4572752251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9562d81c793776ade81d22f16cae099521b4dc27", + "fields": { + "code_commune_insee": "25112", + "nom_de_la_commune": "CHALEZEULE", + "code_postal": "25220", + "coordonnees_gps": [ + 47.2566492293, + 6.0658783817 + ], + "libelle_d_acheminement": "CHALEZEULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0658783817, + 47.2566492293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "295ba8cf68d3e5b95c9e95d39c78a11183e40361", + "fields": { + "code_commune_insee": "32220", + "nom_de_la_commune": "LUPPE VIOLLES", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7351599052, + -0.143601198849 + ], + "libelle_d_acheminement": "LUPPE VIOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.143601198849, + 43.7351599052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b9bf4d1f5014a09866a46d0da21c96352ff2299", + "fields": { + "code_commune_insee": "25113", + "nom_de_la_commune": "CHAMESEY", + "code_postal": "25380", + "coordonnees_gps": [ + 47.2367237059, + 6.63188874418 + ], + "libelle_d_acheminement": "CHAMESEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63188874418, + 47.2367237059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec2cb205812921199976dd4d9dc6dc56111122db", + "fields": { + "code_commune_insee": "32221", + "nom_de_la_commune": "LUSSAN", + "code_postal": "32270", + "coordonnees_gps": [ + 43.6197914762, + 0.739735287633 + ], + "libelle_d_acheminement": "LUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.739735287633, + 43.6197914762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0034db296fff6a628344319cefe98db32f56d299", + "fields": { + "ligne_5": "LE BOULOIS", + "code_commune_insee": "25127", + "libelle_d_acheminement": "CHARQUEMONT", + "code_postal": "25140", + "nom_de_la_commune": "CHARQUEMONT", + "coordonnees_gps": [ + 47.2015092122, + 6.84277738183 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84277738183, + 47.2015092122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0443bd2e1166b180fb8f4731b06949af335f170f", + "fields": { + "code_commune_insee": "32222", + "nom_de_la_commune": "MAGNAN", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7625963893, + -0.116396743253 + ], + "libelle_d_acheminement": "MAGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.116396743253, + 43.7625963893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f460b79ec3e7c41032ecabb635f5a7c87218c32c", + "fields": { + "code_commune_insee": "25132", + "nom_de_la_commune": "CHATILLON GUYOTTE", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3279230073, + 6.16849759872 + ], + "libelle_d_acheminement": "CHATILLON GUYOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16849759872, + 47.3279230073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94b8fc50d887e979d04e6483f84f646aac596780", + "fields": { + "code_commune_insee": "32225", + "nom_de_la_commune": "MALABAT", + "code_postal": "32730", + "coordonnees_gps": [ + 43.431964924, + 0.19281822284 + ], + "libelle_d_acheminement": "MALABAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19281822284, + 43.431964924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa824c006288537dc369497648898d7defb8e6c5", + "fields": { + "code_commune_insee": "25134", + "nom_de_la_commune": "CHATILLON SUR LISON", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0727898717, + 5.98071309837 + ], + "libelle_d_acheminement": "CHATILLON SUR LISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98071309837, + 47.0727898717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fefbfd5ba197a08936cea607ea1b9dd4fab9993", + "fields": { + "code_commune_insee": "32234", + "nom_de_la_commune": "MARESTAING", + "code_postal": "32490", + "coordonnees_gps": [ + 43.5842074284, + 1.01573782647 + ], + "libelle_d_acheminement": "MARESTAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01573782647, + 43.5842074284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e7a95012e6d2c9b35e09e810135438243f871a5", + "fields": { + "code_commune_insee": "25136", + "nom_de_la_commune": "CHAUCENNE", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2844716693, + 5.89456296262 + ], + "libelle_d_acheminement": "CHAUCENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89456296262, + 47.2844716693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7284cbc220b799b403ed298e5f888aa41786066f", + "fields": { + "code_commune_insee": "32236", + "nom_de_la_commune": "MARGUESTAU", + "code_postal": "32150", + "coordonnees_gps": [ + 43.8815660934, + -0.0385530828581 + ], + "libelle_d_acheminement": "MARGUESTAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0385530828581, + 43.8815660934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c46d787193174472ca3eef4cbcc6273bac6685f5", + "fields": { + "code_commune_insee": "25142", + "nom_de_la_commune": "CHAUX NEUVE", + "code_postal": "25240", + "coordonnees_gps": [ + 46.6555343865, + 6.15249971809 + ], + "libelle_d_acheminement": "CHAUX NEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15249971809, + 46.6555343865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e8b9de86b3b1b7ff4f10fd2c0c0a64ff76c8751", + "fields": { + "code_commune_insee": "32239", + "nom_de_la_commune": "MARSOLAN", + "code_postal": "32700", + "coordonnees_gps": [ + 43.9410871869, + 0.536253009909 + ], + "libelle_d_acheminement": "MARSOLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.536253009909, + 43.9410871869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7196c2cae1191f8eab2bc46ad7123a6241f90e4", + "fields": { + "code_commune_insee": "25145", + "nom_de_la_commune": "CHAZOT", + "code_postal": "25430", + "coordonnees_gps": [ + 47.328216535, + 6.53902040431 + ], + "libelle_d_acheminement": "CHAZOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53902040431, + 47.328216535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "835d133a4dcedb48ba6100afee5d42661587169c", + "fields": { + "code_commune_insee": "32241", + "nom_de_la_commune": "MAS D AUVIGNON", + "code_postal": "32700", + "coordonnees_gps": [ + 43.8915218627, + 0.505530221508 + ], + "libelle_d_acheminement": "MAS D AUVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.505530221508, + 43.8915218627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cfa4f7d58c1353005f7b77e1b975a684694ffb7", + "fields": { + "code_commune_insee": "25154", + "nom_de_la_commune": "CHOUZELOT", + "code_postal": "25440", + "coordonnees_gps": [ + 47.1232109749, + 5.9086321902 + ], + "libelle_d_acheminement": "CHOUZELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9086321902, + 47.1232109749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1f3025efb78b2bfadc261d104c3aab53649b7f4", + "fields": { + "code_commune_insee": "32244", + "nom_de_la_commune": "MAULICHERES", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6863853062, + -0.0854584441298 + ], + "libelle_d_acheminement": "MAULICHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0854584441298, + 43.6863853062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02370e40de4f3445b11da8c5e5b9761faaeb3c49", + "fields": { + "ligne_5": "CHAUX LES CLERVAL", + "code_commune_insee": "25156", + "libelle_d_acheminement": "PAYS DE CLERVAL", + "code_postal": "25340", + "nom_de_la_commune": "PAYS DE CLERVAL", + "coordonnees_gps": [ + 47.3991705551, + 6.50259246766 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50259246766, + 47.3991705551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e874a4b3d65899efb34e1fb40ec83cc0da021f08", + "fields": { + "code_commune_insee": "32256", + "nom_de_la_commune": "MIRANDE", + "code_postal": "32300", + "coordonnees_gps": [ + 43.5186713962, + 0.410792361049 + ], + "libelle_d_acheminement": "MIRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.410792361049, + 43.5186713962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e384bdcc9770914c926988405c451e5670cd2327", + "fields": { + "ligne_5": "MAMBOUHANS", + "code_commune_insee": "25187", + "libelle_d_acheminement": "DAMBELIN", + "code_postal": "25150", + "nom_de_la_commune": "DAMBELIN", + "coordonnees_gps": [ + 47.3691799616, + 6.66774947853 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66774947853, + 47.3691799616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cc205deff455c14d0b521a4edfcbe8bcb1aeb88", + "fields": { + "code_commune_insee": "32260", + "nom_de_la_commune": "MONBARDON", + "code_postal": "32420", + "coordonnees_gps": [ + 43.3806524383, + 0.716563554574 + ], + "libelle_d_acheminement": "MONBARDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.716563554574, + 43.3806524383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8277bb46b6e11daf06aa78f639ce282b3573461", + "fields": { + "code_commune_insee": "25189", + "nom_de_la_commune": "DAMMARTIN LES TEMPLIERS", + "code_postal": "25110", + "coordonnees_gps": [ + 47.2933253789, + 6.28044164723 + ], + "libelle_d_acheminement": "DAMMARTIN LES TEMPLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28044164723, + 47.2933253789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "208b8fdd862cd9addc26708fdca03a86492f89d1", + "fields": { + "code_commune_insee": "32269", + "nom_de_la_commune": "MONFORT", + "code_postal": "32120", + "coordonnees_gps": [ + 43.7914130393, + 0.824811045204 + ], + "libelle_d_acheminement": "MONFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.824811045204, + 43.7914130393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "865576f6c85127fdcbfdf61ac2dd5be0e5cb8134", + "fields": { + "code_commune_insee": "25194", + "nom_de_la_commune": "DANNEMARIE", + "code_postal": "25310", + "coordonnees_gps": [ + 47.3889972456, + 6.9000175163 + ], + "libelle_d_acheminement": "DANNEMARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9000175163, + 47.3889972456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bd61224ce8a3bab6414f671938e6f5bba8ab710", + "fields": { + "code_commune_insee": "32275", + "nom_de_la_commune": "MONPARDIAC", + "code_postal": "32170", + "coordonnees_gps": [ + 43.4636060332, + 0.245133551575 + ], + "libelle_d_acheminement": "MONPARDIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.245133551575, + 43.4636060332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4340e9426e6923f6a80578a31cab7067f8a3a31f", + "fields": { + "code_commune_insee": "25208", + "nom_de_la_commune": "DURNES", + "code_postal": "25580", + "coordonnees_gps": [ + 47.1065731832, + 6.22362576213 + ], + "libelle_d_acheminement": "DURNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22362576213, + 47.1065731832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cfd01a192a4158ed7e606ca809211b3a8988e01", + "fields": { + "code_commune_insee": "32283", + "nom_de_la_commune": "MONTEGUT ARROS", + "code_postal": "32730", + "coordonnees_gps": [ + 43.3828965427, + 0.225654672696 + ], + "libelle_d_acheminement": "MONTEGUT ARROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.225654672696, + 43.3828965427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "580c0674ba91be179dec93eee34c6871d5884ac7", + "fields": { + "code_commune_insee": "25220", + "nom_de_la_commune": "EPEUGNEY", + "code_postal": "25290", + "coordonnees_gps": [ + 47.1273381655, + 6.01995883629 + ], + "libelle_d_acheminement": "EPEUGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01995883629, + 47.1273381655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73c67b39daa380f0f15f316ad928757260324595", + "fields": { + "code_commune_insee": "32292", + "nom_de_la_commune": "MOUCHAN", + "code_postal": "32330", + "coordonnees_gps": [ + 43.8996297752, + 0.306322638694 + ], + "libelle_d_acheminement": "MOUCHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.306322638694, + 43.8996297752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6c822ceb2d22e0df18fe0d08c3fc24ccc29cc40", + "fields": { + "code_commune_insee": "25222", + "nom_de_la_commune": "ETALANS", + "code_postal": "25580", + "coordonnees_gps": [ + 47.1617288935, + 6.26148839275 + ], + "libelle_d_acheminement": "ETALANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26148839275, + 47.1617288935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1910f214e0289ecc5e46134b19c20d6bfdc20141", + "fields": { + "code_commune_insee": "32295", + "nom_de_la_commune": "NIZAS", + "code_postal": "32130", + "coordonnees_gps": [ + 43.4963743485, + 0.987538468887 + ], + "libelle_d_acheminement": "NIZAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.987538468887, + 43.4963743485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a8ecdb9b444623b9e2632854ac66a5a67e064cc", + "fields": { + "ligne_5": "COULANS SUR LIZON", + "code_commune_insee": "25223", + "libelle_d_acheminement": "ETERNOZ", + "code_postal": "25330", + "nom_de_la_commune": "ETERNOZ", + "coordonnees_gps": [ + 47.0155751982, + 6.00196889347 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00196889347, + 47.0155751982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ebdddae187812e7b299c3b34f07eb8ab657cf58", + "fields": { + "code_commune_insee": "32300", + "nom_de_la_commune": "ORBESSAN", + "code_postal": "32260", + "coordonnees_gps": [ + 43.5464677583, + 0.616126674006 + ], + "libelle_d_acheminement": "ORBESSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.616126674006, + 43.5464677583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb0aec0dc31ada09aec98ae570d671c5b8506c98", + "fields": { + "ligne_5": "DOULAIZE", + "code_commune_insee": "25223", + "libelle_d_acheminement": "ETERNOZ", + "code_postal": "25330", + "nom_de_la_commune": "ETERNOZ", + "coordonnees_gps": [ + 47.0155751982, + 6.00196889347 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00196889347, + 47.0155751982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75ff80323be0b7dbed7fcf5088cd74b2a63cdc52", + "fields": { + "code_commune_insee": "32303", + "nom_de_la_commune": "PALLANNE", + "code_postal": "32230", + "coordonnees_gps": [ + 43.5031265045, + 0.266743802401 + ], + "libelle_d_acheminement": "PALLANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.266743802401, + 43.5031265045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6606c92245faf5ac65e56f2e9b8e63cc8edb0fc3", + "fields": { + "ligne_5": "REFRANCHE", + "code_commune_insee": "25223", + "libelle_d_acheminement": "ETERNOZ", + "code_postal": "25330", + "nom_de_la_commune": "ETERNOZ", + "coordonnees_gps": [ + 47.0155751982, + 6.00196889347 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00196889347, + 47.0155751982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80614e2e99b9576f263903468145aab65dc63399", + "fields": { + "code_commune_insee": "32304", + "nom_de_la_commune": "PANASSAC", + "code_postal": "32140", + "coordonnees_gps": [ + 43.3849980024, + 0.56774616292 + ], + "libelle_d_acheminement": "PANASSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56774616292, + 43.3849980024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "605077bf981d8e7eb3a885cfcb7c4f863a1bb342", + "fields": { + "code_commune_insee": "25224", + "nom_de_la_commune": "ETOUVANS", + "code_postal": "25260", + "coordonnees_gps": [ + 47.4565278158, + 6.72060828166 + ], + "libelle_d_acheminement": "ETOUVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72060828166, + 47.4565278158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a9acf3196c1cb24f4b4008179198baf91819ff6", + "fields": { + "code_commune_insee": "32315", + "nom_de_la_commune": "PEYRUSSE GRANDE", + "code_postal": "32320", + "coordonnees_gps": [ + 43.6297892475, + 0.222152970344 + ], + "libelle_d_acheminement": "PEYRUSSE GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.222152970344, + 43.6297892475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a319b6c220489c4a3b93ec52b5e5781ed411572", + "fields": { + "code_commune_insee": "25228", + "nom_de_la_commune": "ETUPES", + "code_postal": "25460", + "coordonnees_gps": [ + 47.5062197763, + 6.87353312717 + ], + "libelle_d_acheminement": "ETUPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87353312717, + 47.5062197763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34bcebbd06b7fccaae0a44da580bb8585a6ed4e0", + "fields": { + "code_commune_insee": "32325", + "nom_de_la_commune": "POUYDRAGUIN", + "code_postal": "32290", + "coordonnees_gps": [ + 43.658939519, + 0.0369491589991 + ], + "libelle_d_acheminement": "POUYDRAGUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0369491589991, + 43.658939519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ab1cec64857f8880e05855fec98fb06d686dd84", + "fields": { + "code_commune_insee": "25230", + "nom_de_la_commune": "EXINCOURT", + "code_postal": "25400", + "coordonnees_gps": [ + 47.5014159474, + 6.83497235294 + ], + "libelle_d_acheminement": "EXINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.83497235294, + 47.5014159474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0adf607d57e4be87c0fc5dfd8152be1bfa8f77b", + "fields": { + "code_commune_insee": "32337", + "nom_de_la_commune": "PUYSEGUR", + "code_postal": "32390", + "coordonnees_gps": [ + 43.7729413958, + 0.591022229224 + ], + "libelle_d_acheminement": "PUYSEGUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.591022229224, + 43.7729413958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fc39a17b7d5d9d9a9fff61c2c01ec62a2c48b4f", + "fields": { + "code_commune_insee": "25233", + "nom_de_la_commune": "FALLERANS", + "code_postal": "25580", + "coordonnees_gps": [ + 47.1385232143, + 6.29267245041 + ], + "libelle_d_acheminement": "FALLERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29267245041, + 47.1385232143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e684c34b799a90575650bbd4cc110ee90cf86d92", + "fields": { + "code_commune_insee": "32349", + "nom_de_la_commune": "ROQUELAURE ST AUBIN", + "code_postal": "32430", + "coordonnees_gps": [ + 43.6639149759, + 0.985022023847 + ], + "libelle_d_acheminement": "ROQUELAURE ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.985022023847, + 43.6639149759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "800e56ee4463e7e1c48d4848e7a704a3b61ffb90", + "fields": { + "ligne_5": "ARGUEL", + "code_commune_insee": "25245", + "libelle_d_acheminement": "FONTAIN", + "code_postal": "25720", + "nom_de_la_commune": "FONTAIN", + "coordonnees_gps": [ + 47.1923642064, + 6.03885344956 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03885344956, + 47.1923642064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51439ec02e1c84097e64a05146e4835f9fecb046", + "fields": { + "code_commune_insee": "32352", + "nom_de_la_commune": "ROZES", + "code_postal": "32190", + "coordonnees_gps": [ + 43.8014785166, + 0.360397755072 + ], + "libelle_d_acheminement": "ROZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.360397755072, + 43.8014785166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f15d1bf4348cf95fe3450a0a8a37de7cb2c2b624", + "fields": { + "code_commune_insee": "25252", + "nom_de_la_commune": "FOURCATIER ET MAISON NEUVE", + "code_postal": "25370", + "coordonnees_gps": [ + 46.764021115, + 6.31302285575 + ], + "libelle_d_acheminement": "FOURCATIER ET MAISON NEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31302285575, + 46.764021115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e55975c82daf9fd87af90d69a30aa4a6c05412a0", + "fields": { + "code_commune_insee": "32353", + "nom_de_la_commune": "SABAILLAN", + "code_postal": "32420", + "coordonnees_gps": [ + 43.4421078031, + 0.811963584159 + ], + "libelle_d_acheminement": "SABAILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.811963584159, + 43.4421078031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2eb50cf0f6ad4a22e0faefc1a68c9b1cfd694d4", + "fields": { + "code_commune_insee": "25255", + "nom_de_la_commune": "FOURNET BLANCHEROCHE", + "code_postal": "25140", + "coordonnees_gps": [ + 47.1662085748, + 6.82524139303 + ], + "libelle_d_acheminement": "FOURNET BLANCHEROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82524139303, + 47.1662085748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93b4b86a9372bbaf73868ed083241175c7ffac23", + "fields": { + "code_commune_insee": "32364", + "nom_de_la_commune": "ST AVIT FRANDAT", + "code_postal": "32700", + "coordonnees_gps": [ + 43.9833844437, + 0.660436983062 + ], + "libelle_d_acheminement": "ST AVIT FRANDAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.660436983062, + 43.9833844437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ed1f88e33582056b818d7c88d0d206d0ee86c6d", + "fields": { + "code_commune_insee": "25270", + "nom_de_la_commune": "GEVRESIN", + "code_postal": "25270", + "coordonnees_gps": [ + 46.9637143049, + 6.04884299454 + ], + "libelle_d_acheminement": "GEVRESIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04884299454, + 46.9637143049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "962215c48a08cd6525a355ae38bac0238457df45", + "fields": { + "code_commune_insee": "32370", + "nom_de_la_commune": "ST CLAR", + "code_postal": "32380", + "coordonnees_gps": [ + 43.8928262507, + 0.761393836193 + ], + "libelle_d_acheminement": "ST CLAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.761393836193, + 43.8928262507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5652fdabc31f25d361150f419a83de050949a1c5", + "fields": { + "code_commune_insee": "25274", + "nom_de_la_commune": "GLAY", + "code_postal": "25310", + "coordonnees_gps": [ + 47.4034720263, + 6.89423716637 + ], + "libelle_d_acheminement": "GLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89423716637, + 47.4034720263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c743b8fbe1f070a43db5b14a7044fdb590593d9", + "fields": { + "code_commune_insee": "32374", + "nom_de_la_commune": "ST ELIX D ASTARAC", + "code_postal": "32450", + "coordonnees_gps": [ + 43.4955140931, + 0.767486330739 + ], + "libelle_d_acheminement": "ST ELIX D ASTARAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.767486330739, + 43.4955140931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53c4822682b47ca8f29ac44f879612858d74cb3e", + "fields": { + "code_commune_insee": "25276", + "nom_de_la_commune": "GONDENANS MONTBY", + "code_postal": "25340", + "coordonnees_gps": [ + 47.4439969549, + 6.45702381116 + ], + "libelle_d_acheminement": "GONDENANS MONTBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45702381116, + 47.4439969549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c47ba0ecfdb8cff22c5606da1d14bc67bef78ee", + "fields": { + "code_commune_insee": "32376", + "nom_de_la_commune": "STE GEMME", + "code_postal": "32120", + "coordonnees_gps": [ + 43.7729198563, + 0.793831939268 + ], + "libelle_d_acheminement": "STE GEMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.793831939268, + 43.7729198563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0211e3e3ab8d5a1828ba19810eaf2e2909a8c5d", + "fields": { + "code_commune_insee": "25279", + "nom_de_la_commune": "GOUHELANS", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4542701523, + 6.35769950748 + ], + "libelle_d_acheminement": "GOUHELANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35769950748, + 47.4542701523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b24cc601614bc1ba03959313fd422caf632e3e21", + "fields": { + "code_commune_insee": "32377", + "nom_de_la_commune": "ST GEORGES", + "code_postal": "32430", + "coordonnees_gps": [ + 43.7350584133, + 0.93023546644 + ], + "libelle_d_acheminement": "ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93023546644, + 43.7350584133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "827c1e92a1e30636843b4103689dbbe9d54bd03c", + "fields": { + "code_commune_insee": "25297", + "nom_de_la_commune": "LE GRATTERIS", + "code_postal": "25620", + "coordonnees_gps": [ + 47.1811561648, + 6.1317775238 + ], + "libelle_d_acheminement": "LE GRATTERIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1317775238, + 47.1811561648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efaa4d42bd2786fa6ef9f815d0dd4967df31fbc2", + "fields": { + "code_commune_insee": "32378", + "nom_de_la_commune": "ST GERME", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6752505393, + -0.146632518805 + ], + "libelle_d_acheminement": "ST GERME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.146632518805, + 43.6752505393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8ce02c3f39725211eae699474a5661f461445e5", + "fields": { + "code_commune_insee": "25305", + "nom_de_la_commune": "L HOPITAL DU GROSBOIS", + "code_postal": "25620", + "coordonnees_gps": [ + 47.1800594325, + 6.21184360344 + ], + "libelle_d_acheminement": "L HOPITAL DU GROSBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21184360344, + 47.1800594325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9de2d950ee7b35e2f9bec479f2a4a674951685f", + "fields": { + "code_commune_insee": "32385", + "nom_de_la_commune": "ST LEONARD", + "code_postal": "32380", + "coordonnees_gps": [ + 43.857899605, + 0.769694095196 + ], + "libelle_d_acheminement": "ST LEONARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.769694095196, + 43.857899605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87a8fc167ae87eb205ec267d4f2ea913279eade4", + "fields": { + "code_commune_insee": "25306", + "nom_de_la_commune": "L HOPITAL ST LIEFFROY", + "code_postal": "25340", + "coordonnees_gps": [ + 47.3994827456, + 6.45624958709 + ], + "libelle_d_acheminement": "L HOPITAL ST LIEFFROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45624958709, + 47.3994827456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6687698f12ce47593b274bb292028c1ea37dab65", + "fields": { + "code_commune_insee": "32394", + "nom_de_la_commune": "ST MEDARD", + "code_postal": "32300", + "coordonnees_gps": [ + 43.4844581655, + 0.462191038357 + ], + "libelle_d_acheminement": "ST MEDARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.462191038357, + 43.4844581655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8b080e0588068fdfb64745e72d43003a149e8e3", + "fields": { + "code_commune_insee": "25308", + "nom_de_la_commune": "LES HOPITAUX VIEUX", + "code_postal": "25370", + "coordonnees_gps": [ + 46.8032464609, + 6.39161147033 + ], + "libelle_d_acheminement": "LES HOPITAUX VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39161147033, + 46.8032464609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9074574d33ed6535ad6d68d7c03722251570f9f", + "fields": { + "code_commune_insee": "32395", + "nom_de_la_commune": "STE MERE", + "code_postal": "32700", + "coordonnees_gps": [ + 44.0020371308, + 0.68395430788 + ], + "libelle_d_acheminement": "STE MERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68395430788, + 44.0020371308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00c5094f4222b2e596ec2ee5e31e724812a8b83b", + "fields": { + "code_commune_insee": "25313", + "nom_de_la_commune": "HYEVRE PAROISSE", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3738771154, + 6.43305986527 + ], + "libelle_d_acheminement": "HYEVRE PAROISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43305986527, + 47.3738771154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90046c2373b678677d95ba7d3c4c740421d75cab", + "fields": { + "code_commune_insee": "32410", + "nom_de_la_commune": "SAMATAN", + "code_postal": "32130", + "coordonnees_gps": [ + 43.4935426323, + 0.934596447621 + ], + "libelle_d_acheminement": "SAMATAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.934596447621, + 43.4935426323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10d3950594eac25c868c476168ad1c4d03210918", + "fields": { + "code_commune_insee": "25316", + "nom_de_la_commune": "ISSANS", + "code_postal": "25550", + "coordonnees_gps": [ + 47.5266990034, + 6.73156159928 + ], + "libelle_d_acheminement": "ISSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73156159928, + 47.5266990034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70e97ee8f0eb475e2db8842c37362c90669448fe", + "fields": { + "code_commune_insee": "32415", + "nom_de_la_commune": "SARRAGUZAN", + "code_postal": "32170", + "coordonnees_gps": [ + 43.364816423, + 0.339588596362 + ], + "libelle_d_acheminement": "SARRAGUZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.339588596362, + 43.364816423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f23913502619cd1ec581bc10840c5554b1f4d3b7", + "fields": { + "code_commune_insee": "25318", + "nom_de_la_commune": "JOUGNE", + "code_postal": "25370", + "coordonnees_gps": [ + 46.7640858972, + 6.40386569268 + ], + "libelle_d_acheminement": "JOUGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40386569268, + 46.7640858972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9075d82d8572222b5cce87d3b254ce66e8463313", + "fields": { + "code_commune_insee": "32417", + "nom_de_la_commune": "LA SAUVETAT", + "code_postal": "32500", + "coordonnees_gps": [ + 43.8493406268, + 0.533837296503 + ], + "libelle_d_acheminement": "LA SAUVETAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.533837296503, + 43.8493406268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fe493a87f75f1a57ea7918a1e77f0a3bbc96b4e", + "fields": { + "code_commune_insee": "25323", + "nom_de_la_commune": "LAISSEY", + "code_postal": "25820", + "coordonnees_gps": [ + 47.3011905975, + 6.22843372024 + ], + "libelle_d_acheminement": "LAISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22843372024, + 47.3011905975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1d27b70084aa2cf2c23a600a98f56b55e74382f", + "fields": { + "code_commune_insee": "32420", + "nom_de_la_commune": "SAUVIMONT", + "code_postal": "32220", + "coordonnees_gps": [ + 43.449188285, + 0.967475829422 + ], + "libelle_d_acheminement": "SAUVIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.967475829422, + 43.449188285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80613d6fda8e1b6b779bb98ee353235c585fda67", + "fields": { + "code_commune_insee": "25325", + "nom_de_la_commune": "LANDRESSE", + "code_postal": "25530", + "coordonnees_gps": [ + 47.2603830516, + 6.48915118252 + ], + "libelle_d_acheminement": "LANDRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48915118252, + 47.2603830516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e47b388e635f5b21a9fa543b72938a4b0ad7a3d6", + "fields": { + "code_commune_insee": "32422", + "nom_de_la_commune": "SCIEURAC ET FLOURES", + "code_postal": "32230", + "coordonnees_gps": [ + 43.5570732793, + 0.19848716736 + ], + "libelle_d_acheminement": "SCIEURAC ET FLOURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.19848716736, + 43.5570732793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7f163a13297158aaf16a472a8e42b68095ce375", + "fields": { + "code_commune_insee": "25326", + "nom_de_la_commune": "LANTENNE VERTIERE", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2313250719, + 5.77272088831 + ], + "libelle_d_acheminement": "LANTENNE VERTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77272088831, + 47.2313250719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d333f19f5f372a7ad5cf9a2fc3ddd80e0c36d210", + "fields": { + "code_commune_insee": "32423", + "nom_de_la_commune": "SEAILLES", + "code_postal": "32190", + "coordonnees_gps": [ + 43.7514305995, + 0.114512954869 + ], + "libelle_d_acheminement": "SEAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.114512954869, + 43.7514305995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2ce2f050e5d6f8802703d6ff49a57a7ff817e84", + "fields": { + "code_commune_insee": "25327", + "nom_de_la_commune": "LANTHENANS", + "code_postal": "25250", + "coordonnees_gps": [ + 47.391506382, + 6.62489828601 + ], + "libelle_d_acheminement": "LANTHENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62489828601, + 47.391506382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d13653eaef1d754086cc7188b7da75c33044a3ce", + "fields": { + "code_commune_insee": "32424", + "nom_de_la_commune": "SEGOS", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6299075167, + -0.261024966204 + ], + "libelle_d_acheminement": "SEGOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.261024966204, + 43.6299075167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a7552c17f7f827d8cf3862e828e63d00a57754e", + "fields": { + "code_commune_insee": "25333", + "nom_de_la_commune": "LAVIRON", + "code_postal": "25510", + "coordonnees_gps": [ + 47.2548002468, + 6.55940694682 + ], + "libelle_d_acheminement": "LAVIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55940694682, + 47.2548002468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe03cd258f96412ee5c5ccde6b0a9a355c2f9f13", + "fields": { + "ligne_5": "ARTIGUEDIEU", + "code_commune_insee": "32426", + "libelle_d_acheminement": "SEISSAN", + "code_postal": "32260", + "nom_de_la_commune": "SEISSAN", + "coordonnees_gps": [ + 43.4981861217, + 0.571544728531 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.571544728531, + 43.4981861217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b8fd3456acb74bc7fdaba91e54d8274f88e7e17", + "fields": { + "code_commune_insee": "25340", + "nom_de_la_commune": "LOMBARD", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0807072893, + 5.8497136325 + ], + "libelle_d_acheminement": "LOMBARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8497136325, + 47.0807072893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b336fd8cf5c76f9317018889000891ff9ef53645", + "fields": { + "code_commune_insee": "32440", + "nom_de_la_commune": "TASQUE", + "code_postal": "32160", + "coordonnees_gps": [ + 43.6375200891, + 0.0112451913592 + ], + "libelle_d_acheminement": "TASQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0112451913592, + 43.6375200891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dad544f80344649b779191bb363068af439c79c8", + "fields": { + "code_commune_insee": "25342", + "nom_de_la_commune": "LONGECHAUX", + "code_postal": "25690", + "coordonnees_gps": [ + 47.1654550513, + 6.43707765655 + ], + "libelle_d_acheminement": "LONGECHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43707765655, + 47.1654550513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "259ca3c4a77ab8c2ee69128e49f26c9792349db5", + "fields": { + "code_commune_insee": "32442", + "nom_de_la_commune": "TERRAUBE", + "code_postal": "32700", + "coordonnees_gps": [ + 43.9023919124, + 0.554587221859 + ], + "libelle_d_acheminement": "TERRAUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.554587221859, + 43.9023919124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c661af37522f20cdd94b65c02e43c8b95b54623f", + "fields": { + "code_commune_insee": "25350", + "nom_de_la_commune": "LOUGRES", + "code_postal": "25260", + "coordonnees_gps": [ + 47.471685071, + 6.68351356482 + ], + "libelle_d_acheminement": "LOUGRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68351356482, + 47.471685071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ed8777fdbad18caf1f15b0af505167c8a92c64d", + "fields": { + "code_commune_insee": "32445", + "nom_de_la_commune": "TIESTE URAGNOUX", + "code_postal": "32160", + "coordonnees_gps": [ + 43.5522019884, + 0.032108280452 + ], + "libelle_d_acheminement": "TIESTE URAGNOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.032108280452, + 43.5522019884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc71f7fc01f1d5094cd6590c90676cd157c8fc5c", + "fields": { + "code_commune_insee": "25354", + "nom_de_la_commune": "LUXIOL", + "code_postal": "25110", + "coordonnees_gps": [ + 47.3794904167, + 6.34776109043 + ], + "libelle_d_acheminement": "LUXIOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34776109043, + 47.3794904167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69e83fd5799f3b3d38599b278417c09333f16593", + "fields": { + "code_commune_insee": "32448", + "nom_de_la_commune": "TOUGET", + "code_postal": "32430", + "coordonnees_gps": [ + 43.6868075437, + 0.918063549202 + ], + "libelle_d_acheminement": "TOUGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.918063549202, + 43.6868075437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89c8fdf99ee500fa5df031db9d82b16c08a0a138", + "fields": { + "code_commune_insee": "25357", + "nom_de_la_commune": "MAISONS DU BOIS LIEVREMONT", + "code_postal": "25650", + "coordonnees_gps": [ + 46.9795599744, + 6.41425984955 + ], + "libelle_d_acheminement": "MAISONS DU BOIS LIEVREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41425984955, + 46.9795599744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "008fe2eabd67f12faf55c0df251a1451c7116e00", + "fields": { + "code_commune_insee": "32463", + "nom_de_la_commune": "VIELLA", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6004267711, + -0.138847798768 + ], + "libelle_d_acheminement": "VIELLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.138847798768, + 43.6004267711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74c1c0f15888423be948defea6832fb5315d5f8b", + "fields": { + "code_commune_insee": "25369", + "nom_de_la_commune": "MARVELISE", + "code_postal": "25250", + "coordonnees_gps": [ + 47.5218664917, + 6.59359255229 + ], + "libelle_d_acheminement": "MARVELISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59359255229, + 47.5218664917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "420693e0e2e54a9620273155e1942316397a1a07", + "fields": { + "code_commune_insee": "32464", + "nom_de_la_commune": "VILLECOMTAL SUR ARROS", + "code_postal": "32730", + "coordonnees_gps": [ + 43.4001487787, + 0.200965512965 + ], + "libelle_d_acheminement": "VILLECOMTAL SUR ARROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.200965512965, + 43.4001487787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdf5eb1ca26791069fa7a29d066981fdcb3671a9", + "fields": { + "code_commune_insee": "25378", + "nom_de_la_commune": "MESLIERES", + "code_postal": "25310", + "coordonnees_gps": [ + 47.4180608315, + 6.89298727209 + ], + "libelle_d_acheminement": "MESLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89298727209, + 47.4180608315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5834711b6a45fca0babf9adb4ef8851eb5d9659d", + "fields": { + "code_commune_insee": "32467", + "nom_de_la_commune": "ST CAPRAIS", + "code_postal": "32200", + "coordonnees_gps": [ + 43.5946521434, + 0.793360450562 + ], + "libelle_d_acheminement": "ST CAPRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.793360450562, + 43.5946521434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fbdce426fd29a43ee7f12cd3e5969c5b8d8dd88", + "fields": { + "ligne_5": "SERVIGNEY", + "code_commune_insee": "25385", + "libelle_d_acheminement": "MONTAGNEY SERVIGNEY", + "code_postal": "25680", + "nom_de_la_commune": "MONTAGNEY SERVIGNEY", + "coordonnees_gps": [ + 47.4668786084, + 6.30394133413 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30394133413, + 47.4668786084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45e16bb2e54d8b1a0023c0c07696dfcb0c96cde9", + "fields": { + "code_commune_insee": "32468", + "nom_de_la_commune": "AUSSOS", + "code_postal": "32140", + "coordonnees_gps": [ + 43.3752780405, + 0.641130457139 + ], + "libelle_d_acheminement": "AUSSOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.641130457139, + 43.3752780405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe70c6d56c28ae37581ef94110c03f4b7378805b", + "fields": { + "code_commune_insee": "25388", + "nom_de_la_commune": "MONTBELIARD", + "code_postal": "25200", + "coordonnees_gps": [ + 47.5155169816, + 6.79148147353 + ], + "libelle_d_acheminement": "MONTBELIARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79148147353, + 47.5155169816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0cf659e78de85550d14ddbae01d5f215eac6f8b", + "fields": { + "code_commune_insee": "33004", + "nom_de_la_commune": "AMBES", + "code_postal": "33810", + "coordonnees_gps": [ + 45.0115337381, + -0.548307688841 + ], + "libelle_d_acheminement": "AMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.548307688841, + 45.0115337381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd3595868061b465ee43785a5d12dc5d0ad23f82", + "fields": { + "code_commune_insee": "25393", + "nom_de_la_commune": "MONTECHEROUX", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3486585895, + 6.7984378999 + ], + "libelle_d_acheminement": "MONTECHEROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7984378999, + 47.3486585895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2928145931f52338c8eca792ca5f145b5022b96d", + "fields": { + "code_commune_insee": "33007", + "nom_de_la_commune": "ARBANATS", + "code_postal": "33640", + "coordonnees_gps": [ + 44.670996265, + -0.40276700503 + ], + "libelle_d_acheminement": "ARBANATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40276700503, + 44.670996265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a260b687a83d949bb437cf031aa9f2cfb13153a", + "fields": { + "code_commune_insee": "25398", + "nom_de_la_commune": "MONTFLOVIN", + "code_postal": "25650", + "coordonnees_gps": [ + 46.9945339119, + 6.4355909855 + ], + "libelle_d_acheminement": "MONTFLOVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4355909855, + 46.9945339119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c714149e4282ff2dbf2d2cfa4fd7b24a4ed958ae", + "fields": { + "ligne_5": "ARBIS", + "code_commune_insee": "33008", + "libelle_d_acheminement": "PORTE DE BENAUGE", + "code_postal": "33760", + "nom_de_la_commune": "PORTE DE BENAUGE", + "coordonnees_gps": [ + 44.6725868035, + -0.2547200817 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2547200817, + 44.6725868035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65fd10d8bb9be675323dd2c2ea87395f6ee01a2d", + "fields": { + "code_commune_insee": "25411", + "nom_de_la_commune": "MORTEAU", + "code_postal": "25500", + "coordonnees_gps": [ + 47.063408704, + 6.58305657113 + ], + "libelle_d_acheminement": "MORTEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58305657113, + 47.063408704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a076e2c0049c86d88381d9de9c7b9565fa9ff049", + "fields": { + "ligne_5": "CANTOIS", + "code_commune_insee": "33008", + "libelle_d_acheminement": "PORTE DE BENAUGE", + "code_postal": "33760", + "nom_de_la_commune": "PORTE DE BENAUGE", + "coordonnees_gps": [ + 44.6725868035, + -0.2547200817 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2547200817, + 44.6725868035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "160e7c2d1dc6eaa38a3bc9093891dd57eac7035e", + "fields": { + "code_commune_insee": "25414", + "nom_de_la_commune": "LE MOUTHEROT", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2434663593, + 5.73147517763 + ], + "libelle_d_acheminement": "LE MOUTHEROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73147517763, + 47.2434663593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7faf13aa7ce4059292548a7ac44ed17d609c865", + "fields": { + "code_commune_insee": "33011", + "nom_de_la_commune": "ARES", + "code_postal": "33740", + "coordonnees_gps": [ + 44.7952271583, + -1.07883221151 + ], + "libelle_d_acheminement": "ARES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07883221151, + 44.7952271583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4defd1d0eb0591ce9560a3512fa17c23b0c890ca", + "fields": { + "ligne_5": "GRANGES DE VIENNEY", + "code_commune_insee": "25417", + "libelle_d_acheminement": "NAISEY LES GRANGES", + "code_postal": "25360", + "nom_de_la_commune": "NAISEY LES GRANGES", + "coordonnees_gps": [ + 47.2083549506, + 6.2346662977 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2346662977, + 47.2083549506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88f7d35e171a95478aee4ca2d3fac567641feb7d", + "fields": { + "code_commune_insee": "33014", + "nom_de_la_commune": "LES ARTIGUES DE LUSSAC", + "code_postal": "33570", + "coordonnees_gps": [ + 44.9726275615, + -0.140230577945 + ], + "libelle_d_acheminement": "LES ARTIGUES DE LUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.140230577945, + 44.9726275615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a365e1413f87a40a4cb907777137096b2777da26", + "fields": { + "code_commune_insee": "25421", + "nom_de_la_commune": "NARBIEF", + "code_postal": "25210", + "coordonnees_gps": [ + 47.1296431442, + 6.69379616051 + ], + "libelle_d_acheminement": "NARBIEF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69379616051, + 47.1296431442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "031725b65ca136229390ad6a349b0734bdada345", + "fields": { + "ligne_5": "SALIGNAC", + "code_commune_insee": "33018", + "libelle_d_acheminement": "VAL DE VIRVEE", + "code_postal": "33240", + "nom_de_la_commune": "VAL DE VIRVEE", + "coordonnees_gps": [ + 45.0218017593, + -0.404998298287 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.404998298287, + 45.0218017593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c5e87e96d38cb4d4b913a38f95659f9bda9eb2a", + "fields": { + "ligne_5": "CHASNANS", + "code_commune_insee": "25424", + "libelle_d_acheminement": "LES PREMIERS SAPINS", + "code_postal": "25580", + "nom_de_la_commune": "LES PREMIERS SAPINS", + "coordonnees_gps": [ + 47.0885558465, + 6.3501261359 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3501261359, + 47.0885558465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56115186008bf4599c1576750472886a39a8c069", + "fields": { + "code_commune_insee": "33020", + "nom_de_la_commune": "AURIOLLES", + "code_postal": "33790", + "coordonnees_gps": [ + 44.7369365281, + 0.0444966358061 + ], + "libelle_d_acheminement": "AURIOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0444966358061, + 44.7369365281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbf0cd815c2529cc67375a92280a5076b3420f95", + "fields": { + "code_commune_insee": "25426", + "nom_de_la_commune": "NOIREFONTAINE", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3468412202, + 6.76426619817 + ], + "libelle_d_acheminement": "NOIREFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76426619817, + 47.3468412202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a151a8644517cae911ceae3c540fdb0446b9eb46", + "fields": { + "code_commune_insee": "33023", + "nom_de_la_commune": "AYGUEMORTE LES GRAVES", + "code_postal": "33640", + "coordonnees_gps": [ + 44.702438627, + -0.484145189594 + ], + "libelle_d_acheminement": "AYGUEMORTE LES GRAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.484145189594, + 44.702438627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "469db1b9ed49eb0f65af31d0c4d8d517432ea9f9", + "fields": { + "code_commune_insee": "25429", + "nom_de_la_commune": "NOVILLARS", + "code_postal": "25220", + "coordonnees_gps": [ + 47.2881176746, + 6.12951986203 + ], + "libelle_d_acheminement": "NOVILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12951986203, + 47.2881176746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a044ad705597c5718eb328f2d81fdc52c788ce8", + "fields": { + "code_commune_insee": "33027", + "nom_de_la_commune": "BARIE", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5710681518, + -0.111645415983 + ], + "libelle_d_acheminement": "BARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.111645415983, + 44.5710681518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d968c1c551f55f46d2078fdfa36fba5d8b32242d", + "fields": { + "code_commune_insee": "25430", + "nom_de_la_commune": "OLLANS", + "code_postal": "25640", + "coordonnees_gps": [ + 47.4203421425, + 6.24528812863 + ], + "libelle_d_acheminement": "OLLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24528812863, + 47.4203421425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9aa9d93e1ac07f537fd3b96274f2e0ca123dd81", + "fields": { + "code_commune_insee": "33028", + "nom_de_la_commune": "BARON", + "code_postal": "33750", + "coordonnees_gps": [ + 44.8235731803, + -0.317485301092 + ], + "libelle_d_acheminement": "BARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.317485301092, + 44.8235731803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daab07ae669a4847e2bdc15a45643f9b187badde", + "fields": { + "code_commune_insee": "25433", + "nom_de_la_commune": "ORGEANS BLANCHEFONTAINE", + "code_postal": "25120", + "coordonnees_gps": [ + 47.266487614, + 6.75428346905 + ], + "libelle_d_acheminement": "ORGEANS BLANCHEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75428346905, + 47.266487614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "becf1e8e3f041b30898b51af14af58669d019516", + "fields": { + "code_commune_insee": "33031", + "nom_de_la_commune": "BASSANNE", + "code_postal": "33190", + "coordonnees_gps": [ + 44.560543686, + -0.0931882578624 + ], + "libelle_d_acheminement": "BASSANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0931882578624, + 44.560543686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7997fc1e6e8990e5dc38594b0bbe0bcdeb6d639", + "fields": { + "code_commune_insee": "25434", + "nom_de_la_commune": "ORNANS", + "code_postal": "25290", + "coordonnees_gps": [ + 47.0978221604, + 6.15005274633 + ], + "libelle_d_acheminement": "ORNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15005274633, + 47.0978221604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b08cd3fbce2bfc796ac6a5f9d9a350ce3f674eb", + "fields": { + "code_commune_insee": "33032", + "nom_de_la_commune": "BASSENS", + "code_postal": "33530", + "coordonnees_gps": [ + 44.9084140601, + -0.525868280903 + ], + "libelle_d_acheminement": "BASSENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.525868280903, + 44.9084140601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33434f5d830942d5ac679af819609aca615e10b3", + "fields": { + "code_commune_insee": "25436", + "nom_de_la_commune": "ORVE", + "code_postal": "25430", + "coordonnees_gps": [ + 47.3380513604, + 6.55949907645 + ], + "libelle_d_acheminement": "ORVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55949907645, + 47.3380513604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41b1a527f64d9ab67fc8988171ca8f851cdda5cd", + "fields": { + "code_commune_insee": "33034", + "nom_de_la_commune": "BAYAS", + "code_postal": "33230", + "coordonnees_gps": [ + 45.0676036545, + -0.209456063522 + ], + "libelle_d_acheminement": "BAYAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.209456063522, + 45.0676036545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "896d968c7452eea205f16fbfe571391615fe2726", + "fields": { + "code_commune_insee": "25439", + "nom_de_la_commune": "OUGNEY DOUVOT", + "code_postal": "25640", + "coordonnees_gps": [ + 47.319923277, + 6.27540481731 + ], + "libelle_d_acheminement": "OUGNEY DOUVOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27540481731, + 47.319923277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9891c607501df62ea968312850d3baeae8d52aed", + "fields": { + "code_commune_insee": "33035", + "nom_de_la_commune": "BAYON SUR GIRONDE", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0433426263, + -0.609639022961 + ], + "libelle_d_acheminement": "BAYON SUR GIRONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.609639022961, + 45.0433426263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3773b4ddc1e989cc694b44d845ea5b2bbbef720b", + "fields": { + "code_commune_insee": "25452", + "nom_de_la_commune": "PIERREFONTAINE LES BLAMONT", + "code_postal": "25310", + "coordonnees_gps": [ + 47.371018044, + 6.82492212107 + ], + "libelle_d_acheminement": "PIERREFONTAINE LES BLAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82492212107, + 47.371018044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80a6abd484b9a74da3f5ebd4d96e33986dc9ce94", + "fields": { + "code_commune_insee": "33037", + "nom_de_la_commune": "BEAUTIRAN", + "code_postal": "33640", + "coordonnees_gps": [ + 44.7034400813, + -0.459169831543 + ], + "libelle_d_acheminement": "BEAUTIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.459169831543, + 44.7034400813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83cdbef10e045054ded967ac428b584c10d905b4", + "fields": { + "code_commune_insee": "25453", + "nom_de_la_commune": "PIERREFONTAINE LES VARANS", + "code_postal": "25510", + "coordonnees_gps": [ + 47.2194158941, + 6.5503792835 + ], + "libelle_d_acheminement": "PIERREFONTAINE LES VARANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5503792835, + 47.2194158941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09db9748c2f7e164a41968b9e32bf645b72ae2e6", + "fields": { + "code_commune_insee": "33040", + "nom_de_la_commune": "BEGUEY", + "code_postal": "33410", + "coordonnees_gps": [ + 44.6493296399, + -0.325359958986 + ], + "libelle_d_acheminement": "BEGUEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.325359958986, + 44.6493296399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "343df6c15eee0f5c02bb12d986765b859a43da79", + "fields": { + "code_commune_insee": "25454", + "nom_de_la_commune": "PIREY", + "code_postal": "25480", + "coordonnees_gps": [ + 47.2606621308, + 5.96639565137 + ], + "libelle_d_acheminement": "PIREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96639565137, + 47.2606621308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21987eb55d4efd82245df8ca2e8b9a50e725f9f9", + "fields": { + "code_commune_insee": "33043", + "nom_de_la_commune": "BELLEBAT", + "code_postal": "33760", + "coordonnees_gps": [ + 44.7382366196, + -0.221985163561 + ], + "libelle_d_acheminement": "BELLEBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.221985163561, + 44.7382366196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23f9b1ac4b132ab8e94c2330e47bad02f32a18f1", + "fields": { + "ligne_5": "MONTFORT", + "code_commune_insee": "25460", + "libelle_d_acheminement": "LE VAL", + "code_postal": "25440", + "nom_de_la_commune": "LE VAL", + "coordonnees_gps": [ + 47.0662924884, + 5.91153073564 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91153073564, + 47.0662924884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f500dfa4a1498e5efbf9ff53aeb3479db33e4ca4", + "fields": { + "code_commune_insee": "33047", + "nom_de_la_commune": "BERSON", + "code_postal": "33390", + "coordonnees_gps": [ + 45.1170453361, + -0.574457509395 + ], + "libelle_d_acheminement": "BERSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.574457509395, + 45.1170453361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ffd71f02aa50571f1b8ea6bda238d90b6f3002d", + "fields": { + "ligne_5": "POINTVILLERS", + "code_commune_insee": "25460", + "libelle_d_acheminement": "LE VAL", + "code_postal": "25440", + "nom_de_la_commune": "LE VAL", + "coordonnees_gps": [ + 47.0662924884, + 5.91153073564 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91153073564, + 47.0662924884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d83a695b77623dd7ed746bbea80d02d08434d40", + "fields": { + "code_commune_insee": "33053", + "nom_de_la_commune": "BIRAC", + "code_postal": "33430", + "coordonnees_gps": [ + 44.4124016589, + -0.143472733247 + ], + "libelle_d_acheminement": "BIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.143472733247, + 44.4124016589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7587a8016c11fd7cb41def99dfc4bce62b2234fc", + "fields": { + "code_commune_insee": "25463", + "nom_de_la_commune": "PONT DE ROIDE VERMONDANS", + "code_postal": "25150", + "coordonnees_gps": [ + 47.3852773517, + 6.7626810066 + ], + "libelle_d_acheminement": "PONT DE ROIDE VERMONDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7626810066, + 47.3852773517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b68374b7cf0e1f6245fd1caf853761a7ed626ecb", + "fields": { + "code_commune_insee": "33063", + "nom_de_la_commune": "BORDEAUX", + "code_postal": "33300", + "coordonnees_gps": [ + 44.8572445351, + -0.57369678116 + ], + "libelle_d_acheminement": "BORDEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57369678116, + 44.8572445351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40f16705e3714a792342c5cbba5927892efb6cf6", + "fields": { + "code_commune_insee": "25464", + "nom_de_la_commune": "LES PONTETS", + "code_postal": "25240", + "coordonnees_gps": [ + 46.7213975225, + 6.16314736913 + ], + "libelle_d_acheminement": "LES PONTETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16314736913, + 46.7213975225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb8838d84beef1d8faac42f2fd2e2bd14d69cc67", + "fields": { + "code_commune_insee": "33063", + "nom_de_la_commune": "BORDEAUX", + "code_postal": "33800", + "coordonnees_gps": [ + 44.8572445351, + -0.57369678116 + ], + "libelle_d_acheminement": "BORDEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57369678116, + 44.8572445351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f28b2399840df8794f39b3800fd7e2e2c0d0430", + "fields": { + "code_commune_insee": "25465", + "nom_de_la_commune": "PONT LES MOULINS", + "code_postal": "25110", + "coordonnees_gps": [ + 47.325697924, + 6.36650905984 + ], + "libelle_d_acheminement": "PONT LES MOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36650905984, + 47.325697924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31e87eba098e5d387ec6052885f9ad9481e4d591", + "fields": { + "code_commune_insee": "33064", + "nom_de_la_commune": "BOSSUGAN", + "code_postal": "33350", + "coordonnees_gps": [ + 44.7915487429, + -0.0519671900335 + ], + "libelle_d_acheminement": "BOSSUGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0519671900335, + 44.7915487429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65044bae14e05aec42ef2d2e9257e399e3de36bd", + "fields": { + "code_commune_insee": "25466", + "nom_de_la_commune": "POUILLEY FRANCAIS", + "code_postal": "25410", + "coordonnees_gps": [ + 47.2061915063, + 5.84308550678 + ], + "libelle_d_acheminement": "POUILLEY FRANCAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84308550678, + 47.2061915063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7294650546fdef1a3233c55bfdd6f1a40e92c7cd", + "fields": { + "code_commune_insee": "33070", + "nom_de_la_commune": "BRACH", + "code_postal": "33480", + "coordonnees_gps": [ + 45.0409201338, + -0.948184300809 + ], + "libelle_d_acheminement": "BRACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.948184300809, + 45.0409201338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae2a63671817b3e845c28a5439aa5c3ef463ef28", + "fields": { + "code_commune_insee": "25468", + "nom_de_la_commune": "POULIGNEY LUSANS", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3352091384, + 6.20063332873 + ], + "libelle_d_acheminement": "POULIGNEY LUSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20063332873, + 47.3352091384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "979092ffa92f5708fb79169e14a1d4afacc80cc9", + "fields": { + "code_commune_insee": "33077", + "nom_de_la_commune": "CABANAC ET VILLAGRAINS", + "code_postal": "33650", + "coordonnees_gps": [ + 44.5919178983, + -0.549470960581 + ], + "libelle_d_acheminement": "CABANAC ET VILLAGRAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.549470960581, + 44.5919178983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6dbc1a207ad15f195cc45e9db7f37c5c1d2e45b", + "fields": { + "code_commune_insee": "25473", + "nom_de_la_commune": "PUGEY", + "code_postal": "25720", + "coordonnees_gps": [ + 47.1714944079, + 5.99435390384 + ], + "libelle_d_acheminement": "PUGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99435390384, + 47.1714944079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48d80a33d4675cd68c2788d3713e71d2160b96f3", + "fields": { + "code_commune_insee": "33078", + "nom_de_la_commune": "CABARA", + "code_postal": "33420", + "coordonnees_gps": [ + 44.8304622766, + -0.161179708223 + ], + "libelle_d_acheminement": "CABARA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.161179708223, + 44.8304622766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "296d5824fbad8f7baf26a53a6ad8353ad3193f65", + "fields": { + "code_commune_insee": "25476", + "nom_de_la_commune": "RAHON", + "code_postal": "25430", + "coordonnees_gps": [ + 47.3270427606, + 6.58186088547 + ], + "libelle_d_acheminement": "RAHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58186088547, + 47.3270427606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c8fb70140f07070a73ffce4b22fb135b9bd3a9f", + "fields": { + "code_commune_insee": "33080", + "nom_de_la_commune": "CADAUJAC", + "code_postal": "33140", + "coordonnees_gps": [ + 44.7463102353, + -0.529387094363 + ], + "libelle_d_acheminement": "CADAUJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.529387094363, + 44.7463102353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b58e2db83aacdc50503c1c05eb3b184dbf3ca57", + "fields": { + "code_commune_insee": "25479", + "nom_de_la_commune": "RANG", + "code_postal": "25250", + "coordonnees_gps": [ + 47.4234030731, + 6.56255299785 + ], + "libelle_d_acheminement": "RANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56255299785, + 47.4234030731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "847e4938bf0cb9d1d497fb12235d348a8af59c1b", + "fields": { + "code_commune_insee": "33090", + "nom_de_la_commune": "CANEJAN", + "code_postal": "33610", + "coordonnees_gps": [ + 44.7598891584, + -0.65697711026 + ], + "libelle_d_acheminement": "CANEJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65697711026, + 44.7598891584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1b5a7d6dea38b8dd0cd09d8f6cbe93232cf3634", + "fields": { + "code_commune_insee": "25482", + "nom_de_la_commune": "RECOLOGNE", + "code_postal": "25170", + "coordonnees_gps": [ + 47.2745847308, + 5.83450368861 + ], + "libelle_d_acheminement": "RECOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83450368861, + 47.2745847308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "483de1432ed16dde6b3c29bf2f12f6d87b82b72a", + "fields": { + "code_commune_insee": "33101", + "nom_de_la_commune": "CARTELEGUE", + "code_postal": "33390", + "coordonnees_gps": [ + 45.1912964207, + -0.578370670079 + ], + "libelle_d_acheminement": "CARTELEGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.578370670079, + 45.1912964207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2750667a87d1c27c68dd17f7fa2e2a3a765723c", + "fields": { + "code_commune_insee": "25483", + "nom_de_la_commune": "RECULFOZ", + "code_postal": "25240", + "coordonnees_gps": [ + 46.71075258, + 6.14869649896 + ], + "libelle_d_acheminement": "RECULFOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14869649896, + 46.71075258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b77ff88d9cd4ca8711b89884aee4af7f2c0be1c8", + "fields": { + "code_commune_insee": "33102", + "nom_de_la_commune": "CASSEUIL", + "code_postal": "33190", + "coordonnees_gps": [ + 44.589045515, + -0.118981195869 + ], + "libelle_d_acheminement": "CASSEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.118981195869, + 44.589045515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39423f8fcfddc980e3f9033013c40d65f642e2bb", + "fields": { + "code_commune_insee": "25485", + "nom_de_la_commune": "REMONDANS VAIVRE", + "code_postal": "25150", + "coordonnees_gps": [ + 47.3797020661, + 6.70946865104 + ], + "libelle_d_acheminement": "REMONDANS VAIVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70946865104, + 47.3797020661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf5fdb42badab3e55e0741dfe6c46fb219528bd2", + "fields": { + "code_commune_insee": "33109", + "nom_de_la_commune": "CASTRES GIRONDE", + "code_postal": "33640", + "coordonnees_gps": [ + 44.6858784947, + -0.455026609065 + ], + "libelle_d_acheminement": "CASTRES GIRONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.455026609065, + 44.6858784947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "077071900af8cc01a7f4859fd73a0a8d0d303e97", + "fields": { + "code_commune_insee": "25496", + "nom_de_la_commune": "ROCHE LES CLERVAL", + "code_postal": "25340", + "coordonnees_gps": [ + 47.3634845097, + 6.46991658309 + ], + "libelle_d_acheminement": "ROCHE LES CLERVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46991658309, + 47.3634845097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb78994c99bf3855acacd13baa1657a81424a55c", + "fields": { + "code_commune_insee": "33111", + "nom_de_la_commune": "CAUDROT", + "code_postal": "33490", + "coordonnees_gps": [ + 44.5846738826, + -0.144878442229 + ], + "libelle_d_acheminement": "CAUDROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.144878442229, + 44.5846738826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77dec6c9288bca6099c91d8526fb47148e39ed2d", + "fields": { + "code_commune_insee": "25500", + "nom_de_la_commune": "RONCHAUX", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0427610393, + 5.90349548517 + ], + "libelle_d_acheminement": "RONCHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90349548517, + 47.0427610393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4b6c29f50898dff8cdbe399a07404333a680484", + "fields": { + "code_commune_insee": "33117", + "nom_de_la_commune": "CAZAUGITAT", + "code_postal": "33790", + "coordonnees_gps": [ + 44.7152295174, + 0.0111309122135 + ], + "libelle_d_acheminement": "CAZAUGITAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0111309122135, + 44.7152295174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a14f5d7049af9f5b866446ea55cb7b6707b94f2", + "fields": { + "code_commune_insee": "25502", + "nom_de_la_commune": "ROSET FLUANS", + "code_postal": "25410", + "coordonnees_gps": [ + 47.1536312565, + 5.83267592874 + ], + "libelle_d_acheminement": "ROSET FLUANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83267592874, + 47.1536312565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "980302d34f1ad01024eab08517817d9db3fa0e4f", + "fields": { + "code_commune_insee": "33120", + "nom_de_la_commune": "CERONS", + "code_postal": "33720", + "coordonnees_gps": [ + 44.6273573941, + -0.33978567872 + ], + "libelle_d_acheminement": "CERONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.33978567872, + 44.6273573941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adfc3785dc06ed5b063621397dcda36dd54001fc", + "fields": { + "code_commune_insee": "25503", + "nom_de_la_commune": "ROSIERES SUR BARBECHE", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3149794367, + 6.65958662273 + ], + "libelle_d_acheminement": "ROSIERES SUR BARBECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65958662273, + 47.3149794367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da83eefe39d1ee2181da443dc8b8e14df7bdc9da", + "fields": { + "code_commune_insee": "33121", + "nom_de_la_commune": "CESSAC", + "code_postal": "33760", + "coordonnees_gps": [ + 44.7415385665, + -0.18530011295 + ], + "libelle_d_acheminement": "CESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18530011295, + 44.7415385665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ecf71a1962fb443ec55066d688f5090a57cd315", + "fields": { + "code_commune_insee": "25508", + "nom_de_la_commune": "ROULANS", + "code_postal": "25640", + "coordonnees_gps": [ + 47.3176462512, + 6.23539545398 + ], + "libelle_d_acheminement": "ROULANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23539545398, + 47.3176462512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac2129037b7c413f68cfba0f07210e6650aa3a13", + "fields": { + "ligne_5": "GAZINET", + "code_commune_insee": "33122", + "libelle_d_acheminement": "CESTAS", + "code_postal": "33610", + "nom_de_la_commune": "CESTAS", + "coordonnees_gps": [ + 44.7237410966, + -0.726825410115 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.726825410115, + 44.7237410966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "875e41fad983d70bc9047cdc771f4e736c28e1e0", + "fields": { + "code_commune_insee": "25511", + "nom_de_la_commune": "RUREY", + "code_postal": "25290", + "coordonnees_gps": [ + 47.0956339388, + 5.99767264147 + ], + "libelle_d_acheminement": "RUREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99767264147, + 47.0956339388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "178e552d3992a1afcd6d402e91450dd6e4e47818", + "fields": { + "code_commune_insee": "33129", + "nom_de_la_commune": "CLEYRAC", + "code_postal": "33540", + "coordonnees_gps": [ + 44.7187705333, + -0.0383372674584 + ], + "libelle_d_acheminement": "CLEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0383372674584, + 44.7187705333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "538012e2cafadeb6d3245a9a71cd3731f9813447", + "fields": { + "code_commune_insee": "25512", + "nom_de_la_commune": "LE RUSSEY", + "code_postal": "25210", + "coordonnees_gps": [ + 47.1549185878, + 6.73440290446 + ], + "libelle_d_acheminement": "LE RUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73440290446, + 47.1549185878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db8aca0bfac428d73bcf61ed5ce21c980aadd240", + "fields": { + "code_commune_insee": "33134", + "nom_de_la_commune": "COUQUEQUES", + "code_postal": "33340", + "coordonnees_gps": [ + 45.3438294429, + -0.847957119677 + ], + "libelle_d_acheminement": "COUQUEQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.847957119677, + 45.3438294429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06ed6d6c65dfa413174f3ffdf08617b9fa3cabd5", + "fields": { + "code_commune_insee": "25513", + "nom_de_la_commune": "STE ANNE", + "code_postal": "25270", + "coordonnees_gps": [ + 46.9506104043, + 5.98454603407 + ], + "libelle_d_acheminement": "STE ANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98454603407, + 46.9506104043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f03beb9811a1fb6515b1685ffd3165d8d20f7a74", + "fields": { + "code_commune_insee": "33141", + "nom_de_la_commune": "CROIGNON", + "code_postal": "33750", + "coordonnees_gps": [ + 44.8210599121, + -0.344003297739 + ], + "libelle_d_acheminement": "CROIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.344003297739, + 44.8210599121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d80328ca660b5db4e4779dfe9ba75f332913c596", + "fields": { + "code_commune_insee": "25515", + "nom_de_la_commune": "STE COLOMBE", + "code_postal": "25300", + "coordonnees_gps": [ + 46.8735551517, + 6.27545445456 + ], + "libelle_d_acheminement": "STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27545445456, + 46.8735551517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15845c4ea632fde34e445667e3e93fbcc93d115c", + "fields": { + "code_commune_insee": "33143", + "nom_de_la_commune": "CUBZAC LES PONTS", + "code_postal": "33240", + "coordonnees_gps": [ + 44.9696352985, + -0.446132776747 + ], + "libelle_d_acheminement": "CUBZAC LES PONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.446132776747, + 44.9696352985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efca557c1cfd166672947ca7cf6e395ccde128c4", + "fields": { + "ligne_5": "MOUILLEVILLERS", + "code_commune_insee": "25519", + "libelle_d_acheminement": "ST HIPPOLYTE", + "code_postal": "25190", + "nom_de_la_commune": "ST HIPPOLYTE", + "coordonnees_gps": [ + 47.3121318128, + 6.81240649339 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81240649339, + 47.3121318128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c72d0b4f7f28c03aa816d4428919b6c6b71c378c", + "fields": { + "code_commune_insee": "33154", + "nom_de_la_commune": "LES EGLISOTTES ET CHALAURES", + "code_postal": "33230", + "coordonnees_gps": [ + 45.0928940224, + -0.0328830508669 + ], + "libelle_d_acheminement": "LES EGLISOTTES ET CHALAURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0328830508669, + 45.0928940224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cabe0fe114831561954828dc74319af9d3f491a8", + "fields": { + "code_commune_insee": "25524", + "nom_de_la_commune": "ST MAURICE COLOMBIER", + "code_postal": "25260", + "coordonnees_gps": [ + 47.4316270724, + 6.65024114123 + ], + "libelle_d_acheminement": "ST MAURICE COLOMBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65024114123, + 47.4316270724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "073b1d16c95cec4b3b92cbe13e4831dfc4a51257", + "fields": { + "code_commune_insee": "33164", + "nom_de_la_commune": "FARGUES", + "code_postal": "33210", + "coordonnees_gps": [ + 44.5353844514, + -0.294974824238 + ], + "libelle_d_acheminement": "FARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.294974824238, + 44.5353844514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6271d313e9b1eee9aab0bfa1ebae59868f668a41", + "fields": { + "code_commune_insee": "25528", + "nom_de_la_commune": "SAMSON", + "code_postal": "25440", + "coordonnees_gps": [ + 47.0533990427, + 5.87931888602 + ], + "libelle_d_acheminement": "SAMSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87931888602, + 47.0533990427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a47ddb0188308b472fa0455f132dcd9b1e9ab033", + "fields": { + "code_commune_insee": "33171", + "nom_de_la_commune": "FOSSES ET BALEYSSAC", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5970944275, + 0.0500249563956 + ], + "libelle_d_acheminement": "FOSSES ET BALEYSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0500249563956, + 44.5970944275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e61f656669a686f6001da6ce299a6bc8597bf218", + "fields": { + "code_commune_insee": "25539", + "nom_de_la_commune": "SELONCOURT", + "code_postal": "25230", + "coordonnees_gps": [ + 47.4569305468, + 6.86452195563 + ], + "libelle_d_acheminement": "SELONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86452195563, + 47.4569305468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec5db715c3e53fd2919cca1d6808d8cfb2d520a9", + "fields": { + "code_commune_insee": "33172", + "nom_de_la_commune": "FOURS", + "code_postal": "33390", + "coordonnees_gps": [ + 45.1747751409, + -0.633340019213 + ], + "libelle_d_acheminement": "FOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.633340019213, + 45.1747751409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39da6fe0c32a7d962c2e1d3f3dfaeedb9b9c5676", + "fields": { + "code_commune_insee": "25540", + "nom_de_la_commune": "SEMONDANS", + "code_postal": "25750", + "coordonnees_gps": [ + 47.5402222251, + 6.69276123061 + ], + "libelle_d_acheminement": "SEMONDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69276123061, + 47.5402222251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b884bc8a65d91c54482f5254edb53dc308e52161", + "fields": { + "code_commune_insee": "33175", + "nom_de_la_commune": "FRONTENAC", + "code_postal": "33760", + "coordonnees_gps": [ + 44.7297633138, + -0.144178489946 + ], + "libelle_d_acheminement": "FRONTENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.144178489946, + 44.7297633138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c7ab65ecef2d8eaa9b0702641d70434dec70041", + "fields": { + "ligne_5": "TARCENAY", + "code_commune_insee": "25558", + "libelle_d_acheminement": "TARCENAY FOUCHERANS", + "code_postal": "25620", + "nom_de_la_commune": "TARCENAY FOUCHERANS", + "coordonnees_gps": [ + 47.1661327751, + 6.10532851218 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10532851218, + 47.1661327751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a0e5637c03032ec2288ca5929979f46da4ff7c7", + "fields": { + "code_commune_insee": "33176", + "nom_de_la_commune": "GABARNAC", + "code_postal": "33410", + "coordonnees_gps": [ + 44.6165155968, + -0.262725759039 + ], + "libelle_d_acheminement": "GABARNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.262725759039, + 44.6165155968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bef227fb665d49bc24b1847fa9db4c3bd13db7d", + "fields": { + "code_commune_insee": "25561", + "nom_de_la_commune": "THORAISE", + "code_postal": "25320", + "coordonnees_gps": [ + 47.169790589, + 5.9098007107 + ], + "libelle_d_acheminement": "THORAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9098007107, + 47.169790589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52c08255db3d383c8809039d50ff51131547c217", + "fields": { + "code_commune_insee": "33177", + "nom_de_la_commune": "GAILLAN EN MEDOC", + "code_postal": "33340", + "coordonnees_gps": [ + 45.3129626409, + -0.987597387066 + ], + "libelle_d_acheminement": "GAILLAN EN MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.987597387066, + 45.3129626409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da3e3420ffd4a14787c8c508375fd0740d8d91e7", + "fields": { + "code_commune_insee": "25564", + "nom_de_la_commune": "TORPES", + "code_postal": "25320", + "coordonnees_gps": [ + 47.1724802997, + 5.88041302138 + ], + "libelle_d_acheminement": "TORPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88041302138, + 47.1724802997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c747a765f90eb5b6873b0c7dbc5d252140958b3", + "fields": { + "code_commune_insee": "33181", + "nom_de_la_commune": "GARDEGAN ET TOURTIRAC", + "code_postal": "33350", + "coordonnees_gps": [ + 44.8947155186, + -0.0166227907125 + ], + "libelle_d_acheminement": "GARDEGAN ET TOURTIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0166227907125, + 44.8947155186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7289d3613d8438a66fc0c7ca150ca03cddd4f3a5", + "fields": { + "code_commune_insee": "25572", + "nom_de_la_commune": "TROUVANS", + "code_postal": "25680", + "coordonnees_gps": [ + 47.4202800543, + 6.34806537347 + ], + "libelle_d_acheminement": "TROUVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34806537347, + 47.4202800543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1807f244f8b06dd5b2506650d24157a4d3f1557", + "fields": { + "code_commune_insee": "33196", + "nom_de_la_commune": "GUILLAC", + "code_postal": "33420", + "coordonnees_gps": [ + 44.8035781649, + -0.2106680867 + ], + "libelle_d_acheminement": "GUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2106680867, + 44.8035781649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db8bc924ad7ad328cc42778376f2e8ba3c69b019", + "fields": { + "code_commune_insee": "25574", + "nom_de_la_commune": "UZELLE", + "code_postal": "25340", + "coordonnees_gps": [ + 47.4657206904, + 6.44232255032 + ], + "libelle_d_acheminement": "UZELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44232255032, + 47.4657206904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98a13deaacd9c6163b57cb70558bb4a2363e5058", + "fields": { + "code_commune_insee": "33200", + "nom_de_la_commune": "LE HAILLAN", + "code_postal": "33185", + "coordonnees_gps": [ + 44.8690837903, + -0.684443512134 + ], + "libelle_d_acheminement": "LE HAILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.684443512134, + 44.8690837903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e5af51b4f6999350e2f6f52789181eb99e34501", + "fields": { + "code_commune_insee": "25590", + "nom_de_la_commune": "VAUDRIVILLERS", + "code_postal": "25360", + "coordonnees_gps": [ + 47.2837223022, + 6.42788857639 + ], + "libelle_d_acheminement": "VAUDRIVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42788857639, + 47.2837223022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bef87e5e0da7794752c17f20c4843dc34d0d9874", + "fields": { + "code_commune_insee": "33208", + "nom_de_la_commune": "JAU DIGNAC ET LOIRAC", + "code_postal": "33590", + "coordonnees_gps": [ + 45.4149833388, + -0.96259528402 + ], + "libelle_d_acheminement": "JAU DIGNAC ET LOIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.96259528402, + 45.4149833388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73f9d02b6170bc8c87daa60510ad0ab3ec26cbf4", + "fields": { + "code_commune_insee": "25595", + "nom_de_la_commune": "VELLEROT LES BELVOIR", + "code_postal": "25430", + "coordonnees_gps": [ + 47.3476484278, + 6.590540119 + ], + "libelle_d_acheminement": "VELLEROT LES BELVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.590540119, + 47.3476484278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fb6998dd7ece1326a383316fa645ca58440da86", + "fields": { + "code_commune_insee": "33213", + "nom_de_la_commune": "LA BREDE", + "code_postal": "33650", + "coordonnees_gps": [ + 44.6801130358, + -0.53691849986 + ], + "libelle_d_acheminement": "LA BREDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.53691849986, + 44.6801130358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b81f70323eb754b9435e8125dcc9d50fb3a9b65f", + "fields": { + "code_commune_insee": "25600", + "nom_de_la_commune": "VENNES", + "code_postal": "25390", + "coordonnees_gps": [ + 47.1578266243, + 6.54060919316 + ], + "libelle_d_acheminement": "VENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54060919316, + 47.1578266243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8045643a02b8fc5176b4b8e7759a3d31970781e8", + "fields": { + "code_commune_insee": "33214", + "nom_de_la_commune": "LACANAU", + "code_postal": "33680", + "coordonnees_gps": [ + 44.983404414, + -1.10810794832 + ], + "libelle_d_acheminement": "LACANAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10810794832, + 44.983404414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06c994f39f42c717b95d9b5f2da226e60c08b841", + "fields": { + "code_commune_insee": "25615", + "nom_de_la_commune": "VILLARS LES BLAMONT", + "code_postal": "25310", + "coordonnees_gps": [ + 47.3679686248, + 6.87102265307 + ], + "libelle_d_acheminement": "VILLARS LES BLAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87102265307, + 47.3679686248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ffba16a8464c7a92bb208531a2c2509dd95ed8b", + "fields": { + "ligne_5": "LACANAU OCEAN", + "code_commune_insee": "33214", + "libelle_d_acheminement": "LACANAU", + "code_postal": "33680", + "nom_de_la_commune": "LACANAU", + "coordonnees_gps": [ + 44.983404414, + -1.10810794832 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10810794832, + 44.983404414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c888b68886788b1ef3c0c24b6a2425f6a5a797c", + "fields": { + "code_commune_insee": "25616", + "nom_de_la_commune": "VILLARS ST GEORGES", + "code_postal": "25410", + "coordonnees_gps": [ + 47.1248376906, + 5.82242208897 + ], + "libelle_d_acheminement": "VILLARS ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82242208897, + 47.1248376906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de30461b50a835385b42e3dd57021847752fe476", + "fields": { + "ligne_5": "TAUSSAT", + "code_commune_insee": "33229", + "libelle_d_acheminement": "LANTON", + "code_postal": "33138", + "nom_de_la_commune": "LANTON", + "coordonnees_gps": [ + 44.7744744246, + -0.976985580148 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.976985580148, + 44.7744744246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d7b282e2e339a938ef75afd02b75c892c35e906", + "fields": { + "code_commune_insee": "25617", + "nom_de_la_commune": "VILLARS SOUS DAMPJOUX", + "code_postal": "25190", + "coordonnees_gps": [ + 47.3616773268, + 6.75143878477 + ], + "libelle_d_acheminement": "VILLARS SOUS DAMPJOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75143878477, + 47.3616773268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58fc82e970e766654a5ef1ae1419ea4b0863ba06", + "fields": { + "code_commune_insee": "33230", + "nom_de_la_commune": "LAPOUYADE", + "code_postal": "33620", + "coordonnees_gps": [ + 45.1108151595, + -0.286501093262 + ], + "libelle_d_acheminement": "LAPOUYADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.286501093262, + 45.1108151595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1230df061887902ef747000795bca72f7e4d7bbd", + "fields": { + "code_commune_insee": "25618", + "nom_de_la_commune": "VILLARS SOUS ECOT", + "code_postal": "25150", + "coordonnees_gps": [ + 47.4190484335, + 6.69834595037 + ], + "libelle_d_acheminement": "VILLARS SOUS ECOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69834595037, + 47.4190484335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dca9b72f2c8198c5bb04ff6dcc2783c9e58ce60a", + "fields": { + "code_commune_insee": "33234", + "nom_de_la_commune": "LATRESNE", + "code_postal": "33360", + "coordonnees_gps": [ + 44.7900155493, + -0.500800441782 + ], + "libelle_d_acheminement": "LATRESNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.500800441782, + 44.7900155493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ce87da1b9ac9b4f3579dddf8055fb8a6edb73bc", + "fields": { + "code_commune_insee": "25621", + "nom_de_la_commune": "VILLENEUVE D AMONT", + "code_postal": "25270", + "coordonnees_gps": [ + 46.9391063375, + 6.04167200953 + ], + "libelle_d_acheminement": "VILLENEUVE D AMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04167200953, + 46.9391063375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a209fcb0656ba26e347f5782cfed9cdb8851188", + "fields": { + "code_commune_insee": "33248", + "nom_de_la_commune": "LISTRAC MEDOC", + "code_postal": "33480", + "coordonnees_gps": [ + 45.0683170003, + -0.829346314707 + ], + "libelle_d_acheminement": "LISTRAC MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.829346314707, + 45.0683170003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "656d103372bc13eb0a9fab87b5599c070a71fd94", + "fields": { + "code_commune_insee": "25633", + "nom_de_la_commune": "VUILLAFANS", + "code_postal": "25840", + "coordonnees_gps": [ + 47.063463484, + 6.22114618291 + ], + "libelle_d_acheminement": "VUILLAFANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22114618291, + 47.063463484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90d36d29f91d3f5be99622f95ee7e904253fa5f1", + "fields": { + "code_commune_insee": "33261", + "nom_de_la_commune": "LUSSAC", + "code_postal": "33570", + "coordonnees_gps": [ + 44.9666973699, + -0.0939830004604 + ], + "libelle_d_acheminement": "LUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0939830004604, + 44.9666973699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bac685d2e1b330e264099ddbbc04d6e22653ddc6", + "fields": { + "code_commune_insee": "26002", + "nom_de_la_commune": "ALBON", + "code_postal": "26140", + "coordonnees_gps": [ + 45.2388897722, + 4.86235251807 + ], + "libelle_d_acheminement": "ALBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86235251807, + 45.2388897722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9200b3000f122077ac663268fbaec592301a6ee", + "fields": { + "code_commune_insee": "33262", + "nom_de_la_commune": "MACAU", + "code_postal": "33460", + "coordonnees_gps": [ + 45.004972156, + -0.612661871132 + ], + "libelle_d_acheminement": "MACAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.612661871132, + 45.004972156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59a67498994008db90c0a8c3954571b004a7f7fc", + "fields": { + "code_commune_insee": "26004", + "nom_de_la_commune": "ALIXAN", + "code_postal": "26300", + "coordonnees_gps": [ + 44.9822063371, + 5.01703375369 + ], + "libelle_d_acheminement": "ALIXAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01703375369, + 44.9822063371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a38a7afa76181e80013c8bbdd958e56ea6acaa9", + "fields": { + "code_commune_insee": "33270", + "nom_de_la_commune": "MARIMBAULT", + "code_postal": "33430", + "coordonnees_gps": [ + 44.4100701595, + -0.258019615716 + ], + "libelle_d_acheminement": "MARIMBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.258019615716, + 44.4100701595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c659316f81c76c5814210a11a1d24e5bed774bf", + "fields": { + "code_commune_insee": "26005", + "nom_de_la_commune": "ALLAN", + "code_postal": "26780", + "coordonnees_gps": [ + 44.4942339425, + 4.79847467163 + ], + "libelle_d_acheminement": "ALLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79847467163, + 44.4942339425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db33511efcbb56620a99d6b52fc88d03a7e7916b", + "fields": { + "code_commune_insee": "33277", + "nom_de_la_commune": "MASSUGAS", + "code_postal": "33790", + "coordonnees_gps": [ + 44.7697025762, + 0.101172936078 + ], + "libelle_d_acheminement": "MASSUGAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.101172936078, + 44.7697025762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45edf9fcb640907d1f2ff929119e33389914a24e", + "fields": { + "code_commune_insee": "26026", + "nom_de_la_commune": "BARRET DE LIOURE", + "code_postal": "26570", + "coordonnees_gps": [ + 44.1754211867, + 5.51622125908 + ], + "libelle_d_acheminement": "BARRET DE LIOURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51622125908, + 44.1754211867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ad6596e84bcc2bf1d0dcd74da4d8324e5df45d9", + "fields": { + "code_commune_insee": "33290", + "nom_de_la_commune": "MONTAGNE", + "code_postal": "33570", + "coordonnees_gps": [ + 44.9320818849, + -0.126958398554 + ], + "libelle_d_acheminement": "MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.126958398554, + 44.9320818849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7547ecc85b4b2f6fbbf113c8acbe02653e656866", + "fields": { + "code_commune_insee": "26050", + "nom_de_la_commune": "BESIGNAN", + "code_postal": "26110", + "coordonnees_gps": [ + 44.320135403, + 5.32102321882 + ], + "libelle_d_acheminement": "BESIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32102321882, + 44.320135403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53ab4270f71e1eb7873300d9aa7c94a5ebf3f2bf", + "fields": { + "ligne_5": "PARSAC", + "code_commune_insee": "33290", + "libelle_d_acheminement": "MONTAGNE", + "code_postal": "33570", + "nom_de_la_commune": "MONTAGNE", + "coordonnees_gps": [ + 44.9320818849, + -0.126958398554 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.126958398554, + 44.9320818849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "002e2a9ec1a18e90884b45b0913d58f44c828748", + "fields": { + "code_commune_insee": "26051", + "nom_de_la_commune": "BEZAUDUN SUR BINE", + "code_postal": "26460", + "coordonnees_gps": [ + 44.6116512795, + 5.17571070396 + ], + "libelle_d_acheminement": "BEZAUDUN SUR BINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17571070396, + 44.6116512795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b39bbec5290a065bacbd922f763cf8b954a0836", + "fields": { + "code_commune_insee": "33294", + "nom_de_la_commune": "MORIZES", + "code_postal": "33190", + "coordonnees_gps": [ + 44.6140049596, + -0.0976758090404 + ], + "libelle_d_acheminement": "MORIZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0976758090404, + 44.6140049596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03cd8b96828b2717b34665298861d8b2f4c63b1b", + "fields": { + "ligne_5": "BONNEVAL EN DIOIS", + "code_commune_insee": "26055", + "libelle_d_acheminement": "BOULC", + "code_postal": "26410", + "nom_de_la_commune": "BOULC", + "coordonnees_gps": [ + 44.6379699146, + 5.58442914276 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58442914276, + 44.6379699146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3030424cfa2441adc812303faaa7872d7151d0d5", + "fields": { + "code_commune_insee": "33296", + "nom_de_la_commune": "MOULIETS ET VILLEMARTIN", + "code_postal": "33350", + "coordonnees_gps": [ + 44.8332902441, + -0.0217836463631 + ], + "libelle_d_acheminement": "MOULIETS ET VILLEMARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0217836463631, + 44.8332902441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f531ff1e44082155859240c6a5897d4fd0d7142c", + "fields": { + "ligne_5": "RAVEL ET FERRIERS", + "code_commune_insee": "26055", + "libelle_d_acheminement": "BOULC", + "code_postal": "26410", + "nom_de_la_commune": "BOULC", + "coordonnees_gps": [ + 44.6379699146, + 5.58442914276 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58442914276, + 44.6379699146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f2a045afb1d1249854aa66545cb007e1f0acecc", + "fields": { + "code_commune_insee": "33299", + "nom_de_la_commune": "MOURENS", + "code_postal": "33410", + "coordonnees_gps": [ + 44.645047308, + -0.211538957224 + ], + "libelle_d_acheminement": "MOURENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.211538957224, + 44.645047308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3be0cd356378094b9d29eaeaeae67438fcd1cde0", + "fields": { + "code_commune_insee": "26057", + "nom_de_la_commune": "BOURG DE PEAGE", + "code_postal": "26300", + "coordonnees_gps": [ + 45.0171592111, + 5.05096546169 + ], + "libelle_d_acheminement": "BOURG DE PEAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05096546169, + 45.0171592111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dc731b8234761249c6f53f0800cfbc6410ac3a8", + "fields": { + "code_commune_insee": "33303", + "nom_de_la_commune": "NERIGEAN", + "code_postal": "33750", + "coordonnees_gps": [ + 44.843131883, + -0.284955496145 + ], + "libelle_d_acheminement": "NERIGEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.284955496145, + 44.843131883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4539eca189eec95627b737ec44ea5d17071e9365", + "fields": { + "code_commune_insee": "26065", + "nom_de_la_commune": "CHABRILLAN", + "code_postal": "26400", + "coordonnees_gps": [ + 44.713669067, + 4.96072243187 + ], + "libelle_d_acheminement": "CHABRILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96072243187, + 44.713669067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6abb0250fb5ebb557dd3728a3209874972fde10", + "fields": { + "code_commune_insee": "33304", + "nom_de_la_commune": "NEUFFONS", + "code_postal": "33580", + "coordonnees_gps": [ + 44.6479485924, + 0.0115623600622 + ], + "libelle_d_acheminement": "NEUFFONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0115623600622, + 44.6479485924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e90462616fe394d6c785cfd43f1039cd1579aac0", + "fields": { + "ligne_5": "LA VACHERIE", + "code_commune_insee": "26066", + "libelle_d_acheminement": "LE CHAFFAL", + "code_postal": "26190", + "nom_de_la_commune": "LE CHAFFAL", + "coordonnees_gps": [ + 44.8732571795, + 5.17850564774 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17850564774, + 44.8732571795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f83ad058f9acc87d19cb0539847884b7c0b9af1", + "fields": { + "code_commune_insee": "33306", + "nom_de_la_commune": "NOAILLAC", + "code_postal": "33190", + "coordonnees_gps": [ + 44.517026239, + -0.0232977040899 + ], + "libelle_d_acheminement": "NOAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0232977040899, + 44.517026239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1819565c781b2f97fe8ba516aa6bc86338c6c54d", + "fields": { + "code_commune_insee": "26069", + "nom_de_la_commune": "CHAMALOC", + "code_postal": "26150", + "coordonnees_gps": [ + 44.8119455812, + 5.38565949855 + ], + "libelle_d_acheminement": "CHAMALOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38565949855, + 44.8119455812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb8e8c65ab3c2292c68bd6ff2434f7602e133d29", + "fields": { + "code_commune_insee": "33316", + "nom_de_la_commune": "PELLEGRUE", + "code_postal": "33790", + "coordonnees_gps": [ + 44.7382200976, + 0.0952560866567 + ], + "libelle_d_acheminement": "PELLEGRUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0952560866567, + 44.7382200976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdbd3d63af53eba3c5c0eee0cf82f44f02ba74cf", + "fields": { + "code_commune_insee": "26073", + "nom_de_la_commune": "CHANTEMERLE LES GRIGNAN", + "code_postal": "26230", + "coordonnees_gps": [ + 44.4050171729, + 4.83512935454 + ], + "libelle_d_acheminement": "CHANTEMERLE LES GRIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83512935454, + 44.4050171729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92eff6f6b6af98671614598271b552bb1ce74dbd", + "fields": { + "code_commune_insee": "33320", + "nom_de_la_commune": "PETIT PALAIS ET CORNEMPS", + "code_postal": "33570", + "coordonnees_gps": [ + 44.9814131472, + -0.0564567492299 + ], + "libelle_d_acheminement": "PETIT PALAIS ET CORNEMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0564567492299, + 44.9814131472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b45342aa6d347569aad1e8cb4e9693825560356", + "fields": { + "code_commune_insee": "26077", + "nom_de_la_commune": "CHARMES SUR L HERBASSE", + "code_postal": "26260", + "coordonnees_gps": [ + 45.1571098565, + 5.0153381269 + ], + "libelle_d_acheminement": "CHARMES SUR L HERBASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0153381269, + 45.1571098565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "597dc11db7a717ca5a93d06fb374d1258acdf662", + "fields": { + "code_commune_insee": "33328", + "nom_de_la_commune": "POMEROL", + "code_postal": "33500", + "coordonnees_gps": [ + 44.9313091859, + -0.204692390776 + ], + "libelle_d_acheminement": "POMEROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.204692390776, + 44.9313091859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "382dd89828da0cbb26a392709bf478cba31a83f5", + "fields": { + "code_commune_insee": "26086", + "nom_de_la_commune": "CHATILLON EN DIOIS", + "code_postal": "26410", + "coordonnees_gps": [ + 44.7022249654, + 5.48618538025 + ], + "libelle_d_acheminement": "CHATILLON EN DIOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48618538025, + 44.7022249654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69370d9d6165bc2dbe54bb579219adbb86d8bb85", + "fields": { + "code_commune_insee": "33351", + "nom_de_la_commune": "REIGNAC", + "code_postal": "33860", + "coordonnees_gps": [ + 45.2294125934, + -0.51659465108 + ], + "libelle_d_acheminement": "REIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51659465108, + 45.2294125934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a5905cf9584701e0f699e12adb4e45d6f583d72", + "fields": { + "ligne_5": "TRESCHENU CREYERS", + "code_commune_insee": "26086", + "libelle_d_acheminement": "CHATILLON EN DIOIS", + "code_postal": "26410", + "nom_de_la_commune": "CHATILLON EN DIOIS", + "coordonnees_gps": [ + 44.7022249654, + 5.48618538025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48618538025, + 44.7022249654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9b7f03ac50a3f30384b7463efbea41472247627", + "fields": { + "code_commune_insee": "33355", + "nom_de_la_commune": "RIONS", + "code_postal": "33410", + "coordonnees_gps": [ + 44.6684320932, + -0.336471805521 + ], + "libelle_d_acheminement": "RIONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.336471805521, + 44.6684320932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8f2caf4e6c9995344ec43b3568ce9d2bd368d01", + "fields": { + "code_commune_insee": "26094", + "nom_de_la_commune": "CLAVEYSON", + "code_postal": "26240", + "coordonnees_gps": [ + 45.1726420303, + 4.93358199655 + ], + "libelle_d_acheminement": "CLAVEYSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93358199655, + 45.1726420303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61606dd15a4f8da650f67f9cc50f4a6ca120bb06", + "fields": { + "code_commune_insee": "33356", + "nom_de_la_commune": "LA RIVIERE", + "code_postal": "33126", + "coordonnees_gps": [ + 44.9377237217, + -0.316177006649 + ], + "libelle_d_acheminement": "LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.316177006649, + 44.9377237217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b3a0b761f315a5485d3587ce62a42b7b164ad51", + "fields": { + "code_commune_insee": "26103", + "nom_de_la_commune": "CONDORCET", + "code_postal": "26110", + "coordonnees_gps": [ + 44.4150216526, + 5.17856915513 + ], + "libelle_d_acheminement": "CONDORCET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17856915513, + 44.4150216526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98d857a59af5a79056501077b526fff369a3cf80", + "fields": { + "code_commune_insee": "33366", + "nom_de_la_commune": "ST ANDRE DE CUBZAC", + "code_postal": "33240", + "coordonnees_gps": [ + 44.9954623723, + -0.43596742679 + ], + "libelle_d_acheminement": "ST ANDRE DE CUBZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.43596742679, + 44.9954623723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0cecf9890d9d983652574dce0457f27f2087d62", + "fields": { + "ligne_5": "DERBIERES", + "code_commune_insee": "26106", + "libelle_d_acheminement": "LA COUCOURDE", + "code_postal": "26740", + "nom_de_la_commune": "LA COUCOURDE", + "coordonnees_gps": [ + 44.6415506371, + 4.78559017675 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78559017675, + 44.6415506371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61aa0ec58c6a942dd818df83c896ebc551c91493", + "fields": { + "code_commune_insee": "33373", + "nom_de_la_commune": "ST ANTOINE SUR L ISLE", + "code_postal": "33660", + "coordonnees_gps": [ + 45.0470360982, + 0.0461113956176 + ], + "libelle_d_acheminement": "ST ANTOINE SUR L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0461113956176, + 45.0470360982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bc5ad275c3f3ea27f14491df0b31a8aad120e4b", + "fields": { + "code_commune_insee": "26114", + "nom_de_la_commune": "DIEULEFIT", + "code_postal": "26220", + "coordonnees_gps": [ + 44.5310329912, + 5.06528375642 + ], + "libelle_d_acheminement": "DIEULEFIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06528375642, + 44.5310329912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9367998303fa5fbec758806a714323b6660b5544", + "fields": { + "code_commune_insee": "33376", + "nom_de_la_commune": "ST AUBIN DE MEDOC", + "code_postal": "33160", + "coordonnees_gps": [ + 44.9333497941, + -0.748518197327 + ], + "libelle_d_acheminement": "ST AUBIN DE MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.748518197327, + 44.9333497941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd094b318e392a02e971ce4a1e156ddedb45001d", + "fields": { + "code_commune_insee": "26121", + "nom_de_la_commune": "ESPELUCHE", + "code_postal": "26780", + "coordonnees_gps": [ + 44.521406146, + 4.82247674959 + ], + "libelle_d_acheminement": "ESPELUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82247674959, + 44.521406146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d26fb7a405943da1b1e06552fc4ef6b393175d76", + "fields": { + "code_commune_insee": "33384", + "nom_de_la_commune": "ST CHRISTOPHE DES BARDES", + "code_postal": "33330", + "coordonnees_gps": [ + 44.8971613275, + -0.12024751685 + ], + "libelle_d_acheminement": "ST CHRISTOPHE DES BARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12024751685, + 44.8971613275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89b86d9b63bbc1487efc10e7a73c6fa9b4907e76", + "fields": { + "code_commune_insee": "26122", + "nom_de_la_commune": "ESPENEL", + "code_postal": "26340", + "coordonnees_gps": [ + 44.6853594311, + 5.23465969716 + ], + "libelle_d_acheminement": "ESPENEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23465969716, + 44.6853594311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4afc6379225c202ab21a662513480e8c966e10a", + "fields": { + "code_commune_insee": "33385", + "nom_de_la_commune": "ST CHRISTOPHE DE DOUBLE", + "code_postal": "33230", + "coordonnees_gps": [ + 45.0834847193, + 0.0231131592109 + ], + "libelle_d_acheminement": "ST CHRISTOPHE DE DOUBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0231131592109, + 45.0834847193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8dc861298395eb32e59633853f009aaea787d3b", + "fields": { + "ligne_5": "LA PAILLASSE", + "code_commune_insee": "26124", + "libelle_d_acheminement": "ETOILE SUR RHONE", + "code_postal": "26800", + "nom_de_la_commune": "ETOILE SUR RHONE", + "coordonnees_gps": [ + 44.8313893504, + 4.87476252885 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87476252885, + 44.8313893504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e232228b433dd299c207809169d0b51215694b1", + "fields": { + "code_commune_insee": "33388", + "nom_de_la_commune": "ST CIERS DE CANESSE", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0873767558, + -0.602217523862 + ], + "libelle_d_acheminement": "ST CIERS DE CANESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.602217523862, + 45.0873767558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58cdbcec3f7d002b7dc0781ac1c0f22708fcd03e", + "fields": { + "ligne_5": "L ECANCIERE", + "code_commune_insee": "26129", + "libelle_d_acheminement": "EYMEUX", + "code_postal": "26730", + "nom_de_la_commune": "EYMEUX", + "coordonnees_gps": [ + 45.0663071333, + 5.18254259284 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18254259284, + 45.0663071333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7767430f0e0e8b22ac59acb8ef99164df4cda3fb", + "fields": { + "code_commune_insee": "33393", + "nom_de_la_commune": "ST DENIS DE PILE", + "code_postal": "33910", + "coordonnees_gps": [ + 44.9879017706, + -0.183958862029 + ], + "libelle_d_acheminement": "ST DENIS DE PILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.183958862029, + 44.9879017706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "492a339a4c24e2fc1d098cd75c074612c6732c5c", + "fields": { + "code_commune_insee": "26133", + "nom_de_la_commune": "FAY LE CLOS", + "code_postal": "26240", + "coordonnees_gps": [ + 45.2202693272, + 4.90751711804 + ], + "libelle_d_acheminement": "FAY LE CLOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90751711804, + 45.2202693272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b7a9f51350fc4e67205207d14abcd208d2b96d9", + "fields": { + "code_commune_insee": "33396", + "nom_de_la_commune": "ST ETIENNE DE LISSE", + "code_postal": "33330", + "coordonnees_gps": [ + 44.880960315, + -0.0941588854927 + ], + "libelle_d_acheminement": "ST ETIENNE DE LISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0941588854927, + 44.880960315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f6ac1ed1135470a8a5e75efa6ba9b924a05134a", + "fields": { + "code_commune_insee": "26139", + "nom_de_la_commune": "GENISSIEUX", + "code_postal": "26750", + "coordonnees_gps": [ + 45.0819148, + 5.09023746222 + ], + "libelle_d_acheminement": "GENISSIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09023746222, + 45.0819148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b6f9d519e625f31bb653ef32bd3f56aeb2e1909", + "fields": { + "code_commune_insee": "33401", + "nom_de_la_commune": "STE FLORENCE", + "code_postal": "33350", + "coordonnees_gps": [ + 44.8173313426, + -0.0924823027936 + ], + "libelle_d_acheminement": "STE FLORENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0924823027936, + 44.8173313426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "136530274cfd5092fdee6719d4f6b123fd6690a1", + "fields": { + "code_commune_insee": "26143", + "nom_de_la_commune": "LE GRAND SERRE", + "code_postal": "26530", + "coordonnees_gps": [ + 45.2625506689, + 5.10224795583 + ], + "libelle_d_acheminement": "LE GRAND SERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10224795583, + 45.2625506689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dcf3fa269e32e835cd64edab8dfc9ea28e0f9a2", + "fields": { + "code_commune_insee": "33408", + "nom_de_la_commune": "ST GENES DE LOMBAUD", + "code_postal": "33670", + "coordonnees_gps": [ + 44.7540640198, + -0.378689815135 + ], + "libelle_d_acheminement": "ST GENES DE LOMBAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.378689815135, + 44.7540640198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a51aaf852e6f103293cef658ad6b22b46b21bd5e", + "fields": { + "code_commune_insee": "26163", + "nom_de_la_commune": "LEONCEL", + "code_postal": "26190", + "coordonnees_gps": [ + 44.9241441002, + 5.20544856273 + ], + "libelle_d_acheminement": "LEONCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20544856273, + 44.9241441002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dbf108681109564a4751f2f495ea8da6e3bd467", + "fields": { + "code_commune_insee": "33439", + "nom_de_la_commune": "ST MARIENS", + "code_postal": "33620", + "coordonnees_gps": [ + 45.1211853951, + -0.40505275637 + ], + "libelle_d_acheminement": "ST MARIENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.40505275637, + 45.1211853951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a0c0f83ec5e99d62f4318270854a09db3d7dbf6", + "fields": { + "ligne_5": "LES PETITS ROBINS", + "code_commune_insee": "26165", + "libelle_d_acheminement": "LIVRON SUR DROME", + "code_postal": "26250", + "nom_de_la_commune": "LIVRON SUR DROME", + "coordonnees_gps": [ + 44.7874186099, + 4.83899378303 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83899378303, + 44.7874186099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b53a3cd85c127367925b39ec2145888b97c535a", + "fields": { + "code_commune_insee": "33443", + "nom_de_la_commune": "ST MARTIN DE LERM", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6483155424, + -0.0445021320501 + ], + "libelle_d_acheminement": "ST MARTIN DE LERM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0445021320501, + 44.6483155424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80bd6dd711dca6852884028ab13bb1bdcce6320e", + "fields": { + "code_commune_insee": "26173", + "nom_de_la_commune": "MARCHES", + "code_postal": "26300", + "coordonnees_gps": [ + 44.9785812313, + 5.1153753818 + ], + "libelle_d_acheminement": "MARCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1153753818, + 44.9785812313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f19371fa78a9d4addd78e7fea49ca98b6468aa4", + "fields": { + "code_commune_insee": "33445", + "nom_de_la_commune": "ST MARTIN DU BOIS", + "code_postal": "33910", + "coordonnees_gps": [ + 45.0202297197, + -0.259099339397 + ], + "libelle_d_acheminement": "ST MARTIN DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.259099339397, + 45.0202297197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eb2595e001d6d6b649539ac528382fdae3d166f", + "fields": { + "code_commune_insee": "26174", + "nom_de_la_commune": "MARGES", + "code_postal": "26260", + "coordonnees_gps": [ + 45.1319031248, + 5.03106608255 + ], + "libelle_d_acheminement": "MARGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03106608255, + 45.1319031248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a3e4c49d748c085bc928741b46904ec8fbe73d3", + "fields": { + "code_commune_insee": "33447", + "nom_de_la_commune": "ST MEDARD DE GUIZIERES", + "code_postal": "33230", + "coordonnees_gps": [ + 45.0103439546, + -0.0695991585994 + ], + "libelle_d_acheminement": "ST MEDARD DE GUIZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0695991585994, + 45.0103439546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99050f0e4f46377c8be26e6e563b9b9e88d3f4f9", + "fields": { + "code_commune_insee": "26185", + "nom_de_la_commune": "MIRMANDE", + "code_postal": "26270", + "coordonnees_gps": [ + 44.6886093237, + 4.844585911 + ], + "libelle_d_acheminement": "MIRMANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.844585911, + 44.6886093237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbb6a816c9908490d4aab817b45a360e25e178e3", + "fields": { + "code_commune_insee": "33454", + "nom_de_la_commune": "ST MORILLON", + "code_postal": "33650", + "coordonnees_gps": [ + 44.6420351361, + -0.519894969485 + ], + "libelle_d_acheminement": "ST MORILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.519894969485, + 44.6420351361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7983b99a0a48956f31ca6cb1f9258d6e2419430", + "fields": { + "code_commune_insee": "26191", + "nom_de_la_commune": "MONTBOUCHER SUR JABRON", + "code_postal": "26740", + "coordonnees_gps": [ + 44.5542986445, + 4.8150831884 + ], + "libelle_d_acheminement": "MONTBOUCHER SUR JABRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8150831884, + 44.5542986445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df6adf8f09b1b6409f2608015f581b7c408e9c07", + "fields": { + "code_commune_insee": "33457", + "nom_de_la_commune": "ST PARDON DE CONQUES", + "code_postal": "33210", + "coordonnees_gps": [ + 44.5515180962, + -0.188705431159 + ], + "libelle_d_acheminement": "ST PARDON DE CONQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.188705431159, + 44.5515180962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "047f19c5eaa3ad75a6a443009dc94ef9820aefcc", + "fields": { + "code_commune_insee": "26193", + "nom_de_la_commune": "MONTBRUN LES BAINS", + "code_postal": "26570", + "coordonnees_gps": [ + 44.1877148289, + 5.43426917221 + ], + "libelle_d_acheminement": "MONTBRUN LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43426917221, + 44.1877148289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "218c4b848d1d7f66301342f11ef02a002b123c10", + "fields": { + "code_commune_insee": "33460", + "nom_de_la_commune": "ST PEY DE CASTETS", + "code_postal": "33350", + "coordonnees_gps": [ + 44.81667563, + -0.0640784363201 + ], + "libelle_d_acheminement": "ST PEY DE CASTETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0640784363201, + 44.81667563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86ae1ae60ad2a0829db3fc31b84934c9062ce321", + "fields": { + "code_commune_insee": "26194", + "nom_de_la_commune": "MONTCHENU", + "code_postal": "26350", + "coordonnees_gps": [ + 45.1920320499, + 5.03982894227 + ], + "libelle_d_acheminement": "MONTCHENU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03982894227, + 45.1920320499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8cd1c24b82801f2431bd9dfb1747a6971df118c", + "fields": { + "code_commune_insee": "33472", + "nom_de_la_commune": "ST SAUVEUR DE PUYNORMAND", + "code_postal": "33660", + "coordonnees_gps": [ + 44.9957255079, + -0.0320379299436 + ], + "libelle_d_acheminement": "ST SAUVEUR DE PUYNORMAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0320379299436, + 44.9957255079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02c761ee4509d6c7423d4489873a3ae66f06cbe3", + "fields": { + "code_commune_insee": "26206", + "nom_de_la_commune": "MONTMEYRAN", + "code_postal": "26120", + "coordonnees_gps": [ + 44.8361396041, + 4.98453227246 + ], + "libelle_d_acheminement": "MONTMEYRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98453227246, + 44.8361396041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dd3d35bd299455653dc96e9812a7ee5b32e9964", + "fields": { + "code_commune_insee": "33478", + "nom_de_la_commune": "ST SEURIN SUR L ISLE", + "code_postal": "33660", + "coordonnees_gps": [ + 45.0105769146, + -0.0011367508014 + ], + "libelle_d_acheminement": "ST SEURIN SUR L ISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0011367508014, + 45.0105769146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2083fcf2617d47682a3bc5cfb0420f9821e8be21", + "fields": { + "code_commune_insee": "26208", + "nom_de_la_commune": "MONTOISON", + "code_postal": "26800", + "coordonnees_gps": [ + 44.7975529073, + 4.93043285806 + ], + "libelle_d_acheminement": "MONTOISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93043285806, + 44.7975529073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36c401fb9ec9d31f804b7561fb77f2f9c34951a7", + "fields": { + "code_commune_insee": "33499", + "nom_de_la_commune": "LES SALLES DE CASTILLON", + "code_postal": "33350", + "coordonnees_gps": [ + 44.9144882685, + 0.0055966007677 + ], + "libelle_d_acheminement": "LES SALLES DE CASTILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0055966007677, + 44.9144882685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74775e0324f0749511195ca9dfca66189fe84d02", + "fields": { + "code_commune_insee": "26209", + "nom_de_la_commune": "MONTREAL LES SOURCES", + "code_postal": "26510", + "coordonnees_gps": [ + 44.4006997235, + 5.30675272365 + ], + "libelle_d_acheminement": "MONTREAL LES SOURCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30675272365, + 44.4006997235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bee6586694501bd9935609cac87a391be8c84ff", + "fields": { + "code_commune_insee": "33504", + "nom_de_la_commune": "SAUTERNES", + "code_postal": "33210", + "coordonnees_gps": [ + 44.531082109, + -0.341531541732 + ], + "libelle_d_acheminement": "SAUTERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.341531541732, + 44.531082109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a66995f7d8440f71fe9c7f64cdb80c9d7bca62ea", + "fields": { + "code_commune_insee": "26217", + "nom_de_la_commune": "LA MOTTE FANJAS", + "code_postal": "26190", + "coordonnees_gps": [ + 45.0452802942, + 5.27059572584 + ], + "libelle_d_acheminement": "LA MOTTE FANJAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27059572584, + 45.0452802942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9abae562382a435879e5eed1387e4e760940a9a1", + "fields": { + "code_commune_insee": "33510", + "nom_de_la_commune": "SEMENS", + "code_postal": "33490", + "coordonnees_gps": [ + 44.6132843909, + -0.232960926916 + ], + "libelle_d_acheminement": "SEMENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.232960926916, + 44.6132843909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ef66a4f84b2a5df2a2fb401bfd99f4874a98847", + "fields": { + "code_commune_insee": "26219", + "nom_de_la_commune": "MUREILS", + "code_postal": "26240", + "coordonnees_gps": [ + 45.2154706138, + 4.92828423422 + ], + "libelle_d_acheminement": "MUREILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92828423422, + 45.2154706138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17a7a5ea91eaf187aac3429ad89eea9eb81c09b3", + "fields": { + "code_commune_insee": "33515", + "nom_de_la_commune": "SOULIGNAC", + "code_postal": "33760", + "coordonnees_gps": [ + 44.6965920718, + -0.288037993647 + ], + "libelle_d_acheminement": "SOULIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.288037993647, + 44.6965920718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "862a2535b9bf0bbe175b3edc13a35976cbcd95cc", + "fields": { + "code_commune_insee": "26220", + "nom_de_la_commune": "NYONS", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3564879814, + 5.12880832 + ], + "libelle_d_acheminement": "NYONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12880832, + 44.3564879814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23756aadc14947e769d8b9542786e0654d43155c", + "fields": { + "code_commune_insee": "33518", + "nom_de_la_commune": "TABANAC", + "code_postal": "33550", + "coordonnees_gps": [ + 44.7242938143, + -0.41077713329 + ], + "libelle_d_acheminement": "TABANAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.41077713329, + 44.7242938143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a27d0c4ada6f6ded6b51a568f606ed514fd50ed6", + "fields": { + "code_commune_insee": "26221", + "nom_de_la_commune": "OMBLEZE", + "code_postal": "26400", + "coordonnees_gps": [ + 44.8638431214, + 5.23078207101 + ], + "libelle_d_acheminement": "OMBLEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23078207101, + 44.8638431214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f044fd3f08be63dae63db1aca5cb080cc55af52f", + "fields": { + "code_commune_insee": "33521", + "nom_de_la_commune": "TALAIS", + "code_postal": "33590", + "coordonnees_gps": [ + 45.4760792837, + -1.06152819999 + ], + "libelle_d_acheminement": "TALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06152819999, + 45.4760792837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18ae6767441f59cbf3d92bf7a1f824de739788ce", + "fields": { + "code_commune_insee": "26226", + "nom_de_la_commune": "LE PEGUE", + "code_postal": "26770", + "coordonnees_gps": [ + 44.4443252877, + 5.06911053601 + ], + "libelle_d_acheminement": "LE PEGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06911053601, + 44.4443252877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed1827ac6c0d48d9f64b4b9ec7c47b03d27279ca", + "fields": { + "code_commune_insee": "33523", + "nom_de_la_commune": "TARGON", + "code_postal": "33760", + "coordonnees_gps": [ + 44.7345410468, + -0.267821650496 + ], + "libelle_d_acheminement": "TARGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.267821650496, + 44.7345410468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5297d1e2be7481a1db43b1e9a9e4f1eeef22ca3c", + "fields": { + "code_commune_insee": "26229", + "nom_de_la_commune": "LA PENNE SUR L OUVEZE", + "code_postal": "26170", + "coordonnees_gps": [ + 44.2503681815, + 5.23252395755 + ], + "libelle_d_acheminement": "LA PENNE SUR L OUVEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23252395755, + 44.2503681815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c036b9904414601a08ae00865ac150362b28bc7", + "fields": { + "code_commune_insee": "33540", + "nom_de_la_commune": "VENDAYS MONTALIVET", + "code_postal": "33930", + "coordonnees_gps": [ + 45.3394672808, + -1.10059258014 + ], + "libelle_d_acheminement": "VENDAYS MONTALIVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10059258014, + 45.3394672808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "386ce7a57555fd49f71d1daa942c8eb81f81c0db", + "fields": { + "code_commune_insee": "26232", + "nom_de_la_commune": "PEYRUS", + "code_postal": "26120", + "coordonnees_gps": [ + 44.9069574255, + 5.12184117739 + ], + "libelle_d_acheminement": "PEYRUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12184117739, + 44.9069574255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee1682380f34197108657d16a137ca5579151b4f", + "fields": { + "ligne_5": "PONT DE LA MAYE", + "code_commune_insee": "33550", + "libelle_d_acheminement": "VILLENAVE D ORNON", + "code_postal": "33140", + "nom_de_la_commune": "VILLENAVE D ORNON", + "coordonnees_gps": [ + 44.773185218, + -0.558212256384 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.558212256384, + 44.773185218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9564a73a6fe21bd5dd69e44f946c6dd443ad950d", + "fields": { + "code_commune_insee": "26238", + "nom_de_la_commune": "LES PILLES", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3778726864, + 5.19915828289 + ], + "libelle_d_acheminement": "LES PILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19915828289, + 44.3778726864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb37ec063da70c33a1a7cf2b490d4cdb0339fe80", + "fields": { + "code_commune_insee": "33552", + "nom_de_la_commune": "VIRELADE", + "code_postal": "33720", + "coordonnees_gps": [ + 44.6522568451, + -0.395140990742 + ], + "libelle_d_acheminement": "VIRELADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.395140990742, + 44.6522568451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f70c7513af9c2a89e6f126f20b5d3a4512092377", + "fields": { + "code_commune_insee": "26244", + "nom_de_la_commune": "LE POET SIGILLAT", + "code_postal": "26110", + "coordonnees_gps": [ + 44.3631938216, + 5.31860156663 + ], + "libelle_d_acheminement": "LE POET SIGILLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31860156663, + 44.3631938216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "924bf833d4b385e61ea028d418c3f550259551e8", + "fields": { + "code_commune_insee": "33554", + "nom_de_la_commune": "YVRAC", + "code_postal": "33370", + "coordonnees_gps": [ + 44.8802372837, + -0.466351132109 + ], + "libelle_d_acheminement": "YVRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.466351132109, + 44.8802372837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fefea4d40c252912bcfb7b2e2db3f343d5cc32c9", + "fields": { + "code_commune_insee": "26251", + "nom_de_la_commune": "PORTES EN VALDAINE", + "code_postal": "26160", + "coordonnees_gps": [ + 44.5218419344, + 4.91432737685 + ], + "libelle_d_acheminement": "PORTES EN VALDAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91432737685, + 44.5218419344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "963f3f4fca578642936c0a7f26104eb2721df79e", + "fields": { + "code_commune_insee": "34001", + "nom_de_la_commune": "ABEILHAN", + "code_postal": "34290", + "coordonnees_gps": [ + 43.4575019905, + 3.29923508306 + ], + "libelle_d_acheminement": "ABEILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29923508306, + 43.4575019905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a3834924eec38f22f2adf61fbe7ebebf9281748", + "fields": { + "code_commune_insee": "26261", + "nom_de_la_commune": "REAUVILLE", + "code_postal": "26230", + "coordonnees_gps": [ + 44.4518475355, + 4.83915693075 + ], + "libelle_d_acheminement": "REAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83915693075, + 44.4518475355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "487f75b41076076f208991ffeeb9cd64cb2117c6", + "fields": { + "code_commune_insee": "34003", + "nom_de_la_commune": "AGDE", + "code_postal": "34300", + "coordonnees_gps": [ + 43.309129116, + 3.48447903133 + ], + "libelle_d_acheminement": "AGDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48447903133, + 43.309129116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72925c66b3e88f59b768c2c0717973e3a9263f71", + "fields": { + "code_commune_insee": "26263", + "nom_de_la_commune": "REILHANETTE", + "code_postal": "26570", + "coordonnees_gps": [ + 44.1712233115, + 5.40493973585 + ], + "libelle_d_acheminement": "REILHANETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40493973585, + 44.1712233115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c254bf19e29a2eee2091e7c03e09e6e5be48c3b", + "fields": { + "code_commune_insee": "34005", + "nom_de_la_commune": "AGONES", + "code_postal": "34190", + "coordonnees_gps": [ + 43.9010523591, + 3.72652630409 + ], + "libelle_d_acheminement": "AGONES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72652630409, + 43.9010523591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c67e794e437d63e8c9a42b2779da85a32f9ee59b", + "fields": { + "code_commune_insee": "26274", + "nom_de_la_commune": "ROCHEFOURCHAT", + "code_postal": "26340", + "coordonnees_gps": [ + 44.6049174484, + 5.2414538181 + ], + "libelle_d_acheminement": "ROCHEFOURCHAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2414538181, + 44.6049174484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80c7597addd1d6fb1c2428eb45f7d7be191d2a9d", + "fields": { + "code_commune_insee": "34012", + "nom_de_la_commune": "ARGELLIERS", + "code_postal": "34380", + "coordonnees_gps": [ + 43.7249523063, + 3.67420720253 + ], + "libelle_d_acheminement": "ARGELLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67420720253, + 43.7249523063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb0b69f4e330443f1c45ced1e357e93ffc45fa1b", + "fields": { + "code_commune_insee": "26278", + "nom_de_la_commune": "LA ROCHE SUR LE BUIS", + "code_postal": "26170", + "coordonnees_gps": [ + 44.2625812469, + 5.34101183886 + ], + "libelle_d_acheminement": "LA ROCHE SUR LE BUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34101183886, + 44.2625812469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85d0427846b311038692ccd990200e48144fdc5e", + "fields": { + "code_commune_insee": "34018", + "nom_de_la_commune": "AUTIGNAC", + "code_postal": "34480", + "coordonnees_gps": [ + 43.4997194171, + 3.16767512449 + ], + "libelle_d_acheminement": "AUTIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16767512449, + 43.4997194171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc2be176dea919a6c676bde1d2ebf729d897ebaa", + "fields": { + "code_commune_insee": "26286", + "nom_de_la_commune": "ROUSSIEUX", + "code_postal": "26510", + "coordonnees_gps": [ + 44.3315645396, + 5.47886581658 + ], + "libelle_d_acheminement": "ROUSSIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47886581658, + 44.3315645396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0473e72ecaa1199f5ad90a8eb07ea0aa01cf0581", + "fields": { + "code_commune_insee": "34019", + "nom_de_la_commune": "AVENE", + "code_postal": "34260", + "coordonnees_gps": [ + 43.7483953944, + 3.10467542388 + ], + "libelle_d_acheminement": "AVENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10467542388, + 43.7483953944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8039a2e4b347d01d76c52dcd15627bb5623ccf4d", + "fields": { + "code_commune_insee": "26290", + "nom_de_la_commune": "ST AGNAN EN VERCORS", + "code_postal": "26420", + "coordonnees_gps": [ + 44.896792332, + 5.44160263815 + ], + "libelle_d_acheminement": "ST AGNAN EN VERCORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44160263815, + 44.896792332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "061c1657819a908abc7e69972c7bafed91b719ad", + "fields": { + "code_commune_insee": "34025", + "nom_de_la_commune": "BASSAN", + "code_postal": "34290", + "coordonnees_gps": [ + 43.4084026514, + 3.2545400418 + ], + "libelle_d_acheminement": "BASSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2545400418, + 43.4084026514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec6e5f8ba144064db3084f761986072001889a01", + "fields": { + "code_commune_insee": "26298", + "nom_de_la_commune": "ST CHRISTOPHE ET LE LARIS", + "code_postal": "26350", + "coordonnees_gps": [ + 45.2165901189, + 5.07080071319 + ], + "libelle_d_acheminement": "ST CHRISTOPHE ET LE LARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07080071319, + 45.2165901189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fcc65f672345a77881822c7d13ef624703fe2fb", + "fields": { + "code_commune_insee": "34027", + "nom_de_la_commune": "BEAULIEU", + "code_postal": "34160", + "coordonnees_gps": [ + 43.7298984427, + 4.02118900985 + ], + "libelle_d_acheminement": "BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02118900985, + 43.7298984427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e30d3ca21ad52848d8dccc7102f8ef982d2373b9", + "fields": { + "code_commune_insee": "26300", + "nom_de_la_commune": "ST DIZIER EN DIOIS", + "code_postal": "26310", + "coordonnees_gps": [ + 44.5106852385, + 5.4869564348 + ], + "libelle_d_acheminement": "ST DIZIER EN DIOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4869564348, + 44.5106852385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65fbae66493a5c7e5b49dd3b9e5c892fc02665a3", + "fields": { + "code_commune_insee": "34031", + "nom_de_la_commune": "BESSAN", + "code_postal": "34550", + "coordonnees_gps": [ + 43.3569862701, + 3.41660408543 + ], + "libelle_d_acheminement": "BESSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41660408543, + 43.3569862701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5811fb4caefc1db0f426105858a17e7d2b824e56", + "fields": { + "code_commune_insee": "26302", + "nom_de_la_commune": "STE EULALIE EN ROYANS", + "code_postal": "26190", + "coordonnees_gps": [ + 45.0447456413, + 5.34170450082 + ], + "libelle_d_acheminement": "STE EULALIE EN ROYANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34170450082, + 45.0447456413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16d4dc5ec10f146d6167fc3578ea9a355c316a2b", + "fields": { + "code_commune_insee": "34032", + "nom_de_la_commune": "BEZIERS", + "code_postal": "34500", + "coordonnees_gps": [ + 43.3475883319, + 3.23076754164 + ], + "libelle_d_acheminement": "BEZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23076754164, + 43.3475883319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6325514956ce2b986d5ad601f8d6b09a2f9e979f", + "fields": { + "code_commune_insee": "26315", + "nom_de_la_commune": "ST MARTIN EN VERCORS", + "code_postal": "26420", + "coordonnees_gps": [ + 45.0160606703, + 5.44906004178 + ], + "libelle_d_acheminement": "ST MARTIN EN VERCORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44906004178, + 45.0160606703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e63e637271769d4400b77885ffad16d99b970f8", + "fields": { + "code_commune_insee": "34036", + "nom_de_la_commune": "LE BOSC", + "code_postal": "34700", + "coordonnees_gps": [ + 43.6957752498, + 3.38710687452 + ], + "libelle_d_acheminement": "LE BOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38710687452, + 43.6957752498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3ed6e1040674564f02f92ce4e3277e2d120ac29", + "fields": { + "code_commune_insee": "26319", + "nom_de_la_commune": "ST MICHEL SUR SAVASSE", + "code_postal": "26750", + "coordonnees_gps": [ + 45.1463901355, + 5.12162175387 + ], + "libelle_d_acheminement": "ST MICHEL SUR SAVASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12162175387, + 45.1463901355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0beb6d11f305ab4f82b974644aa82e85f0387dc", + "fields": { + "code_commune_insee": "34038", + "nom_de_la_commune": "LE BOUSQUET D ORB", + "code_postal": "34260", + "coordonnees_gps": [ + 43.7025373477, + 3.15150280873 + ], + "libelle_d_acheminement": "LE BOUSQUET D ORB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15150280873, + 43.7025373477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9eb9ee04ada60215be370914433ef60b827a3f81", + "fields": { + "code_commune_insee": "26325", + "nom_de_la_commune": "ST RAMBERT D ALBON", + "code_postal": "26140", + "coordonnees_gps": [ + 45.2891075425, + 4.8312134754 + ], + "libelle_d_acheminement": "ST RAMBERT D ALBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8312134754, + 45.2891075425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8611ee9d63fe04d15baa8b5dd34640e8224c37cc", + "fields": { + "code_commune_insee": "34039", + "nom_de_la_commune": "BOUZIGUES", + "code_postal": "34140", + "coordonnees_gps": [ + 43.4453207742, + 3.65707555068 + ], + "libelle_d_acheminement": "BOUZIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65707555068, + 43.4453207742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fab599e662838a96000a449440fdb9408af1959b", + "fields": { + "code_commune_insee": "26327", + "nom_de_la_commune": "ST ROMAN", + "code_postal": "26410", + "coordonnees_gps": [ + 44.6889512746, + 5.42687100416 + ], + "libelle_d_acheminement": "ST ROMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42687100416, + 44.6889512746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3fb6b3f106cd165cf05e0a9e90125373872db78", + "fields": { + "code_commune_insee": "34051", + "nom_de_la_commune": "CANET", + "code_postal": "34800", + "coordonnees_gps": [ + 43.5983184879, + 3.48279950593 + ], + "libelle_d_acheminement": "CANET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48279950593, + 43.5983184879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "307e4a0c6a055acdc64f1bcf262cc52d90745c1f", + "fields": { + "code_commune_insee": "26335", + "nom_de_la_commune": "SALLES SOUS BOIS", + "code_postal": "26770", + "coordonnees_gps": [ + 44.4707924508, + 4.94008224904 + ], + "libelle_d_acheminement": "SALLES SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94008224904, + 44.4707924508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "278c32555a1e3cc476760e6a6ab1019a99df92d0", + "fields": { + "code_commune_insee": "34056", + "nom_de_la_commune": "CASTELNAU DE GUERS", + "code_postal": "34120", + "coordonnees_gps": [ + 43.4352029154, + 3.47130498268 + ], + "libelle_d_acheminement": "CASTELNAU DE GUERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47130498268, + 43.4352029154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d859d440219b7317e7a75dd3cae75b22f3b7251a", + "fields": { + "code_commune_insee": "26337", + "nom_de_la_commune": "SAULCE SUR RHONE", + "code_postal": "26270", + "coordonnees_gps": [ + 44.7042406134, + 4.79084711633 + ], + "libelle_d_acheminement": "SAULCE SUR RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79084711633, + 44.7042406134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75d7c06493fdb55d5b3af2648b2ee69b572ccff8", + "fields": { + "code_commune_insee": "34067", + "nom_de_la_commune": "CAZILHAC", + "code_postal": "34190", + "coordonnees_gps": [ + 43.9181503248, + 3.69073251307 + ], + "libelle_d_acheminement": "CAZILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69073251307, + 43.9181503248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "363ebcad55b3609c5c0d2942da3b4c2597b2f246", + "fields": { + "code_commune_insee": "26338", + "nom_de_la_commune": "SAUZET", + "code_postal": "26740", + "coordonnees_gps": [ + 44.5897268038, + 4.82526007849 + ], + "libelle_d_acheminement": "SAUZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82526007849, + 44.5897268038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50c0d303cfdcc15522ee140b4353747fc138a3bb", + "fields": { + "code_commune_insee": "34068", + "nom_de_la_commune": "CAZOULS D HERAULT", + "code_postal": "34120", + "coordonnees_gps": [ + 43.5018486169, + 3.45727466019 + ], + "libelle_d_acheminement": "CAZOULS D HERAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45727466019, + 43.5018486169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f81e0b35a258b7262bfda6bcb1c5ee4812f70f5d", + "fields": { + "code_commune_insee": "26346", + "nom_de_la_commune": "SUZE", + "code_postal": "26400", + "coordonnees_gps": [ + 44.7580022895, + 5.10621589285 + ], + "libelle_d_acheminement": "SUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10621589285, + 44.7580022895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "082edd7a1d2da8a301ffbefe2569a28a198f9031", + "fields": { + "code_commune_insee": "34089", + "nom_de_la_commune": "CREISSAN", + "code_postal": "34370", + "coordonnees_gps": [ + 43.3771624265, + 2.99976062143 + ], + "libelle_d_acheminement": "CREISSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99976062143, + 43.3771624265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff1e4212cb7d602e182c8338e5c860a7177a981e", + "fields": { + "code_commune_insee": "26348", + "nom_de_la_commune": "TAULIGNAN", + "code_postal": "26770", + "coordonnees_gps": [ + 44.4589108654, + 4.97848630034 + ], + "libelle_d_acheminement": "TAULIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97848630034, + 44.4589108654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "962f24ad0a090cc8ca27de973ea200e9ae7c56e3", + "fields": { + "code_commune_insee": "34091", + "nom_de_la_commune": "LE CROS", + "code_postal": "34520", + "coordonnees_gps": [ + 43.8802736977, + 3.36304927943 + ], + "libelle_d_acheminement": "LE CROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36304927943, + 43.8802736977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a33463d8ce8f91c73d6d5d17b2e2e03e35fb309", + "fields": { + "code_commune_insee": "26349", + "nom_de_la_commune": "TERSANNE", + "code_postal": "26390", + "coordonnees_gps": [ + 45.2159447789, + 5.01614531458 + ], + "libelle_d_acheminement": "TERSANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01614531458, + 45.2159447789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00a412ab86a1643a5def56028bf4b7c524c586d0", + "fields": { + "code_commune_insee": "34098", + "nom_de_la_commune": "FERRALS LES MONTAGNES", + "code_postal": "34210", + "coordonnees_gps": [ + 43.4188135877, + 2.6417753577 + ], + "libelle_d_acheminement": "FERRALS LES MONTAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6417753577, + 43.4188135877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bad6b23fbcacb55f9fd78ab2e1414db48965f851", + "fields": { + "code_commune_insee": "26350", + "nom_de_la_commune": "TEYSSIERES", + "code_postal": "26220", + "coordonnees_gps": [ + 44.4574320364, + 5.14299816408 + ], + "libelle_d_acheminement": "TEYSSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14299816408, + 44.4574320364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0f38710e1e138f85d289b54c0b99be7ee93c835", + "fields": { + "code_commune_insee": "34100", + "nom_de_la_commune": "FERRIERES POUSSAROU", + "code_postal": "34360", + "coordonnees_gps": [ + 43.4833450309, + 2.903540512 + ], + "libelle_d_acheminement": "FERRIERES POUSSAROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.903540512, + 43.4833450309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4457a2c0154240348164401fddd9b670390823a0", + "fields": { + "code_commune_insee": "26352", + "nom_de_la_commune": "LA TOUCHE", + "code_postal": "26160", + "coordonnees_gps": [ + 44.5183828304, + 4.8861428282 + ], + "libelle_d_acheminement": "LA TOUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8861428282, + 44.5183828304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fc77b9912a63537dc33a0600c57bc775de4fdf4", + "fields": { + "code_commune_insee": "34108", + "nom_de_la_commune": "FRONTIGNAN", + "code_postal": "34110", + "coordonnees_gps": [ + 43.4482458873, + 3.74923522416 + ], + "libelle_d_acheminement": "FRONTIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74923522416, + 43.4482458873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dabf17d4ec4bc0e621ace415a56a25ab6997e09b", + "fields": { + "code_commune_insee": "26368", + "nom_de_la_commune": "VERCHENY", + "code_postal": "26340", + "coordonnees_gps": [ + 44.7147022562, + 5.24834854956 + ], + "libelle_d_acheminement": "VERCHENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24834854956, + 44.7147022562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff5103dc199e627221880b977778d028f7ec36a1", + "fields": { + "code_commune_insee": "34111", + "nom_de_la_commune": "GANGES", + "code_postal": "34190", + "coordonnees_gps": [ + 43.9457300618, + 3.70523816055 + ], + "libelle_d_acheminement": "GANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70523816055, + 43.9457300618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b3feb974067d2b5c2d91121771998f0c75c51e1", + "fields": { + "code_commune_insee": "26373", + "nom_de_la_commune": "VESC", + "code_postal": "26220", + "coordonnees_gps": [ + 44.5098284454, + 5.15787850108 + ], + "libelle_d_acheminement": "VESC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15787850108, + 44.5098284454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b56cea8da6cb83b887220f18959ebb7ec8ba4c25", + "fields": { + "code_commune_insee": "34115", + "nom_de_la_commune": "GORNIES", + "code_postal": "34190", + "coordonnees_gps": [ + 43.8843569278, + 3.62462795605 + ], + "libelle_d_acheminement": "GORNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62462795605, + 43.8843569278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f56cda5fb012db46e6face43ba528d772fc2a767", + "fields": { + "code_commune_insee": "26375", + "nom_de_la_commune": "VILLEFRANCHE LE CHATEAU", + "code_postal": "26560", + "coordonnees_gps": [ + 44.2152597669, + 5.50831127895 + ], + "libelle_d_acheminement": "VILLEFRANCHE LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50831127895, + 44.2152597669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88a1f1f34bcb374f27f0b0de87d3a423402bd3b0", + "fields": { + "code_commune_insee": "34117", + "nom_de_la_commune": "GRAISSESSAC", + "code_postal": "34260", + "coordonnees_gps": [ + 43.6862996463, + 3.08522636762 + ], + "libelle_d_acheminement": "GRAISSESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08522636762, + 43.6862996463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f734fc891dd02bc2f30941b6fa268b08990bd83", + "fields": { + "code_commune_insee": "26376", + "nom_de_la_commune": "VILLEPERDRIX", + "code_postal": "26510", + "coordonnees_gps": [ + 44.4557494791, + 5.29971413853 + ], + "libelle_d_acheminement": "VILLEPERDRIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29971413853, + 44.4557494791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cc01714cd139b43711a4af43eb4ad80d5323ed1", + "fields": { + "code_commune_insee": "34119", + "nom_de_la_commune": "HEREPIAN", + "code_postal": "34600", + "coordonnees_gps": [ + 43.591789169, + 3.11770187761 + ], + "libelle_d_acheminement": "HEREPIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11770187761, + 43.591789169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e284fbb1f48953bd0e7c33780a147626d45ee92", + "fields": { + "code_commune_insee": "27003", + "nom_de_la_commune": "ACQUIGNY", + "code_postal": "27400", + "coordonnees_gps": [ + 49.1648717394, + 1.1765581743 + ], + "libelle_d_acheminement": "ACQUIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1765581743, + 49.1648717394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa657db30e688ef7482790023b6368db1dffb39f", + "fields": { + "code_commune_insee": "34120", + "nom_de_la_commune": "JACOU", + "code_postal": "34830", + "coordonnees_gps": [ + 43.6629846943, + 3.9119610777 + ], + "libelle_d_acheminement": "JACOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9119610777, + 43.6629846943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ed8a8da0392c50bf676cb60510525ec4001e535", + "fields": { + "code_commune_insee": "27005", + "nom_de_la_commune": "AILLY", + "code_postal": "27600", + "coordonnees_gps": [ + 49.1575246748, + 1.24431447068 + ], + "libelle_d_acheminement": "AILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24431447068, + 49.1575246748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1754e814cf90aee7563fabe4743d07b7fff644cc", + "fields": { + "code_commune_insee": "34122", + "nom_de_la_commune": "JONQUIERES", + "code_postal": "34725", + "coordonnees_gps": [ + 43.673901625, + 3.47813467686 + ], + "libelle_d_acheminement": "JONQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47813467686, + 43.673901625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e891816935d6f9860694908269a886c075e83dad", + "fields": { + "code_commune_insee": "27008", + "nom_de_la_commune": "ALIZAY", + "code_postal": "27460", + "coordonnees_gps": [ + 49.3219074958, + 1.17828361031 + ], + "libelle_d_acheminement": "ALIZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17828361031, + 49.3219074958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87edcc9185fdda92c572a9f487704f8e992f8437", + "fields": { + "code_commune_insee": "34123", + "nom_de_la_commune": "JUVIGNAC", + "code_postal": "34990", + "coordonnees_gps": [ + 43.6237646402, + 3.79579375182 + ], + "libelle_d_acheminement": "JUVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79579375182, + 43.6237646402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae2c04562837c3ff23af2d167020e7e09c5d60aa", + "fields": { + "code_commune_insee": "27014", + "nom_de_la_commune": "AMFREVILLE SUR ITON", + "code_postal": "27400", + "coordonnees_gps": [ + 49.1567317794, + 1.14647315258 + ], + "libelle_d_acheminement": "AMFREVILLE SUR ITON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14647315258, + 49.1567317794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc5b11b7d2a0b45b2564a17d8b549a18b91774be", + "fields": { + "code_commune_insee": "34138", + "nom_de_la_commune": "LIEURAN CABRIERES", + "code_postal": "34800", + "coordonnees_gps": [ + 43.5916311464, + 3.40878385733 + ], + "libelle_d_acheminement": "LIEURAN CABRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40878385733, + 43.5916311464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2380cd14a6c41b313135ee8f92be89bd97c530c3", + "fields": { + "ligne_5": "VIEUX VILLEZ", + "code_commune_insee": "27022", + "libelle_d_acheminement": "LE VAL D HAZEY", + "code_postal": "27600", + "nom_de_la_commune": "LE VAL D HAZEY", + "coordonnees_gps": [ + 49.1751629599, + 1.33329956002 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33329956002, + 49.1751629599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd98798e4ac73872f2495123e0b39a5f47298e3c", + "fields": { + "code_commune_insee": "34141", + "nom_de_la_commune": "LA LIVINIERE", + "code_postal": "34210", + "coordonnees_gps": [ + 43.3372267899, + 2.63272340257 + ], + "libelle_d_acheminement": "LA LIVINIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63272340257, + 43.3372267899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6f7aa078a4d98f9d84f976d802aaaf5c2c8a3cf", + "fields": { + "ligne_5": "AUTHOUILLET", + "code_commune_insee": "27025", + "libelle_d_acheminement": "AUTHEUIL AUTHOUILLET", + "code_postal": "27490", + "nom_de_la_commune": "AUTHEUIL AUTHOUILLET", + "coordonnees_gps": [ + 49.1004320886, + 1.2947778203 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2947778203, + 49.1004320886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82f6d3f6cc1b2f5c057a85f52a2c2c80eddec245", + "fields": { + "code_commune_insee": "34146", + "nom_de_la_commune": "LUNEL VIEL", + "code_postal": "34400", + "coordonnees_gps": [ + 43.6826642395, + 4.08422296335 + ], + "libelle_d_acheminement": "LUNEL VIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08422296335, + 43.6826642395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8048ece91f02eb776c0bed43f14a5fc5989b0f5", + "fields": { + "code_commune_insee": "27028", + "nom_de_la_commune": "AUTHOU", + "code_postal": "27290", + "coordonnees_gps": [ + 49.2260820687, + 0.696761680662 + ], + "libelle_d_acheminement": "AUTHOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696761680662, + 49.2260820687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48566167d0e9070cac38d7245a90302191bc229f", + "fields": { + "ligne_5": "CARNON PLAGE", + "code_commune_insee": "34154", + "libelle_d_acheminement": "MAUGUIO", + "code_postal": "34130", + "nom_de_la_commune": "MAUGUIO", + "coordonnees_gps": [ + 43.5928279472, + 4.00425693337 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00425693337, + 43.5928279472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba1870d6f05aee8c01ae55de6ef98497fdbd2a2e", + "fields": { + "code_commune_insee": "27031", + "nom_de_la_commune": "AVIRON", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0566321831, + 1.12002720385 + ], + "libelle_d_acheminement": "AVIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12002720385, + 49.0566321831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3509ad68045b6b5e0ebb74b34b58c195fd4038b6", + "fields": { + "code_commune_insee": "34166", + "nom_de_la_commune": "MONTBLANC", + "code_postal": "34290", + "coordonnees_gps": [ + 43.3707718036, + 3.35755094036 + ], + "libelle_d_acheminement": "MONTBLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35755094036, + 43.3707718036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "538060d658ebc66279fb201628a2bd1c9149ccb9", + "fields": { + "code_commune_insee": "27040", + "nom_de_la_commune": "BARQUET", + "code_postal": "27170", + "coordonnees_gps": [ + 49.0394990811, + 0.854645934918 + ], + "libelle_d_acheminement": "BARQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.854645934918, + 49.0394990811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad7348a363daf9cf0c88b20d85f96183734eaf23", + "fields": { + "code_commune_insee": "34172", + "nom_de_la_commune": "MONTPELLIER", + "code_postal": "34080", + "coordonnees_gps": [ + 43.6134409138, + 3.86851657896 + ], + "libelle_d_acheminement": "MONTPELLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86851657896, + 43.6134409138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c984407ba7fa093b8495e3210e46988396cb60cc", + "fields": { + "code_commune_insee": "27042", + "nom_de_la_commune": "BARVILLE", + "code_postal": "27230", + "coordonnees_gps": [ + 49.157858783, + 0.485044896768 + ], + "libelle_d_acheminement": "BARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.485044896768, + 49.157858783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b212e369a28ed057877f718333649dab881fe05", + "fields": { + "code_commune_insee": "34173", + "nom_de_la_commune": "MONTPEYROUX", + "code_postal": "34150", + "coordonnees_gps": [ + 43.711158125, + 3.50240555203 + ], + "libelle_d_acheminement": "MONTPEYROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50240555203, + 43.711158125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b76927376402547011ac9416d9ef55d73e26890f", + "fields": { + "ligne_5": "AJOU", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27410", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3ddf660bd22a34447a9c2eea373edc29d881c6b", + "fields": { + "code_commune_insee": "34177", + "nom_de_la_commune": "MURLES", + "code_postal": "34980", + "coordonnees_gps": [ + 43.7017303603, + 3.75723604182 + ], + "libelle_d_acheminement": "MURLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75723604182, + 43.7017303603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeb1a2ba47196c3cf5a7c813951a4cf297eaefb5", + "fields": { + "ligne_5": "BEAUMESNIL", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27410", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2953130c5c3d6318d63615b57fd25f4933577cbe", + "fields": { + "code_commune_insee": "34180", + "nom_de_la_commune": "NEBIAN", + "code_postal": "34800", + "coordonnees_gps": [ + 43.5995432245, + 3.43678111885 + ], + "libelle_d_acheminement": "NEBIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43678111885, + 43.5995432245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a80fd08d00b30ef42a329e5a2dfdbb44508be3e", + "fields": { + "ligne_5": "JONQUERETS DE LIVET", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27410", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84fc954e6f4345432ea8d8bc433623259fb5096e", + "fields": { + "code_commune_insee": "34184", + "nom_de_la_commune": "NIZAS", + "code_postal": "34320", + "coordonnees_gps": [ + 43.5137142122, + 3.41956425429 + ], + "libelle_d_acheminement": "NIZAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41956425429, + 43.5137142122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0e70ff8dd0dfc0b83e47587e7fa064d745f04b2", + "fields": { + "ligne_5": "STE MARGUERITE EN OUCHE", + "code_commune_insee": "27049", + "libelle_d_acheminement": "MESNIL EN OUCHE", + "code_postal": "27410", + "nom_de_la_commune": "MESNIL EN OUCHE", + "coordonnees_gps": [ + 49.0090520551, + 0.696415474297 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696415474297, + 49.0090520551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90c2975797bc2e3636269dcd4fe8385dbd6bcdf1", + "fields": { + "code_commune_insee": "34187", + "nom_de_la_commune": "OLARGUES", + "code_postal": "34390", + "coordonnees_gps": [ + 43.540135455, + 2.91772316116 + ], + "libelle_d_acheminement": "OLARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91772316116, + 43.540135455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d09d6dcf1bf2c2b740461a1bec4cf920c1aecfe", + "fields": { + "code_commune_insee": "27056", + "nom_de_la_commune": "BERNAY", + "code_postal": "27300", + "coordonnees_gps": [ + 49.0925877345, + 0.58959175237 + ], + "libelle_d_acheminement": "BERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.58959175237, + 49.0925877345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2258146ac72ac205ba389fde1d7c470bafe4c1ea", + "fields": { + "code_commune_insee": "34188", + "nom_de_la_commune": "OLMET ET VILLECUN", + "code_postal": "34700", + "coordonnees_gps": [ + 43.7080042614, + 3.29790307096 + ], + "libelle_d_acheminement": "OLMET ET VILLECUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29790307096, + 43.7080042614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d686e09138091dcb7f254e2db870ef6c604705c9", + "fields": { + "code_commune_insee": "27059", + "nom_de_la_commune": "BERNOUVILLE", + "code_postal": "27660", + "coordonnees_gps": [ + 49.289676339, + 1.6744453419 + ], + "libelle_d_acheminement": "BERNOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6744453419, + 49.289676339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "898844236b6e200861f016efb9d7f7b3032cf223", + "fields": { + "code_commune_insee": "34189", + "nom_de_la_commune": "OLONZAC", + "code_postal": "34210", + "coordonnees_gps": [ + 43.2811329903, + 2.73729224863 + ], + "libelle_d_acheminement": "OLONZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73729224863, + 43.2811329903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0cbd9acdcb43f0a94aa9487c4fe2b6833ea14fe", + "fields": { + "ligne_5": "BOSGUERARD DE MARCOUVILLE", + "code_commune_insee": "27062", + "libelle_d_acheminement": "LES MONTS DU ROUMOIS", + "code_postal": "27520", + "nom_de_la_commune": "LES MONTS DU ROUMOIS", + "coordonnees_gps": [ + 49.2948046774, + 0.827614672405 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.827614672405, + 49.2948046774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87e16e7ed89b21194e49f3f74187e56e9fb9e10e", + "fields": { + "code_commune_insee": "34196", + "nom_de_la_commune": "PEGAIROLLES DE L ESCALETTE", + "code_postal": "34700", + "coordonnees_gps": [ + 43.8129638311, + 3.33457368813 + ], + "libelle_d_acheminement": "PEGAIROLLES DE L ESCALETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33457368813, + 43.8129638311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a05ea48fb70aa00bd494322743da3efda0a771d", + "fields": { + "code_commune_insee": "27063", + "nom_de_la_commune": "BERVILLE LA CAMPAGNE", + "code_postal": "27170", + "coordonnees_gps": [ + 49.0261594843, + 0.89327089992 + ], + "libelle_d_acheminement": "BERVILLE LA CAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89327089992, + 49.0261594843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "011760ec6cc1261c810a6a7f563a318c00013e48", + "fields": { + "code_commune_insee": "34202", + "nom_de_la_commune": "PIGNAN", + "code_postal": "34570", + "coordonnees_gps": [ + 43.5855297709, + 3.74922617626 + ], + "libelle_d_acheminement": "PIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74922617626, + 43.5855297709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dfda4afe9d99bde3c82710b3219298d3d6c9d95", + "fields": { + "code_commune_insee": "27065", + "nom_de_la_commune": "BEUZEVILLE", + "code_postal": "27210", + "coordonnees_gps": [ + 49.3380079083, + 0.342706713598 + ], + "libelle_d_acheminement": "BEUZEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.342706713598, + 49.3380079083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ea848a2d5c0310cc227e8f40d881fdfc5bf88c7", + "fields": { + "code_commune_insee": "34207", + "nom_de_la_commune": "POMEROLS", + "code_postal": "34810", + "coordonnees_gps": [ + 43.3966621859, + 3.51470119674 + ], + "libelle_d_acheminement": "POMEROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51470119674, + 43.3966621859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2d0c4f56da821575e6001d189686080bac909c5", + "fields": { + "code_commune_insee": "27066", + "nom_de_la_commune": "BEZU LA FORET", + "code_postal": "27480", + "coordonnees_gps": [ + 49.3958627299, + 1.6243958073 + ], + "libelle_d_acheminement": "BEZU LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6243958073, + 49.3958627299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e41aa4f0cb812a1875a4c9896c16746f1fc6203", + "fields": { + "code_commune_insee": "34214", + "nom_de_la_commune": "POUZOLLES", + "code_postal": "34480", + "coordonnees_gps": [ + 43.4790289284, + 3.27343526543 + ], + "libelle_d_acheminement": "POUZOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27343526543, + 43.4790289284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e87a834b2a7810aea626811529b22635ef2afe0e", + "fields": { + "ligne_5": "CORNY", + "code_commune_insee": "27070", + "libelle_d_acheminement": "FRENELLES EN VEXIN", + "code_postal": "27700", + "nom_de_la_commune": "FRENELLES EN VEXIN", + "coordonnees_gps": [ + 49.2925439055, + 1.49018837893 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49018837893, + 49.2925439055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22d2ee42b329a2becb8fef90c177ce05e71874d0", + "fields": { + "code_commune_insee": "34221", + "nom_de_la_commune": "PUECHABON", + "code_postal": "34150", + "coordonnees_gps": [ + 43.7250949806, + 3.60615436685 + ], + "libelle_d_acheminement": "PUECHABON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60615436685, + 43.7250949806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e45be1d143a8d722e72098f0eb68c2040899b783", + "fields": { + "code_commune_insee": "27072", + "nom_de_la_commune": "BOIS JEROME ST OUEN", + "code_postal": "27620", + "coordonnees_gps": [ + 49.1028777663, + 1.54843437067 + ], + "libelle_d_acheminement": "BOIS JEROME ST OUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54843437067, + 49.1028777663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a4e11fef69655bb1b05c87985658099334ecba0", + "fields": { + "code_commune_insee": "34231", + "nom_de_la_commune": "ROMIGUIERES", + "code_postal": "34650", + "coordonnees_gps": [ + 43.8174606939, + 3.23863631035 + ], + "libelle_d_acheminement": "ROMIGUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23863631035, + 43.8174606939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fd5add8195a90c2d5b5c626371d6af26ab8b93d", + "fields": { + "code_commune_insee": "27075", + "nom_de_la_commune": "BOIS NORMAND PRES LYRE", + "code_postal": "27330", + "coordonnees_gps": [ + 48.9005939883, + 0.693720098144 + ], + "libelle_d_acheminement": "BOIS NORMAND PRES LYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.693720098144, + 48.9005939883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e17f1488f7c808bcc99386b9aefb2f0d01cc2439", + "fields": { + "code_commune_insee": "34236", + "nom_de_la_commune": "ROUET", + "code_postal": "34380", + "coordonnees_gps": [ + 43.8258792958, + 3.81594115677 + ], + "libelle_d_acheminement": "LE ROUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81594115677, + 43.8258792958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2b41c01928f500ba514cc614a6787b934fe327f", + "fields": { + "code_commune_insee": "27081", + "nom_de_la_commune": "BONCOURT", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0203312992, + 1.29712333835 + ], + "libelle_d_acheminement": "BONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29712333835, + 49.0203312992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f83fed0bf99588c797c799d913ad83c34e4d3a4a", + "fields": { + "code_commune_insee": "34238", + "nom_de_la_commune": "ST ANDRE DE BUEGES", + "code_postal": "34190", + "coordonnees_gps": [ + 43.8538870813, + 3.64957493521 + ], + "libelle_d_acheminement": "ST ANDRE DE BUEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64957493521, + 43.8538870813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "066633b7d37a4bb1625cad9e4d6004bba4eccd0f", + "fields": { + "code_commune_insee": "27082", + "nom_de_la_commune": "LA BONNEVILLE SUR ITON", + "code_postal": "27190", + "coordonnees_gps": [ + 48.997516605, + 1.03540164833 + ], + "libelle_d_acheminement": "LA BONNEVILLE SUR ITON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03540164833, + 48.997516605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96d27448413f7f17f0201cf31a4bfffe40d2283e", + "fields": { + "code_commune_insee": "34242", + "nom_de_la_commune": "ST BAUZILLE DE MONTMEL", + "code_postal": "34160", + "coordonnees_gps": [ + 43.776222742, + 3.95036124695 + ], + "libelle_d_acheminement": "ST BAUZILLE DE MONTMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95036124695, + 43.776222742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47dc821d058cbf1f1f066868f5f8963768fa4589", + "fields": { + "ligne_5": "THEILLEMENT", + "code_commune_insee": "27089", + "libelle_d_acheminement": "THENOUVILLE", + "code_postal": "27520", + "nom_de_la_commune": "THENOUVILLE", + "coordonnees_gps": [ + 49.2989521674, + 0.772087753969 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.772087753969, + 49.2989521674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfb7b8a5a2b30602ae7f79857ec4373ff8cd6361", + "fields": { + "code_commune_insee": "34248", + "nom_de_la_commune": "STE CROIX DE QUINTILLARGUES", + "code_postal": "34270", + "coordonnees_gps": [ + 43.7680759693, + 3.91047320364 + ], + "libelle_d_acheminement": "STE CROIX DE QUINTILLARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91047320364, + 43.7680759693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "922b09aa44ac1294e343c4e3bd4059150fd1c65c", + "fields": { + "ligne_5": "BOSNORMAND", + "code_commune_insee": "27090", + "libelle_d_acheminement": "BOSROUMOIS", + "code_postal": "27670", + "nom_de_la_commune": "BOSROUMOIS", + "coordonnees_gps": [ + 49.2933518508, + 0.922353150022 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.922353150022, + 49.2933518508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cae1000d4afdb369d4b667e0cd40137b801f2f8a", + "fields": { + "code_commune_insee": "34255", + "nom_de_la_commune": "ST GELY DU FESC", + "code_postal": "34980", + "coordonnees_gps": [ + 43.6896523672, + 3.80969577473 + ], + "libelle_d_acheminement": "ST GELY DU FESC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80969577473, + 43.6896523672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6513525fa21fc84074ba0c215c74b80440ef09d", + "fields": { + "ligne_5": "VAUX SUR RISLE", + "code_commune_insee": "27096", + "libelle_d_acheminement": "LES BOTTEREAUX", + "code_postal": "27250", + "nom_de_la_commune": "LES BOTTEREAUX", + "coordonnees_gps": [ + 48.8712188786, + 0.676548267263 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.676548267263, + 48.8712188786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "052ebe134310cf7ee239b56d0736b26f7eab7624", + "fields": { + "code_commune_insee": "34256", + "nom_de_la_commune": "ST GENIES DES MOURGUES", + "code_postal": "34160", + "coordonnees_gps": [ + 43.6972031545, + 4.03751252164 + ], + "libelle_d_acheminement": "ST GENIES DES MOURGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03751252164, + 43.6972031545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a432465e83cc33363b87fa20ff7645c2ef9c075d", + "fields": { + "code_commune_insee": "27099", + "nom_de_la_commune": "LE BOULAY MORIN", + "code_postal": "27930", + "coordonnees_gps": [ + 49.0763402724, + 1.18739745292 + ], + "libelle_d_acheminement": "LE BOULAY MORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18739745292, + 49.0763402724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7133a826f36e886fe1ad9b77d5eb9b92f199218", + "fields": { + "code_commune_insee": "34272", + "nom_de_la_commune": "ST JUST", + "code_postal": "34400", + "coordonnees_gps": [ + 43.6561845666, + 4.1118455055 + ], + "libelle_d_acheminement": "ST JUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1118455055, + 43.6561845666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e36828bf5682ed345d4a1d19e94d4a284016a98", + "fields": { + "code_commune_insee": "27102", + "nom_de_la_commune": "BOUQUETOT", + "code_postal": "27310", + "coordonnees_gps": [ + 49.3610544538, + 0.770400982625 + ], + "libelle_d_acheminement": "BOUQUETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.770400982625, + 49.3610544538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25c084e46922dcd25fcf47f0bb67668072743046", + "fields": { + "code_commune_insee": "34273", + "nom_de_la_commune": "ST MARTIN DE L ARCON", + "code_postal": "34390", + "coordonnees_gps": [ + 43.5800016675, + 2.98506078379 + ], + "libelle_d_acheminement": "ST MARTIN DE L ARCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98506078379, + 43.5800016675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52df8efd4d42b09a6a30aee6b4dfd761444b73c3", + "fields": { + "code_commune_insee": "27103", + "nom_de_la_commune": "BOURG ACHARD", + "code_postal": "27310", + "coordonnees_gps": [ + 49.3450741127, + 0.80915990601 + ], + "libelle_d_acheminement": "BOURG ACHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80915990601, + 49.3450741127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a300f2d00665b8992ec8f674f776e522bb44e32c", + "fields": { + "code_commune_insee": "34285", + "nom_de_la_commune": "ST PONS DE MAUCHIENS", + "code_postal": "34230", + "coordonnees_gps": [ + 43.5093525294, + 3.51237930309 + ], + "libelle_d_acheminement": "ST PONS DE MAUCHIENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51237930309, + 43.5093525294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea5952c8a51a7861caac235576f6ffae9da3a8c1", + "fields": { + "ligne_5": "BOURNAINVILLE", + "code_commune_insee": "27106", + "libelle_d_acheminement": "BOURNAINVILLE FAVEROLLES", + "code_postal": "27230", + "nom_de_la_commune": "BOURNAINVILLE FAVEROLLES", + "coordonnees_gps": [ + 49.122899642, + 0.50099426931 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50099426931, + 49.122899642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ad3aa5a244f5f227eeee2ea858dde07bb993287", + "fields": { + "code_commune_insee": "34288", + "nom_de_la_commune": "ST SERIES", + "code_postal": "34400", + "coordonnees_gps": [ + 43.7355275594, + 4.1049570212 + ], + "libelle_d_acheminement": "ST SERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1049570212, + 43.7355275594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "196376ae75a18eb2a97adb6b870c9b4daea4905c", + "fields": { + "code_commune_insee": "27108", + "nom_de_la_commune": "BOURTH", + "code_postal": "27580", + "coordonnees_gps": [ + 48.7632114791, + 0.806179122315 + ], + "libelle_d_acheminement": "BOURTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.806179122315, + 48.7632114791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22db8e8a94a0d6f4f02511a924d9d9d2f9004c1b", + "fields": { + "code_commune_insee": "34302", + "nom_de_la_commune": "SIRAN", + "code_postal": "34210", + "coordonnees_gps": [ + 43.3302941258, + 2.66325916558 + ], + "libelle_d_acheminement": "SIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66325916558, + 43.3302941258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ab400fa806e1f825ecb6fc9781fbf774483e5a1", + "fields": { + "code_commune_insee": "27115", + "nom_de_la_commune": "BREUX SUR AVRE", + "code_postal": "27570", + "coordonnees_gps": [ + 48.767360989, + 1.07169620391 + ], + "libelle_d_acheminement": "BREUX SUR AVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07169620391, + 48.767360989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "777428904287f1d4a27a493945a133b60bb7832f", + "fields": { + "code_commune_insee": "34304", + "nom_de_la_commune": "SOUBES", + "code_postal": "34700", + "coordonnees_gps": [ + 43.7796056987, + 3.35201368511 + ], + "libelle_d_acheminement": "SOUBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35201368511, + 43.7796056987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbc5e8c411b8b1d26c0ee4898cf08205bdbc2375", + "fields": { + "code_commune_insee": "27116", + "nom_de_la_commune": "BRIONNE", + "code_postal": "27800", + "coordonnees_gps": [ + 49.187842587, + 0.712154019961 + ], + "libelle_d_acheminement": "BRIONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.712154019961, + 49.187842587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6409a44c1a64f3529f2be8149febcda65a21a653", + "fields": { + "code_commune_insee": "34309", + "nom_de_la_commune": "TEYRAN", + "code_postal": "34820", + "coordonnees_gps": [ + 43.6849602174, + 3.92844546049 + ], + "libelle_d_acheminement": "TEYRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92844546049, + 43.6849602174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b62076a018132269252d7410072c21bf65a309ac", + "fields": { + "code_commune_insee": "27123", + "nom_de_la_commune": "CAILLOUET ORGEVILLE", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0034124144, + 1.31639623095 + ], + "libelle_d_acheminement": "CAILLOUET ORGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31639623095, + 49.0034124144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eadfe96f5e37641498a9328df3f81528e45bfe0", + "fields": { + "code_commune_insee": "34319", + "nom_de_la_commune": "VAILHAN", + "code_postal": "34320", + "coordonnees_gps": [ + 43.5542014743, + 3.29989404644 + ], + "libelle_d_acheminement": "VAILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29989404644, + 43.5542014743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1522dd7c3429cc64dc0ffcf34febdf0e3f69209b", + "fields": { + "code_commune_insee": "27132", + "nom_de_la_commune": "CAUGE", + "code_postal": "27180", + "coordonnees_gps": [ + 49.0249871767, + 1.04289589513 + ], + "libelle_d_acheminement": "CAUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04289589513, + 49.0249871767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daaed966685d97858be3bae18dc6ba75f960a5e6", + "fields": { + "code_commune_insee": "34323", + "nom_de_la_commune": "VALMASCLE", + "code_postal": "34800", + "coordonnees_gps": [ + 43.6001846206, + 3.2999967216 + ], + "libelle_d_acheminement": "VALMASCLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2999967216, + 43.6001846206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c1082ab6d6e11402f9fbe0d45ce72f173dba72a", + "fields": { + "code_commune_insee": "27138", + "nom_de_la_commune": "CHAMBLAC", + "code_postal": "27270", + "coordonnees_gps": [ + 48.9922969415, + 0.562558424938 + ], + "libelle_d_acheminement": "CHAMBLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.562558424938, + 48.9922969415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9da529f845ed3a9fd2f4562c6795424db184eed", + "fields": { + "code_commune_insee": "34336", + "nom_de_la_commune": "VILLENEUVE LES BEZIERS", + "code_postal": "34500", + "coordonnees_gps": [ + 43.3172489997, + 3.28958494349 + ], + "libelle_d_acheminement": "VILLENEUVE LES BEZIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28958494349, + 43.3172489997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9f02c1431ae1e20f6f526a5a92365ee46a523d7", + "fields": { + "ligne_5": "BOSC MOREL", + "code_commune_insee": "27138", + "libelle_d_acheminement": "CHAMBLAC", + "code_postal": "27270", + "nom_de_la_commune": "CHAMBLAC", + "coordonnees_gps": [ + 48.9922969415, + 0.562558424938 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.562558424938, + 48.9922969415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7f6e59b2c86efc6c9f2a53b488b9da9e039c94c", + "fields": { + "code_commune_insee": "34339", + "nom_de_la_commune": "VILLESPASSANS", + "code_postal": "34360", + "coordonnees_gps": [ + 43.3817686884, + 2.91141941594 + ], + "libelle_d_acheminement": "VILLESPASSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91141941594, + 43.3817686884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c1c4cb7f8f10bc6024ef9957b5564b0171ce390", + "fields": { + "code_commune_insee": "27156", + "nom_de_la_commune": "CHERONVILLIERS", + "code_postal": "27250", + "coordonnees_gps": [ + 48.7921490102, + 0.760679577502 + ], + "libelle_d_acheminement": "CHERONVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.760679577502, + 48.7921490102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea7cf12dc5c73985563d575089434195f7efd653", + "fields": { + "code_commune_insee": "35010", + "nom_de_la_commune": "BAGUER PICAN", + "code_postal": "35120", + "coordonnees_gps": [ + 48.5500094703, + -1.69120416285 + ], + "libelle_d_acheminement": "BAGUER PICAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69120416285, + 48.5500094703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1b6e74535cb1a8b948b6bd8294d69effb98e821", + "fields": { + "ligne_5": "LE CHESNE", + "code_commune_insee": "27157", + "libelle_d_acheminement": "MARBOIS", + "code_postal": "27160", + "nom_de_la_commune": "MARBOIS", + "coordonnees_gps": [ + 48.8910449707, + 0.93590219795 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93590219795, + 48.8910449707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f5c890e6e36154561c424441f7d570a0131fa57", + "fields": { + "code_commune_insee": "35014", + "nom_de_la_commune": "BAIS", + "code_postal": "35680", + "coordonnees_gps": [ + 48.0108227925, + -1.30560487998 + ], + "libelle_d_acheminement": "BAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30560487998, + 48.0108227925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad0a3491547cde42e2f461ba05594a24b8858475", + "fields": { + "code_commune_insee": "27184", + "nom_de_la_commune": "CRASVILLE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.205196716, + 1.07197851563 + ], + "libelle_d_acheminement": "CRASVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07197851563, + 49.205196716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5934f2fc35fcedc82bad4268eb82342ce8986470", + "fields": { + "code_commune_insee": "35025", + "nom_de_la_commune": "BILLE", + "code_postal": "35133", + "coordonnees_gps": [ + 48.2936717926, + -1.25154460555 + ], + "libelle_d_acheminement": "BILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25154460555, + 48.2936717926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bbd93a8d02d35450ae33fb2ce4c3ecd63d22203", + "fields": { + "ligne_5": "ECARDENVILLE SUR EURE", + "code_commune_insee": "27191", + "libelle_d_acheminement": "CLEF VALLEE D EURE", + "code_postal": "27490", + "nom_de_la_commune": "CLEF VALLEE D EURE", + "coordonnees_gps": [ + 49.1183025014, + 1.24841485646 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24841485646, + 49.1183025014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7044186ebcecad3a0df7dcf006cc12feb819e68b", + "fields": { + "code_commune_insee": "35029", + "nom_de_la_commune": "BONNEMAIN", + "code_postal": "35270", + "coordonnees_gps": [ + 48.4711533763, + -1.7614236564 + ], + "libelle_d_acheminement": "BONNEMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.7614236564, + 48.4711533763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "832513ba9c54d0bb1523da0b48580ff10b4c2be1", + "fields": { + "ligne_5": "FONTAINE HEUDEBOURG", + "code_commune_insee": "27191", + "libelle_d_acheminement": "CLEF VALLEE D EURE", + "code_postal": "27490", + "nom_de_la_commune": "CLEF VALLEE D EURE", + "coordonnees_gps": [ + 49.1183025014, + 1.24841485646 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24841485646, + 49.1183025014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8c92531d88531308c91ef47d905b29bb665d475", + "fields": { + "code_commune_insee": "35032", + "nom_de_la_commune": "BOURGBARRE", + "code_postal": "35230", + "coordonnees_gps": [ + 47.988587599, + -1.62222742311 + ], + "libelle_d_acheminement": "BOURGBARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62222742311, + 47.988587599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87f972ca058a2289fbdc7921a38de95dbb26b4c0", + "fields": { + "ligne_5": "LA CROIX ST LEUFROY", + "code_commune_insee": "27191", + "libelle_d_acheminement": "CLEF VALLEE D EURE", + "code_postal": "27490", + "nom_de_la_commune": "CLEF VALLEE D EURE", + "coordonnees_gps": [ + 49.1183025014, + 1.24841485646 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24841485646, + 49.1183025014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7868334bb297ae29207b372d65e166893dc81b0", + "fields": { + "code_commune_insee": "35034", + "nom_de_la_commune": "LA BOUSSAC", + "code_postal": "35120", + "coordonnees_gps": [ + 48.5167692001, + -1.64943236951 + ], + "libelle_d_acheminement": "LA BOUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64943236951, + 48.5167692001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d8e9538e22943c4c1f347eca4d4f84ea12ffaf3", + "fields": { + "code_commune_insee": "27194", + "nom_de_la_commune": "CUVERVILLE", + "code_postal": "27700", + "coordonnees_gps": [ + 49.2823822773, + 1.37038262519 + ], + "libelle_d_acheminement": "CUVERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37038262519, + 49.2823822773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11212ea4c2a1fb0b23559878d26be74d2528a499", + "fields": { + "code_commune_insee": "35037", + "nom_de_la_commune": "BREAL SOUS MONTFORT", + "code_postal": "35310", + "coordonnees_gps": [ + 48.044637167, + -1.86571618785 + ], + "libelle_d_acheminement": "BREAL SOUS MONTFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86571618785, + 48.044637167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "969e4996b34069feded6ddc5b72dc3c6fadac644", + "fields": { + "ligne_5": "DAMVILLE", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27240", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab84a66bc5da68dafef292c0943963ca257562b0", + "fields": { + "code_commune_insee": "35039", + "nom_de_la_commune": "BRECE", + "code_postal": "35530", + "coordonnees_gps": [ + 48.1107701278, + -1.48991638652 + ], + "libelle_d_acheminement": "BRECE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48991638652, + 48.1107701278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e185b02576a21addeecdf95379c2a3a2479a867e", + "fields": { + "ligne_5": "LE RONCENAY", + "code_commune_insee": "27198", + "libelle_d_acheminement": "MESNILS SUR ITON", + "code_postal": "27240", + "nom_de_la_commune": "MESNILS SUR ITON", + "coordonnees_gps": [ + 48.8643668138, + 1.08042048322 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08042048322, + 48.8643668138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc67194159d14c683dbafb0617777c2d3dd0714c", + "fields": { + "code_commune_insee": "35044", + "nom_de_la_commune": "BROUALAN", + "code_postal": "35120", + "coordonnees_gps": [ + 48.4755754459, + -1.66143618132 + ], + "libelle_d_acheminement": "BROUALAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66143618132, + 48.4755754459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cc39c577b1e528f32986e5ec15b48c8c43ba9ff", + "fields": { + "code_commune_insee": "27208", + "nom_de_la_commune": "DURANVILLE", + "code_postal": "27230", + "coordonnees_gps": [ + 49.1429973941, + 0.499704273238 + ], + "libelle_d_acheminement": "DURANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.499704273238, + 49.1429973941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b833d1dc4107d91c3a5dce0179ec42106177debb", + "fields": { + "code_commune_insee": "35046", + "nom_de_la_commune": "LES BRULAIS", + "code_postal": "35330", + "coordonnees_gps": [ + 47.8907025068, + -2.05725373415 + ], + "libelle_d_acheminement": "LES BRULAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05725373415, + 47.8907025068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "200cac48b6111d81015afaabc6e39200b7e63cd2", + "fields": { + "code_commune_insee": "27212", + "nom_de_la_commune": "ECAUVILLE", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1260165853, + 0.991502116806 + ], + "libelle_d_acheminement": "ECAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.991502116806, + 49.1260165853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62b10fbe9cd58b0834f396d4c2a08d433fe13f8b", + "fields": { + "code_commune_insee": "35052", + "nom_de_la_commune": "CHAMPEAUX", + "code_postal": "35500", + "coordonnees_gps": [ + 48.1387131553, + -1.30145243997 + ], + "libelle_d_acheminement": "CHAMPEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30145243997, + 48.1387131553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d4a82077893347bf0bea491fc1f1a47a0218515", + "fields": { + "ligne_5": "FORET LA FOLIE", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27510", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "476ab08e1346bc03bb1fdc1fc73a1c65124ec69c", + "fields": { + "code_commune_insee": "35063", + "nom_de_la_commune": "LA CHAPELLE ST AUBERT", + "code_postal": "35140", + "coordonnees_gps": [ + 48.3100106351, + -1.3143625945 + ], + "libelle_d_acheminement": "LA CHAPELLE ST AUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3143625945, + 48.3100106351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41216147aaf20c7e77edee704974954062bb04b4", + "fields": { + "ligne_5": "FOURGES", + "code_commune_insee": "27213", + "libelle_d_acheminement": "VEXIN SUR EPTE", + "code_postal": "27630", + "nom_de_la_commune": "VEXIN SUR EPTE", + "coordonnees_gps": [ + 49.1515466021, + 1.59773112902 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59773112902, + 49.1515466021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9fedfde0b334bb2ec1fbfeeca8a37422b19cb3b", + "fields": { + "ligne_5": "BRAIN SUR VILAINE", + "code_commune_insee": "35064", + "libelle_d_acheminement": "LA CHAPELLE DE BRAIN", + "code_postal": "35660", + "nom_de_la_commune": "LA CHAPELLE DE BRAIN", + "coordonnees_gps": [ + 47.6972959919, + -1.93416464602 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93416464602, + 47.6972959919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f330c5e3a850b285d6be220ff4ae2f2b2714e020", + "fields": { + "code_commune_insee": "27226", + "nom_de_la_commune": "ETREPAGNY", + "code_postal": "27150", + "coordonnees_gps": [ + 49.3119944705, + 1.61614236385 + ], + "libelle_d_acheminement": "ETREPAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61614236385, + 49.3119944705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70ba9c4932d5e2f8a6f25ba133aa09d38111f83f", + "fields": { + "code_commune_insee": "35069", + "nom_de_la_commune": "CHATEAUGIRON", + "code_postal": "35410", + "coordonnees_gps": [ + 48.0441575779, + -1.50016256863 + ], + "libelle_d_acheminement": "CHATEAUGIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50016256863, + 48.0441575779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33945cb298f3a19d89a4d4d919fdb5941178b804", + "fields": { + "code_commune_insee": "27241", + "nom_de_la_commune": "FEUGUEROLLES", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1317754002, + 1.03389011854 + ], + "libelle_d_acheminement": "FEUGUEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03389011854, + 49.1317754002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8b761d065ee105bc6394fa384ca1b8d94a54b66", + "fields": { + "code_commune_insee": "35075", + "nom_de_la_commune": "CHAUVIGNE", + "code_postal": "35490", + "coordonnees_gps": [ + 48.3766708439, + -1.45244219408 + ], + "libelle_d_acheminement": "CHAUVIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45244219408, + 48.3766708439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "737f3a9970f813b9c57b90ce12083d9fe06c8e09", + "fields": { + "code_commune_insee": "27245", + "nom_de_la_commune": "FLEURY LA FORET", + "code_postal": "27480", + "coordonnees_gps": [ + 49.4265842006, + 1.55588075817 + ], + "libelle_d_acheminement": "FLEURY LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55588075817, + 49.4265842006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba694e3bb7673c9a2988cde7fa21c3577a1611af", + "fields": { + "code_commune_insee": "35078", + "nom_de_la_commune": "CHERRUEIX", + "code_postal": "35120", + "coordonnees_gps": [ + 48.5953506837, + -1.7146028897 + ], + "libelle_d_acheminement": "CHERRUEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.7146028897, + 48.5953506837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92d0dd131883bfd5f6a67c5f5fda862a2ca9dfd3", + "fields": { + "code_commune_insee": "27247", + "nom_de_la_commune": "FLIPOU", + "code_postal": "27380", + "coordonnees_gps": [ + 49.3128587162, + 1.28416486322 + ], + "libelle_d_acheminement": "FLIPOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28416486322, + 49.3128587162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f5d938a91afed7fc9923d964aecaff1b1504465", + "fields": { + "code_commune_insee": "35079", + "nom_de_la_commune": "CHEVAIGNE", + "code_postal": "35250", + "coordonnees_gps": [ + 48.2251828699, + -1.63670416498 + ], + "libelle_d_acheminement": "CHEVAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63670416498, + 48.2251828699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0327840f533d24ca331d537cdad7b6a96c7dd8f5", + "fields": { + "code_commune_insee": "27269", + "nom_de_la_commune": "FRESNE CAUVERVILLE", + "code_postal": "27260", + "coordonnees_gps": [ + 49.2012892333, + 0.468795413271 + ], + "libelle_d_acheminement": "FRESNE CAUVERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.468795413271, + 49.2012892333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b68f40d44fea0d4722960ca9a67af2c730a1fdd8", + "fields": { + "code_commune_insee": "35092", + "nom_de_la_commune": "CUGUEN", + "code_postal": "35270", + "coordonnees_gps": [ + 48.4408107773, + -1.65625423904 + ], + "libelle_d_acheminement": "CUGUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65625423904, + 48.4408107773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7582e09632a6dca14f741f265d7511f07ce6c15", + "fields": { + "code_commune_insee": "27286", + "nom_de_la_commune": "GIVERVILLE", + "code_postal": "27560", + "coordonnees_gps": [ + 49.1913962513, + 0.56791752866 + ], + "libelle_d_acheminement": "GIVERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.56791752866, + 49.1913962513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49897ff86b0797bceaf270952f15b252b3d261a6", + "fields": { + "code_commune_insee": "35103", + "nom_de_la_commune": "EANCE", + "code_postal": "35640", + "coordonnees_gps": [ + 47.8237855193, + -1.25227628941 + ], + "libelle_d_acheminement": "EANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25227628941, + 47.8237855193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94790dbd7b1ff99d92be2cf3423213579fd5708c", + "fields": { + "code_commune_insee": "27287", + "nom_de_la_commune": "GLISOLLES", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9870513401, + 1.00330761999 + ], + "libelle_d_acheminement": "GLISOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00330761999, + 48.9870513401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fdac730c39759906775ee32f680e813ca47635e", + "fields": { + "code_commune_insee": "35118", + "nom_de_la_commune": "GAHARD", + "code_postal": "35490", + "coordonnees_gps": [ + 48.2882041864, + -1.52746285795 + ], + "libelle_d_acheminement": "GAHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52746285795, + 48.2882041864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e988deeb6374c539fb05ed41c19de3b007de5c68", + "fields": { + "code_commune_insee": "27291", + "nom_de_la_commune": "GOURNAY LE GUERIN", + "code_postal": "27580", + "coordonnees_gps": [ + 48.7162632527, + 0.76932677625 + ], + "libelle_d_acheminement": "GOURNAY LE GUERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.76932677625, + 48.7162632527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f8cb4645a3245c902e0ec7f4a99617c12b80bc1", + "fields": { + "code_commune_insee": "35119", + "nom_de_la_commune": "GENNES SUR SEICHE", + "code_postal": "35370", + "coordonnees_gps": [ + 47.9983537714, + -1.13315830309 + ], + "libelle_d_acheminement": "GENNES SUR SEICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13315830309, + 47.9983537714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8641cdd25aa598db1d6c3aa92b7994345f814fb", + "fields": { + "code_commune_insee": "27300", + "nom_de_la_commune": "GROSLEY SUR RISLE", + "code_postal": "27170", + "coordonnees_gps": [ + 49.0447187021, + 0.80546586873 + ], + "libelle_d_acheminement": "GROSLEY SUR RISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80546586873, + 49.0447187021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d54437eec016a3aa7d95123abe165cdb566b582", + "fields": { + "code_commune_insee": "35125", + "nom_de_la_commune": "LA GUERCHE DE BRETAGNE", + "code_postal": "35130", + "coordonnees_gps": [ + 47.9442619164, + -1.24421600669 + ], + "libelle_d_acheminement": "LA GUERCHE DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24421600669, + 47.9442619164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02fe96e51a973394d071d4482ddf2296eb5e8f23", + "fields": { + "code_commune_insee": "27301", + "nom_de_la_commune": "GROSSOEUVRE", + "code_postal": "27220", + "coordonnees_gps": [ + 48.9401893709, + 1.18649118902 + ], + "libelle_d_acheminement": "GROSSOEUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18649118902, + 48.9401893709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b25ca30d097388cbfc9b9c12bf72e0454a9a43aa", + "fields": { + "code_commune_insee": "35130", + "nom_de_la_commune": "HEDE BAZOUGES", + "code_postal": "35630", + "coordonnees_gps": [ + 48.3018808207, + -1.77748405021 + ], + "libelle_d_acheminement": "HEDE BAZOUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77748405021, + 48.3018808207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5665d12e8653a93bcc87b7d75c37f087bbdd224c", + "fields": { + "ligne_5": "LE GROS THEIL", + "code_commune_insee": "27302", + "libelle_d_acheminement": "LE BOSC DU THEIL", + "code_postal": "27370", + "nom_de_la_commune": "LE BOSC DU THEIL", + "coordonnees_gps": [ + 49.2281464419, + 0.840519309317 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.840519309317, + 49.2281464419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d3856d8df6e3f30d68de7cc4c9be9d6fcea76a4", + "fields": { + "code_commune_insee": "35133", + "nom_de_la_commune": "IFFENDIC", + "code_postal": "35750", + "coordonnees_gps": [ + 48.1137342706, + -2.02411746064 + ], + "libelle_d_acheminement": "IFFENDIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02411746064, + 48.1137342706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b84d53346d0d15da9eed2f187ae407eae9590ff9", + "fields": { + "code_commune_insee": "27304", + "nom_de_la_commune": "GUERNY", + "code_postal": "27720", + "coordonnees_gps": [ + 49.2248519011, + 1.67988249527 + ], + "libelle_d_acheminement": "GUERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67988249527, + 49.2248519011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "134f56000da80585cfbc17fc866c6ad235a62fe7", + "fields": { + "code_commune_insee": "35135", + "nom_de_la_commune": "IRODOUER", + "code_postal": "35850", + "coordonnees_gps": [ + 48.246152189, + -1.95021443067 + ], + "libelle_d_acheminement": "IRODOUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95021443067, + 48.246152189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08d542364a3aa97e9ec87e4a51238829d625009b", + "fields": { + "code_commune_insee": "27313", + "nom_de_la_commune": "LA HARENGERE", + "code_postal": "27370", + "coordonnees_gps": [ + 49.231363184, + 1.00114554009 + ], + "libelle_d_acheminement": "LA HARENGERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00114554009, + 49.231363184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15267e27d078379e30020f7022836ffa3349998d", + "fields": { + "code_commune_insee": "35137", + "nom_de_la_commune": "JAVENE", + "code_postal": "35133", + "coordonnees_gps": [ + 48.3167949383, + -1.2059813978 + ], + "libelle_d_acheminement": "JAVENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2059813978, + 48.3167949383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4beab5e109ebadfdcb21a5c2c141cce8da5c45e9", + "fields": { + "code_commune_insee": "27326", + "nom_de_la_commune": "HECOURT", + "code_postal": "27120", + "coordonnees_gps": [ + 48.9884228127, + 1.42873530731 + ], + "libelle_d_acheminement": "HECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42873530731, + 48.9884228127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c69c54bfc9e3315735ff98507fbca622f1b30d7a", + "fields": { + "code_commune_insee": "35145", + "nom_de_la_commune": "LANGON", + "code_postal": "35660", + "coordonnees_gps": [ + 47.733471612, + -1.87194975237 + ], + "libelle_d_acheminement": "LANGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87194975237, + 47.733471612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "022c4d348516a637ee65ec744c24ff2de4499828", + "fields": { + "code_commune_insee": "27333", + "nom_de_la_commune": "HEUDICOURT", + "code_postal": "27860", + "coordonnees_gps": [ + 49.3343880911, + 1.66267351729 + ], + "libelle_d_acheminement": "HEUDICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66267351729, + 49.3343880911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17f7103469e8c1b0ad03983bae98087bcd44bd2b", + "fields": { + "code_commune_insee": "35177", + "nom_de_la_commune": "LA MEZIERE", + "code_postal": "35520", + "coordonnees_gps": [ + 48.2130666672, + -1.75057215298 + ], + "libelle_d_acheminement": "LA MEZIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75057215298, + 48.2130666672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22ad16e4c0db8116fda15f2bbe7aa1343744de60", + "fields": { + "code_commune_insee": "27340", + "nom_de_la_commune": "HONGUEMARE GUENOUVILLE", + "code_postal": "27310", + "coordonnees_gps": [ + 49.3781547887, + 0.815883000955 + ], + "libelle_d_acheminement": "HONGUEMARE GUENOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.815883000955, + 49.3781547887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d19a6d9c1e8bb028ae76b45c2f9d3a1ec8673b8b", + "fields": { + "code_commune_insee": "35187", + "nom_de_la_commune": "MONTERFIL", + "code_postal": "35160", + "coordonnees_gps": [ + 48.059933472, + -1.99008537755 + ], + "libelle_d_acheminement": "MONTERFIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99008537755, + 48.059933472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8300d88c8adaae52078a648a08d59c28b18ce0cd", + "fields": { + "code_commune_insee": "27351", + "nom_de_la_commune": "INCARVILLE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.2521511771, + 1.15231947532 + ], + "libelle_d_acheminement": "INCARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15231947532, + 49.2521511771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3026040e473e6a14febf4a917b62ad4dbf81324", + "fields": { + "ligne_5": "MONTOURS", + "code_commune_insee": "35191", + "libelle_d_acheminement": "LES PORTES DU COGLAIS", + "code_postal": "35460", + "nom_de_la_commune": "LES PORTES DU COGLAIS", + "coordonnees_gps": [ + 48.4485377499, + -1.30298513536 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30298513536, + 48.4485377499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "473f2b97562dc82795a6878546ae4236efc03095", + "fields": { + "code_commune_insee": "27355", + "nom_de_la_commune": "IVRY LA BATAILLE", + "code_postal": "27540", + "coordonnees_gps": [ + 48.886265363, + 1.44688887159 + ], + "libelle_d_acheminement": "IVRY LA BATAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44688887159, + 48.886265363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d0a64176f0659f50a601fad5456af325fe57ee5", + "fields": { + "code_commune_insee": "35194", + "nom_de_la_commune": "MONTREUIL SOUS PEROUSE", + "code_postal": "35500", + "coordonnees_gps": [ + 48.1510951344, + -1.24238323574 + ], + "libelle_d_acheminement": "MONTREUIL SOUS PEROUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24238323574, + 48.1510951344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76cbf1ce3df4eccb78410cda82346f48010bc7a6", + "fields": { + "code_commune_insee": "27358", + "nom_de_la_commune": "JOUY SUR EURE", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0495174919, + 1.29182535231 + ], + "libelle_d_acheminement": "JOUY SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29182535231, + 49.0495174919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b399da5e4f21b4c9655e2126fef0a6a179725f23", + "fields": { + "code_commune_insee": "35195", + "nom_de_la_commune": "MONTREUIL SUR ILLE", + "code_postal": "35440", + "coordonnees_gps": [ + 48.3053148028, + -1.6686934187 + ], + "libelle_d_acheminement": "MONTREUIL SUR ILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6686934187, + 48.3053148028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5390c45bfcdfac0b216c814b021b9ad9b7ab5356", + "fields": { + "code_commune_insee": "27368", + "nom_de_la_commune": "LIGNEROLLES", + "code_postal": "27220", + "coordonnees_gps": [ + 48.8447224599, + 1.27333667286 + ], + "libelle_d_acheminement": "LIGNEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27333667286, + 48.8447224599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1f3a3795832d913b2668b7696aed35c3c79266c", + "fields": { + "code_commune_insee": "35210", + "nom_de_la_commune": "PACE", + "code_postal": "35740", + "coordonnees_gps": [ + 48.152548244, + -1.77716643787 + ], + "libelle_d_acheminement": "PACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77716643787, + 48.152548244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c684bf9d1f5d6cd271313e6ec1c13561c0dd6590", + "fields": { + "code_commune_insee": "27372", + "nom_de_la_commune": "LONGCHAMPS", + "code_postal": "27150", + "coordonnees_gps": [ + 49.3579667199, + 1.62115051175 + ], + "libelle_d_acheminement": "LONGCHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62115051175, + 49.3579667199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0807762e327b3352591779ef87c7e2c48dba79e9", + "fields": { + "code_commune_insee": "35216", + "nom_de_la_commune": "PARTHENAY DE BRETAGNE", + "code_postal": "35850", + "coordonnees_gps": [ + 48.1884515911, + -1.829797127 + ], + "libelle_d_acheminement": "PARTHENAY DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.829797127, + 48.1884515911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2b5277e0dbce1f463c6d7b5eb19bffcc574f481", + "fields": { + "code_commune_insee": "27374", + "nom_de_la_commune": "LOUVERSEY", + "code_postal": "27190", + "coordonnees_gps": [ + 48.9910763969, + 0.916140545325 + ], + "libelle_d_acheminement": "LOUVERSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.916140545325, + 48.9910763969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6c66189bd7b33224dff4efe133af225b5b75af4", + "fields": { + "code_commune_insee": "35219", + "nom_de_la_commune": "PIPRIAC", + "code_postal": "35550", + "coordonnees_gps": [ + 47.8116756729, + -1.93781141913 + ], + "libelle_d_acheminement": "PIPRIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93781141913, + 47.8116756729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a811eef88a6d8d18ab1b6920548b5be0176a012f", + "fields": { + "code_commune_insee": "27377", + "nom_de_la_commune": "LYONS LA FORET", + "code_postal": "27480", + "coordonnees_gps": [ + 49.3936970778, + 1.47355856778 + ], + "libelle_d_acheminement": "LYONS LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47355856778, + 49.3936970778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f18ebb13fb3901f121069b2c05a01b8ecb96c0fb", + "fields": { + "code_commune_insee": "35221", + "nom_de_la_commune": "PLECHATEL", + "code_postal": "35470", + "coordonnees_gps": [ + 47.8751941838, + -1.73375846531 + ], + "libelle_d_acheminement": "PLECHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73375846531, + 47.8751941838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "205b05b111bbbd0277be46c851550ec82d284655", + "fields": { + "code_commune_insee": "27381", + "nom_de_la_commune": "MALOUY", + "code_postal": "27300", + "coordonnees_gps": [ + 49.1279630257, + 0.528705330405 + ], + "libelle_d_acheminement": "MALOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.528705330405, + 49.1279630257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9faa338a2ed7f294866ebf97f21b46ab594a8a8", + "fields": { + "code_commune_insee": "35230", + "nom_de_la_commune": "POILLEY", + "code_postal": "35420", + "coordonnees_gps": [ + 48.4663238804, + -1.25699060086 + ], + "libelle_d_acheminement": "POILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25699060086, + 48.4663238804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03f984e3a19d3eeb99c8c0034feac8fdff6e45f2", + "fields": { + "code_commune_insee": "27386", + "nom_de_la_commune": "LE MANOIR", + "code_postal": "27460", + "coordonnees_gps": [ + 49.317522421, + 1.19943581573 + ], + "libelle_d_acheminement": "LE MANOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19943581573, + 49.317522421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb99b77cbb5cf0a127ddadcedae225808c3933bb", + "fields": { + "code_commune_insee": "35237", + "nom_de_la_commune": "RENAC", + "code_postal": "35660", + "coordonnees_gps": [ + 47.7276163658, + -1.9661103542 + ], + "libelle_d_acheminement": "RENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.9661103542, + 47.7276163658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c0c50d6940e82534c9554d9d2b1ab9973bcf189", + "fields": { + "code_commune_insee": "27389", + "nom_de_la_commune": "MARBEUF", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1542331428, + 0.962852626564 + ], + "libelle_d_acheminement": "MARBEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.962852626564, + 49.1542331428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd761a7b233426b25b4787f69eaf8c991cf39f67", + "fields": { + "code_commune_insee": "35238", + "nom_de_la_commune": "RENNES", + "code_postal": "35700", + "coordonnees_gps": [ + 48.1119791219, + -1.68186449144 + ], + "libelle_d_acheminement": "RENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68186449144, + 48.1119791219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb7dce6ca7a767a417300d4d4a8d141e44ad1562", + "fields": { + "code_commune_insee": "27398", + "nom_de_la_commune": "MENNEVAL", + "code_postal": "27300", + "coordonnees_gps": [ + 49.1018758441, + 0.622134982944 + ], + "libelle_d_acheminement": "MENNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.622134982944, + 49.1018758441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57a3768ec2ba1a8a1058bedebc96944fb54d80db", + "fields": { + "code_commune_insee": "35243", + "nom_de_la_commune": "ROMAGNE", + "code_postal": "35133", + "coordonnees_gps": [ + 48.3445101485, + -1.26180834878 + ], + "libelle_d_acheminement": "ROMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26180834878, + 48.3445101485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c158c7fb30cefe71fb4ee18e9b0618feed996c24", + "fields": { + "code_commune_insee": "27407", + "nom_de_la_commune": "MESNIL VERCLIVES", + "code_postal": "27440", + "coordonnees_gps": [ + 49.3227519896, + 1.46543126827 + ], + "libelle_d_acheminement": "MESNIL VERCLIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46543126827, + 49.3227519896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2201c5cfd7487c0f202021cc1c7e7da7ee2c104d", + "fields": { + "code_commune_insee": "35245", + "nom_de_la_commune": "ROMILLE", + "code_postal": "35850", + "coordonnees_gps": [ + 48.2223488257, + -1.87904298142 + ], + "libelle_d_acheminement": "ROMILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87904298142, + 48.2223488257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68199cd160e034992650a0db803d945934fdb561", + "fields": { + "code_commune_insee": "27408", + "nom_de_la_commune": "MEZIERES EN VEXIN", + "code_postal": "27510", + "coordonnees_gps": [ + 49.1758883521, + 1.50318565777 + ], + "libelle_d_acheminement": "MEZIERES EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50318565777, + 49.1758883521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ab90113a99db5c3870b6e7c47c97c595f53f0f8", + "fields": { + "code_commune_insee": "35252", + "nom_de_la_commune": "ST AUBIN DES LANDES", + "code_postal": "35500", + "coordonnees_gps": [ + 48.1003176943, + -1.29173658407 + ], + "libelle_d_acheminement": "ST AUBIN DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29173658407, + 48.1003176943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "163d678dac8ca99e5632c22e4375c4c62c96fff0", + "fields": { + "code_commune_insee": "27418", + "nom_de_la_commune": "MORSAN", + "code_postal": "27800", + "coordonnees_gps": [ + 49.1796481748, + 0.597511424785 + ], + "libelle_d_acheminement": "MORSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.597511424785, + 49.1796481748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0ccf2724c27612b3dd8c7f1e585c98d975c47e1", + "fields": { + "code_commune_insee": "35253", + "nom_de_la_commune": "ST AUBIN DU CORMIER", + "code_postal": "35140", + "coordonnees_gps": [ + 48.2585499654, + -1.42136462406 + ], + "libelle_d_acheminement": "ST AUBIN DU CORMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42136462406, + 48.2585499654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "217192a1599e859df0be1003f8e6a3c5c7c3a20a", + "fields": { + "code_commune_insee": "27422", + "nom_de_la_commune": "MUIDS", + "code_postal": "27430", + "coordonnees_gps": [ + 49.2265789248, + 1.28569054904 + ], + "libelle_d_acheminement": "MUIDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28569054904, + 49.2265789248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b307d6e23a74c1f297149c2001fa76efc43cd272", + "fields": { + "code_commune_insee": "35258", + "nom_de_la_commune": "ST BRIEUC DES IFFS", + "code_postal": "35630", + "coordonnees_gps": [ + 48.3034329234, + -1.84362998531 + ], + "libelle_d_acheminement": "ST BRIEUC DES IFFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84362998531, + 48.3034329234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69cf47caca11847c323371e07e006d6c09ff98ee", + "fields": { + "ligne_5": "PERRIERS LA CAMPAGNE", + "code_commune_insee": "27425", + "libelle_d_acheminement": "NASSANDRES SUR RISLE", + "code_postal": "27170", + "nom_de_la_commune": "NASSANDRES SUR RISLE", + "coordonnees_gps": [ + 49.1339917413, + 0.739306485861 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.739306485861, + 49.1339917413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9da1ae651c444ded3c2ca6fe8ec99dce334b2a0a", + "fields": { + "code_commune_insee": "35259", + "nom_de_la_commune": "ST BROLADRE", + "code_postal": "35120", + "coordonnees_gps": [ + 48.5799892763, + -1.6606819388 + ], + "libelle_d_acheminement": "ST BROLADRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6606819388, + 48.5799892763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbf9b052f3be6e5305ac1368b618642d8d19367d", + "fields": { + "ligne_5": "CARSIX", + "code_commune_insee": "27425", + "libelle_d_acheminement": "NASSANDRES SUR RISLE", + "code_postal": "27300", + "nom_de_la_commune": "NASSANDRES SUR RISLE", + "coordonnees_gps": [ + 49.1339917413, + 0.739306485861 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.739306485861, + 49.1339917413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82d810aeb765939d79f5b2a8b2276cd04f211c41", + "fields": { + "code_commune_insee": "35260", + "nom_de_la_commune": "ST CHRISTOPHE DES BOIS", + "code_postal": "35210", + "coordonnees_gps": [ + 48.2263856432, + -1.23572120052 + ], + "libelle_d_acheminement": "ST CHRISTOPHE DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23572120052, + 48.2263856432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cae068b1be9be7852c09a9784adc84cf5daa6ab", + "fields": { + "ligne_5": "NASSANDRES", + "code_commune_insee": "27425", + "libelle_d_acheminement": "NASSANDRES SUR RISLE", + "code_postal": "27550", + "nom_de_la_commune": "NASSANDRES SUR RISLE", + "coordonnees_gps": [ + 49.1339917413, + 0.739306485861 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.739306485861, + 49.1339917413 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1de9db022034d597fdfaa4ad66600d77760f0330", + "fields": { + "code_commune_insee": "35264", + "nom_de_la_commune": "ST DIDIER", + "code_postal": "35220", + "coordonnees_gps": [ + 48.0932158644, + -1.35806845203 + ], + "libelle_d_acheminement": "ST DIDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35806845203, + 48.0932158644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44a699f1bff6b25ad57692f64d426da99cfda990", + "fields": { + "code_commune_insee": "27426", + "nom_de_la_commune": "NEAUFLES ST MARTIN", + "code_postal": "27830", + "coordonnees_gps": [ + 49.277330375, + 1.72635123012 + ], + "libelle_d_acheminement": "NEAUFLES ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72635123012, + 49.277330375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad114711602b8d24113eafa205483f2300a7f93e", + "fields": { + "code_commune_insee": "35268", + "nom_de_la_commune": "ST GANTON", + "code_postal": "35550", + "coordonnees_gps": [ + 47.769209131, + -1.89133276373 + ], + "libelle_d_acheminement": "ST GANTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89133276373, + 47.769209131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e7cc3545ffdd98aac252169576cba6be228f1f1", + "fields": { + "code_commune_insee": "27427", + "nom_de_la_commune": "NEAUFLES AUVERGNY", + "code_postal": "27250", + "coordonnees_gps": [ + 48.8743528336, + 0.74447514343 + ], + "libelle_d_acheminement": "NEAUFLES AUVERGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74447514343, + 48.8743528336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6092001093095fc29041a82d53234b86c230322d", + "fields": { + "code_commune_insee": "35271", + "nom_de_la_commune": "ST GEORGES DE REINTEMBAULT", + "code_postal": "35420", + "coordonnees_gps": [ + 48.5129956863, + -1.23490800183 + ], + "libelle_d_acheminement": "ST GEORGES DE REINTEMBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23490800183, + 48.5129956863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40d76f676605a5275932049254e4d806eeec42fc", + "fields": { + "ligne_5": "NEAUFLES SUR RISLE", + "code_commune_insee": "27427", + "libelle_d_acheminement": "NEAUFLES AUVERGNY", + "code_postal": "27250", + "nom_de_la_commune": "NEAUFLES AUVERGNY", + "coordonnees_gps": [ + 48.8743528336, + 0.74447514343 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.74447514343, + 48.8743528336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1370fee1d1755d12f5997aa0b9432d571506ba9", + "fields": { + "code_commune_insee": "35274", + "nom_de_la_commune": "ST GERMAIN SUR ILLE", + "code_postal": "35250", + "coordonnees_gps": [ + 48.2509838584, + -1.65264903322 + ], + "libelle_d_acheminement": "ST GERMAIN SUR ILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65264903322, + 48.2509838584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9e9238b5151188298bf3649c3a072dbe80eb6e8", + "fields": { + "code_commune_insee": "27432", + "nom_de_la_commune": "LA NEUVILLE DU BOSC", + "code_postal": "27890", + "coordonnees_gps": [ + 49.1943072566, + 0.815544482419 + ], + "libelle_d_acheminement": "LA NEUVILLE DU BOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.815544482419, + 49.1943072566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b52035030cb09713d1dbdac5f311c5534a2aa682", + "fields": { + "code_commune_insee": "35278", + "nom_de_la_commune": "ST GREGOIRE", + "code_postal": "35760", + "coordonnees_gps": [ + 48.1588840471, + -1.68571943452 + ], + "libelle_d_acheminement": "ST GREGOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68571943452, + 48.1588840471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a37fd44e52d12398b5783aa110ca4d2e9403a496", + "fields": { + "code_commune_insee": "27434", + "nom_de_la_commune": "NOARDS", + "code_postal": "27560", + "coordonnees_gps": [ + 49.2105065692, + 0.509712795627 + ], + "libelle_d_acheminement": "NOARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.509712795627, + 49.2105065692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54802b7c1471752fa09a5b1f9e9eacd334ef36cb", + "fields": { + "ligne_5": "VENDEL", + "code_commune_insee": "35282", + "libelle_d_acheminement": "RIVES DU COUESNON", + "code_postal": "35140", + "nom_de_la_commune": "RIVES DU COUESNON", + "coordonnees_gps": [ + 48.2768095716, + -1.36810224872 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36810224872, + 48.2768095716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4d799a165575ab2d11d12a7face39870cefef96", + "fields": { + "code_commune_insee": "27446", + "nom_de_la_commune": "ORMES", + "code_postal": "27190", + "coordonnees_gps": [ + 49.0563549136, + 0.956012588677 + ], + "libelle_d_acheminement": "ORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.956012588677, + 49.0563549136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f66551c507b353524a8d86d8187791802efcab3", + "fields": { + "code_commune_insee": "35284", + "nom_de_la_commune": "ST JOUAN DES GUERETS", + "code_postal": "35430", + "coordonnees_gps": [ + 48.6037491663, + -1.96530816919 + ], + "libelle_d_acheminement": "ST JOUAN DES GUERETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.96530816919, + 48.6037491663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d05f90083d6992f40c097efc31a4c7d2303b39fe", + "fields": { + "ligne_5": "LE MESNIL HARDRAY", + "code_commune_insee": "27447", + "libelle_d_acheminement": "LE VAL DORE", + "code_postal": "27190", + "nom_de_la_commune": "LE VAL DORE", + "coordonnees_gps": [ + 48.9412455696, + 1.02129449463 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02129449463, + 48.9412455696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af3f951b7e6c864c1bfec78ed665de34f2bb7dd8", + "fields": { + "code_commune_insee": "35287", + "nom_de_la_commune": "ST LUNAIRE", + "code_postal": "35800", + "coordonnees_gps": [ + 48.620460045, + -2.09655988835 + ], + "libelle_d_acheminement": "ST LUNAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09655988835, + 48.620460045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ff1e11c7c1be335448d5336317d1d4192fe681f", + "fields": { + "ligne_5": "ORVAUX", + "code_commune_insee": "27447", + "libelle_d_acheminement": "LE VAL DORE", + "code_postal": "27190", + "nom_de_la_commune": "LE VAL DORE", + "coordonnees_gps": [ + 48.9412455696, + 1.02129449463 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02129449463, + 48.9412455696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52898f2e0a4ee8ebd02c03ea3f5bb12cf35baa98", + "fields": { + "ligne_5": "CHATEAU MALO", + "code_commune_insee": "35288", + "libelle_d_acheminement": "ST MALO", + "code_postal": "35400", + "nom_de_la_commune": "ST MALO", + "coordonnees_gps": [ + 48.6400443482, + -1.98060627256 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98060627256, + 48.6400443482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d7520666e868427974bebe4944f75672cbebe70", + "fields": { + "code_commune_insee": "27459", + "nom_de_la_commune": "LES PLACES", + "code_postal": "27230", + "coordonnees_gps": [ + 49.1531446643, + 0.41691005358 + ], + "libelle_d_acheminement": "LES PLACES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41691005358, + 49.1531446643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56e7f5a2faaf2453928eae44787117e6053c0206", + "fields": { + "code_commune_insee": "35292", + "nom_de_la_commune": "ST MARC LE BLANC", + "code_postal": "35460", + "coordonnees_gps": [ + 48.3752704313, + -1.40505053569 + ], + "libelle_d_acheminement": "ST MARC LE BLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40505053569, + 48.3752704313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84f1ed093cc44948ecf3c5aad0f02c4b5f56513d", + "fields": { + "code_commune_insee": "27464", + "nom_de_la_commune": "LE PLESSIS GROHAN", + "code_postal": "27180", + "coordonnees_gps": [ + 48.9443249327, + 1.1332422549 + ], + "libelle_d_acheminement": "LE PLESSIS GROHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1332422549, + 48.9443249327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4d328479302ba5ed4b9214a9875bd5625f2854e", + "fields": { + "ligne_5": "TRESSE", + "code_commune_insee": "35308", + "libelle_d_acheminement": "MESNIL ROC H", + "code_postal": "35720", + "nom_de_la_commune": "MESNIL ROC H", + "coordonnees_gps": [ + 48.4550260435, + -1.88873891943 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.88873891943, + 48.4550260435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "898c2907f26bdd47056c3f1575845b99220b4c6e", + "fields": { + "ligne_5": "TOURNEDOS SUR SEINE", + "code_commune_insee": "27471", + "libelle_d_acheminement": "PORTE DE SEINE", + "code_postal": "27100", + "nom_de_la_commune": "PORTE DE SEINE", + "coordonnees_gps": [ + 49.2524086765, + 1.25122427132 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25122427132, + 49.2524086765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce74dfc11914b313a7d086b31b9a748b2c61610d", + "fields": { + "code_commune_insee": "35310", + "nom_de_la_commune": "ST SAUVEUR DES LANDES", + "code_postal": "35133", + "coordonnees_gps": [ + 48.3469024339, + -1.31411458673 + ], + "libelle_d_acheminement": "ST SAUVEUR DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31411458673, + 48.3469024339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8e0e89e837b79c74e0d5e10b4572177fa039558", + "fields": { + "code_commune_insee": "27478", + "nom_de_la_commune": "PREY", + "code_postal": "27220", + "coordonnees_gps": [ + 48.9578582818, + 1.21917165001 + ], + "libelle_d_acheminement": "PREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21917165001, + 48.9578582818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f241622c3da402c6a3319780339647fd4e34b25", + "fields": { + "code_commune_insee": "35312", + "nom_de_la_commune": "ST SENOUX", + "code_postal": "35580", + "coordonnees_gps": [ + 47.9097827425, + -1.7902930218 + ], + "libelle_d_acheminement": "ST SENOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.7902930218, + 47.9097827425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7ec2b795ac4c110b4183e2dce0d2dc51c42d87f", + "fields": { + "code_commune_insee": "27481", + "nom_de_la_commune": "PULLAY", + "code_postal": "27130", + "coordonnees_gps": [ + 48.727695545, + 0.864069956274 + ], + "libelle_d_acheminement": "PULLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.864069956274, + 48.727695545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19b3c18230e2fea92ae62f7b0d082691a6ed2c0b", + "fields": { + "code_commune_insee": "35314", + "nom_de_la_commune": "ST SULIAC", + "code_postal": "35430", + "coordonnees_gps": [ + 48.569900609, + -1.96692288512 + ], + "libelle_d_acheminement": "ST SULIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.96692288512, + 48.569900609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "923fb2631fd024a66034d4eef9319714d2532218", + "fields": { + "code_commune_insee": "27482", + "nom_de_la_commune": "LA PYLE", + "code_postal": "27370", + "coordonnees_gps": [ + 49.199866993, + 0.897158347508 + ], + "libelle_d_acheminement": "LA PYLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.897158347508, + 49.199866993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c208afbac9294d72dafd6766a4f97f659a1223f", + "fields": { + "code_commune_insee": "35318", + "nom_de_la_commune": "ST THUAL", + "code_postal": "35190", + "coordonnees_gps": [ + 48.3355023423, + -1.93174889174 + ], + "libelle_d_acheminement": "ST THUAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93174889174, + 48.3355023423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d09722b9f1bba6fcfd24e739221e8c79939d57f", + "fields": { + "code_commune_insee": "27493", + "nom_de_la_commune": "ROMILLY SUR ANDELLE", + "code_postal": "27610", + "coordonnees_gps": [ + 49.3343917409, + 1.25410011216 + ], + "libelle_d_acheminement": "ROMILLY SUR ANDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25410011216, + 49.3343917409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "536dbb2d979653595b34d050ac57d8813ad6bf43", + "fields": { + "code_commune_insee": "35322", + "nom_de_la_commune": "LE SEL DE BRETAGNE", + "code_postal": "35320", + "coordonnees_gps": [ + 47.8978195482, + -1.60609578245 + ], + "libelle_d_acheminement": "LE SEL DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60609578245, + 47.8978195482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53b83c5e948aecb0206d43e3c102887a8ee8672b", + "fields": { + "code_commune_insee": "27495", + "nom_de_la_commune": "LA ROQUETTE", + "code_postal": "27700", + "coordonnees_gps": [ + 49.2593238784, + 1.34339141954 + ], + "libelle_d_acheminement": "LA ROQUETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34339141954, + 49.2593238784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e78a1e9658a8c6886431c2feb0794c3f1cb3d3d", + "fields": { + "code_commune_insee": "35328", + "nom_de_la_commune": "SIXT SUR AFF", + "code_postal": "35550", + "coordonnees_gps": [ + 47.7748715245, + -2.04938893664 + ], + "libelle_d_acheminement": "SIXT SUR AFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.04938893664, + 47.7748715245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16f1dd8b502b82032cb62c18b9a00d78de9f5c8b", + "fields": { + "code_commune_insee": "27502", + "nom_de_la_commune": "RUGLES", + "code_postal": "27250", + "coordonnees_gps": [ + 48.8157669223, + 0.691368655422 + ], + "libelle_d_acheminement": "RUGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.691368655422, + 48.8157669223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "396ea622f1f1d9efbb827a2aa414e22f34845edf", + "fields": { + "code_commune_insee": "35330", + "nom_de_la_commune": "TAILLIS", + "code_postal": "35500", + "coordonnees_gps": [ + 48.1846341773, + -1.24010156402 + ], + "libelle_d_acheminement": "TAILLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24010156402, + 48.1846341773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e40f57a236cba4b257e308a6ce4f161f36ee0f42", + "fields": { + "code_commune_insee": "27504", + "nom_de_la_commune": "SACQUENVILLE", + "code_postal": "27930", + "coordonnees_gps": [ + 49.081232023, + 1.07443562823 + ], + "libelle_d_acheminement": "SACQUENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07443562823, + 49.081232023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32d3a74ea66bdc6d49674e4dd7d629f6d6b794a3", + "fields": { + "code_commune_insee": "35336", + "nom_de_la_commune": "LE TIERCENT", + "code_postal": "35460", + "coordonnees_gps": [ + 48.3496552529, + -1.42320230494 + ], + "libelle_d_acheminement": "LE TIERCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42320230494, + 48.3496552529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66983fcb07e2002568b1e461585432d6610f8013", + "fields": { + "code_commune_insee": "27508", + "nom_de_la_commune": "ST ANTONIN DE SOMMAIRE", + "code_postal": "27250", + "coordonnees_gps": [ + 48.8295332796, + 0.662693828241 + ], + "libelle_d_acheminement": "ST ANTONIN DE SOMMAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.662693828241, + 48.8295332796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61bdd8d94d6aff115bf3f4522772782fd694fcef", + "fields": { + "code_commune_insee": "35342", + "nom_de_la_commune": "TREMEHEUC", + "code_postal": "35270", + "coordonnees_gps": [ + 48.4389203583, + -1.69745222978 + ], + "libelle_d_acheminement": "TREMEHEUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69745222978, + 48.4389203583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd4aba0941ff9e9b43e16e518d8aae3cbe00a367", + "fields": { + "ligne_5": "ST CLAIR D ARCEY", + "code_commune_insee": "27516", + "libelle_d_acheminement": "TREIS SANTS EN OUCHE", + "code_postal": "27300", + "nom_de_la_commune": "TREIS SANTS EN OUCHE", + "coordonnees_gps": [ + 49.0593510154, + 0.611660740223 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.611660740223, + 49.0593510154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b46c725159abe2e6234eb65bced2b57c900fa03", + "fields": { + "code_commune_insee": "35343", + "nom_de_la_commune": "TRESBOEUF", + "code_postal": "35320", + "coordonnees_gps": [ + 47.8809229293, + -1.55314201505 + ], + "libelle_d_acheminement": "TRESBOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55314201505, + 47.8809229293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f081eb5e4c3ce51eec22b7f0a506c0c659224af9", + "fields": { + "code_commune_insee": "27524", + "nom_de_la_commune": "STE COLOMBE LA COMMANDERIE", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1073978726, + 0.935604057225 + ], + "libelle_d_acheminement": "STE COLOMBE LA COMMANDERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.935604057225, + 49.1073978726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66e15209d90a786379921654d21d4b71cb448ff6", + "fields": { + "code_commune_insee": "35346", + "nom_de_la_commune": "TRIMER", + "code_postal": "35190", + "coordonnees_gps": [ + 48.3440055823, + -1.89692594025 + ], + "libelle_d_acheminement": "TRIMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89692594025, + 48.3440055823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41138b70b9396ad80f8786dbd9a3a80beff677de", + "fields": { + "code_commune_insee": "27530", + "nom_de_la_commune": "ST DENIS D AUGERONS", + "code_postal": "27390", + "coordonnees_gps": [ + 48.9149003102, + 0.471485013305 + ], + "libelle_d_acheminement": "ST DENIS D AUGERONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.471485013305, + 48.9149003102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3e6d1ce7aaf69d88cd9129689b101ee4b41ccf6", + "fields": { + "code_commune_insee": "35350", + "nom_de_la_commune": "VERGEAL", + "code_postal": "35680", + "coordonnees_gps": [ + 48.0357832819, + -1.25557177588 + ], + "libelle_d_acheminement": "VERGEAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25557177588, + 48.0357832819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbfe2b899d1ec567a02b3e32860762ccd47d5c9c", + "fields": { + "code_commune_insee": "27534", + "nom_de_la_commune": "ST DIDIER DES BOIS", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2421475882, + 1.03799697166 + ], + "libelle_d_acheminement": "ST DIDIER DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03799697166, + 49.2421475882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06ebb3ccefe666b440e7a117907605f0198f483d", + "fields": { + "code_commune_insee": "35351", + "nom_de_la_commune": "LE VERGER", + "code_postal": "35160", + "coordonnees_gps": [ + 48.0658260742, + -1.93692739781 + ], + "libelle_d_acheminement": "LE VERGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.93692739781, + 48.0658260742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "916cd03effb6c1dec0b431bcd42df1fb1fb74e3a", + "fields": { + "code_commune_insee": "27539", + "nom_de_la_commune": "ST ETIENNE SOUS BAILLEUL", + "code_postal": "27920", + "coordonnees_gps": [ + 49.1157573494, + 1.40530942134 + ], + "libelle_d_acheminement": "ST ETIENNE SOUS BAILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40530942134, + 49.1157573494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d7c10b15c496731c146ef6d35902f9738203c8c", + "fields": { + "code_commune_insee": "35354", + "nom_de_la_commune": "VIEUX VIEL", + "code_postal": "35610", + "coordonnees_gps": [ + 48.5010768031, + -1.55308339453 + ], + "libelle_d_acheminement": "VIEUX VIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55308339453, + 48.5010768031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73bc54a52ac3ca8d227fa37e8562efae92d5a080", + "fields": { + "code_commune_insee": "27542", + "nom_de_la_commune": "ST GEORGES DU VIEVRE", + "code_postal": "27450", + "coordonnees_gps": [ + 49.2421438594, + 0.579765029769 + ], + "libelle_d_acheminement": "ST GEORGES DU VIEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.579765029769, + 49.2421438594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36b56dc04faae731effcbbdf99703e414eeb6757", + "fields": { + "code_commune_insee": "35355", + "nom_de_la_commune": "VIEUX VY SUR COUESNON", + "code_postal": "35490", + "coordonnees_gps": [ + 48.3340738846, + -1.49930744372 + ], + "libelle_d_acheminement": "VIEUX VY SUR COUESNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49930744372, + 48.3340738846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "327f1923e6e01b5946c8f1b64bb4740a7f725f99", + "fields": { + "code_commune_insee": "27545", + "nom_de_la_commune": "ST GERMAIN DE PASQUIER", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2419000465, + 1.00241263346 + ], + "libelle_d_acheminement": "ST GERMAIN DE PASQUIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00241263346, + 49.2419000465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24728aed0becce62a67f7d77e2d44a45c4b3f299", + "fields": { + "code_commune_insee": "35357", + "nom_de_la_commune": "VILLAMEE", + "code_postal": "35420", + "coordonnees_gps": [ + 48.4562439704, + -1.21840173852 + ], + "libelle_d_acheminement": "VILLAMEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21840173852, + 48.4562439704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8b6087948b0006df49a2c332a8ca287764b5d72", + "fields": { + "ligne_5": "GUERNANVILLE", + "code_commune_insee": "27565", + "libelle_d_acheminement": "LE LESME", + "code_postal": "27160", + "nom_de_la_commune": "LE LESME", + "coordonnees_gps": [ + 48.911287302, + 0.845987853541 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.845987853541, + 48.911287302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7da0c6abcc8b2cd8356617299d984b80df1b2511", + "fields": { + "code_commune_insee": "35363", + "nom_de_la_commune": "PONT PEAN", + "code_postal": "35131", + "coordonnees_gps": [ + 48.0111348801, + -1.69601676125 + ], + "libelle_d_acheminement": "PONT PEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69601676125, + 48.0111348801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce627aba58b41f26f562a8644761ce570163c57d", + "fields": { + "code_commune_insee": "27567", + "nom_de_la_commune": "STE MARIE DE VATIMESNIL", + "code_postal": "27150", + "coordonnees_gps": [ + 49.2721801587, + 1.58233388295 + ], + "libelle_d_acheminement": "STE MARIE DE VATIMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58233388295, + 49.2721801587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5800da5b4d54bf153a0fcdf50546d597f00c07d2", + "fields": { + "code_commune_insee": "36012", + "nom_de_la_commune": "BARAIZE", + "code_postal": "36270", + "coordonnees_gps": [ + 46.480854966, + 1.57028016137 + ], + "libelle_d_acheminement": "BARAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57028016137, + 46.480854966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f625a0d0f7e551fea7e4576987345448b2a8e96d", + "fields": { + "code_commune_insee": "27572", + "nom_de_la_commune": "ST MESLIN DU BOSC", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2158652715, + 0.878606617749 + ], + "libelle_d_acheminement": "ST MESLIN DU BOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.878606617749, + 49.2158652715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58fd88227ab91dbdd60de35ab925a0529354f034", + "fields": { + "code_commune_insee": "36013", + "nom_de_la_commune": "BAUDRES", + "code_postal": "36110", + "coordonnees_gps": [ + 47.0521492475, + 1.57305496545 + ], + "libelle_d_acheminement": "BAUDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57305496545, + 47.0521492475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dd5e2d63e22b97b5c0015d3fb1c01071ec0b308", + "fields": { + "code_commune_insee": "27594", + "nom_de_la_commune": "ST PIERRE DES IFS", + "code_postal": "27450", + "coordonnees_gps": [ + 49.2655678167, + 0.608547904899 + ], + "libelle_d_acheminement": "ST PIERRE DES IFS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.608547904899, + 49.2655678167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef7e66e968548bfe58bc14dc60706abd4cd49dbf", + "fields": { + "code_commune_insee": "36015", + "nom_de_la_commune": "BEAULIEU", + "code_postal": "36310", + "coordonnees_gps": [ + 46.3854812968, + 1.29760988524 + ], + "libelle_d_acheminement": "BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29760988524, + 46.3854812968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37a1f6fd3b51c8cfda754503ce32170c51f1534b", + "fields": { + "code_commune_insee": "27595", + "nom_de_la_commune": "ST PIERRE DU BOSGUERARD", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2603785752, + 0.889845765495 + ], + "libelle_d_acheminement": "ST PIERRE DU BOSGUERARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.889845765495, + 49.2603785752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ed050e9c1fb75c30816d0041d9719d725cab8f6", + "fields": { + "code_commune_insee": "36016", + "nom_de_la_commune": "BELABRE", + "code_postal": "36370", + "coordonnees_gps": [ + 46.5555750256, + 1.16199318259 + ], + "libelle_d_acheminement": "BELABRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16199318259, + 46.5555750256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb8604eaba1507f88f204090d643378467063090", + "fields": { + "code_commune_insee": "27598", + "nom_de_la_commune": "ST PIERRE DU VAUVRAY", + "code_postal": "27430", + "coordonnees_gps": [ + 49.2236978815, + 1.21846130643 + ], + "libelle_d_acheminement": "ST PIERRE DU VAUVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21846130643, + 49.2236978815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae968fd692623410d5240e3fa35b79eac8073360", + "fields": { + "code_commune_insee": "36017", + "nom_de_la_commune": "LA BERTHENOUX", + "code_postal": "36400", + "coordonnees_gps": [ + 46.6972820615, + 2.05729628607 + ], + "libelle_d_acheminement": "LA BERTHENOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05729628607, + 46.6972820615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b069511ebd9deb954ff2b47929d7386bb9b84dc8", + "fields": { + "code_commune_insee": "27603", + "nom_de_la_commune": "ST SIMEON", + "code_postal": "27560", + "coordonnees_gps": [ + 49.2843032087, + 0.516823898884 + ], + "libelle_d_acheminement": "ST SIMEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.516823898884, + 49.2843032087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79863f3d342442bbd5eb2a315b16ea3e2ee60488", + "fields": { + "code_commune_insee": "36018", + "nom_de_la_commune": "LE BLANC", + "code_postal": "36300", + "coordonnees_gps": [ + 46.6346200347, + 1.10013221164 + ], + "libelle_d_acheminement": "LE BLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10013221164, + 46.6346200347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cd673dd3dda5528b7a1708661214802c05842a5", + "fields": { + "code_commune_insee": "27604", + "nom_de_la_commune": "ST SULPICE DE GRIMBOUVILLE", + "code_postal": "27210", + "coordonnees_gps": [ + 49.375170989, + 0.448722234228 + ], + "libelle_d_acheminement": "ST SULPICE DE GRIMBOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.448722234228, + 49.375170989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8af8173a51ff8f1b484307d6d35fbba6bbfd5338", + "fields": { + "code_commune_insee": "36019", + "nom_de_la_commune": "BOMMIERS", + "code_postal": "36120", + "coordonnees_gps": [ + 46.7799451256, + 2.00352346772 + ], + "libelle_d_acheminement": "BOMMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00352346772, + 46.7799451256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a65608f1db92dcd946351a45ecdea9586ed6e43", + "fields": { + "code_commune_insee": "27606", + "nom_de_la_commune": "ST SYMPHORIEN", + "code_postal": "27500", + "coordonnees_gps": [ + 49.3103896124, + 0.455835904436 + ], + "libelle_d_acheminement": "ST SYMPHORIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.455835904436, + 49.3103896124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4e0806aacadb7ea212454f16cdf380dbb19e102", + "fields": { + "code_commune_insee": "36025", + "nom_de_la_commune": "BRIANTES", + "code_postal": "36400", + "coordonnees_gps": [ + 46.5505241827, + 2.02422131668 + ], + "libelle_d_acheminement": "BRIANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02422131668, + 46.5505241827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15aa43608c83cb79aaa52935b94bc8104fa82986", + "fields": { + "code_commune_insee": "27609", + "nom_de_la_commune": "ST VICTOR D EPINE", + "code_postal": "27800", + "coordonnees_gps": [ + 49.2117875506, + 0.598900183918 + ], + "libelle_d_acheminement": "ST VICTOR D EPINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.598900183918, + 49.2117875506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "077509274432eac025a8fed949616c38cdb9d9fc", + "fields": { + "code_commune_insee": "36043", + "nom_de_la_commune": "CHASSIGNOLLES", + "code_postal": "36400", + "coordonnees_gps": [ + 46.5288369456, + 1.93596735168 + ], + "libelle_d_acheminement": "CHASSIGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93596735168, + 46.5288369456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3c97f8e3665b11aaad4446ac9038d945759b5dd", + "fields": { + "code_commune_insee": "27616", + "nom_de_la_commune": "LA SAUSSAYE", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2545361431, + 0.9861777025 + ], + "libelle_d_acheminement": "LA SAUSSAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9861777025, + 49.2545361431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76324fba26c99b67e65eb8c5d1c48767a0bb8f9a", + "fields": { + "code_commune_insee": "36051", + "nom_de_la_commune": "CHITRAY", + "code_postal": "36800", + "coordonnees_gps": [ + 46.6594985934, + 1.35961781194 + ], + "libelle_d_acheminement": "CHITRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35961781194, + 46.6594985934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37d748fa729edbda189514e560c28cb06479478e", + "fields": { + "code_commune_insee": "27623", + "nom_de_la_commune": "SURTAUVILLE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.1981722844, + 1.05434427068 + ], + "libelle_d_acheminement": "SURTAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05434427068, + 49.1981722844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e5c3bc1568d1c76f549b68dd27fd6e81b8c3393", + "fields": { + "code_commune_insee": "36052", + "nom_de_la_commune": "CHOUDAY", + "code_postal": "36100", + "coordonnees_gps": [ + 46.9211133197, + 2.05340256706 + ], + "libelle_d_acheminement": "CHOUDAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05340256706, + 46.9211133197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4d7811178718338406e91f821c106cf569500ac", + "fields": { + "code_commune_insee": "27630", + "nom_de_la_commune": "THIBOUVILLE", + "code_postal": "27800", + "coordonnees_gps": [ + 49.1412155943, + 0.803549325292 + ], + "libelle_d_acheminement": "THIBOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.803549325292, + 49.1412155943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f7b31f11cf2271ac660a528cabcecac73e16b87", + "fields": { + "code_commune_insee": "36054", + "nom_de_la_commune": "CLERE DU BOIS", + "code_postal": "36700", + "coordonnees_gps": [ + 46.9425971085, + 1.10231213946 + ], + "libelle_d_acheminement": "CLERE DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10231213946, + 46.9425971085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e13abb8027ca5fb5023778dfbfa0f3cce16bd0d4", + "fields": { + "code_commune_insee": "27631", + "nom_de_la_commune": "THIERVILLE", + "code_postal": "27290", + "coordonnees_gps": [ + 49.2634059401, + 0.71733189075 + ], + "libelle_d_acheminement": "THIERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.71733189075, + 49.2634059401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be7118195bd905be72bdcbd5ec3e1797f4c071f3", + "fields": { + "code_commune_insee": "36055", + "nom_de_la_commune": "CLION", + "code_postal": "36700", + "coordonnees_gps": [ + 46.9379936712, + 1.22161991718 + ], + "libelle_d_acheminement": "CLION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22161991718, + 46.9379936712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b2016f1d62cbcdd25d6ea6e8a1c79606630a121", + "fields": { + "code_commune_insee": "27640", + "nom_de_la_commune": "TILLEUL DAME AGNES", + "code_postal": "27170", + "coordonnees_gps": [ + 49.0059849064, + 0.891031374979 + ], + "libelle_d_acheminement": "TILLEUL DAME AGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.891031374979, + 49.0059849064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7d83e1e1437ceb345335ac74518e701907f2ce5", + "fields": { + "code_commune_insee": "36057", + "nom_de_la_commune": "COINGS", + "code_postal": "36130", + "coordonnees_gps": [ + 46.8840276605, + 1.72143917623 + ], + "libelle_d_acheminement": "COINGS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72143917623, + 46.8840276605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58c39a803c121b595ee8babbc42f867852b3c299", + "fields": { + "code_commune_insee": "27666", + "nom_de_la_commune": "LA VACHERIE", + "code_postal": "27400", + "coordonnees_gps": [ + 49.1236655866, + 1.13657686446 + ], + "libelle_d_acheminement": "LA VACHERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13657686446, + 49.1236655866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "053788c7ddfd109ef8ffb508a1cbd71509a9e5be", + "fields": { + "code_commune_insee": "36061", + "nom_de_la_commune": "CROZON SUR VAUVRE", + "code_postal": "36140", + "coordonnees_gps": [ + 46.481288114, + 1.88194807348 + ], + "libelle_d_acheminement": "CROZON SUR VAUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88194807348, + 46.481288114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d3aa00a3b58de27f92bb8a664274494a1e8eef1", + "fields": { + "code_commune_insee": "27670", + "nom_de_la_commune": "VANDRIMARE", + "code_postal": "27380", + "coordonnees_gps": [ + 49.3827490868, + 1.35158602965 + ], + "libelle_d_acheminement": "VANDRIMARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35158602965, + 49.3827490868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "812314cd058a4b5e98e5f90d9749bfd331950560", + "fields": { + "code_commune_insee": "36063", + "nom_de_la_commune": "DEOLS", + "code_postal": "36130", + "coordonnees_gps": [ + 46.8403192166, + 1.70244266478 + ], + "libelle_d_acheminement": "DEOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70244266478, + 46.8403192166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc76048382aa908112f928fc798ebfa6ae712b16", + "fields": { + "code_commune_insee": "27674", + "nom_de_la_commune": "VAUX SUR EURE", + "code_postal": "27120", + "coordonnees_gps": [ + 49.0358655826, + 1.33388811683 + ], + "libelle_d_acheminement": "VAUX SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33388811683, + 49.0358655826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a77d1907162da3f17fa3dc6c8ac2dc66750c72ac", + "fields": { + "code_commune_insee": "36073", + "nom_de_la_commune": "FEUSINES", + "code_postal": "36160", + "coordonnees_gps": [ + 46.5123371526, + 2.10013659358 + ], + "libelle_d_acheminement": "FEUSINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10013659358, + 46.5123371526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edc9e360a2fb73400823d6ef531e90d983b59937", + "fields": { + "ligne_5": "VENABLES", + "code_commune_insee": "27676", + "libelle_d_acheminement": "LES TROIS LACS", + "code_postal": "27940", + "nom_de_la_commune": "LES TROIS LACS", + "coordonnees_gps": [ + 49.2012200794, + 1.29594833053 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29594833053, + 49.2012200794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce084cb62d55fd28cb70b4e2e69efca9c66b0593", + "fields": { + "code_commune_insee": "36076", + "nom_de_la_commune": "FONTGOMBAULT", + "code_postal": "36220", + "coordonnees_gps": [ + 46.6744006653, + 0.971856321083 + ], + "libelle_d_acheminement": "FONTGOMBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.971856321083, + 46.6744006653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b926e2f258fc29b989b0cac788b51311040199a", + "fields": { + "ligne_5": "FRANCHEVILLE", + "code_commune_insee": "27679", + "libelle_d_acheminement": "VERNEUIL D AVRE ET D ITON", + "code_postal": "27160", + "nom_de_la_commune": "VERNEUIL D AVRE ET D ITON", + "coordonnees_gps": [ + 48.7377022151, + 0.924765167388 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.924765167388, + 48.7377022151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf097fea2bd1a27be94eeb3c1f025419759a7637", + "fields": { + "ligne_5": "ST MARTIN DE LAMPS", + "code_commune_insee": "36093", + "libelle_d_acheminement": "LEVROUX", + "code_postal": "36110", + "nom_de_la_commune": "LEVROUX", + "coordonnees_gps": [ + 46.9727032392, + 1.63027138239 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63027138239, + 46.9727032392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20d3a35aa9d3a8dad5c048f296f581956d379160", + "fields": { + "code_commune_insee": "27683", + "nom_de_la_commune": "VEZILLON", + "code_postal": "27700", + "coordonnees_gps": [ + 49.2217888937, + 1.3986752654 + ], + "libelle_d_acheminement": "VEZILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3986752654, + 49.2217888937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2357f1c52c157401a5c26830416d371a88f8f968", + "fields": { + "code_commune_insee": "36096", + "nom_de_la_commune": "LINGE", + "code_postal": "36220", + "coordonnees_gps": [ + 46.7553232246, + 1.11330278718 + ], + "libelle_d_acheminement": "LINGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11330278718, + 46.7553232246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c067b8eb223713d2c27e2c48d17ad6ad04b58c47", + "fields": { + "ligne_5": "CHAMPIGNOLLES", + "code_commune_insee": "27685", + "libelle_d_acheminement": "LA VIEILLE LYRE", + "code_postal": "27330", + "nom_de_la_commune": "LA VIEILLE LYRE", + "coordonnees_gps": [ + 48.9215744552, + 0.750049343604 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.750049343604, + 48.9215744552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7591d45bea00e5fd7a122d32a4515cb43d5209dc", + "fields": { + "code_commune_insee": "36099", + "nom_de_la_commune": "LOURDOUEIX ST MICHEL", + "code_postal": "36140", + "coordonnees_gps": [ + 46.4167963752, + 1.7255656955 + ], + "libelle_d_acheminement": "LOURDOUEIX ST MICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7255656955, + 46.4167963752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c12db183e785eb924e26d36375e9b2580681e71", + "fields": { + "code_commune_insee": "27692", + "nom_de_la_commune": "VILLETTES", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1542620882, + 1.04564765622 + ], + "libelle_d_acheminement": "VILLETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04564765622, + 49.1542620882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3af6925ff204f43202ffa2b8fb2dadc1b406961", + "fields": { + "code_commune_insee": "36101", + "nom_de_la_commune": "LUANT", + "code_postal": "36350", + "coordonnees_gps": [ + 46.7276279837, + 1.56239391822 + ], + "libelle_d_acheminement": "LUANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56239391822, + 46.7276279837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e058ade3d83ed848af6de00168fc1a0291b1c0d", + "fields": { + "code_commune_insee": "27695", + "nom_de_la_commune": "VILLEZ SUR LE NEUBOURG", + "code_postal": "27110", + "coordonnees_gps": [ + 49.1471878741, + 0.859460348209 + ], + "libelle_d_acheminement": "VILLEZ SUR LE NEUBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.859460348209, + 49.1471878741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a44724a8b262495b102c44b39f347788280db4ec", + "fields": { + "code_commune_insee": "36103", + "nom_de_la_commune": "LUCAY LE MALE", + "code_postal": "36360", + "coordonnees_gps": [ + 47.1147802667, + 1.42699842882 + ], + "libelle_d_acheminement": "LUCAY LE MALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42699842882, + 47.1147802667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7be5a03e5bcf1d75744c347dd0745b157c800765", + "fields": { + "code_commune_insee": "27700", + "nom_de_la_commune": "VRAIVILLE", + "code_postal": "27370", + "coordonnees_gps": [ + 49.2175782912, + 1.03654685327 + ], + "libelle_d_acheminement": "VRAIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03654685327, + 49.2175782912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a67d53506db74c3be34a83309b84f1133b9e6a7a", + "fields": { + "code_commune_insee": "36113", + "nom_de_la_commune": "MARTIZAY", + "code_postal": "36220", + "coordonnees_gps": [ + 46.7999203381, + 1.03953209001 + ], + "libelle_d_acheminement": "MARTIZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03953209001, + 46.7999203381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84075a0168a9442233d27b771073cc03b49fc52d", + "fields": { + "code_commune_insee": "27701", + "nom_de_la_commune": "VAL DE REUIL", + "code_postal": "27100", + "coordonnees_gps": [ + 49.261335704, + 1.21147195365 + ], + "libelle_d_acheminement": "VAL DE REUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21147195365, + 49.261335704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c34c79f7f531312d6bab3d3234e4de4942d2d982", + "fields": { + "code_commune_insee": "36115", + "nom_de_la_commune": "MENETOU SUR NAHON", + "code_postal": "36210", + "coordonnees_gps": [ + 47.2239556606, + 1.63663736153 + ], + "libelle_d_acheminement": "MENETOU SUR NAHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63663736153, + 47.2239556606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3e5aa787faaa6ddc8844ad0e8e2cf2d1af02b92", + "fields": { + "code_commune_insee": "28005", + "nom_de_la_commune": "ALLUYES", + "code_postal": "28800", + "coordonnees_gps": [ + 48.2289582761, + 1.36379289637 + ], + "libelle_d_acheminement": "ALLUYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36379289637, + 48.2289582761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8eea4a3c19be09a5c5bbb546fb44f8c4b0e5ccdb", + "fields": { + "code_commune_insee": "36116", + "nom_de_la_commune": "MENETREOLS SOUS VATAN", + "code_postal": "36150", + "coordonnees_gps": [ + 47.0086528841, + 1.83457489496 + ], + "libelle_d_acheminement": "MENETREOLS SOUS VATAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83457489496, + 47.0086528841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "066c47cdd0463f780389b81dbb289ef0c19781f4", + "fields": { + "code_commune_insee": "28009", + "nom_de_la_commune": "ARDELU", + "code_postal": "28700", + "coordonnees_gps": [ + 48.3548964975, + 1.91257395142 + ], + "libelle_d_acheminement": "ARDELU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91257395142, + 48.3548964975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a80e53de206d08ddc3572d4602984cdb6e85a9b5", + "fields": { + "code_commune_insee": "36124", + "nom_de_la_commune": "MIGNE", + "code_postal": "36800", + "coordonnees_gps": [ + 46.7122971226, + 1.30178557971 + ], + "libelle_d_acheminement": "MIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30178557971, + 46.7122971226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1fef2a2da45a3d05be2f58a802e732dad41f96b", + "fields": { + "ligne_5": "BLEURY", + "code_commune_insee": "28015", + "libelle_d_acheminement": "AUNEAU BLEURY ST SYMPHORIEN", + "code_postal": "28700", + "nom_de_la_commune": "AUNEAU BLEURY ST SYMPHORIEN", + "coordonnees_gps": [ + 48.4694338029, + 1.77316730051 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77316730051, + 48.4694338029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f2995b69e0c1567135124a0ba46e6bb0d86dd37", + "fields": { + "code_commune_insee": "36130", + "nom_de_la_commune": "MONTLEVICQ", + "code_postal": "36400", + "coordonnees_gps": [ + 46.5799416307, + 2.08420798792 + ], + "libelle_d_acheminement": "MONTLEVICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08420798792, + 46.5799416307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4679456d4a0d18c51c6662f6d5ffd77f4155d45a", + "fields": { + "code_commune_insee": "28016", + "nom_de_la_commune": "LES AUTELS VILLEVILLON", + "code_postal": "28330", + "coordonnees_gps": [ + 48.1758855775, + 0.998907351037 + ], + "libelle_d_acheminement": "LES AUTELS VILLEVILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.998907351037, + 48.1758855775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "198a6c9c9f0c0e4d4d5179547cfdc60e884dc0df", + "fields": { + "code_commune_insee": "36144", + "nom_de_la_commune": "NURET LE FERRON", + "code_postal": "36800", + "coordonnees_gps": [ + 46.6891633663, + 1.42831929228 + ], + "libelle_d_acheminement": "NURET LE FERRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42831929228, + 46.6891633663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a7986d8ea04c5825e0a7c6cc2ed51f1a5e2741b", + "fields": { + "ligne_5": "SOIZE", + "code_commune_insee": "28018", + "libelle_d_acheminement": "AUTHON DU PERCHE", + "code_postal": "28330", + "nom_de_la_commune": "AUTHON DU PERCHE", + "coordonnees_gps": [ + 48.2017280828, + 0.885473078137 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.885473078137, + 48.2017280828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d48cf77d7a858df090dc267bd9989d2a48547d84", + "fields": { + "code_commune_insee": "36159", + "nom_de_la_commune": "LE POINCONNET", + "code_postal": "36330", + "coordonnees_gps": [ + 46.7565614091, + 1.72996377685 + ], + "libelle_d_acheminement": "LE POINCONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72996377685, + 46.7565614091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b0a968a2a620f25d2c534e97c2dbb53c45631d6", + "fields": { + "code_commune_insee": "28024", + "nom_de_la_commune": "BARJOUVILLE", + "code_postal": "28630", + "coordonnees_gps": [ + 48.4066421974, + 1.47210057567 + ], + "libelle_d_acheminement": "BARJOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47210057567, + 48.4066421974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df340d48ee08983d2ddddf4117c27cb852124d72", + "fields": { + "code_commune_insee": "36161", + "nom_de_la_commune": "LE PONT CHRETIEN CHABENET", + "code_postal": "36800", + "coordonnees_gps": [ + 46.6284901287, + 1.50039089772 + ], + "libelle_d_acheminement": "LE PONT CHRETIEN CHABENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50039089772, + 46.6284901287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59599a02539900571e1f0ecbd068c8fca74e0b0f", + "fields": { + "code_commune_insee": "28034", + "nom_de_la_commune": "BERCHERES ST GERMAIN", + "code_postal": "28300", + "coordonnees_gps": [ + 48.5350712593, + 1.4681780093 + ], + "libelle_d_acheminement": "BERCHERES ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4681780093, + 48.5350712593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebbfbe555f063f37dea2293c354222a0283d53b1", + "fields": { + "code_commune_insee": "36162", + "nom_de_la_commune": "POULAINES", + "code_postal": "36210", + "coordonnees_gps": [ + 47.1498063168, + 1.64502006889 + ], + "libelle_d_acheminement": "POULAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64502006889, + 47.1498063168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10363d415182c76531fce93cc8832bd34c0df1cf", + "fields": { + "code_commune_insee": "28036", + "nom_de_la_commune": "BERCHERES SUR VESGRE", + "code_postal": "28260", + "coordonnees_gps": [ + 48.8437900512, + 1.55304230439 + ], + "libelle_d_acheminement": "BERCHERES SUR VESGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55304230439, + 48.8437900512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c15d9fd7ea78177a0888f710c8df1572ce67706d", + "fields": { + "code_commune_insee": "36169", + "nom_de_la_commune": "PRUNIERS", + "code_postal": "36120", + "coordonnees_gps": [ + 46.7812910587, + 2.05837343794 + ], + "libelle_d_acheminement": "PRUNIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05837343794, + 46.7812910587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ef7c18e92e1aa550dbcec7e7aac8d7261597a1a", + "fields": { + "ligne_5": "ST LOUP", + "code_commune_insee": "28048", + "libelle_d_acheminement": "LA BOURDINIERE ST LOUP", + "code_postal": "28360", + "nom_de_la_commune": "LA BOURDINIERE ST LOUP", + "coordonnees_gps": [ + 48.3170148124, + 1.43019186424 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43019186424, + 48.3170148124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23dea5ab02f3af38bc8499f5bd2e4339fb99bc7d", + "fields": { + "code_commune_insee": "36170", + "nom_de_la_commune": "REBOURSIN", + "code_postal": "36150", + "coordonnees_gps": [ + 47.1082025361, + 1.81207985903 + ], + "libelle_d_acheminement": "REBOURSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81207985903, + 47.1082025361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8209348d2ef2bef2c5b3b8847ea2ee4a05cb6594", + "fields": { + "code_commune_insee": "28049", + "nom_de_la_commune": "BONCE", + "code_postal": "28150", + "coordonnees_gps": [ + 48.3077148864, + 1.51717452746 + ], + "libelle_d_acheminement": "BONCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51717452746, + 48.3077148864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab8f13cbe425474f3d0cd1a86e54eb0316e57e87", + "fields": { + "code_commune_insee": "36171", + "nom_de_la_commune": "REUILLY", + "code_postal": "36260", + "coordonnees_gps": [ + 47.080059286, + 2.01080444481 + ], + "libelle_d_acheminement": "REUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01080444481, + 47.080059286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82634bda991081f8f49b2c4e4b17a320800e8696", + "fields": { + "code_commune_insee": "28051", + "nom_de_la_commune": "BONNEVAL", + "code_postal": "28800", + "coordonnees_gps": [ + 48.1812188908, + 1.3853348704 + ], + "libelle_d_acheminement": "BONNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3853348704, + 48.1812188908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6098350741126a61f8dd2330a435b925dbcd8210", + "fields": { + "code_commune_insee": "36174", + "nom_de_la_commune": "ROUSSINES", + "code_postal": "36170", + "coordonnees_gps": [ + 46.4618536752, + 1.37726376805 + ], + "libelle_d_acheminement": "ROUSSINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37726376805, + 46.4618536752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6af33cad8f95365c53f0f792079eb4debb5c3627", + "fields": { + "code_commune_insee": "28067", + "nom_de_la_commune": "CERNAY", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3854124094, + 1.23047521955 + ], + "libelle_d_acheminement": "CERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23047521955, + 48.3854124094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea3984396561bbca589c6dd4e71f8184fa1fb9b7", + "fields": { + "code_commune_insee": "36175", + "nom_de_la_commune": "ROUVRES LES BOIS", + "code_postal": "36110", + "coordonnees_gps": [ + 47.0727033689, + 1.65279278952 + ], + "libelle_d_acheminement": "ROUVRES LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65279278952, + 47.0727033689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba6d96a8da7f579d33cafc7b507a26e67193eb0f", + "fields": { + "code_commune_insee": "28070", + "nom_de_la_commune": "CHAMPHOL", + "code_postal": "28300", + "coordonnees_gps": [ + 48.4669825206, + 1.51056677548 + ], + "libelle_d_acheminement": "CHAMPHOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51056677548, + 48.4669825206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1fc1bfaf205fc12da4c528a58c113c0a22defbc", + "fields": { + "code_commune_insee": "36180", + "nom_de_la_commune": "ST AOUT", + "code_postal": "36120", + "coordonnees_gps": [ + 46.7258764894, + 1.96323578512 + ], + "libelle_d_acheminement": "ST AOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96323578512, + 46.7258764894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fa2ab328779b0c43c19afa872820708f5ff7156", + "fields": { + "code_commune_insee": "28075", + "nom_de_la_commune": "LA CHAPELLE DU NOYER", + "code_postal": "28200", + "coordonnees_gps": [ + 48.0424164901, + 1.31784334889 + ], + "libelle_d_acheminement": "LA CHAPELLE DU NOYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31784334889, + 48.0424164901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a7a4458902ce42fab1cb0ad1d4e1fc3b7698e61", + "fields": { + "code_commune_insee": "36181", + "nom_de_la_commune": "ST AUBIN", + "code_postal": "36100", + "coordonnees_gps": [ + 46.861488808, + 2.03208809042 + ], + "libelle_d_acheminement": "ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03208809042, + 46.861488808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3ac6c6fd92fe5c048c964e3654276b43344bd73", + "fields": { + "code_commune_insee": "28076", + "nom_de_la_commune": "LA CHAPELLE FORAINVILLIERS", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7282722261, + 1.49116779483 + ], + "libelle_d_acheminement": "LA CHAPELLE FORAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49116779483, + 48.7282722261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4889c8e825c2d78aeec4d57cf54791b54630b1bb", + "fields": { + "code_commune_insee": "36184", + "nom_de_la_commune": "ST CHARTIER", + "code_postal": "36400", + "coordonnees_gps": [ + 46.6758816931, + 1.98233064219 + ], + "libelle_d_acheminement": "ST CHARTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98233064219, + 46.6758816931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43a660f430b467ed84c68830cbe54d8c42d6aae9", + "fields": { + "code_commune_insee": "28086", + "nom_de_la_commune": "CHASSANT", + "code_postal": "28480", + "coordonnees_gps": [ + 48.2920478755, + 1.06748981615 + ], + "libelle_d_acheminement": "CHASSANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06748981615, + 48.2920478755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75f188f782c17c0c62b0261eea6c3f87a62460e5", + "fields": { + "code_commune_insee": "36187", + "nom_de_la_commune": "ST CIVRAN", + "code_postal": "36170", + "coordonnees_gps": [ + 46.4938472391, + 1.40425431776 + ], + "libelle_d_acheminement": "ST CIVRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40425431776, + 46.4938472391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f700d15f5d10f47a21086acdf4a190dfb501523f", + "fields": { + "code_commune_insee": "28102", + "nom_de_la_commune": "CLEVILLIERS", + "code_postal": "28300", + "coordonnees_gps": [ + 48.5510764723, + 1.38436336991 + ], + "libelle_d_acheminement": "CLEVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38436336991, + 48.5510764723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2acdaee6ac2ecdc34b3a74bbcac15443fb87219d", + "fields": { + "code_commune_insee": "36191", + "nom_de_la_commune": "ST FLORENTIN", + "code_postal": "36150", + "coordonnees_gps": [ + 47.0986279649, + 1.77918217074 + ], + "libelle_d_acheminement": "ST FLORENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77918217074, + 47.0986279649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55b0bc52c5fed7d5f4ffdb614a5331680d43ea29", + "fields": { + "ligne_5": "CLOYES SUR LE LOIR", + "code_commune_insee": "28103", + "libelle_d_acheminement": "CLOYES LES TROIS RIVIERES", + "code_postal": "28220", + "nom_de_la_commune": "CLOYES LES TROIS RIVIERES", + "coordonnees_gps": [ + 47.9934559542, + 1.22150535909 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22150535909, + 47.9934559542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b982bfa84dbb92bbab213a3cfad213e6e67d06a2", + "fields": { + "code_commune_insee": "36195", + "nom_de_la_commune": "ST GEORGES SUR ARNON", + "code_postal": "36100", + "coordonnees_gps": [ + 46.9864324213, + 2.06490343076 + ], + "libelle_d_acheminement": "ST GEORGES SUR ARNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06490343076, + 46.9864324213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "032b857e603328e907bf77a4fc64542033cd3a4d", + "fields": { + "code_commune_insee": "28110", + "nom_de_la_commune": "LE COUDRAY", + "code_postal": "28630", + "coordonnees_gps": [ + 48.41900521, + 1.50280738837 + ], + "libelle_d_acheminement": "LE COUDRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50280738837, + 48.41900521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db49bf3551e50c2824751048ce7991eb824ca645", + "fields": { + "code_commune_insee": "36197", + "nom_de_la_commune": "ST HILAIRE SUR BENAIZE", + "code_postal": "36370", + "coordonnees_gps": [ + 46.5569306116, + 1.06674152425 + ], + "libelle_d_acheminement": "ST HILAIRE SUR BENAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06674152425, + 46.5569306116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a7e4f91003d30eb4ee0c517105ef38d83a12626", + "fields": { + "code_commune_insee": "28113", + "nom_de_la_commune": "COULOMBS", + "code_postal": "28210", + "coordonnees_gps": [ + 48.6558925205, + 1.55323037747 + ], + "libelle_d_acheminement": "COULOMBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55323037747, + 48.6558925205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7dc9bcb238f10101184553f9e1ac684780e18d7", + "fields": { + "code_commune_insee": "36199", + "nom_de_la_commune": "STE LIZAIGNE", + "code_postal": "36260", + "coordonnees_gps": [ + 47.0110071957, + 1.99544056226 + ], + "libelle_d_acheminement": "STE LIZAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99544056226, + 47.0110071957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65000d71d6cc454bddfbcb37600c275631d2ce21", + "fields": { + "code_commune_insee": "28114", + "nom_de_la_commune": "COURBEHAYE", + "code_postal": "28140", + "coordonnees_gps": [ + 48.1487812359, + 1.60780606369 + ], + "libelle_d_acheminement": "COURBEHAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60780606369, + 48.1487812359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee1afd95f500045a9a8529e272610b8103c7b7f0", + "fields": { + "code_commune_insee": "36202", + "nom_de_la_commune": "ST MAUR", + "code_postal": "36250", + "coordonnees_gps": [ + 46.7890918907, + 1.62343965566 + ], + "libelle_d_acheminement": "ST MAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62343965566, + 46.7890918907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "793d43659a1a554ca2081115e0408f273c2a5cbb", + "fields": { + "code_commune_insee": "28120", + "nom_de_la_commune": "CRUCEY VILLAGES", + "code_postal": "28270", + "coordonnees_gps": [ + 48.6685590578, + 1.10718898581 + ], + "libelle_d_acheminement": "CRUCEY VILLAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10718898581, + 48.6685590578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d20d34122f794ba11ef8916c577274b5bee5144", + "fields": { + "code_commune_insee": "36211", + "nom_de_la_commune": "SASSIERGES ST GERMAIN", + "code_postal": "36120", + "coordonnees_gps": [ + 46.7550023432, + 1.89054741912 + ], + "libelle_d_acheminement": "SASSIERGES ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89054741912, + 46.7550023432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d636b39a2bdb0137b1adfb2915f430feab4465d", + "fields": { + "ligne_5": "VITRAY SOUS BREZOLLES", + "code_commune_insee": "28120", + "libelle_d_acheminement": "CRUCEY VILLAGES", + "code_postal": "28270", + "nom_de_la_commune": "CRUCEY VILLAGES", + "coordonnees_gps": [ + 48.6685590578, + 1.10718898581 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10718898581, + 48.6685590578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d595d95497f12aab6dbce7df47b9f0bc226f77ba", + "fields": { + "code_commune_insee": "36213", + "nom_de_la_commune": "SAUZELLES", + "code_postal": "36220", + "coordonnees_gps": [ + 46.6542476574, + 0.985473920463 + ], + "libelle_d_acheminement": "SAUZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.985473920463, + 46.6542476574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1559a8d65f0eb37edf2e3fbd47f16a08ab21c812", + "fields": { + "code_commune_insee": "28124", + "nom_de_la_commune": "DAMPIERRE SUR AVRE", + "code_postal": "28350", + "coordonnees_gps": [ + 48.7574894001, + 1.14268157055 + ], + "libelle_d_acheminement": "DAMPIERRE SUR AVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14268157055, + 48.7574894001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad84b74faa128501b197939e31342d0a65cad291", + "fields": { + "code_commune_insee": "36215", + "nom_de_la_commune": "SEGRY", + "code_postal": "36100", + "coordonnees_gps": [ + 46.8846862374, + 2.09589433359 + ], + "libelle_d_acheminement": "SEGRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09589433359, + 46.8846862374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdc850a3de67209ecd44b52b31f4ff06d1fb1f07", + "fields": { + "code_commune_insee": "28128", + "nom_de_la_commune": "DANGERS", + "code_postal": "28190", + "coordonnees_gps": [ + 48.5096674489, + 1.35007819193 + ], + "libelle_d_acheminement": "DANGERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35007819193, + 48.5096674489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1a224bd28ce34bbb737905b9e2ec4cb1e88c393", + "fields": { + "code_commune_insee": "36217", + "nom_de_la_commune": "SEMBLECAY", + "code_postal": "36210", + "coordonnees_gps": [ + 47.2185048101, + 1.69379686982 + ], + "libelle_d_acheminement": "SEMBLECAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69379686982, + 47.2185048101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58b7f4e797a77d35a1b7f8f601c5674b9be12604", + "fields": { + "code_commune_insee": "28134", + "nom_de_la_commune": "DREUX", + "code_postal": "28100", + "coordonnees_gps": [ + 48.7485203213, + 1.35931854112 + ], + "libelle_d_acheminement": "DREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35931854112, + 48.7485203213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "724d2a48bf26e49fdaca4910c56adc48d2fc8c87", + "fields": { + "code_commune_insee": "36222", + "nom_de_la_commune": "THIZAY", + "code_postal": "36100", + "coordonnees_gps": [ + 46.8989940984, + 1.92934750416 + ], + "libelle_d_acheminement": "THIZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92934750416, + 46.8989940984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8137a40049489c80ce20a8ecc0e0a957bc00c02", + "fields": { + "code_commune_insee": "28148", + "nom_de_la_commune": "LE FAVRIL", + "code_postal": "28190", + "coordonnees_gps": [ + 48.4602165787, + 1.11125925385 + ], + "libelle_d_acheminement": "LE FAVRIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11125925385, + 48.4602165787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce4eb48342f40c6008bba2088b8765f1dcb098b0", + "fields": { + "code_commune_insee": "36228", + "nom_de_la_commune": "VALENCAY", + "code_postal": "36600", + "coordonnees_gps": [ + 47.1558433483, + 1.55858540806 + ], + "libelle_d_acheminement": "VALENCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55858540806, + 47.1558433483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b7da0b6017e03954d0351e05d8586f3a2a20bdc", + "fields": { + "code_commune_insee": "28154", + "nom_de_la_commune": "FONTAINE LA GUYON", + "code_postal": "28190", + "coordonnees_gps": [ + 48.4754751752, + 1.2975045091 + ], + "libelle_d_acheminement": "FONTAINE LA GUYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2975045091, + 48.4754751752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d014f6cbd33e3a61f1ab4df03b2afc532aa8f17e", + "fields": { + "code_commune_insee": "36230", + "nom_de_la_commune": "VATAN", + "code_postal": "36150", + "coordonnees_gps": [ + 47.0538873718, + 1.82531478025 + ], + "libelle_d_acheminement": "VATAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82531478025, + 47.0538873718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92858b5391ff4c1e17879f5039a1d43477ae3ac0", + "fields": { + "code_commune_insee": "28167", + "nom_de_la_commune": "FRUNCE", + "code_postal": "28190", + "coordonnees_gps": [ + 48.4055650725, + 1.19764831132 + ], + "libelle_d_acheminement": "FRUNCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19764831132, + 48.4055650725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfa72f3d911d3bc0537806cfc5a929cefb63dee1", + "fields": { + "code_commune_insee": "36236", + "nom_de_la_commune": "VICQ EXEMPLET", + "code_postal": "36400", + "coordonnees_gps": [ + 46.6210252622, + 2.14341177341 + ], + "libelle_d_acheminement": "VICQ EXEMPLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14341177341, + 46.6210252622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c66a65824be66bd109010e869d8fd6d643b8145", + "fields": { + "ligne_5": "MONTLOUET", + "code_commune_insee": "28168", + "libelle_d_acheminement": "GALLARDON", + "code_postal": "28320", + "nom_de_la_commune": "GALLARDON", + "coordonnees_gps": [ + 48.5338026197, + 1.68926878076 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68926878076, + 48.5338026197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a92e9076fc7bcd50afe1649554e44426c96ed868", + "fields": { + "code_commune_insee": "36237", + "nom_de_la_commune": "VICQ SUR NAHON", + "code_postal": "36600", + "coordonnees_gps": [ + 47.1002749222, + 1.55803357778 + ], + "libelle_d_acheminement": "VICQ SUR NAHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55803357778, + 47.1002749222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3efb5cc78215c7cebc837779e490b8fbbbf6ba03", + "fields": { + "code_commune_insee": "28169", + "nom_de_la_commune": "GARANCIERES EN BEAUCE", + "code_postal": "28700", + "coordonnees_gps": [ + 48.433368289, + 1.91544327083 + ], + "libelle_d_acheminement": "GARANCIERES EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91544327083, + 48.433368289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04f98dc24da4647224e0192342451e663f1f8dc9", + "fields": { + "code_commune_insee": "36241", + "nom_de_la_commune": "VILLEDIEU SUR INDRE", + "code_postal": "36320", + "coordonnees_gps": [ + 46.8446125894, + 1.51599368144 + ], + "libelle_d_acheminement": "VILLEDIEU SUR INDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51599368144, + 46.8446125894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "320dc1aae01ff86b82c719fd8d1b8e98847fddf8", + "fields": { + "code_commune_insee": "28178", + "nom_de_la_commune": "GERMAINVILLE", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7450510494, + 1.47749303837 + ], + "libelle_d_acheminement": "GERMAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47749303837, + 48.7450510494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f1fd03af187766164f699c0be18c5ad15fe62a7", + "fields": { + "ligne_5": "VILLENTROIS", + "code_commune_insee": "36244", + "libelle_d_acheminement": "VILLENTROIS FAVEROLLES EN BERRY", + "code_postal": "36600", + "nom_de_la_commune": "VILLENTROIS FAVEROLLES EN BERRY", + "coordonnees_gps": [ + 47.1877948714, + 1.45972969397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45972969397, + 47.1877948714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d893d5e89cd8033cb0892ad66f2cd51eea9ad76", + "fields": { + "code_commune_insee": "28183", + "nom_de_la_commune": "GOMMERVILLE", + "code_postal": "28310", + "coordonnees_gps": [ + 48.3430832547, + 1.95281271777 + ], + "libelle_d_acheminement": "GOMMERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95281271777, + 48.3430832547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f7fe97ae4a6b9c754b84a288cc211beb7047b76", + "fields": { + "code_commune_insee": "37005", + "nom_de_la_commune": "ANTOGNY LE TILLAC", + "code_postal": "37800", + "coordonnees_gps": [ + 46.9684491062, + 0.55478841999 + ], + "libelle_d_acheminement": "ANTOGNY LE TILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55478841999, + 46.9684491062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6daa93f4ebe0f4fefc48234d52d531f80a4c42bc", + "fields": { + "ligne_5": "ORLU", + "code_commune_insee": "28183", + "libelle_d_acheminement": "GOMMERVILLE", + "code_postal": "28700", + "nom_de_la_commune": "GOMMERVILLE", + "coordonnees_gps": [ + 48.3430832547, + 1.95281271777 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95281271777, + 48.3430832547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b7fe97040b91385ecf74617b1e665c9b3f9cc9a", + "fields": { + "code_commune_insee": "37007", + "nom_de_la_commune": "ASSAY", + "code_postal": "37120", + "coordonnees_gps": [ + 47.0676563174, + 0.276362462975 + ], + "libelle_d_acheminement": "ASSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.276362462975, + 47.0676563174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0316a8294481d20e6669835712be6b826291938b", + "fields": { + "code_commune_insee": "28184", + "nom_de_la_commune": "GOUILLONS", + "code_postal": "28310", + "coordonnees_gps": [ + 48.3421221995, + 1.84393517435 + ], + "libelle_d_acheminement": "GOUILLONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84393517435, + 48.3421221995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc1ebad9ba17c3145eb9761bb6651cdad99eaa86", + "fields": { + "code_commune_insee": "37008", + "nom_de_la_commune": "ATHEE SUR CHER", + "code_postal": "37270", + "coordonnees_gps": [ + 47.3147073086, + 0.902278800699 + ], + "libelle_d_acheminement": "ATHEE SUR CHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.902278800699, + 47.3147073086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e14e2defd1b742ba4bc55a0b637c0befeed2b74", + "fields": { + "code_commune_insee": "28195", + "nom_de_la_commune": "HOUX", + "code_postal": "28130", + "coordonnees_gps": [ + 48.569793408, + 1.62105336721 + ], + "libelle_d_acheminement": "HOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62105336721, + 48.569793408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e5c0d6f264cf3a6206704020c40ae387408d249", + "fields": { + "code_commune_insee": "37011", + "nom_de_la_commune": "AVOINE", + "code_postal": "37420", + "coordonnees_gps": [ + 47.2237767737, + 0.18754463005 + ], + "libelle_d_acheminement": "AVOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.18754463005, + 47.2237767737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b48de8c13afde8edcd8cb8327f06882fa234b60", + "fields": { + "code_commune_insee": "28198", + "nom_de_la_commune": "JALLANS", + "code_postal": "28200", + "coordonnees_gps": [ + 48.0767840463, + 1.38589704833 + ], + "libelle_d_acheminement": "JALLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38589704833, + 48.0767840463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73d87f80d36514d0a5d7a92791e8a7e648635b05", + "fields": { + "code_commune_insee": "37014", + "nom_de_la_commune": "AZAY LE RIDEAU", + "code_postal": "37190", + "coordonnees_gps": [ + 47.2729677305, + 0.469464530446 + ], + "libelle_d_acheminement": "AZAY LE RIDEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.469464530446, + 47.2729677305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f084b2fe21a9c86b7b51da90e032bb51b5bc62f2", + "fields": { + "ligne_5": "LE PUISET", + "code_commune_insee": "28199", + "libelle_d_acheminement": "JANVILLE EN BEAUCE", + "code_postal": "28310", + "nom_de_la_commune": "JANVILLE EN BEAUCE", + "coordonnees_gps": [ + 48.200814518, + 1.89039239434 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89039239434, + 48.200814518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01e4e1bf69eedafb470f529de39be40d3c6b9581", + "fields": { + "code_commune_insee": "37019", + "nom_de_la_commune": "BARROU", + "code_postal": "37350", + "coordonnees_gps": [ + 46.8814967134, + 0.77481154577 + ], + "libelle_d_acheminement": "BARROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77481154577, + 46.8814967134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06d6882d8c3df6e3d1cec6e001a8ac38f8976e4a", + "fields": { + "code_commune_insee": "28201", + "nom_de_la_commune": "JOUY", + "code_postal": "28300", + "coordonnees_gps": [ + 48.5156020381, + 1.54597077528 + ], + "libelle_d_acheminement": "JOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54597077528, + 48.5156020381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "232e29967fe77a40a81c36eafc9bfc715553e70a", + "fields": { + "ligne_5": "LOUESTAULT", + "code_commune_insee": "37021", + "libelle_d_acheminement": "BEAUMONT LOUESTAULT", + "code_postal": "37370", + "nom_de_la_commune": "BEAUMONT LOUESTAULT", + "coordonnees_gps": [ + 47.568810886, + 0.67274558764 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67274558764, + 47.568810886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb0bb2ebc6f026668920fb30efb6eedd50458a5c", + "fields": { + "code_commune_insee": "28208", + "nom_de_la_commune": "LEVAINVILLE", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4925727301, + 1.74748225078 + ], + "libelle_d_acheminement": "LEVAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74748225078, + 48.4925727301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ac94055e620bb413c1a833cb5b010396992fcd8", + "fields": { + "code_commune_insee": "37027", + "nom_de_la_commune": "BLERE", + "code_postal": "37150", + "coordonnees_gps": [ + 47.3074648411, + 0.987107533288 + ], + "libelle_d_acheminement": "BLERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.987107533288, + 47.3074648411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b16e52ca9e3d3a1a861cc03534de73523b1f83d3", + "fields": { + "code_commune_insee": "28216", + "nom_de_la_commune": "LOUVILLIERS EN DROUAIS", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7348522344, + 1.28314015139 + ], + "libelle_d_acheminement": "LOUVILLIERS EN DROUAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28314015139, + 48.7348522344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f9ce82cb58c7db3819ad97655c0a8d2e400447d", + "fields": { + "code_commune_insee": "37033", + "nom_de_la_commune": "BOUSSAY", + "code_postal": "37290", + "coordonnees_gps": [ + 46.8484852345, + 0.892362482013 + ], + "libelle_d_acheminement": "BOUSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.892362482013, + 46.8484852345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "399b1eb99d3a5affdbb0350c9e5332d283a0bcc7", + "fields": { + "code_commune_insee": "28234", + "nom_de_la_commune": "MARCHEVILLE", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3638497344, + 1.24329723832 + ], + "libelle_d_acheminement": "MARCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24329723832, + 48.3638497344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17d40255c2e3674933f4e23f57f8f48d4327bc47", + "fields": { + "code_commune_insee": "37041", + "nom_de_la_commune": "BUEIL EN TOURAINE", + "code_postal": "37370", + "coordonnees_gps": [ + 47.63053702, + 0.552522372258 + ], + "libelle_d_acheminement": "BUEIL EN TOURAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.552522372258, + 47.63053702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8420d84e44d497e03bd6b09ba048c6ec4268419", + "fields": { + "code_commune_insee": "28239", + "nom_de_la_commune": "MARVILLE MOUTIERS BRULE", + "code_postal": "28500", + "coordonnees_gps": [ + 48.6748561524, + 1.37887146982 + ], + "libelle_d_acheminement": "MARVILLE MOUTIERS BRULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37887146982, + 48.6748561524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e6aa148960ab711bccbd4f270c3fbf3d81ab74c", + "fields": { + "code_commune_insee": "37043", + "nom_de_la_commune": "CANGEY", + "code_postal": "37530", + "coordonnees_gps": [ + 47.4887286786, + 1.06027361973 + ], + "libelle_d_acheminement": "CANGEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06027361973, + 47.4887286786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a260970c7e2ac188b8bb29488f2cfbf9e7c11eca", + "fields": { + "code_commune_insee": "28257", + "nom_de_la_commune": "MONDONVILLE ST JEAN", + "code_postal": "28700", + "coordonnees_gps": [ + 48.3631185129, + 1.82435785403 + ], + "libelle_d_acheminement": "MONDONVILLE ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82435785403, + 48.3631185129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70a17afdc23068752bb2c59770a70b60bd837403", + "fields": { + "code_commune_insee": "37051", + "nom_de_la_commune": "CHAMPIGNY SUR VEUDE", + "code_postal": "37120", + "coordonnees_gps": [ + 47.0566092361, + 0.327929999931 + ], + "libelle_d_acheminement": "CHAMPIGNY SUR VEUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.327929999931, + 47.0566092361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43c6a764e4f43c39f31e38a46f1d93a6edd9b36b", + "fields": { + "code_commune_insee": "28261", + "nom_de_la_commune": "MONTIGNY LE CHARTIF", + "code_postal": "28120", + "coordonnees_gps": [ + 48.2909978482, + 1.13008902025 + ], + "libelle_d_acheminement": "MONTIGNY LE CHARTIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13008902025, + 48.2909978482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7b6c17d2a2272c26b922b45b9c0594566dea099", + "fields": { + "code_commune_insee": "37061", + "nom_de_la_commune": "CHARNIZAY", + "code_postal": "37290", + "coordonnees_gps": [ + 46.9160338109, + 0.990841161121 + ], + "libelle_d_acheminement": "CHARNIZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.990841161121, + 46.9160338109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "013a49e05500170ad1685e05125789bb96717f08", + "fields": { + "code_commune_insee": "28265", + "nom_de_la_commune": "MONTLANDON", + "code_postal": "28240", + "coordonnees_gps": [ + 48.3881899209, + 1.02542042661 + ], + "libelle_d_acheminement": "MONTLANDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02542042661, + 48.3881899209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeb905e8267cc45bbefc3f6e393a435bdb0a7b26", + "fields": { + "code_commune_insee": "37069", + "nom_de_la_commune": "CHEMILLE SUR INDROIS", + "code_postal": "37460", + "coordonnees_gps": [ + 47.1535504221, + 1.15871292042 + ], + "libelle_d_acheminement": "CHEMILLE SUR INDROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15871292042, + 47.1535504221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20439d5da920f2c30e2d2345678e27aa71bf7452", + "fields": { + "code_commune_insee": "28269", + "nom_de_la_commune": "MORANCEZ", + "code_postal": "28630", + "coordonnees_gps": [ + 48.3965615994, + 1.50333516313 + ], + "libelle_d_acheminement": "MORANCEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50333516313, + 48.3965615994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84e569b306731fd72919fca5df6315b2a9364b84", + "fields": { + "code_commune_insee": "37075", + "nom_de_la_commune": "CIGOGNE", + "code_postal": "37310", + "coordonnees_gps": [ + 47.2656141951, + 0.943216158829 + ], + "libelle_d_acheminement": "CIGOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.943216158829, + 47.2656141951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1340ef66c2d82aff2febfc8f0b07c550e4f9db5c", + "fields": { + "code_commune_insee": "28270", + "nom_de_la_commune": "MORIERS", + "code_postal": "28800", + "coordonnees_gps": [ + 48.2206945142, + 1.44018817268 + ], + "libelle_d_acheminement": "MORIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44018817268, + 48.2206945142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0d5e66d913a1970ecf8c54aea187845968e0872", + "fields": { + "code_commune_insee": "37085", + "nom_de_la_commune": "COURCAY", + "code_postal": "37310", + "coordonnees_gps": [ + 47.2497992287, + 0.884516285898 + ], + "libelle_d_acheminement": "COURCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.884516285898, + 47.2497992287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2deb46df4a836330d4ca8eb1776dbd9a4ab08461", + "fields": { + "code_commune_insee": "28271", + "nom_de_la_commune": "MORVILLIERS", + "code_postal": "28340", + "coordonnees_gps": [ + 48.6490907462, + 0.946747285207 + ], + "libelle_d_acheminement": "MORVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.946747285207, + 48.6490907462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fa985e14bd295d84f4c43f75c692eba9a946bfe", + "fields": { + "code_commune_insee": "37091", + "nom_de_la_commune": "LA CROIX EN TOURAINE", + "code_postal": "37150", + "coordonnees_gps": [ + 47.34896993, + 0.992396977664 + ], + "libelle_d_acheminement": "LA CROIX EN TOURAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.992396977664, + 47.34896993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea1ba566e731e95c2e21e76f0f3651d96ad75412", + "fields": { + "code_commune_insee": "28272", + "nom_de_la_commune": "MOTTEREAU", + "code_postal": "28160", + "coordonnees_gps": [ + 48.2518845768, + 1.1688416202 + ], + "libelle_d_acheminement": "MOTTEREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1688416202, + 48.2518845768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73b281414fd27fd7a07a07667cc8b2087f3c25bf", + "fields": { + "code_commune_insee": "37096", + "nom_de_la_commune": "DIERRE", + "code_postal": "37150", + "coordonnees_gps": [ + 47.3536037001, + 0.956010471155 + ], + "libelle_d_acheminement": "DIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.956010471155, + 47.3536037001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45944281363cedc3975bbcc6fa95f83040460d22", + "fields": { + "code_commune_insee": "28275", + "nom_de_la_commune": "NERON", + "code_postal": "28210", + "coordonnees_gps": [ + 48.5961826632, + 1.50307845744 + ], + "libelle_d_acheminement": "NERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50307845744, + 48.5961826632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7066de8ab47c1ca5e2eca7b4514e69b1a87e1a7", + "fields": { + "code_commune_insee": "37097", + "nom_de_la_commune": "DOLUS LE SEC", + "code_postal": "37310", + "coordonnees_gps": [ + 47.1649485562, + 0.890511286523 + ], + "libelle_d_acheminement": "DOLUS LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.890511286523, + 47.1649485562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd765519505dd19f6e0d5b2b267d3b88c0211aa0", + "fields": { + "code_commune_insee": "28279", + "nom_de_la_commune": "NOGENT LE ROI", + "code_postal": "28210", + "coordonnees_gps": [ + 48.6300718767, + 1.52405693927 + ], + "libelle_d_acheminement": "NOGENT LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52405693927, + 48.6300718767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c089752c43bcdd1b67c9734b1dc14cc6465faf47", + "fields": { + "code_commune_insee": "37100", + "nom_de_la_commune": "EPEIGNE LES BOIS", + "code_postal": "37150", + "coordonnees_gps": [ + 47.2765013353, + 1.12347391282 + ], + "libelle_d_acheminement": "EPEIGNE LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12347391282, + 47.2765013353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ffd19838d9981e7321a95143e10dd829bf11201", + "fields": { + "code_commune_insee": "28281", + "nom_de_la_commune": "NOGENT SUR EURE", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3896168991, + 1.37569716428 + ], + "libelle_d_acheminement": "NOGENT SUR EURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37569716428, + 48.3896168991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6ba8d5fabb909270e3b22aff3e7e5183afe9838", + "fields": { + "code_commune_insee": "37101", + "nom_de_la_commune": "EPEIGNE SUR DEME", + "code_postal": "37370", + "coordonnees_gps": [ + 47.675476557, + 0.617884266098 + ], + "libelle_d_acheminement": "EPEIGNE SUR DEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.617884266098, + 47.675476557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99256c9c092c6930422a441ec36f34dbb56f3a81", + "fields": { + "code_commune_insee": "28282", + "nom_de_la_commune": "NONVILLIERS GRANDHOUX", + "code_postal": "28120", + "coordonnees_gps": [ + 48.3396576649, + 1.14563096287 + ], + "libelle_d_acheminement": "NONVILLIERS GRANDHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14563096287, + 48.3396576649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e8354785d9277eb5fa5d97ef868f6c1f5f08561", + "fields": { + "code_commune_insee": "37106", + "nom_de_la_commune": "LA FERRIERE", + "code_postal": "37110", + "coordonnees_gps": [ + 47.6237299052, + 0.756396261973 + ], + "libelle_d_acheminement": "LA FERRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.756396261973, + 47.6237299052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b335c6e33ca406522fb269035b02de7e99ce54b7", + "fields": { + "code_commune_insee": "28291", + "nom_de_la_commune": "OUARVILLE", + "code_postal": "28150", + "coordonnees_gps": [ + 48.3617202687, + 1.76951827841 + ], + "libelle_d_acheminement": "OUARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76951827841, + 48.3617202687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c410d518b9b469ef2a4c83c59129b4e601256da", + "fields": { + "code_commune_insee": "37107", + "nom_de_la_commune": "FERRIERE LARCON", + "code_postal": "37350", + "coordonnees_gps": [ + 46.9960395019, + 0.874010150834 + ], + "libelle_d_acheminement": "FERRIERE LARCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.874010150834, + 46.9960395019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8727ffbffea91ac11c55054cbeb5e782640f0914", + "fields": { + "code_commune_insee": "28298", + "nom_de_la_commune": "PIERRES", + "code_postal": "28130", + "coordonnees_gps": [ + 48.5892951017, + 1.55200898008 + ], + "libelle_d_acheminement": "PIERRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55200898008, + 48.5892951017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2fdc787283f13be158d949905bf987960354ec9", + "fields": { + "code_commune_insee": "37112", + "nom_de_la_commune": "GIZEUX", + "code_postal": "37340", + "coordonnees_gps": [ + 47.3894530946, + 0.187822505403 + ], + "libelle_d_acheminement": "GIZEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.187822505403, + 47.3894530946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "651e3e22285b1caf8788b762c996a81067a52381", + "fields": { + "code_commune_insee": "28303", + "nom_de_la_commune": "POUPRY", + "code_postal": "28140", + "coordonnees_gps": [ + 48.0996466123, + 1.83298152372 + ], + "libelle_d_acheminement": "POUPRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83298152372, + 48.0996466123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4e60e6d87f76b4d0a00bfa9490f0418810659fd", + "fields": { + "code_commune_insee": "37115", + "nom_de_la_commune": "DESCARTES", + "code_postal": "37160", + "coordonnees_gps": [ + 46.9943964229, + 0.696948012849 + ], + "libelle_d_acheminement": "DESCARTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696948012849, + 46.9943964229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "690a329b181028a8cec72e593a8a3fc936e1c4e8", + "fields": { + "code_commune_insee": "28304", + "nom_de_la_commune": "PRASVILLE", + "code_postal": "28150", + "coordonnees_gps": [ + 48.2738416281, + 1.71166561057 + ], + "libelle_d_acheminement": "PRASVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71166561057, + 48.2738416281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adbd471c7ab79d300038a224e0a213fc5e92418e", + "fields": { + "code_commune_insee": "37117", + "nom_de_la_commune": "HOMMES", + "code_postal": "37340", + "coordonnees_gps": [ + 47.4233057028, + 0.283302137982 + ], + "libelle_d_acheminement": "HOMMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.283302137982, + 47.4233057028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c671f75029eb6cd548d2e3ad9071c4d3963fb4e0", + "fields": { + "code_commune_insee": "28308", + "nom_de_la_commune": "PRUDEMANCHE", + "code_postal": "28270", + "coordonnees_gps": [ + 48.7214056667, + 1.13416780653 + ], + "libelle_d_acheminement": "PRUDEMANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13416780653, + 48.7214056667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba1ae6e95387bbd5c19f141976e0bdd235c221b7", + "fields": { + "code_commune_insee": "37125", + "nom_de_la_commune": "LEMERE", + "code_postal": "37120", + "coordonnees_gps": [ + 47.0937316918, + 0.334993321235 + ], + "libelle_d_acheminement": "LEMERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.334993321235, + 47.0937316918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b635f41443abc629002294b6e83c8ad143d1dee3", + "fields": { + "code_commune_insee": "28309", + "nom_de_la_commune": "PRUNAY LE GILLON", + "code_postal": "28360", + "coordonnees_gps": [ + 48.3665143772, + 1.63539609302 + ], + "libelle_d_acheminement": "PRUNAY LE GILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63539609302, + 48.3665143772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43c16be919c65ae6f7e4ada0f86002c4e4a47fad", + "fields": { + "code_commune_insee": "37132", + "nom_de_la_commune": "LOCHES", + "code_postal": "37600", + "coordonnees_gps": [ + 47.1201464232, + 0.97415185088 + ], + "libelle_d_acheminement": "LOCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97415185088, + 47.1201464232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08fcdca6a880036553699f1517faf1a7b2897c7c", + "fields": { + "code_commune_insee": "28317", + "nom_de_la_commune": "ROINVILLE", + "code_postal": "28700", + "coordonnees_gps": [ + 48.4427044137, + 1.7567393005 + ], + "libelle_d_acheminement": "ROINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7567393005, + 48.4427044137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b8d4b75cc700fd5bd4409d9f8440d9f2bbebba3", + "fields": { + "code_commune_insee": "37133", + "nom_de_la_commune": "LOCHE SUR INDROIS", + "code_postal": "37460", + "coordonnees_gps": [ + 47.0839468716, + 1.20363593791 + ], + "libelle_d_acheminement": "LOCHE SUR INDROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20363593791, + 47.0839468716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e679c56484ca1394194b860a2acd9fcd7ec3f4f", + "fields": { + "code_commune_insee": "28319", + "nom_de_la_commune": "ROUVRAY ST DENIS", + "code_postal": "28310", + "coordonnees_gps": [ + 48.2770955308, + 1.94270719107 + ], + "libelle_d_acheminement": "ROUVRAY ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94270719107, + 48.2770955308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d76908e0c6299c919c979874dfc82e6555000cf2", + "fields": { + "code_commune_insee": "37142", + "nom_de_la_commune": "MAILLE", + "code_postal": "37800", + "coordonnees_gps": [ + 47.0514867017, + 0.587132519839 + ], + "libelle_d_acheminement": "MAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.587132519839, + 47.0514867017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c52c838bbe05fc1e8b7620794d32713fc38714a8", + "fields": { + "code_commune_insee": "28322", + "nom_de_la_commune": "RUEIL LA GADELIERE", + "code_postal": "28270", + "coordonnees_gps": [ + 48.7045261989, + 0.963451451882 + ], + "libelle_d_acheminement": "RUEIL LA GADELIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.963451451882, + 48.7045261989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a9fc8a158e99c2487b0f3319b4c93f968c6b357", + "fields": { + "code_commune_insee": "37145", + "nom_de_la_commune": "MARCE SUR ESVES", + "code_postal": "37160", + "coordonnees_gps": [ + 47.0305269249, + 0.659737945823 + ], + "libelle_d_acheminement": "MARCE SUR ESVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659737945823, + 47.0305269249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b52dacefbf9f0352002e4ae8b50c406daa438b5a", + "fields": { + "code_commune_insee": "28324", + "nom_de_la_commune": "ST ARNOULT DES BOIS", + "code_postal": "28190", + "coordonnees_gps": [ + 48.4933065448, + 1.25476022855 + ], + "libelle_d_acheminement": "ST ARNOULT DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25476022855, + 48.4933065448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40b7a52b77cf13ee6ebe46c6f8983ded28ae8e50", + "fields": { + "code_commune_insee": "37149", + "nom_de_la_commune": "MARRAY", + "code_postal": "37370", + "coordonnees_gps": [ + 47.6239178814, + 0.703746317881 + ], + "libelle_d_acheminement": "MARRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.703746317881, + 47.6239178814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ffeb58feceb3ca400e9b5c8f1076e026766d1ff", + "fields": { + "code_commune_insee": "28326", + "nom_de_la_commune": "ST AVIT LES GUESPIERES", + "code_postal": "28120", + "coordonnees_gps": [ + 48.2684999269, + 1.2627628625 + ], + "libelle_d_acheminement": "ST AVIT LES GUESPIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2627628625, + 48.2684999269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06fabe47c9f4851cda066279c7b4fe033a590c89", + "fields": { + "code_commune_insee": "37158", + "nom_de_la_commune": "MONTREUIL EN TOURAINE", + "code_postal": "37530", + "coordonnees_gps": [ + 47.4879968822, + 0.95212009209 + ], + "libelle_d_acheminement": "MONTREUIL EN TOURAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95212009209, + 47.4879968822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dea1d98fc3324733abc673dffd55ba00e4abfac7", + "fields": { + "code_commune_insee": "28329", + "nom_de_la_commune": "ST CHRISTOPHE", + "code_postal": "28200", + "coordonnees_gps": [ + 48.1319981863, + 1.36945668729 + ], + "libelle_d_acheminement": "ST CHRISTOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36945668729, + 48.1319981863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a84bb9d43fd57f1dbb5ed8e356eee01be49900a7", + "fields": { + "code_commune_insee": "37171", + "nom_de_la_commune": "NOIZAY", + "code_postal": "37210", + "coordonnees_gps": [ + 47.4169793507, + 0.897184990068 + ], + "libelle_d_acheminement": "NOIZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.897184990068, + 47.4169793507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f0bb5e381037e4cdbaf5e7816d7e84c65283022", + "fields": { + "ligne_5": "CIVRY", + "code_commune_insee": "28330", + "libelle_d_acheminement": "VILLEMAURY", + "code_postal": "28200", + "nom_de_la_commune": "VILLEMAURY", + "coordonnees_gps": [ + 48.0457576548, + 1.46955748581 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46955748581, + 48.0457576548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16dc42e95bb9fd714c5227a2c04122fa67eac944", + "fields": { + "code_commune_insee": "37172", + "nom_de_la_commune": "NOTRE DAME D OE", + "code_postal": "37390", + "coordonnees_gps": [ + 47.4541825862, + 0.709247164919 + ], + "libelle_d_acheminement": "NOTRE DAME D OE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.709247164919, + 47.4541825862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d812fb9386547eb9f3e08e8f9911a845dfaad449", + "fields": { + "code_commune_insee": "28335", + "nom_de_la_commune": "ST ELIPH", + "code_postal": "28240", + "coordonnees_gps": [ + 48.4496890449, + 1.03615954859 + ], + "libelle_d_acheminement": "ST ELIPH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03615954859, + 48.4496890449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9d5409262ef338b8f95f18a3b85c1c1decbd66a", + "fields": { + "code_commune_insee": "37187", + "nom_de_la_commune": "PORTS SUR VIENNE", + "code_postal": "37800", + "coordonnees_gps": [ + 47.0141782746, + 0.538082911824 + ], + "libelle_d_acheminement": "PORTS SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.538082911824, + 47.0141782746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed7c19c924c16cec6a0ad13472e051820644a272", + "fields": { + "code_commune_insee": "28341", + "nom_de_la_commune": "ST JEAN DE REBERVILLIERS", + "code_postal": "28170", + "coordonnees_gps": [ + 48.6233222274, + 1.25762655972 + ], + "libelle_d_acheminement": "ST JEAN DE REBERVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25762655972, + 48.6233222274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21fc37dd5fa6f908f3ed6df3f92da5cc1325aba5", + "fields": { + "code_commune_insee": "37189", + "nom_de_la_commune": "PREUILLY SUR CLAISE", + "code_postal": "37290", + "coordonnees_gps": [ + 46.8500029976, + 0.930585707169 + ], + "libelle_d_acheminement": "PREUILLY SUR CLAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.930585707169, + 46.8500029976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62f0f3de024c4d898ead275cba1eb6c4d3bd55de", + "fields": { + "code_commune_insee": "28348", + "nom_de_la_commune": "ST LUBIN DES JONCHERETS", + "code_postal": "28350", + "coordonnees_gps": [ + 48.7509228383, + 1.18734034626 + ], + "libelle_d_acheminement": "ST LUBIN DES JONCHERETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18734034626, + 48.7509228383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15218b7d0c0eb8e9576e54b80cb0799fa7a7f594", + "fields": { + "code_commune_insee": "37192", + "nom_de_la_commune": "REIGNAC SUR INDRE", + "code_postal": "37310", + "coordonnees_gps": [ + 47.2227739628, + 0.916489887764 + ], + "libelle_d_acheminement": "REIGNAC SUR INDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.916489887764, + 47.2227739628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23374dfc9ae1893c494cc492d2cb83b8315b2c85", + "fields": { + "code_commune_insee": "28352", + "nom_de_la_commune": "ST MARTIN DE NIGELLES", + "code_postal": "28130", + "coordonnees_gps": [ + 48.6131566659, + 1.6140648391 + ], + "libelle_d_acheminement": "ST MARTIN DE NIGELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6140648391, + 48.6131566659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "843076eaf94dcd619834d0f705b3c7b0b3aca856", + "fields": { + "code_commune_insee": "37195", + "nom_de_la_commune": "LA RICHE", + "code_postal": "37520", + "coordonnees_gps": [ + 47.3812692668, + 0.637590445417 + ], + "libelle_d_acheminement": "LA RICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.637590445417, + 47.3812692668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2106ae6746939ac92c48eadd2ac8e525931b3a1", + "fields": { + "code_commune_insee": "28359", + "nom_de_la_commune": "ST REMY SUR AVRE", + "code_postal": "28380", + "coordonnees_gps": [ + 48.7491986422, + 1.23713784044 + ], + "libelle_d_acheminement": "ST REMY SUR AVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23713784044, + 48.7491986422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4a09446b8f413c53e248a3331d0fb59ee5079d5", + "fields": { + "code_commune_insee": "37204", + "nom_de_la_commune": "ROUZIERS DE TOURAINE", + "code_postal": "37360", + "coordonnees_gps": [ + 47.5311263676, + 0.647449146554 + ], + "libelle_d_acheminement": "ROUZIERS DE TOURAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.647449146554, + 47.5311263676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8c22138a7e9d3cd2e52ba8d9436b7d66a6f5467", + "fields": { + "code_commune_insee": "28360", + "nom_de_la_commune": "ST SAUVEUR MARVILLE", + "code_postal": "28170", + "coordonnees_gps": [ + 48.6047259778, + 1.2856796289 + ], + "libelle_d_acheminement": "ST SAUVEUR MARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2856796289, + 48.6047259778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f306428b48319802cbfe237ff2aaf9ce910e4d40", + "fields": { + "code_commune_insee": "37210", + "nom_de_la_commune": "ST BENOIT LA FORET", + "code_postal": "37500", + "coordonnees_gps": [ + 47.2128964711, + 0.321999441383 + ], + "libelle_d_acheminement": "ST BENOIT LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.321999441383, + 47.2128964711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c97a9012009f6d18a114f1fa50a6129613405d54", + "fields": { + "code_commune_insee": "28366", + "nom_de_la_commune": "SANTEUIL", + "code_postal": "28700", + "coordonnees_gps": [ + 48.3828802713, + 1.7401363101 + ], + "libelle_d_acheminement": "SANTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7401363101, + 48.3828802713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de89549443e5cbed3536a15d9265eb7ce27ec8b4", + "fields": { + "code_commune_insee": "37213", + "nom_de_la_commune": "ST CHRISTOPHE SUR LE NAIS", + "code_postal": "37370", + "coordonnees_gps": [ + 47.6235750307, + 0.473186358315 + ], + "libelle_d_acheminement": "ST CHRISTOPHE SUR LE NAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.473186358315, + 47.6235750307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b5b7fdbbcac1119f45dc030f991173dfadd701a", + "fields": { + "code_commune_insee": "28367", + "nom_de_la_commune": "SANTILLY", + "code_postal": "28310", + "coordonnees_gps": [ + 48.1486900011, + 1.87957339759 + ], + "libelle_d_acheminement": "SANTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87957339759, + 48.1486900011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce47f2cb1b3acb94bbf2a53ababcbabbcb9eb136", + "fields": { + "code_commune_insee": "37234", + "nom_de_la_commune": "ST QUENTIN SUR INDROIS", + "code_postal": "37310", + "coordonnees_gps": [ + 47.2088575557, + 1.03674729969 + ], + "libelle_d_acheminement": "ST QUENTIN SUR INDROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03674729969, + 47.2088575557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f58de0fb3f35bdffa9c762f3923c75bb3f389e86", + "fields": { + "code_commune_insee": "28369", + "nom_de_la_commune": "SAULNIERES", + "code_postal": "28500", + "coordonnees_gps": [ + 48.6650549297, + 1.26632253638 + ], + "libelle_d_acheminement": "SAULNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26632253638, + 48.6650549297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ef2ce317fd88684ccfc15fb9b2c5a0deb879bfe", + "fields": { + "code_commune_insee": "37261", + "nom_de_la_commune": "TOURS", + "code_postal": "37100", + "coordonnees_gps": [ + 47.3986382281, + 0.696526376417 + ], + "libelle_d_acheminement": "TOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696526376417, + 47.3986382281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b184884d88fa6580be873f4dc7b02b7296895f7f", + "fields": { + "code_commune_insee": "28378", + "nom_de_la_commune": "SOUANCE AU PERCHE", + "code_postal": "28400", + "coordonnees_gps": [ + 48.2707984058, + 0.834784803134 + ], + "libelle_d_acheminement": "SOUANCE AU PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.834784803134, + 48.2707984058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96a3f59ae9a4bcfa0e19a1848dfbbf0f0a4f4e4d", + "fields": { + "code_commune_insee": "37262", + "nom_de_la_commune": "TROGUES", + "code_postal": "37220", + "coordonnees_gps": [ + 47.111278976, + 0.511032879391 + ], + "libelle_d_acheminement": "TROGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.511032879391, + 47.111278976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "066ade2fabc7c94d9d25f09658ddf404733ae181", + "fields": { + "ligne_5": "GATELLES", + "code_commune_insee": "28386", + "libelle_d_acheminement": "THIMERT GATELLES", + "code_postal": "28170", + "nom_de_la_commune": "THIMERT GATELLES", + "coordonnees_gps": [ + 48.55496534, + 1.26206894057 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26206894057, + 48.55496534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aa04b8755b2eef7564da4d41d7c7e28e68a1ffc", + "fields": { + "code_commune_insee": "37267", + "nom_de_la_commune": "VERETZ", + "code_postal": "37270", + "coordonnees_gps": [ + 47.3522450777, + 0.810254495994 + ], + "libelle_d_acheminement": "VERETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.810254495994, + 47.3522450777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9876dd4bf01fba75c5c4bffcb8496d054c5eac31", + "fields": { + "ligne_5": "ECUBLE", + "code_commune_insee": "28393", + "libelle_d_acheminement": "TREMBLAY LES VILLAGES", + "code_postal": "28170", + "nom_de_la_commune": "TREMBLAY LES VILLAGES", + "coordonnees_gps": [ + 48.5881626072, + 1.36867843258 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36867843258, + 48.5881626072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe54d7025a1d709ac975483d86f0f282528a49b4", + "fields": { + "code_commune_insee": "37270", + "nom_de_la_commune": "VERNOU SUR BRENNE", + "code_postal": "37210", + "coordonnees_gps": [ + 47.4364709418, + 0.840522961701 + ], + "libelle_d_acheminement": "VERNOU SUR BRENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.840522961701, + 47.4364709418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c2a12cf198be0309f1052e43542eb7d75851133", + "fields": { + "code_commune_insee": "28396", + "nom_de_la_commune": "TRIZAY LES BONNEVAL", + "code_postal": "28800", + "coordonnees_gps": [ + 48.1997904547, + 1.33237948177 + ], + "libelle_d_acheminement": "TRIZAY LES BONNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33237948177, + 48.1997904547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acbac17a6a2bbb82115ebcc90634bee83582346f", + "fields": { + "code_commune_insee": "37277", + "nom_de_la_commune": "VILLELOIN COULANGE", + "code_postal": "37460", + "coordonnees_gps": [ + 47.1350642786, + 1.23619125838 + ], + "libelle_d_acheminement": "VILLELOIN COULANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23619125838, + 47.1350642786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03cb39352cd14b6ed1ce69cce6b8bb2c41b86447", + "fields": { + "code_commune_insee": "28401", + "nom_de_la_commune": "VAUPILLON", + "code_postal": "28240", + "coordonnees_gps": [ + 48.4601431127, + 0.969676262145 + ], + "libelle_d_acheminement": "VAUPILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.969676262145, + 48.4601431127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbc9a9bd8507ae403cf3577f159e5191aef75dbe", + "fields": { + "code_commune_insee": "37282", + "nom_de_la_commune": "YZEURES SUR CREUSE", + "code_postal": "37290", + "coordonnees_gps": [ + 46.7902872236, + 0.876208149129 + ], + "libelle_d_acheminement": "YZEURES SUR CREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.876208149129, + 46.7902872236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c031c9e7e70f005bd23e3e6d11a0e375ce172c00", + "fields": { + "code_commune_insee": "28404", + "nom_de_la_commune": "VERNOUILLET", + "code_postal": "28500", + "coordonnees_gps": [ + 48.7197917196, + 1.35089721897 + ], + "libelle_d_acheminement": "VERNOUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35089721897, + 48.7197917196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a61863e5c322dc6eab2fea810d06b87dbf30e79", + "fields": { + "ligne_5": "LES AVENIERES", + "code_commune_insee": "38022", + "libelle_d_acheminement": "LES AVENIERES VEYRINS THUELLIN", + "code_postal": "38630", + "nom_de_la_commune": "LES AVENIERES VEYRINS THUELLIN", + "coordonnees_gps": [ + 45.6426437379, + 5.56958624007 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56958624007, + 45.6426437379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a6a23b4f2a8ccea90acc494c03a9dcf4a4dc47d", + "fields": { + "ligne_5": "GERMIGNONVILLE", + "code_commune_insee": "28406", + "libelle_d_acheminement": "EOLE EN BEAUCE", + "code_postal": "28140", + "nom_de_la_commune": "EOLE EN BEAUCE", + "coordonnees_gps": [ + 48.2158073726, + 1.69304337817 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69304337817, + 48.2158073726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7175d82cf415a06fd908a48f9b72f794edc4c33", + "fields": { + "code_commune_insee": "38034", + "nom_de_la_commune": "BEAUREPAIRE", + "code_postal": "38270", + "coordonnees_gps": [ + 45.3365279901, + 5.04348562581 + ], + "libelle_d_acheminement": "BEAUREPAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04348562581, + 45.3365279901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0c0a69e2f8af0c910c7cd4d4e72002357262268", + "fields": { + "code_commune_insee": "28410", + "nom_de_la_commune": "VILLAMPUY", + "code_postal": "28200", + "coordonnees_gps": [ + 48.0405392356, + 1.511218856 + ], + "libelle_d_acheminement": "VILLAMPUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.511218856, + 48.0405392356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf94565a72e07990f25869b475ed7c3576488af7", + "fields": { + "code_commune_insee": "38041", + "nom_de_la_commune": "BESSINS", + "code_postal": "38160", + "coordonnees_gps": [ + 45.2046121407, + 5.2638406103 + ], + "libelle_d_acheminement": "BESSINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2638406103, + 45.2046121407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b396728047e7231bb1b2eaea552baac983537e1", + "fields": { + "code_commune_insee": "28419", + "nom_de_la_commune": "VITRAY EN BEAUCE", + "code_postal": "28360", + "coordonnees_gps": [ + 48.276512121, + 1.42369112578 + ], + "libelle_d_acheminement": "VITRAY EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42369112578, + 48.276512121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc2df0530f7354d8b9e528d3ea76ad069924a5f8", + "fields": { + "code_commune_insee": "38047", + "nom_de_la_commune": "BLANDIN", + "code_postal": "38730", + "coordonnees_gps": [ + 45.4796488543, + 5.44663594679 + ], + "libelle_d_acheminement": "BLANDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44663594679, + 45.4796488543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a8ce62334ec062cf255656418375b26885c6bc5", + "fields": { + "ligne_5": "VILLENEUVE ST NICOLAS", + "code_commune_insee": "28422", + "libelle_d_acheminement": "LES VILLAGES VOVEENS", + "code_postal": "28150", + "nom_de_la_commune": "LES VILLAGES VOVEENS", + "coordonnees_gps": [ + 48.269861494, + 1.6311008246 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6311008246, + 48.269861494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c92a71a28201e838560d05499f95cbf4414f118", + "fields": { + "code_commune_insee": "38055", + "nom_de_la_commune": "BRANGUES", + "code_postal": "38510", + "coordonnees_gps": [ + 45.6960928828, + 5.53688016446 + ], + "libelle_d_acheminement": "BRANGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53688016446, + 45.6960928828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1284c128a9e1546024fa9a0009306fb191bfe59", + "fields": { + "code_commune_insee": "28423", + "nom_de_la_commune": "YERMENONVILLE", + "code_postal": "28130", + "coordonnees_gps": [ + 48.5487143528, + 1.62251535797 + ], + "libelle_d_acheminement": "YERMENONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62251535797, + 48.5487143528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b21dbefa4f3a602063238f9010b9bdbe26ab492", + "fields": { + "code_commune_insee": "38059", + "nom_de_la_commune": "BRIE ET ANGONNES", + "code_postal": "38320", + "coordonnees_gps": [ + 45.1234335157, + 5.77865185697 + ], + "libelle_d_acheminement": "BRIE ET ANGONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77865185697, + 45.1234335157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efe1c686dd8035a71b8df33937b50db5c47dcffe", + "fields": { + "code_commune_insee": "28424", + "nom_de_la_commune": "YEVRES", + "code_postal": "28160", + "coordonnees_gps": [ + 48.1911088268, + 1.1911717339 + ], + "libelle_d_acheminement": "YEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1911717339, + 48.1911088268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af7f290852c393511c618205b94792d2b8483482", + "fields": { + "code_commune_insee": "38064", + "nom_de_la_commune": "CESSIEU", + "code_postal": "38110", + "coordonnees_gps": [ + 45.5689096926, + 5.3761675679 + ], + "libelle_d_acheminement": "CESSIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3761675679, + 45.5689096926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d5c8d5b5ab15e76a8b559db6a3a3cd499ccbe9e", + "fields": { + "code_commune_insee": "29002", + "nom_de_la_commune": "ARZANO", + "code_postal": "29300", + "coordonnees_gps": [ + 47.8927527459, + -3.44326646496 + ], + "libelle_d_acheminement": "ARZANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.44326646496, + 47.8927527459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35b2bb96888748c6019acdbf80cd585df0a66845", + "fields": { + "code_commune_insee": "38071", + "nom_de_la_commune": "CHAMP SUR DRAC", + "code_postal": "38560", + "coordonnees_gps": [ + 45.0692413973, + 5.72756303185 + ], + "libelle_d_acheminement": "CHAMP SUR DRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72756303185, + 45.0692413973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6664eb80fa687996b324c63a0d56100f72e881c2", + "fields": { + "code_commune_insee": "29005", + "nom_de_la_commune": "BAYE", + "code_postal": "29300", + "coordonnees_gps": [ + 47.8554611987, + -3.61273705722 + ], + "libelle_d_acheminement": "BAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.61273705722, + 47.8554611987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1a1b7ee874cfe57fb684480e7870e8bf1a27db8", + "fields": { + "code_commune_insee": "38072", + "nom_de_la_commune": "CHANAS", + "code_postal": "38150", + "coordonnees_gps": [ + 45.3178362934, + 4.83092383064 + ], + "libelle_d_acheminement": "CHANAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83092383064, + 45.3178362934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17d07bd2fef080b6100f692b8aad1c47c80b9976", + "fields": { + "code_commune_insee": "29011", + "nom_de_la_commune": "BOHARS", + "code_postal": "29820", + "coordonnees_gps": [ + 48.4318157776, + -4.52163441138 + ], + "libelle_d_acheminement": "BOHARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.52163441138, + 48.4318157776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34c42f08f2815d587df2d4872ff446457f41e313", + "fields": { + "code_commune_insee": "38077", + "nom_de_la_commune": "LA CHAPELLE DE SURIEU", + "code_postal": "38150", + "coordonnees_gps": [ + 45.3944898603, + 4.9163173069 + ], + "libelle_d_acheminement": "LA CHAPELLE DE SURIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9163173069, + 45.3944898603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "897012f9baabb1a047082447c482c8da151ad0ee", + "fields": { + "code_commune_insee": "29019", + "nom_de_la_commune": "BREST", + "code_postal": "29200", + "coordonnees_gps": [ + 48.4004997828, + -4.5027907853 + ], + "libelle_d_acheminement": "BREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.5027907853, + 48.4004997828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "761395d91e85d958784d0f260dd01737f296d42b", + "fields": { + "code_commune_insee": "38084", + "nom_de_la_commune": "CHARNECLES", + "code_postal": "38140", + "coordonnees_gps": [ + 45.3423976098, + 5.52675118378 + ], + "libelle_d_acheminement": "CHARNECLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52675118378, + 45.3423976098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dbe5c1af885b40410cd1ce30e29a8efa3cb3800", + "fields": { + "code_commune_insee": "29022", + "nom_de_la_commune": "CAMARET SUR MER", + "code_postal": "29570", + "coordonnees_gps": [ + 48.2683595403, + -4.58763072295 + ], + "libelle_d_acheminement": "CAMARET SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.58763072295, + 48.2683595403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b253d501a433ff26e4fc7babee9f268428ed6db5", + "fields": { + "code_commune_insee": "38089", + "nom_de_la_commune": "CHASSIGNIEU", + "code_postal": "38730", + "coordonnees_gps": [ + 45.501095883, + 5.51287218858 + ], + "libelle_d_acheminement": "CHASSIGNIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51287218858, + 45.501095883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45848fd0d52f192d530d3256e5b4569ba59049bb", + "fields": { + "code_commune_insee": "29026", + "nom_de_la_commune": "CHATEAULIN", + "code_postal": "29150", + "coordonnees_gps": [ + 48.2032973995, + -4.07350636234 + ], + "libelle_d_acheminement": "CHATEAULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07350636234, + 48.2032973995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a517bd76695bc0a40dc56389f90dbd510f878b43", + "fields": { + "code_commune_insee": "38094", + "nom_de_la_commune": "CHATONNAY", + "code_postal": "38440", + "coordonnees_gps": [ + 45.4770417686, + 5.22225829688 + ], + "libelle_d_acheminement": "CHATONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22225829688, + 45.4770417686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a023070484a5f0065ff6542dc47658dcd5e0b0d", + "fields": { + "code_commune_insee": "29034", + "nom_de_la_commune": "LE CLOITRE ST THEGONNEC", + "code_postal": "29410", + "coordonnees_gps": [ + 48.4598098914, + -3.79230371205 + ], + "libelle_d_acheminement": "LE CLOITRE ST THEGONNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.79230371205, + 48.4598098914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58ca32478936aecfa556fa1d869ea5a655d1ae34", + "fields": { + "code_commune_insee": "38097", + "nom_de_la_commune": "CHAVANOZ", + "code_postal": "38230", + "coordonnees_gps": [ + 45.7688834941, + 5.17259586722 + ], + "libelle_d_acheminement": "CHAVANOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17259586722, + 45.7688834941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9b08bf925d2dc6579be78031036f72220ae1fc2", + "fields": { + "code_commune_insee": "29037", + "nom_de_la_commune": "COMBRIT", + "code_postal": "29120", + "coordonnees_gps": [ + 47.8868597702, + -4.16414997559 + ], + "libelle_d_acheminement": "COMBRIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.16414997559, + 47.8868597702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22b1deea4a103d245c539a6d87208f8b0b1266a3", + "fields": { + "code_commune_insee": "38098", + "nom_de_la_commune": "CHELIEU", + "code_postal": "38730", + "coordonnees_gps": [ + 45.5077827268, + 5.48032836102 + ], + "libelle_d_acheminement": "CHELIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48032836102, + 45.5077827268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5e487ef5188f699bcdc29307eb24c569857067d", + "fields": { + "code_commune_insee": "29051", + "nom_de_la_commune": "ERGUE GABERIC", + "code_postal": "29500", + "coordonnees_gps": [ + 48.0120306692, + -4.0074505723 + ], + "libelle_d_acheminement": "ERGUE GABERIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.0074505723, + 48.0120306692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82c8bbf89325ceab2b5269dae14b4c91afefa6f4", + "fields": { + "code_commune_insee": "38107", + "nom_de_la_commune": "CHONAS L AMBALLAN", + "code_postal": "38121", + "coordonnees_gps": [ + 45.464474261, + 4.80291707656 + ], + "libelle_d_acheminement": "CHONAS L AMBALLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80291707656, + 45.464474261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17eee62f48acd7bf339423ebd1ba11091682fd3d", + "fields": { + "code_commune_insee": "29054", + "nom_de_la_commune": "LA FEUILLEE", + "code_postal": "29690", + "coordonnees_gps": [ + 48.391234337, + -3.85236345367 + ], + "libelle_d_acheminement": "LA FEUILLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.85236345367, + 48.391234337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6283e8e4d2ae6c3d02ec8f23f1054fdf0c2894b", + "fields": { + "code_commune_insee": "38112", + "nom_de_la_commune": "CLAVANS EN HAUT OISANS", + "code_postal": "38142", + "coordonnees_gps": [ + 45.1175117933, + 6.16207850111 + ], + "libelle_d_acheminement": "CLAVANS EN HAUT OISANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16207850111, + 45.1175117933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1e485d887cc5524dfde1f60ce440f171a70c4e4", + "fields": { + "code_commune_insee": "29059", + "nom_de_la_commune": "GARLAN", + "code_postal": "29610", + "coordonnees_gps": [ + 48.6042377038, + -3.766678483 + ], + "libelle_d_acheminement": "GARLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.766678483, + 48.6042377038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acf0466c333038631015b7dd8036db8892018b41", + "fields": { + "code_commune_insee": "38118", + "nom_de_la_commune": "COLOMBE", + "code_postal": "38690", + "coordonnees_gps": [ + 45.3941269048, + 5.4492922949 + ], + "libelle_d_acheminement": "COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4492922949, + 45.3941269048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b6529f69238434b71df2f9344eb3bf198e1de14", + "fields": { + "code_commune_insee": "29065", + "nom_de_la_commune": "GOURLIZON", + "code_postal": "29710", + "coordonnees_gps": [ + 48.0256773072, + -4.2699574074 + ], + "libelle_d_acheminement": "GOURLIZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.2699574074, + 48.0256773072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30a157b56229ea2df809d6c03d1cb8b94134dd54", + "fields": { + "code_commune_insee": "38120", + "nom_de_la_commune": "LA COMBE DE LANCEY", + "code_postal": "38190", + "coordonnees_gps": [ + 45.1978039012, + 5.91875544895 + ], + "libelle_d_acheminement": "LA COMBE DE LANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91875544895, + 45.1978039012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ace557b1902e0e5d7fecf1cb9117e48793b3cf9d", + "fields": { + "code_commune_insee": "29066", + "nom_de_la_commune": "GUENGAT", + "code_postal": "29180", + "coordonnees_gps": [ + 48.0409767863, + -4.19583398149 + ], + "libelle_d_acheminement": "GUENGAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.19583398149, + 48.0409767863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "852bee06efe129493f3f911bc798eb9fd44c4d83", + "fields": { + "code_commune_insee": "38124", + "nom_de_la_commune": "CORBELIN", + "code_postal": "38630", + "coordonnees_gps": [ + 45.6024192088, + 5.55271499318 + ], + "libelle_d_acheminement": "CORBELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55271499318, + 45.6024192088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86b14543a9c0d9d7156cb6c4c85538b0b9e53d62", + "fields": { + "code_commune_insee": "29073", + "nom_de_la_commune": "GUIMAEC", + "code_postal": "29620", + "coordonnees_gps": [ + 48.6787759026, + -3.7057088823 + ], + "libelle_d_acheminement": "GUIMAEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.7057088823, + 48.6787759026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9172f0efd559dc975be1551eb8822bb17000036f", + "fields": { + "code_commune_insee": "38126", + "nom_de_la_commune": "CORENC", + "code_postal": "38700", + "coordonnees_gps": [ + 45.2267664587, + 5.75814470454 + ], + "libelle_d_acheminement": "CORENC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75814470454, + 45.2267664587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a11aef816dc856c7608082f3ba0444fca3a156e", + "fields": { + "code_commune_insee": "29075", + "nom_de_la_commune": "GUIPAVAS", + "code_postal": "29490", + "coordonnees_gps": [ + 48.4307008294, + -4.39621450084 + ], + "libelle_d_acheminement": "GUIPAVAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.39621450084, + 48.4307008294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ff14ef8c6430a8c9481eae290c573d8b4734041", + "fields": { + "code_commune_insee": "38136", + "nom_de_la_commune": "CRACHIER", + "code_postal": "38300", + "coordonnees_gps": [ + 45.546295569, + 5.22002027978 + ], + "libelle_d_acheminement": "CRACHIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22002027978, + 45.546295569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "160e17fc987d5e162e9c7fd5bf1a79a76665279f", + "fields": { + "ligne_5": "MILIZAC", + "code_commune_insee": "29076", + "libelle_d_acheminement": "MILIZAC GUIPRONVEL", + "code_postal": "29290", + "nom_de_la_commune": "MILIZAC GUIPRONVEL", + "coordonnees_gps": [ + 48.4913026079, + -4.56960723712 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.56960723712, + 48.4913026079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1d3205a9536822e271132dbb7578620de5951e2", + "fields": { + "code_commune_insee": "38141", + "nom_de_la_commune": "CULIN", + "code_postal": "38300", + "coordonnees_gps": [ + 45.5238182422, + 5.24556322676 + ], + "libelle_d_acheminement": "CULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24556322676, + 45.5238182422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2c6be77ae6fd9b492e4e34add702ea1a441f303", + "fields": { + "code_commune_insee": "29093", + "nom_de_la_commune": "KERNILIS", + "code_postal": "29260", + "coordonnees_gps": [ + 48.5750998545, + -4.41083287138 + ], + "libelle_d_acheminement": "KERNILIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.41083287138, + 48.5750998545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4b6e1e28a0a45e36090ab401d28010e3b268f36", + "fields": { + "code_commune_insee": "38144", + "nom_de_la_commune": "DIEMOZ", + "code_postal": "38790", + "coordonnees_gps": [ + 45.5886339429, + 5.08869481653 + ], + "libelle_d_acheminement": "DIEMOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08869481653, + 45.5886339429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e0fe2d1bda437a04c8c07a9d7feb7cc80dc7f22", + "fields": { + "code_commune_insee": "29094", + "nom_de_la_commune": "KERNOUES", + "code_postal": "29260", + "coordonnees_gps": [ + 48.5939427293, + -4.34472609199 + ], + "libelle_d_acheminement": "KERNOUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.34472609199, + 48.5939427293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58a9447183f183c11022a7284177348078612dda", + "fields": { + "code_commune_insee": "38149", + "nom_de_la_commune": "DOMARIN", + "code_postal": "38300", + "coordonnees_gps": [ + 45.581670022, + 5.24542934804 + ], + "libelle_d_acheminement": "DOMARIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24542934804, + 45.581670022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0808903a5600ae9cb72424a9c84bb75d38a31b0", + "fields": { + "ligne_5": "ABERWRACH", + "code_commune_insee": "29101", + "libelle_d_acheminement": "LANDEDA", + "code_postal": "29870", + "nom_de_la_commune": "LANDEDA", + "coordonnees_gps": [ + 48.5889449364, + -4.57696807959 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.57696807959, + 48.5889449364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acae376ca0a881d928a1a5e28dab4d191ae965e7", + "fields": { + "ligne_5": "LA FERRIERE", + "code_commune_insee": "38163", + "libelle_d_acheminement": "LE HAUT BREDA", + "code_postal": "38580", + "nom_de_la_commune": "LE HAUT BREDA", + "coordonnees_gps": [ + 45.2788909914, + 6.08520247302 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08520247302, + 45.2788909914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c281533befccbc49fe2c65cbf8413ead9d623d90", + "fields": { + "code_commune_insee": "29103", + "nom_de_la_commune": "LANDERNEAU", + "code_postal": "29800", + "coordonnees_gps": [ + 48.4507528968, + -4.2643453824 + ], + "libelle_d_acheminement": "LANDERNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.2643453824, + 48.4507528968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cf06a45a72fd0acdee1f38dd4b94de339939163", + "fields": { + "ligne_5": "LE PLEYNET", + "code_commune_insee": "38163", + "libelle_d_acheminement": "LE HAUT BREDA", + "code_postal": "38580", + "nom_de_la_commune": "LE HAUT BREDA", + "coordonnees_gps": [ + 45.2788909914, + 6.08520247302 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08520247302, + 45.2788909914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b2aa7bd83140ad98f9b9d75301c987fdbc2fb7e", + "fields": { + "code_commune_insee": "29108", + "nom_de_la_commune": "LANDUDEC", + "code_postal": "29710", + "coordonnees_gps": [ + 47.995931967, + -4.32763243057 + ], + "libelle_d_acheminement": "LANDUDEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.32763243057, + 47.995931967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdf92c718091bca49daba6b0d6765682b9d16284", + "fields": { + "code_commune_insee": "38173", + "nom_de_la_commune": "LE FRENEY D OISANS", + "code_postal": "38142", + "coordonnees_gps": [ + 45.0782566577, + 6.12240202229 + ], + "libelle_d_acheminement": "LE FRENEY D OISANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12240202229, + 45.0782566577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "133b7a43b7aa2f238d5900f810da25174054ec9d", + "fields": { + "code_commune_insee": "29120", + "nom_de_la_commune": "LANVEOC", + "code_postal": "29160", + "coordonnees_gps": [ + 48.275777582, + -4.44432214727 + ], + "libelle_d_acheminement": "LANVEOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.44432214727, + 48.275777582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23cfa25236ae55f5bf33176c7922e7d85de7466e", + "fields": { + "code_commune_insee": "38175", + "nom_de_la_commune": "FROGES", + "code_postal": "38190", + "coordonnees_gps": [ + 45.2651956551, + 5.92632272539 + ], + "libelle_d_acheminement": "FROGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92632272539, + 45.2651956551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e59926323535ed658bac579d3352040d11dd5d9", + "fields": { + "code_commune_insee": "29126", + "nom_de_la_commune": "LOC BREVALAIRE", + "code_postal": "29260", + "coordonnees_gps": [ + 48.5541583182, + -4.40680890796 + ], + "libelle_d_acheminement": "LOC BREVALAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.40680890796, + 48.5541583182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c48845ee1e527bca9900b8de193bb6069ab61574", + "fields": { + "code_commune_insee": "38176", + "nom_de_la_commune": "FRONTONAS", + "code_postal": "38290", + "coordonnees_gps": [ + 45.6511615964, + 5.18582056366 + ], + "libelle_d_acheminement": "FRONTONAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18582056366, + 45.6511615964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cd24ac2cc821b783a54560895d0d13e618dc5d3", + "fields": { + "code_commune_insee": "29140", + "nom_de_la_commune": "LOPERHET", + "code_postal": "29470", + "coordonnees_gps": [ + 48.3840209584, + -4.31381265183 + ], + "libelle_d_acheminement": "LOPERHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.31381265183, + 48.3840209584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03661a4e6ac5c74ba7ed44cca1ab2035054770ca", + "fields": { + "code_commune_insee": "38194", + "nom_de_la_commune": "IZEAUX", + "code_postal": "38140", + "coordonnees_gps": [ + 45.3435240269, + 5.4297566361 + ], + "libelle_d_acheminement": "IZEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4297566361, + 45.3435240269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4bb759797ce4a0e26e24388aa65b4465c51c9d1", + "fields": { + "code_commune_insee": "29153", + "nom_de_la_commune": "NEVEZ", + "code_postal": "29920", + "coordonnees_gps": [ + 47.8154082656, + -3.77625131302 + ], + "libelle_d_acheminement": "NEVEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.77625131302, + 47.8154082656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d51e12bea97340deb419ed37c062f9c787161e5e", + "fields": { + "code_commune_insee": "38204", + "nom_de_la_commune": "LALLEY", + "code_postal": "38930", + "coordonnees_gps": [ + 44.74656983, + 5.68463742085 + ], + "libelle_d_acheminement": "LALLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68463742085, + 44.74656983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed06173f6b0c89beff1d8513413c2bf308603038", + "fields": { + "code_commune_insee": "29161", + "nom_de_la_commune": "PLEUVEN", + "code_postal": "29170", + "coordonnees_gps": [ + 47.9151360356, + -4.04624585302 + ], + "libelle_d_acheminement": "PLEUVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.04624585302, + 47.9151360356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7548a3d1192cd41bc619244363dc8069a3654708", + "fields": { + "code_commune_insee": "38207", + "nom_de_la_commune": "LAVALDENS", + "code_postal": "38350", + "coordonnees_gps": [ + 44.9921098746, + 5.90329398345 + ], + "libelle_d_acheminement": "LAVALDENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90329398345, + 44.9921098746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc92753404dc9e23d1f5fbd149d171d023dedd97", + "fields": { + "code_commune_insee": "29163", + "nom_de_la_commune": "PLEYBER CHRIST", + "code_postal": "29410", + "coordonnees_gps": [ + 48.5106294625, + -3.87174749946 + ], + "libelle_d_acheminement": "PLEYBER CHRIST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.87174749946, + 48.5106294625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84910a8f9a491b39fc5632e328405175df836846", + "fields": { + "code_commune_insee": "38212", + "nom_de_la_commune": "LIVET ET GAVET", + "code_postal": "38220", + "coordonnees_gps": [ + 45.0905954329, + 5.91904092614 + ], + "libelle_d_acheminement": "LIVET ET GAVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91904092614, + 45.0905954329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "165e4de9f0caa3066b3cb8e0406f78f56d20af04", + "fields": { + "code_commune_insee": "29167", + "nom_de_la_commune": "PLOGASTEL ST GERMAIN", + "code_postal": "29710", + "coordonnees_gps": [ + 47.9772934585, + -4.26371081296 + ], + "libelle_d_acheminement": "PLOGASTEL ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.26371081296, + 47.9772934585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10595fbf6b250a5885402dca49ced8fb2ac35a7c", + "fields": { + "ligne_5": "RIOUPEROUX", + "code_commune_insee": "38212", + "libelle_d_acheminement": "LIVET ET GAVET", + "code_postal": "38220", + "nom_de_la_commune": "LIVET ET GAVET", + "coordonnees_gps": [ + 45.0905954329, + 5.91904092614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91904092614, + 45.0905954329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "123dc8eba5e4a0b299f1deac651805b3b4f4cc8a", + "fields": { + "code_commune_insee": "29173", + "nom_de_la_commune": "PLONEIS", + "code_postal": "29710", + "coordonnees_gps": [ + 48.0113210792, + -4.20934732708 + ], + "libelle_d_acheminement": "PLONEIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.20934732708, + 48.0113210792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deedde0810c42647f08bdc8c31d3d11066df31f6", + "fields": { + "code_commune_insee": "38218", + "nom_de_la_commune": "MARCILLOLES", + "code_postal": "38260", + "coordonnees_gps": [ + 45.3465047773, + 5.17565086259 + ], + "libelle_d_acheminement": "MARCILLOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17565086259, + 45.3465047773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa7d77941e8cf262697be3558aaddb955be8ebcd", + "fields": { + "code_commune_insee": "29175", + "nom_de_la_commune": "PLONEVEZ DU FAOU", + "code_postal": "29530", + "coordonnees_gps": [ + 48.2558447304, + -3.82335085497 + ], + "libelle_d_acheminement": "PLONEVEZ DU FAOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.82335085497, + 48.2558447304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "347721b239457f0735ced489e89794b9a231139b", + "fields": { + "code_commune_insee": "38224", + "nom_de_la_commune": "MAYRES SAVEL", + "code_postal": "38350", + "coordonnees_gps": [ + 44.8864456242, + 5.71096631054 + ], + "libelle_d_acheminement": "MAYRES SAVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71096631054, + 44.8864456242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3147cdea5aa413b5f5748ca779f948a8a3f3d42d", + "fields": { + "code_commune_insee": "29179", + "nom_de_la_commune": "PLOUDANIEL", + "code_postal": "29260", + "coordonnees_gps": [ + 48.5230558972, + -4.31368733592 + ], + "libelle_d_acheminement": "PLOUDANIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.31368733592, + 48.5230558972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b18815fd8bb80c7c2c75b4e186674dc46c8553f", + "fields": { + "code_commune_insee": "38229", + "nom_de_la_commune": "MEYLAN", + "code_postal": "38240", + "coordonnees_gps": [ + 45.2123567232, + 5.78354910277 + ], + "libelle_d_acheminement": "MEYLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78354910277, + 45.2123567232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28ae0cf283bbe22742ee295a87c79c9ff87111a9", + "fields": { + "code_commune_insee": "29186", + "nom_de_la_commune": "PLOUEZOC H", + "code_postal": "29252", + "coordonnees_gps": [ + 48.6370431885, + -3.81553533985 + ], + "libelle_d_acheminement": "PLOUEZOC H" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.81553533985, + 48.6370431885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e25f8ff78960247a5c68120bcf5609702131dcd", + "fields": { + "code_commune_insee": "38231", + "nom_de_la_commune": "MEYRIEU LES ETANGS", + "code_postal": "38440", + "coordonnees_gps": [ + 45.5155327339, + 5.19856670609 + ], + "libelle_d_acheminement": "MEYRIEU LES ETANGS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19856670609, + 45.5155327339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e3949a9730996e023d7887f7cd60953adcd3294", + "fields": { + "code_commune_insee": "29188", + "nom_de_la_commune": "PLOUGASNOU", + "code_postal": "29630", + "coordonnees_gps": [ + 48.6775667227, + -3.8123079305 + ], + "libelle_d_acheminement": "PLOUGASNOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8123079305, + 48.6775667227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aa6c2baffd7040f1e516f448fe5498482b7db22", + "fields": { + "code_commune_insee": "38232", + "nom_de_la_commune": "MEYSSIEZ", + "code_postal": "38440", + "coordonnees_gps": [ + 45.4623251025, + 5.06118662132 + ], + "libelle_d_acheminement": "MEYSSIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06118662132, + 45.4623251025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c1b1a2838ba8c341b019ed12c7cdcff38c64178", + "fields": { + "code_commune_insee": "29195", + "nom_de_la_commune": "PLOUGUERNEAU", + "code_postal": "29880", + "coordonnees_gps": [ + 48.6030672193, + -4.48961925754 + ], + "libelle_d_acheminement": "PLOUGUERNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.48961925754, + 48.6030672193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9103b569d72f4b0338446b05b6cce7c1dde3118b", + "fields": { + "code_commune_insee": "38235", + "nom_de_la_commune": "MIRIBEL LANCHATRE", + "code_postal": "38450", + "coordonnees_gps": [ + 44.973161587, + 5.61005061532 + ], + "libelle_d_acheminement": "MIRIBEL LANCHATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61005061532, + 44.973161587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bf58c047d1b2ee103cb41be932f933801a97c9f", + "fields": { + "code_commune_insee": "29197", + "nom_de_la_commune": "PLOUHINEC", + "code_postal": "29780", + "coordonnees_gps": [ + 48.0137327427, + -4.48457090531 + ], + "libelle_d_acheminement": "PLOUHINEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.48457090531, + 48.0137327427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9578a36f80037b09d8faac23373f624400fa2fc", + "fields": { + "code_commune_insee": "38236", + "nom_de_la_commune": "MIRIBEL LES ECHELLES", + "code_postal": "38380", + "coordonnees_gps": [ + 45.4371806956, + 5.70815670688 + ], + "libelle_d_acheminement": "MIRIBEL LES ECHELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70815670688, + 45.4371806956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad3e133bede12bc65e6d394a29af41c672cb571f", + "fields": { + "code_commune_insee": "29208", + "nom_de_la_commune": "PLOURIN", + "code_postal": "29830", + "coordonnees_gps": [ + 48.503013638, + -4.68383669582 + ], + "libelle_d_acheminement": "PLOURIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.68383669582, + 48.503013638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86f3352e82dad1da2cb0900cee451bff12da0f54", + "fields": { + "code_commune_insee": "38246", + "nom_de_la_commune": "MONTAGNIEU", + "code_postal": "38110", + "coordonnees_gps": [ + 45.5264598257, + 5.45129139723 + ], + "libelle_d_acheminement": "MONTAGNIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45129139723, + 45.5264598257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f096d007cb751ba04d2c880f07a97de00ecbb9eb", + "fields": { + "code_commune_insee": "29212", + "nom_de_la_commune": "PLOUZANE", + "code_postal": "29280", + "coordonnees_gps": [ + 48.3774359933, + -4.59923891903 + ], + "libelle_d_acheminement": "PLOUZANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.59923891903, + 48.3774359933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b63d559902fa0adffda8c9614dd8d3f7449d5ff", + "fields": { + "code_commune_insee": "38249", + "nom_de_la_commune": "MONTBONNOT ST MARTIN", + "code_postal": "38330", + "coordonnees_gps": [ + 45.2214678068, + 5.81601552801 + ], + "libelle_d_acheminement": "MONTBONNOT ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81601552801, + 45.2214678068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "642c424d2c2602b23870541699b8f1f4b78083a7", + "fields": { + "code_commune_insee": "29213", + "nom_de_la_commune": "PLOUZEVEDE", + "code_postal": "29440", + "coordonnees_gps": [ + 48.5919150435, + -4.0954616679 + ], + "libelle_d_acheminement": "PLOUZEVEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.0954616679, + 48.5919150435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a2a3057fdda90edb7ef0194e9bdb1e80eec1bc8", + "fields": { + "code_commune_insee": "38252", + "nom_de_la_commune": "MONTCHABOUD", + "code_postal": "38220", + "coordonnees_gps": [ + 45.0928956374, + 5.76098049287 + ], + "libelle_d_acheminement": "MONTCHABOUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76098049287, + 45.0928956374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2f5ba37dcbde36f990ca08e1166e4392c0ca9ed", + "fields": { + "code_commune_insee": "29216", + "nom_de_la_commune": "PLUGUFFAN", + "code_postal": "29700", + "coordonnees_gps": [ + 47.972064955, + -4.18686466839 + ], + "libelle_d_acheminement": "PLUGUFFAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.18686466839, + 47.972064955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "444f413188e0c1fb48cd2edd41a17c6001dfe320", + "fields": { + "ligne_5": "L ALPE DE VENOSC", + "code_commune_insee": "38253", + "libelle_d_acheminement": "LES DEUX ALPES", + "code_postal": "38860", + "nom_de_la_commune": "LES DEUX ALPES", + "coordonnees_gps": [ + 45.0159885994, + 6.13818619624 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13818619624, + 45.0159885994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "196c26fd8c05c43038f0b667a54f99cc10049784", + "fields": { + "ligne_5": "LARRET", + "code_commune_insee": "29221", + "libelle_d_acheminement": "PORSPODER", + "code_postal": "29840", + "nom_de_la_commune": "PORSPODER", + "coordonnees_gps": [ + 48.498709078, + -4.75352482968 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.75352482968, + 48.498709078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ea1e4d0c4665dce9b894682cda6d15bc112f1dc", + "fields": { + "code_commune_insee": "38258", + "nom_de_la_commune": "MONT ST MARTIN", + "code_postal": "38120", + "coordonnees_gps": [ + 45.2791662403, + 5.68372205186 + ], + "libelle_d_acheminement": "MONT ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68372205186, + 45.2791662403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c35692449ae92b796d81d444868e535a12f4ea1", + "fields": { + "code_commune_insee": "29224", + "nom_de_la_commune": "POULDERGAT", + "code_postal": "29100", + "coordonnees_gps": [ + 48.0406832408, + -4.32643354494 + ], + "libelle_d_acheminement": "POULDERGAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.32643354494, + 48.0406832408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4dc9d2bbe0c7f6995a30875c46b15e065414ad5", + "fields": { + "code_commune_insee": "38259", + "nom_de_la_commune": "MONTSEVEROUX", + "code_postal": "38122", + "coordonnees_gps": [ + 45.4298742303, + 4.97438632901 + ], + "libelle_d_acheminement": "MONTSEVEROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97438632901, + 45.4298742303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "029fa5a6644ec29982f3d8b266e5e9559da8f3f3", + "fields": { + "code_commune_insee": "29225", + "nom_de_la_commune": "POULDREUZIC", + "code_postal": "29710", + "coordonnees_gps": [ + 47.9612717515, + -4.36413265082 + ], + "libelle_d_acheminement": "POULDREUZIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.36413265082, + 47.9612717515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "813bc7a04852aea2583816cea7852cae1fbf9bea", + "fields": { + "code_commune_insee": "38260", + "nom_de_la_commune": "MORAS", + "code_postal": "38460", + "coordonnees_gps": [ + 45.6869533334, + 5.26058834706 + ], + "libelle_d_acheminement": "MORAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26058834706, + 45.6869533334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48765ef287dd62faee35254eab09c130d000c782", + "fields": { + "code_commune_insee": "29229", + "nom_de_la_commune": "QUEMENEVEN", + "code_postal": "29180", + "coordonnees_gps": [ + 48.1177103984, + -4.14400654798 + ], + "libelle_d_acheminement": "QUEMENEVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.14400654798, + 48.1177103984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b75b52ce9258c02a0392df142555750055f01b0a", + "fields": { + "ligne_5": "ORNACIEUX", + "code_commune_insee": "38284", + "libelle_d_acheminement": "ORNACIEUX BALBINS", + "code_postal": "38260", + "nom_de_la_commune": "ORNACIEUX BALBINS", + "coordonnees_gps": [ + 45.4048662888, + 5.21296646579 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21296646579, + 45.4048662888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13cbce694e85d7ad33555fd3ab975a3f2560e6a4", + "fields": { + "code_commune_insee": "29236", + "nom_de_la_commune": "RIEC SUR BELON", + "code_postal": "29340", + "coordonnees_gps": [ + 47.8492219169, + -3.69069464862 + ], + "libelle_d_acheminement": "RIEC SUR BELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.69069464862, + 47.8492219169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da0d4fd3b211f16d5c97514e315503a3577c1e26", + "fields": { + "code_commune_insee": "38287", + "nom_de_la_commune": "OYEU", + "code_postal": "38690", + "coordonnees_gps": [ + 45.4274505456, + 5.48004933768 + ], + "libelle_d_acheminement": "OYEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48004933768, + 45.4274505456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b61d39e7e9d758cd91d4d53f78004414d4d65309", + "fields": { + "code_commune_insee": "29245", + "nom_de_la_commune": "ST DIVY", + "code_postal": "29800", + "coordonnees_gps": [ + 48.454416666, + -4.33069811028 + ], + "libelle_d_acheminement": "ST DIVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.33069811028, + 48.454416666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "952862c4424184f23790f62bb9b294cd0b4d1e48", + "fields": { + "code_commune_insee": "38295", + "nom_de_la_commune": "PARMILIEU", + "code_postal": "38390", + "coordonnees_gps": [ + 45.8448442617, + 5.35457902828 + ], + "libelle_d_acheminement": "PARMILIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35457902828, + 45.8448442617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "429abee04f0139b5f914cffe80a7f3d685807fb8", + "fields": { + "code_commune_insee": "29249", + "nom_de_la_commune": "ST GOAZEC", + "code_postal": "29520", + "coordonnees_gps": [ + 48.1512436347, + -3.76561570465 + ], + "libelle_d_acheminement": "ST GOAZEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.76561570465, + 48.1512436347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03df40bc8cafd74ceb85c50d04cc0490a5fac813", + "fields": { + "code_commune_insee": "38321", + "nom_de_la_commune": "PREBOIS", + "code_postal": "38710", + "coordonnees_gps": [ + 44.7780001917, + 5.71068390088 + ], + "libelle_d_acheminement": "PREBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71068390088, + 44.7780001917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf50f6a113b9bfd8750d956298dbc835c844b399", + "fields": { + "code_commune_insee": "29251", + "nom_de_la_commune": "ST JEAN DU DOIGT", + "code_postal": "29630", + "coordonnees_gps": [ + 48.6703251838, + -3.76283111411 + ], + "libelle_d_acheminement": "ST JEAN DU DOIGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.76283111411, + 48.6703251838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f71fd405522442b781468ef67044c231300b9cc6", + "fields": { + "code_commune_insee": "38334", + "nom_de_la_commune": "REVEL", + "code_postal": "38420", + "coordonnees_gps": [ + 45.1681206613, + 5.90991149845 + ], + "libelle_d_acheminement": "REVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90991149845, + 45.1681206613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "605c7a276747da9a254c09ee32f21fe356e95d91", + "fields": { + "code_commune_insee": "29254", + "nom_de_la_commune": "ST MARTIN DES CHAMPS", + "code_postal": "29600", + "coordonnees_gps": [ + 48.5757887631, + -3.85616057853 + ], + "libelle_d_acheminement": "ST MARTIN DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.85616057853, + 48.5757887631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ac40ee744020145d73b4cb1ed8f8a70f25d4482", + "fields": { + "code_commune_insee": "38340", + "nom_de_la_commune": "LES ROCHES DE CONDRIEU", + "code_postal": "38370", + "coordonnees_gps": [ + 45.4535022843, + 4.76433812277 + ], + "libelle_d_acheminement": "LES ROCHES DE CONDRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76433812277, + 45.4535022843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50088f2b426b75d79a90e4ebaa139c0951a6b401", + "fields": { + "code_commune_insee": "29260", + "nom_de_la_commune": "ST RENAN", + "code_postal": "29290", + "coordonnees_gps": [ + 48.4258372849, + -4.62348821209 + ], + "libelle_d_acheminement": "ST RENAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.62348821209, + 48.4258372849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2af278b1516f607d12cbbafad7ad42899af6b1fa", + "fields": { + "code_commune_insee": "38342", + "nom_de_la_commune": "ROISSARD", + "code_postal": "38650", + "coordonnees_gps": [ + 44.884456212, + 5.63550064457 + ], + "libelle_d_acheminement": "ROISSARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63550064457, + 44.884456212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1728568338fccb5336ee0e17883ec57c35694ce", + "fields": { + "code_commune_insee": "29267", + "nom_de_la_commune": "ST THOIS", + "code_postal": "29520", + "coordonnees_gps": [ + 48.1533398719, + -3.90597828016 + ], + "libelle_d_acheminement": "ST THOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.90597828016, + 48.1533398719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "946831570c9aa5ef1ac9df70f6310dd1c4f1a6e0", + "fields": { + "code_commune_insee": "38352", + "nom_de_la_commune": "ST ALBAN DE ROCHE", + "code_postal": "38080", + "coordonnees_gps": [ + 45.5871624015, + 5.2245791574 + ], + "libelle_d_acheminement": "ST ALBAN DE ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2245791574, + 45.5871624015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbe82bfba774b071a426401400fbe22d58939762", + "fields": { + "code_commune_insee": "29270", + "nom_de_la_commune": "ST URBAIN", + "code_postal": "29800", + "coordonnees_gps": [ + 48.3969194336, + -4.22206761804 + ], + "libelle_d_acheminement": "ST URBAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.22206761804, + 48.3969194336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0a56f585f8322206cfe91c3a060e0e194087591", + "fields": { + "code_commune_insee": "38353", + "nom_de_la_commune": "ST ALBAN DU RHONE", + "code_postal": "38370", + "coordonnees_gps": [ + 45.4179171487, + 4.75568259683 + ], + "libelle_d_acheminement": "ST ALBAN DU RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75568259683, + 45.4179171487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c09a90a4ae87fb46187404cef1b7cc3455ab5d1", + "fields": { + "code_commune_insee": "29274", + "nom_de_la_commune": "SCAER", + "code_postal": "29390", + "coordonnees_gps": [ + 48.0279903072, + -3.73073835764 + ], + "libelle_d_acheminement": "SCAER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.73073835764, + 48.0279903072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c18cbf6ebe098d863618c16ebb42e27df4505a98", + "fields": { + "code_commune_insee": "38358", + "nom_de_la_commune": "STE ANNE SUR GERVONDE", + "code_postal": "38440", + "coordonnees_gps": [ + 45.4997686454, + 5.23217277414 + ], + "libelle_d_acheminement": "STE ANNE SUR GERVONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23217277414, + 45.4997686454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d7de9f87344f6b13d08ce16842159021cd7bfa3", + "fields": { + "code_commune_insee": "29276", + "nom_de_la_commune": "SIBIRIL", + "code_postal": "29250", + "coordonnees_gps": [ + 48.6638575511, + -4.07209865106 + ], + "libelle_d_acheminement": "SIBIRIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.07209865106, + 48.6638575511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59c3cc60cf000f5e9a8ad36b94f4f4d7114835e3", + "fields": { + "code_commune_insee": "38359", + "nom_de_la_commune": "ST ANTOINE L ABBAYE", + "code_postal": "38160", + "coordonnees_gps": [ + 45.1722353559, + 5.21609050981 + ], + "libelle_d_acheminement": "ST ANTOINE L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21609050981, + 45.1722353559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "340e035899cccdf24c7adb730693ec0be03248eb", + "fields": { + "code_commune_insee": "29282", + "nom_de_la_commune": "TREBABU", + "code_postal": "29217", + "coordonnees_gps": [ + 48.3698825588, + -4.73292975114 + ], + "libelle_d_acheminement": "TREBABU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.73292975114, + 48.3698825588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3f63e7c9205c3d16c64012d73f26e8aee57bcef", + "fields": { + "code_commune_insee": "38380", + "nom_de_la_commune": "ST DIDIER DE BIZONNES", + "code_postal": "38690", + "coordonnees_gps": [ + 45.4613188119, + 5.34474582164 + ], + "libelle_d_acheminement": "ST DIDIER DE BIZONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34474582164, + 45.4613188119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e08a1fa950cb3f79de01b9fed27e8d1e7490396f", + "fields": { + "code_commune_insee": "29286", + "nom_de_la_commune": "TREFLEVENEZ", + "code_postal": "29800", + "coordonnees_gps": [ + 48.4147323372, + -4.17573320036 + ], + "libelle_d_acheminement": "TREFLEVENEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.17573320036, + 48.4147323372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a62cf6b67541f04926fa2c045c05ca4a8b4d794", + "fields": { + "code_commune_insee": "38397", + "nom_de_la_commune": "ST ISMIER", + "code_postal": "38330", + "coordonnees_gps": [ + 45.2519291498, + 5.82858729623 + ], + "libelle_d_acheminement": "ST ISMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82858729623, + 45.2519291498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5627077191130fd84afee50b19673ce7f58c0a66", + "fields": { + "code_commune_insee": "29289", + "nom_de_la_commune": "TREGARVAN", + "code_postal": "29560", + "coordonnees_gps": [ + 48.2369590372, + -4.23152835996 + ], + "libelle_d_acheminement": "TREGARVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.23152835996, + 48.2369590372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caa75d057e5e30e939e88181f1387b2432b3c0f7", + "fields": { + "code_commune_insee": "38399", + "nom_de_la_commune": "ST JEAN DE BOURNAY", + "code_postal": "38440", + "coordonnees_gps": [ + 45.4982631773, + 5.14748470946 + ], + "libelle_d_acheminement": "ST JEAN DE BOURNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14748470946, + 45.4982631773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c873414fafc439360497fde3bb3f003d3bc6044", + "fields": { + "code_commune_insee": "29290", + "nom_de_la_commune": "TREGLONOU", + "code_postal": "29870", + "coordonnees_gps": [ + 48.5473507088, + -4.54852998212 + ], + "libelle_d_acheminement": "TREGLONOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.54852998212, + 48.5473507088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a7d44935ef71b0d0fc8a0e28efa6f050187eede", + "fields": { + "code_commune_insee": "38401", + "nom_de_la_commune": "ST JEAN DE SOUDAIN", + "code_postal": "38110", + "coordonnees_gps": [ + 45.5852713494, + 5.43578432958 + ], + "libelle_d_acheminement": "ST JEAN DE SOUDAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43578432958, + 45.5852713494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6940b824782441bf0787a26f0a83568485fa1823", + "fields": { + "code_commune_insee": "29291", + "nom_de_la_commune": "TREGOUREZ", + "code_postal": "29970", + "coordonnees_gps": [ + 48.1057268762, + -3.87130739986 + ], + "libelle_d_acheminement": "TREGOUREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.87130739986, + 48.1057268762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ea2925f809e5d5cfe9debb1ba19cd417060b402", + "fields": { + "code_commune_insee": "38402", + "nom_de_la_commune": "ST JEAN DE VAULX", + "code_postal": "38220", + "coordonnees_gps": [ + 45.0171172339, + 5.75169663098 + ], + "libelle_d_acheminement": "ST JEAN DE VAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75169663098, + 45.0171172339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0749a772de5fe5077c08a5327d1c954d5c8a0feb", + "fields": { + "code_commune_insee": "29294", + "nom_de_la_commune": "LE TREHOU", + "code_postal": "29450", + "coordonnees_gps": [ + 48.3938578197, + -4.12922038869 + ], + "libelle_d_acheminement": "LE TREHOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.12922038869, + 48.3938578197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "750c656d4f0ba52491a74e5ed9aeef5910092e10", + "fields": { + "code_commune_insee": "38405", + "nom_de_la_commune": "ST JOSEPH DE RIVIERE", + "code_postal": "38134", + "coordonnees_gps": [ + 45.3646525632, + 5.69102202537 + ], + "libelle_d_acheminement": "ST JOSEPH DE RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69102202537, + 45.3646525632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e2aaf01a648f52442345f1a8193c9e94c61c723", + "fields": { + "code_commune_insee": "2A006", + "nom_de_la_commune": "ALATA", + "code_postal": "20167", + "coordonnees_gps": [ + 41.9735186682, + 8.73133206502 + ], + "libelle_d_acheminement": "ALATA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.73133206502, + 41.9735186682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d0541eb1ec322b8f60795e64f7af4451dee718b", + "fields": { + "code_commune_insee": "38408", + "nom_de_la_commune": "ST JUST CHALEYSSIN", + "code_postal": "38540", + "coordonnees_gps": [ + 45.5866184586, + 5.00425101272 + ], + "libelle_d_acheminement": "ST JUST CHALEYSSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00425101272, + 45.5866184586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5f1c4e44a18de32634348a04a7ff3f385533e0f", + "fields": { + "code_commune_insee": "2A060", + "nom_de_la_commune": "CANNELLE", + "code_postal": "20151", + "coordonnees_gps": [ + 42.047981907, + 8.81689575558 + ], + "libelle_d_acheminement": "CANNELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.81689575558, + 42.047981907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68784b645fc154ca62971f9bb96a978665d9eeaf", + "fields": { + "code_commune_insee": "38412", + "nom_de_la_commune": "ST LAURENT DU PONT", + "code_postal": "38380", + "coordonnees_gps": [ + 45.3801495125, + 5.73532117087 + ], + "libelle_d_acheminement": "ST LAURENT DU PONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73532117087, + 45.3801495125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dee336926efb5c0dffc611577818da010e1123e", + "fields": { + "code_commune_insee": "2A070", + "nom_de_la_commune": "CASAGLIONE", + "code_postal": "20111", + "coordonnees_gps": [ + 42.0695824094, + 8.75999305453 + ], + "libelle_d_acheminement": "CASAGLIONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.75999305453, + 42.0695824094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2fedceccf06506705e2245a22f394caefa26116", + "fields": { + "code_commune_insee": "38418", + "nom_de_la_commune": "STE MARIE DU MONT", + "code_postal": "38660", + "coordonnees_gps": [ + 45.4062736697, + 5.93038202226 + ], + "libelle_d_acheminement": "STE MARIE DU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93038202226, + 45.4062736697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "366f9caee5552b35fe58735d73bfb94411a2cd6c", + "fields": { + "code_commune_insee": "2A099", + "nom_de_la_commune": "COZZANO", + "code_postal": "20148", + "coordonnees_gps": [ + 41.9335361782, + 9.18658901993 + ], + "libelle_d_acheminement": "COZZANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.18658901993, + 41.9335361782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fda4d574ceb9babe8fc15ad89ffc427c59c17fd3", + "fields": { + "code_commune_insee": "38421", + "nom_de_la_commune": "ST MARTIN D HERES", + "code_postal": "38400", + "coordonnees_gps": [ + 45.1762012553, + 5.76476360737 + ], + "libelle_d_acheminement": "ST MARTIN D HERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76476360737, + 45.1762012553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3ecaa9caefc23e0b9d67d4e1e7e2e9c163b184e", + "fields": { + "code_commune_insee": "2A119", + "nom_de_la_commune": "FRASSETO", + "code_postal": "20157", + "coordonnees_gps": [ + 41.9199721408, + 9.03919953409 + ], + "libelle_d_acheminement": "FRASSETO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.03919953409, + 41.9199721408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb6b769a791c2f05e47493957b069856ac219785", + "fields": { + "code_commune_insee": "38429", + "nom_de_la_commune": "ST MICHEL LES PORTES", + "code_postal": "38650", + "coordonnees_gps": [ + 44.8650406452, + 5.59014871863 + ], + "libelle_d_acheminement": "ST MICHEL LES PORTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59014871863, + 44.8650406452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d09d71c04f7153acef1d05521ead1212965072fd", + "fields": { + "code_commune_insee": "2A160", + "nom_de_la_commune": "MOCA CROCE", + "code_postal": "20140", + "coordonnees_gps": [ + 41.7880108212, + 9.00990338011 + ], + "libelle_d_acheminement": "MOCA CROCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.00990338011, + 41.7880108212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7405259c3e9c18edad4e0939d9c94ea38cad4dd", + "fields": { + "code_commune_insee": "38437", + "nom_de_la_commune": "ST PAUL D IZEAUX", + "code_postal": "38140", + "coordonnees_gps": [ + 45.31416401, + 5.43190717996 + ], + "libelle_d_acheminement": "ST PAUL D IZEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43190717996, + 45.31416401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bc948d8922743d843a87563e58403da9d975941", + "fields": { + "code_commune_insee": "2A174", + "nom_de_la_commune": "MURZO", + "code_postal": "20160", + "coordonnees_gps": [ + 42.1585493633, + 8.84670847877 + ], + "libelle_d_acheminement": "MURZO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.84670847877, + 42.1585493633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e32abbf2a2e6942eae4d4a2a77fad5a2af28ea5", + "fields": { + "code_commune_insee": "38443", + "nom_de_la_commune": "ST PIERRE DE CHERENNES", + "code_postal": "38160", + "coordonnees_gps": [ + 45.1219175481, + 5.3858661597 + ], + "libelle_d_acheminement": "ST PIERRE DE CHERENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3858661597, + 45.1219175481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59a90df9b80a06fc2c86f1730b6074ee0bd2b8f1", + "fields": { + "code_commune_insee": "2A196", + "nom_de_la_commune": "ORTO", + "code_postal": "20125", + "coordonnees_gps": [ + 42.1989987238, + 8.95741133196 + ], + "libelle_d_acheminement": "ORTO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.95741133196, + 42.1989987238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d47ef104f6c5b71927852a1e17f13f1fda39d43", + "fields": { + "code_commune_insee": "38444", + "nom_de_la_commune": "ST PIERRE DE MEAROZ", + "code_postal": "38350", + "coordonnees_gps": [ + 44.8743730954, + 5.8195714854 + ], + "libelle_d_acheminement": "ST PIERRE DE MEAROZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8195714854, + 44.8743730954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0be5756fafc6d322cb403deff82baec92156d156", + "fields": { + "code_commune_insee": "2A211", + "nom_de_la_commune": "PETRETO BICCHISANO", + "code_postal": "20140", + "coordonnees_gps": [ + 41.7703606471, + 8.96953349207 + ], + "libelle_d_acheminement": "PETRETO BICCHISANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.96953349207, + 41.7703606471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7d9d85456d158c11b83d54f0289f5492e6193b3", + "fields": { + "code_commune_insee": "38454", + "nom_de_la_commune": "ST SAUVEUR", + "code_postal": "38160", + "coordonnees_gps": [ + 45.1455683904, + 5.34488906233 + ], + "libelle_d_acheminement": "ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34488906233, + 45.1455683904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd5314e2935e3b2ffd0d2949b59dac200f351972", + "fields": { + "code_commune_insee": "2A212", + "nom_de_la_commune": "PIANA", + "code_postal": "20115", + "coordonnees_gps": [ + 42.2260344023, + 8.62798195907 + ], + "libelle_d_acheminement": "PIANA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.62798195907, + 42.2260344023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a30af72f1616176a752b8384215931996c330d0", + "fields": { + "code_commune_insee": "38455", + "nom_de_la_commune": "ST SAVIN", + "code_postal": "38300", + "coordonnees_gps": [ + 45.6254619795, + 5.32143071399 + ], + "libelle_d_acheminement": "ST SAVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32143071399, + 45.6254619795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66392deb0f23cb4e2e427687eb6ebdec6e1848e4", + "fields": { + "code_commune_insee": "2A269", + "nom_de_la_commune": "SARI SOLENZARA", + "code_postal": "20145", + "coordonnees_gps": [ + 41.8133599634, + 9.35220683826 + ], + "libelle_d_acheminement": "SARI SOLENZARA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.35220683826, + 41.8133599634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee00b1f2fbe43e6761d280e2c902522bf56a9279", + "fields": { + "ligne_5": "CORDEAC", + "code_commune_insee": "38456", + "libelle_d_acheminement": "CHATEL EN TRIEVES", + "code_postal": "38710", + "nom_de_la_commune": "CHATEL EN TRIEVES", + "coordonnees_gps": [ + 44.8487244503, + 5.80401345281 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80401345281, + 44.8487244503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c907d3e7c8a8ea6ccbfbec82048027186e7c4427", + "fields": { + "code_commune_insee": "2A271", + "nom_de_la_commune": "SARROLA CARCOPINO", + "code_postal": "20167", + "coordonnees_gps": [ + 42.0010171951, + 8.83437893445 + ], + "libelle_d_acheminement": "SARROLA CARCOPINO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.83437893445, + 42.0010171951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ba58ee39e12bdc19fc7a43a0319353e9ec7ba46", + "fields": { + "code_commune_insee": "38471", + "nom_de_la_commune": "LE SAPPEY EN CHARTREUSE", + "code_postal": "38700", + "coordonnees_gps": [ + 45.26521241, + 5.78391032229 + ], + "libelle_d_acheminement": "LE SAPPEY EN CHARTREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78391032229, + 45.26521241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9331ec77eb360196eabbf833819c6bb80453e78c", + "fields": { + "code_commune_insee": "2A278", + "nom_de_la_commune": "SERRA DI SCOPAMENE", + "code_postal": "20127", + "coordonnees_gps": [ + 41.778887385, + 9.10982740043 + ], + "libelle_d_acheminement": "SERRA DI SCOPAMENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.10982740043, + 41.778887385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2b0b1ba3cd4b93e821c5b0d6a7d711fb77df83b", + "fields": { + "code_commune_insee": "38472", + "nom_de_la_commune": "SARCENAS", + "code_postal": "38700", + "coordonnees_gps": [ + 45.2847568738, + 5.75992972544 + ], + "libelle_d_acheminement": "SARCENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75992972544, + 45.2847568738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c149cc9f42a9b68cdd7c7ed10e7602fd4de3285b", + "fields": { + "code_commune_insee": "2A295", + "nom_de_la_commune": "SANT ANDREA D ORCINO", + "code_postal": "20151", + "coordonnees_gps": [ + 42.0443583536, + 8.78903370453 + ], + "libelle_d_acheminement": "SANT ANDREA D ORCINO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.78903370453, + 42.0443583536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b618191bf9896925c1d991f757d304dcfd55d1a4", + "fields": { + "code_commune_insee": "38476", + "nom_de_la_commune": "SAVAS MEPIN", + "code_postal": "38440", + "coordonnees_gps": [ + 45.4968117369, + 5.06174427992 + ], + "libelle_d_acheminement": "SAVAS MEPIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06174427992, + 45.4968117369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c86655d6a25249065553d0c912574e1447ad102", + "fields": { + "code_commune_insee": "2A331", + "nom_de_la_commune": "URBALACONE", + "code_postal": "20128", + "coordonnees_gps": [ + 41.8260298884, + 8.94923394489 + ], + "libelle_d_acheminement": "URBALACONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.94923394489, + 41.8260298884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50d5f10530e555bf50ab936bed9f6b45117096df", + "fields": { + "ligne_5": "ARZAY", + "code_commune_insee": "38479", + "libelle_d_acheminement": "PORTE DES BONNEVAUX", + "code_postal": "38260", + "nom_de_la_commune": "PORTE DES BONNEVAUX", + "coordonnees_gps": [ + 45.4317273834, + 5.19744019557 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19744019557, + 45.4317273834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "941b5b4beca4f801d99642c09a6e03b88528de31", + "fields": { + "code_commune_insee": "2A351", + "nom_de_la_commune": "VILLANOVA", + "code_postal": "20167", + "coordonnees_gps": [ + 41.9635153362, + 8.66974621605 + ], + "libelle_d_acheminement": "VILLANOVA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.66974621605, + 41.9635153362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09b63fd2a1375381c7ea794da9a5e6e3b43ceae6", + "fields": { + "ligne_5": "LE PEAGE", + "code_commune_insee": "38480", + "libelle_d_acheminement": "SEPTEME", + "code_postal": "38780", + "nom_de_la_commune": "SEPTEME", + "coordonnees_gps": [ + 45.5481011598, + 4.98525636535 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98525636535, + 45.5481011598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a3f2031585bf5f16ca024c92b48ba104aff5c34", + "fields": { + "code_commune_insee": "2A362", + "nom_de_la_commune": "ZONZA", + "code_postal": "20124", + "coordonnees_gps": [ + 41.7213730193, + 9.26624005547 + ], + "libelle_d_acheminement": "ZONZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.26624005547, + 41.7213730193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1b529cdc5b57d53d8e4e2347b4076944fde4582", + "fields": { + "ligne_5": "SOUS COTE", + "code_commune_insee": "38480", + "libelle_d_acheminement": "SEPTEME", + "code_postal": "38780", + "nom_de_la_commune": "SEPTEME", + "coordonnees_gps": [ + 45.5481011598, + 4.98525636535 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98525636535, + 45.5481011598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed7a6bf7fd4bbc2c310ec20a06b8fdf7a7386e56", + "fields": { + "code_commune_insee": "2B002", + "nom_de_la_commune": "AGHIONE", + "code_postal": "20270", + "coordonnees_gps": [ + 42.0985000918, + 9.41152525552 + ], + "libelle_d_acheminement": "AGHIONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.41152525552, + 42.0985000918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11ecce083904b910d7e213a32ef2d400a20bf7e8", + "fields": { + "code_commune_insee": "38484", + "nom_de_la_commune": "SERPAIZE", + "code_postal": "38200", + "coordonnees_gps": [ + 45.5576137521, + 4.91965362732 + ], + "libelle_d_acheminement": "SERPAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91965362732, + 45.5576137521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55f8a6b4f22e3201489e36a6ae7442d6e80df7fe", + "fields": { + "code_commune_insee": "2B003", + "nom_de_la_commune": "AITI", + "code_postal": "20244", + "coordonnees_gps": [ + 42.4043178377, + 9.22873647306 + ], + "libelle_d_acheminement": "AITI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.22873647306, + 42.4043178377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9dad5e17b114cacc32139212013aafaa4a3923e", + "fields": { + "code_commune_insee": "38489", + "nom_de_la_commune": "SIEVOZ", + "code_postal": "38350", + "coordonnees_gps": [ + 44.9050907619, + 5.85034623903 + ], + "libelle_d_acheminement": "SIEVOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85034623903, + 44.9050907619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c56425d876eaf0314166cd890c0b5e8d39113d6b", + "fields": { + "code_commune_insee": "2B007", + "nom_de_la_commune": "ALBERTACCE", + "code_postal": "20224", + "coordonnees_gps": [ + 42.3117941076, + 8.92423033485 + ], + "libelle_d_acheminement": "ALBERTACCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.92423033485, + 42.3117941076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c464fc436cf4d25532924de5f39d0466ff1f05d", + "fields": { + "code_commune_insee": "38492", + "nom_de_la_commune": "SINARD", + "code_postal": "38650", + "coordonnees_gps": [ + 44.9430987654, + 5.65579105811 + ], + "libelle_d_acheminement": "SINARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65579105811, + 44.9430987654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5aa18e97b8c6e08206103dace8267d85172fda6", + "fields": { + "ligne_5": "VACAJA", + "code_commune_insee": "2B009", + "libelle_d_acheminement": "ALERIA", + "code_postal": "20270", + "nom_de_la_commune": "ALERIA", + "coordonnees_gps": [ + 42.1059105058, + 9.495645512 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.495645512, + 42.1059105058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8c4c5b4aa42820a34b0c74c07205e3bc113697a", + "fields": { + "code_commune_insee": "38496", + "nom_de_la_commune": "SONNAY", + "code_postal": "38150", + "coordonnees_gps": [ + 45.3566083614, + 4.91625352984 + ], + "libelle_d_acheminement": "SONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91625352984, + 45.3566083614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7028a222ceaf6901f6f92ba18eccb86910220ed2", + "fields": { + "code_commune_insee": "2B020", + "nom_de_la_commune": "AREGNO", + "code_postal": "20220", + "coordonnees_gps": [ + 42.591747308, + 8.8768922389 + ], + "libelle_d_acheminement": "AREGNO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8768922389, + 42.591747308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e88c3e2dc6e682c140a3d77d77634f19d0d1f36d", + "fields": { + "code_commune_insee": "38497", + "nom_de_la_commune": "SOUSVILLE", + "code_postal": "38350", + "coordonnees_gps": [ + 44.9098323482, + 5.80696662088 + ], + "libelle_d_acheminement": "SOUSVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80696662088, + 44.9098323482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "694bbc2cecc55f1489dc9be92dc5aa1454b3108a", + "fields": { + "code_commune_insee": "2B025", + "nom_de_la_commune": "AVAPESSA", + "code_postal": "20225", + "coordonnees_gps": [ + 42.5591666963, + 8.89434767169 + ], + "libelle_d_acheminement": "AVAPESSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.89434767169, + 42.5591666963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f98ac50b765563822fddf7aff12431319063565d", + "fields": { + "code_commune_insee": "38511", + "nom_de_la_commune": "LE TOUVET", + "code_postal": "38660", + "coordonnees_gps": [ + 45.3514959567, + 5.94615794112 + ], + "libelle_d_acheminement": "LE TOUVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94615794112, + 45.3514959567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "908c68e0f6852d1d1eb800c097e3008cf2ae64a2", + "fields": { + "code_commune_insee": "2B029", + "nom_de_la_commune": "BARBAGGIO", + "code_postal": "20253", + "coordonnees_gps": [ + 42.6841491468, + 9.36802297003 + ], + "libelle_d_acheminement": "BARBAGGIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36802297003, + 42.6841491468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af41cce86a9068216ae4ef8297e4813c996c466f", + "fields": { + "code_commune_insee": "38512", + "nom_de_la_commune": "TRAMOLE", + "code_postal": "38300", + "coordonnees_gps": [ + 45.5136127414, + 5.26771625978 + ], + "libelle_d_acheminement": "TRAMOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26771625978, + 45.5136127414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5328c6e3189f8e82b25d78668e9686c81ab71203", + "fields": { + "code_commune_insee": "2B030", + "nom_de_la_commune": "BARRETTALI", + "code_postal": "20228", + "coordonnees_gps": [ + 42.8731830827, + 9.36073943184 + ], + "libelle_d_acheminement": "BARRETTALI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36073943184, + 42.8731830827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cadd67ea42a0fb8f273326415e85fa531bdcbd2", + "fields": { + "code_commune_insee": "38514", + "nom_de_la_commune": "TREMINIS", + "code_postal": "38710", + "coordonnees_gps": [ + 44.7326500492, + 5.77205743161 + ], + "libelle_d_acheminement": "TREMINIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77205743161, + 44.7326500492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dcc9f8542690f6e629f0b7559a2556f9dddaa1d", + "fields": { + "code_commune_insee": "2B033", + "nom_de_la_commune": "BASTIA", + "code_postal": "20200", + "coordonnees_gps": [ + 42.6864768806, + 9.42502133338 + ], + "libelle_d_acheminement": "BASTIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42502133338, + 42.6864768806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c496f7958536f343ce4cd7421d2640d677dd615", + "fields": { + "code_commune_insee": "38516", + "nom_de_la_commune": "LA TRONCHE", + "code_postal": "38700", + "coordonnees_gps": [ + 45.2104409255, + 5.74343326974 + ], + "libelle_d_acheminement": "LA TRONCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74343326974, + 45.2104409255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da6f38ebc722bdaf1525348fef1b578cfd6fe3aa", + "fields": { + "ligne_5": "CARDO", + "code_commune_insee": "2B033", + "libelle_d_acheminement": "BASTIA", + "code_postal": "20200", + "nom_de_la_commune": "BASTIA", + "coordonnees_gps": [ + 42.6864768806, + 9.42502133338 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42502133338, + 42.6864768806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "782877e37ae64439dd0137760d1dbf2225ddb698", + "fields": { + "code_commune_insee": "38518", + "nom_de_la_commune": "VALBONNAIS", + "code_postal": "38740", + "coordonnees_gps": [ + 44.8979470948, + 5.9099695622 + ], + "libelle_d_acheminement": "VALBONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9099695622, + 44.8979470948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa44914ecc220181a5f7507fef7a9278236f33c5", + "fields": { + "code_commune_insee": "2B036", + "nom_de_la_commune": "BIGORNO", + "code_postal": "20252", + "coordonnees_gps": [ + 42.5310349596, + 9.30225902799 + ], + "libelle_d_acheminement": "BIGORNO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.30225902799, + 42.5310349596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11ce061ee0a38106c389f0487bb1e70a15976586", + "fields": { + "code_commune_insee": "38519", + "nom_de_la_commune": "VALENCIN", + "code_postal": "38540", + "coordonnees_gps": [ + 45.6076400854, + 5.02757104948 + ], + "libelle_d_acheminement": "VALENCIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02757104948, + 45.6076400854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01e4da771b7386f113b7b3644724dafa5f3f7eb0", + "fields": { + "code_commune_insee": "2B043", + "nom_de_la_commune": "BRANDO", + "code_postal": "20222", + "coordonnees_gps": [ + 42.7792996993, + 9.45029993821 + ], + "libelle_d_acheminement": "BRANDO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45029993821, + 42.7792996993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "294efa21710740ea31b7c616d8e77a8a8471a08d", + "fields": { + "code_commune_insee": "38524", + "nom_de_la_commune": "VARCES ALLIERES ET RISSET", + "code_postal": "38760", + "coordonnees_gps": [ + 45.0908638366, + 5.67685585853 + ], + "libelle_d_acheminement": "VARCES ALLIERES ET RISSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67685585853, + 45.0908638366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9c922e31f19d0a48b8fa3678c34c228409e47a0", + "fields": { + "ligne_5": "LAVASINA", + "code_commune_insee": "2B043", + "libelle_d_acheminement": "BRANDO", + "code_postal": "20222", + "nom_de_la_commune": "BRANDO", + "coordonnees_gps": [ + 42.7792996993, + 9.45029993821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.45029993821, + 42.7792996993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73a7a653a9c178fc0bfb584de82675d15991b957", + "fields": { + "code_commune_insee": "38526", + "nom_de_la_commune": "VATILIEU", + "code_postal": "38470", + "coordonnees_gps": [ + 45.2609367341, + 5.41140093645 + ], + "libelle_d_acheminement": "VATILIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41140093645, + 45.2609367341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de92e39178ebb9090541a25669de394bd0888942", + "fields": { + "code_commune_insee": "2B047", + "nom_de_la_commune": "CALACUCCIA", + "code_postal": "20224", + "coordonnees_gps": [ + 42.3232788863, + 9.0338481491 + ], + "libelle_d_acheminement": "CALACUCCIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0338481491, + 42.3232788863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb1520bd6d2e9dbbe27ac34f755bbccaf4e77979", + "fields": { + "code_commune_insee": "38527", + "nom_de_la_commune": "VAUJANY", + "code_postal": "38114", + "coordonnees_gps": [ + 45.1859501917, + 6.10152969645 + ], + "libelle_d_acheminement": "VAUJANY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10152969645, + 45.1859501917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84240eeb5f964b0f80aafbb56dcdb98ef84443f0", + "fields": { + "ligne_5": "ARGENTELLA", + "code_commune_insee": "2B049", + "libelle_d_acheminement": "CALENZANA", + "code_postal": "20260", + "nom_de_la_commune": "CALENZANA", + "coordonnees_gps": [ + 42.4784267166, + 8.80369225001 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.80369225001, + 42.4784267166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dac29498e7f873c999d95b2bc402f69b75c7f13", + "fields": { + "code_commune_insee": "38528", + "nom_de_la_commune": "VAULNAVEYS LE BAS", + "code_postal": "38410", + "coordonnees_gps": [ + 45.0989005877, + 5.81149786551 + ], + "libelle_d_acheminement": "VAULNAVEYS LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81149786551, + 45.0989005877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "012fc310c8361f765acb28701150975a85577ebf", + "fields": { + "code_commune_insee": "2B050", + "nom_de_la_commune": "CALVI", + "code_postal": "20260", + "coordonnees_gps": [ + 42.5454874755, + 8.7595487404 + ], + "libelle_d_acheminement": "CALVI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7595487404, + 42.5454874755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "265d254a65861c230d79a7d69ceaa4e9940a457e", + "fields": { + "ligne_5": "URIAGE", + "code_commune_insee": "38529", + "libelle_d_acheminement": "VAULNAVEYS LE HAUT", + "code_postal": "38410", + "nom_de_la_commune": "VAULNAVEYS LE HAUT", + "coordonnees_gps": [ + 45.1153983318, + 5.8400227882 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8400227882, + 45.1153983318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21657590041ade0f6a88a7de6091891d6cd857b3", + "fields": { + "code_commune_insee": "2B053", + "nom_de_la_commune": "CAMPI", + "code_postal": "20270", + "coordonnees_gps": [ + 42.2686230667, + 9.42370461257 + ], + "libelle_d_acheminement": "CAMPI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42370461257, + 42.2686230667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c20228a5b6fa056651c71c64bfbe35f95af5acf", + "fields": { + "code_commune_insee": "38536", + "nom_de_la_commune": "VERNIOZ", + "code_postal": "38150", + "coordonnees_gps": [ + 45.430347371, + 4.89879549763 + ], + "libelle_d_acheminement": "VERNIOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89879549763, + 45.430347371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2bfd86caf4ab169b17283bdaecc1356cb6a1443", + "fields": { + "code_commune_insee": "2B072", + "nom_de_la_commune": "CASALTA", + "code_postal": "20215", + "coordonnees_gps": [ + 42.4353535822, + 9.42365261956 + ], + "libelle_d_acheminement": "CASALTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42365261956, + 42.4353535822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cffb62c6a79d27d41c388f647e31fc29b6e4c6ee", + "fields": { + "code_commune_insee": "38552", + "nom_de_la_commune": "VILLARD ST CHRISTOPHE", + "code_postal": "38119", + "coordonnees_gps": [ + 44.9860357514, + 5.81891639232 + ], + "libelle_d_acheminement": "VILLARD ST CHRISTOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81891639232, + 44.9860357514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "672e43802211c2d1f58280182b82a1fc8eb3a537", + "fields": { + "code_commune_insee": "2B075", + "nom_de_la_commune": "CASEVECCHIE", + "code_postal": "20270", + "coordonnees_gps": [ + 42.1355350741, + 9.36806507914 + ], + "libelle_d_acheminement": "CASEVECCHIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36806507914, + 42.1355350741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58f583a31f31f8c3b47dd07a05f5663fb8b4f18b", + "fields": { + "code_commune_insee": "38555", + "nom_de_la_commune": "VILLENEUVE DE MARC", + "code_postal": "38440", + "coordonnees_gps": [ + 45.462997823, + 5.11493429723 + ], + "libelle_d_acheminement": "VILLENEUVE DE MARC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11493429723, + 45.462997823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b9b7440ce127814b4d58a1928a0abb01a8a2161", + "fields": { + "code_commune_insee": "2B078", + "nom_de_la_commune": "CASTELLARE DI MERCURIO", + "code_postal": "20212", + "coordonnees_gps": [ + 42.310112696, + 9.24655263263 + ], + "libelle_d_acheminement": "CASTELLARE DI MERCURIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.24655263263, + 42.310112696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b736c4a1725d89ef13126ce30d4fe596ad3f26b4", + "fields": { + "code_commune_insee": "38558", + "nom_de_la_commune": "VILLETTE DE VIENNE", + "code_postal": "38200", + "coordonnees_gps": [ + 45.5891950037, + 4.91199377057 + ], + "libelle_d_acheminement": "VILLETTE DE VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91199377057, + 45.5891950037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82845bf4a101feb733c614b41ac9132c2bee3471", + "fields": { + "code_commune_insee": "2B079", + "nom_de_la_commune": "CASTELLO DI ROSTINO", + "code_postal": "20235", + "coordonnees_gps": [ + 42.471301177, + 9.29768308268 + ], + "libelle_d_acheminement": "CASTELLO DI ROSTINO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.29768308268, + 42.471301177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be7fa87594dd8773fbd7d31cd6946482d10d69c0", + "fields": { + "code_commune_insee": "38562", + "nom_de_la_commune": "VIZILLE", + "code_postal": "38220", + "coordonnees_gps": [ + 45.075027515, + 5.77956710747 + ], + "libelle_d_acheminement": "VIZILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77956710747, + 45.075027515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87a64ed8e7492d5371d015e953c95a3413d76ba9", + "fields": { + "code_commune_insee": "2B083", + "nom_de_la_commune": "CASTIRLA", + "code_postal": "20236", + "coordonnees_gps": [ + 42.3685154876, + 9.12608884402 + ], + "libelle_d_acheminement": "CASTIRLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.12608884402, + 42.3685154876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1adc465c094c3e90a537103aab19dc0fffa5f37", + "fields": { + "code_commune_insee": "38566", + "nom_de_la_commune": "VOUREY", + "code_postal": "38210", + "coordonnees_gps": [ + 45.3170286253, + 5.5223348378 + ], + "libelle_d_acheminement": "VOUREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5223348378, + 45.3170286253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1ad80014c53166cef4668ac2ba9468b70835b68", + "fields": { + "code_commune_insee": "2B095", + "nom_de_la_commune": "CORSCIA", + "code_postal": "20224", + "coordonnees_gps": [ + 42.3691487665, + 9.05557667176 + ], + "libelle_d_acheminement": "CORSCIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.05557667176, + 42.3691487665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aff4a20cce1af9e5598e01ebcf3493468a74fad6", + "fields": { + "code_commune_insee": "39004", + "nom_de_la_commune": "ABERGEMENT LES THESY", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9134980199, + 5.94569839295 + ], + "libelle_d_acheminement": "ABERGEMENT LES THESY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94569839295, + 46.9134980199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8afe1ab6eb1bcaea8ce1c29847f5d5ba3babe637", + "fields": { + "code_commune_insee": "2B116", + "nom_de_la_commune": "FOCICCHIA", + "code_postal": "20212", + "coordonnees_gps": [ + 42.250040051, + 9.29254377168 + ], + "libelle_d_acheminement": "FOCICCHIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.29254377168, + 42.250040051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2da1f5c8379e8aead66c01367152543f45c27af", + "fields": { + "code_commune_insee": "39016", + "nom_de_la_commune": "ARINTHOD", + "code_postal": "39240", + "coordonnees_gps": [ + 46.4000913267, + 5.58894022336 + ], + "libelle_d_acheminement": "ARINTHOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58894022336, + 46.4000913267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b8093d818ccc978320a046af59a79a3383442af", + "fields": { + "code_commune_insee": "2B121", + "nom_de_la_commune": "GALERIA", + "code_postal": "20245", + "coordonnees_gps": [ + 42.4081803478, + 8.70707754451 + ], + "libelle_d_acheminement": "GALERIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.70707754451, + 42.4081803478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47a71b6632422408297eb2ccc4e606277bf3d3ba", + "fields": { + "code_commune_insee": "39025", + "nom_de_la_commune": "AUGEA", + "code_postal": "39190", + "coordonnees_gps": [ + 46.5620792374, + 5.38938272802 + ], + "libelle_d_acheminement": "AUGEA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38938272802, + 46.5620792374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c97e98899b1b635e9f8ca5041a5b631f74064cc", + "fields": { + "code_commune_insee": "2B123", + "nom_de_la_commune": "GHISONACCIA", + "code_postal": "20240", + "coordonnees_gps": [ + 42.0437178075, + 9.42260770968 + ], + "libelle_d_acheminement": "GHISONACCIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42260770968, + 42.0437178075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5339a51ece15095106826fd9f7ce13ece268d5b3", + "fields": { + "code_commune_insee": "39029", + "nom_de_la_commune": "AUMUR", + "code_postal": "39410", + "coordonnees_gps": [ + 47.060981505, + 5.33712188503 + ], + "libelle_d_acheminement": "AUMUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33712188503, + 47.060981505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a998f2cf697da3e8ffcf211a13175e4f531fd08d", + "fields": { + "ligne_5": "ALZITONE", + "code_commune_insee": "2B123", + "libelle_d_acheminement": "GHISONACCIA", + "code_postal": "20240", + "nom_de_la_commune": "GHISONACCIA", + "coordonnees_gps": [ + 42.0437178075, + 9.42260770968 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42260770968, + 42.0437178075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52b338019ed756b7e6eed72ecae67380afad082c", + "fields": { + "code_commune_insee": "39030", + "nom_de_la_commune": "AUTHUME", + "code_postal": "39100", + "coordonnees_gps": [ + 47.1250671722, + 5.50826789113 + ], + "libelle_d_acheminement": "AUTHUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50826789113, + 47.1250671722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b9c29f112db9245528af25d33e3f816cbde852e", + "fields": { + "code_commune_insee": "2B138", + "nom_de_la_commune": "LAVATOGGIO", + "code_postal": "20225", + "coordonnees_gps": [ + 42.5733311886, + 8.86153291586 + ], + "libelle_d_acheminement": "LAVATOGGIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.86153291586, + 42.5733311886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c988529030315060f8bb7ce00cd89a11fbca0c06", + "fields": { + "code_commune_insee": "39031", + "nom_de_la_commune": "AUXANGE", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1778341766, + 5.65519498249 + ], + "libelle_d_acheminement": "AUXANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65519498249, + 47.1778341766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1df4c5d10ccbb346c94c66febf0b8a1872cc4966", + "fields": { + "code_commune_insee": "2B140", + "nom_de_la_commune": "LENTO", + "code_postal": "20252", + "coordonnees_gps": [ + 42.5313679084, + 9.2630678299 + ], + "libelle_d_acheminement": "LENTO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2630678299, + 42.5313679084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf04c75eae7829be0d1b33ac3147cb334a45c216", + "fields": { + "code_commune_insee": "39041", + "nom_de_la_commune": "BAUME LES MESSIEURS", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7048674382, + 5.64562570074 + ], + "libelle_d_acheminement": "BAUME LES MESSIEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64562570074, + 46.7048674382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8925bbfcc24f0544a29d4e1f57ccf34891eb4bdb", + "fields": { + "code_commune_insee": "2B143", + "nom_de_la_commune": "LINGUIZZETTA", + "code_postal": "20230", + "coordonnees_gps": [ + 42.2176450793, + 9.51024497679 + ], + "libelle_d_acheminement": "LINGUIZZETTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.51024497679, + 42.2176450793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0ad7e868d2294636e7208b7696e332dbf1f0809", + "fields": { + "code_commune_insee": "39042", + "nom_de_la_commune": "BAVERANS", + "code_postal": "39100", + "coordonnees_gps": [ + 47.1054660171, + 5.53628421421 + ], + "libelle_d_acheminement": "BAVERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53628421421, + 47.1054660171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56d5fb527920fe98859a5cd7584b86b9348cb9d3", + "fields": { + "code_commune_insee": "2B166", + "nom_de_la_commune": "MONTE", + "code_postal": "20290", + "coordonnees_gps": [ + 42.4830064392, + 9.40129428843 + ], + "libelle_d_acheminement": "MONTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.40129428843, + 42.4830064392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1bb586cf76ffba0eb7e3b29602c8057ff68a1e6", + "fields": { + "code_commune_insee": "39046", + "nom_de_la_commune": "BELLECOMBE", + "code_postal": "39310", + "coordonnees_gps": [ + 46.3093062436, + 5.90889687152 + ], + "libelle_d_acheminement": "BELLECOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90889687152, + 46.3093062436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "803ddb8550b7dde2ac658472b46f87bc13383de7", + "fields": { + "code_commune_insee": "2B178", + "nom_de_la_commune": "NONZA", + "code_postal": "20217", + "coordonnees_gps": [ + 42.7882252962, + 9.35435781818 + ], + "libelle_d_acheminement": "NONZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.35435781818, + 42.7882252962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24f36681b14bff100cb1b9183ca39e406305d78c", + "fields": { + "code_commune_insee": "39051", + "nom_de_la_commune": "BIARNE", + "code_postal": "39290", + "coordonnees_gps": [ + 47.1454413505, + 5.45151056819 + ], + "libelle_d_acheminement": "BIARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45151056819, + 47.1454413505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef623f4296aa140f1736c65933305f602abe9e76", + "fields": { + "code_commune_insee": "2B180", + "nom_de_la_commune": "NOVELLA", + "code_postal": "20226", + "coordonnees_gps": [ + 42.5972996408, + 9.1035165681 + ], + "libelle_d_acheminement": "NOVELLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1035165681, + 42.5972996408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "165f25df5368c071f9aa46d2adbf9943c4851da2", + "fields": { + "code_commune_insee": "39053", + "nom_de_la_commune": "BIEF DU FOURG", + "code_postal": "39250", + "coordonnees_gps": [ + 46.8204461045, + 6.11715675755 + ], + "libelle_d_acheminement": "BIEF DU FOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11715675755, + 46.8204461045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e899fd662ae0245fd940b3624b05f05e281e3266", + "fields": { + "code_commune_insee": "2B183", + "nom_de_la_commune": "OGLIASTRO", + "code_postal": "20217", + "coordonnees_gps": [ + 42.8221560057, + 9.35418915293 + ], + "libelle_d_acheminement": "OGLIASTRO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.35418915293, + 42.8221560057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb5e077a5a7403171336b9fac3c9d3e865572713", + "fields": { + "code_commune_insee": "39060", + "nom_de_la_commune": "BOIS DE GAND", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8265028242, + 5.50052163033 + ], + "libelle_d_acheminement": "BOIS DE GAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50052163033, + 46.8265028242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54a9ef042abcb3cddeb3707ba0d3e2abc6c99b83", + "fields": { + "ligne_5": "FRANCARDO", + "code_commune_insee": "2B193", + "libelle_d_acheminement": "OMESSA", + "code_postal": "20236", + "nom_de_la_commune": "OMESSA", + "coordonnees_gps": [ + 42.3827760667, + 9.19362569461 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.19362569461, + 42.3827760667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdd6007f1b8b724325cd5246c8e71f23f37b824e", + "fields": { + "code_commune_insee": "39074", + "nom_de_la_commune": "BRANS", + "code_postal": "39290", + "coordonnees_gps": [ + 47.2238411039, + 5.57358869303 + ], + "libelle_d_acheminement": "BRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57358869303, + 47.2238411039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "159a8913888ac51e7d69e4fe9bb44658bf240ee9", + "fields": { + "ligne_5": "CASAPERTA", + "code_commune_insee": "2B201", + "libelle_d_acheminement": "PANCHERACCIA", + "code_postal": "20270", + "nom_de_la_commune": "PANCHERACCIA", + "coordonnees_gps": [ + 42.1964708452, + 9.40495119655 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.40495119655, + 42.1964708452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4611d2b6c32de3b450c58ef3d9443bff5dbe784", + "fields": { + "code_commune_insee": "39079", + "nom_de_la_commune": "BRIOD", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6633058683, + 5.62550336964 + ], + "libelle_d_acheminement": "BRIOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62550336964, + 46.6633058683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbec73f2ace39d2cf0c20d02cf7d0ad508eff0c3", + "fields": { + "code_commune_insee": "2B207", + "nom_de_la_commune": "PENTA DI CASINCA", + "code_postal": "20213", + "coordonnees_gps": [ + 42.4548433729, + 9.49604243043 + ], + "libelle_d_acheminement": "PENTA DI CASINCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.49604243043, + 42.4548433729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd43622784e34b023198bf8f7e630d021a395270", + "fields": { + "code_commune_insee": "39084", + "nom_de_la_commune": "CERNANS", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9343211214, + 5.9394436656 + ], + "libelle_d_acheminement": "CERNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9394436656, + 46.9343211214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7c5c37fd47836c73ee396d923c511b03d41f11b", + "fields": { + "code_commune_insee": "2B213", + "nom_de_la_commune": "PIANELLO", + "code_postal": "20272", + "coordonnees_gps": [ + 42.2974342822, + 9.3564849258 + ], + "libelle_d_acheminement": "PIANELLO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3564849258, + 42.2974342822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "042c99cf8d218c82c2b39864fba8a6ee023ca809", + "fields": { + "ligne_5": "VIREMONT", + "code_commune_insee": "39086", + "libelle_d_acheminement": "CERNON", + "code_postal": "39240", + "nom_de_la_commune": "CERNON", + "coordonnees_gps": [ + 46.4121311574, + 5.64360732811 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64360732811, + 46.4121311574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "633e6c6656232c10ac98efee23ce9c0aabf04433", + "fields": { + "code_commune_insee": "2B222", + "nom_de_la_commune": "PIE D OREZZA", + "code_postal": "20229", + "coordonnees_gps": [ + 42.3741161221, + 9.33870632307 + ], + "libelle_d_acheminement": "PIE D OREZZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.33870632307, + 42.3741161221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce67d32250a0011c25c17f0685bce1f544777300", + "fields": { + "code_commune_insee": "39094", + "nom_de_la_commune": "CHAMOLE", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8443055833, + 5.73874767152 + ], + "libelle_d_acheminement": "CHAMOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73874767152, + 46.8443055833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b598e2b96c42f25bd72aec9cfb2c320b3cb14ed4", + "fields": { + "code_commune_insee": "2B223", + "nom_de_la_commune": "PIETRALBA", + "code_postal": "20218", + "coordonnees_gps": [ + 42.5426494388, + 9.18325880414 + ], + "libelle_d_acheminement": "PIETRALBA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.18325880414, + 42.5426494388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d4c409a0645824fccb8a53ed5499a5ba46c4103", + "fields": { + "code_commune_insee": "39095", + "nom_de_la_commune": "CHAMPAGNE SUR LOUE", + "code_postal": "39600", + "coordonnees_gps": [ + 47.0328816629, + 5.80653382089 + ], + "libelle_d_acheminement": "CHAMPAGNE SUR LOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80653382089, + 47.0328816629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "687018135f00622f58dbbefd059cae5df3562715", + "fields": { + "code_commune_insee": "2B238", + "nom_de_la_commune": "POGGIO DI VENACO", + "code_postal": "20250", + "coordonnees_gps": [ + 42.2684750583, + 9.20706783524 + ], + "libelle_d_acheminement": "POGGIO DI VENACO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.20706783524, + 42.2684750583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6322f2dc2d9bfab03dc7d66d27cb07efe38102d", + "fields": { + "code_commune_insee": "39096", + "nom_de_la_commune": "CHAMPAGNEY", + "code_postal": "39290", + "coordonnees_gps": [ + 47.2596370063, + 5.50446475584 + ], + "libelle_d_acheminement": "CHAMPAGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50446475584, + 47.2596370063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08365e52a5adb7f0bf391d406107a2cc6de4575a", + "fields": { + "code_commune_insee": "2B241", + "nom_de_la_commune": "POGGIO MARINACCIO", + "code_postal": "20237", + "coordonnees_gps": [ + 42.4359731293, + 9.34821605679 + ], + "libelle_d_acheminement": "POGGIO MARINACCIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.34821605679, + 42.4359731293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "007eac7805aa8359ce004f46cd8f24d080b27a09", + "fields": { + "code_commune_insee": "39099", + "nom_de_la_commune": "CHAMPDIVERS", + "code_postal": "39500", + "coordonnees_gps": [ + 47.0078921172, + 5.39015295804 + ], + "libelle_d_acheminement": "CHAMPDIVERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39015295804, + 47.0078921172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea1b98da52bc22722de6b2a574cb731de1877244", + "fields": { + "code_commune_insee": "2B257", + "nom_de_la_commune": "RAPALE", + "code_postal": "20246", + "coordonnees_gps": [ + 42.6204498836, + 9.29645877204 + ], + "libelle_d_acheminement": "RAPALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.29645877204, + 42.6204498836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14201ddfe4c0d1993175b7b28a0e3439b5eaabe7", + "fields": { + "code_commune_insee": "39106", + "nom_de_la_commune": "CHARCHILLA", + "code_postal": "39260", + "coordonnees_gps": [ + 46.4688109023, + 5.71546918875 + ], + "libelle_d_acheminement": "CHARCHILLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71546918875, + 46.4688109023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cafb6ab9ceff4f90b3e445d22e36f5767726d33", + "fields": { + "code_commune_insee": "2B260", + "nom_de_la_commune": "RIVENTOSA", + "code_postal": "20250", + "coordonnees_gps": [ + 42.2478162384, + 9.20244057132 + ], + "libelle_d_acheminement": "RIVENTOSA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.20244057132, + 42.2478162384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f65953f5d1cfcfc695f3a162d9002489551cda65", + "fields": { + "code_commune_insee": "39111", + "nom_de_la_commune": "CHARNOD", + "code_postal": "39240", + "coordonnees_gps": [ + 46.3372486157, + 5.49365223765 + ], + "libelle_d_acheminement": "CHARNOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49365223765, + 46.3372486157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49e8e643a58d6071f6d6a43119ebff94a8fa2620", + "fields": { + "code_commune_insee": "2B261", + "nom_de_la_commune": "ROGLIANO", + "code_postal": "20247", + "coordonnees_gps": [ + 42.9720512637, + 9.42539823747 + ], + "libelle_d_acheminement": "ROGLIANO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42539823747, + 42.9720512637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98abc5240e5bb851dc082a47229736c59a7d2bf8", + "fields": { + "code_commune_insee": "39122", + "nom_de_la_commune": "CHATILLON", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6626648157, + 5.7273967644 + ], + "libelle_d_acheminement": "CHATILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7273967644, + 46.6626648157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d34992bca05fcaad72762b1255502f3a0509abb", + "fields": { + "code_commune_insee": "2B264", + "nom_de_la_commune": "RUSIO", + "code_postal": "20244", + "coordonnees_gps": [ + 42.3537749145, + 9.25853604756 + ], + "libelle_d_acheminement": "RUSIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.25853604756, + 42.3537749145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16c687acca0560331dfd6652ac30de788386b59c", + "fields": { + "ligne_5": "LES CROZATS", + "code_commune_insee": "39130", + "libelle_d_acheminement": "NANCHEZ", + "code_postal": "39150", + "nom_de_la_commune": "NANCHEZ", + "coordonnees_gps": [ + 46.4998251911, + 5.8576069903 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8576069903, + 46.4998251911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a7d3723de37e75866bdcf7dcbda3c2d547586a9", + "fields": { + "code_commune_insee": "2B280", + "nom_de_la_commune": "SILVARECCIO", + "code_postal": "20215", + "coordonnees_gps": [ + 42.4530552903, + 9.41788528717 + ], + "libelle_d_acheminement": "SILVARECCIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.41788528717, + 42.4530552903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2f2d81edf0b9426fbe9deb52887aa5ad5d455af", + "fields": { + "ligne_5": "LES PIARDS", + "code_commune_insee": "39130", + "libelle_d_acheminement": "NANCHEZ", + "code_postal": "39150", + "nom_de_la_commune": "NANCHEZ", + "coordonnees_gps": [ + 46.4998251911, + 5.8576069903 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8576069903, + 46.4998251911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5da62b441e9650205579480628a08cc008a2f26", + "fields": { + "ligne_5": "QUERCIOLO", + "code_commune_insee": "2B286", + "libelle_d_acheminement": "SORBO OCAGNANO", + "code_postal": "20213", + "nom_de_la_commune": "SORBO OCAGNANO", + "coordonnees_gps": [ + 42.4824735958, + 9.48942771888 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.48942771888, + 42.4824735958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "583feeaebb80e19f07c7a4c1bd3e21c4f41ad92f", + "fields": { + "code_commune_insee": "39133", + "nom_de_la_commune": "CHAUX CHAMPAGNY", + "code_postal": "39110", + "coordonnees_gps": [ + 46.8831143398, + 5.87949383777 + ], + "libelle_d_acheminement": "CHAUX CHAMPAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87949383777, + 46.8831143398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ad1ef59bc3d6deb2820dc88f879de441469d600", + "fields": { + "code_commune_insee": "2B301", + "nom_de_la_commune": "SAN GAVINO DI TENDA", + "code_postal": "20246", + "coordonnees_gps": [ + 42.6530617344, + 9.15172283351 + ], + "libelle_d_acheminement": "SAN GAVINO DI TENDA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.15172283351, + 42.6530617344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87599361d6adb5c1d9832913de13f61e5095afaf", + "fields": { + "ligne_5": "CHAMPAGNY", + "code_commune_insee": "39133", + "libelle_d_acheminement": "CHAUX CHAMPAGNY", + "code_postal": "39110", + "nom_de_la_commune": "CHAUX CHAMPAGNY", + "coordonnees_gps": [ + 46.8831143398, + 5.87949383777 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87949383777, + 46.8831143398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e5eb986791ccf571d436e7ed74158b0b7288688", + "fields": { + "ligne_5": "PIETRANERA", + "code_commune_insee": "2B305", + "libelle_d_acheminement": "SAN MARTINO DI LOTA", + "code_postal": "20200", + "nom_de_la_commune": "SAN MARTINO DI LOTA", + "coordonnees_gps": [ + 42.7323992652, + 9.43163085599 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43163085599, + 42.7323992652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afe558714e54e5104c955b43eb79dde6e78441dc", + "fields": { + "code_commune_insee": "39139", + "nom_de_la_commune": "CHENE BERNARD", + "code_postal": "39120", + "coordonnees_gps": [ + 46.917901439, + 5.46969645181 + ], + "libelle_d_acheminement": "CHENE BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46969645181, + 46.917901439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58c2faaef9c92df341f16b60ff6f94fbe5420f36", + "fields": { + "code_commune_insee": "2B307", + "nom_de_la_commune": "SANTA LUCIA DI MORIANI", + "code_postal": "20230", + "coordonnees_gps": [ + 42.3840957627, + 9.51068685295 + ], + "libelle_d_acheminement": "SANTA LUCIA DI MORIANI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.51068685295, + 42.3840957627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69b7f385f19142442d478013fdd4f27a72f5a076", + "fields": { + "code_commune_insee": "39141", + "nom_de_la_commune": "CHEVIGNY", + "code_postal": "39290", + "coordonnees_gps": [ + 47.1765613583, + 5.47410569211 + ], + "libelle_d_acheminement": "CHEVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47410569211, + 47.1765613583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5b48b4c8b44d06662d6085f89f891dd18d1dc3f", + "fields": { + "ligne_5": "MIOMO", + "code_commune_insee": "2B309", + "libelle_d_acheminement": "SANTA MARIA DI LOTA", + "code_postal": "20200", + "nom_de_la_commune": "SANTA MARIA DI LOTA", + "coordonnees_gps": [ + 42.7511136181, + 9.42463745833 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42463745833, + 42.7511136181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a37bddb86ba45636284874e7d24b41e699f9113b", + "fields": { + "code_commune_insee": "39168", + "nom_de_la_commune": "COURBETTE", + "code_postal": "39570", + "coordonnees_gps": [ + 46.597757049, + 5.56912637088 + ], + "libelle_d_acheminement": "COURBETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56912637088, + 46.597757049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "783c921ea07bdfa5ef976918bad4ec88a5db1d0f", + "fields": { + "ligne_5": "FIGARETTO", + "code_commune_insee": "2B319", + "libelle_d_acheminement": "TALASANI", + "code_postal": "20230", + "nom_de_la_commune": "TALASANI", + "coordonnees_gps": [ + 42.4178789576, + 9.50731616445 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.50731616445, + 42.4178789576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "946d1026c781e273ec6935155a634055d7c05c6c", + "fields": { + "code_commune_insee": "39169", + "nom_de_la_commune": "COURBOUZON", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6530259011, + 5.52879804743 + ], + "libelle_d_acheminement": "COURBOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52879804743, + 46.6530259011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a1e30e220ca1390fc85149f078355faffdd9759", + "fields": { + "code_commune_insee": "2B329", + "nom_de_la_commune": "TRALONCA", + "code_postal": "20250", + "coordonnees_gps": [ + 42.3410940153, + 9.19284463541 + ], + "libelle_d_acheminement": "TRALONCA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.19284463541, + 42.3410940153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cecebb02a383b5378848e4eef20dc967148eecae", + "fields": { + "code_commune_insee": "39175", + "nom_de_la_commune": "COYRON", + "code_postal": "39260", + "coordonnees_gps": [ + 46.5124158536, + 5.69815405752 + ], + "libelle_d_acheminement": "COYRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69815405752, + 46.5124158536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70d4c22b63e65626b3b1d8aef0983d7b4cbec1d5", + "fields": { + "code_commune_insee": "2B332", + "nom_de_la_commune": "URTACA", + "code_postal": "20218", + "coordonnees_gps": [ + 42.6207885418, + 9.14775307705 + ], + "libelle_d_acheminement": "URTACA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.14775307705, + 42.6207885418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fda04b449403a0c59603105dcf08f844c8502b52", + "fields": { + "code_commune_insee": "39179", + "nom_de_la_commune": "CRENANS", + "code_postal": "39260", + "coordonnees_gps": [ + 46.4662863715, + 5.74165034768 + ], + "libelle_d_acheminement": "CRENANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74165034768, + 46.4662863715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "920bf6f351d14a4b57ce53ecea5e53ed3e93ac92", + "fields": { + "code_commune_insee": "2B335", + "nom_de_la_commune": "VALLE DI CAMPOLORO", + "code_postal": "20221", + "coordonnees_gps": [ + 42.3352411886, + 9.51479844418 + ], + "libelle_d_acheminement": "VALLE DI CAMPOLORO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.51479844418, + 42.3352411886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9a48a8633f22367b39474bd45ce5622258e8b95", + "fields": { + "code_commune_insee": "39188", + "nom_de_la_commune": "DAMMARTIN MARPAIN", + "code_postal": "39290", + "coordonnees_gps": [ + 47.2530677926, + 5.55397181022 + ], + "libelle_d_acheminement": "DAMMARTIN MARPAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55397181022, + 47.2530677926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d04d7aff77b2b4b7575fbbca162258c78a0a254c", + "fields": { + "code_commune_insee": "2B342", + "nom_de_la_commune": "VENTISERI", + "code_postal": "20240", + "coordonnees_gps": [ + 41.9410129854, + 9.36287097036 + ], + "libelle_d_acheminement": "VENTISERI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36287097036, + 41.9410129854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3e0301a0bdb3b2d46c5c89f5a55c31f2f290566", + "fields": { + "ligne_5": "MARPAIN", + "code_commune_insee": "39188", + "libelle_d_acheminement": "DAMMARTIN MARPAIN", + "code_postal": "39290", + "nom_de_la_commune": "DAMMARTIN MARPAIN", + "coordonnees_gps": [ + 47.2530677926, + 5.55397181022 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55397181022, + 47.2530677926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c36006f78d63650a353afa716cdf607269a4e5f6", + "fields": { + "code_commune_insee": "2B352", + "nom_de_la_commune": "VILLE DI PARASO", + "code_postal": "20279", + "coordonnees_gps": [ + 42.5826432898, + 8.99012410909 + ], + "libelle_d_acheminement": "VILLE DI PARASO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99012410909, + 42.5826432898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "093f69b141d5841f5835d329229506d8b588ea02", + "fields": { + "code_commune_insee": "39189", + "nom_de_la_commune": "DAMPARIS", + "code_postal": "39500", + "coordonnees_gps": [ + 47.0709486148, + 5.40719104716 + ], + "libelle_d_acheminement": "DAMPARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40719104716, + 47.0709486148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de2cba02221fc793d83a15bffe06c0803f9386f7", + "fields": { + "code_commune_insee": "2B353", + "nom_de_la_commune": "VILLE DI PIETRABUGNO", + "code_postal": "20200", + "coordonnees_gps": [ + 42.7159914002, + 9.42737933318 + ], + "libelle_d_acheminement": "VILLE DI PIETRABUGNO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.42737933318, + 42.7159914002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3149579cd9061d9f88b209575bd5bed1a7bd81c9", + "fields": { + "code_commune_insee": "39190", + "nom_de_la_commune": "DAMPIERRE", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1650509305, + 5.74228998802 + ], + "libelle_d_acheminement": "DAMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74228998802, + 47.1650509305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c0af7fa832c025870884d7098f072ef5d6a5801", + "fields": { + "code_commune_insee": "30008", + "nom_de_la_commune": "ALLEGRE LES FUMADES", + "code_postal": "30500", + "coordonnees_gps": [ + 44.1976013658, + 4.25339592955 + ], + "libelle_d_acheminement": "ALLEGRE LES FUMADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25339592955, + 44.1976013658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7f4fda6fc806aafa5f808699fbd02f5d6b39a13", + "fields": { + "code_commune_insee": "39199", + "nom_de_la_commune": "DOMBLANS", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7623690449, + 5.59000211082 + ], + "libelle_d_acheminement": "DOMBLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59000211082, + 46.7623690449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59e1aa7f26a22d95e9937d3d203ac414208a7177", + "fields": { + "code_commune_insee": "30010", + "nom_de_la_commune": "ANDUZE", + "code_postal": "30140", + "coordonnees_gps": [ + 44.0507893674, + 3.97484165309 + ], + "libelle_d_acheminement": "ANDUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97484165309, + 44.0507893674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27d625ca1cb8687b856a1f6a7b31e38fe6ef7bbf", + "fields": { + "ligne_5": "LANERIA", + "code_commune_insee": "39209", + "libelle_d_acheminement": "VAL D EPY", + "code_postal": "39160", + "nom_de_la_commune": "VAL D EPY", + "coordonnees_gps": [ + 46.3756497717, + 5.39068206826 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39068206826, + 46.3756497717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b7e5d132d946bf775208d35fca5c5e9209bf4a5", + "fields": { + "code_commune_insee": "30011", + "nom_de_la_commune": "LES ANGLES", + "code_postal": "30133", + "coordonnees_gps": [ + 43.946680289, + 4.75255256222 + ], + "libelle_d_acheminement": "LES ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75255256222, + 43.946680289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a01e27e84e2268504d3373e13209b09eaebeb9b3", + "fields": { + "ligne_5": "SENAUD", + "code_commune_insee": "39209", + "libelle_d_acheminement": "VAL D EPY", + "code_postal": "39160", + "nom_de_la_commune": "VAL D EPY", + "coordonnees_gps": [ + 46.3756497717, + 5.39068206826 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39068206826, + 46.3756497717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40da3f438f699647d32d8b0eb73354adfd83c609", + "fields": { + "code_commune_insee": "30019", + "nom_de_la_commune": "AUBAIS", + "code_postal": "30250", + "coordonnees_gps": [ + 43.7490254454, + 4.1457680936 + ], + "libelle_d_acheminement": "AUBAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1457680936, + 43.7490254454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6c7f3b8114cafd797a1fa938a56f1975c84b112", + "fields": { + "ligne_5": "LA BALME D EPY", + "code_commune_insee": "39209", + "libelle_d_acheminement": "VAL D EPY", + "code_postal": "39320", + "nom_de_la_commune": "VAL D EPY", + "coordonnees_gps": [ + 46.3756497717, + 5.39068206826 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39068206826, + 46.3756497717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d199b4b75ea8af1864b730a9a614118465eaca88", + "fields": { + "code_commune_insee": "30020", + "nom_de_la_commune": "AUBORD", + "code_postal": "30620", + "coordonnees_gps": [ + 43.7512111654, + 4.31715969164 + ], + "libelle_d_acheminement": "AUBORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31715969164, + 43.7512111654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39244db0150a52164ddc9c682b23e659b95010a4", + "fields": { + "code_commune_insee": "39219", + "nom_de_la_commune": "EVANS", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1795880085, + 5.76480868684 + ], + "libelle_d_acheminement": "EVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76480868684, + 47.1795880085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "179e437cd102d65008ac8354c892d5a6ddfcdcc9", + "fields": { + "code_commune_insee": "30021", + "nom_de_la_commune": "AUBUSSARGUES", + "code_postal": "30190", + "coordonnees_gps": [ + 44.0100150626, + 4.32604375511 + ], + "libelle_d_acheminement": "AUBUSSARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32604375511, + 44.0100150626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3df753e0344a6fb6497962a70a49a8941fc6aa3b", + "fields": { + "code_commune_insee": "39235", + "nom_de_la_commune": "FRAISANS", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1244743587, + 5.75661818843 + ], + "libelle_d_acheminement": "FRAISANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75661818843, + 47.1244743587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8df31aaffba73721e50778dcfa7c530a25ad602", + "fields": { + "code_commune_insee": "30027", + "nom_de_la_commune": "BAGARD", + "code_postal": "30140", + "coordonnees_gps": [ + 44.070391573, + 4.04387785111 + ], + "libelle_d_acheminement": "BAGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04387785111, + 44.070391573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "902118c4a94b07da6bf003f3cf11735d364cadbf", + "fields": { + "code_commune_insee": "39238", + "nom_de_la_commune": "FRASNE LES MEULIERES", + "code_postal": "39290", + "coordonnees_gps": [ + 47.1966162247, + 5.50343047257 + ], + "libelle_d_acheminement": "FRASNE LES MEULIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50343047257, + 47.1966162247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd15c4438fbfd312ff11aaa27817d95670570d96", + "fields": { + "code_commune_insee": "30034", + "nom_de_la_commune": "BELLEGARDE", + "code_postal": "30127", + "coordonnees_gps": [ + 43.7518139903, + 4.49573824509 + ], + "libelle_d_acheminement": "BELLEGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49573824509, + 43.7518139903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "261742d452ecab412718010723cfcfc945f9ca9a", + "fields": { + "code_commune_insee": "39240", + "nom_de_la_commune": "LE FRASNOIS", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6361110907, + 5.89061826384 + ], + "libelle_d_acheminement": "LE FRASNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89061826384, + 46.6361110907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7f715ee1d897eacd8248a982ac7034a5131fe4f", + "fields": { + "code_commune_insee": "30035", + "nom_de_la_commune": "BELVEZET", + "code_postal": "30580", + "coordonnees_gps": [ + 44.0908103949, + 4.3554328805 + ], + "libelle_d_acheminement": "BELVEZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3554328805, + 44.0908103949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "363f011bf99f73ef99a3a5621eecccebcb77f52d", + "fields": { + "code_commune_insee": "39244", + "nom_de_la_commune": "FRONTENAY", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7884051607, + 5.63215279855 + ], + "libelle_d_acheminement": "FRONTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63215279855, + 46.7884051607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddde0db8d5cddca8c30f793b65ebb8b90c11fa81", + "fields": { + "ligne_5": "FOUSSIGNARGUES", + "code_commune_insee": "30037", + "libelle_d_acheminement": "BESSEGES", + "code_postal": "30160", + "nom_de_la_commune": "BESSEGES", + "coordonnees_gps": [ + 44.290395291, + 4.10784015546 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10784015546, + 44.290395291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a8280ee0ccaa3f7d4567a9baf85e51a03fc7459", + "fields": { + "code_commune_insee": "39246", + "nom_de_la_commune": "GENDREY", + "code_postal": "39350", + "coordonnees_gps": [ + 47.1963062843, + 5.68474768742 + ], + "libelle_d_acheminement": "GENDREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68474768742, + 47.1963062843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51ef05d7ee65c5cbb8c1ab55a415abfbe64b4b03", + "fields": { + "code_commune_insee": "30039", + "nom_de_la_commune": "BEZOUCE", + "code_postal": "30320", + "coordonnees_gps": [ + 43.8745362306, + 4.50048572074 + ], + "libelle_d_acheminement": "BEZOUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50048572074, + 43.8745362306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ede3acdb040e4c8e866fa5afedc4735f6af88d", + "fields": { + "ligne_5": "CHATEAU DES PRES", + "code_commune_insee": "39258", + "libelle_d_acheminement": "GRANDE RIVIERE CHATEAU", + "code_postal": "39150", + "nom_de_la_commune": "GRANDE RIVIERE CHATEAU", + "coordonnees_gps": [ + 46.5345269468, + 5.90836886735 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90836886735, + 46.5345269468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c7fcf12f687067b37dea4ae2973ee27aca81e71", + "fields": { + "code_commune_insee": "30041", + "nom_de_la_commune": "BLAUZAC", + "code_postal": "30700", + "coordonnees_gps": [ + 43.9671760777, + 4.37507310101 + ], + "libelle_d_acheminement": "BLAUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37507310101, + 43.9671760777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8734f76edc0223e2b2f5738e1176ac448968cb5", + "fields": { + "code_commune_insee": "39265", + "nom_de_la_commune": "HAUTECOUR", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5618581979, + 5.78248121784 + ], + "libelle_d_acheminement": "HAUTECOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78248121784, + 46.5618581979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6fc38d9253945715eb6d307207062b97d0137ca", + "fields": { + "code_commune_insee": "30042", + "nom_de_la_commune": "BOISSET ET GAUJAC", + "code_postal": "30140", + "coordonnees_gps": [ + 44.0479381794, + 4.02713622056 + ], + "libelle_d_acheminement": "BOISSET ET GAUJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02713622056, + 44.0479381794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a04ec0134e05766a5355b06d37b3c83ee98edd0e", + "fields": { + "code_commune_insee": "39268", + "nom_de_la_commune": "IVREY", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9896694656, + 5.89705874388 + ], + "libelle_d_acheminement": "IVREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89705874388, + 46.9896694656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23d83c9f0e1cb1215de95b5dedd839fa7eb416e9", + "fields": { + "ligne_5": "MARS", + "code_commune_insee": "30052", + "libelle_d_acheminement": "BREAU MARS", + "code_postal": "30120", + "nom_de_la_commune": "BREAU MARS", + "coordonnees_gps": [ + 44.0295400705, + 3.55673412919 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55673412919, + 44.0295400705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a65a5f866cfd5f09d8c1d95b73b0bae46e3c071", + "fields": { + "ligne_5": "DESSIA", + "code_commune_insee": "39273", + "libelle_d_acheminement": "MONTLAINSIA", + "code_postal": "39320", + "nom_de_la_commune": "MONTLAINSIA", + "coordonnees_gps": [ + 46.3895271897, + 5.48848801863 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48848801863, + 46.3895271897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b011ea4acc65be577e448289dab7238c0442087e", + "fields": { + "code_commune_insee": "30066", + "nom_de_la_commune": "CANNES ET CLAIRAN", + "code_postal": "30260", + "coordonnees_gps": [ + 43.9112568752, + 4.08467380189 + ], + "libelle_d_acheminement": "CANNES ET CLAIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08467380189, + 43.9112568752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0864516af54d2511ac06c38c38327f146cdc05e", + "fields": { + "ligne_5": "MONTAGNA LE TEMPLIER", + "code_commune_insee": "39273", + "libelle_d_acheminement": "MONTLAINSIA", + "code_postal": "39320", + "nom_de_la_commune": "MONTLAINSIA", + "coordonnees_gps": [ + 46.3895271897, + 5.48848801863 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48848801863, + 46.3895271897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46dc8b7799a82c23c5f1689e7761b2dbe0de2065", + "fields": { + "code_commune_insee": "30071", + "nom_de_la_commune": "CASSAGNOLES", + "code_postal": "30350", + "coordonnees_gps": [ + 44.0194347617, + 4.1266907842 + ], + "libelle_d_acheminement": "CASSAGNOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1266907842, + 44.0194347617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "142b55b029d0fa935a47991943c36676aedbbd49", + "fields": { + "ligne_5": "ROSNAY", + "code_commune_insee": "39288", + "libelle_d_acheminement": "LAVIGNY", + "code_postal": "39210", + "nom_de_la_commune": "LAVIGNY", + "coordonnees_gps": [ + 46.717011316, + 5.60517764784 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60517764784, + 46.717011316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1666edf934b405b3b7a799ef027060272d6f0ca3", + "fields": { + "code_commune_insee": "30075", + "nom_de_la_commune": "CAVEIRAC", + "code_postal": "30820", + "coordonnees_gps": [ + 43.8338668617, + 4.2678579617 + ], + "libelle_d_acheminement": "CAVEIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2678579617, + 43.8338668617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd62ed44724a99bb2fb5349e635f80c1f08446ea", + "fields": { + "code_commune_insee": "39302", + "nom_de_la_commune": "LOUVATANGE", + "code_postal": "39350", + "coordonnees_gps": [ + 47.1895729875, + 5.72090559448 + ], + "libelle_d_acheminement": "LOUVATANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72090559448, + 47.1895729875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f59e48ef0a4e663caa29e4970ee861c01e87bd9b", + "fields": { + "code_commune_insee": "30080", + "nom_de_la_commune": "CHAMBORIGAUD", + "code_postal": "30530", + "coordonnees_gps": [ + 44.299833692, + 3.96212811106 + ], + "libelle_d_acheminement": "CHAMBORIGAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96212811106, + 44.299833692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be2505cff980a235a892c323ce1fc349e4ab10aa", + "fields": { + "code_commune_insee": "39310", + "nom_de_la_commune": "MANTRY", + "code_postal": "39230", + "coordonnees_gps": [ + 46.7949152079, + 5.55490459828 + ], + "libelle_d_acheminement": "MANTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55490459828, + 46.7949152079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1276005aa97c2d167f7a94dcae9f6bf7d9ee367c", + "fields": { + "code_commune_insee": "30082", + "nom_de_la_commune": "CLARENSAC", + "code_postal": "30870", + "coordonnees_gps": [ + 43.8371741031, + 4.22473221709 + ], + "libelle_d_acheminement": "CLARENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22473221709, + 43.8371741031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "556bb343595ea29c627f1431d9e48f5e835db1c1", + "fields": { + "code_commune_insee": "39313", + "nom_de_la_commune": "MARIGNY", + "code_postal": "39130", + "coordonnees_gps": [ + 46.67956984, + 5.77875923329 + ], + "libelle_d_acheminement": "MARIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77875923329, + 46.67956984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2bab1fe0fef7bb877c0fea15d34eaf103f7bac5", + "fields": { + "code_commune_insee": "30084", + "nom_de_la_commune": "CODOLET", + "code_postal": "30200", + "coordonnees_gps": [ + 44.1274492778, + 4.70097099002 + ], + "libelle_d_acheminement": "CODOLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70097099002, + 44.1274492778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3960b158f75c0cadeef4113b68b3782e8725f3b6", + "fields": { + "code_commune_insee": "39315", + "nom_de_la_commune": "MARNOZ", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9538587219, + 5.83609760607 + ], + "libelle_d_acheminement": "MARNOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83609760607, + 46.9538587219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc105d0a491bdb0399cf8b33e716fafb363faeaa", + "fields": { + "code_commune_insee": "30089", + "nom_de_la_commune": "COMPS", + "code_postal": "30300", + "coordonnees_gps": [ + 43.848697153, + 4.59238144538 + ], + "libelle_d_acheminement": "COMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59238144538, + 43.848697153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a54a6602fe04d4bdd6a08e9abd3e07e4f56c47f1", + "fields": { + "code_commune_insee": "39318", + "nom_de_la_commune": "MARTIGNA", + "code_postal": "39260", + "coordonnees_gps": [ + 46.3895643174, + 5.70098725643 + ], + "libelle_d_acheminement": "MARTIGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70098725643, + 46.3895643174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "248c117b725d6279495516169f06f66354af06d8", + "fields": { + "code_commune_insee": "30102", + "nom_de_la_commune": "DIONS", + "code_postal": "30190", + "coordonnees_gps": [ + 43.9259952676, + 4.29189609942 + ], + "libelle_d_acheminement": "DIONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29189609942, + 43.9259952676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6392aa333f48eced13dc53fdc91d1d3746510b3a", + "fields": { + "code_commune_insee": "39319", + "nom_de_la_commune": "MATHENAY", + "code_postal": "39600", + "coordonnees_gps": [ + 46.9295460326, + 5.67894165868 + ], + "libelle_d_acheminement": "MATHENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67894165868, + 46.9295460326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85eec752e89ff8f43de3f4e13bdf1d5c5e3d110f", + "fields": { + "code_commune_insee": "30105", + "nom_de_la_commune": "DOURBIES", + "code_postal": "30750", + "coordonnees_gps": [ + 44.0634660378, + 3.4803051398 + ], + "libelle_d_acheminement": "DOURBIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4803051398, + 44.0634660378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d32b5a3649170fc115f444ef6b87601d7b4b7e8", + "fields": { + "code_commune_insee": "39326", + "nom_de_la_commune": "MESNOIS", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5942298159, + 5.67721332871 + ], + "libelle_d_acheminement": "MESNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67721332871, + 46.5942298159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee0bb8b24f16c3b90d0f9f7c3680c10a68ad0d3a", + "fields": { + "code_commune_insee": "30123", + "nom_de_la_commune": "GALLARGUES LE MONTUEUX", + "code_postal": "30660", + "coordonnees_gps": [ + 43.716675484, + 4.17183197752 + ], + "libelle_d_acheminement": "GALLARGUES LE MONTUEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17183197752, + 43.716675484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afd2838554bfd5cd1c590ffc7746fef83588d00f", + "fields": { + "ligne_5": "MOLPRE", + "code_commune_insee": "39329", + "libelle_d_acheminement": "MIEGES", + "code_postal": "39250", + "nom_de_la_commune": "MIEGES", + "coordonnees_gps": [ + 46.7873509128, + 6.04198451361 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04198451361, + 46.7873509128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3e7801f65d3f98613995142aa3a0a6c1efa81ed", + "fields": { + "code_commune_insee": "30134", + "nom_de_la_commune": "ISSIRAC", + "code_postal": "30760", + "coordonnees_gps": [ + 44.2705463056, + 4.47679766776 + ], + "libelle_d_acheminement": "ISSIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47679766776, + 44.2705463056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53b170d639ec12a3642872c0abfcc0463f2ab4d7", + "fields": { + "code_commune_insee": "39333", + "nom_de_la_commune": "MOIRANS EN MONTAGNE", + "code_postal": "39260", + "coordonnees_gps": [ + 46.4388080084, + 5.73795329823 + ], + "libelle_d_acheminement": "MOIRANS EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73795329823, + 46.4388080084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a72c88bed07400b46ef6184a57d96cc9f820e06", + "fields": { + "code_commune_insee": "30147", + "nom_de_la_commune": "LEZAN", + "code_postal": "30350", + "coordonnees_gps": [ + 44.012896173, + 4.05098256075 + ], + "libelle_d_acheminement": "LEZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05098256075, + 44.012896173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a85c65094537d6c975ab21bf50202e8076f52f93", + "fields": { + "code_commune_insee": "39338", + "nom_de_la_commune": "MOLAY", + "code_postal": "39500", + "coordonnees_gps": [ + 47.0155461717, + 5.42348925826 + ], + "libelle_d_acheminement": "MOLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42348925826, + 47.0155461717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "027d3bc1d750e08fb8d65a4621473e293b8e3bfd", + "fields": { + "code_commune_insee": "30156", + "nom_de_la_commune": "MARGUERITTES", + "code_postal": "30320", + "coordonnees_gps": [ + 43.8611502608, + 4.45020643923 + ], + "libelle_d_acheminement": "MARGUERITTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45020643923, + 43.8611502608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce3d0625407ed699010b9c171db0e11df00d7b41", + "fields": { + "ligne_5": "CHASSAL", + "code_commune_insee": "39339", + "libelle_d_acheminement": "CHASSAL MOLINGES", + "code_postal": "39360", + "nom_de_la_commune": "CHASSAL MOLINGES", + "coordonnees_gps": [ + 46.35182997, + 5.76359169948 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76359169948, + 46.35182997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d32eb1896710e75be63dd904c3c627453f34395", + "fields": { + "code_commune_insee": "30167", + "nom_de_la_commune": "MEYRANNES", + "code_postal": "30410", + "coordonnees_gps": [ + 44.2779055654, + 4.15935326092 + ], + "libelle_d_acheminement": "MEYRANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15935326092, + 44.2779055654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59075944832f73eba02cbe594618d30e94ce9186", + "fields": { + "code_commune_insee": "39344", + "nom_de_la_commune": "MONNET LA VILLE", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7245823636, + 5.81585271352 + ], + "libelle_d_acheminement": "MONNET LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81585271352, + 46.7245823636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe29ac080cf8c659c626001eee030ae24a158c6f", + "fields": { + "code_commune_insee": "30176", + "nom_de_la_commune": "MONTDARDIER", + "code_postal": "30120", + "coordonnees_gps": [ + 43.9336164212, + 3.57875988754 + ], + "libelle_d_acheminement": "MONTDARDIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57875988754, + 43.9336164212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00c0087219eabe3de8aabb0b447e2136840ec508", + "fields": { + "code_commune_insee": "39345", + "nom_de_la_commune": "MONNIERES", + "code_postal": "39100", + "coordonnees_gps": [ + 47.1140594899, + 5.46044213238 + ], + "libelle_d_acheminement": "MONNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46044213238, + 47.1140594899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "214277bdbf2c965eeb737aac65ce40052fc3ea0c", + "fields": { + "code_commune_insee": "30178", + "nom_de_la_commune": "MONTFAUCON", + "code_postal": "30150", + "coordonnees_gps": [ + 44.0783218138, + 4.74279403652 + ], + "libelle_d_acheminement": "MONTFAUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74279403652, + 44.0783218138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa5973fbc537ed76614a5f404080a1171accd161", + "fields": { + "code_commune_insee": "39349", + "nom_de_la_commune": "MONTAIN", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7209461149, + 5.57753660512 + ], + "libelle_d_acheminement": "MONTAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57753660512, + 46.7209461149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f132e2c7f67b556fd8981c0281349eefc8f580b", + "fields": { + "code_commune_insee": "30180", + "nom_de_la_commune": "MONTIGNARGUES", + "code_postal": "30190", + "coordonnees_gps": [ + 43.9318429657, + 4.20663063172 + ], + "libelle_d_acheminement": "MONTIGNARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20663063172, + 43.9318429657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9755ef9541e5fea87d8125448da3770086ee2cdf", + "fields": { + "code_commune_insee": "39356", + "nom_de_la_commune": "MONTIGNY SUR L AIN", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7050355286, + 5.79177737951 + ], + "libelle_d_acheminement": "MONTIGNY SUR L AIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79177737951, + 46.7050355286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01d9ceaf341fcecc72e02db68a1cbb243cf5420a", + "fields": { + "code_commune_insee": "30181", + "nom_de_la_commune": "MONTMIRAT", + "code_postal": "30260", + "coordonnees_gps": [ + 43.9030471279, + 4.117330808 + ], + "libelle_d_acheminement": "MONTMIRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.117330808, + 43.9030471279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a48c927bfef608b326cbb4eb2f60fb66277564b8", + "fields": { + "code_commune_insee": "39360", + "nom_de_la_commune": "MONTMIREY LA VILLE", + "code_postal": "39290", + "coordonnees_gps": [ + 47.2170742688, + 5.51651426821 + ], + "libelle_d_acheminement": "MONTMIREY LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51651426821, + 47.2170742688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e02e5cde37e26bb1f844d7b287a587e0aaedb96f", + "fields": { + "code_commune_insee": "30189", + "nom_de_la_commune": "NIMES", + "code_postal": "30000", + "coordonnees_gps": [ + 43.844938394, + 4.34806796996 + ], + "libelle_d_acheminement": "NIMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34806796996, + 43.844938394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1abc35abdff369f2d3a7f084497352996b395ea5", + "fields": { + "code_commune_insee": "39365", + "nom_de_la_commune": "MONT SOUS VAUDREY", + "code_postal": "39380", + "coordonnees_gps": [ + 46.9631076045, + 5.59448295865 + ], + "libelle_d_acheminement": "MONT SOUS VAUDREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59448295865, + 46.9631076045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "776bcd3331d8430b639efbc2fffc4692a893bfff", + "fields": { + "code_commune_insee": "30203", + "nom_de_la_commune": "PORTES", + "code_postal": "30530", + "coordonnees_gps": [ + 44.2634305741, + 4.03867170883 + ], + "libelle_d_acheminement": "PORTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03867170883, + 44.2634305741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac01bb5b252788a91abafb983e7777e753dac721", + "fields": { + "ligne_5": "MOREZ", + "code_commune_insee": "39368", + "libelle_d_acheminement": "HAUTS DE BIENNE", + "code_postal": "39400", + "nom_de_la_commune": "HAUTS DE BIENNE", + "coordonnees_gps": [ + 46.5258425381, + 6.03328656487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03328656487, + 46.5258425381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6e7dca8c665f301741875fa938e5a7afa9f4ec4", + "fields": { + "code_commune_insee": "30219", + "nom_de_la_commune": "ROGUES", + "code_postal": "30120", + "coordonnees_gps": [ + 43.8787778933, + 3.5616521889 + ], + "libelle_d_acheminement": "ROGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5616521889, + 43.8787778933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a748d16809c21b97e8b3e4d9f58400139a5c01c", + "fields": { + "code_commune_insee": "39372", + "nom_de_la_commune": "MOURNANS CHARBONNY", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7768224778, + 5.99039184457 + ], + "libelle_d_acheminement": "MOURNANS CHARBONNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99039184457, + 46.7768224778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f34732dff7887a9ff746e0f690cab84f581b503", + "fields": { + "code_commune_insee": "30225", + "nom_de_la_commune": "SABRAN", + "code_postal": "30200", + "coordonnees_gps": [ + 44.1502616277, + 4.5512334639 + ], + "libelle_d_acheminement": "SABRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5512334639, + 44.1502616277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80f804f1656679297a7c3d64a271c15dc07d7233", + "fields": { + "code_commune_insee": "39377", + "nom_de_la_commune": "MUTIGNEY", + "code_postal": "39290", + "coordonnees_gps": [ + 47.2820712472, + 5.53021636732 + ], + "libelle_d_acheminement": "MUTIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53021636732, + 47.2820712472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15e22dc5b89110da9ef9d9a23ba3f6b066e01354", + "fields": { + "code_commune_insee": "30229", + "nom_de_la_commune": "ST ANDRE DE MAJENCOULES", + "code_postal": "30570", + "coordonnees_gps": [ + 44.0274774754, + 3.67645577466 + ], + "libelle_d_acheminement": "ST ANDRE DE MAJENCOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67645577466, + 44.0274774754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ca7db6948193757d8c875ab811ec65b9de2f25f", + "fields": { + "code_commune_insee": "39381", + "nom_de_la_commune": "LES NANS", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7942578925, + 5.97354217641 + ], + "libelle_d_acheminement": "LES NANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97354217641, + 46.7942578925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de92fde5a77849b88a7d3e96df4b0f00cfe91eed", + "fields": { + "code_commune_insee": "30244", + "nom_de_la_commune": "ST CLEMENT", + "code_postal": "30260", + "coordonnees_gps": [ + 43.8275634838, + 4.02576741682 + ], + "libelle_d_acheminement": "ST CLEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02576741682, + 43.8275634838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14a0692c22841d274d4e5a1e4140d211ea7567d5", + "fields": { + "code_commune_insee": "39385", + "nom_de_la_commune": "NEUBLANS ABERGEMENT", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9040741283, + 5.33914629457 + ], + "libelle_d_acheminement": "NEUBLANS ABERGEMENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33914629457, + 46.9040741283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c3c292013cf547ff5720968242db0ca14321e1f", + "fields": { + "code_commune_insee": "30248", + "nom_de_la_commune": "ST DEZERY", + "code_postal": "30190", + "coordonnees_gps": [ + 43.9956592044, + 4.26527748265 + ], + "libelle_d_acheminement": "ST DEZERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26527748265, + 43.9956592044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d02a2ba906608cb886fa053583da43c7126b803", + "fields": { + "code_commune_insee": "39393", + "nom_de_la_commune": "ONGLIERES", + "code_postal": "39250", + "coordonnees_gps": [ + 46.8028448995, + 6.00043623502 + ], + "libelle_d_acheminement": "ONGLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00043623502, + 46.8028448995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cddd1ef38ac0ea0fc3cfc259b38c2efd8d8532e", + "fields": { + "code_commune_insee": "30252", + "nom_de_la_commune": "ST FELIX DE PALLIERES", + "code_postal": "30140", + "coordonnees_gps": [ + 44.0231873129, + 3.92590252525 + ], + "libelle_d_acheminement": "ST FELIX DE PALLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92590252525, + 44.0231873129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac33107de9e6ad42f3690843d03bba8b09f4b6c4", + "fields": { + "code_commune_insee": "39400", + "nom_de_la_commune": "OUR", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1073810087, + 5.64890585265 + ], + "libelle_d_acheminement": "OUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64890585265, + 47.1073810087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a85362ff44d53f0810bd2ddb91809a2e6ecc885e", + "fields": { + "code_commune_insee": "30253", + "nom_de_la_commune": "ST FLORENT SUR AUZONNET", + "code_postal": "30960", + "coordonnees_gps": [ + 44.2374003099, + 4.1069464512 + ], + "libelle_d_acheminement": "ST FLORENT SUR AUZONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1069464512, + 44.2374003099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e2997ea9311d863972029496acb01c64dd7067f", + "fields": { + "code_commune_insee": "39403", + "nom_de_la_commune": "PAGNOZ", + "code_postal": "39330", + "coordonnees_gps": [ + 46.9741968646, + 5.82590898779 + ], + "libelle_d_acheminement": "PAGNOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82590898779, + 46.9741968646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9e481cab50ae03c1a5450b4e28d7659506461bd", + "fields": { + "code_commune_insee": "30256", + "nom_de_la_commune": "ST GERVAIS", + "code_postal": "30200", + "coordonnees_gps": [ + 44.1950468347, + 4.5792517041 + ], + "libelle_d_acheminement": "ST GERVAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5792517041, + 44.1950468347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3473f3dd66313ae338ff583ac1880621151fe9f5", + "fields": { + "code_commune_insee": "39405", + "nom_de_la_commune": "PARCEY", + "code_postal": "39100", + "coordonnees_gps": [ + 47.0223001054, + 5.47952052073 + ], + "libelle_d_acheminement": "PARCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47952052073, + 47.0223001054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3cd3a175fd570b24aefacbc1076e6954331b483", + "fields": { + "code_commune_insee": "30262", + "nom_de_la_commune": "ST HIPPOLYTE DE MONTAIGU", + "code_postal": "30700", + "coordonnees_gps": [ + 44.033439579, + 4.49431949045 + ], + "libelle_d_acheminement": "ST HIPPOLYTE DE MONTAIGU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49431949045, + 44.033439579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dcadea7d8c6db3721ef175b3724a92e8a256978", + "fields": { + "code_commune_insee": "39420", + "nom_de_la_commune": "PIMORIN", + "code_postal": "39270", + "coordonnees_gps": [ + 46.4958087462, + 5.50106506997 + ], + "libelle_d_acheminement": "PIMORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50106506997, + 46.4958087462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7191faa4b4c7c1f41302b147a2053956546ab20", + "fields": { + "code_commune_insee": "30269", + "nom_de_la_commune": "ST JEAN DU GARD", + "code_postal": "30270", + "coordonnees_gps": [ + 44.1071750382, + 3.87785905992 + ], + "libelle_d_acheminement": "ST JEAN DU GARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87785905992, + 44.1071750382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56c49376746156dbf5a3c22e372ef5c73c775b44", + "fields": { + "code_commune_insee": "39423", + "nom_de_la_commune": "PLAISIA", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5243667153, + 5.63724392564 + ], + "libelle_d_acheminement": "PLAISIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63724392564, + 46.5243667153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e53e28558eed376a1d4bd5ac56c3841438aaca7a", + "fields": { + "code_commune_insee": "30271", + "nom_de_la_commune": "ST JULIEN DE CASSAGNAS", + "code_postal": "30500", + "coordonnees_gps": [ + 44.2129255988, + 4.20424257202 + ], + "libelle_d_acheminement": "ST JULIEN DE CASSAGNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20424257202, + 44.2129255988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "656d488350913187b4d078d0889a6929c73a0729", + "fields": { + "ligne_5": "LA PERRENA", + "code_commune_insee": "39424", + "libelle_d_acheminement": "LES PLANCHES EN MONTAGNE", + "code_postal": "39150", + "nom_de_la_commune": "LES PLANCHES EN MONTAGNE", + "coordonnees_gps": [ + 46.6636417264, + 6.00067607182 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00067607182, + 46.6636417264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39f726c9cddd6eb6cab16a8f7e8410e789d9b18f", + "fields": { + "code_commune_insee": "30273", + "nom_de_la_commune": "ST JULIEN DE PEYROLAS", + "code_postal": "30760", + "coordonnees_gps": [ + 44.2832227467, + 4.56872809849 + ], + "libelle_d_acheminement": "ST JULIEN DE PEYROLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56872809849, + 44.2832227467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf4e31d8058e08224c4340cff7735f3fc7cb1c35", + "fields": { + "code_commune_insee": "39426", + "nom_de_la_commune": "PLASNE", + "code_postal": "39800", + "coordonnees_gps": [ + 46.7948712678, + 5.69040057232 + ], + "libelle_d_acheminement": "PLASNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69040057232, + 46.7948712678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b690788056050438846a96944d0f58b6a4c01d8", + "fields": { + "code_commune_insee": "30290", + "nom_de_la_commune": "ST PAULET DE CAISSON", + "code_postal": "30130", + "coordonnees_gps": [ + 44.2607888624, + 4.58682211598 + ], + "libelle_d_acheminement": "ST PAULET DE CAISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58682211598, + 44.2607888624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "163f3a6f4e2d73ab01e293e06f9cc53781fa3d6c", + "fields": { + "code_commune_insee": "39428", + "nom_de_la_commune": "PLENISETTE", + "code_postal": "39250", + "coordonnees_gps": [ + 46.8047324429, + 6.01569148453 + ], + "libelle_d_acheminement": "PLENISETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01569148453, + 46.8047324429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a20fe04d60becd83bca4686a1a49d0d6e5983292", + "fields": { + "code_commune_insee": "30291", + "nom_de_la_commune": "ST PAUL LA COSTE", + "code_postal": "30480", + "coordonnees_gps": [ + 44.1540122871, + 3.97020875804 + ], + "libelle_d_acheminement": "ST PAUL LA COSTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97020875804, + 44.1540122871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02af6782431cb83db85e2b1015930c5115a95b49", + "fields": { + "code_commune_insee": "39429", + "nom_de_la_commune": "PLEURE", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9155544802, + 5.46006716297 + ], + "libelle_d_acheminement": "PLEURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46006716297, + 46.9155544802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc96f992fc50940f8527c17f72e243907ca190f9", + "fields": { + "code_commune_insee": "30294", + "nom_de_la_commune": "ST PRIVAT DES VIEUX", + "code_postal": "30340", + "coordonnees_gps": [ + 44.1416859983, + 4.13063351815 + ], + "libelle_d_acheminement": "ST PRIVAT DES VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13063351815, + 44.1416859983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a04b1927f9ec6432e5cc5456f8ddc9217dc27410", + "fields": { + "code_commune_insee": "39430", + "nom_de_la_commune": "PLUMONT", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1107713275, + 5.71692693356 + ], + "libelle_d_acheminement": "PLUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71692693356, + 47.1107713275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40efbc24f153cc1a777ca014903ca7a4bb4a5d23", + "fields": { + "code_commune_insee": "30297", + "nom_de_la_commune": "ST SAUVEUR CAMPRIEU", + "code_postal": "30750", + "coordonnees_gps": [ + 44.1045314812, + 3.47514344344 + ], + "libelle_d_acheminement": "ST SAUVEUR CAMPRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47514344344, + 44.1045314812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0b8e4c16067c4b7bc8ce239ac3bda33f2eea65b", + "fields": { + "code_commune_insee": "39431", + "nom_de_la_commune": "POIDS DE FIOLE", + "code_postal": "39570", + "coordonnees_gps": [ + 46.5944604506, + 5.62239260294 + ], + "libelle_d_acheminement": "POIDS DE FIOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62239260294, + 46.5944604506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e3d96708acd9cfc1e0a00e1993cc069b6c282e4", + "fields": { + "code_commune_insee": "30300", + "nom_de_la_commune": "ST THEODORIT", + "code_postal": "30260", + "coordonnees_gps": [ + 43.9433900871, + 4.08343704008 + ], + "libelle_d_acheminement": "ST THEODORIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08343704008, + 43.9433900871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e784e4a08935d0b9f52caa3459f1ead52933ade", + "fields": { + "code_commune_insee": "39437", + "nom_de_la_commune": "PONT DU NAVOY", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7317231278, + 5.78965012447 + ], + "libelle_d_acheminement": "PONT DU NAVOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78965012447, + 46.7317231278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32bb1c0a4764978a72460774ae1c643dd50dfcf5", + "fields": { + "code_commune_insee": "30301", + "nom_de_la_commune": "ST VICTOR DES OULES", + "code_postal": "30700", + "coordonnees_gps": [ + 44.0432790146, + 4.4844159444 + ], + "libelle_d_acheminement": "ST VICTOR DES OULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4844159444, + 44.0432790146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc8279cb65e63f57203a227830987f7a9a17c5ec", + "fields": { + "code_commune_insee": "39439", + "nom_de_la_commune": "PORT LESNEY", + "code_postal": "39600", + "coordonnees_gps": [ + 46.9984173967, + 5.81915102369 + ], + "libelle_d_acheminement": "PORT LESNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81915102369, + 46.9984173967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83a9438aea4a74e80927f24f1899b7096d631a4d", + "fields": { + "code_commune_insee": "30305", + "nom_de_la_commune": "SALINDRES", + "code_postal": "30340", + "coordonnees_gps": [ + 44.1650140999, + 4.16135836746 + ], + "libelle_d_acheminement": "SALINDRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16135836746, + 44.1650140999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e1441cdd047647cde9f17f82e9b63a6f44d22fb", + "fields": { + "code_commune_insee": "39449", + "nom_de_la_commune": "RAINANS", + "code_postal": "39290", + "coordonnees_gps": [ + 47.1574395405, + 5.47297750581 + ], + "libelle_d_acheminement": "RAINANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47297750581, + 47.1574395405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61a9c56eb36ca725342ff824e0b3871c951badcd", + "fields": { + "code_commune_insee": "30316", + "nom_de_la_commune": "SENECHAS", + "code_postal": "30450", + "coordonnees_gps": [ + 44.3355438753, + 4.00159676417 + ], + "libelle_d_acheminement": "SENECHAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00159676417, + 44.3355438753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c25a9207c6283e1f8ede3f99e2e2766b727c9dfc", + "fields": { + "code_commune_insee": "39458", + "nom_de_la_commune": "REVIGNY", + "code_postal": "39570", + "coordonnees_gps": [ + 46.627894009, + 5.60893861007 + ], + "libelle_d_acheminement": "REVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60893861007, + 46.627894009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46ab9a10602b56dfdfcb1da8974984676a8434e0", + "fields": { + "code_commune_insee": "30318", + "nom_de_la_commune": "SERVAS", + "code_postal": "30340", + "coordonnees_gps": [ + 44.1561490633, + 4.19299074511 + ], + "libelle_d_acheminement": "SERVAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19299074511, + 44.1561490633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c53fed3e0bed2e75e77a16a051c76fc48ba06f89", + "fields": { + "code_commune_insee": "39464", + "nom_de_la_commune": "ROMAIN", + "code_postal": "39350", + "coordonnees_gps": [ + 47.2075786378, + 5.71828846623 + ], + "libelle_d_acheminement": "ROMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71828846623, + 47.2075786378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd48b518e4796ef27ee402cd115db0a378ef5432", + "fields": { + "code_commune_insee": "30323", + "nom_de_la_commune": "SOUSTELLE", + "code_postal": "30110", + "coordonnees_gps": [ + 44.1724100561, + 4.00032794354 + ], + "libelle_d_acheminement": "SOUSTELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00032794354, + 44.1724100561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "297107476f338df415cec804b208f8c693b7b370", + "fields": { + "ligne_5": "LA CURE", + "code_commune_insee": "39470", + "libelle_d_acheminement": "LES ROUSSES", + "code_postal": "39220", + "nom_de_la_commune": "LES ROUSSES", + "coordonnees_gps": [ + 46.4984696055, + 6.07006530541 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07006530541, + 46.4984696055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a3b4d6ac248536f120e5037c0ae20f38f4778e2", + "fields": { + "code_commune_insee": "30326", + "nom_de_la_commune": "TAVEL", + "code_postal": "30126", + "coordonnees_gps": [ + 44.0091067079, + 4.69193151611 + ], + "libelle_d_acheminement": "TAVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69193151611, + 44.0091067079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "175183067b4e4d1fcd1af9078868631d08c1f2eb", + "fields": { + "ligne_5": "LES ARCETS", + "code_commune_insee": "39470", + "libelle_d_acheminement": "LES ROUSSES", + "code_postal": "39400", + "nom_de_la_commune": "LES ROUSSES", + "coordonnees_gps": [ + 46.4984696055, + 6.07006530541 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07006530541, + 46.4984696055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12908d172c18d4b152c3df7226e6a18089bc82c1", + "fields": { + "code_commune_insee": "30329", + "nom_de_la_commune": "THOIRAS", + "code_postal": "30140", + "coordonnees_gps": [ + 44.0651729545, + 3.92069060431 + ], + "libelle_d_acheminement": "THOIRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92069060431, + 44.0651729545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a24e24438a50e2cd1627c2ca17b6e566d6d75ce5", + "fields": { + "code_commune_insee": "39471", + "nom_de_la_commune": "RUFFEY SUR SEILLE", + "code_postal": "39140", + "coordonnees_gps": [ + 46.7294818864, + 5.49587228599 + ], + "libelle_d_acheminement": "RUFFEY SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49587228599, + 46.7294818864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a75771d2f9a3e4d8ca66717d4a28efcb5e41512", + "fields": { + "code_commune_insee": "30334", + "nom_de_la_commune": "UZES", + "code_postal": "30700", + "coordonnees_gps": [ + 44.0136590402, + 4.41600031556 + ], + "libelle_d_acheminement": "UZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41600031556, + 44.0136590402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5486e007b72910fb7046361787d54c7662f6cfa1", + "fields": { + "code_commune_insee": "39472", + "nom_de_la_commune": "RYE", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8805291309, + 5.42595524995 + ], + "libelle_d_acheminement": "RYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42595524995, + 46.8805291309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f73895765cf1b09df807f8cf95468a0817666c7b", + "fields": { + "ligne_5": "PONT D HERAULT", + "code_commune_insee": "30339", + "libelle_d_acheminement": "VAL D AIGOUAL", + "code_postal": "30570", + "nom_de_la_commune": "VAL D AIGOUAL", + "coordonnees_gps": [ + 44.0875534961, + 3.61946476562 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61946476562, + 44.0875534961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ffef5bde2e1c2b7f07c0e318431909d6823a891", + "fields": { + "code_commune_insee": "39473", + "nom_de_la_commune": "SAFFLOZ", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6690423566, + 5.86347690885 + ], + "libelle_d_acheminement": "SAFFLOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86347690885, + 46.6690423566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf873f939eba5f0181c829286d6e25701ad5e0bd", + "fields": { + "code_commune_insee": "30341", + "nom_de_la_commune": "VAUVERT", + "code_postal": "30600", + "coordonnees_gps": [ + 43.6258468531, + 4.30597093294 + ], + "libelle_d_acheminement": "VAUVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30597093294, + 43.6258468531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc51bcb44c08e9bf07a2862a01f9b64eb5813f1b", + "fields": { + "code_commune_insee": "39477", + "nom_de_la_commune": "ST BARAING", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9866522885, + 5.43420518172 + ], + "libelle_d_acheminement": "ST BARAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43420518172, + 46.9866522885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5347c852a5dc6d27d511abb6767cd9de207d1e73", + "fields": { + "code_commune_insee": "31010", + "nom_de_la_commune": "ANTIGNAC", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8311657614, + 0.587701526157 + ], + "libelle_d_acheminement": "ANTIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.587701526157, + 42.8311657614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a74f6770d33c5816debd71e09fa18749dab85a11", + "fields": { + "ligne_5": "CINQUETRAL", + "code_commune_insee": "39478", + "libelle_d_acheminement": "ST CLAUDE", + "code_postal": "39200", + "nom_de_la_commune": "ST CLAUDE", + "coordonnees_gps": [ + 46.408600398, + 5.87556247635 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87556247635, + 46.408600398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8afb16a88908d3dd6ceb41c6595bfd428c7a5ec3", + "fields": { + "code_commune_insee": "31012", + "nom_de_la_commune": "ARBON", + "code_postal": "31160", + "coordonnees_gps": [ + 43.000904094, + 0.731075064686 + ], + "libelle_d_acheminement": "ARBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.731075064686, + 43.000904094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faf25bbe849e20b8fd225f1a07ccc78fe6804da6", + "fields": { + "ligne_5": "RANCHETTE", + "code_commune_insee": "39478", + "libelle_d_acheminement": "ST CLAUDE", + "code_postal": "39200", + "nom_de_la_commune": "ST CLAUDE", + "coordonnees_gps": [ + 46.408600398, + 5.87556247635 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87556247635, + 46.408600398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d85c672dcbe1578fc4773e79c83a9341edfa3bcc", + "fields": { + "code_commune_insee": "31018", + "nom_de_la_commune": "ARNAUD GUILHEM", + "code_postal": "31360", + "coordonnees_gps": [ + 43.1465237831, + 0.899110471667 + ], + "libelle_d_acheminement": "ARNAUD GUILHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.899110471667, + 43.1465237831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d2a2477b0e74e77a0338568d6fcb057d5a22b36", + "fields": { + "ligne_5": "LOUVENNE", + "code_commune_insee": "39485", + "libelle_d_acheminement": "VAL SURAN", + "code_postal": "39320", + "nom_de_la_commune": "VAL SURAN", + "coordonnees_gps": [ + 46.3963208, + 5.4577858737 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4577858737, + 46.3963208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0f668540a01906d0a44211e7e76ab538c257ce4", + "fields": { + "code_commune_insee": "31024", + "nom_de_la_commune": "AURAGNE", + "code_postal": "31190", + "coordonnees_gps": [ + 43.3912857783, + 1.50909342818 + ], + "libelle_d_acheminement": "AURAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50909342818, + 43.3912857783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1c20d69def88f75f1a6276972aaae8092638b6d", + "fields": { + "ligne_5": "VILLECHANTRIA", + "code_commune_insee": "39485", + "libelle_d_acheminement": "VAL SURAN", + "code_postal": "39320", + "nom_de_la_commune": "VAL SURAN", + "coordonnees_gps": [ + 46.3963208, + 5.4577858737 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4577858737, + 46.3963208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf4b35675f7ba4b19adf46686c050b44f9417b32", + "fields": { + "code_commune_insee": "31030", + "nom_de_la_commune": "AUSSEING", + "code_postal": "31260", + "coordonnees_gps": [ + 43.1540611652, + 1.03126801796 + ], + "libelle_d_acheminement": "AUSSEING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03126801796, + 43.1540611652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31dad1c955bcd38879e3d543aebeb4a9efee3fb9", + "fields": { + "code_commune_insee": "39487", + "nom_de_la_commune": "ST LAURENT EN GRANDVAUX", + "code_postal": "39150", + "coordonnees_gps": [ + 46.5694227071, + 5.96258087921 + ], + "libelle_d_acheminement": "ST LAURENT EN GRANDVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96258087921, + 46.5694227071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc2103636d6d601f6722c4e1ed7a1cb1d0c77df7", + "fields": { + "code_commune_insee": "31032", + "nom_de_la_commune": "AUSSONNE", + "code_postal": "31840", + "coordonnees_gps": [ + 43.6836034494, + 1.32887054853 + ], + "libelle_d_acheminement": "AUSSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32887054853, + 43.6836034494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00f294ea7569b3ae0f4b342f1a5cf40f931f1719", + "fields": { + "code_commune_insee": "39489", + "nom_de_la_commune": "ST LOTHAIN", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8280842983, + 5.63947643961 + ], + "libelle_d_acheminement": "ST LOTHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63947643961, + 46.8280842983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd4152b59d3399e3ad2841c44bfd6194bb359cfe", + "fields": { + "code_commune_insee": "31034", + "nom_de_la_commune": "AUZAS", + "code_postal": "31360", + "coordonnees_gps": [ + 43.1744807427, + 0.894158891084 + ], + "libelle_d_acheminement": "AUZAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.894158891084, + 43.1744807427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2b63c23e90c18941c61fd623858f4f0ca325d2f", + "fields": { + "code_commune_insee": "39498", + "nom_de_la_commune": "SALANS", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1599346715, + 5.79436100645 + ], + "libelle_d_acheminement": "SALANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79436100645, + 47.1599346715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ffe5c6b59cb12cda4cd4c09e5c9835d9508fcbc", + "fields": { + "code_commune_insee": "31035", + "nom_de_la_commune": "AUZEVILLE TOLOSANE", + "code_postal": "31320", + "coordonnees_gps": [ + 43.5286122552, + 1.48721978973 + ], + "libelle_d_acheminement": "AUZEVILLE TOLOSANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48721978973, + 43.5286122552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f027fc1b8686e6dca97ef58facdb6adc2a0f9696", + "fields": { + "ligne_5": "MONTJOUVENT", + "code_commune_insee": "39504", + "libelle_d_acheminement": "SARROGNA", + "code_postal": "39270", + "nom_de_la_commune": "SARROGNA", + "coordonnees_gps": [ + 46.4739811377, + 5.61763286818 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61763286818, + 46.4739811377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca82668f8ec47a316f26d71fcce3b941ded3da0", + "fields": { + "code_commune_insee": "31041", + "nom_de_la_commune": "BAGIRY", + "code_postal": "31510", + "coordonnees_gps": [ + 42.9798586112, + 0.624492350952 + ], + "libelle_d_acheminement": "BAGIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.624492350952, + 42.9798586112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94835974d7ee62b712ab0934a25f7941aba6d253", + "fields": { + "ligne_5": "TREFFAY", + "code_commune_insee": "39517", + "libelle_d_acheminement": "SIROD", + "code_postal": "39300", + "nom_de_la_commune": "SIROD", + "coordonnees_gps": [ + 46.7231337184, + 5.99171836651 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99171836651, + 46.7231337184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e92320ef9c8f73c1e788dd76cb943698777316a0", + "fields": { + "ligne_5": "SUPERBAGNERES", + "code_commune_insee": "31042", + "libelle_d_acheminement": "BAGNERES DE LUCHON", + "code_postal": "31110", + "nom_de_la_commune": "BAGNERES DE LUCHON", + "coordonnees_gps": [ + 42.736147731, + 0.626640395614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.626640395614, + 42.736147731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "934f4a318ba8e84be40339bcf55aec2511a38372", + "fields": { + "code_commune_insee": "39518", + "nom_de_la_commune": "SONGESON", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6469389585, + 5.83038429289 + ], + "libelle_d_acheminement": "SONGESON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83038429289, + 46.6469389585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1382c4a64d5d07e80c68a14d0ff405c2a8a0e7d", + "fields": { + "code_commune_insee": "31043", + "nom_de_la_commune": "BALESTA", + "code_postal": "31580", + "coordonnees_gps": [ + 43.2022153285, + 0.563416823751 + ], + "libelle_d_acheminement": "BALESTA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.563416823751, + 43.2022153285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "516fc428f95df82ccfe586bb0cc53790f8182f44", + "fields": { + "code_commune_insee": "39519", + "nom_de_la_commune": "SOUCIA", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5406307782, + 5.75722120552 + ], + "libelle_d_acheminement": "SOUCIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75722120552, + 46.5406307782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5c9811b52fea3a8c05187c32747305650362250", + "fields": { + "code_commune_insee": "31047", + "nom_de_la_commune": "BAX", + "code_postal": "31310", + "coordonnees_gps": [ + 43.2246503124, + 1.28820389123 + ], + "libelle_d_acheminement": "BAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28820389123, + 43.2246503124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4383714fe294ed2d34db5c1e260d8110bae1679f", + "fields": { + "code_commune_insee": "39532", + "nom_de_la_commune": "THOISSIA", + "code_postal": "39160", + "coordonnees_gps": [ + 46.4261882926, + 5.39554935173 + ], + "libelle_d_acheminement": "THOISSIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39554935173, + 46.4261882926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15aafd7291ed5b539d6068d0ff95b2e50473cb75", + "fields": { + "code_commune_insee": "31048", + "nom_de_la_commune": "BAZIEGE", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4622367436, + 1.62799581298 + ], + "libelle_d_acheminement": "BAZIEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62799581298, + 43.4622367436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "988cdf6cf28224a338b7c931e5fe73764b07310c", + "fields": { + "code_commune_insee": "39535", + "nom_de_la_commune": "TOURMONT", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8662991195, + 5.66636250629 + ], + "libelle_d_acheminement": "TOURMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66636250629, + 46.8662991195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e8dd221bfe464ffbfc323c39d07e519afa2ef41", + "fields": { + "code_commune_insee": "31062", + "nom_de_la_commune": "BELLESSERRE", + "code_postal": "31480", + "coordonnees_gps": [ + 43.7873665231, + 1.10128941207 + ], + "libelle_d_acheminement": "BELLESSERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10128941207, + 43.7873665231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fde45eacbb9b3631da511e0ca841e15743eedfef", + "fields": { + "ligne_5": "MALLEREY", + "code_commune_insee": "39537", + "libelle_d_acheminement": "TRENAL", + "code_postal": "39190", + "nom_de_la_commune": "TRENAL", + "coordonnees_gps": [ + 46.6396568445, + 5.46886995687 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46886995687, + 46.6396568445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec332236b2f4f866892cbd3103b408917b40505e", + "fields": { + "code_commune_insee": "31063", + "nom_de_la_commune": "BENQUE", + "code_postal": "31420", + "coordonnees_gps": [ + 43.2590244874, + 0.917904928606 + ], + "libelle_d_acheminement": "BENQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.917904928606, + 43.2590244874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d047bd706b79e4c66f339d741fa45c67e11f9ed3", + "fields": { + "code_commune_insee": "39545", + "nom_de_la_commune": "LE VAUDIOUX", + "code_postal": "39300", + "coordonnees_gps": [ + 46.6887181066, + 5.92823875732 + ], + "libelle_d_acheminement": "LE VAUDIOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92823875732, + 46.6887181066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d0bd2705f2380aef80c2bdcdfba5f0850d67a7e", + "fields": { + "code_commune_insee": "31064", + "nom_de_la_commune": "BENQUE DESSOUS ET DESSUS", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8204320616, + 0.541783667805 + ], + "libelle_d_acheminement": "BENQUE DESSOUS ET DESSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.541783667805, + 42.8204320616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54a2b85dff0b249d982a3d92873b2131bb1b7ed3", + "fields": { + "code_commune_insee": "39552", + "nom_de_la_commune": "VERNANTOIS", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6270087892, + 5.57793673726 + ], + "libelle_d_acheminement": "VERNANTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57793673726, + 46.6270087892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d84a003578a1289d7e1a9815a8df9336edb0536", + "fields": { + "code_commune_insee": "31065", + "nom_de_la_commune": "BERAT", + "code_postal": "31370", + "coordonnees_gps": [ + 43.377910708, + 1.17131231039 + ], + "libelle_d_acheminement": "BERAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17131231039, + 43.377910708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0f57a2257d5afe51c832257089a05f47a75bc5e", + "fields": { + "code_commune_insee": "39560", + "nom_de_la_commune": "VILLARD ST SAUVEUR", + "code_postal": "39200", + "coordonnees_gps": [ + 46.3623029643, + 5.86316334323 + ], + "libelle_d_acheminement": "VILLARD ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86316334323, + 46.3623029643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f5d50700ca519d0d4983a2a0e4d66d19b206755", + "fields": { + "code_commune_insee": "31072", + "nom_de_la_commune": "BOISSEDE", + "code_postal": "31230", + "coordonnees_gps": [ + 43.4071039513, + 0.826216857936 + ], + "libelle_d_acheminement": "BOISSEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.826216857936, + 43.4071039513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f02b6689a70c1154c8799186597f426ba36867b", + "fields": { + "code_commune_insee": "39561", + "nom_de_la_commune": "VILLARDS D HERIA", + "code_postal": "39260", + "coordonnees_gps": [ + 46.405625846, + 5.73583236127 + ], + "libelle_d_acheminement": "VILLARDS D HERIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73583236127, + 46.405625846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "053aa6c2a48c03422a3fbffbdcf2ceb55145d6f7", + "fields": { + "code_commune_insee": "31075", + "nom_de_la_commune": "BONREPOS SUR AUSSONNELLE", + "code_postal": "31470", + "coordonnees_gps": [ + 43.5441107951, + 1.13701796182 + ], + "libelle_d_acheminement": "BONREPOS SUR AUSSONNELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13701796182, + 43.5441107951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a527a7090f221a707bea54f489216e3128ca473", + "fields": { + "code_commune_insee": "39570", + "nom_de_la_commune": "VILLERS LES BOIS", + "code_postal": "39800", + "coordonnees_gps": [ + 46.9258758572, + 5.56896755251 + ], + "libelle_d_acheminement": "VILLERS LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56896755251, + 46.9258758572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d872f0717be7f9ca69ee135f925c39726c21f3a1", + "fields": { + "code_commune_insee": "31080", + "nom_de_la_commune": "BOULOGNE SUR GESSE", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2904403081, + 0.650641474176 + ], + "libelle_d_acheminement": "BOULOGNE SUR GESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.650641474176, + 43.2904403081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "804497476adec45180626569af42fb7aa48641af", + "fields": { + "code_commune_insee": "39582", + "nom_de_la_commune": "VOITEUR", + "code_postal": "39210", + "coordonnees_gps": [ + 46.743219074, + 5.60355195147 + ], + "libelle_d_acheminement": "VOITEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60355195147, + 46.743219074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6779cbfa122b5c145bb1e42ff6d4fff188828c1", + "fields": { + "ligne_5": "ARGUT DESSUS", + "code_commune_insee": "31085", + "libelle_d_acheminement": "BOUTX", + "code_postal": "31440", + "nom_de_la_commune": "BOUTX", + "coordonnees_gps": [ + 42.9153786194, + 0.770355750474 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.770355750474, + 42.9153786194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d35ea379cdbc5ccb9024bf69c40c8db14a3c3639", + "fields": { + "code_commune_insee": "40001", + "nom_de_la_commune": "AIRE SUR L ADOUR", + "code_postal": "40800", + "coordonnees_gps": [ + 43.6983525736, + -0.265145513574 + ], + "libelle_d_acheminement": "AIRE SUR L ADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.265145513574, + 43.6983525736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34617ce4b1e5dfc0fd6064ea0978cc4a7c27696e", + "fields": { + "code_commune_insee": "31089", + "nom_de_la_commune": "BRETX", + "code_postal": "31530", + "coordonnees_gps": [ + 43.7059673494, + 1.19620532147 + ], + "libelle_d_acheminement": "BRETX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19620532147, + 43.7059673494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be3c5a523aacf7c362a60d2260eb0be251e7cb2e", + "fields": { + "code_commune_insee": "40012", + "nom_de_la_commune": "ARTASSENX", + "code_postal": "40090", + "coordonnees_gps": [ + 43.8455800178, + -0.395744020774 + ], + "libelle_d_acheminement": "ARTASSENX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.395744020774, + 43.8455800178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86f6192fdfea18737a719b866f54ef1780991af9", + "fields": { + "code_commune_insee": "31100", + "nom_de_la_commune": "CALMONT", + "code_postal": "31560", + "coordonnees_gps": [ + 43.2841584192, + 1.62632523244 + ], + "libelle_d_acheminement": "CALMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62632523244, + 43.2841584192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e8a53d3de88f749a84461d94866db5692fac8d0", + "fields": { + "code_commune_insee": "40014", + "nom_de_la_commune": "ARUE", + "code_postal": "40120", + "coordonnees_gps": [ + 44.057804998, + -0.355246482767 + ], + "libelle_d_acheminement": "ARUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.355246482767, + 44.057804998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02c8d2062d9a65fbc7c156cc28c491ec40ba6862", + "fields": { + "code_commune_insee": "31106", + "nom_de_la_commune": "CARAMAN", + "code_postal": "31460", + "coordonnees_gps": [ + 43.5291002668, + 1.75296927178 + ], + "libelle_d_acheminement": "CARAMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75296927178, + 43.5291002668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d8851ece89dd74ff2cfa8d5673fdc7311ce485f", + "fields": { + "code_commune_insee": "40015", + "nom_de_la_commune": "ARX", + "code_postal": "40310", + "coordonnees_gps": [ + 44.1125173381, + 0.0861919778242 + ], + "libelle_d_acheminement": "ARX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0861919778242, + 44.1125173381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deafa6fe59ef16b5d735ef819bd077157c99e830", + "fields": { + "code_commune_insee": "31112", + "nom_de_la_commune": "CASTAGNEDE", + "code_postal": "31260", + "coordonnees_gps": [ + 43.051468722, + 0.977338440086 + ], + "libelle_d_acheminement": "CASTAGNEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.977338440086, + 43.051468722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5be699fa8098e887736c23bb0268870fb3f64478", + "fields": { + "code_commune_insee": "40018", + "nom_de_la_commune": "AUDON", + "code_postal": "40400", + "coordonnees_gps": [ + 43.7994823596, + -0.824876470862 + ], + "libelle_d_acheminement": "AUDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.824876470862, + 43.7994823596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b654aa66b554fe3cab1f67ede6f3ee8c8ee7347", + "fields": { + "code_commune_insee": "31119", + "nom_de_la_commune": "CASTELNAU PICAMPEAU", + "code_postal": "31430", + "coordonnees_gps": [ + 43.3086246303, + 1.01513029309 + ], + "libelle_d_acheminement": "CASTELNAU PICAMPEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01513029309, + 43.3086246303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0da859c9c7f8c6c1fd1c4224e71315cf27a43b68", + "fields": { + "code_commune_insee": "40020", + "nom_de_la_commune": "AURICE", + "code_postal": "40500", + "coordonnees_gps": [ + 43.8029933289, + -0.598930696866 + ], + "libelle_d_acheminement": "AURICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.598930696866, + 43.8029933289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01b4212a544aa717bb9d77869d60adfa8aa7c80b", + "fields": { + "code_commune_insee": "31121", + "nom_de_la_commune": "CASTERA VIGNOLES", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2764304672, + 0.782548294246 + ], + "libelle_d_acheminement": "CASTERA VIGNOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.782548294246, + 43.2764304672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b06e01b10939af77a2a819921979fc1cdbd5672f", + "fields": { + "code_commune_insee": "40024", + "nom_de_la_commune": "BANOS", + "code_postal": "40500", + "coordonnees_gps": [ + 43.7306552333, + -0.621226009645 + ], + "libelle_d_acheminement": "BANOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.621226009645, + 43.7306552333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52da015fca5950fe2b1873523841b7c5efb8ea76", + "fields": { + "code_commune_insee": "31128", + "nom_de_la_commune": "CAUJAC", + "code_postal": "31190", + "coordonnees_gps": [ + 43.2953977811, + 1.45851847854 + ], + "libelle_d_acheminement": "CAUJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45851847854, + 43.2953977811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ca8e931708c6950d24e891e053f2a611b1fbe5c", + "fields": { + "code_commune_insee": "40028", + "nom_de_la_commune": "BASTENNES", + "code_postal": "40360", + "coordonnees_gps": [ + 43.6499735416, + -0.777407464729 + ], + "libelle_d_acheminement": "BASTENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.777407464729, + 43.6499735416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc082c04f08db149701821b7eb43b9b4c710724c", + "fields": { + "code_commune_insee": "31129", + "nom_de_la_commune": "CAZARILH LASPENES", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8031770171, + 0.581463334845 + ], + "libelle_d_acheminement": "CAZARILH LASPENES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.581463334845, + 42.8031770171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0f4d76ae4baa03d0e85950e87d4b41a010313fb", + "fields": { + "code_commune_insee": "40031", + "nom_de_la_commune": "BEGAAR", + "code_postal": "40400", + "coordonnees_gps": [ + 43.829501653, + -0.85600618412 + ], + "libelle_d_acheminement": "BEGAAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.85600618412, + 43.829501653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3eefb6f68a2dae97f93c29b7279df8976375dd38", + "fields": { + "code_commune_insee": "31166", + "nom_de_la_commune": "EMPEAUX", + "code_postal": "31470", + "coordonnees_gps": [ + 43.5369176255, + 1.07909737017 + ], + "libelle_d_acheminement": "EMPEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07909737017, + 43.5369176255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c208da7a0d19671977f35100076454df7e512171", + "fields": { + "code_commune_insee": "40032", + "nom_de_la_commune": "BELHADE", + "code_postal": "40410", + "coordonnees_gps": [ + 44.3726485881, + -0.685242323003 + ], + "libelle_d_acheminement": "BELHADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.685242323003, + 44.3726485881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "586d3413a4c68ee45800c2d493e80a3f1081a74d", + "fields": { + "code_commune_insee": "31167", + "nom_de_la_commune": "ENCAUSSE LES THERMES", + "code_postal": "31160", + "coordonnees_gps": [ + 43.0532848166, + 0.746258275934 + ], + "libelle_d_acheminement": "ENCAUSSE LES THERMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.746258275934, + 43.0532848166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50fcacb6c707b6c9e44e9bca59f0388e3b13068f", + "fields": { + "code_commune_insee": "40034", + "nom_de_la_commune": "BELUS", + "code_postal": "40300", + "coordonnees_gps": [ + 43.5927734459, + -1.11715221654 + ], + "libelle_d_acheminement": "BELUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715221654, + 43.5927734459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86551b3ac574a128dc3f79e7da58d66ad22228ac", + "fields": { + "code_commune_insee": "31171", + "nom_de_la_commune": "ESPANES", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4509538019, + 1.4870137127 + ], + "libelle_d_acheminement": "ESPANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4870137127, + 43.4509538019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7644a26c77dfe25b7a1203f99e0e74f91a3bc80c", + "fields": { + "code_commune_insee": "40044", + "nom_de_la_commune": "BIAUDOS", + "code_postal": "40390", + "coordonnees_gps": [ + 43.5455674571, + -1.31286654056 + ], + "libelle_d_acheminement": "BIAUDOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31286654056, + 43.5455674571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c44f9a1bc68b1306ae09e72039a1c533e3d1c036", + "fields": { + "code_commune_insee": "31173", + "nom_de_la_commune": "ESPERCE", + "code_postal": "31190", + "coordonnees_gps": [ + 43.2993657224, + 1.40063786328 + ], + "libelle_d_acheminement": "ESPERCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40063786328, + 43.2993657224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17c15fc4b31c73a95098cc1e40c7661ca2a5fe83", + "fields": { + "ligne_5": "BISCARROSSE PLAGE", + "code_commune_insee": "40046", + "libelle_d_acheminement": "BISCARROSSE", + "code_postal": "40600", + "nom_de_la_commune": "BISCARROSSE", + "coordonnees_gps": [ + 44.409080109, + -1.1773616947 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1773616947, + 44.409080109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95a6442d6e7c28134a6b772dd30019c3c244556b", + "fields": { + "code_commune_insee": "31175", + "nom_de_la_commune": "ESTANCARBON", + "code_postal": "31800", + "coordonnees_gps": [ + 43.108852598, + 0.781108335801 + ], + "libelle_d_acheminement": "ESTANCARBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.781108335801, + 43.108852598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "295a949f02738577dcff3aa04f1d37e0d8282631", + "fields": { + "code_commune_insee": "40056", + "nom_de_la_commune": "BROCAS", + "code_postal": "40420", + "coordonnees_gps": [ + 44.0455210559, + -0.542490022307 + ], + "libelle_d_acheminement": "BROCAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.542490022307, + 44.0455210559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef0ab9655253ec256c8c06ef3f61297980462047", + "fields": { + "code_commune_insee": "31180", + "nom_de_la_commune": "FALGA", + "code_postal": "31540", + "coordonnees_gps": [ + 43.480563098, + 1.84601018765 + ], + "libelle_d_acheminement": "FALGA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84601018765, + 43.480563098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71b032d532871bca5d68fd3eaa42fbbb18984c17", + "fields": { + "code_commune_insee": "40060", + "nom_de_la_commune": "CALLEN", + "code_postal": "40430", + "coordonnees_gps": [ + 44.2849211801, + -0.461582251262 + ], + "libelle_d_acheminement": "CALLEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.461582251262, + 44.2849211801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cce2ed6958746147ecafe9c7bbed62a627e3724", + "fields": { + "code_commune_insee": "31181", + "nom_de_la_commune": "LE FAUGA", + "code_postal": "31410", + "coordonnees_gps": [ + 43.3984327015, + 1.2940830427 + ], + "libelle_d_acheminement": "LE FAUGA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2940830427, + 43.3984327015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfaa538e7273208e0a3235fa156e4596ac01e467", + "fields": { + "code_commune_insee": "40067", + "nom_de_la_commune": "CARCEN PONSON", + "code_postal": "40400", + "coordonnees_gps": [ + 43.871874652, + -0.81936363917 + ], + "libelle_d_acheminement": "CARCEN PONSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.81936363917, + 43.871874652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a6225199be19e1c2adc92c5fc687cc53e9fb07b", + "fields": { + "code_commune_insee": "31189", + "nom_de_la_commune": "FORGUES", + "code_postal": "31370", + "coordonnees_gps": [ + 43.4311541464, + 1.04326431364 + ], + "libelle_d_acheminement": "FORGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04326431364, + 43.4311541464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "598db45b979e8f6230d9f08154c0f8e1a93f4c3b", + "fields": { + "code_commune_insee": "40079", + "nom_de_la_commune": "CAZALIS", + "code_postal": "40700", + "coordonnees_gps": [ + 43.6245965043, + -0.66842783095 + ], + "libelle_d_acheminement": "CAZALIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.66842783095, + 43.6245965043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f900f89e4a97a6565e6d35ff7ea4866830a7328f", + "fields": { + "code_commune_insee": "31193", + "nom_de_la_commune": "LE FOUSSERET", + "code_postal": "31430", + "coordonnees_gps": [ + 43.2863317906, + 1.06495178565 + ], + "libelle_d_acheminement": "LE FOUSSERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06495178565, + 43.2863317906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92877768264ce214d36ac0d893a2ea1849a3f21e", + "fields": { + "code_commune_insee": "40082", + "nom_de_la_commune": "CLASSUN", + "code_postal": "40320", + "coordonnees_gps": [ + 43.7152491166, + -0.390818849951 + ], + "libelle_d_acheminement": "CLASSUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.390818849951, + 43.7152491166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dca114ba8b81013c3a4928f6d4bd010826fa9e23", + "fields": { + "code_commune_insee": "31204", + "nom_de_la_commune": "FUSTIGNAC", + "code_postal": "31430", + "coordonnees_gps": [ + 43.3012693197, + 0.983864621699 + ], + "libelle_d_acheminement": "FUSTIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.983864621699, + 43.3012693197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d7f7df3c552d4ab64725bfd10f87dd7cb99e66e", + "fields": { + "code_commune_insee": "40086", + "nom_de_la_commune": "COUDURES", + "code_postal": "40500", + "coordonnees_gps": [ + 43.6880713339, + -0.5043614536 + ], + "libelle_d_acheminement": "COUDURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5043614536, + 43.6880713339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4fbb9c3042ccd1a4057e4ff8673889565ce4a75", + "fields": { + "code_commune_insee": "31210", + "nom_de_la_commune": "GARDOUCH", + "code_postal": "31290", + "coordonnees_gps": [ + 43.3848367131, + 1.67826808704 + ], + "libelle_d_acheminement": "GARDOUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67826808704, + 43.3848367131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06ae2786dbee015f8e2362ec7722b641d3239a84", + "fields": { + "code_commune_insee": "40092", + "nom_de_la_commune": "DUMES", + "code_postal": "40500", + "coordonnees_gps": [ + 43.7040138261, + -0.582352624037 + ], + "libelle_d_acheminement": "DUMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.582352624037, + 43.7040138261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3366ae37c303c78d4a07a29e0ff0258764a510c", + "fields": { + "code_commune_insee": "31211", + "nom_de_la_commune": "GARGAS", + "code_postal": "31620", + "coordonnees_gps": [ + 43.7592156641, + 1.45920963091 + ], + "libelle_d_acheminement": "GARGAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45920963091, + 43.7592156641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abbbdacc481d2f97561f53e6880292ed7f05bf3f", + "fields": { + "code_commune_insee": "40095", + "nom_de_la_commune": "ESTIBEAUX", + "code_postal": "40290", + "coordonnees_gps": [ + 43.6088546655, + -0.910488790314 + ], + "libelle_d_acheminement": "ESTIBEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.910488790314, + 43.6088546655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1e41ea60acdfe4488abef36ab392d20a17e8dc0", + "fields": { + "code_commune_insee": "31218", + "nom_de_la_commune": "GENSAC DE BOULOGNE", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2589572773, + 0.603577328953 + ], + "libelle_d_acheminement": "GENSAC DE BOULOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.603577328953, + 43.2589572773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9e14c6429b38830c7ad54dafa99f1b51c49645b", + "fields": { + "code_commune_insee": "40105", + "nom_de_la_commune": "GAREIN", + "code_postal": "40420", + "coordonnees_gps": [ + 44.0485811628, + -0.649725235067 + ], + "libelle_d_acheminement": "GAREIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.649725235067, + 44.0485811628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd5c7ec861e44db73a71c7a27833b1dfbd0234fd", + "fields": { + "code_commune_insee": "31223", + "nom_de_la_commune": "GOUDEX", + "code_postal": "31230", + "coordonnees_gps": [ + 43.379000165, + 0.956722532352 + ], + "libelle_d_acheminement": "GOUDEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.956722532352, + 43.379000165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6de339e4c24f4a30e5c1bfc12cae36348c0254e8", + "fields": { + "code_commune_insee": "40112", + "nom_de_la_commune": "GIBRET", + "code_postal": "40380", + "coordonnees_gps": [ + 43.6815268209, + -0.82247563225 + ], + "libelle_d_acheminement": "GIBRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.82247563225, + 43.6815268209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6a9adb3f23bf4cbd6c106e6840f442c0f2d5060", + "fields": { + "code_commune_insee": "31224", + "nom_de_la_commune": "GOURDAN POLIGNAN", + "code_postal": "31210", + "coordonnees_gps": [ + 43.0693789495, + 0.575641802967 + ], + "libelle_d_acheminement": "GOURDAN POLIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.575641802967, + 43.0693789495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59c6585d144a532887feea8bddc5a56e482e1873", + "fields": { + "code_commune_insee": "40114", + "nom_de_la_commune": "GOURBERA", + "code_postal": "40990", + "coordonnees_gps": [ + 43.8077905469, + -1.04783992391 + ], + "libelle_d_acheminement": "GOURBERA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04783992391, + 43.8077905469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4608a68577732eca28c0343240fe3c0117779d5", + "fields": { + "code_commune_insee": "31228", + "nom_de_la_commune": "GRAGNAGUE", + "code_postal": "31380", + "coordonnees_gps": [ + 43.6830952674, + 1.58238144646 + ], + "libelle_d_acheminement": "GRAGNAGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58238144646, + 43.6830952674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d553c96b4942d572056da9effac6886e42fec2b", + "fields": { + "code_commune_insee": "40121", + "nom_de_la_commune": "HAURIET", + "code_postal": "40250", + "coordonnees_gps": [ + 43.732799424, + -0.693297184159 + ], + "libelle_d_acheminement": "HAURIET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.693297184159, + 43.732799424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54f1130d40866d29a4aec48e3114a6dead22c0ff", + "fields": { + "code_commune_insee": "31234", + "nom_de_la_commune": "LE GRES", + "code_postal": "31480", + "coordonnees_gps": [ + 43.718877124, + 1.0998867054 + ], + "libelle_d_acheminement": "LE GRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0998867054, + 43.718877124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c44d48e4ea5df6898d1b6716cd19a5bf9c9f8eba", + "fields": { + "code_commune_insee": "40126", + "nom_de_la_commune": "HINX", + "code_postal": "40180", + "coordonnees_gps": [ + 43.7095931585, + -0.938441196059 + ], + "libelle_d_acheminement": "HINX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.938441196059, + 43.7095931585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94e5a0186392aab8b2dc6085da3a39f2e47aab53", + "fields": { + "code_commune_insee": "31241", + "nom_de_la_commune": "IZAUT DE L HOTEL", + "code_postal": "31160", + "coordonnees_gps": [ + 43.0131099513, + 0.749757075075 + ], + "libelle_d_acheminement": "IZAUT DE L HOTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.749757075075, + 43.0131099513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afe6ad6dac179000fff22708f8772c18d2bb6db6", + "fields": { + "code_commune_insee": "40150", + "nom_de_la_commune": "LEON", + "code_postal": "40550", + "coordonnees_gps": [ + 43.8492680925, + -1.28087921075 + ], + "libelle_d_acheminement": "LEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28087921075, + 43.8492680925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2de6810d8ec83bf1107d93ab77f839f7a1bf58d6", + "fields": { + "code_commune_insee": "31244", + "nom_de_la_commune": "JUZET DE LUCHON", + "code_postal": "31110", + "coordonnees_gps": [ + 42.8030856588, + 0.629941748011 + ], + "libelle_d_acheminement": "JUZET DE LUCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.629941748011, + 42.8030856588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cf5497a9a6aafbd720c07046eccd32ac0fc1422", + "fields": { + "code_commune_insee": "40159", + "nom_de_la_commune": "LOUER", + "code_postal": "40380", + "coordonnees_gps": [ + 43.7564807293, + -0.890892690652 + ], + "libelle_d_acheminement": "LOUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.890892690652, + 43.7564807293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "768db8d5143f1334d0b79bae15d316d5fae63f31", + "fields": { + "code_commune_insee": "31247", + "nom_de_la_commune": "LABARTHE RIVIERE", + "code_postal": "31800", + "coordonnees_gps": [ + 43.0809091883, + 0.671429953556 + ], + "libelle_d_acheminement": "LABARTHE RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.671429953556, + 43.0809091883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d16fd9e1b72608150318b2487b9b42b455760fb8", + "fields": { + "code_commune_insee": "40169", + "nom_de_la_commune": "MAILLAS", + "code_postal": "40120", + "coordonnees_gps": [ + 44.2130883384, + -0.177666855648 + ], + "libelle_d_acheminement": "MAILLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.177666855648, + 44.2130883384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bec5696f99d58b5a6f02e81b7d8db667d8e7115d", + "fields": { + "code_commune_insee": "31249", + "nom_de_la_commune": "LABASTIDE BEAUVOIR", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4833061095, + 1.66361154425 + ], + "libelle_d_acheminement": "LABASTIDE BEAUVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66361154425, + 43.4833061095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfc883fc27dbcbec61f8c5638494bd1b002025f9", + "fields": { + "code_commune_insee": "40172", + "nom_de_la_commune": "MANT", + "code_postal": "40700", + "coordonnees_gps": [ + 43.5916606333, + -0.502752256257 + ], + "libelle_d_acheminement": "MANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.502752256257, + 43.5916606333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03711c32fe6282f829b7eed66ae7cdca803b5996", + "fields": { + "code_commune_insee": "31253", + "nom_de_la_commune": "LABASTIDETTE", + "code_postal": "31600", + "coordonnees_gps": [ + 43.4572488277, + 1.23711538242 + ], + "libelle_d_acheminement": "LABASTIDETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23711538242, + 43.4572488277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4835a6e1413db7cc02f0cec90f55b34f470c0de", + "fields": { + "code_commune_insee": "40174", + "nom_de_la_commune": "MAURIES", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6151264193, + -0.336068922344 + ], + "libelle_d_acheminement": "MAURIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.336068922344, + 43.6151264193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f07fbe2661c92ad5abf1bb3ee5522abfe58ce8a0", + "fields": { + "code_commune_insee": "31262", + "nom_de_la_commune": "LAGARDE", + "code_postal": "31290", + "coordonnees_gps": [ + 43.3452720322, + 1.69665313255 + ], + "libelle_d_acheminement": "LAGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69665313255, + 43.3452720322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8908ea967719b3a746818bac5030515e07b77230", + "fields": { + "code_commune_insee": "40181", + "nom_de_la_commune": "MESSANGES", + "code_postal": "40660", + "coordonnees_gps": [ + 43.811704392, + -1.36380228548 + ], + "libelle_d_acheminement": "MESSANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36380228548, + 43.811704392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ea6fcd68f53981bf054c32af93fdae77cece4db", + "fields": { + "code_commune_insee": "31269", + "nom_de_la_commune": "LAMASQUERE", + "code_postal": "31600", + "coordonnees_gps": [ + 43.4845365161, + 1.24833943627 + ], + "libelle_d_acheminement": "LAMASQUERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24833943627, + 43.4845365161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8309ee3bd674ec5bfb9c885ce0b598aaa5fd8cae", + "fields": { + "code_commune_insee": "40189", + "nom_de_la_commune": "MONGET", + "code_postal": "40700", + "coordonnees_gps": [ + 43.5593376119, + -0.534718563495 + ], + "libelle_d_acheminement": "MONGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.534718563495, + 43.5593376119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1c8b98959526c18575114d6e71dd0bca625e6e8", + "fields": { + "code_commune_insee": "31273", + "nom_de_la_commune": "LAPEYROUSE FOSSAT", + "code_postal": "31180", + "coordonnees_gps": [ + 43.70162146, + 1.5103595038 + ], + "libelle_d_acheminement": "LAPEYROUSE FOSSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5103595038, + 43.70162146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c50b3036a5fc841f5d0df03aefcb307616362445", + "fields": { + "code_commune_insee": "40191", + "nom_de_la_commune": "MONTAUT", + "code_postal": "40500", + "coordonnees_gps": [ + 43.7283439402, + -0.656045169398 + ], + "libelle_d_acheminement": "MONTAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.656045169398, + 43.7283439402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4971b77adcf8e4e52a71e06ef542c18dd33a8004", + "fields": { + "ligne_5": "PRADERE LES BOURGUETS", + "code_commune_insee": "31277", + "libelle_d_acheminement": "LASSERRE PRADERE", + "code_postal": "31530", + "nom_de_la_commune": "LASSERRE PRADERE", + "coordonnees_gps": [ + 43.6358181095, + 1.19125199564 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19125199564, + 43.6358181095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91fcc68f502f55fcc27a96f50b624ea6c334e617", + "fields": { + "code_commune_insee": "40195", + "nom_de_la_commune": "MONTGAILLARD", + "code_postal": "40500", + "coordonnees_gps": [ + 43.7574145049, + -0.480089194679 + ], + "libelle_d_acheminement": "MONTGAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.480089194679, + 43.7574145049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ca5390d9160472a9a741200b845b5a78f7e0fdf", + "fields": { + "code_commune_insee": "31281", + "nom_de_la_commune": "LAUNAC", + "code_postal": "31330", + "coordonnees_gps": [ + 43.7503565656, + 1.17070596349 + ], + "libelle_d_acheminement": "LAUNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17070596349, + 43.7503565656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a68a9d3f256bc1199982ff2aeca7ea16ae22af4", + "fields": { + "ligne_5": "GARROSSE", + "code_commune_insee": "40197", + "libelle_d_acheminement": "MORCENX LA NOUVELLE", + "code_postal": "40110", + "nom_de_la_commune": "MORCENX LA NOUVELLE", + "coordonnees_gps": [ + 44.0410936254, + -0.888623636398 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.888623636398, + 44.0410936254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9827638afa9950c710b89ab2451808ed0076affb", + "fields": { + "code_commune_insee": "31284", + "nom_de_la_commune": "LAUZERVILLE", + "code_postal": "31650", + "coordonnees_gps": [ + 43.5583468414, + 1.56690064606 + ], + "libelle_d_acheminement": "LAUZERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56690064606, + 43.5583468414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ab1f0e63b8f985142c02ac81d3931f3a8ebebd1", + "fields": { + "ligne_5": "SINDERES", + "code_commune_insee": "40197", + "libelle_d_acheminement": "MORCENX LA NOUVELLE", + "code_postal": "40110", + "nom_de_la_commune": "MORCENX LA NOUVELLE", + "coordonnees_gps": [ + 44.0410936254, + -0.888623636398 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.888623636398, + 44.0410936254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "157432bef610ebe897e58f184c17dea74ddb02e7", + "fields": { + "code_commune_insee": "31294", + "nom_de_la_commune": "LESPITEAU", + "code_postal": "31160", + "coordonnees_gps": [ + 43.0657396752, + 0.762308688736 + ], + "libelle_d_acheminement": "LESPITEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.762308688736, + 43.0657396752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "317737d3a2d9172c3af01c922a79a449da814b22", + "fields": { + "code_commune_insee": "40199", + "nom_de_la_commune": "MOUSCARDES", + "code_postal": "40290", + "coordonnees_gps": [ + 43.5892643922, + -0.884133125413 + ], + "libelle_d_acheminement": "MOUSCARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.884133125413, + 43.5892643922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99d3d22495edab204938fc91f29d2e2e40b41d2b", + "fields": { + "code_commune_insee": "31304", + "nom_de_la_commune": "LOUBENS LAURAGAIS", + "code_postal": "31460", + "coordonnees_gps": [ + 43.5744476065, + 1.78338318229 + ], + "libelle_d_acheminement": "LOUBENS LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78338318229, + 43.5744476065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84b16fe93d31c77f9a0903b14d06cbc6203467ea", + "fields": { + "code_commune_insee": "40204", + "nom_de_la_commune": "NERBIS", + "code_postal": "40250", + "coordonnees_gps": [ + 43.7508546584, + -0.723255362157 + ], + "libelle_d_acheminement": "NERBIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.723255362157, + 43.7508546584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26cf4cd4b5259dba09460dd6fbd58c09a7b038f3", + "fields": { + "code_commune_insee": "31306", + "nom_de_la_commune": "LOURDE", + "code_postal": "31510", + "coordonnees_gps": [ + 42.9847180635, + 0.658660755853 + ], + "libelle_d_acheminement": "LOURDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.658660755853, + 42.9847180635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffb8f2562bd1af59ef4f12c1b5b6634c10508887", + "fields": { + "code_commune_insee": "40207", + "nom_de_la_commune": "OEYRELUY", + "code_postal": "40180", + "coordonnees_gps": [ + 43.6725909194, + -1.07802745569 + ], + "libelle_d_acheminement": "OEYRELUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07802745569, + 43.6725909194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e28706cee684c3ca5f6ed2acacea3db5ca139108", + "fields": { + "code_commune_insee": "31313", + "nom_de_la_commune": "MALVEZIE", + "code_postal": "31510", + "coordonnees_gps": [ + 43.0069388711, + 0.700137350744 + ], + "libelle_d_acheminement": "MALVEZIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.700137350744, + 43.0069388711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9447301c9b94d382b42ab7e112ae5dad4ab142f", + "fields": { + "code_commune_insee": "40210", + "nom_de_la_commune": "ONESSE LAHARIE", + "code_postal": "40110", + "coordonnees_gps": [ + 44.0721406576, + -1.02598711756 + ], + "libelle_d_acheminement": "ONESSE LAHARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02598711756, + 44.0721406576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c7e5f0f2f949b6d555699cb3eaad486bacef362", + "fields": { + "code_commune_insee": "31320", + "nom_de_la_commune": "MARQUEFAVE", + "code_postal": "31390", + "coordonnees_gps": [ + 43.3095545931, + 1.25946317951 + ], + "libelle_d_acheminement": "MARQUEFAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25946317951, + 43.3095545931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c10cedd50143aea393ef330bb5a4c83a0c5fd49", + "fields": { + "code_commune_insee": "40212", + "nom_de_la_commune": "ORTHEVIELLE", + "code_postal": "40300", + "coordonnees_gps": [ + 43.5643205172, + -1.14690876609 + ], + "libelle_d_acheminement": "ORTHEVIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14690876609, + 43.5643205172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af8c129bba87469a6cc7cc2caf9fa1f2c1c0c7fe", + "fields": { + "code_commune_insee": "31321", + "nom_de_la_commune": "MARSOULAS", + "code_postal": "31260", + "coordonnees_gps": [ + 43.1065481361, + 0.993468900589 + ], + "libelle_d_acheminement": "MARSOULAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.993468900589, + 43.1065481361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "943f206cdc73fc063bac863eb1be1b338690a98d", + "fields": { + "code_commune_insee": "40214", + "nom_de_la_commune": "OSSAGES", + "code_postal": "40290", + "coordonnees_gps": [ + 43.5579537208, + -0.878000230136 + ], + "libelle_d_acheminement": "OSSAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.878000230136, + 43.5579537208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a7382c4f7e1bd3ef28139d911f0496c893f5ae8", + "fields": { + "code_commune_insee": "31322", + "nom_de_la_commune": "MARTISSERRE", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3947730316, + 0.885338719938 + ], + "libelle_d_acheminement": "MARTISSERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.885338719938, + 43.3947730316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de1c2b4ab51a19e329ff2525b49fafe990607a93", + "fields": { + "code_commune_insee": "40216", + "nom_de_la_commune": "OZOURT", + "code_postal": "40380", + "coordonnees_gps": [ + 43.657983448, + -0.878099266646 + ], + "libelle_d_acheminement": "OZOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.878099266646, + 43.657983448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bab38ea076f8fb1d21fc8f1e432dc496eb0b950", + "fields": { + "code_commune_insee": "31326", + "nom_de_la_commune": "MASSABRAC", + "code_postal": "31310", + "coordonnees_gps": [ + 43.2218312967, + 1.36710649569 + ], + "libelle_d_acheminement": "MASSABRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.36710649569, + 43.2218312967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c90e8cd7b0481327929a864a79198c39c684dff8", + "fields": { + "code_commune_insee": "40220", + "nom_de_la_commune": "PECORADE", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6526242317, + -0.360728054461 + ], + "libelle_d_acheminement": "PECORADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.360728054461, + 43.6526242317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63e45c9873b9a274c8d2fa600d15727cd6b26fde", + "fields": { + "code_commune_insee": "31328", + "nom_de_la_commune": "MAUREMONT", + "code_postal": "31290", + "coordonnees_gps": [ + 43.4559384154, + 1.68152366041 + ], + "libelle_d_acheminement": "MAUREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68152366041, + 43.4559384154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e0951355dddd453e7f1619954c61816aea73f94", + "fields": { + "code_commune_insee": "40227", + "nom_de_la_commune": "PISSOS", + "code_postal": "40410", + "coordonnees_gps": [ + 44.2958433032, + -0.780642494163 + ], + "libelle_d_acheminement": "PISSOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.780642494163, + 44.2958433032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cb5404dbfb3ecd5aabc7bbcc3894467d8dc17fa", + "fields": { + "code_commune_insee": "31330", + "nom_de_la_commune": "MAURESSAC", + "code_postal": "31190", + "coordonnees_gps": [ + 43.3212250025, + 1.43428309398 + ], + "libelle_d_acheminement": "MAURESSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43428309398, + 43.3212250025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9c2fb21ccec88a0eaf05ba10dab721d8e1926f3", + "fields": { + "code_commune_insee": "40231", + "nom_de_la_commune": "PORT DE LANNE", + "code_postal": "40300", + "coordonnees_gps": [ + 43.567591642, + -1.17971224774 + ], + "libelle_d_acheminement": "PORT DE LANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17971224774, + 43.567591642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46071d0c5c889e2629ec53038298e85d0c5194a3", + "fields": { + "code_commune_insee": "31337", + "nom_de_la_commune": "MELLES", + "code_postal": "31440", + "coordonnees_gps": [ + 42.8670134351, + 0.808921574218 + ], + "libelle_d_acheminement": "MELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.808921574218, + 42.8670134351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab87e66a8083e67b3e27cdbee5ac89e9eea46dc7", + "fields": { + "code_commune_insee": "40240", + "nom_de_la_commune": "RENUNG", + "code_postal": "40270", + "coordonnees_gps": [ + 43.7467796821, + -0.368876062066 + ], + "libelle_d_acheminement": "RENUNG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.368876062066, + 43.7467796821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0545a97c71aeb442212bdb14901306cc6e91f5e", + "fields": { + "code_commune_insee": "31342", + "nom_de_la_commune": "MILHAS", + "code_postal": "31160", + "coordonnees_gps": [ + 42.9775941, + 0.827567903546 + ], + "libelle_d_acheminement": "MILHAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.827567903546, + 42.9775941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c7b0f37cbe15ca36023a01b4d91694ab5ce2190", + "fields": { + "code_commune_insee": "40251", + "nom_de_la_commune": "ST BARTHELEMY", + "code_postal": "40390", + "coordonnees_gps": [ + 43.5201160694, + -1.33110280888 + ], + "libelle_d_acheminement": "ST BARTHELEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33110280888, + 43.5201160694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ec9341b21698b2a1d36eb39a01b6a7e158a1409", + "fields": { + "code_commune_insee": "31346", + "nom_de_la_commune": "MIREPOIX SUR TARN", + "code_postal": "31340", + "coordonnees_gps": [ + 43.8243902958, + 1.5774699768 + ], + "libelle_d_acheminement": "MIREPOIX SUR TARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5774699768, + 43.8243902958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e87be0bd384c5db1a64fc367b34c8f0d602a8b74", + "fields": { + "code_commune_insee": "40252", + "nom_de_la_commune": "STE COLOMBE", + "code_postal": "40700", + "coordonnees_gps": [ + 43.6810025684, + -0.556768147827 + ], + "libelle_d_acheminement": "STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.556768147827, + 43.6810025684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2caeee2398e99971f80f72c985908c6d162101e", + "fields": { + "code_commune_insee": "31352", + "nom_de_la_commune": "MONDOUZIL", + "code_postal": "31850", + "coordonnees_gps": [ + 43.6315742429, + 1.56216413003 + ], + "libelle_d_acheminement": "MONDOUZIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56216413003, + 43.6315742429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "baab4be091f711ce4fb8799b6bfb309e9b872d2b", + "fields": { + "code_commune_insee": "40254", + "nom_de_la_commune": "ST CRICQ DU GAVE", + "code_postal": "40300", + "coordonnees_gps": [ + 43.5260659136, + -1.01128645377 + ], + "libelle_d_acheminement": "ST CRICQ DU GAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01128645377, + 43.5260659136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78461a164389eb8d16c2d3f30c584040adacfef0", + "fields": { + "code_commune_insee": "31354", + "nom_de_la_commune": "MONESTROL", + "code_postal": "31560", + "coordonnees_gps": [ + 43.3322404814, + 1.66273586519 + ], + "libelle_d_acheminement": "MONESTROL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66273586519, + 43.3322404814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6076b10c728f075a1d82f12552f5e8ad27f8b06c", + "fields": { + "code_commune_insee": "40257", + "nom_de_la_commune": "STE EULALIE EN BORN", + "code_postal": "40200", + "coordonnees_gps": [ + 44.2779759643, + -1.21402011254 + ], + "libelle_d_acheminement": "STE EULALIE EN BORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21402011254, + 44.2779759643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6f0f7355d46bae12d7b2cecc696b6fdb05e6e2b", + "fields": { + "code_commune_insee": "31358", + "nom_de_la_commune": "MONTASTRUC LA CONSEILLERE", + "code_postal": "31380", + "coordonnees_gps": [ + 43.7221234765, + 1.58906433836 + ], + "libelle_d_acheminement": "MONTASTRUC LA CONSEILLERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58906433836, + 43.7221234765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "844f70becdc089c05639b5b5877896fdafb398e8", + "fields": { + "code_commune_insee": "40259", + "nom_de_la_commune": "ST GEIN", + "code_postal": "40190", + "coordonnees_gps": [ + 43.831513719, + -0.306151041119 + ], + "libelle_d_acheminement": "ST GEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.306151041119, + 43.831513719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74f52b6176d1034d793392d265da97774d13405c", + "fields": { + "code_commune_insee": "31360", + "nom_de_la_commune": "MONTAUBAN DE LUCHON", + "code_postal": "31110", + "coordonnees_gps": [ + 42.7905243609, + 0.623354384016 + ], + "libelle_d_acheminement": "MONTAUBAN DE LUCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.623354384016, + 42.7905243609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2b5467f7260803dadaed5bbaa80ee60eb52f212", + "fields": { + "code_commune_insee": "40261", + "nom_de_la_commune": "ST GEOURS DE MAREMNE", + "code_postal": "40230", + "coordonnees_gps": [ + 43.6867582506, + -1.23612727414 + ], + "libelle_d_acheminement": "ST GEOURS DE MAREMNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23612727414, + 43.6867582506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d1cd8cb32b1421c12ec5b2ffed3a61386f101b3", + "fields": { + "code_commune_insee": "31361", + "nom_de_la_commune": "MONTAUT", + "code_postal": "31410", + "coordonnees_gps": [ + 43.3455690999, + 1.31066640833 + ], + "libelle_d_acheminement": "MONTAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31066640833, + 43.3455690999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dabe30f10b766e1824c271356e1aa863f9797cf", + "fields": { + "code_commune_insee": "40265", + "nom_de_la_commune": "ST JULIEN D ARMAGNAC", + "code_postal": "40240", + "coordonnees_gps": [ + 43.9932669722, + -0.139358278306 + ], + "libelle_d_acheminement": "ST JULIEN D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.139358278306, + 43.9932669722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dab19147ce8afaa5279616997b9af1fcf851711a", + "fields": { + "code_commune_insee": "31363", + "nom_de_la_commune": "MONTBERNARD", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3042093093, + 0.767840933325 + ], + "libelle_d_acheminement": "MONTBERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.767840933325, + 43.3042093093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc22bd7157c1dadfc9fcc32fcd85ca87e0fabb7a", + "fields": { + "code_commune_insee": "40272", + "nom_de_la_commune": "ST MARTIN DE HINX", + "code_postal": "40390", + "coordonnees_gps": [ + 43.5813482178, + -1.27728349893 + ], + "libelle_d_acheminement": "ST MARTIN DE HINX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27728349893, + 43.5813482178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b0aa590ace333072fc71e95b3c478863d70cf9c", + "fields": { + "code_commune_insee": "31369", + "nom_de_la_commune": "MONT DE GALIE", + "code_postal": "31510", + "coordonnees_gps": [ + 42.9926932624, + 0.646724731976 + ], + "libelle_d_acheminement": "MONT DE GALIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.646724731976, + 42.9926932624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb6b2d1a624c585eb2707d59baf0b05d8f27ea42", + "fields": { + "code_commune_insee": "40273", + "nom_de_la_commune": "ST MARTIN DE SEIGNANX", + "code_postal": "40390", + "coordonnees_gps": [ + 43.5323882683, + -1.38747903614 + ], + "libelle_d_acheminement": "ST MARTIN DE SEIGNANX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38747903614, + 43.5323882683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9d75c28df700dc0882591b5197b6550b6b32958", + "fields": { + "code_commune_insee": "31370", + "nom_de_la_commune": "MONTEGUT BOURJAC", + "code_postal": "31430", + "coordonnees_gps": [ + 43.2815929333, + 0.985102720246 + ], + "libelle_d_acheminement": "MONTEGUT BOURJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.985102720246, + 43.2815929333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cd9773e376b50b982be7e7937cf0ee03dd9bcdd", + "fields": { + "code_commune_insee": "40290", + "nom_de_la_commune": "SARRON", + "code_postal": "40800", + "coordonnees_gps": [ + 43.5898061385, + -0.266240073155 + ], + "libelle_d_acheminement": "SARRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.266240073155, + 43.5898061385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b4178da2a97a553de5fc83324189635c4c1c8d2", + "fields": { + "code_commune_insee": "31373", + "nom_de_la_commune": "MONTESQUIEU GUITTAUT", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3386291505, + 0.767202844141 + ], + "libelle_d_acheminement": "MONTESQUIEU GUITTAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.767202844141, + 43.3386291505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e826e5bb9328dae36d4f3cf003d9999978d73ce2", + "fields": { + "code_commune_insee": "40296", + "nom_de_la_commune": "SEIGNOSSE", + "code_postal": "40510", + "coordonnees_gps": [ + 43.7021964029, + -1.3970873051 + ], + "libelle_d_acheminement": "SEIGNOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3970873051, + 43.7021964029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76a870d6a6f56f04ba975fa8aa28ec1f0ed1da7e", + "fields": { + "code_commune_insee": "31384", + "nom_de_la_commune": "MONTLAUR", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4853075603, + 1.5806088714 + ], + "libelle_d_acheminement": "MONTLAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5806088714, + 43.4853075603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "beec51a70ad18649d89a3b4fe9f0e7dd567dfb9b", + "fields": { + "code_commune_insee": "40315", + "nom_de_la_commune": "TETHIEU", + "code_postal": "40990", + "coordonnees_gps": [ + 43.746664517, + -0.959617745338 + ], + "libelle_d_acheminement": "TETHIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.959617745338, + 43.746664517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9317f90e9f3b5e77341a6089d472061a1e4a3f23", + "fields": { + "code_commune_insee": "31391", + "nom_de_la_commune": "MONTSAUNES", + "code_postal": "31260", + "coordonnees_gps": [ + 43.1102814819, + 0.932230467606 + ], + "libelle_d_acheminement": "MONTSAUNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.932230467606, + 43.1102814819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "715cdc9b0eebc6479174173275cbf29f4ace2c2b", + "fields": { + "code_commune_insee": "40318", + "nom_de_la_commune": "TOULOUZETTE", + "code_postal": "40250", + "coordonnees_gps": [ + 43.7552090028, + -0.673971025174 + ], + "libelle_d_acheminement": "TOULOUZETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.673971025174, + 43.7552090028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a13a2870b0790cef718144ef9d7ab43ac32de37e", + "fields": { + "code_commune_insee": "31397", + "nom_de_la_commune": "NENIGAN", + "code_postal": "31350", + "coordonnees_gps": [ + 43.3532194383, + 0.708883307401 + ], + "libelle_d_acheminement": "NENIGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.708883307401, + 43.3532194383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92e9928c8aa86b2552917ed90277a6d459e37ac7", + "fields": { + "ligne_5": "ST GIRONS PLAGE", + "code_commune_insee": "40326", + "libelle_d_acheminement": "VIELLE ST GIRONS", + "code_postal": "40560", + "nom_de_la_commune": "VIELLE ST GIRONS", + "coordonnees_gps": [ + 43.9395837379, + -1.32552380465 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32552380465, + 43.9395837379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5582e2ee85133106d63705effc789410f12de756", + "fields": { + "code_commune_insee": "31399", + "nom_de_la_commune": "NOE", + "code_postal": "31410", + "coordonnees_gps": [ + 43.3605188083, + 1.27051945218 + ], + "libelle_d_acheminement": "NOE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27051945218, + 43.3605188083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5b26bb7772d5e90c1934a5583e467aa623ee068", + "fields": { + "code_commune_insee": "40327", + "nom_de_la_commune": "VIELLE SOUBIRAN", + "code_postal": "40240", + "coordonnees_gps": [ + 44.0556601833, + -0.17137876019 + ], + "libelle_d_acheminement": "VIELLE SOUBIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.17137876019, + 44.0556601833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d75c529066deb3150743c32fdfb391594b5b854f", + "fields": { + "code_commune_insee": "31402", + "nom_de_la_commune": "ODARS", + "code_postal": "31450", + "coordonnees_gps": [ + 43.5219394516, + 1.59326586441 + ], + "libelle_d_acheminement": "ODARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59326586441, + 43.5219394516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd7c690d54988fadbe0d8d380a530287a1466b2c", + "fields": { + "code_commune_insee": "40329", + "nom_de_la_commune": "LE VIGNAU", + "code_postal": "40270", + "coordonnees_gps": [ + 43.7817456803, + -0.287331140578 + ], + "libelle_d_acheminement": "LE VIGNAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.287331140578, + 43.7817456803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c846fb2dd49cee635c2c13fe1a8905f7185452e9", + "fields": { + "code_commune_insee": "31408", + "nom_de_la_commune": "PAYSSOUS", + "code_postal": "31510", + "coordonnees_gps": [ + 43.0343405914, + 0.717177002702 + ], + "libelle_d_acheminement": "PAYSSOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.717177002702, + 43.0343405914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bf5e3e7700ea17f080039f082bb5f0b71c1c9c0", + "fields": { + "code_commune_insee": "40334", + "nom_de_la_commune": "YZOSSE", + "code_postal": "40180", + "coordonnees_gps": [ + 43.7169211073, + -1.01616122338 + ], + "libelle_d_acheminement": "YZOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01616122338, + 43.7169211073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eb8720bb00980abe8e48fdfd5889a3b77830ece", + "fields": { + "code_commune_insee": "31410", + "nom_de_la_commune": "PECHBONNIEU", + "code_postal": "31140", + "coordonnees_gps": [ + 43.7112584886, + 1.45879137829 + ], + "libelle_d_acheminement": "PECHBONNIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45879137829, + 43.7112584886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7409051c904186ac84c697dd09e3b261c12dcb7", + "fields": { + "code_commune_insee": "41001", + "nom_de_la_commune": "AMBLOY", + "code_postal": "41310", + "coordonnees_gps": [ + 47.7092016541, + 0.969332418982 + ], + "libelle_d_acheminement": "AMBLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.969332418982, + 47.7092016541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "275d0cb3ac54e0c7fb390f04eafbd4067d63276a", + "fields": { + "code_commune_insee": "31417", + "nom_de_la_commune": "PIBRAC", + "code_postal": "31820", + "coordonnees_gps": [ + 43.6274385363, + 1.26139475262 + ], + "libelle_d_acheminement": "PIBRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26139475262, + 43.6274385363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8d257236dbb4baa2b538481ccf18a6a3c8e6353", + "fields": { + "code_commune_insee": "41004", + "nom_de_la_commune": "ARTINS", + "code_postal": "41800", + "coordonnees_gps": [ + 47.749928771, + 0.747280450383 + ], + "libelle_d_acheminement": "ARTINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.747280450383, + 47.749928771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2487e92300c4d5ed29d126edbbe08a1eb0ba6bb3", + "fields": { + "code_commune_insee": "31418", + "nom_de_la_commune": "PIN BALMA", + "code_postal": "31130", + "coordonnees_gps": [ + 43.6223426383, + 1.53573594468 + ], + "libelle_d_acheminement": "PIN BALMA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53573594468, + 43.6223426383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc57f664c1faa234104fc471aec739664f839153", + "fields": { + "code_commune_insee": "41013", + "nom_de_la_commune": "BAUZY", + "code_postal": "41250", + "coordonnees_gps": [ + 47.5290329996, + 1.61142205503 + ], + "libelle_d_acheminement": "BAUZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61142205503, + 47.5290329996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d55b2a6fb09f973e5f53b4fb6d0df29cf86b090", + "fields": { + "code_commune_insee": "31419", + "nom_de_la_commune": "LE PIN MURELET", + "code_postal": "31370", + "coordonnees_gps": [ + 43.3973997258, + 1.02131338284 + ], + "libelle_d_acheminement": "LE PIN MURELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02131338284, + 43.3973997258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8cef10d8fef96b676b5c6c359db82dffbc45c28", + "fields": { + "code_commune_insee": "41019", + "nom_de_la_commune": "BOISSEAU", + "code_postal": "41290", + "coordonnees_gps": [ + 47.7736389694, + 1.30617122072 + ], + "libelle_d_acheminement": "BOISSEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30617122072, + 47.7736389694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e711f42fe600e2fe08b9c39ec0b2e72bdb87db9", + "fields": { + "code_commune_insee": "31420", + "nom_de_la_commune": "PINSAGUEL", + "code_postal": "31120", + "coordonnees_gps": [ + 43.503057751, + 1.39393626333 + ], + "libelle_d_acheminement": "PINSAGUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39393626333, + 43.503057751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8adab2ca465c6efb57cfc3fa907519657c049059", + "fields": { + "code_commune_insee": "41040", + "nom_de_la_commune": "LA CHAPELLE VENDOMOISE", + "code_postal": "41330", + "coordonnees_gps": [ + 47.6758696503, + 1.23879753733 + ], + "libelle_d_acheminement": "LA CHAPELLE VENDOMOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23879753733, + 47.6758696503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e5f043659cc6cd3ab9f0b14deac76a33b29a99e", + "fields": { + "code_commune_insee": "31437", + "nom_de_la_commune": "POUZE", + "code_postal": "31450", + "coordonnees_gps": [ + 43.4340476482, + 1.53418307965 + ], + "libelle_d_acheminement": "POUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53418307965, + 43.4340476482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c9fb66c5de22057b562efb1ddc1da25d770c49a", + "fields": { + "code_commune_insee": "41045", + "nom_de_la_commune": "CHAUMONT SUR LOIRE", + "code_postal": "41150", + "coordonnees_gps": [ + 47.4655792877, + 1.19931554619 + ], + "libelle_d_acheminement": "CHAUMONT SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19931554619, + 47.4655792877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cba1b50abdaddd571a06b2da5c955f9f1b99580", + "fields": { + "code_commune_insee": "31443", + "nom_de_la_commune": "PUYMAURIN", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3702723747, + 0.752565450774 + ], + "libelle_d_acheminement": "PUYMAURIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.752565450774, + 43.3702723747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a42f6a22e3929b3038c5a539f968edd8465a896b", + "fields": { + "code_commune_insee": "41047", + "nom_de_la_commune": "LA CHAUSSEE ST VICTOR", + "code_postal": "41260", + "coordonnees_gps": [ + 47.6111559006, + 1.35763609326 + ], + "libelle_d_acheminement": "LA CHAUSSEE ST VICTOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35763609326, + 47.6111559006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f596f6712e73196a30bdcc4036f270ba44a1c8fb", + "fields": { + "code_commune_insee": "31450", + "nom_de_la_commune": "RENNEVILLE", + "code_postal": "31290", + "coordonnees_gps": [ + 43.3790411122, + 1.7213166535 + ], + "libelle_d_acheminement": "RENNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7213166535, + 43.3790411122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a648fbeda864818be7530125a7e780f5e9e0f7e4", + "fields": { + "code_commune_insee": "41048", + "nom_de_la_commune": "CHAUVIGNY DU PERCHE", + "code_postal": "41270", + "coordonnees_gps": [ + 47.9595342882, + 1.07791272033 + ], + "libelle_d_acheminement": "CHAUVIGNY DU PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07791272033, + 47.9595342882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db784695b9eaf8317f698c47ef1a67290107f067", + "fields": { + "code_commune_insee": "31451", + "nom_de_la_commune": "REVEL", + "code_postal": "31250", + "coordonnees_gps": [ + 43.4656037799, + 1.99689394052 + ], + "libelle_d_acheminement": "REVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99689394052, + 43.4656037799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "287af711b82f01459f5835fd4b41e42e12ab9557", + "fields": { + "code_commune_insee": "41050", + "nom_de_la_commune": "CHEVERNY", + "code_postal": "41700", + "coordonnees_gps": [ + 47.4773814435, + 1.45430435221 + ], + "libelle_d_acheminement": "CHEVERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45430435221, + 47.4773814435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6db7c2d2f7eef8d82820d396d60c7b60035d16d2", + "fields": { + "code_commune_insee": "31456", + "nom_de_la_commune": "RIOLAS", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3508257727, + 0.919273823199 + ], + "libelle_d_acheminement": "RIOLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.919273823199, + 43.3508257727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d99e21e3a8f292f3482dd2b77363b853ceb2f4c3", + "fields": { + "code_commune_insee": "41057", + "nom_de_la_commune": "CONAN", + "code_postal": "41290", + "coordonnees_gps": [ + 47.7409180871, + 1.29793582342 + ], + "libelle_d_acheminement": "CONAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29793582342, + 47.7409180871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "206696ed6b7aa663eca443ef053a57d22636699c", + "fields": { + "code_commune_insee": "31457", + "nom_de_la_commune": "ROQUEFORT SUR GARONNE", + "code_postal": "31360", + "coordonnees_gps": [ + 43.1598351922, + 0.986755873381 + ], + "libelle_d_acheminement": "ROQUEFORT SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.986755873381, + 43.1598351922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8d12f808190885af1d8ee0bb4b43bfe0e3792bc", + "fields": { + "ligne_5": "FOUGERES SUR BIEVRE", + "code_commune_insee": "41059", + "libelle_d_acheminement": "LE CONTROIS EN SOLOGNE", + "code_postal": "41120", + "nom_de_la_commune": "LE CONTROIS EN SOLOGNE", + "coordonnees_gps": [ + 47.4210455026, + 1.43621364655 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43621364655, + 47.4210455026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f76ae85340e4040df88be3e08f407eadc732b2f", + "fields": { + "code_commune_insee": "31469", + "nom_de_la_commune": "ST ARAILLE", + "code_postal": "31430", + "coordonnees_gps": [ + 43.352440739, + 1.00393657756 + ], + "libelle_d_acheminement": "ST ARAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00393657756, + 43.352440739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d1930e48d869056fe0343907f8e7a493ea7e87a", + "fields": { + "ligne_5": "OUCHAMPS", + "code_commune_insee": "41059", + "libelle_d_acheminement": "LE CONTROIS EN SOLOGNE", + "code_postal": "41120", + "nom_de_la_commune": "LE CONTROIS EN SOLOGNE", + "coordonnees_gps": [ + 47.4210455026, + 1.43621364655 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43621364655, + 47.4210455026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4aa1cf5c4b6939944874e52bbed7bd50b07c11f3", + "fields": { + "code_commune_insee": "31477", + "nom_de_la_commune": "ST ELIX SEGLAN", + "code_postal": "31420", + "coordonnees_gps": [ + 43.1955942672, + 0.849139152455 + ], + "libelle_d_acheminement": "ST ELIX SEGLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.849139152455, + 43.1955942672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7612345f6445a80fc661cd94f7f8fdd1a4378304", + "fields": { + "code_commune_insee": "41060", + "nom_de_la_commune": "CORMENON", + "code_postal": "41170", + "coordonnees_gps": [ + 47.962055026, + 0.907252808617 + ], + "libelle_d_acheminement": "CORMENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.907252808617, + 47.962055026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "121e751dd1272b42d6e0e527a250b5c1883f88d7", + "fields": { + "code_commune_insee": "31481", + "nom_de_la_commune": "STE FOY DE PEYROLIERES", + "code_postal": "31470", + "coordonnees_gps": [ + 43.4808986734, + 1.13693209455 + ], + "libelle_d_acheminement": "STE FOY DE PEYROLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13693209455, + 43.4808986734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f4e66c1d2273bb62c3623a3aec02ded16a86b94", + "fields": { + "code_commune_insee": "41066", + "nom_de_la_commune": "COURBOUZON", + "code_postal": "41500", + "coordonnees_gps": [ + 47.6953682562, + 1.53490352676 + ], + "libelle_d_acheminement": "COURBOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53490352676, + 47.6953682562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1470850289983e50576b455a1f2730edbc84dd79", + "fields": { + "code_commune_insee": "31487", + "nom_de_la_commune": "ST IGNAN", + "code_postal": "31800", + "coordonnees_gps": [ + 43.1568513226, + 0.68984481098 + ], + "libelle_d_acheminement": "ST IGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.68984481098, + 43.1568513226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7836eff57bbda028b63db5dcd1f41cbf956f7492", + "fields": { + "code_commune_insee": "41067", + "nom_de_la_commune": "COUR CHEVERNY", + "code_postal": "41700", + "coordonnees_gps": [ + 47.5102298859, + 1.4769737233 + ], + "libelle_d_acheminement": "COUR CHEVERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4769737233, + 47.5102298859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cae626c8fe67c06c59ad1e5a73e70ed06126d811", + "fields": { + "code_commune_insee": "31488", + "nom_de_la_commune": "ST JEAN", + "code_postal": "31240", + "coordonnees_gps": [ + 43.6632000218, + 1.50080213607 + ], + "libelle_d_acheminement": "ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50080213607, + 43.6632000218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfb9c595adef015e7bf2c15b1e7c89441b935b5f", + "fields": { + "code_commune_insee": "41072", + "nom_de_la_commune": "CRUCHERAY", + "code_postal": "41100", + "coordonnees_gps": [ + 47.7318797043, + 1.09938100556 + ], + "libelle_d_acheminement": "CRUCHERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09938100556, + 47.7318797043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c968f7fa14f314bd135a55bc773c13cc18e52d9", + "fields": { + "code_commune_insee": "31496", + "nom_de_la_commune": "STE LIVRADE", + "code_postal": "31530", + "coordonnees_gps": [ + 43.6486109155, + 1.11198442378 + ], + "libelle_d_acheminement": "STE LIVRADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11198442378, + 43.6486109155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d403dd5edbb64733d202770685b6a9379c35a9c", + "fields": { + "code_commune_insee": "41083", + "nom_de_la_commune": "LA FERTE BEAUHARNAIS", + "code_postal": "41210", + "coordonnees_gps": [ + 47.5392830492, + 1.85456317215 + ], + "libelle_d_acheminement": "LA FERTE BEAUHARNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85456317215, + 47.5392830492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92168068c4cfdec6bd02dc417ba92545b04d88cf", + "fields": { + "code_commune_insee": "31497", + "nom_de_la_commune": "ST LOUP CAMMAS", + "code_postal": "31140", + "coordonnees_gps": [ + 43.6978585888, + 1.47992781027 + ], + "libelle_d_acheminement": "ST LOUP CAMMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47992781027, + 43.6978585888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3234560fd7128e5e05d2221e21a73973c0c3b88e", + "fields": { + "code_commune_insee": "41085", + "nom_de_la_commune": "LA FERTE ST CYR", + "code_postal": "41220", + "coordonnees_gps": [ + 47.668097057, + 1.68657012929 + ], + "libelle_d_acheminement": "LA FERTE ST CYR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68657012929, + 47.668097057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5467a729622de42d6b92ae5778f76ce5f758ee88", + "fields": { + "code_commune_insee": "31503", + "nom_de_la_commune": "ST MARTORY", + "code_postal": "31360", + "coordonnees_gps": [ + 43.1434206034, + 0.936747778684 + ], + "libelle_d_acheminement": "ST MARTORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.936747778684, + 43.1434206034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "153bc10b708acb7f1ec8bb279de0c6790dc51d9c", + "fields": { + "code_commune_insee": "41100", + "nom_de_la_commune": "LES HAYES", + "code_postal": "41800", + "coordonnees_gps": [ + 47.6990596775, + 0.780078483408 + ], + "libelle_d_acheminement": "LES HAYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.780078483408, + 47.6990596775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "400712469040a9bdb12accaee30003b233426ff9", + "fields": { + "code_commune_insee": "31509", + "nom_de_la_commune": "ST PE D ARDET", + "code_postal": "31510", + "coordonnees_gps": [ + 42.9860697615, + 0.679972122876 + ], + "libelle_d_acheminement": "ST PE D ARDET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.679972122876, + 42.9860697615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "482f6adf08673b49153e84999c43c46507850523", + "fields": { + "code_commune_insee": "41101", + "nom_de_la_commune": "HERBAULT", + "code_postal": "41190", + "coordonnees_gps": [ + 47.6153995146, + 1.1561362769 + ], + "libelle_d_acheminement": "HERBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1561362769, + 47.6153995146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "940b05b61f6125f8dd2568fe4042edde243f0ec8", + "fields": { + "code_commune_insee": "31510", + "nom_de_la_commune": "ST PE DELBOSC", + "code_postal": "31350", + "coordonnees_gps": [ + 43.2673675811, + 0.694204654124 + ], + "libelle_d_acheminement": "ST PE DELBOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.694204654124, + 43.2673675811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0064b046b0a57a61f64506f94722a3132004508", + "fields": { + "code_commune_insee": "41102", + "nom_de_la_commune": "HOUSSAY", + "code_postal": "41800", + "coordonnees_gps": [ + 47.7446954686, + 0.947069193008 + ], + "libelle_d_acheminement": "HOUSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.947069193008, + 47.7446954686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce3c7a382a1e4d20a03d9abb23a2f744def9829a", + "fields": { + "code_commune_insee": "31517", + "nom_de_la_commune": "ST SULPICE SUR LEZE", + "code_postal": "31410", + "coordonnees_gps": [ + 43.3245529434, + 1.34127372326 + ], + "libelle_d_acheminement": "ST SULPICE SUR LEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34127372326, + 43.3245529434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d11b1f5b8e45ee4c2f0c62f11bc2486ceba4689", + "fields": { + "code_commune_insee": "41106", + "nom_de_la_commune": "LAMOTTE BEUVRON", + "code_postal": "41600", + "coordonnees_gps": [ + 47.6033008872, + 2.02321996926 + ], + "libelle_d_acheminement": "LAMOTTE BEUVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02321996926, + 47.6033008872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "226970bec7156ff46c787e8185134ae5c0a705c1", + "fields": { + "code_commune_insee": "31521", + "nom_de_la_commune": "SALEICH", + "code_postal": "31260", + "coordonnees_gps": [ + 43.02832537, + 0.968226003804 + ], + "libelle_d_acheminement": "SALEICH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.968226003804, + 43.02832537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2194c5e8fe3f362228ccfadd3b537d7e280074a1", + "fields": { + "code_commune_insee": "41107", + "nom_de_la_commune": "LANCE", + "code_postal": "41310", + "coordonnees_gps": [ + 47.6845629215, + 1.06714179153 + ], + "libelle_d_acheminement": "LANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06714179153, + 47.6845629215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf3c62440b5c887b6f31e39e7500cf362a898c07", + "fields": { + "code_commune_insee": "31522", + "nom_de_la_commune": "SALERM", + "code_postal": "31230", + "coordonnees_gps": [ + 43.3071722167, + 0.824917497249 + ], + "libelle_d_acheminement": "SALERM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.824917497249, + 43.3071722167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b03d73557d6b1fadc86008597a2f9081a336d99", + "fields": { + "code_commune_insee": "41112", + "nom_de_la_commune": "LASSAY SUR CROISNE", + "code_postal": "41230", + "coordonnees_gps": [ + 47.3683917223, + 1.63492604577 + ], + "libelle_d_acheminement": "LASSAY SUR CROISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63492604577, + 47.3683917223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce90f0aeaabf6199ec4eddefa90a5927c2934d84", + "fields": { + "code_commune_insee": "31537", + "nom_de_la_commune": "SAVARTHES", + "code_postal": "31800", + "coordonnees_gps": [ + 43.1222207361, + 0.803999322883 + ], + "libelle_d_acheminement": "SAVARTHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.803999322883, + 43.1222207361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "820f191d15bc5f2357b02b7eb65f81e44c63e9e6", + "fields": { + "code_commune_insee": "41114", + "nom_de_la_commune": "LESTIOU", + "code_postal": "41500", + "coordonnees_gps": [ + 47.7487658878, + 1.5656758407 + ], + "libelle_d_acheminement": "LESTIOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5656758407, + 47.7487658878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a02b0ea870468222d4e181cf05dae0f223bff4d1", + "fields": { + "code_commune_insee": "31541", + "nom_de_la_commune": "SEILH", + "code_postal": "31840", + "coordonnees_gps": [ + 43.6900953799, + 1.35675007167 + ], + "libelle_d_acheminement": "SEILH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35675007167, + 43.6900953799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9290f149c35d30bd1da10fa1737f48f88236539a", + "fields": { + "code_commune_insee": "41120", + "nom_de_la_commune": "LUNAY", + "code_postal": "41360", + "coordonnees_gps": [ + 47.8098385704, + 0.904566521301 + ], + "libelle_d_acheminement": "LUNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.904566521301, + 47.8098385704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c0c4f7346129c5b05ac4a7380cb2e12997f842b", + "fields": { + "code_commune_insee": "31545", + "nom_de_la_commune": "SEPX", + "code_postal": "31360", + "coordonnees_gps": [ + 43.1553410067, + 0.83700632268 + ], + "libelle_d_acheminement": "SEPX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.83700632268, + 43.1553410067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1caf2fb1d8d96dd3b060e03656c493294e5a3cc", + "fields": { + "code_commune_insee": "41121", + "nom_de_la_commune": "LA MADELEINE VILLEFROUIN", + "code_postal": "41370", + "coordonnees_gps": [ + 47.7776509493, + 1.38986777758 + ], + "libelle_d_acheminement": "LA MADELEINE VILLEFROUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38986777758, + 47.7776509493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06abdc099b844c2071de8d8f57fad3b326b69c77", + "fields": { + "code_commune_insee": "31548", + "nom_de_la_commune": "SIGNAC", + "code_postal": "31440", + "coordonnees_gps": [ + 42.9101955817, + 0.617550184326 + ], + "libelle_d_acheminement": "SIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.617550184326, + 42.9101955817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "915fc47abec0d357d5ea3800c07494db615dd4a7", + "fields": { + "code_commune_insee": "41125", + "nom_de_la_commune": "MARCILLY EN GAULT", + "code_postal": "41210", + "coordonnees_gps": [ + 47.4626952674, + 1.87087192257 + ], + "libelle_d_acheminement": "MARCILLY EN GAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87087192257, + 47.4626952674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "505cf3a4661846019cd7f55f50bc050a45522e37", + "fields": { + "code_commune_insee": "31555", + "nom_de_la_commune": "TOULOUSE", + "code_postal": "31500", + "coordonnees_gps": [ + 43.5963814303, + 1.43167293364 + ], + "libelle_d_acheminement": "TOULOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43167293364, + 43.5963814303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd00c1d7f951e8f97dd56d3124f7f8a4cb345a27", + "fields": { + "code_commune_insee": "41128", + "nom_de_la_commune": "MAROLLES", + "code_postal": "41330", + "coordonnees_gps": [ + 47.652671241, + 1.31004193193 + ], + "libelle_d_acheminement": "MAROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31004193193, + 47.652671241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7918ad30cf6a1186509eaf75c67f767b0d4dfdc5", + "fields": { + "code_commune_insee": "31557", + "nom_de_la_commune": "TOURNEFEUILLE", + "code_postal": "31170", + "coordonnees_gps": [ + 43.5781918597, + 1.33500697752 + ], + "libelle_d_acheminement": "TOURNEFEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33500697752, + 43.5781918597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7500b4dfcb7f6ccac5cc58e52c2254beec34dfb0", + "fields": { + "code_commune_insee": "41132", + "nom_de_la_commune": "MEHERS", + "code_postal": "41140", + "coordonnees_gps": [ + 47.3272275407, + 1.45220950578 + ], + "libelle_d_acheminement": "MEHERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45220950578, + 47.3272275407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54969c7d00c1a1b9642ae15dbb63c04603db4574", + "fields": { + "code_commune_insee": "31560", + "nom_de_la_commune": "TREBONS SUR LA GRASSE", + "code_postal": "31290", + "coordonnees_gps": [ + 43.4488110268, + 1.72135340112 + ], + "libelle_d_acheminement": "TREBONS SUR LA GRASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72135340112, + 43.4488110268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ef694da6e425efb145488fe39638786c30df453", + "fields": { + "code_commune_insee": "41138", + "nom_de_la_commune": "MESLAY", + "code_postal": "41100", + "coordonnees_gps": [ + 47.8158272648, + 1.11151070429 + ], + "libelle_d_acheminement": "MESLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11151070429, + 47.8158272648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4415cbf4b0d940e49490a125d3de1059a0f8fc68", + "fields": { + "code_commune_insee": "31569", + "nom_de_la_commune": "VAUDREUILLE", + "code_postal": "31250", + "coordonnees_gps": [ + 43.4249087979, + 2.00114634186 + ], + "libelle_d_acheminement": "VAUDREUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00114634186, + 43.4249087979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "071e0b703cf12fef25efb248163b05697af6f56c", + "fields": { + "code_commune_insee": "41140", + "nom_de_la_commune": "MILLANCAY", + "code_postal": "41200", + "coordonnees_gps": [ + 47.4506811357, + 1.78045310661 + ], + "libelle_d_acheminement": "MILLANCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78045310661, + 47.4506811357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2a379b30be3cc50fe62bbbf4c167af0fdb107c0", + "fields": { + "code_commune_insee": "31572", + "nom_de_la_commune": "VENERQUE", + "code_postal": "31810", + "coordonnees_gps": [ + 43.4337432193, + 1.4666400302 + ], + "libelle_d_acheminement": "VENERQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4666400302, + 43.4337432193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "154d1322114ec75aac1eab72e26384eb6afc31c7", + "fields": { + "code_commune_insee": "41141", + "nom_de_la_commune": "MOISY", + "code_postal": "41160", + "coordonnees_gps": [ + 47.9185905171, + 1.31867272655 + ], + "libelle_d_acheminement": "MOISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31867272655, + 47.9185905171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c8e59439e06168005ef994c6dca7509cfc577e2", + "fields": { + "code_commune_insee": "31582", + "nom_de_la_commune": "VILLEFRANCHE DE LAURAGAIS", + "code_postal": "31290", + "coordonnees_gps": [ + 43.4067792695, + 1.71965126707 + ], + "libelle_d_acheminement": "VILLEFRANCHE DE LAURAGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71965126707, + 43.4067792695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a25da2291f7d282053fcfe46184806d20abb656c", + "fields": { + "code_commune_insee": "41144", + "nom_de_la_commune": "MONTEAUX", + "code_postal": "41150", + "coordonnees_gps": [ + 47.4857270055, + 1.10591640742 + ], + "libelle_d_acheminement": "MONTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10591640742, + 47.4857270055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af1e150b4e6918f476451ef1888792fe7758f28c", + "fields": { + "code_commune_insee": "31592", + "nom_de_la_commune": "LARRA", + "code_postal": "31330", + "coordonnees_gps": [ + 43.7340725626, + 1.22427334755 + ], + "libelle_d_acheminement": "LARRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22427334755, + 43.7340725626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f222da9cb922bb3ebcb3aa5bf346a285e7adffa2", + "fields": { + "code_commune_insee": "41152", + "nom_de_la_commune": "MONTRIEUX EN SOLOGNE", + "code_postal": "41210", + "coordonnees_gps": [ + 47.5504272914, + 1.71812517711 + ], + "libelle_d_acheminement": "MONTRIEUX EN SOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71812517711, + 47.5504272914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25ca2ac960df8ea94e567ac9f6e8cf0545f903d8", + "fields": { + "code_commune_insee": "32002", + "nom_de_la_commune": "ANSAN", + "code_postal": "32270", + "coordonnees_gps": [ + 43.6870501224, + 0.781408599383 + ], + "libelle_d_acheminement": "ANSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.781408599383, + 43.6870501224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef3bb1c6529467ebe5f80e8e976e7aa18538638e", + "fields": { + "code_commune_insee": "41157", + "nom_de_la_commune": "MUR DE SOLOGNE", + "code_postal": "41230", + "coordonnees_gps": [ + 47.4172155186, + 1.59888181618 + ], + "libelle_d_acheminement": "MUR DE SOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59888181618, + 47.4172155186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc55735e344fd5a198fe95e75183bf3e4ceb07b8", + "fields": { + "code_commune_insee": "32021", + "nom_de_la_commune": "AVENSAC", + "code_postal": "32120", + "coordonnees_gps": [ + 43.8307167324, + 0.901736113802 + ], + "libelle_d_acheminement": "AVENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.901736113802, + 43.8307167324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb03a5d39fb67bd7fafcfedd2600b6f30b6b2ad8", + "fields": { + "code_commune_insee": "41158", + "nom_de_la_commune": "NAVEIL", + "code_postal": "41100", + "coordonnees_gps": [ + 47.7865941509, + 1.02283866344 + ], + "libelle_d_acheminement": "NAVEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02283866344, + 47.7865941509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e82cff24e6bad123356fe5e70ea560e9e1537703", + "fields": { + "code_commune_insee": "32022", + "nom_de_la_commune": "AVERON BERGELLE", + "code_postal": "32290", + "coordonnees_gps": [ + 43.7562294926, + 0.0657583607792 + ], + "libelle_d_acheminement": "AVERON BERGELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0657583607792, + 43.7562294926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6faeb559be18b4f2c1684700806b3920388ee6b6", + "fields": { + "code_commune_insee": "41163", + "nom_de_la_commune": "NOURRAY", + "code_postal": "41310", + "coordonnees_gps": [ + 47.7184151238, + 1.05012298309 + ], + "libelle_d_acheminement": "NOURRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05012298309, + 47.7184151238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7cd01160788311de445582fc26c3ece64fb6e43", + "fields": { + "code_commune_insee": "32036", + "nom_de_la_commune": "BEAUMARCHES", + "code_postal": "32160", + "coordonnees_gps": [ + 43.5864405522, + 0.106916356793 + ], + "libelle_d_acheminement": "BEAUMARCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.106916356793, + 43.5864405522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6244b53abf17c4adedcb8f368b20d188f9b6cf35", + "fields": { + "ligne_5": "BAIGNEAUX", + "code_commune_insee": "41171", + "libelle_d_acheminement": "OUCQUES LA NOUVELLE", + "code_postal": "41290", + "nom_de_la_commune": "OUCQUES LA NOUVELLE", + "coordonnees_gps": [ + 47.8191691674, + 1.29908240443 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29908240443, + 47.8191691674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e0ce3e0b34183cc6c3ee4647631a1211f010482", + "fields": { + "code_commune_insee": "32046", + "nom_de_la_commune": "BERNEDE", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6704966634, + -0.220993320987 + ], + "libelle_d_acheminement": "BERNEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.220993320987, + 43.6704966634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc1d72c07aa98a55baba36ac412a0244f91f9f19", + "fields": { + "ligne_5": "BEAUVILLIERS", + "code_commune_insee": "41171", + "libelle_d_acheminement": "OUCQUES LA NOUVELLE", + "code_postal": "41290", + "nom_de_la_commune": "OUCQUES LA NOUVELLE", + "coordonnees_gps": [ + 47.8191691674, + 1.29908240443 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29908240443, + 47.8191691674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48d26fe4c0723835c705b1f82cb96f95964c74a2", + "fields": { + "code_commune_insee": "32048", + "nom_de_la_commune": "BETCAVE AGUIN", + "code_postal": "32420", + "coordonnees_gps": [ + 43.4451021606, + 0.683256837932 + ], + "libelle_d_acheminement": "BETCAVE AGUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.683256837932, + 43.4451021606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c52383c88a419b8d76c359b30822a593b98b8b7c", + "fields": { + "ligne_5": "PRENOUVELLON", + "code_commune_insee": "41173", + "libelle_d_acheminement": "BEAUCE LA ROMAINE", + "code_postal": "41240", + "nom_de_la_commune": "BEAUCE LA ROMAINE", + "coordonnees_gps": [ + 47.9026361174, + 1.53361751623 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53361751623, + 47.9026361174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8e540841d3a222d6312e32d2e30bf0f9345638d", + "fields": { + "code_commune_insee": "32049", + "nom_de_la_commune": "BETOUS", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7179595422, + 0.0247471680215 + ], + "libelle_d_acheminement": "BETOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0247471680215, + 43.7179595422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c9921e972630eafc1aeaed38caf7c4da46533e7", + "fields": { + "ligne_5": "TRIPLEVILLE", + "code_commune_insee": "41173", + "libelle_d_acheminement": "BEAUCE LA ROMAINE", + "code_postal": "41240", + "nom_de_la_commune": "BEAUCE LA ROMAINE", + "coordonnees_gps": [ + 47.9026361174, + 1.53361751623 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53361751623, + 47.9026361174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12041557347f1a3ae1196074040c56afe7e5af60", + "fields": { + "code_commune_insee": "32060", + "nom_de_la_commune": "BOUCAGNERES", + "code_postal": "32550", + "coordonnees_gps": [ + 43.5618344681, + 0.620002433688 + ], + "libelle_d_acheminement": "BOUCAGNERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.620002433688, + 43.5618344681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "876f05767ff572f76da7b1aab416f78e80eb13b8", + "fields": { + "code_commune_insee": "41175", + "nom_de_la_commune": "PEZOU", + "code_postal": "41100", + "coordonnees_gps": [ + 47.8682993601, + 1.14633634068 + ], + "libelle_d_acheminement": "PEZOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14633634068, + 47.8682993601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9ee710fc722ee69adfc912e7ac8bf995eba866b", + "fields": { + "code_commune_insee": "32063", + "nom_de_la_commune": "BOUZON GELLENAVE", + "code_postal": "32290", + "coordonnees_gps": [ + 43.68786977, + 0.0280695424113 + ], + "libelle_d_acheminement": "BOUZON GELLENAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0280695424113, + 43.68786977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fffcceecf508726f2b343ce307affb0d630b5db7", + "fields": { + "code_commune_insee": "41184", + "nom_de_la_commune": "PRUNAY CASSEREAU", + "code_postal": "41310", + "coordonnees_gps": [ + 47.6845526893, + 0.912628813807 + ], + "libelle_d_acheminement": "PRUNAY CASSEREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.912628813807, + 47.6845526893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d78e0d24656c13ae8f4e4532d37a73a0560dd8cc", + "fields": { + "code_commune_insee": "32066", + "nom_de_la_commune": "BRUGNENS", + "code_postal": "32500", + "coordonnees_gps": [ + 43.8417873872, + 0.722552080652 + ], + "libelle_d_acheminement": "BRUGNENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.722552080652, + 43.8417873872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e11d7ec3de552d5a80f8705f66d91ed3b8acf29a", + "fields": { + "code_commune_insee": "41186", + "nom_de_la_commune": "RAHART", + "code_postal": "41160", + "coordonnees_gps": [ + 47.869943021, + 1.06095189274 + ], + "libelle_d_acheminement": "RAHART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06095189274, + 47.869943021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9fb3df329e37e7c6e9314ddada7d570cb81c39e", + "fields": { + "code_commune_insee": "32069", + "nom_de_la_commune": "CADEILLAN", + "code_postal": "32220", + "coordonnees_gps": [ + 43.420255903, + 0.841855457027 + ], + "libelle_d_acheminement": "CADEILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.841855457027, + 43.420255903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a65327bded8f6d65a0343e16cd2a41468eb61aa", + "fields": { + "code_commune_insee": "41192", + "nom_de_la_commune": "LES ROCHES L EVEQUE", + "code_postal": "41800", + "coordonnees_gps": [ + 47.7861085409, + 0.88757317848 + ], + "libelle_d_acheminement": "LES ROCHES L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.88757317848, + 47.7861085409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a242e94467394a3bd70e97219b316240445fe9a", + "fields": { + "code_commune_insee": "32083", + "nom_de_la_commune": "CASTERA VERDUZAN", + "code_postal": "32410", + "coordonnees_gps": [ + 43.8015571753, + 0.433315812149 + ], + "libelle_d_acheminement": "CASTERA VERDUZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.433315812149, + 43.8015571753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a86da30d0346958fee9a83ee6b7bb98a3503dd95", + "fields": { + "code_commune_insee": "41194", + "nom_de_la_commune": "ROMORANTIN LANTHENAY", + "code_postal": "41200", + "coordonnees_gps": [ + 47.3745226341, + 1.74456385409 + ], + "libelle_d_acheminement": "ROMORANTIN LANTHENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74456385409, + 47.3745226341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c886d78e35e8eabf64f5e329a719d3601d8d1da", + "fields": { + "code_commune_insee": "32085", + "nom_de_la_commune": "CASTET ARROUY", + "code_postal": "32340", + "coordonnees_gps": [ + 43.9816866375, + 0.722854688091 + ], + "libelle_d_acheminement": "CASTET ARROUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.722854688091, + 43.9816866375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee2617d06baf9bc496dccf52999e2d51c33d3778", + "fields": { + "code_commune_insee": "41196", + "nom_de_la_commune": "RUAN SUR EGVONNE", + "code_postal": "41270", + "coordonnees_gps": [ + 48.0144840391, + 1.13649766481 + ], + "libelle_d_acheminement": "RUAN SUR EGVONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13649766481, + 48.0144840391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b9b066ab3050f563b1eac7c12b75eb10395802c", + "fields": { + "code_commune_insee": "32087", + "nom_de_la_commune": "CASTEX D ARMAGNAC", + "code_postal": "32240", + "coordonnees_gps": [ + 43.8687260884, + -0.165862662186 + ], + "libelle_d_acheminement": "CASTEX D ARMAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.165862662186, + 43.8687260884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6771ed4019af6f5089d9e0f2d7191892d5cdda9", + "fields": { + "code_commune_insee": "41207", + "nom_de_la_commune": "ST DYE SUR LOIRE", + "code_postal": "41500", + "coordonnees_gps": [ + 47.6513917962, + 1.49460349559 + ], + "libelle_d_acheminement": "ST DYE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49460349559, + 47.6513917962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3709f58f715f09cb042066070b9ee4882cd70f4", + "fields": { + "code_commune_insee": "32089", + "nom_de_la_commune": "CASTILLON MASSAS", + "code_postal": "32360", + "coordonnees_gps": [ + 43.7164195467, + 0.541095638869 + ], + "libelle_d_acheminement": "CASTILLON MASSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.541095638869, + 43.7164195467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47078c896f9afc1d41019c3fdad0dc21ca40e653", + "fields": { + "code_commune_insee": "41213", + "nom_de_la_commune": "ST GOURGON", + "code_postal": "41310", + "coordonnees_gps": [ + 47.6608251122, + 1.0124485184 + ], + "libelle_d_acheminement": "ST GOURGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0124485184, + 47.6608251122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8afd9ec70ada3088cb02ef21d95e94643b71fe7a", + "fields": { + "code_commune_insee": "32097", + "nom_de_la_commune": "CAZAUX D ANGLES", + "code_postal": "32190", + "coordonnees_gps": [ + 43.6564434737, + 0.265936475433 + ], + "libelle_d_acheminement": "CAZAUX D ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.265936475433, + 43.6564434737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "772a576746c9d3bdaa62ab0176e3373c2b962595", + "fields": { + "code_commune_insee": "41220", + "nom_de_la_commune": "ST LAURENT NOUAN", + "code_postal": "41220", + "coordonnees_gps": [ + 47.709174366, + 1.62466277515 + ], + "libelle_d_acheminement": "ST LAURENT NOUAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62466277515, + 47.709174366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f9583e649b273d07dd31e0b8cc16e6bf30555a0", + "fields": { + "code_commune_insee": "32108", + "nom_de_la_commune": "CORNEILLAN", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6540927627, + -0.18506977354 + ], + "libelle_d_acheminement": "CORNEILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.18506977354, + 43.6540927627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c4c13bc72ec8dff9bf9d92a5e059f627bd6f5e0", + "fields": { + "ligne_5": "NOUAN SUR LOIRE", + "code_commune_insee": "41220", + "libelle_d_acheminement": "ST LAURENT NOUAN", + "code_postal": "41220", + "nom_de_la_commune": "ST LAURENT NOUAN", + "coordonnees_gps": [ + 47.709174366, + 1.62466277515 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62466277515, + 47.709174366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f525a46cae19f142a35b23f6c11dc0e4de56cc2", + "fields": { + "code_commune_insee": "32113", + "nom_de_la_commune": "CRAVENCERES", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7740057628, + 0.0298979307327 + ], + "libelle_d_acheminement": "CRAVENCERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0298979307327, + 43.7740057628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4251195eff3ca45da9c1d2e086f6508f2b4e0120", + "fields": { + "code_commune_insee": "41224", + "nom_de_la_commune": "ST MARC DU COR", + "code_postal": "41170", + "coordonnees_gps": [ + 47.9680036234, + 0.968517516884 + ], + "libelle_d_acheminement": "ST MARC DU COR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.968517516884, + 47.9680036234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "309b58593ba968b45fd079b16cd0f8cd12f2b189", + "fields": { + "code_commune_insee": "32121", + "nom_de_la_commune": "ENDOUFIELLE", + "code_postal": "32600", + "coordonnees_gps": [ + 43.5444326144, + 1.02189690192 + ], + "libelle_d_acheminement": "ENDOUFIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02189690192, + 43.5444326144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c0572113961be8e1c556e25f0e59fb9f571bd48", + "fields": { + "code_commune_insee": "41225", + "nom_de_la_commune": "ST MARTIN DES BOIS", + "code_postal": "41800", + "coordonnees_gps": [ + 47.7252568405, + 0.824501862365 + ], + "libelle_d_acheminement": "ST MARTIN DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.824501862365, + 47.7252568405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b3496a6f71afcb2adc901d6b4aae9c7c8878e4c", + "fields": { + "code_commune_insee": "32130", + "nom_de_la_commune": "FAGET ABBATIAL", + "code_postal": "32450", + "coordonnees_gps": [ + 43.5060870997, + 0.690621166698 + ], + "libelle_d_acheminement": "FAGET ABBATIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.690621166698, + 43.5060870997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a939ac7cbbe3e671742bba9d07d7311621ab383", + "fields": { + "code_commune_insee": "41228", + "nom_de_la_commune": "ST RIMAY", + "code_postal": "41800", + "coordonnees_gps": [ + 47.7696926711, + 0.915812743496 + ], + "libelle_d_acheminement": "ST RIMAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.915812743496, + 47.7696926711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba0d2f61e31d812397dea43b66529a1e2b42b4cd", + "fields": { + "code_commune_insee": "32134", + "nom_de_la_commune": "FREGOUVILLE", + "code_postal": "32490", + "coordonnees_gps": [ + 43.57691237, + 0.95458639452 + ], + "libelle_d_acheminement": "FREGOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95458639452, + 43.57691237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f2317cd4ca2d94d8371e15c4134344280af3264", + "fields": { + "code_commune_insee": "41234", + "nom_de_la_commune": "SANTENAY", + "code_postal": "41190", + "coordonnees_gps": [ + 47.5654037881, + 1.10267700813 + ], + "libelle_d_acheminement": "SANTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10267700813, + 47.5654037881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2fbc571468cf4c15379869741acd7d2d81b2c0c", + "fields": { + "code_commune_insee": "32139", + "nom_de_la_commune": "GAUDONVILLE", + "code_postal": "32380", + "coordonnees_gps": [ + 43.8852287116, + 0.8453478098 + ], + "libelle_d_acheminement": "GAUDONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.8453478098, + 43.8852287116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9a064f5366fa50cda5dde7b536f8d3f2f5f5efc", + "fields": { + "ligne_5": "ARVILLE", + "code_commune_insee": "41248", + "libelle_d_acheminement": "COUETRON AU PERCHE", + "code_postal": "41170", + "nom_de_la_commune": "COUETRON AU PERCHE", + "coordonnees_gps": [ + 48.0447092121, + 0.846594759389 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.846594759389, + 48.0447092121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3badb2eb8b4ce030cae0adc16ba8613e736600da", + "fields": { + "code_commune_insee": "32143", + "nom_de_la_commune": "GAZAUPOUY", + "code_postal": "32480", + "coordonnees_gps": [ + 44.0130398922, + 0.463572395827 + ], + "libelle_d_acheminement": "GAZAUPOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.463572395827, + 44.0130398922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d305525945e98396ed6e461d1e149a69268868e", + "fields": { + "ligne_5": "OIGNY", + "code_commune_insee": "41248", + "libelle_d_acheminement": "COUETRON AU PERCHE", + "code_postal": "41170", + "nom_de_la_commune": "COUETRON AU PERCHE", + "coordonnees_gps": [ + 48.0447092121, + 0.846594759389 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.846594759389, + 48.0447092121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "022b7aa84f8681913539a82763cb319e55d09770", + "fields": { + "code_commune_insee": "32149", + "nom_de_la_commune": "GONDRIN", + "code_postal": "32330", + "coordonnees_gps": [ + 43.8786441863, + 0.260411080095 + ], + "libelle_d_acheminement": "GONDRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.260411080095, + 43.8786441863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad3f1caffdbe064a949c9f62c0f2194321612d3b", + "fields": { + "ligne_5": "ST AVIT", + "code_commune_insee": "41248", + "libelle_d_acheminement": "COUETRON AU PERCHE", + "code_postal": "41170", + "nom_de_la_commune": "COUETRON AU PERCHE", + "coordonnees_gps": [ + 48.0447092121, + 0.846594759389 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.846594759389, + 48.0447092121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39acbbe77f4a62c80f80ae890de7e4c6241c6d24", + "fields": { + "code_commune_insee": "32161", + "nom_de_la_commune": "IZOTGES", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6550039282, + -0.0184210252942 + ], + "libelle_d_acheminement": "IZOTGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0184210252942, + 43.6550039282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40d15a24ca19afb0288381f1db60b3cf6452cd20", + "fields": { + "code_commune_insee": "41252", + "nom_de_la_commune": "SUEVRES", + "code_postal": "41500", + "coordonnees_gps": [ + 47.6814203099, + 1.4544890001 + ], + "libelle_d_acheminement": "SUEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4544890001, + 47.6814203099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e448a2ff3f0453e3381c7408f6fd3c530615de6", + "fields": { + "code_commune_insee": "32164", + "nom_de_la_commune": "JUILLAC", + "code_postal": "32230", + "coordonnees_gps": [ + 43.542341334, + 0.12212200093 + ], + "libelle_d_acheminement": "JUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12212200093, + 43.542341334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dc6dd43ac5e97fa5f56ce5c6ce000a1a8055414", + "fields": { + "code_commune_insee": "41253", + "nom_de_la_commune": "TALCY", + "code_postal": "41370", + "coordonnees_gps": [ + 47.7683772018, + 1.4383898244 + ], + "libelle_d_acheminement": "TALCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4383898244, + 47.7683772018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99848b55f892552535f5f37062984f1361d7e3cc", + "fields": { + "code_commune_insee": "32165", + "nom_de_la_commune": "JUILLES", + "code_postal": "32200", + "coordonnees_gps": [ + 43.6069084453, + 0.82649870993 + ], + "libelle_d_acheminement": "JUILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82649870993, + 43.6069084453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cb1ad710d8529f8ddfd661cd42ff955e2cfc1cb", + "fields": { + "code_commune_insee": "41255", + "nom_de_la_commune": "TERNAY", + "code_postal": "41800", + "coordonnees_gps": [ + 47.7345836701, + 0.771871183813 + ], + "libelle_d_acheminement": "TERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.771871183813, + 47.7345836701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72a5b0f716456c21a546f39910d609893ca8e7be", + "fields": { + "code_commune_insee": "32170", + "nom_de_la_commune": "LABARTHETE", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6283080545, + -0.164158807539 + ], + "libelle_d_acheminement": "LABARTHETE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.164158807539, + 43.6283080545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8da91d78f88f9bc2f424987456e3a0c8e053ed4c", + "fields": { + "code_commune_insee": "41258", + "nom_de_la_commune": "THESEE", + "code_postal": "41140", + "coordonnees_gps": [ + 47.324633057, + 1.33039153971 + ], + "libelle_d_acheminement": "THESEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.33039153971, + 47.324633057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e55c1a6d6f993e2b1477c75e34fe8d3f7d7bea4b", + "fields": { + "code_commune_insee": "32178", + "nom_de_la_commune": "LAGARDERE", + "code_postal": "32310", + "coordonnees_gps": [ + 43.842189141, + 0.322509664835 + ], + "libelle_d_acheminement": "LAGARDERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.322509664835, + 43.842189141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35d6af8b6c773d4ce8bd8eac5b6bc171e5faca74", + "fields": { + "code_commune_insee": "41266", + "nom_de_la_commune": "VALAIRE", + "code_postal": "41120", + "coordonnees_gps": [ + 47.474463527, + 1.25582446624 + ], + "libelle_d_acheminement": "VALAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25582446624, + 47.474463527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99687e250c02d11d2f132426c2fe63f5496e157d", + "fields": { + "code_commune_insee": "32182", + "nom_de_la_commune": "LAHAS", + "code_postal": "32130", + "coordonnees_gps": [ + 43.5626431381, + 0.89864407712 + ], + "libelle_d_acheminement": "LAHAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.89864407712, + 43.5626431381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f2037026a7fcd754b88f0a7d30c480063f3588c", + "fields": { + "code_commune_insee": "41268", + "nom_de_la_commune": "VEILLEINS", + "code_postal": "41230", + "coordonnees_gps": [ + 47.4276616233, + 1.6882174614 + ], + "libelle_d_acheminement": "VEILLEINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6882174614, + 47.4276616233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74338563f1f3bfbccb1d13f50fb7c4e158a6801a", + "fields": { + "code_commune_insee": "32191", + "nom_de_la_commune": "LANNE SOUBIRAN", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7419885132, + -0.102687269527 + ], + "libelle_d_acheminement": "LANNE SOUBIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.102687269527, + 43.7419885132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b74c04605aeddb0667fbc6a1111ad9ebd4b83982", + "fields": { + "code_commune_insee": "41276", + "nom_de_la_commune": "VILLEBAROU", + "code_postal": "41000", + "coordonnees_gps": [ + 47.6266800111, + 1.3190312927 + ], + "libelle_d_acheminement": "VILLEBAROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3190312927, + 47.6266800111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1efbfd6419dc2f562a4267260e49d4649ce41e35", + "fields": { + "code_commune_insee": "32193", + "nom_de_la_commune": "LAREE", + "code_postal": "32150", + "coordonnees_gps": [ + 43.9065293068, + -0.0565335680322 + ], + "libelle_d_acheminement": "LAREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0565335680322, + 43.9065293068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a29793db7b88227ee3d682b09a3ae020c81f457f", + "fields": { + "code_commune_insee": "41281", + "nom_de_la_commune": "VILLEFRANCOEUR", + "code_postal": "41330", + "coordonnees_gps": [ + 47.696504262, + 1.20343836438 + ], + "libelle_d_acheminement": "VILLEFRANCOEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20343836438, + 47.696504262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48777f92cb259aa9af1f641be3fc37617148f0a5", + "fields": { + "code_commune_insee": "32196", + "nom_de_la_commune": "LARROQUE ST SERNIN", + "code_postal": "32410", + "coordonnees_gps": [ + 43.8298476261, + 0.46893020045 + ], + "libelle_d_acheminement": "LARROQUE ST SERNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46893020045, + 43.8298476261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fbf689cb492257bb087feab51500c6e7d6161f3", + "fields": { + "code_commune_insee": "41295", + "nom_de_la_commune": "VINEUIL", + "code_postal": "41350", + "coordonnees_gps": [ + 47.5862925993, + 1.38832136173 + ], + "libelle_d_acheminement": "VINEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38832136173, + 47.5862925993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "447d76b3e8588f85f9d448c7e5592f4059d73208", + "fields": { + "code_commune_insee": "32198", + "nom_de_la_commune": "LARTIGUE", + "code_postal": "32450", + "coordonnees_gps": [ + 43.5343473965, + 0.710396986111 + ], + "libelle_d_acheminement": "LARTIGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.710396986111, + 43.5343473965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0054ac6fa0937932b4a4c1c41e98eecbae27fc71", + "fields": { + "code_commune_insee": "42001", + "nom_de_la_commune": "ABOEN", + "code_postal": "42380", + "coordonnees_gps": [ + 45.412713546, + 4.12725438172 + ], + "libelle_d_acheminement": "ABOEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12725438172, + 45.412713546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07b477a1ef49525e4e22ae94f51757a5fc9baee5", + "fields": { + "code_commune_insee": "32201", + "nom_de_la_commune": "LASSEUBE PROPRE", + "code_postal": "32550", + "coordonnees_gps": [ + 43.5727715292, + 0.575516716894 + ], + "libelle_d_acheminement": "LASSEUBE PROPRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.575516716894, + 43.5727715292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0973928b8e04e18a31d3f465ca25362ed0b64511", + "fields": { + "code_commune_insee": "42002", + "nom_de_la_commune": "AILLEUX", + "code_postal": "42130", + "coordonnees_gps": [ + 45.7991604687, + 3.93365168543 + ], + "libelle_d_acheminement": "AILLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93365168543, + 45.7991604687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79360a8c950ace394c6bbf922542be2cc9921f69", + "fields": { + "code_commune_insee": "32205", + "nom_de_la_commune": "LAVERAET", + "code_postal": "32230", + "coordonnees_gps": [ + 43.5270584933, + 0.213549832473 + ], + "libelle_d_acheminement": "LAVERAET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.213549832473, + 43.5270584933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d5a07280b9fb75c40b868ab1dc830f560c8b9ae", + "fields": { + "code_commune_insee": "42012", + "nom_de_la_commune": "BARD", + "code_postal": "42600", + "coordonnees_gps": [ + 45.5922264726, + 3.99761908102 + ], + "libelle_d_acheminement": "BARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99761908102, + 45.5922264726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37d8b55225ba6338cb383f90d6a6860547df4768", + "fields": { + "code_commune_insee": "32215", + "nom_de_la_commune": "LOUBERSAN", + "code_postal": "32300", + "coordonnees_gps": [ + 43.5013299383, + 0.511821177501 + ], + "libelle_d_acheminement": "LOUBERSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.511821177501, + 43.5013299383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aff34ed3593c0227e0f9f90866e84acddcfd171", + "fields": { + "code_commune_insee": "42018", + "nom_de_la_commune": "BESSEY", + "code_postal": "42520", + "coordonnees_gps": [ + 45.3909624319, + 4.70262242235 + ], + "libelle_d_acheminement": "BESSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70262242235, + 45.3909624319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52cbac09fb2532716d6552d406677be82cef73ff", + "fields": { + "code_commune_insee": "32229", + "nom_de_la_commune": "MANSEMPUY", + "code_postal": "32120", + "coordonnees_gps": [ + 43.7436576149, + 0.811351998027 + ], + "libelle_d_acheminement": "MANSEMPUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.811351998027, + 43.7436576149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d8b00f93c14ee9a1cad410c61454dc9564612a4", + "fields": { + "code_commune_insee": "42021", + "nom_de_la_commune": "BOISSET ST PRIEST", + "code_postal": "42560", + "coordonnees_gps": [ + 45.5129034516, + 4.1187324401 + ], + "libelle_d_acheminement": "BOISSET ST PRIEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1187324401, + 45.5129034516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "401a3409300b861350cafc31d8685cad37ea5b04", + "fields": { + "code_commune_insee": "32232", + "nom_de_la_commune": "MARAVAT", + "code_postal": "32120", + "coordonnees_gps": [ + 43.7604708957, + 0.765120308835 + ], + "libelle_d_acheminement": "MARAVAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.765120308835, + 43.7604708957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ed1c9141c19a4041b3b2e6f5da00877f5b0898e", + "fields": { + "code_commune_insee": "42025", + "nom_de_la_commune": "BOYER", + "code_postal": "42460", + "coordonnees_gps": [ + 46.0971669978, + 4.21483763027 + ], + "libelle_d_acheminement": "BOYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21483763027, + 46.0971669978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed8c1b1867d410663f5d5da53a4981207db64a8e", + "fields": { + "code_commune_insee": "32240", + "nom_de_la_commune": "MASCARAS", + "code_postal": "32230", + "coordonnees_gps": [ + 43.5524108996, + 0.22300525689 + ], + "libelle_d_acheminement": "MASCARAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22300525689, + 43.5524108996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18fbdb8c065f491369201a7a502495eb44fcc267", + "fields": { + "code_commune_insee": "42034", + "nom_de_la_commune": "CERVIERES", + "code_postal": "42440", + "coordonnees_gps": [ + 45.8524253224, + 3.75375770217 + ], + "libelle_d_acheminement": "CERVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75375770217, + 45.8524253224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5124711fae4afe02f2f780057c34c21f3cf607c", + "fields": { + "code_commune_insee": "32248", + "nom_de_la_commune": "MAUROUX", + "code_postal": "32380", + "coordonnees_gps": [ + 43.9070056495, + 0.824272401269 + ], + "libelle_d_acheminement": "MAUROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.824272401269, + 43.9070056495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fe3f7385ca8f5f6817af85b3d7c4825fae83595", + "fields": { + "code_commune_insee": "42037", + "nom_de_la_commune": "CHALAIN D UZORE", + "code_postal": "42600", + "coordonnees_gps": [ + 45.6726268892, + 4.06032311486 + ], + "libelle_d_acheminement": "CHALAIN D UZORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06032311486, + 45.6726268892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b2097c2912a1bcb5c2ae2598ca59e8e06f36b3b", + "fields": { + "code_commune_insee": "32249", + "nom_de_la_commune": "MAUVEZIN", + "code_postal": "32120", + "coordonnees_gps": [ + 43.7315774069, + 0.866244798675 + ], + "libelle_d_acheminement": "MAUVEZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.866244798675, + 43.7315774069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8d63abb4614b91028f78c982ae2beab752fbe5e", + "fields": { + "code_commune_insee": "42043", + "nom_de_la_commune": "CHAMBOEUF", + "code_postal": "42330", + "coordonnees_gps": [ + 45.5743049771, + 4.32163705727 + ], + "libelle_d_acheminement": "CHAMBOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32163705727, + 45.5743049771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce662d4de78b201f6ef605823608ebc0812dd716", + "fields": { + "code_commune_insee": "32250", + "nom_de_la_commune": "MEILHAN", + "code_postal": "32420", + "coordonnees_gps": [ + 43.4221007304, + 0.677329916548 + ], + "libelle_d_acheminement": "MEILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.677329916548, + 43.4221007304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69b25e16dd26fafe1dfee74b2db0bbda06fe625d", + "fields": { + "code_commune_insee": "42045", + "nom_de_la_commune": "LA CHAMBONIE", + "code_postal": "42440", + "coordonnees_gps": [ + 45.7435606657, + 3.7579660525 + ], + "libelle_d_acheminement": "LA CHAMBONIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7579660525, + 45.7435606657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ab9dec82b20dcc34297e6e7c8d68db9608d9580", + "fields": { + "code_commune_insee": "32251", + "nom_de_la_commune": "MERENS", + "code_postal": "32360", + "coordonnees_gps": [ + 43.7510788643, + 0.549608367761 + ], + "libelle_d_acheminement": "MERENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.549608367761, + 43.7510788643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f72a9e09043a3a76d097f2298406987a4df100de", + "fields": { + "code_commune_insee": "42048", + "nom_de_la_commune": "CHANDON", + "code_postal": "42190", + "coordonnees_gps": [ + 46.1467528549, + 4.20223388149 + ], + "libelle_d_acheminement": "CHANDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20223388149, + 46.1467528549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9345dfce55703657ad3752a241cdd7d4aed998c", + "fields": { + "code_commune_insee": "32252", + "nom_de_la_commune": "MIELAN", + "code_postal": "32170", + "coordonnees_gps": [ + 43.4293162971, + 0.310399473004 + ], + "libelle_d_acheminement": "MIELAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.310399473004, + 43.4293162971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6695be5a29f2cbd2231a0612cfb9f911c958e195", + "fields": { + "code_commune_insee": "42050", + "nom_de_la_commune": "LA CHAPELLE EN LAFAYE", + "code_postal": "42380", + "coordonnees_gps": [ + 45.4593011559, + 3.98511801378 + ], + "libelle_d_acheminement": "LA CHAPELLE EN LAFAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98511801378, + 45.4593011559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6437cb33b2c2ccbd1cf908cdde1d1daf996d6e97", + "fields": { + "code_commune_insee": "32253", + "nom_de_la_commune": "MIRADOUX", + "code_postal": "32340", + "coordonnees_gps": [ + 43.9947437393, + 0.758879620932 + ], + "libelle_d_acheminement": "MIRADOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.758879620932, + 43.9947437393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dbc3e4ae9c8729be7e2e369ddfe9d570ada8269", + "fields": { + "code_commune_insee": "42051", + "nom_de_la_commune": "LA CHAPELLE VILLARS", + "code_postal": "42410", + "coordonnees_gps": [ + 45.4780450334, + 4.7142051612 + ], + "libelle_d_acheminement": "LA CHAPELLE VILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7142051612, + 45.4780450334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08e49dd035a5f7dab5dc8a368106f3c247f4d6b1", + "fields": { + "code_commune_insee": "32257", + "nom_de_la_commune": "MIRANNES", + "code_postal": "32350", + "coordonnees_gps": [ + 43.6243319554, + 0.38349486791 + ], + "libelle_d_acheminement": "MIRANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.38349486791, + 43.6243319554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56144516043f11602894680b9253622b8e1c11aa", + "fields": { + "code_commune_insee": "42059", + "nom_de_la_commune": "CHAZELLES SUR LYON", + "code_postal": "42140", + "coordonnees_gps": [ + 45.6292859414, + 4.37386809116 + ], + "libelle_d_acheminement": "CHAZELLES SUR LYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37386809116, + 45.6292859414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82d8aa081149455b4063cd5ba2dcd3802627b4fb", + "fields": { + "code_commune_insee": "32261", + "nom_de_la_commune": "MONBLANC", + "code_postal": "32130", + "coordonnees_gps": [ + 43.4639644757, + 0.992864484425 + ], + "libelle_d_acheminement": "MONBLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.992864484425, + 43.4639644757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89177c620a34eaec199273e8f1f9bcbdc8ea1ccb", + "fields": { + "code_commune_insee": "42066", + "nom_de_la_commune": "CLEPPE", + "code_postal": "42110", + "coordonnees_gps": [ + 45.760405726, + 4.17661128061 + ], + "libelle_d_acheminement": "CLEPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17661128061, + 45.760405726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e23356361e85da73240c6c6ca441b484b5d12873", + "fields": { + "code_commune_insee": "32267", + "nom_de_la_commune": "MONFERRAN PLAVES", + "code_postal": "32260", + "coordonnees_gps": [ + 43.4947854517, + 0.640118219989 + ], + "libelle_d_acheminement": "MONFERRAN PLAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.640118219989, + 43.4947854517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2f6e46f97ee44b6b4e2db3696ae07692141ffcc", + "fields": { + "code_commune_insee": "42071", + "nom_de_la_commune": "LE COTEAU", + "code_postal": "42120", + "coordonnees_gps": [ + 46.0172302823, + 4.09095787437 + ], + "libelle_d_acheminement": "LE COTEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09095787437, + 46.0172302823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0669490ffebcb9583a1d1892be593e246e302a19", + "fields": { + "code_commune_insee": "32272", + "nom_de_la_commune": "MONLAUR BERNET", + "code_postal": "32140", + "coordonnees_gps": [ + 43.3481362028, + 0.512127645248 + ], + "libelle_d_acheminement": "MONLAUR BERNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.512127645248, + 43.3481362028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9abd45dd7ff0cbdf494511efdd9e31bf7fe09cde", + "fields": { + "code_commune_insee": "42078", + "nom_de_la_commune": "LE CROZET", + "code_postal": "42310", + "coordonnees_gps": [ + 46.1733609918, + 3.83820754323 + ], + "libelle_d_acheminement": "LE CROZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83820754323, + 46.1733609918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a63418bf586f097a6475d0ffb0f9a2f98ad48db", + "fields": { + "code_commune_insee": "32280", + "nom_de_la_commune": "MONT D ASTARAC", + "code_postal": "32140", + "coordonnees_gps": [ + 43.3319789875, + 0.57774131865 + ], + "libelle_d_acheminement": "MONT D ASTARAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.57774131865, + 43.3319789875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00b971250613758d3a0788642353b744e027f092", + "fields": { + "code_commune_insee": "42081", + "nom_de_la_commune": "CUZIEU", + "code_postal": "42330", + "coordonnees_gps": [ + 45.6062985124, + 4.26545207151 + ], + "libelle_d_acheminement": "CUZIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26545207151, + 45.6062985124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68ced43b17e83781dc99798eff651f4c71939c37", + "fields": { + "code_commune_insee": "32281", + "nom_de_la_commune": "MONT DE MARRAST", + "code_postal": "32170", + "coordonnees_gps": [ + 43.3881448989, + 0.372176339267 + ], + "libelle_d_acheminement": "MONT DE MARRAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.372176339267, + 43.3881448989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bea4f6ee60fcace39d1ccb2c79f65a4472d1055", + "fields": { + "code_commune_insee": "42084", + "nom_de_la_commune": "DEBATS RIVIERE D ORPRA", + "code_postal": "42130", + "coordonnees_gps": [ + 45.7576644008, + 3.9420526909 + ], + "libelle_d_acheminement": "DEBATS RIVIERE D ORPRA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9420526909, + 45.7576644008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0120934bcffbe4a5ac522ea164dc034abcb14413", + "fields": { + "code_commune_insee": "32284", + "nom_de_la_commune": "MONTEGUT SAVES", + "code_postal": "32220", + "coordonnees_gps": [ + 43.4377361422, + 0.959505366368 + ], + "libelle_d_acheminement": "MONTEGUT SAVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.959505366368, + 43.4377361422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a6333b89cba32d7f651a915cc5980d1d42723da", + "fields": { + "code_commune_insee": "42085", + "nom_de_la_commune": "DOIZIEUX", + "code_postal": "42740", + "coordonnees_gps": [ + 45.4182832028, + 4.58919336955 + ], + "libelle_d_acheminement": "DOIZIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58919336955, + 45.4182832028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4d625a408de254cef53ec1b383d3a468b62c14e", + "fields": { + "code_commune_insee": "32293", + "nom_de_la_commune": "MOUCHES", + "code_postal": "32300", + "coordonnees_gps": [ + 43.5571624102, + 0.42208735235 + ], + "libelle_d_acheminement": "MOUCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.42208735235, + 43.5571624102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0116b1fc32437c9b81d4fd16a82551ca81b0ebeb", + "fields": { + "code_commune_insee": "42087", + "nom_de_la_commune": "ECOTAY L OLME", + "code_postal": "42600", + "coordonnees_gps": [ + 45.5867257895, + 4.04549513063 + ], + "libelle_d_acheminement": "ECOTAY L OLME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04549513063, + 45.5867257895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5f46f552f509298169f59b67715ec84fa9b1f4b", + "fields": { + "code_commune_insee": "32298", + "nom_de_la_commune": "NOUGAROULET", + "code_postal": "32270", + "coordonnees_gps": [ + 43.6899514871, + 0.717872769956 + ], + "libelle_d_acheminement": "NOUGAROULET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.717872769956, + 43.6899514871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e293e24eebf69b2b6aa52a1b32d03b5d102fa09", + "fields": { + "code_commune_insee": "42089", + "nom_de_la_commune": "ESSERTINES EN CHATELNEUF", + "code_postal": "42600", + "coordonnees_gps": [ + 45.6183532974, + 3.99924034774 + ], + "libelle_d_acheminement": "ESSERTINES EN CHATELNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99924034774, + 45.6183532974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "691d9b0460b3d733da14132e0539c92d18f0c775", + "fields": { + "code_commune_insee": "32307", + "nom_de_la_commune": "PAVIE", + "code_postal": "32550", + "coordonnees_gps": [ + 43.605614575, + 0.589850870884 + ], + "libelle_d_acheminement": "PAVIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.589850870884, + 43.605614575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9129d3d396caf74c3c2f86297650bae2d65ed21", + "fields": { + "code_commune_insee": "42091", + "nom_de_la_commune": "ESTIVAREILLES", + "code_postal": "42380", + "coordonnees_gps": [ + 45.4305784876, + 4.01661876407 + ], + "libelle_d_acheminement": "ESTIVAREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01661876407, + 45.4305784876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfa6b15d8aeef7fdae64fc3101af625970b035dc", + "fields": { + "code_commune_insee": "32308", + "nom_de_la_commune": "PEBEES", + "code_postal": "32130", + "coordonnees_gps": [ + 43.4606720707, + 1.02549034693 + ], + "libelle_d_acheminement": "PEBEES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02549034693, + 43.4606720707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7f87b43cbead99aacd05d19eba18e211362dcae", + "fields": { + "code_commune_insee": "42098", + "nom_de_la_commune": "FOURNEAUX", + "code_postal": "42470", + "coordonnees_gps": [ + 45.9427445306, + 4.27204000195 + ], + "libelle_d_acheminement": "FOURNEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27204000195, + 45.9427445306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95d8dcb0a6c3d5d1ce47e6a97b5e5bf2da3e6104", + "fields": { + "code_commune_insee": "32309", + "nom_de_la_commune": "PELLEFIGUE", + "code_postal": "32420", + "coordonnees_gps": [ + 43.4789558709, + 0.79093287265 + ], + "libelle_d_acheminement": "PELLEFIGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.79093287265, + 43.4789558709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1a3ba910f05c5278e6b9cd31a38e56e97963358", + "fields": { + "code_commune_insee": "42107", + "nom_de_la_commune": "GUMIERES", + "code_postal": "42560", + "coordonnees_gps": [ + 45.5273238675, + 3.97708738007 + ], + "libelle_d_acheminement": "GUMIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97708738007, + 45.5273238675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3937f6576a30fe2708264657f13e5cefa5d61f2", + "fields": { + "code_commune_insee": "32313", + "nom_de_la_commune": "PESSOULENS", + "code_postal": "32380", + "coordonnees_gps": [ + 43.8577797759, + 0.881779501914 + ], + "libelle_d_acheminement": "PESSOULENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.881779501914, + 43.8577797759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c4562a98a9dceda54a3860f4d71849e0130bda0", + "fields": { + "code_commune_insee": "42109", + "nom_de_la_commune": "L HOPITAL SOUS ROCHEFORT", + "code_postal": "42130", + "coordonnees_gps": [ + 45.772221105, + 3.93582231796 + ], + "libelle_d_acheminement": "L HOPITAL SOUS ROCHEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93582231796, + 45.772221105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce93c4d35c315af20f3476a84938c6fdbe10da68", + "fields": { + "code_commune_insee": "32316", + "nom_de_la_commune": "PEYRUSSE MASSAS", + "code_postal": "32360", + "coordonnees_gps": [ + 43.7394070802, + 0.556957801671 + ], + "libelle_d_acheminement": "PEYRUSSE MASSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.556957801671, + 43.7394070802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06576ea905e7d1917d293ee9d778600964e16010", + "fields": { + "code_commune_insee": "42110", + "nom_de_la_commune": "L HORME", + "code_postal": "42152", + "coordonnees_gps": [ + 45.4920272407, + 4.54055415513 + ], + "libelle_d_acheminement": "L HORME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54055415513, + 45.4920272407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f71524a282c2172aa1f7144d012914eb84d1bad", + "fields": { + "code_commune_insee": "32318", + "nom_de_la_commune": "PIS", + "code_postal": "32500", + "coordonnees_gps": [ + 43.7866546974, + 0.708992924431 + ], + "libelle_d_acheminement": "PIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.708992924431, + 43.7866546974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5b7d57aa056c06a6547f291af5fd73843e13939", + "fields": { + "code_commune_insee": "42112", + "nom_de_la_commune": "JARNOSSE", + "code_postal": "42460", + "coordonnees_gps": [ + 46.100691759, + 4.24588298664 + ], + "libelle_d_acheminement": "JARNOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24588298664, + 46.100691759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54f826e4aadaeef6a028044996d1a1a7a56e7f20", + "fields": { + "code_commune_insee": "32322", + "nom_de_la_commune": "POMPIAC", + "code_postal": "32130", + "coordonnees_gps": [ + 43.5155437622, + 1.00396355344 + ], + "libelle_d_acheminement": "POMPIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00396355344, + 43.5155437622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31fef0938b5118f9ed73e51d7eebe0c4b80c241a", + "fields": { + "code_commune_insee": "42119", + "nom_de_la_commune": "LEIGNEUX", + "code_postal": "42130", + "coordonnees_gps": [ + 45.7434903751, + 3.98404823618 + ], + "libelle_d_acheminement": "LEIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98404823618, + 45.7434903751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4277464361363234ec959fb8c5cd93866f8ee3d6", + "fields": { + "code_commune_insee": "32326", + "nom_de_la_commune": "POUYLEBON", + "code_postal": "32320", + "coordonnees_gps": [ + 43.5445195823, + 0.30221228905 + ], + "libelle_d_acheminement": "POUYLEBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.30221228905, + 43.5445195823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "422e260ee27887c42b42744d0dcb70324778e6e0", + "fields": { + "code_commune_insee": "42124", + "nom_de_la_commune": "LUPE", + "code_postal": "42520", + "coordonnees_gps": [ + 45.3732296224, + 4.70055587706 + ], + "libelle_d_acheminement": "LUPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70055587706, + 45.3732296224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ede0d75aac2573b5136901c9db2821390d1d7044", + "fields": { + "code_commune_insee": "32350", + "nom_de_la_commune": "ROQUEPINE", + "code_postal": "32100", + "coordonnees_gps": [ + 43.9083463279, + 0.468129432409 + ], + "libelle_d_acheminement": "ROQUEPINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.468129432409, + 43.9083463279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e5196696c517e955caa807a503d6f7dd1d842f4", + "fields": { + "code_commune_insee": "42129", + "nom_de_la_commune": "MACLAS", + "code_postal": "42520", + "coordonnees_gps": [ + 45.3609273148, + 4.6976820732 + ], + "libelle_d_acheminement": "MACLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6976820732, + 45.3609273148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b62d6205f4ede9648fde3ee8bc6b7dcb611b7fe", + "fields": { + "code_commune_insee": "32368", + "nom_de_la_commune": "STE CHRISTIE", + "code_postal": "32390", + "coordonnees_gps": [ + 43.7568936206, + 0.632111364488 + ], + "libelle_d_acheminement": "STE CHRISTIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.632111364488, + 43.7568936206 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b43400b1c9ec6742d5a7f43a5af8a4a8f6439b8", + "fields": { + "code_commune_insee": "42132", + "nom_de_la_commune": "MALLEVAL", + "code_postal": "42520", + "coordonnees_gps": [ + 45.3854577768, + 4.72587258984 + ], + "libelle_d_acheminement": "MALLEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72587258984, + 45.3854577768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61b4892acbfe42b32032d3a6236e4ed105d85ad3", + "fields": { + "code_commune_insee": "32372", + "nom_de_la_commune": "ST CRICQ", + "code_postal": "32430", + "coordonnees_gps": [ + 43.6982927538, + 0.988565148255 + ], + "libelle_d_acheminement": "ST CRICQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.988565148255, + 43.6982927538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2478c1deaca735410a8d18d1dc8baa557e652d6", + "fields": { + "code_commune_insee": "42138", + "nom_de_la_commune": "MARINGES", + "code_postal": "42140", + "coordonnees_gps": [ + 45.660883929, + 4.35369654471 + ], + "libelle_d_acheminement": "MARINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35369654471, + 45.660883929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22bdbfc9efc738c352f1d53685595a8f58ba35c3", + "fields": { + "code_commune_insee": "32375", + "nom_de_la_commune": "ST ELIX THEUX", + "code_postal": "32300", + "coordonnees_gps": [ + 43.4280095382, + 0.472914015633 + ], + "libelle_d_acheminement": "ST ELIX THEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.472914015633, + 43.4280095382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3154b03c39028d0d5d2f68ee6f7b6bdeec130bdf", + "fields": { + "code_commune_insee": "42143", + "nom_de_la_commune": "MIZERIEUX", + "code_postal": "42110", + "coordonnees_gps": [ + 45.790715516, + 4.16562342856 + ], + "libelle_d_acheminement": "MIZERIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16562342856, + 45.790715516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0acb24a98c44c6803f8e3d75f9a94ad72494aa3e", + "fields": { + "code_commune_insee": "32379", + "nom_de_la_commune": "ST GERMIER", + "code_postal": "32200", + "coordonnees_gps": [ + 43.6735302735, + 0.958403748596 + ], + "libelle_d_acheminement": "ST GERMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.958403748596, + 43.6735302735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87b2c126f498df684ef06625ecbd691768d4e382", + "fields": { + "code_commune_insee": "42158", + "nom_de_la_commune": "LES NOES", + "code_postal": "42370", + "coordonnees_gps": [ + 46.0347302948, + 3.83628210331 + ], + "libelle_d_acheminement": "LES NOES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83628210331, + 46.0347302948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecc342b923225c546bd14f38eb0d27a391ef886d", + "fields": { + "code_commune_insee": "32381", + "nom_de_la_commune": "ST JEAN LE COMTAL", + "code_postal": "32550", + "coordonnees_gps": [ + 43.5737293634, + 0.514611237658 + ], + "libelle_d_acheminement": "ST JEAN LE COMTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.514611237658, + 43.5737293634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2dfe422331db8a295c7e82786b363695a4be46a", + "fields": { + "code_commune_insee": "42164", + "nom_de_la_commune": "PALOGNEUX", + "code_postal": "42990", + "coordonnees_gps": [ + 45.7431305633, + 3.92569530158 + ], + "libelle_d_acheminement": "PALOGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92569530158, + 45.7431305633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1171a79072a7edfcddc91f0b97a06af85b550d3c", + "fields": { + "code_commune_insee": "32383", + "nom_de_la_commune": "ST JUSTIN", + "code_postal": "32230", + "coordonnees_gps": [ + 43.4833069212, + 0.148719879658 + ], + "libelle_d_acheminement": "ST JUSTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.148719879658, + 43.4833069212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edc1f6af9e7e7870352557ab43cb0431b4fe6b57", + "fields": { + "code_commune_insee": "42165", + "nom_de_la_commune": "PANISSIERES", + "code_postal": "42360", + "coordonnees_gps": [ + 45.7937087884, + 4.34408742272 + ], + "libelle_d_acheminement": "PANISSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34408742272, + 45.7937087884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fdd480d96d96777add6676ead2ed455530f1aea", + "fields": { + "code_commune_insee": "32386", + "nom_de_la_commune": "ST LIZIER DU PLANTE", + "code_postal": "32220", + "coordonnees_gps": [ + 43.4096987916, + 0.947438309494 + ], + "libelle_d_acheminement": "ST LIZIER DU PLANTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.947438309494, + 43.4096987916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0deb637ff8b291b579b98a381baec1fbd6abbd39", + "fields": { + "code_commune_insee": "42171", + "nom_de_la_commune": "PINAY", + "code_postal": "42590", + "coordonnees_gps": [ + 45.8713622247, + 4.13461976155 + ], + "libelle_d_acheminement": "PINAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13461976155, + 45.8713622247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38d4746b20e3be2a2862052e6add8041e1270d7d", + "fields": { + "code_commune_insee": "32397", + "nom_de_la_commune": "ST MICHEL", + "code_postal": "32300", + "coordonnees_gps": [ + 43.4314884604, + 0.405781062799 + ], + "libelle_d_acheminement": "ST MICHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.405781062799, + 43.4314884604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c12909cfbaacc9aea3e94dec01f8848b21d6a99", + "fields": { + "code_commune_insee": "42173", + "nom_de_la_commune": "POMMIERS EN FOREZ", + "code_postal": "42260", + "coordonnees_gps": [ + 45.8312779492, + 4.07654195266 + ], + "libelle_d_acheminement": "POMMIERS EN FOREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07654195266, + 45.8312779492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f98040719495d32c780786873e6adf6dfd67a874", + "fields": { + "code_commune_insee": "32400", + "nom_de_la_commune": "ST ORENS POUY PETIT", + "code_postal": "32100", + "coordonnees_gps": [ + 43.9123809326, + 0.438469357077 + ], + "libelle_d_acheminement": "ST ORENS POUY PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.438469357077, + 43.9123809326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acb1a78f8ecaebdd6eb855438cc94b42d9d2874d", + "fields": { + "code_commune_insee": "42175", + "nom_de_la_commune": "POUILLY LES FEURS", + "code_postal": "42110", + "coordonnees_gps": [ + 45.8008382114, + 4.23299692399 + ], + "libelle_d_acheminement": "POUILLY LES FEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23299692399, + 45.8008382114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cef8936dc9806a9e6b9ffdaf610513c4ed4a356", + "fields": { + "code_commune_insee": "32402", + "nom_de_la_commune": "ST PAUL DE BAISE", + "code_postal": "32190", + "coordonnees_gps": [ + 43.7805362747, + 0.372419299589 + ], + "libelle_d_acheminement": "ST PAUL DE BAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.372419299589, + 43.7805362747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec4d4a026638c42b44a3c79396952358dc63a821", + "fields": { + "code_commune_insee": "42184", + "nom_de_la_commune": "RIORGES", + "code_postal": "42153", + "coordonnees_gps": [ + 46.0429114311, + 4.03375590925 + ], + "libelle_d_acheminement": "RIORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03375590925, + 46.0429114311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e26460b97ab06c444c0cfebf074b706347b77aee", + "fields": { + "code_commune_insee": "32403", + "nom_de_la_commune": "ST PIERRE D AUBEZIES", + "code_postal": "32290", + "coordonnees_gps": [ + 43.6493896565, + 0.162149090405 + ], + "libelle_d_acheminement": "ST PIERRE D AUBEZIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.162149090405, + 43.6493896565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d18bb0128fc86e6e056142a9ada7c98a18db4568", + "fields": { + "code_commune_insee": "42189", + "nom_de_la_commune": "ROCHE LA MOLIERE", + "code_postal": "42230", + "coordonnees_gps": [ + 45.4259230436, + 4.32495559821 + ], + "libelle_d_acheminement": "ROCHE LA MOLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32495559821, + 45.4259230436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "987bf5846cbfc9857be0e19a20c39abbeca682e8", + "fields": { + "code_commune_insee": "32413", + "nom_de_la_commune": "SARCOS", + "code_postal": "32420", + "coordonnees_gps": [ + 43.3702423264, + 0.681801871432 + ], + "libelle_d_acheminement": "SARCOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.681801871432, + 43.3702423264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ba652fd0d5a7c2b175af133431803aee0899c5", + "fields": { + "code_commune_insee": "42199", + "nom_de_la_commune": "ST ANDRE D APCHON", + "code_postal": "42370", + "coordonnees_gps": [ + 46.0272361831, + 3.93483213636 + ], + "libelle_d_acheminement": "ST ANDRE D APCHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93483213636, + 46.0272361831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7baf0e5a235b547a389473c070d33db552cd6c14", + "fields": { + "code_commune_insee": "32414", + "nom_de_la_commune": "SARRAGACHIES", + "code_postal": "32400", + "coordonnees_gps": [ + 43.6843173122, + -0.0504570702936 + ], + "libelle_d_acheminement": "SARRAGACHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0504570702936, + 43.6843173122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "982600e4419033a351f37e4a89286be6c4494cd6", + "fields": { + "code_commune_insee": "42201", + "nom_de_la_commune": "ST APPOLINARD", + "code_postal": "42520", + "coordonnees_gps": [ + 45.3455074313, + 4.64751344414 + ], + "libelle_d_acheminement": "ST APPOLINARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64751344414, + 45.3455074313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e198467948a432805eec209f33f62a8da8f3b69", + "fields": { + "code_commune_insee": "32416", + "nom_de_la_commune": "SARRANT", + "code_postal": "32120", + "coordonnees_gps": [ + 43.7704131309, + 0.928322763871 + ], + "libelle_d_acheminement": "SARRANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.928322763871, + 43.7704131309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3bc8a1ce37ffb263e56ea1b79fe6743590985c4", + "fields": { + "ligne_5": "IZIEUX", + "code_commune_insee": "42207", + "libelle_d_acheminement": "ST CHAMOND", + "code_postal": "42400", + "nom_de_la_commune": "ST CHAMOND", + "coordonnees_gps": [ + 45.4698319517, + 4.50184989506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50184989506, + 45.4698319517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5db64db4819d40d9329d7a8655ee91edc47bcc1", + "fields": { + "code_commune_insee": "32418", + "nom_de_la_commune": "SAUVETERRE", + "code_postal": "32220", + "coordonnees_gps": [ + 43.4552121069, + 0.84746612387 + ], + "libelle_d_acheminement": "SAUVETERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.84746612387, + 43.4552121069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77573df0c795fe5e3828e827957740aeb559f972", + "fields": { + "code_commune_insee": "42211", + "nom_de_la_commune": "ST CYPRIEN", + "code_postal": "42160", + "coordonnees_gps": [ + 45.5399613626, + 4.22968401574 + ], + "libelle_d_acheminement": "ST CYPRIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22968401574, + 45.5399613626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e2aa19c17b01c5918da778f09a17929c8bbe810", + "fields": { + "code_commune_insee": "32419", + "nom_de_la_commune": "SAUVIAC", + "code_postal": "32300", + "coordonnees_gps": [ + 43.4094830661, + 0.45725685306 + ], + "libelle_d_acheminement": "SAUVIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45725685306, + 43.4094830661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40d9bb9a518a7357e7b8e266e32f3579a7288946", + "fields": { + "code_commune_insee": "42212", + "nom_de_la_commune": "ST CYR DE FAVIERES", + "code_postal": "42123", + "coordonnees_gps": [ + 45.9616955216, + 4.10513740414 + ], + "libelle_d_acheminement": "ST CYR DE FAVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10513740414, + 45.9616955216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3885e24f17c4d0d0ad8d3bcea6dafa8c9c5c5b1d", + "fields": { + "code_commune_insee": "32421", + "nom_de_la_commune": "SAVIGNAC MONA", + "code_postal": "32130", + "coordonnees_gps": [ + 43.4856907857, + 1.010147796 + ], + "libelle_d_acheminement": "SAVIGNAC MONA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.010147796, + 43.4856907857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a5d0c7ff0c063f3abaf64a7707eadb9894869de", + "fields": { + "code_commune_insee": "42215", + "nom_de_la_commune": "ST DENIS DE CABANNE", + "code_postal": "42750", + "coordonnees_gps": [ + 46.1763743544, + 4.20748749926 + ], + "libelle_d_acheminement": "ST DENIS DE CABANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20748749926, + 46.1763743544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92d90f19b3df12441c6c75b668c118723618c3b9", + "fields": { + "code_commune_insee": "32425", + "nom_de_la_commune": "SEGOUFIELLE", + "code_postal": "32600", + "coordonnees_gps": [ + 43.6308520432, + 1.13179553628 + ], + "libelle_d_acheminement": "SEGOUFIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13179553628, + 43.6308520432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c74cc0e4942600e1b9292269b8a06444bc97bcbb", + "fields": { + "code_commune_insee": "42222", + "nom_de_la_commune": "ST GALMIER", + "code_postal": "42330", + "coordonnees_gps": [ + 45.6033793655, + 4.31450535656 + ], + "libelle_d_acheminement": "ST GALMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31450535656, + 45.6033793655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "907e3286c7c0b3929896c0017b72889d792c7605", + "fields": { + "code_commune_insee": "32429", + "nom_de_la_commune": "SEMPESSERRE", + "code_postal": "32700", + "coordonnees_gps": [ + 44.0211935809, + 0.641183560701 + ], + "libelle_d_acheminement": "SEMPESSERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.641183560701, + 44.0211935809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2da6112f153a723e7c969546cb24bc59f0b4754", + "fields": { + "code_commune_insee": "42226", + "nom_de_la_commune": "ST GEORGES DE BAROILLE", + "code_postal": "42510", + "coordonnees_gps": [ + 45.8535792416, + 4.10712450945 + ], + "libelle_d_acheminement": "ST GEORGES DE BAROILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10712450945, + 45.8535792416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e536180a621900e8b69b40613e2b5d72a22831ea", + "fields": { + "code_commune_insee": "32430", + "nom_de_la_commune": "SERE", + "code_postal": "32140", + "coordonnees_gps": [ + 43.404950777, + 0.645635504083 + ], + "libelle_d_acheminement": "SERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.645635504083, + 43.404950777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "953d869073306ded69a7c66c9fe21c85ab5f987c", + "fields": { + "code_commune_insee": "42227", + "nom_de_la_commune": "ST GEORGES EN COUZAN", + "code_postal": "42990", + "coordonnees_gps": [ + 45.7069401539, + 3.930271238 + ], + "libelle_d_acheminement": "ST GEORGES EN COUZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.930271238, + 45.7069401539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b8156a8596015ec6f62367749861260837076c0", + "fields": { + "code_commune_insee": "32437", + "nom_de_la_commune": "SORBETS", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7138869454, + -0.0164094873395 + ], + "libelle_d_acheminement": "SORBETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0164094873395, + 43.7138869454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8d826366d49546383e5f0463b4282aef72bce9d", + "fields": { + "code_commune_insee": "42231", + "nom_de_la_commune": "ST GERMAIN LESPINASSE", + "code_postal": "42640", + "coordonnees_gps": [ + 46.1088139575, + 3.96414737669 + ], + "libelle_d_acheminement": "ST GERMAIN LESPINASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96414737669, + 46.1088139575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb0c2cac099b78758a7aef35f3a3672c30a397e9", + "fields": { + "code_commune_insee": "32444", + "nom_de_la_commune": "THOUX", + "code_postal": "32430", + "coordonnees_gps": [ + 43.6822691836, + 0.992043234795 + ], + "libelle_d_acheminement": "THOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.992043234795, + 43.6822691836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7793f553f377d2adfc1b3fc8fbfac184c736c34e", + "fields": { + "code_commune_insee": "42234", + "nom_de_la_commune": "ST HEAND", + "code_postal": "42570", + "coordonnees_gps": [ + 45.5305252119, + 4.38203656297 + ], + "libelle_d_acheminement": "ST HEAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38203656297, + 45.5305252119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36a4b7c1aca8b562a85179202d8593054350ae09", + "fields": { + "code_commune_insee": "32452", + "nom_de_la_commune": "TOURNECOUPE", + "code_postal": "32380", + "coordonnees_gps": [ + 43.8620609128, + 0.827558996718 + ], + "libelle_d_acheminement": "TOURNECOUPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.827558996718, + 43.8620609128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eb78c23e49125222545efea4c56c62b32994fc9", + "fields": { + "code_commune_insee": "42238", + "nom_de_la_commune": "ST JEAN LA VETRE", + "code_postal": "42440", + "coordonnees_gps": [ + 45.7746461063, + 3.79161072319 + ], + "libelle_d_acheminement": "ST JEAN LA VETRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79161072319, + 45.7746461063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be8912f4f148a0e4ccf0481801a5c9c15f3158c5", + "fields": { + "code_commune_insee": "32458", + "nom_de_la_commune": "URGOSSE", + "code_postal": "32110", + "coordonnees_gps": [ + 43.7383895034, + -0.021627806112 + ], + "libelle_d_acheminement": "URGOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.021627806112, + 43.7383895034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e288552e67e766bdc0d469ee3757896ed8affb2a", + "fields": { + "code_commune_insee": "42243", + "nom_de_la_commune": "ST JULIEN D ODDES", + "code_postal": "42260", + "coordonnees_gps": [ + 45.8516697408, + 3.99121351399 + ], + "libelle_d_acheminement": "ST JULIEN D ODDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99121351399, + 45.8516697408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1efb8b3d23c3699501f5012423f5da3efab26586", + "fields": { + "code_commune_insee": "33003", + "nom_de_la_commune": "AMBARES ET LAGRAVE", + "code_postal": "33440", + "coordonnees_gps": [ + 44.9444897713, + -0.500579133995 + ], + "libelle_d_acheminement": "AMBARES ET LAGRAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.500579133995, + 44.9444897713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4205203589dd6f9c062e9580433bcd2c422d299d", + "fields": { + "ligne_5": "ST THURIN", + "code_commune_insee": "42245", + "libelle_d_acheminement": "VETRE SUR ANZON", + "code_postal": "42111", + "nom_de_la_commune": "VETRE SUR ANZON", + "coordonnees_gps": [ + 45.8203021782, + 3.81786181803 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81786181803, + 45.8203021782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "762069fe2822b3124494ed25a1469578332f7b29", + "fields": { + "code_commune_insee": "33012", + "nom_de_la_commune": "ARSAC", + "code_postal": "33460", + "coordonnees_gps": [ + 44.9884555453, + -0.701315089192 + ], + "libelle_d_acheminement": "ARSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.701315089192, + 44.9884555453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d7ed1bbe1640f76c6eb678c8b3e1fc5e57979c0", + "fields": { + "ligne_5": "ST JULIEN LA VETRE", + "code_commune_insee": "42245", + "libelle_d_acheminement": "VETRE SUR ANZON", + "code_postal": "42440", + "nom_de_la_commune": "VETRE SUR ANZON", + "coordonnees_gps": [ + 45.8203021782, + 3.81786181803 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81786181803, + 45.8203021782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e74446fcf8ec77fd2d63086f573288f3b675d04", + "fields": { + "code_commune_insee": "33019", + "nom_de_la_commune": "AUDENGE", + "code_postal": "33980", + "coordonnees_gps": [ + 44.7138966628, + -0.944173294479 + ], + "libelle_d_acheminement": "AUDENGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.944173294479, + 44.7138966628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bad2cb5b832714a2264cf17400e8157083efb62", + "fields": { + "code_commune_insee": "42247", + "nom_de_la_commune": "ST JUST EN BAS", + "code_postal": "42990", + "coordonnees_gps": [ + 45.7314533102, + 3.88013674986 + ], + "libelle_d_acheminement": "ST JUST EN BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88013674986, + 45.7314533102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f18d613d7ba5e0b2df8bac9bc0a705d4f3b00071", + "fields": { + "code_commune_insee": "33029", + "nom_de_la_commune": "LE BARP", + "code_postal": "33114", + "coordonnees_gps": [ + 44.6268462922, + -0.746697894211 + ], + "libelle_d_acheminement": "LE BARP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.746697894211, + 44.6268462922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d909e0cc5b087ccba6f4a26833a0a4c444cacea", + "fields": { + "code_commune_insee": "42251", + "nom_de_la_commune": "ST LAURENT LA CONCHE", + "code_postal": "42210", + "coordonnees_gps": [ + 45.6890006035, + 4.23185003367 + ], + "libelle_d_acheminement": "ST LAURENT LA CONCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23185003367, + 45.6890006035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2884da18e7ca9c0f6e734515bfbabb3c024c38c5", + "fields": { + "code_commune_insee": "33030", + "nom_de_la_commune": "BARSAC", + "code_postal": "33720", + "coordonnees_gps": [ + 44.6017775611, + -0.323930210636 + ], + "libelle_d_acheminement": "BARSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.323930210636, + 44.6017775611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36bd65032c6b0a038f85d50fad74e97aac585795", + "fields": { + "code_commune_insee": "42255", + "nom_de_la_commune": "ST MARCEL D URFE", + "code_postal": "42430", + "coordonnees_gps": [ + 45.8708472787, + 3.87977382868 + ], + "libelle_d_acheminement": "ST MARCEL D URFE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87977382868, + 45.8708472787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "658e462d0877f6913d1cc5061de70b266c86dd80", + "fields": { + "code_commune_insee": "33050", + "nom_de_la_commune": "BIEUJAC", + "code_postal": "33210", + "coordonnees_gps": [ + 44.5383649764, + -0.154398483279 + ], + "libelle_d_acheminement": "BIEUJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.154398483279, + 44.5383649764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e7cdee4842f3ddd3f1830e12d342ee70a9773a7", + "fields": { + "code_commune_insee": "42256", + "nom_de_la_commune": "ST MARCELLIN EN FOREZ", + "code_postal": "42680", + "coordonnees_gps": [ + 45.4892854611, + 4.16817576447 + ], + "libelle_d_acheminement": "ST MARCELLIN EN FOREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16817576447, + 45.4892854611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b05528ef782825f723019e8205bd1d42c187e0e", + "fields": { + "code_commune_insee": "33051", + "nom_de_la_commune": "BIGANOS", + "code_postal": "33380", + "coordonnees_gps": [ + 44.6611063153, + -0.948829442283 + ], + "libelle_d_acheminement": "BIGANOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.948829442283, + 44.6611063153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70e777a2d9d84e04edbbf7e41935173f097903c0", + "fields": { + "code_commune_insee": "42262", + "nom_de_la_commune": "ST MAURICE EN GOURGOIS", + "code_postal": "42240", + "coordonnees_gps": [ + 45.4080254859, + 4.18440068436 + ], + "libelle_d_acheminement": "ST MAURICE EN GOURGOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18440068436, + 45.4080254859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2554327ae71406b454dfdc68ec58f5450079a8d", + "fields": { + "code_commune_insee": "33054", + "nom_de_la_commune": "BLAIGNAC", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5509350184, + -0.0541157193066 + ], + "libelle_d_acheminement": "BLAIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0541157193066, + 44.5509350184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11206f58df2ccd3dc730cbfa59159ceb2631e400", + "fields": { + "ligne_5": "DANCE", + "code_commune_insee": "42268", + "libelle_d_acheminement": "VEZELIN SUR LOIRE", + "code_postal": "42260", + "nom_de_la_commune": "VEZELIN SUR LOIRE", + "coordonnees_gps": [ + 45.8892083156, + 4.08289919803 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08289919803, + 45.8892083156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27ffab46882ef623464d908b573b9db48a60177a", + "fields": { + "ligne_5": "BLAIGNAN", + "code_commune_insee": "33055", + "libelle_d_acheminement": "BLAIGNAN PRIGNAC", + "code_postal": "33340", + "nom_de_la_commune": "BLAIGNAN PRIGNAC", + "coordonnees_gps": [ + 45.3230869763, + -0.865864603623 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.865864603623, + 45.3230869763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc9439e1e4d95919397208008e3107aca2c1a94a", + "fields": { + "code_commune_insee": "42271", + "nom_de_la_commune": "ST PAUL EN JAREZ", + "code_postal": "42740", + "coordonnees_gps": [ + 45.4705874641, + 4.57893504841 + ], + "libelle_d_acheminement": "ST PAUL EN JAREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57893504841, + 45.4705874641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50ab27cdffd28e7a85abcbcc949b95aa4998df51", + "fields": { + "code_commune_insee": "33056", + "nom_de_la_commune": "BLANQUEFORT", + "code_postal": "33290", + "coordonnees_gps": [ + 44.9231492741, + -0.612268950301 + ], + "libelle_d_acheminement": "BLANQUEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.612268950301, + 44.9231492741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cad52b3032057dbf3732f43188f967967fbe271e", + "fields": { + "code_commune_insee": "42272", + "nom_de_la_commune": "ST PIERRE DE BOEUF", + "code_postal": "42520", + "coordonnees_gps": [ + 45.3766717807, + 4.74426644516 + ], + "libelle_d_acheminement": "ST PIERRE DE BOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74426644516, + 45.3766717807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a25efc313b097113d3844ea1ba0849e8478b077", + "fields": { + "code_commune_insee": "33057", + "nom_de_la_commune": "BLASIMON", + "code_postal": "33540", + "coordonnees_gps": [ + 44.7502132956, + -0.089121338882 + ], + "libelle_d_acheminement": "BLASIMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.089121338882, + 44.7502132956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6472a85b494e6524dae366c02b2b49ebf8d13ebb", + "fields": { + "code_commune_insee": "42278", + "nom_de_la_commune": "ST PRIEST LA VETRE", + "code_postal": "42440", + "coordonnees_gps": [ + 45.8015242352, + 3.80979787497 + ], + "libelle_d_acheminement": "ST PRIEST LA VETRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80979787497, + 45.8015242352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e18d83ca6f79652438ed31fde244d2998b713539", + "fields": { + "code_commune_insee": "33063", + "nom_de_la_commune": "BORDEAUX", + "code_postal": "33100", + "coordonnees_gps": [ + 44.8572445351, + -0.57369678116 + ], + "libelle_d_acheminement": "BORDEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.57369678116, + 44.8572445351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "288ccf9fa6a4482de8deedf9a9797fc200cd1474", + "fields": { + "code_commune_insee": "42280", + "nom_de_la_commune": "ST REGIS DU COIN", + "code_postal": "42660", + "coordonnees_gps": [ + 45.288644573, + 4.45522567746 + ], + "libelle_d_acheminement": "ST REGIS DU COIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45522567746, + 45.288644573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "645f3aa8db45f902e547540acd6d641cce189fbe", + "fields": { + "code_commune_insee": "33067", + "nom_de_la_commune": "BOURG", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0398664572, + -0.547187308975 + ], + "libelle_d_acheminement": "BOURG SUR GIRONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.547187308975, + 45.0398664572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19b62a38bad165c62b4fbd3e4cb6143738843359", + "fields": { + "code_commune_insee": "42295", + "nom_de_la_commune": "LES SALLES", + "code_postal": "42440", + "coordonnees_gps": [ + 45.8549120107, + 3.78440621184 + ], + "libelle_d_acheminement": "LES SALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78440621184, + 45.8549120107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff6425cdda539e2e3a48761c6a54a6077d775e82", + "fields": { + "code_commune_insee": "33068", + "nom_de_la_commune": "BOURIDEYS", + "code_postal": "33113", + "coordonnees_gps": [ + 44.3577116761, + -0.47241853929 + ], + "libelle_d_acheminement": "BOURIDEYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47241853929, + 44.3577116761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d8ac631b19b36641b548307aa9826f545d8645e", + "fields": { + "code_commune_insee": "42302", + "nom_de_la_commune": "SORBIERS", + "code_postal": "42290", + "coordonnees_gps": [ + 45.4997083615, + 4.43728891788 + ], + "libelle_d_acheminement": "SORBIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43728891788, + 45.4997083615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17b6800d1840adc23d558f00669f73344a37bfff", + "fields": { + "code_commune_insee": "33069", + "nom_de_la_commune": "LE BOUSCAT", + "code_postal": "33110", + "coordonnees_gps": [ + 44.8661298323, + -0.602121558626 + ], + "libelle_d_acheminement": "LE BOUSCAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.602121558626, + 44.8661298323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57b4fc856028d0d0c2800cd6cfc8660d986d5cb9", + "fields": { + "code_commune_insee": "42306", + "nom_de_la_commune": "TARENTAISE", + "code_postal": "42660", + "coordonnees_gps": [ + 45.3612036739, + 4.49235219509 + ], + "libelle_d_acheminement": "TARENTAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49235219509, + 45.3612036739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b137d789255592f813e7a93e8d723eaa8c3d36a", + "fields": { + "code_commune_insee": "33071", + "nom_de_la_commune": "BRANNE", + "code_postal": "33420", + "coordonnees_gps": [ + 44.8281852222, + -0.180276839156 + ], + "libelle_d_acheminement": "BRANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.180276839156, + 44.8281852222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fd040d37ccf24208b43281ad6cfffde3c79b5fd", + "fields": { + "code_commune_insee": "42307", + "nom_de_la_commune": "TARTARAS", + "code_postal": "42800", + "coordonnees_gps": [ + 45.5540344541, + 4.66360649191 + ], + "libelle_d_acheminement": "TARTARAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66360649191, + 45.5540344541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ef7851a766ffef7ed7835709262cb2d993f4d7b", + "fields": { + "code_commune_insee": "33073", + "nom_de_la_commune": "BRAUD ET ST LOUIS", + "code_postal": "33820", + "coordonnees_gps": [ + 45.2544518508, + -0.646204430347 + ], + "libelle_d_acheminement": "BRAUD ET ST LOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.646204430347, + 45.2544518508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c705360d232a9bd1024bf80357e232411c1e164", + "fields": { + "code_commune_insee": "42312", + "nom_de_la_commune": "LA TOURETTE", + "code_postal": "42380", + "coordonnees_gps": [ + 45.423867276, + 4.08330513601 + ], + "libelle_d_acheminement": "LA TOURETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08330513601, + 45.423867276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67bd8beacbc296128ad442e6c0a25b577f0003ca", + "fields": { + "code_commune_insee": "33076", + "nom_de_la_commune": "BUDOS", + "code_postal": "33720", + "coordonnees_gps": [ + 44.5346733151, + -0.399965558931 + ], + "libelle_d_acheminement": "BUDOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.399965558931, + 44.5346733151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5909abd5cea332817e99225dc94a6a849f9dfee", + "fields": { + "code_commune_insee": "42325", + "nom_de_la_commune": "VENDRANGES", + "code_postal": "42590", + "coordonnees_gps": [ + 45.9331197699, + 4.13535953151 + ], + "libelle_d_acheminement": "VENDRANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13535953151, + 45.9331197699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fb7cc28322d3f18ee8568512ad1cfb976917657", + "fields": { + "code_commune_insee": "33089", + "nom_de_la_commune": "CAMPUGNAN", + "code_postal": "33390", + "coordonnees_gps": [ + 45.1842358526, + -0.560005135989 + ], + "libelle_d_acheminement": "CAMPUGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.560005135989, + 45.1842358526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19840c219de44e13300f666373dcdf1c61f7df9c", + "fields": { + "code_commune_insee": "42328", + "nom_de_la_commune": "VERRIERES EN FOREZ", + "code_postal": "42600", + "coordonnees_gps": [ + 45.5680113401, + 3.98919241451 + ], + "libelle_d_acheminement": "VERRIERES EN FOREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98919241451, + 45.5680113401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "979633353158f7b27e17fae2d9d463262403375c", + "fields": { + "code_commune_insee": "33096", + "nom_de_la_commune": "CARBON BLANC", + "code_postal": "33560", + "coordonnees_gps": [ + 44.9025299083, + -0.501176652356 + ], + "libelle_d_acheminement": "CARBON BLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.501176652356, + 44.9025299083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc944dd7dac6147f26dadfa2e659b774adda0aad", + "fields": { + "code_commune_insee": "42329", + "nom_de_la_commune": "LA VERSANNE", + "code_postal": "42220", + "coordonnees_gps": [ + 45.3205754592, + 4.50642756991 + ], + "libelle_d_acheminement": "LA VERSANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50642756991, + 45.3205754592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0067ca8aed14b100a8a271c9ce0e90031c7fff0f", + "fields": { + "code_commune_insee": "33103", + "nom_de_la_commune": "CASTELMORON D ALBRET", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6794782931, + -0.0114847499916 + ], + "libelle_d_acheminement": "CASTELMORON D ALBRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0114847499916, + 44.6794782931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "467eff191d6fe72e9c03ca46d9c238afff87a73b", + "fields": { + "code_commune_insee": "42331", + "nom_de_la_commune": "VILLEMONTAIS", + "code_postal": "42155", + "coordonnees_gps": [ + 45.9825018383, + 3.93640831898 + ], + "libelle_d_acheminement": "VILLEMONTAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93640831898, + 45.9825018383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e236bded3438d95d9323490840189d2f8e6f3cd", + "fields": { + "code_commune_insee": "33104", + "nom_de_la_commune": "CASTELNAU DE MEDOC", + "code_postal": "33480", + "coordonnees_gps": [ + 45.0074633162, + -0.812848440368 + ], + "libelle_d_acheminement": "CASTELNAU DE MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.812848440368, + 45.0074633162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36eb5da0038470322f026a51f3bd4c3934661304", + "fields": { + "code_commune_insee": "42332", + "nom_de_la_commune": "VILLEREST", + "code_postal": "42300", + "coordonnees_gps": [ + 45.9976820966, + 4.02783295013 + ], + "libelle_d_acheminement": "VILLEREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02783295013, + 45.9976820966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a7390eda4f083abeeb8a82ddff70dd6348eae07", + "fields": { + "ligne_5": "CASTETS EN DORTHE", + "code_commune_insee": "33106", + "libelle_d_acheminement": "CASTETS ET CASTILLON", + "code_postal": "33210", + "nom_de_la_commune": "CASTETS ET CASTILLON", + "coordonnees_gps": [ + 44.5558858175, + -0.141301295122 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.141301295122, + 44.5558858175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bacba449e3c699c134d962878b481ee040a2967b", + "fields": { + "code_commune_insee": "43014", + "nom_de_la_commune": "AUTRAC", + "code_postal": "43450", + "coordonnees_gps": [ + 45.3367716906, + 3.12941961398 + ], + "libelle_d_acheminement": "AUTRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12941961398, + 45.3367716906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6a10e183f22ad4e63e71d451c8e3dee33a7166f", + "fields": { + "ligne_5": "CASTILLON DE CASTETS", + "code_commune_insee": "33106", + "libelle_d_acheminement": "CASTETS ET CASTILLON", + "code_postal": "33210", + "nom_de_la_commune": "CASTETS ET CASTILLON", + "coordonnees_gps": [ + 44.5558858175, + -0.141301295122 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.141301295122, + 44.5558858175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cc382bca69857f3b45a84c3e451151c0f73290c", + "fields": { + "code_commune_insee": "43015", + "nom_de_la_commune": "AUVERS", + "code_postal": "43300", + "coordonnees_gps": [ + 44.9966929064, + 3.39158114274 + ], + "libelle_d_acheminement": "AUVERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39158114274, + 44.9966929064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da29347364eb098cc59df745bd74d0de46f54b94", + "fields": { + "code_commune_insee": "33114", + "nom_de_la_commune": "CAVIGNAC", + "code_postal": "33620", + "coordonnees_gps": [ + 45.096401427, + -0.381910358061 + ], + "libelle_d_acheminement": "CAVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.381910358061, + 45.096401427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cd9d2ee8be75cc2fae1ab32019524e6d8c6500b", + "fields": { + "code_commune_insee": "43022", + "nom_de_la_commune": "BEAUMONT", + "code_postal": "43100", + "coordonnees_gps": [ + 45.3118081089, + 3.33070531118 + ], + "libelle_d_acheminement": "BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33070531118, + 45.3118081089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aad3fd3e20e0f0adf63c8bef0fcba1085346e4a2", + "fields": { + "code_commune_insee": "33119", + "nom_de_la_commune": "CENON", + "code_postal": "33150", + "coordonnees_gps": [ + 44.8548325665, + -0.521018807062 + ], + "libelle_d_acheminement": "CENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.521018807062, + 44.8548325665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ffa93cef03c19f8d7dcca03a152679ae92a51ac", + "fields": { + "code_commune_insee": "43032", + "nom_de_la_commune": "BLAVOZY", + "code_postal": "43700", + "coordonnees_gps": [ + 45.0625246612, + 3.97204508531 + ], + "libelle_d_acheminement": "BLAVOZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97204508531, + 45.0625246612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cca0b5de74bc97c28b516a6759486a1bf0e603b0", + "fields": { + "code_commune_insee": "33124", + "nom_de_la_commune": "CHAMADELLE", + "code_postal": "33230", + "coordonnees_gps": [ + 45.0983652507, + -0.0904776374453 + ], + "libelle_d_acheminement": "CHAMADELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0904776374453, + 45.0983652507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "981ecf722fe08b6686b24031560f9d286ab14f55", + "fields": { + "code_commune_insee": "43033", + "nom_de_la_commune": "BLESLE", + "code_postal": "43450", + "coordonnees_gps": [ + 45.3179155382, + 3.17686146037 + ], + "libelle_d_acheminement": "BLESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17686146037, + 45.3179155382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f40e49d5520e7befee5084246bf2c2e63942076d", + "fields": { + "code_commune_insee": "33128", + "nom_de_la_commune": "CIVRAC EN MEDOC", + "code_postal": "33340", + "coordonnees_gps": [ + 45.3437734218, + -0.916116550254 + ], + "libelle_d_acheminement": "CIVRAC EN MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.916116550254, + 45.3437734218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31960f16390ab3a4dbbd51c68688ccb05a395b48", + "fields": { + "code_commune_insee": "43038", + "nom_de_la_commune": "BOURNONCLE ST PIERRE", + "code_postal": "43360", + "coordonnees_gps": [ + 45.3431536681, + 3.32396530998 + ], + "libelle_d_acheminement": "BOURNONCLE ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32396530998, + 45.3431536681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6660652c0ccff0575bb8bcd98327931c53ca424", + "fields": { + "code_commune_insee": "33132", + "nom_de_la_commune": "COMPS", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0671200196, + -0.593624837355 + ], + "libelle_d_acheminement": "COMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.593624837355, + 45.0671200196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c360223715e2cc550f5e625e652d76de790e577", + "fields": { + "code_commune_insee": "43048", + "nom_de_la_commune": "LA CHAISE DIEU", + "code_postal": "43160", + "coordonnees_gps": [ + 45.3187166909, + 3.69286458356 + ], + "libelle_d_acheminement": "LA CHAISE DIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69286458356, + 45.3187166909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aad678ee638cd7542de5930201f3144ad6467543", + "fields": { + "code_commune_insee": "33133", + "nom_de_la_commune": "COUBEYRAC", + "code_postal": "33890", + "coordonnees_gps": [ + 44.7835191619, + 0.0530247676718 + ], + "libelle_d_acheminement": "COUBEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0530247676718, + 44.7835191619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23c6274cb10dd43ffb964b4a939a9742d8922323", + "fields": { + "code_commune_insee": "43053", + "nom_de_la_commune": "CHAMPCLAUSE", + "code_postal": "43260", + "coordonnees_gps": [ + 45.0245461662, + 4.16078636885 + ], + "libelle_d_acheminement": "CHAMPCLAUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16078636885, + 45.0245461662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfb6ccf8e7890904f2e1424f1a3dee9a3d37f5a9", + "fields": { + "code_commune_insee": "33136", + "nom_de_la_commune": "COURS DE MONSEGUR", + "code_postal": "33580", + "coordonnees_gps": [ + 44.6517777176, + 0.127326594393 + ], + "libelle_d_acheminement": "COURS DE MONSEGUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.127326594393, + 44.6517777176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12cfa5e3d47845f0d0984cc50ffd6e8d8207000a", + "fields": { + "code_commune_insee": "43055", + "nom_de_la_commune": "CHANIAT", + "code_postal": "43100", + "coordonnees_gps": [ + 45.3163724348, + 3.48010403585 + ], + "libelle_d_acheminement": "CHANIAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48010403585, + 45.3163724348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19d9284db86da09bc601491399644a178802c9cd", + "fields": { + "code_commune_insee": "33139", + "nom_de_la_commune": "COUTURES", + "code_postal": "33580", + "coordonnees_gps": [ + 44.652450698, + 0.0315149165133 + ], + "libelle_d_acheminement": "COUTURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0315149165133, + 44.652450698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13f77bcd0aa57c65dc548227975040e866e06e68", + "fields": { + "code_commune_insee": "43056", + "nom_de_la_commune": "CHANTEUGES", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0682663311, + 3.53025936017 + ], + "libelle_d_acheminement": "CHANTEUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53025936017, + 45.0682663311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53b2661c131d0a0fe3957a059df0c7879ab78ca9", + "fields": { + "code_commune_insee": "33144", + "nom_de_la_commune": "CUDOS", + "code_postal": "33430", + "coordonnees_gps": [ + 44.3779081527, + -0.188470066299 + ], + "libelle_d_acheminement": "CUDOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.188470066299, + 44.3779081527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7db2bf66f053e0e996eb058125bb616ed8f9cf9", + "fields": { + "code_commune_insee": "43065", + "nom_de_la_commune": "CHASTEL", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0627745452, + 3.32138281225 + ], + "libelle_d_acheminement": "CHASTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32138281225, + 45.0627745452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc3436821c398bd09b4d63256fdb316a8aa976e2", + "fields": { + "code_commune_insee": "33152", + "nom_de_la_commune": "DONZAC", + "code_postal": "33410", + "coordonnees_gps": [ + 44.6490849258, + -0.256631952912 + ], + "libelle_d_acheminement": "DONZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.256631952912, + 44.6490849258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a031c9b4928ddfcc4aab4793944974c463605f70", + "fields": { + "code_commune_insee": "43069", + "nom_de_la_commune": "CHENEREILLES", + "code_postal": "43190", + "coordonnees_gps": [ + 45.1369212766, + 4.23744715977 + ], + "libelle_d_acheminement": "CHENEREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23744715977, + 45.1369212766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f3e53edb4384ba97d9604a00de790b1e7a0353a", + "fields": { + "code_commune_insee": "33153", + "nom_de_la_commune": "DOULEZON", + "code_postal": "33350", + "coordonnees_gps": [ + 44.7924343715, + -0.00123843132534 + ], + "libelle_d_acheminement": "DOULEZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00123843132534, + 44.7924343715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "036f1ad4e75c0cc0db2a2a45bddf850da1f447da", + "fields": { + "code_commune_insee": "43076", + "nom_de_la_commune": "CONNANGLES", + "code_postal": "43160", + "coordonnees_gps": [ + 45.2988796944, + 3.64574676641 + ], + "libelle_d_acheminement": "CONNANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64574676641, + 45.2988796944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d54ab765ac9fffd67b1ec41fce6b1a00511cf9e", + "fields": { + "code_commune_insee": "33174", + "nom_de_la_commune": "FRONSAC", + "code_postal": "33126", + "coordonnees_gps": [ + 44.9220632004, + -0.279859692474 + ], + "libelle_d_acheminement": "FRONSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.279859692474, + 44.9220632004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "952840c5abaef619a7ed08fd7f289c927248dc06", + "fields": { + "code_commune_insee": "43086", + "nom_de_la_commune": "DOMEYRAT", + "code_postal": "43230", + "coordonnees_gps": [ + 45.2455973792, + 3.5055844005 + ], + "libelle_d_acheminement": "DOMEYRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5055844005, + 45.2455973792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02873feec89528251fd4a39abc0c981ce4cb5100", + "fields": { + "code_commune_insee": "33179", + "nom_de_la_commune": "GALGON", + "code_postal": "33133", + "coordonnees_gps": [ + 44.9904736061, + -0.276833438691 + ], + "libelle_d_acheminement": "GALGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.276833438691, + 44.9904736061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5031157f5607979cfcb97325914ede6aa585e1d", + "fields": { + "code_commune_insee": "43087", + "nom_de_la_commune": "DUNIERES", + "code_postal": "43220", + "coordonnees_gps": [ + 45.2146495519, + 4.34572012446 + ], + "libelle_d_acheminement": "DUNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34572012446, + 45.2146495519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "644441365f660f7daacd102b2b9285d2b84c2c83", + "fields": { + "code_commune_insee": "33182", + "nom_de_la_commune": "GAURIAC", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0640707236, + -0.629412029875 + ], + "libelle_d_acheminement": "GAURIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.629412029875, + 45.0640707236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f46e95c0678f407cd95ff282af61295fc043ade", + "fields": { + "code_commune_insee": "43096", + "nom_de_la_commune": "FONTANNES", + "code_postal": "43100", + "coordonnees_gps": [ + 45.2888928849, + 3.43014729837 + ], + "libelle_d_acheminement": "FONTANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43014729837, + 45.2888928849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12d0540bcc71d2355214f47a640aac8a41a503d4", + "fields": { + "code_commune_insee": "33183", + "nom_de_la_commune": "GAURIAGUET", + "code_postal": "33240", + "coordonnees_gps": [ + 45.0457476873, + -0.395962651945 + ], + "libelle_d_acheminement": "GAURIAGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.395962651945, + 45.0457476873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a8d318bae574344991a5b123b4f882a8194b289", + "fields": { + "code_commune_insee": "43112", + "nom_de_la_commune": "LANGEAC", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0822541836, + 3.47806203807 + ], + "libelle_d_acheminement": "LANGEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47806203807, + 45.0822541836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91b109a398276dc820bb000d635d945271905164", + "fields": { + "code_commune_insee": "33185", + "nom_de_la_commune": "GENISSAC", + "code_postal": "33420", + "coordonnees_gps": [ + 44.8604999548, + -0.249176861403 + ], + "libelle_d_acheminement": "GENISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.249176861403, + 44.8604999548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b73665f4d263ba5be858807cb5c3c170f347a8f", + "fields": { + "code_commune_insee": "43117", + "nom_de_la_commune": "LAVAUDIEU", + "code_postal": "43100", + "coordonnees_gps": [ + 45.2627483752, + 3.45499387355 + ], + "libelle_d_acheminement": "LAVAUDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45499387355, + 45.2627483752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d107600b8548e1e6f70d5ba69bdc226e28261f17", + "fields": { + "code_commune_insee": "33188", + "nom_de_la_commune": "GISCOS", + "code_postal": "33840", + "coordonnees_gps": [ + 44.2661947283, + -0.163156901321 + ], + "libelle_d_acheminement": "GISCOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.163156901321, + 44.2661947283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ef407f39a6f3962667c8330d069ca19eaa76111", + "fields": { + "code_commune_insee": "43118", + "nom_de_la_commune": "LAVOUTE CHILHAC", + "code_postal": "43380", + "coordonnees_gps": [ + 45.1559334997, + 3.41127089302 + ], + "libelle_d_acheminement": "LAVOUTE CHILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41127089302, + 45.1559334997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "443e70d3073a47b844c14aa55760b10f2c310985", + "fields": { + "code_commune_insee": "33191", + "nom_de_la_commune": "GOURS", + "code_postal": "33660", + "coordonnees_gps": [ + 44.9980305708, + 0.0262519757386 + ], + "libelle_d_acheminement": "GOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0262519757386, + 44.9980305708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b4c4074e6b7ab29ee5b47a261a142482d35df6b", + "fields": { + "code_commune_insee": "43123", + "nom_de_la_commune": "LORLANGES", + "code_postal": "43360", + "coordonnees_gps": [ + 45.3239819521, + 3.26284919895 + ], + "libelle_d_acheminement": "LORLANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26284919895, + 45.3239819521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b2a735ffc845726e849cea49a536822f8117341", + "fields": { + "code_commune_insee": "33194", + "nom_de_la_commune": "GREZILLAC", + "code_postal": "33420", + "coordonnees_gps": [ + 44.8168819983, + -0.218779219407 + ], + "libelle_d_acheminement": "GREZILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.218779219407, + 44.8168819983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e44e8c46b7e947606bd17231e02d23cdda891a4", + "fields": { + "code_commune_insee": "43127", + "nom_de_la_commune": "MALVALETTE", + "code_postal": "43210", + "coordonnees_gps": [ + 45.3550434728, + 4.15297814562 + ], + "libelle_d_acheminement": "MALVALETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15297814562, + 45.3550434728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40486bcc1490293e39d140b1862087d93f6d517f", + "fields": { + "code_commune_insee": "33198", + "nom_de_la_commune": "GUITRES", + "code_postal": "33230", + "coordonnees_gps": [ + 45.0431099421, + -0.186650688542 + ], + "libelle_d_acheminement": "GUITRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.186650688542, + 45.0431099421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e1ac2e4219f5b45138c6ca6d95e4759a1107227", + "fields": { + "code_commune_insee": "43132", + "nom_de_la_commune": "MAZEYRAT D ALLIER", + "code_postal": "43300", + "coordonnees_gps": [ + 45.128318526, + 3.52792705537 + ], + "libelle_d_acheminement": "MAZEYRAT D ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52792705537, + 45.128318526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99835b641f0bb6fee78c7a5e1be781fd9226ed36", + "fields": { + "code_commune_insee": "33203", + "nom_de_la_commune": "HOURTIN", + "code_postal": "33990", + "coordonnees_gps": [ + 45.1807913533, + -1.06580080764 + ], + "libelle_d_acheminement": "HOURTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06580080764, + 45.1807913533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa77065210a19c1ed2c494d12fdbf31a380e8ac6", + "fields": { + "ligne_5": "ST EBLE", + "code_commune_insee": "43132", + "libelle_d_acheminement": "MAZEYRAT D ALLIER", + "code_postal": "43300", + "nom_de_la_commune": "MAZEYRAT D ALLIER", + "coordonnees_gps": [ + 45.128318526, + 3.52792705537 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52792705537, + 45.128318526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31e8e9adff64210a1f37402a7e6f62ca8b4df72a", + "fields": { + "code_commune_insee": "33223", + "nom_de_la_commune": "LANDERROUAT", + "code_postal": "33790", + "coordonnees_gps": [ + 44.7425058294, + 0.160918010334 + ], + "libelle_d_acheminement": "LANDERROUAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.160918010334, + 44.7425058294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f76a52821406e8b202ff8d253e9f7eeadf7285c", + "fields": { + "code_commune_insee": "43142", + "nom_de_la_commune": "MONTREGARD", + "code_postal": "43290", + "coordonnees_gps": [ + 45.1595314738, + 4.35494636429 + ], + "libelle_d_acheminement": "MONTREGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35494636429, + 45.1595314738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd982d848df75684c52db56092baf3e26ad5044d", + "fields": { + "code_commune_insee": "33229", + "nom_de_la_commune": "LANTON", + "code_postal": "33138", + "coordonnees_gps": [ + 44.7744744246, + -0.976985580148 + ], + "libelle_d_acheminement": "LANTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.976985580148, + 44.7744744246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0609d659cc6b314fa9c39ee22c26322beaad7b3b", + "fields": { + "code_commune_insee": "43143", + "nom_de_la_commune": "MONTUSCLAT", + "code_postal": "43260", + "coordonnees_gps": [ + 45.0097274069, + 4.11399485944 + ], + "libelle_d_acheminement": "MONTUSCLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11399485944, + 45.0097274069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe2a1837b2b16265caaf9f8ad938ef0db6cc3597", + "fields": { + "code_commune_insee": "33231", + "nom_de_la_commune": "LAROQUE", + "code_postal": "33410", + "coordonnees_gps": [ + 44.6603681588, + -0.305926644431 + ], + "libelle_d_acheminement": "LAROQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.305926644431, + 44.6603681588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d7441760751b84dadadceb8f8231cc2ceaaca9e", + "fields": { + "code_commune_insee": "43145", + "nom_de_la_commune": "OUIDES", + "code_postal": "43510", + "coordonnees_gps": [ + 44.9060432903, + 3.7403767146 + ], + "libelle_d_acheminement": "OUIDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7403767146, + 44.9060432903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a1dce27c77d1c34c770a46d90798781cebe4e09", + "fields": { + "code_commune_insee": "33233", + "nom_de_la_commune": "LARUSCADE", + "code_postal": "33620", + "coordonnees_gps": [ + 45.1237982623, + -0.344529143591 + ], + "libelle_d_acheminement": "LARUSCADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.344529143591, + 45.1237982623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32e8ef29151dd8cd2e2307841685632c6c6cc804", + "fields": { + "code_commune_insee": "43159", + "nom_de_la_commune": "RAUCOULES", + "code_postal": "43290", + "coordonnees_gps": [ + 45.1915194359, + 4.28286048078 + ], + "libelle_d_acheminement": "RAUCOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28286048078, + 45.1915194359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49669476d088f80913688339a37d9c4ba4512e32", + "fields": { + "code_commune_insee": "33235", + "nom_de_la_commune": "LAVAZAN", + "code_postal": "33690", + "coordonnees_gps": [ + 44.3913358368, + -0.115846952236 + ], + "libelle_d_acheminement": "LAVAZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.115846952236, + 44.3913358368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2122e77d39f52f8cd2f7f9fd33dcb13a8477c3b", + "fields": { + "code_commune_insee": "43165", + "nom_de_la_commune": "ROSIERES", + "code_postal": "43800", + "coordonnees_gps": [ + 45.1310458657, + 4.00299232791 + ], + "libelle_d_acheminement": "ROSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00299232791, + 45.1310458657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5099ec6c7fc2829cc7e51977d5fdc69b0d95a980", + "fields": { + "code_commune_insee": "33241", + "nom_de_la_commune": "LESTIAC SUR GARONNE", + "code_postal": "33550", + "coordonnees_gps": [ + 44.6919250823, + -0.37953441784 + ], + "libelle_d_acheminement": "LESTIAC SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37953441784, + 44.6919250823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b94fd45e446d23cc0fb46cf6599c4e766e3fb4c", + "fields": { + "code_commune_insee": "43167", + "nom_de_la_commune": "ST ARCONS D ALLIER", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0843286639, + 3.56334774649 + ], + "libelle_d_acheminement": "ST ARCONS D ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56334774649, + 45.0843286639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79c622c100c337e884a73eb44156aaedf4773b70", + "fields": { + "code_commune_insee": "33243", + "nom_de_la_commune": "LIBOURNE", + "code_postal": "33500", + "coordonnees_gps": [ + 44.9130767869, + -0.234709332068 + ], + "libelle_d_acheminement": "LIBOURNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.234709332068, + 44.9130767869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1843ed1e5993f62907f43a9ca2e4b06901f17d3", + "fields": { + "code_commune_insee": "43180", + "nom_de_la_commune": "ST ETIENNE DU VIGAN", + "code_postal": "43420", + "coordonnees_gps": [ + 44.7892500054, + 3.83546695032 + ], + "libelle_d_acheminement": "ST ETIENNE DU VIGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83546695032, + 44.7892500054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36b579fc78a26c1e3ded3eaada86cab06b69b3d5", + "fields": { + "code_commune_insee": "33244", + "nom_de_la_commune": "LIGNAN DE BAZAS", + "code_postal": "33430", + "coordonnees_gps": [ + 44.432658053, + -0.276912828373 + ], + "libelle_d_acheminement": "LIGNAN DE BAZAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.276912828373, + 44.432658053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69bf0acf70e8043f1d5df27631eacba346bd6714", + "fields": { + "code_commune_insee": "43186", + "nom_de_la_commune": "ST FRONT", + "code_postal": "43550", + "coordonnees_gps": [ + 44.9731979795, + 4.13915382699 + ], + "libelle_d_acheminement": "ST FRONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13915382699, + 44.9731979795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5462253aa05537c6cb74c05c88d509b7a93b7dc2", + "fields": { + "code_commune_insee": "33273", + "nom_de_la_commune": "MARTIGNAS SUR JALLE", + "code_postal": "33127", + "coordonnees_gps": [ + 44.8450267218, + -0.795499117928 + ], + "libelle_d_acheminement": "MARTIGNAS SUR JALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.795499117928, + 44.8450267218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdce7fd070e312b70563cd1543c4537e94dd856b", + "fields": { + "code_commune_insee": "43192", + "nom_de_la_commune": "ST HAON", + "code_postal": "43340", + "coordonnees_gps": [ + 44.8551736176, + 3.76182411764 + ], + "libelle_d_acheminement": "ST HAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76182411764, + 44.8551736176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31122958d69633c27fa34ca0d3b5857ffe7a3641", + "fields": { + "code_commune_insee": "33274", + "nom_de_la_commune": "MARTILLAC", + "code_postal": "33650", + "coordonnees_gps": [ + 44.7153672874, + -0.556994506438 + ], + "libelle_d_acheminement": "MARTILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.556994506438, + 44.7153672874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a1709823fe35f87dcc36ceb798ef459cfd08640", + "fields": { + "code_commune_insee": "43193", + "nom_de_la_commune": "ST HILAIRE", + "code_postal": "43390", + "coordonnees_gps": [ + 45.3812027822, + 3.43912460224 + ], + "libelle_d_acheminement": "ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43912460224, + 45.3812027822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e97cd33538159678e91ced6a2a64de5fc709c84", + "fields": { + "code_commune_insee": "33278", + "nom_de_la_commune": "MAURIAC", + "code_postal": "33540", + "coordonnees_gps": [ + 44.7460542854, + -0.024421737317 + ], + "libelle_d_acheminement": "MAURIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.024421737317, + 44.7460542854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6ac2de4b87996c896af80e9cbd9a05a00c81b7d", + "fields": { + "code_commune_insee": "43194", + "nom_de_la_commune": "ST HOSTIEN", + "code_postal": "43260", + "coordonnees_gps": [ + 45.0776971566, + 4.04872632629 + ], + "libelle_d_acheminement": "ST HOSTIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04872632629, + 45.0776971566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79c8af18ad00d45a24ee6bb0e64edfd48ffd1516", + "fields": { + "code_commune_insee": "33280", + "nom_de_la_commune": "MAZION", + "code_postal": "33390", + "coordonnees_gps": [ + 45.1693324994, + -0.605631141444 + ], + "libelle_d_acheminement": "MAZION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.605631141444, + 45.1693324994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8423b1fa13cd3f1d01a2b48418c65824e7577c06", + "fields": { + "code_commune_insee": "43195", + "nom_de_la_commune": "ST ILPIZE", + "code_postal": "43380", + "coordonnees_gps": [ + 45.2003952069, + 3.40653237209 + ], + "libelle_d_acheminement": "ST ILPIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40653237209, + 45.2003952069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2a546e37285297115b03213ffeca8a5ae25aea9", + "fields": { + "code_commune_insee": "33291", + "nom_de_la_commune": "MONTAGOUDIN", + "code_postal": "33190", + "coordonnees_gps": [ + 44.5808235972, + 0.0052094648538 + ], + "libelle_d_acheminement": "MONTAGOUDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0052094648538, + 44.5808235972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "384523f5248fe28c0e509adb4fa173adfcdeb8db", + "fields": { + "code_commune_insee": "43196", + "nom_de_la_commune": "ST JEAN D AUBRIGOUX", + "code_postal": "43500", + "coordonnees_gps": [ + 45.3634716974, + 3.81088454906 + ], + "libelle_d_acheminement": "ST JEAN D AUBRIGOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81088454906, + 45.3634716974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "692ed0f81a384a9fc67dede1e9c8ffaaf118181c", + "fields": { + "code_commune_insee": "33305", + "nom_de_la_commune": "LE NIZAN", + "code_postal": "33430", + "coordonnees_gps": [ + 44.4702093406, + -0.280941561777 + ], + "libelle_d_acheminement": "LE NIZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.280941561777, + 44.4702093406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0bf452fa4f9c914b0c96889e85c36ab29a17f4f", + "fields": { + "code_commune_insee": "43219", + "nom_de_la_commune": "ST PREJET ARMANDON", + "code_postal": "43230", + "coordonnees_gps": [ + 45.2494259464, + 3.55233411018 + ], + "libelle_d_acheminement": "ST PREJET ARMANDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55233411018, + 45.2494259464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ba4b35b2ee3197e3aea934da7b31ee2fa5f86dd", + "fields": { + "code_commune_insee": "33321", + "nom_de_la_commune": "PEUJARD", + "code_postal": "33240", + "coordonnees_gps": [ + 45.0484108625, + -0.431387189025 + ], + "libelle_d_acheminement": "PEUJARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.431387189025, + 45.0484108625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e07e7948a85b7b3281d2ebef3c4f20b870215fef", + "fields": { + "code_commune_insee": "43221", + "nom_de_la_commune": "ST PRIVAT D ALLIER", + "code_postal": "43580", + "coordonnees_gps": [ + 45.0017025965, + 3.66961658789 + ], + "libelle_d_acheminement": "ST PRIVAT D ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66961658789, + 45.0017025965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42a43c2eef4152c4e89edcb0f4eddd75b9999181", + "fields": { + "code_commune_insee": "33324", + "nom_de_la_commune": "PINEUILH", + "code_postal": "33220", + "coordonnees_gps": [ + 44.8236972399, + 0.233443926253 + ], + "libelle_d_acheminement": "PINEUILH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.233443926253, + 44.8236972399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "369c97ca8048db25f1a6cac3f8e0ee9fe4f92fe2", + "fields": { + "code_commune_insee": "43230", + "nom_de_la_commune": "ST VINCENT", + "code_postal": "43800", + "coordonnees_gps": [ + 45.1521679091, + 3.89844373867 + ], + "libelle_d_acheminement": "ST VINCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89844373867, + 45.1521679091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f247440c953f0b452fe6af249a6a56bc12594e8", + "fields": { + "code_commune_insee": "33326", + "nom_de_la_commune": "PLEINE SELVE", + "code_postal": "33820", + "coordonnees_gps": [ + 45.3271088387, + -0.582258150086 + ], + "libelle_d_acheminement": "PLEINE SELVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.582258150086, + 45.3271088387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07eb681636eed491a7a93658624fd2115e51fbcf", + "fields": { + "code_commune_insee": "43233", + "nom_de_la_commune": "SANSSAC L EGLISE", + "code_postal": "43320", + "coordonnees_gps": [ + 45.0461886154, + 3.7913435493 + ], + "libelle_d_acheminement": "SANSSAC L EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7913435493, + 45.0461886154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9324735e2b99013c94acd02c26b3c5d58529d39", + "fields": { + "code_commune_insee": "33334", + "nom_de_la_commune": "PORTETS", + "code_postal": "33640", + "coordonnees_gps": [ + 44.6812515729, + -0.426367189428 + ], + "libelle_d_acheminement": "PORTETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.426367189428, + 44.6812515729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16f04da2c5ce172e778284f94f43fd11a735f2a4", + "fields": { + "code_commune_insee": "43244", + "nom_de_la_commune": "TENCE", + "code_postal": "43190", + "coordonnees_gps": [ + 45.1133166621, + 4.3002040908 + ], + "libelle_d_acheminement": "TENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3002040908, + 45.1133166621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d73c39d1fb37b0010d76c043a48693416836713", + "fields": { + "code_commune_insee": "33335", + "nom_de_la_commune": "LE POUT", + "code_postal": "33670", + "coordonnees_gps": [ + 44.8044080843, + -0.357222869901 + ], + "libelle_d_acheminement": "LE POUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.357222869901, + 44.8044080843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cea586039d133f604046e6e4cb8376f6f692da4", + "fields": { + "code_commune_insee": "43254", + "nom_de_la_commune": "VAZEILLES LIMANDRE", + "code_postal": "43320", + "coordonnees_gps": [ + 45.1168091286, + 3.69404145976 + ], + "libelle_d_acheminement": "VAZEILLES LIMANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69404145976, + 45.1168091286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f56bbd5dc21e9565339a3a94651fd53b54301fba", + "fields": { + "code_commune_insee": "33339", + "nom_de_la_commune": "PRIGNAC ET MARCAMPS", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0258741295, + -0.495032335028 + ], + "libelle_d_acheminement": "PRIGNAC ET MARCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.495032335028, + 45.0258741295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0515929f536b0d31f2fb674f93ae13e9f30e161", + "fields": { + "code_commune_insee": "43258", + "nom_de_la_commune": "VERGONGHEON", + "code_postal": "43360", + "coordonnees_gps": [ + 45.3722827688, + 3.33088237226 + ], + "libelle_d_acheminement": "VERGONGHEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33088237226, + 45.3722827688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "281c9a4772c91bcffbfc57460f3a6f66a7fc1da5", + "fields": { + "code_commune_insee": "33341", + "nom_de_la_commune": "PUGNAC", + "code_postal": "33710", + "coordonnees_gps": [ + 45.0835194414, + -0.498613967058 + ], + "libelle_d_acheminement": "PUGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.498613967058, + 45.0835194414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3e4fabce2921365561bde48ecbf94f4b116424e", + "fields": { + "code_commune_insee": "43261", + "nom_de_la_commune": "VEZEZOUX", + "code_postal": "43390", + "coordonnees_gps": [ + 45.4052201383, + 3.34832487866 + ], + "libelle_d_acheminement": "VEZEZOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34832487866, + 45.4052201383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f0d80bf499c56ad766ecd1388bf7f8dce166e0a", + "fields": { + "ligne_5": "LAFOSSE", + "code_commune_insee": "33341", + "libelle_d_acheminement": "PUGNAC", + "code_postal": "33710", + "nom_de_la_commune": "PUGNAC", + "coordonnees_gps": [ + 45.0835194414, + -0.498613967058 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.498613967058, + 45.0835194414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7949e35e9a4584e48395b4d438392aac6d400be9", + "fields": { + "code_commune_insee": "43264", + "nom_de_la_commune": "VILLENEUVE D ALLIER", + "code_postal": "43380", + "coordonnees_gps": [ + 45.1942784893, + 3.37774101314 + ], + "libelle_d_acheminement": "VILLENEUVE D ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37774101314, + 45.1942784893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c7a606515394b67f09de79f57207b4090817dfe", + "fields": { + "ligne_5": "MONBADON", + "code_commune_insee": "33342", + "libelle_d_acheminement": "PUISSEGUIN", + "code_postal": "33570", + "nom_de_la_commune": "PUISSEGUIN", + "coordonnees_gps": [ + 44.9327886127, + -0.0632513144683 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0632513144683, + 44.9327886127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c673ff90520de9ab0f9e5664315a15f973897b82", + "fields": { + "ligne_5": "ANCENIS", + "code_commune_insee": "44003", + "libelle_d_acheminement": "ANCENIS ST GEREON", + "code_postal": "44150", + "nom_de_la_commune": "ANCENIS ST GEREON", + "coordonnees_gps": [ + 47.3833270209, + -1.18241880879 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18241880879, + 47.3833270209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a30ddc71e00ec80a1d1b82336701f4c4a76d7443", + "fields": { + "code_commune_insee": "33359", + "nom_de_la_commune": "ROQUEBRUNE", + "code_postal": "33580", + "coordonnees_gps": [ + 44.6257630925, + 0.0206819226945 + ], + "libelle_d_acheminement": "ROQUEBRUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0206819226945, + 44.6257630925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e7a8a47ffab4e0a47f8c35835477345b03fa9a5", + "fields": { + "code_commune_insee": "44006", + "nom_de_la_commune": "ASSERAC", + "code_postal": "44410", + "coordonnees_gps": [ + 47.4379772072, + -2.41272577216 + ], + "libelle_d_acheminement": "ASSERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41272577216, + 47.4379772072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb89107ebe95d2e5bf5d869f344215d5831d06f4", + "fields": { + "code_commune_insee": "33362", + "nom_de_la_commune": "SABLONS", + "code_postal": "33910", + "coordonnees_gps": [ + 45.0243699436, + -0.182863354079 + ], + "libelle_d_acheminement": "SABLONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.182863354079, + 45.0243699436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81760bf5a63bab0bb74a44d93c3f9857f2900f6d", + "fields": { + "code_commune_insee": "44018", + "nom_de_la_commune": "BOUAYE", + "code_postal": "44830", + "coordonnees_gps": [ + 47.1473396882, + -1.6725437059 + ], + "libelle_d_acheminement": "BOUAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6725437059, + 47.1473396882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "923c0345f569a7d4477ba4dc3dd1f5dd6dd20227", + "fields": { + "code_commune_insee": "33365", + "nom_de_la_commune": "ST AIGNAN", + "code_postal": "33126", + "coordonnees_gps": [ + 44.9475875341, + -0.297024133452 + ], + "libelle_d_acheminement": "ST AIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.297024133452, + 44.9475875341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "067a69901c9add703fdac1cc92a8d4f056c1e59a", + "fields": { + "ligne_5": "FRESNAY EN RETZ", + "code_commune_insee": "44021", + "libelle_d_acheminement": "VILLENEUVE EN RETZ", + "code_postal": "44580", + "nom_de_la_commune": "VILLENEUVE EN RETZ", + "coordonnees_gps": [ + 47.0381472853, + -1.92586734325 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92586734325, + 47.0381472853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c0811d95c335624dfebd89c53a58e3a90afb122", + "fields": { + "code_commune_insee": "33394", + "nom_de_la_commune": "ST EMILION", + "code_postal": "33330", + "coordonnees_gps": [ + 44.8999911844, + -0.169955105989 + ], + "libelle_d_acheminement": "ST EMILION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.169955105989, + 44.8999911844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4685a3355e9b8c0a31315a54b8548305ec26b8a", + "fields": { + "code_commune_insee": "44025", + "nom_de_la_commune": "CAMPBON", + "code_postal": "44750", + "coordonnees_gps": [ + 47.4160977851, + -1.96776519689 + ], + "libelle_d_acheminement": "CAMPBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.96776519689, + 47.4160977851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14f1d2c498573421d8b2b3122ad3bd405aad6ac1", + "fields": { + "code_commune_insee": "33398", + "nom_de_la_commune": "ST EXUPERY", + "code_postal": "33190", + "coordonnees_gps": [ + 44.6331784012, + -0.100374502546 + ], + "libelle_d_acheminement": "ST EXUPERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.100374502546, + 44.6331784012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f80112abc8d0e27773ea0b22f19d6005c1e7bba", + "fields": { + "code_commune_insee": "44043", + "nom_de_la_commune": "CLISSON", + "code_postal": "44190", + "coordonnees_gps": [ + 47.097896998, + -1.27042598067 + ], + "libelle_d_acheminement": "CLISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27042598067, + 47.097896998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15d6ae8292c55019a48528b617ef2658263f1b06", + "fields": { + "code_commune_insee": "33405", + "nom_de_la_commune": "ST GENES DE BLAYE", + "code_postal": "33390", + "coordonnees_gps": [ + 45.1613439952, + -0.668437136605 + ], + "libelle_d_acheminement": "ST GENES DE BLAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.668437136605, + 45.1613439952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c2a4d55d09f6e3f2ebd4df86779bac393e91eb6", + "fields": { + "code_commune_insee": "44044", + "nom_de_la_commune": "CONQUEREUIL", + "code_postal": "44290", + "coordonnees_gps": [ + 47.6488519078, + -1.76222816396 + ], + "libelle_d_acheminement": "CONQUEREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76222816396, + 47.6488519078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c2587499e2baf7e3fe42aac7a7844687bc2838f", + "fields": { + "code_commune_insee": "33406", + "nom_de_la_commune": "ST GENES DE CASTILLON", + "code_postal": "33350", + "coordonnees_gps": [ + 44.899794746, + -0.0641790008053 + ], + "libelle_d_acheminement": "ST GENES DE CASTILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0641790008053, + 44.899794746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83f20e6f09cc38ca456443fc9ff0dd15a040c621", + "fields": { + "ligne_5": "LA CHABOSSIERE", + "code_commune_insee": "44047", + "libelle_d_acheminement": "COUERON", + "code_postal": "44220", + "nom_de_la_commune": "COUERON", + "coordonnees_gps": [ + 47.2309985029, + -1.72929002573 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72929002573, + 47.2309985029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0040434f462aaf567869653f36bd071cb196199a", + "fields": { + "code_commune_insee": "33418", + "nom_de_la_commune": "ST HILAIRE DE LA NOAILLE", + "code_postal": "33190", + "coordonnees_gps": [ + 44.6031750494, + 0.00530764786777 + ], + "libelle_d_acheminement": "ST HILAIRE DE LA NOAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00530764786777, + 44.6031750494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f799e63cb81df6a9918db266cefacfd7c5782374", + "fields": { + "code_commune_insee": "44049", + "nom_de_la_commune": "LE CROISIC", + "code_postal": "44490", + "coordonnees_gps": [ + 47.2922743449, + -2.52277844422 + ], + "libelle_d_acheminement": "LE CROISIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.52277844422, + 47.2922743449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b50314bad20e9d6661dd9bfab63263d6a2e2fcf", + "fields": { + "code_commune_insee": "33425", + "nom_de_la_commune": "ST LAURENT D ARCE", + "code_postal": "33240", + "coordonnees_gps": [ + 45.0430455574, + -0.465863416208 + ], + "libelle_d_acheminement": "ST LAURENT D ARCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.465863416208, + 45.0430455574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "489da44aeb252d1f5376c6b0b3269ea49b9c4478", + "fields": { + "code_commune_insee": "44054", + "nom_de_la_commune": "ERBRAY", + "code_postal": "44110", + "coordonnees_gps": [ + 47.6690929055, + -1.32185881383 + ], + "libelle_d_acheminement": "ERBRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32185881383, + 47.6690929055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3600079601834e8f6e67bea75b1c65d2d6970332", + "fields": { + "code_commune_insee": "33440", + "nom_de_la_commune": "ST MARTIAL", + "code_postal": "33490", + "coordonnees_gps": [ + 44.6326268868, + -0.177651348773 + ], + "libelle_d_acheminement": "ST MARTIAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.177651348773, + 44.6326268868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa579993a740012ee1d11870c06731c92907a42e", + "fields": { + "code_commune_insee": "44064", + "nom_de_la_commune": "GORGES", + "code_postal": "44190", + "coordonnees_gps": [ + 47.1044539402, + -1.31077198119 + ], + "libelle_d_acheminement": "GORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31077198119, + 47.1044539402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a56ed80eb212437dde873a58f99caf1d811dc88b", + "fields": { + "code_commune_insee": "33441", + "nom_de_la_commune": "ST MARTIN LACAUSSADE", + "code_postal": "33390", + "coordonnees_gps": [ + 45.142779014, + -0.642629661548 + ], + "libelle_d_acheminement": "ST MARTIN LACAUSSADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.642629661548, + 45.142779014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fb23229c396f5e5c3cf818c8c3ada4a4073a68a", + "fields": { + "ligne_5": "NOTRE DAME DE GRACE", + "code_commune_insee": "44068", + "libelle_d_acheminement": "GUENROUET", + "code_postal": "44530", + "nom_de_la_commune": "GUENROUET", + "coordonnees_gps": [ + 47.5034137503, + -1.95561601434 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95561601434, + 47.5034137503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d479c560c6fe968f09baaf149b0fcf7370bb47f", + "fields": { + "code_commune_insee": "33446", + "nom_de_la_commune": "ST MARTIN DU PUY", + "code_postal": "33540", + "coordonnees_gps": [ + 44.6732953187, + -0.0351529488141 + ], + "libelle_d_acheminement": "ST MARTIN DU PUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0351529488141, + 44.6732953187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a65010240686b351336e34c9547b87e1df41cbff", + "fields": { + "ligne_5": "LA MADELEINE", + "code_commune_insee": "44069", + "libelle_d_acheminement": "GUERANDE", + "code_postal": "44350", + "nom_de_la_commune": "GUERANDE", + "coordonnees_gps": [ + 47.3313320913, + -2.41703658813 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.41703658813, + 47.3313320913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a77780eaf02363529387b8f3e49736198f07def", + "fields": { + "code_commune_insee": "33461", + "nom_de_la_commune": "ST PHILIPPE D AIGUILLE", + "code_postal": "33350", + "coordonnees_gps": [ + 44.9155884721, + -0.0382526384701 + ], + "libelle_d_acheminement": "ST PHILIPPE D AIGUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0382526384701, + 44.9155884721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feef191193fe30de03c10efad1450a3b428fc70e", + "fields": { + "code_commune_insee": "44079", + "nom_de_la_commune": "LE LANDREAU", + "code_postal": "44430", + "coordonnees_gps": [ + 47.2077664835, + -1.29844309328 + ], + "libelle_d_acheminement": "LE LANDREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29844309328, + 47.2077664835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1c0acbbd4cd3a67c0ad7c42783d235def6acacb", + "fields": { + "code_commune_insee": "33462", + "nom_de_la_commune": "ST PHILIPPE DU SEIGNAL", + "code_postal": "33220", + "coordonnees_gps": [ + 44.8241452564, + 0.25435223921 + ], + "libelle_d_acheminement": "ST PHILIPPE DU SEIGNAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.25435223921, + 44.8241452564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daf20031806b337b9802f212fbab1c855762f321", + "fields": { + "code_commune_insee": "44080", + "nom_de_la_commune": "LAVAU SUR LOIRE", + "code_postal": "44260", + "coordonnees_gps": [ + 47.320865437, + -1.95839196459 + ], + "libelle_d_acheminement": "LAVAU SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95839196459, + 47.320865437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be132b5babb90f76a43c6a86b0b10dd25b3a5e5b", + "fields": { + "code_commune_insee": "33474", + "nom_de_la_commune": "ST SELVE", + "code_postal": "33650", + "coordonnees_gps": [ + 44.6549808448, + -0.472634663136 + ], + "libelle_d_acheminement": "ST SELVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.472634663136, + 44.6549808448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8861ddb3951c5d30b1d0ac61b355980f7d033b78", + "fields": { + "code_commune_insee": "44081", + "nom_de_la_commune": "LEGE", + "code_postal": "44650", + "coordonnees_gps": [ + 46.9003706986, + -1.57917124705 + ], + "libelle_d_acheminement": "LEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57917124705, + 46.9003706986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb1b337cf703642b3537b507c7afdf2f77a44e14", + "fields": { + "code_commune_insee": "33476", + "nom_de_la_commune": "ST SEURIN DE CADOURNE", + "code_postal": "33180", + "coordonnees_gps": [ + 45.2908187086, + -0.80189992877 + ], + "libelle_d_acheminement": "ST SEURIN DE CADOURNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.80189992877, + 45.2908187086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f08eb691041603740fc7dc5cd32f518fb02e3bdf", + "fields": { + "ligne_5": "ST MEME LE TENU", + "code_commune_insee": "44087", + "libelle_d_acheminement": "MACHECOUL ST MEME", + "code_postal": "44270", + "nom_de_la_commune": "MACHECOUL ST MEME", + "coordonnees_gps": [ + 46.9910784513, + -1.82345670327 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82345670327, + 46.9910784513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcb4b86b95c6fbb521dcbda67c11b1eb8d057e74", + "fields": { + "code_commune_insee": "33480", + "nom_de_la_commune": "ST SULPICE DE FALEYRENS", + "code_postal": "33330", + "coordonnees_gps": [ + 44.8612319917, + -0.188059653304 + ], + "libelle_d_acheminement": "ST SULPICE DE FALEYRENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.188059653304, + 44.8612319917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a239644e0724c250edcf73222494c1707de9924f", + "fields": { + "code_commune_insee": "44090", + "nom_de_la_commune": "LA MARNE", + "code_postal": "44270", + "coordonnees_gps": [ + 46.9913891791, + -1.71864413598 + ], + "libelle_d_acheminement": "LA MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71864413598, + 46.9913891791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbf22fbbc211f3242d5c02b4ebdb4ea06f1b098e", + "fields": { + "code_commune_insee": "33485", + "nom_de_la_commune": "STE TERRE", + "code_postal": "33350", + "coordonnees_gps": [ + 44.8338850704, + -0.120538591172 + ], + "libelle_d_acheminement": "STE TERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.120538591172, + 44.8338850704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e32a46cea17d5fbffe2fca91a81e6093ce17629b", + "fields": { + "code_commune_insee": "44097", + "nom_de_la_commune": "MESQUER", + "code_postal": "44420", + "coordonnees_gps": [ + 47.396034846, + -2.47063226926 + ], + "libelle_d_acheminement": "MESQUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.47063226926, + 47.396034846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "863a97cb96cf2fa014ddacab8639cc6370f8b38f", + "fields": { + "code_commune_insee": "33498", + "nom_de_la_commune": "SALLES", + "code_postal": "33770", + "coordonnees_gps": [ + 44.5414583126, + -0.883819514854 + ], + "libelle_d_acheminement": "SALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.883819514854, + 44.5414583126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2759ae131b7e07ad982f836c697b818467a93bf4", + "fields": { + "code_commune_insee": "44102", + "nom_de_la_commune": "MONTBERT", + "code_postal": "44140", + "coordonnees_gps": [ + 47.0679433931, + -1.4701852733 + ], + "libelle_d_acheminement": "MONTBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4701852733, + 47.0679433931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38179c6672442229ef8b9dc40131271856524cd0", + "fields": { + "code_commune_insee": "33508", + "nom_de_la_commune": "SAVIGNAC", + "code_postal": "33124", + "coordonnees_gps": [ + 44.5147062102, + -0.108846337932 + ], + "libelle_d_acheminement": "SAVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.108846337932, + 44.5147062102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1aebefc7561b1dbc8a988aee566ad1ce6f68b32", + "fields": { + "code_commune_insee": "44108", + "nom_de_la_commune": "MOUZILLON", + "code_postal": "44330", + "coordonnees_gps": [ + 47.1293076835, + -1.27378859416 + ], + "libelle_d_acheminement": "MOUZILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27378859416, + 47.1293076835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e63bc7fd5ac8f963ea1f4a1c8539c5367ca8c148", + "fields": { + "code_commune_insee": "33519", + "nom_de_la_commune": "LE TAILLAN MEDOC", + "code_postal": "33320", + "coordonnees_gps": [ + 44.9111778103, + -0.680843022546 + ], + "libelle_d_acheminement": "LE TAILLAN MEDOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.680843022546, + 44.9111778103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29a78f973b59e13442844a9789a50939ca9ec419", + "fields": { + "code_commune_insee": "44109", + "nom_de_la_commune": "NANTES", + "code_postal": "44200", + "coordonnees_gps": [ + 47.2316356767, + -1.54831008605 + ], + "libelle_d_acheminement": "NANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54831008605, + 47.2316356767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a55c58fd0fd81d4aaf4eb918df903469420a7e48", + "fields": { + "code_commune_insee": "33520", + "nom_de_la_commune": "TAILLECAVAT", + "code_postal": "33580", + "coordonnees_gps": [ + 44.6516434707, + 0.157497869369 + ], + "libelle_d_acheminement": "TAILLECAVAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.157497869369, + 44.6516434707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08443ed58875f41a4e74185530cba24267f137ac", + "fields": { + "code_commune_insee": "44111", + "nom_de_la_commune": "NOTRE DAME DES LANDES", + "code_postal": "44130", + "coordonnees_gps": [ + 47.3753590043, + -1.71598291146 + ], + "libelle_d_acheminement": "NOTRE DAME DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71598291146, + 47.3753590043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "464bb06be72cfe67643a394e31b0bc3c9eb5cf41", + "fields": { + "code_commune_insee": "33533", + "nom_de_la_commune": "TOULENNE", + "code_postal": "33210", + "coordonnees_gps": [ + 44.5644281696, + -0.275202743497 + ], + "libelle_d_acheminement": "TOULENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.275202743497, + 44.5644281696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e4ee6457cf8834f66bc24168a390972d57cc1d9", + "fields": { + "code_commune_insee": "44117", + "nom_de_la_commune": "LE PALLET", + "code_postal": "44330", + "coordonnees_gps": [ + 47.1439366329, + -1.34541765527 + ], + "libelle_d_acheminement": "LE PALLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34541765527, + 47.1439366329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11d18f5cdf024f4f62be92a38f24b7120fc52adf", + "fields": { + "code_commune_insee": "33545", + "nom_de_la_commune": "VERTHEUIL", + "code_postal": "33180", + "coordonnees_gps": [ + 45.2541334712, + -0.845409908523 + ], + "libelle_d_acheminement": "VERTHEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.845409908523, + 45.2541334712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc7c49362f69e9fd4240bdf437b5ef971115608a", + "fields": { + "ligne_5": "ST GUILLAUME", + "code_commune_insee": "44129", + "libelle_d_acheminement": "PONTCHATEAU", + "code_postal": "44160", + "nom_de_la_commune": "PONTCHATEAU", + "coordonnees_gps": [ + 47.433636363, + -2.09556089039 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09556089039, + 47.433636363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48e7e2352c122a74ef01b588735bbd83ed013bc1", + "fields": { + "code_commune_insee": "34007", + "nom_de_la_commune": "AIGUES VIVES", + "code_postal": "34210", + "coordonnees_gps": [ + 43.3476601284, + 2.82493400005 + ], + "libelle_d_acheminement": "AIGUES VIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82493400005, + 43.3476601284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f05e2b65c2d41d0c2d4b8d386aa8b79c90efcf11", + "fields": { + "code_commune_insee": "44130", + "nom_de_la_commune": "PONT ST MARTIN", + "code_postal": "44860", + "coordonnees_gps": [ + 47.126582936, + -1.56594193848 + ], + "libelle_d_acheminement": "PONT ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56594193848, + 47.126582936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59e7fd59e4fbf2ae223a49e80a288c1359dfec0b", + "fields": { + "code_commune_insee": "34008", + "nom_de_la_commune": "LES AIRES", + "code_postal": "34600", + "coordonnees_gps": [ + 43.5695523361, + 3.07138973209 + ], + "libelle_d_acheminement": "LES AIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07138973209, + 43.5695523361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d5206e2223f71a309bb628694aea0a31736d3f7", + "fields": { + "ligne_5": "STE MARIE", + "code_commune_insee": "44131", + "libelle_d_acheminement": "PORNIC", + "code_postal": "44210", + "nom_de_la_commune": "PORNIC", + "coordonnees_gps": [ + 47.1223972452, + -2.05182334479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05182334479, + 47.1223972452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "297e6809980a92c187a109c910f186c4419f5ea0", + "fields": { + "code_commune_insee": "34010", + "nom_de_la_commune": "ANIANE", + "code_postal": "34150", + "coordonnees_gps": [ + 43.6835011433, + 3.59259437611 + ], + "libelle_d_acheminement": "ANIANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59259437611, + 43.6835011433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e92cf1822772dd9da79a8a4940fbaca7b5efe5c8", + "fields": { + "code_commune_insee": "44135", + "nom_de_la_commune": "LE POULIGUEN", + "code_postal": "44510", + "coordonnees_gps": [ + 47.2716208982, + -2.43210265977 + ], + "libelle_d_acheminement": "LE POULIGUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.43210265977, + 47.2716208982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bef1aadf419dad6e43ae4a1be4411f8bb83692e6", + "fields": { + "code_commune_insee": "34011", + "nom_de_la_commune": "ARBORAS", + "code_postal": "34150", + "coordonnees_gps": [ + 43.7212717776, + 3.47409312363 + ], + "libelle_d_acheminement": "ARBORAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47409312363, + 43.7212717776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2050310f8e284a5fed126f6821ad05b4a933473", + "fields": { + "code_commune_insee": "44139", + "nom_de_la_commune": "QUILLY", + "code_postal": "44750", + "coordonnees_gps": [ + 47.4618178033, + -1.9408388462 + ], + "libelle_d_acheminement": "QUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.9408388462, + 47.4618178033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6c196903b673319e77ee12da74f0202a34d7a98", + "fields": { + "code_commune_insee": "34014", + "nom_de_la_commune": "ASSAS", + "code_postal": "34820", + "coordonnees_gps": [ + 43.7104129973, + 3.89790490064 + ], + "libelle_d_acheminement": "ASSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89790490064, + 43.7104129973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13185215cbdaee6c838bb36e98a7283313d33d33", + "fields": { + "code_commune_insee": "44141", + "nom_de_la_commune": "LA REMAUDIERE", + "code_postal": "44430", + "coordonnees_gps": [ + 47.2265214538, + -1.23167770963 + ], + "libelle_d_acheminement": "LA REMAUDIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23167770963, + 47.2265214538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36fdc986fdb14d886330395510ed8c2e84c35ef1", + "fields": { + "code_commune_insee": "34015", + "nom_de_la_commune": "ASSIGNAN", + "code_postal": "34360", + "coordonnees_gps": [ + 43.3998665892, + 2.8868499773 + ], + "libelle_d_acheminement": "ASSIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8868499773, + 43.3998665892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63e0d73ca09dffaf1e678b62fc2655d062ba8ae0", + "fields": { + "code_commune_insee": "44146", + "nom_de_la_commune": "ROUGE", + "code_postal": "44660", + "coordonnees_gps": [ + 47.7704881323, + -1.43409809918 + ], + "libelle_d_acheminement": "ROUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43409809918, + 47.7704881323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4711a2941a867b8bd0090acc8cf040860fe70506", + "fields": { + "code_commune_insee": "34022", + "nom_de_la_commune": "BAILLARGUES", + "code_postal": "34670", + "coordonnees_gps": [ + 43.6581051757, + 4.01030491176 + ], + "libelle_d_acheminement": "BAILLARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01030491176, + 43.6581051757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed76ef2f03b25839382e0faeb2f06b1f68a86e1c", + "fields": { + "code_commune_insee": "44151", + "nom_de_la_commune": "ST ANDRE DES EAUX", + "code_postal": "44117", + "coordonnees_gps": [ + 47.3234376088, + -2.31269060612 + ], + "libelle_d_acheminement": "ST ANDRE DES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.31269060612, + 47.3234376088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b8010691d63a7099758e80a3073390674c2cb9c", + "fields": { + "code_commune_insee": "34035", + "nom_de_la_commune": "LA BOISSIERE", + "code_postal": "34150", + "coordonnees_gps": [ + 43.6543984294, + 3.64428863872 + ], + "libelle_d_acheminement": "LA BOISSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64428863872, + 43.6543984294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13725960546f30fe94f55235ba1b344366176e58", + "fields": { + "code_commune_insee": "44153", + "nom_de_la_commune": "ST AUBIN DES CHATEAUX", + "code_postal": "44110", + "coordonnees_gps": [ + 47.7056440734, + -1.47872960477 + ], + "libelle_d_acheminement": "ST AUBIN DES CHATEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47872960477, + 47.7056440734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cade7c845169923a5ae8a3b041cd69393348a6b", + "fields": { + "code_commune_insee": "34040", + "nom_de_la_commune": "BRENAS", + "code_postal": "34650", + "coordonnees_gps": [ + 43.6412617949, + 3.25359817589 + ], + "libelle_d_acheminement": "BRENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25359817589, + 43.6412617949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a310aa54af89436a0ccede0c7b5273be226daa8", + "fields": { + "ligne_5": "ST BREVIN L OCEAN", + "code_commune_insee": "44154", + "libelle_d_acheminement": "ST BREVIN LES PINS", + "code_postal": "44250", + "nom_de_la_commune": "ST BREVIN LES PINS", + "coordonnees_gps": [ + 47.2380057754, + -2.1516650013 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1516650013, + 47.2380057754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72b76a216e96a43393c6a99692ab55147cde2f04", + "fields": { + "code_commune_insee": "34044", + "nom_de_la_commune": "CABREROLLES", + "code_postal": "34480", + "coordonnees_gps": [ + 43.5347800126, + 3.12207083233 + ], + "libelle_d_acheminement": "CABREROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12207083233, + 43.5347800126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f4e6f0972753181923ff217a93371198a6ed7d0", + "fields": { + "code_commune_insee": "44161", + "nom_de_la_commune": "ST GILDAS DES BOIS", + "code_postal": "44530", + "coordonnees_gps": [ + 47.5090375076, + -2.05985402604 + ], + "libelle_d_acheminement": "ST GILDAS DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.05985402604, + 47.5090375076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0147fa4d660936831adc619b2b57bbd9a025bd5c", + "fields": { + "code_commune_insee": "34045", + "nom_de_la_commune": "CABRIERES", + "code_postal": "34800", + "coordonnees_gps": [ + 43.5777973112, + 3.34800607563 + ], + "libelle_d_acheminement": "CABRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34800607563, + 43.5777973112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9020f3da5427694d26bca2f3cb77e7eff6d575b", + "fields": { + "code_commune_insee": "44168", + "nom_de_la_commune": "ST JOACHIM", + "code_postal": "44720", + "coordonnees_gps": [ + 47.3721622371, + -2.24296601109 + ], + "libelle_d_acheminement": "ST JOACHIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.24296601109, + 47.3721622371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd807e6a582b8505650ffba58dd74854b146e937", + "fields": { + "code_commune_insee": "34066", + "nom_de_la_commune": "CAZEVIEILLE", + "code_postal": "34270", + "coordonnees_gps": [ + 43.7640929334, + 3.79487938999 + ], + "libelle_d_acheminement": "CAZEVIEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79487938999, + 43.7640929334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "061b3b8b6d9e0b9227cec7bc5f62be095412bbfd", + "fields": { + "code_commune_insee": "44172", + "nom_de_la_commune": "STE LUCE SUR LOIRE", + "code_postal": "44980", + "coordonnees_gps": [ + 47.2536231327, + -1.4728987153 + ], + "libelle_d_acheminement": "STE LUCE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4728987153, + 47.2536231327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84d01b54dae8278cc183fb8e4ec0029abbd36b2b", + "fields": { + "code_commune_insee": "34070", + "nom_de_la_commune": "CEBAZAN", + "code_postal": "34360", + "coordonnees_gps": [ + 43.4057714323, + 2.98753544728 + ], + "libelle_d_acheminement": "CEBAZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98753544728, + 43.4057714323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5356ed87045029139228f2cbb901fd7b9958434", + "fields": { + "code_commune_insee": "44179", + "nom_de_la_commune": "ST MARS DU DESERT", + "code_postal": "44850", + "coordonnees_gps": [ + 47.357199355, + -1.44530337399 + ], + "libelle_d_acheminement": "ST MARS DU DESERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44530337399, + 47.357199355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3899588a05a9ffe2eba0f6037cc3df47c8b7b7ee", + "fields": { + "code_commune_insee": "34071", + "nom_de_la_commune": "CEILHES ET ROCOZELS", + "code_postal": "34260", + "coordonnees_gps": [ + 43.809322318, + 3.09184232431 + ], + "libelle_d_acheminement": "CEILHES ET ROCOZELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09184232431, + 43.809322318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "321a4f082aaa10d4943548a025f785fd582184ad", + "fields": { + "ligne_5": "FREIGNE", + "code_commune_insee": "44180", + "libelle_d_acheminement": "VALLONS DE L ERDRE", + "code_postal": "44540", + "nom_de_la_commune": "VALLONS DE L ERDRE", + "coordonnees_gps": [ + 47.5309227299, + -1.19441075506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19441075506, + 47.5309227299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e549ef459504e395dea5073445adcccc58fa382", + "fields": { + "code_commune_insee": "34072", + "nom_de_la_commune": "CELLES", + "code_postal": "34700", + "coordonnees_gps": [ + 43.6663640232, + 3.35967873955 + ], + "libelle_d_acheminement": "CELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35967873955, + 43.6663640232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e806367b5e368023fe389c10a343e8aade626fa7", + "fields": { + "code_commune_insee": "44186", + "nom_de_la_commune": "STE PAZANNE", + "code_postal": "44680", + "coordonnees_gps": [ + 47.0839938747, + -1.81814462702 + ], + "libelle_d_acheminement": "STE PAZANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.81814462702, + 47.0839938747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1dbd6dd7b5b5472f58ff4f2611b367853346d51", + "fields": { + "code_commune_insee": "34075", + "nom_de_la_commune": "CESSERAS", + "code_postal": "34210", + "coordonnees_gps": [ + 43.3311589874, + 2.70406695025 + ], + "libelle_d_acheminement": "CESSERAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70406695025, + 43.3311589874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bb8ac00e9ae049b6fb1693c1c5530a08a76f407", + "fields": { + "code_commune_insee": "44190", + "nom_de_la_commune": "ST SEBASTIEN SUR LOIRE", + "code_postal": "44230", + "coordonnees_gps": [ + 47.2031024794, + -1.4992042742 + ], + "libelle_d_acheminement": "ST SEBASTIEN SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4992042742, + 47.2031024794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5847d535eefa7ee916e6902af677031c7b3563d", + "fields": { + "code_commune_insee": "34086", + "nom_de_la_commune": "COURNIOU", + "code_postal": "34220", + "coordonnees_gps": [ + 43.489357501, + 2.69325210308 + ], + "libelle_d_acheminement": "COURNIOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69325210308, + 43.489357501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b47c662e380b36cfc35ca21700be76ade9f011dd", + "fields": { + "code_commune_insee": "44192", + "nom_de_la_commune": "ST VIAUD", + "code_postal": "44320", + "coordonnees_gps": [ + 47.2476012305, + -1.99328592854 + ], + "libelle_d_acheminement": "ST VIAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99328592854, + 47.2476012305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "685d4a27aed50ae637f3c83ff605fd107afc1732", + "fields": { + "code_commune_insee": "34088", + "nom_de_la_commune": "COURNONTERRAL", + "code_postal": "34660", + "coordonnees_gps": [ + 43.5694241257, + 3.70642853592 + ], + "libelle_d_acheminement": "COURNONTERRAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70642853592, + 43.5694241257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f77b6760bc2a2d15cfd099757ddfa7959eb1068", + "fields": { + "code_commune_insee": "44193", + "nom_de_la_commune": "ST VINCENT DES LANDES", + "code_postal": "44590", + "coordonnees_gps": [ + 47.6556800047, + -1.50486133438 + ], + "libelle_d_acheminement": "ST VINCENT DES LANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50486133438, + 47.6556800047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "876824b5ce8514fe78cb820c19316a5e1f4cfb01", + "fields": { + "code_commune_insee": "34090", + "nom_de_la_commune": "LE CRES", + "code_postal": "34920", + "coordonnees_gps": [ + 43.6540978695, + 3.93608851243 + ], + "libelle_d_acheminement": "LE CRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93608851243, + 43.6540978695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfbd8dcd6eb9fcd788078a91a4b29d5fdf336660", + "fields": { + "code_commune_insee": "44200", + "nom_de_la_commune": "SOULVACHE", + "code_postal": "44660", + "coordonnees_gps": [ + 47.8212049695, + -1.44807093134 + ], + "libelle_d_acheminement": "SOULVACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44807093134, + 47.8212049695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b421438ed45ce26b29692deec1dcee28ec80b3e4", + "fields": { + "code_commune_insee": "34097", + "nom_de_la_commune": "FELINES MINERVOIS", + "code_postal": "34210", + "coordonnees_gps": [ + 43.354036783, + 2.58187245659 + ], + "libelle_d_acheminement": "FELINES MINERVOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58187245659, + 43.354036783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ace312bd5adf6faafc062c60934190a5a39c18ee", + "fields": { + "ligne_5": "BELLIGNE", + "code_commune_insee": "44213", + "libelle_d_acheminement": "LOIREAUXENCE", + "code_postal": "44370", + "nom_de_la_commune": "LOIREAUXENCE", + "coordonnees_gps": [ + 47.4023133343, + -1.0243274407 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0243274407, + 47.4023133343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecff2beeea30b92b6afe1ac6a86f8420b9b6aab1", + "fields": { + "code_commune_insee": "34102", + "nom_de_la_commune": "FONTANES", + "code_postal": "34270", + "coordonnees_gps": [ + 43.7944026303, + 3.91839771103 + ], + "libelle_d_acheminement": "FONTANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91839771103, + 43.7944026303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d77c869692d133841f0b67af077bbd89aa0486d", + "fields": { + "ligne_5": "VARADES", + "code_commune_insee": "44213", + "libelle_d_acheminement": "LOIREAUXENCE", + "code_postal": "44370", + "nom_de_la_commune": "LOIREAUXENCE", + "coordonnees_gps": [ + 47.4023133343, + -1.0243274407 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0243274407, + 47.4023133343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cee988b2297aaa670b986b915a5fad117a317b62", + "fields": { + "code_commune_insee": "34103", + "nom_de_la_commune": "FONTES", + "code_postal": "34320", + "coordonnees_gps": [ + 43.5419967541, + 3.39026556007 + ], + "libelle_d_acheminement": "FONTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39026556007, + 43.5419967541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77f03684d0473ce8e1a4f81166b78e404cc3bf2b", + "fields": { + "code_commune_insee": "45002", + "nom_de_la_commune": "AILLANT SUR MILLERON", + "code_postal": "45230", + "coordonnees_gps": [ + 47.7948800184, + 2.93667863104 + ], + "libelle_d_acheminement": "AILLANT SUR MILLERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93667863104, + 47.7948800184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14067b42535ef49613e942e889be1bd869e13523", + "fields": { + "code_commune_insee": "34104", + "nom_de_la_commune": "FOS", + "code_postal": "34320", + "coordonnees_gps": [ + 43.5681193831, + 3.24200444843 + ], + "libelle_d_acheminement": "FOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24200444843, + 43.5681193831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af763e0b19d63591b8657cf419eb5bc7f3462666", + "fields": { + "code_commune_insee": "45010", + "nom_de_la_commune": "ASCOUX", + "code_postal": "45300", + "coordonnees_gps": [ + 48.1271076632, + 2.24907417441 + ], + "libelle_d_acheminement": "ASCOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24907417441, + 48.1271076632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91f680ea2c7801bf2de34c60f2ea601e7bcd62c1", + "fields": { + "code_commune_insee": "34109", + "nom_de_la_commune": "GABIAN", + "code_postal": "34320", + "coordonnees_gps": [ + 43.5181480219, + 3.26449755932 + ], + "libelle_d_acheminement": "GABIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26449755932, + 43.5181480219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "048e998e31e5bc1d6bfa1ce23a1ca8c84e75f2e1", + "fields": { + "code_commune_insee": "45012", + "nom_de_la_commune": "AUDEVILLE", + "code_postal": "45300", + "coordonnees_gps": [ + 48.2801416057, + 2.24290241893 + ], + "libelle_d_acheminement": "AUDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24290241893, + 48.2801416057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2311763950792e77e16901d4716d0e5d1af11f27", + "fields": { + "code_commune_insee": "34112", + "nom_de_la_commune": "GARRIGUES", + "code_postal": "34160", + "coordonnees_gps": [ + 43.7983239512, + 4.01049087518 + ], + "libelle_d_acheminement": "GARRIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01049087518, + 43.7983239512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dea3b48cd01a0e8f040edb6964150df15365df96", + "fields": { + "code_commune_insee": "45023", + "nom_de_la_commune": "BATILLY EN PUISAYE", + "code_postal": "45420", + "coordonnees_gps": [ + 47.6114153398, + 2.88555549083 + ], + "libelle_d_acheminement": "BATILLY EN PUISAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88555549083, + 47.6114153398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a2b1c2b0b14a21c93360683bba400f50bd2d424", + "fields": { + "code_commune_insee": "34116", + "nom_de_la_commune": "GRABELS", + "code_postal": "34790", + "coordonnees_gps": [ + 43.6507076799, + 3.79423262021 + ], + "libelle_d_acheminement": "GRABELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79423262021, + 43.6507076799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d17a803e9de3f902bc96090211e4883b5db9bedb", + "fields": { + "code_commune_insee": "45033", + "nom_de_la_commune": "BOESSES", + "code_postal": "45390", + "coordonnees_gps": [ + 48.1484373328, + 2.4331616188 + ], + "libelle_d_acheminement": "BOESSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4331616188, + 48.1484373328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb53aaf0583012f435ba5e22893f644c676150f4", + "fields": { + "code_commune_insee": "34118", + "nom_de_la_commune": "GUZARGUES", + "code_postal": "34820", + "coordonnees_gps": [ + 43.7292469184, + 3.9239639392 + ], + "libelle_d_acheminement": "GUZARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9239639392, + 43.7292469184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c716e666312aaa7bfd2922723b84ffb8571e1a63", + "fields": { + "code_commune_insee": "45034", + "nom_de_la_commune": "BOIGNY SUR BIONNE", + "code_postal": "45760", + "coordonnees_gps": [ + 47.9317973301, + 2.01895568907 + ], + "libelle_d_acheminement": "BOIGNY SUR BIONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01895568907, + 47.9317973301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4633a60a0649dc6e2327f207a9855c0a382b4cd0", + "fields": { + "code_commune_insee": "34125", + "nom_de_la_commune": "LAGAMAS", + "code_postal": "34150", + "coordonnees_gps": [ + 43.6745844077, + 3.5321562547 + ], + "libelle_d_acheminement": "LAGAMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5321562547, + 43.6745844077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "885ab9a956e9c73be73246cdc2e30cec5a404eda", + "fields": { + "code_commune_insee": "45035", + "nom_de_la_commune": "BOISCOMMUN", + "code_postal": "45340", + "coordonnees_gps": [ + 48.0389368902, + 2.35695030268 + ], + "libelle_d_acheminement": "BOISCOMMUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35695030268, + 48.0389368902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db718dfb1091b895b643384b3b847058bd9e3bc9", + "fields": { + "code_commune_insee": "34134", + "nom_de_la_commune": "LAVERUNE", + "code_postal": "34880", + "coordonnees_gps": [ + 43.5848099789, + 3.80168949969 + ], + "libelle_d_acheminement": "LAVERUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80168949969, + 43.5848099789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afae10bfbd3937e1b7bb31b99945a0faf919a481", + "fields": { + "code_commune_insee": "45040", + "nom_de_la_commune": "BONNY SUR LOIRE", + "code_postal": "45420", + "coordonnees_gps": [ + 47.5773091567, + 2.83916317894 + ], + "libelle_d_acheminement": "BONNY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83916317894, + 47.5773091567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c36b61688bd0280c9ea603723716087e6350af2", + "fields": { + "code_commune_insee": "34144", + "nom_de_la_commune": "LUNAS", + "code_postal": "34650", + "coordonnees_gps": [ + 43.7089785299, + 3.20607492455 + ], + "libelle_d_acheminement": "LUNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20607492455, + 43.7089785299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8675d67d3288504f4058be480fb3eb3fdd7754a1", + "fields": { + "code_commune_insee": "45050", + "nom_de_la_commune": "BOYNES", + "code_postal": "45300", + "coordonnees_gps": [ + 48.1171101331, + 2.36040518404 + ], + "libelle_d_acheminement": "BOYNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36040518404, + 48.1171101331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e77d4e0aef4677771bfcf6afc700444b3bd32de", + "fields": { + "code_commune_insee": "34147", + "nom_de_la_commune": "MAGALAS", + "code_postal": "34480", + "coordonnees_gps": [ + 43.4808688877, + 3.21744589266 + ], + "libelle_d_acheminement": "MAGALAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21744589266, + 43.4808688877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae29f69d3f6a23be9a673e1fcc1e9af3729aa84f", + "fields": { + "ligne_5": "BRAY EN VAL", + "code_commune_insee": "45051", + "libelle_d_acheminement": "BRAY ST AIGNAN", + "code_postal": "45460", + "nom_de_la_commune": "BRAY ST AIGNAN", + "coordonnees_gps": [ + 47.8291578282, + 2.38062384404 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38062384404, + 47.8291578282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90a2776e641753fcbb1ed0c5b7800ac6a2df4984", + "fields": { + "ligne_5": "MARSEILLAN PLAGE", + "code_commune_insee": "34150", + "libelle_d_acheminement": "MARSEILLAN", + "code_postal": "34340", + "nom_de_la_commune": "MARSEILLAN", + "coordonnees_gps": [ + 43.3605776007, + 3.54718963761 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54718963761, + 43.3605776007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f897c21123b080a4e7baefe7e6b8edbedb08924b", + "fields": { + "code_commune_insee": "45055", + "nom_de_la_commune": "BRICY", + "code_postal": "45310", + "coordonnees_gps": [ + 48.0009914345, + 1.77493058456 + ], + "libelle_d_acheminement": "BRICY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77493058456, + 48.0009914345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97005c5820cb522074a401f5716b8825210af202", + "fields": { + "code_commune_insee": "34153", + "nom_de_la_commune": "LES MATELLES", + "code_postal": "34270", + "coordonnees_gps": [ + 43.7279155498, + 3.8068218202 + ], + "libelle_d_acheminement": "LES MATELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8068218202, + 43.7279155498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45db8966b2f2dff2da4bcf4697774c6addfc8391", + "fields": { + "code_commune_insee": "45060", + "nom_de_la_commune": "LA BUSSIERE", + "code_postal": "45230", + "coordonnees_gps": [ + 47.7346543928, + 2.74663448165 + ], + "libelle_d_acheminement": "LA BUSSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74663448165, + 47.7346543928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "102b30f58f653e608d608644643d35b6c59c829a", + "fields": { + "code_commune_insee": "34155", + "nom_de_la_commune": "MAUREILHAN", + "code_postal": "34370", + "coordonnees_gps": [ + 43.3515394407, + 3.10170846517 + ], + "libelle_d_acheminement": "MAUREILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10170846517, + 43.3515394407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f34093f5b45f97d912a5afdd90c736c15ffaf02", + "fields": { + "code_commune_insee": "45068", + "nom_de_la_commune": "CHALETTE SUR LOING", + "code_postal": "45120", + "coordonnees_gps": [ + 48.0188121595, + 2.73578852299 + ], + "libelle_d_acheminement": "CHALETTE SUR LOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73578852299, + 48.0188121595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73f1bf9e19b4375b6bb69e11cf6868136a5c468a", + "fields": { + "code_commune_insee": "34167", + "nom_de_la_commune": "MONTELS", + "code_postal": "34310", + "coordonnees_gps": [ + 43.2896268975, + 3.02567631465 + ], + "libelle_d_acheminement": "MONTELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02567631465, + 43.2896268975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62eb6895315eb05d6f1de0a52288d46819cd1e6d", + "fields": { + "code_commune_insee": "45070", + "nom_de_la_commune": "CHAMPOULET", + "code_postal": "45420", + "coordonnees_gps": [ + 47.6510461411, + 2.9231554998 + ], + "libelle_d_acheminement": "CHAMPOULET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9231554998, + 47.6510461411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ddc8ec58f82efefb8faf94cc6b4d6054a3b9d1e", + "fields": { + "code_commune_insee": "34169", + "nom_de_la_commune": "MONTFERRIER SUR LEZ", + "code_postal": "34980", + "coordonnees_gps": [ + 43.6690783518, + 3.86408542938 + ], + "libelle_d_acheminement": "MONTFERRIER SUR LEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86408542938, + 43.6690783518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19d72b66474b3864dabccab84f644c9abb23c867", + "fields": { + "code_commune_insee": "45079", + "nom_de_la_commune": "LE CHARME", + "code_postal": "45230", + "coordonnees_gps": [ + 47.8016829146, + 2.99256273741 + ], + "libelle_d_acheminement": "LE CHARME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99256273741, + 47.8016829146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "201da1f0c93bd704546fbc039e4094b14beffb87", + "fields": { + "code_commune_insee": "34176", + "nom_de_la_commune": "MUDAISON", + "code_postal": "34130", + "coordonnees_gps": [ + 43.6402176481, + 4.03634822151 + ], + "libelle_d_acheminement": "MUDAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03634822151, + 43.6402176481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bfcda7f2e2dfd18a28a53aad71dd341ae5ee7eb", + "fields": { + "code_commune_insee": "45087", + "nom_de_la_commune": "CHATILLON SUR LOIRE", + "code_postal": "45360", + "coordonnees_gps": [ + 47.5721313447, + 2.73594191784 + ], + "libelle_d_acheminement": "CHATILLON SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73594191784, + 47.5721313447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "941b2a0d1983d989038c89d20db82e0a19c100da", + "fields": { + "code_commune_insee": "34181", + "nom_de_la_commune": "NEFFIES", + "code_postal": "34320", + "coordonnees_gps": [ + 43.5393423873, + 3.33354409395 + ], + "libelle_d_acheminement": "NEFFIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33354409395, + 43.5393423873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a8dcdf6c3fdd4742fc2fbdef44fd7f1a155a4eb", + "fields": { + "code_commune_insee": "45094", + "nom_de_la_commune": "CHEVRY SOUS LE BIGNON", + "code_postal": "45210", + "coordonnees_gps": [ + 48.145082059, + 2.89381357786 + ], + "libelle_d_acheminement": "CHEVRY SOUS LE BIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89381357786, + 48.145082059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d75e5ebf95c0f8c595b9ec732489e3519c9afec", + "fields": { + "code_commune_insee": "34195", + "nom_de_la_commune": "PEGAIROLLES DE BUEGES", + "code_postal": "34380", + "coordonnees_gps": [ + 43.8051515536, + 3.57590546556 + ], + "libelle_d_acheminement": "PEGAIROLLES DE BUEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57590546556, + 43.8051515536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "500bcb3cf3e60920054f92d9b37d2794a262a17a", + "fields": { + "code_commune_insee": "45096", + "nom_de_la_commune": "LES CHOUX", + "code_postal": "45290", + "coordonnees_gps": [ + 47.787194965, + 2.65608741368 + ], + "libelle_d_acheminement": "LES CHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65608741368, + 47.787194965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a40ca92cb24a815471cfdf0a9725b3cb20e5b817", + "fields": { + "code_commune_insee": "34198", + "nom_de_la_commune": "PEROLS", + "code_postal": "34470", + "coordonnees_gps": [ + 43.5606642689, + 3.95175708518 + ], + "libelle_d_acheminement": "PEROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95175708518, + 43.5606642689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "110b30a6fd79239821da3947c326079f35e27da2", + "fields": { + "code_commune_insee": "45097", + "nom_de_la_commune": "CHUELLES", + "code_postal": "45220", + "coordonnees_gps": [ + 47.9969133671, + 2.96866607719 + ], + "libelle_d_acheminement": "CHUELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96866607719, + 47.9969133671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c02b170405122507d284ed4c0f54123c3f66d286", + "fields": { + "code_commune_insee": "34199", + "nom_de_la_commune": "PEZENAS", + "code_postal": "34120", + "coordonnees_gps": [ + 43.462990168, + 3.41651652125 + ], + "libelle_d_acheminement": "PEZENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41651652125, + 43.462990168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca412c0c4765a9c3a740fec79ccf6db86ed28644", + "fields": { + "code_commune_insee": "45102", + "nom_de_la_commune": "CONFLANS SUR LOING", + "code_postal": "45700", + "coordonnees_gps": [ + 47.9459451483, + 2.77660641899 + ], + "libelle_d_acheminement": "CONFLANS SUR LOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77660641899, + 47.9459451483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3057adfc121190db75bcfc1aa373e62110d9650b", + "fields": { + "code_commune_insee": "34212", + "nom_de_la_commune": "POUJOLS", + "code_postal": "34700", + "coordonnees_gps": [ + 43.7720254249, + 3.3186584195 + ], + "libelle_d_acheminement": "POUJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3186584195, + 43.7720254249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66aaa49f4840259da8c2a83a8ee89bca9e25f071", + "fields": { + "code_commune_insee": "45103", + "nom_de_la_commune": "CORBEILLES", + "code_postal": "45490", + "coordonnees_gps": [ + 48.0745693135, + 2.55961870773 + ], + "libelle_d_acheminement": "CORBEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55961870773, + 48.0745693135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1c41736b40a22a467efd373cdd0d640478d06e9", + "fields": { + "code_commune_insee": "34223", + "nom_de_la_commune": "PUIMISSON", + "code_postal": "34480", + "coordonnees_gps": [ + 43.4378848969, + 3.20792607822 + ], + "libelle_d_acheminement": "PUIMISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20792607822, + 43.4378848969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76b92fb84074aebdd0eb57af4e97d73778d67d80", + "fields": { + "code_commune_insee": "45108", + "nom_de_la_commune": "COULLONS", + "code_postal": "45720", + "coordonnees_gps": [ + 47.6179791467, + 2.50615129884 + ], + "libelle_d_acheminement": "COULLONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50615129884, + 47.6179791467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65cdec6332814b3f7459fa7a3464936402ad10d1", + "fields": { + "code_commune_insee": "34224", + "nom_de_la_commune": "PUISSALICON", + "code_postal": "34480", + "coordonnees_gps": [ + 43.4539009157, + 3.23775688397 + ], + "libelle_d_acheminement": "PUISSALICON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23775688397, + 43.4539009157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3bc2bd2f81d840c69da9317b5f7231f2eaad0d8", + "fields": { + "code_commune_insee": "45109", + "nom_de_la_commune": "COULMIERS", + "code_postal": "45130", + "coordonnees_gps": [ + 47.9319011305, + 1.6588665459 + ], + "libelle_d_acheminement": "COULMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6588665459, + 47.9319011305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7005caa1cbb8473aa77e5f155a31faabdbb4d799", + "fields": { + "code_commune_insee": "34226", + "nom_de_la_commune": "QUARANTE", + "code_postal": "34310", + "coordonnees_gps": [ + 43.3507961482, + 2.980712669 + ], + "libelle_d_acheminement": "QUARANTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.980712669, + 43.3507961482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "820b2676c4f0784ae712c1ad49d4d9d23a332807", + "fields": { + "code_commune_insee": "45116", + "nom_de_la_commune": "CRAVANT", + "code_postal": "45190", + "coordonnees_gps": [ + 47.8334827429, + 1.58096102473 + ], + "libelle_d_acheminement": "CRAVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58096102473, + 47.8334827429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79143293045a914227f3fb1c5ae56999bc2078b7", + "fields": { + "code_commune_insee": "34234", + "nom_de_la_commune": "ROQUESSELS", + "code_postal": "34320", + "coordonnees_gps": [ + 43.5504361002, + 3.22634826627 + ], + "libelle_d_acheminement": "ROQUESSELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22634826627, + 43.5504361002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dfe8bc4029d3ed58e333beb8a2568756ef58c47", + "fields": { + "ligne_5": "TEILLAY ST BENOIT", + "code_commune_insee": "45118", + "libelle_d_acheminement": "CROTTES EN PITHIVERAIS", + "code_postal": "45170", + "nom_de_la_commune": "CROTTES EN PITHIVERAIS", + "coordonnees_gps": [ + 48.1141192289, + 2.06490558208 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06490558208, + 48.1141192289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edb3ce91a6e8b5148b2ee10f32a0cdddd645b226", + "fields": { + "code_commune_insee": "34237", + "nom_de_la_commune": "ROUJAN", + "code_postal": "34320", + "coordonnees_gps": [ + 43.5109460252, + 3.30936586252 + ], + "libelle_d_acheminement": "ROUJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30936586252, + 43.5109460252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3492c586ed34b79dc286315eff42c8f73e5d4cfe", + "fields": { + "code_commune_insee": "45122", + "nom_de_la_commune": "DAMPIERRE EN BURLY", + "code_postal": "45570", + "coordonnees_gps": [ + 47.76127445, + 2.54303804345 + ], + "libelle_d_acheminement": "DAMPIERRE EN BURLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54303804345, + 47.76127445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fad68d3005becb4e2aa8eec5fe913f975ec3265", + "fields": { + "code_commune_insee": "34241", + "nom_de_la_commune": "ST BAUZILLE DE LA SYLVE", + "code_postal": "34230", + "coordonnees_gps": [ + 43.6102378186, + 3.55875643759 + ], + "libelle_d_acheminement": "ST BAUZILLE DE LA SYLVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55875643759, + 43.6102378186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee50f13a193f00843dc3988248aed293a2cd4085", + "fields": { + "code_commune_insee": "45125", + "nom_de_la_commune": "DIMANCHEVILLE", + "code_postal": "45390", + "coordonnees_gps": [ + 48.2388526443, + 2.42400106585 + ], + "libelle_d_acheminement": "DIMANCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42400106585, + 48.2388526443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd498af0d4774b2bd9b801b7ae47c9d01cd0f017", + "fields": { + "code_commune_insee": "34245", + "nom_de_la_commune": "ST CHINIAN", + "code_postal": "34360", + "coordonnees_gps": [ + 43.4211029335, + 2.93138227583 + ], + "libelle_d_acheminement": "ST CHINIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93138227583, + 43.4211029335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d185ba7eb2dd0f69942347b75f99d48137938cfa", + "fields": { + "code_commune_insee": "45136", + "nom_de_la_commune": "ERVAUVILLE", + "code_postal": "45320", + "coordonnees_gps": [ + 48.0942224093, + 2.98276692031 + ], + "libelle_d_acheminement": "ERVAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98276692031, + 48.0942224093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dc1a8f4d5b749e0e4ebf04afa95906542b7ff02", + "fields": { + "code_commune_insee": "34252", + "nom_de_la_commune": "ST ETIENNE ESTRECHOUX", + "code_postal": "34260", + "coordonnees_gps": [ + 43.6605180139, + 3.10431751286 + ], + "libelle_d_acheminement": "ST ETIENNE ESTRECHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10431751286, + 43.6605180139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad4ddc61b3b3e5e4d0aa0b64dcafb22c2c0fa076", + "fields": { + "code_commune_insee": "45138", + "nom_de_la_commune": "ESCRIGNELLES", + "code_postal": "45250", + "coordonnees_gps": [ + 47.7126670746, + 2.81932848772 + ], + "libelle_d_acheminement": "ESCRIGNELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81932848772, + 47.7126670746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fe0caa462bd0adfcd2da0dd5e710c217e8c6b90", + "fields": { + "code_commune_insee": "34253", + "nom_de_la_commune": "ST FELIX DE L HERAS", + "code_postal": "34520", + "coordonnees_gps": [ + 43.8393766952, + 3.31453583361 + ], + "libelle_d_acheminement": "ST FELIX DE L HERAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31453583361, + 43.8393766952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8374a6943d1aabd69695f3ab4c7a4320f5fd03d", + "fields": { + "code_commune_insee": "45139", + "nom_de_la_commune": "ESTOUY", + "code_postal": "45300", + "coordonnees_gps": [ + 48.1896152924, + 2.32216627868 + ], + "libelle_d_acheminement": "ESTOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32216627868, + 48.1896152924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c615644c59c13a97c133dc0816f7305aef1ea0e3", + "fields": { + "code_commune_insee": "34254", + "nom_de_la_commune": "ST FELIX DE LODEZ", + "code_postal": "34725", + "coordonnees_gps": [ + 43.6608409227, + 3.46889642638 + ], + "libelle_d_acheminement": "ST FELIX DE LODEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46889642638, + 43.6608409227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9a2c52e7f67540d607d8d485dc6b63cb42894a7", + "fields": { + "code_commune_insee": "45142", + "nom_de_la_commune": "FAY AUX LOGES", + "code_postal": "45450", + "coordonnees_gps": [ + 47.9326007256, + 2.16025043268 + ], + "libelle_d_acheminement": "FAY AUX LOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16025043268, + 47.9326007256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6d734af867434154cae9e7db789e3fe01676831", + "fields": { + "code_commune_insee": "34257", + "nom_de_la_commune": "ST GENIES DE VARENSAL", + "code_postal": "34610", + "coordonnees_gps": [ + 43.6879655757, + 3.00291654936 + ], + "libelle_d_acheminement": "ST GENIES DE VARENSAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00291654936, + 43.6879655757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61223974b9d8427825e57c2c3216ee50e23fc14f", + "fields": { + "code_commune_insee": "45151", + "nom_de_la_commune": "GAUBERTIN", + "code_postal": "45340", + "coordonnees_gps": [ + 48.1258029948, + 2.42594783192 + ], + "libelle_d_acheminement": "GAUBERTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42594783192, + 48.1258029948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c322cfd7f86feadcbc14ac2b0b71d564858f2f4d", + "fields": { + "code_commune_insee": "34260", + "nom_de_la_commune": "ST GERVAIS SUR MARE", + "code_postal": "34610", + "coordonnees_gps": [ + 43.6671393403, + 3.0497555288 + ], + "libelle_d_acheminement": "ST GERVAIS SUR MARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0497555288, + 43.6671393403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29ffd6d35455f0c0fd4cb27cd4d22d46586bcd9f", + "fields": { + "code_commune_insee": "45153", + "nom_de_la_commune": "GERMIGNY DES PRES", + "code_postal": "45110", + "coordonnees_gps": [ + 47.8392387669, + 2.26614623984 + ], + "libelle_d_acheminement": "GERMIGNY DES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26614623984, + 47.8392387669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6618db5f657aceeee90175cd9f812f2066ad964", + "fields": { + "code_commune_insee": "34266", + "nom_de_la_commune": "ST JEAN DE CUCULLES", + "code_postal": "34270", + "coordonnees_gps": [ + 43.7516512162, + 3.83370653974 + ], + "libelle_d_acheminement": "ST JEAN DE CUCULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83370653974, + 43.7516512162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66e0f78216794a5c8f4d7907b87f35795b647261", + "fields": { + "ligne_5": "SEBOUVILLE", + "code_commune_insee": "45162", + "libelle_d_acheminement": "GUIGNEVILLE", + "code_postal": "45300", + "nom_de_la_commune": "GUIGNEVILLE", + "coordonnees_gps": [ + 48.2157779441, + 2.17390368051 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17390368051, + 48.2157779441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea1834259a2068acd926ae7bb08bcce1f272aaaf", + "fields": { + "code_commune_insee": "34270", + "nom_de_la_commune": "ST JEAN DE VEDAS", + "code_postal": "34430", + "coordonnees_gps": [ + 43.5716282319, + 3.83221847952 + ], + "libelle_d_acheminement": "ST JEAN DE VEDAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83221847952, + 43.5716282319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3fe944407ba7b30a3b950144bec89b90ee28e1d", + "fields": { + "code_commune_insee": "45164", + "nom_de_la_commune": "GUILLY", + "code_postal": "45600", + "coordonnees_gps": [ + 47.8054009428, + 2.27151487858 + ], + "libelle_d_acheminement": "GUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27151487858, + 47.8054009428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9d6b1e061525464efdc78db0f7d1ed33e798d68", + "fields": { + "code_commune_insee": "34280", + "nom_de_la_commune": "ST NAZAIRE DE PEZAN", + "code_postal": "34400", + "coordonnees_gps": [ + 43.6351201941, + 4.11706198292 + ], + "libelle_d_acheminement": "ST NAZAIRE DE PEZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11706198292, + 43.6351201941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41defaa7821daa0bd61eba623f44b6d741d93d46", + "fields": { + "code_commune_insee": "45170", + "nom_de_la_commune": "INTVILLE LA GUETARD", + "code_postal": "45300", + "coordonnees_gps": [ + 48.2546123622, + 2.21608120252 + ], + "libelle_d_acheminement": "INTVILLE LA GUETARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21608120252, + 48.2546123622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61b88c1c55c45d701ad280f1dbdfcaf9f872bf10", + "fields": { + "code_commune_insee": "34286", + "nom_de_la_commune": "ST PRIVAT", + "code_postal": "34700", + "coordonnees_gps": [ + 43.7510304618, + 3.43193440263 + ], + "libelle_d_acheminement": "ST PRIVAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43193440263, + 43.7510304618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92590ace88414f51ebc9c4aece9765b214a23ada", + "fields": { + "code_commune_insee": "45179", + "nom_de_la_commune": "LAILLY EN VAL", + "code_postal": "45740", + "coordonnees_gps": [ + 47.7471091867, + 1.71487513333 + ], + "libelle_d_acheminement": "LAILLY EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71487513333, + 47.7471091867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "269db5daee721ffb50da482fdc49662a775e9c34", + "fields": { + "code_commune_insee": "34292", + "nom_de_la_commune": "SALASC", + "code_postal": "34800", + "coordonnees_gps": [ + 43.6220930985, + 3.31240348008 + ], + "libelle_d_acheminement": "SALASC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31240348008, + 43.6220930985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6270d9755d0bc8c7fa5b5c91cde996cf104631b1", + "fields": { + "code_commune_insee": "45186", + "nom_de_la_commune": "LORCY", + "code_postal": "45490", + "coordonnees_gps": [ + 48.0422457251, + 2.52798759325 + ], + "libelle_d_acheminement": "LORCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52798759325, + 48.0422457251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1acb8885146ef146d96614db08ae2f0f147efd5", + "fields": { + "code_commune_insee": "34293", + "nom_de_la_commune": "LA SALVETAT SUR AGOUT", + "code_postal": "34330", + "coordonnees_gps": [ + 43.6021759228, + 2.68705591152 + ], + "libelle_d_acheminement": "LA SALVETAT SUR AGOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68705591152, + 43.6021759228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e479ad51ab0f0d5f355f75c4add01f2fcd3163d5", + "fields": { + "code_commune_insee": "45187", + "nom_de_la_commune": "LORRIS", + "code_postal": "45260", + "coordonnees_gps": [ + 47.86274799, + 2.49842209081 + ], + "libelle_d_acheminement": "LORRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49842209081, + 47.86274799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "429d9818d5e222725d4d2c6b74c72d88d0ead1a4", + "fields": { + "code_commune_insee": "34294", + "nom_de_la_commune": "SATURARGUES", + "code_postal": "34400", + "coordonnees_gps": [ + 43.7142810482, + 4.11714344824 + ], + "libelle_d_acheminement": "SATURARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11714344824, + 43.7142810482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "920878cbd79298cfea817a7bd6a4638664112bcc", + "fields": { + "code_commune_insee": "45188", + "nom_de_la_commune": "LOURY", + "code_postal": "45470", + "coordonnees_gps": [ + 48.0101727408, + 2.09187881925 + ], + "libelle_d_acheminement": "LOURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09187881925, + 48.0101727408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e4ec160ef34f25bd544110808d3ea0fd36478a2", + "fields": { + "code_commune_insee": "34295", + "nom_de_la_commune": "SAUSSAN", + "code_postal": "34570", + "coordonnees_gps": [ + 43.569013259, + 3.78095911379 + ], + "libelle_d_acheminement": "SAUSSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78095911379, + 43.569013259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d5ebfcdec6aa8cb11a091fc4ef76687b5281599", + "fields": { + "ligne_5": "NANGEVILLE", + "code_commune_insee": "45191", + "libelle_d_acheminement": "LE MALESHERBOIS", + "code_postal": "45330", + "nom_de_la_commune": "LE MALESHERBOIS", + "coordonnees_gps": [ + 48.2894150644, + 2.39799452821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39799452821, + 48.2894150644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6fb0e18792172377dfac531777cd0e5a55b4926", + "fields": { + "code_commune_insee": "34298", + "nom_de_la_commune": "SAUVIAN", + "code_postal": "34410", + "coordonnees_gps": [ + 43.2910373806, + 3.25406479284 + ], + "libelle_d_acheminement": "SAUVIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25406479284, + 43.2910373806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b27940e02348c8c22bc1e6c7e0d9ed3f0c4cec3", + "fields": { + "code_commune_insee": "45197", + "nom_de_la_commune": "MARIGNY LES USAGES", + "code_postal": "45760", + "coordonnees_gps": [ + 47.9586997126, + 2.01335739058 + ], + "libelle_d_acheminement": "MARIGNY LES USAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01335739058, + 47.9586997126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a016f5c245daa60f92bc0f24d404d923b297ed25", + "fields": { + "code_commune_insee": "34301", + "nom_de_la_commune": "SETE", + "code_postal": "34200", + "coordonnees_gps": [ + 43.3917705831, + 3.64705148296 + ], + "libelle_d_acheminement": "SETE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64705148296, + 43.3917705831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1fef1dbcbd839167af2d6697a8990d9c32af99c", + "fields": { + "code_commune_insee": "45198", + "nom_de_la_commune": "MARSAINVILLIERS", + "code_postal": "45300", + "coordonnees_gps": [ + 48.2129131551, + 2.27113030175 + ], + "libelle_d_acheminement": "MARSAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27113030175, + 48.2129131551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97e1f607238e3d40561d8952a3136bfd83428cbe", + "fields": { + "code_commune_insee": "34307", + "nom_de_la_commune": "SUSSARGUES", + "code_postal": "34160", + "coordonnees_gps": [ + 43.7090174126, + 3.99451003779 + ], + "libelle_d_acheminement": "SUSSARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99451003779, + 43.7090174126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57e0587f7766479c7d92c0eb9954c2bf18767cf1", + "fields": { + "code_commune_insee": "45206", + "nom_de_la_commune": "MIGNERES", + "code_postal": "45490", + "coordonnees_gps": [ + 48.0485463347, + 2.62158631692 + ], + "libelle_d_acheminement": "MIGNERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62158631692, + 48.0485463347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fd5256df461afdbd18aa12767396d5a68a7cb3c", + "fields": { + "code_commune_insee": "34316", + "nom_de_la_commune": "USCLAS DU BOSC", + "code_postal": "34700", + "coordonnees_gps": [ + 43.7281811066, + 3.39872803324 + ], + "libelle_d_acheminement": "USCLAS DU BOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39872803324, + 43.7281811066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99954b349eeb47af54d9b5fdce6079e55c744cae", + "fields": { + "code_commune_insee": "45207", + "nom_de_la_commune": "MIGNERETTE", + "code_postal": "45490", + "coordonnees_gps": [ + 48.0611321152, + 2.60460243093 + ], + "libelle_d_acheminement": "MIGNERETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60460243093, + 48.0611321152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa0466abcfda31396907f9835ae81eb106876e2d", + "fields": { + "code_commune_insee": "34318", + "nom_de_la_commune": "VACQUIERES", + "code_postal": "34270", + "coordonnees_gps": [ + 43.828951354, + 3.95059092593 + ], + "libelle_d_acheminement": "VACQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95059092593, + 43.828951354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b0df2071fe29ed80bb65d7dd8dfa9f9d0ec869a", + "fields": { + "code_commune_insee": "45223", + "nom_de_la_commune": "NESPLOY", + "code_postal": "45270", + "coordonnees_gps": [ + 47.9957733046, + 2.36897540988 + ], + "libelle_d_acheminement": "NESPLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36897540988, + 47.9957733046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd7fe63b912efbcf690853f240e14c1e8c9b5053", + "fields": { + "code_commune_insee": "34322", + "nom_de_la_commune": "VALFLAUNES", + "code_postal": "34270", + "coordonnees_gps": [ + 43.8020094105, + 3.86188285063 + ], + "libelle_d_acheminement": "VALFLAUNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86188285063, + 43.8020094105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0e3e8b89fe1bf9030f9ba3a6db6540de9d5640d", + "fields": { + "code_commune_insee": "45224", + "nom_de_la_commune": "NEUVILLE AUX BOIS", + "code_postal": "45170", + "coordonnees_gps": [ + 48.0689002609, + 2.0592389448 + ], + "libelle_d_acheminement": "NEUVILLE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0592389448, + 48.0689002609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0da244fc847c569f59b43cfc95e4bc78ee846e3", + "fields": { + "code_commune_insee": "34325", + "nom_de_la_commune": "VALROS", + "code_postal": "34290", + "coordonnees_gps": [ + 43.419189427, + 3.36141259687 + ], + "libelle_d_acheminement": "VALROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36141259687, + 43.419189427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d4d370c982185ee864c56d90018243cea8833b0", + "fields": { + "code_commune_insee": "45229", + "nom_de_la_commune": "NOGENT SUR VERNISSON", + "code_postal": "45290", + "coordonnees_gps": [ + 47.8386989042, + 2.72939898012 + ], + "libelle_d_acheminement": "NOGENT SUR VERNISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72939898012, + 47.8386989042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90b670fd9d42f400e0d67a2e4798bae2a94eeed5", + "fields": { + "code_commune_insee": "34338", + "nom_de_la_commune": "VILLENEUVETTE", + "code_postal": "34800", + "coordonnees_gps": [ + 43.6102089011, + 3.40077488317 + ], + "libelle_d_acheminement": "VILLENEUVETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40077488317, + 43.6102089011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d38984666bd13bac8aa8df478e2179bad664f3f", + "fields": { + "code_commune_insee": "45232", + "nom_de_la_commune": "OLIVET", + "code_postal": "45160", + "coordonnees_gps": [ + 47.8546997503, + 1.88823884753 + ], + "libelle_d_acheminement": "OLIVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88823884753, + 47.8546997503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f84058bad045e700d04c5ad687754f8c20d69aaa", + "fields": { + "code_commune_insee": "34343", + "nom_de_la_commune": "VIOLS LE FORT", + "code_postal": "34380", + "coordonnees_gps": [ + 43.7367573026, + 3.69220324597 + ], + "libelle_d_acheminement": "VIOLS LE FORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69220324597, + 43.7367573026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "510af0d980267d6240d576c9257b5fb53b87a274", + "fields": { + "code_commune_insee": "45234", + "nom_de_la_commune": "ORLEANS", + "code_postal": "45000", + "coordonnees_gps": [ + 47.8828634214, + 1.91610357477 + ], + "libelle_d_acheminement": "ORLEANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91610357477, + 47.8828634214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b213b837e45624249f81ade098321e1b5d2eed74", + "fields": { + "code_commune_insee": "34344", + "nom_de_la_commune": "LA GRANDE MOTTE", + "code_postal": "34280", + "coordonnees_gps": [ + 43.5685394142, + 4.0758328467 + ], + "libelle_d_acheminement": "LA GRANDE MOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0758328467, + 43.5685394142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc44495adac37ccdfb88a318b1ca5070cf929c86", + "fields": { + "ligne_5": "LA SOURCE", + "code_commune_insee": "45234", + "libelle_d_acheminement": "ORLEANS", + "code_postal": "45100", + "nom_de_la_commune": "ORLEANS", + "coordonnees_gps": [ + 47.8828634214, + 1.91610357477 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91610357477, + 47.8828634214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "401734cdaee3b62fc802bb51e23e250d2a463f80", + "fields": { + "code_commune_insee": "35002", + "nom_de_la_commune": "AMANLIS", + "code_postal": "35150", + "coordonnees_gps": [ + 47.9998215771, + -1.495562097 + ], + "libelle_d_acheminement": "AMANLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.495562097, + 47.9998215771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b09ec3ef6150131a1c6169f6fd92a46e3ba7885", + "fields": { + "code_commune_insee": "45238", + "nom_de_la_commune": "OUSSON SUR LOIRE", + "code_postal": "45250", + "coordonnees_gps": [ + 47.6001760382, + 2.79533560153 + ], + "libelle_d_acheminement": "OUSSON SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79533560153, + 47.6001760382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c0363757dbf42f0489b52c177015da011166b04", + "fields": { + "code_commune_insee": "35003", + "nom_de_la_commune": "ANDOUILLE NEUVILLE", + "code_postal": "35250", + "coordonnees_gps": [ + 48.2975724468, + -1.5958926629 + ], + "libelle_d_acheminement": "ANDOUILLE NEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5958926629, + 48.2975724468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22feab7ec91c43a09e4c7cd2ad143372764ce3e5", + "fields": { + "ligne_5": "ALLAINVILLE EN BEAUCE", + "code_commune_insee": "45240", + "libelle_d_acheminement": "OUTARVILLE", + "code_postal": "45480", + "nom_de_la_commune": "OUTARVILLE", + "coordonnees_gps": [ + 48.2142854596, + 2.02173092617 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02173092617, + 48.2142854596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ebb3113aa489683ef329b3967150a549bfcbba3", + "fields": { + "ligne_5": "ST OUEN LA ROUERIE", + "code_commune_insee": "35004", + "libelle_d_acheminement": "VAL COUESNON", + "code_postal": "35460", + "nom_de_la_commune": "VAL COUESNON", + "coordonnees_gps": [ + 48.4623399244, + -1.47875897631 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47875897631, + 48.4623399244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c991db2dd4539ff9c6e84ee5999253bcd8aac487", + "fields": { + "ligne_5": "TEILLAY LE GAUDIN", + "code_commune_insee": "45240", + "libelle_d_acheminement": "OUTARVILLE", + "code_postal": "45480", + "nom_de_la_commune": "OUTARVILLE", + "coordonnees_gps": [ + 48.2142854596, + 2.02173092617 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02173092617, + 48.2142854596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "318c4fb0e47b795ab884f060b5300615d73a7191", + "fields": { + "code_commune_insee": "35008", + "nom_de_la_commune": "AVAILLES SUR SEICHE", + "code_postal": "35130", + "coordonnees_gps": [ + 47.9580414935, + -1.1853971789 + ], + "libelle_d_acheminement": "AVAILLES SUR SEICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1853971789, + 47.9580414935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6d28ba01dab3924c6c20c36ec879c97c90cd036", + "fields": { + "code_commune_insee": "45253", + "nom_de_la_commune": "PITHIVIERS LE VIEIL", + "code_postal": "45300", + "coordonnees_gps": [ + 48.1732947804, + 2.20648380316 + ], + "libelle_d_acheminement": "PITHIVIERS LE VIEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20648380316, + 48.1732947804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d01918e0932fccba3b3362ad5564438de7eede4", + "fields": { + "code_commune_insee": "35015", + "nom_de_la_commune": "BALAZE", + "code_postal": "35500", + "coordonnees_gps": [ + 48.1777363541, + -1.18302870433 + ], + "libelle_d_acheminement": "BALAZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18302870433, + 48.1777363541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98a526aaa2d3c06f33823760bef6177bd50d8951", + "fields": { + "code_commune_insee": "45259", + "nom_de_la_commune": "QUIERS SUR BEZONDE", + "code_postal": "45270", + "coordonnees_gps": [ + 47.9880213405, + 2.42617062061 + ], + "libelle_d_acheminement": "QUIERS SUR BEZONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42617062061, + 47.9880213405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29ba82d7e91d322ba13d4cda59b9cf05df7130b0", + "fields": { + "code_commune_insee": "35022", + "nom_de_la_commune": "BECHEREL", + "code_postal": "35190", + "coordonnees_gps": [ + 48.2965087434, + -1.9428236566 + ], + "libelle_d_acheminement": "BECHEREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.9428236566, + 48.2965087434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "286b24483c12871d16452d027ac3dab20e02c07e", + "fields": { + "code_commune_insee": "45262", + "nom_de_la_commune": "ROUVRAY STE CROIX", + "code_postal": "45310", + "coordonnees_gps": [ + 48.0566296755, + 1.73556462334 + ], + "libelle_d_acheminement": "ROUVRAY STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73556462334, + 48.0566296755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1b4f5525681fd29ac762c7275dc6a5923be2eca", + "fields": { + "code_commune_insee": "35024", + "nom_de_la_commune": "BETTON", + "code_postal": "35830", + "coordonnees_gps": [ + 48.1812360423, + -1.64589552684 + ], + "libelle_d_acheminement": "BETTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64589552684, + 48.1812360423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ba1f4e1c7ab141eae41d7b6c932c88cffc22619", + "fields": { + "code_commune_insee": "45264", + "nom_de_la_commune": "ROZIERES EN BEAUCE", + "code_postal": "45130", + "coordonnees_gps": [ + 47.9392344638, + 1.70879021438 + ], + "libelle_d_acheminement": "ROZIERES EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70879021438, + 47.9392344638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e7465b24e222980ca87446024c7cdbbd4d84649", + "fields": { + "code_commune_insee": "35028", + "nom_de_la_commune": "BOISTRUDAN", + "code_postal": "35150", + "coordonnees_gps": [ + 47.9757827279, + -1.39686798859 + ], + "libelle_d_acheminement": "BOISTRUDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39686798859, + 47.9757827279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1e13c516fadc8bbccf04b5806adab3c3a04641d", + "fields": { + "code_commune_insee": "45271", + "nom_de_la_commune": "ST BRISSON SUR LOIRE", + "code_postal": "45500", + "coordonnees_gps": [ + 47.6322639103, + 2.67602869119 + ], + "libelle_d_acheminement": "ST BRISSON SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67602869119, + 47.6322639103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f1071b93dc7eb9d65440ef28cf1d94ff37efd8e", + "fields": { + "code_commune_insee": "35033", + "nom_de_la_commune": "BOURG DES COMPTES", + "code_postal": "35890", + "coordonnees_gps": [ + 47.921351774, + -1.72230702011 + ], + "libelle_d_acheminement": "BOURG DES COMPTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72230702011, + 47.921351774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd714ab05dc04ce6ca2c479f1a9cf8d0fbb34971", + "fields": { + "code_commune_insee": "45273", + "nom_de_la_commune": "ST DENIS DE L HOTEL", + "code_postal": "45550", + "coordonnees_gps": [ + 47.8835425588, + 2.15388829188 + ], + "libelle_d_acheminement": "ST DENIS DE L HOTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15388829188, + 47.8835425588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd4eeeeb4ef3308c57f1d1bc2741265ffd496513", + "fields": { + "code_commune_insee": "35040", + "nom_de_la_commune": "BRETEIL", + "code_postal": "35160", + "coordonnees_gps": [ + 48.1381002626, + -1.91036057871 + ], + "libelle_d_acheminement": "BRETEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.91036057871, + 48.1381002626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef54fd60435ab950946a2ba3027c9af6def6effe", + "fields": { + "code_commune_insee": "45276", + "nom_de_la_commune": "ST FIRMIN SUR LOIRE", + "code_postal": "45360", + "coordonnees_gps": [ + 47.6056395298, + 2.69936576002 + ], + "libelle_d_acheminement": "ST FIRMIN SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69936576002, + 47.6056395298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c06dfb431319f121b8174f543d82a0c32769b5d", + "fields": { + "code_commune_insee": "35050", + "nom_de_la_commune": "CARDROC", + "code_postal": "35190", + "coordonnees_gps": [ + 48.2846714834, + -1.89382613494 + ], + "libelle_d_acheminement": "CARDROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89382613494, + 48.2846714834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db537914ae0f567f5136bfd6c9ff4406b427a701", + "fields": { + "code_commune_insee": "45292", + "nom_de_la_commune": "ST MAURICE SUR AVEYRON", + "code_postal": "45230", + "coordonnees_gps": [ + 47.8464241054, + 2.96065663752 + ], + "libelle_d_acheminement": "ST MAURICE SUR AVEYRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96065663752, + 47.8464241054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2f8611dc9a74a357d8705a11d3f2ca564647140", + "fields": { + "code_commune_insee": "35061", + "nom_de_la_commune": "LA CHAPELLE ERBREE", + "code_postal": "35500", + "coordonnees_gps": [ + 48.1402551265, + -1.08972100382 + ], + "libelle_d_acheminement": "LA CHAPELLE ERBREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08972100382, + 48.1402551265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29b93ccf035679c00b3f5d73b02dedbbde4523e2", + "fields": { + "code_commune_insee": "45293", + "nom_de_la_commune": "ST MAURICE SUR FESSARD", + "code_postal": "45700", + "coordonnees_gps": [ + 47.9911796658, + 2.61527422656 + ], + "libelle_d_acheminement": "ST MAURICE SUR FESSARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61527422656, + 47.9911796658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e9f4acbb46aec2a62b65f29b0ece441bab37fcf", + "fields": { + "code_commune_insee": "35088", + "nom_de_la_commune": "CORPS NUDS", + "code_postal": "35150", + "coordonnees_gps": [ + 47.9823871404, + -1.57026704551 + ], + "libelle_d_acheminement": "CORPS NUDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57026704551, + 47.9823871404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5564dca18624e67d12067470477a8c58025721a7", + "fields": { + "ligne_5": "ST LOUP DE GONOIS", + "code_commune_insee": "45307", + "libelle_d_acheminement": "LA SELLE SUR LE BIED", + "code_postal": "45210", + "nom_de_la_commune": "LA SELLE SUR LE BIED", + "coordonnees_gps": [ + 48.0762829727, + 2.88839623055 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88839623055, + 48.0762829727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbdc59f848310b7473718b1d5a81d82f32e8f731", + "fields": { + "code_commune_insee": "35091", + "nom_de_la_commune": "LE CROUAIS", + "code_postal": "35290", + "coordonnees_gps": [ + 48.2095149128, + -2.15053922323 + ], + "libelle_d_acheminement": "LE CROUAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15053922323, + 48.2095149128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5415b524436fe128d65759ae66943a548e39919e", + "fields": { + "code_commune_insee": "45308", + "nom_de_la_commune": "SEMOY", + "code_postal": "45400", + "coordonnees_gps": [ + 47.9380661879, + 1.96315992234 + ], + "libelle_d_acheminement": "SEMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96315992234, + 47.9380661879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac5ef40f2c24d18500368bfd197a988f570ff87b", + "fields": { + "code_commune_insee": "35102", + "nom_de_la_commune": "DROUGES", + "code_postal": "35130", + "coordonnees_gps": [ + 47.9018762772, + -1.26101928892 + ], + "libelle_d_acheminement": "DROUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26101928892, + 47.9018762772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95a67a956eeb3fbb11090ccdd283f96a98c0fb6a", + "fields": { + "code_commune_insee": "45309", + "nom_de_la_commune": "SENNELY", + "code_postal": "45240", + "coordonnees_gps": [ + 47.7015601032, + 2.13332178838 + ], + "libelle_d_acheminement": "SENNELY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13332178838, + 47.7015601032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa939d054e04f2d18aadd1cd0be66f04be682073", + "fields": { + "code_commune_insee": "35106", + "nom_de_la_commune": "ERCE EN LAMEE", + "code_postal": "35620", + "coordonnees_gps": [ + 47.818356677, + -1.58275557873 + ], + "libelle_d_acheminement": "ERCE EN LAMEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58275557873, + 47.818356677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c85cec48d8ff065c048a01338a07abaee9d92ae", + "fields": { + "code_commune_insee": "45313", + "nom_de_la_commune": "SOUGY", + "code_postal": "45410", + "coordonnees_gps": [ + 48.0581126003, + 1.80118276124 + ], + "libelle_d_acheminement": "SOUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80118276124, + 48.0581126003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e3d76c45b6c716734504379ee72a95f4fdebe75", + "fields": { + "code_commune_insee": "35109", + "nom_de_la_commune": "ETRELLES", + "code_postal": "35370", + "coordonnees_gps": [ + 48.0697223278, + -1.21606173712 + ], + "libelle_d_acheminement": "ETRELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21606173712, + 48.0697223278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57059a5a6e0d7c4ddd12f3d02496952e7618ef49", + "fields": { + "code_commune_insee": "45323", + "nom_de_la_commune": "THOU", + "code_postal": "45420", + "coordonnees_gps": [ + 47.580299862, + 2.89635000419 + ], + "libelle_d_acheminement": "THOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89635000419, + 47.580299862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39a5056eb27edab86f5bf5034a94cecc47f82aa0", + "fields": { + "code_commune_insee": "35111", + "nom_de_la_commune": "LE FERRE", + "code_postal": "35420", + "coordonnees_gps": [ + 48.4864153557, + -1.29478720847 + ], + "libelle_d_acheminement": "LE FERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29478720847, + 48.4864153557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19b682af7e6a70932aff10efa47a3a7920027811", + "fields": { + "code_commune_insee": "45324", + "nom_de_la_commune": "TIGY", + "code_postal": "45510", + "coordonnees_gps": [ + 47.7792107424, + 2.18510724975 + ], + "libelle_d_acheminement": "TIGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18510724975, + 47.7792107424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c55bad1a4b831e18cbc24d2139c87912db9a87a0", + "fields": { + "code_commune_insee": "35112", + "nom_de_la_commune": "FLEURIGNE", + "code_postal": "35133", + "coordonnees_gps": [ + 48.3618873947, + -1.11104186777 + ], + "libelle_d_acheminement": "FLEURIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11104186777, + 48.3618873947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1dcff2b183a6bb92202227e22e5d0feec9f21c9", + "fields": { + "code_commune_insee": "45325", + "nom_de_la_commune": "TIVERNON", + "code_postal": "45170", + "coordonnees_gps": [ + 48.1581839443, + 1.93815249902 + ], + "libelle_d_acheminement": "TIVERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93815249902, + 48.1581839443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d48cad8e6335fb812cdbddfe9fc0910883c6edd", + "fields": { + "code_commune_insee": "35115", + "nom_de_la_commune": "FOUGERES", + "code_postal": "35300", + "coordonnees_gps": [ + 48.3524697115, + -1.19431177241 + ], + "libelle_d_acheminement": "FOUGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19431177241, + 48.3524697115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2c6385dbb073a00dab716a1bba513a39d93abf6", + "fields": { + "code_commune_insee": "45332", + "nom_de_la_commune": "VARENNES CHANGY", + "code_postal": "45290", + "coordonnees_gps": [ + 47.8623950177, + 2.6635119696 + ], + "libelle_d_acheminement": "VARENNES CHANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6635119696, + 47.8623950177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddfbae97478d9b920a703ccad94aa1294c71df21", + "fields": { + "code_commune_insee": "35117", + "nom_de_la_commune": "GAEL", + "code_postal": "35290", + "coordonnees_gps": [ + 48.1184219135, + -2.22847304876 + ], + "libelle_d_acheminement": "GAEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.22847304876, + 48.1184219135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c85fd174317613a486d291576623950996bfbf08", + "fields": { + "code_commune_insee": "45341", + "nom_de_la_commune": "VILLENEUVE SUR CONIE", + "code_postal": "45310", + "coordonnees_gps": [ + 48.0476576442, + 1.64874485341 + ], + "libelle_d_acheminement": "VILLENEUVE SUR CONIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64874485341, + 48.0476576442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83176b6ebc2d987d04c06b0927cd52cdf53d96f2", + "fields": { + "code_commune_insee": "35123", + "nom_de_la_commune": "GOVEN", + "code_postal": "35580", + "coordonnees_gps": [ + 48.0094372843, + -1.83854162867 + ], + "libelle_d_acheminement": "GOVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83854162867, + 48.0094372843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6cb896d4fec86541e9582d4e2cfaeb6e40486a0", + "fields": { + "code_commune_insee": "45343", + "nom_de_la_commune": "VILLEVOQUES", + "code_postal": "45700", + "coordonnees_gps": [ + 48.0294754819, + 2.62616957754 + ], + "libelle_d_acheminement": "VILLEVOQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62616957754, + 48.0294754819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92747441108dcbf93f81648d34d49725e932c59e", + "fields": { + "code_commune_insee": "35127", + "nom_de_la_commune": "GUIGNEN", + "code_postal": "35580", + "coordonnees_gps": [ + 47.9235807621, + -1.8619758657 + ], + "libelle_d_acheminement": "GUIGNEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8619758657, + 47.9235807621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4280db004ac9b9f885355660040a19d2dc3c3aba", + "fields": { + "code_commune_insee": "45345", + "nom_de_la_commune": "VIMORY", + "code_postal": "45700", + "coordonnees_gps": [ + 47.9486850817, + 2.67841520293 + ], + "libelle_d_acheminement": "VIMORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67841520293, + 47.9486850817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4640bc6aa0c8ed7821c45d36aa9466c5e505c98d", + "fields": { + "code_commune_insee": "35132", + "nom_de_la_commune": "HIREL", + "code_postal": "35120", + "coordonnees_gps": [ + 48.5948348848, + -1.80915236052 + ], + "libelle_d_acheminement": "HIREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.80915236052, + 48.5948348848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2115bbeca9dcff26b56aef2ef42b9c2cfdbe2122", + "fields": { + "code_commune_insee": "46010", + "nom_de_la_commune": "AUJOLS", + "code_postal": "46090", + "coordonnees_gps": [ + 44.4243818386, + 1.54157592497 + ], + "libelle_d_acheminement": "AUJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54157592497, + 44.4243818386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78c3916161afe327183387e3937c15da68f2e8d7", + "fields": { + "ligne_5": "VILDE LA MARINE", + "code_commune_insee": "35132", + "libelle_d_acheminement": "HIREL", + "code_postal": "35120", + "nom_de_la_commune": "HIREL", + "coordonnees_gps": [ + 48.5948348848, + -1.80915236052 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.80915236052, + 48.5948348848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a199d7afd6c5db8b11ad68f2a43ced1dad469d08", + "fields": { + "code_commune_insee": "46016", + "nom_de_la_commune": "BALADOU", + "code_postal": "46600", + "coordonnees_gps": [ + 44.9240844611, + 1.55512235753 + ], + "libelle_d_acheminement": "BALADOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55512235753, + 44.9240844611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "523c2223af473175f4c3af44b18b7dc4229b2cdc", + "fields": { + "code_commune_insee": "35136", + "nom_de_la_commune": "JANZE", + "code_postal": "35150", + "coordonnees_gps": [ + 47.9428950804, + -1.50038718382 + ], + "libelle_d_acheminement": "JANZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50038718382, + 47.9428950804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34846e2305d9ac373b22d03384168d5ac30a723d", + "fields": { + "code_commune_insee": "46020", + "nom_de_la_commune": "BEAUREGARD", + "code_postal": "46260", + "coordonnees_gps": [ + 44.3524666438, + 1.77958568726 + ], + "libelle_d_acheminement": "BEAUREGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77958568726, + 44.3524666438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90bd67055ad7963bdc8591d56e12043ad3944e7c", + "fields": { + "code_commune_insee": "35141", + "nom_de_la_commune": "LANDAVRAN", + "code_postal": "35450", + "coordonnees_gps": [ + 48.1608061542, + -1.28487259488 + ], + "libelle_d_acheminement": "LANDAVRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28487259488, + 48.1608061542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "604656cb4535771a3b64b5e513091d9a18657d94", + "fields": { + "code_commune_insee": "46022", + "nom_de_la_commune": "BELAYE", + "code_postal": "46140", + "coordonnees_gps": [ + 44.4513136237, + 1.18975972414 + ], + "libelle_d_acheminement": "BELAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18975972414, + 44.4513136237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5c48e152308993e495be73aab026a18b8353776", + "fields": { + "code_commune_insee": "35142", + "nom_de_la_commune": "LANDEAN", + "code_postal": "35133", + "coordonnees_gps": [ + 48.4131956969, + -1.14760395074 + ], + "libelle_d_acheminement": "LANDEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14760395074, + 48.4131956969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeda4b862940ed30d0a0ad762ddb9f75e8162762", + "fields": { + "code_commune_insee": "46024", + "nom_de_la_commune": "BELMONT BRETENOUX", + "code_postal": "46130", + "coordonnees_gps": [ + 44.8887906556, + 1.88174957113 + ], + "libelle_d_acheminement": "BELMONT BRETENOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88174957113, + 44.8887906556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac3c8a09e5f413effd5067ae9a7bfe065b034b7a", + "fields": { + "code_commune_insee": "35144", + "nom_de_la_commune": "LANGAN", + "code_postal": "35850", + "coordonnees_gps": [ + 48.2363756072, + -1.84565830249 + ], + "libelle_d_acheminement": "LANGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84565830249, + 48.2363756072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b669fd504232fc3d602e6956acd4131d08e41f22", + "fields": { + "code_commune_insee": "46031", + "nom_de_la_commune": "BLARS", + "code_postal": "46330", + "coordonnees_gps": [ + 44.5750441827, + 1.72683431794 + ], + "libelle_d_acheminement": "BLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72683431794, + 44.5750441827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "586ae74b7502885b0bb8a9a92599d157a025a61d", + "fields": { + "code_commune_insee": "35146", + "nom_de_la_commune": "LANGOUET", + "code_postal": "35630", + "coordonnees_gps": [ + 48.2549305209, + -1.80881548185 + ], + "libelle_d_acheminement": "LANGOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.80881548185, + 48.2549305209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec8429910ea97f21e3444274f68f7c86980cf5e5", + "fields": { + "ligne_5": "SAUX", + "code_commune_insee": "46033", + "libelle_d_acheminement": "PORTE DU QUERCY", + "code_postal": "46800", + "nom_de_la_commune": "PORTE DU QUERCY", + "coordonnees_gps": [ + 44.4210869463, + 1.1472613313 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1472613313, + 44.4210869463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "398bd681f630e87de166c8064d6fd1cb7659a7e4", + "fields": { + "code_commune_insee": "35149", + "nom_de_la_commune": "LASSY", + "code_postal": "35580", + "coordonnees_gps": [ + 47.9717256935, + -1.86370504959 + ], + "libelle_d_acheminement": "LASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.86370504959, + 47.9717256935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0e6b20b7fbca50f8f5e6e53f667ca6d270ddd94", + "fields": { + "ligne_5": "ST MATRE", + "code_commune_insee": "46033", + "libelle_d_acheminement": "PORTE DU QUERCY", + "code_postal": "46800", + "nom_de_la_commune": "PORTE DU QUERCY", + "coordonnees_gps": [ + 44.4210869463, + 1.1472613313 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1472613313, + 44.4210869463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f356f7b4a168b9947e9df453c49e165df36e2fe7", + "fields": { + "code_commune_insee": "35150", + "nom_de_la_commune": "LECOUSSE", + "code_postal": "35133", + "coordonnees_gps": [ + 48.3600018318, + -1.22059471096 + ], + "libelle_d_acheminement": "LECOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22059471096, + 48.3600018318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "258b5890a76d696745ad05266abed6463e9ed512", + "fields": { + "code_commune_insee": "46039", + "nom_de_la_commune": "BRENGUES", + "code_postal": "46320", + "coordonnees_gps": [ + 44.5785357536, + 1.83285932775 + ], + "libelle_d_acheminement": "BRENGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83285932775, + 44.5785357536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35b2c9db87b683ee40376aee6a4639fac5b1d480", + "fields": { + "code_commune_insee": "35151", + "nom_de_la_commune": "LIEURON", + "code_postal": "35550", + "coordonnees_gps": [ + 47.851789688, + -1.92917231951 + ], + "libelle_d_acheminement": "LIEURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92917231951, + 47.851789688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db3eff0225a341868f6f34f70aabae957e9712d0", + "fields": { + "code_commune_insee": "46040", + "nom_de_la_commune": "CABRERETS", + "code_postal": "46330", + "coordonnees_gps": [ + 44.5167459006, + 1.6198024468 + ], + "libelle_d_acheminement": "CABRERETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6198024468, + 44.5167459006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14eca5c3b9e3bf634d58de65279d67af438a664d", + "fields": { + "code_commune_insee": "35153", + "nom_de_la_commune": "LILLEMER", + "code_postal": "35111", + "coordonnees_gps": [ + 48.5707435004, + -1.85549449087 + ], + "libelle_d_acheminement": "LILLEMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.85549449087, + 48.5707435004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3596c0872bd6ea68faf5e50ee80fb3e129ddc1c", + "fields": { + "code_commune_insee": "46049", + "nom_de_la_commune": "CALVIGNAC", + "code_postal": "46160", + "coordonnees_gps": [ + 44.4491098487, + 1.78767969019 + ], + "libelle_d_acheminement": "CALVIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78767969019, + 44.4491098487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2e8696c8a757d37911bb29467c9d0a8167f93b4", + "fields": { + "code_commune_insee": "35157", + "nom_de_la_commune": "LE LOROUX", + "code_postal": "35133", + "coordonnees_gps": [ + 48.3948985787, + -1.0831112937 + ], + "libelle_d_acheminement": "LE LOROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0831112937, + 48.3948985787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c99703be5bbe7fc26459d8ee6f6780e98541f08", + "fields": { + "code_commune_insee": "46055", + "nom_de_la_commune": "CAPDENAC", + "code_postal": "46100", + "coordonnees_gps": [ + 44.5849536866, + 2.06705309524 + ], + "libelle_d_acheminement": "CAPDENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06705309524, + 44.5849536866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfcb5c3538e100030636fdfacb564e167264ad06", + "fields": { + "ligne_5": "LUITRE", + "code_commune_insee": "35163", + "libelle_d_acheminement": "LUITRE DOMPIERRE", + "code_postal": "35133", + "nom_de_la_commune": "LUITRE DOMPIERRE", + "coordonnees_gps": [ + 48.293087363, + -1.12955612436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12955612436, + 48.293087363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f551c52a5df3e4826e6b0701ed21e54df77fa58f", + "fields": { + "code_commune_insee": "46056", + "nom_de_la_commune": "CARAYAC", + "code_postal": "46160", + "coordonnees_gps": [ + 44.5413491991, + 1.92274875489 + ], + "libelle_d_acheminement": "CARAYAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92274875489, + 44.5413491991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "798fa9d555084b3d76fd3b815ca8161cc523476f", + "fields": { + "ligne_5": "DOMPIERRE DU CHEMIN", + "code_commune_insee": "35163", + "libelle_d_acheminement": "LUITRE DOMPIERRE", + "code_postal": "35210", + "nom_de_la_commune": "LUITRE DOMPIERRE", + "coordonnees_gps": [ + 48.293087363, + -1.12955612436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12955612436, + 48.293087363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a37a1d81d1e644eb3bec400097361582f4e06ab0", + "fields": { + "code_commune_insee": "46062", + "nom_de_la_commune": "CASTELFRANC", + "code_postal": "46140", + "coordonnees_gps": [ + 44.5046854945, + 1.22357367692 + ], + "libelle_d_acheminement": "CASTELFRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22357367692, + 44.5046854945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f4b4003786b2a0b142b0d024ff58a2b860a2fe7", + "fields": { + "code_commune_insee": "35165", + "nom_de_la_commune": "MARCILLE ROBERT", + "code_postal": "35240", + "coordonnees_gps": [ + 47.9584716788, + -1.35356162459 + ], + "libelle_d_acheminement": "MARCILLE ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35356162459, + 47.9584716788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bb35adbc4e11daca27934b6936950b24cf93d7a", + "fields": { + "ligne_5": "STE ALAUZIE", + "code_commune_insee": "46063", + "libelle_d_acheminement": "CASTELNAU MONTRATIER STE ALAUZIE", + "code_postal": "46170", + "nom_de_la_commune": "CASTELNAU MONTRATIER STE ALAUZIE", + "coordonnees_gps": [ + 44.2618964554, + 1.34787377419 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34787377419, + 44.2618964554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "311cfd56b38d3688a6765c5807ad60fe82cc0682", + "fields": { + "code_commune_insee": "35167", + "nom_de_la_commune": "MARTIGNE FERCHAUD", + "code_postal": "35640", + "coordonnees_gps": [ + 47.8281952315, + -1.32808258577 + ], + "libelle_d_acheminement": "MARTIGNE FERCHAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32808258577, + 47.8281952315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d4bab3f4d3588ef1e6d04c933e089072febbc14", + "fields": { + "code_commune_insee": "46064", + "nom_de_la_commune": "CATUS", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5584146549, + 1.34151024683 + ], + "libelle_d_acheminement": "CATUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34151024683, + 44.5584146549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "863236b3cfa287a7100b276ddd3531827bfd6688", + "fields": { + "ligne_5": "MAURE DE BRETAGNE", + "code_commune_insee": "35168", + "libelle_d_acheminement": "VAL D ANAST", + "code_postal": "35330", + "nom_de_la_commune": "VAL D ANAST", + "coordonnees_gps": [ + 47.8971012974, + -1.99867854689 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.99867854689, + 47.8971012974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07f5db1b3fb666e07ce9253f27aa9b700dc2c148", + "fields": { + "code_commune_insee": "46065", + "nom_de_la_commune": "CAVAGNAC", + "code_postal": "46110", + "coordonnees_gps": [ + 45.0155853706, + 1.63895264848 + ], + "libelle_d_acheminement": "CAVAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63895264848, + 45.0155853706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22bf1c9962893716ae683cfa5921205e3267b033", + "fields": { + "code_commune_insee": "35170", + "nom_de_la_commune": "MECE", + "code_postal": "35450", + "coordonnees_gps": [ + 48.2407410676, + -1.28545546756 + ], + "libelle_d_acheminement": "MECE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28545546756, + 48.2407410676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b231aa2369c4f1caf2721116001b0ebca8627e8", + "fields": { + "code_commune_insee": "46069", + "nom_de_la_commune": "CEZAC", + "code_postal": "46170", + "coordonnees_gps": [ + 44.3482882762, + 1.34038736361 + ], + "libelle_d_acheminement": "CEZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34038736361, + 44.3482882762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e69a4f6bcb961ca5ac6cfb7d63055d7f051ea14", + "fields": { + "code_commune_insee": "35171", + "nom_de_la_commune": "MEDREAC", + "code_postal": "35360", + "coordonnees_gps": [ + 48.2612561283, + -2.06133339808 + ], + "libelle_d_acheminement": "MEDREAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06133339808, + 48.2612561283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1dba66b11f3d0ad6a97d97eb6d866ee511149f2f", + "fields": { + "code_commune_insee": "46079", + "nom_de_la_commune": "CRAS", + "code_postal": "46360", + "coordonnees_gps": [ + 44.5567067306, + 1.54091897332 + ], + "libelle_d_acheminement": "CRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54091897332, + 44.5567067306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a72539e324c73ea302467a8e2c07b2d3afb83f8", + "fields": { + "code_commune_insee": "35174", + "nom_de_la_commune": "MELLE", + "code_postal": "35420", + "coordonnees_gps": [ + 48.4848259494, + -1.19126091075 + ], + "libelle_d_acheminement": "MELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19126091075, + 48.4848259494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2956bdfe7adec366a6fd33c5da9aa41a423a77f0", + "fields": { + "ligne_5": "CRESSENSAC", + "code_commune_insee": "46083", + "libelle_d_acheminement": "CRESSENSAC SARRAZAC", + "code_postal": "46600", + "nom_de_la_commune": "CRESSENSAC SARRAZAC", + "coordonnees_gps": [ + 45.0196029129, + 1.52229424789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52229424789, + 45.0196029129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96002a8f69d8f701f0e1dcdb2efc7951d31e5cd0", + "fields": { + "ligne_5": "ST M HERVON", + "code_commune_insee": "35184", + "libelle_d_acheminement": "MONTAUBAN DE BRETAGNE", + "code_postal": "35360", + "nom_de_la_commune": "MONTAUBAN DE BRETAGNE", + "coordonnees_gps": [ + 48.2028996948, + -2.06476180878 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06476180878, + 48.2028996948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7e2039f7b2c833482fbb14593ca34f93c399360", + "fields": { + "ligne_5": "SARRAZAC", + "code_commune_insee": "46083", + "libelle_d_acheminement": "CRESSENSAC SARRAZAC", + "code_postal": "46600", + "nom_de_la_commune": "CRESSENSAC SARRAZAC", + "coordonnees_gps": [ + 45.0196029129, + 1.52229424789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52229424789, + 45.0196029129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0818d2b6fd1dccdb10f1e43c7282c7f88e015901", + "fields": { + "code_commune_insee": "35186", + "nom_de_la_commune": "MONT DOL", + "code_postal": "35120", + "coordonnees_gps": [ + 48.5706528755, + -1.75854747175 + ], + "libelle_d_acheminement": "MONT DOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.75854747175, + 48.5706528755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "156424850119185a333e02154c36b3a6750bc9fb", + "fields": { + "code_commune_insee": "46084", + "nom_de_la_commune": "CREYSSE", + "code_postal": "46600", + "coordonnees_gps": [ + 44.8990704572, + 1.59459247498 + ], + "libelle_d_acheminement": "CREYSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59459247498, + 44.8990704572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "515c2032ff4a3a0bf4197f7deb0bb8a331bb6eae", + "fields": { + "code_commune_insee": "35189", + "nom_de_la_commune": "MONTGERMONT", + "code_postal": "35760", + "coordonnees_gps": [ + 48.1538376773, + -1.71729477816 + ], + "libelle_d_acheminement": "MONTGERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71729477816, + 48.1538376773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cff009c3dacefa48934c386bd9ea4bd52c99be3", + "fields": { + "code_commune_insee": "46089", + "nom_de_la_commune": "DURAVEL", + "code_postal": "46700", + "coordonnees_gps": [ + 44.5165803218, + 1.08355706377 + ], + "libelle_d_acheminement": "DURAVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08355706377, + 44.5165803218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26eae3c4529c2dac90d032d4b3fd9a3c5a67f2c2", + "fields": { + "code_commune_insee": "35193", + "nom_de_la_commune": "MONTREUIL LE GAST", + "code_postal": "35520", + "coordonnees_gps": [ + 48.2442583442, + -1.72080742537 + ], + "libelle_d_acheminement": "MONTREUIL LE GAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72080742537, + 48.2442583442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3415c882525741eaec823ffeb4093fdc2baa2903", + "fields": { + "code_commune_insee": "46091", + "nom_de_la_commune": "ESCAMPS", + "code_postal": "46230", + "coordonnees_gps": [ + 44.3645701478, + 1.61954720229 + ], + "libelle_d_acheminement": "ESCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61954720229, + 44.3645701478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b3bbbb479c7ab0aa49364b50f0f02367a7b7bce", + "fields": { + "code_commune_insee": "35196", + "nom_de_la_commune": "MORDELLES", + "code_postal": "35310", + "coordonnees_gps": [ + 48.0857602983, + -1.84210731238 + ], + "libelle_d_acheminement": "MORDELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84210731238, + 48.0857602983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b59ad2414f0c59f6d27bcb5af8ff31a3f027c27", + "fields": { + "code_commune_insee": "46093", + "nom_de_la_commune": "ESPAGNAC STE EULALIE", + "code_postal": "46320", + "coordonnees_gps": [ + 44.5924781077, + 1.86121136331 + ], + "libelle_d_acheminement": "ESPAGNAC STE EULALIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86121136331, + 44.5924781077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9192f68e17bd7a9f1d490dbfe6c47b4712af492", + "fields": { + "code_commune_insee": "35204", + "nom_de_la_commune": "NOUVOITOU", + "code_postal": "35410", + "coordonnees_gps": [ + 48.0299058856, + -1.55180159639 + ], + "libelle_d_acheminement": "NOUVOITOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55180159639, + 48.0299058856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e7f6a6d8e6dea96046768b4da378f635709de3a", + "fields": { + "code_commune_insee": "46095", + "nom_de_la_commune": "ESPERE", + "code_postal": "46090", + "coordonnees_gps": [ + 44.5141184572, + 1.37059320975 + ], + "libelle_d_acheminement": "ESPERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37059320975, + 44.5141184572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e96f43cc8874a4ea927fc5f9f78b881a52d8e38", + "fields": { + "code_commune_insee": "35211", + "nom_de_la_commune": "PAIMPONT", + "code_postal": "35380", + "coordonnees_gps": [ + 48.030192406, + -2.17342058709 + ], + "libelle_d_acheminement": "PAIMPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.17342058709, + 48.030192406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd233e01d9a2d805027b885038b66e786f6a43ff", + "fields": { + "code_commune_insee": "46098", + "nom_de_la_commune": "FAJOLES", + "code_postal": "46300", + "coordonnees_gps": [ + 44.8070487445, + 1.38268887877 + ], + "libelle_d_acheminement": "FAJOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38268887877, + 44.8070487445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d188c164b15679fc26ff1671a70c8de9408799a0", + "fields": { + "code_commune_insee": "35217", + "nom_de_la_commune": "LE PERTRE", + "code_postal": "35370", + "coordonnees_gps": [ + 48.0341523357, + -1.05602216053 + ], + "libelle_d_acheminement": "LE PERTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05602216053, + 48.0341523357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbd9cf2150a2d5f3eea9a72bff1826a254ae1ae0", + "fields": { + "code_commune_insee": "46105", + "nom_de_la_commune": "FLAUJAC POUJOLS", + "code_postal": "46090", + "coordonnees_gps": [ + 44.4105069107, + 1.49806736819 + ], + "libelle_d_acheminement": "FLAUJAC POUJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49806736819, + 44.4105069107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec8f586210cb5d5b1521edfe8e3af9adea33dce3", + "fields": { + "code_commune_insee": "35218", + "nom_de_la_commune": "LE PETIT FOUGERAY", + "code_postal": "35320", + "coordonnees_gps": [ + 47.9280508952, + -1.61613769556 + ], + "libelle_d_acheminement": "LE PETIT FOUGERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61613769556, + 47.9280508952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06e594f3a0b85f98e642409f0a97d50997ed1164", + "fields": { + "code_commune_insee": "46106", + "nom_de_la_commune": "FLOIRAC", + "code_postal": "46600", + "coordonnees_gps": [ + 44.9059208514, + 1.67151833797 + ], + "libelle_d_acheminement": "FLOIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67151833797, + 44.9059208514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1805fd090a61eba73b599b8b80ccdeabb520f055", + "fields": { + "ligne_5": "CHANCE", + "code_commune_insee": "35220", + "libelle_d_acheminement": "PIRE CHANCE", + "code_postal": "35680", + "nom_de_la_commune": "PIRE CHANCE", + "coordonnees_gps": [ + 48.0111877546, + -1.42837195377 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42837195377, + 48.0111877546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "476e057a9a2db132fe1012a68ff4c733684b2d48", + "fields": { + "code_commune_insee": "46113", + "nom_de_la_commune": "FRAYSSINET", + "code_postal": "46310", + "coordonnees_gps": [ + 44.6491132224, + 1.48577844538 + ], + "libelle_d_acheminement": "FRAYSSINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48577844538, + 44.6491132224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ee7c5e650a775662e6abc741925086181b22ad5", + "fields": { + "ligne_5": "LE CHATELLIER", + "code_commune_insee": "35221", + "libelle_d_acheminement": "PLECHATEL", + "code_postal": "35470", + "nom_de_la_commune": "PLECHATEL", + "coordonnees_gps": [ + 47.8751941838, + -1.73375846531 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73375846531, + 47.8751941838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13d752ef46b5bdbb3d95a5b44f8f75150f49db99", + "fields": { + "code_commune_insee": "46118", + "nom_de_la_commune": "GIGNAC", + "code_postal": "46600", + "coordonnees_gps": [ + 44.9899523314, + 1.46272754104 + ], + "libelle_d_acheminement": "GIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46272754104, + 44.9899523314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7211f0f1705a5d02bdf57b42b475e3be8f9821d6", + "fields": { + "code_commune_insee": "35223", + "nom_de_la_commune": "PLELAN LE GRAND", + "code_postal": "35380", + "coordonnees_gps": [ + 47.9968736139, + -2.07990195207 + ], + "libelle_d_acheminement": "PLELAN LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.07990195207, + 47.9968736139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcd2ada0f394e923976b0983997f0d1a0f6e1dc4", + "fields": { + "code_commune_insee": "46128", + "nom_de_la_commune": "GRAMAT", + "code_postal": "46500", + "coordonnees_gps": [ + 44.7635603644, + 1.71620459363 + ], + "libelle_d_acheminement": "GRAMAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71620459363, + 44.7635603644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4d1df1961b9a5bace589005fcf4ac3b74fd8781", + "fields": { + "code_commune_insee": "35232", + "nom_de_la_commune": "PRINCE", + "code_postal": "35210", + "coordonnees_gps": [ + 48.2370987257, + -1.10577928863 + ], + "libelle_d_acheminement": "PRINCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10577928863, + 48.2370987257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08f53d4942b40fbfb324490160a87cf83a66948f", + "fields": { + "code_commune_insee": "46139", + "nom_de_la_commune": "LABATHUDE", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7362766747, + 1.98534615992 + ], + "libelle_d_acheminement": "LABATHUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98534615992, + 44.7362766747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15e830d8a9d51f4185c0f94735bf7743bb53b8a1", + "fields": { + "code_commune_insee": "35235", + "nom_de_la_commune": "RANNEE", + "code_postal": "35130", + "coordonnees_gps": [ + 47.9006592126, + -1.22652975633 + ], + "libelle_d_acheminement": "RANNEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22652975633, + 47.9006592126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a49d603915831aad6ca9ed121b960b6208be740", + "fields": { + "code_commune_insee": "46142", + "nom_de_la_commune": "LACAPELLE CABANAC", + "code_postal": "46700", + "coordonnees_gps": [ + 44.4729332661, + 1.07281848621 + ], + "libelle_d_acheminement": "LACAPELLE CABANAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07281848621, + 44.4729332661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e2e63b254bdf4b2a2e9d741648e1ac958b9d45e", + "fields": { + "code_commune_insee": "35236", + "nom_de_la_commune": "REDON", + "code_postal": "35600", + "coordonnees_gps": [ + 47.6609734327, + -2.08008568692 + ], + "libelle_d_acheminement": "REDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.08008568692, + 47.6609734327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74713a4f42ef3d7596b7ce386732f2b9a38d4729", + "fields": { + "code_commune_insee": "46146", + "nom_de_la_commune": "LADIRAT", + "code_postal": "46400", + "coordonnees_gps": [ + 44.8212245702, + 1.96821823356 + ], + "libelle_d_acheminement": "LADIRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96821823356, + 44.8212245702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2917c0ee5e5d4d4807c3ec184fd1a24e774baa1", + "fields": { + "code_commune_insee": "35238", + "nom_de_la_commune": "RENNES", + "code_postal": "35200", + "coordonnees_gps": [ + 48.1119791219, + -1.68186449144 + ], + "libelle_d_acheminement": "RENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68186449144, + 48.1119791219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aa7f07df75959f141f4128214e43ab8d375ea93", + "fields": { + "code_commune_insee": "46148", + "nom_de_la_commune": "LALBENQUE", + "code_postal": "46230", + "coordonnees_gps": [ + 44.3330164253, + 1.56498727825 + ], + "libelle_d_acheminement": "LALBENQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56498727825, + 44.3330164253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52e2a99eb3d4310a0fea308df8db85e955e1a3b7", + "fields": { + "code_commune_insee": "35240", + "nom_de_la_commune": "LE RHEU", + "code_postal": "35650", + "coordonnees_gps": [ + 48.097397419, + -1.78149989185 + ], + "libelle_d_acheminement": "LE RHEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.78149989185, + 48.097397419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb2c4642e54f97d6f493a96edd09d92debf8b16e", + "fields": { + "code_commune_insee": "46154", + "nom_de_la_commune": "LARAMIERE", + "code_postal": "46260", + "coordonnees_gps": [ + 44.359541732, + 1.87031104921 + ], + "libelle_d_acheminement": "LARAMIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87031104921, + 44.359541732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e78d6bdcd0f4b0ef8e69108b2bb10f8710129196", + "fields": { + "code_commune_insee": "35242", + "nom_de_la_commune": "RIMOU", + "code_postal": "35560", + "coordonnees_gps": [ + 48.3879829755, + -1.52823061249 + ], + "libelle_d_acheminement": "RIMOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52823061249, + 48.3879829755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "265f74f699d8a4696cbdf7f1d28fcf01e3604675", + "fields": { + "code_commune_insee": "46163", + "nom_de_la_commune": "LAVAL DE CERE", + "code_postal": "46130", + "coordonnees_gps": [ + 44.9447136022, + 1.93517453774 + ], + "libelle_d_acheminement": "LAVAL DE CERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93517453774, + 44.9447136022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b9c0a98537ebea24fe85377557b7ee152014452", + "fields": { + "code_commune_insee": "35251", + "nom_de_la_commune": "ST AUBIN D AUBIGNE", + "code_postal": "35250", + "coordonnees_gps": [ + 48.2620229996, + -1.60028441082 + ], + "libelle_d_acheminement": "ST AUBIN D AUBIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60028441082, + 48.2620229996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccee9027f421564947d7b262cb1b19a137e305d5", + "fields": { + "code_commune_insee": "46164", + "nom_de_la_commune": "LAVERCANTIERE", + "code_postal": "46340", + "coordonnees_gps": [ + 44.6271991011, + 1.3231090399 + ], + "libelle_d_acheminement": "LAVERCANTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3231090399, + 44.6271991011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3af92f92ff3d9d534c12d546b88fda416f40fe1", + "fields": { + "code_commune_insee": "35256", + "nom_de_la_commune": "ST BRIAC SUR MER", + "code_postal": "35800", + "coordonnees_gps": [ + 48.6163388225, + -2.12358766004 + ], + "libelle_d_acheminement": "ST BRIAC SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.12358766004, + 48.6163388225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f609220b1fce17c3fad51eadf9378d2604e2778f", + "fields": { + "code_commune_insee": "46170", + "nom_de_la_commune": "LEYME", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7838029634, + 1.89700443992 + ], + "libelle_d_acheminement": "LEYME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89700443992, + 44.7838029634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7479ea2cb665c05688fc38089286f316b4038cce", + "fields": { + "ligne_5": "ST BRICE EN COGLES", + "code_commune_insee": "35257", + "libelle_d_acheminement": "MAEN ROCH", + "code_postal": "35460", + "nom_de_la_commune": "MAEN ROCH", + "coordonnees_gps": [ + 48.4132416625, + -1.3677414096 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3677414096, + 48.4132416625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36d6cd5097715ba445b6369e54388ee5da392794", + "fields": { + "code_commune_insee": "46182", + "nom_de_la_commune": "LUZECH", + "code_postal": "46140", + "coordonnees_gps": [ + 44.4857575598, + 1.27596849228 + ], + "libelle_d_acheminement": "LUZECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27596849228, + 44.4857575598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a40faf6ef7b731f2e9cf7f36691a54619b209580", + "fields": { + "code_commune_insee": "35263", + "nom_de_la_commune": "ST COULOMB", + "code_postal": "35350", + "coordonnees_gps": [ + 48.677369423, + -1.92087004371 + ], + "libelle_d_acheminement": "ST COULOMB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92087004371, + 48.677369423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee98cc87aa487f877b9fb0f31e1f988ce10e8b76", + "fields": { + "code_commune_insee": "46185", + "nom_de_la_commune": "MARTEL", + "code_postal": "46600", + "coordonnees_gps": [ + 44.9401536689, + 1.60734355344 + ], + "libelle_d_acheminement": "MARTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60734355344, + 44.9401536689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb7efb77ceb15d48adda1de4537b98a5b25fcba8", + "fields": { + "code_commune_insee": "35266", + "nom_de_la_commune": "ST ERBLON", + "code_postal": "35230", + "coordonnees_gps": [ + 48.019118287, + -1.64173794803 + ], + "libelle_d_acheminement": "ST ERBLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64173794803, + 48.019118287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cf08495a9283c8d758a6c536d86a478f11dfb8b", + "fields": { + "code_commune_insee": "46186", + "nom_de_la_commune": "MASCLAT", + "code_postal": "46350", + "coordonnees_gps": [ + 44.8326739925, + 1.38072033414 + ], + "libelle_d_acheminement": "MASCLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38072033414, + 44.8326739925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96ee3588793f45bf2c661471243afbf7535047c1", + "fields": { + "code_commune_insee": "35270", + "nom_de_la_commune": "ST GEORGES DE GREHAIGNE", + "code_postal": "35610", + "coordonnees_gps": [ + 48.5792508588, + -1.54914551771 + ], + "libelle_d_acheminement": "ST GEORGES DE GREHAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54914551771, + 48.5792508588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72c08762e04078b2316d264d6546a3dc66c193a2", + "fields": { + "code_commune_insee": "46189", + "nom_de_la_commune": "MAYRINHAC LENTOUR", + "code_postal": "46500", + "coordonnees_gps": [ + 44.8130239525, + 1.80546272438 + ], + "libelle_d_acheminement": "MAYRINHAC LENTOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80546272438, + 44.8130239525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7eb3c16a7208d38859a65a4ddc6b8bbe75e6f20", + "fields": { + "code_commune_insee": "35272", + "nom_de_la_commune": "ST GERMAIN DU PINEL", + "code_postal": "35370", + "coordonnees_gps": [ + 48.0050253994, + -1.17262707343 + ], + "libelle_d_acheminement": "ST GERMAIN DU PINEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17262707343, + 48.0050253994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07c5cd9435e5947e51e05f060937d76f3cf9651c", + "fields": { + "code_commune_insee": "46193", + "nom_de_la_commune": "MIERS", + "code_postal": "46500", + "coordonnees_gps": [ + 44.8603418758, + 1.70422523019 + ], + "libelle_d_acheminement": "MIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70422523019, + 44.8603418758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f25d46658833bec23e4761fb9d76e77b688ad1e8", + "fields": { + "code_commune_insee": "35276", + "nom_de_la_commune": "ST GONDRAN", + "code_postal": "35630", + "coordonnees_gps": [ + 48.2682672284, + -1.8250126371 + ], + "libelle_d_acheminement": "ST GONDRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8250126371, + 48.2682672284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "958b468379e924c8e1b5c635c244cf436bb1addc", + "fields": { + "code_commune_insee": "46194", + "nom_de_la_commune": "MILHAC", + "code_postal": "46300", + "coordonnees_gps": [ + 44.7967572097, + 1.34841422414 + ], + "libelle_d_acheminement": "MILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34841422414, + 44.7967572097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b69b061553b5adf04be876ccb5c15d9a514b0026", + "fields": { + "code_commune_insee": "35281", + "nom_de_la_commune": "ST JACQUES DE LA LANDE", + "code_postal": "35136", + "coordonnees_gps": [ + 48.0755625884, + -1.72405381322 + ], + "libelle_d_acheminement": "ST JACQUES DE LA LANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72405381322, + 48.0755625884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3d27b1e86d60964113356305d242621a8d82102", + "fields": { + "code_commune_insee": "46203", + "nom_de_la_commune": "MONTET ET BOUXAL", + "code_postal": "46210", + "coordonnees_gps": [ + 44.7484825909, + 2.03579923388 + ], + "libelle_d_acheminement": "MONTET ET BOUXAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03579923388, + 44.7484825909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "335de8436e7808838b747ec7748c95acac49b736", + "fields": { + "code_commune_insee": "35283", + "nom_de_la_commune": "ST JEAN SUR VILAINE", + "code_postal": "35220", + "coordonnees_gps": [ + 48.1210316467, + -1.34032525907 + ], + "libelle_d_acheminement": "ST JEAN SUR VILAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34032525907, + 48.1210316467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8593ef29b7ec762c185d6dd734107ab4bc394ac", + "fields": { + "code_commune_insee": "46209", + "nom_de_la_commune": "NADAILLAC DE ROUGE", + "code_postal": "46350", + "coordonnees_gps": [ + 44.8500289786, + 1.43013868148 + ], + "libelle_d_acheminement": "NADAILLAC DE ROUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43013868148, + 44.8500289786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34276f1314eecda582743673225ea7307e0643e4", + "fields": { + "code_commune_insee": "35286", + "nom_de_la_commune": "ST LEGER DES PRES", + "code_postal": "35270", + "coordonnees_gps": [ + 48.388486199, + -1.65745157773 + ], + "libelle_d_acheminement": "ST LEGER DES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65745157773, + 48.388486199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0a85c3a2c058d0b6112c9352dcea8038d47c4dc", + "fields": { + "code_commune_insee": "46213", + "nom_de_la_commune": "PADIRAC", + "code_postal": "46500", + "coordonnees_gps": [ + 44.8503221914, + 1.75624205079 + ], + "libelle_d_acheminement": "PADIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75624205079, + 44.8503221914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69f4611a5019fab52852d9b3c6256147f64f1d5c", + "fields": { + "ligne_5": "ROTHENEUF", + "code_commune_insee": "35288", + "libelle_d_acheminement": "ST MALO", + "code_postal": "35400", + "nom_de_la_commune": "ST MALO", + "coordonnees_gps": [ + 48.6400443482, + -1.98060627256 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98060627256, + 48.6400443482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2036631f2f72d825c5a85cbde7798f0f13cdc982", + "fields": { + "code_commune_insee": "46230", + "nom_de_la_commune": "PUYJOURDES", + "code_postal": "46260", + "coordonnees_gps": [ + 44.401822561, + 1.85525892069 + ], + "libelle_d_acheminement": "PUYJOURDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85525892069, + 44.401822561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "645f4104273df2c85856911069cd4e5c4bc674bc", + "fields": { + "code_commune_insee": "35289", + "nom_de_la_commune": "ST MALO DE PHILY", + "code_postal": "35480", + "coordonnees_gps": [ + 47.8681860687, + -1.80518886357 + ], + "libelle_d_acheminement": "ST MALO DE PHILY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.80518886357, + 47.8681860687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "602cbef9856c28d137640eebfcda2d3595663a6a", + "fields": { + "code_commune_insee": "46235", + "nom_de_la_commune": "REILHAC", + "code_postal": "46500", + "coordonnees_gps": [ + 44.7017845632, + 1.72572975091 + ], + "libelle_d_acheminement": "REILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72572975091, + 44.7017845632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33fa08d71c97388edbafd4ece0fba1a7f98aede1", + "fields": { + "code_commune_insee": "35291", + "nom_de_la_commune": "ST MARCAN", + "code_postal": "35120", + "coordonnees_gps": [ + 48.5849299477, + -1.627947289 + ], + "libelle_d_acheminement": "ST MARCAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.627947289, + 48.5849299477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1345fab9878a12f93fdf355e81c0a0b812217055", + "fields": { + "code_commune_insee": "46241", + "nom_de_la_commune": "ROUFFILHAC", + "code_postal": "46300", + "coordonnees_gps": [ + 44.7969748573, + 1.41366274165 + ], + "libelle_d_acheminement": "ROUFFILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41366274165, + 44.7969748573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac140f6a2713544c05377e31674dd56a035edbe5", + "fields": { + "code_commune_insee": "35294", + "nom_de_la_commune": "STE MARIE", + "code_postal": "35600", + "coordonnees_gps": [ + 47.6935116851, + -2.01321068932 + ], + "libelle_d_acheminement": "STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01321068932, + 47.6935116851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe86a25c00391ebdf4bf305af3ecc1f4341868de", + "fields": { + "code_commune_insee": "46244", + "nom_de_la_commune": "SABADEL LATRONQUIERE", + "code_postal": "46210", + "coordonnees_gps": [ + 44.7266880889, + 2.06622639208 + ], + "libelle_d_acheminement": "SABADEL LATRONQUIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06622639208, + 44.7266880889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e815141d4c673f5a5740afdae8edadeb18017572", + "fields": { + "code_commune_insee": "35305", + "nom_de_la_commune": "ST PERAN", + "code_postal": "35380", + "coordonnees_gps": [ + 48.0566572293, + -2.06502362263 + ], + "libelle_d_acheminement": "ST PERAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.06502362263, + 48.0566572293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0c09f17e79813d1a02b5698554fe032528f44ff", + "fields": { + "code_commune_insee": "46256", + "nom_de_la_commune": "ST CIRQ LAPOPIE", + "code_postal": "46330", + "coordonnees_gps": [ + 44.456177199, + 1.65375113458 + ], + "libelle_d_acheminement": "ST CIRQ LAPOPIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65375113458, + 44.456177199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9cb051ff3bcc6956275fa374d75174f2e160b2f", + "fields": { + "code_commune_insee": "35317", + "nom_de_la_commune": "ST SYMPHORIEN", + "code_postal": "35630", + "coordonnees_gps": [ + 48.280614851, + -1.80334544561 + ], + "libelle_d_acheminement": "ST SYMPHORIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.80334544561, + 48.280614851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd700c3ba40a7ffa9d208a42acd148864feb5dbc", + "fields": { + "code_commune_insee": "46257", + "nom_de_la_commune": "ST CIRQ MADELON", + "code_postal": "46300", + "coordonnees_gps": [ + 44.7896986381, + 1.31685222838 + ], + "libelle_d_acheminement": "ST CIRQ MADELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31685222838, + 44.7896986381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48bfb8e25b4c0b8d92e39477f25ef7a45930cce7", + "fields": { + "code_commune_insee": "35325", + "nom_de_la_commune": "LA SELLE GUERCHAISE", + "code_postal": "35130", + "coordonnees_gps": [ + 47.942684871, + -1.16948623291 + ], + "libelle_d_acheminement": "LA SELLE GUERCHAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16948623291, + 47.942684871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a9065ec6afccd21875e74f13b0d2590c4bd7c4d", + "fields": { + "code_commune_insee": "46258", + "nom_de_la_commune": "ST CIRQ SOUILLAGUET", + "code_postal": "46300", + "coordonnees_gps": [ + 44.7052928988, + 1.44133375749 + ], + "libelle_d_acheminement": "ST CIRQ SOUILLAGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44133375749, + 44.7052928988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9dfbb8e50fdb3e14e33eade159a266d90506987", + "fields": { + "code_commune_insee": "35326", + "nom_de_la_commune": "SENS DE BRETAGNE", + "code_postal": "35490", + "coordonnees_gps": [ + 48.3367315734, + -1.55392717615 + ], + "libelle_d_acheminement": "SENS DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55392717615, + 48.3367315734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afe96e3905d1399daaa46beb8020fee30136d645", + "fields": { + "ligne_5": "ST LAURENT LOLMIE", + "code_commune_insee": "46262", + "libelle_d_acheminement": "LENDOU EN QUERCY", + "code_postal": "46800", + "nom_de_la_commune": "LENDOU EN QUERCY", + "coordonnees_gps": [ + 44.3040998679, + 1.26251296057 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26251296057, + 44.3040998679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b6646fa87cb27e46e3c9d05ceeebac5b086a010", + "fields": { + "code_commune_insee": "35327", + "nom_de_la_commune": "SERVON SUR VILAINE", + "code_postal": "35530", + "coordonnees_gps": [ + 48.120843256, + -1.45777238842 + ], + "libelle_d_acheminement": "SERVON SUR VILAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45777238842, + 48.120843256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52b9c0c20a8e47e0dc854d2858b2ce9942f1c9d5", + "fields": { + "ligne_5": "ST DAUNES", + "code_commune_insee": "46263", + "libelle_d_acheminement": "BARGUELONNE EN QUERCY", + "code_postal": "46800", + "nom_de_la_commune": "BARGUELONNE EN QUERCY", + "coordonnees_gps": [ + 44.3601858859, + 1.22469783155 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22469783155, + 44.3601858859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9f80379b6491f62ab912c2a84195375f9453244", + "fields": { + "code_commune_insee": "35329", + "nom_de_la_commune": "SOUGEAL", + "code_postal": "35610", + "coordonnees_gps": [ + 48.5026972021, + -1.51517240399 + ], + "libelle_d_acheminement": "SOUGEAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51517240399, + 48.5026972021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30056a972d59ab056ddd5dc0f3d50b060cf26f34", + "fields": { + "ligne_5": "VERS", + "code_commune_insee": "46268", + "libelle_d_acheminement": "ST GERY VERS", + "code_postal": "46090", + "nom_de_la_commune": "ST GERY VERS", + "coordonnees_gps": [ + 44.4863902583, + 1.6001798484 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6001798484, + 44.4863902583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0fe2844aa258f02aeede6760abe06d8be0aa8b8", + "fields": { + "code_commune_insee": "35332", + "nom_de_la_commune": "TEILLAY", + "code_postal": "35620", + "coordonnees_gps": [ + 47.8077925322, + -1.5223130707 + ], + "libelle_d_acheminement": "TEILLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5223130707, + 47.8077925322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a19767c0e11d92699794f57308a3be88ded67a0", + "fields": { + "ligne_5": "ST GERY", + "code_commune_insee": "46268", + "libelle_d_acheminement": "ST GERY VERS", + "code_postal": "46330", + "nom_de_la_commune": "ST GERY VERS", + "coordonnees_gps": [ + 44.4863902583, + 1.6001798484 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6001798484, + 44.4863902583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b4ce6864b1474de13d16b2f239f5a2ae9141981", + "fields": { + "code_commune_insee": "35334", + "nom_de_la_commune": "THORIGNE FOUILLARD", + "code_postal": "35235", + "coordonnees_gps": [ + 48.1566082899, + -1.58409867633 + ], + "libelle_d_acheminement": "THORIGNE FOUILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58409867633, + 48.1566082899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17be1ffd6071901f97b763e7205223d56349309f", + "fields": { + "code_commune_insee": "46282", + "nom_de_la_commune": "ST MEDARD NICOURBY", + "code_postal": "46210", + "coordonnees_gps": [ + 44.7654922895, + 2.01091154394 + ], + "libelle_d_acheminement": "ST MEDARD NICOURBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01091154394, + 44.7654922895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f96b714f9cab11f19ce85ea91f69006b657bf919", + "fields": { + "code_commune_insee": "35340", + "nom_de_la_commune": "TREFFENDEL", + "code_postal": "35380", + "coordonnees_gps": [ + 48.0313953352, + -2.00818373637 + ], + "libelle_d_acheminement": "TREFFENDEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.00818373637, + 48.0313953352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f3d516aac3fb95e2b533524effa2b1ce1b385d4", + "fields": { + "code_commune_insee": "46295", + "nom_de_la_commune": "ST VINCENT DU PENDIT", + "code_postal": "46400", + "coordonnees_gps": [ + 44.8338408589, + 1.9041542502 + ], + "libelle_d_acheminement": "ST VINCENT DU PENDIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9041542502, + 44.8338408589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a61d8b41ce78052172e463ae38975bf35c7e1e8", + "fields": { + "code_commune_insee": "35345", + "nom_de_la_commune": "TREVERIEN", + "code_postal": "35190", + "coordonnees_gps": [ + 48.3708768368, + -1.92035072104 + ], + "libelle_d_acheminement": "TREVERIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.92035072104, + 48.3708768368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43fef39517d3c7857adbbf59d3d63b3d3a7daaf2", + "fields": { + "code_commune_insee": "46304", + "nom_de_la_commune": "SENIERGUES", + "code_postal": "46240", + "coordonnees_gps": [ + 44.714653063, + 1.560844102 + ], + "libelle_d_acheminement": "SENIERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.560844102, + 44.714653063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dad4110e53dcb2225e56072ab5963b279644b9b", + "fields": { + "code_commune_insee": "35353", + "nom_de_la_commune": "VEZIN LE COQUET", + "code_postal": "35132", + "coordonnees_gps": [ + 48.1171829255, + -1.74956473355 + ], + "libelle_d_acheminement": "VEZIN LE COQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74956473355, + 48.1171829255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60ee084a8714820e25f0f290b65a8f4d592412c2", + "fields": { + "code_commune_insee": "46309", + "nom_de_la_commune": "SOUILLAC", + "code_postal": "46200", + "coordonnees_gps": [ + 44.9069531608, + 1.46396482842 + ], + "libelle_d_acheminement": "SOUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46396482842, + 44.9069531608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c380361dff3ddcfc112da36e41d2ce370ec5558d", + "fields": { + "code_commune_insee": "35356", + "nom_de_la_commune": "VIGNOC", + "code_postal": "35630", + "coordonnees_gps": [ + 48.257222573, + -1.76336508866 + ], + "libelle_d_acheminement": "VIGNOC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76336508866, + 48.257222573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef54b04f58443df092d64e5217385c235087a054", + "fields": { + "code_commune_insee": "46310", + "nom_de_la_commune": "SOULOMES", + "code_postal": "46240", + "coordonnees_gps": [ + 44.6269246895, + 1.59005920617 + ], + "libelle_d_acheminement": "SOULOMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59005920617, + 44.6269246895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cde39a00cab7f1b0788021caa85ab4fe565bf02", + "fields": { + "code_commune_insee": "35358", + "nom_de_la_commune": "LA VILLE ES NONAIS", + "code_postal": "35430", + "coordonnees_gps": [ + 48.5488601096, + -1.95172640786 + ], + "libelle_d_acheminement": "LA VILLE ES NONAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.95172640786, + 48.5488601096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fa8acd66455d257eb3e7abb67c803c19e8ecb2c", + "fields": { + "ligne_5": "SOUSCEYRAC", + "code_commune_insee": "46311", + "libelle_d_acheminement": "SOUSCEYRAC EN QUERCY", + "code_postal": "46190", + "nom_de_la_commune": "SOUSCEYRAC EN QUERCY", + "coordonnees_gps": [ + 44.8806327764, + 2.03547276303 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03547276303, + 44.8806327764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7da771c782a70de803719afdb1df4b204a40bf9", + "fields": { + "code_commune_insee": "35359", + "nom_de_la_commune": "VISSEICHE", + "code_postal": "35130", + "coordonnees_gps": [ + 47.959768941, + -1.29877248787 + ], + "libelle_d_acheminement": "VISSEICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29877248787, + 47.959768941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0883fffadf1624fc7f8d0321cae5cd9f718b3826", + "fields": { + "code_commune_insee": "46315", + "nom_de_la_commune": "TEYSSIEU", + "code_postal": "46190", + "coordonnees_gps": [ + 44.9167422017, + 1.95733992168 + ], + "libelle_d_acheminement": "TEYSSIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95733992168, + 44.9167422017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d803dc2f9521f716c756c84732292102e451def3", + "fields": { + "code_commune_insee": "36002", + "nom_de_la_commune": "AIZE", + "code_postal": "36150", + "coordonnees_gps": [ + 47.1078990064, + 1.70661723859 + ], + "libelle_d_acheminement": "AIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70661723859, + 47.1078990064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e4dd6cd6e887d516613df71633922eeb8655574", + "fields": { + "code_commune_insee": "46319", + "nom_de_la_commune": "THEMINETTES", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7180986465, + 1.84984788419 + ], + "libelle_d_acheminement": "THEMINETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84984788419, + 44.7180986465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83729f4ce7cf8b709a56a57ba758fb637e060dd8", + "fields": { + "code_commune_insee": "36007", + "nom_de_la_commune": "ARGY", + "code_postal": "36500", + "coordonnees_gps": [ + 46.9410833796, + 1.46153298844 + ], + "libelle_d_acheminement": "ARGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46153298844, + 46.9410833796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c17a8218c6ac6125d392e7307acb7c82eb827b50", + "fields": { + "code_commune_insee": "46322", + "nom_de_la_commune": "TRESPOUX RASSIELS", + "code_postal": "46090", + "coordonnees_gps": [ + 44.4215309294, + 1.35834286851 + ], + "libelle_d_acheminement": "TRESPOUX RASSIELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35834286851, + 44.4215309294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5862d35493a00b7bf307011e743ffa6c40c8cf9", + "fields": { + "code_commune_insee": "36011", + "nom_de_la_commune": "BAGNEUX", + "code_postal": "36210", + "coordonnees_gps": [ + 47.1677532735, + 1.75606280452 + ], + "libelle_d_acheminement": "BAGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75606280452, + 47.1677532735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2425478160fa916e17a914f0e63cb86837ec2e24", + "fields": { + "code_commune_insee": "46332", + "nom_de_la_commune": "VIAZAC", + "code_postal": "46100", + "coordonnees_gps": [ + 44.6523523693, + 2.07287851725 + ], + "libelle_d_acheminement": "VIAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07287851725, + 44.6523523693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb682805b70a7ec085315ad419ef4d906b973396", + "fields": { + "code_commune_insee": "36021", + "nom_de_la_commune": "LES BORDES", + "code_postal": "36100", + "coordonnees_gps": [ + 46.9845708216, + 1.9639586533 + ], + "libelle_d_acheminement": "LES BORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9639586533, + 46.9845708216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f478941894cbcec3739990647ec6782ded54cc3", + "fields": { + "code_commune_insee": "46339", + "nom_de_la_commune": "ST JEAN LAGINESTE", + "code_postal": "46400", + "coordonnees_gps": [ + 44.8253267169, + 1.852018408 + ], + "libelle_d_acheminement": "ST JEAN LAGINESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.852018408, + 44.8253267169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "285bc46e01f7c939c94054653a8ab0d45a364b1c", + "fields": { + "code_commune_insee": "36026", + "nom_de_la_commune": "BRION", + "code_postal": "36110", + "coordonnees_gps": [ + 46.9498101823, + 1.72891694176 + ], + "libelle_d_acheminement": "BRION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72891694176, + 46.9498101823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "390a909beb39d8bd6d0062691501623aa68f6b4b", + "fields": { + "code_commune_insee": "47005", + "nom_de_la_commune": "ALLEMANS DU DROPT", + "code_postal": "47800", + "coordonnees_gps": [ + 44.6231983139, + 0.286538311278 + ], + "libelle_d_acheminement": "ALLEMANS DU DROPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.286538311278, + 44.6231983139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "463979e75edf5fee2bcb36af6ff141bcbdd6d573", + "fields": { + "code_commune_insee": "36029", + "nom_de_la_commune": "BUXEUIL", + "code_postal": "36150", + "coordonnees_gps": [ + 47.1269218412, + 1.69487135534 + ], + "libelle_d_acheminement": "BUXEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69487135534, + 47.1269218412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78115e11103a7462f267c213959d8b576ddc0c9c", + "fields": { + "code_commune_insee": "47007", + "nom_de_la_commune": "ALLONS", + "code_postal": "47420", + "coordonnees_gps": [ + 44.1933826797, + -0.0800075386017 + ], + "libelle_d_acheminement": "ALLONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0800075386017, + 44.1933826797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "647b0846dea8df4602ac2e67393934a815f45eaa", + "fields": { + "code_commune_insee": "36030", + "nom_de_la_commune": "BUXIERES D AILLAC", + "code_postal": "36230", + "coordonnees_gps": [ + 46.6387685849, + 1.75300924427 + ], + "libelle_d_acheminement": "BUXIERES D AILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75300924427, + 46.6387685849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0fe7a743199968b764503c2b3f1519bd1e2ab6c", + "fields": { + "code_commune_insee": "47012", + "nom_de_la_commune": "ANZEX", + "code_postal": "47700", + "coordonnees_gps": [ + 44.2862673358, + 0.170412994362 + ], + "libelle_d_acheminement": "ANZEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.170412994362, + 44.2862673358 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edf8bd702336967d3953ebd6c669dad9c1cf3885", + "fields": { + "code_commune_insee": "36040", + "nom_de_la_commune": "LA CHAPELLE ORTHEMALE", + "code_postal": "36500", + "coordonnees_gps": [ + 46.8327873497, + 1.45197774217 + ], + "libelle_d_acheminement": "LA CHAPELLE ORTHEMALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45197774217, + 46.8327873497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65c154b3be70b4f7312947e1c19b610e200f9540", + "fields": { + "code_commune_insee": "47013", + "nom_de_la_commune": "ARGENTON", + "code_postal": "47250", + "coordonnees_gps": [ + 44.3845067186, + 0.0666936093106 + ], + "libelle_d_acheminement": "ARGENTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0666936093106, + 44.3845067186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe8630f8c7145e02ea6680789611c109fd759acc", + "fields": { + "code_commune_insee": "36046", + "nom_de_la_commune": "LA CHATRE", + "code_postal": "36400", + "coordonnees_gps": [ + 46.5738617061, + 1.99112468906 + ], + "libelle_d_acheminement": "LA CHATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99112468906, + 46.5738617061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b519242750702b7332eec896de8f1938fbacdd29", + "fields": { + "code_commune_insee": "47018", + "nom_de_la_commune": "AURIAC SUR DROPT", + "code_postal": "47120", + "coordonnees_gps": [ + 44.6544707799, + 0.243508495124 + ], + "libelle_d_acheminement": "AURIAC SUR DROPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.243508495124, + 44.6544707799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf4ebdbf84814870d0e6dc43196ca9124fbddc36", + "fields": { + "code_commune_insee": "36047", + "nom_de_la_commune": "LA CHATRE LANGLIN", + "code_postal": "36170", + "coordonnees_gps": [ + 46.4097629737, + 1.38754317805 + ], + "libelle_d_acheminement": "LA CHATRE LANGLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38754317805, + 46.4097629737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82650b6ce3c7a713f553ef7a092567b09f4d4c3c", + "fields": { + "code_commune_insee": "47028", + "nom_de_la_commune": "BIRAC SUR TREC", + "code_postal": "47200", + "coordonnees_gps": [ + 44.4871002309, + 0.259780510047 + ], + "libelle_d_acheminement": "BIRAC SUR TREC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.259780510047, + 44.4871002309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "242af8c08e23967b3ba3ef34d434273d8d0615dd", + "fields": { + "code_commune_insee": "36048", + "nom_de_la_commune": "CHAVIN", + "code_postal": "36200", + "coordonnees_gps": [ + 46.5625110461, + 1.61164678911 + ], + "libelle_d_acheminement": "CHAVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61164678911, + 46.5625110461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1265d2097af70f62a7cedb6b3dda33b1241fdd06", + "fields": { + "code_commune_insee": "47033", + "nom_de_la_commune": "BOUDY DE BEAUREGARD", + "code_postal": "47290", + "coordonnees_gps": [ + 44.5438485414, + 0.67747020369 + ], + "libelle_d_acheminement": "BOUDY DE BEAUREGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67747020369, + 44.5438485414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acc6715047d7543e5136e9dcc343234cc57e2b37", + "fields": { + "code_commune_insee": "36053", + "nom_de_la_commune": "CIRON", + "code_postal": "36300", + "coordonnees_gps": [ + 46.6323391701, + 1.26102864126 + ], + "libelle_d_acheminement": "CIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26102864126, + 46.6323391701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89954982d67b8afdee72acb4a031f25d7f2e98ff", + "fields": { + "code_commune_insee": "47036", + "nom_de_la_commune": "BOURLENS", + "code_postal": "47370", + "coordonnees_gps": [ + 44.4254220753, + 0.972634935921 + ], + "libelle_d_acheminement": "BOURLENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.972634935921, + 44.4254220753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40971cd416c179206b621d1478367fb4d52fe1c1", + "fields": { + "code_commune_insee": "36060", + "nom_de_la_commune": "CREVANT", + "code_postal": "36140", + "coordonnees_gps": [ + 46.4692924616, + 1.93707320558 + ], + "libelle_d_acheminement": "CREVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93707320558, + 46.4692924616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b628b9bdf149e4a2f582883e049fd104aabc588b", + "fields": { + "code_commune_insee": "47044", + "nom_de_la_commune": "CAHUZAC", + "code_postal": "47330", + "coordonnees_gps": [ + 44.6603987371, + 0.562496296717 + ], + "libelle_d_acheminement": "CAHUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.562496296717, + 44.6603987371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "567e53e1e9286fff7647ffe119dcd51e78eb1f7f", + "fields": { + "code_commune_insee": "36070", + "nom_de_la_commune": "EGUZON CHANTOME", + "code_postal": "36270", + "coordonnees_gps": [ + 46.4342273236, + 1.56931280113 + ], + "libelle_d_acheminement": "EGUZON CHANTOME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56931280113, + 46.4342273236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90d39bfc572884d29d1b15ebc2c04fd6c2f00443", + "fields": { + "code_commune_insee": "47045", + "nom_de_la_commune": "CALIGNAC", + "code_postal": "47600", + "coordonnees_gps": [ + 44.1363247779, + 0.41705042577 + ], + "libelle_d_acheminement": "CALIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41705042577, + 44.1363247779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05cfcaf98250d09194ccb78e9f8110c59d751402", + "fields": { + "code_commune_insee": "36075", + "nom_de_la_commune": "FONTENAY", + "code_postal": "36150", + "coordonnees_gps": [ + 47.0542552682, + 1.74236009323 + ], + "libelle_d_acheminement": "FONTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74236009323, + 47.0542552682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15440e8265af25908398085bd5d0eeb7676c3f50", + "fields": { + "code_commune_insee": "47051", + "nom_de_la_commune": "CASTELCULIER", + "code_postal": "47240", + "coordonnees_gps": [ + 44.1880929707, + 0.710790193831 + ], + "libelle_d_acheminement": "CASTELCULIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.710790193831, + 44.1880929707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4a0ac06e689c5470e793ed1256fbf20d62e9828", + "fields": { + "code_commune_insee": "36077", + "nom_de_la_commune": "FONTGUENAND", + "code_postal": "36600", + "coordonnees_gps": [ + 47.2019729432, + 1.53449343992 + ], + "libelle_d_acheminement": "FONTGUENAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53449343992, + 47.2019729432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "234d42b89adfe5f93ae0318eac116ca6d275903b", + "fields": { + "code_commune_insee": "47057", + "nom_de_la_commune": "CASTILLONNES", + "code_postal": "47330", + "coordonnees_gps": [ + 44.6392690968, + 0.605732288011 + ], + "libelle_d_acheminement": "CASTILLONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.605732288011, + 44.6392690968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "952761598ff7567162b198cda8efc32ae4f19584", + "fields": { + "code_commune_insee": "36078", + "nom_de_la_commune": "FOUGEROLLES", + "code_postal": "36230", + "coordonnees_gps": [ + 46.568597267, + 1.86981174393 + ], + "libelle_d_acheminement": "FOUGEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86981174393, + 46.568597267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f73f9904a630bce9112d3dcfaf2c4e838fd396b7", + "fields": { + "code_commune_insee": "47063", + "nom_de_la_commune": "CAVARC", + "code_postal": "47330", + "coordonnees_gps": [ + 44.6820226706, + 0.641513510032 + ], + "libelle_d_acheminement": "CAVARC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.641513510032, + 44.6820226706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fd82579a34b445c3c43a8348e452a50cbdfdd45", + "fields": { + "code_commune_insee": "36085", + "nom_de_la_commune": "GUILLY", + "code_postal": "36150", + "coordonnees_gps": [ + 47.0854429758, + 1.73470769593 + ], + "libelle_d_acheminement": "GUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73470769593, + 47.0854429758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44367fc618a5ca10215efd9527d32c5658fcf47e", + "fields": { + "code_commune_insee": "47066", + "nom_de_la_commune": "CLERMONT DESSOUS", + "code_postal": "47130", + "coordonnees_gps": [ + 44.2487245183, + 0.456237905112 + ], + "libelle_d_acheminement": "CLERMONT DESSOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.456237905112, + 44.2487245183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9592cdf03440dc67b382c94c1d00099f79897edd", + "fields": { + "code_commune_insee": "36087", + "nom_de_la_commune": "INGRANDES", + "code_postal": "36300", + "coordonnees_gps": [ + 46.5931498881, + 0.963558213736 + ], + "libelle_d_acheminement": "INGRANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.963558213736, + 46.5931498881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1472846bc359015e6e60db9d6b28d49be2cc406d", + "fields": { + "code_commune_insee": "47073", + "nom_de_la_commune": "COURS", + "code_postal": "47360", + "coordonnees_gps": [ + 44.3258792587, + 0.593180292489 + ], + "libelle_d_acheminement": "COURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.593180292489, + 44.3258792587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1fccac595bae8355990d1cce3e8520fc1220791", + "fields": { + "code_commune_insee": "36098", + "nom_de_la_commune": "LIZERAY", + "code_postal": "36100", + "coordonnees_gps": [ + 46.9850879886, + 1.9034021028 + ], + "libelle_d_acheminement": "LIZERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9034021028, + 46.9850879886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08365a3e7664d54af0371a9a96fdfef52c25dd0b", + "fields": { + "code_commune_insee": "47076", + "nom_de_la_commune": "CUQ", + "code_postal": "47220", + "coordonnees_gps": [ + 44.0810900261, + 0.716495336369 + ], + "libelle_d_acheminement": "CUQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.716495336369, + 44.0810900261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15c7d7ffee96b57e4611bb963eac2fbd6a6fa5d2", + "fields": { + "code_commune_insee": "36102", + "nom_de_la_commune": "LUCAY LE LIBRE", + "code_postal": "36150", + "coordonnees_gps": [ + 47.0943523888, + 1.91685079999 + ], + "libelle_d_acheminement": "LUCAY LE LIBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91685079999, + 47.0943523888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26fc143e1f326dfc10b3a85a984b84d16412fbd9", + "fields": { + "code_commune_insee": "47078", + "nom_de_la_commune": "DAMAZAN", + "code_postal": "47160", + "coordonnees_gps": [ + 44.2886728778, + 0.275113045329 + ], + "libelle_d_acheminement": "DAMAZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.275113045329, + 44.2886728778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6adfe3ac210249996b6589966af313529bf5f0f4", + "fields": { + "code_commune_insee": "36104", + "nom_de_la_commune": "LURAIS", + "code_postal": "36220", + "coordonnees_gps": [ + 46.6878513491, + 0.937216531821 + ], + "libelle_d_acheminement": "LURAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.937216531821, + 46.6878513491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e85093fb9c326819ee23eb0aed534cceb037b58f", + "fields": { + "code_commune_insee": "47079", + "nom_de_la_commune": "DAUSSE", + "code_postal": "47140", + "coordonnees_gps": [ + 44.3878408566, + 0.889281458819 + ], + "libelle_d_acheminement": "DAUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.889281458819, + 44.3878408566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62773766134e79e0f141f2818afa2f0759905552", + "fields": { + "code_commune_insee": "36108", + "nom_de_la_commune": "LYS ST GEORGES", + "code_postal": "36230", + "coordonnees_gps": [ + 46.6459003254, + 1.81677559242 + ], + "libelle_d_acheminement": "LYS ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81677559242, + 46.6459003254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53855c7cf7ec9a28b77ee3b22ea59f9a4df2d5ea", + "fields": { + "code_commune_insee": "47083", + "nom_de_la_commune": "DOUDRAC", + "code_postal": "47210", + "coordonnees_gps": [ + 44.6644247017, + 0.679748362651 + ], + "libelle_d_acheminement": "DOUDRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.679748362651, + 44.6644247017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22967d95c5fbbc2dc3279feab21cba6d0da5bd2f", + "fields": { + "code_commune_insee": "36122", + "nom_de_la_commune": "MEUNET SUR VATAN", + "code_postal": "36150", + "coordonnees_gps": [ + 47.0914736081, + 1.8594546964 + ], + "libelle_d_acheminement": "MEUNET SUR VATAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8594546964, + 47.0914736081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb793625c29549f48f99051e8f837bb109b2f876", + "fields": { + "code_commune_insee": "47085", + "nom_de_la_commune": "DURANCE", + "code_postal": "47420", + "coordonnees_gps": [ + 44.1573942132, + 0.162796058009 + ], + "libelle_d_acheminement": "DURANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.162796058009, + 44.1573942132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "889a990c0a2baf507159e8004308f4ad59df06b0", + "fields": { + "code_commune_insee": "36125", + "nom_de_la_commune": "MIGNY", + "code_postal": "36260", + "coordonnees_gps": [ + 47.0162486536, + 2.05279742123 + ], + "libelle_d_acheminement": "MIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05279742123, + 47.0162486536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "435f1438d14f03e354ec310e17efa6a769843b56", + "fields": { + "code_commune_insee": "47087", + "nom_de_la_commune": "ENGAYRAC", + "code_postal": "47470", + "coordonnees_gps": [ + 44.2525895888, + 0.900187175116 + ], + "libelle_d_acheminement": "ENGAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.900187175116, + 44.2525895888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "977ed7d5240fdf118ee5c67c2171b3362f39a429", + "fields": { + "code_commune_insee": "36132", + "nom_de_la_commune": "LA MOTTE FEUILLY", + "code_postal": "36160", + "coordonnees_gps": [ + 46.5478040001, + 2.07378782307 + ], + "libelle_d_acheminement": "LA MOTTE FEUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07378782307, + 46.5478040001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c2250f7f813b5c0195f43f0d82755c328ce7ddb", + "fields": { + "code_commune_insee": "47088", + "nom_de_la_commune": "ESCASSEFORT", + "code_postal": "47350", + "coordonnees_gps": [ + 44.5521873277, + 0.231716447116 + ], + "libelle_d_acheminement": "ESCASSEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.231716447116, + 44.5521873277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f55958926bc35adc04cf264f59447e09478e1326", + "fields": { + "code_commune_insee": "36137", + "nom_de_la_commune": "NEONS SUR CREUSE", + "code_postal": "36220", + "coordonnees_gps": [ + 46.734899055, + 0.917095458404 + ], + "libelle_d_acheminement": "NEONS SUR CREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.917095458404, + 46.734899055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8200fec8523848db5948223a623fec9ef96758b", + "fields": { + "code_commune_insee": "47089", + "nom_de_la_commune": "ESCLOTTES", + "code_postal": "47120", + "coordonnees_gps": [ + 44.7150066075, + 0.150419188068 + ], + "libelle_d_acheminement": "ESCLOTTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.150419188068, + 44.7150066075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a856886ea5234bf61cdcc4f6d92f3dc157b5456", + "fields": { + "code_commune_insee": "36141", + "nom_de_la_commune": "NEUVY ST SEPULCHRE", + "code_postal": "36230", + "coordonnees_gps": [ + 46.5924338706, + 1.81276111894 + ], + "libelle_d_acheminement": "NEUVY ST SEPULCHRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81276111894, + 46.5924338706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f3e218012d2116598708440b73b94ae60ae7824", + "fields": { + "code_commune_insee": "47094", + "nom_de_la_commune": "FAUGUEROLLES", + "code_postal": "47400", + "coordonnees_gps": [ + 44.4464635606, + 0.244369660356 + ], + "libelle_d_acheminement": "FAUGUEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.244369660356, + 44.4464635606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9870d9225b909cc0a12bcd1d56d23e7e09784de0", + "fields": { + "code_commune_insee": "36143", + "nom_de_la_commune": "NOHANT VIC", + "code_postal": "36400", + "coordonnees_gps": [ + 46.6401357121, + 1.95677952761 + ], + "libelle_d_acheminement": "NOHANT VIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95677952761, + 46.6401357121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "def41ec1de1de616b354e752bd74330b0ab827cd", + "fields": { + "code_commune_insee": "47096", + "nom_de_la_commune": "FERRENSAC", + "code_postal": "47330", + "coordonnees_gps": [ + 44.6425090951, + 0.638877238535 + ], + "libelle_d_acheminement": "FERRENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.638877238535, + 44.6425090951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a78d6543e416e2385ac68ace5334ab410ac4934", + "fields": { + "code_commune_insee": "36146", + "nom_de_la_commune": "ORSENNES", + "code_postal": "36190", + "coordonnees_gps": [ + 46.4793175378, + 1.69542411224 + ], + "libelle_d_acheminement": "ORSENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69542411224, + 46.4793175378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2caa1df93ef82b2f4b990e09544838d4b22456b", + "fields": { + "code_commune_insee": "47100", + "nom_de_la_commune": "FOULAYRONNES", + "code_postal": "47510", + "coordonnees_gps": [ + 44.2533403531, + 0.636982515974 + ], + "libelle_d_acheminement": "FOULAYRONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.636982515974, + 44.2533403531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff6a428a345fb9f93b7665595c8fa9769c3ba088", + "fields": { + "code_commune_insee": "36148", + "nom_de_la_commune": "OULCHES", + "code_postal": "36800", + "coordonnees_gps": [ + 46.6025646156, + 1.31003931373 + ], + "libelle_d_acheminement": "OULCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31003931373, + 46.6025646156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "458f47b347d55d5060d2cd63027a96c19d35a789", + "fields": { + "code_commune_insee": "47105", + "nom_de_la_commune": "FRESPECH", + "code_postal": "47140", + "coordonnees_gps": [ + 44.3146511449, + 0.822551704187 + ], + "libelle_d_acheminement": "FRESPECH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.822551704187, + 44.3146511449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e1e05eee96e458fa0ffe73768504d3a08a8bbbe", + "fields": { + "code_commune_insee": "36149", + "nom_de_la_commune": "PALLUAU SUR INDRE", + "code_postal": "36500", + "coordonnees_gps": [ + 46.9503340872, + 1.30699854717 + ], + "libelle_d_acheminement": "PALLUAU SUR INDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30699854717, + 46.9503340872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0413852c3c78dd343edcd07b2d38659c6ad8d862", + "fields": { + "code_commune_insee": "47113", + "nom_de_la_commune": "GRAYSSAS", + "code_postal": "47270", + "coordonnees_gps": [ + 44.1569683469, + 0.865584911985 + ], + "libelle_d_acheminement": "GRAYSSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.865584911985, + 44.1569683469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "512518f302ff83f27c7b97ba6f7ef1b1a4c66daa", + "fields": { + "code_commune_insee": "36153", + "nom_de_la_commune": "PAULNAY", + "code_postal": "36290", + "coordonnees_gps": [ + 46.8615135571, + 1.14964344922 + ], + "libelle_d_acheminement": "PAULNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14964344922, + 46.8615135571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfaf91c40cdb4f196414a3537478e26c76e28f0a", + "fields": { + "code_commune_insee": "47119", + "nom_de_la_commune": "HOUEILLES", + "code_postal": "47420", + "coordonnees_gps": [ + 44.1926576164, + 0.0420744981743 + ], + "libelle_d_acheminement": "HOUEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0420744981743, + 44.1926576164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e800d6a7e09a57590b6501cdb48cc60c75d431a8", + "fields": { + "code_commune_insee": "36155", + "nom_de_la_commune": "PELLEVOISIN", + "code_postal": "36180", + "coordonnees_gps": [ + 46.9860152232, + 1.42163571271 + ], + "libelle_d_acheminement": "PELLEVOISIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42163571271, + 46.9860152232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad9e0c7b6d8d422435206b5a2ce0367f284b8558", + "fields": { + "code_commune_insee": "47121", + "nom_de_la_commune": "LABASTIDE CASTEL AMOUROUX", + "code_postal": "47250", + "coordonnees_gps": [ + 44.3463957829, + 0.127187947229 + ], + "libelle_d_acheminement": "LABASTIDE CASTEL AMOUROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.127187947229, + 44.3463957829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac8ca17a5c7dd60f0f3dd2de1b55eb171e9c8093", + "fields": { + "code_commune_insee": "36172", + "nom_de_la_commune": "RIVARENNES", + "code_postal": "36800", + "coordonnees_gps": [ + 46.6136609061, + 1.37923363708 + ], + "libelle_d_acheminement": "RIVARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37923363708, + 46.6136609061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e858a3302c6fbe3f7c58db3700260020eb0d9f4", + "fields": { + "code_commune_insee": "47124", + "nom_de_la_commune": "LACAUSSADE", + "code_postal": "47150", + "coordonnees_gps": [ + 44.505417861, + 0.82335123083 + ], + "libelle_d_acheminement": "LACAUSSADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82335123083, + 44.505417861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8626fec41ad25ecff42fc46e087e24318ed316fc", + "fields": { + "code_commune_insee": "36177", + "nom_de_la_commune": "SACIERGES ST MARTIN", + "code_postal": "36170", + "coordonnees_gps": [ + 46.5020933544, + 1.3636862665 + ], + "libelle_d_acheminement": "SACIERGES ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3636862665, + 46.5020933544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adaf59b3affca04207a2b56aa4d4c02b60cf4536", + "fields": { + "code_commune_insee": "47131", + "nom_de_la_commune": "LAGUPIE", + "code_postal": "47180", + "coordonnees_gps": [ + 44.5681807509, + 0.110810277516 + ], + "libelle_d_acheminement": "LAGUPIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.110810277516, + 44.5681807509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a59883ef4158243cbb581d871bb53b5e7936da7a", + "fields": { + "code_commune_insee": "36178", + "nom_de_la_commune": "ST AIGNY", + "code_postal": "36300", + "coordonnees_gps": [ + 46.6332010189, + 1.00576918514 + ], + "libelle_d_acheminement": "ST AIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00576918514, + 46.6332010189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "410c03c0278359a6990726dec4c7e6462188e843", + "fields": { + "ligne_5": "VILLENEUVE DE MEZIN", + "code_commune_insee": "47134", + "libelle_d_acheminement": "LANNES", + "code_postal": "47170", + "nom_de_la_commune": "LANNES", + "coordonnees_gps": [ + 44.0233573212, + 0.28577304123 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.28577304123, + 44.0233573212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51af1a15aeefc2644b5def2c0519dcd7b1cf20a0", + "fields": { + "code_commune_insee": "36185", + "nom_de_la_commune": "ST CHRISTOPHE EN BAZELLE", + "code_postal": "36210", + "coordonnees_gps": [ + 47.1875900989, + 1.71219457331 + ], + "libelle_d_acheminement": "ST CHRISTOPHE EN BAZELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71219457331, + 47.1875900989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8978b78435cab39655376c34b4fa037a05586345", + "fields": { + "code_commune_insee": "47136", + "nom_de_la_commune": "LAPERCHE", + "code_postal": "47800", + "coordonnees_gps": [ + 44.5457026494, + 0.414727811733 + ], + "libelle_d_acheminement": "LAPERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.414727811733, + 44.5457026494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b15d8badbe7789a7d1d6ce1ac905e78e6179862", + "fields": { + "code_commune_insee": "36189", + "nom_de_la_commune": "ST DENIS DE JOUHET", + "code_postal": "36230", + "coordonnees_gps": [ + 46.5265897441, + 1.84504913909 + ], + "libelle_d_acheminement": "ST DENIS DE JOUHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84504913909, + 46.5265897441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28f3a89859a685ccb07c4ea7308093e50fc28ba7", + "fields": { + "code_commune_insee": "47144", + "nom_de_la_commune": "LAVERGNE", + "code_postal": "47800", + "coordonnees_gps": [ + 44.5852993705, + 0.41382016735 + ], + "libelle_d_acheminement": "LAVERGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.41382016735, + 44.5852993705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62a32bc7620608ecdb6fe8558f691069d7a4e783", + "fields": { + "code_commune_insee": "36198", + "nom_de_la_commune": "ST LACTENCIN", + "code_postal": "36500", + "coordonnees_gps": [ + 46.8956769207, + 1.49717761772 + ], + "libelle_d_acheminement": "ST LACTENCIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49717761772, + 46.8956769207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "227f3fbce0f4ead5cdd19d02a92755277b1acc22", + "fields": { + "code_commune_insee": "47146", + "nom_de_la_commune": "LEDAT", + "code_postal": "47300", + "coordonnees_gps": [ + 44.4466584765, + 0.667402522354 + ], + "libelle_d_acheminement": "LEDAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.667402522354, + 44.4466584765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e55b53fe0e9360d603f2b5f692462615fcf6a55", + "fields": { + "code_commune_insee": "36200", + "nom_de_la_commune": "ST MARCEL", + "code_postal": "36200", + "coordonnees_gps": [ + 46.6083971335, + 1.52347471994 + ], + "libelle_d_acheminement": "ST MARCEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52347471994, + 46.6083971335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a33a11c1353c1e33b7810d6a7b2adbb6936652a", + "fields": { + "code_commune_insee": "47160", + "nom_de_la_commune": "MASQUIERES", + "code_postal": "47370", + "coordonnees_gps": [ + 44.4068801244, + 1.04211541582 + ], + "libelle_d_acheminement": "MASQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04211541582, + 44.4068801244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c49119eda847a9a1ba161ef5b3b5bb3f81a8c8f", + "fields": { + "code_commune_insee": "36208", + "nom_de_la_commune": "STE SEVERE SUR INDRE", + "code_postal": "36160", + "coordonnees_gps": [ + 46.5042219323, + 2.06769602901 + ], + "libelle_d_acheminement": "STE SEVERE SUR INDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06769602901, + 46.5042219323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a428741b026111aa68f8bb5fae8289bc63c31193", + "fields": { + "code_commune_insee": "47170", + "nom_de_la_commune": "MONBAHUS", + "code_postal": "47290", + "coordonnees_gps": [ + 44.5387781694, + 0.525350023126 + ], + "libelle_d_acheminement": "MONBAHUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.525350023126, + 44.5387781694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "772446a3dad015d31feb435592ca7b23305dd301", + "fields": { + "code_commune_insee": "36210", + "nom_de_la_commune": "SARZAY", + "code_postal": "36230", + "coordonnees_gps": [ + 46.5974798538, + 1.90704131796 + ], + "libelle_d_acheminement": "SARZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90704131796, + 46.5974798538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91523547f0d143ccdfa6656ae9a06304f9cf0f30", + "fields": { + "code_commune_insee": "47171", + "nom_de_la_commune": "MONBALEN", + "code_postal": "47340", + "coordonnees_gps": [ + 44.3137893686, + 0.73929150738 + ], + "libelle_d_acheminement": "MONBALEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.73929150738, + 44.3137893686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b23549664acc5b9180dc26cf6646c8262855d0a", + "fields": { + "code_commune_insee": "36216", + "nom_de_la_commune": "SELLES SUR NAHON", + "code_postal": "36180", + "coordonnees_gps": [ + 47.0177325936, + 1.45548749764 + ], + "libelle_d_acheminement": "SELLES SUR NAHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45548749764, + 47.0177325936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2fabeb4537f23cb7b292d44a0bbbd95101053fd", + "fields": { + "code_commune_insee": "47177", + "nom_de_la_commune": "MONHEURT", + "code_postal": "47160", + "coordonnees_gps": [ + 44.3328995113, + 0.305811875676 + ], + "libelle_d_acheminement": "MONHEURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.305811875676, + 44.3328995113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b4f30df0dc8c8a9f0c9e0caef29558e0db917bc", + "fields": { + "code_commune_insee": "36219", + "nom_de_la_commune": "TENDU", + "code_postal": "36200", + "coordonnees_gps": [ + 46.6521648275, + 1.56566205857 + ], + "libelle_d_acheminement": "TENDU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56566205857, + 46.6521648275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffbb07c97a7af753e44d5d7d69a281f44c9074b9", + "fields": { + "code_commune_insee": "47183", + "nom_de_la_commune": "MONTAURIOL", + "code_postal": "47330", + "coordonnees_gps": [ + 44.6130510503, + 0.581048526726 + ], + "libelle_d_acheminement": "MONTAURIOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.581048526726, + 44.6130510503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4baad4ff02ab0b7d273f8c8302d29f468584a53d", + "fields": { + "code_commune_insee": "36223", + "nom_de_la_commune": "TILLY", + "code_postal": "36310", + "coordonnees_gps": [ + 46.4050751872, + 1.21140507428 + ], + "libelle_d_acheminement": "TILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21140507428, + 46.4050751872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6760fe5b80931e9ba4e8537220518d2792c2f21", + "fields": { + "code_commune_insee": "47184", + "nom_de_la_commune": "MONTAUT", + "code_postal": "47210", + "coordonnees_gps": [ + 44.6058245899, + 0.682418964393 + ], + "libelle_d_acheminement": "MONTAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.682418964393, + 44.6058245899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a81a2d2a17fd6704124e3265fa236cbae175b4b", + "fields": { + "code_commune_insee": "36224", + "nom_de_la_commune": "TOURNON ST MARTIN", + "code_postal": "36220", + "coordonnees_gps": [ + 46.7300364978, + 0.983181764115 + ], + "libelle_d_acheminement": "TOURNON ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.983181764115, + 46.7300364978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc7050113c602980b0af76e03114900ebeaccc7f", + "fields": { + "code_commune_insee": "47185", + "nom_de_la_commune": "MONTAYRAL", + "code_postal": "47500", + "coordonnees_gps": [ + 44.4683407612, + 0.983236181699 + ], + "libelle_d_acheminement": "MONTAYRAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.983236181699, + 44.4683407612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d04f140bf0509da51de4fdc987302676501e97cb", + "fields": { + "code_commune_insee": "36232", + "nom_de_la_commune": "VENDOEUVRES", + "code_postal": "36500", + "coordonnees_gps": [ + 46.7879906602, + 1.3602788548 + ], + "libelle_d_acheminement": "VENDOEUVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3602788548, + 46.7879906602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69a3ff5843f0a474d8a2fbaf28604a344113a00d", + "fields": { + "code_commune_insee": "47187", + "nom_de_la_commune": "MONTETON", + "code_postal": "47120", + "coordonnees_gps": [ + 44.613155335, + 0.251822971507 + ], + "libelle_d_acheminement": "MONTETON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.251822971507, + 44.613155335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0b3eb9960dcaf5f58c9efd0ce6968605e3a3f7f", + "fields": { + "code_commune_insee": "36246", + "nom_de_la_commune": "VILLIERS", + "code_postal": "36290", + "coordonnees_gps": [ + 46.8845013105, + 1.19883846025 + ], + "libelle_d_acheminement": "VILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.19883846025, + 46.8845013105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e55523244ab360b2544a0a5a4055c442eefa7da5", + "fields": { + "code_commune_insee": "47191", + "nom_de_la_commune": "MONTPOUILLAN", + "code_postal": "47200", + "coordonnees_gps": [ + 44.4620929897, + 0.0955335933936 + ], + "libelle_d_acheminement": "MONTPOUILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0955335933936, + 44.4620929897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84b411b3defb1121e441f64925857925469dda8c", + "fields": { + "code_commune_insee": "37004", + "nom_de_la_commune": "ANCHE", + "code_postal": "37500", + "coordonnees_gps": [ + 47.1322445676, + 0.307767797978 + ], + "libelle_d_acheminement": "ANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.307767797978, + 47.1322445676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4188c35bd914101cb12a6221187d3bdb5eae032", + "fields": { + "code_commune_insee": "47192", + "nom_de_la_commune": "MONVIEL", + "code_postal": "47290", + "coordonnees_gps": [ + 44.5658538876, + 0.546679303269 + ], + "libelle_d_acheminement": "MONVIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.546679303269, + 44.5658538876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11271c2f3446aff032e5d4a6ffb2e006417f037f", + "fields": { + "code_commune_insee": "37006", + "nom_de_la_commune": "ARTANNES SUR INDRE", + "code_postal": "37260", + "coordonnees_gps": [ + 47.2760783229, + 0.594691444381 + ], + "libelle_d_acheminement": "ARTANNES SUR INDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.594691444381, + 47.2760783229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e36c54dc064f947dc932b065e19d8c61e31ec883", + "fields": { + "code_commune_insee": "47193", + "nom_de_la_commune": "MOULINET", + "code_postal": "47290", + "coordonnees_gps": [ + 44.5439854826, + 0.583636615495 + ], + "libelle_d_acheminement": "MOULINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.583636615495, + 44.5439854826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78f18004a6cf2a229911d3cc9d71d681437efd7c", + "fields": { + "code_commune_insee": "37013", + "nom_de_la_commune": "AVRILLE LES PONCEAUX", + "code_postal": "37340", + "coordonnees_gps": [ + 47.388268784, + 0.302971878104 + ], + "libelle_d_acheminement": "AVRILLE LES PONCEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.302971878104, + 47.388268784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93e910a0bb3463daac266a6e0f5d668525ab357d", + "fields": { + "code_commune_insee": "47196", + "nom_de_la_commune": "NICOLE", + "code_postal": "47190", + "coordonnees_gps": [ + 44.3322287429, + 0.33213854821 + ], + "libelle_d_acheminement": "NICOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33213854821, + 44.3322287429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "296cbdb15637e99e35d109e6fd68d3f65313efd5", + "fields": { + "ligne_5": "BEAUMONT LA RONCE", + "code_commune_insee": "37021", + "libelle_d_acheminement": "BEAUMONT LOUESTAULT", + "code_postal": "37360", + "nom_de_la_commune": "BEAUMONT LOUESTAULT", + "coordonnees_gps": [ + 47.568810886, + 0.67274558764 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.67274558764, + 47.568810886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52db85babda4b00f2e983a39b273832f117ca0fe", + "fields": { + "code_commune_insee": "47200", + "nom_de_la_commune": "PARRANQUET", + "code_postal": "47210", + "coordonnees_gps": [ + 44.6614016738, + 0.816025305504 + ], + "libelle_d_acheminement": "PARRANQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.816025305504, + 44.6614016738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ff6b011dfd1f3cfe5143d5ebc643037d76cb062", + "fields": { + "code_commune_insee": "37023", + "nom_de_la_commune": "BEAUMONT VILLAGE", + "code_postal": "37460", + "coordonnees_gps": [ + 47.1798992552, + 1.20434805914 + ], + "libelle_d_acheminement": "BEAUMONT VILLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20434805914, + 47.1798992552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9691f83e4e35f57ac5e19b3425d52e3771012f78", + "fields": { + "code_commune_insee": "47205", + "nom_de_la_commune": "PINDERES", + "code_postal": "47700", + "coordonnees_gps": [ + 44.2721306877, + 0.000151355744744 + ], + "libelle_d_acheminement": "PINDERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.000151355744744, + 44.2721306877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2bcc9f90fc8f00b500ef51d23af1e8153e6207b", + "fields": { + "code_commune_insee": "37026", + "nom_de_la_commune": "BETZ LE CHATEAU", + "code_postal": "37600", + "coordonnees_gps": [ + 47.000465147, + 0.95244957404 + ], + "libelle_d_acheminement": "BETZ LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95244957404, + 47.000465147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdfc07cf10dc78e4c481eca8c19382c877149f7b", + "fields": { + "code_commune_insee": "47209", + "nom_de_la_commune": "PONT DU CASSE", + "code_postal": "47480", + "coordonnees_gps": [ + 44.2355202874, + 0.675831855662 + ], + "libelle_d_acheminement": "PONT DU CASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.675831855662, + 44.2355202874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d59b954e8fd8bb089f7b9fea90744cde0c7a9e59", + "fields": { + "code_commune_insee": "37031", + "nom_de_la_commune": "BOURGUEIL", + "code_postal": "37140", + "coordonnees_gps": [ + 47.3103261914, + 0.17424139464 + ], + "libelle_d_acheminement": "BOURGUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17424139464, + 47.3103261914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b8cc14fadaa18854364ef9692a355ca3ecc89d8", + "fields": { + "code_commune_insee": "47211", + "nom_de_la_commune": "POUDENAS", + "code_postal": "47170", + "coordonnees_gps": [ + 44.0412174467, + 0.200335986892 + ], + "libelle_d_acheminement": "POUDENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.200335986892, + 44.0412174467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e700655831721118ff5e1ec4b9334d7f8604691a", + "fields": { + "code_commune_insee": "37035", + "nom_de_la_commune": "BRAYE SOUS FAYE", + "code_postal": "37120", + "coordonnees_gps": [ + 46.9823047601, + 0.328685005492 + ], + "libelle_d_acheminement": "BRAYE SOUS FAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.328685005492, + 46.9823047601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38dacb18d9ea787cab5feb02513f390256189252", + "fields": { + "code_commune_insee": "47213", + "nom_de_la_commune": "PRAYSSAS", + "code_postal": "47360", + "coordonnees_gps": [ + 44.2940807275, + 0.514265870524 + ], + "libelle_d_acheminement": "PRAYSSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.514265870524, + 44.2940807275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "571da3c18fad44985053b026c974ee25fd55b5ea", + "fields": { + "code_commune_insee": "37036", + "nom_de_la_commune": "BRAYE SUR MAULNE", + "code_postal": "37330", + "coordonnees_gps": [ + 47.5595510879, + 0.260858809315 + ], + "libelle_d_acheminement": "BRAYE SUR MAULNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.260858809315, + 47.5595510879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd6ff9856adeb6fc62f895de34598dc49f1bd576", + "fields": { + "code_commune_insee": "47222", + "nom_de_la_commune": "LA REUNION", + "code_postal": "47700", + "coordonnees_gps": [ + 44.2830696786, + 0.118267808801 + ], + "libelle_d_acheminement": "LA REUNION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.118267808801, + 44.2830696786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38cb45d0bd35c4cc39cd752bc2ebc5c1cabfdb38", + "fields": { + "code_commune_insee": "37039", + "nom_de_la_commune": "BRIDORE", + "code_postal": "37600", + "coordonnees_gps": [ + 47.0367101954, + 1.079173286 + ], + "libelle_d_acheminement": "BRIDORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.079173286, + 47.0367101954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c95d3625906344cd276a1bd7093fabddb13eb856", + "fields": { + "code_commune_insee": "47237", + "nom_de_la_commune": "STE COLOMBE DE VILLENEUVE", + "code_postal": "47300", + "coordonnees_gps": [ + 44.3573026111, + 0.6571276816 + ], + "libelle_d_acheminement": "STE COLOMBE DE VILLENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.6571276816, + 44.3573026111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "197f60a7d488c34adc30a12b15c9b85531961837", + "fields": { + "code_commune_insee": "37053", + "nom_de_la_commune": "CHANCEAUX PRES LOCHES", + "code_postal": "37600", + "coordonnees_gps": [ + 47.1409474876, + 0.939622446092 + ], + "libelle_d_acheminement": "CHANCEAUX PRES LOCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.939622446092, + 47.1409474876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c836b02850de3b5213b0a92632d85277e409bdbd", + "fields": { + "code_commune_insee": "47246", + "nom_de_la_commune": "ST HILAIRE DE LUSIGNAN", + "code_postal": "47450", + "coordonnees_gps": [ + 44.2477536964, + 0.53261592446 + ], + "libelle_d_acheminement": "ST HILAIRE DE LUSIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53261592446, + 44.2477536964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18ce2090b5a4fce349538f708dcba2a82e599dab", + "fields": { + "code_commune_insee": "37059", + "nom_de_la_commune": "CHARENTILLY", + "code_postal": "37390", + "coordonnees_gps": [ + 47.4686972065, + 0.595174138773 + ], + "libelle_d_acheminement": "CHARENTILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.595174138773, + 47.4686972065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea6f0489d6e81e38f20d3c847582a91682a07eaa", + "fields": { + "code_commune_insee": "47266", + "nom_de_la_commune": "ST PE ST SIMON", + "code_postal": "47170", + "coordonnees_gps": [ + 44.0026069036, + 0.0935459187354 + ], + "libelle_d_acheminement": "ST PE ST SIMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0935459187354, + 44.0026069036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0d99952272ee05857ce03c00e8d23db08ef99d7", + "fields": { + "code_commune_insee": "37071", + "nom_de_la_commune": "CHEZELLES", + "code_postal": "37220", + "coordonnees_gps": [ + 47.0666739706, + 0.439662413548 + ], + "libelle_d_acheminement": "CHEZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.439662413548, + 47.0666739706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e7a1acb8da689c4e2e777928c17039adf0f6195", + "fields": { + "code_commune_insee": "47269", + "nom_de_la_commune": "ST PIERRE DE CLAIRAC", + "code_postal": "47270", + "coordonnees_gps": [ + 44.1802043993, + 0.752007994419 + ], + "libelle_d_acheminement": "ST PIERRE DE CLAIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.752007994419, + 44.1802043993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52765486a5c7c5fa7753a3b30e29d5d3eb82fd7a", + "fields": { + "code_commune_insee": "37078", + "nom_de_la_commune": "CIRAN", + "code_postal": "37240", + "coordonnees_gps": [ + 47.0515428726, + 0.873159518257 + ], + "libelle_d_acheminement": "CIRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.873159518257, + 47.0515428726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67b1335265b8de23d0fb93a2a4b5158e68a3a250", + "fields": { + "code_commune_insee": "47277", + "nom_de_la_commune": "ST SAUVEUR DE MEILHAN", + "code_postal": "47180", + "coordonnees_gps": [ + 44.4853614152, + -0.00584375673838 + ], + "libelle_d_acheminement": "ST SAUVEUR DE MEILHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00584375673838, + 44.4853614152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6ce97d30cc7fc794a8f35425c51e75900702643", + "fields": { + "code_commune_insee": "37080", + "nom_de_la_commune": "CIVRAY SUR ESVES", + "code_postal": "37160", + "coordonnees_gps": [ + 47.0362576539, + 0.7127037725 + ], + "libelle_d_acheminement": "CIVRAY SUR ESVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7127037725, + 47.0362576539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80507163d0329f9baea2f15f68253c8aed21f01c", + "fields": { + "code_commune_insee": "47280", + "nom_de_la_commune": "ST SYLVESTRE SUR LOT", + "code_postal": "47140", + "coordonnees_gps": [ + 44.4179177939, + 0.808784719613 + ], + "libelle_d_acheminement": "ST SYLVESTRE SUR LOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.808784719613, + 44.4179177939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8fa187bef27d300d570468f42059874f83f58a5", + "fields": { + "code_commune_insee": "37083", + "nom_de_la_commune": "CORMERY", + "code_postal": "37320", + "coordonnees_gps": [ + 47.2592432669, + 0.845873952159 + ], + "libelle_d_acheminement": "CORMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.845873952159, + 47.2592432669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ae3d627bb210d225e66380dc456c47a55b3cb98", + "fields": { + "code_commune_insee": "47287", + "nom_de_la_commune": "SAUMONT", + "code_postal": "47600", + "coordonnees_gps": [ + 44.1272954616, + 0.455699983638 + ], + "libelle_d_acheminement": "SAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.455699983638, + 44.1272954616 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5398cc756d6ed9ab52b6b755fef55e48faa3099", + "fields": { + "code_commune_insee": "37084", + "nom_de_la_commune": "COUESMES", + "code_postal": "37330", + "coordonnees_gps": [ + 47.5537288182, + 0.360356955229 + ], + "libelle_d_acheminement": "COUESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.360356955229, + 47.5537288182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "690d6f7bd24d9d4baa18f05983f80ce0ce3f543e", + "fields": { + "code_commune_insee": "47290", + "nom_de_la_commune": "LA SAUVETAT DU DROPT", + "code_postal": "47800", + "coordonnees_gps": [ + 44.6497758491, + 0.331517448954 + ], + "libelle_d_acheminement": "LA SAUVETAT DU DROPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.331517448954, + 44.6497758491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7916631cf32bd54833d7c9576fa3eb1aefa258ec", + "fields": { + "code_commune_insee": "37086", + "nom_de_la_commune": "COURCELLES DE TOURAINE", + "code_postal": "37330", + "coordonnees_gps": [ + 47.4894185578, + 0.333267121992 + ], + "libelle_d_acheminement": "COURCELLES DE TOURAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.333267121992, + 47.4894185578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc646b3ed528178309d9fd1e7492d4f195f9683d", + "fields": { + "code_commune_insee": "47320", + "nom_de_la_commune": "VILLEFRANCHE DU QUEYRAN", + "code_postal": "47160", + "coordonnees_gps": [ + 44.3035817658, + 0.212075905878 + ], + "libelle_d_acheminement": "VILLEFRANCHE DU QUEYRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.212075905878, + 44.3035817658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d29b5a69252bf63047395a42d912eea091dc9b54", + "fields": { + "code_commune_insee": "37094", + "nom_de_la_commune": "CUSSAY", + "code_postal": "37240", + "coordonnees_gps": [ + 47.0190077261, + 0.768935236733 + ], + "libelle_d_acheminement": "CUSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.768935236733, + 47.0190077261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fe210779acb6e43a4918777bed649824443608a", + "fields": { + "code_commune_insee": "47323", + "nom_de_la_commune": "VILLENEUVE SUR LOT", + "code_postal": "47300", + "coordonnees_gps": [ + 44.4251092866, + 0.742526167632 + ], + "libelle_d_acheminement": "VILLENEUVE SUR LOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.742526167632, + 44.4251092866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02dd20dec37c9294fa0b5f914f7185d24105882e", + "fields": { + "code_commune_insee": "37095", + "nom_de_la_commune": "DAME MARIE LES BOIS", + "code_postal": "37110", + "coordonnees_gps": [ + 47.5494780596, + 1.04682075879 + ], + "libelle_d_acheminement": "DAME MARIE LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04682075879, + 47.5494780596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e37479155007cff5f58936210446cabd3f198eb", + "fields": { + "code_commune_insee": "47325", + "nom_de_la_commune": "VILLETON", + "code_postal": "47400", + "coordonnees_gps": [ + 44.3713219264, + 0.278872642453 + ], + "libelle_d_acheminement": "VILLETON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.278872642453, + 44.3713219264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0bdc024d47c62bf3ad4f6726ebdd44ceec574d7", + "fields": { + "code_commune_insee": "37103", + "nom_de_la_commune": "ESVES LE MOUTIER", + "code_postal": "37240", + "coordonnees_gps": [ + 47.0320001682, + 0.903999367241 + ], + "libelle_d_acheminement": "ESVES LE MOUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.903999367241, + 47.0320001682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dac1c832dda0f1f166b295d98f724ec6e790c70", + "fields": { + "code_commune_insee": "48001", + "nom_de_la_commune": "ALBARET LE COMTAL", + "code_postal": "48310", + "coordonnees_gps": [ + 44.8676627998, + 3.14383678125 + ], + "libelle_d_acheminement": "ALBARET LE COMTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14383678125, + 44.8676627998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f0a6263122b29d9a0002810b3cb8c4d81daa769", + "fields": { + "code_commune_insee": "37109", + "nom_de_la_commune": "FONDETTES", + "code_postal": "37230", + "coordonnees_gps": [ + 47.4111012484, + 0.603284318045 + ], + "libelle_d_acheminement": "FONDETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.603284318045, + 47.4111012484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2704be083c4c2e0bfe1127e0cbadf1ecd3d4cbf7", + "fields": { + "code_commune_insee": "48003", + "nom_de_la_commune": "ALLENC", + "code_postal": "48190", + "coordonnees_gps": [ + 44.5522761044, + 3.67650603753 + ], + "libelle_d_acheminement": "ALLENC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67650603753, + 44.5522761044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d18269e6ccae3a54e5bd526360a0c08f08adff9", + "fields": { + "code_commune_insee": "37113", + "nom_de_la_commune": "LE GRAND PRESSIGNY", + "code_postal": "37350", + "coordonnees_gps": [ + 46.9180024855, + 0.816357986634 + ], + "libelle_d_acheminement": "LE GRAND PRESSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.816357986634, + 46.9180024855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "524df7d304a0f1edfe1d1e80beaab4b80acb3462", + "fields": { + "ligne_5": "ARCOMIE", + "code_commune_insee": "48012", + "libelle_d_acheminement": "LES MONTS VERTS", + "code_postal": "48200", + "nom_de_la_commune": "LES MONTS VERTS", + "coordonnees_gps": [ + 44.8489134822, + 3.22180661807 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22180661807, + 44.8489134822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bc7d6ffeacfa1549faceaa03a2ec6c07203224e", + "fields": { + "code_commune_insee": "37130", + "nom_de_la_commune": "LIGUEIL", + "code_postal": "37240", + "coordonnees_gps": [ + 47.0423190397, + 0.817374235768 + ], + "libelle_d_acheminement": "LIGUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.817374235768, + 47.0423190397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8367973b53f0b6fb6f81fb7fa771d09219cb79ed", + "fields": { + "code_commune_insee": "48013", + "nom_de_la_commune": "BADAROUX", + "code_postal": "48000", + "coordonnees_gps": [ + 44.5399034165, + 3.55404283598 + ], + "libelle_d_acheminement": "BADAROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55404283598, + 44.5399034165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eb9070b68215d292d1108e661a21ae2105b5fcd", + "fields": { + "code_commune_insee": "37137", + "nom_de_la_commune": "LUBLE", + "code_postal": "37330", + "coordonnees_gps": [ + 47.5273559572, + 0.255884396012 + ], + "libelle_d_acheminement": "LUBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.255884396012, + 47.5273559572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cf617c3252b14502959d20d1b7f5fb884ced753", + "fields": { + "code_commune_insee": "48015", + "nom_de_la_commune": "PIED DE BORNE", + "code_postal": "48800", + "coordonnees_gps": [ + 44.4805501734, + 3.9685848144 + ], + "libelle_d_acheminement": "PIED DE BORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9685848144, + 44.4805501734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa6c3dd391dc0a691dca796c99170087ba15d152", + "fields": { + "code_commune_insee": "37141", + "nom_de_la_commune": "LUZILLE", + "code_postal": "37150", + "coordonnees_gps": [ + 47.2651645386, + 1.06257825 + ], + "libelle_d_acheminement": "LUZILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06257825, + 47.2651645386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89e7e970e1c32e050d9e7895a2788c2c4c85e0a1", + "fields": { + "ligne_5": "MAS D ORCIERES", + "code_commune_insee": "48027", + "libelle_d_acheminement": "MONT LOZERE ET GOULET", + "code_postal": "48190", + "nom_de_la_commune": "MONT LOZERE ET GOULET", + "coordonnees_gps": [ + 44.5107452501, + 3.74294007436 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74294007436, + 44.5107452501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a269a12e5422a171ae0f1a66140466fd15bba54", + "fields": { + "code_commune_insee": "37143", + "nom_de_la_commune": "MANTHELAN", + "code_postal": "37240", + "coordonnees_gps": [ + 47.1361002438, + 0.82161358566 + ], + "libelle_d_acheminement": "MANTHELAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82161358566, + 47.1361002438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbf03123edec560bb2bea24050d8dd8d75a36be9", + "fields": { + "ligne_5": "MONTJEZIEU", + "code_commune_insee": "48034", + "libelle_d_acheminement": "LA CANOURGUE", + "code_postal": "48500", + "nom_de_la_commune": "LA CANOURGUE", + "coordonnees_gps": [ + 44.4193711769, + 3.25711827627 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25711827627, + 44.4193711769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "310479692510b100a69e226c86200ba540769846", + "fields": { + "code_commune_insee": "37144", + "nom_de_la_commune": "MARCAY", + "code_postal": "37500", + "coordonnees_gps": [ + 47.0829995703, + 0.209654496806 + ], + "libelle_d_acheminement": "MARCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.209654496806, + 47.0829995703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abe5b8955d100520d36d7cab0dd8843cd5d95954", + "fields": { + "code_commune_insee": "48037", + "nom_de_la_commune": "CHADENET", + "code_postal": "48190", + "coordonnees_gps": [ + 44.5118082071, + 3.64019508936 + ], + "libelle_d_acheminement": "CHADENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64019508936, + 44.5118082071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2e7ecd1ebdebffb4801e6a644fbce7b2c570772", + "fields": { + "code_commune_insee": "37148", + "nom_de_la_commune": "MARIGNY MARMANDE", + "code_postal": "37120", + "coordonnees_gps": [ + 46.9765766171, + 0.481375571528 + ], + "libelle_d_acheminement": "MARIGNY MARMANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.481375571528, + 46.9765766171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddb897e5f66c67a6f5b964c05f91d19e04624655", + "fields": { + "ligne_5": "ST SYMPHORIEN", + "code_commune_insee": "48038", + "libelle_d_acheminement": "BEL AIR VAL D ANCE", + "code_postal": "48600", + "nom_de_la_commune": "BEL AIR VAL D ANCE", + "coordonnees_gps": [ + 44.8556410691, + 3.65464522563 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65464522563, + 44.8556410691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fbb2fde785122c2c770f0eb4f3fdce88865322e", + "fields": { + "code_commune_insee": "37150", + "nom_de_la_commune": "MAZIERES DE TOURAINE", + "code_postal": "37130", + "coordonnees_gps": [ + 47.3913160682, + 0.429463842673 + ], + "libelle_d_acheminement": "MAZIERES DE TOURAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.429463842673, + 47.3913160682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac0fb3c0c60910ea75eadeb9c7ba9799480a13ff", + "fields": { + "code_commune_insee": "48039", + "nom_de_la_commune": "CHANAC", + "code_postal": "48230", + "coordonnees_gps": [ + 44.4502200567, + 3.34457977647 + ], + "libelle_d_acheminement": "CHANAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34457977647, + 44.4502200567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cda0d6324943c5fdbaa976226c7f06a42a532f4d", + "fields": { + "code_commune_insee": "37161", + "nom_de_la_commune": "MOSNES", + "code_postal": "37530", + "coordonnees_gps": [ + 47.4460775152, + 1.09838820184 + ], + "libelle_d_acheminement": "MOSNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09838820184, + 47.4460775152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93a3f5f77d27c57a1fc0877733b91199314724ca", + "fields": { + "code_commune_insee": "48041", + "nom_de_la_commune": "CHASTANIER", + "code_postal": "48300", + "coordonnees_gps": [ + 44.722639702, + 3.75305127719 + ], + "libelle_d_acheminement": "CHASTANIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75305127719, + 44.722639702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1ab5fcb05eedf811731176067c7c9581d22f0ea", + "fields": { + "code_commune_insee": "37162", + "nom_de_la_commune": "MOUZAY", + "code_postal": "37600", + "coordonnees_gps": [ + 47.1043452782, + 0.900306738422 + ], + "libelle_d_acheminement": "MOUZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.900306738422, + 47.1043452782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad5ec6f2d47740d2ddd2ed1b0d8751b6eeb484c7", + "fields": { + "code_commune_insee": "48054", + "nom_de_la_commune": "CUBIERETTES", + "code_postal": "48190", + "coordonnees_gps": [ + 44.4437323687, + 3.78750024039 + ], + "libelle_d_acheminement": "CUBIERETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78750024039, + 44.4437323687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e6a0b6cee707ef82f27c66e0dfc388075260ac2", + "fields": { + "code_commune_insee": "37163", + "nom_de_la_commune": "NAZELLES NEGRON", + "code_postal": "37530", + "coordonnees_gps": [ + 47.432533517, + 0.946831274999 + ], + "libelle_d_acheminement": "NAZELLES NEGRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.946831274999, + 47.432533517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df041d0f2b156ef07a868405baafa9b69d915e32", + "fields": { + "code_commune_insee": "48058", + "nom_de_la_commune": "LA FAGE MONTIVERNOUX", + "code_postal": "48310", + "coordonnees_gps": [ + 44.7472604379, + 3.15153193685 + ], + "libelle_d_acheminement": "LA FAGE MONTIVERNOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15153193685, + 44.7472604379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfab8adf96aa78bd97d351444f1d95c8c4509488", + "fields": { + "code_commune_insee": "37165", + "nom_de_la_commune": "NEUIL", + "code_postal": "37190", + "coordonnees_gps": [ + 47.1844634588, + 0.529053683282 + ], + "libelle_d_acheminement": "NEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.529053683282, + 47.1844634588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28244ffb50448c97e57b5834502a5a5321257e73", + "fields": { + "code_commune_insee": "48069", + "nom_de_la_commune": "GATUZIERES", + "code_postal": "48150", + "coordonnees_gps": [ + 44.1950868621, + 3.49763818762 + ], + "libelle_d_acheminement": "GATUZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49763818762, + 44.1950868621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f0e512e399b4327b318bddd973eabeb701a2702", + "fields": { + "code_commune_insee": "37170", + "nom_de_la_commune": "NEUVY LE ROI", + "code_postal": "37370", + "coordonnees_gps": [ + 47.6044637053, + 0.589828004611 + ], + "libelle_d_acheminement": "NEUVY LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.589828004611, + 47.6044637053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "849572e0da9e9ffbb574352d4c3dddb775cf70a3", + "fields": { + "code_commune_insee": "48077", + "nom_de_la_commune": "JULIANGES", + "code_postal": "48140", + "coordonnees_gps": [ + 44.9365351295, + 3.31930842194 + ], + "libelle_d_acheminement": "JULIANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31930842194, + 44.9365351295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bacbbbd54d24b63c04bb971c08c01f046dd845e9", + "fields": { + "code_commune_insee": "37176", + "nom_de_la_commune": "NOYANT DE TOURAINE", + "code_postal": "37800", + "coordonnees_gps": [ + 47.1020911221, + 0.567489914117 + ], + "libelle_d_acheminement": "NOYANT DE TOURAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.567489914117, + 47.1020911221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4649849308a6d35d089d3750d30380196df856fc", + "fields": { + "code_commune_insee": "48086", + "nom_de_la_commune": "LUC", + "code_postal": "48250", + "coordonnees_gps": [ + 44.6366875851, + 3.86550888829 + ], + "libelle_d_acheminement": "LUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86550888829, + 44.6366875851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "608e76fb34c7cb6d8db88223fe31f9fe5ea231b8", + "fields": { + "code_commune_insee": "37178", + "nom_de_la_commune": "PANZOULT", + "code_postal": "37220", + "coordonnees_gps": [ + 47.1645476117, + 0.407008827504 + ], + "libelle_d_acheminement": "PANZOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.407008827504, + 47.1645476117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8dd6656cd810379f935819b371180aa552334e7", + "fields": { + "ligne_5": "LE MASSEGROS", + "code_commune_insee": "48094", + "libelle_d_acheminement": "MASSEGROS CAUSSES GORGES", + "code_postal": "48500", + "nom_de_la_commune": "MASSEGROS CAUSSES GORGES", + "coordonnees_gps": [ + 44.2937484234, + 3.15910137508 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15910137508, + 44.2937484234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b05ccc3069000669cfb326db2949a329c24704c", + "fields": { + "code_commune_insee": "37184", + "nom_de_la_commune": "LE PETIT PRESSIGNY", + "code_postal": "37350", + "coordonnees_gps": [ + 46.9099746457, + 0.917102483604 + ], + "libelle_d_acheminement": "LE PETIT PRESSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.917102483604, + 46.9099746457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5d6e7e51472839112fea0083ff5c1d147996715", + "fields": { + "code_commune_insee": "48095", + "nom_de_la_commune": "MENDE", + "code_postal": "48000", + "coordonnees_gps": [ + 44.5294508592, + 3.48086881176 + ], + "libelle_d_acheminement": "MENDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48086881176, + 44.5294508592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff84ac355af30c2a3447cf3a80d498b37d6d27ae", + "fields": { + "code_commune_insee": "37185", + "nom_de_la_commune": "POCE SUR CISSE", + "code_postal": "37530", + "coordonnees_gps": [ + 47.4435625519, + 0.987369679483 + ], + "libelle_d_acheminement": "POCE SUR CISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.987369679483, + 47.4435625519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1099d96b6a85b9c6d9d221dd771a3ab994dd919f", + "fields": { + "ligne_5": "FONTANES", + "code_commune_insee": "48105", + "libelle_d_acheminement": "NAUSSAC FONTANES", + "code_postal": "48300", + "nom_de_la_commune": "NAUSSAC FONTANES", + "coordonnees_gps": [ + 44.7573739721, + 3.8000356543 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8000356543, + 44.7573739721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e1d6a9abe61fa2c48fcbb16fa97074c92b3529d", + "fields": { + "code_commune_insee": "37194", + "nom_de_la_commune": "REUGNY", + "code_postal": "37380", + "coordonnees_gps": [ + 47.4859477646, + 0.872119692494 + ], + "libelle_d_acheminement": "REUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.872119692494, + 47.4859477646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12b0e328ea72756faa5a8e4adcb58aacca342533", + "fields": { + "code_commune_insee": "48106", + "nom_de_la_commune": "NOALHAC", + "code_postal": "48310", + "coordonnees_gps": [ + 44.7988546205, + 3.11483101458 + ], + "libelle_d_acheminement": "NOALHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11483101458, + 44.7988546205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c7d2b47c7f443e39c1857a2e8f1571a1ee493bb", + "fields": { + "code_commune_insee": "37197", + "nom_de_la_commune": "RIGNY USSE", + "code_postal": "37420", + "coordonnees_gps": [ + 47.2510833854, + 0.305125199741 + ], + "libelle_d_acheminement": "RIGNY USSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.305125199741, + 47.2510833854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd719ef75d723133a346e7bd5b946c92697f201c", + "fields": { + "code_commune_insee": "48110", + "nom_de_la_commune": "PAULHAC EN MARGERIDE", + "code_postal": "48140", + "coordonnees_gps": [ + 44.9435917668, + 3.38544485053 + ], + "libelle_d_acheminement": "PAULHAC EN MARGERIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38544485053, + 44.9435917668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b39fb937c9d9bf96857f94ace5b50ee1176c00c", + "fields": { + "code_commune_insee": "37199", + "nom_de_la_commune": "RILLY SUR VIENNE", + "code_postal": "37220", + "coordonnees_gps": [ + 47.055830392, + 0.499244209913 + ], + "libelle_d_acheminement": "RILLY SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.499244209913, + 47.055830392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85f3707343a42e330e1390ee232089376085bd29", + "fields": { + "code_commune_insee": "48111", + "nom_de_la_commune": "PELOUSE", + "code_postal": "48000", + "coordonnees_gps": [ + 44.5725282842, + 3.60664798147 + ], + "libelle_d_acheminement": "PELOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60664798147, + 44.5725282842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a0373b08b14be39765dd1d615f68e57c21a4ef6", + "fields": { + "code_commune_insee": "37200", + "nom_de_la_commune": "RIVARENNES", + "code_postal": "37190", + "coordonnees_gps": [ + 47.2512605554, + 0.362365468313 + ], + "libelle_d_acheminement": "RIVARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.362365468313, + 47.2512605554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "946b124f8da94514dccb3bffbe40b6ca0ce9e3a5", + "fields": { + "code_commune_insee": "48121", + "nom_de_la_commune": "PRUNIERES", + "code_postal": "48200", + "coordonnees_gps": [ + 44.8174063677, + 3.3349356186 + ], + "libelle_d_acheminement": "PRUNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3349356186, + 44.8174063677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5842fbfb2b386a0113303059b257d2add6f317ab", + "fields": { + "code_commune_insee": "37202", + "nom_de_la_commune": "LA ROCHE CLERMAULT", + "code_postal": "37500", + "coordonnees_gps": [ + 47.128052489, + 0.213550560203 + ], + "libelle_d_acheminement": "LA ROCHE CLERMAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.213550560203, + 47.128052489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e204995c3d56b6c88658813976a375358e8c011", + "fields": { + "code_commune_insee": "48124", + "nom_de_la_commune": "RECOULES DE FUMAS", + "code_postal": "48100", + "coordonnees_gps": [ + 44.6318260486, + 3.3333350494 + ], + "libelle_d_acheminement": "RECOULES DE FUMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3333350494, + 44.6318260486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bfb2bf2aa06cb29e62e4ccb9a9eeb45eededad3", + "fields": { + "code_commune_insee": "37207", + "nom_de_la_commune": "ST AUBIN LE DEPEINT", + "code_postal": "37370", + "coordonnees_gps": [ + 47.6184568197, + 0.397095725554 + ], + "libelle_d_acheminement": "ST AUBIN LE DEPEINT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.397095725554, + 47.6184568197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69efeba1b4dc76199af9e8febe6dd4d2c8c7579f", + "fields": { + "ligne_5": "CHAPEAUROUX", + "code_commune_insee": "48139", + "libelle_d_acheminement": "ST BONNET LAVAL", + "code_postal": "48600", + "nom_de_la_commune": "ST BONNET LAVAL", + "coordonnees_gps": [ + 44.8174157178, + 3.72227564708 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72227564708, + 44.8174157178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c781b1a860d2d87fc1ea8e8731862b25e97c4e05", + "fields": { + "code_commune_insee": "37208", + "nom_de_la_commune": "ST AVERTIN", + "code_postal": "37550", + "coordonnees_gps": [ + 47.3571561121, + 0.737544440483 + ], + "libelle_d_acheminement": "ST AVERTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.737544440483, + 47.3571561121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0b4d6e56ff8154c1811a50afafce9c68b160cb3", + "fields": { + "ligne_5": "LAVAL ATGER", + "code_commune_insee": "48139", + "libelle_d_acheminement": "ST BONNET LAVAL", + "code_postal": "48600", + "nom_de_la_commune": "ST BONNET LAVAL", + "coordonnees_gps": [ + 44.8174157178, + 3.72227564708 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72227564708, + 44.8174157178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "145db08ccfc13fd66c7a2c7452c5aa4bb8b34e11", + "fields": { + "code_commune_insee": "37217", + "nom_de_la_commune": "ST ETIENNE DE CHIGNY", + "code_postal": "37230", + "coordonnees_gps": [ + 47.3926426978, + 0.498863635836 + ], + "libelle_d_acheminement": "ST ETIENNE DE CHIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.498863635836, + 47.3926426978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3162e82a66ed475676983e75f49cc6726072c21", + "fields": { + "ligne_5": "ST BONNET DE MONTAUROUX", + "code_commune_insee": "48139", + "libelle_d_acheminement": "ST BONNET LAVAL", + "code_postal": "48600", + "nom_de_la_commune": "ST BONNET LAVAL", + "coordonnees_gps": [ + 44.8174157178, + 3.72227564708 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72227564708, + 44.8174157178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cab517639a7d80d9d734ec1c8eedcd365ff81b89", + "fields": { + "code_commune_insee": "37223", + "nom_de_la_commune": "ST LAURENT DE LIN", + "code_postal": "37330", + "coordonnees_gps": [ + 47.5132118846, + 0.271661867347 + ], + "libelle_d_acheminement": "ST LAURENT DE LIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.271661867347, + 47.5132118846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46f0b6d4aef229b742acf0cbcc818559240291a6", + "fields": { + "code_commune_insee": "48144", + "nom_de_la_commune": "STE CROIX VALLEE FRANCAISE", + "code_postal": "48110", + "coordonnees_gps": [ + 44.1863337479, + 3.74222985458 + ], + "libelle_d_acheminement": "STE CROIX VALLEE FRANCAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74222985458, + 44.1863337479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7f283ff4f5999dcee0224f5b84a449648b13ca4", + "fields": { + "code_commune_insee": "37230", + "nom_de_la_commune": "ST OUEN LES VIGNES", + "code_postal": "37530", + "coordonnees_gps": [ + 47.4793924491, + 1.00199980889 + ], + "libelle_d_acheminement": "ST OUEN LES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00199980889, + 47.4793924491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41d846d1c9fdaf717f5a1e42b82da0cf2f16b069", + "fields": { + "code_commune_insee": "48147", + "nom_de_la_commune": "ST ETIENNE DU VALDONNEZ", + "code_postal": "48000", + "coordonnees_gps": [ + 44.4420560828, + 3.57373923919 + ], + "libelle_d_acheminement": "ST ETIENNE DU VALDONNEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57373923919, + 44.4420560828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d38d28d828afb6da275666b195ac0e1ddcc0d364", + "fields": { + "code_commune_insee": "37231", + "nom_de_la_commune": "ST PATERNE RACAN", + "code_postal": "37370", + "coordonnees_gps": [ + 47.5816905056, + 0.466637692187 + ], + "libelle_d_acheminement": "ST PATERNE RACAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.466637692187, + 47.5816905056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12e8086d187a51e77027d9870ae2986d8d52c8e3", + "fields": { + "code_commune_insee": "48149", + "nom_de_la_commune": "STE EULALIE", + "code_postal": "48120", + "coordonnees_gps": [ + 44.7843192803, + 3.48437305584 + ], + "libelle_d_acheminement": "STE EULALIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48437305584, + 44.7843192803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "439eb4f60c75c07758713c8f01cda05407efd880", + "fields": { + "code_commune_insee": "37233", + "nom_de_la_commune": "ST PIERRE DES CORPS", + "code_postal": "37700", + "coordonnees_gps": [ + 47.3884488197, + 0.738011772072 + ], + "libelle_d_acheminement": "ST PIERRE DES CORPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.738011772072, + 47.3884488197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9fad2d509b269d643a6d8726345f9beb5b8667b", + "fields": { + "ligne_5": "ST ANDEOL DE CLERGUEMORT", + "code_commune_insee": "48152", + "libelle_d_acheminement": "VENTALON EN CEVENNES", + "code_postal": "48160", + "nom_de_la_commune": "VENTALON EN CEVENNES", + "coordonnees_gps": [ + 44.2940872699, + 3.8666152032 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8666152032, + 44.2940872699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f8129686a0af7e93360fd0ecc1a64c2f5220634", + "fields": { + "code_commune_insee": "37237", + "nom_de_la_commune": "ST ROCH", + "code_postal": "37390", + "coordonnees_gps": [ + 47.4460052887, + 0.574049173114 + ], + "libelle_d_acheminement": "ST ROCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.574049173114, + 47.4460052887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cd607a7b8ef1c6f21302c297ca2fa77c8c7b4a2", + "fields": { + "code_commune_insee": "48153", + "nom_de_la_commune": "ST GAL", + "code_postal": "48700", + "coordonnees_gps": [ + 44.6677397831, + 3.41592493596 + ], + "libelle_d_acheminement": "ST GAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41592493596, + 44.6677397831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9be0e8f413dc8666363206cbd4e9752fcc036861", + "fields": { + "code_commune_insee": "37241", + "nom_de_la_commune": "SAVIGNE SUR LATHAN", + "code_postal": "37340", + "coordonnees_gps": [ + 47.4496709939, + 0.326681669854 + ], + "libelle_d_acheminement": "SAVIGNE SUR LATHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.326681669854, + 47.4496709939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "940907396101adc386d03c66bc69f710239a9615", + "fields": { + "code_commune_insee": "48157", + "nom_de_la_commune": "STE HELENE", + "code_postal": "48190", + "coordonnees_gps": [ + 44.5200305066, + 3.60341341973 + ], + "libelle_d_acheminement": "STE HELENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60341341973, + 44.5200305066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "665b2901007b78f71f134615050f7e0e725c6fff", + "fields": { + "code_commune_insee": "37244", + "nom_de_la_commune": "SAZILLY", + "code_postal": "37220", + "coordonnees_gps": [ + 47.1257115061, + 0.349907855669 + ], + "libelle_d_acheminement": "SAZILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.349907855669, + 47.1257115061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bb2f30a3a9e3c51ce893b6813f799247c0c12aa", + "fields": { + "code_commune_insee": "48160", + "nom_de_la_commune": "ST JEAN LA FOUILLOUSE", + "code_postal": "48170", + "coordonnees_gps": [ + 44.7097136887, + 3.69001544129 + ], + "libelle_d_acheminement": "ST JEAN LA FOUILLOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69001544129, + 44.7097136887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0ed666b85f63ee855c416963f091722b9b1555a", + "fields": { + "code_commune_insee": "37248", + "nom_de_la_commune": "SEUILLY", + "code_postal": "37500", + "coordonnees_gps": [ + 47.1268380183, + 0.160711623152 + ], + "libelle_d_acheminement": "SEUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.160711623152, + 47.1268380183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2071b68886c906fd7cc2cd6dbbade872318342e4", + "fields": { + "code_commune_insee": "48163", + "nom_de_la_commune": "ST JULIEN DES POINTS", + "code_postal": "48160", + "coordonnees_gps": [ + 44.259634137, + 3.96080381254 + ], + "libelle_d_acheminement": "ST JULIEN DES POINTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96080381254, + 44.259634137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d98b07f16aac9e45afb668daaf3483485559046f", + "fields": { + "code_commune_insee": "37249", + "nom_de_la_commune": "SONZAY", + "code_postal": "37360", + "coordonnees_gps": [ + 47.5132295352, + 0.477318608406 + ], + "libelle_d_acheminement": "SONZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.477318608406, + 47.5132295352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a210932b204a3fa2f5b31c36beb8b7e7e0dec6c", + "fields": { + "code_commune_insee": "48170", + "nom_de_la_commune": "ST MARTIN DE BOUBAUX", + "code_postal": "48160", + "coordonnees_gps": [ + 44.194298693, + 3.9183444604 + ], + "libelle_d_acheminement": "ST MARTIN DE BOUBAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9183444604, + 44.194298693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91fad66a8cbbb93692bee9c8b25a8788ede6eb7f", + "fields": { + "code_commune_insee": "37250", + "nom_de_la_commune": "SORIGNY", + "code_postal": "37250", + "coordonnees_gps": [ + 47.2310354675, + 0.686650122405 + ], + "libelle_d_acheminement": "SORIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.686650122405, + 47.2310354675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5de1aa145b79e6d030150026aada46432448331b", + "fields": { + "code_commune_insee": "48175", + "nom_de_la_commune": "ST PIERRE DE NOGARET", + "code_postal": "48340", + "coordonnees_gps": [ + 44.4874734198, + 3.1270768416 + ], + "libelle_d_acheminement": "ST PIERRE DE NOGARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1270768416, + 44.4874734198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98c62eee7bb83d67f765ead48da1fe8b8ebda666", + "fields": { + "code_commune_insee": "37252", + "nom_de_la_commune": "SOUVIGNY DE TOURAINE", + "code_postal": "37530", + "coordonnees_gps": [ + 47.3983473379, + 1.08415329662 + ], + "libelle_d_acheminement": "SOUVIGNY DE TOURAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08415329662, + 47.3983473379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "981946d03ed25541c1ee5f94ec466680a9835861", + "fields": { + "code_commune_insee": "48182", + "nom_de_la_commune": "ST SAUVEUR DE GINESTOUX", + "code_postal": "48170", + "coordonnees_gps": [ + 44.7018049753, + 3.61535812137 + ], + "libelle_d_acheminement": "ST SAUVEUR DE GINESTOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61535812137, + 44.7018049753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86082d89d62e97a0eef5b063f728b0b4ef8c5420", + "fields": { + "ligne_5": "TAUXIGNY", + "code_commune_insee": "37254", + "libelle_d_acheminement": "TAUXIGNY ST BAULD", + "code_postal": "37310", + "nom_de_la_commune": "TAUXIGNY ST BAULD", + "coordonnees_gps": [ + 47.2077298094, + 0.829508341853 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.829508341853, + 47.2077298094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f275d7844e8c48d7f168e8f444cb8ec911d8bff", + "fields": { + "code_commune_insee": "48188", + "nom_de_la_commune": "SERVERETTE", + "code_postal": "48700", + "coordonnees_gps": [ + 44.7000537421, + 3.39168881156 + ], + "libelle_d_acheminement": "SERVERETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39168881156, + 44.7000537421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9c70d5059af541a44b2e5aeca8786bc0d553225", + "fields": { + "code_commune_insee": "37256", + "nom_de_la_commune": "THENEUIL", + "code_postal": "37220", + "coordonnees_gps": [ + 47.0997750575, + 0.433594767528 + ], + "libelle_d_acheminement": "THENEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.433594767528, + 47.0997750575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b87843babd36f80aff4d7eeb5083df82d321b63", + "fields": { + "ligne_5": "MAS DE LA BARQUE", + "code_commune_insee": "48198", + "libelle_d_acheminement": "VILLEFORT", + "code_postal": "48800", + "nom_de_la_commune": "VILLEFORT", + "coordonnees_gps": [ + 44.4441033418, + 3.93038185016 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93038185016, + 44.4441033418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f244e8d85dcf58a5f69e7453a1983babfee124e1", + "fields": { + "code_commune_insee": "37258", + "nom_de_la_commune": "THIZAY", + "code_postal": "37500", + "coordonnees_gps": [ + 47.1642216869, + 0.141915191024 + ], + "libelle_d_acheminement": "THIZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.141915191024, + 47.1642216869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0451da015ffc647eb7589d82d70ed446ed083300", + "fields": { + "ligne_5": "LOUERRE", + "code_commune_insee": "49003", + "libelle_d_acheminement": "TUFFALUN", + "code_postal": "49700", + "nom_de_la_commune": "TUFFALUN", + "coordonnees_gps": [ + 47.2573828474, + -0.337427788842 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.337427788842, + 47.2573828474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cf08f61af1d94ad1590f697b17a0077ca2eada7", + "fields": { + "code_commune_insee": "37259", + "nom_de_la_commune": "TOURNON ST PIERRE", + "code_postal": "37290", + "coordonnees_gps": [ + 46.7610344605, + 0.946565591011 + ], + "libelle_d_acheminement": "TOURNON ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.946565591011, + 46.7610344605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbdfa75d3d9631f7469e63bccab7f62e97a450ed", + "fields": { + "ligne_5": "NOYANT LA PLAINE", + "code_commune_insee": "49003", + "libelle_d_acheminement": "TUFFALUN", + "code_postal": "49700", + "nom_de_la_commune": "TUFFALUN", + "coordonnees_gps": [ + 47.2573828474, + -0.337427788842 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.337427788842, + 47.2573828474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b27dc5c8f04c6ce6be28d9aa68edc61678820a41", + "fields": { + "code_commune_insee": "37261", + "nom_de_la_commune": "TOURS", + "code_postal": "37200", + "coordonnees_gps": [ + 47.3986382281, + 0.696526376417 + ], + "libelle_d_acheminement": "TOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.696526376417, + 47.3986382281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f321d3bb305f1d1084e2a4fe01b5acab5950a0cd", + "fields": { + "code_commune_insee": "49011", + "nom_de_la_commune": "ARTANNES SUR THOUET", + "code_postal": "49260", + "coordonnees_gps": [ + 47.2019406008, + -0.0969244084187 + ], + "libelle_d_acheminement": "ARTANNES SUR THOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0969244084187, + 47.2019406008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58e769ce94e302f89c70f9f8df9f2d396cebe818", + "fields": { + "code_commune_insee": "37264", + "nom_de_la_commune": "VALLERES", + "code_postal": "37190", + "coordonnees_gps": [ + 47.3068592905, + 0.473611615141 + ], + "libelle_d_acheminement": "VALLERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.473611615141, + 47.3068592905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cd61e2d948566075d8cea4fbf67114bec1d3eee", + "fields": { + "ligne_5": "ECHEMIRE", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29e6a3d7012d780048408a927616700c5206626e", + "fields": { + "code_commune_insee": "37266", + "nom_de_la_commune": "VEIGNE", + "code_postal": "37250", + "coordonnees_gps": [ + 47.2888419417, + 0.729965991438 + ], + "libelle_d_acheminement": "VEIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.729965991438, + 47.2888419417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e9da6c3d4f37e08f22b17a548450bc8e1b92de2", + "fields": { + "ligne_5": "CHARCE ST ELLIER SUR AUBANCE", + "code_commune_insee": "49050", + "libelle_d_acheminement": "BRISSAC LOIRE AUBANCE", + "code_postal": "49320", + "nom_de_la_commune": "BRISSAC LOIRE AUBANCE", + "coordonnees_gps": [ + 47.3416678749, + -0.441366325976 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441366325976, + 47.3416678749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9640e4889cfa6716cbf31ac0d45775d024233bb0", + "fields": { + "code_commune_insee": "38005", + "nom_de_la_commune": "ALLEMOND", + "code_postal": "38114", + "coordonnees_gps": [ + 45.1710812431, + 6.01841266014 + ], + "libelle_d_acheminement": "ALLEMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01841266014, + 45.1710812431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e521134267c97ce9c98dcddb040d694a6e794d2", + "fields": { + "code_commune_insee": "49053", + "nom_de_la_commune": "BROSSAY", + "code_postal": "49700", + "coordonnees_gps": [ + 47.1680323936, + -0.216255821188 + ], + "libelle_d_acheminement": "BROSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.216255821188, + 47.1680323936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9665ee984e7e22b3e057915986dc2f937acbaee3", + "fields": { + "code_commune_insee": "38011", + "nom_de_la_commune": "ANTHON", + "code_postal": "38280", + "coordonnees_gps": [ + 45.7847587355, + 5.15418784816 + ], + "libelle_d_acheminement": "ANTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15418784816, + 45.7847587355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84cc441019947cd0e567c6fd6799e413d03547b9", + "fields": { + "code_commune_insee": "49057", + "nom_de_la_commune": "CERNUSSON", + "code_postal": "49310", + "coordonnees_gps": [ + 47.1678543768, + -0.482175305378 + ], + "libelle_d_acheminement": "CERNUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.482175305378, + 47.1678543768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df75ab25ff0a2c7ffadf1f3b6adc6fe6bbfd7c1d", + "fields": { + "code_commune_insee": "38018", + "nom_de_la_commune": "AUBERIVES EN ROYANS", + "code_postal": "38680", + "coordonnees_gps": [ + 45.0650470606, + 5.31134637668 + ], + "libelle_d_acheminement": "AUBERIVES EN ROYANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31134637668, + 45.0650470606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52024d3bca7848187e9ebd799ead9bcf737ba82a", + "fields": { + "ligne_5": "LANDEMONT", + "code_commune_insee": "49069", + "libelle_d_acheminement": "OREE D ANJOU", + "code_postal": "49270", + "nom_de_la_commune": "OREE D ANJOU", + "coordonnees_gps": [ + 47.3218941947, + -1.26053581871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26053581871, + 47.3218941947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe22d01794e185ee950ca0eba15ffaaa86fbbcd8", + "fields": { + "code_commune_insee": "38031", + "nom_de_la_commune": "BEAUFIN", + "code_postal": "38970", + "coordonnees_gps": [ + 44.7869957954, + 5.95901244444 + ], + "libelle_d_acheminement": "BEAUFIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95901244444, + 44.7869957954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92ba1f49fb55ba7d2f719fbc98a263fcae9eff0d", + "fields": { + "ligne_5": "BOUZILLE", + "code_commune_insee": "49069", + "libelle_d_acheminement": "OREE D ANJOU", + "code_postal": "49530", + "nom_de_la_commune": "OREE D ANJOU", + "coordonnees_gps": [ + 47.3218941947, + -1.26053581871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26053581871, + 47.3218941947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c14ff1bcdca3b7e19938ad97a88a14ef4ef8cffd", + "fields": { + "code_commune_insee": "38032", + "nom_de_la_commune": "BEAUFORT", + "code_postal": "38270", + "coordonnees_gps": [ + 45.3294079707, + 5.11631301221 + ], + "libelle_d_acheminement": "BEAUFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11631301221, + 45.3294079707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0571f7743852c0c20e5c29059414ee58e4393bcc", + "fields": { + "code_commune_insee": "49076", + "nom_de_la_commune": "LA CHAPELLE ST LAUD", + "code_postal": "49140", + "coordonnees_gps": [ + 47.6139328972, + -0.298192588523 + ], + "libelle_d_acheminement": "LA CHAPELLE ST LAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.298192588523, + 47.6139328972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5d4953c3f0ccd9db074252532867edb8f13d7ec", + "fields": { + "code_commune_insee": "38035", + "nom_de_la_commune": "BEAUVOIR DE MARC", + "code_postal": "38440", + "coordonnees_gps": [ + 45.5199988215, + 5.07965100181 + ], + "libelle_d_acheminement": "BEAUVOIR DE MARC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07965100181, + 45.5199988215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09bf7115ff0a56b6b7ca8fa62fd7e57b95285a3b", + "fields": { + "ligne_5": "MARIGNE", + "code_commune_insee": "49080", + "libelle_d_acheminement": "LES HAUTS D ANJOU", + "code_postal": "49330", + "nom_de_la_commune": "LES HAUTS D ANJOU", + "coordonnees_gps": [ + 47.6841712906, + -0.495930395639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.495930395639, + 47.6841712906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26996ad80a9d196786b029d9b7f48759611e0640", + "fields": { + "code_commune_insee": "38037", + "nom_de_la_commune": "BELLEGARDE POUSSIEU", + "code_postal": "38270", + "coordonnees_gps": [ + 45.3784722869, + 4.95134769668 + ], + "libelle_d_acheminement": "BELLEGARDE POUSSIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95134769668, + 45.3784722869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "449ee7adc0099000856f057ce4ba74f6d13ef0e7", + "fields": { + "ligne_5": "CHAVAGNES", + "code_commune_insee": "49086", + "libelle_d_acheminement": "TERRANJOU", + "code_postal": "49380", + "nom_de_la_commune": "TERRANJOU", + "coordonnees_gps": [ + 47.274007949, + -0.439804383087 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.439804383087, + 47.274007949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "616eccdcbb26efc56d72f723c7d34957a1142c3a", + "fields": { + "code_commune_insee": "38044", + "nom_de_la_commune": "BIOL", + "code_postal": "38690", + "coordonnees_gps": [ + 45.4963748824, + 5.36908721787 + ], + "libelle_d_acheminement": "BIOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36908721787, + 45.4963748824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "186f9458bfaff3601f1cca545c409149b19f236f", + "fields": { + "ligne_5": "LA JUMELLIERE", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49120", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebca42c2ec69e8850ad162ffc4d8564725b62296", + "fields": { + "code_commune_insee": "38045", + "nom_de_la_commune": "BIVIERS", + "code_postal": "38330", + "coordonnees_gps": [ + 45.2431208379, + 5.79850862941 + ], + "libelle_d_acheminement": "BIVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79850862941, + 45.2431208379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de578f18a86afe8a3cac888a4c0801d514cf00be", + "fields": { + "ligne_5": "LES GARDES", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49120", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05b42345fad56bf24bfb7086d61f61983c0c7815", + "fields": { + "code_commune_insee": "38051", + "nom_de_la_commune": "BOUGE CHAMBALUD", + "code_postal": "38150", + "coordonnees_gps": [ + 45.3199496154, + 4.89224793347 + ], + "libelle_d_acheminement": "BOUGE CHAMBALUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89224793347, + 45.3199496154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "693c3be3ee209442968a7ef4d122d4792e4623fc", + "fields": { + "ligne_5": "LE PUY ST BONNET", + "code_commune_insee": "49099", + "libelle_d_acheminement": "CHOLET", + "code_postal": "49300", + "nom_de_la_commune": "CHOLET", + "coordonnees_gps": [ + 47.0454402992, + -0.877886189605 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.877886189605, + 47.0454402992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d21db86239a618fa99c6037f530b6bb0b0f6cfdb", + "fields": { + "code_commune_insee": "38052", + "nom_de_la_commune": "LE BOURG D OISANS", + "code_postal": "38520", + "coordonnees_gps": [ + 45.0344190241, + 6.03272664873 + ], + "libelle_d_acheminement": "LE BOURG D OISANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03272664873, + 45.0344190241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2374fe9b0c8e6cba76d4a52a9d77546fef6288ea", + "fields": { + "code_commune_insee": "49112", + "nom_de_la_commune": "LE COUDRAY MACOUARD", + "code_postal": "49260", + "coordonnees_gps": [ + 47.1825767187, + -0.129426451927 + ], + "libelle_d_acheminement": "LE COUDRAY MACOUARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.129426451927, + 47.1825767187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5977ee39d6497c1140c3b2c4b8fa6cb307a65423", + "fields": { + "ligne_5": "JALLIEU", + "code_commune_insee": "38053", + "libelle_d_acheminement": "BOURGOIN JALLIEU", + "code_postal": "38300", + "nom_de_la_commune": "BOURGOIN JALLIEU", + "coordonnees_gps": [ + 45.6022027954, + 5.27393762111 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27393762111, + 45.6022027954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92bc8079448f122458cd275312c868c9231aa521", + "fields": { + "code_commune_insee": "49113", + "nom_de_la_commune": "COURCHAMPS", + "code_postal": "49260", + "coordonnees_gps": [ + 47.1979795886, + -0.157247285018 + ], + "libelle_d_acheminement": "COURCHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.157247285018, + 47.1979795886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b051a7fe1a38da07b1e42d90e14d629363d176c6", + "fields": { + "code_commune_insee": "38054", + "nom_de_la_commune": "BOUVESSE QUIRIEU", + "code_postal": "38390", + "coordonnees_gps": [ + 45.7838215113, + 5.41483452753 + ], + "libelle_d_acheminement": "BOUVESSE QUIRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41483452753, + 45.7838215113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfecff87362ca058c106d1da20978720132663ec", + "fields": { + "code_commune_insee": "49123", + "nom_de_la_commune": "DISTRE", + "code_postal": "49400", + "coordonnees_gps": [ + 47.223264756, + -0.123769000712 + ], + "libelle_d_acheminement": "DISTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.123769000712, + 47.223264756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cac0dfeea58762aec34563fea00ffae2fe8ae30", + "fields": { + "code_commune_insee": "38057", + "nom_de_la_commune": "BRESSON", + "code_postal": "38320", + "coordonnees_gps": [ + 45.1342682884, + 5.7510667411 + ], + "libelle_d_acheminement": "BRESSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7510667411, + 45.1342682884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "397000af46534c46178229437d20b36ce314e26b", + "fields": { + "ligne_5": "ST GEORGES SUR LAYON", + "code_commune_insee": "49125", + "libelle_d_acheminement": "DOUE EN ANJOU", + "code_postal": "49700", + "nom_de_la_commune": "DOUE EN ANJOU", + "coordonnees_gps": [ + 47.1914715686, + -0.278336056087 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.278336056087, + 47.1914715686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1152dc5a2a60eace6d991d1925e580ddb6ee052a", + "fields": { + "code_commune_insee": "38060", + "nom_de_la_commune": "BRION", + "code_postal": "38590", + "coordonnees_gps": [ + 45.2923920094, + 5.33971268378 + ], + "libelle_d_acheminement": "BRION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33971268378, + 45.2923920094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "164315c3e45d1c2c0c548cadb85f88fd19574d03", + "fields": { + "code_commune_insee": "49127", + "nom_de_la_commune": "DURTAL", + "code_postal": "49430", + "coordonnees_gps": [ + 47.6780515421, + -0.254608332885 + ], + "libelle_d_acheminement": "DURTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.254608332885, + 47.6780515421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e1756d76306412f8c004623a497e199f3a56fba", + "fields": { + "code_commune_insee": "38063", + "nom_de_la_commune": "BURCIN", + "code_postal": "38690", + "coordonnees_gps": [ + 45.4333439641, + 5.44768050206 + ], + "libelle_d_acheminement": "BURCIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44768050206, + 45.4333439641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "721ff624bfb4792d2ed5a8b07c8a24e32937489e", + "fields": { + "code_commune_insee": "49135", + "nom_de_la_commune": "FENEU", + "code_postal": "49460", + "coordonnees_gps": [ + 47.5840201404, + -0.600831621131 + ], + "libelle_d_acheminement": "FENEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.600831621131, + 47.5840201404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f15ca3d32388c7356f94419c6201670f86313cfe", + "fields": { + "code_commune_insee": "38068", + "nom_de_la_commune": "CHAMPAGNIER", + "code_postal": "38800", + "coordonnees_gps": [ + 45.11071592, + 5.72119318061 + ], + "libelle_d_acheminement": "CHAMPAGNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72119318061, + 45.11071592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89d664b8ebe05ab5e0c357436912e67d9a554cd3", + "fields": { + "ligne_5": "BRION", + "code_commune_insee": "49138", + "libelle_d_acheminement": "LES BOIS D ANJOU", + "code_postal": "49250", + "nom_de_la_commune": "LES BOIS D ANJOU", + "coordonnees_gps": [ + 47.4829167789, + -0.174198642479 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.174198642479, + 47.4829167789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c27715b2dc37346ebfd0a2afe3596ef2b22a959a", + "fields": { + "code_commune_insee": "38069", + "nom_de_la_commune": "CHAMPIER", + "code_postal": "38260", + "coordonnees_gps": [ + 45.4576152351, + 5.29213304466 + ], + "libelle_d_acheminement": "CHAMPIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29213304466, + 45.4576152351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cbeca454100d297e5196a4b3d1384d7ce3d4d80", + "fields": { + "code_commune_insee": "49140", + "nom_de_la_commune": "FONTEVRAUD L ABBAYE", + "code_postal": "49590", + "coordonnees_gps": [ + 47.1843477154, + 0.03384269066 + ], + "libelle_d_acheminement": "FONTEVRAUD L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.03384269066, + 47.1843477154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86a18be912eb549dda8c3e7c34d970c8efe99beb", + "fields": { + "code_commune_insee": "38070", + "nom_de_la_commune": "LE CHAMP PRES FROGES", + "code_postal": "38190", + "coordonnees_gps": [ + 45.2814832308, + 5.93863147318 + ], + "libelle_d_acheminement": "LE CHAMP PRES FROGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93863147318, + 45.2814832308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f8efe9e99d107be3007715ed9373f3de18328a7", + "fields": { + "ligne_5": "INGRANDES", + "code_commune_insee": "49160", + "libelle_d_acheminement": "INGRANDES LE FRESNE SUR LOIRE", + "code_postal": "49123", + "nom_de_la_commune": "INGRANDES LE FRESNE SUR LOIRE", + "coordonnees_gps": [ + 47.4154942142, + -0.920314202965 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.920314202965, + 47.4154942142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f073836eebeae42d34cc6a3f6f8ec4ec9ec367c6", + "fields": { + "ligne_5": "LE PERIER", + "code_commune_insee": "38073", + "libelle_d_acheminement": "CHANTEPERIER", + "code_postal": "38740", + "nom_de_la_commune": "CHANTEPERIER", + "coordonnees_gps": [ + 44.9859421745, + 5.97635547463 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97635547463, + 44.9859421745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d210d2968ad8d6be76171a6dccb319edc22becd", + "fields": { + "ligne_5": "LE FRESNE SUR LOIRE", + "code_commune_insee": "49160", + "libelle_d_acheminement": "INGRANDES LE FRESNE SUR LOIRE", + "code_postal": "49123", + "nom_de_la_commune": "INGRANDES LE FRESNE SUR LOIRE", + "coordonnees_gps": [ + 47.4154942142, + -0.920314202965 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.920314202965, + 47.4154942142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18c65db72b229ccaea65dc8112deeeeb75b7f58c", + "fields": { + "code_commune_insee": "38074", + "nom_de_la_commune": "CHANTESSE", + "code_postal": "38470", + "coordonnees_gps": [ + 45.2459657752, + 5.44704031612 + ], + "libelle_d_acheminement": "CHANTESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44704031612, + 45.2459657752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "109806b540b54d8f1745acb93443bd7d2f1ca306", + "fields": { + "ligne_5": "ST JEAN DES MAUVRETS", + "code_commune_insee": "49167", + "libelle_d_acheminement": "LES GARENNES SUR LOIRE", + "code_postal": "49320", + "nom_de_la_commune": "LES GARENNES SUR LOIRE", + "coordonnees_gps": [ + 47.40011602, + -0.484584915233 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.484584915233, + 47.40011602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd25b939fd99445f17c4aa24971b689ee1b7382e", + "fields": { + "code_commune_insee": "38082", + "nom_de_la_commune": "CHARAVINES", + "code_postal": "38850", + "coordonnees_gps": [ + 45.4275810655, + 5.51841184282 + ], + "libelle_d_acheminement": "CHARAVINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51841184282, + 45.4275810655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b0d7a7f847b33ccedb1c1be2f301a887ccf40aa", + "fields": { + "code_commune_insee": "49170", + "nom_de_la_commune": "JUVARDEIL", + "code_postal": "49330", + "coordonnees_gps": [ + 47.6592762477, + -0.514251565754 + ], + "libelle_d_acheminement": "JUVARDEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.514251565754, + 47.6592762477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "917f463b840f54875a3b227d6da2e3924aa9f9d7", + "fields": { + "code_commune_insee": "38091", + "nom_de_la_commune": "CHATEAUVILAIN", + "code_postal": "38300", + "coordonnees_gps": [ + 45.5138631652, + 5.33027661744 + ], + "libelle_d_acheminement": "CHATEAUVILAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33027661744, + 45.5138631652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "023d6b9ac10159e5f71c5eeb4f6d27d635725c39", + "fields": { + "code_commune_insee": "49178", + "nom_de_la_commune": "LOIRE", + "code_postal": "49440", + "coordonnees_gps": [ + 47.6264697538, + -0.964687167794 + ], + "libelle_d_acheminement": "LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.964687167794, + 47.6264697538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc346556a9b5e2caf53e940b1d533009b02165ad", + "fields": { + "code_commune_insee": "38103", + "nom_de_la_commune": "CHICHILIANNE", + "code_postal": "38930", + "coordonnees_gps": [ + 44.8077793514, + 5.53905603141 + ], + "libelle_d_acheminement": "CHICHILIANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53905603141, + 44.8077793514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9326376714d16cc2848ad62df486d23dda2b3813", + "fields": { + "code_commune_insee": "49180", + "nom_de_la_commune": "LONGUE JUMELLES", + "code_postal": "49160", + "coordonnees_gps": [ + 47.3984723864, + -0.107579294015 + ], + "libelle_d_acheminement": "LONGUE JUMELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.107579294015, + 47.3984723864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84d6d531385edce25902d15e578aeefdf2230cf0", + "fields": { + "code_commune_insee": "38106", + "nom_de_la_commune": "CHOLONGE", + "code_postal": "38220", + "coordonnees_gps": [ + 45.00953005, + 5.80042911012 + ], + "libelle_d_acheminement": "CHOLONGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80042911012, + 45.00953005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f6f2166d1f96ca4b886678d802cbb1e5dc894f3", + "fields": { + "ligne_5": "FONTAINE MILON", + "code_commune_insee": "49194", + "libelle_d_acheminement": "MAZE MILON", + "code_postal": "49140", + "nom_de_la_commune": "MAZE MILON", + "coordonnees_gps": [ + 47.4603950447, + -0.284298744303 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.284298744303, + 47.4603950447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfa2f3e5f068a738cb03f814673a59b1dad19646", + "fields": { + "code_commune_insee": "38108", + "nom_de_la_commune": "CHORANCHE", + "code_postal": "38680", + "coordonnees_gps": [ + 45.071206623, + 5.39354497889 + ], + "libelle_d_acheminement": "CHORANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39354497889, + 45.071206623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cac1fec649dedef8550d6953cbb7f92610fae5a", + "fields": { + "ligne_5": "LE PLESSIS MACE", + "code_commune_insee": "49200", + "libelle_d_acheminement": "LONGUENEE EN ANJOU", + "code_postal": "49770", + "nom_de_la_commune": "LONGUENEE EN ANJOU", + "coordonnees_gps": [ + 47.5607664036, + -0.683468497352 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.683468497352, + 47.5607664036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3234e102a90b6a7c401f1d86a8e8c563a9458dc9", + "fields": { + "code_commune_insee": "38110", + "nom_de_la_commune": "CHUZELLES", + "code_postal": "38200", + "coordonnees_gps": [ + 45.5754949001, + 4.87825997327 + ], + "libelle_d_acheminement": "CHUZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87825997327, + 45.5754949001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c128ac83e7e39ab291149157f65610147432401d", + "fields": { + "code_commune_insee": "49214", + "nom_de_la_commune": "MONTREUIL JUIGNE", + "code_postal": "49460", + "coordonnees_gps": [ + 47.5411858548, + -0.616472796467 + ], + "libelle_d_acheminement": "MONTREUIL JUIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.616472796467, + 47.5411858548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "323df234c109b5fb05400ce66e8675a823e01b20", + "fields": { + "code_commune_insee": "38114", + "nom_de_la_commune": "CLONAS SUR VAREZE", + "code_postal": "38550", + "coordonnees_gps": [ + 45.4145802588, + 4.79236442681 + ], + "libelle_d_acheminement": "CLONAS SUR VAREZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79236442681, + 45.4145802588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7c325f19f001c7d7f152d0016595782f88bea69", + "fields": { + "code_commune_insee": "49216", + "nom_de_la_commune": "MONTREUIL SUR LOIR", + "code_postal": "49140", + "coordonnees_gps": [ + 47.5935379468, + -0.391603731287 + ], + "libelle_d_acheminement": "MONTREUIL SUR LOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.391603731287, + 47.5935379468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c09d3fbd14777a41b4bc24211d7e46e55992325", + "fields": { + "code_commune_insee": "38129", + "nom_de_la_commune": "CORRENCON EN VERCORS", + "code_postal": "38250", + "coordonnees_gps": [ + 45.0115359906, + 5.51775245188 + ], + "libelle_d_acheminement": "CORRENCON EN VERCORS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51775245188, + 45.0115359906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "104c06dcc240c7ae783c736cbc17559e2f3734d4", + "fields": { + "ligne_5": "CHAUDRON EN MAUGES", + "code_commune_insee": "49218", + "libelle_d_acheminement": "MONTREVAULT SUR EVRE", + "code_postal": "49110", + "nom_de_la_commune": "MONTREVAULT SUR EVRE", + "coordonnees_gps": [ + 47.255395404, + -1.05160971025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05160971025, + 47.255395404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "141e94506a96d8b2f99ab534069b7580ca4f02cb", + "fields": { + "code_commune_insee": "38132", + "nom_de_la_commune": "LES COTES DE CORPS", + "code_postal": "38970", + "coordonnees_gps": [ + 44.8410265089, + 5.93082364878 + ], + "libelle_d_acheminement": "LES COTES DE CORPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93082364878, + 44.8410265089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c05232ba21956af05f13cc57da4a2854bffb1ade", + "fields": { + "ligne_5": "LA BOISSIERE SUR EVRE", + "code_commune_insee": "49218", + "libelle_d_acheminement": "MONTREVAULT SUR EVRE", + "code_postal": "49110", + "nom_de_la_commune": "MONTREVAULT SUR EVRE", + "coordonnees_gps": [ + 47.255395404, + -1.05160971025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05160971025, + 47.255395404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e23467e2ab782be7a8079a405c14656d9a51d263", + "fields": { + "code_commune_insee": "38135", + "nom_de_la_commune": "COURTENAY", + "code_postal": "38510", + "coordonnees_gps": [ + 45.7362411824, + 5.3922316771 + ], + "libelle_d_acheminement": "COURTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3922316771, + 45.7362411824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f28b0e1de67269bbf8c91b419db71ec20ce8119b", + "fields": { + "ligne_5": "AUVERSE", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49490", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd72ab11c9fcfc694a537c3fec993db2e2cb2fb9", + "fields": { + "code_commune_insee": "38137", + "nom_de_la_commune": "CRAS", + "code_postal": "38210", + "coordonnees_gps": [ + 45.272146184, + 5.43899099093 + ], + "libelle_d_acheminement": "CRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43899099093, + 45.272146184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2909bcf4aeee552853eb5d16195c80c885c240ea", + "fields": { + "ligne_5": "MEIGNE LE VICOMTE", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49490", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b063af35a6225fb3bc77957ee35ae02a92452cf", + "fields": { + "code_commune_insee": "38138", + "nom_de_la_commune": "CREMIEU", + "code_postal": "38460", + "coordonnees_gps": [ + 45.7316395606, + 5.25746884592 + ], + "libelle_d_acheminement": "CREMIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25746884592, + 45.7316395606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f452003cefbc8d29e6f91b07cec30c6d96bc8faa", + "fields": { + "ligne_5": "NOYANT", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49490", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe5f2685ac50d7c49689f46560f6cd91be994034", + "fields": { + "ligne_5": "MEPIEU", + "code_commune_insee": "38139", + "libelle_d_acheminement": "CREYS MEPIEU", + "code_postal": "38510", + "nom_de_la_commune": "CREYS MEPIEU", + "coordonnees_gps": [ + 45.7442083563, + 5.46517571315 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46517571315, + 45.7442083563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "def980a2dc1892c119f932de6cc93c71c101e0e5", + "fields": { + "ligne_5": "LE MESNIL EN VALLEE", + "code_commune_insee": "49244", + "libelle_d_acheminement": "MAUGES SUR LOIRE", + "code_postal": "49410", + "nom_de_la_commune": "MAUGES SUR LOIRE", + "coordonnees_gps": [ + 47.3429800481, + -0.869186945487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.869186945487, + 47.3429800481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf902cf691a1e5cac35ecb1073ec2f8a707bed52", + "fields": { + "code_commune_insee": "38140", + "nom_de_la_commune": "CROLLES", + "code_postal": "38920", + "coordonnees_gps": [ + 45.2820293287, + 5.88883985593 + ], + "libelle_d_acheminement": "CROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88883985593, + 45.2820293287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d64a047b4f3200419db72fcbc6945331f127867", + "fields": { + "ligne_5": "ST FLORENT LE VIEIL", + "code_commune_insee": "49244", + "libelle_d_acheminement": "MAUGES SUR LOIRE", + "code_postal": "49410", + "nom_de_la_commune": "MAUGES SUR LOIRE", + "coordonnees_gps": [ + 47.3429800481, + -0.869186945487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.869186945487, + 47.3429800481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8a281875360391f152ff96bc9d4e7bb99589aad", + "fields": { + "code_commune_insee": "38151", + "nom_de_la_commune": "ECHIROLLES", + "code_postal": "38130", + "coordonnees_gps": [ + 45.1471647181, + 5.71535600177 + ], + "libelle_d_acheminement": "ECHIROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71535600177, + 45.1471647181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "549b712d115cc58aa8312bcf1632477ed612176e", + "fields": { + "ligne_5": "MONTJEAN SUR LOIRE", + "code_commune_insee": "49244", + "libelle_d_acheminement": "MAUGES SUR LOIRE", + "code_postal": "49570", + "nom_de_la_commune": "MAUGES SUR LOIRE", + "coordonnees_gps": [ + 47.3429800481, + -0.869186945487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.869186945487, + 47.3429800481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d539c7f18716ff9338630fee68ddcd16f7a59346", + "fields": { + "code_commune_insee": "38157", + "nom_de_la_commune": "ESTRABLIN", + "code_postal": "38780", + "coordonnees_gps": [ + 45.5136075933, + 4.95889651862 + ], + "libelle_d_acheminement": "ESTRABLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95889651862, + 45.5136075933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6fd8c9f1fc01220ea79f44b9da96d466687dd52", + "fields": { + "ligne_5": "LA POMMERAYE", + "code_commune_insee": "49244", + "libelle_d_acheminement": "MAUGES SUR LOIRE", + "code_postal": "49620", + "nom_de_la_commune": "MAUGES SUR LOIRE", + "coordonnees_gps": [ + 47.3429800481, + -0.869186945487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.869186945487, + 47.3429800481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4b5fb89dfac47fc39311b3efa669f10f9d8af2a", + "fields": { + "code_commune_insee": "38159", + "nom_de_la_commune": "EYDOCHE", + "code_postal": "38690", + "coordonnees_gps": [ + 45.4427304269, + 5.33251979279 + ], + "libelle_d_acheminement": "EYDOCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33251979279, + 45.4427304269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "108d01edfe88f12ce5641acbc34b7280e39b5536", + "fields": { + "ligne_5": "CHAZE HENRY", + "code_commune_insee": "49248", + "libelle_d_acheminement": "OMBREE D ANJOU", + "code_postal": "49420", + "nom_de_la_commune": "OMBREE D ANJOU", + "coordonnees_gps": [ + 47.7629344972, + -1.19300189799 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19300189799, + 47.7629344972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2994f76e38691db0c799852f543cbb01bf6285cf", + "fields": { + "ligne_5": "PINSOT", + "code_commune_insee": "38163", + "libelle_d_acheminement": "LE HAUT BREDA", + "code_postal": "38580", + "nom_de_la_commune": "LE HAUT BREDA", + "coordonnees_gps": [ + 45.2788909914, + 6.08520247302 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08520247302, + 45.2788909914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68cf78f86af60409e28cdf1d795240f048c4c0ad", + "fields": { + "ligne_5": "ST MICHEL ET CHANVEAUX", + "code_commune_insee": "49248", + "libelle_d_acheminement": "OMBREE D ANJOU", + "code_postal": "49420", + "nom_de_la_commune": "OMBREE D ANJOU", + "coordonnees_gps": [ + 47.7629344972, + -1.19300189799 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19300189799, + 47.7629344972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "596b265e702bfb096f24b8789391057e5f78b62e", + "fields": { + "code_commune_insee": "38169", + "nom_de_la_commune": "FONTAINE", + "code_postal": "38600", + "coordonnees_gps": [ + 45.1930502486, + 5.67763066542 + ], + "libelle_d_acheminement": "FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67763066542, + 45.1930502486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd388cd85d8c8522af87bee23e63c6f980b70eff", + "fields": { + "ligne_5": "BEL AIR", + "code_commune_insee": "49248", + "libelle_d_acheminement": "OMBREE D ANJOU", + "code_postal": "49520", + "nom_de_la_commune": "OMBREE D ANJOU", + "coordonnees_gps": [ + 47.7629344972, + -1.19300189799 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19300189799, + 47.7629344972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddd6a4d4d149d4120dd0e9e568c5cf48521d232e", + "fields": { + "ligne_5": "GONAS", + "code_commune_insee": "38176", + "libelle_d_acheminement": "FRONTONAS", + "code_postal": "38290", + "nom_de_la_commune": "FRONTONAS", + "coordonnees_gps": [ + 45.6511615964, + 5.18582056366 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18582056366, + 45.6511615964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e89d275da5f860789e488519418f34add6ea77eb", + "fields": { + "ligne_5": "CHENEHUTTE LES TUFFEAUX", + "code_commune_insee": "49261", + "libelle_d_acheminement": "GENNES VAL DE LOIRE", + "code_postal": "49350", + "nom_de_la_commune": "GENNES VAL DE LOIRE", + "coordonnees_gps": [ + 47.374115152, + -0.222562814963 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.222562814963, + 47.374115152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddf729f38ab6ed86b7d7d2bc21c569fdfc04fdf8", + "fields": { + "code_commune_insee": "38180", + "nom_de_la_commune": "GILLONNAY", + "code_postal": "38260", + "coordonnees_gps": [ + 45.3855913986, + 5.29779946515 + ], + "libelle_d_acheminement": "GILLONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29779946515, + 45.3855913986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e6f6a0c0c5a2673618451d97924afa4035a71a8", + "fields": { + "code_commune_insee": "49267", + "nom_de_la_commune": "ST BARTHELEMY D ANJOU", + "code_postal": "49124", + "coordonnees_gps": [ + 47.4738114322, + -0.485526012217 + ], + "libelle_d_acheminement": "ST BARTHELEMY D ANJOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.485526012217, + 47.4738114322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f5f76ed8a86e9820f29a7fd046d6214a229165a", + "fields": { + "code_commune_insee": "38187", + "nom_de_la_commune": "LE GUA", + "code_postal": "38450", + "coordonnees_gps": [ + 45.0133395562, + 5.6155445833 + ], + "libelle_d_acheminement": "LE GUA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6155445833, + 45.0133395562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56b1df937c853302b8feb5d5b1a30c5fad0b2a72", + "fields": { + "code_commune_insee": "49271", + "nom_de_la_commune": "ST CLEMENT DE LA PLACE", + "code_postal": "49370", + "coordonnees_gps": [ + 47.5263429934, + -0.734122843325 + ], + "libelle_d_acheminement": "ST CLEMENT DE LA PLACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.734122843325, + 47.5263429934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9234d585431551b8b2f9ee1088302cc73750bcab", + "fields": { + "code_commune_insee": "38192", + "nom_de_la_commune": "HURTIERES", + "code_postal": "38570", + "coordonnees_gps": [ + 45.2869643084, + 5.96787163787 + ], + "libelle_d_acheminement": "HURTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96787163787, + 45.2869643084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d4cb7d1dc37d4405ee8eb3bfaed3d974bea5ad0", + "fields": { + "code_commune_insee": "49272", + "nom_de_la_commune": "ST CLEMENT DES LEVEES", + "code_postal": "49350", + "coordonnees_gps": [ + 47.3443059131, + -0.182503440633 + ], + "libelle_d_acheminement": "ST CLEMENT DES LEVEES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.182503440633, + 47.3443059131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cccd410dc590b8b2c00bede33864747a6c290996", + "fields": { + "code_commune_insee": "38208", + "nom_de_la_commune": "LAVARS", + "code_postal": "38710", + "coordonnees_gps": [ + 44.8532022659, + 5.6791569867 + ], + "libelle_d_acheminement": "LAVARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6791569867, + 44.8532022659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc31405f29bfb85987b65a03369c4ae49f43acb1", + "fields": { + "code_commune_insee": "49284", + "nom_de_la_commune": "ST GERMAIN DES PRES", + "code_postal": "49170", + "coordonnees_gps": [ + 47.4104988844, + -0.812032158291 + ], + "libelle_d_acheminement": "ST GERMAIN DES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.812032158291, + 47.4104988844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3003a515de86da21639121f8f8153a4b9e7abcb", + "fields": { + "code_commune_insee": "38211", + "nom_de_la_commune": "LIEUDIEU", + "code_postal": "38440", + "coordonnees_gps": [ + 45.4577150175, + 5.17899618537 + ], + "libelle_d_acheminement": "LIEUDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17899618537, + 45.4577150175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d755f936694c04d78a8f323ae028f60153cc827d", + "fields": { + "ligne_5": "ST LAMBERT DU LATTAY", + "code_commune_insee": "49292", + "libelle_d_acheminement": "VAL DU LAYON", + "code_postal": "49750", + "nom_de_la_commune": "VAL DU LAYON", + "coordonnees_gps": [ + 47.3002199454, + -0.640314853216 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.640314853216, + 47.3002199454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c3ed3ee118e3be956f42abd2b6a62953ae6afa6", + "fields": { + "code_commune_insee": "38215", + "nom_de_la_commune": "LUZINAY", + "code_postal": "38200", + "coordonnees_gps": [ + 45.5897867329, + 4.95688934298 + ], + "libelle_d_acheminement": "LUZINAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95688934298, + 45.5897867329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d90785a7746160a647f19fe692c5fb4b23e75ac", + "fields": { + "code_commune_insee": "49299", + "nom_de_la_commune": "ST LEGER SOUS CHOLET", + "code_postal": "49280", + "coordonnees_gps": [ + 47.1022853762, + -0.904193715243 + ], + "libelle_d_acheminement": "ST LEGER SOUS CHOLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.904193715243, + 47.1022853762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47e91aea6199106519a4a62693cc87141cd2db92", + "fields": { + "code_commune_insee": "38222", + "nom_de_la_commune": "MASSIEU", + "code_postal": "38620", + "coordonnees_gps": [ + 45.4374299246, + 5.59982037311 + ], + "libelle_d_acheminement": "MASSIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59982037311, + 45.4374299246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "072dad5a33d2cae2053741975740115f8fa26166", + "fields": { + "ligne_5": "ST MATHURIN SUR LOIRE", + "code_commune_insee": "49307", + "libelle_d_acheminement": "LOIRE AUTHION", + "code_postal": "49250", + "nom_de_la_commune": "LOIRE AUTHION", + "coordonnees_gps": [ + 47.4219645317, + -0.319673646947 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.319673646947, + 47.4219645317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d0af77d6383a33734dc41699857345c49419028", + "fields": { + "code_commune_insee": "38239", + "nom_de_la_commune": "MOIRANS", + "code_postal": "38430", + "coordonnees_gps": [ + 45.3189486892, + 5.56212081976 + ], + "libelle_d_acheminement": "MOIRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56212081976, + 45.3189486892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b30999a4a039000f455a7a1693563b3a45039432", + "fields": { + "ligne_5": "BRAIN SUR L AUTHION", + "code_commune_insee": "49307", + "libelle_d_acheminement": "LOIRE AUTHION", + "code_postal": "49800", + "nom_de_la_commune": "LOIRE AUTHION", + "coordonnees_gps": [ + 47.4219645317, + -0.319673646947 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.319673646947, + 47.4219645317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ee41354ecb1328f21926e96c14ecc76e4d81dc1", + "fields": { + "code_commune_insee": "38241", + "nom_de_la_commune": "MONESTIER D AMBEL", + "code_postal": "38970", + "coordonnees_gps": [ + 44.7690427693, + 5.92456495865 + ], + "libelle_d_acheminement": "MONESTIER D AMBEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92456495865, + 44.7690427693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48610a4c499bd9a93a12325d02fb13c3f6185cca", + "fields": { + "ligne_5": "ST SYLVAIN D ANJOU", + "code_commune_insee": "49323", + "libelle_d_acheminement": "VERRIERES EN ANJOU", + "code_postal": "49480", + "nom_de_la_commune": "VERRIERES EN ANJOU", + "coordonnees_gps": [ + 47.5123317726, + -0.475837998559 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.475837998559, + 47.5123317726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4512367fd0481d94a81eb4d635f9d0ad75864eab", + "fields": { + "code_commune_insee": "38243", + "nom_de_la_commune": "LE MONESTIER DU PERCY", + "code_postal": "38930", + "coordonnees_gps": [ + 44.7844141969, + 5.64878046907 + ], + "libelle_d_acheminement": "LE MONESTIER DU PERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64878046907, + 44.7844141969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a8d89476faaf8e639fcd92ec033d2fca5756923", + "fields": { + "code_commune_insee": "49326", + "nom_de_la_commune": "SARRIGNE", + "code_postal": "49800", + "coordonnees_gps": [ + 47.5024740958, + -0.385798724443 + ], + "libelle_d_acheminement": "SARRIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.385798724443, + 47.5024740958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0809bd7fc9add2f83df422067301530128aa35ba", + "fields": { + "code_commune_insee": "38247", + "nom_de_la_commune": "MONTALIEU VERCIEU", + "code_postal": "38390", + "coordonnees_gps": [ + 45.8117809573, + 5.40305590073 + ], + "libelle_d_acheminement": "MONTALIEU VERCIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40305590073, + 45.8117809573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7202b762f8bc35783054d7e3a7bb0d9fdff4b874", + "fields": { + "code_commune_insee": "49328", + "nom_de_la_commune": "SAUMUR", + "code_postal": "49400", + "coordonnees_gps": [ + 47.2673853525, + -0.0830410591988 + ], + "libelle_d_acheminement": "SAUMUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0830410591988, + 47.2673853525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a96947cf2cb9009d27bf9c102d3da798900f9592", + "fields": { + "ligne_5": "L ALPE DE MONT DE LANS", + "code_commune_insee": "38253", + "libelle_d_acheminement": "LES DEUX ALPES", + "code_postal": "38860", + "nom_de_la_commune": "LES DEUX ALPES", + "coordonnees_gps": [ + 45.0159885994, + 6.13818619624 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13818619624, + 45.0159885994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb4aeedb3a91af8b3a3669d83050dfae2f93cb05", + "fields": { + "ligne_5": "DAMPIERRE SUR LOIRE", + "code_commune_insee": "49328", + "libelle_d_acheminement": "SAUMUR", + "code_postal": "49400", + "nom_de_la_commune": "SAUMUR", + "coordonnees_gps": [ + 47.2673853525, + -0.0830410591988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0830410591988, + 47.2673853525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ac8857dc890b210369a997d32c94655384782dd", + "fields": { + "ligne_5": "MONT DE LANS", + "code_commune_insee": "38253", + "libelle_d_acheminement": "LES DEUX ALPES", + "code_postal": "38860", + "nom_de_la_commune": "LES DEUX ALPES", + "coordonnees_gps": [ + 45.0159885994, + 6.13818619624 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13818619624, + 45.0159885994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4598182bf57ec26cf0071ef29563a442ad517d3c", + "fields": { + "code_commune_insee": "49329", + "nom_de_la_commune": "SAVENNIERES", + "code_postal": "49170", + "coordonnees_gps": [ + 47.405865718, + -0.667155831696 + ], + "libelle_d_acheminement": "SAVENNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.667155831696, + 47.405865718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb4efe88bc93c5fd4a24654cc15676d258e473e1", + "fields": { + "code_commune_insee": "38263", + "nom_de_la_commune": "MORETTE", + "code_postal": "38210", + "coordonnees_gps": [ + 45.2849341045, + 5.45116993516 + ], + "libelle_d_acheminement": "MORETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45116993516, + 45.2849341045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e772f672e7118ca687614983181a3fbb94572a98", + "fields": { + "code_commune_insee": "49330", + "nom_de_la_commune": "SCEAUX D ANJOU", + "code_postal": "49330", + "coordonnees_gps": [ + 47.6313080266, + -0.60969581753 + ], + "libelle_d_acheminement": "SCEAUX D ANJOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.60969581753, + 47.6313080266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96f4a5cab669095515c165a6b13979792edff530", + "fields": { + "code_commune_insee": "38268", + "nom_de_la_commune": "LE MOUTARET", + "code_postal": "38580", + "coordonnees_gps": [ + 45.429092051, + 6.08168721021 + ], + "libelle_d_acheminement": "LE MOUTARET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08168721021, + 45.429092051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e26b7000818b741ffefd7b58cd236b99eec3b3b", + "fields": { + "ligne_5": "AVIRE", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49500", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e89a99db8af378bd8f72c88754272d12decc7dbc", + "fields": { + "code_commune_insee": "38271", + "nom_de_la_commune": "MURIANETTE", + "code_postal": "38420", + "coordonnees_gps": [ + 45.1884497097, + 5.82573215499 + ], + "libelle_d_acheminement": "MURIANETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82573215499, + 45.1884497097 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5fd62eb2819b4c842f18302d3772fe624ec8128", + "fields": { + "ligne_5": "L HOTELLERIE DE FLEE", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49500", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10999b00619921187b3110a1d8249f759cbe3a90", + "fields": { + "code_commune_insee": "38278", + "nom_de_la_commune": "NOTRE DAME DE L OSIER", + "code_postal": "38470", + "coordonnees_gps": [ + 45.2381695946, + 5.41516438736 + ], + "libelle_d_acheminement": "NOTRE DAME DE L OSIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.41516438736, + 45.2381695946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "028c33c23c81b43b4d1b4409cc86d977fc98fe2b", + "fields": { + "ligne_5": "LOUVAINES", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49500", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e45bbb1d0f9e3fb1c170d164ab1dcdee4aaf254d", + "fields": { + "code_commune_insee": "38281", + "nom_de_la_commune": "NOYAREY", + "code_postal": "38360", + "coordonnees_gps": [ + 45.2413524185, + 5.61932305431 + ], + "libelle_d_acheminement": "NOYAREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61932305431, + 45.2413524185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cf9d594f8664b76760ee5baf3a14886f7fd719d", + "fields": { + "ligne_5": "MARANS", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49500", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "759f878544b558b2e190430e84aaa03f480d546a", + "fields": { + "code_commune_insee": "38282", + "nom_de_la_commune": "OPTEVOZ", + "code_postal": "38460", + "coordonnees_gps": [ + 45.7524418147, + 5.34043707575 + ], + "libelle_d_acheminement": "OPTEVOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34043707575, + 45.7524418147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e69f836ca4dadfccc37fb2cc1f27af9b9ebc41c2", + "fields": { + "ligne_5": "STE GEMMES D ANDIGNE", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49500", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7cdc9e97d516e816176a254d132150695c3068d", + "fields": { + "code_commune_insee": "38283", + "nom_de_la_commune": "ORIS EN RATTIER", + "code_postal": "38350", + "coordonnees_gps": [ + 44.933416965, + 5.88526419405 + ], + "libelle_d_acheminement": "ORIS EN RATTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88526419405, + 44.933416965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fe2bfdf7cf1e2b09461629ce5d9e670678ec450", + "fields": { + "ligne_5": "NOYANT LA GRAVOYERE", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49520", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01c0b004dc1fb7449e193e1f16c1faf4c7276e68", + "fields": { + "code_commune_insee": "38286", + "nom_de_la_commune": "OULLES", + "code_postal": "38520", + "coordonnees_gps": [ + 45.0738320664, + 5.96330569901 + ], + "libelle_d_acheminement": "OULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96330569901, + 45.0738320664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d947df2d4161fbcc13334f9a662f94927e781cb6", + "fields": { + "code_commune_insee": "49338", + "nom_de_la_commune": "SOULAINES SUR AUBANCE", + "code_postal": "49610", + "coordonnees_gps": [ + 47.3590850983, + -0.519604593269 + ], + "libelle_d_acheminement": "SOULAINES SUR AUBANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.519604593269, + 47.3590850983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85b6bc65b1751ae252f69dbe3338ff33cd19e5d6", + "fields": { + "code_commune_insee": "38289", + "nom_de_la_commune": "OZ", + "code_postal": "38114", + "coordonnees_gps": [ + 45.1279422675, + 6.07379501436 + ], + "libelle_d_acheminement": "OZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07379501436, + 45.1279422675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6ce1b4868352650ae67b6d47f86a183bdef20d7", + "fields": { + "ligne_5": "CHAMP SUR LAYON", + "code_commune_insee": "49345", + "libelle_d_acheminement": "BELLEVIGNE EN LAYON", + "code_postal": "49380", + "nom_de_la_commune": "BELLEVIGNE EN LAYON", + "coordonnees_gps": [ + 47.2592682331, + -0.517923916545 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.517923916545, + 47.2592682331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af20597f9e10556279c947367f632e23998436a0", + "fields": { + "code_commune_insee": "38294", + "nom_de_la_commune": "PANOSSAS", + "code_postal": "38460", + "coordonnees_gps": [ + 45.6757588794, + 5.1929687888 + ], + "libelle_d_acheminement": "PANOSSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1929687888, + 45.6757588794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c5bac6d5836dc46de40ffd67967ac02c0ed0635", + "fields": { + "ligne_5": "LES CERQUEUX SOUS PASSAVANT", + "code_commune_insee": "49373", + "libelle_d_acheminement": "LYS HAUT LAYON", + "code_postal": "49310", + "nom_de_la_commune": "LYS HAUT LAYON", + "coordonnees_gps": [ + 47.1373301524, + -0.559450064005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.559450064005, + 47.1373301524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2591bd3366bd2c0787b316aef4a71d074d32e08", + "fields": { + "ligne_5": "ARANDON", + "code_commune_insee": "38297", + "libelle_d_acheminement": "ARANDON PASSINS", + "code_postal": "38510", + "nom_de_la_commune": "ARANDON PASSINS", + "coordonnees_gps": [ + 45.6918000182, + 5.42912409085 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42912409085, + 45.6918000182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af9f376456e712dd269f3d456d7afb5d08b64934", + "fields": { + "ligne_5": "LE VOIDE", + "code_commune_insee": "49373", + "libelle_d_acheminement": "LYS HAUT LAYON", + "code_postal": "49310", + "nom_de_la_commune": "LYS HAUT LAYON", + "coordonnees_gps": [ + 47.1373301524, + -0.559450064005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.559450064005, + 47.1373301524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "258f1a84bd60b7b78ab53e591c24e018bd4c294a", + "fields": { + "code_commune_insee": "38301", + "nom_de_la_commune": "PERCY", + "code_postal": "38930", + "coordonnees_gps": [ + 44.7891162119, + 5.62604125349 + ], + "libelle_d_acheminement": "LE PERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62604125349, + 44.7891162119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d27b4f6d7b09b86bd9d97d4989b5e5fae789506", + "fields": { + "ligne_5": "TREMONT", + "code_commune_insee": "49373", + "libelle_d_acheminement": "LYS HAUT LAYON", + "code_postal": "49310", + "nom_de_la_commune": "LYS HAUT LAYON", + "coordonnees_gps": [ + 47.1373301524, + -0.559450064005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.559450064005, + 47.1373301524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7102ddaf47e99a0e11ca90e2132a34ab2bf563a7", + "fields": { + "code_commune_insee": "38303", + "nom_de_la_commune": "LA PIERRE", + "code_postal": "38570", + "coordonnees_gps": [ + 45.2948585917, + 5.94144345331 + ], + "libelle_d_acheminement": "LA PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94144345331, + 45.2948585917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ddd91bdc02567cbb7faf8a4cba218f2e5510e73", + "fields": { + "ligne_5": "TIGNE", + "code_commune_insee": "49373", + "libelle_d_acheminement": "LYS HAUT LAYON", + "code_postal": "49540", + "nom_de_la_commune": "LYS HAUT LAYON", + "coordonnees_gps": [ + 47.1373301524, + -0.559450064005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.559450064005, + 47.1373301524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f84e03ad218c1ff2080c569355b860182aba96be", + "fields": { + "code_commune_insee": "38319", + "nom_de_la_commune": "PONT EN ROYANS", + "code_postal": "38680", + "coordonnees_gps": [ + 45.0609236607, + 5.34591472176 + ], + "libelle_d_acheminement": "PONT EN ROYANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34591472176, + 45.0609236607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "104eb460f2ca11d7932cb5d8ef3d0ded4a96a680", + "fields": { + "ligne_5": "VILLEVEQUE", + "code_commune_insee": "49377", + "libelle_d_acheminement": "RIVES DU LOIR EN ANJOU", + "code_postal": "49140", + "nom_de_la_commune": "RIVES DU LOIR EN ANJOU", + "coordonnees_gps": [ + 47.5486542844, + -0.44694039674 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44694039674, + 47.5486542844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eedbfd12ab9318ff77bfa75cf73f5bb1a41a3d92", + "fields": { + "code_commune_insee": "38324", + "nom_de_la_commune": "PRIMARETTE", + "code_postal": "38270", + "coordonnees_gps": [ + 45.4076896858, + 5.03351016146 + ], + "libelle_d_acheminement": "PRIMARETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03351016146, + 45.4076896858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eaddea136bf84340c7b4893522c880ad8ef5208", + "fields": { + "code_commune_insee": "50003", + "nom_de_la_commune": "AGON COUTAINVILLE", + "code_postal": "50230", + "coordonnees_gps": [ + 49.0388327181, + -1.58144574808 + ], + "libelle_d_acheminement": "AGON COUTAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58144574808, + 49.0388327181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a26f3c7441730f1d7a20213a50dc9349a5652d3e", + "fields": { + "code_commune_insee": "38325", + "nom_de_la_commune": "PROVEYSIEUX", + "code_postal": "38120", + "coordonnees_gps": [ + 45.2874156428, + 5.71502203927 + ], + "libelle_d_acheminement": "PROVEYSIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71502203927, + 45.2874156428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76637912612e1248a7d3f22e7e72745896d9c19c", + "fields": { + "code_commune_insee": "50006", + "nom_de_la_commune": "AMIGNY", + "code_postal": "50620", + "coordonnees_gps": [ + 49.1568470769, + -1.18525646512 + ], + "libelle_d_acheminement": "AMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18525646512, + 49.1568470769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0425151ff766539720b3eba56f9add30bea2302d", + "fields": { + "code_commune_insee": "38329", + "nom_de_la_commune": "QUET EN BEAUMONT", + "code_postal": "38970", + "coordonnees_gps": [ + 44.8366691536, + 5.87794751381 + ], + "libelle_d_acheminement": "QUET EN BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87794751381, + 44.8366691536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "513e0f1b371302953ab2d4f1aa0e0e81dfea520e", + "fields": { + "code_commune_insee": "50015", + "nom_de_la_commune": "ANNOVILLE", + "code_postal": "50660", + "coordonnees_gps": [ + 48.9613248053, + -1.5319902105 + ], + "libelle_d_acheminement": "ANNOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5319902105, + 48.9613248053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4483df028027e2d8b1738c22137db5f1e24ee011", + "fields": { + "code_commune_insee": "38331", + "nom_de_la_commune": "REAUMONT", + "code_postal": "38140", + "coordonnees_gps": [ + 45.363201362, + 5.52298554589 + ], + "libelle_d_acheminement": "REAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52298554589, + 45.363201362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7294f4c75b89548f3bb6a44e84ec40d9ea9ef336", + "fields": { + "code_commune_insee": "50027", + "nom_de_la_commune": "BACILLY", + "code_postal": "50530", + "coordonnees_gps": [ + 48.7041130742, + -1.43259564211 + ], + "libelle_d_acheminement": "BACILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43259564211, + 48.7041130742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b92cb511bf2dd07ec527027dcdae004fa009c77", + "fields": { + "code_commune_insee": "38333", + "nom_de_la_commune": "RENCUREL", + "code_postal": "38680", + "coordonnees_gps": [ + 45.1183407921, + 5.47287803693 + ], + "libelle_d_acheminement": "RENCUREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47287803693, + 45.1183407921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04993b82359eb075a09524121e3cfcd35a991620", + "fields": { + "code_commune_insee": "50028", + "nom_de_la_commune": "LA BALEINE", + "code_postal": "50450", + "coordonnees_gps": [ + 48.9240616553, + -1.30193952808 + ], + "libelle_d_acheminement": "LA BALEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30193952808, + 48.9240616553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b61639ba521de9bcb004da030768d7302908191", + "fields": { + "ligne_5": "BOIS DE ROCHE", + "code_commune_insee": "38339", + "libelle_d_acheminement": "ROCHE", + "code_postal": "38090", + "nom_de_la_commune": "ROCHE", + "coordonnees_gps": [ + 45.5742314322, + 5.15591367556 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15591367556, + 45.5742314322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60d3ee75f94fbe846a7ac6d61a118273c45c3ff2", + "fields": { + "code_commune_insee": "50038", + "nom_de_la_commune": "BEAUCHAMPS", + "code_postal": "50320", + "coordonnees_gps": [ + 48.8370011641, + -1.36645537752 + ], + "libelle_d_acheminement": "BEAUCHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36645537752, + 48.8370011641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49a85ed866a96cce0efe93713bb96654d8f68b64", + "fields": { + "code_commune_insee": "38345", + "nom_de_la_commune": "ROVON", + "code_postal": "38470", + "coordonnees_gps": [ + 45.1840323083, + 5.46489348229 + ], + "libelle_d_acheminement": "ROVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46489348229, + 45.1840323083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cce8152b79dfc1fdd3dceead55649008a0ccc08", + "fields": { + "code_commune_insee": "50039", + "nom_de_la_commune": "BEAUCOUDRAY", + "code_postal": "50420", + "coordonnees_gps": [ + 48.9613880405, + -1.14237512444 + ], + "libelle_d_acheminement": "BEAUCOUDRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14237512444, + 48.9613880405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "821e70813eea50aa5f1e01048476a8e56745e678", + "fields": { + "code_commune_insee": "38350", + "nom_de_la_commune": "STE AGNES", + "code_postal": "38190", + "coordonnees_gps": [ + 45.2103354169, + 5.95984837057 + ], + "libelle_d_acheminement": "STE AGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95984837057, + 45.2103354169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fb4d54f342788739519257b40eec47830fbd1d8", + "fields": { + "ligne_5": "BEAUMONT HAGUE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "667868e11f236038cb5dd9ab7aefbcae9d94d85c", + "fields": { + "code_commune_insee": "38351", + "nom_de_la_commune": "ST AGNIN SUR BION", + "code_postal": "38300", + "coordonnees_gps": [ + 45.5389105231, + 5.23930299059 + ], + "libelle_d_acheminement": "ST AGNIN SUR BION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.23930299059, + 45.5389105231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ded56431f6685b4bc025f3d48a3abbd81dc15cf", + "fields": { + "ligne_5": "ECULLEVILLE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1732e9e761e67e298248d0e6782810f4f28780ad", + "fields": { + "code_commune_insee": "38363", + "nom_de_la_commune": "ST BARTHELEMY", + "code_postal": "38270", + "coordonnees_gps": [ + 45.3413935073, + 5.08049664145 + ], + "libelle_d_acheminement": "ST BARTHELEMY DE BEAUREPAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08049664145, + 45.3413935073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "706d59c74260366d368aded1f75933f0749df85e", + "fields": { + "ligne_5": "ST GERMAIN DES VAUX", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "010145ef099462b287ad64ff0d9755875c3ed6b3", + "fields": { + "code_commune_insee": "38364", + "nom_de_la_commune": "ST BARTHELEMY DE SECHILIENNE", + "code_postal": "38220", + "coordonnees_gps": [ + 45.0394014233, + 5.82200744978 + ], + "libelle_d_acheminement": "ST BARTHELEMY DE SECHILIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82200744978, + 45.0394014233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3bed2226943feed903a24ae39e712baa3dd2b5a", + "fields": { + "ligne_5": "VASTEVILLE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcbbb3550359e3bc5e8b32fbece4b3a8f3c1a22e", + "fields": { + "code_commune_insee": "38370", + "nom_de_la_commune": "ST BONNET DE CHAVAGNE", + "code_postal": "38840", + "coordonnees_gps": [ + 45.1216780854, + 5.22815557766 + ], + "libelle_d_acheminement": "ST BONNET DE CHAVAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22815557766, + 45.1216780854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "443e4ec6f1edd367c4cb801e4a6b6756332c61de", + "fields": { + "code_commune_insee": "50044", + "nom_de_la_commune": "BELVAL", + "code_postal": "50210", + "coordonnees_gps": [ + 49.0607502082, + -1.35521741013 + ], + "libelle_d_acheminement": "BELVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35521741013, + 49.0607502082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9acde6a6f336ac69a446bd27bbbe64ab739488b9", + "fields": { + "code_commune_insee": "38374", + "nom_de_la_commune": "ST CHEF", + "code_postal": "38890", + "coordonnees_gps": [ + 45.6409450603, + 5.36204346539 + ], + "libelle_d_acheminement": "ST CHEF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36204346539, + 45.6409450603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fb0f35a2aa9ab96ac2880ae78702a9fb23c39d8", + "fields": { + "code_commune_insee": "50050", + "nom_de_la_commune": "BEUVRIGNY", + "code_postal": "50420", + "coordonnees_gps": [ + 48.9657440451, + -1.00442708556 + ], + "libelle_d_acheminement": "BEUVRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00442708556, + 48.9657440451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "645774b11a7e35802703e5d096638ca9b66c4135", + "fields": { + "code_commune_insee": "38383", + "nom_de_la_commune": "ST ETIENNE DE CROSSEY", + "code_postal": "38960", + "coordonnees_gps": [ + 45.3796872392, + 5.63667290374 + ], + "libelle_d_acheminement": "ST ETIENNE DE CROSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63667290374, + 45.3796872392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b46de26e35f31c57293f504aebadec7c4616dd0", + "fields": { + "code_commune_insee": "50069", + "nom_de_la_commune": "BOURGUENOLLES", + "code_postal": "50800", + "coordonnees_gps": [ + 48.7936682659, + -1.28697228564 + ], + "libelle_d_acheminement": "BOURGUENOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28697228564, + 48.7936682659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dac31b3e682e949442dc562665b49aa7536bad0e", + "fields": { + "code_commune_insee": "38389", + "nom_de_la_commune": "ST GEORGES D ESPERANCHE", + "code_postal": "38790", + "coordonnees_gps": [ + 45.5603583404, + 5.0798569447 + ], + "libelle_d_acheminement": "ST GEORGES D ESPERANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0798569447, + 45.5603583404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee9568e58d090f50f904b365f9670bbbed3e3139", + "fields": { + "code_commune_insee": "50070", + "nom_de_la_commune": "BOUTTEVILLE", + "code_postal": "50480", + "coordonnees_gps": [ + 49.3907224421, + -1.25588804338 + ], + "libelle_d_acheminement": "BOUTTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25588804338, + 49.3907224421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bda86fe6018993d24702f2c33838465cda4be54a", + "fields": { + "code_commune_insee": "38390", + "nom_de_la_commune": "ST GERVAIS", + "code_postal": "38470", + "coordonnees_gps": [ + 45.1901934897, + 5.49780792819 + ], + "libelle_d_acheminement": "ST GERVAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49780792819, + 45.1901934897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83cfe003536c36f79acdb2765546bdfb1604dd4b", + "fields": { + "code_commune_insee": "50085", + "nom_de_la_commune": "BRICQUEVILLE SUR MER", + "code_postal": "50290", + "coordonnees_gps": [ + 48.9183887139, + -1.51381189352 + ], + "libelle_d_acheminement": "BRICQUEVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51381189352, + 48.9183887139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb90af7dacc3aad22d5940134310d45880723224", + "fields": { + "ligne_5": "ST JULIEN DE RAZ", + "code_commune_insee": "38407", + "libelle_d_acheminement": "LA SURE EN CHARTREUSE", + "code_postal": "38134", + "nom_de_la_commune": "LA SURE EN CHARTREUSE", + "coordonnees_gps": [ + 45.34666149, + 5.66687556311 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66687556311, + 45.34666149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42146daeaa658b58f1763b910e2a65bc1b822a7e", + "fields": { + "code_commune_insee": "50087", + "nom_de_la_commune": "BRIX", + "code_postal": "50700", + "coordonnees_gps": [ + 49.5534145945, + -1.57357010117 + ], + "libelle_d_acheminement": "BRIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57357010117, + 49.5534145945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f20778e02246cf6e64eca9a708eedcdebf906c15", + "fields": { + "ligne_5": "POMMIERS LA PLACETTE", + "code_commune_insee": "38407", + "libelle_d_acheminement": "LA SURE EN CHARTREUSE", + "code_postal": "38340", + "nom_de_la_commune": "LA SURE EN CHARTREUSE", + "coordonnees_gps": [ + 45.34666149, + 5.66687556311 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66687556311, + 45.34666149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "593fca7a822cd4e2fbb34dc220a5254e7188bc54", + "fields": { + "ligne_5": "BUAIS", + "code_commune_insee": "50090", + "libelle_d_acheminement": "BUAIS LES MONTS", + "code_postal": "50640", + "nom_de_la_commune": "BUAIS LES MONTS", + "coordonnees_gps": [ + 48.5185588487, + -0.971234303313 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.971234303313, + 48.5185588487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daec0721deadaca4a2ade70deabe16b0bd197a0d", + "fields": { + "code_commune_insee": "38409", + "nom_de_la_commune": "ST JUST DE CLAIX", + "code_postal": "38680", + "coordonnees_gps": [ + 45.0770717878, + 5.27949580181 + ], + "libelle_d_acheminement": "ST JUST DE CLAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27949580181, + 45.0770717878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0befe04f17f3ef448c59a0d6c05f52b6d8cb1b27", + "fields": { + "code_commune_insee": "50094", + "nom_de_la_commune": "CAMPROND", + "code_postal": "50210", + "coordonnees_gps": [ + 49.0858024109, + -1.33862320377 + ], + "libelle_d_acheminement": "CAMPROND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33862320377, + 49.0858024109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d19f347f4fa4a797dddf629cea9fa88b65045b9", + "fields": { + "code_commune_insee": "38419", + "nom_de_la_commune": "ST MARTIN DE CLELLES", + "code_postal": "38930", + "coordonnees_gps": [ + 44.8467463314, + 5.60218937166 + ], + "libelle_d_acheminement": "ST MARTIN DE CLELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60218937166, + 44.8467463314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "550b32c4441d91a1e00ed72082e57d5c85179942", + "fields": { + "ligne_5": "ST EBREMOND DE BONFOSSE", + "code_commune_insee": "50095", + "libelle_d_acheminement": "CANISY", + "code_postal": "50750", + "nom_de_la_commune": "CANISY", + "coordonnees_gps": [ + 49.0797681926, + -1.18008424272 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18008424272, + 49.0797681926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "137def2b92870c41316624acc737ef0ca8f62588", + "fields": { + "code_commune_insee": "38420", + "nom_de_la_commune": "ST MARTIN DE VAULSERRE", + "code_postal": "38480", + "coordonnees_gps": [ + 45.4927458548, + 5.68133755645 + ], + "libelle_d_acheminement": "ST MARTIN DE VAULSERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68133755645, + 45.4927458548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e72986077dc06b6c71e08ed0317e5f58c32a5ae", + "fields": { + "ligne_5": "BREVANDS", + "code_commune_insee": "50099", + "libelle_d_acheminement": "CARENTAN LES MARAIS", + "code_postal": "50500", + "nom_de_la_commune": "CARENTAN LES MARAIS", + "coordonnees_gps": [ + 49.2963250601, + -1.2559215726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2559215726, + 49.2963250601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dd6b17039bf2e3a6f4f639fc962e875c5c41839", + "fields": { + "code_commune_insee": "38423", + "nom_de_la_commune": "ST MARTIN LE VINOUX", + "code_postal": "38950", + "coordonnees_gps": [ + 45.2194259388, + 5.71511762221 + ], + "libelle_d_acheminement": "ST MARTIN LE VINOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71511762221, + 45.2194259388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deadec69ac7222cad53fb47e958fd9fe836ba1b9", + "fields": { + "ligne_5": "CARENTAN", + "code_commune_insee": "50099", + "libelle_d_acheminement": "CARENTAN LES MARAIS", + "code_postal": "50500", + "nom_de_la_commune": "CARENTAN LES MARAIS", + "coordonnees_gps": [ + 49.2963250601, + -1.2559215726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2559215726, + 49.2963250601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2caf9031a3737be89a3523dfc0055402c046edf9", + "fields": { + "code_commune_insee": "38424", + "nom_de_la_commune": "ST MAURICE EN TRIEVES", + "code_postal": "38930", + "coordonnees_gps": [ + 44.759901088, + 5.65305206004 + ], + "libelle_d_acheminement": "ST MAURICE EN TRIEVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65305206004, + 44.759901088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "010cbfcb44b2fbf0a789b6633b3b2d3a27a8772d", + "fields": { + "ligne_5": "CATZ", + "code_commune_insee": "50099", + "libelle_d_acheminement": "CARENTAN LES MARAIS", + "code_postal": "50500", + "nom_de_la_commune": "CARENTAN LES MARAIS", + "coordonnees_gps": [ + 49.2963250601, + -1.2559215726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2559215726, + 49.2963250601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bb73102c4a1e412ffb785995b9c4414d9f041d9", + "fields": { + "code_commune_insee": "38430", + "nom_de_la_commune": "ST MURY MONTEYMOND", + "code_postal": "38190", + "coordonnees_gps": [ + 45.2063585184, + 5.93278209691 + ], + "libelle_d_acheminement": "ST MURY MONTEYMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93278209691, + 45.2063585184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b49ef710ad42916d8a8412827638166330c17bee", + "fields": { + "ligne_5": "LES VEYS", + "code_commune_insee": "50099", + "libelle_d_acheminement": "CARENTAN LES MARAIS", + "code_postal": "50500", + "nom_de_la_commune": "CARENTAN LES MARAIS", + "coordonnees_gps": [ + 49.2963250601, + -1.2559215726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2559215726, + 49.2963250601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcf325316999bae0525536bf5317ee89c000a702", + "fields": { + "code_commune_insee": "38436", + "nom_de_la_commune": "ST PAUL DE VARCES", + "code_postal": "38760", + "coordonnees_gps": [ + 45.0648676926, + 5.63101144999 + ], + "libelle_d_acheminement": "ST PAUL DE VARCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63101144999, + 45.0648676926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32d7bef141c0f3ba7b80405bbd978a068607dd87", + "fields": { + "ligne_5": "LES CHAMBRES", + "code_commune_insee": "50115", + "libelle_d_acheminement": "LE GRIPPON", + "code_postal": "50320", + "nom_de_la_commune": "LE GRIPPON", + "coordonnees_gps": [ + 48.7720554748, + -1.40097666285 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40097666285, + 48.7720554748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81546d507181a0eb5a582e12e36f6adebda3bbb0", + "fields": { + "code_commune_insee": "38446", + "nom_de_la_commune": "ST PIERRE D ENTREMONT", + "code_postal": "38380", + "coordonnees_gps": [ + 45.3856272189, + 5.8512057755 + ], + "libelle_d_acheminement": "ST PIERRE D ENTREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8512057755, + 45.3856272189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "385f5e6f575e6e7d27e778d323fd265fbe695b26", + "fields": { + "code_commune_insee": "50118", + "nom_de_la_commune": "CHAMPREPUS", + "code_postal": "50800", + "coordonnees_gps": [ + 48.8340009078, + -1.31607889446 + ], + "libelle_d_acheminement": "CHAMPREPUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31607889446, + 48.8340009078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0cd248fdaaaefe7c548332101360d389c36384b", + "fields": { + "ligne_5": "ST SEBASTIEN", + "code_commune_insee": "38456", + "libelle_d_acheminement": "CHATEL EN TRIEVES", + "code_postal": "38710", + "nom_de_la_commune": "CHATEL EN TRIEVES", + "coordonnees_gps": [ + 44.8487244503, + 5.80401345281 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80401345281, + 44.8487244503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a832acc1695d7f24e0719a42705cbe6aa37c423", + "fields": { + "code_commune_insee": "50120", + "nom_de_la_commune": "CHANTELOUP", + "code_postal": "50510", + "coordonnees_gps": [ + 48.8929574359, + -1.4825906848 + ], + "libelle_d_acheminement": "CHANTELOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4825906848, + 48.8929574359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "450dc05c771b15af0387e2a972c2d459e13e4f0e", + "fields": { + "code_commune_insee": "38457", + "nom_de_la_commune": "ST SIMEON DE BRESSIEUX", + "code_postal": "38870", + "coordonnees_gps": [ + 45.3258985851, + 5.26249818332 + ], + "libelle_d_acheminement": "ST SIMEON DE BRESSIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26249818332, + 45.3258985851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2070c1094f85d3fa94f29d6f7ef1c7f9028e0cf", + "fields": { + "ligne_5": "TOURLAVILLE", + "code_commune_insee": "50129", + "libelle_d_acheminement": "CHERBOURG EN COTENTIN", + "code_postal": "50110", + "nom_de_la_commune": "CHERBOURG EN COTENTIN", + "coordonnees_gps": [ + 49.633412156, + -1.63390160204 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63390160204, + 49.633412156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c199bdb2da9127e60a58d95850f5bf664b36be3e", + "fields": { + "code_commune_insee": "38466", + "nom_de_la_commune": "ST VINCENT DE MERCUZE", + "code_postal": "38660", + "coordonnees_gps": [ + 45.3749280893, + 5.95880834631 + ], + "libelle_d_acheminement": "ST VINCENT DE MERCUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95880834631, + 45.3749280893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "149c66161f8ad038cbdfeb0329c688473e63b0e7", + "fields": { + "code_commune_insee": "50130", + "nom_de_la_commune": "CHERENCE LE HERON", + "code_postal": "50800", + "coordonnees_gps": [ + 48.7990064942, + -1.20150339544 + ], + "libelle_d_acheminement": "CHERENCE LE HERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20150339544, + 48.7990064942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76cf40caa7d2c6092a5dbd1b81bdb256596bb191", + "fields": { + "code_commune_insee": "38467", + "nom_de_la_commune": "SALAGNON", + "code_postal": "38890", + "coordonnees_gps": [ + 45.6684234149, + 5.35714106149 + ], + "libelle_d_acheminement": "SALAGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35714106149, + 45.6684234149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b04372bec8df604d67bf0b9a86faa5d3311fc61", + "fields": { + "code_commune_insee": "50138", + "nom_de_la_commune": "COLOMBY", + "code_postal": "50700", + "coordonnees_gps": [ + 49.4541493168, + -1.48894916304 + ], + "libelle_d_acheminement": "COLOMBY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48894916304, + 49.4541493168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7f2f8a6a37be9294b0e9c149dfc4791c7cd00f6", + "fields": { + "ligne_5": "BAS DE BONCE", + "code_commune_insee": "38475", + "libelle_d_acheminement": "SATOLAS ET BONCE", + "code_postal": "38290", + "nom_de_la_commune": "SATOLAS ET BONCE", + "coordonnees_gps": [ + 45.682504844, + 5.12584106732 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12584106732, + 45.682504844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "060e07d8ffce498917ff7e0b4c73a90d630af073", + "fields": { + "code_commune_insee": "50146", + "nom_de_la_commune": "COURTILS", + "code_postal": "50220", + "coordonnees_gps": [ + 48.6281130246, + -1.42282016647 + ], + "libelle_d_acheminement": "COURTILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42282016647, + 48.6281130246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcab21370d844b29c230543f79de5b36a00d4edf", + "fields": { + "ligne_5": "BONCE", + "code_commune_insee": "38475", + "libelle_d_acheminement": "SATOLAS ET BONCE", + "code_postal": "38290", + "nom_de_la_commune": "SATOLAS ET BONCE", + "coordonnees_gps": [ + 45.682504844, + 5.12584106732 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12584106732, + 45.682504844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e78bd3bcb10feeb936a35f9f2c863745830fbdd", + "fields": { + "code_commune_insee": "50147", + "nom_de_la_commune": "COUTANCES", + "code_postal": "50200", + "coordonnees_gps": [ + 49.0566189539, + -1.44345003609 + ], + "libelle_d_acheminement": "COUTANCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44345003609, + 49.0566189539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b575f27c31f15c3b760024ab998c63911e5e67af", + "fields": { + "ligne_5": "LE CHAFFARD", + "code_commune_insee": "38475", + "libelle_d_acheminement": "SATOLAS ET BONCE", + "code_postal": "38290", + "nom_de_la_commune": "SATOLAS ET BONCE", + "coordonnees_gps": [ + 45.682504844, + 5.12584106732 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12584106732, + 45.682504844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b17fc504284c137877545959471876aee6cad9b4", + "fields": { + "code_commune_insee": "50156", + "nom_de_la_commune": "CROSVILLE SUR DOUVE", + "code_postal": "50360", + "coordonnees_gps": [ + 49.3854792404, + -1.47607183277 + ], + "libelle_d_acheminement": "CROSVILLE SUR DOUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47607183277, + 49.3854792404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92ce1ff29703252472f22187b74e8b30405c73b9", + "fields": { + "code_commune_insee": "38494", + "nom_de_la_commune": "SOLEYMIEU", + "code_postal": "38460", + "coordonnees_gps": [ + 45.7033352747, + 5.35913663168 + ], + "libelle_d_acheminement": "SOLEYMIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35913663168, + 45.7033352747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e35d8b49e1fa1145d0dfdcb539b912f31983daf4", + "fields": { + "code_commune_insee": "50159", + "nom_de_la_commune": "DANGY", + "code_postal": "50750", + "coordonnees_gps": [ + 49.029220854, + -1.22193963849 + ], + "libelle_d_acheminement": "DANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22193963849, + 49.029220854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f624dcf83114bac20bc71416443f36c858c1d5a3", + "fields": { + "code_commune_insee": "38495", + "nom_de_la_commune": "LA SONE", + "code_postal": "38840", + "coordonnees_gps": [ + 45.1166600305, + 5.28073341872 + ], + "libelle_d_acheminement": "LA SONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28073341872, + 45.1166600305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19a48ea2d53eac43587a0aca5979a68e9055b5d1", + "fields": { + "code_commune_insee": "50164", + "nom_de_la_commune": "DOMJEAN", + "code_postal": "50420", + "coordonnees_gps": [ + 48.9907905898, + -1.03423801965 + ], + "libelle_d_acheminement": "DOMJEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03423801965, + 48.9907905898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93731f0f50a2827fa35f03c625615a38d13340fb", + "fields": { + "code_commune_insee": "38499", + "nom_de_la_commune": "SUSVILLE", + "code_postal": "38350", + "coordonnees_gps": [ + 44.9261426887, + 5.76206988161 + ], + "libelle_d_acheminement": "SUSVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76206988161, + 44.9261426887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab01091afcb735a8b4937220afb394d5887703c8", + "fields": { + "code_commune_insee": "50165", + "nom_de_la_commune": "DONVILLE LES BAINS", + "code_postal": "50350", + "coordonnees_gps": [ + 48.8508414617, + -1.57315135089 + ], + "libelle_d_acheminement": "DONVILLE LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57315135089, + 48.8508414617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "164e02d22c97713910cbc68bb3c37bea475c3b84", + "fields": { + "code_commune_insee": "38515", + "nom_de_la_commune": "TREPT", + "code_postal": "38460", + "coordonnees_gps": [ + 45.6887973335, + 5.32417967781 + ], + "libelle_d_acheminement": "TREPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32417967781, + 45.6887973335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7a1ebf19a57b8667565459ca8e37068bf19041a", + "fields": { + "code_commune_insee": "50166", + "nom_de_la_commune": "DOVILLE", + "code_postal": "50250", + "coordonnees_gps": [ + 49.3370222882, + -1.54822338133 + ], + "libelle_d_acheminement": "DOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.54822338133, + 49.3370222882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a7c4ed17a4469e1bf0fc3f917e78fca80511ecf", + "fields": { + "code_commune_insee": "38521", + "nom_de_la_commune": "LA VALETTE", + "code_postal": "38350", + "coordonnees_gps": [ + 44.9447156208, + 5.85272838136 + ], + "libelle_d_acheminement": "LA VALETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85272838136, + 44.9447156208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ca68f324e7c525d4facb27d2102c12a88367621", + "fields": { + "ligne_5": "LES CHERIS", + "code_commune_insee": "50168", + "libelle_d_acheminement": "DUCEY LES CHERIS", + "code_postal": "50220", + "nom_de_la_commune": "DUCEY LES CHERIS", + "coordonnees_gps": [ + 48.6129636498, + -1.27873609026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27873609026, + 48.6129636498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1922ec8edf7af3c627b04b3da1bb5caa6f44bbf7", + "fields": { + "code_commune_insee": "38522", + "nom_de_la_commune": "VALJOUFFREY", + "code_postal": "38740", + "coordonnees_gps": [ + 44.8815349113, + 6.07950399615 + ], + "libelle_d_acheminement": "VALJOUFFREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07950399615, + 44.8815349113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55ca170db2bbf9bd161ea5040a53f33032e95fe4", + "fields": { + "code_commune_insee": "50169", + "nom_de_la_commune": "ECAUSSEVILLE", + "code_postal": "50310", + "coordonnees_gps": [ + 49.4597239721, + -1.38260000439 + ], + "libelle_d_acheminement": "ECAUSSEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38260000439, + 49.4597239721 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "630ae1996e48f67dbf93dab9256718a822a8b46c", + "fields": { + "code_commune_insee": "38539", + "nom_de_la_commune": "VERTRIEU", + "code_postal": "38390", + "coordonnees_gps": [ + 45.8703431976, + 5.36496686983 + ], + "libelle_d_acheminement": "VERTRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36496686983, + 45.8703431976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f330544c8d60885ab0c822c1d0b49b8c5e0f3e2", + "fields": { + "code_commune_insee": "50174", + "nom_de_la_commune": "EQUILLY", + "code_postal": "50320", + "coordonnees_gps": [ + 48.8331161622, + -1.38244555863 + ], + "libelle_d_acheminement": "EQUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38244555863, + 48.8331161622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c331ec4a99c1252859bdd9c76ec7e59837d98821", + "fields": { + "code_commune_insee": "38547", + "nom_de_la_commune": "VILLARD BONNOT", + "code_postal": "38190", + "coordonnees_gps": [ + 45.2446205727, + 5.88906725424 + ], + "libelle_d_acheminement": "VILLARD BONNOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88906725424, + 45.2446205727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3b7475203cb19b8fbeda29c009605d39b03e4e2", + "fields": { + "code_commune_insee": "50185", + "nom_de_la_commune": "FLEURY", + "code_postal": "50800", + "coordonnees_gps": [ + 48.8488921299, + -1.26431862113 + ], + "libelle_d_acheminement": "FLEURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26431862113, + 48.8488921299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72bb71c5f6beea4f3a7d711b21cdaf767b86471d", + "fields": { + "code_commune_insee": "38548", + "nom_de_la_commune": "VILLARD DE LANS", + "code_postal": "38250", + "coordonnees_gps": [ + 45.0600847837, + 5.54420891959 + ], + "libelle_d_acheminement": "VILLARD DE LANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54420891959, + 45.0600847837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90b00ecbafd11fee0b29e908bfdc870d39149aad", + "fields": { + "code_commune_insee": "50194", + "nom_de_la_commune": "FRESVILLE", + "code_postal": "50310", + "coordonnees_gps": [ + 49.4413987957, + -1.35332483937 + ], + "libelle_d_acheminement": "FRESVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35332483937, + 49.4413987957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02c1b07608241d565a05eea8f957049f017c4bf3", + "fields": { + "code_commune_insee": "38559", + "nom_de_la_commune": "VINAY", + "code_postal": "38470", + "coordonnees_gps": [ + 45.2147129367, + 5.40750863423 + ], + "libelle_d_acheminement": "VINAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40750863423, + 45.2147129367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cff493eb989c75b9addf091dc6f095fda7ca095", + "fields": { + "code_commune_insee": "50195", + "nom_de_la_commune": "GATHEMO", + "code_postal": "50150", + "coordonnees_gps": [ + 48.7693848928, + -0.963982047584 + ], + "libelle_d_acheminement": "GATHEMO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.963982047584, + 48.7693848928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c88b36ffd6c1883848f97b9023a48f8a0465340", + "fields": { + "code_commune_insee": "38561", + "nom_de_la_commune": "VIRIVILLE", + "code_postal": "38980", + "coordonnees_gps": [ + 45.3050296653, + 5.20262742852 + ], + "libelle_d_acheminement": "VIRIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20262742852, + 45.3050296653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f7ee3c81328ed501841b93c27d582e847002b49", + "fields": { + "code_commune_insee": "50210", + "nom_de_la_commune": "GORGES", + "code_postal": "50190", + "coordonnees_gps": [ + 49.2644285169, + -1.38981745517 + ], + "libelle_d_acheminement": "GORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38981745517, + 49.2644285169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3852f81202e5e04ccfae2336356a269e0f5d38c7", + "fields": { + "code_commune_insee": "38563", + "nom_de_la_commune": "VOIRON", + "code_postal": "38500", + "coordonnees_gps": [ + 45.3791720843, + 5.58240310671 + ], + "libelle_d_acheminement": "VOIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58240310671, + 45.3791720843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "811b74a6c9482d0fa86cfd208f8dfc802d040ab7", + "fields": { + "code_commune_insee": "50215", + "nom_de_la_commune": "GOUVILLE SUR MER", + "code_postal": "50560", + "coordonnees_gps": [ + 49.0979435491, + -1.57923308824 + ], + "libelle_d_acheminement": "GOUVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57923308824, + 49.0979435491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfb857a6424ce631a0ff84d7ca7b7f1426b37215", + "fields": { + "code_commune_insee": "39006", + "nom_de_la_commune": "AIGLEPIERRE", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9553944509, + 5.80953794446 + ], + "libelle_d_acheminement": "AIGLEPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80953794446, + 46.9553944509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f833a4557d7d91cd79cae84548d71c61ccb2bb9", + "fields": { + "code_commune_insee": "50218", + "nom_de_la_commune": "GRANVILLE", + "code_postal": "50400", + "coordonnees_gps": [ + 48.8327078372, + -1.56670866413 + ], + "libelle_d_acheminement": "GRANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56670866413, + 48.8327078372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d142f57150b700ab95118a9f62a18d43d8ae61d0", + "fields": { + "code_commune_insee": "39009", + "nom_de_la_commune": "ANDELOT EN MONTAGNE", + "code_postal": "39110", + "coordonnees_gps": [ + 46.8591094265, + 5.9289781242 + ], + "libelle_d_acheminement": "ANDELOT EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9289781242, + 46.8591094265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e2715a6d9b5a19e330f9500df757d6b04d121b8", + "fields": { + "code_commune_insee": "67435", + "nom_de_la_commune": "SARREWERDEN", + "code_postal": "67260", + "coordonnees_gps": [ + 48.9076740897, + 7.07306614237 + ], + "libelle_d_acheminement": "SARREWERDEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07306614237, + 48.9076740897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97fa0a07a294614980941477c53e52e6d28d865e", + "fields": { + "code_commune_insee": "39013", + "nom_de_la_commune": "ARBOIS", + "code_postal": "39600", + "coordonnees_gps": [ + 46.8941749828, + 5.77318253275 + ], + "libelle_d_acheminement": "ARBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77318253275, + 46.8941749828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea5b7015642fe7d056075f168342bfb0a7218ffb", + "fields": { + "code_commune_insee": "39014", + "nom_de_la_commune": "ARCHELANGE", + "code_postal": "39290", + "coordonnees_gps": [ + 47.1484873028, + 5.52058392702 + ], + "libelle_d_acheminement": "ARCHELANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52058392702, + 47.1484873028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75185d84303618c584eefbea0753f6e5fcc151df", + "fields": { + "code_commune_insee": "67445", + "nom_de_la_commune": "SCHERWILLER", + "code_postal": "67750", + "coordonnees_gps": [ + 48.2952491317, + 7.41512520333 + ], + "libelle_d_acheminement": "SCHERWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41512520333, + 48.2952491317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d84d011731c2f7c5bb9809b5d49158711f90073b", + "fields": { + "code_commune_insee": "39015", + "nom_de_la_commune": "ARDON", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7729485271, + 5.87754754837 + ], + "libelle_d_acheminement": "ARDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87754754837, + 46.7729485271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "218382f224cc55b041a480a30b29e2e88e4153c0", + "fields": { + "code_commune_insee": "67453", + "nom_de_la_commune": "SCHOENAU", + "code_postal": "67390", + "coordonnees_gps": [ + 48.2260065064, + 7.65066673603 + ], + "libelle_d_acheminement": "SCHOENAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.65066673603, + 48.2260065064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f3af2d9ac154a4bbcabdb1047f91bed41110cd5", + "fields": { + "code_commune_insee": "39017", + "nom_de_la_commune": "ARLAY", + "code_postal": "39140", + "coordonnees_gps": [ + 46.7695260312, + 5.52939356263 + ], + "libelle_d_acheminement": "ARLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52939356263, + 46.7695260312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "804133d3118f334c731e9033b9f730e5298ccad2", + "fields": { + "ligne_5": "ST GERMAIN LES ARLAY", + "code_commune_insee": "39017", + "libelle_d_acheminement": "ARLAY", + "code_postal": "39210", + "nom_de_la_commune": "ARLAY", + "coordonnees_gps": [ + 46.7695260312, + 5.52939356263 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52939356263, + 46.7695260312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75514bea71f43e1231cf2678800ce52ced7ccae8", + "fields": { + "code_commune_insee": "67468", + "nom_de_la_commune": "SILTZHEIM", + "code_postal": "67260", + "coordonnees_gps": [ + 49.061608516, + 7.09081368964 + ], + "libelle_d_acheminement": "SILTZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09081368964, + 49.061608516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f713169a6fe36efe3596b4b1ae2576aea7f7197", + "fields": { + "code_commune_insee": "39028", + "nom_de_la_commune": "AUMONT", + "code_postal": "39800", + "coordonnees_gps": [ + 46.9161293357, + 5.63272592575 + ], + "libelle_d_acheminement": "AUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63272592575, + 46.9161293357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a988ff213e51e297e8d60985fcc7a0dbaf59fee7", + "fields": { + "code_commune_insee": "67472", + "nom_de_la_commune": "SOUFFLENHEIM", + "code_postal": "67620", + "coordonnees_gps": [ + 48.8085682655, + 7.95676945015 + ], + "libelle_d_acheminement": "SOUFFLENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.95676945015, + 48.8085682655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caf774b27fd245d7067ae303a92f88bcbc047631", + "fields": { + "code_commune_insee": "39032", + "nom_de_la_commune": "AVIGNON LES ST CLAUDE", + "code_postal": "39200", + "coordonnees_gps": [ + 46.4011757711, + 5.84079043463 + ], + "libelle_d_acheminement": "AVIGNON LES ST CLAUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84079043463, + 46.4011757711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13dbe0056ff9a3b0a7536a029fdedf904d505fbd", + "fields": { + "code_commune_insee": "67478", + "nom_de_la_commune": "STEINBOURG", + "code_postal": "67790", + "coordonnees_gps": [ + 48.7639649052, + 7.41351196572 + ], + "libelle_d_acheminement": "STEINBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41351196572, + 48.7639649052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c15e0f3fcead0b5ae117305f2ab8d4800620ee0", + "fields": { + "code_commune_insee": "39040", + "nom_de_la_commune": "BARRETAINE", + "code_postal": "39800", + "coordonnees_gps": [ + 46.810217532, + 5.71788289074 + ], + "libelle_d_acheminement": "BARRETAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71788289074, + 46.810217532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "946a4c09945666e4c27e134a95dfcdaf35310398", + "fields": { + "code_commune_insee": "67480", + "nom_de_la_commune": "STILL", + "code_postal": "67190", + "coordonnees_gps": [ + 48.5666223105, + 7.36640588547 + ], + "libelle_d_acheminement": "STILL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36640588547, + 48.5666223105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2764ca904b3be9e21701748f52013211014b338", + "fields": { + "code_commune_insee": "39048", + "nom_de_la_commune": "BELMONT", + "code_postal": "39380", + "coordonnees_gps": [ + 47.0281412034, + 5.60483401256 + ], + "libelle_d_acheminement": "BELMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60483401256, + 47.0281412034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5da166b441db6ec8063be44ea27aab5829dce98", + "fields": { + "code_commune_insee": "67484", + "nom_de_la_commune": "STUNDWILLER", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9244859775, + 7.99641194102 + ], + "libelle_d_acheminement": "STUNDWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.99641194102, + 48.9244859775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d95ded7312f338f0444a865ff5183726ed6fe189", + "fields": { + "code_commune_insee": "39052", + "nom_de_la_commune": "BIEF DES MAISONS", + "code_postal": "39150", + "coordonnees_gps": [ + 46.7038559187, + 6.04967687137 + ], + "libelle_d_acheminement": "BIEF DES MAISONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04967687137, + 46.7038559187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96edaa5415b2f1c21e6a67b7e2376309293d079d", + "fields": { + "code_commune_insee": "67494", + "nom_de_la_commune": "TRIMBACH", + "code_postal": "67470", + "coordonnees_gps": [ + 48.9403737526, + 8.01823156218 + ], + "libelle_d_acheminement": "TRIMBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.01823156218, + 48.9403737526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a91e1fc1a916f4ea4bb923ec4e4f96a24e0fb01e", + "fields": { + "code_commune_insee": "39056", + "nom_de_la_commune": "BLETTERANS", + "code_postal": "39140", + "coordonnees_gps": [ + 46.7316211339, + 5.42781411933 + ], + "libelle_d_acheminement": "BLETTERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42781411933, + 46.7316211339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "162e4888bcf9ab11573ea155f73b3c7d6f270097", + "fields": { + "code_commune_insee": "67497", + "nom_de_la_commune": "UHLWILLER", + "code_postal": "67350", + "coordonnees_gps": [ + 48.8202578689, + 7.67470803749 + ], + "libelle_d_acheminement": "UHLWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67470803749, + 48.8202578689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7766ebab5ac726707582a76f151d4082150e832", + "fields": { + "code_commune_insee": "39061", + "nom_de_la_commune": "BOISSIA", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5806605913, + 5.7211528831 + ], + "libelle_d_acheminement": "BOISSIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7211528831, + 46.5806605913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "806a43c0b6c6b0b45fbdfc853ff3a864cba53858", + "fields": { + "code_commune_insee": "67499", + "nom_de_la_commune": "URBEIS", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3323782294, + 7.20301847743 + ], + "libelle_d_acheminement": "URBEIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20301847743, + 48.3323782294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aad99243813c8a4c28482f6f3a9825ca7d8bfd16", + "fields": { + "code_commune_insee": "39062", + "nom_de_la_commune": "LA BOISSIERE", + "code_postal": "39240", + "coordonnees_gps": [ + 46.4205726757, + 5.52149312243 + ], + "libelle_d_acheminement": "LA BOISSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52149312243, + 46.4205726757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71bdd1e3502d2020273397ec97bc5eb5a3fa7ce6", + "fields": { + "code_commune_insee": "67507", + "nom_de_la_commune": "VILLE", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3429794644, + 7.30342869358 + ], + "libelle_d_acheminement": "VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30342869358, + 48.3429794644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f80579027e2fd1094fc189fd7f008029b3693376", + "fields": { + "code_commune_insee": "39063", + "nom_de_la_commune": "BONLIEU", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5968045882, + 5.8566003581 + ], + "libelle_d_acheminement": "BONLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8566003581, + 46.5968045882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0a63f7210006b1eb898628221c9be79f0a592a4", + "fields": { + "code_commune_insee": "39068", + "nom_de_la_commune": "LES BOUCHOUX", + "code_postal": "39370", + "coordonnees_gps": [ + 46.2946998262, + 5.80456188916 + ], + "libelle_d_acheminement": "LES BOUCHOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80456188916, + 46.2946998262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc440ec730472a29421d4e041c2b2a1656f9e57c", + "fields": { + "code_commune_insee": "67517", + "nom_de_la_commune": "WANGEN", + "code_postal": "67520", + "coordonnees_gps": [ + 48.6188684237, + 7.46340283895 + ], + "libelle_d_acheminement": "WANGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46340283895, + 48.6188684237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4319b683ad42cc2fc560e4dc425f06c7f12ad5dd", + "fields": { + "code_commune_insee": "39070", + "nom_de_la_commune": "BOURG DE SIROD", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7297500419, + 5.95586980597 + ], + "libelle_d_acheminement": "BOURG DE SIROD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95586980597, + 46.7297500419 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd727f740e9d82e942af6b283bbe18b24bf205d4", + "fields": { + "code_commune_insee": "67523", + "nom_de_la_commune": "WEITBRUCH", + "code_postal": "67500", + "coordonnees_gps": [ + 48.7621242565, + 7.78027504315 + ], + "libelle_d_acheminement": "WEITBRUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.78027504315, + 48.7621242565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "127d33a1bf79a05199e8c5484b9d59facb02e28f", + "fields": { + "code_commune_insee": "39076", + "nom_de_la_commune": "LA BRETENIERE", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1293532558, + 5.66464601093 + ], + "libelle_d_acheminement": "LA BRETENIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66464601093, + 47.1293532558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b350ff6054793491f10b428f77fff6db589a818", + "fields": { + "code_commune_insee": "67532", + "nom_de_la_commune": "WILLGOTTHEIM", + "code_postal": "67370", + "coordonnees_gps": [ + 48.6735628136, + 7.51567430993 + ], + "libelle_d_acheminement": "WILLGOTTHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51567430993, + 48.6735628136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c2b051503d83686e11f569baa4e82f7555fbed3", + "fields": { + "code_commune_insee": "39080", + "nom_de_la_commune": "BROISSIA", + "code_postal": "39320", + "coordonnees_gps": [ + 46.3562943901, + 5.43285662397 + ], + "libelle_d_acheminement": "BROISSIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43285662397, + 46.3562943901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba32cdfd398006a354eb646d289740ac029c71f", + "fields": { + "ligne_5": "WOELLENHEIM", + "code_commune_insee": "67532", + "libelle_d_acheminement": "WILLGOTTHEIM", + "code_postal": "67370", + "nom_de_la_commune": "WILLGOTTHEIM", + "coordonnees_gps": [ + 48.6735628136, + 7.51567430993 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.51567430993, + 48.6735628136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21a97ed6197e1660acb508b36402162c8a14daee", + "fields": { + "code_commune_insee": "39083", + "nom_de_la_commune": "CENSEAU", + "code_postal": "39250", + "coordonnees_gps": [ + 46.8165867767, + 6.07767180739 + ], + "libelle_d_acheminement": "CENSEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07767180739, + 46.8165867767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0266e6eb85d6027e170f1f59084c102632054b84", + "fields": { + "ligne_5": "JAEGERTHAL", + "code_commune_insee": "67536", + "libelle_d_acheminement": "WINDSTEIN", + "code_postal": "67110", + "nom_de_la_commune": "WINDSTEIN", + "coordonnees_gps": [ + 48.9912433394, + 7.69559951845 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69559951845, + 48.9912433394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9548f2fbc910fcf28b65165662872492488446a1", + "fields": { + "code_commune_insee": "39085", + "nom_de_la_commune": "CERNIEBAUD", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7365821804, + 6.1257959511 + ], + "libelle_d_acheminement": "CERNIEBAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1257959511, + 46.7365821804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0ce56cf17f7e94523bae0e33c43614d4b349541", + "fields": { + "code_commune_insee": "67541", + "nom_de_la_commune": "WINTZENBACH", + "code_postal": "67470", + "coordonnees_gps": [ + 48.9320980019, + 8.10430684085 + ], + "libelle_d_acheminement": "WINTZENBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.10430684085, + 48.9320980019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1990984d4e4c823beb984df72c1bb86e7c1074d", + "fields": { + "code_commune_insee": "39086", + "nom_de_la_commune": "CERNON", + "code_postal": "39240", + "coordonnees_gps": [ + 46.4121311574, + 5.64360732811 + ], + "libelle_d_acheminement": "CERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64360732811, + 46.4121311574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e950c035755515f2b9b3584c1adb5ed9a1121b4", + "fields": { + "ligne_5": "ALTENSTADT", + "code_commune_insee": "67544", + "libelle_d_acheminement": "WISSEMBOURG", + "code_postal": "67160", + "nom_de_la_commune": "WISSEMBOURG", + "coordonnees_gps": [ + 49.0184562539, + 7.96174575912 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.96174575912, + 49.0184562539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34c5953f4042b7bb9da42c66cec9797543695efe", + "fields": { + "code_commune_insee": "39088", + "nom_de_la_commune": "CESANCEY", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6227403643, + 5.4919593002 + ], + "libelle_d_acheminement": "CESANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4919593002, + 46.6227403643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14b2d9fd6bca8fa6c768391da604ad5d2c3883d9", + "fields": { + "ligne_5": "WEILER", + "code_commune_insee": "67544", + "libelle_d_acheminement": "WISSEMBOURG", + "code_postal": "67160", + "nom_de_la_commune": "WISSEMBOURG", + "coordonnees_gps": [ + 49.0184562539, + 7.96174575912 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.96174575912, + 49.0184562539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "138b02183a95b2479d2c57ee9ae07f28735310db", + "fields": { + "code_commune_insee": "39091", + "nom_de_la_commune": "LES CHALESMES", + "code_postal": "39150", + "coordonnees_gps": [ + 46.6920276055, + 6.02602567308 + ], + "libelle_d_acheminement": "LES CHALESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02602567308, + 46.6920276055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fc2d86c86163ea2a7223bbada6758b03a6924e3", + "fields": { + "code_commune_insee": "67545", + "nom_de_la_commune": "WITTERNHEIM", + "code_postal": "67230", + "coordonnees_gps": [ + 48.3134249965, + 7.6177163093 + ], + "libelle_d_acheminement": "WITTERNHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6177163093, + 48.3134249965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8996dbabeee483afbb16d669ad248e303c08eec9", + "fields": { + "code_commune_insee": "39101", + "nom_de_la_commune": "CHAMPVANS", + "code_postal": "39100", + "coordonnees_gps": [ + 47.1021842612, + 5.42048711833 + ], + "libelle_d_acheminement": "CHAMPVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.42048711833, + 47.1021842612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4515d1fe626628794adb51f3c8862de524ac703a", + "fields": { + "code_commune_insee": "67547", + "nom_de_la_commune": "WITTISHEIM", + "code_postal": "67820", + "coordonnees_gps": [ + 48.2630616091, + 7.59069438607 + ], + "libelle_d_acheminement": "WITTISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59069438607, + 48.2630616091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fe425a0d8b5315aaa93f2d451c89b6c78d225ab", + "fields": { + "code_commune_insee": "39107", + "nom_de_la_commune": "CHARCIER", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6290312371, + 5.7635543146 + ], + "libelle_d_acheminement": "CHARCIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7635543146, + 46.6290312371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e900cddde6d4f92f545674566287c545715b59c3", + "fields": { + "code_commune_insee": "39114", + "nom_de_la_commune": "CHATEAU CHALON", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7594016188, + 5.64816991256 + ], + "libelle_d_acheminement": "CHATEAU CHALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64816991256, + 46.7594016188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "734d2e9dd8dced1bb27f86c92bc8612126df642a", + "fields": { + "ligne_5": "AMMERTZWILLER", + "code_commune_insee": "68006", + "libelle_d_acheminement": "BERNWILLER", + "code_postal": "68210", + "nom_de_la_commune": "BERNWILLER", + "coordonnees_gps": [ + 47.6926147527, + 7.16944522071 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16944522071, + 47.6926147527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b9c2cedf631f26cbbdaf62c3b1e2edc23e4821a", + "fields": { + "code_commune_insee": "39128", + "nom_de_la_commune": "CHAUSSIN", + "code_postal": "39120", + "coordonnees_gps": [ + 46.973824579, + 5.40270953105 + ], + "libelle_d_acheminement": "CHAUSSIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40270953105, + 46.973824579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "968a79cd657f68dde699f74bde61a2516a586123", + "fields": { + "ligne_5": "PRENOVEL", + "code_commune_insee": "39130", + "libelle_d_acheminement": "NANCHEZ", + "code_postal": "39150", + "nom_de_la_commune": "NANCHEZ", + "coordonnees_gps": [ + 46.4998251911, + 5.8576069903 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8576069903, + 46.4998251911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c26f0c444435086bedcc308706ed9b3cb934b8fe", + "fields": { + "ligne_5": "CHEMILLA", + "code_commune_insee": "39137", + "libelle_d_acheminement": "ST HYMETIERE SUR VALOUSE", + "code_postal": "39240", + "nom_de_la_commune": "ST HYMETIERE SUR VALOUSE", + "coordonnees_gps": [ + 46.3507935799, + 5.55838223354 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55838223354, + 46.3507935799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f690a47c41e06151faba6d538c9d7a16379615a", + "fields": { + "code_commune_insee": "39143", + "nom_de_la_commune": "CHEVROTAINE", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6528649109, + 5.86000659207 + ], + "libelle_d_acheminement": "CHEVROTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86000659207, + 46.6528649109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e1650deaeba703da113afa3bd71129464ccbcad", + "fields": { + "code_commune_insee": "68055", + "nom_de_la_commune": "BRUEBACH", + "code_postal": "68440", + "coordonnees_gps": [ + 47.700432424, + 7.35849105232 + ], + "libelle_d_acheminement": "BRUEBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35849105232, + 47.700432424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f79a2cdac3bf119540ba3ea983ab86ee83e2ccf1", + "fields": { + "code_commune_insee": "39146", + "nom_de_la_commune": "CHILLY LE VIGNOBLE", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6596723262, + 5.49690965689 + ], + "libelle_d_acheminement": "CHILLY LE VIGNOBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49690965689, + 46.6596723262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f959466308d2b9c87756c3269553dbc914523a6d", + "fields": { + "code_commune_insee": "68058", + "nom_de_la_commune": "BUHL", + "code_postal": "68530", + "coordonnees_gps": [ + 47.9243546086, + 7.17962229088 + ], + "libelle_d_acheminement": "BUHL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17962229088, + 47.9243546086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7429431609fde3c65787c445e16760b6d73a44d2", + "fields": { + "code_commune_insee": "39147", + "nom_de_la_commune": "CHILLY SUR SALINS", + "code_postal": "39110", + "coordonnees_gps": [ + 46.8697346286, + 5.85796704483 + ], + "libelle_d_acheminement": "CHILLY SUR SALINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85796704483, + 46.8697346286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80a74b3828a49a3d17e5cd5e4d9d4693c9a9f6cb", + "fields": { + "code_commune_insee": "39160", + "nom_de_la_commune": "COMMENAILLES", + "code_postal": "39140", + "coordonnees_gps": [ + 46.8055925733, + 5.43718044801 + ], + "libelle_d_acheminement": "COMMENAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43718044801, + 46.8055925733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a489392dbb2530e1145308c6e11f44471dd91df6", + "fields": { + "code_commune_insee": "68075", + "nom_de_la_commune": "DURMENACH", + "code_postal": "68480", + "coordonnees_gps": [ + 47.5262001607, + 7.33850450335 + ], + "libelle_d_acheminement": "DURMENACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.33850450335, + 47.5262001607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "172dffd7dfa9600129438324ac0692632422dc16", + "fields": { + "code_commune_insee": "39164", + "nom_de_la_commune": "CONLIEGE", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6513724979, + 5.61109105926 + ], + "libelle_d_acheminement": "CONLIEGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61109105926, + 46.6513724979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea3c497bd3d346fd5c0eba797123870f8a92cd13", + "fields": { + "code_commune_insee": "39170", + "nom_de_la_commune": "COURLANS", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6757012909, + 5.48680231929 + ], + "libelle_d_acheminement": "COURLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48680231929, + 46.6757012909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29b34838b26c92cebe769a1dc063a1b96cab477f", + "fields": { + "code_commune_insee": "68091", + "nom_de_la_commune": "FESSENHEIM", + "code_postal": "68740", + "coordonnees_gps": [ + 47.9099263761, + 7.53198557441 + ], + "libelle_d_acheminement": "FESSENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53198557441, + 47.9099263761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8cee11d7d464e69381ffe7323e2ce6b294e7187", + "fields": { + "ligne_5": "CHAVANNE", + "code_commune_insee": "39170", + "libelle_d_acheminement": "COURLANS", + "code_postal": "39570", + "nom_de_la_commune": "COURLANS", + "coordonnees_gps": [ + 46.6757012909, + 5.48680231929 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48680231929, + 46.6757012909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5f7fd1141adbf3cf7a29cd652333c03dd6a48bb", + "fields": { + "code_commune_insee": "39176", + "nom_de_la_commune": "CRAMANS", + "code_postal": "39600", + "coordonnees_gps": [ + 47.0073865371, + 5.78702671901 + ], + "libelle_d_acheminement": "CRAMANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78702671901, + 47.0073865371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a8dab99e1fe6a37c7cce936a431c59f781ca09a", + "fields": { + "code_commune_insee": "68102", + "nom_de_la_commune": "GEISHOUSE", + "code_postal": "68690", + "coordonnees_gps": [ + 47.8886591699, + 7.07169057683 + ], + "libelle_d_acheminement": "GEISHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07169057683, + 47.8886591699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed58f12c74fe6816f302974d4744c441ca4e96fa", + "fields": { + "ligne_5": "GRANGES SUR BAUME", + "code_commune_insee": "39177", + "libelle_d_acheminement": "HAUTEROCHE", + "code_postal": "39210", + "nom_de_la_commune": "HAUTEROCHE", + "coordonnees_gps": [ + 46.6884401125, + 5.66906572619 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66906572619, + 46.6884401125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4f0245e94898f945454e4d3ff9c1abcb7905b22", + "fields": { + "ligne_5": "CRANCOT", + "code_commune_insee": "39177", + "libelle_d_acheminement": "HAUTEROCHE", + "code_postal": "39570", + "nom_de_la_commune": "HAUTEROCHE", + "coordonnees_gps": [ + 46.6884401125, + 5.66906572619 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66906572619, + 46.6884401125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a90e156ce30dcb56c44b2160877db5ac92da5fb2", + "fields": { + "code_commune_insee": "39182", + "nom_de_la_commune": "CRISSEY", + "code_postal": "39100", + "coordonnees_gps": [ + 47.0503243045, + 5.47819873684 + ], + "libelle_d_acheminement": "CRISSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47819873684, + 47.0503243045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f2a9c5cc3307c593c3bdcd366ae31822c8aac1f", + "fields": { + "code_commune_insee": "39184", + "nom_de_la_commune": "LES CROZETS", + "code_postal": "39260", + "coordonnees_gps": [ + 46.4635033757, + 5.80467882912 + ], + "libelle_d_acheminement": "LES CROZETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80467882912, + 46.4635033757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d10a28e0a65f13b53d6a0dd6a6b83ab896970e3b", + "fields": { + "code_commune_insee": "68148", + "nom_de_la_commune": "HUNDSBACH", + "code_postal": "68130", + "coordonnees_gps": [ + 47.5983071682, + 7.3366232805 + ], + "libelle_d_acheminement": "HUNDSBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3366232805, + 47.5983071682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18f22c75288fa57111a76a6ed5618021c64f9cbc", + "fields": { + "ligne_5": "LE PETIT MERCEY", + "code_commune_insee": "39190", + "libelle_d_acheminement": "DAMPIERRE", + "code_postal": "39350", + "nom_de_la_commune": "DAMPIERRE", + "coordonnees_gps": [ + 47.1650509305, + 5.74228998802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74228998802, + 47.1650509305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3275c8f22938c70e351fc07198fad1ded0f74d12", + "fields": { + "code_commune_insee": "68155", + "nom_de_la_commune": "INGERSHEIM", + "code_postal": "68040", + "coordonnees_gps": [ + 48.1014572023, + 7.31053680908 + ], + "libelle_d_acheminement": "INGERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31053680908, + 48.1014572023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8525864f33def60feb9e39d045ffdc721f7ddb67", + "fields": { + "ligne_5": "CHATEAUNEUF", + "code_commune_insee": "39190", + "libelle_d_acheminement": "DAMPIERRE", + "code_postal": "39700", + "nom_de_la_commune": "DAMPIERRE", + "coordonnees_gps": [ + 47.1650509305, + 5.74228998802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74228998802, + 47.1650509305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ae0f0db52058714ed816c1fa1279993d0c383f2", + "fields": { + "ligne_5": "KEMBS LOECHLE", + "code_commune_insee": "68163", + "libelle_d_acheminement": "KEMBS", + "code_postal": "68680", + "nom_de_la_commune": "KEMBS", + "coordonnees_gps": [ + 47.6793674876, + 7.50063130465 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50063130465, + 47.6793674876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e93dfd88329b4e759eceedd3f6d90b7828064207", + "fields": { + "code_commune_insee": "39191", + "nom_de_la_commune": "DARBONNAY", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8253223066, + 5.60755327893 + ], + "libelle_d_acheminement": "DARBONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60755327893, + 46.8253223066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63077e5481bc06565b959423e548408225620c8e", + "fields": { + "code_commune_insee": "68165", + "nom_de_la_commune": "KIFFIS", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4413533077, + 7.35699873313 + ], + "libelle_d_acheminement": "KIFFIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35699873313, + 47.4413533077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b9b8ef262fb0636178a9359a731c71de3b80092", + "fields": { + "code_commune_insee": "39200", + "nom_de_la_commune": "DOMPIERRE SUR MONT", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5627677979, + 5.61274460974 + ], + "libelle_d_acheminement": "DOMPIERRE SUR MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61274460974, + 46.5627677979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dc826baa40365db30e11dcbb10c8b32b002b6cd", + "fields": { + "code_commune_insee": "68167", + "nom_de_la_commune": "KIRCHBERG", + "code_postal": "68290", + "coordonnees_gps": [ + 47.7864018539, + 6.93996072996 + ], + "libelle_d_acheminement": "KIRCHBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93996072996, + 47.7864018539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "605834c3ece04f022e61c61ffaad54e3d2647b08", + "fields": { + "code_commune_insee": "39201", + "nom_de_la_commune": "DOUCIER", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6499567029, + 5.77799951166 + ], + "libelle_d_acheminement": "DOUCIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77799951166, + 46.6499567029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "484aeaa24745cd50626a6fe287237cd626eb4b83", + "fields": { + "ligne_5": "NENON", + "code_commune_insee": "39205", + "libelle_d_acheminement": "ECLANS NENON", + "code_postal": "39700", + "nom_de_la_commune": "ECLANS NENON", + "coordonnees_gps": [ + 47.1038743929, + 5.61210284808 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61210284808, + 47.1038743929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3934fdd21b14951e81f08288a7fdd6bc0f42253", + "fields": { + "code_commune_insee": "68176", + "nom_de_la_commune": "LARGITZEN", + "code_postal": "68580", + "coordonnees_gps": [ + 47.561066335, + 7.19235370252 + ], + "libelle_d_acheminement": "LARGITZEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19235370252, + 47.561066335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c6436f8e92759d951f48d8b2a93d3587285c9bc", + "fields": { + "code_commune_insee": "39206", + "nom_de_la_commune": "ECLEUX", + "code_postal": "39600", + "coordonnees_gps": [ + 46.9949161228, + 5.73686979775 + ], + "libelle_d_acheminement": "ECLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73686979775, + 46.9949161228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c76b87840a222440412d38c69e3de4f4de9e8c09", + "fields": { + "code_commune_insee": "68177", + "nom_de_la_commune": "LAUTENBACH", + "code_postal": "68610", + "coordonnees_gps": [ + 47.9527349295, + 7.16433010313 + ], + "libelle_d_acheminement": "LAUTENBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16433010313, + 47.9527349295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebbe0426ad733bc0afa3caf99524d00abf495853", + "fields": { + "code_commune_insee": "39214", + "nom_de_la_commune": "ESSERVAL TARTRE", + "code_postal": "39250", + "coordonnees_gps": [ + 46.8306327742, + 6.03218629416 + ], + "libelle_d_acheminement": "ESSERVAL TARTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03218629416, + 46.8306327742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24398b2fa21cb5cfb9ed986f4bef5144bcdfedd0", + "fields": { + "code_commune_insee": "68178", + "nom_de_la_commune": "LAUTENBACHZELL", + "code_postal": "68610", + "coordonnees_gps": [ + 47.9254894792, + 7.09657685658 + ], + "libelle_d_acheminement": "LAUTENBACHZELL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.09657685658, + 47.9254894792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e258c562a93ccbf2fe3d3d39b326e8de0410929", + "fields": { + "ligne_5": "LES RONCHAUX", + "code_commune_insee": "39216", + "libelle_d_acheminement": "ETIVAL", + "code_postal": "39130", + "nom_de_la_commune": "ETIVAL", + "coordonnees_gps": [ + 46.4917221843, + 5.79388173937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79388173937, + 46.4917221843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "915137d3385c7746ab23ce4f4357f9f083686c6f", + "fields": { + "code_commune_insee": "68189", + "nom_de_la_commune": "LOGELHEIM", + "code_postal": "68280", + "coordonnees_gps": [ + 48.021228018, + 7.41870993146 + ], + "libelle_d_acheminement": "LOGELHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41870993146, + 48.021228018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fc71a6008b169e53876b9356eeb6a8478f8f8e8", + "fields": { + "code_commune_insee": "39217", + "nom_de_la_commune": "L ETOILE", + "code_postal": "39570", + "coordonnees_gps": [ + 46.7160513036, + 5.53394517039 + ], + "libelle_d_acheminement": "L ETOILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53394517039, + 46.7160513036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48c63d6c2b0acbfdde3087ccb373f6466a1d3784", + "fields": { + "code_commune_insee": "68191", + "nom_de_la_commune": "LUEMSCHWILLER", + "code_postal": "68720", + "coordonnees_gps": [ + 47.6576144506, + 7.29703045483 + ], + "libelle_d_acheminement": "LUEMSCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29703045483, + 47.6576144506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1b0605f10cf31379c9c4f97310eb511a519f0f1", + "fields": { + "code_commune_insee": "39218", + "nom_de_la_commune": "ETREPIGNEY", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1104911888, + 5.6819169156 + ], + "libelle_d_acheminement": "ETREPIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6819169156, + 47.1104911888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22d1d0700b8081fdf65282c0b41009aa4dbedd6e", + "fields": { + "code_commune_insee": "68198", + "nom_de_la_commune": "MAGSTATT LE HAUT", + "code_postal": "68510", + "coordonnees_gps": [ + 47.6271826488, + 7.39456060175 + ], + "libelle_d_acheminement": "MAGSTATT LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.39456060175, + 47.6271826488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a15a8443e67ef91c0b9b8b946146331b2f723e35", + "fields": { + "code_commune_insee": "39220", + "nom_de_la_commune": "FALLETANS", + "code_postal": "39700", + "coordonnees_gps": [ + 47.0819186526, + 5.56688411224 + ], + "libelle_d_acheminement": "FALLETANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56688411224, + 47.0819186526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c56027738f38e3d9c844231faaa4502c1081f6ff", + "fields": { + "code_commune_insee": "68209", + "nom_de_la_commune": "MITTELWIHR", + "code_postal": "68630", + "coordonnees_gps": [ + 48.1506188794, + 7.31071233803 + ], + "libelle_d_acheminement": "MITTELWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31071233803, + 48.1506188794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c57d7da6833a948011ba1981d2b038d3e4791c0c", + "fields": { + "code_commune_insee": "39225", + "nom_de_la_commune": "LE FIED", + "code_postal": "39800", + "coordonnees_gps": [ + 46.7740955741, + 5.71637200568 + ], + "libelle_d_acheminement": "LE FIED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71637200568, + 46.7740955741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b051ffe3f75cdbd8a6dbd227288d3a99a1b0023", + "fields": { + "code_commune_insee": "39227", + "nom_de_la_commune": "FONCINE LE BAS", + "code_postal": "39520", + "coordonnees_gps": [ + 46.6323096573, + 6.0304724219 + ], + "libelle_d_acheminement": "FONCINE LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0304724219, + 46.6323096573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a56d5c8e32af78cd90b8674ffd3869f91366248", + "fields": { + "code_commune_insee": "68222", + "nom_de_la_commune": "MUESPACH LE HAUT", + "code_postal": "68640", + "coordonnees_gps": [ + 47.5402727782, + 7.4094886662 + ], + "libelle_d_acheminement": "MUESPACH LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4094886662, + 47.5402727782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed77e90ea2c003f56438a52d83664bada11d0503", + "fields": { + "code_commune_insee": "39232", + "nom_de_la_commune": "FORT DU PLASNE", + "code_postal": "39150", + "coordonnees_gps": [ + 46.6232367708, + 5.98199426982 + ], + "libelle_d_acheminement": "FORT DU PLASNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98199426982, + 46.6232367708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e09e4f0c5c8d9d77655906e58556b2997d7cfb36", + "fields": { + "code_commune_insee": "39236", + "nom_de_la_commune": "FRANCHEVILLE", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8366646501, + 5.50234541581 + ], + "libelle_d_acheminement": "FRANCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50234541581, + 46.8366646501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7595c4447327605655ccaa24be735a82cc889ea0", + "fields": { + "code_commune_insee": "39241", + "nom_de_la_commune": "FREBUANS", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6495243028, + 5.48468530029 + ], + "libelle_d_acheminement": "FREBUANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48468530029, + 46.6495243028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6acf823ac7ab47e03ea17216a579aed1ed9e2a90", + "fields": { + "code_commune_insee": "39245", + "nom_de_la_commune": "GATEY", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9455665112, + 5.45611135598 + ], + "libelle_d_acheminement": "GATEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45611135598, + 46.9455665112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9be2520247d52a7123ee89a66111089582d6970", + "fields": { + "code_commune_insee": "68254", + "nom_de_la_commune": "PETIT LANDAU", + "code_postal": "68490", + "coordonnees_gps": [ + 47.7349039137, + 7.50750240777 + ], + "libelle_d_acheminement": "PETIT LANDAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.50750240777, + 47.7349039137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e9a292580979fcd036c837f08cba5041dfb9fea", + "fields": { + "code_commune_insee": "39250", + "nom_de_la_commune": "GERUGE", + "code_postal": "39570", + "coordonnees_gps": [ + 46.625057705, + 5.53075865537 + ], + "libelle_d_acheminement": "GERUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53075865537, + 46.625057705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f7a53506021bf30806d2611d8ba80f8cd0f66c2", + "fields": { + "code_commune_insee": "68259", + "nom_de_la_commune": "RAEDERSDORF", + "code_postal": "68480", + "coordonnees_gps": [ + 47.471221085, + 7.35426920399 + ], + "libelle_d_acheminement": "RAEDERSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35426920399, + 47.471221085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "064a433a88f2f16496992d1c24cadbe386ef1a54", + "fields": { + "code_commune_insee": "39252", + "nom_de_la_commune": "GEVRY", + "code_postal": "39100", + "coordonnees_gps": [ + 47.0322816848, + 5.44484425486 + ], + "libelle_d_acheminement": "GEVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44484425486, + 47.0322816848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b23ac2fdbe16098b4392851551616219a9dd99fb", + "fields": { + "code_commune_insee": "68262", + "nom_de_la_commune": "RANSPACH", + "code_postal": "68470", + "coordonnees_gps": [ + 47.9046781432, + 7.02202271046 + ], + "libelle_d_acheminement": "RANSPACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02202271046, + 47.9046781432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0cd9ffebce7e354ae8d368e96b3523eace92ac5", + "fields": { + "code_commune_insee": "39253", + "nom_de_la_commune": "GIGNY", + "code_postal": "39320", + "coordonnees_gps": [ + 46.4543990771, + 5.4715682164 + ], + "libelle_d_acheminement": "GIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4715682164, + 46.4543990771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc4c3d5d29e74b079c3f6fcfd3693990c4a85779", + "fields": { + "code_commune_insee": "68264", + "nom_de_la_commune": "RANSPACH LE HAUT", + "code_postal": "68220", + "coordonnees_gps": [ + 47.5802864143, + 7.42000987982 + ], + "libelle_d_acheminement": "RANSPACH LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42000987982, + 47.5802864143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c001807956cdcaadc5dde65da2e285f01bf85be", + "fields": { + "code_commune_insee": "39259", + "nom_de_la_commune": "GRANGE DE VAIVRE", + "code_postal": "39600", + "coordonnees_gps": [ + 46.9978542167, + 5.84207258909 + ], + "libelle_d_acheminement": "GRANGE DE VAIVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84207258909, + 46.9978542167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b792fc010c4df8b1fff3eaed2f2133f035e204a6", + "fields": { + "code_commune_insee": "39261", + "nom_de_la_commune": "GRAYE ET CHARNAY", + "code_postal": "39320", + "coordonnees_gps": [ + 46.4731744736, + 5.44898680296 + ], + "libelle_d_acheminement": "GRAYE ET CHARNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44898680296, + 46.4731744736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0710be4a3e25e4d31d60f91d590a6559c400a078", + "fields": { + "code_commune_insee": "68273", + "nom_de_la_commune": "RIESPACH", + "code_postal": "68640", + "coordonnees_gps": [ + 47.5364456332, + 7.28849736143 + ], + "libelle_d_acheminement": "RIESPACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28849736143, + 47.5364456332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b359b19f2acd5ae9df993d75e691d8c752fc9ae", + "fields": { + "code_commune_insee": "39274", + "nom_de_la_commune": "LAJOUX", + "code_postal": "39310", + "coordonnees_gps": [ + 46.3914322554, + 6.00896074386 + ], + "libelle_d_acheminement": "LAJOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00896074386, + 46.3914322554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26d07fb71d3ea83431d031b047bc0542267be47f", + "fields": { + "code_commune_insee": "68282", + "nom_de_la_commune": "ROMAGNY", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6112014535, + 7.06778027681 + ], + "libelle_d_acheminement": "ROMAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06778027681, + 47.6112014535 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a4835c16db427d74259cf3d115b001f9a691720", + "fields": { + "code_commune_insee": "39275", + "nom_de_la_commune": "LAMOURA", + "code_postal": "39310", + "coordonnees_gps": [ + 46.4081181986, + 5.98341720791 + ], + "libelle_d_acheminement": "LAMOURA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98341720791, + 46.4081181986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3343a7ed7f243d6207a4c7f3b18f63148c7b2f7", + "fields": { + "code_commune_insee": "68285", + "nom_de_la_commune": "RORSCHWIHR", + "code_postal": "68590", + "coordonnees_gps": [ + 48.219003777, + 7.36549943321 + ], + "libelle_d_acheminement": "RORSCHWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36549943321, + 48.219003777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "244e7241275fe9792a2761dc07e4534a410a4c73", + "fields": { + "code_commune_insee": "39286", + "nom_de_la_commune": "LAVANS LES ST CLAUDE", + "code_postal": "39170", + "coordonnees_gps": [ + 46.3901726307, + 5.77719970471 + ], + "libelle_d_acheminement": "LAVANS LES ST CLAUDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77719970471, + 46.3901726307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22d7d75437bfa4ae297f42fcff8e540b6f692610", + "fields": { + "ligne_5": "SAVIGNA", + "code_commune_insee": "39290", + "libelle_d_acheminement": "VALZIN EN PETITE MONTAGNE", + "code_postal": "39240", + "nom_de_la_commune": "VALZIN EN PETITE MONTAGNE", + "coordonnees_gps": [ + 46.4245328121, + 5.60694899546 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60694899546, + 46.4245328121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8c1fbe9ac71695dc4d6051494c73ac3fe38eb02", + "fields": { + "code_commune_insee": "39299", + "nom_de_la_commune": "LONGWY SUR LE DOUBS", + "code_postal": "39120", + "coordonnees_gps": [ + 46.965571307, + 5.35428928661 + ], + "libelle_d_acheminement": "LONGWY SUR LE DOUBS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35428928661, + 46.965571307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bf483442ba8ea281fc8e0daeee4a8bc3f3cd793", + "fields": { + "code_commune_insee": "68308", + "nom_de_la_commune": "SICKERT", + "code_postal": "68290", + "coordonnees_gps": [ + 47.7919119213, + 6.98580589371 + ], + "libelle_d_acheminement": "SICKERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98580589371, + 47.7919119213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "501c4254b0bcc28ace9f9fc35be405d6f8800ded", + "fields": { + "code_commune_insee": "39307", + "nom_de_la_commune": "MAISOD", + "code_postal": "39260", + "coordonnees_gps": [ + 46.4791457718, + 5.69233262933 + ], + "libelle_d_acheminement": "MAISOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69233262933, + 46.4791457718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0392a14d79ce6e669ab94f4a77401553e0fe7711", + "fields": { + "code_commune_insee": "68321", + "nom_de_la_commune": "STAFFELFELDEN", + "code_postal": "68850", + "coordonnees_gps": [ + 47.82743014, + 7.25320289915 + ], + "libelle_d_acheminement": "STAFFELFELDEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25320289915, + 47.82743014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "681a97a6851553b1622868d661181276c9beaa5a", + "fields": { + "code_commune_insee": "39312", + "nom_de_la_commune": "MARIGNA SUR VALOUSE", + "code_postal": "39240", + "coordonnees_gps": [ + 46.4465766056, + 5.52802659429 + ], + "libelle_d_acheminement": "MARIGNA SUR VALOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52802659429, + 46.4465766056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a36d96784431ce759ceb4040837627853ace0ec3", + "fields": { + "code_commune_insee": "68323", + "nom_de_la_commune": "STEINBRUNN LE BAS", + "code_postal": "68440", + "coordonnees_gps": [ + 47.6760725505, + 7.36407535682 + ], + "libelle_d_acheminement": "STEINBRUNN LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36407535682, + 47.6760725505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd889b4f2f6dba0b86a297fb74ad8e1939ebe2a4", + "fields": { + "ligne_5": "COMMUNAILLES EN MONTAGNE", + "code_commune_insee": "39331", + "libelle_d_acheminement": "MIGNOVILLARD", + "code_postal": "39250", + "nom_de_la_commune": "MIGNOVILLARD", + "coordonnees_gps": [ + 46.7758072369, + 6.14394186083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14394186083, + 46.7758072369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "909fe7ec2039337bc6853efed6c718463d43db0a", + "fields": { + "code_commune_insee": "68330", + "nom_de_la_commune": "STRUETH", + "code_postal": "68580", + "coordonnees_gps": [ + 47.5748861351, + 7.11500184209 + ], + "libelle_d_acheminement": "STRUETH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.11500184209, + 47.5748861351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72036c014a15a922191a58dd4b586a449dbf1a0e", + "fields": { + "ligne_5": "FROIDEFONTAINE", + "code_commune_insee": "39331", + "libelle_d_acheminement": "MIGNOVILLARD", + "code_postal": "39250", + "nom_de_la_commune": "MIGNOVILLARD", + "coordonnees_gps": [ + 46.7758072369, + 6.14394186083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14394186083, + 46.7758072369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15c346cca739db5182c8de31de25d73671ab0d47", + "fields": { + "code_commune_insee": "50232", + "nom_de_la_commune": "HAUTEVILLE LA GUICHARD", + "code_postal": "50570", + "coordonnees_gps": [ + 49.1244193511, + -1.3030503118 + ], + "libelle_d_acheminement": "HAUTEVILLE LA GUICHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3030503118, + 49.1244193511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f19fc5aac282fc2330452a4c8180c3db6bf4428a", + "fields": { + "code_commune_insee": "39342", + "nom_de_la_commune": "MONAY", + "code_postal": "39230", + "coordonnees_gps": [ + 46.838724975, + 5.59503528853 + ], + "libelle_d_acheminement": "MONAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59503528853, + 46.838724975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eefe332d1b8b6914ba6e374eac58cc3aad74d091", + "fields": { + "code_commune_insee": "50235", + "nom_de_la_commune": "LA HAYE D ECTOT", + "code_postal": "50270", + "coordonnees_gps": [ + 49.3936872914, + -1.73016316 + ], + "libelle_d_acheminement": "LA HAYE D ECTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73016316, + 49.3936872914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "433c6357ef6065d2206d6d4dd727d56e47ff479d", + "fields": { + "code_commune_insee": "39353", + "nom_de_la_commune": "MONTFLEUR", + "code_postal": "39320", + "coordonnees_gps": [ + 46.333233615, + 5.44582401435 + ], + "libelle_d_acheminement": "MONTFLEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44582401435, + 46.333233615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8732fb40f626e8325c126787f611e578a04e112", + "fields": { + "ligne_5": "LA HAYE DU PUITS", + "code_commune_insee": "50236", + "libelle_d_acheminement": "LA HAYE", + "code_postal": "50250", + "nom_de_la_commune": "LA HAYE", + "coordonnees_gps": [ + 49.2835142105, + -1.53943989107 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53943989107, + 49.2835142105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0af32ed145b1725e22a408c978fec2d8ccec6a10", + "fields": { + "code_commune_insee": "39362", + "nom_de_la_commune": "MONTMOROT", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6868843309, + 5.5196117795 + ], + "libelle_d_acheminement": "MONTMOROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5196117795, + 46.6868843309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73dd320eb0c5a81a1fe2a87330c071a88f57c92b", + "fields": { + "ligne_5": "ST REMY DES LANDES", + "code_commune_insee": "50236", + "libelle_d_acheminement": "LA HAYE", + "code_postal": "50580", + "nom_de_la_commune": "LA HAYE", + "coordonnees_gps": [ + 49.2835142105, + -1.53943989107 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.53943989107, + 49.2835142105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96276c485fbb79b278eca3c11e769af537ae617c", + "fields": { + "code_commune_insee": "39364", + "nom_de_la_commune": "MONTROND", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7867874524, + 5.84385490665 + ], + "libelle_d_acheminement": "MONTROND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84385490665, + 46.7867874524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5162eec15fb4b43c92e4f7a3d996207573c984b7", + "fields": { + "code_commune_insee": "50238", + "nom_de_la_commune": "HEAUVILLE", + "code_postal": "50340", + "coordonnees_gps": [ + 49.5753620349, + -1.80249526081 + ], + "libelle_d_acheminement": "HEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.80249526081, + 49.5753620349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ab499c7175d8b2a2038c0195a35ee7cdad678ce", + "fields": { + "code_commune_insee": "39366", + "nom_de_la_commune": "MONT SUR MONNET", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7035726549, + 5.84464264755 + ], + "libelle_d_acheminement": "MONT SUR MONNET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84464264755, + 46.7035726549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95f494800cde007cdcbae192c9cf87c194d283b0", + "fields": { + "ligne_5": "HEBECREVON", + "code_commune_insee": "50239", + "libelle_d_acheminement": "THEREVAL", + "code_postal": "50180", + "nom_de_la_commune": "THEREVAL", + "coordonnees_gps": [ + 49.1221777065, + -1.17047644258 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.17047644258, + 49.1221777065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74b9055850cc0b3774b957acdc36fc924f98395a", + "fields": { + "code_commune_insee": "39367", + "nom_de_la_commune": "MORBIER", + "code_postal": "39400", + "coordonnees_gps": [ + 46.55692328, + 6.01610878304 + ], + "libelle_d_acheminement": "MORBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01610878304, + 46.55692328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "848663150fc514b6e7ebc1b2e51ab08623ab5fd3", + "fields": { + "ligne_5": "LE MESNIL THEBAULT", + "code_commune_insee": "50256", + "libelle_d_acheminement": "ISIGNY LE BUAT", + "code_postal": "50540", + "nom_de_la_commune": "ISIGNY LE BUAT", + "coordonnees_gps": [ + 48.6214964353, + -1.18298649234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18298649234, + 48.6214964353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54af3e62a483253ee6842f1a5d8188087fe3b480", + "fields": { + "ligne_5": "LEZAT", + "code_commune_insee": "39368", + "libelle_d_acheminement": "HAUTS DE BIENNE", + "code_postal": "39400", + "nom_de_la_commune": "HAUTS DE BIENNE", + "coordonnees_gps": [ + 46.5258425381, + 6.03328656487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03328656487, + 46.5258425381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8151d5329316ffad63f29c7fc8226589b81901e6", + "fields": { + "ligne_5": "LES BIARDS", + "code_commune_insee": "50256", + "libelle_d_acheminement": "ISIGNY LE BUAT", + "code_postal": "50540", + "nom_de_la_commune": "ISIGNY LE BUAT", + "coordonnees_gps": [ + 48.6214964353, + -1.18298649234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18298649234, + 48.6214964353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b066b75cba10de214350a40bef3ad4cbeea01214", + "fields": { + "code_commune_insee": "39370", + "nom_de_la_commune": "MOUCHARD", + "code_postal": "39330", + "coordonnees_gps": [ + 46.9775766117, + 5.78997395755 + ], + "libelle_d_acheminement": "MOUCHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78997395755, + 46.9775766117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d044ef5fbde4b589a1a3eb1f92b240a10d08b7c", + "fields": { + "ligne_5": "MONTGOTHIER", + "code_commune_insee": "50256", + "libelle_d_acheminement": "ISIGNY LE BUAT", + "code_postal": "50540", + "nom_de_la_commune": "ISIGNY LE BUAT", + "coordonnees_gps": [ + 48.6214964353, + -1.18298649234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18298649234, + 48.6214964353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6b6694f00098ec6489926dd90e39da992954f45", + "fields": { + "code_commune_insee": "39394", + "nom_de_la_commune": "ONOZ", + "code_postal": "39270", + "coordonnees_gps": [ + 46.4480090992, + 5.66352512736 + ], + "libelle_d_acheminement": "ONOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66352512736, + 46.4480090992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da697d298fec6003fcff7ba0c22b4930bef86078", + "fields": { + "code_commune_insee": "50259", + "nom_de_la_commune": "JUILLEY", + "code_postal": "50220", + "coordonnees_gps": [ + 48.5909006433, + -1.34729095786 + ], + "libelle_d_acheminement": "JUILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34729095786, + 48.5909006433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "732a0fcd4524b38fabc86595259118e1e070f66d", + "fields": { + "code_commune_insee": "39408", + "nom_de_la_commune": "PATORNAY", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5873552855, + 5.70873502503 + ], + "libelle_d_acheminement": "PATORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70873502503, + 46.5873552855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d516f4c07105a7781cbf5144c7d0bd2f60daa5d8", + "fields": { + "code_commune_insee": "50261", + "nom_de_la_commune": "LAMBERVILLE", + "code_postal": "50160", + "coordonnees_gps": [ + 49.079020177, + -0.91672130687 + ], + "libelle_d_acheminement": "LAMBERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.91672130687, + 49.079020177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4579f38625380fb89e0e0cacf6cf655756d71db2", + "fields": { + "code_commune_insee": "39411", + "nom_de_la_commune": "PERRIGNY", + "code_postal": "39570", + "coordonnees_gps": [ + 46.676681519, + 5.59933078022 + ], + "libelle_d_acheminement": "PERRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59933078022, + 46.676681519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ca1e31c2b8cd20be7cb19dca44dc34ecdfb5c02", + "fields": { + "code_commune_insee": "50267", + "nom_de_la_commune": "LESSAY", + "code_postal": "50430", + "coordonnees_gps": [ + 49.2167143742, + -1.52478862014 + ], + "libelle_d_acheminement": "LESSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52478862014, + 49.2167143742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec80d124aca0723f240d88a2d5fc3078e8d783be", + "fields": { + "code_commune_insee": "39415", + "nom_de_la_commune": "PETIT NOIR", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9324882884, + 5.33765918128 + ], + "libelle_d_acheminement": "PETIT NOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33765918128, + 46.9324882884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8add200685bf84280031de4842c8652e49337b09", + "fields": { + "code_commune_insee": "50272", + "nom_de_la_commune": "LINGREVILLE", + "code_postal": "50660", + "coordonnees_gps": [ + 48.9432866634, + -1.52855287697 + ], + "libelle_d_acheminement": "LINGREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52855287697, + 48.9432866634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "327aa81b7b8fdbd2567ce33211c62625a94148e5", + "fields": { + "code_commune_insee": "39425", + "nom_de_la_commune": "LES PLANCHES PRES ARBOIS", + "code_postal": "39600", + "coordonnees_gps": [ + 46.8806181055, + 5.80844995624 + ], + "libelle_d_acheminement": "LES PLANCHES PRES ARBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80844995624, + 46.8806181055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9b6ddf4662c3c2a06cc580b101d82e46fcd4f15", + "fields": { + "code_commune_insee": "50278", + "nom_de_la_commune": "LE LOREUR", + "code_postal": "50510", + "coordonnees_gps": [ + 48.8640911491, + -1.42396294106 + ], + "libelle_d_acheminement": "LE LOREUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42396294106, + 48.8640911491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e92e5dd684c18f4536119765343289d0cd5cef6", + "fields": { + "code_commune_insee": "39426", + "nom_de_la_commune": "PLASNE", + "code_postal": "39210", + "coordonnees_gps": [ + 46.7948712678, + 5.69040057232 + ], + "libelle_d_acheminement": "PLASNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69040057232, + 46.7948712678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "361c34e3a5e60b25c7889f128d35c023dbc9bce6", + "fields": { + "code_commune_insee": "50290", + "nom_de_la_commune": "MARCILLY", + "code_postal": "50220", + "coordonnees_gps": [ + 48.653990075, + -1.2442081655 + ], + "libelle_d_acheminement": "MARCILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2442081655, + 48.653990075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8c71814db8b43827519a367820c27c82ae8e51a", + "fields": { + "code_commune_insee": "39432", + "nom_de_la_commune": "POINTRE", + "code_postal": "39290", + "coordonnees_gps": [ + 47.2219181115, + 5.49075761084 + ], + "libelle_d_acheminement": "POINTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49075761084, + 47.2219181115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d73aad95a890aa3aede23356ec083ae8bd1d9213", + "fields": { + "code_commune_insee": "50294", + "nom_de_la_commune": "MARTINVAST", + "code_postal": "50690", + "coordonnees_gps": [ + 49.598183461, + -1.64849604825 + ], + "libelle_d_acheminement": "MARTINVAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.64849604825, + 49.598183461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3246010e7ec4dbc87e5c5afc2407f63029c9b4b5", + "fields": { + "code_commune_insee": "39435", + "nom_de_la_commune": "PONT DE POITTE", + "code_postal": "39130", + "coordonnees_gps": [ + 46.5717848345, + 5.68822628964 + ], + "libelle_d_acheminement": "PONT DE POITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68822628964, + 46.5717848345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c176310389960232d5dfd8820a9b39048398252c", + "fields": { + "code_commune_insee": "50300", + "nom_de_la_commune": "LE MESNIL ADELEE", + "code_postal": "50520", + "coordonnees_gps": [ + 48.7002691908, + -1.06280357498 + ], + "libelle_d_acheminement": "LE MESNIL ADELEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06280357498, + 48.7002691908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d15848d3985fc3b7c169b802fbfd26883a83c003", + "fields": { + "code_commune_insee": "39446", + "nom_de_la_commune": "PUPILLIN", + "code_postal": "39600", + "coordonnees_gps": [ + 46.8763553965, + 5.75235125424 + ], + "libelle_d_acheminement": "PUPILLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75235125424, + 46.8763553965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0886e0dc812984beea216a37f7d3a456fc34adc", + "fields": { + "code_commune_insee": "50304", + "nom_de_la_commune": "LE MESNIL AUBERT", + "code_postal": "50510", + "coordonnees_gps": [ + 48.9444549365, + -1.41515417901 + ], + "libelle_d_acheminement": "LE MESNIL AUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41515417901, + 48.9444549365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ac67227d49d3be1a882159910b5dfd71700f5cb", + "fields": { + "code_commune_insee": "39447", + "nom_de_la_commune": "QUINTIGNY", + "code_postal": "39570", + "coordonnees_gps": [ + 46.7343660477, + 5.52473105076 + ], + "libelle_d_acheminement": "QUINTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52473105076, + 46.7343660477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff4ffffd3e0a0850a15220e6182aadba312b3ee4", + "fields": { + "code_commune_insee": "50326", + "nom_de_la_commune": "LE MESNIL VILLEMAN", + "code_postal": "50450", + "coordonnees_gps": [ + 48.8563586641, + -1.34036490176 + ], + "libelle_d_acheminement": "LE MESNIL VILLEMAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34036490176, + 48.8563586641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33a4c7f9080f81edb15c549848f7d7298aa95375", + "fields": { + "code_commune_insee": "39455", + "nom_de_la_commune": "REITHOUSE", + "code_postal": "39270", + "coordonnees_gps": [ + 46.5602761319, + 5.55586322234 + ], + "libelle_d_acheminement": "REITHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55586322234, + 46.5602761319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40cab09dec1d61e265b54e1327d0afc98671c870", + "fields": { + "code_commune_insee": "50328", + "nom_de_la_commune": "MILLIERES", + "code_postal": "50190", + "coordonnees_gps": [ + 49.1906741242, + -1.45514260552 + ], + "libelle_d_acheminement": "MILLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45514260552, + 49.1906741242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e0d1925ca5340bc6e9dca393c33c98bf3e2c5cf", + "fields": { + "code_commune_insee": "39456", + "nom_de_la_commune": "RELANS", + "code_postal": "39140", + "coordonnees_gps": [ + 46.7663121226, + 5.43804546339 + ], + "libelle_d_acheminement": "RELANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43804546339, + 46.7663121226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e79a9a694fdb81ee1c152746b160739e3c4496e0", + "fields": { + "code_commune_insee": "50334", + "nom_de_la_commune": "MONTABOT", + "code_postal": "50410", + "coordonnees_gps": [ + 48.936758668, + -1.13220070022 + ], + "libelle_d_acheminement": "MONTABOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13220070022, + 48.936758668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b13fcef2b1a554d0e018bb283508ee3603b88f14", + "fields": { + "code_commune_insee": "39461", + "nom_de_la_commune": "RIX", + "code_postal": "39250", + "coordonnees_gps": [ + 46.7622805418, + 6.05502144561 + ], + "libelle_d_acheminement": "RIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05502144561, + 46.7622805418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efbfa0927414779bf2f3b96c31fbd9f3a74e040a", + "fields": { + "ligne_5": "MORTAIN", + "code_commune_insee": "50359", + "libelle_d_acheminement": "MORTAIN BOCAGE", + "code_postal": "50140", + "nom_de_la_commune": "MORTAIN BOCAGE", + "coordonnees_gps": [ + 48.6474805702, + -0.931721848821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.931721848821, + 48.6474805702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f887a119b437d1cd697a7e7a42f23605df1894f0", + "fields": { + "code_commune_insee": "39462", + "nom_de_la_commune": "ROCHEFORT SUR NENON", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1226290709, + 5.55631642318 + ], + "libelle_d_acheminement": "ROCHEFORT SUR NENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55631642318, + 47.1226290709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "116bf915c82e66729d630ac55922a47acdfc0219", + "fields": { + "ligne_5": "MOYON", + "code_commune_insee": "50363", + "libelle_d_acheminement": "MOYON VILLAGES", + "code_postal": "50860", + "nom_de_la_commune": "MOYON VILLAGES", + "coordonnees_gps": [ + 48.9941243257, + -1.13665567668 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13665567668, + 48.9941243257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "477c7e0e09da3570a697f37e77bd45e8955216b9", + "fields": { + "code_commune_insee": "39465", + "nom_de_la_commune": "ROMANGE", + "code_postal": "39700", + "coordonnees_gps": [ + 47.1606289716, + 5.59427997843 + ], + "libelle_d_acheminement": "ROMANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59427997843, + 47.1606289716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "564e57a16a0fd4850aa9a098cdbcca35f240557d", + "fields": { + "code_commune_insee": "50376", + "nom_de_la_commune": "NICORPS", + "code_postal": "50200", + "coordonnees_gps": [ + 49.0313601381, + -1.41066233816 + ], + "libelle_d_acheminement": "NICORPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41066233816, + 49.0313601381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc84c4a2a55c22c677373129c80efb3c851b635b", + "fields": { + "code_commune_insee": "39474", + "nom_de_la_commune": "STE AGNES", + "code_postal": "39190", + "coordonnees_gps": [ + 46.6148301302, + 5.47488282815 + ], + "libelle_d_acheminement": "STE AGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47488282815, + 46.6148301302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "873d43160f857f87ae196280b2591b13a90a38ed", + "fields": { + "code_commune_insee": "50387", + "nom_de_la_commune": "ORGLANDES", + "code_postal": "50390", + "coordonnees_gps": [ + 49.4240734293, + -1.44023948223 + ], + "libelle_d_acheminement": "ORGLANDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44023948223, + 49.4240734293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d04cd33c47608f27440feb6e6b07d7bd80eac8ac", + "fields": { + "code_commune_insee": "39475", + "nom_de_la_commune": "ST AMOUR", + "code_postal": "39160", + "coordonnees_gps": [ + 46.4375471402, + 5.33561825227 + ], + "libelle_d_acheminement": "ST AMOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33561825227, + 46.4375471402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22e749856b10197359c2820e361e1c1ad5df8af5", + "fields": { + "ligne_5": "PARIGNY", + "code_commune_insee": "50391", + "libelle_d_acheminement": "GRANDPARIGNY", + "code_postal": "50600", + "nom_de_la_commune": "GRANDPARIGNY", + "coordonnees_gps": [ + 48.5937472635, + -1.08234718807 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08234718807, + 48.5937472635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e7110a3e60e80c4d6526ee09a46b703aa91db78", + "fields": { + "code_commune_insee": "39476", + "nom_de_la_commune": "ST AUBIN", + "code_postal": "39410", + "coordonnees_gps": [ + 47.0326920185, + 5.33365017851 + ], + "libelle_d_acheminement": "ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33365017851, + 47.0326920185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1d814cce6803576cd8de806ed7e82ba4ade622a", + "fields": { + "code_commune_insee": "50398", + "nom_de_la_commune": "LE PERRON", + "code_postal": "50160", + "coordonnees_gps": [ + 49.0556226265, + -0.893077920494 + ], + "libelle_d_acheminement": "LE PERRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.893077920494, + 49.0556226265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf84c3d5da7d1c82d64d37dee85a46241dab33e3", + "fields": { + "ligne_5": "VALFIN LES ST CLAUDE", + "code_commune_insee": "39478", + "libelle_d_acheminement": "ST CLAUDE", + "code_postal": "39200", + "nom_de_la_commune": "ST CLAUDE", + "coordonnees_gps": [ + 46.408600398, + 5.87556247635 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87556247635, + 46.408600398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f67c93039e4902fa84217fcb6e60737fbb5e9bc", + "fields": { + "ligne_5": "HOUTTEVILLE", + "code_commune_insee": "50400", + "libelle_d_acheminement": "PICAUVILLE", + "code_postal": "50250", + "nom_de_la_commune": "PICAUVILLE", + "coordonnees_gps": [ + 49.3794617832, + -1.3877872154 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3877872154, + 49.3794617832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "803733e61f6389c97145f780036b8a9ee123ee32", + "fields": { + "code_commune_insee": "39481", + "nom_de_la_commune": "ST GERMAIN EN MONTAGNE", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7790941219, + 5.93796452376 + ], + "libelle_d_acheminement": "ST GERMAIN EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93796452376, + 46.7790941219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "330b264625bb40688e50fc9fccfb9cf06c2529ac", + "fields": { + "ligne_5": "VINDEFONTAINE", + "code_commune_insee": "50400", + "libelle_d_acheminement": "PICAUVILLE", + "code_postal": "50250", + "nom_de_la_commune": "PICAUVILLE", + "coordonnees_gps": [ + 49.3794617832, + -1.3877872154 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3877872154, + 49.3794617832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "909f94c2d9f61dbf3cc4d2f63a45b14053aba37d", + "fields": { + "ligne_5": "ST JULIEN", + "code_commune_insee": "39485", + "libelle_d_acheminement": "VAL SURAN", + "code_postal": "39320", + "nom_de_la_commune": "VAL SURAN", + "coordonnees_gps": [ + 46.3963208, + 5.4577858737 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4577858737, + 46.3963208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b0a8e2a3491d0b7f8da6dc57e5c77b8c08b0316", + "fields": { + "code_commune_insee": "50400", + "nom_de_la_commune": "PICAUVILLE", + "code_postal": "50360", + "coordonnees_gps": [ + 49.3794617832, + -1.3877872154 + ], + "libelle_d_acheminement": "PICAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3877872154, + 49.3794617832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a93cd702fd58b7abd048e909873b47f04e03c22c", + "fields": { + "code_commune_insee": "39497", + "nom_de_la_commune": "SAIZENAY", + "code_postal": "39110", + "coordonnees_gps": [ + 46.9701806797, + 5.93379044205 + ], + "libelle_d_acheminement": "SAIZENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93379044205, + 46.9701806797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e067a3f174cdb2d99a256f2b87dcaaa0dbdef749", + "fields": { + "code_commune_insee": "50402", + "nom_de_la_commune": "LES PIEUX", + "code_postal": "50340", + "coordonnees_gps": [ + 49.5103059572, + -1.82036292827 + ], + "libelle_d_acheminement": "LES PIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82036292827, + 49.5103059572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aaa566bbf2e287e8d737254ffa44a5b93a0068b", + "fields": { + "code_commune_insee": "39499", + "nom_de_la_commune": "SALIGNEY", + "code_postal": "39350", + "coordonnees_gps": [ + 47.2229745913, + 5.63681673671 + ], + "libelle_d_acheminement": "SALIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63681673671, + 47.2229745913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "232f468cec7aecd056c44d52285d8412ed8c8c7f", + "fields": { + "code_commune_insee": "50405", + "nom_de_la_commune": "LE PLESSIS LASTELLE", + "code_postal": "50250", + "coordonnees_gps": [ + 49.2791657048, + -1.435102599 + ], + "libelle_d_acheminement": "LE PLESSIS LASTELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.435102599, + 49.2791657048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1410f85df3dc64380a54656d2092865fae439595", + "fields": { + "code_commune_insee": "39501", + "nom_de_la_commune": "SAMPANS", + "code_postal": "39100", + "coordonnees_gps": [ + 47.127381536, + 5.44517926709 + ], + "libelle_d_acheminement": "SAMPANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44517926709, + 47.127381536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f6b5ea6f92ddc549098eba7888149e0903c9d1f", + "fields": { + "ligne_5": "LE HOMMET D ARTHENAY", + "code_commune_insee": "50409", + "libelle_d_acheminement": "PONT HEBERT", + "code_postal": "50620", + "nom_de_la_commune": "PONT HEBERT", + "coordonnees_gps": [ + 49.1634595987, + -1.15107589364 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15107589364, + 49.1634595987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1072ac66e279e5d123414d5037680cb2c9a03b4c", + "fields": { + "code_commune_insee": "39503", + "nom_de_la_commune": "SAPOIS", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7473328196, + 5.94642241824 + ], + "libelle_d_acheminement": "SAPOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94642241824, + 46.7473328196 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72b1fdbb59765f7568d8e44d0b555b0602c99b39", + "fields": { + "ligne_5": "BOUCEY", + "code_commune_insee": "50410", + "libelle_d_acheminement": "PONTORSON", + "code_postal": "50170", + "nom_de_la_commune": "PONTORSON", + "coordonnees_gps": [ + 48.5689721753, + -1.48653363271 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48653363271, + 48.5689721753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec5e6a68a9c904bae0a2327f630185e406d2f9ba", + "fields": { + "code_commune_insee": "39504", + "nom_de_la_commune": "SARROGNA", + "code_postal": "39270", + "coordonnees_gps": [ + 46.4739811377, + 5.61763286818 + ], + "libelle_d_acheminement": "SARROGNA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61763286818, + 46.4739811377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb94114e1c4e69f21601f1c0b3c41b16852bad62", + "fields": { + "ligne_5": "CORMERAY", + "code_commune_insee": "50410", + "libelle_d_acheminement": "PONTORSON", + "code_postal": "50170", + "nom_de_la_commune": "PONTORSON", + "coordonnees_gps": [ + 48.5689721753, + -1.48653363271 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48653363271, + 48.5689721753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6722a85c90b2be229796b21ad3ca353d66df47b", + "fields": { + "ligne_5": "MARANGEA", + "code_commune_insee": "39504", + "libelle_d_acheminement": "SARROGNA", + "code_postal": "39270", + "nom_de_la_commune": "SARROGNA", + "coordonnees_gps": [ + 46.4739811377, + 5.61763286818 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61763286818, + 46.4739811377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f377264bfbbffc72e8d7105cdb35e7c0f156788", + "fields": { + "ligne_5": "LES PAS", + "code_commune_insee": "50410", + "libelle_d_acheminement": "PONTORSON", + "code_postal": "50170", + "nom_de_la_commune": "PONTORSON", + "coordonnees_gps": [ + 48.5689721753, + -1.48653363271 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48653363271, + 48.5689721753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcc33b632406b17cc809299d775deb1da2c05df3", + "fields": { + "ligne_5": "LES MOLUNES", + "code_commune_insee": "39510", + "libelle_d_acheminement": "SEPTMONCEL LES MOLUNES", + "code_postal": "39310", + "nom_de_la_commune": "SEPTMONCEL LES MOLUNES", + "coordonnees_gps": [ + 46.3731296175, + 5.9231555329 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9231555329, + 46.3731296175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c14e99db37be51ef57f6aa296bf7489a6331dab9", + "fields": { + "ligne_5": "MACEY", + "code_commune_insee": "50410", + "libelle_d_acheminement": "PONTORSON", + "code_postal": "50170", + "nom_de_la_commune": "PONTORSON", + "coordonnees_gps": [ + 48.5689721753, + -1.48653363271 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48653363271, + 48.5689721753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12c88f510182d5038406197fa3fbe71b6088b300", + "fields": { + "code_commune_insee": "39511", + "nom_de_la_commune": "SERGENAUX", + "code_postal": "39230", + "coordonnees_gps": [ + 46.887689456, + 5.46257846527 + ], + "libelle_d_acheminement": "SERGENAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46257846527, + 46.887689456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3baff8574565f1920f98751e5780c1678e48eeff", + "fields": { + "ligne_5": "VESSEY", + "code_commune_insee": "50410", + "libelle_d_acheminement": "PONTORSON", + "code_postal": "50170", + "nom_de_la_commune": "PONTORSON", + "coordonnees_gps": [ + 48.5689721753, + -1.48653363271 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48653363271, + 48.5689721753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc88bef6b3892c769d4c7382ff88b33cdff03cbc", + "fields": { + "code_commune_insee": "39512", + "nom_de_la_commune": "SERGENON", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9021977763, + 5.46665354041 + ], + "libelle_d_acheminement": "SERGENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46665354041, + 46.9021977763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d6bca7359e2ea612a0a81c1fd398d573df01dc8", + "fields": { + "ligne_5": "ST LO D OURVILLE", + "code_commune_insee": "50412", + "libelle_d_acheminement": "PORT BAIL SUR MER", + "code_postal": "50580", + "nom_de_la_commune": "PORT BAIL SUR MER", + "coordonnees_gps": [ + 49.3520385149, + -1.69541641793 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.69541641793, + 49.3520385149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2816d03ee8e84ff57ade0fa8f14ad8cf1ba0626", + "fields": { + "code_commune_insee": "39514", + "nom_de_la_commune": "SERRE LES MOULIERES", + "code_postal": "39700", + "coordonnees_gps": [ + 47.2058304341, + 5.61405890901 + ], + "libelle_d_acheminement": "SERRE LES MOULIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61405890901, + 47.2058304341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70583b08544e30a6332e22942649d74e8abbcfde", + "fields": { + "code_commune_insee": "50413", + "nom_de_la_commune": "PRECEY", + "code_postal": "50220", + "coordonnees_gps": [ + 48.6057042474, + -1.37641793764 + ], + "libelle_d_acheminement": "PRECEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37641793764, + 48.6057042474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd91e8396600cac5ee3b2a8ec6dfe8d45596ee09", + "fields": { + "code_commune_insee": "39517", + "nom_de_la_commune": "SIROD", + "code_postal": "39300", + "coordonnees_gps": [ + 46.7231337184, + 5.99171836651 + ], + "libelle_d_acheminement": "SIROD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99171836651, + 46.7231337184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfc0591ada98a80ca355e37f209a989434f0d4ba", + "fields": { + "ligne_5": "ROMAGNY", + "code_commune_insee": "50436", + "libelle_d_acheminement": "ROMAGNY FONTENAY", + "code_postal": "50140", + "nom_de_la_commune": "ROMAGNY FONTENAY", + "coordonnees_gps": [ + 48.6374333349, + -0.98072243352 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98072243352, + 48.6374333349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5435ec45ccc3cd9fe812e8c99d80814002312603", + "fields": { + "code_commune_insee": "39533", + "nom_de_la_commune": "TOULOUSE LE CHATEAU", + "code_postal": "39230", + "coordonnees_gps": [ + 46.8222128801, + 5.58308413365 + ], + "libelle_d_acheminement": "TOULOUSE LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58308413365, + 46.8222128801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "483f56e97f716ee0fb39468528009774aa719e12", + "fields": { + "code_commune_insee": "50446", + "nom_de_la_commune": "ST ANDRE DE L EPINE", + "code_postal": "50680", + "coordonnees_gps": [ + 49.1337500931, + -1.02272343031 + ], + "libelle_d_acheminement": "ST ANDRE DE L EPINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02272343031, + 49.1337500931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2459e028aa37c9e92d310e996641e0aaa672e79", + "fields": { + "code_commune_insee": "39537", + "nom_de_la_commune": "TRENAL", + "code_postal": "39570", + "coordonnees_gps": [ + 46.6396568445, + 5.46886995687 + ], + "libelle_d_acheminement": "TRENAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46886995687, + 46.6396568445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3b9e3f0c048225e36e6fdc63d7fa6c74e983343", + "fields": { + "code_commune_insee": "50447", + "nom_de_la_commune": "ST AUBIN DES PREAUX", + "code_postal": "50380", + "coordonnees_gps": [ + 48.8064090554, + -1.50085003989 + ], + "libelle_d_acheminement": "ST AUBIN DES PREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50085003989, + 48.8064090554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a7d5ba2bb74dc813fa9d78c6dee78024210df18", + "fields": { + "code_commune_insee": "39538", + "nom_de_la_commune": "UXELLES", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6023318887, + 5.79058754069 + ], + "libelle_d_acheminement": "UXELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79058754069, + 46.6023318887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "045d3b62dab8fbfd5692fb34becce50c90a27255", + "fields": { + "code_commune_insee": "50451", + "nom_de_la_commune": "ST BRICE", + "code_postal": "50300", + "coordonnees_gps": [ + 48.699142426, + -1.2977589729 + ], + "libelle_d_acheminement": "ST BRICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2977589729, + 48.699142426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a698de4129a987e2916b2c5137eed441ce0a8f22", + "fields": { + "code_commune_insee": "39539", + "nom_de_la_commune": "VADANS", + "code_postal": "39600", + "coordonnees_gps": [ + 46.9374946134, + 5.70594512087 + ], + "libelle_d_acheminement": "VADANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70594512087, + 46.9374946134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed2b2e035ab82b3921e007cc8327786baf3079ca", + "fields": { + "code_commune_insee": "50471", + "nom_de_la_commune": "ST GEORGES DE LA RIVIERE", + "code_postal": "50270", + "coordonnees_gps": [ + 49.3630192969, + -1.72971750237 + ], + "libelle_d_acheminement": "ST GEORGES DE LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72971750237, + 49.3630192969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3852549a440121f676a44c9114c9e52e3f63b63d", + "fields": { + "code_commune_insee": "39554", + "nom_de_la_commune": "VERS EN MONTAGNE", + "code_postal": "39300", + "coordonnees_gps": [ + 46.8221705965, + 5.91238852828 + ], + "libelle_d_acheminement": "VERS EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91238852828, + 46.8221705965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f64706e596c174e80d6e7d25a33d6703ee4dc88d", + "fields": { + "ligne_5": "VIREY", + "code_commune_insee": "50484", + "libelle_d_acheminement": "ST HILAIRE DU HARCOUET", + "code_postal": "50600", + "nom_de_la_commune": "ST HILAIRE DU HARCOUET", + "coordonnees_gps": [ + 48.5720535322, + -1.08283897698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08283897698, + 48.5720535322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f56490ebfa177ba525f44b9b8f47e8efd8fb9b94", + "fields": { + "code_commune_insee": "39556", + "nom_de_la_commune": "VERTAMBOZ", + "code_postal": "39130", + "coordonnees_gps": [ + 46.6012469433, + 5.7478516954 + ], + "libelle_d_acheminement": "VERTAMBOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7478516954, + 46.6012469433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e41786eb9a25c0a9a0c44db140f177372177878", + "fields": { + "ligne_5": "CARNET", + "code_commune_insee": "50487", + "libelle_d_acheminement": "ST JAMES", + "code_postal": "50240", + "nom_de_la_commune": "ST JAMES", + "coordonnees_gps": [ + 48.5257483373, + -1.32634914406 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32634914406, + 48.5257483373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72c168cc7234db7e23e0d576b5e853b231924e19", + "fields": { + "code_commune_insee": "39565", + "nom_de_la_commune": "VILLENEUVE D AVAL", + "code_postal": "39600", + "coordonnees_gps": [ + 46.9695447398, + 5.74785928595 + ], + "libelle_d_acheminement": "VILLENEUVE D AVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74785928595, + 46.9695447398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5a49dc65ea6e22042902f99538922f7cc86f81c", + "fields": { + "code_commune_insee": "50488", + "nom_de_la_commune": "ST JEAN DE DAYE", + "code_postal": "50620", + "coordonnees_gps": [ + 49.231738279, + -1.13630108744 + ], + "libelle_d_acheminement": "ST JEAN DE DAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13630108744, + 49.231738279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed84dce240b6dd20fcf799f64d3916b06c036705", + "fields": { + "code_commune_insee": "39568", + "nom_de_la_commune": "VILLERSERINE", + "code_postal": "39800", + "coordonnees_gps": [ + 46.8551002036, + 5.63948186279 + ], + "libelle_d_acheminement": "VILLERSERINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63948186279, + 46.8551002036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5146f526fcc049af5436dbac6fdf72bf2e401f38", + "fields": { + "code_commune_insee": "50493", + "nom_de_la_commune": "ST JEAN DES CHAMPS", + "code_postal": "50320", + "coordonnees_gps": [ + 48.8240464448, + -1.46346833183 + ], + "libelle_d_acheminement": "ST JEAN DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46346833183, + 48.8240464448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59ff4b5a1b03129baff8bf3ca3a735263f764f6c", + "fields": { + "code_commune_insee": "39569", + "nom_de_la_commune": "VILLERS FARLAY", + "code_postal": "39600", + "coordonnees_gps": [ + 46.9938950841, + 5.75983191768 + ], + "libelle_d_acheminement": "VILLERS FARLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75983191768, + 46.9938950841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ca9cc12420a7389304a5af43a790f157e3eb12d", + "fields": { + "code_commune_insee": "50495", + "nom_de_la_commune": "ST JEAN DU CORAIL DES BOIS", + "code_postal": "50370", + "coordonnees_gps": [ + 48.7721392247, + -1.20394577611 + ], + "libelle_d_acheminement": "ST JEAN DU CORAIL DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.20394577611, + 48.7721392247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa9ecf75978ce33ad694e33bb863bdfa5555beec", + "fields": { + "code_commune_insee": "39570", + "nom_de_la_commune": "VILLERS LES BOIS", + "code_postal": "39120", + "coordonnees_gps": [ + 46.9258758572, + 5.56896755251 + ], + "libelle_d_acheminement": "VILLERS LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56896755251, + 46.9258758572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76dbc50d67184d6aa86363e72f955ec526faa057", + "fields": { + "code_commune_insee": "50498", + "nom_de_la_commune": "ST JOSEPH", + "code_postal": "50700", + "coordonnees_gps": [ + 49.5317896214, + -1.52353706492 + ], + "libelle_d_acheminement": "ST JOSEPH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52353706492, + 49.5317896214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ce1c19e7886339f0628bb8ccbb1ee243438aca2", + "fields": { + "code_commune_insee": "39579", + "nom_de_la_commune": "VIRY", + "code_postal": "39360", + "coordonnees_gps": [ + 46.2973592921, + 5.73090207526 + ], + "libelle_d_acheminement": "VIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73090207526, + 46.2973592921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fc7b10f7654bb121b639483adf46503bbc6c0aa", + "fields": { + "code_commune_insee": "50500", + "nom_de_la_commune": "ST LAURENT DE TERREGATTE", + "code_postal": "50240", + "coordonnees_gps": [ + 48.5707591468, + -1.24632871909 + ], + "libelle_d_acheminement": "ST LAURENT DE TERREGATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24632871909, + 48.5707591468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06a9c33f20a88b5778de414a6ee5a92c2803bcee", + "fields": { + "ligne_5": "VOSBLES", + "code_commune_insee": "39583", + "libelle_d_acheminement": "VOSBLES VALFIN", + "code_postal": "39240", + "nom_de_la_commune": "VOSBLES VALFIN", + "coordonnees_gps": [ + 46.330813164, + 5.52161214243 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52161214243, + 46.330813164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c63eeb578421322f3aad6a4e02b813cc3b44d20e", + "fields": { + "code_commune_insee": "50502", + "nom_de_la_commune": "ST LO", + "code_postal": "50000", + "coordonnees_gps": [ + 49.1099624249, + -1.07755642702 + ], + "libelle_d_acheminement": "ST LO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07755642702, + 49.1099624249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6302caf9e68772172aa25179d9cce93eb84409c", + "fields": { + "code_commune_insee": "40007", + "nom_de_la_commune": "ARGELOS", + "code_postal": "40700", + "coordonnees_gps": [ + 43.581369897, + -0.62145285271 + ], + "libelle_d_acheminement": "ARGELOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.62145285271, + 43.581369897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2059eaffee79b2e757a2a89e7283a9a145f9c53b", + "fields": { + "code_commune_insee": "50511", + "nom_de_la_commune": "ST MARTIN D AUDOUVILLE", + "code_postal": "50310", + "coordonnees_gps": [ + 49.5290089356, + -1.36946215018 + ], + "libelle_d_acheminement": "ST MARTIN D AUDOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.36946215018, + 49.5290089356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36b8d5525f24e80776d8f0b36a5a40e55f6d43db", + "fields": { + "code_commune_insee": "40033", + "nom_de_la_commune": "BELIS", + "code_postal": "40120", + "coordonnees_gps": [ + 44.0621942076, + -0.467336759192 + ], + "libelle_d_acheminement": "BELIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.467336759192, + 44.0621942076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d0dbf6b73ead73fadcb158e73a8ac2e93d206e6", + "fields": { + "code_commune_insee": "50513", + "nom_de_la_commune": "ST MARTIN DE CENILLY", + "code_postal": "50210", + "coordonnees_gps": [ + 48.977495164, + -1.28613865858 + ], + "libelle_d_acheminement": "ST MARTIN DE CENILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28613865858, + 48.977495164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52e44865f7a6537ef1b86cd3f5d5eac2fc5a107c", + "fields": { + "code_commune_insee": "40043", + "nom_de_la_commune": "BIAS", + "code_postal": "40170", + "coordonnees_gps": [ + 44.1347298395, + -1.22934507034 + ], + "libelle_d_acheminement": "BIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22934507034, + 44.1347298395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8df4d58cbab9956be0107a864b29eb3c661021e2", + "fields": { + "code_commune_insee": "50517", + "nom_de_la_commune": "ST MARTIN DE VARREVILLE", + "code_postal": "50480", + "coordonnees_gps": [ + 49.4289939104, + -1.23371020801 + ], + "libelle_d_acheminement": "ST MARTIN DE VARREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23371020801, + 49.4289939104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a5789d25beb00f212356ede8d40897a8852dd1e", + "fields": { + "code_commune_insee": "40052", + "nom_de_la_commune": "BOURDALAT", + "code_postal": "40190", + "coordonnees_gps": [ + 43.8313755668, + -0.215429089042 + ], + "libelle_d_acheminement": "BOURDALAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.215429089042, + 43.8313755668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "980e1997849ceb13bd9c2859752938369ce0826f", + "fields": { + "code_commune_insee": "50528", + "nom_de_la_commune": "ST NICOLAS DE PIERREPONT", + "code_postal": "50250", + "coordonnees_gps": [ + 49.3204768919, + -1.58266376948 + ], + "libelle_d_acheminement": "ST NICOLAS DE PIERREPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58266376948, + 49.3204768919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9362821fdbc506c6e2ada42c87f868d765b19185", + "fields": { + "code_commune_insee": "40059", + "nom_de_la_commune": "CAGNOTTE", + "code_postal": "40300", + "coordonnees_gps": [ + 43.6046856723, + -1.07724977616 + ], + "libelle_d_acheminement": "CAGNOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07724977616, + 43.6046856723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a4d252e48bf5787d9db3496e6f4ed65b88563b9", + "fields": { + "code_commune_insee": "50537", + "nom_de_la_commune": "ST PIERRE DE COUTANCES", + "code_postal": "50200", + "coordonnees_gps": [ + 49.0395774631, + -1.43513976797 + ], + "libelle_d_acheminement": "ST PIERRE DE COUTANCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43513976797, + 49.0395774631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12138154214f9219f3562636ed0d9966a6504e9a", + "fields": { + "code_commune_insee": "40062", + "nom_de_la_commune": "CAMPET ET LAMOLERE", + "code_postal": "40090", + "coordonnees_gps": [ + 43.9152250646, + -0.58964747466 + ], + "libelle_d_acheminement": "CAMPET ET LAMOLERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58964747466, + 43.9152250646 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f937474656afff46b04574c9ff2ec064919b5e79", + "fields": { + "code_commune_insee": "50540", + "nom_de_la_commune": "ST PIERRE LANGERS", + "code_postal": "50530", + "coordonnees_gps": [ + 48.7843094283, + -1.48878829897 + ], + "libelle_d_acheminement": "ST PIERRE LANGERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48878829897, + 48.7843094283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0076ab98ea5ecbbf15edb330ba0dd2b3b3a4100f", + "fields": { + "code_commune_insee": "40063", + "nom_de_la_commune": "CANDRESSE", + "code_postal": "40180", + "coordonnees_gps": [ + 43.7108557763, + -0.979606796213 + ], + "libelle_d_acheminement": "CANDRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.979606796213, + 43.7108557763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5925ad31fc9bc85593e6aa2c69cb8ee1de77e31", + "fields": { + "ligne_5": "SOULLES", + "code_commune_insee": "50546", + "libelle_d_acheminement": "BOURGVALLEES", + "code_postal": "50750", + "nom_de_la_commune": "BOURGVALLEES", + "coordonnees_gps": [ + 49.0498085612, + -1.1310126677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1310126677, + 49.0498085612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fddf3ed4f819d7ff6a9926e8209b18315698179", + "fields": { + "code_commune_insee": "40066", + "nom_de_la_commune": "CARCARES STE CROIX", + "code_postal": "40400", + "coordonnees_gps": [ + 43.8551538602, + -0.755745605984 + ], + "libelle_d_acheminement": "CARCARES STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.755745605984, + 43.8551538602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad8b3ead352b287d9d6d3caadf735e135ee1e34c", + "fields": { + "code_commune_insee": "50548", + "nom_de_la_commune": "ST SAUVEUR DE PIERREPONT", + "code_postal": "50250", + "coordonnees_gps": [ + 49.3353264923, + -1.60977461831 + ], + "libelle_d_acheminement": "ST SAUVEUR DE PIERREPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60977461831, + 49.3353264923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b740e0cf4197c99c2d2c5bdf20d5517493aa131", + "fields": { + "code_commune_insee": "40072", + "nom_de_la_commune": "CASTELNAU TURSAN", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6549167711, + -0.403076530172 + ], + "libelle_d_acheminement": "CASTELNAU TURSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.403076530172, + 43.6549167711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "896c1e6461276aa2fc36f8c6688158d616e2c583", + "fields": { + "ligne_5": "ST AUBIN DU PERRON", + "code_commune_insee": "50550", + "libelle_d_acheminement": "ST SAUVEUR VILLAGES", + "code_postal": "50490", + "nom_de_la_commune": "ST SAUVEUR VILLAGES", + "coordonnees_gps": [ + 49.1238164508, + -1.40639536649 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40639536649, + 49.1238164508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6966ca381fc30dc9d506fd871f8a620d7a2c65e6", + "fields": { + "code_commune_insee": "40073", + "nom_de_la_commune": "CASTELNER", + "code_postal": "40700", + "coordonnees_gps": [ + 43.5522725117, + -0.591274524303 + ], + "libelle_d_acheminement": "CASTELNER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.591274524303, + 43.5522725117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "026abac625c8c2ac16d9c8ba4e78e502da132110", + "fields": { + "code_commune_insee": "50553", + "nom_de_la_commune": "ST SENIER DE BEUVRON", + "code_postal": "50240", + "coordonnees_gps": [ + 48.5585224149, + -1.32041724737 + ], + "libelle_d_acheminement": "ST SENIER DE BEUVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32041724737, + 48.5585224149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d13f5bf8d951ca85808aa059e88109660a94d9e9", + "fields": { + "code_commune_insee": "40074", + "nom_de_la_commune": "CASTEL SARRAZIN", + "code_postal": "40330", + "coordonnees_gps": [ + 43.6176642945, + -0.787879351472 + ], + "libelle_d_acheminement": "CASTEL SARRAZIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.787879351472, + 43.6176642945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3f81c83348274e6ff32d36b118086424bdbe652", + "fields": { + "code_commune_insee": "50563", + "nom_de_la_commune": "ST VIGOR DES MONTS", + "code_postal": "50420", + "coordonnees_gps": [ + 48.9096722066, + -1.05669811205 + ], + "libelle_d_acheminement": "ST VIGOR DES MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05669811205, + 48.9096722066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0d3fc49139d530ce80b0f30fcac5cd1a5f10832", + "fields": { + "code_commune_insee": "40080", + "nom_de_la_commune": "CAZERES SUR L ADOUR", + "code_postal": "40270", + "coordonnees_gps": [ + 43.7643443034, + -0.284507617354 + ], + "libelle_d_acheminement": "CAZERES SUR L ADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.284507617354, + 43.7643443034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54d6377d5c5536e1fc032d0298eaefbc0d3782f3", + "fields": { + "ligne_5": "SAINTENY", + "code_commune_insee": "50564", + "libelle_d_acheminement": "TERRE ET MARAIS", + "code_postal": "50500", + "nom_de_la_commune": "TERRE ET MARAIS", + "coordonnees_gps": [ + 49.2439040053, + -1.32743807676 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32743807676, + 49.2439040053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f989ad86a91ccdc146062a79c93606fdca48a7ad", + "fields": { + "code_commune_insee": "40083", + "nom_de_la_commune": "CLEDES", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6069139471, + -0.374502586339 + ], + "libelle_d_acheminement": "CLEDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.374502586339, + 43.6069139471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67dea7348d082284e13ad1b4ec96b14bbd81ad64", + "fields": { + "code_commune_insee": "50575", + "nom_de_la_commune": "SIDEVILLE", + "code_postal": "50690", + "coordonnees_gps": [ + 49.5931791069, + -1.68646853149 + ], + "libelle_d_acheminement": "SIDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68646853149, + 49.5931791069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dec3e28968a269b35e3487715a9f453aa3571fb1", + "fields": { + "code_commune_insee": "40091", + "nom_de_la_commune": "DUHORT BACHEN", + "code_postal": "40800", + "coordonnees_gps": [ + 43.7174754402, + -0.321523515178 + ], + "libelle_d_acheminement": "DUHORT BACHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.321523515178, + 43.7174754402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05fee108c1a5ff8e914034b67e0ea5bc3dd118b0", + "fields": { + "code_commune_insee": "50576", + "nom_de_la_commune": "SIOUVILLE HAGUE", + "code_postal": "50340", + "coordonnees_gps": [ + 49.559964542, + -1.8308686969 + ], + "libelle_d_acheminement": "SIOUVILLE HAGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8308686969, + 49.559964542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51f349a4bee2044c634a400edf8cc1a5d640d3f6", + "fields": { + "code_commune_insee": "40096", + "nom_de_la_commune": "ESTIGARDE", + "code_postal": "40240", + "coordonnees_gps": [ + 44.0367068447, + -0.115899203716 + ], + "libelle_d_acheminement": "ESTIGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.115899203716, + 44.0367068447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11ee13a4204ba9c02ed24aa9e379014da37cfabe", + "fields": { + "code_commune_insee": "50582", + "nom_de_la_commune": "SOURDEVAL", + "code_postal": "50150", + "coordonnees_gps": [ + 48.7134467987, + -0.891882166303 + ], + "libelle_d_acheminement": "SOURDEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.891882166303, + 48.7134467987 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e8e92c46d9ed33324f688b85858f94576725d71", + "fields": { + "code_commune_insee": "40106", + "nom_de_la_commune": "GARREY", + "code_postal": "40180", + "coordonnees_gps": [ + 43.6697782294, + -0.899363081457 + ], + "libelle_d_acheminement": "GARREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.899363081457, + 43.6697782294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98bf67e643d06fe1c46d6414bee7f03046aa6414", + "fields": { + "ligne_5": "PLEINES OEUVRES", + "code_commune_insee": "50592", + "libelle_d_acheminement": "TESSY BOCAGE", + "code_postal": "50420", + "nom_de_la_commune": "TESSY BOCAGE", + "coordonnees_gps": [ + 48.9633310504, + -1.08464396412 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08464396412, + 48.9633310504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6b79990eb47513e48a7374dd9a52106295df689", + "fields": { + "code_commune_insee": "40110", + "nom_de_la_commune": "GEAUNE", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6324028996, + -0.365846748561 + ], + "libelle_d_acheminement": "GEAUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.365846748561, + 43.6324028996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ae8170f5c57349cd27bdc64e5fd216a69c4fb9e", + "fields": { + "code_commune_insee": "50593", + "nom_de_la_commune": "TEURTHEVILLE BOCAGE", + "code_postal": "50630", + "coordonnees_gps": [ + 49.592445598, + -1.39477640051 + ], + "libelle_d_acheminement": "TEURTHEVILLE BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39477640051, + 49.592445598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26cb08bd5b258403fb49101385544e2f548b61a6", + "fields": { + "code_commune_insee": "40128", + "nom_de_la_commune": "HORSARRIEU", + "code_postal": "40700", + "coordonnees_gps": [ + 43.6877129762, + -0.601086715488 + ], + "libelle_d_acheminement": "HORSARRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.601086715488, + 43.6877129762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a5fdeddd34cbb457235b64d5b9ba7a4696bb104", + "fields": { + "ligne_5": "TIREPIED", + "code_commune_insee": "50597", + "libelle_d_acheminement": "TIREPIED SUR SEE", + "code_postal": "50870", + "nom_de_la_commune": "TIREPIED SUR SEE", + "coordonnees_gps": [ + 48.7239372262, + -1.2735313312 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2735313312, + 48.7239372262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09063f05f15d642e9535d2fd1a1fecba1ba8ca9a", + "fields": { + "code_commune_insee": "40146", + "nom_de_la_commune": "LATRILLE", + "code_postal": "40800", + "coordonnees_gps": [ + 43.6327875774, + -0.290847872857 + ], + "libelle_d_acheminement": "LATRILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.290847872857, + 43.6327875774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27234c68a12b68b91fa18b2a99fe5a25c598205f", + "fields": { + "code_commune_insee": "50598", + "nom_de_la_commune": "TOCQUEVILLE", + "code_postal": "50330", + "coordonnees_gps": [ + 49.6711907146, + -1.33613504172 + ], + "libelle_d_acheminement": "TOCQUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33613504172, + 49.6711907146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "394800ba7c2b8b794b903ace6db657c5b8de1e87", + "fields": { + "code_commune_insee": "40147", + "nom_de_la_commune": "LAUREDE", + "code_postal": "40250", + "coordonnees_gps": [ + 43.7562133962, + -0.789651425061 + ], + "libelle_d_acheminement": "LAUREDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.789651425061, + 43.7562133962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf76ce83d7c81be54c376d5c47d6987982699ddb", + "fields": { + "ligne_5": "TORIGNI SUR VIRE", + "code_commune_insee": "50601", + "libelle_d_acheminement": "TORIGNY LES VILLES", + "code_postal": "50160", + "nom_de_la_commune": "TORIGNY LES VILLES", + "coordonnees_gps": [ + 49.0319879145, + -0.982814708617 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.982814708617, + 49.0319879145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdce9da93137c2e425ef9eaf873745af7276b484", + "fields": { + "code_commune_insee": "40148", + "nom_de_la_commune": "LAURET", + "code_postal": "40320", + "coordonnees_gps": [ + 43.5638042916, + -0.328125320173 + ], + "libelle_d_acheminement": "LAURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.328125320173, + 43.5638042916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e23acd0f4e4eb8921ce2b46219c852d0d2e65d1", + "fields": { + "code_commune_insee": "50612", + "nom_de_la_commune": "VAINS", + "code_postal": "50300", + "coordonnees_gps": [ + 48.6760046422, + -1.42560331067 + ], + "libelle_d_acheminement": "VAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.42560331067, + 48.6760046422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87354310d454b5daf0d131d16547b57f5ffed6f0", + "fields": { + "code_commune_insee": "40151", + "nom_de_la_commune": "LESGOR", + "code_postal": "40400", + "coordonnees_gps": [ + 43.8580379497, + -0.908058109824 + ], + "libelle_d_acheminement": "LESGOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.908058109824, + 43.8580379497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "926071b96c942ae47f0487f1cd15745920baf2c0", + "fields": { + "code_commune_insee": "50616", + "nom_de_la_commune": "LE VAL ST PERE", + "code_postal": "50300", + "coordonnees_gps": [ + 48.661573623, + -1.37225712194 + ], + "libelle_d_acheminement": "LE VAL ST PERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37225712194, + 48.661573623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a21baf12b7491ecde113956f32e4ac663409a9e9", + "fields": { + "code_commune_insee": "40162", + "nom_de_la_commune": "LUCBARDEZ ET BARGUES", + "code_postal": "40090", + "coordonnees_gps": [ + 43.9749786498, + -0.410271763085 + ], + "libelle_d_acheminement": "LUCBARDEZ ET BARGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.410271763085, + 43.9749786498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2faa0c5ee7b8e1bd68699002c495bc1fcdd67bb2", + "fields": { + "code_commune_insee": "50628", + "nom_de_la_commune": "VERNIX", + "code_postal": "50370", + "coordonnees_gps": [ + 48.7151708198, + -1.2283280036 + ], + "libelle_d_acheminement": "VERNIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2283280036, + 48.7151708198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "423505a4cb689126624cca33c8197c5ac93a9e29", + "fields": { + "code_commune_insee": "40167", + "nom_de_la_commune": "LUXEY", + "code_postal": "40430", + "coordonnees_gps": [ + 44.2207948584, + -0.515670146445 + ], + "libelle_d_acheminement": "LUXEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.515670146445, + 44.2207948584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3b0c0e1ea91ab45284702e28e70ebf3fc78cb2a", + "fields": { + "ligne_5": "GERVILLE LA FORET", + "code_commune_insee": "50629", + "libelle_d_acheminement": "VESLY", + "code_postal": "50430", + "nom_de_la_commune": "VESLY", + "coordonnees_gps": [ + 49.246440274, + -1.49007496954 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49007496954, + 49.246440274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3ad6b8fdf81d61978542395d5e5d503e1d694fa", + "fields": { + "code_commune_insee": "40170", + "nom_de_la_commune": "MAILLERES", + "code_postal": "40120", + "coordonnees_gps": [ + 44.0265516785, + -0.442069606179 + ], + "libelle_d_acheminement": "MAILLERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.442069606179, + 44.0265516785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d4bd648a6909b70053d7d04344cd294aa699acc", + "fields": { + "code_commune_insee": "51003", + "nom_de_la_commune": "AIGNY", + "code_postal": "51150", + "coordonnees_gps": [ + 49.042644399, + 4.22045582777 + ], + "libelle_d_acheminement": "AIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22045582777, + 49.042644399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba03bc5d3cf52e24c629e0d5c04639f2a3a4300c", + "fields": { + "code_commune_insee": "40173", + "nom_de_la_commune": "MARPAPS", + "code_postal": "40330", + "coordonnees_gps": [ + 43.5732792701, + -0.680116391217 + ], + "libelle_d_acheminement": "MARPAPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.680116391217, + 43.5732792701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78470e83f08f504bda8da5c0bb696bd367237741", + "fields": { + "code_commune_insee": "51005", + "nom_de_la_commune": "ALLEMANT", + "code_postal": "51120", + "coordonnees_gps": [ + 48.7615346017, + 3.8160207846 + ], + "libelle_d_acheminement": "ALLEMANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8160207846, + 48.7615346017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12c3fd7b10668b5bfbaf751a33fcd93be96ecf7a", + "fields": { + "code_commune_insee": "40184", + "nom_de_la_commune": "MIMIZAN", + "code_postal": "40200", + "coordonnees_gps": [ + 44.1890027231, + -1.24571912607 + ], + "libelle_d_acheminement": "MIMIZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24571912607, + 44.1890027231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ae5696444c76628b3884f23c466991db8ac04f4", + "fields": { + "code_commune_insee": "51008", + "nom_de_la_commune": "AMBRIERES", + "code_postal": "51290", + "coordonnees_gps": [ + 48.629003135, + 4.82923701475 + ], + "libelle_d_acheminement": "AMBRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82923701475, + 48.629003135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd278b3ffc0617e01a253fdf5b481ef4ce3e4710", + "fields": { + "code_commune_insee": "40185", + "nom_de_la_commune": "MIRAMONT SENSACQ", + "code_postal": "40320", + "coordonnees_gps": [ + 43.5937272264, + -0.321552356121 + ], + "libelle_d_acheminement": "MIRAMONT SENSACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.321552356121, + 43.5937272264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed3a53f80dd359348440935cb8d5b69c7fb50208", + "fields": { + "code_commune_insee": "51009", + "nom_de_la_commune": "ANGLURE", + "code_postal": "51260", + "coordonnees_gps": [ + 48.5873514274, + 3.8174517586 + ], + "libelle_d_acheminement": "ANGLURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8174517586, + 48.5873514274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d81d280f15a1aa4184f0a9acf6724757821c69e4", + "fields": { + "code_commune_insee": "40186", + "nom_de_la_commune": "MISSON", + "code_postal": "40290", + "coordonnees_gps": [ + 43.5841785714, + -0.958405767864 + ], + "libelle_d_acheminement": "MISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.958405767864, + 43.5841785714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2ffae4bb121ee230c4528a68beb8c0a84a28b72", + "fields": { + "ligne_5": "NEUVILLE SOUS ARZILLIERES", + "code_commune_insee": "51017", + "libelle_d_acheminement": "ARZILLIERES NEUVILLE", + "code_postal": "51290", + "nom_de_la_commune": "ARZILLIERES NEUVILLE", + "coordonnees_gps": [ + 48.6458789827, + 4.60054022663 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60054022663, + 48.6458789827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1345ed8cc3617948bda6df3ab4e0ecbcb493b9e", + "fields": { + "code_commune_insee": "40192", + "nom_de_la_commune": "MONT DE MARSAN", + "code_postal": "40000", + "coordonnees_gps": [ + 43.899361404, + -0.490722577455 + ], + "libelle_d_acheminement": "MONT DE MARSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.490722577455, + 43.899361404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2371c6039d1d0a729e9e60524b9d9ef18e52633f", + "fields": { + "code_commune_insee": "51019", + "nom_de_la_commune": "AUBERIVE", + "code_postal": "51600", + "coordonnees_gps": [ + 49.1972757573, + 4.41096827282 + ], + "libelle_d_acheminement": "AUBERIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41096827282, + 49.1972757573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5edafb3c7fe40db4af74f0b749b4257549445209", + "fields": { + "code_commune_insee": "40198", + "nom_de_la_commune": "MORGANX", + "code_postal": "40700", + "coordonnees_gps": [ + 43.6038610111, + -0.572539507338 + ], + "libelle_d_acheminement": "MORGANX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.572539507338, + 43.6038610111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7484bfde50c3097db5b51db9d73b7f0a70830547", + "fields": { + "code_commune_insee": "51027", + "nom_de_la_commune": "AUVE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0286926359, + 4.68669645123 + ], + "libelle_d_acheminement": "AUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68669645123, + 49.0286926359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecc52e535f652885a52c7069ca6dd49a3836f9df", + "fields": { + "code_commune_insee": "40205", + "nom_de_la_commune": "NOUSSE", + "code_postal": "40380", + "coordonnees_gps": [ + 43.7218796772, + -0.822154069593 + ], + "libelle_d_acheminement": "NOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.822154069593, + 43.7218796772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c02d2df30095b30147613f52975f97432273413", + "fields": { + "code_commune_insee": "51029", + "nom_de_la_commune": "AVIZE", + "code_postal": "51190", + "coordonnees_gps": [ + 48.9733821282, + 4.00541672872 + ], + "libelle_d_acheminement": "AVIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00541672872, + 48.9733821282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f1294668bfcea5363edc9ed6c244dc8bc9919a5", + "fields": { + "code_commune_insee": "40215", + "nom_de_la_commune": "OUSSE SUZAN", + "code_postal": "40110", + "coordonnees_gps": [ + 43.9458730259, + -0.752515437356 + ], + "libelle_d_acheminement": "OUSSE SUZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.752515437356, + 43.9458730259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d8b7cedd4247e74539526ee9b7d35635b67cac8", + "fields": { + "ligne_5": "MAREUIL SUR AY", + "code_commune_insee": "51030", + "libelle_d_acheminement": "AY CHAMPAGNE", + "code_postal": "51160", + "nom_de_la_commune": "AY CHAMPAGNE", + "coordonnees_gps": [ + 49.0625907596, + 3.9973447815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9973447815, + 49.0625907596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dba5cf7b0e880e7231532dbea83c649af71a07c0", + "fields": { + "code_commune_insee": "40226", + "nom_de_la_commune": "PIMBO", + "code_postal": "40320", + "coordonnees_gps": [ + 43.577275978, + -0.376833921206 + ], + "libelle_d_acheminement": "PIMBO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.376833921206, + 43.577275978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fe378a1a58bcda2c37ff6e139af21f2d34c0fef", + "fields": { + "code_commune_insee": "51031", + "nom_de_la_commune": "BACONNES", + "code_postal": "51400", + "coordonnees_gps": [ + 49.1643635921, + 4.33841654965 + ], + "libelle_d_acheminement": "BACONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33841654965, + 49.1643635921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08df29202d7c501e455c4ecf82f09c0338ba7b56", + "fields": { + "code_commune_insee": "40237", + "nom_de_la_commune": "PRECHACQ LES BAINS", + "code_postal": "40465", + "coordonnees_gps": [ + 43.7563106359, + -0.919468711064 + ], + "libelle_d_acheminement": "PRECHACQ LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.919468711064, + 43.7563106359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e001b45e979f373a1c48200aaa29b6b717cec87a", + "fields": { + "code_commune_insee": "51035", + "nom_de_la_commune": "BANNES", + "code_postal": "51230", + "coordonnees_gps": [ + 48.7922110406, + 3.92587879621 + ], + "libelle_d_acheminement": "BANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92587879621, + 48.7922110406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aa786abbd2e3b2c4d50445a43e0c816b29c7954", + "fields": { + "code_commune_insee": "40250", + "nom_de_la_commune": "ST AVIT", + "code_postal": "40090", + "coordonnees_gps": [ + 43.945079707, + -0.45860276452 + ], + "libelle_d_acheminement": "ST AVIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.45860276452, + 43.945079707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f81f74a75131e8e9934b78b85a721be298b7935c", + "fields": { + "code_commune_insee": "51036", + "nom_de_la_commune": "BARBONNE FAYEL", + "code_postal": "51120", + "coordonnees_gps": [ + 48.654016669, + 3.68784800525 + ], + "libelle_d_acheminement": "BARBONNE FAYEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68784800525, + 48.654016669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d63583782c05d4a8ae3c3249a2bcc47d10577e67", + "fields": { + "code_commune_insee": "40256", + "nom_de_la_commune": "ST ETIENNE D ORTHE", + "code_postal": "40300", + "coordonnees_gps": [ + 43.5896884243, + -1.18697310553 + ], + "libelle_d_acheminement": "ST ETIENNE D ORTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18697310553, + 43.5896884243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09641e8400151e2350c8c593ba279de90e573e5f", + "fields": { + "code_commune_insee": "51040", + "nom_de_la_commune": "BASSUET", + "code_postal": "51300", + "coordonnees_gps": [ + 48.8018029229, + 4.67029926523 + ], + "libelle_d_acheminement": "BASSUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67029926523, + 48.8018029229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f919b4231edb228af3cf3b893f951047e356fcd", + "fields": { + "code_commune_insee": "40260", + "nom_de_la_commune": "ST GEOURS D AURIBAT", + "code_postal": "40380", + "coordonnees_gps": [ + 43.7550006241, + -0.841178765033 + ], + "libelle_d_acheminement": "ST GEOURS D AURIBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.841178765033, + 43.7550006241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53cf083227f27a4391a6c93c8375aac3fe2d563b", + "fields": { + "code_commune_insee": "51044", + "nom_de_la_commune": "BEAUMONT SUR VESLE", + "code_postal": "51360", + "coordonnees_gps": [ + 49.1731370665, + 4.17941674929 + ], + "libelle_d_acheminement": "BEAUMONT SUR VESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17941674929, + 49.1731370665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5615de5760df8d031fa3757e7605868149c6d371", + "fields": { + "code_commune_insee": "40266", + "nom_de_la_commune": "ST JULIEN EN BORN", + "code_postal": "40170", + "coordonnees_gps": [ + 44.0910922901, + -1.24835443544 + ], + "libelle_d_acheminement": "ST JULIEN EN BORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24835443544, + 44.0910922901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80530b19600f15cd191330badc512db75abf8cab", + "fields": { + "code_commune_insee": "51045", + "nom_de_la_commune": "BEAUNAY", + "code_postal": "51270", + "coordonnees_gps": [ + 48.8767550463, + 3.88535038911 + ], + "libelle_d_acheminement": "BEAUNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88535038911, + 48.8767550463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac2cc596dd1d7d90f57722e10f5f161383544020", + "fields": { + "code_commune_insee": "40275", + "nom_de_la_commune": "ST MAURICE SUR ADOUR", + "code_postal": "40270", + "coordonnees_gps": [ + 43.7918644129, + -0.466687909034 + ], + "libelle_d_acheminement": "ST MAURICE SUR ADOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.466687909034, + 43.7918644129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a2fd8296b155aea9d37abed12e122265afb84ac", + "fields": { + "code_commune_insee": "51051", + "nom_de_la_commune": "BERMERICOURT", + "code_postal": "51220", + "coordonnees_gps": [ + 49.3653023098, + 3.98697258925 + ], + "libelle_d_acheminement": "BERMERICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98697258925, + 49.3653023098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44cea0890931ab863949f282d138e89df2518648", + "fields": { + "code_commune_insee": "40278", + "nom_de_la_commune": "ST PAUL EN BORN", + "code_postal": "40200", + "coordonnees_gps": [ + 44.2009953973, + -1.15027990694 + ], + "libelle_d_acheminement": "ST PAUL EN BORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15027990694, + 44.2009953973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f2fe852d1a8fa36cfa8bebeb036e7399d314b78", + "fields": { + "code_commune_insee": "51057", + "nom_de_la_commune": "BETTANCOURT LA LONGUE", + "code_postal": "51330", + "coordonnees_gps": [ + 48.8322058575, + 4.88394828986 + ], + "libelle_d_acheminement": "BETTANCOURT LA LONGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88394828986, + 48.8322058575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a598b7c7e4e4bf3099f045c875a11fe2773b0144", + "fields": { + "code_commune_insee": "40293", + "nom_de_la_commune": "SAUBUSSE", + "code_postal": "40180", + "coordonnees_gps": [ + 43.6688378118, + -1.18625608435 + ], + "libelle_d_acheminement": "SAUBUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18625608435, + 43.6688378118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae810bd51d75c0f9192a81feeef4cf9b41034f6d", + "fields": { + "code_commune_insee": "51068", + "nom_de_la_commune": "BLESME", + "code_postal": "51340", + "coordonnees_gps": [ + 48.7322244042, + 4.77715801079 + ], + "libelle_d_acheminement": "BLESME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77715801079, + 48.7322244042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e7ed9dfe36b2c2d1d75fc48096c31d5a94207ed", + "fields": { + "code_commune_insee": "40299", + "nom_de_la_commune": "SERRESLOUS ET ARRIBANS", + "code_postal": "40700", + "coordonnees_gps": [ + 43.6646772072, + -0.643699359911 + ], + "libelle_d_acheminement": "SERRESLOUS ET ARRIBANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.643699359911, + 43.6646772072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a0ec0f022fd1a1ee12d65c9325a499666b32cc1", + "fields": { + "code_commune_insee": "51070", + "nom_de_la_commune": "BOISSY LE REPOS", + "code_postal": "51210", + "coordonnees_gps": [ + 48.8468531697, + 3.64177121632 + ], + "libelle_d_acheminement": "BOISSY LE REPOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64177121632, + 48.8468531697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "230c49b5bb277545e8679d310430c7dca090f5ae", + "fields": { + "code_commune_insee": "40300", + "nom_de_la_commune": "SEYRESSE", + "code_postal": "40180", + "coordonnees_gps": [ + 43.6832312889, + -1.06040363915 + ], + "libelle_d_acheminement": "SEYRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06040363915, + 43.6832312889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9a7cd63f8b15a71e4ccd4f0401541af79fb8583", + "fields": { + "code_commune_insee": "51077", + "nom_de_la_commune": "BOUVANCOURT", + "code_postal": "51140", + "coordonnees_gps": [ + 49.3411541811, + 3.85921451901 + ], + "libelle_d_acheminement": "BOUVANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85921451901, + 49.3411541811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a3e49fbe572adbfd0add994cc0f01411397a51c", + "fields": { + "code_commune_insee": "40301", + "nom_de_la_commune": "SIEST", + "code_postal": "40180", + "coordonnees_gps": [ + 43.650022681, + -1.13330295872 + ], + "libelle_d_acheminement": "SIEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.13330295872, + 43.650022681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9872418090a7510c7a29c6d1cad0426919266ab", + "fields": { + "code_commune_insee": "51080", + "nom_de_la_commune": "BRANDONVILLERS", + "code_postal": "51290", + "coordonnees_gps": [ + 48.5864193044, + 4.56804721582 + ], + "libelle_d_acheminement": "BRANDONVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56804721582, + 48.5864193044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81793f9a9f433c567419a0f83d54ffa4f8316432", + "fields": { + "code_commune_insee": "40305", + "nom_de_la_commune": "SORBETS", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6409732133, + -0.325945522623 + ], + "libelle_d_acheminement": "SORBETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.325945522623, + 43.6409732133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c203474e0d028080d74d3347012fd74d64a40ae", + "fields": { + "code_commune_insee": "51081", + "nom_de_la_commune": "BRANSCOURT", + "code_postal": "51140", + "coordonnees_gps": [ + 49.2711872526, + 3.82154036192 + ], + "libelle_d_acheminement": "BRANSCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82154036192, + 49.2711872526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84c886b6150a856cb63bf851c2a5f8e468ed5f46", + "fields": { + "code_commune_insee": "40306", + "nom_de_la_commune": "SORDE L ABBAYE", + "code_postal": "40300", + "coordonnees_gps": [ + 43.5226484038, + -1.04772749452 + ], + "libelle_d_acheminement": "SORDE L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04772749452, + 43.5226484038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55b821da638c1d270c40136bdbd883b4e5844dc4", + "fields": { + "code_commune_insee": "51087", + "nom_de_la_commune": "BREUVERY SUR COOLE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8543161427, + 4.29872818849 + ], + "libelle_d_acheminement": "BREUVERY SUR COOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29872818849, + 48.8543161427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c233bf2f4d5f7e04265566511fa040ae562e55a8", + "fields": { + "code_commune_insee": "40314", + "nom_de_la_commune": "TERCIS LES BAINS", + "code_postal": "40180", + "coordonnees_gps": [ + 43.6706423841, + -1.11540319377 + ], + "libelle_d_acheminement": "TERCIS LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11540319377, + 43.6706423841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85c4a0f3713aea1331a1c09b8a43138e850f945e", + "fields": { + "code_commune_insee": "51088", + "nom_de_la_commune": "BRIMONT", + "code_postal": "51220", + "coordonnees_gps": [ + 49.3387814946, + 4.03685503885 + ], + "libelle_d_acheminement": "BRIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03685503885, + 49.3387814946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfe8838cc1e94ff1ea7ec1613140d8cb966c4701", + "fields": { + "code_commune_insee": "40321", + "nom_de_la_commune": "URGONS", + "code_postal": "40320", + "coordonnees_gps": [ + 43.6394572934, + -0.432512659131 + ], + "libelle_d_acheminement": "URGONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.432512659131, + 43.6394572934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "554b1d260295eb8da9b105f213c11734371f1b23", + "fields": { + "code_commune_insee": "51089", + "nom_de_la_commune": "BROUILLET", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2274251852, + 3.73673973777 + ], + "libelle_d_acheminement": "BROUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73673973777, + 49.2274251852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e92f1312d9e1a668c8399998f3341626815da26a", + "fields": { + "code_commune_insee": "40330", + "nom_de_la_commune": "VILLENAVE", + "code_postal": "40110", + "coordonnees_gps": [ + 43.965937453, + -0.822038920542 + ], + "libelle_d_acheminement": "VILLENAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.822038920542, + 43.965937453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "232ad0271b7bec70f70805b77b2a37dfc148073c", + "fields": { + "code_commune_insee": "51097", + "nom_de_la_commune": "BUSSY LE CHATEAU", + "code_postal": "51600", + "coordonnees_gps": [ + 49.0593792031, + 4.53222848273 + ], + "libelle_d_acheminement": "BUSSY LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53222848273, + 49.0593792031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cf46d4f3ed3e0cf2f733a45f35a1c142b833c8c", + "fields": { + "code_commune_insee": "40331", + "nom_de_la_commune": "VILLENEUVE DE MARSAN", + "code_postal": "40190", + "coordonnees_gps": [ + 43.9059002211, + -0.304063529784 + ], + "libelle_d_acheminement": "VILLENEUVE DE MARSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.304063529784, + 43.9059002211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "739a73f2eb59b9076a1d8e673ae129da0eac476e", + "fields": { + "code_commune_insee": "51102", + "nom_de_la_commune": "CAUROY LES HERMONVILLE", + "code_postal": "51220", + "coordonnees_gps": [ + 49.3562446547, + 3.92821331358 + ], + "libelle_d_acheminement": "CAUROY LES HERMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92821331358, + 49.3562446547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1d2e124bc1cf613bf27e6ac723ba7cd6ac032a3", + "fields": { + "code_commune_insee": "40333", + "nom_de_la_commune": "YGOS ST SATURNIN", + "code_postal": "40110", + "coordonnees_gps": [ + 43.9957133184, + -0.720748822032 + ], + "libelle_d_acheminement": "YGOS ST SATURNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.720748822032, + 43.9957133184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d027bbdaba9cd1da52cc5a67857802d50c933f27", + "fields": { + "code_commune_insee": "51105", + "nom_de_la_commune": "CERNAY LES REIMS", + "code_postal": "51420", + "coordonnees_gps": [ + 49.2538223791, + 4.10981558086 + ], + "libelle_d_acheminement": "CERNAY LES REIMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10981558086, + 49.2538223791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3d17373d1c56ea223b86467fce8c99ab5bda02b", + "fields": { + "code_commune_insee": "41003", + "nom_de_la_commune": "AREINES", + "code_postal": "41100", + "coordonnees_gps": [ + 47.7980489789, + 1.10277891267 + ], + "libelle_d_acheminement": "AREINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10277891267, + 47.7980489789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "554540b3bf01f4b0f5df8b7a01f618a214eaf8bc", + "fields": { + "code_commune_insee": "51106", + "nom_de_la_commune": "CERNON", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8335946268, + 4.34181763415 + ], + "libelle_d_acheminement": "CERNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34181763415, + 48.8335946268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f8d7b295830344e416e234ae0f62f67f5115ce1", + "fields": { + "code_commune_insee": "41007", + "nom_de_la_commune": "AUTHON", + "code_postal": "41310", + "coordonnees_gps": [ + 47.6375449174, + 0.883240643609 + ], + "libelle_d_acheminement": "AUTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.883240643609, + 47.6375449174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "812b6bb983c4be5d76668fcf0ad84cff530725e4", + "fields": { + "code_commune_insee": "51117", + "nom_de_la_commune": "CHAMPIGNEUL CHAMPAGNE", + "code_postal": "51150", + "coordonnees_gps": [ + 48.9651548385, + 4.18037243471 + ], + "libelle_d_acheminement": "CHAMPIGNEUL CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18037243471, + 48.9651548385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eefa40d9e6ef0284b9f7a9d0242de5c9c6908b45", + "fields": { + "code_commune_insee": "41014", + "nom_de_la_commune": "BEAUCHENE", + "code_postal": "41170", + "coordonnees_gps": [ + 47.9427844885, + 0.971276009612 + ], + "libelle_d_acheminement": "BEAUCHENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.971276009612, + 47.9427844885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38f386d6d73b11376744df5d05db92c83fb80874", + "fields": { + "code_commune_insee": "51118", + "nom_de_la_commune": "CHAMPIGNY", + "code_postal": "51370", + "coordonnees_gps": [ + 49.2683371756, + 3.95843961351 + ], + "libelle_d_acheminement": "CHAMPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95843961351, + 49.2683371756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a20e6c4674d9aa9a25528f4b5aa2a659afe8d3c1", + "fields": { + "code_commune_insee": "41016", + "nom_de_la_commune": "BILLY", + "code_postal": "41130", + "coordonnees_gps": [ + 47.3138942249, + 1.54417512576 + ], + "libelle_d_acheminement": "BILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54417512576, + 47.3138942249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b288589128e763b40cea60196f549c53fc210afa", + "fields": { + "code_commune_insee": "51121", + "nom_de_la_commune": "CHAMPVOISY", + "code_postal": "51700", + "coordonnees_gps": [ + 49.1261137519, + 3.62684686856 + ], + "libelle_d_acheminement": "CHAMPVOISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62684686856, + 49.1261137519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed6cf15bfded238e022051482887a18b4d86987e", + "fields": { + "code_commune_insee": "41017", + "nom_de_la_commune": "BINAS", + "code_postal": "41240", + "coordonnees_gps": [ + 47.906478049, + 1.46560319599 + ], + "libelle_d_acheminement": "BINAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46560319599, + 47.906478049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3521f9787c3fa74ae91ef9211f85f2262b50ffb", + "fields": { + "code_commune_insee": "51124", + "nom_de_la_commune": "CHANTEMERLE", + "code_postal": "51260", + "coordonnees_gps": [ + 48.6185982101, + 3.64465146733 + ], + "libelle_d_acheminement": "CHANTEMERLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64465146733, + 48.6185982101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b817e29852a69cb683231fb0e830f6b39ec047f", + "fields": { + "code_commune_insee": "41020", + "nom_de_la_commune": "BONNEVEAU", + "code_postal": "41800", + "coordonnees_gps": [ + 47.8126485369, + 0.760225315658 + ], + "libelle_d_acheminement": "BONNEVEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.760225315658, + 47.8126485369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40d383a48b67a73e1a3773d230faa44e78672cd2", + "fields": { + "code_commune_insee": "51127", + "nom_de_la_commune": "LA CHAPELLE LASSON", + "code_postal": "51260", + "coordonnees_gps": [ + 48.6337338747, + 3.81745821088 + ], + "libelle_d_acheminement": "LA CHAPELLE LASSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81745821088, + 48.6337338747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa89cde3c5ff900892fcbad4413ac8d1c3d13391", + "fields": { + "code_commune_insee": "41025", + "nom_de_la_commune": "BRACIEUX", + "code_postal": "41250", + "coordonnees_gps": [ + 47.5513439823, + 1.543537457 + ], + "libelle_d_acheminement": "BRACIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.543537457, + 47.5513439823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e16cb1d4cd0715e4c492758d453fd0c09ce32240", + "fields": { + "code_commune_insee": "51132", + "nom_de_la_commune": "LES CHARMONTOIS", + "code_postal": "51330", + "coordonnees_gps": [ + 48.9652158012, + 4.99726991782 + ], + "libelle_d_acheminement": "LES CHARMONTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99726991782, + 48.9652158012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d61424436b59f251384427b54f2e721da2530c78", + "fields": { + "code_commune_insee": "41031", + "nom_de_la_commune": "CELLETTES", + "code_postal": "41120", + "coordonnees_gps": [ + 47.5283508082, + 1.38123647264 + ], + "libelle_d_acheminement": "CELLETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38123647264, + 47.5283508082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48ef7c2f7fbef171215e8fe81ed8c9440518e4cb", + "fields": { + "code_commune_insee": "51136", + "nom_de_la_commune": "CHATILLON SUR MARNE", + "code_postal": "51700", + "coordonnees_gps": [ + 49.1032018844, + 3.76590199588 + ], + "libelle_d_acheminement": "CHATILLON SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76590199588, + 49.1032018844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de4230b8293720de22d6d79380825c7c098a68c0", + "fields": { + "code_commune_insee": "41046", + "nom_de_la_commune": "CHAUMONT SUR THARONNE", + "code_postal": "41600", + "coordonnees_gps": [ + 47.6135106337, + 1.92322250059 + ], + "libelle_d_acheminement": "CHAUMONT SUR THARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92322250059, + 47.6135106337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e54638b1a80fd88056c8e3ab2769d839eaf12850", + "fields": { + "code_commune_insee": "51139", + "nom_de_la_commune": "CHAUDEFONTAINE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1004750135, + 4.87042311361 + ], + "libelle_d_acheminement": "CHAUDEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87042311361, + 49.1004750135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a31ddbc44d0fe65050d382e64099eb49bbb1339", + "fields": { + "code_commune_insee": "41049", + "nom_de_la_commune": "CHEMERY", + "code_postal": "41700", + "coordonnees_gps": [ + 47.3579321588, + 1.48828738299 + ], + "libelle_d_acheminement": "CHEMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48828738299, + 47.3579321588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2352afca309c1b9ddde7f16d90bc0cfb8128fc52", + "fields": { + "code_commune_insee": "51142", + "nom_de_la_commune": "CHAVOT COURCOURT", + "code_postal": "51530", + "coordonnees_gps": [ + 48.9979835849, + 3.91605601452 + ], + "libelle_d_acheminement": "CHAVOT COURCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91605601452, + 48.9979835849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a56772ddf31ae40c6a1ba4855ff1169d8f54fab", + "fields": { + "code_commune_insee": "41053", + "nom_de_la_commune": "CHOUE", + "code_postal": "41170", + "coordonnees_gps": [ + 47.9979943949, + 0.93157545943 + ], + "libelle_d_acheminement": "CHOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.93157545943, + 47.9979943949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6863bc9be34b3d1bf00fcfcca03ccce0c15c29a8", + "fields": { + "code_commune_insee": "51145", + "nom_de_la_commune": "CHENAY", + "code_postal": "51140", + "coordonnees_gps": [ + 49.3017965632, + 3.92526660394 + ], + "libelle_d_acheminement": "CHENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92526660394, + 49.3017965632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c7a8dd4c3fbd89617c636589f35ff1e1e8d48de", + "fields": { + "code_commune_insee": "41054", + "nom_de_la_commune": "CHOUSSY", + "code_postal": "41700", + "coordonnees_gps": [ + 47.3651066896, + 1.34936749964 + ], + "libelle_d_acheminement": "CHOUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34936749964, + 47.3651066896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e249fea15eb37259f3a98fce5d94d535940ffe1c", + "fields": { + "code_commune_insee": "51146", + "nom_de_la_commune": "CHENIERS", + "code_postal": "51510", + "coordonnees_gps": [ + 48.886031036, + 4.24425126854 + ], + "libelle_d_acheminement": "CHENIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24425126854, + 48.886031036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "274383502fcb9d4ed15b149612512ca3b9e29578", + "fields": { + "code_commune_insee": "41071", + "nom_de_la_commune": "CROUY SUR COSSON", + "code_postal": "41220", + "coordonnees_gps": [ + 47.6544025153, + 1.62332490974 + ], + "libelle_d_acheminement": "CROUY SUR COSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62332490974, + 47.6544025153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c48901594c066afc371d3bf7a1cfe132f0ea276d", + "fields": { + "code_commune_insee": "51147", + "nom_de_la_commune": "LA CHEPPE", + "code_postal": "51600", + "coordonnees_gps": [ + 49.0495940104, + 4.48839724856 + ], + "libelle_d_acheminement": "LA CHEPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48839724856, + 49.0495940104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03b0509144d9ec76ea764880e42b319f28498639", + "fields": { + "code_commune_insee": "41079", + "nom_de_la_commune": "LES ESSARTS", + "code_postal": "41800", + "coordonnees_gps": [ + 47.7323504174, + 0.712859536638 + ], + "libelle_d_acheminement": "LES ESSARTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.712859536638, + 47.7323504174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a76f865338239e8803568cc97929cecddbc3ae22", + "fields": { + "code_commune_insee": "51149", + "nom_de_la_commune": "CHEPY", + "code_postal": "51240", + "coordonnees_gps": [ + 48.906707488, + 4.45380528055 + ], + "libelle_d_acheminement": "CHEPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45380528055, + 48.906707488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "064fa82a6d5101fc347708b38a699c514e10b206", + "fields": { + "code_commune_insee": "41084", + "nom_de_la_commune": "LA FERTE IMBAULT", + "code_postal": "41300", + "coordonnees_gps": [ + 47.4015726244, + 1.95894695638 + ], + "libelle_d_acheminement": "LA FERTE IMBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95894695638, + 47.4015726244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6adbc8aeb3874dd6c4d91ee9e769d438dea8e804", + "fields": { + "code_commune_insee": "51151", + "nom_de_la_commune": "CHICHEY", + "code_postal": "51120", + "coordonnees_gps": [ + 48.6829470295, + 3.75431338999 + ], + "libelle_d_acheminement": "CHICHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75431338999, + 48.6829470295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "700f464a75cb2683191624544507c3bf6ccd2aa8", + "fields": { + "code_commune_insee": "41086", + "nom_de_la_commune": "FONTAINES EN SOLOGNE", + "code_postal": "41250", + "coordonnees_gps": [ + 47.487762675, + 1.54970974025 + ], + "libelle_d_acheminement": "FONTAINES EN SOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54970974025, + 47.487762675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c95eb509a1d0696dff228b94414ab00d962fa951", + "fields": { + "code_commune_insee": "51155", + "nom_de_la_commune": "CLESLES", + "code_postal": "51260", + "coordonnees_gps": [ + 48.533182949, + 3.82710958128 + ], + "libelle_d_acheminement": "CLESLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82710958128, + 48.533182949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f08a638ca7c30fc7c1afb95ef1b80043893f83b", + "fields": { + "code_commune_insee": "41090", + "nom_de_la_commune": "FORTAN", + "code_postal": "41360", + "coordonnees_gps": [ + 47.8442944617, + 0.914220715348 + ], + "libelle_d_acheminement": "FORTAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.914220715348, + 47.8442944617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "764101aa37169815314ae72bfe5c0eaad0064c58", + "fields": { + "code_commune_insee": "51164", + "nom_de_la_commune": "CONNANTRAY VAUREFROY", + "code_postal": "51230", + "coordonnees_gps": [ + 48.7387596621, + 4.06685851055 + ], + "libelle_d_acheminement": "CONNANTRAY VAUREFROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06685851055, + 48.7387596621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22387596fc31e177444f6f9fea561b4d81eb8822", + "fields": { + "code_commune_insee": "41094", + "nom_de_la_commune": "FRESNES", + "code_postal": "41700", + "coordonnees_gps": [ + 47.4383129016, + 1.41006263534 + ], + "libelle_d_acheminement": "FRESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41006263534, + 47.4383129016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb8ab64d73a661cd6032315bf3e7dad262ed8c46", + "fields": { + "code_commune_insee": "51170", + "nom_de_la_commune": "CORFELIX", + "code_postal": "51210", + "coordonnees_gps": [ + 48.8313022988, + 3.69721601306 + ], + "libelle_d_acheminement": "CORFELIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69721601306, + 48.8313022988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a901fff8dbb9055af79408a93d302b7daa2c6def", + "fields": { + "code_commune_insee": "41096", + "nom_de_la_commune": "LE GAULT DU PERCHE", + "code_postal": "41270", + "coordonnees_gps": [ + 48.0992829662, + 0.989927474604 + ], + "libelle_d_acheminement": "LE GAULT DU PERCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.989927474604, + 48.0992829662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f425fbee243db9d6bdded3ea49f9e3b92b4246e2", + "fields": { + "ligne_5": "GERNICOURT", + "code_commune_insee": "51171", + "libelle_d_acheminement": "CORMICY", + "code_postal": "51220", + "nom_de_la_commune": "CORMICY", + "coordonnees_gps": [ + 49.3768003286, + 3.90513204967 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90513204967, + 49.3768003286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "958d8b78acdc7ac81497b109aa05e543054b01e0", + "fields": { + "code_commune_insee": "41097", + "nom_de_la_commune": "GIEVRES", + "code_postal": "41130", + "coordonnees_gps": [ + 47.2892098162, + 1.67026537552 + ], + "libelle_d_acheminement": "GIEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67026537552, + 47.2892098162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fd1b9835673abda5adfd83fcdf26dba5bc28929", + "fields": { + "code_commune_insee": "51194", + "nom_de_la_commune": "COURVILLE", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2717748239, + 3.70869393616 + ], + "libelle_d_acheminement": "COURVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70869393616, + 49.2717748239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68bbfdf9e415b080ce440976fc95695acccd24d6", + "fields": { + "code_commune_insee": "41108", + "nom_de_la_commune": "LANCOME", + "code_postal": "41190", + "coordonnees_gps": [ + 47.652802696, + 1.12724958173 + ], + "libelle_d_acheminement": "LANCOME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.12724958173, + 47.652802696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "420436bb775ae569dd4ca57fa3d7ddbbb992a380", + "fields": { + "code_commune_insee": "51198", + "nom_de_la_commune": "CRUGNY", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2540458252, + 3.73483729976 + ], + "libelle_d_acheminement": "CRUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73483729976, + 49.2540458252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74e28d230792ca96498727676bf1efdcab49e141", + "fields": { + "code_commune_insee": "41109", + "nom_de_la_commune": "LANDES LE GAULOIS", + "code_postal": "41190", + "coordonnees_gps": [ + 47.6576915712, + 1.17175153465 + ], + "libelle_d_acheminement": "LANDES LE GAULOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17175153465, + 47.6576915712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "989e0cedd774e41ac17ab6fa0069ce7eda050fda", + "fields": { + "code_commune_insee": "51199", + "nom_de_la_commune": "CUCHERY", + "code_postal": "51480", + "coordonnees_gps": [ + 49.1271200021, + 3.8265472233 + ], + "libelle_d_acheminement": "CUCHERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8265472233, + 49.1271200021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b251811c7afc3bf0fcb751e60fc15496f691b90", + "fields": { + "code_commune_insee": "41116", + "nom_de_la_commune": "LISLE", + "code_postal": "41100", + "coordonnees_gps": [ + 47.8690069575, + 1.10711931801 + ], + "libelle_d_acheminement": "LISLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10711931801, + 47.8690069575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b874352a46e9e89d5ec4e0a1fc2c72a07cb59110", + "fields": { + "code_commune_insee": "51202", + "nom_de_la_commune": "CUMIERES", + "code_postal": "51480", + "coordonnees_gps": [ + 49.0721627289, + 3.91948376313 + ], + "libelle_d_acheminement": "CUMIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91948376313, + 49.0721627289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c8f526cd4be3e6bbd4b96846ab113397e99d1c3", + "fields": { + "code_commune_insee": "41122", + "nom_de_la_commune": "MARAY", + "code_postal": "41320", + "coordonnees_gps": [ + 47.2356263735, + 1.87104210873 + ], + "libelle_d_acheminement": "MARAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87104210873, + 47.2356263735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60f2346703a697d3a3db274c1861742a5489145e", + "fields": { + "code_commune_insee": "51206", + "nom_de_la_commune": "DAMPIERRE LE CHATEAU", + "code_postal": "51330", + "coordonnees_gps": [ + 49.0075580233, + 4.80217889942 + ], + "libelle_d_acheminement": "DAMPIERRE LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80217889942, + 49.0075580233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb901c4b6fe4b722329201d8a905ae8c00486327", + "fields": { + "code_commune_insee": "41127", + "nom_de_la_commune": "LA MAROLLE EN SOLOGNE", + "code_postal": "41210", + "coordonnees_gps": [ + 47.5829832487, + 1.78891907492 + ], + "libelle_d_acheminement": "LA MAROLLE EN SOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78891907492, + 47.5829832487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07659e398fb6d633574af53703c3ce1a896e9dc8", + "fields": { + "code_commune_insee": "51210", + "nom_de_la_commune": "DIZY", + "code_postal": "51530", + "coordonnees_gps": [ + 49.0705211181, + 3.97084205034 + ], + "libelle_d_acheminement": "DIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97084205034, + 49.0705211181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f60703aa75fff54f29eb43177318099ef6a8234", + "fields": { + "code_commune_insee": "41137", + "nom_de_la_commune": "MESLAND", + "code_postal": "41150", + "coordonnees_gps": [ + 47.5174737534, + 1.10007537516 + ], + "libelle_d_acheminement": "MESLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10007537516, + 47.5174737534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95ff7085c02912b8a87f40521d87a91c2508ba7d", + "fields": { + "code_commune_insee": "51211", + "nom_de_la_commune": "DOMMARTIN DAMPIERRE", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0658685537, + 4.82440047617 + ], + "libelle_d_acheminement": "DOMMARTIN DAMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82440047617, + 49.0658685537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "827811cb3cd2223ecd8cb58fc090dd8961a65537", + "fields": { + "code_commune_insee": "41139", + "nom_de_la_commune": "MEUSNES", + "code_postal": "41130", + "coordonnees_gps": [ + 47.2459267939, + 1.50092263509 + ], + "libelle_d_acheminement": "MEUSNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50092263509, + 47.2459267939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb31925009ef9d9fd6f227bf7147d78ea073ce5d", + "fields": { + "code_commune_insee": "51220", + "nom_de_la_commune": "DROUILLY", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7699720491, + 4.51233011677 + ], + "libelle_d_acheminement": "DROUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51233011677, + 48.7699720491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a24d3089234b8b930082cc70be67184203a2bba", + "fields": { + "ligne_5": "CHAMBON SUR CISSE", + "code_commune_insee": "41142", + "libelle_d_acheminement": "VALENCISSE", + "code_postal": "41190", + "nom_de_la_commune": "VALENCISSE", + "coordonnees_gps": [ + 47.5802707156, + 1.22561710259 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22561710259, + 47.5802707156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c1459027add046ed867708d8656bef74b846759", + "fields": { + "code_commune_insee": "51232", + "nom_de_la_commune": "EPOYE", + "code_postal": "51490", + "coordonnees_gps": [ + 49.2866248574, + 4.23317683518 + ], + "libelle_d_acheminement": "EPOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23317683518, + 49.2866248574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93eeaa67d7c8d522cf65ebab55639e542b3bf77d", + "fields": { + "ligne_5": "ORCHAISE", + "code_commune_insee": "41142", + "libelle_d_acheminement": "VALENCISSE", + "code_postal": "41190", + "nom_de_la_commune": "VALENCISSE", + "coordonnees_gps": [ + 47.5802707156, + 1.22561710259 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22561710259, + 47.5802707156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bddc9d0900a537f8a7f2f14143bcff0e026fab0", + "fields": { + "code_commune_insee": "51233", + "nom_de_la_commune": "ESCARDES", + "code_postal": "51310", + "coordonnees_gps": [ + 48.6900375432, + 3.52743435778 + ], + "libelle_d_acheminement": "ESCARDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52743435778, + 48.6900375432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa6ab46f20319b31c3556ab92bce4c1f5cbc1e27", + "fields": { + "code_commune_insee": "41143", + "nom_de_la_commune": "MONDOUBLEAU", + "code_postal": "41170", + "coordonnees_gps": [ + 47.9867303784, + 0.895813338933 + ], + "libelle_d_acheminement": "MONDOUBLEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.895813338933, + 47.9867303784 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4249a52e9e95123a93fbe4b804a685766bfa6466", + "fields": { + "code_commune_insee": "51234", + "nom_de_la_commune": "ESCLAVOLLES LUREY", + "code_postal": "51260", + "coordonnees_gps": [ + 48.5543933536, + 3.64977752907 + ], + "libelle_d_acheminement": "ESCLAVOLLES LUREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64977752907, + 48.5543933536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3ef3f48bbc6da8d819349aacd6fa733e7f65a80", + "fields": { + "code_commune_insee": "41156", + "nom_de_la_commune": "MULSANS", + "code_postal": "41500", + "coordonnees_gps": [ + 47.6949446536, + 1.38085020196 + ], + "libelle_d_acheminement": "MULSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38085020196, + 47.6949446536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faa77108f37aa4cee37957e109cc2d616225df30", + "fields": { + "code_commune_insee": "51239", + "nom_de_la_commune": "ETRECHY", + "code_postal": "51130", + "coordonnees_gps": [ + 48.8826569512, + 3.95067419112 + ], + "libelle_d_acheminement": "ETRECHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95067419112, + 48.8826569512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad35c2b09bb4a85d56fee926578791eff199f111", + "fields": { + "code_commune_insee": "41159", + "nom_de_la_commune": "NEUNG SUR BEUVRON", + "code_postal": "41210", + "coordonnees_gps": [ + 47.5356505563, + 1.81134758711 + ], + "libelle_d_acheminement": "NEUNG SUR BEUVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81134758711, + 47.5356505563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a883645f390c98575e5e86fa8fb98df46d0083f7", + "fields": { + "ligne_5": "NORMEE", + "code_commune_insee": "51248", + "libelle_d_acheminement": "FERE CHAMPENOISE", + "code_postal": "51230", + "nom_de_la_commune": "FERE CHAMPENOISE", + "coordonnees_gps": [ + 48.7706781866, + 4.01743444039 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01743444039, + 48.7706781866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a71d4d0de773d73e91e3babb863af36608edca93", + "fields": { + "code_commune_insee": "41181", + "nom_de_la_commune": "POUILLE", + "code_postal": "41110", + "coordonnees_gps": [ + 47.3076458828, + 1.27817094314 + ], + "libelle_d_acheminement": "POUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27817094314, + 47.3076458828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52c9a2ff7c7a05d0dbad64c3055039cd8d3b127a", + "fields": { + "code_commune_insee": "51252", + "nom_de_la_commune": "FLEURY LA RIVIERE", + "code_postal": "51480", + "coordonnees_gps": [ + 49.1031077559, + 3.8861561458 + ], + "libelle_d_acheminement": "FLEURY LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8861561458, + 49.1031077559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91ccbe680b38ebf75149108e85807bd1c24c7d58", + "fields": { + "code_commune_insee": "41185", + "nom_de_la_commune": "PRUNIERS EN SOLOGNE", + "code_postal": "41200", + "coordonnees_gps": [ + 47.3404974973, + 1.67985209939 + ], + "libelle_d_acheminement": "PRUNIERS EN SOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67985209939, + 47.3404974973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e3aa158e6cca4325bf56d5a95830a12c61b1dfc", + "fields": { + "code_commune_insee": "51255", + "nom_de_la_commune": "FONTAINE EN DORMOIS", + "code_postal": "51800", + "coordonnees_gps": [ + 49.2404904108, + 4.72158432493 + ], + "libelle_d_acheminement": "FONTAINE EN DORMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72158432493, + 49.2404904108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75247281d1b9ba0327cd474a0b3b2b92e02ec907", + "fields": { + "code_commune_insee": "41190", + "nom_de_la_commune": "ROCE", + "code_postal": "41100", + "coordonnees_gps": [ + 47.8136847101, + 1.14871194274 + ], + "libelle_d_acheminement": "ROCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14871194274, + 47.8136847101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20702ff07633ffb1c988da6cef4d76b79b940151", + "fields": { + "code_commune_insee": "51260", + "nom_de_la_commune": "LE FRESNE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.9074828008, + 4.66619316954 + ], + "libelle_d_acheminement": "LE FRESNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66619316954, + 48.9074828008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06530a943441a607b8b4b9804b74335f828e93eb", + "fields": { + "code_commune_insee": "41193", + "nom_de_la_commune": "ROMILLY", + "code_postal": "41270", + "coordonnees_gps": [ + 47.9513759342, + 1.0256628804 + ], + "libelle_d_acheminement": "ROMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0256628804, + 47.9513759342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f90ddd0c0ffe698465085eb2b173ecc3cd56d14", + "fields": { + "code_commune_insee": "51263", + "nom_de_la_commune": "FROMENTIERES", + "code_postal": "51210", + "coordonnees_gps": [ + 48.8899366213, + 3.70451315221 + ], + "libelle_d_acheminement": "FROMENTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70451315221, + 48.8899366213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "276ebc4f163ef682ef1ec1d3e2c3fcd17e317e34", + "fields": { + "code_commune_insee": "41199", + "nom_de_la_commune": "ST AMAND LONGPRE", + "code_postal": "41310", + "coordonnees_gps": [ + 47.6840022904, + 1.00078397415 + ], + "libelle_d_acheminement": "ST AMAND LONGPRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00078397415, + 47.6840022904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efebe87950e2df4b3c80c28e2792a24e840426f2", + "fields": { + "code_commune_insee": "51266", + "nom_de_la_commune": "GERMAINE", + "code_postal": "51160", + "coordonnees_gps": [ + 49.1188404223, + 4.03185929464 + ], + "libelle_d_acheminement": "GERMAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03185929464, + 49.1188404223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b02a0870dce06622d81167ece34ded805c55b612", + "fields": { + "code_commune_insee": "41209", + "nom_de_la_commune": "ST FIRMIN DES PRES", + "code_postal": "41100", + "coordonnees_gps": [ + 47.8445817483, + 1.10132047346 + ], + "libelle_d_acheminement": "ST FIRMIN DES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10132047346, + 47.8445817483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9f68bc8a75a092cf38ae73f9b94dc50084021cc", + "fields": { + "code_commune_insee": "51274", + "nom_de_la_commune": "GIZAUCOURT", + "code_postal": "51800", + "coordonnees_gps": [ + 49.0566661968, + 4.78091155159 + ], + "libelle_d_acheminement": "GIZAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78091155159, + 49.0566661968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bf8d7d2744b083e9deb10ea6a75ed29c923d4de", + "fields": { + "code_commune_insee": "41217", + "nom_de_la_commune": "ST JULIEN DE CHEDON", + "code_postal": "41400", + "coordonnees_gps": [ + 47.3196038461, + 1.20817366204 + ], + "libelle_d_acheminement": "ST JULIEN DE CHEDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20817366204, + 47.3196038461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a6c4d0ef16021010bbc513c40b0e658ec2508a3", + "fields": { + "code_commune_insee": "51276", + "nom_de_la_commune": "GOURGANCON", + "code_postal": "51230", + "coordonnees_gps": [ + 48.6847255926, + 4.02672471881 + ], + "libelle_d_acheminement": "GOURGANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02672471881, + 48.6847255926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1bf828c1592e79f9462dd44d9cd999b06010923", + "fields": { + "code_commune_insee": "41230", + "nom_de_la_commune": "ST SULPICE DE POMMERAY", + "code_postal": "41000", + "coordonnees_gps": [ + 47.6028440111, + 1.26254994847 + ], + "libelle_d_acheminement": "ST SULPICE DE POMMERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26254994847, + 47.6028440111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94126b94cb183571baa42d1e6fedfd4e54cdc13c", + "fields": { + "code_commune_insee": "51278", + "nom_de_la_commune": "LES GRANDES LOGES", + "code_postal": "51400", + "coordonnees_gps": [ + 49.064046771, + 4.28902555718 + ], + "libelle_d_acheminement": "LES GRANDES LOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28902555718, + 49.064046771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bc1597ea35bc1d04f5a70864317af55f2759b78", + "fields": { + "code_commune_insee": "41243", + "nom_de_la_commune": "SELOMMES", + "code_postal": "41100", + "coordonnees_gps": [ + 47.7654431209, + 1.21145906213 + ], + "libelle_d_acheminement": "SELOMMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21145906213, + 47.7654431209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "255de1b7aee696b4afe86375ebcb2ae64e42b596", + "fields": { + "code_commune_insee": "51282", + "nom_de_la_commune": "GUEUX", + "code_postal": "51390", + "coordonnees_gps": [ + 49.2540182295, + 3.90671179707 + ], + "libelle_d_acheminement": "GUEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90671179707, + 49.2540182295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82b89d1675229284c17fd9f0033f979ab83d5b40", + "fields": { + "code_commune_insee": "41254", + "nom_de_la_commune": "LE TEMPLE", + "code_postal": "41170", + "coordonnees_gps": [ + 47.9312855723, + 0.933806688391 + ], + "libelle_d_acheminement": "LE TEMPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.933806688391, + 47.9312855723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b19ed9a0f043f3f62ddcd015b3e38f48cc78adf", + "fields": { + "code_commune_insee": "51285", + "nom_de_la_commune": "HAUSSIMONT", + "code_postal": "51320", + "coordonnees_gps": [ + 48.7448119146, + 4.16707787714 + ], + "libelle_d_acheminement": "HAUSSIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16707787714, + 48.7448119146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3acb113754b7806d865bf4c1ba2764bcca3d28db", + "fields": { + "code_commune_insee": "41259", + "nom_de_la_commune": "THORE LA ROCHETTE", + "code_postal": "41100", + "coordonnees_gps": [ + 47.7859819999, + 0.970946922736 + ], + "libelle_d_acheminement": "THORE LA ROCHETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.970946922736, + 47.7859819999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f091afb1e5397354ec5992f475e7d9179b052438", + "fields": { + "code_commune_insee": "51290", + "nom_de_la_commune": "HEILTZ L EVEQUE", + "code_postal": "51340", + "coordonnees_gps": [ + 48.7791762757, + 4.73816215254 + ], + "libelle_d_acheminement": "HEILTZ L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73816215254, + 48.7791762757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8064f0f9c4730ddeb9ba82ba45ebc8081beb6f8c", + "fields": { + "code_commune_insee": "41261", + "nom_de_la_commune": "TOURAILLES", + "code_postal": "41190", + "coordonnees_gps": [ + 47.6905723771, + 1.15651693665 + ], + "libelle_d_acheminement": "TOURAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15651693665, + 47.6905723771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5012ef11f24b5d1771e459e1a8fff047f9f06809", + "fields": { + "code_commune_insee": "51294", + "nom_de_la_commune": "HOURGES", + "code_postal": "51140", + "coordonnees_gps": [ + 49.281019544, + 3.77065706879 + ], + "libelle_d_acheminement": "HOURGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77065706879, + 49.281019544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c9015aa0b562ba630792e7e9f647e60c0f5a07a", + "fields": { + "code_commune_insee": "41262", + "nom_de_la_commune": "TOUR EN SOLOGNE", + "code_postal": "41250", + "coordonnees_gps": [ + 47.5471719848, + 1.51109071624 + ], + "libelle_d_acheminement": "TOUR EN SOLOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51109071624, + 47.5471719848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13868d1f282cb8f5b5cb791e2d21533e0591c7aa", + "fields": { + "code_commune_insee": "51303", + "nom_de_la_commune": "JALONS", + "code_postal": "51150", + "coordonnees_gps": [ + 49.0064136945, + 4.17596884263 + ], + "libelle_d_acheminement": "JALONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17596884263, + 49.0064136945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6431e195d15bc8db24d0a0662c2dcdeb96d014b1", + "fields": { + "code_commune_insee": "41269", + "nom_de_la_commune": "VENDOME", + "code_postal": "41100", + "coordonnees_gps": [ + 47.8013026692, + 1.06106057175 + ], + "libelle_d_acheminement": "VENDOME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06106057175, + 47.8013026692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddc4754bbbf177d760240d3838de13e27ed00599", + "fields": { + "code_commune_insee": "51309", + "nom_de_la_commune": "JONQUERY", + "code_postal": "51700", + "coordonnees_gps": [ + 49.1453578537, + 3.79009280539 + ], + "libelle_d_acheminement": "JONQUERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79009280539, + 49.1453578537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd11a20a4d21f6b577872c8729352ad0a794c604", + "fields": { + "code_commune_insee": "41273", + "nom_de_la_commune": "VIEVY LE RAYE", + "code_postal": "41290", + "coordonnees_gps": [ + 47.8716770852, + 1.29829930078 + ], + "libelle_d_acheminement": "VIEVY LE RAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29829930078, + 47.8716770852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53e8c3d89d5449065c04f940a582940f6984c970", + "fields": { + "code_commune_insee": "51311", + "nom_de_la_commune": "JUSSECOURT MINECOURT", + "code_postal": "51340", + "coordonnees_gps": [ + 48.7925796867, + 4.78085431604 + ], + "libelle_d_acheminement": "JUSSECOURT MINECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78085431604, + 48.7925796867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3e7a00db63c17b2dbcb765a870acbe6bb9bcbcc", + "fields": { + "ligne_5": "ECOMAN", + "code_commune_insee": "41273", + "libelle_d_acheminement": "VIEVY LE RAYE", + "code_postal": "41290", + "nom_de_la_commune": "VIEVY LE RAYE", + "coordonnees_gps": [ + 47.8716770852, + 1.29829930078 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29829930078, + 47.8716770852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08b961396e695de9463b02edcf73a807dc474b09", + "fields": { + "code_commune_insee": "51313", + "nom_de_la_commune": "LACHY", + "code_postal": "51120", + "coordonnees_gps": [ + 48.769209655, + 3.7010108358 + ], + "libelle_d_acheminement": "LACHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7010108358, + 48.769209655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13693eb13d6b5964257ecbcacc241270afdc3bd7", + "fields": { + "code_commune_insee": "41274", + "nom_de_la_commune": "VILLAVARD", + "code_postal": "41800", + "coordonnees_gps": [ + 47.7519622395, + 0.904582155249 + ], + "libelle_d_acheminement": "VILLAVARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.904582155249, + 47.7519622395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25f9348de9cf11043428a57a5f0d2eb51f906416", + "fields": { + "code_commune_insee": "51320", + "nom_de_la_commune": "LEUVRIGNY", + "code_postal": "51700", + "coordonnees_gps": [ + 49.0537619832, + 3.77685120343 + ], + "libelle_d_acheminement": "LEUVRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77685120343, + 49.0537619832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33fca34c8da5e1b486455e46863bfb91adf67209", + "fields": { + "code_commune_insee": "41282", + "nom_de_la_commune": "VILLEHERVIERS", + "code_postal": "41200", + "coordonnees_gps": [ + 47.3599602222, + 1.81188563537 + ], + "libelle_d_acheminement": "VILLEHERVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81188563537, + 47.3599602222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "996c86baef4e409b375d1e8bea6980a7ec872413", + "fields": { + "code_commune_insee": "51325", + "nom_de_la_commune": "LISSE EN CHAMPAGNE", + "code_postal": "51300", + "coordonnees_gps": [ + 48.8183214275, + 4.64935373876 + ], + "libelle_d_acheminement": "LISSE EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64935373876, + 48.8183214275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f8719c5d7ab3253ea5b861e7cd7ee9431b9826a", + "fields": { + "code_commune_insee": "41285", + "nom_de_la_commune": "VILLENY", + "code_postal": "41220", + "coordonnees_gps": [ + 47.6229791934, + 1.75261229637 + ], + "libelle_d_acheminement": "VILLENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75261229637, + 47.6229791934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbf5d34c774ab065d19698cf04ea9f43ebfaab6c", + "fields": { + "code_commune_insee": "51333", + "nom_de_la_commune": "LUDES", + "code_postal": "51500", + "coordonnees_gps": [ + 49.1597280176, + 4.08223281179 + ], + "libelle_d_acheminement": "LUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08223281179, + 49.1597280176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb6f55f97a0cd3b9413bf6323d366b432b4ac2ec", + "fields": { + "code_commune_insee": "41286", + "nom_de_la_commune": "VILLEPORCHER", + "code_postal": "41310", + "coordonnees_gps": [ + 47.6445356816, + 0.986385518358 + ], + "libelle_d_acheminement": "VILLEPORCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.986385518358, + 47.6445356816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15bb735ffa5a788dfeced8b1203b8b2904d7f180", + "fields": { + "code_commune_insee": "51338", + "nom_de_la_commune": "MAILLY CHAMPAGNE", + "code_postal": "51500", + "coordonnees_gps": [ + 49.1547915207, + 4.11192393083 + ], + "libelle_d_acheminement": "MAILLY CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11192393083, + 49.1547915207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b622b7edc76e0509c4238e40cc06bf1799a7a4d8", + "fields": { + "code_commune_insee": "41287", + "nom_de_la_commune": "VILLERABLE", + "code_postal": "41100", + "coordonnees_gps": [ + 47.7565335742, + 1.04015224879 + ], + "libelle_d_acheminement": "VILLERABLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04015224879, + 47.7565335742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "465914829235af420bf1b0c0d8f85a3d46b546f3", + "fields": { + "code_commune_insee": "51340", + "nom_de_la_commune": "MAISONS EN CHAMPAGNE", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7366632829, + 4.46700160771 + ], + "libelle_d_acheminement": "MAISONS EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46700160771, + 48.7366632829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31d98dba2affd38a7659c1a5b90bbf71e20c9343", + "fields": { + "code_commune_insee": "41291", + "nom_de_la_commune": "VILLETRUN", + "code_postal": "41100", + "coordonnees_gps": [ + 47.7867092973, + 1.16554441978 + ], + "libelle_d_acheminement": "VILLETRUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.16554441978, + 47.7867092973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5f3545161cb12b8637ec77da1e7870a7a7128d8", + "fields": { + "code_commune_insee": "51342", + "nom_de_la_commune": "MANCY", + "code_postal": "51530", + "coordonnees_gps": [ + 48.982499338, + 3.9380543947 + ], + "libelle_d_acheminement": "MANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9380543947, + 48.982499338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eee69a0958bcf0c23b467d64c2a8f98aba8cbe95", + "fields": { + "code_commune_insee": "42003", + "nom_de_la_commune": "AMBIERLE", + "code_postal": "42820", + "coordonnees_gps": [ + 46.1059597472, + 3.89158878833 + ], + "libelle_d_acheminement": "AMBIERLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89158878833, + 46.1059597472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f92c908132bc48b50575085007cc82f3d9c3510", + "fields": { + "code_commune_insee": "51344", + "nom_de_la_commune": "MARDEUIL", + "code_postal": "51530", + "coordonnees_gps": [ + 49.0552896714, + 3.92278542438 + ], + "libelle_d_acheminement": "MARDEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92278542438, + 49.0552896714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a8f86cb578e9e2a680153b83b62e4b4b8541208", + "fields": { + "code_commune_insee": "42005", + "nom_de_la_commune": "ANDREZIEUX BOUTHEON", + "code_postal": "42160", + "coordonnees_gps": [ + 45.5349913099, + 4.27650426979 + ], + "libelle_d_acheminement": "ANDREZIEUX BOUTHEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27650426979, + 45.5349913099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82fd0446e7ffce379b969ca0988d0392c8f0ecf1", + "fields": { + "code_commune_insee": "51345", + "nom_de_la_commune": "MAREUIL EN BRIE", + "code_postal": "51270", + "coordonnees_gps": [ + 48.9638384493, + 3.75395021148 + ], + "libelle_d_acheminement": "MAREUIL EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75395021148, + 48.9638384493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbb7c8c795d88508b3409529aca71ac7a6792f0b", + "fields": { + "code_commune_insee": "42017", + "nom_de_la_commune": "LE BESSAT", + "code_postal": "42660", + "coordonnees_gps": [ + 45.3743662773, + 4.51511479228 + ], + "libelle_d_acheminement": "LE BESSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51511479228, + 45.3743662773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4c3bc76d7e72fdbdd150f75d3e73341387e897b", + "fields": { + "code_commune_insee": "51348", + "nom_de_la_commune": "MARFAUX", + "code_postal": "51170", + "coordonnees_gps": [ + 49.1691156658, + 3.90046162118 + ], + "libelle_d_acheminement": "MARFAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90046162118, + 49.1691156658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15787c35e357719f08fe4b1bbd2be54b81242d3b", + "fields": { + "code_commune_insee": "42027", + "nom_de_la_commune": "BULLY", + "code_postal": "42260", + "coordonnees_gps": [ + 45.9292601554, + 3.99269700935 + ], + "libelle_d_acheminement": "BULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99269700935, + 45.9292601554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce4eeb9398502fc18140769b0396a5a7986c1f7a", + "fields": { + "code_commune_insee": "51353", + "nom_de_la_commune": "MARSANGIS", + "code_postal": "51260", + "coordonnees_gps": [ + 48.6113473287, + 3.85182777539 + ], + "libelle_d_acheminement": "MARSANGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85182777539, + 48.6113473287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec93d445e1c009924b217bc43befcb88ee18b407", + "fields": { + "code_commune_insee": "42036", + "nom_de_la_commune": "CHAGNON", + "code_postal": "42800", + "coordonnees_gps": [ + 45.5337555804, + 4.55361256767 + ], + "libelle_d_acheminement": "CHAGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55361256767, + 45.5337555804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94b3ebec6acffe674d2fe473a980a51951258409", + "fields": { + "code_commune_insee": "51355", + "nom_de_la_commune": "MASSIGES", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1936279449, + 4.73839071461 + ], + "libelle_d_acheminement": "MASSIGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73839071461, + 49.1936279449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ea669a505dd1174c089e8cca3206cfeb8465035", + "fields": { + "ligne_5": "JEANSAGNIERE", + "code_commune_insee": "42039", + "libelle_d_acheminement": "CHALMAZEL JEANSAGNIERE", + "code_postal": "42920", + "nom_de_la_commune": "CHALMAZEL JEANSAGNIERE", + "coordonnees_gps": [ + 45.6980828693, + 3.82450309755 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82450309755, + 45.6980828693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "002a62a017b717dfe6ef2b7e3891d798a2dacd06", + "fields": { + "code_commune_insee": "51356", + "nom_de_la_commune": "MATIGNICOURT GONCOURT", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6750657203, + 4.67663431783 + ], + "libelle_d_acheminement": "MATIGNICOURT GONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67663431783, + 48.6750657203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b49fd304d4f44d0f2280688778761c57e40c70a", + "fields": { + "code_commune_insee": "42041", + "nom_de_la_commune": "CHAMBEON", + "code_postal": "42110", + "coordonnees_gps": [ + 45.6971949141, + 4.17325766885 + ], + "libelle_d_acheminement": "CHAMBEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17325766885, + 45.6971949141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "800190ee2969990a7d2378886247736d8e03ab68", + "fields": { + "code_commune_insee": "51361", + "nom_de_la_commune": "LE MEIX TIERCELIN", + "code_postal": "51320", + "coordonnees_gps": [ + 48.6401635513, + 4.44092566457 + ], + "libelle_d_acheminement": "LE MEIX TIERCELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44092566457, + 48.6401635513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a7bbd64fb4e7fe7d62b664f233b3d61d49b1474", + "fields": { + "code_commune_insee": "42049", + "nom_de_la_commune": "CHANGY", + "code_postal": "42310", + "coordonnees_gps": [ + 46.1458600113, + 3.89966724243 + ], + "libelle_d_acheminement": "CHANGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89966724243, + 46.1458600113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69af17f4ab14da42fdf9c51a35b460efa32f984d", + "fields": { + "code_commune_insee": "51363", + "nom_de_la_commune": "MERLAUT", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7615849122, + 4.65787310242 + ], + "libelle_d_acheminement": "MERLAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65787310242, + 48.7615849122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df19fe36716f1f66707659a02e0eb83a641e73e8", + "fields": { + "code_commune_insee": "42052", + "nom_de_la_commune": "CHARLIEU", + "code_postal": "42190", + "coordonnees_gps": [ + 46.166320434, + 4.17407848439 + ], + "libelle_d_acheminement": "CHARLIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17407848439, + 46.166320434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c20c242d5c54417f2d52156c4eeea053c2e91a2b", + "fields": { + "code_commune_insee": "51364", + "nom_de_la_commune": "MERY PREMECY", + "code_postal": "51390", + "coordonnees_gps": [ + 49.2293632812, + 3.87299237056 + ], + "libelle_d_acheminement": "MERY PREMECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87299237056, + 49.2293632812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fc1e853a18f80ef87898ff020a37a919f7672f2", + "fields": { + "code_commune_insee": "42062", + "nom_de_la_commune": "CHEVRIERES", + "code_postal": "42140", + "coordonnees_gps": [ + 45.5903538558, + 4.40832402261 + ], + "libelle_d_acheminement": "CHEVRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40832402261, + 45.5903538558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0af2f6bd41b52e6bf6692a325cee4faf411c36d6", + "fields": { + "code_commune_insee": "51379", + "nom_de_la_commune": "MONTIGNY SUR VESLE", + "code_postal": "51140", + "coordonnees_gps": [ + 49.3136433995, + 3.80140399878 + ], + "libelle_d_acheminement": "MONTIGNY SUR VESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80140399878, + 49.3136433995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bf1de58dea9bff0411bff35fbfeaae349ce435e", + "fields": { + "code_commune_insee": "42067", + "nom_de_la_commune": "COLOMBIER", + "code_postal": "42220", + "coordonnees_gps": [ + 45.3540411435, + 4.59395914999 + ], + "libelle_d_acheminement": "COLOMBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59395914999, + 45.3540411435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6b8f09a3969d412bf1dd39e63e92486ccd4c7c0", + "fields": { + "code_commune_insee": "51380", + "nom_de_la_commune": "MONTMIRAIL", + "code_postal": "51210", + "coordonnees_gps": [ + 48.8802869076, + 3.56048556258 + ], + "libelle_d_acheminement": "MONTMIRAIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56048556258, + 48.8802869076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ecd8fe7ab2d1d706ebcc83ab86272fd5dbcf579", + "fields": { + "code_commune_insee": "42069", + "nom_de_la_commune": "COMMELLE VERNAY", + "code_postal": "42120", + "coordonnees_gps": [ + 45.994800702, + 4.06003885957 + ], + "libelle_d_acheminement": "COMMELLE VERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06003885957, + 45.994800702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb4ec65dc6fea0f2beb2f97d38381e716ada9ab5", + "fields": { + "code_commune_insee": "51384", + "nom_de_la_commune": "MORANGIS", + "code_postal": "51530", + "coordonnees_gps": [ + 48.9724763219, + 3.89450554499 + ], + "libelle_d_acheminement": "MORANGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89450554499, + 48.9724763219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f474ecbad10e0a9f2af54383fda655e26ca647ad", + "fields": { + "code_commune_insee": "42070", + "nom_de_la_commune": "CORDELLE", + "code_postal": "42123", + "coordonnees_gps": [ + 45.9426002325, + 4.05941352074 + ], + "libelle_d_acheminement": "CORDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05941352074, + 45.9426002325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa20114b4f892d4c63e95fe52d42f89a85d457a0", + "fields": { + "code_commune_insee": "51386", + "nom_de_la_commune": "MORSAINS", + "code_postal": "51210", + "coordonnees_gps": [ + 48.8014721077, + 3.54754115829 + ], + "libelle_d_acheminement": "MORSAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54754115829, + 48.8014721077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44c2e625c0c5b89d70dd2376a38e4f370ec20a95", + "fields": { + "code_commune_insee": "42073", + "nom_de_la_commune": "COTTANCE", + "code_postal": "42360", + "coordonnees_gps": [ + 45.794436641, + 4.29628802664 + ], + "libelle_d_acheminement": "COTTANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29628802664, + 45.794436641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bbcd99605901d592b17578d5545bbd7951bee8e", + "fields": { + "code_commune_insee": "51388", + "nom_de_la_commune": "MOURMELON LE GRAND", + "code_postal": "51400", + "coordonnees_gps": [ + 49.1326106985, + 4.38710569439 + ], + "libelle_d_acheminement": "MOURMELON LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38710569439, + 49.1326106985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9208b9b52b6ccc491aae9f442ef35aab85af02b8", + "fields": { + "code_commune_insee": "42095", + "nom_de_la_commune": "FIRMINY", + "code_postal": "42700", + "coordonnees_gps": [ + 45.3788146093, + 4.28879456136 + ], + "libelle_d_acheminement": "FIRMINY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28879456136, + 45.3788146093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "279b9232e1a1b7989173b0f7ac5fc7917c6d2c79", + "fields": { + "code_commune_insee": "51396", + "nom_de_la_commune": "NESLE LE REPONS", + "code_postal": "51700", + "coordonnees_gps": [ + 49.0444334826, + 3.71638188696 + ], + "libelle_d_acheminement": "NESLE LE REPONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71638188696, + 49.0444334826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "501b4b5dea4eb0951b755cf8d9bb10ac596776fd", + "fields": { + "code_commune_insee": "42100", + "nom_de_la_commune": "LA GIMOND", + "code_postal": "42140", + "coordonnees_gps": [ + 45.5562348005, + 4.4140487377 + ], + "libelle_d_acheminement": "LA GIMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4140487377, + 45.5562348005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fdd57bcbcb1630023d6236ec47b537f66f0d5b9", + "fields": { + "code_commune_insee": "51399", + "nom_de_la_commune": "LA NEUVILLE AU PONT", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1302299148, + 4.85184152327 + ], + "libelle_d_acheminement": "LA NEUVILLE AU PONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85184152327, + 49.1302299148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6376694a00c4477945900aabc62296499534a40f", + "fields": { + "code_commune_insee": "42106", + "nom_de_la_commune": "GREZOLLES", + "code_postal": "42260", + "coordonnees_gps": [ + 45.8639049425, + 3.94846074499 + ], + "libelle_d_acheminement": "GREZOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94846074499, + 45.8639049425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc6c8fb4ebf49e4ec0bc4360a4becc769d63d8cf", + "fields": { + "code_commune_insee": "51402", + "nom_de_la_commune": "NEUVY", + "code_postal": "51310", + "coordonnees_gps": [ + 48.7432206736, + 3.51030207363 + ], + "libelle_d_acheminement": "NEUVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51030207363, + 48.7432206736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31b97d4c101eda37455b2656f43b553914397af7", + "fields": { + "code_commune_insee": "42115", + "nom_de_la_commune": "JONZIEUX", + "code_postal": "42660", + "coordonnees_gps": [ + 45.3199228804, + 4.36218674695 + ], + "libelle_d_acheminement": "JONZIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36218674695, + 45.3199228804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef67dc06757608f9a72474ab415578b6f6651617", + "fields": { + "code_commune_insee": "51409", + "nom_de_la_commune": "NUISEMENT SUR COOLE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8717774517, + 4.28439545806 + ], + "libelle_d_acheminement": "NUISEMENT SUR COOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28439545806, + 48.8717774517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f862750507fdb9155e5e4d4159126f0a640be7da", + "fields": { + "code_commune_insee": "42121", + "nom_de_la_commune": "LERIGNEUX", + "code_postal": "42600", + "coordonnees_gps": [ + 45.5945077198, + 3.94680301947 + ], + "libelle_d_acheminement": "LERIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94680301947, + 45.5945077198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46e976af17f0bd5609e3cc3dc546f27f8e67df26", + "fields": { + "code_commune_insee": "51414", + "nom_de_la_commune": "OLIZY", + "code_postal": "51700", + "coordonnees_gps": [ + 49.1462489704, + 3.75894755028 + ], + "libelle_d_acheminement": "OLIZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75894755028, + 49.1462489704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f6ffba93ef85a0557f03398844ebfac9ddc9fc2", + "fields": { + "code_commune_insee": "42125", + "nom_de_la_commune": "LURE", + "code_postal": "42260", + "coordonnees_gps": [ + 45.88323165, + 3.92941983729 + ], + "libelle_d_acheminement": "LURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92941983729, + 45.88323165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4d6ea11753bec51852a31b4b2c5a8507b1b3f89", + "fields": { + "code_commune_insee": "51419", + "nom_de_la_commune": "OUTINES", + "code_postal": "51290", + "coordonnees_gps": [ + 48.5586240355, + 4.66870052428 + ], + "libelle_d_acheminement": "OUTINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66870052428, + 48.5586240355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd0b13b37e156d541e7f22a4123b0a0662e070d5", + "fields": { + "code_commune_insee": "42127", + "nom_de_la_commune": "MABLY", + "code_postal": "42300", + "coordonnees_gps": [ + 46.0919456873, + 4.0633211833 + ], + "libelle_d_acheminement": "MABLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0633211833, + 46.0919456873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c520789d5181bc0896582700edf6218b31b59472", + "fields": { + "code_commune_insee": "51421", + "nom_de_la_commune": "OYES", + "code_postal": "51120", + "coordonnees_gps": [ + 48.8105165952, + 3.77122436918 + ], + "libelle_d_acheminement": "OYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77122436918, + 48.8105165952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9f31eebf6a5da874478e53ba7eb36356f568501", + "fields": { + "code_commune_insee": "42130", + "nom_de_la_commune": "MAGNEUX HAUTE RIVE", + "code_postal": "42600", + "coordonnees_gps": [ + 45.6697850452, + 4.17067905601 + ], + "libelle_d_acheminement": "MAGNEUX HAUTE RIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17067905601, + 45.6697850452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42c8e624902fd8bce29e37bd379ab785b5b9dfcb", + "fields": { + "code_commune_insee": "51425", + "nom_de_la_commune": "PASSY GRIGNY", + "code_postal": "51700", + "coordonnees_gps": [ + 49.1283522131, + 3.68110893863 + ], + "libelle_d_acheminement": "PASSY GRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68110893863, + 49.1283522131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84bdf6d1033ff0ff1c89c699525efc60ed2a1cf9", + "fields": { + "code_commune_insee": "42131", + "nom_de_la_commune": "MAIZILLY", + "code_postal": "42750", + "coordonnees_gps": [ + 46.1758631519, + 4.24319004515 + ], + "libelle_d_acheminement": "MAIZILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24319004515, + 46.1758631519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3375280d352fcf1ea544122cc6a610d5535a1981", + "fields": { + "code_commune_insee": "51437", + "nom_de_la_commune": "POILLY", + "code_postal": "51170", + "coordonnees_gps": [ + 49.2162019985, + 3.81320617428 + ], + "libelle_d_acheminement": "POILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81320617428, + 49.2162019985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "264aa994084a432575da5941c1ddfec9815ee65b", + "fields": { + "code_commune_insee": "42135", + "nom_de_la_commune": "MARCLOPT", + "code_postal": "42210", + "coordonnees_gps": [ + 45.6639852846, + 4.22116537367 + ], + "libelle_d_acheminement": "MARCLOPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22116537367, + 45.6639852846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4b62be7465a1f4e534efc896e754274ed5d6052", + "fields": { + "code_commune_insee": "51440", + "nom_de_la_commune": "PONTFAVERGER MORONVILLIERS", + "code_postal": "51490", + "coordonnees_gps": [ + 49.2817231291, + 4.31572659574 + ], + "libelle_d_acheminement": "PONTFAVERGER MORONVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31572659574, + 49.2817231291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42b79f6d24895d5d512dd406b4bdf1597214ad9f", + "fields": { + "code_commune_insee": "42140", + "nom_de_la_commune": "MAROLS", + "code_postal": "42560", + "coordonnees_gps": [ + 45.4747627904, + 4.03920281904 + ], + "libelle_d_acheminement": "MAROLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03920281904, + 45.4747627904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3feadf45938a2c23432e9c65c109f0eda757fd88", + "fields": { + "code_commune_insee": "51442", + "nom_de_la_commune": "POSSESSE", + "code_postal": "51330", + "coordonnees_gps": [ + 48.8978158277, + 4.8561483128 + ], + "libelle_d_acheminement": "POSSESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8561483128, + 48.8978158277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf8405c3c0d82b6abc374805bf77cf940dd4387f", + "fields": { + "code_commune_insee": "42142", + "nom_de_la_commune": "MERLE LEIGNEC", + "code_postal": "42380", + "coordonnees_gps": [ + 45.3740740437, + 4.02451160759 + ], + "libelle_d_acheminement": "MERLE LEIGNEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02451160759, + 45.3740740437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b5315fd84cdc8204b03adbd766d019639522bd1", + "fields": { + "code_commune_insee": "51443", + "nom_de_la_commune": "POTANGIS", + "code_postal": "51260", + "coordonnees_gps": [ + 48.5850735929, + 3.64666442992 + ], + "libelle_d_acheminement": "POTANGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64666442992, + 48.5850735929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a17dd89b954ff696568bf9ddb445618d5b26faf", + "fields": { + "code_commune_insee": "42145", + "nom_de_la_commune": "MONTAGNY", + "code_postal": "42840", + "coordonnees_gps": [ + 46.032936055, + 4.22546405807 + ], + "libelle_d_acheminement": "MONTAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22546405807, + 46.032936055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc486896819e2a0fc2a39c77d87f4e82fa0969b2", + "fields": { + "code_commune_insee": "51445", + "nom_de_la_commune": "POURCY", + "code_postal": "51480", + "coordonnees_gps": [ + 49.1497686357, + 3.90663695027 + ], + "libelle_d_acheminement": "POURCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90663695027, + 49.1497686357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bc272bfe333e969122e47f013bb4b7a8fd0ffa7", + "fields": { + "code_commune_insee": "42147", + "nom_de_la_commune": "MONTBRISON", + "code_postal": "42600", + "coordonnees_gps": [ + 45.6008365515, + 4.0713982073 + ], + "libelle_d_acheminement": "MONTBRISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0713982073, + 45.6008365515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44175aeabb94d6d960c92e6f6e9c92a17b0c76e1", + "fields": { + "code_commune_insee": "51448", + "nom_de_la_commune": "PROUILLY", + "code_postal": "51140", + "coordonnees_gps": [ + 49.2967039156, + 3.84656080405 + ], + "libelle_d_acheminement": "PROUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84656080405, + 49.2967039156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "123ff91e7c7f4381a95328169c8a86b134b070fd", + "fields": { + "code_commune_insee": "42149", + "nom_de_la_commune": "MONTROND LES BAINS", + "code_postal": "42210", + "coordonnees_gps": [ + 45.6352746305, + 4.24093173504 + ], + "libelle_d_acheminement": "MONTROND LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24093173504, + 45.6352746305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "013abd48d691e25625a4907513dbc9588f19638d", + "fields": { + "code_commune_insee": "51449", + "nom_de_la_commune": "PRUNAY", + "code_postal": "51360", + "coordonnees_gps": [ + 49.2141061333, + 4.17483063704 + ], + "libelle_d_acheminement": "PRUNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17483063704, + 49.2141061333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f13bed2fedb3e3e389e007f5dcbe96c8267cb34e", + "fields": { + "code_commune_insee": "42151", + "nom_de_la_commune": "MORNAND EN FOREZ", + "code_postal": "42600", + "coordonnees_gps": [ + 45.6717929888, + 4.11953674559 + ], + "libelle_d_acheminement": "MORNAND EN FOREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11953674559, + 45.6717929888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d31e79e86c542b97208f348209b5df74d04338eb", + "fields": { + "code_commune_insee": "51455", + "nom_de_la_commune": "REIMS LA BRULEE", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7216063085, + 4.66793528602 + ], + "libelle_d_acheminement": "REIMS LA BRULEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66793528602, + 48.7216063085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa26bff3297d45669d67e18f132e36abb7ae0ef7", + "fields": { + "code_commune_insee": "42160", + "nom_de_la_commune": "NOLLIEUX", + "code_postal": "42260", + "coordonnees_gps": [ + 45.8183058614, + 3.98993321679 + ], + "libelle_d_acheminement": "NOLLIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98993321679, + 45.8183058614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00b2db85005709554c7c1f3ee2daec7fe9b4c0ff", + "fields": { + "code_commune_insee": "51456", + "nom_de_la_commune": "REMICOURT", + "code_postal": "51330", + "coordonnees_gps": [ + 48.9479810081, + 4.85388891659 + ], + "libelle_d_acheminement": "REMICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85388891659, + 48.9479810081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb11b9bd38b1ba019c9d834998114b41b3192149", + "fields": { + "code_commune_insee": "42170", + "nom_de_la_commune": "PERREUX", + "code_postal": "42120", + "coordonnees_gps": [ + 46.0404897361, + 4.14491926088 + ], + "libelle_d_acheminement": "PERREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14491926088, + 46.0404897361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b21e14e81f4057ca592d6df5127b2b842d5c8567", + "fields": { + "code_commune_insee": "51463", + "nom_de_la_commune": "LES RIVIERES HENRUEL", + "code_postal": "51300", + "coordonnees_gps": [ + 48.6507854512, + 4.5419723092 + ], + "libelle_d_acheminement": "LES RIVIERES HENRUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5419723092, + 48.6507854512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05d9e6682864b2be053ac0845a929b814be3d9bd", + "fields": { + "code_commune_insee": "42172", + "nom_de_la_commune": "PLANFOY", + "code_postal": "42660", + "coordonnees_gps": [ + 45.3861155626, + 4.431442219 + ], + "libelle_d_acheminement": "PLANFOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.431442219, + 45.3861155626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b81e10cbaa67cca6825bf41327ce00b6707c7fc", + "fields": { + "code_commune_insee": "51468", + "nom_de_la_commune": "ROSNAY", + "code_postal": "51390", + "coordonnees_gps": [ + 49.2565896564, + 3.85701228085 + ], + "libelle_d_acheminement": "ROSNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85701228085, + 49.2565896564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5bcf1b82a917add737d6d6ec48f39ad26878643", + "fields": { + "code_commune_insee": "42178", + "nom_de_la_commune": "PRADINES", + "code_postal": "42630", + "coordonnees_gps": [ + 46.0000456451, + 4.17170231294 + ], + "libelle_d_acheminement": "PRADINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.17170231294, + 46.0000456451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a5eff6d256cd9983e59ea86fb6ebe88901c932d", + "fields": { + "code_commune_insee": "51471", + "nom_de_la_commune": "SACY", + "code_postal": "51500", + "coordonnees_gps": [ + 49.1981336193, + 3.95292346407 + ], + "libelle_d_acheminement": "SACY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95292346407, + 49.1981336193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7d3ddff50fc8380c28a2972b3144aba8687a850", + "fields": { + "code_commune_insee": "42179", + "nom_de_la_commune": "PRALONG", + "code_postal": "42600", + "coordonnees_gps": [ + 45.6602466343, + 4.02060723692 + ], + "libelle_d_acheminement": "PRALONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02060723692, + 45.6602466343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd8c474f62908770dac3850072aa77edae12b695", + "fields": { + "code_commune_insee": "51472", + "nom_de_la_commune": "ST AMAND SUR FION", + "code_postal": "51300", + "coordonnees_gps": [ + 48.8272157767, + 4.61145383959 + ], + "libelle_d_acheminement": "ST AMAND SUR FION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61145383959, + 48.8272157767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4569ccad0430f9eb727b3b79dd50516de51ab7c2", + "fields": { + "code_commune_insee": "42183", + "nom_de_la_commune": "LA RICAMARIE", + "code_postal": "42150", + "coordonnees_gps": [ + 45.4033695674, + 4.36890566227 + ], + "libelle_d_acheminement": "LA RICAMARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36890566227, + 45.4033695674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aae4687dfe9c1a3fcae9992a532bdd30e8609e44", + "fields": { + "code_commune_insee": "51473", + "nom_de_la_commune": "ST BON", + "code_postal": "51310", + "coordonnees_gps": [ + 48.6810933106, + 3.4758256593 + ], + "libelle_d_acheminement": "ST BON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4758256593, + 48.6810933106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "378580c8eb09f82b070339dedc26aa05b999708f", + "fields": { + "code_commune_insee": "42187", + "nom_de_la_commune": "ROANNE", + "code_postal": "42300", + "coordonnees_gps": [ + 46.0449112487, + 4.0797045647 + ], + "libelle_d_acheminement": "ROANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0797045647, + 46.0449112487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ece941aa2b497f00566a8afbc23c8998b2be26ff", + "fields": { + "code_commune_insee": "51474", + "nom_de_la_commune": "ST BRICE COURCELLES", + "code_postal": "51370", + "coordonnees_gps": [ + 49.2700930638, + 3.98965296971 + ], + "libelle_d_acheminement": "ST BRICE COURCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98965296971, + 49.2700930638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71b1cdd9918ee4cb90af4b4b009a5eb7bb8dcb52", + "fields": { + "ligne_5": "L ARSENAL", + "code_commune_insee": "42187", + "libelle_d_acheminement": "ROANNE", + "code_postal": "42300", + "nom_de_la_commune": "ROANNE", + "coordonnees_gps": [ + 46.0449112487, + 4.0797045647 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0797045647, + 46.0449112487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1321576573aac23cbe294f9bfe3cbab9daa7d1e8", + "fields": { + "code_commune_insee": "51485", + "nom_de_la_commune": "ST HILAIRE AU TEMPLE", + "code_postal": "51400", + "coordonnees_gps": [ + 49.0576981187, + 4.37473957395 + ], + "libelle_d_acheminement": "ST HILAIRE AU TEMPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37473957395, + 49.0576981187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb708a9aea8532813bba035e5a4b6afd846ae129", + "fields": { + "code_commune_insee": "42194", + "nom_de_la_commune": "SAIL LES BAINS", + "code_postal": "42310", + "coordonnees_gps": [ + 46.2388754339, + 3.84257216516 + ], + "libelle_d_acheminement": "SAIL LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84257216516, + 46.2388754339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42a84f6759d8dfb6084850a6412ab9dd9f6807ae", + "fields": { + "code_commune_insee": "51490", + "nom_de_la_commune": "ST JEAN SUR MOIVRE", + "code_postal": "51240", + "coordonnees_gps": [ + 48.8971001167, + 4.58461376769 + ], + "libelle_d_acheminement": "ST JEAN SUR MOIVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58461376769, + 48.8971001167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b7bb89989f9af2610df339c74f30acfdb04928c", + "fields": { + "code_commune_insee": "42195", + "nom_de_la_commune": "SAIL SOUS COUZAN", + "code_postal": "42890", + "coordonnees_gps": [ + 45.7364287162, + 3.96098461916 + ], + "libelle_d_acheminement": "SAIL SOUS COUZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96098461916, + 45.7364287162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86ffcc39c608ff89874781e5bce0e38e2e04d08f", + "fields": { + "code_commune_insee": "51491", + "nom_de_la_commune": "ST JEAN SUR TOURBE", + "code_postal": "51600", + "coordonnees_gps": [ + 49.1233394938, + 4.67214565601 + ], + "libelle_d_acheminement": "ST JEAN SUR TOURBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67214565601, + 49.1233394938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "932c7f5d62510b26d1763928bee606068fff0419", + "fields": { + "code_commune_insee": "42203", + "nom_de_la_commune": "ST BONNET DES QUARTS", + "code_postal": "42310", + "coordonnees_gps": [ + 46.1301853846, + 3.82816715097 + ], + "libelle_d_acheminement": "ST BONNET DES QUARTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82816715097, + 46.1301853846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7280fa4691366a69a802afc0f25204ed5d18657f", + "fields": { + "code_commune_insee": "51504", + "nom_de_la_commune": "ST MARTIN SUR LE PRE", + "code_postal": "51520", + "coordonnees_gps": [ + 48.9918819484, + 4.35747987108 + ], + "libelle_d_acheminement": "ST MARTIN SUR LE PRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35747987108, + 48.9918819484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67f961e1102aa69a7012aaaf15d1e1ba730a9aa7", + "fields": { + "ligne_5": "ST JULIEN EN JAREZ", + "code_commune_insee": "42207", + "libelle_d_acheminement": "ST CHAMOND", + "code_postal": "42400", + "nom_de_la_commune": "ST CHAMOND", + "coordonnees_gps": [ + 45.4698319517, + 4.50184989506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50184989506, + 45.4698319517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdcf59dc650cf3d123f2f3eafe466efe3e507891", + "fields": { + "code_commune_insee": "51510", + "nom_de_la_commune": "ST QUENTIN LES MARAIS", + "code_postal": "51300", + "coordonnees_gps": [ + 48.7768556316, + 4.63146682582 + ], + "libelle_d_acheminement": "ST QUENTIN LES MARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63146682582, + 48.7768556316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "922782781ae52df88910ae51c3ed82cbe064d7a8", + "fields": { + "code_commune_insee": "42210", + "nom_de_la_commune": "STE CROIX EN JAREZ", + "code_postal": "42800", + "coordonnees_gps": [ + 45.4769382751, + 4.63422150362 + ], + "libelle_d_acheminement": "STE CROIX EN JAREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63422150362, + 45.4769382751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "327bdf3295e265b60f8409d53081f8380618465d", + "fields": { + "code_commune_insee": "51514", + "nom_de_la_commune": "ST REMY SOUS BROYES", + "code_postal": "51120", + "coordonnees_gps": [ + 48.7070186782, + 3.77379053294 + ], + "libelle_d_acheminement": "ST REMY SOUS BROYES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77379053294, + 48.7070186782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1121fb6eb1f7ff65f54289d57b32610485ff7090", + "fields": { + "code_commune_insee": "42213", + "nom_de_la_commune": "ST CYR DE VALORGES", + "code_postal": "42114", + "coordonnees_gps": [ + 45.8893402235, + 4.31305449394 + ], + "libelle_d_acheminement": "ST CYR DE VALORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31305449394, + 45.8893402235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce0c8688cd20590869c3e69013fd2b2d03bc1b42", + "fields": { + "code_commune_insee": "51515", + "nom_de_la_commune": "ST REMY SUR BUSSY", + "code_postal": "51600", + "coordonnees_gps": [ + 49.060519815, + 4.58774935231 + ], + "libelle_d_acheminement": "ST REMY SUR BUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58774935231, + 49.060519815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cd1280d98f7e30d672e7cd5618bbacfa036800a", + "fields": { + "code_commune_insee": "42216", + "nom_de_la_commune": "ST DENIS SUR COISE", + "code_postal": "42140", + "coordonnees_gps": [ + 45.6115793741, + 4.43091520016 + ], + "libelle_d_acheminement": "ST DENIS SUR COISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43091520016, + 45.6115793741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99be6120a28e7a446251c33ac34735cd46311487", + "fields": { + "code_commune_insee": "51525", + "nom_de_la_commune": "SARRY", + "code_postal": "51520", + "coordonnees_gps": [ + 48.9268317961, + 4.41488135448 + ], + "libelle_d_acheminement": "SARRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41488135448, + 48.9268317961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c658228de1e18eb065c3766389f4196e9805b96", + "fields": { + "code_commune_insee": "42218", + "nom_de_la_commune": "ST ETIENNE", + "code_postal": "42100", + "coordonnees_gps": [ + 45.4301235512, + 4.37913997076 + ], + "libelle_d_acheminement": "ST ETIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37913997076, + 45.4301235512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f61c1db7800d2939550c63aba4f45e3d41efb98", + "fields": { + "code_commune_insee": "51528", + "nom_de_la_commune": "SCRUPT", + "code_postal": "51340", + "coordonnees_gps": [ + 48.7158651738, + 4.80888603123 + ], + "libelle_d_acheminement": "SCRUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80888603123, + 48.7158651738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad2861d6aadbf1e189db8c18b9275b6cb26d36a2", + "fields": { + "ligne_5": "TERRENOIRE", + "code_commune_insee": "42218", + "libelle_d_acheminement": "ST ETIENNE", + "code_postal": "42100", + "nom_de_la_commune": "ST ETIENNE", + "coordonnees_gps": [ + 45.4301235512, + 4.37913997076 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37913997076, + 45.4301235512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09a96a75603a6691240e0ea9bdc51bb1749875d8", + "fields": { + "code_commune_insee": "51538", + "nom_de_la_commune": "SOGNY AUX MOULINS", + "code_postal": "51520", + "coordonnees_gps": [ + 48.8957853925, + 4.39011051994 + ], + "libelle_d_acheminement": "SOGNY AUX MOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39011051994, + 48.8957853925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70cc06352067baa42e6888ffe411b4065d129433", + "fields": { + "code_commune_insee": "42223", + "nom_de_la_commune": "ST GENEST LERPT", + "code_postal": "42530", + "coordonnees_gps": [ + 45.4557410438, + 4.33134504197 + ], + "libelle_d_acheminement": "ST GENEST LERPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33134504197, + 45.4557410438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10f7935ce397022fdf70b6dffc7aaeb271f63bea", + "fields": { + "code_commune_insee": "51546", + "nom_de_la_commune": "SOMME SUIPPE", + "code_postal": "51600", + "coordonnees_gps": [ + 49.1187938082, + 4.58881261321 + ], + "libelle_d_acheminement": "SOMME SUIPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58881261321, + 49.1187938082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38650aad10790276b5edc52ffd308c52ef2e1ec6", + "fields": { + "code_commune_insee": "42228", + "nom_de_la_commune": "ST GEORGES HAUTE VILLE", + "code_postal": "42610", + "coordonnees_gps": [ + 45.5439493832, + 4.09234828784 + ], + "libelle_d_acheminement": "ST GEORGES HAUTE VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09234828784, + 45.5439493832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb6592a793b2e6594f3e0b2346e47939efffe818", + "fields": { + "code_commune_insee": "51549", + "nom_de_la_commune": "SOMME YEVRE", + "code_postal": "51330", + "coordonnees_gps": [ + 48.9445152692, + 4.74104866802 + ], + "libelle_d_acheminement": "SOMME YEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74104866802, + 48.9445152692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fbd1a6e309ef9727e80d2ffd9ee51b691955eb7", + "fields": { + "code_commune_insee": "42232", + "nom_de_la_commune": "ST HAON LE CHATEL", + "code_postal": "42370", + "coordonnees_gps": [ + 46.0647653123, + 3.91707635373 + ], + "libelle_d_acheminement": "ST HAON LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91707635373, + 46.0647653123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe4be365dfa016b4e1e00a96152180d51b7f3ecc", + "fields": { + "code_commune_insee": "51550", + "nom_de_la_commune": "SOMPUIS", + "code_postal": "51320", + "coordonnees_gps": [ + 48.6855555733, + 4.37611550868 + ], + "libelle_d_acheminement": "SOMPUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37611550868, + 48.6855555733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "554b82c87cabfc899ca949bb0d392e6944c0f0a5", + "fields": { + "code_commune_insee": "42237", + "nom_de_la_commune": "ST JEAN BONNEFONDS", + "code_postal": "42650", + "coordonnees_gps": [ + 45.4568786158, + 4.44848172147 + ], + "libelle_d_acheminement": "ST JEAN BONNEFONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44848172147, + 45.4568786158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42fdcdcf3447e7331c9c492aa58eab055899debd", + "fields": { + "code_commune_insee": "51558", + "nom_de_la_commune": "SOULIERES", + "code_postal": "51130", + "coordonnees_gps": [ + 48.9038402772, + 3.93440126624 + ], + "libelle_d_acheminement": "SOULIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93440126624, + 48.9038402772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3c305d9b74911b6a39d31c3e0fbde53c363daa0", + "fields": { + "code_commune_insee": "42239", + "nom_de_la_commune": "ST JEAN ST MAURICE SUR LOIRE", + "code_postal": "42155", + "coordonnees_gps": [ + 45.9576591068, + 3.98572458074 + ], + "libelle_d_acheminement": "ST JEAN ST MAURICE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98572458074, + 45.9576591068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31226fc33254497a2dee5db5b8448a374da5332f", + "fields": { + "code_commune_insee": "51563", + "nom_de_la_commune": "TALUS ST PRIX", + "code_postal": "51270", + "coordonnees_gps": [ + 48.8322484487, + 3.74333157283 + ], + "libelle_d_acheminement": "TALUS ST PRIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74333157283, + 48.8322484487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b737929963b95873aebef204e803b637947b09e", + "fields": { + "code_commune_insee": "42242", + "nom_de_la_commune": "ST JOSEPH", + "code_postal": "42800", + "coordonnees_gps": [ + 45.5552073766, + 4.61943614225 + ], + "libelle_d_acheminement": "ST JOSEPH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61943614225, + 45.5552073766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5a33d254bb4d82d32ce1d3447bb59ec761acfc5", + "fields": { + "code_commune_insee": "51602", + "nom_de_la_commune": "VAVRAY LE PETIT", + "code_postal": "51300", + "coordonnees_gps": [ + 48.8075522088, + 4.7160526865 + ], + "libelle_d_acheminement": "VAVRAY LE PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7160526865, + 48.8075522088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "327df56a537ad43600ece6c5532f9e8d86a2273d", + "fields": { + "code_commune_insee": "42252", + "nom_de_la_commune": "ST LAURENT ROCHEFORT", + "code_postal": "42130", + "coordonnees_gps": [ + 45.7745356504, + 3.90649306671 + ], + "libelle_d_acheminement": "ST LAURENT ROCHEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90649306671, + 45.7745356504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2f9bc676f378e1fcc7f3ec7eb6dc28e485b3879", + "fields": { + "code_commune_insee": "51610", + "nom_de_la_commune": "VERRIERES", + "code_postal": "51800", + "coordonnees_gps": [ + 49.061277732, + 4.90108677036 + ], + "libelle_d_acheminement": "VERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90108677036, + 49.061277732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b059ff68d6c22904376b2380d9db68d94bce3c1", + "fields": { + "code_commune_insee": "42277", + "nom_de_la_commune": "ST PRIEST LA ROCHE", + "code_postal": "42590", + "coordonnees_gps": [ + 45.9201905216, + 4.10633617946 + ], + "libelle_d_acheminement": "ST PRIEST LA ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10633617946, + 45.9201905216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b591716ab08d87d4822d2445e27fc9490b50c4db", + "fields": { + "ligne_5": "GIONGES", + "code_commune_insee": "51612", + "libelle_d_acheminement": "BLANCS COTEAUX", + "code_postal": "51130", + "nom_de_la_commune": "BLANCS COTEAUX", + "coordonnees_gps": [ + 48.9081794912, + 3.97961201086 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97961201086, + 48.9081794912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "927cfb99ad14d4868fdfab02ec7ce26626c89e11", + "fields": { + "ligne_5": "ST JUST SUR LOIRE", + "code_commune_insee": "42279", + "libelle_d_acheminement": "ST JUST ST RAMBERT", + "code_postal": "42170", + "nom_de_la_commune": "ST JUST ST RAMBERT", + "coordonnees_gps": [ + 45.4903250932, + 4.25026509629 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25026509629, + 45.4903250932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7e576253089f94692d2ff51c517996263b7ae3f", + "fields": { + "ligne_5": "OGER", + "code_commune_insee": "51612", + "libelle_d_acheminement": "BLANCS COTEAUX", + "code_postal": "51190", + "nom_de_la_commune": "BLANCS COTEAUX", + "coordonnees_gps": [ + 48.9081794912, + 3.97961201086 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97961201086, + 48.9081794912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fc8ce5974a8d2f432198a6bd66c7e78bc536568", + "fields": { + "code_commune_insee": "42282", + "nom_de_la_commune": "ST ROMAIN D URFE", + "code_postal": "42430", + "coordonnees_gps": [ + 45.8856641842, + 3.81783953207 + ], + "libelle_d_acheminement": "ST ROMAIN D URFE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81783953207, + 45.8856641842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36d80f9360a66616f5c473e95185bcd22fdaa61d", + "fields": { + "code_commune_insee": "51621", + "nom_de_la_commune": "VIENNE LE CHATEAU", + "code_postal": "51800", + "coordonnees_gps": [ + 49.1962706351, + 4.92488983667 + ], + "libelle_d_acheminement": "VIENNE LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92488983667, + 49.1962706351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5396748665a4743ea391a1025bd022646f9d5cb5", + "fields": { + "code_commune_insee": "42284", + "nom_de_la_commune": "ST ROMAIN LA MOTTE", + "code_postal": "42640", + "coordonnees_gps": [ + 46.0816280349, + 3.9953263339 + ], + "libelle_d_acheminement": "ST ROMAIN LA MOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9953263339, + 46.0816280349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d73aec2be96158e67a8bebb2a5fad2c9c5eebbfc", + "fields": { + "code_commune_insee": "51622", + "nom_de_la_commune": "VILLE DOMMANGE", + "code_postal": "51390", + "coordonnees_gps": [ + 49.2048611738, + 3.93766033813 + ], + "libelle_d_acheminement": "VILLE DOMMANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93766033813, + 49.2048611738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6f575d2e329fb7b3a24bd4e94312942abf1ec6f", + "fields": { + "code_commune_insee": "42293", + "nom_de_la_commune": "ST VICTOR SUR RHINS", + "code_postal": "42630", + "coordonnees_gps": [ + 46.0058474894, + 4.28322306743 + ], + "libelle_d_acheminement": "ST VICTOR SUR RHINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28322306743, + 46.0058474894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de9b3351517f63adbb1a720cc76288c52914d471", + "fields": { + "code_commune_insee": "51623", + "nom_de_la_commune": "VILLE EN SELVE", + "code_postal": "51500", + "coordonnees_gps": [ + 49.1225957296, + 4.0791891129 + ], + "libelle_d_acheminement": "VILLE EN SELVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0791891129, + 49.1225957296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7253cf2500b0550a3ed9d4eff194a5b857f2637c", + "fields": { + "code_commune_insee": "42300", + "nom_de_la_commune": "SEVELINGES", + "code_postal": "42460", + "coordonnees_gps": [ + 46.0993826373, + 4.28754411377 + ], + "libelle_d_acheminement": "SEVELINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28754411377, + 46.0993826373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a7faebb38da59ff45be28f4ad8b109c03084fff", + "fields": { + "code_commune_insee": "51628", + "nom_de_la_commune": "VILLENEUVE ST VISTRE ET VILLEVOTTE", + "code_postal": "51120", + "coordonnees_gps": [ + 48.6375394757, + 3.76140601624 + ], + "libelle_d_acheminement": "VILLENEUVE ST VISTRE VILLEVOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76140601624, + 48.6375394757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "729ce1e792d721502d8c3172a85645918aafa60c", + "fields": { + "code_commune_insee": "42308", + "nom_de_la_commune": "LA TERRASSE SUR DORLAY", + "code_postal": "42740", + "coordonnees_gps": [ + 45.4477648412, + 4.5788900746 + ], + "libelle_d_acheminement": "LA TERRASSE SUR DORLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5788900746, + 45.4477648412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e97c1052d35f24ed054a5e911976dd1d4124b0b9", + "fields": { + "code_commune_insee": "51631", + "nom_de_la_commune": "VILLERS AUX NOEUDS", + "code_postal": "51500", + "coordonnees_gps": [ + 49.1914885586, + 3.99330476767 + ], + "libelle_d_acheminement": "VILLERS AUX NOEUDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99330476767, + 49.1914885586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d99aa1c11cd76ee37a2e1fa1da24141a921ddd0", + "fields": { + "code_commune_insee": "42310", + "nom_de_la_commune": "THELIS LA COMBE", + "code_postal": "42220", + "coordonnees_gps": [ + 45.3361183193, + 4.54730534012 + ], + "libelle_d_acheminement": "THELIS LA COMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54730534012, + 45.3361183193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0f6592a393c6f52f17126b95c0c2901f67efc51", + "fields": { + "code_commune_insee": "51642", + "nom_de_la_commune": "VILLIERS AUX CORNEILLES", + "code_postal": "51260", + "coordonnees_gps": [ + 48.574728909, + 3.67678401066 + ], + "libelle_d_acheminement": "VILLIERS AUX CORNEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67678401066, + 48.574728909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2b3b917141d86205b690b17d489adbf9f12693e", + "fields": { + "code_commune_insee": "42311", + "nom_de_la_commune": "LA TOUR EN JAREZ", + "code_postal": "42580", + "coordonnees_gps": [ + 45.4883528278, + 4.39780519433 + ], + "libelle_d_acheminement": "LA TOUR EN JAREZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39780519433, + 45.4883528278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb5eb129e7f6f44cb537659500c9db3deb0079f5", + "fields": { + "code_commune_insee": "51652", + "nom_de_la_commune": "VOUARCES", + "code_postal": "51260", + "coordonnees_gps": [ + 48.5930940812, + 3.89089602611 + ], + "libelle_d_acheminement": "VOUARCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89089602611, + 48.5930940812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bbff5acd3c69c8c76e21d06d907e015910d3109", + "fields": { + "code_commune_insee": "42314", + "nom_de_la_commune": "LA TUILIERE", + "code_postal": "42830", + "coordonnees_gps": [ + 45.9586791748, + 3.81278919577 + ], + "libelle_d_acheminement": "LA TUILIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.81278919577, + 45.9586791748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4c19cb39745a0671f7acf770a8159790a94e06c", + "fields": { + "code_commune_insee": "51654", + "nom_de_la_commune": "VOUILLERS", + "code_postal": "51340", + "coordonnees_gps": [ + 48.6857312327, + 4.8445322469 + ], + "libelle_d_acheminement": "VOUILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8445322469, + 48.6857312327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef6bc67b211b58a5287225aae158df9c11d4197e", + "fields": { + "code_commune_insee": "42315", + "nom_de_la_commune": "UNIAS", + "code_postal": "42210", + "coordonnees_gps": [ + 45.6071257773, + 4.2265660188 + ], + "libelle_d_acheminement": "UNIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2265660188, + 45.6071257773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab582acb43e11ee38537e0a8dd1d626898a3c90e", + "fields": { + "code_commune_insee": "51658", + "nom_de_la_commune": "VROIL", + "code_postal": "51330", + "coordonnees_gps": [ + 48.8502978121, + 4.91023351451 + ], + "libelle_d_acheminement": "VROIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91023351451, + 48.8502978121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c433b2d3be82ba201323ed99cfe6e9888729431", + "fields": { + "code_commune_insee": "42320", + "nom_de_la_commune": "VALFLEURY", + "code_postal": "42320", + "coordonnees_gps": [ + 45.5416204634, + 4.51147591578 + ], + "libelle_d_acheminement": "VALFLEURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51147591578, + 45.5416204634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cfe1416f1a773c8f30aef24ee291d7231a6a71c", + "fields": { + "code_commune_insee": "51662", + "nom_de_la_commune": "WITRY LES REIMS", + "code_postal": "51420", + "coordonnees_gps": [ + 49.2972389215, + 4.11178756183 + ], + "libelle_d_acheminement": "WITRY LES REIMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11178756183, + 49.2972389215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "018082fc5ab5eb31f2c1c72eb6a8b9c8147ae50c", + "fields": { + "code_commune_insee": "42327", + "nom_de_la_commune": "VERIN", + "code_postal": "42410", + "coordonnees_gps": [ + 45.4600485183, + 4.74079429125 + ], + "libelle_d_acheminement": "VERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74079429125, + 45.4600485183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a933c8ff1ea5ccdda79adadd2465cfe5570cc223", + "fields": { + "code_commune_insee": "52014", + "nom_de_la_commune": "APREY", + "code_postal": "52250", + "coordonnees_gps": [ + 47.7713625885, + 5.1988766167 + ], + "libelle_d_acheminement": "APREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1988766167, + 47.7713625885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aabe075eb8133dc9719c304e2a34af0ce469654", + "fields": { + "code_commune_insee": "42334", + "nom_de_la_commune": "VIOLAY", + "code_postal": "42780", + "coordonnees_gps": [ + 45.8519288736, + 4.34938627101 + ], + "libelle_d_acheminement": "VIOLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34938627101, + 45.8519288736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a3a34cf8c751a0819b484af11c26fcd8cd53a71", + "fields": { + "code_commune_insee": "52017", + "nom_de_la_commune": "ARC EN BARROIS", + "code_postal": "52210", + "coordonnees_gps": [ + 47.947611382, + 5.02233277969 + ], + "libelle_d_acheminement": "ARC EN BARROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02233277969, + 47.947611382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fbe8c4ce03b547728eae7488ba8e6d1516c895d", + "fields": { + "code_commune_insee": "42337", + "nom_de_la_commune": "VIVANS", + "code_postal": "42310", + "coordonnees_gps": [ + 46.1823567174, + 3.93687924544 + ], + "libelle_d_acheminement": "VIVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93687924544, + 46.1823567174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b46b63131cfd3875b90ab20f1ea2c4e6ed96e9b", + "fields": { + "code_commune_insee": "52025", + "nom_de_la_commune": "AUDELONCOURT", + "code_postal": "52240", + "coordonnees_gps": [ + 48.1158167981, + 5.53260787357 + ], + "libelle_d_acheminement": "AUDELONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53260787357, + 48.1158167981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "481454380dde0970b6766a74f44c90a08a69542b", + "fields": { + "code_commune_insee": "43002", + "nom_de_la_commune": "AIGUILHE", + "code_postal": "43000", + "coordonnees_gps": [ + 45.0530693199, + 3.88524729137 + ], + "libelle_d_acheminement": "AIGUILHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88524729137, + 45.0530693199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4aae987b0ea58e7f5dd6712424fda75a4cf980e0", + "fields": { + "code_commune_insee": "52031", + "nom_de_la_commune": "AUTREVILLE SUR LA RENNE", + "code_postal": "52120", + "coordonnees_gps": [ + 48.1258481479, + 4.97740367937 + ], + "libelle_d_acheminement": "AUTREVILLE SUR LA RENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97740367937, + 48.1258481479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "591bf263379e567afdc1705883f4aa02d31ffbed", + "fields": { + "code_commune_insee": "43009", + "nom_de_la_commune": "ARLET", + "code_postal": "43380", + "coordonnees_gps": [ + 45.1126240159, + 3.41043296989 + ], + "libelle_d_acheminement": "ARLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41043296989, + 45.1126240159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "145bfa6d0f1e7897e6940acae2f5b5d4a1c2f120", + "fields": { + "ligne_5": "VALDELANCOURT", + "code_commune_insee": "52031", + "libelle_d_acheminement": "AUTREVILLE SUR LA RENNE", + "code_postal": "52120", + "nom_de_la_commune": "AUTREVILLE SUR LA RENNE", + "coordonnees_gps": [ + 48.1258481479, + 4.97740367937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97740367937, + 48.1258481479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d768ad6b5e38ef8b001ff75712e404bdb1bf7b61", + "fields": { + "code_commune_insee": "43020", + "nom_de_la_commune": "BAS EN BASSET", + "code_postal": "43210", + "coordonnees_gps": [ + 45.3159119273, + 4.104826748 + ], + "libelle_d_acheminement": "BAS EN BASSET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.104826748, + 45.3159119273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "156e5b602357e6c10adcef12ba3a02fe6c882c28", + "fields": { + "code_commune_insee": "52034", + "nom_de_la_commune": "BAILLY AUX FORGES", + "code_postal": "52130", + "coordonnees_gps": [ + 48.4543823566, + 4.90549135186 + ], + "libelle_d_acheminement": "BAILLY AUX FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90549135186, + 48.4543823566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97095ce4e218b4ce209147ccac2b1ca44c31865b", + "fields": { + "code_commune_insee": "43027", + "nom_de_la_commune": "BERBEZIT", + "code_postal": "43160", + "coordonnees_gps": [ + 45.2869739062, + 3.59469337193 + ], + "libelle_d_acheminement": "BERBEZIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59469337193, + 45.2869739062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ede542c6ebab773647789c4f83f9ea31e0b2981", + "fields": { + "code_commune_insee": "52040", + "nom_de_la_commune": "BAY SUR AUBE", + "code_postal": "52160", + "coordonnees_gps": [ + 47.8238443502, + 5.06047731738 + ], + "libelle_d_acheminement": "BAY SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06047731738, + 47.8238443502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9406af23b1cceac89485856559c6b1b30bfff89d", + "fields": { + "code_commune_insee": "43041", + "nom_de_la_commune": "BRIVES CHARENSAC", + "code_postal": "43700", + "coordonnees_gps": [ + 45.0463267089, + 3.92401115104 + ], + "libelle_d_acheminement": "BRIVES CHARENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92401115104, + 45.0463267089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13d64f77c94f7fe73658926e875529c3033efec8", + "fields": { + "code_commune_insee": "52043", + "nom_de_la_commune": "BELMONT", + "code_postal": "52500", + "coordonnees_gps": [ + 47.7200699243, + 5.55533089037 + ], + "libelle_d_acheminement": "BELMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55533089037, + 47.7200699243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "545b786019f113f003e27017c4a2bb4cdb854e37", + "fields": { + "code_commune_insee": "43047", + "nom_de_la_commune": "CHADRON", + "code_postal": "43150", + "coordonnees_gps": [ + 44.9500949064, + 3.93743261861 + ], + "libelle_d_acheminement": "CHADRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93743261861, + 44.9500949064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d2b4feef0f195921056217fe3c1675c869fc0e8", + "fields": { + "code_commune_insee": "52045", + "nom_de_la_commune": "BETTANCOURT LA FERREE", + "code_postal": "52100", + "coordonnees_gps": [ + 48.6559404041, + 4.97264106822 + ], + "libelle_d_acheminement": "BETTANCOURT LA FERREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97264106822, + 48.6559404041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "854caeeca2b2be779c051b74bdbd4ca004fe7ca1", + "fields": { + "code_commune_insee": "43053", + "nom_de_la_commune": "CHAMPCLAUSE", + "code_postal": "43430", + "coordonnees_gps": [ + 45.0245461662, + 4.16078636885 + ], + "libelle_d_acheminement": "CHAMPCLAUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16078636885, + 45.0245461662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9cda87710f13dcba594e0bed65619e5756ea4e6", + "fields": { + "code_commune_insee": "52051", + "nom_de_la_commune": "BIZE", + "code_postal": "52500", + "coordonnees_gps": [ + 47.8401528768, + 5.6357935522 + ], + "libelle_d_acheminement": "BIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6357935522, + 47.8401528768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed75e65a910173bc34d274fb4f1ed9c56d5bba72", + "fields": { + "code_commune_insee": "43054", + "nom_de_la_commune": "CHANALEILLES", + "code_postal": "43170", + "coordonnees_gps": [ + 44.8573929724, + 3.48785990455 + ], + "libelle_d_acheminement": "CHANALEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48785990455, + 44.8573929724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e1860dedc2aa29b3b9374767d1fff5e2326e7a8", + "fields": { + "ligne_5": "MARAULT", + "code_commune_insee": "52058", + "libelle_d_acheminement": "BOLOGNE", + "code_postal": "52310", + "nom_de_la_commune": "BOLOGNE", + "coordonnees_gps": [ + 48.1992324541, + 5.14187719083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14187719083, + 48.1992324541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f5f456de727561c55d27bd235f5d88bbbc106a3", + "fields": { + "code_commune_insee": "43063", + "nom_de_la_commune": "CHASSAGNES", + "code_postal": "43230", + "coordonnees_gps": [ + 45.219501871, + 3.55045183907 + ], + "libelle_d_acheminement": "CHASSAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55045183907, + 45.219501871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ace80f6ff66fefe497846aba75a07dda6e6c1e95", + "fields": { + "ligne_5": "COLOMBEY LES CHOISEUL", + "code_commune_insee": "52074", + "libelle_d_acheminement": "BREUVANNES EN BASSIGNY", + "code_postal": "52240", + "nom_de_la_commune": "BREUVANNES EN BASSIGNY", + "coordonnees_gps": [ + 48.0850729223, + 5.61021002539 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61021002539, + 48.0850729223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bea7d7acfa29e0c30634c9e55e70d51424765ca0", + "fields": { + "code_commune_insee": "43068", + "nom_de_la_commune": "CHAZELLES", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0219434462, + 3.48997094743 + ], + "libelle_d_acheminement": "CHAZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.48997094743, + 45.0219434462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "045aef980bb06c69e394a43080450ba1c591165f", + "fields": { + "ligne_5": "CORGIRNON", + "code_commune_insee": "52083", + "libelle_d_acheminement": "CHAMPSEVRAINE", + "code_postal": "52500", + "nom_de_la_commune": "CHAMPSEVRAINE", + "coordonnees_gps": [ + 47.7640004218, + 5.52713580414 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52713580414, + 47.7640004218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca358f526e6f20326f8bd745317865305557da2f", + "fields": { + "code_commune_insee": "43070", + "nom_de_la_commune": "CHILHAC", + "code_postal": "43380", + "coordonnees_gps": [ + 45.1574337378, + 3.44059442779 + ], + "libelle_d_acheminement": "CHILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44059442779, + 45.1574337378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aec8a4f4a7c43a72af5e884e342faea2a6f60b6c", + "fields": { + "code_commune_insee": "52085", + "nom_de_la_commune": "BUXIERES LES CLEFMONT", + "code_postal": "52240", + "coordonnees_gps": [ + 48.0897801284, + 5.45977208825 + ], + "libelle_d_acheminement": "BUXIERES LES CLEFMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45977208825, + 48.0897801284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a01ed3f8c7ec8f80e3919642af96522f998321c6", + "fields": { + "code_commune_insee": "43075", + "nom_de_la_commune": "COLLAT", + "code_postal": "43230", + "coordonnees_gps": [ + 45.2438954518, + 3.60182440614 + ], + "libelle_d_acheminement": "COLLAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60182440614, + 45.2438954518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53effd012df6755ff2c346d83bf83f0868171b43", + "fields": { + "code_commune_insee": "52089", + "nom_de_la_commune": "CELLES EN BASSIGNY", + "code_postal": "52360", + "coordonnees_gps": [ + 47.9119135852, + 5.55156066281 + ], + "libelle_d_acheminement": "CELLES EN BASSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55156066281, + 47.9119135852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aa9e6ccc82e42147b818e198694d49b59995b51", + "fields": { + "code_commune_insee": "43077", + "nom_de_la_commune": "COSTAROS", + "code_postal": "43490", + "coordonnees_gps": [ + 44.8920718655, + 3.84194495017 + ], + "libelle_d_acheminement": "COSTAROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84194495017, + 44.8920718655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61b3e97f28c1f2b38c9daafb9accf8b040f09da5", + "fields": { + "code_commune_insee": "52090", + "nom_de_la_commune": "CELSOY", + "code_postal": "52600", + "coordonnees_gps": [ + 47.8630499689, + 5.49202471429 + ], + "libelle_d_acheminement": "CELSOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49202471429, + 47.8630499689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3c85e9848290b7d21a36121feda2bebc5efacb8", + "fields": { + "code_commune_insee": "43083", + "nom_de_la_commune": "CUBELLES", + "code_postal": "43170", + "coordonnees_gps": [ + 44.9971156776, + 3.56438618299 + ], + "libelle_d_acheminement": "CUBELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56438618299, + 44.9971156776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9b2dfd24f6b9ab6c81f6afba2eb438f1c031cec", + "fields": { + "code_commune_insee": "52092", + "nom_de_la_commune": "CHALANCEY", + "code_postal": "52160", + "coordonnees_gps": [ + 47.6766614444, + 5.13613711539 + ], + "libelle_d_acheminement": "CHALANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13613711539, + 47.6766614444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ecdeddea531da370988c964277d8a9bbc61f32f", + "fields": { + "code_commune_insee": "43088", + "nom_de_la_commune": "ESPALEM", + "code_postal": "43450", + "coordonnees_gps": [ + 45.3026834057, + 3.2330870914 + ], + "libelle_d_acheminement": "ESPALEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2330870914, + 45.3026834057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b93939b9c3e540c14650492539206384c00a1ff7", + "fields": { + "code_commune_insee": "52094", + "nom_de_la_commune": "VALS DES TILLES", + "code_postal": "52160", + "coordonnees_gps": [ + 47.6942815153, + 5.08168973131 + ], + "libelle_d_acheminement": "VALS DES TILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08168973131, + 47.6942815153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a446ddc884191b93b38774effe06a9b6426f49c", + "fields": { + "code_commune_insee": "43105", + "nom_de_la_commune": "JAVAUGUES", + "code_postal": "43100", + "coordonnees_gps": [ + 45.2916285035, + 3.49051315669 + ], + "libelle_d_acheminement": "JAVAUGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49051315669, + 45.2916285035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21d7badd2313e3f40b72d199b5fd23dc25d1be4b", + "fields": { + "ligne_5": "VILLEMERVRY", + "code_commune_insee": "52094", + "libelle_d_acheminement": "VALS DES TILLES", + "code_postal": "52160", + "nom_de_la_commune": "VALS DES TILLES", + "coordonnees_gps": [ + 47.6942815153, + 5.08168973131 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08168973131, + 47.6942815153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b55f5e08207e20194be2f052cc21391704a67c27", + "fields": { + "code_commune_insee": "43108", + "nom_de_la_commune": "JULLIANGES", + "code_postal": "43500", + "coordonnees_gps": [ + 45.3062906797, + 3.78210420131 + ], + "libelle_d_acheminement": "JULLIANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.78210420131, + 45.3062906797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10f8cc7782caeb13452fa35fe815ae6db3a76b78", + "fields": { + "code_commune_insee": "52101", + "nom_de_la_commune": "CHAMPIGNEULLES EN BASSIGNY", + "code_postal": "52150", + "coordonnees_gps": [ + 48.1287336984, + 5.62935287629 + ], + "libelle_d_acheminement": "CHAMPIGNEULLES EN BASSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62935287629, + 48.1287336984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4dd02a356768ee260257ee99769e136a13af9e30", + "fields": { + "code_commune_insee": "43111", + "nom_de_la_commune": "LANDOS", + "code_postal": "43340", + "coordonnees_gps": [ + 44.8498332614, + 3.84500846795 + ], + "libelle_d_acheminement": "LANDOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84500846795, + 44.8498332614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3db460bd3782e3db2fab7032aba64a9a99b73665", + "fields": { + "code_commune_insee": "52104", + "nom_de_la_commune": "CHANCENAY", + "code_postal": "52100", + "coordonnees_gps": [ + 48.6747534279, + 4.98001306427 + ], + "libelle_d_acheminement": "CHANCENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98001306427, + 48.6747534279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85eb6c7bec465d227c27223bb2573012d4f3957b", + "fields": { + "ligne_5": "LA SAUVETAT", + "code_commune_insee": "43111", + "libelle_d_acheminement": "LANDOS", + "code_postal": "43340", + "nom_de_la_commune": "LANDOS", + "coordonnees_gps": [ + 44.8498332614, + 3.84500846795 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84500846795, + 44.8498332614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4f480ea74f0d3b0f8563a3fd700236d6a188fd3", + "fields": { + "code_commune_insee": "52107", + "nom_de_la_commune": "CHANTRAINES", + "code_postal": "52700", + "coordonnees_gps": [ + 48.216107614, + 5.24193163106 + ], + "libelle_d_acheminement": "CHANTRAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24193163106, + 48.216107614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25d26914642cf6480a80a178f1d1a29ded48db28", + "fields": { + "code_commune_insee": "43113", + "nom_de_la_commune": "LANTRIAC", + "code_postal": "43260", + "coordonnees_gps": [ + 44.9893833018, + 4.00363662506 + ], + "libelle_d_acheminement": "LANTRIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00363662506, + 44.9893833018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fecd2a16b8220fffe6735a1667a0d0b5ba650fc0", + "fields": { + "code_commune_insee": "52108", + "nom_de_la_commune": "CHARMES", + "code_postal": "52360", + "coordonnees_gps": [ + 47.9205445894, + 5.3544393191 + ], + "libelle_d_acheminement": "CHARMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3544393191, + 47.9205445894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44f76fabb0f75ec32e1da08aa25239e286d9df30", + "fields": { + "code_commune_insee": "43120", + "nom_de_la_commune": "LEMPDES SUR ALLAGNON", + "code_postal": "43410", + "coordonnees_gps": [ + 45.3790751564, + 3.28028166005 + ], + "libelle_d_acheminement": "LEMPDES SUR ALLAGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28028166005, + 45.3790751564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "162824f071811855bf0f9cb108bdda7d02da5a8d", + "fields": { + "code_commune_insee": "52113", + "nom_de_la_commune": "CHASSIGNY", + "code_postal": "52190", + "coordonnees_gps": [ + 47.7183172965, + 5.38247891273 + ], + "libelle_d_acheminement": "CHASSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38247891273, + 47.7183172965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21cf815e8fd558ae267754a85a09718e8ba9ba23", + "fields": { + "code_commune_insee": "43121", + "nom_de_la_commune": "LEOTOING", + "code_postal": "43410", + "coordonnees_gps": [ + 45.3528081691, + 3.24026520445 + ], + "libelle_d_acheminement": "LEOTOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24026520445, + 45.3528081691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f59dcd38811a4ec9b85d20028185f4582c44342", + "fields": { + "ligne_5": "CHAMARANDES", + "code_commune_insee": "52125", + "libelle_d_acheminement": "CHAMARANDES CHOIGNES", + "code_postal": "52000", + "nom_de_la_commune": "CHAMARANDES CHOIGNES", + "coordonnees_gps": [ + 48.1022459554, + 5.18945345266 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18945345266, + 48.1022459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "473b7e29342cfac93e41aaeae20f7376b91354d5", + "fields": { + "code_commune_insee": "43122", + "nom_de_la_commune": "LISSAC", + "code_postal": "43350", + "coordonnees_gps": [ + 45.1342038026, + 3.75987831256 + ], + "libelle_d_acheminement": "LISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75987831256, + 45.1342038026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "656d9181e92454b696324627470dfdb5e8b488e8", + "fields": { + "code_commune_insee": "52127", + "nom_de_la_commune": "CHOISEUL", + "code_postal": "52240", + "coordonnees_gps": [ + 48.0528969056, + 5.57184637406 + ], + "libelle_d_acheminement": "CHOISEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57184637406, + 48.0528969056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d0253ac1cd01dc491f17e85ec720736beccccc3", + "fields": { + "code_commune_insee": "43128", + "nom_de_la_commune": "MALVIERES", + "code_postal": "43160", + "coordonnees_gps": [ + 45.3426664598, + 3.72579573822 + ], + "libelle_d_acheminement": "MALVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72579573822, + 45.3426664598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a02437ff0fd3ad5cdbcf738dbb5a124fc34a32a4", + "fields": { + "code_commune_insee": "52136", + "nom_de_la_commune": "COIFFY LE HAUT", + "code_postal": "52400", + "coordonnees_gps": [ + 47.9010106381, + 5.69160816764 + ], + "libelle_d_acheminement": "COIFFY LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69160816764, + 47.9010106381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9ca23a88ccfd4f4708f87adf0d29ddfee0ad170", + "fields": { + "code_commune_insee": "43129", + "nom_de_la_commune": "LE MAS DE TENCE", + "code_postal": "43190", + "coordonnees_gps": [ + 45.1189181156, + 4.36893159168 + ], + "libelle_d_acheminement": "LE MAS DE TENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36893159168, + 45.1189181156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee7d4160fb20fa96ae233fd61439d210b61b0095", + "fields": { + "ligne_5": "BIERNES", + "code_commune_insee": "52140", + "libelle_d_acheminement": "COLOMBEY LES DEUX EGLISES", + "code_postal": "52330", + "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", + "coordonnees_gps": [ + 48.2454844081, + 4.92015393779 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92015393779, + 48.2454844081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68aa523cd144202721ca398022257a3a47376752", + "fields": { + "code_commune_insee": "43130", + "nom_de_la_commune": "MAZET ST VOY", + "code_postal": "43520", + "coordonnees_gps": [ + 45.04385116, + 4.24003740348 + ], + "libelle_d_acheminement": "MAZET ST VOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24003740348, + 45.04385116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f10d5e5d88d725ac94f15e635365ca1f0302c4c1", + "fields": { + "ligne_5": "LAMOTHE EN BLAISY", + "code_commune_insee": "52140", + "libelle_d_acheminement": "COLOMBEY LES DEUX EGLISES", + "code_postal": "52330", + "nom_de_la_commune": "COLOMBEY LES DEUX EGLISES", + "coordonnees_gps": [ + 48.2454844081, + 4.92015393779 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92015393779, + 48.2454844081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcdcf8f8eeecd8347a56a36700e38bb6e3254013", + "fields": { + "code_commune_insee": "43133", + "nom_de_la_commune": "MERCOEUR", + "code_postal": "43100", + "coordonnees_gps": [ + 45.1875792537, + 3.30357255266 + ], + "libelle_d_acheminement": "MERCOEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30357255266, + 45.1875792537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "199a54d488b55f40e4b0d1b8fd30637afc2734c2", + "fields": { + "code_commune_insee": "52149", + "nom_de_la_commune": "COURCELLES SUR BLAISE", + "code_postal": "52110", + "coordonnees_gps": [ + 48.4128684466, + 4.94116258258 + ], + "libelle_d_acheminement": "COURCELLES SUR BLAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94116258258, + 48.4128684466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1daf173d717f6485b750ee80bfdf6b542be3f0ff", + "fields": { + "code_commune_insee": "43138", + "nom_de_la_commune": "MONLET", + "code_postal": "43270", + "coordonnees_gps": [ + 45.2287759624, + 3.7139620012 + ], + "libelle_d_acheminement": "MONLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7139620012, + 45.2287759624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb9deb92da11537550c8b4c3e0c69f47ad7a119c", + "fields": { + "code_commune_insee": "52155", + "nom_de_la_commune": "CULMONT", + "code_postal": "52600", + "coordonnees_gps": [ + 47.8293464175, + 5.44281148434 + ], + "libelle_d_acheminement": "CULMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44281148434, + 47.8293464175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccf5ea8a32cc73938b9a40ae6a9a40f7ad8b1aeb", + "fields": { + "code_commune_insee": "43149", + "nom_de_la_commune": "PEBRAC", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0291359693, + 3.52107311207 + ], + "libelle_d_acheminement": "PEBRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52107311207, + 45.0291359693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57fcc45a55135e4214e5b082b175519a3d0a8ecc", + "fields": { + "code_commune_insee": "52164", + "nom_de_la_commune": "DAMREMONT", + "code_postal": "52400", + "coordonnees_gps": [ + 47.9487557847, + 5.64105093613 + ], + "libelle_d_acheminement": "DAMREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64105093613, + 47.9487557847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "170a4cff372439352d39907a6439cc1aea2bf7c8", + "fields": { + "code_commune_insee": "43154", + "nom_de_la_commune": "PRADELLES", + "code_postal": "43420", + "coordonnees_gps": [ + 44.7650507799, + 3.87177102948 + ], + "libelle_d_acheminement": "PRADELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87177102948, + 44.7650507799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e28423c16e69111e3189a7019eef371611ee65b", + "fields": { + "code_commune_insee": "52170", + "nom_de_la_commune": "DOMMARIEN", + "code_postal": "52190", + "coordonnees_gps": [ + 47.6892296711, + 5.35283846982 + ], + "libelle_d_acheminement": "DOMMARIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35283846982, + 47.6892296711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9f1a13d93811a8e9a6abcf928ea41015550d830", + "fields": { + "code_commune_insee": "43155", + "nom_de_la_commune": "PRADES", + "code_postal": "43300", + "coordonnees_gps": [ + 45.0245718989, + 3.59400900107 + ], + "libelle_d_acheminement": "PRADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59400900107, + 45.0245718989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "260b4126cb14a7f52ff4158e48de9f093486d6fb", + "fields": { + "code_commune_insee": "52172", + "nom_de_la_commune": "DOMMARTIN LE ST PERE", + "code_postal": "52110", + "coordonnees_gps": [ + 48.4011786255, + 4.91405367965 + ], + "libelle_d_acheminement": "DOMMARTIN LE ST PERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91405367965, + 48.4011786255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb3fcd1932318960cff0ea1484c6bff0ac9f1b54", + "fields": { + "code_commune_insee": "43156", + "nom_de_la_commune": "PRESAILLES", + "code_postal": "43150", + "coordonnees_gps": [ + 44.890701673, + 4.04430480363 + ], + "libelle_d_acheminement": "PRESAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04430480363, + 44.890701673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29aa0244fd4a5fe58a0f0961a627cd6b282f752c", + "fields": { + "code_commune_insee": "52178", + "nom_de_la_commune": "DOULEVANT LE CHATEAU", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3711804366, + 4.91706385243 + ], + "libelle_d_acheminement": "DOULEVANT LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91706385243, + 48.3711804366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe5f84def83c51b21c73eea9f5b747659245d668", + "fields": { + "code_commune_insee": "43163", + "nom_de_la_commune": "RIOTORD", + "code_postal": "43220", + "coordonnees_gps": [ + 45.2349277703, + 4.42239825506 + ], + "libelle_d_acheminement": "RIOTORD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42239825506, + 45.2349277703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33bd9e79b8f1666734e64646788b22c884815d18", + "fields": { + "ligne_5": "VILLIERS AUX CHENES", + "code_commune_insee": "52178", + "libelle_d_acheminement": "DOULEVANT LE CHATEAU", + "code_postal": "52110", + "nom_de_la_commune": "DOULEVANT LE CHATEAU", + "coordonnees_gps": [ + 48.3711804366, + 4.91706385243 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.91706385243, + 48.3711804366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75afcfdb3be3305a300e0d7160f7bd6cd2bf76be", + "fields": { + "code_commune_insee": "43168", + "nom_de_la_commune": "ST ARCONS DE BARGES", + "code_postal": "43420", + "coordonnees_gps": [ + 44.8335033818, + 3.92431470071 + ], + "libelle_d_acheminement": "ST ARCONS DE BARGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92431470071, + 44.8335033818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32950279337a95fbe6c4bca0a86a46e49ea08be3", + "fields": { + "code_commune_insee": "52185", + "nom_de_la_commune": "ENFONVELLE", + "code_postal": "52400", + "coordonnees_gps": [ + 47.9188396684, + 5.86558348246 + ], + "libelle_d_acheminement": "ENFONVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86558348246, + 47.9188396684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79b901e2a4359c82a10ce5b58b6076246eebdd7a", + "fields": { + "code_commune_insee": "43170", + "nom_de_la_commune": "ST BEAUZIRE", + "code_postal": "43100", + "coordonnees_gps": [ + 45.2770787888, + 3.28293781034 + ], + "libelle_d_acheminement": "ST BEAUZIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28293781034, + 45.2770787888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06f7f902d49bd6ddbc93a266d544f7ca45b136bd", + "fields": { + "ligne_5": "COURCELLES VAL D ESNOMS", + "code_commune_insee": "52189", + "libelle_d_acheminement": "LE VAL D ESNOMS", + "code_postal": "52190", + "nom_de_la_commune": "LE VAL D ESNOMS", + "coordonnees_gps": [ + 47.6904929765, + 5.21656859314 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21656859314, + 47.6904929765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf1f64722927df3f1ec747844bb72a29baf0f6c3", + "fields": { + "code_commune_insee": "43172", + "nom_de_la_commune": "ST BONNET LE FROID", + "code_postal": "43290", + "coordonnees_gps": [ + 45.143785338, + 4.43283781114 + ], + "libelle_d_acheminement": "ST BONNET LE FROID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43283781114, + 45.143785338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b78132d1fd39e99b91396421a021e250a34a92be", + "fields": { + "ligne_5": "ESNOMS AU VAL", + "code_commune_insee": "52189", + "libelle_d_acheminement": "LE VAL D ESNOMS", + "code_postal": "52190", + "nom_de_la_commune": "LE VAL D ESNOMS", + "coordonnees_gps": [ + 47.6904929765, + 5.21656859314 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21656859314, + 47.6904929765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed76489bc9ef1d316b2588496eeaa0d9d926efdf", + "fields": { + "code_commune_insee": "43173", + "nom_de_la_commune": "ST CHRISTOPHE D ALLIER", + "code_postal": "43340", + "coordonnees_gps": [ + 44.8488448376, + 3.7017331101 + ], + "libelle_d_acheminement": "ST CHRISTOPHE D ALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7017331101, + 44.8488448376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17cdb3bc00f83c68a384e80b9dee901ea6742ff8", + "fields": { + "code_commune_insee": "52203", + "nom_de_la_commune": "FONTAINES SUR MARNE", + "code_postal": "52170", + "coordonnees_gps": [ + 48.5585322909, + 5.11565256465 + ], + "libelle_d_acheminement": "FONTAINES SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11565256465, + 48.5585322909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddfc9c9f79816ddb30810f0764e34afb324c1272", + "fields": { + "code_commune_insee": "43177", + "nom_de_la_commune": "ST DIDIER EN VELAY", + "code_postal": "43140", + "coordonnees_gps": [ + 45.3102257705, + 4.28479871103 + ], + "libelle_d_acheminement": "ST DIDIER EN VELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28479871103, + 45.3102257705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d3b0b1da25626568551b69fdf9272fcf23113f0", + "fields": { + "ligne_5": "CRENAY", + "code_commune_insee": "52205", + "libelle_d_acheminement": "FOULAIN", + "code_postal": "52000", + "nom_de_la_commune": "FOULAIN", + "coordonnees_gps": [ + 48.0223132698, + 5.16701559496 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16701559496, + 48.0223132698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e13745e1a43f1aac43340f326907c56eca3525a", + "fields": { + "code_commune_insee": "43184", + "nom_de_la_commune": "ST FERREOL D AUROURE", + "code_postal": "43330", + "coordonnees_gps": [ + 45.3569721044, + 4.25874245507 + ], + "libelle_d_acheminement": "ST FERREOL D AUROURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25874245507, + 45.3569721044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d5cd908d85063dd67502e967fea338e47b44250", + "fields": { + "code_commune_insee": "52206", + "nom_de_la_commune": "FRAMPAS", + "code_postal": "52220", + "coordonnees_gps": [ + 48.5195287693, + 4.8332793403 + ], + "libelle_d_acheminement": "FRAMPAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8332793403, + 48.5195287693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fab8ba999b4dba084418bd42b4f1df3d5eeaaaf", + "fields": { + "code_commune_insee": "43187", + "nom_de_la_commune": "ST GENEYS PRES ST PAULIEN", + "code_postal": "43350", + "coordonnees_gps": [ + 45.1738034245, + 3.83061970488 + ], + "libelle_d_acheminement": "ST GENEYS PRES ST PAULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83061970488, + 45.1738034245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46fcebeae7f59c1bcdb2276abe30107815cecc2a", + "fields": { + "code_commune_insee": "52212", + "nom_de_la_commune": "FRONVILLE", + "code_postal": "52300", + "coordonnees_gps": [ + 48.4008313761, + 5.13453844457 + ], + "libelle_d_acheminement": "FRONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13453844457, + 48.4008313761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a0e0297393647d8f2d34fcdc20dad2bb19e8faf", + "fields": { + "code_commune_insee": "43189", + "nom_de_la_commune": "ST GEORGES LAGRICOL", + "code_postal": "43500", + "coordonnees_gps": [ + 45.3036551402, + 3.88836615913 + ], + "libelle_d_acheminement": "ST GEORGES LAGRICOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88836615913, + 45.3036551402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeecf82c5caee8680ac4e007df6ef99ed48eb187", + "fields": { + "code_commune_insee": "52213", + "nom_de_la_commune": "GENEVRIERES", + "code_postal": "52500", + "coordonnees_gps": [ + 47.7226560944, + 5.60301498362 + ], + "libelle_d_acheminement": "GENEVRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60301498362, + 47.7226560944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeb1b05e654bc05cf2e690196081142f9d730f25", + "fields": { + "code_commune_insee": "43201", + "nom_de_la_commune": "ST JULIEN D ANCE", + "code_postal": "43500", + "coordonnees_gps": [ + 45.3060820741, + 3.92419181239 + ], + "libelle_d_acheminement": "ST JULIEN D ANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.92419181239, + 45.3060820741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99b1d05ef368d6fe9339a90d1a58726926f2c3bd", + "fields": { + "code_commune_insee": "52216", + "nom_de_la_commune": "GERMAINES", + "code_postal": "52160", + "coordonnees_gps": [ + 47.7994372317, + 5.02777502578 + ], + "libelle_d_acheminement": "GERMAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02777502578, + 47.7994372317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a3079add2426ea451d74f7ff059fa6d4aceb313", + "fields": { + "code_commune_insee": "43203", + "nom_de_la_commune": "ST JULIEN DU PINET", + "code_postal": "43200", + "coordonnees_gps": [ + 45.1468584191, + 4.04767763095 + ], + "libelle_d_acheminement": "ST JULIEN DU PINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04767763095, + 45.1468584191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbcf4738d6fe3997183ffe959613066d62003a07", + "fields": { + "code_commune_insee": "52221", + "nom_de_la_commune": "GILLANCOURT", + "code_postal": "52330", + "coordonnees_gps": [ + 48.1542646062, + 4.99722177508 + ], + "libelle_d_acheminement": "GILLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99722177508, + 48.1542646062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c3eb1fc4ab192668f50ad6609ffcc9afb440afb", + "fields": { + "code_commune_insee": "43216", + "nom_de_la_commune": "ST PAULIEN", + "code_postal": "43350", + "coordonnees_gps": [ + 45.135004008, + 3.82064144653 + ], + "libelle_d_acheminement": "ST PAULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82064144653, + 45.135004008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d806cf1f84b739c6c7014b54d68906d8d22e405d", + "fields": { + "code_commune_insee": "52222", + "nom_de_la_commune": "GILLAUME", + "code_postal": "52230", + "coordonnees_gps": [ + 48.4693259695, + 5.34579090105 + ], + "libelle_d_acheminement": "GILLAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34579090105, + 48.4693259695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbd8900b98c0a1e40e611fa3434a8bf7a0d10225", + "fields": { + "code_commune_insee": "43222", + "nom_de_la_commune": "ST PRIVAT DU DRAGON", + "code_postal": "43380", + "coordonnees_gps": [ + 45.194796266, + 3.44322904217 + ], + "libelle_d_acheminement": "ST PRIVAT DU DRAGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44322904217, + 45.194796266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc856acb41d8dac9ef5a54b4a95b7a7c32509a29", + "fields": { + "code_commune_insee": "52230", + "nom_de_la_commune": "GUDMONT VILLIERS", + "code_postal": "52320", + "coordonnees_gps": [ + 48.3363931415, + 5.12108418016 + ], + "libelle_d_acheminement": "GUDMONT VILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12108418016, + 48.3363931415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14972f0ea2170f50cf8bf9fcfd38b286b6fa7b0c", + "fields": { + "code_commune_insee": "43225", + "nom_de_la_commune": "ST VENERAND", + "code_postal": "43580", + "coordonnees_gps": [ + 44.8753908292, + 3.67498479809 + ], + "libelle_d_acheminement": "ST VENERAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67498479809, + 44.8753908292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55d9498ff9688516b19bf9566344d59b620f6b16", + "fields": { + "code_commune_insee": "52233", + "nom_de_la_commune": "GUYONVELLE", + "code_postal": "52400", + "coordonnees_gps": [ + 47.8592079373, + 5.70929745857 + ], + "libelle_d_acheminement": "GUYONVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70929745857, + 47.8592079373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bde0ff5da45dbcc892b7512aee72acc876b4553", + "fields": { + "code_commune_insee": "43228", + "nom_de_la_commune": "ST VICTOR SUR ARLANC", + "code_postal": "43500", + "coordonnees_gps": [ + 45.3365023071, + 3.77629585977 + ], + "libelle_d_acheminement": "ST VICTOR SUR ARLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77629585977, + 45.3365023071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fe2a725da1ea7ca24ec8311fb6ad161f3fe3834", + "fields": { + "code_commune_insee": "52242", + "nom_de_la_commune": "HAUTE AMANCE", + "code_postal": "52600", + "coordonnees_gps": [ + 47.844980324, + 5.53371841027 + ], + "libelle_d_acheminement": "HAUTE AMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53371841027, + 47.844980324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ec3a686f5b65ba07a04db4e72062863f921973a", + "fields": { + "code_commune_insee": "43237", + "nom_de_la_commune": "SEMBADEL", + "code_postal": "43160", + "coordonnees_gps": [ + 45.2716430233, + 3.69436180182 + ], + "libelle_d_acheminement": "SEMBADEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69436180182, + 45.2716430233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77e625e2b283e792eff53f0b209266155e68abce", + "fields": { + "ligne_5": "SARCICOURT", + "code_commune_insee": "52251", + "libelle_d_acheminement": "JONCHERY", + "code_postal": "52000", + "nom_de_la_commune": "JONCHERY", + "coordonnees_gps": [ + 48.1516102771, + 5.07446482114 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07446482114, + 48.1516102771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c89ecc81488899f0c0fc92e0b46502c26626fd38", + "fields": { + "code_commune_insee": "43241", + "nom_de_la_commune": "SOLIGNAC SUR LOIRE", + "code_postal": "43370", + "coordonnees_gps": [ + 44.9577428375, + 3.88118652171 + ], + "libelle_d_acheminement": "SOLIGNAC SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88118652171, + 44.9577428375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e93bcfbf29c727094c6b26e83f476991608b72eb", + "fields": { + "code_commune_insee": "52253", + "nom_de_la_commune": "JUZENNECOURT", + "code_postal": "52330", + "coordonnees_gps": [ + 48.1928229786, + 4.98502788338 + ], + "libelle_d_acheminement": "JUZENNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98502788338, + 48.1928229786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5504c013bd0226370a4a910e98f6628d7593ca3", + "fields": { + "code_commune_insee": "43247", + "nom_de_la_commune": "TORSIAC", + "code_postal": "43450", + "coordonnees_gps": [ + 45.3520799718, + 3.19806819425 + ], + "libelle_d_acheminement": "TORSIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19806819425, + 45.3520799718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3a8ec952df33b60f45e19e4670f931c37a5f471", + "fields": { + "code_commune_insee": "52256", + "nom_de_la_commune": "LAFAUCHE", + "code_postal": "52700", + "coordonnees_gps": [ + 48.3053380759, + 5.49239986278 + ], + "libelle_d_acheminement": "LAFAUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49239986278, + 48.3053380759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd156d420b3a97ff04b45c9e0b9e14e4a18de7aa", + "fields": { + "code_commune_insee": "43249", + "nom_de_la_commune": "VALPRIVAS", + "code_postal": "43210", + "coordonnees_gps": [ + 45.3212577135, + 4.04688215633 + ], + "libelle_d_acheminement": "VALPRIVAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04688215633, + 45.3212577135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4e6ca4e35646acb2ece311ecf44c36ce033c425", + "fields": { + "code_commune_insee": "52257", + "nom_de_la_commune": "LAFERTE SUR AMANCE", + "code_postal": "52500", + "coordonnees_gps": [ + 47.8342467374, + 5.69549834249 + ], + "libelle_d_acheminement": "LAFERTE SUR AMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69549834249, + 47.8342467374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95495a2a7cf752232c6cbcee3a956b85789b9065", + "fields": { + "code_commune_insee": "43250", + "nom_de_la_commune": "VALS LE CHASTEL", + "code_postal": "43230", + "coordonnees_gps": [ + 45.2714155146, + 3.52832787466 + ], + "libelle_d_acheminement": "VALS LE CHASTEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52832787466, + 45.2714155146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "438d02d1d0266ef3c814b8b77a08495d99f9c9ea", + "fields": { + "ligne_5": "GOURZON", + "code_commune_insee": "52265", + "libelle_d_acheminement": "BAYARD SUR MARNE", + "code_postal": "52170", + "nom_de_la_commune": "BAYARD SUR MARNE", + "coordonnees_gps": [ + 48.5499615771, + 5.06880935835 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06880935835, + 48.5499615771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ec4a7b957f400a25fe82f28d3085c7e665937c2", + "fields": { + "code_commune_insee": "43252", + "nom_de_la_commune": "VARENNES ST HONORAT", + "code_postal": "43270", + "coordonnees_gps": [ + 45.1773120745, + 3.64466347824 + ], + "libelle_d_acheminement": "VARENNES ST HONORAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64466347824, + 45.1773120745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fe3405080b598643d1947fece99b74b35d56267", + "fields": { + "code_commune_insee": "52272", + "nom_de_la_commune": "LANTY SUR AUBE", + "code_postal": "52120", + "coordonnees_gps": [ + 48.0238372012, + 4.74848536778 + ], + "libelle_d_acheminement": "LANTY SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74848536778, + 48.0238372012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a24504d9d18796be1f8a0b65fc03a8014ba0a036", + "fields": { + "code_commune_insee": "44001", + "nom_de_la_commune": "ABBARETZ", + "code_postal": "44170", + "coordonnees_gps": [ + 47.5560384833, + -1.49327262094 + ], + "libelle_d_acheminement": "ABBARETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49327262094, + 47.5560384833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52ee20ef9ef7cddbb4a4e3a688b002744022d241", + "fields": { + "code_commune_insee": "52273", + "nom_de_la_commune": "LARIVIERE ARNONCOURT", + "code_postal": "52400", + "coordonnees_gps": [ + 48.0240430841, + 5.7182829587 + ], + "libelle_d_acheminement": "LARIVIERE ARNONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7182829587, + 48.0240430841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc83c663028ff24a1490938da175a1b03cefb0f0", + "fields": { + "code_commune_insee": "44015", + "nom_de_la_commune": "BLAIN", + "code_postal": "44130", + "coordonnees_gps": [ + 47.4628210409, + -1.76789479614 + ], + "libelle_d_acheminement": "BLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76789479614, + 47.4628210409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81526f65c6dbfd37849dcf065d682cf62406fc44", + "fields": { + "code_commune_insee": "52274", + "nom_de_la_commune": "LATRECEY ORMOY SUR AUBE", + "code_postal": "52120", + "coordonnees_gps": [ + 47.9862841495, + 4.84287471621 + ], + "libelle_d_acheminement": "LATRECEY ORMOY SUR AUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84287471621, + 47.9862841495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac2ba91ab04d73f122d91bbf7ef3caef922f644f", + "fields": { + "ligne_5": "ST EMILIEN DE BLAIN", + "code_commune_insee": "44015", + "libelle_d_acheminement": "BLAIN", + "code_postal": "44130", + "nom_de_la_commune": "BLAIN", + "coordonnees_gps": [ + 47.4628210409, + -1.76789479614 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76789479614, + 47.4628210409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53f46e2d1271ec188a21b5feb0cf887f8aa0709a", + "fields": { + "ligne_5": "ORMOY SUR AUBE", + "code_commune_insee": "52274", + "libelle_d_acheminement": "LATRECEY ORMOY SUR AUBE", + "code_postal": "52120", + "nom_de_la_commune": "LATRECEY ORMOY SUR AUBE", + "coordonnees_gps": [ + 47.9862841495, + 4.84287471621 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84287471621, + 47.9862841495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d05c9dcc34b8bae5702fb03ae1d5a120b9f00dd", + "fields": { + "code_commune_insee": "44019", + "nom_de_la_commune": "BOUEE", + "code_postal": "44260", + "coordonnees_gps": [ + 47.304903513, + -1.91266951692 + ], + "libelle_d_acheminement": "BOUEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.91266951692, + 47.304903513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f05b881e3fe2c80ad1f73fcdac7ba380c0968c4", + "fields": { + "code_commune_insee": "52285", + "nom_de_la_commune": "LEUCHEY", + "code_postal": "52190", + "coordonnees_gps": [ + 47.7280758728, + 5.21503608334 + ], + "libelle_d_acheminement": "LEUCHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21503608334, + 47.7280758728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d7b41f2b7cb5739b9fa37cec1ca1d3e7fd0f577", + "fields": { + "code_commune_insee": "44024", + "nom_de_la_commune": "BRAINS", + "code_postal": "44830", + "coordonnees_gps": [ + 47.1701591492, + -1.72606479691 + ], + "libelle_d_acheminement": "BRAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72606479691, + 47.1701591492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5c1b3ab90f8a83b3e87db1d3063fa6f40ef6563", + "fields": { + "code_commune_insee": "52287", + "nom_de_la_commune": "LEVECOURT", + "code_postal": "52150", + "coordonnees_gps": [ + 48.1358793289, + 5.56080225778 + ], + "libelle_d_acheminement": "LEVECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56080225778, + 48.1358793289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d5dc777c5a664262bcb55996103d2498fdce567", + "fields": { + "code_commune_insee": "44026", + "nom_de_la_commune": "CARQUEFOU", + "code_postal": "44470", + "coordonnees_gps": [ + 47.3017191833, + -1.47277200095 + ], + "libelle_d_acheminement": "CARQUEFOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47277200095, + 47.3017191833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd6aab6768219151cc21bb82470f30c2625f986d", + "fields": { + "ligne_5": "LANEUVILLE AU BOIS", + "code_commune_insee": "52288", + "libelle_d_acheminement": "LEZEVILLE", + "code_postal": "52230", + "nom_de_la_commune": "LEZEVILLE", + "coordonnees_gps": [ + 48.4275449909, + 5.39183251912 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39183251912, + 48.4275449909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65c7c9d4899a52da97300e2936bc74305dfa8b8f", + "fields": { + "code_commune_insee": "44027", + "nom_de_la_commune": "CASSON", + "code_postal": "44390", + "coordonnees_gps": [ + 47.3920308092, + -1.55573718805 + ], + "libelle_d_acheminement": "CASSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55573718805, + 47.3920308092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5107503a061b33af099ee0540ab9b9f55eda7cdd", + "fields": { + "code_commune_insee": "52290", + "nom_de_la_commune": "LES LOGES", + "code_postal": "52500", + "coordonnees_gps": [ + 47.7728373639, + 5.48522225072 + ], + "libelle_d_acheminement": "LES LOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48522225072, + 47.7728373639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ca66a84890877881d3b5f02167d4a9fe2db3619", + "fields": { + "code_commune_insee": "44033", + "nom_de_la_commune": "LA CHAPELLE LAUNAY", + "code_postal": "44260", + "coordonnees_gps": [ + 47.3530614373, + -1.98191491086 + ], + "libelle_d_acheminement": "LA CHAPELLE LAUNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98191491086, + 47.3530614373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db78c6507771f01ba4b212a8e2fd1a7cc7f2696b", + "fields": { + "ligne_5": "LONGEAU", + "code_commune_insee": "52292", + "libelle_d_acheminement": "LONGEAU PERCEY", + "code_postal": "52250", + "nom_de_la_commune": "LONGEAU PERCEY", + "coordonnees_gps": [ + 47.7600762777, + 5.31857922442 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31857922442, + 47.7600762777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e26471c59ae1f4dab3a899416becc196a0fdd84", + "fields": { + "code_commune_insee": "44035", + "nom_de_la_commune": "LA CHAPELLE SUR ERDRE", + "code_postal": "44240", + "coordonnees_gps": [ + 47.3035629617, + -1.56078596697 + ], + "libelle_d_acheminement": "LA CHAPELLE SUR ERDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56078596697, + 47.3035629617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e7392762aaa6b8d9ebf0e73bba17a1293bf6e2d", + "fields": { + "code_commune_insee": "52297", + "nom_de_la_commune": "LUZY SUR MARNE", + "code_postal": "52000", + "coordonnees_gps": [ + 48.0565587654, + 5.20017320213 + ], + "libelle_d_acheminement": "LUZY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20017320213, + 48.0565587654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9a43756b2f4c4af1e8021fab033854f7f9cca89", + "fields": { + "code_commune_insee": "44037", + "nom_de_la_commune": "CHATEAU THEBAUD", + "code_postal": "44690", + "coordonnees_gps": [ + 47.1158057933, + -1.43844838155 + ], + "libelle_d_acheminement": "CHATEAU THEBAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43844838155, + 47.1158057933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a948d34ccc9e87ab9594a4142e906133c48b43e", + "fields": { + "code_commune_insee": "52305", + "nom_de_la_commune": "MANDRES LA COTE", + "code_postal": "52800", + "coordonnees_gps": [ + 48.0688442092, + 5.33356686947 + ], + "libelle_d_acheminement": "MANDRES LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33356686947, + 48.0688442092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d0df81d37559f3e072152b2cfd604e12cf66953", + "fields": { + "code_commune_insee": "44039", + "nom_de_la_commune": "CHEIX EN RETZ", + "code_postal": "44640", + "coordonnees_gps": [ + 47.1811170912, + -1.79840995834 + ], + "libelle_d_acheminement": "CHEIX EN RETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.79840995834, + 47.1811170912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6af4f48f679d64d1501416971f9f9d53e591bfc", + "fields": { + "code_commune_insee": "52310", + "nom_de_la_commune": "MARBEVILLE", + "code_postal": "52320", + "coordonnees_gps": [ + 48.2625993866, + 5.02188488237 + ], + "libelle_d_acheminement": "MARBEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02188488237, + 48.2625993866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34cfb4facff354c9cd09f0cf0ad705820ffca5ae", + "fields": { + "code_commune_insee": "44045", + "nom_de_la_commune": "CORDEMAIS", + "code_postal": "44360", + "coordonnees_gps": [ + 47.2968036073, + -1.8357108105 + ], + "libelle_d_acheminement": "CORDEMAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8357108105, + 47.2968036073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74833665047df6ced75cd63fe47bd46c2c6d5ba7", + "fields": { + "code_commune_insee": "52311", + "nom_de_la_commune": "MARCILLY EN BASSIGNY", + "code_postal": "52360", + "coordonnees_gps": [ + 47.8872207822, + 5.54794700045 + ], + "libelle_d_acheminement": "MARCILLY EN BASSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54794700045, + 47.8872207822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bed2642902b921168d7db857ce03e2588c6949f", + "fields": { + "code_commune_insee": "44046", + "nom_de_la_commune": "CORSEPT", + "code_postal": "44560", + "coordonnees_gps": [ + 47.2600100383, + -2.09386404628 + ], + "libelle_d_acheminement": "CORSEPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09386404628, + 47.2600100383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c407710a9e576b218bc443b9923f482c4b340f33", + "fields": { + "code_commune_insee": "52312", + "nom_de_la_commune": "MARDOR", + "code_postal": "52200", + "coordonnees_gps": [ + 47.8839324283, + 5.20979926063 + ], + "libelle_d_acheminement": "MARDOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20979926063, + 47.8839324283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9191e6d20d94e708b2fba42f7f5233072f530acc", + "fields": { + "code_commune_insee": "44048", + "nom_de_la_commune": "COUFFE", + "code_postal": "44521", + "coordonnees_gps": [ + 47.3885628195, + -1.29271841264 + ], + "libelle_d_acheminement": "COUFFE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29271841264, + 47.3885628195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73368b1fe2abb1ed875f7196325265ce576c5596", + "fields": { + "code_commune_insee": "52313", + "nom_de_la_commune": "MAREILLES", + "code_postal": "52700", + "coordonnees_gps": [ + 48.1744777134, + 5.26234657635 + ], + "libelle_d_acheminement": "MAREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26234657635, + 48.1744777134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b22ba2f1e7ffa90bd68c316c0c3c1c7e0fc190b3", + "fields": { + "code_commune_insee": "44052", + "nom_de_la_commune": "DONGES", + "code_postal": "44480", + "coordonnees_gps": [ + 47.3392097617, + -2.0741602335 + ], + "libelle_d_acheminement": "DONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.0741602335, + 47.3392097617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f15456f4ca7dc37c2f672edb83350abdf115662", + "fields": { + "code_commune_insee": "52318", + "nom_de_la_commune": "MELAY", + "code_postal": "52400", + "coordonnees_gps": [ + 47.8934170946, + 5.81934321302 + ], + "libelle_d_acheminement": "MELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81934321302, + 47.8934170946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "975102247f99f09a0369801c32008d0de05c29ea", + "fields": { + "code_commune_insee": "44055", + "nom_de_la_commune": "LA BAULE ESCOUBLAC", + "code_postal": "44500", + "coordonnees_gps": [ + 47.2909720179, + -2.3538291745 + ], + "libelle_d_acheminement": "LA BAULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.3538291745, + 47.2909720179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9860c760176dd8bfd695a294563cc8d9c46e2554", + "fields": { + "code_commune_insee": "52322", + "nom_de_la_commune": "MEURES", + "code_postal": "52310", + "coordonnees_gps": [ + 48.1878659479, + 5.06166389383 + ], + "libelle_d_acheminement": "MEURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06166389383, + 48.1878659479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f05ea4aca4a560c6a37166bcd5e96e27b23371c1", + "fields": { + "ligne_5": "BESLE SUR VILAINE", + "code_commune_insee": "44067", + "libelle_d_acheminement": "GUEMENE PENFAO", + "code_postal": "44290", + "nom_de_la_commune": "GUEMENE PENFAO", + "coordonnees_gps": [ + 47.6278891238, + -1.83077595154 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.83077595154, + 47.6278891238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93f163f567b9640ed35b8f90202e6729cfc4f4d3", + "fields": { + "code_commune_insee": "52326", + "nom_de_la_commune": "MIRBEL", + "code_postal": "52320", + "coordonnees_gps": [ + 48.2896692671, + 5.04080217069 + ], + "libelle_d_acheminement": "MIRBEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04080217069, + 48.2896692671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "291a4bf4535d2487b0f4445ae854591de9d7f351", + "fields": { + "code_commune_insee": "44072", + "nom_de_la_commune": "HERBIGNAC", + "code_postal": "44410", + "coordonnees_gps": [ + 47.4472411995, + -2.31338629512 + ], + "libelle_d_acheminement": "HERBIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.31338629512, + 47.4472411995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1515c556e196b94ba1d1e371b51ac3bf0de67bf5", + "fields": { + "ligne_5": "MONTIER EN DER", + "code_commune_insee": "52331", + "libelle_d_acheminement": "LA PORTE DU DER", + "code_postal": "52220", + "nom_de_la_commune": "LA PORTE DU DER", + "coordonnees_gps": [ + 48.4874732749, + 4.78668890124 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78668890124, + 48.4874732749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "407c7367eb1d30340918219db05b871eb2d33623", + "fields": { + "ligne_5": "HAUTE INDRE", + "code_commune_insee": "44074", + "libelle_d_acheminement": "INDRE", + "code_postal": "44610", + "nom_de_la_commune": "INDRE", + "coordonnees_gps": [ + 47.1985008197, + -1.6717810311 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6717810311, + 47.1985008197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95b00d6665d1104d215b8a3886a7af8a85a188ac", + "fields": { + "code_commune_insee": "52335", + "nom_de_la_commune": "MONTOT SUR ROGNON", + "code_postal": "52700", + "coordonnees_gps": [ + 48.2846391815, + 5.29631206011 + ], + "libelle_d_acheminement": "MONTOT SUR ROGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29631206011, + 48.2846391815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dfa668e97dd518d1191bc4372aba2a55f0609e0", + "fields": { + "code_commune_insee": "44078", + "nom_de_la_commune": "JUIGNE DES MOUTIERS", + "code_postal": "44670", + "coordonnees_gps": [ + 47.689317272, + -1.21237889264 + ], + "libelle_d_acheminement": "JUIGNE DES MOUTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21237889264, + 47.689317272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec5f6cca7087a541b2b569abb1542c67b7304e0c", + "fields": { + "code_commune_insee": "52348", + "nom_de_la_commune": "NEUILLY L EVEQUE", + "code_postal": "52360", + "coordonnees_gps": [ + 47.9193052066, + 5.43856285337 + ], + "libelle_d_acheminement": "NEUILLY L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.43856285337, + 47.9193052066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "640ae1c48f8c80f38cf45f9cc0b67016fbca4454", + "fields": { + "code_commune_insee": "44084", + "nom_de_la_commune": "LE LOROUX BOTTEREAU", + "code_postal": "44430", + "coordonnees_gps": [ + 47.2333976166, + -1.33170187264 + ], + "libelle_d_acheminement": "LE LOROUX BOTTEREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33170187264, + 47.2333976166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34ad4d24cf439e13b516de8ccc1c83d79a06dae7", + "fields": { + "code_commune_insee": "52358", + "nom_de_la_commune": "NOYERS", + "code_postal": "52240", + "coordonnees_gps": [ + 48.0613888303, + 5.48533764002 + ], + "libelle_d_acheminement": "NOYERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48533764002, + 48.0613888303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71cfdc37510b994bb6f45022b599e8f7ffa60896", + "fields": { + "code_commune_insee": "44086", + "nom_de_la_commune": "LUSANGER", + "code_postal": "44590", + "coordonnees_gps": [ + 47.6764268397, + -1.58177485033 + ], + "libelle_d_acheminement": "LUSANGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58177485033, + 47.6764268397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d7d681c13ca55d54a6b34c6778fa5fe3be9a9d9", + "fields": { + "code_commune_insee": "52359", + "nom_de_la_commune": "NULLY", + "code_postal": "52110", + "coordonnees_gps": [ + 48.3704679464, + 4.81456093137 + ], + "libelle_d_acheminement": "NULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81456093137, + 48.3704679464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8690e18da64cb3339906b55f1d64338509b0f1f4", + "fields": { + "code_commune_insee": "44088", + "nom_de_la_commune": "MAISDON SUR SEVRE", + "code_postal": "44690", + "coordonnees_gps": [ + 47.116363643, + -1.38887040907 + ], + "libelle_d_acheminement": "MAISDON SUR SEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38887040907, + 47.116363643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b16a17a7b37cd61456d84ef0a9fdc09a5d929c33", + "fields": { + "code_commune_insee": "52362", + "nom_de_la_commune": "ORBIGNY AU MONT", + "code_postal": "52360", + "coordonnees_gps": [ + 47.8851114034, + 5.46238446053 + ], + "libelle_d_acheminement": "ORBIGNY AU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46238446053, + 47.8851114034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1735e4c1b44f3f07a86a8a90191067d51bd7f58c", + "fields": { + "code_commune_insee": "44096", + "nom_de_la_commune": "MESANGER", + "code_postal": "44522", + "coordonnees_gps": [ + 47.4288834101, + -1.22583390119 + ], + "libelle_d_acheminement": "MESANGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22583390119, + 47.4288834101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f382df5d0041dd2a711a80eba2f4f6b6fe6ade3", + "fields": { + "code_commune_insee": "52376", + "nom_de_la_commune": "PANSEY", + "code_postal": "52230", + "coordonnees_gps": [ + 48.4772456107, + 5.28155771235 + ], + "libelle_d_acheminement": "PANSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28155771235, + 48.4772456107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8abf7663c1e3bc5581dd86d9fa0a4cd8f3038dda", + "fields": { + "code_commune_insee": "44100", + "nom_de_la_commune": "MONNIERES", + "code_postal": "44690", + "coordonnees_gps": [ + 47.1202035218, + -1.34924956417 + ], + "libelle_d_acheminement": "MONNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34924956417, + 47.1202035218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9559d96b449b140e2ce5259d9d582785c17716be", + "fields": { + "code_commune_insee": "52378", + "nom_de_la_commune": "PAROY SUR SAULX", + "code_postal": "52300", + "coordonnees_gps": [ + 48.5149155599, + 5.24765880237 + ], + "libelle_d_acheminement": "PAROY SUR SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24765880237, + 48.5149155599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "effef0a6ed2ef8aa4dc353003f80501635144f07", + "fields": { + "code_commune_insee": "44101", + "nom_de_la_commune": "LA MONTAGNE", + "code_postal": "44620", + "coordonnees_gps": [ + 47.1849548503, + -1.6848281963 + ], + "libelle_d_acheminement": "LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6848281963, + 47.1849548503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d821ecf84e5cb1f6413b3530972f677c6b35eef9", + "fields": { + "code_commune_insee": "52384", + "nom_de_la_commune": "PERROGNEY LES FONTAINES", + "code_postal": "52160", + "coordonnees_gps": [ + 47.8046627431, + 5.20244650135 + ], + "libelle_d_acheminement": "PERROGNEY LES FONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20244650135, + 47.8046627431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e0d545e2cfeac2527291ced1462da8116927b88", + "fields": { + "code_commune_insee": "44116", + "nom_de_la_commune": "PAIMBOEUF", + "code_postal": "44560", + "coordonnees_gps": [ + 47.2863992883, + -2.02807425552 + ], + "libelle_d_acheminement": "PAIMBOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.02807425552, + 47.2863992883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d05c5133e8aa70a0081c9ee3b6928604f1ac515b", + "fields": { + "ligne_5": "MONTSAUGEON", + "code_commune_insee": "52405", + "libelle_d_acheminement": "LE MONTSAUGEONNAIS", + "code_postal": "52190", + "nom_de_la_commune": "LE MONTSAUGEONNAIS", + "coordonnees_gps": [ + 47.6875295793, + 5.2920187848 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2920187848, + 47.6875295793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2cf937445e40dddb628c40398712d97ec2275de", + "fields": { + "code_commune_insee": "44126", + "nom_de_la_commune": "LA PLAINE SUR MER", + "code_postal": "44770", + "coordonnees_gps": [ + 47.1443222693, + -2.18345496077 + ], + "libelle_d_acheminement": "LA PLAINE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.18345496077, + 47.1443222693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4919c6a8cc9afb5de811f846e0474eb5d0188d06", + "fields": { + "code_commune_insee": "52414", + "nom_de_la_commune": "RACHECOURT SUR MARNE", + "code_postal": "52170", + "coordonnees_gps": [ + 48.5190528546, + 5.0924613247 + ], + "libelle_d_acheminement": "RACHECOURT SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0924613247, + 48.5190528546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d5f577cff768e696a13bbceaeb774cfae3d71f1", + "fields": { + "code_commune_insee": "44127", + "nom_de_la_commune": "LA PLANCHE", + "code_postal": "44140", + "coordonnees_gps": [ + 47.0198919821, + -1.4401309566 + ], + "libelle_d_acheminement": "LA PLANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4401309566, + 47.0198919821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6904d9161983451c558f1c459cba64eee06601f8", + "fields": { + "code_commune_insee": "52419", + "nom_de_la_commune": "RENNEPONT", + "code_postal": "52370", + "coordonnees_gps": [ + 48.1641670802, + 4.85864447421 + ], + "libelle_d_acheminement": "RENNEPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85864447421, + 48.1641670802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e6f236b46c7cb7484616eeb7cf9e2a0aa4ea17f", + "fields": { + "code_commune_insee": "44129", + "nom_de_la_commune": "PONTCHATEAU", + "code_postal": "44160", + "coordonnees_gps": [ + 47.433636363, + -2.09556089039 + ], + "libelle_d_acheminement": "PONTCHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09556089039, + 47.433636363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a2137a544b813ff83f994d4ad461eb495591e13", + "fields": { + "code_commune_insee": "52425", + "nom_de_la_commune": "RIVIERE LES FOSSES", + "code_postal": "52190", + "coordonnees_gps": [ + 47.6496133771, + 5.22678234152 + ], + "libelle_d_acheminement": "RIVIERE LES FOSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.22678234152, + 47.6496133771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "684ad85ace3d216b8a18612a21a8f505f7b18815", + "fields": { + "code_commune_insee": "44137", + "nom_de_la_commune": "PRINQUIAU", + "code_postal": "44260", + "coordonnees_gps": [ + 47.3735148609, + -2.01845241954 + ], + "libelle_d_acheminement": "PRINQUIAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01845241954, + 47.3735148609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a00df1996142c7dcaf0feec65328818179e470c8", + "fields": { + "code_commune_insee": "52426", + "nom_de_la_commune": "RIZAUCOURT BUCHEY", + "code_postal": "52330", + "coordonnees_gps": [ + 48.2744216566, + 4.86924772223 + ], + "libelle_d_acheminement": "RIZAUCOURT BUCHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86924772223, + 48.2744216566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e1d556fe15dd6911548e08703a7672b8724bf12", + "fields": { + "code_commune_insee": "44144", + "nom_de_la_commune": "RIAILLE", + "code_postal": "44440", + "coordonnees_gps": [ + 47.5209726669, + -1.31205698332 + ], + "libelle_d_acheminement": "RIAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31205698332, + 47.5209726669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad692394a2f1a019c021bbadaf47d3e77539de76", + "fields": { + "ligne_5": "BUCHEY", + "code_commune_insee": "52426", + "libelle_d_acheminement": "RIZAUCOURT BUCHEY", + "code_postal": "52330", + "nom_de_la_commune": "RIZAUCOURT BUCHEY", + "coordonnees_gps": [ + 48.2744216566, + 4.86924772223 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86924772223, + 48.2744216566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d306cdd90a6b5cfa38efcee55216b25ba4734ff", + "fields": { + "code_commune_insee": "44149", + "nom_de_la_commune": "SAFFRE", + "code_postal": "44390", + "coordonnees_gps": [ + 47.4914246553, + -1.57940883784 + ], + "libelle_d_acheminement": "SAFFRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57940883784, + 47.4914246553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83c45023d72f124f1b7b6da42806420d1b1435be", + "fields": { + "code_commune_insee": "52432", + "nom_de_la_commune": "ROLAMPONT", + "code_postal": "52260", + "coordonnees_gps": [ + 47.9506169361, + 5.30859356776 + ], + "libelle_d_acheminement": "ROLAMPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30859356776, + 47.9506169361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48325d97759ea08d0d2e58594e63403323dccfcd", + "fields": { + "code_commune_insee": "44152", + "nom_de_la_commune": "STE ANNE SUR BRIVET", + "code_postal": "44160", + "coordonnees_gps": [ + 47.4517932363, + -2.01858894478 + ], + "libelle_d_acheminement": "STE ANNE SUR BRIVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.01858894478, + 47.4517932363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ef38728632d873c563a2b712cc922f90865b47", + "fields": { + "code_commune_insee": "52449", + "nom_de_la_commune": "SAINTS GEOSMES", + "code_postal": "52200", + "coordonnees_gps": [ + 47.8274545004, + 5.31702793629 + ], + "libelle_d_acheminement": "SAINTS GEOSMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31702793629, + 47.8274545004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a8e99ceafb9988007526ad1189a6453b60e3b97", + "fields": { + "code_commune_insee": "44154", + "nom_de_la_commune": "ST BREVIN LES PINS", + "code_postal": "44250", + "coordonnees_gps": [ + 47.2380057754, + -2.1516650013 + ], + "libelle_d_acheminement": "ST BREVIN LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1516650013, + 47.2380057754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aaf6ec21ce3909e120de49c671ea6b2193f0034", + "fields": { + "code_commune_insee": "52457", + "nom_de_la_commune": "ST VALLIER SUR MARNE", + "code_postal": "52200", + "coordonnees_gps": [ + 47.8347894371, + 5.40182533022 + ], + "libelle_d_acheminement": "ST VALLIER SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40182533022, + 47.8347894371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c458fb168126e45397908003163be1375efaec26", + "fields": { + "code_commune_insee": "44155", + "nom_de_la_commune": "ST COLOMBAN", + "code_postal": "44310", + "coordonnees_gps": [ + 47.0251492396, + -1.55906118865 + ], + "libelle_d_acheminement": "ST COLOMBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55906118865, + 47.0251492396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcfe0f742a99c760942bd026afdc5d8738e4693c", + "fields": { + "code_commune_insee": "52464", + "nom_de_la_commune": "SAULLES", + "code_postal": "52500", + "coordonnees_gps": [ + 47.7012031937, + 5.52842395456 + ], + "libelle_d_acheminement": "SAULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52842395456, + 47.7012031937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "decfd4c20ec68ecaa43df4ead4f39ac9ca5c9a30", + "fields": { + "ligne_5": "PONT JAMES", + "code_commune_insee": "44155", + "libelle_d_acheminement": "ST COLOMBAN", + "code_postal": "44310", + "nom_de_la_commune": "ST COLOMBAN", + "coordonnees_gps": [ + 47.0251492396, + -1.55906118865 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55906118865, + 47.0251492396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "629d8682dddae78b28824d62511c2dffbbf905dc", + "fields": { + "code_commune_insee": "52465", + "nom_de_la_commune": "SAULXURES", + "code_postal": "52140", + "coordonnees_gps": [ + 47.955255252, + 5.57978520657 + ], + "libelle_d_acheminement": "SAULXURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57978520657, + 47.955255252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a57d5644481315e84c891261dd763669b124fb3", + "fields": { + "code_commune_insee": "44162", + "nom_de_la_commune": "ST HERBLAIN", + "code_postal": "44800", + "coordonnees_gps": [ + 47.2243762412, + -1.63434818692 + ], + "libelle_d_acheminement": "ST HERBLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63434818692, + 47.2243762412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9306d91e107d30c3a8b92568deb2bd7b7c78bf62", + "fields": { + "code_commune_insee": "52476", + "nom_de_la_commune": "SOMMERECOURT", + "code_postal": "52150", + "coordonnees_gps": [ + 48.2241761343, + 5.65159771886 + ], + "libelle_d_acheminement": "SOMMERECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65159771886, + 48.2241761343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6105c381ae2fee6e16dc0f9039a926501b85341d", + "fields": { + "ligne_5": "ANETZ", + "code_commune_insee": "44163", + "libelle_d_acheminement": "VAIR SUR LOIRE", + "code_postal": "44150", + "nom_de_la_commune": "VAIR SUR LOIRE", + "coordonnees_gps": [ + 47.4063801215, + -1.11538134874 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.11538134874, + 47.4063801215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ee81395fded3572c44402de2277a653f0c07ad9", + "fields": { + "code_commune_insee": "52483", + "nom_de_la_commune": "SOYERS", + "code_postal": "52400", + "coordonnees_gps": [ + 47.8695105416, + 5.69390932987 + ], + "libelle_d_acheminement": "SOYERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69390932987, + 47.8695105416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81ea4f8093352f694c4e2f7a6a5a5f184025e9eb", + "fields": { + "code_commune_insee": "44164", + "nom_de_la_commune": "ST HILAIRE DE CHALEONS", + "code_postal": "44680", + "coordonnees_gps": [ + 47.0958948849, + -1.87983637967 + ], + "libelle_d_acheminement": "ST HILAIRE DE CHALEONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.87983637967, + 47.0958948849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c4227cff1adb37ff961b9f520e98a7e35b144dd", + "fields": { + "code_commune_insee": "52491", + "nom_de_la_commune": "THONNANCE LES MOULINS", + "code_postal": "52230", + "coordonnees_gps": [ + 48.4195754486, + 5.31434602015 + ], + "libelle_d_acheminement": "THONNANCE LES MOULINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31434602015, + 48.4195754486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dde5fb5433f46cf8933b3de10109c55f2116ef8", + "fields": { + "code_commune_insee": "44166", + "nom_de_la_commune": "ST JEAN DE BOISEAU", + "code_postal": "44640", + "coordonnees_gps": [ + 47.1940918482, + -1.71963718328 + ], + "libelle_d_acheminement": "ST JEAN DE BOISEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.71963718328, + 47.1940918482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a440b99d8af8ad7942d9331bcbb45f6046dde5b", + "fields": { + "ligne_5": "BROUTHIERES", + "code_commune_insee": "52491", + "libelle_d_acheminement": "THONNANCE LES MOULINS", + "code_postal": "52230", + "nom_de_la_commune": "THONNANCE LES MOULINS", + "coordonnees_gps": [ + 48.4195754486, + 5.31434602015 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31434602015, + 48.4195754486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5201312262b10e0bed0e063fd139da2c523d1a30", + "fields": { + "code_commune_insee": "44174", + "nom_de_la_commune": "ST LUMINE DE COUTAIS", + "code_postal": "44310", + "coordonnees_gps": [ + 47.0525345648, + -1.72353750567 + ], + "libelle_d_acheminement": "ST LUMINE DE COUTAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72353750567, + 47.0525345648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29038a930af93f1ab42a28ed401f8ffd9f75b063", + "fields": { + "code_commune_insee": "52503", + "nom_de_la_commune": "VALLEROY", + "code_postal": "52500", + "coordonnees_gps": [ + 47.6979256201, + 5.66002905454 + ], + "libelle_d_acheminement": "VALLEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66002905454, + 47.6979256201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a35a755b4fefc88e7f43ac5a660ab1e1fd6edfc", + "fields": { + "code_commune_insee": "44175", + "nom_de_la_commune": "ST LYPHARD", + "code_postal": "44410", + "coordonnees_gps": [ + 47.3781648768, + -2.33524206651 + ], + "libelle_d_acheminement": "ST LYPHARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.33524206651, + 47.3781648768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c240874b2bdc76fce31787a865d54f67c8f2e7a2", + "fields": { + "code_commune_insee": "52514", + "nom_de_la_commune": "VERBIESLES", + "code_postal": "52000", + "coordonnees_gps": [ + 48.0755954132, + 5.18833921357 + ], + "libelle_d_acheminement": "VERBIESLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18833921357, + 48.0755954132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae9ec7d24cee630f4d4014143920bb0c238863ec", + "fields": { + "ligne_5": "BONNOEUVRE", + "code_commune_insee": "44180", + "libelle_d_acheminement": "VALLONS DE L ERDRE", + "code_postal": "44540", + "nom_de_la_commune": "VALLONS DE L ERDRE", + "coordonnees_gps": [ + 47.5309227299, + -1.19441075506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19441075506, + 47.5309227299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3a37941133c6f6c3507bb7812c62b757ce7dee9", + "fields": { + "code_commune_insee": "52517", + "nom_de_la_commune": "VESAIGNES SOUS LAFAUCHE", + "code_postal": "52700", + "coordonnees_gps": [ + 48.284900446, + 5.44400289784 + ], + "libelle_d_acheminement": "VESAIGNES SOUS LAFAUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44400289784, + 48.284900446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b203a348e54ada5f6a9c7e18ab751f34ebac8920", + "fields": { + "ligne_5": "ST MARS LA JAILLE", + "code_commune_insee": "44180", + "libelle_d_acheminement": "VALLONS DE L ERDRE", + "code_postal": "44540", + "nom_de_la_commune": "VALLONS DE L ERDRE", + "coordonnees_gps": [ + 47.5309227299, + -1.19441075506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19441075506, + 47.5309227299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "614460a447c3926eeb8ae53cc3282649fc36c92c", + "fields": { + "code_commune_insee": "52526", + "nom_de_la_commune": "VILLARS SANTENOGE", + "code_postal": "52160", + "coordonnees_gps": [ + 47.744268654, + 4.99918998244 + ], + "libelle_d_acheminement": "VILLARS SANTENOGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99918998244, + 47.744268654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86d8a80a7b522b8672646c400b0306aace017a71", + "fields": { + "ligne_5": "ST SULPICE DES LANDES", + "code_commune_insee": "44180", + "libelle_d_acheminement": "VALLONS DE L ERDRE", + "code_postal": "44540", + "nom_de_la_commune": "VALLONS DE L ERDRE", + "coordonnees_gps": [ + 47.5309227299, + -1.19441075506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19441075506, + 47.5309227299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "925c64434260c638f9ef0f64bc6ec4c867ab2b4d", + "fields": { + "ligne_5": "SANTENOGE", + "code_commune_insee": "52526", + "libelle_d_acheminement": "VILLARS SANTENOGE", + "code_postal": "52160", + "nom_de_la_commune": "VILLARS SANTENOGE", + "coordonnees_gps": [ + 47.744268654, + 4.99918998244 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99918998244, + 47.744268654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5024169e284c42591c38b408c33f398225e210ef", + "fields": { + "ligne_5": "VRITZ", + "code_commune_insee": "44180", + "libelle_d_acheminement": "VALLONS DE L ERDRE", + "code_postal": "44540", + "nom_de_la_commune": "VALLONS DE L ERDRE", + "coordonnees_gps": [ + 47.5309227299, + -1.19441075506 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19441075506, + 47.5309227299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9688357fa57673058708effd293e576d4b4b2ce", + "fields": { + "ligne_5": "PRANGEY", + "code_commune_insee": "52529", + "libelle_d_acheminement": "VILLEGUSIEN LE LAC", + "code_postal": "52190", + "nom_de_la_commune": "VILLEGUSIEN LE LAC", + "coordonnees_gps": [ + 47.7309169271, + 5.31298003747 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31298003747, + 47.7309169271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "521967178afff829d1a4b07225b957ba1735704f", + "fields": { + "code_commune_insee": "44195", + "nom_de_la_commune": "SAVENAY", + "code_postal": "44260", + "coordonnees_gps": [ + 47.3570647854, + -1.91842119102 + ], + "libelle_d_acheminement": "SAVENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.91842119102, + 47.3570647854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dae482c5a33c82ae661e6546c33a3b833c084da4", + "fields": { + "code_commune_insee": "52534", + "nom_de_la_commune": "VILLIERS EN LIEU", + "code_postal": "52100", + "coordonnees_gps": [ + 48.6683263529, + 4.90563674583 + ], + "libelle_d_acheminement": "VILLIERS EN LIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90563674583, + 48.6683263529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "faeeed3a043706f5d3ba72ca3b50ae9badbbdf8a", + "fields": { + "code_commune_insee": "44199", + "nom_de_la_commune": "SOUDAN", + "code_postal": "44110", + "coordonnees_gps": [ + 47.7255705926, + -1.29052393382 + ], + "libelle_d_acheminement": "SOUDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29052393382, + 47.7255705926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fea9b5a5921c35ca470e66f77d1105f9ce65e4f", + "fields": { + "code_commune_insee": "52535", + "nom_de_la_commune": "VILLIERS LE SEC", + "code_postal": "52000", + "coordonnees_gps": [ + 48.1017851333, + 5.07195698997 + ], + "libelle_d_acheminement": "VILLIERS LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07195698997, + 48.1017851333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3934a5816209df77ee6fd78eaa0c164d1ef485cf", + "fields": { + "ligne_5": "LA ROUXIERE", + "code_commune_insee": "44213", + "libelle_d_acheminement": "LOIREAUXENCE", + "code_postal": "44370", + "nom_de_la_commune": "LOIREAUXENCE", + "coordonnees_gps": [ + 47.4023133343, + -1.0243274407 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0243274407, + 47.4023133343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "872a403c17d9b6357664b09533e4de3813d3fcc8", + "fields": { + "code_commune_insee": "52540", + "nom_de_la_commune": "VITRY EN MONTAGNE", + "code_postal": "52160", + "coordonnees_gps": [ + 47.8259360589, + 5.0931358206 + ], + "libelle_d_acheminement": "VITRY EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0931358206, + 47.8259360589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c12d75602427a83a1b5c0f99d0148df5f6ef929", + "fields": { + "code_commune_insee": "44214", + "nom_de_la_commune": "VAY", + "code_postal": "44170", + "coordonnees_gps": [ + 47.5453431813, + -1.70810408082 + ], + "libelle_d_acheminement": "VAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.70810408082, + 47.5453431813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab367ea9ed4ac1c0a7f803bd853ffd076380df0b", + "fields": { + "code_commune_insee": "52544", + "nom_de_la_commune": "VOISEY", + "code_postal": "52400", + "coordonnees_gps": [ + 47.8788477448, + 5.76399198551 + ], + "libelle_d_acheminement": "VOISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76399198551, + 47.8788477448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "912a9c5c3526598bff485169b4faa09330047957", + "fields": { + "ligne_5": "BEAUTOUR", + "code_commune_insee": "44215", + "libelle_d_acheminement": "VERTOU", + "code_postal": "44120", + "nom_de_la_commune": "VERTOU", + "coordonnees_gps": [ + 47.1603732625, + -1.47052291749 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47052291749, + 47.1603732625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5208958248a0637b2511fb76ba7c91f89cc48b03", + "fields": { + "ligne_5": "VAUX LA DOUCE", + "code_commune_insee": "52544", + "libelle_d_acheminement": "VOISEY", + "code_postal": "52400", + "nom_de_la_commune": "VOISEY", + "coordonnees_gps": [ + 47.8788477448, + 5.76399198551 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76399198551, + 47.8788477448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e004aaca1f3895dd42d4d0e46d8fc0835d3b5a2", + "fields": { + "code_commune_insee": "44217", + "nom_de_la_commune": "VIGNEUX DE BRETAGNE", + "code_postal": "44360", + "coordonnees_gps": [ + 47.3196231868, + -1.72042944177 + ], + "libelle_d_acheminement": "VIGNEUX DE BRETAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72042944177, + 47.3196231868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b51d5271842b116c0c4dffecbb18950fda29bea7", + "fields": { + "code_commune_insee": "52549", + "nom_de_la_commune": "VRONCOURT LA COTE", + "code_postal": "52240", + "coordonnees_gps": [ + 48.1465009681, + 5.51317198706 + ], + "libelle_d_acheminement": "VRONCOURT LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51317198706, + 48.1465009681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c7cf5de4b7e7be28f2e23eabe359c6b0d440d39", + "fields": { + "ligne_5": "LA PAQUELAIS", + "code_commune_insee": "44217", + "libelle_d_acheminement": "VIGNEUX DE BRETAGNE", + "code_postal": "44360", + "nom_de_la_commune": "VIGNEUX DE BRETAGNE", + "coordonnees_gps": [ + 47.3196231868, + -1.72042944177 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72042944177, + 47.3196231868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88cd3bb92deb5a6e04b7aec4f25552ee9b5e6562", + "fields": { + "code_commune_insee": "53002", + "nom_de_la_commune": "ALEXAIN", + "code_postal": "53240", + "coordonnees_gps": [ + 48.2320714529, + -0.735727853569 + ], + "libelle_d_acheminement": "ALEXAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.735727853569, + 48.2320714529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad7a3e78f7adcf4cdf9f0d6431d62ac42af2edc4", + "fields": { + "code_commune_insee": "44222", + "nom_de_la_commune": "LA ROCHE BLANCHE", + "code_postal": "44522", + "coordonnees_gps": [ + 47.4377425248, + -1.14429842548 + ], + "libelle_d_acheminement": "LA ROCHE BLANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14429842548, + 47.4377425248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc2a981ae7776a06a3c873d115848af826921c61", + "fields": { + "code_commune_insee": "53005", + "nom_de_la_commune": "ANDOUILLE", + "code_postal": "53240", + "coordonnees_gps": [ + 48.1771432995, + -0.792693064482 + ], + "libelle_d_acheminement": "ANDOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.792693064482, + 48.1771432995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95fb113fb4e0f390b334dfab17a4afc171574713", + "fields": { + "code_commune_insee": "45001", + "nom_de_la_commune": "ADON", + "code_postal": "45230", + "coordonnees_gps": [ + 47.7642683732, + 2.7978849949 + ], + "libelle_d_acheminement": "ADON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7978849949, + 47.7642683732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5dda8fda213a5b054231e062ea5515ea10241f8", + "fields": { + "code_commune_insee": "53019", + "nom_de_la_commune": "BANNES", + "code_postal": "53340", + "coordonnees_gps": [ + 47.9849130159, + -0.35128628671 + ], + "libelle_d_acheminement": "BANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35128628671, + 47.9849130159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94569fd5b5234aa4768e5c9e563d49e76acea478", + "fields": { + "code_commune_insee": "45011", + "nom_de_la_commune": "ATTRAY", + "code_postal": "45170", + "coordonnees_gps": [ + 48.1198576861, + 2.13126925085 + ], + "libelle_d_acheminement": "ATTRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13126925085, + 48.1198576861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2fd7bdaaf22bd542e1a4eed3165896967393a9e", + "fields": { + "code_commune_insee": "53021", + "nom_de_la_commune": "LA BAZOGE MONTPINCON", + "code_postal": "53440", + "coordonnees_gps": [ + 48.2714381316, + -0.58389369345 + ], + "libelle_d_acheminement": "LA BAZOGE MONTPINCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58389369345, + 48.2714381316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "896326bf70cebcd25e77a610c32a1d798d18018c", + "fields": { + "code_commune_insee": "45013", + "nom_de_la_commune": "AUGERVILLE LA RIVIERE", + "code_postal": "45330", + "coordonnees_gps": [ + 48.2530425199, + 2.41870995196 + ], + "libelle_d_acheminement": "AUGERVILLE LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41870995196, + 48.2530425199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4729ec8c19a2c438fbec9c682400451102ebb7ac", + "fields": { + "code_commune_insee": "53027", + "nom_de_la_commune": "BEAUMONT PIED DE BOEUF", + "code_postal": "53290", + "coordonnees_gps": [ + 47.9084771781, + -0.440801679102 + ], + "libelle_d_acheminement": "BEAUMONT PIED DE BOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.440801679102, + 47.9084771781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e2861489caefb466d6d7d8f51c8f860f247f235", + "fields": { + "code_commune_insee": "45015", + "nom_de_la_commune": "AUTRUY SUR JUINE", + "code_postal": "45480", + "coordonnees_gps": [ + 48.2768020165, + 2.09163157788 + ], + "libelle_d_acheminement": "AUTRUY SUR JUINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09163157788, + 48.2768020165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6a1649196d38f7b4643ecc2d849d722bd67f9ff", + "fields": { + "ligne_5": "ST LAURENT DES MORTIERS", + "code_commune_insee": "53029", + "libelle_d_acheminement": "BIERNE LES VILLAGES", + "code_postal": "53290", + "nom_de_la_commune": "BIERNE LES VILLAGES", + "coordonnees_gps": [ + 47.8071088114, + -0.532804034432 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.532804034432, + 47.8071088114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47fb6de8ba9f61a9bf29a05be9b28a0ce6414295", + "fields": { + "code_commune_insee": "45021", + "nom_de_la_commune": "BARVILLE EN GATINAIS", + "code_postal": "45340", + "coordonnees_gps": [ + 48.1116745133, + 2.39944970618 + ], + "libelle_d_acheminement": "BARVILLE EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39944970618, + 48.1116745133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7bce0e47ec4a1fbcf4e837f3fa7fb7d0232a6a4", + "fields": { + "code_commune_insee": "53031", + "nom_de_la_commune": "LA BIGOTTIERE", + "code_postal": "53240", + "coordonnees_gps": [ + 48.2226908203, + -0.795648692425 + ], + "libelle_d_acheminement": "LA BIGOTTIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.795648692425, + 48.2226908203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0395f3e4a2ce69a15e9bfe02892cc553d62ae4f6", + "fields": { + "code_commune_insee": "45022", + "nom_de_la_commune": "BATILLY EN GATINAIS", + "code_postal": "45340", + "coordonnees_gps": [ + 48.0832267087, + 2.36953010916 + ], + "libelle_d_acheminement": "BATILLY EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36953010916, + 48.0832267087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34a92bb4f3a7188d4e01d65202a95e5495d58601", + "fields": { + "code_commune_insee": "53045", + "nom_de_la_commune": "LA BRULATTE", + "code_postal": "53410", + "coordonnees_gps": [ + 48.0896249185, + -0.973295963828 + ], + "libelle_d_acheminement": "LA BRULATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.973295963828, + 48.0896249185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0dbb910d32938a1a701de5e8e630756afad05d1", + "fields": { + "code_commune_insee": "45027", + "nom_de_la_commune": "BEAUCHAMPS SUR HUILLARD", + "code_postal": "45270", + "coordonnees_gps": [ + 47.9441060194, + 2.45463738927 + ], + "libelle_d_acheminement": "BEAUCHAMPS SUR HUILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45463738927, + 47.9441060194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2fcac986d858def901197d0afb3f89429680039", + "fields": { + "code_commune_insee": "53046", + "nom_de_la_commune": "LE BURET", + "code_postal": "53170", + "coordonnees_gps": [ + 47.9188428297, + -0.500867794601 + ], + "libelle_d_acheminement": "LE BURET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.500867794601, + 47.9188428297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c1fc6b902d444105645233e980640662021b832", + "fields": { + "ligne_5": "CHEMAULT", + "code_commune_insee": "45035", + "libelle_d_acheminement": "BOISCOMMUN", + "code_postal": "45340", + "nom_de_la_commune": "BOISCOMMUN", + "coordonnees_gps": [ + 48.0389368902, + 2.35695030268 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35695030268, + 48.0389368902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e849425d42332dbb149b88a9271dcfb853e00ca", + "fields": { + "code_commune_insee": "53049", + "nom_de_la_commune": "CHALONS DU MAINE", + "code_postal": "53470", + "coordonnees_gps": [ + 48.1595881924, + -0.645569243902 + ], + "libelle_d_acheminement": "CHALONS DU MAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.645569243902, + 48.1595881924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fdd8bcdc4bbcefde5ad47102e34084b985adf50", + "fields": { + "code_commune_insee": "45037", + "nom_de_la_commune": "BOISSEAUX", + "code_postal": "45480", + "coordonnees_gps": [ + 48.2537728973, + 1.98567766927 + ], + "libelle_d_acheminement": "BOISSEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98567766927, + 48.2537728973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6530f89dabace050e44616f36268592ca416dc6b", + "fields": { + "code_commune_insee": "53052", + "nom_de_la_commune": "CHAMPFREMONT", + "code_postal": "53370", + "coordonnees_gps": [ + 48.4329079781, + -0.104054621774 + ], + "libelle_d_acheminement": "CHAMPFREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.104054621774, + 48.4329079781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7ecb5977484e09e4b6a928d85c369642863603f", + "fields": { + "code_commune_insee": "45038", + "nom_de_la_commune": "BONDAROY", + "code_postal": "45300", + "coordonnees_gps": [ + 48.1853742556, + 2.28093740952 + ], + "libelle_d_acheminement": "BONDAROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28093740952, + 48.1853742556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ef5b0258973a5ed5085a347f85e87f59c4d9fd6", + "fields": { + "code_commune_insee": "53054", + "nom_de_la_commune": "CHANGE", + "code_postal": "53810", + "coordonnees_gps": [ + 48.1079801148, + -0.800104772023 + ], + "libelle_d_acheminement": "CHANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.800104772023, + 48.1079801148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff267ea0c38c956d83d67aa23a903f5eac3dc854", + "fields": { + "code_commune_insee": "45056", + "nom_de_la_commune": "BROMEILLES", + "code_postal": "45390", + "coordonnees_gps": [ + 48.1829452149, + 2.4957743226 + ], + "libelle_d_acheminement": "BROMEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4957743226, + 48.1829452149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cc3a6742c16e9a5d1ea2bff524203721a1e926a", + "fields": { + "code_commune_insee": "53063", + "nom_de_la_commune": "CHATELAIN", + "code_postal": "53200", + "coordonnees_gps": [ + 47.8067934344, + -0.596047486278 + ], + "libelle_d_acheminement": "CHATELAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.596047486278, + 47.8067934344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e91adac1d0ee6f445faa91d44a23735e49f5ca3", + "fields": { + "code_commune_insee": "45062", + "nom_de_la_commune": "CERCOTTES", + "code_postal": "45520", + "coordonnees_gps": [ + 47.9871091205, + 1.89710126122 + ], + "libelle_d_acheminement": "CERCOTTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89710126122, + 47.9871091205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5df6d01101e12d939ccede7081d721052d80d2cd", + "fields": { + "code_commune_insee": "53067", + "nom_de_la_commune": "CHEMERE LE ROI", + "code_postal": "53340", + "coordonnees_gps": [ + 47.9744461326, + -0.445587835574 + ], + "libelle_d_acheminement": "CHEMERE LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.445587835574, + 47.9744461326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d875e7a61495a81fafc522305106397ca11d9b9a", + "fields": { + "code_commune_insee": "45064", + "nom_de_la_commune": "CERNOY EN BERRY", + "code_postal": "45360", + "coordonnees_gps": [ + 47.5461071494, + 2.65258926935 + ], + "libelle_d_acheminement": "CERNOY EN BERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65258926935, + 47.5461071494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98a9825ae84f8d644756b8771f2335606ba3bb5e", + "fields": { + "code_commune_insee": "53068", + "nom_de_la_commune": "CHERANCE", + "code_postal": "53400", + "coordonnees_gps": [ + 47.8007098465, + -0.926581399952 + ], + "libelle_d_acheminement": "CHERANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.926581399952, + 47.8007098465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e571d33e23d866833d6679d85d1f00f66ad32131", + "fields": { + "ligne_5": "DOSSAINVILLE", + "code_commune_insee": "45065", + "libelle_d_acheminement": "CESARVILLE DOSSAINVILLE", + "code_postal": "45300", + "nom_de_la_commune": "CESARVILLE DOSSAINVILLE", + "coordonnees_gps": [ + 48.2628087686, + 2.28517501246 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28517501246, + 48.2628087686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "341bd12100c038879d68203bd97f3515e7ff70aa", + "fields": { + "code_commune_insee": "53072", + "nom_de_la_commune": "COMMER", + "code_postal": "53470", + "coordonnees_gps": [ + 48.2352391072, + -0.620245484503 + ], + "libelle_d_acheminement": "COMMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.620245484503, + 48.2352391072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba7ab1a6e866727edb3f49c52b717b3402409da6", + "fields": { + "code_commune_insee": "45067", + "nom_de_la_commune": "CHAINGY", + "code_postal": "45380", + "coordonnees_gps": [ + 47.8914794989, + 1.77358113463 + ], + "libelle_d_acheminement": "CHAINGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77358113463, + 47.8914794989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69908865d49902308b894c7c2c645a15f7b047b8", + "fields": { + "code_commune_insee": "53076", + "nom_de_la_commune": "COSSE EN CHAMPAGNE", + "code_postal": "53340", + "coordonnees_gps": [ + 47.965084113, + -0.323516283471 + ], + "libelle_d_acheminement": "COSSE EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.323516283471, + 47.965084113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bba4b97fe19856198779bbab401cf45d94993b42", + "fields": { + "code_commune_insee": "45073", + "nom_de_la_commune": "CHANTECOQ", + "code_postal": "45320", + "coordonnees_gps": [ + 48.0427948313, + 2.97001053267 + ], + "libelle_d_acheminement": "CHANTECOQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97001053267, + 48.0427948313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9d310f612a8d873bffaaaa23b1ed1e6e683e328", + "fields": { + "code_commune_insee": "53078", + "nom_de_la_commune": "COUDRAY", + "code_postal": "53200", + "coordonnees_gps": [ + 47.7910216372, + -0.63763514955 + ], + "libelle_d_acheminement": "COUDRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.63763514955, + 47.7910216372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45d44d6256c6c654a745c03b54a8bdb584430710", + "fields": { + "code_commune_insee": "45076", + "nom_de_la_commune": "LA CHAPELLE ST SEPULCRE", + "code_postal": "45210", + "coordonnees_gps": [ + 48.0148810621, + 2.83674164309 + ], + "libelle_d_acheminement": "LA CHAPELLE ST SEPULCRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83674164309, + 48.0148810621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "855875a1d049aa0a55f75a4177698f7243f07b8d", + "fields": { + "code_commune_insee": "53082", + "nom_de_la_commune": "COURBEVEILLE", + "code_postal": "53230", + "coordonnees_gps": [ + 47.9866601942, + -0.888326689852 + ], + "libelle_d_acheminement": "COURBEVEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.888326689852, + 47.9866601942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa20e57b4487207c575556cb1eae5913aa6604d2", + "fields": { + "code_commune_insee": "45081", + "nom_de_la_commune": "CHARSONVILLE", + "code_postal": "45130", + "coordonnees_gps": [ + 47.9286176741, + 1.57432513599 + ], + "libelle_d_acheminement": "CHARSONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57432513599, + 47.9286176741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a804a27148e82395efcc3d680f2796bffb9f4dd1", + "fields": { + "code_commune_insee": "53101", + "nom_de_la_commune": "FROMENTIERES", + "code_postal": "53200", + "coordonnees_gps": [ + 47.8718387269, + -0.667772720385 + ], + "libelle_d_acheminement": "FROMENTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.667772720385, + 47.8718387269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fd03c20478d8a1a206c93708925e1939238ad4b", + "fields": { + "code_commune_insee": "45088", + "nom_de_la_commune": "CHAUSSY", + "code_postal": "45480", + "coordonnees_gps": [ + 48.1629842121, + 1.99352125948 + ], + "libelle_d_acheminement": "CHAUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99352125948, + 48.1629842121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaa7566a977f67665890cca1d6f84f54aa64b773", + "fields": { + "code_commune_insee": "53106", + "nom_de_la_commune": "GESVRES", + "code_postal": "53370", + "coordonnees_gps": [ + 48.3761066055, + -0.163693410236 + ], + "libelle_d_acheminement": "GESVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.163693410236, + 48.3761066055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f109dbe0f869102f2a7748ca36faf2e94b8659c", + "fields": { + "code_commune_insee": "45098", + "nom_de_la_commune": "CLERY ST ANDRE", + "code_postal": "45370", + "coordonnees_gps": [ + 47.8147484728, + 1.76833503654 + ], + "libelle_d_acheminement": "CLERY ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76833503654, + 47.8147484728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e42d8e55766d48d30e150a75c3d7ce86425e319e", + "fields": { + "code_commune_insee": "53114", + "nom_de_la_commune": "HARDANGES", + "code_postal": "53640", + "coordonnees_gps": [ + 48.34114678, + -0.405714149833 + ], + "libelle_d_acheminement": "HARDANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.405714149833, + 48.34114678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a638df498427575921f37258cccc2805f4d8928", + "fields": { + "code_commune_insee": "45099", + "nom_de_la_commune": "COINCES", + "code_postal": "45310", + "coordonnees_gps": [ + 48.0172747838, + 1.73272649419 + ], + "libelle_d_acheminement": "COINCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73272649419, + 48.0172747838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7a72d09dfd0e725b6dccb4690ebb17c98e0221e", + "fields": { + "code_commune_insee": "53120", + "nom_de_la_commune": "IZE", + "code_postal": "53160", + "coordonnees_gps": [ + 48.225304458, + -0.301409019014 + ], + "libelle_d_acheminement": "IZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.301409019014, + 48.225304458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "311c0c9d60cc4f4cf0fdad55a233b6f572b64b14", + "fields": { + "code_commune_insee": "45100", + "nom_de_la_commune": "COMBLEUX", + "code_postal": "45800", + "coordonnees_gps": [ + 47.9000269485, + 1.98662135152 + ], + "libelle_d_acheminement": "COMBLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98662135152, + 47.9000269485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b43c0f0b50dc95765e223eb2763a406f78c4bcb", + "fields": { + "code_commune_insee": "53121", + "nom_de_la_commune": "JAVRON LES CHAPELLES", + "code_postal": "53250", + "coordonnees_gps": [ + 48.4208361061, + -0.330959453036 + ], + "libelle_d_acheminement": "JAVRON LES CHAPELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.330959453036, + 48.4208361061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3687a8112258749f51104108cf3ac44da4657ecf", + "fields": { + "code_commune_insee": "45105", + "nom_de_la_commune": "CORTRAT", + "code_postal": "45700", + "coordonnees_gps": [ + 47.9068076955, + 2.76916633215 + ], + "libelle_d_acheminement": "CORTRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76916633215, + 47.9068076955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63a236b990c95dc8a42cd1cecd315cc67cc88cf8", + "fields": { + "ligne_5": "MELLERAY LA VALLEE", + "code_commune_insee": "53127", + "libelle_d_acheminement": "LASSAY LES CHATEAUX", + "code_postal": "53110", + "nom_de_la_commune": "LASSAY LES CHATEAUX", + "coordonnees_gps": [ + 48.4421089808, + -0.498821106653 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.498821106653, + 48.4421089808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c12bfc87621aec2f59f5d82fc3ba5bc4c448abda", + "fields": { + "code_commune_insee": "45114", + "nom_de_la_commune": "COURTEMPIERRE", + "code_postal": "45490", + "coordonnees_gps": [ + 48.0948306091, + 2.63504660906 + ], + "libelle_d_acheminement": "COURTEMPIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63504660906, + 48.0948306091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "395a2f9252254c2bff233f78a26150cb329ae68c", + "fields": { + "code_commune_insee": "53131", + "nom_de_la_commune": "LESBOIS", + "code_postal": "53120", + "coordonnees_gps": [ + 48.4514022952, + -0.793461282551 + ], + "libelle_d_acheminement": "LESBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.793461282551, + 48.4514022952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c46ed6894781bd4d88c7764c1d576873be46cc03", + "fields": { + "code_commune_insee": "45115", + "nom_de_la_commune": "COURTENAY", + "code_postal": "45320", + "coordonnees_gps": [ + 48.0219252443, + 3.06237469889 + ], + "libelle_d_acheminement": "COURTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06237469889, + 48.0219252443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6409643468af92abf108f3ca72d8ef15d8b09de1", + "fields": { + "code_commune_insee": "53134", + "nom_de_la_commune": "LIVET", + "code_postal": "53150", + "coordonnees_gps": [ + 48.1116444392, + -0.462684976775 + ], + "libelle_d_acheminement": "LIVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.462684976775, + 48.1116444392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bbba9b4a3d00b50cb03019fe60d16b6a37c9e9b", + "fields": { + "code_commune_insee": "45121", + "nom_de_la_commune": "DAMMARIE SUR LOING", + "code_postal": "45230", + "coordonnees_gps": [ + 47.7817425428, + 2.87377434188 + ], + "libelle_d_acheminement": "DAMMARIE SUR LOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87377434188, + 47.7817425428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8c06d1331ce665b4b94bd8bb2469704b395542c", + "fields": { + "code_commune_insee": "53144", + "nom_de_la_commune": "MARCILLE LA VILLE", + "code_postal": "53440", + "coordonnees_gps": [ + 48.3246621329, + -0.480574121834 + ], + "libelle_d_acheminement": "MARCILLE LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.480574121834, + 48.3246621329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b080576bc524a628458b733dfd1a285cc9487ba", + "fields": { + "code_commune_insee": "45124", + "nom_de_la_commune": "DESMONTS", + "code_postal": "45390", + "coordonnees_gps": [ + 48.2267906645, + 2.4997128367 + ], + "libelle_d_acheminement": "DESMONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4997128367, + 48.2267906645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c50a6e658579e0269de4b176ab5e5b88d130b28d", + "fields": { + "code_commune_insee": "53146", + "nom_de_la_commune": "MARTIGNE SUR MAYENNE", + "code_postal": "53470", + "coordonnees_gps": [ + 48.2026950175, + -0.661054831138 + ], + "libelle_d_acheminement": "MARTIGNE SUR MAYENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.661054831138, + 48.2026950175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73d90c2dc5b8eb92f76c8515a9e07ca78b039143", + "fields": { + "code_commune_insee": "45126", + "nom_de_la_commune": "DONNERY", + "code_postal": "45450", + "coordonnees_gps": [ + 47.9140447102, + 2.10376821418 + ], + "libelle_d_acheminement": "DONNERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10376821418, + 47.9140447102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a79a26b4bb869290355d0fdc67e233d6be82ac9c", + "fields": { + "code_commune_insee": "53152", + "nom_de_la_commune": "MESLAY DU MAINE", + "code_postal": "53170", + "coordonnees_gps": [ + 47.9469156243, + -0.558693863131 + ], + "libelle_d_acheminement": "MESLAY DU MAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.558693863131, + 47.9469156243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7d03eec18c005ffa3f17581d52a5626765f2b30", + "fields": { + "ligne_5": "MONTCORBON", + "code_commune_insee": "45129", + "libelle_d_acheminement": "DOUCHY MONTCORBON", + "code_postal": "45220", + "nom_de_la_commune": "DOUCHY MONTCORBON", + "coordonnees_gps": [ + 47.941934324, + 3.04405678632 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04405678632, + 47.941934324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8062ffffc46b1e96a790af10bd0b752a2d3b3c6d", + "fields": { + "code_commune_insee": "53160", + "nom_de_la_commune": "MONTREUIL POULAY", + "code_postal": "53640", + "coordonnees_gps": [ + 48.385896935, + -0.535818668483 + ], + "libelle_d_acheminement": "MONTREUIL POULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.535818668483, + 48.385896935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a72b3f51a934e47898e8cf069dc0ced24d4e001", + "fields": { + "code_commune_insee": "45143", + "nom_de_la_commune": "FEINS EN GATINAIS", + "code_postal": "45230", + "coordonnees_gps": [ + 47.746772016, + 2.83706429423 + ], + "libelle_d_acheminement": "FEINS EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83706429423, + 47.746772016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ffadcc49f5fcc7020d6af56518401fe7ced3591", + "fields": { + "ligne_5": "POULAY", + "code_commune_insee": "53160", + "libelle_d_acheminement": "MONTREUIL POULAY", + "code_postal": "53640", + "nom_de_la_commune": "MONTREUIL POULAY", + "coordonnees_gps": [ + 48.385896935, + -0.535818668483 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.535818668483, + 48.385896935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b7c18a06c25c881ca4312fb031d5b24afb6df74", + "fields": { + "code_commune_insee": "45145", + "nom_de_la_commune": "FERRIERES EN GATINAIS", + "code_postal": "45210", + "coordonnees_gps": [ + 48.1055360921, + 2.80426860413 + ], + "libelle_d_acheminement": "FERRIERES EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80426860413, + 48.1055360921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "357464c81081cd67ac01eb2e24581e85b98223c0", + "fields": { + "code_commune_insee": "53169", + "nom_de_la_commune": "OLIVET", + "code_postal": "53410", + "coordonnees_gps": [ + 48.1207608153, + -0.935026988481 + ], + "libelle_d_acheminement": "OLIVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.935026988481, + 48.1207608153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9551a86be0fbedd023cba0d6b2145f9d57f2e6d7", + "fields": { + "code_commune_insee": "45150", + "nom_de_la_commune": "FREVILLE DU GATINAIS", + "code_postal": "45270", + "coordonnees_gps": [ + 48.0208335468, + 2.44856219378 + ], + "libelle_d_acheminement": "FREVILLE DU GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44856219378, + 48.0208335468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa460718dbb9b6f8d9126aeebefd9272e50ee02e", + "fields": { + "code_commune_insee": "53172", + "nom_de_la_commune": "ORIGNE", + "code_postal": "53360", + "coordonnees_gps": [ + 47.9525235676, + -0.734592990077 + ], + "libelle_d_acheminement": "ORIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.734592990077, + 47.9525235676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "801de80cead8c2dd1d73cfbaf78032bcb19fdba6", + "fields": { + "code_commune_insee": "45155", + "nom_de_la_commune": "GIEN", + "code_postal": "45500", + "coordonnees_gps": [ + 47.71227944, + 2.66549550204 + ], + "libelle_d_acheminement": "GIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66549550204, + 47.71227944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7e218d2dfd000648c032a8f6a84794528b83075", + "fields": { + "code_commune_insee": "53173", + "nom_de_la_commune": "LA PALLU", + "code_postal": "53140", + "coordonnees_gps": [ + 48.5047614159, + -0.297114491021 + ], + "libelle_d_acheminement": "LA PALLU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.297114491021, + 48.5047614159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fb784513a23360d39a8615f83a87d30b2533a58", + "fields": { + "code_commune_insee": "45157", + "nom_de_la_commune": "GIVRAINES", + "code_postal": "45300", + "coordonnees_gps": [ + 48.1510160951, + 2.38245438786 + ], + "libelle_d_acheminement": "GIVRAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38245438786, + 48.1510160951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2457c000ea9b53ae58dc46adfab167954b4e41f7", + "fields": { + "code_commune_insee": "53180", + "nom_de_la_commune": "POMMERIEUX", + "code_postal": "53400", + "coordonnees_gps": [ + 47.8279468794, + -0.899677522032 + ], + "libelle_d_acheminement": "POMMERIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.899677522032, + 47.8279468794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d590e0ff6ebc2d1670e088e459d7bba9275f101", + "fields": { + "code_commune_insee": "45177", + "nom_de_la_commune": "LAAS", + "code_postal": "45300", + "coordonnees_gps": [ + 48.1209542123, + 2.21821996129 + ], + "libelle_d_acheminement": "LAAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21821996129, + 48.1209542123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99fe818cba403d9dfb16e5bb0edb0ebe7109fae4", + "fields": { + "code_commune_insee": "53184", + "nom_de_la_commune": "PREAUX", + "code_postal": "53340", + "coordonnees_gps": [ + 47.9370817742, + -0.464953364883 + ], + "libelle_d_acheminement": "PREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.464953364883, + 47.9370817742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "293abf822a5d06b846900029fef700fe084f58b3", + "fields": { + "code_commune_insee": "45184", + "nom_de_la_commune": "LION EN SULLIAS", + "code_postal": "45600", + "coordonnees_gps": [ + 47.7235377028, + 2.47883011151 + ], + "libelle_d_acheminement": "LION EN SULLIAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47883011151, + 47.7235377028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42c93ccd7813528d5d7e34fb2a768e7c9f7c5566", + "fields": { + "ligne_5": "ST SAMSON", + "code_commune_insee": "53185", + "libelle_d_acheminement": "PRE EN PAIL ST SAMSON", + "code_postal": "53140", + "nom_de_la_commune": "PRE EN PAIL ST SAMSON", + "coordonnees_gps": [ + 48.4470393586, + -0.196704985828 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.196704985828, + 48.4470393586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "926d429e88eddf6a4d66fb36284757c31c7e1f24", + "fields": { + "code_commune_insee": "45189", + "nom_de_la_commune": "LOUZOUER", + "code_postal": "45210", + "coordonnees_gps": [ + 48.0344043134, + 2.86967177555 + ], + "libelle_d_acheminement": "LOUZOUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86967177555, + 48.0344043134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe77c1246adc4f180956e799020b591224abbf36", + "fields": { + "code_commune_insee": "53187", + "nom_de_la_commune": "RAVIGNY", + "code_postal": "53370", + "coordonnees_gps": [ + 48.4424919751, + -0.0682909455819 + ], + "libelle_d_acheminement": "RAVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0682909455819, + 48.4424919751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66f4773a9b87d803ad1eac196099d7ca9941c332", + "fields": { + "ligne_5": "MANCHECOURT", + "code_commune_insee": "45191", + "libelle_d_acheminement": "LE MALESHERBOIS", + "code_postal": "45300", + "nom_de_la_commune": "LE MALESHERBOIS", + "coordonnees_gps": [ + 48.2894150644, + 2.39799452821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39799452821, + 48.2894150644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73359fed252df39b203f9b26db68030e525a5a99", + "fields": { + "code_commune_insee": "53190", + "nom_de_la_commune": "LE RIBAY", + "code_postal": "53640", + "coordonnees_gps": [ + 48.3782564166, + -0.415575081434 + ], + "libelle_d_acheminement": "LE RIBAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.415575081434, + 48.3782564166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd9569b8d0657fcfc5c25910fe65ed018c394455", + "fields": { + "ligne_5": "ORVEAU BELLESAUVE", + "code_commune_insee": "45191", + "libelle_d_acheminement": "LE MALESHERBOIS", + "code_postal": "45330", + "nom_de_la_commune": "LE MALESHERBOIS", + "coordonnees_gps": [ + 48.2894150644, + 2.39799452821 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39799452821, + 48.2894150644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c849d9393c47db6ec69b3b0512361f185ecd97f9", + "fields": { + "code_commune_insee": "53191", + "nom_de_la_commune": "LA ROE", + "code_postal": "53350", + "coordonnees_gps": [ + 47.8910085582, + -1.10255581049 + ], + "libelle_d_acheminement": "LA ROE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.10255581049, + 47.8910085582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e701e28aea6b57d1bed44faa507b5923679111ae", + "fields": { + "code_commune_insee": "45205", + "nom_de_la_commune": "MEZIERES EN GATINAIS", + "code_postal": "45270", + "coordonnees_gps": [ + 48.024673349, + 2.48281736581 + ], + "libelle_d_acheminement": "MEZIERES EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48281736581, + 48.024673349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64341f035936551152f1060153816a20a959a037", + "fields": { + "code_commune_insee": "53192", + "nom_de_la_commune": "LA ROUAUDIERE", + "code_postal": "53390", + "coordonnees_gps": [ + 47.8380947101, + -1.18557298037 + ], + "libelle_d_acheminement": "LA ROUAUDIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18557298037, + 47.8380947101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0da8e69bd80a30ae91fb9665781fe2903203e8f", + "fields": { + "code_commune_insee": "45208", + "nom_de_la_commune": "MONTARGIS", + "code_postal": "45200", + "coordonnees_gps": [ + 47.9988427684, + 2.73588922015 + ], + "libelle_d_acheminement": "MONTARGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73588922015, + 47.9988427684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63a9383144b6c772b44b02eb45ed79b92a3d8826", + "fields": { + "code_commune_insee": "53197", + "nom_de_la_commune": "ST AIGNAN SUR ROE", + "code_postal": "53390", + "coordonnees_gps": [ + 47.8498132435, + -1.14052509792 + ], + "libelle_d_acheminement": "ST AIGNAN SUR ROE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14052509792, + 47.8498132435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4769b5f012733f345336a9831024bc75051a4981", + "fields": { + "code_commune_insee": "45218", + "nom_de_la_commune": "LE MOULINET SUR SOLIN", + "code_postal": "45290", + "coordonnees_gps": [ + 47.817291457, + 2.61111743107 + ], + "libelle_d_acheminement": "LE MOULINET SUR SOLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61111743107, + 47.817291457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaf84ebb71fdfbdca5faeaf0e8111fe21286d69d", + "fields": { + "code_commune_insee": "53201", + "nom_de_la_commune": "ST BERTHEVIN", + "code_postal": "53940", + "coordonnees_gps": [ + 48.0702234162, + -0.845217269922 + ], + "libelle_d_acheminement": "ST BERTHEVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.845217269922, + 48.0702234162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5a7e136fccb269f57600422271b269e82e919e5", + "fields": { + "code_commune_insee": "45231", + "nom_de_la_commune": "OISON", + "code_postal": "45170", + "coordonnees_gps": [ + 48.1345415806, + 1.97598018826 + ], + "libelle_d_acheminement": "OISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97598018826, + 48.1345415806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea7237aa9973a25c07cd26cf2ce4f7f31b2793a8", + "fields": { + "code_commune_insee": "53203", + "nom_de_la_commune": "ST BRICE", + "code_postal": "53290", + "coordonnees_gps": [ + 47.8614989489, + -0.439457256097 + ], + "libelle_d_acheminement": "ST BRICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.439457256097, + 47.8614989489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ec91296a1806dea17c1aa015b121612d0ce1d57", + "fields": { + "code_commune_insee": "45235", + "nom_de_la_commune": "ORMES", + "code_postal": "45140", + "coordonnees_gps": [ + 47.9478927355, + 1.8071403661 + ], + "libelle_d_acheminement": "ORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8071403661, + 47.9478927355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "365cb5ca46a9dacf336b11509b2a4247afa2dbb4", + "fields": { + "code_commune_insee": "53213", + "nom_de_la_commune": "ST ELLIER DU MAINE", + "code_postal": "53220", + "coordonnees_gps": [ + 48.404060159, + -1.04037083091 + ], + "libelle_d_acheminement": "ST ELLIER DU MAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04037083091, + 48.404060159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b7f3c7f44980e5d687fd36cd880ce9d33a08bb3", + "fields": { + "code_commune_insee": "45239", + "nom_de_la_commune": "OUSSOY EN GATINAIS", + "code_postal": "45290", + "coordonnees_gps": [ + 47.9013234863, + 2.63700159517 + ], + "libelle_d_acheminement": "OUSSOY EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63700159517, + 47.9013234863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "085b6cfb87dd45f0dcdc5c09b7221016920c872b", + "fields": { + "code_commune_insee": "53214", + "nom_de_la_commune": "ST ERBLON", + "code_postal": "53390", + "coordonnees_gps": [ + 47.7867130682, + -1.15831425112 + ], + "libelle_d_acheminement": "ST ERBLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.15831425112, + 47.7867130682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8ccf5e5297fff9d2a04b10cb80ec07fbef67215", + "fields": { + "ligne_5": "ST PERAVY EPREUX", + "code_commune_insee": "45240", + "libelle_d_acheminement": "OUTARVILLE", + "code_postal": "45480", + "nom_de_la_commune": "OUTARVILLE", + "coordonnees_gps": [ + 48.2142854596, + 2.02173092617 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02173092617, + 48.2142854596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cebc99749f8c78ac8ec6229c8635d42d245c61fb", + "fields": { + "ligne_5": "BLANDOUET", + "code_commune_insee": "53228", + "libelle_d_acheminement": "BLANDOUET ST JEAN", + "code_postal": "53270", + "nom_de_la_commune": "BLANDOUET ST JEAN", + "coordonnees_gps": [ + 48.0403224442, + -0.38824131993 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.38824131993, + 48.0403224442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "070281f70cd98bd4f16f706b5b848e240b255ad9", + "fields": { + "code_commune_insee": "45245", + "nom_de_la_commune": "OUZOUER SUR TREZEE", + "code_postal": "45250", + "coordonnees_gps": [ + 47.6754280344, + 2.81002906457 + ], + "libelle_d_acheminement": "OUZOUER SUR TREZEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81002906457, + 47.6754280344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8e7446d193f722e3de5a6bec72c2cd350522a12", + "fields": { + "code_commune_insee": "53242", + "nom_de_la_commune": "ST MICHEL DE LA ROE", + "code_postal": "53350", + "coordonnees_gps": [ + 47.8723222093, + -1.12403931554 + ], + "libelle_d_acheminement": "ST MICHEL DE LA ROE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12403931554, + 47.8723222093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f3e1018fd62ca23a2f300fc146f1057d38b73e0", + "fields": { + "code_commune_insee": "45247", + "nom_de_la_commune": "PANNES", + "code_postal": "45700", + "coordonnees_gps": [ + 48.0121009913, + 2.66878562628 + ], + "libelle_d_acheminement": "PANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66878562628, + 48.0121009913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "810d71b3f8856ac5c2950893b5414982ca02623c", + "fields": { + "code_commune_insee": "53247", + "nom_de_la_commune": "ST PIERRE LA COUR", + "code_postal": "53410", + "coordonnees_gps": [ + 48.1084439296, + -1.02377898526 + ], + "libelle_d_acheminement": "ST PIERRE LA COUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02377898526, + 48.1084439296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f9f263bb491fc551c88e302e65ad42b3eca2cf8", + "fields": { + "code_commune_insee": "45249", + "nom_de_la_commune": "PAUCOURT", + "code_postal": "45200", + "coordonnees_gps": [ + 48.038602522, + 2.78809051879 + ], + "libelle_d_acheminement": "PAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78809051879, + 48.038602522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ab6fdd574ba25a8d900a20c75f7d99a0af5b550", + "fields": { + "code_commune_insee": "53258", + "nom_de_la_commune": "LA SELLE CRAONNAISE", + "code_postal": "53800", + "coordonnees_gps": [ + 47.8467586768, + -1.05851023151 + ], + "libelle_d_acheminement": "LA SELLE CRAONNAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05851023151, + 47.8467586768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a61b72b9770661f58c193a3bc28b7e4ed0686221", + "fields": { + "code_commune_insee": "45250", + "nom_de_la_commune": "PERS EN GATINAIS", + "code_postal": "45210", + "coordonnees_gps": [ + 48.1174253817, + 2.90621310678 + ], + "libelle_d_acheminement": "PERS EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90621310678, + 48.1174253817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29d10c6ee2db43fff9a8ae1ae7df302d332b1c3f", + "fields": { + "code_commune_insee": "53265", + "nom_de_la_commune": "TORCE VIVIERS EN CHARNIE", + "code_postal": "53270", + "coordonnees_gps": [ + 48.0968755142, + -0.27150595519 + ], + "libelle_d_acheminement": "TORCE VIVIERS EN CHARNIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27150595519, + 48.0968755142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7baea40dc84ede3d94abcade16bfaeee70c5ae9b", + "fields": { + "code_commune_insee": "45258", + "nom_de_la_commune": "PUISEAUX", + "code_postal": "45390", + "coordonnees_gps": [ + 48.2093647379, + 2.4665704993 + ], + "libelle_d_acheminement": "PUISEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4665704993, + 48.2093647379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee96f0224caf88e0e8ad55cdc134c0bbeeb0f7ea", + "fields": { + "ligne_5": "VIVIERS EN CHARNIE", + "code_commune_insee": "53265", + "libelle_d_acheminement": "TORCE VIVIERS EN CHARNIE", + "code_postal": "53270", + "nom_de_la_commune": "TORCE VIVIERS EN CHARNIE", + "coordonnees_gps": [ + 48.0968755142, + -0.27150595519 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.27150595519, + 48.0968755142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abb51d5eff7b56c27b495bacade09e61b731b017", + "fields": { + "code_commune_insee": "45265", + "nom_de_la_commune": "ROZOY LE VIEIL", + "code_postal": "45210", + "coordonnees_gps": [ + 48.1183432161, + 2.95141929917 + ], + "libelle_d_acheminement": "ROZOY LE VIEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95141929917, + 48.1183432161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cffc97f90793f01bfe3429642a46e318384a9c25", + "fields": { + "code_commune_insee": "53267", + "nom_de_la_commune": "VAIGES", + "code_postal": "53480", + "coordonnees_gps": [ + 48.0506374243, + -0.471285801786 + ], + "libelle_d_acheminement": "VAIGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.471285801786, + 48.0506374243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "684a23b36526125493ec12c43b108b9d9162076b", + "fields": { + "code_commune_insee": "45270", + "nom_de_la_commune": "ST BENOIT SUR LOIRE", + "code_postal": "45730", + "coordonnees_gps": [ + 47.8087057942, + 2.31731895237 + ], + "libelle_d_acheminement": "ST BENOIT SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31731895237, + 47.8087057942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87bf37db7f5cab262cc0ec9a7295ae210256f3e9", + "fields": { + "code_commune_insee": "53271", + "nom_de_la_commune": "VILLAINES LA JUHEL", + "code_postal": "53700", + "coordonnees_gps": [ + 48.3394105228, + -0.292005010106 + ], + "libelle_d_acheminement": "VILLAINES LA JUHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.292005010106, + 48.3394105228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9f217fb5aa2f2bd802876319a240aef4aeb45a2", + "fields": { + "code_commune_insee": "45275", + "nom_de_la_commune": "ST FIRMIN DES BOIS", + "code_postal": "45220", + "coordonnees_gps": [ + 47.9697416021, + 2.91006248346 + ], + "libelle_d_acheminement": "ST FIRMIN DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91006248346, + 47.9697416021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfa900c37b23d38cba30e44ef0df4d060efc07c5", + "fields": { + "code_commune_insee": "53273", + "nom_de_la_commune": "VILLIERS CHARLEMAGNE", + "code_postal": "53170", + "coordonnees_gps": [ + 47.9250890496, + -0.682830873383 + ], + "libelle_d_acheminement": "VILLIERS CHARLEMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.682830873383, + 47.9250890496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbc82d18c4d85e87819241e800092c93a1c7e645", + "fields": { + "code_commune_insee": "45283", + "nom_de_la_commune": "ST HILAIRE SUR PUISEAUX", + "code_postal": "45700", + "coordonnees_gps": [ + 47.9071529346, + 2.69855393407 + ], + "libelle_d_acheminement": "ST HILAIRE SUR PUISEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69855393407, + 47.9071529346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b0509758f97cc5fb870a8833ac516f2d544975a", + "fields": { + "code_commune_insee": "54006", + "nom_de_la_commune": "AGINCOURT", + "code_postal": "54770", + "coordonnees_gps": [ + 48.7294061965, + 6.23559240727 + ], + "libelle_d_acheminement": "AGINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23559240727, + 48.7294061965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f7680b928aaec6a8f5ec31b1d48a4d9625a1aed", + "fields": { + "code_commune_insee": "45286", + "nom_de_la_commune": "ST JEAN LE BLANC", + "code_postal": "45650", + "coordonnees_gps": [ + 47.8828915837, + 1.93333711886 + ], + "libelle_d_acheminement": "ST JEAN LE BLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93333711886, + 47.8828915837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc2572d251a07a5133209f10e0638871961965ab", + "fields": { + "code_commune_insee": "54007", + "nom_de_la_commune": "AINGERAY", + "code_postal": "54460", + "coordonnees_gps": [ + 48.7369624344, + 6.0192315764 + ], + "libelle_d_acheminement": "AINGERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0192315764, + 48.7369624344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae2e6c7d36df90c2b033750afff016a9d76db416", + "fields": { + "code_commune_insee": "45290", + "nom_de_la_commune": "ST MARTIN D ABBAT", + "code_postal": "45110", + "coordonnees_gps": [ + 47.8813399374, + 2.30587611938 + ], + "libelle_d_acheminement": "ST MARTIN D ABBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30587611938, + 47.8813399374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a0d15fb4021c41559b8202c93b8dd38db141f78", + "fields": { + "code_commune_insee": "54008", + "nom_de_la_commune": "ALLAIN", + "code_postal": "54170", + "coordonnees_gps": [ + 48.5496654439, + 5.92089883259 + ], + "libelle_d_acheminement": "ALLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92089883259, + 48.5496654439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6744bb3f41fee30ac9682a8769e0d47c6f20a82", + "fields": { + "code_commune_insee": "45299", + "nom_de_la_commune": "ST SIGISMOND", + "code_postal": "45310", + "coordonnees_gps": [ + 47.9825689104, + 1.66590651011 + ], + "libelle_d_acheminement": "ST SIGISMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66590651011, + 47.9825689104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97b1873fecbb54c5d4ec44eee92361911dca7866", + "fields": { + "code_commune_insee": "54009", + "nom_de_la_commune": "ALLAMONT", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1284916114, + 5.77659749922 + ], + "libelle_d_acheminement": "ALLAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77659749922, + 49.1284916114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e76b4a95b15edc8d6f6ac89cda6d3ea017d7337", + "fields": { + "code_commune_insee": "45300", + "nom_de_la_commune": "SANDILLON", + "code_postal": "45640", + "coordonnees_gps": [ + 47.836250282, + 2.03008361702 + ], + "libelle_d_acheminement": "SANDILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03008361702, + 47.836250282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d6c74a7649f94eac8931da711824129866154fe", + "fields": { + "code_commune_insee": "54021", + "nom_de_la_commune": "ARMAUCOURT", + "code_postal": "54760", + "coordonnees_gps": [ + 48.8125986306, + 6.298257299 + ], + "libelle_d_acheminement": "ARMAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.298257299, + 48.8125986306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f44f2efb1fdacc0603d364dc627db2f16060e27", + "fields": { + "code_commune_insee": "45301", + "nom_de_la_commune": "SANTEAU", + "code_postal": "45170", + "coordonnees_gps": [ + 48.0939958516, + 2.15275063221 + ], + "libelle_d_acheminement": "SANTEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15275063221, + 48.0939958516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e1e1805b3cafa367cced338bf4a4b5233961280", + "fields": { + "code_commune_insee": "54035", + "nom_de_la_commune": "AVRICOURT", + "code_postal": "54450", + "coordonnees_gps": [ + 48.6425808657, + 6.81321103492 + ], + "libelle_d_acheminement": "AVRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81321103492, + 48.6425808657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a5011eb5dafb5055c13841f82496e9ff71cc7f5", + "fields": { + "code_commune_insee": "45303", + "nom_de_la_commune": "SCEAUX DU GATINAIS", + "code_postal": "45490", + "coordonnees_gps": [ + 48.1208120916, + 2.59052971179 + ], + "libelle_d_acheminement": "SCEAUX DU GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59052971179, + 48.1208120916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aea5a246e79dd36552339198f283d2ede6d6859", + "fields": { + "code_commune_insee": "54039", + "nom_de_la_commune": "BACCARAT", + "code_postal": "54120", + "coordonnees_gps": [ + 48.4499656424, + 6.74057641633 + ], + "libelle_d_acheminement": "BACCARAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74057641633, + 48.4499656424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b76368438aa15fe029c0074a6b9f6db064a9c229", + "fields": { + "code_commune_insee": "45310", + "nom_de_la_commune": "SERMAISES", + "code_postal": "45300", + "coordonnees_gps": [ + 48.2977181828, + 2.20317765493 + ], + "libelle_d_acheminement": "SERMAISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20317765493, + 48.2977181828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01e0dd3fc3de2e889f1c949056adad66ca582d24", + "fields": { + "ligne_5": "BADMENIL", + "code_commune_insee": "54039", + "libelle_d_acheminement": "BACCARAT", + "code_postal": "54120", + "nom_de_la_commune": "BACCARAT", + "coordonnees_gps": [ + 48.4499656424, + 6.74057641633 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74057641633, + 48.4499656424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e93aea8c3e5236a7fe3fcc602970d110521f51a", + "fields": { + "code_commune_insee": "45314", + "nom_de_la_commune": "SULLY LA CHAPELLE", + "code_postal": "45450", + "coordonnees_gps": [ + 47.9841057198, + 2.16895228227 + ], + "libelle_d_acheminement": "SULLY LA CHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16895228227, + 47.9841057198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a9cbfa51d539293dc1593bed4bf8145f9755d54", + "fields": { + "code_commune_insee": "54042", + "nom_de_la_commune": "BAINVILLE AUX MIROIRS", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4363808241, + 6.2833736901 + ], + "libelle_d_acheminement": "BAINVILLE AUX MIROIRS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2833736901, + 48.4363808241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6113c45526b53cf01e7ec98d5fdc8b50b5de84a6", + "fields": { + "code_commune_insee": "45317", + "nom_de_la_commune": "TAVERS", + "code_postal": "45190", + "coordonnees_gps": [ + 47.7633212034, + 1.59342598459 + ], + "libelle_d_acheminement": "TAVERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59342598459, + 47.7633212034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "223896faca1e71097531a15e503a2fabf443102c", + "fields": { + "code_commune_insee": "54044", + "nom_de_la_commune": "BARBAS", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5709454434, + 6.8498123198 + ], + "libelle_d_acheminement": "BARBAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8498123198, + 48.5709454434 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5a99612e215ac635ecf36f52c72dd2bf7e4ff84", + "fields": { + "code_commune_insee": "45322", + "nom_de_la_commune": "THORAILLES", + "code_postal": "45210", + "coordonnees_gps": [ + 48.0258698005, + 2.89559068746 + ], + "libelle_d_acheminement": "THORAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89559068746, + 48.0258698005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94bcda4bcd140256b3d2b662eeabd017fd5e6f9a", + "fields": { + "code_commune_insee": "54045", + "nom_de_la_commune": "BARBONVILLE", + "code_postal": "54360", + "coordonnees_gps": [ + 48.5504061988, + 6.35579001053 + ], + "libelle_d_acheminement": "BARBONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35579001053, + 48.5504061988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cdd6d995197114115cac893568e38114b0dfa10", + "fields": { + "code_commune_insee": "45326", + "nom_de_la_commune": "TOURNOISIS", + "code_postal": "45310", + "coordonnees_gps": [ + 48.0048588695, + 1.6244204938 + ], + "libelle_d_acheminement": "TOURNOISIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6244204938, + 48.0048588695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23ab849d078b9ec6b044a15e44605f0259261c01", + "fields": { + "code_commune_insee": "54051", + "nom_de_la_commune": "BATILLY", + "code_postal": "54980", + "coordonnees_gps": [ + 49.1770727995, + 5.9696995649 + ], + "libelle_d_acheminement": "BATILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9696995649, + 49.1770727995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4da039afe7b8b81775181302cb6f4e49bbcf10a6", + "fields": { + "code_commune_insee": "45328", + "nom_de_la_commune": "TREILLES EN GATINAIS", + "code_postal": "45490", + "coordonnees_gps": [ + 48.0787762501, + 2.66540887052 + ], + "libelle_d_acheminement": "TREILLES EN GATINAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66540887052, + 48.0787762501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a0909b9b497c3e5f16a45c41a746bb566d68b06", + "fields": { + "code_commune_insee": "54055", + "nom_de_la_commune": "BAYONVILLE SUR MAD", + "code_postal": "54890", + "coordonnees_gps": [ + 49.0159045252, + 5.99755026725 + ], + "libelle_d_acheminement": "BAYONVILLE SUR MAD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99755026725, + 49.0159045252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4e358e006a049e5de0eadad1682e110bd8ecfa8", + "fields": { + "code_commune_insee": "45335", + "nom_de_la_commune": "VIENNE EN VAL", + "code_postal": "45510", + "coordonnees_gps": [ + 47.7825716269, + 2.12412852097 + ], + "libelle_d_acheminement": "VIENNE EN VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12412852097, + 47.7825716269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70ee3a244cbe17d8aa4fe0505c1ce71f89cee170", + "fields": { + "ligne_5": "MOREY", + "code_commune_insee": "54059", + "libelle_d_acheminement": "BELLEAU", + "code_postal": "54610", + "nom_de_la_commune": "BELLEAU", + "coordonnees_gps": [ + 48.8487345093, + 6.18702961708 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18702961708, + 48.8487345093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "072b14a8260d0ac98fa6a8add22b513fb1021818", + "fields": { + "code_commune_insee": "45337", + "nom_de_la_commune": "VILLAMBLAIN", + "code_postal": "45310", + "coordonnees_gps": [ + 48.0129025653, + 1.55246267039 + ], + "libelle_d_acheminement": "VILLAMBLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55246267039, + 48.0129025653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad5a85b0b01632aca42a8070ed8341fb6f6d038b", + "fields": { + "code_commune_insee": "54062", + "nom_de_la_commune": "BENNEY", + "code_postal": "54740", + "coordonnees_gps": [ + 48.5246335005, + 6.2245124594 + ], + "libelle_d_acheminement": "BENNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2245124594, + 48.5246335005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2111301ade5c9c387cbab48a82769cb9ffca6182", + "fields": { + "code_commune_insee": "45340", + "nom_de_la_commune": "VILLEMURLIN", + "code_postal": "45600", + "coordonnees_gps": [ + 47.6816641134, + 2.34263674784 + ], + "libelle_d_acheminement": "VILLEMURLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34263674784, + 47.6816641134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c6997cdfc1ba853693e3017e3407b99836b5b30", + "fields": { + "code_commune_insee": "54069", + "nom_de_la_commune": "BEUVILLERS", + "code_postal": "54560", + "coordonnees_gps": [ + 49.3870500621, + 5.91906739563 + ], + "libelle_d_acheminement": "BEUVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91906739563, + 49.3870500621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e721f83b4ac022c9f3f18333a79c9a9f0be1d979", + "fields": { + "code_commune_insee": "45346", + "nom_de_la_commune": "VITRY AUX LOGES", + "code_postal": "45530", + "coordonnees_gps": [ + 47.931092233, + 2.25115568567 + ], + "libelle_d_acheminement": "VITRY AUX LOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25115568567, + 47.931092233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "331b37f65be738d18ff66de57bf3850cb9510c4b", + "fields": { + "code_commune_insee": "54072", + "nom_de_la_commune": "BEZAUMONT", + "code_postal": "54380", + "coordonnees_gps": [ + 48.8484200682, + 6.10334870452 + ], + "libelle_d_acheminement": "BEZAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10334870452, + 48.8484200682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41fc31b748489e90104342a1626c9b88040b1fe5", + "fields": { + "ligne_5": "YEVRE LE CHATEL", + "code_commune_insee": "45348", + "libelle_d_acheminement": "YEVRE LA VILLE", + "code_postal": "45300", + "nom_de_la_commune": "YEVRE LA VILLE", + "coordonnees_gps": [ + 48.1427599293, + 2.32302626395 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32302626395, + 48.1427599293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dc4de106cee60c1f3e576d7cf874bf19697a98f", + "fields": { + "code_commune_insee": "54074", + "nom_de_la_commune": "BIENVILLE LA PETITE", + "code_postal": "54300", + "coordonnees_gps": [ + 48.633628939, + 6.5126118634 + ], + "libelle_d_acheminement": "BIENVILLE LA PETITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5126118634, + 48.633628939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7bbbda617e9ea879e4beea3a4d1ccdb48dc36e2", + "fields": { + "code_commune_insee": "46004", + "nom_de_la_commune": "ANGLARS", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7474871579, + 1.89850060381 + ], + "libelle_d_acheminement": "ANGLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89850060381, + 44.7474871579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a0f34b3d795ce4a523e981b1503e154916f9229", + "fields": { + "code_commune_insee": "54079", + "nom_de_la_commune": "BLENOD LES PONT A MOUSSON", + "code_postal": "54700", + "coordonnees_gps": [ + 48.8752634053, + 6.0622081682 + ], + "libelle_d_acheminement": "BLENOD LES PONT A MOUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0622081682, + 48.8752634053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b48f85368e9b93151dd1ca49ebd73fb05a3689e1", + "fields": { + "code_commune_insee": "46006", + "nom_de_la_commune": "ANGLARS NOZAC", + "code_postal": "46300", + "coordonnees_gps": [ + 44.7827204407, + 1.40862887217 + ], + "libelle_d_acheminement": "ANGLARS NOZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40862887217, + 44.7827204407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0241651b503e8ebf52e5888a64f0cf4bc18dce91", + "fields": { + "code_commune_insee": "54080", + "nom_de_la_commune": "BLENOD LES TOUL", + "code_postal": "54113", + "coordonnees_gps": [ + 48.5971874239, + 5.82709869884 + ], + "libelle_d_acheminement": "BLENOD LES TOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82709869884, + 48.5971874239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "813abedbddd62e40d632fbece4f139e9742d81ab", + "fields": { + "code_commune_insee": "46015", + "nom_de_la_commune": "BAGNAC SUR CELE", + "code_postal": "46270", + "coordonnees_gps": [ + 44.6622315963, + 2.14887166878 + ], + "libelle_d_acheminement": "BAGNAC SUR CELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14887166878, + 44.6622315963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "897bf9919edbab32a0b718da9daf93a0c8592124", + "fields": { + "code_commune_insee": "54081", + "nom_de_la_commune": "BOISMONT", + "code_postal": "54620", + "coordonnees_gps": [ + 49.4110699513, + 5.7403735088 + ], + "libelle_d_acheminement": "BOISMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7403735088, + 49.4110699513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbaa7fd4a5643a01242e62dfeaae39ed90f9f177", + "fields": { + "ligne_5": "FARGUES", + "code_commune_insee": "46033", + "libelle_d_acheminement": "PORTE DU QUERCY", + "code_postal": "46800", + "nom_de_la_commune": "PORTE DU QUERCY", + "coordonnees_gps": [ + 44.4210869463, + 1.1472613313 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1472613313, + 44.4210869463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c23b914fc3d6b2484793b09538fcb30dbc477700", + "fields": { + "ligne_5": "MOULINS", + "code_commune_insee": "54089", + "libelle_d_acheminement": "BOUXIERES AUX CHENES", + "code_postal": "54770", + "nom_de_la_commune": "BOUXIERES AUX CHENES", + "coordonnees_gps": [ + 48.7728236838, + 6.27141981463 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27141981463, + 48.7728236838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aa98917bd4bdff4b449fb9e546a83044c48715a", + "fields": { + "code_commune_insee": "46036", + "nom_de_la_commune": "LE BOUYSSOU", + "code_postal": "46120", + "coordonnees_gps": [ + 44.6937761808, + 1.94655674369 + ], + "libelle_d_acheminement": "LE BOUYSSOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94655674369, + 44.6937761808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5596323804fd6049f8dea3ed12472c257a5d6b8", + "fields": { + "code_commune_insee": "54090", + "nom_de_la_commune": "BOUXIERES AUX DAMES", + "code_postal": "54136", + "coordonnees_gps": [ + 48.7585901427, + 6.16355504539 + ], + "libelle_d_acheminement": "BOUXIERES AUX DAMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16355504539, + 48.7585901427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ccba6d5ebbb3808ec66c8f5ced9422de22df144", + "fields": { + "code_commune_insee": "46041", + "nom_de_la_commune": "CADRIEU", + "code_postal": "46160", + "coordonnees_gps": [ + 44.4996325916, + 1.87599580969 + ], + "libelle_d_acheminement": "CADRIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87599580969, + 44.4996325916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a857ff6c00d6a66d6859c2ff16e9e0589ce8f31", + "fields": { + "code_commune_insee": "54092", + "nom_de_la_commune": "BOUZANVILLE", + "code_postal": "54930", + "coordonnees_gps": [ + 48.3707663422, + 6.10733218681 + ], + "libelle_d_acheminement": "BOUZANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10733218681, + 48.3707663422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15d32e89ca3735a38696e9d4fd419297948e1601", + "fields": { + "code_commune_insee": "46044", + "nom_de_la_commune": "CAILLAC", + "code_postal": "46140", + "coordonnees_gps": [ + 44.4923815798, + 1.34696885739 + ], + "libelle_d_acheminement": "CAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34696885739, + 44.4923815798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cbeded3eb60f6425183a20aa81807b5aaeb6304", + "fields": { + "code_commune_insee": "54098", + "nom_de_la_commune": "BREMONCOURT", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4918994073, + 6.35995262318 + ], + "libelle_d_acheminement": "BREMONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35995262318, + 48.4918994073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ee58e3e90945f5b800c3339339005ab65cf55ea", + "fields": { + "code_commune_insee": "46046", + "nom_de_la_commune": "CALAMANE", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5198122343, + 1.41032272742 + ], + "libelle_d_acheminement": "CALAMANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41032272742, + 44.5198122343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e59342f3ebbbdb12c1b920646fd43835a0226a0e", + "fields": { + "ligne_5": "BRIEY", + "code_commune_insee": "54099", + "libelle_d_acheminement": "VAL DE BRIEY", + "code_postal": "54150", + "nom_de_la_commune": "VAL DE BRIEY", + "coordonnees_gps": [ + 49.2557914726, + 5.97046491466 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97046491466, + 49.2557914726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "793b0843314b6215eae23d6b50b8b217142c7c5a", + "fields": { + "code_commune_insee": "46054", + "nom_de_la_commune": "CANIAC DU CAUSSE", + "code_postal": "46240", + "coordonnees_gps": [ + 44.6300356626, + 1.65611420144 + ], + "libelle_d_acheminement": "CANIAC DU CAUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65611420144, + 44.6300356626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "267a9b34574d53749138f08382d3af9344233bbd", + "fields": { + "code_commune_insee": "54104", + "nom_de_la_commune": "BUISSONCOURT", + "code_postal": "54110", + "coordonnees_gps": [ + 48.6826232641, + 6.34150058691 + ], + "libelle_d_acheminement": "BUISSONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34150058691, + 48.6826232641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "850df00798c834dd32843955f5f2710262c563ad", + "fields": { + "code_commune_insee": "46060", + "nom_de_la_commune": "CARNAC ROUFFIAC", + "code_postal": "46140", + "coordonnees_gps": [ + 44.4171586039, + 1.22177505149 + ], + "libelle_d_acheminement": "CARNAC ROUFFIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22177505149, + 44.4171586039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1db93d2765942692c7f7431137021f0df2430d73", + "fields": { + "code_commune_insee": "54108", + "nom_de_la_commune": "BURTHECOURT AUX CHENES", + "code_postal": "54210", + "coordonnees_gps": [ + 48.5777526054, + 6.24827376448 + ], + "libelle_d_acheminement": "BURTHECOURT AUX CHENES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24827376448, + 48.5777526054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f5d8fe8ed34283563af36c15d16d0112fd41640", + "fields": { + "code_commune_insee": "46066", + "nom_de_la_commune": "CAZALS", + "code_postal": "46250", + "coordonnees_gps": [ + 44.6457631404, + 1.22061089675 + ], + "libelle_d_acheminement": "CAZALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22061089675, + 44.6457631404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c796a70011475e647538a3504e784b79c764463", + "fields": { + "code_commune_insee": "54113", + "nom_de_la_commune": "CHAMPENOUX", + "code_postal": "54280", + "coordonnees_gps": [ + 48.7344291014, + 6.35304245931 + ], + "libelle_d_acheminement": "CHAMPENOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35304245931, + 48.7344291014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3167a47f74b466bbb651680e0276061df95fae32", + "fields": { + "code_commune_insee": "46074", + "nom_de_la_commune": "CONDAT", + "code_postal": "46110", + "coordonnees_gps": [ + 44.9916728807, + 1.67036030848 + ], + "libelle_d_acheminement": "CONDAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67036030848, + 44.9916728807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e7cbb3a5ab60a7449c27395443d34100ee8de7d", + "fields": { + "code_commune_insee": "54119", + "nom_de_la_commune": "CHAREY", + "code_postal": "54470", + "coordonnees_gps": [ + 48.9959312747, + 5.86520504315 + ], + "libelle_d_acheminement": "CHAREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86520504315, + 48.9959312747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa9dd621e39e5dfe3feaa9b485e8f5e7f4e5ff51", + "fields": { + "code_commune_insee": "46081", + "nom_de_la_commune": "CREGOLS", + "code_postal": "46330", + "coordonnees_gps": [ + 44.429580085, + 1.6857006854 + ], + "libelle_d_acheminement": "CREGOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6857006854, + 44.429580085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d44db8705f83aaeeccda94b7b18406a4f6fec84", + "fields": { + "code_commune_insee": "54128", + "nom_de_la_commune": "CHOLOY MENILLOT", + "code_postal": "54200", + "coordonnees_gps": [ + 48.6534236231, + 5.80737190718 + ], + "libelle_d_acheminement": "CHOLOY MENILLOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80737190718, + 48.6534236231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e43533a21cbde2da4c2b1d8d82440e4665bd9b66", + "fields": { + "code_commune_insee": "46097", + "nom_de_la_commune": "ESTAL", + "code_postal": "46130", + "coordonnees_gps": [ + 44.9193285418, + 1.91880253206 + ], + "libelle_d_acheminement": "ESTAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91880253206, + 44.9193285418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5d2be7ec0bc6f21f439e7d1ae3a5f05d27b77b2", + "fields": { + "ligne_5": "MENILLOT", + "code_commune_insee": "54128", + "libelle_d_acheminement": "CHOLOY MENILLOT", + "code_postal": "54200", + "nom_de_la_commune": "CHOLOY MENILLOT", + "coordonnees_gps": [ + 48.6534236231, + 5.80737190718 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80737190718, + 48.6534236231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7efcdd78c418e244304679f67e35ac013681ed0e", + "fields": { + "ligne_5": "FLAUGNAC", + "code_commune_insee": "46103", + "libelle_d_acheminement": "ST PAUL FLAUGNAC", + "code_postal": "46170", + "nom_de_la_commune": "ST PAUL FLAUGNAC", + "coordonnees_gps": [ + 44.2910612603, + 1.40914730428 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.40914730428, + 44.2910612603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44dd4bc18e841bd5cfee148ae6fcb79f2e876b40", + "fields": { + "code_commune_insee": "54129", + "nom_de_la_commune": "CIREY SUR VEZOUZE", + "code_postal": "54480", + "coordonnees_gps": [ + 48.5858686466, + 6.9448900006 + ], + "libelle_d_acheminement": "CIREY SUR VEZOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9448900006, + 48.5858686466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c7bc4f4fd5194fe379d50aa14db913b2a7f8344", + "fields": { + "code_commune_insee": "46104", + "nom_de_la_commune": "FLAUJAC GARE", + "code_postal": "46320", + "coordonnees_gps": [ + 44.707043004, + 1.77185249529 + ], + "libelle_d_acheminement": "FLAUJAC GARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77185249529, + 44.707043004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91038e0faffadbfcb88b51dfb550d969e59580a9", + "fields": { + "code_commune_insee": "54132", + "nom_de_la_commune": "CLEREY SUR BRENON", + "code_postal": "54330", + "coordonnees_gps": [ + 48.5062432638, + 6.13755407578 + ], + "libelle_d_acheminement": "CLEREY SUR BRENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13755407578, + 48.5062432638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49425075ea69a7c95c5e12e71bd97526137212e0", + "fields": { + "code_commune_insee": "46121", + "nom_de_la_commune": "GINOUILLAC", + "code_postal": "46300", + "coordonnees_gps": [ + 44.726806862, + 1.53672996864 + ], + "libelle_d_acheminement": "GINOUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53672996864, + 44.726806862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a722c04e73450e587f0ba12ccafebad3a45f667b", + "fields": { + "code_commune_insee": "54133", + "nom_de_la_commune": "COINCOURT", + "code_postal": "54370", + "coordonnees_gps": [ + 48.7020703567, + 6.61728962108 + ], + "libelle_d_acheminement": "COINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61728962108, + 48.7020703567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b476e6dade440b8e2c15c9e917571ef0f179c12", + "fields": { + "code_commune_insee": "46124", + "nom_de_la_commune": "GLANES", + "code_postal": "46130", + "coordonnees_gps": [ + 44.9190594045, + 1.87327454002 + ], + "libelle_d_acheminement": "GLANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87327454002, + 44.9190594045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac686733c52cf604cea5da9a32440297588541b5", + "fields": { + "code_commune_insee": "54139", + "nom_de_la_commune": "COURBESSEAUX", + "code_postal": "54110", + "coordonnees_gps": [ + 48.6914376855, + 6.4022815813 + ], + "libelle_d_acheminement": "COURBESSEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4022815813, + 48.6914376855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f597220201dc0f246d84d22b145606a41ff3f6d0", + "fields": { + "code_commune_insee": "46127", + "nom_de_la_commune": "GOURDON", + "code_postal": "46300", + "coordonnees_gps": [ + 44.734795608, + 1.37712768596 + ], + "libelle_d_acheminement": "GOURDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37712768596, + 44.734795608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce13f5bf675ac2fefa4262b90c9a2e9c2a6cf539", + "fields": { + "code_commune_insee": "54140", + "nom_de_la_commune": "COURCELLES", + "code_postal": "54930", + "coordonnees_gps": [ + 48.3691022452, + 6.03113443127 + ], + "libelle_d_acheminement": "COURCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03113443127, + 48.3691022452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "067d77472815cd8a6345242dd956ded67449124b", + "fields": { + "code_commune_insee": "46135", + "nom_de_la_commune": "LABASTIDE DU HAUT MONT", + "code_postal": "46210", + "coordonnees_gps": [ + 44.828705363, + 2.11362965204 + ], + "libelle_d_acheminement": "LABASTIDE DU HAUT MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11362965204, + 44.828705363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58c5be9645dce38670dc75682b11118c7fcc9d48", + "fields": { + "code_commune_insee": "54146", + "nom_de_la_commune": "CREZILLES", + "code_postal": "54113", + "coordonnees_gps": [ + 48.5822792016, + 5.88930622746 + ], + "libelle_d_acheminement": "CREZILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88930622746, + 48.5822792016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85836ea337db54d3f4c5bb963f06cb194ac535eb", + "fields": { + "ligne_5": "LABASTIDE MURAT", + "code_commune_insee": "46138", + "libelle_d_acheminement": "COEUR DE CAUSSE", + "code_postal": "46240", + "nom_de_la_commune": "COEUR DE CAUSSE", + "coordonnees_gps": [ + 44.6484325779, + 1.58028882268 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58028882268, + 44.6484325779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cd4f6c840cbafe2656cd38d2635410ec922877b", + "fields": { + "code_commune_insee": "54148", + "nom_de_la_commune": "CROISMARE", + "code_postal": "54300", + "coordonnees_gps": [ + 48.6126708787, + 6.57201025704 + ], + "libelle_d_acheminement": "CROISMARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57201025704, + 48.6126708787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "304c97f952deeb78b117dbc0288da83183502dc4", + "fields": { + "ligne_5": "VAILLAC", + "code_commune_insee": "46138", + "libelle_d_acheminement": "COEUR DE CAUSSE", + "code_postal": "46240", + "nom_de_la_commune": "COEUR DE CAUSSE", + "coordonnees_gps": [ + 44.6484325779, + 1.58028882268 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58028882268, + 44.6484325779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9170e98a65bf1c1b852135bb81495cc20af36cc5", + "fields": { + "code_commune_insee": "54152", + "nom_de_la_commune": "DAMELEVIERES", + "code_postal": "54360", + "coordonnees_gps": [ + 48.5664288239, + 6.39207304688 + ], + "libelle_d_acheminement": "DAMELEVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39207304688, + 48.5664288239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3412798de57bb0c057ff57f9705311ec940f7686", + "fields": { + "code_commune_insee": "46145", + "nom_de_la_commune": "LACHAPELLE AUZAC", + "code_postal": "46200", + "coordonnees_gps": [ + 44.9380023584, + 1.48031197912 + ], + "libelle_d_acheminement": "LACHAPELLE AUZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48031197912, + 44.9380023584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cd8a9ecd0b026f0671a45241fc000abcdb47d80", + "fields": { + "code_commune_insee": "54153", + "nom_de_la_commune": "DAMPVITOUX", + "code_postal": "54470", + "coordonnees_gps": [ + 49.0062419838, + 5.83175566603 + ], + "libelle_d_acheminement": "DAMPVITOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83175566603, + 49.0062419838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "001b03fb5f9a6594000182c08e1bf92fff3a1282", + "fields": { + "code_commune_insee": "46152", + "nom_de_la_commune": "LAMOTHE FENELON", + "code_postal": "46350", + "coordonnees_gps": [ + 44.827504864, + 1.42494397821 + ], + "libelle_d_acheminement": "LAMOTHE FENELON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42494397821, + 44.827504864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2eef1620c198b724a788f69cb0eaa874171fe23", + "fields": { + "code_commune_insee": "54157", + "nom_de_la_commune": "DIEULOUARD", + "code_postal": "54380", + "coordonnees_gps": [ + 48.8340364411, + 6.05567802778 + ], + "libelle_d_acheminement": "DIEULOUARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05567802778, + 48.8340364411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad91d20682341089e6d0c85700892826f86db411", + "fields": { + "code_commune_insee": "46153", + "nom_de_la_commune": "LANZAC", + "code_postal": "46200", + "coordonnees_gps": [ + 44.8698887305, + 1.46972764942 + ], + "libelle_d_acheminement": "LANZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46972764942, + 44.8698887305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aba07b0359b9f8690820f414aac51722cd4421ed", + "fields": { + "code_commune_insee": "54161", + "nom_de_la_commune": "DOMEVRE SUR VEZOUZE", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5610695418, + 6.80087230375 + ], + "libelle_d_acheminement": "DOMEVRE SUR VEZOUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80087230375, + 48.5610695418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6268009f48b2abc499f5b930a19410ad27ad582", + "fields": { + "code_commune_insee": "46161", + "nom_de_la_commune": "LAURESSES", + "code_postal": "46210", + "coordonnees_gps": [ + 44.7840183574, + 2.10885299987 + ], + "libelle_d_acheminement": "LAURESSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10885299987, + 44.7840183574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cf3621446d675d4d2e48ee0da6791c56e5c36e8", + "fields": { + "code_commune_insee": "54162", + "nom_de_la_commune": "DOMGERMAIN", + "code_postal": "54119", + "coordonnees_gps": [ + 48.6414563077, + 5.82353906952 + ], + "libelle_d_acheminement": "DOMGERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82353906952, + 48.6414563077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c5148eeeb0acd295fcbbf0b99094c631d69aa91", + "fields": { + "code_commune_insee": "46162", + "nom_de_la_commune": "LAUZES", + "code_postal": "46360", + "coordonnees_gps": [ + 44.5630061039, + 1.57779528998 + ], + "libelle_d_acheminement": "LAUZES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57779528998, + 44.5630061039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba939b85efa3ba77a189e6f93c5ea13015e2c05", + "fields": { + "code_commune_insee": "54163", + "nom_de_la_commune": "DOMJEVIN", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5805107093, + 6.69825075007 + ], + "libelle_d_acheminement": "DOMJEVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69825075007, + 48.5805107093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c13e72f4da93f8f1404be60983bd139738ca309a", + "fields": { + "code_commune_insee": "46169", + "nom_de_la_commune": "LEOBARD", + "code_postal": "46300", + "coordonnees_gps": [ + 44.7183844111, + 1.30807324893 + ], + "libelle_d_acheminement": "LEOBARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30807324893, + 44.7183844111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7e94381da4aee83db8dc86aa7d53f2e3d5ecc14", + "fields": { + "code_commune_insee": "54168", + "nom_de_la_commune": "DOMMARTIN SOUS AMANCE", + "code_postal": "54770", + "coordonnees_gps": [ + 48.7347808105, + 6.25195648696 + ], + "libelle_d_acheminement": "DOMMARTIN SOUS AMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25195648696, + 48.7347808105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6591007548667cd824c4bb2f7eb0c50d5dc09124", + "fields": { + "code_commune_insee": "46172", + "nom_de_la_commune": "LHOSPITALET", + "code_postal": "46170", + "coordonnees_gps": [ + 44.3536160886, + 1.42807252232 + ], + "libelle_d_acheminement": "LHOSPITALET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.42807252232, + 44.3536160886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e96fb62783b4991ecb9e0d1cb736859954506cb", + "fields": { + "ligne_5": "BERTRAMEIX", + "code_commune_insee": "54169", + "libelle_d_acheminement": "DOMPRIX", + "code_postal": "54490", + "nom_de_la_commune": "DOMPRIX", + "coordonnees_gps": [ + 49.3288239969, + 5.76432925243 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76432925243, + 49.3288239969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b417a37728fdce077759f3b91463f0007b3ab4ba", + "fields": { + "code_commune_insee": "46174", + "nom_de_la_commune": "LINAC", + "code_postal": "46270", + "coordonnees_gps": [ + 44.6765020305, + 2.11729351761 + ], + "libelle_d_acheminement": "LINAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11729351761, + 44.6765020305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c3b46c2aa671aaa6eb4ff980704fd242b88abbd", + "fields": { + "code_commune_insee": "54171", + "nom_de_la_commune": "DONCOURT LES CONFLANS", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1460686126, + 5.93149020305 + ], + "libelle_d_acheminement": "DONCOURT LES CONFLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93149020305, + 49.1460686126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "804d6e70818a77cf11e48a149d9e398df77b6e15", + "fields": { + "code_commune_insee": "46178", + "nom_de_la_commune": "LOUPIAC", + "code_postal": "46350", + "coordonnees_gps": [ + 44.826492947, + 1.47337068734 + ], + "libelle_d_acheminement": "LOUPIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47337068734, + 44.826492947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7f7b58b7c07f96f45ae26d0b38b4a62b7fc8126", + "fields": { + "code_commune_insee": "54173", + "nom_de_la_commune": "DROUVILLE", + "code_postal": "54370", + "coordonnees_gps": [ + 48.670392727, + 6.41174385859 + ], + "libelle_d_acheminement": "DROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41174385859, + 48.670392727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13a9a33aeb0d8c2b88bd3610b6d70e6d6ff88512", + "fields": { + "code_commune_insee": "46179", + "nom_de_la_commune": "LUGAGNAC", + "code_postal": "46260", + "coordonnees_gps": [ + 44.412063989, + 1.72089592713 + ], + "libelle_d_acheminement": "LUGAGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72089592713, + 44.412063989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d79f27707d5ee9c60b26d40d08107b7f165d0e90", + "fields": { + "ligne_5": "GRAND MENIL", + "code_commune_insee": "54174", + "libelle_d_acheminement": "ECROUVES", + "code_postal": "54200", + "nom_de_la_commune": "ECROUVES", + "coordonnees_gps": [ + 48.6801928361, + 5.84268931795 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84268931795, + 48.6801928361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30ed3b186a4a7900ca2f701c4def1dcc6ff1c498", + "fields": { + "code_commune_insee": "46183", + "nom_de_la_commune": "MARCILHAC SUR CELE", + "code_postal": "46160", + "coordonnees_gps": [ + 44.5442171606, + 1.77401104203 + ], + "libelle_d_acheminement": "MARCILHAC SUR CELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77401104203, + 44.5442171606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d142cd134caad61adaa53d4cda14ba37594c748d", + "fields": { + "code_commune_insee": "54178", + "nom_de_la_commune": "EPIEZ SUR CHIERS", + "code_postal": "54260", + "coordonnees_gps": [ + 49.5006972676, + 5.50053332941 + ], + "libelle_d_acheminement": "EPIEZ SUR CHIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50053332941, + 49.5006972676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "798a3d3c38334fa5868feffadb3e90b7c37220ee", + "fields": { + "code_commune_insee": "46184", + "nom_de_la_commune": "MARMINIAC", + "code_postal": "46250", + "coordonnees_gps": [ + 44.6622898108, + 1.18403946197 + ], + "libelle_d_acheminement": "MARMINIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18403946197, + 44.6622898108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abe62dd5b8c109444d46ef59870f63aa96dff454", + "fields": { + "code_commune_insee": "54179", + "nom_de_la_commune": "EPLY", + "code_postal": "54610", + "coordonnees_gps": [ + 48.9252261568, + 6.18124047726 + ], + "libelle_d_acheminement": "EPLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18124047726, + 48.9252261568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8130e3cf09f8fa34cac942310074cbc9e9cb5585", + "fields": { + "code_commune_insee": "46192", + "nom_de_la_commune": "MEYRONNE", + "code_postal": "46200", + "coordonnees_gps": [ + 44.8678105571, + 1.58876671405 + ], + "libelle_d_acheminement": "MEYRONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58876671405, + 44.8678105571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8d6e73800373f67f204d1712eb797056d254113", + "fields": { + "code_commune_insee": "54188", + "nom_de_la_commune": "FAULX", + "code_postal": "54760", + "coordonnees_gps": [ + 48.7924837201, + 6.19928293851 + ], + "libelle_d_acheminement": "FAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19928293851, + 48.7924837201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c07913aba81541d8715aec4d452f676406a6d72", + "fields": { + "code_commune_insee": "46199", + "nom_de_la_commune": "MONTCABRIER", + "code_postal": "46700", + "coordonnees_gps": [ + 44.5509026435, + 1.0816003002 + ], + "libelle_d_acheminement": "MONTCABRIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0816003002, + 44.5509026435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "060e58721b90f3e8d76c4fbdeade4b952a243636", + "fields": { + "code_commune_insee": "54189", + "nom_de_la_commune": "FAVIERES", + "code_postal": "54115", + "coordonnees_gps": [ + 48.4573518357, + 5.93381901381 + ], + "libelle_d_acheminement": "FAVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93381901381, + 48.4573518357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e4753a8b06a7829436be96ee5182de795dc0541", + "fields": { + "code_commune_insee": "46223", + "nom_de_la_commune": "PONTCIRQ", + "code_postal": "46150", + "coordonnees_gps": [ + 44.5453068327, + 1.26488009495 + ], + "libelle_d_acheminement": "PONTCIRQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26488009495, + 44.5453068327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b09725148ca4f19c77f1332824c1170b7d2ea4d", + "fields": { + "code_commune_insee": "54190", + "nom_de_la_commune": "FECOCOURT", + "code_postal": "54115", + "coordonnees_gps": [ + 48.4030210268, + 6.00201019233 + ], + "libelle_d_acheminement": "FECOCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00201019233, + 48.4030210268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "609eb8c37954084dfc052dfa90ecbdd64a0aaf93", + "fields": { + "code_commune_insee": "46227", + "nom_de_la_commune": "PROMILHANES", + "code_postal": "46260", + "coordonnees_gps": [ + 44.3763205696, + 1.83026899393 + ], + "libelle_d_acheminement": "PROMILHANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83026899393, + 44.3763205696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "977e1abd5e0485971499bd590499f19661dcc3a3", + "fields": { + "code_commune_insee": "54195", + "nom_de_la_commune": "FLAINVAL", + "code_postal": "54110", + "coordonnees_gps": [ + 48.6185325751, + 6.39765353038 + ], + "libelle_d_acheminement": "FLAINVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39765353038, + 48.6185325751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "319d2ffd5cf4efd4d133216832d3f53f4ac8c637", + "fields": { + "code_commune_insee": "46231", + "nom_de_la_commune": "PUY L EVEQUE", + "code_postal": "46700", + "coordonnees_gps": [ + 44.5166104791, + 1.13576954751 + ], + "libelle_d_acheminement": "PUY L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13576954751, + 44.5166104791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63fada0387af816ed1c4df22dc708debebe0f190", + "fields": { + "code_commune_insee": "54201", + "nom_de_la_commune": "FONTENOY LA JOUTE", + "code_postal": "54122", + "coordonnees_gps": [ + 48.4492444301, + 6.65552222431 + ], + "libelle_d_acheminement": "FONTENOY LA JOUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65552222431, + 48.4492444301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37d2d9836fec7e69e990c176fa1a4e2f2a4d7b40", + "fields": { + "code_commune_insee": "46233", + "nom_de_la_commune": "QUISSAC", + "code_postal": "46320", + "coordonnees_gps": [ + 44.6246336398, + 1.71917437055 + ], + "libelle_d_acheminement": "QUISSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71917437055, + 44.6246336398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "542cc57104d2baca2aab5d5fc55f9e73bf3726bc", + "fields": { + "code_commune_insee": "54203", + "nom_de_la_commune": "FORCELLES ST GORGON", + "code_postal": "54330", + "coordonnees_gps": [ + 48.45687195, + 6.10382987514 + ], + "libelle_d_acheminement": "FORCELLES ST GORGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10382987514, + 48.45687195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f9078d2b82201bbfd3f1262bf2531ebd2418464", + "fields": { + "code_commune_insee": "46236", + "nom_de_la_commune": "REILHAGUET", + "code_postal": "46350", + "coordonnees_gps": [ + 44.7790219668, + 1.50802496994 + ], + "libelle_d_acheminement": "REILHAGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50802496994, + 44.7790219668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44d715f6e3edbeffba2f4d19a747b234b6263cdf", + "fields": { + "code_commune_insee": "54204", + "nom_de_la_commune": "FORCELLES SOUS GUGNEY", + "code_postal": "54930", + "coordonnees_gps": [ + 48.3923639107, + 6.08482336842 + ], + "libelle_d_acheminement": "FORCELLES SOUS GUGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08482336842, + 48.3923639107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66f818ddfb52bea7ea4fffbc94244979967e22b5", + "fields": { + "code_commune_insee": "46237", + "nom_de_la_commune": "REYREVIGNES", + "code_postal": "46320", + "coordonnees_gps": [ + 44.6454378088, + 1.9117181352 + ], + "libelle_d_acheminement": "REYREVIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9117181352, + 44.6454378088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e10ed28141137c6a4eb80bc20b90628d670c112e", + "fields": { + "code_commune_insee": "54209", + "nom_de_la_commune": "FRANCONVILLE", + "code_postal": "54830", + "coordonnees_gps": [ + 48.5002554952, + 6.4513145872 + ], + "libelle_d_acheminement": "FRANCONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4513145872, + 48.5002554952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f883d233c7031c5d52cf8426e2a815961873a7a", + "fields": { + "code_commune_insee": "46243", + "nom_de_la_commune": "RUEYRES", + "code_postal": "46120", + "coordonnees_gps": [ + 44.7537580585, + 1.85554615594 + ], + "libelle_d_acheminement": "RUEYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85554615594, + 44.7537580585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42580a78c56533afbe4182fc41318c2a7e2e9c4f", + "fields": { + "code_commune_insee": "54215", + "nom_de_la_commune": "FROUARD", + "code_postal": "54390", + "coordonnees_gps": [ + 48.7504210433, + 6.12310457526 + ], + "libelle_d_acheminement": "FROUARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12310457526, + 48.7504210433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c65cf1209fc252dad6ec7267a947f7ff12d43f9b", + "fields": { + "code_commune_insee": "46250", + "nom_de_la_commune": "ST CAPRAIS", + "code_postal": "46250", + "coordonnees_gps": [ + 44.6129548228, + 1.15458264598 + ], + "libelle_d_acheminement": "ST CAPRAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15458264598, + 44.6129548228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cc21237619c3269a84689eb1fa92a7d7c737464", + "fields": { + "code_commune_insee": "54217", + "nom_de_la_commune": "GELACOURT", + "code_postal": "54120", + "coordonnees_gps": [ + 48.4762022357, + 6.73171604271 + ], + "libelle_d_acheminement": "GELACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73171604271, + 48.4762022357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8e658027a364c3bf97600ef6d47d8c6c375b3e5", + "fields": { + "ligne_5": "ST CERNIN", + "code_commune_insee": "46252", + "libelle_d_acheminement": "LES PECHS DU VERS", + "code_postal": "46360", + "nom_de_la_commune": "LES PECHS DU VERS", + "coordonnees_gps": [ + 44.5992781487, + 1.58540945458 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58540945458, + 44.5992781487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8e01e7a483893215ada137c9e240992f7fd2f9f", + "fields": { + "code_commune_insee": "54218", + "nom_de_la_commune": "GELAUCOURT", + "code_postal": "54115", + "coordonnees_gps": [ + 48.4586790205, + 5.98828502243 + ], + "libelle_d_acheminement": "GELAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98828502243, + 48.4586790205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87040c5d0b41ec5700f93ecd997fcfb644dcc156", + "fields": { + "code_commune_insee": "46254", + "nom_de_la_commune": "ST CHELS", + "code_postal": "46160", + "coordonnees_gps": [ + 44.5261400894, + 1.81487808912 + ], + "libelle_d_acheminement": "ST CHELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81487808912, + 44.5261400894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "958e999952ce3488f3ad107f3161cc32bf9789fc", + "fields": { + "code_commune_insee": "54222", + "nom_de_la_commune": "GERBEVILLER", + "code_postal": "54830", + "coordonnees_gps": [ + 48.4934294526, + 6.51089844698 + ], + "libelle_d_acheminement": "GERBEVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51089844698, + 48.4934294526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93de9ba4eab8e88a2c68a545b1333914f51d8025", + "fields": { + "code_commune_insee": "46259", + "nom_de_la_commune": "ST CLAIR", + "code_postal": "46300", + "coordonnees_gps": [ + 44.6939193723, + 1.39885688127 + ], + "libelle_d_acheminement": "ST CLAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39885688127, + 44.6939193723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbac96a5e16140ad398ad75afc106eb62c07eefe", + "fields": { + "code_commune_insee": "54223", + "nom_de_la_commune": "GERMINY", + "code_postal": "54170", + "coordonnees_gps": [ + 48.5465882829, + 6.00157138294 + ], + "libelle_d_acheminement": "GERMINY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00157138294, + 48.5465882829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e28d619af9293618ce84e739d10374a052f99a5", + "fields": { + "ligne_5": "ST CYPRIEN", + "code_commune_insee": "46262", + "libelle_d_acheminement": "LENDOU EN QUERCY", + "code_postal": "46800", + "nom_de_la_commune": "LENDOU EN QUERCY", + "coordonnees_gps": [ + 44.3040998679, + 1.26251296057 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.26251296057, + 44.3040998679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc54d9ffbd0fca6818a37fa44341548f545e02ca", + "fields": { + "code_commune_insee": "54224", + "nom_de_la_commune": "GERMONVILLE", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4096245856, + 6.21787659153 + ], + "libelle_d_acheminement": "GERMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.21787659153, + 48.4096245856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f4dde0dab80f8883f1dc2df70c174a78769358e", + "fields": { + "code_commune_insee": "46273", + "nom_de_la_commune": "ST LAURENT LES TOURS", + "code_postal": "46400", + "coordonnees_gps": [ + 44.8817459131, + 1.90434395957 + ], + "libelle_d_acheminement": "ST LAURENT LES TOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90434395957, + 44.8817459131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d0dc0bc0776b7a5bd6f6379b29ba79912ac61ce", + "fields": { + "code_commune_insee": "54227", + "nom_de_la_commune": "GIRAUMONT", + "code_postal": "54780", + "coordonnees_gps": [ + 49.173261325, + 5.91605842347 + ], + "libelle_d_acheminement": "GIRAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91605842347, + 49.173261325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd16d7b19293b7a798c90b7e250ab823ae41e57a", + "fields": { + "code_commune_insee": "46286", + "nom_de_la_commune": "ST PAUL DE VERN", + "code_postal": "46400", + "coordonnees_gps": [ + 44.8378106011, + 1.94214207363 + ], + "libelle_d_acheminement": "ST PAUL DE VERN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94214207363, + 44.8378106011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7190ab816405297d09b6c23ca0133da184ca7d38", + "fields": { + "code_commune_insee": "54233", + "nom_de_la_commune": "GONDREXON", + "code_postal": "54450", + "coordonnees_gps": [ + 48.6046029179, + 6.766784271 + ], + "libelle_d_acheminement": "GONDREXON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.766784271, + 48.6046029179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b48635964b4b8608c7d574a5b417283b6dd6432a", + "fields": { + "code_commune_insee": "46299", + "nom_de_la_commune": "SAULIAC SUR CELE", + "code_postal": "46330", + "coordonnees_gps": [ + 44.5227418077, + 1.71784528789 + ], + "libelle_d_acheminement": "SAULIAC SUR CELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71784528789, + 44.5227418077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a86efb1390eb32b6efacfd06b74175cb26d69e71", + "fields": { + "code_commune_insee": "54235", + "nom_de_la_commune": "GOVILLER", + "code_postal": "54330", + "coordonnees_gps": [ + 48.5051745323, + 6.01397377452 + ], + "libelle_d_acheminement": "GOVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01397377452, + 48.5051745323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af4ccf553ce96f47e5937698eef80cd6f19cb877", + "fields": { + "code_commune_insee": "46301", + "nom_de_la_commune": "SAUZET", + "code_postal": "46140", + "coordonnees_gps": [ + 44.418405817, + 1.25953529906 + ], + "libelle_d_acheminement": "SAUZET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25953529906, + 44.418405817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6e99e5bbb0f8bd15f8d0e89354065c841634364", + "fields": { + "code_commune_insee": "54236", + "nom_de_la_commune": "GRAND FAILLY", + "code_postal": "54260", + "coordonnees_gps": [ + 49.4211588157, + 5.52020012648 + ], + "libelle_d_acheminement": "GRAND FAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52020012648, + 49.4211588157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d34d3bde222520efc1c636dd17c51c060ec1f27", + "fields": { + "code_commune_insee": "46308", + "nom_de_la_commune": "SOUCIRAC", + "code_postal": "46300", + "coordonnees_gps": [ + 44.7068820239, + 1.50396524795 + ], + "libelle_d_acheminement": "SOUCIRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50396524795, + 44.7068820239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a768236c7917f77f9be4504ff160ca714ee1fc1", + "fields": { + "ligne_5": "PETIT XIVRY", + "code_commune_insee": "54236", + "libelle_d_acheminement": "GRAND FAILLY", + "code_postal": "54260", + "nom_de_la_commune": "GRAND FAILLY", + "coordonnees_gps": [ + 49.4211588157, + 5.52020012648 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52020012648, + 49.4211588157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08af3f687483c11b2c3f1e41cc56ceffe6f62f99", + "fields": { + "ligne_5": "CALVIAC", + "code_commune_insee": "46311", + "libelle_d_acheminement": "SOUSCEYRAC EN QUERCY", + "code_postal": "46190", + "nom_de_la_commune": "SOUSCEYRAC EN QUERCY", + "coordonnees_gps": [ + 44.8806327764, + 2.03547276303 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03547276303, + 44.8806327764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a82b509b28aa06c8fffcf9449a75e7937ab7984", + "fields": { + "code_commune_insee": "54238", + "nom_de_la_commune": "GRIPPORT", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4156194741, + 6.24799886583 + ], + "libelle_d_acheminement": "GRIPPORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24799886583, + 48.4156194741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b3d2b122b3c81d4d9bb1125b3a5467118ae73c4", + "fields": { + "code_commune_insee": "46313", + "nom_de_la_commune": "TAURIAC", + "code_postal": "46130", + "coordonnees_gps": [ + 44.9103810308, + 1.77420237883 + ], + "libelle_d_acheminement": "TAURIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77420237883, + 44.9103810308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e62e3d0156976f51071d111930f422b039a08197", + "fields": { + "code_commune_insee": "54243", + "nom_de_la_commune": "HABLAINVILLE", + "code_postal": "54120", + "coordonnees_gps": [ + 48.5156599634, + 6.7191166301 + ], + "libelle_d_acheminement": "HABLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7191166301, + 48.5156599634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d6f66e02b0d97a3036d05834c0daec434978332", + "fields": { + "code_commune_insee": "46328", + "nom_de_la_commune": "VARAIRE", + "code_postal": "46260", + "coordonnees_gps": [ + 44.3684009412, + 1.71781204622 + ], + "libelle_d_acheminement": "VARAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71781204622, + 44.3684009412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "276cb9018706153cbb75905ff4051149ebbfdc43", + "fields": { + "code_commune_insee": "54247", + "nom_de_la_commune": "HAMMEVILLE", + "code_postal": "54330", + "coordonnees_gps": [ + 48.498931189, + 6.07133226205 + ], + "libelle_d_acheminement": "HAMMEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07133226205, + 48.498931189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "089b6077f374485a10c3573709245ecce8532a7a", + "fields": { + "code_commune_insee": "46329", + "nom_de_la_commune": "VAYLATS", + "code_postal": "46230", + "coordonnees_gps": [ + 44.3249960013, + 1.64994675645 + ], + "libelle_d_acheminement": "VAYLATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64994675645, + 44.3249960013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6f4a784e3c6bd905cec1e2b37302632a9fbc70a", + "fields": { + "code_commune_insee": "54251", + "nom_de_la_commune": "HARBOUEY", + "code_postal": "54450", + "coordonnees_gps": [ + 48.5706375328, + 6.89406102379 + ], + "libelle_d_acheminement": "HARBOUEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89406102379, + 48.5706375328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d58d71ac044826f13f8f9b1f8ae45f1fae3530c", + "fields": { + "code_commune_insee": "46334", + "nom_de_la_commune": "LE VIGAN", + "code_postal": "46300", + "coordonnees_gps": [ + 44.7394789138, + 1.45239554217 + ], + "libelle_d_acheminement": "LE VIGAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45239554217, + 44.7394789138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09f732aa319c26d93628824d8b925baebef6c8a6", + "fields": { + "code_commune_insee": "54254", + "nom_de_la_commune": "HAUCOURT MOULAINE", + "code_postal": "54860", + "coordonnees_gps": [ + 49.4965171841, + 5.80666548469 + ], + "libelle_d_acheminement": "HAUCOURT MOULAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80666548469, + 49.4965171841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77650d4984e296c54dfa98b070e35b45edcb8160", + "fields": { + "code_commune_insee": "47003", + "nom_de_la_commune": "AGNAC", + "code_postal": "47800", + "coordonnees_gps": [ + 44.640821375, + 0.382742954809 + ], + "libelle_d_acheminement": "AGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.382742954809, + 44.640821375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c180d01c9429e7bd165904e5f2986db03f4aa086", + "fields": { + "code_commune_insee": "54255", + "nom_de_la_commune": "HAUDONVILLE", + "code_postal": "54830", + "coordonnees_gps": [ + 48.501240806, + 6.47889738033 + ], + "libelle_d_acheminement": "HAUDONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47889738033, + 48.501240806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0bd50875383e1af499c962b4b28ff3d69400ae5", + "fields": { + "code_commune_insee": "47006", + "nom_de_la_commune": "ALLEZ ET CAZENEUVE", + "code_postal": "47110", + "coordonnees_gps": [ + 44.3819408307, + 0.628501205807 + ], + "libelle_d_acheminement": "ALLEZ ET CAZENEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.628501205807, + 44.3819408307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d0d7c99c7d45a3de6a2895a9d95e8da09c9e0b8", + "fields": { + "code_commune_insee": "54265", + "nom_de_la_commune": "HOUDEMONT", + "code_postal": "54180", + "coordonnees_gps": [ + 48.641290785, + 6.1735112537 + ], + "libelle_d_acheminement": "HOUDEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1735112537, + 48.641290785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b634865afd6dafeeb0dfa6a7c0a0526ad96842df", + "fields": { + "code_commune_insee": "47019", + "nom_de_la_commune": "BAJAMONT", + "code_postal": "47480", + "coordonnees_gps": [ + 44.2587889036, + 0.701934519918 + ], + "libelle_d_acheminement": "BAJAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.701934519918, + 44.2587889036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "757dc883e62e53f89572b278b1bee5b2c948b16c", + "fields": { + "code_commune_insee": "54266", + "nom_de_la_commune": "HOUDREVILLE", + "code_postal": "54330", + "coordonnees_gps": [ + 48.513558496, + 6.09894313371 + ], + "libelle_d_acheminement": "HOUDREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09894313371, + 48.513558496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b12e4c6ee04299bd6174af1c0313e1887d9207f", + "fields": { + "code_commune_insee": "47023", + "nom_de_la_commune": "BEAUGAS", + "code_postal": "47290", + "coordonnees_gps": [ + 44.5114048641, + 0.623448360268 + ], + "libelle_d_acheminement": "BEAUGAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.623448360268, + 44.5114048641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec7f80e7f1704634aeb1cb16bc1e0531eb2e7473", + "fields": { + "code_commune_insee": "54270", + "nom_de_la_commune": "HUSSIGNY GODBRANGE", + "code_postal": "54590", + "coordonnees_gps": [ + 49.4955216164, + 5.85614525592 + ], + "libelle_d_acheminement": "HUSSIGNY GODBRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85614525592, + 49.4955216164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56854dc259740e45f0389f4ff4b0faa97e0eb023", + "fields": { + "code_commune_insee": "47026", + "nom_de_la_commune": "BEAUZIAC", + "code_postal": "47700", + "coordonnees_gps": [ + 44.3136376816, + 0.0325531377518 + ], + "libelle_d_acheminement": "BEAUZIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0325531377518, + 44.3136376816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "565e07ce939d92c0ef9d9d84ef6fda551a2cb2f8", + "fields": { + "ligne_5": "DROITAUMONT", + "code_commune_insee": "54273", + "libelle_d_acheminement": "JARNY", + "code_postal": "54800", + "nom_de_la_commune": "JARNY", + "coordonnees_gps": [ + 49.1495784035, + 5.88121522823 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88121522823, + 49.1495784035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3f8c6114b2aee6572e2d76fedd92c4a50279310", + "fields": { + "code_commune_insee": "47035", + "nom_de_la_commune": "BOURGOUGNAGUE", + "code_postal": "47410", + "coordonnees_gps": [ + 44.6190672361, + 0.419708136105 + ], + "libelle_d_acheminement": "BOURGOUGNAGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.419708136105, + 44.6190672361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba40fcbcdf15113fe470bad7003f4f73b7198dc7", + "fields": { + "code_commune_insee": "54276", + "nom_de_la_commune": "JEANDELAINCOURT", + "code_postal": "54114", + "coordonnees_gps": [ + 48.846525852, + 6.24307502417 + ], + "libelle_d_acheminement": "JEANDELAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24307502417, + 48.846525852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fef12c4b7cc3f545c10533ff5bf8627463507a0", + "fields": { + "code_commune_insee": "47043", + "nom_de_la_commune": "BUZET SUR BAISE", + "code_postal": "47160", + "coordonnees_gps": [ + 44.2535434476, + 0.302105091596 + ], + "libelle_d_acheminement": "BUZET SUR BAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.302105091596, + 44.2535434476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4825a38b3d17b6f7bbbaf76bba3de5ba8b916882", + "fields": { + "code_commune_insee": "54277", + "nom_de_la_commune": "JEANDELIZE", + "code_postal": "54800", + "coordonnees_gps": [ + 49.1734340947, + 5.79665152824 + ], + "libelle_d_acheminement": "JEANDELIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79665152824, + 49.1734340947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4be72a04f49ea7c6bee388bdc646373fb469a42b", + "fields": { + "code_commune_insee": "47046", + "nom_de_la_commune": "CALONGES", + "code_postal": "47430", + "coordonnees_gps": [ + 44.373357824, + 0.225583969332 + ], + "libelle_d_acheminement": "CALONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.225583969332, + 44.373357824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b290864cd3576b36409e3339cabe7161d5a7b80", + "fields": { + "code_commune_insee": "54287", + "nom_de_la_commune": "LACHAPELLE", + "code_postal": "54120", + "coordonnees_gps": [ + 48.4179142504, + 6.76909847865 + ], + "libelle_d_acheminement": "LACHAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76909847865, + 48.4179142504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8df627096c2df4bca28fbc4e9712d4173f996e6b", + "fields": { + "code_commune_insee": "47052", + "nom_de_la_commune": "CASTELJALOUX", + "code_postal": "47700", + "coordonnees_gps": [ + 44.3114746788, + 0.0845386197153 + ], + "libelle_d_acheminement": "CASTELJALOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0845386197153, + 44.3114746788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c66480717192c5566339197e6c212a239653e7b3", + "fields": { + "code_commune_insee": "54288", + "nom_de_la_commune": "LAGNEY", + "code_postal": "54200", + "coordonnees_gps": [ + 48.7452329012, + 5.82895253417 + ], + "libelle_d_acheminement": "LAGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82895253417, + 48.7452329012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e07222e9cc6ca5848475b867738d2dd081efd03", + "fields": { + "code_commune_insee": "47055", + "nom_de_la_commune": "CASTELNAUD DE GRATECAMBE", + "code_postal": "47290", + "coordonnees_gps": [ + 44.5023184217, + 0.682922054385 + ], + "libelle_d_acheminement": "CASTELNAUD DE GRATECAMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.682922054385, + 44.5023184217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4049e8569000df3fb77494f8257e6f17ca41e0d8", + "fields": { + "code_commune_insee": "54289", + "nom_de_la_commune": "LAITRE SOUS AMANCE", + "code_postal": "54770", + "coordonnees_gps": [ + 48.7392097523, + 6.27378806825 + ], + "libelle_d_acheminement": "LAITRE SOUS AMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27378806825, + 48.7392097523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "460ebe388c9bebd7124d852931561dad2dffeb55", + "fields": { + "code_commune_insee": "47061", + "nom_de_la_commune": "CAUMONT SUR GARONNE", + "code_postal": "47430", + "coordonnees_gps": [ + 44.4273646306, + 0.180258974885 + ], + "libelle_d_acheminement": "CAUMONT SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.180258974885, + 44.4273646306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e856d4e5dea8a37053f3eab12a7e0fc02b29461", + "fields": { + "code_commune_insee": "54291", + "nom_de_la_commune": "LALOEUF", + "code_postal": "54115", + "coordonnees_gps": [ + 48.4682147408, + 6.00803494037 + ], + "libelle_d_acheminement": "LALOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00803494037, + 48.4682147408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5181b33793193eb9cc192dacd4f906a4ef67f614", + "fields": { + "code_commune_insee": "47072", + "nom_de_la_commune": "COURBIAC", + "code_postal": "47370", + "coordonnees_gps": [ + 44.3764701728, + 1.04053101362 + ], + "libelle_d_acheminement": "COURBIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04053101362, + 44.3764701728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c08217bfbe46b3408421e4aeab631b72772623dc", + "fields": { + "code_commune_insee": "54298", + "nom_de_la_commune": "LANEUVEVILLE DERRIERE FOUG", + "code_postal": "54570", + "coordonnees_gps": [ + 48.7076170761, + 5.80562400536 + ], + "libelle_d_acheminement": "LANEUVEVILLE DERRIERE FOUG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80562400536, + 48.7076170761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaf4a908e905d3aefe34a1b3b02611a89435de9a", + "fields": { + "code_commune_insee": "47077", + "nom_de_la_commune": "CUZORN", + "code_postal": "47500", + "coordonnees_gps": [ + 44.5473969592, + 0.948776133607 + ], + "libelle_d_acheminement": "CUZORN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.948776133607, + 44.5473969592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3d8e7032e4ee32c03c9043bdf4111cd26286abf", + "fields": { + "code_commune_insee": "54301", + "nom_de_la_commune": "LANFROICOURT", + "code_postal": "54760", + "coordonnees_gps": [ + 48.8062964781, + 6.31894910517 + ], + "libelle_d_acheminement": "LANFROICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31894910517, + 48.8062964781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f11b3a3bfdff838bf724e5bb10b1361253b9515", + "fields": { + "code_commune_insee": "47082", + "nom_de_la_commune": "DONDAS", + "code_postal": "47470", + "coordonnees_gps": [ + 44.2400810523, + 0.853095395188 + ], + "libelle_d_acheminement": "DONDAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.853095395188, + 44.2400810523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df944d678decb7d2d5cc55c4d8e6ad92af5fb801", + "fields": { + "ligne_5": "IMMONVILLE", + "code_commune_insee": "54302", + "libelle_d_acheminement": "LANTEFONTAINE", + "code_postal": "54150", + "nom_de_la_commune": "LANTEFONTAINE", + "coordonnees_gps": [ + 49.2533813537, + 5.88651395465 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88651395465, + 49.2533813537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbe7071612f3eb7fb2f405ef8bd705610728d339", + "fields": { + "code_commune_insee": "47084", + "nom_de_la_commune": "DOUZAINS", + "code_postal": "47330", + "coordonnees_gps": [ + 44.636309752, + 0.551520734246 + ], + "libelle_d_acheminement": "DOUZAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.551520734246, + 44.636309752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab18544e53f84225abe217436f04877df5d7844a", + "fields": { + "ligne_5": "LAXOU CHAMPLEBOEUF", + "code_commune_insee": "54304", + "libelle_d_acheminement": "LAXOU", + "code_postal": "54520", + "nom_de_la_commune": "LAXOU", + "coordonnees_gps": [ + 48.6822062614, + 6.11358630152 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11358630152, + 48.6822062614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9886c970f0708579520d96d448679ec4de395db", + "fields": { + "code_commune_insee": "47090", + "nom_de_la_commune": "ESPIENS", + "code_postal": "47600", + "coordonnees_gps": [ + 44.1730548793, + 0.382704055577 + ], + "libelle_d_acheminement": "ESPIENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.382704055577, + 44.1730548793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5abca450a78992b662f92722bd4d594b8991f2a5", + "fields": { + "code_commune_insee": "54305", + "nom_de_la_commune": "LAY ST CHRISTOPHE", + "code_postal": "54690", + "coordonnees_gps": [ + 48.753844505, + 6.19506078007 + ], + "libelle_d_acheminement": "LAY ST CHRISTOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19506078007, + 48.753844505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2db53771098faa9b79ea7aa673604447731fdbde", + "fields": { + "code_commune_insee": "47093", + "nom_de_la_commune": "FARGUES SUR OURBISE", + "code_postal": "47700", + "coordonnees_gps": [ + 44.2302961715, + 0.157664110784 + ], + "libelle_d_acheminement": "FARGUES SUR OURBISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.157664110784, + 44.2302961715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9ca4bd7018f15ef244d57b0dd7579db2aded729", + "fields": { + "code_commune_insee": "54309", + "nom_de_la_commune": "LEMAINVILLE", + "code_postal": "54740", + "coordonnees_gps": [ + 48.5057667643, + 6.18685411561 + ], + "libelle_d_acheminement": "LEMAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18685411561, + 48.5057667643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18e4d4234727399110d66e7e2be6b73e21290a13", + "fields": { + "code_commune_insee": "47104", + "nom_de_la_commune": "FREGIMONT", + "code_postal": "47360", + "coordonnees_gps": [ + 44.2767583726, + 0.46313362397 + ], + "libelle_d_acheminement": "FREGIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.46313362397, + 44.2767583726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "414aeac96206e5c7073952029c6f0beb181f5f8f", + "fields": { + "code_commune_insee": "54313", + "nom_de_la_commune": "LETRICOURT", + "code_postal": "54610", + "coordonnees_gps": [ + 48.8747932305, + 6.285203486 + ], + "libelle_d_acheminement": "LETRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.285203486, + 48.8747932305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2103c2ab0833e53b6267482d86c8b908c2593213", + "fields": { + "code_commune_insee": "47106", + "nom_de_la_commune": "FUMEL", + "code_postal": "47500", + "coordonnees_gps": [ + 44.5082127529, + 0.979557344106 + ], + "libelle_d_acheminement": "FUMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.979557344106, + 44.5082127529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3843abcbbe37048011f56b2510b244123c58a691", + "fields": { + "code_commune_insee": "54314", + "nom_de_la_commune": "LEXY", + "code_postal": "54720", + "coordonnees_gps": [ + 49.5032742592, + 5.72907122522 + ], + "libelle_d_acheminement": "LEXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72907122522, + 49.5032742592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85b723bf66998cd0a3fb75f0b28c2800d105a2dc", + "fields": { + "code_commune_insee": "47109", + "nom_de_la_commune": "GAVAUDUN", + "code_postal": "47150", + "coordonnees_gps": [ + 44.5686971966, + 0.893249631816 + ], + "libelle_d_acheminement": "GAVAUDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.893249631816, + 44.5686971966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b167e7da7b703f3cf6c52e62795ce565c836364", + "fields": { + "code_commune_insee": "54315", + "nom_de_la_commune": "LEYR", + "code_postal": "54760", + "coordonnees_gps": [ + 48.8023774234, + 6.26922360903 + ], + "libelle_d_acheminement": "LEYR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26922360903, + 48.8023774234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29a06d6508c5e01ea688be5500bc41d1e63cd496", + "fields": { + "ligne_5": "ST GAYRAND", + "code_commune_insee": "47112", + "libelle_d_acheminement": "GRATELOUP ST GAYRAND", + "code_postal": "47400", + "nom_de_la_commune": "GRATELOUP ST GAYRAND", + "coordonnees_gps": [ + 44.4181613232, + 0.394930271449 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.394930271449, + 44.4181613232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "044c43a3fe32db1bd5b2170a52831380c690e177", + "fields": { + "ligne_5": "VILLANCY", + "code_commune_insee": "54322", + "libelle_d_acheminement": "LONGUYON", + "code_postal": "54260", + "nom_de_la_commune": "LONGUYON", + "coordonnees_gps": [ + 49.4583667355, + 5.59176459376 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59176459376, + 49.4583667355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7acbe4710afca4a760b5b2558de4a59c137ad0c9", + "fields": { + "code_commune_insee": "47115", + "nom_de_la_commune": "GUERIN", + "code_postal": "47250", + "coordonnees_gps": [ + 44.4120569863, + 0.0588990507581 + ], + "libelle_d_acheminement": "GUERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0588990507581, + 44.4120569863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75eb73fbbf8b317d18201d5b7d0527c02216ff75", + "fields": { + "code_commune_insee": "54330", + "nom_de_la_commune": "LUPCOURT", + "code_postal": "54210", + "coordonnees_gps": [ + 48.6024897309, + 6.22121574013 + ], + "libelle_d_acheminement": "LUPCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22121574013, + 48.6024897309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b478801bf6dd6c411cdac47c73f6c9ea1aa01c4", + "fields": { + "code_commune_insee": "47125", + "nom_de_la_commune": "LACEPEDE", + "code_postal": "47360", + "coordonnees_gps": [ + 44.3190367578, + 0.481134942394 + ], + "libelle_d_acheminement": "LACEPEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.481134942394, + 44.3190367578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1df61c20ba81c971f058d898ef4fac25419872a", + "fields": { + "code_commune_insee": "54335", + "nom_de_la_commune": "MAIXE", + "code_postal": "54370", + "coordonnees_gps": [ + 48.6475415735, + 6.43790356383 + ], + "libelle_d_acheminement": "MAIXE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43790356383, + 48.6475415735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85535737337acc5f848cf4580cd55ea1e32a0f3f", + "fields": { + "code_commune_insee": "47129", + "nom_de_la_commune": "LAGARRIGUE", + "code_postal": "47190", + "coordonnees_gps": [ + 44.2900011672, + 0.385094294194 + ], + "libelle_d_acheminement": "LAGARRIGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.385094294194, + 44.2900011672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95cb282fcf4e35cb8d21096fbec94c00059f1802", + "fields": { + "code_commune_insee": "54338", + "nom_de_la_commune": "MALLELOY", + "code_postal": "54670", + "coordonnees_gps": [ + 48.7916600767, + 6.16801224152 + ], + "libelle_d_acheminement": "MALLELOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16801224152, + 48.7916600767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c2e6a703e3c70cbbd5b0b4b773febfcb441c571", + "fields": { + "code_commune_insee": "47130", + "nom_de_la_commune": "LAGRUERE", + "code_postal": "47400", + "coordonnees_gps": [ + 44.3978769193, + 0.264943641793 + ], + "libelle_d_acheminement": "LAGRUERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.264943641793, + 44.3978769193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1314ecdab48883c5b1176c570fbbdd035a3fd9f4", + "fields": { + "code_commune_insee": "54340", + "nom_de_la_commune": "MAMEY", + "code_postal": "54470", + "coordonnees_gps": [ + 48.8796302932, + 5.95590778718 + ], + "libelle_d_acheminement": "MAMEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95590778718, + 48.8796302932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38f17573aa7b0c7e65560211cc0c15f4f9826a5e", + "fields": { + "code_commune_insee": "47133", + "nom_de_la_commune": "LAMONTJOIE", + "code_postal": "47310", + "coordonnees_gps": [ + 44.070163871, + 0.537584596425 + ], + "libelle_d_acheminement": "LAMONTJOIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.537584596425, + 44.070163871 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e19696b0981139c19a00e66b600e8a98a8c69365", + "fields": { + "code_commune_insee": "54344", + "nom_de_la_commune": "MANGONVILLE", + "code_postal": "54290", + "coordonnees_gps": [ + 48.451085439, + 6.28899041903 + ], + "libelle_d_acheminement": "MANGONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28899041903, + 48.451085439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d78b2d9f9c0649d59de8c0fd2b286f7a7ae66d81", + "fields": { + "code_commune_insee": "47135", + "nom_de_la_commune": "LAPARADE", + "code_postal": "47260", + "coordonnees_gps": [ + 44.4080359614, + 0.439432050771 + ], + "libelle_d_acheminement": "LAPARADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.439432050771, + 44.4080359614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "547aa5653c99eee96511cd85660fe65734cd00f3", + "fields": { + "code_commune_insee": "54345", + "nom_de_la_commune": "MANONCOURT EN VERMOIS", + "code_postal": "54210", + "coordonnees_gps": [ + 48.6014894202, + 6.27024108029 + ], + "libelle_d_acheminement": "MANONCOURT EN VERMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27024108029, + 48.6014894202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae2a76e03dda11518b07790e91c88507009b46e4", + "fields": { + "code_commune_insee": "47139", + "nom_de_la_commune": "LASSERRE", + "code_postal": "47600", + "coordonnees_gps": [ + 44.0743983066, + 0.386505126998 + ], + "libelle_d_acheminement": "LASSERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.386505126998, + 44.0743983066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5c1a1c499621a653131fe886a5db8d64dae06e2", + "fields": { + "code_commune_insee": "54351", + "nom_de_la_commune": "MARBACHE", + "code_postal": "54820", + "coordonnees_gps": [ + 48.790237292, + 6.09039426477 + ], + "libelle_d_acheminement": "MARBACHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09039426477, + 48.790237292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65df426ff8e6c0496deef49b54df4c2d7e6e27bb", + "fields": { + "code_commune_insee": "47145", + "nom_de_la_commune": "LAYRAC", + "code_postal": "47390", + "coordonnees_gps": [ + 44.1205847258, + 0.655048484192 + ], + "libelle_d_acheminement": "LAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.655048484192, + 44.1205847258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c51d94ba914f672de261ab9a8a0f650120ab83f1", + "fields": { + "code_commune_insee": "54354", + "nom_de_la_commune": "MARTHEMONT", + "code_postal": "54330", + "coordonnees_gps": [ + 48.5592614713, + 6.03669109733 + ], + "libelle_d_acheminement": "MARTHEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03669109733, + 48.5592614713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c64e180eb91ee5fc1414aa5e909c890e96a56607", + "fields": { + "code_commune_insee": "47147", + "nom_de_la_commune": "LEVIGNAC DE GUYENNE", + "code_postal": "47120", + "coordonnees_gps": [ + 44.6218474674, + 0.203943341999 + ], + "libelle_d_acheminement": "LEVIGNAC DE GUYENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.203943341999, + 44.6218474674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9b473677a7856724d8f2be71b642bc3f7169948", + "fields": { + "code_commune_insee": "54357", + "nom_de_la_commune": "MAXEVILLE", + "code_postal": "54320", + "coordonnees_gps": [ + 48.7091528465, + 6.14959862185 + ], + "libelle_d_acheminement": "MAXEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14959862185, + 48.7091528465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5d506b6b59377b8a64c168eac13ffcbf8aaef92", + "fields": { + "code_commune_insee": "47154", + "nom_de_la_commune": "LUSIGNAN PETIT", + "code_postal": "47360", + "coordonnees_gps": [ + 44.2620019955, + 0.517409737452 + ], + "libelle_d_acheminement": "LUSIGNAN PETIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.517409737452, + 44.2620019955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "551ad246f9882668dbaa7ebe871058d31062903d", + "fields": { + "code_commune_insee": "54364", + "nom_de_la_commune": "MEREVILLE", + "code_postal": "54850", + "coordonnees_gps": [ + 48.5911694805, + 6.1377105599 + ], + "libelle_d_acheminement": "MEREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1377105599, + 48.5911694805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0c50e8703f332b7bd0116eedd85468bf40d9850", + "fields": { + "code_commune_insee": "47157", + "nom_de_la_commune": "MARMANDE", + "code_postal": "47200", + "coordonnees_gps": [ + 44.5055176845, + 0.172174280849 + ], + "libelle_d_acheminement": "MARMANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.172174280849, + 44.5055176845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e450e284caa010cac7b3103ca3860c75e03e1fce", + "fields": { + "code_commune_insee": "54368", + "nom_de_la_commune": "MIGNEVILLE", + "code_postal": "54540", + "coordonnees_gps": [ + 48.5341591798, + 6.78313669557 + ], + "libelle_d_acheminement": "MIGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78313669557, + 48.5341591798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eaeecab1ff5f1dc070200cb7ce9eaeabb3c5d45", + "fields": { + "code_commune_insee": "47174", + "nom_de_la_commune": "MONCRABEAU", + "code_postal": "47600", + "coordonnees_gps": [ + 44.0410471215, + 0.367666157379 + ], + "libelle_d_acheminement": "MONCRABEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.367666157379, + 44.0410471215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c19b014d87c1e338fccdcc4ad15b08d3f05a6766", + "fields": { + "code_commune_insee": "54376", + "nom_de_la_commune": "MONTENOY", + "code_postal": "54760", + "coordonnees_gps": [ + 48.7926139006, + 6.23631393016 + ], + "libelle_d_acheminement": "MONTENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23631393016, + 48.7926139006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c74c297e37653fb854a62cbe298352f8816a166", + "fields": { + "code_commune_insee": "47175", + "nom_de_la_commune": "MONFLANQUIN", + "code_postal": "47150", + "coordonnees_gps": [ + 44.5202002935, + 0.758095744834 + ], + "libelle_d_acheminement": "MONFLANQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.758095744834, + 44.5202002935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "299ba101e65d56636f4fb844a6f43abc28ab0523", + "fields": { + "ligne_5": "FERMONT", + "code_commune_insee": "54378", + "libelle_d_acheminement": "MONTIGNY SUR CHIERS", + "code_postal": "54870", + "nom_de_la_commune": "MONTIGNY SUR CHIERS", + "coordonnees_gps": [ + 49.4718809607, + 5.66811908272 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66811908272, + 49.4718809607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3c17304a2502eee2892a4126310d7375026b4c9", + "fields": { + "code_commune_insee": "47178", + "nom_de_la_commune": "MONSEGUR", + "code_postal": "47150", + "coordonnees_gps": [ + 44.4844384296, + 0.878232304572 + ], + "libelle_d_acheminement": "MONSEGUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.878232304572, + 44.4844384296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cf5ad99d14096b483248cb7fcb6961079567fec", + "fields": { + "code_commune_insee": "54389", + "nom_de_la_commune": "MOUAVILLE", + "code_postal": "54800", + "coordonnees_gps": [ + 49.2135294001, + 5.77867124953 + ], + "libelle_d_acheminement": "MOUAVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77867124953, + 49.2135294001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3552213169ad4b46d1b24ed2bd0c8525ca0a3897", + "fields": { + "code_commune_insee": "47182", + "nom_de_la_commune": "MONTASTRUC", + "code_postal": "47380", + "coordonnees_gps": [ + 44.4946475387, + 0.518588500828 + ], + "libelle_d_acheminement": "MONTASTRUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.518588500828, + 44.4946475387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14037db0876ee865447cb9cd8c08368cbd168c51", + "fields": { + "code_commune_insee": "54390", + "nom_de_la_commune": "MOUSSON", + "code_postal": "54700", + "coordonnees_gps": [ + 48.9108966733, + 6.09255325215 + ], + "libelle_d_acheminement": "MOUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09255325215, + 48.9108966733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e5f75080d4c25ae51604ed1ef7013db9b88b6ef", + "fields": { + "code_commune_insee": "47189", + "nom_de_la_commune": "MONTIGNAC TOUPINERIE", + "code_postal": "47350", + "coordonnees_gps": [ + 44.5486272611, + 0.352052970743 + ], + "libelle_d_acheminement": "MONTIGNAC TOUPINERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.352052970743, + 44.5486272611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb21bae2594f6e4350685dc4f98cb637b6b168b1", + "fields": { + "code_commune_insee": "54391", + "nom_de_la_commune": "MOUTIERS", + "code_postal": "54660", + "coordonnees_gps": [ + 49.2325832585, + 5.95571904292 + ], + "libelle_d_acheminement": "MOUTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95571904292, + 49.2325832585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73f8db6ad22c0ee9cff196ea81a1f32167a57736", + "fields": { + "code_commune_insee": "47190", + "nom_de_la_commune": "MONTPEZAT", + "code_postal": "47360", + "coordonnees_gps": [ + 44.3420285974, + 0.53448370378 + ], + "libelle_d_acheminement": "MONTPEZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.53448370378, + 44.3420285974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "660c65bb545a2668d2be67b03a1078f541fde341", + "fields": { + "code_commune_insee": "54402", + "nom_de_la_commune": "NORROY LE SEC", + "code_postal": "54150", + "coordonnees_gps": [ + 49.2766316915, + 5.80939284962 + ], + "libelle_d_acheminement": "NORROY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80939284962, + 49.2766316915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c4307aa1bb48dee292443be7b2cbf1395c89850", + "fields": { + "code_commune_insee": "47195", + "nom_de_la_commune": "NERAC", + "code_postal": "47600", + "coordonnees_gps": [ + 44.1321004332, + 0.343358299602 + ], + "libelle_d_acheminement": "NERAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.343358299602, + 44.1321004332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce0d793368fc1ae9bff5b46bb62dff4660e28853", + "fields": { + "code_commune_insee": "54405", + "nom_de_la_commune": "OCHEY", + "code_postal": "54170", + "coordonnees_gps": [ + 48.5937124314, + 5.94862791477 + ], + "libelle_d_acheminement": "OCHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94862791477, + 48.5937124314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f0eedda5ac2f2e3f4f5aad79ca2c266fdfdbea9", + "fields": { + "code_commune_insee": "47198", + "nom_de_la_commune": "PAILLOLES", + "code_postal": "47440", + "coordonnees_gps": [ + 44.4750480047, + 0.647784350745 + ], + "libelle_d_acheminement": "PAILLOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.647784350745, + 44.4750480047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cbd05cc77576b990b21008d60475073dfb471f1", + "fields": { + "code_commune_insee": "54410", + "nom_de_la_commune": "ONVILLE", + "code_postal": "54890", + "coordonnees_gps": [ + 49.0218156654, + 5.96851536679 + ], + "libelle_d_acheminement": "ONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96851536679, + 49.0218156654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0f1db45726c2ec96a5b936a38d7cfc8e11f0ddf", + "fields": { + "code_commune_insee": "47206", + "nom_de_la_commune": "PINEL HAUTERIVE", + "code_postal": "47380", + "coordonnees_gps": [ + 44.4630091453, + 0.568242882595 + ], + "libelle_d_acheminement": "PINEL HAUTERIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.568242882595, + 44.4630091453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7448b5e955a4c2da67ab257e42f6fc400e6f43f0", + "fields": { + "code_commune_insee": "54417", + "nom_de_la_commune": "PAREY ST CESAIRE", + "code_postal": "54330", + "coordonnees_gps": [ + 48.5271211226, + 6.06368968426 + ], + "libelle_d_acheminement": "PAREY ST CESAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06368968426, + 48.5271211226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fe124af690c337f0aefbc9a1bd82187984feb23", + "fields": { + "ligne_5": "ST PIERRE DE CAUBEL", + "code_commune_insee": "47206", + "libelle_d_acheminement": "PINEL HAUTERIVE", + "code_postal": "47380", + "nom_de_la_commune": "PINEL HAUTERIVE", + "coordonnees_gps": [ + 44.4630091453, + 0.568242882595 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.568242882595, + 44.4630091453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a824b79f8387b39884a44dcba4a929761f7c2218", + "fields": { + "code_commune_insee": "54422", + "nom_de_la_commune": "PETTONVILLE", + "code_postal": "54120", + "coordonnees_gps": [ + 48.5301540618, + 6.74371187817 + ], + "libelle_d_acheminement": "PETTONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74371187817, + 48.5301540618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e79cb0bd2e1c0d7a2e5949bf48036c999c5acfb", + "fields": { + "code_commune_insee": "47207", + "nom_de_la_commune": "POMPIEY", + "code_postal": "47230", + "coordonnees_gps": [ + 44.1976392176, + 0.207144727468 + ], + "libelle_d_acheminement": "POMPIEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.207144727468, + 44.1976392176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7c995f66e17a366f64b9358bc8047c84fb62307", + "fields": { + "code_commune_insee": "54433", + "nom_de_la_commune": "PORT SUR SEILLE", + "code_postal": "54700", + "coordonnees_gps": [ + 48.8997308507, + 6.15976934112 + ], + "libelle_d_acheminement": "PORT SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15976934112, + 48.8997308507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42e90175b08221d64bf0ee580ead4f175b25f24a", + "fields": { + "code_commune_insee": "47210", + "nom_de_la_commune": "PORT STE MARIE", + "code_postal": "47130", + "coordonnees_gps": [ + 44.2605042795, + 0.374453245526 + ], + "libelle_d_acheminement": "PORT STE MARIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.374453245526, + 44.2605042795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b71bb94eb4d801e5f13ad52218cd9d1473f1f9a7", + "fields": { + "code_commune_insee": "54435", + "nom_de_la_commune": "PRENY", + "code_postal": "54530", + "coordonnees_gps": [ + 48.9719661706, + 5.96314993379 + ], + "libelle_d_acheminement": "PRENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96314993379, + 48.9719661706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90362fc08318dba6c7e11855a98ff3d5d720500b", + "fields": { + "code_commune_insee": "47212", + "nom_de_la_commune": "POUSSIGNAC", + "code_postal": "47700", + "coordonnees_gps": [ + 44.3527772053, + 0.074662493896 + ], + "libelle_d_acheminement": "POUSSIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.074662493896, + 44.3527772053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54180a5fce76bdab65bd821e7920049eadf5c5c1", + "fields": { + "code_commune_insee": "54436", + "nom_de_la_commune": "PREUTIN HIGNY", + "code_postal": "54490", + "coordonnees_gps": [ + 49.3473076426, + 5.79949172398 + ], + "libelle_d_acheminement": "PREUTIN HIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79949172398, + 49.3473076426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aeee301c37ec836ce1280497f7252bb0c8075aa", + "fields": { + "ligne_5": "LISSE", + "code_commune_insee": "47221", + "libelle_d_acheminement": "REAUP LISSE", + "code_postal": "47170", + "nom_de_la_commune": "REAUP LISSE", + "coordonnees_gps": [ + 44.1005390753, + 0.210196910865 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.210196910865, + 44.1005390753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6567945428c052a965e9ed00539759438b13758d", + "fields": { + "code_commune_insee": "54455", + "nom_de_la_commune": "REMENOVILLE", + "code_postal": "54830", + "coordonnees_gps": [ + 48.4639098729, + 6.47480886613 + ], + "libelle_d_acheminement": "REMENOVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47480886613, + 48.4639098729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2d472cbe57d51f84fcdaa42a20d5e5f1ce29cb2", + "fields": { + "code_commune_insee": "47228", + "nom_de_la_commune": "ST ANTOINE DE FICALBA", + "code_postal": "47340", + "coordonnees_gps": [ + 44.3406134125, + 0.720236260275 + ], + "libelle_d_acheminement": "ST ANTOINE DE FICALBA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.720236260275, + 44.3406134125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66e2fbcef5231ea14c3b84dcb647c065c32851a6", + "fields": { + "code_commune_insee": "54456", + "nom_de_la_commune": "REMEREVILLE", + "code_postal": "54110", + "coordonnees_gps": [ + 48.7083090785, + 6.38025660676 + ], + "libelle_d_acheminement": "REMEREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38025660676, + 48.7083090785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33c575a0595fdf12a74da989e67b397584448cb0", + "fields": { + "code_commune_insee": "47236", + "nom_de_la_commune": "STE COLOMBE DE DURAS", + "code_postal": "47120", + "coordonnees_gps": [ + 44.695891392, + 0.119530622673 + ], + "libelle_d_acheminement": "STE COLOMBE DE DURAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.119530622673, + 44.695891392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f9243d94385b5806b2a8fd4ed23e014fb866d94", + "fields": { + "code_commune_insee": "54459", + "nom_de_la_commune": "RICHARDMENIL", + "code_postal": "54630", + "coordonnees_gps": [ + 48.5958649273, + 6.17614506031 + ], + "libelle_d_acheminement": "RICHARDMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17614506031, + 48.5958649273 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bae6fe8ff9a8478206c0a683b5b4f40920be85e", + "fields": { + "code_commune_insee": "47239", + "nom_de_la_commune": "ST ETIENNE DE FOUGERES", + "code_postal": "47380", + "coordonnees_gps": [ + 44.413992435, + 0.559008333546 + ], + "libelle_d_acheminement": "ST ETIENNE DE FOUGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.559008333546, + 44.413992435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d6fb0101d5072bec7e13e13f0f189ee23f3cfec", + "fields": { + "code_commune_insee": "54460", + "nom_de_la_commune": "ROGEVILLE", + "code_postal": "54380", + "coordonnees_gps": [ + 48.8146914454, + 5.97727344525 + ], + "libelle_d_acheminement": "ROGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97727344525, + 48.8146914454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03efab7fc4d9dcac6b030bf31ad406ed4b3fa087", + "fields": { + "code_commune_insee": "47242", + "nom_de_la_commune": "ST FRONT SUR LEMANCE", + "code_postal": "47500", + "coordonnees_gps": [ + 44.5647070591, + 0.998320383054 + ], + "libelle_d_acheminement": "ST FRONT SUR LEMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.998320383054, + 44.5647070591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4356932256ac9d0d207caaf5274954974b23ce34", + "fields": { + "code_commune_insee": "54461", + "nom_de_la_commune": "ROMAIN", + "code_postal": "54360", + "coordonnees_gps": [ + 48.52075217, + 6.35686026913 + ], + "libelle_d_acheminement": "ROMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35686026913, + 48.52075217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3693364aaabb4d59b4a2214876742cb21cc5e5b6", + "fields": { + "code_commune_insee": "47247", + "nom_de_la_commune": "ST JEAN DE DURAS", + "code_postal": "47120", + "coordonnees_gps": [ + 44.6891665815, + 0.302703154617 + ], + "libelle_d_acheminement": "ST JEAN DE DURAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.302703154617, + 44.6891665815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9acd56d78c0e68138bfbb5c4d46d04ec34aff91", + "fields": { + "code_commune_insee": "54468", + "nom_de_la_commune": "SAFFAIS", + "code_postal": "54210", + "coordonnees_gps": [ + 48.5594143103, + 6.31597389904 + ], + "libelle_d_acheminement": "SAFFAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31597389904, + 48.5594143103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adbbef9cc8f09c89a4eaccf3358520cf60e78882", + "fields": { + "code_commune_insee": "47249", + "nom_de_la_commune": "ST LAURENT", + "code_postal": "47130", + "coordonnees_gps": [ + 44.2377251151, + 0.403349174796 + ], + "libelle_d_acheminement": "ST LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.403349174796, + 44.2377251151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ad4afb33c360efba46799d598f30329320e1760", + "fields": { + "code_commune_insee": "54473", + "nom_de_la_commune": "ST FIRMIN", + "code_postal": "54930", + "coordonnees_gps": [ + 48.4251143645, + 6.13660869738 + ], + "libelle_d_acheminement": "ST FIRMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13660869738, + 48.4251143645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9be75c3386dd8f4bfe928f3cb9b5e1cde94a0a80", + "fields": { + "code_commune_insee": "47252", + "nom_de_la_commune": "STE LIVRADE SUR LOT", + "code_postal": "47110", + "coordonnees_gps": [ + 44.4058755457, + 0.599870593015 + ], + "libelle_d_acheminement": "STE LIVRADE SUR LOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.599870593015, + 44.4058755457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18cbbd54a3faa701e0b21671a640446c7badd4f1", + "fields": { + "code_commune_insee": "54475", + "nom_de_la_commune": "ST GERMAIN", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4232806157, + 6.34412609341 + ], + "libelle_d_acheminement": "ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34412609341, + 48.4232806157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0604df0ab4d7785a26cde38934fd45874e9481da", + "fields": { + "code_commune_insee": "47255", + "nom_de_la_commune": "ST MARTIN DE BEAUVILLE", + "code_postal": "47270", + "coordonnees_gps": [ + 44.2289840345, + 0.818300384725 + ], + "libelle_d_acheminement": "ST MARTIN DE BEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.818300384725, + 44.2289840345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7791bc8d3aa22d44f80e09f491a40e25f238eeaa", + "fields": { + "code_commune_insee": "54485", + "nom_de_la_commune": "ST PANCRE", + "code_postal": "54730", + "coordonnees_gps": [ + 49.5261729402, + 5.6387663725 + ], + "libelle_d_acheminement": "ST PANCRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6387663725, + 49.5261729402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b108ecfa33423e4569f2c39185e31d0230c0b802", + "fields": { + "code_commune_insee": "47260", + "nom_de_la_commune": "ST MAURIN", + "code_postal": "47270", + "coordonnees_gps": [ + 44.2158468038, + 0.893637045733 + ], + "libelle_d_acheminement": "ST MAURIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.893637045733, + 44.2158468038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d96e6a916a5791d212e5d2cdbecf629ca109a6c5", + "fields": { + "code_commune_insee": "54487", + "nom_de_la_commune": "ST REMY AUX BOIS", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4160503488, + 6.3962556094 + ], + "libelle_d_acheminement": "ST REMY AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3962556094, + 48.4160503488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42b2314f250ac276424a395e27d42551aec731ca", + "fields": { + "code_commune_insee": "47265", + "nom_de_la_commune": "ST PASTOUR", + "code_postal": "47290", + "coordonnees_gps": [ + 44.48597732, + 0.602513041284 + ], + "libelle_d_acheminement": "ST PASTOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.602513041284, + 44.48597732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18c6bf2b81a6af7048861be58de1283560c111a8", + "fields": { + "code_commune_insee": "54489", + "nom_de_la_commune": "ST SUPPLET", + "code_postal": "54620", + "coordonnees_gps": [ + 49.3758463385, + 5.72951086724 + ], + "libelle_d_acheminement": "ST SUPPLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72951086724, + 49.3758463385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef914ad77d38e60a3263fcda1b40b55f5a6115be", + "fields": { + "code_commune_insee": "47275", + "nom_de_la_commune": "ST SALVY", + "code_postal": "47360", + "coordonnees_gps": [ + 44.300872479, + 0.449936308844 + ], + "libelle_d_acheminement": "ST SALVY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.449936308844, + 44.300872479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67ca012fb8f0b7efee7eae1fdab4e59bec03458f", + "fields": { + "code_commune_insee": "54492", + "nom_de_la_commune": "SANZEY", + "code_postal": "54200", + "coordonnees_gps": [ + 48.7652405472, + 5.82604995245 + ], + "libelle_d_acheminement": "SANZEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82604995245, + 48.7652405472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1cc30d8454684339a4c9a08a4ea918df7e752b5", + "fields": { + "code_commune_insee": "47286", + "nom_de_la_commune": "SAUMEJAN", + "code_postal": "47420", + "coordonnees_gps": [ + 44.2320209567, + -0.0209875332561 + ], + "libelle_d_acheminement": "SAUMEJAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0209875332561, + 44.2320209567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43acca560f84f30f7cee07b01f390dfe13362718", + "fields": { + "code_commune_insee": "54497", + "nom_de_la_commune": "SAXON SION", + "code_postal": "54330", + "coordonnees_gps": [ + 48.4174218363, + 6.08660462033 + ], + "libelle_d_acheminement": "SAXON SION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08660462033, + 48.4174218363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7fd02149ada428c729b1803182e9b6eab6089e8", + "fields": { + "code_commune_insee": "47288", + "nom_de_la_commune": "SAUVAGNAS", + "code_postal": "47340", + "coordonnees_gps": [ + 44.2464985095, + 0.749862858533 + ], + "libelle_d_acheminement": "SAUVAGNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.749862858533, + 44.2464985095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3026d29c0377f58ae9af790a90c9d0fb8e2cd0d", + "fields": { + "code_commune_insee": "54522", + "nom_de_la_commune": "THOREY LYAUTEY", + "code_postal": "54115", + "coordonnees_gps": [ + 48.4447902824, + 6.03226525963 + ], + "libelle_d_acheminement": "THOREY LYAUTEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03226525963, + 48.4447902824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff034a1fa5aa6e99174a68676701f661801c3430", + "fields": { + "code_commune_insee": "47295", + "nom_de_la_commune": "SAVIGNAC SUR LEYZE", + "code_postal": "47150", + "coordonnees_gps": [ + 44.4830217019, + 0.792652792523 + ], + "libelle_d_acheminement": "SAVIGNAC SUR LEYZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.792652792523, + 44.4830217019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44a0a0df4670489383c16c0c35eafda9f7862df3", + "fields": { + "code_commune_insee": "54523", + "nom_de_la_commune": "THUILLEY AUX GROSEILLES", + "code_postal": "54170", + "coordonnees_gps": [ + 48.5757760081, + 5.97219994844 + ], + "libelle_d_acheminement": "THUILLEY AUX GROSEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97219994844, + 48.5757760081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7269d15f659be971ff5b0b1142925c28ac8cbdfd", + "fields": { + "code_commune_insee": "47296", + "nom_de_la_commune": "SEGALAS", + "code_postal": "47410", + "coordonnees_gps": [ + 44.5896223889, + 0.531957524154 + ], + "libelle_d_acheminement": "SEGALAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.531957524154, + 44.5896223889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f89452621fc9f5e6b551f7418d0d07e490ea647c", + "fields": { + "code_commune_insee": "54525", + "nom_de_la_commune": "TIERCELET", + "code_postal": "54190", + "coordonnees_gps": [ + 49.4603548011, + 5.88317112799 + ], + "libelle_d_acheminement": "TIERCELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88317112799, + 49.4603548011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bab6873dbf5269da0119a1acba5b46026e131061", + "fields": { + "code_commune_insee": "47297", + "nom_de_la_commune": "SEMBAS", + "code_postal": "47360", + "coordonnees_gps": [ + 44.3229002449, + 0.645981767236 + ], + "libelle_d_acheminement": "SEMBAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.645981767236, + 44.3229002449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "967973a7e24d011c5ffa274ada8aadb53bb5a38d", + "fields": { + "code_commune_insee": "54534", + "nom_de_la_commune": "TRONDES", + "code_postal": "54570", + "coordonnees_gps": [ + 48.7234407473, + 5.77227841983 + ], + "libelle_d_acheminement": "TRONDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77227841983, + 48.7234407473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7b88da5d1bed8d79fa05d4fe9a17423f9b8a2d0", + "fields": { + "ligne_5": "GUEYZE", + "code_commune_insee": "47302", + "libelle_d_acheminement": "SOS", + "code_postal": "47170", + "nom_de_la_commune": "SOS", + "coordonnees_gps": [ + 44.0568059441, + 0.125536637089 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.125536637089, + 44.0568059441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66fe5811056a28e7773733095ae262218df9b63f", + "fields": { + "code_commune_insee": "54550", + "nom_de_la_commune": "VATHIMENIL", + "code_postal": "54122", + "coordonnees_gps": [ + 48.5048003013, + 6.61472207285 + ], + "libelle_d_acheminement": "VATHIMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61472207285, + 48.5048003013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fc97c668450d0d4270e51fbe92a43ee1884d01f", + "fields": { + "code_commune_insee": "47303", + "nom_de_la_commune": "SOUMENSAC", + "code_postal": "47120", + "coordonnees_gps": [ + 44.6884449209, + 0.336573282726 + ], + "libelle_d_acheminement": "SOUMENSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.336573282726, + 44.6884449209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48651342e9ba4ceb20885d9aacf5815ebbf61f02", + "fields": { + "code_commune_insee": "54558", + "nom_de_la_commune": "VELAINE SOUS AMANCE", + "code_postal": "54280", + "coordonnees_gps": [ + 48.7156089379, + 6.32528004772 + ], + "libelle_d_acheminement": "VELAINE SOUS AMANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32528004772, + 48.7156089379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bac9acd748358e3e6724c51f3e21dccc1a76622a", + "fields": { + "code_commune_insee": "47308", + "nom_de_la_commune": "THOUARS SUR GARONNE", + "code_postal": "47230", + "coordonnees_gps": [ + 44.2534794236, + 0.330942072097 + ], + "libelle_d_acheminement": "THOUARS SUR GARONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.330942072097, + 44.2534794236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d54774b2e2c011b47509179fa98f5e99319cb6d2", + "fields": { + "code_commune_insee": "54567", + "nom_de_la_commune": "VILLACOURT", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4398337287, + 6.3364959449 + ], + "libelle_d_acheminement": "VILLACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3364959449, + 48.4398337287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e82adf5c909309c7b8069c1a9f994d2366b2d8b1", + "fields": { + "code_commune_insee": "47309", + "nom_de_la_commune": "TOMBEBOEUF", + "code_postal": "47380", + "coordonnees_gps": [ + 44.5192333821, + 0.452312617124 + ], + "libelle_d_acheminement": "TOMBEBOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.452312617124, + 44.5192333821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfd5ebe28974239f385d7e9fd6c5c908f5cc04ad", + "fields": { + "code_commune_insee": "54574", + "nom_de_la_commune": "VILLERS LA CHEVRE", + "code_postal": "54870", + "coordonnees_gps": [ + 49.5055978223, + 5.68894758816 + ], + "libelle_d_acheminement": "VILLERS LA CHEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.68894758816, + 49.5055978223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edb919bd8cee542f7c91a6f11a88f252292ca85f", + "fields": { + "code_commune_insee": "47315", + "nom_de_la_commune": "TRENTELS", + "code_postal": "47140", + "coordonnees_gps": [ + 44.4456964361, + 0.863931953648 + ], + "libelle_d_acheminement": "TRENTELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.863931953648, + 44.4456964361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b63e310c65cbd5c216432b35d5e9f1d030fa70f", + "fields": { + "code_commune_insee": "54575", + "nom_de_la_commune": "VILLERS LA MONTAGNE", + "code_postal": "54920", + "coordonnees_gps": [ + 49.4699530186, + 5.83188690951 + ], + "libelle_d_acheminement": "VILLERS LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83188690951, + 49.4699530186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccb9fa5cad3d99c23f27257c03106c44dffed7bc", + "fields": { + "code_commune_insee": "47317", + "nom_de_la_commune": "VERTEUIL D AGENAIS", + "code_postal": "47260", + "coordonnees_gps": [ + 44.4685862849, + 0.404058956078 + ], + "libelle_d_acheminement": "VERTEUIL D AGENAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.404058956078, + 44.4685862849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee1bf708d5a0e10ae6b3dd7be95853cd64f48d22", + "fields": { + "code_commune_insee": "54578", + "nom_de_la_commune": "VILLERS LES NANCY", + "code_postal": "54600", + "coordonnees_gps": [ + 48.6616923324, + 6.1287873364 + ], + "libelle_d_acheminement": "VILLERS LES NANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1287873364, + 48.6616923324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7df070c3126ab85d67175ba22ab8b0f0aa39cc1e", + "fields": { + "code_commune_insee": "47319", + "nom_de_la_commune": "VILLEBRAMAR", + "code_postal": "47380", + "coordonnees_gps": [ + 44.5252006493, + 0.476034019359 + ], + "libelle_d_acheminement": "VILLEBRAMAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.476034019359, + 44.5252006493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7268bbbb46d99781ac51a5201c37e06f24707a44", + "fields": { + "code_commune_insee": "54585", + "nom_de_la_commune": "VIRECOURT", + "code_postal": "54290", + "coordonnees_gps": [ + 48.4551698224, + 6.31832028976 + ], + "libelle_d_acheminement": "VIRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31832028976, + 48.4551698224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64c3457f3ec2aa76c9ac8221d3e3863e3b81ab43", + "fields": { + "code_commune_insee": "48018", + "nom_de_la_commune": "BARJAC", + "code_postal": "48000", + "coordonnees_gps": [ + 44.5220189708, + 3.40925330342 + ], + "libelle_d_acheminement": "BARJAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40925330342, + 44.5220189708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a25b93cbf44ada35bebfd903abce1b4a3c791ac", + "fields": { + "code_commune_insee": "48019", + "nom_de_la_commune": "BARRE DES CEVENNES", + "code_postal": "48400", + "coordonnees_gps": [ + 44.2534596387, + 3.67089692402 + ], + "libelle_d_acheminement": "BARRE DES CEVENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67089692402, + 44.2534596387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4444cfb789a4800eddca69ecc0eec286e9e4d7be", + "fields": { + "code_commune_insee": "48020", + "nom_de_la_commune": "BASSURELS", + "code_postal": "48400", + "coordonnees_gps": [ + 44.1576500165, + 3.60529692869 + ], + "libelle_d_acheminement": "BASSURELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60529692869, + 44.1576500165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac33e6f6d62d676674b4934156c22ece152bafeb", + "fields": { + "code_commune_insee": "48028", + "nom_de_la_commune": "LES BONDONS", + "code_postal": "48400", + "coordonnees_gps": [ + 44.3983249079, + 3.63428329173 + ], + "libelle_d_acheminement": "LES BONDONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63428329173, + 44.3983249079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bff03537d448438cfb715e8296dd59b2d22a2ea0", + "fields": { + "code_commune_insee": "48030", + "nom_de_la_commune": "BRENOUX", + "code_postal": "48000", + "coordonnees_gps": [ + 44.4873961112, + 3.53320153981 + ], + "libelle_d_acheminement": "BRENOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53320153981, + 44.4873961112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6550f3f4efbf073ed9d36f2277901c62788ab0ac", + "fields": { + "ligne_5": "LA CHALDETTE", + "code_commune_insee": "48031", + "libelle_d_acheminement": "BRION", + "code_postal": "48310", + "nom_de_la_commune": "BRION", + "coordonnees_gps": [ + 44.7498734557, + 3.07854846372 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07854846372, + 44.7498734557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7532e820098d62d1f508ffd5b011753b8e163085", + "fields": { + "code_commune_insee": "48036", + "nom_de_la_commune": "CASSAGNAS", + "code_postal": "48400", + "coordonnees_gps": [ + 44.2769981093, + 3.73641506874 + ], + "libelle_d_acheminement": "CASSAGNAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73641506874, + 44.2769981093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d53455442df15f84bfa963ff64eca13a0fbf1df7", + "fields": { + "ligne_5": "LE VILLARD", + "code_commune_insee": "48039", + "libelle_d_acheminement": "CHANAC", + "code_postal": "48230", + "nom_de_la_commune": "CHANAC", + "coordonnees_gps": [ + 44.4502200567, + 3.34457977647 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34457977647, + 44.4502200567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c6d36f4db2305ee5c5a76d13954581604f47f33", + "fields": { + "code_commune_insee": "48043", + "nom_de_la_commune": "CHATEAUNEUF DE RANDON", + "code_postal": "48170", + "coordonnees_gps": [ + 44.6479862625, + 3.68590972615 + ], + "libelle_d_acheminement": "CHATEAUNEUF DE RANDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68590972615, + 44.6479862625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "943521172cfd77e756d1c971d92573048d22bbba", + "fields": { + "code_commune_insee": "48045", + "nom_de_la_commune": "CHAUDEYRAC", + "code_postal": "48170", + "coordonnees_gps": [ + 44.6417519852, + 3.75085560939 + ], + "libelle_d_acheminement": "CHAUDEYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75085560939, + 44.6417519852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d1f8aa7ade4b27a223fa273d35520deb7146939", + "fields": { + "ligne_5": "BEDOUES", + "code_commune_insee": "48050", + "libelle_d_acheminement": "BEDOUES COCURES", + "code_postal": "48400", + "nom_de_la_commune": "BEDOUES COCURES", + "coordonnees_gps": [ + 44.3539456684, + 3.61955972065 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61955972065, + 44.3539456684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca4b1bd914685e8f046a24a20daf69e80b40494a", + "fields": { + "ligne_5": "COCURES", + "code_commune_insee": "48050", + "libelle_d_acheminement": "BEDOUES COCURES", + "code_postal": "48400", + "nom_de_la_commune": "BEDOUES COCURES", + "coordonnees_gps": [ + 44.3539456684, + 3.61955972065 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61955972065, + 44.3539456684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab4abb3264338d4e6b31029172810c31eb9cf2e6", + "fields": { + "ligne_5": "LA SALLE PRUNET", + "code_commune_insee": "48061", + "libelle_d_acheminement": "FLORAC TROIS RIVIERES", + "code_postal": "48400", + "nom_de_la_commune": "FLORAC TROIS RIVIERES", + "coordonnees_gps": [ + 44.3162079295, + 3.58273527435 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58273527435, + 44.3162079295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ae67e5c2c7812d5d68727251c0ab85258199d14", + "fields": { + "code_commune_insee": "48074", + "nom_de_la_commune": "HURES LA PARADE", + "code_postal": "48150", + "coordonnees_gps": [ + 44.2477855743, + 3.38671686597 + ], + "libelle_d_acheminement": "HURES LA PARADE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38671686597, + 44.2477855743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d11ea1ea9d70c1058920e74d9c839cba27522fcf", + "fields": { + "code_commune_insee": "48080", + "nom_de_la_commune": "LANGOGNE", + "code_postal": "48300", + "coordonnees_gps": [ + 44.7237405653, + 3.83363110341 + ], + "libelle_d_acheminement": "LANGOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83363110341, + 44.7237405653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb439984cab95f842dbf410cde29f438d09fe9a8", + "fields": { + "code_commune_insee": "48081", + "nom_de_la_commune": "LANUEJOLS", + "code_postal": "48000", + "coordonnees_gps": [ + 44.4904680879, + 3.58785456631 + ], + "libelle_d_acheminement": "LANUEJOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58785456631, + 44.4904680879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e2016971d1b88a44f2d6de021a2fc522bba377d", + "fields": { + "ligne_5": "PRINSUEJOLS", + "code_commune_insee": "48087", + "libelle_d_acheminement": "PRINSUEJOLS MALBOUZON", + "code_postal": "48100", + "nom_de_la_commune": "PRINSUEJOLS MALBOUZON", + "coordonnees_gps": [ + 44.7070956214, + 3.13030307295 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13030307295, + 44.7070956214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8938cb4dbe4cbc42e63fef7f09e19f2d1da2765", + "fields": { + "ligne_5": "LE RECOUX", + "code_commune_insee": "48094", + "libelle_d_acheminement": "MASSEGROS CAUSSES GORGES", + "code_postal": "48500", + "nom_de_la_commune": "MASSEGROS CAUSSES GORGES", + "coordonnees_gps": [ + 44.2937484234, + 3.15910137508 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15910137508, + 44.2937484234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70e09ec17ade08fb3bb151d421a42fd107b7b9f7", + "fields": { + "ligne_5": "ST GEORGES DE LEVEJAC", + "code_commune_insee": "48094", + "libelle_d_acheminement": "MASSEGROS CAUSSES GORGES", + "code_postal": "48500", + "nom_de_la_commune": "MASSEGROS CAUSSES GORGES", + "coordonnees_gps": [ + 44.2937484234, + 3.15910137508 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15910137508, + 44.2937484234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5de81dbe59f16e9da0220761e1749fcf8705cf1a", + "fields": { + "ligne_5": "ST ROME DE DOLAN", + "code_commune_insee": "48094", + "libelle_d_acheminement": "MASSEGROS CAUSSES GORGES", + "code_postal": "48500", + "nom_de_la_commune": "MASSEGROS CAUSSES GORGES", + "coordonnees_gps": [ + 44.2937484234, + 3.15910137508 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15910137508, + 44.2937484234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40d872964a7a692122753b9794f36232442ca7b2", + "fields": { + "ligne_5": "CHIRAC", + "code_commune_insee": "48099", + "libelle_d_acheminement": "BOURGS SUR COLAGNE", + "code_postal": "48100", + "nom_de_la_commune": "BOURGS SUR COLAGNE", + "coordonnees_gps": [ + 44.5109335104, + 3.22653031553 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22653031553, + 44.5109335104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01356398878feebc693a723ea3d5fdffa8eb0f68", + "fields": { + "code_commune_insee": "48107", + "nom_de_la_commune": "PALHERS", + "code_postal": "48100", + "coordonnees_gps": [ + 44.5204094847, + 3.30780766253 + ], + "libelle_d_acheminement": "PALHERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30780766253, + 44.5204094847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "209ba4781bb3ef598ddb9f678f0b322b8460db72", + "fields": { + "code_commune_insee": "48108", + "nom_de_la_commune": "LA PANOUSE", + "code_postal": "48600", + "coordonnees_gps": [ + 44.7368256595, + 3.58794717174 + ], + "libelle_d_acheminement": "LA PANOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58794717174, + 44.7368256595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c4ea737604e1d51f379fe20f9b9cf7d3720930b", + "fields": { + "ligne_5": "FRAISSINET DE LOZERE", + "code_commune_insee": "48116", + "libelle_d_acheminement": "PONT DE MONTVERT SUD MONT LOZERE", + "code_postal": "48220", + "nom_de_la_commune": "PONT DE MONTVERT SUD MONT LOZERE", + "coordonnees_gps": [ + 44.3742853816, + 3.76917997857 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76917997857, + 44.3742853816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "335fe7dca67bfecdc78cd4bb3c48f700b06972c0", + "fields": { + "ligne_5": "ST MAURICE DE VENTALON", + "code_commune_insee": "48116", + "libelle_d_acheminement": "PONT DE MONTVERT SUD MONT LOZERE", + "code_postal": "48220", + "nom_de_la_commune": "PONT DE MONTVERT SUD MONT LOZERE", + "coordonnees_gps": [ + 44.3742853816, + 3.76917997857 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76917997857, + 44.3742853816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17d59903d3712ca03270715b8484c831134b32f2", + "fields": { + "ligne_5": "SERVIERES", + "code_commune_insee": "48127", + "libelle_d_acheminement": "MONTS DE RANDON", + "code_postal": "48000", + "nom_de_la_commune": "MONTS DE RANDON", + "coordonnees_gps": [ + 44.6238353175, + 3.4886504946 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4886504946, + 44.6238353175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d4b0cdabba5cc2e61e9fd8245ea499f96583a15", + "fields": { + "code_commune_insee": "48141", + "nom_de_la_commune": "MAS ST CHELY", + "code_postal": "48210", + "coordonnees_gps": [ + 44.3091282875, + 3.4143985008 + ], + "libelle_d_acheminement": "MAS ST CHELY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4143985008, + 44.3091282875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cbbf18b3cb0312459434748d0c07c83d6cf6264", + "fields": { + "code_commune_insee": "48148", + "nom_de_la_commune": "ST ETIENNE VALLEE FRANCAISE", + "code_postal": "48330", + "coordonnees_gps": [ + 44.1711188054, + 3.8568943356 + ], + "libelle_d_acheminement": "ST ETIENNE VALLEE FRANCAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8568943356, + 44.1711188054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "274e04af9556912388a217138b8639fffbe208b2", + "fields": { + "ligne_5": "ST LAURENT DE TREVES", + "code_commune_insee": "48166", + "libelle_d_acheminement": "CANS ET CEVENNES", + "code_postal": "48400", + "nom_de_la_commune": "CANS ET CEVENNES", + "coordonnees_gps": [ + 44.2744783106, + 3.6064413039 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6064413039, + 44.2744783106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a57d0ee5a77c00175a3e0ded1fb0666fd80f71a4", + "fields": { + "code_commune_insee": "48167", + "nom_de_la_commune": "ST LAURENT DE VEYRES", + "code_postal": "48310", + "coordonnees_gps": [ + 44.7666501599, + 3.1233766072 + ], + "libelle_d_acheminement": "ST LAURENT DE VEYRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1233766072, + 44.7666501599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adaebd3b1ee39bb32ea92c9c245dccb67ae73d90", + "fields": { + "code_commune_insee": "48168", + "nom_de_la_commune": "ST LEGER DE PEYRE", + "code_postal": "48100", + "coordonnees_gps": [ + 44.604203879, + 3.30637134661 + ], + "libelle_d_acheminement": "ST LEGER DE PEYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30637134661, + 44.604203879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "704ea53147fe420acabe570226e5acb0839b4d2e", + "fields": { + "code_commune_insee": "48190", + "nom_de_la_commune": "TERMES", + "code_postal": "48310", + "coordonnees_gps": [ + 44.8258552553, + 3.16928104788 + ], + "libelle_d_acheminement": "TERMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16928104788, + 44.8258552553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd2ed5433e485d3fb1f8c390e93e92d298f6513e", + "fields": { + "code_commune_insee": "48191", + "nom_de_la_commune": "LA TIEULE", + "code_postal": "48500", + "coordonnees_gps": [ + 44.3826211706, + 3.16213006652 + ], + "libelle_d_acheminement": "LA TIEULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16213006652, + 44.3826211706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a714d28a536523f7a7c93011e5bdbe2c36c43337", + "fields": { + "code_commune_insee": "48192", + "nom_de_la_commune": "TRELANS", + "code_postal": "48340", + "coordonnees_gps": [ + 44.520157863, + 3.09375123863 + ], + "libelle_d_acheminement": "TRELANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09375123863, + 44.520157863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a2a4c009f1a96a020f6b9d6754eca23fefcaf36", + "fields": { + "code_commune_insee": "48193", + "nom_de_la_commune": "VEBRON", + "code_postal": "48400", + "coordonnees_gps": [ + 44.2551348683, + 3.54353418299 + ], + "libelle_d_acheminement": "VEBRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54353418299, + 44.2551348683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeb9fd9615f6127fb19c9b7e2cbab17691d6069a", + "fields": { + "code_commune_insee": "48198", + "nom_de_la_commune": "VILLEFORT", + "code_postal": "48800", + "coordonnees_gps": [ + 44.4441033418, + 3.93038185016 + ], + "libelle_d_acheminement": "VILLEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93038185016, + 44.4441033418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0a8ec64b3b89468f9672272ea228a45bf5d35af", + "fields": { + "code_commune_insee": "49009", + "nom_de_la_commune": "ANTOIGNE", + "code_postal": "49260", + "coordonnees_gps": [ + 47.0784768788, + -0.131764667589 + ], + "libelle_d_acheminement": "ANTOIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.131764667589, + 47.0784768788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f53679e9eb1c17d168660891772f314b31563525", + "fields": { + "code_commune_insee": "49012", + "nom_de_la_commune": "AUBIGNE SUR LAYON", + "code_postal": "49540", + "coordonnees_gps": [ + 47.2124010372, + -0.472931660445 + ], + "libelle_d_acheminement": "AUBIGNE SUR LAYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.472931660445, + 47.2124010372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fb0d4ed55462471e0f7a8285056ea2243d246e5", + "fields": { + "code_commune_insee": "49017", + "nom_de_la_commune": "BARACE", + "code_postal": "49430", + "coordonnees_gps": [ + 47.6427261834, + -0.357767481621 + ], + "libelle_d_acheminement": "BARACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.357767481621, + 47.6427261834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb61d8dbe077e4c90c2d9a82c7afea0ec9d673f6", + "fields": { + "ligne_5": "CUON", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b64a39ab1df29ef224b50c7669b840b9dc71c5a7", + "fields": { + "ligne_5": "PONTIGNE", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e82a78344792ea2ccc611ee8c0b90d8a1122eeb", + "fields": { + "ligne_5": "ST QUENTIN LES BEAUREPAIRE", + "code_commune_insee": "49018", + "libelle_d_acheminement": "BAUGE EN ANJOU", + "code_postal": "49150", + "nom_de_la_commune": "BAUGE EN ANJOU", + "coordonnees_gps": [ + 47.5466894738, + -0.109021794815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.109021794815, + 47.5466894738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed9a0b232b5a4af33f34ba36c3c4412d3d209740", + "fields": { + "ligne_5": "BEAUFORT EN VALLEE", + "code_commune_insee": "49021", + "libelle_d_acheminement": "BEAUFORT EN ANJOU", + "code_postal": "49250", + "nom_de_la_commune": "BEAUFORT EN ANJOU", + "coordonnees_gps": [ + 47.4363863926, + -0.206986791966 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.206986791966, + 47.4363863926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "753507c264676e4c889a245289c76d794aafa646", + "fields": { + "ligne_5": "ANDREZE", + "code_commune_insee": "49023", + "libelle_d_acheminement": "BEAUPREAU EN MAUGES", + "code_postal": "49600", + "nom_de_la_commune": "BEAUPREAU EN MAUGES", + "coordonnees_gps": [ + 47.2125984545, + -0.983619028639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.983619028639, + 47.2125984545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ef1ccd40a4dcaa78faded9b36006fad35c12cec", + "fields": { + "ligne_5": "BEAUPREAU", + "code_commune_insee": "49023", + "libelle_d_acheminement": "BEAUPREAU EN MAUGES", + "code_postal": "49600", + "nom_de_la_commune": "BEAUPREAU EN MAUGES", + "coordonnees_gps": [ + 47.2125984545, + -0.983619028639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.983619028639, + 47.2125984545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22456f5d011663b76fe77a5db9c55a33158e99ae", + "fields": { + "ligne_5": "GESTE", + "code_commune_insee": "49023", + "libelle_d_acheminement": "BEAUPREAU EN MAUGES", + "code_postal": "49600", + "nom_de_la_commune": "BEAUPREAU EN MAUGES", + "coordonnees_gps": [ + 47.2125984545, + -0.983619028639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.983619028639, + 47.2125984545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3770650f568e832d11d49c335767a52a2fe25a78", + "fields": { + "code_commune_insee": "49036", + "nom_de_la_commune": "BOUILLE MENARD", + "code_postal": "49520", + "coordonnees_gps": [ + 47.7381032955, + -0.969364603994 + ], + "libelle_d_acheminement": "BOUILLE MENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.969364603994, + 47.7381032955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e0031047ac650e1f369114d4f0662afbb748a0b", + "fields": { + "code_commune_insee": "49048", + "nom_de_la_commune": "BRIOLLAY", + "code_postal": "49125", + "coordonnees_gps": [ + 47.57639762, + -0.497931074064 + ], + "libelle_d_acheminement": "BRIOLLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.497931074064, + 47.57639762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14bb9ab16058e5bd7e4191df5a723ae29d8829a3", + "fields": { + "ligne_5": "LES ALLEUDS", + "code_commune_insee": "49050", + "libelle_d_acheminement": "BRISSAC LOIRE AUBANCE", + "code_postal": "49320", + "nom_de_la_commune": "BRISSAC LOIRE AUBANCE", + "coordonnees_gps": [ + 47.3416678749, + -0.441366325976 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441366325976, + 47.3416678749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "570fac6afa3b0a6b8098b1933c4d25e2a53753bb", + "fields": { + "ligne_5": "ST ELLIER", + "code_commune_insee": "49050", + "libelle_d_acheminement": "BRISSAC LOIRE AUBANCE", + "code_postal": "49320", + "nom_de_la_commune": "BRISSAC LOIRE AUBANCE", + "coordonnees_gps": [ + 47.3416678749, + -0.441366325976 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441366325976, + 47.3416678749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de4efe5f07dd5f7544211d0835fd98c413bc0dcf", + "fields": { + "code_commune_insee": "49058", + "nom_de_la_commune": "LES CERQUEUX", + "code_postal": "49360", + "coordonnees_gps": [ + 47.0057486644, + -0.641214387414 + ], + "libelle_d_acheminement": "LES CERQUEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.641214387414, + 47.0057486644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f22f58fac1be24905b8175680df8f28107488205", + "fields": { + "ligne_5": "CHAMPTEUSSE SUR BACONNE", + "code_commune_insee": "49067", + "libelle_d_acheminement": "CHENILLE CHAMPTEUSSE", + "code_postal": "49220", + "nom_de_la_commune": "CHENILLE CHAMPTEUSSE", + "coordonnees_gps": [ + 47.6694970175, + -0.65425867074 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.65425867074, + 47.6694970175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e320f12a2d0710c530176faad6d3ceecbea7aae6", + "fields": { + "code_commune_insee": "49068", + "nom_de_la_commune": "CHAMPTOCE SUR LOIRE", + "code_postal": "49123", + "coordonnees_gps": [ + 47.4299165836, + -0.874606992873 + ], + "libelle_d_acheminement": "CHAMPTOCE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.874606992873, + 47.4299165836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a780dff763bcb24a0710a6572d5bd091e2ddb2a4", + "fields": { + "ligne_5": "CHAMPTOCEAUX", + "code_commune_insee": "49069", + "libelle_d_acheminement": "OREE D ANJOU", + "code_postal": "49270", + "nom_de_la_commune": "OREE D ANJOU", + "coordonnees_gps": [ + 47.3218941947, + -1.26053581871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26053581871, + 47.3218941947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8bd9154a68447d5c44b9e6b64fa14b36649805a", + "fields": { + "ligne_5": "LA VARENNE", + "code_commune_insee": "49069", + "libelle_d_acheminement": "OREE D ANJOU", + "code_postal": "49270", + "nom_de_la_commune": "OREE D ANJOU", + "coordonnees_gps": [ + 47.3218941947, + -1.26053581871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26053581871, + 47.3218941947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fcb971b82f61c89cd7e85cef488406cad81fa2d", + "fields": { + "ligne_5": "ST LAURENT DES AUTELS", + "code_commune_insee": "49069", + "libelle_d_acheminement": "OREE D ANJOU", + "code_postal": "49270", + "nom_de_la_commune": "OREE D ANJOU", + "coordonnees_gps": [ + 47.3218941947, + -1.26053581871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26053581871, + 47.3218941947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6415eff611d11356c958223c72ef5a9096a6332", + "fields": { + "ligne_5": "DRAIN", + "code_commune_insee": "49069", + "libelle_d_acheminement": "OREE D ANJOU", + "code_postal": "49530", + "nom_de_la_commune": "OREE D ANJOU", + "coordonnees_gps": [ + 47.3218941947, + -1.26053581871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.26053581871, + 47.3218941947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0de96a3f9a345b6b20aa17ad3bebabe17fa138de", + "fields": { + "ligne_5": "BRISSARTHE", + "code_commune_insee": "49080", + "libelle_d_acheminement": "LES HAUTS D ANJOU", + "code_postal": "49330", + "nom_de_la_commune": "LES HAUTS D ANJOU", + "coordonnees_gps": [ + 47.6841712906, + -0.495930395639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.495930395639, + 47.6841712906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ef4a009657e5b229f7313429e6efb649d292d4a", + "fields": { + "ligne_5": "CHAMPIGNE", + "code_commune_insee": "49080", + "libelle_d_acheminement": "LES HAUTS D ANJOU", + "code_postal": "49330", + "nom_de_la_commune": "LES HAUTS D ANJOU", + "coordonnees_gps": [ + 47.6841712906, + -0.495930395639 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.495930395639, + 47.6841712906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "191ad856630e6da92288251de09142b4b0d23003", + "fields": { + "code_commune_insee": "49090", + "nom_de_la_commune": "CHEFFES", + "code_postal": "49125", + "coordonnees_gps": [ + 47.6253057182, + -0.519918963857 + ], + "libelle_d_acheminement": "CHEFFES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.519918963857, + 47.6253057182 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20d0710139eabb86f9f43f4956f9aaf8dc029487", + "fields": { + "ligne_5": "LA TOURLANDRY", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49120", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69fde13e0a9caef9f279c58d08388b6121c2bd45", + "fields": { + "ligne_5": "NEUVY EN MAUGES", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49120", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b13df0c6d757e0efe395fea40fe0819cc52574b2", + "fields": { + "ligne_5": "STE CHRISTINE", + "code_commune_insee": "49092", + "libelle_d_acheminement": "CHEMILLE EN ANJOU", + "code_postal": "49120", + "nom_de_la_commune": "CHEMILLE EN ANJOU", + "coordonnees_gps": [ + 47.2272268469, + -0.730188160448 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.730188160448, + 47.2272268469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b10fd50173acfdb5787a58db148da115645f85f", + "fields": { + "code_commune_insee": "49102", + "nom_de_la_commune": "CLERE SUR LAYON", + "code_postal": "49560", + "coordonnees_gps": [ + 47.0857328909, + -0.430334621535 + ], + "libelle_d_acheminement": "CLERE SUR LAYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.430334621535, + 47.0857328909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37cc508d60df83dd69f9907295d675833f7d3ba7", + "fields": { + "code_commune_insee": "49121", + "nom_de_la_commune": "DENEZE SOUS DOUE", + "code_postal": "49700", + "coordonnees_gps": [ + 47.2528537089, + -0.259868894277 + ], + "libelle_d_acheminement": "DENEZE SOUS DOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.259868894277, + 47.2528537089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "686cc4bb277455a27c30caa3845e93d536aa829a", + "fields": { + "ligne_5": "CONCOURSON SUR LAYON", + "code_commune_insee": "49125", + "libelle_d_acheminement": "DOUE EN ANJOU", + "code_postal": "49700", + "nom_de_la_commune": "DOUE EN ANJOU", + "coordonnees_gps": [ + 47.1914715686, + -0.278336056087 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.278336056087, + 47.1914715686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0fd30b74c7811e8cc63825521a95de7ca0d16cd", + "fields": { + "ligne_5": "FORGES", + "code_commune_insee": "49125", + "libelle_d_acheminement": "DOUE EN ANJOU", + "code_postal": "49700", + "nom_de_la_commune": "DOUE EN ANJOU", + "coordonnees_gps": [ + 47.1914715686, + -0.278336056087 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.278336056087, + 47.1914715686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "738fdf47c0031a0b2d45de44a0d4030dcd42789e", + "fields": { + "ligne_5": "MEIGNE", + "code_commune_insee": "49125", + "libelle_d_acheminement": "DOUE EN ANJOU", + "code_postal": "49700", + "nom_de_la_commune": "DOUE EN ANJOU", + "coordonnees_gps": [ + 47.1914715686, + -0.278336056087 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.278336056087, + 47.1914715686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8870f68f3c0dc70acf1d9fcf3131af22c6d176de", + "fields": { + "code_commune_insee": "49131", + "nom_de_la_commune": "EPIEDS", + "code_postal": "49260", + "coordonnees_gps": [ + 47.1348367577, + -0.0385758480154 + ], + "libelle_d_acheminement": "EPIEDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0385758480154, + 47.1348367577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d607e388cb3f4d9cac414ae7cfa51928218a61a9", + "fields": { + "code_commune_insee": "49132", + "nom_de_la_commune": "ETRICHE", + "code_postal": "49330", + "coordonnees_gps": [ + 47.6598525566, + -0.452234777822 + ], + "libelle_d_acheminement": "ETRICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.452234777822, + 47.6598525566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f4c465acce85207d04b786295b21b33b4681c0c", + "fields": { + "code_commune_insee": "49155", + "nom_de_la_commune": "GREZ NEUVILLE", + "code_postal": "49220", + "coordonnees_gps": [ + 47.5951579943, + -0.695965516847 + ], + "libelle_d_acheminement": "GREZ NEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.695965516847, + 47.5951579943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f06bf3521ad7440dc0d4823c752d9cd340b34ce", + "fields": { + "code_commune_insee": "49161", + "nom_de_la_commune": "LA JAILLE YVON", + "code_postal": "49220", + "coordonnees_gps": [ + 47.7267173977, + -0.687550991223 + ], + "libelle_d_acheminement": "LA JAILLE YVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.687550991223, + 47.7267173977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06033e8d98e0d3e10f9ada087e2f10fac662f397", + "fields": { + "ligne_5": "BEAUVAU", + "code_commune_insee": "49163", + "libelle_d_acheminement": "JARZE VILLAGES", + "code_postal": "49140", + "nom_de_la_commune": "JARZE VILLAGES", + "coordonnees_gps": [ + 47.5576434301, + -0.24007574412 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24007574412, + 47.5576434301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7dad4f44f514f27d9bcff74350cbbddfb2865d7", + "fields": { + "ligne_5": "CHAUMONT D ANJOU", + "code_commune_insee": "49163", + "libelle_d_acheminement": "JARZE VILLAGES", + "code_postal": "49140", + "nom_de_la_commune": "JARZE VILLAGES", + "coordonnees_gps": [ + 47.5576434301, + -0.24007574412 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24007574412, + 47.5576434301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7430d53353407f23b256259eb0427b7e40841016", + "fields": { + "ligne_5": "LUE EN BAUGEOIS", + "code_commune_insee": "49163", + "libelle_d_acheminement": "JARZE VILLAGES", + "code_postal": "49140", + "nom_de_la_commune": "JARZE VILLAGES", + "coordonnees_gps": [ + 47.5576434301, + -0.24007574412 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.24007574412, + 47.5576434301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc9c7f5d5ea67f9f0b01b1194d94e18571a4dde5", + "fields": { + "ligne_5": "ANDIGNE", + "code_commune_insee": "49176", + "libelle_d_acheminement": "LE LION D ANGERS", + "code_postal": "49220", + "nom_de_la_commune": "LE LION D ANGERS", + "coordonnees_gps": [ + 47.6307737346, + -0.749881925184 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.749881925184, + 47.6307737346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd210b80d6080697bba2eba4cd33f4fa5f92610b", + "fields": { + "ligne_5": "JUMELLES", + "code_commune_insee": "49180", + "libelle_d_acheminement": "LONGUE JUMELLES", + "code_postal": "49160", + "nom_de_la_commune": "LONGUE JUMELLES", + "coordonnees_gps": [ + 47.3984723864, + -0.107579294015 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.107579294015, + 47.3984723864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "922b81fda2c8dcbafd07cb6357c087bcbd45d8ed", + "fields": { + "code_commune_insee": "49195", + "nom_de_la_commune": "MAZIERES EN MAUGES", + "code_postal": "49280", + "coordonnees_gps": [ + 47.05980143, + -0.795548412055 + ], + "libelle_d_acheminement": "MAZIERES EN MAUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.795548412055, + 47.05980143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c1e63eccc745af7719a88321ab7e451e6d8f458", + "fields": { + "ligne_5": "MERON", + "code_commune_insee": "49215", + "libelle_d_acheminement": "MONTREUIL BELLAY", + "code_postal": "49260", + "nom_de_la_commune": "MONTREUIL BELLAY", + "coordonnees_gps": [ + 47.1287547622, + -0.125278817925 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.125278817925, + 47.1287547622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a111170567496608a690910509b39a72e694231e", + "fields": { + "ligne_5": "LA SALLE ET CHAPELLE AUBRY", + "code_commune_insee": "49218", + "libelle_d_acheminement": "MONTREVAULT SUR EVRE", + "code_postal": "49110", + "nom_de_la_commune": "MONTREVAULT SUR EVRE", + "coordonnees_gps": [ + 47.255395404, + -1.05160971025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05160971025, + 47.255395404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ada3a0184e2776fe87616a6eb69eecbd3afc5ff5", + "fields": { + "ligne_5": "ST QUENTIN EN MAUGES", + "code_commune_insee": "49218", + "libelle_d_acheminement": "MONTREVAULT SUR EVRE", + "code_postal": "49110", + "nom_de_la_commune": "MONTREVAULT SUR EVRE", + "coordonnees_gps": [ + 47.255395404, + -1.05160971025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05160971025, + 47.255395404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e27f28978196cc34aceb2cdb72533bc1eb59ca34", + "fields": { + "ligne_5": "LE FUILET", + "code_commune_insee": "49218", + "libelle_d_acheminement": "MONTREVAULT SUR EVRE", + "code_postal": "49270", + "nom_de_la_commune": "MONTREVAULT SUR EVRE", + "coordonnees_gps": [ + 47.255395404, + -1.05160971025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05160971025, + 47.255395404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "364250f2e2075d9ab0bc7897bd645d36b0297daf", + "fields": { + "ligne_5": "LE FIEF SAUVIN", + "code_commune_insee": "49218", + "libelle_d_acheminement": "MONTREVAULT SUR EVRE", + "code_postal": "49600", + "nom_de_la_commune": "MONTREVAULT SUR EVRE", + "coordonnees_gps": [ + 47.255395404, + -1.05160971025 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05160971025, + 47.255395404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7738996cbc816a1d6bb8180ca842f850480c12d5", + "fields": { + "ligne_5": "DAUMERAY", + "code_commune_insee": "49220", + "libelle_d_acheminement": "MORANNES SUR SARTHE DAUMERAY", + "code_postal": "49640", + "nom_de_la_commune": "MORANNES SUR SARTHE DAUMERAY", + "coordonnees_gps": [ + 47.725500783, + -0.403190245491 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.403190245491, + 47.725500783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4fd6a3bce0bbd8c5cf5736c0775f61348ab6833", + "fields": { + "code_commune_insee": "49221", + "nom_de_la_commune": "MOULIHERNE", + "code_postal": "49390", + "coordonnees_gps": [ + 47.4531278968, + 0.0130885602791 + ], + "libelle_d_acheminement": "MOULIHERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0130885602791, + 47.4531278968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a58431e66a4e5efad9caf6e5b7a466692fd36e5", + "fields": { + "ligne_5": "DENEZE SOUS LE LUDE", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49490", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2238c3663feb8e50ff547cc7eb464af759169706", + "fields": { + "ligne_5": "GENNETEIL", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49490", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56b163053f7fb30582708730eb425fdc308c773c", + "fields": { + "ligne_5": "LINIERES BOUTON", + "code_commune_insee": "49228", + "libelle_d_acheminement": "NOYANT VILLAGES", + "code_postal": "49490", + "nom_de_la_commune": "NOYANT VILLAGES", + "coordonnees_gps": [ + 47.5070164198, + 0.109706678066 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109706678066, + 47.5070164198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "385409ee88d15d788dd03b3939287e98bb0de954", + "fields": { + "code_commune_insee": "49231", + "nom_de_la_commune": "NUAILLE", + "code_postal": "49340", + "coordonnees_gps": [ + 47.0863010668, + -0.777309742731 + ], + "libelle_d_acheminement": "NUAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.777309742731, + 47.0863010668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "949ac2ba4f3dedaf46d0f9edd478d31186810c2b", + "fields": { + "code_commune_insee": "49240", + "nom_de_la_commune": "LA PLAINE", + "code_postal": "49360", + "coordonnees_gps": [ + 47.0673907245, + -0.628869263252 + ], + "libelle_d_acheminement": "LA PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.628869263252, + 47.0673907245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7334619663ee7859a95b3a5bb6b8a4ce49e28999", + "fields": { + "ligne_5": "BOURGNEUF EN MAUGES", + "code_commune_insee": "49244", + "libelle_d_acheminement": "MAUGES SUR LOIRE", + "code_postal": "49290", + "nom_de_la_commune": "MAUGES SUR LOIRE", + "coordonnees_gps": [ + 47.3429800481, + -0.869186945487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.869186945487, + 47.3429800481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "177b98c8aff4d2b68ed26fa60aebe01d39f40ee9", + "fields": { + "ligne_5": "ST LAURENT DE LA PLAINE", + "code_commune_insee": "49244", + "libelle_d_acheminement": "MAUGES SUR LOIRE", + "code_postal": "49290", + "nom_de_la_commune": "MAUGES SUR LOIRE", + "coordonnees_gps": [ + 47.3429800481, + -0.869186945487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.869186945487, + 47.3429800481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12427cddd10ca1d816138e67f9469fe5fbb6baea", + "fields": { + "ligne_5": "LA CHAPELLE ST FLORENT", + "code_commune_insee": "49244", + "libelle_d_acheminement": "MAUGES SUR LOIRE", + "code_postal": "49410", + "nom_de_la_commune": "MAUGES SUR LOIRE", + "coordonnees_gps": [ + 47.3429800481, + -0.869186945487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.869186945487, + 47.3429800481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d779c114236f28554cf594d18e244fd991ecc6f", + "fields": { + "ligne_5": "LE MARILLAIS", + "code_commune_insee": "49244", + "libelle_d_acheminement": "MAUGES SUR LOIRE", + "code_postal": "49410", + "nom_de_la_commune": "MAUGES SUR LOIRE", + "coordonnees_gps": [ + 47.3429800481, + -0.869186945487 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.869186945487, + 47.3429800481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6f2dd9f81ef9df6ea4b94da5217113235d45187", + "fields": { + "ligne_5": "SORGES", + "code_commune_insee": "49246", + "libelle_d_acheminement": "LES PONTS DE CE", + "code_postal": "49130", + "nom_de_la_commune": "LES PONTS DE CE", + "coordonnees_gps": [ + 47.4272536106, + -0.512677371617 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.512677371617, + 47.4272536106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13ff4054bc9419eb8726f19180d7adecafb838b0", + "fields": { + "ligne_5": "LA PREVIERE", + "code_commune_insee": "49248", + "libelle_d_acheminement": "OMBREE D ANJOU", + "code_postal": "49420", + "nom_de_la_commune": "OMBREE D ANJOU", + "coordonnees_gps": [ + 47.7629344972, + -1.19300189799 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19300189799, + 47.7629344972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68bc205945de437ddadc9e9eb8fe88e14aa7fc2c", + "fields": { + "ligne_5": "NOELLET", + "code_commune_insee": "49248", + "libelle_d_acheminement": "OMBREE D ANJOU", + "code_postal": "49520", + "nom_de_la_commune": "OMBREE D ANJOU", + "coordonnees_gps": [ + 47.7629344972, + -1.19300189799 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19300189799, + 47.7629344972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bee412ff9d45146c983d3074f1c5da5b1ece22ca", + "fields": { + "code_commune_insee": "49257", + "nom_de_la_commune": "LES RAIRIES", + "code_postal": "49430", + "coordonnees_gps": [ + 47.6517641258, + -0.216889906219 + ], + "libelle_d_acheminement": "LES RAIRIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.216889906219, + 47.6517641258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4d26e8788cd5aa44bacd2e553aca2798cb5ee95", + "fields": { + "code_commune_insee": "49266", + "nom_de_la_commune": "ST AUGUSTIN DES BOIS", + "code_postal": "49170", + "coordonnees_gps": [ + 47.4545053471, + -0.800399129373 + ], + "libelle_d_acheminement": "ST AUGUSTIN DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.800399129373, + 47.4545053471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c66972c00f0b5b6b2d5f3e16d19b47a27380de12", + "fields": { + "code_commune_insee": "49291", + "nom_de_la_commune": "ST JUST SUR DIVE", + "code_postal": "49260", + "coordonnees_gps": [ + 47.1722921725, + -0.0995345523201 + ], + "libelle_d_acheminement": "ST JUST SUR DIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0995345523201, + 47.1722921725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff9a20851b3bc2c2e583a005ca562a1f18ef95cd", + "fields": { + "ligne_5": "ST AUBIN DE LUIGNE", + "code_commune_insee": "49292", + "libelle_d_acheminement": "VAL DU LAYON", + "code_postal": "49190", + "nom_de_la_commune": "VAL DU LAYON", + "coordonnees_gps": [ + 47.3002199454, + -0.640314853216 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.640314853216, + 47.3002199454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a17ad9475bcbb2e295de8f2e03d9bde2c1b8eea", + "fields": { + "ligne_5": "ST JEAN DE LINIERES", + "code_commune_insee": "49298", + "libelle_d_acheminement": "ST LEGER DE LINIERES", + "code_postal": "49070", + "nom_de_la_commune": "ST LEGER DE LINIERES", + "coordonnees_gps": [ + 47.4625011515, + -0.727690848988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.727690848988, + 47.4625011515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f3d24619677ace77884e427dc66c46e704807cd", + "fields": { + "ligne_5": "ST LEGER DES BOIS", + "code_commune_insee": "49298", + "libelle_d_acheminement": "ST LEGER DE LINIERES", + "code_postal": "49170", + "nom_de_la_commune": "ST LEGER DE LINIERES", + "coordonnees_gps": [ + 47.4625011515, + -0.727690848988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.727690848988, + 47.4625011515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aba8c9aa4d66b1471fac6907247609158da115fc", + "fields": { + "ligne_5": "LA RENAUDIERE", + "code_commune_insee": "49301", + "libelle_d_acheminement": "SEVREMOINE", + "code_postal": "49450", + "nom_de_la_commune": "SEVREMOINE", + "coordonnees_gps": [ + 47.1256560392, + -0.998341815021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.998341815021, + 47.1256560392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ce0d67941c1d4befd298d4ea9495aa78cca65eb", + "fields": { + "ligne_5": "ST MACAIRE EN MAUGES", + "code_commune_insee": "49301", + "libelle_d_acheminement": "SEVREMOINE", + "code_postal": "49450", + "nom_de_la_commune": "SEVREMOINE", + "coordonnees_gps": [ + 47.1256560392, + -0.998341815021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.998341815021, + 47.1256560392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eca66871d707791510d41f9fb0506b3ecef5ff1f", + "fields": { + "code_commune_insee": "49302", + "nom_de_la_commune": "ST MACAIRE DU BOIS", + "code_postal": "49260", + "coordonnees_gps": [ + 47.1133394452, + -0.289626991067 + ], + "libelle_d_acheminement": "ST MACAIRE DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.289626991067, + 47.1133394452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9483118dd2fac4dc63b3b53a349fffbf06e8724", + "fields": { + "code_commune_insee": "49306", + "nom_de_la_commune": "ST MARTIN DU FOUILLOUX", + "code_postal": "49170", + "coordonnees_gps": [ + 47.4370289729, + -0.708731973455 + ], + "libelle_d_acheminement": "ST MARTIN DU FOUILLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.708731973455, + 47.4370289729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d4403250855f5e0525abd26dc9f4f6bc9ab5469", + "fields": { + "ligne_5": "CORNE", + "code_commune_insee": "49307", + "libelle_d_acheminement": "LOIRE AUTHION", + "code_postal": "49630", + "nom_de_la_commune": "LOIRE AUTHION", + "coordonnees_gps": [ + 47.4219645317, + -0.319673646947 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.319673646947, + 47.4219645317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32d5a0258c9a18477dde57eb5c6f6d862e6c3e91", + "fields": { + "ligne_5": "ST HILAIRE ST FLORENT", + "code_commune_insee": "49328", + "libelle_d_acheminement": "SAUMUR", + "code_postal": "49400", + "nom_de_la_commune": "SAUMUR", + "coordonnees_gps": [ + 47.2673853525, + -0.0830410591988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0830410591988, + 47.2673853525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "973cc06008a60fd5d8dad2f57334b8761110c0ee", + "fields": { + "ligne_5": "EPIRE", + "code_commune_insee": "49329", + "libelle_d_acheminement": "SAVENNIERES", + "code_postal": "49170", + "nom_de_la_commune": "SAVENNIERES", + "coordonnees_gps": [ + 47.405865718, + -0.667155831696 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.667155831696, + 47.405865718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "855d8ffb3e51ad9ef5a82590664d02f642ce2e0e", + "fields": { + "ligne_5": "LA CHAPELLE SUR OUDON", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49500", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cc1d7e17aa3f45d0ed917da9fcf0de4f38b78e5", + "fields": { + "ligne_5": "ST MARTIN DU BOIS", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49500", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "495514c4a7dae78a3977f4445e9e1beb0c1c2aa2", + "fields": { + "code_commune_insee": "54597", + "nom_de_la_commune": "XIROCOURT", + "code_postal": "54740", + "coordonnees_gps": [ + 48.4327331153, + 6.17625721621 + ], + "libelle_d_acheminement": "XIROCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17625721621, + 48.4327331153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76237d5500d9f41b961d0ab04e82e9fafeb62fc8", + "fields": { + "ligne_5": "LE BOURG D IRE", + "code_commune_insee": "49331", + "libelle_d_acheminement": "SEGRE EN ANJOU BLEU", + "code_postal": "49520", + "nom_de_la_commune": "SEGRE EN ANJOU BLEU", + "coordonnees_gps": [ + 47.7016654227, + -0.863354104119 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.863354104119, + 47.7016654227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55abe3e1b9003a3a6ed3240be52fb905201dfe5f", + "fields": { + "code_commune_insee": "54600", + "nom_de_la_commune": "XOUSSE", + "code_postal": "54370", + "coordonnees_gps": [ + 48.653274183, + 6.70808860029 + ], + "libelle_d_acheminement": "XOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70808860029, + 48.653274183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e69bd6a9b888965d9d7ff5c2e07eb16ff0c4c91", + "fields": { + "code_commune_insee": "49341", + "nom_de_la_commune": "SOUZAY CHAMPIGNY", + "code_postal": "49400", + "coordonnees_gps": [ + 47.2170632945, + -0.0207542806981 + ], + "libelle_d_acheminement": "SOUZAY CHAMPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0207542806981, + 47.2170632945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "816c9ddb059722dc29d0c73fbc4bbb2b8d699f8c", + "fields": { + "code_commune_insee": "54602", + "nom_de_la_commune": "HAN DEVANT PIERREPONT", + "code_postal": "54620", + "coordonnees_gps": [ + 49.3965119718, + 5.71113429533 + ], + "libelle_d_acheminement": "HAN DEVANT PIERREPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71113429533, + 49.3965119718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5522f350b19d5b9d1fb49be442fc72c64dc42d44", + "fields": { + "code_commune_insee": "49343", + "nom_de_la_commune": "LA TESSOUALLE", + "code_postal": "49280", + "coordonnees_gps": [ + 47.0080969032, + -0.83728849312 + ], + "libelle_d_acheminement": "LA TESSOUALLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83728849312, + 47.0080969032 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57ef25a9018f751dac475795c6a3c004ac315991", + "fields": { + "code_commune_insee": "55015", + "nom_de_la_commune": "AULNOIS EN PERTHOIS", + "code_postal": "55170", + "coordonnees_gps": [ + 48.6347700844, + 5.12637328459 + ], + "libelle_d_acheminement": "AULNOIS EN PERTHOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12637328459, + 48.6347700844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e72b8463a4a154297131c71fb52e51d88a6499f8", + "fields": { + "code_commune_insee": "49344", + "nom_de_la_commune": "THORIGNE D ANJOU", + "code_postal": "49220", + "coordonnees_gps": [ + 47.6350974159, + -0.663556490698 + ], + "libelle_d_acheminement": "THORIGNE D ANJOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.663556490698, + 47.6350974159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56f0ce57315bc08d543931f3bbf009f397fe2f0a", + "fields": { + "code_commune_insee": "55018", + "nom_de_la_commune": "AUTREVILLE ST LAMBERT", + "code_postal": "55700", + "coordonnees_gps": [ + 49.5627667761, + 5.13433361931 + ], + "libelle_d_acheminement": "AUTREVILLE ST LAMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13433361931, + 49.5627667761 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65e8451ec143ec42220c5fafa98d0e61faf29011", + "fields": { + "code_commune_insee": "49347", + "nom_de_la_commune": "TIERCE", + "code_postal": "49125", + "coordonnees_gps": [ + 47.6245599519, + -0.44344301136 + ], + "libelle_d_acheminement": "TIERCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.44344301136, + 47.6245599519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55017fb0ba9db7680a10f1d24653c3232d2d1a0a", + "fields": { + "ligne_5": "DEUXNOUDS DEVANT BEAUZEE", + "code_commune_insee": "55040", + "libelle_d_acheminement": "BEAUSITE", + "code_postal": "55250", + "nom_de_la_commune": "BEAUSITE", + "coordonnees_gps": [ + 48.9672383709, + 5.21266788679 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21266788679, + 48.9672383709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea48d0bd65c9234876e06abb12545532cdcf6220", + "fields": { + "code_commune_insee": "49352", + "nom_de_la_commune": "TOUTLEMONDE", + "code_postal": "49360", + "coordonnees_gps": [ + 47.0574145416, + -0.75844602531 + ], + "libelle_d_acheminement": "TOUTLEMONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.75844602531, + 47.0574145416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e05a46af4cffe44cc99337c3461b7a4d59d824c", + "fields": { + "ligne_5": "SERAUCOURT", + "code_commune_insee": "55040", + "libelle_d_acheminement": "BEAUSITE", + "code_postal": "55250", + "nom_de_la_commune": "BEAUSITE", + "coordonnees_gps": [ + 48.9672383709, + 5.21266788679 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21266788679, + 48.9672383709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f1ae46f63c61cd9aa74737f2dfc04162c3cb428", + "fields": { + "code_commune_insee": "49353", + "nom_de_la_commune": "TRELAZE", + "code_postal": "49800", + "coordonnees_gps": [ + 47.451357179, + -0.473458788346 + ], + "libelle_d_acheminement": "TRELAZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.473458788346, + 47.451357179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1c37047e5774ddd6e15fa6158cb4ee6b60ae57e", + "fields": { + "code_commune_insee": "55043", + "nom_de_la_commune": "BELLEVILLE SUR MEUSE", + "code_postal": "55430", + "coordonnees_gps": [ + 49.179717344, + 5.39632263211 + ], + "libelle_d_acheminement": "BELLEVILLE SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39632263211, + 49.179717344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f877f34c896850b1a4fc61b6f04eeee33876477", + "fields": { + "code_commune_insee": "49362", + "nom_de_la_commune": "VARRAINS", + "code_postal": "49400", + "coordonnees_gps": [ + 47.2277631144, + -0.0662293398772 + ], + "libelle_d_acheminement": "VARRAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0662293398772, + 47.2277631144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b4f06a5b98d64713b583f82b2ab1d47c8ed4322", + "fields": { + "code_commune_insee": "55045", + "nom_de_la_commune": "BELRUPT EN VERDUNOIS", + "code_postal": "55100", + "coordonnees_gps": [ + 49.1477821746, + 5.45052020242 + ], + "libelle_d_acheminement": "BELRUPT EN VERDUNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45052020242, + 49.1477821746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68a5c0b6c7037a6832a2d0409967a74232ef0e38", + "fields": { + "code_commune_insee": "49368", + "nom_de_la_commune": "VERNANTES", + "code_postal": "49390", + "coordonnees_gps": [ + 47.3942457572, + 0.0285780026834 + ], + "libelle_d_acheminement": "VERNANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0285780026834, + 47.3942457572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "803c0d2d585f9cac671798036a5c0c382cad587a", + "fields": { + "code_commune_insee": "55051", + "nom_de_la_commune": "BIENCOURT SUR ORGE", + "code_postal": "55290", + "coordonnees_gps": [ + 48.5699197095, + 5.34636472127 + ], + "libelle_d_acheminement": "BIENCOURT SUR ORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34636472127, + 48.5699197095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c4cf6888c1e1f6157dfdb99cc3b59d34e1ad142", + "fields": { + "code_commune_insee": "50002", + "nom_de_la_commune": "AGNEAUX", + "code_postal": "50180", + "coordonnees_gps": [ + 49.1154902114, + -1.12991373053 + ], + "libelle_d_acheminement": "AGNEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12991373053, + 49.1154902114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a4f0607c04b0a56ce78218e0674a60732935173", + "fields": { + "code_commune_insee": "55072", + "nom_de_la_commune": "BRAQUIS", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1556838925, + 5.62867021892 + ], + "libelle_d_acheminement": "BRAQUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62867021892, + 49.1556838925 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c2100f077efda9c1636443c993378db5d82b578", + "fields": { + "code_commune_insee": "50019", + "nom_de_la_commune": "AUCEY LA PLAINE", + "code_postal": "50170", + "coordonnees_gps": [ + 48.5265006323, + -1.47519775381 + ], + "libelle_d_acheminement": "AUCEY LA PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47519775381, + 48.5265006323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e0100c3ec11663e986464debecc24266616ca97", + "fields": { + "code_commune_insee": "55075", + "nom_de_la_commune": "BRAUVILLIERS", + "code_postal": "55170", + "coordonnees_gps": [ + 48.5765120738, + 5.15370623292 + ], + "libelle_d_acheminement": "BRAUVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.15370623292, + 48.5765120738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68086d553922f26fad061082d89ddb8beb8b7712", + "fields": { + "code_commune_insee": "50022", + "nom_de_la_commune": "AUMEVILLE LESTRE", + "code_postal": "50630", + "coordonnees_gps": [ + 49.5389917084, + -1.32249534202 + ], + "libelle_d_acheminement": "AUMEVILLE LESTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32249534202, + 49.5389917084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18d415cd32cac6ffcdd88e553b7cf1fef19b39d4", + "fields": { + "code_commune_insee": "55078", + "nom_de_la_commune": "BRIEULLES SUR MEUSE", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3273847506, + 5.16531418341 + ], + "libelle_d_acheminement": "BRIEULLES SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16531418341, + 49.3273847506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8be87d1eb110dd28d18c6788ca381330a4f6f76a", + "fields": { + "code_commune_insee": "50024", + "nom_de_la_commune": "AUXAIS", + "code_postal": "50500", + "coordonnees_gps": [ + 49.2154112968, + -1.30575313751 + ], + "libelle_d_acheminement": "AUXAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30575313751, + 49.2154112968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb879b4b9c8ade18219a427ceb2d90ca6870dd6b", + "fields": { + "code_commune_insee": "55081", + "nom_de_la_commune": "BRIZEAUX", + "code_postal": "55250", + "coordonnees_gps": [ + 49.0062286296, + 5.05620625699 + ], + "libelle_d_acheminement": "BRIZEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05620625699, + 49.0062286296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9498b3d79b1524302ab1e42ab2183a812f4cf143", + "fields": { + "code_commune_insee": "50031", + "nom_de_la_commune": "BARNEVILLE CARTERET", + "code_postal": "50270", + "coordonnees_gps": [ + 49.3804461853, + -1.77027682978 + ], + "libelle_d_acheminement": "BARNEVILLE CARTERET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77027682978, + 49.3804461853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "988f5a6f0b95bd60aab1ba814c076c1cc1b01617", + "fields": { + "code_commune_insee": "55085", + "nom_de_la_commune": "BROUSSEY RAULECOURT", + "code_postal": "55200", + "coordonnees_gps": [ + 48.81452443, + 5.71880607657 + ], + "libelle_d_acheminement": "BROUSSEY RAULECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71880607657, + 48.81452443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51c02d218a236fd838d1b6f6b1ee40ece4f0dc8d", + "fields": { + "code_commune_insee": "50040", + "nom_de_la_commune": "BEAUFICEL", + "code_postal": "50150", + "coordonnees_gps": [ + 48.7422652249, + -0.962075624861 + ], + "libelle_d_acheminement": "BEAUFICEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.962075624861, + 48.7422652249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41b303d176f05ff2c541afcd30bcf816012aa7b7", + "fields": { + "code_commune_insee": "55099", + "nom_de_la_commune": "CHAMPNEUVILLE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.2365297669, + 5.32952814286 + ], + "libelle_d_acheminement": "CHAMPNEUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.32952814286, + 49.2365297669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca36360e4b9e1643a71be72616b3b24e9d42ff8f", + "fields": { + "ligne_5": "DIGULLEVILLE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e12e241a3484a65b1ecb6b9ee4bbc82503050d6b", + "fields": { + "code_commune_insee": "55101", + "nom_de_la_commune": "CHARDOGNE", + "code_postal": "55000", + "coordonnees_gps": [ + 48.827232312, + 5.13068088608 + ], + "libelle_d_acheminement": "CHARDOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13068088608, + 48.827232312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcaf9c0e93ba661efaca03d16e3714121de3d5fb", + "fields": { + "ligne_5": "GREVILLE HAGUE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9dee48c60321b9f7b4f67d18feda1800c439c4d", + "fields": { + "code_commune_insee": "55114", + "nom_de_la_commune": "CHONVILLE MALAUMONT", + "code_postal": "55200", + "coordonnees_gps": [ + 48.7606282553, + 5.49015408334 + ], + "libelle_d_acheminement": "CHONVILLE MALAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49015408334, + 48.7606282553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "895cd7a4f0d7a65992d45dedbfe2b83ca1f8c299", + "fields": { + "ligne_5": "VAUVILLE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50440", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeae283848c33745a20b4699bc09e01b870237d5", + "fields": { + "code_commune_insee": "55120", + "nom_de_la_commune": "COMBLES EN BARROIS", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7439561955, + 5.11375467167 + ], + "libelle_d_acheminement": "COMBLES EN BARROIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11375467167, + 48.7439561955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4370b4e42c4ebf5f45f67ac49c75511a71f850fe", + "fields": { + "ligne_5": "FLOTTEMANVILLE HAGUE", + "code_commune_insee": "50041", + "libelle_d_acheminement": "LA HAGUE", + "code_postal": "50690", + "nom_de_la_commune": "LA HAGUE", + "coordonnees_gps": [ + 49.6631647329, + -1.84267363083 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.84267363083, + 49.6631647329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2955826e8f0887b75879c5abe4707b0daf7c879b", + "fields": { + "code_commune_insee": "55122", + "nom_de_la_commune": "COMMERCY", + "code_postal": "55200", + "coordonnees_gps": [ + 48.7462445722, + 5.55631428699 + ], + "libelle_d_acheminement": "COMMERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.55631428699, + 48.7462445722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a085d05070ec573a4af60dd4e0b977e88328a43", + "fields": { + "code_commune_insee": "50045", + "nom_de_la_commune": "BENOITVILLE", + "code_postal": "50340", + "coordonnees_gps": [ + 49.5288698875, + -1.77573720806 + ], + "libelle_d_acheminement": "BENOITVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.77573720806, + 49.5288698875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a8f2654799a1e8da12a49642da690031f8c00b9", + "fields": { + "code_commune_insee": "55123", + "nom_de_la_commune": "LES HAUTS DE CHEE", + "code_postal": "55000", + "coordonnees_gps": [ + 48.8683371725, + 5.16520708778 + ], + "libelle_d_acheminement": "LES HAUTS DE CHEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16520708778, + 48.8683371725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f58d4593c140f005160d8d31cd38fc3ed92d0fda", + "fields": { + "code_commune_insee": "50055", + "nom_de_la_commune": "BINIVILLE", + "code_postal": "50390", + "coordonnees_gps": [ + 49.4295879255, + -1.48671133047 + ], + "libelle_d_acheminement": "BINIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48671133047, + 49.4295879255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5da31b0efbe0f32ede3b7c0657d07fb19aeb6cd4", + "fields": { + "ligne_5": "HARGEVILLE SUR CHEE", + "code_commune_insee": "55123", + "libelle_d_acheminement": "LES HAUTS DE CHEE", + "code_postal": "55000", + "nom_de_la_commune": "LES HAUTS DE CHEE", + "coordonnees_gps": [ + 48.8683371725, + 5.16520708778 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16520708778, + 48.8683371725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4140e5fff40b67ed19af2156e17af7a3f7dfde51", + "fields": { + "code_commune_insee": "50058", + "nom_de_la_commune": "BLAINVILLE SUR MER", + "code_postal": "50560", + "coordonnees_gps": [ + 49.0728785258, + -1.57173551659 + ], + "libelle_d_acheminement": "BLAINVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57173551659, + 49.0728785258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76334ea1333983b008ff8f8584e01bd68721f456", + "fields": { + "code_commune_insee": "55144", + "nom_de_la_commune": "DAMMARIE SUR SAULX", + "code_postal": "55500", + "coordonnees_gps": [ + 48.5968409986, + 5.2379279396 + ], + "libelle_d_acheminement": "DAMMARIE SUR SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2379279396, + 48.5968409986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cec72b77f9b9aeff81aba421c5f6daf248927ae2", + "fields": { + "code_commune_insee": "50059", + "nom_de_la_commune": "BLOSVILLE", + "code_postal": "50480", + "coordonnees_gps": [ + 49.3718453122, + -1.28832073685 + ], + "libelle_d_acheminement": "BLOSVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28832073685, + 49.3718453122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e479a5843be507b7ab79c7ef631b8c608d204ea", + "fields": { + "ligne_5": "DEMANGE AUX EAUX", + "code_commune_insee": "55150", + "libelle_d_acheminement": "DEMANGE BAUDIGNECOURT", + "code_postal": "55130", + "nom_de_la_commune": "DEMANGE BAUDIGNECOURT", + "coordonnees_gps": [ + 48.5915243717, + 5.47266149936 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47266149936, + 48.5915243717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43823fcb30285b760f32cb7f6e2245ca7c1d7474", + "fields": { + "code_commune_insee": "50064", + "nom_de_la_commune": "LA BONNEVILLE", + "code_postal": "50360", + "coordonnees_gps": [ + 49.3917994108, + -1.45932515061 + ], + "libelle_d_acheminement": "LA BONNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45932515061, + 49.3917994108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4b86cb8a78e7586aa668fad7383027bdb87b47f", + "fields": { + "code_commune_insee": "55157", + "nom_de_la_commune": "DOMMARTIN LA MONTAGNE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.0242520854, + 5.6017607408 + ], + "libelle_d_acheminement": "DOMMARTIN LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6017607408, + 49.0242520854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5fc617e164f733c9e1d8e7632200466c950a3ab", + "fields": { + "code_commune_insee": "50066", + "nom_de_la_commune": "JULLOUVILLE", + "code_postal": "50610", + "coordonnees_gps": [ + 48.7634529301, + -1.52729216893 + ], + "libelle_d_acheminement": "JULLOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.52729216893, + 48.7634529301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a7147dc531151bbaab109e8894dded7a4ef37c6", + "fields": { + "code_commune_insee": "55162", + "nom_de_la_commune": "DOMREMY LA CANNE", + "code_postal": "55240", + "coordonnees_gps": [ + 49.2976443641, + 5.69310622182 + ], + "libelle_d_acheminement": "DOMREMY LA CANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69310622182, + 49.2976443641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50753803907620dcbe992c1f6f15c22d2d404a82", + "fields": { + "code_commune_insee": "50079", + "nom_de_la_commune": "BREUVILLE", + "code_postal": "50260", + "coordonnees_gps": [ + 49.5381940041, + -1.66976755388 + ], + "libelle_d_acheminement": "BREUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66976755388, + 49.5381940041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "003f2a7bbedb726b92287e5aa8946172e90d9d13", + "fields": { + "code_commune_insee": "55166", + "nom_de_la_commune": "DUGNY SUR MEUSE", + "code_postal": "55100", + "coordonnees_gps": [ + 49.1014036398, + 5.37402646428 + ], + "libelle_d_acheminement": "DUGNY SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37402646428, + 49.1014036398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93118d38f79bbdeefb6ddd77a69620d74d1b52ab", + "fields": { + "code_commune_insee": "50081", + "nom_de_la_commune": "BREVILLE SUR MER", + "code_postal": "50290", + "coordonnees_gps": [ + 48.8696459716, + -1.55887910392 + ], + "libelle_d_acheminement": "BREVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55887910392, + 48.8696459716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "694042546bb3c0ba26fee6fa0361dc25b6aec63e", + "fields": { + "code_commune_insee": "55167", + "nom_de_la_commune": "DUN SUR MEUSE", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3830660669, + 5.19574111404 + ], + "libelle_d_acheminement": "DUN SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19574111404, + 49.3830660669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a37512aaaee477c8dcf5fc154b629a9f5b8f7c4d", + "fields": { + "ligne_5": "BRICQUEBEC", + "code_commune_insee": "50082", + "libelle_d_acheminement": "BRICQUEBEC EN COTENTIN", + "code_postal": "50260", + "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", + "coordonnees_gps": [ + 49.4699810492, + -1.63261585347 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63261585347, + 49.4699810492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b5679a54e471d063f1e8ad08c61864ab34593dc", + "fields": { + "code_commune_insee": "55168", + "nom_de_la_commune": "DUZEY", + "code_postal": "55230", + "coordonnees_gps": [ + 49.3582966072, + 5.6169163896 + ], + "libelle_d_acheminement": "DUZEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6169163896, + 49.3582966072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8929ec685adf17fc87b9d06482470ba6f11ba97", + "fields": { + "ligne_5": "LES PERQUES", + "code_commune_insee": "50082", + "libelle_d_acheminement": "BRICQUEBEC EN COTENTIN", + "code_postal": "50260", + "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", + "coordonnees_gps": [ + 49.4699810492, + -1.63261585347 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63261585347, + 49.4699810492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9e795d2abc10c6b9d6e446926a9e0e4c90af851", + "fields": { + "code_commune_insee": "55169", + "nom_de_la_commune": "ECOUVIEZ", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5332207163, + 5.45169555956 + ], + "libelle_d_acheminement": "ECOUVIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.45169555956, + 49.5332207163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36af52ccedde47050812c2bb6b0b7425d71e2b11", + "fields": { + "ligne_5": "QUETTETOT", + "code_commune_insee": "50082", + "libelle_d_acheminement": "BRICQUEBEC EN COTENTIN", + "code_postal": "50260", + "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", + "coordonnees_gps": [ + 49.4699810492, + -1.63261585347 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63261585347, + 49.4699810492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d88bfc2cce300ae7a2c4d380583f140c9b59da5", + "fields": { + "code_commune_insee": "55175", + "nom_de_la_commune": "ERIZE LA BRULEE", + "code_postal": "55260", + "coordonnees_gps": [ + 48.846916203, + 5.27496200343 + ], + "libelle_d_acheminement": "ERIZE LA BRULEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.27496200343, + 48.846916203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85d71744ac5841349b72e30cdfb1a6e1589f956f", + "fields": { + "ligne_5": "ST MARTIN LE HEBERT", + "code_commune_insee": "50082", + "libelle_d_acheminement": "BRICQUEBEC EN COTENTIN", + "code_postal": "50260", + "nom_de_la_commune": "BRICQUEBEC EN COTENTIN", + "coordonnees_gps": [ + 49.4699810492, + -1.63261585347 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63261585347, + 49.4699810492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "641c144ea118cc3affa171b8536c9878996988d9", + "fields": { + "code_commune_insee": "55189", + "nom_de_la_commune": "FLEURY DEVANT DOUAUMONT", + "code_postal": "55100", + "coordonnees_gps": [ + 49.1943927792, + 5.433296975 + ], + "libelle_d_acheminement": "FLEURY DEVANT DOUAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.433296975, + 49.1943927792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dcf188a398bb1782af1f5234cb274cab8ad9987", + "fields": { + "code_commune_insee": "50093", + "nom_de_la_commune": "CAMETOURS", + "code_postal": "50570", + "coordonnees_gps": [ + 49.0708020035, + -1.28408388695 + ], + "libelle_d_acheminement": "CAMETOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.28408388695, + 49.0708020035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65372277b138f88ce76debd7f995baf646682e00", + "fields": { + "ligne_5": "ORNEL", + "code_commune_insee": "55191", + "libelle_d_acheminement": "FOAMEIX ORNEL", + "code_postal": "55400", + "nom_de_la_commune": "FOAMEIX ORNEL", + "coordonnees_gps": [ + 49.238852622, + 5.6078648482 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6078648482, + 49.238852622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7aca02aaf265133981d43fbe8f3121bfda2d64b", + "fields": { + "ligne_5": "ANGOVILLE AU PLAIN", + "code_commune_insee": "50099", + "libelle_d_acheminement": "CARENTAN LES MARAIS", + "code_postal": "50480", + "nom_de_la_commune": "CARENTAN LES MARAIS", + "coordonnees_gps": [ + 49.2963250601, + -1.2559215726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2559215726, + 49.2963250601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "935b102dc608d6eca1649753b83b47efbfef70a3", + "fields": { + "code_commune_insee": "55192", + "nom_de_la_commune": "FONTAINES ST CLAIR", + "code_postal": "55110", + "coordonnees_gps": [ + 49.3664401834, + 5.24637974366 + ], + "libelle_d_acheminement": "FONTAINES ST CLAIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24637974366, + 49.3664401834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b8d9b780f7c55b74e3da6d135592058adaf32ad", + "fields": { + "ligne_5": "VIERVILLE", + "code_commune_insee": "50099", + "libelle_d_acheminement": "CARENTAN LES MARAIS", + "code_postal": "50480", + "nom_de_la_commune": "CARENTAN LES MARAIS", + "coordonnees_gps": [ + 49.2963250601, + -1.2559215726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2559215726, + 49.2963250601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d07fd7c27b2aa1f8e9654bbc04e47838df344cc4", + "fields": { + "code_commune_insee": "55198", + "nom_de_la_commune": "FRESNES EN WOEVRE", + "code_postal": "55160", + "coordonnees_gps": [ + 49.1009729702, + 5.63355600212 + ], + "libelle_d_acheminement": "FRESNES EN WOEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63355600212, + 49.1009729702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27f1a8f245314eb6dc13e6adec44bda7005353a2", + "fields": { + "ligne_5": "ST HILAIRE PETITVILLE", + "code_commune_insee": "50099", + "libelle_d_acheminement": "CARENTAN LES MARAIS", + "code_postal": "50500", + "nom_de_la_commune": "CARENTAN LES MARAIS", + "coordonnees_gps": [ + 49.2963250601, + -1.2559215726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2559215726, + 49.2963250601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d48c0068e732fb8053fce40acb5df78df583a91", + "fields": { + "code_commune_insee": "55202", + "nom_de_la_commune": "FUTEAU", + "code_postal": "55120", + "coordonnees_gps": [ + 49.0766831895, + 5.0069025981 + ], + "libelle_d_acheminement": "FUTEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0069025981, + 49.0766831895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89059b5ebce7d1b04f2f9c060b2ef9beb2b2784d", + "fields": { + "ligne_5": "MONTMARTIN EN GRAIGNES", + "code_commune_insee": "50099", + "libelle_d_acheminement": "CARENTAN LES MARAIS", + "code_postal": "50620", + "nom_de_la_commune": "CARENTAN LES MARAIS", + "coordonnees_gps": [ + 49.2963250601, + -1.2559215726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2559215726, + 49.2963250601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c95f4121809f2ef7dba821468a4f344f8a1ef329", + "fields": { + "code_commune_insee": "55219", + "nom_de_la_commune": "GRIMAUCOURT EN WOEVRE", + "code_postal": "55400", + "coordonnees_gps": [ + 49.1630352825, + 5.56520722889 + ], + "libelle_d_acheminement": "GRIMAUCOURT EN WOEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56520722889, + 49.1630352825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f232912979f9dbc2692292b7b4f2f71f3e758498", + "fields": { + "code_commune_insee": "50101", + "nom_de_la_commune": "CARNEVILLE", + "code_postal": "50330", + "coordonnees_gps": [ + 49.6594170534, + -1.44840446886 + ], + "libelle_d_acheminement": "CARNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44840446886, + 49.6594170534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bb544dee7ec8526843d78f2e7de90c4e5c80332", + "fields": { + "code_commune_insee": "55224", + "nom_de_la_commune": "HAIRONVILLE", + "code_postal": "55000", + "coordonnees_gps": [ + 48.6878011778, + 5.09026737297 + ], + "libelle_d_acheminement": "HAIRONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09026737297, + 48.6878011778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37c8850ae081b0f9248b829bef01c32962b80d5c", + "fields": { + "code_commune_insee": "50105", + "nom_de_la_commune": "CATTEVILLE", + "code_postal": "50390", + "coordonnees_gps": [ + 49.3549798995, + -1.5656295955 + ], + "libelle_d_acheminement": "CATTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5656295955, + 49.3549798995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c793de25ad206306f30703e5611eb35e8505b60", + "fields": { + "code_commune_insee": "55237", + "nom_de_la_commune": "HAUDIOMONT", + "code_postal": "55160", + "coordonnees_gps": [ + 49.1156390921, + 5.54370706013 + ], + "libelle_d_acheminement": "HAUDIOMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.54370706013, + 49.1156390921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1de3c3f5c59660543437c19689ebcb75c17dd9a3", + "fields": { + "ligne_5": "CHERBOURG", + "code_commune_insee": "50129", + "libelle_d_acheminement": "CHERBOURG EN COTENTIN", + "code_postal": "50100", + "nom_de_la_commune": "CHERBOURG EN COTENTIN", + "coordonnees_gps": [ + 49.633412156, + -1.63390160204 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63390160204, + 49.633412156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74895063e458709102fc4e2ca857b3fb99ca0f8b", + "fields": { + "code_commune_insee": "55253", + "nom_de_la_commune": "LES ISLETTES", + "code_postal": "55120", + "coordonnees_gps": [ + 49.1115870926, + 5.00586320659 + ], + "libelle_d_acheminement": "LES ISLETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00586320659, + 49.1115870926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "199c801f837124bfed8f44365384d9ac96dbb819", + "fields": { + "ligne_5": "QUERQUEVILLE", + "code_commune_insee": "50129", + "libelle_d_acheminement": "CHERBOURG EN COTENTIN", + "code_postal": "50460", + "nom_de_la_commune": "CHERBOURG EN COTENTIN", + "coordonnees_gps": [ + 49.633412156, + -1.63390160204 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.63390160204, + 49.633412156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37778af7a4202c1b225a1006e818830e2c021998", + "fields": { + "code_commune_insee": "55254", + "nom_de_la_commune": "LES TROIS DOMAINES", + "code_postal": "55220", + "coordonnees_gps": [ + 48.9707289763, + 5.28179879783 + ], + "libelle_d_acheminement": "LES TROIS DOMAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28179879783, + 48.9707289763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08ab53d1aa094e6c24a6619a4be625d51d29d610", + "fields": { + "ligne_5": "ANGOVILLE EN SAIRE", + "code_commune_insee": "50142", + "libelle_d_acheminement": "VICQ SUR MER", + "code_postal": "50330", + "nom_de_la_commune": "VICQ SUR MER", + "coordonnees_gps": [ + 49.6915085353, + -1.4000999278 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4000999278, + 49.6915085353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9b350d7dc168e27d488612f734a85db12b2dcd6", + "fields": { + "ligne_5": "MONDRECOURT", + "code_commune_insee": "55254", + "libelle_d_acheminement": "LES TROIS DOMAINES", + "code_postal": "55220", + "nom_de_la_commune": "LES TROIS DOMAINES", + "coordonnees_gps": [ + 48.9707289763, + 5.28179879783 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28179879783, + 48.9707289763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33ea3027ba715ff46adad7322b1b10dd89a99319", + "fields": { + "code_commune_insee": "50151", + "nom_de_la_commune": "CREANCES", + "code_postal": "50710", + "coordonnees_gps": [ + 49.1999968396, + -1.56218099471 + ], + "libelle_d_acheminement": "CREANCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56218099471, + 49.1999968396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8111ec40396c5f6998525a9623dd6458f3770e4d", + "fields": { + "ligne_5": "RIGNAUCOURT", + "code_commune_insee": "55254", + "libelle_d_acheminement": "LES TROIS DOMAINES", + "code_postal": "55220", + "nom_de_la_commune": "LES TROIS DOMAINES", + "coordonnees_gps": [ + 48.9707289763, + 5.28179879783 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28179879783, + 48.9707289763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3915a0f3cafe6817271b07c8d1f88a7e57f5a31e", + "fields": { + "code_commune_insee": "50158", + "nom_de_la_commune": "CUVES", + "code_postal": "50670", + "coordonnees_gps": [ + 48.7292658425, + -1.09806431434 + ], + "libelle_d_acheminement": "CUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.09806431434, + 48.7292658425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89cd57898bd7ee9e038b9e9a11727d4a0f879756", + "fields": { + "code_commune_insee": "55255", + "nom_de_la_commune": "JAMETZ", + "code_postal": "55600", + "coordonnees_gps": [ + 49.4256516039, + 5.39096385374 + ], + "libelle_d_acheminement": "JAMETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39096385374, + 49.4256516039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37c6f1d178b9a344a83bd358ed70b6033d7852b5", + "fields": { + "code_commune_insee": "50167", + "nom_de_la_commune": "DRAGEY RONTHON", + "code_postal": "50530", + "coordonnees_gps": [ + 48.7166999564, + -1.48832263825 + ], + "libelle_d_acheminement": "DRAGEY RONTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.48832263825, + 48.7166999564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bc87c670478735ca9cc261908c591696b4bd542", + "fields": { + "code_commune_insee": "55263", + "nom_de_la_commune": "KOEUR LA GRANDE", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8668514079, + 5.4686065027 + ], + "libelle_d_acheminement": "KOEUR LA GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4686065027, + 48.8668514079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1501e855dd51053d51872215836f781ed3be059", + "fields": { + "ligne_5": "DUCEY", + "code_commune_insee": "50168", + "libelle_d_acheminement": "DUCEY LES CHERIS", + "code_postal": "50220", + "nom_de_la_commune": "DUCEY LES CHERIS", + "coordonnees_gps": [ + 48.6129636498, + -1.27873609026 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27873609026, + 48.6129636498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8559bf095f1ed5daefda6eda21025b1c1edf5b02", + "fields": { + "code_commune_insee": "55268", + "nom_de_la_commune": "LACROIX SUR MEUSE", + "code_postal": "55300", + "coordonnees_gps": [ + 48.983746854, + 5.52830793027 + ], + "libelle_d_acheminement": "LACROIX SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52830793027, + 48.983746854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2986e51d5050e9881b4b4259dd26147cd3a554b", + "fields": { + "code_commune_insee": "50175", + "nom_de_la_commune": "EROUDEVILLE", + "code_postal": "50310", + "coordonnees_gps": [ + 49.4742435291, + -1.39648414202 + ], + "libelle_d_acheminement": "EROUDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39648414202, + 49.4742435291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "519c1eea6bffd8699aa76415add6f97c93cb9c41", + "fields": { + "code_commune_insee": "55270", + "nom_de_la_commune": "LAHAYVILLE", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8922156555, + 5.76968506389 + ], + "libelle_d_acheminement": "LAHAYVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76968506389, + 48.8922156555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1ad407cc7b515d10e7d32dc1cafa53212a5c78c", + "fields": { + "code_commune_insee": "50176", + "nom_de_la_commune": "L ETANG BERTRAND", + "code_postal": "50260", + "coordonnees_gps": [ + 49.4724529021, + -1.57060708734 + ], + "libelle_d_acheminement": "L ETANG BERTRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57060708734, + 49.4724529021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e1219cb1856631f64790b4215cb0b71acebd964", + "fields": { + "ligne_5": "DEUXNOUDS AUX BOIS", + "code_commune_insee": "55274", + "libelle_d_acheminement": "LAMORVILLE", + "code_postal": "55300", + "nom_de_la_commune": "LAMORVILLE", + "coordonnees_gps": [ + 48.964535147, + 5.59226400853 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59226400853, + 48.964535147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4814115a8b0572a9e11a637ab09a7eb469c58e35", + "fields": { + "code_commune_insee": "50177", + "nom_de_la_commune": "ETIENVILLE", + "code_postal": "50360", + "coordonnees_gps": [ + 49.3854228436, + -1.4364851189 + ], + "libelle_d_acheminement": "ETIENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4364851189, + 49.3854228436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7621ac2bfd9b239450fcbf4c9c56e0fe9df56346", + "fields": { + "code_commune_insee": "55285", + "nom_de_la_commune": "LAVOYE", + "code_postal": "55120", + "coordonnees_gps": [ + 49.0478330422, + 5.13923689971 + ], + "libelle_d_acheminement": "LAVOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.13923689971, + 49.0478330422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53bc21beda30a4495989a2591bfa51e273f0bba7", + "fields": { + "code_commune_insee": "50181", + "nom_de_la_commune": "FEUGERES", + "code_postal": "50190", + "coordonnees_gps": [ + 49.1487759285, + -1.31727331355 + ], + "libelle_d_acheminement": "FEUGERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31727331355, + 49.1487759285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52e6d152d4fba61a6a93162a5bf56abb9a486a7c", + "fields": { + "code_commune_insee": "55306", + "nom_de_la_commune": "LOUPPY SUR LOISON", + "code_postal": "55600", + "coordonnees_gps": [ + 49.4378207831, + 5.33742764775 + ], + "libelle_d_acheminement": "LOUPPY SUR LOISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33742764775, + 49.4378207831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b80ed14a7e5a1f526674dcd3f51a4b316c4bbffc", + "fields": { + "code_commune_insee": "50186", + "nom_de_la_commune": "FLOTTEMANVILLE", + "code_postal": "50700", + "coordonnees_gps": [ + 49.476265104, + -1.45169361396 + ], + "libelle_d_acheminement": "FLOTTEMANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45169361396, + 49.476265104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "909ed9a4f52e148848b7b51f1e26368e308697e1", + "fields": { + "code_commune_insee": "55311", + "nom_de_la_commune": "MAIZERAY", + "code_postal": "55160", + "coordonnees_gps": [ + 49.1053498485, + 5.70142913056 + ], + "libelle_d_acheminement": "MAIZERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70142913056, + 49.1053498485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8c054de7a5d3607fa3f10b47baf432c7af76058", + "fields": { + "code_commune_insee": "50188", + "nom_de_la_commune": "FOLLIGNY", + "code_postal": "50320", + "coordonnees_gps": [ + 48.8202336889, + -1.41781019903 + ], + "libelle_d_acheminement": "FOLLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.41781019903, + 48.8202336889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea653d47ffbdb91f3aebfcc17f95d96d4fd0680f", + "fields": { + "code_commune_insee": "55317", + "nom_de_la_commune": "MANHEULLES", + "code_postal": "55160", + "coordonnees_gps": [ + 49.1211788426, + 5.59472588936 + ], + "libelle_d_acheminement": "MANHEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59472588936, + 49.1211788426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed717eb52313f0c0c19cd4996f5cf31bb8ed7023", + "fields": { + "ligne_5": "LE MESNIL AMAND", + "code_commune_insee": "50197", + "libelle_d_acheminement": "GAVRAY SUR SIENNE", + "code_postal": "50450", + "nom_de_la_commune": "GAVRAY SUR SIENNE", + "coordonnees_gps": [ + 48.901866947, + -1.32927187447 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32927187447, + 48.901866947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc8375048f608deeb8b01fc948bcfb4889f9d6b5", + "fields": { + "code_commune_insee": "55322", + "nom_de_la_commune": "MARSON SUR BARBOURE", + "code_postal": "55190", + "coordonnees_gps": [ + 48.6356525614, + 5.44358153935 + ], + "libelle_d_acheminement": "MARSON SUR BARBOURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44358153935, + 48.6356525614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eb94938a797439670511f206670463b36e7fde2", + "fields": { + "ligne_5": "LE MESNIL HUE", + "code_commune_insee": "50197", + "libelle_d_acheminement": "GAVRAY SUR SIENNE", + "code_postal": "50450", + "nom_de_la_commune": "GAVRAY SUR SIENNE", + "coordonnees_gps": [ + 48.901866947, + -1.32927187447 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32927187447, + 48.901866947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b894663e563ef1e6d0e4646aec7a8af8ee4ec37b", + "fields": { + "code_commune_insee": "55335", + "nom_de_la_commune": "MENIL SUR SAULX", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6206443104, + 5.20630539586 + ], + "libelle_d_acheminement": "MENIL SUR SAULX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.20630539586, + 48.6206443104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8ebfc1f101dd8ed7b3f86b52e5dbf5fb5921f7c", + "fields": { + "ligne_5": "SOURDEVAL LES BOIS", + "code_commune_insee": "50197", + "libelle_d_acheminement": "GAVRAY SUR SIENNE", + "code_postal": "50450", + "nom_de_la_commune": "GAVRAY SUR SIENNE", + "coordonnees_gps": [ + 48.901866947, + -1.32927187447 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.32927187447, + 48.901866947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f50ea8ab002e3ae6ccef599be75761d38af8c8eb", + "fields": { + "code_commune_insee": "55347", + "nom_de_la_commune": "LES MONTHAIRONS", + "code_postal": "55320", + "coordonnees_gps": [ + 49.0425631534, + 5.3924863289 + ], + "libelle_d_acheminement": "LES MONTHAIRONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3924863289, + 49.0425631534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a9e7b6fba32cb4b69a1ba47ecb17e5e777fab98", + "fields": { + "code_commune_insee": "50199", + "nom_de_la_commune": "GENETS", + "code_postal": "50530", + "coordonnees_gps": [ + 48.6891667321, + -1.47354012671 + ], + "libelle_d_acheminement": "GENETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.47354012671, + 48.6891667321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "446a8ab6e61f6929106235785531f595d84e9fbb", + "fields": { + "code_commune_insee": "55353", + "nom_de_la_commune": "MONTSEC", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8910208908, + 5.72352186307 + ], + "libelle_d_acheminement": "MONTSEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72352186307, + 48.8910208908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b47d4034b34d1242cba2e0d5d4fe886ed79c7895", + "fields": { + "code_commune_insee": "50207", + "nom_de_la_commune": "GOLLEVILLE", + "code_postal": "50390", + "coordonnees_gps": [ + 49.4387094084, + -1.51369309832 + ], + "libelle_d_acheminement": "GOLLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.51369309832, + 49.4387094084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f38a4554976bc8ae5bab30861d150c15f6425b9e", + "fields": { + "ligne_5": "OEY", + "code_commune_insee": "55358", + "libelle_d_acheminement": "CHANTERAINE", + "code_postal": "55500", + "nom_de_la_commune": "CHANTERAINE", + "coordonnees_gps": [ + 48.6785463151, + 5.39088582965 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39088582965, + 48.6785463151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd4c984a0be89260f9c27d39c1e1047e2bf40a44", + "fields": { + "code_commune_insee": "50208", + "nom_de_la_commune": "GONFREVILLE", + "code_postal": "50190", + "coordonnees_gps": [ + 49.2310325389, + -1.40286602257 + ], + "libelle_d_acheminement": "GONFREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40286602257, + 49.2310325389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d88f168469ab02a7e9f2f7dc2760667df84f668a", + "fields": { + "code_commune_insee": "55360", + "nom_de_la_commune": "MOUILLY", + "code_postal": "55320", + "coordonnees_gps": [ + 49.054067614, + 5.53932302592 + ], + "libelle_d_acheminement": "MOUILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53932302592, + 49.054067614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceb717ed885b24733a1b68ed67e7b110e3ed96dc", + "fields": { + "code_commune_insee": "50225", + "nom_de_la_commune": "LE GUISLAIN", + "code_postal": "50410", + "coordonnees_gps": [ + 48.971687343, + -1.21557798635 + ], + "libelle_d_acheminement": "LE GUISLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.21557798635, + 48.971687343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c617eaee4b493aacf7ac615388977c3483c8bc5a", + "fields": { + "code_commune_insee": "55362", + "nom_de_la_commune": "MOULINS ST HUBERT", + "code_postal": "55700", + "coordonnees_gps": [ + 49.5783636876, + 5.12770792958 + ], + "libelle_d_acheminement": "MOULINS ST HUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12770792958, + 49.5783636876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "059904c79cf77ddebc4848fb29ac357d20e8fa9d", + "fields": { + "code_commune_insee": "50229", + "nom_de_la_commune": "HAMELIN", + "code_postal": "50730", + "coordonnees_gps": [ + 48.5429270331, + -1.22248303099 + ], + "libelle_d_acheminement": "HAMELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22248303099, + 48.5429270331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b0b050a302dec2037e069fbe49b838f27303840", + "fields": { + "code_commune_insee": "55376", + "nom_de_la_commune": "NANTOIS", + "code_postal": "55500", + "coordonnees_gps": [ + 48.6266032381, + 5.34341376776 + ], + "libelle_d_acheminement": "NANTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34341376776, + 48.6266032381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69c7b003fa8225f42103ff77e9138f6d4fb0ce7d", + "fields": { + "code_commune_insee": "68336", + "nom_de_la_commune": "TRAUBACH LE BAS", + "code_postal": "68210", + "coordonnees_gps": [ + 47.655039001, + 7.0935498603 + ], + "libelle_d_acheminement": "TRAUBACH LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0935498603, + 47.655039001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae401ba8621bf977f04ef4b031b2a134e36204e1", + "fields": { + "code_commune_insee": "55379", + "nom_de_la_commune": "LE NEUFOUR", + "code_postal": "55120", + "coordonnees_gps": [ + 49.1295802161, + 4.98375457706 + ], + "libelle_d_acheminement": "LE NEUFOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98375457706, + 49.1295802161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f7c47ab21734881e5cd2b0a318c08adc77243c2", + "fields": { + "code_commune_insee": "68338", + "nom_de_la_commune": "TURCKHEIM", + "code_postal": "68230", + "coordonnees_gps": [ + 48.0865424063, + 7.25076356699 + ], + "libelle_d_acheminement": "TURCKHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25076356699, + 48.0865424063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35174ff591e39760e3dfedf7f08e174108b3a80f", + "fields": { + "code_commune_insee": "55385", + "nom_de_la_commune": "NIXEVILLE BLERCOURT", + "code_postal": "55120", + "coordonnees_gps": [ + 49.1118913184, + 5.26188176234 + ], + "libelle_d_acheminement": "NIXEVILLE BLERCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26188176234, + 49.1118913184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7945bc6dbdd8de9d917b681e77ebdd5d0307580", + "fields": { + "code_commune_insee": "68350", + "nom_de_la_commune": "VOEGTLINSHOFFEN", + "code_postal": "68420", + "coordonnees_gps": [ + 48.0241428176, + 7.26224403842 + ], + "libelle_d_acheminement": "VOEGTLINSHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26224403842, + 48.0241428176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6db41899f402d9899e6cd6c1f3a0b148fc24345", + "fields": { + "code_commune_insee": "55398", + "nom_de_la_commune": "PAGNY SUR MEUSE", + "code_postal": "55190", + "coordonnees_gps": [ + 48.6892208397, + 5.73298818244 + ], + "libelle_d_acheminement": "PAGNY SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73298818244, + 48.6892208397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "095ebef29f20c8fc61426c05ea3b02d602df6c34", + "fields": { + "code_commune_insee": "68355", + "nom_de_la_commune": "WALDIGHOFEN", + "code_postal": "68640", + "coordonnees_gps": [ + 47.5469824081, + 7.3170216886 + ], + "libelle_d_acheminement": "WALDIGHOFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3170216886, + 47.5469824081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d91db8727f5ba22c822c7c78570a879454ed97d6", + "fields": { + "code_commune_insee": "55404", + "nom_de_la_commune": "PIERREFITTE SUR AIRE", + "code_postal": "55260", + "coordonnees_gps": [ + 48.9069676213, + 5.34860611914 + ], + "libelle_d_acheminement": "PIERREFITTE SUR AIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34860611914, + 48.9069676213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea0706ba933fe0cb02611fd62e2b39467c45fab0", + "fields": { + "code_commune_insee": "68358", + "nom_de_la_commune": "WASSERBOURG", + "code_postal": "68230", + "coordonnees_gps": [ + 47.9974106564, + 7.1537562966 + ], + "libelle_d_acheminement": "WASSERBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1537562966, + 47.9974106564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bc4f6c8de0f05420652a18e5c4d9e087e3d0568", + "fields": { + "code_commune_insee": "55409", + "nom_de_la_commune": "PRETZ EN ARGONNE", + "code_postal": "55250", + "coordonnees_gps": [ + 48.9614732775, + 5.14788383834 + ], + "libelle_d_acheminement": "PRETZ EN ARGONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.14788383834, + 48.9614732775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85032b858524cb8d958915545507e6f5a44c8396", + "fields": { + "code_commune_insee": "68365", + "nom_de_la_commune": "WETTOLSHEIM", + "code_postal": "68920", + "coordonnees_gps": [ + 48.0520194892, + 7.30680140883 + ], + "libelle_d_acheminement": "WETTOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30680140883, + 48.0520194892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64c624f1150b1d1e703fb066143d5904ecb15269", + "fields": { + "code_commune_insee": "55419", + "nom_de_la_commune": "RECICOURT", + "code_postal": "55120", + "coordonnees_gps": [ + 49.1539592244, + 5.16115927527 + ], + "libelle_d_acheminement": "RECICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16115927527, + 49.1539592244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cd25d846e949ceb1131ad64d7a240a659910fa4", + "fields": { + "code_commune_insee": "68370", + "nom_de_la_commune": "WILDENSTEIN", + "code_postal": "68820", + "coordonnees_gps": [ + 47.9878413195, + 6.96483383712 + ], + "libelle_d_acheminement": "WILDENSTEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96483383712, + 47.9878413195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6ca833e7a7820f5aba59565e0cda4f67b316908", + "fields": { + "code_commune_insee": "55422", + "nom_de_la_commune": "REGNEVILLE SUR MEUSE", + "code_postal": "55110", + "coordonnees_gps": [ + 49.2519964472, + 5.31620365223 + ], + "libelle_d_acheminement": "REGNEVILLE SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.31620365223, + 49.2519964472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03b6198b45e81e728b052dd24dca097898ea7a1b", + "fields": { + "code_commune_insee": "68376", + "nom_de_la_commune": "WITTENHEIM", + "code_postal": "68270", + "coordonnees_gps": [ + 47.8102988155, + 7.31251407267 + ], + "libelle_d_acheminement": "WITTENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31251407267, + 47.8102988155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c5f761beefea62d1dbb28172866d9ad3b96797b", + "fields": { + "code_commune_insee": "55423", + "nom_de_la_commune": "REMBERCOURT SOMMAISNE", + "code_postal": "55250", + "coordonnees_gps": [ + 48.9200891019, + 5.17855123412 + ], + "libelle_d_acheminement": "REMBERCOURT SOMMAISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17855123412, + 48.9200891019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ecff04bb72ebc6807db49f03dc0291d8dc6c436", + "fields": { + "code_commune_insee": "68378", + "nom_de_la_commune": "WOLFERSDORF", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6430195312, + 7.10646234685 + ], + "libelle_d_acheminement": "WOLFERSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10646234685, + 47.6430195312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "923f30462d2306838d50982fa1fabbd77f0b6fa8", + "fields": { + "code_commune_insee": "55437", + "nom_de_la_commune": "ROMAGNE SOUS LES COTES", + "code_postal": "55150", + "coordonnees_gps": [ + 49.3282356396, + 5.46600393873 + ], + "libelle_d_acheminement": "ROMAGNE SOUS LES COTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46600393873, + 49.3282356396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dded7454e6631bd8550cd02d562566abab9c747e", + "fields": { + "code_commune_insee": "68379", + "nom_de_la_commune": "WOLFGANTZEN", + "code_postal": "68600", + "coordonnees_gps": [ + 48.0282556276, + 7.49703519039 + ], + "libelle_d_acheminement": "WOLFGANTZEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49703519039, + 48.0282556276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c9cb7368dbd88685491aa041218cce3ca1fe230", + "fields": { + "code_commune_insee": "55442", + "nom_de_la_commune": "RAIVAL", + "code_postal": "55260", + "coordonnees_gps": [ + 48.8854759177, + 5.25147773833 + ], + "libelle_d_acheminement": "RAIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.25147773833, + 48.8854759177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbd9cd0e0e04c60332958acee149964d24180c67", + "fields": { + "code_commune_insee": "68382", + "nom_de_la_commune": "ZAESSINGUE", + "code_postal": "68130", + "coordonnees_gps": [ + 47.6197053459, + 7.37256538622 + ], + "libelle_d_acheminement": "ZAESSINGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37256538622, + 47.6197053459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "577397ce5e25caf579978bb9a88e3e1ce0db87db", + "fields": { + "code_commune_insee": "55444", + "nom_de_la_commune": "ROUVROIS SUR MEUSE", + "code_postal": "55300", + "coordonnees_gps": [ + 48.9500686957, + 5.52570837054 + ], + "libelle_d_acheminement": "ROUVROIS SUR MEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52570837054, + 48.9500686957 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f1bc89a46197ba94d014e9e95863bdc60895aaa", + "fields": { + "code_commune_insee": "69014", + "nom_de_la_commune": "AVEIZE", + "code_postal": "69610", + "coordonnees_gps": [ + 45.6794036414, + 4.47551947043 + ], + "libelle_d_acheminement": "AVEIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47551947043, + 45.6794036414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a9b0aeee8a56a2f75423ffb901a1068e4272a0f", + "fields": { + "code_commune_insee": "55448", + "nom_de_la_commune": "RUPT DEVANT ST MIHIEL", + "code_postal": "55260", + "coordonnees_gps": [ + 48.8850341422, + 5.40109789376 + ], + "libelle_d_acheminement": "RUPT DEVANT ST MIHIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40109789376, + 48.8850341422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e67667ba82e9d0b6c66e6a514715b03d105d7eb", + "fields": { + "code_commune_insee": "69026", + "nom_de_la_commune": "LE BREUIL", + "code_postal": "69620", + "coordonnees_gps": [ + 45.8908813689, + 4.59105351174 + ], + "libelle_d_acheminement": "LE BREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59105351174, + 45.8908813689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1c322bedfbb2be72970b25cba26ae88e0fae841", + "fields": { + "code_commune_insee": "55449", + "nom_de_la_commune": "RUPT EN WOEVRE", + "code_postal": "55320", + "coordonnees_gps": [ + 49.0616267227, + 5.49481707998 + ], + "libelle_d_acheminement": "RUPT EN WOEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.49481707998, + 49.0616267227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0839768f003566e5a10b37d04b98bf8ef7f57ff0", + "fields": { + "code_commune_insee": "69030", + "nom_de_la_commune": "BRULLIOLES", + "code_postal": "69690", + "coordonnees_gps": [ + 45.7635299511, + 4.492682945 + ], + "libelle_d_acheminement": "BRULLIOLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.492682945, + 45.7635299511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f8e63cd0a24b9cabe40e900c33ab7ab18a4e0fa", + "fields": { + "code_commune_insee": "55450", + "nom_de_la_commune": "RUPT SUR OTHAIN", + "code_postal": "55150", + "coordonnees_gps": [ + 49.4152733096, + 5.4797768236 + ], + "libelle_d_acheminement": "RUPT SUR OTHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4797768236, + 49.4152733096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89635ae0a0f710e1df74bd10da7fbc507e2b58d5", + "fields": { + "code_commune_insee": "69033", + "nom_de_la_commune": "CAILLOUX SUR FONTAINES", + "code_postal": "69270", + "coordonnees_gps": [ + 45.8603404776, + 4.88370094201 + ], + "libelle_d_acheminement": "CAILLOUX SUR FONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88370094201, + 45.8603404776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3de430ea66569510561097d73f734cb559948cfd", + "fields": { + "code_commune_insee": "55460", + "nom_de_la_commune": "ST JULIEN SOUS LES COTES", + "code_postal": "55200", + "coordonnees_gps": [ + 48.8193157554, + 5.61428641475 + ], + "libelle_d_acheminement": "ST JULIEN SOUS LES COTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61428641475, + 48.8193157554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0837e0017292da4a26ab61ac9c06604debe9471", + "fields": { + "code_commune_insee": "69035", + "nom_de_la_commune": "CENVES", + "code_postal": "69840", + "coordonnees_gps": [ + 46.2792109447, + 4.66098375274 + ], + "libelle_d_acheminement": "CENVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66098375274, + 46.2792109447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eed4d779911c7e1da88d37af13a2e5258b817830", + "fields": { + "code_commune_insee": "55463", + "nom_de_la_commune": "ST MIHIEL", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8912948587, + 5.58243236203 + ], + "libelle_d_acheminement": "ST MIHIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58243236203, + 48.8912948587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fba179433d87a7ebe37d234952211448f574619", + "fields": { + "code_commune_insee": "69037", + "nom_de_la_commune": "CHAMBOST ALLIERES", + "code_postal": "69870", + "coordonnees_gps": [ + 46.0150786956, + 4.51007188882 + ], + "libelle_d_acheminement": "CHAMBOST ALLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51007188882, + 46.0150786956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5de69ecd2ca705303c9a5c1deeba696ee618596b", + "fields": { + "code_commune_insee": "55466", + "nom_de_la_commune": "SALMAGNE", + "code_postal": "55000", + "coordonnees_gps": [ + 48.7557307288, + 5.33344834879 + ], + "libelle_d_acheminement": "SALMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33344834879, + 48.7557307288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d264a7ab1e81487298e40ccb13b8b13c442c9afa", + "fields": { + "code_commune_insee": "69038", + "nom_de_la_commune": "CHAMBOST LONGESSAIGNE", + "code_postal": "69770", + "coordonnees_gps": [ + 45.7739225343, + 4.37950363405 + ], + "libelle_d_acheminement": "CHAMBOST LONGESSAIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37950363405, + 45.7739225343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f51709732e866b0a83ff4656525dc4f35be9151f", + "fields": { + "code_commune_insee": "55467", + "nom_de_la_commune": "SAMPIGNY", + "code_postal": "55300", + "coordonnees_gps": [ + 48.819060545, + 5.48663507868 + ], + "libelle_d_acheminement": "SAMPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48663507868, + 48.819060545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37a045737a3485ff953a0f55a671472fba4271f3", + "fields": { + "code_commune_insee": "69040", + "nom_de_la_commune": "CHAMPAGNE AU MONT D OR", + "code_postal": "69410", + "coordonnees_gps": [ + 45.7983650854, + 4.78668207794 + ], + "libelle_d_acheminement": "CHAMPAGNE AU MONT D OR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78668207794, + 45.7983650854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f929026ba690020dfa100976c7478dabf54e82b1", + "fields": { + "code_commune_insee": "55473", + "nom_de_la_commune": "SAULX LES CHAMPLON", + "code_postal": "55160", + "coordonnees_gps": [ + 49.0735769232, + 5.65335195591 + ], + "libelle_d_acheminement": "SAULX LES CHAMPLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.65335195591, + 49.0735769232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "387f7ef8ca384bfa4c81835b767dd5982cac1e22", + "fields": { + "code_commune_insee": "69049", + "nom_de_la_commune": "CHASSELAY", + "code_postal": "69380", + "coordonnees_gps": [ + 45.8749558525, + 4.7708529699 + ], + "libelle_d_acheminement": "CHASSELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7708529699, + 45.8749558525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "413a4916faa79ec06791e36111ee8be59744506c", + "fields": { + "code_commune_insee": "55485", + "nom_de_la_commune": "SEPVIGNY", + "code_postal": "55140", + "coordonnees_gps": [ + 48.5643055469, + 5.69442972921 + ], + "libelle_d_acheminement": "SEPVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69442972921, + 48.5643055469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd29e86e81b92bb282fd49191afff5ace25cf703", + "fields": { + "code_commune_insee": "69071", + "nom_de_la_commune": "CURIS AU MONT D OR", + "code_postal": "69250", + "coordonnees_gps": [ + 45.8694161345, + 4.81844287868 + ], + "libelle_d_acheminement": "CURIS AU MONT D OR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81844287868, + 45.8694161345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "011268011be57aac7691df045d3a8ba21b50f284", + "fields": { + "code_commune_insee": "55492", + "nom_de_la_commune": "SOMMEDIEUE", + "code_postal": "55320", + "coordonnees_gps": [ + 49.1008388282, + 5.47677902729 + ], + "libelle_d_acheminement": "SOMMEDIEUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47677902729, + 49.1008388282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f01e1adaed697245b71a850c068f626426364595", + "fields": { + "code_commune_insee": "69077", + "nom_de_la_commune": "DRACE", + "code_postal": "69220", + "coordonnees_gps": [ + 46.1537638462, + 4.77319704565 + ], + "libelle_d_acheminement": "DRACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77319704565, + 46.1537638462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "235dee463e968d8b267743ddbeb3e5f2bab72ecb", + "fields": { + "code_commune_insee": "55495", + "nom_de_la_commune": "SORBEY", + "code_postal": "55230", + "coordonnees_gps": [ + 49.4037288217, + 5.58585055178 + ], + "libelle_d_acheminement": "SORBEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58585055178, + 49.4037288217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "defc3ac507933285152c07e824792a5c2dc847f7", + "fields": { + "code_commune_insee": "69081", + "nom_de_la_commune": "ECULLY", + "code_postal": "69130", + "coordonnees_gps": [ + 45.7821499466, + 4.7721681177 + ], + "libelle_d_acheminement": "ECULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7721681177, + 45.7821499466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2b41f1ef89bdebfe08b154d8f047cfd4a7192fa", + "fields": { + "code_commune_insee": "55496", + "nom_de_la_commune": "SORCY ST MARTIN", + "code_postal": "55190", + "coordonnees_gps": [ + 48.719302425, + 5.6607909695 + ], + "libelle_d_acheminement": "SORCY ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6607909695, + 48.719302425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ab47f0de283b475246773e4e9776fd7d08912c6", + "fields": { + "code_commune_insee": "69082", + "nom_de_la_commune": "EMERINGES", + "code_postal": "69840", + "coordonnees_gps": [ + 46.225502947, + 4.67336302557 + ], + "libelle_d_acheminement": "EMERINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67336302557, + 46.225502947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36647196b66a66ff00f3f4558239a62747017519", + "fields": { + "code_commune_insee": "55497", + "nom_de_la_commune": "LES SOUHESMES RAMPONT", + "code_postal": "55220", + "coordonnees_gps": [ + 49.0880279879, + 5.2363065868 + ], + "libelle_d_acheminement": "LES SOUHESMES RAMPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2363065868, + 49.0880279879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0c063b02d2191393b04ffa7770efb773771647f", + "fields": { + "code_commune_insee": "69086", + "nom_de_la_commune": "FLEURIEUX SUR L ARBRESLE", + "code_postal": "69210", + "coordonnees_gps": [ + 45.8393590284, + 4.65229651357 + ], + "libelle_d_acheminement": "FLEURIEUX SUR L ARBRESLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65229651357, + 45.8393590284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5673ad5432e345ce27ff15cad36a11bfb2683dd0", + "fields": { + "ligne_5": "HAUCOURT LA RIGOLE", + "code_commune_insee": "55500", + "libelle_d_acheminement": "SPINCOURT", + "code_postal": "55230", + "nom_de_la_commune": "SPINCOURT", + "coordonnees_gps": [ + 49.3333694763, + 5.69690578835 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69690578835, + 49.3333694763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d84e1fe34f9b6fc3fc74268774617ac40d2cf461", + "fields": { + "code_commune_insee": "69087", + "nom_de_la_commune": "FONTAINES ST MARTIN", + "code_postal": "69270", + "coordonnees_gps": [ + 45.8433300655, + 4.85410848076 + ], + "libelle_d_acheminement": "FONTAINES ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85410848076, + 45.8433300655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28487e3accef0fcc6b2a5e11e07b73786f0e0938", + "fields": { + "ligne_5": "RECHICOURT", + "code_commune_insee": "55500", + "libelle_d_acheminement": "SPINCOURT", + "code_postal": "55230", + "nom_de_la_commune": "SPINCOURT", + "coordonnees_gps": [ + 49.3333694763, + 5.69690578835 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69690578835, + 49.3333694763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4edc1ed7b8e43a285cc7e1b79f2b8b301330db41", + "fields": { + "code_commune_insee": "69090", + "nom_de_la_commune": "FRONTENAS", + "code_postal": "69620", + "coordonnees_gps": [ + 45.9219427499, + 4.63235973295 + ], + "libelle_d_acheminement": "FRONTENAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63235973295, + 45.9219427499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "566b57e9316a5b5dac76c76741c3eac4b0245572", + "fields": { + "code_commune_insee": "55515", + "nom_de_la_commune": "TRESAUVAUX", + "code_postal": "55160", + "coordonnees_gps": [ + 49.0794988181, + 5.61218881526 + ], + "libelle_d_acheminement": "TRESAUVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61218881526, + 49.0794988181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d33aef1f2af9d4076487f2f63ae131a55c7ad817", + "fields": { + "code_commune_insee": "69098", + "nom_de_la_commune": "LES HALLES", + "code_postal": "69610", + "coordonnees_gps": [ + 45.7161225651, + 4.43485013871 + ], + "libelle_d_acheminement": "LES HALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43485013871, + 45.7161225651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e88aab9d2266cd778fc2a9c0206bdefc551721a", + "fields": { + "ligne_5": "SENARD", + "code_commune_insee": "55517", + "libelle_d_acheminement": "SEUIL D ARGONNE", + "code_postal": "55250", + "nom_de_la_commune": "SEUIL D ARGONNE", + "coordonnees_gps": [ + 48.9741184199, + 5.05640187676 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.05640187676, + 48.9741184199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df7e01d38afc794857f7c223c5fc79e81381efe9", + "fields": { + "code_commune_insee": "69099", + "nom_de_la_commune": "HAUTE RIVOIRE", + "code_postal": "69610", + "coordonnees_gps": [ + 45.7143308832, + 4.40563224471 + ], + "libelle_d_acheminement": "HAUTE RIVOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40563224471, + 45.7143308832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e91beb843135ca67a43ea49f2a2e176edd95d860", + "fields": { + "ligne_5": "SAVONNIERES EN WOEVRE", + "code_commune_insee": "55530", + "libelle_d_acheminement": "VALBOIS", + "code_postal": "55300", + "nom_de_la_commune": "VALBOIS", + "coordonnees_gps": [ + 48.9287959752, + 5.61607345803 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61607345803, + 48.9287959752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fb7a5828a1bc352b3b359ec13641cb61aedde01", + "fields": { + "code_commune_insee": "69106", + "nom_de_la_commune": "LACHASSAGNE", + "code_postal": "69480", + "coordonnees_gps": [ + 45.9270174233, + 4.67906566253 + ], + "libelle_d_acheminement": "LACHASSAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67906566253, + 45.9270174233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3240f1e98f23f68b65ba11406dc5b8fcff438a28", + "fields": { + "code_commune_insee": "55531", + "nom_de_la_commune": "VASSINCOURT", + "code_postal": "55800", + "coordonnees_gps": [ + 48.8014203494, + 5.02678786197 + ], + "libelle_d_acheminement": "VASSINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02678786197, + 48.8014203494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7e43cd76dd5cab150555da684dcd18cfc839e47", + "fields": { + "ligne_5": "LA MURE", + "code_commune_insee": "69110", + "libelle_d_acheminement": "LARAJASSE", + "code_postal": "69590", + "nom_de_la_commune": "LARAJASSE", + "coordonnees_gps": [ + 45.6079976924, + 4.51457589582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51457589582, + 45.6079976924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcfdc9e4f28ce1a053c760703b6e699224f75bfa", + "fields": { + "code_commune_insee": "55534", + "nom_de_la_commune": "VAUDEVILLE LE HAUT", + "code_postal": "55130", + "coordonnees_gps": [ + 48.4489987899, + 5.58915571674 + ], + "libelle_d_acheminement": "VAUDEVILLE LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58915571674, + 48.4489987899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1414be9ce5490bace581c6995ebc27f55c55f9d9", + "fields": { + "code_commune_insee": "69117", + "nom_de_la_commune": "LISSIEU", + "code_postal": "69380", + "coordonnees_gps": [ + 45.8549753291, + 4.74619581314 + ], + "libelle_d_acheminement": "LISSIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74619581314, + 45.8549753291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "836c549b80762deda749809cb225238c1802b44e", + "fields": { + "code_commune_insee": "55536", + "nom_de_la_commune": "VAUQUOIS", + "code_postal": "55270", + "coordonnees_gps": [ + 49.199378983, + 5.08325500348 + ], + "libelle_d_acheminement": "VAUQUOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08325500348, + 49.199378983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ae7f47b6b216ac74429ac8cbf1c027eb3815cef", + "fields": { + "code_commune_insee": "69122", + "nom_de_la_commune": "LUCENAY", + "code_postal": "69480", + "coordonnees_gps": [ + 45.9134609573, + 4.70939043822 + ], + "libelle_d_acheminement": "LUCENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70939043822, + 45.9134609573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05a83baaf129c47a9b65c49222be75ef93711b1d", + "fields": { + "ligne_5": "DOUAUMONT", + "code_commune_insee": "55537", + "libelle_d_acheminement": "DOUAUMONT VAUX", + "code_postal": "55100", + "nom_de_la_commune": "DOUAUMONT VAUX", + "coordonnees_gps": [ + 49.2061604941, + 5.46338028839 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46338028839, + 49.2061604941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7767340bc3411aed184f566628929e0b3d37a8f6", + "fields": { + "code_commune_insee": "69130", + "nom_de_la_commune": "MEAUX LA MONTAGNE", + "code_postal": "69550", + "coordonnees_gps": [ + 46.0459851256, + 4.42169818269 + ], + "libelle_d_acheminement": "MEAUX LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42169818269, + 46.0459851256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ced66eab37a48b76f9cc673bf187bbcd65343e6f", + "fields": { + "code_commune_insee": "55541", + "nom_de_la_commune": "VAVINCOURT", + "code_postal": "55000", + "coordonnees_gps": [ + 48.8232896251, + 5.19531664577 + ], + "libelle_d_acheminement": "VAVINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.19531664577, + 48.8232896251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aadbb202c9eeebace1b2f8e2573ad95b4cc0271", + "fields": { + "ligne_5": "MONSOLS", + "code_commune_insee": "69135", + "libelle_d_acheminement": "DEUX GROSNES", + "code_postal": "69860", + "nom_de_la_commune": "DEUX GROSNES", + "coordonnees_gps": [ + 46.2227835629, + 4.51394181008 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51394181008, + 46.2227835629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1ff3a02ef8223b962a185c5a5a651ca8024f6c7", + "fields": { + "ligne_5": "CREUE", + "code_commune_insee": "55551", + "libelle_d_acheminement": "VIGNEULLES LES HATTONCHATEL", + "code_postal": "55210", + "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", + "coordonnees_gps": [ + 48.9857791469, + 5.724051532 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.724051532, + 48.9857791469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49185ad9fa907c82dfa8bf1cf9869aa654a1c447", + "fields": { + "ligne_5": "ST CHRISTOPHE", + "code_commune_insee": "69135", + "libelle_d_acheminement": "DEUX GROSNES", + "code_postal": "69860", + "nom_de_la_commune": "DEUX GROSNES", + "coordonnees_gps": [ + 46.2227835629, + 4.51394181008 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51394181008, + 46.2227835629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5004039136cd32a8bf10f15fce8de3e212c41313", + "fields": { + "ligne_5": "VIEVILLE SOUS LES COTES", + "code_commune_insee": "55551", + "libelle_d_acheminement": "VIGNEULLES LES HATTONCHATEL", + "code_postal": "55210", + "nom_de_la_commune": "VIGNEULLES LES HATTONCHATEL", + "coordonnees_gps": [ + 48.9857791469, + 5.724051532 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.724051532, + 48.9857791469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccd16d25eb14d503662064ef9a754acf0e102962", + "fields": { + "code_commune_insee": "69136", + "nom_de_la_commune": "MONTAGNY", + "code_postal": "69700", + "coordonnees_gps": [ + 45.6247829418, + 4.75036810523 + ], + "libelle_d_acheminement": "MONTAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75036810523, + 45.6247829418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8364d6aa5f5b8daa8b08410206962d59bb5a4fe", + "fields": { + "code_commune_insee": "55554", + "nom_de_la_commune": "VILLECLOYE", + "code_postal": "55600", + "coordonnees_gps": [ + 49.5110917403, + 5.40412322951 + ], + "libelle_d_acheminement": "VILLECLOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40412322951, + 49.5110917403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8e5e1ade84b3623c2ea4386253c18eac41a8375", + "fields": { + "code_commune_insee": "69155", + "nom_de_la_commune": "POMEYS", + "code_postal": "69590", + "coordonnees_gps": [ + 45.6462662502, + 4.44570095396 + ], + "libelle_d_acheminement": "POMEYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44570095396, + 45.6462662502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ada73f5e865c805b2212d2364d4b3158585cf27e", + "fields": { + "code_commune_insee": "55555", + "nom_de_la_commune": "VILLE DEVANT BELRAIN", + "code_postal": "55260", + "coordonnees_gps": [ + 48.8765037549, + 5.3538368109 + ], + "libelle_d_acheminement": "VILLE DEVANT BELRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3538368109, + 48.8765037549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a28014be726952fe8836b0bf89c245fa7f68a200", + "fields": { + "code_commune_insee": "69156", + "nom_de_la_commune": "POMMIERS", + "code_postal": "69480", + "coordonnees_gps": [ + 45.9582307321, + 4.6884680442 + ], + "libelle_d_acheminement": "POMMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6884680442, + 45.9582307321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a2cf329884aa7dafbffb50a04a54cb5257b2da0", + "fields": { + "code_commune_insee": "55570", + "nom_de_la_commune": "VILLOTTE SUR AIRE", + "code_postal": "55260", + "coordonnees_gps": [ + 48.8575993984, + 5.35419334822 + ], + "libelle_d_acheminement": "VILLOTTE SUR AIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.35419334822, + 48.8575993984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70d52b43503e96efe547fc54b6daa1b72c79b27b", + "fields": { + "ligne_5": "LES ECHARMEAUX", + "code_commune_insee": "69160", + "libelle_d_acheminement": "POULE LES ECHARMEAUX", + "code_postal": "69870", + "nom_de_la_commune": "POULE LES ECHARMEAUX", + "coordonnees_gps": [ + 46.1426190331, + 4.46070930029 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46070930029, + 46.1426190331 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9be230c9761f2643190887028f3b2483ae772115", + "fields": { + "code_commune_insee": "55575", + "nom_de_la_commune": "VOUTHON HAUT", + "code_postal": "55130", + "coordonnees_gps": [ + 48.4742260699, + 5.60221819722 + ], + "libelle_d_acheminement": "VOUTHON HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60221819722, + 48.4742260699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc1755ae64a532eab0396723460da5beb84b4e46", + "fields": { + "code_commune_insee": "69161", + "nom_de_la_commune": "PROPIERES", + "code_postal": "69790", + "coordonnees_gps": [ + 46.1927452094, + 4.45130908694 + ], + "libelle_d_acheminement": "PROPIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45130908694, + 46.1927452094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8d84e7b27f34dffc2bc29fe03b1c5ac57c19640", + "fields": { + "code_commune_insee": "55577", + "nom_de_la_commune": "WALY", + "code_postal": "55250", + "coordonnees_gps": [ + 49.0242695757, + 5.0987439035 + ], + "libelle_d_acheminement": "WALY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0987439035, + 49.0242695757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4f1e0434c384dbacd2a2d6e0163311761f6bc6b", + "fields": { + "code_commune_insee": "69165", + "nom_de_la_commune": "REGNIE DURETTE", + "code_postal": "69430", + "coordonnees_gps": [ + 46.1466108781, + 4.64172714554 + ], + "libelle_d_acheminement": "REGNIE DURETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64172714554, + 46.1466108781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "739b6fa30bf550517fbb51a42cf7f6b312c9fcf9", + "fields": { + "code_commune_insee": "55581", + "nom_de_la_commune": "WILLERONCOURT", + "code_postal": "55500", + "coordonnees_gps": [ + 48.7148687969, + 5.3568649824 + ], + "libelle_d_acheminement": "WILLERONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3568649824, + 48.7148687969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05d76caae07d3cfc979031f861ba530c53040220", + "fields": { + "code_commune_insee": "69168", + "nom_de_la_commune": "ROCHETAILLEE SUR SAONE", + "code_postal": "69270", + "coordonnees_gps": [ + 45.8431049292, + 4.83850182261 + ], + "libelle_d_acheminement": "ROCHETAILLEE SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83850182261, + 45.8431049292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cebe6e214bfc1dda4174bfc4e88377cc2094400", + "fields": { + "code_commune_insee": "55586", + "nom_de_la_commune": "XIVRAY ET MARVOISIN", + "code_postal": "55300", + "coordonnees_gps": [ + 48.8664911436, + 5.73011450191 + ], + "libelle_d_acheminement": "XIVRAY ET MARVOISIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73011450191, + 48.8664911436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c191f7ac7aad50b3e69da3a6dfc0a7db97f54eeb", + "fields": { + "code_commune_insee": "69170", + "nom_de_la_commune": "RONTALON", + "code_postal": "69510", + "coordonnees_gps": [ + 45.6566700054, + 4.61833164833 + ], + "libelle_d_acheminement": "RONTALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61833164833, + 45.6566700054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30d2422e8ac0d06ddf745fe3aaf155791ecd4c56", + "fields": { + "code_commune_insee": "56020", + "nom_de_la_commune": "BOHAL", + "code_postal": "56140", + "coordonnees_gps": [ + 47.7842091553, + -2.44701555999 + ], + "libelle_d_acheminement": "BOHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.44701555999, + 47.7842091553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "002e5f927c9fcb40e1f24adeedd4561925d371e4", + "fields": { + "code_commune_insee": "69176", + "nom_de_la_commune": "SOUCIEU EN JARREST", + "code_postal": "69510", + "coordonnees_gps": [ + 45.6769698938, + 4.69227069505 + ], + "libelle_d_acheminement": "SOUCIEU EN JARREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69227069505, + 45.6769698938 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a01e1fe2d0e570962710731b50ed0d78f10e9e10", + "fields": { + "code_commune_insee": "56025", + "nom_de_la_commune": "BRIGNAC", + "code_postal": "56430", + "coordonnees_gps": [ + 48.1120379683, + -2.39511005338 + ], + "libelle_d_acheminement": "BRIGNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.39511005338, + 48.1120379683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de559a8c93b5334676cd1ad78b42de4c6995723e", + "fields": { + "code_commune_insee": "69177", + "nom_de_la_commune": "SOURCIEUX LES MINES", + "code_postal": "69210", + "coordonnees_gps": [ + 45.7982263531, + 4.63130091512 + ], + "libelle_d_acheminement": "SOURCIEUX LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63130091512, + 45.7982263531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d876ebbb7a7963565703d5642838187fcb2aa0f", + "fields": { + "code_commune_insee": "56028", + "nom_de_la_commune": "CADEN", + "code_postal": "56220", + "coordonnees_gps": [ + 47.6401091806, + -2.29927254459 + ], + "libelle_d_acheminement": "CADEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.29927254459, + 47.6401091806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5c66ded650444a8d7618f4f17ab002270616f0a", + "fields": { + "code_commune_insee": "69181", + "nom_de_la_commune": "ST APPOLINAIRE", + "code_postal": "69170", + "coordonnees_gps": [ + 45.9769778308, + 4.42664863829 + ], + "libelle_d_acheminement": "ST APPOLINAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42664863829, + 45.9769778308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1adbf74f60c0a5848b115f25319db21f7bb0289d", + "fields": { + "code_commune_insee": "56033", + "nom_de_la_commune": "CARENTOIR", + "code_postal": "56910", + "coordonnees_gps": [ + 47.8204086772, + -2.14646724944 + ], + "libelle_d_acheminement": "CARENTOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.14646724944, + 47.8204086772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1f8dedd6e9e22c99dcefcbf83e945a7fad4c107", + "fields": { + "code_commune_insee": "69193", + "nom_de_la_commune": "ST CYR SUR LE RHONE", + "code_postal": "69560", + "coordonnees_gps": [ + 45.5166530821, + 4.83257725316 + ], + "libelle_d_acheminement": "ST CYR SUR LE RHONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83257725316, + 45.5166530821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3022dede5271517864c67d15eeffbd682f0cfd8d", + "fields": { + "code_commune_insee": "56045", + "nom_de_la_commune": "LE COURS", + "code_postal": "56230", + "coordonnees_gps": [ + 47.7495071048, + -2.50848106104 + ], + "libelle_d_acheminement": "LE COURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.50848106104, + 47.7495071048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76181c7842ab3523c430da79ddaedabc418856d5", + "fields": { + "ligne_5": "LA ROCHE", + "code_commune_insee": "69215", + "libelle_d_acheminement": "ST JULIEN", + "code_postal": "69640", + "nom_de_la_commune": "ST JULIEN", + "coordonnees_gps": [ + 46.022493145, + 4.65158431759 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65158431759, + 46.022493145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eaa9c46f05763fab8d2d8e6bfbcd5a44a022eee", + "fields": { + "code_commune_insee": "56048", + "nom_de_la_commune": "LE CROISTY", + "code_postal": "56540", + "coordonnees_gps": [ + 48.0614013727, + -3.37327067635 + ], + "libelle_d_acheminement": "LE CROISTY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37327067635, + 48.0614013727 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f945d210430d5b62f264138f8abac3dad02a6da", + "fields": { + "ligne_5": "ST DIDIER SOUS RIVERIE", + "code_commune_insee": "69228", + "libelle_d_acheminement": "CHABANIERE", + "code_postal": "69440", + "nom_de_la_commune": "CHABANIERE", + "coordonnees_gps": [ + 45.5781277955, + 4.64115905425 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64115905425, + 45.5781277955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7be7866793fb1ee0dfa240f6cd2ea15ca77e0829", + "fields": { + "code_commune_insee": "56049", + "nom_de_la_commune": "CROIXANVEC", + "code_postal": "56920", + "coordonnees_gps": [ + 48.1350238881, + -2.86804560575 + ], + "libelle_d_acheminement": "CROIXANVEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.86804560575, + 48.1350238881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef8f4b03c351991456a7275c95c1b3baae061957", + "fields": { + "code_commune_insee": "69234", + "nom_de_la_commune": "ST ROMAIN DE POPEY", + "code_postal": "69490", + "coordonnees_gps": [ + 45.85576965, + 4.52946309389 + ], + "libelle_d_acheminement": "ST ROMAIN DE POPEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52946309389, + 45.85576965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e64a1760459eaef240f405a8561585fcee994378", + "fields": { + "code_commune_insee": "56056", + "nom_de_la_commune": "EVRIGUET", + "code_postal": "56490", + "coordonnees_gps": [ + 48.0832901567, + -2.404814166 + ], + "libelle_d_acheminement": "EVRIGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.404814166, + 48.0832901567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0815ac1d92150e850537365312699b9275f51275", + "fields": { + "code_commune_insee": "69236", + "nom_de_la_commune": "ST ROMAIN EN GIER", + "code_postal": "69700", + "coordonnees_gps": [ + 45.5657533865, + 4.70401885929 + ], + "libelle_d_acheminement": "ST ROMAIN EN GIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70401885929, + 45.5657533865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6eaeb05151b110b5463403b2d6387c4ea9e3178c", + "fields": { + "code_commune_insee": "56058", + "nom_de_la_commune": "FEREL", + "code_postal": "56130", + "coordonnees_gps": [ + 47.4873744391, + -2.34002198542 + ], + "libelle_d_acheminement": "FEREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.34002198542, + 47.4873744391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80092b328c3b3a38cd60a1795d9308234947d06b", + "fields": { + "code_commune_insee": "69246", + "nom_de_la_commune": "THEIZE", + "code_postal": "69620", + "coordonnees_gps": [ + 45.9407758878, + 4.62735896797 + ], + "libelle_d_acheminement": "THEIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62735896797, + 45.9407758878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b5fb98997a55826c01726153716eb201a61f93b", + "fields": { + "code_commune_insee": "56061", + "nom_de_la_commune": "LA GACILLY", + "code_postal": "56200", + "coordonnees_gps": [ + 47.7728317091, + -2.15651114837 + ], + "libelle_d_acheminement": "LA GACILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.15651114837, + 47.7728317091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3badf8e07df703cc2ce8b2e0530465d1b7d8fd3", + "fields": { + "ligne_5": "MARDORE", + "code_commune_insee": "69248", + "libelle_d_acheminement": "THIZY LES BOURGS", + "code_postal": "69240", + "nom_de_la_commune": "THIZY LES BOURGS", + "coordonnees_gps": [ + 46.0302777714, + 4.31390305209 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31390305209, + 46.0302777714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "725a0daf55c8dd00374c3991f8b94753174060ed", + "fields": { + "code_commune_insee": "56062", + "nom_de_la_commune": "GAVRES", + "code_postal": "56680", + "coordonnees_gps": [ + 47.6951381724, + -3.33453004583 + ], + "libelle_d_acheminement": "GAVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.33453004583, + 47.6951381724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9635d495083b5ac61fdedfd18ff45cf17e47ec5", + "fields": { + "ligne_5": "MARNAND", + "code_commune_insee": "69248", + "libelle_d_acheminement": "THIZY LES BOURGS", + "code_postal": "69240", + "nom_de_la_commune": "THIZY LES BOURGS", + "coordonnees_gps": [ + 46.0302777714, + 4.31390305209 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31390305209, + 46.0302777714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "928bc239395dd22385cfcbdf0b842225513cfee4", + "fields": { + "code_commune_insee": "56065", + "nom_de_la_commune": "GOURHEL", + "code_postal": "56800", + "coordonnees_gps": [ + 47.9391748838, + -2.35828875195 + ], + "libelle_d_acheminement": "GOURHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.35828875195, + 47.9391748838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6f45adaacf3f43c549b083fef69718eed4429cf", + "fields": { + "code_commune_insee": "69255", + "nom_de_la_commune": "VAUGNERAY", + "code_postal": "69670", + "coordonnees_gps": [ + 45.7318792519, + 4.64378667979 + ], + "libelle_d_acheminement": "VAUGNERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64378667979, + 45.7318792519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9564da267758ed0d614c487e02f71d72673ab3ce", + "fields": { + "code_commune_insee": "56070", + "nom_de_la_commune": "GUEGON", + "code_postal": "56120", + "coordonnees_gps": [ + 47.9255876007, + -2.58638209695 + ], + "libelle_d_acheminement": "GUEGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.58638209695, + 47.9255876007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a97ecef794d1b9735bdf1448c143dbc3db8fc4db", + "fields": { + "ligne_5": "ST LAURENT DE VAUX", + "code_commune_insee": "69255", + "libelle_d_acheminement": "VAUGNERAY", + "code_postal": "69670", + "nom_de_la_commune": "VAUGNERAY", + "coordonnees_gps": [ + 45.7318792519, + 4.64378667979 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64378667979, + 45.7318792519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28c0e799d7c93a14bbeb07acbb21d1aa505f1d91", + "fields": { + "code_commune_insee": "56078", + "nom_de_la_commune": "GUIDEL", + "code_postal": "56520", + "coordonnees_gps": [ + 47.7940076851, + -3.49161886127 + ], + "libelle_d_acheminement": "GUIDEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.49161886127, + 47.7940076851 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8576e2a785d5ab823b6acba4fa15dcf05148b0e", + "fields": { + "code_commune_insee": "69259", + "nom_de_la_commune": "VENISSIEUX", + "code_postal": "69200", + "coordonnees_gps": [ + 45.7037728826, + 4.88137668221 + ], + "libelle_d_acheminement": "VENISSIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88137668221, + 45.7037728826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2077163f7f6d5a7b6f208fcdc95b98e58c4a1b47", + "fields": { + "code_commune_insee": "56084", + "nom_de_la_commune": "LE HEZO", + "code_postal": "56450", + "coordonnees_gps": [ + 47.5806224027, + -2.69210124119 + ], + "libelle_d_acheminement": "LE HEZO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.69210124119, + 47.5806224027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f2fedad53f8fc3b1d5e2882cf2eaa5db1bede40", + "fields": { + "code_commune_insee": "69270", + "nom_de_la_commune": "CHAPONNAY", + "code_postal": "69970", + "coordonnees_gps": [ + 45.6282287453, + 4.95028014638 + ], + "libelle_d_acheminement": "CHAPONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95028014638, + 45.6282287453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e78a1e105b3f5fe1a7f3e6f8fd0c751a739fc74b", + "fields": { + "code_commune_insee": "56092", + "nom_de_la_commune": "KERFOURN", + "code_postal": "56920", + "coordonnees_gps": [ + 48.0434067231, + -2.83634810154 + ], + "libelle_d_acheminement": "KERFOURN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83634810154, + 48.0434067231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45ef6c28acc2c210b503c90dcb96583b838a34c2", + "fields": { + "code_commune_insee": "69280", + "nom_de_la_commune": "JONS", + "code_postal": "69330", + "coordonnees_gps": [ + 45.8001909817, + 5.07842030906 + ], + "libelle_d_acheminement": "JONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07842030906, + 45.8001909817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "703e870a1c441598e6232aec36d69a0aa2e8582c", + "fields": { + "code_commune_insee": "56096", + "nom_de_la_commune": "LANDAUL", + "code_postal": "56690", + "coordonnees_gps": [ + 47.7417597623, + -3.09860506584 + ], + "libelle_d_acheminement": "LANDAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.09860506584, + 47.7417597623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "987d04c727d1a867e80912e05a4c2a89ff458563", + "fields": { + "code_commune_insee": "69281", + "nom_de_la_commune": "MARENNES", + "code_postal": "69970", + "coordonnees_gps": [ + 45.6230631164, + 4.90753751863 + ], + "libelle_d_acheminement": "MARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90753751863, + 45.6230631164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "722c9eed36c4bea6d0136ae9763477ad3d4fd515", + "fields": { + "code_commune_insee": "56101", + "nom_de_la_commune": "LANGUIDIC", + "code_postal": "56440", + "coordonnees_gps": [ + 47.8365621011, + -3.14756396353 + ], + "libelle_d_acheminement": "LANGUIDIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.14756396353, + 47.8365621011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efead3da3e0ca6a6555e46a16e646719dac318a6", + "fields": { + "ligne_5": "CREPIEUX LA PAPE", + "code_commune_insee": "69286", + "libelle_d_acheminement": "RILLIEUX LA PAPE", + "code_postal": "69140", + "nom_de_la_commune": "RILLIEUX LA PAPE", + "coordonnees_gps": [ + 45.8205988109, + 4.89822639815 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89822639815, + 45.8205988109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86e17840c2f6a92c8cef6b8e8e483b4742947740", + "fields": { + "code_commune_insee": "56103", + "nom_de_la_commune": "LANTILLAC", + "code_postal": "56120", + "coordonnees_gps": [ + 47.9513185093, + -2.66089059866 + ], + "libelle_d_acheminement": "LANTILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.66089059866, + 47.9513185093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39300d77f0f553aa5ecd2d3eb076c54f31f27163", + "fields": { + "code_commune_insee": "69287", + "nom_de_la_commune": "ST BONNET DE MURE", + "code_postal": "69720", + "coordonnees_gps": [ + 45.6961833142, + 5.02220384173 + ], + "libelle_d_acheminement": "ST BONNET DE MURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02220384173, + 45.6961833142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8865886234c561778c153fe37e1f35c2c0415fd", + "fields": { + "code_commune_insee": "56106", + "nom_de_la_commune": "LARMOR BADEN", + "code_postal": "56870", + "coordonnees_gps": [ + 47.5934456952, + -2.89858472133 + ], + "libelle_d_acheminement": "LARMOR BADEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.89858472133, + 47.5934456952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e42b1d36e4d9c7b5b374c517f4d51d24ed1a93c", + "fields": { + "code_commune_insee": "69289", + "nom_de_la_commune": "ST PIERRE DE CHANDIEU", + "code_postal": "69780", + "coordonnees_gps": [ + 45.6448417915, + 5.00876036664 + ], + "libelle_d_acheminement": "ST PIERRE DE CHANDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00876036664, + 45.6448417915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f09b4a25bebf260acc5f094900d6d2725283b44d", + "fields": { + "code_commune_insee": "56112", + "nom_de_la_commune": "LIZIO", + "code_postal": "56460", + "coordonnees_gps": [ + 47.8643087698, + -2.51995591164 + ], + "libelle_d_acheminement": "LIZIO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.51995591164, + 47.8643087698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0f11ffe02762ada7ade6988ace3755916ff87ba", + "fields": { + "code_commune_insee": "69290", + "nom_de_la_commune": "ST PRIEST", + "code_postal": "69800", + "coordonnees_gps": [ + 45.701466556, + 4.94882071665 + ], + "libelle_d_acheminement": "ST PRIEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94882071665, + 45.701466556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af22319910daed87ed3d77f7ad0f8e2428e54167", + "fields": { + "code_commune_insee": "56114", + "nom_de_la_commune": "LOCMARIA", + "code_postal": "56360", + "coordonnees_gps": [ + 47.3019658435, + -3.10628601643 + ], + "libelle_d_acheminement": "LOCMARIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.10628601643, + 47.3019658435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c72bcc5f300f3d8e60d8136137e31615e0a8c71a", + "fields": { + "code_commune_insee": "69292", + "nom_de_la_commune": "SATHONAY CAMP", + "code_postal": "69580", + "coordonnees_gps": [ + 45.8257146125, + 4.87363022248 + ], + "libelle_d_acheminement": "SATHONAY CAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87363022248, + 45.8257146125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fad2ed03f653d8143627d9c32e51ea07edb9407", + "fields": { + "code_commune_insee": "56116", + "nom_de_la_commune": "LOCMARIAQUER", + "code_postal": "56740", + "coordonnees_gps": [ + 47.5780372256, + -2.96305094247 + ], + "libelle_d_acheminement": "LOCMARIAQUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.96305094247, + 47.5780372256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd35cd280cc7e3bf32f3a8a13e66a7c771c42b1b", + "fields": { + "code_commune_insee": "69293", + "nom_de_la_commune": "SATHONAY VILLAGE", + "code_postal": "69580", + "coordonnees_gps": [ + 45.8402514448, + 4.88563860144 + ], + "libelle_d_acheminement": "SATHONAY VILLAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88563860144, + 45.8402514448 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "811fe553198f83acf29f1bc8c9e5c0b3c7cf5777", + "fields": { + "code_commune_insee": "56121", + "nom_de_la_commune": "LORIENT", + "code_postal": "56100", + "coordonnees_gps": [ + 47.7500486947, + -3.37823200917 + ], + "libelle_d_acheminement": "LORIENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.37823200917, + 47.7500486947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "248a86ef11699be99455ae2bf4d7000e5af86275", + "fields": { + "code_commune_insee": "69298", + "nom_de_la_commune": "TOUSSIEU", + "code_postal": "69780", + "coordonnees_gps": [ + 45.6577177504, + 4.98186963908 + ], + "libelle_d_acheminement": "TOUSSIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98186963908, + 45.6577177504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "812ea06241b2f2be54f85da6852d8f6ac9e0d803", + "fields": { + "code_commune_insee": "56137", + "nom_de_la_commune": "MONTERBLANC", + "code_postal": "56250", + "coordonnees_gps": [ + 47.7315728601, + -2.69647257441 + ], + "libelle_d_acheminement": "MONTERBLANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.69647257441, + 47.7315728601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42178b9ca81c879c9584df61f65a27a5586ed7c7", + "fields": { + "code_commune_insee": "69387", + "nom_de_la_commune": "LYON 07", + "code_postal": "69007", + "coordonnees_gps": [ + 45.7334098415, + 4.83758495703 + ], + "libelle_d_acheminement": "LYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83758495703, + 45.7334098415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dd85f6d163d0fd582c6d8cc098b0b0988dd9245", + "fields": { + "code_commune_insee": "56140", + "nom_de_la_commune": "MOREAC", + "code_postal": "56500", + "coordonnees_gps": [ + 47.9328057263, + -2.80381737947 + ], + "libelle_d_acheminement": "MOREAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.80381737947, + 47.9328057263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee6bad7a511ab252f616c72e0111ee7cf6c1e0ec", + "fields": { + "code_commune_insee": "69389", + "nom_de_la_commune": "LYON 09", + "code_postal": "69009", + "coordonnees_gps": [ + 45.7817805887, + 4.80818327822 + ], + "libelle_d_acheminement": "LYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80818327822, + 45.7817805887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc49fc816118ede3443b3a5ce50b188bc799524a", + "fields": { + "code_commune_insee": "56145", + "nom_de_la_commune": "NEANT SUR YVEL", + "code_postal": "56430", + "coordonnees_gps": [ + 48.0221749901, + -2.33277424547 + ], + "libelle_d_acheminement": "NEANT SUR YVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.33277424547, + 48.0221749901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f02cac948870d81cf2aad552268d3820d6b94db", + "fields": { + "code_commune_insee": "70003", + "nom_de_la_commune": "ACHEY", + "code_postal": "70180", + "coordonnees_gps": [ + 47.5770070289, + 5.60745476371 + ], + "libelle_d_acheminement": "ACHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60745476371, + 47.5770070289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6024ee7782fa32edd8d4f5e7037120361391f616", + "fields": { + "code_commune_insee": "56155", + "nom_de_la_commune": "PENESTIN", + "code_postal": "56760", + "coordonnees_gps": [ + 47.4726864791, + -2.46473254944 + ], + "libelle_d_acheminement": "PENESTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.46473254944, + 47.4726864791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3899ba73e67e0727e53315fd99bedb5cf6454031", + "fields": { + "code_commune_insee": "70011", + "nom_de_la_commune": "AMAGE", + "code_postal": "70280", + "coordonnees_gps": [ + 47.8456233844, + 6.49802124714 + ], + "libelle_d_acheminement": "AMAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49802124714, + 47.8456233844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b0d914bc834f0956c3cdcd570992cea777e2579", + "fields": { + "code_commune_insee": "56158", + "nom_de_la_commune": "PLESCOP", + "code_postal": "56890", + "coordonnees_gps": [ + 47.6973490259, + -2.83080852214 + ], + "libelle_d_acheminement": "PLESCOP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.83080852214, + 47.6973490259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "839aeac00dceecf3c35abd2ac75613483daabc9b", + "fields": { + "code_commune_insee": "70015", + "nom_de_la_commune": "AMONCOURT", + "code_postal": "70170", + "coordonnees_gps": [ + 47.7347259725, + 6.06263685163 + ], + "libelle_d_acheminement": "AMONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06263685163, + 47.7347259725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b15ea42a9ad68af3291330d03e94c79c54a86f5f", + "fields": { + "code_commune_insee": "56160", + "nom_de_la_commune": "PLEUGRIFFET", + "code_postal": "56120", + "coordonnees_gps": [ + 47.9938347053, + -2.69149691604 + ], + "libelle_d_acheminement": "PLEUGRIFFET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.69149691604, + 47.9938347053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc9a2824fe2a6b7cb3cb4cc67d8b5f369e20e145", + "fields": { + "code_commune_insee": "70017", + "nom_de_la_commune": "ANCHENONCOURT ET CHAZEL", + "code_postal": "70210", + "coordonnees_gps": [ + 47.861727458, + 6.11528633916 + ], + "libelle_d_acheminement": "ANCHENONCOURT ET CHAZEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11528633916, + 47.861727458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb817a0e222c8e816c869dd5e3859b624400f183", + "fields": { + "code_commune_insee": "56164", + "nom_de_la_commune": "PLOEREN", + "code_postal": "56880", + "coordonnees_gps": [ + 47.6618147163, + -2.84313700258 + ], + "libelle_d_acheminement": "PLOEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.84313700258, + 47.6618147163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4345d685117606276ffc52105df7571458f248e", + "fields": { + "code_commune_insee": "70021", + "nom_de_la_commune": "ANDORNAY", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6586648001, + 6.59842406878 + ], + "libelle_d_acheminement": "ANDORNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59842406878, + 47.6586648001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "993405c946470eac42ef917cd0183b146cd5dd4e", + "fields": { + "code_commune_insee": "56172", + "nom_de_la_commune": "PLUMELEC", + "code_postal": "56420", + "coordonnees_gps": [ + 47.8257230255, + -2.62344380142 + ], + "libelle_d_acheminement": "PLUMELEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.62344380142, + 47.8257230255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acb537e7c5488cb7c8c93fefc7f38c36c6da20b1", + "fields": { + "code_commune_insee": "70039", + "nom_de_la_commune": "AUTOREILLE", + "code_postal": "70700", + "coordonnees_gps": [ + 47.370625269, + 5.82479172929 + ], + "libelle_d_acheminement": "AUTOREILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82479172929, + 47.370625269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d6588e7c16a42c747e732de8f47bfa001273ac8", + "fields": { + "ligne_5": "BIEUZY LANVAUX", + "code_commune_insee": "56177", + "libelle_d_acheminement": "PLUVIGNER", + "code_postal": "56330", + "nom_de_la_commune": "PLUVIGNER", + "coordonnees_gps": [ + 47.7824013121, + -3.01608916771 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.01608916771, + 47.7824013121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "426c911a8159af69c5b503685109405880c0f98a", + "fields": { + "code_commune_insee": "70041", + "nom_de_la_commune": "AUTREY LES GRAY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.464744731, + 5.46526242316 + ], + "libelle_d_acheminement": "AUTREY LES GRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46526242316, + 47.464744731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "100fbabcc3d0c84a801156bd86d0b10474f3d4cc", + "fields": { + "code_commune_insee": "56182", + "nom_de_la_commune": "PRIZIAC", + "code_postal": "56320", + "coordonnees_gps": [ + 48.055864397, + -3.43477253026 + ], + "libelle_d_acheminement": "PRIZIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.43477253026, + 48.055864397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc70b7bd6a425415e1498d3452911f94c092fae6", + "fields": { + "code_commune_insee": "70043", + "nom_de_la_commune": "AUVET ET LA CHAPELOTTE", + "code_postal": "70100", + "coordonnees_gps": [ + 47.5070865924, + 5.52591428297 + ], + "libelle_d_acheminement": "AUVET ET LA CHAPELOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52591428297, + 47.5070865924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d11ce0cbbad69b43968e2c4c7f5acd25df926e9", + "fields": { + "code_commune_insee": "56185", + "nom_de_la_commune": "QUEVEN", + "code_postal": "56530", + "coordonnees_gps": [ + 47.7841865998, + -3.41957717053 + ], + "libelle_d_acheminement": "QUEVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.41957717053, + 47.7841865998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e659721519a646c9a9e2597644ef0d4f704d5719", + "fields": { + "ligne_5": "VIREY", + "code_commune_insee": "70045", + "libelle_d_acheminement": "AVRIGNEY VIREY", + "code_postal": "70150", + "nom_de_la_commune": "AVRIGNEY VIREY", + "coordonnees_gps": [ + 47.3393039112, + 5.77571250318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77571250318, + 47.3393039112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e5f277791c38defc4d649853e286bc0978c5234", + "fields": { + "ligne_5": "LE ROC ST ANDRE", + "code_commune_insee": "56197", + "libelle_d_acheminement": "VAL D OUST", + "code_postal": "56460", + "nom_de_la_commune": "VAL D OUST", + "coordonnees_gps": [ + 47.8685533688, + -2.45624648415 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.45624648415, + 47.8685533688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceb40d1ec523ef7e006e555e52a5dd66c8c2f098", + "fields": { + "code_commune_insee": "70048", + "nom_de_la_commune": "BARD LES PESMES", + "code_postal": "70140", + "coordonnees_gps": [ + 47.2781983751, + 5.62760056211 + ], + "libelle_d_acheminement": "BARD LES PESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62760056211, + 47.2781983751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc4be2f8b9a989a3b8bb9c36fce22752753717be", + "fields": { + "code_commune_insee": "56202", + "nom_de_la_commune": "ST ABRAHAM", + "code_postal": "56140", + "coordonnees_gps": [ + 47.8475889201, + -2.40640451407 + ], + "libelle_d_acheminement": "ST ABRAHAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.40640451407, + 47.8475889201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9e3cb9472cff338d7b7ff1c577fa54f3bb4f2e7", + "fields": { + "code_commune_insee": "70054", + "nom_de_la_commune": "BATTRANS", + "code_postal": "70100", + "coordonnees_gps": [ + 47.427310451, + 5.64228705481 + ], + "libelle_d_acheminement": "BATTRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64228705481, + 47.427310451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e15687b7c4677b446495c47ace5cc814f971282", + "fields": { + "code_commune_insee": "56208", + "nom_de_la_commune": "ST BRIEUC DE MAURON", + "code_postal": "56430", + "coordonnees_gps": [ + 48.0900360435, + -2.36145460306 + ], + "libelle_d_acheminement": "ST BRIEUC DE MAURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.36145460306, + 48.0900360435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fcc6c54e6ba688af240a4a8e836dd039549041e3", + "fields": { + "code_commune_insee": "70057", + "nom_de_la_commune": "BAY", + "code_postal": "70150", + "coordonnees_gps": [ + 47.2949169837, + 5.71604636677 + ], + "libelle_d_acheminement": "BAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.71604636677, + 47.2949169837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afc1e5b8fe66f6c6f855ce69d8f7bb0f11fd3cca", + "fields": { + "code_commune_insee": "56209", + "nom_de_la_commune": "STE BRIGITTE", + "code_postal": "56480", + "coordonnees_gps": [ + 48.1771391346, + -3.11020493167 + ], + "libelle_d_acheminement": "STE BRIGITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.11020493167, + 48.1771391346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1300dbe51de7515d2a24a89cbcf7a486962efbaa", + "fields": { + "code_commune_insee": "70060", + "nom_de_la_commune": "BEAUMOTTE LES PIN", + "code_postal": "70150", + "coordonnees_gps": [ + 47.3184487342, + 5.83208927383 + ], + "libelle_d_acheminement": "BEAUMOTTE LES PIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83208927383, + 47.3184487342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "593a731547f03d75e1484996964276c16271ca09", + "fields": { + "code_commune_insee": "56213", + "nom_de_la_commune": "ST GERAND", + "code_postal": "56920", + "coordonnees_gps": [ + 48.1085338932, + -2.88597650893 + ], + "libelle_d_acheminement": "ST GERAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.88597650893, + 48.1085338932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b70cd23f797a1dec4f65f83bab2869618989b254", + "fields": { + "code_commune_insee": "70064", + "nom_de_la_commune": "BELVERNE", + "code_postal": "70400", + "coordonnees_gps": [ + 47.6271373135, + 6.6554261048 + ], + "libelle_d_acheminement": "BELVERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6554261048, + 47.6271373135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a88b1f1bf92a749399f2128209b5e6c552ad715", + "fields": { + "code_commune_insee": "56215", + "nom_de_la_commune": "ST GONNERY", + "code_postal": "56920", + "coordonnees_gps": [ + 48.1259650305, + -2.82225083617 + ], + "libelle_d_acheminement": "ST GONNERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.82225083617, + 48.1259650305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6143e1b2e7ed391b3d2d0064c61f82b3f0b0502", + "fields": { + "code_commune_insee": "70069", + "nom_de_la_commune": "BETONCOURT ST PANCRAS", + "code_postal": "70210", + "coordonnees_gps": [ + 47.9177842329, + 6.18204569408 + ], + "libelle_d_acheminement": "BETONCOURT ST PANCRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18204569408, + 47.9177842329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e1965bdebf2359f3826a8d0a28737260ad66e73", + "fields": { + "code_commune_insee": "56218", + "nom_de_la_commune": "ST GRAVE", + "code_postal": "56220", + "coordonnees_gps": [ + 47.7228923689, + -2.28820700863 + ], + "libelle_d_acheminement": "ST GRAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.28820700863, + 47.7228923689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae4837f08c23cea7b5eeb20eb7d53fabe87c7fa9", + "fields": { + "code_commune_insee": "70074", + "nom_de_la_commune": "BLONDEFONTAINE", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8855876532, + 5.87130104074 + ], + "libelle_d_acheminement": "BLONDEFONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87130104074, + 47.8855876532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d4cf288188103bc197d6b34dd4b19a56f8bf475", + "fields": { + "code_commune_insee": "56221", + "nom_de_la_commune": "ST JACUT LES PINS", + "code_postal": "56220", + "coordonnees_gps": [ + 47.6776522748, + -2.21229939133 + ], + "libelle_d_acheminement": "ST JACUT LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.21229939133, + 47.6776522748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d831aad265a4d8ab96a39a7cda6f9a3184d5f524", + "fields": { + "code_commune_insee": "70075", + "nom_de_la_commune": "BONBOILLON", + "code_postal": "70150", + "coordonnees_gps": [ + 47.3414290252, + 5.69622608772 + ], + "libelle_d_acheminement": "BONBOILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69622608772, + 47.3414290252 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9e71156f4b9538f32295585135e00ad1c0b6019", + "fields": { + "code_commune_insee": "56222", + "nom_de_la_commune": "ST JEAN BREVELAY", + "code_postal": "56660", + "coordonnees_gps": [ + 47.831231207, + -2.72758657957 + ], + "libelle_d_acheminement": "ST JEAN BREVELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.72758657957, + 47.831231207 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45d8d74dbc56f5de5a1eaafa8dacaf43d664adde", + "fields": { + "code_commune_insee": "70085", + "nom_de_la_commune": "BOULT", + "code_postal": "70190", + "coordonnees_gps": [ + 47.3845989346, + 6.00252108883 + ], + "libelle_d_acheminement": "BOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.00252108883, + 47.3845989346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7003b49d10d451a7b033ffde42ccb06bed398da9", + "fields": { + "code_commune_insee": "56255", + "nom_de_la_commune": "TREFFLEAN", + "code_postal": "56250", + "coordonnees_gps": [ + 47.6781213314, + -2.62203549701 + ], + "libelle_d_acheminement": "TREFFLEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.62203549701, + 47.6781213314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3f61e219d4e51119882c1ef044a30c904cdda38", + "fields": { + "code_commune_insee": "70090", + "nom_de_la_commune": "BOURSIERES", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6143000555, + 6.03724175593 + ], + "libelle_d_acheminement": "BOURSIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03724175593, + 47.6143000555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37a73ce434b1ce5743a1f6a026343a7b7b4daca1", + "fields": { + "code_commune_insee": "56260", + "nom_de_la_commune": "VANNES", + "code_postal": "56000", + "coordonnees_gps": [ + 47.6597493766, + -2.75714329498 + ], + "libelle_d_acheminement": "VANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.75714329498, + 47.6597493766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "844166a8757176477e312c04c2592b53d288c98a", + "fields": { + "code_commune_insee": "70095", + "nom_de_la_commune": "BREUREY LES FAVERNEY", + "code_postal": "70160", + "coordonnees_gps": [ + 47.7448155296, + 6.14540506475 + ], + "libelle_d_acheminement": "BREUREY LES FAVERNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14540506475, + 47.7448155296 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23f8556fa3a7e6410ff6dba000a599eb92749eea", + "fields": { + "code_commune_insee": "57006", + "nom_de_la_commune": "ACHEN", + "code_postal": "57412", + "coordonnees_gps": [ + 49.046252952, + 7.18366864797 + ], + "libelle_d_acheminement": "ACHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.18366864797, + 49.046252952 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41e806d2de8bb878cfe9212e0fed3413bc268389", + "fields": { + "code_commune_insee": "57012", + "nom_de_la_commune": "ALGRANGE", + "code_postal": "57440", + "coordonnees_gps": [ + 49.3644069158, + 6.04829438392 + ], + "libelle_d_acheminement": "ALGRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04829438392, + 49.3644069158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ebaa12fd017007eaecc69d5edf0203d6d957bed", + "fields": { + "code_commune_insee": "57014", + "nom_de_la_commune": "ALTRIPPE", + "code_postal": "57660", + "coordonnees_gps": [ + 49.0273733411, + 6.81555740492 + ], + "libelle_d_acheminement": "ALTRIPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81555740492, + 49.0273733411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe752ca7eb36170c75505cff92c7178c370d0fd5", + "fields": { + "code_commune_insee": "57015", + "nom_de_la_commune": "ALTVILLER", + "code_postal": "57730", + "coordonnees_gps": [ + 49.0689443074, + 6.73140491187 + ], + "libelle_d_acheminement": "ALTVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.73140491187, + 49.0689443074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88329c0fb11a42bcb040d049a4bb6a015a7a7d63", + "fields": { + "code_commune_insee": "57020", + "nom_de_la_commune": "ANCERVILLE", + "code_postal": "57580", + "coordonnees_gps": [ + 49.032956145, + 6.39803240304 + ], + "libelle_d_acheminement": "ANCERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39803240304, + 49.032956145 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f00a03b85bcacbc5f8e2d39a5f359a96ab35084", + "fields": { + "ligne_5": "ANCY SUR MOSELLE", + "code_commune_insee": "57021", + "libelle_d_acheminement": "ANCY DORNOT", + "code_postal": "57130", + "nom_de_la_commune": "ANCY DORNOT", + "coordonnees_gps": [ + 49.0653836521, + 6.04477980667 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04477980667, + 49.0653836521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36f1005ee2360f2b00ac69ab6f2c11e8749fde61", + "fields": { + "code_commune_insee": "57022", + "nom_de_la_commune": "ANGEVILLERS", + "code_postal": "57440", + "coordonnees_gps": [ + 49.3875925274, + 6.04259987593 + ], + "libelle_d_acheminement": "ANGEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.04259987593, + 49.3875925274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2613635e36e6e3a5c81ba48d82c14dbd1e705201", + "fields": { + "code_commune_insee": "57027", + "nom_de_la_commune": "ARRAINCOURT", + "code_postal": "57380", + "coordonnees_gps": [ + 48.9760540573, + 6.53048540164 + ], + "libelle_d_acheminement": "ARRAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53048540164, + 48.9760540573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c886553553e955a021cd35d53239b8d03a99e87", + "fields": { + "code_commune_insee": "57033", + "nom_de_la_commune": "ARZVILLER", + "code_postal": "57405", + "coordonnees_gps": [ + 48.7216847027, + 7.16338621626 + ], + "libelle_d_acheminement": "ARZVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16338621626, + 48.7216847027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0953e7ecf481682b71b0198258e7ea1639f64bf9", + "fields": { + "code_commune_insee": "57035", + "nom_de_la_commune": "ASSENONCOURT", + "code_postal": "57260", + "coordonnees_gps": [ + 48.7664604694, + 6.79955530067 + ], + "libelle_d_acheminement": "ASSENONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79955530067, + 48.7664604694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c40ebdfc45d91719b184f212bf9449513cfda14b", + "fields": { + "code_commune_insee": "57046", + "nom_de_la_commune": "BAERENTHAL", + "code_postal": "57230", + "coordonnees_gps": [ + 48.967824812, + 7.52245388571 + ], + "libelle_d_acheminement": "BAERENTHAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52245388571, + 48.967824812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2df706f3bfc182dd9f7117882d726927f322770d", + "fields": { + "code_commune_insee": "57048", + "nom_de_la_commune": "BANNAY", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1219359607, + 6.46458815093 + ], + "libelle_d_acheminement": "BANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46458815093, + 49.1219359607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1ea12bb86ec6a6f6f5ef2b27a170621c363d19e", + "fields": { + "code_commune_insee": "57051", + "nom_de_la_commune": "BARONVILLE", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9385057671, + 6.61439678254 + ], + "libelle_d_acheminement": "BARONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61439678254, + 48.9385057671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b8571ff100f8c9b890fb04207ac64297a196214", + "fields": { + "code_commune_insee": "57052", + "nom_de_la_commune": "BARST", + "code_postal": "57450", + "coordonnees_gps": [ + 49.073506377, + 6.82303969379 + ], + "libelle_d_acheminement": "BARST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.82303969379, + 49.073506377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c33367abd2345621ed2fc75e4c1b8f4887c4cd1e", + "fields": { + "code_commune_insee": "57053", + "nom_de_la_commune": "BASSING", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8728450421, + 6.80064100992 + ], + "libelle_d_acheminement": "BASSING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.80064100992, + 48.8728450421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b23c6aa0e36974062defe91bf194be07d350c108", + "fields": { + "code_commune_insee": "57055", + "nom_de_la_commune": "BAZONCOURT", + "code_postal": "57530", + "coordonnees_gps": [ + 49.057272812, + 6.38508559255 + ], + "libelle_d_acheminement": "BAZONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38508559255, + 49.057272812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dafede979dcf762e9930fd56d1331a82d9669c80", + "fields": { + "code_commune_insee": "57087", + "nom_de_la_commune": "BISTEN EN LORRAINE", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1643646232, + 6.59958337457 + ], + "libelle_d_acheminement": "BISTEN EN LORRAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59958337457, + 49.1643646232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94b870b4df65bf5c88ff2a161fe385e0662ed83d", + "fields": { + "code_commune_insee": "57091", + "nom_de_la_commune": "BLIESBRUCK", + "code_postal": "57200", + "coordonnees_gps": [ + 49.1109578632, + 7.17855370951 + ], + "libelle_d_acheminement": "BLIESBRUCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17855370951, + 49.1109578632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff040a6b42e8878c96bb01dcfe790ec3d356d5f6", + "fields": { + "code_commune_insee": "57096", + "nom_de_la_commune": "BOULANGE", + "code_postal": "57655", + "coordonnees_gps": [ + 49.3827399513, + 5.95209711737 + ], + "libelle_d_acheminement": "BOULANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95209711737, + 49.3827399513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44911205db4baddcff7b71ea27e85ebfaf0cf07b", + "fields": { + "code_commune_insee": "57100", + "nom_de_la_commune": "BOURSCHEID", + "code_postal": "57370", + "coordonnees_gps": [ + 48.7696199164, + 7.19805131397 + ], + "libelle_d_acheminement": "BOURSCHEID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19805131397, + 48.7696199164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbb7aa4c5a76292eda26dd641ed1b6c1f16e1fcf", + "fields": { + "code_commune_insee": "57106", + "nom_de_la_commune": "BOUZONVILLE", + "code_postal": "57320", + "coordonnees_gps": [ + 49.2988626834, + 6.54161019887 + ], + "libelle_d_acheminement": "BOUZONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54161019887, + 49.2988626834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6aefb82131a702b40c8c71db275df89556c3d6cf", + "fields": { + "code_commune_insee": "57116", + "nom_de_la_commune": "BUCHY", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9799646993, + 6.28457340946 + ], + "libelle_d_acheminement": "BUCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28457340946, + 48.9799646993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8908d240b4a9796c3d6d51c2ab2e49b1a2aedb54", + "fields": { + "code_commune_insee": "57132", + "nom_de_la_commune": "CHATEAU SALINS", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8192996978, + 6.49319554209 + ], + "libelle_d_acheminement": "CHATEAU SALINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49319554209, + 48.8192996978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5eb65ae056369b5021b105c035333ae071475175", + "fields": { + "code_commune_insee": "57133", + "nom_de_la_commune": "CHATEAU VOUE", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8474504744, + 6.6276342753 + ], + "libelle_d_acheminement": "CHATEAU VOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6276342753, + 48.8474504744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb656d180126b8ee035c91d7081b2812080efdfb", + "fields": { + "code_commune_insee": "57142", + "nom_de_la_commune": "CHIEULLES", + "code_postal": "57070", + "coordonnees_gps": [ + 49.1575710787, + 6.22035628304 + ], + "libelle_d_acheminement": "CHIEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22035628304, + 49.1575710787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7047c1b46e8792067e4462c2e7ca78d232e2988d", + "fields": { + "code_commune_insee": "57143", + "nom_de_la_commune": "CLOUANGE", + "code_postal": "57185", + "coordonnees_gps": [ + 49.2636746222, + 6.08746043718 + ], + "libelle_d_acheminement": "CLOUANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08746043718, + 49.2636746222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6e07f8995c6f6b64788dfc88db7c80860237a41", + "fields": { + "code_commune_insee": "70112", + "nom_de_la_commune": "CEMBOING", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8432815911, + 5.85414917354 + ], + "libelle_d_acheminement": "CEMBOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85414917354, + 47.8432815911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa8023ffaee967034ea4e3a115368c2277120455", + "fields": { + "code_commune_insee": "57145", + "nom_de_la_commune": "COINCY", + "code_postal": "57530", + "coordonnees_gps": [ + 49.1065216017, + 6.2692481247 + ], + "libelle_d_acheminement": "COINCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2692481247, + 49.1065216017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1693a5453a5f322666d8eee9e526c8df84127435", + "fields": { + "code_commune_insee": "70115", + "nom_de_la_commune": "CERRE LES NOROY", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5876572112, + 6.31727829478 + ], + "libelle_d_acheminement": "CERRE LES NOROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31727829478, + 47.5876572112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ca7e195fb7df8a137a8359bdf9b9dc9cce864b7", + "fields": { + "code_commune_insee": "57160", + "nom_de_la_commune": "CREUTZWALD", + "code_postal": "57150", + "coordonnees_gps": [ + 49.2091115915, + 6.68082893611 + ], + "libelle_d_acheminement": "CREUTZWALD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68082893611, + 49.2091115915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edb977e4167dcf3873101e733e6199350e6c66ca", + "fields": { + "ligne_5": "MONTARLOT LES CHAMPLITTE", + "code_commune_insee": "70122", + "libelle_d_acheminement": "CHAMPLITTE", + "code_postal": "70600", + "nom_de_la_commune": "CHAMPLITTE", + "coordonnees_gps": [ + 47.6322292317, + 5.51329036822 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51329036822, + 47.6322292317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "241ed69c977b7d43e7a68935f3bfd089bc1b685a", + "fields": { + "code_commune_insee": "57163", + "nom_de_la_commune": "DABO", + "code_postal": "57850", + "coordonnees_gps": [ + 48.6429413775, + 7.23926887176 + ], + "libelle_d_acheminement": "DABO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23926887176, + 48.6429413775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "663da76a9c51a07a2be848d7f31e5ff6f08cddbe", + "fields": { + "ligne_5": "NEUVELLE LES CHAMPLITTE", + "code_commune_insee": "70122", + "libelle_d_acheminement": "CHAMPLITTE", + "code_postal": "70600", + "nom_de_la_commune": "CHAMPLITTE", + "coordonnees_gps": [ + 47.6322292317, + 5.51329036822 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51329036822, + 47.6322292317 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68c42e4bf12417ed2474e66303bf6ef17f5748de", + "fields": { + "ligne_5": "SCHAEFERHOF", + "code_commune_insee": "57163", + "libelle_d_acheminement": "DABO", + "code_postal": "57850", + "nom_de_la_commune": "DABO", + "coordonnees_gps": [ + 48.6429413775, + 7.23926887176 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23926887176, + 48.6429413775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e9eeab293a06438ea64d81e36d8d40e4dd645f5", + "fields": { + "code_commune_insee": "70125", + "nom_de_la_commune": "CHAMPVANS", + "code_postal": "70100", + "coordonnees_gps": [ + 47.3966029072, + 5.5921235219 + ], + "libelle_d_acheminement": "CHAMPVANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5921235219, + 47.3966029072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f381d3b1d67a93383917401485ff5269221d0a0", + "fields": { + "code_commune_insee": "57166", + "nom_de_la_commune": "DALHAIN", + "code_postal": "57340", + "coordonnees_gps": [ + 48.8880803541, + 6.56448695773 + ], + "libelle_d_acheminement": "DALHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56448695773, + 48.8880803541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b9435915cf498671ca8e4698750e4ba2670676c", + "fields": { + "code_commune_insee": "70126", + "nom_de_la_commune": "CHANCEY", + "code_postal": "70140", + "coordonnees_gps": [ + 47.3241175879, + 5.67813657788 + ], + "libelle_d_acheminement": "CHANCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67813657788, + 47.3241175879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0638ff8395b08da5e4e9704c41bcda4b121343f0", + "fields": { + "code_commune_insee": "57171", + "nom_de_la_commune": "DELME", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8832883622, + 6.3852048088 + ], + "libelle_d_acheminement": "DELME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3852048088, + 48.8832883622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5398e4b5a324134eae2ed649a545461627bdf644", + "fields": { + "code_commune_insee": "70128", + "nom_de_la_commune": "LA CHAPELLE LES LUXEUIL", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7738963154, + 6.38097231925 + ], + "libelle_d_acheminement": "LA CHAPELLE LES LUXEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38097231925, + 47.7738963154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c2e4c1441e2db6399fd35644e3e5a1ca5f042c4", + "fields": { + "code_commune_insee": "57172", + "nom_de_la_commune": "DENTING", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1838468541, + 6.54223138177 + ], + "libelle_d_acheminement": "DENTING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54223138177, + 49.1838468541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0774662c7134d58b2407fe9c9e3defe5c3ca709", + "fields": { + "code_commune_insee": "70143", + "nom_de_la_commune": "CHAUVIREY LE CHATEL", + "code_postal": "70500", + "coordonnees_gps": [ + 47.7868240584, + 5.74359892112 + ], + "libelle_d_acheminement": "CHAUVIREY LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74359892112, + 47.7868240584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42c523f24914d6bcebe45bbf16a4e24cdb069651", + "fields": { + "code_commune_insee": "57174", + "nom_de_la_commune": "DESTRY", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9455841112, + 6.58479529339 + ], + "libelle_d_acheminement": "DESTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58479529339, + 48.9455841112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a99e30552137a386f262482d568e5dd5579d7bc2", + "fields": { + "code_commune_insee": "70148", + "nom_de_la_commune": "CHEMILLY", + "code_postal": "70360", + "coordonnees_gps": [ + 47.6416852951, + 6.0177515817 + ], + "libelle_d_acheminement": "CHEMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0177515817, + 47.6416852951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d70ae11748893d7385d95b3eaac1b510a4e2f4bf", + "fields": { + "code_commune_insee": "57177", + "nom_de_la_commune": "DIEUZE", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8077845102, + 6.71733647603 + ], + "libelle_d_acheminement": "DIEUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71733647603, + 48.8077845102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0b70ad18f6bf921344b2df8bbc131276aef5e10", + "fields": { + "code_commune_insee": "70149", + "nom_de_la_commune": "CHENEBIER", + "code_postal": "70400", + "coordonnees_gps": [ + 47.6435305659, + 6.70723411638 + ], + "libelle_d_acheminement": "CHENEBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70723411638, + 47.6435305659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db4903dc7b257ba25a9055fd6e5f0c5e82d48233", + "fields": { + "code_commune_insee": "57180", + "nom_de_la_commune": "DOLVING", + "code_postal": "57400", + "coordonnees_gps": [ + 48.7704026772, + 7.02130985886 + ], + "libelle_d_acheminement": "DOLVING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02130985886, + 48.7704026772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ff4672328d02188d21bc3f9f092f1b34b1fce6d", + "fields": { + "code_commune_insee": "70155", + "nom_de_la_commune": "CITERS", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7549976504, + 6.41938709538 + ], + "libelle_d_acheminement": "CITERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41938709538, + 47.7549976504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c373034ae2eb1be37924bcbbf342f2e36228ba64", + "fields": { + "code_commune_insee": "57186", + "nom_de_la_commune": "EBERSVILLER", + "code_postal": "57320", + "coordonnees_gps": [ + 49.2801569466, + 6.39992340407 + ], + "libelle_d_acheminement": "EBERSVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39992340407, + 49.2801569466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "771c99a2801432bc7ff3180b9713cb1f5aac705d", + "fields": { + "code_commune_insee": "70178", + "nom_de_la_commune": "LA COTE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6890199051, + 6.57292150437 + ], + "libelle_d_acheminement": "LA COTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57292150437, + 47.6890199051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bd496785c29c08ca3fbdc029be07981c8e1a974", + "fields": { + "code_commune_insee": "57187", + "nom_de_la_commune": "EBLANGE", + "code_postal": "57220", + "coordonnees_gps": [ + 49.2217423553, + 6.4871272432 + ], + "libelle_d_acheminement": "EBLANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4871272432, + 49.2217423553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "106ab915f04fd38efffc415ec042f5b49b6d2e70", + "fields": { + "code_commune_insee": "70179", + "nom_de_la_commune": "COULEVON", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6487139792, + 6.18039874314 + ], + "libelle_d_acheminement": "COULEVON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18039874314, + 47.6487139792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf9a758c4b14655d16eccbd8657f9d91b0b4c3d5", + "fields": { + "code_commune_insee": "57198", + "nom_de_la_commune": "ERSTROFF", + "code_postal": "57660", + "coordonnees_gps": [ + 48.980103423, + 6.77594710498 + ], + "libelle_d_acheminement": "ERSTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77594710498, + 48.980103423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4616120215588537ad2f3c2ee46f472dc5e4f16d", + "fields": { + "code_commune_insee": "70180", + "nom_de_la_commune": "COURCHATON", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5135728271, + 6.5542014435 + ], + "libelle_d_acheminement": "COURCHATON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5542014435, + 47.5135728271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba72769f76181beef0fc0b442a4231c9a6718a62", + "fields": { + "ligne_5": "CHEMERY", + "code_commune_insee": "57209", + "libelle_d_acheminement": "FAULQUEMONT", + "code_postal": "57380", + "nom_de_la_commune": "FAULQUEMONT", + "coordonnees_gps": [ + 49.0355163236, + 6.59404999138 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59404999138, + 49.0355163236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79a1f49457f4a40ddcc021f3be7b55db2c08bf86", + "fields": { + "code_commune_insee": "70183", + "nom_de_la_commune": "COURTESOULT ET GATEY", + "code_postal": "70600", + "coordonnees_gps": [ + 47.6090292846, + 5.61236110183 + ], + "libelle_d_acheminement": "COURTESOULT ET GATEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61236110183, + 47.6090292846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "228edb3644c3bffc8ec998df7c24e5003608006a", + "fields": { + "code_commune_insee": "57210", + "nom_de_la_commune": "FENETRANGE", + "code_postal": "57930", + "coordonnees_gps": [ + 48.850716262, + 7.00987117365 + ], + "libelle_d_acheminement": "FENETRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00987117365, + 48.850716262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c038c9a9ae879ebae9ee9bab9649321cb7191dc8", + "fields": { + "code_commune_insee": "70194", + "nom_de_la_commune": "CUVE", + "code_postal": "70800", + "coordonnees_gps": [ + 47.9108609255, + 6.22091242298 + ], + "libelle_d_acheminement": "CUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22091242298, + 47.9108609255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02f8a7b43b3fa382deb9a9fec2724e8d9d18184f", + "fields": { + "code_commune_insee": "57211", + "nom_de_la_commune": "FEVES", + "code_postal": "57280", + "coordonnees_gps": [ + 49.1891814065, + 6.10692735575 + ], + "libelle_d_acheminement": "FEVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10692735575, + 49.1891814065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "016a068f5b1045f9a9f1df593dd9ef654c951c01", + "fields": { + "ligne_5": "TREVEY", + "code_commune_insee": "70197", + "libelle_d_acheminement": "DAMPIERRE SUR LINOTTE", + "code_postal": "70230", + "nom_de_la_commune": "DAMPIERRE SUR LINOTTE", + "coordonnees_gps": [ + 47.5328760062, + 6.24208585386 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24208585386, + 47.5328760062 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4887eb6d445481314c9d86ecd9a4cb2c96c7850", + "fields": { + "code_commune_insee": "57214", + "nom_de_la_commune": "FIXEM", + "code_postal": "57570", + "coordonnees_gps": [ + 49.4427943752, + 6.27318688031 + ], + "libelle_d_acheminement": "FIXEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27318688031, + 49.4427943752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0449a85cae82c31702839741e7cb2f1e49ce9cdb", + "fields": { + "code_commune_insee": "70201", + "nom_de_la_commune": "DELAIN", + "code_postal": "70180", + "coordonnees_gps": [ + 47.592217463, + 5.64526188682 + ], + "libelle_d_acheminement": "DELAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64526188682, + 47.592217463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5051fabfb136983fd6143bc1f3f752d7328a515e", + "fields": { + "code_commune_insee": "57221", + "nom_de_la_commune": "FLORANGE", + "code_postal": "57190", + "coordonnees_gps": [ + 49.3281938982, + 6.12282167584 + ], + "libelle_d_acheminement": "FLORANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12282167584, + 49.3281938982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "650b43a62f7081db663d2b7eab5a71f8cc4fe9e5", + "fields": { + "code_commune_insee": "70203", + "nom_de_la_commune": "LA DEMIE", + "code_postal": "70000", + "coordonnees_gps": [ + 47.5825372147, + 6.17113589941 + ], + "libelle_d_acheminement": "LA DEMIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17113589941, + 47.5825372147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9922633ffd3128a43ac31af1c5734d8b3f9c085b", + "fields": { + "code_commune_insee": "57224", + "nom_de_la_commune": "FOLSCHVILLER", + "code_postal": "57730", + "coordonnees_gps": [ + 49.0692645659, + 6.68467570512 + ], + "libelle_d_acheminement": "FOLSCHVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68467570512, + 49.0692645659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c82ebcb0416e33d343ef53294179ac0179dbc265", + "fields": { + "code_commune_insee": "70215", + "nom_de_la_commune": "ERREVET", + "code_postal": "70400", + "coordonnees_gps": [ + 47.6872396262, + 6.77009884237 + ], + "libelle_d_acheminement": "ERREVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77009884237, + 47.6872396262 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdddacb1e7db84f4e2f356385a042cd7b19e40f2", + "fields": { + "code_commune_insee": "57227", + "nom_de_la_commune": "FORBACH", + "code_postal": "57600", + "coordonnees_gps": [ + 49.1912650369, + 6.89275798526 + ], + "libelle_d_acheminement": "FORBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89275798526, + 49.1912650369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbdf62a61c52e0bb807ccd745049c4c866ef8dea", + "fields": { + "code_commune_insee": "70216", + "nom_de_la_commune": "ESBOZ BREST", + "code_postal": "70300", + "coordonnees_gps": [ + 47.8034880472, + 6.44017701337 + ], + "libelle_d_acheminement": "ESBOZ BREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44017701337, + 47.8034880472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99d30d3ab23257b47b2ce828fd11500613d5e5e2", + "fields": { + "code_commune_insee": "57228", + "nom_de_la_commune": "FOSSIEUX", + "code_postal": "57590", + "coordonnees_gps": [ + 48.850273801, + 6.33084247597 + ], + "libelle_d_acheminement": "FOSSIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33084247597, + 48.850273801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52232d8054886bf041050ba61c29724002dd5229", + "fields": { + "code_commune_insee": "70217", + "nom_de_la_commune": "ESMOULIERES", + "code_postal": "70310", + "coordonnees_gps": [ + 47.8525224657, + 6.616387681 + ], + "libelle_d_acheminement": "ESMOULIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.616387681, + 47.8525224657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a1b648561b417627ed18bad541c20b1ce52ddc4", + "fields": { + "code_commune_insee": "57230", + "nom_de_la_commune": "FOULIGNY", + "code_postal": "57220", + "coordonnees_gps": [ + 49.0960674446, + 6.51361253656 + ], + "libelle_d_acheminement": "FOULIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51361253656, + 49.0960674446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "235816f350504c91e02971c6fbc40a1ee1acd947", + "fields": { + "code_commune_insee": "70237", + "nom_de_la_commune": "FLEUREY LES LAVONCOURT", + "code_postal": "70120", + "coordonnees_gps": [ + 47.6622890389, + 5.78508054344 + ], + "libelle_d_acheminement": "FLEUREY LES LAVONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78508054344, + 47.6622890389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5882e1eefbcc8960fa11042e48ff5d7202bd8257", + "fields": { + "ligne_5": "MERLEBACH", + "code_commune_insee": "57240", + "libelle_d_acheminement": "FREYMING MERLEBACH", + "code_postal": "57800", + "nom_de_la_commune": "FREYMING MERLEBACH", + "coordonnees_gps": [ + 49.1525756195, + 6.79731056431 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79731056431, + 49.1525756195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8acfbb907191e729f7defdd07926db431287d538", + "fields": { + "code_commune_insee": "70239", + "nom_de_la_commune": "FONDREMAND", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4719327079, + 6.02806238503 + ], + "libelle_d_acheminement": "FONDREMAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02806238503, + 47.4719327079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "289686136056a481d9cb62a0956514fd83062903", + "fields": { + "code_commune_insee": "57241", + "nom_de_la_commune": "FRIBOURG", + "code_postal": "57810", + "coordonnees_gps": [ + 48.7700278814, + 6.87194156304 + ], + "libelle_d_acheminement": "FRIBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87194156304, + 48.7700278814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dec4ab85c7a08ab4243990640ee506a5f3444494", + "fields": { + "ligne_5": "FOUGEROLLES", + "code_commune_insee": "70245", + "libelle_d_acheminement": "FOUGEROLLES ST VALBERT", + "code_postal": "70220", + "nom_de_la_commune": "FOUGEROLLES ST VALBERT", + "coordonnees_gps": [ + 47.9016025414, + 6.4130351203 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4130351203, + 47.9016025414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ea72d4bd2aff5fb2a6b7a87fb4d507418a8e69a", + "fields": { + "code_commune_insee": "57262", + "nom_de_la_commune": "GROSTENQUIN", + "code_postal": "57660", + "coordonnees_gps": [ + 48.9811031676, + 6.74027388511 + ], + "libelle_d_acheminement": "GROSTENQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74027388511, + 48.9811031676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea53648f6a77d858480081f2bb5e2042655fcf0c", + "fields": { + "code_commune_insee": "70248", + "nom_de_la_commune": "FRAHIER ET CHATEBIER", + "code_postal": "70400", + "coordonnees_gps": [ + 47.6588239223, + 6.75066978549 + ], + "libelle_d_acheminement": "FRAHIER ET CHATEBIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75066978549, + 47.6588239223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f1570a5664be9dc6a2d5202be09b9c9e0be8936", + "fields": { + "code_commune_insee": "57265", + "nom_de_la_commune": "GUEBESTROFF", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8417093595, + 6.71398837689 + ], + "libelle_d_acheminement": "GUEBESTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71398837689, + 48.8417093595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38f6fc36a81c647cd0c930025a453bbc8d9d9976", + "fields": { + "code_commune_insee": "70260", + "nom_de_la_commune": "FROTEY LES LURE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6564257006, + 6.54861043943 + ], + "libelle_d_acheminement": "FROTEY LES LURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54861043943, + 47.6564257006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f331aae7d2a8c69fc00d2d1fae61a846b2e7850", + "fields": { + "code_commune_insee": "57266", + "nom_de_la_commune": "GUEBLANGE LES DIEUZE", + "code_postal": "57260", + "coordonnees_gps": [ + 48.7774548457, + 6.70140022635 + ], + "libelle_d_acheminement": "GUEBLANGE LES DIEUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.70140022635, + 48.7774548457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38a86841fe9db549b088bc25b2be877a6a40183c", + "fields": { + "code_commune_insee": "70265", + "nom_de_la_commune": "GERMIGNEY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.3703184562, + 5.53460543886 + ], + "libelle_d_acheminement": "GERMIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53460543886, + 47.3703184562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce3f8175c0a1683d3e1a368001a60867e87819ad", + "fields": { + "code_commune_insee": "57274", + "nom_de_la_commune": "GUERTING", + "code_postal": "57880", + "coordonnees_gps": [ + 49.1937313048, + 6.61915657628 + ], + "libelle_d_acheminement": "GUERTING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61915657628, + 49.1937313048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94e89b0b73fd9a5be4f5b0941b4984b396e97a9f", + "fields": { + "code_commune_insee": "70276", + "nom_de_la_commune": "GRANGES LA VILLE", + "code_postal": "70400", + "coordonnees_gps": [ + 47.5673790557, + 6.56598899284 + ], + "libelle_d_acheminement": "GRANGES LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56598899284, + 47.5673790557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bc05a32ac624aa00cbbdfd1aa320f40b515f9b3", + "fields": { + "code_commune_insee": "57280", + "nom_de_la_commune": "GUNTZVILLER", + "code_postal": "57405", + "coordonnees_gps": [ + 48.7041811617, + 7.16303879874 + ], + "libelle_d_acheminement": "GUNTZVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16303879874, + 48.7041811617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79856fe127835e139e6b4f7b433515734c0e2a69", + "fields": { + "ligne_5": "CHATEAU LAMBERT", + "code_commune_insee": "70283", + "libelle_d_acheminement": "HAUT DU THEM CHATEAU LAMBERT", + "code_postal": "70440", + "nom_de_la_commune": "HAUT DU THEM CHATEAU LAMBERT", + "coordonnees_gps": [ + 47.8372151662, + 6.74620306195 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74620306195, + 47.8372151662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48654ef09b85e113c4ba16b1a08f9124dd136bda", + "fields": { + "code_commune_insee": "57283", + "nom_de_la_commune": "HAGONDANGE", + "code_postal": "57300", + "coordonnees_gps": [ + 49.2467196243, + 6.15851425392 + ], + "libelle_d_acheminement": "HAGONDANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15851425392, + 49.2467196243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7db165015b9a3608dd62adb56fc37fd1ce585ad4", + "fields": { + "code_commune_insee": "70290", + "nom_de_la_commune": "JASNEY", + "code_postal": "70800", + "coordonnees_gps": [ + 47.8699899355, + 6.17639151599 + ], + "libelle_d_acheminement": "JASNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17639151599, + 47.8699899355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2220c058ca5d350c3e8b4d9ac062e4715f594eb2", + "fields": { + "code_commune_insee": "57284", + "nom_de_la_commune": "HALLERING", + "code_postal": "57690", + "coordonnees_gps": [ + 49.1239323268, + 6.55528654892 + ], + "libelle_d_acheminement": "HALLERING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55528654892, + 49.1239323268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c5d5cd69c4b78133cf7f9b254294e75a1bc5cf7", + "fields": { + "code_commune_insee": "70296", + "nom_de_la_commune": "LARIANS ET MUNANS", + "code_postal": "70230", + "coordonnees_gps": [ + 47.4233188148, + 6.22972623642 + ], + "libelle_d_acheminement": "LARIANS ET MUNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22972623642, + 47.4233188148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2acfcae117f09b580e8ca2a689c41cc31c279f03", + "fields": { + "code_commune_insee": "57288", + "nom_de_la_commune": "HAM SOUS VARSBERG", + "code_postal": "57880", + "coordonnees_gps": [ + 49.1829986038, + 6.64920897655 + ], + "libelle_d_acheminement": "HAM SOUS VARSBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64920897655, + 49.1829986038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7f94a231b340e1960f9eacf94da305befeb4c01", + "fields": { + "code_commune_insee": "70299", + "nom_de_la_commune": "LAVONCOURT", + "code_postal": "70120", + "coordonnees_gps": [ + 47.6226588338, + 5.77603132497 + ], + "libelle_d_acheminement": "LAVONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77603132497, + 47.6226588338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dff75e9b89b825e450dce6f490ba2170acc0804", + "fields": { + "code_commune_insee": "57290", + "nom_de_la_commune": "HAMPONT", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8316002275, + 6.58571987571 + ], + "libelle_d_acheminement": "HAMPONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58571987571, + 48.8316002275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e75a14946dfb11b1b59c85e4159f0cc15cb5dd1", + "fields": { + "code_commune_insee": "70302", + "nom_de_la_commune": "LIEUCOURT", + "code_postal": "70140", + "coordonnees_gps": [ + 47.3596424116, + 5.61660904057 + ], + "libelle_d_acheminement": "LIEUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61660904057, + 47.3596424116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2823660830aeef0a8ad8f7bf72323d7052897352", + "fields": { + "code_commune_insee": "57297", + "nom_de_la_commune": "HARPRICH", + "code_postal": "57340", + "coordonnees_gps": [ + 48.966895194, + 6.65512911806 + ], + "libelle_d_acheminement": "HARPRICH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65512911806, + 48.966895194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4eb5eaccfc55f28ac2f161baf80a938fde9ae063", + "fields": { + "code_commune_insee": "70305", + "nom_de_la_commune": "LOEUILLEY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.4659733002, + 5.40017583758 + ], + "libelle_d_acheminement": "LOEUILLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40017583758, + 47.4659733002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfe84850f6806ee75a24bf13be2b3bee8eedd3f1", + "fields": { + "code_commune_insee": "57301", + "nom_de_la_commune": "HASPELSCHIEDT", + "code_postal": "57230", + "coordonnees_gps": [ + 49.0765827485, + 7.49538129616 + ], + "libelle_d_acheminement": "HASPELSCHIEDT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49538129616, + 49.0765827485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1323683f1d65ca139bd0a3592fd71140c910f3d9", + "fields": { + "code_commune_insee": "70307", + "nom_de_la_commune": "LONGEVELLE", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5919835332, + 6.44894142613 + ], + "libelle_d_acheminement": "LONGEVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44894142613, + 47.5919835332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b76501e2d37fb181c3badcd953c0df629d7ddd5", + "fields": { + "code_commune_insee": "57302", + "nom_de_la_commune": "HATTIGNY", + "code_postal": "57790", + "coordonnees_gps": [ + 48.6273852983, + 6.96125390786 + ], + "libelle_d_acheminement": "HATTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96125390786, + 48.6273852983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0c4c96f68b62def374a694bf2c13e913800dcfc", + "fields": { + "code_commune_insee": "70308", + "nom_de_la_commune": "LA LONGINE", + "code_postal": "70310", + "coordonnees_gps": [ + 47.8992130151, + 6.57732666046 + ], + "libelle_d_acheminement": "LA LONGINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57732666046, + 47.8992130151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bc4ccff53233505823d7d499e0f0ea2317e2e12", + "fields": { + "code_commune_insee": "57303", + "nom_de_la_commune": "HAUCONCOURT", + "code_postal": "57280", + "coordonnees_gps": [ + 49.2113038601, + 6.18435511357 + ], + "libelle_d_acheminement": "HAUCONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18435511357, + 49.2113038601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f21e29636386ebade494b4f70365438f1bab9ed8", + "fields": { + "ligne_5": "VERCHAMP", + "code_commune_insee": "70309", + "libelle_d_acheminement": "LOULANS VERCHAMP", + "code_postal": "70230", + "nom_de_la_commune": "LOULANS VERCHAMP", + "coordonnees_gps": [ + 47.4450028639, + 6.20512225954 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20512225954, + 47.4450028639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ba821205f0cbe6dcc19d3205610f804a223a147", + "fields": { + "code_commune_insee": "57310", + "nom_de_la_commune": "HELLERING LES FENETRANGE", + "code_postal": "57930", + "coordonnees_gps": [ + 48.8081899476, + 7.06605940733 + ], + "libelle_d_acheminement": "HELLERING LES FENETRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06605940733, + 48.8081899476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b91f63d2c7410317861c4276b9c3c0da35b9457a", + "fields": { + "code_commune_insee": "70311", + "nom_de_la_commune": "LUXEUIL LES BAINS", + "code_postal": "70300", + "coordonnees_gps": [ + 47.823919724, + 6.36363973342 + ], + "libelle_d_acheminement": "LUXEUIL LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36363973342, + 47.823919724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5088caffbcd3fa26d5a3e34e07183a7053fb53f9", + "fields": { + "code_commune_insee": "57312", + "nom_de_la_commune": "HELSTROFF", + "code_postal": "57220", + "coordonnees_gps": [ + 49.1523462454, + 6.48234809379 + ], + "libelle_d_acheminement": "HELSTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48234809379, + 49.1523462454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b3634f4ae3e1fa4481959d8ccacde928764e9f7", + "fields": { + "code_commune_insee": "70315", + "nom_de_la_commune": "MAGNONCOURT", + "code_postal": "70800", + "coordonnees_gps": [ + 47.9040102383, + 6.29020789289 + ], + "libelle_d_acheminement": "MAGNONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29020789289, + 47.9040102383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "463f469b396e83b856e6ab97d92f932b7ef76327", + "fields": { + "code_commune_insee": "57314", + "nom_de_la_commune": "HEMING", + "code_postal": "57830", + "coordonnees_gps": [ + 48.6990544638, + 6.97117087348 + ], + "libelle_d_acheminement": "HEMING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97117087348, + 48.6990544638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c74624e3734ab88871d56e3c256c6bbd15a2c16f", + "fields": { + "code_commune_insee": "70319", + "nom_de_la_commune": "MAGNY JOBERT", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6470935306, + 6.61228516531 + ], + "libelle_d_acheminement": "MAGNY JOBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61228516531, + 47.6470935306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b7cff5631f05149e404bea482f779ebdf8debd7", + "fields": { + "code_commune_insee": "57316", + "nom_de_la_commune": "HENRIVILLE", + "code_postal": "57450", + "coordonnees_gps": [ + 49.0993733764, + 6.85657257275 + ], + "libelle_d_acheminement": "HENRIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.85657257275, + 49.0993733764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f328f97b84c55553931077fb8ed9f79d5576c485", + "fields": { + "code_commune_insee": "70321", + "nom_de_la_commune": "MAGNY VERNOIS", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6685268881, + 6.47015380217 + ], + "libelle_d_acheminement": "MAGNY VERNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47015380217, + 47.6685268881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69a5631f4d32f0217a50cfde3804098a6bf55eff", + "fields": { + "code_commune_insee": "57321", + "nom_de_la_commune": "HESSE", + "code_postal": "57400", + "coordonnees_gps": [ + 48.6876193264, + 7.05195872766 + ], + "libelle_d_acheminement": "HESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05195872766, + 48.6876193264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba856691aaac857d3156f52401c244a187621c39", + "fields": { + "code_commune_insee": "70323", + "nom_de_la_commune": "MAILLERONCOURT ST PANCRAS", + "code_postal": "70210", + "coordonnees_gps": [ + 47.9284392755, + 6.13912860698 + ], + "libelle_d_acheminement": "MAILLERONCOURT ST PANCRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13912860698, + 47.9284392755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61c8a052dcf85c7a3f9602ce3621aa13b79c1b00", + "fields": { + "code_commune_insee": "57323", + "nom_de_la_commune": "HETTANGE GRANDE", + "code_postal": "57330", + "coordonnees_gps": [ + 49.4173312149, + 6.15258748635 + ], + "libelle_d_acheminement": "HETTANGE GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15258748635, + 49.4173312149 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccf03769653c16b58ff7890e8eb7519f6741f12e", + "fields": { + "code_commune_insee": "70329", + "nom_de_la_commune": "MALVILLERS", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7360575456, + 5.78893531092 + ], + "libelle_d_acheminement": "MALVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78893531092, + 47.7360575456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ee528ecd52424980d9042882f5560b027517b39", + "fields": { + "code_commune_insee": "57333", + "nom_de_la_commune": "HOMMARTING", + "code_postal": "57405", + "coordonnees_gps": [ + 48.7388077485, + 7.14432398822 + ], + "libelle_d_acheminement": "HOMMARTING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14432398822, + 48.7388077485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f27cf5816117f426ad374c44fad043a027376df3", + "fields": { + "code_commune_insee": "70330", + "nom_de_la_commune": "MANDREVILLARS", + "code_postal": "70400", + "coordonnees_gps": [ + 47.6176830876, + 6.77141230982 + ], + "libelle_d_acheminement": "MANDREVILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77141230982, + 47.6176830876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d938cae158902475ea64a35dc5577f46bcd4951d", + "fields": { + "code_commune_insee": "57334", + "nom_de_la_commune": "HOMMERT", + "code_postal": "57870", + "coordonnees_gps": [ + 48.6771461904, + 7.17716114263 + ], + "libelle_d_acheminement": "HOMMERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17716114263, + 48.6771461904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f668077f4820dc7194ffd2588a7897e0accbee5", + "fields": { + "code_commune_insee": "70337", + "nom_de_la_commune": "MELIN", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7422930527, + 5.82229333828 + ], + "libelle_d_acheminement": "MELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82229333828, + 47.7422930527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "178713ade749211727e3a64244718ea0ffcfe7fa", + "fields": { + "code_commune_insee": "57338", + "nom_de_la_commune": "HOTTVILLER", + "code_postal": "57720", + "coordonnees_gps": [ + 49.0782664216, + 7.35808063345 + ], + "libelle_d_acheminement": "HOTTVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35808063345, + 49.0782664216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7939aae14f726182b9b97ce5a6bf8e830321d1b", + "fields": { + "code_commune_insee": "70343", + "nom_de_la_commune": "MERSUAY", + "code_postal": "70160", + "coordonnees_gps": [ + 47.78520747, + 6.14234476405 + ], + "libelle_d_acheminement": "MERSUAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14234476405, + 47.78520747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeb9806f94614db288c2dbc67dc9ba4e887d9a69", + "fields": { + "code_commune_insee": "57344", + "nom_de_la_commune": "IMLING", + "code_postal": "57400", + "coordonnees_gps": [ + 48.7109869246, + 7.0190381257 + ], + "libelle_d_acheminement": "IMLING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0190381257, + 48.7109869246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c251eda013ca34a5c80ea6b722b44ab3dc08fdb", + "fields": { + "code_commune_insee": "70351", + "nom_de_la_commune": "MOLLANS", + "code_postal": "70240", + "coordonnees_gps": [ + 47.6509274907, + 6.3893154252 + ], + "libelle_d_acheminement": "MOLLANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3893154252, + 47.6509274907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00f602c909eb0464ffeb54556042e46b3f34c67f", + "fields": { + "code_commune_insee": "57346", + "nom_de_la_commune": "INSMING", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9549408655, + 6.88613750335 + ], + "libelle_d_acheminement": "INSMING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88613750335, + 48.9549408655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f81390e7bebbfb8b6b6cc769127898e909f45c0", + "fields": { + "code_commune_insee": "70353", + "nom_de_la_commune": "MONTAGNEY", + "code_postal": "70140", + "coordonnees_gps": [ + 47.285544975, + 5.6562805312 + ], + "libelle_d_acheminement": "MONTAGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6562805312, + 47.285544975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "596ec4597be8ef0ebf6950703864cbebbfd8be53", + "fields": { + "code_commune_insee": "57353", + "nom_de_la_commune": "JUVELIZE", + "code_postal": "57630", + "coordonnees_gps": [ + 48.7672447342, + 6.6566140221 + ], + "libelle_d_acheminement": "JUVELIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6566140221, + 48.7672447342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af13fd2b1a5647b740c9aeb1825840a4dcd35372", + "fields": { + "code_commune_insee": "70360", + "nom_de_la_commune": "MONTDORE", + "code_postal": "70210", + "coordonnees_gps": [ + 47.9227624293, + 6.07900554463 + ], + "libelle_d_acheminement": "MONTDORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07900554463, + 47.9227624293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c98b5e52cb2b03979f9234bf90ff26f4cc01485", + "fields": { + "code_commune_insee": "57357", + "nom_de_la_commune": "KAPPELKINGER", + "code_postal": "57430", + "coordonnees_gps": [ + 48.97576104, + 6.90998256348 + ], + "libelle_d_acheminement": "KAPPELKINGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90998256348, + 48.97576104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8fe610d39f2aa2d1bdfa85ad1d7ac0bf4db698e", + "fields": { + "code_commune_insee": "70363", + "nom_de_la_commune": "MONTIGNY LES VESOUL", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6428660146, + 6.07108033539 + ], + "libelle_d_acheminement": "MONTIGNY LES VESOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07108033539, + 47.6428660146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f8e0d06ad9f8afd46ca2ff8fe6d4a5ccc922cdd", + "fields": { + "code_commune_insee": "57364", + "nom_de_la_commune": "KIRSCH LES SIERCK", + "code_postal": "57480", + "coordonnees_gps": [ + 49.437242014, + 6.41053052228 + ], + "libelle_d_acheminement": "KIRSCH LES SIERCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41053052228, + 49.437242014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf429aacbe95c5d4b873d5c359c9a410fbf6c127", + "fields": { + "code_commune_insee": "70367", + "nom_de_la_commune": "MONT LE VERNOIS", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6019923568, + 6.06463022587 + ], + "libelle_d_acheminement": "MONT LE VERNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06463022587, + 47.6019923568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db22dba7e0a7c4dbc06013e10fcbcf71b92fced7", + "fields": { + "code_commune_insee": "57366", + "nom_de_la_commune": "KIRVILLER", + "code_postal": "57430", + "coordonnees_gps": [ + 48.9579531488, + 6.9814083493 + ], + "libelle_d_acheminement": "KIRVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9814083493, + 48.9579531488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4070b90af671f2b3b8c2bed2f309046a3a8633a", + "fields": { + "code_commune_insee": "70372", + "nom_de_la_commune": "MONTUREUX LES BAULAY", + "code_postal": "70500", + "coordonnees_gps": [ + 47.8202221375, + 5.9796933701 + ], + "libelle_d_acheminement": "MONTUREUX LES BAULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9796933701, + 47.8202221375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cdba960ad3a4dab865833373fca73e84cb2568b", + "fields": { + "code_commune_insee": "57374", + "nom_de_la_commune": "LAFRIMBOLLE", + "code_postal": "57560", + "coordonnees_gps": [ + 48.6030813996, + 7.02379408079 + ], + "libelle_d_acheminement": "LAFRIMBOLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02379408079, + 48.6030813996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27be7b15e3528d8fb41dfb39357d723d296febc5", + "fields": { + "code_commune_insee": "70373", + "nom_de_la_commune": "LA ROCHE MOREY", + "code_postal": "70120", + "coordonnees_gps": [ + 47.6947168026, + 5.75337268526 + ], + "libelle_d_acheminement": "LA ROCHE MOREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75337268526, + 47.6947168026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0976570094d935e6d88118b445d85a6edd80b8d6", + "fields": { + "code_commune_insee": "57380", + "nom_de_la_commune": "LANEUVEVILLE LES LORQUIN", + "code_postal": "57790", + "coordonnees_gps": [ + 48.6512962656, + 7.00539649013 + ], + "libelle_d_acheminement": "LANEUVEVILLE LES LORQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00539649013, + 48.6512962656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "584ad2f9669444ffd86293e8e59e915e195b45ca", + "fields": { + "ligne_5": "BETONCOURT LES MENETRIERS", + "code_commune_insee": "70373", + "libelle_d_acheminement": "LA ROCHE MOREY", + "code_postal": "70120", + "nom_de_la_commune": "LA ROCHE MOREY", + "coordonnees_gps": [ + 47.6947168026, + 5.75337268526 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.75337268526, + 47.6947168026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c55e0279c8e19d4daaf0e0ac2f5f7c6547ccc1d2", + "fields": { + "code_commune_insee": "57381", + "nom_de_la_commune": "LANEUVEVILLE EN SAULNOIS", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8662241867, + 6.44460881144 + ], + "libelle_d_acheminement": "LANEUVEVILLE EN SAULNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44460881144, + 48.8662241867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb35a73f5330ed2cdd17ac7336eddc7a11bcae87", + "fields": { + "code_commune_insee": "70378", + "nom_de_la_commune": "NAVENNE", + "code_postal": "70000", + "coordonnees_gps": [ + 47.6030208472, + 6.1618556725 + ], + "libelle_d_acheminement": "NAVENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1618556725, + 47.6030208472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2f8ecd4867131a0606c68c0cf0f9053edab62ba", + "fields": { + "code_commune_insee": "57384", + "nom_de_la_commune": "LANING", + "code_postal": "57660", + "coordonnees_gps": [ + 49.0289145916, + 6.77148236689 + ], + "libelle_d_acheminement": "LANING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77148236689, + 49.0289145916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d4dcb9a30e6c615c3afcf8425647cb25871b856", + "fields": { + "code_commune_insee": "70380", + "nom_de_la_commune": "NEUREY EN VAUX", + "code_postal": "70160", + "coordonnees_gps": [ + 47.7425950552, + 6.20223873056 + ], + "libelle_d_acheminement": "NEUREY EN VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20223873056, + 47.7425950552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4268ade7196087c18ad4b16b35fa9ee1426019f3", + "fields": { + "code_commune_insee": "57385", + "nom_de_la_commune": "LAQUENEXY", + "code_postal": "57530", + "coordonnees_gps": [ + 49.0796082321, + 6.31414221874 + ], + "libelle_d_acheminement": "LAQUENEXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31414221874, + 49.0796082321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5aacf45b5d782a07ccf60b4416a29d5a48a4010f", + "fields": { + "code_commune_insee": "70389", + "nom_de_la_commune": "NOIRON", + "code_postal": "70100", + "coordonnees_gps": [ + 47.3828510502, + 5.62597938451 + ], + "libelle_d_acheminement": "NOIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62597938451, + 47.3828510502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f54da4e2fc8668ceb9dd9fd29040b7719d159b3a", + "fields": { + "code_commune_insee": "57388", + "nom_de_la_commune": "LAUNSTROFF", + "code_postal": "57480", + "coordonnees_gps": [ + 49.4349332995, + 6.50065230203 + ], + "libelle_d_acheminement": "LAUNSTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50065230203, + 49.4349332995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6595bb089a5661721475ea821db1f229d38038e8", + "fields": { + "code_commune_insee": "70392", + "nom_de_la_commune": "OIGNEY", + "code_postal": "70120", + "coordonnees_gps": [ + 47.7559418232, + 5.8503313138 + ], + "libelle_d_acheminement": "OIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8503313138, + 47.7559418232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf48605114f5f2ade476c2f82e7b1feb296e608a", + "fields": { + "code_commune_insee": "57393", + "nom_de_la_commune": "LENGELSHEIM", + "code_postal": "57720", + "coordonnees_gps": [ + 49.1061017044, + 7.40784564879 + ], + "libelle_d_acheminement": "LENGELSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.40784564879, + 49.1061017044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36530c589189086489889c0db03cc1f40976e439", + "fields": { + "code_commune_insee": "70401", + "nom_de_la_commune": "OVANCHES", + "code_postal": "70360", + "coordonnees_gps": [ + 47.6291922295, + 5.95640814876 + ], + "libelle_d_acheminement": "OVANCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95640814876, + 47.6291922295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "761046deb32896b6d560b1f9d95fa238de818555", + "fields": { + "code_commune_insee": "57398", + "nom_de_la_commune": "LEYVILLER", + "code_postal": "57660", + "coordonnees_gps": [ + 49.0291320953, + 6.84156436895 + ], + "libelle_d_acheminement": "LEYVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84156436895, + 49.0291320953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d22534174ef4cf643d164a2cf8f1a9101b3d1194", + "fields": { + "ligne_5": "GREUCOURT", + "code_commune_insee": "70418", + "libelle_d_acheminement": "LA ROMAINE", + "code_postal": "70130", + "nom_de_la_commune": "LA ROMAINE", + "coordonnees_gps": [ + 47.5374721676, + 5.92263244824 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92263244824, + 47.5374721676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b835d4c63dede5f76e0385b79e2a8b703a5e83b", + "fields": { + "code_commune_insee": "57403", + "nom_de_la_commune": "LIEHON", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9937891686, + 6.26047269459 + ], + "libelle_d_acheminement": "LIEHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26047269459, + 48.9937891686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c18ce80e0303fbb7a0defef0901843bf4ed6f20", + "fields": { + "code_commune_insee": "70438", + "nom_de_la_commune": "RAY SUR SAONE", + "code_postal": "70130", + "coordonnees_gps": [ + 47.5911466767, + 5.81525402096 + ], + "libelle_d_acheminement": "RAY SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81525402096, + 47.5911466767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b55cf851e868f994e1b51600ee479039bcfbdd6c", + "fields": { + "code_commune_insee": "57411", + "nom_de_la_commune": "LOMMERANGE", + "code_postal": "57650", + "coordonnees_gps": [ + 49.3284282334, + 5.97092420783 + ], + "libelle_d_acheminement": "LOMMERANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.97092420783, + 49.3284282334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c10c186c3c4167b80087f65b9def402fd5288db4", + "fields": { + "code_commune_insee": "70441", + "nom_de_la_commune": "RECOLOGNE LES RIOZ", + "code_postal": "70190", + "coordonnees_gps": [ + 47.4687979671, + 5.98297924025 + ], + "libelle_d_acheminement": "RECOLOGNE LES RIOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98297924025, + 47.4687979671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abed578e2c86738639fbf0aec5e46b9a5fb5fec5", + "fields": { + "code_commune_insee": "57412", + "nom_de_la_commune": "LONGEVILLE LES METZ", + "code_postal": "57050", + "coordonnees_gps": [ + 49.1148867103, + 6.14655128172 + ], + "libelle_d_acheminement": "LONGEVILLE LES METZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14655128172, + 49.1148867103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c54a7ff575b72118114116c534c61d975da65233", + "fields": { + "code_commune_insee": "70442", + "nom_de_la_commune": "RENAUCOURT", + "code_postal": "70120", + "coordonnees_gps": [ + 47.6413769838, + 5.76341402671 + ], + "libelle_d_acheminement": "RENAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76341402671, + 47.6413769838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f89966ec9187209fe1c87c069bc452aff243fb4", + "fields": { + "code_commune_insee": "57419", + "nom_de_la_commune": "LOUPERSHOUSE", + "code_postal": "57510", + "coordonnees_gps": [ + 49.0806819852, + 6.91513594257 + ], + "libelle_d_acheminement": "LOUPERSHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91513594257, + 49.0806819852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf0be99c06a8348eae08a08c4e643a216a105087", + "fields": { + "code_commune_insee": "70444", + "nom_de_la_commune": "LA RESIE ST MARTIN", + "code_postal": "70140", + "coordonnees_gps": [ + 47.3107496034, + 5.60845314626 + ], + "libelle_d_acheminement": "LA RESIE ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60845314626, + 47.3107496034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43b942650eb38bf14c8df8606e5f43f9fbedc8b6", + "fields": { + "code_commune_insee": "57425", + "nom_de_la_commune": "LUPPY", + "code_postal": "57580", + "coordonnees_gps": [ + 48.9807860499, + 6.34093701448 + ], + "libelle_d_acheminement": "LUPPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34093701448, + 48.9807860499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f51ffc7ba9f6dbd5b2d51c3336cf65788631476", + "fields": { + "code_commune_insee": "70446", + "nom_de_la_commune": "RIGNY", + "code_postal": "70100", + "coordonnees_gps": [ + 47.477791361, + 5.63330799933 + ], + "libelle_d_acheminement": "RIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63330799933, + 47.477791361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb91e72af601780554d58401c55763ae1253a1c5", + "fields": { + "code_commune_insee": "57426", + "nom_de_la_commune": "LUTTANGE", + "code_postal": "57935", + "coordonnees_gps": [ + 49.273930831, + 6.29636780272 + ], + "libelle_d_acheminement": "LUTTANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29636780272, + 49.273930831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2d095d835cc0b48c86cd448107c7b91cae5bab6", + "fields": { + "code_commune_insee": "70448", + "nom_de_la_commune": "ROCHE ET RAUCOURT", + "code_postal": "70180", + "coordonnees_gps": [ + 47.6209655043, + 5.70623198676 + ], + "libelle_d_acheminement": "ROCHE ET RAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70623198676, + 47.6209655043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d7eabe396e2c1933dbd7ed08401a6c709f8a328", + "fields": { + "code_commune_insee": "57428", + "nom_de_la_commune": "MACHEREN", + "code_postal": "57730", + "coordonnees_gps": [ + 49.0948492367, + 6.76865484007 + ], + "libelle_d_acheminement": "MACHEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76865484007, + 49.0948492367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2b1b060d0128282ef3a062f543b3bd3b0d9a4fa", + "fields": { + "code_commune_insee": "70449", + "nom_de_la_commune": "ROCHE LINOTTE ET SORANS CORDIERS", + "code_postal": "70230", + "coordonnees_gps": [ + 47.4753768003, + 6.19694981804 + ], + "libelle_d_acheminement": "ROCHE LINOTTE ET SORANS CORDIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19694981804, + 47.4753768003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9177c924fc10f53f5831946e434aedaf9922a6b8", + "fields": { + "code_commune_insee": "57440", + "nom_de_la_commune": "MANHOUE", + "code_postal": "57590", + "coordonnees_gps": [ + 48.8266822397, + 6.34120837788 + ], + "libelle_d_acheminement": "MANHOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34120837788, + 48.8266822397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "896574f3de3d41985d993c92e0152383cdda9f2c", + "fields": { + "code_commune_insee": "70455", + "nom_de_la_commune": "ROYE", + "code_postal": "70200", + "coordonnees_gps": [ + 47.6771506136, + 6.5417073316 + ], + "libelle_d_acheminement": "ROYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5417073316, + 47.6771506136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdfd191dd1f6f310b8cd5af1d2d1814e2b208bc1", + "fields": { + "code_commune_insee": "57444", + "nom_de_la_commune": "MARANGE ZONDRANGE", + "code_postal": "57690", + "coordonnees_gps": [ + 49.1161517101, + 6.52943965948 + ], + "libelle_d_acheminement": "MARANGE ZONDRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52943965948, + 49.1161517101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be3bcafa75b402a92d1511603abc88df44a0fb34", + "fields": { + "code_commune_insee": "70462", + "nom_de_la_commune": "ST FERJEUX", + "code_postal": "70110", + "coordonnees_gps": [ + 47.5457392836, + 6.50713066482 + ], + "libelle_d_acheminement": "ST FERJEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50713066482, + 47.5457392836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3ffa83c0ec216a72362e92d9b8cf061ec0b48e7", + "fields": { + "code_commune_insee": "57447", + "nom_de_la_commune": "MARLY", + "code_postal": "57155", + "coordonnees_gps": [ + 49.0658509672, + 6.15231485365 + ], + "libelle_d_acheminement": "MARLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15231485365, + 49.0658509672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e18d8ac2f765de4a09a19cd3a4fd108442d3184a", + "fields": { + "code_commune_insee": "70464", + "nom_de_la_commune": "ST GERMAIN", + "code_postal": "70200", + "coordonnees_gps": [ + 47.7246175208, + 6.51957770989 + ], + "libelle_d_acheminement": "ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51957770989, + 47.7246175208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "794ac37cba0e3c09af5ef9e4728130a3f5ca8d7c", + "fields": { + "code_commune_insee": "57451", + "nom_de_la_commune": "MARTHILLE", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9295898959, + 6.55903279348 + ], + "libelle_d_acheminement": "MARTHILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55903279348, + 48.9295898959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db418effb4787f9fbee5ac1c79ec68bc9c9456fa", + "fields": { + "code_commune_insee": "70469", + "nom_de_la_commune": "STE MARIE EN CHANOIS", + "code_postal": "70310", + "coordonnees_gps": [ + 47.8381487494, + 6.52006378078 + ], + "libelle_d_acheminement": "STE MARIE EN CHANOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52006378078, + 47.8381487494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b92142e7b8a940c2bb4c3ddc42983bd3a8bc7e03", + "fields": { + "code_commune_insee": "57455", + "nom_de_la_commune": "MEGANGE", + "code_postal": "57220", + "coordonnees_gps": [ + 49.2240160777, + 6.43649768125 + ], + "libelle_d_acheminement": "MEGANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43649768125, + 49.2240160777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d24d1fce3c784249aeb87a993fe29d037383c733", + "fields": { + "code_commune_insee": "70470", + "nom_de_la_commune": "STE MARIE EN CHAUX", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7964768334, + 6.29978833276 + ], + "libelle_d_acheminement": "STE MARIE EN CHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29978833276, + 47.7964768334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6ff51cc3bfb389c97b6aa6c4ee0da97c285d438", + "fields": { + "code_commune_insee": "57459", + "nom_de_la_commune": "MERSCHWEILLER", + "code_postal": "57480", + "coordonnees_gps": [ + 49.4611026921, + 6.41621024861 + ], + "libelle_d_acheminement": "MERSCHWEILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41621024861, + 49.4611026921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1930b7fcda2ceb70aa73bce6e134664258788655", + "fields": { + "code_commune_insee": "70471", + "nom_de_la_commune": "STE REINE", + "code_postal": "70700", + "coordonnees_gps": [ + 47.5000576886, + 5.77812589576 + ], + "libelle_d_acheminement": "STE REINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77812589576, + 47.5000576886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afa793b6d6d917ed9546b7ba86d0019e8ea0df95", + "fields": { + "code_commune_insee": "57467", + "nom_de_la_commune": "MEY", + "code_postal": "57070", + "coordonnees_gps": [ + 49.1370275752, + 6.24143707513 + ], + "libelle_d_acheminement": "MEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24143707513, + 49.1370275752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83aca364c6c9fc364c455ccd3ecbde6319be742b", + "fields": { + "code_commune_insee": "70472", + "nom_de_la_commune": "ST REMY EN COMTE", + "code_postal": "70160", + "coordonnees_gps": [ + 47.8375769959, + 6.10898257377 + ], + "libelle_d_acheminement": "ST REMY EN COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10898257377, + 47.8375769959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "201de071cde4a316715c5051bc63ee049e9e967c", + "fields": { + "code_commune_insee": "57468", + "nom_de_la_commune": "MITTELBRONN", + "code_postal": "57370", + "coordonnees_gps": [ + 48.7652819916, + 7.22614305425 + ], + "libelle_d_acheminement": "MITTELBRONN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22614305425, + 48.7652819916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f66bb368cd5ea0ad29b418e81f5c13c7388537b", + "fields": { + "code_commune_insee": "70473", + "nom_de_la_commune": "ST SAUVEUR", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7954572386, + 6.39510352305 + ], + "libelle_d_acheminement": "ST SAUVEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39510352305, + 47.7954572386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6eba784ec756253020056b6f291361f7476b4d9a", + "fields": { + "code_commune_insee": "57472", + "nom_de_la_commune": "MONCHEUX", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9466807174, + 6.33617668606 + ], + "libelle_d_acheminement": "MONCHEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33617668606, + 48.9466807174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ed6e74fa0d38786f15eb793f803455900645763", + "fields": { + "code_commune_insee": "70476", + "nom_de_la_commune": "SAPONCOURT", + "code_postal": "70210", + "coordonnees_gps": [ + 47.8694358214, + 6.01884561838 + ], + "libelle_d_acheminement": "SAPONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01884561838, + 47.8694358214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "684151d28e2cd5011e1e0c60783f3ca7026a79bf", + "fields": { + "code_commune_insee": "57473", + "nom_de_la_commune": "MONCOURT", + "code_postal": "57810", + "coordonnees_gps": [ + 48.7177111982, + 6.64038481874 + ], + "libelle_d_acheminement": "MONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64038481874, + 48.7177111982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e6099fcac845e8e2a89b3a73c32c0187c39d8ee", + "fields": { + "ligne_5": "GONVILLARS", + "code_commune_insee": "70477", + "libelle_d_acheminement": "SAULNOT", + "code_postal": "70400", + "nom_de_la_commune": "SAULNOT", + "coordonnees_gps": [ + 47.5703099756, + 6.62953525499 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.62953525499, + 47.5703099756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4c2dc5311cfea340997d7641cea82bb7eaa213c", + "fields": { + "code_commune_insee": "57480", + "nom_de_la_commune": "MONTIGNY LES METZ", + "code_postal": "57950", + "coordonnees_gps": [ + 49.0953199106, + 6.15452599506 + ], + "libelle_d_acheminement": "MONTIGNY LES METZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15452599506, + 49.0953199106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f187bccc530b3ea311b6ac70f4268acc3c9e4c12", + "fields": { + "code_commune_insee": "70480", + "nom_de_la_commune": "SAUVIGNEY LES PESMES", + "code_postal": "70140", + "coordonnees_gps": [ + 47.3068166664, + 5.56895996428 + ], + "libelle_d_acheminement": "SAUVIGNEY LES PESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.56895996428, + 47.3068166664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b7b8ec802cf9362ad2e33bb030fd58ec60e6356", + "fields": { + "code_commune_insee": "57484", + "nom_de_la_commune": "MORSBACH", + "code_postal": "57600", + "coordonnees_gps": [ + 49.167360465, + 6.86659002983 + ], + "libelle_d_acheminement": "MORSBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86659002983, + 49.167360465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f58fca87dc44102b52f7c1c60c2ba967f09f36f", + "fields": { + "ligne_5": "MIGNAFANS", + "code_commune_insee": "70487", + "libelle_d_acheminement": "SENARGENT MIGNAFANS", + "code_postal": "70110", + "nom_de_la_commune": "SENARGENT MIGNAFANS", + "coordonnees_gps": [ + 47.5662742905, + 6.52981736725 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52981736725, + 47.5662742905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2df2dfcf5155d1ac0e7a85d4b5e82d7c995cda7b", + "fields": { + "ligne_5": "MOULINS ST PIERRE", + "code_commune_insee": "57487", + "libelle_d_acheminement": "MOULINS LES METZ", + "code_postal": "57160", + "nom_de_la_commune": "MOULINS LES METZ", + "coordonnees_gps": [ + 49.0926450491, + 6.11852525419 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11852525419, + 49.0926450491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0ff76e2afe4007dbf18fef9361b3301b88a1342", + "fields": { + "ligne_5": "SERVANCE", + "code_commune_insee": "70489", + "libelle_d_acheminement": "SERVANCE MIELLIN", + "code_postal": "70440", + "nom_de_la_commune": "SERVANCE MIELLIN", + "coordonnees_gps": [ + 47.8257288068, + 6.68597884501 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68597884501, + 47.8257288068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4263335efaed354226e49365c7370914837ffad1", + "fields": { + "code_commune_insee": "57491", + "nom_de_la_commune": "MOYEUVRE GRANDE", + "code_postal": "57250", + "coordonnees_gps": [ + 49.2539723138, + 6.0371285867 + ], + "libelle_d_acheminement": "MOYEUVRE GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0371285867, + 49.2539723138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79156e8e6c164ea933da4501ba55cebac82af903", + "fields": { + "ligne_5": "MOTEY SUR SAONE", + "code_commune_insee": "70491", + "libelle_d_acheminement": "SEVEUX MOTEY", + "code_postal": "70130", + "nom_de_la_commune": "SEVEUX MOTEY", + "coordonnees_gps": [ + 47.5359774659, + 5.76901424234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76901424234, + 47.5359774659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d82aa0493a550f6117530089782cb5e3e8fe393", + "fields": { + "code_commune_insee": "57496", + "nom_de_la_commune": "NEBING", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9088397612, + 6.81421395642 + ], + "libelle_d_acheminement": "NEBING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81421395642, + 48.9088397612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60ee4c302130c75b2ccc23b21a5add4086b2ebe1", + "fields": { + "ligne_5": "CUBRY LES SOING", + "code_commune_insee": "70492", + "libelle_d_acheminement": "SOING CUBRY CHARENTENAY", + "code_postal": "70130", + "nom_de_la_commune": "SOING CUBRY CHARENTENAY", + "coordonnees_gps": [ + 47.5851238509, + 5.88891675749 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88891675749, + 47.5851238509 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5477e2514a88d53e6be972e371c9251a89ee923e", + "fields": { + "code_commune_insee": "57528", + "nom_de_la_commune": "ORON", + "code_postal": "57590", + "coordonnees_gps": [ + 48.901762397, + 6.48569334216 + ], + "libelle_d_acheminement": "ORON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48569334216, + 48.901762397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b02ffaa71f36bc957a50ffcb4fbbfeaa80eebf34", + "fields": { + "code_commune_insee": "70498", + "nom_de_la_commune": "TERNUAY MELAY ET ST HILAIRE", + "code_postal": "70270", + "coordonnees_gps": [ + 47.7961623597, + 6.6326445002 + ], + "libelle_d_acheminement": "TERNUAY MELAY ET ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6326445002, + 47.7961623597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b70beab1a009c43872f5e8b26440f8dc348f1837", + "fields": { + "code_commune_insee": "57531", + "nom_de_la_commune": "OUDRENNE", + "code_postal": "57970", + "coordonnees_gps": [ + 49.3702144479, + 6.34830971112 + ], + "libelle_d_acheminement": "OUDRENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34830971112, + 49.3702144479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1af8f03d3d90c93395ce06e6e5d6aec9496d23a", + "fields": { + "code_commune_insee": "70500", + "nom_de_la_commune": "THIEFFRANS", + "code_postal": "70230", + "coordonnees_gps": [ + 47.5068100716, + 6.30413332639 + ], + "libelle_d_acheminement": "THIEFFRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30413332639, + 47.5068100716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "933c45886e06d30ce0008894ffb285d39f3bbb78", + "fields": { + "code_commune_insee": "57540", + "nom_de_la_commune": "PHALSBOURG", + "code_postal": "57370", + "coordonnees_gps": [ + 48.7666597988, + 7.26359977418 + ], + "libelle_d_acheminement": "PHALSBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26359977418, + 48.7666597988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce97389f322ec53e6075ee39e9077b97fb60acdc", + "fields": { + "code_commune_insee": "70509", + "nom_de_la_commune": "TROMAREY", + "code_postal": "70150", + "coordonnees_gps": [ + 47.3358125625, + 5.72291943926 + ], + "libelle_d_acheminement": "TROMAREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72291943926, + 47.3358125625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee64a10089a6b9b19f124dfa046fea27b058b948", + "fields": { + "code_commune_insee": "57551", + "nom_de_la_commune": "POSTROFF", + "code_postal": "57930", + "coordonnees_gps": [ + 48.8550589623, + 7.07472849238 + ], + "libelle_d_acheminement": "POSTROFF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07472849238, + 48.8550589623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb9a6a498c7f10a28756da4011b915e0e25e8f79", + "fields": { + "code_commune_insee": "70512", + "nom_de_la_commune": "LA VAIVRE", + "code_postal": "70320", + "coordonnees_gps": [ + 47.9132600992, + 6.36701482318 + ], + "libelle_d_acheminement": "LA VAIVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36701482318, + 47.9132600992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05ef10f0766e0b0910dbfab748b572cf76887762", + "fields": { + "code_commune_insee": "57553", + "nom_de_la_commune": "POURNOY LA CHETIVE", + "code_postal": "57420", + "coordonnees_gps": [ + 49.0189061997, + 6.15388727432 + ], + "libelle_d_acheminement": "POURNOY LA CHETIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15388727432, + 49.0189061997 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b01f3bc1727e810a19c76209898f3eab3e74816", + "fields": { + "code_commune_insee": "70517", + "nom_de_la_commune": "VALLEROIS LORIOZ", + "code_postal": "70000", + "coordonnees_gps": [ + 47.565277669, + 6.15445387283 + ], + "libelle_d_acheminement": "VALLEROIS LORIOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15445387283, + 47.565277669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa0982219bf0e875d880c1a989fda6b2e66fafaa", + "fields": { + "code_commune_insee": "57554", + "nom_de_la_commune": "POURNOY LA GRASSE", + "code_postal": "57420", + "coordonnees_gps": [ + 49.0149430341, + 6.20651616481 + ], + "libelle_d_acheminement": "POURNOY LA GRASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20651616481, + 49.0149430341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f60e3f954531b1cd7c4022f4bf1a1ce7fa2f835", + "fields": { + "code_commune_insee": "70534", + "nom_de_la_commune": "VELLEFRIE", + "code_postal": "70240", + "coordonnees_gps": [ + 47.7022975155, + 6.22137740616 + ], + "libelle_d_acheminement": "VELLEFRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22137740616, + 47.7022975155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64e748809b332b4b272905c52302a335a5b12add", + "fields": { + "code_commune_insee": "57556", + "nom_de_la_commune": "PUTTELANGE AUX LACS", + "code_postal": "57510", + "coordonnees_gps": [ + 49.0535036691, + 6.918414517 + ], + "libelle_d_acheminement": "PUTTELANGE AUX LACS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.918414517, + 49.0535036691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "506e1e5ec54e435149aab77aab4a3eaf1909aab5", + "fields": { + "code_commune_insee": "70539", + "nom_de_la_commune": "VELLEXON QUEUTREY ET VAUDEY", + "code_postal": "70130", + "coordonnees_gps": [ + 47.5502350367, + 5.80894856908 + ], + "libelle_d_acheminement": "VELLEXON QUEUTREY ET VAUDEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80894856908, + 47.5502350367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af1d36142a899489714907b7c47b7d092a9b7786", + "fields": { + "code_commune_insee": "57558", + "nom_de_la_commune": "PUTTIGNY", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8438614892, + 6.54858910646 + ], + "libelle_d_acheminement": "PUTTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54858910646, + 48.8438614892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32b5881abc141c47535cbff380c3cd104cc537dd", + "fields": { + "code_commune_insee": "70541", + "nom_de_la_commune": "VELORCEY", + "code_postal": "70300", + "coordonnees_gps": [ + 47.7857581021, + 6.25028247897 + ], + "libelle_d_acheminement": "VELORCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25028247897, + 47.7857581021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea29f17670cef968cf4162846eb8dda14fb2d4ad", + "fields": { + "code_commune_insee": "57565", + "nom_de_la_commune": "REDANGE", + "code_postal": "57390", + "coordonnees_gps": [ + 49.4918573457, + 5.91621437506 + ], + "libelle_d_acheminement": "REDANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91621437506, + 49.4918573457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc9ee3d867962a05f8971643201e005997198690", + "fields": { + "code_commune_insee": "70546", + "nom_de_la_commune": "VEREUX", + "code_postal": "70180", + "coordonnees_gps": [ + 47.5272015799, + 5.63819879272 + ], + "libelle_d_acheminement": "VEREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.63819879272, + 47.5272015799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d5483ef01aed2cc4e3f3bb9c9d058500781e52a", + "fields": { + "code_commune_insee": "57566", + "nom_de_la_commune": "REDING", + "code_postal": "57445", + "coordonnees_gps": [ + 48.7496589563, + 7.104580252 + ], + "libelle_d_acheminement": "REDING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.104580252, + 48.7496589563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f0cdfd3af66ebbb8228bb259801faddc897d83b", + "fields": { + "code_commune_insee": "70561", + "nom_de_la_commune": "VILLERSEXEL", + "code_postal": "70110", + "coordonnees_gps": [ + 47.559065822, + 6.42909523129 + ], + "libelle_d_acheminement": "VILLERSEXEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42909523129, + 47.559065822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "078aa70bbae3bee9fb91863f0a4dd4dc3f1b9fc2", + "fields": { + "code_commune_insee": "57568", + "nom_de_la_commune": "REMELFING", + "code_postal": "57200", + "coordonnees_gps": [ + 49.089310055, + 7.08571672709 + ], + "libelle_d_acheminement": "REMELFING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08571672709, + 49.089310055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49d41df2d5d279baf5ebe17b6af611409a1c7a56", + "fields": { + "code_commune_insee": "70573", + "nom_de_la_commune": "LA VOIVRE", + "code_postal": "70310", + "coordonnees_gps": [ + 47.8185555868, + 6.55480377432 + ], + "libelle_d_acheminement": "LA VOIVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55480377432, + 47.8185555868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e932f3d3a7235363603e495befd5300caa835d29", + "fields": { + "code_commune_insee": "57572", + "nom_de_la_commune": "REMILLY", + "code_postal": "57580", + "coordonnees_gps": [ + 49.0067187571, + 6.38923213224 + ], + "libelle_d_acheminement": "REMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38923213224, + 49.0067187571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d68a15626b022164b10d8f5e4e72215080d70a61", + "fields": { + "code_commune_insee": "70575", + "nom_de_la_commune": "VORAY SUR L OGNON", + "code_postal": "70190", + "coordonnees_gps": [ + 47.3499834337, + 6.01396560488 + ], + "libelle_d_acheminement": "VORAY SUR L OGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01396560488, + 47.3499834337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4cfca94a50439ed29fde3705626ea78e5593115", + "fields": { + "ligne_5": "VIONVILLE", + "code_commune_insee": "57578", + "libelle_d_acheminement": "REZONVILLE VIONVILLE", + "code_postal": "57130", + "nom_de_la_commune": "REZONVILLE VIONVILLE", + "coordonnees_gps": [ + 49.0899933152, + 5.98385942866 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98385942866, + 49.0899933152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a72c90533dc85c1ad424cb9a13ad1e2ef5221386", + "fields": { + "code_commune_insee": "70576", + "nom_de_la_commune": "VOUGECOURT", + "code_postal": "70500", + "coordonnees_gps": [ + 47.9447349937, + 5.9940682612 + ], + "libelle_d_acheminement": "VOUGECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9940682612, + 47.9447349937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b56e6c39f3959c7ce0cc1db3b1960738a79365dd", + "fields": { + "code_commune_insee": "57590", + "nom_de_la_commune": "ROLBING", + "code_postal": "57720", + "coordonnees_gps": [ + 49.1723630415, + 7.42210286068 + ], + "libelle_d_acheminement": "ROLBING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42210286068, + 49.1723630415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96dcf7ba637e829c7061aa722443c598a7bbc9b7", + "fields": { + "code_commune_insee": "70583", + "nom_de_la_commune": "VY LES FILAIN", + "code_postal": "70230", + "coordonnees_gps": [ + 47.5064123545, + 6.1953048468 + ], + "libelle_d_acheminement": "VY LES FILAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1953048468, + 47.5064123545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aad1f96e42eaa19c7232a9b22574c379a3c78b5a", + "fields": { + "code_commune_insee": "57592", + "nom_de_la_commune": "ROMELFING", + "code_postal": "57930", + "coordonnees_gps": [ + 48.8339571573, + 7.00575615826 + ], + "libelle_d_acheminement": "ROMELFING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00575615826, + 48.8339571573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9183bc248c8abd85de689681088232b4b0ce98a7", + "fields": { + "code_commune_insee": "71001", + "nom_de_la_commune": "L ABERGEMENT DE CUISERY", + "code_postal": "71290", + "coordonnees_gps": [ + 46.5775754985, + 4.96115611529 + ], + "libelle_d_acheminement": "L ABERGEMENT DE CUISERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96115611529, + 46.5775754985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f1da185c2dcf1666ead21e02a4929edd9323516", + "fields": { + "code_commune_insee": "57601", + "nom_de_la_commune": "ROZERIEULLES", + "code_postal": "57160", + "coordonnees_gps": [ + 49.1190149736, + 6.05282881166 + ], + "libelle_d_acheminement": "ROZERIEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05282881166, + 49.1190149736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5940470b81f531a4a547fc18b38470e708e5e909", + "fields": { + "code_commune_insee": "71005", + "nom_de_la_commune": "ALUZE", + "code_postal": "71510", + "coordonnees_gps": [ + 46.8518515249, + 4.6901351827 + ], + "libelle_d_acheminement": "ALUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6901351827, + 46.8518515249 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d367e7423ac95ed2ce3d7929b547176ee2b41cd", + "fields": { + "code_commune_insee": "57607", + "nom_de_la_commune": "STE BARBE", + "code_postal": "57640", + "coordonnees_gps": [ + 49.1628017297, + 6.31827843912 + ], + "libelle_d_acheminement": "STE BARBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31827843912, + 49.1628017297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f91c28ea81cba0c2217be5536d0bad355f92e88", + "fields": { + "code_commune_insee": "71006", + "nom_de_la_commune": "AMANZE", + "code_postal": "71800", + "coordonnees_gps": [ + 46.3264716768, + 4.23626914802 + ], + "libelle_d_acheminement": "AMANZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23626914802, + 46.3264716768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eeb810090e136841065af8b00da94fec5f91868", + "fields": { + "code_commune_insee": "57610", + "nom_de_la_commune": "ST FRANCOIS LACROIX", + "code_postal": "57320", + "coordonnees_gps": [ + 49.3461045283, + 6.44828141175 + ], + "libelle_d_acheminement": "ST FRANCOIS LACROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44828141175, + 49.3461045283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e6aaceb4487fd5753194328a0d76746f92ef1d8", + "fields": { + "code_commune_insee": "71011", + "nom_de_la_commune": "ANZY LE DUC", + "code_postal": "71110", + "coordonnees_gps": [ + 46.3239156269, + 4.07162173983 + ], + "libelle_d_acheminement": "ANZY LE DUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07162173983, + 46.3239156269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fa1157aab4ebcb641f2b9019bb305106d018ebd", + "fields": { + "code_commune_insee": "57612", + "nom_de_la_commune": "ST HUBERT", + "code_postal": "57640", + "coordonnees_gps": [ + 49.2309333716, + 6.36179933256 + ], + "libelle_d_acheminement": "ST HUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36179933256, + 49.2309333716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73844a9110f0f9c81913524b7c3e6f4899dfacca", + "fields": { + "code_commune_insee": "71012", + "nom_de_la_commune": "ARTAIX", + "code_postal": "71110", + "coordonnees_gps": [ + 46.2492375573, + 3.99353976024 + ], + "libelle_d_acheminement": "ARTAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99353976024, + 46.2492375573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77e33fbbc173968751c263b5b954dfa8afab93aa", + "fields": { + "code_commune_insee": "57616", + "nom_de_la_commune": "ST JULIEN LES METZ", + "code_postal": "57070", + "coordonnees_gps": [ + 49.1398497812, + 6.2087377953 + ], + "libelle_d_acheminement": "ST JULIEN LES METZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2087377953, + 49.1398497812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4efd181d459e5e9626b198f6ffbc9808e3658df", + "fields": { + "code_commune_insee": "71021", + "nom_de_la_commune": "BARON", + "code_postal": "71120", + "coordonnees_gps": [ + 46.4934149552, + 4.28185595803 + ], + "libelle_d_acheminement": "BARON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28185595803, + 46.4934149552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a732be189bce30ae39c3537e34291562f8771d1", + "fields": { + "code_commune_insee": "57625", + "nom_de_la_commune": "SALONNES", + "code_postal": "57170", + "coordonnees_gps": [ + 48.7893695962, + 6.49332298181 + ], + "libelle_d_acheminement": "SALONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49332298181, + 48.7893695962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5c4063d0378f78ba94592586f3450f11d673d45", + "fields": { + "code_commune_insee": "71025", + "nom_de_la_commune": "BEAUBERY", + "code_postal": "71220", + "coordonnees_gps": [ + 46.4104723077, + 4.39542233391 + ], + "libelle_d_acheminement": "BEAUBERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39542233391, + 46.4104723077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee2dd86b16bdaa7970e31f7218c1653f0498d66d", + "fields": { + "code_commune_insee": "57631", + "nom_de_la_commune": "SARREGUEMINES", + "code_postal": "57200", + "coordonnees_gps": [ + 49.1088144102, + 7.06943100683 + ], + "libelle_d_acheminement": "SARREGUEMINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06943100683, + 49.1088144102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21feadf546fb9b1772f60eba00d801efdc6dc023", + "fields": { + "code_commune_insee": "71026", + "nom_de_la_commune": "BEAUMONT SUR GROSNE", + "code_postal": "71240", + "coordonnees_gps": [ + 46.6692532687, + 4.86174711968 + ], + "libelle_d_acheminement": "BEAUMONT SUR GROSNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.86174711968, + 46.6692532687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60a852a3abf521289fb96f411e5f9de0b11d746d", + "fields": { + "ligne_5": "FOLPERSVILLER", + "code_commune_insee": "57631", + "libelle_d_acheminement": "SARREGUEMINES", + "code_postal": "57200", + "nom_de_la_commune": "SARREGUEMINES", + "coordonnees_gps": [ + 49.1088144102, + 7.06943100683 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06943100683, + 49.1088144102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89e658c6abeb62a0b620286b9eb60bcff9b5bccb", + "fields": { + "code_commune_insee": "71029", + "nom_de_la_commune": "BELLEVESVRE", + "code_postal": "71270", + "coordonnees_gps": [ + 46.8484271655, + 5.36394090745 + ], + "libelle_d_acheminement": "BELLEVESVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36394090745, + 46.8484271655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fea8b297e21ea4ebc9f84d942f203c46f8fc597f", + "fields": { + "code_commune_insee": "71037", + "nom_de_la_commune": "BISSY SUR FLEY", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6633352989, + 4.6213986546 + ], + "libelle_d_acheminement": "BISSY SUR FLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6213986546, + 46.6633352989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fd76ee6a97077d1f06baa2b8aa4f1ae67884959e", + "fields": { + "code_commune_insee": "71045", + "nom_de_la_commune": "BOUHANS", + "code_postal": "71330", + "coordonnees_gps": [ + 46.7772891552, + 5.29235408701 + ], + "libelle_d_acheminement": "BOUHANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29235408701, + 46.7772891552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28aff58cdc58aefd7dab82c34e7fe38551f9016c", + "fields": { + "code_commune_insee": "71047", + "nom_de_la_commune": "BOURBON LANCY", + "code_postal": "71140", + "coordonnees_gps": [ + 46.6204280383, + 3.76862021355 + ], + "libelle_d_acheminement": "BOURBON LANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76862021355, + 46.6204280383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e63a1d2fc2ed1ef1692e870543c0f43114aaf579", + "fields": { + "code_commune_insee": "71054", + "nom_de_la_commune": "BRAGNY SUR SAONE", + "code_postal": "71350", + "coordonnees_gps": [ + 46.9213828915, + 5.03177576974 + ], + "libelle_d_acheminement": "BRAGNY SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.03177576974, + 46.9213828915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41a9e492964517a5502b1644eb8c1bd537fa420d", + "fields": { + "code_commune_insee": "71059", + "nom_de_la_commune": "LE BREUIL", + "code_postal": "71670", + "coordonnees_gps": [ + 46.7952744773, + 4.49374098192 + ], + "libelle_d_acheminement": "LE BREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49374098192, + 46.7952744773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "721623128a875e3864f78837d5e03715fbc1adc6", + "fields": { + "code_commune_insee": "71065", + "nom_de_la_commune": "BUFFIERES", + "code_postal": "71250", + "coordonnees_gps": [ + 46.4294911714, + 4.53776264069 + ], + "libelle_d_acheminement": "BUFFIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53776264069, + 46.4294911714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0487a4d65b5e612a153dbecb1edec110b33208d2", + "fields": { + "code_commune_insee": "71066", + "nom_de_la_commune": "BURGY", + "code_postal": "71260", + "coordonnees_gps": [ + 46.4641123942, + 4.83082154067 + ], + "libelle_d_acheminement": "BURGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83082154067, + 46.4641123942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8501611779f2fa80a0eff9609ad09856de2af65", + "fields": { + "code_commune_insee": "71068", + "nom_de_la_commune": "BURZY", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5949751474, + 4.58580654162 + ], + "libelle_d_acheminement": "BURZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58580654162, + 46.5949751474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67c3ea7522d6dbc8a045ba185cfe32142a66fcfb", + "fields": { + "code_commune_insee": "71073", + "nom_de_la_commune": "CHAGNY", + "code_postal": "71150", + "coordonnees_gps": [ + 46.8985800984, + 4.77433585145 + ], + "libelle_d_acheminement": "CHAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77433585145, + 46.8985800984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "840b0ae93625b3d53130a80ba47c1a9f87b61b5b", + "fields": { + "code_commune_insee": "71075", + "nom_de_la_commune": "CHALMOUX", + "code_postal": "71140", + "coordonnees_gps": [ + 46.5936710904, + 3.85215646789 + ], + "libelle_d_acheminement": "CHALMOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.85215646789, + 46.5936710904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6e3223872b9dfe201759d84bd049ef4b22f8820", + "fields": { + "code_commune_insee": "71077", + "nom_de_la_commune": "CHAMBILLY", + "code_postal": "71110", + "coordonnees_gps": [ + 46.2825163052, + 3.99815426784 + ], + "libelle_d_acheminement": "CHAMBILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99815426784, + 46.2825163052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71bd7d9aea54e7fcd9ff58063966bb4e046db22c", + "fields": { + "code_commune_insee": "71078", + "nom_de_la_commune": "CHAMILLY", + "code_postal": "71510", + "coordonnees_gps": [ + 46.8667282501, + 4.68139596476 + ], + "libelle_d_acheminement": "CHAMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68139596476, + 46.8667282501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34d97637ab1a7ec76daac31cd4dfbafe38732ffc", + "fields": { + "code_commune_insee": "71085", + "nom_de_la_commune": "CHANGE", + "code_postal": "21340", + "coordonnees_gps": [ + 46.9307644453, + 4.62818331108 + ], + "libelle_d_acheminement": "CHANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62818331108, + 46.9307644453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a032cc9a206fe7b2a4f1fc032410531477a260cc", + "fields": { + "code_commune_insee": "71091", + "nom_de_la_commune": "LA CHAPELLE DU MONT DE FRANCE", + "code_postal": "71520", + "coordonnees_gps": [ + 46.3814725305, + 4.54090737962 + ], + "libelle_d_acheminement": "LA CHAPELLE DU MONT DE FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54090737962, + 46.3814725305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d461a74dc3d093c07e6c79f63c82588e3d472b75", + "fields": { + "code_commune_insee": "71106", + "nom_de_la_commune": "CHAROLLES", + "code_postal": "71120", + "coordonnees_gps": [ + 46.4476067658, + 4.28009429694 + ], + "libelle_d_acheminement": "CHAROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.28009429694, + 46.4476067658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8472b9875da9cde7bea6f7944387686df56bab0", + "fields": { + "code_commune_insee": "71120", + "nom_de_la_commune": "CHAUFFAILLES", + "code_postal": "71170", + "coordonnees_gps": [ + 46.2065828065, + 4.34173989083 + ], + "libelle_d_acheminement": "CHAUFFAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34173989083, + 46.2065828065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80a62b7492ef152cbdbf8b9b7c611d577722a982", + "fields": { + "code_commune_insee": "71132", + "nom_de_la_commune": "CIRY LE NOBLE", + "code_postal": "71420", + "coordonnees_gps": [ + 46.5966175845, + 4.2978619831 + ], + "libelle_d_acheminement": "CIRY LE NOBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2978619831, + 46.5966175845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21c4a957a633bb067eaa3e06358d6fcfb57c80ea", + "fields": { + "ligne_5": "CLERMAIN", + "code_commune_insee": "71134", + "libelle_d_acheminement": "NAVOUR SUR GROSNE", + "code_postal": "71520", + "nom_de_la_commune": "NAVOUR SUR GROSNE", + "coordonnees_gps": [ + 46.3661832627, + 4.58968637273 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58968637273, + 46.3661832627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef8276bf2a404e85e28ba8e80d00c345f67686d6", + "fields": { + "code_commune_insee": "71137", + "nom_de_la_commune": "CLUNY", + "code_postal": "71250", + "coordonnees_gps": [ + 46.4303628582, + 4.67033276327 + ], + "libelle_d_acheminement": "CLUNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67033276327, + 46.4303628582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74d4adbd374d0e81a8cb722639c6aa49d3b55216", + "fields": { + "code_commune_insee": "71147", + "nom_de_la_commune": "CORTEVAIX", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5281488272, + 4.64137291939 + ], + "libelle_d_acheminement": "CORTEVAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64137291939, + 46.5281488272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "202bd0658d37a21ea1cdf044b21c4f4f016cfe43", + "fields": { + "code_commune_insee": "71149", + "nom_de_la_commune": "COUCHES", + "code_postal": "71490", + "coordonnees_gps": [ + 46.869155076, + 4.56431598435 + ], + "libelle_d_acheminement": "COUCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56431598435, + 46.869155076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea712f625c83989655fa6e66f8e932bb6f43a337", + "fields": { + "code_commune_insee": "71151", + "nom_de_la_commune": "CREOT", + "code_postal": "71490", + "coordonnees_gps": [ + 46.9169195884, + 4.61189688029 + ], + "libelle_d_acheminement": "CREOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61189688029, + 46.9169195884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a83adffc4839a2a9639fc23bd7132b127bbab24f", + "fields": { + "code_commune_insee": "71170", + "nom_de_la_commune": "DEMIGNY", + "code_postal": "71150", + "coordonnees_gps": [ + 46.9145180669, + 4.84793098636 + ], + "libelle_d_acheminement": "DEMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84793098636, + 46.9145180669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e26ce481cf06c8ea2bf6d0fb39b0e4fdd010732", + "fields": { + "code_commune_insee": "71175", + "nom_de_la_commune": "DICONNE", + "code_postal": "71330", + "coordonnees_gps": [ + 46.7779978405, + 5.11904852026 + ], + "libelle_d_acheminement": "DICONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11904852026, + 46.7779978405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8a603233734ac16030aa4637aa1ba946bc884d2", + "fields": { + "code_commune_insee": "71177", + "nom_de_la_commune": "DOMMARTIN LES CUISEAUX", + "code_postal": "71480", + "coordonnees_gps": [ + 46.4998326659, + 5.28977666204 + ], + "libelle_d_acheminement": "DOMMARTIN LES CUISEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28977666204, + 46.4998326659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "887fc53e1cbb308ad303609a49b7d670f4779e5f", + "fields": { + "code_commune_insee": "71179", + "nom_de_la_commune": "DOMPIERRE SOUS SANVIGNES", + "code_postal": "71420", + "coordonnees_gps": [ + 46.6640724574, + 4.22501088032 + ], + "libelle_d_acheminement": "DOMPIERRE SOUS SANVIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22501088032, + 46.6640724574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da614a744d64c68667b83eaf6cd1fb5818e3e7ca", + "fields": { + "code_commune_insee": "71183", + "nom_de_la_commune": "DRACY LES COUCHES", + "code_postal": "71490", + "coordonnees_gps": [ + 46.8931291226, + 4.56630546473 + ], + "libelle_d_acheminement": "DRACY LES COUCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56630546473, + 46.8931291226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a1eaf67867b71b7f7ac8918cef05fdcf6486514", + "fields": { + "code_commune_insee": "71186", + "nom_de_la_commune": "ECUELLES", + "code_postal": "71350", + "coordonnees_gps": [ + 46.951371973, + 5.0701693 + ], + "libelle_d_acheminement": "ECUELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0701693, + 46.951371973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f108b325f99d448707e204c4e9e5863ce0399018", + "fields": { + "code_commune_insee": "71187", + "nom_de_la_commune": "ECUISSES", + "code_postal": "71210", + "coordonnees_gps": [ + 46.7558604047, + 4.52493211411 + ], + "libelle_d_acheminement": "ECUISSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52493211411, + 46.7558604047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "598b90136449915f622e6745f23e70347b97506a", + "fields": { + "code_commune_insee": "71193", + "nom_de_la_commune": "ETRIGNY", + "code_postal": "71240", + "coordonnees_gps": [ + 46.5892768003, + 4.79160201098 + ], + "libelle_d_acheminement": "ETRIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79160201098, + 46.5892768003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e342014c44a0143d475806fe3b93cc18aad2f5b", + "fields": { + "ligne_5": "CHAMPLIEU", + "code_commune_insee": "71193", + "libelle_d_acheminement": "ETRIGNY", + "code_postal": "71240", + "nom_de_la_commune": "ETRIGNY", + "coordonnees_gps": [ + 46.5892768003, + 4.79160201098 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79160201098, + 46.5892768003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e31abb5795a3c7c658c6e6cd9b1550e00231d2e", + "fields": { + "code_commune_insee": "71194", + "nom_de_la_commune": "FARGES LES CHALON", + "code_postal": "71150", + "coordonnees_gps": [ + 46.8336764432, + 4.80644535224 + ], + "libelle_d_acheminement": "FARGES LES CHALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80644535224, + 46.8336764432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fea6f4b3683ee4090326f898d29c9dc2a0a28d0", + "fields": { + "code_commune_insee": "71196", + "nom_de_la_commune": "LE FAY", + "code_postal": "71580", + "coordonnees_gps": [ + 46.6644310853, + 5.33674534745 + ], + "libelle_d_acheminement": "LE FAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33674534745, + 46.6644310853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d91104da892f5c527f8e869ca4f14387964007a6", + "fields": { + "code_commune_insee": "71200", + "nom_de_la_commune": "FLEURY LA MONTAGNE", + "code_postal": "71340", + "coordonnees_gps": [ + 46.1997654702, + 4.1256489354 + ], + "libelle_d_acheminement": "FLEURY LA MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1256489354, + 46.1997654702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5af9394beee69219067be97ca0c2e05ad4be5b4", + "fields": { + "code_commune_insee": "71201", + "nom_de_la_commune": "FLEY", + "code_postal": "71390", + "coordonnees_gps": [ + 46.6759560566, + 4.63908082855 + ], + "libelle_d_acheminement": "FLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63908082855, + 46.6759560566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f5a151ed48c625eb50fdc146979e3eea1fd56ec", + "fields": { + "ligne_5": "FRAGNES", + "code_commune_insee": "71204", + "libelle_d_acheminement": "FRAGNES LA LOYERE", + "code_postal": "71530", + "nom_de_la_commune": "FRAGNES LA LOYERE", + "coordonnees_gps": [ + 46.8312797426, + 4.84940221006 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84940221006, + 46.8312797426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "722b2459f1be0bb0f1552775e2823a7d5f63f34b", + "fields": { + "code_commune_insee": "71207", + "nom_de_la_commune": "FRETTERANS", + "code_postal": "71270", + "coordonnees_gps": [ + 46.923240269, + 5.28789884271 + ], + "libelle_d_acheminement": "FRETTERANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.28789884271, + 46.923240269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90e55394f7f7996acc70659cfa264f4b73c055b0", + "fields": { + "code_commune_insee": "71215", + "nom_de_la_commune": "GERGY", + "code_postal": "71590", + "coordonnees_gps": [ + 46.8791801218, + 4.92129441098 + ], + "libelle_d_acheminement": "GERGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92129441098, + 46.8791801218 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7217d9795d3ea31ec7bbc91bf85d07c46ab3385", + "fields": { + "code_commune_insee": "71217", + "nom_de_la_commune": "GERMOLLES SUR GROSNE", + "code_postal": "71520", + "coordonnees_gps": [ + 46.2775172772, + 4.59556800746 + ], + "libelle_d_acheminement": "GERMOLLES SUR GROSNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59556800746, + 46.2775172772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f44f4dcb2eb4a8fcce3a3d36fae13496ad6422d6", + "fields": { + "code_commune_insee": "71220", + "nom_de_la_commune": "GILLY SUR LOIRE", + "code_postal": "71160", + "coordonnees_gps": [ + 46.5480062086, + 3.79284988791 + ], + "libelle_d_acheminement": "GILLY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79284988791, + 46.5480062086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b3b17cb7b73fbd9a53f15b02a86fa117cd52481", + "fields": { + "code_commune_insee": "71224", + "nom_de_la_commune": "GRANDVAUX", + "code_postal": "71430", + "coordonnees_gps": [ + 46.5059558537, + 4.26498354082 + ], + "libelle_d_acheminement": "GRANDVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26498354082, + 46.5059558537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "effd695a198a1caf17a4539af31fc0cf7d499c92", + "fields": { + "code_commune_insee": "71241", + "nom_de_la_commune": "JAMBLES", + "code_postal": "71640", + "coordonnees_gps": [ + 46.7734363658, + 4.68027991657 + ], + "libelle_d_acheminement": "JAMBLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68027991657, + 46.7734363658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e474876f3a348b0242f592fa4e06645085e9ba8", + "fields": { + "code_commune_insee": "71253", + "nom_de_la_commune": "LANS", + "code_postal": "71380", + "coordonnees_gps": [ + 46.7644863686, + 4.93208606266 + ], + "libelle_d_acheminement": "LANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.93208606266, + 46.7644863686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f7fcee4544a5f0ef0c345b88536a15acb83c652", + "fields": { + "code_commune_insee": "71256", + "nom_de_la_commune": "LESSARD EN BRESSE", + "code_postal": "71440", + "coordonnees_gps": [ + 46.7410862327, + 5.08364517208 + ], + "libelle_d_acheminement": "LESSARD EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08364517208, + 46.7410862327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "196a1487a2c7b4098fce153dbc1950a31d844a51", + "fields": { + "code_commune_insee": "71264", + "nom_de_la_commune": "LOURNAND", + "code_postal": "71250", + "coordonnees_gps": [ + 46.4645640534, + 4.64914404204 + ], + "libelle_d_acheminement": "LOURNAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64914404204, + 46.4645640534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ae1204566753f9c528b29b4cf12f4bd1a784bf4", + "fields": { + "code_commune_insee": "71266", + "nom_de_la_commune": "LUCENAY L EVEQUE", + "code_postal": "71540", + "coordonnees_gps": [ + 47.0840697933, + 4.26102089354 + ], + "libelle_d_acheminement": "LUCENAY L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26102089354, + 47.0840697933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93e634977629b9c84a98a41024dc7fc0834fa9bd", + "fields": { + "code_commune_insee": "71275", + "nom_de_la_commune": "MARCIGNY", + "code_postal": "71110", + "coordonnees_gps": [ + 46.2756272512, + 4.039116013 + ], + "libelle_d_acheminement": "MARCIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.039116013, + 46.2756272512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4161c3b435cb7aefb6535bbabdeaae67297aa46", + "fields": { + "ligne_5": "MARIZY", + "code_commune_insee": "71279", + "libelle_d_acheminement": "LE ROUSSET MARIZY", + "code_postal": "71220", + "nom_de_la_commune": "LE ROUSSET MARIZY", + "coordonnees_gps": [ + 46.5716241899, + 4.39993345947 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39993345947, + 46.5716241899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "875a623a23bba0e7e1059edbe0ff0654f10d4c1b", + "fields": { + "code_commune_insee": "71280", + "nom_de_la_commune": "MARLY SOUS ISSY", + "code_postal": "71760", + "coordonnees_gps": [ + 46.7292090902, + 3.93392160044 + ], + "libelle_d_acheminement": "MARLY SOUS ISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93392160044, + 46.7292090902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9420b3ffb513b2c638d204e8e6d34558e7ee71d", + "fields": { + "code_commune_insee": "71282", + "nom_de_la_commune": "MARMAGNE", + "code_postal": "71710", + "coordonnees_gps": [ + 46.8429753005, + 4.37123447631 + ], + "libelle_d_acheminement": "MARMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37123447631, + 46.8429753005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68b682f36eeb088e4fb01f4c0edbda3ccdeeec36", + "fields": { + "code_commune_insee": "71284", + "nom_de_la_commune": "MARTAILLY LES BRANCION", + "code_postal": "71700", + "coordonnees_gps": [ + 46.531885064, + 4.79714660531 + ], + "libelle_d_acheminement": "MARTAILLY LES BRANCION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.79714660531, + 46.531885064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4acc7d48327977114dad7f55c2e093d547b5c8b0", + "fields": { + "code_commune_insee": "71290", + "nom_de_la_commune": "MAZILLE", + "code_postal": "71250", + "coordonnees_gps": [ + 46.391550747, + 4.59913263178 + ], + "libelle_d_acheminement": "MAZILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.59913263178, + 46.391550747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8eeb46595545809450911e554bd5c63d85474ca", + "fields": { + "code_commune_insee": "71292", + "nom_de_la_commune": "MELLECEY", + "code_postal": "71640", + "coordonnees_gps": [ + 46.8104311793, + 4.7565417637 + ], + "libelle_d_acheminement": "MELLECEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7565417637, + 46.8104311793 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aad724ababee48fcd133edb322e7d2eb1ee919b6", + "fields": { + "code_commune_insee": "71296", + "nom_de_la_commune": "MESSEY SUR GROSNE", + "code_postal": "71390", + "coordonnees_gps": [ + 46.6508093785, + 4.75084615409 + ], + "libelle_d_acheminement": "MESSEY SUR GROSNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.75084615409, + 46.6508093785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad9d024334a39150f29aa26595e9e7c5beda4820", + "fields": { + "code_commune_insee": "71318", + "nom_de_la_commune": "MONTPONT EN BRESSE", + "code_postal": "71470", + "coordonnees_gps": [ + 46.541562777, + 5.17433501769 + ], + "libelle_d_acheminement": "MONTPONT EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17433501769, + 46.541562777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "411d1b0d3e303719c8b45c9809fb539f77929859", + "fields": { + "code_commune_insee": "71321", + "nom_de_la_commune": "MOREY", + "code_postal": "71510", + "coordonnees_gps": [ + 46.7915983107, + 4.58680108045 + ], + "libelle_d_acheminement": "MOREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58680108045, + 46.7915983107 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "808eb0773f376afc3bbdb34600b577a2b595cc93", + "fields": { + "code_commune_insee": "71328", + "nom_de_la_commune": "NANTON", + "code_postal": "71240", + "coordonnees_gps": [ + 46.6196318731, + 4.81580507035 + ], + "libelle_d_acheminement": "NANTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81580507035, + 46.6196318731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d36daedde0ce7a0ebd1fde65c7132dd198cbbbcb", + "fields": { + "code_commune_insee": "71336", + "nom_de_la_commune": "OUROUX SUR SAONE", + "code_postal": "71370", + "coordonnees_gps": [ + 46.7242227229, + 4.95068555425 + ], + "libelle_d_acheminement": "OUROUX SUR SAONE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95068555425, + 46.7242227229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69668c9cac09f4f4c457dfb543198a77dd59c2b3", + "fields": { + "code_commune_insee": "71339", + "nom_de_la_commune": "OZOLLES", + "code_postal": "71120", + "coordonnees_gps": [ + 46.3798633225, + 4.3603551512 + ], + "libelle_d_acheminement": "OZOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3603551512, + 46.3798633225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7594c1a1e64c4f073100e2922c3c5c3b73258291", + "fields": { + "code_commune_insee": "71353", + "nom_de_la_commune": "PLOTTES", + "code_postal": "71700", + "coordonnees_gps": [ + 46.5333799704, + 4.88549659587 + ], + "libelle_d_acheminement": "PLOTTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88549659587, + 46.5333799704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9d59e6ca54fed1a5ded4ae04f5668d06f4d401b", + "fields": { + "code_commune_insee": "71369", + "nom_de_la_commune": "REMIGNY", + "code_postal": "71150", + "coordonnees_gps": [ + 46.9096727588, + 4.7242069921 + ], + "libelle_d_acheminement": "REMIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7242069921, + 46.9096727588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f6b566b6a4ed86374a8b5338fac1fe184991f51", + "fields": { + "code_commune_insee": "71370", + "nom_de_la_commune": "RIGNY SUR ARROUX", + "code_postal": "71160", + "coordonnees_gps": [ + 46.5421616023, + 4.01816532874 + ], + "libelle_d_acheminement": "RIGNY SUR ARROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01816532874, + 46.5421616023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87fa7800ec668c177a9c71128ae0987183650b95", + "fields": { + "code_commune_insee": "71377", + "nom_de_la_commune": "ROYER", + "code_postal": "71700", + "coordonnees_gps": [ + 46.5553154353, + 4.82322281115 + ], + "libelle_d_acheminement": "ROYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82322281115, + 46.5553154353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb3ff63ae56c3291cbbddf60d106177167545633", + "fields": { + "code_commune_insee": "71380", + "nom_de_la_commune": "SAILLENARD", + "code_postal": "71580", + "coordonnees_gps": [ + 46.6974756794, + 5.37229340001 + ], + "libelle_d_acheminement": "SAILLENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37229340001, + 46.6974756794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32ccb9cfa49e393389bb3f12d9f378ee5c51b1f6", + "fields": { + "code_commune_insee": "71385", + "nom_de_la_commune": "ST AMOUR BELLEVUE", + "code_postal": "71570", + "coordonnees_gps": [ + 46.2414353911, + 4.74041810825 + ], + "libelle_d_acheminement": "ST AMOUR BELLEVUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74041810825, + 46.2414353911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b06efe6de60f169226d7f756f8801802d1041141", + "fields": { + "code_commune_insee": "71386", + "nom_de_la_commune": "ST ANDRE EN BRESSE", + "code_postal": "71440", + "coordonnees_gps": [ + 46.6509686442, + 5.08602391583 + ], + "libelle_d_acheminement": "ST ANDRE EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08602391583, + 46.6509686442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d85efde0f18cf6690f55e456bd7d24d853f09519", + "fields": { + "code_commune_insee": "71395", + "nom_de_la_commune": "ST BONNET DE VIEILLE VIGNE", + "code_postal": "71430", + "coordonnees_gps": [ + 46.5304875791, + 4.2714393389 + ], + "libelle_d_acheminement": "ST BONNET DE VIEILLE VIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2714393389, + 46.5304875791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84a3f8d65eea01f4ba26fdcf0c9d4a5ed03b2f4a", + "fields": { + "code_commune_insee": "71403", + "nom_de_la_commune": "ST DENIS DE VAUX", + "code_postal": "71640", + "coordonnees_gps": [ + 46.7925579715, + 4.70152860992 + ], + "libelle_d_acheminement": "ST DENIS DE VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.70152860992, + 46.7925579715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08d53816296ea1a5272ff048569d2e0df93d7b65", + "fields": { + "code_commune_insee": "71405", + "nom_de_la_commune": "ST DIDIER EN BRESSE", + "code_postal": "71620", + "coordonnees_gps": [ + 46.8507201385, + 5.10326207017 + ], + "libelle_d_acheminement": "ST DIDIER EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10326207017, + 46.8507201385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "063f00d9a19e7200552ed839d342be22a49b6021", + "fields": { + "code_commune_insee": "71407", + "nom_de_la_commune": "ST DIDIER SUR ARROUX", + "code_postal": "71190", + "coordonnees_gps": [ + 46.832913623, + 4.10029062388 + ], + "libelle_d_acheminement": "ST DIDIER SUR ARROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10029062388, + 46.832913623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73186a9359cae3527922dfcaff22201aaf14268d", + "fields": { + "code_commune_insee": "71410", + "nom_de_la_commune": "ST ETIENNE EN BRESSE", + "code_postal": "71370", + "coordonnees_gps": [ + 46.7060490635, + 5.06223001474 + ], + "libelle_d_acheminement": "ST ETIENNE EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06223001474, + 46.7060490635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df6954f8fcca0e58241e162cd22360b6105c3d59", + "fields": { + "code_commune_insee": "71417", + "nom_de_la_commune": "ST GENGOUX LE NATIONAL", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6134097037, + 4.66348657274 + ], + "libelle_d_acheminement": "ST GENGOUX LE NATIONAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66348657274, + 46.6134097037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20e772c6ef5b7bcd435f587ae4707fd01277ba81", + "fields": { + "code_commune_insee": "71437", + "nom_de_la_commune": "ST LAURENT EN BRIONNAIS", + "code_postal": "71800", + "coordonnees_gps": [ + 46.2699837548, + 4.25673453521 + ], + "libelle_d_acheminement": "ST LAURENT EN BRIONNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25673453521, + 46.2699837548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7ec381d0cbbafafa542396229ee63e49a106067", + "fields": { + "code_commune_insee": "71438", + "nom_de_la_commune": "ST LEGER DU BOIS", + "code_postal": "71360", + "coordonnees_gps": [ + 47.0229494919, + 4.43237550476 + ], + "libelle_d_acheminement": "ST LEGER DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43237550476, + 47.0229494919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4220fd58676f1da1583970d01a8c379612e2a8e5", + "fields": { + "code_commune_insee": "71441", + "nom_de_la_commune": "ST LEGER SOUS LA BUSSIERE", + "code_postal": "71520", + "coordonnees_gps": [ + 46.3114540312, + 4.56276492134 + ], + "libelle_d_acheminement": "ST LEGER SOUS LA BUSSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56276492134, + 46.3114540312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24fe102f01ae9cc81827344eeb02a0ecf6f848b7", + "fields": { + "code_commune_insee": "71443", + "nom_de_la_commune": "ST LOUP GEANGES", + "code_postal": "71350", + "coordonnees_gps": [ + 46.9387218362, + 4.90922243848 + ], + "libelle_d_acheminement": "ST LOUP GEANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90922243848, + 46.9387218362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "361aaf4c108bd4a09a63e025b7694b5acb5f13ec", + "fields": { + "code_commune_insee": "71447", + "nom_de_la_commune": "ST MARD DE VAUX", + "code_postal": "71640", + "coordonnees_gps": [ + 46.8135328184, + 4.67179721319 + ], + "libelle_d_acheminement": "ST MARD DE VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67179721319, + 46.8135328184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d6f14196f72eca94b3e42c69463525e9be8aee6", + "fields": { + "code_commune_insee": "71448", + "nom_de_la_commune": "ST MARTIN BELLE ROCHE", + "code_postal": "71118", + "coordonnees_gps": [ + 46.3803240277, + 4.85450707097 + ], + "libelle_d_acheminement": "ST MARTIN BELLE ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.85450707097, + 46.3803240277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17e3391d9bf1b7f7afab6af0b77adf9f590be18d", + "fields": { + "code_commune_insee": "71452", + "nom_de_la_commune": "ST MARTIN DE SALENCEY", + "code_postal": "71220", + "coordonnees_gps": [ + 46.5186534954, + 4.49326886947 + ], + "libelle_d_acheminement": "ST MARTIN DE SALENCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49326886947, + 46.5186534954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c273446dae1ad919a12d3a1b07275c26a08824c", + "fields": { + "code_commune_insee": "71453", + "nom_de_la_commune": "ST MARTIN DU LAC", + "code_postal": "71110", + "coordonnees_gps": [ + 46.2492100309, + 4.05528642547 + ], + "libelle_d_acheminement": "ST MARTIN DU LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05528642547, + 46.2492100309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6b81f21d285945b48b97e3b287e2c3aa32d51b4", + "fields": { + "code_commune_insee": "71454", + "nom_de_la_commune": "ST MARTIN DU MONT", + "code_postal": "71580", + "coordonnees_gps": [ + 46.6200413286, + 5.29420271275 + ], + "libelle_d_acheminement": "ST MARTIN DU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29420271275, + 46.6200413286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92bf27d507552b5a28fe7ba7e5e412b1415f34a1", + "fields": { + "code_commune_insee": "71457", + "nom_de_la_commune": "ST MARTIN EN GATINOIS", + "code_postal": "71350", + "coordonnees_gps": [ + 46.9431147927, + 5.00729435499 + ], + "libelle_d_acheminement": "ST MARTIN EN GATINOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00729435499, + 46.9431147927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a2612fb02ce8d52c6ad996b2173297280dd32d2", + "fields": { + "code_commune_insee": "71458", + "nom_de_la_commune": "ST MARTIN LA PATROUILLE", + "code_postal": "71460", + "coordonnees_gps": [ + 46.5830730651, + 4.54536544004 + ], + "libelle_d_acheminement": "ST MARTIN LA PATROUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54536544004, + 46.5830730651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5507f34e48bdc937be2716706a4ac46308cb7a9f", + "fields": { + "code_commune_insee": "71460", + "nom_de_la_commune": "ST MAURICE DE SATONNAY", + "code_postal": "71260", + "coordonnees_gps": [ + 46.4057525452, + 4.78239224424 + ], + "libelle_d_acheminement": "ST MAURICE DE SATONNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78239224424, + 46.4057525452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "657ecd103a3135b3ad268a0eabdfc18a0e0ba297", + "fields": { + "code_commune_insee": "71464", + "nom_de_la_commune": "ST MAURICE LES COUCHES", + "code_postal": "71490", + "coordonnees_gps": [ + 46.8775473373, + 4.60138308306 + ], + "libelle_d_acheminement": "ST MAURICE LES COUCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60138308306, + 46.8775473373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4869d317cde45038a79d95710573fd5a742e0f7", + "fields": { + "code_commune_insee": "71465", + "nom_de_la_commune": "ST MICAUD", + "code_postal": "71460", + "coordonnees_gps": [ + 46.6923867909, + 4.52704929723 + ], + "libelle_d_acheminement": "ST MICAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52704929723, + 46.6923867909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11ecfc471e6cdb56525e182602482f54c4a4f76a", + "fields": { + "code_commune_insee": "71468", + "nom_de_la_commune": "ST PIERRE DE VARENNES", + "code_postal": "71670", + "coordonnees_gps": [ + 46.84711079, + 4.5090273934 + ], + "libelle_d_acheminement": "ST PIERRE DE VARENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5090273934, + 46.84711079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8668c5be8ece7dde2c8a57faf93ed6643901ea3c", + "fields": { + "code_commune_insee": "71469", + "nom_de_la_commune": "ST PIERRE LE VIEUX", + "code_postal": "71520", + "coordonnees_gps": [ + 46.2871912572, + 4.52517734192 + ], + "libelle_d_acheminement": "ST PIERRE LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52517734192, + 46.2871912572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8e582fe121fb902d298e508dbad060dd4c73928", + "fields": { + "code_commune_insee": "71470", + "nom_de_la_commune": "ST POINT", + "code_postal": "71520", + "coordonnees_gps": [ + 46.3371050724, + 4.62126526251 + ], + "libelle_d_acheminement": "ST POINT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62126526251, + 46.3371050724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87ae57a37bd10c86f9ce06a9ac0de2b837443423", + "fields": { + "code_commune_insee": "71478", + "nom_de_la_commune": "ST ROMAIN SOUS VERSIGNY", + "code_postal": "71420", + "coordonnees_gps": [ + 46.6523046046, + 4.18495340535 + ], + "libelle_d_acheminement": "ST ROMAIN SOUS VERSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18495340535, + 46.6523046046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "241e128a8d68fa049eac4fbbb7bd20a0db252ae0", + "fields": { + "code_commune_insee": "71483", + "nom_de_la_commune": "ST SYMPHORIEN DES BOIS", + "code_postal": "71800", + "coordonnees_gps": [ + 46.3269509169, + 4.2853376663 + ], + "libelle_d_acheminement": "ST SYMPHORIEN DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2853376663, + 46.3269509169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "561ab32046dd80200ee95b7d7e608177fe8a12a5", + "fields": { + "code_commune_insee": "71485", + "nom_de_la_commune": "ST VALLERIN", + "code_postal": "71390", + "coordonnees_gps": [ + 46.6847032271, + 4.66933789686 + ], + "libelle_d_acheminement": "ST VALLERIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66933789686, + 46.6847032271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "097c6f0259945e69db092f0cd451a8c68d08e74c", + "fields": { + "code_commune_insee": "71486", + "nom_de_la_commune": "ST VALLIER", + "code_postal": "71230", + "coordonnees_gps": [ + 46.6430898449, + 4.35996411381 + ], + "libelle_d_acheminement": "ST VALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35996411381, + 46.6430898449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af627c5fbcd4ea00545c0b460fc4e22afcfd57e8", + "fields": { + "code_commune_insee": "71488", + "nom_de_la_commune": "ST VINCENT DES PRES", + "code_postal": "71250", + "coordonnees_gps": [ + 46.4748542216, + 4.55521519773 + ], + "libelle_d_acheminement": "ST VINCENT DES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55521519773, + 46.4748542216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dabb91505f0cffbc0119bfe3e27c24ba1539a13c", + "fields": { + "code_commune_insee": "71489", + "nom_de_la_commune": "ST VINCENT EN BRESSE", + "code_postal": "71440", + "coordonnees_gps": [ + 46.6714691563, + 5.06091030866 + ], + "libelle_d_acheminement": "ST VINCENT EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.06091030866, + 46.6714691563 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75d5975271303d23d66afba970b8183ea7a409a6", + "fields": { + "code_commune_insee": "71493", + "nom_de_la_commune": "SAISY", + "code_postal": "71360", + "coordonnees_gps": [ + 46.9611534554, + 4.55629886469 + ], + "libelle_d_acheminement": "SAISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55629886469, + 46.9611534554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7375feaaf9dc2f671b2e6e545d836389c8e10a6", + "fields": { + "code_commune_insee": "71499", + "nom_de_la_commune": "SANVIGNES LES MINES", + "code_postal": "71410", + "coordonnees_gps": [ + 46.6680278999, + 4.27985342384 + ], + "libelle_d_acheminement": "SANVIGNES LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27985342384, + 46.6680278999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3acd68922474ce17600d8c3d0f51a95f65db8359", + "fields": { + "code_commune_insee": "57653", + "nom_de_la_commune": "SILLY EN SAULNOIS", + "code_postal": "57420", + "coordonnees_gps": [ + 48.9918643442, + 6.28019307812 + ], + "libelle_d_acheminement": "SILLY EN SAULNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28019307812, + 48.9918643442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2071d851a8da7d57394f2cb4c2f04ec7db0ed0f1", + "fields": { + "code_commune_insee": "71500", + "nom_de_la_commune": "SARRY", + "code_postal": "71110", + "coordonnees_gps": [ + 46.3094373531, + 4.10708282247 + ], + "libelle_d_acheminement": "SARRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10708282247, + 46.3094373531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a95c875717e742d618d5d04f298c9f1546c894a", + "fields": { + "code_commune_insee": "57659", + "nom_de_la_commune": "SPICHEREN", + "code_postal": "57350", + "coordonnees_gps": [ + 49.1948583946, + 6.97044688686 + ], + "libelle_d_acheminement": "SPICHEREN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97044688686, + 49.1948583946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21641c504bab4df9cdd94305154a4de72bbfe815", + "fields": { + "code_commune_insee": "71508", + "nom_de_la_commune": "SAVIGNY SUR SEILLE", + "code_postal": "71440", + "coordonnees_gps": [ + 46.6331048496, + 5.10253971611 + ], + "libelle_d_acheminement": "SAVIGNY SUR SEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10253971611, + 46.6331048496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b74f17aca1de38babca6325f168a36d7d675957c", + "fields": { + "ligne_5": "HABSTERDICK", + "code_commune_insee": "57660", + "libelle_d_acheminement": "STIRING WENDEL", + "code_postal": "57350", + "nom_de_la_commune": "STIRING WENDEL", + "coordonnees_gps": [ + 49.2025325702, + 6.93271905155 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93271905155, + 49.2025325702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e91f0b4f7d70f8a839f130d68fdebb3c7badfd41", + "fields": { + "code_commune_insee": "71516", + "nom_de_la_commune": "SERLEY", + "code_postal": "71310", + "coordonnees_gps": [ + 46.7884184366, + 5.24237687165 + ], + "libelle_d_acheminement": "SERLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24237687165, + 46.7884184366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fbac91ed1d3cbbe71e8eea7fabc1ec1ba741432", + "fields": { + "code_commune_insee": "57665", + "nom_de_la_commune": "TENTELING", + "code_postal": "57980", + "coordonnees_gps": [ + 49.1250557723, + 6.92875440455 + ], + "libelle_d_acheminement": "TENTELING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92875440455, + 49.1250557723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "385b68b755679e52d5b57ff1b8e4ca4893110ee7", + "fields": { + "code_commune_insee": "71517", + "nom_de_la_commune": "SERMESSE", + "code_postal": "71350", + "coordonnees_gps": [ + 46.8944431554, + 5.09330087989 + ], + "libelle_d_acheminement": "SERMESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09330087989, + 46.8944431554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65925b54b73a5cdf93d7bccff5cb809ac33f6021", + "fields": { + "code_commune_insee": "57666", + "nom_de_la_commune": "TERVILLE", + "code_postal": "57180", + "coordonnees_gps": [ + 49.3465483422, + 6.13220160083 + ], + "libelle_d_acheminement": "TERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13220160083, + 49.3465483422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb708f3f4e40476fedb3ecb33c257ea5bab815ec", + "fields": { + "code_commune_insee": "71519", + "nom_de_la_commune": "SERRIGNY EN BRESSE", + "code_postal": "71310", + "coordonnees_gps": [ + 46.8249036808, + 5.12195396385 + ], + "libelle_d_acheminement": "SERRIGNY EN BRESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12195396385, + 46.8249036808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb614afa87da278ccc4fbb913df5f555b8cf7d92", + "fields": { + "code_commune_insee": "57674", + "nom_de_la_commune": "TINCRY", + "code_postal": "57590", + "coordonnees_gps": [ + 48.9079313189, + 6.40590872247 + ], + "libelle_d_acheminement": "TINCRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40590872247, + 48.9079313189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f293bf8fe20bfb39a3b0fcca77ef6b8d40b617b", + "fields": { + "code_commune_insee": "71520", + "nom_de_la_commune": "SEVREY", + "code_postal": "71100", + "coordonnees_gps": [ + 46.7358656662, + 4.82878798473 + ], + "libelle_d_acheminement": "SEVREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82878798473, + 46.7358656662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4341e04cf8ffd0834f1d499a2ee2ca55d705a707", + "fields": { + "code_commune_insee": "57675", + "nom_de_la_commune": "TORCHEVILLE", + "code_postal": "57670", + "coordonnees_gps": [ + 48.90519391, + 6.84835199777 + ], + "libelle_d_acheminement": "TORCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84835199777, + 48.90519391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93b25b6367b4e7cf3a72af8c5147a793dca89ee4", + "fields": { + "ligne_5": "BURE", + "code_commune_insee": "57678", + "libelle_d_acheminement": "TRESSANGE", + "code_postal": "57710", + "nom_de_la_commune": "TRESSANGE", + "coordonnees_gps": [ + 49.4096807012, + 5.98237050725 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98237050725, + 49.4096807012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec708dba776292336d593542cf0b8cb8009635be", + "fields": { + "code_commune_insee": "57687", + "nom_de_la_commune": "VALLERANGE", + "code_postal": "57340", + "coordonnees_gps": [ + 48.9502611982, + 6.68677832719 + ], + "libelle_d_acheminement": "VALLERANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.68677832719, + 48.9502611982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff6e4c430773460d28b70875496ee500d410bf40", + "fields": { + "code_commune_insee": "57694", + "nom_de_la_commune": "VANY", + "code_postal": "57070", + "coordonnees_gps": [ + 49.1526090428, + 6.24135072121 + ], + "libelle_d_acheminement": "VANY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24135072121, + 49.1526090428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d175837cc7d46f0598f223fb69495e21aec6a438", + "fields": { + "code_commune_insee": "57698", + "nom_de_la_commune": "VATIMONT", + "code_postal": "57580", + "coordonnees_gps": [ + 48.9782586379, + 6.4742819411 + ], + "libelle_d_acheminement": "VATIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4742819411, + 48.9782586379 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "649806ce2d9c2993c89117ae2adbd7a4dee8c59a", + "fields": { + "code_commune_insee": "57708", + "nom_de_la_commune": "VERNY", + "code_postal": "57420", + "coordonnees_gps": [ + 49.0087164059, + 6.20170510603 + ], + "libelle_d_acheminement": "VERNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20170510603, + 49.0087164059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4377586b09139dbe0f4c74d027aa93d721e02009", + "fields": { + "code_commune_insee": "57711", + "nom_de_la_commune": "VIBERSVILLER", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9054943096, + 6.94495240127 + ], + "libelle_d_acheminement": "VIBERSVILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94495240127, + 48.9054943096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a012cdc36d65505668131d4c650b105cd999762c", + "fields": { + "code_commune_insee": "57714", + "nom_de_la_commune": "HAUTE VIGNEULLES", + "code_postal": "57690", + "coordonnees_gps": [ + 49.0954763193, + 6.55643389665 + ], + "libelle_d_acheminement": "HAUTE VIGNEULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55643389665, + 49.0954763193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c1c8334b641828bdce8f7486fb91da188576229", + "fields": { + "code_commune_insee": "57718", + "nom_de_la_commune": "VILLERS STONCOURT", + "code_postal": "57530", + "coordonnees_gps": [ + 49.05755169, + 6.44110870664 + ], + "libelle_d_acheminement": "VILLERS STONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44110870664, + 49.05755169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb921cfd70f19fad3098b457c806e344b821b74d", + "fields": { + "code_commune_insee": "57725", + "nom_de_la_commune": "VITTERSBOURG", + "code_postal": "57670", + "coordonnees_gps": [ + 48.9483985965, + 6.93045004386 + ], + "libelle_d_acheminement": "VITTERSBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93045004386, + 48.9483985965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28b79f592d69f75bade751a36b0e4a1868fbea4a", + "fields": { + "code_commune_insee": "57743", + "nom_de_la_commune": "WALTEMBOURG", + "code_postal": "57370", + "coordonnees_gps": [ + 48.7492194101, + 7.19586695343 + ], + "libelle_d_acheminement": "WALTEMBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19586695343, + 48.7492194101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "208485f26baae3a27edd7975d65f386b3343de0a", + "fields": { + "code_commune_insee": "57747", + "nom_de_la_commune": "WINTERSBOURG", + "code_postal": "57635", + "coordonnees_gps": [ + 48.7918074055, + 7.19082900649 + ], + "libelle_d_acheminement": "WINTERSBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.19082900649, + 48.7918074055 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9416d32133f4dfd206dfdc06b7ae226836fee89d", + "fields": { + "code_commune_insee": "57753", + "nom_de_la_commune": "WUISSE", + "code_postal": "57170", + "coordonnees_gps": [ + 48.8548708568, + 6.66842054976 + ], + "libelle_d_acheminement": "WUISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66842054976, + 48.8548708568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11ca9c436a093a4513d39fafd7c385db52fedd34", + "fields": { + "code_commune_insee": "57756", + "nom_de_la_commune": "XOUAXANGE", + "code_postal": "57830", + "coordonnees_gps": [ + 48.6922407747, + 6.99262688966 + ], + "libelle_d_acheminement": "XOUAXANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99262688966, + 48.6922407747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce1140efb6b88504727ce94c75eb5ebb036298a3", + "fields": { + "code_commune_insee": "57757", + "nom_de_la_commune": "YUTZ", + "code_postal": "57970", + "coordonnees_gps": [ + 49.3517848092, + 6.20171929319 + ], + "libelle_d_acheminement": "YUTZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20171929319, + 49.3517848092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "999e98acec5ca4368b236b381f01f0dd0a640655", + "fields": { + "code_commune_insee": "57763", + "nom_de_la_commune": "ZOMMANGE", + "code_postal": "57260", + "coordonnees_gps": [ + 48.8223763728, + 6.8005971224 + ], + "libelle_d_acheminement": "ZOMMANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8005971224, + 48.8223763728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6c0d3162a28bdb077b52edfdf67cd52c9736ab5", + "fields": { + "code_commune_insee": "58006", + "nom_de_la_commune": "ANLEZY", + "code_postal": "58270", + "coordonnees_gps": [ + 46.966601859, + 3.49853718093 + ], + "libelle_d_acheminement": "ANLEZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49853718093, + 46.966601859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "997666c208f32c32850bc887bb5a5fb21a393a85", + "fields": { + "code_commune_insee": "58007", + "nom_de_la_commune": "ANNAY", + "code_postal": "58450", + "coordonnees_gps": [ + 47.5308551054, + 2.94137018332 + ], + "libelle_d_acheminement": "ANNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94137018332, + 47.5308551054 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf08d39502bc3bb62a7cdf40082c8e7b7c66eaa8", + "fields": { + "code_commune_insee": "58011", + "nom_de_la_commune": "ARMES", + "code_postal": "58500", + "coordonnees_gps": [ + 47.4629608534, + 3.562292348 + ], + "libelle_d_acheminement": "ARMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.562292348, + 47.4629608534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c28f4c561ef05d3247f2e3c8b724a7155ff576f7", + "fields": { + "code_commune_insee": "58014", + "nom_de_la_commune": "ARZEMBOUY", + "code_postal": "58700", + "coordonnees_gps": [ + 47.2468634111, + 3.35980909728 + ], + "libelle_d_acheminement": "ARZEMBOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35980909728, + 47.2468634111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53b38a9888322493a868ad75015f31b7c942782e", + "fields": { + "code_commune_insee": "58017", + "nom_de_la_commune": "AUNAY EN BAZOIS", + "code_postal": "58110", + "coordonnees_gps": [ + 47.124295853, + 3.71965717123 + ], + "libelle_d_acheminement": "AUNAY EN BAZOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71965717123, + 47.124295853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "139661cfed94f6db70222d6714ebbe4a4ac6c1a3", + "fields": { + "code_commune_insee": "58026", + "nom_de_la_commune": "BEAULIEU", + "code_postal": "58420", + "coordonnees_gps": [ + 47.2523686472, + 3.52425874416 + ], + "libelle_d_acheminement": "BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52425874416, + 47.2523686472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80117257f8a817e227f786d7345afaf90cc7a024", + "fields": { + "ligne_5": "DOMPIERRE SUR HERY", + "code_commune_insee": "58026", + "libelle_d_acheminement": "BEAULIEU", + "code_postal": "58420", + "nom_de_la_commune": "BEAULIEU", + "coordonnees_gps": [ + 47.2523686472, + 3.52425874416 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52425874416, + 47.2523686472 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e138b2a17a95ad1a0748e9fc71d0053f9f3e55ef", + "fields": { + "code_commune_insee": "58029", + "nom_de_la_commune": "BEUVRON", + "code_postal": "58210", + "coordonnees_gps": [ + 47.3507345394, + 3.49740731618 + ], + "libelle_d_acheminement": "BEUVRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49740731618, + 47.3507345394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c64cf09a11ed377bbe19963983cfdf53a0c5109", + "fields": { + "code_commune_insee": "58046", + "nom_de_la_commune": "CERCY LA TOUR", + "code_postal": "58340", + "coordonnees_gps": [ + 46.8494214757, + 3.64592375221 + ], + "libelle_d_acheminement": "CERCY LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64592375221, + 46.8494214757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da73254df555ee93fdbc8654503314ab6bebbd6e", + "fields": { + "code_commune_insee": "58053", + "nom_de_la_commune": "CHAMPLEMY", + "code_postal": "58210", + "coordonnees_gps": [ + 47.2852072744, + 3.33527169936 + ], + "libelle_d_acheminement": "CHAMPLEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33527169936, + 47.2852072744 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98b4242339c72844718ed6da6011846433bb3a47", + "fields": { + "code_commune_insee": "58055", + "nom_de_la_commune": "CHAMPVERT", + "code_postal": "58300", + "coordonnees_gps": [ + 46.8530454461, + 3.52326215969 + ], + "libelle_d_acheminement": "CHAMPVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52326215969, + 46.8530454461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e3dd9242ec5e5818b214f7ee0396fe7c8bd931a", + "fields": { + "code_commune_insee": "58057", + "nom_de_la_commune": "CHANTENAY ST IMBERT", + "code_postal": "58240", + "coordonnees_gps": [ + 46.7394357002, + 3.17150423035 + ], + "libelle_d_acheminement": "CHANTENAY ST IMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17150423035, + 46.7394357002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d0e5ea77242f5a07a22a72ad3c6833d673dabb9", + "fields": { + "code_commune_insee": "58059", + "nom_de_la_commune": "LA CHARITE SUR LOIRE", + "code_postal": "58400", + "coordonnees_gps": [ + 47.1835862006, + 3.02885515594 + ], + "libelle_d_acheminement": "LA CHARITE SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02885515594, + 47.1835862006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1daf4df865d5721e42c546dbf11ad72636cb5621", + "fields": { + "code_commune_insee": "58072", + "nom_de_la_commune": "CHEVENON", + "code_postal": "58160", + "coordonnees_gps": [ + 46.9145671045, + 3.23010283481 + ], + "libelle_d_acheminement": "CHEVENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23010283481, + 46.9145671045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81587789fe5a365731e03eb578c0dbb91b7943b6", + "fields": { + "code_commune_insee": "58075", + "nom_de_la_commune": "CHITRY LES MINES", + "code_postal": "58800", + "coordonnees_gps": [ + 47.27098105, + 3.66227184049 + ], + "libelle_d_acheminement": "CHITRY LES MINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66227184049, + 47.27098105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f014a20c9ac52f0ee2acdd3a447619949360fa4b", + "fields": { + "code_commune_insee": "58077", + "nom_de_la_commune": "CIEZ", + "code_postal": "58220", + "coordonnees_gps": [ + 47.440576466, + 3.16319899612 + ], + "libelle_d_acheminement": "CIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16319899612, + 47.440576466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "169a499de26cf6a38b22e5a44968ee6b6292f5d7", + "fields": { + "ligne_5": "COURS", + "code_commune_insee": "58086", + "libelle_d_acheminement": "COSNE COURS SUR LOIRE", + "code_postal": "58200", + "nom_de_la_commune": "COSNE COURS SUR LOIRE", + "coordonnees_gps": [ + 47.4029099422, + 2.94284103771 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94284103771, + 47.4029099422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdaabc683a5584f42d9445bd4d60aa8da1f8f5c5", + "fields": { + "code_commune_insee": "58089", + "nom_de_la_commune": "COULOUTRE", + "code_postal": "58220", + "coordonnees_gps": [ + 47.3950173245, + 3.22048548212 + ], + "libelle_d_acheminement": "COULOUTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22048548212, + 47.3950173245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ad4d52910ccd04ded6dbf8f2191d13d8d050f69", + "fields": { + "code_commune_insee": "58092", + "nom_de_la_commune": "CRUX LA VILLE", + "code_postal": "58330", + "coordonnees_gps": [ + 47.15352301, + 3.52633710802 + ], + "libelle_d_acheminement": "CRUX LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52633710802, + 47.15352301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf735b71f0a9546e066ac12954d65daf1d37567f", + "fields": { + "code_commune_insee": "58094", + "nom_de_la_commune": "DAMPIERRE SOUS BOUHY", + "code_postal": "58310", + "coordonnees_gps": [ + 47.5071079363, + 3.12979179712 + ], + "libelle_d_acheminement": "DAMPIERRE SOUS BOUHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12979179712, + 47.5071079363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "810ef9b1ec55a5c7ebd1ba26f66edd4e4c306053", + "fields": { + "code_commune_insee": "58097", + "nom_de_la_commune": "DIENNES AUBIGNY", + "code_postal": "58340", + "coordonnees_gps": [ + 46.9132554892, + 3.57639620469 + ], + "libelle_d_acheminement": "DIENNES AUBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57639620469, + 46.9132554892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb865657d639443ee03811638610d5e812127f28", + "fields": { + "code_commune_insee": "58099", + "nom_de_la_commune": "DOMMARTIN", + "code_postal": "58120", + "coordonnees_gps": [ + 47.0718096664, + 3.84542104585 + ], + "libelle_d_acheminement": "DOMMARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84542104585, + 47.0718096664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "109a22a027855bfddaab8bfd1383b0f6236819b1", + "fields": { + "code_commune_insee": "58102", + "nom_de_la_commune": "DONZY", + "code_postal": "58220", + "coordonnees_gps": [ + 47.3800225966, + 3.11365486135 + ], + "libelle_d_acheminement": "DONZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11365486135, + 47.3800225966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1be3c4950f13a52e18a0b4e910935ae79cabaea", + "fields": { + "code_commune_insee": "58104", + "nom_de_la_commune": "DORNES", + "code_postal": "58390", + "coordonnees_gps": [ + 46.7193519034, + 3.33797253161 + ], + "libelle_d_acheminement": "DORNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33797253161, + 46.7193519034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abc0b77009e0b1ffbcf741ecb83178681b1a567f", + "fields": { + "code_commune_insee": "58107", + "nom_de_la_commune": "DUN SUR GRANDRY", + "code_postal": "58110", + "coordonnees_gps": [ + 47.0898700253, + 3.79985075071 + ], + "libelle_d_acheminement": "DUN SUR GRANDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79985075071, + 47.0898700253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2ac3884e38ee39dfe5f3baffdf507cc366d9620", + "fields": { + "code_commune_insee": "58120", + "nom_de_la_commune": "GACOGNE", + "code_postal": "58140", + "coordonnees_gps": [ + 47.2332591371, + 3.87853362588 + ], + "libelle_d_acheminement": "GACOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87853362588, + 47.2332591371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b56be79a9b3686927c9b9828004cde0dab67d1d", + "fields": { + "code_commune_insee": "58123", + "nom_de_la_commune": "GERMENAY", + "code_postal": "58800", + "coordonnees_gps": [ + 47.2891665195, + 3.60058784085 + ], + "libelle_d_acheminement": "GERMENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60058784085, + 47.2891665195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "883683537fdc7fec066489690485cf5182bda7f8", + "fields": { + "code_commune_insee": "58130", + "nom_de_la_commune": "GRENOIS", + "code_postal": "58420", + "coordonnees_gps": [ + 47.3214591393, + 3.52128232179 + ], + "libelle_d_acheminement": "GRENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.52128232179, + 47.3214591393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46f09a602f597e98617312fab8c464debbc410d9", + "fields": { + "code_commune_insee": "58131", + "nom_de_la_commune": "GUERIGNY", + "code_postal": "58130", + "coordonnees_gps": [ + 47.0928544134, + 3.21281103733 + ], + "libelle_d_acheminement": "GUERIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21281103733, + 47.0928544134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c99927bdcddbad8d6ae399b5e8fcc8d571e4165a", + "fields": { + "code_commune_insee": "58142", + "nom_de_la_commune": "LIMANTON", + "code_postal": "58290", + "coordonnees_gps": [ + 46.9799380877, + 3.74070604967 + ], + "libelle_d_acheminement": "LIMANTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74070604967, + 46.9799380877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6e7bc439cd9aa2afa2afcc1179cc2ac501cbae0", + "fields": { + "code_commune_insee": "58143", + "nom_de_la_commune": "LIMON", + "code_postal": "58270", + "coordonnees_gps": [ + 46.9651256644, + 3.38472580613 + ], + "libelle_d_acheminement": "LIMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.38472580613, + 46.9651256644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd1fdbd607094daf73af0063170f0888b29362ac", + "fields": { + "code_commune_insee": "58144", + "nom_de_la_commune": "LIVRY", + "code_postal": "58240", + "coordonnees_gps": [ + 46.7686585382, + 3.07241225301 + ], + "libelle_d_acheminement": "LIVRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07241225301, + 46.7686585382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dea4f50dcbb4bafbdedc776ff40e217974e8dda2", + "fields": { + "code_commune_insee": "58145", + "nom_de_la_commune": "LORMES", + "code_postal": "58140", + "coordonnees_gps": [ + 47.2894645643, + 3.82491613793 + ], + "libelle_d_acheminement": "LORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82491613793, + 47.2894645643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1e737346b4533792d26a72ab1f6d045438f586b", + "fields": { + "code_commune_insee": "58150", + "nom_de_la_commune": "LYS", + "code_postal": "58190", + "coordonnees_gps": [ + 47.334846257, + 3.59874573794 + ], + "libelle_d_acheminement": "LYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59874573794, + 47.334846257 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abc41055bdeb283c3886362dbc6a1cf160b9a78b", + "fields": { + "code_commune_insee": "58155", + "nom_de_la_commune": "LA MARCHE", + "code_postal": "58400", + "coordonnees_gps": [ + 47.148869332, + 3.04010611601 + ], + "libelle_d_acheminement": "LA MARCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04010611601, + 47.148869332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddbbce9fe0429fbf51414da218a1f0048bd795f4", + "fields": { + "code_commune_insee": "58159", + "nom_de_la_commune": "MARIGNY SUR YONNE", + "code_postal": "58800", + "coordonnees_gps": [ + 47.287657405, + 3.64242914164 + ], + "libelle_d_acheminement": "MARIGNY SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64242914164, + 47.287657405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92bf7944eb14d08a350f7abf84e66150a7260c3b", + "fields": { + "code_commune_insee": "58160", + "nom_de_la_commune": "MARZY", + "code_postal": "58180", + "coordonnees_gps": [ + 46.9838677741, + 3.0926104206 + ], + "libelle_d_acheminement": "MARZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0926104206, + 46.9838677741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca4a3184f01e34d69caa8c339695244cadfc9731", + "fields": { + "ligne_5": "CORCELLES", + "code_commune_insee": "58160", + "libelle_d_acheminement": "MARZY", + "code_postal": "58180", + "nom_de_la_commune": "MARZY", + "coordonnees_gps": [ + 46.9838677741, + 3.0926104206 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0926104206, + 46.9838677741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71a20dd8e548a2812cadafc73091f58055bb28f1", + "fields": { + "code_commune_insee": "58163", + "nom_de_la_commune": "MENOU", + "code_postal": "58210", + "coordonnees_gps": [ + 47.3684390837, + 3.28332694453 + ], + "libelle_d_acheminement": "MENOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28332694453, + 47.3684390837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63cb5ebe3a5fea72b1a2f000407ead858c84c401", + "fields": { + "code_commune_insee": "58168", + "nom_de_la_commune": "MILLAY", + "code_postal": "58170", + "coordonnees_gps": [ + 46.8347484024, + 3.99024145825 + ], + "libelle_d_acheminement": "MILLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99024145825, + 46.8347484024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3a12ab974b2d18b354c9fd39d4de6e9f8a32324", + "fields": { + "code_commune_insee": "58169", + "nom_de_la_commune": "MOISSY MOULINOT", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3274392813, + 3.70660052795 + ], + "libelle_d_acheminement": "MOISSY MOULINOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70660052795, + 47.3274392813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ee08fbab1fe706cc2792f07bb46262353e4b218", + "fields": { + "code_commune_insee": "58170", + "nom_de_la_commune": "MONCEAUX LE COMTE", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3317643391, + 3.66490728626 + ], + "libelle_d_acheminement": "MONCEAUX LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66490728626, + 47.3317643391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b7394f13d866dfe555f421bc8827eef4f2d8ea0", + "fields": { + "code_commune_insee": "58171", + "nom_de_la_commune": "MONTAPAS", + "code_postal": "58110", + "coordonnees_gps": [ + 47.0809802706, + 3.58450998335 + ], + "libelle_d_acheminement": "MONTAPAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58450998335, + 47.0809802706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f45eb867aaa676001b3937989375d260feaeabd6", + "fields": { + "code_commune_insee": "58176", + "nom_de_la_commune": "MONTIGNY AUX AMOGNES", + "code_postal": "58130", + "coordonnees_gps": [ + 47.0255912053, + 3.27904541582 + ], + "libelle_d_acheminement": "MONTIGNY AUX AMOGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.27904541582, + 47.0255912053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13ca2f62cbff75567625da9c349415cbc06ad395", + "fields": { + "code_commune_insee": "58180", + "nom_de_la_commune": "MONTSAUCHE LES SETTONS", + "code_postal": "58230", + "coordonnees_gps": [ + 47.2140724484, + 4.03362547677 + ], + "libelle_d_acheminement": "MONTSAUCHE LES SETTONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03362547677, + 47.2140724484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26f9805c593659ef1220416797e9ed41052fe640", + "fields": { + "ligne_5": "LES SETTONS", + "code_commune_insee": "58180", + "libelle_d_acheminement": "MONTSAUCHE LES SETTONS", + "code_postal": "58230", + "nom_de_la_commune": "MONTSAUCHE LES SETTONS", + "coordonnees_gps": [ + 47.2140724484, + 4.03362547677 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03362547677, + 47.2140724484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84002072e787f2620f428f504a6260a8a04366c1", + "fields": { + "code_commune_insee": "58185", + "nom_de_la_commune": "MOUX EN MORVAN", + "code_postal": "58230", + "coordonnees_gps": [ + 47.1694217154, + 4.13049282693 + ], + "libelle_d_acheminement": "MOUX EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13049282693, + 47.1694217154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd0fb9c077a276c8c825d0cec5cffd2425b61618", + "fields": { + "code_commune_insee": "58187", + "nom_de_la_commune": "MYENNES", + "code_postal": "58440", + "coordonnees_gps": [ + 47.4543629223, + 2.94370342447 + ], + "libelle_d_acheminement": "MYENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94370342447, + 47.4543629223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11d3b236acce42ee5e76603d4945c1870ea2001d", + "fields": { + "code_commune_insee": "58192", + "nom_de_la_commune": "NEUVILLE LES DECIZE", + "code_postal": "58300", + "coordonnees_gps": [ + 46.7746439982, + 3.30128534052 + ], + "libelle_d_acheminement": "NEUVILLE LES DECIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30128534052, + 46.7746439982 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c6776661b552419f8cbdc19ac8cbbfc349ee7b3", + "fields": { + "code_commune_insee": "58196", + "nom_de_la_commune": "NOLAY", + "code_postal": "58700", + "coordonnees_gps": [ + 47.1179113926, + 3.33180523455 + ], + "libelle_d_acheminement": "NOLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33180523455, + 47.1179113926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afe898a804bc55f20ebd5028533935223b6e9326", + "fields": { + "code_commune_insee": "58197", + "nom_de_la_commune": "NUARS", + "code_postal": "58190", + "coordonnees_gps": [ + 47.388402075, + 3.70962662782 + ], + "libelle_d_acheminement": "NUARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70962662782, + 47.388402075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3511a088b4b12e1fa85fdb7f1550fc8599939c8a", + "fields": { + "code_commune_insee": "58199", + "nom_de_la_commune": "ONLAY", + "code_postal": "58370", + "coordonnees_gps": [ + 46.9672902471, + 3.89557358975 + ], + "libelle_d_acheminement": "ONLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89557358975, + 46.9672902471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5921aa57648a4088e542823b4e84b1658dff96d4", + "fields": { + "code_commune_insee": "58200", + "nom_de_la_commune": "OUAGNE", + "code_postal": "58500", + "coordonnees_gps": [ + 47.4020463013, + 3.49846601652 + ], + "libelle_d_acheminement": "OUAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49846601652, + 47.4020463013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cadbf985d6d3d5bf799d3505bd84ec5348bf59c0", + "fields": { + "code_commune_insee": "58205", + "nom_de_la_commune": "OUROUX EN MORVAN", + "code_postal": "58230", + "coordonnees_gps": [ + 47.1892092482, + 3.95313922801 + ], + "libelle_d_acheminement": "OUROUX EN MORVAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.95313922801, + 47.1892092482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bf55b0efdd29deccd122c34a3106c8d144f146e", + "fields": { + "code_commune_insee": "58207", + "nom_de_la_commune": "PARIGNY LES VAUX", + "code_postal": "58320", + "coordonnees_gps": [ + 47.1005907771, + 3.14628705959 + ], + "libelle_d_acheminement": "PARIGNY LES VAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14628705959, + 47.1005907771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c0ce483e89caec71713d54082d9f522ac528552", + "fields": { + "code_commune_insee": "58209", + "nom_de_la_commune": "PERROY", + "code_postal": "58220", + "coordonnees_gps": [ + 47.4048215524, + 3.16453961922 + ], + "libelle_d_acheminement": "PERROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16453961922, + 47.4048215524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc5a2161cd9985ea5f19576fd1f0f2a55aee965a", + "fields": { + "code_commune_insee": "58210", + "nom_de_la_commune": "PLANCHEZ", + "code_postal": "58230", + "coordonnees_gps": [ + 47.1427917023, + 4.02625107605 + ], + "libelle_d_acheminement": "PLANCHEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02625107605, + 47.1427917023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "531dcf26f9caadb081dcff809d752dccdccb4e9d", + "fields": { + "code_commune_insee": "58213", + "nom_de_la_commune": "POUGNY", + "code_postal": "58200", + "coordonnees_gps": [ + 47.3940156932, + 3.02397404784 + ], + "libelle_d_acheminement": "POUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02397404784, + 47.3940156932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2573369ae3e66da6014ae77149231682550c36c2", + "fields": { + "code_commune_insee": "58215", + "nom_de_la_commune": "POUILLY SUR LOIRE", + "code_postal": "58150", + "coordonnees_gps": [ + 47.2802139612, + 2.98240910916 + ], + "libelle_d_acheminement": "POUILLY SUR LOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98240910916, + 47.2802139612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9cd34a6fc2d1ab46350f2eb739acb38c8deeeae", + "fields": { + "code_commune_insee": "58227", + "nom_de_la_commune": "ST AMAND EN PUISAYE", + "code_postal": "58310", + "coordonnees_gps": [ + 47.548454274, + 3.07830606651 + ], + "libelle_d_acheminement": "ST AMAND EN PUISAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07830606651, + 47.548454274 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "832a5ab2297531135b574e2f24d9222475069322", + "fields": { + "code_commune_insee": "58231", + "nom_de_la_commune": "ST AUBIN LES FORGES", + "code_postal": "58130", + "coordonnees_gps": [ + 47.1430333562, + 3.18841485018 + ], + "libelle_d_acheminement": "ST AUBIN LES FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18841485018, + 47.1430333562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb8a9db850ba3c4e602f7ce1a263ac42cbc636e2", + "fields": { + "code_commune_insee": "58245", + "nom_de_la_commune": "ST HILAIRE FONTAINE", + "code_postal": "58300", + "coordonnees_gps": [ + 46.7751245255, + 3.63613180182 + ], + "libelle_d_acheminement": "ST HILAIRE FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63613180182, + 46.7751245255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd07bc4181d8a648e58b6577fdd53203dee619ff", + "fields": { + "code_commune_insee": "58247", + "nom_de_la_commune": "ST JEAN AUX AMOGNES", + "code_postal": "58270", + "coordonnees_gps": [ + 47.0088136491, + 3.34145655138 + ], + "libelle_d_acheminement": "ST JEAN AUX AMOGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34145655138, + 47.0088136491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c7a2d3551dec6a039c054e2457b68ccd4448529", + "fields": { + "code_commune_insee": "58251", + "nom_de_la_commune": "ST LOUP", + "code_postal": "58200", + "coordonnees_gps": [ + 47.4524727684, + 3.00689474871 + ], + "libelle_d_acheminement": "ST LOUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00689474871, + 47.4524727684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ead505eea61046c0426bb1c0fa9f633cb3db0d07", + "fields": { + "code_commune_insee": "58256", + "nom_de_la_commune": "ST MARTIN SUR NOHAIN", + "code_postal": "58150", + "coordonnees_gps": [ + 47.3584010694, + 2.98825176159 + ], + "libelle_d_acheminement": "ST MARTIN SUR NOHAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98825176159, + 47.3584010694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "679c5e7b3e3347f7e23de3c08815f20e45d362e0", + "fields": { + "code_commune_insee": "58257", + "nom_de_la_commune": "ST MAURICE", + "code_postal": "58330", + "coordonnees_gps": [ + 47.1123966682, + 3.56924225444 + ], + "libelle_d_acheminement": "ST MAURICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.56924225444, + 47.1123966682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0b93ed0895d60c58cd62fa97df1bf436a58615d", + "fields": { + "code_commune_insee": "58260", + "nom_de_la_commune": "ST PARIZE LE CHATEL", + "code_postal": "58490", + "coordonnees_gps": [ + 46.8507546576, + 3.18416300393 + ], + "libelle_d_acheminement": "ST PARIZE LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18416300393, + 46.8507546576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96da77be724d851d0da99f945d9bf393a346c0e2", + "fields": { + "ligne_5": "MOIRY", + "code_commune_insee": "58260", + "libelle_d_acheminement": "ST PARIZE LE CHATEL", + "code_postal": "58490", + "nom_de_la_commune": "ST PARIZE LE CHATEL", + "coordonnees_gps": [ + 46.8507546576, + 3.18416300393 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18416300393, + 46.8507546576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5aeb6e207a894791189a1134674f29ee6d4a0fe", + "fields": { + "code_commune_insee": "58261", + "nom_de_la_commune": "ST PERE", + "code_postal": "58200", + "coordonnees_gps": [ + 47.4038457466, + 2.97705623439 + ], + "libelle_d_acheminement": "ST PERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97705623439, + 47.4038457466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c07709e2a7b1ec1c6a577c93ce2a9e55e36accb6", + "fields": { + "code_commune_insee": "58262", + "nom_de_la_commune": "ST PEREUSE", + "code_postal": "58110", + "coordonnees_gps": [ + 47.0590546372, + 3.80877052884 + ], + "libelle_d_acheminement": "ST PEREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80877052884, + 47.0590546372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5ad61db037441d656faf83480852ff3ff980fe2", + "fields": { + "code_commune_insee": "58266", + "nom_de_la_commune": "ST REVERIEN", + "code_postal": "58420", + "coordonnees_gps": [ + 47.2035107176, + 3.50777909865 + ], + "libelle_d_acheminement": "ST REVERIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50777909865, + 47.2035107176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "146fc0ed2a3b43c06017f274bfddeea01a949fb4", + "fields": { + "code_commune_insee": "58273", + "nom_de_la_commune": "SAUVIGNY LES BOIS", + "code_postal": "58160", + "coordonnees_gps": [ + 46.977062374, + 3.2660919409 + ], + "libelle_d_acheminement": "SAUVIGNY LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2660919409, + 46.977062374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26ff461cd4244fe0e461ca9799a420d89dec6d3c", + "fields": { + "code_commune_insee": "58274", + "nom_de_la_commune": "SAVIGNY POIL FOL", + "code_postal": "58170", + "coordonnees_gps": [ + 46.7831055479, + 3.83512689838 + ], + "libelle_d_acheminement": "SAVIGNY POIL FOL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83512689838, + 46.7831055479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4082814b85aaa70c823006974a0d8637315d3a91", + "fields": { + "code_commune_insee": "58276", + "nom_de_la_commune": "SEMELAY", + "code_postal": "58360", + "coordonnees_gps": [ + 46.8611632045, + 3.86209285887 + ], + "libelle_d_acheminement": "SEMELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.86209285887, + 46.8611632045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27eaac5bb0507db2f547386c91bbeb364d791748", + "fields": { + "code_commune_insee": "58282", + "nom_de_la_commune": "SURGY", + "code_postal": "58500", + "coordonnees_gps": [ + 47.513493834, + 3.50606920534 + ], + "libelle_d_acheminement": "SURGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50606920534, + 47.513493834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7463dee21547430b0912527d9cb3d2e43933af33", + "fields": { + "code_commune_insee": "58284", + "nom_de_la_commune": "TALON", + "code_postal": "58190", + "coordonnees_gps": [ + 47.3349431775, + 3.55610298077 + ], + "libelle_d_acheminement": "TALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55610298077, + 47.3349431775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cafceddfed46cc896ff6f56b407ae531ee027aee", + "fields": { + "code_commune_insee": "58287", + "nom_de_la_commune": "TAZILLY", + "code_postal": "58170", + "coordonnees_gps": [ + 46.7589535788, + 3.91377772769 + ], + "libelle_d_acheminement": "TAZILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91377772769, + 46.7589535788 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf5c2522ceb7f972648b45e38560c870bf8a1fce", + "fields": { + "ligne_5": "BOISGIBAULT", + "code_commune_insee": "58295", + "libelle_d_acheminement": "TRACY SUR LOIRE", + "code_postal": "58150", + "nom_de_la_commune": "TRACY SUR LOIRE", + "coordonnees_gps": [ + 47.3288567643, + 2.91378042455 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91378042455, + 47.3288567643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1002316aa8e064aba78454ad252765e56a230d3f", + "fields": { + "code_commune_insee": "58302", + "nom_de_la_commune": "VARENNES LES NARCY", + "code_postal": "58400", + "coordonnees_gps": [ + 47.2120070847, + 3.06549723601 + ], + "libelle_d_acheminement": "VARENNES LES NARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06549723601, + 47.2120070847 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3483180f354ff2792638fad3ced6ffb1218b6d6e", + "fields": { + "code_commune_insee": "71533", + "nom_de_la_commune": "TANCON", + "code_postal": "71740", + "coordonnees_gps": [ + 46.2007159715, + 4.27045776133 + ], + "libelle_d_acheminement": "TANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.27045776133, + 46.2007159715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "388898fee1786430a34e6659d51cb3504c69553d", + "fields": { + "code_commune_insee": "58306", + "nom_de_la_commune": "VERNEUIL", + "code_postal": "58300", + "coordonnees_gps": [ + 46.8603735972, + 3.58244196837 + ], + "libelle_d_acheminement": "VERNEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58244196837, + 46.8603735972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bece3a5f7a024afa16c4451dad0d741bd30f5318", + "fields": { + "code_commune_insee": "71537", + "nom_de_la_commune": "THIL SUR ARROUX", + "code_postal": "71190", + "coordonnees_gps": [ + 46.8041058716, + 4.09212501715 + ], + "libelle_d_acheminement": "THIL SUR ARROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09212501715, + 46.8041058716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34970cbff36577662ef795d537722401140c753a", + "fields": { + "code_commune_insee": "58312", + "nom_de_la_commune": "VILLIERS SUR YONNE", + "code_postal": "58500", + "coordonnees_gps": [ + 47.4134941256, + 3.54865482568 + ], + "libelle_d_acheminement": "VILLIERS SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54865482568, + 47.4134941256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa71d59f679ff0ed4183baef2dcb7361ece0714f", + "fields": { + "code_commune_insee": "71538", + "nom_de_la_commune": "THUREY", + "code_postal": "71440", + "coordonnees_gps": [ + 46.7431263464, + 5.12562918719 + ], + "libelle_d_acheminement": "THUREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12562918719, + 46.7431263464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f4f435d57ef24f6e150f836dfff62666b4e39e2", + "fields": { + "code_commune_insee": "59002", + "nom_de_la_commune": "ABSCON", + "code_postal": "59215", + "coordonnees_gps": [ + 50.3283410844, + 3.29787586969 + ], + "libelle_d_acheminement": "ABSCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29787586969, + 50.3283410844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adda81d8288e2c05b6da43d5f6febf47f3cf7900", + "fields": { + "code_commune_insee": "71539", + "nom_de_la_commune": "TINTRY", + "code_postal": "71490", + "coordonnees_gps": [ + 46.9318626391, + 4.48929085952 + ], + "libelle_d_acheminement": "TINTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48929085952, + 46.9318626391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f42bb75d6884f91246ce0e060b0e27e03f018c20", + "fields": { + "code_commune_insee": "59004", + "nom_de_la_commune": "AIX EN PEVELE", + "code_postal": "59310", + "coordonnees_gps": [ + 50.498421043, + 3.30536772065 + ], + "libelle_d_acheminement": "AIX EN PEVELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30536772065, + 50.498421043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb4bc117f1882454de283973a82e4ece19427ebf", + "fields": { + "code_commune_insee": "71542", + "nom_de_la_commune": "TOULON SUR ARROUX", + "code_postal": "71320", + "coordonnees_gps": [ + 46.6826511645, + 4.14773994061 + ], + "libelle_d_acheminement": "TOULON SUR ARROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14773994061, + 46.6826511645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1c3740cb43ad3a8574fcb97d2ef5f3e369ab52b", + "fields": { + "code_commune_insee": "59017", + "nom_de_la_commune": "ARMENTIERES", + "code_postal": "59280", + "coordonnees_gps": [ + 50.6913797537, + 2.8797155328 + ], + "libelle_d_acheminement": "ARMENTIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8797155328, + 50.6913797537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bde2b29b417ea4b08ff538de18b9e2e12b796553", + "fields": { + "code_commune_insee": "71553", + "nom_de_la_commune": "VAREILLES", + "code_postal": "71800", + "coordonnees_gps": [ + 46.3003476512, + 4.2482812157 + ], + "libelle_d_acheminement": "VAREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2482812157, + 46.3003476512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "537389609c7eedd260edb8e7360ece0c7102507a", + "fields": { + "code_commune_insee": "59019", + "nom_de_la_commune": "ARTRES", + "code_postal": "59269", + "coordonnees_gps": [ + 50.2956596119, + 3.53884943565 + ], + "libelle_d_acheminement": "ARTRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53884943565, + 50.2956596119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5129bbc82c237655bd712628aa88d69c5e438caf", + "fields": { + "code_commune_insee": "71554", + "nom_de_la_commune": "VARENNE L ARCONCE", + "code_postal": "71110", + "coordonnees_gps": [ + 46.3412494667, + 4.15697497877 + ], + "libelle_d_acheminement": "VARENNE L ARCONCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15697497877, + 46.3412494667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "617533e24ec06636297eabe7e4d78103c8b4c9b7", + "fields": { + "code_commune_insee": "59029", + "nom_de_la_commune": "AUCHY LEZ ORCHIES", + "code_postal": "59310", + "coordonnees_gps": [ + 50.480622996, + 3.19519541331 + ], + "libelle_d_acheminement": "AUCHY LEZ ORCHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19519541331, + 50.480622996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f36023d3d350e7469843a786b0943b94ca067478", + "fields": { + "code_commune_insee": "71557", + "nom_de_la_commune": "VARENNE ST GERMAIN", + "code_postal": "71600", + "coordonnees_gps": [ + 46.4373098017, + 4.02659181571 + ], + "libelle_d_acheminement": "VARENNE ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02659181571, + 46.4373098017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0460b64d0495ee43aaf9d10c6aa14c5efde11ff7", + "fields": { + "code_commune_insee": "59032", + "nom_de_la_commune": "AULNOY LEZ VALENCIENNES", + "code_postal": "59300", + "coordonnees_gps": [ + 50.3261545044, + 3.53764264287 + ], + "libelle_d_acheminement": "AULNOY LEZ VALENCIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53764264287, + 50.3261545044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daee524fa35624bbb25fa0de9aee3e7f27537220", + "fields": { + "code_commune_insee": "71564", + "nom_de_la_commune": "VENDENESSE LES CHAROLLES", + "code_postal": "71120", + "coordonnees_gps": [ + 46.4407294835, + 4.35671809302 + ], + "libelle_d_acheminement": "VENDENESSE LES CHAROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35671809302, + 46.4407294835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3595cc3632c35274f4b52484a4a4ae70ea941839", + "fields": { + "code_commune_insee": "59038", + "nom_de_la_commune": "AVESNES LE SEC", + "code_postal": "59296", + "coordonnees_gps": [ + 50.2483988689, + 3.37145460907 + ], + "libelle_d_acheminement": "AVESNES LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37145460907, + 50.2483988689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79a2811ac8d675cff7a3550c6494b062075866fd", + "fields": { + "code_commune_insee": "71567", + "nom_de_la_commune": "VERGISSON", + "code_postal": "71960", + "coordonnees_gps": [ + 46.3095589166, + 4.71007119393 + ], + "libelle_d_acheminement": "VERGISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71007119393, + 46.3095589166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cda1789f7b703a3916ddcdcd74769f389a647302", + "fields": { + "code_commune_insee": "59044", + "nom_de_la_commune": "BAISIEUX", + "code_postal": "59780", + "coordonnees_gps": [ + 50.6111718868, + 3.24121907398 + ], + "libelle_d_acheminement": "BAISIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24121907398, + 50.6111718868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d8112c0e9b0914146251f724abd74c08f624e01", + "fields": { + "code_commune_insee": "71570", + "nom_de_la_commune": "VERJUX", + "code_postal": "71590", + "coordonnees_gps": [ + 46.877805287, + 4.97685538795 + ], + "libelle_d_acheminement": "VERJUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97685538795, + 46.877805287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa66e545aa5c3bc76b13c7d12116d90dcb22c5fb", + "fields": { + "code_commune_insee": "59049", + "nom_de_la_commune": "BANTOUZELLE", + "code_postal": "59266", + "coordonnees_gps": [ + 50.0579473391, + 3.22511810175 + ], + "libelle_d_acheminement": "BANTOUZELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22511810175, + 50.0579473391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a64c538a8830ff0d5bbeef30008cba871b7a5826", + "fields": { + "code_commune_insee": "71573", + "nom_de_la_commune": "VERSAUGUES", + "code_postal": "71110", + "coordonnees_gps": [ + 46.3674828886, + 4.07047999469 + ], + "libelle_d_acheminement": "VERSAUGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07047999469, + 46.3674828886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69f49e1f4669e107cc46805021c2d948c4e92ce6", + "fields": { + "code_commune_insee": "59051", + "nom_de_la_commune": "LA BASSEE", + "code_postal": "59480", + "coordonnees_gps": [ + 50.5397647046, + 2.80910290453 + ], + "libelle_d_acheminement": "LA BASSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80910290453, + 50.5397647046 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b7288450a9d492e7d3a0de4079d0b0317c2bb64", + "fields": { + "code_commune_insee": "71576", + "nom_de_la_commune": "LE VILLARS", + "code_postal": "71700", + "coordonnees_gps": [ + 46.5289774327, + 4.92186717271 + ], + "libelle_d_acheminement": "LE VILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92186717271, + 46.5289774327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ecefcec683f3ca4dde0d2bf793b99d04c712642", + "fields": { + "code_commune_insee": "59053", + "nom_de_la_commune": "BAVAY", + "code_postal": "59570", + "coordonnees_gps": [ + 50.2936087618, + 3.80308794658 + ], + "libelle_d_acheminement": "BAVAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80308794658, + 50.2936087618 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23632385599321eb23c523d9041cd2d1008c614a", + "fields": { + "ligne_5": "CLUX", + "code_commune_insee": "71578", + "libelle_d_acheminement": "CLUX VILLENEUVE", + "code_postal": "71270", + "nom_de_la_commune": "CLUX VILLENEUVE", + "coordonnees_gps": [ + 46.9572279729, + 5.16839319569 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16839319569, + 46.9572279729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3e9b52caf5ed26639fb8f667cd452b4e9aea787", + "fields": { + "code_commune_insee": "59056", + "nom_de_la_commune": "BEAUCAMPS LIGNY", + "code_postal": "59134", + "coordonnees_gps": [ + 50.6062622747, + 2.9147903974 + ], + "libelle_d_acheminement": "BEAUCAMPS LIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9147903974, + 50.6062622747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f804757b6399333c49067136127966a4c776ccd0", + "fields": { + "code_commune_insee": "71579", + "nom_de_la_commune": "VILLENEUVE EN MONTAGNE", + "code_postal": "71390", + "coordonnees_gps": [ + 46.7620859327, + 4.58923358635 + ], + "libelle_d_acheminement": "VILLENEUVE EN MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.58923358635, + 46.7620859327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b801bb6a477e79ec739c90d2819648128b072f41", + "fields": { + "code_commune_insee": "59074", + "nom_de_la_commune": "BERTRY", + "code_postal": "59980", + "coordonnees_gps": [ + 50.0823963526, + 3.43983505864 + ], + "libelle_d_acheminement": "BERTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43983505864, + 50.0823963526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80a0eb63950839d24aab0c29b7ccec01970f91a1", + "fields": { + "ligne_5": "DONZY LE NATIONAL", + "code_commune_insee": "71582", + "libelle_d_acheminement": "LA VINEUSE SUR FREGANDE", + "code_postal": "71250", + "nom_de_la_commune": "LA VINEUSE SUR FREGANDE", + "coordonnees_gps": [ + 46.4606978689, + 4.60125621922 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60125621922, + 46.4606978689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9489da3585c707759ba272ff467237187494d45f", + "fields": { + "code_commune_insee": "59078", + "nom_de_la_commune": "BEUGNIES", + "code_postal": "59216", + "coordonnees_gps": [ + 50.1628708508, + 3.99516722908 + ], + "libelle_d_acheminement": "BEUGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99516722908, + 50.1628708508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c60a740165717d9dbbf466fc7cad39286967481f", + "fields": { + "code_commune_insee": "71583", + "nom_de_la_commune": "VINZELLES", + "code_postal": "71680", + "coordonnees_gps": [ + 46.2679286558, + 4.77751474902 + ], + "libelle_d_acheminement": "VINZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77751474902, + 46.2679286558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16ad13336a16a188b36ded20802e68f7545dd385", + "fields": { + "code_commune_insee": "59079", + "nom_de_la_commune": "BEUVRAGES", + "code_postal": "59192", + "coordonnees_gps": [ + 50.3883826633, + 3.50595410504 + ], + "libelle_d_acheminement": "BEUVRAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50595410504, + 50.3883826633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e237a02f4d0d1e315fe178919f225fd0a5680e2", + "fields": { + "ligne_5": "VERIZET", + "code_commune_insee": "71584", + "libelle_d_acheminement": "VIRE", + "code_postal": "71260", + "nom_de_la_commune": "VIRE", + "coordonnees_gps": [ + 46.4445923499, + 4.84966677485 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84966677485, + 46.4445923499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b901724ea461be609684b8353de05acdccf1c8c5", + "fields": { + "code_commune_insee": "59082", + "nom_de_la_commune": "BIERNE", + "code_postal": "59380", + "coordonnees_gps": [ + 50.9713270565, + 2.40211995661 + ], + "libelle_d_acheminement": "BIERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40211995661, + 50.9713270565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be91be0e3d64ce1c92e64799cda23754e00ad1df", + "fields": { + "code_commune_insee": "71588", + "nom_de_la_commune": "VITRY EN CHAROLLAIS", + "code_postal": "71600", + "coordonnees_gps": [ + 46.4610227833, + 4.0599685169 + ], + "libelle_d_acheminement": "VITRY EN CHAROLLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0599685169, + 46.4610227833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5a4a2dba7650d12dff9fcda703abb8809d96c820", + "fields": { + "code_commune_insee": "59088", + "nom_de_la_commune": "BOIS GRENIER", + "code_postal": "59280", + "coordonnees_gps": [ + 50.6487129112, + 2.87274435291 + ], + "libelle_d_acheminement": "BOIS GRENIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87274435291, + 50.6487129112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52ef7883a0c47589b519a32f6e21f9dedaf46046", + "fields": { + "code_commune_insee": "72001", + "nom_de_la_commune": "AIGNE", + "code_postal": "72650", + "coordonnees_gps": [ + 48.0674422633, + 0.105520640211 + ], + "libelle_d_acheminement": "AIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.105520640211, + 48.0674422633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efaba4d9c189ffd45866f4c90d21eda86d55f30e", + "fields": { + "code_commune_insee": "59093", + "nom_de_la_commune": "BOULOGNE SUR HELPE", + "code_postal": "59440", + "coordonnees_gps": [ + 50.0790302636, + 3.89209548407 + ], + "libelle_d_acheminement": "BOULOGNE SUR HELPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89209548407, + 50.0790302636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9135ab735adf43831ad5e26de406b428340b567", + "fields": { + "code_commune_insee": "72002", + "nom_de_la_commune": "AILLIERES BEAUVOIR", + "code_postal": "72600", + "coordonnees_gps": [ + 48.3996493639, + 0.321252383862 + ], + "libelle_d_acheminement": "AILLIERES BEAUVOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.321252383862, + 48.3996493639 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ae53c8e72c8bb6d9f294d48d4d79ab5074bb9c1", + "fields": { + "code_commune_insee": "59096", + "nom_de_la_commune": "BOURGHELLES", + "code_postal": "59830", + "coordonnees_gps": [ + 50.5637205192, + 3.24739149692 + ], + "libelle_d_acheminement": "BOURGHELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24739149692, + 50.5637205192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12b06f6a55cbf1e66d7b69b93d3514223edf36fa", + "fields": { + "code_commune_insee": "72010", + "nom_de_la_commune": "ASNIERES SUR VEGRE", + "code_postal": "72430", + "coordonnees_gps": [ + 47.886353314, + -0.226358103893 + ], + "libelle_d_acheminement": "ASNIERES SUR VEGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.226358103893, + 47.886353314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7891f86426ff5775d131d5af041dd7f569c1b40", + "fields": { + "code_commune_insee": "59104", + "nom_de_la_commune": "BOUSSOIS", + "code_postal": "59168", + "coordonnees_gps": [ + 50.2948725712, + 4.04711513653 + ], + "libelle_d_acheminement": "BOUSSOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04711513653, + 50.2948725712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec3c07b718ead4ad2ed2f851f4bce0304bcf1255", + "fields": { + "code_commune_insee": "72013", + "nom_de_la_commune": "AUBIGNE RACAN", + "code_postal": "72800", + "coordonnees_gps": [ + 47.6839620406, + 0.250420617503 + ], + "libelle_d_acheminement": "AUBIGNE RACAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.250420617503, + 47.6839620406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b313a84a94eaa8239f6f6f4ccb29e882396f24f0", + "fields": { + "code_commune_insee": "59105", + "nom_de_la_commune": "BOUVIGNIES", + "code_postal": "59870", + "coordonnees_gps": [ + 50.432750868, + 3.23662350637 + ], + "libelle_d_acheminement": "BOUVIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23662350637, + 50.432750868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23ed40a9b3e1e606198093a1c4a24a49c9c0c9b0", + "fields": { + "code_commune_insee": "72018", + "nom_de_la_commune": "AVESNES EN SAOSNOIS", + "code_postal": "72260", + "coordonnees_gps": [ + 48.2660508765, + 0.358662177926 + ], + "libelle_d_acheminement": "AVESNES EN SAOSNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.358662177926, + 48.2660508765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ef10b04fe17ead3a5f37477bb9dc50908cde27c", + "fields": { + "code_commune_insee": "59107", + "nom_de_la_commune": "BRAY DUNES", + "code_postal": "59123", + "coordonnees_gps": [ + 51.0730436867, + 2.52764870458 + ], + "libelle_d_acheminement": "BRAY DUNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52764870458, + 51.0730436867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ce137a882a3decf25547353c0d943359ae88932", + "fields": { + "code_commune_insee": "72024", + "nom_de_la_commune": "LA BAZOGE", + "code_postal": "72650", + "coordonnees_gps": [ + 48.1027362098, + 0.14422733228 + ], + "libelle_d_acheminement": "LA BAZOGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.14422733228, + 48.1027362098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d796de93e3600592dd3784087e88e95b2202facd", + "fields": { + "code_commune_insee": "59114", + "nom_de_la_commune": "BRUILLE ST AMAND", + "code_postal": "59199", + "coordonnees_gps": [ + 50.4652689949, + 3.50624365329 + ], + "libelle_d_acheminement": "BRUILLE ST AMAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50624365329, + 50.4652689949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c938d811630e523713ffb25a4f348a62a7375512", + "fields": { + "ligne_5": "CRE SUR LOIR", + "code_commune_insee": "72025", + "libelle_d_acheminement": "BAZOUGES CRE SUR LOIR", + "code_postal": "72200", + "nom_de_la_commune": "BAZOUGES CRE SUR LOIR", + "coordonnees_gps": [ + 47.6856990287, + -0.172011886332 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.172011886332, + 47.6856990287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58eea5878b42845a84a82c2a5604c97fb3c7af46", + "fields": { + "code_commune_insee": "59115", + "nom_de_la_commune": "BRUNEMONT", + "code_postal": "59151", + "coordonnees_gps": [ + 50.2745061343, + 3.14482312096 + ], + "libelle_d_acheminement": "BRUNEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14482312096, + 50.2745061343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d7f11acbc208d57c955d1b3b9411d2c075c63a0", + "fields": { + "code_commune_insee": "72026", + "nom_de_la_commune": "BEAUFAY", + "code_postal": "72110", + "coordonnees_gps": [ + 48.1423466194, + 0.342290713803 + ], + "libelle_d_acheminement": "BEAUFAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.342290713803, + 48.1423466194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69884bf6e5076ddc5ac64068ea6d5aed92545c5f", + "fields": { + "code_commune_insee": "59130", + "nom_de_la_commune": "CAPPELLE BROUCK", + "code_postal": "59630", + "coordonnees_gps": [ + 50.8938368005, + 2.22204306272 + ], + "libelle_d_acheminement": "CAPPELLE BROUCK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22204306272, + 50.8938368005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "afbc8f6e5052b10b50e3ef076a7a17165f3e25f3", + "fields": { + "code_commune_insee": "72029", + "nom_de_la_commune": "BEAUMONT SUR SARTHE", + "code_postal": "72170", + "coordonnees_gps": [ + 48.2246887958, + 0.112408293978 + ], + "libelle_d_acheminement": "BEAUMONT SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.112408293978, + 48.2246887958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a14f6abb5ae6ec3000922b440ca6dd583e7f8411", + "fields": { + "code_commune_insee": "59131", + "nom_de_la_commune": "CAPPELLE LA GRANDE", + "code_postal": "59180", + "coordonnees_gps": [ + 50.9960740777, + 2.37003367458 + ], + "libelle_d_acheminement": "CAPPELLE LA GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37003367458, + 50.9960740777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6978b2e9ebf957e9c3a3e5349d307779d478af6b", + "fields": { + "code_commune_insee": "72031", + "nom_de_la_commune": "BEILLE", + "code_postal": "72160", + "coordonnees_gps": [ + 48.0830099686, + 0.509137455093 + ], + "libelle_d_acheminement": "BEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.509137455093, + 48.0830099686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e555cafc1f69d25037abee404aeceaf042f24223", + "fields": { + "code_commune_insee": "59136", + "nom_de_la_commune": "LE CATEAU CAMBRESIS", + "code_postal": "59360", + "coordonnees_gps": [ + 50.0920093814, + 3.53922472873 + ], + "libelle_d_acheminement": "LE CATEAU CAMBRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53922472873, + 50.0920093814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d0500f103616e5b28b6ce009b873ac8f8cc2faf", + "fields": { + "code_commune_insee": "72037", + "nom_de_la_commune": "BLEVES", + "code_postal": "72600", + "coordonnees_gps": [ + 48.4494580566, + 0.335584256031 + ], + "libelle_d_acheminement": "BLEVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.335584256031, + 48.4494580566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "193d8dd85fbde4108ceba5306270528a4ef92a93", + "fields": { + "code_commune_insee": "59149", + "nom_de_la_commune": "CLARY", + "code_postal": "59225", + "coordonnees_gps": [ + 50.0684086956, + 3.39589708434 + ], + "libelle_d_acheminement": "CLARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39589708434, + 50.0684086956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75c9e077634d101a810a8940c0d52ec344d20d36", + "fields": { + "code_commune_insee": "72040", + "nom_de_la_commune": "LA BOSSE", + "code_postal": "72400", + "coordonnees_gps": [ + 48.1635194155, + 0.546593401051 + ], + "libelle_d_acheminement": "LA BOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.546593401051, + 48.1635194155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6d245dc045847839ef2e57fa9a5fa87c0ac64b5", + "fields": { + "code_commune_insee": "59158", + "nom_de_la_commune": "COUTICHES", + "code_postal": "59310", + "coordonnees_gps": [ + 50.4501366141, + 3.19335565357 + ], + "libelle_d_acheminement": "COUTICHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19335565357, + 50.4501366141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43a8311ac80e6cf3626df06bc5cdf4a2d4978cf3", + "fields": { + "code_commune_insee": "72041", + "nom_de_la_commune": "BOUER", + "code_postal": "72390", + "coordonnees_gps": [ + 48.0763794687, + 0.633804754102 + ], + "libelle_d_acheminement": "BOUER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.633804754102, + 48.0763794687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01d139a5b32db36d2ef5be538c76d80ca4efb8a4", + "fields": { + "ligne_5": "BLANC MISSERON ANF", + "code_commune_insee": "59160", + "libelle_d_acheminement": "CRESPIN", + "code_postal": "59154", + "nom_de_la_commune": "CRESPIN", + "coordonnees_gps": [ + 50.4217331557, + 3.65237979993 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65237979993, + 50.4217331557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bb8a89fba9277d94c09a553b980d5d6e5295e37", + "fields": { + "code_commune_insee": "72044", + "nom_de_la_commune": "BOUSSE", + "code_postal": "72270", + "coordonnees_gps": [ + 47.7609072838, + -0.0629491331709 + ], + "libelle_d_acheminement": "BOUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0629491331709, + 47.7609072838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c919ef036756423d3713d2df14c5acf08d46acfd", + "fields": { + "code_commune_insee": "59166", + "nom_de_la_commune": "CURGIES", + "code_postal": "59990", + "coordonnees_gps": [ + 50.3253821605, + 3.60666630753 + ], + "libelle_d_acheminement": "CURGIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60666630753, + 50.3253821605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57b96017079eb13c607db49774564ffa061741ff", + "fields": { + "code_commune_insee": "72047", + "nom_de_la_commune": "BRETTE LES PINS", + "code_postal": "72250", + "coordonnees_gps": [ + 47.9107877747, + 0.326771387948 + ], + "libelle_d_acheminement": "BRETTE LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.326771387948, + 47.9107877747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0942de5579279e5e56a453b5de103a6bd9d52597", + "fields": { + "code_commune_insee": "59167", + "nom_de_la_commune": "CUVILLERS", + "code_postal": "59268", + "coordonnees_gps": [ + 50.2219798771, + 3.23832511042 + ], + "libelle_d_acheminement": "CUVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23832511042, + 50.2219798771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07aadb1d56ab299ebd6a41973a160279f7afcf95", + "fields": { + "code_commune_insee": "72054", + "nom_de_la_commune": "CHAMPAGNE", + "code_postal": "72470", + "coordonnees_gps": [ + 48.0162619913, + 0.333986746648 + ], + "libelle_d_acheminement": "CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.333986746648, + 48.0162619913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceca3e8b3a5bdddfac4c98325f1c72cafaa15abe", + "fields": { + "code_commune_insee": "59171", + "nom_de_la_commune": "DEHERIES", + "code_postal": "59127", + "coordonnees_gps": [ + 50.0505594446, + 3.34352939122 + ], + "libelle_d_acheminement": "DEHERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34352939122, + 50.0505594446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dca81f8a9c4d896164c3a7bbd8327964c224411", + "fields": { + "code_commune_insee": "72057", + "nom_de_la_commune": "CHAMPROND", + "code_postal": "72320", + "coordonnees_gps": [ + 48.0829601424, + 0.747203594283 + ], + "libelle_d_acheminement": "CHAMPROND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.747203594283, + 48.0829601424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be91c00a4f6f7309f563fcc0c5fe5f49f5def65b", + "fields": { + "code_commune_insee": "59174", + "nom_de_la_commune": "DIMECHAUX", + "code_postal": "59740", + "coordonnees_gps": [ + 50.1970283505, + 4.04666180439 + ], + "libelle_d_acheminement": "DIMECHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04666180439, + 50.1970283505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3f9b2999710c36569e457376312606ba262d05c", + "fields": { + "code_commune_insee": "72062", + "nom_de_la_commune": "LA CHAPELLE DU BOIS", + "code_postal": "72400", + "coordonnees_gps": [ + 48.2270021313, + 0.583491271516 + ], + "libelle_d_acheminement": "LA CHAPELLE DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.583491271516, + 48.2270021313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66deccef0744ee187fa88d50310a9d6692f8e5ab", + "fields": { + "code_commune_insee": "59175", + "nom_de_la_commune": "DIMONT", + "code_postal": "59216", + "coordonnees_gps": [ + 50.1830406458, + 4.02228377235 + ], + "libelle_d_acheminement": "DIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02228377235, + 50.1830406458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f53592026598908b30af108b2bffeaa2dee9f974", + "fields": { + "code_commune_insee": "72066", + "nom_de_la_commune": "LA CHAPELLE ST FRAY", + "code_postal": "72240", + "coordonnees_gps": [ + 48.1087340469, + 0.0912246143378 + ], + "libelle_d_acheminement": "LA CHAPELLE ST FRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0912246143378, + 48.1087340469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50f625da4d408130855783276cd4e7aaadc59940", + "fields": { + "code_commune_insee": "59176", + "nom_de_la_commune": "DOIGNIES", + "code_postal": "59400", + "coordonnees_gps": [ + 50.1321485769, + 3.01379384494 + ], + "libelle_d_acheminement": "DOIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01379384494, + 50.1321485769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee5a149bcc049f627bcb814a6f088eb227bc5de0", + "fields": { + "code_commune_insee": "72067", + "nom_de_la_commune": "LA CHAPELLE ST REMY", + "code_postal": "72160", + "coordonnees_gps": [ + 48.1038981246, + 0.465068388198 + ], + "libelle_d_acheminement": "LA CHAPELLE ST REMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.465068388198, + 48.1038981246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffc4a9cc48c18fa0566f361aabb6d406669dcac2", + "fields": { + "code_commune_insee": "59177", + "nom_de_la_commune": "DOMPIERRE SUR HELPE", + "code_postal": "59440", + "coordonnees_gps": [ + 50.1420178536, + 3.8595206672 + ], + "libelle_d_acheminement": "DOMPIERRE SUR HELPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8595206672, + 50.1420178536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00d299cd1b9d7ba7a25653b8a2b9e687eb31fc59", + "fields": { + "code_commune_insee": "72068", + "nom_de_la_commune": "LA CHARTRE SUR LE LOIR", + "code_postal": "72340", + "coordonnees_gps": [ + 47.7303686417, + 0.582042206339 + ], + "libelle_d_acheminement": "LA CHARTRE SUR LE LOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.582042206339, + 47.7303686417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba00e761468b7e5738b99b9de70f66aff60d60e3", + "fields": { + "code_commune_insee": "59178", + "nom_de_la_commune": "DOUAI", + "code_postal": "59500", + "coordonnees_gps": [ + 50.3823195335, + 3.09145683114 + ], + "libelle_d_acheminement": "DOUAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09145683114, + 50.3823195335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "794eddf1e8e8a1b1733484f5fcccf172a5937819", + "fields": { + "ligne_5": "CHATEAU DU LOIR", + "code_commune_insee": "72071", + "libelle_d_acheminement": "MONTVAL SUR LOIR", + "code_postal": "72500", + "nom_de_la_commune": "MONTVAL SUR LOIR", + "coordonnees_gps": [ + 47.702207042, + 0.430642762781 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.430642762781, + 47.702207042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a0eeb737bc18f676271e7fe99c03a4258c8aaba", + "fields": { + "ligne_5": "DORIGNIES", + "code_commune_insee": "59178", + "libelle_d_acheminement": "DOUAI", + "code_postal": "59500", + "nom_de_la_commune": "DOUAI", + "coordonnees_gps": [ + 50.3823195335, + 3.09145683114 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09145683114, + 50.3823195335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98a498c40676a5b7372e368c62ac258f1ce02335", + "fields": { + "code_commune_insee": "72074", + "nom_de_la_commune": "CHEMIRE EN CHARNIE", + "code_postal": "72540", + "coordonnees_gps": [ + 48.0532260742, + -0.202932424744 + ], + "libelle_d_acheminement": "CHEMIRE EN CHARNIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.202932424744, + 48.0532260742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cf63596f642a59c071347c794196354f78a079b", + "fields": { + "code_commune_insee": "59183", + "nom_de_la_commune": "DUNKERQUE", + "code_postal": "59140", + "coordonnees_gps": [ + 51.0307229078, + 2.33752414095 + ], + "libelle_d_acheminement": "DUNKERQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33752414095, + 51.0307229078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6548a17fe19eb61c09699213940087e05701aa5", + "fields": { + "code_commune_insee": "72077", + "nom_de_la_commune": "CHENU", + "code_postal": "72500", + "coordonnees_gps": [ + 47.6037065733, + 0.355437020509 + ], + "libelle_d_acheminement": "CHENU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.355437020509, + 47.6037065733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e18dad792c826edb53917ff06485ca49299d5f9a", + "fields": { + "code_commune_insee": "59183", + "nom_de_la_commune": "DUNKERQUE", + "code_postal": "59240", + "coordonnees_gps": [ + 51.0307229078, + 2.33752414095 + ], + "libelle_d_acheminement": "DUNKERQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33752414095, + 51.0307229078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c041521e27076e561073ccedd73b7efdc3c74b16", + "fields": { + "code_commune_insee": "72078", + "nom_de_la_commune": "CHERANCE", + "code_postal": "72170", + "coordonnees_gps": [ + 48.2814181284, + 0.175668329779 + ], + "libelle_d_acheminement": "CHERANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.175668329779, + 48.2814181284 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d410c7d01682f5b89926047978ee72a9a254bd7", + "fields": { + "code_commune_insee": "59184", + "nom_de_la_commune": "EBBLINGHEM", + "code_postal": "59173", + "coordonnees_gps": [ + 50.734564266, + 2.41884672597 + ], + "libelle_d_acheminement": "EBBLINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41884672597, + 50.734564266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f67f91dda68291b475366d9e64c57d7b05c8a48", + "fields": { + "code_commune_insee": "72083", + "nom_de_la_commune": "CHEVILLE", + "code_postal": "72350", + "coordonnees_gps": [ + 47.9421921001, + -0.218013743743 + ], + "libelle_d_acheminement": "CHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.218013743743, + 47.9421921001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab491df2713b3dc846e0d70f89d7427ef4297245", + "fields": { + "code_commune_insee": "59185", + "nom_de_la_commune": "ECAILLON", + "code_postal": "59176", + "coordonnees_gps": [ + 50.3482315234, + 3.21529635453 + ], + "libelle_d_acheminement": "ECAILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21529635453, + 50.3482315234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcae081928f0fbb255f9a838a2aabe9f4d1cf3c6", + "fields": { + "code_commune_insee": "72085", + "nom_de_la_commune": "COGNERS", + "code_postal": "72310", + "coordonnees_gps": [ + 47.8617807064, + 0.654044888377 + ], + "libelle_d_acheminement": "COGNERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.654044888377, + 47.8617807064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cec93354a631aaa9dd98c37bda2f2227faef129", + "fields": { + "code_commune_insee": "59186", + "nom_de_la_commune": "ECCLES", + "code_postal": "59740", + "coordonnees_gps": [ + 50.1988413348, + 4.09813341605 + ], + "libelle_d_acheminement": "ECCLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09813341605, + 50.1988413348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35cc433137e29bd7e625e774ea0502545dc92be9", + "fields": { + "code_commune_insee": "72093", + "nom_de_la_commune": "CORMES", + "code_postal": "72400", + "coordonnees_gps": [ + 48.1679248052, + 0.708991713095 + ], + "libelle_d_acheminement": "CORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.708991713095, + 48.1679248052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c68ab70e318b5b4107faa138d8413852b5a6d8c", + "fields": { + "code_commune_insee": "59188", + "nom_de_la_commune": "ECUELIN", + "code_postal": "59620", + "coordonnees_gps": [ + 50.1924531151, + 3.89604149257 + ], + "libelle_d_acheminement": "ECUELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89604149257, + 50.1924531151 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f130ea9010df11c95a9e53ef777a1552de5b1ea", + "fields": { + "code_commune_insee": "72094", + "nom_de_la_commune": "COUDRECIEUX", + "code_postal": "72440", + "coordonnees_gps": [ + 47.9853818366, + 0.625962425017 + ], + "libelle_d_acheminement": "COUDRECIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.625962425017, + 47.9853818366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43fa79ecfc943db3f83e2206ac393e30793d29c5", + "fields": { + "code_commune_insee": "59190", + "nom_de_la_commune": "ELESMES", + "code_postal": "59600", + "coordonnees_gps": [ + 50.3048578036, + 4.01140019092 + ], + "libelle_d_acheminement": "ELESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01140019092, + 50.3048578036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "002eb59493078a8403f7a6e6d05bfa4926a98566", + "fields": { + "ligne_5": "BRIVES", + "code_commune_insee": "72103", + "libelle_d_acheminement": "COURDEMANCHE", + "code_postal": "72150", + "nom_de_la_commune": "COURDEMANCHE", + "coordonnees_gps": [ + 47.8164349745, + 0.555120405736 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.555120405736, + 47.8164349745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e295dc8aa14c40f9db2c360311e7abc37583254", + "fields": { + "code_commune_insee": "59191", + "nom_de_la_commune": "ELINCOURT", + "code_postal": "59127", + "coordonnees_gps": [ + 50.0457660349, + 3.37059499043 + ], + "libelle_d_acheminement": "ELINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37059499043, + 50.0457660349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8baa2f76f00b1e41ec93920282a05f33e31dd039", + "fields": { + "code_commune_insee": "72104", + "nom_de_la_commune": "COURGAINS", + "code_postal": "72260", + "coordonnees_gps": [ + 48.2907641209, + 0.2766633169 + ], + "libelle_d_acheminement": "COURGAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.2766633169, + 48.2907641209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18a3ccb612203acd4dd44fd5277150f992f2096b", + "fields": { + "code_commune_insee": "59197", + "nom_de_la_commune": "ENNEVELIN", + "code_postal": "59710", + "coordonnees_gps": [ + 50.5387195422, + 3.12792567754 + ], + "libelle_d_acheminement": "ENNEVELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12792567754, + 50.5387195422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42274b155d9bde3e15071b612787285a7b8290ec", + "fields": { + "code_commune_insee": "72105", + "nom_de_la_commune": "COURGENARD", + "code_postal": "72320", + "coordonnees_gps": [ + 48.1573993444, + 0.739824903678 + ], + "libelle_d_acheminement": "COURGENARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.739824903678, + 48.1573993444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47619ed229f6af4dd1afddfc2341be88e6f4ef2f", + "fields": { + "code_commune_insee": "59205", + "nom_de_la_commune": "ESCAUDAIN", + "code_postal": "59124", + "coordonnees_gps": [ + 50.3339160351, + 3.34129451552 + ], + "libelle_d_acheminement": "ESCAUDAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34129451552, + 50.3339160351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d7ab1c3adc784178435bf36b6ca5722c69d098e", + "fields": { + "code_commune_insee": "72120", + "nom_de_la_commune": "DOUCELLES", + "code_postal": "72170", + "coordonnees_gps": [ + 48.2560536745, + 0.183617363347 + ], + "libelle_d_acheminement": "DOUCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.183617363347, + 48.2560536745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9075b0b0646a79226a60e280fab4a6e3a37cccbf", + "fields": { + "code_commune_insee": "59212", + "nom_de_la_commune": "ESTAIRES", + "code_postal": "59940", + "coordonnees_gps": [ + 50.654423304, + 2.72156583757 + ], + "libelle_d_acheminement": "ESTAIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72156583757, + 50.654423304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b139bec9fef031db8596caa692de3168102f8f9", + "fields": { + "code_commune_insee": "72123", + "nom_de_la_commune": "DUREIL", + "code_postal": "72270", + "coordonnees_gps": [ + 47.8298601879, + -0.134234804932 + ], + "libelle_d_acheminement": "DUREIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.134234804932, + 47.8298601879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02aa5abf881bb2cc14c5e8aad7449863c88ad76a", + "fields": { + "code_commune_insee": "59213", + "nom_de_la_commune": "ESTOURMEL", + "code_postal": "59400", + "coordonnees_gps": [ + 50.1518286613, + 3.32132515587 + ], + "libelle_d_acheminement": "ESTOURMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.32132515587, + 50.1518286613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c72715d69558f4717a85ea5404dbcdb0f61462af", + "fields": { + "code_commune_insee": "72126", + "nom_de_la_commune": "EPINEU LE CHEVREUIL", + "code_postal": "72540", + "coordonnees_gps": [ + 48.0405286412, + -0.132212278832 + ], + "libelle_d_acheminement": "EPINEU LE CHEVREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.132212278832, + 48.0405286412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "731208d380024692c83d2a93926c782edad6a6fe", + "fields": { + "code_commune_insee": "59215", + "nom_de_la_commune": "ESTREUX", + "code_postal": "59990", + "coordonnees_gps": [ + 50.3527239271, + 3.60184515387 + ], + "libelle_d_acheminement": "ESTREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60184515387, + 50.3527239271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b94c3221856975e859db346a5015fbb523cf4faa", + "fields": { + "code_commune_insee": "72127", + "nom_de_la_commune": "ETIVAL LES LE MANS", + "code_postal": "72700", + "coordonnees_gps": [ + 47.9634415619, + 0.077249958248 + ], + "libelle_d_acheminement": "ETIVAL LES LE MANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.077249958248, + 47.9634415619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6fb02d4b96f280b72e266c3310121ad3c0e098d", + "fields": { + "code_commune_insee": "59222", + "nom_de_la_commune": "FAUMONT", + "code_postal": "59310", + "coordonnees_gps": [ + 50.4531008477, + 3.13526855992 + ], + "libelle_d_acheminement": "FAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13526855992, + 50.4531008477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18509a062e2ce330bb358390def7b835347efae3", + "fields": { + "code_commune_insee": "72132", + "nom_de_la_commune": "LA FERTE BERNARD", + "code_postal": "72400", + "coordonnees_gps": [ + 48.1842560568, + 0.634694806211 + ], + "libelle_d_acheminement": "LA FERTE BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.634694806211, + 48.1842560568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50bb13f3d19d0a64fd1cb56f4fb730fbd0a2f524", + "fields": { + "code_commune_insee": "59225", + "nom_de_la_commune": "FEIGNIES", + "code_postal": "59750", + "coordonnees_gps": [ + 50.2944744456, + 3.90909278075 + ], + "libelle_d_acheminement": "FEIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.90909278075, + 50.2944744456 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67bc36f2e565fbd7a873a4fcd3de962249f2eb1b", + "fields": { + "code_commune_insee": "72133", + "nom_de_la_commune": "FILLE", + "code_postal": "72210", + "coordonnees_gps": [ + 47.9023789335, + 0.115228035183 + ], + "libelle_d_acheminement": "FILLE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.115228035183, + 47.9023789335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc231e5b3c63993742180484fb3f25976cfb017a", + "fields": { + "code_commune_insee": "59229", + "nom_de_la_commune": "FERON", + "code_postal": "59610", + "coordonnees_gps": [ + 50.0482056585, + 4.01906957461 + ], + "libelle_d_acheminement": "FERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01906957461, + 50.0482056585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7653c745a92269738c890af75f368619c60e509d", + "fields": { + "code_commune_insee": "72134", + "nom_de_la_commune": "FLEE", + "code_postal": "72500", + "coordonnees_gps": [ + 47.7316026242, + 0.457355528125 + ], + "libelle_d_acheminement": "FLEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.457355528125, + 47.7316026242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83de44d81c7f656891fce8312a31b483e23bdef8", + "fields": { + "code_commune_insee": "59239", + "nom_de_la_commune": "FLINES LEZ RACHES", + "code_postal": "59148", + "coordonnees_gps": [ + 50.4164214514, + 3.18241517385 + ], + "libelle_d_acheminement": "FLINES LEZ RACHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18241517385, + 50.4164214514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "370539a8e9af589cb79b1c2a42955075d1099dc6", + "fields": { + "ligne_5": "CHASSE", + "code_commune_insee": "72137", + "libelle_d_acheminement": "VILLENEUVE EN PERSEIGNE", + "code_postal": "72600", + "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", + "coordonnees_gps": [ + 48.4380499533, + 0.236852667784 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236852667784, + 48.4380499533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8da2dbcdc74aa7e32ce0e9f0f76aa284c4dc8d2", + "fields": { + "code_commune_insee": "59241", + "nom_de_la_commune": "FLOYON", + "code_postal": "59219", + "coordonnees_gps": [ + 50.0412036226, + 3.88418001471 + ], + "libelle_d_acheminement": "FLOYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88418001471, + 50.0412036226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2be97b916fa594f87d70b4bdb8fd28e081a23122", + "fields": { + "ligne_5": "MONTIGNY", + "code_commune_insee": "72137", + "libelle_d_acheminement": "VILLENEUVE EN PERSEIGNE", + "code_postal": "72600", + "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", + "coordonnees_gps": [ + 48.4380499533, + 0.236852667784 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236852667784, + 48.4380499533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4fecacc9006f00fc6535f5bf3fa5555c3cba803", + "fields": { + "code_commune_insee": "59243", + "nom_de_la_commune": "FONTAINE AU PIRE", + "code_postal": "59157", + "coordonnees_gps": [ + 50.127252452, + 3.36673958113 + ], + "libelle_d_acheminement": "FONTAINE AU PIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36673958113, + 50.127252452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "113b76151e855e004ae78a23b7670e5dffa5839a", + "fields": { + "ligne_5": "LE BUISSON", + "code_commune_insee": "72137", + "libelle_d_acheminement": "VILLENEUVE EN PERSEIGNE", + "code_postal": "72610", + "nom_de_la_commune": "VILLENEUVE EN PERSEIGNE", + "coordonnees_gps": [ + 48.4380499533, + 0.236852667784 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.236852667784, + 48.4380499533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a71913850462b0c0a7bb70f65ccb92bb7150f58", + "fields": { + "code_commune_insee": "59250", + "nom_de_la_commune": "FOURNES EN WEPPES", + "code_postal": "59134", + "coordonnees_gps": [ + 50.5917277363, + 2.89362071865 + ], + "libelle_d_acheminement": "FOURNES EN WEPPES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89362071865, + 50.5917277363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25c01141d4e8275f8c6ee35342987da92c0dcb4c", + "fields": { + "code_commune_insee": "72138", + "nom_de_la_commune": "FRESNAY SUR SARTHE", + "code_postal": "72130", + "coordonnees_gps": [ + 48.2817396551, + 0.0228368822752 + ], + "libelle_d_acheminement": "FRESNAY SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0228368822752, + 48.2817396551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b49e2a2156c810e30ceee871fe49d3c3ded7145", + "fields": { + "code_commune_insee": "59267", + "nom_de_la_commune": "GONNELIEU", + "code_postal": "59231", + "coordonnees_gps": [ + 50.059740161, + 3.15907798363 + ], + "libelle_d_acheminement": "GONNELIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15907798363, + 50.059740161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "565604cf5359c169dd1f5594bc0cf06270b3cbda", + "fields": { + "ligne_5": "ST GERMAIN SUR SARTHE", + "code_commune_insee": "72138", + "libelle_d_acheminement": "FRESNAY SUR SARTHE", + "code_postal": "72130", + "nom_de_la_commune": "FRESNAY SUR SARTHE", + "coordonnees_gps": [ + 48.2817396551, + 0.0228368822752 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0228368822752, + 48.2817396551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22a142710604f971ddab645878455c37fc728f79", + "fields": { + "code_commune_insee": "59273", + "nom_de_la_commune": "GRAVELINES", + "code_postal": "59820", + "coordonnees_gps": [ + 50.9975626638, + 2.14413046485 + ], + "libelle_d_acheminement": "GRAVELINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14413046485, + 50.9975626638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc56abc40314137f080dea32ebc59afade068711", + "fields": { + "code_commune_insee": "72143", + "nom_de_la_commune": "LE GRAND LUCE", + "code_postal": "72150", + "coordonnees_gps": [ + 47.8672204186, + 0.463121636019 + ], + "libelle_d_acheminement": "LE GRAND LUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.463121636019, + 47.8672204186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e56cc3c4d4276181334d051fb2214959cc07faa2", + "fields": { + "code_commune_insee": "59274", + "nom_de_la_commune": "LA GROISE", + "code_postal": "59360", + "coordonnees_gps": [ + 50.0763719216, + 3.6815589114 + ], + "libelle_d_acheminement": "LA GROISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6815589114, + 50.0763719216 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37dfa8d7cce7e5dce22b03cbe91b9fccb181989b", + "fields": { + "code_commune_insee": "72144", + "nom_de_la_commune": "GREEZ SUR ROC", + "code_postal": "72320", + "coordonnees_gps": [ + 48.136863975, + 0.823813790133 + ], + "libelle_d_acheminement": "GREEZ SUR ROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.823813790133, + 48.136863975 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04f30ed28c157aa881f8782ea31f846e273276d2", + "fields": { + "code_commune_insee": "59276", + "nom_de_la_commune": "GUESNAIN", + "code_postal": "59287", + "coordonnees_gps": [ + 50.3483461671, + 3.14816711364 + ], + "libelle_d_acheminement": "GUESNAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14816711364, + 50.3483461671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e334c3d73f8eef5e76c70a54285b2d84988e229d", + "fields": { + "code_commune_insee": "72146", + "nom_de_la_commune": "GUECELARD", + "code_postal": "72230", + "coordonnees_gps": [ + 47.8842699845, + 0.142030828594 + ], + "libelle_d_acheminement": "GUECELARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.142030828594, + 47.8842699845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23536eeb9cc77cb0912863e0c9c0b677318ed4f9", + "fields": { + "code_commune_insee": "59280", + "nom_de_la_commune": "HAMEL", + "code_postal": "59151", + "coordonnees_gps": [ + 50.2819824197, + 3.06850591061 + ], + "libelle_d_acheminement": "HAMEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06850591061, + 50.2819824197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59cfa575ad5b5bcd9e9d8c0dd25d7b403f4a787d", + "fields": { + "code_commune_insee": "72151", + "nom_de_la_commune": "JUIGNE SUR SARTHE", + "code_postal": "72300", + "coordonnees_gps": [ + 47.8682753202, + -0.291741289618 + ], + "libelle_d_acheminement": "JUIGNE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.291741289618, + 47.8682753202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "947180c926781433324a19a2a530235543fc7550", + "fields": { + "code_commune_insee": "59291", + "nom_de_la_commune": "HAUTMONT", + "code_postal": "59330", + "coordonnees_gps": [ + 50.2478507103, + 3.91948913803 + ], + "libelle_d_acheminement": "HAUTMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91948913803, + 50.2478507103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c902c9623d3382a0cf861567ba484ea5c7796cf0", + "fields": { + "code_commune_insee": "72152", + "nom_de_la_commune": "JUILLE", + "code_postal": "72170", + "coordonnees_gps": [ + 48.2452632445, + 0.12580313136 + ], + "libelle_d_acheminement": "JUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.12580313136, + 48.2452632445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c148fc2fd6b1ba757f9ccae9efef110fc8f8224", + "fields": { + "code_commune_insee": "59305", + "nom_de_la_commune": "HERZEELE", + "code_postal": "59470", + "coordonnees_gps": [ + 50.8810801461, + 2.53001631051 + ], + "libelle_d_acheminement": "HERZEELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53001631051, + 50.8810801461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9da51ffaf215e50cb104681f210ee3273a122502", + "fields": { + "code_commune_insee": "72157", + "nom_de_la_commune": "LAVARDIN", + "code_postal": "72240", + "coordonnees_gps": [ + 48.0837900789, + 0.0628095880232 + ], + "libelle_d_acheminement": "LAVARDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0628095880232, + 48.0837900789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "686a6d6224bd7c8503d4dbcd6a7a3ffa41ed1db7", + "fields": { + "code_commune_insee": "59307", + "nom_de_la_commune": "HOLQUE", + "code_postal": "59143", + "coordonnees_gps": [ + 50.856500023, + 2.2050645429 + ], + "libelle_d_acheminement": "HOLQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2050645429, + 50.856500023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bb2a24de8a395476fd1d186240add0e092e860e", + "fields": { + "code_commune_insee": "72163", + "nom_de_la_commune": "LIGRON", + "code_postal": "72270", + "coordonnees_gps": [ + 47.7695105998, + -0.0134011784189 + ], + "libelle_d_acheminement": "LIGRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0134011784189, + 47.7695105998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c89d18da045203891bd13ee9a491a2d6d75b207", + "fields": { + "code_commune_insee": "59312", + "nom_de_la_commune": "HONNECOURT SUR ESCAUT", + "code_postal": "59266", + "coordonnees_gps": [ + 50.0343460681, + 3.20211189134 + ], + "libelle_d_acheminement": "HONNECOURT SUR ESCAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20211189134, + 50.0343460681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73b9ef2901409f0f438cd77461be7eeac0cd8701", + "fields": { + "code_commune_insee": "72172", + "nom_de_la_commune": "LE LUART", + "code_postal": "72390", + "coordonnees_gps": [ + 48.0800184955, + 0.596928704808 + ], + "libelle_d_acheminement": "LE LUART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.596928704808, + 48.0800184955 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d5760334213d733569d0848f93d8d215f86b028f", + "fields": { + "code_commune_insee": "59325", + "nom_de_la_commune": "JOLIMETZ", + "code_postal": "59530", + "coordonnees_gps": [ + 50.2290109948, + 3.67767939299 + ], + "libelle_d_acheminement": "JOLIMETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67767939299, + 50.2290109948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02e3106f851ce6671c7349ea6eb10d024f9d50a1", + "fields": { + "ligne_5": "DISSE SOUS LE LUDE", + "code_commune_insee": "72176", + "libelle_d_acheminement": "LE LUDE", + "code_postal": "72800", + "nom_de_la_commune": "LE LUDE", + "coordonnees_gps": [ + 47.6542548485, + 0.150109969187 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.150109969187, + 47.6542548485 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b44c855c7989b3c9a18df26aaa9be736b599279", + "fields": { + "code_commune_insee": "59327", + "nom_de_la_commune": "LALLAING", + "code_postal": "59167", + "coordonnees_gps": [ + 50.3864016974, + 3.16880269409 + ], + "libelle_d_acheminement": "LALLAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16880269409, + 50.3864016974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0a904178db4db95b630476a158ef36f2cea5b51", + "fields": { + "code_commune_insee": "72178", + "nom_de_la_commune": "MAISONCELLES", + "code_postal": "72440", + "coordonnees_gps": [ + 47.9379252388, + 0.577135485156 + ], + "libelle_d_acheminement": "MAISONCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.577135485156, + 47.9379252388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cbb2449364142f5f2e77300db6a6ccfb6b8fb5cd", + "fields": { + "code_commune_insee": "59347", + "nom_de_la_commune": "LIESSIES", + "code_postal": "59740", + "coordonnees_gps": [ + 50.1049349578, + 4.07726257108 + ], + "libelle_d_acheminement": "LIESSIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07726257108, + 50.1049349578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b52e7e5832eab64e666786fb1b189a18ae07524", + "fields": { + "code_commune_insee": "72180", + "nom_de_la_commune": "MAMERS", + "code_postal": "72600", + "coordonnees_gps": [ + 48.3545313197, + 0.370783494811 + ], + "libelle_d_acheminement": "MAMERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.370783494811, + 48.3545313197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3df422862375ea17d092faa790eb4d5f71d90a1", + "fields": { + "code_commune_insee": "59349", + "nom_de_la_commune": "LIGNY EN CAMBRESIS", + "code_postal": "59191", + "coordonnees_gps": [ + 50.1025067499, + 3.37859262548 + ], + "libelle_d_acheminement": "LIGNY EN CAMBRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37859262548, + 50.1025067499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a74d0f7f0cf147f83f531318e51fd5326a05d267", + "fields": { + "code_commune_insee": "72182", + "nom_de_la_commune": "MANSIGNE", + "code_postal": "72510", + "coordonnees_gps": [ + 47.7413528401, + 0.133663213026 + ], + "libelle_d_acheminement": "MANSIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.133663213026, + 47.7413528401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c14c5f8ca3195752e620d8bde10a5435e825e2e6", + "fields": { + "code_commune_insee": "59360", + "nom_de_la_commune": "LOOS", + "code_postal": "59120", + "coordonnees_gps": [ + 50.608350368, + 3.02066096506 + ], + "libelle_d_acheminement": "LOOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02066096506, + 50.608350368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3431c683e8aa08b35244e0563be6e1097e7ed5ea", + "fields": { + "code_commune_insee": "72185", + "nom_de_la_commune": "MAREIL SUR LOIR", + "code_postal": "72200", + "coordonnees_gps": [ + 47.7201675683, + 0.00780177902929 + ], + "libelle_d_acheminement": "MAREIL SUR LOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00780177902929, + 47.7201675683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b8495e2e7af60d8d6c7a1f2ec254341d02ec35f", + "fields": { + "code_commune_insee": "59378", + "nom_de_la_commune": "MARCQ EN BAROEUL", + "code_postal": "59700", + "coordonnees_gps": [ + 50.6753348557, + 3.10093583816 + ], + "libelle_d_acheminement": "MARCQ EN BAROEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10093583816, + 50.6753348557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93a965929880bb070c9b70072da4cf68e49d0b56", + "fields": { + "code_commune_insee": "72189", + "nom_de_la_commune": "MAROLLES LES BRAULTS", + "code_postal": "72260", + "coordonnees_gps": [ + 48.2539587745, + 0.320191786224 + ], + "libelle_d_acheminement": "MAROLLES LES BRAULTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.320191786224, + 48.2539587745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63e40c9dd5a0e7bbc14233703a3ee40c8edb9722", + "fields": { + "code_commune_insee": "59381", + "nom_de_la_commune": "MARESCHES", + "code_postal": "59990", + "coordonnees_gps": [ + 50.2940290785, + 3.57606019881 + ], + "libelle_d_acheminement": "MARESCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57606019881, + 50.2940290785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1011aeb459a89199639cc6210d706db0a0c6c8e9", + "fields": { + "code_commune_insee": "72191", + "nom_de_la_commune": "MAYET", + "code_postal": "72360", + "coordonnees_gps": [ + 47.7642409399, + 0.279819645077 + ], + "libelle_d_acheminement": "MAYET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.279819645077, + 47.7642409399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4052ed06bd7d5bbfc7efca22a6dd7b103e960e0", + "fields": { + "code_commune_insee": "59382", + "nom_de_la_commune": "MARETZ", + "code_postal": "59238", + "coordonnees_gps": [ + 50.0450861132, + 3.42038871212 + ], + "libelle_d_acheminement": "MARETZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42038871212, + 50.0450861132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "040f56524697c4359896ecfb74b6d4887a30a187", + "fields": { + "code_commune_insee": "72193", + "nom_de_la_commune": "MELLERAY", + "code_postal": "72320", + "coordonnees_gps": [ + 48.0949259298, + 0.813535451914 + ], + "libelle_d_acheminement": "MELLERAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.813535451914, + 48.0949259298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7106cbe346a25126b6531d871fe5328019758e5a", + "fields": { + "code_commune_insee": "59385", + "nom_de_la_commune": "MARPENT", + "code_postal": "59164", + "coordonnees_gps": [ + 50.2913562157, + 4.07637705799 + ], + "libelle_d_acheminement": "MARPENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07637705799, + 50.2913562157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8633ad7f3853e413fc19318b9eeb24ffcce8b03", + "fields": { + "code_commune_insee": "72194", + "nom_de_la_commune": "MEURCE", + "code_postal": "72170", + "coordonnees_gps": [ + 48.237234129, + 0.201724875518 + ], + "libelle_d_acheminement": "MEURCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.201724875518, + 48.237234129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5f754508d23027aa3402aba37f175f6cf1cddbf", + "fields": { + "code_commune_insee": "59386", + "nom_de_la_commune": "MARQUETTE LEZ LILLE", + "code_postal": "59520", + "coordonnees_gps": [ + 50.67409511, + 3.05886328577 + ], + "libelle_d_acheminement": "MARQUETTE LEZ LILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05886328577, + 50.67409511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7885bcd5e36adc6ae0b86caf301e0bb998b874b", + "fields": { + "code_commune_insee": "72198", + "nom_de_la_commune": "LA MILESSE", + "code_postal": "72650", + "coordonnees_gps": [ + 48.0667169973, + 0.135919277684 + ], + "libelle_d_acheminement": "LA MILESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.135919277684, + 48.0667169973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2824b01322ae14273e7dd170c49f22e0d5faffc3", + "fields": { + "code_commune_insee": "59387", + "nom_de_la_commune": "MARQUETTE EN OSTREVANT", + "code_postal": "59252", + "coordonnees_gps": [ + 50.2921413356, + 3.2707273524 + ], + "libelle_d_acheminement": "MARQUETTE EN OSTREVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2707273524, + 50.2921413356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da1fbc01ff3d1b0fc0847146b6cbc9a40c742fbc", + "fields": { + "ligne_5": "LE GUE LIAN", + "code_commune_insee": "72199", + "libelle_d_acheminement": "MOITRON SUR SARTHE", + "code_postal": "72170", + "nom_de_la_commune": "MOITRON SUR SARTHE", + "coordonnees_gps": [ + 48.247330734, + 0.0603406887736 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0603406887736, + 48.247330734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bb45f870ce30923d10d9455769e3a25935e6a74", + "fields": { + "code_commune_insee": "59390", + "nom_de_la_commune": "MASNY", + "code_postal": "59176", + "coordonnees_gps": [ + 50.341241582, + 3.19548470018 + ], + "libelle_d_acheminement": "MASNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19548470018, + 50.341241582 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "262ec8ec2be480c345c18e6ae06b6a8d1a22e2c0", + "fields": { + "code_commune_insee": "72200", + "nom_de_la_commune": "MONCE EN BELIN", + "code_postal": "72230", + "coordonnees_gps": [ + 47.8982351133, + 0.196356138911 + ], + "libelle_d_acheminement": "MONCE EN BELIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.196356138911, + 47.8982351133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d820b87b64e120a23304741aba7180530193b531", + "fields": { + "code_commune_insee": "59392", + "nom_de_la_commune": "MAUBEUGE", + "code_postal": "59600", + "coordonnees_gps": [ + 50.283630719, + 3.96328053037 + ], + "libelle_d_acheminement": "MAUBEUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.96328053037, + 50.283630719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c437dc777001f7fa6625d39e5c78eb46ec24be0", + "fields": { + "code_commune_insee": "72204", + "nom_de_la_commune": "MONTAILLE", + "code_postal": "72120", + "coordonnees_gps": [ + 47.954960355, + 0.685903280988 + ], + "libelle_d_acheminement": "MONTAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.685903280988, + 47.954960355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "663561c2d717df9458c075db4a2da3b9b7472778", + "fields": { + "code_commune_insee": "59399", + "nom_de_la_commune": "MERRIS", + "code_postal": "59270", + "coordonnees_gps": [ + 50.7178435961, + 2.6572770613 + ], + "libelle_d_acheminement": "MERRIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6572770613, + 50.7178435961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef8c95ea145a19c4d8e23555b4574eba73f0c081", + "fields": { + "code_commune_insee": "72212", + "nom_de_la_commune": "MOULINS LE CARBONNEL", + "code_postal": "72130", + "coordonnees_gps": [ + 48.3735152031, + -0.0131921167118 + ], + "libelle_d_acheminement": "MOULINS LE CARBONNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0131921167118, + 48.3735152031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd094ece77abbca8fdd14a9a3ae0bfc502527a54", + "fields": { + "code_commune_insee": "59407", + "nom_de_la_commune": "MONCHAUX SUR ECAILLON", + "code_postal": "59224", + "coordonnees_gps": [ + 50.2838656974, + 3.4581039292 + ], + "libelle_d_acheminement": "MONCHAUX SUR ECAILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4581039292, + 50.2838656974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f3cc0a57629f709addeeaa28c929ec10e7e81a9", + "fields": { + "code_commune_insee": "72216", + "nom_de_la_commune": "NEUVILLALAIS", + "code_postal": "72240", + "coordonnees_gps": [ + 48.1540701215, + -0.00726100705973 + ], + "libelle_d_acheminement": "NEUVILLALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00726100705973, + 48.1540701215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84f7290cc5cc0ed93e45053f2e5723cefe465987", + "fields": { + "code_commune_insee": "59408", + "nom_de_la_commune": "MONCHEAUX", + "code_postal": "59283", + "coordonnees_gps": [ + 50.456566302, + 3.08800670538 + ], + "libelle_d_acheminement": "MONCHEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08800670538, + 50.456566302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20b1eb35ce57e07067395ffb46d8a2cf2353b938", + "fields": { + "ligne_5": "BERNAY EN CHAMPAGNE", + "code_commune_insee": "72219", + "libelle_d_acheminement": "BERNAY NEUVY EN CHAMPAGNE", + "code_postal": "72240", + "nom_de_la_commune": "BERNAY NEUVY EN CHAMPAGNE", + "coordonnees_gps": [ + 48.0792849605, + -0.0218826401128 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0218826401128, + 48.0792849605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b705f3fc1dcbde610127a37bcff7f37ed84407cb", + "fields": { + "code_commune_insee": "59412", + "nom_de_la_commune": "MONTAY", + "code_postal": "59360", + "coordonnees_gps": [ + 50.1222064074, + 3.53460777852 + ], + "libelle_d_acheminement": "MONTAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53460777852, + 50.1222064074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b218531c35dc6fc134448162ba14f42b7485f9f", + "fields": { + "code_commune_insee": "72221", + "nom_de_la_commune": "NOGENT SUR LOIR", + "code_postal": "72500", + "coordonnees_gps": [ + 47.6564225079, + 0.398090984407 + ], + "libelle_d_acheminement": "NOGENT SUR LOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.398090984407, + 47.6564225079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1cd4c5385d0d5407b2c61bf96faf3657535b6e2", + "fields": { + "code_commune_insee": "59413", + "nom_de_la_commune": "MONTIGNY EN CAMBRESIS", + "code_postal": "59225", + "coordonnees_gps": [ + 50.0910970595, + 3.41429656763 + ], + "libelle_d_acheminement": "MONTIGNY EN CAMBRESIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.41429656763, + 50.0910970595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1eaf2a03a55ed0556373a615e7b92083cef4a6b1", + "fields": { + "code_commune_insee": "72222", + "nom_de_la_commune": "NOUANS", + "code_postal": "72260", + "coordonnees_gps": [ + 48.2378930532, + 0.22830907332 + ], + "libelle_d_acheminement": "NOUANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.22830907332, + 48.2378930532 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a43440a183cb521d4894c2c9fe71f80aeb97aabf", + "fields": { + "code_commune_insee": "59414", + "nom_de_la_commune": "MONTIGNY EN OSTREVENT", + "code_postal": "59182", + "coordonnees_gps": [ + 50.3682405226, + 3.18011986506 + ], + "libelle_d_acheminement": "MONTIGNY EN OSTREVENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18011986506, + 50.3682405226 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f311d88d3daf2ef3268cf9f39d830a8a809c4029", + "fields": { + "code_commune_insee": "72239", + "nom_de_la_commune": "POILLE SUR VEGRE", + "code_postal": "72350", + "coordonnees_gps": [ + 47.9162913627, + -0.271498760066 + ], + "libelle_d_acheminement": "POILLE SUR VEGRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.271498760066, + 47.9162913627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dd8c8c5b3abd452c280ffe55f9b3f85b7c157fb", + "fields": { + "code_commune_insee": "59415", + "nom_de_la_commune": "MONTRECOURT", + "code_postal": "59227", + "coordonnees_gps": [ + 50.2256590135, + 3.44600124957 + ], + "libelle_d_acheminement": "MONTRECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44600124957, + 50.2256590135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d60a781bc35fee6ff314bad5cb1fe654a09e993", + "fields": { + "code_commune_insee": "72241", + "nom_de_la_commune": "MONTFORT LE GESNOIS", + "code_postal": "72450", + "coordonnees_gps": [ + 48.0577881474, + 0.402183285649 + ], + "libelle_d_acheminement": "MONTFORT LE GESNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.402183285649, + 48.0577881474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24a431bf7e6371d87621bb29326d4b2afd97c8c6", + "fields": { + "code_commune_insee": "59426", + "nom_de_la_commune": "NEUVILLE EN FERRAIN", + "code_postal": "59960", + "coordonnees_gps": [ + 50.7533162393, + 3.15977251104 + ], + "libelle_d_acheminement": "NEUVILLE EN FERRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15977251104, + 50.7533162393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfc0eb27be420cebc4806e9b68f5a1a89c80d387", + "fields": { + "code_commune_insee": "72246", + "nom_de_la_commune": "PREVELLES", + "code_postal": "72110", + "coordonnees_gps": [ + 48.1540240549, + 0.474693426494 + ], + "libelle_d_acheminement": "PREVELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.474693426494, + 48.1540240549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "618d4e231c70c195f8629779f0418f5659e41c64", + "fields": { + "code_commune_insee": "59429", + "nom_de_la_commune": "NEUVILLE SUR ESCAUT", + "code_postal": "59293", + "coordonnees_gps": [ + 50.2905014388, + 3.35160622721 + ], + "libelle_d_acheminement": "NEUVILLE SUR ESCAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35160622721, + 50.2905014388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24df34934bfcfdd249b64ed3de110419695c9c78", + "fields": { + "code_commune_insee": "72252", + "nom_de_la_commune": "REQUEIL", + "code_postal": "72510", + "coordonnees_gps": [ + 47.7866756494, + 0.157684341786 + ], + "libelle_d_acheminement": "REQUEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.157684341786, + 47.7866756494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2207c30dec29e36bf38b0f90263ef35720c7ec9d", + "fields": { + "code_commune_insee": "59430", + "nom_de_la_commune": "NEUVILLY", + "code_postal": "59360", + "coordonnees_gps": [ + 50.1349971919, + 3.51024982301 + ], + "libelle_d_acheminement": "NEUVILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51024982301, + 50.1349971919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7a8d681693fbe3f425cab36fb84f48d76ca8f29", + "fields": { + "code_commune_insee": "72255", + "nom_de_la_commune": "ROUESSE VASSE", + "code_postal": "72140", + "coordonnees_gps": [ + 48.1551147556, + -0.199832416726 + ], + "libelle_d_acheminement": "ROUESSE VASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.199832416726, + 48.1551147556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4505efa19d3e2f1f9570626890b2d309b2501964", + "fields": { + "code_commune_insee": "59431", + "nom_de_la_commune": "NIEPPE", + "code_postal": "59850", + "coordonnees_gps": [ + 50.6992987531, + 2.83247310085 + ], + "libelle_d_acheminement": "NIEPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83247310085, + 50.6992987531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8b54a0f796a8604da4285220792ca73b5bef184", + "fields": { + "code_commune_insee": "72259", + "nom_de_la_commune": "ROUPERROUX LE COQUET", + "code_postal": "72110", + "coordonnees_gps": [ + 48.2293569796, + 0.438592972489 + ], + "libelle_d_acheminement": "ROUPERROUX LE COQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.438592972489, + 48.2293569796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0264a0f22041c7c0ee9c3b4e66d18e8b2a414136", + "fields": { + "code_commune_insee": "59441", + "nom_de_la_commune": "OBIES", + "code_postal": "59570", + "coordonnees_gps": [ + 50.2692950414, + 3.7760866867 + ], + "libelle_d_acheminement": "OBIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7760866867, + 50.2692950414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a79e28f801bff15eeb8d5cc24973668d0924ec9b", + "fields": { + "ligne_5": "LA CHAPELLE GAUGAIN", + "code_commune_insee": "72262", + "libelle_d_acheminement": "LOIR EN VALLEE", + "code_postal": "72310", + "nom_de_la_commune": "LOIR EN VALLEE", + "coordonnees_gps": [ + 47.7854221078, + 0.618393311988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.618393311988, + 47.7854221078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14815e0391574408c8d3444598c5db968d940e6c", + "fields": { + "code_commune_insee": "59453", + "nom_de_la_commune": "OUDEZEELE", + "code_postal": "59670", + "coordonnees_gps": [ + 50.8399999116, + 2.51032290122 + ], + "libelle_d_acheminement": "OUDEZEELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51032290122, + 50.8399999116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c43af1cd6e41e72b53ac314ee188a13ccb960b8", + "fields": { + "ligne_5": "PONCE SUR LE LOIR", + "code_commune_insee": "72262", + "libelle_d_acheminement": "LOIR EN VALLEE", + "code_postal": "72340", + "nom_de_la_commune": "LOIR EN VALLEE", + "coordonnees_gps": [ + 47.7854221078, + 0.618393311988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.618393311988, + 47.7854221078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fa63d2033036b32cd663452cb63866f344908ee", + "fields": { + "code_commune_insee": "59454", + "nom_de_la_commune": "OXELAERE", + "code_postal": "59670", + "coordonnees_gps": [ + 50.7807301542, + 2.4699206565 + ], + "libelle_d_acheminement": "OXELAERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4699206565, + 50.7807301542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3218b24e305c9425b6ce8fd1593a0f2d1d837d37", + "fields": { + "code_commune_insee": "72264", + "nom_de_la_commune": "SABLE SUR SARTHE", + "code_postal": "72300", + "coordonnees_gps": [ + 47.8378265007, + -0.354705885665 + ], + "libelle_d_acheminement": "SABLE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.354705885665, + 47.8378265007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e42b852c695ee3a7ad216b98bdf24346dd9ea493", + "fields": { + "code_commune_insee": "59469", + "nom_de_la_commune": "PRADELLES", + "code_postal": "59190", + "coordonnees_gps": [ + 50.7340517429, + 2.60269224096 + ], + "libelle_d_acheminement": "PRADELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60269224096, + 50.7340517429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c059c8810cd5417abd45b704a26939c1255094fd", + "fields": { + "code_commune_insee": "72294", + "nom_de_la_commune": "ST LEONARD DES BOIS", + "code_postal": "72130", + "coordonnees_gps": [ + 48.3541977725, + -0.0869413519394 + ], + "libelle_d_acheminement": "ST LEONARD DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0869413519394, + 48.3541977725 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04ade216166e6f80b98d33812e710f2752f86a78", + "fields": { + "code_commune_insee": "59478", + "nom_de_la_commune": "QUAEDYPRE", + "code_postal": "59380", + "coordonnees_gps": [ + 50.9381093158, + 2.46047387712 + ], + "libelle_d_acheminement": "QUAEDYPRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46047387712, + 50.9381093158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "880acb78cc7af0ebbae3485131603cd78604268f", + "fields": { + "code_commune_insee": "72302", + "nom_de_la_commune": "ST MARTIN DES MONTS", + "code_postal": "72400", + "coordonnees_gps": [ + 48.1512082085, + 0.597953696239 + ], + "libelle_d_acheminement": "ST MARTIN DES MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.597953696239, + 48.1512082085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f46619b7c1d0fdeadb2b5e44b3b5506d7f32a6f", + "fields": { + "code_commune_insee": "59479", + "nom_de_la_commune": "QUAROUBLE", + "code_postal": "59243", + "coordonnees_gps": [ + 50.4035655109, + 3.6270603909 + ], + "libelle_d_acheminement": "QUAROUBLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6270603909, + 50.4035655109 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abc2291782be6a12b7007e0b2859599e0235b11f", + "fields": { + "code_commune_insee": "72307", + "nom_de_la_commune": "ST OUEN EN CHAMPAGNE", + "code_postal": "72350", + "coordonnees_gps": [ + 47.9578477128, + -0.178608875377 + ], + "libelle_d_acheminement": "ST OUEN EN CHAMPAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.178608875377, + 47.9578477128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df88594fda237778dc236320b6eacb08c3c1ebe1", + "fields": { + "code_commune_insee": "59480", + "nom_de_la_commune": "QUERENAING", + "code_postal": "59269", + "coordonnees_gps": [ + 50.2848542839, + 3.50823290442 + ], + "libelle_d_acheminement": "QUERENAING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50823290442, + 50.2848542839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f22c9346fd177ff85df95e80099bd53dfa39203e", + "fields": { + "code_commune_insee": "72313", + "nom_de_la_commune": "ST PIERRE DES ORMES", + "code_postal": "72600", + "coordonnees_gps": [ + 48.2934012161, + 0.420423717805 + ], + "libelle_d_acheminement": "ST PIERRE DES ORMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.420423717805, + 48.2934012161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f51fd399cf984b19a07d4bc03cc6be299d3c0d3", + "fields": { + "code_commune_insee": "59488", + "nom_de_la_commune": "RAILLENCOURT STE OLLE", + "code_postal": "59554", + "coordonnees_gps": [ + 50.1884274141, + 3.17806914502 + ], + "libelle_d_acheminement": "RAILLENCOURT STE OLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17806914502, + 50.1884274141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b77fcbe795c27a5a4f9ac88c8731389def8d776", + "fields": { + "code_commune_insee": "72319", + "nom_de_la_commune": "STE SABINE SUR LONGEVE", + "code_postal": "72380", + "coordonnees_gps": [ + 48.1357559817, + 0.0899900112141 + ], + "libelle_d_acheminement": "STE SABINE SUR LONGEVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0899900112141, + 48.1357559817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d837cc761a95206360408d6ed003c89c1fe9669", + "fields": { + "code_commune_insee": "59493", + "nom_de_la_commune": "RAMOUSIES", + "code_postal": "59177", + "coordonnees_gps": [ + 50.1164251073, + 4.03401363601 + ], + "libelle_d_acheminement": "RAMOUSIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03401363601, + 50.1164251073 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20f1b05923994a8b7cc8ba74a277e26ff69f80cf", + "fields": { + "code_commune_insee": "72320", + "nom_de_la_commune": "ST SATURNIN", + "code_postal": "72650", + "coordonnees_gps": [ + 48.0593049019, + 0.172849807382 + ], + "libelle_d_acheminement": "ST SATURNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.172849807382, + 48.0593049019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "145265f293fb1c3a93008fd77cc0285fb56f8eae", + "fields": { + "code_commune_insee": "59495", + "nom_de_la_commune": "RECQUIGNIES", + "code_postal": "59245", + "coordonnees_gps": [ + 50.2766724838, + 4.04841593336 + ], + "libelle_d_acheminement": "RECQUIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04841593336, + 50.2766724838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7d2563e558b985e42b3ebcd2cf4425b4e3dc335", + "fields": { + "code_commune_insee": "72324", + "nom_de_la_commune": "ST VINCENT DES PRES", + "code_postal": "72600", + "coordonnees_gps": [ + 48.2955356606, + 0.373225492644 + ], + "libelle_d_acheminement": "ST VINCENT DES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.373225492644, + 48.2955356606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10f5003b2900a9c815d37923b642b57306ed3603", + "fields": { + "code_commune_insee": "59503", + "nom_de_la_commune": "ROBERSART", + "code_postal": "59550", + "coordonnees_gps": [ + 50.1565289177, + 3.64613951991 + ], + "libelle_d_acheminement": "ROBERSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64613951991, + 50.1565289177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b86e191c6ded714a4ba48751921b962c4c83a9b", + "fields": { + "code_commune_insee": "72328", + "nom_de_la_commune": "SARGE LES LE MANS", + "code_postal": "72190", + "coordonnees_gps": [ + 48.0418982247, + 0.247286439875 + ], + "libelle_d_acheminement": "SARGE LES LE MANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.247286439875, + 48.0418982247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6693ab0c00335415e3e95b813c272d8b46d65c4b", + "fields": { + "code_commune_insee": "59506", + "nom_de_la_commune": "ROMERIES", + "code_postal": "59730", + "coordonnees_gps": [ + 50.1972863068, + 3.54305484338 + ], + "libelle_d_acheminement": "ROMERIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.54305484338, + 50.1972863068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2444b2caeee6c8dc56d56819ce3268e4fdcfff0c", + "fields": { + "code_commune_insee": "72332", + "nom_de_la_commune": "SEGRIE", + "code_postal": "72170", + "coordonnees_gps": [ + 48.2118641806, + 0.0166401413218 + ], + "libelle_d_acheminement": "SEGRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0166401413218, + 48.2118641806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bce1fd4c4b266ec50ebd3619891ae9f154a1d82", + "fields": { + "code_commune_insee": "59511", + "nom_de_la_commune": "ROSULT", + "code_postal": "59230", + "coordonnees_gps": [ + 50.4521455969, + 3.36243705958 + ], + "libelle_d_acheminement": "ROSULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36243705958, + 50.4521455969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08772cd3568be6c2aa8cc4c557d1c104e5c05a72", + "fields": { + "code_commune_insee": "72333", + "nom_de_la_commune": "SEMUR EN VALLON", + "code_postal": "72390", + "coordonnees_gps": [ + 48.0214150215, + 0.672345988795 + ], + "libelle_d_acheminement": "SEMUR EN VALLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.672345988795, + 48.0214150215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "195bf55e26a3bb86682473109e8441093963db9d", + "fields": { + "code_commune_insee": "59517", + "nom_de_la_commune": "LES RUES DES VIGNES", + "code_postal": "59258", + "coordonnees_gps": [ + 50.0758341626, + 3.23349040866 + ], + "libelle_d_acheminement": "LES RUES DES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23349040866, + 50.0758341626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a9ede1c447f1f9a53d67c53715cea528936f8c4", + "fields": { + "code_commune_insee": "72342", + "nom_de_la_commune": "SOUVIGNE SUR MEME", + "code_postal": "72400", + "coordonnees_gps": [ + 48.2172120607, + 0.648847952112 + ], + "libelle_d_acheminement": "SOUVIGNE SUR MEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.648847952112, + 48.2172120607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64795c07a1ce53c1a277d7330831d0308e7d6f82", + "fields": { + "code_commune_insee": "59521", + "nom_de_la_commune": "SAILLY LEZ CAMBRAI", + "code_postal": "59554", + "coordonnees_gps": [ + 50.1992760236, + 3.17933507614 + ], + "libelle_d_acheminement": "SAILLY LEZ CAMBRAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17933507614, + 50.1992760236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "329a6dfb0976a76b2e2628ea4649273cd5595023", + "fields": { + "code_commune_insee": "72343", + "nom_de_la_commune": "SOUVIGNE SUR SARTHE", + "code_postal": "72300", + "coordonnees_gps": [ + 47.8249718183, + -0.411523601476 + ], + "libelle_d_acheminement": "SOUVIGNE SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.411523601476, + 47.8249718183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adaadc6c3423d2594e354ca7d85a0b4f444aa557", + "fields": { + "code_commune_insee": "59523", + "nom_de_la_commune": "SAINGHIN EN MELANTOIS", + "code_postal": "59262", + "coordonnees_gps": [ + 50.5877332144, + 3.16342165677 + ], + "libelle_d_acheminement": "SAINGHIN EN MELANTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16342165677, + 50.5877332144 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1904bd18bea47f708dbf21ad8769ad46eaa138c5", + "fields": { + "code_commune_insee": "72349", + "nom_de_la_commune": "TEILLE", + "code_postal": "72290", + "coordonnees_gps": [ + 48.1849465917, + 0.188449766884 + ], + "libelle_d_acheminement": "TEILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.188449766884, + 48.1849465917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd84ccfd2cb5a24d53e0f58b0e1de57596d80ba9", + "fields": { + "code_commune_insee": "59527", + "nom_de_la_commune": "ST ANDRE LEZ LILLE", + "code_postal": "59350", + "coordonnees_gps": [ + 50.6597692969, + 3.04609387889 + ], + "libelle_d_acheminement": "ST ANDRE LEZ LILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04609387889, + 50.6597692969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da2fcee46cb224c1eeb3ab4ee3701925f6dde6aa", + "fields": { + "code_commune_insee": "72351", + "nom_de_la_commune": "TENNIE", + "code_postal": "72240", + "coordonnees_gps": [ + 48.1097279005, + -0.0864881845663 + ], + "libelle_d_acheminement": "TENNIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0864881845663, + 48.1097279005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed7c73bba0e69f18d18c3cf4028eff42c2ab51c8", + "fields": { + "code_commune_insee": "59531", + "nom_de_la_commune": "ST BENIN", + "code_postal": "59360", + "coordonnees_gps": [ + 50.0760031859, + 3.5318789033 + ], + "libelle_d_acheminement": "ST BENIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5318789033, + 50.0760031859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f404dda761b8cf54c5ee0a59fb2608375333c1d0", + "fields": { + "code_commune_insee": "72356", + "nom_de_la_commune": "THOIRE SUR DINAN", + "code_postal": "72500", + "coordonnees_gps": [ + 47.7646608356, + 0.462066578914 + ], + "libelle_d_acheminement": "THOIRE SUR DINAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.462066578914, + 47.7646608356 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3231a760340727d8e025b879f173ab5e02cb5011", + "fields": { + "code_commune_insee": "72357", + "nom_de_la_commune": "THOREE LES PINS", + "code_postal": "72800", + "coordonnees_gps": [ + 47.6661683505, + 0.0339317804074 + ], + "libelle_d_acheminement": "THOREE LES PINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0339317804074, + 47.6661683505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e51be15e0c1bdb18ee35858d8d0d7c6ed69dfd15", + "fields": { + "code_commune_insee": "72360", + "nom_de_la_commune": "TRANGE", + "code_postal": "72650", + "coordonnees_gps": [ + 48.0291229026, + 0.115747157927 + ], + "libelle_d_acheminement": "TRANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.115747157927, + 48.0291229026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f321aeab34c66de242255af80207d01eab02b857", + "fields": { + "code_commune_insee": "72364", + "nom_de_la_commune": "VAAS", + "code_postal": "72500", + "coordonnees_gps": [ + 47.6723014522, + 0.315373744758 + ], + "libelle_d_acheminement": "VAAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.315373744758, + 47.6723014522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b18fb3095f9c459d73957b05f4761a2490f121a", + "fields": { + "code_commune_insee": "72366", + "nom_de_la_commune": "VALENNES", + "code_postal": "72320", + "coordonnees_gps": [ + 48.0059667214, + 0.804886650467 + ], + "libelle_d_acheminement": "VALENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.804886650467, + 48.0059667214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec9c6c198fbe6ed4e6df1d1a8bd7f3fef457349b", + "fields": { + "code_commune_insee": "72368", + "nom_de_la_commune": "VANCE", + "code_postal": "72310", + "coordonnees_gps": [ + 47.8347996701, + 0.659547605602 + ], + "libelle_d_acheminement": "VANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659547605602, + 47.8347996701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8c4f6cbec787eb6171931774cc5a7c693e94ba1", + "fields": { + "code_commune_insee": "72370", + "nom_de_la_commune": "VERNIE", + "code_postal": "72170", + "coordonnees_gps": [ + 48.1820114335, + 0.0183634956199 + ], + "libelle_d_acheminement": "VERNIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0183634956199, + 48.1820114335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c1c5d233f1a4c0dbceac46e2f68c702a5235284", + "fields": { + "code_commune_insee": "72373", + "nom_de_la_commune": "VIBRAYE", + "code_postal": "72320", + "coordonnees_gps": [ + 48.0480142116, + 0.739798488483 + ], + "libelle_d_acheminement": "VIBRAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.739798488483, + 48.0480142116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f7fae84e07111e36cab0a40202eca3cb32f5ddb", + "fields": { + "code_commune_insee": "72382", + "nom_de_la_commune": "VOLNAY", + "code_postal": "72440", + "coordonnees_gps": [ + 47.9518684826, + 0.470224737802 + ], + "libelle_d_acheminement": "VOLNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.470224737802, + 47.9518684826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22852fe155f6f8a7532a4dc214313201e855e8e0", + "fields": { + "code_commune_insee": "73001", + "nom_de_la_commune": "AIGUEBELETTE LE LAC", + "code_postal": "73610", + "coordonnees_gps": [ + 45.5476875903, + 5.81387589748 + ], + "libelle_d_acheminement": "AIGUEBELETTE LE LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81387589748, + 45.5476875903 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce9855fe265e9d59840931d03827f413020af7dc", + "fields": { + "ligne_5": "GRANIER", + "code_commune_insee": "73006", + "libelle_d_acheminement": "AIME LA PLAGNE", + "code_postal": "73210", + "nom_de_la_commune": "AIME LA PLAGNE", + "coordonnees_gps": [ + 45.5525768932, + 6.61836974596 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61836974596, + 45.5525768932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47241ed39e04014845876ac083e68f7aa043f7e2", + "fields": { + "code_commune_insee": "73008", + "nom_de_la_commune": "AIX LES BAINS", + "code_postal": "73100", + "coordonnees_gps": [ + 45.6978541675, + 5.90388626955 + ], + "libelle_d_acheminement": "AIX LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90388626955, + 45.6978541675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43c0f311c6dea3d49d087f63dcabae9d48ac2109", + "fields": { + "ligne_5": "ALBENS", + "code_commune_insee": "73010", + "libelle_d_acheminement": "ENTRELACS", + "code_postal": "73410", + "nom_de_la_commune": "ENTRELACS", + "coordonnees_gps": [ + 45.789988746, + 5.93731067789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93731067789, + 45.789988746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1499a6315337dba460497f7532a1b71d2c7a6fe", + "fields": { + "ligne_5": "EPERSY", + "code_commune_insee": "73010", + "libelle_d_acheminement": "ENTRELACS", + "code_postal": "73410", + "nom_de_la_commune": "ENTRELACS", + "coordonnees_gps": [ + 45.789988746, + 5.93731067789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93731067789, + 45.789988746 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf423592d212e717a05c3b82183f40615260f954", + "fields": { + "code_commune_insee": "73011", + "nom_de_la_commune": "ALBERTVILLE", + "code_postal": "73200", + "coordonnees_gps": [ + 45.6683987277, + 6.40460338643 + ], + "libelle_d_acheminement": "ALBERTVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40460338643, + 45.6683987277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9495fae02bb16ff52402f537a131e3a9566e97a1", + "fields": { + "code_commune_insee": "73014", + "nom_de_la_commune": "ALLONDAZ", + "code_postal": "73200", + "coordonnees_gps": [ + 45.7116530326, + 6.37223835121 + ], + "libelle_d_acheminement": "ALLONDAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37223835121, + 45.7116530326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c2668317ccae88b3735f82bc4d33010c915ff1a", + "fields": { + "code_commune_insee": "73015", + "nom_de_la_commune": "LES ALLUES", + "code_postal": "73550", + "coordonnees_gps": [ + 45.3697146214, + 6.58767852898 + ], + "libelle_d_acheminement": "LES ALLUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58767852898, + 45.3697146214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cba5300df1baa6651626d1a4f0076270627c3e13", + "fields": { + "code_commune_insee": "73022", + "nom_de_la_commune": "ATTIGNAT ONCIN", + "code_postal": "73610", + "coordonnees_gps": [ + 45.5141356972, + 5.77930411133 + ], + "libelle_d_acheminement": "ATTIGNAT ONCIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77930411133, + 45.5141356972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1e08b2dd00f73466c3548ee0f93e92b8cd31539", + "fields": { + "code_commune_insee": "73024", + "nom_de_la_commune": "LES AVANCHERS VALMOREL", + "code_postal": "73260", + "coordonnees_gps": [ + 45.4607199042, + 6.44362178612 + ], + "libelle_d_acheminement": "LES AVANCHERS VALMOREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44362178612, + 45.4607199042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2748462b9331148287eb6e29cfbe96f5bef7b41f", + "fields": { + "code_commune_insee": "73028", + "nom_de_la_commune": "LA BALME", + "code_postal": "73170", + "coordonnees_gps": [ + 45.6779560454, + 5.70516932541 + ], + "libelle_d_acheminement": "LA BALME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70516932541, + 45.6779560454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1ecc6dfd6fdb73b020c7fbe424d7c55f99f291c", + "fields": { + "code_commune_insee": "73033", + "nom_de_la_commune": "LA BAUCHE", + "code_postal": "73360", + "coordonnees_gps": [ + 45.4819870888, + 5.7703646358 + ], + "libelle_d_acheminement": "LA BAUCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7703646358, + 45.4819870888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d2b5d6add60b2b55acda11de25e2a6c6cf1c495", + "fields": { + "code_commune_insee": "73034", + "nom_de_la_commune": "BEAUFORT", + "code_postal": "73270", + "coordonnees_gps": [ + 45.6857270362, + 6.6034275098 + ], + "libelle_d_acheminement": "BEAUFORT SUR DORON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6034275098, + 45.6857270362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3810c6ebacf995d796b2b8b5284adee181ce3c07", + "fields": { + "code_commune_insee": "73036", + "nom_de_la_commune": "BELLECOMBE EN BAUGES", + "code_postal": "73340", + "coordonnees_gps": [ + 45.7380105012, + 6.14458814234 + ], + "libelle_d_acheminement": "BELLECOMBE EN BAUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14458814234, + 45.7380105012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "532ea8b32bab22a385a548f5bf83e05083690b17", + "fields": { + "code_commune_insee": "73039", + "nom_de_la_commune": "BELMONT TRAMONET", + "code_postal": "73330", + "coordonnees_gps": [ + 45.5651185204, + 5.6763421885 + ], + "libelle_d_acheminement": "BELMONT TRAMONET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6763421885, + 45.5651185204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "434124999b0e0e7ee5b7482da5083424787d8cb2", + "fields": { + "code_commune_insee": "73040", + "nom_de_la_commune": "BESSANS", + "code_postal": "73480", + "coordonnees_gps": [ + 45.292032537, + 7.04532734274 + ], + "libelle_d_acheminement": "BESSANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04532734274, + 45.292032537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41b2bf42368bf5633360b8e12e9e811ce4726e98", + "fields": { + "code_commune_insee": "73041", + "nom_de_la_commune": "BETTON BETTONET", + "code_postal": "73390", + "coordonnees_gps": [ + 45.5270872916, + 6.18182093379 + ], + "libelle_d_acheminement": "BETTON BETTONET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18182093379, + 45.5270872916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b83ce3fef5e302481af1d5bccecd1ed4efe5ad3", + "fields": { + "code_commune_insee": "73043", + "nom_de_la_commune": "LA BIOLLE", + "code_postal": "73410", + "coordonnees_gps": [ + 45.759099279, + 5.91593169517 + ], + "libelle_d_acheminement": "LA BIOLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91593169517, + 45.759099279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c96604b44d233f06f0fcf9233934c5ee50aff680", + "fields": { + "code_commune_insee": "73054", + "nom_de_la_commune": "BOURG ST MAURICE", + "code_postal": "73700", + "coordonnees_gps": [ + 45.6647980545, + 6.76637903907 + ], + "libelle_d_acheminement": "BOURG ST MAURICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76637903907, + 45.6647980545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d2485295558b2ef2c43c8e7f3f9e10e8ac9c9b9", + "fields": { + "code_commune_insee": "73057", + "nom_de_la_commune": "BRIDES LES BAINS", + "code_postal": "73570", + "coordonnees_gps": [ + 45.4538077442, + 6.56840188785 + ], + "libelle_d_acheminement": "BRIDES LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56840188785, + 45.4538077442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00233b7e0094ff5c8506fb6f8a7a6196b1e3de1b", + "fields": { + "code_commune_insee": "73058", + "nom_de_la_commune": "LA BRIDOIRE", + "code_postal": "73520", + "coordonnees_gps": [ + 45.5299612439, + 5.73849540904 + ], + "libelle_d_acheminement": "LA BRIDOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73849540904, + 45.5299612439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e601bb3041b09ea0f1b7fc23887d8f5e760906f5", + "fields": { + "code_commune_insee": "73059", + "nom_de_la_commune": "BRISON ST INNOCENT", + "code_postal": "73100", + "coordonnees_gps": [ + 45.7395213661, + 5.88235600157 + ], + "libelle_d_acheminement": "BRISON ST INNOCENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88235600157, + 45.7395213661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94fb25987391888d998e4cc54b1e43f8add6d7bb", + "fields": { + "code_commune_insee": "73065", + "nom_de_la_commune": "CHAMBERY", + "code_postal": "73000", + "coordonnees_gps": [ + 45.583182552, + 5.90903392417 + ], + "libelle_d_acheminement": "CHAMBERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90903392417, + 45.583182552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f27b61fd30f786cf20fa443a3f3550302f63644", + "fields": { + "code_commune_insee": "73071", + "nom_de_la_commune": "CHAMPAGNY EN VANOISE", + "code_postal": "73350", + "coordonnees_gps": [ + 45.450515364, + 6.77846464114 + ], + "libelle_d_acheminement": "CHAMPAGNY EN VANOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77846464114, + 45.450515364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb1bda9eb2d023dd0831f0836cac82628d68de3a", + "fields": { + "code_commune_insee": "73079", + "nom_de_la_commune": "CHATEAUNEUF", + "code_postal": "73390", + "coordonnees_gps": [ + 45.5473788658, + 6.18096637147 + ], + "libelle_d_acheminement": "CHATEAUNEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18096637147, + 45.5473788658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b76014f4fb917353bdb868770730f3ce14b16f4", + "fields": { + "code_commune_insee": "73086", + "nom_de_la_commune": "CLERY", + "code_postal": "73460", + "coordonnees_gps": [ + 45.6476389714, + 6.27314604473 + ], + "libelle_d_acheminement": "CLERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27314604473, + 45.6476389714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fe1562fddf71b4940dfb5a7c76aa233a26dee3a", + "fields": { + "code_commune_insee": "73092", + "nom_de_la_commune": "CORBEL", + "code_postal": "73160", + "coordonnees_gps": [ + 45.43925526, + 5.82865097845 + ], + "libelle_d_acheminement": "CORBEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82865097845, + 45.43925526 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e130f3fee4b2d6cd98a1c3ad079d2cdded941c9b", + "fields": { + "code_commune_insee": "73094", + "nom_de_la_commune": "CREST VOLAND", + "code_postal": "73590", + "coordonnees_gps": [ + 45.7896752359, + 6.51608069874 + ], + "libelle_d_acheminement": "CREST VOLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51608069874, + 45.7896752359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27a5593c6c422cff88d1c905ade0811f4548084e", + "fields": { + "code_commune_insee": "73103", + "nom_de_la_commune": "DRUMETTAZ CLARAFOND", + "code_postal": "73420", + "coordonnees_gps": [ + 45.6612110951, + 5.93781427031 + ], + "libelle_d_acheminement": "DRUMETTAZ CLARAFOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93781427031, + 45.6612110951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b9a8fdd3b93b03a0c072f09329779f03940f2b1", + "fields": { + "code_commune_insee": "73107", + "nom_de_la_commune": "ENTREMONT LE VIEUX", + "code_postal": "73670", + "coordonnees_gps": [ + 45.4619276502, + 5.88514501859 + ], + "libelle_d_acheminement": "ENTREMONT LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88514501859, + 45.4619276502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a418cd01520320fe23f7f1e2588e706758a408e", + "fields": { + "ligne_5": "LA TOUSSUIRE", + "code_commune_insee": "73116", + "libelle_d_acheminement": "FONTCOUVERTE LA TOUSSUIRE", + "code_postal": "73300", + "nom_de_la_commune": "FONTCOUVERTE LA TOUSSUIRE", + "coordonnees_gps": [ + 45.2460484635, + 6.28249903846 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28249903846, + 45.2460484635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ce577289a5a8eb41a3fc971453fb10edacb4c99", + "fields": { + "code_commune_insee": "73129", + "nom_de_la_commune": "GRESY SUR ISERE", + "code_postal": "73460", + "coordonnees_gps": [ + 45.6009706105, + 6.24611530229 + ], + "libelle_d_acheminement": "GRESY SUR ISERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.24611530229, + 45.6009706105 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "117952126cbe8e4e3da47836338a63745afe1a26", + "fields": { + "code_commune_insee": "73132", + "nom_de_la_commune": "HAUTELUCE", + "code_postal": "73620", + "coordonnees_gps": [ + 45.7639265553, + 6.61481598841 + ], + "libelle_d_acheminement": "HAUTELUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61481598841, + 45.7639265553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8c2955a243f492065b1ee0fd5809708e20c2b7a", + "fields": { + "code_commune_insee": "73137", + "nom_de_la_commune": "JACOB BELLECOMBETTE", + "code_postal": "73000", + "coordonnees_gps": [ + 45.5515613333, + 5.9173220983 + ], + "libelle_d_acheminement": "JACOB BELLECOMBETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9173220983, + 45.5515613333 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c45c90c558e16c2184ab6adb253f25be8d3a862e", + "fields": { + "code_commune_insee": "73149", + "nom_de_la_commune": "LUCEY", + "code_postal": "73170", + "coordonnees_gps": [ + 45.7610525561, + 5.79415214079 + ], + "libelle_d_acheminement": "LUCEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79415214079, + 45.7610525561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "846eee438acc7e9c6c585069a3200e5214915c9c", + "fields": { + "ligne_5": "BELLENTRE", + "code_commune_insee": "73150", + "libelle_d_acheminement": "LA PLAGNE TARENTAISE", + "code_postal": "73210", + "nom_de_la_commune": "LA PLAGNE TARENTAISE", + "coordonnees_gps": [ + 45.5224407762, + 6.69359362189 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69359362189, + 45.5224407762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41647fa5acb9ddf494d084ae555081f151ece681", + "fields": { + "ligne_5": "LA PLAGNE", + "code_commune_insee": "73150", + "libelle_d_acheminement": "LA PLAGNE TARENTAISE", + "code_postal": "73210", + "nom_de_la_commune": "LA PLAGNE TARENTAISE", + "coordonnees_gps": [ + 45.5224407762, + 6.69359362189 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69359362189, + 45.5224407762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8adf6ef31a6015fc3988238e848a226244d41401", + "fields": { + "ligne_5": "VALEZAN", + "code_commune_insee": "73150", + "libelle_d_acheminement": "LA PLAGNE TARENTAISE", + "code_postal": "73210", + "nom_de_la_commune": "LA PLAGNE TARENTAISE", + "coordonnees_gps": [ + 45.5224407762, + 6.69359362189 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.69359362189, + 45.5224407762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "619f4814a2a19f39d4a7bff4ba79a0d6b34117ff", + "fields": { + "code_commune_insee": "73156", + "nom_de_la_commune": "MEYRIEUX TROUET", + "code_postal": "73170", + "coordonnees_gps": [ + 45.6471525763, + 5.78654601113 + ], + "libelle_d_acheminement": "MEYRIEUX TROUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78654601113, + 45.6471525763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67c96c56465e9fd14d1187775a15c16c68951e66", + "fields": { + "code_commune_insee": "73159", + "nom_de_la_commune": "LES MOLLETTES", + "code_postal": "73800", + "coordonnees_gps": [ + 45.4665131852, + 6.05865523761 + ], + "libelle_d_acheminement": "LES MOLLETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05865523761, + 45.4665131852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f764b9b888f3e4467d0d0b0b904a25b1f63ddf9", + "fields": { + "code_commune_insee": "73166", + "nom_de_la_commune": "MONTENDRY", + "code_postal": "73390", + "coordonnees_gps": [ + 45.5226367593, + 6.23966266966 + ], + "libelle_d_acheminement": "MONTENDRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23966266966, + 45.5226367593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a193dbdb0db5d079a7d2b268774978ea121ab27b", + "fields": { + "code_commune_insee": "73175", + "nom_de_la_commune": "MONTSAPEY", + "code_postal": "73220", + "coordonnees_gps": [ + 45.5314889919, + 6.36669427224 + ], + "libelle_d_acheminement": "MONTSAPEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36669427224, + 45.5314889919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bae148fd4f58b2bb5f7e27d3afdac32af76f955e", + "fields": { + "code_commune_insee": "73176", + "nom_de_la_commune": "MONTVALEZAN", + "code_postal": "73700", + "coordonnees_gps": [ + 45.633431524, + 6.87462366552 + ], + "libelle_d_acheminement": "MONTVALEZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87462366552, + 45.633431524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4af214cff1dc0c69135145137d0fad32ccd1bb8", + "fields": { + "code_commune_insee": "73179", + "nom_de_la_commune": "LA MOTTE SERVOLEX", + "code_postal": "73290", + "coordonnees_gps": [ + 45.6011711771, + 5.85409653786 + ], + "libelle_d_acheminement": "LA MOTTE SERVOLEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85409653786, + 45.6011711771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21a46c290e8de31073181814ffa251446b484cdf", + "fields": { + "code_commune_insee": "73181", + "nom_de_la_commune": "MOUTIERS", + "code_postal": "73600", + "coordonnees_gps": [ + 45.4857466628, + 6.53657755978 + ], + "libelle_d_acheminement": "MOUTIERS TARENTAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53657755978, + 45.4857466628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b32241c30c6916d83943e2b86fcd7b36af7e8fa", + "fields": { + "code_commune_insee": "73186", + "nom_de_la_commune": "NOTRE DAME DE BELLECOMBE", + "code_postal": "73590", + "coordonnees_gps": [ + 45.7951588236, + 6.55684529691 + ], + "libelle_d_acheminement": "NOTRE DAME DE BELLECOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55684529691, + 45.7951588236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aa1aee7fd69d2af4d1f4980b95d3ee776477ab5", + "fields": { + "ligne_5": "FEISSONS SUR ISERE", + "code_commune_insee": "73187", + "libelle_d_acheminement": "LA LECHERE", + "code_postal": "73260", + "nom_de_la_commune": "LA LECHERE", + "coordonnees_gps": [ + 45.5274218608, + 6.46078348062 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46078348062, + 45.5274218608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc6bf1a18169fd22dd9d2999bef066b45776d015", + "fields": { + "ligne_5": "PETIT COEUR", + "code_commune_insee": "73187", + "libelle_d_acheminement": "LA LECHERE", + "code_postal": "73260", + "nom_de_la_commune": "LA LECHERE", + "coordonnees_gps": [ + 45.5274218608, + 6.46078348062 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46078348062, + 45.5274218608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1989b415d7c640573b9179d05c8054dc0267353", + "fields": { + "code_commune_insee": "73190", + "nom_de_la_commune": "NOTRE DAME DU PRE", + "code_postal": "73600", + "coordonnees_gps": [ + 45.5031164801, + 6.60523246896 + ], + "libelle_d_acheminement": "NOTRE DAME DU PRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60523246896, + 45.5031164801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6e89f0b01a8f16859824dbe87a501579ebdba46", + "fields": { + "code_commune_insee": "73191", + "nom_de_la_commune": "NOVALAISE", + "code_postal": "73470", + "coordonnees_gps": [ + 45.5883066651, + 5.77193430721 + ], + "libelle_d_acheminement": "NOVALAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.77193430721, + 45.5883066651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42717e80c41d5e80c4ff76018f2a1352c458fc76", + "fields": { + "code_commune_insee": "73192", + "nom_de_la_commune": "LE NOYER", + "code_postal": "73340", + "coordonnees_gps": [ + 45.6672501537, + 6.05542044441 + ], + "libelle_d_acheminement": "LE NOYER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05542044441, + 45.6672501537 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1998d168b81b84d9cb0ceb02ee5289b829cfe1e2", + "fields": { + "code_commune_insee": "73208", + "nom_de_la_commune": "PUGNY CHATENOD", + "code_postal": "73100", + "coordonnees_gps": [ + 45.6923319762, + 5.95516143969 + ], + "libelle_d_acheminement": "PUGNY CHATENOD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95516143969, + 45.6923319762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18d140970462c67969f6ad58ee80d8e589c4946f", + "fields": { + "code_commune_insee": "73211", + "nom_de_la_commune": "QUEIGE", + "code_postal": "73720", + "coordonnees_gps": [ + 45.7071867017, + 6.46543980324 + ], + "libelle_d_acheminement": "QUEIGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46543980324, + 45.7071867017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c22fc829d6fefceb686828e478a8995c65db605", + "fields": { + "code_commune_insee": "73213", + "nom_de_la_commune": "LA RAVOIRE", + "code_postal": "73490", + "coordonnees_gps": [ + 45.5561328197, + 5.9602608047 + ], + "libelle_d_acheminement": "LA RAVOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9602608047, + 45.5561328197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "832e6d3618eb80a988a3872ea81ff6fc784515a2", + "fields": { + "ligne_5": "ETABLE", + "code_commune_insee": "73215", + "libelle_d_acheminement": "VALGELON LA ROCHETTE", + "code_postal": "73110", + "nom_de_la_commune": "VALGELON LA ROCHETTE", + "coordonnees_gps": [ + 45.4592334902, + 6.11216246274 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11216246274, + 45.4592334902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5b361837f267a7e32b449d38d58584ad41fca4f", + "fields": { + "code_commune_insee": "73225", + "nom_de_la_commune": "ST BALDOPH", + "code_postal": "73190", + "coordonnees_gps": [ + 45.529906626, + 5.94584830837 + ], + "libelle_d_acheminement": "ST BALDOPH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94584830837, + 45.529906626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a10c2fd13f57728a8bd176e5be0203c6b4d6808", + "fields": { + "code_commune_insee": "73226", + "nom_de_la_commune": "ST BERON", + "code_postal": "73520", + "coordonnees_gps": [ + 45.5067164494, + 5.72513692798 + ], + "libelle_d_acheminement": "ST BERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72513692798, + 45.5067164494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e59f1fe575de1d6ea5120eb2788f8cbd4547a9f9", + "fields": { + "code_commune_insee": "73229", + "nom_de_la_commune": "ST CHRISTOPHE", + "code_postal": "73360", + "coordonnees_gps": [ + 45.4517904868, + 5.78599778512 + ], + "libelle_d_acheminement": "ST CHRISTOPHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.78599778512, + 45.4517904868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38ec90e0f11e5b30d84f41745863a7fb6c92f98b", + "fields": { + "ligne_5": "MONTGELLAFREY", + "code_commune_insee": "73235", + "libelle_d_acheminement": "ST FRANCOIS LONGCHAMP", + "code_postal": "73130", + "nom_de_la_commune": "ST FRANCOIS LONGCHAMP", + "coordonnees_gps": [ + 45.4121018734, + 6.37380621288 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.37380621288, + 45.4121018734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb096004cfe93676bb3088d8818273653499a6aa", + "fields": { + "code_commune_insee": "73245", + "nom_de_la_commune": "ST JEAN DE CHEVELU", + "code_postal": "73170", + "coordonnees_gps": [ + 45.6954877529, + 5.82649490929 + ], + "libelle_d_acheminement": "ST JEAN DE CHEVELU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82649490929, + 45.6954877529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "205f4d7c9c587cbadf8c2d4d18a678baa76cef6f", + "fields": { + "code_commune_insee": "73258", + "nom_de_la_commune": "ST MARTIN DE LA PORTE", + "code_postal": "73140", + "coordonnees_gps": [ + 45.2637926068, + 6.45954136522 + ], + "libelle_d_acheminement": "ST MARTIN DE LA PORTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.45954136522, + 45.2637926068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e86c04dfdd235c085a716065607ebc994cd68bab", + "fields": { + "ligne_5": "THYL", + "code_commune_insee": "73261", + "libelle_d_acheminement": "ST MICHEL DE MAURIENNE", + "code_postal": "73140", + "nom_de_la_commune": "ST MICHEL DE MAURIENNE", + "coordonnees_gps": [ + 45.2382472621, + 6.49342053727 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49342053727, + 45.2382472621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ed87c3210143fa4902b557e5262936f98a39724", + "fields": { + "code_commune_insee": "73274", + "nom_de_la_commune": "ST PIERRE D ENTREMONT", + "code_postal": "73670", + "coordonnees_gps": [ + 45.4183046433, + 5.87969833573 + ], + "libelle_d_acheminement": "ST PIERRE D ENTREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87969833573, + 45.4183046433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d739645ff5a43f11074c5e6ff3866c8c210ba96", + "fields": { + "code_commune_insee": "73277", + "nom_de_la_commune": "STE REINE", + "code_postal": "73630", + "coordonnees_gps": [ + 45.6071367127, + 6.14343350447 + ], + "libelle_d_acheminement": "STE REINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14343350447, + 45.6071367127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d50a3f00b6345f6f03d62f1b0ca7ce4893a4dfd4", + "fields": { + "code_commune_insee": "73282", + "nom_de_la_commune": "ST THIBAUD DE COUZ", + "code_postal": "73160", + "coordonnees_gps": [ + 45.4944443083, + 5.8322579118 + ], + "libelle_d_acheminement": "ST THIBAUD DE COUZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8322579118, + 45.4944443083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79d3b7b8be725e5757bfda887ae56147ba6319b4", + "fields": { + "ligne_5": "SALINS LES THERMES", + "code_commune_insee": "73284", + "libelle_d_acheminement": "SALINS FONTAINE", + "code_postal": "73600", + "nom_de_la_commune": "SALINS FONTAINE", + "coordonnees_gps": [ + 45.4717964236, + 6.5301880554 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5301880554, + 45.4717964236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cea7931c3c9f377c2c4cac3d674c19e0364b1b6f", + "fields": { + "ligne_5": "TERMIGNON", + "code_commune_insee": "73290", + "libelle_d_acheminement": "VAL CENIS", + "code_postal": "73500", + "nom_de_la_commune": "VAL CENIS", + "coordonnees_gps": [ + 45.3441528771, + 6.84789108583 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84789108583, + 45.3441528771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf21061bacaa67ee6570d7c8ea4ea99c3464d005", + "fields": { + "code_commune_insee": "73294", + "nom_de_la_commune": "LA THUILE", + "code_postal": "73190", + "coordonnees_gps": [ + 45.5411277872, + 6.05633197484 + ], + "libelle_d_acheminement": "LA THUILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05633197484, + 45.5411277872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4254c42b2932aebe70f686b8bbe795cb4f54e1ed", + "fields": { + "code_commune_insee": "73303", + "nom_de_la_commune": "UGINE", + "code_postal": "73400", + "coordonnees_gps": [ + 45.7718876928, + 6.43266345275 + ], + "libelle_d_acheminement": "UGINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43266345275, + 45.7718876928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "226e900e1186450070ccd4fb441d2d1cc0a119c5", + "fields": { + "code_commune_insee": "73304", + "nom_de_la_commune": "VAL D ISERE", + "code_postal": "73150", + "coordonnees_gps": [ + 45.4310113935, + 6.99852444032 + ], + "libelle_d_acheminement": "VAL D ISERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99852444032, + 45.4310113935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b5917dfcc6f8b4c4539222136a045fd2a5ce82f", + "fields": { + "code_commune_insee": "73306", + "nom_de_la_commune": "VALLOIRE", + "code_postal": "73450", + "coordonnees_gps": [ + 45.1233680911, + 6.42400790634 + ], + "libelle_d_acheminement": "VALLOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42400790634, + 45.1233680911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1b2e36c366f759f0b4bae06b040ac4627a8dda3", + "fields": { + "code_commune_insee": "73307", + "nom_de_la_commune": "VALMEINIER", + "code_postal": "73450", + "coordonnees_gps": [ + 45.152061815, + 6.50820802644 + ], + "libelle_d_acheminement": "VALMEINIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50820802644, + 45.152061815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deb42e94462647edba823ea9c16333f2cf385c2d", + "fields": { + "code_commune_insee": "73310", + "nom_de_la_commune": "VEREL PRAGONDRAN", + "code_postal": "73230", + "coordonnees_gps": [ + 45.6213269536, + 5.95297759397 + ], + "libelle_d_acheminement": "VEREL PRAGONDRAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.95297759397, + 45.6213269536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a82dc766216de42018f0674fcacceac0fb837745", + "fields": { + "code_commune_insee": "73313", + "nom_de_la_commune": "VERTHEMEX", + "code_postal": "73170", + "coordonnees_gps": [ + 45.6285977197, + 5.79833212691 + ], + "libelle_d_acheminement": "VERTHEMEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79833212691, + 45.6285977197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f08ce48d05acb300fd3a1b88463902d41d9607e6", + "fields": { + "code_commune_insee": "73318", + "nom_de_la_commune": "VILLAREMBERT", + "code_postal": "73300", + "coordonnees_gps": [ + 45.2399528685, + 6.2643037706 + ], + "libelle_d_acheminement": "VILLAREMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2643037706, + 45.2399528685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6871e1a659529d114ba62e325682085204354c3c", + "fields": { + "code_commune_insee": "73324", + "nom_de_la_commune": "VILLAROUX", + "code_postal": "73110", + "coordonnees_gps": [ + 45.4620342064, + 6.0793012764 + ], + "libelle_d_acheminement": "VILLAROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0793012764, + 45.4620342064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65654ddb77ba0664da9ca3ebf30d3b33a47991b9", + "fields": { + "code_commune_insee": "73326", + "nom_de_la_commune": "VIMINES", + "code_postal": "73160", + "coordonnees_gps": [ + 45.5387653179, + 5.85041519179 + ], + "libelle_d_acheminement": "VIMINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85041519179, + 45.5387653179 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "131e83b68722785c6140ce4ca7187d6ba04a28f7", + "fields": { + "code_commune_insee": "74002", + "nom_de_la_commune": "ALBY SUR CHERAN", + "code_postal": "74540", + "coordonnees_gps": [ + 45.8156435779, + 6.01581486858 + ], + "libelle_d_acheminement": "ALBY SUR CHERAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01581486858, + 45.8156435779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17612c9c908a668a428eb1f077d88d78ee2dd24d", + "fields": { + "code_commune_insee": "74004", + "nom_de_la_commune": "ALLEVES", + "code_postal": "74540", + "coordonnees_gps": [ + 45.7588655872, + 6.08634740225 + ], + "libelle_d_acheminement": "ALLEVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08634740225, + 45.7588655872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8afbd553eb45015abbf38f03221f79bdf9fbd0b7", + "fields": { + "code_commune_insee": "74005", + "nom_de_la_commune": "ALLINGES", + "code_postal": "74200", + "coordonnees_gps": [ + 46.333709028, + 6.46512142751 + ], + "libelle_d_acheminement": "ALLINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46512142751, + 46.333709028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03106d8fe7d27bf9f3d7cdc74be223f54d5cec22", + "fields": { + "ligne_5": "BALMONT", + "code_commune_insee": "74010", + "libelle_d_acheminement": "ANNECY", + "code_postal": "74600", + "nom_de_la_commune": "ANNECY", + "coordonnees_gps": [ + 45.8906432566, + 6.12551773598 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12551773598, + 45.8906432566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7498817c9b7e52c6349e555e9bc6a4ba2484cec2", + "fields": { + "ligne_5": "ANNECY LE VIEUX", + "code_commune_insee": "74010", + "libelle_d_acheminement": "ANNECY", + "code_postal": "74940", + "nom_de_la_commune": "ANNECY", + "coordonnees_gps": [ + 45.8906432566, + 6.12551773598 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12551773598, + 45.8906432566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c71a1905767e905b448638be2ec8254d3ce17d0", + "fields": { + "code_commune_insee": "74015", + "nom_de_la_commune": "ARBUSIGNY", + "code_postal": "74930", + "coordonnees_gps": [ + 46.086240469, + 6.20734603818 + ], + "libelle_d_acheminement": "ARBUSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20734603818, + 46.086240469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "deba2e261a5264c45850de6147509a8b48445e2c", + "fields": { + "code_commune_insee": "74018", + "nom_de_la_commune": "ARENTHON", + "code_postal": "74800", + "coordonnees_gps": [ + 46.0981343308, + 6.3386699894 + ], + "libelle_d_acheminement": "ARENTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3386699894, + 46.0981343308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11f0c89dedc2e2b3c6406e2f771a872b956f8ce9", + "fields": { + "code_commune_insee": "74021", + "nom_de_la_commune": "ARTHAZ PONT NOTRE DAME", + "code_postal": "74380", + "coordonnees_gps": [ + 46.1606681382, + 6.26878505458 + ], + "libelle_d_acheminement": "ARTHAZ PONT NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26878505458, + 46.1606681382 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6b31c05dcfd7151335142b150b093986b8fe11d", + "fields": { + "code_commune_insee": "74024", + "nom_de_la_commune": "AYSE", + "code_postal": "74130", + "coordonnees_gps": [ + 46.0869924496, + 6.44601645014 + ], + "libelle_d_acheminement": "AYSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.44601645014, + 46.0869924496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ef42b32d52a8166156f1f5eb399ae9d9830e7c8", + "fields": { + "code_commune_insee": "74031", + "nom_de_la_commune": "BEAUMONT", + "code_postal": "74160", + "coordonnees_gps": [ + 46.0976635697, + 6.12074518078 + ], + "libelle_d_acheminement": "BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12074518078, + 46.0976635697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62b407e93b80a6411437bef5740b12e08217c47d", + "fields": { + "code_commune_insee": "74035", + "nom_de_la_commune": "BLOYE", + "code_postal": "74150", + "coordonnees_gps": [ + 45.8204275493, + 5.94977872948 + ], + "libelle_d_acheminement": "BLOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94977872948, + 45.8204275493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2272ede97b9ddd96caf99851653ed93a1e920e1", + "fields": { + "code_commune_insee": "74036", + "nom_de_la_commune": "BLUFFY", + "code_postal": "74290", + "coordonnees_gps": [ + 45.8655021029, + 6.22227398882 + ], + "libelle_d_acheminement": "BLUFFY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.22227398882, + 45.8655021029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "910cc547af5a58a258970d95ee043b0275802366", + "fields": { + "code_commune_insee": "74041", + "nom_de_la_commune": "BONNEVAUX", + "code_postal": "74360", + "coordonnees_gps": [ + 46.2948424143, + 6.66552754458 + ], + "libelle_d_acheminement": "BONNEVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66552754458, + 46.2948424143 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c97969cd3fe1b38d4c926e1b26f27a935cc60b9c", + "fields": { + "code_commune_insee": "74045", + "nom_de_la_commune": "LE BOUCHET", + "code_postal": "74230", + "coordonnees_gps": [ + 45.8045733703, + 6.38410878026 + ], + "libelle_d_acheminement": "LE BOUCHET MONT CHARVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.38410878026, + 45.8045733703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ea94c163bffd5085f76198c8e6d6726808e087e", + "fields": { + "code_commune_insee": "74048", + "nom_de_la_commune": "BRENTHONNE", + "code_postal": "74890", + "coordonnees_gps": [ + 46.2692786912, + 6.39437723207 + ], + "libelle_d_acheminement": "BRENTHONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39437723207, + 46.2692786912 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68489249c55bd28bd30ebc646bd814adeaaf7eb3", + "fields": { + "code_commune_insee": "74050", + "nom_de_la_commune": "BURDIGNIN", + "code_postal": "74420", + "coordonnees_gps": [ + 46.2324473826, + 6.42604409853 + ], + "libelle_d_acheminement": "BURDIGNIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42604409853, + 46.2324473826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "532630c8334b01bcd04892b1af916c45457a0fad", + "fields": { + "code_commune_insee": "74054", + "nom_de_la_commune": "CHAINAZ LES FRASSES", + "code_postal": "74540", + "coordonnees_gps": [ + 45.7784395221, + 5.98960566934 + ], + "libelle_d_acheminement": "CHAINAZ LES FRASSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98960566934, + 45.7784395221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "716a7132baa3374cb405baee66ea29bf99e29e8f", + "fields": { + "ligne_5": "LES BOSSONS", + "code_commune_insee": "74056", + "libelle_d_acheminement": "CHAMONIX MONT BLANC", + "code_postal": "74400", + "nom_de_la_commune": "CHAMONIX MONT BLANC", + "coordonnees_gps": [ + 45.9309819111, + 6.92360096711 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.92360096711, + 45.9309819111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e21dd6ee2a5800527baa181a65a2efa5977596bc", + "fields": { + "code_commune_insee": "74061", + "nom_de_la_commune": "CHAPEIRY", + "code_postal": "74540", + "coordonnees_gps": [ + 45.8392480283, + 6.03922674801 + ], + "libelle_d_acheminement": "CHAPEIRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03922674801, + 45.8392480283 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f48a6b7f7c46e1a644af48357cba5ad302f66e9", + "fields": { + "code_commune_insee": "74063", + "nom_de_la_commune": "CHATEL", + "code_postal": "74390", + "coordonnees_gps": [ + 46.2490325973, + 6.81712790779 + ], + "libelle_d_acheminement": "CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81712790779, + 46.2490325973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "673125bad8e1a3065dee415f49d82f8e3e5661e5", + "fields": { + "code_commune_insee": "74068", + "nom_de_la_commune": "CHENE EN SEMINE", + "code_postal": "74270", + "coordonnees_gps": [ + 46.0499479891, + 5.858890983 + ], + "libelle_d_acheminement": "CHENE EN SEMINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.858890983, + 46.0499479891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "771292021784851c7f2464b419c3709d981695b7", + "fields": { + "code_commune_insee": "74073", + "nom_de_la_commune": "CHEVENOZ", + "code_postal": "74500", + "coordonnees_gps": [ + 46.3330385867, + 6.64071625327 + ], + "libelle_d_acheminement": "CHEVENOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64071625327, + 46.3330385867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f870cbd32ed8360752e6b85f16c6e050b1441dd", + "fields": { + "ligne_5": "ARCINE", + "code_commune_insee": "74077", + "libelle_d_acheminement": "CLARAFOND ARCINE", + "code_postal": "74270", + "nom_de_la_commune": "CLARAFOND ARCINE", + "coordonnees_gps": [ + 46.074723886, + 5.89580535006 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89580535006, + 46.074723886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b19f363911d861df87de5410817690ae8b109ac", + "fields": { + "code_commune_insee": "74080", + "nom_de_la_commune": "LA CLUSAZ", + "code_postal": "74220", + "coordonnees_gps": [ + 45.9001389505, + 6.46031714364 + ], + "libelle_d_acheminement": "LA CLUSAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46031714364, + 45.9001389505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75de6593023c7e4fe9be41f9b48cbf7751cfae22", + "fields": { + "code_commune_insee": "59542", + "nom_de_la_commune": "ST REMY CHAUSSEE", + "code_postal": "59620", + "coordonnees_gps": [ + 50.1799835542, + 3.87887382168 + ], + "libelle_d_acheminement": "ST REMY CHAUSSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87887382168, + 50.1799835542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "193e2d102f1a324e58a6c2ae806b483707119619", + "fields": { + "code_commune_insee": "74088", + "nom_de_la_commune": "COPPONEX", + "code_postal": "74350", + "coordonnees_gps": [ + 46.0442257211, + 6.0703860483 + ], + "libelle_d_acheminement": "COPPONEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0703860483, + 46.0442257211 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3711dcd56d645c6f29a6d7c6dc52f7f41bb1a418", + "fields": { + "code_commune_insee": "59552", + "nom_de_la_commune": "SANCOURT", + "code_postal": "59268", + "coordonnees_gps": [ + 50.2144498638, + 3.19130962776 + ], + "libelle_d_acheminement": "SANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19130962776, + 50.2144498638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13eb1b08a267ec78ba908f8db3cbfa30906c2ba6", + "fields": { + "code_commune_insee": "74089", + "nom_de_la_commune": "CORDON", + "code_postal": "74700", + "coordonnees_gps": [ + 45.909121538, + 6.56940992155 + ], + "libelle_d_acheminement": "CORDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56940992155, + 45.909121538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccf056e7e2d2450822af0d0604b26eda4412acd4", + "fields": { + "code_commune_insee": "59566", + "nom_de_la_commune": "SEQUEDIN", + "code_postal": "59320", + "coordonnees_gps": [ + 50.6248188486, + 2.98254300781 + ], + "libelle_d_acheminement": "SEQUEDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98254300781, + 50.6248188486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2911916a507796c51a1eaa871152044a6dec41a", + "fields": { + "ligne_5": "BONNEGUETE", + "code_commune_insee": "74095", + "libelle_d_acheminement": "CREMPIGNY BONNEGUETE", + "code_postal": "74150", + "nom_de_la_commune": "CREMPIGNY BONNEGUETE", + "coordonnees_gps": [ + 45.9467841367, + 5.90312519314 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90312519314, + 45.9467841367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f88388b23eb9dd4b6a69ebed1bb38a9bde0a8932", + "fields": { + "code_commune_insee": "59577", + "nom_de_la_commune": "STAPLE", + "code_postal": "59190", + "coordonnees_gps": [ + 50.7522593819, + 2.44870670166 + ], + "libelle_d_acheminement": "STAPLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44870670166, + 50.7522593819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f637eb8de32712ea66ccaf906f9c98d982936cd3", + "fields": { + "code_commune_insee": "74096", + "nom_de_la_commune": "CRUSEILLES", + "code_postal": "74350", + "coordonnees_gps": [ + 46.0362105004, + 6.11527700259 + ], + "libelle_d_acheminement": "CRUSEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11527700259, + 46.0362105004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79f846929d972ebe4838a093831ca147718142ed", + "fields": { + "code_commune_insee": "59586", + "nom_de_la_commune": "TEMPLEUVE EN PEVELE", + "code_postal": "59242", + "coordonnees_gps": [ + 50.5327534602, + 3.17344214233 + ], + "libelle_d_acheminement": "TEMPLEUVE EN PEVELE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17344214233, + 50.5327534602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af5867c2ac46fb8d0480729aa840b88a86fedfe9", + "fields": { + "code_commune_insee": "74107", + "nom_de_la_commune": "DROISY", + "code_postal": "74270", + "coordonnees_gps": [ + 45.961959396, + 5.8811939602 + ], + "libelle_d_acheminement": "DROISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8811939602, + 45.961959396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea52f1ee109de64127bc54e6eb135c35568729a0", + "fields": { + "code_commune_insee": "59589", + "nom_de_la_commune": "THIANT", + "code_postal": "59224", + "coordonnees_gps": [ + 50.2978015553, + 3.43898383487 + ], + "libelle_d_acheminement": "THIANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43898383487, + 50.2978015553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5062b5543bc08d6bbd70b3d269ec46b435aac0bd", + "fields": { + "code_commune_insee": "74108", + "nom_de_la_commune": "DUINGT", + "code_postal": "74410", + "coordonnees_gps": [ + 45.8204516691, + 6.19524357933 + ], + "libelle_d_acheminement": "DUINGT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19524357933, + 45.8204516691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8604fa977fbfba28b4040df8fd2e6ebec42ed8f2", + "fields": { + "code_commune_insee": "59593", + "nom_de_la_commune": "THUN L EVEQUE", + "code_postal": "59141", + "coordonnees_gps": [ + 50.2257650605, + 3.28109704734 + ], + "libelle_d_acheminement": "THUN L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28109704734, + 50.2257650605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d861fc774100674e5ab821af0398eac9c5092c2", + "fields": { + "ligne_5": "EPAGNY", + "code_commune_insee": "74112", + "libelle_d_acheminement": "EPAGNY METZ TESSY", + "code_postal": "74330", + "nom_de_la_commune": "EPAGNY METZ TESSY", + "coordonnees_gps": [ + 45.9440370403, + 6.08226977374 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08226977374, + 45.9440370403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc7ab6dde10dc597ce1362a65e063b6ca5dfcf83", + "fields": { + "code_commune_insee": "59595", + "nom_de_la_commune": "THUN ST MARTIN", + "code_postal": "59141", + "coordonnees_gps": [ + 50.218482215, + 3.30304020982 + ], + "libelle_d_acheminement": "THUN ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30304020982, + 50.218482215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9ddf9e5583bfb03098df6f56eebfceadc07bda1", + "fields": { + "ligne_5": "PAS DE L ECHELLE", + "code_commune_insee": "74118", + "libelle_d_acheminement": "ETREMBIERES", + "code_postal": "74100", + "nom_de_la_commune": "ETREMBIERES", + "coordonnees_gps": [ + 46.1698202877, + 6.20839249952 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20839249952, + 46.1698202877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a836cadb9f70565f76a1af5727ad8c794ca5484", + "fields": { + "code_commune_insee": "59597", + "nom_de_la_commune": "TILLOY LEZ CAMBRAI", + "code_postal": "59554", + "coordonnees_gps": [ + 50.2010948825, + 3.21429536974 + ], + "libelle_d_acheminement": "TILLOY LEZ CAMBRAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21429536974, + 50.2010948825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e686de0d089723b251160004425d8d828fb3b854", + "fields": { + "code_commune_insee": "74122", + "nom_de_la_commune": "FAUCIGNY", + "code_postal": "74130", + "coordonnees_gps": [ + 46.1164159018, + 6.36907611887 + ], + "libelle_d_acheminement": "FAUCIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36907611887, + 46.1164159018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55f6634119fe4c03d49c8d44a3bfff8b4b6c7406", + "fields": { + "code_commune_insee": "59605", + "nom_de_la_commune": "UXEM", + "code_postal": "59229", + "coordonnees_gps": [ + 51.0239750832, + 2.49246889837 + ], + "libelle_d_acheminement": "UXEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49246889837, + 51.0239750832 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c836727e89518e4bc96121ccef5dabb49a5efc32", + "fields": { + "code_commune_insee": "74127", + "nom_de_la_commune": "FETERNES", + "code_postal": "74500", + "coordonnees_gps": [ + 46.3490789194, + 6.5652955969 + ], + "libelle_d_acheminement": "FETERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5652955969, + 46.3490789194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31119dec58ee0d2c2942a9151d44b9500068dc9e", + "fields": { + "code_commune_insee": "59606", + "nom_de_la_commune": "VALENCIENNES", + "code_postal": "59300", + "coordonnees_gps": [ + 50.3588666163, + 3.51567664819 + ], + "libelle_d_acheminement": "VALENCIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51567664819, + 50.3588666163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a072fc58232403b024101cab7547e3928a5d6fc7", + "fields": { + "code_commune_insee": "74133", + "nom_de_la_commune": "GAILLARD", + "code_postal": "74240", + "coordonnees_gps": [ + 46.1818085953, + 6.20707666644 + ], + "libelle_d_acheminement": "GAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.20707666644, + 46.1818085953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb3a3e98db52430ab57b6375682f0455f1343e27", + "fields": { + "code_commune_insee": "59608", + "nom_de_la_commune": "VENDEGIES SUR ECAILLON", + "code_postal": "59213", + "coordonnees_gps": [ + 50.2600667641, + 3.50791948811 + ], + "libelle_d_acheminement": "VENDEGIES SUR ECAILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50791948811, + 50.2600667641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e248825408e7763ac6ca21e2c1a4525532ef927b", + "fields": { + "code_commune_insee": "74147", + "nom_de_la_commune": "LATHUILE", + "code_postal": "74210", + "coordonnees_gps": [ + 45.7732607321, + 6.19555768621 + ], + "libelle_d_acheminement": "LATHUILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19555768621, + 45.7732607321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3296c1dcb2dd54d05dd196216b32b1b8a6642c7", + "fields": { + "code_commune_insee": "59611", + "nom_de_la_commune": "VERLINGHEM", + "code_postal": "59237", + "coordonnees_gps": [ + 50.6820809996, + 3.0005883762 + ], + "libelle_d_acheminement": "VERLINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0005883762, + 50.6820809996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a07c39731c8f3489f1fe399242f53f1ab7d738f5", + "fields": { + "code_commune_insee": "74148", + "nom_de_la_commune": "LESCHAUX", + "code_postal": "74320", + "coordonnees_gps": [ + 45.7750459129, + 6.11849070484 + ], + "libelle_d_acheminement": "LESCHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.11849070484, + 45.7750459129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dd7fbe603f3a2c2eec375eca21b65add9a611fa", + "fields": { + "code_commune_insee": "59617", + "nom_de_la_commune": "VIEUX MESNIL", + "code_postal": "59138", + "coordonnees_gps": [ + 50.2599763963, + 3.87105908253 + ], + "libelle_d_acheminement": "VIEUX MESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87105908253, + 50.2599763963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0177f30d9eecd3308eaa18ac327fa3e862c1649a", + "fields": { + "code_commune_insee": "74150", + "nom_de_la_commune": "LOISIN", + "code_postal": "74140", + "coordonnees_gps": [ + 46.2802184824, + 6.30399000794 + ], + "libelle_d_acheminement": "LOISIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30399000794, + 46.2802184824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad5a687183b65729fdd1da6f00670211810fe4b5", + "fields": { + "code_commune_insee": "59629", + "nom_de_la_commune": "VRED", + "code_postal": "59870", + "coordonnees_gps": [ + 50.3939409921, + 3.23217277359 + ], + "libelle_d_acheminement": "VRED" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23217277359, + 50.3939409921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a7310ea66bc6355696ff2f5c6e0ffd2f3c9698c", + "fields": { + "code_commune_insee": "74153", + "nom_de_la_commune": "LUCINGES", + "code_postal": "74380", + "coordonnees_gps": [ + 46.1940296525, + 6.32983573974 + ], + "libelle_d_acheminement": "LUCINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32983573974, + 46.1940296525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecad7dd1dbb3ef2efd18fa1e5a30886a8fba6618", + "fields": { + "code_commune_insee": "59631", + "nom_de_la_commune": "WALINCOURT SELVIGNY", + "code_postal": "59127", + "coordonnees_gps": [ + 50.0733447799, + 3.33900382143 + ], + "libelle_d_acheminement": "WALINCOURT SELVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33900382143, + 50.0733447799 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9d93b8af6829f2c99a43b52c59163d1e28aabcc", + "fields": { + "code_commune_insee": "74157", + "nom_de_la_commune": "LYAUD", + "code_postal": "74200", + "coordonnees_gps": [ + 46.3337086128, + 6.52037884691 + ], + "libelle_d_acheminement": "LYAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52037884691, + 46.3337086128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d4a1b4f4d70c55a6e8f6defc092f6e3e7a698c4", + "fields": { + "code_commune_insee": "59634", + "nom_de_la_commune": "WALLON CAPPEL", + "code_postal": "59190", + "coordonnees_gps": [ + 50.7278457083, + 2.48249397523 + ], + "libelle_d_acheminement": "WALLON CAPPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48249397523, + 50.7278457083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f0fbaead978580ef8717e5c2a9b79915b1d3586", + "fields": { + "code_commune_insee": "74166", + "nom_de_la_commune": "MARIN", + "code_postal": "74200", + "coordonnees_gps": [ + 46.374432028, + 6.52367394025 + ], + "libelle_d_acheminement": "MARIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52367394025, + 46.374432028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdde58824f06c176f53559fe8b2cbc72955d205e", + "fields": { + "code_commune_insee": "59636", + "nom_de_la_commune": "WAMBRECHIES", + "code_postal": "59118", + "coordonnees_gps": [ + 50.6957054596, + 3.0473159475 + ], + "libelle_d_acheminement": "WAMBRECHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0473159475, + 50.6957054596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f580b73c44a3dcd42a0f0484ca8169203a000de", + "fields": { + "code_commune_insee": "74170", + "nom_de_la_commune": "MASSINGY", + "code_postal": "74150", + "coordonnees_gps": [ + 45.8267941245, + 5.91585359049 + ], + "libelle_d_acheminement": "MASSINGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91585359049, + 45.8267941245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ff983ceba99b2fd70109494e0c2a8b3e8cb1138", + "fields": { + "code_commune_insee": "59648", + "nom_de_la_commune": "WATTIGNIES", + "code_postal": "59139", + "coordonnees_gps": [ + 50.5864928159, + 3.04193803597 + ], + "libelle_d_acheminement": "WATTIGNIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04193803597, + 50.5864928159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c1036087c0c052a124ba65d58a318bd9b3a0306", + "fields": { + "code_commune_insee": "59666", + "nom_de_la_commune": "ZEGERSCAPPEL", + "code_postal": "59470", + "coordonnees_gps": [ + 50.8833052086, + 2.384587094 + ], + "libelle_d_acheminement": "ZEGERSCAPPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.384587094, + 50.8833052086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d69a0e6a1d71819783a48a083d2ae76f92769eb", + "fields": { + "code_commune_insee": "59670", + "nom_de_la_commune": "DON", + "code_postal": "59272", + "coordonnees_gps": [ + 50.5440489811, + 2.91557809769 + ], + "libelle_d_acheminement": "DON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91557809769, + 50.5440489811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9502b4ff40a7925c9c97f207b4adcc62a3f64e6e", + "fields": { + "code_commune_insee": "60008", + "nom_de_la_commune": "AIRION", + "code_postal": "60600", + "coordonnees_gps": [ + 49.4222514079, + 2.41814312594 + ], + "libelle_d_acheminement": "AIRION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41814312594, + 49.4222514079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58f169b0cb0ea93739d652d8522d67abc3d726b4", + "fields": { + "code_commune_insee": "60009", + "nom_de_la_commune": "ALLONNE", + "code_postal": "60000", + "coordonnees_gps": [ + 49.3965343512, + 2.11883442492 + ], + "libelle_d_acheminement": "ALLONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11883442492, + 49.3965343512 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4557666c5b85738610d1492a91d4eb2e98cc5687", + "fields": { + "code_commune_insee": "60011", + "nom_de_la_commune": "AMY", + "code_postal": "60310", + "coordonnees_gps": [ + 49.6414081201, + 2.83395091808 + ], + "libelle_d_acheminement": "AMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83395091808, + 49.6414081201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb1d2f77c89d5de1b99aff24dc0171dc7595ebd5", + "fields": { + "code_commune_insee": "60017", + "nom_de_la_commune": "ANSAUVILLERS", + "code_postal": "60120", + "coordonnees_gps": [ + 49.5672978302, + 2.38642388977 + ], + "libelle_d_acheminement": "ANSAUVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38642388977, + 49.5672978302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bb6eb85278c98af8f454a65333805011fa7f989", + "fields": { + "code_commune_insee": "60021", + "nom_de_la_commune": "APPILLY", + "code_postal": "60400", + "coordonnees_gps": [ + 49.582424474, + 3.12116123031 + ], + "libelle_d_acheminement": "APPILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12116123031, + 49.582424474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03fffe30040188e4ad35f8494d608791f7767153", + "fields": { + "code_commune_insee": "60037", + "nom_de_la_commune": "BABOEUF", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5820096557, + 3.09130594062 + ], + "libelle_d_acheminement": "BABOEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09130594062, + 49.5820096557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eae8366f698a2506f0f398e6af36ef33a32268b3", + "fields": { + "code_commune_insee": "60041", + "nom_de_la_commune": "BAILLEUL SUR THERAIN", + "code_postal": "60930", + "coordonnees_gps": [ + 49.385157591, + 2.23033347435 + ], + "libelle_d_acheminement": "BAILLEUL SUR THERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23033347435, + 49.385157591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9f153215770b636c472028ef4a3eb80e784e5ae", + "fields": { + "code_commune_insee": "60044", + "nom_de_la_commune": "BALAGNY SUR THERAIN", + "code_postal": "60250", + "coordonnees_gps": [ + 49.2973878556, + 2.32131973295 + ], + "libelle_d_acheminement": "BALAGNY SUR THERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32131973295, + 49.2973878556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e382f71f14eee4d933fbad47fa770cf087e42b0", + "fields": { + "code_commune_insee": "60045", + "nom_de_la_commune": "BARBERY", + "code_postal": "60810", + "coordonnees_gps": [ + 49.2222684941, + 2.67330860939 + ], + "libelle_d_acheminement": "BARBERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67330860939, + 49.2222684941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbeec2c7d9fc6a342dab2d91b2e54e26329b512d", + "fields": { + "code_commune_insee": "60052", + "nom_de_la_commune": "BEAUGIES SOUS BOIS", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6372067347, + 3.09986657497 + ], + "libelle_d_acheminement": "BEAUGIES SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09986657497, + 49.6372067347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2b7202bd464082c527cdadbd245d270fdd95507", + "fields": { + "code_commune_insee": "60053", + "nom_de_la_commune": "BEAULIEU LES FONTAINES", + "code_postal": "60310", + "coordonnees_gps": [ + 49.6653459644, + 2.91164661769 + ], + "libelle_d_acheminement": "BEAULIEU LES FONTAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91164661769, + 49.6653459644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f510d977b75378b8089ed777d766578e2bee95dd", + "fields": { + "ligne_5": "VILLOTRAN", + "code_commune_insee": "60054", + "libelle_d_acheminement": "LES HAUTS TALICAN", + "code_postal": "60390", + "nom_de_la_commune": "LES HAUTS TALICAN", + "coordonnees_gps": [ + 49.3254912942, + 2.00355965035 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00355965035, + 49.3254912942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46bc5fd37987dc193181b06e90592819fd8ed9de", + "fields": { + "code_commune_insee": "60061", + "nom_de_la_commune": "BELLOY", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5352929666, + 2.65285100616 + ], + "libelle_d_acheminement": "BELLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65285100616, + 49.5352929666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9cf687c66cc8d485428204e45085ff5802c0a5cd", + "fields": { + "code_commune_insee": "60082", + "nom_de_la_commune": "BONNEUIL LES EAUX", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6808426625, + 2.24243541639 + ], + "libelle_d_acheminement": "BONNEUIL LES EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24243541639, + 49.6808426625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df346cd298497ae640982e7481b3db2e95c98fca", + "fields": { + "code_commune_insee": "60083", + "nom_de_la_commune": "BONNEUIL EN VALOIS", + "code_postal": "60123", + "coordonnees_gps": [ + 49.2800248996, + 2.98130103699 + ], + "libelle_d_acheminement": "BONNEUIL EN VALOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98130103699, + 49.2800248996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee93c80b33f3fb55b754a191695b91c191dc77ec", + "fields": { + "code_commune_insee": "60084", + "nom_de_la_commune": "BONNIERES", + "code_postal": "60112", + "coordonnees_gps": [ + 49.508074732, + 1.95670880366 + ], + "libelle_d_acheminement": "BONNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95670880366, + 49.508074732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba687f7a2bb86acceafb2179fbcab736f87f4f18", + "fields": { + "code_commune_insee": "60085", + "nom_de_la_commune": "BONVILLERS", + "code_postal": "60120", + "coordonnees_gps": [ + 49.5855067939, + 2.35206121544 + ], + "libelle_d_acheminement": "BONVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35206121544, + 49.5855067939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d115dffeb8558813cde4e776b27949308064269c", + "fields": { + "code_commune_insee": "60106", + "nom_de_la_commune": "BREUIL LE SEC", + "code_postal": "60840", + "coordonnees_gps": [ + 49.3780023932, + 2.45643096781 + ], + "libelle_d_acheminement": "BREUIL LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45643096781, + 49.3780023932 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1721bff91596680cb4d5fb5dff9818b426c71044", + "fields": { + "code_commune_insee": "60109", + "nom_de_la_commune": "BROMBOS", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6455079765, + 1.88822480879 + ], + "libelle_d_acheminement": "BROMBOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88822480879, + 49.6455079765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14c890be7a3f71beae8ae565bc202d61fe87ac18", + "fields": { + "code_commune_insee": "60113", + "nom_de_la_commune": "BUCAMPS", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5247948425, + 2.3166105981 + ], + "libelle_d_acheminement": "BUCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3166105981, + 49.5247948425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34ec643e6a41ea4329fbf615da4371a342d37dfd", + "fields": { + "code_commune_insee": "60115", + "nom_de_la_commune": "BULLES", + "code_postal": "60130", + "coordonnees_gps": [ + 49.4569537729, + 2.33518875415 + ], + "libelle_d_acheminement": "BULLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33518875415, + 49.4569537729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d125b5cf0db089eaf7602865b40f703501656e14", + "fields": { + "code_commune_insee": "60116", + "nom_de_la_commune": "BURY", + "code_postal": "60250", + "coordonnees_gps": [ + 49.3128542225, + 2.35865250561 + ], + "libelle_d_acheminement": "BURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35865250561, + 49.3128542225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e90378f749fb7e8705c91b9db368dc3afef98309", + "fields": { + "code_commune_insee": "60119", + "nom_de_la_commune": "CAMBRONNE LES RIBECOURT", + "code_postal": "60170", + "coordonnees_gps": [ + 49.5062092065, + 2.89807134548 + ], + "libelle_d_acheminement": "CAMBRONNE LES RIBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89807134548, + 49.5062092065 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ead47f11ee907a876e08cbfca5ba9f7b278748", + "fields": { + "code_commune_insee": "60124", + "nom_de_la_commune": "CANDOR", + "code_postal": "60310", + "coordonnees_gps": [ + 49.6285566714, + 2.88780350461 + ], + "libelle_d_acheminement": "CANDOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88780350461, + 49.6285566714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbb360670b7f57f6c6daf35bccd7388c3de03173", + "fields": { + "code_commune_insee": "60125", + "nom_de_la_commune": "CANLY", + "code_postal": "60680", + "coordonnees_gps": [ + 49.389080292, + 2.69965926929 + ], + "libelle_d_acheminement": "CANLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69965926929, + 49.389080292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d54dca6372fd2de75025a40b4b1b5896bdad76b", + "fields": { + "code_commune_insee": "60130", + "nom_de_la_commune": "CATENOY", + "code_postal": "60840", + "coordonnees_gps": [ + 49.3791543364, + 2.51800677203 + ], + "libelle_d_acheminement": "CATENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51800677203, + 49.3791543364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aad9a3241c5896a7a156760f7fc3861fb5f28ea", + "fields": { + "code_commune_insee": "60135", + "nom_de_la_commune": "CAUVIGNY", + "code_postal": "60730", + "coordonnees_gps": [ + 49.3026459577, + 2.24002692157 + ], + "libelle_d_acheminement": "CAUVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24002692157, + 49.3026459577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9a8f529da2755b849a52cfdca20a4eb31b4d52f", + "fields": { + "code_commune_insee": "60153", + "nom_de_la_commune": "CHOQUEUSE LES BENARDS", + "code_postal": "60360", + "coordonnees_gps": [ + 49.649815276, + 2.07488298131 + ], + "libelle_d_acheminement": "CHOQUEUSE LES BENARDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07488298131, + 49.649815276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94eafe48e790e6d04b5aaa3ce442906338cedb34", + "fields": { + "code_commune_insee": "60165", + "nom_de_la_commune": "LE COUDRAY SUR THELLE", + "code_postal": "60430", + "coordonnees_gps": [ + 49.3091487399, + 2.12428741588 + ], + "libelle_d_acheminement": "LE COUDRAY SUR THELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12428741588, + 49.3091487399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "166186ddb713bd50c9c24d0ad50249123865c891", + "fields": { + "code_commune_insee": "60166", + "nom_de_la_commune": "COUDUN", + "code_postal": "60150", + "coordonnees_gps": [ + 49.4581784318, + 2.8000113018 + ], + "libelle_d_acheminement": "COUDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8000113018, + 49.4581784318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86fa4b44537cd363f50efabf82d7f1fa4e29db6a", + "fields": { + "code_commune_insee": "60168", + "nom_de_la_commune": "COURCELLES EPAYELLES", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5696380397, + 2.62594591233 + ], + "libelle_d_acheminement": "COURCELLES EPAYELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62594591233, + 49.5696380397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "357691678a61ebf3162aba8cc5a1b200bc477013", + "fields": { + "code_commune_insee": "60172", + "nom_de_la_commune": "COYE LA FORET", + "code_postal": "60580", + "coordonnees_gps": [ + 49.1449874027, + 2.47045856809 + ], + "libelle_d_acheminement": "COYE LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47045856809, + 49.1449874027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "516e21e7fcf286941601d89db3d6b9f57aa5b16e", + "fields": { + "code_commune_insee": "60176", + "nom_de_la_commune": "CREPY EN VALOIS", + "code_postal": "60800", + "coordonnees_gps": [ + 49.2360130888, + 2.8969318206 + ], + "libelle_d_acheminement": "CREPY EN VALOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8969318206, + 49.2360130888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdccb873fa470651909a30deb33b5e8aefcd3afe", + "fields": { + "code_commune_insee": "60188", + "nom_de_la_commune": "CUISE LA MOTTE", + "code_postal": "60350", + "coordonnees_gps": [ + 49.3859702699, + 2.99976302541 + ], + "libelle_d_acheminement": "CUISE LA MOTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99976302541, + 49.3859702699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d23cc76e3bc7695fe930fb8c1bf34c2647738f3", + "fields": { + "code_commune_insee": "60190", + "nom_de_la_commune": "CUVERGNON", + "code_postal": "60620", + "coordonnees_gps": [ + 49.1740067801, + 2.99807792645 + ], + "libelle_d_acheminement": "CUVERGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99807792645, + 49.1740067801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f642b68e6dd78f43235bd951f88c53278903af8b", + "fields": { + "ligne_5": "LA NEUVILLE D AUMONT", + "code_commune_insee": "60196", + "libelle_d_acheminement": "LA DRENNE", + "code_postal": "60790", + "nom_de_la_commune": "LA DRENNE", + "coordonnees_gps": [ + 49.2942535417, + 2.11111174674 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11111174674, + 49.2942535417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bc5c88b960ae7bb555108b9a19f7064b8560441", + "fields": { + "ligne_5": "RESSONS L ABBAYE", + "code_commune_insee": "60196", + "libelle_d_acheminement": "LA DRENNE", + "code_postal": "60790", + "nom_de_la_commune": "LA DRENNE", + "coordonnees_gps": [ + 49.2942535417, + 2.11111174674 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11111174674, + 49.2942535417 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd3984733971b77f7bc223a73bb705c48a0295ee", + "fields": { + "code_commune_insee": "60197", + "nom_de_la_commune": "DIEUDONNE", + "code_postal": "60530", + "coordonnees_gps": [ + 49.241132253, + 2.24030627221 + ], + "libelle_d_acheminement": "DIEUDONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24030627221, + 49.241132253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2cd334f6ffe9f51f6312979c86a8b68f3ff18b8", + "fields": { + "code_commune_insee": "60212", + "nom_de_la_commune": "ERCUIS", + "code_postal": "60530", + "coordonnees_gps": [ + 49.2335196293, + 2.30851412485 + ], + "libelle_d_acheminement": "ERCUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30851412485, + 49.2335196293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "849702a96f0ae24c70de324110662f897f4fdb47", + "fields": { + "code_commune_insee": "60213", + "nom_de_la_commune": "ERMENONVILLE", + "code_postal": "60950", + "coordonnees_gps": [ + 49.1256725288, + 2.69642408679 + ], + "libelle_d_acheminement": "ERMENONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69642408679, + 49.1256725288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "185071a6ccaf9159d38ae85f8abd81c297c6f7a0", + "fields": { + "code_commune_insee": "60216", + "nom_de_la_commune": "ERQUINVILLERS", + "code_postal": "60130", + "coordonnees_gps": [ + 49.4596126861, + 2.48947452235 + ], + "libelle_d_acheminement": "ERQUINVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48947452235, + 49.4596126861 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfb69921ab798f55c619cd6ec346176212037fcb", + "fields": { + "code_commune_insee": "60232", + "nom_de_la_commune": "FERRIERES", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5890936598, + 2.51315398391 + ], + "libelle_d_acheminement": "FERRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51315398391, + 49.5890936598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1779d7c4d2b0db24d4e98f61714cb26699eca38b", + "fields": { + "code_commune_insee": "60240", + "nom_de_la_commune": "FONTAINE BONNELEAU", + "code_postal": "60360", + "coordonnees_gps": [ + 49.6636581121, + 2.14897434682 + ], + "libelle_d_acheminement": "FONTAINE BONNELEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14897434682, + 49.6636581121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd50ce44b96b3b5e0eaffda11b679f1acaa6d8af", + "fields": { + "code_commune_insee": "60247", + "nom_de_la_commune": "FOUILLEUSE", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4269878907, + 2.54053926429 + ], + "libelle_d_acheminement": "FOUILLEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54053926429, + 49.4269878907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28a7269fb309ecb7e8162ca1de3695a0e7d698c9", + "fields": { + "code_commune_insee": "60250", + "nom_de_la_commune": "FOUQUENIES", + "code_postal": "60000", + "coordonnees_gps": [ + 49.4652825822, + 2.03011183536 + ], + "libelle_d_acheminement": "FOUQUENIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03011183536, + 49.4652825822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed98d87b4deb06b3d19f3220de8da8988fea17f7", + "fields": { + "code_commune_insee": "60255", + "nom_de_la_commune": "FRENICHES", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6743203422, + 3.00463917072 + ], + "libelle_d_acheminement": "FRENICHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00463917072, + 49.6743203422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55744d559b8ed407ba27292448c5fae783eb2df2", + "fields": { + "code_commune_insee": "60258", + "nom_de_la_commune": "FRESNIERES", + "code_postal": "60310", + "coordonnees_gps": [ + 49.6228561422, + 2.80910070167 + ], + "libelle_d_acheminement": "FRESNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80910070167, + 49.6228561422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c057ee1c1d2775fb50ff50462e070fc32a141ab3", + "fields": { + "code_commune_insee": "60264", + "nom_de_la_commune": "FROCOURT", + "code_postal": "60000", + "coordonnees_gps": [ + 49.3813474009, + 2.08360584323 + ], + "libelle_d_acheminement": "FROCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08360584323, + 49.3813474009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09216c637f58a87047c507fad4354be62689a101", + "fields": { + "code_commune_insee": "60267", + "nom_de_la_commune": "LE GALLET", + "code_postal": "60360", + "coordonnees_gps": [ + 49.6251188685, + 2.11231378778 + ], + "libelle_d_acheminement": "LE GALLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11231378778, + 49.6251188685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21e83820ec40809ad9c3ff5381f55cf83f24f339", + "fields": { + "code_commune_insee": "60277", + "nom_de_la_commune": "GOINCOURT", + "code_postal": "60000", + "coordonnees_gps": [ + 49.4249364687, + 2.03316738421 + ], + "libelle_d_acheminement": "GOINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03316738421, + 49.4249364687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7dd906b4ea5a5bdf0534d98421709870060b41a9", + "fields": { + "code_commune_insee": "60287", + "nom_de_la_commune": "GRANDRU", + "code_postal": "60400", + "coordonnees_gps": [ + 49.6125799831, + 3.07876647173 + ], + "libelle_d_acheminement": "GRANDRU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07876647173, + 49.6125799831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2a1ce5bd590ab3bbfe66a44778daf17b5f199442", + "fields": { + "code_commune_insee": "60291", + "nom_de_la_commune": "GUISCARD", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6583847453, + 3.05502192746 + ], + "libelle_d_acheminement": "GUISCARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05502192746, + 49.6583847453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4cb970d28666ca30b1662cc893a767acd112d94a", + "fields": { + "code_commune_insee": "60292", + "nom_de_la_commune": "GURY", + "code_postal": "60310", + "coordonnees_gps": [ + 49.5703401492, + 2.80143019037 + ], + "libelle_d_acheminement": "GURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80143019037, + 49.5703401492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d437bda7d3e59133e024a57c6c82d9beae72cf31", + "fields": { + "code_commune_insee": "60293", + "nom_de_la_commune": "HADANCOURT LE HAUT CLOCHER", + "code_postal": "60240", + "coordonnees_gps": [ + 49.1888359993, + 1.85320082465 + ], + "libelle_d_acheminement": "HADANCOURT LE HAUT CLOCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85320082465, + 49.1888359993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "044b84e15c97bfb66d803ac9b3480bec01150ba7", + "fields": { + "code_commune_insee": "60306", + "nom_de_la_commune": "HECOURT", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5238037939, + 1.77954561999 + ], + "libelle_d_acheminement": "HECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77954561999, + 49.5238037939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7024dbe4a2c1a654d8bb616861fb2cbdd6cf40f3", + "fields": { + "code_commune_insee": "60312", + "nom_de_la_commune": "HERICOURT SUR THERAIN", + "code_postal": "60380", + "coordonnees_gps": [ + 49.586663908, + 1.76354974469 + ], + "libelle_d_acheminement": "HERICOURT SUR THERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76354974469, + 49.586663908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5078e46dc86476b9852c7bc010fb20efcba67168", + "fields": { + "code_commune_insee": "60316", + "nom_de_la_commune": "HODENC L EVEQUE", + "code_postal": "60430", + "coordonnees_gps": [ + 49.3361613976, + 2.14176639228 + ], + "libelle_d_acheminement": "HODENC L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14176639228, + 49.3361613976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a57684be07dc45487ba416305d22bae7e1716063", + "fields": { + "code_commune_insee": "60319", + "nom_de_la_commune": "LA HOUSSOYE", + "code_postal": "60390", + "coordonnees_gps": [ + 49.3541163748, + 1.9482489871 + ], + "libelle_d_acheminement": "LA HOUSSOYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9482489871, + 49.3541163748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a68e495f3f974f632df9849e645dcbb1e168df49", + "fields": { + "code_commune_insee": "60322", + "nom_de_la_commune": "JAMERICOURT", + "code_postal": "60240", + "coordonnees_gps": [ + 49.3021818872, + 1.87348567207 + ], + "libelle_d_acheminement": "JAMERICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87348567207, + 49.3021818872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bab6691581fc29de4a3b32531d0d5ac889ff9bee", + "fields": { + "code_commune_insee": "60324", + "nom_de_la_commune": "JAULZY", + "code_postal": "60350", + "coordonnees_gps": [ + 49.3881283326, + 3.0594833004 + ], + "libelle_d_acheminement": "JAULZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0594833004, + 49.3881283326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b75a189a8622e343a6ea2488751b7b8ee175dae", + "fields": { + "code_commune_insee": "60329", + "nom_de_la_commune": "LABERLIERE", + "code_postal": "60310", + "coordonnees_gps": [ + 49.57515956, + 2.76304639278 + ], + "libelle_d_acheminement": "LABERLIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76304639278, + 49.57515956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50c7879c7754341be60698f7816beeac05885ebe", + "fields": { + "code_commune_insee": "60335", + "nom_de_la_commune": "LACHAPELLE SOUS GERBEROY", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5415853366, + 1.87591010386 + ], + "libelle_d_acheminement": "LACHAPELLE SOUS GERBEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87591010386, + 49.5415853366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be8ac263d1f055ae42d898b84c8a9b0c02b3160b", + "fields": { + "code_commune_insee": "60346", + "nom_de_la_commune": "LAMORLAYE", + "code_postal": "60260", + "coordonnees_gps": [ + 49.1602771773, + 2.41972419406 + ], + "libelle_d_acheminement": "LAMORLAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41972419406, + 49.1602771773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff17788df9cf715df1c002122a5faea38094d8c1", + "fields": { + "code_commune_insee": "60347", + "nom_de_la_commune": "LANNOY CUILLERE", + "code_postal": "60220", + "coordonnees_gps": [ + 49.7087683015, + 1.73577281734 + ], + "libelle_d_acheminement": "LANNOY CUILLERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73577281734, + 49.7087683015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97c57c514b709f2716619302c53c8a37a3301a1a", + "fields": { + "code_commune_insee": "60352", + "nom_de_la_commune": "LATTAINVILLE", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2410615022, + 1.80857359539 + ], + "libelle_d_acheminement": "LATTAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80857359539, + 49.2410615022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9037595345009a901c627c25a95d793560e21c7", + "fields": { + "code_commune_insee": "60355", + "nom_de_la_commune": "LAVERSINES", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4299134204, + 2.20087165324 + ], + "libelle_d_acheminement": "LAVERSINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20087165324, + 49.4299134204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "629af3cabe2d4d718701e4f6ac7bb5b57bf0fb18", + "fields": { + "code_commune_insee": "60360", + "nom_de_la_commune": "LIANCOURT", + "code_postal": "60140", + "coordonnees_gps": [ + 49.3300766734, + 2.46523634953 + ], + "libelle_d_acheminement": "LIANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46523634953, + 49.3300766734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9e139aa9d314a9f3ee8908095af46921bd74eb3", + "fields": { + "code_commune_insee": "60363", + "nom_de_la_commune": "LIERVILLE", + "code_postal": "60240", + "coordonnees_gps": [ + 49.1973720919, + 1.89089983426 + ], + "libelle_d_acheminement": "LIERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89089983426, + 49.1973720919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bb3a77f1d256d120743625e7ed1dcbf8a10da3b", + "fields": { + "code_commune_insee": "60364", + "nom_de_la_commune": "LIEUVILLERS", + "code_postal": "60130", + "coordonnees_gps": [ + 49.4742826717, + 2.48980639031 + ], + "libelle_d_acheminement": "LIEUVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48980639031, + 49.4742826717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6026c6f001382fe8afc80b66f24bdac8d5607878", + "fields": { + "code_commune_insee": "60367", + "nom_de_la_commune": "LOCONVILLE", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2574394193, + 1.91981496985 + ], + "libelle_d_acheminement": "LOCONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91981496985, + 49.2574394193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9af0e2d64462e3940bd747c921bc22d8f3d11998", + "fields": { + "code_commune_insee": "60368", + "nom_de_la_commune": "LONGUEIL ANNEL", + "code_postal": "60150", + "coordonnees_gps": [ + 49.4667196986, + 2.85423661921 + ], + "libelle_d_acheminement": "LONGUEIL ANNEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85423661921, + 49.4667196986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c739953930987e8c5a5a496b3ab49c539cf91624", + "fields": { + "code_commune_insee": "60370", + "nom_de_la_commune": "LORMAISON", + "code_postal": "60110", + "coordonnees_gps": [ + 49.2546108551, + 2.10422012576 + ], + "libelle_d_acheminement": "LORMAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10422012576, + 49.2546108551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b2b533f8706b414e72c86ee354c8d03079fc3ed", + "fields": { + "code_commune_insee": "60376", + "nom_de_la_commune": "MAISONCELLE ST PIERRE", + "code_postal": "60112", + "coordonnees_gps": [ + 49.5154384614, + 2.12121694853 + ], + "libelle_d_acheminement": "MAISONCELLE ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12121694853, + 49.5154384614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "048cbd08c7d59db5d7a68f9ac301f8c1b3aabd40", + "fields": { + "code_commune_insee": "60378", + "nom_de_la_commune": "MAREST SUR MATZ", + "code_postal": "60490", + "coordonnees_gps": [ + 49.5033268018, + 2.82457764723 + ], + "libelle_d_acheminement": "MAREST SUR MATZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82457764723, + 49.5033268018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb10081c1db7edee7defdfa359240f2dd8932fd7", + "fields": { + "code_commune_insee": "60387", + "nom_de_la_commune": "MARSEILLE EN BEAUVAISIS", + "code_postal": "60690", + "coordonnees_gps": [ + 49.5753195852, + 1.95765019879 + ], + "libelle_d_acheminement": "MARSEILLE EN BEAUVAISIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95765019879, + 49.5753195852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce17adf92d0c2591bcec0077d3a6666ad875d05d", + "fields": { + "code_commune_insee": "60392", + "nom_de_la_commune": "MELICOCQ", + "code_postal": "60150", + "coordonnees_gps": [ + 49.489344184, + 2.85004584455 + ], + "libelle_d_acheminement": "MELICOCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85004584455, + 49.489344184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea1077ec8b39641ff330f4e92f55d8f13c6e4325", + "fields": { + "code_commune_insee": "60394", + "nom_de_la_commune": "MENEVILLERS", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5212028828, + 2.60416999172 + ], + "libelle_d_acheminement": "MENEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60416999172, + 49.5212028828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44a9407193fd87bb9d16b87862aeeba3774ccc5f", + "fields": { + "code_commune_insee": "60397", + "nom_de_la_commune": "LE MESNIL CONTEVILLE", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6678346082, + 2.0642050499 + ], + "libelle_d_acheminement": "LE MESNIL CONTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0642050499, + 49.6678346082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e903c103df6fd5cfdc26c24e8a199339f91f0505", + "fields": { + "code_commune_insee": "60403", + "nom_de_la_commune": "MILLY SUR THERAIN", + "code_postal": "60112", + "coordonnees_gps": [ + 49.5090452996, + 2.01406401611 + ], + "libelle_d_acheminement": "MILLY SUR THERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01406401611, + 49.5090452996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0640a282fa3fe5c576760307609a0517605646b4", + "fields": { + "code_commune_insee": "60407", + "nom_de_la_commune": "MONCEAUX L ABBAYE", + "code_postal": "60220", + "coordonnees_gps": [ + 49.6524929678, + 1.78839949291 + ], + "libelle_d_acheminement": "MONCEAUX L ABBAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78839949291, + 49.6524929678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "556a9eef94f7b3471d63756da14702b48ade536b", + "fields": { + "code_commune_insee": "60415", + "nom_de_la_commune": "MONTEPILLOY", + "code_postal": "60810", + "coordonnees_gps": [ + 49.2139185636, + 2.70932676856 + ], + "libelle_d_acheminement": "MONTEPILLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70932676856, + 49.2139185636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca7c72259e153668a9dbebe62750dd5c92b962a3", + "fields": { + "code_commune_insee": "60416", + "nom_de_la_commune": "MONTGERAIN", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5386638914, + 2.58385170113 + ], + "libelle_d_acheminement": "MONTGERAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58385170113, + 49.5386638914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f0eb297bb8688270f586ed5a9ca824b56756944", + "fields": { + "code_commune_insee": "60423", + "nom_de_la_commune": "MONTMACQ", + "code_postal": "60150", + "coordonnees_gps": [ + 49.4818105198, + 2.9149211513 + ], + "libelle_d_acheminement": "MONTMACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9149211513, + 49.4818105198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfaed802870fe4f94d182f39c5c40276eb56b53d", + "fields": { + "code_commune_insee": "60425", + "nom_de_la_commune": "MONTREUIL SUR BRECHE", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5123717764, + 2.27407884393 + ], + "libelle_d_acheminement": "MONTREUIL SUR BRECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27407884393, + 49.5123717764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b95b482fa007657dd38614d22608ec30e0a982c", + "fields": { + "code_commune_insee": "60427", + "nom_de_la_commune": "MONTS", + "code_postal": "60119", + "coordonnees_gps": [ + 49.2187416558, + 2.0008608865 + ], + "libelle_d_acheminement": "MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0008608865, + 49.2187416558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d578bb648e7f22e60a6db1350519e2d1a0a4e22c", + "fields": { + "code_commune_insee": "60429", + "nom_de_la_commune": "MORANGLES", + "code_postal": "60530", + "coordonnees_gps": [ + 49.1948903601, + 2.30542739268 + ], + "libelle_d_acheminement": "MORANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30542739268, + 49.1948903601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fddeb43d34e51304701eeb0a0d06a6441678add", + "fields": { + "code_commune_insee": "60446", + "nom_de_la_commune": "NANTEUIL LE HAUDOUIN", + "code_postal": "60440", + "coordonnees_gps": [ + 49.1369195797, + 2.81079341188 + ], + "libelle_d_acheminement": "NANTEUIL LE HAUDOUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81079341188, + 49.1369195797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "224dd7fdeff0768ff28c98b677b1d71616b2bcd3", + "fields": { + "code_commune_insee": "60450", + "nom_de_la_commune": "NEUILLY EN THELLE", + "code_postal": "60530", + "coordonnees_gps": [ + 49.2285502167, + 2.27982147453 + ], + "libelle_d_acheminement": "NEUILLY EN THELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27982147453, + 49.2285502167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bcff7175f9268f1e5835cd2a5f13e592d41f029", + "fields": { + "code_commune_insee": "60456", + "nom_de_la_commune": "LA NEUVILLE ROY", + "code_postal": "60190", + "coordonnees_gps": [ + 49.4793462594, + 2.58212809207 + ], + "libelle_d_acheminement": "LA NEUVILLE ROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58212809207, + 49.4793462594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c39eae8e8124ffdf2cc3e015c412ea74f8047a72", + "fields": { + "code_commune_insee": "60461", + "nom_de_la_commune": "NIVILLERS", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4506700371, + 2.16728626603 + ], + "libelle_d_acheminement": "NIVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16728626603, + 49.4506700371 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc6e7d15d84f3c85f3ad100f7493431343e3086c", + "fields": { + "code_commune_insee": "60472", + "nom_de_la_commune": "OFFOY", + "code_postal": "60210", + "coordonnees_gps": [ + 49.6969048837, + 2.03849887777 + ], + "libelle_d_acheminement": "OFFOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03849887777, + 49.6969048837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd96bab2db29564b4d83ab95a4c45f3ce74df1db", + "fields": { + "code_commune_insee": "60474", + "nom_de_la_commune": "OGNOLLES", + "code_postal": "60310", + "coordonnees_gps": [ + 49.6882744078, + 2.9140817077 + ], + "libelle_d_acheminement": "OGNOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9140817077, + 49.6882744078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5297264cb8db203796eb9d14084e1be38bb7388b", + "fields": { + "code_commune_insee": "60480", + "nom_de_la_commune": "OROER", + "code_postal": "60510", + "coordonnees_gps": [ + 49.4964951058, + 2.18031432031 + ], + "libelle_d_acheminement": "OROER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18031432031, + 49.4964951058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3264bbcda9072d3302f47ce5692d181048f0d3da", + "fields": { + "code_commune_insee": "60486", + "nom_de_la_commune": "PAILLART", + "code_postal": "60120", + "coordonnees_gps": [ + 49.6651337935, + 2.3206181648 + ], + "libelle_d_acheminement": "PAILLART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3206181648, + 49.6651337935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d88827465855f3eac81f561c2d20a23a8d6193d8", + "fields": { + "code_commune_insee": "60491", + "nom_de_la_commune": "PIERREFONDS", + "code_postal": "60350", + "coordonnees_gps": [ + 49.348002803, + 2.96575966362 + ], + "libelle_d_acheminement": "PIERREFONDS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96575966362, + 49.348002803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce428b495a5e3bbd249201cedb8754954ef25d75", + "fields": { + "code_commune_insee": "60494", + "nom_de_la_commune": "PLAILLY", + "code_postal": "60128", + "coordonnees_gps": [ + 49.1113621574, + 2.57767746026 + ], + "libelle_d_acheminement": "PLAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57767746026, + 49.1113621574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ed4ffb61b19d42d0da7fceec69dca63ffc555c5", + "fields": { + "code_commune_insee": "60495", + "nom_de_la_commune": "PLAINVAL", + "code_postal": "60130", + "coordonnees_gps": [ + 49.5340616359, + 2.45773884627 + ], + "libelle_d_acheminement": "PLAINVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45773884627, + 49.5340616359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "843cd47322b95de8f4bd38112dde82aad79e4a57", + "fields": { + "code_commune_insee": "60502", + "nom_de_la_commune": "LE PLESSIS PATTE D OIE", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6838619137, + 3.06584033346 + ], + "libelle_d_acheminement": "LE PLESSIS PATTE D OIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06584033346, + 49.6838619137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf74d62c8fbabc2e41433fefcb14b6c7acadf7de", + "fields": { + "code_commune_insee": "60503", + "nom_de_la_commune": "LE PLOYRON", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5863727907, + 2.58183714891 + ], + "libelle_d_acheminement": "LE PLOYRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58183714891, + 49.5863727907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9c9abe3870a38d9eb754baa6e712add8af13f43", + "fields": { + "code_commune_insee": "60507", + "nom_de_la_commune": "PONTOISE LES NOYON", + "code_postal": "60400", + "coordonnees_gps": [ + 49.5434848302, + 3.04751072551 + ], + "libelle_d_acheminement": "PONTOISE LES NOYON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04751072551, + 49.5434848302 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ffb47f074ebe2f6337ef24373f2cd17cd890afb4", + "fields": { + "code_commune_insee": "60513", + "nom_de_la_commune": "PRECY SUR OISE", + "code_postal": "60460", + "coordonnees_gps": [ + 49.2033673942, + 2.36214384754 + ], + "libelle_d_acheminement": "PRECY SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36214384754, + 49.2033673942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4aecf7007c1679ef57ea5ba322b1e40539552fc2", + "fields": { + "code_commune_insee": "74216", + "nom_de_la_commune": "PRESILLY", + "code_postal": "74160", + "coordonnees_gps": [ + 46.0850070124, + 6.09107599342 + ], + "libelle_d_acheminement": "PRESILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09107599342, + 46.0850070124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98cae599f5160ab0740f9d281e357b3375cb0511", + "fields": { + "code_commune_insee": "60527", + "nom_de_la_commune": "REEZ FOSSE MARTIN", + "code_postal": "60620", + "coordonnees_gps": [ + 49.0912758357, + 2.92362494577 + ], + "libelle_d_acheminement": "REEZ FOSSE MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92362494577, + 49.0912758357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e90581cbbddd83312cb2b7be9af521545459e7c9", + "fields": { + "code_commune_insee": "74218", + "nom_de_la_commune": "PUBLIER", + "code_postal": "74500", + "coordonnees_gps": [ + 46.3896985259, + 6.54164965422 + ], + "libelle_d_acheminement": "PUBLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54164965422, + 46.3896985259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e26838e651a2bdb0f1f98000fe5a40ac174ba18", + "fields": { + "code_commune_insee": "60535", + "nom_de_la_commune": "REUIL SUR BRECHE", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5218600846, + 2.226027175 + ], + "libelle_d_acheminement": "REUIL SUR BRECHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.226027175, + 49.5218600846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd8aa67c6e4e8cc814d778129e1e6a02c31ab1e5", + "fields": { + "ligne_5": "AMPHION LES BAINS", + "code_commune_insee": "74218", + "libelle_d_acheminement": "PUBLIER", + "code_postal": "74500", + "nom_de_la_commune": "PUBLIER", + "coordonnees_gps": [ + 46.3896985259, + 6.54164965422 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54164965422, + 46.3896985259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "749ff85bb6df812ea7beb13018586ab843b080f4", + "fields": { + "code_commune_insee": "60545", + "nom_de_la_commune": "ROMESCAMPS", + "code_postal": "60220", + "coordonnees_gps": [ + 49.712188183, + 1.80039781774 + ], + "libelle_d_acheminement": "ROMESCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80039781774, + 49.712188183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6b7450f6311bcce0e4d69a4362aeffbec455d72", + "fields": { + "code_commune_insee": "74220", + "nom_de_la_commune": "REIGNIER ESERY", + "code_postal": "74930", + "coordonnees_gps": [ + 46.1353479879, + 6.26126122824 + ], + "libelle_d_acheminement": "REIGNIER ESERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26126122824, + 46.1353479879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a89c1d5852931d7b4a6a7621bd743f0fbe8ef011", + "fields": { + "code_commune_insee": "60547", + "nom_de_la_commune": "ROSOY", + "code_postal": "60140", + "coordonnees_gps": [ + 49.3392916564, + 2.50928278389 + ], + "libelle_d_acheminement": "ROSOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50928278389, + 49.3392916564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c401e5a470700f4ee30d48a365837af5c8255342", + "fields": { + "code_commune_insee": "74223", + "nom_de_la_commune": "LA RIVIERE ENVERSE", + "code_postal": "74440", + "coordonnees_gps": [ + 46.0896743627, + 6.63334619957 + ], + "libelle_d_acheminement": "LA RIVIERE ENVERSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63334619957, + 46.0896743627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18d10ecb77e72530f2f5e07e3bef196978771149", + "fields": { + "code_commune_insee": "60548", + "nom_de_la_commune": "ROSOY EN MULTIEN", + "code_postal": "60620", + "coordonnees_gps": [ + 49.0955522989, + 2.98960846382 + ], + "libelle_d_acheminement": "ROSOY EN MULTIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98960846382, + 49.0955522989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "914541d8d831ae065f4e8c36897eb635ce6b4589", + "fields": { + "code_commune_insee": "74224", + "nom_de_la_commune": "LA ROCHE SUR FORON", + "code_postal": "74800", + "coordonnees_gps": [ + 46.0431484138, + 6.30107653595 + ], + "libelle_d_acheminement": "LA ROCHE SUR FORON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30107653595, + 46.0431484138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6efe4b3aba0aa06709dc59bb50123a8f201e7d4", + "fields": { + "code_commune_insee": "60550", + "nom_de_la_commune": "ROTHOIS", + "code_postal": "60690", + "coordonnees_gps": [ + 49.5981184511, + 1.98978913272 + ], + "libelle_d_acheminement": "ROTHOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98978913272, + 49.5981184511 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77bfd21a5b7e6f8b9dd3113d520ac7c00f48d1c8", + "fields": { + "code_commune_insee": "74228", + "nom_de_la_commune": "ST BLAISE", + "code_postal": "74350", + "coordonnees_gps": [ + 46.0663582053, + 6.09154099437 + ], + "libelle_d_acheminement": "ST BLAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09154099437, + 46.0663582053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "527b21c4936be47a60ffe72594c64a6b222b148b", + "fields": { + "code_commune_insee": "60557", + "nom_de_la_commune": "ROY BOISSY", + "code_postal": "60690", + "coordonnees_gps": [ + 49.5802763443, + 1.91999157455 + ], + "libelle_d_acheminement": "ROY BOISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91999157455, + 49.5802763443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e8398b4920afc5b88fd7a0e8f3932dcd418da8a", + "fields": { + "code_commune_insee": "74229", + "nom_de_la_commune": "ST CERGUES", + "code_postal": "74140", + "coordonnees_gps": [ + 46.2308494715, + 6.32552147286 + ], + "libelle_d_acheminement": "ST CERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32552147286, + 46.2308494715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9bbd4dc74036bc0189bc5e838e5ef2c8d6cb8f4", + "fields": { + "code_commune_insee": "60558", + "nom_de_la_commune": "ROYE SUR MATZ", + "code_postal": "60310", + "coordonnees_gps": [ + 49.5936160984, + 2.7709194212 + ], + "libelle_d_acheminement": "ROYE SUR MATZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7709194212, + 49.5936160984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e2bebb92bb7437625f54212c4271304d577c964", + "fields": { + "code_commune_insee": "74231", + "nom_de_la_commune": "ST EUSEBE", + "code_postal": "74150", + "coordonnees_gps": [ + 45.9294639513, + 5.96296409626 + ], + "libelle_d_acheminement": "ST EUSEBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96296409626, + 45.9294639513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92a1c256c7ae3b8e0c81d3c40e7bd304a6b0ac49", + "fields": { + "code_commune_insee": "60564", + "nom_de_la_commune": "SAINS MORAINVILLERS", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5784892479, + 2.46396837971 + ], + "libelle_d_acheminement": "SAINS MORAINVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46396837971, + 49.5784892479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6417f2e144e43e2d87c0e26bc7677365bf213b05", + "fields": { + "code_commune_insee": "74237", + "nom_de_la_commune": "ST GINGOLPH", + "code_postal": "74500", + "coordonnees_gps": [ + 46.3882088835, + 6.77810230849 + ], + "libelle_d_acheminement": "ST GINGOLPH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77810230849, + 46.3882088835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17ccaffb6ba818d9701493a9cf351918d641d4b9", + "fields": { + "code_commune_insee": "60566", + "nom_de_la_commune": "ST ARNOULT", + "code_postal": "60220", + "coordonnees_gps": [ + 49.636114034, + 1.80591000401 + ], + "libelle_d_acheminement": "ST ARNOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80591000401, + 49.636114034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3300e9fab9a1c6e4b7c5dd6abed8781d4439703", + "fields": { + "code_commune_insee": "74239", + "nom_de_la_commune": "ST JEAN DE SIXT", + "code_postal": "74450", + "coordonnees_gps": [ + 45.9242802891, + 6.40961538858 + ], + "libelle_d_acheminement": "ST JEAN DE SIXT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.40961538858, + 45.9242802891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c3ac09c60750f3ab719f2208b206360d863d213", + "fields": { + "ligne_5": "LES FONTAINETTES", + "code_commune_insee": "60567", + "libelle_d_acheminement": "ST AUBIN EN BRAY", + "code_postal": "60650", + "nom_de_la_commune": "ST AUBIN EN BRAY", + "coordonnees_gps": [ + 49.4256177121, + 1.88925202038 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88925202038, + 49.4256177121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "441bb4ded3fda05f6946f7a7b04cc0ec1c1164a2", + "fields": { + "code_commune_insee": "74242", + "nom_de_la_commune": "ST JORIOZ", + "code_postal": "74410", + "coordonnees_gps": [ + 45.822898265, + 6.14963663908 + ], + "libelle_d_acheminement": "ST JORIOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14963663908, + 45.822898265 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14e2f04185f01f3ad281a7dfc16e1793f424f0fe", + "fields": { + "code_commune_insee": "60570", + "nom_de_la_commune": "ST CREPIN IBOUVILLERS", + "code_postal": "60149", + "coordonnees_gps": [ + 49.2592528645, + 2.06773136457 + ], + "libelle_d_acheminement": "ST CREPIN IBOUVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06773136457, + 49.2592528645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b33d6519510ad0e55806d5027e89ca49557899de", + "fields": { + "code_commune_insee": "74244", + "nom_de_la_commune": "ST LAURENT", + "code_postal": "74800", + "coordonnees_gps": [ + 46.0373461357, + 6.35335860666 + ], + "libelle_d_acheminement": "ST LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.35335860666, + 46.0373461357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f603754f8eb847301aecf39f3f90ff712e5f528", + "fields": { + "code_commune_insee": "60581", + "nom_de_la_commune": "ST JUST EN CHAUSSEE", + "code_postal": "60130", + "coordonnees_gps": [ + 49.5112063236, + 2.41780624403 + ], + "libelle_d_acheminement": "ST JUST EN CHAUSSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41780624403, + 49.5112063236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b9204ac58b8fa85f77e4d69ffd6f68fc6313e7e", + "fields": { + "code_commune_insee": "74255", + "nom_de_la_commune": "SALES", + "code_postal": "74150", + "coordonnees_gps": [ + 45.8821225736, + 5.96006746807 + ], + "libelle_d_acheminement": "SALES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.96006746807, + 45.8821225736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db6fe3fb0d0549908fcfb6e3b02a81e21532f803", + "fields": { + "code_commune_insee": "60582", + "nom_de_la_commune": "ST LEGER AUX BOIS", + "code_postal": "60170", + "coordonnees_gps": [ + 49.4782276386, + 2.95219747326 + ], + "libelle_d_acheminement": "ST LEGER AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95219747326, + 49.4782276386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1d4873b1e2fe3eae352e2c404a728b760682eca", + "fields": { + "code_commune_insee": "74258", + "nom_de_la_commune": "SAMOENS", + "code_postal": "74340", + "coordonnees_gps": [ + 46.0878467821, + 6.74329361493 + ], + "libelle_d_acheminement": "SAMOENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74329361493, + 46.0878467821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dc2e5f4ebcee3a49e79d6e44a9ca53e6d6d1b1f", + "fields": { + "code_commune_insee": "60591", + "nom_de_la_commune": "ST PAUL", + "code_postal": "60650", + "coordonnees_gps": [ + 49.4277052907, + 1.98675158982 + ], + "libelle_d_acheminement": "ST PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98675158982, + 49.4277052907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c21cf4578dce448db6864e856dde178004b7277", + "fields": { + "code_commune_insee": "74259", + "nom_de_la_commune": "LE SAPPEY", + "code_postal": "74350", + "coordonnees_gps": [ + 46.0883274931, + 6.16118965479 + ], + "libelle_d_acheminement": "LE SAPPEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16118965479, + 46.0883274931 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "474987840a9b399d58f570abcd2ab1a5ee41e7b9", + "fields": { + "code_commune_insee": "60594", + "nom_de_la_commune": "ST QUENTIN DES PRES", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5201563268, + 1.7479039158 + ], + "libelle_d_acheminement": "ST QUENTIN DES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7479039158, + 49.5201563268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec6839339456da8a320e87896c94c2d4ac9bff87", + "fields": { + "code_commune_insee": "74265", + "nom_de_la_commune": "SERRAVAL", + "code_postal": "74230", + "coordonnees_gps": [ + 45.8118131571, + 6.33496579827 + ], + "libelle_d_acheminement": "SERRAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33496579827, + 45.8118131571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75fc9754a54bc21e96d7a55d305f1e1eb49510ed", + "fields": { + "code_commune_insee": "60596", + "nom_de_la_commune": "ST SAMSON LA POTERIE", + "code_postal": "60220", + "coordonnees_gps": [ + 49.5932820021, + 1.73960582864 + ], + "libelle_d_acheminement": "ST SAMSON LA POTERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73960582864, + 49.5932820021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0365294c910016e5728d0d9fca911b9dd96b8b46", + "fields": { + "code_commune_insee": "74266", + "nom_de_la_commune": "SERVOZ", + "code_postal": "74310", + "coordonnees_gps": [ + 45.9454311308, + 6.78543826857 + ], + "libelle_d_acheminement": "SERVOZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.78543826857, + 45.9454311308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d6e3fba8ea11d35d4b3d3b770b830942b71c84f", + "fields": { + "code_commune_insee": "60598", + "nom_de_la_commune": "ST SULPICE", + "code_postal": "60430", + "coordonnees_gps": [ + 49.3492908609, + 2.12271497289 + ], + "libelle_d_acheminement": "ST SULPICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12271497289, + 49.3492908609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98b1bc3b6e0346ad29c05bde8d32ba3504c951b2", + "fields": { + "ligne_5": "MONTMIN", + "code_commune_insee": "74275", + "libelle_d_acheminement": "TALLOIRES MONTMIN", + "code_postal": "74210", + "nom_de_la_commune": "TALLOIRES MONTMIN", + "coordonnees_gps": [ + 45.8357923857, + 6.23052089871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23052089871, + 45.8357923857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "565cae3dddbd8d523dd00855ba6e77037f3999b9", + "fields": { + "code_commune_insee": "60612", + "nom_de_la_commune": "SENLIS", + "code_postal": "60300", + "coordonnees_gps": [ + 49.2118455897, + 2.58570626014 + ], + "libelle_d_acheminement": "SENLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58570626014, + 49.2118455897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dd85de96d18220df624ebfc4b18238d68a603ad", + "fields": { + "ligne_5": "TALLOIRES", + "code_commune_insee": "74275", + "libelle_d_acheminement": "TALLOIRES MONTMIN", + "code_postal": "74290", + "nom_de_la_commune": "TALLOIRES MONTMIN", + "coordonnees_gps": [ + 45.8357923857, + 6.23052089871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23052089871, + 45.8357923857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97ad86e8415b06367043af639be6dcc6829e74f1", + "fields": { + "code_commune_insee": "60618", + "nom_de_la_commune": "SERY MAGNEVAL", + "code_postal": "60800", + "coordonnees_gps": [ + 49.2584848304, + 2.86028691199 + ], + "libelle_d_acheminement": "SERY MAGNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86028691199, + 49.2584848304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a0d0f59263d091f124d9420c4d51c1af52de743", + "fields": { + "code_commune_insee": "74276", + "nom_de_la_commune": "TANINGES", + "code_postal": "74440", + "coordonnees_gps": [ + 46.1265071577, + 6.60770716363 + ], + "libelle_d_acheminement": "TANINGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60770716363, + 46.1265071577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "671afcccedfb56df643bc0dee2a15775ff5a8dc8", + "fields": { + "code_commune_insee": "60626", + "nom_de_la_commune": "TALMONTIERS", + "code_postal": "60590", + "coordonnees_gps": [ + 49.3892320184, + 1.75051136418 + ], + "libelle_d_acheminement": "TALMONTIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75051136418, + 49.3892320184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67dd04f47ca979ac6587727ecfcea854eac4db8d", + "fields": { + "code_commune_insee": "74280", + "nom_de_la_commune": "THONES", + "code_postal": "74230", + "coordonnees_gps": [ + 45.8852613668, + 6.31953220709 + ], + "libelle_d_acheminement": "THONES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31953220709, + 45.8852613668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85924023d2e2534e4a71659be8cd401c13d04452", + "fields": { + "code_commune_insee": "60632", + "nom_de_la_commune": "THIESCOURT", + "code_postal": "60310", + "coordonnees_gps": [ + 49.5596026493, + 2.86659655683 + ], + "libelle_d_acheminement": "THIESCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86659655683, + 49.5596026493 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21c1db692c52826d678a5eeb39ed0f4560b19b01", + "fields": { + "code_commune_insee": "74281", + "nom_de_la_commune": "THONON LES BAINS", + "code_postal": "74200", + "coordonnees_gps": [ + 46.3704258049, + 6.48194336071 + ], + "libelle_d_acheminement": "THONON LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48194336071, + 46.3704258049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdb7bf45834cde1aa13a3f0f94529f79cd7547d1", + "fields": { + "code_commune_insee": "60634", + "nom_de_la_commune": "THIEUX", + "code_postal": "60480", + "coordonnees_gps": [ + 49.5437985165, + 2.30999977831 + ], + "libelle_d_acheminement": "THIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30999977831, + 49.5437985165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a218355e2526b9470f607b33e5a3fa3a5c52940", + "fields": { + "ligne_5": "VONGY", + "code_commune_insee": "74281", + "libelle_d_acheminement": "THONON LES BAINS", + "code_postal": "74200", + "nom_de_la_commune": "THONON LES BAINS", + "coordonnees_gps": [ + 46.3704258049, + 6.48194336071 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.48194336071, + 46.3704258049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b6ace160ace78afadd7cbc2ef8872887a315384", + "fields": { + "code_commune_insee": "60642", + "nom_de_la_commune": "TRACY LE VAL", + "code_postal": "60170", + "coordonnees_gps": [ + 49.4907973534, + 3.01394376369 + ], + "libelle_d_acheminement": "TRACY LE VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01394376369, + 49.4907973534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3cf4d4a7700e58477f3af514de26e1f079e15b4f", + "fields": { + "ligne_5": "AVIERNOZ", + "code_commune_insee": "74282", + "libelle_d_acheminement": "FILLIERE", + "code_postal": "74570", + "nom_de_la_commune": "FILLIERE", + "coordonnees_gps": [ + 45.9923733891, + 6.28837579239 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.28837579239, + 45.9923733891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ed2b567cd7dedef72d9ca53bf617de4fb3cb7ef", + "fields": { + "ligne_5": "VILLERS SUR TRIE", + "code_commune_insee": "60644", + "libelle_d_acheminement": "TRIE CHATEAU", + "code_postal": "60590", + "nom_de_la_commune": "TRIE CHATEAU", + "coordonnees_gps": [ + 49.2868018979, + 1.81392681407 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81392681407, + 49.2868018979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcd837b8d05da7aa002369e181ed9c14d5dd9403", + "fields": { + "code_commune_insee": "74285", + "nom_de_la_commune": "USINENS", + "code_postal": "74910", + "coordonnees_gps": [ + 46.0141101531, + 5.85064952145 + ], + "libelle_d_acheminement": "USINENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85064952145, + 46.0141101531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96737b3d2802083a4df3a31971eb232878332b19", + "fields": { + "code_commune_insee": "60650", + "nom_de_la_commune": "TRUMILLY", + "code_postal": "60800", + "coordonnees_gps": [ + 49.2396223945, + 2.78712488353 + ], + "libelle_d_acheminement": "TRUMILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78712488353, + 49.2396223945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6bcfcd50ce3aeae6503f6e955ed9b05d2767b15", + "fields": { + "code_commune_insee": "74291", + "nom_de_la_commune": "VANZY", + "code_postal": "74270", + "coordonnees_gps": [ + 46.0345033012, + 5.87850321489 + ], + "libelle_d_acheminement": "VANZY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87850321489, + 46.0345033012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44493ef5bffaad1dbd5c28ea8572a0c3bf7359ef", + "fields": { + "code_commune_insee": "60659", + "nom_de_la_commune": "VAUDANCOURT", + "code_postal": "60240", + "coordonnees_gps": [ + 49.2291987469, + 1.76107824427 + ], + "libelle_d_acheminement": "VAUDANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76107824427, + 49.2291987469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9178ee0ea7630bb6e7997316be8891c2f90c7da5", + "fields": { + "code_commune_insee": "74299", + "nom_de_la_commune": "VEYRIER DU LAC", + "code_postal": "74290", + "coordonnees_gps": [ + 45.8857432709, + 6.17657908258 + ], + "libelle_d_acheminement": "VEYRIER DU LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17657908258, + 45.8857432709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abf6e5624df639141a9bde8725bf7f7608a76c00", + "fields": { + "code_commune_insee": "60660", + "nom_de_la_commune": "LE VAUMAIN", + "code_postal": "60590", + "coordonnees_gps": [ + 49.3425632763, + 1.86578114721 + ], + "libelle_d_acheminement": "LE VAUMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86578114721, + 49.3425632763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccc36239457c720b3b002bfc221f78d4bd413ee4", + "fields": { + "code_commune_insee": "74308", + "nom_de_la_commune": "VINZIER", + "code_postal": "74500", + "coordonnees_gps": [ + 46.3449767077, + 6.61043449085 + ], + "libelle_d_acheminement": "VINZIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61043449085, + 46.3449767077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2079882847f692575c317bc5356ae8007ccc8174", + "fields": { + "code_commune_insee": "60661", + "nom_de_la_commune": "VAUMOISE", + "code_postal": "60117", + "coordonnees_gps": [ + 49.2399086091, + 2.98230232507 + ], + "libelle_d_acheminement": "VAUMOISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98230232507, + 49.2399086091 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be2819bc9d38b5e16536929fc7784d3307629eef", + "fields": { + "code_commune_insee": "75101", + "nom_de_la_commune": "PARIS 01", + "code_postal": "75001", + "coordonnees_gps": [ + 48.8626304852, + 2.33629344655 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33629344655, + 48.8626304852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ea6b70e591e35756bf2024064b6bd839444f5db", + "fields": { + "ligne_5": "SAUQUEUSE ST LUCIEN", + "code_commune_insee": "60668", + "libelle_d_acheminement": "VERDEREL LES SAUQUEUSE", + "code_postal": "60112", + "nom_de_la_commune": "VERDEREL LES SAUQUEUSE", + "coordonnees_gps": [ + 49.5067320831, + 2.08154719995 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08154719995, + 49.5067320831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1fe12dc1a788c9e3c8cd3793667f1f19938c0a7", + "fields": { + "code_commune_insee": "75105", + "nom_de_la_commune": "PARIS 05", + "code_postal": "75005", + "coordonnees_gps": [ + 48.8445086596, + 2.34985938556 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34985938556, + 48.8445086596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92b840e957a6c36ace260cdcf302edd729397896", + "fields": { + "ligne_5": "VILLERS ST FRAMBOURG", + "code_commune_insee": "60682", + "libelle_d_acheminement": "VILLERS ST FRAMBOURG OGNON", + "code_postal": "60810", + "nom_de_la_commune": "VILLERS ST FRAMBOURG OGNON", + "coordonnees_gps": [ + 49.260726193, + 2.63465752752 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63465752752, + 49.260726193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72639f40fbdba8cf58038b71d3ccec23f6b87a1d", + "fields": { + "code_commune_insee": "75109", + "nom_de_la_commune": "PARIS 09", + "code_postal": "75009", + "coordonnees_gps": [ + 48.8768961624, + 2.33746024139 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33746024139, + 48.8768961624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c6abda557a063b1b45e3915c365bc593edfdd43", + "fields": { + "code_commune_insee": "60691", + "nom_de_la_commune": "VILLERS VERMONT", + "code_postal": "60380", + "coordonnees_gps": [ + 49.5743549353, + 1.7287833977 + ], + "libelle_d_acheminement": "VILLERS VERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7287833977, + 49.5743549353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4901e16658745c7346c068f31115640464d4cd8e", + "fields": { + "code_commune_insee": "75110", + "nom_de_la_commune": "PARIS 10", + "code_postal": "75010", + "coordonnees_gps": [ + 48.8760285569, + 2.36111290456 + ], + "libelle_d_acheminement": "PARIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36111290456, + 48.8760285569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc11c26af1545f0ebf705aff2c93540db5049b12", + "fields": { + "code_commune_insee": "60693", + "nom_de_la_commune": "VILLESELVE", + "code_postal": "60640", + "coordonnees_gps": [ + 49.6864956183, + 3.11192493316 + ], + "libelle_d_acheminement": "VILLESELVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.11192493316, + 49.6864956183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "638a7353e534f96339b3d261827b11a86a23c564", + "fields": { + "code_commune_insee": "76011", + "nom_de_la_commune": "ANCRETTEVILLE SUR MER", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7892649687, + 0.504203868088 + ], + "libelle_d_acheminement": "ANCRETTEVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.504203868088, + 49.7892649687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "683f7ab37a967519ca12f70f410cb8456d003ff8", + "fields": { + "code_commune_insee": "60698", + "nom_de_la_commune": "WACQUEMOULIN", + "code_postal": "60420", + "coordonnees_gps": [ + 49.5082288701, + 2.6214465099 + ], + "libelle_d_acheminement": "WACQUEMOULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6214465099, + 49.5082288701 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17831f95d7b5b3a9c0f4a7a1815b9277f46900aa", + "fields": { + "code_commune_insee": "76012", + "nom_de_la_commune": "ANGERVILLE BAILLEUL", + "code_postal": "76110", + "coordonnees_gps": [ + 49.667866856, + 0.45434007056 + ], + "libelle_d_acheminement": "ANGERVILLE BAILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45434007056, + 49.667866856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bea83da25159f9ccef1a46ead3ac509ef3640ddc", + "fields": { + "code_commune_insee": "60702", + "nom_de_la_commune": "WELLES PERENNES", + "code_postal": "60420", + "coordonnees_gps": [ + 49.6092799764, + 2.48322981336 + ], + "libelle_d_acheminement": "WELLES PERENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48322981336, + 49.6092799764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efeac818acea8189ad98e8f09cca87b4ecb17507", + "fields": { + "code_commune_insee": "76014", + "nom_de_la_commune": "ANGERVILLE L ORCHER", + "code_postal": "76280", + "coordonnees_gps": [ + 49.5867004346, + 0.292626408663 + ], + "libelle_d_acheminement": "ANGERVILLE L ORCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.292626408663, + 49.5867004346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e94366164b833887af6f05dbdd5ef3f14305de5b", + "fields": { + "code_commune_insee": "61010", + "nom_de_la_commune": "AUBRY LE PANTHOU", + "code_postal": "61120", + "coordonnees_gps": [ + 48.8545964209, + 0.227741225949 + ], + "libelle_d_acheminement": "AUBRY LE PANTHOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.227741225949, + 48.8545964209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c093c173640300048fada339d99ab4853475994", + "fields": { + "code_commune_insee": "76015", + "nom_de_la_commune": "ANGIENS", + "code_postal": "76740", + "coordonnees_gps": [ + 49.8336959193, + 0.798984210018 + ], + "libelle_d_acheminement": "ANGIENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.798984210018, + 49.8336959193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca6f289d0ed74b75bd8696bb1c7f0e71f9fd5564", + "fields": { + "code_commune_insee": "61023", + "nom_de_la_commune": "BAILLEUL", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8108648094, + -0.0236048546803 + ], + "libelle_d_acheminement": "BAILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0236048546803, + 48.8108648094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e1b3d5a668bf12e24d27bddb4d46bdfcf35f031", + "fields": { + "code_commune_insee": "76017", + "nom_de_la_commune": "ANGLESQUEVILLE L ESNEVAL", + "code_postal": "76280", + "coordonnees_gps": [ + 49.6304546019, + 0.235444303485 + ], + "libelle_d_acheminement": "ANGLESQUEVILLE L ESNEVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.235444303485, + 49.6304546019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5dcecfd73e94e88627a23e79b6608d5961a03f50", + "fields": { + "code_commune_insee": "61028", + "nom_de_la_commune": "BAZOCHES AU HOULME", + "code_postal": "61210", + "coordonnees_gps": [ + 48.8288059137, + -0.263374307048 + ], + "libelle_d_acheminement": "BAZOCHES AU HOULME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.263374307048, + 48.8288059137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72bb6d48eec416c1c4f85d7ff79bfc8fbde12b0e", + "fields": { + "code_commune_insee": "76018", + "nom_de_la_commune": "VAL DE SAANE", + "code_postal": "76890", + "coordonnees_gps": [ + 49.7084832857, + 0.966266484682 + ], + "libelle_d_acheminement": "VAL DE SAANE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.966266484682, + 49.7084832857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f54b7de079e1d8d5eeb885175be0f88d14df46a", + "fields": { + "code_commune_insee": "61034", + "nom_de_la_commune": "BEAULIEU", + "code_postal": "61190", + "coordonnees_gps": [ + 48.6802207803, + 0.736178480276 + ], + "libelle_d_acheminement": "BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.736178480276, + 48.6802207803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5df95d3005f34963bb3f1de9d4dcfea1f44872a5", + "fields": { + "ligne_5": "AMBOURVILLE", + "code_commune_insee": "76020", + "libelle_d_acheminement": "ANNEVILLE AMBOURVILLE", + "code_postal": "76480", + "nom_de_la_commune": "ANNEVILLE AMBOURVILLE", + "coordonnees_gps": [ + 49.450044528, + 0.891983658071 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.891983658071, + 49.450044528 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07239f43bd799a7cd34b55f758fd337c160cd9a4", + "fields": { + "code_commune_insee": "61035", + "nom_de_la_commune": "BEAUVAIN", + "code_postal": "61600", + "coordonnees_gps": [ + 48.6202503674, + -0.302633037156 + ], + "libelle_d_acheminement": "BEAUVAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.302633037156, + 48.6202503674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26c61ec1680c0ef931c78a0520767982ab78d5b1", + "fields": { + "code_commune_insee": "76023", + "nom_de_la_commune": "ANVEVILLE", + "code_postal": "76560", + "coordonnees_gps": [ + 49.6996514081, + 0.748889414499 + ], + "libelle_d_acheminement": "ANVEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.748889414499, + 49.6996514081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "712283fddd8e90aa0d4ae608d01042be58c54469", + "fields": { + "code_commune_insee": "61040", + "nom_de_la_commune": "BELLOU EN HOULME", + "code_postal": "61220", + "coordonnees_gps": [ + 48.6910303266, + -0.444104849045 + ], + "libelle_d_acheminement": "BELLOU EN HOULME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.444104849045, + 48.6910303266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e8159c6af7c37a0821179e2eb2424e4c8a4f8a8", + "fields": { + "code_commune_insee": "76026", + "nom_de_la_commune": "ARQUES LA BATAILLE", + "code_postal": "76880", + "coordonnees_gps": [ + 49.8821767195, + 1.1367858461 + ], + "libelle_d_acheminement": "ARQUES LA BATAILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1367858461, + 49.8821767195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fbdcd9332421b285e42aec8ff722de9cb6ba8d7", + "fields": { + "code_commune_insee": "61043", + "nom_de_la_commune": "BERD HUIS", + "code_postal": "61340", + "coordonnees_gps": [ + 48.3500105635, + 0.739532399855 + ], + "libelle_d_acheminement": "BERD HUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.739532399855, + 48.3500105635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8af538a128a7dce1c0222886b9ea06cc9f7bfa2d", + "fields": { + "code_commune_insee": "76028", + "nom_de_la_commune": "AUBEGUIMONT", + "code_postal": "76390", + "coordonnees_gps": [ + 49.8094901556, + 1.67974843453 + ], + "libelle_d_acheminement": "AUBEGUIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67974843453, + 49.8094901556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e8b4c161ac1fcf8e1359431deee017cd9f0cbc1", + "fields": { + "code_commune_insee": "61044", + "nom_de_la_commune": "BERJOU", + "code_postal": "61430", + "coordonnees_gps": [ + 48.8487660558, + -0.478406645322 + ], + "libelle_d_acheminement": "BERJOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.478406645322, + 48.8487660558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "828645424d90c951673f001843d132507bc936bb", + "fields": { + "code_commune_insee": "76032", + "nom_de_la_commune": "AUBERVILLE LA MANUEL", + "code_postal": "76450", + "coordonnees_gps": [ + 49.8291736749, + 0.584161454904 + ], + "libelle_d_acheminement": "AUBERVILLE LA MANUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.584161454904, + 49.8291736749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "337bf9c1377d26a7a499d3db7ce74da6b8aeec55", + "fields": { + "ligne_5": "BOISSY MAUGIS", + "code_commune_insee": "61050", + "libelle_d_acheminement": "COUR MAUGIS SUR HUISNE", + "code_postal": "61110", + "nom_de_la_commune": "COUR MAUGIS SUR HUISNE", + "coordonnees_gps": [ + 48.464144125, + 0.730036118715 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.730036118715, + 48.464144125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f9e7a8a6529092070fdf81737288d1da8e50478", + "fields": { + "ligne_5": "AUFFAY", + "code_commune_insee": "76034", + "libelle_d_acheminement": "VAL DE SCIE", + "code_postal": "76720", + "nom_de_la_commune": "VAL DE SCIE", + "coordonnees_gps": [ + 49.7124656757, + 1.11303892505 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11303892505, + 49.7124656757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4fef17f9617b8fd64904d93c0ca2b84239bda8f", + "fields": { + "ligne_5": "ST MAURICE SUR HUISNE", + "code_commune_insee": "61050", + "libelle_d_acheminement": "COUR MAUGIS SUR HUISNE", + "code_postal": "61110", + "nom_de_la_commune": "COUR MAUGIS SUR HUISNE", + "coordonnees_gps": [ + 48.464144125, + 0.730036118715 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.730036118715, + 48.464144125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83fa7e6a42f8f7c91439e738b3bfdc3c0fa28eeb", + "fields": { + "ligne_5": "SEVIS", + "code_commune_insee": "76034", + "libelle_d_acheminement": "VAL DE SCIE", + "code_postal": "76850", + "nom_de_la_commune": "VAL DE SCIE", + "coordonnees_gps": [ + 49.7124656757, + 1.11303892505 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11303892505, + 49.7124656757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b370ce620858192c2c49565cb5097b0fb71fac3e", + "fields": { + "code_commune_insee": "61055", + "nom_de_la_commune": "BOUCE", + "code_postal": "61570", + "coordonnees_gps": [ + 48.6324251717, + -0.095549889468 + ], + "libelle_d_acheminement": "BOUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.095549889468, + 48.6324251717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9eed46748282a4953ff1e1e59676560c76390f87", + "fields": { + "code_commune_insee": "76035", + "nom_de_la_commune": "AUMALE", + "code_postal": "76390", + "coordonnees_gps": [ + 49.7693741515, + 1.7549467172 + ], + "libelle_d_acheminement": "AUMALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7549467172, + 49.7693741515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff4979c449f85f7fef1e1d608f9b17d97713d9b4", + "fields": { + "code_commune_insee": "61061", + "nom_de_la_commune": "BRETONCELLES", + "code_postal": "61110", + "coordonnees_gps": [ + 48.4358447093, + 0.900700483444 + ], + "libelle_d_acheminement": "BRETONCELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.900700483444, + 48.4358447093 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a51a698e7c205d6f3e53c51e988bc707d458652", + "fields": { + "code_commune_insee": "76040", + "nom_de_la_commune": "AUTIGNY", + "code_postal": "76740", + "coordonnees_gps": [ + 49.7958346368, + 0.854290024951 + ], + "libelle_d_acheminement": "AUTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.854290024951, + 49.7958346368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9dfc10404825138a1b922cd802f1f7e11ebb05e", + "fields": { + "code_commune_insee": "61071", + "nom_de_la_commune": "CAMEMBERT", + "code_postal": "61120", + "coordonnees_gps": [ + 48.8916392638, + 0.17180547604 + ], + "libelle_d_acheminement": "CAMEMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17180547604, + 48.8916392638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa2ef6f13b702454ac95b68b2f9410a8e185ce62", + "fields": { + "code_commune_insee": "76042", + "nom_de_la_commune": "AUVILLIERS", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7577790499, + 1.57468218084 + ], + "libelle_d_acheminement": "AUVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57468218084, + 49.7577790499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15a7fa760b6fd9c96a258b1d2c3991524d248614", + "fields": { + "code_commune_insee": "61080", + "nom_de_la_commune": "CHAHAINS", + "code_postal": "61320", + "coordonnees_gps": [ + 48.561816363, + -0.116398968033 + ], + "libelle_d_acheminement": "CHAHAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.116398968033, + 48.561816363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07feb79119cb96e7710db14ae4fe1fd8161e321c", + "fields": { + "code_commune_insee": "76048", + "nom_de_la_commune": "AVESNES EN BRAY", + "code_postal": "76220", + "coordonnees_gps": [ + 49.4729560759, + 1.67584280631 + ], + "libelle_d_acheminement": "AVESNES EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67584280631, + 49.4729560759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "344adc939e072bdacd6173fed5948033d907b84e", + "fields": { + "code_commune_insee": "61082", + "nom_de_la_commune": "LE CHALANGE", + "code_postal": "61390", + "coordonnees_gps": [ + 48.5921212927, + 0.312206757526 + ], + "libelle_d_acheminement": "LE CHALANGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.312206757526, + 48.5921212927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1737e9d66f325f95b5f54a5801453a0f351c6d6", + "fields": { + "code_commune_insee": "76055", + "nom_de_la_commune": "BAONS LE COMTE", + "code_postal": "76190", + "coordonnees_gps": [ + 49.639081738, + 0.760973949866 + ], + "libelle_d_acheminement": "BAONS LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.760973949866, + 49.639081738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa480ef779fe94e3e854a9b771e747fdeb7e4cba", + "fields": { + "code_commune_insee": "61084", + "nom_de_la_commune": "CHAMPCERIE", + "code_postal": "61210", + "coordonnees_gps": [ + 48.7979697432, + -0.228081171597 + ], + "libelle_d_acheminement": "CHAMPCERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.228081171597, + 48.7979697432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc8d06ba2eccf3b14e616c53ebdf8d5b94e0d87a", + "fields": { + "code_commune_insee": "76058", + "nom_de_la_commune": "BAROMESNIL", + "code_postal": "76260", + "coordonnees_gps": [ + 49.9852128551, + 1.41261701359 + ], + "libelle_d_acheminement": "BAROMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41261701359, + 49.9852128551 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "497fff72d25e104a099325272cf7b7d66fbf1f1a", + "fields": { + "code_commune_insee": "61094", + "nom_de_la_commune": "LA CHAPELLE AU MOINE", + "code_postal": "61100", + "coordonnees_gps": [ + 48.7030083622, + -0.592037594285 + ], + "libelle_d_acheminement": "LA CHAPELLE AU MOINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.592037594285, + 48.7030083622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0842629ef42f6176dd15a3ba90d28055b2eb237e", + "fields": { + "code_commune_insee": "76066", + "nom_de_la_commune": "BEAUTOT", + "code_postal": "76890", + "coordonnees_gps": [ + 49.63626441, + 1.04779451017 + ], + "libelle_d_acheminement": "BEAUTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04779451017, + 49.63626441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14da0a0649371eb2c3f4561e2ad7e27d7997bd70", + "fields": { + "code_commune_insee": "61108", + "nom_de_la_commune": "CISAI ST AUBIN", + "code_postal": "61230", + "coordonnees_gps": [ + 48.7765975635, + 0.357700893574 + ], + "libelle_d_acheminement": "CISAI ST AUBIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.357700893574, + 48.7765975635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f05796fe097145a6ec43095fbad25fc7a0de2fd", + "fields": { + "code_commune_insee": "76076", + "nom_de_la_commune": "BENARVILLE", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6724716321, + 0.484474262834 + ], + "libelle_d_acheminement": "BENARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.484474262834, + 49.6724716321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90da8208d7aa4bcdab1dbfa4e72e7cb61ec3575b", + "fields": { + "code_commune_insee": "61121", + "nom_de_la_commune": "COULIMER", + "code_postal": "61360", + "coordonnees_gps": [ + 48.4795734598, + 0.461229892959 + ], + "libelle_d_acheminement": "COULIMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.461229892959, + 48.4795734598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8a9a72044022deac7c85bf154c2d8ab63edbb5e", + "fields": { + "code_commune_insee": "76083", + "nom_de_la_commune": "BERTHEAUVILLE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.7550523424, + 0.591607213489 + ], + "libelle_d_acheminement": "BERTHEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.591607213489, + 49.7550523424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "858640639f4ac00f290f7f377ae1ae5d05019aeb", + "fields": { + "code_commune_insee": "61129", + "nom_de_la_commune": "COURGEON", + "code_postal": "61400", + "coordonnees_gps": [ + 48.4792586192, + 0.610569927364 + ], + "libelle_d_acheminement": "COURGEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.610569927364, + 48.4792586192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c729c2615c0ba2171ec03f908f2303d24976a32e", + "fields": { + "code_commune_insee": "76090", + "nom_de_la_commune": "BEUZEVILLE LA GRENIER", + "code_postal": "76210", + "coordonnees_gps": [ + 49.5921780115, + 0.421311300104 + ], + "libelle_d_acheminement": "BEUZEVILLE LA GRENIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.421311300104, + 49.5921780115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d89d17485ae34be3c684f39d0ca23274d3f928ab", + "fields": { + "code_commune_insee": "61141", + "nom_de_la_commune": "CUISSAI", + "code_postal": "61250", + "coordonnees_gps": [ + 48.4725248248, + 0.00249150932899 + ], + "libelle_d_acheminement": "CUISSAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00249150932899, + 48.4725248248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcb552c4c5c8dec0ca07b45b3fbd5803d8783dca", + "fields": { + "code_commune_insee": "76092", + "nom_de_la_commune": "BEUZEVILLETTE", + "code_postal": "76210", + "coordonnees_gps": [ + 49.5754066385, + 0.54775977113 + ], + "libelle_d_acheminement": "BEUZEVILLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54775977113, + 49.5754066385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4afd1fa008ef6432776c092a6ec19b19dd145698", + "fields": { + "ligne_5": "DOMFRONT", + "code_commune_insee": "61145", + "libelle_d_acheminement": "DOMFRONT EN POIRAIE", + "code_postal": "61700", + "nom_de_la_commune": "DOMFRONT EN POIRAIE", + "coordonnees_gps": [ + 48.5824684934, + -0.61398156582 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61398156582, + 48.5824684934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "087858de916cc07e8caae1b4a9ce583056103100", + "fields": { + "code_commune_insee": "76093", + "nom_de_la_commune": "BEZANCOURT", + "code_postal": "76220", + "coordonnees_gps": [ + 49.4353415465, + 1.61372174979 + ], + "libelle_d_acheminement": "BEZANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61372174979, + 49.4353415465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2f563a6442d3a46480236d23ec09092d99ff3bd", + "fields": { + "code_commune_insee": "61148", + "nom_de_la_commune": "DURCET", + "code_postal": "61100", + "coordonnees_gps": [ + 48.7409713095, + -0.441750363185 + ], + "libelle_d_acheminement": "DURCET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441750363185, + 48.7409713095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09f7cdca074c3955180f04f2c4469cc68defc9c0", + "fields": { + "code_commune_insee": "76097", + "nom_de_la_commune": "BIVILLE LA RIVIERE", + "code_postal": "76730", + "coordonnees_gps": [ + 49.775723221, + 0.920460711671 + ], + "libelle_d_acheminement": "BIVILLE LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.920460711671, + 49.775723221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8284190c03a7a6d9dbfb52e4fd8cdbd858b861dd", + "fields": { + "code_commune_insee": "61149", + "nom_de_la_commune": "ECHALOU", + "code_postal": "61440", + "coordonnees_gps": [ + 48.7222533282, + -0.492334551677 + ], + "libelle_d_acheminement": "ECHALOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.492334551677, + 48.7222533282 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e87f8d607a4e35df277a3e09d6b983d478349ca9", + "fields": { + "code_commune_insee": "76104", + "nom_de_la_commune": "BLOSSEVILLE", + "code_postal": "76460", + "coordonnees_gps": [ + 49.8517136322, + 0.801917356304 + ], + "libelle_d_acheminement": "BLOSSEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.801917356304, + 49.8517136322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "906aa4d5e55215d9cf4f0c49c021e27841089ec8", + "fields": { + "code_commune_insee": "61152", + "nom_de_la_commune": "ECORCHES", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8736821576, + 0.0860912539084 + ], + "libelle_d_acheminement": "ECORCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0860912539084, + 48.8736821576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "975538e41f0b31faaaaff097a4f9bf58f6b63945", + "fields": { + "code_commune_insee": "76107", + "nom_de_la_commune": "BOIS GUILBERT", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5402657888, + 1.41428149817 + ], + "libelle_d_acheminement": "BOIS GUILBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.41428149817, + 49.5402657888 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8868aa2e3e5dff5fcb547bb947d7dcd74e3cb94e", + "fields": { + "ligne_5": "LOUCE", + "code_commune_insee": "61153", + "libelle_d_acheminement": "ECOUCHE LES VALLEES", + "code_postal": "61150", + "nom_de_la_commune": "ECOUCHE LES VALLEES", + "coordonnees_gps": [ + 48.715236562, + -0.11079364791 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11079364791, + 48.715236562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e68d23ee7288f2fe744928ec219488ecfddd190e", + "fields": { + "code_commune_insee": "76109", + "nom_de_la_commune": "BOIS HEROULT", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5643900372, + 1.4075026333 + ], + "libelle_d_acheminement": "BOIS HEROULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4075026333, + 49.5643900372 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfc5f6107ff290372539e78cd91755d51cf58cd8", + "fields": { + "ligne_5": "BOCQUENCE", + "code_commune_insee": "61167", + "libelle_d_acheminement": "LA FERTE EN OUCHE", + "code_postal": "61550", + "nom_de_la_commune": "LA FERTE EN OUCHE", + "coordonnees_gps": [ + 48.8362459554, + 0.508544741133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.508544741133, + 48.8362459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff84dda994d183c3924c9868f0e25d242b325739", + "fields": { + "code_commune_insee": "76111", + "nom_de_la_commune": "BOIS L EVEQUE", + "code_postal": "76160", + "coordonnees_gps": [ + 49.4524985039, + 1.25560190393 + ], + "libelle_d_acheminement": "BOIS L EVEQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.25560190393, + 49.4524985039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7c51af17594a72442a1f2e9c7e98980082ba124", + "fields": { + "ligne_5": "GLOS LA FERRIERE", + "code_commune_insee": "61167", + "libelle_d_acheminement": "LA FERTE EN OUCHE", + "code_postal": "61550", + "nom_de_la_commune": "LA FERTE EN OUCHE", + "coordonnees_gps": [ + 48.8362459554, + 0.508544741133 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.508544741133, + 48.8362459554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cf07aa8a4ab085c00d78f4ad802e17e748984fd", + "fields": { + "code_commune_insee": "76118", + "nom_de_la_commune": "BORNAMBUSC", + "code_postal": "76110", + "coordonnees_gps": [ + 49.625546295, + 0.353284639397 + ], + "libelle_d_acheminement": "BORNAMBUSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.353284639397, + 49.625546295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41c0627cca69f5306d0919c16ced6017bcb12818", + "fields": { + "code_commune_insee": "61168", + "nom_de_la_commune": "LA FERTE MACE", + "code_postal": "61600", + "coordonnees_gps": [ + 48.581835018, + -0.366879794994 + ], + "libelle_d_acheminement": "LA FERTE MACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.366879794994, + 48.581835018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97dee35cac957ae5d126be4d6bff4ae24a7427b6", + "fields": { + "code_commune_insee": "76122", + "nom_de_la_commune": "CALLENGEVILLE", + "code_postal": "76270", + "coordonnees_gps": [ + 49.8240856066, + 1.52206018014 + ], + "libelle_d_acheminement": "CALLENGEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52206018014, + 49.8240856066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbaacf3f802320ca83ed01d2f33482a341f6bffc", + "fields": { + "code_commune_insee": "76141", + "nom_de_la_commune": "BREAUTE", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6258979789, + 0.403765077716 + ], + "libelle_d_acheminement": "BREAUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.403765077716, + 49.6258979789 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20555f2009fcee349746a3a4198a76bb84f0c474", + "fields": { + "code_commune_insee": "76144", + "nom_de_la_commune": "BRETTEVILLE ST LAURENT", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7662190026, + 0.869259954301 + ], + "libelle_d_acheminement": "BRETTEVILLE ST LAURENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.869259954301, + 49.7662190026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f99e7fee6d3c79746a57b6db721b264ae8dbddc0", + "fields": { + "code_commune_insee": "76151", + "nom_de_la_commune": "CAILLEVILLE", + "code_postal": "76460", + "coordonnees_gps": [ + 49.8364501971, + 0.736017979248 + ], + "libelle_d_acheminement": "CAILLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.736017979248, + 49.8364501971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6253d75c62426f8158d0add6d4de880d6166fc3", + "fields": { + "code_commune_insee": "76154", + "nom_de_la_commune": "CAMPNEUSEVILLE", + "code_postal": "76340", + "coordonnees_gps": [ + 49.8621259676, + 1.66261477222 + ], + "libelle_d_acheminement": "CAMPNEUSEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66261477222, + 49.8621259676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd208e7ab672b4977e11b84ad3aa22ffee2cf4be", + "fields": { + "code_commune_insee": "76155", + "nom_de_la_commune": "CANEHAN", + "code_postal": "76260", + "coordonnees_gps": [ + 49.9795081711, + 1.34311716652 + ], + "libelle_d_acheminement": "CANEHAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34311716652, + 49.9795081711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1832de06de7c2dbb22ea055dda5ec4042160da27", + "fields": { + "ligne_5": "ST WANDRILLE RANCON", + "code_commune_insee": "76164", + "libelle_d_acheminement": "RIVES EN SEINE", + "code_postal": "76490", + "nom_de_la_commune": "RIVES EN SEINE", + "coordonnees_gps": [ + 49.5305126235, + 0.734830682082 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.734830682082, + 49.5305126235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3b090cda45ecf520ea80077326ee9fce15c8e09", + "fields": { + "code_commune_insee": "76165", + "nom_de_la_commune": "CAUDEBEC LES ELBEUF", + "code_postal": "76320", + "coordonnees_gps": [ + 49.2820542128, + 1.02549551616 + ], + "libelle_d_acheminement": "CAUDEBEC LES ELBEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.02549551616, + 49.2820542128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d7b1f082391246d90bedb7bc4c1a77769137fb4", + "fields": { + "code_commune_insee": "76166", + "nom_de_la_commune": "LE CAULE STE BEUVE", + "code_postal": "76390", + "coordonnees_gps": [ + 49.7755550599, + 1.59259694221 + ], + "libelle_d_acheminement": "LE CAULE STE BEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59259694221, + 49.7755550599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d01b5bc8edf0c56e716084afa68c56daf71ba27e", + "fields": { + "code_commune_insee": "76168", + "nom_de_la_commune": "LES CENT ACRES", + "code_postal": "76590", + "coordonnees_gps": [ + 49.7712128212, + 1.14121021088 + ], + "libelle_d_acheminement": "LES CENT ACRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14121021088, + 49.7712128212 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12188b9535815a04af7282964c09f3f23f1e0a2a", + "fields": { + "code_commune_insee": "76170", + "nom_de_la_commune": "LA CHAPELLE DU BOURGAY", + "code_postal": "76590", + "coordonnees_gps": [ + 49.8222579766, + 1.14610175636 + ], + "libelle_d_acheminement": "LA CHAPELLE DU BOURGAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14610175636, + 49.8222579766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7dfcd8b649452c835a51adfbacd4c4c0554f88c", + "fields": { + "code_commune_insee": "76175", + "nom_de_la_commune": "CLAIS", + "code_postal": "76660", + "coordonnees_gps": [ + 49.8139194785, + 1.47363845661 + ], + "libelle_d_acheminement": "CLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47363845661, + 49.8139194785 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "354757e2a7b70c59a075af16ed68840ce5ba943b", + "fields": { + "code_commune_insee": "76181", + "nom_de_la_commune": "CLEVILLE", + "code_postal": "76640", + "coordonnees_gps": [ + 49.6224516672, + 0.615947433679 + ], + "libelle_d_acheminement": "CLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.615947433679, + 49.6224516672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d1516bf465f72cb88f2798dca4d3ec288b5d90f", + "fields": { + "code_commune_insee": "76186", + "nom_de_la_commune": "CONTEVILLE", + "code_postal": "76390", + "coordonnees_gps": [ + 49.6966662324, + 1.63795618701 + ], + "libelle_d_acheminement": "CONTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63795618701, + 49.6966662324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ff532a8f0a2155aa3076208c01d51cb7cdb8bf3", + "fields": { + "code_commune_insee": "76198", + "nom_de_la_commune": "CRIQUETOT SUR OUVILLE", + "code_postal": "76760", + "coordonnees_gps": [ + 49.6716824681, + 0.849708916197 + ], + "libelle_d_acheminement": "CRIQUETOT SUR OUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.849708916197, + 49.6716824681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b4d3544ce7899507f2c72afc39099bef05a2937", + "fields": { + "code_commune_insee": "76199", + "nom_de_la_commune": "CRIQUIERS", + "code_postal": "76390", + "coordonnees_gps": [ + 49.6760539694, + 1.70166139305 + ], + "libelle_d_acheminement": "CRIQUIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70166139305, + 49.6760539694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1efbaa5856e01b9be7e34fa08b75577ce397c529", + "fields": { + "code_commune_insee": "76209", + "nom_de_la_commune": "DAMPIERRE EN BRAY", + "code_postal": "76220", + "coordonnees_gps": [ + 49.5345937963, + 1.66314096949 + ], + "libelle_d_acheminement": "DAMPIERRE EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66314096949, + 49.5345937963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c94844477a81d068567bcb252091fac7bddb0c51", + "fields": { + "code_commune_insee": "76213", + "nom_de_la_commune": "DAUBEUF SERVILLE", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6960147715, + 0.481684076028 + ], + "libelle_d_acheminement": "DAUBEUF SERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.481684076028, + 49.6960147715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2818aa76b99b9e888e6acaeddf922b82414e4cf3", + "fields": { + "code_commune_insee": "76217", + "nom_de_la_commune": "DIEPPE", + "code_postal": "76200", + "coordonnees_gps": [ + 49.9222503951, + 1.08681168449 + ], + "libelle_d_acheminement": "DIEPPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08681168449, + 49.9222503951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ca9c1ab0894c47ecdb2651578cf295bd44800b2", + "fields": { + "code_commune_insee": "76229", + "nom_de_la_commune": "ELBEUF EN BRAY", + "code_postal": "76220", + "coordonnees_gps": [ + 49.4938337874, + 1.65158974668 + ], + "libelle_d_acheminement": "ELBEUF EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65158974668, + 49.4938337874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78303fe2d9c4c4f1d0843b984e0904bc54f7f9e6", + "fields": { + "code_commune_insee": "76231", + "nom_de_la_commune": "ELBEUF", + "code_postal": "76500", + "coordonnees_gps": [ + 49.2767979948, + 0.997154590875 + ], + "libelle_d_acheminement": "ELBEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.997154590875, + 49.2767979948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dca2842e3b656e6b11da454309f700396e4ece9c", + "fields": { + "code_commune_insee": "76232", + "nom_de_la_commune": "ELETOT", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7897436329, + 0.457954579116 + ], + "libelle_d_acheminement": "ELETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.457954579116, + 49.7897436329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d15c34ff318324910cd2a92a298a0a55faf5210", + "fields": { + "code_commune_insee": "76233", + "nom_de_la_commune": "ELLECOURT", + "code_postal": "76390", + "coordonnees_gps": [ + 49.8012270823, + 1.72745453084 + ], + "libelle_d_acheminement": "ELLECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72745453084, + 49.8012270823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ced41e6011f0564376231f0f51db6799736657e5", + "fields": { + "code_commune_insee": "76245", + "nom_de_la_commune": "ESLETTES", + "code_postal": "76710", + "coordonnees_gps": [ + 49.5475542482, + 1.04647568612 + ], + "libelle_d_acheminement": "ESLETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04647568612, + 49.5475542482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c9129a45782e106edb37ed5ce21cecfa88e48fbf", + "fields": { + "code_commune_insee": "76249", + "nom_de_la_commune": "ETAIMPUIS", + "code_postal": "76850", + "coordonnees_gps": [ + 49.6398704816, + 1.14395186181 + ], + "libelle_d_acheminement": "ETAIMPUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14395186181, + 49.6398704816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98c42dfa23d1c1de866c638d63054db47c55ec20", + "fields": { + "code_commune_insee": "76257", + "nom_de_la_commune": "FALLENCOURT", + "code_postal": "76340", + "coordonnees_gps": [ + 49.8641030613, + 1.56702701699 + ], + "libelle_d_acheminement": "FALLENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56702701699, + 49.8641030613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5aaf796abba3aea3c953457a9a9f8eead0d67d9e", + "fields": { + "ligne_5": "AUZOUVILLE AUBERBOSC", + "code_commune_insee": "76258", + "libelle_d_acheminement": "TERRES DE CAUX", + "code_postal": "76640", + "nom_de_la_commune": "TERRES DE CAUX", + "coordonnees_gps": [ + 49.6570851688, + 0.584829133473 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.584829133473, + 49.6570851688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85bfafdcf600aecb108338c7553c87ebccf2fff2", + "fields": { + "ligne_5": "BENNETOT", + "code_commune_insee": "76258", + "libelle_d_acheminement": "TERRES DE CAUX", + "code_postal": "76640", + "nom_de_la_commune": "TERRES DE CAUX", + "coordonnees_gps": [ + 49.6570851688, + 0.584829133473 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.584829133473, + 49.6570851688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02d8e9e247ad77096cb3784320c87e20b7217370", + "fields": { + "code_commune_insee": "76275", + "nom_de_la_commune": "FONTENAY", + "code_postal": "76290", + "coordonnees_gps": [ + 49.5698530615, + 0.178104990731 + ], + "libelle_d_acheminement": "FONTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.178104990731, + 49.5698530615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0ee9f4e6c88c390328ae64345cae965079783dc", + "fields": { + "ligne_5": "LE FOSSE", + "code_commune_insee": "76276", + "libelle_d_acheminement": "FORGES LES EAUX", + "code_postal": "76440", + "nom_de_la_commune": "FORGES LES EAUX", + "coordonnees_gps": [ + 49.6117853364, + 1.53278752911 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53278752911, + 49.6117853364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc458aa29f8482aceaa8805e70d7cda5957c0f07", + "fields": { + "code_commune_insee": "76279", + "nom_de_la_commune": "FOUCART", + "code_postal": "76640", + "coordonnees_gps": [ + 49.6157923483, + 0.591746171294 + ], + "libelle_d_acheminement": "FOUCART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.591746171294, + 49.6157923483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb816794367ed6f5fbb638f892e725a8cf43a4b0", + "fields": { + "code_commune_insee": "76284", + "nom_de_la_commune": "FRESNAY LE LONG", + "code_postal": "76850", + "coordonnees_gps": [ + 49.6507422703, + 1.09305102633 + ], + "libelle_d_acheminement": "FRESNAY LE LONG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09305102633, + 49.6507422703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7c74974a9bc8297bdbece20382f4511d8403894", + "fields": { + "code_commune_insee": "76287", + "nom_de_la_commune": "FRESQUIENNES", + "code_postal": "76570", + "coordonnees_gps": [ + 49.5624935908, + 1.01177567927 + ], + "libelle_d_acheminement": "FRESQUIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01177567927, + 49.5624935908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "214b799f9eb852f45a4bb5459a1a2190d12be27d", + "fields": { + "ligne_5": "MONT DE L IF", + "code_commune_insee": "76289", + "libelle_d_acheminement": "ST MARTIN DE L IF", + "code_postal": "76190", + "nom_de_la_commune": "ST MARTIN DE L IF", + "coordonnees_gps": [ + 49.5651631452, + 0.833069408864 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.833069408864, + 49.5651631452 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7104016b4888140983ebb95b095b32e4a4b1fc36", + "fields": { + "code_commune_insee": "76291", + "nom_de_la_commune": "FROBERVILLE", + "code_postal": "76400", + "coordonnees_gps": [ + 49.7150765853, + 0.335597363106 + ], + "libelle_d_acheminement": "FROBERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.335597363106, + 49.7150765853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efbc66e583f725df2998471fd693b3ffff082b0b", + "fields": { + "code_commune_insee": "76300", + "nom_de_la_commune": "GERVILLE", + "code_postal": "76790", + "coordonnees_gps": [ + 49.697965438, + 0.328351503279 + ], + "libelle_d_acheminement": "GERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.328351503279, + 49.697965438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d65d045c0bae888b2395e26c8b02eef49f50f9d", + "fields": { + "ligne_5": "MAYVILLE", + "code_commune_insee": "76305", + "libelle_d_acheminement": "GONFREVILLE L ORCHER", + "code_postal": "76700", + "nom_de_la_commune": "GONFREVILLE L ORCHER", + "coordonnees_gps": [ + 49.4860837457, + 0.221985693724 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.221985693724, + 49.4860837457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c797b53150d8b1436e946ae86e2a61fccdc8db9", + "fields": { + "code_commune_insee": "76315", + "nom_de_la_commune": "GRAINVILLE LA TEINTURIERE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.7452374787, + 0.643304678405 + ], + "libelle_d_acheminement": "GRAINVILLE LA TEINTURIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.643304678405, + 49.7452374787 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfd117e854c91c7c66504e993717604de70ad2a5", + "fields": { + "code_commune_insee": "76317", + "nom_de_la_commune": "GRAINVILLE YMAUVILLE", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6540235507, + 0.413049424917 + ], + "libelle_d_acheminement": "GRAINVILLE YMAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.413049424917, + 49.6540235507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5f607f05b4837d86fe6dac83b593be8d743595e", + "fields": { + "code_commune_insee": "76323", + "nom_de_la_commune": "GRAVAL", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7280747492, + 1.55070267514 + ], + "libelle_d_acheminement": "GRAVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.55070267514, + 49.7280747492 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07059bb3d1b31fd756bfc4b855326ea1dbbe993a", + "fields": { + "code_commune_insee": "76324", + "nom_de_la_commune": "GREGES", + "code_postal": "76370", + "coordonnees_gps": [ + 49.9239147475, + 1.14871215445 + ], + "libelle_d_acheminement": "GREGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14871215445, + 49.9239147475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c7bc7b406f1c6d91a58a4f1f9a0ef156e3b50b0", + "fields": { + "code_commune_insee": "76332", + "nom_de_la_commune": "GRUMESNIL", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6204750653, + 1.69327955955 + ], + "libelle_d_acheminement": "GRUMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69327955955, + 49.6204750653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e3cfe0d342562447794375c635d6ba4bf2b9aa9", + "fields": { + "code_commune_insee": "76344", + "nom_de_la_commune": "HAUDRICOURT", + "code_postal": "76390", + "coordonnees_gps": [ + 49.7326671243, + 1.69688165531 + ], + "libelle_d_acheminement": "HAUDRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69688165531, + 49.7326671243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a28a40fe1eb196423ab4f0b788f06ad2b5b0eeb1", + "fields": { + "code_commune_insee": "76346", + "nom_de_la_commune": "HAUTOT L AUVRAY", + "code_postal": "76450", + "coordonnees_gps": [ + 49.765302786, + 0.755290722175 + ], + "libelle_d_acheminement": "HAUTOT L AUVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.755290722175, + 49.765302786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c5886cef769bb1a415c5c4cb04bac7889340f05", + "fields": { + "ligne_5": "ROUELLES", + "code_commune_insee": "76351", + "libelle_d_acheminement": "LE HAVRE", + "code_postal": "76610", + "nom_de_la_commune": "LE HAVRE", + "coordonnees_gps": [ + 49.498452502, + 0.140153719153 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.140153719153, + 49.498452502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6ef1c9198965ed3d61a0c398e14c1faca70ce76", + "fields": { + "code_commune_insee": "76357", + "nom_de_la_commune": "HERMEVILLE", + "code_postal": "76280", + "coordonnees_gps": [ + 49.5971803275, + 0.259748976024 + ], + "libelle_d_acheminement": "HERMEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.259748976024, + 49.5971803275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bedeb8e97aa264b323bd4fe13c5871e95faf5d7", + "fields": { + "code_commune_insee": "76360", + "nom_de_la_commune": "HEUGLEVILLE SUR SCIE", + "code_postal": "76720", + "coordonnees_gps": [ + 49.7347886916, + 1.09989900857 + ], + "libelle_d_acheminement": "HEUGLEVILLE SUR SCIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09989900857, + 49.7347886916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "382bda34700ac38f8a724fc56f8b1a4c21a6d3ac", + "fields": { + "code_commune_insee": "76370", + "nom_de_la_commune": "HUGLEVILLE EN CAUX", + "code_postal": "76570", + "coordonnees_gps": [ + 49.6236633392, + 0.990120224832 + ], + "libelle_d_acheminement": "HUGLEVILLE EN CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.990120224832, + 49.6236633392 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a3dc135041572d81273654bc6c485a83fd9dfcf", + "fields": { + "code_commune_insee": "61188", + "nom_de_la_commune": "LA GENEVRAIE", + "code_postal": "61240", + "coordonnees_gps": [ + 48.6836221489, + 0.319127105217 + ], + "libelle_d_acheminement": "LA GENEVRAIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.319127105217, + 48.6836221489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b3dcdb302243508ca491bc4461fe63ad8a0b029", + "fields": { + "code_commune_insee": "61197", + "nom_de_la_commune": "GUEPREI", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8356279545, + -0.0153255535915 + ], + "libelle_d_acheminement": "GUEPREI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0153255535915, + 48.8356279545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c11b47daa1837cd8c7fd9d548b73af241fd19e68", + "fields": { + "code_commune_insee": "61198", + "nom_de_la_commune": "GUERQUESALLES", + "code_postal": "61120", + "coordonnees_gps": [ + 48.9007314354, + 0.215841045214 + ], + "libelle_d_acheminement": "GUERQUESALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.215841045214, + 48.9007314354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "869110ab712f6b274d7df78c9c4a5813438a5c68", + "fields": { + "ligne_5": "BEAULANDAIS", + "code_commune_insee": "61211", + "libelle_d_acheminement": "JUVIGNY VAL D ANDAINE", + "code_postal": "61140", + "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", + "coordonnees_gps": [ + 48.5575380101, + -0.496792071108 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.496792071108, + 48.5575380101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "764905305c96350ace422308e815e6ffad83e05d", + "fields": { + "ligne_5": "LORE", + "code_commune_insee": "61211", + "libelle_d_acheminement": "JUVIGNY VAL D ANDAINE", + "code_postal": "61330", + "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", + "coordonnees_gps": [ + 48.5575380101, + -0.496792071108 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.496792071108, + 48.5575380101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c2ee0af52c777b62c8901be9744ac856768eb16", + "fields": { + "ligne_5": "LUCE", + "code_commune_insee": "61211", + "libelle_d_acheminement": "JUVIGNY VAL D ANDAINE", + "code_postal": "61330", + "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", + "coordonnees_gps": [ + 48.5575380101, + -0.496792071108 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.496792071108, + 48.5575380101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb2b9398e71807161193cb4bb600edb9f00608e4", + "fields": { + "ligne_5": "SEPT FORGES", + "code_commune_insee": "61211", + "libelle_d_acheminement": "JUVIGNY VAL D ANDAINE", + "code_postal": "61330", + "nom_de_la_commune": "JUVIGNY VAL D ANDAINE", + "coordonnees_gps": [ + 48.5575380101, + -0.496792071108 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.496792071108, + 48.5575380101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e824642c87c3babea0106d3734e181c682bce5f0", + "fields": { + "ligne_5": "LONGUENOE", + "code_commune_insee": "61228", + "libelle_d_acheminement": "L OREE D ECOUVES", + "code_postal": "61320", + "nom_de_la_commune": "L OREE D ECOUVES", + "coordonnees_gps": [ + 48.5076444763, + -0.0385013329846 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0385013329846, + 48.5076444763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff6461426c9b7e1e3d14808f0499c0e7ad896cfc", + "fields": { + "ligne_5": "MONCEAUX AU PERCHE", + "code_commune_insee": "61230", + "libelle_d_acheminement": "LONGNY LES VILLAGES", + "code_postal": "61290", + "nom_de_la_commune": "LONGNY LES VILLAGES", + "coordonnees_gps": [ + 48.5293923919, + 0.757893185933 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.757893185933, + 48.5293923919 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2839591ccff34302e56677f78a44c8c54d991e15", + "fields": { + "code_commune_insee": "61234", + "nom_de_la_commune": "LONRAI", + "code_postal": "61250", + "coordonnees_gps": [ + 48.4532606248, + 0.0362818528268 + ], + "libelle_d_acheminement": "LONRAI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0362818528268, + 48.4532606248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7efb3cf22a9d7a8a67799924f75775e886da6fee", + "fields": { + "code_commune_insee": "61238", + "nom_de_la_commune": "LOUVIERES EN AUGE", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8691287716, + 0.0285333540069 + ], + "libelle_d_acheminement": "LOUVIERES EN AUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0285333540069, + 48.8691287716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac76532da340653e643104ec1f53c36f3f1a3dc2", + "fields": { + "code_commune_insee": "61242", + "nom_de_la_commune": "LE MAGE", + "code_postal": "61290", + "coordonnees_gps": [ + 48.5046888094, + 0.813503394446 + ], + "libelle_d_acheminement": "LE MAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.813503394446, + 48.5046888094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b48707ff275808ebc403ca77420f1619193c96e8", + "fields": { + "code_commune_insee": "61257", + "nom_de_la_commune": "MEHOUDIN", + "code_postal": "61410", + "coordonnees_gps": [ + 48.508806883, + -0.381338867818 + ], + "libelle_d_acheminement": "MEHOUDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.381338867818, + 48.508806883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a81707d6687ef6a04e69c1c39b04c8230cd25ab", + "fields": { + "code_commune_insee": "61262", + "nom_de_la_commune": "LE MENIL CIBOULT", + "code_postal": "61800", + "coordonnees_gps": [ + 48.761641813, + -0.791879154627 + ], + "libelle_d_acheminement": "LE MENIL CIBOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.791879154627, + 48.761641813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b56918fa3e57b00f6f24d8d448128590dd1c23b4", + "fields": { + "code_commune_insee": "61272", + "nom_de_la_commune": "LE MENIL VICOMTE", + "code_postal": "61240", + "coordonnees_gps": [ + 48.7454400632, + 0.293574610527 + ], + "libelle_d_acheminement": "LE MENIL VICOMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.293574610527, + 48.7454400632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d67dfda9feb0b6ee5c1a6ab640ab8feba2d78e2", + "fields": { + "code_commune_insee": "61273", + "nom_de_la_commune": "MENIL VIN", + "code_postal": "61210", + "coordonnees_gps": [ + 48.8495621801, + -0.319173633186 + ], + "libelle_d_acheminement": "MENIL VIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.319173633186, + 48.8495621801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae4fb14d90883b837639df8c77148f9dd5b0b92e", + "fields": { + "code_commune_insee": "61283", + "nom_de_la_commune": "MONTABARD", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8111933049, + -0.085483255391 + ], + "libelle_d_acheminement": "MONTABARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.085483255391, + 48.8111933049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dba76d7822ddd97a033fd195ccd3df31d4cf707b", + "fields": { + "code_commune_insee": "61284", + "nom_de_la_commune": "MONTCHEVREL", + "code_postal": "61170", + "coordonnees_gps": [ + 48.5815747627, + 0.334452095994 + ], + "libelle_d_acheminement": "MONTCHEVREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.334452095994, + 48.5815747627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9d47eda7ebac26f85940873b05066ad2c23e14f", + "fields": { + "code_commune_insee": "61290", + "nom_de_la_commune": "MONTREUIL AU HOULME", + "code_postal": "61210", + "coordonnees_gps": [ + 48.6816940367, + -0.266477110439 + ], + "libelle_d_acheminement": "MONTREUIL AU HOULME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.266477110439, + 48.6816940367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35bc667f4c6eca690bf0c1aaa4ffd77ef07ea852", + "fields": { + "ligne_5": "CLAIREFOUGERE", + "code_commune_insee": "61292", + "libelle_d_acheminement": "MONTSECRET CLAIREFOUGERE", + "code_postal": "61800", + "nom_de_la_commune": "MONTSECRET CLAIREFOUGERE", + "coordonnees_gps": [ + 48.7964115214, + -0.677236896006 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.677236896006, + 48.7964115214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c060a9430eff5fc3dd19a13195978db415e23ba", + "fields": { + "code_commune_insee": "61303", + "nom_de_la_commune": "NECY", + "code_postal": "61160", + "coordonnees_gps": [ + 48.8284800153, + -0.117856246285 + ], + "libelle_d_acheminement": "NECY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.117856246285, + 48.8284800153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ac1067779d86fbdf5bed08f67f3cb8422128da3", + "fields": { + "code_commune_insee": "61304", + "nom_de_la_commune": "NEUILLY LE BISSON", + "code_postal": "61250", + "coordonnees_gps": [ + 48.5043524254, + 0.219675874132 + ], + "libelle_d_acheminement": "NEUILLY LE BISSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.219675874132, + 48.5043524254 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3637b48afd891f630f44878859fe881a23a50870", + "fields": { + "code_commune_insee": "61319", + "nom_de_la_commune": "ORIGNY LE ROUX", + "code_postal": "61130", + "coordonnees_gps": [ + 48.3345893006, + 0.417585339398 + ], + "libelle_d_acheminement": "ORIGNY LE ROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.417585339398, + 48.3345893006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c63b286d06d0a32b49627687a58449262be03a8", + "fields": { + "code_commune_insee": "61321", + "nom_de_la_commune": "PACE", + "code_postal": "61250", + "coordonnees_gps": [ + 48.4457253693, + -0.00548884652011 + ], + "libelle_d_acheminement": "PACE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00548884652011, + 48.4457253693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f2cc5ea21789cc8ca4714022774ad9741704a92", + "fields": { + "code_commune_insee": "61326", + "nom_de_la_commune": "PERROU", + "code_postal": "61700", + "coordonnees_gps": [ + 48.5760698377, + -0.548505109021 + ], + "libelle_d_acheminement": "PERROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.548505109021, + 48.5760698377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59d41c3783fe19e5bef5d87d4bf44622077cbea6", + "fields": { + "code_commune_insee": "61331", + "nom_de_la_commune": "LE PLANTIS", + "code_postal": "61170", + "coordonnees_gps": [ + 48.6037546825, + 0.397038776409 + ], + "libelle_d_acheminement": "LE PLANTIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.397038776409, + 48.6037546825 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12f6caa239160bba71c7204768a7b04dc49045dd", + "fields": { + "ligne_5": "LES ROTOURS", + "code_commune_insee": "61339", + "libelle_d_acheminement": "PUTANGES LE LAC", + "code_postal": "61210", + "nom_de_la_commune": "PUTANGES LE LAC", + "coordonnees_gps": [ + 48.766449668, + -0.252215702706 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.252215702706, + 48.766449668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "baf962298a66a1c95f56fdc508226bebd6338d45", + "fields": { + "ligne_5": "ST AUBERT SUR ORNE", + "code_commune_insee": "61339", + "libelle_d_acheminement": "PUTANGES LE LAC", + "code_postal": "61210", + "nom_de_la_commune": "PUTANGES LE LAC", + "coordonnees_gps": [ + 48.766449668, + -0.252215702706 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.252215702706, + 48.766449668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cba0ee39909c06ae849cec5e95c1985443ed6c6e", + "fields": { + "ligne_5": "FORGES", + "code_commune_insee": "61341", + "libelle_d_acheminement": "ECOUVES", + "code_postal": "61250", + "nom_de_la_commune": "ECOUVES", + "coordonnees_gps": [ + 48.5089267357, + 0.0863965878338 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0863965878338, + 48.5089267357 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecbff4c7445969a165d67198b8cf43c428d6bca0", + "fields": { + "ligne_5": "BELLOU SUR HUISNE", + "code_commune_insee": "61345", + "libelle_d_acheminement": "REMALARD EN PERCHE", + "code_postal": "61110", + "nom_de_la_commune": "REMALARD EN PERCHE", + "coordonnees_gps": [ + 48.4498027895, + 0.77912800072 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.77912800072, + 48.4498027895 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca2d3303792282b85eb69b19f1465e9bc5d5d552", + "fields": { + "code_commune_insee": "61360", + "nom_de_la_commune": "ST AGNAN SUR SARTHE", + "code_postal": "61170", + "coordonnees_gps": [ + 48.6219458943, + 0.428936207107 + ], + "libelle_d_acheminement": "ST AGNAN SUR SARTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.428936207107, + 48.6219458943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56db3dfe80c1a53b357a39a590adf7e834560f34", + "fields": { + "code_commune_insee": "61374", + "nom_de_la_commune": "ST CHRISTOPHE DE CHAULIEU", + "code_postal": "61800", + "coordonnees_gps": [ + 48.7424101342, + -0.83155426075 + ], + "libelle_d_acheminement": "ST CHRISTOPHE DE CHAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.83155426075, + 48.7424101342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61225e62510a9d26e23cd2cf1873fc5cf2290ead", + "fields": { + "ligne_5": "MARCEI", + "code_commune_insee": "61375", + "libelle_d_acheminement": "BOISCHAMPRE", + "code_postal": "61570", + "nom_de_la_commune": "BOISCHAMPRE", + "coordonnees_gps": [ + 48.656618574, + 0.00188165114275 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00188165114275, + 48.656618574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "475e795862bcc8d16629e47c3aeccba733036839", + "fields": { + "ligne_5": "ST LOYER DES CHAMPS", + "code_commune_insee": "61375", + "libelle_d_acheminement": "BOISCHAMPRE", + "code_postal": "61570", + "nom_de_la_commune": "BOISCHAMPRE", + "coordonnees_gps": [ + 48.656618574, + 0.00188165114275 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00188165114275, + 48.656618574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35c2d2016a9469b1b389b5516422e7b614b8c17a", + "fields": { + "code_commune_insee": "61379", + "nom_de_la_commune": "ST CYR LA ROSIERE", + "code_postal": "61130", + "coordonnees_gps": [ + 48.3206311258, + 0.642420415109 + ], + "libelle_d_acheminement": "ST CYR LA ROSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.642420415109, + 48.3206311258 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "052f9a121c45d5be07f40ab5bec3016d49e9b5d7", + "fields": { + "code_commune_insee": "61381", + "nom_de_la_commune": "ST DENIS SUR HUISNE", + "code_postal": "61400", + "coordonnees_gps": [ + 48.4707648584, + 0.531647869938 + ], + "libelle_d_acheminement": "ST DENIS SUR HUISNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.531647869938, + 48.4707648584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2a7a303896b6263ae557bd9821c49b9031f1126", + "fields": { + "code_commune_insee": "61382", + "nom_de_la_commune": "ST DENIS SUR SARTHON", + "code_postal": "61420", + "coordonnees_gps": [ + 48.4579481796, + -0.0372277848804 + ], + "libelle_d_acheminement": "ST DENIS SUR SARTHON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0372277848804, + 48.4579481796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09f9f5fd72b7c3536592f61cc0325a8db4b9c69f", + "fields": { + "code_commune_insee": "61386", + "nom_de_la_commune": "ST EVROULT NOTRE DAME DU BOIS", + "code_postal": "61550", + "coordonnees_gps": [ + 48.7791005321, + 0.452488554274 + ], + "libelle_d_acheminement": "ST EVROULT NOTRE DAME DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.452488554274, + 48.7791005321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b754adb571cf1f39e5ea47f53b72cc8722b9238b", + "fields": { + "code_commune_insee": "61387", + "nom_de_la_commune": "ST FRAIMBAULT", + "code_postal": "61350", + "coordonnees_gps": [ + 48.4987485682, + -0.711543508094 + ], + "libelle_d_acheminement": "ST FRAIMBAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.711543508094, + 48.4987485682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f477f6a249ac686308f428b0ea43eb87017bc88c", + "fields": { + "code_commune_insee": "61390", + "nom_de_la_commune": "ST GEORGES D ANNEBECQ", + "code_postal": "61600", + "coordonnees_gps": [ + 48.6307948842, + -0.26545917977 + ], + "libelle_d_acheminement": "ST GEORGES D ANNEBECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.26545917977, + 48.6307948842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "075d215a0b6a733921ba10af09da40a9ed954ef7", + "fields": { + "code_commune_insee": "61401", + "nom_de_la_commune": "ST GILLES DES MARAIS", + "code_postal": "61700", + "coordonnees_gps": [ + 48.5850326416, + -0.698007308747 + ], + "libelle_d_acheminement": "ST GILLES DES MARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.698007308747, + 48.5850326416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9407f4377f4df2ad7dd1ad5aff2e79b5348b1af9", + "fields": { + "code_commune_insee": "61404", + "nom_de_la_commune": "ST HILAIRE LE CHATEL", + "code_postal": "61400", + "coordonnees_gps": [ + 48.5551273159, + 0.540291950034 + ], + "libelle_d_acheminement": "ST HILAIRE LE CHATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.540291950034, + 48.5551273159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ef45bcf9c0e5d1e89e80aeba65c58dacf98a5be", + "fields": { + "code_commune_insee": "61419", + "nom_de_la_commune": "STE MARGUERITE DE CARROUGES", + "code_postal": "61320", + "coordonnees_gps": [ + 48.5937651303, + -0.151429689315 + ], + "libelle_d_acheminement": "STE MARGUERITE DE CARROUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.151429689315, + 48.5937651303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fb3c5ef45350d95237872299daef5db5b451b4d", + "fields": { + "code_commune_insee": "61423", + "nom_de_la_commune": "ST MARTIN D ECUBLEI", + "code_postal": "61300", + "coordonnees_gps": [ + 48.7949779285, + 0.669166067882 + ], + "libelle_d_acheminement": "ST MARTIN D ECUBLEI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.669166067882, + 48.7949779285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4f3e996049a974b056a03161ccd7d742cf80214", + "fields": { + "code_commune_insee": "61426", + "nom_de_la_commune": "ST MARTIN DU VIEUX BELLEME", + "code_postal": "61130", + "coordonnees_gps": [ + 48.3722492499, + 0.54715865547 + ], + "libelle_d_acheminement": "ST MARTIN DU VIEUX BELLEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.54715865547, + 48.3722492499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06d357d2e9ee70be7cb54e44e335c8ba494c1db9", + "fields": { + "code_commune_insee": "61433", + "nom_de_la_commune": "ST NICOLAS DES BOIS", + "code_postal": "61250", + "coordonnees_gps": [ + 48.5061778998, + 0.0266355295781 + ], + "libelle_d_acheminement": "ST NICOLAS DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0266355295781, + 48.5061778998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2359e71d902151d9d20a8de353b3c0ff8da57716", + "fields": { + "code_commune_insee": "61436", + "nom_de_la_commune": "STE OPPORTUNE", + "code_postal": "61100", + "coordonnees_gps": [ + 48.7360455773, + -0.411243624023 + ], + "libelle_d_acheminement": "STE OPPORTUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.411243624023, + 48.7360455773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "230226ff38b7302f0501fb03efbd9cdd58c74af2", + "fields": { + "code_commune_insee": "61440", + "nom_de_la_commune": "ST OUEN SUR ITON", + "code_postal": "61300", + "coordonnees_gps": [ + 48.7356894467, + 0.671333439138 + ], + "libelle_d_acheminement": "ST OUEN SUR ITON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.671333439138, + 48.7356894467 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57f2dd3839f678ae27537073c4c6808d3fb5ac29", + "fields": { + "code_commune_insee": "61444", + "nom_de_la_commune": "ST PHILBERT SUR ORNE", + "code_postal": "61430", + "coordonnees_gps": [ + 48.8347611836, + -0.375940618055 + ], + "libelle_d_acheminement": "ST PHILBERT SUR ORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.375940618055, + 48.8347611836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ef67c76145ad6fb762bd165a652354d75a56980", + "fields": { + "code_commune_insee": "61445", + "nom_de_la_commune": "ST PIERRE D ENTREMONT", + "code_postal": "61800", + "coordonnees_gps": [ + 48.8117202926, + -0.649709169308 + ], + "libelle_d_acheminement": "ST PIERRE D ENTREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.649709169308, + 48.8117202926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2fa1eecfb0dabfe1bee1b95bdfc22d5e5eee046", + "fields": { + "code_commune_insee": "61446", + "nom_de_la_commune": "ST PIERRE DES LOGES", + "code_postal": "61370", + "coordonnees_gps": [ + 48.7431643088, + 0.466256113036 + ], + "libelle_d_acheminement": "ST PIERRE DES LOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.466256113036, + 48.7431643088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "911b4b4ede1c97b9d1ada080584d4bb235aea51f", + "fields": { + "code_commune_insee": "61452", + "nom_de_la_commune": "ST ROCH SUR EGRENNE", + "code_postal": "61350", + "coordonnees_gps": [ + 48.5760363897, + -0.744740516087 + ], + "libelle_d_acheminement": "ST ROCH SUR EGRENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.744740516087, + 48.5760363897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76fb7346c5ee7c466ac9e56902b02217bfa16c06", + "fields": { + "ligne_5": "LE SAP", + "code_commune_insee": "61460", + "libelle_d_acheminement": "SAP EN AUGE", + "code_postal": "61470", + "nom_de_la_commune": "SAP EN AUGE", + "coordonnees_gps": [ + 48.8881688087, + 0.338970200397 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.338970200397, + 48.8881688087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0af3a738829ed7d112447505799f06a2715bfa31", + "fields": { + "ligne_5": "ST MAURICE DU DESERT", + "code_commune_insee": "61463", + "libelle_d_acheminement": "LES MONTS D ANDAINE", + "code_postal": "61600", + "nom_de_la_commune": "LES MONTS D ANDAINE", + "coordonnees_gps": [ + 48.6127467342, + -0.435491688539 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.435491688539, + 48.6127467342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90c6db34d05ba2af2260e080f9b805afda9767ef", + "fields": { + "code_commune_insee": "61472", + "nom_de_la_commune": "SEVIGNY", + "code_postal": "61200", + "coordonnees_gps": [ + 48.7731316921, + -0.0198186687078 + ], + "libelle_d_acheminement": "SEVIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0198186687078, + 48.7731316921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd34f6aa7dbb98fa3a99a7907222aa955ebb93a2", + "fields": { + "ligne_5": "VILLEBADIN", + "code_commune_insee": "61474", + "libelle_d_acheminement": "GOUFFERN EN AUGE", + "code_postal": "61310", + "nom_de_la_commune": "GOUFFERN EN AUGE", + "coordonnees_gps": [ + 48.7516893837, + 0.0651597392441 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0651597392441, + 48.7516893837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20d8838fd3ef2275270b310ba97b5e06a4d1a7bd", + "fields": { + "code_commune_insee": "61480", + "nom_de_la_commune": "TANVILLE", + "code_postal": "61500", + "coordonnees_gps": [ + 48.5653374491, + 0.00940180044497 + ], + "libelle_d_acheminement": "TANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00940180044497, + 48.5653374491 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8876d08c3b0a707224db1649048d18321f00aead", + "fields": { + "ligne_5": "GEMAGES", + "code_commune_insee": "61484", + "libelle_d_acheminement": "VAL AU PERCHE", + "code_postal": "61130", + "nom_de_la_commune": "VAL AU PERCHE", + "coordonnees_gps": [ + 48.2676940084, + 0.650909010002 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.650909010002, + 48.2676940084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8ff0d10dc5670247c40b15a684afa2d915dcb88", + "fields": { + "code_commune_insee": "76377", + "nom_de_la_commune": "ISNEAUVILLE", + "code_postal": "76230", + "coordonnees_gps": [ + 49.5022552878, + 1.14531230443 + ], + "libelle_d_acheminement": "ISNEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.14531230443, + 49.5022552878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92605f48a20c628caa2ff71b4c0851ad6cd4d34c", + "fields": { + "ligne_5": "LE THEIL", + "code_commune_insee": "61484", + "libelle_d_acheminement": "VAL AU PERCHE", + "code_postal": "61260", + "nom_de_la_commune": "VAL AU PERCHE", + "coordonnees_gps": [ + 48.2676940084, + 0.650909010002 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.650909010002, + 48.2676940084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "264b3cc4ccb4181f0a7ff15596d6bab60fd882be", + "fields": { + "code_commune_insee": "76378", + "nom_de_la_commune": "JUMIEGES", + "code_postal": "76480", + "coordonnees_gps": [ + 49.427073553, + 0.831659847193 + ], + "libelle_d_acheminement": "JUMIEGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.831659847193, + 49.427073553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4bcdd6454a7900f871dd99821a85a3f98b2a909", + "fields": { + "ligne_5": "MALE", + "code_commune_insee": "61484", + "libelle_d_acheminement": "VAL AU PERCHE", + "code_postal": "61260", + "nom_de_la_commune": "VAL AU PERCHE", + "coordonnees_gps": [ + 48.2676940084, + 0.650909010002 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.650909010002, + 48.2676940084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2606b7fc8e66fe876a322e5bc75c0183fd000cab", + "fields": { + "code_commune_insee": "76386", + "nom_de_la_commune": "LIMPIVILLE", + "code_postal": "76540", + "coordonnees_gps": [ + 49.6872515704, + 0.50230406905 + ], + "libelle_d_acheminement": "LIMPIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.50230406905, + 49.6872515704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bd6aa5d552a070c7d24c8bce589bae86533731f", + "fields": { + "ligne_5": "ST AGNAN SUR ERRE", + "code_commune_insee": "61484", + "libelle_d_acheminement": "VAL AU PERCHE", + "code_postal": "61340", + "nom_de_la_commune": "VAL AU PERCHE", + "coordonnees_gps": [ + 48.2676940084, + 0.650909010002 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.650909010002, + 48.2676940084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6aac5ec30fb0efd33ff2f1f90f59f47341dda57", + "fields": { + "code_commune_insee": "76389", + "nom_de_la_commune": "LINTOT LES BOIS", + "code_postal": "76590", + "coordonnees_gps": [ + 49.8010740121, + 1.07001099196 + ], + "libelle_d_acheminement": "LINTOT LES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07001099196, + 49.8010740121 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91f898688fe08d2767c0491603caf3c2e843e6c2", + "fields": { + "code_commune_insee": "61485", + "nom_de_la_commune": "TICHEVILLE", + "code_postal": "61120", + "coordonnees_gps": [ + 48.9078218887, + 0.258960926416 + ], + "libelle_d_acheminement": "TICHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.258960926416, + 48.9078218887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8be9a7bebc19f77329dcff3c540ce5ff0709795b", + "fields": { + "code_commune_insee": "76392", + "nom_de_la_commune": "LONDINIERES", + "code_postal": "76660", + "coordonnees_gps": [ + 49.8411738829, + 1.39635078372 + ], + "libelle_d_acheminement": "LONDINIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39635078372, + 49.8411738829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b8abbd3fb071f21e4fdd94901a1538d150f88dc", + "fields": { + "ligne_5": "BEAUCHENE", + "code_commune_insee": "61486", + "libelle_d_acheminement": "TINCHEBRAY BOCAGE", + "code_postal": "61800", + "nom_de_la_commune": "TINCHEBRAY BOCAGE", + "coordonnees_gps": [ + 48.7558885792, + -0.736451200504 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.736451200504, + 48.7558885792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5787e8b75615c6b5b0cbefb89978f5be9db3267a", + "fields": { + "code_commune_insee": "76394", + "nom_de_la_commune": "LONGROY", + "code_postal": "76260", + "coordonnees_gps": [ + 49.9811987866, + 1.53462109091 + ], + "libelle_d_acheminement": "LONGROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53462109091, + 49.9811987866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eeaecf9743fc5d102d6235464d2c79c7dd6da88", + "fields": { + "ligne_5": "FRENES", + "code_commune_insee": "61486", + "libelle_d_acheminement": "TINCHEBRAY BOCAGE", + "code_postal": "61800", + "nom_de_la_commune": "TINCHEBRAY BOCAGE", + "coordonnees_gps": [ + 48.7558885792, + -0.736451200504 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.736451200504, + 48.7558885792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d03863c890d448fbb5821d21bd54bf873099009", + "fields": { + "code_commune_insee": "76397", + "nom_de_la_commune": "LONGUEVILLE SUR SCIE", + "code_postal": "76590", + "coordonnees_gps": [ + 49.7957426692, + 1.10718815906 + ], + "libelle_d_acheminement": "LONGUEVILLE SUR SCIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.10718815906, + 49.7957426692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95a815672296024a0fdee93992f1a1fa538556fd", + "fields": { + "ligne_5": "LARCHAMP", + "code_commune_insee": "61486", + "libelle_d_acheminement": "TINCHEBRAY BOCAGE", + "code_postal": "61800", + "nom_de_la_commune": "TINCHEBRAY BOCAGE", + "coordonnees_gps": [ + 48.7558885792, + -0.736451200504 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.736451200504, + 48.7558885792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b53381ba02a8ea4b0143a0744507073d3991259", + "fields": { + "code_commune_insee": "76402", + "nom_de_la_commune": "MALAUNAY", + "code_postal": "76770", + "coordonnees_gps": [ + 49.5254991004, + 1.04877574012 + ], + "libelle_d_acheminement": "MALAUNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04877574012, + 49.5254991004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5836be2f5278b4ed75cd2ac53ab8d7b9d7242039", + "fields": { + "ligne_5": "YVRANDES", + "code_commune_insee": "61486", + "libelle_d_acheminement": "TINCHEBRAY BOCAGE", + "code_postal": "61800", + "nom_de_la_commune": "TINCHEBRAY BOCAGE", + "coordonnees_gps": [ + 48.7558885792, + -0.736451200504 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.736451200504, + 48.7558885792 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "893b12df9e135ea7262e85b50dc5ecaaba638928", + "fields": { + "code_commune_insee": "76403", + "nom_de_la_commune": "MALLEVILLE LES GRES", + "code_postal": "76450", + "coordonnees_gps": [ + 49.8304035234, + 0.606063626778 + ], + "libelle_d_acheminement": "MALLEVILLE LES GRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.606063626778, + 49.8304035234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f71da14e0631573edfe71bb504790ca5beaa5dbe", + "fields": { + "code_commune_insee": "61487", + "nom_de_la_commune": "TORCHAMP", + "code_postal": "61330", + "coordonnees_gps": [ + 48.5396080186, + -0.674763032313 + ], + "libelle_d_acheminement": "TORCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.674763032313, + 48.5396080186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a72ee827048a02ae74737e085fd5319c801c688", + "fields": { + "code_commune_insee": "76412", + "nom_de_la_commune": "MARTAINVILLE EPREVILLE", + "code_postal": "76116", + "coordonnees_gps": [ + 49.451874767, + 1.29465075499 + ], + "libelle_d_acheminement": "MARTAINVILLE EPREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29465075499, + 49.451874767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32d95e69f6e4896c6e22069947110e9d6f45cad0", + "fields": { + "ligne_5": "LIGNEROLLES", + "code_commune_insee": "61491", + "libelle_d_acheminement": "TOUROUVRE AU PERCHE", + "code_postal": "61190", + "nom_de_la_commune": "TOUROUVRE AU PERCHE", + "coordonnees_gps": [ + 48.5889926319, + 0.659944291667 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659944291667, + 48.5889926319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "692a652731d033926f4f036f018b9f8f51598a25", + "fields": { + "code_commune_insee": "76427", + "nom_de_la_commune": "MESNIERES EN BRAY", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7656701654, + 1.3868369268 + ], + "libelle_d_acheminement": "MESNIERES EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.3868369268, + 49.7656701654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81dba23d0af2755d45842a4618c9f1ab23092a59", + "fields": { + "ligne_5": "PREPOTIN", + "code_commune_insee": "61491", + "libelle_d_acheminement": "TOUROUVRE AU PERCHE", + "code_postal": "61190", + "nom_de_la_commune": "TOUROUVRE AU PERCHE", + "coordonnees_gps": [ + 48.5889926319, + 0.659944291667 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.659944291667, + 48.5889926319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39a47ef3024cd9a3ccfedfb8b7776296652d6fce", + "fields": { + "code_commune_insee": "76437", + "nom_de_la_commune": "MEULERS", + "code_postal": "76510", + "coordonnees_gps": [ + 49.8412109019, + 1.22180412827 + ], + "libelle_d_acheminement": "MEULERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22180412827, + 49.8412109019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb392f7c0f3090e177d45114960d07ba4fc00aba", + "fields": { + "code_commune_insee": "61505", + "nom_de_la_commune": "VILLEDIEU LES BAILLEUL", + "code_postal": "61160", + "coordonnees_gps": [ + 48.7995766824, + 0.0180312174989 + ], + "libelle_d_acheminement": "VILLEDIEU LES BAILLEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0180312174989, + 48.7995766824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00124443c8cdffc414734ebb1ea7776d05f79216", + "fields": { + "code_commune_insee": "76449", + "nom_de_la_commune": "MONTREUIL EN CAUX", + "code_postal": "76850", + "coordonnees_gps": [ + 49.6862090326, + 1.15552636526 + ], + "libelle_d_acheminement": "MONTREUIL EN CAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15552636526, + 49.6862090326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d6970707c13902d236ff2a8153bbf8dbf74c7658", + "fields": { + "code_commune_insee": "61507", + "nom_de_la_commune": "VILLIERS SOUS MORTAGNE", + "code_postal": "61400", + "coordonnees_gps": [ + 48.5392056522, + 0.593084909404 + ], + "libelle_d_acheminement": "VILLIERS SOUS MORTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.593084909404, + 48.5392056522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2960dabdcbd88fe0c728f4b78e9cfa38ab4b1769", + "fields": { + "code_commune_insee": "76451", + "nom_de_la_commune": "MONT ST AIGNAN", + "code_postal": "76130", + "coordonnees_gps": [ + 49.4676577166, + 1.08169720921 + ], + "libelle_d_acheminement": "MONT ST AIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08169720921, + 49.4676577166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bf2e506ae67e98e0548310b9625245862e103d9", + "fields": { + "code_commune_insee": "62001", + "nom_de_la_commune": "ABLAIN ST NAZAIRE", + "code_postal": "62153", + "coordonnees_gps": [ + 50.3965609084, + 2.69725163344 + ], + "libelle_d_acheminement": "ABLAIN ST NAZAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69725163344, + 50.3965609084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39a96666b2adc9a4d8bb45ad30ea22cfd35f00ca", + "fields": { + "code_commune_insee": "76455", + "nom_de_la_commune": "MORVILLE SUR ANDELLE", + "code_postal": "76780", + "coordonnees_gps": [ + 49.481401838, + 1.43203726716 + ], + "libelle_d_acheminement": "MORVILLE SUR ANDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.43203726716, + 49.481401838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "037c4ac36da2d384ae11eb9100a304d8718685b1", + "fields": { + "code_commune_insee": "62003", + "nom_de_la_commune": "ACHEVILLE", + "code_postal": "62320", + "coordonnees_gps": [ + 50.3843803047, + 2.88203915482 + ], + "libelle_d_acheminement": "ACHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88203915482, + 50.3843803047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c99e286cb7ee3eec0b159d606276da0f3255668", + "fields": { + "code_commune_insee": "76456", + "nom_de_la_commune": "MOTTEVILLE", + "code_postal": "76970", + "coordonnees_gps": [ + 49.6307861651, + 0.854390433199 + ], + "libelle_d_acheminement": "MOTTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.854390433199, + 49.6307861651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "099bfb2a58d843f8b445866ab39e367bca6aca91", + "fields": { + "code_commune_insee": "62008", + "nom_de_la_commune": "ACQUIN WESTBECOURT", + "code_postal": "62380", + "coordonnees_gps": [ + 50.7293873198, + 2.07688748986 + ], + "libelle_d_acheminement": "ACQUIN WESTBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07688748986, + 50.7293873198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a8a7f22444fc0a39354958c3edc49d8e8f8aa68", + "fields": { + "code_commune_insee": "76458", + "nom_de_la_commune": "MUCHEDENT", + "code_postal": "76590", + "coordonnees_gps": [ + 49.766373525, + 1.18741006071 + ], + "libelle_d_acheminement": "MUCHEDENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18741006071, + 49.766373525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b612e96ea6d1e253612f4e0de8252128371ad3b", + "fields": { + "code_commune_insee": "62009", + "nom_de_la_commune": "ADINFER", + "code_postal": "62116", + "coordonnees_gps": [ + 50.1937061733, + 2.70612950432 + ], + "libelle_d_acheminement": "ADINFER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70612950432, + 50.1937061733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38501f0ae433235aaa705d0504ce288284b7ba1a", + "fields": { + "code_commune_insee": "76462", + "nom_de_la_commune": "NEUFCHATEL EN BRAY", + "code_postal": "76270", + "coordonnees_gps": [ + 49.7402537882, + 1.44657170543 + ], + "libelle_d_acheminement": "NEUFCHATEL EN BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44657170543, + 49.7402537882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b06fc0211e45141e48597bb2daecfe81a7335f27", + "fields": { + "code_commune_insee": "62011", + "nom_de_la_commune": "AGNEZ LES DUISANS", + "code_postal": "62161", + "coordonnees_gps": [ + 50.3102322126, + 2.65021288373 + ], + "libelle_d_acheminement": "AGNEZ LES DUISANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65021288373, + 50.3102322126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a745453ebab98211de97e8927b8c63b77cd2517", + "fields": { + "code_commune_insee": "76470", + "nom_de_la_commune": "NORMANVILLE", + "code_postal": "76640", + "coordonnees_gps": [ + 49.6911788807, + 0.587022757237 + ], + "libelle_d_acheminement": "NORMANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.587022757237, + 49.6911788807 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2118f716d75dfb31c3f664472e5d982204e2b15", + "fields": { + "code_commune_insee": "62012", + "nom_de_la_commune": "AGNIERES", + "code_postal": "62690", + "coordonnees_gps": [ + 50.3535942668, + 2.60772514318 + ], + "libelle_d_acheminement": "AGNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60772514318, + 50.3535942668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "206e7e8b35331f8b25e1ed6e22dc889de42060c7", + "fields": { + "code_commune_insee": "76472", + "nom_de_la_commune": "NOTRE DAME D ALIERMONT", + "code_postal": "76510", + "coordonnees_gps": [ + 49.8452221098, + 1.2979386234 + ], + "libelle_d_acheminement": "NOTRE DAME D ALIERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2979386234, + 49.8452221098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6d51bcb8d6309000754b1bc71ba672aaabfd700", + "fields": { + "code_commune_insee": "62013", + "nom_de_la_commune": "AGNY", + "code_postal": "62217", + "coordonnees_gps": [ + 50.2529566088, + 2.76055250016 + ], + "libelle_d_acheminement": "AGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76055250016, + 50.2529566088 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f53a25cc0784d1f1ae8b40c84eb9e1ff74a82715", + "fields": { + "ligne_5": "AUBERVILLE LA CAMPAGNE", + "code_commune_insee": "76476", + "libelle_d_acheminement": "PORT JEROME SUR SEINE", + "code_postal": "76170", + "nom_de_la_commune": "PORT JEROME SUR SEINE", + "coordonnees_gps": [ + 49.4895859593, + 0.572888177014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.572888177014, + 49.4895859593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "abedf2c6e7927867b92b027c4a8dd8a01bdf5887", + "fields": { + "code_commune_insee": "62014", + "nom_de_la_commune": "AIRE SUR LA LYS", + "code_postal": "62120", + "coordonnees_gps": [ + 50.6441641115, + 2.39533267946 + ], + "libelle_d_acheminement": "AIRE SUR LA LYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39533267946, + 50.6441641115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "decbe86f5a718360a3967b1c9b27f10174c1ff65", + "fields": { + "ligne_5": "TRIQUERVILLE", + "code_commune_insee": "76476", + "libelle_d_acheminement": "PORT JEROME SUR SEINE", + "code_postal": "76170", + "nom_de_la_commune": "PORT JEROME SUR SEINE", + "coordonnees_gps": [ + 49.4895859593, + 0.572888177014 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.572888177014, + 49.4895859593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5d9b3e0f76548cd9a796bb649dea35df9edb449", + "fields": { + "code_commune_insee": "62015", + "nom_de_la_commune": "AIRON NOTRE DAME", + "code_postal": "62180", + "coordonnees_gps": [ + 50.4412207446, + 1.66789087192 + ], + "libelle_d_acheminement": "AIRON NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66789087192, + 50.4412207446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "047e34ac7311ff383e66aaf505a2d84d2d2e7ecb", + "fields": { + "code_commune_insee": "76482", + "nom_de_la_commune": "OFFRANVILLE", + "code_postal": "76550", + "coordonnees_gps": [ + 49.8711707003, + 1.03537309213 + ], + "libelle_d_acheminement": "OFFRANVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03537309213, + 49.8711707003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4abea1c40c1bcafe311d2e98c974739874fa3f35", + "fields": { + "code_commune_insee": "62020", + "nom_de_la_commune": "ALEMBON", + "code_postal": "62850", + "coordonnees_gps": [ + 50.7805751248, + 1.87194877839 + ], + "libelle_d_acheminement": "ALEMBON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87194877839, + 50.7805751248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9e8b0901f6388a48eb6cf18f2d6e03c24d9d93c", + "fields": { + "code_commune_insee": "76486", + "nom_de_la_commune": "ORIVAL", + "code_postal": "76500", + "coordonnees_gps": [ + 49.3187791595, + 0.996413960189 + ], + "libelle_d_acheminement": "ORIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.996413960189, + 49.3187791595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7637b72364f6613a45a399f3cc88fa8205504312", + "fields": { + "code_commune_insee": "62028", + "nom_de_la_commune": "AMES", + "code_postal": "62190", + "coordonnees_gps": [ + 50.5355497519, + 2.41535244184 + ], + "libelle_d_acheminement": "AMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41535244184, + 50.5355497519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "398d70aeef99e5c728e11239db4f7b10734e47e5", + "fields": { + "code_commune_insee": "76487", + "nom_de_la_commune": "OSMOY ST VALERY", + "code_postal": "76660", + "coordonnees_gps": [ + 49.7970849665, + 1.30356200138 + ], + "libelle_d_acheminement": "OSMOY ST VALERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30356200138, + 49.7970849665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d91dac1aaa70e1a3d1a98832b68ca1bb8f5d5d39", + "fields": { + "code_commune_insee": "62030", + "nom_de_la_commune": "AMPLIER", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1381261668, + 2.39740510092 + ], + "libelle_d_acheminement": "AMPLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39740510092, + 50.1381261668 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7de34638af7ba9c9906371500ff48d085b93e71", + "fields": { + "code_commune_insee": "76488", + "nom_de_la_commune": "OUAINVILLE", + "code_postal": "76450", + "coordonnees_gps": [ + 49.7854251971, + 0.588453866269 + ], + "libelle_d_acheminement": "OUAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.588453866269, + 49.7854251971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "584f088cb3d2c04245985e5696b1580359394348", + "fields": { + "code_commune_insee": "62036", + "nom_de_la_commune": "ANVIN", + "code_postal": "62134", + "coordonnees_gps": [ + 50.4503901319, + 2.25792059446 + ], + "libelle_d_acheminement": "ANVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25792059446, + 50.4503901319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f695364167b931a0826badf9fe39a97e50f33915", + "fields": { + "code_commune_insee": "76494", + "nom_de_la_commune": "PARC D ANXTOT", + "code_postal": "76210", + "coordonnees_gps": [ + 49.5859076954, + 0.388286306471 + ], + "libelle_d_acheminement": "PARC D ANXTOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.388286306471, + 49.5859076954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7940a9784d002e5469bddf497e05e6d4e1cbbf21", + "fields": { + "ligne_5": "PONT D ARDRES", + "code_commune_insee": "62038", + "libelle_d_acheminement": "ARDRES", + "code_postal": "62610", + "nom_de_la_commune": "ARDRES", + "coordonnees_gps": [ + 50.8768753502, + 1.98398234284 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98398234284, + 50.8768753502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "56a614a1bea37202e7e20b09593c057b90ec596a", + "fields": { + "code_commune_insee": "76505", + "nom_de_la_commune": "POMMEREUX", + "code_postal": "76440", + "coordonnees_gps": [ + 49.6098738401, + 1.63085932731 + ], + "libelle_d_acheminement": "POMMEREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63085932731, + 49.6098738401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5488a3365d8e185e4bc15e09b3f72f2ce72bb217", + "fields": { + "code_commune_insee": "62040", + "nom_de_la_commune": "ARQUES", + "code_postal": "62510", + "coordonnees_gps": [ + 50.7402216255, + 2.31902794783 + ], + "libelle_d_acheminement": "ARQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31902794783, + 50.7402216255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8ce3f286dc12166b3e20e1f761e690941c32d04", + "fields": { + "code_commune_insee": "76508", + "nom_de_la_commune": "LA POTERIE CAP D ANTIFER", + "code_postal": "76280", + "coordonnees_gps": [ + 49.6783628089, + 0.178454970928 + ], + "libelle_d_acheminement": "LA POTERIE CAP D ANTIFER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.178454970928, + 49.6783628089 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d2c4f452493d9e3fbaba3c80ebde47215c65cac", + "fields": { + "code_commune_insee": "62042", + "nom_de_la_commune": "ATHIES", + "code_postal": "62223", + "coordonnees_gps": [ + 50.3071331522, + 2.84195049899 + ], + "libelle_d_acheminement": "ATHIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84195049899, + 50.3071331522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6514207256c817e79cf6ee4e7dc1d71942cab4c7", + "fields": { + "code_commune_insee": "76509", + "nom_de_la_commune": "PREAUX", + "code_postal": "76160", + "coordonnees_gps": [ + 49.4871501461, + 1.2158124042 + ], + "libelle_d_acheminement": "PREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2158124042, + 49.4871501461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3456870428f2ba41b213fa626eb44277c27ff5a4", + "fields": { + "code_commune_insee": "62045", + "nom_de_la_commune": "AUBIGNY EN ARTOIS", + "code_postal": "62690", + "coordonnees_gps": [ + 50.3482767559, + 2.58650720649 + ], + "libelle_d_acheminement": "AUBIGNY EN ARTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58650720649, + 50.3482767559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7489a655a1ea8e149c987f38d08e9dbbab22ec1a", + "fields": { + "code_commune_insee": "76510", + "nom_de_la_commune": "PRETOT VICQUEMARE", + "code_postal": "76560", + "coordonnees_gps": [ + 49.7336231822, + 0.847220131387 + ], + "libelle_d_acheminement": "PRETOT VICQUEMARE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.847220131387, + 49.7336231822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e632daeb17efc48d2b57d3ce35e60ce42ce27258", + "fields": { + "code_commune_insee": "62050", + "nom_de_la_commune": "AUCHY LES HESDIN", + "code_postal": "62770", + "coordonnees_gps": [ + 50.4085719795, + 2.09530419017 + ], + "libelle_d_acheminement": "AUCHY LES HESDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09530419017, + 50.4085719795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85dc606132a11f6b949c5bfb7c33f60cbed1e93a", + "fields": { + "code_commune_insee": "76511", + "nom_de_la_commune": "PREUSEVILLE", + "code_postal": "76660", + "coordonnees_gps": [ + 49.8804684402, + 1.5053136067 + ], + "libelle_d_acheminement": "PREUSEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5053136067, + 49.8804684402 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36524366c57c97092fab51193a10b4584ed8695d", + "fields": { + "code_commune_insee": "62056", + "nom_de_la_commune": "AUDRESSELLES", + "code_postal": "62164", + "coordonnees_gps": [ + 50.8288589082, + 1.611270565 + ], + "libelle_d_acheminement": "AUDRESSELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.611270565, + 50.8288589082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c8efcffd8fade228ef576ba629acae0f796ac33", + "fields": { + "code_commune_insee": "76512", + "nom_de_la_commune": "PUISENVAL", + "code_postal": "76660", + "coordonnees_gps": [ + 49.8787471608, + 1.46198143965 + ], + "libelle_d_acheminement": "PUISENVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.46198143965, + 49.8787471608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58394dbbf206c062c91969a143c01acf62d8bae6", + "fields": { + "code_commune_insee": "62058", + "nom_de_la_commune": "AUMERVAL", + "code_postal": "62550", + "coordonnees_gps": [ + 50.5056084882, + 2.40678584816 + ], + "libelle_d_acheminement": "AUMERVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40678584816, + 50.5056084882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daf5ab01fd72f7bbfa6c6e087096acf4fb6d50e3", + "fields": { + "code_commune_insee": "76519", + "nom_de_la_commune": "RAINFREVILLE", + "code_postal": "76730", + "coordonnees_gps": [ + 49.7931612623, + 0.923802196696 + ], + "libelle_d_acheminement": "RAINFREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.923802196696, + 49.7931612623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4896736d066f00475d83b51cbd0c5e270532c5a3", + "fields": { + "code_commune_insee": "62075", + "nom_de_la_commune": "BAINCTHUN", + "code_postal": "62360", + "coordonnees_gps": [ + 50.7014421299, + 1.71289310882 + ], + "libelle_d_acheminement": "BAINCTHUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71289310882, + 50.7014421299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bf46ce6d78506bc91289d0805aab7691cfd1ad9", + "fields": { + "code_commune_insee": "76527", + "nom_de_la_commune": "RICHEMONT", + "code_postal": "76390", + "coordonnees_gps": [ + 49.8102781691, + 1.64418812478 + ], + "libelle_d_acheminement": "RICHEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64418812478, + 49.8102781691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "498baa52252c68d833d7c2c1856e0c2859136343", + "fields": { + "code_commune_insee": "62080", + "nom_de_la_commune": "BAPAUME", + "code_postal": "62450", + "coordonnees_gps": [ + 50.1013647974, + 2.85501640622 + ], + "libelle_d_acheminement": "BAPAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85501640622, + 50.1013647974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "251fd3be317612149095ecd5f01a1dcf71705f06", + "fields": { + "code_commune_insee": "76529", + "nom_de_la_commune": "RIVILLE", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7229328156, + 0.563690281915 + ], + "libelle_d_acheminement": "RIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.563690281915, + 49.7229328156 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "098d559557baaee68549abdac0df583c03a9b708", + "fields": { + "code_commune_insee": "62085", + "nom_de_la_commune": "BASSEUX", + "code_postal": "62123", + "coordonnees_gps": [ + 50.2289727397, + 2.64740800316 + ], + "libelle_d_acheminement": "BASSEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64740800316, + 50.2289727397 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb3a2e1b38f394aaad3d79daa0301f3ab9b171d7", + "fields": { + "code_commune_insee": "76532", + "nom_de_la_commune": "ROCQUEMONT", + "code_postal": "76680", + "coordonnees_gps": [ + 49.6078202374, + 1.29752436783 + ], + "libelle_d_acheminement": "ROCQUEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29752436783, + 49.6078202374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6360ed8d0429b6d3992eb70db1962989def0cf3e", + "fields": { + "ligne_5": "L ARBRET", + "code_commune_insee": "62086", + "libelle_d_acheminement": "BAVINCOURT", + "code_postal": "62158", + "nom_de_la_commune": "BAVINCOURT", + "coordonnees_gps": [ + 50.2235500941, + 2.5641980363 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5641980363, + 50.2235500941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa75f597eec8a5550cc790cdf82b366de93c5af6", + "fields": { + "code_commune_insee": "76560", + "nom_de_la_commune": "ST AUBIN EPINAY", + "code_postal": "76160", + "coordonnees_gps": [ + 49.4189460634, + 1.20455713453 + ], + "libelle_d_acheminement": "ST AUBIN EPINAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20455713453, + 49.4189460634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab4fb83f67efef4fd37b8dd2dc8ca6c7f7a51c56", + "fields": { + "code_commune_insee": "62091", + "nom_de_la_commune": "BEAUDRICOURT", + "code_postal": "62810", + "coordonnees_gps": [ + 50.251321134, + 2.40781926457 + ], + "libelle_d_acheminement": "BEAUDRICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40781926457, + 50.251321134 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d580ee74061bc1f3098b906bf9f296793e45f4b5", + "fields": { + "code_commune_insee": "76569", + "nom_de_la_commune": "STE COLOMBE", + "code_postal": "76460", + "coordonnees_gps": [ + 49.7963787198, + 0.761815502519 + ], + "libelle_d_acheminement": "STE COLOMBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.761815502519, + 49.7963787198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "43b68108e4f6e662aaaf26a12e819c2e0c5d8924", + "fields": { + "code_commune_insee": "62092", + "nom_de_la_commune": "BEAUFORT BLAVINCOURT", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2755246835, + 2.48584476187 + ], + "libelle_d_acheminement": "BEAUFORT BLAVINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48584476187, + 50.2755246835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb9362e0a3734d019da0f2150c1eaa5ec4994569", + "fields": { + "code_commune_insee": "76581", + "nom_de_la_commune": "ST GERMAIN DES ESSOURTS", + "code_postal": "76750", + "coordonnees_gps": [ + 49.5337799591, + 1.315784761 + ], + "libelle_d_acheminement": "ST GERMAIN DES ESSOURTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.315784761, + 49.5337799591 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "499fad61048cbc09d5af971b225b92fbe2552fac", + "fields": { + "code_commune_insee": "62095", + "nom_de_la_commune": "BEAUMETZ LES AIRE", + "code_postal": "62960", + "coordonnees_gps": [ + 50.5437814581, + 2.21908661342 + ], + "libelle_d_acheminement": "BEAUMETZ LES AIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21908661342, + 50.5437814581 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a17c1bd7cb85f3084f5ad14f2a369de863bd1005", + "fields": { + "code_commune_insee": "76585", + "nom_de_la_commune": "ST GILLES DE CRETOT", + "code_postal": "76490", + "coordonnees_gps": [ + 49.5581716513, + 0.652697455698 + ], + "libelle_d_acheminement": "ST GILLES DE CRETOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.652697455698, + 49.5581716513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95152cb8761ab891af4cde315958f194d2615e4c", + "fields": { + "code_commune_insee": "62097", + "nom_de_la_commune": "BEAUMETZ LES LOGES", + "code_postal": "62123", + "coordonnees_gps": [ + 50.2455653714, + 2.65887337603 + ], + "libelle_d_acheminement": "BEAUMETZ LES LOGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65887337603, + 50.2455653714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b30a916b329c755e6e2cc23434fb2738cd47d15a", + "fields": { + "code_commune_insee": "76587", + "nom_de_la_commune": "STE HELENE BONDEVILLE", + "code_postal": "76400", + "coordonnees_gps": [ + 49.7715222464, + 0.460707972342 + ], + "libelle_d_acheminement": "STE HELENE BONDEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.460707972342, + 49.7715222464 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa6eeb9737e3a6a4f6c0503c80f2405a2a758789", + "fields": { + "code_commune_insee": "62104", + "nom_de_la_commune": "BELLEBRUNE", + "code_postal": "62142", + "coordonnees_gps": [ + 50.7326742454, + 1.77771584162 + ], + "libelle_d_acheminement": "BELLEBRUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77771584162, + 50.7326742454 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd7213db6dc1083aa923c2ebdf17dfd733e504a4", + "fields": { + "code_commune_insee": "76591", + "nom_de_la_commune": "ST JACQUES SUR DARNETAL", + "code_postal": "76160", + "coordonnees_gps": [ + 49.4457877857, + 1.20822620847 + ], + "libelle_d_acheminement": "ST JACQUES SUR DARNETAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20822620847, + 49.4457877857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bce703cffd1641b2781bc7d6a8b8c568d3950f3", + "fields": { + "code_commune_insee": "62105", + "nom_de_la_commune": "BELLE ET HOULLEFORT", + "code_postal": "62142", + "coordonnees_gps": [ + 50.7473911914, + 1.76615616876 + ], + "libelle_d_acheminement": "BELLE ET HOULLEFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76615616876, + 50.7473911914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e84097797e0597e3de2923c79e34a84db2754f23", + "fields": { + "code_commune_insee": "76592", + "nom_de_la_commune": "ST JEAN DE FOLLEVILLE", + "code_postal": "76170", + "coordonnees_gps": [ + 49.505056753, + 0.499483150435 + ], + "libelle_d_acheminement": "ST JEAN DE FOLLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.499483150435, + 49.505056753 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fc70889204336ae90ccb4d8e5534a389aa19a9a", + "fields": { + "code_commune_insee": "62106", + "nom_de_la_commune": "BELLONNE", + "code_postal": "62490", + "coordonnees_gps": [ + 50.3006458949, + 3.04320256335 + ], + "libelle_d_acheminement": "BELLONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04320256335, + 50.3006458949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "143e1152fd97a910ab99f80b994b2f83b14e9da1", + "fields": { + "code_commune_insee": "76596", + "nom_de_la_commune": "ST LAURENT DE BREVEDENT", + "code_postal": "76700", + "coordonnees_gps": [ + 49.5325966653, + 0.269281714398 + ], + "libelle_d_acheminement": "ST LAURENT DE BREVEDENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.269281714398, + 49.5325966653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce6a7631c4f2303306a981275b34f050c52dfe68", + "fields": { + "code_commune_insee": "62128", + "nom_de_la_commune": "BIACHE ST VAAST", + "code_postal": "62118", + "coordonnees_gps": [ + 50.3149700801, + 2.94146922674 + ], + "libelle_d_acheminement": "BIACHE ST VAAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94146922674, + 50.3149700801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c82603a885c5d57f2f65308ec93bf85a63208f1d", + "fields": { + "nom_de_la_commune": "ST LUCIEN", + "code_postal": "76780", + "code_commune_insee": "76601", + "libelle_d_acheminement": "ST LUCIEN" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff9d84457bef680a4a7bdd5684a813b99ccbbeb2", + "fields": { + "code_commune_insee": "62134", + "nom_de_la_commune": "BIMONT", + "code_postal": "62650", + "coordonnees_gps": [ + 50.540978292, + 1.90966011141 + ], + "libelle_d_acheminement": "BIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90966011141, + 50.540978292 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab44a9721e5e0d602d187e0f5f2c47b97ff69561", + "fields": { + "code_commune_insee": "76603", + "nom_de_la_commune": "ST MACLOU LA BRIERE", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6489375092, + 0.469956750588 + ], + "libelle_d_acheminement": "ST MACLOU LA BRIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.469956750588, + 49.6489375092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "583d27e4276d400b9cc0eca13228ebc4bfe9be10", + "fields": { + "code_commune_insee": "62139", + "nom_de_la_commune": "BLENDECQUES", + "code_postal": "62575", + "coordonnees_gps": [ + 50.7159944346, + 2.27536301448 + ], + "libelle_d_acheminement": "BLENDECQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27536301448, + 50.7159944346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e82fdd49a35eb888319f823fbb0968f6c5f1f9e", + "fields": { + "code_commune_insee": "76606", + "nom_de_la_commune": "MORIENNE", + "code_postal": "76390", + "coordonnees_gps": [ + 49.7817068976, + 1.72151986696 + ], + "libelle_d_acheminement": "MORIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72151986696, + 49.7817068976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3eebd18bb0089384288c7c520274ef2d80178a08", + "fields": { + "code_commune_insee": "62143", + "nom_de_la_commune": "BOFFLES", + "code_postal": "62390", + "coordonnees_gps": [ + 50.2567972494, + 2.19943270366 + ], + "libelle_d_acheminement": "BOFFLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19943270366, + 50.2567972494 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e824379a3f3f5c19006a74d4226825d410027fc0", + "fields": { + "code_commune_insee": "76613", + "nom_de_la_commune": "ST MARTIN AUX BUNEAUX", + "code_postal": "76450", + "coordonnees_gps": [ + 49.8270470687, + 0.550567234942 + ], + "libelle_d_acheminement": "ST MARTIN AUX BUNEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.550567234942, + 49.8270470687 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e23c1c5b3d706b668292db05b4ec064a3e04e806", + "fields": { + "code_commune_insee": "62145", + "nom_de_la_commune": "BOIRY NOTRE DAME", + "code_postal": "62156", + "coordonnees_gps": [ + 50.2739296431, + 2.94252395946 + ], + "libelle_d_acheminement": "BOIRY NOTRE DAME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94252395946, + 50.2739296431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64e598e616860379454e6d5b541b0f1e1808182d", + "fields": { + "ligne_5": "GLICOURT", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76630", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fca8eb50e28d1111f45b176f99942ad79eb679cd", + "fields": { + "code_commune_insee": "62148", + "nom_de_la_commune": "BOIS BERNARD", + "code_postal": "62320", + "coordonnees_gps": [ + 50.3775317977, + 2.91332273733 + ], + "libelle_d_acheminement": "BOIS BERNARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91332273733, + 50.3775317977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d21fd11850c900fbe03fc4c2c72826190d6d951", + "fields": { + "ligne_5": "GOUCHAUPRE", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76630", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "625889e24a58e605174a9aae225a5f708e9e5ebf", + "fields": { + "code_commune_insee": "62160", + "nom_de_la_commune": "BOULOGNE SUR MER", + "code_postal": "62200", + "coordonnees_gps": [ + 50.7271332663, + 1.60756334802 + ], + "libelle_d_acheminement": "BOULOGNE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60756334802, + 50.7271332663 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82cae9f823bcea12aac4fd4f941917370c9f4e9e", + "fields": { + "ligne_5": "GRENY", + "code_commune_insee": "76618", + "libelle_d_acheminement": "PETIT CAUX", + "code_postal": "76630", + "nom_de_la_commune": "PETIT CAUX", + "coordonnees_gps": [ + 49.9614365259, + 1.21910748031 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21910748031, + 49.9614365259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "787dfc20e22ccda0fb13dbf02bfa6e00b40fa5b3", + "fields": { + "code_commune_insee": "62161", + "nom_de_la_commune": "BOUQUEHAULT", + "code_postal": "62340", + "coordonnees_gps": [ + 50.8160934944, + 1.89974480886 + ], + "libelle_d_acheminement": "BOUQUEHAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89974480886, + 50.8160934944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d76bdb9581c9beca97c36587c05af616116c162c", + "fields": { + "code_commune_insee": "76621", + "nom_de_la_commune": "ST MARTIN OSMONVILLE", + "code_postal": "76680", + "coordonnees_gps": [ + 49.6419438323, + 1.30112980694 + ], + "libelle_d_acheminement": "ST MARTIN OSMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30112980694, + 49.6419438323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4f7a9280d16eb9560136b2e8cf758ebbff9b5ac", + "fields": { + "code_commune_insee": "62165", + "nom_de_la_commune": "BOURNONVILLE", + "code_postal": "62240", + "coordonnees_gps": [ + 50.698274703, + 1.84604616577 + ], + "libelle_d_acheminement": "BOURNONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84604616577, + 50.698274703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc6d428a25d5b8688251fb4de8899a0ee58df2cf", + "fields": { + "code_commune_insee": "76632", + "nom_de_la_commune": "ST PIERRE BENOUVILLE", + "code_postal": "76890", + "coordonnees_gps": [ + 49.7384423102, + 0.97405131386 + ], + "libelle_d_acheminement": "ST PIERRE BENOUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.97405131386, + 49.7384423102 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a106f574a729571720c824611c250ddbbcfc158", + "fields": { + "code_commune_insee": "62178", + "nom_de_la_commune": "BRUAY LA BUISSIERE", + "code_postal": "62700", + "coordonnees_gps": [ + 50.4903167839, + 2.55205338028 + ], + "libelle_d_acheminement": "BRUAY LA BUISSIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55205338028, + 50.4903167839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e0100b10618b9dcf76a6465aa1fce382881ce0e", + "fields": { + "code_commune_insee": "76641", + "nom_de_la_commune": "ST PIERRE LE VIEUX", + "code_postal": "76740", + "coordonnees_gps": [ + 49.8488151047, + 0.885165037605 + ], + "libelle_d_acheminement": "ST PIERRE LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.885165037605, + 49.8488151047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15e4b62181f615b8624ca2587975ca844099f483", + "fields": { + "code_commune_insee": "62181", + "nom_de_la_commune": "BUCQUOY", + "code_postal": "62116", + "coordonnees_gps": [ + 50.1459428141, + 2.69722641414 + ], + "libelle_d_acheminement": "BUCQUOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69722641414, + 50.1459428141 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42c1f2e00725818dd1f466559d30cbceae887838", + "fields": { + "code_commune_insee": "76644", + "nom_de_la_commune": "ST REMY BOSCROCOURT", + "code_postal": "76260", + "coordonnees_gps": [ + 50.009950243, + 1.39185007909 + ], + "libelle_d_acheminement": "ST REMY BOSCROCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39185007909, + 50.009950243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d2278db883b2cbb8b4d9541315a12a45e35370e", + "fields": { + "code_commune_insee": "62189", + "nom_de_la_commune": "BUS", + "code_postal": "62124", + "coordonnees_gps": [ + 50.0637422666, + 2.96369120352 + ], + "libelle_d_acheminement": "BUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96369120352, + 50.0637422666 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5236f096175813fbb306e05dd5e1e7d8346520d6", + "fields": { + "code_commune_insee": "76645", + "nom_de_la_commune": "ST RIQUIER EN RIVIERE", + "code_postal": "76340", + "coordonnees_gps": [ + 49.8845471571, + 1.57255279378 + ], + "libelle_d_acheminement": "ST RIQUIER EN RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57255279378, + 49.8845471571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16afac36fda110e477bc8cf5b49c9dc65d28d628", + "fields": { + "code_commune_insee": "62190", + "nom_de_la_commune": "BUSNES", + "code_postal": "62350", + "coordonnees_gps": [ + 50.588902264, + 2.51386787052 + ], + "libelle_d_acheminement": "BUSNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51386787052, + 50.588902264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3dd4a6d8bc855a3d48c683410d9fa1951697e43d", + "fields": { + "code_commune_insee": "76646", + "nom_de_la_commune": "ST RIQUIER ES PLAINS", + "code_postal": "76460", + "coordonnees_gps": [ + 49.8203788901, + 0.666311281625 + ], + "libelle_d_acheminement": "ST RIQUIER ES PLAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.666311281625, + 49.8203788901 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90bd323d3b36723b1adb41f630a9f02a1e0c5e68", + "fields": { + "code_commune_insee": "62193", + "nom_de_la_commune": "CALAIS", + "code_postal": "62100", + "coordonnees_gps": [ + 50.9502072754, + 1.87575566132 + ], + "libelle_d_acheminement": "CALAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87575566132, + 50.9502072754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a153dca27b83aaa28b1a7434a12143bf9202fc7f", + "fields": { + "code_commune_insee": "76649", + "nom_de_la_commune": "ST SAIRE", + "code_postal": "76270", + "coordonnees_gps": [ + 49.6816711457, + 1.48096971774 + ], + "libelle_d_acheminement": "ST SAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48096971774, + 49.6816711457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64940b077029ab6c94663d58b3a545344beac48f", + "fields": { + "code_commune_insee": "62194", + "nom_de_la_commune": "CALONNE RICOUART", + "code_postal": "62470", + "coordonnees_gps": [ + 50.4898416084, + 2.48534476198 + ], + "libelle_d_acheminement": "CALONNE RICOUART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48534476198, + 50.4898416084 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "add8354511ac750d729b63ad614f433cba4ce119", + "fields": { + "code_commune_insee": "76657", + "nom_de_la_commune": "ST VIGOR D YMONVILLE", + "code_postal": "76430", + "coordonnees_gps": [ + 49.4688378023, + 0.347654675669 + ], + "libelle_d_acheminement": "ST VIGOR D YMONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.347654675669, + 49.4688378023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f391988090f7f5819e3c27f83a7e73a2eba21f0", + "fields": { + "code_commune_insee": "62200", + "nom_de_la_commune": "CAMBRIN", + "code_postal": "62149", + "coordonnees_gps": [ + 50.5116047377, + 2.73659179875 + ], + "libelle_d_acheminement": "CAMBRIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73659179875, + 50.5116047377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cfd8cd8812702d46896de0fbf7811d68b00fd63", + "fields": { + "code_commune_insee": "76662", + "nom_de_la_commune": "SASSETOT LE MALGARDE", + "code_postal": "76730", + "coordonnees_gps": [ + 49.7720010811, + 0.895836596753 + ], + "libelle_d_acheminement": "SASSETOT LE MALGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.895836596753, + 49.7720010811 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6718a81ce3a41d807131efdeabe26bf106be4918", + "fields": { + "code_commune_insee": "62218", + "nom_de_la_commune": "CAUCOURT", + "code_postal": "62150", + "coordonnees_gps": [ + 50.3943730066, + 2.57209168767 + ], + "libelle_d_acheminement": "CAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57209168767, + 50.3943730066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fb2ce86e08c4f2010c0f2787499240780065111", + "fields": { + "code_commune_insee": "76663", + "nom_de_la_commune": "SASSETOT LE MAUCONDUIT", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7993640965, + 0.528771172239 + ], + "libelle_d_acheminement": "SASSETOT LE MAUCONDUIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.528771172239, + 49.7993640965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "917f92462fee3a71cfda36abb668c469fa1a553d", + "fields": { + "code_commune_insee": "62221", + "nom_de_la_commune": "CHELERS", + "code_postal": "62127", + "coordonnees_gps": [ + 50.3815791457, + 2.48784596215 + ], + "libelle_d_acheminement": "CHELERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48784596215, + 50.3815791457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd31ccf8cd27e788c6ef8bae0ad65eba582dbdda", + "fields": { + "code_commune_insee": "76668", + "nom_de_la_commune": "SAUSSAY", + "code_postal": "76760", + "coordonnees_gps": [ + 49.6369146276, + 0.925129997782 + ], + "libelle_d_acheminement": "SAUSSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.925129997782, + 49.6369146276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45d93ebcc24653a734b3940a89be585c6d92ebbe", + "fields": { + "code_commune_insee": "62224", + "nom_de_la_commune": "CHOCQUES", + "code_postal": "62920", + "coordonnees_gps": [ + 50.5404138209, + 2.56222999188 + ], + "libelle_d_acheminement": "CHOCQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56222999188, + 50.5404138209 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e60027377439adde28544b04a602d37c046b70f", + "fields": { + "code_commune_insee": "76677", + "nom_de_la_commune": "SMERMESNIL", + "code_postal": "76660", + "coordonnees_gps": [ + 49.854797, + 1.48691463898 + ], + "libelle_d_acheminement": "SMERMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48691463898, + 49.854797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b880b8b00ea8f90981a5350daefc710a3db8286a", + "fields": { + "code_commune_insee": "62225", + "nom_de_la_commune": "CLAIRMARAIS", + "code_postal": "62500", + "coordonnees_gps": [ + 50.7691557578, + 2.34273928671 + ], + "libelle_d_acheminement": "CLAIRMARAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34273928671, + 50.7691557578 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32976e5f349db91097370bd0688537417fc7f38d", + "fields": { + "code_commune_insee": "76683", + "nom_de_la_commune": "SOTTEVILLE SUR MER", + "code_postal": "76740", + "coordonnees_gps": [ + 49.8731818649, + 0.827643384885 + ], + "libelle_d_acheminement": "SOTTEVILLE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.827643384885, + 49.8731818649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eee32e134aa626db62dc6afcb81af19f4021830", + "fields": { + "code_commune_insee": "62229", + "nom_de_la_commune": "CLETY", + "code_postal": "62380", + "coordonnees_gps": [ + 50.6533415783, + 2.18209813078 + ], + "libelle_d_acheminement": "CLETY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18209813078, + 50.6533415783 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad2ef2cf86f97e33ea70457b5ad238c3892e6931", + "fields": { + "code_commune_insee": "76689", + "nom_de_la_commune": "THIETREVILLE", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7197053682, + 0.518166306169 + ], + "libelle_d_acheminement": "THIETREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.518166306169, + 49.7197053682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73b6ad71a6d3c8fb44deec7eea2f2b78a242726d", + "fields": { + "code_commune_insee": "62230", + "nom_de_la_commune": "COLEMBERT", + "code_postal": "62142", + "coordonnees_gps": [ + 50.7498495112, + 1.82728211556 + ], + "libelle_d_acheminement": "COLEMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82728211556, + 50.7498495112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b874f6c6f4fb3525e2909c5419741f3efb2ae161", + "fields": { + "code_commune_insee": "76695", + "nom_de_la_commune": "TOCQUEVILLE LES MURS", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6630245731, + 0.500760305403 + ], + "libelle_d_acheminement": "TOCQUEVILLE LES MURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.500760305403, + 49.6630245731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "139fecfc592b130f96cd1c55dc5154aa264c85d7", + "fields": { + "code_commune_insee": "62231", + "nom_de_la_commune": "COLLINE BEAUMONT", + "code_postal": "62180", + "coordonnees_gps": [ + 50.3429997005, + 1.67370320424 + ], + "libelle_d_acheminement": "COLLINE BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67370320424, + 50.3429997005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "120bcd6f93722580264614d5c8d9af15791f9391", + "fields": { + "code_commune_insee": "76697", + "nom_de_la_commune": "TORCY LE GRAND", + "code_postal": "76590", + "coordonnees_gps": [ + 49.7943785758, + 1.17719285853 + ], + "libelle_d_acheminement": "TORCY LE GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17719285853, + 49.7943785758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59b537acbc2c41a60d112b4c46745a76fd04c5d0", + "fields": { + "code_commune_insee": "62243", + "nom_de_la_commune": "COULLEMONT", + "code_postal": "62158", + "coordonnees_gps": [ + 50.218441414, + 2.48202998649 + ], + "libelle_d_acheminement": "COULLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48202998649, + 50.218441414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68806f35d9daf3b2474844b00df745f6f8d4c91c", + "fields": { + "code_commune_insee": "76708", + "nom_de_la_commune": "TOUSSAINT", + "code_postal": "76400", + "coordonnees_gps": [ + 49.7368198759, + 0.43974783787 + ], + "libelle_d_acheminement": "TOUSSAINT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.43974783787, + 49.7368198759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f13ce5edc3c2cbe96c0d8a361a343f319d90fd7", + "fields": { + "code_commune_insee": "62250", + "nom_de_la_commune": "COURRIERES", + "code_postal": "62710", + "coordonnees_gps": [ + 50.4532038748, + 2.94633053767 + ], + "libelle_d_acheminement": "COURRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94633053767, + 50.4532038748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "855b44a21c6d94562fa09621e020c506ead23314", + "fields": { + "code_commune_insee": "76710", + "nom_de_la_commune": "TREMAUVILLE", + "code_postal": "76640", + "coordonnees_gps": [ + 49.6649596837, + 0.521421339648 + ], + "libelle_d_acheminement": "TREMAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.521421339648, + 49.6649596837 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b555bd78d4fcd7040acae8361c61dfdb215fe768", + "fields": { + "code_commune_insee": "62253", + "nom_de_la_commune": "COUTURELLE", + "code_postal": "62158", + "coordonnees_gps": [ + 50.2066022769, + 2.49814698704 + ], + "libelle_d_acheminement": "COUTURELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49814698704, + 50.2066022769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f0c71a69f6bf4aa081a759ac333fda06457c033", + "fields": { + "code_commune_insee": "76714", + "nom_de_la_commune": "LES TROIS PIERRES", + "code_postal": "76430", + "coordonnees_gps": [ + 49.5508324956, + 0.402557046939 + ], + "libelle_d_acheminement": "LES TROIS PIERRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.402557046939, + 49.5508324956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bed23777b8c86d44ece3faeab5dd15c360a1b8dd", + "fields": { + "code_commune_insee": "62256", + "nom_de_la_commune": "CREPY", + "code_postal": "62310", + "coordonnees_gps": [ + 50.4725099777, + 2.20322348829 + ], + "libelle_d_acheminement": "CREPY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20322348829, + 50.4725099777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aee605909d50b79997cdfbc0f00f412b027b758", + "fields": { + "code_commune_insee": "76717", + "nom_de_la_commune": "VAL DE LA HAYE", + "code_postal": "76380", + "coordonnees_gps": [ + 49.386140855, + 0.990005122021 + ], + "libelle_d_acheminement": "VAL DE LA HAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.990005122021, + 49.386140855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7cd709953caf3ef7b09de1e2d734bc5f446b0e7", + "fields": { + "code_commune_insee": "62259", + "nom_de_la_commune": "CROISILLES", + "code_postal": "62128", + "coordonnees_gps": [ + 50.1978734873, + 2.88112932349 + ], + "libelle_d_acheminement": "CROISILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88112932349, + 50.1978734873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7388423725a42b9f46bb5bbf0dc8bee068bdbe17", + "fields": { + "code_commune_insee": "76719", + "nom_de_la_commune": "VALMONT", + "code_postal": "76540", + "coordonnees_gps": [ + 49.7399725862, + 0.512635671839 + ], + "libelle_d_acheminement": "VALMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.512635671839, + 49.7399725862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "434707dbf534ec539a629c053a3bc30e72ced21d", + "fields": { + "code_commune_insee": "62260", + "nom_de_la_commune": "CROIX EN TERNOIS", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3833079457, + 2.27273086096 + ], + "libelle_d_acheminement": "CROIX EN TERNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27273086096, + 50.3833079457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11e29921c3cb488009aea202d59d6d71c0ee90d4", + "fields": { + "code_commune_insee": "76721", + "nom_de_la_commune": "VARNEVILLE BRETTEVILLE", + "code_postal": "76890", + "coordonnees_gps": [ + 49.6545398173, + 1.04295071603 + ], + "libelle_d_acheminement": "VARNEVILLE BRETTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04295071603, + 49.6545398173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27e19e802eb0bd20c917530ca29d2ac929852c33", + "fields": { + "code_commune_insee": "62271", + "nom_de_la_commune": "DOHEM", + "code_postal": "62380", + "coordonnees_gps": [ + 50.6269973774, + 2.16928920194 + ], + "libelle_d_acheminement": "DOHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16928920194, + 50.6269973774 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16500409316d5942150ee8b37037b1c6bbfcc43c", + "fields": { + "code_commune_insee": "76723", + "nom_de_la_commune": "VASSONVILLE", + "code_postal": "76890", + "coordonnees_gps": [ + 49.6886808742, + 1.0764967043 + ], + "libelle_d_acheminement": "VASSONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0764967043, + 49.6886808742 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d6e10c5e1240e2f962b25efcf998e1c87dcace8", + "fields": { + "code_commune_insee": "62272", + "nom_de_la_commune": "DOUCHY LES AYETTE", + "code_postal": "62116", + "coordonnees_gps": [ + 50.1758311935, + 2.71038948013 + ], + "libelle_d_acheminement": "DOUCHY LES AYETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71038948013, + 50.1758311935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c08e03df3ccbe866036a4a168e328b1a81d1587", + "fields": { + "code_commune_insee": "76725", + "nom_de_la_commune": "VATTETOT SOUS BEAUMONT", + "code_postal": "76110", + "coordonnees_gps": [ + 49.6285330749, + 0.44917171315 + ], + "libelle_d_acheminement": "VATTETOT SOUS BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.44917171315, + 49.6285330749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "119e79fd299651e7c7f1f0461764d4883cfb0dcc", + "fields": { + "code_commune_insee": "62282", + "nom_de_la_commune": "ECLIMEUX", + "code_postal": "62770", + "coordonnees_gps": [ + 50.3960082983, + 2.18049856502 + ], + "libelle_d_acheminement": "ECLIMEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18049856502, + 50.3960082983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e52b79e7a50e7ca13b7e99a5e77235a0def0068", + "fields": { + "code_commune_insee": "76737", + "nom_de_la_commune": "VIBEUF", + "code_postal": "76760", + "coordonnees_gps": [ + 49.6896445459, + 0.912928114033 + ], + "libelle_d_acheminement": "VIBEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.912928114033, + 49.6896445459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "098cd40d4e950463aaeb40a4f58d042043744ea9", + "fields": { + "code_commune_insee": "62283", + "nom_de_la_commune": "ECOIVRES", + "code_postal": "62270", + "coordonnees_gps": [ + 50.3246377433, + 2.28557967966 + ], + "libelle_d_acheminement": "ECOIVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28557967966, + 50.3246377433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f547a2ee79cbe5ef86819558f52ad6655e2eca41", + "fields": { + "code_commune_insee": "76745", + "nom_de_la_commune": "VILLY SUR YERES", + "code_postal": "76260", + "coordonnees_gps": [ + 49.9413427521, + 1.45724552961 + ], + "libelle_d_acheminement": "VILLY SUR YERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45724552961, + 49.9413427521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f1ae51d3ee30d194d3e1adfa22075973e154db0", + "fields": { + "code_commune_insee": "62289", + "nom_de_la_commune": "ECUIRES", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4375878146, + 1.76808279831 + ], + "libelle_d_acheminement": "ECUIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76808279831, + 50.4375878146 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "decb4831f8e7f710f2aa7cf8d8ba9705ed8d6f52", + "fields": { + "code_commune_insee": "76746", + "nom_de_la_commune": "VINNEMERVILLE", + "code_postal": "76540", + "coordonnees_gps": [ + 49.8075939956, + 0.555993402773 + ], + "libelle_d_acheminement": "VINNEMERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.555993402773, + 49.8075939956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18ced4ac59ac2565b0f45698c48327be2a1a7a5c", + "fields": { + "code_commune_insee": "62290", + "nom_de_la_commune": "ECURIE", + "code_postal": "62223", + "coordonnees_gps": [ + 50.3328667178, + 2.76793109769 + ], + "libelle_d_acheminement": "ECURIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76793109769, + 50.3328667178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc94de5d3a87cf01c8da8c8ffffc6178f067f41b", + "fields": { + "code_commune_insee": "76749", + "nom_de_la_commune": "WANCHY CAPVAL", + "code_postal": "76660", + "coordonnees_gps": [ + 49.8640702539, + 1.37097161732 + ], + "libelle_d_acheminement": "WANCHY CAPVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.37097161732, + 49.8640702539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49f8702a9524634d20b334702e5947de835c0ace", + "fields": { + "code_commune_insee": "62291", + "nom_de_la_commune": "ELEU DIT LEAUWETTE", + "code_postal": "62300", + "coordonnees_gps": [ + 50.4182625415, + 2.81150914933 + ], + "libelle_d_acheminement": "ELEU DIT LEAUWETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81150914933, + 50.4182625415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1671ec9d0d0936c943d1f43fc1dd5ac58822d15d", + "fields": { + "code_commune_insee": "76756", + "nom_de_la_commune": "YQUEBEUF", + "code_postal": "76690", + "coordonnees_gps": [ + 49.5932680679, + 1.2590988695 + ], + "libelle_d_acheminement": "YQUEBEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2590988695, + 49.5932680679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdc6586c91624caaa73522fccabdd439ec1359e0", + "fields": { + "code_commune_insee": "62293", + "nom_de_la_commune": "EMBRY", + "code_postal": "62990", + "coordonnees_gps": [ + 50.4961583161, + 1.95703731112 + ], + "libelle_d_acheminement": "EMBRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95703731112, + 50.4961583161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78b926294cda9539caf0d736f4f491ba92d95818", + "fields": { + "code_commune_insee": "77002", + "nom_de_la_commune": "AMILLIS", + "code_postal": "77120", + "coordonnees_gps": [ + 48.7355504117, + 3.13534283623 + ], + "libelle_d_acheminement": "AMILLIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13534283623, + 48.7355504117 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a0283a35b36c1eca69cf45508c99d12f3dc824e", + "fields": { + "ligne_5": "ENGUINEGATTE", + "code_commune_insee": "62295", + "libelle_d_acheminement": "ENQUIN LEZ GUINEGATTE", + "code_postal": "62145", + "nom_de_la_commune": "ENQUIN LEZ GUINEGATTE", + "coordonnees_gps": [ + 50.5860830884, + 2.29343023005 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29343023005, + 50.5860830884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46df039922774f0374ebbf02a5cab894ff23d941", + "fields": { + "code_commune_insee": "77013", + "nom_de_la_commune": "AULNOY", + "code_postal": "77120", + "coordonnees_gps": [ + 48.8488670481, + 3.08940930217 + ], + "libelle_d_acheminement": "AULNOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08940930217, + 48.8488670481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7183ad9205489166939c0808c9617c9bd6eae2d7", + "fields": { + "code_commune_insee": "62301", + "nom_de_la_commune": "EQUIRRE", + "code_postal": "62134", + "coordonnees_gps": [ + 50.4795228175, + 2.23471114879 + ], + "libelle_d_acheminement": "EQUIRRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23471114879, + 50.4795228175 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0befe9e89942c4d9638818ba39fc534812ed83f9", + "fields": { + "code_commune_insee": "77024", + "nom_de_la_commune": "BASSEVELLE", + "code_postal": "77750", + "coordonnees_gps": [ + 48.9228496694, + 3.28206618815 + ], + "libelle_d_acheminement": "BASSEVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28206618815, + 48.9228496694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4657a0e0170b9be1573ab8484a2d506dae34649c", + "fields": { + "code_commune_insee": "62312", + "nom_de_la_commune": "ESTREE", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4955374947, + 1.80353730749 + ], + "libelle_d_acheminement": "ESTREE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80353730749, + 50.4955374947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d396e717f6806078e3a8b4d0f9b17788997aedb", + "fields": { + "code_commune_insee": "77031", + "nom_de_la_commune": "BERNAY VILBERT", + "code_postal": "77540", + "coordonnees_gps": [ + 48.675289546, + 2.92952115165 + ], + "libelle_d_acheminement": "BERNAY VILBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92952115165, + 48.675289546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c327bbb0e61a56ba527a6ffe95962b158ecd1d70", + "fields": { + "code_commune_insee": "62316", + "nom_de_la_commune": "ESTREE WAMIN", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2689484994, + 2.39437823865 + ], + "libelle_d_acheminement": "ESTREE WAMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39437823865, + 50.2689484994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fb65ca10efa36bca8720ed9c232ea3d50486192", + "fields": { + "code_commune_insee": "77032", + "nom_de_la_commune": "BETON BAZOCHES", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7072104391, + 3.24596468954 + ], + "libelle_d_acheminement": "BETON BAZOCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24596468954, + 48.7072104391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1500e5998a6c331124753a3e3128ea9282a74fa", + "fields": { + "code_commune_insee": "62321", + "nom_de_la_commune": "EVIN MALMAISON", + "code_postal": "62141", + "coordonnees_gps": [ + 50.4353563235, + 3.03002444738 + ], + "libelle_d_acheminement": "EVIN MALMAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03002444738, + 50.4353563235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46acad9c44a7f4e569e163cc6025cad069b462ec", + "fields": { + "code_commune_insee": "77033", + "nom_de_la_commune": "BEZALLES", + "code_postal": "77970", + "coordonnees_gps": [ + 48.6668121483, + 3.24024781081 + ], + "libelle_d_acheminement": "BEZALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24024781081, + 48.6668121483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c0480d3e0d55f182f79f07e9d329736d18cbdc5", + "fields": { + "code_commune_insee": "62325", + "nom_de_la_commune": "FAUQUEMBERGUES", + "code_postal": "62560", + "coordonnees_gps": [ + 50.5933148828, + 2.09984616722 + ], + "libelle_d_acheminement": "FAUQUEMBERGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09984616722, + 50.5933148828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86d9fa8d0f355ff45960c506647a0b54c54c9213", + "fields": { + "code_commune_insee": "77037", + "nom_de_la_commune": "BOIS LE ROI", + "code_postal": "77590", + "coordonnees_gps": [ + 48.476036197, + 2.70159529081 + ], + "libelle_d_acheminement": "BOIS LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70159529081, + 48.476036197 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7a377d95ff6f666228b4846cbacc52c34b33200", + "fields": { + "code_commune_insee": "62331", + "nom_de_la_commune": "FEUCHY", + "code_postal": "62223", + "coordonnees_gps": [ + 50.2847198713, + 2.84925984061 + ], + "libelle_d_acheminement": "FEUCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84925984061, + 50.2847198713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab8e39669bc4ad48c7406fcadbabb35a5a215c20", + "fields": { + "code_commune_insee": "77039", + "nom_de_la_commune": "BOISSISE LA BERTRAND", + "code_postal": "77350", + "coordonnees_gps": [ + 48.5339084489, + 2.58950755763 + ], + "libelle_d_acheminement": "BOISSISE LA BERTRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58950755763, + 48.5339084489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa4055b5ade8b2df9eb77195fa623664460a5517", + "fields": { + "code_commune_insee": "62334", + "nom_de_la_commune": "FIENNES", + "code_postal": "62132", + "coordonnees_gps": [ + 50.8239442286, + 1.83126229183 + ], + "libelle_d_acheminement": "FIENNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83126229183, + 50.8239442286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "284e8f2da14aab966de3c0e71e7b6fcbe83afac2", + "fields": { + "code_commune_insee": "77040", + "nom_de_la_commune": "BOISSISE LE ROI", + "code_postal": "77310", + "coordonnees_gps": [ + 48.5119779126, + 2.56991909533 + ], + "libelle_d_acheminement": "BOISSISE LE ROI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56991909533, + 48.5119779126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "41c8956e6522ff57b81d3988cc5bb127ca3f6a0a", + "fields": { + "code_commune_insee": "62341", + "nom_de_la_commune": "FONCQUEVILLERS", + "code_postal": "62111", + "coordonnees_gps": [ + 50.1456346313, + 2.62269335519 + ], + "libelle_d_acheminement": "FONCQUEVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62269335519, + 50.1456346313 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cff168e62e9297cc6a702ed3ef51a321f5dcdb7", + "fields": { + "code_commune_insee": "77050", + "nom_de_la_commune": "BRANSLES", + "code_postal": "77620", + "coordonnees_gps": [ + 48.1490796752, + 2.82814445347 + ], + "libelle_d_acheminement": "BRANSLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82814445347, + 48.1490796752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa8d2f66c4718a5101ede8de19d890bba185b540", + "fields": { + "code_commune_insee": "62345", + "nom_de_la_commune": "FONTAINE L ETALON", + "code_postal": "62390", + "coordonnees_gps": [ + 50.3021964061, + 2.06687302766 + ], + "libelle_d_acheminement": "FONTAINE L ETALON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06687302766, + 50.3021964061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60d9bc9977822e5f7c2cc6d38b563516fb9f2866", + "fields": { + "code_commune_insee": "77052", + "nom_de_la_commune": "BREAU", + "code_postal": "77720", + "coordonnees_gps": [ + 48.5575023659, + 2.87972860182 + ], + "libelle_d_acheminement": "BREAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87972860182, + 48.5575023659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4aa40d895ae9338040cec1dd6f45b47113fe74a8", + "fields": { + "code_commune_insee": "62346", + "nom_de_la_commune": "FORTEL EN ARTOIS", + "code_postal": "62270", + "coordonnees_gps": [ + 50.2579701722, + 2.22982753471 + ], + "libelle_d_acheminement": "FORTEL EN ARTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22982753471, + 50.2579701722 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a1125182db23eb215ac2374b07e4050f559622b", + "fields": { + "code_commune_insee": "77053", + "nom_de_la_commune": "BRIE COMTE ROBERT", + "code_postal": "77170", + "coordonnees_gps": [ + 48.6920490316, + 2.6140606052 + ], + "libelle_d_acheminement": "BRIE COMTE ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6140606052, + 48.6920490316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b12e0dce640524d024ac7f1bfff845fc65f6008", + "fields": { + "code_commune_insee": "62355", + "nom_de_la_commune": "FRESNES LES MONTAUBAN", + "code_postal": "62490", + "coordonnees_gps": [ + 50.3362535574, + 2.92878850685 + ], + "libelle_d_acheminement": "FRESNES LES MONTAUBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92878850685, + 50.3362535574 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9923959fa3d137bc096d2a6d3fd116efb7675ae8", + "fields": { + "code_commune_insee": "77056", + "nom_de_la_commune": "BURCY", + "code_postal": "77760", + "coordonnees_gps": [ + 48.2330689473, + 2.52555422379 + ], + "libelle_d_acheminement": "BURCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52555422379, + 48.2330689473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74500d1c23b91186672964024107da93d28f9ffc", + "fields": { + "code_commune_insee": "62364", + "nom_de_la_commune": "FRUGES", + "code_postal": "62310", + "coordonnees_gps": [ + 50.5130111281, + 2.1230697319 + ], + "libelle_d_acheminement": "FRUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1230697319, + 50.5130111281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0daff1b1fd1654842388effe4c898c1f15ffa080", + "fields": { + "code_commune_insee": "77058", + "nom_de_la_commune": "BUSSY ST GEORGES", + "code_postal": "77600", + "coordonnees_gps": [ + 48.8308269318, + 2.7225014237 + ], + "libelle_d_acheminement": "BUSSY ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7225014237, + 48.8308269318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7d4253d48dac7fd4195de31a31f81dbb821cbf0", + "fields": { + "code_commune_insee": "62378", + "nom_de_la_commune": "GOUVES", + "code_postal": "62123", + "coordonnees_gps": [ + 50.2964618298, + 2.64441572265 + ], + "libelle_d_acheminement": "GOUVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64441572265, + 50.2964618298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "876e140b53d4cf653a534c7e90a1b38db10d93ea", + "fields": { + "code_commune_insee": "77059", + "nom_de_la_commune": "BUSSY ST MARTIN", + "code_postal": "77600", + "coordonnees_gps": [ + 48.8462454012, + 2.67900406868 + ], + "libelle_d_acheminement": "BUSSY ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67900406868, + 48.8462454012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f188005b604fc32a65ea8df88631072619629f3", + "fields": { + "code_commune_insee": "62382", + "nom_de_la_commune": "GOUY ST ANDRE", + "code_postal": "62870", + "coordonnees_gps": [ + 50.3737414142, + 1.90925846468 + ], + "libelle_d_acheminement": "GOUY ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90925846468, + 50.3737414142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30cbb6444cc989e9925360218f1c6011c61af7ed", + "fields": { + "ligne_5": "RENTILLY", + "code_commune_insee": "77059", + "libelle_d_acheminement": "BUSSY ST MARTIN", + "code_postal": "77600", + "nom_de_la_commune": "BUSSY ST MARTIN", + "coordonnees_gps": [ + 48.8462454012, + 2.67900406868 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67900406868, + 48.8462454012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eb29be9b384b3b3a13ffe6270c2497c16936bb1", + "fields": { + "code_commune_insee": "62384", + "nom_de_la_commune": "GRAINCOURT LES HAVRINCOURT", + "code_postal": "62147", + "coordonnees_gps": [ + 50.1424794757, + 3.09706084719 + ], + "libelle_d_acheminement": "GRAINCOURT LES HAVRINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09706084719, + 50.1424794757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8cd4dd6e4ac6ec0f296d3a3d210dc84f99d21f6", + "fields": { + "code_commune_insee": "77071", + "nom_de_la_commune": "CHAINTREAUX", + "code_postal": "77460", + "coordonnees_gps": [ + 48.1911011555, + 2.81419944811 + ], + "libelle_d_acheminement": "CHAINTREAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81419944811, + 48.1911011555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7774adf3c0c3590e1fb1194cdcb50bae0c3682ba", + "fields": { + "code_commune_insee": "62386", + "nom_de_la_commune": "GRENAY", + "code_postal": "62160", + "coordonnees_gps": [ + 50.4496814864, + 2.74513302656 + ], + "libelle_d_acheminement": "GRENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74513302656, + 50.4496814864 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c539bfbc9030974ba1d42c058651ecade33641d", + "fields": { + "code_commune_insee": "77085", + "nom_de_la_commune": "CHANTELOUP EN BRIE", + "code_postal": "77600", + "coordonnees_gps": [ + 48.8577766033, + 2.74039391563 + ], + "libelle_d_acheminement": "CHANTELOUP EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74039391563, + 48.8577766033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab61ac183c366c470439a1c3490d7de104fcbe1f", + "fields": { + "code_commune_insee": "62405", + "nom_de_la_commune": "HAMBLAIN LES PRES", + "code_postal": "62118", + "coordonnees_gps": [ + 50.2910559245, + 2.95821572161 + ], + "libelle_d_acheminement": "HAMBLAIN LES PRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95821572161, + 50.2910559245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d3e654264fca23d27afd3b2d0eab625c4bbdd31", + "fields": { + "code_commune_insee": "77096", + "nom_de_la_commune": "CHARTRETTES", + "code_postal": "77590", + "coordonnees_gps": [ + 48.4942666127, + 2.71362181584 + ], + "libelle_d_acheminement": "CHARTRETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71362181584, + 48.4942666127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27fc95d99ea97086003e797384658a46c8db4860", + "fields": { + "code_commune_insee": "62406", + "nom_de_la_commune": "HAMELINCOURT", + "code_postal": "62121", + "coordonnees_gps": [ + 50.1833996066, + 2.80226363556 + ], + "libelle_d_acheminement": "HAMELINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80226363556, + 50.1833996066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "065551cc7f6bd1131469359349ae3e67c3a628ae", + "fields": { + "code_commune_insee": "77097", + "nom_de_la_commune": "CHARTRONGES", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7513681905, + 3.26256489697 + ], + "libelle_d_acheminement": "CHARTRONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26256489697, + 48.7513681905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9066186f0af8a1d8c0b997aade67e2944518d1da", + "fields": { + "code_commune_insee": "62408", + "nom_de_la_commune": "HAMES BOUCRES", + "code_postal": "62340", + "coordonnees_gps": [ + 50.8843797191, + 1.8485231785 + ], + "libelle_d_acheminement": "HAMES BOUCRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8485231785, + 50.8843797191 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cce340381cfa66693a663e45a721bf7ef06eb53", + "fields": { + "ligne_5": "CHANTEREINE", + "code_commune_insee": "77108", + "libelle_d_acheminement": "CHELLES", + "code_postal": "77500", + "nom_de_la_commune": "CHELLES", + "coordonnees_gps": [ + 48.883962967, + 2.59686448583 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59686448583, + 48.883962967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49649432422468a657a54d22bc263a335ca61761", + "fields": { + "code_commune_insee": "62415", + "nom_de_la_commune": "HAUTE AVESNES", + "code_postal": "62144", + "coordonnees_gps": [ + 50.3298562005, + 2.63592929368 + ], + "libelle_d_acheminement": "HAUTE AVESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63592929368, + 50.3298562005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91c20ad65e915d7392288b2272e0a6cf692e835c", + "fields": { + "code_commune_insee": "77111", + "nom_de_la_commune": "CHESSY", + "code_postal": "77700", + "coordonnees_gps": [ + 48.8723310998, + 2.77039964715 + ], + "libelle_d_acheminement": "CHESSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77039964715, + 48.8723310998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "779d1140e51c101c468f158df7d75af3f4c18b10", + "fields": { + "code_commune_insee": "62416", + "nom_de_la_commune": "HAUTECLOQUE", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3338971726, + 2.31705625508 + ], + "libelle_d_acheminement": "HAUTECLOQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31705625508, + 50.3338971726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a08f76d1d44ad11048d62d6be7cebe043b22a94d", + "fields": { + "code_commune_insee": "77112", + "nom_de_la_commune": "CHEVRAINVILLIERS", + "code_postal": "77760", + "coordonnees_gps": [ + 48.2459789311, + 2.60246070694 + ], + "libelle_d_acheminement": "CHEVRAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60246070694, + 48.2459789311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acc7f514607596eb02e79b635a31ca45c4109c24", + "fields": { + "code_commune_insee": "62418", + "nom_de_la_commune": "HAUTEVILLE", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2717222163, + 2.56838764568 + ], + "libelle_d_acheminement": "HAUTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56838764568, + 50.2717222163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6272055ee116b46985ec52b42151d2f4e996bd11", + "fields": { + "code_commune_insee": "77113", + "nom_de_la_commune": "CHEVRU", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7336804794, + 3.19577502632 + ], + "libelle_d_acheminement": "CHEVRU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19577502632, + 48.7336804794 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8682753839f53921a8a64dd7177f406448e3151", + "fields": { + "code_commune_insee": "62419", + "nom_de_la_commune": "HAUT LOQUIN", + "code_postal": "62850", + "coordonnees_gps": [ + 50.7379262703, + 1.96340572061 + ], + "libelle_d_acheminement": "HAUT LOQUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96340572061, + 50.7379262703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91bf2a4fa574957522a5eb5a3e8aad401fea0e0d", + "fields": { + "code_commune_insee": "77120", + "nom_de_la_commune": "COCHEREL", + "code_postal": "77440", + "coordonnees_gps": [ + 49.018408712, + 3.10665091541 + ], + "libelle_d_acheminement": "COCHEREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10665091541, + 49.018408712 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7598e6399a21423a6abd11222da8b2022a63c5ee", + "fields": { + "code_commune_insee": "62425", + "nom_de_la_commune": "HENDECOURT LES RANSART", + "code_postal": "62175", + "coordonnees_gps": [ + 50.2083901157, + 2.73142877157 + ], + "libelle_d_acheminement": "HENDECOURT LES RANSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73142877157, + 50.2083901157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cfc2a2d22f8ebcfc96c30db89b78364ab8eb998", + "fields": { + "code_commune_insee": "77121", + "nom_de_la_commune": "COLLEGIEN", + "code_postal": "77090", + "coordonnees_gps": [ + 48.827339231, + 2.67744722497 + ], + "libelle_d_acheminement": "COLLEGIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67744722497, + 48.827339231 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c06c93ef8dd95a3ade1ebfffafc27844d4a0b2ab", + "fields": { + "code_commune_insee": "62427", + "nom_de_la_commune": "HENIN BEAUMONT", + "code_postal": "62110", + "coordonnees_gps": [ + 50.4092335517, + 2.95899735168 + ], + "libelle_d_acheminement": "HENIN BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95899735168, + 50.4092335517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9103503ecd455b0b5893140cf6dff02548ee9c80", + "fields": { + "code_commune_insee": "77122", + "nom_de_la_commune": "COMBS LA VILLE", + "code_postal": "77380", + "coordonnees_gps": [ + 48.657908631, + 2.57516916269 + ], + "libelle_d_acheminement": "COMBS LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57516916269, + 48.657908631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac1afc0c5d6d525448a3e4c4d110edf9672a2f61", + "fields": { + "code_commune_insee": "62428", + "nom_de_la_commune": "HENIN SUR COJEUL", + "code_postal": "62128", + "coordonnees_gps": [ + 50.2187895959, + 2.838987557 + ], + "libelle_d_acheminement": "HENIN SUR COJEUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.838987557, + 50.2187895959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66ee8c880ab0a125d6dac18e8f071e9dc4451483", + "fields": { + "code_commune_insee": "77129", + "nom_de_la_commune": "COULOMBS EN VALOIS", + "code_postal": "77840", + "coordonnees_gps": [ + 49.0777461945, + 3.12814777064 + ], + "libelle_d_acheminement": "COULOMBS EN VALOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12814777064, + 49.0777461945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ec7cdb73d000cac5b3e1f601b846ee441f2c610", + "fields": { + "code_commune_insee": "62433", + "nom_de_la_commune": "HERICOURT", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3379712527, + 2.24874588384 + ], + "libelle_d_acheminement": "HERICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24874588384, + 50.3379712527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c15ec0911b16d49b70c57b3139c3bdc45fe3040a", + "fields": { + "code_commune_insee": "77131", + "nom_de_la_commune": "COULOMMIERS", + "code_postal": "77120", + "coordonnees_gps": [ + 48.8122991656, + 3.09124381847 + ], + "libelle_d_acheminement": "COULOMMIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09124381847, + 48.8122991656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cab5911abb1c38ab99a83c84ea7d76b0203939f", + "fields": { + "code_commune_insee": "62443", + "nom_de_la_commune": "HERSIN COUPIGNY", + "code_postal": "62530", + "coordonnees_gps": [ + 50.4455468429, + 2.64235771503 + ], + "libelle_d_acheminement": "HERSIN COUPIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64235771503, + 50.4455468429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05e0592c90b52f5994cdcb6a5e515aa82e00843a", + "fields": { + "code_commune_insee": "77132", + "nom_de_la_commune": "COUPVRAY", + "code_postal": "77700", + "coordonnees_gps": [ + 48.8855498316, + 2.79349218664 + ], + "libelle_d_acheminement": "COUPVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79349218664, + 48.8855498316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "593407e18cae493800f2594e0d25bd3d336ee432", + "fields": { + "code_commune_insee": "62448", + "nom_de_la_commune": "HESDIN L ABBE", + "code_postal": "62360", + "coordonnees_gps": [ + 50.6687608865, + 1.68795327602 + ], + "libelle_d_acheminement": "HESDIN L ABBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68795327602, + 50.6687608865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4fb8248a42b1ddd11b03f693abffeb98a2c452f", + "fields": { + "code_commune_insee": "77137", + "nom_de_la_commune": "COURTACON", + "code_postal": "77560", + "coordonnees_gps": [ + 48.7030582245, + 3.29070185635 + ], + "libelle_d_acheminement": "COURTACON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29070185635, + 48.7030582245 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87a67b909ff8474f32993d499d289ac431e81be7", + "fields": { + "code_commune_insee": "62450", + "nom_de_la_commune": "HESTRUS", + "code_postal": "62550", + "coordonnees_gps": [ + 50.4493020094, + 2.32930818602 + ], + "libelle_d_acheminement": "HESTRUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32930818602, + 50.4493020094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8f5d53fbdf0b348d95fcc1815e23afe674d33c7", + "fields": { + "code_commune_insee": "77139", + "nom_de_la_commune": "COURTRY", + "code_postal": "77181", + "coordonnees_gps": [ + 48.9167295268, + 2.60299399479 + ], + "libelle_d_acheminement": "COURTRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60299399479, + 48.9167295268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dd8e6aaa53b18fc2628e6d168a0552692eefc5f", + "fields": { + "code_commune_insee": "62465", + "nom_de_la_commune": "HUMBERCAMPS", + "code_postal": "62158", + "coordonnees_gps": [ + 50.1884753334, + 2.5745331886 + ], + "libelle_d_acheminement": "HUMBERCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5745331886, + 50.1884753334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e4685688d94037070f889b79cce53a21f9fb581", + "fields": { + "code_commune_insee": "77144", + "nom_de_la_commune": "CREVECOEUR EN BRIE", + "code_postal": "77610", + "coordonnees_gps": [ + 48.7560531013, + 2.90716174383 + ], + "libelle_d_acheminement": "CREVECOEUR EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90716174383, + 48.7560531013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bb8520166f970b77ed05f9ca9ddb3974c0a7049", + "fields": { + "code_commune_insee": "62498", + "nom_de_la_commune": "LENS", + "code_postal": "62300", + "coordonnees_gps": [ + 50.4374264148, + 2.82105851259 + ], + "libelle_d_acheminement": "LENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82105851259, + 50.4374264148 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96bef9e89c74fff21ddb10848cebe7a708aa587f", + "fields": { + "code_commune_insee": "77151", + "nom_de_la_commune": "DAGNY", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7137379393, + 3.16528278931 + ], + "libelle_d_acheminement": "DAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16528278931, + 48.7137379393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f2dbbe3fdc98771c7fe42538169480294a8fb0e", + "fields": { + "code_commune_insee": "62510", + "nom_de_la_commune": "LIEVIN", + "code_postal": "62800", + "coordonnees_gps": [ + 50.4242782538, + 2.77291885384 + ], + "libelle_d_acheminement": "LIEVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77291885384, + 50.4242782538 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5322f9f44b67468c43334c353b9f098703f6ff2", + "fields": { + "code_commune_insee": "77158", + "nom_de_la_commune": "DIANT", + "code_postal": "77940", + "coordonnees_gps": [ + 48.2914084366, + 3.00508294667 + ], + "libelle_d_acheminement": "DIANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00508294667, + 48.2914084366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98869b2fe16fdc5505c34d2ea10432970f30cb12", + "fields": { + "code_commune_insee": "62515", + "nom_de_la_commune": "LIGNY THILLOY", + "code_postal": "62450", + "coordonnees_gps": [ + 50.0798753739, + 2.82498264917 + ], + "libelle_d_acheminement": "LIGNY THILLOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82498264917, + 50.0798753739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8edb1e9ff77362c4ce2463080c842b2d875dd1c3", + "fields": { + "code_commune_insee": "77161", + "nom_de_la_commune": "DORMELLES", + "code_postal": "77130", + "coordonnees_gps": [ + 48.3134232598, + 2.88922235899 + ], + "libelle_d_acheminement": "DORMELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88922235899, + 48.3134232598 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfb40b1e09a5531bf063f7b195a129acdaa4d0f8", + "fields": { + "code_commune_insee": "62539", + "nom_de_la_commune": "MAISNIL", + "code_postal": "62130", + "coordonnees_gps": [ + 50.346716103, + 2.3577236191 + ], + "libelle_d_acheminement": "MAISNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3577236191, + 50.346716103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea87aa4ea56dbdbc9e59500a9079125ceb04d6aa", + "fields": { + "code_commune_insee": "77162", + "nom_de_la_commune": "DOUE", + "code_postal": "77510", + "coordonnees_gps": [ + 48.8741885092, + 3.16866538341 + ], + "libelle_d_acheminement": "DOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16866538341, + 48.8741885092 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d87428732dc51f1145826552be7437b4bd468d9d", + "fields": { + "code_commune_insee": "62549", + "nom_de_la_commune": "MARCONNE", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3661822096, + 2.03231054119 + ], + "libelle_d_acheminement": "MARCONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03231054119, + 50.3661822096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1151a0a8acf0bd625ebeff5cbec2a37f12dc6bf2", + "fields": { + "code_commune_insee": "77169", + "nom_de_la_commune": "EMERAINVILLE", + "code_postal": "77184", + "coordonnees_gps": [ + 48.8197762376, + 2.60897006725 + ], + "libelle_d_acheminement": "EMERAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60897006725, + 48.8197762376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d769f5b14bf25541be83614d31a608660ad3bf6e", + "fields": { + "code_commune_insee": "62553", + "nom_de_la_commune": "MAREST", + "code_postal": "62550", + "coordonnees_gps": [ + 50.4670398544, + 2.41815861804 + ], + "libelle_d_acheminement": "MAREST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41815861804, + 50.4670398544 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2376f3765b93bf70eb1b80c666a15bb685cdda26", + "fields": { + "code_commune_insee": "77178", + "nom_de_la_commune": "FAY LES NEMOURS", + "code_postal": "77167", + "coordonnees_gps": [ + 48.2276874711, + 2.66412171118 + ], + "libelle_d_acheminement": "FAY LES NEMOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66412171118, + 48.2276874711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce5b1abc381678973b9246356318fd81132aa577", + "fields": { + "code_commune_insee": "62563", + "nom_de_la_commune": "MAZINGARBE", + "code_postal": "62670", + "coordonnees_gps": [ + 50.4684201259, + 2.72581419392 + ], + "libelle_d_acheminement": "MAZINGARBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72581419392, + 50.4684201259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a307f203e8f825c4c57e3c5e306c1843f1a8fe0", + "fields": { + "code_commune_insee": "77192", + "nom_de_la_commune": "FONTENAY TRESIGNY", + "code_postal": "77610", + "coordonnees_gps": [ + 48.697973344, + 2.86231363712 + ], + "libelle_d_acheminement": "FONTENAY TRESIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86231363712, + 48.697973344 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f406f94ef0c5fab320f165e999b1d0a3ab725db", + "fields": { + "code_commune_insee": "62564", + "nom_de_la_commune": "MAZINGHEM", + "code_postal": "62120", + "coordonnees_gps": [ + 50.6049243005, + 2.41314605386 + ], + "libelle_d_acheminement": "MAZINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41314605386, + 50.6049243005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d116477023486c03b8584ed03393cac2494512b", + "fields": { + "code_commune_insee": "77194", + "nom_de_la_commune": "FORGES", + "code_postal": "77130", + "coordonnees_gps": [ + 48.4219059797, + 2.94877394582 + ], + "libelle_d_acheminement": "FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94877394582, + 48.4219059797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d194dffa461eae80c5851cdd33e4e9b1afa74f9", + "fields": { + "code_commune_insee": "62568", + "nom_de_la_commune": "MERCATEL", + "code_postal": "62217", + "coordonnees_gps": [ + 50.2345646876, + 2.78842840897 + ], + "libelle_d_acheminement": "MERCATEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78842840897, + 50.2345646876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13a8efbff6622c23ece57fb384793fb03f974be9", + "fields": { + "code_commune_insee": "77200", + "nom_de_la_commune": "GARENTREVILLE", + "code_postal": "77890", + "coordonnees_gps": [ + 48.2339884396, + 2.55980121131 + ], + "libelle_d_acheminement": "GARENTREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55980121131, + 48.2339884396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1f54c0da147cf85c1be8659af977c49baa50515", + "fields": { + "code_commune_insee": "62577", + "nom_de_la_commune": "MONCHEL SUR CANCHE", + "code_postal": "62270", + "coordonnees_gps": [ + 50.3037937856, + 2.21852869181 + ], + "libelle_d_acheminement": "MONCHEL SUR CANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21852869181, + 50.3037937856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f6ba0f5ef3534a56926bb9793ac428364769538", + "fields": { + "code_commune_insee": "77205", + "nom_de_la_commune": "GESVRES LE CHAPITRE", + "code_postal": "77165", + "coordonnees_gps": [ + 49.0358954042, + 2.84316991013 + ], + "libelle_d_acheminement": "GESVRES LE CHAPITRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84316991013, + 49.0358954042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d59c2b4c146746005c5ae50df18091defd28a84", + "fields": { + "code_commune_insee": "62582", + "nom_de_la_commune": "MONCHY LE PREUX", + "code_postal": "62118", + "coordonnees_gps": [ + 50.2680152947, + 2.89515601798 + ], + "libelle_d_acheminement": "MONCHY LE PREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89515601798, + 50.2680152947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66f4e3fa9b9eb601e16bcc5fb0b7e53b0b5f2c6c", + "fields": { + "code_commune_insee": "77207", + "nom_de_la_commune": "GIRONVILLE", + "code_postal": "77890", + "coordonnees_gps": [ + 48.1626911918, + 2.53341548743 + ], + "libelle_d_acheminement": "GIRONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53341548743, + 48.1626911918 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09936b92168970b35adde14f21e9e42265ea2cd1", + "fields": { + "code_commune_insee": "62590", + "nom_de_la_commune": "MONTS EN TERNOIS", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3211000612, + 2.38646498424 + ], + "libelle_d_acheminement": "MONTS EN TERNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38646498424, + 50.3211000612 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d86e681ce77f2c1bfec7216661130b68abff4000", + "fields": { + "code_commune_insee": "77209", + "nom_de_la_commune": "GOUVERNES", + "code_postal": "77400", + "coordonnees_gps": [ + 48.8584691866, + 2.69464360484 + ], + "libelle_d_acheminement": "GOUVERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.69464360484, + 48.8584691866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5b75fe2085117b613cc6b5fa51f5b600fa8d636", + "fields": { + "code_commune_insee": "62601", + "nom_de_la_commune": "NEDONCHEL", + "code_postal": "62550", + "coordonnees_gps": [ + 50.5271339963, + 2.35474825526 + ], + "libelle_d_acheminement": "NEDONCHEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35474825526, + 50.5271339963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ddbff031850ce43d8164aa940a9cd26813a1a1e", + "fields": { + "code_commune_insee": "77216", + "nom_de_la_commune": "GREZ SUR LOING", + "code_postal": "77880", + "coordonnees_gps": [ + 48.3071221634, + 2.67742341915 + ], + "libelle_d_acheminement": "GREZ SUR LOING" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67742341915, + 48.3071221634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18dc8504a4ee0d70eca4371fec72fa785c635170", + "fields": { + "code_commune_insee": "62611", + "nom_de_la_commune": "NEUVILLE VITASSE", + "code_postal": "62217", + "coordonnees_gps": [ + 50.2476254863, + 2.81958872203 + ], + "libelle_d_acheminement": "NEUVILLE VITASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81958872203, + 50.2476254863 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79bce5a8290452f88f13570baa0339a3438f78dc", + "fields": { + "code_commune_insee": "77220", + "nom_de_la_commune": "GUERCHEVILLE", + "code_postal": "77760", + "coordonnees_gps": [ + 48.2597174707, + 2.55771818167 + ], + "libelle_d_acheminement": "GUERCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55771818167, + 48.2597174707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "653d54ce86768e2b3e8b626d84e5aa74a8fedc77", + "fields": { + "code_commune_insee": "62612", + "nom_de_la_commune": "NEUVIREUIL", + "code_postal": "62580", + "coordonnees_gps": [ + 50.3531492484, + 2.91444913531 + ], + "libelle_d_acheminement": "NEUVIREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91444913531, + 50.3531492484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d71262ec1076c35e309a72216ceb22781e479baa", + "fields": { + "code_commune_insee": "77221", + "nom_de_la_commune": "GUERMANTES", + "code_postal": "77600", + "coordonnees_gps": [ + 48.8514207654, + 2.71246565476 + ], + "libelle_d_acheminement": "GUERMANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71246565476, + 48.8514207654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39be4192f3edd0c71ca1fa83405d57a8212fa987", + "fields": { + "code_commune_insee": "62616", + "nom_de_la_commune": "NOEUX LES AUXI", + "code_postal": "62390", + "coordonnees_gps": [ + 50.2408362056, + 2.18178131298 + ], + "libelle_d_acheminement": "NOEUX LES AUXI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18178131298, + 50.2408362056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bac02fdd44390d288b6aaed433b57fe3df013c06", + "fields": { + "code_commune_insee": "77222", + "nom_de_la_commune": "GUIGNES", + "code_postal": "77390", + "coordonnees_gps": [ + 48.6358224167, + 2.80042109731 + ], + "libelle_d_acheminement": "GUIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80042109731, + 48.6358224167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a62c15517041485210d38c75a7c6fcb28f43f89f", + "fields": { + "code_commune_insee": "62620", + "nom_de_la_commune": "NORRENT FONTES", + "code_postal": "62120", + "coordonnees_gps": [ + 50.5874971634, + 2.40937405829 + ], + "libelle_d_acheminement": "NORRENT FONTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40937405829, + 50.5874971634 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b23641c4cdc6389f96fbe86f378718bafd419034", + "fields": { + "code_commune_insee": "77224", + "nom_de_la_commune": "HAUTEFEUILLE", + "code_postal": "77515", + "coordonnees_gps": [ + 48.7665435966, + 2.96358737497 + ], + "libelle_d_acheminement": "HAUTEFEUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96358737497, + 48.7665435966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a42f48fae69855383f3a8ecc37bedbe6c6017694", + "fields": { + "code_commune_insee": "62622", + "nom_de_la_commune": "NORT LEULINGHEM", + "code_postal": "62890", + "coordonnees_gps": [ + 50.7959979295, + 2.08880938982 + ], + "libelle_d_acheminement": "NORT LEULINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08880938982, + 50.7959979295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b6edc82cc1f32674b3ab4a285b43c91b8bcf44c", + "fields": { + "code_commune_insee": "77225", + "nom_de_la_commune": "LA HAUTE MAISON", + "code_postal": "77580", + "coordonnees_gps": [ + 48.8841264989, + 3.00569184171 + ], + "libelle_d_acheminement": "LA HAUTE MAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00569184171, + 48.8841264989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ab08f8ec24ac404a222e8e8b97e307bb8bb911e", + "fields": { + "code_commune_insee": "62625", + "nom_de_la_commune": "NOYELLES LES HUMIERES", + "code_postal": "62770", + "coordonnees_gps": [ + 50.3754237505, + 2.17737764186 + ], + "libelle_d_acheminement": "NOYELLES LES HUMIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17737764186, + 50.3754237505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4992325b434e6613b790beecd53e1046adeda45", + "fields": { + "code_commune_insee": "77231", + "nom_de_la_commune": "ISLES LES MELDEUSES", + "code_postal": "77440", + "coordonnees_gps": [ + 48.9977413131, + 3.01254542771 + ], + "libelle_d_acheminement": "ISLES LES MELDEUSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01254542771, + 48.9977413131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47eebe8fa2ff9dbb220fb253d74b3a9827e0b24d", + "fields": { + "code_commune_insee": "62631", + "nom_de_la_commune": "NUNCQ HAUTECOTE", + "code_postal": "62270", + "coordonnees_gps": [ + 50.3077191679, + 2.28678904322 + ], + "libelle_d_acheminement": "NUNCQ HAUTECOTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28678904322, + 50.3077191679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7525f031f745e0dfece37bbc7e4ec80cfb7e1975", + "fields": { + "code_commune_insee": "77247", + "nom_de_la_commune": "LESCHEROLLES", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7608681529, + 3.35044757724 + ], + "libelle_d_acheminement": "LESCHEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35044757724, + 48.7608681529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7dda0e58804a7b08112efc52e4db6c2342076ab", + "fields": { + "code_commune_insee": "62634", + "nom_de_la_commune": "OFFEKERQUE", + "code_postal": "62370", + "coordonnees_gps": [ + 50.9314630388, + 2.02026099219 + ], + "libelle_d_acheminement": "OFFEKERQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02026099219, + 50.9314630388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "642888232dd12831d7380487f00fdbb4178ee62c", + "fields": { + "code_commune_insee": "77249", + "nom_de_la_commune": "LESIGNY", + "code_postal": "77150", + "coordonnees_gps": [ + 48.7497182303, + 2.61583775274 + ], + "libelle_d_acheminement": "LESIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61583775274, + 48.7497182303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d04110b4483cf5e44dbbb44fdefd8f2a52b21aca", + "fields": { + "code_commune_insee": "62638", + "nom_de_la_commune": "OISY LE VERGER", + "code_postal": "62860", + "coordonnees_gps": [ + 50.2504114011, + 3.12224592091 + ], + "libelle_d_acheminement": "OISY LE VERGER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12224592091, + 50.2504114011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4c205f8d12cd0eabc6740b6be4d25cfa47ea711", + "fields": { + "code_commune_insee": "77250", + "nom_de_la_commune": "LEUDON EN BRIE", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7304236391, + 3.2680908114 + ], + "libelle_d_acheminement": "LEUDON EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2680908114, + 48.7304236391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceba20b8eaa2acda7f27aec808dd6405672addc6", + "fields": { + "code_commune_insee": "62642", + "nom_de_la_commune": "OURTON", + "code_postal": "62460", + "coordonnees_gps": [ + 50.4555544554, + 2.47132859309 + ], + "libelle_d_acheminement": "OURTON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47132859309, + 50.4555544554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b53bb476eae0c54c99c79c03d955a6f95d901cbc", + "fields": { + "code_commune_insee": "77255", + "nom_de_la_commune": "LIVRY SUR SEINE", + "code_postal": "77000", + "coordonnees_gps": [ + 48.5051016281, + 2.68647821336 + ], + "libelle_d_acheminement": "LIVRY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68647821336, + 48.5051016281 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f917d38cf2d67233b8a7115c37618380ee2d1280", + "fields": { + "code_commune_insee": "62650", + "nom_de_la_commune": "PELVES", + "code_postal": "62118", + "coordonnees_gps": [ + 50.2872121477, + 2.91797931604 + ], + "libelle_d_acheminement": "PELVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91797931604, + 50.2872121477 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3aa6f59cef6f341d17dfd9a1f83c711c59973108", + "fields": { + "code_commune_insee": "77256", + "nom_de_la_commune": "LIZINES", + "code_postal": "77650", + "coordonnees_gps": [ + 48.5280718067, + 3.16532874131 + ], + "libelle_d_acheminement": "LIZINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16532874131, + 48.5280718067 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d048cde5703b844617ad08745e506d1f995d462", + "fields": { + "code_commune_insee": "62654", + "nom_de_la_commune": "PEUPLINGUES", + "code_postal": "62231", + "coordonnees_gps": [ + 50.9137738583, + 1.75951398538 + ], + "libelle_d_acheminement": "PEUPLINGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75951398538, + 50.9137738583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fea5ce1251a4d572f3b55a2eeab365ff05e07076", + "fields": { + "code_commune_insee": "77260", + "nom_de_la_commune": "LONGUEVILLE", + "code_postal": "77650", + "coordonnees_gps": [ + 48.5144915649, + 3.23853264046 + ], + "libelle_d_acheminement": "LONGUEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853264046, + 48.5144915649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc720048137b4872bdc55defeef81b2611a5c55f", + "fields": { + "code_commune_insee": "62658", + "nom_de_la_commune": "PITTEFAUX", + "code_postal": "62126", + "coordonnees_gps": [ + 50.7620533619, + 1.68493219669 + ], + "libelle_d_acheminement": "PITTEFAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68493219669, + 50.7620533619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30706c8e09bbcaee4c892f04e21946787a7ca4c8", + "fields": { + "code_commune_insee": "77263", + "nom_de_la_commune": "LUISETAINES", + "code_postal": "77520", + "coordonnees_gps": [ + 48.4610681499, + 3.18563257802 + ], + "libelle_d_acheminement": "LUISETAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18563257802, + 48.4610681499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "939c973196ad223b08379bbc20f10d6a98462932", + "fields": { + "ligne_5": "NESLES LA GILBERDE", + "code_commune_insee": "77264", + "libelle_d_acheminement": "LUMIGNY NESLES ORMEAUX", + "code_postal": "77540", + "nom_de_la_commune": "LUMIGNY NESLES ORMEAUX", + "coordonnees_gps": [ + 48.719582466, + 2.95371291045 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95371291045, + 48.719582466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9f2e453ab7357fc28429d617cc944a8d50b52b2", + "fields": { + "code_commune_insee": "77266", + "nom_de_la_commune": "MACHAULT", + "code_postal": "77133", + "coordonnees_gps": [ + 48.445996968, + 2.84112295871 + ], + "libelle_d_acheminement": "MACHAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84112295871, + 48.445996968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bdd2b13ae36d05a550f3fdf8efcf3c99419ade7", + "fields": { + "code_commune_insee": "77270", + "nom_de_la_commune": "MAISONCELLES EN BRIE", + "code_postal": "77580", + "coordonnees_gps": [ + 48.858937632, + 2.99380875199 + ], + "libelle_d_acheminement": "MAISONCELLES EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99380875199, + 48.858937632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "783fe3ec7b776b0b2323dbb57dc2b83d84f561e4", + "fields": { + "code_commune_insee": "77281", + "nom_de_la_commune": "MAUPERTHUIS", + "code_postal": "77120", + "coordonnees_gps": [ + 48.7700152942, + 3.03854436652 + ], + "libelle_d_acheminement": "MAUPERTHUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03854436652, + 48.7700152942 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec2645b77746a759ca68a0568fbf5fc235a0cf5a", + "fields": { + "code_commune_insee": "77291", + "nom_de_la_commune": "LE MESNIL AMELOT", + "code_postal": "77990", + "coordonnees_gps": [ + 49.0161420137, + 2.59606893654 + ], + "libelle_d_acheminement": "LE MESNIL AMELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59606893654, + 49.0161420137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b9555846b7a1bf1e2ecb13093dd1a5154a00979", + "fields": { + "code_commune_insee": "77307", + "nom_de_la_commune": "MONTEVRAIN", + "code_postal": "77144", + "coordonnees_gps": [ + 48.8682918937, + 2.74959681841 + ], + "libelle_d_acheminement": "MONTEVRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74959681841, + 48.8682918937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9453d394bbf59b16fa2e9c2d369e1e478dcd669a", + "fields": { + "ligne_5": "EPISY", + "code_commune_insee": "77316", + "libelle_d_acheminement": "MORET LOING ET ORVANNE", + "code_postal": "77250", + "nom_de_la_commune": "MORET LOING ET ORVANNE", + "coordonnees_gps": [ + 48.365092921, + 2.81172585849 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81172585849, + 48.365092921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93f3e5b0b0e2deab39ada1242d0e7b3a29ec24ed", + "fields": { + "ligne_5": "MONTARLOT", + "code_commune_insee": "77316", + "libelle_d_acheminement": "MORET LOING ET ORVANNE", + "code_postal": "77250", + "nom_de_la_commune": "MORET LOING ET ORVANNE", + "coordonnees_gps": [ + 48.365092921, + 2.81172585849 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81172585849, + 48.365092921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59bd61b09e958e38a1b52c574eaa85606cbd0578", + "fields": { + "code_commune_insee": "77318", + "nom_de_la_commune": "MORTCERF", + "code_postal": "77163", + "coordonnees_gps": [ + 48.7828938577, + 2.90546822956 + ], + "libelle_d_acheminement": "MORTCERF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90546822956, + 48.7828938577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6510d1fd9a5749fd567b288caca64770b66539f3", + "fields": { + "code_commune_insee": "77328", + "nom_de_la_commune": "NANTEAU SUR ESSONNE", + "code_postal": "77760", + "coordonnees_gps": [ + 48.3201309037, + 2.42677043892 + ], + "libelle_d_acheminement": "NANTEAU SUR ESSONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42677043892, + 48.3201309037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21f1afc64ffca8ac675c2b873f4bccec7aec43e9", + "fields": { + "code_commune_insee": "77333", + "nom_de_la_commune": "NEMOURS", + "code_postal": "77140", + "coordonnees_gps": [ + 48.2596067909, + 2.71107993087 + ], + "libelle_d_acheminement": "NEMOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71107993087, + 48.2596067909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "706e60eae163b70499b5e8965092928769de6b02", + "fields": { + "code_commune_insee": "77337", + "nom_de_la_commune": "NOISIEL", + "code_postal": "77186", + "coordonnees_gps": [ + 48.8460926469, + 2.61997100426 + ], + "libelle_d_acheminement": "NOISIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61997100426, + 48.8460926469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58b4b38ee39a53925132c3c6c800b5055b971b8c", + "fields": { + "code_commune_insee": "77354", + "nom_de_la_commune": "PAMFOU", + "code_postal": "77830", + "coordonnees_gps": [ + 48.4686137503, + 2.86415645196 + ], + "libelle_d_acheminement": "PAMFOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86415645196, + 48.4686137503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2eca6d7f7a5960149faf7857d6a49a4187bf3ee8", + "fields": { + "code_commune_insee": "77356", + "nom_de_la_commune": "PASSY SUR SEINE", + "code_postal": "77480", + "coordonnees_gps": [ + 48.4286806122, + 3.34584614582 + ], + "libelle_d_acheminement": "PASSY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34584614582, + 48.4286806122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05b0e6a5816c807131808bcf3021fa74182405bd", + "fields": { + "code_commune_insee": "77367", + "nom_de_la_commune": "LE PLESSIS PLACY", + "code_postal": "77440", + "coordonnees_gps": [ + 49.0533468836, + 2.98533936874 + ], + "libelle_d_acheminement": "LE PLESSIS PLACY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98533936874, + 49.0533468836 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8e3502a312e269b31197d4946a5e0f2aa13fdc0", + "fields": { + "code_commune_insee": "77370", + "nom_de_la_commune": "POLIGNY", + "code_postal": "77167", + "coordonnees_gps": [ + 48.2336785458, + 2.7563432153 + ], + "libelle_d_acheminement": "POLIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7563432153, + 48.2336785458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b9d8408f6e7ecdfc6609b45a10a6647aee3383f", + "fields": { + "code_commune_insee": "77386", + "nom_de_la_commune": "RECLOSES", + "code_postal": "77760", + "coordonnees_gps": [ + 48.3397926462, + 2.64268589454 + ], + "libelle_d_acheminement": "RECLOSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.64268589454, + 48.3397926462 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc5f28d34e7ea52cdebd6f176f0536076c668f03", + "fields": { + "code_commune_insee": "77387", + "nom_de_la_commune": "REMAUVILLE", + "code_postal": "77710", + "coordonnees_gps": [ + 48.2205966192, + 2.82537192194 + ], + "libelle_d_acheminement": "REMAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82537192194, + 48.2205966192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "810b50871166ce610ff8719469ce9aa33cd12c7e", + "fields": { + "code_commune_insee": "77388", + "nom_de_la_commune": "REUIL EN BRIE", + "code_postal": "77260", + "coordonnees_gps": [ + 48.9565680166, + 3.16343930327 + ], + "libelle_d_acheminement": "REUIL EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16343930327, + 48.9565680166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "404ed148512732263b9928b904b7d72f631e38a9", + "fields": { + "code_commune_insee": "77402", + "nom_de_la_commune": "ST BARTHELEMY", + "code_postal": "77320", + "coordonnees_gps": [ + 48.8198934361, + 3.364501575 + ], + "libelle_d_acheminement": "ST BARTHELEMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.364501575, + 48.8198934361 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a96a0ed0e3ddaf714f9350d6238f4f6669ee821e", + "fields": { + "ligne_5": "PONTHIERRY", + "code_commune_insee": "77407", + "libelle_d_acheminement": "ST FARGEAU PONTHIERRY", + "code_postal": "77310", + "nom_de_la_commune": "ST FARGEAU PONTHIERRY", + "coordonnees_gps": [ + 48.5390914714, + 2.52499710746 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52499710746, + 48.5390914714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ee35ef069625cf881d01cef1f0bf7dd3bebedfd", + "fields": { + "code_commune_insee": "77411", + "nom_de_la_commune": "ST GERMAIN SOUS DOUE", + "code_postal": "77169", + "coordonnees_gps": [ + 48.8511027251, + 3.13894203561 + ], + "libelle_d_acheminement": "ST GERMAIN SOUS DOUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13894203561, + 48.8511027251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "77174a9db25d13a048e9825af4c96c160559918d", + "fields": { + "code_commune_insee": "77418", + "nom_de_la_commune": "ST LOUP DE NAUD", + "code_postal": "77650", + "coordonnees_gps": [ + 48.5369790408, + 3.21790168625 + ], + "libelle_d_acheminement": "ST LOUP DE NAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21790168625, + 48.5369790408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2d4b9426a7f193cad3f92fb69108256422e0c44", + "fields": { + "code_commune_insee": "77421", + "nom_de_la_commune": "ST MARS VIEUX MAISONS", + "code_postal": "77320", + "coordonnees_gps": [ + 48.7382088381, + 3.3197504668 + ], + "libelle_d_acheminement": "ST MARS VIEUX MAISONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3197504668, + 48.7382088381 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a0c7a9682e6d06494b5c8a6b37dc431efeaebfb", + "fields": { + "code_commune_insee": "77427", + "nom_de_la_commune": "ST MESMES", + "code_postal": "77410", + "coordonnees_gps": [ + 48.9856128069, + 2.71476494573 + ], + "libelle_d_acheminement": "ST MESMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71476494573, + 48.9856128069 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6155513be1f9f3c6d32912982f110e34ce02fc0e", + "fields": { + "code_commune_insee": "77429", + "nom_de_la_commune": "ST OUEN SUR MORIN", + "code_postal": "77750", + "coordonnees_gps": [ + 48.9068261671, + 3.20190542412 + ], + "libelle_d_acheminement": "ST OUEN SUR MORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20190542412, + 48.9068261671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44b467c2498e6106c89736885edfc343158cb0a8", + "fields": { + "code_commune_insee": "77447", + "nom_de_la_commune": "SEINE PORT", + "code_postal": "77240", + "coordonnees_gps": [ + 48.5514696661, + 2.55439654626 + ], + "libelle_d_acheminement": "SEINE PORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55439654626, + 48.5514696661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bb663ad6b604db2a3868c5818491c9eff9faf34a", + "fields": { + "code_commune_insee": "77454", + "nom_de_la_commune": "SOGNOLLES EN MONTOIS", + "code_postal": "77520", + "coordonnees_gps": [ + 48.5188148305, + 3.15220326867 + ], + "libelle_d_acheminement": "SOGNOLLES EN MONTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.15220326867, + 48.5188148305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86c38dce00be2d853647b510aa5e4f082165f255", + "fields": { + "code_commune_insee": "77461", + "nom_de_la_commune": "THENISY", + "code_postal": "77520", + "coordonnees_gps": [ + 48.4916945564, + 3.17799318925 + ], + "libelle_d_acheminement": "THENISY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17799318925, + 48.4916945564 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01e5f2edd3b36a7f364cad77664a14fc3c0446d8", + "fields": { + "code_commune_insee": "77462", + "nom_de_la_commune": "THIEUX", + "code_postal": "77230", + "coordonnees_gps": [ + 49.0091475315, + 2.66309885608 + ], + "libelle_d_acheminement": "THIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66309885608, + 49.0091475315 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fdac506048c251abc8acc908efc20a602e60dd63", + "fields": { + "code_commune_insee": "77471", + "nom_de_la_commune": "TOUSSON", + "code_postal": "77123", + "coordonnees_gps": [ + 48.3433486346, + 2.45792608191 + ], + "libelle_d_acheminement": "TOUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45792608191, + 48.3433486346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce26027ecaf3315dcb071b6316bfad5a851b04e7", + "fields": { + "code_commune_insee": "77477", + "nom_de_la_commune": "URY", + "code_postal": "77760", + "coordonnees_gps": [ + 48.3408766133, + 2.60035520757 + ], + "libelle_d_acheminement": "URY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60035520757, + 48.3408766133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3362f16abe64f7c0e4123859ccd6a16db1f2a3f", + "fields": { + "code_commune_insee": "77480", + "nom_de_la_commune": "VALENCE EN BRIE", + "code_postal": "77830", + "coordonnees_gps": [ + 48.4462252242, + 2.89307139548 + ], + "libelle_d_acheminement": "VALENCE EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89307139548, + 48.4462252242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "584d35db1e166b4914caea7899e3ded5cbc387bd", + "fields": { + "code_commune_insee": "77495", + "nom_de_la_commune": "VERT ST DENIS", + "code_postal": "77240", + "coordonnees_gps": [ + 48.5711806547, + 2.62717330981 + ], + "libelle_d_acheminement": "VERT ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62717330981, + 48.5711806547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34a6ad469ee3ffd19248955569ff59221c58b56f", + "fields": { + "code_commune_insee": "77506", + "nom_de_la_commune": "VILLEMER", + "code_postal": "77250", + "coordonnees_gps": [ + 48.303657213, + 2.82605774417 + ], + "libelle_d_acheminement": "VILLEMER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82605774417, + 48.303657213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a517667d34a8dd451cd06e97cdc5c635af852f4", + "fields": { + "code_commune_insee": "77508", + "nom_de_la_commune": "VILLENEUVE LE COMTE", + "code_postal": "77174", + "coordonnees_gps": [ + 48.8115357459, + 2.83836128857 + ], + "libelle_d_acheminement": "VILLENEUVE LE COMTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83836128857, + 48.8115357459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfb3a5b2ff47a1170837957537bdb42c53c28031", + "fields": { + "ligne_5": "MONTJAY LA TOUR", + "code_commune_insee": "77517", + "libelle_d_acheminement": "VILLEVAUDE", + "code_postal": "77410", + "nom_de_la_commune": "VILLEVAUDE", + "coordonnees_gps": [ + 48.9117801079, + 2.66224807334 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66224807334, + 48.9117801079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "507c61626aae12940e8142036eef087d341caab7", + "fields": { + "code_commune_insee": "77518", + "nom_de_la_commune": "VILLIERS EN BIERE", + "code_postal": "77190", + "coordonnees_gps": [ + 48.495422077, + 2.60034178878 + ], + "libelle_d_acheminement": "VILLIERS EN BIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60034178878, + 48.495422077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "392c6a2568d485e7bbe88f6d065f7161ec3e3ca3", + "fields": { + "code_commune_insee": "77526", + "nom_de_la_commune": "VINCY MANOEUVRE", + "code_postal": "77139", + "coordonnees_gps": [ + 49.0760096587, + 2.95813750524 + ], + "libelle_d_acheminement": "VINCY MANOEUVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95813750524, + 49.0760096587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9aeb491354e75bbb761360c4d54a1f5cc4bf22e5", + "fields": { + "code_commune_insee": "77527", + "nom_de_la_commune": "VOINSLES", + "code_postal": "77540", + "coordonnees_gps": [ + 48.6812171201, + 3.01742252986 + ], + "libelle_d_acheminement": "VOINSLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01742252986, + 48.6812171201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "516bcda1371df183dbfa8dbb771b5efc75560d83", + "fields": { + "code_commune_insee": "77529", + "nom_de_la_commune": "VOULANGIS", + "code_postal": "77580", + "coordonnees_gps": [ + 48.8403121801, + 2.88971628574 + ], + "libelle_d_acheminement": "VOULANGIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88971628574, + 48.8403121801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2432d4d2dba2357c382dd5cdb4d753a8e2c3f16b", + "fields": { + "code_commune_insee": "77533", + "nom_de_la_commune": "VULAINES SUR SEINE", + "code_postal": "77870", + "coordonnees_gps": [ + 48.4316360223, + 2.7693476397 + ], + "libelle_d_acheminement": "VULAINES SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7693476397, + 48.4316360223 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac3102671b4282762ef4bb39aa0ff8f1222bcca0", + "fields": { + "code_commune_insee": "77534", + "nom_de_la_commune": "YEBLES", + "code_postal": "77390", + "coordonnees_gps": [ + 48.6376060545, + 2.7689913079 + ], + "libelle_d_acheminement": "YEBLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7689913079, + 48.6376060545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "098a1ab0353f6c063b23dbda514b4d769664bfea", + "fields": { + "code_commune_insee": "78005", + "nom_de_la_commune": "ACHERES", + "code_postal": "78260", + "coordonnees_gps": [ + 48.9717990892, + 2.09003871824 + ], + "libelle_d_acheminement": "ACHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09003871824, + 48.9717990892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "352e7eb64c9086445365e7ada1ca69518468e130", + "fields": { + "code_commune_insee": "78009", + "nom_de_la_commune": "ALLAINVILLE", + "code_postal": "78660", + "coordonnees_gps": [ + 48.4678049422, + 1.90248656235 + ], + "libelle_d_acheminement": "ALLAINVILLE AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90248656235, + 48.4678049422 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ef556644932975b88569fc0402e27b58e691d85", + "fields": { + "code_commune_insee": "78050", + "nom_de_la_commune": "BAZOCHES SUR GUYONNE", + "code_postal": "78490", + "coordonnees_gps": [ + 48.7738475764, + 1.85242453244 + ], + "libelle_d_acheminement": "BAZOCHES SUR GUYONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85242453244, + 48.7738475764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3758180ef30ae674c1ad63ee83eb4c8391b103fa", + "fields": { + "code_commune_insee": "78053", + "nom_de_la_commune": "BEHOUST", + "code_postal": "78910", + "coordonnees_gps": [ + 48.8324001775, + 1.72423748749 + ], + "libelle_d_acheminement": "BEHOUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72423748749, + 48.8324001775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "409b8baa4b106a7031c7875cb742203e34e6b104", + "fields": { + "ligne_5": "VAL DES QUATRE PIGNONS", + "code_commune_insee": "78062", + "libelle_d_acheminement": "BEYNES", + "code_postal": "78650", + "nom_de_la_commune": "BEYNES", + "coordonnees_gps": [ + 48.854444414, + 1.86989017513 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86989017513, + 48.854444414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82294ba42084b32c36364c04a84021cfca0c00cb", + "fields": { + "code_commune_insee": "78073", + "nom_de_la_commune": "BOIS D ARCY", + "code_postal": "78390", + "coordonnees_gps": [ + 48.8044185716, + 2.01911294303 + ], + "libelle_d_acheminement": "BOIS D ARCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01911294303, + 48.8044185716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a29c17c604dead2a5fa95b9628bef6efcea70967", + "fields": { + "code_commune_insee": "78082", + "nom_de_la_commune": "BOISSY MAUVOISIN", + "code_postal": "78200", + "coordonnees_gps": [ + 48.9658595506, + 1.58159815753 + ], + "libelle_d_acheminement": "BOISSY MAUVOISIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.58159815753, + 48.9658595506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74526b00b1ca082b70f0400e6d66771f00d88f17", + "fields": { + "code_commune_insee": "78092", + "nom_de_la_commune": "BOUGIVAL", + "code_postal": "78380", + "coordonnees_gps": [ + 48.8635986439, + 2.13760707765 + ], + "libelle_d_acheminement": "BOUGIVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13760707765, + 48.8635986439 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d62b86274fa55df5aba6314895efe9d76a008a6d", + "fields": { + "code_commune_insee": "78104", + "nom_de_la_commune": "BREUIL BOIS ROBERT", + "code_postal": "78930", + "coordonnees_gps": [ + 48.9436009662, + 1.71471708447 + ], + "libelle_d_acheminement": "BREUIL BOIS ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71471708447, + 48.9436009662 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c4f5f937de905f2967b1ac25ed01a18b805b30e", + "fields": { + "code_commune_insee": "78123", + "nom_de_la_commune": "CARRIERES SOUS POISSY", + "code_postal": "78955", + "coordonnees_gps": [ + 48.9455638989, + 2.02913706544 + ], + "libelle_d_acheminement": "CARRIERES SOUS POISSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02913706544, + 48.9455638989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e27b08bcadf47e3c3afd1ff601989b40fd2d63b1", + "fields": { + "code_commune_insee": "78125", + "nom_de_la_commune": "LA CELLE LES BORDES", + "code_postal": "78720", + "coordonnees_gps": [ + 48.6416446846, + 1.94488436228 + ], + "libelle_d_acheminement": "LA CELLE LES BORDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94488436228, + 48.6416446846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ce150e810da5403ffab143a0c103bef18ca3221", + "fields": { + "code_commune_insee": "78138", + "nom_de_la_commune": "CHANTELOUP LES VIGNES", + "code_postal": "78570", + "coordonnees_gps": [ + 48.9759961298, + 2.03199829577 + ], + "libelle_d_acheminement": "CHANTELOUP LES VIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03199829577, + 48.9759961298 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17370a4655b086e1781819c7952bb6d7547e3f35", + "fields": { + "code_commune_insee": "78147", + "nom_de_la_commune": "CHAUFOUR LES BONNIERES", + "code_postal": "78270", + "coordonnees_gps": [ + 49.0158393703, + 1.48536401441 + ], + "libelle_d_acheminement": "CHAUFOUR LES BONNIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48536401441, + 49.0158393703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "274c76054ccd1db916fffc9ae928acd6b100d6aa", + "fields": { + "code_commune_insee": "62663", + "nom_de_la_commune": "POMMERA", + "code_postal": "62760", + "coordonnees_gps": [ + 50.1674967, + 2.44251787314 + ], + "libelle_d_acheminement": "POMMERA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44251787314, + 50.1674967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a7facc7bec880f28a768921daccae097cd30f8a", + "fields": { + "code_commune_insee": "62666", + "nom_de_la_commune": "PONT A VENDIN", + "code_postal": "62880", + "coordonnees_gps": [ + 50.4760049841, + 2.88811858203 + ], + "libelle_d_acheminement": "PONT A VENDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88811858203, + 50.4760049841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87fa83a36e83e3d458ecc77a90cff957883cbcf7", + "fields": { + "code_commune_insee": "62671", + "nom_de_la_commune": "PRONVILLE EN ARTOIS", + "code_postal": "62860", + "coordonnees_gps": [ + 50.1658848731, + 3.00801874894 + ], + "libelle_d_acheminement": "PRONVILLE EN ARTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00801874894, + 50.1658848731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "185be3cf8baaf3230c0c2de0d0c237b6b71302d9", + "fields": { + "code_commune_insee": "62672", + "nom_de_la_commune": "PUISIEUX", + "code_postal": "62116", + "coordonnees_gps": [ + 50.1064415329, + 2.68870005517 + ], + "libelle_d_acheminement": "PUISIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68870005517, + 50.1064415329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f22bcb251fea9f8d64c2645747381e371cdd65ca", + "fields": { + "code_commune_insee": "62685", + "nom_de_la_commune": "RADINGHEM", + "code_postal": "62310", + "coordonnees_gps": [ + 50.5466948364, + 2.11786981824 + ], + "libelle_d_acheminement": "RADINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.11786981824, + 50.5466948364 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0ae48ae2046524b78a833b29eea55a0e59db157", + "fields": { + "code_commune_insee": "62695", + "nom_de_la_commune": "REBREUVIETTE", + "code_postal": "62270", + "coordonnees_gps": [ + 50.2575030027, + 2.3638974015 + ], + "libelle_d_acheminement": "REBREUVIETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3638974015, + 50.2575030027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bd3433bd4cf4c232ba6f80b86eec26d8217b791", + "fields": { + "code_commune_insee": "62697", + "nom_de_la_commune": "RECOURT", + "code_postal": "62860", + "coordonnees_gps": [ + 50.2572703806, + 3.02765469348 + ], + "libelle_d_acheminement": "RECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02765469348, + 50.2572703806 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5d007f37b629cf205f86a005e8b44d3324a9d13", + "fields": { + "code_commune_insee": "62700", + "nom_de_la_commune": "REGNAUVILLE", + "code_postal": "62140", + "coordonnees_gps": [ + 50.3165005533, + 2.00147322794 + ], + "libelle_d_acheminement": "REGNAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00147322794, + 50.3165005533 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5af76bc60f893639f3a2f8e3d19e5dce32e4e252", + "fields": { + "code_commune_insee": "62708", + "nom_de_la_commune": "RIENCOURT LES BAPAUME", + "code_postal": "62450", + "coordonnees_gps": [ + 50.0885322704, + 2.8804356925 + ], + "libelle_d_acheminement": "RIENCOURT LES BAPAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8804356925, + 50.0885322704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23e7ceb40d2333cd6e16666d2ff437b0fd05a5a8", + "fields": { + "code_commune_insee": "62713", + "nom_de_la_commune": "ROBECQ", + "code_postal": "62350", + "coordonnees_gps": [ + 50.594171583, + 2.55063682467 + ], + "libelle_d_acheminement": "ROBECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55063682467, + 50.594171583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7740b3078f92ac8322e79b7c00e47ef4e5c9bad0", + "fields": { + "code_commune_insee": "62716", + "nom_de_la_commune": "RODELINGHEM", + "code_postal": "62610", + "coordonnees_gps": [ + 50.8340533685, + 1.93038024618 + ], + "libelle_d_acheminement": "RODELINGHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93038024618, + 50.8340533685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "850ac0a887617adb60261a28a6552f5a9d974e8a", + "fields": { + "code_commune_insee": "62719", + "nom_de_la_commune": "ROLLANCOURT", + "code_postal": "62770", + "coordonnees_gps": [ + 50.4117012202, + 2.1259936792 + ], + "libelle_d_acheminement": "ROLLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1259936792, + 50.4117012202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "612931b31f5dbbd185a35d6253b210c48edaa45e", + "fields": { + "code_commune_insee": "62720", + "nom_de_la_commune": "ROMBLY", + "code_postal": "62120", + "coordonnees_gps": [ + 50.5951805534, + 2.38984957197 + ], + "libelle_d_acheminement": "ROMBLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38984957197, + 50.5951805534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eeb5c52094cf38700989410ce1154e9bdb98f397", + "fields": { + "code_commune_insee": "62727", + "nom_de_la_commune": "RUITZ", + "code_postal": "62620", + "coordonnees_gps": [ + 50.4661492425, + 2.59073135345 + ], + "libelle_d_acheminement": "RUITZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59073135345, + 50.4661492425 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63a92c530219ebfeb6e5285fe556eb88946932e2", + "fields": { + "code_commune_insee": "62740", + "nom_de_la_commune": "SAINS LES PERNES", + "code_postal": "62550", + "coordonnees_gps": [ + 50.4791687953, + 2.34885594845 + ], + "libelle_d_acheminement": "SAINS LES PERNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34885594845, + 50.4791687953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c63c3fe9055ccd64b95b8138c147d532faf0638", + "fields": { + "code_commune_insee": "62747", + "nom_de_la_commune": "ST FLORIS", + "code_postal": "62350", + "coordonnees_gps": [ + 50.6245104816, + 2.57921156269 + ], + "libelle_d_acheminement": "ST FLORIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57921156269, + 50.6245104816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "459756adb5a339696bf561ef101b7923686df751", + "fields": { + "code_commune_insee": "62751", + "nom_de_la_commune": "ST INGLEVERT", + "code_postal": "62250", + "coordonnees_gps": [ + 50.8715347562, + 1.74383112864 + ], + "libelle_d_acheminement": "ST INGLEVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74383112864, + 50.8715347562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e54c31e42203454f6422a78815957eec9ea17486", + "fields": { + "code_commune_insee": "62752", + "nom_de_la_commune": "ST JOSSE", + "code_postal": "62170", + "coordonnees_gps": [ + 50.4816510992, + 1.66447526938 + ], + "libelle_d_acheminement": "ST JOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.66447526938, + 50.4816510992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76b93d1d41b5063c85c52474dfd4d3e99e7c89c7", + "fields": { + "code_commune_insee": "62758", + "nom_de_la_commune": "ST MARTIN BOULOGNE", + "code_postal": "62280", + "coordonnees_gps": [ + 50.7235416991, + 1.64793693921 + ], + "libelle_d_acheminement": "ST MARTIN BOULOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64793693921, + 50.7235416991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a1248a4f9d35d836bb4b05c921c5be299025797", + "fields": { + "code_commune_insee": "62772", + "nom_de_la_commune": "SALPERWICK", + "code_postal": "62500", + "coordonnees_gps": [ + 50.768362521, + 2.21963774504 + ], + "libelle_d_acheminement": "SALPERWICK" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21963774504, + 50.768362521 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27071732d1ecc8d137919d8ac1c26c79228b422f", + "fields": { + "code_commune_insee": "62783", + "nom_de_la_commune": "SAULCHOY", + "code_postal": "62870", + "coordonnees_gps": [ + 50.3538363354, + 1.85072788355 + ], + "libelle_d_acheminement": "SAULCHOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85072788355, + 50.3538363354 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d49a18dd7fc56fc9d55afab778996ea3f565e3e", + "fields": { + "code_commune_insee": "62786", + "nom_de_la_commune": "SELLES", + "code_postal": "62240", + "coordonnees_gps": [ + 50.6959428486, + 1.88964347847 + ], + "libelle_d_acheminement": "SELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88964347847, + 50.6959428486 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "123be43ad5f96c9fd534c271deea69d32fdbd7eb", + "fields": { + "code_commune_insee": "62795", + "nom_de_la_commune": "SIBIVILLE", + "code_postal": "62270", + "coordonnees_gps": [ + 50.3047427649, + 2.33129283098 + ], + "libelle_d_acheminement": "SIBIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33129283098, + 50.3047427649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e26988f15929bd9a87ef1647b01ca80407b5e64", + "fields": { + "code_commune_insee": "62797", + "nom_de_la_commune": "SIRACOURT", + "code_postal": "62130", + "coordonnees_gps": [ + 50.3707474842, + 2.26790984038 + ], + "libelle_d_acheminement": "SIRACOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26790984038, + 50.3707474842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0ba5a2e402063984637310d209d204184461c51", + "fields": { + "code_commune_insee": "62802", + "nom_de_la_commune": "LE SOUICH", + "code_postal": "62810", + "coordonnees_gps": [ + 50.2233905, + 2.36160198411 + ], + "libelle_d_acheminement": "LE SOUICH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36160198411, + 50.2233905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7d757f514f482783f4dc7fcbbd943d3916cf413", + "fields": { + "code_commune_insee": "62811", + "nom_de_la_commune": "THEROUANNE", + "code_postal": "62129", + "coordonnees_gps": [ + 50.6288197176, + 2.25105673076 + ], + "libelle_d_acheminement": "THEROUANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25105673076, + 50.6288197176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67cc750e91309c515c785ba62c654986d787eddf", + "fields": { + "code_commune_insee": "62818", + "nom_de_la_commune": "TILLY CAPELLE", + "code_postal": "62134", + "coordonnees_gps": [ + 50.4443030623, + 2.1871596899 + ], + "libelle_d_acheminement": "TILLY CAPELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1871596899, + 50.4443030623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3a10358f7e9bbda462aaac3af5dd9b17b2b95ae", + "fields": { + "code_commune_insee": "62821", + "nom_de_la_commune": "TINGRY", + "code_postal": "62830", + "coordonnees_gps": [ + 50.6110233696, + 1.72199394641 + ], + "libelle_d_acheminement": "TINGRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72199394641, + 50.6110233696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9e11160c782125ea39a2bde10789132520baf4d", + "fields": { + "code_commune_insee": "62822", + "nom_de_la_commune": "TOLLENT", + "code_postal": "62390", + "coordonnees_gps": [ + 50.2775872362, + 2.01380158526 + ], + "libelle_d_acheminement": "TOLLENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01380158526, + 50.2775872362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80bb5d26ea40b78fa66516db46dab2b249659a9a", + "fields": { + "code_commune_insee": "62827", + "nom_de_la_commune": "TOURNEHEM SUR LA HEM", + "code_postal": "62890", + "coordonnees_gps": [ + 50.7916214471, + 2.04769169432 + ], + "libelle_d_acheminement": "TOURNEHEM SUR LA HEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04769169432, + 50.7916214471 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30de43e121d8fd6e5dbe1c7f2d892319621708be", + "fields": { + "code_commune_insee": "62828", + "nom_de_la_commune": "TRAMECOURT", + "code_postal": "62310", + "coordonnees_gps": [ + 50.46970334, + 2.15213924885 + ], + "libelle_d_acheminement": "TRAMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15213924885, + 50.46970334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e90a102f45bfec492ee1745d66256d209f3d3bd", + "fields": { + "code_commune_insee": "62831", + "nom_de_la_commune": "TROISVAUX", + "code_postal": "62130", + "coordonnees_gps": [ + 50.4116603363, + 2.34375575662 + ], + "libelle_d_acheminement": "TROISVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34375575662, + 50.4116603363 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b13218f22dd99efe145a6573ab60f8470cc7f2a6", + "fields": { + "code_commune_insee": "62832", + "nom_de_la_commune": "TUBERSENT", + "code_postal": "62630", + "coordonnees_gps": [ + 50.5216866473, + 1.69918169379 + ], + "libelle_d_acheminement": "TUBERSENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69918169379, + 50.5216866473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e41ac6f029815c2cd0b49ca5f1a7c367b83f31d0", + "fields": { + "code_commune_insee": "62835", + "nom_de_la_commune": "VALHUON", + "code_postal": "62550", + "coordonnees_gps": [ + 50.4342829706, + 2.38336806426 + ], + "libelle_d_acheminement": "VALHUON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38336806426, + 50.4342829706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b23b31d7bce2dd54bf3e1f14f645bf60cf7785f9", + "fields": { + "code_commune_insee": "62840", + "nom_de_la_commune": "VELU", + "code_postal": "62124", + "coordonnees_gps": [ + 50.1007618527, + 2.97411822884 + ], + "libelle_d_acheminement": "VELU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97411822884, + 50.1007618527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f719a52065a0fba95d8cfdcf18d78f855337bc15", + "fields": { + "code_commune_insee": "62845", + "nom_de_la_commune": "VERLINCTHUN", + "code_postal": "62830", + "coordonnees_gps": [ + 50.6285938608, + 1.69225464674 + ], + "libelle_d_acheminement": "VERLINCTHUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.69225464674, + 50.6285938608 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b00d042ed4a9df6f95f22fd96bb00e128d3149fb", + "fields": { + "code_commune_insee": "62853", + "nom_de_la_commune": "VIEIL MOUTIER", + "code_postal": "62240", + "coordonnees_gps": [ + 50.6624676779, + 1.91064000839 + ], + "libelle_d_acheminement": "VIEIL MOUTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.91064000839, + 50.6624676779 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2cffb892fefa4da236f3a1ead1ff6e18703e220d", + "fields": { + "code_commune_insee": "62861", + "nom_de_la_commune": "VIMY", + "code_postal": "62580", + "coordonnees_gps": [ + 50.3776460123, + 2.81116855896 + ], + "libelle_d_acheminement": "VIMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81116855896, + 50.3776460123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b47211f4422ad2deba056b0ee524912b06653507", + "fields": { + "code_commune_insee": "62875", + "nom_de_la_commune": "WARDRECQUES", + "code_postal": "62120", + "coordonnees_gps": [ + 50.7053320588, + 2.34558119432 + ], + "libelle_d_acheminement": "WARDRECQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34558119432, + 50.7053320588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1716cd3333068d703ebb71f86663f48c1efa9219", + "fields": { + "code_commune_insee": "62885", + "nom_de_la_commune": "WESTREHEM", + "code_postal": "62960", + "coordonnees_gps": [ + 50.5447817916, + 2.34356634513 + ], + "libelle_d_acheminement": "WESTREHEM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34356634513, + 50.5447817916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e39c598f5b51a734df3a365ea48ef55bd522dbe1", + "fields": { + "code_commune_insee": "62889", + "nom_de_la_commune": "WIERRE EFFROY", + "code_postal": "62720", + "coordonnees_gps": [ + 50.7718663253, + 1.73716281389 + ], + "libelle_d_acheminement": "WIERRE EFFROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.73716281389, + 50.7718663253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f4c7062a5b7872a2a2de194b3c3c10099b52015", + "fields": { + "code_commune_insee": "62892", + "nom_de_la_commune": "WILLERVAL", + "code_postal": "62580", + "coordonnees_gps": [ + 50.3625979947, + 2.84933464088 + ], + "libelle_d_acheminement": "WILLERVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84933464088, + 50.3625979947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a09b143806fa7fca2581998e69c2a61dc92945ea", + "fields": { + "code_commune_insee": "62893", + "nom_de_la_commune": "WIMEREUX", + "code_postal": "62930", + "coordonnees_gps": [ + 50.7792497892, + 1.6134323131 + ], + "libelle_d_acheminement": "WIMEREUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6134323131, + 50.7792497892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "820b95183032a886e5f6e0448cfbf449d47ad818", + "fields": { + "code_commune_insee": "62894", + "nom_de_la_commune": "WIMILLE", + "code_postal": "62126", + "coordonnees_gps": [ + 50.7649885294, + 1.64203664126 + ], + "libelle_d_acheminement": "WIMILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64203664126, + 50.7649885294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3e6a39df6f7c23ccad1559d6cc41da7cdf49b45", + "fields": { + "code_commune_insee": "62896", + "nom_de_la_commune": "WIRWIGNES", + "code_postal": "62240", + "coordonnees_gps": [ + 50.685266842, + 1.76740602045 + ], + "libelle_d_acheminement": "WIRWIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76740602045, + 50.685266842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed62d2fbdb7b2119cc3f8ffa18e2ded8ac1ac3bd", + "fields": { + "code_commune_insee": "62899", + "nom_de_la_commune": "WISSANT", + "code_postal": "62179", + "coordonnees_gps": [ + 50.8883355248, + 1.68248567418 + ], + "libelle_d_acheminement": "WISSANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68248567418, + 50.8883355248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bc2a07358644a8191f45ef008eb31681faa4269", + "fields": { + "code_commune_insee": "62900", + "nom_de_la_commune": "WITTERNESSE", + "code_postal": "62120", + "coordonnees_gps": [ + 50.6139812013, + 2.36320125058 + ], + "libelle_d_acheminement": "WITTERNESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36320125058, + 50.6139812013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64d24ceaed7810c4c1c9e3f9d248a7ad992670fe", + "fields": { + "code_commune_insee": "62901", + "nom_de_la_commune": "WITTES", + "code_postal": "62120", + "coordonnees_gps": [ + 50.6716650445, + 2.38817871374 + ], + "libelle_d_acheminement": "WITTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38817871374, + 50.6716650445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f999c49c2f1cc5ec5429e09a40be37020c159009", + "fields": { + "code_commune_insee": "78165", + "nom_de_la_commune": "LES CLAYES SOUS BOIS", + "code_postal": "78340", + "coordonnees_gps": [ + 48.8186406601, + 1.9840595554 + ], + "libelle_d_acheminement": "LES CLAYES SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9840595554, + 48.8186406601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29096b4c7e28db8acc4f157e3f12d1b15d73a9cd", + "fields": { + "code_commune_insee": "62903", + "nom_de_la_commune": "ZOTEUX", + "code_postal": "62650", + "coordonnees_gps": [ + 50.614922981, + 1.88746444712 + ], + "libelle_d_acheminement": "ZOTEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88746444712, + 50.614922981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba13b02f050673c3b6c3b7cc109e3e752840cb06", + "fields": { + "code_commune_insee": "78185", + "nom_de_la_commune": "COURGENT", + "code_postal": "78790", + "coordonnees_gps": [ + 48.8957168468, + 1.65941323514 + ], + "libelle_d_acheminement": "COURGENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65941323514, + 48.8957168468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bf42650dc03bc8a681646ce33b0accd9d69d8c4", + "fields": { + "code_commune_insee": "62908", + "nom_de_la_commune": "LA CAPELLE LES BOULOGNE", + "code_postal": "62360", + "coordonnees_gps": [ + 50.7313010692, + 1.71597979438 + ], + "libelle_d_acheminement": "LA CAPELLE LES BOULOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71597979438, + 50.7313010692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad0c8c9af43b02efc48181e020402b78188b2627", + "fields": { + "code_commune_insee": "78189", + "nom_de_la_commune": "CRESPIERES", + "code_postal": "78121", + "coordonnees_gps": [ + 48.8822021619, + 1.921122695 + ], + "libelle_d_acheminement": "CRESPIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.921122695, + 48.8822021619 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fac5511c758a1226690c526649aa9fb8a3026673", + "fields": { + "code_commune_insee": "63003", + "nom_de_la_commune": "AMBERT", + "code_postal": "63600", + "coordonnees_gps": [ + 45.5557839461, + 3.75625356567 + ], + "libelle_d_acheminement": "AMBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.75625356567, + 45.5557839461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddd11e107a9de851f7aa7a8d0b7f960756419a05", + "fields": { + "code_commune_insee": "78239", + "nom_de_la_commune": "FOLLAINVILLE DENNEMONT", + "code_postal": "78520", + "coordonnees_gps": [ + 49.0229954846, + 1.70861078904 + ], + "libelle_d_acheminement": "FOLLAINVILLE DENNEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70861078904, + 49.0229954846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85b38716c7e2dfd781a28cabbb31583814eb0df6", + "fields": { + "code_commune_insee": "63004", + "nom_de_la_commune": "LES ANCIZES COMPS", + "code_postal": "63770", + "coordonnees_gps": [ + 45.9331353459, + 2.80539332166 + ], + "libelle_d_acheminement": "LES ANCIZES COMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80539332166, + 45.9331353459 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "772bb746e7567cec8667a5c38c1127ca0a7b557f", + "fields": { + "code_commune_insee": "78242", + "nom_de_la_commune": "FONTENAY LE FLEURY", + "code_postal": "78330", + "coordonnees_gps": [ + 48.8177984988, + 2.04662335413 + ], + "libelle_d_acheminement": "FONTENAY LE FLEURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04662335413, + 48.8177984988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fbb6d8fb2a4439d58cdd92f82fa733a3d535262a", + "fields": { + "code_commune_insee": "63014", + "nom_de_la_commune": "AUBIERE", + "code_postal": "63170", + "coordonnees_gps": [ + 45.7510558385, + 3.126134119 + ], + "libelle_d_acheminement": "AUBIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.126134119, + 45.7510558385 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a51e9c008934cbda65ecc67e0f532d469ed9672b", + "fields": { + "code_commune_insee": "78245", + "nom_de_la_commune": "FONTENAY MAUVOISIN", + "code_postal": "78200", + "coordonnees_gps": [ + 48.9610924482, + 1.64777778517 + ], + "libelle_d_acheminement": "FONTENAY MAUVOISIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64777778517, + 48.9610924482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0eb21aa0a4a5b39d6a2637665616e297e4afad92", + "fields": { + "code_commune_insee": "63024", + "nom_de_la_commune": "AVEZE", + "code_postal": "63690", + "coordonnees_gps": [ + 45.5970951985, + 2.60615054719 + ], + "libelle_d_acheminement": "AVEZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60615054719, + 45.5970951985 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af47c3cfaf197774807410fb9f9cefdebaf6d351", + "fields": { + "code_commune_insee": "78262", + "nom_de_la_commune": "GALLUIS", + "code_postal": "78490", + "coordonnees_gps": [ + 48.7975623096, + 1.79110153574 + ], + "libelle_d_acheminement": "GALLUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79110153574, + 48.7975623096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2133f28fc73f8fc97a0b2dd4a60b90d946fe4591", + "fields": { + "code_commune_insee": "63025", + "nom_de_la_commune": "AYAT SUR SIOULE", + "code_postal": "63390", + "coordonnees_gps": [ + 46.0615532638, + 2.88700603569 + ], + "libelle_d_acheminement": "AYAT SUR SIOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88700603569, + 46.0615532638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad3048b08b0befb7a9eaf0a734c8c1777f37ba5c", + "fields": { + "code_commune_insee": "78267", + "nom_de_la_commune": "GARGENVILLE", + "code_postal": "78440", + "coordonnees_gps": [ + 48.9931450718, + 1.81069376214 + ], + "libelle_d_acheminement": "GARGENVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81069376214, + 48.9931450718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "750d2308d6010c4867cc76ec854a45d7f4ad067e", + "fields": { + "code_commune_insee": "63026", + "nom_de_la_commune": "AYDAT", + "code_postal": "63970", + "coordonnees_gps": [ + 45.6667878523, + 2.98447780455 + ], + "libelle_d_acheminement": "AYDAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.98447780455, + 45.6667878523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e28e3fefa2e621bb7d1802d814b2a16c8c689735", + "fields": { + "code_commune_insee": "78285", + "nom_de_la_commune": "GRESSEY", + "code_postal": "78550", + "coordonnees_gps": [ + 48.8328470856, + 1.60339390976 + ], + "libelle_d_acheminement": "GRESSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60339390976, + 48.8328470856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ef414947fcd6be209d65c76f24988ff8aef0af3", + "fields": { + "code_commune_insee": "63028", + "nom_de_la_commune": "BAGNOLS", + "code_postal": "63810", + "coordonnees_gps": [ + 45.4980479842, + 2.63866750043 + ], + "libelle_d_acheminement": "BAGNOLS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63866750043, + 45.4980479842 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c656e1a7138fc5a6c5ea2227c258afa8553e644", + "fields": { + "code_commune_insee": "78297", + "nom_de_la_commune": "GUYANCOURT", + "code_postal": "78280", + "coordonnees_gps": [ + 48.7730783892, + 2.07605207737 + ], + "libelle_d_acheminement": "GUYANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07605207737, + 48.7730783892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9af205d4c34b5419f4385a563307b9e5d25423b1", + "fields": { + "code_commune_insee": "63031", + "nom_de_la_commune": "BEAULIEU", + "code_postal": "63570", + "coordonnees_gps": [ + 45.4434163862, + 3.2857086032 + ], + "libelle_d_acheminement": "BEAULIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2857086032, + 45.4434163862 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a65ef669f490ff305f60f595f63b4c0a2c86627", + "fields": { + "ligne_5": "VILLAROY", + "code_commune_insee": "78297", + "libelle_d_acheminement": "GUYANCOURT", + "code_postal": "78280", + "nom_de_la_commune": "GUYANCOURT", + "coordonnees_gps": [ + 48.7730783892, + 2.07605207737 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07605207737, + 48.7730783892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0739331bf62e67e61701a1395e1d79dac6448a01", + "fields": { + "ligne_5": "ST ANASTAISE", + "code_commune_insee": "63038", + "libelle_d_acheminement": "BESSE ET ST ANASTAISE", + "code_postal": "63610", + "nom_de_la_commune": "BESSE ET ST ANASTAISE", + "coordonnees_gps": [ + 45.4967792648, + 2.90703862997 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90703862997, + 45.4967792648 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "743efd4a91b9bd4b4ed77ddcd593c642673d5f88", + "fields": { + "ligne_5": "PORT VILLEZ", + "code_commune_insee": "78320", + "libelle_d_acheminement": "NOTRE DAME DE LA MER", + "code_postal": "78270", + "nom_de_la_commune": "NOTRE DAME DE LA MER", + "coordonnees_gps": [ + 49.0353541387, + 1.53724970145 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53724970145, + 49.0353541387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ef191f98013cd8f357ea8e3de77ccbfd47a2277", + "fields": { + "code_commune_insee": "63039", + "nom_de_la_commune": "BEURIERES", + "code_postal": "63220", + "coordonnees_gps": [ + 45.4316094965, + 3.77865697978 + ], + "libelle_d_acheminement": "BEURIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77865697978, + 45.4316094965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "829ec7647c10c48d6756fcdb2292651e9fc40e5e", + "fields": { + "code_commune_insee": "78324", + "nom_de_la_commune": "JOUY MAUVOISIN", + "code_postal": "78200", + "coordonnees_gps": [ + 48.9744681009, + 1.64659377662 + ], + "libelle_d_acheminement": "JOUY MAUVOISIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64659377662, + 48.9744681009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "225e99b69ed8c6890112a2bd31736252d8fa7b71", + "fields": { + "code_commune_insee": "63044", + "nom_de_la_commune": "BONGHEAT", + "code_postal": "63160", + "coordonnees_gps": [ + 45.7244737269, + 3.42713550452 + ], + "libelle_d_acheminement": "BONGHEAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42713550452, + 45.7244737269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68068210333713a08451125f76f9dd4aa4cac343", + "fields": { + "code_commune_insee": "78325", + "nom_de_la_commune": "JUMEAUVILLE", + "code_postal": "78580", + "coordonnees_gps": [ + 48.9066083606, + 1.78398775719 + ], + "libelle_d_acheminement": "JUMEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78398775719, + 48.9066083606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "547cb8a11786e3b0d608b69618ad44db7faabbd2", + "fields": { + "code_commune_insee": "63045", + "nom_de_la_commune": "BORT L ETANG", + "code_postal": "63190", + "coordonnees_gps": [ + 45.7812457267, + 3.43542941153 + ], + "libelle_d_acheminement": "BORT L ETANG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43542941153, + 45.7812457267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93117ff0e2d3932051d06bde1ee86acaa5e21ada", + "fields": { + "code_commune_insee": "78346", + "nom_de_la_commune": "LONGNES", + "code_postal": "78980", + "coordonnees_gps": [ + 48.9228573814, + 1.57947128882 + ], + "libelle_d_acheminement": "LONGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57947128882, + 48.9228573814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48483218330fd92bc6e58e09ec54522813da2e06", + "fields": { + "code_commune_insee": "63046", + "nom_de_la_commune": "BOUDES", + "code_postal": "63340", + "coordonnees_gps": [ + 45.4522556993, + 3.18246169871 + ], + "libelle_d_acheminement": "BOUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18246169871, + 45.4522556993 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d028a67f2084367b2b697c84128046b08088dc84", + "fields": { + "code_commune_insee": "78362", + "nom_de_la_commune": "MANTES LA VILLE", + "code_postal": "78711", + "coordonnees_gps": [ + 48.9747939435, + 1.71205571778 + ], + "libelle_d_acheminement": "MANTES LA VILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71205571778, + 48.9747939435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87677d78a534f1c57fcacad38db75d23e7bccb46", + "fields": { + "code_commune_insee": "63047", + "nom_de_la_commune": "LA BOURBOULE", + "code_postal": "63150", + "coordonnees_gps": [ + 45.5796236201, + 2.7501805247 + ], + "libelle_d_acheminement": "LA BOURBOULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7501805247, + 45.5796236201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9654ebe1f7a6c546fd78fff72c0c60cab2250c6", + "fields": { + "ligne_5": "MONTVAL", + "code_commune_insee": "78372", + "libelle_d_acheminement": "MARLY LE ROI", + "code_postal": "78160", + "nom_de_la_commune": "MARLY LE ROI", + "coordonnees_gps": [ + 48.865007453, + 2.09125004298 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09125004298, + 48.865007453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51c543bea6748ad85bfb5976423967e8c317bfbb", + "fields": { + "code_commune_insee": "63048", + "nom_de_la_commune": "BOURG LASTIC", + "code_postal": "63760", + "coordonnees_gps": [ + 45.6572710215, + 2.56278019812 + ], + "libelle_d_acheminement": "BOURG LASTIC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56278019812, + 45.6572710215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00a190ac203598e6b94cc782d3453016109d9a82", + "fields": { + "code_commune_insee": "78384", + "nom_de_la_commune": "MEDAN", + "code_postal": "78670", + "coordonnees_gps": [ + 48.9548235398, + 1.98757804173 + ], + "libelle_d_acheminement": "MEDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98757804173, + 48.9548235398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f046da0dc5a095dd1119af868ec487e80e39ce5", + "fields": { + "code_commune_insee": "63056", + "nom_de_la_commune": "BROUSSE", + "code_postal": "63490", + "coordonnees_gps": [ + 45.6003729958, + 3.46386697811 + ], + "libelle_d_acheminement": "BROUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46386697811, + 45.6003729958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "acb855e5b7e310856ddd372d8f01623b82514efe", + "fields": { + "code_commune_insee": "78389", + "nom_de_la_commune": "MERE", + "code_postal": "78490", + "coordonnees_gps": [ + 48.7955470885, + 1.81994051826 + ], + "libelle_d_acheminement": "MERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81994051826, + 48.7955470885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64915a51db13d47f6a9a16bd1fda82c6e12a667c", + "fields": { + "code_commune_insee": "63061", + "nom_de_la_commune": "BUSSIERES ET PRUNS", + "code_postal": "63260", + "coordonnees_gps": [ + 46.0068491978, + 3.23823283226 + ], + "libelle_d_acheminement": "BUSSIERES ET PRUNS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23823283226, + 46.0068491978 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b877505b9926bdd58818f1e15c9cd25fdb53d7c4", + "fields": { + "code_commune_insee": "78397", + "nom_de_la_commune": "LE MESNIL ST DENIS", + "code_postal": "78320", + "coordonnees_gps": [ + 48.7402250614, + 1.96613835861 + ], + "libelle_d_acheminement": "LE MESNIL ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96613835861, + 48.7402250614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eac84f90f41931433cdc167fa2e02aa2f7be095a", + "fields": { + "code_commune_insee": "63064", + "nom_de_la_commune": "LA CELLE", + "code_postal": "63620", + "coordonnees_gps": [ + 45.8497369275, + 2.47438590969 + ], + "libelle_d_acheminement": "LA CELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47438590969, + 45.8497369275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "062ccaf8b02b0b56763417cefc032198673893c0", + "fields": { + "code_commune_insee": "78403", + "nom_de_la_commune": "MEZY SUR SEINE", + "code_postal": "78250", + "coordonnees_gps": [ + 49.0032908553, + 1.86919580679 + ], + "libelle_d_acheminement": "MEZY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86919580679, + 49.0032908553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e966dc2ed9d5758308d4ac2841e894ceeed9aea", + "fields": { + "code_commune_insee": "63069", + "nom_de_la_commune": "LE CENDRE", + "code_postal": "63670", + "coordonnees_gps": [ + 45.7178589681, + 3.19396372923 + ], + "libelle_d_acheminement": "LE CENDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19396372923, + 45.7178589681 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f14137d96dd34e165c20e3653870fed5914f8f0", + "fields": { + "code_commune_insee": "78417", + "nom_de_la_commune": "MONTCHAUVET", + "code_postal": "78790", + "coordonnees_gps": [ + 48.8916704709, + 1.62681497392 + ], + "libelle_d_acheminement": "MONTCHAUVET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62681497392, + 48.8916704709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "057f8d9e65796841028ce1e7f1fd53cde2b597d1", + "fields": { + "code_commune_insee": "63073", + "nom_de_la_commune": "CHADELEUF", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5811513709, + 3.18117536948 + ], + "libelle_d_acheminement": "CHADELEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18117536948, + 45.5811513709 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11fbf855c4dcbe31c0c3653f3401a81a8064610c", + "fields": { + "code_commune_insee": "78420", + "nom_de_la_commune": "MONTFORT L AMAURY", + "code_postal": "78490", + "coordonnees_gps": [ + 48.771347152, + 1.80894544858 + ], + "libelle_d_acheminement": "MONTFORT L AMAURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80894544858, + 48.771347152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23b456be95c56731473d11c5d6fa08ca72bcf304", + "fields": { + "code_commune_insee": "63076", + "nom_de_la_commune": "CHAMBON SUR DOLORE", + "code_postal": "63980", + "coordonnees_gps": [ + 45.4970592625, + 3.62526275053 + ], + "libelle_d_acheminement": "CHAMBON SUR DOLORE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62526275053, + 45.4970592625 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a842844393985dfdb5da0af16f4babfc4f4e98b", + "fields": { + "code_commune_insee": "78431", + "nom_de_la_commune": "MORAINVILLIERS", + "code_postal": "78630", + "coordonnees_gps": [ + 48.9343458176, + 1.94550312886 + ], + "libelle_d_acheminement": "MORAINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94550312886, + 48.9343458176 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fc919c85e81a32b1498dc9b4d9e2ae076bf2267", + "fields": { + "code_commune_insee": "63077", + "nom_de_la_commune": "CHAMBON SUR LAC", + "code_postal": "63790", + "coordonnees_gps": [ + 45.5602562882, + 2.86880475585 + ], + "libelle_d_acheminement": "CHAMBON SUR LAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86880475585, + 45.5602562882 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40d4c69a739bb4436000b08d946d2475df2ac08c", + "fields": { + "code_commune_insee": "78437", + "nom_de_la_commune": "MOUSSEAUX SUR SEINE", + "code_postal": "78270", + "coordonnees_gps": [ + 49.0512755444, + 1.65045587517 + ], + "libelle_d_acheminement": "MOUSSEAUX SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65045587517, + 49.0512755444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e214eb0e81638627b0db85d0eb187fd664d190bb", + "fields": { + "code_commune_insee": "63083", + "nom_de_la_commune": "CHANAT LA MOUTEYRE", + "code_postal": "63530", + "coordonnees_gps": [ + 45.825281343, + 3.00698253027 + ], + "libelle_d_acheminement": "CHANAT LA MOUTEYRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00698253027, + 45.825281343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bdc9a1aba6f5fbccc96e9918e8ed87e7d98b522b", + "fields": { + "code_commune_insee": "78442", + "nom_de_la_commune": "NEAUPHLE LE CHATEAU", + "code_postal": "78640", + "coordonnees_gps": [ + 48.8130997421, + 1.90470412718 + ], + "libelle_d_acheminement": "NEAUPHLE LE CHATEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90470412718, + 48.8130997421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4146de4eabd9a5e6cd5af68386c6518a1e723101", + "fields": { + "code_commune_insee": "63084", + "nom_de_la_commune": "CHANONAT", + "code_postal": "63450", + "coordonnees_gps": [ + 45.6953181074, + 3.08324914721 + ], + "libelle_d_acheminement": "CHANONAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08324914721, + 45.6953181074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfd5d0ce531743afab02c53365dc4306c497145e", + "fields": { + "code_commune_insee": "78443", + "nom_de_la_commune": "NEAUPHLE LE VIEUX", + "code_postal": "78640", + "coordonnees_gps": [ + 48.8151801039, + 1.85898101008 + ], + "libelle_d_acheminement": "NEAUPHLE LE VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85898101008, + 48.8151801039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e32d8e7f3d382610d6c0bce90f4175193975e11e", + "fields": { + "ligne_5": "ST HIPPOLYTE", + "code_commune_insee": "63103", + "libelle_d_acheminement": "CHATEL GUYON", + "code_postal": "63140", + "nom_de_la_commune": "CHATEL GUYON", + "coordonnees_gps": [ + 45.9206993185, + 3.0632143777 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0632143777, + 45.9206993185 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fa9b91d39aadf6ae8a1d80fb99a52b73da9d021", + "fields": { + "code_commune_insee": "78464", + "nom_de_la_commune": "ORCEMONT", + "code_postal": "78125", + "coordonnees_gps": [ + 48.5968578246, + 1.80955275599 + ], + "libelle_d_acheminement": "ORCEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80955275599, + 48.5968578246 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11f9467511aaf41e03cf17186fdbfa78e452c19a", + "fields": { + "code_commune_insee": "63107", + "nom_de_la_commune": "CHAVAROUX", + "code_postal": "63720", + "coordonnees_gps": [ + 45.8558212715, + 3.25835959174 + ], + "libelle_d_acheminement": "CHAVAROUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25835959174, + 45.8558212715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7289bd57ecaf348f3674b0376257248feb9881f", + "fields": { + "code_commune_insee": "78475", + "nom_de_la_commune": "OSMOY", + "code_postal": "78910", + "coordonnees_gps": [ + 48.8640021137, + 1.71710528225 + ], + "libelle_d_acheminement": "OSMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.71710528225, + 48.8640021137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c36216943208548d172336f31774f85ec4ef00b4", + "fields": { + "code_commune_insee": "63117", + "nom_de_la_commune": "COMPAINS", + "code_postal": "63610", + "coordonnees_gps": [ + 45.4364463518, + 2.92462564486 + ], + "libelle_d_acheminement": "COMPAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92462564486, + 45.4364463518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df6578ceee6d889f511e10dd59e973f865ed8a53", + "fields": { + "code_commune_insee": "78499", + "nom_de_la_commune": "PONTHEVRARD", + "code_postal": "78730", + "coordonnees_gps": [ + 48.5499350037, + 1.90806414752 + ], + "libelle_d_acheminement": "PONTHEVRARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90806414752, + 48.5499350037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e08071851d32a6c8eccaf5d031042b98cf492e07", + "fields": { + "code_commune_insee": "63121", + "nom_de_la_commune": "COUDES", + "code_postal": "63114", + "coordonnees_gps": [ + 45.6105151994, + 3.20143305932 + ], + "libelle_d_acheminement": "COUDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20143305932, + 45.6105151994 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2594f8fbddaca5ffdef8fe9cebb6dbb873ac8698", + "fields": { + "code_commune_insee": "78501", + "nom_de_la_commune": "PORCHEVILLE", + "code_postal": "78440", + "coordonnees_gps": [ + 48.9761864885, + 1.76831015347 + ], + "libelle_d_acheminement": "PORCHEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76831015347, + 48.9761864885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e10f5f06991b4a0ddad3bd942acc6e918766a335", + "fields": { + "code_commune_insee": "63122", + "nom_de_la_commune": "COURGOUL", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5117810661, + 3.0464942145 + ], + "libelle_d_acheminement": "COURGOUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0464942145, + 45.5117810661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db6ffe053cd55bcbb2a1b6d9551a94e14195961b", + "fields": { + "code_commune_insee": "78502", + "nom_de_la_commune": "LE PORT MARLY", + "code_postal": "78560", + "coordonnees_gps": [ + 48.8804759755, + 2.10903947427 + ], + "libelle_d_acheminement": "LE PORT MARLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10903947427, + 48.8804759755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d10fae605c804267e1b31d61460dc57a1735009b", + "fields": { + "code_commune_insee": "63124", + "nom_de_la_commune": "COURNON D AUVERGNE", + "code_postal": "63800", + "coordonnees_gps": [ + 45.7429670015, + 3.18687581638 + ], + "libelle_d_acheminement": "COURNON D AUVERGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18687581638, + 45.7429670015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8be57cd5f6e1ce9d32b0eb7ccc4af9eb9274c6da", + "fields": { + "code_commune_insee": "78551", + "nom_de_la_commune": "ST GERMAIN EN LAYE", + "code_postal": "78100", + "coordonnees_gps": [ + 48.9407041394, + 2.09870929375 + ], + "libelle_d_acheminement": "ST GERMAIN EN LAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09870929375, + 48.9407041394 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42a25cedc08a88e43f37f06d0bf8b835fd87a7a0", + "fields": { + "code_commune_insee": "63131", + "nom_de_la_commune": "CULHAT", + "code_postal": "63350", + "coordonnees_gps": [ + 45.8605302277, + 3.34367377982 + ], + "libelle_d_acheminement": "CULHAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34367377982, + 45.8605302277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "414cc853de73fa5a05d494b3253e0f6c58ea47f4", + "fields": { + "ligne_5": "LA BRETECHE", + "code_commune_insee": "78571", + "libelle_d_acheminement": "ST NOM LA BRETECHE", + "code_postal": "78860", + "nom_de_la_commune": "ST NOM LA BRETECHE", + "coordonnees_gps": [ + 48.8634050098, + 2.01915428049 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01915428049, + 48.8634050098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7eb8b7f779de2df6e96326d1b231f6c2d610ad1a", + "fields": { + "code_commune_insee": "63137", + "nom_de_la_commune": "DORANGES", + "code_postal": "63220", + "coordonnees_gps": [ + 45.3996897026, + 3.60566060253 + ], + "libelle_d_acheminement": "DORANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60566060253, + 45.3996897026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85634340c2ef9e95319b1ffc6ab0618188574036", + "fields": { + "code_commune_insee": "78586", + "nom_de_la_commune": "SARTROUVILLE", + "code_postal": "78500", + "coordonnees_gps": [ + 48.9396085498, + 2.17458686513 + ], + "libelle_d_acheminement": "SARTROUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17458686513, + 48.9396085498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a9a016e601227eb5d05cfa2b21a89e983158ec9", + "fields": { + "code_commune_insee": "63147", + "nom_de_la_commune": "EGLISOLLES", + "code_postal": "63840", + "coordonnees_gps": [ + 45.4686394597, + 3.87133916451 + ], + "libelle_d_acheminement": "EGLISOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87133916451, + 45.4686394597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86ad7474a2b7e8fd0f1216e6d8eb89a5468c523f", + "fields": { + "code_commune_insee": "78588", + "nom_de_la_commune": "SAULX MARCHAIS", + "code_postal": "78650", + "coordonnees_gps": [ + 48.8461753929, + 1.83624882514 + ], + "libelle_d_acheminement": "SAULX MARCHAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83624882514, + 48.8461753929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26fa9d9585a039ab77c0fb50d27caffb2a960a11", + "fields": { + "code_commune_insee": "63151", + "nom_de_la_commune": "ESCOUTOUX", + "code_postal": "63300", + "coordonnees_gps": [ + 45.8157734773, + 3.5542890895 + ], + "libelle_d_acheminement": "ESCOUTOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5542890895, + 45.8157734773 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6831c691c5946d4b125509372e351dd477725ea2", + "fields": { + "code_commune_insee": "78591", + "nom_de_la_commune": "SEPTEUIL", + "code_postal": "78790", + "coordonnees_gps": [ + 48.8882003986, + 1.68459218607 + ], + "libelle_d_acheminement": "SEPTEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.68459218607, + 48.8882003986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d7a6d399f89543607eaf000b6cbafc622e9462a", + "fields": { + "code_commune_insee": "63156", + "nom_de_la_commune": "ESTEIL", + "code_postal": "63570", + "coordonnees_gps": [ + 45.453054984, + 3.36737872864 + ], + "libelle_d_acheminement": "ESTEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36737872864, + 45.453054984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00c10d39707e0bf47de43083c4243feb43f615da", + "fields": { + "code_commune_insee": "78608", + "nom_de_la_commune": "LE TERTRE ST DENIS", + "code_postal": "78980", + "coordonnees_gps": [ + 48.9425366688, + 1.60840679116 + ], + "libelle_d_acheminement": "LE TERTRE ST DENIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60840679116, + 48.9425366688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7995d6f89444410ffc4b93deeffef742eef1a4ca", + "fields": { + "code_commune_insee": "63158", + "nom_de_la_commune": "FAYET RONAYE", + "code_postal": "63630", + "coordonnees_gps": [ + 45.4189763159, + 3.53569524449 + ], + "libelle_d_acheminement": "FAYET RONAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53569524449, + 45.4189763159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce481e9e72e6421594c6278af0d51ae86f657e4a", + "fields": { + "code_commune_insee": "78618", + "nom_de_la_commune": "TILLY", + "code_postal": "78790", + "coordonnees_gps": [ + 48.8779765086, + 1.57500969279 + ], + "libelle_d_acheminement": "TILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57500969279, + 48.8779765086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "673eca84d2295af85fec2a56d2ddc9bfc18b5e7e", + "fields": { + "code_commune_insee": "63176", + "nom_de_la_commune": "HEUME L EGLISE", + "code_postal": "63210", + "coordonnees_gps": [ + 45.7212118766, + 2.72132681759 + ], + "libelle_d_acheminement": "HEUME L EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72132681759, + 45.7212118766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cdc6767c9f0edefa5bd0542206b2becf2dd9f44", + "fields": { + "code_commune_insee": "78642", + "nom_de_la_commune": "VERNEUIL SUR SEINE", + "code_postal": "78480", + "coordonnees_gps": [ + 48.9872093367, + 1.96276532174 + ], + "libelle_d_acheminement": "VERNEUIL SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96276532174, + 48.9872093367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "038010686fc045c5a03e321f7e968af511f8cc95", + "fields": { + "code_commune_insee": "63180", + "nom_de_la_commune": "JOZE", + "code_postal": "63350", + "coordonnees_gps": [ + 45.8682468414, + 3.30362665352 + ], + "libelle_d_acheminement": "JOZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30362665352, + 45.8682468414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdaa5a90c7be39c58710c41418157321ab8c5999", + "fields": { + "code_commune_insee": "79008", + "nom_de_la_commune": "AMAILLOUX", + "code_postal": "79350", + "coordonnees_gps": [ + 46.7494537565, + -0.313467938365 + ], + "libelle_d_acheminement": "AMAILLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.313467938365, + 46.7494537565 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdbc4c3efeb4be5da8a9b13f01da963dc19bd843", + "fields": { + "code_commune_insee": "63187", + "nom_de_la_commune": "LAPEYROUSE", + "code_postal": "63700", + "coordonnees_gps": [ + 46.2316265705, + 2.87835411182 + ], + "libelle_d_acheminement": "LAPEYROUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87835411182, + 46.2316265705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d22017e1291a726a2fe3b8ac4d56d59980e5371", + "fields": { + "code_commune_insee": "79010", + "nom_de_la_commune": "ARCAIS", + "code_postal": "79210", + "coordonnees_gps": [ + 46.3012932064, + -0.695370994677 + ], + "libelle_d_acheminement": "ARCAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.695370994677, + 46.3012932064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4835b19ca5ed67988b8ef6f4e805062eebc82fff", + "fields": { + "code_commune_insee": "63203", + "nom_de_la_commune": "MALAUZAT", + "code_postal": "63200", + "coordonnees_gps": [ + 45.8602209203, + 3.06104915998 + ], + "libelle_d_acheminement": "MALAUZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.06104915998, + 45.8602209203 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e61cfaba47ae6fb56878fa5348b6b96c01b74ee", + "fields": { + "ligne_5": "ARGENTON LES VALLEES", + "code_commune_insee": "79013", + "libelle_d_acheminement": "ARGENTONNAY", + "code_postal": "79150", + "nom_de_la_commune": "ARGENTONNAY", + "coordonnees_gps": [ + 46.9784261272, + -0.468875242934 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.468875242934, + 46.9784261272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7d4bdcc2c9dfd1b152e5bed2851a0701dc792f4", + "fields": { + "code_commune_insee": "63204", + "nom_de_la_commune": "MALINTRAT", + "code_postal": "63510", + "coordonnees_gps": [ + 45.8108783699, + 3.19119989954 + ], + "libelle_d_acheminement": "MALINTRAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19119989954, + 45.8108783699 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c507c77b071eb103f4933685416a35ead089695", + "fields": { + "ligne_5": "LES JUMEAUX", + "code_commune_insee": "79016", + "libelle_d_acheminement": "ASSAIS LES JUMEAUX", + "code_postal": "79600", + "nom_de_la_commune": "ASSAIS LES JUMEAUX", + "coordonnees_gps": [ + 46.7918233643, + -0.0681160058394 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0681160058394, + 46.7918233643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd73184fe929aa97cc5071a25e596fad17b0f5ef", + "fields": { + "code_commune_insee": "63207", + "nom_de_la_commune": "MARAT", + "code_postal": "63480", + "coordonnees_gps": [ + 45.6728912976, + 3.68812548894 + ], + "libelle_d_acheminement": "MARAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68812548894, + 45.6728912976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6328395fe5b19f7fb3bd35b1090fb69acefe3a88", + "fields": { + "code_commune_insee": "79024", + "nom_de_la_commune": "AZAY LE BRULE", + "code_postal": "79400", + "coordonnees_gps": [ + 46.4045197367, + -0.267456920636 + ], + "libelle_d_acheminement": "AZAY LE BRULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.267456920636, + 46.4045197367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "948a95237df4f14458610e48828d07ed730f02fa", + "fields": { + "code_commune_insee": "63210", + "nom_de_la_commune": "MARINGUES", + "code_postal": "63350", + "coordonnees_gps": [ + 45.9209843347, + 3.33844645964 + ], + "libelle_d_acheminement": "MARINGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33844645964, + 45.9209843347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39d3f80bc618aad6f30b9c203415f8517269e70e", + "fields": { + "code_commune_insee": "79025", + "nom_de_la_commune": "AZAY SUR THOUET", + "code_postal": "79130", + "coordonnees_gps": [ + 46.6190923959, + -0.356635119347 + ], + "libelle_d_acheminement": "AZAY SUR THOUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.356635119347, + 46.6190923959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "527485b7b3eb0d6b6e7c5e9a3210c05e1d166b13", + "fields": { + "code_commune_insee": "63216", + "nom_de_la_commune": "MAUZUN", + "code_postal": "63160", + "coordonnees_gps": [ + 45.7042286945, + 3.42616955931 + ], + "libelle_d_acheminement": "MAUZUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42616955931, + 45.7042286945 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4870acb02cb63da57b8e0814c481f838706ae88", + "fields": { + "code_commune_insee": "79034", + "nom_de_la_commune": "BESSINES", + "code_postal": "79000", + "coordonnees_gps": [ + 46.2924246809, + -0.51369379312 + ], + "libelle_d_acheminement": "BESSINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51369379312, + 46.2924246809 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c966b7b4071848fddf294a397b5b513cea30dfd2", + "fields": { + "ligne_5": "LES GANNES", + "code_commune_insee": "63225", + "libelle_d_acheminement": "MESSEIX", + "code_postal": "63750", + "nom_de_la_commune": "MESSEIX", + "coordonnees_gps": [ + 45.6122699559, + 2.533971784 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.533971784, + 45.6122699559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5251bd2d4941362d9c4ef1419ef93000b996c553", + "fields": { + "code_commune_insee": "79042", + "nom_de_la_commune": "BOUGON", + "code_postal": "79800", + "coordonnees_gps": [ + 46.3681223609, + -0.058422640934 + ], + "libelle_d_acheminement": "BOUGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.058422640934, + 46.3681223609 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1609404eb29185f5284240bb6ade79a5c0be27ea", + "fields": { + "code_commune_insee": "63227", + "nom_de_la_commune": "MIREFLEURS", + "code_postal": "63730", + "coordonnees_gps": [ + 45.6909304728, + 3.22523866728 + ], + "libelle_d_acheminement": "MIREFLEURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22523866728, + 45.6909304728 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "046281bb0d6904fdb7d6932b45d5047065ed3855", + "fields": { + "code_commune_insee": "79047", + "nom_de_la_commune": "BOUSSAIS", + "code_postal": "79600", + "coordonnees_gps": [ + 46.8185496547, + -0.263669046618 + ], + "libelle_d_acheminement": "BOUSSAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.263669046618, + 46.8185496547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "233d2ab7964b169ea036221a18274c258ddaf6ee", + "fields": { + "code_commune_insee": "63239", + "nom_de_la_commune": "MONTMORIN", + "code_postal": "63160", + "coordonnees_gps": [ + 45.6915806177, + 3.35819148283 + ], + "libelle_d_acheminement": "MONTMORIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35819148283, + 45.6915806177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c5c5f9907c211270bb65fe4c8ed999767a5219f", + "fields": { + "code_commune_insee": "79049", + "nom_de_la_commune": "BRESSUIRE", + "code_postal": "79300", + "coordonnees_gps": [ + 46.8545755683, + -0.479375922286 + ], + "libelle_d_acheminement": "BRESSUIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479375922286, + 46.8545755683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23d0cc906ad7e8a681d1b1a08388dfea06d562a8", + "fields": { + "code_commune_insee": "63254", + "nom_de_la_commune": "NOHANENT", + "code_postal": "63830", + "coordonnees_gps": [ + 45.8109222583, + 3.05794637762 + ], + "libelle_d_acheminement": "NOHANENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05794637762, + 45.8109222583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b3ac0d252543c73b7c77cbb7c742e86c710f0d1", + "fields": { + "ligne_5": "BEAULIEU SOUS BRESSUIRE", + "code_commune_insee": "79049", + "libelle_d_acheminement": "BRESSUIRE", + "code_postal": "79300", + "nom_de_la_commune": "BRESSUIRE", + "coordonnees_gps": [ + 46.8545755683, + -0.479375922286 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479375922286, + 46.8545755683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5175f90e242e87fc6d863dba0a45c330edee2b3e", + "fields": { + "ligne_5": "ORSONNETTE", + "code_commune_insee": "63255", + "libelle_d_acheminement": "NONETTE ORSONNETTE", + "code_postal": "63340", + "nom_de_la_commune": "NONETTE ORSONNETTE", + "coordonnees_gps": [ + 45.4846982805, + 3.28374300124 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28374300124, + 45.4846982805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44182dedade98049aecae5b60278136feef05e5c", + "fields": { + "ligne_5": "CHAMBROUTET", + "code_commune_insee": "79049", + "libelle_d_acheminement": "BRESSUIRE", + "code_postal": "79300", + "nom_de_la_commune": "BRESSUIRE", + "coordonnees_gps": [ + 46.8545755683, + -0.479375922286 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479375922286, + 46.8545755683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a41ff9a3d86b5d62ff2b98b1872daa993dca7b2", + "fields": { + "code_commune_insee": "63267", + "nom_de_la_commune": "PALLADUC", + "code_postal": "63550", + "coordonnees_gps": [ + 45.908225301, + 3.64219943697 + ], + "libelle_d_acheminement": "PALLADUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64219943697, + 45.908225301 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fca8424c3bc325932cf3bdd0dbf0e4241263f27a", + "fields": { + "ligne_5": "TERVES", + "code_commune_insee": "79049", + "libelle_d_acheminement": "BRESSUIRE", + "code_postal": "79300", + "nom_de_la_commune": "BRESSUIRE", + "coordonnees_gps": [ + 46.8545755683, + -0.479375922286 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.479375922286, + 46.8545755683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b24c7ee4accceec03327981ec1d23ca5af863f43", + "fields": { + "code_commune_insee": "63270", + "nom_de_la_commune": "PARENTIGNAT", + "code_postal": "63500", + "coordonnees_gps": [ + 45.5313091189, + 3.28696019987 + ], + "libelle_d_acheminement": "PARENTIGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.28696019987, + 45.5313091189 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c8cb40a5de379e1048623d6b32a3ba4cbd203d2", + "fields": { + "code_commune_insee": "79061", + "nom_de_la_commune": "CELLES SUR BELLE", + "code_postal": "79370", + "coordonnees_gps": [ + 46.2405369288, + -0.218181064771 + ], + "libelle_d_acheminement": "CELLES SUR BELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.218181064771, + 46.2405369288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "46439ef020a4c6d4a5833794a98573fa62a5dbb4", + "fields": { + "code_commune_insee": "63271", + "nom_de_la_commune": "PASLIERES", + "code_postal": "63290", + "coordonnees_gps": [ + 45.9233858396, + 3.5081870466 + ], + "libelle_d_acheminement": "PASLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5081870466, + 45.9233858396 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7398b36671bf8fdda2bc37bae2d4aa3a2e8b1c5d", + "fields": { + "code_commune_insee": "79070", + "nom_de_la_commune": "LA CHAPELLE BATON", + "code_postal": "79220", + "coordonnees_gps": [ + 46.4685249074, + -0.324601053258 + ], + "libelle_d_acheminement": "LA CHAPELLE BATON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.324601053258, + 46.4685249074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc1e0f40d50e604e4c251bcb2aaa8f4d8b9be993", + "fields": { + "code_commune_insee": "63274", + "nom_de_la_commune": "PERPEZAT", + "code_postal": "63210", + "coordonnees_gps": [ + 45.6721335766, + 2.77634650959 + ], + "libelle_d_acheminement": "PERPEZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77634650959, + 45.6721335766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45e6b9b08debd25dfa4add4c71151f914ff6b1c2", + "fields": { + "ligne_5": "BELLEVILLE", + "code_commune_insee": "79078", + "libelle_d_acheminement": "PLAINE D ARGENSON", + "code_postal": "79360", + "nom_de_la_commune": "PLAINE D ARGENSON", + "coordonnees_gps": [ + 46.1506834964, + -0.48413782937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48413782937, + 46.1506834964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9ab59fb31afba2c6fd29dc5f472ac72b31b934b", + "fields": { + "ligne_5": "PONT DE DORE", + "code_commune_insee": "63276", + "libelle_d_acheminement": "PESCHADOIRES", + "code_postal": "63920", + "nom_de_la_commune": "PESCHADOIRES", + "coordonnees_gps": [ + 45.8269406268, + 3.4811849091 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4811849091, + 45.8269406268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2601fae35c404f43495e0a68e92b9ead916ffc3d", + "fields": { + "ligne_5": "PRISSE", + "code_commune_insee": "79078", + "libelle_d_acheminement": "PLAINE D ARGENSON", + "code_postal": "79360", + "nom_de_la_commune": "PLAINE D ARGENSON", + "coordonnees_gps": [ + 46.1506834964, + -0.48413782937 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48413782937, + 46.1506834964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8320e6614922a933b2b39b356012f7d6eeaed2b1", + "fields": { + "code_commune_insee": "63277", + "nom_de_la_commune": "PESLIERES", + "code_postal": "63580", + "coordonnees_gps": [ + 45.4378027341, + 3.47346758756 + ], + "libelle_d_acheminement": "PESLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47346758756, + 45.4378027341 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f3babbd9785178502f6be77f8b986b0e59505ef7", + "fields": { + "ligne_5": "LE TEMPLE", + "code_commune_insee": "79079", + "libelle_d_acheminement": "MAULEON", + "code_postal": "79700", + "nom_de_la_commune": "MAULEON", + "coordonnees_gps": [ + 46.946804716, + -0.747142973233 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.747142973233, + 46.946804716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bad67eda1fcc300a75d3af57205fa5faa1905e4", + "fields": { + "code_commune_insee": "63292", + "nom_de_la_commune": "PUY ST GULMIER", + "code_postal": "63470", + "coordonnees_gps": [ + 45.7949000316, + 2.62744439303 + ], + "libelle_d_acheminement": "PUY ST GULMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62744439303, + 45.7949000316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a213182d5e678a83c76d43ba225cdd0d71ae14a", + "fields": { + "ligne_5": "RORTHAIS", + "code_commune_insee": "79079", + "libelle_d_acheminement": "MAULEON", + "code_postal": "79700", + "nom_de_la_commune": "MAULEON", + "coordonnees_gps": [ + 46.946804716, + -0.747142973233 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.747142973233, + 46.946804716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57f79ddb3661839c502dbe1ef2b9060502751744", + "fields": { + "code_commune_insee": "63296", + "nom_de_la_commune": "RAVEL", + "code_postal": "63190", + "coordonnees_gps": [ + 45.7870275365, + 3.39484221864 + ], + "libelle_d_acheminement": "RAVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39484221864, + 45.7870275365 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fe32351a8a1a24fd955eae9e4e17a7a646fa275", + "fields": { + "code_commune_insee": "79088", + "nom_de_la_commune": "CHICHE", + "code_postal": "79350", + "coordonnees_gps": [ + 46.7954609677, + -0.351768054404 + ], + "libelle_d_acheminement": "CHICHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.351768054404, + 46.7954609677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0375b085c3e2317f1d5e9de03e8117e639aa2fc9", + "fields": { + "code_commune_insee": "63300", + "nom_de_la_commune": "RIOM", + "code_postal": "63200", + "coordonnees_gps": [ + 45.8942667778, + 3.13246469719 + ], + "libelle_d_acheminement": "RIOM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13246469719, + 45.8942667778 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e398c6aa9f05342cc03a6cdc837df6a67ac80103", + "fields": { + "ligne_5": "AVAILLES SUR CHIZE", + "code_commune_insee": "79090", + "libelle_d_acheminement": "CHIZE", + "code_postal": "79170", + "nom_de_la_commune": "CHIZE", + "coordonnees_gps": [ + 46.1111767305, + -0.356732574606 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.356732574606, + 46.1111767305 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4429e6fa987391ef0b18bbe908a74fcb388dc9f4", + "fields": { + "code_commune_insee": "63302", + "nom_de_la_commune": "LA ROCHE BLANCHE", + "code_postal": "63670", + "coordonnees_gps": [ + 45.7137644349, + 3.13804954458 + ], + "libelle_d_acheminement": "LA ROCHE BLANCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13804954458, + 45.7137644349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51493fc27f7ac795e9960277264fd665b6408125", + "fields": { + "code_commune_insee": "79091", + "nom_de_la_commune": "CIRIERES", + "code_postal": "79140", + "coordonnees_gps": [ + 46.8409779696, + -0.621904692049 + ], + "libelle_d_acheminement": "CIRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.621904692049, + 46.8409779696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "962cd5ad3f7f197a70cfdfbf21d0e877ebcf8d91", + "fields": { + "code_commune_insee": "63318", + "nom_de_la_commune": "ST ANGEL", + "code_postal": "63410", + "coordonnees_gps": [ + 46.0018691299, + 2.93956309171 + ], + "libelle_d_acheminement": "ST ANGEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93956309171, + 46.0018691299 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7785462841bad474a017bc823356a4b4f54d26a1", + "fields": { + "code_commune_insee": "79100", + "nom_de_la_commune": "COULON", + "code_postal": "79510", + "coordonnees_gps": [ + 46.3372530309, + -0.58411752533 + ], + "libelle_d_acheminement": "COULON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.58411752533, + 46.3372530309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "609fcd069b052d63e750282ff441cb49b7cbaeb6", + "fields": { + "code_commune_insee": "63319", + "nom_de_la_commune": "ST ANTHEME", + "code_postal": "63660", + "coordonnees_gps": [ + 45.5557096264, + 3.89624958452 + ], + "libelle_d_acheminement": "ST ANTHEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89624958452, + 45.5557096264 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e88b5870994a53f522704b07482299c17e66de1", + "fields": { + "code_commune_insee": "79102", + "nom_de_la_commune": "COULONGES THOUARSAIS", + "code_postal": "79330", + "coordonnees_gps": [ + 46.9231412518, + -0.332982472624 + ], + "libelle_d_acheminement": "COULONGES THOUARSAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.332982472624, + 46.9231412518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17a350ed18838f67a807f0eda47756f66ae82dae", + "fields": { + "code_commune_insee": "63323", + "nom_de_la_commune": "ST BONNET LE BOURG", + "code_postal": "63630", + "coordonnees_gps": [ + 45.4368658908, + 3.59632655596 + ], + "libelle_d_acheminement": "ST BONNET LE BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.59632655596, + 45.4368658908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80913066e38c2e65d5e1d63f06b18bf335a417a6", + "fields": { + "code_commune_insee": "79118", + "nom_de_la_commune": "FENERY", + "code_postal": "79450", + "coordonnees_gps": [ + 46.6849155866, + -0.364879721586 + ], + "libelle_d_acheminement": "FENERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.364879721586, + 46.6849155866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "834c7df31019cbef3ef3ab3b3d2843ca1802e795", + "fields": { + "code_commune_insee": "63330", + "nom_de_la_commune": "ST CIRGUES SUR COUZE", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5459770641, + 3.14419958349 + ], + "libelle_d_acheminement": "ST CIRGUES SUR COUZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14419958349, + 45.5459770641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e3f7c990c536dbb8c3321e8f96ab4bfa7bd6397", + "fields": { + "code_commune_insee": "79124", + "nom_de_la_commune": "LES FORGES", + "code_postal": "79340", + "coordonnees_gps": [ + 46.5424201679, + -0.0197804413151 + ], + "libelle_d_acheminement": "LES FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0197804413151, + 46.5424201679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "490ef7006978a1398e936f9ecfc07f65254165ec", + "fields": { + "code_commune_insee": "63331", + "nom_de_la_commune": "ST CLEMENT DE VALORGUE", + "code_postal": "63660", + "coordonnees_gps": [ + 45.5006965349, + 3.93607974506 + ], + "libelle_d_acheminement": "ST CLEMENT DE VALORGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93607974506, + 45.5006965349 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f97cb667e788d6052fde7b8bf0a33e82257c047f", + "fields": { + "code_commune_insee": "79129", + "nom_de_la_commune": "FRESSINES", + "code_postal": "79370", + "coordonnees_gps": [ + 46.3248806803, + -0.299910960177 + ], + "libelle_d_acheminement": "FRESSINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.299910960177, + 46.3248806803 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1b2a12dbd5f8f6527d68488ae8a8f13bab460df", + "fields": { + "code_commune_insee": "63335", + "nom_de_la_commune": "ST DIERY", + "code_postal": "63320", + "coordonnees_gps": [ + 45.5401220112, + 3.00891497802 + ], + "libelle_d_acheminement": "ST DIERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00891497802, + 45.5401220112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c56da5a3a09a12ccb41e9dcb68354ee1622b0b3", + "fields": { + "code_commune_insee": "79134", + "nom_de_la_commune": "GLENAY", + "code_postal": "79330", + "coordonnees_gps": [ + 46.856442767, + -0.241719789951 + ], + "libelle_d_acheminement": "GLENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.241719789951, + 46.856442767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8adc3714281f73932f5f49e4563e2ae25f82af49", + "fields": { + "code_commune_insee": "63345", + "nom_de_la_commune": "ST GENES CHAMPANELLE", + "code_postal": "63122", + "coordonnees_gps": [ + 45.722927873, + 2.99890145376 + ], + "libelle_d_acheminement": "ST GENES CHAMPANELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99890145376, + 45.722927873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "457957690d61452ad460b1532d8eca0aaa67d526", + "fields": { + "ligne_5": "GOURNAY LOIZE", + "code_commune_insee": "79136", + "libelle_d_acheminement": "ALLOINAY", + "code_postal": "79110", + "nom_de_la_commune": "ALLOINAY", + "coordonnees_gps": [ + 46.1501272552, + -0.0484413702112 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0484413702112, + 46.1501272552 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "100a5afb746ae24ed6b3310f82c0fdf05ce61cc2", + "fields": { + "ligne_5": "MANSON", + "code_commune_insee": "63345", + "libelle_d_acheminement": "ST GENES CHAMPANELLE", + "code_postal": "63122", + "nom_de_la_commune": "ST GENES CHAMPANELLE", + "coordonnees_gps": [ + 45.722927873, + 2.99890145376 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99890145376, + 45.722927873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a1f8e0beabf1ab9b69f6fd7092266b9e9f47745f", + "fields": { + "code_commune_insee": "79137", + "nom_de_la_commune": "GRANZAY GRIPT", + "code_postal": "79360", + "coordonnees_gps": [ + 46.2259924524, + -0.480205972926 + ], + "libelle_d_acheminement": "GRANZAY GRIPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.480205972926, + 46.2259924524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f017036ebc4b5a373af6fed1abfc1a67d6155c2", + "fields": { + "code_commune_insee": "63354", + "nom_de_la_commune": "ST GERVAIS D AUVERGNE", + "code_postal": "63390", + "coordonnees_gps": [ + 46.0189715375, + 2.83089717473 + ], + "libelle_d_acheminement": "ST GERVAIS D AUVERGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83089717473, + 46.0189715375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7d9493d7b1c7ddfa3721a0a86fb0ea145a46526", + "fields": { + "ligne_5": "L ENCLAVE DE LA MARTINIERE", + "code_commune_insee": "79174", + "libelle_d_acheminement": "MELLE", + "code_postal": "79500", + "nom_de_la_commune": "MELLE", + "coordonnees_gps": [ + 46.2309583731, + -0.147888712984 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.147888712984, + 46.2309583731 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89cde3a72047dcea882d3aa86b20ee2ebd32c884", + "fields": { + "code_commune_insee": "63362", + "nom_de_la_commune": "ST IGNAT", + "code_postal": "63720", + "coordonnees_gps": [ + 45.9198911724, + 3.273318515 + ], + "libelle_d_acheminement": "ST IGNAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.273318515, + 45.9198911724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64cafca7588e7d98015c5842de68c0077db2d58a", + "fields": { + "code_commune_insee": "79177", + "nom_de_la_commune": "MESSE", + "code_postal": "79120", + "coordonnees_gps": [ + 46.2575229665, + 0.110039438392 + ], + "libelle_d_acheminement": "MESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.110039438392, + 46.2575229665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d10bf7057fb10eb827315364f4cbc555f6304d12", + "fields": { + "code_commune_insee": "63363", + "nom_de_la_commune": "ST JACQUES D AMBUR", + "code_postal": "63230", + "coordonnees_gps": [ + 45.8966831602, + 2.76646671593 + ], + "libelle_d_acheminement": "ST JACQUES D AMBUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76646671593, + 45.8966831602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17e6561935081d0c7a710f24adf3ff73eb0c2ea0", + "fields": { + "ligne_5": "MONCOUTANT", + "code_commune_insee": "79179", + "libelle_d_acheminement": "MONCOUTANT SUR SEVRE", + "code_postal": "79320", + "nom_de_la_commune": "MONCOUTANT SUR SEVRE", + "coordonnees_gps": [ + 46.7361693715, + -0.578776799054 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.578776799054, + 46.7361693715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4be0d8e2620b4b7b540b3659bc75ea535d2cd606", + "fields": { + "code_commune_insee": "63373", + "nom_de_la_commune": "ST MAIGNER", + "code_postal": "63330", + "coordonnees_gps": [ + 46.0784044812, + 2.68604538053 + ], + "libelle_d_acheminement": "ST MAIGNER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68604538053, + 46.0784044812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7865c879cbb807a68cd88ed7069e4b2527d874a6", + "fields": { + "ligne_5": "STE BLANDINE", + "code_commune_insee": "79185", + "libelle_d_acheminement": "AIGONDIGNE", + "code_postal": "79370", + "nom_de_la_commune": "AIGONDIGNE", + "coordonnees_gps": [ + 46.2907364441, + -0.296041998938 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.296041998938, + 46.2907364441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "261b6bdbc68ab20ebb63daee40fab8af91634085", + "fields": { + "code_commune_insee": "63387", + "nom_de_la_commune": "ST PRIEST BRAMEFANT", + "code_postal": "63310", + "coordonnees_gps": [ + 46.0285804944, + 3.44009346182 + ], + "libelle_d_acheminement": "ST PRIEST BRAMEFANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44009346182, + 46.0285804944 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd72811144119b47757d37ef430926d853f90792", + "fields": { + "ligne_5": "SOUCHE", + "code_commune_insee": "79191", + "libelle_d_acheminement": "NIORT", + "code_postal": "79000", + "nom_de_la_commune": "NIORT", + "coordonnees_gps": [ + 46.328260242, + -0.465353019369 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.465353019369, + 46.328260242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21239a93403c6dfb136dd9a2d5a05b1f1f430b81", + "fields": { + "code_commune_insee": "63399", + "nom_de_la_commune": "ST SULPICE", + "code_postal": "63760", + "coordonnees_gps": [ + 45.6470287269, + 2.6197535104 + ], + "libelle_d_acheminement": "ST SULPICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6197535104, + 45.6470287269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00e5da43c56b005cbf4c0597e05dd5657c982fc1", + "fields": { + "ligne_5": "ST LIGUAIRE", + "code_commune_insee": "79191", + "libelle_d_acheminement": "NIORT", + "code_postal": "79000", + "nom_de_la_commune": "NIORT", + "coordonnees_gps": [ + 46.328260242, + -0.465353019369 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.465353019369, + 46.328260242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0070b8495b3fd947478e34ddefcc261a5e21b638", + "fields": { + "code_commune_insee": "63400", + "nom_de_la_commune": "ST SYLVESTRE PRAGOULIN", + "code_postal": "63310", + "coordonnees_gps": [ + 46.0489526337, + 3.39583970589 + ], + "libelle_d_acheminement": "ST SYLVESTRE PRAGOULIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39583970589, + 46.0489526337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7ad970b59b09da2d798ab42b25d19b7d67bc886", + "fields": { + "code_commune_insee": "79195", + "nom_de_la_commune": "NUEIL LES AUBIERS", + "code_postal": "79250", + "coordonnees_gps": [ + 46.9403172404, + -0.596385417876 + ], + "libelle_d_acheminement": "NUEIL LES AUBIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.596385417876, + 46.9403172404 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88303c4a4bb4dc9de1c3a6e19f7f0b596eb6f382", + "fields": { + "code_commune_insee": "63402", + "nom_de_la_commune": "ST VICTOR MONTVIANEIX", + "code_postal": "63550", + "coordonnees_gps": [ + 45.9381159052, + 3.61132640921 + ], + "libelle_d_acheminement": "ST VICTOR MONTVIANEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61132640921, + 45.9381159052 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a73b9693233cfb1cd311e65a2d8d5a48603c314e", + "fields": { + "ligne_5": "OIRON", + "code_commune_insee": "79196", + "libelle_d_acheminement": "PLAINE ET VALLEES", + "code_postal": "79100", + "nom_de_la_commune": "PLAINE ET VALLEES", + "coordonnees_gps": [ + 46.9369329202, + -0.0842351282064 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0842351282064, + 46.9369329202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "310f0db6ea4589e2afd1138d52008cbf0dbc163e", + "fields": { + "code_commune_insee": "63407", + "nom_de_la_commune": "SAULZET LE FROID", + "code_postal": "63970", + "coordonnees_gps": [ + 45.6309455318, + 2.89220399205 + ], + "libelle_d_acheminement": "SAULZET LE FROID" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89220399205, + 45.6309455318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f5f0f7b7f71e19f56e283a3b9125bab5f4de571", + "fields": { + "code_commune_insee": "79208", + "nom_de_la_commune": "LA PEYRATTE", + "code_postal": "79200", + "coordonnees_gps": [ + 46.664567255, + -0.158712807616 + ], + "libelle_d_acheminement": "LA PEYRATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.158712807616, + 46.664567255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6dec339336a145b129a0f3017fa2cb38e40186c", + "fields": { + "code_commune_insee": "63428", + "nom_de_la_commune": "TEILHET", + "code_postal": "63560", + "coordonnees_gps": [ + 46.1023710126, + 2.81638595115 + ], + "libelle_d_acheminement": "TEILHET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81638595115, + 46.1023710126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5d648fcb26d24ccb1c480a8d4239d8fc2f5209ad", + "fields": { + "code_commune_insee": "79213", + "nom_de_la_commune": "POMPAIRE", + "code_postal": "79200", + "coordonnees_gps": [ + 46.6162346991, + -0.239456636326 + ], + "libelle_d_acheminement": "POMPAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.239456636326, + 46.6162346991 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe980ea03fe004f0838db0f2c87db6b0c3337e8f", + "fields": { + "code_commune_insee": "63431", + "nom_de_la_commune": "THIOLIERES", + "code_postal": "63600", + "coordonnees_gps": [ + 45.5821770217, + 3.69356744497 + ], + "libelle_d_acheminement": "THIOLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69356744497, + 45.5821770217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8c4d0e7b5b3413c7bdbfa028b2329a0af82b7a44", + "fields": { + "code_commune_insee": "79218", + "nom_de_la_commune": "PRESSIGNY", + "code_postal": "79390", + "coordonnees_gps": [ + 46.7517058478, + -0.0845157139309 + ], + "libelle_d_acheminement": "PRESSIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0845157139309, + 46.7517058478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5383b90113705f0e85191ab1680cdc73bd1b7d62", + "fields": { + "code_commune_insee": "63433", + "nom_de_la_commune": "TORTEBESSE", + "code_postal": "63470", + "coordonnees_gps": [ + 45.7273657826, + 2.65962165368 + ], + "libelle_d_acheminement": "TORTEBESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.65962165368, + 45.7273657826 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e551220114641d58864698b2f1db2e2e527c1500", + "fields": { + "code_commune_insee": "79220", + "nom_de_la_commune": "PRIN DEYRANCON", + "code_postal": "79210", + "coordonnees_gps": [ + 46.2187958758, + -0.646970168525 + ], + "libelle_d_acheminement": "PRIN DEYRANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.646970168525, + 46.2187958758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87e26a8140fd72a4716a767cddc84386c65762bf", + "fields": { + "code_commune_insee": "63439", + "nom_de_la_commune": "USSON", + "code_postal": "63490", + "coordonnees_gps": [ + 45.5273145167, + 3.3428220129 + ], + "libelle_d_acheminement": "USSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3428220129, + 45.5273145167 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef5977ed998934aa6804368cb20279485c4f1321", + "fields": { + "code_commune_insee": "79241", + "nom_de_la_commune": "ST CHRISTOPHE SUR ROC", + "code_postal": "79220", + "coordonnees_gps": [ + 46.4536311451, + -0.35987590684 + ], + "libelle_d_acheminement": "ST CHRISTOPHE SUR ROC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35987590684, + 46.4536311451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95b0c6c8aefe6bbbc7ffd71a35366ce2a138e98f", + "fields": { + "code_commune_insee": "63440", + "nom_de_la_commune": "VALBELEIX", + "code_postal": "63610", + "coordonnees_gps": [ + 45.4741100431, + 2.99840008974 + ], + "libelle_d_acheminement": "VALBELEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99840008974, + 45.4741100431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "070d68579de6df5ee157d16770b4a9450d29df16", + "fields": { + "code_commune_insee": "79242", + "nom_de_la_commune": "VOULMENTIN", + "code_postal": "79150", + "coordonnees_gps": [ + 46.960771587, + -0.51496460613 + ], + "libelle_d_acheminement": "VOULMENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.51496460613, + 46.960771587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2924f38239bc0fbebfda63bcaee9b9bcd1cf929b", + "fields": { + "code_commune_insee": "63443", + "nom_de_la_commune": "VARENNES SUR MORGE", + "code_postal": "63720", + "coordonnees_gps": [ + 45.9398936436, + 3.18639040806 + ], + "libelle_d_acheminement": "VARENNES SUR MORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18639040806, + 45.9398936436 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ecb7ed48abd122aca9a4ab9e69215c50fa7a3f5", + "fields": { + "code_commune_insee": "79244", + "nom_de_la_commune": "ST CYR LA LANDE", + "code_postal": "79100", + "coordonnees_gps": [ + 47.0506321675, + -0.150283399563 + ], + "libelle_d_acheminement": "ST CYR LA LANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.150283399563, + 47.0506321675 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00e5f043dd90fe1c5c9d8c91d6352659e31e6fd3", + "fields": { + "code_commune_insee": "63446", + "nom_de_la_commune": "VENSAT", + "code_postal": "63260", + "coordonnees_gps": [ + 46.0542113877, + 3.166015215 + ], + "libelle_d_acheminement": "VENSAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.166015215, + 46.0542113877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76a9dce40f408d654759d648028158217df8e980", + "fields": { + "code_commune_insee": "79255", + "nom_de_la_commune": "ST GERMAIN DE LONGUE CHAUME", + "code_postal": "79200", + "coordonnees_gps": [ + 46.7190274409, + -0.345105343999 + ], + "libelle_d_acheminement": "ST GERMAIN DE LONGUE CHAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.345105343999, + 46.7190274409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6fa573036c365b29a8e4c0ed6eb2c36dd1776be", + "fields": { + "ligne_5": "VERNET LA VARENNE", + "code_commune_insee": "63448", + "libelle_d_acheminement": "LE VERNET CHAMEANE", + "code_postal": "63580", + "nom_de_la_commune": "LE VERNET CHAMEANE", + "coordonnees_gps": [ + 45.4784207253, + 3.45441467275 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45441467275, + 45.4784207253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62049055929ba81170421ba16c56e7075f40b760", + "fields": { + "code_commune_insee": "79256", + "nom_de_la_commune": "ST GERMIER", + "code_postal": "79340", + "coordonnees_gps": [ + 46.4595030375, + -0.0455788333534 + ], + "libelle_d_acheminement": "ST GERMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0455788333534, + 46.4595030375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92dc6018e3c30106038cf5eab69fbfdb4f144f43", + "fields": { + "code_commune_insee": "63463", + "nom_de_la_commune": "VISCOMTAT", + "code_postal": "63250", + "coordonnees_gps": [ + 45.8286818103, + 3.68998040023 + ], + "libelle_d_acheminement": "VISCOMTAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68998040023, + 45.8286818103 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04c95de9dddfee0682dbdeb8aeaf3110caae12ba", + "fields": { + "code_commune_insee": "79267", + "nom_de_la_commune": "ST LIN", + "code_postal": "79420", + "coordonnees_gps": [ + 46.5326512584, + -0.228519741295 + ], + "libelle_d_acheminement": "ST LIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.228519741295, + 46.5326512584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fc67673abd018e8efaab60404d29e01fe441432", + "fields": { + "code_commune_insee": "63468", + "nom_de_la_commune": "VOLLORE MONTAGNE", + "code_postal": "63120", + "coordonnees_gps": [ + 45.7827859194, + 3.68768043722 + ], + "libelle_d_acheminement": "VOLLORE MONTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68768043722, + 45.7827859194 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53ac15afd7d81c85c0972689d329e28427c96f22", + "fields": { + "code_commune_insee": "79270", + "nom_de_la_commune": "ST MAIXENT L ECOLE", + "code_postal": "79400", + "coordonnees_gps": [ + 46.4128319027, + -0.210238265156 + ], + "libelle_d_acheminement": "ST MAIXENT L ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.210238265156, + 46.4128319027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b168cff18e9702aac67758fc0b6eaf4f9a8501b0", + "fields": { + "code_commune_insee": "63471", + "nom_de_la_commune": "YOUX", + "code_postal": "63700", + "coordonnees_gps": [ + 46.1408722674, + 2.8044100996 + ], + "libelle_d_acheminement": "YOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8044100996, + 46.1408722674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "786452a06c971a8073b779dfbd66d5994212bc7e", + "fields": { + "code_commune_insee": "79278", + "nom_de_la_commune": "ST MARTIN DU FOUILLOUX", + "code_postal": "79420", + "coordonnees_gps": [ + 46.5925831338, + -0.12664543987 + ], + "libelle_d_acheminement": "ST MARTIN DU FOUILLOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12664543987, + 46.5925831338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fec606d47dd801798fb84556477f246ad8ce693", + "fields": { + "code_commune_insee": "64009", + "nom_de_la_commune": "AHETZE", + "code_postal": "64210", + "coordonnees_gps": [ + 43.4042762685, + -1.57067985884 + ], + "libelle_d_acheminement": "AHETZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.57067985884, + 43.4042762685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d4e17057f5df5408a37d91e6cd64a7c76a08c65", + "fields": { + "code_commune_insee": "79294", + "nom_de_la_commune": "ST ROMANS DES CHAMPS", + "code_postal": "79230", + "coordonnees_gps": [ + 46.2026203924, + -0.348997865901 + ], + "libelle_d_acheminement": "ST ROMANS DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.348997865901, + 46.2026203924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eee4cadb576e49938270d172643b336953f89f15", + "fields": { + "code_commune_insee": "64012", + "nom_de_la_commune": "AINHARP", + "code_postal": "64130", + "coordonnees_gps": [ + 43.2547388679, + -0.935719451958 + ], + "libelle_d_acheminement": "AINHARP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.935719451958, + 43.2547388679 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c4aba15f6f455e633cf3f886a0f2d3629bc388c", + "fields": { + "code_commune_insee": "79297", + "nom_de_la_commune": "STE SOLINE", + "code_postal": "79120", + "coordonnees_gps": [ + 46.2515989193, + 0.0479672855851 + ], + "libelle_d_acheminement": "STE SOLINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0479672855851, + 46.2515989193 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0c7afe3bd82850fb8c597c86285d7629919a8286", + "fields": { + "code_commune_insee": "64018", + "nom_de_la_commune": "AMENDEUIX ONEIX", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3445045858, + -1.04369537456 + ], + "libelle_d_acheminement": "AMENDEUIX ONEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04369537456, + 43.3445045858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddff2ea96d886dca0c50f4517cd1a5fe7576b319", + "fields": { + "code_commune_insee": "79301", + "nom_de_la_commune": "ST VINCENT LA CHATRE", + "code_postal": "79500", + "coordonnees_gps": [ + 46.2128347937, + -0.0364291684702 + ], + "libelle_d_acheminement": "ST VINCENT LA CHATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0364291684702, + 46.2128347937 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3fdcb1f223183b78f22e5cd56b2fa5fbb0183a0d", + "fields": { + "code_commune_insee": "64019", + "nom_de_la_commune": "AMOROTS SUCCOS", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3625512592, + -1.12435569273 + ], + "libelle_d_acheminement": "AMOROTS SUCCOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12435569273, + 43.3625512592 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "954e22c1b64b283cf3a418fbf050f60916dfc9a6", + "fields": { + "code_commune_insee": "79308", + "nom_de_la_commune": "SCIECQ", + "code_postal": "79000", + "coordonnees_gps": [ + 46.3703981885, + -0.474635693538 + ], + "libelle_d_acheminement": "SCIECQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.474635693538, + 46.3703981885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cac5be9fb392f3a59d7308879ac86022c48bcdc", + "fields": { + "code_commune_insee": "64021", + "nom_de_la_commune": "ANDOINS", + "code_postal": "64420", + "coordonnees_gps": [ + 43.3003317348, + -0.223135510504 + ], + "libelle_d_acheminement": "ANDOINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.223135510504, + 43.3003317348 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "463f0635abbb2bad488e05c19d59614727a2cf1e", + "fields": { + "code_commune_insee": "79311", + "nom_de_la_commune": "SECONDIGNY", + "code_postal": "79130", + "coordonnees_gps": [ + 46.6116427776, + -0.441850125966 + ], + "libelle_d_acheminement": "SECONDIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.441850125966, + 46.6116427776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc40cb8ad9454b37537aa0cc497b8ecfdf1250cd", + "fields": { + "code_commune_insee": "64023", + "nom_de_la_commune": "ANGAIS", + "code_postal": "64510", + "coordonnees_gps": [ + 43.2387006623, + -0.247297469008 + ], + "libelle_d_acheminement": "ANGAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.247297469008, + 43.2387006623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b901db717868773f09d6f3673f55ed38ec12bf42", + "fields": { + "code_commune_insee": "79312", + "nom_de_la_commune": "SELIGNE", + "code_postal": "79170", + "coordonnees_gps": [ + 46.1398320782, + -0.270834484675 + ], + "libelle_d_acheminement": "SELIGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.270834484675, + 46.1398320782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf168c06c83885cfac389c369f8dc9ff8edcbbd3", + "fields": { + "code_commune_insee": "64026", + "nom_de_la_commune": "ANHAUX", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1459283383, + -1.30104249702 + ], + "libelle_d_acheminement": "ANHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.30104249702, + 43.1459283383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d5aff85722bc4a32c70585b69ec0afeecfd0a5f", + "fields": { + "code_commune_insee": "79326", + "nom_de_la_commune": "THENEZAY", + "code_postal": "79390", + "coordonnees_gps": [ + 46.7132141775, + -0.0410463377578 + ], + "libelle_d_acheminement": "THENEZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0410463377578, + 46.7132141775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7624196f434051c515da19dce573b343375f83b9", + "fields": { + "code_commune_insee": "64033", + "nom_de_la_commune": "ARAUX", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3409945704, + -0.819420157964 + ], + "libelle_d_acheminement": "ARAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.819420157964, + 43.3409945704 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ce0594afe921ceb0180eabd444132458899b4c5", + "fields": { + "code_commune_insee": "79329", + "nom_de_la_commune": "THOUARS", + "code_postal": "79100", + "coordonnees_gps": [ + 46.9828628407, + -0.199581467021 + ], + "libelle_d_acheminement": "THOUARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.199581467021, + 46.9828628407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08d100c137242b105a2988d74ced3a5a48668c78", + "fields": { + "code_commune_insee": "64045", + "nom_de_la_commune": "ARHANSUS", + "code_postal": "64120", + "coordonnees_gps": [ + 43.2548502906, + -1.02446609378 + ], + "libelle_d_acheminement": "ARHANSUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02446609378, + 43.2548502906 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e60b04fb71ec6e9d6fcc9d4b18266d05e98e92c", + "fields": { + "ligne_5": "MISSE", + "code_commune_insee": "79329", + "libelle_d_acheminement": "THOUARS", + "code_postal": "79100", + "nom_de_la_commune": "THOUARS", + "coordonnees_gps": [ + 46.9828628407, + -0.199581467021 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.199581467021, + 46.9828628407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c40825174cd577f05a9201c5a8d38c214d6742d1", + "fields": { + "code_commune_insee": "64057", + "nom_de_la_commune": "ARTHEZ DE BEARN", + "code_postal": "64370", + "coordonnees_gps": [ + 43.4663451599, + -0.620076434129 + ], + "libelle_d_acheminement": "ARTHEZ DE BEARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.620076434129, + 43.4663451599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e83680f00f5fc461ecb9168a822fafae3424bd47", + "fields": { + "code_commune_insee": "79331", + "nom_de_la_commune": "TOURTENAY", + "code_postal": "79100", + "coordonnees_gps": [ + 47.0467950162, + -0.111970256485 + ], + "libelle_d_acheminement": "TOURTENAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.111970256485, + 47.0467950162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51df77b5ced957557fad95281998a7cd23046df9", + "fields": { + "code_commune_insee": "64058", + "nom_de_la_commune": "ARTHEZ D ASSON", + "code_postal": "64800", + "coordonnees_gps": [ + 43.0890909736, + -0.253157457726 + ], + "libelle_d_acheminement": "ARTHEZ D ASSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.253157457726, + 43.0890909736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6c4fbe4500d4f21b574016456c71188da63686d", + "fields": { + "code_commune_insee": "79347", + "nom_de_la_commune": "VIENNAY", + "code_postal": "79200", + "coordonnees_gps": [ + 46.6959251659, + -0.247961764946 + ], + "libelle_d_acheminement": "VIENNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.247961764946, + 46.6959251659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d179f5e999ae0b1aaa7d8b70fd6a5ec25278b0a8", + "fields": { + "code_commune_insee": "64062", + "nom_de_la_commune": "ARUDY", + "code_postal": "64260", + "coordonnees_gps": [ + 43.1003244271, + -0.47407529449 + ], + "libelle_d_acheminement": "ARUDY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47407529449, + 43.1003244271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "255c00933da7cd1d1ec52995f91868d07b121b6a", + "fields": { + "code_commune_insee": "80002", + "nom_de_la_commune": "ABLAINCOURT PRESSOIR", + "code_postal": "80320", + "coordonnees_gps": [ + 49.8413195623, + 2.82481058921 + ], + "libelle_d_acheminement": "ABLAINCOURT PRESSOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82481058921, + 49.8413195623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e9191df14f6848f01a25c4e779a3b26b6994617", + "fields": { + "code_commune_insee": "64065", + "nom_de_la_commune": "ASCAIN", + "code_postal": "64310", + "coordonnees_gps": [ + 43.3396601016, + -1.6307994298 + ], + "libelle_d_acheminement": "ASCAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6307994298, + 43.3396601016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31c2eb735d4757d03f2edaef4334f2c15eec0d0e", + "fields": { + "code_commune_insee": "80003", + "nom_de_la_commune": "ACHEUX EN AMIENOIS", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0715561395, + 2.53117777106 + ], + "libelle_d_acheminement": "ACHEUX EN AMIENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53117777106, + 50.0715561395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c96e850468e67b8751d562b36d3df3df8eb8180a", + "fields": { + "code_commune_insee": "64070", + "nom_de_la_commune": "ASTIS", + "code_postal": "64450", + "coordonnees_gps": [ + 43.4371727056, + -0.322407779012 + ], + "libelle_d_acheminement": "ASTIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.322407779012, + 43.4371727056 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49cbb8fab091523de069abe267cade8847d1304b", + "fields": { + "code_commune_insee": "80009", + "nom_de_la_commune": "AILLY LE HAUT CLOCHER", + "code_postal": "80690", + "coordonnees_gps": [ + 50.0813661279, + 1.996040675 + ], + "libelle_d_acheminement": "AILLY LE HAUT CLOCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.996040675, + 50.0813661279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0574f53ff8bb980734c63e040625aa14b23124c1", + "fields": { + "code_commune_insee": "64071", + "nom_de_la_commune": "ATHOS ASPIS", + "code_postal": "64390", + "coordonnees_gps": [ + 43.4126325632, + -0.964931757196 + ], + "libelle_d_acheminement": "ATHOS ASPIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.964931757196, + 43.4126325632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da665d0746d7240ef4b7cea4a9d30d7630a13236", + "fields": { + "code_commune_insee": "80013", + "nom_de_la_commune": "AIRAINES", + "code_postal": "80270", + "coordonnees_gps": [ + 49.9720712318, + 1.94513035737 + ], + "libelle_d_acheminement": "AIRAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94513035737, + 49.9720712318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16d80df994cb86aed62379b65dac45155530c8ee", + "fields": { + "code_commune_insee": "64082", + "nom_de_la_commune": "AUTERRIVE", + "code_postal": "64270", + "coordonnees_gps": [ + 43.4655237651, + -1.00925153647 + ], + "libelle_d_acheminement": "AUTERRIVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00925153647, + 43.4655237651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be59f5f2153ed8557fa05a6ffd1b43f0b3be5872", + "fields": { + "code_commune_insee": "80017", + "nom_de_la_commune": "ALLAINES", + "code_postal": "80200", + "coordonnees_gps": [ + 49.9632577527, + 2.9374491434 + ], + "libelle_d_acheminement": "ALLAINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9374491434, + 49.9632577527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d57a4092fd62f04702293b4827cbff777ce85a0", + "fields": { + "code_commune_insee": "64094", + "nom_de_la_commune": "BARDOS", + "code_postal": "64520", + "coordonnees_gps": [ + 43.4681224323, + -1.22301840969 + ], + "libelle_d_acheminement": "BARDOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22301840969, + 43.4681224323 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac38e379a60590f0d78b678ff526969c3d1ebe05", + "fields": { + "code_commune_insee": "80021", + "nom_de_la_commune": "AMIENS", + "code_postal": "80000", + "coordonnees_gps": [ + 49.9009532186, + 2.29007445539 + ], + "libelle_d_acheminement": "AMIENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29007445539, + 49.9009532186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "927903741508d704a34c938390d46043c5bd24d1", + "fields": { + "code_commune_insee": "64100", + "nom_de_la_commune": "BASSUSSARRY", + "code_postal": "64200", + "coordonnees_gps": [ + 43.4445312416, + -1.49649880002 + ], + "libelle_d_acheminement": "BASSUSSARRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49649880002, + 43.4445312416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97c43093cc1396b9788bcf5eb481734fdbe87334", + "fields": { + "code_commune_insee": "80022", + "nom_de_la_commune": "ANDAINVILLE", + "code_postal": "80140", + "coordonnees_gps": [ + 49.8911987998, + 1.78468035475 + ], + "libelle_d_acheminement": "ANDAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78468035475, + 49.8911987998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a49e314ab7a8014ec9167084b4dffa500146a26b", + "fields": { + "code_commune_insee": "64102", + "nom_de_la_commune": "BAYONNE", + "code_postal": "64100", + "coordonnees_gps": [ + 43.4922254016, + -1.46607674358 + ], + "libelle_d_acheminement": "BAYONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.46607674358, + 43.4922254016 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c397472b1d0a5f24fabe6b08ad17ad76c90cc753", + "fields": { + "code_commune_insee": "80025", + "nom_de_la_commune": "ARGOULES", + "code_postal": "80120", + "coordonnees_gps": [ + 50.3376452337, + 1.81790740998 + ], + "libelle_d_acheminement": "ARGOULES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81790740998, + 50.3376452337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30d80bb487f17066a0c4e9bcc15a00ff6ff05c41", + "fields": { + "code_commune_insee": "64106", + "nom_de_la_commune": "BEHASQUE LAPISTE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3188892342, + -1.00802745389 + ], + "libelle_d_acheminement": "BEHASQUE LAPISTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00802745389, + 43.3188892342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfdae1e6fd6ed9d8d7078fe3ef02dc26ca3ce5d6", + "fields": { + "code_commune_insee": "80031", + "nom_de_la_commune": "ARVILLERS", + "code_postal": "80910", + "coordonnees_gps": [ + 49.7318756883, + 2.63586531946 + ], + "libelle_d_acheminement": "ARVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.63586531946, + 49.7318756883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "121ebb1cbb88d0b40a8c10efbcef6820ad3d34b4", + "fields": { + "code_commune_insee": "64114", + "nom_de_la_commune": "BERNADETS", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3767881583, + -0.282433844807 + ], + "libelle_d_acheminement": "BERNADETS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.282433844807, + 43.3767881583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c50001dac3112d80e09922ee15d697101f59fc2b", + "fields": { + "code_commune_insee": "80036", + "nom_de_la_commune": "AUBIGNY", + "code_postal": "80800", + "coordonnees_gps": [ + 49.887570915, + 2.47173096758 + ], + "libelle_d_acheminement": "AUBIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47173096758, + 49.887570915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb7ae0609d3c4ee207d60b54e971cf8aed6bbac2", + "fields": { + "code_commune_insee": "64128", + "nom_de_la_commune": "BILHERES", + "code_postal": "64260", + "coordonnees_gps": [ + 43.0663758418, + -0.482744274023 + ], + "libelle_d_acheminement": "BILHERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.482744274023, + 43.0663758418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a57357a6bdf6e413a467164e5979b32abbf46374", + "fields": { + "code_commune_insee": "80040", + "nom_de_la_commune": "AUMATRE", + "code_postal": "80140", + "coordonnees_gps": [ + 49.921572463, + 1.77316426694 + ], + "libelle_d_acheminement": "AUMATRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77316426694, + 49.921572463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20418ea441c248a3d44e26cbbdadc9279560361f", + "fields": { + "code_commune_insee": "64132", + "nom_de_la_commune": "BIZANOS", + "code_postal": "64320", + "coordonnees_gps": [ + 43.292458405, + -0.337175743313 + ], + "libelle_d_acheminement": "BIZANOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.337175743313, + 43.292458405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33ca6f5cfd27fed2f15a4edf0dd444bf38f4177d", + "fields": { + "code_commune_insee": "80041", + "nom_de_la_commune": "AUMONT", + "code_postal": "80640", + "coordonnees_gps": [ + 49.8787928902, + 1.92410862168 + ], + "libelle_d_acheminement": "AUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.92410862168, + 49.8787928902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8914468a9d3cbb3bf8cf7f6cb6d16acdf6f5d871", + "fields": { + "code_commune_insee": "64139", + "nom_de_la_commune": "BOSDARROS", + "code_postal": "64290", + "coordonnees_gps": [ + 43.2013292234, + -0.35837984121 + ], + "libelle_d_acheminement": "BOSDARROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.35837984121, + 43.2013292234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab16b272b0971dd672b0e437b6a3fa4181b9ff33", + "fields": { + "code_commune_insee": "80044", + "nom_de_la_commune": "AUTHIEULE", + "code_postal": "80600", + "coordonnees_gps": [ + 50.1359051678, + 2.37778968129 + ], + "libelle_d_acheminement": "AUTHIEULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37778968129, + 50.1359051678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f55db0bc7198419802479d3a86812b4d00cc5772", + "fields": { + "code_commune_insee": "64149", + "nom_de_la_commune": "BUGNEIN", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3686766215, + -0.754427090491 + ], + "libelle_d_acheminement": "BUGNEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.754427090491, + 43.3686766215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "300cd16ae331f92a835702ee86284cd5f8cf39b9", + "fields": { + "code_commune_insee": "80045", + "nom_de_la_commune": "AUTHUILLE", + "code_postal": "80300", + "coordonnees_gps": [ + 50.046768796, + 2.67678190814 + ], + "libelle_d_acheminement": "AUTHUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67678190814, + 50.046768796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03eef946280df7a9fbf10a804e7b56a81427dafc", + "fields": { + "code_commune_insee": "64154", + "nom_de_la_commune": "BUSSUNARITS SARRASQUETTE", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1692531272, + -1.14700332707 + ], + "libelle_d_acheminement": "BUSSUNARITS SARRASQUETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14700332707, + 43.1692531272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8bc1d631c18472656bb21e0e00d1644311848306", + "fields": { + "code_commune_insee": "80060", + "nom_de_la_commune": "BEALCOURT", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1965893183, + 2.18248694285 + ], + "libelle_d_acheminement": "BEALCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18248694285, + 50.1965893183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a03fdf782feed8dd6c9027f1873c7229c432c2f", + "fields": { + "code_commune_insee": "64155", + "nom_de_la_commune": "BUSTINCE IRIBERRY", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1873136505, + -1.18469156817 + ], + "libelle_d_acheminement": "BUSTINCE IRIBERRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.18469156817, + 43.1873136505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d0d2690aa2df1f016e88e342a18bd80a2b05e8d", + "fields": { + "code_commune_insee": "80064", + "nom_de_la_commune": "BEAUCOURT EN SANTERRE", + "code_postal": "80110", + "coordonnees_gps": [ + 49.7964929568, + 2.58623353641 + ], + "libelle_d_acheminement": "BEAUCOURT EN SANTERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.58623353641, + 49.7964929568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65ae1f076fdb4b5942378417834c01b9a25e3608", + "fields": { + "code_commune_insee": "64156", + "nom_de_la_commune": "BUZIET", + "code_postal": "64680", + "coordonnees_gps": [ + 43.1442617368, + -0.47589383596 + ], + "libelle_d_acheminement": "BUZIET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.47589383596, + 43.1442617368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc558ac2cb3a4d3a45d49e4e53412e2276243b85", + "fields": { + "code_commune_insee": "80066", + "nom_de_la_commune": "BEAUCOURT SUR L HALLUE", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9982031782, + 2.42756312859 + ], + "libelle_d_acheminement": "BEAUCOURT SUR L HALLUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42756312859, + 49.9982031782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17a64db6cc4a8ad144b162a4758be4ad7c1d7859", + "fields": { + "code_commune_insee": "64159", + "nom_de_la_commune": "CADILLON", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5242735908, + -0.154852094311 + ], + "libelle_d_acheminement": "CADILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.154852094311, + 43.5242735908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26952911175496c4176f0263f7346e6b2210f669", + "fields": { + "code_commune_insee": "80076", + "nom_de_la_commune": "BEHEN", + "code_postal": "80870", + "coordonnees_gps": [ + 50.0512628383, + 1.76199084272 + ], + "libelle_d_acheminement": "BEHEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76199084272, + 50.0512628383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8ac37a809d0f7d442e49bd8988cee7677ef7248", + "fields": { + "code_commune_insee": "64172", + "nom_de_la_commune": "CASTEIDE CANDAU", + "code_postal": "64370", + "coordonnees_gps": [ + 43.5246218611, + -0.557545327219 + ], + "libelle_d_acheminement": "CASTEIDE CANDAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.557545327219, + 43.5246218611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bcc4f3e8ea1945b0c05c3632592d270d40de19c", + "fields": { + "code_commune_insee": "80082", + "nom_de_la_commune": "BELLOY SUR SOMME", + "code_postal": "80310", + "coordonnees_gps": [ + 49.9807813124, + 2.13868145771 + ], + "libelle_d_acheminement": "BELLOY SUR SOMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13868145771, + 49.9807813124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfdaded6a9385a8b1dbb3e5f9cb86d076c41cefa", + "fields": { + "code_commune_insee": "64180", + "nom_de_la_commune": "CASTETPUGON", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5630952267, + -0.227861123127 + ], + "libelle_d_acheminement": "CASTETPUGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.227861123127, + 43.5630952267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f667057c8194165499a3384e07082a2ed9f764b", + "fields": { + "code_commune_insee": "80083", + "nom_de_la_commune": "BERGICOURT", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7444595181, + 2.0280499183 + ], + "libelle_d_acheminement": "BERGICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0280499183, + 49.7444595181 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "208a5ba961100bf0edaedb73678ad8ae2ef8887c", + "fields": { + "code_commune_insee": "64186", + "nom_de_la_commune": "CHARRE", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3109705377, + -0.854949348438 + ], + "libelle_d_acheminement": "CHARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.854949348438, + 43.3109705377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd0fbcdb81ed96a4e04eda0a0e802fa93fc98201", + "fields": { + "code_commune_insee": "80098", + "nom_de_la_commune": "BETTEMBOS", + "code_postal": "80290", + "coordonnees_gps": [ + 49.8039989409, + 1.88150562545 + ], + "libelle_d_acheminement": "BETTEMBOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88150562545, + 49.8039989409 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "72d99fda174fae60896ac6c1d06b32aa8e4799bf", + "fields": { + "code_commune_insee": "64190", + "nom_de_la_commune": "CLARACQ", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5062422755, + -0.293137631962 + ], + "libelle_d_acheminement": "CLARACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.293137631962, + 43.5062422755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7769ecb531fac8c368e0f43cda2977b69fcb72d4", + "fields": { + "code_commune_insee": "80099", + "nom_de_la_commune": "BETTENCOURT RIVIERE", + "code_postal": "80270", + "coordonnees_gps": [ + 49.9927948123, + 1.97764245774 + ], + "libelle_d_acheminement": "BETTENCOURT RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97764245774, + 49.9927948123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b93895d66f6f85966cfe6158dbc358bb2a044b8", + "fields": { + "code_commune_insee": "64197", + "nom_de_la_commune": "CUQUERON", + "code_postal": "64360", + "coordonnees_gps": [ + 43.3097711576, + -0.552973788897 + ], + "libelle_d_acheminement": "CUQUERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.552973788897, + 43.3097711576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52c64ee9eee26896e669cbefe228b796a3dda6bf", + "fields": { + "code_commune_insee": "80102", + "nom_de_la_commune": "BIACHES", + "code_postal": "80200", + "coordonnees_gps": [ + 49.9232199949, + 2.90026502306 + ], + "libelle_d_acheminement": "BIACHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90026502306, + 49.9232199949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "001f4f8340a73be7f4eebbc9431fb89d55b01a22", + "fields": { + "code_commune_insee": "64199", + "nom_de_la_commune": "DIUSSE", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5668688531, + -0.171440879545 + ], + "libelle_d_acheminement": "DIUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.171440879545, + 43.5668688531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f57a6c286504e326c175f202b478acbc1374c8ba", + "fields": { + "code_commune_insee": "80105", + "nom_de_la_commune": "BILLANCOURT", + "code_postal": "80190", + "coordonnees_gps": [ + 49.7384473061, + 2.8992050536 + ], + "libelle_d_acheminement": "BILLANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8992050536, + 49.7384473061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4326aba70f45e487a333ef6d3aaec65b0d927b67", + "fields": { + "ligne_5": "GOURETTE", + "code_commune_insee": "64204", + "libelle_d_acheminement": "EAUX BONNES", + "code_postal": "64440", + "nom_de_la_commune": "EAUX BONNES", + "coordonnees_gps": [ + 42.9515491129, + -0.358104565434 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.358104565434, + 42.9515491129 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "001bcd994f5b308215ac31e78929e6695aa66111", + "fields": { + "code_commune_insee": "80110", + "nom_de_la_commune": "BOISMONT", + "code_postal": "80230", + "coordonnees_gps": [ + 50.1579086414, + 1.6734332027 + ], + "libelle_d_acheminement": "BOISMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6734332027, + 50.1579086414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccc3e527818f9f3de2456e8bc3b119ad05483388", + "fields": { + "code_commune_insee": "64212", + "nom_de_la_commune": "ESPECHEDE", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3162501481, + -0.194897192092 + ], + "libelle_d_acheminement": "ESPECHEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.194897192092, + 43.3162501481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a27ce0101918f3f1ae4403444e17f1bf87ca7fc", + "fields": { + "code_commune_insee": "80116", + "nom_de_la_commune": "BOUCHOIR", + "code_postal": "80910", + "coordonnees_gps": [ + 49.7455243243, + 2.67870575145 + ], + "libelle_d_acheminement": "BOUCHOIR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67870575145, + 49.7455243243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bb77813659ae123d829d8e0d43134947771cc10", + "fields": { + "code_commune_insee": "64217", + "nom_de_la_commune": "ESQUIULE", + "code_postal": "64400", + "coordonnees_gps": [ + 43.1855622152, + -0.724360816506 + ], + "libelle_d_acheminement": "ESQUIULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.724360816506, + 43.1855622152 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ae951f610926c4d209ea7e8971c7f257dd4737c", + "fields": { + "code_commune_insee": "80119", + "nom_de_la_commune": "BOUGAINVILLE", + "code_postal": "80540", + "coordonnees_gps": [ + 49.8646198676, + 2.04693888376 + ], + "libelle_d_acheminement": "BOUGAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04693888376, + 49.8646198676 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ced966e29d66d471358d32c8686352a66d323d8", + "fields": { + "code_commune_insee": "64221", + "nom_de_la_commune": "ETCHARRY", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3321625989, + -0.927792287342 + ], + "libelle_d_acheminement": "ETCHARRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.927792287342, + 43.3321625989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "506837a0af68adae7237dd80185ba6b2c61269b0", + "fields": { + "code_commune_insee": "80126", + "nom_de_la_commune": "BOUTTENCOURT", + "code_postal": "80220", + "coordonnees_gps": [ + 49.9505843914, + 1.61002732845 + ], + "libelle_d_acheminement": "BOUTTENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61002732845, + 49.9505843914 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b1abd8fac7f60b4dd9da543d84b8eb98febbf8a", + "fields": { + "code_commune_insee": "64226", + "nom_de_la_commune": "FICHOUS RIUMAYOU", + "code_postal": "64410", + "coordonnees_gps": [ + 43.4864503765, + -0.438799385567 + ], + "libelle_d_acheminement": "FICHOUS RIUMAYOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.438799385567, + 43.4864503765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7535159fad09400a6095a23316815f94d13d413a", + "fields": { + "code_commune_insee": "80142", + "nom_de_la_commune": "BRIQUEMESNIL FLOXICOURT", + "code_postal": "80540", + "coordonnees_gps": [ + 49.8878430503, + 2.08048930837 + ], + "libelle_d_acheminement": "BRIQUEMESNIL FLOXICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08048930837, + 49.8878430503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58057f54e6916d7bf430a808dc93e4db18ff6ce6", + "fields": { + "code_commune_insee": "64228", + "nom_de_la_commune": "GABAT", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3765147976, + -1.03114679811 + ], + "libelle_d_acheminement": "GABAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.03114679811, + 43.3765147976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24379a310632f096d779654bedd3dd3b95e3ed57", + "fields": { + "code_commune_insee": "80143", + "nom_de_la_commune": "BROCOURT", + "code_postal": "80430", + "coordonnees_gps": [ + 49.8511224516, + 1.81975446597 + ], + "libelle_d_acheminement": "BROCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81975446597, + 49.8511224516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8b78707481fabf8c546bba4ee3e37bcaf9aac46", + "fields": { + "code_commune_insee": "64232", + "nom_de_la_commune": "GARLEDE MONDEBAT", + "code_postal": "64450", + "coordonnees_gps": [ + 43.5101140161, + -0.335110781651 + ], + "libelle_d_acheminement": "GARLEDE MONDEBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.335110781651, + 43.5101140161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23d0f1f39b3d593be7ce2285c3d5b1c7b0463ae7", + "fields": { + "code_commune_insee": "80148", + "nom_de_la_commune": "BUIGNY LES GAMACHES", + "code_postal": "80220", + "coordonnees_gps": [ + 50.0191959545, + 1.56883948114 + ], + "libelle_d_acheminement": "BUIGNY LES GAMACHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.56883948114, + 50.0191959545 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81a91e456205ee1fd23c8f98a74edf65168553f0", + "fields": { + "code_commune_insee": "64238", + "nom_de_la_commune": "GER", + "code_postal": "64530", + "coordonnees_gps": [ + 43.2540907071, + -0.0593210180343 + ], + "libelle_d_acheminement": "GER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0593210180343, + 43.2540907071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8dd9210dee10e057dd4535de0b86d329623fa243", + "fields": { + "code_commune_insee": "80149", + "nom_de_la_commune": "BUIGNY ST MACLOU", + "code_postal": "80132", + "coordonnees_gps": [ + 50.1528695248, + 1.81999601533 + ], + "libelle_d_acheminement": "BUIGNY ST MACLOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81999601533, + 50.1528695248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9ee59c0b5c841d62a7b589c6060ea2534233ff5", + "fields": { + "code_commune_insee": "64242", + "nom_de_la_commune": "GESTAS", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3529290484, + -0.881977356619 + ], + "libelle_d_acheminement": "GESTAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.881977356619, + 43.3529290484 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "883d0372a2e76acb52637c3a7b25f957a0c5196b", + "fields": { + "code_commune_insee": "80153", + "nom_de_la_commune": "BUS LES ARTOIS", + "code_postal": "80560", + "coordonnees_gps": [ + 50.1041450008, + 2.54068551705 + ], + "libelle_d_acheminement": "BUS LES ARTOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54068551705, + 50.1041450008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6525926b760badc29b5fbf24c31a4bb4d14acd01", + "fields": { + "code_commune_insee": "64243", + "nom_de_la_commune": "GEUS D ARZACQ", + "code_postal": "64370", + "coordonnees_gps": [ + 43.4810420798, + -0.522965041639 + ], + "libelle_d_acheminement": "GEUS D ARZACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.522965041639, + 43.4810420798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71bccf19d8dd3b3f70e5668df5cc9a6ffda92a74", + "fields": { + "code_commune_insee": "80164", + "nom_de_la_commune": "CAMON", + "code_postal": "80450", + "coordonnees_gps": [ + 49.9013220583, + 2.36320742783 + ], + "libelle_d_acheminement": "CAMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36320742783, + 49.9013220583 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5744fb1fa1f3f0d2d0be7b936791ee3030915e59", + "fields": { + "code_commune_insee": "80179", + "nom_de_la_commune": "CAULIERES", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7867766855, + 1.89908479868 + ], + "libelle_d_acheminement": "CAULIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89908479868, + 49.7867766855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e0093c6674558739ae7466562c33bfd1b179e2e", + "fields": { + "code_commune_insee": "80189", + "nom_de_la_commune": "LA CHAVATTE", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7556683271, + 2.76426883905 + ], + "libelle_d_acheminement": "LA CHAVATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76426883905, + 49.7556683271 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15c77e9f9d31864ccb08420284d409f67bf3c788", + "fields": { + "code_commune_insee": "80194", + "nom_de_la_commune": "CHUIGNES", + "code_postal": "80340", + "coordonnees_gps": [ + 49.8980530703, + 2.75163038239 + ], + "libelle_d_acheminement": "CHUIGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75163038239, + 49.8980530703 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e51eb14ded9e650495c5fca0132eea937d8813f", + "fields": { + "code_commune_insee": "80208", + "nom_de_la_commune": "CONTEVILLE", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1794083006, + 2.06745109886 + ], + "libelle_d_acheminement": "CONTEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06745109886, + 50.1794083006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d58d1890b76c49ff98e9c03b5b6f17ef0559edf6", + "fields": { + "code_commune_insee": "80212", + "nom_de_la_commune": "CORBIE", + "code_postal": "80800", + "coordonnees_gps": [ + 49.9202042489, + 2.49498506906 + ], + "libelle_d_acheminement": "CORBIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49498506906, + 49.9202042489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d288e2e98a6a4a51bd702ce44576e8545716e31e", + "fields": { + "code_commune_insee": "80216", + "nom_de_la_commune": "COURCELETTE", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0596663352, + 2.74385000997 + ], + "libelle_d_acheminement": "COURCELETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74385000997, + 50.0596663352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf740bfa9e8e380b715a3258ce667ceb5e502800", + "fields": { + "code_commune_insee": "80218", + "nom_de_la_commune": "COURCELLES SOUS MOYENCOURT", + "code_postal": "80290", + "coordonnees_gps": [ + 49.8097148289, + 2.04154408468 + ], + "libelle_d_acheminement": "COURCELLES SOUS MOYENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04154408468, + 49.8097148289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55ee2b098662d9b2b03ce1865a268a4a19914f47", + "fields": { + "code_commune_insee": "80224", + "nom_de_la_commune": "CRESSY OMENCOURT", + "code_postal": "80190", + "coordonnees_gps": [ + 49.7175340388, + 2.90771256914 + ], + "libelle_d_acheminement": "CRESSY OMENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90771256914, + 49.7175340388 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe3391d3b0137d519a23ecc11b0a30dcc1334184", + "fields": { + "code_commune_insee": "80230", + "nom_de_la_commune": "CURCHY", + "code_postal": "80190", + "coordonnees_gps": [ + 49.7790671802, + 2.86870993814 + ], + "libelle_d_acheminement": "CURCHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86870993814, + 49.7790671802 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c666975d80e254bb2ad80bc285303bb224942a38", + "fields": { + "code_commune_insee": "80232", + "nom_de_la_commune": "DAMERY", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7307619763, + 2.73676908988 + ], + "libelle_d_acheminement": "DAMERY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73676908988, + 49.7307619763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "531e1a3d8e185a98d1856779a640d92ba3b60ce3", + "fields": { + "code_commune_insee": "80233", + "nom_de_la_commune": "DANCOURT POPINCOURT", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6656361269, + 2.73132114771 + ], + "libelle_d_acheminement": "DANCOURT POPINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73132114771, + 49.6656361269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9210b6af2ae3ab332606af8091d799ed58d22d40", + "fields": { + "code_commune_insee": "80237", + "nom_de_la_commune": "DEMUIN", + "code_postal": "80110", + "coordonnees_gps": [ + 49.8163771889, + 2.53950066337 + ], + "libelle_d_acheminement": "DEMUIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53950066337, + 49.8163771889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cc86d22442062495a1d7bb03f282b113f061d18", + "fields": { + "code_commune_insee": "80239", + "nom_de_la_commune": "DEVISE", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8511316053, + 3.00863370114 + ], + "libelle_d_acheminement": "DEVISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00863370114, + 49.8511316053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c2e98d1d3f51f8b101d99972e0e2caa5853fa02", + "fields": { + "code_commune_insee": "80242", + "nom_de_la_commune": "DOMART SUR LA LUCE", + "code_postal": "80110", + "coordonnees_gps": [ + 49.8261059285, + 2.48829178135 + ], + "libelle_d_acheminement": "DOMART SUR LA LUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48829178135, + 49.8261059285 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bc61c46459dc0db0e264905c44ddca10b2c0957", + "fields": { + "code_commune_insee": "80251", + "nom_de_la_commune": "DOUDELAINVILLE", + "code_postal": "80140", + "coordonnees_gps": [ + 50.000881757, + 1.76404331717 + ], + "libelle_d_acheminement": "DOUDELAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76404331717, + 50.000881757 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f058eeb342738c05586fee1f744b20cdd073644", + "fields": { + "code_commune_insee": "80259", + "nom_de_la_commune": "DROMESNIL", + "code_postal": "80640", + "coordonnees_gps": [ + 49.8773914061, + 1.86918109607 + ], + "libelle_d_acheminement": "DROMESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86918109607, + 49.8773914061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3132d39f7ff34a3547f9b06035310354b96b6411", + "fields": { + "code_commune_insee": "80261", + "nom_de_la_commune": "DURY", + "code_postal": "80480", + "coordonnees_gps": [ + 49.8524314645, + 2.27669568816 + ], + "libelle_d_acheminement": "DURY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27669568816, + 49.8524314645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48f7203982cd878cdce7b72557eba87fce8024a2", + "fields": { + "code_commune_insee": "80263", + "nom_de_la_commune": "L ECHELLE ST AURIN", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6903778233, + 2.71710736022 + ], + "libelle_d_acheminement": "L ECHELLE ST AURIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71710736022, + 49.6903778233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "744ed1f98f5981b2b171ba11e6588c7235db02c1", + "fields": { + "code_commune_insee": "80267", + "nom_de_la_commune": "ENNEMAIN", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8401372627, + 2.95682894761 + ], + "libelle_d_acheminement": "ENNEMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95682894761, + 49.8401372627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a9abe42f48db1d5ff733d8ca42e401766fc006a", + "fields": { + "code_commune_insee": "80271", + "nom_de_la_commune": "EPEHY", + "code_postal": "80740", + "coordonnees_gps": [ + 50.0062828894, + 3.13298664943 + ], + "libelle_d_acheminement": "EPEHY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13298664943, + 50.0062828894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5aac70e1dc2e8fbd3bfa1c3ddebcccd7b632ea24", + "fields": { + "code_commune_insee": "80275", + "nom_de_la_commune": "EQUANCOURT", + "code_postal": "80360", + "coordonnees_gps": [ + 50.0353500187, + 3.01428549261 + ], + "libelle_d_acheminement": "EQUANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01428549261, + 50.0353500187 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "470ae1d72ba10159e4b85ff2b0d82595ad92ed60", + "fields": { + "code_commune_insee": "80282", + "nom_de_la_commune": "ERONDELLE", + "code_postal": "80580", + "coordonnees_gps": [ + 50.0466779829, + 1.87770627984 + ], + "libelle_d_acheminement": "ERONDELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87770627984, + 50.0466779829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b395ebdc24b7c8bf43656db972ec90b4a12fb64", + "fields": { + "ligne_5": "ETINEHEM", + "code_commune_insee": "80295", + "libelle_d_acheminement": "ETINEHEM MERICOURT", + "code_postal": "80340", + "nom_de_la_commune": "ETINEHEM MERICOURT", + "coordonnees_gps": [ + 49.9355483408, + 2.68802553545 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68802553545, + 49.9355483408 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "162fe9688b0443f57b29e8b17d56d4bb044a0b6b", + "fields": { + "code_commune_insee": "80302", + "nom_de_la_commune": "FAVEROLLES", + "code_postal": "80500", + "coordonnees_gps": [ + 49.6455544304, + 2.61943483377 + ], + "libelle_d_acheminement": "FAVEROLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.61943483377, + 49.6455544304 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f49bd84d6b05cecc5bbccff3b429918e12bd3b77", + "fields": { + "code_commune_insee": "80303", + "nom_de_la_commune": "FAVIERES", + "code_postal": "80120", + "coordonnees_gps": [ + 50.2347245529, + 1.6686251564 + ], + "libelle_d_acheminement": "FAVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6686251564, + 50.2347245529 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e305d8bc8024247e9b79d6b1b4b66fd3ab9c6e26", + "fields": { + "code_commune_insee": "80304", + "nom_de_la_commune": "FAY", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8873496451, + 2.80237864431 + ], + "libelle_d_acheminement": "FAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80237864431, + 49.8873496451 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3809f85a5964b6cea1e73d825943be7ad09f88a4", + "fields": { + "code_commune_insee": "80310", + "nom_de_la_commune": "FIENVILLERS", + "code_postal": "80750", + "coordonnees_gps": [ + 50.1178805706, + 2.23440676149 + ], + "libelle_d_acheminement": "FIENVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23440676149, + 50.1178805706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "99f920c17682bd710746239a5c10cfd2559ac0d5", + "fields": { + "code_commune_insee": "80312", + "nom_de_la_commune": "FINS", + "code_postal": "80360", + "coordonnees_gps": [ + 50.0420364674, + 3.04221057518 + ], + "libelle_d_acheminement": "FINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.04221057518, + 50.0420364674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5bc397e2f8ad21916c099c47dc5f38a637c3ee96", + "fields": { + "code_commune_insee": "80316", + "nom_de_la_commune": "FLESSELLES", + "code_postal": "80260", + "coordonnees_gps": [ + 50.0032539438, + 2.25940625975 + ], + "libelle_d_acheminement": "FLESSELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25940625975, + 50.0032539438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57ac85f377042041f8cd6c71fb170bf4c381225f", + "fields": { + "code_commune_insee": "80329", + "nom_de_la_commune": "FORCEVILLE", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0660087651, + 2.5554412385 + ], + "libelle_d_acheminement": "FORCEVILLE EN AMIENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5554412385, + 50.0660087651 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d30ba90253ff3e410face302ff1c6e5fd4e07392", + "fields": { + "code_commune_insee": "80334", + "nom_de_la_commune": "FOSSEMANANT", + "code_postal": "80160", + "coordonnees_gps": [ + 49.8021156407, + 2.1900941827 + ], + "libelle_d_acheminement": "FOSSEMANANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1900941827, + 49.8021156407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdbb122ca78aca447e597ba114fa9aff6198fb3f", + "fields": { + "code_commune_insee": "80339", + "nom_de_la_commune": "FOUQUESCOURT", + "code_postal": "80170", + "coordonnees_gps": [ + 49.7707802133, + 2.74741302134 + ], + "libelle_d_acheminement": "FOUQUESCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.74741302134, + 49.7707802133 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6d8bc853dbf8f199694347c7d3c341677c7c441", + "fields": { + "code_commune_insee": "80357", + "nom_de_la_commune": "FRESNOY AU VAL", + "code_postal": "80290", + "coordonnees_gps": [ + 49.8374899033, + 2.05143739704 + ], + "libelle_d_acheminement": "FRESNOY AU VAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05143739704, + 49.8374899033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2696ea2b313884e0d90b523a863c15e65312433c", + "fields": { + "ligne_5": "FROHEN LE PETIT", + "code_commune_insee": "80369", + "libelle_d_acheminement": "FROHEN SUR AUTHIE", + "code_postal": "80370", + "nom_de_la_commune": "FROHEN SUR AUTHIE", + "coordonnees_gps": [ + 50.2020618045, + 2.20851468779 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20851468779, + 50.2020618045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c3070f3e4d8052c7493a077b7ff4a3a994ea45b", + "fields": { + "code_commune_insee": "80377", + "nom_de_la_commune": "GEZAINCOURT", + "code_postal": "80600", + "coordonnees_gps": [ + 50.1393411723, + 2.31166746071 + ], + "libelle_d_acheminement": "GEZAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31166746071, + 50.1393411723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bec91cf5f01576ede98e91be75c2a0aa0f1b70f", + "fields": { + "code_commune_insee": "80384", + "nom_de_la_commune": "GRANDCOURT", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0695593996, + 2.71123987118 + ], + "libelle_d_acheminement": "GRANDCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.71123987118, + 50.0695593996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8891ab0c2f347699e9670c96b4dc96c93aee3571", + "fields": { + "code_commune_insee": "80388", + "nom_de_la_commune": "GREBAULT MESNIL", + "code_postal": "80140", + "coordonnees_gps": [ + 50.0243091367, + 1.72232467954 + ], + "libelle_d_acheminement": "GREBAULT MESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72232467954, + 50.0243091367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fbe221bcb41da5ffdbb5d046e634e485eef3ee3", + "fields": { + "code_commune_insee": "80392", + "nom_de_la_commune": "GROUCHES LUCHUEL", + "code_postal": "80600", + "coordonnees_gps": [ + 50.1821528022, + 2.38075340423 + ], + "libelle_d_acheminement": "GROUCHES LUCHUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38075340423, + 50.1821528022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13f58223f6871ae1610e1af0774216306724a7d9", + "fields": { + "ligne_5": "HOCQUINCOURT", + "code_commune_insee": "80406", + "libelle_d_acheminement": "HALLENCOURT", + "code_postal": "80490", + "nom_de_la_commune": "HALLENCOURT", + "coordonnees_gps": [ + 49.9955608353, + 1.87489334789 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87489334789, + 49.9955608353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d53df3c1e294fee7b7df7f56a4a799ab514ff17b", + "fields": { + "code_commune_insee": "80418", + "nom_de_la_commune": "HARDECOURT AUX BOIS", + "code_postal": "80360", + "coordonnees_gps": [ + 49.9931432498, + 2.81396139723 + ], + "libelle_d_acheminement": "HARDECOURT AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81396139723, + 49.9931432498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d321e619b358e81c24cf9c7ee7a495ecc25ef0a7", + "fields": { + "code_commune_insee": "80422", + "nom_de_la_commune": "HAUTVILLERS OUVILLE", + "code_postal": "80132", + "coordonnees_gps": [ + 50.1697369629, + 1.82014998118 + ], + "libelle_d_acheminement": "HAUTVILLERS OUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82014998118, + 50.1697369629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0d7bc08e09d6841e57f37ab92a123290201eb041", + "fields": { + "code_commune_insee": "80424", + "nom_de_la_commune": "HEBECOURT", + "code_postal": "80680", + "coordonnees_gps": [ + 49.8182332629, + 2.25969752541 + ], + "libelle_d_acheminement": "HEBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25969752541, + 49.8182332629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0ffe78737ac63f106261319077557db423b18da", + "fields": { + "code_commune_insee": "80426", + "nom_de_la_commune": "HEILLY", + "code_postal": "80800", + "coordonnees_gps": [ + 49.9611960311, + 2.52981039614 + ], + "libelle_d_acheminement": "HEILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.52981039614, + 49.9611960311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "906b74ef923a4163033a27557b9c6bfcc773fbb7", + "fields": { + "code_commune_insee": "80428", + "nom_de_la_commune": "HEM MONACU", + "code_postal": "80360", + "coordonnees_gps": [ + 49.9573789855, + 2.84096165991 + ], + "libelle_d_acheminement": "HEM MONACU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84096165991, + 49.9573789855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "165bcc041eb95b99e7079ca98094340ae361f551", + "fields": { + "code_commune_insee": "80429", + "nom_de_la_commune": "HENENCOURT", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0036646587, + 2.56232754708 + ], + "libelle_d_acheminement": "HENENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56232754708, + 50.0036646587 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8dadb491f1b7a6ec0de0aa2b66caaa27982a4ff", + "fields": { + "code_commune_insee": "64257", + "nom_de_la_commune": "HAUT DE BOSDARROS", + "code_postal": "64800", + "coordonnees_gps": [ + 43.1689449769, + -0.327961166577 + ], + "libelle_d_acheminement": "HAUT DE BOSDARROS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.327961166577, + 43.1689449769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b80d63d6d0d36e9977bd8628956e8163791e1c9", + "fields": { + "code_commune_insee": "64258", + "nom_de_la_commune": "HAUX", + "code_postal": "64470", + "coordonnees_gps": [ + 43.0614133334, + -0.837865590402 + ], + "libelle_d_acheminement": "HAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.837865590402, + 43.0614133334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc80931030edad96d33bce0a6a2d06513c505b15", + "fields": { + "code_commune_insee": "64273", + "nom_de_la_commune": "IRISSARRY", + "code_postal": "64780", + "coordonnees_gps": [ + 43.2614719543, + -1.23617834401 + ], + "libelle_d_acheminement": "IRISSARRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.23617834401, + 43.2614719543 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f6ed36990456b12918a0eac1a8fed37dd0f09a4", + "fields": { + "code_commune_insee": "64284", + "nom_de_la_commune": "JURANCON", + "code_postal": "64110", + "coordonnees_gps": [ + 43.2695632007, + -0.407001172739 + ], + "libelle_d_acheminement": "JURANCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.407001172739, + 43.2695632007 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0399c08457ae821768af69dc8157fd96befa190", + "fields": { + "code_commune_insee": "64286", + "nom_de_la_commune": "LAA MONDRANS", + "code_postal": "64300", + "coordonnees_gps": [ + 43.4559984058, + -0.770649350183 + ], + "libelle_d_acheminement": "LAA MONDRANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.770649350183, + 43.4559984058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c98d861faf68201ab2703a713871327be6cf12e", + "fields": { + "code_commune_insee": "64304", + "nom_de_la_commune": "LAHONCE", + "code_postal": "64990", + "coordonnees_gps": [ + 43.4844685694, + -1.39601479811 + ], + "libelle_d_acheminement": "LAHONCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39601479811, + 43.4844685694 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcd3147e8c71a1df1f216a55a491ce89f68ef9a5", + "fields": { + "code_commune_insee": "64307", + "nom_de_la_commune": "LALONGUE", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4812762295, + -0.188843126276 + ], + "libelle_d_acheminement": "LALONGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.188843126276, + 43.4812762295 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ceaecbee1e228214f005cba7d1e8656e780f9a9", + "fields": { + "code_commune_insee": "64311", + "nom_de_la_commune": "LANNECAUBE", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4823827586, + -0.216562157908 + ], + "libelle_d_acheminement": "LANNECAUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.216562157908, + 43.4823827586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2096e1cf7a960a842d40c554ffd6336efd7e1e9", + "fields": { + "code_commune_insee": "64318", + "nom_de_la_commune": "LARREULE", + "code_postal": "64410", + "coordonnees_gps": [ + 43.4734148077, + -0.470945656972 + ], + "libelle_d_acheminement": "LARREULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.470945656972, + 43.4734148077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a9fe39aab66bc296e17517a322e366eb357e97c", + "fields": { + "code_commune_insee": "64326", + "nom_de_la_commune": "LAY LAMIDOU", + "code_postal": "64190", + "coordonnees_gps": [ + 43.2943257752, + -0.708646235265 + ], + "libelle_d_acheminement": "LAY LAMIDOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.708646235265, + 43.2943257752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e24f29d0c65ec4d574b746d3ddfef935627e431b", + "fields": { + "code_commune_insee": "64329", + "nom_de_la_commune": "LEE", + "code_postal": "64320", + "coordonnees_gps": [ + 43.2913998523, + -0.286759766855 + ], + "libelle_d_acheminement": "LEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.286759766855, + 43.2913998523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae0b97bad025ff97e33e5cd3f05d5feae5250f44", + "fields": { + "code_commune_insee": "64341", + "nom_de_la_commune": "LICHOS", + "code_postal": "64130", + "coordonnees_gps": [ + 43.3089314168, + -0.881172413258 + ], + "libelle_d_acheminement": "LICHOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.881172413258, + 43.3089314168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8c6543605cdb6d1a7af40f7738d7a3e01a6aba8", + "fields": { + "code_commune_insee": "64349", + "nom_de_la_commune": "LOUBIENG", + "code_postal": "64300", + "coordonnees_gps": [ + 43.4208530318, + -0.756562747566 + ], + "libelle_d_acheminement": "LOUBIENG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.756562747566, + 43.4208530318 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da1e07aaf8a2e32f39395ed0ff824c804ece7272", + "fields": { + "code_commune_insee": "64350", + "nom_de_la_commune": "LOUHOSSOA", + "code_postal": "64250", + "coordonnees_gps": [ + 43.3122720751, + -1.34791351208 + ], + "libelle_d_acheminement": "LOUHOSSOA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.34791351208, + 43.3122720751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "987dce5d13e7b2696c8d94e1c4587125304fdc2b", + "fields": { + "code_commune_insee": "64356", + "nom_de_la_commune": "LUC ARMAU", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4265649374, + -0.0728344787144 + ], + "libelle_d_acheminement": "LUC ARMAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0728344787144, + 43.4265649374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a9f14146af4de2a973c65f4cc138b198bb68327", + "fields": { + "code_commune_insee": "64368", + "nom_de_la_commune": "MASPARRAUTE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.3919071747, + -1.08723243847 + ], + "libelle_d_acheminement": "MASPARRAUTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08723243847, + 43.3919071747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "531209269613fdee7b347f89155e6412841e42a2", + "fields": { + "code_commune_insee": "64372", + "nom_de_la_commune": "MAURE", + "code_postal": "64460", + "coordonnees_gps": [ + 43.3777021697, + -0.078138626285 + ], + "libelle_d_acheminement": "MAURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.078138626285, + 43.3777021697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "080c5e934f0b225840eb03f425c2f56e455ac48a", + "fields": { + "code_commune_insee": "64390", + "nom_de_la_commune": "MONCAUP", + "code_postal": "64350", + "coordonnees_gps": [ + 43.4798319005, + -0.0536135830947 + ], + "libelle_d_acheminement": "MONCAUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0536135830947, + 43.4798319005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bec3172044f7429a5c15f251e98b060f1dae3f9c", + "fields": { + "code_commune_insee": "64393", + "nom_de_la_commune": "MONEIN", + "code_postal": "64360", + "coordonnees_gps": [ + 43.2911768338, + -0.562421409058 + ], + "libelle_d_acheminement": "MONEIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.562421409058, + 43.2911768338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7f4b63d729fb917fe475d82f05c709b99aca47d", + "fields": { + "code_commune_insee": "64394", + "nom_de_la_commune": "MONPEZAT", + "code_postal": "64350", + "coordonnees_gps": [ + 43.5011506043, + -0.0640641372412 + ], + "libelle_d_acheminement": "MONPEZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0640641372412, + 43.5011506043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "157623fcf913b24d482d8e51e0e22e43abd403ab", + "fields": { + "code_commune_insee": "64395", + "nom_de_la_commune": "MONSEGUR", + "code_postal": "64460", + "coordonnees_gps": [ + 43.4355097332, + -0.0128037847262 + ], + "libelle_d_acheminement": "MONSEGUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0128037847262, + 43.4355097332 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "892a8ebd5e7c11275318d98ea21730bf5d395f6c", + "fields": { + "ligne_5": "ARANCE", + "code_commune_insee": "64396", + "libelle_d_acheminement": "MONT", + "code_postal": "64300", + "nom_de_la_commune": "MONT", + "coordonnees_gps": [ + 43.4270216184, + -0.659420644515 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.659420644515, + 43.4270216184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b678d1aabd140bbce0a15c9fe950dc13ce23c5c2", + "fields": { + "code_commune_insee": "64404", + "nom_de_la_commune": "MONTORY", + "code_postal": "64470", + "coordonnees_gps": [ + 43.0994626037, + -0.810517017656 + ], + "libelle_d_acheminement": "MONTORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.810517017656, + 43.0994626037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e310f97de907a34808c23dfec80dbceabc348bb1", + "fields": { + "code_commune_insee": "64406", + "nom_de_la_commune": "MORLANNE", + "code_postal": "64370", + "coordonnees_gps": [ + 43.5087142383, + -0.54195487058 + ], + "libelle_d_acheminement": "MORLANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.54195487058, + 43.5087142383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0511d8c5d83e77d1ceae2e076e71c6a2d6066bfb", + "fields": { + "code_commune_insee": "64407", + "nom_de_la_commune": "MOUGUERRE", + "code_postal": "64990", + "coordonnees_gps": [ + 43.4574606767, + -1.40476602538 + ], + "libelle_d_acheminement": "MOUGUERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.40476602538, + 43.4574606767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fbb0a4d963bb0f340401089e21d02295694c81f", + "fields": { + "code_commune_insee": "64415", + "nom_de_la_commune": "NAVAILLES ANGOS", + "code_postal": "64450", + "coordonnees_gps": [ + 43.4150286053, + -0.342429253025 + ], + "libelle_d_acheminement": "NAVAILLES ANGOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.342429253025, + 43.4150286053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8180253183d72f31df57e8d8c1b059b27d965dc", + "fields": { + "code_commune_insee": "64418", + "nom_de_la_commune": "NOGUERES", + "code_postal": "64150", + "coordonnees_gps": [ + 43.3707949043, + -0.600380518459 + ], + "libelle_d_acheminement": "NOGUERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.600380518459, + 43.3707949043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "249146462877a78d05bd986fd6a921e3e1e1292b", + "fields": { + "code_commune_insee": "64430", + "nom_de_la_commune": "ORTHEZ", + "code_postal": "64300", + "coordonnees_gps": [ + 43.4943173399, + -0.779874853399 + ], + "libelle_d_acheminement": "ORTHEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.779874853399, + 43.4943173399 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b41f3252927621b3424b542d09afb4767fecaf45", + "fields": { + "code_commune_insee": "64436", + "nom_de_la_commune": "OSSES", + "code_postal": "64780", + "coordonnees_gps": [ + 43.242011308, + -1.27505154323 + ], + "libelle_d_acheminement": "OSSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27505154323, + 43.242011308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b33b5ae1b5baa2fe28697c971301cd352addf8f", + "fields": { + "code_commune_insee": "64437", + "nom_de_la_commune": "OSTABAT ASME", + "code_postal": "64120", + "coordonnees_gps": [ + 43.2605319233, + -1.06809217449 + ], + "libelle_d_acheminement": "OSTABAT ASME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.06809217449, + 43.2605319233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23ec6447cee9312ca746f44b0165ec6dd7e0bfcb", + "fields": { + "code_commune_insee": "64441", + "nom_de_la_commune": "PAGOLLE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.2250651513, + -1.00007203267 + ], + "libelle_d_acheminement": "PAGOLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.00007203267, + 43.2250651513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bc13d71b2b1eac173e2009cbbe4bb1bcbddf4de", + "fields": { + "code_commune_insee": "64458", + "nom_de_la_commune": "PRECHACQ JOSBAIG", + "code_postal": "64190", + "coordonnees_gps": [ + 43.2585423682, + -0.732506093638 + ], + "libelle_d_acheminement": "PRECHACQ JOSBAIG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.732506093638, + 43.2585423682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5aa7ece5a9c2f773a5cad6ec59dafc6f9d767f63", + "fields": { + "code_commune_insee": "64463", + "nom_de_la_commune": "REBENACQ", + "code_postal": "64260", + "coordonnees_gps": [ + 43.1559802063, + -0.394552598132 + ], + "libelle_d_acheminement": "REBENACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.394552598132, + 43.1559802063 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c695ed542332d849a3242c5957deab57b47be375", + "fields": { + "code_commune_insee": "64464", + "nom_de_la_commune": "RIBARROUY", + "code_postal": "64330", + "coordonnees_gps": [ + 43.5217745514, + -0.276171114152 + ], + "libelle_d_acheminement": "RIBARROUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.276171114152, + 43.5217745514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfdd655d47212155b9e81ae1b8427afa17d7f8ca", + "fields": { + "code_commune_insee": "64482", + "nom_de_la_commune": "ST JAMMES", + "code_postal": "64160", + "coordonnees_gps": [ + 43.3614930531, + -0.253048695967 + ], + "libelle_d_acheminement": "ST JAMMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.253048695967, + 43.3614930531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc41fd69aea8f9b709ed9a403f3df50281699556", + "fields": { + "code_commune_insee": "64495", + "nom_de_la_commune": "ST PEE SUR NIVELLE", + "code_postal": "64310", + "coordonnees_gps": [ + 43.3564883514, + -1.55534617636 + ], + "libelle_d_acheminement": "ST PEE SUR NIVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55534617636, + 43.3564883514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f506bdeda4b906fa67f7ca491eb45c30232de29", + "fields": { + "code_commune_insee": "64513", + "nom_de_la_commune": "SAUVETERRE DE BEARN", + "code_postal": "64390", + "coordonnees_gps": [ + 43.4115819423, + -0.931810105485 + ], + "libelle_d_acheminement": "SAUVETERRE DE BEARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.931810105485, + 43.4115819423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8234176dea3a0e4b46c8a1af3dfc1b6f5390fb2d", + "fields": { + "code_commune_insee": "64520", + "nom_de_la_commune": "SERRES MORLAAS", + "code_postal": "64160", + "coordonnees_gps": [ + 43.32289558, + -0.261497500044 + ], + "libelle_d_acheminement": "SERRES MORLAAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.261497500044, + 43.32289558 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8cab2b25a4f7fe0123fa7bcec1c243f535529af1", + "fields": { + "code_commune_insee": "64530", + "nom_de_la_commune": "SUSMIOU", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3117294131, + -0.780889188259 + ], + "libelle_d_acheminement": "SUSMIOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.780889188259, + 43.3117294131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0246cdde5f6e1c9de11a48a7883207cff6b6718d", + "fields": { + "code_commune_insee": "64531", + "nom_de_la_commune": "TABAILLE USQUAIN", + "code_postal": "64190", + "coordonnees_gps": [ + 43.3612997539, + -0.890276104739 + ], + "libelle_d_acheminement": "TABAILLE USQUAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.890276104739, + 43.3612997539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65cedfa861e15c6c5b35435bc2c019d8044f93b2", + "fields": { + "code_commune_insee": "64538", + "nom_de_la_commune": "UHART CIZE", + "code_postal": "64220", + "coordonnees_gps": [ + 43.1285879857, + -1.2505576735 + ], + "libelle_d_acheminement": "UHART CIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2505576735, + 43.1285879857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fce3b698a2c5e01695c07aedb10ee0aa4af0e292", + "fields": { + "code_commune_insee": "64539", + "nom_de_la_commune": "UHART MIXE", + "code_postal": "64120", + "coordonnees_gps": [ + 43.273744664, + -1.0182798978 + ], + "libelle_d_acheminement": "UHART MIXE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.0182798978, + 43.273744664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce656f969632efde9b88127069d40e45f7d56d0d", + "fields": { + "code_commune_insee": "64540", + "nom_de_la_commune": "URCUIT", + "code_postal": "64990", + "coordonnees_gps": [ + 43.4851399002, + -1.35045650645 + ], + "libelle_d_acheminement": "URCUIT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.35045650645, + 43.4851399002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd8384733d9d4002f8d0ffa349c408f37bdb1c70", + "fields": { + "code_commune_insee": "64559", + "nom_de_la_commune": "VIODOS ABENSE DE BAS", + "code_postal": "64130", + "coordonnees_gps": [ + 43.2476033104, + -0.896806531762 + ], + "libelle_d_acheminement": "VIODOS ABENSE DE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.896806531762, + 43.2476033104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b900d1472416db749815a791c489c37dd7c7f93", + "fields": { + "code_commune_insee": "64560", + "nom_de_la_commune": "VIVEN", + "code_postal": "64450", + "coordonnees_gps": [ + 43.4623560405, + -0.375213701374 + ], + "libelle_d_acheminement": "VIVEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.375213701374, + 43.4623560405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff325aa9db72431c5b31ff547fa1a14e04010124", + "fields": { + "code_commune_insee": "65001", + "nom_de_la_commune": "ADAST", + "code_postal": "65260", + "coordonnees_gps": [ + 42.9753854058, + -0.0764342583386 + ], + "libelle_d_acheminement": "ADAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0764342583386, + 42.9753854058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2d6ab95cedfa3304ac6c9566b7e9a1b90633deb", + "fields": { + "ligne_5": "AGNIERES", + "code_commune_insee": "80436", + "libelle_d_acheminement": "HESCAMPS", + "code_postal": "80290", + "nom_de_la_commune": "HESCAMPS", + "coordonnees_gps": [ + 49.7288200657, + 1.87751507035 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87751507035, + 49.7288200657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3108c88e922ab47519d20586871ccbae6ed92b38", + "fields": { + "code_commune_insee": "65018", + "nom_de_la_commune": "ARBEOST", + "code_postal": "65560", + "coordonnees_gps": [ + 42.9800099474, + -0.274398509458 + ], + "libelle_d_acheminement": "ARBEOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.274398509458, + 42.9800099474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf2e1d2895d379f4dd1aa1b67b9fa8729b6f31b9", + "fields": { + "code_commune_insee": "80440", + "nom_de_la_commune": "HIERMONT", + "code_postal": "80370", + "coordonnees_gps": [ + 50.1998137547, + 2.07191019606 + ], + "libelle_d_acheminement": "HIERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07191019606, + 50.1998137547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b7d6f5ee24f3e41a8735050e3a13290fdb20c29", + "fields": { + "code_commune_insee": "65038", + "nom_de_la_commune": "ARTIGUES", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0732762022, + -0.00153356995654 + ], + "libelle_d_acheminement": "ARTIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00153356995654, + 43.0732762022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f291a8fdf42e990de165a21e3cc1a4236168454", + "fields": { + "ligne_5": "GOUY L HOPITAL", + "code_commune_insee": "80443", + "libelle_d_acheminement": "HORNOY LE BOURG", + "code_postal": "80640", + "nom_de_la_commune": "HORNOY LE BOURG", + "coordonnees_gps": [ + 49.8474299808, + 1.90289897698 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90289897698, + 49.8474299808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7a3a64b773b96418c4b0e5af1c166f5b1e0bb91", + "fields": { + "code_commune_insee": "65052", + "nom_de_la_commune": "AVERAN", + "code_postal": "65380", + "coordonnees_gps": [ + 43.135917391, + -0.00268338345986 + ], + "libelle_d_acheminement": "AVERAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00268338345986, + 43.135917391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7512fabbf47d42025954e85c812364278aaf6143", + "fields": { + "ligne_5": "GUIBERMESNIL", + "code_commune_insee": "80456", + "libelle_d_acheminement": "LAFRESGUIMONT ST MARTIN", + "code_postal": "80430", + "nom_de_la_commune": "LAFRESGUIMONT ST MARTIN", + "coordonnees_gps": [ + 49.8233759898, + 1.81063672969 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81063672969, + 49.8233759898 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "652f1df2c81e94834d9543e11bc5e470b44f3d6f", + "fields": { + "ligne_5": "LA MONGIE", + "code_commune_insee": "65059", + "libelle_d_acheminement": "BAGNERES DE BIGORRE", + "code_postal": "65200", + "nom_de_la_commune": "BAGNERES DE BIGORRE", + "coordonnees_gps": [ + 42.9758668859, + 0.132640694318 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.132640694318, + 42.9758668859 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bd2ff093f1c9df918ed58437c64bb940c5a60a9", + "fields": { + "code_commune_insee": "80466", + "nom_de_la_commune": "LANCHES ST HILAIRE", + "code_postal": "80620", + "coordonnees_gps": [ + 50.10029759, + 2.1457130224 + ], + "libelle_d_acheminement": "LANCHES ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1457130224, + 50.10029759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11bb0cbd0100041dda906db894de3d199d6e1c00", + "fields": { + "code_commune_insee": "65062", + "nom_de_la_commune": "BARBAZAN DEBAT", + "code_postal": "65690", + "coordonnees_gps": [ + 43.201851966, + 0.129955186604 + ], + "libelle_d_acheminement": "BARBAZAN DEBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.129955186604, + 43.201851966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9275acdbe02a5710459ed980ddd65357b4592135", + "fields": { + "code_commune_insee": "80493", + "nom_de_la_commune": "LOUVENCOURT", + "code_postal": "80560", + "coordonnees_gps": [ + 50.0920247184, + 2.50525123119 + ], + "libelle_d_acheminement": "LOUVENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50525123119, + 50.0920247184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3e832599fd7d6354bc4be06ecdf4688dc218ae4", + "fields": { + "code_commune_insee": "65064", + "nom_de_la_commune": "BAREILLES", + "code_postal": "65240", + "coordonnees_gps": [ + 42.8909172311, + 0.436736458562 + ], + "libelle_d_acheminement": "BAREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.436736458562, + 42.8909172311 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df7982806924059314b895bf46e96d701badb8df", + "fields": { + "code_commune_insee": "80496", + "nom_de_la_commune": "MACHIEL", + "code_postal": "80150", + "coordonnees_gps": [ + 50.2721837623, + 1.83743610924 + ], + "libelle_d_acheminement": "MACHIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83743610924, + 50.2721837623 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "89029f4459e82015a0cb471b64c7878e7044371c", + "fields": { + "code_commune_insee": "65069", + "nom_de_la_commune": "LA BARTHE DE NESTE", + "code_postal": "65250", + "coordonnees_gps": [ + 43.0794759843, + 0.382949945071 + ], + "libelle_d_acheminement": "LA BARTHE DE NESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.382949945071, + 43.0794759843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "227698b11fca7aa4934c5d855749e3b7d7e0f658", + "fields": { + "code_commune_insee": "80502", + "nom_de_la_commune": "MAISON ROLAND", + "code_postal": "80135", + "coordonnees_gps": [ + 50.1283581508, + 2.02616048057 + ], + "libelle_d_acheminement": "MAISON ROLAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.02616048057, + 50.1283581508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd70c4a2d02226ef6a4835bafd36b283bd33a2ee", + "fields": { + "code_commune_insee": "65073", + "nom_de_la_commune": "BAZILLAC", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3599640684, + 0.110946825712 + ], + "libelle_d_acheminement": "BAZILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.110946825712, + 43.3599640684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0c6907ef34ef53f98b880ebc1821fd77ad62fe6", + "fields": { + "code_commune_insee": "80504", + "nom_de_la_commune": "MALPART", + "code_postal": "80250", + "coordonnees_gps": [ + 49.6935283012, + 2.49821322864 + ], + "libelle_d_acheminement": "MALPART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.49821322864, + 49.6935283012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "40b335dba12441e9abe589064546bf2fb6e0d356", + "fields": { + "code_commune_insee": "65074", + "nom_de_la_commune": "BAZORDAN", + "code_postal": "65670", + "coordonnees_gps": [ + 43.2217370669, + 0.547780218437 + ], + "libelle_d_acheminement": "BAZORDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.547780218437, + 43.2217370669 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e23728402acdc716e2df78e83ffbc1d0c9482732", + "fields": { + "code_commune_insee": "80507", + "nom_de_la_commune": "MARCELCAVE", + "code_postal": "80800", + "coordonnees_gps": [ + 49.8483821329, + 2.57064959188 + ], + "libelle_d_acheminement": "MARCELCAVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57064959188, + 49.8483821329 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17eebdc1c906157f02516e3ae31551fe0700335c", + "fields": { + "code_commune_insee": "65075", + "nom_de_la_commune": "BAZUS AURE", + "code_postal": "65170", + "coordonnees_gps": [ + 42.8564526243, + 0.345785536911 + ], + "libelle_d_acheminement": "BAZUS AURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.345785536911, + 42.8564526243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c0666803a6f104806650b38fb8780fbea6aa8c3", + "fields": { + "ligne_5": "MISERY", + "code_commune_insee": "80509", + "libelle_d_acheminement": "MARCHELEPOT MISERY", + "code_postal": "80200", + "nom_de_la_commune": "MARCHELEPOT MISERY", + "coordonnees_gps": [ + 49.8310377933, + 2.86663557413 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86663557413, + 49.8310377933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "feafdc278f72e649ad7df2db04bb9077374cb7ac", + "fields": { + "code_commune_insee": "65079", + "nom_de_la_commune": "BEGOLE", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1596154692, + 0.319511225672 + ], + "libelle_d_acheminement": "BEGOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.319511225672, + 43.1596154692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec7fdbda96b62b13c1ce84bb2e9a424239843667", + "fields": { + "code_commune_insee": "80515", + "nom_de_la_commune": "MARLERS", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7590692522, + 1.85023209402 + ], + "libelle_d_acheminement": "MARLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.85023209402, + 49.7590692522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aaeacfc761c9242492db8475b877a70c97761b45", + "fields": { + "code_commune_insee": "65090", + "nom_de_la_commune": "BETPOUY", + "code_postal": "65230", + "coordonnees_gps": [ + 43.2719488626, + 0.45729417903 + ], + "libelle_d_acheminement": "BETPOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45729417903, + 43.2719488626 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c251003549e636bb03dfb79715d49db5ce2c4ffe", + "fields": { + "code_commune_insee": "80516", + "nom_de_la_commune": "MARQUAIX", + "code_postal": "80240", + "coordonnees_gps": [ + 49.9474555429, + 3.07462772499 + ], + "libelle_d_acheminement": "MARQUAIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07462772499, + 49.9474555429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "308802fc874566eeae8f510ed6bb62d06cb5f82d", + "fields": { + "code_commune_insee": "65095", + "nom_de_la_commune": "BONNEFONT", + "code_postal": "65220", + "coordonnees_gps": [ + 43.2439914702, + 0.344903520312 + ], + "libelle_d_acheminement": "BONNEFONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.344903520312, + 43.2439914702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9f8ecdee6e32e4e95d3ed1c567a343561923dea", + "fields": { + "code_commune_insee": "80519", + "nom_de_la_commune": "MATIGNY", + "code_postal": "80400", + "coordonnees_gps": [ + 49.7962902112, + 3.01279614004 + ], + "libelle_d_acheminement": "MATIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01279614004, + 49.7962902112 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "840f1301d0f8960750d6b5536c62cc728e54972a", + "fields": { + "code_commune_insee": "65096", + "nom_de_la_commune": "BONNEMAZON", + "code_postal": "65130", + "coordonnees_gps": [ + 43.1084728845, + 0.250672951665 + ], + "libelle_d_acheminement": "BONNEMAZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.250672951665, + 43.1084728845 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de57a23f261104f1b74efaaecc2d77f98418fce0", + "fields": { + "code_commune_insee": "80520", + "nom_de_la_commune": "MAUCOURT", + "code_postal": "80170", + "coordonnees_gps": [ + 49.7932635969, + 2.75234072333 + ], + "libelle_d_acheminement": "MAUCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75234072333, + 49.7932635969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23d30c512ff5cf03a81ef1d757b335b3124f7ca8", + "fields": { + "code_commune_insee": "65107", + "nom_de_la_commune": "BOURREAC", + "code_postal": "65100", + "coordonnees_gps": [ + 43.1053670319, + 0.00269825078889 + ], + "libelle_d_acheminement": "BOURREAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00269825078889, + 43.1053670319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e45ab8a63f8b025a77e3ce926ebcf271eb6542a3", + "fields": { + "code_commune_insee": "80522", + "nom_de_la_commune": "LE MAZIS", + "code_postal": "80430", + "coordonnees_gps": [ + 49.8721428808, + 1.76333185731 + ], + "libelle_d_acheminement": "LE MAZIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76333185731, + 49.8721428808 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29c6a25ede2a8d66e5f49fca28780dd8228a43eb", + "fields": { + "code_commune_insee": "65116", + "nom_de_la_commune": "CADEAC", + "code_postal": "65240", + "coordonnees_gps": [ + 42.894013886, + 0.335111025922 + ], + "libelle_d_acheminement": "CADEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.335111025922, + 42.894013886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a40ff059d51857e1c832baf47e7466efe0ffdb6d", + "fields": { + "code_commune_insee": "80524", + "nom_de_la_commune": "MEHARICOURT", + "code_postal": "80170", + "coordonnees_gps": [ + 49.7967919202, + 2.73103944446 + ], + "libelle_d_acheminement": "MEHARICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73103944446, + 49.7967919202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fb52440f780ebf2c8d5935744492637021cfcaf", + "fields": { + "ligne_5": "LA SEOUBE", + "code_commune_insee": "65123", + "libelle_d_acheminement": "CAMPAN", + "code_postal": "65710", + "nom_de_la_commune": "CAMPAN", + "coordonnees_gps": [ + 42.9614883707, + 0.217031289795 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.217031289795, + 42.9614883707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74e242bd187ba8777a84816fb3246662881fbf95", + "fields": { + "code_commune_insee": "80525", + "nom_de_la_commune": "MEIGNEUX", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7668933468, + 1.89057664308 + ], + "libelle_d_acheminement": "MEIGNEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89057664308, + 49.7668933468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "339c8f45a2642ebf110f0a44f4360794ee889c8c", + "fields": { + "code_commune_insee": "65124", + "nom_de_la_commune": "CAMPARAN", + "code_postal": "65170", + "coordonnees_gps": [ + 42.8322238965, + 0.357816058989 + ], + "libelle_d_acheminement": "CAMPARAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.357816058989, + 42.8322238965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a46032d4c5dea94654a2d13ee8cabac31e82693", + "fields": { + "code_commune_insee": "80527", + "nom_de_la_commune": "MENESLIES", + "code_postal": "80520", + "coordonnees_gps": [ + 50.0580071022, + 1.49366891391 + ], + "libelle_d_acheminement": "MENESLIES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.49366891391, + 50.0580071022 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f6c93f5a0f518a10c8d62da8f73274da0538647", + "fields": { + "code_commune_insee": "65126", + "nom_de_la_commune": "CAMPUZAN", + "code_postal": "65230", + "coordonnees_gps": [ + 43.2789909949, + 0.434076263991 + ], + "libelle_d_acheminement": "CAMPUZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.434076263991, + 43.2789909949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f4b92cd3d8b61298f34bc4892fff560d250452f", + "fields": { + "code_commune_insee": "80529", + "nom_de_la_commune": "MERELESSART", + "code_postal": "80490", + "coordonnees_gps": [ + 49.9721965697, + 1.84857479614 + ], + "libelle_d_acheminement": "MERELESSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84857479614, + 49.9721965697 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "260cdd9ec43f7e4484f0417da37db9d253b9a525", + "fields": { + "code_commune_insee": "65127", + "nom_de_la_commune": "CAPVERN", + "code_postal": "65130", + "coordonnees_gps": [ + 43.1070380886, + 0.331958446057 + ], + "libelle_d_acheminement": "CAPVERN LES BAINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.331958446057, + 43.1070380886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a17dc090e36c63480d050d0a4c8e741ba8e90578", + "fields": { + "code_commune_insee": "80549", + "nom_de_la_commune": "MIRAUMONT", + "code_postal": "80300", + "coordonnees_gps": [ + 50.1005697017, + 2.7276651357 + ], + "libelle_d_acheminement": "MIRAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7276651357, + 50.1005697017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2990938ae2986b877f3db93fc8882d1d08806ed", + "fields": { + "code_commune_insee": "65130", + "nom_de_la_commune": "CASTELNAU RIVIERE BASSE", + "code_postal": "65700", + "coordonnees_gps": [ + 43.5804567818, + -0.0282406541212 + ], + "libelle_d_acheminement": "CASTELNAU RIVIERE BASSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0282406541212, + 43.5804567818 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da051dec4575565a977cc4289ff78c98d154b46b", + "fields": { + "code_commune_insee": "80550", + "nom_de_la_commune": "MIRVAUX", + "code_postal": "80260", + "coordonnees_gps": [ + 50.0030619644, + 2.3976230968 + ], + "libelle_d_acheminement": "MIRVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3976230968, + 50.0030619644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1489690a975791c27359b2cd3e72d220e70ae299", + "fields": { + "code_commune_insee": "65133", + "nom_de_la_commune": "CASTERA LOU", + "code_postal": "65350", + "coordonnees_gps": [ + 43.3222665444, + 0.155031547361 + ], + "libelle_d_acheminement": "CASTERA LOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.155031547361, + 43.3222665444 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "443272c8e653360a2fca5db899df30b7fe4401f0", + "fields": { + "code_commune_insee": "80554", + "nom_de_la_commune": "MOLLIENS DREUIL", + "code_postal": "80540", + "coordonnees_gps": [ + 49.8819204869, + 2.01098635745 + ], + "libelle_d_acheminement": "MOLLIENS DREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01098635745, + 49.8819204869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12b13ba0cfd1aba3053820820515a7b93c53ace8", + "fields": { + "code_commune_insee": "65136", + "nom_de_la_commune": "CAUBOUS", + "code_postal": "65230", + "coordonnees_gps": [ + 43.2431070641, + 0.468805987642 + ], + "libelle_d_acheminement": "CAUBOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.468805987642, + 43.2431070641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5697b4d087ce932368110c67bcd10a0d26fe54b", + "fields": { + "ligne_5": "DREUIL LES MOLLIENS", + "code_commune_insee": "80554", + "libelle_d_acheminement": "MOLLIENS DREUIL", + "code_postal": "80540", + "nom_de_la_commune": "MOLLIENS DREUIL", + "coordonnees_gps": [ + 49.8819204869, + 2.01098635745 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01098635745, + 49.8819204869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b594e3509a637394c0d732d94befbb31bfd2634", + "fields": { + "code_commune_insee": "65147", + "nom_de_la_commune": "CIEUTAT", + "code_postal": "65200", + "coordonnees_gps": [ + 43.1222598008, + 0.213094773599 + ], + "libelle_d_acheminement": "CIEUTAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.213094773599, + 43.1222598008 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a89e408568f614156a6227d4085e8bfe948071d3", + "fields": { + "code_commune_insee": "80558", + "nom_de_la_commune": "MONSURES", + "code_postal": "80160", + "coordonnees_gps": [ + 49.7111155, + 2.16144716835 + ], + "libelle_d_acheminement": "MONSURES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16144716835, + 49.7111155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6bde78a6f6668cc12d166e6d099921ca0efdba13", + "fields": { + "code_commune_insee": "65151", + "nom_de_la_commune": "COLLONGUES", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2895209015, + 0.168216810258 + ], + "libelle_d_acheminement": "COLLONGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.168216810258, + 43.2895209015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b71be1348caee5049fd98d18b62291af4bb6298", + "fields": { + "code_commune_insee": "80560", + "nom_de_la_commune": "MONTAUBAN DE PICARDIE", + "code_postal": "80300", + "coordonnees_gps": [ + 50.007203585, + 2.78122270827 + ], + "libelle_d_acheminement": "MONTAUBAN DE PICARDIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.78122270827, + 50.007203585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f7db39d433215b4f09c88e86febc5889a2e5bb5", + "fields": { + "code_commune_insee": "65158", + "nom_de_la_commune": "ESBAREICH", + "code_postal": "65370", + "coordonnees_gps": [ + 42.931210078, + 0.574720507714 + ], + "libelle_d_acheminement": "ESBAREICH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.574720507714, + 42.931210078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e5a2ef28ef37f21e9ba976015be280b9a15163a", + "fields": { + "code_commune_insee": "80566", + "nom_de_la_commune": "FIEFFES MONTRELET", + "code_postal": "80670", + "coordonnees_gps": [ + 50.0905993078, + 2.21690355063 + ], + "libelle_d_acheminement": "FIEFFES MONTRELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21690355063, + 50.0905993078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df13d5246333e33e41db98589327ecba1fa20900", + "fields": { + "code_commune_insee": "65175", + "nom_de_la_commune": "FERRERE", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9209922116, + 0.499588049287 + ], + "libelle_d_acheminement": "FERRERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.499588049287, + 42.9209922116 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f4369fbaaec87a007022f22a78329bacf600c26", + "fields": { + "code_commune_insee": "80576", + "nom_de_la_commune": "MOYENCOURT", + "code_postal": "80400", + "coordonnees_gps": [ + 49.7241561473, + 2.94715623094 + ], + "libelle_d_acheminement": "MOYENCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94715623094, + 49.7241561473 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4ba84b0553ca02e8e77a5ac8cce4c4867dbb695", + "fields": { + "code_commune_insee": "65178", + "nom_de_la_commune": "FRECHEDE", + "code_postal": "65220", + "coordonnees_gps": [ + 43.3651632338, + 0.261264447769 + ], + "libelle_d_acheminement": "FRECHEDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.261264447769, + 43.3651632338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9344cc246818c184dac8399d701faa4d72b1efd5", + "fields": { + "code_commune_insee": "80577", + "nom_de_la_commune": "MOYENCOURT LES POIX", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7906225014, + 2.04096511821 + ], + "libelle_d_acheminement": "MOYENCOURT LES POIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04096511821, + 49.7906225014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cd05630d2ea0c5d3117684fbc0175a479bbd6009", + "fields": { + "ligne_5": "GEDRE", + "code_commune_insee": "65192", + "libelle_d_acheminement": "GAVARNIE GEDRE", + "code_postal": "65120", + "nom_de_la_commune": "GAVARNIE GEDRE", + "coordonnees_gps": [ + 42.766573981, + 0.041488959159 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.041488959159, + 42.766573981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "372b42ed271acc62c618351c83469178c011b349", + "fields": { + "code_commune_insee": "80580", + "nom_de_la_commune": "NAMPONT", + "code_postal": "80120", + "coordonnees_gps": [ + 50.3421619095, + 1.75242683099 + ], + "libelle_d_acheminement": "NAMPONT ST MARTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75242683099, + 50.3421619095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7bfee371cf10f60c5868651f2038b5bf036adc3", + "fields": { + "code_commune_insee": "65199", + "nom_de_la_commune": "GERM", + "code_postal": "65240", + "coordonnees_gps": [ + 42.7763912568, + 0.441090349269 + ], + "libelle_d_acheminement": "GERM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.441090349269, + 42.7763912568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "420b14b22c17d8aa0bb9b77e8fc25e099ca0254f", + "fields": { + "ligne_5": "NAMPS AU MONT", + "code_commune_insee": "80582", + "libelle_d_acheminement": "NAMPS MAISNIL", + "code_postal": "80290", + "nom_de_la_commune": "NAMPS MAISNIL", + "coordonnees_gps": [ + 49.8061321479, + 2.1229976802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1229976802, + 49.8061321479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eebc94691e7d71e60bb18a61b68e4ff728b430be", + "fields": { + "code_commune_insee": "65202", + "nom_de_la_commune": "GEZ", + "code_postal": "65400", + "coordonnees_gps": [ + 43.0126351765, + -0.121360765935 + ], + "libelle_d_acheminement": "GEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.121360765935, + 43.0126351765 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48f54b681244acaec11db890861b5dc4f8cb3e9e", + "fields": { + "ligne_5": "TAISNIL", + "code_commune_insee": "80582", + "libelle_d_acheminement": "NAMPS MAISNIL", + "code_postal": "80290", + "nom_de_la_commune": "NAMPS MAISNIL", + "coordonnees_gps": [ + 49.8061321479, + 2.1229976802 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1229976802, + 49.8061321479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62d25fa7d43dc67d80d433cc4ef427394196c046", + "fields": { + "code_commune_insee": "65203", + "nom_de_la_commune": "GEZ EZ ANGLES", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0881354542, + 0.0247150767346 + ], + "libelle_d_acheminement": "GEZ EZ ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0247150767346, + 43.0881354542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88ab992b874eb9aa4d0cf0a636ea95a95dac9869", + "fields": { + "code_commune_insee": "80584", + "nom_de_la_commune": "NAOURS", + "code_postal": "80260", + "coordonnees_gps": [ + 50.0451911173, + 2.28427416723 + ], + "libelle_d_acheminement": "NAOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28427416723, + 50.0451911173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ee1629c72f787acb620b6ccbdef98a7c7c64bce", + "fields": { + "code_commune_insee": "65207", + "nom_de_la_commune": "GOURGUE", + "code_postal": "65130", + "coordonnees_gps": [ + 43.1376860127, + 0.268172885398 + ], + "libelle_d_acheminement": "GOURGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.268172885398, + 43.1376860127 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4c71f0f4ea8e1d7df1219cb346263d9ac24b69e", + "fields": { + "code_commune_insee": "80591", + "nom_de_la_commune": "NEUVILLE AU BOIS", + "code_postal": "80140", + "coordonnees_gps": [ + 49.9698929378, + 1.78327911421 + ], + "libelle_d_acheminement": "NEUVILLE AU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78327911421, + 49.9698929378 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29a398f91433f2b7a33355dc5ffa9bd4602c5628", + "fields": { + "code_commune_insee": "65209", + "nom_de_la_commune": "GREZIAN", + "code_postal": "65240", + "coordonnees_gps": [ + 42.8723925904, + 0.352853993495 + ], + "libelle_d_acheminement": "GREZIAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.352853993495, + 42.8723925904 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b570e2f888171493f9fc082da856d918d433115", + "fields": { + "code_commune_insee": "80593", + "nom_de_la_commune": "LA NEUVILLE LES BRAY", + "code_postal": "80340", + "coordonnees_gps": [ + 49.9221021673, + 2.72201276953 + ], + "libelle_d_acheminement": "LA NEUVILLE LES BRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72201276953, + 49.9221021673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6a3b92bd7c842724ce24f9c6791be967c9b301e", + "fields": { + "code_commune_insee": "65210", + "nom_de_la_commune": "GRUST", + "code_postal": "65120", + "coordonnees_gps": [ + 42.8904876239, + -0.0590135769638 + ], + "libelle_d_acheminement": "GRUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0590135769638, + 42.8904876239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c55041d3709a50024e9900b0ff26ac8d95ec5fe", + "fields": { + "code_commune_insee": "80598", + "nom_de_la_commune": "NOUVION", + "code_postal": "80860", + "coordonnees_gps": [ + 50.2148554834, + 1.78036919239 + ], + "libelle_d_acheminement": "NOUVION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78036919239, + 50.2148554834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e80a8b37df3802082360a8234c1ed38f884ee83b", + "fields": { + "code_commune_insee": "65216", + "nom_de_la_commune": "HAUBAN", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0993533014, + 0.162842331191 + ], + "libelle_d_acheminement": "HAUBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.162842331191, + 43.0993533014 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57b9a26a0f39201650610ba43dbb569505cc874c", + "fields": { + "code_commune_insee": "80601", + "nom_de_la_commune": "NURLU", + "code_postal": "80240", + "coordonnees_gps": [ + 50.0039174559, + 3.01506134636 + ], + "libelle_d_acheminement": "NURLU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01506134636, + 50.0039174559 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06e157e17716ca1af00b2a6cc8ef5cb4e4f4529e", + "fields": { + "code_commune_insee": "65217", + "nom_de_la_commune": "HAUTAGET", + "code_postal": "65150", + "coordonnees_gps": [ + 43.0583239771, + 0.456670276219 + ], + "libelle_d_acheminement": "HAUTAGET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.456670276219, + 43.0583239771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a61e7e2881785da96d4a9e28ee542f25479b7a2b", + "fields": { + "code_commune_insee": "80614", + "nom_de_la_commune": "OUTREBOIS", + "code_postal": "80600", + "coordonnees_gps": [ + 50.169788556, + 2.25158068165 + ], + "libelle_d_acheminement": "OUTREBOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25158068165, + 50.169788556 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b94b7aef2330628dcdaed34bd671bf648cb644f6", + "fields": { + "code_commune_insee": "65222", + "nom_de_la_commune": "HITTE", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1520020024, + 0.163133431927 + ], + "libelle_d_acheminement": "HITTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.163133431927, + 43.1520020024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb855d723be340da3db4493af78ab04e68dbf5ee", + "fields": { + "ligne_5": "PERTAIN", + "code_commune_insee": "80621", + "libelle_d_acheminement": "HYPERCOURT", + "code_postal": "80320", + "nom_de_la_commune": "HYPERCOURT", + "coordonnees_gps": [ + 49.8059761599, + 2.86900836707 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86900836707, + 49.8059761599 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0c7d9790e24860ee5fd57c32641293801476e0d", + "fields": { + "code_commune_insee": "65232", + "nom_de_la_commune": "JACQUE", + "code_postal": "65350", + "coordonnees_gps": [ + 43.3206788577, + 0.215472944826 + ], + "libelle_d_acheminement": "JACQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.215472944826, + 43.3206788577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5cfb2913e883e12aac6bb64ca7e007c28b11467a", + "fields": { + "ligne_5": "PIERREPONT SUR AVRE", + "code_commune_insee": "80625", + "libelle_d_acheminement": "TROIS RIVIERES", + "code_postal": "80500", + "nom_de_la_commune": "TROIS RIVIERES", + "coordonnees_gps": [ + 49.7068924487, + 2.5511767234 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5511767234, + 49.7068924487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10d8c03cc72bab6cb1e172849ff42500abf4920f", + "fields": { + "code_commune_insee": "65238", + "nom_de_la_commune": "LABASSERE", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0613748253, + 0.0905355146224 + ], + "libelle_d_acheminement": "LABASSERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0905355146224, + 43.0613748253 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f82317f61dfc5579152df752502f0b1db8018b6", + "fields": { + "code_commune_insee": "80628", + "nom_de_la_commune": "LE PLESSIER ROZAINVILLERS", + "code_postal": "80110", + "coordonnees_gps": [ + 49.7515607752, + 2.55260260825 + ], + "libelle_d_acheminement": "LE PLESSIER ROZAINVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55260260825, + 49.7515607752 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e79384367a111ffcb3f27b231463ab6336807ae", + "fields": { + "code_commune_insee": "65239", + "nom_de_la_commune": "LABASTIDE", + "code_postal": "65130", + "coordonnees_gps": [ + 43.0357928885, + 0.351671885257 + ], + "libelle_d_acheminement": "LABASTIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.351671885257, + 43.0357928885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97f07a50b1086c089f68faf78af4011a4ba7da24", + "fields": { + "code_commune_insee": "80630", + "nom_de_la_commune": "POIX DE PICARDIE", + "code_postal": "80290", + "coordonnees_gps": [ + 49.7485829077, + 1.97952156568 + ], + "libelle_d_acheminement": "POIX DE PICARDIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97952156568, + 49.7485829077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcb68f57e879a46f1680b787e7c224f9a8648caf", + "fields": { + "code_commune_insee": "65251", + "nom_de_la_commune": "LALOUBERE", + "code_postal": "65310", + "coordonnees_gps": [ + 43.2090831887, + 0.0761770721287 + ], + "libelle_d_acheminement": "LALOUBERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0761770721287, + 43.2090831887 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6514bea103946028b827ac297f390f945340b7a3", + "fields": { + "ligne_5": "LAHAYE ST ROMAIN", + "code_commune_insee": "80630", + "libelle_d_acheminement": "POIX DE PICARDIE", + "code_postal": "80290", + "nom_de_la_commune": "POIX DE PICARDIE", + "coordonnees_gps": [ + 49.7485829077, + 1.97952156568 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.97952156568, + 49.7485829077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44932aeff51ca6a6786891da7f24ddd40959b25e", + "fields": { + "code_commune_insee": "65252", + "nom_de_la_commune": "LAMARQUE PONTACQ", + "code_postal": "65380", + "coordonnees_gps": [ + 43.1638872939, + -0.101045534959 + ], + "libelle_d_acheminement": "LAMARQUE PONTACQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.101045534959, + 43.1638872939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92d8f4dd19aca7aa506155d003bad81fdb14e8ce", + "fields": { + "code_commune_insee": "80644", + "nom_de_la_commune": "PROYART", + "code_postal": "80340", + "coordonnees_gps": [ + 49.8887503855, + 2.70543811348 + ], + "libelle_d_acheminement": "PROYART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70543811348, + 49.8887503855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f2f1517a9edc24f1c219fdabdd2c5b0aa0585d40", + "fields": { + "code_commune_insee": "65258", + "nom_de_la_commune": "LANNEMEZAN", + "code_postal": "65300", + "coordonnees_gps": [ + 43.117063337, + 0.39353033034 + ], + "libelle_d_acheminement": "LANNEMEZAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.39353033034, + 43.117063337 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df737af5cf288c8ec3c2c3f7afb6d53d77a8015c", + "fields": { + "code_commune_insee": "80648", + "nom_de_la_commune": "PYS", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0828866857, + 2.76242466587 + ], + "libelle_d_acheminement": "PYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76242466587, + 50.0828866857 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "074f490865fc613f75042fe00b21b0ad280ca077", + "fields": { + "code_commune_insee": "65259", + "nom_de_la_commune": "LANSAC", + "code_postal": "65350", + "coordonnees_gps": [ + 43.221317061, + 0.17215713947 + ], + "libelle_d_acheminement": "LANSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.17215713947, + 43.221317061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e464cea5ea6aac347bcb8607ca2b6e2d1e6733c", + "fields": { + "code_commune_insee": "80656", + "nom_de_la_commune": "QUEVAUVILLERS", + "code_postal": "80710", + "coordonnees_gps": [ + 49.8160241079, + 2.07414071451 + ], + "libelle_d_acheminement": "QUEVAUVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07414071451, + 49.8160241079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ea024cfabcbf5d54b0f6716506afc9de1ff59d4", + "fields": { + "code_commune_insee": "65265", + "nom_de_la_commune": "LASLADES", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2304728913, + 0.165662705335 + ], + "libelle_d_acheminement": "LASLADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.165662705335, + 43.2304728913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03f2ed847f44adf6be1e1141ed521efd27400d10", + "fields": { + "code_commune_insee": "80669", + "nom_de_la_commune": "RETHONVILLERS", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7363046729, + 2.85528725127 + ], + "libelle_d_acheminement": "RETHONVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85528725127, + 49.7363046729 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f22bca0c8dbf304a5c50bf51aa12ceee79e4e5a", + "fields": { + "code_commune_insee": "65269", + "nom_de_la_commune": "LESCURRY", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3365858689, + 0.156615119219 + ], + "libelle_d_acheminement": "LESCURRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.156615119219, + 43.3365858689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6eb5c1783e11aef13ece11cec86fc8b0b75ef256", + "fields": { + "code_commune_insee": "80681", + "nom_de_la_commune": "ROUVREL", + "code_postal": "80250", + "coordonnees_gps": [ + 49.7678519085, + 2.41703713925 + ], + "libelle_d_acheminement": "ROUVREL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.41703713925, + 49.7678519085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4b486e559a9449596a5d427b960cb5decf4d3e8", + "fields": { + "code_commune_insee": "65277", + "nom_de_la_commune": "LOMBRES", + "code_postal": "65150", + "coordonnees_gps": [ + 43.0518686754, + 0.510353716304 + ], + "libelle_d_acheminement": "LOMBRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.510353716304, + 43.0518686754 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07797de5eccf6030602ffd7a53ea18059866ede5", + "fields": { + "code_commune_insee": "80695", + "nom_de_la_commune": "SAILLY SAILLISEL", + "code_postal": "80360", + "coordonnees_gps": [ + 50.0287843068, + 2.91254407561 + ], + "libelle_d_acheminement": "SAILLY SAILLISEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91254407561, + 50.0287843068 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "af9ebb81bf0eb0d8186fa9b86f75a03f66e1a199", + "fields": { + "code_commune_insee": "65281", + "nom_de_la_commune": "LOUCRUP", + "code_postal": "65200", + "coordonnees_gps": [ + 43.1180537077, + 0.0703348331566 + ], + "libelle_d_acheminement": "LOUCRUP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0703348331566, + 43.1180537077 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e9356381a73bb18690825cfe1d7edc456c8b3f5", + "fields": { + "code_commune_insee": "80698", + "nom_de_la_commune": "ST AUBIN MONTENOY", + "code_postal": "80540", + "coordonnees_gps": [ + 49.8419962428, + 2.00219471552 + ], + "libelle_d_acheminement": "ST AUBIN MONTENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00219471552, + 49.8419962428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc5bf317b228abf39cd1faa2aab13957cb57819f", + "fields": { + "code_commune_insee": "65282", + "nom_de_la_commune": "LOUDENVIELLE", + "code_postal": "65510", + "coordonnees_gps": [ + 42.7300216017, + 0.432583717897 + ], + "libelle_d_acheminement": "LOUDENVIELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.432583717897, + 42.7300216017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae05c79ead3f09da43c012dd67139a7e60151108", + "fields": { + "code_commune_insee": "80701", + "nom_de_la_commune": "ST CHRIST BRIOST", + "code_postal": "80200", + "coordonnees_gps": [ + 49.8544622576, + 2.92524408101 + ], + "libelle_d_acheminement": "ST CHRIST BRIOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92524408101, + 49.8544622576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "220c1f1c68c1b90e034643135422d9e821891b80", + "fields": { + "code_commune_insee": "65284", + "nom_de_la_commune": "LOUEY", + "code_postal": "65290", + "coordonnees_gps": [ + 43.1791075195, + 0.0196023682592 + ], + "libelle_d_acheminement": "LOUEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0196023682592, + 43.1791075195 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8639c9037f0677d6b1b8d8e08cce37c6478f16da", + "fields": { + "ligne_5": "GUEMICOURT", + "code_commune_insee": "80703", + "libelle_d_acheminement": "ST GERMAIN SUR BRESLE", + "code_postal": "80430", + "nom_de_la_commune": "ST GERMAIN SUR BRESLE", + "coordonnees_gps": [ + 49.8268454979, + 1.74609362795 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.74609362795, + 49.8268454979 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b36c7bf2d9f09a4326eb6bbec04ed94b6e46389", + "fields": { + "code_commune_insee": "65287", + "nom_de_la_commune": "LOURES BAROUSSE", + "code_postal": "65370", + "coordonnees_gps": [ + 43.0272522696, + 0.603543320181 + ], + "libelle_d_acheminement": "LOURES BAROUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.603543320181, + 43.0272522696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2796d534ab7e9a00df24d1a4628caa22998d6af0", + "fields": { + "code_commune_insee": "80704", + "nom_de_la_commune": "ST GRATIEN", + "code_postal": "80260", + "coordonnees_gps": [ + 49.9651618881, + 2.4032049879 + ], + "libelle_d_acheminement": "ST GRATIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4032049879, + 49.9651618881 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adda04d80b3cbb43702e282af7509ef6c57dfd82", + "fields": { + "code_commune_insee": "65290", + "nom_de_la_commune": "LUC", + "code_postal": "65190", + "coordonnees_gps": [ + 43.1490471894, + 0.1822289415 + ], + "libelle_d_acheminement": "LUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1822289415, + 43.1490471894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5506d8a0cb1dd7e7a155b150d753e621f4cc8c7", + "fields": { + "code_commune_insee": "80713", + "nom_de_la_commune": "ST QUENTIN EN TOURMONT", + "code_postal": "80120", + "coordonnees_gps": [ + 50.2799548442, + 1.57689944614 + ], + "libelle_d_acheminement": "ST QUENTIN EN TOURMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57689944614, + 50.2799548442 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a3236b2a722943a4bb81d7d3db38c69e534b9d0", + "fields": { + "code_commune_insee": "65291", + "nom_de_la_commune": "LUGAGNAN", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0634793076, + -0.0388443963174 + ], + "libelle_d_acheminement": "LUGAGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0388443963174, + 43.0634793076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2abbfc6710761b97ba00b7e2dd674a6a5b0776b8", + "fields": { + "code_commune_insee": "80714", + "nom_de_la_commune": "ST QUENTIN LA MOTTE CROIX AU BAILLY", + "code_postal": "80880", + "coordonnees_gps": [ + 50.0736550841, + 1.45100118473 + ], + "libelle_d_acheminement": "ST QUENTIN LA MOTTE CROIX BAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.45100118473, + 50.0736550841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10c7c7baaff8cd7dc7dd7f0419bc1d8cf3bb0857", + "fields": { + "code_commune_insee": "65292", + "nom_de_la_commune": "LUQUET", + "code_postal": "65320", + "coordonnees_gps": [ + 43.2596416561, + -0.11842797217 + ], + "libelle_d_acheminement": "LUQUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.11842797217, + 43.2596416561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bca3ca0e2d7e8e864d76678a28cdbf9f86811c4", + "fields": { + "code_commune_insee": "80726", + "nom_de_la_commune": "SANCOURT", + "code_postal": "80400", + "coordonnees_gps": [ + 49.770246414, + 3.0440886833 + ], + "libelle_d_acheminement": "SANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0440886833, + 49.770246414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a532df457825a197bf02338809dc72db8cae6c10", + "fields": { + "code_commune_insee": "65297", + "nom_de_la_commune": "MANSAN", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3413274684, + 0.192744647375 + ], + "libelle_d_acheminement": "MANSAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.192744647375, + 43.3413274684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0141abeb137122a1d215f7a744d27c5acc7d7820", + "fields": { + "code_commune_insee": "80742", + "nom_de_la_commune": "SURCAMPS", + "code_postal": "80620", + "coordonnees_gps": [ + 50.0670190943, + 2.08374738527 + ], + "libelle_d_acheminement": "SURCAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08374738527, + 50.0670190943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3e6fbf592c28a07e97037c8b0810a18b6ccd704", + "fields": { + "code_commune_insee": "65300", + "nom_de_la_commune": "MARSAS", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0532691959, + 0.220898066775 + ], + "libelle_d_acheminement": "MARSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.220898066775, + 43.0532691959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e0f17d9bbdcdc22e07183b3b23d73e7235fe053", + "fields": { + "code_commune_insee": "80746", + "nom_de_la_commune": "TALMAS", + "code_postal": "80260", + "coordonnees_gps": [ + 50.0411880308, + 2.34426626176 + ], + "libelle_d_acheminement": "TALMAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.34426626176, + 50.0411880308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "614b4bd21c32d36f6d9b18d27fdfeab465361ff9", + "fields": { + "code_commune_insee": "65301", + "nom_de_la_commune": "MARSEILLAN", + "code_postal": "65350", + "coordonnees_gps": [ + 43.3014129983, + 0.213052556681 + ], + "libelle_d_acheminement": "MARSEILLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.213052556681, + 43.3014129983 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e22d997c70451416d477d2a98174bc2874af3a23", + "fields": { + "code_commune_insee": "80756", + "nom_de_la_commune": "THIEVRES", + "code_postal": "80560", + "coordonnees_gps": [ + 50.1183859138, + 2.46138718753 + ], + "libelle_d_acheminement": "THIEVRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46138718753, + 50.1183859138 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69423c4b548cf7e82f407daf95c0be271797049a", + "fields": { + "code_commune_insee": "65313", + "nom_de_la_commune": "MOMERES", + "code_postal": "65360", + "coordonnees_gps": [ + 43.174371736, + 0.0813794112594 + ], + "libelle_d_acheminement": "MOMERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0813794112594, + 43.174371736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b1d15dcd34b1a19de549cd28d1b2f3f6c2bb3b5", + "fields": { + "code_commune_insee": "80758", + "nom_de_la_commune": "THORY", + "code_postal": "80250", + "coordonnees_gps": [ + 49.7199911827, + 2.43112270739 + ], + "libelle_d_acheminement": "THORY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43112270739, + 49.7199911827 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3e373f743a9a9bcfbab2d8eaa97094df21de4c0", + "fields": { + "code_commune_insee": "65318", + "nom_de_la_commune": "MONTASTRUC", + "code_postal": "65330", + "coordonnees_gps": [ + 43.2144777606, + 0.347325885358 + ], + "libelle_d_acheminement": "MONTASTRUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.347325885358, + 43.2144777606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71ec6f8ba7a215c081c223ec6182d84b0caef13c", + "fields": { + "code_commune_insee": "80760", + "nom_de_la_commune": "TILLOY FLORIVILLE", + "code_postal": "80220", + "coordonnees_gps": [ + 49.9915414775, + 1.59869864027 + ], + "libelle_d_acheminement": "TILLOY FLORIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59869864027, + 49.9915414775 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5af8e5ff129c723be022aaa73d8ac22a832bfd56", + "fields": { + "code_commune_insee": "65319", + "nom_de_la_commune": "MONTEGUT", + "code_postal": "65150", + "coordonnees_gps": [ + 43.0494913717, + 0.499092510463 + ], + "libelle_d_acheminement": "MONTEGUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.499092510463, + 43.0494913717 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9908ab37b6481630fef6b28f06e3e8f3e2626f9", + "fields": { + "code_commune_insee": "80763", + "nom_de_la_commune": "LE TITRE", + "code_postal": "80132", + "coordonnees_gps": [ + 50.18824872, + 1.80178576821 + ], + "libelle_d_acheminement": "LE TITRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80178576821, + 50.18824872 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66f5864fa22b5c1797dcb35eade5a2732832d127", + "fields": { + "code_commune_insee": "65326", + "nom_de_la_commune": "MUN", + "code_postal": "65350", + "coordonnees_gps": [ + 43.2803464506, + 0.270777277359 + ], + "libelle_d_acheminement": "MUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.270777277359, + 43.2803464506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8aab1b955c53d2a7e067fc75dd0cf81447da1ddc", + "fields": { + "code_commune_insee": "80770", + "nom_de_la_commune": "TULLY", + "code_postal": "80130", + "coordonnees_gps": [ + 50.0820037306, + 1.51459597406 + ], + "libelle_d_acheminement": "TULLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51459597406, + 50.0820037306 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "665c952c6a2015b6e3663711243b4a1e9c0c52e6", + "fields": { + "code_commune_insee": "65334", + "nom_de_la_commune": "OMEX", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0803152897, + -0.0935460346356 + ], + "libelle_d_acheminement": "OMEX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0935460346356, + 43.0803152897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b9a750e729f486d5812f57483432b7f0c0d22d9", + "fields": { + "code_commune_insee": "80785", + "nom_de_la_commune": "VECQUEMONT", + "code_postal": "80800", + "coordonnees_gps": [ + 49.8906655541, + 2.44061102336 + ], + "libelle_d_acheminement": "VECQUEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44061102336, + 49.8906655541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73b3b8733c1f57eaf08de2bb07d9ed3a0c9a4375", + "fields": { + "code_commune_insee": "65340", + "nom_de_la_commune": "ORLEIX", + "code_postal": "65800", + "coordonnees_gps": [ + 43.2762828841, + 0.117396047373 + ], + "libelle_d_acheminement": "ORLEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.117396047373, + 43.2762828841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9888ae35546466907a322e6ac30f8adb069baf5e", + "fields": { + "code_commune_insee": "80787", + "nom_de_la_commune": "VERCOURT", + "code_postal": "80120", + "coordonnees_gps": [ + 50.296430457, + 1.70416946449 + ], + "libelle_d_acheminement": "VERCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.70416946449, + 50.296430457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1bd127facd81c88769cd3482939a92bac6da4489", + "fields": { + "code_commune_insee": "65345", + "nom_de_la_commune": "OSSUN EZ ANGLES", + "code_postal": "65100", + "coordonnees_gps": [ + 43.0795108469, + 0.0566869335969 + ], + "libelle_d_acheminement": "OSSUN EZ ANGLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0566869335969, + 43.0795108469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5fc6bc5d9782f6b8d6fd272197c8e072e170a0cb", + "fields": { + "code_commune_insee": "80790", + "nom_de_la_commune": "VERPILLIERES", + "code_postal": "80700", + "coordonnees_gps": [ + 49.6670347072, + 2.82381303765 + ], + "libelle_d_acheminement": "VERPILLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82381303765, + 49.6670347072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "762060b2f72eeb71b1bc5d95403f06ebc5ae746b", + "fields": { + "code_commune_insee": "65350", + "nom_de_la_commune": "OURSBELILLE", + "code_postal": "65490", + "coordonnees_gps": [ + 43.2863457184, + 0.0364938056024 + ], + "libelle_d_acheminement": "OURSBELILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0364938056024, + 43.2863457184 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d5ca55029269dc5a89015ae2bd82605e1eb66b4", + "fields": { + "code_commune_insee": "80792", + "nom_de_la_commune": "LA VICOGNE", + "code_postal": "80260", + "coordonnees_gps": [ + 50.0639160287, + 2.32503477883 + ], + "libelle_d_acheminement": "LA VICOGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32503477883, + 50.0639160287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "114e0935582099728d2ee24ea18ec3dd72ec59db", + "fields": { + "code_commune_insee": "65355", + "nom_de_la_commune": "PAREAC", + "code_postal": "65100", + "coordonnees_gps": [ + 43.1149928821, + 0.0195991686393 + ], + "libelle_d_acheminement": "PAREAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0195991686393, + 43.1149928821 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e14217cef01a8619efd4cf98afcb2bc1484793a3", + "fields": { + "code_commune_insee": "80800", + "nom_de_la_commune": "VILLERS CAMPSART", + "code_postal": "80140", + "coordonnees_gps": [ + 49.8698144741, + 1.83537806495 + ], + "libelle_d_acheminement": "VILLERS CAMPSART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.83537806495, + 49.8698144741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9031634da4da0c8619947dbe66b684155685217e", + "fields": { + "code_commune_insee": "65357", + "nom_de_la_commune": "PEYRAUBE", + "code_postal": "65190", + "coordonnees_gps": [ + 43.2027242549, + 0.255934590964 + ], + "libelle_d_acheminement": "PEYRAUBE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.255934590964, + 43.2027242549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07b38252e145cffb3d6ce6d367b309be1901f8f2", + "fields": { + "code_commune_insee": "80803", + "nom_de_la_commune": "VILLERS LES ROYE", + "code_postal": "80700", + "coordonnees_gps": [ + 49.7063943407, + 2.73634847272 + ], + "libelle_d_acheminement": "VILLERS LES ROYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.73634847272, + 49.7063943407 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7772edcaa2f375a4294c76e7bee5ee6b0dd43f24", + "fields": { + "code_commune_insee": "65366", + "nom_de_la_commune": "POUEYFERRE", + "code_postal": "65100", + "coordonnees_gps": [ + 43.1194383468, + -0.0813313513521 + ], + "libelle_d_acheminement": "POUEYFERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0813313513521, + 43.1194383468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8e33180462b9c2a61e0372f9c61d519dd419c49", + "fields": { + "code_commune_insee": "80804", + "nom_de_la_commune": "VILLERS SOUS AILLY", + "code_postal": "80690", + "coordonnees_gps": [ + 50.0624746155, + 2.01779325981 + ], + "libelle_d_acheminement": "VILLERS SOUS AILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.01779325981, + 50.0624746155 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6d80e31ed5aaa2c3a99ef5258aa0e07b5d2eab8", + "fields": { + "code_commune_insee": "65379", + "nom_de_la_commune": "RIS", + "code_postal": "65590", + "coordonnees_gps": [ + 42.8855674038, + 0.402762810462 + ], + "libelle_d_acheminement": "RIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.402762810462, + 42.8855674038 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f756a47184dd388869061169195052577d8aa32a", + "fields": { + "code_commune_insee": "80815", + "nom_de_la_commune": "VRON", + "code_postal": "80120", + "coordonnees_gps": [ + 50.316036457, + 1.76410075845 + ], + "libelle_d_acheminement": "VRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76410075845, + 50.316036457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9e2a61e6243af1beabc6d2a0f01d727036c923c", + "fields": { + "code_commune_insee": "65387", + "nom_de_la_commune": "ST LANNE", + "code_postal": "65700", + "coordonnees_gps": [ + 43.586077387, + -0.0699024162423 + ], + "libelle_d_acheminement": "ST LANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0699024162423, + 43.586077387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e825367be0bd03d5b68fb1890689af867999d8e7", + "fields": { + "code_commune_insee": "80820", + "nom_de_la_commune": "WARLOY BAILLON", + "code_postal": "80300", + "coordonnees_gps": [ + 50.0171155798, + 2.53081565399 + ], + "libelle_d_acheminement": "WARLOY BAILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.53081565399, + 50.0171155798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc5deda3e6198d20fb19bb325c626ea6dd27b443", + "fields": { + "code_commune_insee": "65389", + "nom_de_la_commune": "ST LAURENT DE NESTE", + "code_postal": "65150", + "coordonnees_gps": [ + 43.0920150867, + 0.480853074724 + ], + "libelle_d_acheminement": "ST LAURENT DE NESTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.480853074724, + 43.0920150867 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8284da4297c73669d200adf74f5931719eb4c926", + "fields": { + "code_commune_insee": "80825", + "nom_de_la_commune": "WIRY AU MONT", + "code_postal": "80270", + "coordonnees_gps": [ + 49.9557938172, + 1.84218246146 + ], + "libelle_d_acheminement": "WIRY AU MONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.84218246146, + 49.9557938172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8625d919d53f96399d89fa888c067e4bd08b5ee3", + "fields": { + "code_commune_insee": "65393", + "nom_de_la_commune": "ST PASTOUS", + "code_postal": "65400", + "coordonnees_gps": [ + 43.0155024767, + -0.0429811806834 + ], + "libelle_d_acheminement": "ST PASTOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0429811806834, + 43.0155024767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a735ce92fcfddfd9c19cc46cf2bf20ce73acdcf", + "fields": { + "code_commune_insee": "80836", + "nom_de_la_commune": "YONVAL", + "code_postal": "80132", + "coordonnees_gps": [ + 50.0899110126, + 1.78671680483 + ], + "libelle_d_acheminement": "YONVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78671680483, + 50.0899110126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "87696071df9b80ac97c8556b734e9ff4915b3dde", + "fields": { + "code_commune_insee": "65397", + "nom_de_la_commune": "ST SEVER DE RUSTAN", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3517947858, + 0.226201455092 + ], + "libelle_d_acheminement": "ST SEVER DE RUSTAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.226201455092, + 43.3517947858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c863ccc39add7c65f48ac5263af830b87bec172", + "fields": { + "code_commune_insee": "81003", + "nom_de_la_commune": "ALBAN", + "code_postal": "81250", + "coordonnees_gps": [ + 43.8843961225, + 2.45700986389 + ], + "libelle_d_acheminement": "ALBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45700986389, + 43.8843961225 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f1b1e0ba20a643110320dfeaf1a8e522ebf364c", + "fields": { + "code_commune_insee": "65403", + "nom_de_la_commune": "SANOUS", + "code_postal": "65500", + "coordonnees_gps": [ + 43.3783036013, + 0.00355512460944 + ], + "libelle_d_acheminement": "SANOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00355512460944, + 43.3783036013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22cfa36e9a62fd4c0978d345e3460eaf93125184", + "fields": { + "code_commune_insee": "81004", + "nom_de_la_commune": "ALBI", + "code_postal": "81000", + "coordonnees_gps": [ + 43.9258213622, + 2.14686328555 + ], + "libelle_d_acheminement": "ALBI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14686328555, + 43.9258213622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ebbb12db355aec239eaa4acf577118013e3570a", + "fields": { + "code_commune_insee": "65408", + "nom_de_la_commune": "SARRANCOLIN", + "code_postal": "65410", + "coordonnees_gps": [ + 42.9604187161, + 0.411895325406 + ], + "libelle_d_acheminement": "SARRANCOLIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.411895325406, + 42.9604187161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06509c35e43cab7e35524a36a4c8cc1393bd432b", + "fields": { + "code_commune_insee": "81006", + "nom_de_la_commune": "ALGANS", + "code_postal": "81470", + "coordonnees_gps": [ + 43.6001082724, + 1.89151438957 + ], + "libelle_d_acheminement": "ALGANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89151438957, + 43.6001082724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7ca3dc9d0174123131b868bcf7d3c936ce02574", + "fields": { + "code_commune_insee": "65409", + "nom_de_la_commune": "SARRIAC BIGORRE", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3885175976, + 0.117612400735 + ], + "libelle_d_acheminement": "SARRIAC BIGORRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.117612400735, + 43.3885175976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cc5ee822d11f2e38dfabb46932a8fd023109769a", + "fields": { + "code_commune_insee": "81010", + "nom_de_la_commune": "AMBIALET", + "code_postal": "81430", + "coordonnees_gps": [ + 43.9263758841, + 2.37579999159 + ], + "libelle_d_acheminement": "AMBIALET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37579999159, + 43.9263758841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc0fe955e0ae7ee925220bd15c392ca9f0505aed", + "fields": { + "code_commune_insee": "65417", + "nom_de_la_commune": "SEMEAC", + "code_postal": "65600", + "coordonnees_gps": [ + 43.2246169766, + 0.109046031378 + ], + "libelle_d_acheminement": "SEMEAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.109046031378, + 43.2246169766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cb92becb15f51196cc21ac3f6dccea603987077", + "fields": { + "code_commune_insee": "81016", + "nom_de_la_commune": "ARFONS", + "code_postal": "81110", + "coordonnees_gps": [ + 43.4246280081, + 2.18966306697 + ], + "libelle_d_acheminement": "ARFONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18966306697, + 43.4246280081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0131936f285301a865c3917e749e7d97fedbbfe", + "fields": { + "code_commune_insee": "65418", + "nom_de_la_commune": "SENAC", + "code_postal": "65140", + "coordonnees_gps": [ + 43.3580745238, + 0.188368232081 + ], + "libelle_d_acheminement": "SENAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.188368232081, + 43.3580745238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38c2d1bac86d493e5f1e3371d8ec2776e73283cb", + "fields": { + "code_commune_insee": "81017", + "nom_de_la_commune": "ARIFAT", + "code_postal": "81360", + "coordonnees_gps": [ + 43.7758760162, + 2.3529229423 + ], + "libelle_d_acheminement": "ARIFAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3529229423, + 43.7758760162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "500aadd5f3086bbe1cc1bf4236db682eae4ab122", + "fields": { + "code_commune_insee": "65419", + "nom_de_la_commune": "SENTOUS", + "code_postal": "65330", + "coordonnees_gps": [ + 43.2654727852, + 0.377625495732 + ], + "libelle_d_acheminement": "SENTOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.377625495732, + 43.2654727852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8f3e28b9c90b75104af641a0306dbda619cf552", + "fields": { + "code_commune_insee": "81023", + "nom_de_la_commune": "BARRE", + "code_postal": "81320", + "coordonnees_gps": [ + 43.7432621915, + 2.81599308412 + ], + "libelle_d_acheminement": "BARRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81599308412, + 43.7432621915 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14f6dc820cb5f61281ed6281729fd42af866125a", + "fields": { + "code_commune_insee": "65420", + "nom_de_la_commune": "SERE EN LAVEDAN", + "code_postal": "65400", + "coordonnees_gps": [ + 43.0198406053, + -0.128367115293 + ], + "libelle_d_acheminement": "SERE EN LAVEDAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.128367115293, + 43.0198406053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a672cb6cf9b90254db1eaeb4d090ef7b82d7aae", + "fields": { + "code_commune_insee": "81024", + "nom_de_la_commune": "BEAUVAIS SUR TESCOU", + "code_postal": "81630", + "coordonnees_gps": [ + 43.8981519823, + 1.57160347509 + ], + "libelle_d_acheminement": "BEAUVAIS SUR TESCOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.57160347509, + 43.8981519823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff879357225a96f8716d5267b197df94ea26dde3", + "fields": { + "code_commune_insee": "65426", + "nom_de_la_commune": "SINZOS", + "code_postal": "65190", + "coordonnees_gps": [ + 43.2200222005, + 0.211795927228 + ], + "libelle_d_acheminement": "SINZOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.211795927228, + 43.2200222005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ff145837f20a2bff0756a6bf9415215c81a24d5", + "fields": { + "ligne_5": "MARSAL", + "code_commune_insee": "81026", + "libelle_d_acheminement": "BELLEGARDE MARSAL", + "code_postal": "81430", + "nom_de_la_commune": "BELLEGARDE MARSAL", + "coordonnees_gps": [ + 43.9045721736, + 2.27727320222 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27727320222, + 43.9045721736 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "65156708668c08283c2d3d18a1e38fe75f636681", + "fields": { + "code_commune_insee": "65432", + "nom_de_la_commune": "SOUBLECAUSE", + "code_postal": "65700", + "coordonnees_gps": [ + 43.5328266693, + -0.0255224883768 + ], + "libelle_d_acheminement": "SOUBLECAUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0255224883768, + 43.5328266693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9977396a1e97da5aa748b12785b435ae2f07df9", + "fields": { + "code_commune_insee": "81028", + "nom_de_la_commune": "BERLATS", + "code_postal": "81260", + "coordonnees_gps": [ + 43.6990584222, + 2.56292415401 + ], + "libelle_d_acheminement": "BERLATS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56292415401, + 43.6990584222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "347144ebd2765d2f8188b587f244b6de9a1e2cf6", + "fields": { + "code_commune_insee": "65435", + "nom_de_la_commune": "SOULOM", + "code_postal": "65260", + "coordonnees_gps": [ + 42.9498367638, + -0.0729862244782 + ], + "libelle_d_acheminement": "SOULOM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0729862244782, + 42.9498367638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e472c2cea4763c51fb094c7590f9ace8e95ac169", + "fields": { + "code_commune_insee": "81040", + "nom_de_la_commune": "BROUSSE", + "code_postal": "81440", + "coordonnees_gps": [ + 43.720141927, + 2.06153730693 + ], + "libelle_d_acheminement": "BROUSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06153730693, + 43.720141927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f022d415ebc211accb734da704248b2f77ae7fdd", + "fields": { + "code_commune_insee": "65439", + "nom_de_la_commune": "TARASTEIX", + "code_postal": "65320", + "coordonnees_gps": [ + 43.3172131776, + -0.00747302687854 + ], + "libelle_d_acheminement": "TARASTEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.00747302687854, + 43.3172131776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45670c81d7c015a190e1b8d649821a928699fae1", + "fields": { + "code_commune_insee": "81061", + "nom_de_la_commune": "CASTANET", + "code_postal": "81150", + "coordonnees_gps": [ + 43.9734777518, + 2.03636220381 + ], + "libelle_d_acheminement": "CASTANET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03636220381, + 43.9734777518 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6c03ac6875ab9fc9c33c3abedb39367a6f0b6d6", + "fields": { + "code_commune_insee": "65449", + "nom_de_la_commune": "TOURNOUS DEVANT", + "code_postal": "65330", + "coordonnees_gps": [ + 43.2502363801, + 0.420327450195 + ], + "libelle_d_acheminement": "TOURNOUS DEVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.420327450195, + 43.2502363801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "249698f13896a683597ddb986fcda4cb302231a1", + "fields": { + "code_commune_insee": "81066", + "nom_de_la_commune": "CAUCALIERES", + "code_postal": "81200", + "coordonnees_gps": [ + 43.5399609489, + 2.31043142734 + ], + "libelle_d_acheminement": "CAUCALIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31043142734, + 43.5399609489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "64241aa867d142392cfe49842940cbd938dfe525", + "fields": { + "code_commune_insee": "65451", + "nom_de_la_commune": "TREBONS", + "code_postal": "65200", + "coordonnees_gps": [ + 43.0950124343, + 0.107093938563 + ], + "libelle_d_acheminement": "TREBONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.107093938563, + 43.0950124343 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "054eed51c7c2e0652cf7caada3dbfe61b35df130", + "fields": { + "code_commune_insee": "81069", + "nom_de_la_commune": "CORDES SUR CIEL", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0681683828, + 1.95360871103 + ], + "libelle_d_acheminement": "CORDES SUR CIEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95360871103, + 44.0681683828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0693f92c680200cab445298355ec8a6fc8d14b2e", + "fields": { + "code_commune_insee": "65453", + "nom_de_la_commune": "TROUBAT", + "code_postal": "65370", + "coordonnees_gps": [ + 42.9751262869, + 0.582135854208 + ], + "libelle_d_acheminement": "TROUBAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.582135854208, + 42.9751262869 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3016481302544b08f12deac4ec9bd53875db60e5", + "fields": { + "code_commune_insee": "81076", + "nom_de_la_commune": "CUQ TOULZA", + "code_postal": "81470", + "coordonnees_gps": [ + 43.5623792755, + 1.88686468644 + ], + "libelle_d_acheminement": "CUQ TOULZA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88686468644, + 43.5623792755 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "659cc4e5d80d56b8070b3dda915073b59c74b384", + "fields": { + "code_commune_insee": "65455", + "nom_de_la_commune": "TUZAGUET", + "code_postal": "65150", + "coordonnees_gps": [ + 43.0839092418, + 0.441803377516 + ], + "libelle_d_acheminement": "TUZAGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.441803377516, + 43.0839092418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57376d6d1eb463ad122d5f9dcd1fa844b78a8fa5", + "fields": { + "code_commune_insee": "81080", + "nom_de_la_commune": "DONNAZAC", + "code_postal": "81170", + "coordonnees_gps": [ + 44.0124743506, + 1.94438171897 + ], + "libelle_d_acheminement": "DONNAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.94438171897, + 44.0124743506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f2f563cb903afaf35c7db5de21cfaf925a47c1b", + "fields": { + "code_commune_insee": "65461", + "nom_de_la_commune": "VIDOU", + "code_postal": "65220", + "coordonnees_gps": [ + 43.2984065613, + 0.33215461226 + ], + "libelle_d_acheminement": "VIDOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33215461226, + 43.2984065613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13e359fe465a0a1f4ef9ccac5bf96de7c6242ddb", + "fields": { + "code_commune_insee": "81087", + "nom_de_la_commune": "FAYSSAC", + "code_postal": "81150", + "coordonnees_gps": [ + 43.9601258045, + 1.98037928954 + ], + "libelle_d_acheminement": "FAYSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98037928954, + 43.9601258045 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1ca576c437269f22bd669004e8964170f6e9c97", + "fields": { + "code_commune_insee": "65468", + "nom_de_la_commune": "VIEUZOS", + "code_postal": "65230", + "coordonnees_gps": [ + 43.2546308261, + 0.447929093195 + ], + "libelle_d_acheminement": "VIEUZOS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.447929093195, + 43.2546308261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "be4c6e0f2e552d39907c429041987f8ea2c10828", + "fields": { + "code_commune_insee": "81088", + "nom_de_la_commune": "FAUCH", + "code_postal": "81120", + "coordonnees_gps": [ + 43.8391719667, + 2.25836350572 + ], + "libelle_d_acheminement": "FAUCH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25836350572, + 43.8391719667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5219a4d6e4a72dd55d066759166358ccb2f97437", + "fields": { + "code_commune_insee": "65475", + "nom_de_la_commune": "VILLEMUR", + "code_postal": "65230", + "coordonnees_gps": [ + 43.2528387965, + 0.55548588731 + ], + "libelle_d_acheminement": "VILLEMUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.55548588731, + 43.2528387965 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0bd472932181a19ce6f57ef3f393ac903550af7c", + "fields": { + "code_commune_insee": "81092", + "nom_de_la_commune": "FIAC", + "code_postal": "81500", + "coordonnees_gps": [ + 43.699007933, + 1.90988416246 + ], + "libelle_d_acheminement": "FIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.90988416246, + 43.699007933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6f1324be6e3a27a583e702fdb0dd9eb53ed4779", + "fields": { + "code_commune_insee": "65476", + "nom_de_la_commune": "VILLENAVE PRES BEARN", + "code_postal": "65500", + "coordonnees_gps": [ + 43.3658932913, + -0.0935111328163 + ], + "libelle_d_acheminement": "VILLENAVE PRES BEARN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0935111328163, + 43.3658932913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4e4a23b4554c49c4812bf21ddfd3bf6367e2017", + "fields": { + "code_commune_insee": "81099", + "nom_de_la_commune": "GAILLAC", + "code_postal": "81600", + "coordonnees_gps": [ + 43.9170968776, + 1.88647213801 + ], + "libelle_d_acheminement": "GAILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.88647213801, + 43.9170968776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2665f1dc0486a00ecf1d5c87460aa0fb33c265bc", + "fields": { + "code_commune_insee": "65479", + "nom_de_la_commune": "VISKER", + "code_postal": "65200", + "coordonnees_gps": [ + 43.1385924723, + 0.0683532878312 + ], + "libelle_d_acheminement": "VISKER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0683532878312, + 43.1385924723 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a78749547bc3b71bcf4d065ceb71b2a6744be1ef", + "fields": { + "code_commune_insee": "81100", + "nom_de_la_commune": "GARREVAQUES", + "code_postal": "81700", + "coordonnees_gps": [ + 43.4927448733, + 1.98351501119 + ], + "libelle_d_acheminement": "GARREVAQUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98351501119, + 43.4927448733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76d2545d8aab58fb0c864203ca6bd292599d7289", + "fields": { + "code_commune_insee": "65481", + "nom_de_la_commune": "BAREGES", + "code_postal": "65120", + "coordonnees_gps": [ + 42.877602229, + 0.113710879628 + ], + "libelle_d_acheminement": "BAREGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.113710879628, + 42.877602229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c6ee37928381160e8fc28be8ae46f48cd40561d", + "fields": { + "code_commune_insee": "81106", + "nom_de_la_commune": "GRAZAC", + "code_postal": "81800", + "coordonnees_gps": [ + 43.8499819976, + 1.64948464034 + ], + "libelle_d_acheminement": "GRAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.64948464034, + 43.8499819976 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f3bd807eabe21308057f54fee0f37c8a6fd2c2a", + "fields": { + "code_commune_insee": "66005", + "nom_de_la_commune": "ANGOUSTRINE VILLENEUVE DES ESCALDES", + "code_postal": "66760", + "coordonnees_gps": [ + 42.5644340706, + 1.95068130074 + ], + "libelle_d_acheminement": "ANGOUSTRINE VILLENEUVE ESCALDES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95068130074, + 42.5644340706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6976c47783cc71fa8503a3fa358ad6021c7d163", + "fields": { + "code_commune_insee": "81109", + "nom_de_la_commune": "JONQUIERES", + "code_postal": "81440", + "coordonnees_gps": [ + 43.6585990989, + 2.14341169546 + ], + "libelle_d_acheminement": "JONQUIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14341169546, + 43.6585990989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d61a52c00fa87f428f6a07d2f7152f53d6cc4828", + "fields": { + "ligne_5": "VILLENEUVE DES ESCALDES", + "code_commune_insee": "66005", + "libelle_d_acheminement": "ANGOUSTRINE VILLENEUVE ESCALDES", + "code_postal": "66760", + "nom_de_la_commune": "ANGOUSTRINE VILLENEUVE DES ESCALDES", + "coordonnees_gps": [ + 42.5644340706, + 1.95068130074 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95068130074, + 42.5644340706 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "212829330151c4ee830054fdd061540d20b16ec7", + "fields": { + "code_commune_insee": "81122", + "nom_de_la_commune": "LACAPELLE PINET", + "code_postal": "81340", + "coordonnees_gps": [ + 44.0677076414, + 2.35434693156 + ], + "libelle_d_acheminement": "LACAPELLE PINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35434693156, + 44.0677076414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2245ddf9875896def67b706c1bc9d6e8b1d05480", + "fields": { + "ligne_5": "ARGELES PLAGE", + "code_commune_insee": "66008", + "libelle_d_acheminement": "ARGELES SUR MER", + "code_postal": "66700", + "nom_de_la_commune": "ARGELES SUR MER", + "coordonnees_gps": [ + 42.5352193463, + 3.02429862885 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02429862885, + 42.5352193463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d7327aca2d5da88cbc163045f1efd73860ab6c4b", + "fields": { + "code_commune_insee": "81124", + "nom_de_la_commune": "LACAUNE", + "code_postal": "81230", + "coordonnees_gps": [ + 43.6972753085, + 2.68833285874 + ], + "libelle_d_acheminement": "LACAUNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68833285874, + 43.6972753085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d5587a986a6d9477be250499cd6211716996333", + "fields": { + "code_commune_insee": "66011", + "nom_de_la_commune": "BAGES", + "code_postal": "66670", + "coordonnees_gps": [ + 42.6073851516, + 2.88856969665 + ], + "libelle_d_acheminement": "BAGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.88856969665, + 42.6073851516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1ac35ce7342a451b921d8566459eb0db2f016ef", + "fields": { + "code_commune_insee": "81125", + "nom_de_la_commune": "LACAZE", + "code_postal": "81330", + "coordonnees_gps": [ + 43.7430264431, + 2.50920247729 + ], + "libelle_d_acheminement": "LACAZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.50920247729, + 43.7430264431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b96aaf482d1a7dc348a60fa7468c9a86074787b", + "fields": { + "code_commune_insee": "66016", + "nom_de_la_commune": "BANYULS SUR MER", + "code_postal": "66650", + "coordonnees_gps": [ + 42.4614750255, + 3.09989653778 + ], + "libelle_d_acheminement": "BANYULS SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09989653778, + 42.4614750255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c184d5446b9ace37295be0ec1f72c412fbabf70f", + "fields": { + "ligne_5": "GUITALENS", + "code_commune_insee": "81132", + "libelle_d_acheminement": "GUITALENS L ALBAREDE", + "code_postal": "81220", + "nom_de_la_commune": "GUITALENS L ALBAREDE", + "coordonnees_gps": [ + 43.6378592707, + 2.04358289042 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04358289042, + 43.6378592707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39528923cb95c542a3c23eb47c55b1cd61e927e9", + "fields": { + "code_commune_insee": "66022", + "nom_de_la_commune": "BOULE D AMONT", + "code_postal": "66130", + "coordonnees_gps": [ + 42.5879849764, + 2.59192090962 + ], + "libelle_d_acheminement": "BOULE D AMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.59192090962, + 42.5879849764 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b615e73ba876fd3e47fbe449dd3d0e660578e5fd", + "fields": { + "code_commune_insee": "81159", + "nom_de_la_commune": "MASSAC SERAN", + "code_postal": "81500", + "coordonnees_gps": [ + 43.6683120665, + 1.86258553389 + ], + "libelle_d_acheminement": "MASSAC SERAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86258553389, + 43.6683120665 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab94ef748acb8f9a1a28b1d293bc07b5b32b1f12", + "fields": { + "code_commune_insee": "66030", + "nom_de_la_commune": "CALCE", + "code_postal": "66600", + "coordonnees_gps": [ + 42.7479343111, + 2.75646495256 + ], + "libelle_d_acheminement": "CALCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.75646495256, + 42.7479343111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23e12f9775bcddff196fb7700c4f7039079c6dc5", + "fields": { + "code_commune_insee": "81160", + "nom_de_la_commune": "MASSAGUEL", + "code_postal": "81110", + "coordonnees_gps": [ + 43.4756759795, + 2.17631948786 + ], + "libelle_d_acheminement": "MASSAGUEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17631948786, + 43.4756759795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e63c53ab0c06d126a71471b182764fcf0bb5d6ae", + "fields": { + "code_commune_insee": "66033", + "nom_de_la_commune": "CAMELAS", + "code_postal": "66300", + "coordonnees_gps": [ + 42.6394607157, + 2.68891489054 + ], + "libelle_d_acheminement": "CAMELAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68891489054, + 42.6394607157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24ce2b9a3055ea775b3d53e2fc6b1b3eb87c2c9b", + "fields": { + "code_commune_insee": "81168", + "nom_de_la_commune": "MIRANDOL BOURGNOUNAC", + "code_postal": "81190", + "coordonnees_gps": [ + 44.1468118913, + 2.17074535227 + ], + "libelle_d_acheminement": "MIRANDOL BOURGNOUNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17074535227, + 44.1468118913 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1720ba4624c4caf99c5a9154de595f68b76b2bea", + "fields": { + "ligne_5": "CANET PLAGE", + "code_commune_insee": "66037", + "libelle_d_acheminement": "CANET EN ROUSSILLON", + "code_postal": "66140", + "nom_de_la_commune": "CANET EN ROUSSILLON", + "coordonnees_gps": [ + 42.6841288047, + 3.01161744752 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01161744752, + 42.6841288047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62258f4bc926b882bb8067399ed97ebdf526a085", + "fields": { + "code_commune_insee": "81177", + "nom_de_la_commune": "MONTFA", + "code_postal": "81210", + "coordonnees_gps": [ + 43.7002321561, + 2.22942914563 + ], + "libelle_d_acheminement": "MONTFA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22942914563, + 43.7002321561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eaa02f13b84a51ff7f723f36b37e0e09194ce2f6", + "fields": { + "code_commune_insee": "66038", + "nom_de_la_commune": "CANOHES", + "code_postal": "66680", + "coordonnees_gps": [ + 42.6518506927, + 2.83475138204 + ], + "libelle_d_acheminement": "CANOHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.83475138204, + 42.6518506927 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c62150e9cbef05de2a3456acd7061bd704aaf527", + "fields": { + "code_commune_insee": "81178", + "nom_de_la_commune": "MONTGAILLARD", + "code_postal": "81630", + "coordonnees_gps": [ + 43.9080851557, + 1.60943104266 + ], + "libelle_d_acheminement": "MONTGAILLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60943104266, + 43.9080851557 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee2147b2d9c9c4393b14b7da1167e48a58622a63", + "fields": { + "code_commune_insee": "66041", + "nom_de_la_commune": "CASES DE PENE", + "code_postal": "66600", + "coordonnees_gps": [ + 42.7867407426, + 2.77853627321 + ], + "libelle_d_acheminement": "CASES DE PENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77853627321, + 42.7867407426 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ea8e5d840d78565f169a0821eaef196445083f0a", + "fields": { + "code_commune_insee": "81191", + "nom_de_la_commune": "MOUZIEYS PANENS", + "code_postal": "81170", + "coordonnees_gps": [ + 44.1054127277, + 1.93295083712 + ], + "libelle_d_acheminement": "MOUZIEYS PANENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93295083712, + 44.1054127277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ff22dd48e42ef99b89422fcca7e0dd0cbe187d6", + "fields": { + "code_commune_insee": "66043", + "nom_de_la_commune": "CASTEIL", + "code_postal": "66820", + "coordonnees_gps": [ + 42.5057155606, + 2.4200306299 + ], + "libelle_d_acheminement": "CASTEIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4200306299, + 42.5057155606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4fda25ae6e4697adb2aa27ef03c80b92c317e72", + "fields": { + "code_commune_insee": "81192", + "nom_de_la_commune": "MURAT SUR VEBRE", + "code_postal": "81320", + "coordonnees_gps": [ + 43.6933887734, + 2.86020880416 + ], + "libelle_d_acheminement": "MURAT SUR VEBRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86020880416, + 43.6933887734 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b4c5962218ff872b0ef6cb270909a8eb149c2241", + "fields": { + "code_commune_insee": "66045", + "nom_de_la_commune": "CATLLAR", + "code_postal": "66500", + "coordonnees_gps": [ + 42.6404379908, + 2.42258231457 + ], + "libelle_d_acheminement": "CATLLAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42258231457, + 42.6404379908 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d9d8d31c22623ecabc4430da508bfe692bfb61e", + "fields": { + "code_commune_insee": "81200", + "nom_de_la_commune": "PALLEVILLE", + "code_postal": "81700", + "coordonnees_gps": [ + 43.5037421049, + 1.9961127405 + ], + "libelle_d_acheminement": "PALLEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9961127405, + 43.5037421049 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90c2f4b12089361d0b216049e96873d81d3ea08c", + "fields": { + "code_commune_insee": "66053", + "nom_de_la_commune": "COLLIOURE", + "code_postal": "66190", + "coordonnees_gps": [ + 42.5130107325, + 3.07254121467 + ], + "libelle_d_acheminement": "COLLIOURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07254121467, + 42.5130107325 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79d787f0299c9c23d32257bf464c1621dc24e151", + "fields": { + "code_commune_insee": "81201", + "nom_de_la_commune": "PAMPELONNE", + "code_postal": "81190", + "coordonnees_gps": [ + 44.1158346297, + 2.24230073337 + ], + "libelle_d_acheminement": "PAMPELONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24230073337, + 44.1158346297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "498c4791761449f502f18c0786e1e3fe3d74852f", + "fields": { + "code_commune_insee": "66065", + "nom_de_la_commune": "ELNE", + "code_postal": "66200", + "coordonnees_gps": [ + 42.6008592066, + 2.97119695146 + ], + "libelle_d_acheminement": "ELNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97119695146, + 42.6008592066 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "129db5f4cd56aecc4396740c671bce3e0752b4ac", + "fields": { + "code_commune_insee": "81208", + "nom_de_la_commune": "PEYROLE", + "code_postal": "81310", + "coordonnees_gps": [ + 43.8140246495, + 1.89716126791 + ], + "libelle_d_acheminement": "PEYROLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.89716126791, + 43.8140246495 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "370eca0029ea0031e02b493ff5d823ffacac3870", + "fields": { + "code_commune_insee": "66067", + "nom_de_la_commune": "ERR", + "code_postal": "66800", + "coordonnees_gps": [ + 42.4101855099, + 2.06608273686 + ], + "libelle_d_acheminement": "ERR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06608273686, + 42.4101855099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c960f0754d6d66f7d3b3e3c59a65bfec693f74ba", + "fields": { + "code_commune_insee": "81225", + "nom_de_la_commune": "RIVIERES", + "code_postal": "81600", + "coordonnees_gps": [ + 43.9157732969, + 1.96947284122 + ], + "libelle_d_acheminement": "RIVIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96947284122, + 43.9157732969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6be3fe3e4d3a1148912e50897ce03f717716d36c", + "fields": { + "code_commune_insee": "66068", + "nom_de_la_commune": "ESCARO", + "code_postal": "66360", + "coordonnees_gps": [ + 42.5345574095, + 2.31898297559 + ], + "libelle_d_acheminement": "ESCARO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31898297559, + 42.5345574095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e66a0462a6adcdade88580037f32db1e5bdd1f7a", + "fields": { + "ligne_5": "ST ANTONIN DE LACALM", + "code_commune_insee": "81233", + "libelle_d_acheminement": "TERRE DE BANCALIE", + "code_postal": "81120", + "nom_de_la_commune": "TERRE DE BANCALIE", + "coordonnees_gps": [ + 43.8091924031, + 2.26353154386 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26353154386, + 43.8091924031 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d86182c365f03b9afdf143a1747e1b8cdc09db74", + "fields": { + "code_commune_insee": "66069", + "nom_de_la_commune": "ESPIRA DE L AGLY", + "code_postal": "66600", + "coordonnees_gps": [ + 42.7964740198, + 2.82234963668 + ], + "libelle_d_acheminement": "ESPIRA DE L AGLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.82234963668, + 42.7964740198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e09f1c2d20823c81e30e75bd995ee281aed77915", + "fields": { + "code_commune_insee": "81238", + "nom_de_la_commune": "ST AMANS SOULT", + "code_postal": "81240", + "coordonnees_gps": [ + 43.4644785772, + 2.47706341258 + ], + "libelle_d_acheminement": "ST AMANS SOULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.47706341258, + 43.4644785772 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4eb48fcdb0a271691ec0695ee28b988c57d42b2", + "fields": { + "code_commune_insee": "66073", + "nom_de_la_commune": "ESTOHER", + "code_postal": "66320", + "coordonnees_gps": [ + 42.5679910483, + 2.48208662183 + ], + "libelle_d_acheminement": "ESTOHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48208662183, + 42.5679910483 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a11ea164fd68707ff7c3107ec6ace0b4f2e0671c", + "fields": { + "code_commune_insee": "81243", + "nom_de_la_commune": "ST BEAUZILE", + "code_postal": "81140", + "coordonnees_gps": [ + 44.0274349161, + 1.81723438906 + ], + "libelle_d_acheminement": "ST BEAUZILE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81723438906, + 44.0274349161 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29f302adce2e029c65f7347cccf5d678398c0ac1", + "fields": { + "code_commune_insee": "66074", + "nom_de_la_commune": "EUS", + "code_postal": "66500", + "coordonnees_gps": [ + 42.657654474, + 2.44661138862 + ], + "libelle_d_acheminement": "EUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44661138862, + 42.657654474 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23e3120713f9e976e3884bba2c0ed61594d790c8", + "fields": { + "code_commune_insee": "81246", + "nom_de_la_commune": "STE CECILE DU CAYROU", + "code_postal": "81140", + "coordonnees_gps": [ + 44.0018082654, + 1.80559449088 + ], + "libelle_d_acheminement": "STE CECILE DU CAYROU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80559449088, + 44.0018082654 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f8e8612f39409fa4529281fb4709590de4b9a9ea", + "fields": { + "code_commune_insee": "66077", + "nom_de_la_commune": "FENOUILLET", + "code_postal": "66220", + "coordonnees_gps": [ + 42.7823278894, + 2.37368151493 + ], + "libelle_d_acheminement": "FENOUILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37368151493, + 42.7823278894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86c1d73b189a7a81b1e6c63adf385ba5cc7c2d18", + "fields": { + "code_commune_insee": "81249", + "nom_de_la_commune": "STE GEMME", + "code_postal": "81190", + "coordonnees_gps": [ + 44.0888853221, + 2.19609081106 + ], + "libelle_d_acheminement": "STE GEMME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19609081106, + 44.0888853221 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cd1d7d02a796c6c383174964a583ec8118c3016", + "fields": { + "code_commune_insee": "66079", + "nom_de_la_commune": "FINESTRET", + "code_postal": "66320", + "coordonnees_gps": [ + 42.6040161713, + 2.51579255516 + ], + "libelle_d_acheminement": "FINESTRET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51579255516, + 42.6040161713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33be21172cba7a377d550f48b19f18bdc34f8d61", + "fields": { + "code_commune_insee": "81253", + "nom_de_la_commune": "ST GREGOIRE", + "code_postal": "81350", + "coordonnees_gps": [ + 43.9551674192, + 2.26106441809 + ], + "libelle_d_acheminement": "ST GREGOIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26106441809, + 43.9551674192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "501f43afbb2d7e2a13089417cd95499b2fe794b4", + "fields": { + "code_commune_insee": "66082", + "nom_de_la_commune": "FORMIGUERES", + "code_postal": "66210", + "coordonnees_gps": [ + 42.6209968401, + 2.05402456557 + ], + "libelle_d_acheminement": "FORMIGUERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.05402456557, + 42.6209968401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ade765f1e647c985c89626a5457f80d18fbbf122", + "fields": { + "code_commune_insee": "81255", + "nom_de_la_commune": "ST JEAN DE RIVES", + "code_postal": "81500", + "coordonnees_gps": [ + 43.7346247843, + 1.76633924309 + ], + "libelle_d_acheminement": "ST JEAN DE RIVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.76633924309, + 43.7346247843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2305ef2825b613d5ee6b3bd2bd2dff0cdca96d9", + "fields": { + "code_commune_insee": "66083", + "nom_de_la_commune": "FOSSE", + "code_postal": "66220", + "coordonnees_gps": [ + 42.7858632622, + 2.43269558007 + ], + "libelle_d_acheminement": "FOSSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43269558007, + 42.7858632622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80665d8cd2480adea005e12ace4c1001d32ae624", + "fields": { + "code_commune_insee": "81256", + "nom_de_la_commune": "ST JEAN DE VALS", + "code_postal": "81210", + "coordonnees_gps": [ + 43.6871787236, + 2.25694923614 + ], + "libelle_d_acheminement": "ST JEAN DE VALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25694923614, + 43.6871787236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1391b382a02482d3c2fc8277358ec3737812aefb", + "fields": { + "code_commune_insee": "66085", + "nom_de_la_commune": "FUILLA", + "code_postal": "66820", + "coordonnees_gps": [ + 42.5642517, + 2.35588100076 + ], + "libelle_d_acheminement": "FUILLA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35588100076, + 42.5642517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f31cfa22b360b93e1b36d297c4890882de822a04", + "fields": { + "code_commune_insee": "81258", + "nom_de_la_commune": "ST JULIEN DU PUY", + "code_postal": "81440", + "coordonnees_gps": [ + 43.751631087, + 2.08059603326 + ], + "libelle_d_acheminement": "ST JULIEN DU PUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08059603326, + 43.751631087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d552467fc0d4a291d7c36e51d22a0b0b02ca8d9b", + "fields": { + "code_commune_insee": "66086", + "nom_de_la_commune": "GLORIANES", + "code_postal": "66320", + "coordonnees_gps": [ + 42.5942469638, + 2.55462590969 + ], + "libelle_d_acheminement": "GLORIANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.55462590969, + 42.5942469638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f57e32cd95b270d29b28e87bc54666881fdfe64f", + "fields": { + "code_commune_insee": "81265", + "nom_de_la_commune": "ST MICHEL DE VAX", + "code_postal": "81140", + "coordonnees_gps": [ + 44.1085463735, + 1.80659770648 + ], + "libelle_d_acheminement": "ST MICHEL DE VAX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80659770648, + 44.1085463735 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6743ca2ed33fc706b2c81bbf779117b74a0c8aa9", + "fields": { + "code_commune_insee": "66102", + "nom_de_la_commune": "MANTET", + "code_postal": "66360", + "coordonnees_gps": [ + 42.4532803899, + 2.29477774171 + ], + "libelle_d_acheminement": "MANTET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29477774171, + 42.4532803899 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ae302588e0462d02b4e1dcd4cd828aa3802c92f", + "fields": { + "code_commune_insee": "81275", + "nom_de_la_commune": "SALLES", + "code_postal": "81640", + "coordonnees_gps": [ + 44.0752776233, + 2.04296724146 + ], + "libelle_d_acheminement": "SALLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04296724146, + 44.0752776233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5751de7bdaf3991d813c2973394ecac219df966", + "fields": { + "code_commune_insee": "66103", + "nom_de_la_commune": "MARQUIXANES", + "code_postal": "66320", + "coordonnees_gps": [ + 42.6377902043, + 2.48426796216 + ], + "libelle_d_acheminement": "MARQUIXANES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48426796216, + 42.6377902043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07cfe3aced4ea7b396174854ab87957b16103957", + "fields": { + "code_commune_insee": "81283", + "nom_de_la_commune": "SENOUILLAC", + "code_postal": "81600", + "coordonnees_gps": [ + 43.947412308, + 1.95119521002 + ], + "libelle_d_acheminement": "SENOUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95119521002, + 43.947412308 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d71ab71c5c3f0b7ea1b3a9d920cbe2008c63298", + "fields": { + "code_commune_insee": "66114", + "nom_de_la_commune": "MONTESCOT", + "code_postal": "66200", + "coordonnees_gps": [ + 42.6154571229, + 2.92213721952 + ], + "libelle_d_acheminement": "MONTESCOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92213721952, + 42.6154571229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0aa346657005938825c56558bd34b2331d66dd0a", + "fields": { + "code_commune_insee": "81293", + "nom_de_la_commune": "TAURIAC", + "code_postal": "81630", + "coordonnees_gps": [ + 43.8795465115, + 1.59365631219 + ], + "libelle_d_acheminement": "TAURIAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59365631219, + 43.8795465115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "969fb149f1f21fe3d8c4f7bb28f3712509fbf5ee", + "fields": { + "code_commune_insee": "66125", + "nom_de_la_commune": "OLETTE", + "code_postal": "66360", + "coordonnees_gps": [ + 42.5955754383, + 2.24262771832 + ], + "libelle_d_acheminement": "OLETTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24262771832, + 42.5955754383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aed5324e05f85c1f163136a95ff87a903e90e24d", + "fields": { + "code_commune_insee": "81308", + "nom_de_la_commune": "VALENCE D ALBIGEOIS", + "code_postal": "81340", + "coordonnees_gps": [ + 44.0155454064, + 2.3857453557 + ], + "libelle_d_acheminement": "VALENCE D ALBIGEOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3857453557, + 44.0155454064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f99f54e8a5f5faf4560f397994a47dd698a5c9fe", + "fields": { + "code_commune_insee": "66136", + "nom_de_la_commune": "PERPIGNAN", + "code_postal": "66000", + "coordonnees_gps": [ + 42.6965954131, + 2.89936953979 + ], + "libelle_d_acheminement": "PERPIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89936953979, + 42.6965954131 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0b79e0d33f6905229bb1bb61bc6ee3d369cdb0a", + "fields": { + "code_commune_insee": "81309", + "nom_de_la_commune": "VAOUR", + "code_postal": "81140", + "coordonnees_gps": [ + 44.070490584, + 1.80207559018 + ], + "libelle_d_acheminement": "VAOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.80207559018, + 44.070490584 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e1197543ed925b345097625b629af24531217eb", + "fields": { + "code_commune_insee": "66137", + "nom_de_la_commune": "LE PERTHUS", + "code_postal": "66480", + "coordonnees_gps": [ + 42.4661561009, + 2.85850748207 + ], + "libelle_d_acheminement": "LE PERTHUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85850748207, + 42.4661561009 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe6d9d9afde4b19ae235a41812643c1234b8ea46", + "fields": { + "code_commune_insee": "81315", + "nom_de_la_commune": "VIELMUR SUR AGOUT", + "code_postal": "81570", + "coordonnees_gps": [ + 43.6274174186, + 2.10074049718 + ], + "libelle_d_acheminement": "VIELMUR SUR AGOUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10074049718, + 43.6274174186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58d7b5ad4335b71daaeb5956ad053fa980ba2b1b", + "fields": { + "code_commune_insee": "66139", + "nom_de_la_commune": "PEZILLA DE CONFLENT", + "code_postal": "66730", + "coordonnees_gps": [ + 42.7356387796, + 2.48928199955 + ], + "libelle_d_acheminement": "PEZILLA DE CONFLENT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48928199955, + 42.7356387796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff08fb49844599a31194be1302c58f5bbf702038", + "fields": { + "code_commune_insee": "81316", + "nom_de_la_commune": "VIEUX", + "code_postal": "81140", + "coordonnees_gps": [ + 43.9964922909, + 1.86610930745 + ], + "libelle_d_acheminement": "VIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86610930745, + 43.9964922909 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c22719ff73f40caf4be7f3d33afdc486c8398d07", + "fields": { + "code_commune_insee": "66140", + "nom_de_la_commune": "PEZILLA LA RIVIERE", + "code_postal": "66370", + "coordonnees_gps": [ + 42.7052766962, + 2.76420559832 + ], + "libelle_d_acheminement": "PEZILLA LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.76420559832, + 42.7052766962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b04f286daba0be373c4e82f84134d348f2dce72b", + "fields": { + "code_commune_insee": "81318", + "nom_de_la_commune": "VILLENEUVE LES LAVAUR", + "code_postal": "81500", + "coordonnees_gps": [ + 43.6007072849, + 1.78331121274 + ], + "libelle_d_acheminement": "VILLENEUVE LES LAVAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78331121274, + 43.6007072849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ccec3ddd875dd65de154119bddccbaf32d8f67d", + "fields": { + "code_commune_insee": "66149", + "nom_de_la_commune": "PRADES", + "code_postal": "66500", + "coordonnees_gps": [ + 42.6145021996, + 2.43074849066 + ], + "libelle_d_acheminement": "PRADES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.43074849066, + 42.6145021996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8d2ab0f7f15c4d942bdd2c999cada424fc766d9b", + "fields": { + "code_commune_insee": "81324", + "nom_de_la_commune": "VIVIERS LES LAVAUR", + "code_postal": "81500", + "coordonnees_gps": [ + 43.6309479905, + 1.79117670514 + ], + "libelle_d_acheminement": "VIVIERS LES LAVAUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.79117670514, + 43.6309479905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a582340e16b7ef5a040aa113cd1063478c806cb", + "fields": { + "code_commune_insee": "66151", + "nom_de_la_commune": "PRATS DE SOURNIA", + "code_postal": "66730", + "coordonnees_gps": [ + 42.7426820307, + 2.45927988592 + ], + "libelle_d_acheminement": "PRATS DE SOURNIA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45927988592, + 42.7426820307 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a5ba6d216090102a24ccb4b0b59045a923f5048", + "fields": { + "code_commune_insee": "81325", + "nom_de_la_commune": "VIVIERS LES MONTAGNES", + "code_postal": "81290", + "coordonnees_gps": [ + 43.5498302673, + 2.17556071709 + ], + "libelle_d_acheminement": "VIVIERS LES MONTAGNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17556071709, + 43.5498302673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a22e754caaf0426be511e272285cba78e1997d62", + "fields": { + "code_commune_insee": "66154", + "nom_de_la_commune": "PUYVALADOR", + "code_postal": "66210", + "coordonnees_gps": [ + 42.6554096645, + 2.10499616332 + ], + "libelle_d_acheminement": "PUYVALADOR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.10499616332, + 42.6554096645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3452eae8172b267f8868861e016fc2097b905222", + "fields": { + "code_commune_insee": "81326", + "nom_de_la_commune": "STE CROIX", + "code_postal": "81150", + "coordonnees_gps": [ + 43.9703149708, + 2.07210937838 + ], + "libelle_d_acheminement": "STE CROIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07210937838, + 43.9703149708 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2cfa34f10ce9f28616de6d8ac566212e73e15c9", + "fields": { + "code_commune_insee": "66157", + "nom_de_la_commune": "RAILLEU", + "code_postal": "66360", + "coordonnees_gps": [ + 42.5900683086, + 2.15898183392 + ], + "libelle_d_acheminement": "RAILLEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15898183392, + 42.5900683086 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adc90d16ed291f68eb1dd951e7bbcc500d53a0d3", + "fields": { + "code_commune_insee": "82001", + "nom_de_la_commune": "ALBEFEUILLE LAGARDE", + "code_postal": "82290", + "coordonnees_gps": [ + 44.0482971636, + 1.27398142654 + ], + "libelle_d_acheminement": "ALBEFEUILLE LAGARDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27398142654, + 44.0482971636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1aa4f01b69ef6bb3f783d28946f763c9ec6e29b2", + "fields": { + "code_commune_insee": "66171", + "nom_de_la_commune": "ST CYPRIEN", + "code_postal": "66750", + "coordonnees_gps": [ + 42.6220280294, + 3.01622014324 + ], + "libelle_d_acheminement": "ST CYPRIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01622014324, + 42.6220280294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69a755d8072b20be93c9c2a0feee6dd7477f7a73", + "fields": { + "code_commune_insee": "82012", + "nom_de_la_commune": "LES BARTHES", + "code_postal": "82100", + "coordonnees_gps": [ + 44.0911919961, + 1.17175938538 + ], + "libelle_d_acheminement": "LES BARTHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.17175938538, + 44.0911919961 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05e402f3f67cbefda6337ec05b66b90bbe2551c6", + "fields": { + "code_commune_insee": "66176", + "nom_de_la_commune": "ST HIPPOLYTE", + "code_postal": "66510", + "coordonnees_gps": [ + 42.806945541, + 2.97367162246 + ], + "libelle_d_acheminement": "ST HIPPOLYTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97367162246, + 42.806945541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "895f4e4d939eed6aa6ecf3e372af1713e64d6de2", + "fields": { + "code_commune_insee": "82014", + "nom_de_la_commune": "BEAUPUY", + "code_postal": "82600", + "coordonnees_gps": [ + 43.8187281696, + 1.11607060391 + ], + "libelle_d_acheminement": "BEAUPUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11607060391, + 43.8187281696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a80fcbf8d4d65e4d341681e38e9c89aee207d3a", + "fields": { + "code_commune_insee": "66179", + "nom_de_la_commune": "ST LAURENT DE CERDANS", + "code_postal": "66260", + "coordonnees_gps": [ + 42.3968213012, + 2.62129986859 + ], + "libelle_d_acheminement": "ST LAURENT DE CERDANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62129986859, + 42.3968213012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eb991c1a7cd9ff730d10da4799e3aa1e622f1b95", + "fields": { + "code_commune_insee": "82027", + "nom_de_la_commune": "CAMPSAS", + "code_postal": "82370", + "coordonnees_gps": [ + 43.8873028891, + 1.32880119974 + ], + "libelle_d_acheminement": "CAMPSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.32880119974, + 43.8873028891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08755ce970721db39d77e927918e72e0eba9f4c8", + "fields": { + "code_commune_insee": "66181", + "nom_de_la_commune": "STE LEOCADIE", + "code_postal": "66800", + "coordonnees_gps": [ + 42.434356099, + 2.00830705641 + ], + "libelle_d_acheminement": "STE LEOCADIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00830705641, + 42.434356099 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4336313782a1154dd773e936ce28011eddbbb4d5", + "fields": { + "code_commune_insee": "82035", + "nom_de_la_commune": "CAUMONT", + "code_postal": "82210", + "coordonnees_gps": [ + 44.0211223113, + 0.9973632278 + ], + "libelle_d_acheminement": "CAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9973632278, + 44.0211223113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "120c7fb330901833da0cd75d2c07491daee94ef1", + "fields": { + "code_commune_insee": "66185", + "nom_de_la_commune": "ST MICHEL DE LLOTES", + "code_postal": "66130", + "coordonnees_gps": [ + 42.6445028805, + 2.62483449266 + ], + "libelle_d_acheminement": "ST MICHEL DE LLOTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.62483449266, + 42.6445028805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96c7145081c0f97ecf72fee9ef6628a8e82d62ff", + "fields": { + "code_commune_insee": "82039", + "nom_de_la_commune": "CAYRAC", + "code_postal": "82440", + "coordonnees_gps": [ + 44.1039406465, + 1.47852315966 + ], + "libelle_d_acheminement": "CAYRAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47852315966, + 44.1039406465 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59b902aaaa92547cc5e7f9258c41a918af312154", + "fields": { + "code_commune_insee": "66189", + "nom_de_la_commune": "SALEILLES", + "code_postal": "66280", + "coordonnees_gps": [ + 42.6568410057, + 2.94920487175 + ], + "libelle_d_acheminement": "SALEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94920487175, + 42.6568410057 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca3ea13f5ff8aa025e96cf591974ee03fc0f5c06", + "fields": { + "code_commune_insee": "82041", + "nom_de_la_commune": "CAZALS", + "code_postal": "82140", + "coordonnees_gps": [ + 44.1249834446, + 1.6848635445 + ], + "libelle_d_acheminement": "CAZALS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6848635445, + 44.1249834446 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44755a081f373807df5475a9dcf30c803a3d29c4", + "fields": { + "code_commune_insee": "66193", + "nom_de_la_commune": "SERDINYA", + "code_postal": "66360", + "coordonnees_gps": [ + 42.5762876689, + 2.32227751946 + ], + "libelle_d_acheminement": "SERDINYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32227751946, + 42.5762876689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bfed2848dff4c0ed8587853a01038d88d335a1a", + "fields": { + "code_commune_insee": "82045", + "nom_de_la_commune": "CORDES TOLOSANNES", + "code_postal": "82700", + "coordonnees_gps": [ + 43.9758898256, + 1.13586987845 + ], + "libelle_d_acheminement": "CORDES TOLOSANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13586987845, + 43.9758898256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d36caaeb36e78977899dca6008be207b4f4e4425", + "fields": { + "code_commune_insee": "82048", + "nom_de_la_commune": "DIEUPENTALE", + "code_postal": "82170", + "coordonnees_gps": [ + 43.8686375923, + 1.27914799068 + ], + "libelle_d_acheminement": "DIEUPENTALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27914799068, + 43.8686375923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66c3e2ccf2af2450c9f77a29fd16555fd7af210f", + "fields": { + "code_commune_insee": "82049", + "nom_de_la_commune": "DONZAC", + "code_postal": "82340", + "coordonnees_gps": [ + 44.1025353418, + 0.814008819185 + ], + "libelle_d_acheminement": "DONZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.814008819185, + 44.1025353418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f170d51fbd53ff47a2b63c3a811a0510d822612", + "fields": { + "code_commune_insee": "82058", + "nom_de_la_commune": "FAJOLLES", + "code_postal": "82210", + "coordonnees_gps": [ + 43.9666339943, + 1.01247908889 + ], + "libelle_d_acheminement": "FAJOLLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.01247908889, + 43.9666339943 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b22082f1eed51c6e41d5de0996508fb0db7a82e", + "fields": { + "code_commune_insee": "82074", + "nom_de_la_commune": "GRAMONT", + "code_postal": "82120", + "coordonnees_gps": [ + 43.9426554834, + 0.787981814153 + ], + "libelle_d_acheminement": "GRAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.787981814153, + 43.9426554834 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "743152d36ea5f4cad38ae0c2d8da3efd0dc52a71", + "fields": { + "code_commune_insee": "82078", + "nom_de_la_commune": "LABASTIDE DE PENNE", + "code_postal": "82240", + "coordonnees_gps": [ + 44.2817437019, + 1.59192694474 + ], + "libelle_d_acheminement": "LABASTIDE DE PENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.59192694474, + 44.2817437019 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d20a987a1ae703853d6cf788942d94e8f52f3f05", + "fields": { + "code_commune_insee": "82079", + "nom_de_la_commune": "LABASTIDE ST PIERRE", + "code_postal": "82370", + "coordonnees_gps": [ + 43.9190655964, + 1.34640200769 + ], + "libelle_d_acheminement": "LABASTIDE ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.34640200769, + 43.9190655964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cab78345d333e1fade3bf8572b01e173d1e2cb23", + "fields": { + "code_commune_insee": "82085", + "nom_de_la_commune": "LACOURT ST PIERRE", + "code_postal": "82290", + "coordonnees_gps": [ + 43.9885803671, + 1.27169521858 + ], + "libelle_d_acheminement": "LACOURT ST PIERRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.27169521858, + 43.9885803671 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "766f5151891c413c0c7632521f30093f226d2640", + "fields": { + "code_commune_insee": "82087", + "nom_de_la_commune": "LAFRANCAISE", + "code_postal": "82130", + "coordonnees_gps": [ + 44.13545336, + 1.24021964059 + ], + "libelle_d_acheminement": "LAFRANCAISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.24021964059, + 44.13545336 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5837b207738e8e8818235b7d6303aaad02c6f959", + "fields": { + "code_commune_insee": "82101", + "nom_de_la_commune": "MALAUSE", + "code_postal": "82200", + "coordonnees_gps": [ + 44.0899884213, + 0.971913032435 + ], + "libelle_d_acheminement": "MALAUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.971913032435, + 44.0899884213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7545f5b8162a4e5d8ca7c2683eeba1c97d44f2a", + "fields": { + "code_commune_insee": "82114", + "nom_de_la_commune": "MONBEQUI", + "code_postal": "82170", + "coordonnees_gps": [ + 43.8913749856, + 1.23224903007 + ], + "libelle_d_acheminement": "MONBEQUI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.23224903007, + 43.8913749856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b0e3d60dbfc4740b34a90aa6abb6d68b171a8a1", + "fields": { + "code_commune_insee": "82116", + "nom_de_la_commune": "MONTAGUDET", + "code_postal": "82110", + "coordonnees_gps": [ + 44.2476837201, + 1.08705282102 + ], + "libelle_d_acheminement": "MONTAGUDET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08705282102, + 44.2476837201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b26095ee5b6e040516114cd4ae3e75fc5a329e68", + "fields": { + "code_commune_insee": "82119", + "nom_de_la_commune": "MONTALZAT", + "code_postal": "82270", + "coordonnees_gps": [ + 44.2084619848, + 1.51721472042 + ], + "libelle_d_acheminement": "MONTALZAT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.51721472042, + 44.2084619848 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb31027d5f6848d01480daff7d067d68f3d926cd", + "fields": { + "code_commune_insee": "82124", + "nom_de_la_commune": "MONTBETON", + "code_postal": "82290", + "coordonnees_gps": [ + 44.0135610101, + 1.2703654947 + ], + "libelle_d_acheminement": "MONTBETON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.2703654947, + 44.0135610101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33d5347fa8f4e1c9fceccbb64a49aff72f5514f1", + "fields": { + "code_commune_insee": "82130", + "nom_de_la_commune": "MONTJOI", + "code_postal": "82400", + "coordonnees_gps": [ + 44.2043392824, + 0.930124213553 + ], + "libelle_d_acheminement": "MONTJOI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.930124213553, + 44.2043392824 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88151ebbbd759460f2c721063fd01d64baa7f2b0", + "fields": { + "code_commune_insee": "82132", + "nom_de_la_commune": "MONTRICOUX", + "code_postal": "82800", + "coordonnees_gps": [ + 44.1035057733, + 1.62418942804 + ], + "libelle_d_acheminement": "MONTRICOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.62418942804, + 44.1035057733 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1a1992d016900893f02af8da905c74573d29094", + "fields": { + "code_commune_insee": "82133", + "nom_de_la_commune": "MOUILLAC", + "code_postal": "82160", + "coordonnees_gps": [ + 44.2755002172, + 1.67305723666 + ], + "libelle_d_acheminement": "MOUILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.67305723666, + 44.2755002172 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "67818c941ed06f8257f52143957a91bd2b22e9c3", + "fields": { + "code_commune_insee": "82134", + "nom_de_la_commune": "NEGREPELISSE", + "code_postal": "82800", + "coordonnees_gps": [ + 44.0631437696, + 1.52813602608 + ], + "libelle_d_acheminement": "NEGREPELISSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.52813602608, + 44.0631437696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc537cc3f965150d9b8bc6bdec25efe925163578", + "fields": { + "code_commune_insee": "82146", + "nom_de_la_commune": "PUYGAILLARD DE LOMAGNE", + "code_postal": "82120", + "coordonnees_gps": [ + 43.9687272643, + 0.893447284352 + ], + "libelle_d_acheminement": "PUYGAILLARD DE LOMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.893447284352, + 43.9687272643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d66ab879bc5f5a7240ad6376e17c1f34ad8e3fe", + "fields": { + "code_commune_insee": "82152", + "nom_de_la_commune": "ST AIGNAN", + "code_postal": "82100", + "coordonnees_gps": [ + 44.0231974542, + 1.07335605665 + ], + "libelle_d_acheminement": "ST AIGNAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07335605665, + 44.0231974542 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c5fe8f9997eac5d39831745ddb26252d969ef22e", + "fields": { + "code_commune_insee": "82162", + "nom_de_la_commune": "ST GEORGES", + "code_postal": "82240", + "coordonnees_gps": [ + 44.2182015153, + 1.63984516896 + ], + "libelle_d_acheminement": "ST GEORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.63984516896, + 44.2182015153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5eda5acac21d7e843d6945d82ccd45a01e4c791c", + "fields": { + "code_commune_insee": "82170", + "nom_de_la_commune": "ST PAUL D ESPIS", + "code_postal": "82400", + "coordonnees_gps": [ + 44.1401354751, + 1.00203700461 + ], + "libelle_d_acheminement": "ST PAUL D ESPIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00203700461, + 44.1401354751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8614e45fbf249f972f0bc751786372a6b0c26528", + "fields": { + "code_commune_insee": "82181", + "nom_de_la_commune": "SISTELS", + "code_postal": "82340", + "coordonnees_gps": [ + 44.0529870158, + 0.78331430404 + ], + "libelle_d_acheminement": "SISTELS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.78331430404, + 44.0529870158 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "904c08e6a83f87499375d8ed5725202b0eb6d4ab", + "fields": { + "code_commune_insee": "82182", + "nom_de_la_commune": "TOUFFAILLES", + "code_postal": "82190", + "coordonnees_gps": [ + 44.2755478135, + 1.03805964935 + ], + "libelle_d_acheminement": "TOUFFAILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.03805964935, + 44.2755478135 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4048d6b9277fad654cdd4b809da8e439de9f6628", + "fields": { + "code_commune_insee": "82192", + "nom_de_la_commune": "VERLHAC TESCOU", + "code_postal": "82230", + "coordonnees_gps": [ + 43.9330870043, + 1.53273779471 + ], + "libelle_d_acheminement": "VERLHAC TESCOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.53273779471, + 43.9330870043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e559ca8d292f295e07f4d5536c2bc0c88096f09", + "fields": { + "code_commune_insee": "83011", + "nom_de_la_commune": "BARGEMON", + "code_postal": "83830", + "coordonnees_gps": [ + 43.6333104555, + 6.54244589208 + ], + "libelle_d_acheminement": "BARGEMON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54244589208, + 43.6333104555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18ad67650f287cdae4956cbaa9dca285b00e56ec", + "fields": { + "code_commune_insee": "83017", + "nom_de_la_commune": "BELGENTIER", + "code_postal": "83210", + "coordonnees_gps": [ + 43.2399564384, + 5.99665900105 + ], + "libelle_d_acheminement": "BELGENTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99665900105, + 43.2399564384 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b52d8262f5ea43e499ab78ca3ca85800ae50bcfe", + "fields": { + "code_commune_insee": "83019", + "nom_de_la_commune": "BORMES LES MIMOSAS", + "code_postal": "83230", + "coordonnees_gps": [ + 43.1622722101, + 6.34956987347 + ], + "libelle_d_acheminement": "BORMES LES MIMOSAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.34956987347, + 43.1622722101 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed61c8c18f0e33f487b13f159af557429c7a2b60", + "fields": { + "code_commune_insee": "83020", + "nom_de_la_commune": "LE BOURGUET", + "code_postal": "83840", + "coordonnees_gps": [ + 43.7800937383, + 6.50345035592 + ], + "libelle_d_acheminement": "LE BOURGUET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.50345035592, + 43.7800937383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcc320f3829e8765a2686d1ff3a7eadd07820e46", + "fields": { + "code_commune_insee": "83022", + "nom_de_la_commune": "BRENON", + "code_postal": "83840", + "coordonnees_gps": [ + 43.7658451995, + 6.53777644844 + ], + "libelle_d_acheminement": "BRENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53777644844, + 43.7658451995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78367b6d3fc12dddd72354f3ba07183637183f26", + "fields": { + "code_commune_insee": "83027", + "nom_de_la_commune": "LA CADIERE D AZUR", + "code_postal": "83740", + "coordonnees_gps": [ + 43.2032263059, + 5.72471001592 + ], + "libelle_d_acheminement": "LA CADIERE D AZUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72471001592, + 43.2032263059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2417a6811c96047fd56a89e4682868998338302a", + "fields": { + "ligne_5": "GRAND MOULIN", + "code_commune_insee": "83027", + "libelle_d_acheminement": "LA CADIERE D AZUR", + "code_postal": "83740", + "nom_de_la_commune": "LA CADIERE D AZUR", + "coordonnees_gps": [ + 43.2032263059, + 5.72471001592 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72471001592, + 43.2032263059 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8896120260f324a96a94f7bb118b7cd1eeeecd37", + "fields": { + "code_commune_insee": "83028", + "nom_de_la_commune": "CALLAS", + "code_postal": "83830", + "coordonnees_gps": [ + 43.5655288351, + 6.57328931995 + ], + "libelle_d_acheminement": "CALLAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57328931995, + 43.5655288351 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c0f2e38fdef382162a276b100675e79932d74cc", + "fields": { + "code_commune_insee": "83032", + "nom_de_la_commune": "CARCES", + "code_postal": "83570", + "coordonnees_gps": [ + 43.4690059217, + 6.17637273437 + ], + "libelle_d_acheminement": "CARCES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17637273437, + 43.4690059217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba58bd5b6bd1a88a4edcdea03736958e499b5a3a", + "fields": { + "code_commune_insee": "83036", + "nom_de_la_commune": "CAVALAIRE SUR MER", + "code_postal": "83240", + "coordonnees_gps": [ + 43.1819055812, + 6.52121721395 + ], + "libelle_d_acheminement": "CAVALAIRE SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52121721395, + 43.1819055812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca5da16409d617a52de3de1649ebfa2b4bd2c428", + "fields": { + "code_commune_insee": "83040", + "nom_de_la_commune": "CHATEAUVIEUX", + "code_postal": "83840", + "coordonnees_gps": [ + 43.7886170767, + 6.59569074716 + ], + "libelle_d_acheminement": "CHATEAUVIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59569074716, + 43.7886170767 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4ea942152d65b8cd448b8ee0061b075842432ad", + "fields": { + "ligne_5": "LA MOUTONNE", + "code_commune_insee": "83047", + "libelle_d_acheminement": "LA CRAU", + "code_postal": "83260", + "nom_de_la_commune": "LA CRAU", + "coordonnees_gps": [ + 43.1635207421, + 6.09268351583 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09268351583, + 43.1635207421 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff4d994470f23207115e7d86747db4561d728d39", + "fields": { + "code_commune_insee": "83051", + "nom_de_la_commune": "ENTRECASTEAUX", + "code_postal": "83570", + "coordonnees_gps": [ + 43.5119622438, + 6.23475108853 + ], + "libelle_d_acheminement": "ENTRECASTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23475108853, + 43.5119622438 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82450e2342619621b07a22a45bf838b2b26afbe5", + "fields": { + "code_commune_insee": "83056", + "nom_de_la_commune": "FIGANIERES", + "code_postal": "83830", + "coordonnees_gps": [ + 43.5672152549, + 6.49870478854 + ], + "libelle_d_acheminement": "FIGANIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49870478854, + 43.5672152549 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4bb3522fa3e31eddfc6633ee3a5ac3dd649cf8a", + "fields": { + "code_commune_insee": "83058", + "nom_de_la_commune": "FLAYOSC", + "code_postal": "83780", + "coordonnees_gps": [ + 43.542212098, + 6.36275720984 + ], + "libelle_d_acheminement": "FLAYOSC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.36275720984, + 43.542212098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fbbc8fef69185564035cfdbc2e23244f7e27466", + "fields": { + "ligne_5": "ST AYGULF", + "code_commune_insee": "83061", + "libelle_d_acheminement": "FREJUS", + "code_postal": "83370", + "nom_de_la_commune": "FREJUS", + "coordonnees_gps": [ + 43.4719558114, + 6.76361597424 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76361597424, + 43.4719558114 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a39065eeef026c3f621dc949ba3f8d0133639c6a", + "fields": { + "code_commune_insee": "83063", + "nom_de_la_commune": "LA GARDE FREINET", + "code_postal": "83680", + "coordonnees_gps": [ + 43.3234160321, + 6.46693786821 + ], + "libelle_d_acheminement": "LA GARDE FREINET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.46693786821, + 43.3234160321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3803a73cf1f824ae5a3380f7dfa8529d85e32622", + "fields": { + "code_commune_insee": "83068", + "nom_de_la_commune": "GRIMAUD", + "code_postal": "83310", + "coordonnees_gps": [ + 43.2820282501, + 6.53303224114 + ], + "libelle_d_acheminement": "GRIMAUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53303224114, + 43.2820282501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27035b0a1efe79d89218b8b537dcf2e94238fc4e", + "fields": { + "ligne_5": "PORT GRIMAUD", + "code_commune_insee": "83068", + "libelle_d_acheminement": "GRIMAUD", + "code_postal": "83310", + "nom_de_la_commune": "GRIMAUD", + "coordonnees_gps": [ + 43.2820282501, + 6.53303224114 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.53303224114, + 43.2820282501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0cc2dfe11c815e3f60db81419630c04d54264b40", + "fields": { + "ligne_5": "AYGUADE CEINTURON", + "code_commune_insee": "83069", + "libelle_d_acheminement": "HYERES", + "code_postal": "83400", + "nom_de_la_commune": "HYERES", + "coordonnees_gps": [ + 43.1018713534, + 6.18898508469 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18898508469, + 43.1018713534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "803469287c3a3a8cd108b36203724fa5d4a12365", + "fields": { + "code_commune_insee": "66199", + "nom_de_la_commune": "TAILLET", + "code_postal": "66400", + "coordonnees_gps": [ + 42.5171359573, + 2.67866498314 + ], + "libelle_d_acheminement": "TAILLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.67866498314, + 42.5171359573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f33bca5dac4d8e4f5d3ebe86f05f8f61df896034", + "fields": { + "code_commune_insee": "66201", + "nom_de_la_commune": "TARERACH", + "code_postal": "66320", + "coordonnees_gps": [ + 42.6850004554, + 2.51090245856 + ], + "libelle_d_acheminement": "TARERACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51090245856, + 42.6850004554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49f017b975ef15ae091076a36d1c6e89134b0cc7", + "fields": { + "code_commune_insee": "66205", + "nom_de_la_commune": "TAUTAVEL", + "code_postal": "66720", + "coordonnees_gps": [ + 42.8136035868, + 2.72010210415 + ], + "libelle_d_acheminement": "TAUTAVEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72010210415, + 42.8136035868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0db3cce35199f45b9be6532924b96e6688fa5e22", + "fields": { + "code_commune_insee": "66212", + "nom_de_la_commune": "TORREILLES", + "code_postal": "66440", + "coordonnees_gps": [ + 42.7533924686, + 3.00860614432 + ], + "libelle_d_acheminement": "TORREILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00860614432, + 42.7533924686 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ec79134cbec86ce82828e012c3ff2fa3671dfd1", + "fields": { + "code_commune_insee": "66220", + "nom_de_la_commune": "VALCEBOLLERE", + "code_postal": "66340", + "coordonnees_gps": [ + 42.3803353633, + 2.04302555825 + ], + "libelle_d_acheminement": "VALCEBOLLERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.04302555825, + 42.3803353633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "951d2a7ba078c4bf620a5c06f70710d3ac602026", + "fields": { + "code_commune_insee": "66221", + "nom_de_la_commune": "VALMANYA", + "code_postal": "66320", + "coordonnees_gps": [ + 42.5215439119, + 2.5139596876 + ], + "libelle_d_acheminement": "VALMANYA" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5139596876, + 42.5215439119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9593d9a5eb8546e7147be3c2ae22de2c6c3e903e", + "fields": { + "code_commune_insee": "66226", + "nom_de_la_commune": "VILLEMOLAQUE", + "code_postal": "66300", + "coordonnees_gps": [ + 42.5931339433, + 2.84776970877 + ], + "libelle_d_acheminement": "VILLEMOLAQUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84776970877, + 42.5931339433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80995de63b8eaad2c37eccfbb7d01869f1b2249a", + "fields": { + "code_commune_insee": "66228", + "nom_de_la_commune": "VILLENEUVE LA RIVIERE", + "code_postal": "66610", + "coordonnees_gps": [ + 42.7052906272, + 2.79873686308 + ], + "libelle_d_acheminement": "VILLENEUVE LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.79873686308, + 42.7052906272 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4c5f32374504f69e5fc71e66cca0b37b8f708b94", + "fields": { + "code_commune_insee": "67006", + "nom_de_la_commune": "ALTENHEIM", + "code_postal": "67490", + "coordonnees_gps": [ + 48.7200663423, + 7.46240989793 + ], + "libelle_d_acheminement": "ALTENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46240989793, + 48.7200663423 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "810874aac562f749c8e3e08381e97966fe58fc74", + "fields": { + "code_commune_insee": "67027", + "nom_de_la_commune": "BELMONT", + "code_postal": "67130", + "coordonnees_gps": [ + 48.4104343878, + 7.25374115024 + ], + "libelle_d_acheminement": "BELMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25374115024, + 48.4104343878 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f41a6c187c54833e04fdc1424107c8ea1691e4b", + "fields": { + "code_commune_insee": "67031", + "nom_de_la_commune": "BERNARDSWILLER", + "code_postal": "67210", + "coordonnees_gps": [ + 48.4473498624, + 7.45350882919 + ], + "libelle_d_acheminement": "BERNARDSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45350882919, + 48.4473498624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "456b3916341f634056b06a0094098aeda27cb56d", + "fields": { + "ligne_5": "REITWILLER", + "code_commune_insee": "67034", + "libelle_d_acheminement": "BERSTETT", + "code_postal": "67370", + "nom_de_la_commune": "BERSTETT", + "coordonnees_gps": [ + 48.6822332576, + 7.63237996044 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63237996044, + 48.6822332576 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "78705bdd2fdd7891d3880f2b7c4a0cf2a17d68e7", + "fields": { + "code_commune_insee": "67037", + "nom_de_la_commune": "BIBLISHEIM", + "code_postal": "67360", + "coordonnees_gps": [ + 48.8996840866, + 7.79109308708 + ], + "libelle_d_acheminement": "BIBLISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.79109308708, + 48.8996840866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e654aad94171191ea6f5a46bb894109acca7f4b", + "fields": { + "code_commune_insee": "67039", + "nom_de_la_commune": "BILWISHEIM", + "code_postal": "67170", + "coordonnees_gps": [ + 48.7100680278, + 7.66330058564 + ], + "libelle_d_acheminement": "BILWISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.66330058564, + 48.7100680278 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc299dcab7e1aff2bef6fbea9c2b8bc02ca317bf", + "fields": { + "code_commune_insee": "67040", + "nom_de_la_commune": "BINDERNHEIM", + "code_postal": "67600", + "coordonnees_gps": [ + 48.2870316499, + 7.61448549663 + ], + "libelle_d_acheminement": "BINDERNHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61448549663, + 48.2870316499 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cba4eeb05a9b362509dddb93fb931422210f585a", + "fields": { + "code_commune_insee": "67060", + "nom_de_la_commune": "BOURGHEIM", + "code_postal": "67140", + "coordonnees_gps": [ + 48.4192706314, + 7.48915564819 + ], + "libelle_d_acheminement": "BOURGHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48915564819, + 48.4192706314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14fc4955e647a42a246fe8e6f1f1eb6dc6a4b055", + "fields": { + "code_commune_insee": "67063", + "nom_de_la_commune": "BREITENBACH", + "code_postal": "67220", + "coordonnees_gps": [ + 48.374509707, + 7.28708160963 + ], + "libelle_d_acheminement": "BREITENBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28708160963, + 48.374509707 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "919263fb516c47cc74a80e25abe6718ee33f5fda", + "fields": { + "ligne_5": "BREMMELBACH", + "code_commune_insee": "67074", + "libelle_d_acheminement": "CLEEBOURG", + "code_postal": "67160", + "nom_de_la_commune": "CLEEBOURG", + "coordonnees_gps": [ + 48.9953521897, + 7.88602873126 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.88602873126, + 48.9953521897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c14b405d65cc43465287176a13678b12bec62d2", + "fields": { + "code_commune_insee": "67075", + "nom_de_la_commune": "CLIMBACH", + "code_postal": "67510", + "coordonnees_gps": [ + 49.0157843115, + 7.85030833791 + ], + "libelle_d_acheminement": "CLIMBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.85030833791, + 49.0157843115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e2844afca7a782ad8a403f8d378538b0c6355d0", + "fields": { + "code_commune_insee": "67085", + "nom_de_la_commune": "DANGOLSHEIM", + "code_postal": "67310", + "coordonnees_gps": [ + 48.5647236628, + 7.45735566784 + ], + "libelle_d_acheminement": "DANGOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45735566784, + 48.5647236628 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "723e5a49f7a1ecbf4bcabc60acb206ef5ab821e0", + "fields": { + "code_commune_insee": "67087", + "nom_de_la_commune": "DAUENDORF", + "code_postal": "67350", + "coordonnees_gps": [ + 48.833965856, + 7.66613309742 + ], + "libelle_d_acheminement": "DAUENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.66613309742, + 48.833965856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6a0a86beed6615662527c5bc3a9f5e7d5ea8743f", + "fields": { + "code_commune_insee": "67089", + "nom_de_la_commune": "DETTWILLER", + "code_postal": "67490", + "coordonnees_gps": [ + 48.7608351027, + 7.45405808317 + ], + "libelle_d_acheminement": "DETTWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.45405808317, + 48.7608351027 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ea270e62a4e57b0eb9673ce4dc284da4172cbe5", + "fields": { + "code_commune_insee": "67093", + "nom_de_la_commune": "DIEFFENBACH LES WOERTH", + "code_postal": "67360", + "coordonnees_gps": [ + 48.9302435287, + 7.7944805731 + ], + "libelle_d_acheminement": "DIEFFENBACH LES WOERTH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7944805731, + 48.9302435287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba3d9573594c37ba60759ac20c258bb65a0f5327", + "fields": { + "code_commune_insee": "67095", + "nom_de_la_commune": "DIEMERINGEN", + "code_postal": "67430", + "coordonnees_gps": [ + 48.9440361875, + 7.2036576979 + ], + "libelle_d_acheminement": "DIEMERINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2036576979, + 48.9440361875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59b09cd0d72ff4bdbfe7c16b89a75b3224c21d7c", + "fields": { + "code_commune_insee": "67102", + "nom_de_la_commune": "DOSSENHEIM KOCHERSBERG", + "code_postal": "67117", + "coordonnees_gps": [ + 48.6410930657, + 7.57816691199 + ], + "libelle_d_acheminement": "DOSSENHEIM KOCHERSBERG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57816691199, + 48.6410930657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "488b7a7f5957bf88deda370c8fb3081829224161", + "fields": { + "code_commune_insee": "67104", + "nom_de_la_commune": "DRACHENBRONN BIRLENBACH", + "code_postal": "67160", + "coordonnees_gps": [ + 48.9809878964, + 7.87807854084 + ], + "libelle_d_acheminement": "DRACHENBRONN BIRLENBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.87807854084, + 48.9809878964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce60b8a7cbfd1d6e77f1630debfb095d9f06d245", + "fields": { + "code_commune_insee": "67106", + "nom_de_la_commune": "DRUSENHEIM", + "code_postal": "67410", + "coordonnees_gps": [ + 48.7609264205, + 7.94563844601 + ], + "libelle_d_acheminement": "DRUSENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.94563844601, + 48.7609264205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ae432d9dca54801929eb08fe25c71d5437b39f3", + "fields": { + "code_commune_insee": "67110", + "nom_de_la_commune": "DURRENBACH", + "code_postal": "67360", + "coordonnees_gps": [ + 48.8992737853, + 7.76279300097 + ], + "libelle_d_acheminement": "DURRENBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.76279300097, + 48.8992737853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7d4c1e2c0adab6eba6d1ea17fce28c1f350eae9", + "fields": { + "code_commune_insee": "67112", + "nom_de_la_commune": "DUTTLENHEIM", + "code_postal": "67120", + "coordonnees_gps": [ + 48.5240740255, + 7.57056635367 + ], + "libelle_d_acheminement": "DUTTLENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57056635367, + 48.5240740255 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "61a6eafb66a9e84b0be69532ce3792b86213a8f0", + "fields": { + "code_commune_insee": "67115", + "nom_de_la_commune": "EBERSHEIM", + "code_postal": "67600", + "coordonnees_gps": [ + 48.3024348713, + 7.49845782701 + ], + "libelle_d_acheminement": "EBERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49845782701, + 48.3024348713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "396612e538253dbc7d0829f6130062070311ef36", + "fields": { + "code_commune_insee": "67119", + "nom_de_la_commune": "ECKWERSHEIM", + "code_postal": "67550", + "coordonnees_gps": [ + 48.6852852896, + 7.69634796304 + ], + "libelle_d_acheminement": "ECKWERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.69634796304, + 48.6852852896 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2af0e447d9544a96b10e38f7495620ad0cdd50fa", + "fields": { + "code_commune_insee": "67121", + "nom_de_la_commune": "ELSENHEIM", + "code_postal": "67390", + "coordonnees_gps": [ + 48.1655800689, + 7.49719724328 + ], + "libelle_d_acheminement": "ELSENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.49719724328, + 48.1655800689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "34a77c1543de2010248e2a300e60cdba90392125", + "fields": { + "ligne_5": "SCHNEETHAL", + "code_commune_insee": "67122", + "libelle_d_acheminement": "WANGENBOURG ENGENTHAL", + "code_postal": "67710", + "nom_de_la_commune": "WANGENBOURG ENGENTHAL", + "coordonnees_gps": [ + 48.6212665024, + 7.30505408726 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30505408726, + 48.6212665024 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "758cc00751f1dd48d4dee5bb2a11a6dc60351c3b", + "fields": { + "code_commune_insee": "67123", + "nom_de_la_commune": "ENGWILLER", + "code_postal": "67350", + "coordonnees_gps": [ + 48.8817152403, + 7.61563175479 + ], + "libelle_d_acheminement": "ENGWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.61563175479, + 48.8817152403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0347251dbf8ff7c5df65af8e4f04385ca226dde", + "fields": { + "code_commune_insee": "67125", + "nom_de_la_commune": "EPFIG", + "code_postal": "67680", + "coordonnees_gps": [ + 48.3513757902, + 7.47140926627 + ], + "libelle_d_acheminement": "EPFIG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.47140926627, + 48.3513757902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c63cf413b19b979bb21ab232183d1e6674cc6def", + "fields": { + "code_commune_insee": "67126", + "nom_de_la_commune": "ERCKARTSWILLER", + "code_postal": "67290", + "coordonnees_gps": [ + 48.8829392855, + 7.35746524699 + ], + "libelle_d_acheminement": "ERCKARTSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.35746524699, + 48.8829392855 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b0dce0a5bdeae10b8ccab928dfd7609e1f2a31b", + "fields": { + "code_commune_insee": "67129", + "nom_de_la_commune": "ERNOLSHEIM LES SAVERNE", + "code_postal": "67330", + "coordonnees_gps": [ + 48.7888603168, + 7.37728426045 + ], + "libelle_d_acheminement": "ERNOLSHEIM LES SAVERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37728426045, + 48.7888603168 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0ce832d6f5d527a4cc38a8c1cd7eef8c3eba829", + "fields": { + "code_commune_insee": "67131", + "nom_de_la_commune": "ESCHAU", + "code_postal": "67114", + "coordonnees_gps": [ + 48.4832295386, + 7.72955536654 + ], + "libelle_d_acheminement": "ESCHAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.72955536654, + 48.4832295386 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "337fabb8b226527b35b1205a3b95ee2a61d98cd5", + "fields": { + "code_commune_insee": "67146", + "nom_de_la_commune": "FRIESENHEIM", + "code_postal": "67860", + "coordonnees_gps": [ + 48.3090804747, + 7.65396070706 + ], + "libelle_d_acheminement": "FRIESENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.65396070706, + 48.3090804747 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a23f5452aaf00c0893484170662ce3a1810019bb", + "fields": { + "code_commune_insee": "67160", + "nom_de_la_commune": "GOERSDORF", + "code_postal": "67360", + "coordonnees_gps": [ + 48.9590667268, + 7.77360094456 + ], + "libelle_d_acheminement": "GOERSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.77360094456, + 48.9590667268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06e3dd0bc3b792ac057afb33f803aff10e4f3a2d", + "fields": { + "code_commune_insee": "67162", + "nom_de_la_commune": "GOTTESHEIM", + "code_postal": "67490", + "coordonnees_gps": [ + 48.7757972428, + 7.48107091135 + ], + "libelle_d_acheminement": "GOTTESHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.48107091135, + 48.7757972428 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45019f9f943940746d9a9005692aaeb89c7692d5", + "fields": { + "code_commune_insee": "67163", + "nom_de_la_commune": "GOUGENHEIM", + "code_postal": "67270", + "coordonnees_gps": [ + 48.704527352, + 7.57535025275 + ], + "libelle_d_acheminement": "GOUGENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57535025275, + 48.704527352 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63f54fbc8c6417a6cdcef4b3609eba4a90b51d6c", + "fields": { + "code_commune_insee": "67176", + "nom_de_la_commune": "GUNDERSHOFFEN", + "code_postal": "67110", + "coordonnees_gps": [ + 48.9073472641, + 7.68204357189 + ], + "libelle_d_acheminement": "GUNDERSHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68204357189, + 48.9073472641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "600086a56d53735b5b37d416e2f29690b861e77c", + "fields": { + "ligne_5": "GRIESBACH", + "code_commune_insee": "67176", + "libelle_d_acheminement": "GUNDERSHOFFEN", + "code_postal": "67110", + "nom_de_la_commune": "GUNDERSHOFFEN", + "coordonnees_gps": [ + 48.9073472641, + 7.68204357189 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68204357189, + 48.9073472641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "277d9ae45b649209a894ef65fb734116b7935f4f", + "fields": { + "ligne_5": "PORT CROS", + "code_commune_insee": "83069", + "libelle_d_acheminement": "HYERES", + "code_postal": "83400", + "nom_de_la_commune": "HYERES", + "coordonnees_gps": [ + 43.1018713534, + 6.18898508469 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.18898508469, + 43.1018713534 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6e7a84722a6f0b4e94bd0bd6b09bb3f629c7787", + "fields": { + "ligne_5": "SCHIRLENHOF", + "code_commune_insee": "67176", + "libelle_d_acheminement": "GUNDERSHOFFEN", + "code_postal": "67110", + "nom_de_la_commune": "GUNDERSHOFFEN", + "coordonnees_gps": [ + 48.9073472641, + 7.68204357189 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68204357189, + 48.9073472641 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "052b318f5db1a7202cd2fd67d2adfc04841dd75a", + "fields": { + "code_commune_insee": "83073", + "nom_de_la_commune": "LE LUC", + "code_postal": "83340", + "coordonnees_gps": [ + 43.3804648949, + 6.30599950133 + ], + "libelle_d_acheminement": "LE LUC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.30599950133, + 43.3804648949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "de6c609548517308c1c1ba6e23627be4c019cbf8", + "fields": { + "code_commune_insee": "67178", + "nom_de_la_commune": "GUNGWILLER", + "code_postal": "67320", + "coordonnees_gps": [ + 48.8780997481, + 7.15256188284 + ], + "libelle_d_acheminement": "GUNGWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15256188284, + 48.8780997481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2ae7f04b388264de10af59e1630fd2fcb35c857f", + "fields": { + "code_commune_insee": "83076", + "nom_de_la_commune": "MAZAUGUES", + "code_postal": "83136", + "coordonnees_gps": [ + 43.3448761166, + 5.89589582308 + ], + "libelle_d_acheminement": "MAZAUGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89589582308, + 43.3448761166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dccb5cc12651714430ae062666630f245536d1db", + "fields": { + "ligne_5": "HARTHOUSE", + "code_commune_insee": "67180", + "libelle_d_acheminement": "HAGUENAU", + "code_postal": "67500", + "nom_de_la_commune": "HAGUENAU", + "coordonnees_gps": [ + 48.8417047695, + 7.83010404968 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.83010404968, + 48.8417047695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cb69cd72fc87db95c61426f62fa1d6d46067b731", + "fields": { + "code_commune_insee": "83078", + "nom_de_la_commune": "MOISSAC BELLEVUE", + "code_postal": "83630", + "coordonnees_gps": [ + 43.6471902756, + 6.16702503297 + ], + "libelle_d_acheminement": "MOISSAC BELLEVUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16702503297, + 43.6471902756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bc0fd065c76e3c0ccf9e1e9135509f5f389e1a5", + "fields": { + "ligne_5": "MARIENTHAL", + "code_commune_insee": "67180", + "libelle_d_acheminement": "HAGUENAU", + "code_postal": "67500", + "nom_de_la_commune": "HAGUENAU", + "coordonnees_gps": [ + 48.8417047695, + 7.83010404968 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.83010404968, + 48.8417047695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3606accb53cf9a38c66c7e338f006362c90e65b", + "fields": { + "code_commune_insee": "83079", + "nom_de_la_commune": "LA MOLE", + "code_postal": "83310", + "coordonnees_gps": [ + 43.2159206327, + 6.47656643864 + ], + "libelle_d_acheminement": "LA MOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.47656643864, + 43.2159206327 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fc7c40eb6b12c744fa8961557f6b2cf2cb036eb", + "fields": { + "code_commune_insee": "67192", + "nom_de_la_commune": "HERBSHEIM", + "code_postal": "67230", + "coordonnees_gps": [ + 48.3494389579, + 7.63675054527 + ], + "libelle_d_acheminement": "HERBSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.63675054527, + 48.3494389579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d35e8924d4f75b251a9c5bffa77a4a5f888f174", + "fields": { + "code_commune_insee": "83083", + "nom_de_la_commune": "MONTFORT SUR ARGENS", + "code_postal": "83570", + "coordonnees_gps": [ + 43.4812536631, + 6.12560767207 + ], + "libelle_d_acheminement": "MONTFORT SUR ARGENS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.12560767207, + 43.4812536631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b181647f5eb17c5416fba626702e4520cffec2c8", + "fields": { + "code_commune_insee": "67200", + "nom_de_la_commune": "HIPSHEIM", + "code_postal": "67150", + "coordonnees_gps": [ + 48.4655967531, + 7.68015819425 + ], + "libelle_d_acheminement": "HIPSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.68015819425, + 48.4655967531 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "71880bac363a7b4d52941a6cc836467507d255e2", + "fields": { + "code_commune_insee": "83092", + "nom_de_la_commune": "PIGNANS", + "code_postal": "83790", + "coordonnees_gps": [ + 43.2968837854, + 6.25442934778 + ], + "libelle_d_acheminement": "PIGNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25442934778, + 43.2968837854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d38648d16253b61a0c9389614091cc73f4cf60d5", + "fields": { + "ligne_5": "SCHAFFHOUSE SUR ZORN", + "code_commune_insee": "67202", + "libelle_d_acheminement": "HOCHFELDEN", + "code_postal": "67270", + "nom_de_la_commune": "HOCHFELDEN", + "coordonnees_gps": [ + 48.7558373026, + 7.56312887309 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56312887309, + 48.7558373026 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a522ad3b0bbf67cd11277a2b3e29f7f07fcc94d3", + "fields": { + "code_commune_insee": "83093", + "nom_de_la_commune": "PLAN D AUPS STE BAUME", + "code_postal": "83640", + "coordonnees_gps": [ + 43.3337130548, + 5.73856018349 + ], + "libelle_d_acheminement": "PLAN D AUPS STE BAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73856018349, + 43.3337130548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52c06fd1d0fe49aed9e7e54e024e7abeed29520a", + "fields": { + "code_commune_insee": "67203", + "nom_de_la_commune": "HOCHSTETT", + "code_postal": "67170", + "coordonnees_gps": [ + 48.7757655741, + 7.67684396609 + ], + "libelle_d_acheminement": "HOCHSTETT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67684396609, + 48.7757655741 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62cd512252f238140dcf07f7a99493e35c94696b", + "fields": { + "code_commune_insee": "83094", + "nom_de_la_commune": "LE PLAN DE LA TOUR", + "code_postal": "83120", + "coordonnees_gps": [ + 43.3384388996, + 6.54745751076 + ], + "libelle_d_acheminement": "LE PLAN DE LA TOUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.54745751076, + 43.3384388996 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "edea8c7eca83927348766dac69a0fa22c5380a9a", + "fields": { + "ligne_5": "LEITERSWILLER", + "code_commune_insee": "67206", + "libelle_d_acheminement": "HOFFEN", + "code_postal": "67250", + "nom_de_la_commune": "HOFFEN", + "coordonnees_gps": [ + 48.9330135449, + 7.93276702942 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93276702942, + 48.9330135449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "662df03899fcb95d45f7359c26c870c3745586c2", + "fields": { + "code_commune_insee": "83098", + "nom_de_la_commune": "LE PRADET", + "code_postal": "83220", + "coordonnees_gps": [ + 43.099405984, + 6.02844015499 + ], + "libelle_d_acheminement": "LE PRADET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02844015499, + 43.099405984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b64dda96f67f73b30e82013c04d2eb236f3bee7c", + "fields": { + "code_commune_insee": "67209", + "nom_de_la_commune": "HOHFRANKENHEIM", + "code_postal": "67270", + "coordonnees_gps": [ + 48.7286774647, + 7.58079540705 + ], + "libelle_d_acheminement": "HOHFRANKENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.58079540705, + 48.7286774647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5d7523ef8fd6b047053a4b227a1de1c42f09697", + "fields": { + "code_commune_insee": "83101", + "nom_de_la_commune": "RAMATUELLE", + "code_postal": "83350", + "coordonnees_gps": [ + 43.2186126186, + 6.63754734174 + ], + "libelle_d_acheminement": "RAMATUELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63754734174, + 43.2186126186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a486ad931ed602d6abc94a5a510c55935d905ba", + "fields": { + "code_commune_insee": "67213", + "nom_de_la_commune": "HUNSPACH", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9578637227, + 7.93587412104 + ], + "libelle_d_acheminement": "HUNSPACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.93587412104, + 48.9578637227 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "719aa8ddb3176a94f58044825c67fc12eda4e26a", + "fields": { + "ligne_5": "LES ISSAMBRES", + "code_commune_insee": "83107", + "libelle_d_acheminement": "ROQUEBRUNE SUR ARGENS", + "code_postal": "83380", + "nom_de_la_commune": "ROQUEBRUNE SUR ARGENS", + "coordonnees_gps": [ + 43.4285090958, + 6.65212881719 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65212881719, + 43.4285090958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d267b315ca598137adef7992c9b418dddb47b49d", + "fields": { + "code_commune_insee": "67216", + "nom_de_la_commune": "HUTTENHEIM", + "code_postal": "67230", + "coordonnees_gps": [ + 48.3537686447, + 7.57534532611 + ], + "libelle_d_acheminement": "HUTTENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57534532611, + 48.3537686447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d551a71346bf715fc6f0c37a8cae7452fccaaea9", + "fields": { + "code_commune_insee": "83109", + "nom_de_la_commune": "LA ROQUE ESCLAPON", + "code_postal": "83840", + "coordonnees_gps": [ + 43.7213872883, + 6.64818087429 + ], + "libelle_d_acheminement": "LA ROQUE ESCLAPON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.64818087429, + 43.7213872883 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b2cc55e7cde8f5e426967a74fe7bb2e4ca3f0fb", + "fields": { + "code_commune_insee": "67220", + "nom_de_la_commune": "INGENHEIM", + "code_postal": "67270", + "coordonnees_gps": [ + 48.7336224941, + 7.52591364727 + ], + "libelle_d_acheminement": "INGENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.52591364727, + 48.7336224941 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec317de8dc61fc3b5ff4b7057474aa6f49bc8ad8", + "fields": { + "ligne_5": "LES BAUMELLES", + "code_commune_insee": "83112", + "libelle_d_acheminement": "ST CYR SUR MER", + "code_postal": "83270", + "nom_de_la_commune": "ST CYR SUR MER", + "coordonnees_gps": [ + 43.1720355248, + 5.70832603708 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.70832603708, + 43.1720355248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a618814c9114ebef6f61e34b97b2338c26390f1", + "fields": { + "code_commune_insee": "67222", + "nom_de_la_commune": "INGWILLER", + "code_postal": "67340", + "coordonnees_gps": [ + 48.8859131079, + 7.46918832697 + ], + "libelle_d_acheminement": "INGWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.46918832697, + 48.8859131079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "92d257408dad1339d827da12b7ff27ea11932022", + "fields": { + "code_commune_insee": "83113", + "nom_de_la_commune": "ST JULIEN", + "code_postal": "83560", + "coordonnees_gps": [ + 43.6999613716, + 5.91499316614 + ], + "libelle_d_acheminement": "ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91499316614, + 43.6999613716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2782c80ad6fd9d769c4ca0084579b9ec4c1cd84c", + "fields": { + "code_commune_insee": "67223", + "nom_de_la_commune": "INNENHEIM", + "code_postal": "67880", + "coordonnees_gps": [ + 48.4975444021, + 7.57352976158 + ], + "libelle_d_acheminement": "INNENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57352976158, + 48.4975444021 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7cc0eb6e5d78a7999cfb7e69066d6acd12a104df", + "fields": { + "code_commune_insee": "83115", + "nom_de_la_commune": "STE MAXIME", + "code_postal": "83120", + "coordonnees_gps": [ + 43.3564730986, + 6.61172790208 + ], + "libelle_d_acheminement": "STE MAXIME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61172790208, + 43.3564730986 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e32ee55c95106bde15c4b2543683fc0b1dcddf36", + "fields": { + "code_commune_insee": "67226", + "nom_de_la_commune": "ITTENHEIM", + "code_postal": "67117", + "coordonnees_gps": [ + 48.6017514577, + 7.60509580501 + ], + "libelle_d_acheminement": "ITTENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60509580501, + 48.6017514577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f241fe27cd7e6b6e7b2b287421401f45b1ec935c", + "fields": { + "code_commune_insee": "83116", + "nom_de_la_commune": "ST MAXIMIN LA STE BAUME", + "code_postal": "83470", + "coordonnees_gps": [ + 43.4509676414, + 5.85962873535 + ], + "libelle_d_acheminement": "ST MAXIMIN LA STE BAUME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85962873535, + 43.4509676414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "458413e7b242dcbbdc7f13b1a1b94151619afdd1", + "fields": { + "ligne_5": "ITTLENHEIM", + "code_commune_insee": "67228", + "libelle_d_acheminement": "NEUGARTHEIM ITTLENHEIM", + "code_postal": "67370", + "nom_de_la_commune": "NEUGARTHEIM ITTLENHEIM", + "coordonnees_gps": [ + 48.6565369611, + 7.5414687691 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5414687691, + 48.6565369611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5c6cfd4356770c1f849a50a7750540cc9050847", + "fields": { + "code_commune_insee": "83119", + "nom_de_la_commune": "ST TROPEZ", + "code_postal": "83990", + "coordonnees_gps": [ + 43.262314383, + 6.66343039908 + ], + "libelle_d_acheminement": "ST TROPEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66343039908, + 43.262314383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aea9ae555992750667a5739aef57ec57d4f3a64e", + "fields": { + "ligne_5": "NEUGARTHEIM", + "code_commune_insee": "67228", + "libelle_d_acheminement": "NEUGARTHEIM ITTLENHEIM", + "code_postal": "67370", + "nom_de_la_commune": "NEUGARTHEIM ITTLENHEIM", + "coordonnees_gps": [ + 48.6565369611, + 7.5414687691 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5414687691, + 48.6565369611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ca18e774165875e05d30c1974182e35b3b8846d", + "fields": { + "ligne_5": "TAMARIS SUR MER", + "code_commune_insee": "83126", + "libelle_d_acheminement": "LA SEYNE SUR MER", + "code_postal": "83500", + "nom_de_la_commune": "LA SEYNE SUR MER", + "coordonnees_gps": [ + 43.0880294967, + 5.87089841754 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.87089841754, + 43.0880294967 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "806b6d887ce0aa114b4f8630db40bf03f4bf37f8", + "fields": { + "code_commune_insee": "67229", + "nom_de_la_commune": "JETTERSWILLER", + "code_postal": "67440", + "coordonnees_gps": [ + 48.6697366716, + 7.41745177343 + ], + "libelle_d_acheminement": "JETTERSWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41745177343, + 48.6697366716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "12f5acf6b6bb014a2923c36ae2ff6d6400fb1188", + "fields": { + "ligne_5": "LES LONES", + "code_commune_insee": "83129", + "libelle_d_acheminement": "SIX FOURS LES PLAGES", + "code_postal": "83140", + "nom_de_la_commune": "SIX FOURS LES PLAGES", + "coordonnees_gps": [ + 43.086818602, + 5.82924464931 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.82924464931, + 43.086818602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0f4f229526e7e19196af1fe717e7bb8872247e0", + "fields": { + "code_commune_insee": "67252", + "nom_de_la_commune": "KURTZENHOUSE", + "code_postal": "67240", + "coordonnees_gps": [ + 48.7372858241, + 7.80514291468 + ], + "libelle_d_acheminement": "KURTZENHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.80514291468, + 48.7372858241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4447db5e2a660e706ae03a80dff9fcb50a8461ea", + "fields": { + "code_commune_insee": "83134", + "nom_de_la_commune": "TARADEAU", + "code_postal": "83460", + "coordonnees_gps": [ + 43.4612575373, + 6.43066360323 + ], + "libelle_d_acheminement": "TARADEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43066360323, + 43.4612575373 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b31e7327a116811274f700d25c432809fde28114", + "fields": { + "code_commune_insee": "67255", + "nom_de_la_commune": "LALAYE", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3386901777, + 7.23525154111 + ], + "libelle_d_acheminement": "LALAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.23525154111, + 48.3386901777 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfb26cab297d34ce5012827877a08af1d7e8129f", + "fields": { + "code_commune_insee": "83140", + "nom_de_la_commune": "TOURVES", + "code_postal": "83170", + "coordonnees_gps": [ + 43.4088015642, + 5.92715707141 + ], + "libelle_d_acheminement": "TOURVES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92715707141, + 43.4088015642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95f80779c78217625b2096f2b57d2cb289166d6e", + "fields": { + "code_commune_insee": "67278", + "nom_de_la_commune": "MACKWILLER", + "code_postal": "67430", + "coordonnees_gps": [ + 48.9249078232, + 7.16638709797 + ], + "libelle_d_acheminement": "MACKWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16638709797, + 48.9249078232 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2602d528372fd94c3e32913ff1c70276b577104", + "fields": { + "code_commune_insee": "83151", + "nom_de_la_commune": "VINS SUR CARAMY", + "code_postal": "83170", + "coordonnees_gps": [ + 43.4330128814, + 6.15001836504 + ], + "libelle_d_acheminement": "VINS SUR CARAMY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.15001836504, + 43.4330128814 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab3164c31d4f3726239b9318cf5c33a05d8e0684", + "fields": { + "code_commune_insee": "67280", + "nom_de_la_commune": "MAISONSGOUTTE", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3535462593, + 7.25920729014 + ], + "libelle_d_acheminement": "MAISONSGOUTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25920729014, + 48.3535462593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ee15656e2c2eaf37b59d917ab00d40179c87ae6e", + "fields": { + "code_commune_insee": "83153", + "nom_de_la_commune": "ST MANDRIER SUR MER", + "code_postal": "83430", + "coordonnees_gps": [ + 43.0754322948, + 5.92642315155 + ], + "libelle_d_acheminement": "ST MANDRIER SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.92642315155, + 43.0754322948 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "19ddb1dc5858cc1befec47dd6ae5ec176bc5431e", + "fields": { + "code_commune_insee": "67288", + "nom_de_la_commune": "MEMMELSHOFFEN", + "code_postal": "67250", + "coordonnees_gps": [ + 48.9589782972, + 7.87192314443 + ], + "libelle_d_acheminement": "MEMMELSHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.87192314443, + 48.9589782972 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac2053eefc53bb7da0d4a192657352886610aa7a", + "fields": { + "code_commune_insee": "83154", + "nom_de_la_commune": "ST ANTONIN DU VAR", + "code_postal": "83510", + "coordonnees_gps": [ + 43.5112335006, + 6.29002187703 + ], + "libelle_d_acheminement": "ST ANTONIN DU VAR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29002187703, + 43.5112335006 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f57e84f0d9000d3add130d0058f33ef53f41432a", + "fields": { + "code_commune_insee": "67292", + "nom_de_la_commune": "MIETESHEIM", + "code_postal": "67580", + "coordonnees_gps": [ + 48.8761605476, + 7.64658563349 + ], + "libelle_d_acheminement": "MIETESHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64658563349, + 48.8761605476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "10cbd3a9738a7ccda0cada2a3f2a5d84eb36c0c1", + "fields": { + "code_commune_insee": "84006", + "nom_de_la_commune": "AURIBEAU", + "code_postal": "84400", + "coordonnees_gps": [ + 43.8299771658, + 5.44809359823 + ], + "libelle_d_acheminement": "AURIBEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.44809359823, + 43.8299771658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db6c183c85d38932aa0e93c480bc1b716659a6f4", + "fields": { + "code_commune_insee": "67293", + "nom_de_la_commune": "MINVERSHEIM", + "code_postal": "67270", + "coordonnees_gps": [ + 48.7842778125, + 7.62414913788 + ], + "libelle_d_acheminement": "MINVERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.62414913788, + 48.7842778125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "32d96bcd283a1087cec8800f747b76c708657fda", + "fields": { + "ligne_5": "MONTFAVET", + "code_commune_insee": "84007", + "libelle_d_acheminement": "AVIGNON", + "code_postal": "84140", + "nom_de_la_commune": "AVIGNON", + "coordonnees_gps": [ + 43.9352448339, + 4.84071572505 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84071572505, + 43.9352448339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d452108e802e4e2f8f52af0199212a8d03cee28a", + "fields": { + "code_commune_insee": "67295", + "nom_de_la_commune": "MITTELBERGHEIM", + "code_postal": "67140", + "coordonnees_gps": [ + 48.3941967219, + 7.44334636249 + ], + "libelle_d_acheminement": "MITTELBERGHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44334636249, + 48.3941967219 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45f21fb9e69153819fb4fd6888aba91f1b371301", + "fields": { + "code_commune_insee": "84010", + "nom_de_la_commune": "LA BASTIDONNE", + "code_postal": "84120", + "coordonnees_gps": [ + 43.6928383261, + 5.57769351768 + ], + "libelle_d_acheminement": "LA BASTIDONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.57769351768, + 43.6928383261 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df6d499c7484b6590913d1edeca6187fd620ecb0", + "fields": { + "code_commune_insee": "67307", + "nom_de_la_commune": "MULHAUSEN", + "code_postal": "67350", + "coordonnees_gps": [ + 48.8864927658, + 7.55485958914 + ], + "libelle_d_acheminement": "MULHAUSEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55485958914, + 48.8864927658 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3403610264ddf92f0eed27735c984bfdf7e41bbc", + "fields": { + "code_commune_insee": "84013", + "nom_de_la_commune": "BEAUMETTES", + "code_postal": "84220", + "coordonnees_gps": [ + 43.8631590289, + 5.2036579356 + ], + "libelle_d_acheminement": "BEAUMETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2036579356, + 43.8631590289 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ea43bc8b7c1e256e4a51fae8fdbb66394961cf5", + "fields": { + "code_commune_insee": "67319", + "nom_de_la_commune": "NEUHAEUSEL", + "code_postal": "67480", + "coordonnees_gps": [ + 48.8185397229, + 8.09241128897 + ], + "libelle_d_acheminement": "NEUHAEUSEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.09241128897, + 48.8185397229 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "184a0ccefb682782aa8be4a50679ff807a9423f7", + "fields": { + "code_commune_insee": "84014", + "nom_de_la_commune": "BEAUMONT DE PERTUIS", + "code_postal": "84120", + "coordonnees_gps": [ + 43.7379108971, + 5.69599127224 + ], + "libelle_d_acheminement": "BEAUMONT DE PERTUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69599127224, + 43.7379108971 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a411afdbfa5cc06421f739efc6774ef7527cde0e", + "fields": { + "code_commune_insee": "67321", + "nom_de_la_commune": "NEUVILLER LA ROCHE", + "code_postal": "67130", + "coordonnees_gps": [ + 48.4309499766, + 7.26437049524 + ], + "libelle_d_acheminement": "NEUVILLER LA ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26437049524, + 48.4309499766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6291e43525de278267bd49e7ca3f323a8929a59d", + "fields": { + "code_commune_insee": "84021", + "nom_de_la_commune": "BRANTES", + "code_postal": "84390", + "coordonnees_gps": [ + 44.1853662846, + 5.3324742513 + ], + "libelle_d_acheminement": "BRANTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3324742513, + 44.1853662846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f64ddfe1a8b8b4893d01d23baa45376d9ebbbfa9", + "fields": { + "code_commune_insee": "67322", + "nom_de_la_commune": "NEUWILLER LES SAVERNE", + "code_postal": "67330", + "coordonnees_gps": [ + 48.8271341455, + 7.36606572186 + ], + "libelle_d_acheminement": "NEUWILLER LES SAVERNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36606572186, + 48.8271341455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95ac942d7c72b40e3127c6dcbf63dc9a4b8b69f3", + "fields": { + "code_commune_insee": "84033", + "nom_de_la_commune": "CASTELLET EN LUBERON", + "code_postal": "84400", + "coordonnees_gps": [ + 43.834452269, + 5.48116657241 + ], + "libelle_d_acheminement": "CASTELLET EN LUBERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.48116657241, + 43.834452269 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0d1c5ce309a86ee3796af7a2823ffafc3afce5f", + "fields": { + "code_commune_insee": "67326", + "nom_de_la_commune": "NIEDERHAUSBERGEN", + "code_postal": "67207", + "coordonnees_gps": [ + 48.6233090076, + 7.70515748809 + ], + "libelle_d_acheminement": "NIEDERHAUSBERGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.70515748809, + 48.6233090076 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "289a29c5215a4deb4a4006f452b20ca711a83185", + "fields": { + "code_commune_insee": "84055", + "nom_de_la_commune": "JONQUERETTES", + "code_postal": "84450", + "coordonnees_gps": [ + 43.9491839695, + 4.94413967569 + ], + "libelle_d_acheminement": "JONQUERETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94413967569, + 43.9491839695 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6f432ef22d43dc7f49e70c30c6d95b7cec252a69", + "fields": { + "code_commune_insee": "67327", + "nom_de_la_commune": "NIEDERLAUTERBACH", + "code_postal": "67630", + "coordonnees_gps": [ + 48.971274266, + 8.10526672897 + ], + "libelle_d_acheminement": "NIEDERLAUTERBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.10526672897, + 48.971274266 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e611d670d6db910a44413b91bf80e0e52c131ec5", + "fields": { + "code_commune_insee": "84077", + "nom_de_la_commune": "MODENE", + "code_postal": "84330", + "coordonnees_gps": [ + 44.1057811873, + 5.12787069214 + ], + "libelle_d_acheminement": "MODENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12787069214, + 44.1057811873 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adb5391162abab940cd4895bde365aa7db149def", + "fields": { + "code_commune_insee": "67333", + "nom_de_la_commune": "NIEDERSOULTZBACH", + "code_postal": "67330", + "coordonnees_gps": [ + 48.8506235374, + 7.4715582868 + ], + "libelle_d_acheminement": "NIEDERSOULTZBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4715582868, + 48.8506235374 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c19c6c4cd5b772bcf091037eb3fc0b051cd45c5", + "fields": { + "code_commune_insee": "84078", + "nom_de_la_commune": "MONDRAGON", + "code_postal": "84430", + "coordonnees_gps": [ + 44.2429843935, + 4.72457377095 + ], + "libelle_d_acheminement": "MONDRAGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72457377095, + 44.2429843935 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "634a288c3c1b46fa8f72b3412b6a72b655d1c674", + "fields": { + "ligne_5": "KUHLENDORF", + "code_commune_insee": "67339", + "libelle_d_acheminement": "BETSCHDORF", + "code_postal": "67660", + "nom_de_la_commune": "BETSCHDORF", + "coordonnees_gps": [ + 48.893487303, + 7.92255309446 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.92255309446, + 48.893487303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ded584116082e867d928b9abe7c528519b8f1bc", + "fields": { + "code_commune_insee": "84084", + "nom_de_la_commune": "LA MOTTE D AIGUES", + "code_postal": "84240", + "coordonnees_gps": [ + 43.7840840338, + 5.52149188026 + ], + "libelle_d_acheminement": "LA MOTTE D AIGUES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.52149188026, + 43.7840840338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e2e1661affa06e66f303fabeca527b93620eb966", + "fields": { + "ligne_5": "REIMERSWILLER", + "code_commune_insee": "67339", + "libelle_d_acheminement": "BETSCHDORF", + "code_postal": "67660", + "nom_de_la_commune": "BETSCHDORF", + "coordonnees_gps": [ + 48.893487303, + 7.92255309446 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.92255309446, + 48.893487303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cce1b48dcd51575efbae6693db40b49db86b0829", + "fields": { + "code_commune_insee": "84091", + "nom_de_la_commune": "PIOLENC", + "code_postal": "84420", + "coordonnees_gps": [ + 44.1774697051, + 4.76585289056 + ], + "libelle_d_acheminement": "PIOLENC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.76585289056, + 44.1774697051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "029af88c1b5c290e2013a554a77ce57052c4100f", + "fields": { + "ligne_5": "SCHWABWILLER", + "code_commune_insee": "67339", + "libelle_d_acheminement": "BETSCHDORF", + "code_postal": "67660", + "nom_de_la_commune": "BETSCHDORF", + "coordonnees_gps": [ + 48.893487303, + 7.92255309446 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.92255309446, + 48.893487303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76f33c799951ef41d5e1640570e62c6aae6eb733", + "fields": { + "code_commune_insee": "84095", + "nom_de_la_commune": "PUYVERT", + "code_postal": "84160", + "coordonnees_gps": [ + 43.7501902846, + 5.33808223228 + ], + "libelle_d_acheminement": "PUYVERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33808223228, + 43.7501902846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "431ab94896e2e98bc1419d4924f3ea4e6040fe45", + "fields": { + "code_commune_insee": "67340", + "nom_de_la_commune": "OBERBRONN", + "code_postal": "67110", + "coordonnees_gps": [ + 48.9380836461, + 7.59665709278 + ], + "libelle_d_acheminement": "OBERBRONN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59665709278, + 48.9380836461 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e143b2ad819bc01ad94ad51b3b07a8d74febd74c", + "fields": { + "code_commune_insee": "84109", + "nom_de_la_commune": "ST HIPPOLYTE LE GRAVEYRON", + "code_postal": "84330", + "coordonnees_gps": [ + 44.1203739984, + 5.07610929797 + ], + "libelle_d_acheminement": "ST HIPPOLYTE LE GRAVEYRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07610929797, + 44.1203739984 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bbfd0c8350ddfde8f036483dc9d220ece5cb0612", + "fields": { + "code_commune_insee": "67342", + "nom_de_la_commune": "OBERHASLACH", + "code_postal": "67280", + "coordonnees_gps": [ + 48.5685057118, + 7.29548789735 + ], + "libelle_d_acheminement": "OBERHASLACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29548789735, + 48.5685057118 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "028aa2a93be8102720315f431f59daa2bc530f8b", + "fields": { + "code_commune_insee": "84111", + "nom_de_la_commune": "ST MARCELLIN LES VAISON", + "code_postal": "84110", + "coordonnees_gps": [ + 44.2371484247, + 5.10190359879 + ], + "libelle_d_acheminement": "ST MARCELLIN LES VAISON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.10190359879, + 44.2371484247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96c2abca5a9f92aeb05cab45cbd61d5167a72e09", + "fields": { + "code_commune_insee": "67344", + "nom_de_la_commune": "OBERHOFFEN LES WISSEMBOURG", + "code_postal": "67160", + "coordonnees_gps": [ + 49.0107628213, + 7.91451933272 + ], + "libelle_d_acheminement": "OBERHOFFEN LES WISSEMBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.91451933272, + 49.0107628213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97fbdd37eb9ef35fc87bfa7066a507dc41d64fb3", + "fields": { + "code_commune_insee": "84112", + "nom_de_la_commune": "ST MARTIN DE CASTILLON", + "code_postal": "84750", + "coordonnees_gps": [ + 43.8551072159, + 5.51919312356 + ], + "libelle_d_acheminement": "ST MARTIN DE CASTILLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.51919312356, + 43.8551072159 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20ca814ec23263f5bd763e643c8b37b4ccd6f8ae", + "fields": { + "code_commune_insee": "67347", + "nom_de_la_commune": "OBERMODERN ZUTZENDORF", + "code_postal": "67330", + "coordonnees_gps": [ + 48.8479068198, + 7.54015464948 + ], + "libelle_d_acheminement": "OBERMODERN ZUTZENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54015464948, + 48.8479068198 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1d8289a9bf48b9c1f69952022a630f0ab8b615b5", + "fields": { + "code_commune_insee": "84114", + "nom_de_la_commune": "ST PANTALEON", + "code_postal": "84220", + "coordonnees_gps": [ + 43.8778804064, + 5.21653289666 + ], + "libelle_d_acheminement": "ST PANTALEON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21653289666, + 43.8778804064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff49715fefe999c4b8920bcec3344489607c0b0b", + "fields": { + "code_commune_insee": "67350", + "nom_de_la_commune": "OBERSCHAEFFOLSHEIM", + "code_postal": "67203", + "coordonnees_gps": [ + 48.5919169259, + 7.64608858988 + ], + "libelle_d_acheminement": "OBERSCHAEFFOLSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.64608858988, + 48.5919169259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9dcf7d1ccac0160da5a4c51f4feee91696439de1", + "fields": { + "code_commune_insee": "84119", + "nom_de_la_commune": "ST SATURNIN LES AVIGNON", + "code_postal": "84450", + "coordonnees_gps": [ + 43.9621529369, + 4.94109967241 + ], + "libelle_d_acheminement": "ST SATURNIN LES AVIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94109967241, + 43.9621529369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ee28234e9190008ed7cf50e1a055ebba5a87765", + "fields": { + "ligne_5": "NIEDERSEEBACH", + "code_commune_insee": "67351", + "libelle_d_acheminement": "SEEBACH", + "code_postal": "67160", + "nom_de_la_commune": "SEEBACH", + "coordonnees_gps": [ + 48.9644209228, + 7.99028108589 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.99028108589, + 48.9644209228 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "028dbb663db9e3c8e4e9e3bccc90c3aa54364cb6", + "fields": { + "code_commune_insee": "84124", + "nom_de_la_commune": "SAUMANE DE VAUCLUSE", + "code_postal": "84800", + "coordonnees_gps": [ + 43.9380357519, + 5.11208499768 + ], + "libelle_d_acheminement": "SAUMANE DE VAUCLUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11208499768, + 43.9380357519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aba5ef12fab6ded0500d51c66bed852480b19b5a", + "fields": { + "code_commune_insee": "67356", + "nom_de_la_commune": "OFFENDORF", + "code_postal": "67850", + "coordonnees_gps": [ + 48.7148337726, + 7.92739646265 + ], + "libelle_d_acheminement": "OFFENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.92739646265, + 48.7148337726 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c4288868c73a4d951eb9b2b3f74fd235ecb84a56", + "fields": { + "code_commune_insee": "84135", + "nom_de_la_commune": "UCHAUX", + "code_postal": "84100", + "coordonnees_gps": [ + 44.2160888468, + 4.80180924895 + ], + "libelle_d_acheminement": "UCHAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80180924895, + 44.2160888468 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f20c6d29f715999a035fb79afca2ecaf8bc7b5ec", + "fields": { + "code_commune_insee": "67361", + "nom_de_la_commune": "OLWISHEIM", + "code_postal": "67170", + "coordonnees_gps": [ + 48.6977790108, + 7.67388730631 + ], + "libelle_d_acheminement": "OLWISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.67388730631, + 48.6977790108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2bfd1f836f95a8622d9b8a98f15e5d0db40f9ff0", + "fields": { + "code_commune_insee": "84136", + "nom_de_la_commune": "VACQUEYRAS", + "code_postal": "84190", + "coordonnees_gps": [ + 44.1452203037, + 4.9790786368 + ], + "libelle_d_acheminement": "VACQUEYRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9790786368, + 44.1452203037 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b67fa4d28a2bbeadaca92e1d288168acedcd3c6", + "fields": { + "code_commune_insee": "67363", + "nom_de_la_commune": "OSTHOFFEN", + "code_postal": "67990", + "coordonnees_gps": [ + 48.590139334, + 7.56183969821 + ], + "libelle_d_acheminement": "OSTHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.56183969821, + 48.590139334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca7ca095ff58b4c0d275f636018b52e35794c26a", + "fields": { + "code_commune_insee": "84140", + "nom_de_la_commune": "VAUGINES", + "code_postal": "84160", + "coordonnees_gps": [ + 43.7786185321, + 5.40667854286 + ], + "libelle_d_acheminement": "VAUGINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.40667854286, + 43.7786185321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "daaa96a35ae801fd7deb5def071f282eb0a80e8c", + "fields": { + "code_commune_insee": "67368", + "nom_de_la_commune": "OTTROTT", + "code_postal": "67530", + "coordonnees_gps": [ + 48.4434374839, + 7.36707935429 + ], + "libelle_d_acheminement": "OTTROTT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36707935429, + 48.4434374839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29eba95cad5f5f2ba2a2f66082185ab5cf2147bd", + "fields": { + "code_commune_insee": "84142", + "nom_de_la_commune": "VELLERON", + "code_postal": "84740", + "coordonnees_gps": [ + 43.9615700853, + 5.02837053925 + ], + "libelle_d_acheminement": "VELLERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.02837053925, + 43.9615700853 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "221e3ae1a4f16e7689478fc2bbfa0b6d38e4275b", + "fields": { + "code_commune_insee": "67375", + "nom_de_la_commune": "PFULGRIESHEIM", + "code_postal": "67370", + "coordonnees_gps": [ + 48.6443318607, + 7.6650628557 + ], + "libelle_d_acheminement": "PFULGRIESHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6650628557, + 48.6443318607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "caea03a0e31d17f888c9ffb9044510e6b8e1b49e", + "fields": { + "code_commune_insee": "84146", + "nom_de_la_commune": "VILLEDIEU", + "code_postal": "84110", + "coordonnees_gps": [ + 44.2885345568, + 5.04784441518 + ], + "libelle_d_acheminement": "VILLEDIEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.04784441518, + 44.2885345568 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "319aa1925d60f57b8f6827972a2950684f575e7f", + "fields": { + "ligne_5": "CHAMPENAY", + "code_commune_insee": "67377", + "libelle_d_acheminement": "PLAINE", + "code_postal": "67420", + "nom_de_la_commune": "PLAINE", + "coordonnees_gps": [ + 48.4242524376, + 7.136828953 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.136828953, + 48.4242524376 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9876ae0c106559375fac16c2fafd4dcf927739ee", + "fields": { + "code_commune_insee": "85001", + "nom_de_la_commune": "L AIGUILLON SUR MER", + "code_postal": "85460", + "coordonnees_gps": [ + 46.304138479, + -1.2623239198 + ], + "libelle_d_acheminement": "L AIGUILLON SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2623239198, + 46.304138479 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1cc9ce8a04468a4c9a83210cf0a90e6aa6f8d15", + "fields": { + "code_commune_insee": "67403", + "nom_de_la_commune": "RINGENDORF", + "code_postal": "67350", + "coordonnees_gps": [ + 48.8101089087, + 7.55595222549 + ], + "libelle_d_acheminement": "RINGENDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55595222549, + 48.8101089087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9b72cd37a7f82521b4ca827b0351096b847ededc", + "fields": { + "code_commune_insee": "85006", + "nom_de_la_commune": "APREMONT", + "code_postal": "85220", + "coordonnees_gps": [ + 46.7572682339, + -1.74841313647 + ], + "libelle_d_acheminement": "APREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74841313647, + 46.7572682339 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59dadb0941c9fa02e1d4370f28af34ea8e319a53", + "fields": { + "code_commune_insee": "67406", + "nom_de_la_commune": "ROHR", + "code_postal": "67270", + "coordonnees_gps": [ + 48.6932332205, + 7.53580119117 + ], + "libelle_d_acheminement": "ROHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53580119117, + 48.6932332205 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "116d8e980769e7c1e258c017d00f2afd6ed98f40", + "fields": { + "code_commune_insee": "85010", + "nom_de_la_commune": "AVRILLE", + "code_postal": "85440", + "coordonnees_gps": [ + 46.4744272125, + -1.49524360118 + ], + "libelle_d_acheminement": "AVRILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.49524360118, + 46.4744272125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "672bae12b93886a6c03cedd943c2dc45b5e82752", + "fields": { + "code_commune_insee": "67410", + "nom_de_la_commune": "ROSENWILLER", + "code_postal": "67560", + "coordonnees_gps": [ + 48.5087284504, + 7.42577148597 + ], + "libelle_d_acheminement": "ROSENWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42577148597, + 48.5087284504 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "655ce30f8a1c319cda72bfe34bd1251fe8f06f6b", + "fields": { + "ligne_5": "FROMENTINE", + "code_commune_insee": "85012", + "libelle_d_acheminement": "LA BARRE DE MONTS", + "code_postal": "85550", + "nom_de_la_commune": "LA BARRE DE MONTS", + "coordonnees_gps": [ + 46.8722784154, + -2.09984018879 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.09984018879, + 46.8722784154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d25788757da14eb660ac63bdc69a8f11eaffa158", + "fields": { + "code_commune_insee": "67417", + "nom_de_la_commune": "ROTTELSHEIM", + "code_postal": "67170", + "coordonnees_gps": [ + 48.759113126, + 7.71180608722 + ], + "libelle_d_acheminement": "ROTTELSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.71180608722, + 48.759113126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4281a70515b047805abd925ffcc9b35f4d59537c", + "fields": { + "code_commune_insee": "85013", + "nom_de_la_commune": "BAZOGES EN PAILLERS", + "code_postal": "85130", + "coordonnees_gps": [ + 46.9213757643, + -1.14415666313 + ], + "libelle_d_acheminement": "BAZOGES EN PAILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.14415666313, + 46.9213757643 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "86be7a9b2c3a4ae908cf77cce3baab46dac66563", + "fields": { + "code_commune_insee": "67424", + "nom_de_la_commune": "ST BLAISE LA ROCHE", + "code_postal": "67420", + "coordonnees_gps": [ + 48.4073616064, + 7.17386676722 + ], + "libelle_d_acheminement": "ST BLAISE LA ROCHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17386676722, + 48.4073616064 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e603f190ae049e635a03c54a975a5a13e2743c7", + "fields": { + "code_commune_insee": "85020", + "nom_de_la_commune": "BENET", + "code_postal": "85490", + "coordonnees_gps": [ + 46.368873213, + -0.613959918706 + ], + "libelle_d_acheminement": "BENET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.613959918706, + 46.368873213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "45e7406c57fcf6ef47b124532cab78efae3fcc87", + "fields": { + "code_commune_insee": "67430", + "nom_de_la_commune": "ST PIERRE BOIS", + "code_postal": "67220", + "coordonnees_gps": [ + 48.3357426244, + 7.36372911449 + ], + "libelle_d_acheminement": "ST PIERRE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36372911449, + 48.3357426244 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85331519db230f9ec0e8ea9df04e720ad3f05053", + "fields": { + "ligne_5": "LESSON", + "code_commune_insee": "85020", + "libelle_d_acheminement": "BENET", + "code_postal": "85490", + "nom_de_la_commune": "BENET", + "coordonnees_gps": [ + 46.368873213, + -0.613959918706 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.613959918706, + 46.368873213 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "76e3a51396748c43c1c9b45056b40709589bdee4", + "fields": { + "code_commune_insee": "67432", + "nom_de_la_commune": "SALMBACH", + "code_postal": "67160", + "coordonnees_gps": [ + 48.9761241768, + 8.07012964746 + ], + "libelle_d_acheminement": "SALMBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.07012964746, + 48.9761241768 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf4bcf3135b00c3aa3fce204021df21b79d69f09", + "fields": { + "code_commune_insee": "85021", + "nom_de_la_commune": "LA BERNARDIERE", + "code_postal": "85610", + "coordonnees_gps": [ + 47.0361828072, + -1.27390355206 + ], + "libelle_d_acheminement": "LA BERNARDIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.27390355206, + 47.0361828072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "404f4ce99b8aa975357c6ff805b34d0663c5141b", + "fields": { + "code_commune_insee": "85033", + "nom_de_la_commune": "BOURNEAU", + "code_postal": "85200", + "coordonnees_gps": [ + 46.5476882922, + -0.813838020265 + ], + "libelle_d_acheminement": "BOURNEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.813838020265, + 46.5476882922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "189698791069e4bf514a258231c3a8c9a22d11ff", + "fields": { + "code_commune_insee": "85038", + "nom_de_la_commune": "LES BROUZILS", + "code_postal": "85260", + "coordonnees_gps": [ + 46.8854235235, + -1.33186892233 + ], + "libelle_d_acheminement": "LES BROUZILS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.33186892233, + 46.8854235235 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a568320c8f8a21f5b69a9e0a69025e1d4182db83", + "fields": { + "code_commune_insee": "85041", + "nom_de_la_commune": "CEZAIS", + "code_postal": "85410", + "coordonnees_gps": [ + 46.5917363748, + -0.802618133558 + ], + "libelle_d_acheminement": "CEZAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.802618133558, + 46.5917363748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da663d7c39a71172866708f3f3e4bca6fa4a462b", + "fields": { + "ligne_5": "AISNE", + "code_commune_insee": "85042", + "libelle_d_acheminement": "CHAILLE LES MARAIS", + "code_postal": "85450", + "nom_de_la_commune": "CHAILLE LES MARAIS", + "coordonnees_gps": [ + 46.3853555319, + -1.01044079362 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.01044079362, + 46.3853555319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1a6fabc33165d2c9a6f6d9578a3ae5439079e04", + "fields": { + "code_commune_insee": "85054", + "nom_de_la_commune": "LA CHAPELLE HERMIER", + "code_postal": "85220", + "coordonnees_gps": [ + 46.6826679204, + -1.72083372442 + ], + "libelle_d_acheminement": "LA CHAPELLE HERMIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.72083372442, + 46.6826679204 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "506c99dd9f75e13899ab3cd24aa11dc9db13fe37", + "fields": { + "code_commune_insee": "85059", + "nom_de_la_commune": "LA CHATAIGNERAIE", + "code_postal": "85120", + "coordonnees_gps": [ + 46.6416143401, + -0.739561966419 + ], + "libelle_d_acheminement": "LA CHATAIGNERAIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.739561966419, + 46.6416143401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24d8206acf1635164212176f5425bc99b57025e9", + "fields": { + "code_commune_insee": "85066", + "nom_de_la_commune": "CHAVAGNES LES REDOUX", + "code_postal": "85390", + "coordonnees_gps": [ + 46.7101499475, + -0.915900131393 + ], + "libelle_d_acheminement": "CHAVAGNES LES REDOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.915900131393, + 46.7101499475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9349a805580bb9f32152107f3f0b6b06d5d2a56a", + "fields": { + "code_commune_insee": "85067", + "nom_de_la_commune": "CHEFFOIS", + "code_postal": "85390", + "coordonnees_gps": [ + 46.6786935635, + -0.782949851125 + ], + "libelle_d_acheminement": "CHEFFOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.782949851125, + 46.6786935635 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cfa4d2f10f40b4cfe5581ed2f967b26ec5a0151c", + "fields": { + "code_commune_insee": "85088", + "nom_de_la_commune": "LE FENOUILLER", + "code_postal": "85800", + "coordonnees_gps": [ + 46.7161264566, + -1.89206667498 + ], + "libelle_d_acheminement": "LE FENOUILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.89206667498, + 46.7161264566 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47547bb448d938acb4de6615964fe8f0662f0d2f", + "fields": { + "code_commune_insee": "85100", + "nom_de_la_commune": "GIVRAND", + "code_postal": "85800", + "coordonnees_gps": [ + 46.6822701061, + -1.8787272243 + ], + "libelle_d_acheminement": "GIVRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8787272243, + 46.6822701061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e408ea3170e07069322d8f13ce04761a8804096", + "fields": { + "code_commune_insee": "85105", + "nom_de_la_commune": "LE GUE DE VELLUIRE", + "code_postal": "85770", + "coordonnees_gps": [ + 46.3675950645, + -0.905432724485 + ], + "libelle_d_acheminement": "LE GUE DE VELLUIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.905432724485, + 46.3675950645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ab0178e228142ef9d95d8bbf40ab374e5d8cd4d", + "fields": { + "code_commune_insee": "85109", + "nom_de_la_commune": "LES HERBIERS", + "code_postal": "85500", + "coordonnees_gps": [ + 46.8666125813, + -1.02216086186 + ], + "libelle_d_acheminement": "LES HERBIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.02216086186, + 46.8666125813 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dadb7eaba4a26afb82f66f50ae44a91d7696ed45", + "fields": { + "code_commune_insee": "85111", + "nom_de_la_commune": "L ILE D ELLE", + "code_postal": "85770", + "coordonnees_gps": [ + 46.3334258655, + -0.919100677098 + ], + "libelle_d_acheminement": "L ILE D ELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.919100677098, + 46.3334258655 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "20efe8e23a5a0884fa98a08f17f87ff98d278020", + "fields": { + "code_commune_insee": "85113", + "nom_de_la_commune": "L ILE D YEU", + "code_postal": "85350", + "coordonnees_gps": [ + 46.7093514816, + -2.34712702345 + ], + "libelle_d_acheminement": "L ILE D YEU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.34712702345, + 46.7093514816 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c402ea1f32e1bd6b071deef78b9441f685aefdd8", + "fields": { + "code_commune_insee": "85116", + "nom_de_la_commune": "LA JONCHERE", + "code_postal": "85540", + "coordonnees_gps": [ + 46.4358647401, + -1.38517843312 + ], + "libelle_d_acheminement": "LA JONCHERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.38517843312, + 46.4358647401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03dd3e9e1fe00e1a490d1ece4150b31dd38e828d", + "fields": { + "code_commune_insee": "85119", + "nom_de_la_commune": "LES LANDES GENUSSON", + "code_postal": "85130", + "coordonnees_gps": [ + 46.9663828627, + -1.12900644447 + ], + "libelle_d_acheminement": "LES LANDES GENUSSON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.12900644447, + 46.9663828627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca38b4a0f852b9edf5f6e0fc808c73e2694bbdc6", + "fields": { + "code_commune_insee": "85128", + "nom_de_la_commune": "LUCON", + "code_postal": "85400", + "coordonnees_gps": [ + 46.4510564854, + -1.16449285012 + ], + "libelle_d_acheminement": "LUCON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.16449285012, + 46.4510564854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c590e0c2b3e1ce1c0dc981b4746f52c6f7d7a2bf", + "fields": { + "code_commune_insee": "85131", + "nom_de_la_commune": "LES MAGNILS REIGNIERS", + "code_postal": "85400", + "coordonnees_gps": [ + 46.4635045649, + -1.210635375 + ], + "libelle_d_acheminement": "LES MAGNILS REIGNIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.210635375, + 46.4635045649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1a39b2d05824fc429177caf2d87232ad8e08916", + "fields": { + "code_commune_insee": "85134", + "nom_de_la_commune": "MALLIEVRE", + "code_postal": "85590", + "coordonnees_gps": [ + 46.9112847287, + -0.864977836096 + ], + "libelle_d_acheminement": "MALLIEVRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.864977836096, + 46.9112847287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa216ce4495d756ca7517e74100398b82b85eee7", + "fields": { + "ligne_5": "DISSAIS", + "code_commune_insee": "85135", + "libelle_d_acheminement": "MAREUIL SUR LAY DISSAIS", + "code_postal": "85320", + "nom_de_la_commune": "MAREUIL SUR LAY DISSAIS", + "coordonnees_gps": [ + 46.5335825488, + -1.22688907859 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.22688907859, + 46.5335825488 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0690d3175e2fd24006488791cad11c7e680826a1", + "fields": { + "code_commune_insee": "85137", + "nom_de_la_commune": "MARSAIS STE RADEGONDE", + "code_postal": "85570", + "coordonnees_gps": [ + 46.5380790745, + -0.868868309437 + ], + "libelle_d_acheminement": "MARSAIS STE RADEGONDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.868868309437, + 46.5380790745 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7ed08e0c4168368f480c9ffa7ee375082525856", + "fields": { + "code_commune_insee": "85141", + "nom_de_la_commune": "MENOMBLET", + "code_postal": "85700", + "coordonnees_gps": [ + 46.7301338667, + -0.728654955878 + ], + "libelle_d_acheminement": "MENOMBLET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.728654955878, + 46.7301338667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26afe2385689d95cd468eb0e5655f28d503a02f8", + "fields": { + "ligne_5": "MONTAIGU", + "code_commune_insee": "85146", + "libelle_d_acheminement": "MONTAIGU VENDEE", + "code_postal": "85600", + "nom_de_la_commune": "MONTAIGU VENDEE", + "coordonnees_gps": [ + 46.9759800852, + -1.31364530268 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.31364530268, + 46.9759800852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "783a0913fb6065d35029a960338cf1a21ba65e04", + "fields": { + "code_commune_insee": "85153", + "nom_de_la_commune": "MOUCHAMPS", + "code_postal": "85640", + "coordonnees_gps": [ + 46.7870550926, + -1.05454102867 + ], + "libelle_d_acheminement": "MOUCHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.05454102867, + 46.7870550926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5d79f7a93ce36f5086468ca37bfa9e6b0075898", + "fields": { + "ligne_5": "MOUILLERON EN PAREDS", + "code_commune_insee": "85154", + "libelle_d_acheminement": "MOUILLERON ST GERMAIN", + "code_postal": "85390", + "nom_de_la_commune": "MOUILLERON ST GERMAIN", + "coordonnees_gps": [ + 46.6612700667, + -0.846784201071 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.846784201071, + 46.6612700667 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bd9bf64bddc42b0fb3891f391555cd6b616fc69", + "fields": { + "code_commune_insee": "85164", + "nom_de_la_commune": "NOTRE DAME DE MONTS", + "code_postal": "85690", + "coordonnees_gps": [ + 46.8424284611, + -2.10928732775 + ], + "libelle_d_acheminement": "NOTRE DAME DE MONTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.10928732775, + 46.8424284611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f9189bba9b11174e3fdbf15c71b9f24b535c283d", + "fields": { + "ligne_5": "LE POIRE SUR VELLUIRE", + "code_commune_insee": "85177", + "libelle_d_acheminement": "LES VELLUIRE SUR VENDEE", + "code_postal": "85770", + "nom_de_la_commune": "LES VELLUIRE SUR VENDEE", + "coordonnees_gps": [ + 46.4190919441, + -0.910475769222 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.910475769222, + 46.4190919441 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a4fc1c47278f9f300f3451c3a0b01c8ddfe6eebe", + "fields": { + "code_commune_insee": "85190", + "nom_de_la_commune": "ROCHESERVIERE", + "code_postal": "85620", + "coordonnees_gps": [ + 46.9274273036, + -1.50132208111 + ], + "libelle_d_acheminement": "ROCHESERVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.50132208111, + 46.9274273036 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6d5831b5b48f3a8f947c5c806492bda6852267af", + "fields": { + "code_commune_insee": "85198", + "nom_de_la_commune": "ST AUBIN DES ORMEAUX", + "code_postal": "85130", + "coordonnees_gps": [ + 46.9958175597, + -1.04216568722 + ], + "libelle_d_acheminement": "ST AUBIN DES ORMEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.04216568722, + 46.9958175597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "984c948866996331be9319a563b536969d047881", + "fields": { + "code_commune_insee": "85201", + "nom_de_la_commune": "ST BENOIST SUR MER", + "code_postal": "85540", + "coordonnees_gps": [ + 46.4266286403, + -1.3399129604 + ], + "libelle_d_acheminement": "ST BENOIST SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3399129604, + 46.4266286403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ac2bea38ae23e90611997ebe1ce3efe3ad2836a", + "fields": { + "code_commune_insee": "85204", + "nom_de_la_commune": "ST CHRISTOPHE DU LIGNERON", + "code_postal": "85670", + "coordonnees_gps": [ + 46.8151386519, + -1.74035413493 + ], + "libelle_d_acheminement": "ST CHRISTOPHE DU LIGNERON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.74035413493, + 46.8151386519 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "336a2f3a011e35a3661722cdf7a13d69fbbf8bce", + "fields": { + "code_commune_insee": "85218", + "nom_de_la_commune": "ST GEORGES DE POINTINDOUX", + "code_postal": "85150", + "coordonnees_gps": [ + 46.6423470977, + -1.62881823574 + ], + "libelle_d_acheminement": "ST GEORGES DE POINTINDOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62881823574, + 46.6423470977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fdc45435b20f00f1819312512ca3c8245349ba4", + "fields": { + "code_commune_insee": "85221", + "nom_de_la_commune": "ST GERVAIS", + "code_postal": "85230", + "coordonnees_gps": [ + 46.9285711589, + -1.98059327519 + ], + "libelle_d_acheminement": "ST GERVAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.98059327519, + 46.9285711589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "31bb1cd56a3940bff36d7ef77f46d5ff12b895b1", + "fields": { + "code_commune_insee": "85223", + "nom_de_la_commune": "STE HERMINE", + "code_postal": "85210", + "coordonnees_gps": [ + 46.5572659953, + -1.07210861039 + ], + "libelle_d_acheminement": "STE HERMINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.07210861039, + 46.5572659953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dffcee6836f565279fc2915340d546daa6a7512", + "fields": { + "code_commune_insee": "85226", + "nom_de_la_commune": "ST HILAIRE DE RIEZ", + "code_postal": "85270", + "coordonnees_gps": [ + 46.7432732188, + -1.96439228965 + ], + "libelle_d_acheminement": "ST HILAIRE DE RIEZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.96439228965, + 46.7432732188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfc557c958b7b8e57b715cdee1b593f54c5bb392", + "fields": { + "ligne_5": "SION SUR L OCEAN", + "code_commune_insee": "85226", + "libelle_d_acheminement": "ST HILAIRE DE RIEZ", + "code_postal": "85270", + "nom_de_la_commune": "ST HILAIRE DE RIEZ", + "coordonnees_gps": [ + 46.7432732188, + -1.96439228965 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.96439228965, + 46.7432732188 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c0c18687f3ac0b52c66b2c10c9b43b4e2502663", + "fields": { + "code_commune_insee": "85229", + "nom_de_la_commune": "ST HILAIRE DE VOUST", + "code_postal": "85120", + "coordonnees_gps": [ + 46.5914988312, + -0.651486245674 + ], + "libelle_d_acheminement": "ST HILAIRE DE VOUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.651486245674, + 46.5914988312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab3de3384f2def589bc81c7142129995eaf2a6a8", + "fields": { + "code_commune_insee": "85240", + "nom_de_la_commune": "ST MALO DU BOIS", + "code_postal": "85590", + "coordonnees_gps": [ + 46.9248120291, + -0.914182961099 + ], + "libelle_d_acheminement": "ST MALO DU BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.914182961099, + 46.9248120291 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d55953e9334e7423b52a14d6e8fbf8349281267c", + "fields": { + "code_commune_insee": "85242", + "nom_de_la_commune": "ST MARS LA REORTHE", + "code_postal": "85590", + "coordonnees_gps": [ + 46.8597253005, + -0.925777900202 + ], + "libelle_d_acheminement": "ST MARS LA REORTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.925777900202, + 46.8597253005 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "151d1226276e26211c5d407df59fd7eb32d939ba", + "fields": { + "code_commune_insee": "85243", + "nom_de_la_commune": "BREM SUR MER", + "code_postal": "85470", + "coordonnees_gps": [ + 46.6118566989, + -1.81003917923 + ], + "libelle_d_acheminement": "BREM SUR MER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.81003917923, + 46.6118566989 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b47f47bf3ca78215a25ba1f3ed470dff2e45cea5", + "fields": { + "ligne_5": "BISCHTROFF SUR SARRE", + "code_commune_insee": "67435", + "libelle_d_acheminement": "SARREWERDEN", + "code_postal": "67260", + "nom_de_la_commune": "SARREWERDEN", + "coordonnees_gps": [ + 48.9076740897, + 7.07306614237 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07306614237, + 48.9076740897 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25fefe637ea2852771304eff6deb4e87a192d118", + "fields": { + "ligne_5": "IRMSTETT", + "code_commune_insee": "67442", + "libelle_d_acheminement": "SCHARRACHBERGHEIM IRMSTETT", + "code_postal": "67310", + "nom_de_la_commune": "SCHARRACHBERGHEIM IRMSTETT", + "coordonnees_gps": [ + 48.5896337884, + 7.4902817682 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4902817682, + 48.5896337884 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d068ca3d05787311da0d4d82de577ea5ad22221", + "fields": { + "code_commune_insee": "67450", + "nom_de_la_commune": "SCHIRRHOFFEN", + "code_postal": "67240", + "coordonnees_gps": [ + 48.8069986345, + 7.92537675508 + ], + "libelle_d_acheminement": "SCHIRRHOFFEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.92537675508, + 48.8069986345 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8033132c5346f54d331666453297e06515af0bef", + "fields": { + "code_commune_insee": "67458", + "nom_de_la_commune": "SCHWEIGHOUSE SUR MODER", + "code_postal": "67590", + "coordonnees_gps": [ + 48.8172159239, + 7.7377298253 + ], + "libelle_d_acheminement": "SCHWEIGHOUSE SUR MODER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.7377298253, + 48.8172159239 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef9d0235e7582fdd98aa94d07f09bfb4042e4802", + "fields": { + "code_commune_insee": "67471", + "nom_de_la_commune": "SOUFFELWEYERSHEIM", + "code_postal": "67460", + "coordonnees_gps": [ + 48.6319311688, + 7.74194727065 + ], + "libelle_d_acheminement": "SOUFFELWEYERSHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.74194727065, + 48.6319311688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9331bfcc1bb3fb3c80acfb217d939873d666f843", + "fields": { + "code_commune_insee": "67501", + "nom_de_la_commune": "UTTENHEIM", + "code_postal": "67150", + "coordonnees_gps": [ + 48.4140516502, + 7.59572846761 + ], + "libelle_d_acheminement": "UTTENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59572846761, + 48.4140516502 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9a9eea0d1da1f5bdb714dc38c45bf14166c7501", + "fields": { + "code_commune_insee": "67508", + "nom_de_la_commune": "VOELLERDINGEN", + "code_postal": "67430", + "coordonnees_gps": [ + 48.9716431163, + 7.13658791217 + ], + "libelle_d_acheminement": "VOELLERDINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13658791217, + 48.9716431163 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fb153031350f99dc6ca573229ea162e7b5aea14f", + "fields": { + "code_commune_insee": "67513", + "nom_de_la_commune": "WALDERSBACH", + "code_postal": "67130", + "coordonnees_gps": [ + 48.4178454688, + 7.21830400487 + ], + "libelle_d_acheminement": "WALDERSBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21830400487, + 48.4178454688 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da0434e4f7b147fac0ecce57a46e923deb6fabfe", + "fields": { + "code_commune_insee": "67530", + "nom_de_la_commune": "WICKERSHEIM WILSHAUSEN", + "code_postal": "67270", + "coordonnees_gps": [ + 48.7815411023, + 7.53331362139 + ], + "libelle_d_acheminement": "WICKERSHEIM WILSHAUSEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53331362139, + 48.7815411023 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "410ee8125c540af87c07420f3d7b12f007d506b7", + "fields": { + "code_commune_insee": "67544", + "nom_de_la_commune": "WISSEMBOURG", + "code_postal": "67160", + "coordonnees_gps": [ + 49.0184562539, + 7.96174575912 + ], + "libelle_d_acheminement": "WISSEMBOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.96174575912, + 49.0184562539 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7475667977672f401ccd62abe0ee1315c3467aab", + "fields": { + "code_commune_insee": "68002", + "nom_de_la_commune": "ALTENACH", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6017527449, + 7.10896561686 + ], + "libelle_d_acheminement": "ALTENACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10896561686, + 47.6017527449 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ed4166e160bb496245ddf7c350b921d0c60785c", + "fields": { + "ligne_5": "LES TROIS EPIS", + "code_commune_insee": "68005", + "libelle_d_acheminement": "AMMERSCHWIHR", + "code_postal": "68410", + "nom_de_la_commune": "AMMERSCHWIHR", + "coordonnees_gps": [ + 48.119478992, + 7.25998332176 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25998332176, + 48.119478992 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f736e951bb4c3f1c48764b86f454622e8cd6db3e", + "fields": { + "code_commune_insee": "68006", + "nom_de_la_commune": "BERNWILLER", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6926147527, + 7.16944522071 + ], + "libelle_d_acheminement": "BERNWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16944522071, + 47.6926147527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f50a63d4dcfdd7a2eca0b6e6fabd0ab733a3dffe", + "fields": { + "code_commune_insee": "68017", + "nom_de_la_commune": "BALLERSDORF", + "code_postal": "68210", + "coordonnees_gps": [ + 47.6201402497, + 7.15603615606 + ], + "libelle_d_acheminement": "BALLERSDORF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.15603615606, + 47.6201402497 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59a50248644b1c1fa34771aa05dfaa8bf32a36cf", + "fields": { + "code_commune_insee": "68019", + "nom_de_la_commune": "BALTZENHEIM", + "code_postal": "68320", + "coordonnees_gps": [ + 48.0987704391, + 7.55258087773 + ], + "libelle_d_acheminement": "BALTZENHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55258087773, + 48.0987704391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3389fe6ac2a8abec2f65f3c6f3840df5d8d709e6", + "fields": { + "code_commune_insee": "68037", + "nom_de_la_commune": "BILTZHEIM", + "code_postal": "68127", + "coordonnees_gps": [ + 47.9624598517, + 7.36950245681 + ], + "libelle_d_acheminement": "BILTZHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.36950245681, + 47.9624598517 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5ed9224a924829eec8264f4cf15b7292e05bd8f", + "fields": { + "code_commune_insee": "68040", + "nom_de_la_commune": "BITSCHWILLER LES THANN", + "code_postal": "68620", + "coordonnees_gps": [ + 47.8268493029, + 7.06896787479 + ], + "libelle_d_acheminement": "BITSCHWILLER LES THANN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06896787479, + 47.8268493029 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "775598d65a95b77a84194a73521bb64bac481cca", + "fields": { + "code_commune_insee": "68051", + "nom_de_la_commune": "BREITENBACH HAUT RHIN", + "code_postal": "68380", + "coordonnees_gps": [ + 48.0110195796, + 7.10491597545 + ], + "libelle_d_acheminement": "BREITENBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10491597545, + 48.0110195796 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4d1e2ad37dc38ad10c16ab84c99fe8c03713841d", + "fields": { + "code_commune_insee": "68063", + "nom_de_la_commune": "CERNAY", + "code_postal": "68700", + "coordonnees_gps": [ + 47.7945078153, + 7.17932820409 + ], + "libelle_d_acheminement": "CERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17932820409, + 47.7945078153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a04f6f3c728ff98fc83b8641e13dbe02b75761ed", + "fields": { + "code_commune_insee": "68064", + "nom_de_la_commune": "CHALAMPE", + "code_postal": "68490", + "coordonnees_gps": [ + 47.8321259921, + 7.54929893347 + ], + "libelle_d_acheminement": "CHALAMPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54929893347, + 47.8321259921 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebd8859920e98e1394254d9ea8ee477483602327", + "fields": { + "ligne_5": "BRINIGHOFFEN", + "code_commune_insee": "68081", + "libelle_d_acheminement": "ST BERNARD", + "code_postal": "68720", + "nom_de_la_commune": "ST BERNARD", + "coordonnees_gps": [ + 47.665884637, + 7.20435846737 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.20435846737, + 47.665884637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "448ab4929a4eb8bd7d4125780ae8cb5d33eeede3", + "fields": { + "code_commune_insee": "68082", + "nom_de_la_commune": "ENSISHEIM", + "code_postal": "68190", + "coordonnees_gps": [ + 47.8530628657, + 7.37246514573 + ], + "libelle_d_acheminement": "ENSISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37246514573, + 47.8530628657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b744cc3305b819618a7ad48478b280a27643c45", + "fields": { + "code_commune_insee": "68095", + "nom_de_la_commune": "FORTSCHWIHR", + "code_postal": "68320", + "coordonnees_gps": [ + 48.0854227132, + 7.4520020595 + ], + "libelle_d_acheminement": "FORTSCHWIHR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4520020595, + 48.0854227132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "380435b0c4de788044afd3584ce96fa2f9491541", + "fields": { + "code_commune_insee": "68101", + "nom_de_la_commune": "GALFINGUE", + "code_postal": "68990", + "coordonnees_gps": [ + 47.7038424637, + 7.22128198778 + ], + "libelle_d_acheminement": "GALFINGUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.22128198778, + 47.7038424637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b1c41e4914f51f1831835578c988e4840a59bf5", + "fields": { + "code_commune_insee": "68104", + "nom_de_la_commune": "GEISWASSER", + "code_postal": "68600", + "coordonnees_gps": [ + 47.9780603798, + 7.60554789815 + ], + "libelle_d_acheminement": "GEISWASSER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60554789815, + 47.9780603798 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3f3d31fa510dd98c895ba8355e25aaa3d09708a1", + "fields": { + "code_commune_insee": "68106", + "nom_de_la_commune": "GOLDBACH ALTENBACH", + "code_postal": "68760", + "coordonnees_gps": [ + 47.8792538738, + 7.10493674734 + ], + "libelle_d_acheminement": "GOLDBACH ALTENBACH" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10493674734, + 47.8792538738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96e06f43c55dcc3ce3f4f9a6601d39f07f897a10", + "fields": { + "ligne_5": "ALTENBACH", + "code_commune_insee": "68106", + "libelle_d_acheminement": "GOLDBACH ALTENBACH", + "code_postal": "68760", + "nom_de_la_commune": "GOLDBACH ALTENBACH", + "coordonnees_gps": [ + 47.8792538738, + 7.10493674734 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.10493674734, + 47.8792538738 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1cb86cfd8843b6d05018d4f8510941d3ca969c24", + "fields": { + "code_commune_insee": "68137", + "nom_de_la_commune": "HINDLINGEN", + "code_postal": "68580", + "coordonnees_gps": [ + 47.5703946445, + 7.14196837188 + ], + "libelle_d_acheminement": "HINDLINGEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.14196837188, + 47.5703946445 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ecf780262fa74bd0df68496578b534966a8ad05d", + "fields": { + "code_commune_insee": "68141", + "nom_de_la_commune": "HOCHSTATT", + "code_postal": "68720", + "coordonnees_gps": [ + 47.7093051072, + 7.26674678515 + ], + "libelle_d_acheminement": "HOCHSTATT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.26674678515, + 47.7093051072 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "18d3f14113466a63330758c774f93da14ebe6b61", + "fields": { + "code_commune_insee": "68146", + "nom_de_la_commune": "HOUSSEN", + "code_postal": "68125", + "coordonnees_gps": [ + 48.1315690762, + 7.37459864544 + ], + "libelle_d_acheminement": "HOUSSEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37459864544, + 48.1315690762 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e81d65d831b7b29ef009c6749a253dce198880b", + "fields": { + "code_commune_insee": "68174", + "nom_de_la_commune": "LANDSER", + "code_postal": "68440", + "coordonnees_gps": [ + 47.6869832437, + 7.3847569882 + ], + "libelle_d_acheminement": "LANDSER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3847569882, + 47.6869832437 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f0ac28700122e4bdbffc1028a53f9ccc90d13fc", + "fields": { + "code_commune_insee": "68181", + "nom_de_la_commune": "LEVONCOURT", + "code_postal": "68480", + "coordonnees_gps": [ + 47.4471429458, + 7.1934953379 + ], + "libelle_d_acheminement": "LEVONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1934953379, + 47.4471429458 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8ba32d4ff0b62f41403e3bc75b07c5778c02bd8", + "fields": { + "code_commune_insee": "68196", + "nom_de_la_commune": "MAGNY", + "code_postal": "68210", + "coordonnees_gps": [ + 47.605758042, + 7.04676110392 + ], + "libelle_d_acheminement": "MAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.04676110392, + 47.605758042 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e07022c32cb51db939d5020caa43dabb55f9459e", + "fields": { + "ligne_5": "NIEDERLARG", + "code_commune_insee": "68216", + "libelle_d_acheminement": "MOOSLARGUE", + "code_postal": "68580", + "nom_de_la_commune": "MOOSLARGUE", + "coordonnees_gps": [ + 47.5112217629, + 7.21307892037 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21307892037, + 47.5112217629 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "459735a2d99b5ed04b44f0ebc6278a807ef9bd77", + "fields": { + "code_commune_insee": "68225", + "nom_de_la_commune": "MUNCHHOUSE", + "code_postal": "68740", + "coordonnees_gps": [ + 47.8570621759, + 7.4479017375 + ], + "libelle_d_acheminement": "MUNCHHOUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4479017375, + 47.8570621759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49694401f2c95cfb37760d5f2b91547cd6dd96c5", + "fields": { + "code_commune_insee": "68228", + "nom_de_la_commune": "MUNWILLER", + "code_postal": "68250", + "coordonnees_gps": [ + 47.9342627737, + 7.34739203519 + ], + "libelle_d_acheminement": "MUNWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34739203519, + 47.9342627737 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6edd3a5270dcf726c8c2b8f4ffe0f9554915295e", + "fields": { + "ligne_5": "GRENTZINGEN", + "code_commune_insee": "68240", + "libelle_d_acheminement": "ILLTAL", + "code_postal": "68960", + "nom_de_la_commune": "ILLTAL", + "coordonnees_gps": [ + 47.5598733177, + 7.31658096209 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31658096209, + 47.5598733177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9f405e3945884623a184f2226573b7f61133733", + "fields": { + "ligne_5": "OBERDORF", + "code_commune_insee": "68240", + "libelle_d_acheminement": "ILLTAL", + "code_postal": "68960", + "nom_de_la_commune": "ILLTAL", + "coordonnees_gps": [ + 47.5598733177, + 7.31658096209 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31658096209, + 47.5598733177 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f10e29667983b94809e4dd3b2baf109c628763e", + "fields": { + "code_commune_insee": "68245", + "nom_de_la_commune": "OBERMORSCHWILLER", + "code_postal": "68130", + "coordonnees_gps": [ + 47.6414713368, + 7.31641739319 + ], + "libelle_d_acheminement": "OBERMORSCHWILLER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.31641739319, + 47.6414713368 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d4419a52f136298b77a5eb4e445f6f8d5456ba5e", + "fields": { + "code_commune_insee": "68249", + "nom_de_la_commune": "ORBEY", + "code_postal": "68370", + "coordonnees_gps": [ + 48.1149528963, + 7.13503444718 + ], + "libelle_d_acheminement": "ORBEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.13503444718, + 48.1149528963 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85e6e633c2cbe7adc8789eeeee149337705f250b", + "fields": { + "code_commune_insee": "68266", + "nom_de_la_commune": "REGUISHEIM", + "code_postal": "68890", + "coordonnees_gps": [ + 47.891760126, + 7.37115549029 + ], + "libelle_d_acheminement": "REGUISHEIM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.37115549029, + 47.891760126 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b15f58629834b6c7791df1842389fdf0846c89c7", + "fields": { + "code_commune_insee": "68269", + "nom_de_la_commune": "RIBEAUVILLE", + "code_postal": "68150", + "coordonnees_gps": [ + 48.2065139236, + 7.28672468283 + ], + "libelle_d_acheminement": "RIBEAUVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.28672468283, + 48.2065139236 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5d735491defba882876f6105ac2a3f0da52105c", + "fields": { + "code_commune_insee": "68283", + "nom_de_la_commune": "ROMBACH LE FRANC", + "code_postal": "68660", + "coordonnees_gps": [ + 48.2933550805, + 7.24348639747 + ], + "libelle_d_acheminement": "ROMBACH LE FRANC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.24348639747, + 48.2933550805 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e9b51133d71f87c01c6bfa80ce509a865e534d2c", + "fields": { + "code_commune_insee": "68286", + "nom_de_la_commune": "ROSENAU", + "code_postal": "68128", + "coordonnees_gps": [ + 47.6388184393, + 7.54215519701 + ], + "libelle_d_acheminement": "ROSENAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54215519701, + 47.6388184393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8fd1806ba2a91975554647e16b460b799b88409f", + "fields": { + "ligne_5": "BOURGFELDEN", + "code_commune_insee": "68297", + "libelle_d_acheminement": "ST LOUIS", + "code_postal": "68300", + "nom_de_la_commune": "ST LOUIS", + "coordonnees_gps": [ + 47.6016553367, + 7.54061872745 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54061872745, + 47.6016553367 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bc5dcd7de3404fea1218008dd7864ada65cc5726", + "fields": { + "code_commune_insee": "68302", + "nom_de_la_commune": "SCHWEIGHOUSE THANN", + "code_postal": "68520", + "coordonnees_gps": [ + 47.7488667079, + 7.17549476358 + ], + "libelle_d_acheminement": "SCHWEIGHOUSE THANN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.17549476358, + 47.7488667079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7156a7f109418f6691e2051d0172a6b64261775", + "fields": { + "code_commune_insee": "68303", + "nom_de_la_commune": "SCHWOBEN", + "code_postal": "68130", + "coordonnees_gps": [ + 47.6075218956, + 7.29884312664 + ], + "libelle_d_acheminement": "SCHWOBEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.29884312664, + 47.6075218956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0891b9539212c610fb0fdcd5f589f6fab24e9c00", + "fields": { + "code_commune_insee": "68305", + "nom_de_la_commune": "SEPPOIS LE BAS", + "code_postal": "68580", + "coordonnees_gps": [ + 47.5376133947, + 7.16814388588 + ], + "libelle_d_acheminement": "SEPPOIS LE BAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.16814388588, + 47.5376133947 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03e71226531da94fa9ec280e6132911196135e90", + "fields": { + "code_commune_insee": "68306", + "nom_de_la_commune": "SEPPOIS LE HAUT", + "code_postal": "68580", + "coordonnees_gps": [ + 47.5306368424, + 7.189321425 + ], + "libelle_d_acheminement": "SEPPOIS LE HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.189321425, + 47.5306368424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eba253c507fb8989bb531840381c985187038829", + "fields": { + "code_commune_insee": "85254", + "nom_de_la_commune": "ST MESMIN", + "code_postal": "85700", + "coordonnees_gps": [ + 46.8005779435, + -0.748892533741 + ], + "libelle_d_acheminement": "ST MESMIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.748892533741, + 46.8005779435 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bd1add7970bdbdccc8af617d1e7f0a8a2270f1e0", + "fields": { + "code_commune_insee": "85256", + "nom_de_la_commune": "ST MICHEL LE CLOUCQ", + "code_postal": "85200", + "coordonnees_gps": [ + 46.4861591475, + -0.743056336646 + ], + "libelle_d_acheminement": "ST MICHEL LE CLOUCQ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.743056336646, + 46.4861591475 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac7ccd4adeef1917586f3da9a462b7c9d0a5781f", + "fields": { + "code_commune_insee": "85269", + "nom_de_la_commune": "ST SIGISMOND", + "code_postal": "85420", + "coordonnees_gps": [ + 46.3368577973, + -0.707293731101 + ], + "libelle_d_acheminement": "ST SIGISMOND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.707293731101, + 46.3368577973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1528dea7e5efe155b39653a5b3513e164db83858", + "fields": { + "code_commune_insee": "85276", + "nom_de_la_commune": "ST VINCENT STERLANGES", + "code_postal": "85110", + "coordonnees_gps": [ + 46.7397220689, + -1.08371759277 + ], + "libelle_d_acheminement": "ST VINCENT STERLANGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.08371759277, + 46.7397220689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f26cac00e1a60002f1e70884dfcde48e5a47854f", + "fields": { + "ligne_5": "ST SORNIN", + "code_commune_insee": "85277", + "libelle_d_acheminement": "ST VINCENT SUR GRAON", + "code_postal": "85540", + "nom_de_la_commune": "ST VINCENT SUR GRAON", + "coordonnees_gps": [ + 46.5034756656, + -1.382954206 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.382954206, + 46.5034756656 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "109210466f1ddb15a4d712efcb03a79100cced82", + "fields": { + "code_commune_insee": "85280", + "nom_de_la_commune": "SALLERTAINE", + "code_postal": "85300", + "coordonnees_gps": [ + 46.8659054157, + -1.94894081389 + ], + "libelle_d_acheminement": "SALLERTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.94894081389, + 46.8659054157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3956a2648cef38e6a9b6593aa8cf3074e1bb208", + "fields": { + "code_commune_insee": "85282", + "nom_de_la_commune": "SIGOURNAIS", + "code_postal": "85110", + "coordonnees_gps": [ + 46.7140097406, + -0.98747730882 + ], + "libelle_d_acheminement": "SIGOURNAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.98747730882, + 46.7140097406 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "265821fb9865ad4eb92ad52fa20c947df5d64982", + "fields": { + "code_commune_insee": "85291", + "nom_de_la_commune": "THORIGNY", + "code_postal": "85480", + "coordonnees_gps": [ + 46.6179795025, + -1.24888057642 + ], + "libelle_d_acheminement": "THORIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.24888057642, + 46.6179795025 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16a54ae98b90bf7d57f49bc5d141fb9f83283053", + "fields": { + "code_commune_insee": "85297", + "nom_de_la_commune": "TRIAIZE", + "code_postal": "85580", + "coordonnees_gps": [ + 46.3792685111, + -1.19928351422 + ], + "libelle_d_acheminement": "TRIAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.19928351422, + 46.3792685111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0557fa810fd6f68b8b68887210aabfd0ad67a272", + "fields": { + "code_commune_insee": "85306", + "nom_de_la_commune": "XANTON CHASSENON", + "code_postal": "85240", + "coordonnees_gps": [ + 46.4519408659, + -0.706316598666 + ], + "libelle_d_acheminement": "XANTON CHASSENON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.706316598666, + 46.4519408659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "307a93249371950704fb199b3a29336bc27fe767", + "fields": { + "code_commune_insee": "86006", + "nom_de_la_commune": "ANTIGNY", + "code_postal": "86310", + "coordonnees_gps": [ + 46.5360016424, + 0.839149696505 + ], + "libelle_d_acheminement": "ANTIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.839149696505, + 46.5360016424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82c9126a5ee12fd319918cf0570b18200ad3c6e2", + "fields": { + "code_commune_insee": "86008", + "nom_de_la_commune": "ARCAY", + "code_postal": "86200", + "coordonnees_gps": [ + 46.9520341162, + 0.00333589547426 + ], + "libelle_d_acheminement": "ARCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.00333589547426, + 46.9520341162 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cafbf9a7fa0145fc1b7d53ceee506a2a882c402d", + "fields": { + "code_commune_insee": "86010", + "nom_de_la_commune": "ASLONNES", + "code_postal": "86340", + "coordonnees_gps": [ + 46.4452071575, + 0.33420632298 + ], + "libelle_d_acheminement": "ASLONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.33420632298, + 46.4452071575 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba2dd503e1e73b8e736c6eddec29648b5b2f26f7", + "fields": { + "code_commune_insee": "86024", + "nom_de_la_commune": "BERUGES", + "code_postal": "86190", + "coordonnees_gps": [ + 46.5555538326, + 0.202564421374 + ], + "libelle_d_acheminement": "BERUGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.202564421374, + 46.5555538326 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6477ea82df6150fd478f0285548e9b6cf5b0c57", + "fields": { + "code_commune_insee": "86025", + "nom_de_la_commune": "BETHINES", + "code_postal": "86310", + "coordonnees_gps": [ + 46.5469550432, + 0.976587336165 + ], + "libelle_d_acheminement": "BETHINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.976587336165, + 46.5469550432 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e08951786368b947c44d195bcf541537b6128cb", + "fields": { + "code_commune_insee": "86031", + "nom_de_la_commune": "BONNES", + "code_postal": "86300", + "coordonnees_gps": [ + 46.613909053, + 0.599381155939 + ], + "libelle_d_acheminement": "BONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.599381155939, + 46.613909053 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9bce5de4eadde2935d2c51cd4f959c3a855d65fe", + "fields": { + "code_commune_insee": "86036", + "nom_de_la_commune": "BOURNAND", + "code_postal": "86120", + "coordonnees_gps": [ + 47.0744670977, + 0.075217763683 + ], + "libelle_d_acheminement": "BOURNAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.075217763683, + 47.0744670977 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f8d65d26993662783f561e45d74876dbb97d5c0", + "fields": { + "code_commune_insee": "86037", + "nom_de_la_commune": "BRIGUEIL LE CHANTRE", + "code_postal": "86290", + "coordonnees_gps": [ + 46.3870241748, + 1.09004082103 + ], + "libelle_d_acheminement": "BRIGUEIL LE CHANTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.09004082103, + 46.3870241748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02252ab964466bb46a728d04b116900252f80f41", + "fields": { + "code_commune_insee": "86042", + "nom_de_la_commune": "BUXEUIL", + "code_postal": "37160", + "coordonnees_gps": [ + 46.9691626791, + 0.663280851924 + ], + "libelle_d_acheminement": "BUXEUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.663280851924, + 46.9691626791 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3680b879ed131d841b672381bcaebfb358ba68a8", + "fields": { + "code_commune_insee": "86045", + "nom_de_la_commune": "CELLE LEVESCAULT", + "code_postal": "86600", + "coordonnees_gps": [ + 46.3990380098, + 0.169884448212 + ], + "libelle_d_acheminement": "CELLE LEVESCAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.169884448212, + 46.3990380098 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2affdcf1133c8fcd5f3dbdb785b2f1abc6f73c1f", + "fields": { + "code_commune_insee": "86051", + "nom_de_la_commune": "CHAMPAGNE LE SEC", + "code_postal": "86510", + "coordonnees_gps": [ + 46.1888814469, + 0.190864426806 + ], + "libelle_d_acheminement": "CHAMPAGNE LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.190864426806, + 46.1888814469 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0ee3ed06c2f224b92182bcfd631bf9963158ffc9", + "fields": { + "code_commune_insee": "86059", + "nom_de_la_commune": "CHAPELLE VIVIERS", + "code_postal": "86300", + "coordonnees_gps": [ + 46.4694872562, + 0.730976969783 + ], + "libelle_d_acheminement": "CHAPELLE VIVIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.730976969783, + 46.4694872562 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e3b5a1c13c80cd6b2e729d2ab72a57635320e4c5", + "fields": { + "code_commune_insee": "86064", + "nom_de_la_commune": "CHATEAU GARNIER", + "code_postal": "86350", + "coordonnees_gps": [ + 46.2596541711, + 0.440513917071 + ], + "libelle_d_acheminement": "CHATEAU GARNIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.440513917071, + 46.2596541711 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "16dea46e5b352fc0d811b24c32dc28ca34155f1f", + "fields": { + "code_commune_insee": "86069", + "nom_de_la_commune": "LA CHAUSSEE", + "code_postal": "86330", + "coordonnees_gps": [ + 46.8863544923, + 0.110583366084 + ], + "libelle_d_acheminement": "LA CHAUSSEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.110583366084, + 46.8863544923 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc414b666dcb297b99005b090a68c097b0098090", + "fields": { + "ligne_5": "POUZIOUX", + "code_commune_insee": "86070", + "libelle_d_acheminement": "CHAUVIGNY", + "code_postal": "86300", + "nom_de_la_commune": "CHAUVIGNY", + "coordonnees_gps": [ + 46.5545564256, + 0.678622247419 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.678622247419, + 46.5545564256 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0dda81c99003fc506959c5e26f3a7f66440386ba", + "fields": { + "code_commune_insee": "86074", + "nom_de_la_commune": "CHIRE EN MONTREUIL", + "code_postal": "86190", + "coordonnees_gps": [ + 46.6259667314, + 0.112053368688 + ], + "libelle_d_acheminement": "CHIRE EN MONTREUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.112053368688, + 46.6259667314 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ccbf5eb200a5504670493592e01e7d5907e75a63", + "fields": { + "ligne_5": "CLAUNAY EN LOUDUN", + "code_commune_insee": "86079", + "libelle_d_acheminement": "LA ROCHE RIGAULT", + "code_postal": "86200", + "nom_de_la_commune": "LA ROCHE RIGAULT", + "coordonnees_gps": [ + 46.9698026391, + 0.170597990866 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.170597990866, + 46.9698026391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e20e7dfb96bae7b21efa5b451d43627922e9663", + "fields": { + "ligne_5": "LE BOUCHET", + "code_commune_insee": "86079", + "libelle_d_acheminement": "LA ROCHE RIGAULT", + "code_postal": "86200", + "nom_de_la_commune": "LA ROCHE RIGAULT", + "coordonnees_gps": [ + 46.9698026391, + 0.170597990866 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.170597990866, + 46.9698026391 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50c62f6d47aa1e497445bf52517d9c567f79168f", + "fields": { + "ligne_5": "COUHE", + "code_commune_insee": "86082", + "libelle_d_acheminement": "VALENCE EN POITOU", + "code_postal": "86700", + "nom_de_la_commune": "VALENCE EN POITOU", + "coordonnees_gps": [ + 46.2960515844, + 0.179497066899 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.179497066899, + 46.2960515844 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0da52b8dd55ad2c1fa7caae2ece2b62a2f1666a0", + "fields": { + "code_commune_insee": "86084", + "nom_de_la_commune": "COULONGES", + "code_postal": "86290", + "coordonnees_gps": [ + 46.4126626275, + 1.1750235947 + ], + "libelle_d_acheminement": "COULONGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1750235947, + 46.4126626275 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9c3b21426860457429d96cad90239c286167516", + "fields": { + "code_commune_insee": "86087", + "nom_de_la_commune": "CRAON", + "code_postal": "86110", + "coordonnees_gps": [ + 46.7719644602, + 0.0146641408168 + ], + "libelle_d_acheminement": "CRAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0146641408168, + 46.7719644602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c90c90d6cfcc5ffb4a57f225d37ecd0ad61cea2c", + "fields": { + "code_commune_insee": "86093", + "nom_de_la_commune": "DERCE", + "code_postal": "86420", + "coordonnees_gps": [ + 46.9393324968, + 0.208681874617 + ], + "libelle_d_acheminement": "DERCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.208681874617, + 46.9393324968 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83c0496245a6041c383db52935ac40fcaa1485cc", + "fields": { + "code_commune_insee": "86122", + "nom_de_la_commune": "LAUTHIERS", + "code_postal": "86300", + "coordonnees_gps": [ + 46.6040213362, + 0.726653339198 + ], + "libelle_d_acheminement": "LAUTHIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.726653339198, + 46.6040213362 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce99185f11bbd449832d6c0e915e781727f61c8a", + "fields": { + "code_commune_insee": "86126", + "nom_de_la_commune": "LEIGNES SUR FONTAINE", + "code_postal": "86300", + "coordonnees_gps": [ + 46.509990215, + 0.763267537538 + ], + "libelle_d_acheminement": "LEIGNES SUR FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.763267537538, + 46.509990215 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69c376902cd737c85f54f7989c9a4dc9d1b173a8", + "fields": { + "code_commune_insee": "86127", + "nom_de_la_commune": "LEIGNE SUR USSEAU", + "code_postal": "86230", + "coordonnees_gps": [ + 46.9162063157, + 0.475922952908 + ], + "libelle_d_acheminement": "LEIGNE SUR USSEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.475922952908, + 46.9162063157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cf04feb689e62ffd2f3ede0326c47a2fbfd9429", + "fields": { + "code_commune_insee": "86130", + "nom_de_la_commune": "LEUGNY", + "code_postal": "86220", + "coordonnees_gps": [ + 46.8980444886, + 0.69376366371 + ], + "libelle_d_acheminement": "LEUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.69376366371, + 46.8980444886 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49247aae8dd0ad9d317336ca097ce94b9b0471be", + "fields": { + "code_commune_insee": "86137", + "nom_de_la_commune": "LOUDUN", + "code_postal": "86200", + "coordonnees_gps": [ + 47.0098072856, + 0.0990443124673 + ], + "libelle_d_acheminement": "LOUDUN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0990443124673, + 47.0098072856 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8e0ff8c822ea87b2986ac617962596f08c961392", + "fields": { + "code_commune_insee": "86144", + "nom_de_la_commune": "MAISONNEUVE", + "code_postal": "86170", + "coordonnees_gps": [ + 46.7204355503, + 0.0541721725551 + ], + "libelle_d_acheminement": "MAISONNEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0541721725551, + 46.7204355503 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "988030ab1bf92875965d2def36e90d26a50ae5d7", + "fields": { + "code_commune_insee": "86145", + "nom_de_la_commune": "MARCAY", + "code_postal": "86370", + "coordonnees_gps": [ + 46.4706088589, + 0.225624915429 + ], + "libelle_d_acheminement": "MARCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.225624915429, + 46.4706088589 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7d83af1d09e590de750ef75fb919f1bcd8b3fdf3", + "fields": { + "code_commune_insee": "86148", + "nom_de_la_commune": "MARNAY", + "code_postal": "86160", + "coordonnees_gps": [ + 46.3930188501, + 0.347317602516 + ], + "libelle_d_acheminement": "MARNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.347317602516, + 46.3930188501 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dba31392aa3678ab6f1b4d61bab5715cd2fb6259", + "fields": { + "code_commune_insee": "86159", + "nom_de_la_commune": "MILLAC", + "code_postal": "86150", + "coordonnees_gps": [ + 46.1948553644, + 0.705514594963 + ], + "libelle_d_acheminement": "MILLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.705514594963, + 46.1948553644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7765ea63e525ddf3c3268e9fd1800daaae8d0da2", + "fields": { + "code_commune_insee": "86164", + "nom_de_la_commune": "MONTHOIRON", + "code_postal": "86210", + "coordonnees_gps": [ + 46.7316777375, + 0.617815304816 + ], + "libelle_d_acheminement": "MONTHOIRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.617815304816, + 46.7316777375 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "17ab8b696af58c3bf8667cb9b8039c04cdb4ce25", + "fields": { + "code_commune_insee": "86173", + "nom_de_la_commune": "MOUTERRE SILLY", + "code_postal": "86200", + "coordonnees_gps": [ + 46.9862436522, + 0.0369324238359 + ], + "libelle_d_acheminement": "MOUTERRE SILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0369324238359, + 46.9862436522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da213dfb1da666cffcfcf629d92663e582ee12cf", + "fields": { + "code_commune_insee": "86177", + "nom_de_la_commune": "NEUVILLE DE POITOU", + "code_postal": "86170", + "coordonnees_gps": [ + 46.6823102624, + 0.254645073675 + ], + "libelle_d_acheminement": "NEUVILLE DE POITOU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.254645073675, + 46.6823102624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36cbdc0f5a10768a7f7d17b6e0ac72ee3ecdef05", + "fields": { + "code_commune_insee": "86202", + "nom_de_la_commune": "LA PUYE", + "code_postal": "86260", + "coordonnees_gps": [ + 46.6471428238, + 0.745621548258 + ], + "libelle_d_acheminement": "LA PUYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.745621548258, + 46.6471428238 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4bc4d2c60c35ccd338aee20c270c253bac0b8986", + "fields": { + "code_commune_insee": "86203", + "nom_de_la_commune": "QUEAUX", + "code_postal": "86150", + "coordonnees_gps": [ + 46.3123958137, + 0.636100980987 + ], + "libelle_d_acheminement": "QUEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.636100980987, + 46.3123958137 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc6aa16d5270b8b215393dcb7a987cc1f8342fe3", + "fields": { + "code_commune_insee": "86204", + "nom_de_la_commune": "QUINCAY", + "code_postal": "86190", + "coordonnees_gps": [ + 46.6055316956, + 0.218304769968 + ], + "libelle_d_acheminement": "QUINCAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.218304769968, + 46.6055316956 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58a9d71af1a01dd1e6ac504bf6fdfece88b5786a", + "fields": { + "code_commune_insee": "86207", + "nom_de_la_commune": "LA ROCHE POSAY", + "code_postal": "86270", + "coordonnees_gps": [ + 46.7754623113, + 0.80240732874 + ], + "libelle_d_acheminement": "LA ROCHE POSAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.80240732874, + 46.7754623113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ad8a7d795677f64c802595bf76be812cfd48e61", + "fields": { + "code_commune_insee": "86223", + "nom_de_la_commune": "ST GERMAIN", + "code_postal": "86310", + "coordonnees_gps": [ + 46.5761645622, + 0.900631696992 + ], + "libelle_d_acheminement": "ST GERMAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.900631696992, + 46.5761645622 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f441cc93fdfa431c8fba8e231d96de6256e7a65", + "fields": { + "ligne_5": "FRONTENAY SUR DIVE", + "code_commune_insee": "86225", + "libelle_d_acheminement": "ST JEAN DE SAUVES", + "code_postal": "86330", + "nom_de_la_commune": "ST JEAN DE SAUVES", + "coordonnees_gps": [ + 46.8393708515, + 0.0880509960566 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0880509960566, + 46.8393708515 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "53cf1b0eb22704d832ab2395736b3ac0ad8d528a", + "fields": { + "code_commune_insee": "86226", + "nom_de_la_commune": "ST JULIEN L ARS", + "code_postal": "86800", + "coordonnees_gps": [ + 46.5546778015, + 0.506618351155 + ], + "libelle_d_acheminement": "ST JULIEN L ARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.506618351155, + 46.5546778015 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28008916a41ed6429e75a1029f56e25133758a62", + "fields": { + "code_commune_insee": "86229", + "nom_de_la_commune": "ST LEGER DE MONTBRILLAIS", + "code_postal": "86120", + "coordonnees_gps": [ + 47.0801410403, + -0.038701548718 + ], + "libelle_d_acheminement": "ST LEGER DE MONTBRILLAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.038701548718, + 47.0801410403 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e46771fb7990ef4b15039f1b0a4fd43c0573113", + "fields": { + "code_commune_insee": "86231", + "nom_de_la_commune": "ST MACOUX", + "code_postal": "86400", + "coordonnees_gps": [ + 46.118249319, + 0.225258448871 + ], + "libelle_d_acheminement": "ST MACOUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.225258448871, + 46.118249319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cb2f21969f3452789ccdec6b6fd0727ee33dac3", + "fields": { + "code_commune_insee": "86235", + "nom_de_la_commune": "ST MAURICE LA CLOUERE", + "code_postal": "86160", + "coordonnees_gps": [ + 46.3880713973, + 0.448947749507 + ], + "libelle_d_acheminement": "ST MAURICE LA CLOUERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.448947749507, + 46.3880713973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9d1bc8a67031de98ac4dd665916e6aef0c30113f", + "fields": { + "code_commune_insee": "86244", + "nom_de_la_commune": "ST SAUVANT", + "code_postal": "86600", + "coordonnees_gps": [ + 46.3558019823, + 0.0781018772297 + ], + "libelle_d_acheminement": "ST SAUVANT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0781018772297, + 46.3558019823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6e7487756df7f2ba8dc66723e9475eef61cd4b0", + "fields": { + "code_commune_insee": "86248", + "nom_de_la_commune": "ST SECONDIN", + "code_postal": "86350", + "coordonnees_gps": [ + 46.3255332953, + 0.490583315025 + ], + "libelle_d_acheminement": "ST SECONDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.490583315025, + 46.3255332953 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9be420ad5d2f507b8e51267a3defaac9e9637de", + "fields": { + "code_commune_insee": "86249", + "nom_de_la_commune": "SAIRES", + "code_postal": "86420", + "coordonnees_gps": [ + 46.8901347476, + 0.231765971356 + ], + "libelle_d_acheminement": "SAIRES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.231765971356, + 46.8901347476 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "21f0195975103535ea370d7e74ee52cc6168a820", + "fields": { + "code_commune_insee": "86254", + "nom_de_la_commune": "SAULGE", + "code_postal": "86500", + "coordonnees_gps": [ + 46.3667330907, + 0.865861579177 + ], + "libelle_d_acheminement": "SAULGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.865861579177, + 46.3667330907 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3fa6028b48ee0349427f9685f24c33997792238", + "fields": { + "code_commune_insee": "86256", + "nom_de_la_commune": "SAVIGNY LEVESCAULT", + "code_postal": "86800", + "coordonnees_gps": [ + 46.5289656905, + 0.477909234429 + ], + "libelle_d_acheminement": "SAVIGNY LEVESCAULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.477909234429, + 46.5289656905 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ff830d888479e7071ffb34b1dc1529159ebd3bd2", + "fields": { + "code_commune_insee": "86262", + "nom_de_la_commune": "SILLARS", + "code_postal": "86320", + "coordonnees_gps": [ + 46.4209799569, + 0.786727577235 + ], + "libelle_d_acheminement": "SILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.786727577235, + 46.4209799569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69d1cae6f0258a82975c89e5ca4c50de6758ed49", + "fields": { + "code_commune_insee": "86269", + "nom_de_la_commune": "TERNAY", + "code_postal": "86120", + "coordonnees_gps": [ + 47.0351786527, + -0.0534363312967 + ], + "libelle_d_acheminement": "TERNAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0534363312967, + 47.0351786527 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b56b4abcd0592c5a31460c9df6d76eb08363d9fa", + "fields": { + "code_commune_insee": "86287", + "nom_de_la_commune": "VEZIERES", + "code_postal": "86120", + "coordonnees_gps": [ + 47.0909836743, + 0.127562035571 + ], + "libelle_d_acheminement": "VEZIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.127562035571, + 47.0909836743 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0fe6d3e0201fed1a90e3046e03e31ee398d57db6", + "fields": { + "code_commune_insee": "86291", + "nom_de_la_commune": "VILLEMORT", + "code_postal": "86310", + "coordonnees_gps": [ + 46.5503223328, + 0.926975822174 + ], + "libelle_d_acheminement": "VILLEMORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.926975822174, + 46.5503223328 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5f28126ce8f42917336e5f41db29bfcb99e686b", + "fields": { + "code_commune_insee": "86294", + "nom_de_la_commune": "VOUILLE", + "code_postal": "86190", + "coordonnees_gps": [ + 46.62150106, + 0.163409416409 + ], + "libelle_d_acheminement": "VOUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.163409416409, + 46.62150106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "35f2742da6ebb0c22599c187ffc97858d98fbc1b", + "fields": { + "code_commune_insee": "86295", + "nom_de_la_commune": "VOULEME", + "code_postal": "86400", + "coordonnees_gps": [ + 46.1014679335, + 0.235987087448 + ], + "libelle_d_acheminement": "VOULEME" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.235987087448, + 46.1014679335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9316407d3477cefd08c52ba9650ed55738525014", + "fields": { + "code_commune_insee": "86297", + "nom_de_la_commune": "VOUNEUIL SOUS BIARD", + "code_postal": "86580", + "coordonnees_gps": [ + 46.5792555716, + 0.270706459664 + ], + "libelle_d_acheminement": "VOUNEUIL SOUS BIARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.270706459664, + 46.5792555716 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39fc01802b772816d98c53ab24608e4b788aaa38", + "fields": { + "code_commune_insee": "86298", + "nom_de_la_commune": "VOUNEUIL SUR VIENNE", + "code_postal": "86210", + "coordonnees_gps": [ + 46.7194600079, + 0.541343502237 + ], + "libelle_d_acheminement": "VOUNEUIL SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.541343502237, + 46.7194600079 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2210f067e982b3d706421c641d0b22bcbfedb1ab", + "fields": { + "code_commune_insee": "87002", + "nom_de_la_commune": "AMBAZAC", + "code_postal": "87240", + "coordonnees_gps": [ + 45.9534226621, + 1.39930873296 + ], + "libelle_d_acheminement": "AMBAZAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.39930873296, + 45.9534226621 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a8308273b917ded1f33c61e03653403142aa7eeb", + "fields": { + "code_commune_insee": "87006", + "nom_de_la_commune": "AZAT LE RIS", + "code_postal": "87360", + "coordonnees_gps": [ + 46.3077799359, + 1.05737198508 + ], + "libelle_d_acheminement": "AZAT LE RIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.05737198508, + 46.3077799359 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7aaf766315799f9adaa3c0d191736b7bf5088698", + "fields": { + "code_commune_insee": "87008", + "nom_de_la_commune": "LA BAZEUGE", + "code_postal": "87210", + "coordonnees_gps": [ + 46.2552096242, + 1.08391760958 + ], + "libelle_d_acheminement": "LA BAZEUGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.08391760958, + 46.2552096242 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "33247e96826fa89e1185dbc98b1907873a5eae3b", + "fields": { + "code_commune_insee": "87011", + "nom_de_la_commune": "BELLAC", + "code_postal": "87300", + "coordonnees_gps": [ + 46.1049122554, + 1.04116467219 + ], + "libelle_d_acheminement": "BELLAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.04116467219, + 46.1049122554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14965509f14fe7b7e2fa909c1007d84b199a8239", + "fields": { + "code_commune_insee": "87015", + "nom_de_la_commune": "BEYNAC", + "code_postal": "87700", + "coordonnees_gps": [ + 45.7677930043, + 1.1655637429 + ], + "libelle_d_acheminement": "BEYNAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1655637429, + 45.7677930043 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6652e87647d5fb3a750d9449ca8f376d5f63330", + "fields": { + "code_commune_insee": "87021", + "nom_de_la_commune": "BOSMIE L AIGUILLE", + "code_postal": "87110", + "coordonnees_gps": [ + 45.7655936715, + 1.20427660043 + ], + "libelle_d_acheminement": "BOSMIE L AIGUILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.20427660043, + 45.7655936715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "798638504ed6351c5c62c9d5571c811328d171ad", + "fields": { + "ligne_5": "ST BARBANT", + "code_commune_insee": "87028", + "libelle_d_acheminement": "VAL D OIRE ET GARTEMPE", + "code_postal": "87330", + "nom_de_la_commune": "VAL D OIRE ET GARTEMPE", + "coordonnees_gps": [ + 46.2418910166, + 0.90395962145 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90395962145, + 46.2418910166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a237469ece92e360e0dcd3ac79cd7e85d124852", + "fields": { + "code_commune_insee": "87029", + "nom_de_la_commune": "LES CARS", + "code_postal": "87230", + "coordonnees_gps": [ + 45.6748528482, + 1.07139196993 + ], + "libelle_d_acheminement": "LES CARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.07139196993, + 45.6748528482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75120fa486df87eb194ffdfa2e8e264b61c664b0", + "fields": { + "code_commune_insee": "87037", + "nom_de_la_commune": "LA CHAPELLE MONTBRANDEIX", + "code_postal": "87440", + "coordonnees_gps": [ + 45.6447907702, + 0.853394327923 + ], + "libelle_d_acheminement": "LA CHAPELLE MONTBRANDEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.853394327923, + 45.6447907702 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2fbd9dc80c98446dc6d1517dc3173356c7ffa58", + "fields": { + "code_commune_insee": "87040", + "nom_de_la_commune": "CHATEAUNEUF LA FORET", + "code_postal": "87130", + "coordonnees_gps": [ + 45.6947594412, + 1.61002083984 + ], + "libelle_d_acheminement": "CHATEAUNEUF LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.61002083984, + 45.6947594412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3b2c83911ff35403f48250c6ef01446d08dea30a", + "fields": { + "code_commune_insee": "87041", + "nom_de_la_commune": "CHATEAUPONSAC", + "code_postal": "87290", + "coordonnees_gps": [ + 46.1311583678, + 1.28041965042 + ], + "libelle_d_acheminement": "CHATEAUPONSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.28041965042, + 46.1311583678 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3116b07baea1c81dd27edc2a855b9250915d7ae", + "fields": { + "code_commune_insee": "87052", + "nom_de_la_commune": "LA CROIX SUR GARTEMPE", + "code_postal": "87210", + "coordonnees_gps": [ + 46.1604229513, + 1.00238441381 + ], + "libelle_d_acheminement": "LA CROIX SUR GARTEMPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.00238441381, + 46.1604229513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2e36de313525811138f9aa39d602e269c4a6ce7", + "fields": { + "code_commune_insee": "87054", + "nom_de_la_commune": "CUSSAC", + "code_postal": "87150", + "coordonnees_gps": [ + 45.6906747183, + 0.849177803475 + ], + "libelle_d_acheminement": "CUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.849177803475, + 45.6906747183 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "307889c9e5bcddb874671d3fcc9eceb175092c5d", + "fields": { + "code_commune_insee": "87056", + "nom_de_la_commune": "DINSAC", + "code_postal": "87210", + "coordonnees_gps": [ + 46.240726366, + 1.11014815937 + ], + "libelle_d_acheminement": "DINSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.11014815937, + 46.240726366 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac8c33a06c10285678fe023393e623abb8a67dc3", + "fields": { + "code_commune_insee": "87062", + "nom_de_la_commune": "EYBOULEUF", + "code_postal": "87400", + "coordonnees_gps": [ + 45.8001093389, + 1.48517359116 + ], + "libelle_d_acheminement": "EYBOULEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.48517359116, + 45.8001093389 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84634b6c2cbcb6cd3ff3afde67df7a639ff98430", + "fields": { + "code_commune_insee": "87071", + "nom_de_la_commune": "GLANDON", + "code_postal": "87500", + "coordonnees_gps": [ + 45.4720566316, + 1.22851251134 + ], + "libelle_d_acheminement": "GLANDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.22851251134, + 45.4720566316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f78a7e37ff8fdf9c23deb1503b12ba55b5c3f0e", + "fields": { + "code_commune_insee": "87074", + "nom_de_la_commune": "LES GRANDS CHEZEAUX", + "code_postal": "87160", + "coordonnees_gps": [ + 46.3560575334, + 1.38436759782 + ], + "libelle_d_acheminement": "LES GRANDS CHEZEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.38436759782, + 46.3560575334 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa4ce636b45505dc9099ebcfe5363bd56a94bfbe", + "fields": { + "code_commune_insee": "87090", + "nom_de_la_commune": "MAILHAC SUR BENAIZE", + "code_postal": "87160", + "coordonnees_gps": [ + 46.3105169411, + 1.31571344485 + ], + "libelle_d_acheminement": "MAILHAC SUR BENAIZE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31571344485, + 46.3105169411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "021dff43e666f5c6567da6978d0edcfc8ec98b17", + "fields": { + "code_commune_insee": "87092", + "nom_de_la_commune": "MARVAL", + "code_postal": "87440", + "coordonnees_gps": [ + 45.6348755661, + 0.7960449348 + ], + "libelle_d_acheminement": "MARVAL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7960449348, + 45.6348755661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96ab05a28b4dd9ab5de2b243719a71c4155dfe09", + "fields": { + "code_commune_insee": "87094", + "nom_de_la_commune": "MEILHAC", + "code_postal": "87800", + "coordonnees_gps": [ + 45.7117307166, + 1.15756175442 + ], + "libelle_d_acheminement": "MEILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.15756175442, + 45.7117307166 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6fb81116ac2e950b20488fc9b31b47bf54ce6a67", + "fields": { + "code_commune_insee": "87101", + "nom_de_la_commune": "MORTEMART", + "code_postal": "87330", + "coordonnees_gps": [ + 46.0484465758, + 0.95503235222 + ], + "libelle_d_acheminement": "MORTEMART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.95503235222, + 46.0484465758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "73e80a67bd35d910f220d0f1a24e72d3ac1ad93a", + "fields": { + "code_commune_insee": "87106", + "nom_de_la_commune": "NEXON", + "code_postal": "87800", + "coordonnees_gps": [ + 45.6749732411, + 1.18567878559 + ], + "libelle_d_acheminement": "NEXON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.18567878559, + 45.6749732411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae9a5b28b2694e243f26e2086e174e23b4b5cfbc", + "fields": { + "code_commune_insee": "87120", + "nom_de_la_commune": "LA PORCHERIE", + "code_postal": "87380", + "coordonnees_gps": [ + 45.5761961108, + 1.54671471269 + ], + "libelle_d_acheminement": "LA PORCHERIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.54671471269, + 45.5761961108 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab5c567b39e280d3d66fdc90b83a478976da3b33", + "fields": { + "code_commune_insee": "87133", + "nom_de_la_commune": "ST AMAND MAGNAZEIX", + "code_postal": "87290", + "coordonnees_gps": [ + 46.1842804028, + 1.35791469518 + ], + "libelle_d_acheminement": "ST AMAND MAGNAZEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.35791469518, + 46.1842804028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce073ab72c4b410a67681c6ce96ddf33c54b1a77", + "fields": { + "code_commune_insee": "87140", + "nom_de_la_commune": "ST BRICE SUR VIENNE", + "code_postal": "87200", + "coordonnees_gps": [ + 45.9023304866, + 0.963574081829 + ], + "libelle_d_acheminement": "ST BRICE SUR VIENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.963574081829, + 45.9023304866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8668a3015ee49a801ade04497e1c5572c1307b53", + "fields": { + "code_commune_insee": "87143", + "nom_de_la_commune": "ST GENCE", + "code_postal": "87510", + "coordonnees_gps": [ + 45.9094679833, + 1.13938363995 + ], + "libelle_d_acheminement": "ST GENCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.13938363995, + 45.9094679833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5226fbb7389b5abd7e45e14b3f3cbe12e590efa4", + "fields": { + "code_commune_insee": "87151", + "nom_de_la_commune": "ST JEAN LIGOURE", + "code_postal": "87260", + "coordonnees_gps": [ + 45.6906508638, + 1.30783401393 + ], + "libelle_d_acheminement": "ST JEAN LIGOURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.30783401393, + 45.6906508638 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "778fe7a466fa2a2cd26842bff09b2009666c571a", + "fields": { + "code_commune_insee": "87157", + "nom_de_la_commune": "ST LAURENT LES EGLISES", + "code_postal": "87240", + "coordonnees_gps": [ + 45.9635910312, + 1.47506553972 + ], + "libelle_d_acheminement": "ST LAURENT LES EGLISES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.47506553972, + 45.9635910312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2b44f8f6219bf575e3a9b6a19f86cb55811be24f", + "fields": { + "code_commune_insee": "87163", + "nom_de_la_commune": "ST MARTIAL SUR ISOP", + "code_postal": "87330", + "coordonnees_gps": [ + 46.1532476453, + 0.873311624285 + ], + "libelle_d_acheminement": "ST MARTIAL SUR ISOP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.873311624285, + 46.1532476453 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26f59797c7f7fabcf2378874d8855930d8d98593", + "fields": { + "code_commune_insee": "87164", + "nom_de_la_commune": "ST MARTIN DE JUSSAC", + "code_postal": "87200", + "coordonnees_gps": [ + 45.8608042276, + 0.943622213531 + ], + "libelle_d_acheminement": "ST MARTIN DE JUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.943622213531, + 45.8608042276 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1e3b57957b4690214f5286bff339bbfd5aed8485", + "fields": { + "code_commune_insee": "87174", + "nom_de_la_commune": "ST PAUL", + "code_postal": "87260", + "coordonnees_gps": [ + 45.7524342928, + 1.44281385346 + ], + "libelle_d_acheminement": "ST PAUL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.44281385346, + 45.7524342928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "018fc234b113ad7aebe42a608c86298177bcaee0", + "fields": { + "code_commune_insee": "87180", + "nom_de_la_commune": "ST SORNIN LEULAC", + "code_postal": "87290", + "coordonnees_gps": [ + 46.1961790714, + 1.29766583914 + ], + "libelle_d_acheminement": "ST SORNIN LEULAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.29766583914, + 46.1961790714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f41cd96ed746d6864259338d3195c7f2a4b36ff", + "fields": { + "code_commune_insee": "87188", + "nom_de_la_commune": "ST YRIEIX SOUS AIXE", + "code_postal": "87700", + "coordonnees_gps": [ + 45.8502841383, + 1.06391775752 + ], + "libelle_d_acheminement": "ST YRIEIX SOUS AIXE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06391775752, + 45.8502841383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e84fbdf65fd74fbd3f06d825e9a2deb955cea2e", + "fields": { + "code_commune_insee": "87191", + "nom_de_la_commune": "SEREILHAC", + "code_postal": "87620", + "coordonnees_gps": [ + 45.7658422041, + 1.06004975072 + ], + "libelle_d_acheminement": "SEREILHAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.06004975072, + 45.7658422041 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0b74b7273d53f7fb8909d01eb56b2f1928a93383", + "fields": { + "code_commune_insee": "87194", + "nom_de_la_commune": "SUSSAC", + "code_postal": "87130", + "coordonnees_gps": [ + 45.6580687959, + 1.65195994088 + ], + "libelle_d_acheminement": "SUSSAC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65195994088, + 45.6580687959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc629e66184be45f7cd69c4769c2e03eeefdf9f0", + "fields": { + "code_commune_insee": "87197", + "nom_de_la_commune": "THOURON", + "code_postal": "87140", + "coordonnees_gps": [ + 45.9983550083, + 1.21994998762 + ], + "libelle_d_acheminement": "THOURON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.21994998762, + 45.9983550083 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "210a7fd5b17d2fe513fb0fcbb41e3236238aa066", + "fields": { + "code_commune_insee": "87198", + "nom_de_la_commune": "VAULRY", + "code_postal": "87140", + "coordonnees_gps": [ + 46.027608122, + 1.0838246874 + ], + "libelle_d_acheminement": "VAULRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0838246874, + 46.027608122 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "124e1d198dbf85997c42b03c4cf83e0617e74ba6", + "fields": { + "code_commune_insee": "88001", + "nom_de_la_commune": "LES ABLEUVENETTES", + "code_postal": "88270", + "coordonnees_gps": [ + 48.1916639061, + 6.19244312947 + ], + "libelle_d_acheminement": "LES ABLEUVENETTES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19244312947, + 48.1916639061 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "07879ed60034001aaa98f5da35eb7b9cb5783e6b", + "fields": { + "code_commune_insee": "88015", + "nom_de_la_commune": "ATTIGNEVILLE", + "code_postal": "88300", + "coordonnees_gps": [ + 48.39777973, + 5.8275121847 + ], + "libelle_d_acheminement": "ATTIGNEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8275121847, + 48.39777973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8e4ddf021f39694f8806ec06e9043d56d0408b3", + "fields": { + "code_commune_insee": "88020", + "nom_de_la_commune": "AUTREVILLE", + "code_postal": "88300", + "coordonnees_gps": [ + 48.4900920447, + 5.85837068371 + ], + "libelle_d_acheminement": "AUTREVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.85837068371, + 48.4900920447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bb7d2be022df56b00b1bcc8943255347a759622", + "fields": { + "code_commune_insee": "88021", + "nom_de_la_commune": "AUTREY", + "code_postal": "88700", + "coordonnees_gps": [ + 48.2892300642, + 6.7239757963 + ], + "libelle_d_acheminement": "AUTREY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7239757963, + 48.2892300642 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b242d2e74c831c57fbce11d3332ba35ee97948ae", + "fields": { + "code_commune_insee": "88028", + "nom_de_la_commune": "LA BAFFE", + "code_postal": "88460", + "coordonnees_gps": [ + 48.1590314003, + 6.56190492977 + ], + "libelle_d_acheminement": "LA BAFFE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56190492977, + 48.1590314003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dfb808f00db464d16f5c33ee009945759316fabf", + "fields": { + "ligne_5": "HARSAULT", + "code_commune_insee": "88029", + "libelle_d_acheminement": "LA VOGE LES BAINS", + "code_postal": "88240", + "nom_de_la_commune": "LA VOGE LES BAINS", + "coordonnees_gps": [ + 47.9968747353, + 6.26194585854 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26194585854, + 47.9968747353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f432eeb494bef7c887a67bde6b16907b379d04a9", + "fields": { + "ligne_5": "LA FORGE DE THUNIMONT", + "code_commune_insee": "88029", + "libelle_d_acheminement": "LA VOGE LES BAINS", + "code_postal": "88240", + "nom_de_la_commune": "LA VOGE LES BAINS", + "coordonnees_gps": [ + 47.9968747353, + 6.26194585854 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26194585854, + 47.9968747353 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "90dda52b84c6c4f4929970a1e326d7de6b4aa58e", + "fields": { + "code_commune_insee": "88033", + "nom_de_la_commune": "BAN DE SAPT", + "code_postal": "88210", + "coordonnees_gps": [ + 48.3430851035, + 7.01566542926 + ], + "libelle_d_acheminement": "BAN DE SAPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.01566542926, + 48.3430851035 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d37e6d3b3b8c7094d9c3a5b617c311e77753beb9", + "fields": { + "code_commune_insee": "88036", + "nom_de_la_commune": "BARVILLE", + "code_postal": "88300", + "coordonnees_gps": [ + 48.3782063829, + 5.76910116308 + ], + "libelle_d_acheminement": "BARVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.76910116308, + 48.3782063829 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da459d8800e94760c8ceb66240a02b822839f5a6", + "fields": { + "code_commune_insee": "88037", + "nom_de_la_commune": "BASSE SUR LE RUPT", + "code_postal": "88120", + "coordonnees_gps": [ + 47.9864781279, + 6.76859733903 + ], + "libelle_d_acheminement": "BASSE SUR LE RUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76859733903, + 47.9864781279 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8ad6834bec7dec54fb5a61fcd6218733f67d413", + "fields": { + "code_commune_insee": "88040", + "nom_de_la_commune": "BAYECOURT", + "code_postal": "88150", + "coordonnees_gps": [ + 48.2705788508, + 6.49201473003 + ], + "libelle_d_acheminement": "BAYECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49201473003, + 48.2705788508 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b9f8110249c3304a7aebeadebcf80cb28d89b9f8", + "fields": { + "code_commune_insee": "88041", + "nom_de_la_commune": "BAZEGNEY", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2657609673, + 6.23085668637 + ], + "libelle_d_acheminement": "BAZEGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23085668637, + 48.2657609673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3573ca1e329ba1f78cd16a57042e733cfb37033", + "fields": { + "code_commune_insee": "88043", + "nom_de_la_commune": "BAZOILLES ET MENIL", + "code_postal": "88500", + "coordonnees_gps": [ + 48.2588753865, + 6.10357834209 + ], + "libelle_d_acheminement": "BAZOILLES ET MENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10357834209, + 48.2588753865 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "107b6294852fe459a3faab3d310f008b9bc7354f", + "fields": { + "code_commune_insee": "88045", + "nom_de_la_commune": "BEAUFREMONT", + "code_postal": "88300", + "coordonnees_gps": [ + 48.2538106689, + 5.74644583545 + ], + "libelle_d_acheminement": "BEAUFREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.74644583545, + 48.2538106689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e68ae86c31f6b660172ccc7a9a0c23af495536b", + "fields": { + "code_commune_insee": "88046", + "nom_de_la_commune": "BEAUMENIL", + "code_postal": "88600", + "coordonnees_gps": [ + 48.1718555594, + 6.72212832026 + ], + "libelle_d_acheminement": "BEAUMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72212832026, + 48.1718555594 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93005cbcbe05da25da0337cffcc67bc4fbe6e796", + "fields": { + "code_commune_insee": "88049", + "nom_de_la_commune": "BELMONT LES DARNEY", + "code_postal": "88260", + "coordonnees_gps": [ + 48.0858034217, + 6.01460062165 + ], + "libelle_d_acheminement": "BELMONT LES DARNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01460062165, + 48.0858034217 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3f16eda85c3f478b89572f4508f60a0a027da8d", + "fields": { + "code_commune_insee": "88052", + "nom_de_la_commune": "BELRUPT", + "code_postal": "88260", + "coordonnees_gps": [ + 48.0912515874, + 6.08965093071 + ], + "libelle_d_acheminement": "BELRUPT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08965093071, + 48.0912515874 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9df8f5ca6e0f22883a35e65308726186fcbf4220", + "fields": { + "code_commune_insee": "88057", + "nom_de_la_commune": "LE BEULAY", + "code_postal": "88490", + "coordonnees_gps": [ + 48.3044013418, + 7.06332114337 + ], + "libelle_d_acheminement": "LE BEULAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06332114337, + 48.3044013418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2108a4682bfb9e064a22aea421ce3dd2742e9736", + "fields": { + "code_commune_insee": "88062", + "nom_de_la_commune": "BLEVAINCOURT", + "code_postal": "88320", + "coordonnees_gps": [ + 48.122704627, + 5.69226626633 + ], + "libelle_d_acheminement": "BLEVAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.69226626633, + 48.122704627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8f374696877cafdbc5ee9a1eb1ff505176b5a97", + "fields": { + "code_commune_insee": "88069", + "nom_de_la_commune": "BOUXIERES AUX BOIS", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2603726677, + 6.32068900232 + ], + "libelle_d_acheminement": "BOUXIERES AUX BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32068900232, + 48.2603726677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6c0326b186241fffca9430e9352ce7d37fd2e39e", + "fields": { + "code_commune_insee": "88071", + "nom_de_la_commune": "BOUZEMONT", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2506946208, + 6.2399049237 + ], + "libelle_d_acheminement": "BOUZEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2399049237, + 48.2506946208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e505d8e5eb96323c3231fb5037ae020fc93810f", + "fields": { + "code_commune_insee": "88074", + "nom_de_la_commune": "BRECHAINVILLE", + "code_postal": "88350", + "coordonnees_gps": [ + 48.3631682748, + 5.50625429901 + ], + "libelle_d_acheminement": "BRECHAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.50625429901, + 48.3631682748 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e415e953ec44324dceefc2e1f4d6acabb670623", + "fields": { + "code_commune_insee": "88078", + "nom_de_la_commune": "BRUYERES", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2129348466, + 6.71603066311 + ], + "libelle_d_acheminement": "BRUYERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71603066311, + 48.2129348466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "62d1bcb942391ac8dc5fd20113795bd59c2c393b", + "fields": { + "code_commune_insee": "88083", + "nom_de_la_commune": "CERTILLEUX", + "code_postal": "88300", + "coordonnees_gps": [ + 48.3176635605, + 5.73569532999 + ], + "libelle_d_acheminement": "CERTILLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73569532999, + 48.3176635605 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "494bdba9aec5646a8739dd9ff614c4fce40a696f", + "fields": { + "code_commune_insee": "88085", + "nom_de_la_commune": "CHAMPDRAY", + "code_postal": "88640", + "coordonnees_gps": [ + 48.1281659319, + 6.75998154739 + ], + "libelle_d_acheminement": "CHAMPDRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.75998154739, + 48.1281659319 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51fc0af23aaef80c0dc477c0eba10dd236a8d009", + "fields": { + "code_commune_insee": "88087", + "nom_de_la_commune": "CHANTRAINE", + "code_postal": "88000", + "coordonnees_gps": [ + 48.1667597776, + 6.41955760454 + ], + "libelle_d_acheminement": "CHANTRAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41955760454, + 48.1667597776 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e8022546cc61b623abb4ad33b12c35dd3a993350", + "fields": { + "ligne_5": "GREMIFONTAINE", + "code_commune_insee": "88088", + "libelle_d_acheminement": "LA CHAPELLE AUX BOIS", + "code_postal": "88240", + "nom_de_la_commune": "LA CHAPELLE AUX BOIS", + "coordonnees_gps": [ + 48.0282401085, + 6.32319521959 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.32319521959, + 48.0282401085 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1e0d6089d91be5d5c2f8d2a2599d982c6dba996", + "fields": { + "code_commune_insee": "88090", + "nom_de_la_commune": "CHARMES", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3848071988, + 6.31788990054 + ], + "libelle_d_acheminement": "CHARMES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31788990054, + 48.3848071988 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "225ed94fa7b80267452fe514e16532452a822be9", + "fields": { + "code_commune_insee": "88091", + "nom_de_la_commune": "CHARMOIS DEVANT BRUYERES", + "code_postal": "88460", + "coordonnees_gps": [ + 48.1715459649, + 6.59203655593 + ], + "libelle_d_acheminement": "CHARMOIS DEVANT BRUYERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.59203655593, + 48.1715459649 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ceb2b3a6d8cd7633f8a04dcad38c7a3133abd211", + "fields": { + "code_commune_insee": "88093", + "nom_de_la_commune": "CHATAS", + "code_postal": "88210", + "coordonnees_gps": [ + 48.3652872769, + 7.03771282338 + ], + "libelle_d_acheminement": "CHATAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.03771282338, + 48.3652872769 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e77596c8ca77bf74bc91ab8728f93647de93414c", + "fields": { + "code_commune_insee": "88099", + "nom_de_la_commune": "CHAVELOT", + "code_postal": "88150", + "coordonnees_gps": [ + 48.2275024139, + 6.43045423076 + ], + "libelle_d_acheminement": "CHAVELOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.43045423076, + 48.2275024139 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dad3136d1def995780fa48fd31f6a6b3ee46d3c0", + "fields": { + "code_commune_insee": "88100", + "nom_de_la_commune": "CHEF HAUT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3537714974, + 6.0096060971 + ], + "libelle_d_acheminement": "CHEF HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0096060971, + 48.3537714974 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c06e86d98ae23c6387277798f401af643fc79b8", + "fields": { + "code_commune_insee": "88111", + "nom_de_la_commune": "COINCHES", + "code_postal": "88100", + "coordonnees_gps": [ + 48.244948169, + 7.02470695131 + ], + "libelle_d_acheminement": "COINCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.02470695131, + 48.244948169 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b83e9b61680cc22deb3c9ab46bc3ebbacfbb5fae", + "fields": { + "code_commune_insee": "88115", + "nom_de_la_commune": "CORCIEUX", + "code_postal": "88430", + "coordonnees_gps": [ + 48.1672306852, + 6.88469743225 + ], + "libelle_d_acheminement": "CORCIEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.88469743225, + 48.1672306852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "262bea08db0238c9de5a3ff4c9b0116b753a82e1", + "fields": { + "code_commune_insee": "88117", + "nom_de_la_commune": "COURCELLES SOUS CHATENOIS", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3280700524, + 5.81600954433 + ], + "libelle_d_acheminement": "COURCELLES SOUS CHATENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.81600954433, + 48.3280700524 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efc14962faac03cd494162beead852b251060f44", + "fields": { + "code_commune_insee": "88122", + "nom_de_la_commune": "DAMAS ET BETTEGNEY", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2131764478, + 6.26183705745 + ], + "libelle_d_acheminement": "DAMAS ET BETTEGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.26183705745, + 48.2131764478 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a9eb4f40cbd0d0d1cac7cbaffd7b347b4fa75c23", + "fields": { + "code_commune_insee": "88123", + "nom_de_la_commune": "DAMBLAIN", + "code_postal": "88320", + "coordonnees_gps": [ + 48.091128614, + 5.66870358714 + ], + "libelle_d_acheminement": "DAMBLAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.66870358714, + 48.091128614 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1055c57d075a8e4d36e0d83434b0987f84914b01", + "fields": { + "code_commune_insee": "88127", + "nom_de_la_commune": "DEINVILLERS", + "code_postal": "88700", + "coordonnees_gps": [ + 48.4125439347, + 6.56093261631 + ], + "libelle_d_acheminement": "DEINVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56093261631, + 48.4125439347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a75a436992529bb035a8a6316fe4a46f60660bf5", + "fields": { + "code_commune_insee": "88133", + "nom_de_la_commune": "DIGNONVILLE", + "code_postal": "88000", + "coordonnees_gps": [ + 48.2431130672, + 6.49905182011 + ], + "libelle_d_acheminement": "DIGNONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49905182011, + 48.2431130672 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1b57327b36bf6ab8a0acbbebe00681f2ea6119b1", + "fields": { + "ligne_5": "GIROVILLERS SOUS MONTFORT", + "code_commune_insee": "88146", + "libelle_d_acheminement": "DOMJULIEN", + "code_postal": "88800", + "nom_de_la_commune": "DOMJULIEN", + "coordonnees_gps": [ + 48.2552201786, + 5.99477709505 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99477709505, + 48.2552201786 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aeaac2d58f7f922699422b8b40f7de49d246ae26", + "fields": { + "code_commune_insee": "88150", + "nom_de_la_commune": "DOMMARTIN SUR VRAINE", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3415797506, + 5.91405593469 + ], + "libelle_d_acheminement": "DOMMARTIN SUR VRAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91405593469, + 48.3415797506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9fd85139f98a97c9c449a69e854647eea474b636", + "fields": { + "code_commune_insee": "88159", + "nom_de_la_commune": "ENTRE DEUX EAUX", + "code_postal": "88650", + "coordonnees_gps": [ + 48.2376801335, + 6.99965862371 + ], + "libelle_d_acheminement": "ENTRE DEUX EAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99965862371, + 48.2376801335 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf3dc63f21f9506aa2404c5cc8e8167f7b0681f2", + "fields": { + "code_commune_insee": "88161", + "nom_de_la_commune": "ESCLES", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1179192154, + 6.17588466953 + ], + "libelle_d_acheminement": "ESCLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17588466953, + 48.1179192154 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29c74cad9c472dc8289892fcbd69842561644f47", + "fields": { + "code_commune_insee": "88162", + "nom_de_la_commune": "ESLEY", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1752203553, + 6.05828858575 + ], + "libelle_d_acheminement": "ESLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.05828858575, + 48.1752203553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c339b1ac467f6203896ba8a9fe48975c9324811", + "fields": { + "code_commune_insee": "88171", + "nom_de_la_commune": "FIGNEVELLE", + "code_postal": "88410", + "coordonnees_gps": [ + 47.9832319597, + 5.91115278832 + ], + "libelle_d_acheminement": "FIGNEVELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.91115278832, + 47.9832319597 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1c219ba4b8aecb4d8a4a7a50ec456f2d2ed75fe", + "fields": { + "code_commune_insee": "88177", + "nom_de_la_commune": "LA FORGE", + "code_postal": "88530", + "coordonnees_gps": [ + 48.0704873516, + 6.71938444545 + ], + "libelle_d_acheminement": "LA FORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.71938444545, + 48.0704873516 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "120f21b393b6d65fbb2713d13c6f455ac8b20443", + "fields": { + "code_commune_insee": "88178", + "nom_de_la_commune": "LES FORGES", + "code_postal": "88390", + "coordonnees_gps": [ + 48.1741009387, + 6.39516848095 + ], + "libelle_d_acheminement": "LES FORGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.39516848095, + 48.1741009387 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05391c6472301125ec1f2f45f85930251bedbf48", + "fields": { + "code_commune_insee": "88183", + "nom_de_la_commune": "FREBECOURT", + "code_postal": "88630", + "coordonnees_gps": [ + 48.3841915094, + 5.67002519019 + ], + "libelle_d_acheminement": "FREBECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.67002519019, + 48.3841915094 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8de06e83a53785c4f136bdae2f5468f5399b633a", + "fields": { + "code_commune_insee": "88185", + "nom_de_la_commune": "FRENELLE LA GRANDE", + "code_postal": "88500", + "coordonnees_gps": [ + 48.352787817, + 6.09166022129 + ], + "libelle_d_acheminement": "FRENELLE LA GRANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09166022129, + 48.352787817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83a965f994d57e8606a2f286a5446628a67a3f0e", + "fields": { + "code_commune_insee": "88186", + "nom_de_la_commune": "FRENELLE LA PETITE", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3497634431, + 6.06246053491 + ], + "libelle_d_acheminement": "FRENELLE LA PETITE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06246053491, + 48.3497634431 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1023c5c86a93cee0c7abb72c93ef9c29391a35fd", + "fields": { + "code_commune_insee": "88197", + "nom_de_la_commune": "GERBAMONT", + "code_postal": "88120", + "coordonnees_gps": [ + 48.0034015569, + 6.76897818447 + ], + "libelle_d_acheminement": "GERBAMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.76897818447, + 48.0034015569 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c23599d60bf6f446fd0060b878d5d56c6a3943cb", + "fields": { + "code_commune_insee": "88200", + "nom_de_la_commune": "GIGNEY", + "code_postal": "88390", + "coordonnees_gps": [ + 48.2302000003, + 6.33437729864 + ], + "libelle_d_acheminement": "GIGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33437729864, + 48.2302000003 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5b14d0a16addc41946bb54b9bd882d8f89282db1", + "fields": { + "code_commune_insee": "88202", + "nom_de_la_commune": "GIRCOURT LES VIEVILLE", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3405324074, + 6.19209092898 + ], + "libelle_d_acheminement": "GIRCOURT LES VIEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19209092898, + 48.3405324074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "101cbeba5740ac9698e706a76891fada67e0780f", + "fields": { + "code_commune_insee": "88206", + "nom_de_la_commune": "GIRONCOURT SUR VRAINE", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3033912981, + 5.93124486006 + ], + "libelle_d_acheminement": "GIRONCOURT SUR VRAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93124486006, + 48.3033912981 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d9fbc6bea52fad4499ac180c14c451707a2dccf8", + "fields": { + "code_commune_insee": "88208", + "nom_de_la_commune": "GODONCOURT", + "code_postal": "88410", + "coordonnees_gps": [ + 47.9972274946, + 5.93385769544 + ], + "libelle_d_acheminement": "GODONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93385769544, + 47.9972274946 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "867f78716a115143c8fa8eb2e8cf18b3170625bb", + "fields": { + "code_commune_insee": "88212", + "nom_de_la_commune": "GRAND", + "code_postal": "88350", + "coordonnees_gps": [ + 48.3930669369, + 5.47818498958 + ], + "libelle_d_acheminement": "GRAND" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.47818498958, + 48.3930669369 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9ed7b332aa6d2ed4be503c4c611474b14e515d0f", + "fields": { + "code_commune_insee": "88216", + "nom_de_la_commune": "GRANDVILLERS", + "code_postal": "88600", + "coordonnees_gps": [ + 48.23660603, + 6.6688268877 + ], + "libelle_d_acheminement": "GRANDVILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6688268877, + 48.23660603 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fb491c28b565064c83919fd7c4710c0dd70b8c1", + "fields": { + "ligne_5": "GRANGES SUR VOLOGNE", + "code_commune_insee": "88218", + "libelle_d_acheminement": "GRANGES AUMONTZEY", + "code_postal": "88640", + "nom_de_la_commune": "GRANGES AUMONTZEY", + "coordonnees_gps": [ + 48.127602766, + 6.81014946226 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81014946226, + 48.127602766 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5221eb803b852f84169e85f7bc864eca6d5cbbc3", + "fields": { + "code_commune_insee": "88228", + "nom_de_la_commune": "HAILLAINVILLE", + "code_postal": "88330", + "coordonnees_gps": [ + 48.3939828831, + 6.49311137995 + ], + "libelle_d_acheminement": "HAILLAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.49311137995, + 48.3939828831 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0426ec15cbffcf20c1ab0f133aa91b68d96820c", + "fields": { + "code_commune_insee": "88239", + "nom_de_la_commune": "HERGUGNEY", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3902080411, + 6.2093192268 + ], + "libelle_d_acheminement": "HERGUGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2093192268, + 48.3902080411 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b5cd811808cc6c1f9b98fe198aeea14fb115e872", + "fields": { + "code_commune_insee": "88257", + "nom_de_la_commune": "JUVAINCOURT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3316459631, + 6.06321133757 + ], + "libelle_d_acheminement": "JUVAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.06321133757, + 48.3316459631 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bcf344be6392fadd2423e191ebf097ca1072200f", + "fields": { + "code_commune_insee": "88260", + "nom_de_la_commune": "LANGLEY", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3599654321, + 6.33168687853 + ], + "libelle_d_acheminement": "LANGLEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.33168687853, + 48.3599654321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ec59f51cd58d4c4d935d37b4c4197f3e8ac79455", + "fields": { + "code_commune_insee": "88268", + "nom_de_la_commune": "LESSEUX", + "code_postal": "88490", + "coordonnees_gps": [ + 48.2821061489, + 7.08613438713 + ], + "libelle_d_acheminement": "LESSEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.08613438713, + 48.2821061489 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "685b2dd4f8c67d67ba2ffa3bf054230ce9a43ba1", + "fields": { + "code_commune_insee": "88273", + "nom_de_la_commune": "LONGCHAMP", + "code_postal": "88000", + "coordonnees_gps": [ + 48.2179595482, + 6.52465872608 + ], + "libelle_d_acheminement": "LONGCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.52465872608, + 48.2179595482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4fcd4b8086283569ec0ccbaa855a9bf5b48b200b", + "fields": { + "code_commune_insee": "88274", + "nom_de_la_commune": "LONGCHAMP SOUS CHATENOIS", + "code_postal": "88170", + "coordonnees_gps": [ + 48.2866022286, + 5.83553689321 + ], + "libelle_d_acheminement": "LONGCHAMP SOUS CHATENOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.83553689321, + 48.2866022286 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3ae055d195b89ea38bec97a5bc47c61f994844a3", + "fields": { + "code_commune_insee": "88290", + "nom_de_la_commune": "MARTIGNY LES GERBONVAUX", + "code_postal": "88300", + "coordonnees_gps": [ + 48.4468151496, + 5.79362450628 + ], + "libelle_d_acheminement": "MARTIGNY LES GERBONVAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.79362450628, + 48.4468151496 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84d3ee631f0d6e9748e2b3aebfacb15c6904f154", + "fields": { + "code_commune_insee": "88302", + "nom_de_la_commune": "LE MENIL", + "code_postal": "88160", + "coordonnees_gps": [ + 47.9140118322, + 6.81585715866 + ], + "libelle_d_acheminement": "LE MENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81585715866, + 47.9140118322 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "52deeec3545b5b6d4fa480683839980f0867d611", + "fields": { + "code_commune_insee": "88311", + "nom_de_la_commune": "MONTMOTIER", + "code_postal": "88240", + "coordonnees_gps": [ + 47.980174233, + 6.17363350663 + ], + "libelle_d_acheminement": "MONTMOTIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17363350663, + 47.980174233 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c6f28bd5ce910126c066d5d0075f6a8171eaee0a", + "fields": { + "code_commune_insee": "88313", + "nom_de_la_commune": "MORIVILLE", + "code_postal": "88330", + "coordonnees_gps": [ + 48.3473450165, + 6.41821065495 + ], + "libelle_d_acheminement": "MORIVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.41821065495, + 48.3473450165 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "531bf5e534bd12a34a5863e5238eb1f4d26a8058", + "fields": { + "code_commune_insee": "88315", + "nom_de_la_commune": "MORTAGNE", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2741321601, + 6.79654370715 + ], + "libelle_d_acheminement": "MORTAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79654370715, + 48.2741321601 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0466caa8ee7e8d54f938f1766c891e8b8e7c3c2", + "fields": { + "code_commune_insee": "88317", + "nom_de_la_commune": "MOUSSEY", + "code_postal": "88210", + "coordonnees_gps": [ + 48.4484687555, + 7.06149660665 + ], + "libelle_d_acheminement": "MOUSSEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.06149660665, + 48.4484687555 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "223dceb96ee4301133fae9dcb42f244a7bac7c10", + "fields": { + "ligne_5": "LE BOULAY", + "code_commune_insee": "88322", + "libelle_d_acheminement": "LA NEUVEVILLE DEVANT LEPANGES", + "code_postal": "88600", + "nom_de_la_commune": "LA NEUVEVILLE DEVANT LEPANGES", + "coordonnees_gps": [ + 48.1537248949, + 6.66634796718 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.66634796718, + 48.1537248949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51da22add2c87e22d632b2ecffff617298f567d9", + "fields": { + "code_commune_insee": "88327", + "nom_de_la_commune": "NOMEXY", + "code_postal": "88440", + "coordonnees_gps": [ + 48.307019833, + 6.372196304 + ], + "libelle_d_acheminement": "NOMEXY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.372196304, + 48.307019833 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1972953e80b9e426db0cb9799df2d20c6d3e52bf", + "fields": { + "code_commune_insee": "88331", + "nom_de_la_commune": "NONZEVILLE", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2654993347, + 6.63356846673 + ], + "libelle_d_acheminement": "NONZEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63356846673, + 48.2654993347 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "efed1b1451b13a3099c498c258400d3ce2563508", + "fields": { + "code_commune_insee": "88335", + "nom_de_la_commune": "OFFROICOURT", + "code_postal": "88500", + "coordonnees_gps": [ + 48.2813144174, + 6.03054762728 + ], + "libelle_d_acheminement": "OFFROICOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.03054762728, + 48.2813144174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a01738b031f629660fcc18439b6782baac32b434", + "fields": { + "ligne_5": "GRANGES DE PLOMBIERES", + "code_commune_insee": "88351", + "libelle_d_acheminement": "PLOMBIERES LES BAINS", + "code_postal": "88370", + "nom_de_la_commune": "PLOMBIERES LES BAINS", + "coordonnees_gps": [ + 47.9697475958, + 6.42879961974 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.42879961974, + 47.9697475958 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "584128dd3ab600c35224d931b1f9e7240c040ae1", + "fields": { + "code_commune_insee": "88353", + "nom_de_la_commune": "PONT LES BONFAYS", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1672898081, + 6.14266150561 + ], + "libelle_d_acheminement": "PONT LES BONFAYS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.14266150561, + 48.1672898081 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "60a196817185515e4725e17101bee7e5373174a2", + "fields": { + "code_commune_insee": "88366", + "nom_de_la_commune": "RAINVILLE", + "code_postal": "88170", + "coordonnees_gps": [ + 48.3564862933, + 5.88860670134 + ], + "libelle_d_acheminement": "RAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.88860670134, + 48.3564862933 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54d074c602b4d05932a7065d061d7995ad8ab875", + "fields": { + "code_commune_insee": "88369", + "nom_de_la_commune": "RAMONCHAMP", + "code_postal": "88160", + "coordonnees_gps": [ + 47.8957257819, + 6.74118658301 + ], + "libelle_d_acheminement": "RAMONCHAMP" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.74118658301, + 47.8957257819 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddf035150a126c286f979a8a048edce058c5503d", + "fields": { + "code_commune_insee": "88372", + "nom_de_la_commune": "RAON L ETAPE", + "code_postal": "88110", + "coordonnees_gps": [ + 48.4079337645, + 6.86032429623 + ], + "libelle_d_acheminement": "RAON L ETAPE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86032429623, + 48.4079337645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6b1b45c9eb4f436c375a3240afdafc2dfab2801", + "fields": { + "ligne_5": "LA TROUCHE", + "code_commune_insee": "88372", + "libelle_d_acheminement": "RAON L ETAPE", + "code_postal": "88110", + "nom_de_la_commune": "RAON L ETAPE", + "coordonnees_gps": [ + 48.4079337645, + 6.86032429623 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86032429623, + 48.4079337645 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e7d9882a9c97d1a945479cc2e80f46577fc8c27a", + "fields": { + "code_commune_insee": "88386", + "nom_de_la_commune": "REMOMEIX", + "code_postal": "88100", + "coordonnees_gps": [ + 48.2636489839, + 7.00958545987 + ], + "libelle_d_acheminement": "REMOMEIX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00958545987, + 48.2636489839 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dee2834c5b55f32acb9cdafa82c7a6077b804c53", + "fields": { + "code_commune_insee": "88389", + "nom_de_la_commune": "REPEL", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3445774553, + 5.98023037308 + ], + "libelle_d_acheminement": "REPEL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.98023037308, + 48.3445774553 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "926908a4a5780ee96cb6493914aedf46d57ff6d5", + "fields": { + "code_commune_insee": "88395", + "nom_de_la_commune": "ROMONT", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3466157075, + 6.58079592867 + ], + "libelle_d_acheminement": "ROMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.58079592867, + 48.3466157075 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e6cbaaebca5e60911af95a15259d8b739f4a39b", + "fields": { + "code_commune_insee": "88402", + "nom_de_la_commune": "ROVILLE AUX CHENES", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3820234749, + 6.61151563001 + ], + "libelle_d_acheminement": "ROVILLE AUX CHENES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.61151563001, + 48.3820234749 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "224470d8e5eb485b23443f27fc6d392350de2fe8", + "fields": { + "code_commune_insee": "88404", + "nom_de_la_commune": "ROZIERES SUR MOUZON", + "code_postal": "88320", + "coordonnees_gps": [ + 48.1150950617, + 5.72132142301 + ], + "libelle_d_acheminement": "ROZIERES SUR MOUZON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72132142301, + 48.1150950617 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d3a165880ca45b25751ce6256c2c437a63c39216", + "fields": { + "code_commune_insee": "88406", + "nom_de_la_commune": "RUGNEY", + "code_postal": "88130", + "coordonnees_gps": [ + 48.3482485017, + 6.25242889528 + ], + "libelle_d_acheminement": "RUGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25242889528, + 48.3482485017 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "574f5f06458b124e918ee0e70927bc6d6d881d51", + "fields": { + "code_commune_insee": "88411", + "nom_de_la_commune": "ST BASLEMONT", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1399184604, + 5.99361275531 + ], + "libelle_d_acheminement": "ST BASLEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.99361275531, + 48.1399184604 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fa2ce995a7f0b9524a2ba68fdd4a792dff142515", + "fields": { + "code_commune_insee": "88413", + "nom_de_la_commune": "ST DIE DES VOSGES", + "code_postal": "88100", + "coordonnees_gps": [ + 48.2967093514, + 6.93809367547 + ], + "libelle_d_acheminement": "ST DIE DES VOSGES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93809367547, + 48.2967093514 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fceb01f55018cd99407166a876c05839cddb5ef4", + "fields": { + "code_commune_insee": "88416", + "nom_de_la_commune": "ST GENEST", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3455201567, + 6.51142918366 + ], + "libelle_d_acheminement": "ST GENEST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.51142918366, + 48.3455201567 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8377ad546f25c33043256e61b8f275556eadceb2", + "fields": { + "code_commune_insee": "88417", + "nom_de_la_commune": "ST GORGON", + "code_postal": "88700", + "coordonnees_gps": [ + 48.3206900505, + 6.65349211672 + ], + "libelle_d_acheminement": "ST GORGON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65349211672, + 48.3206900505 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "239ae3712cef30b0deeab760e2ed20ec50d16e68", + "fields": { + "code_commune_insee": "88418", + "nom_de_la_commune": "STE HELENE", + "code_postal": "88700", + "coordonnees_gps": [ + 48.2911473664, + 6.65955609502 + ], + "libelle_d_acheminement": "STE HELENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.65955609502, + 48.2911473664 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3460ac06106d2488ffa870c7195bd6032ad6275", + "fields": { + "code_commune_insee": "88421", + "nom_de_la_commune": "ST JULIEN", + "code_postal": "88410", + "coordonnees_gps": [ + 48.021137571, + 5.90624995878 + ], + "libelle_d_acheminement": "ST JULIEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.90624995878, + 48.021137571 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ec5d331d66adad2ce58789265cd528694b3a03e", + "fields": { + "code_commune_insee": "88428", + "nom_de_la_commune": "ST MICHEL SUR MEURTHE", + "code_postal": "88470", + "coordonnees_gps": [ + 48.3116592875, + 6.87608459111 + ], + "libelle_d_acheminement": "ST MICHEL SUR MEURTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.87608459111, + 48.3116592875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1a5b0390bcd66f41791439cde9d2a329109762e6", + "fields": { + "code_commune_insee": "88433", + "nom_de_la_commune": "ST PRANCHER", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3455799739, + 5.94859855562 + ], + "libelle_d_acheminement": "ST PRANCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94859855562, + 48.3455799739 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ba3e4323acf9b136b88b63179f8ba1b7c78babb5", + "fields": { + "code_commune_insee": "88437", + "nom_de_la_commune": "ST VALLIER", + "code_postal": "88270", + "coordonnees_gps": [ + 48.2777545951, + 6.3206668903 + ], + "libelle_d_acheminement": "ST VALLIER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3206668903, + 48.2777545951 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3d049cf37975aff85d3bb942fa6126b2a41230fe", + "fields": { + "code_commune_insee": "88441", + "nom_de_la_commune": "SANS VALLOIS", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1617644637, + 6.1030177625 + ], + "libelle_d_acheminement": "SANS VALLOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1030177625, + 48.1617644637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5adb56c5566ea40621aa5b92a2e1630825246de5", + "fields": { + "code_commune_insee": "88445", + "nom_de_la_commune": "SAULCY SUR MEURTHE", + "code_postal": "88580", + "coordonnees_gps": [ + 48.2424754243, + 6.94912538655 + ], + "libelle_d_acheminement": "SAULCY SUR MEURTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94912538655, + 48.2424754243 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "238adfa1063d87037829949d7dee97f35f3a6c58", + "fields": { + "code_commune_insee": "88450", + "nom_de_la_commune": "SENAIDE", + "code_postal": "88320", + "coordonnees_gps": [ + 47.9694031418, + 5.80408230955 + ], + "libelle_d_acheminement": "SENAIDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.80408230955, + 47.9694031418 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "064172a1f81c0c53834974e53c1ca9eacb7f7a77", + "fields": { + "code_commune_insee": "88451", + "nom_de_la_commune": "SENONES", + "code_postal": "88210", + "coordonnees_gps": [ + 48.4067567692, + 6.9636413109 + ], + "libelle_d_acheminement": "SENONES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9636413109, + 48.4067567692 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2d7d1ff693bf1f510a0749083492883e843d5298", + "fields": { + "code_commune_insee": "88453", + "nom_de_la_commune": "SERAUMONT", + "code_postal": "88630", + "coordonnees_gps": [ + 48.4306580268, + 5.60835079451 + ], + "libelle_d_acheminement": "SERAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60835079451, + 48.4306580268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80e558c2311ea12d370b22c3fd631cb08963462b", + "fields": { + "code_commune_insee": "88455", + "nom_de_la_commune": "SERECOURT", + "code_postal": "88320", + "coordonnees_gps": [ + 48.0500055011, + 5.84436217974 + ], + "libelle_d_acheminement": "SERECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.84436217974, + 48.0500055011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4436f1485b481289311a9c9be1c92b8049045480", + "fields": { + "code_commune_insee": "88456", + "nom_de_la_commune": "SEROCOURT", + "code_postal": "88320", + "coordonnees_gps": [ + 48.0981009125, + 5.89081859551 + ], + "libelle_d_acheminement": "SEROCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89081859551, + 48.0981009125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "452cae42410367791ebb1793b3db3793ee6e2f7f", + "fields": { + "code_commune_insee": "88474", + "nom_de_la_commune": "TILLEUX", + "code_postal": "88300", + "coordonnees_gps": [ + 48.300687852, + 5.73148018927 + ], + "libelle_d_acheminement": "TILLEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.73148018927, + 48.300687852 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "93cb30b418cc5a86bfc9d75f6e78cade5c96e568", + "fields": { + "code_commune_insee": "88475", + "nom_de_la_commune": "TOLLAINCOURT", + "code_postal": "88320", + "coordonnees_gps": [ + 48.0944938013, + 5.72324899946 + ], + "libelle_d_acheminement": "TOLLAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.72324899946, + 48.0944938013 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2a1d5b0c3e4d3f4004c9846bae7b3d8c1bd84d1", + "fields": { + "code_commune_insee": "88479", + "nom_de_la_commune": "TREMONZEY", + "code_postal": "88240", + "coordonnees_gps": [ + 47.9620006058, + 6.2472825127 + ], + "libelle_d_acheminement": "TREMONZEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2472825127, + 47.9620006058 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef4c75053c3e589025817bb761653695c7d18fcc", + "fields": { + "code_commune_insee": "88486", + "nom_de_la_commune": "VAGNEY", + "code_postal": "88120", + "coordonnees_gps": [ + 48.0180970849, + 6.72440624988 + ], + "libelle_d_acheminement": "VAGNEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.72440624988, + 48.0180970849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9032cc3371ef296197dd9bf518a85bcfab38aeaa", + "fields": { + "code_commune_insee": "88499", + "nom_de_la_commune": "VELOTTE ET TATIGNECOURT", + "code_postal": "88270", + "coordonnees_gps": [ + 48.259556916, + 6.17166162711 + ], + "libelle_d_acheminement": "VELOTTE ET TATIGNECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17166162711, + 48.259556916 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "da24cd2565157e45b6acfcb26f4a2361aef348c2", + "fields": { + "code_commune_insee": "88507", + "nom_de_la_commune": "VILLERS", + "code_postal": "88500", + "coordonnees_gps": [ + 48.3051053835, + 6.1735092442 + ], + "libelle_d_acheminement": "VILLERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1735092442, + 48.3051053835 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c2948e242a7ceb2c2fff78f0d32ccaabae44602b", + "fields": { + "code_commune_insee": "88512", + "nom_de_la_commune": "VIMENIL", + "code_postal": "88600", + "coordonnees_gps": [ + 48.2167970893, + 6.63877220998 + ], + "libelle_d_acheminement": "VIMENIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63877220998, + 48.2167970893 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27307f1b08eb79414f2fac28c005a07b8a9512a7", + "fields": { + "code_commune_insee": "88517", + "nom_de_la_commune": "VIVIERS LE GRAS", + "code_postal": "88260", + "coordonnees_gps": [ + 48.1207853858, + 5.93801422421 + ], + "libelle_d_acheminement": "VIVIERS LE GRAS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.93801422421, + 48.1207853858 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59c72b3372286c62862deb34e9d7ae4dc0c99280", + "fields": { + "code_commune_insee": "88525", + "nom_de_la_commune": "VROVILLE", + "code_postal": "88500", + "coordonnees_gps": [ + 48.2872761929, + 6.17216170005 + ], + "libelle_d_acheminement": "VROVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.17216170005, + 48.2872761929 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a8ba38316e0a5af9c1885bdb121776ca13cf26c", + "fields": { + "code_commune_insee": "89002", + "nom_de_la_commune": "AIGREMONT", + "code_postal": "89800", + "coordonnees_gps": [ + 47.7181013588, + 3.89038343982 + ], + "libelle_d_acheminement": "AIGREMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89038343982, + 47.7181013588 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf22fd2c776a8de617a7d01b08996767a27a002f", + "fields": { + "ligne_5": "CUSY", + "code_commune_insee": "89005", + "libelle_d_acheminement": "ANCY LE FRANC", + "code_postal": "89160", + "nom_de_la_commune": "ANCY LE FRANC", + "coordonnees_gps": [ + 47.7772837074, + 4.16461279806 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16461279806, + 47.7772837074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "13b3373503685819f870e75f42e1eee3fbbd8df1", + "fields": { + "code_commune_insee": "89013", + "nom_de_la_commune": "APPOIGNY", + "code_postal": "89380", + "coordonnees_gps": [ + 47.8663621082, + 3.51999342457 + ], + "libelle_d_acheminement": "APPOIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51999342457, + 47.8663621082 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8548d4790b070ecc597ea293614ffe9ca52e361c", + "fields": { + "code_commune_insee": "89018", + "nom_de_la_commune": "ARMEAU", + "code_postal": "89500", + "coordonnees_gps": [ + 48.0478451698, + 3.3370553938 + ], + "libelle_d_acheminement": "ARMEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3370553938, + 48.0478451698 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "590da58e8415d95c2a9ae0932509e584faa2429a", + "fields": { + "code_commune_insee": "89020", + "nom_de_la_commune": "ASNIERES SOUS BOIS", + "code_postal": "89660", + "coordonnees_gps": [ + 47.4789567606, + 3.63907394341 + ], + "libelle_d_acheminement": "ASNIERES SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63907394341, + 47.4789567606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26ff761b870fdbf41fea5fd55e8aec0e0c588fe4", + "fields": { + "code_commune_insee": "89023", + "nom_de_la_commune": "AUGY", + "code_postal": "89290", + "coordonnees_gps": [ + 47.7699223048, + 3.62188517818 + ], + "libelle_d_acheminement": "AUGY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62188517818, + 47.7699223048 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dd9f16033399a349e591239e7506566ea49cddda", + "fields": { + "code_commune_insee": "89028", + "nom_de_la_commune": "BAON", + "code_postal": "89430", + "coordonnees_gps": [ + 47.8620600541, + 4.13805899228 + ], + "libelle_d_acheminement": "BAON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.13805899228, + 47.8620600541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a33fd9b256f9429f0b21a435835555eab1715ad1", + "fields": { + "code_commune_insee": "89031", + "nom_de_la_commune": "BEAUMONT", + "code_postal": "89250", + "coordonnees_gps": [ + 47.9149271297, + 3.55727569805 + ], + "libelle_d_acheminement": "BEAUMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55727569805, + 47.9149271297 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "853cfbd6507d7dad91ecd0b3c3e2b902e5f4b303", + "fields": { + "code_commune_insee": "89038", + "nom_de_la_commune": "BERNOUIL", + "code_postal": "89360", + "coordonnees_gps": [ + 47.9024258939, + 3.89713447047 + ], + "libelle_d_acheminement": "BERNOUIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.89713447047, + 47.9024258939 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9a60128e6046e8ae7f4f5431cc9a19e596d7c15e", + "fields": { + "code_commune_insee": "89040", + "nom_de_la_commune": "BESSY SUR CURE", + "code_postal": "89270", + "coordonnees_gps": [ + 47.6194313018, + 3.72664965671 + ], + "libelle_d_acheminement": "BESSY SUR CURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72664965671, + 47.6194313018 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39655b51fdc664273406ba07d4a311edaa04bb5c", + "fields": { + "code_commune_insee": "89043", + "nom_de_la_commune": "BLACY", + "code_postal": "89440", + "coordonnees_gps": [ + 47.5817239595, + 4.0408057451 + ], + "libelle_d_acheminement": "BLACY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0408057451, + 47.5817239595 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "253f417eb87612d7252cf9d17d3fc7b5d6096395", + "fields": { + "code_commune_insee": "89056", + "nom_de_la_commune": "BRION", + "code_postal": "89400", + "coordonnees_gps": [ + 47.9995517691, + 3.47900609014 + ], + "libelle_d_acheminement": "BRION" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.47900609014, + 47.9995517691 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1056b0156dec3314dcca310d9e8bcf1849a63783", + "fields": { + "ligne_5": "FYE", + "code_commune_insee": "89068", + "libelle_d_acheminement": "CHABLIS", + "code_postal": "89800", + "nom_de_la_commune": "CHABLIS", + "coordonnees_gps": [ + 47.8075995199, + 3.79091424228 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79091424228, + 47.8075995199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "30fbb017092e535687e860b384087606e6ba2774", + "fields": { + "ligne_5": "MILLY", + "code_commune_insee": "89068", + "libelle_d_acheminement": "CHABLIS", + "code_postal": "89800", + "nom_de_la_commune": "CHABLIS", + "coordonnees_gps": [ + 47.8075995199, + 3.79091424228 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79091424228, + 47.8075995199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9e6a53420892bf84e6770b316f19291201bbaead", + "fields": { + "code_commune_insee": "89073", + "nom_de_la_commune": "CHAMPIGNELLES", + "code_postal": "89350", + "coordonnees_gps": [ + 47.7800283506, + 3.07775894136 + ], + "libelle_d_acheminement": "CHAMPIGNELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.07775894136, + 47.7800283506 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ce72ba4efbb0e78a9b3b18b0b1e739f24331dfbf", + "fields": { + "code_commune_insee": "89075", + "nom_de_la_commune": "CHAMPLAY", + "code_postal": "89300", + "coordonnees_gps": [ + 47.9466983822, + 3.42023668586 + ], + "libelle_d_acheminement": "CHAMPLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42023668586, + 47.9466983822 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dcefd8cea4d516cbcedba61a34e82d12f17c596c", + "fields": { + "code_commune_insee": "89076", + "nom_de_la_commune": "CHAMPLOST", + "code_postal": "89210", + "coordonnees_gps": [ + 48.04194277, + 3.65112821116 + ], + "libelle_d_acheminement": "CHAMPLOST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65112821116, + 48.04194277 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b749392e0df8166c8d5f6fd51fa41f3cb17d045", + "fields": { + "ligne_5": "FONTENOUILLES", + "code_commune_insee": "89086", + "libelle_d_acheminement": "CHARNY OREE DE PUISAYE", + "code_postal": "89120", + "nom_de_la_commune": "CHARNY OREE DE PUISAYE", + "coordonnees_gps": [ + 47.8862119429, + 3.09764224265 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09764224265, + 47.8862119429 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db899a97cca7c83ad10e8d0a80870091829de56c", + "fields": { + "code_commune_insee": "89087", + "nom_de_la_commune": "CHASSIGNELLES", + "code_postal": "89160", + "coordonnees_gps": [ + 47.7671856039, + 4.19625614819 + ], + "libelle_d_acheminement": "CHASSIGNELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19625614819, + 47.7671856039 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57f1a6a82098248d1a19ba4d5c502d52d0fe95af", + "fields": { + "code_commune_insee": "89088", + "nom_de_la_commune": "CHASSY", + "code_postal": "89110", + "coordonnees_gps": [ + 47.8484306457, + 3.33067916238 + ], + "libelle_d_acheminement": "CHASSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33067916238, + 47.8484306457 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "02a95306848e0184a77f43d369e52f7bcf0b0408", + "fields": { + "code_commune_insee": "89089", + "nom_de_la_commune": "CHASTELLUX SUR CURE", + "code_postal": "89630", + "coordonnees_gps": [ + 47.3853669414, + 3.88478712981 + ], + "libelle_d_acheminement": "CHASTELLUX SUR CURE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88478712981, + 47.3853669414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7a81e48279936bd78c638fddb00240837295e8ad", + "fields": { + "code_commune_insee": "89104", + "nom_de_la_commune": "CHICHEE", + "code_postal": "89800", + "coordonnees_gps": [ + 47.7843995199, + 3.83340325953 + ], + "libelle_d_acheminement": "CHICHEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.83340325953, + 47.7843995199 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f302c93b39e018534bf4188dff3269ec4b1d630", + "fields": { + "code_commune_insee": "89108", + "nom_de_la_commune": "CHITRY", + "code_postal": "89530", + "coordonnees_gps": [ + 47.7680417771, + 3.70036125317 + ], + "libelle_d_acheminement": "CHITRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70036125317, + 47.7680417771 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "58e50384a5364fc5b00119b6874467aa30bb720c", + "fields": { + "code_commune_insee": "89111", + "nom_de_la_commune": "LES CLERIMOIS", + "code_postal": "89190", + "coordonnees_gps": [ + 48.2289249998, + 3.45767593908 + ], + "libelle_d_acheminement": "LES CLERIMOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45767593908, + 48.2289249998 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "196881f2f1365c06103c62b0e434cacbee5a6e03", + "fields": { + "code_commune_insee": "89112", + "nom_de_la_commune": "COLLAN", + "code_postal": "89700", + "coordonnees_gps": [ + 47.840673115, + 3.87103885933 + ], + "libelle_d_acheminement": "COLLAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87103885933, + 47.840673115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7c38e1c6e622292c23d4279562870acc19801a0c", + "fields": { + "code_commune_insee": "89118", + "nom_de_la_commune": "COULANGES LA VINEUSE", + "code_postal": "89580", + "coordonnees_gps": [ + 47.6988804074, + 3.58612171567 + ], + "libelle_d_acheminement": "COULANGES LA VINEUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58612171567, + 47.6988804074 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "533de3462a6f5691f82a3bb0bbef019b01eabb07", + "fields": { + "code_commune_insee": "89125", + "nom_de_la_commune": "COURSON LES CARRIERES", + "code_postal": "89560", + "coordonnees_gps": [ + 47.6001252342, + 3.50088380074 + ], + "libelle_d_acheminement": "COURSON LES CARRIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.50088380074, + 47.6001252342 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "88c2b5fd7a764b6a06bb7ceff5a5f64abc44dae4", + "fields": { + "ligne_5": "CRAVANT", + "code_commune_insee": "89130", + "libelle_d_acheminement": "DEUX RIVIERES", + "code_postal": "89460", + "nom_de_la_commune": "DEUX RIVIERES", + "coordonnees_gps": [ + 47.6934813801, + 3.71458684617 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71458684617, + 47.6934813801 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d098db0d8567e6f22ff5f499a223c74922758ee6", + "fields": { + "code_commune_insee": "89133", + "nom_de_la_commune": "CUDOT", + "code_postal": "89116", + "coordonnees_gps": [ + 47.9826568926, + 3.17485666428 + ], + "libelle_d_acheminement": "CUDOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17485666428, + 47.9826568926 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7f7fd91e16bf5ada1cea9a78e3b83f57d4dbc305", + "fields": { + "code_commune_insee": "89142", + "nom_de_la_commune": "DIXMONT", + "code_postal": "89500", + "coordonnees_gps": [ + 48.0776099615, + 3.42365889592 + ], + "libelle_d_acheminement": "DIXMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.42365889592, + 48.0776099615 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0f3f4f6033c0abd9be739ac451b287084dfa1fd4", + "fields": { + "code_commune_insee": "89150", + "nom_de_la_commune": "EGLENY", + "code_postal": "89240", + "coordonnees_gps": [ + 47.8092239346, + 3.37455573912 + ], + "libelle_d_acheminement": "EGLENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37455573912, + 47.8092239346 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "22cc43c6d4607846c5284bd0ada58ab68707bb4c", + "fields": { + "code_commune_insee": "89151", + "nom_de_la_commune": "EGRISELLES LE BOCAGE", + "code_postal": "89500", + "coordonnees_gps": [ + 48.1124449966, + 3.17977417748 + ], + "libelle_d_acheminement": "EGRISELLES LE BOCAGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17977417748, + 48.1124449966 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e4513f1dd3d0414737f20e68f670a98478b8d97d", + "fields": { + "code_commune_insee": "89159", + "nom_de_la_commune": "ETAULE", + "code_postal": "89200", + "coordonnees_gps": [ + 47.5287117259, + 3.91412540974 + ], + "libelle_d_acheminement": "ETAULE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91412540974, + 47.5287117259 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "473007e6b44b5d68af0a1aa8a3c5383b82c0c6c8", + "fields": { + "code_commune_insee": "89161", + "nom_de_la_commune": "ETIVEY", + "code_postal": "89310", + "coordonnees_gps": [ + 47.6726045815, + 4.14690426955 + ], + "libelle_d_acheminement": "ETIVEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14690426955, + 47.6726045815 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0e7a3d20051ae0861af4b5a1f18597c3ca987c2b", + "fields": { + "code_commune_insee": "89179", + "nom_de_la_commune": "FONTENOY", + "code_postal": "89520", + "coordonnees_gps": [ + 47.6527290115, + 3.29197116291 + ], + "libelle_d_acheminement": "FONTENOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29197116291, + 47.6527290115 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dfe10680dbca5a3516da9ace2d42da8e9413086", + "fields": { + "code_commune_insee": "89181", + "nom_de_la_commune": "FOURNAUDIN", + "code_postal": "89320", + "coordonnees_gps": [ + 48.1486089647, + 3.64528232884 + ], + "libelle_d_acheminement": "FOURNAUDIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64528232884, + 48.1486089647 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84479a1592c6f92c6fa5d429c3b511745cf0ac3f", + "fields": { + "code_commune_insee": "89182", + "nom_de_la_commune": "FOURONNES", + "code_postal": "89560", + "coordonnees_gps": [ + 47.6074365854, + 3.55751684148 + ], + "libelle_d_acheminement": "FOURONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.55751684148, + 47.6074365854 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "232f4ea35c0d8c66e7ee75dfddc0848fbd28756b", + "fields": { + "code_commune_insee": "89183", + "nom_de_la_commune": "FRESNES", + "code_postal": "89310", + "coordonnees_gps": [ + 47.7625609673, + 3.99351919937 + ], + "libelle_d_acheminement": "FRESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99351919937, + 47.7625609673 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08c003efe10957d5aab156d8b84d40f0ab2ebf7e", + "fields": { + "code_commune_insee": "89204", + "nom_de_la_commune": "L ISLE SUR SEREIN", + "code_postal": "89440", + "coordonnees_gps": [ + 47.5876821889, + 4.01838047728 + ], + "libelle_d_acheminement": "L ISLE SUR SEREIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01838047728, + 47.5876821889 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0a2d2245cbc0de71aec9b162cc4b71b37c4af30f", + "fields": { + "code_commune_insee": "89207", + "nom_de_la_commune": "JOUANCY", + "code_postal": "89310", + "coordonnees_gps": [ + 47.6732459964, + 4.036930891 + ], + "libelle_d_acheminement": "JOUANCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.036930891, + 47.6732459964 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29b5c6294eb9fb4f0533c3a3ac316c55f01869f6", + "fields": { + "code_commune_insee": "89209", + "nom_de_la_commune": "JOUY", + "code_postal": "89150", + "coordonnees_gps": [ + 48.1704821186, + 2.97094498359 + ], + "libelle_d_acheminement": "JOUY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.97094498359, + 48.1704821186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "adc74734062d3a54cdb4e431f89380649f58c905", + "fields": { + "code_commune_insee": "89218", + "nom_de_la_commune": "LAROCHE ST CYDROINE", + "code_postal": "89400", + "coordonnees_gps": [ + 47.973029644, + 3.46898272005 + ], + "libelle_d_acheminement": "LAROCHE ST CYDROINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46898272005, + 47.973029644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6369d795912ee98f5c69587efcb1dc66b37904e5", + "fields": { + "code_commune_insee": "89232", + "nom_de_la_commune": "LUCY LE BOIS", + "code_postal": "89200", + "coordonnees_gps": [ + 47.5655695186, + 3.88870610331 + ], + "libelle_d_acheminement": "LUCY LE BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88870610331, + 47.5655695186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48c6bf60c1db3dcc2f661d3c088afaf4c24a029d", + "fields": { + "code_commune_insee": "89235", + "nom_de_la_commune": "MAGNY", + "code_postal": "89200", + "coordonnees_gps": [ + 47.4703684401, + 3.97088291518 + ], + "libelle_d_acheminement": "MAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.97088291518, + 47.4703684401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ca5ffef3ef5403b839cc1de71de347d0ca6f0169", + "fields": { + "code_commune_insee": "89242", + "nom_de_la_commune": "MALIGNY", + "code_postal": "89800", + "coordonnees_gps": [ + 47.8664420498, + 3.79721123196 + ], + "libelle_d_acheminement": "MALIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.79721123196, + 47.8664420498 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "74978bab6f5f658ae7834e1d90b78533d82285f2", + "fields": { + "code_commune_insee": "89247", + "nom_de_la_commune": "MELISEY", + "code_postal": "89430", + "coordonnees_gps": [ + 47.9202574303, + 4.07551450684 + ], + "libelle_d_acheminement": "MELISEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07551450684, + 47.9202574303 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c0306ec4e1b0e0c54c9e2afbace44293f532ad73", + "fields": { + "code_commune_insee": "89259", + "nom_de_la_commune": "MOLAY", + "code_postal": "89310", + "coordonnees_gps": [ + 47.7385584128, + 3.93845047834 + ], + "libelle_d_acheminement": "MOLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93845047834, + 47.7385584128 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "785d08ee740c3ac24be9be3b99300f1b48c3a921", + "fields": { + "ligne_5": "SOUGERES SUR SINOTTE", + "code_commune_insee": "89263", + "libelle_d_acheminement": "MONETEAU", + "code_postal": "89470", + "nom_de_la_commune": "MONETEAU", + "coordonnees_gps": [ + 47.8490198002, + 3.5878018416 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5878018416, + 47.8490198002 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "23210539e89c418649f2879ad50664a7c5ebabd6", + "fields": { + "code_commune_insee": "89268", + "nom_de_la_commune": "MONT ST SULPICE", + "code_postal": "89250", + "coordonnees_gps": [ + 47.9525719548, + 3.63056586616 + ], + "libelle_d_acheminement": "MONT ST SULPICE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.63056586616, + 47.9525719548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5e00f2ad7dd4b36a1adad473de6acb0029c3bce", + "fields": { + "code_commune_insee": "89270", + "nom_de_la_commune": "MOUFFY", + "code_postal": "89560", + "coordonnees_gps": [ + 47.6488434572, + 3.51431901899 + ], + "libelle_d_acheminement": "MOUFFY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.51431901899, + 47.6488434572 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dc199456b8c14c46ce691a1bc8008909d1f7ded9", + "fields": { + "code_commune_insee": "89272", + "nom_de_la_commune": "MOULINS SUR OUANNE", + "code_postal": "89130", + "coordonnees_gps": [ + 47.7036850443, + 3.34308179335 + ], + "libelle_d_acheminement": "MOULINS SUR OUANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34308179335, + 47.7036850443 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "94be6f48da12e7665dfd0b804a8906b372ba8bf4", + "fields": { + "code_commune_insee": "89273", + "nom_de_la_commune": "MOUTIERS EN PUISAYE", + "code_postal": "89520", + "coordonnees_gps": [ + 47.608895157, + 3.16491505392 + ], + "libelle_d_acheminement": "MOUTIERS EN PUISAYE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.16491505392, + 47.608895157 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3590e5e1db4125924eb2053ff6eb1b79e91632e1", + "fields": { + "code_commune_insee": "89277", + "nom_de_la_commune": "NITRY", + "code_postal": "89310", + "coordonnees_gps": [ + 47.6765715644, + 3.87691630334 + ], + "libelle_d_acheminement": "NITRY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87691630334, + 47.6765715644 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "052b468bad983f3428414ec3872e8316791cb16d", + "fields": { + "code_commune_insee": "89278", + "nom_de_la_commune": "NOE", + "code_postal": "89320", + "coordonnees_gps": [ + 48.1523825868, + 3.39690293506 + ], + "libelle_d_acheminement": "NOE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39690293506, + 48.1523825868 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6cbb0eedf6409a165f80b908e02f3b764fe71f23", + "fields": { + "code_commune_insee": "89279", + "nom_de_la_commune": "NOYERS", + "code_postal": "89310", + "coordonnees_gps": [ + 47.6952215995, + 3.98085741528 + ], + "libelle_d_acheminement": "NOYERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98085741528, + 47.6952215995 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e5984414117b0b9cc8f6c364e1a8c83646ebdfde", + "fields": { + "ligne_5": "CHASTENAY", + "code_commune_insee": "89283", + "libelle_d_acheminement": "OUANNE", + "code_postal": "89560", + "nom_de_la_commune": "OUANNE", + "coordonnees_gps": [ + 47.6575722012, + 3.4192034023 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4192034023, + 47.6575722012 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e28f7b39c6e9dc964ced07980a6df9177f5e5ed9", + "fields": { + "code_commune_insee": "89285", + "nom_de_la_commune": "PAILLY", + "code_postal": "89140", + "coordonnees_gps": [ + 48.3417730606, + 3.33362251435 + ], + "libelle_d_acheminement": "PAILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33362251435, + 48.3417730606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "49cc7100f98c25b4c8505fbf6ef6e5ba1fdc5832", + "fields": { + "code_commune_insee": "89288", + "nom_de_la_commune": "PAROY EN OTHE", + "code_postal": "89210", + "coordonnees_gps": [ + 48.0304051607, + 3.57534494998 + ], + "libelle_d_acheminement": "PAROY EN OTHE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.57534494998, + 48.0304051607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e2b9f148e0ca95f9b844c7a94eaed9edb62274c", + "fields": { + "code_commune_insee": "89302", + "nom_de_la_commune": "PLESSIS ST JEAN", + "code_postal": "89140", + "coordonnees_gps": [ + 48.3429566104, + 3.30281910968 + ], + "libelle_d_acheminement": "PLESSIS ST JEAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30281910968, + 48.3429566104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6257874df62e1bf8c9225a2edf1dc6fa72d1edd", + "fields": { + "code_commune_insee": "89304", + "nom_de_la_commune": "POILLY SUR THOLON", + "code_postal": "89110", + "coordonnees_gps": [ + 47.8494315541, + 3.39947947458 + ], + "libelle_d_acheminement": "POILLY SUR THOLON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39947947458, + 47.8494315541 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5879b8a63cb4f51af95e82f7b75fba4715fa6ff7", + "fields": { + "code_commune_insee": "89306", + "nom_de_la_commune": "PONTAUBERT", + "code_postal": "89200", + "coordonnees_gps": [ + 47.4929203838, + 3.87144768521 + ], + "libelle_d_acheminement": "PONTAUBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87144768521, + 47.4929203838 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "078b4798ccba3ecfa52969b74d21122f5874deea", + "fields": { + "code_commune_insee": "89310", + "nom_de_la_commune": "LA POSTOLLE", + "code_postal": "89260", + "coordonnees_gps": [ + 48.2837034338, + 3.45398701323 + ], + "libelle_d_acheminement": "LA POSTOLLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.45398701323, + 48.2837034338 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a31319c2332681297e10e913e1466364d058a3df", + "fields": { + "code_commune_insee": "89312", + "nom_de_la_commune": "PRECY LE SEC", + "code_postal": "89440", + "coordonnees_gps": [ + 47.5932229481, + 3.82709155548 + ], + "libelle_d_acheminement": "PRECY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.82709155548, + 47.5932229481 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50256fdb0a3e8187b0a660c546f22bcdbec90d8d", + "fields": { + "code_commune_insee": "89320", + "nom_de_la_commune": "QUINCEROT", + "code_postal": "89740", + "coordonnees_gps": [ + 47.9410004718, + 4.16662692839 + ], + "libelle_d_acheminement": "QUINCEROT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.16662692839, + 47.9410004718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "70300d2b01de6df5ce4afe9f97cd3b7dfc2dd74e", + "fields": { + "code_commune_insee": "89328", + "nom_de_la_commune": "ROUVRAY", + "code_postal": "89230", + "coordonnees_gps": [ + 47.898249879, + 3.66932280709 + ], + "libelle_d_acheminement": "ROUVRAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.66932280709, + 47.898249879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03bec6d702f0d2d7cff5c470ba8ec4d4fb17688d", + "fields": { + "ligne_5": "ST AUBIN CHATEAU NEUF", + "code_commune_insee": "89334", + "libelle_d_acheminement": "LE VAL D OCRE", + "code_postal": "89110", + "nom_de_la_commune": "LE VAL D OCRE", + "coordonnees_gps": [ + 47.8214473263, + 3.29048335743 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.29048335743, + 47.8214473263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "59d165afa236914264f5bba96a80573e4e66fdcd", + "fields": { + "code_commune_insee": "89335", + "nom_de_la_commune": "ST AUBIN SUR YONNE", + "code_postal": "89300", + "coordonnees_gps": [ + 47.999800087, + 3.36292416185 + ], + "libelle_d_acheminement": "ST AUBIN SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36292416185, + 47.999800087 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf6576a4f1ae589005c8c7bd31048ce32986ac19", + "fields": { + "code_commune_insee": "89337", + "nom_de_la_commune": "ST BRIS LE VINEUX", + "code_postal": "89530", + "coordonnees_gps": [ + 47.7397337759, + 3.65690105499 + ], + "libelle_d_acheminement": "ST BRIS LE VINEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.65690105499, + 47.7397337759 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3abb3ddcc0cb177a3dae0925977a208cb4735188", + "fields": { + "ligne_5": "AVROLLES", + "code_commune_insee": "89345", + "libelle_d_acheminement": "ST FLORENTIN", + "code_postal": "89600", + "nom_de_la_commune": "ST FLORENTIN", + "coordonnees_gps": [ + 47.996991653, + 3.70472818773 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70472818773, + 47.996991653 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "95bb6e7a929cceae85da74f74200b8d0e0979bda", + "fields": { + "code_commune_insee": "89349", + "nom_de_la_commune": "ST LEGER VAUBAN", + "code_postal": "89630", + "coordonnees_gps": [ + 47.3729259001, + 4.06034341517 + ], + "libelle_d_acheminement": "ST LEGER VAUBAN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06034341517, + 47.3729259001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3791a5739f9f72d2014a97ee3a9c2e2ca0edea4f", + "fields": { + "code_commune_insee": "89350", + "nom_de_la_commune": "ST LOUP D ORDON", + "code_postal": "89330", + "coordonnees_gps": [ + 48.0113645758, + 3.14208002154 + ], + "libelle_d_acheminement": "ST LOUP D ORDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14208002154, + 48.0113645758 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3c468f7a3e1862938d281990605e07641c76a69", + "fields": { + "code_commune_insee": "89352", + "nom_de_la_commune": "ST MARTIN DES CHAMPS", + "code_postal": "89170", + "coordonnees_gps": [ + 47.6588823611, + 3.02834068016 + ], + "libelle_d_acheminement": "ST MARTIN DES CHAMPS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.02834068016, + 47.6588823611 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b174e5cd483829e0cfb00e574bee9a5c746215c9", + "fields": { + "code_commune_insee": "89353", + "nom_de_la_commune": "ST MARTIN D ORDON", + "code_postal": "89330", + "coordonnees_gps": [ + 48.0258467044, + 3.17245991649 + ], + "libelle_d_acheminement": "ST MARTIN D ORDON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17245991649, + 48.0258467044 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "66fc6ee8a88ad75cafb1b98e86ef3367c8ee7550", + "fields": { + "code_commune_insee": "89354", + "nom_de_la_commune": "ST MARTIN DU TERTRE", + "code_postal": "89100", + "coordonnees_gps": [ + 48.2054577095, + 3.24082644551 + ], + "libelle_d_acheminement": "ST MARTIN DU TERTRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24082644551, + 48.2054577095 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac1c0b141eafffcd59a9223b1ff4fe1903743b96", + "fields": { + "code_commune_insee": "89379", + "nom_de_la_commune": "SAVIGNY EN TERRE PLAINE", + "code_postal": "89420", + "coordonnees_gps": [ + 47.4935874843, + 4.08358510886 + ], + "libelle_d_acheminement": "SAVIGNY EN TERRE PLAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08358510886, + 47.4935874843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2caecab0f5c5d550e84883b159526eca45b8bc08", + "fields": { + "code_commune_insee": "89383", + "nom_de_la_commune": "SEMENTRON", + "code_postal": "89560", + "coordonnees_gps": [ + 47.6312784173, + 3.36183428197 + ], + "libelle_d_acheminement": "SEMENTRON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36183428197, + 47.6312784173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b6a14809c034a4de121c21c5e895610ac64cc4d2", + "fields": { + "ligne_5": "SEPEAUX", + "code_commune_insee": "89388", + "libelle_d_acheminement": "SEPEAUX ST ROMAIN", + "code_postal": "89116", + "nom_de_la_commune": "SEPEAUX ST ROMAIN", + "coordonnees_gps": [ + 47.943114412, + 3.23185765848 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23185765848, + 47.943114412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25497f1cd3f0cc9ead64201edb17c6914bcaf55f", + "fields": { + "ligne_5": "ST ROMAIN LE PREUX", + "code_commune_insee": "89388", + "libelle_d_acheminement": "SEPEAUX ST ROMAIN", + "code_postal": "89116", + "nom_de_la_commune": "SEPEAUX ST ROMAIN", + "coordonnees_gps": [ + 47.943114412, + 3.23185765848 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23185765848, + 47.943114412 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "47f45dfa2bbc96f18866f71cd0130c03062eebd3", + "fields": { + "code_commune_insee": "89392", + "nom_de_la_commune": "SERMIZELLES", + "code_postal": "89200", + "coordonnees_gps": [ + 47.5406742954, + 3.80001863719 + ], + "libelle_d_acheminement": "SERMIZELLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80001863719, + 47.5406742954 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "342fd5fc54fc8dad02da446c483492536cd14c8d", + "fields": { + "ligne_5": "THEIL SUR VANNE", + "code_commune_insee": "89411", + "libelle_d_acheminement": "LES VALLEES DE LA VANNE", + "code_postal": "89320", + "nom_de_la_commune": "LES VALLEES DE LA VANNE", + "coordonnees_gps": [ + 48.163480288, + 3.43929036088 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43929036088, + 48.163480288 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2096ea2aa0cb25bc248e7cc0a3af1240acb002f1", + "fields": { + "ligne_5": "ST MARTIN SUR OREUSE", + "code_commune_insee": "89414", + "libelle_d_acheminement": "THORIGNY SUR OREUSE", + "code_postal": "89260", + "nom_de_la_commune": "THORIGNY SUR OREUSE", + "coordonnees_gps": [ + 48.2981521482, + 3.3801934011 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3801934011, + 48.2981521482 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38335083deaaaae6b2ef7215c18a36dfe22ccab7", + "fields": { + "ligne_5": "STE COLOMBE SUR LOING", + "code_commune_insee": "89420", + "libelle_d_acheminement": "TREIGNY PERREUSE STE COLOMBE", + "code_postal": "89520", + "nom_de_la_commune": "TREIGNY PERREUSE STE COLOMBE", + "coordonnees_gps": [ + 47.5555889247, + 3.17487086988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17487086988, + 47.5555889247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9c34ec2c00bc7f87fe3a7d0e12b13c94bdcc15b9", + "fields": { + "ligne_5": "TREIGNY", + "code_commune_insee": "89420", + "libelle_d_acheminement": "TREIGNY PERREUSE STE COLOMBE", + "code_postal": "89520", + "nom_de_la_commune": "TREIGNY PERREUSE STE COLOMBE", + "coordonnees_gps": [ + 47.5555889247, + 3.17487086988 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17487086988, + 47.5555889247 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "51cf54c31fe35f909a2e9e1f9d2742a814da620d", + "fields": { + "code_commune_insee": "89422", + "nom_de_la_commune": "TRICHEY", + "code_postal": "89430", + "coordonnees_gps": [ + 47.9247277892, + 4.14013153912 + ], + "libelle_d_acheminement": "TRICHEY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14013153912, + 47.9247277892 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b0f65ab7b610afe22f9eeb713983950576522f93", + "fields": { + "code_commune_insee": "89423", + "nom_de_la_commune": "TRONCHOY", + "code_postal": "89700", + "coordonnees_gps": [ + 47.9253601685, + 3.94507629451 + ], + "libelle_d_acheminement": "TRONCHOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94507629451, + 47.9253601685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79ee808b014d66158aacf0020609400947003026", + "fields": { + "code_commune_insee": "89425", + "nom_de_la_commune": "TURNY", + "code_postal": "89570", + "coordonnees_gps": [ + 48.0654471891, + 3.73424677868 + ], + "libelle_d_acheminement": "TURNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73424677868, + 48.0654471891 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f344546d9271ae257a5a6b3e06672da6fcbd6644", + "fields": { + "code_commune_insee": "89426", + "nom_de_la_commune": "VAL DE MERCY", + "code_postal": "89580", + "coordonnees_gps": [ + 47.6704553293, + 3.58979488236 + ], + "libelle_d_acheminement": "VAL DE MERCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.58979488236, + 47.6704553293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b89ba31e1b8b766e0e331b9deec0b78d36e7a24f", + "fields": { + "code_commune_insee": "89433", + "nom_de_la_commune": "VAULT DE LUGNY", + "code_postal": "89200", + "coordonnees_gps": [ + 47.5025414674, + 3.84177784703 + ], + "libelle_d_acheminement": "VAULT DE LUGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84177784703, + 47.5025414674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5923121c75f1a01bd84efa82b03f18290237b1f8", + "fields": { + "code_commune_insee": "89439", + "nom_de_la_commune": "VERGIGNY", + "code_postal": "89600", + "coordonnees_gps": [ + 47.9549518047, + 3.69703784472 + ], + "libelle_d_acheminement": "VERGIGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69703784472, + 47.9549518047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f4a9b2f9f27b0c3ff8c617d7802e135023edf631", + "fields": { + "ligne_5": "BOUILLY", + "code_commune_insee": "89439", + "libelle_d_acheminement": "VERGIGNY", + "code_postal": "89600", + "nom_de_la_commune": "VERGIGNY", + "coordonnees_gps": [ + 47.9549518047, + 3.69703784472 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69703784472, + 47.9549518047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a21e313d5ff55edccf88f72380ccec982dd50ef5", + "fields": { + "ligne_5": "REBOURSEAUX", + "code_commune_insee": "89439", + "libelle_d_acheminement": "VERGIGNY", + "code_postal": "89600", + "nom_de_la_commune": "VERGIGNY", + "coordonnees_gps": [ + 47.9549518047, + 3.69703784472 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69703784472, + 47.9549518047 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c3a064603684cc3c26c7fdcc8fd86447a02389f9", + "fields": { + "ligne_5": "SACY", + "code_commune_insee": "89441", + "libelle_d_acheminement": "VERMENTON", + "code_postal": "89270", + "nom_de_la_commune": "VERMENTON", + "coordonnees_gps": [ + 47.6729908911, + 3.7577164851 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7577164851, + 47.6729908911 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "75cd29a04a35bfb93e64c48911cbe813fcbf4dc5", + "fields": { + "code_commune_insee": "89445", + "nom_de_la_commune": "VEZANNES", + "code_postal": "89700", + "coordonnees_gps": [ + 47.8729874293, + 3.88180171745 + ], + "libelle_d_acheminement": "VEZANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88180171745, + 47.8729874293 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b109a4d4714d90f3e26f24214260a8a8bc275ced", + "fields": { + "code_commune_insee": "89446", + "nom_de_la_commune": "VEZELAY", + "code_postal": "89450", + "coordonnees_gps": [ + 47.4524539513, + 3.71058845441 + ], + "libelle_d_acheminement": "VEZELAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71058845441, + 47.4524539513 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b84d0c53a8bdcb6b89324956b21ef43f0661c43f", + "fields": { + "code_commune_insee": "89449", + "nom_de_la_commune": "VILLEBLEVIN", + "code_postal": "89340", + "coordonnees_gps": [ + 48.3305033124, + 3.08563926027 + ], + "libelle_d_acheminement": "VILLEBLEVIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.08563926027, + 48.3305033124 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f6ff09b69e860f739e737d8b4d57e49c74af529f", + "fields": { + "code_commune_insee": "89464", + "nom_de_la_commune": "VILLENEUVE SUR YONNE", + "code_postal": "89500", + "coordonnees_gps": [ + 48.0817729554, + 3.3198884982 + ], + "libelle_d_acheminement": "VILLENEUVE SUR YONNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3198884982, + 48.0817729554 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f0fad203ffa2bd54868dd8b5c1aff8b45c476a54", + "fields": { + "code_commune_insee": "89466", + "nom_de_la_commune": "VILLEROY", + "code_postal": "89100", + "coordonnees_gps": [ + 48.1815398633, + 3.1810299431 + ], + "libelle_d_acheminement": "VILLEROY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1810299431, + 48.1815398633 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9abf0dc0606f9811aff193ba3367cfb435a6639b", + "fields": { + "ligne_5": "GRANGE LE BOCAGE", + "code_commune_insee": "89469", + "libelle_d_acheminement": "PERCENEIGE", + "code_postal": "89260", + "nom_de_la_commune": "PERCENEIGE", + "coordonnees_gps": [ + 48.3524100222, + 3.410424212 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.410424212, + 48.3524100222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0256298d34275bccd441471be6267f897ff56cc", + "fields": { + "ligne_5": "VERTILLY", + "code_commune_insee": "89469", + "libelle_d_acheminement": "PERCENEIGE", + "code_postal": "89260", + "nom_de_la_commune": "PERCENEIGE", + "coordonnees_gps": [ + 48.3524100222, + 3.410424212 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.410424212, + 48.3524100222 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3431f43240e0dfbb9b6fb5cb3384ac8553bf6709", + "fields": { + "code_commune_insee": "89471", + "nom_de_la_commune": "VILLIERS LOUIS", + "code_postal": "89320", + "coordonnees_gps": [ + 48.1976433719, + 3.40283565458 + ], + "libelle_d_acheminement": "VILLIERS LOUIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40283565458, + 48.1976433719 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a0d633d3a1caf64231102a2d8925bb83fc030a9f", + "fields": { + "code_commune_insee": "90001", + "nom_de_la_commune": "ANDELNANS", + "code_postal": "90400", + "coordonnees_gps": [ + 47.6031655316, + 6.86569831996 + ], + "libelle_d_acheminement": "ANDELNANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86569831996, + 47.6031655316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1fb86ca2715cf376883c1d40b8962743026a2a35", + "fields": { + "code_commune_insee": "90006", + "nom_de_la_commune": "AUXELLES HAUT", + "code_postal": "90200", + "coordonnees_gps": [ + 47.7497691632, + 6.77833985609 + ], + "libelle_d_acheminement": "AUXELLES HAUT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.77833985609, + 47.7497691632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b8927743096790b32cb3c7329b912b8b255145f4", + "fields": { + "code_commune_insee": "90010", + "nom_de_la_commune": "BELFORT", + "code_postal": "90000", + "coordonnees_gps": [ + 47.6471539414, + 6.84541206237 + ], + "libelle_d_acheminement": "BELFORT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84541206237, + 47.6471539414 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6dcb7fdcd637f26feadda2478b50e08d01807eef", + "fields": { + "code_commune_insee": "90011", + "nom_de_la_commune": "BERMONT", + "code_postal": "90400", + "coordonnees_gps": [ + 47.5754640823, + 6.84557401926 + ], + "libelle_d_acheminement": "BERMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84557401926, + 47.5754640823 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5feaacd9720f4c50be9499ba176d6c8a4036f61c", + "fields": { + "code_commune_insee": "90013", + "nom_de_la_commune": "BETHONVILLIERS", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6808468613, + 6.96678328233 + ], + "libelle_d_acheminement": "BETHONVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96678328233, + 47.6808468613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "951b8aeaaedf0c3ba4d8995e6cc0b376cd07a0d2", + "fields": { + "code_commune_insee": "90015", + "nom_de_la_commune": "BOTANS", + "code_postal": "90400", + "coordonnees_gps": [ + 47.5956035781, + 6.84875928018 + ], + "libelle_d_acheminement": "BOTANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.84875928018, + 47.5956035781 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4b30645dc2c7cf7f100ac05d6d25a4a8d1a73cea", + "fields": { + "code_commune_insee": "90017", + "nom_de_la_commune": "BOUROGNE", + "code_postal": "90140", + "coordonnees_gps": [ + 47.5644650637, + 6.90576475767 + ], + "libelle_d_acheminement": "BOUROGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.90576475767, + 47.5644650637 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "11227eb6a3ee8a91328a83e17ba3f4b9fe6ee161", + "fields": { + "code_commune_insee": "90024", + "nom_de_la_commune": "CHAVANATTE", + "code_postal": "90100", + "coordonnees_gps": [ + 47.5826458846, + 7.07154687722 + ], + "libelle_d_acheminement": "CHAVANATTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07154687722, + 47.5826458846 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ace04a581a8a7e888c9d920eca2a77ea811b69f", + "fields": { + "code_commune_insee": "90031", + "nom_de_la_commune": "CUNELIERES", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6258233078, + 6.99387177143 + ], + "libelle_d_acheminement": "CUNELIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99387177143, + 47.6258233078 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "839a106e46fc595f6ece723edf2ca5b20d3d4ed5", + "fields": { + "code_commune_insee": "90039", + "nom_de_la_commune": "ESSERT", + "code_postal": "90850", + "coordonnees_gps": [ + 47.6367014962, + 6.81198236249 + ], + "libelle_d_acheminement": "ESSERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.81198236249, + 47.6367014962 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "82ee02251a1572d6c1b75af26424163b4888bb2f", + "fields": { + "code_commune_insee": "90041", + "nom_de_la_commune": "ETUEFFONT", + "code_postal": "90170", + "coordonnees_gps": [ + 47.7254670433, + 6.91517824444 + ], + "libelle_d_acheminement": "ETUEFFONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.91517824444, + 47.7254670433 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "00eba61067bd7a0458285c619bc10798eae3d45f", + "fields": { + "code_commune_insee": "90045", + "nom_de_la_commune": "FECHE L EGLISE", + "code_postal": "90100", + "coordonnees_gps": [ + 47.5021767416, + 6.95588031238 + ], + "libelle_d_acheminement": "FECHE L EGLISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95588031238, + 47.5021767416 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cdb8247dc5847bb91248f8aea98a27d049f2a76d", + "fields": { + "code_commune_insee": "90046", + "nom_de_la_commune": "FLORIMONT", + "code_postal": "90100", + "coordonnees_gps": [ + 47.5370834795, + 7.05075565634 + ], + "libelle_d_acheminement": "FLORIMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.05075565634, + 47.5370834795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "01fb1021032b29297fb8a451da6f4df43cb8c320", + "fields": { + "code_commune_insee": "90047", + "nom_de_la_commune": "FONTAINE", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6588814395, + 6.99769315688 + ], + "libelle_d_acheminement": "FONTAINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99769315688, + 47.6588814395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f1a5c335e9820935311e3748359c754b54cfd1c2", + "fields": { + "code_commune_insee": "90049", + "nom_de_la_commune": "FOUSSEMAGNE", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6377553885, + 6.99718798904 + ], + "libelle_d_acheminement": "FOUSSEMAGNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99718798904, + 47.6377553885 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f66cb88cb31849c23fd6ba38d3633de9f082d1ed", + "fields": { + "code_commune_insee": "90063", + "nom_de_la_commune": "LEBETAIN", + "code_postal": "90100", + "coordonnees_gps": [ + 47.4864077201, + 6.97353458294 + ], + "libelle_d_acheminement": "LEBETAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.97353458294, + 47.4864077201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad87fb247e70c5fa4e81bb115d1dff5643f7052a", + "fields": { + "code_commune_insee": "90064", + "nom_de_la_commune": "LEPUIX NEUF", + "code_postal": "90100", + "coordonnees_gps": [ + 47.5415228689, + 7.1047242748 + ], + "libelle_d_acheminement": "LEPUIX NEUF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1047242748, + 47.5415228689 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "44fd4b64368c4c03fe057623634f302acc4ca5f7", + "fields": { + "code_commune_insee": "90067", + "nom_de_la_commune": "MENONCOURT", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6788573234, + 6.95039773409 + ], + "libelle_d_acheminement": "MENONCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.95039773409, + 47.6788573234 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "68319de4ebc2f3d9df0b815b52e10dcd29ffe76e", + "fields": { + "code_commune_insee": "90072", + "nom_de_la_commune": "MORVILLARS", + "code_postal": "90120", + "coordonnees_gps": [ + 47.5429192415, + 6.93785518461 + ], + "libelle_d_acheminement": "MORVILLARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.93785518461, + 47.5429192415 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1f6f98621d23bbd3dbd2ac449ba887ccb02ffe0f", + "fields": { + "code_commune_insee": "90076", + "nom_de_la_commune": "PEROUSE", + "code_postal": "90160", + "coordonnees_gps": [ + 47.6363380208, + 6.89414319751 + ], + "libelle_d_acheminement": "PEROUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.89414319751, + 47.6363380208 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "417134928a5bdfc7b2056c304ada5b369a85bc58", + "fields": { + "code_commune_insee": "90080", + "nom_de_la_commune": "PHAFFANS", + "code_postal": "90150", + "coordonnees_gps": [ + 47.6585204866, + 6.94418106146 + ], + "libelle_d_acheminement": "PHAFFANS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.94418106146, + 47.6585204866 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b64adba350c074b1f13b92bd843ed25ece7f08ff", + "fields": { + "code_commune_insee": "90082", + "nom_de_la_commune": "AUTRECHENE", + "code_postal": "90140", + "coordonnees_gps": [ + 47.5919647033, + 6.96347182318 + ], + "libelle_d_acheminement": "AUTRECHENE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96347182318, + 47.5919647033 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "298766b9c22cdf29597d0696a95b97bf28bf0d26", + "fields": { + "code_commune_insee": "90088", + "nom_de_la_commune": "ROUGEGOUTTE", + "code_postal": "90200", + "coordonnees_gps": [ + 47.7339603674, + 6.86245086381 + ], + "libelle_d_acheminement": "ROUGEGOUTTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.86245086381, + 47.7339603674 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "833049e9bbc3af095777e453c03ea34204f23536", + "fields": { + "code_commune_insee": "90091", + "nom_de_la_commune": "ST GERMAIN LE CHATELET", + "code_postal": "90110", + "coordonnees_gps": [ + 47.7002701756, + 6.96114583666 + ], + "libelle_d_acheminement": "ST GERMAIN LE CHATELET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.96114583666, + 47.7002701756 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b1474e7a7b378e565d380aece123e2bc4d3a7751", + "fields": { + "code_commune_insee": "90105", + "nom_de_la_commune": "VILLARS LE SEC", + "code_postal": "90100", + "coordonnees_gps": [ + 47.4554088507, + 6.98803547043 + ], + "libelle_d_acheminement": "VILLARS LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98803547043, + 47.4554088507 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d2db39ba111034c6c73efdd301c36cff24b848ec", + "fields": { + "code_commune_insee": "91022", + "nom_de_la_commune": "ARRANCOURT", + "code_postal": "91690", + "coordonnees_gps": [ + 48.3267041104, + 2.15155534916 + ], + "libelle_d_acheminement": "ARRANCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15155534916, + 48.3267041104 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "26718e05b1a3dc373bd656c33989487be10ef137", + "fields": { + "code_commune_insee": "91081", + "nom_de_la_commune": "BOISSY LE SEC", + "code_postal": "91870", + "coordonnees_gps": [ + 48.4846711917, + 2.09143210906 + ], + "libelle_d_acheminement": "BOISSY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.09143210906, + 48.4846711917 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ab7068e5141d59aee4478356d37c5e07bb24850", + "fields": { + "code_commune_insee": "91085", + "nom_de_la_commune": "BOISSY SOUS ST YON", + "code_postal": "91790", + "coordonnees_gps": [ + 48.5500395894, + 2.21286982392 + ], + "libelle_d_acheminement": "BOISSY SOUS ST YON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21286982392, + 48.5500395894 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "589b44a49f1e5531ba6f8f63ec879103ebd6aa98", + "fields": { + "code_commune_insee": "91095", + "nom_de_la_commune": "BOURAY SUR JUINE", + "code_postal": "91850", + "coordonnees_gps": [ + 48.5123020136, + 2.29610342228 + ], + "libelle_d_acheminement": "BOURAY SUR JUINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.29610342228, + 48.5123020136 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ac20a1fe88eebc8205ffe6bfbe8f1d728854a408", + "fields": { + "code_commune_insee": "91132", + "nom_de_la_commune": "CHAMARANDE", + "code_postal": "91730", + "coordonnees_gps": [ + 48.5167739657, + 2.21800082924 + ], + "libelle_d_acheminement": "CHAMARANDE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21800082924, + 48.5167739657 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4a23d245a26c6fec83749e4d862fa1040c2887ee", + "fields": { + "code_commune_insee": "91137", + "nom_de_la_commune": "CHAMPMOTTEUX", + "code_postal": "91150", + "coordonnees_gps": [ + 48.3439397579, + 2.31485115366 + ], + "libelle_d_acheminement": "CHAMPMOTTEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31485115366, + 48.3439397579 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b075cbfa1277fc93e441e34423877084fabacfba", + "fields": { + "code_commune_insee": "91145", + "nom_de_la_commune": "CHATIGNONVILLE", + "code_postal": "91410", + "coordonnees_gps": [ + 48.4687599817, + 1.93252874595 + ], + "libelle_d_acheminement": "CHATIGNONVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93252874595, + 48.4687599817 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2e831ceedfe474dde68da2562b1567c2e323da54", + "fields": { + "code_commune_insee": "91156", + "nom_de_la_commune": "CHEPTAINVILLE", + "code_postal": "91630", + "coordonnees_gps": [ + 48.5465841683, + 2.27416218366 + ], + "libelle_d_acheminement": "CHEPTAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.27416218366, + 48.5465841683 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "231cdd93ba57ea45701de073425706d2ebe369e0", + "fields": { + "code_commune_insee": "91159", + "nom_de_la_commune": "CHEVANNES", + "code_postal": "91750", + "coordonnees_gps": [ + 48.5335355797, + 2.44062628529 + ], + "libelle_d_acheminement": "CHEVANNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44062628529, + 48.5335355797 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6e6c2e32edacc4b7299c06204cdcef014493a376", + "fields": { + "code_commune_insee": "91174", + "nom_de_la_commune": "CORBEIL ESSONNES", + "code_postal": "91100", + "coordonnees_gps": [ + 48.6034809251, + 2.46934079002 + ], + "libelle_d_acheminement": "CORBEIL ESSONNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46934079002, + 48.6034809251 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7bb6ddc27ffec12d5c74cc0796f5983deeaa7188", + "fields": { + "code_commune_insee": "91175", + "nom_de_la_commune": "CORBREUSE", + "code_postal": "91410", + "coordonnees_gps": [ + 48.494765705, + 1.96031071197 + ], + "libelle_d_acheminement": "CORBREUSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.96031071197, + 48.494765705 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c38db321c06e0e9a8ccb2ec7734bfe2e1202e355", + "fields": { + "code_commune_insee": "91215", + "nom_de_la_commune": "EPINAY SOUS SENART", + "code_postal": "91860", + "coordonnees_gps": [ + 48.6871527113, + 2.51577225487 + ], + "libelle_d_acheminement": "EPINAY SOUS SENART" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.51577225487, + 48.6871527113 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c18e4b84eb24f120ed5a991827a576fa9ed131ea", + "fields": { + "ligne_5": "EVRY", + "code_commune_insee": "91228", + "libelle_d_acheminement": "EVRY COURCOURONNES", + "code_postal": "91000", + "nom_de_la_commune": "EVRY COURCOURONNES", + "coordonnees_gps": [ + 48.6294831659, + 2.44008244492 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.44008244492, + 48.6294831659 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a58c98c56aec5da0c7c15c69ca19ffca846d7f88", + "fields": { + "code_commune_insee": "91326", + "nom_de_la_commune": "JUVISY SUR ORGE", + "code_postal": "91260", + "coordonnees_gps": [ + 48.6918789321, + 2.37393682594 + ], + "libelle_d_acheminement": "JUVISY SUR ORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.37393682594, + 48.6918789321 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4660874df1d4663825b3aad3e5810b9b473e4e72", + "fields": { + "code_commune_insee": "91338", + "nom_de_la_commune": "LIMOURS", + "code_postal": "91470", + "coordonnees_gps": [ + 48.6465432324, + 2.08125663662 + ], + "libelle_d_acheminement": "LIMOURS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08125663662, + 48.6465432324 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1091bba9da2c3dd9160b7774ea0cd30fd5f0f85f", + "fields": { + "code_commune_insee": "91347", + "nom_de_la_commune": "LONGPONT SUR ORGE", + "code_postal": "91310", + "coordonnees_gps": [ + 48.6404556934, + 2.28647061043 + ], + "libelle_d_acheminement": "LONGPONT SUR ORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28647061043, + 48.6404556934 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "38669e65d6a5b866bfeab30a1df300697b597ba2", + "fields": { + "code_commune_insee": "91374", + "nom_de_la_commune": "MAROLLES EN BEAUCE", + "code_postal": "91150", + "coordonnees_gps": [ + 48.3692255214, + 2.20423612616 + ], + "libelle_d_acheminement": "MAROLLES EN BEAUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20423612616, + 48.3692255214 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5e1abbf8e81e895bef406e18967ac403023e5862", + "fields": { + "code_commune_insee": "91411", + "nom_de_la_commune": "LES MOLIERES", + "code_postal": "91470", + "coordonnees_gps": [ + 48.671525, + 2.07284691795 + ], + "libelle_d_acheminement": "LES MOLIERES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07284691795, + 48.671525 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b24ae686f86a2dc05032efcb61f0835fd641b8b0", + "fields": { + "code_commune_insee": "91414", + "nom_de_la_commune": "MONNERVILLE", + "code_postal": "91930", + "coordonnees_gps": [ + 48.3475778316, + 2.03756140392 + ], + "libelle_d_acheminement": "MONNERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.03756140392, + 48.3475778316 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42ae6b7abd265b378827a6d14db68142bd4c13c9", + "fields": { + "code_commune_insee": "91457", + "nom_de_la_commune": "LA NORVILLE", + "code_postal": "91290", + "coordonnees_gps": [ + 48.5814225294, + 2.26569127873 + ], + "libelle_d_acheminement": "LA NORVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.26569127873, + 48.5814225294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6b2fdfe462750ccd6080a32842d1c145970d9598", + "fields": { + "code_commune_insee": "91458", + "nom_de_la_commune": "NOZAY", + "code_postal": "91620", + "coordonnees_gps": [ + 48.6606560132, + 2.23814387316 + ], + "libelle_d_acheminement": "NOZAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23814387316, + 48.6606560132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b28fb3e29f4046438899c14c07c63b00e30f2424", + "fields": { + "code_commune_insee": "91468", + "nom_de_la_commune": "ORMOY", + "code_postal": "91540", + "coordonnees_gps": [ + 48.5732357153, + 2.45777798707 + ], + "libelle_d_acheminement": "ORMOY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45777798707, + 48.5732357153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cccabd5a235e34b8db9168a45715a76e00a39c2f", + "fields": { + "code_commune_insee": "91469", + "nom_de_la_commune": "ORMOY LA RIVIERE", + "code_postal": "91150", + "coordonnees_gps": [ + 48.4004789028, + 2.16430044754 + ], + "libelle_d_acheminement": "ORMOY LA RIVIERE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.16430044754, + 48.4004789028 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4437a61393d82a28f410a88f460e1a56c6536668", + "fields": { + "code_commune_insee": "91477", + "nom_de_la_commune": "PALAISEAU", + "code_postal": "91120", + "coordonnees_gps": [ + 48.7146765876, + 2.22881488083 + ], + "libelle_d_acheminement": "PALAISEAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22881488083, + 48.7146765876 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3c67572f557f0a0a1fd4b14a2761cc63226546dd", + "fields": { + "code_commune_insee": "91494", + "nom_de_la_commune": "LE PLESSIS PATE", + "code_postal": "91220", + "coordonnees_gps": [ + 48.6071065715, + 2.3415354355 + ], + "libelle_d_acheminement": "LE PLESSIS PATE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3415354355, + 48.6071065715 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ac88cd8135e98caa5cd6e6937198b209d0700f0", + "fields": { + "code_commune_insee": "91526", + "nom_de_la_commune": "ROINVILLIERS", + "code_postal": "91150", + "coordonnees_gps": [ + 48.3446966636, + 2.23697563097 + ], + "libelle_d_acheminement": "ROINVILLIERS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23697563097, + 48.3446966636 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a607dd033ad1428c013de358f77f201e0813f195", + "fields": { + "code_commune_insee": "91549", + "nom_de_la_commune": "STE GENEVIEVE DES BOIS", + "code_postal": "91700", + "coordonnees_gps": [ + 48.6412523804, + 2.33019417891 + ], + "libelle_d_acheminement": "STE GENEVIEVE DES BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.33019417891, + 48.6412523804 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "befb7504f7e08bff040a52e78593faabed2d45f0", + "fields": { + "code_commune_insee": "91556", + "nom_de_la_commune": "ST HILAIRE", + "code_postal": "91780", + "coordonnees_gps": [ + 48.4416195593, + 2.08707092552 + ], + "libelle_d_acheminement": "ST HILAIRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.08707092552, + 48.4416195593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5282e56b8709a95f643f272205a95605ed1ee499", + "fields": { + "code_commune_insee": "91560", + "nom_de_la_commune": "ST JEAN DE BEAUREGARD", + "code_postal": "91940", + "coordonnees_gps": [ + 48.6657065613, + 2.17124577371 + ], + "libelle_d_acheminement": "ST JEAN DE BEAUREGARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17124577371, + 48.6657065613 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e94e8812c8396e2ed99c2ccb2f2df166fad021e0", + "fields": { + "code_commune_insee": "91570", + "nom_de_la_commune": "ST MICHEL SUR ORGE", + "code_postal": "91240", + "coordonnees_gps": [ + 48.6320496004, + 2.31170277845 + ], + "libelle_d_acheminement": "ST MICHEL SUR ORGE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31170277845, + 48.6320496004 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b45797680f85313c05bf860e08a6c2d035ef74cd", + "fields": { + "code_commune_insee": "91599", + "nom_de_la_commune": "SOISY SUR ECOLE", + "code_postal": "91840", + "coordonnees_gps": [ + 48.4786667096, + 2.48222153936 + ], + "libelle_d_acheminement": "SOISY SUR ECOLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48222153936, + 48.4786667096 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "81164702c6c739bd21c9b6fa1047d73a638ecd30", + "fields": { + "code_commune_insee": "91657", + "nom_de_la_commune": "VIGNEUX SUR SEINE", + "code_postal": "91270", + "coordonnees_gps": [ + 48.7037445355, + 2.42793203784 + ], + "libelle_d_acheminement": "VIGNEUX SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.42793203784, + 48.7037445355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3e590a2ba8e81365aff66cbdd8d0a21dd10e55cb", + "fields": { + "code_commune_insee": "91666", + "nom_de_la_commune": "VILLEJUST", + "code_postal": "91140", + "coordonnees_gps": [ + 48.6777382383, + 2.22294283132 + ], + "libelle_d_acheminement": "VILLEJUST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22294283132, + 48.6777382383 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "25bba71f7e6c60fc4251101b6a3ecb6ce42a0587", + "fields": { + "code_commune_insee": "91689", + "nom_de_la_commune": "WISSOUS", + "code_postal": "91320", + "coordonnees_gps": [ + 48.7294509959, + 2.32903292215 + ], + "libelle_d_acheminement": "WISSOUS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32903292215, + 48.7294509959 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b33929c95d2854dd4a9593ecb7a92d940a1f126f", + "fields": { + "code_commune_insee": "92002", + "nom_de_la_commune": "ANTONY", + "code_postal": "92160", + "coordonnees_gps": [ + 48.7503412602, + 2.2993268102 + ], + "libelle_d_acheminement": "ANTONY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2993268102, + 48.7503412602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e20090b88d8f8cfb2fa9ac32f5ffb37e2e646436", + "fields": { + "code_commune_insee": "92004", + "nom_de_la_commune": "ASNIERES SUR SEINE", + "code_postal": "92600", + "coordonnees_gps": [ + 48.9153530123, + 2.2880384663 + ], + "libelle_d_acheminement": "ASNIERES SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2880384663, + 48.9153530123 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "735434a5db1733dfadd707b32c85041a03446f36", + "fields": { + "code_commune_insee": "92014", + "nom_de_la_commune": "BOURG LA REINE", + "code_postal": "92340", + "coordonnees_gps": [ + 48.7799073627, + 2.31643010763 + ], + "libelle_d_acheminement": "BOURG LA REINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31643010763, + 48.7799073627 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fb8a221c78e7522c44cf03b88199a8ee97a8520", + "fields": { + "code_commune_insee": "92025", + "nom_de_la_commune": "COLOMBES", + "code_postal": "92700", + "coordonnees_gps": [ + 48.9225179147, + 2.24675160629 + ], + "libelle_d_acheminement": "COLOMBES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24675160629, + 48.9225179147 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b46057bf16a809e239e403774095ce3193391b1a", + "fields": { + "code_commune_insee": "92032", + "nom_de_la_commune": "FONTENAY AUX ROSES", + "code_postal": "92260", + "coordonnees_gps": [ + 48.7897301312, + 2.28723493557 + ], + "libelle_d_acheminement": "FONTENAY AUX ROSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28723493557, + 48.7897301312 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8ba90c3a8ee1219717a7e2675442abd58a246dbc", + "fields": { + "code_commune_insee": "92033", + "nom_de_la_commune": "GARCHES", + "code_postal": "92380", + "coordonnees_gps": [ + 48.8450113548, + 2.18665007789 + ], + "libelle_d_acheminement": "GARCHES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.18665007789, + 48.8450113548 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "840682511b061c5ad8b4817eebd3df489fc7ca4e", + "fields": { + "code_commune_insee": "92062", + "nom_de_la_commune": "PUTEAUX", + "code_postal": "92800", + "coordonnees_gps": [ + 48.8837094969, + 2.23834178314 + ], + "libelle_d_acheminement": "PUTEAUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23834178314, + 48.8837094969 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b139cb7dee4a3182c1bab8df63a9dd7c8f11c147", + "fields": { + "code_commune_insee": "92064", + "nom_de_la_commune": "ST CLOUD", + "code_postal": "92210", + "coordonnees_gps": [ + 48.8428741034, + 2.20864570316 + ], + "libelle_d_acheminement": "ST CLOUD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20864570316, + 48.8428741034 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8b312baebbb795be4d3ba84645fcdfc5672c7596", + "fields": { + "code_commune_insee": "92073", + "nom_de_la_commune": "SURESNES", + "code_postal": "92150", + "coordonnees_gps": [ + 48.8698479132, + 2.21965517625 + ], + "libelle_d_acheminement": "SURESNES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21965517625, + 48.8698479132 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e91cf6e1799ed812a4cde7072d7388648a723ef", + "fields": { + "code_commune_insee": "93007", + "nom_de_la_commune": "LE BLANC MESNIL", + "code_postal": "93150", + "coordonnees_gps": [ + 48.9395475536, + 2.46112148528 + ], + "libelle_d_acheminement": "LE BLANC MESNIL" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46112148528, + 48.9395475536 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa635262e26c0c20f4e7168b6dbd7e2a364fd1d6", + "fields": { + "code_commune_insee": "93014", + "nom_de_la_commune": "CLICHY SOUS BOIS", + "code_postal": "93390", + "coordonnees_gps": [ + 48.9076285106, + 2.5462022266 + ], + "libelle_d_acheminement": "CLICHY SOUS BOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5462022266, + 48.9076285106 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "14c3368ecd2a34bc38775be78958973694e94641", + "fields": { + "code_commune_insee": "93027", + "nom_de_la_commune": "LA COURNEUVE", + "code_postal": "93120", + "coordonnees_gps": [ + 48.9322569546, + 2.39978064801 + ], + "libelle_d_acheminement": "LA COURNEUVE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39978064801, + 48.9322569546 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "79a7378207551453b9522e6a75e1bdf91f2ebf38", + "fields": { + "code_commune_insee": "93032", + "nom_de_la_commune": "GAGNY", + "code_postal": "93220", + "coordonnees_gps": [ + 48.8820763119, + 2.5449484757 + ], + "libelle_d_acheminement": "GAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5449484757, + 48.8820763119 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e1a7661abdb011b63b052f7574ee7cc60694576b", + "fields": { + "code_commune_insee": "93033", + "nom_de_la_commune": "GOURNAY SUR MARNE", + "code_postal": "93460", + "coordonnees_gps": [ + 48.8605817902, + 2.57543313796 + ], + "libelle_d_acheminement": "GOURNAY SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57543313796, + 48.8605817902 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c7ebb138e2b1d29101863fb1282d6f1f96771b01", + "fields": { + "code_commune_insee": "93053", + "nom_de_la_commune": "NOISY LE SEC", + "code_postal": "93130", + "coordonnees_gps": [ + 48.891322463, + 2.45913647372 + ], + "libelle_d_acheminement": "NOISY LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.45913647372, + 48.891322463 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ac4390747f94d02239c4ff28b65e1dbcacb6ca0", + "fields": { + "code_commune_insee": "93061", + "nom_de_la_commune": "LE PRE ST GERVAIS", + "code_postal": "93310", + "coordonnees_gps": [ + 48.8846734877, + 2.40542232961 + ], + "libelle_d_acheminement": "LE PRE ST GERVAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40542232961, + 48.8846734877 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d1271bb600ffa3f95528787c2a90935b8e8324fe", + "fields": { + "ligne_5": "LA PLAINE ST DENIS", + "code_commune_insee": "93066", + "libelle_d_acheminement": "ST DENIS", + "code_postal": "93210", + "nom_de_la_commune": "ST DENIS", + "coordonnees_gps": [ + 48.9295650455, + 2.3592429975 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3592429975, + 48.9295650455 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d701d517a145b8767e758bf7185ed44f611be089", + "fields": { + "code_commune_insee": "94021", + "nom_de_la_commune": "CHEVILLY LARUE", + "code_postal": "94550", + "coordonnees_gps": [ + 48.766848001, + 2.35306611234 + ], + "libelle_d_acheminement": "CHEVILLY LARUE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35306611234, + 48.766848001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0159d3e0e6a0b3b63ac8820743889703359c5964", + "fields": { + "code_commune_insee": "94041", + "nom_de_la_commune": "IVRY SUR SEINE", + "code_postal": "94200", + "coordonnees_gps": [ + 48.8128063812, + 2.38778023612 + ], + "libelle_d_acheminement": "IVRY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38778023612, + 48.8128063812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b444a65179e81e7f054023041a550590477a151c", + "fields": { + "code_commune_insee": "94047", + "nom_de_la_commune": "MANDRES LES ROSES", + "code_postal": "94520", + "coordonnees_gps": [ + 48.7058880174, + 2.54830741614 + ], + "libelle_d_acheminement": "MANDRES LES ROSES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.54830741614, + 48.7058880174 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3bfb676bdae68276d19acaaf0ff7a32a3ca7cb35", + "fields": { + "code_commune_insee": "94052", + "nom_de_la_commune": "NOGENT SUR MARNE", + "code_postal": "94130", + "coordonnees_gps": [ + 48.8366634713, + 2.48166741533 + ], + "libelle_d_acheminement": "NOGENT SUR MARNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.48166741533, + 48.8366634713 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "095bbf7da830d43ce4961a8237413187301a8c19", + "fields": { + "code_commune_insee": "94070", + "nom_de_la_commune": "SANTENY", + "code_postal": "94440", + "coordonnees_gps": [ + 48.7356177142, + 2.57637480242 + ], + "libelle_d_acheminement": "SANTENY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.57637480242, + 48.7356177142 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "91b27b286d00828d5f4c826ab691bce3dedb531b", + "fields": { + "code_commune_insee": "94071", + "nom_de_la_commune": "SUCY EN BRIE", + "code_postal": "94370", + "coordonnees_gps": [ + 48.7656456593, + 2.5330560803 + ], + "libelle_d_acheminement": "SUCY EN BRIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5330560803, + 48.7656456593 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ed39df5173fdea05e17b8379bd19ef8d4aeb8484", + "fields": { + "code_commune_insee": "94073", + "nom_de_la_commune": "THIAIS", + "code_postal": "94320", + "coordonnees_gps": [ + 48.7607841928, + 2.38537729524 + ], + "libelle_d_acheminement": "THIAIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38537729524, + 48.7607841928 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "768efa9737da8c5dee6af3b3eb77e2f3d01d8443", + "fields": { + "code_commune_insee": "94076", + "nom_de_la_commune": "VILLEJUIF", + "code_postal": "94800", + "coordonnees_gps": [ + 48.7928547268, + 2.36006103249 + ], + "libelle_d_acheminement": "VILLEJUIF" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.36006103249, + 48.7928547268 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2985c9940b8bc5c56998c1929cd021d8800c2bf", + "fields": { + "code_commune_insee": "95014", + "nom_de_la_commune": "ANDILLY", + "code_postal": "95580", + "coordonnees_gps": [ + 49.0084088051, + 2.30277335813 + ], + "libelle_d_acheminement": "ANDILLY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.30277335813, + 49.0084088051 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "96d91c93e36facf4baf019b0b72091b3bc5f8133", + "fields": { + "code_commune_insee": "95039", + "nom_de_la_commune": "AUVERS SUR OISE", + "code_postal": "95430", + "coordonnees_gps": [ + 49.0803858577, + 2.15488070885 + ], + "libelle_d_acheminement": "AUVERS SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.15488070885, + 49.0803858577 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "717246a0a758e1375cc28e862a34afd096b70b94", + "fields": { + "ligne_5": "GADANCOURT", + "code_commune_insee": "95040", + "libelle_d_acheminement": "AVERNES", + "code_postal": "95450", + "nom_de_la_commune": "AVERNES", + "coordonnees_gps": [ + 49.0888264241, + 1.87003944746 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87003944746, + 49.0888264241 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6ca8cb3c5a198dd006bc04de5d1948330573ae5", + "fields": { + "code_commune_insee": "95046", + "nom_de_la_commune": "BANTHELU", + "code_postal": "95420", + "coordonnees_gps": [ + 49.125635171, + 1.81493362014 + ], + "libelle_d_acheminement": "BANTHELU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.81493362014, + 49.125635171 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a38f2ea7c03b5f0167f58b020248360a7167b7b8", + "fields": { + "code_commune_insee": "95056", + "nom_de_la_commune": "BELLOY EN FRANCE", + "code_postal": "95270", + "coordonnees_gps": [ + 49.0922395849, + 2.371761287 + ], + "libelle_d_acheminement": "BELLOY EN FRANCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.371761287, + 49.0922395849 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3efc59563161edd085b34f78104c0f832b3fff4e", + "fields": { + "code_commune_insee": "95059", + "nom_de_la_commune": "BERVILLE", + "code_postal": "95810", + "coordonnees_gps": [ + 49.1924943178, + 2.07091417142 + ], + "libelle_d_acheminement": "BERVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.07091417142, + 49.1924943178 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d8cff1382057e80a503dc2b72fde465880f708bc", + "fields": { + "code_commune_insee": "95063", + "nom_de_la_commune": "BEZONS", + "code_postal": "95870", + "coordonnees_gps": [ + 48.9259810125, + 2.21133387765 + ], + "libelle_d_acheminement": "BEZONS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21133387765, + 48.9259810125 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cabf970068d1d6807537e2817edffe8a392b58e8", + "fields": { + "code_commune_insee": "95074", + "nom_de_la_commune": "BOISEMONT", + "code_postal": "95000", + "coordonnees_gps": [ + 49.0186866586, + 2.00384200606 + ], + "libelle_d_acheminement": "BOISEMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00384200606, + 49.0186866586 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a18be9056c93dfb9436a8cbe1a9b13888ea156f5", + "fields": { + "code_commune_insee": "95141", + "nom_de_la_commune": "CHARMONT", + "code_postal": "95420", + "coordonnees_gps": [ + 49.1370870263, + 1.78987414307 + ], + "libelle_d_acheminement": "CHARMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.78987414307, + 49.1370870263 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63ef2b229313891ffcec3f4dc031e15950f1d362", + "fields": { + "code_commune_insee": "95170", + "nom_de_la_commune": "CONDECOURT", + "code_postal": "95450", + "coordonnees_gps": [ + 49.0375647936, + 1.93659110857 + ], + "libelle_d_acheminement": "CONDECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93659110857, + 49.0375647936 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "42a77351f40aebaff6c625830adbfe5017ccaca8", + "fields": { + "code_commune_insee": "95176", + "nom_de_la_commune": "CORMEILLES EN PARISIS", + "code_postal": "95240", + "coordonnees_gps": [ + 48.9682249677, + 2.19921349468 + ], + "libelle_d_acheminement": "CORMEILLES EN PARISIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19921349468, + 48.9682249677 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0367cf710aef8c55f033c9ab6ae2b2f78d8d1c9", + "fields": { + "code_commune_insee": "95199", + "nom_de_la_commune": "DOMONT", + "code_postal": "95330", + "coordonnees_gps": [ + 49.0296655684, + 2.32290103729 + ], + "libelle_d_acheminement": "DOMONT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.32290103729, + 49.0296655684 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db1bce2ce0e1237d8915151f06cc493b33cfde5c", + "fields": { + "code_commune_insee": "95205", + "nom_de_la_commune": "ECOUEN", + "code_postal": "95440", + "coordonnees_gps": [ + 49.0260643173, + 2.38485695599 + ], + "libelle_d_acheminement": "ECOUEN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38485695599, + 49.0260643173 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "dbd99f223aa27235303f358dd1c6b7d57d437c44", + "fields": { + "code_commune_insee": "95253", + "nom_de_la_commune": "FREMAINVILLE", + "code_postal": "95450", + "coordonnees_gps": [ + 49.0662903393, + 1.86961416716 + ], + "libelle_d_acheminement": "FREMAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.86961416716, + 49.0662903393 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39ef020573afbbd492259bfbabadc465811b9724", + "fields": { + "code_commune_insee": "95254", + "nom_de_la_commune": "FREMECOURT", + "code_postal": "95830", + "coordonnees_gps": [ + 49.1234959164, + 1.99347687153 + ], + "libelle_d_acheminement": "FREMECOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.99347687153, + 49.1234959164 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ab6933056545ee43c14c26cbdfdb40a946da2879", + "fields": { + "code_commune_insee": "95268", + "nom_de_la_commune": "GARGES LES GONESSE", + "code_postal": "95140", + "coordonnees_gps": [ + 48.9701231267, + 2.40534038501 + ], + "libelle_d_acheminement": "GARGES LES GONESSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.40534038501, + 48.9701231267 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "28c69062782e9de1756bd6468fe7f59185faa07e", + "fields": { + "code_commune_insee": "95270", + "nom_de_la_commune": "GENAINVILLE", + "code_postal": "95420", + "coordonnees_gps": [ + 49.1168671395, + 1.75427492934 + ], + "libelle_d_acheminement": "GENAINVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.75427492934, + 49.1168671395 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae05caeca585b14a4c64333a7a0c27e1a8ec3902", + "fields": { + "code_commune_insee": "95306", + "nom_de_la_commune": "HERBLAY SUR SEINE", + "code_postal": "95220", + "coordonnees_gps": [ + 49.0007002763, + 2.14967680776 + ], + "libelle_d_acheminement": "HERBLAY SUR SEINE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14967680776, + 49.0007002763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "54a2ec89a799fcb437fd5053c4bd61122bbbc85a", + "fields": { + "ligne_5": "LA PATTE D OIE", + "code_commune_insee": "95306", + "libelle_d_acheminement": "HERBLAY SUR SEINE", + "code_postal": "95220", + "nom_de_la_commune": "HERBLAY SUR SEINE", + "coordonnees_gps": [ + 49.0007002763, + 2.14967680776 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.14967680776, + 49.0007002763 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b7a1e721f16992b4343ce0effc165c8c091f8c70", + "fields": { + "code_commune_insee": "95313", + "nom_de_la_commune": "L ISLE ADAM", + "code_postal": "95290", + "coordonnees_gps": [ + 49.1072255924, + 2.23436241795 + ], + "libelle_d_acheminement": "L ISLE ADAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23436241795, + 49.1072255924 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "489770eed421b94ba8d2bfc7d66959fe748d1bd2", + "fields": { + "code_commune_insee": "95328", + "nom_de_la_commune": "LABBEVILLE", + "code_postal": "95690", + "coordonnees_gps": [ + 49.1338305724, + 2.13502924194 + ], + "libelle_d_acheminement": "LABBEVILLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.13502924194, + 49.1338305724 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a7248e29758b99c2ddeecf2f19fa3e0c1ef4a43e", + "fields": { + "code_commune_insee": "95369", + "nom_de_la_commune": "MARGENCY", + "code_postal": "95580", + "coordonnees_gps": [ + 49.0014888466, + 2.28907008969 + ], + "libelle_d_acheminement": "MARGENCY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28907008969, + 49.0014888466 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1c57a29a5680af0fcb149ddb26d45cc16d250dfa", + "fields": { + "code_commune_insee": "95370", + "nom_de_la_commune": "MARINES", + "code_postal": "95640", + "coordonnees_gps": [ + 49.1480448573, + 1.98376019265 + ], + "libelle_d_acheminement": "MARINES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.98376019265, + 49.1480448573 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c8867857bac313e0b9b954b373a080a998d3607b", + "fields": { + "code_commune_insee": "95379", + "nom_de_la_commune": "MAUDETOUR EN VEXIN", + "code_postal": "95420", + "coordonnees_gps": [ + 49.1093620224, + 1.77708417418 + ], + "libelle_d_acheminement": "MAUDETOUR EN VEXIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.77708417418, + 49.1093620224 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "84b5274483eafa1878187dd46d3b0da38e520bce", + "fields": { + "code_commune_insee": "95422", + "nom_de_la_commune": "MONTGEROULT", + "code_postal": "95650", + "coordonnees_gps": [ + 49.0908042782, + 2.00787015509 + ], + "libelle_d_acheminement": "MONTGEROULT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.00787015509, + 49.0908042782 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c18139577f5869d46dfd061735960f5bd4c1a948", + "fields": { + "code_commune_insee": "95424", + "nom_de_la_commune": "MONTIGNY LES CORMEILLES", + "code_postal": "95370", + "coordonnees_gps": [ + 48.9938035561, + 2.19351793046 + ], + "libelle_d_acheminement": "MONTIGNY LES CORMEILLES" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19351793046, + 48.9938035561 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ef5ad34012a03bcec9d33e8224d9f1b83314cce0", + "fields": { + "code_commune_insee": "95426", + "nom_de_la_commune": "MONTLIGNON", + "code_postal": "95680", + "coordonnees_gps": [ + 49.0141682011, + 2.28900488904 + ], + "libelle_d_acheminement": "MONTLIGNON" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.28900488904, + 49.0141682011 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f898c029aa5621c1eba16813f036e40824d3ebec", + "fields": { + "code_commune_insee": "95427", + "nom_de_la_commune": "MONTMAGNY", + "code_postal": "95360", + "coordonnees_gps": [ + 48.9699195841, + 2.3460753179 + ], + "libelle_d_acheminement": "MONTMAGNY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3460753179, + 48.9699195841 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c97b8f4c527c87ffc43c754bd9304552c4639f84", + "fields": { + "code_commune_insee": "95450", + "nom_de_la_commune": "NEUVILLE SUR OISE", + "code_postal": "95000", + "coordonnees_gps": [ + 49.0173343999, + 2.06276656128 + ], + "libelle_d_acheminement": "NEUVILLE SUR OISE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.06276656128, + 49.0173343999 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9f221abc8533dbdb5cba8da24fe1863f1b0a0288", + "fields": { + "code_commune_insee": "95539", + "nom_de_la_commune": "ST BRICE SOUS FORET", + "code_postal": "95350", + "coordonnees_gps": [ + 49.0019033624, + 2.35030688962 + ], + "libelle_d_acheminement": "ST BRICE SOUS FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.35030688962, + 49.0019033624 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "219331984a9fa3b08a6aaf815efe670ab65d3b7f", + "fields": { + "code_commune_insee": "95563", + "nom_de_la_commune": "ST LEU LA FORET", + "code_postal": "95320", + "coordonnees_gps": [ + 49.0202164812, + 2.24676044206 + ], + "libelle_d_acheminement": "ST LEU LA FORET" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24676044206, + 49.0202164812 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2fa2520853dd29f9e50ef9235efac52b5babbcdb", + "fields": { + "code_commune_insee": "95582", + "nom_de_la_commune": "SANNOIS", + "code_postal": "95110", + "coordonnees_gps": [ + 48.9717773111, + 2.25299514112 + ], + "libelle_d_acheminement": "SANNOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25299514112, + 48.9717773111 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7ef881aa3de03ae53b7681b2f9f3f0c2537c70a", + "fields": { + "code_commune_insee": "95592", + "nom_de_la_commune": "SERAINCOURT", + "code_postal": "95450", + "coordonnees_gps": [ + 49.0421395607, + 1.87866991801 + ], + "libelle_d_acheminement": "SERAINCOURT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.87866991801, + 49.0421395607 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "98456b2a3c9420e47a5a66959e54d3ca48f5e0a7", + "fields": { + "code_commune_insee": "95612", + "nom_de_la_commune": "LE THILLAY", + "code_postal": "95500", + "coordonnees_gps": [ + 49.004277001, + 2.46927524969 + ], + "libelle_d_acheminement": "LE THILLAY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.46927524969, + 49.004277001 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7fc53d6ea944e688799a749d533d1b4e6e887d2e", + "fields": { + "code_commune_insee": "95625", + "nom_de_la_commune": "US", + "code_postal": "95450", + "coordonnees_gps": [ + 49.1048076828, + 1.95764610139 + ], + "libelle_d_acheminement": "US" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.95764610139, + 49.1048076828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "15026d6ed78b88a39c3af7f62f602ae006aa47b8", + "fields": { + "code_commune_insee": "95641", + "nom_de_la_commune": "VEMARS", + "code_postal": "95470", + "coordonnees_gps": [ + 49.0628571398, + 2.56723072677 + ], + "libelle_d_acheminement": "VEMARS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.56723072677, + 49.0628571398 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "55514313e0f0a55d1b990fb2c399800fea9af11b", + "fields": { + "code_commune_insee": "95678", + "nom_de_la_commune": "VILLIERS ADAM", + "code_postal": "95840", + "coordonnees_gps": [ + 49.0702888248, + 2.23950871871 + ], + "libelle_d_acheminement": "VILLIERS ADAM" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23950871871, + 49.0702888248 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "843cac8f4aa064818815d1276b1627cea6bd5b88", + "fields": { + "code_commune_insee": "95682", + "nom_de_la_commune": "VILLIERS LE SEC", + "code_postal": "95720", + "coordonnees_gps": [ + 49.0743088682, + 2.38688959984 + ], + "libelle_d_acheminement": "VILLIERS LE SEC" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.38688959984, + 49.0743088682 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ddd89332ae7226098fc28be5cf90310189530197", + "fields": { + "code_commune_insee": "97112", + "nom_de_la_commune": "GRAND BOURG", + "code_postal": "97112", + "coordonnees_gps": [ + 15.9060600751, + -61.2943821122 + ], + "libelle_d_acheminement": "GRAND BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.2943821122, + 15.9060600751 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b06ccc0b9b2f6df5cec5fb372e889d235fa2339", + "fields": { + "code_commune_insee": "97115", + "nom_de_la_commune": "LAMENTIN", + "code_postal": "97129", + "coordonnees_gps": [ + 16.2413995875, + -61.6685299192 + ], + "libelle_d_acheminement": "LAMENTIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.6685299192, + 16.2413995875 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f13c8965b3feea8ade14a69781b2bce695a939ef", + "fields": { + "code_commune_insee": "97116", + "nom_de_la_commune": "MORNE A L EAU", + "code_postal": "97111", + "coordonnees_gps": [ + 16.3240215714, + -61.470417696 + ], + "libelle_d_acheminement": "MORNE A L EAU" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.470417696, + 16.3240215714 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3deda2e5e6e22fe8c73da047f2dc0ca73760c7b5", + "fields": { + "code_commune_insee": "97118", + "nom_de_la_commune": "PETIT BOURG", + "code_postal": "97170", + "coordonnees_gps": [ + 16.1716063795, + -61.657244347 + ], + "libelle_d_acheminement": "PETIT BOURG" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.657244347, + 16.1716063795 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4f7e86e099f6d6bfba588e5eb73c79c04533492b", + "fields": { + "code_commune_insee": "97129", + "nom_de_la_commune": "STE ROSE", + "code_postal": "97115", + "coordonnees_gps": [ + 16.2939779294, + -61.7100293031 + ], + "libelle_d_acheminement": "STE ROSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.7100293031, + 16.2939779294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "364799e530d3f279618847c205ba5a4fd146ec50", + "fields": { + "code_commune_insee": "97134", + "nom_de_la_commune": "VIEUX HABITANTS", + "code_postal": "97119", + "coordonnees_gps": [ + 16.0870945547, + -61.7257229749 + ], + "libelle_d_acheminement": "VIEUX HABITANTS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.7257229749, + 16.0870945547 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aae14aa40b9c3f80ce6da02838a2a550e6307999", + "fields": { + "code_commune_insee": "97203", + "nom_de_la_commune": "BASSE POINTE", + "code_postal": "97218", + "coordonnees_gps": [ + 14.8414694685, + -61.1232211344 + ], + "libelle_d_acheminement": "BASSE POINTE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.1232211344, + 14.8414694685 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c723c7d308a2b06fb55ecc0896bd2df908b1d2d6", + "fields": { + "code_commune_insee": "97210", + "nom_de_la_commune": "LE FRANCOIS", + "code_postal": "97240", + "coordonnees_gps": [ + 14.6060564718, + -60.9057158214 + ], + "libelle_d_acheminement": "LE FRANCOIS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.9057158214, + 14.6060564718 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "69b329f7d447d51d7b35587195cc9a7171678ea1", + "fields": { + "code_commune_insee": "97212", + "nom_de_la_commune": "GROS MORNE", + "code_postal": "97213", + "coordonnees_gps": [ + 14.7121020202, + -61.0260573879 + ], + "libelle_d_acheminement": "GROS MORNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.0260573879, + 14.7121020202 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f5071aaa7b787dc2858d735d61b47ca985ce014b", + "fields": { + "code_commune_insee": "97214", + "nom_de_la_commune": "LE LORRAIN", + "code_postal": "97214", + "coordonnees_gps": [ + 14.801120487, + -61.0765081422 + ], + "libelle_d_acheminement": "LE LORRAIN" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.0765081422, + 14.801120487 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aed353638db8718b2ca4957fcf223233f3eb1d2e", + "fields": { + "code_commune_insee": "97219", + "nom_de_la_commune": "LE PRECHEUR", + "code_postal": "97250", + "coordonnees_gps": [ + 14.8208189879, + -61.2034771768 + ], + "libelle_d_acheminement": "LE PRECHEUR" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.2034771768, + 14.8208189879 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fe746508a6034f851a66b7eec3fe3a1c3eec10d1", + "fields": { + "code_commune_insee": "97221", + "nom_de_la_commune": "RIVIERE SALEE", + "code_postal": "97215", + "coordonnees_gps": [ + 14.5261192696, + -60.9652129464 + ], + "libelle_d_acheminement": "RIVIERE SALEE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.9652129464, + 14.5261192696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "137cdb5f5f6d52066a69128261ab34522f6c95d8", + "fields": { + "ligne_5": "RIVIERE SALEE PETIT BOURG", + "code_commune_insee": "97221", + "libelle_d_acheminement": "RIVIERE SALEE", + "code_postal": "97215", + "nom_de_la_commune": "RIVIERE SALEE", + "coordonnees_gps": [ + 14.5261192696, + -60.9652129464 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.9652129464, + 14.5261192696 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "08820f2caf190f6ca8db30658dab43af44174434", + "fields": { + "code_commune_insee": "97222", + "nom_de_la_commune": "LE ROBERT", + "code_postal": "97231", + "coordonnees_gps": [ + 14.6752109401, + -60.9429518756 + ], + "libelle_d_acheminement": "LE ROBERT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.9429518756, + 14.6752109401 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ffaffd319fd63bc7a6993029aae2aa836612121", + "fields": { + "code_commune_insee": "97227", + "nom_de_la_commune": "STE LUCE", + "code_postal": "97228", + "coordonnees_gps": [ + 14.4855423973, + -60.9451190973 + ], + "libelle_d_acheminement": "STE LUCE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.9451190973, + 14.4855423973 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63664dd000f498dc0c2bef91891113ab986763cd", + "fields": { + "code_commune_insee": "97229", + "nom_de_la_commune": "SCHOELCHER", + "code_postal": "97233", + "coordonnees_gps": [ + 14.6449217661, + -61.100038609 + ], + "libelle_d_acheminement": "SCHOELCHER" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -61.100038609, + 14.6449217661 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b3f99fdc891626ffbe375e7256b4e60493141c7b", + "fields": { + "ligne_5": "KAW", + "code_commune_insee": "97301", + "libelle_d_acheminement": "REGINA", + "code_postal": "97353", + "nom_de_la_commune": "REGINA", + "coordonnees_gps": [ + 3.94091776652, + -52.5199269871 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.5199269871, + 3.94091776652 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "48b075df9a5f7afda9abb22b84ce1c074d77591b", + "fields": { + "code_commune_insee": "97302", + "nom_de_la_commune": "CAYENNE", + "code_postal": "97300", + "coordonnees_gps": [ + 5.02173742828, + -52.5012511113 + ], + "libelle_d_acheminement": "CAYENNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.5012511113, + 5.02173742828 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "80e6e4bea38654086f024888fcf22ee11fa97519", + "fields": { + "code_commune_insee": "97311", + "nom_de_la_commune": "ST LAURENT DU MARONI", + "code_postal": "97320", + "coordonnees_gps": [ + 4.96474398632, + -53.9832113662 + ], + "libelle_d_acheminement": "ST LAURENT DU MARONI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.9832113662, + 4.96474398632 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a2f5f177816f61be7c525b7f7eb1a9dff6845994", + "fields": { + "code_commune_insee": "97312", + "nom_de_la_commune": "SINNAMARY", + "code_postal": "97315", + "coordonnees_gps": [ + 5.23199544843, + -53.01314648 + ], + "libelle_d_acheminement": "SINNAMARY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.01314648, + 5.23199544843 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "090ff3555fb65a1127ecfe526dd5f9920273b169", + "fields": { + "code_commune_insee": "97357", + "nom_de_la_commune": "GRAND SANTI", + "code_postal": "97340", + "coordonnees_gps": [ + 4.3843431186, + -54.1716818959 + ], + "libelle_d_acheminement": "GRAND SANTI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -54.1716818959, + 4.3843431186 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e6f87fe6dc690b89312017a8198216265aa63fcc", + "fields": { + "code_commune_insee": "97358", + "nom_de_la_commune": "ST ELIE", + "code_postal": "97312", + "coordonnees_gps": [ + 4.52922646237, + -53.1006779669 + ], + "libelle_d_acheminement": "ST ELIE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.1006779669, + 4.52922646237 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0776914c42b3d049c3fe4e76dfe767403d1d93c2", + "fields": { + "code_commune_insee": "97361", + "nom_de_la_commune": "AWALA YALIMAPO", + "code_postal": "97319", + "coordonnees_gps": [ + 5.68354192071, + -53.9162639219 + ], + "libelle_d_acheminement": "AWALA YALIMAPO" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -53.9162639219, + 5.68354192071 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5442f4650436af2ee01c9b0718c4e73bd4e7b344", + "fields": { + "ligne_5": "TEVELAVE", + "code_commune_insee": "97401", + "libelle_d_acheminement": "LES AVIRONS", + "code_postal": "97425", + "nom_de_la_commune": "LES AVIRONS", + "coordonnees_gps": [ + -21.2089994294, + 55.3591485447 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3591485447, + -21.2089994294 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "cf791883bc6f1497385caf0b581d0159a2d249b5", + "fields": { + "code_commune_insee": "97403", + "nom_de_la_commune": "ENTRE DEUX", + "code_postal": "97414", + "coordonnees_gps": [ + -21.2042397201, + 55.4922992792 + ], + "libelle_d_acheminement": "ENTRE DEUX" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.4922992792, + -21.2042397201 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "83087499932871bff22acbf0ca4d8a404d584e65", + "fields": { + "code_commune_insee": "97404", + "nom_de_la_commune": "L ETANG SALE", + "code_postal": "97427", + "coordonnees_gps": [ + -21.2494246287, + 55.3667927801 + ], + "libelle_d_acheminement": "L ETANG SALE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3667927801, + -21.2494246287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ab0b3dcbdbbcad5947addd54e9ac925b1881d6b", + "fields": { + "ligne_5": "L ETANG SALE LES BAINS", + "code_commune_insee": "97404", + "libelle_d_acheminement": "L ETANG SALE", + "code_postal": "97427", + "nom_de_la_commune": "L ETANG SALE", + "coordonnees_gps": [ + -21.2494246287, + 55.3667927801 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3667927801, + -21.2494246287 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "740cada321e4f2264e688fafd186051eb0083041", + "fields": { + "ligne_5": "LE PORT ZUP", + "code_commune_insee": "97407", + "libelle_d_acheminement": "LE PORT", + "code_postal": "97420", + "nom_de_la_commune": "LE PORT", + "coordonnees_gps": [ + -20.9448851377, + 55.305326715 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.305326715, + -20.9448851377 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d642ec1853293d23dd49fbcd7834c740768b120b", + "fields": { + "ligne_5": "LA RIVIERE DES GALETS", + "code_commune_insee": "97408", + "libelle_d_acheminement": "LA POSSESSION", + "code_postal": "97419", + "nom_de_la_commune": "LA POSSESSION", + "coordonnees_gps": [ + -20.9940292693, + 55.3975084985 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3975084985, + -20.9940292693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bfefd4be6a92bae3c6d875af86a97f370cfc5b1e", + "fields": { + "ligne_5": "LE DOS D ANE", + "code_commune_insee": "97408", + "libelle_d_acheminement": "LA POSSESSION", + "code_postal": "97419", + "nom_de_la_commune": "LA POSSESSION", + "coordonnees_gps": [ + -20.9940292693, + 55.3975084985 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3975084985, + -20.9940292693 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a5ff4dcfff6d9f04d1adfaccf28d6f378e612d91", + "fields": { + "code_commune_insee": "97409", + "nom_de_la_commune": "ST ANDRE", + "code_postal": "97440", + "coordonnees_gps": [ + -20.9630406732, + 55.6427328786 + ], + "libelle_d_acheminement": "ST ANDRE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.6427328786, + -20.9630406732 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "27adddca56804461db1972ab67c5e15fa3913f37", + "fields": { + "ligne_5": "LE BRULE", + "code_commune_insee": "97411", + "libelle_d_acheminement": "ST DENIS", + "code_postal": "97400", + "nom_de_la_commune": "ST DENIS", + "coordonnees_gps": [ + -20.9329708192, + 55.446867167 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.446867167, + -20.9329708192 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4ffe2ead292bd9d6301c2e524042e9f92571739d", + "fields": { + "ligne_5": "LE PLATE", + "code_commune_insee": "97413", + "libelle_d_acheminement": "ST LEU", + "code_postal": "97424", + "nom_de_la_commune": "ST LEU", + "coordonnees_gps": [ + -21.1665966424, + 55.3331335776 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3331335776, + -21.1665966424 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9de2bb72eb7c21c43cd1de567b1c6e6de057aa6d", + "fields": { + "ligne_5": "LA SALINE", + "code_commune_insee": "97415", + "libelle_d_acheminement": "ST PAUL", + "code_postal": "97422", + "nom_de_la_commune": "ST PAUL", + "coordonnees_gps": [ + -21.0445317522, + 55.3223334298 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3223334298, + -21.0445317522 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a6ac5472807a9295e00873772f12c24ba4f9c8c8", + "fields": { + "ligne_5": "GRAND BOIS", + "code_commune_insee": "97416", + "libelle_d_acheminement": "ST PIERRE", + "code_postal": "97410", + "nom_de_la_commune": "ST PIERRE", + "coordonnees_gps": [ + -21.3123242427, + 55.4936155164 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.4936155164, + -21.3123242427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7e6b76bd7b1c50a4ecce12cdb78ccaa20eeb3640", + "fields": { + "ligne_5": "MONT VERT", + "code_commune_insee": "97416", + "libelle_d_acheminement": "ST PIERRE", + "code_postal": "97410", + "nom_de_la_commune": "ST PIERRE", + "coordonnees_gps": [ + -21.3123242427, + 55.4936155164 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.4936155164, + -21.3123242427 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97da03f7a1c1d712439775da9347ec3e99a43750", + "fields": { + "code_commune_insee": "97419", + "nom_de_la_commune": "STE ROSE", + "code_postal": "97439", + "coordonnees_gps": [ + -21.1925353922, + 55.7545224725 + ], + "libelle_d_acheminement": "STE ROSE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.7545224725, + -21.1925353922 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1ea0b8d34bcc9dcad8d570319cc174f35026c4c1", + "fields": { + "code_commune_insee": "97420", + "nom_de_la_commune": "STE SUZANNE", + "code_postal": "97441", + "coordonnees_gps": [ + -20.9457340523, + 55.5927790824 + ], + "libelle_d_acheminement": "STE SUZANNE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5927790824, + -20.9457340523 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "39e47fc73fc2968d8c044ca95c057a1437d60334", + "fields": { + "ligne_5": "LA PLAINE DES CAFRES", + "code_commune_insee": "97422", + "libelle_d_acheminement": "LE TAMPON", + "code_postal": "97418", + "nom_de_la_commune": "LE TAMPON", + "coordonnees_gps": [ + -21.223274585, + 55.5584875266 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5584875266, + -21.223274585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "05cf90a334a6f3b61914562eb05fe24859521625", + "fields": { + "ligne_5": "PONT D YVES", + "code_commune_insee": "97422", + "libelle_d_acheminement": "LE TAMPON", + "code_postal": "97430", + "nom_de_la_commune": "LE TAMPON", + "coordonnees_gps": [ + -21.223274585, + 55.5584875266 + ] + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.5584875266, + -21.223274585 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "597cc6fac50ab0612666ec8aef8964792baaedc5", + "fields": { + "code_commune_insee": "97423", + "nom_de_la_commune": "LES TROIS BASSINS", + "code_postal": "97426", + "coordonnees_gps": [ + -21.1104753596, + 55.3297522865 + ], + "libelle_d_acheminement": "LES TROIS BASSINS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 55.3297522865, + -21.1104753596 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "09fbda76705b6d4870661ce42678bd901faf24ce", + "fields": { + "code_commune_insee": "97604", + "nom_de_la_commune": "BOUENI", + "code_postal": "97620", + "coordonnees_gps": [ + -12.9244813606, + 45.0984953615 + ], + "libelle_d_acheminement": "BOUENI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.0984953615, + -12.9244813606 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5c90e6944fc3dfabf151ba9cbb7334bccfd1d983", + "fields": { + "code_commune_insee": "97607", + "nom_de_la_commune": "DEMBENI", + "code_postal": "97660", + "coordonnees_gps": [ + -12.8534223602, + 45.1755961092 + ], + "libelle_d_acheminement": "DEMBENI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.1755961092, + -12.8534223602 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "50bb7adf0328ed502761345bf563e9938261b8c8", + "fields": { + "code_commune_insee": "97608", + "nom_de_la_commune": "DZAOUDZI", + "code_postal": "97615", + "coordonnees_gps": [ + -12.7791666355, + 45.2822648358 + ], + "libelle_d_acheminement": "DZAOUDZI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.2822648358, + -12.7791666355 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7b9e16b4c68d2a3253777c1af9f5553cd2b02dda", + "fields": { + "code_commune_insee": "97615", + "nom_de_la_commune": "PAMANDZI", + "code_postal": "97615", + "coordonnees_gps": [ + -12.7961353309, + 45.2842063102 + ], + "libelle_d_acheminement": "PAMANDZI" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 45.2842063102, + -12.7961353309 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d0a299e68621abe16260eed1e4d41a9e64c1076f", + "fields": { + "nom_de_la_commune": "ALO", + "code_postal": "98610", + "code_commune_insee": "98611", + "libelle_d_acheminement": "ALO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7988f13a90a7a2fdd51e154a32d4e903d336f54b", + "fields": { + "nom_de_la_commune": "UVEA", + "code_postal": "98600", + "code_commune_insee": "98613", + "libelle_d_acheminement": "UVEA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "7ab347f20b85aa092985317f788c0973c7de4d6a", + "fields": { + "nom_de_la_commune": "ARUTUA", + "ligne_5": "ARUTUA", + "code_postal": "98785", + "code_commune_insee": "98713", + "libelle_d_acheminement": "RAITAHITI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "1396e3781a394348942e95c91c91272cd2286833", + "fields": { + "nom_de_la_commune": "FAKARAVA", + "ligne_5": "FAKARAVA", + "code_postal": "98787", + "code_commune_insee": "98716", + "libelle_d_acheminement": "TEARAVERO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "c1fad9a024c24e7ff3523b8c0eaa39a2a8a16214", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98755", + "code_commune_insee": "98719", + "libelle_d_acheminement": "ANGAKAUITAI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "086bb09b228cb8b2885fb751c9631732cbdf26ad", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98792", + "code_commune_insee": "98719", + "libelle_d_acheminement": "VAHANGA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "03aaf0aff60871076ae0359da2d6ae731b4b2366", + "fields": { + "nom_de_la_commune": "GAMBIER", + "ligne_5": "GAMBIER", + "code_postal": "98792", + "code_commune_insee": "98719", + "libelle_d_acheminement": "MARIA EST" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "990d0aee357b0d422e16b02a60d68eed18213153", + "fields": { + "nom_de_la_commune": "HAO", + "ligne_5": "HAO", + "code_postal": "98790", + "code_commune_insee": "98720", + "libelle_d_acheminement": "AMANU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "477608abf4a913439aceea5296eeaec87bb0f2c1", + "fields": { + "nom_de_la_commune": "HAO", + "ligne_5": "HAO", + "code_postal": "98790", + "code_commune_insee": "98720", + "libelle_d_acheminement": "HIKITAKE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "9da85a8968640c9837b1c84390e28f808b6a9cb9", + "fields": { + "nom_de_la_commune": "HAO", + "ligne_5": "HAO", + "code_postal": "98790", + "code_commune_insee": "98720", + "libelle_d_acheminement": "MANUHANGI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "033b084f84b72debf180baf038beb073752abdfa", + "fields": { + "nom_de_la_commune": "HAO", + "ligne_5": "HAO", + "code_postal": "98790", + "code_commune_insee": "98720", + "libelle_d_acheminement": "TEANOGA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d952dcdaf8a6f00c10112d98f4fe1384b66f1127", + "fields": { + "nom_de_la_commune": "HITIAA O TE RA", + "ligne_5": "HITIAA O TE RA", + "code_postal": "98705", + "code_commune_insee": "98722", + "libelle_d_acheminement": "HITIAA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "b2f32598405c473b5b4065bfb7dfecfeba66ca49", + "fields": { + "nom_de_la_commune": "HITIAA O TE RA", + "ligne_5": "HITIAA O TE RA", + "code_postal": "98706", + "code_commune_insee": "98722", + "libelle_d_acheminement": "MAHAENA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f373cf08f07e923a811015a3f4fd27892daffe7", + "fields": { + "nom_de_la_commune": "HIVA OA", + "ligne_5": "HIVA OA", + "code_postal": "98741", + "code_commune_insee": "98723", + "libelle_d_acheminement": "HANAPAOA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "fc64da75034b9ac14ff97d5cf4430cc15f89c00d", + "fields": { + "nom_de_la_commune": "HIVA OA", + "ligne_5": "HIVA OA", + "code_postal": "98749", + "code_commune_insee": "98723", + "libelle_d_acheminement": "PUAMAU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ebd73a09643c6cfd73db7b889b78f7033e7ca6bf", + "fields": { + "nom_de_la_commune": "HIVA OA", + "ligne_5": "HIVA OA", + "code_postal": "98796", + "code_commune_insee": "98723", + "libelle_d_acheminement": "FATU HUKU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "57eb421ae3a364ca93386eae4f2e50aabdf98273", + "fields": { + "nom_de_la_commune": "HUAHINE", + "ligne_5": "HUAHINE", + "code_postal": "98731", + "code_commune_insee": "98724", + "libelle_d_acheminement": "FAIE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "6ca7fc5494108b1c1e375f429f47b755bba3416e", + "fields": { + "nom_de_la_commune": "MAKEMO", + "ligne_5": "MAKEMO", + "code_postal": "98769", + "code_commune_insee": "98726", + "libelle_d_acheminement": "POUHEVA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8a90c2fb8061f4984633ded4023228fb3df8005e", + "fields": { + "nom_de_la_commune": "MAKEMO", + "ligne_5": "MAKEMO", + "code_postal": "98790", + "code_commune_insee": "98726", + "libelle_d_acheminement": "MARUTEA NORD" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae0a33bce064ee9bdc03f5afe42a1bbe1a0a0f82", + "fields": { + "nom_de_la_commune": "MAKEMO", + "ligne_5": "MAKEMO", + "code_postal": "98790", + "code_commune_insee": "98726", + "libelle_d_acheminement": "OTATAKE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "379548670a2820776066fc49ccbfc654d4ee84f2", + "fields": { + "nom_de_la_commune": "MAKEMO", + "ligne_5": "MAKEMO", + "code_postal": "98790", + "code_commune_insee": "98726", + "libelle_d_acheminement": "TEPOTO SUD" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "37ec6bd4035c8356be458c1cb79088ec4264b483", + "fields": { + "nom_de_la_commune": "MAKEMO", + "ligne_5": "MAKEMO", + "code_postal": "98790", + "code_commune_insee": "98726", + "libelle_d_acheminement": "TUANAKE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "4e649d892cef6b1f9d430875bda1346988233b75", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98728", + "code_commune_insee": "98729", + "libelle_d_acheminement": "AFAREAITU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ad72cbe5c616b0b9b5fb565cb54e9a2115e8b36c", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98729", + "code_commune_insee": "98729", + "libelle_d_acheminement": "MAIAO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2f47fa9781e284abd0950c3d11dc9d237bf0ec45", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98729", + "code_commune_insee": "98729", + "libelle_d_acheminement": "HAURU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f093217c985f96482dbb20dcaabff0e0b8ccc6e2", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98729", + "code_commune_insee": "98729", + "libelle_d_acheminement": "PAPETOAI" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "386b3fc2fc8a12cdd1fe06381c72011ebb7ae27d", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98729", + "code_commune_insee": "98729", + "libelle_d_acheminement": "TIAHURA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "36d12733ee83132b96cb7b5ae78905b69be03cc3", + "fields": { + "nom_de_la_commune": "MOOREA MAIAO", + "ligne_5": "MOOREA MAIAO", + "code_postal": "98729", + "code_commune_insee": "98729", + "libelle_d_acheminement": "VAIANAE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "f7ce02419abbb8fa60e97a05e4b8df327c428847", + "fields": { + "nom_de_la_commune": "NUKU HIVA", + "ligne_5": "NUKU HIVA", + "code_postal": "98742", + "code_commune_insee": "98731", + "libelle_d_acheminement": "TAIOHAE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "606345182a54f4827d72459e748deeb60f1a5e2f", + "fields": { + "nom_de_la_commune": "NUKU HIVA", + "ligne_5": "NUKU HIVA", + "code_postal": "98796", + "code_commune_insee": "98731", + "libelle_d_acheminement": "EIAO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e451f5a9b5199abcf506c0db020581a663b11c01", + "fields": { + "nom_de_la_commune": "NUKUTAVAKE", + "ligne_5": "NUKUTAVAKE", + "code_postal": "98788", + "code_commune_insee": "98732", + "libelle_d_acheminement": "TEMANUFAARA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "04b10f9319fc706b31537c88b82b72ade476447b", + "fields": { + "nom_de_la_commune": "RANGIROA", + "ligne_5": "RANGIROA", + "code_postal": "98776", + "code_commune_insee": "98740", + "libelle_d_acheminement": "TIPUTA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0bd40286d314e750f53d30f2fd9a2ff435cc165", + "fields": { + "nom_de_la_commune": "RANGIROA", + "ligne_5": "RANGIROA", + "code_postal": "98790", + "code_commune_insee": "98740", + "libelle_d_acheminement": "VAITEPAUA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2c95655b5e4bb13da6e9153d753b65b61be1fab2", + "fields": { + "nom_de_la_commune": "REAO", + "ligne_5": "REAO", + "code_postal": "98780", + "code_commune_insee": "98742", + "libelle_d_acheminement": "MARAUTAGAROA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5f51b087482ef15aa0f67a2242b680076969163f", + "fields": { + "nom_de_la_commune": "RIMATARA", + "ligne_5": "RIMATARA", + "code_postal": "98752", + "code_commune_insee": "98743", + "libelle_d_acheminement": "ANAPOTO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "8f9f9130146a2d55f45c2f0854b27b1228380acc", + "fields": { + "nom_de_la_commune": "RIMATARA", + "ligne_5": "RIMATARA", + "code_postal": "98752", + "code_commune_insee": "98743", + "libelle_d_acheminement": "MUTUAURA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e143bfbc1e569866ed60f69e39e0445a148cd149", + "fields": { + "nom_de_la_commune": "RURUTU", + "ligne_5": "RURUTU", + "code_postal": "98753", + "code_commune_insee": "98744", + "libelle_d_acheminement": "AVERA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a593b20ec89118553fb8337d28c2891f55d3d2ef", + "fields": { + "nom_de_la_commune": "TAHAA", + "ligne_5": "TAHAA", + "code_postal": "98733", + "code_commune_insee": "98745", + "libelle_d_acheminement": "RUUTIA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "63bebf0399329dcbc502cf49163c242b4b390f8e", + "fields": { + "nom_de_la_commune": "TAHAA", + "ligne_5": "TAHAA", + "code_postal": "98733", + "code_commune_insee": "98745", + "libelle_d_acheminement": "TAPUAMU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "df61cb850cd2727739598b776417204588900b38", + "fields": { + "nom_de_la_commune": "TAHAA", + "ligne_5": "TAHAA", + "code_postal": "98734", + "code_commune_insee": "98745", + "libelle_d_acheminement": "VAITOARE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a75b7a7f865d88006ac40e700a007cae664435cd", + "fields": { + "nom_de_la_commune": "TAHUATA", + "ligne_5": "TAHUATA", + "code_postal": "98743", + "code_commune_insee": "98746", + "libelle_d_acheminement": "MOTOPU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "0784f38acb9660fdd908d09a4850a48e39f7ec88", + "fields": { + "nom_de_la_commune": "TAHUATA", + "ligne_5": "TAHUATA", + "code_postal": "98743", + "code_commune_insee": "98746", + "libelle_d_acheminement": "HANATETENA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "599c4f85d5abf8361e75a49a632c2a9aff7d2526", + "fields": { + "nom_de_la_commune": "TAIARAPU OUEST", + "ligne_5": "TAIARAPU OUEST", + "code_postal": "98723", + "code_commune_insee": "98748", + "libelle_d_acheminement": "TEAHUPOO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e0c0a5e2447391093299845edc1cd90472977854", + "fields": { + "nom_de_la_commune": "TAPUTAPUATEA", + "code_postal": "98735", + "code_commune_insee": "98750", + "libelle_d_acheminement": "TAPUTAPUATEA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "d73715bf4a312d24c9eb390a5c3ffb39d97af358", + "fields": { + "nom_de_la_commune": "TEVA I UTA", + "ligne_5": "TEVA I UTA", + "code_postal": "98726", + "code_commune_insee": "98752", + "libelle_d_acheminement": "MATAIEA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "29d5c73a19270d5583451edafe82b0acd588bd28", + "fields": { + "nom_de_la_commune": "TUBUAI", + "ligne_5": "TUBUAI", + "code_postal": "98754", + "code_commune_insee": "98753", + "libelle_d_acheminement": "MAHU" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "5ad7dc34ca93bb1aa59a8da0a50e0b26639eed8a", + "fields": { + "nom_de_la_commune": "UA HUKA", + "ligne_5": "UA HUKA", + "code_postal": "98747", + "code_commune_insee": "98756", + "libelle_d_acheminement": "HANE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "2dc2f01f514a7bd25ee589074497af835eb079cf", + "fields": { + "nom_de_la_commune": "BOULOUPARI", + "code_postal": "98812", + "code_commune_insee": "98802", + "libelle_d_acheminement": "BOULOUPARIS" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "24de990f9acecccd0d5b37719aa08497f5f30930", + "fields": { + "nom_de_la_commune": "DUMBEA", + "ligne_5": "DUMBEA", + "code_postal": "98836", + "code_commune_insee": "98805", + "libelle_d_acheminement": "DUMBEA GA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "561f720dfcf8db38652a5c67942ad48ee267f8ef", + "fields": { + "nom_de_la_commune": "HIENGHENE", + "code_postal": "98815", + "code_commune_insee": "98807", + "libelle_d_acheminement": "HIENGHENE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "06462464ea2f7117734b705d7c0914fa523ab614", + "fields": { + "nom_de_la_commune": "L ILE DES PINS", + "ligne_5": "L ILE DES PINS", + "code_postal": "98832", + "code_commune_insee": "98809", + "libelle_d_acheminement": "VAO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "3a06fcaf0708e8052c965e74da6a47dcda70256e", + "fields": { + "nom_de_la_commune": "LE MONT DORE", + "code_postal": "98810", + "code_commune_insee": "98817", + "libelle_d_acheminement": "MONT DORE" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "db10289bd074cc9cf3317b96e4ae20f4001d94b4", + "fields": { + "nom_de_la_commune": "POUEBO", + "code_postal": "98824", + "code_commune_insee": "98824", + "libelle_d_acheminement": "POUEBO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "97719f28a9dc42fd448347b2fb6dc01ad4003e16", + "fields": { + "nom_de_la_commune": "POUEMBOUT", + "code_postal": "98825", + "code_commune_insee": "98825", + "libelle_d_acheminement": "POUEMBOUT" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "a3007754b816e668bb432530ce63aa0e6bf363b1", + "fields": { + "nom_de_la_commune": "SARRAMEA", + "code_postal": "98882", + "code_commune_insee": "98828", + "libelle_d_acheminement": "SARRAMEA" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "bf472305e66faf4949e9808bcb7e32f9c2e0590b", + "fields": { + "nom_de_la_commune": "TOUHO", + "code_postal": "98831", + "code_commune_insee": "98830", + "libelle_d_acheminement": "TOUHO" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "85b8b659fd308cc5f33097dd8546edea530a75cd", + "fields": { + "nom_de_la_commune": "ILE DE CLIPPERTON", + "code_postal": "98799", + "code_commune_insee": "98901", + "libelle_d_acheminement": "ILE DE CLIPPERTON" + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "e48e68ff39dcee50c616d4ea7f952326b924a748", + "fields": { + "code_commune_insee": "74193", + "nom_de_la_commune": "LA MURAZ", + "code_postal": "74560", + "coordonnees_gps": [ + 46.1193345153, + 6.19613166236 + ], + "libelle_d_acheminement": "LA MURAZ" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.19613166236, + 46.1193345153 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "eafa6dea1bc83a65d6ddc1405a6eedeba136cf57", + "fields": { + "code_commune_insee": "74200", + "nom_de_la_commune": "NEUVECELLE", + "code_postal": "74500", + "coordonnees_gps": [ + 46.3921186949, + 6.60933233238 + ], + "libelle_d_acheminement": "NEUVECELLE" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.60933233238, + 46.3921186949 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "aa12c7b381f23b6c9d7e983dd3bf776cce004fc1", + "fields": { + "code_commune_insee": "74202", + "nom_de_la_commune": "NONGLARD", + "code_postal": "74330", + "coordonnees_gps": [ + 45.9228803405, + 6.02730833828 + ], + "libelle_d_acheminement": "NONGLARD" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02730833828, + 45.9228803405 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + }, + { + "datasetid": "laposte_hexasmal", + "recordid": "ae1cfdf0da73ce514906243839cc148ccda2aa19", + "fields": { + "code_commune_insee": "74211", + "nom_de_la_commune": "PERS JUSSY", + "code_postal": "74930", + "coordonnees_gps": [ + 46.1018355447, + 6.25852776575 + ], + "libelle_d_acheminement": "PERS JUSSY" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.25852776575, + 46.1018355447 + ] + }, + "record_timestamp": "2021-01-16T00:38:00+01:00" + } +] diff --git a/flatisfy/database/__init__.py b/flatisfy/database/__init__.py index d6780fd..1863e66 100644 --- a/flatisfy/database/__init__.py +++ b/flatisfy/database/__init__.py @@ -47,9 +47,7 @@ def init_db(database_uri=None, search_db_uri=None): Session = sessionmaker(bind=engine) # pylint: disable=locally-disabled,invalid-name if search_db_uri: - index_service = IndexService( - whoosh_base=search_db_uri - ) + index_service = IndexService(whoosh_base=search_db_uri) index_service.register_class(flatisfy.models.flat.Flat) @contextmanager diff --git a/flatisfy/database/types.py b/flatisfy/database/types.py index ef048d1..c7d09d1 100644 --- a/flatisfy/database/types.py +++ b/flatisfy/database/types.py @@ -50,4 +50,4 @@ class StringyJSON(types.TypeDecorator): # TypeEngine.with_variant says "use StringyJSON instead when # connecting to 'sqlite'" # pylint: disable=locally-disabled,invalid-name -MagicJSON = types.JSON().with_variant(StringyJSON, 'sqlite') +MagicJSON = types.JSON().with_variant(StringyJSON, "sqlite") diff --git a/flatisfy/database/whooshalchemy.py b/flatisfy/database/whooshalchemy.py index 07cfc0d..b14f412 100644 --- a/flatisfy/database/whooshalchemy.py +++ b/flatisfy/database/whooshalchemy.py @@ -30,7 +30,6 @@ from whoosh.qparser import MultifieldParser class IndexService(object): - def __init__(self, config=None, whoosh_base=None): if not whoosh_base and config: whoosh_base = config.get("WHOOSH_BASE") @@ -84,8 +83,7 @@ class IndexService(object): primary = field.name continue if field.name in model_class.__searchable__: - schema[field.name] = whoosh.fields.TEXT( - analyzer=StemmingAnalyzer()) + schema[field.name] = whoosh.fields.TEXT(analyzer=StemmingAnalyzer()) return Schema(**schema), primary def before_commit(self, session): @@ -93,21 +91,18 @@ class IndexService(object): for model in session.new: model_class = model.__class__ - if hasattr(model_class, '__searchable__'): - self.to_update.setdefault(model_class.__name__, []).append( - ("new", model)) + if hasattr(model_class, "__searchable__"): + self.to_update.setdefault(model_class.__name__, []).append(("new", model)) for model in session.deleted: model_class = model.__class__ - if hasattr(model_class, '__searchable__'): - self.to_update.setdefault(model_class.__name__, []).append( - ("deleted", model)) + if hasattr(model_class, "__searchable__"): + self.to_update.setdefault(model_class.__name__, []).append(("deleted", model)) for model in session.dirty: model_class = model.__class__ - if hasattr(model_class, '__searchable__'): - self.to_update.setdefault(model_class.__name__, []).append( - ("changed", model)) + if hasattr(model_class, "__searchable__"): + self.to_update.setdefault(model_class.__name__, []).append(("changed", model)) def after_commit(self, session): """ @@ -128,16 +123,11 @@ class IndexService(object): # added as a new doc. Could probably replace this with a whoosh # update. - writer.delete_by_term( - primary_field, text_type(getattr(model, primary_field))) + writer.delete_by_term(primary_field, text_type(getattr(model, primary_field))) if change_type in ("new", "changed"): - attrs = dict((key, getattr(model, key)) - for key in searchable) - attrs = { - attr: text_type(getattr(model, attr)) - for attr in attrs.keys() - } + attrs = dict((key, getattr(model, key)) for key in searchable) + attrs = {attr: text_type(getattr(model, attr)) for attr in attrs.keys()} attrs[primary_field] = text_type(getattr(model, primary_field)) writer.add_document(**attrs) @@ -158,8 +148,7 @@ class Searcher(object): self.parser = MultifieldParser(list(fields), index.schema) def __call__(self, session, query, limit=None): - results = self.index.searcher().search( - self.parser.parse(query), limit=limit) + results = self.index.searcher().search(self.parser.parse(query), limit=limit) keys = [x[self.primary] for x in results] primary_column = getattr(self.model_class, self.primary) diff --git a/flatisfy/email.py b/flatisfy/email.py index 5128db0..36cb4b2 100644 --- a/flatisfy/email.py +++ b/flatisfy/email.py @@ -8,7 +8,7 @@ from builtins import str import logging import smtplib - +from money import Money from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText from email.utils import formatdate, make_msgid @@ -36,15 +36,15 @@ def send_email(server, port, subject, _from, _to, txt, html, username=None, pass if username or password: server.login(username or "", password or "") - msg = MIMEMultipart('alternative') - msg['Subject'] = subject - msg['From'] = _from - msg['To'] = ', '.join(_to) - msg['Date'] = formatdate() - msg['Message-ID'] = make_msgid() + msg = MIMEMultipart("alternative") + msg["Subject"] = subject + msg["From"] = _from + msg["To"] = ", ".join(_to) + msg["Date"] = formatdate() + msg["Message-ID"] = make_msgid() - msg.attach(MIMEText(txt, 'plain', 'utf-8')) - msg.attach(MIMEText(html, 'html', 'utf-8')) + msg.attach(MIMEText(txt, "plain", "utf-8")) + msg.attach(MIMEText(html, "html", "utf-8")) server.sendmail(_from, _to, msg.as_string()) server.quit() @@ -61,13 +61,33 @@ def send_notification(config, flats): if not flats: return - txt = u'Hello dear user,\n\nThe following new flats have been found:\n\n' - html = """ + i18n = { + "en": { + "subject": f"{len(flats)} new flats found!", + "hello": "Hello dear user", + "following_new_flats": "The following new flats have been found:", + "area": "area", + "cost": "cost", + "signature": "Hope you'll find what you were looking for.", + }, + "fr": { + "subject": f"{len(flats)} nouvelles annonces disponibles !", + "hello": "Bonjour cher utilisateur", + "following_new_flats": "Voici les nouvelles annonces :", + "area": "surface", + "cost": "coût", + "signature": "Bonne recherche", + }, + } + trs = i18n.get(config["notification_lang"], "en") + + txt = trs["hello"] + ",\n\n\n\n" + html = f""" -

Hello dear user!

-

The following new flats have been found: +

{trs["hello"]}!

+

{trs["following_new_flats"]}

" - signature = ( - u"\nHope you'll find what you were looking for.\n\nBye!\nFlatisfy" - ) + signature = f"\n{trs['signature']}\n\nBye!\nFlatisfy" txt += signature - html += signature.replace('\n', '
') + html += signature.replace("\n", "
") html += """

""" - send_email(config["smtp_server"], - config["smtp_port"], - "New flats found!", - config["smtp_from"], - config["smtp_to"], - txt, - html, - config.get("smtp_username"), - config.get("smtp_password")) + send_email( + config["smtp_server"], + config["smtp_port"], + trs["subject"], + config["smtp_from"], + config["smtp_to"], + txt, + html, + config.get("smtp_username"), + config.get("smtp_password"), + ) diff --git a/flatisfy/exceptions.py b/flatisfy/exceptions.py index 7df69be..f39ccde 100644 --- a/flatisfy/exceptions.py +++ b/flatisfy/exceptions.py @@ -10,4 +10,5 @@ class DataBuildError(Exception): """ Error occurring on building a data file. """ + pass diff --git a/flatisfy/fetch.py b/flatisfy/fetch.py index 9867de6..a6391d2 100644 --- a/flatisfy/fetch.py +++ b/flatisfy/fetch.py @@ -9,6 +9,7 @@ import collections import itertools import json import logging +from ratelimit import limits from flatisfy import database from flatisfy import tools @@ -24,8 +25,7 @@ try: from weboob.core.ouiboube import WebNip from weboob.tools.json import WeboobEncoder except ImportError: - LOGGER.error("Weboob is not available on your system. Make sure you " - "installed it.") + LOGGER.error("Weboob is not available on your system. Make sure you installed it.") raise @@ -34,6 +34,7 @@ class WebOOBProxy(object): Wrapper around WebOOB ``WebNip`` class, to fetch housing posts without having to spawn a subprocess. """ + @staticmethod def version(): """ @@ -77,14 +78,14 @@ class WebOOBProxy(object): self.webnip = WebNip(modules_path=config["modules_path"]) # Create backends - self.backends = [ - self.webnip.load_backend( - module, - module, - params={} - ) - for module in backends - ] + self.backends = [] + for module in backends: + try: + self.backends.append( + self.webnip.load_backend(module, module, params={}) + ) + except Exception as exc: + raise Exception('Unable to load module ' + module) from exc def __enter__(self): return self @@ -114,28 +115,21 @@ class WebOOBProxy(object): except CallErrors as exc: # If an error occured, just log it LOGGER.error( - ( - "An error occured while building query for " - "postal code %s: %s" - ), + ("An error occured while building query for postal code %s: %s"), postal_code, - str(exc) + str(exc), ) if not matching_cities: # If postal code gave no match, warn the user - LOGGER.warn( - "Postal code %s could not be matched with a city.", - postal_code - ) + LOGGER.warn("Postal code %s could not be matched with a city.", postal_code) # Remove "TOUTES COMMUNES" entry which are duplicates of the individual # cities entries in Logicimmo module. matching_cities = [ city for city in matching_cities - if not (city.backend == 'logicimmo' and - city.name.startswith('TOUTES COMMUNES')) + if not (city.backend == "logicimmo" and city.name.startswith("TOUTES COMMUNES")) ] # Then, build queries by grouping cities by at most 3 @@ -145,21 +139,14 @@ class WebOOBProxy(object): try: query.house_types = [ - getattr( - HOUSE_TYPES, - house_type.upper() - ) - for house_type in constraints_dict["house_types"] + getattr(HOUSE_TYPES, house_type.upper()) for house_type in constraints_dict["house_types"] ] except AttributeError: LOGGER.error("Invalid house types constraint.") return None try: - query.type = getattr( - POSTS_TYPES, - constraints_dict["type"].upper() - ) + query.type = getattr(POSTS_TYPES, constraints_dict["type"].upper()) except AttributeError: LOGGER.error("Invalid post type constraint.") return None @@ -190,26 +177,22 @@ class WebOOBProxy(object): # TODO: Handle max_entries better try: for housing in itertools.islice( - self.webnip.do( - 'search_housings', - query, - # Only run the call on the required backends. - # Otherwise, WebOOB is doing weird stuff and returning - # nonsense. - backends=[x for x in self.backends - if x.name in useful_backends] - ), - max_entries + self.webnip.do( + "search_housings", + query, + # Only run the call on the required backends. + # Otherwise, WebOOB is doing weird stuff and returning + # nonsense. + backends=[x for x in self.backends if x.name in useful_backends], + ), + max_entries, ): if not store_personal_data: housing.phone = None housings.append(json.dumps(housing, cls=WeboobEncoder)) except CallErrors as exc: # If an error occured, just log it - LOGGER.error( - "An error occured while fetching the housing posts: %s", - str(exc) - ) + LOGGER.error("An error occured while fetching the housing posts: %s", str(exc)) return housings def info(self, full_flat_id, store_personal_data=False): @@ -224,34 +207,26 @@ class WebOOBProxy(object): """ flat_id, backend_name = full_flat_id.rsplit("@", 1) try: - backend = next( - backend - for backend in self.backends - if backend.name == backend_name - ) + backend = next(backend for backend in self.backends if backend.name == backend_name) except StopIteration: LOGGER.error("Backend %s is not available.", backend_name) return "{}" try: housing = backend.get_housing(flat_id) - # Otherwise, we miss the @backend afterwards - housing.id = full_flat_id if not store_personal_data: # Ensure phone is cleared housing.phone = None else: # Ensure phone is fetched - backend.fillobj(housing, 'phone') + backend.fillobj(housing, "phone") + # Otherwise, we miss the @backend afterwards + housing.id = full_flat_id return json.dumps(housing, cls=WeboobEncoder) except Exception as exc: # pylint: disable=broad-except # If an error occured, just log it - LOGGER.error( - "An error occured while fetching housing %s: %s", - full_flat_id, - str(exc) - ) + LOGGER.error("An error occured while fetching housing %s: %s", full_flat_id, str(exc)) return "{}" @@ -271,19 +246,24 @@ def fetch_flats(config): queries = webOOB_proxy.build_queries(constraint) housing_posts = [] for query in queries: - housing_posts.extend( - webOOB_proxy.query(query, config["max_entries"], - config["store_personal_data"]) - ) + housing_posts.extend(webOOB_proxy.query(query, config["max_entries"], config["store_personal_data"])) + housing_posts = housing_posts[: config["max_entries"]] LOGGER.info("Fetched %d flats.", len(housing_posts)) constraint_flats_list = [json.loads(flat) for flat in housing_posts] - constraint_flats_list = [WebOOBProxy.restore_decimal_fields(flat) - for flat in constraint_flats_list] + constraint_flats_list = [WebOOBProxy.restore_decimal_fields(flat) for flat in constraint_flats_list] fetched_flats[constraint_name] = constraint_flats_list return fetched_flats +@limits(calls=10, period=60) +def fetch_details_rate_limited(config, flat_id): + """ + Limit flats fetching to at most 10 calls per minute to avoid rate banning + """ + return fetch_details(config, flat_id) + + def fetch_details(config, flat_id): """ Fetch the additional details for a flat using Flatboob / WebOOB. @@ -294,8 +274,7 @@ def fetch_details(config, flat_id): """ with WebOOBProxy(config) as webOOB_proxy: LOGGER.info("Loading additional details for flat %s.", flat_id) - webOOB_output = webOOB_proxy.info(flat_id, - config["store_personal_data"]) + webOOB_output = webOOB_proxy.info(flat_id, config["store_personal_data"]) flat_details = json.loads(webOOB_output) flat_details = WebOOBProxy.restore_decimal_fields(flat_details) @@ -326,10 +305,7 @@ def load_flats_from_file(json_file, config): LOGGER.info("Found %d flats.", len(flats_list)) except (IOError, ValueError): LOGGER.error("File %s is not a valid dump file.", json_file) - return { - constraint_name: flats_list - for constraint_name in config["constraints"] - } + return {constraint_name: flats_list for constraint_name in config["constraints"]} def load_flats_from_db(config): diff --git a/flatisfy/filters/__init__.py b/flatisfy/filters/__init__.py index 5b31075..b92e893 100644 --- a/flatisfy/filters/__init__.py +++ b/flatisfy/filters/__init__.py @@ -36,48 +36,51 @@ def refine_with_housing_criteria(flats_list, constraint): for i, flat in enumerate(flats_list): # Check postal code postal_code = flat["flatisfy"].get("postal_code", None) - if ( - postal_code and - postal_code not in constraint["postal_codes"] - ): - LOGGER.info("Postal code for flat %s is out of range.", flat["id"]) - is_ok[i] = is_ok[i] and False + if postal_code and postal_code not in constraint["postal_codes"]: + LOGGER.info( + "Postal code %s for flat %s is out of range (%s).", + postal_code, + flat["id"], + ", ".join(constraint["postal_codes"]), + ) + is_ok[i] = False + # Check insee code + insee_code = flat["flatisfy"].get("insee_code", None) + if insee_code and "insee_codes" in constraint and insee_code not in constraint["insee_codes"]: + LOGGER.info( + "insee code %s for flat %s is out of range (%s).", + insee_code, + flat["id"], + ", ".join(constraint["insee_codes"]), + ) + is_ok[i] = False # Check time_to for place_name, time in flat["flatisfy"].get("time_to", {}).items(): time = time["time"] - is_within_interval = tools.is_within_interval( - time, - *(constraint["time_to"][place_name]["time"]) - ) + is_within_interval = tools.is_within_interval(time, *(constraint["time_to"][place_name]["time"])) if not is_within_interval: - LOGGER.info("Flat %s is too far from place %s: %ds.", - flat["id"], place_name, time) + LOGGER.info( + "Flat %s is too far from place %s: %ds.", + flat["id"], + place_name, + time, + ) is_ok[i] = is_ok[i] and is_within_interval # Check other fields for field in ["area", "cost", "rooms", "bedrooms"]: interval = constraint[field] - is_within_interval = tools.is_within_interval( - flat.get(field, None), - *interval - ) + is_within_interval = tools.is_within_interval(flat.get(field, None), *interval) if not is_within_interval: - LOGGER.info("%s for flat %s is out of range.", - field.capitalize(), flat["id"]) + LOGGER.info( + "%s %s for flat %s is out of range.", field.capitalize(), str(flat.get(field, None)), flat["id"] + ) is_ok[i] = is_ok[i] and is_within_interval return ( - [ - flat - for i, flat in enumerate(flats_list) - if is_ok[i] - ], - [ - flat - for i, flat in enumerate(flats_list) - if not is_ok[i] - ] + [flat for i, flat in enumerate(flats_list) if is_ok[i]], + [flat for i, flat in enumerate(flats_list) if not is_ok[i]], ) @@ -103,54 +106,36 @@ def refine_with_details_criteria(flats_list, constraint): for i, flat in enumerate(flats_list): # Check number of pictures - has_enough_photos = tools.is_within_interval( - len(flat.get('photos', [])), - constraint['minimum_nb_photos'], - None - ) + has_enough_photos = tools.is_within_interval(len(flat.get("photos", [])), constraint["minimum_nb_photos"], None) if not has_enough_photos: LOGGER.info( "Flat %s only has %d photos, it should have at least %d.", flat["id"], - len(flat['photos']), - constraint['minimum_nb_photos'] + len(flat["photos"]), + constraint["minimum_nb_photos"], ) is_ok[i] = False - has_all_good_terms_in_description = True - if constraint["description_should_contain"]: - has_all_good_terms_in_description = all( - term in flat['text'] - for term in constraint["description_should_contain"] - ) - - has_a_bad_term_in_description = False - if constraint["description_should_not_contain"]: - has_a_bad_term_in_description = any( - term in flat['text'] - for term in constraint["description_should_not_contain"] - ) - - if (not has_all_good_terms_in_description - or has_a_bad_term_in_description): - LOGGER.info( - ("Description for flat %s does not contain all the required " - "terms, or contains a blacklisted term."), - flat["id"] - ) - is_ok[i] = False + for term in constraint["description_should_contain"]: + if term.lower() not in flat["text"].lower(): + LOGGER.info( + ("Description for flat %s does not contain required term '%s'."), + flat["id"], + term, + ) + is_ok[i] = False + for term in constraint["description_should_not_contain"]: + if term.lower() in flat["text"].lower(): + LOGGER.info( + ("Description for flat %s contains blacklisted term '%s'."), + flat["id"], + term, + ) + is_ok[i] = False return ( - [ - flat - for i, flat in enumerate(flats_list) - if is_ok[i] - ], - [ - flat - for i, flat in enumerate(flats_list) - if not is_ok[i] - ] + [flat for i, flat in enumerate(flats_list) if is_ok[i]], + [flat for i, flat in enumerate(flats_list) if not is_ok[i]], ) @@ -172,30 +157,25 @@ def first_pass(flats_list, constraint, config): # Handle duplicates based on ids # Just remove them (no merge) as they should be the exact same object. - flats_list, _ = duplicates.detect( - flats_list, key="id", merge=False, should_intersect=False - ) + flats_list, _ = duplicates.detect(flats_list, key="id", merge=False, should_intersect=False) # Also merge duplicates based on urls (these may come from different # flatboob backends) # This is especially useful as some websites such as entreparticuliers # contains a lot of leboncoin housings posts. - flats_list, duplicates_by_urls = duplicates.detect( - flats_list, key="urls", merge=True, should_intersect=True - ) + flats_list, duplicates_by_urls = duplicates.detect(flats_list, key="urls", merge=True, should_intersect=True) # Guess the postal codes flats_list = metadata.guess_postal_code(flats_list, constraint, config) - # Try to match with stations - flats_list = metadata.guess_stations(flats_list, constraint, config) - # Remove returned housing posts that do not match criteria - flats_list, ignored_list = refine_with_housing_criteria(flats_list, - constraint) - return { - "new": flats_list, - "ignored": ignored_list, - "duplicate": duplicates_by_urls - } + if not config["ignore_station"]: + # Try to match with stations + flats_list = metadata.guess_stations(flats_list, constraint, config) + + # Remove returned housing posts that do not match criteria + flats_list, ignored_list = refine_with_housing_criteria(flats_list, constraint) + + return {"new": flats_list, "ignored": ignored_list, "duplicate": duplicates_by_urls} + @tools.timeit def second_pass(flats_list, constraint, config): @@ -222,28 +202,24 @@ def second_pass(flats_list, constraint, config): flats_list = metadata.guess_postal_code(flats_list, constraint, config) # Better match with stations (confirm and check better) - flats_list = metadata.guess_stations(flats_list, constraint, config) + if not config["ignore_station"]: + flats_list = metadata.guess_stations(flats_list, constraint, config) - # Compute travel time to specified points - flats_list = metadata.compute_travel_times(flats_list, constraint, config) + # Compute travel time to specified points + flats_list = metadata.compute_travel_times(flats_list, constraint, config) # Remove returned housing posts that do not match criteria - flats_list, ignored_list = refine_with_housing_criteria(flats_list, - constraint) + flats_list, ignored_list = refine_with_housing_criteria(flats_list, constraint) # Remove returned housing posts which do not match criteria relying on # fetched details. - flats_list, ignored_list = refine_with_details_criteria(flats_list, - constraint) + flats_list, ignored_list = refine_with_details_criteria(flats_list, constraint) if config["serve_images_locally"]: images.download_images(flats_list, config) - return { - "new": flats_list, - "ignored": ignored_list, - "duplicate": [] - } + return {"new": flats_list, "ignored": ignored_list, "duplicate": []} + @tools.timeit def third_pass(flats_list, config): @@ -262,8 +238,4 @@ def third_pass(flats_list, config): # Deduplicate the list using every available data flats_list, duplicate_flats = duplicates.deep_detect(flats_list, config) - return { - "new": flats_list, - "ignored": [], - "duplicate": duplicate_flats - } + return {"new": flats_list, "ignored": [], "duplicate": duplicate_flats} diff --git a/flatisfy/filters/cache.py b/flatisfy/filters/cache.py index 2b60d65..86cb58c 100644 --- a/flatisfy/filters/cache.py +++ b/flatisfy/filters/cache.py @@ -9,15 +9,19 @@ import collections import hashlib import os import requests +import logging from io import BytesIO import PIL.Image +LOGGER = logging.getLogger(__name__) + class MemoryCache(object): """ A cache in memory. """ + @staticmethod def on_miss(key): """ @@ -85,6 +89,7 @@ class ImageCache(MemoryCache): """ A cache for images, stored in memory. """ + @staticmethod def compute_filename(url): """ @@ -104,23 +109,27 @@ class ImageCache(MemoryCache): if len(self.map.keys()) > self.max_items: self.map.popitem(last=False) + if url.endswith(".svg"): + # Skip SVG photo which are unsupported and unlikely to be relevant + return None + + filepath = None # Try to load from local folder if self.storage_dir: - filepath = os.path.join( - self.storage_dir, - self.compute_filename(url) - ) + filepath = os.path.join(self.storage_dir, self.compute_filename(url)) if os.path.isfile(filepath): return PIL.Image.open(filepath) # Otherwise, fetch it try: + LOGGER.debug(f"Download photo from {url} to {filepath}") req = requests.get(url) req.raise_for_status() image = PIL.Image.open(BytesIO(req.content)) - if self.storage_dir: + if filepath: image.save(filepath, format=image.format) return image - except (requests.HTTPError, IOError): + except (requests.HTTPError, IOError) as exc: + LOGGER.info(f"Download photo from {url} failed: {exc}") return None def __init__(self, max_items=200, storage_dir=None): diff --git a/flatisfy/filters/duplicates.py b/flatisfy/filters/duplicates.py index 035c476..6fba5aa 100644 --- a/flatisfy/filters/duplicates.py +++ b/flatisfy/filters/duplicates.py @@ -35,14 +35,14 @@ def homogeneize_phone_number(numbers): clean_numbers = [] - for number in numbers.split(','): + for number in numbers.split(","): number = number.strip() number = number.replace(".", "") number = number.replace(" ", "") number = number.replace("-", "") number = number.replace("(", "") number = number.replace(")", "") - number = re.sub(r'^\+\d\d', "", number) + number = re.sub(r"^\+\d\d", "", number) if not number.startswith("0"): number = "0" + number @@ -94,12 +94,7 @@ def compare_photos(photo1, photo2, photo_cache, hash_threshold): return False -def find_number_common_photos( - flat1_photos, - flat2_photos, - photo_cache, - hash_threshold -): +def find_number_common_photos(flat1_photos, flat2_photos, photo_cache, hash_threshold): """ Compute the number of common photos between the two lists of photos for the flats. @@ -174,22 +169,21 @@ def detect(flats_list, key="id", merge=True, should_intersect=False): # Sort matching flats by backend precedence matching_flats.sort( key=lambda flat: next( - i for (i, backend) in enumerate(BACKENDS_BY_PRECEDENCE) - if flat["id"].endswith(backend) + i for (i, backend) in enumerate(BACKENDS_BY_PRECEDENCE) if flat["id"].endswith(backend) ), - reverse=True + reverse=True, ) if len(matching_flats) > 1: - LOGGER.info("Found duplicates using key \"%s\": %s.", - key, - [flat["id"] for flat in matching_flats]) + LOGGER.info( + 'Found duplicates using key "%s": %s.', + key, + [flat["id"] for flat in matching_flats], + ) # Otherwise, check the policy if merge: # If a merge is requested, do the merge - unique_flats_list.append( - tools.merge_dicts(*matching_flats) - ) + unique_flats_list.append(tools.merge_dicts(*matching_flats)) else: # Otherwise, just keep the most important of them unique_flats_list.append(matching_flats[-1]) @@ -203,8 +197,7 @@ def detect(flats_list, key="id", merge=True, should_intersect=False): if should_intersect: # We added some flats twice with the above method, let's deduplicate on # id. - unique_flats_list, _ = detect(unique_flats_list, key="id", merge=True, - should_intersect=False) + unique_flats_list, _ = detect(unique_flats_list, key="id", merge=True, should_intersect=False) return unique_flats_list, duplicate_flats @@ -250,14 +243,12 @@ def get_duplicate_score(flat1, flat2, photo_cache, hash_threshold): # They should have the same postal code, if available if ( - "flatisfy" in flat1 and "flatisfy" in flat2 and - flat1["flatisfy"].get("postal_code", None) and - flat2["flatisfy"].get("postal_code", None) + "flatisfy" in flat1 + and "flatisfy" in flat2 + and flat1["flatisfy"].get("postal_code", None) + and flat2["flatisfy"].get("postal_code", None) ): - assert ( - flat1["flatisfy"]["postal_code"] == - flat2["flatisfy"]["postal_code"] - ) + assert flat1["flatisfy"]["postal_code"] == flat2["flatisfy"]["postal_code"] n_common_items += 1 # TODO: Better text comparison (one included in the other, fuzzymatch) @@ -279,28 +270,16 @@ def get_duplicate_score(flat1, flat2, photo_cache, hash_threshold): # If the two flats are from the same website and have a # different float part, consider they cannot be duplicates. See # https://framagit.org/phyks/Flatisfy/issues/100. - both_are_from_same_backend = ( - flat1["id"].split("@")[-1] == flat2["id"].split("@")[-1] - ) - both_have_float_part = ( - (flat1["area"] % 1) > 0 and (flat2["area"] % 1) > 0 - ) - both_have_equal_float_part = ( - (flat1["area"] % 1) == (flat2["area"] % 1) - ) + both_are_from_same_backend = flat1["id"].split("@")[-1] == flat2["id"].split("@")[-1] + both_have_float_part = (flat1["area"] % 1) > 0 and (flat2["area"] % 1) > 0 + both_have_equal_float_part = (flat1["area"] % 1) == (flat2["area"] % 1) if both_have_float_part and both_are_from_same_backend: assert both_have_equal_float_part if flat1.get("photos", []) and flat2.get("photos", []): - n_common_photos = find_number_common_photos( - flat1["photos"], - flat2["photos"], - photo_cache, - hash_threshold - ) + n_common_photos = find_number_common_photos(flat1["photos"], flat2["photos"], photo_cache, hash_threshold) - min_number_photos = min(len(flat1["photos"]), - len(flat2["photos"])) + min_number_photos = min(len(flat1["photos"]), len(flat2["photos"])) # Either all the photos are the same, or there are at least # three common photos. @@ -332,9 +311,7 @@ def deep_detect(flats_list, config): storage_dir = os.path.join(config["data_directory"], "images") else: storage_dir = None - photo_cache = ImageCache( - storage_dir=storage_dir - ) + photo_cache = ImageCache(storage_dir=storage_dir) LOGGER.info("Running deep duplicates detection.") matching_flats = collections.defaultdict(list) @@ -347,30 +324,26 @@ def deep_detect(flats_list, config): if flat2["id"] in matching_flats[flat1["id"]]: continue - n_common_items = get_duplicate_score( - flat1, - flat2, - photo_cache, - config["duplicate_image_hash_threshold"] - ) + n_common_items = get_duplicate_score(flat1, flat2, photo_cache, config["duplicate_image_hash_threshold"]) # Minimal score to consider they are duplicates if n_common_items >= config["duplicate_threshold"]: # Mark flats as duplicates LOGGER.info( - ("Found duplicates using deep detection: (%s, %s). " - "Score is %d."), + ("Found duplicates using deep detection: (%s, %s). Score is %d."), flat1["id"], flat2["id"], - n_common_items + n_common_items, ) matching_flats[flat1["id"]].append(flat2["id"]) matching_flats[flat2["id"]].append(flat1["id"]) if photo_cache.total(): - LOGGER.debug("Photo cache: hits: %d%% / misses: %d%%.", - photo_cache.hit_rate(), - photo_cache.miss_rate()) + LOGGER.debug( + "Photo cache: hits: %d%% / misses: %d%%.", + photo_cache.hit_rate(), + photo_cache.miss_rate(), + ) seen_ids = [] duplicate_flats = [] @@ -381,16 +354,11 @@ def deep_detect(flats_list, config): seen_ids.extend(matching_flats[flat_id]) to_merge = sorted( - [ - flat - for flat in flats_list - if flat["id"] in matching_flats[flat_id] - ], + [flat for flat in flats_list if flat["id"] in matching_flats[flat_id]], key=lambda flat: next( - i for (i, backend) in enumerate(BACKENDS_BY_PRECEDENCE) - if flat["id"].endswith(backend) + i for (i, backend) in enumerate(BACKENDS_BY_PRECEDENCE) if flat["id"].endswith(backend) ), - reverse=True + reverse=True, ) unique_flats_list.append(tools.merge_dicts(*to_merge)) # The ID of the added merged flat will be the one of the last item diff --git a/flatisfy/filters/images.py b/flatisfy/filters/images.py index 4ee5fb8..82174d3 100644 --- a/flatisfy/filters/images.py +++ b/flatisfy/filters/images.py @@ -22,15 +22,8 @@ def download_images(flats_list, config): :param flats_list: A list of flats dicts. :param config: A config dict. """ - photo_cache = ImageCache( - storage_dir=os.path.join(config["data_directory"], "images") - ) - flats_list_length = len(flats_list) - for i, flat in enumerate(flats_list): - LOGGER.info( - "Downloading photos for flat %d/%d: %s.", - i + 1, flats_list_length, flat["id"] - ) + photo_cache = ImageCache(storage_dir=os.path.join(config["data_directory"], "images")) + for flat in flats_list: for photo in flat["photos"]: # Download photo image = photo_cache.get(photo["url"]) diff --git a/flatisfy/filters/metadata.py b/flatisfy/filters/metadata.py index a51798b..d7887db 100644 --- a/flatisfy/filters/metadata.py +++ b/flatisfy/filters/metadata.py @@ -76,10 +76,10 @@ def fuzzy_match(query, choices, limit=3, threshold=75): Example:: - >>> match("Paris 14ème", ["Ris", "ris", "Paris 14"], limit=1) + >>> fuzzy_match("Paris 14ème", ["Ris", "ris", "Paris 14"], limit=1) [("Paris 14", 100) - >>> match( \ + >>> fuzzy_match( \ "Saint-Jacques, Denfert-Rochereau (Colonel Rol-Tanguy), " \ "Mouton-Duvernet", \ ["saint-jacques", "denfert rochereau", "duvernet", "toto"], \ @@ -88,8 +88,8 @@ def fuzzy_match(query, choices, limit=3, threshold=75): [('denfert rochereau', 100), ('saint-jacques', 76)] """ # TODO: Is there a better confidence measure? - normalized_query = tools.normalize_string(query) - normalized_choices = [tools.normalize_string(choice) for choice in choices] + normalized_query = tools.normalize_string(query).replace("saint", "st") + normalized_choices = [tools.normalize_string(choice).replace("saint", "st") for choice in choices] # Remove duplicates in the choices list unique_normalized_choices = tools.uniqify(normalized_choices) @@ -97,13 +97,9 @@ def fuzzy_match(query, choices, limit=3, threshold=75): # Get the matches (normalized strings) # Keep only ``limit`` matches. matches = sorted( - [ - (choice, len(choice)) - for choice in tools.uniqify(unique_normalized_choices) - if choice in normalized_query - ], + [(choice, len(choice)) for choice in tools.uniqify(unique_normalized_choices) if choice in normalized_query], key=lambda x: x[1], - reverse=True + reverse=True, ) if limit: matches = matches[:limit] @@ -111,22 +107,66 @@ def fuzzy_match(query, choices, limit=3, threshold=75): # Update confidence if matches: max_confidence = max(match[1] for match in matches) - matches = [ - (x[0], int(x[1] / max_confidence * 100)) - for x in matches - ] + matches = [(x[0], int(x[1] / max_confidence * 100)) for x in matches] # Convert back matches to original strings # Also filter out matches below threshold - matches = [ - (choices[normalized_choices.index(x[0])], x[1]) - for x in matches - if x[1] >= threshold - ] + matches = [(choices[normalized_choices.index(x[0])], x[1]) for x in matches if x[1] >= threshold] return matches +def guess_location_position(location, cities, constraint, must_match): + # try to find a city + # Find all fuzzy-matching cities + postal_code = None + insee_code = None + position = None + + matched_cities = fuzzy_match(location, [x.name for x in cities], limit=None) + if matched_cities: + # Find associated postal codes + matched_postal_codes = [] + for matched_city_name, _ in matched_cities: + postal_code_objects_for_city = [x for x in cities if x.name == matched_city_name] + insee_code = [pc.insee_code for pc in postal_code_objects_for_city][0] + matched_postal_codes.extend(pc.postal_code for pc in postal_code_objects_for_city) + # Try to match them with postal codes in config constraint + matched_postal_codes_in_config = set(matched_postal_codes) & set(constraint["postal_codes"]) + if matched_postal_codes_in_config: + # If there are some matched postal codes which are also in + # config, use them preferentially. This avoid ignoring + # incorrectly some flats in cities with multiple postal + # codes, see #110. + postal_code = next(iter(matched_postal_codes_in_config)) + else: + # Otherwise, simply take any matched postal code. + postal_code = matched_postal_codes[0] + + # take the city position + for matched_city_name, _ in matched_cities: + postal_code_objects_for_city = [ + x for x in cities if x.name == matched_city_name and x.postal_code == postal_code + ] + if len(postal_code_objects_for_city): + position = { + "lat": postal_code_objects_for_city[0].lat, + "lng": postal_code_objects_for_city[0].lng, + } + LOGGER.debug(("Found position %s using city %s."), position, matched_city_name) + break + + if not postal_code and must_match: + postal_code = cities[0].postal_code + position = { + "lat": cities[0].lat, + "lng": cities[0].lng, + } + insee_code = cities[0].insee_code + + return (postal_code, insee_code, position) + + def guess_postal_code(flats_list, constraint, config, distance_threshold=20000): """ Try to guess the postal code from the location of the flats. @@ -141,24 +181,27 @@ def guess_postal_code(flats_list, constraint, config, distance_threshold=20000): :return: An updated list of flats dict with guessed postal code. """ - opendata = { - "postal_codes": data.load_data(PostalCode, constraint, config) - } + opendata = {"postal_codes": data.load_data(PostalCode, constraint, config)} for flat in flats_list: location = flat.get("location", None) + if not location: + addr = flat.get("address", None) + if addr: + location = addr["full_address"] if not location: # Skip everything if empty location LOGGER.info( - ( - "No location field for flat %s, skipping postal " - "code lookup." - ), - flat["id"] + ("No location field for flat %s, skipping postal code lookup. (%s)"), + flat["id"], + flat.get("address"), ) continue postal_code = None + insee_code = None + position = None + # Try to find a postal code directly try: postal_code = re.search(r"[0-9]{5}", location) @@ -166,86 +209,51 @@ def guess_postal_code(flats_list, constraint, config, distance_threshold=20000): postal_code = postal_code.group(0) # Check the postal code is within the db - assert postal_code in [x.postal_code - for x in opendata["postal_codes"]] + assert postal_code in [x.postal_code for x in opendata["postal_codes"]] - LOGGER.info( - "Found postal code in location field for flat %s: %s.", - flat["id"], postal_code + LOGGER.debug( + "Found postal code directly in location field for flat %s: %s.", + flat["id"], + postal_code, ) except AssertionError: postal_code = None - # If not found, try to find a city - if not postal_code: - # Find all fuzzy-matching cities - matched_cities = fuzzy_match( - location, - [x.name for x in opendata["postal_codes"]], - limit=None - ) - if matched_cities: - # Find associated postal codes - matched_postal_codes = [] - for matched_city_name, _ in matched_cities: - postal_code_objects_for_city = [ - x for x in opendata["postal_codes"] - if x.name == matched_city_name - ] - matched_postal_codes.extend( - pc.postal_code - for pc in postal_code_objects_for_city - ) - # Try to match them with postal codes in config constraint - matched_postal_codes_in_config = ( - set(matched_postal_codes) & set(constraint["postal_codes"]) - ) - if matched_postal_codes_in_config: - # If there are some matched postal codes which are also in - # config, use them preferentially. This avoid ignoring - # incorrectly some flats in cities with multiple postal - # codes, see #110. - postal_code = next(iter(matched_postal_codes_in_config)) - else: - # Otherwise, simply take any matched postal code. - postal_code = matched_postal_codes[0] - LOGGER.info( - ("Found postal code in location field through city lookup " - "for flat %s: %s."), - flat["id"], postal_code - ) + # Then fetch position (and postal_code is couldn't be found earlier) + cities = opendata["postal_codes"] + if postal_code: + cities = [x for x in cities if x.postal_code == postal_code] + (postal_code, insee_code, position) = guess_location_position( + location, cities, constraint, postal_code is not None + ) # Check that postal code is not too far from the ones listed in config, # limit bad fuzzy matching if postal_code and distance_threshold: distance = min( tools.distance( - next( - (x.lat, x.lng) - for x in opendata["postal_codes"] - if x.postal_code == postal_code - ), - next( - (x.lat, x.lng) - for x in opendata["postal_codes"] - if x.postal_code == constraint_postal_code - ) + next((x.lat, x.lng) for x in opendata["postal_codes"] if x.postal_code == postal_code), + next((x.lat, x.lng) for x in opendata["postal_codes"] if x.postal_code == constraint_postal_code), ) for constraint_postal_code in constraint["postal_codes"] ) if distance > distance_threshold: LOGGER.info( - ("Postal code %s found for flat %s is off-constraints " - "(distance is %dm > %dm). Let's consider it is an " - "artifact match and keep the post without this postal " - "code."), + ( + "Postal code %s found for flat %s @ %s is off-constraints " + "(distance is %dm > %dm). Let's consider it is an " + "artifact match and keep the post without this postal " + "code." + ), postal_code, flat["id"], + location, int(distance), - int(distance_threshold) + int(distance_threshold), ) postal_code = None + position = None # Store it if postal_code: @@ -253,12 +261,28 @@ def guess_postal_code(flats_list, constraint, config, distance_threshold=20000): if existing_postal_code and existing_postal_code != postal_code: LOGGER.warning( "Replacing previous postal code %s by %s for flat %s.", - existing_postal_code, postal_code, flat["id"] + existing_postal_code, + postal_code, + flat["id"], ) flat["flatisfy"]["postal_code"] = postal_code else: LOGGER.info("No postal code found for flat %s.", flat["id"]) + if insee_code: + flat["flatisfy"]["insee_code"] = insee_code + + if position: + flat["flatisfy"]["position"] = position + LOGGER.debug( + "found postal_code=%s insee_code=%s position=%s for flat %s (%s).", + postal_code, + insee_code, + position, + flat["id"], + location, + ) + return flats_list @@ -272,10 +296,10 @@ def guess_stations(flats_list, constraint, config): :return: An updated list of flats dict with guessed nearby stations. """ - distance_threshold = config['max_distance_housing_station'] + distance_threshold = config["max_distance_housing_station"] opendata = { "postal_codes": data.load_data(PostalCode, constraint, config), - "stations": data.load_data(PublicTransport, constraint, config) + "stations": data.load_data(PublicTransport, constraint, config), } for flat in flats_list: @@ -283,14 +307,11 @@ def guess_stations(flats_list, constraint, config): if not flat_station: # Skip everything if empty station - LOGGER.info( - "No stations field for flat %s, skipping stations lookup.", - flat["id"] - ) + LOGGER.info("No stations field for flat %s, skipping stations lookup.", flat["id"]) continue # Weboob modules can return several stations in a comma-separated list. - flat_stations = flat_station.split(',') + flat_stations = flat_station.split(",") # But some stations containing a comma exist, so let's add the initial # value to the list of stations to check if there was one. if len(flat_stations) > 1: @@ -302,7 +323,7 @@ def guess_stations(flats_list, constraint, config): tentative_station, [x.name for x in opendata["stations"]], limit=10, - threshold=50 + threshold=50, ) # Keep only one occurrence of each station @@ -315,54 +336,43 @@ def guess_stations(flats_list, constraint, config): if postal_code: # If there is a postal code, check that the matched station is # closed to it - postal_code_gps = next( - (x.lat, x.lng) - for x in opendata["postal_codes"] - if x.postal_code == postal_code - ) + postal_code_gps = next((x.lat, x.lng) for x in opendata["postal_codes"] if x.postal_code == postal_code) for station in matched_stations: # Note that multiple stations with the same name exist in a # city, hence the list of stations objects for a given matching # station name. - stations_objects = [ - x for x in opendata["stations"] if x.name == station[0] - ] + stations_objects = [x for x in opendata["stations"] if x.name == station[0]] for station_data in stations_objects: - distance = tools.distance( - (station_data.lat, station_data.lng), - postal_code_gps - ) + distance = tools.distance((station_data.lat, station_data.lng), postal_code_gps) if distance < distance_threshold: # If at least one of the coordinates for a given # station is close enough, that's ok and we can add # the station - good_matched_stations.append({ - "key": station[0], - "name": station_data.name, - "confidence": station[1], - "gps": (station_data.lat, station_data.lng) - }) + good_matched_stations.append( + { + "key": station[0], + "name": station_data.name, + "confidence": station[1], + "gps": (station_data.lat, station_data.lng), + } + ) break LOGGER.info( - ("Station %s is too far from flat %s (%dm > %dm), " - "discarding this station."), + ("Station %s is too far from flat %s (%dm > %dm), discarding this station."), station[0], flat["id"], int(distance), - int(distance_threshold) + int(distance_threshold), ) else: - LOGGER.info( - "No postal code for flat %s, skipping stations detection.", - flat["id"] - ) + LOGGER.info("No postal code for flat %s, skipping stations detection.", flat["id"]) if not good_matched_stations: # No stations found, log it and cotninue with next housing LOGGER.info( "No stations found for flat %s, matching %s.", flat["id"], - flat["station"] + flat["station"], ) continue @@ -370,29 +380,20 @@ def guess_stations(flats_list, constraint, config): "Found stations for flat %s: %s (matching %s).", flat["id"], ", ".join(x["name"] for x in good_matched_stations), - flat["station"] + flat["station"], ) # If some stations were already filled in and the result is different, # display some warning to the user - if ( - "matched_stations" in flat["flatisfy"] and - ( - # Do a set comparison, as ordering is not important - set([ - station["name"] - for station in flat["flatisfy"]["matched_stations"] - ]) != - set([ - station["name"] - for station in good_matched_stations - ]) - ) + if "matched_stations" in flat["flatisfy"] and ( + # Do a set comparison, as ordering is not important + set([station["name"] for station in flat["flatisfy"]["matched_stations"]]) + != set([station["name"] for station in good_matched_stations]) ): LOGGER.warning( "Replacing previously fetched stations for flat %s. Found " "stations differ from the previously found ones.", - flat["id"] + flat["id"], ) flat["flatisfy"]["matched_stations"] = good_matched_stations @@ -417,9 +418,8 @@ def compute_travel_times(flats_list, constraint, config): if not flat["flatisfy"].get("matched_stations", []): # Skip any flat without matched stations LOGGER.info( - "Skipping travel time computation for flat %s. No matched " - "stations.", - flat["id"] + "Skipping travel time computation for flat %s. No matched stations.", + flat["id"], ) continue @@ -435,15 +435,10 @@ def compute_travel_times(flats_list, constraint, config): for station in flat["flatisfy"]["matched_stations"]: # Time from station is a dict with time and route time_from_station_dict = tools.get_travel_time_between( - station["gps"], - place["gps"], - TimeToModes[mode], - config + station["gps"], place["gps"], TimeToModes[mode], config ) - if ( - time_from_station_dict and - (time_from_station_dict["time"] < time_to_place_dict or - time_to_place_dict is None) + if time_from_station_dict and ( + time_from_station_dict["time"] < time_to_place_dict or time_to_place_dict is None ): # If starting from this station makes the route to the # specified place shorter, update @@ -452,7 +447,10 @@ def compute_travel_times(flats_list, constraint, config): if time_to_place_dict: LOGGER.info( "Travel time between %s and flat %s by %s is %ds.", - place_name, flat["id"], mode, time_to_place_dict["time"] + place_name, + flat["id"], + mode, + time_to_place_dict["time"], ) flat["flatisfy"]["time_to"][place_name] = time_to_place_dict return flats_list diff --git a/flatisfy/models/flat.py b/flatisfy/models/flat.py index fe4c0d0..dbfb89c 100644 --- a/flatisfy/models/flat.py +++ b/flatisfy/models/flat.py @@ -11,7 +11,15 @@ import enum import arrow from sqlalchemy import ( - Boolean, Column, DateTime, Enum, Float, SmallInteger, String, Text, inspect + Boolean, + Column, + DateTime, + Enum, + Float, + SmallInteger, + String, + Text, + inspect, ) from sqlalchemy.orm import validates @@ -26,6 +34,7 @@ class FlatUtilities(enum.Enum): """ An enum of the possible utilities status for a flat entry. """ + included = 10 unknown = 0 excluded = -10 @@ -35,6 +44,7 @@ class FlatStatus(enum.Enum): """ An enum of the possible status for a flat entry. """ + user_deleted = -100 duplicate = -20 ignored = -10 @@ -47,21 +57,16 @@ class FlatStatus(enum.Enum): # List of statuses that are automatically handled, and which the user cannot # manually set through the UI. -AUTOMATED_STATUSES = [ - FlatStatus.new, - FlatStatus.duplicate, - FlatStatus.ignored -] +AUTOMATED_STATUSES = [FlatStatus.new, FlatStatus.duplicate, FlatStatus.ignored] class Flat(BASE): """ SQLAlchemy ORM model to store a flat. """ + __tablename__ = "flats" - __searchable__ = [ - "title", "text", "station", "location", "details", "notes" - ] + __searchable__ = ["title", "text", "station", "location", "details", "notes"] # Weboob data id = Column(String, primary_key=True) @@ -91,6 +96,7 @@ class Flat(BASE): flatisfy_postal_code = Column(String) flatisfy_time_to = Column(MagicJSON) flatisfy_constraint = Column(String) + flatisfy_position = Column(MagicJSON) # Status status = Column(Enum(FlatStatus), default=FlatStatus.new) @@ -98,7 +104,7 @@ class Flat(BASE): # Date for visit visit_date = Column(DateTime) - @validates('utilities') + @validates("utilities") def validate_utilities(self, _, utilities): """ Utilities validation method @@ -123,8 +129,7 @@ class Flat(BASE): try: return getattr(FlatStatus, status) except (AttributeError, TypeError): - LOGGER.warn("Unkown flat status %s, ignoring it.", - status) + LOGGER.warn("Unkown flat status %s, ignoring it.", status) return self.status.default.arg @validates("notation") @@ -136,7 +141,7 @@ class Flat(BASE): notation = int(notation) assert notation >= 0 and notation <= 5 except (ValueError, AssertionError): - raise ValueError('notation should be an integer between 0 and 5') + raise ValueError("notation should be an integer between 0 and 5") return notation @validates("date") @@ -144,14 +149,18 @@ class Flat(BASE): """ Date validation method """ - return arrow.get(date).naive + if date: + return arrow.get(date).naive + return None @validates("visit_date") def validate_visit_date(self, _, visit_date): """ Visit date validation method """ - return arrow.get(visit_date).naive + if visit_date: + return arrow.get(visit_date).naive + return None @validates("photos") def validate_photos(self, _, photos): @@ -177,22 +186,14 @@ class Flat(BASE): # Handle flatisfy metadata flat_dict = flat_dict.copy() if "flatisfy" in flat_dict: - flat_dict["flatisfy_stations"] = ( - flat_dict["flatisfy"].get("matched_stations", []) - ) - flat_dict["flatisfy_postal_code"] = ( - flat_dict["flatisfy"].get("postal_code", None) - ) - flat_dict["flatisfy_time_to"] = ( - flat_dict["flatisfy"].get("time_to", {}) - ) - flat_dict["flatisfy_constraint"] = ( - flat_dict["flatisfy"].get("constraint", "default") - ) + flat_dict["flatisfy_stations"] = flat_dict["flatisfy"].get("matched_stations", []) + flat_dict["flatisfy_postal_code"] = flat_dict["flatisfy"].get("postal_code", None) + flat_dict["flatisfy_position"] = flat_dict["flatisfy"].get("position", None) + flat_dict["flatisfy_time_to"] = flat_dict["flatisfy"].get("time_to", {}) + flat_dict["flatisfy_constraint"] = flat_dict["flatisfy"].get("constraint", "default") del flat_dict["flatisfy"] - flat_dict = {k: v for k, v in flat_dict.items() - if k in inspect(Flat).columns.keys()} + flat_dict = {k: v for k, v in flat_dict.items() if k in inspect(Flat).columns.keys()} return Flat(**flat_dict) def __repr__(self): @@ -203,11 +204,7 @@ class Flat(BASE): Return a dict representation of this flat object that is JSON serializable. """ - flat_repr = { - k: v - for k, v in self.__dict__.items() - if not k.startswith("_") - } + flat_repr = {k: v for k, v in self.__dict__.items() if not k.startswith("_")} if isinstance(flat_repr["status"], FlatStatus): flat_repr["status"] = flat_repr["status"].name if isinstance(flat_repr["utilities"], FlatUtilities): diff --git a/flatisfy/models/postal_code.py b/flatisfy/models/postal_code.py index 2eb14ea..4d2a671 100644 --- a/flatisfy/models/postal_code.py +++ b/flatisfy/models/postal_code.py @@ -7,9 +7,7 @@ from __future__ import absolute_import, print_function, unicode_literals import logging -from sqlalchemy import ( - Column, Float, Integer, String, UniqueConstraint -) +from sqlalchemy import Column, Float, Integer, String, UniqueConstraint from flatisfy.database.base import BASE @@ -21,6 +19,7 @@ class PostalCode(BASE): """ SQLAlchemy ORM model to store a postal code opendata. """ + __tablename__ = "postal_codes" id = Column(Integer, primary_key=True) @@ -28,6 +27,7 @@ class PostalCode(BASE): # following ISO 3166-2. area = Column(String, index=True) postal_code = Column(String, index=True) + insee_code = Column(String, index=True) name = Column(String, index=True) lat = Column(Float) lng = Column(Float) @@ -41,8 +41,4 @@ class PostalCode(BASE): Return a dict representation of this postal code object that is JSON serializable. """ - return { - k: v - for k, v in self.__dict__.items() - if not k.startswith("_") - } + return {k: v for k, v in self.__dict__.items() if not k.startswith("_")} diff --git a/flatisfy/models/public_transport.py b/flatisfy/models/public_transport.py index d1b584d..376e9d9 100644 --- a/flatisfy/models/public_transport.py +++ b/flatisfy/models/public_transport.py @@ -7,9 +7,7 @@ from __future__ import absolute_import, print_function, unicode_literals import logging -from sqlalchemy import ( - Column, Float, Integer, String -) +from sqlalchemy import Column, Float, Integer, String from flatisfy.database.base import BASE @@ -21,6 +19,7 @@ class PublicTransport(BASE): """ SQLAlchemy ORM model to store public transport opendata. """ + __tablename__ = "public_transports" id = Column(Integer, primary_key=True) diff --git a/flatisfy/tests.py b/flatisfy/tests.py index 0a31625..e34c75c 100644 --- a/flatisfy/tests.py +++ b/flatisfy/tests.py @@ -30,6 +30,7 @@ class LocalImageCache(ImageCache): """ A local cache for images, stored in memory. """ + @staticmethod def on_miss(path): """ @@ -46,48 +47,34 @@ class TestTexts(unittest.TestCase): """ Checks string normalizations. """ + def test_roman_numbers(self): """ Checks roman numbers replacement. """ - self.assertEqual( - "XIV", - tools.convert_arabic_to_roman("14") - ) + self.assertEqual("XIV", tools.convert_arabic_to_roman("14")) - self.assertEqual( - "XXXIX", - tools.convert_arabic_to_roman("39") - ) + self.assertEqual("XXXIX", tools.convert_arabic_to_roman("39")) - self.assertEqual( - "40", - tools.convert_arabic_to_roman("40") - ) + self.assertEqual("40", tools.convert_arabic_to_roman("40")) - self.assertEqual( - "1987", - tools.convert_arabic_to_roman("1987") - ) + self.assertEqual("1987", tools.convert_arabic_to_roman("1987")) self.assertEqual( "Dans le XVe arrondissement", - tools.convert_arabic_to_roman_in_text("Dans le 15e arrondissement") + tools.convert_arabic_to_roman_in_text("Dans le 15e arrondissement"), ) - self.assertEqual( - "XXeme arr.", - tools.convert_arabic_to_roman_in_text("20eme arr.") - ) + self.assertEqual("XXeme arr.", tools.convert_arabic_to_roman_in_text("20eme arr.")) self.assertEqual( "A AIX EN PROVENCE", - tools.convert_arabic_to_roman_in_text("A AIX EN PROVENCE") + tools.convert_arabic_to_roman_in_text("A AIX EN PROVENCE"), ) self.assertEqual( "Montigny Le Bretonneux", - tools.convert_arabic_to_roman_in_text("Montigny Le Bretonneux") + tools.convert_arabic_to_roman_in_text("Montigny Le Bretonneux"), ) def test_roman_numbers_in_text(self): @@ -97,77 +84,54 @@ class TestTexts(unittest.TestCase): """ self.assertEqual( "dans le XVe arrondissement", - tools.normalize_string("Dans le 15e arrondissement") + tools.normalize_string("Dans le 15e arrondissement"), ) - self.assertEqual( - "paris XVe, 75005", - tools.normalize_string("Paris 15e, 75005") - ) + self.assertEqual("paris XVe, 75005", tools.normalize_string("Paris 15e, 75005")) - self.assertEqual( - "paris xve, 75005", - tools.normalize_string("Paris XVe, 75005") - ) + self.assertEqual("paris xve, 75005", tools.normalize_string("Paris XVe, 75005")) def test_multiple_whitespaces(self): """ Checks whitespaces are collapsed. """ - self.assertEqual( - "avec ascenseur", - tools.normalize_string("avec ascenseur") - ) + self.assertEqual("avec ascenseur", tools.normalize_string("avec ascenseur")) def test_whitespace_trim(self): """ Checks that trailing and beginning whitespaces are trimmed. """ - self.assertEqual( - "rennes 35000", - tools.normalize_string(" Rennes 35000 ") - ) + self.assertEqual("rennes 35000", tools.normalize_string(" Rennes 35000 ")) def test_accents(self): """ Checks accents are replaced. """ - self.assertEqual( - "eeeaui", - tools.normalize_string(u"éèêàüï") - ) + self.assertEqual("eeeaui", tools.normalize_string(u"éèêàüï")) class TestPhoneNumbers(unittest.TestCase): """ Checks phone numbers normalizations. """ + def test_prefix(self): """ Checks phone numbers with international prefixes. """ - self.assertEqual( - "0605040302", - duplicates.homogeneize_phone_number("+33605040302") - ) + self.assertEqual("0605040302", duplicates.homogeneize_phone_number("+33605040302")) def test_dots_separators(self): """ Checks phone numbers with dots. """ - self.assertEqual( - "0605040302", - duplicates.homogeneize_phone_number("06.05.04.03.02") - ) + self.assertEqual("0605040302", duplicates.homogeneize_phone_number("06.05.04.03.02")) def test_spaces_separators(self): """ Checks phone numbers with spaces. """ - self.assertEqual( - "0605040302", - duplicates.homogeneize_phone_number("06 05 04 03 02") - ) + self.assertEqual("0605040302", duplicates.homogeneize_phone_number("06 05 04 03 02")) class TestPhotos(unittest.TestCase): @@ -183,96 +147,104 @@ class TestPhotos(unittest.TestCase): """ Compares a photo against itself. """ - photo = { - "url": TESTS_DATA_DIR + "127028739@seloger.jpg" - } + photo = {"url": TESTS_DATA_DIR + "127028739@seloger.jpg"} - self.assertTrue(duplicates.compare_photos( - photo, - photo, - self.IMAGE_CACHE, - self.HASH_THRESHOLD - )) + self.assertTrue(duplicates.compare_photos(photo, photo, self.IMAGE_CACHE, self.HASH_THRESHOLD)) def test_different_photos(self): """ Compares two different photos. """ - self.assertFalse(duplicates.compare_photos( - {"url": TESTS_DATA_DIR + "127028739@seloger.jpg"}, - {"url": TESTS_DATA_DIR + "127028739-2@seloger.jpg"}, - self.IMAGE_CACHE, - self.HASH_THRESHOLD - )) + self.assertFalse( + duplicates.compare_photos( + {"url": TESTS_DATA_DIR + "127028739@seloger.jpg"}, + {"url": TESTS_DATA_DIR + "127028739-2@seloger.jpg"}, + self.IMAGE_CACHE, + self.HASH_THRESHOLD, + ) + ) - self.assertFalse(duplicates.compare_photos( - {"url": TESTS_DATA_DIR + "127028739-2@seloger.jpg"}, - {"url": TESTS_DATA_DIR + "127028739-3@seloger.jpg"}, - self.IMAGE_CACHE, - self.HASH_THRESHOLD - )) + self.assertFalse( + duplicates.compare_photos( + {"url": TESTS_DATA_DIR + "127028739-2@seloger.jpg"}, + {"url": TESTS_DATA_DIR + "127028739-3@seloger.jpg"}, + self.IMAGE_CACHE, + self.HASH_THRESHOLD, + ) + ) def test_matching_photos(self): """ Compares two matching photos with different size and source. """ - self.assertTrue(duplicates.compare_photos( - {"url": TESTS_DATA_DIR + "127028739@seloger.jpg"}, - {"url": TESTS_DATA_DIR + "14428129@explorimmo.jpg"}, - self.IMAGE_CACHE, - self.HASH_THRESHOLD - )) + self.assertTrue( + duplicates.compare_photos( + {"url": TESTS_DATA_DIR + "127028739@seloger.jpg"}, + {"url": TESTS_DATA_DIR + "14428129@explorimmo.jpg"}, + self.IMAGE_CACHE, + self.HASH_THRESHOLD, + ) + ) - self.assertTrue(duplicates.compare_photos( - {"url": TESTS_DATA_DIR + "127028739-2@seloger.jpg"}, - {"url": TESTS_DATA_DIR + "14428129-2@explorimmo.jpg"}, - self.IMAGE_CACHE, - self.HASH_THRESHOLD - )) + self.assertTrue( + duplicates.compare_photos( + {"url": TESTS_DATA_DIR + "127028739-2@seloger.jpg"}, + {"url": TESTS_DATA_DIR + "14428129-2@explorimmo.jpg"}, + self.IMAGE_CACHE, + self.HASH_THRESHOLD, + ) + ) - self.assertTrue(duplicates.compare_photos( - {"url": TESTS_DATA_DIR + "127028739-3@seloger.jpg"}, - {"url": TESTS_DATA_DIR + "14428129-3@explorimmo.jpg"}, - self.IMAGE_CACHE, - self.HASH_THRESHOLD - )) + self.assertTrue( + duplicates.compare_photos( + {"url": TESTS_DATA_DIR + "127028739-3@seloger.jpg"}, + {"url": TESTS_DATA_DIR + "14428129-3@explorimmo.jpg"}, + self.IMAGE_CACHE, + self.HASH_THRESHOLD, + ) + ) - self.assertTrue(duplicates.compare_photos( - {"url": TESTS_DATA_DIR + "127028739@seloger.jpg"}, - {"url": TESTS_DATA_DIR + "127028739-watermark@seloger.jpg"}, - self.IMAGE_CACHE, - self.HASH_THRESHOLD - )) + self.assertTrue( + duplicates.compare_photos( + {"url": TESTS_DATA_DIR + "127028739@seloger.jpg"}, + {"url": TESTS_DATA_DIR + "127028739-watermark@seloger.jpg"}, + self.IMAGE_CACHE, + self.HASH_THRESHOLD, + ) + ) def test_matching_cropped_photos(self): """ Compares two matching photos with one being cropped. """ # Fixme: the image hash treshold should be 10 ideally - self.assertTrue(duplicates.compare_photos( - {"url": TESTS_DATA_DIR + "vertical.jpg"}, - {"url": TESTS_DATA_DIR + "vertical-cropped.jpg"}, - self.IMAGE_CACHE, - 20 - )) + self.assertTrue( + duplicates.compare_photos( + {"url": TESTS_DATA_DIR + "vertical.jpg"}, + {"url": TESTS_DATA_DIR + "vertical-cropped.jpg"}, + self.IMAGE_CACHE, + 20, + ) + ) # Fixme: the image hash treshold should be 10 ideally - self.assertTrue(duplicates.compare_photos( - {"url": TESTS_DATA_DIR + "13783671@explorimmo.jpg"}, - {"url": TESTS_DATA_DIR + "124910113@seloger.jpg"}, - self.IMAGE_CACHE, - 20 - )) + self.assertTrue( + duplicates.compare_photos( + {"url": TESTS_DATA_DIR + "13783671@explorimmo.jpg"}, + {"url": TESTS_DATA_DIR + "124910113@seloger.jpg"}, + self.IMAGE_CACHE, + 20, + ) + ) class TestImageCache(unittest.TestCase): """ Checks image cache is working as expected. """ + def __init__(self, *args, **kwargs): - self.IMAGE_CACHE = ImageCache( # pylint: disable=invalid-name - storage_dir=tempfile.mkdtemp(prefix="flatisfy-") - ) + self.IMAGE_CACHE = ImageCache(storage_dir=tempfile.mkdtemp(prefix="flatisfy-")) # pylint: disable=invalid-name super(TestImageCache, self).__init__(*args, **kwargs) def test_invalid_url(self): @@ -280,27 +252,22 @@ class TestImageCache(unittest.TestCase): Check that it returns nothing on an invalid URL. """ # See https://framagit.org/phyks/Flatisfy/issues/116. - self.assertIsNone( - self.IMAGE_CACHE.get("https://httpbin.org/status/404") - ) - self.assertIsNone( - self.IMAGE_CACHE.get("https://httpbin.org/status/500") - ) + self.assertIsNone(self.IMAGE_CACHE.get("https://httpbin.org/status/404")) + self.assertIsNone(self.IMAGE_CACHE.get("https://httpbin.org/status/500")) def test_invalid_data(self): """ Check that it returns nothing on an invalid data. """ # See https://framagit.org/phyks/Flatisfy/issues/116. - self.assertIsNone( - self.IMAGE_CACHE.get("https://httpbin.org/") - ) + self.assertIsNone(self.IMAGE_CACHE.get("https://httpbin.org/")) class TestDuplicates(unittest.TestCase): """ Checks duplicates detection. """ + DUPLICATES_MIN_SCORE_WITHOUT_PHOTOS = 8 # pylint: disable=invalid-name DUPLICATES_MIN_SCORE_WITH_PHOTOS = 15 # pylint: disable=invalid-name HASH_THRESHOLD = 10 # pylint: disable=invalid-name @@ -316,9 +283,7 @@ class TestDuplicates(unittest.TestCase): """ Generates a fake flat post. """ - backend = BACKENDS_BY_PRECEDENCE[ - random.randint(0, len(BACKENDS_BY_PRECEDENCE) - 1) - ] + backend = BACKENDS_BY_PRECEDENCE[random.randint(0, len(BACKENDS_BY_PRECEDENCE) - 1)] return { "id": str(random.randint(100000, 199999)) + "@" + backend, "phone": "0607080910", @@ -326,7 +291,7 @@ class TestDuplicates(unittest.TestCase): "utilities": "", "area": random.randint(200, 1500) / 10, "cost": random.randint(100000, 300000), - "bedrooms": random.randint(1, 4) + "bedrooms": random.randint(1, 4), } @staticmethod @@ -350,10 +315,7 @@ class TestDuplicates(unittest.TestCase): """ flat1 = self.generate_fake_flat() flat2 = copy.deepcopy(flat1) - score = duplicates.get_duplicate_score( - flat1, flat2, - self.IMAGE_CACHE, self.HASH_THRESHOLD - ) + score = duplicates.get_duplicate_score(flat1, flat2, self.IMAGE_CACHE, self.HASH_THRESHOLD) self.assertGreaterEqual(score, self.DUPLICATES_MIN_SCORE_WITHOUT_PHOTOS) def test_different_prices(self): @@ -364,10 +326,7 @@ class TestDuplicates(unittest.TestCase): flat2 = copy.deepcopy(flat1) flat2["cost"] += 1000 - score = duplicates.get_duplicate_score( - flat1, flat2, - self.IMAGE_CACHE, self.HASH_THRESHOLD - ) + score = duplicates.get_duplicate_score(flat1, flat2, self.IMAGE_CACHE, self.HASH_THRESHOLD) self.assertLess(score, self.DUPLICATES_MIN_SCORE_WITHOUT_PHOTOS) def test_different_rooms(self): @@ -379,10 +338,7 @@ class TestDuplicates(unittest.TestCase): flat2 = copy.deepcopy(flat1) flat2["rooms"] += 1 - score = duplicates.get_duplicate_score( - flat1, flat2, - self.IMAGE_CACHE, self.HASH_THRESHOLD - ) + score = duplicates.get_duplicate_score(flat1, flat2, self.IMAGE_CACHE, self.HASH_THRESHOLD) self.assertLess(score, self.DUPLICATES_MIN_SCORE_WITHOUT_PHOTOS) def test_different_areas(self): @@ -393,10 +349,7 @@ class TestDuplicates(unittest.TestCase): flat2 = copy.deepcopy(flat1) flat2["area"] += 10 - score = duplicates.get_duplicate_score( - flat1, flat2, - self.IMAGE_CACHE, self.HASH_THRESHOLD - ) + score = duplicates.get_duplicate_score(flat1, flat2, self.IMAGE_CACHE, self.HASH_THRESHOLD) self.assertLess(score, self.DUPLICATES_MIN_SCORE_WITHOUT_PHOTOS) def test_different_areas_decimals(self): @@ -409,10 +362,7 @@ class TestDuplicates(unittest.TestCase): flat1["area"] = 50.65 flat2["area"] = 50.37 - score = duplicates.get_duplicate_score( - flat1, flat2, - self.IMAGE_CACHE, self.HASH_THRESHOLD - ) + score = duplicates.get_duplicate_score(flat1, flat2, self.IMAGE_CACHE, self.HASH_THRESHOLD) self.assertLess(score, self.DUPLICATES_MIN_SCORE_WITHOUT_PHOTOS) def test_different_phones(self): @@ -424,10 +374,7 @@ class TestDuplicates(unittest.TestCase): flat2 = copy.deepcopy(flat1) flat2["phone"] = "0708091011" - score = duplicates.get_duplicate_score( - flat1, flat2, - self.IMAGE_CACHE, self.HASH_THRESHOLD - ) + score = duplicates.get_duplicate_score(flat1, flat2, self.IMAGE_CACHE, self.HASH_THRESHOLD) self.assertLess(score, self.DUPLICATES_MIN_SCORE_WITHOUT_PHOTOS) def test_real_duplicates(self): @@ -435,15 +382,9 @@ class TestDuplicates(unittest.TestCase): Two flats with same price, area and rooms quantity should be detected as duplicates. """ - flats = self.load_files( - "127028739@seloger", - "14428129@explorimmo" - ) + flats = self.load_files("127028739@seloger", "14428129@explorimmo") - score = duplicates.get_duplicate_score( - flats[0], flats[1], - self.IMAGE_CACHE, self.HASH_THRESHOLD - ) + score = duplicates.get_duplicate_score(flats[0], flats[1], self.IMAGE_CACHE, self.HASH_THRESHOLD) self.assertGreaterEqual(score, self.DUPLICATES_MIN_SCORE_WITH_PHOTOS) # TODO: fixme, find new testing examples @@ -502,8 +443,13 @@ def run(): """ LOGGER.info("Running tests…") try: - for testsuite in [TestTexts, TestPhoneNumbers, TestImageCache, - TestDuplicates, TestPhotos]: + for testsuite in [ + TestTexts, + TestPhoneNumbers, + TestImageCache, + TestDuplicates, + TestPhotos, + ]: suite = unittest.TestLoader().loadTestsFromTestCase(testsuite) result = unittest.TextTestRunner(verbosity=2).run(suite) assert result.wasSuccessful() diff --git a/flatisfy/tools.py b/flatisfy/tools.py index 8370247..d7ae0dc 100644 --- a/flatisfy/tools.py +++ b/flatisfy/tools.py @@ -3,9 +3,7 @@ This module contains basic utility functions, such as pretty printing of JSON output, checking that a value is within a given interval etc. """ -from __future__ import ( - absolute_import, division, print_function, unicode_literals -) +from __future__ import absolute_import, division, print_function, unicode_literals import datetime import itertools @@ -41,7 +39,7 @@ def next_weekday(d, weekday): :returns: The datetime object for the next given weekday. """ days_ahead = weekday - d.weekday() - if days_ahead <= 0: # Target day already happened this week + if days_ahead <= 0: # Target day already happened this week days_ahead += 7 return d + datetime.timedelta(days_ahead) @@ -61,8 +59,18 @@ def convert_arabic_to_roman(arabic): return arabic to_roman = { - 1: 'I', 2: 'II', 3: 'III', 4: 'IV', 5: 'V', 6: 'VI', 7: 'VII', - 8: 'VIII', 9: 'IX', 10: 'X', 20: 'XX', 30: 'XXX' + 1: "I", + 2: "II", + 3: "III", + 4: "IV", + 5: "V", + 6: "VI", + 7: "VII", + 8: "VIII", + 9: "IX", + 10: "X", + 20: "XX", + 30: "XXX", } roman_chars_list = [] count = 1 @@ -71,7 +79,7 @@ def convert_arabic_to_roman(arabic): if digit != 0: roman_chars_list.append(to_roman[digit * count]) count *= 10 - return ''.join(roman_chars_list[::-1]) + return "".join(roman_chars_list[::-1]) def convert_arabic_to_roman_in_text(text): @@ -82,11 +90,7 @@ def convert_arabic_to_roman_in_text(text): :returns: The corresponding text with roman literals converted to arabic. """ - return re.sub( - r'(\d+)', - lambda matchobj: convert_arabic_to_roman(matchobj.group(0)), - text - ) + return re.sub(r"(\d+)", lambda matchobj: convert_arabic_to_roman(matchobj.group(0)), text) def hash_dict(func): @@ -96,11 +100,13 @@ def hash_dict(func): From https://stackoverflow.com/a/44776960. """ + class HDict(dict): """ Transform mutable dictionnary into immutable. Useful to be compatible with lru_cache """ + def __hash__(self): return hash(json.dumps(self)) @@ -108,17 +114,10 @@ def hash_dict(func): """ The wrapped function """ - args = tuple( - [ - HDict(arg) if isinstance(arg, dict) else arg - for arg in args - ] - ) - kwargs = { - k: HDict(v) if isinstance(v, dict) else v - for k, v in kwargs.items() - } + args = tuple([HDict(arg) if isinstance(arg, dict) else arg for arg in args]) + kwargs = {k: HDict(v) if isinstance(v, dict) else v for k, v in kwargs.items()} return func(*args, **kwargs) + return wrapped @@ -126,6 +125,7 @@ class DateAwareJSONEncoder(json.JSONEncoder): """ Extend the default JSON encoder to serialize datetimes to iso strings. """ + def default(self, o): # pylint: disable=locally-disabled,E0202 if isinstance(o, (datetime.date, datetime.datetime)): return o.isoformat() @@ -153,9 +153,7 @@ def pretty_json(data): "toto": "ok" } """ - return json.dumps(data, cls=DateAwareJSONEncoder, - indent=4, separators=(',', ': '), - sort_keys=True) + return json.dumps(data, cls=DateAwareJSONEncoder, indent=4, separators=(",", ": "), sort_keys=True) def batch(iterable, size): @@ -294,10 +292,7 @@ def distance(gps1, gps2): long2 = math.radians(gps2[1]) # pylint: disable=locally-disabled,invalid-name - a = ( - math.sin((lat2 - lat1) / 2.0)**2 + - math.cos(lat1) * math.cos(lat2) * math.sin((long2 - long1) / 2.0)**2 - ) + a = math.sin((lat2 - lat1) / 2.0) ** 2 + math.cos(lat1) * math.cos(lat2) * math.sin((long2 - long1) / 2.0) ** 2 c = 2.0 * math.atan2(math.sqrt(a), math.sqrt(1 - a)) earth_radius = 6371000 @@ -385,13 +380,14 @@ def get_travel_time_between(latlng_from, latlng_to, mode, config): "from": "%s;%s" % (latlng_from[1], latlng_from[0]), "to": "%s;%s" % (latlng_to[1], latlng_to[0]), "datetime": date_from.isoformat(), - "count": 1 + "count": 1, } try: # Do the query to Navitia API req = requests.get( - NAVITIA_ENDPOINT, params=payload, - auth=(config["navitia_api_key"], "") + NAVITIA_ENDPOINT, + params=payload, + auth=(config["navitia_api_key"], ""), ) req.raise_for_status() @@ -400,28 +396,28 @@ def get_travel_time_between(latlng_from, latlng_to, mode, config): for section in journeys["sections"]: if section["type"] == "public_transport": # Public transport - sections.append({ - "geojson": section["geojson"], - "color": ( - section["display_informations"].get("color", None) - ) - }) + sections.append( + { + "geojson": section["geojson"], + "color": (section["display_informations"].get("color", None)), + } + ) elif section["type"] == "street_network": # Walking - sections.append({ - "geojson": section["geojson"], - "color": None - }) + sections.append({"geojson": section["geojson"], "color": None}) else: # Skip anything else continue - except (requests.exceptions.RequestException, - ValueError, IndexError, KeyError) as exc: + except ( + requests.exceptions.RequestException, + ValueError, + IndexError, + KeyError, + ) as exc: # Ignore any possible exception LOGGER.warning( - "An exception occurred during travel time lookup on " - "Navitia: %s.", - str(exc) + "An exception occurred during travel time lookup on Navitia: %s.", + str(exc), ) else: LOGGER.warning( @@ -430,50 +426,43 @@ def get_travel_time_between(latlng_from, latlng_to, mode, config): ) elif mode in [TimeToModes.WALK, TimeToModes.BIKE, TimeToModes.CAR]: MAPBOX_MODES = { - TimeToModes.WALK: 'mapbox/walking', - TimeToModes.BIKE: 'mapbox/cycling', - TimeToModes.CAR: 'mapbox/driving' + TimeToModes.WALK: "mapbox/walking", + TimeToModes.BIKE: "mapbox/cycling", + TimeToModes.CAR: "mapbox/driving", } # Check that Mapbox API key is available if config["mapbox_api_key"]: try: - service = mapbox.Directions( - access_token=config['mapbox_api_key'] - ) + service = mapbox.Directions(access_token=config["mapbox_api_key"]) origin = { - 'type': 'Feature', - 'properties': {'name': 'Start'}, - 'geometry': { - 'type': 'Point', - 'coordinates': [latlng_from[1], latlng_from[0]]}} + "type": "Feature", + "properties": {"name": "Start"}, + "geometry": { + "type": "Point", + "coordinates": [latlng_from[1], latlng_from[0]], + }, + } destination = { - 'type': 'Feature', - 'properties': {'name': 'End'}, - 'geometry': { - 'type': 'Point', - 'coordinates': [latlng_to[1], latlng_to[0]]}} - response = service.directions( - [origin, destination], MAPBOX_MODES[mode] - ) + "type": "Feature", + "properties": {"name": "End"}, + "geometry": { + "type": "Point", + "coordinates": [latlng_to[1], latlng_to[0]], + }, + } + response = service.directions([origin, destination], MAPBOX_MODES[mode]) response.raise_for_status() - route = response.geojson()['features'][0] + route = response.geojson()["features"][0] # Fix longitude/latitude inversion in geojson output - geometry = route['geometry'] - geometry['coordinates'] = [ - (x[1], x[0]) for x in geometry['coordinates'] - ] - sections = [{ - "geojson": geometry, - "color": "000" - }] - travel_time = route['properties']['duration'] - except (requests.exceptions.RequestException, - IndexError, KeyError) as exc: + geometry = route["geometry"] + geometry["coordinates"] = [(x[1], x[0]) for x in geometry["coordinates"]] + sections = [{"geojson": geometry, "color": "000"}] + travel_time = route["properties"]["duration"] + except (requests.exceptions.RequestException, IndexError, KeyError) as exc: # Ignore any possible exception LOGGER.warning( - "An exception occurred during travel time lookup on " - "Mapbox: %s.", - str(exc) + "An exception occurred during travel time lookup on Mapbox: %s.", + str(exc), ) else: LOGGER.warning( @@ -482,10 +471,7 @@ def get_travel_time_between(latlng_from, latlng_to, mode, config): ) if travel_time: - return { - "time": travel_time, - "sections": sections - } + return {"time": travel_time, "sections": sections} return None @@ -493,6 +479,7 @@ def timeit(func): """ A decorator that logs how much time was spent in the function. """ + def wrapped(*args, **kwargs): """ The wrapped function @@ -502,4 +489,5 @@ def timeit(func): runtime = time.time() - before LOGGER.info("%s -- Execution took %s seconds.", func.__name__, runtime) return res + return wrapped diff --git a/flatisfy/web/app.py b/flatisfy/web/app.py index e78f2fb..f0a66af 100644 --- a/flatisfy/web/app.py +++ b/flatisfy/web/app.py @@ -2,9 +2,7 @@ """ This module contains the definition of the Bottle web app. """ -from __future__ import ( - absolute_import, division, print_function, unicode_literals -) +from __future__ import absolute_import, division, print_function, unicode_literals import functools import json @@ -25,14 +23,12 @@ class QuietWSGIRefServer(bottle.WSGIRefServer): Quiet implementation of Bottle built-in WSGIRefServer, as `Canister` is handling the logging through standard Python logging. """ + # pylint: disable=locally-disabled,too-few-public-methods quiet = True def run(self, app): - app.log.info( - 'Server is now up and ready! Listening on %s:%s.' % - (self.host, self.port) - ) + app.log.info("Server is now up and ready! Listening on %s:%s." % (self.host, self.port)) super(QuietWSGIRefServer, self).run(app) @@ -42,12 +38,10 @@ def _serve_static_file(filename): """ return bottle.static_file( filename, - root=os.path.join( - os.path.dirname(os.path.realpath(__file__)), - "static" - ) + root=os.path.join(os.path.dirname(os.path.realpath(__file__)), "static"), ) + def get_app(config): """ Get a Bottle app instance with all the routes set-up. @@ -65,77 +59,69 @@ def get_app(config): app.install(canister.Canister()) # Use DateAwareJSONEncoder to dump JSON strings # From http://stackoverflow.com/questions/21282040/bottle-framework-how-to-return-datetime-in-json-response#comment55718456_21282666. pylint: disable=locally-disabled,line-too-long - app.install( - bottle.JSONPlugin( - json_dumps=functools.partial(json.dumps, cls=DateAwareJSONEncoder) - ) - ) + app.install(bottle.JSONPlugin(json_dumps=functools.partial(json.dumps, cls=DateAwareJSONEncoder))) # Enable CORS - @app.hook('after_request') + @app.hook("after_request") def enable_cors(): """ Add CORS headers at each request. """ # The str() call is required as we import unicode_literal and WSGI # headers list should have plain str type. - bottle.response.headers[str('Access-Control-Allow-Origin')] = str('*') - bottle.response.headers[str('Access-Control-Allow-Methods')] = str( - 'PUT, GET, POST, DELETE, OPTIONS, PATCH' - ) - bottle.response.headers[str('Access-Control-Allow-Headers')] = str( - 'Origin, Accept, Content-Type, X-Requested-With, X-CSRF-Token' + bottle.response.headers[str("Access-Control-Allow-Origin")] = str("*") + bottle.response.headers[str("Access-Control-Allow-Methods")] = str("PUT, GET, POST, DELETE, OPTIONS, PATCH") + bottle.response.headers[str("Access-Control-Allow-Headers")] = str( + "Origin, Accept, Content-Type, X-Requested-With, X-CSRF-Token" ) # API v1 routes app.route("/api/v1", ["GET", "OPTIONS"], api_routes.index_v1) - app.route("/api/v1/time_to_places", ["GET", "OPTIONS"], - api_routes.time_to_places_v1) + app.route("/api/v1/time_to_places", ["GET", "OPTIONS"], api_routes.time_to_places_v1) app.route("/api/v1/flats", ["GET", "OPTIONS"], api_routes.flats_v1) app.route("/api/v1/flats/:flat_id", ["GET", "OPTIONS"], api_routes.flat_v1) - app.route("/api/v1/flats/:flat_id", ["PATCH", "OPTIONS"], - api_routes.update_flat_v1) + app.route("/api/v1/flats/:flat_id", ["PATCH", "OPTIONS"], api_routes.update_flat_v1) - app.route("/api/v1/ics/visits.ics", ["GET", "OPTIONS"], - api_routes.ics_feed_v1) + app.route("/api/v1/ics/visits.ics", ["GET", "OPTIONS"], api_routes.ics_feed_v1) app.route("/api/v1/search", ["POST", "OPTIONS"], api_routes.search_v1) app.route("/api/v1/opendata", ["GET", "OPTIONS"], api_routes.opendata_index_v1) - app.route("/api/v1/opendata/postal_codes", ["GET", "OPTIONS"], - api_routes.opendata_postal_codes_v1) + app.route( + "/api/v1/opendata/postal_codes", + ["GET", "OPTIONS"], + api_routes.opendata_postal_codes_v1, + ) app.route("/api/v1/metadata", ["GET", "OPTIONS"], api_routes.metadata_v1) + app.route("/api/v1/import", ["GET", "OPTIONS"], api_routes.import_v1) # Index app.route("/", "GET", lambda: _serve_static_file("index.html")) # Static files - app.route("/favicon.ico", "GET", - lambda: _serve_static_file("favicon.ico")) + app.route("/favicon.ico", "GET", lambda: _serve_static_file("favicon.ico")) app.route( - "/assets/", "GET", - lambda filename: _serve_static_file("/assets/{}".format(filename)) + "/assets/", + "GET", + lambda filename: _serve_static_file("/assets/{}".format(filename)), ) app.route( - "/img/", "GET", - lambda filename: _serve_static_file("/img/{}".format(filename)) + "/img/", + "GET", + lambda filename: _serve_static_file("/img/{}".format(filename)), ) app.route( - "/.well-known/", "GET", - lambda filename: _serve_static_file("/.well-known/{}".format(filename)) + "/.well-known/", + "GET", + lambda filename: _serve_static_file("/.well-known/{}".format(filename)), ) app.route( - "/data/img/", "GET", - lambda filename: bottle.static_file( - filename, - root=os.path.join( - config["data_directory"], - "images" - ) - ) + "/data/img/", + "GET", + lambda filename: bottle.static_file(filename, root=os.path.join(config["data_directory"], "images")), ) return app diff --git a/flatisfy/web/configplugin.py b/flatisfy/web/configplugin.py index 659bc7c..4784a75 100644 --- a/flatisfy/web/configplugin.py +++ b/flatisfy/web/configplugin.py @@ -7,9 +7,7 @@ This module is heavily based on code from [Bottle-SQLAlchemy](https://github.com/iurisilvio/bottle-sqlalchemy) which is licensed under MIT license. """ -from __future__ import ( - absolute_import, division, print_function, unicode_literals -) +from __future__ import absolute_import, division, print_function, unicode_literals import functools import inspect @@ -22,7 +20,8 @@ class ConfigPlugin(object): A Bottle plugin to automatically pass the config object to the routes specifying they need it. """ - name = 'config' + + name = "config" api = 2 KEYWORD = "config" @@ -41,9 +40,7 @@ class ConfigPlugin(object): if not isinstance(other, ConfigPlugin): continue else: - raise bottle.PluginError( - "Found another conflicting Config plugin." - ) + raise bottle.PluginError("Found another conflicting Config plugin.") def apply(self, callback, route): """ diff --git a/flatisfy/web/dbplugin.py b/flatisfy/web/dbplugin.py index fa7bb68..bb1824e 100644 --- a/flatisfy/web/dbplugin.py +++ b/flatisfy/web/dbplugin.py @@ -7,9 +7,7 @@ This module is heavily based on code from [Bottle-SQLAlchemy](https://github.com/iurisilvio/bottle-sqlalchemy) which is licensed under MIT license. """ -from __future__ import ( - absolute_import, division, print_function, unicode_literals -) +from __future__ import absolute_import, division, print_function, unicode_literals import inspect @@ -21,7 +19,8 @@ class DatabasePlugin(object): A Bottle plugin to automatically pass an SQLAlchemy database session object to the routes specifying they need it. """ - name = 'database' + + name = "database" api = 2 KEYWORD = "db" @@ -41,9 +40,7 @@ class DatabasePlugin(object): if not isinstance(other, DatabasePlugin): continue else: - raise bottle.PluginError( - "Found another conflicting Database plugin." - ) + raise bottle.PluginError("Found another conflicting Database plugin.") def apply(self, callback, route): """ @@ -64,6 +61,7 @@ class DatabasePlugin(object): if self.KEYWORD not in callback_args: # If no need for a db session, call the route callback return callback + def wrapper(*args, **kwargs): """ Wrap the callback in a call to get_session. @@ -72,6 +70,7 @@ class DatabasePlugin(object): # Get a db session and pass it to the callback kwargs[self.KEYWORD] = session return callback(*args, **kwargs) + return wrapper diff --git a/flatisfy/web/js_src/components/app.vue b/flatisfy/web/js_src/components/app.vue index 801fd3c..6c28c64 100644 --- a/flatisfy/web/js_src/components/app.vue +++ b/flatisfy/web/js_src/components/app.vue @@ -16,7 +16,7 @@ diff --git a/flatisfy/web/js_src/components/flatsmap.vue b/flatisfy/web/js_src/components/flatsmap.vue index 5115ca6..82fb55e 100644 --- a/flatisfy/web/js_src/components/flatsmap.vue +++ b/flatisfy/web/js_src/components/flatsmap.vue @@ -1,21 +1,26 @@ @@ -31,10 +36,13 @@ L.Icon.Default.mergeOptions({ }) import 'leaflet/dist/leaflet.css' +import 'leaflet.markercluster/dist/MarkerCluster.css' +import 'leaflet.markercluster/dist/MarkerCluster.Default.css' require('leaflet.icon.glyph') -import Vue2Leaflet from 'vue2-leaflet' +import { LMap, LTileLayer, LMarker, LTooltip, LPopup, LGeoJson } from 'vue2-leaflet' +import Vue2LeafletMarkerCluster from 'vue2-leaflet-markercluster' export default { data () { @@ -46,11 +54,11 @@ export default { fillColor: '#e4ce7f', fillOpacity: 1 }, - center: null, + bounds: [[40.91351257612758, -7.580566406250001], [51.65892664880053, 12.0849609375]], zoom: { - defaultZoom: 13, + defaultZoom: 6, minZoom: 5, - maxZoom: 17 + maxZoom: 20 }, tiles: { url: 'https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', @@ -67,25 +75,27 @@ export default { }, components: { - 'v-map': Vue2Leaflet.Map, - 'v-tilelayer': Vue2Leaflet.TileLayer, - 'v-marker': Vue2Leaflet.Marker, - 'v-tooltip': Vue2Leaflet.Tooltip, - 'v-popup': Vue2Leaflet.Popup, - 'v-geojson-layer': Vue2Leaflet.GeoJSON + 'v-map': LMap, + 'v-tilelayer': LTileLayer, + 'v-marker': LMarker, + 'v-marker-cluster': Vue2LeafletMarkerCluster, + 'v-tooltip': LTooltip, + 'v-popup': LPopup, + 'v-geojson-layer': LGeoJson }, - computed: { - bounds () { - let bounds = [] - this.flats.forEach(flat => bounds.push(flat.gps)) - Object.keys(this.places).forEach(place => bounds.push(this.places[place])) + watch: { + flats: 'computeBounds', + places: 'computeBounds' + }, - if (bounds.length > 0) { - bounds = L.latLngBounds(bounds) - return bounds - } else { - return null + methods: { + computeBounds (newData, oldData) { + if (this.flats.length && JSON.stringify(newData) !== JSON.stringify(oldData)) { + const allBounds = [] + this.flats.forEach(flat => allBounds.push(flat.gps)) + Object.keys(this.places).forEach(place => allBounds.push(this.places[place])) + this.bounds = allBounds.length ? L.latLngBounds(allBounds) : undefined } } }, diff --git a/flatisfy/web/js_src/components/flatstableline.vue b/flatisfy/web/js_src/components/flatstableline.vue index e7e60dc..59431b4 100644 --- a/flatisfy/web/js_src/components/flatstableline.vue +++ b/flatisfy/web/js_src/components/flatstableline.vue @@ -1,16 +1,11 @@ + + diff --git a/flatisfy/web/js_src/main.js b/flatisfy/web/js_src/main.js index 7c8fcd0..3aef051 100644 --- a/flatisfy/web/js_src/main.js +++ b/flatisfy/web/js_src/main.js @@ -3,9 +3,12 @@ import Vue from 'vue' import i18n from './i18n' import router from './router' import store from './store' +import { costFilter } from './tools' import App from './components/app.vue' +Vue.filter('cost', costFilter) + new Vue({ i18n, router, diff --git a/flatisfy/web/js_src/store/getters.js b/flatisfy/web/js_src/store/getters.js index 6610e33..4d9b94e 100644 --- a/flatisfy/web/js_src/store/getters.js +++ b/flatisfy/web/js_src/store/getters.js @@ -1,73 +1,88 @@ -import { findFlatGPS } from '../tools' +import { findFlatGPS, costFilter } from '../tools' export default { - allFlats: state => state.flats, + allFlats: (state) => state.flats, - flat: (state, getters) => id => state.flats.find(flat => flat.id === id), + flat: (state, getters) => (id) => + state.flats.find((flat) => flat.id === id), - isLoading: state => state.loading > 0, + isLoading: (state) => state.loading > 0, - postalCodesFlatsBuckets: (state, getters) => filter => { - const postalCodeBuckets = {} + inseeCodesFlatsBuckets: (state, getters) => (filter) => { + const buckets = {}; - state.flats.forEach(flat => { + state.flats.forEach((flat) => { if (!filter || filter(flat)) { - const postalCode = flat.flatisfy_postal_code.postal_code - if (!postalCodeBuckets[postalCode]) { - postalCodeBuckets[postalCode] = { - 'name': flat.flatisfy_postal_code.name, - 'flats': [] - } + const insee = flat.flatisfy_postal_code.insee_code; + if (!buckets[insee]) { + buckets[insee] = { + name: flat.flatisfy_postal_code.name, + flats: [], + }; } - postalCodeBuckets[postalCode].flats.push(flat) + buckets[insee].flats.push(flat); } - }) + }); - return postalCodeBuckets + return buckets; }, flatsMarkers: (state, getters) => (router, filter) => { - const markers = [] - state.flats.forEach(flat => { + const markers = []; + state.flats.forEach((flat) => { if (filter && filter(flat)) { - const gps = findFlatGPS(flat) + const gps = findFlatGPS(flat); if (gps) { - const previousMarkerIndex = markers.findIndex( - marker => marker.gps[0] === gps[0] && marker.gps[1] === gps[1] - ) - - const href = router.resolve({ name: 'details', params: { id: flat.id }}).href - if (previousMarkerIndex !== -1) { - markers[previousMarkerIndex].content += '
' + flat.title + '' - } else { - markers.push({ - 'title': '', - 'content': '' + flat.title + '', - 'gps': gps - }) + const previousMarker = markers.find( + (marker) => + marker.gps[0] === gps[0] && marker.gps[1] === gps[1] + ); + if (previousMarker) { + // randomize position a bit + // gps[0] += (Math.random() - 0.5) / 500 + // gps[1] += (Math.random() - 0.5) / 500 } + const href = router.resolve({ + name: "details", + params: { id: flat.id }, + }).href; + const cost = flat.cost + ? costFilter(flat.cost, flat.currency) + : ""; + markers.push({ + title: "", + content: + '' + + flat.title + + "" + + cost, + gps: gps, + flatId: flat.id, + }); } } - }) + }); - return markers + return markers; }, - allTimeToPlaces: state => { - const places = {} - Object.keys(state.timeToPlaces).forEach(constraint => { - const constraintTimeToPlaces = state.timeToPlaces[constraint] - Object.keys(constraintTimeToPlaces).forEach(name => { - places[name] = constraintTimeToPlaces[name] - }) - }) - return places + allTimeToPlaces: (state) => { + const places = {}; + Object.keys(state.timeToPlaces).forEach((constraint) => { + const constraintTimeToPlaces = state.timeToPlaces[constraint]; + Object.keys(constraintTimeToPlaces).forEach((name) => { + places[name] = constraintTimeToPlaces[name]; + }); + }); + return places; }, timeToPlaces: (state, getters) => (constraintName) => { - return state.timeToPlaces[constraintName] + return state.timeToPlaces[constraintName]; }, - metadata: state => state.metadata -} + metadata: (state) => state.metadata, +}; diff --git a/flatisfy/web/js_src/tools/index.js b/flatisfy/web/js_src/tools/index.js index 38fb58e..4244ef5 100644 --- a/flatisfy/web/js_src/tools/index.js +++ b/flatisfy/web/js_src/tools/index.js @@ -1,8 +1,10 @@ export function findFlatGPS (flat) { let gps - // Try to push a marker based on stations - if (flat.flatisfy_stations && flat.flatisfy_stations.length > 0) { + if (flat.flatisfy_position) { + gps = [flat.flatisfy_position.lat, flat.flatisfy_position.lng] + } else if (flat.flatisfy_stations && flat.flatisfy_stations.length > 0) { + // Try to push a marker based on stations gps = [0.0, 0.0] flat.flatisfy_stations.forEach(station => { gps = [gps[0] + station.gps[0], gps[1] + station.gps[1]] @@ -23,3 +25,18 @@ export function capitalize (string) { export function range (n) { return [...Array(n).keys()] } + +export function costFilter (value, currency) { + if (!value) { + return 'N/A' + } + + if (currency === 'EUR') { + currency = ' €' + } + + var valueStr = value.toString() + valueStr = ' '.repeat((3 + valueStr.length) % 3) + valueStr + + return valueStr.match(/.{1,3}/g).join('.') + currency +} diff --git a/flatisfy/web/js_src/views/details.vue b/flatisfy/web/js_src/views/details.vue index 1f9833d..5099faf 100644 --- a/flatisfy/web/js_src/views/details.vue +++ b/flatisfy/web/js_src/views/details.vue @@ -3,217 +3,18 @@ -
-
-

- ({{ flat.status ? capitalize($t("status." + flat.status)) : '' }}) {{ flat.title }} [{{ flat.id.split("@")[1] }}] - {{ flat.is_expired ? '[' + $t('common.expired') + ']' : '' }} -

-
-
-

- {{ flat.cost }} {{ flat.currency }} - - -

-
-

- {{ flat.area ? flat.area : '?' }} m2, - {{ flat.rooms ? flat.rooms : '?' }} {{ $tc("flatsDetails.rooms", flat.rooms) }} / - {{ flat.bedrooms ? flat.bedrooms : '?' }} {{ $tc("flatsDetails.bedrooms", flat.bedrooms) }} -

-
-
- -
-
-

{{ $t("flatsDetails.Description") }}

-

{{ flat.text }}

-

{{ flat.location }}

-

{{ $t("flatsDetails.First_posted") }} {{ flat.date ? flat.date.fromNow() : '?' }}.

-
-
-

{{ $t("flatsDetails.Details") }}

- - - - - -
{{ key }}{{ value }}
-
-
-

{{ $t("flatsDetails.Metadata") }}

- - - - - - - - - - - - - - - - - - -
- {{ $t("flatsDetails.postal_code") }} - - - -
- {{ $t("flatsDetails.nearby_stations") }} - - - -
- {{ $t("flatsDetails.Times_to") }} - - - -
- {{ $t("flatsDetails.SquareMeterCost") }} - - {{ flat.sqCost }} {{ flat.currency }} -
-
-
-

{{ $t("flatsDetails.Location") }}

- - -
-
-

{{ $t("flatsDetails.Notes") }}

- -
- -

-
-
-
- -
-

{{ $t("flatsDetails.Contact") }}

-
-

- - -

-

{{ $tc("common.Original_post", 42) }} -

-

-
- -

{{ $t("flatsDetails.Visit") }}

-
- -
- -

{{ $t("common.Actions") }}

- - -
-
+ - diff --git a/flatisfy/web/js_src/views/home.vue b/flatisfy/web/js_src/views/home.vue index 076166a..c71a5f0 100644 --- a/flatisfy/web/js_src/views/home.vue +++ b/flatisfy/web/js_src/views/home.vue @@ -1,50 +1,56 @@